-- -- PostgreSQL database dump -- SET statement_timeout = 0; SET lock_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SELECT pg_catalog.set_config('search_path', '', false); SET check_function_bodies = false; SET client_min_messages = warning; -- -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -- CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; -- -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -- COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; SET default_tablespace = ''; SET default_with_oids = false; -- -- Name: audits; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.audits ( id integer NOT NULL, auditable_id integer, auditable_type character varying, associated_id integer, associated_type character varying, user_id integer, user_type character varying, username character varying, action character varying, audited_changes text, version integer DEFAULT 0, comment character varying, remote_address character varying, request_uuid character varying, created_at timestamp without time zone ); ALTER TABLE public.audits OWNER TO pos_user; -- -- Name: audits_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.audits_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.audits_id_seq OWNER TO pos_user; -- -- Name: audits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.audits_id_seq OWNED BY public.audits.id; -- -- Name: available_products; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.available_products ( id integer NOT NULL, product_id integer, pointsale_id integer, stock_min numeric DEFAULT 0, stock_max numeric DEFAULT 0, stock numeric DEFAULT 0, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, price_sale numeric(10,2), products_variant_id integer ); ALTER TABLE public.available_products OWNER TO pos_user; -- -- Name: available_products_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.available_products_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.available_products_id_seq OWNER TO pos_user; -- -- Name: available_products_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.available_products_id_seq OWNED BY public.available_products.id; -- -- Name: billing_informations; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.billing_informations ( id integer NOT NULL, customer_id integer DEFAULT 0 NOT NULL, name character varying(255) DEFAULT ''::character varying NOT NULL, rfc character varying(13) DEFAULT ''::character varying NOT NULL, address character varying(255) DEFAULT ''::character varying NOT NULL, zipcode integer DEFAULT 0 NOT NULL, num_ext character varying DEFAULT ''::character varying NOT NULL, num_int character varying DEFAULT ''::character varying NOT NULL, state_id integer DEFAULT 0 NOT NULL, county_id integer DEFAULT 0 NOT NULL, city character varying DEFAULT ''::character varying NOT NULL, suburb character varying DEFAULT ''::character varying NOT NULL, status integer DEFAULT 1 NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, supplier_id integer DEFAULT 0 NOT NULL, cfdi_use_key character varying DEFAULT 'G03'::character varying ); ALTER TABLE public.billing_informations OWNER TO pos_user; -- -- Name: billing_informations_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.billing_informations_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.billing_informations_id_seq OWNER TO pos_user; -- -- Name: billing_informations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.billing_informations_id_seq OWNED BY public.billing_informations.id; -- -- Name: cash_out_details; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.cash_out_details ( id integer NOT NULL, cash_out_id integer, payment_method_id integer, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, incoming numeric(10,2) DEFAULT 0.0 NOT NULL, total numeric(10,2) DEFAULT 0.0 NOT NULL, adjustment numeric(10,2) DEFAULT 0.0 NOT NULL, observations text, outgoing numeric(10,2) DEFAULT 0.0 NOT NULL ); ALTER TABLE public.cash_out_details OWNER TO pos_user; -- -- Name: cash_out_details_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.cash_out_details_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.cash_out_details_id_seq OWNER TO pos_user; -- -- Name: cash_out_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.cash_out_details_id_seq OWNED BY public.cash_out_details.id; -- -- Name: cash_outs; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.cash_outs ( id integer NOT NULL, open_cash_register_id integer, user_id integer, amount_in numeric NOT NULL, amount_out numeric NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, received_by_id integer, received_cash numeric(10,2) DEFAULT 0.0, cash_fund numeric(10,2) DEFAULT 0.0, physical_cash numeric(10,2) DEFAULT 0.0 NOT NULL, observations character varying, invoice_num character varying ); ALTER TABLE public.cash_outs OWNER TO pos_user; -- -- Name: cash_outs_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.cash_outs_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.cash_outs_id_seq OWNER TO pos_user; -- -- Name: cash_outs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.cash_outs_id_seq OWNED BY public.cash_outs.id; -- -- Name: cash_registers; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.cash_registers ( id integer NOT NULL, name character varying, description text, pointsale_id integer, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, main integer DEFAULT 0 NOT NULL, status integer DEFAULT 1 NOT NULL ); ALTER TABLE public.cash_registers OWNER TO pos_user; -- -- Name: cash_registers_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.cash_registers_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.cash_registers_id_seq OWNER TO pos_user; -- -- Name: cash_registers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.cash_registers_id_seq OWNED BY public.cash_registers.id; -- -- Name: cash_registers_moves; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.cash_registers_moves ( id integer NOT NULL, open_cash_register_id integer, payment_method_id integer, quantity numeric DEFAULT 0 NOT NULL, move_type character varying(1) NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, sale_id integer, cardnumber integer, purchase_id integer, expense_id integer, concept integer, ticket character varying, status integer DEFAULT 1 NOT NULL, received numeric(10,2), change numeric(10,2), products_return_id integer, credit_payment_id integer, bank_name character varying DEFAULT ''::character varying, check_number character varying DEFAULT ''::character varying, customer_account character varying DEFAULT ''::character varying, customer_code character varying DEFAULT ''::character varying ); ALTER TABLE public.cash_registers_moves OWNER TO pos_user; -- -- Name: cash_registers_moves_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.cash_registers_moves_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.cash_registers_moves_id_seq OWNER TO pos_user; -- -- Name: cash_registers_moves_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.cash_registers_moves_id_seq OWNED BY public.cash_registers_moves.id; -- -- Name: categories; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.categories ( id integer NOT NULL, category character varying, description text, status integer DEFAULT 1, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, parent_id integer DEFAULT 0 NOT NULL ); ALTER TABLE public.categories OWNER TO pos_user; -- -- Name: categories_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.categories_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.categories_id_seq OWNER TO pos_user; -- -- Name: categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.categories_id_seq OWNED BY public.categories.id; -- -- Name: categories_products; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.categories_products ( product_id integer, category_id integer ); ALTER TABLE public.categories_products OWNER TO pos_user; -- -- Name: commissions; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.commissions ( id integer NOT NULL, commission_total numeric, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, pointsale_id integer, user_id integer, initial_date timestamp without time zone NOT NULL, final_date timestamp without time zone NOT NULL ); ALTER TABLE public.commissions OWNER TO pos_user; -- -- Name: commissions_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.commissions_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.commissions_id_seq OWNER TO pos_user; -- -- Name: commissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.commissions_id_seq OWNED BY public.commissions.id; -- -- Name: contacts; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.contacts ( id integer NOT NULL, name character varying(255) DEFAULT ''::character varying NOT NULL, last_name character varying(255) DEFAULT ''::character varying NOT NULL, phone character varying(30) DEFAULT ''::character varying NOT NULL, email character varying(255) DEFAULT ''::character varying NOT NULL, notes text DEFAULT ''::text NOT NULL, status integer DEFAULT 1 NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); ALTER TABLE public.contacts OWNER TO pos_user; -- -- Name: contacts_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.contacts_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.contacts_id_seq OWNER TO pos_user; -- -- Name: contacts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.contacts_id_seq OWNED BY public.contacts.id; -- -- Name: credit_payments; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.credit_payments ( id integer NOT NULL, customer_id integer, credit_id integer, pointsale_id integer, quantity numeric(10,2) DEFAULT 0.0 NOT NULL, status integer DEFAULT 0 NOT NULL, date_payment date NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, user_id integer, cash_registers_move_id integer ); ALTER TABLE public.credit_payments OWNER TO pos_user; -- -- Name: credit_payments_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.credit_payments_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.credit_payments_id_seq OWNER TO pos_user; -- -- Name: credit_payments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.credit_payments_id_seq OWNED BY public.credit_payments.id; -- -- Name: credits; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.credits ( id integer NOT NULL, customer_id integer, pointsale_id integer, sale_id integer, total numeric(10,2) DEFAULT 0.0 NOT NULL, rest numeric(10,2) DEFAULT 0.0 NOT NULL, status integer DEFAULT 0 NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, credit_note character varying ); ALTER TABLE public.credits OWNER TO pos_user; -- -- Name: credits_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.credits_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.credits_id_seq OWNER TO pos_user; -- -- Name: credits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.credits_id_seq OWNED BY public.credits.id; -- -- Name: customers; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.customers ( id integer NOT NULL, nick_name character varying(255) DEFAULT ''::character varying NOT NULL, phone character varying(30) DEFAULT ''::character varying NOT NULL, email character varying(255) DEFAULT ''::character varying NOT NULL, credit boolean DEFAULT true NOT NULL, credit_limit numeric(10,2) DEFAULT 0 NOT NULL, time_limit integer DEFAULT 0 NOT NULL, notes text DEFAULT ''::text NOT NULL, status integer DEFAULT 1 NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, contact_id integer, is_public integer DEFAULT 0 ); ALTER TABLE public.customers OWNER TO pos_user; -- -- Name: customers_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.customers_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.customers_id_seq OWNER TO pos_user; -- -- Name: customers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.customers_id_seq OWNED BY public.customers.id; -- -- Name: expenses; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.expenses ( id integer NOT NULL, expensesconcept_id integer, open_cash_register_id integer, quantity numeric DEFAULT 0 NOT NULL, status integer DEFAULT 1 NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, observations text, expense_date date, expense_code character varying ); ALTER TABLE public.expenses OWNER TO pos_user; -- -- Name: expenses_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.expenses_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.expenses_id_seq OWNER TO pos_user; -- -- Name: expenses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.expenses_id_seq OWNED BY public.expenses.id; -- -- Name: expensesconcepts; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.expensesconcepts ( id integer NOT NULL, name character varying, description character varying, allpoints boolean, status integer DEFAULT 1, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, expense_from_purchase integer DEFAULT 0 NOT NULL ); ALTER TABLE public.expensesconcepts OWNER TO pos_user; -- -- Name: expensesconcepts_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.expensesconcepts_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.expensesconcepts_id_seq OWNER TO pos_user; -- -- Name: expensesconcepts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.expensesconcepts_id_seq OWNED BY public.expensesconcepts.id; -- -- Name: expensesconcepts_pointsales; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.expensesconcepts_pointsales ( expensesconcept_id integer, pointsale_id integer ); ALTER TABLE public.expensesconcepts_pointsales OWNER TO pos_user; -- -- Name: inventories; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.inventories ( id integer NOT NULL, pointsale_id integer, user_id integer, inventory_date date, notes text, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); ALTER TABLE public.inventories OWNER TO pos_user; -- -- Name: inventories_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.inventories_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.inventories_id_seq OWNER TO pos_user; -- -- Name: inventories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.inventories_id_seq OWNED BY public.inventories.id; -- -- Name: inventories_moves; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.inventories_moves ( id integer NOT NULL, inventory_id integer, product_id integer, purchase_id integer, sale_id integer, quantity numeric DEFAULT 0 NOT NULL, move_type character varying(1) NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, reason integer, transfer_id integer ); ALTER TABLE public.inventories_moves OWNER TO pos_user; -- -- Name: inventories_moves_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.inventories_moves_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.inventories_moves_id_seq OWNER TO pos_user; -- -- Name: inventories_moves_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.inventories_moves_id_seq OWNED BY public.inventories_moves.id; -- -- Name: invoice_details; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.invoice_details ( id integer NOT NULL, sale_id integer, uuid character varying NOT NULL, cfdi_type character varying(1) NOT NULL, invoice_reason character varying, rfc_receptor character varying, generating_date timestamp without time zone, stamping_date timestamp without time zone, storing_url character varying, status smallint DEFAULT 1, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); ALTER TABLE public.invoice_details OWNER TO pos_user; -- -- Name: invoice_details_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.invoice_details_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.invoice_details_id_seq OWNER TO pos_user; -- -- Name: invoice_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.invoice_details_id_seq OWNED BY public.invoice_details.id; -- -- Name: open_cash_registers; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.open_cash_registers ( id integer NOT NULL, cash_register_id integer, user_id integer, initial_cash numeric(10,2) DEFAULT 0.0, final_cash numeric(10,2) DEFAULT 0.0, status integer DEFAULT 0, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); ALTER TABLE public.open_cash_registers OWNER TO pos_user; -- -- Name: open_cash_registers_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.open_cash_registers_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.open_cash_registers_id_seq OWNER TO pos_user; -- -- Name: open_cash_registers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.open_cash_registers_id_seq OWNED BY public.open_cash_registers.id; -- -- Name: payment_methods; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.payment_methods ( id integer NOT NULL, method character varying NOT NULL, status integer DEFAULT 1 NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, reference integer, "isCash" integer DEFAULT 0 NOT NULL, payment_method_key character varying DEFAULT '99'::character varying ); ALTER TABLE public.payment_methods OWNER TO pos_user; -- -- Name: payment_methods_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.payment_methods_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.payment_methods_id_seq OWNER TO pos_user; -- -- Name: payment_methods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.payment_methods_id_seq OWNED BY public.payment_methods.id; -- -- Name: pointsales; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.pointsales ( id integer NOT NULL, name character varying, address character varying, notes text, status integer DEFAULT 1, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, prefix text, img_pointsale_file_name character varying, img_pointsale_content_type character varying, img_pointsale_file_size integer, img_pointsale_updated_at timestamp without time zone, ticket_footer character varying, img_pointsale character varying, haggle_percent numeric(10,2) DEFAULT 0, federal_taxpayer_registration character varying, business_name character varying, tax_regime integer, postal_code integer ); ALTER TABLE public.pointsales OWNER TO pos_user; -- -- Name: pointsales_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.pointsales_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.pointsales_id_seq OWNER TO pos_user; -- -- Name: pointsales_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.pointsales_id_seq OWNED BY public.pointsales.id; -- -- Name: pos_configs; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.pos_configs ( id integer NOT NULL, cancel_partial_payment integer, refund_sale integer, days_cancel_sale integer, days_cancel_purchase integer, tax_percent numeric, time_zone character varying(255) DEFAULT ''::character varying NOT NULL, gain_margin numeric, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, ticket_description text, days_cancel_reserved integer, reserve_sale_percent numeric(10,2), commission_percent integer, ticket_footer character varying, ticket_img_file_name character varying, ticket_img_content_type character varying, ticket_img_file_size integer, ticket_img_updated_at timestamp without time zone, haggle_in_sale_percent integer, ticket_img character varying, enable_haggle boolean DEFAULT true, add_iva_to_pre_sales boolean DEFAULT false ); ALTER TABLE public.pos_configs OWNER TO pos_user; -- -- Name: pos_configs_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.pos_configs_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.pos_configs_id_seq OWNER TO pos_user; -- -- Name: pos_configs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.pos_configs_id_seq OWNED BY public.pos_configs.id; -- -- Name: pre_purchases; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.pre_purchases ( id integer NOT NULL, supplier_id integer, user_id integer, pointsale_id integer, product_id integer, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, amount numeric DEFAULT 0 NOT NULL, tax numeric DEFAULT 0 NOT NULL, total numeric DEFAULT 0 NOT NULL, quantity integer DEFAULT 0 NOT NULL, warehouse_id integer, price_base numeric(10,2), exchange numeric(10,2) ); ALTER TABLE public.pre_purchases OWNER TO pos_user; -- -- Name: pre_purchases_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.pre_purchases_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.pre_purchases_id_seq OWNER TO pos_user; -- -- Name: pre_purchases_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.pre_purchases_id_seq OWNED BY public.pre_purchases.id; -- -- Name: pre_sales; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.pre_sales ( id integer NOT NULL, customer_id integer, user_id integer, open_cash_register_id integer, product_id integer, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, sale_type smallint, amount numeric DEFAULT 0 NOT NULL, tax numeric DEFAULT 0 NOT NULL, discount numeric DEFAULT 0 NOT NULL, total numeric DEFAULT 0 NOT NULL, quantity integer DEFAULT 0 NOT NULL, special_price_id integer, unit_price numeric(10,2), haggle numeric(10,2) DEFAULT 0, promotion_id integer, unit_price_w_discount numeric(10,2), haggle_percent integer DEFAULT 0 ); ALTER TABLE public.pre_sales OWNER TO pos_user; -- -- Name: pre_sales_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.pre_sales_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.pre_sales_id_seq OWNER TO pos_user; -- -- Name: pre_sales_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.pre_sales_id_seq OWNED BY public.pre_sales.id; -- -- Name: pre_transfers; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.pre_transfers ( id integer NOT NULL, origin_id integer, destiny_id integer, user_id integer, product_id integer, quantity integer NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, origin_is_pointsale integer NOT NULL, destiny_is_pointsale integer NOT NULL ); ALTER TABLE public.pre_transfers OWNER TO pos_user; -- -- Name: pre_transfers_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.pre_transfers_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.pre_transfers_id_seq OWNER TO pos_user; -- -- Name: pre_transfers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.pre_transfers_id_seq OWNED BY public.pre_transfers.id; -- -- Name: product_wastes; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.product_wastes ( id integer NOT NULL, product_id integer, quantity numeric(10,2) DEFAULT 0.0 NOT NULL, reason character varying DEFAULT ''::character varying NOT NULL, status integer DEFAULT 0 NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, user_id integer, pointsale_id integer, warehouse_id integer, products_return_in_id integer ); ALTER TABLE public.product_wastes OWNER TO pos_user; -- -- Name: product_wastes_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.product_wastes_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.product_wastes_id_seq OWNER TO pos_user; -- -- Name: product_wastes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.product_wastes_id_seq OWNED BY public.product_wastes.id; -- -- Name: products; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.products ( id integer NOT NULL, sku character varying(30) DEFAULT ''::character varying NOT NULL, name character varying(255) DEFAULT ''::character varying NOT NULL, description text DEFAULT ''::text NOT NULL, price_base numeric(10,2) DEFAULT 0.0, price_sale numeric(10,2) DEFAULT 0.0, img_product_file_name character varying, img_product_content_type character varying, img_product_file_size integer, img_product_updated_at timestamp without time zone, presentation boolean DEFAULT false NOT NULL, inventory boolean DEFAULT true NOT NULL, content numeric, status integer DEFAULT 1 NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, unit_id integer, include_purchase_tax integer DEFAULT 0 NOT NULL, include_sale_tax integer DEFAULT 0 NOT NULL, barcode character varying, parent_id integer, attributes_json text, is_parent boolean DEFAULT false, is_in_dollars boolean DEFAULT false, price_base_dollars numeric(10,2), img_product character varying, category_id integer, product_service_key character varying DEFAULT '01010101'::character varying ); ALTER TABLE public.products OWNER TO pos_user; -- -- Name: products_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.products_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.products_id_seq OWNER TO pos_user; -- -- Name: products_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.products_id_seq OWNED BY public.products.id; -- -- Name: products_return_ins; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.products_return_ins ( id integer NOT NULL, products_return_id integer, product_id integer NOT NULL, quantity numeric NOT NULL, reason character varying, is_wasted boolean DEFAULT false, amount numeric DEFAULT 0, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); ALTER TABLE public.products_return_ins OWNER TO pos_user; -- -- Name: products_return_ins_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.products_return_ins_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.products_return_ins_id_seq OWNER TO pos_user; -- -- Name: products_return_ins_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.products_return_ins_id_seq OWNED BY public.products_return_ins.id; -- -- Name: products_return_outs; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.products_return_outs ( id integer NOT NULL, products_return_id integer, product_id integer NOT NULL, quantity numeric NOT NULL, amount numeric DEFAULT 0, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); ALTER TABLE public.products_return_outs OWNER TO pos_user; -- -- Name: products_return_outs_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.products_return_outs_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.products_return_outs_id_seq OWNER TO pos_user; -- -- Name: products_return_outs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.products_return_outs_id_seq OWNED BY public.products_return_outs.id; -- -- Name: products_returns; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.products_returns ( id integer NOT NULL, sale_id integer, user_id integer, return_code character varying NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, pointsale_id integer NOT NULL, new_amount numeric(10,2) DEFAULT 0.0, returned_amount numeric(10,2) DEFAULT 0.0, difference_amount numeric(10,2) DEFAULT 0.0, is_money_returned boolean DEFAULT false ); ALTER TABLE public.products_returns OWNER TO pos_user; -- -- Name: products_returns_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.products_returns_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.products_returns_id_seq OWNER TO pos_user; -- -- Name: products_returns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.products_returns_id_seq OWNED BY public.products_returns.id; -- -- Name: products_variants; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.products_variants ( id integer NOT NULL, product_id integer, attributes_json text NOT NULL, sku character varying(30) DEFAULT ''::character varying NOT NULL, barcode character varying, price_sale numeric(10,2), status integer, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); ALTER TABLE public.products_variants OWNER TO pos_user; -- -- Name: products_variants_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.products_variants_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.products_variants_id_seq OWNER TO pos_user; -- -- Name: products_variants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.products_variants_id_seq OWNED BY public.products_variants.id; -- -- Name: promotions; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.promotions ( id integer NOT NULL, start_date date NOT NULL, end_date date NOT NULL, percent numeric DEFAULT 0, product_id integer, category_id integer, user_id integer, status integer DEFAULT 1 NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, subcategory_id integer ); ALTER TABLE public.promotions OWNER TO pos_user; -- -- Name: promotions_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.promotions_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.promotions_id_seq OWNER TO pos_user; -- -- Name: promotions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.promotions_id_seq OWNED BY public.promotions.id; -- -- Name: purchase_details; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.purchase_details ( id integer NOT NULL, purchase_id integer, product_id integer, quantity integer, price numeric(10,2) DEFAULT 0.0 NOT NULL, amount numeric(10,2) DEFAULT 0.0 NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, status integer DEFAULT 1 NOT NULL, tax numeric NOT NULL ); ALTER TABLE public.purchase_details OWNER TO pos_user; -- -- Name: purchase_details_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.purchase_details_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.purchase_details_id_seq OWNER TO pos_user; -- -- Name: purchase_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.purchase_details_id_seq OWNED BY public.purchase_details.id; -- -- Name: purchases; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.purchases ( id integer NOT NULL, supplier_id integer, pointsale_id integer, purchase_code character varying, amount numeric(10,2) DEFAULT 0.0, tax numeric(10,2) DEFAULT 0.0, total numeric(10,2) DEFAULT 0.0, observations text, purchase_date date, user_id character varying, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, status integer DEFAULT 0 NOT NULL, warehouse_id integer, is_in_dollars boolean DEFAULT false, exchange numeric(10,2) ); ALTER TABLE public.purchases OWNER TO pos_user; -- -- Name: purchases_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.purchases_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.purchases_id_seq OWNER TO pos_user; -- -- Name: purchases_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.purchases_id_seq OWNED BY public.purchases.id; -- -- Name: sales; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.sales ( id integer NOT NULL, customer_id integer, user_id integer, open_cash_register_id integer, amount numeric(10,2) DEFAULT 0.0 NOT NULL, tax numeric(10,2) DEFAULT 0.0 NOT NULL, discount numeric(10,2) DEFAULT 0.0 NOT NULL, total numeric(10,2) DEFAULT 0.0 NOT NULL, status integer DEFAULT 1 NOT NULL, date_sale date NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, saletype smallint, seller_id integer, sale_code character varying, expiration_date date, credit_note character varying, invoice_num character varying, require_invoice boolean DEFAULT false ); ALTER TABLE public.sales OWNER TO pos_user; -- -- Name: sales_details; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.sales_details ( id integer NOT NULL, sale_id integer, product_id integer, quantity numeric NOT NULL, amount numeric(10,2) DEFAULT 0.0 NOT NULL, tax numeric(10,2) DEFAULT 0.0 NOT NULL, discount numeric(10,2) DEFAULT 0.0 NOT NULL, total numeric(10,2) DEFAULT 0.0 NOT NULL, status integer DEFAULT 1 NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, special_price_id integer, unit_price numeric(10,2), unit_price_w_discount numeric(10,2), haggle numeric(10,2) DEFAULT 0, haggle_percent numeric(10,2) DEFAULT 0 ); ALTER TABLE public.sales_details OWNER TO pos_user; -- -- Name: sales_details_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.sales_details_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.sales_details_id_seq OWNER TO pos_user; -- -- Name: sales_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.sales_details_id_seq OWNED BY public.sales_details.id; -- -- Name: sales_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.sales_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.sales_id_seq OWNER TO pos_user; -- -- Name: sales_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.sales_id_seq OWNED BY public.sales.id; -- -- Name: sales_sellercommissions; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.sales_sellercommissions ( id integer NOT NULL, sellerscommission_id integer, sale_id integer, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); ALTER TABLE public.sales_sellercommissions OWNER TO pos_user; -- -- Name: sales_sellercommissions_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.sales_sellercommissions_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.sales_sellercommissions_id_seq OWNER TO pos_user; -- -- Name: sales_sellercommissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.sales_sellercommissions_id_seq OWNED BY public.sales_sellercommissions.id; -- -- Name: schema_migrations; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.schema_migrations ( version character varying NOT NULL ); ALTER TABLE public.schema_migrations OWNER TO pos_user; -- -- Name: sellers; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.sellers ( id integer NOT NULL, pointsale_id integer, name character varying NOT NULL, last_name character varying NOT NULL, status integer DEFAULT 1 NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); ALTER TABLE public.sellers OWNER TO pos_user; -- -- Name: sellers_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.sellers_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.sellers_id_seq OWNER TO pos_user; -- -- Name: sellers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.sellers_id_seq OWNED BY public.sellers.id; -- -- Name: sellerscommissions; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.sellerscommissions ( id integer NOT NULL, commission_id integer, seller_id integer, num_sales integer, sales_total numeric, commission_calculated numeric, commission_paid numeric, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, commission_percent integer, total_sold_cash numeric(10,2) DEFAULT 0.0, total_sold_credits_apartments numeric(10,2) DEFAULT 0.0, income_by_cash numeric(10,2) DEFAULT 0.0, income_by_reserved_and_credits numeric(10,2) DEFAULT 0.0 ); ALTER TABLE public.sellerscommissions OWNER TO pos_user; -- -- Name: sellerscommissions_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.sellerscommissions_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.sellerscommissions_id_seq OWNER TO pos_user; -- -- Name: sellerscommissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.sellerscommissions_id_seq OWNED BY public.sellerscommissions.id; -- -- Name: special_prices; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.special_prices ( id integer NOT NULL, product_id integer, customer_id integer, price numeric(10,2), percent numeric, status integer DEFAULT 1 NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, user_id integer ); ALTER TABLE public.special_prices OWNER TO pos_user; -- -- Name: special_prices_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.special_prices_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.special_prices_id_seq OWNER TO pos_user; -- -- Name: special_prices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.special_prices_id_seq OWNED BY public.special_prices.id; -- -- Name: spmx_counties; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.spmx_counties ( id integer NOT NULL, id_ integer NOT NULL, state_id integer, name character varying NOT NULL ); ALTER TABLE public.spmx_counties OWNER TO pos_user; -- -- Name: spmx_counties_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.spmx_counties_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.spmx_counties_id_seq OWNER TO pos_user; -- -- Name: spmx_counties_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.spmx_counties_id_seq OWNED BY public.spmx_counties.id; -- -- Name: spmx_states; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.spmx_states ( id integer NOT NULL, name character varying NOT NULL ); ALTER TABLE public.spmx_states OWNER TO pos_user; -- -- Name: spmx_states_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.spmx_states_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.spmx_states_id_seq OWNER TO pos_user; -- -- Name: spmx_states_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.spmx_states_id_seq OWNED BY public.spmx_states.id; -- -- Name: storers; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.storers ( id integer NOT NULL, user_id integer, warehouse_id integer, name character varying NOT NULL, last_name character varying NOT NULL, status integer DEFAULT 1 NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); ALTER TABLE public.storers OWNER TO pos_user; -- -- Name: storers_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.storers_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.storers_id_seq OWNER TO pos_user; -- -- Name: storers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.storers_id_seq OWNED BY public.storers.id; -- -- Name: suppliers; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.suppliers ( id integer NOT NULL, nick_name character varying(255) DEFAULT ''::character varying NOT NULL, phone character varying(30) DEFAULT ''::character varying NOT NULL, email character varying(255) DEFAULT ''::character varying NOT NULL, notes text DEFAULT ''::text NOT NULL, contact_id integer, status integer DEFAULT 1 NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); ALTER TABLE public.suppliers OWNER TO pos_user; -- -- Name: suppliers_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.suppliers_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.suppliers_id_seq OWNER TO pos_user; -- -- Name: suppliers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.suppliers_id_seq OWNED BY public.suppliers.id; -- -- Name: taggings; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.taggings ( id integer NOT NULL, tag_id integer, taggable_id integer, taggable_type character varying, tagger_id integer, tagger_type character varying, context character varying(128), created_at timestamp without time zone ); ALTER TABLE public.taggings OWNER TO pos_user; -- -- Name: taggings_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.taggings_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.taggings_id_seq OWNER TO pos_user; -- -- Name: taggings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.taggings_id_seq OWNED BY public.taggings.id; -- -- Name: tags; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.tags ( id integer NOT NULL, name character varying, taggings_count integer DEFAULT 0 ); ALTER TABLE public.tags OWNER TO pos_user; -- -- Name: tags_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.tags_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.tags_id_seq OWNER TO pos_user; -- -- Name: tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.tags_id_seq OWNED BY public.tags.id; -- -- Name: transfer_details; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.transfer_details ( id integer NOT NULL, transfer_id integer, product_id integer, quantity numeric(10,2) DEFAULT 0.0 NOT NULL, status integer DEFAULT 1 NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, adjustment integer, has_looses integer DEFAULT 0, has_surplus integer DEFAULT 0 ); ALTER TABLE public.transfer_details OWNER TO pos_user; -- -- Name: transfer_details_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.transfer_details_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.transfer_details_id_seq OWNER TO pos_user; -- -- Name: transfer_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.transfer_details_id_seq OWNED BY public.transfer_details.id; -- -- Name: transfers; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.transfers ( id integer NOT NULL, origin_id integer, destiny_id integer, transfer_date date NOT NULL, user_id integer, status integer DEFAULT 1 NOT NULL, received_by_id integer, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, observations text, reception_date date, origin_is_pointsale integer NOT NULL, destiny_is_pointsale integer NOT NULL ); ALTER TABLE public.transfers OWNER TO pos_user; -- -- Name: transfers_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.transfers_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.transfers_id_seq OWNER TO pos_user; -- -- Name: transfers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.transfers_id_seq OWNED BY public.transfers.id; -- -- Name: units; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.units ( id integer NOT NULL, unit character varying, status integer, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, unit_key character varying DEFAULT ''::character varying ); ALTER TABLE public.units OWNER TO pos_user; -- -- Name: units_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.units_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.units_id_seq OWNER TO pos_user; -- -- Name: units_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.units_id_seq OWNED BY public.units.id; -- -- Name: users; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.users ( id integer NOT NULL, userid character varying DEFAULT ''::character varying NOT NULL, first_name character varying DEFAULT ''::character varying NOT NULL, last_name character varying DEFAULT ''::character varying NOT NULL, usertype character varying DEFAULT ''::character varying NOT NULL, email character varying DEFAULT ''::character varying NOT NULL, encrypted_password character varying DEFAULT ''::character varying NOT NULL, reset_password_token character varying, reset_password_sent_at timestamp without time zone, remember_created_at timestamp without time zone, sign_in_count integer DEFAULT 0 NOT NULL, current_sign_in_at timestamp without time zone, last_sign_in_at timestamp without time zone, current_sign_in_ip inet, last_sign_in_ip inet, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, pointsale_id integer, unique_session_id character varying(20), status integer DEFAULT 1 NOT NULL, warehouse_id integer ); ALTER TABLE public.users OWNER TO pos_user; -- -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.users_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.users_id_seq OWNER TO pos_user; -- -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id; -- -- Name: warehouse_stocks; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.warehouse_stocks ( id integer NOT NULL, warehouse_id integer, product_id integer, stock_min numeric DEFAULT 0, stock_max numeric DEFAULT 0, stock numeric DEFAULT 0, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); ALTER TABLE public.warehouse_stocks OWNER TO pos_user; -- -- Name: warehouse_stocks_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.warehouse_stocks_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.warehouse_stocks_id_seq OWNER TO pos_user; -- -- Name: warehouse_stocks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.warehouse_stocks_id_seq OWNED BY public.warehouse_stocks.id; -- -- Name: warehouses; Type: TABLE; Schema: public; Owner: pos_user; Tablespace: -- CREATE TABLE public.warehouses ( id integer NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL, name character varying, status integer DEFAULT 1 NOT NULL, prefix character varying NOT NULL ); ALTER TABLE public.warehouses OWNER TO pos_user; -- -- Name: warehouses_id_seq; Type: SEQUENCE; Schema: public; Owner: pos_user -- CREATE SEQUENCE public.warehouses_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.warehouses_id_seq OWNER TO pos_user; -- -- Name: warehouses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pos_user -- ALTER SEQUENCE public.warehouses_id_seq OWNED BY public.warehouses.id; -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.audits ALTER COLUMN id SET DEFAULT nextval('public.audits_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.available_products ALTER COLUMN id SET DEFAULT nextval('public.available_products_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.billing_informations ALTER COLUMN id SET DEFAULT nextval('public.billing_informations_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.cash_out_details ALTER COLUMN id SET DEFAULT nextval('public.cash_out_details_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.cash_outs ALTER COLUMN id SET DEFAULT nextval('public.cash_outs_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.cash_registers ALTER COLUMN id SET DEFAULT nextval('public.cash_registers_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.cash_registers_moves ALTER COLUMN id SET DEFAULT nextval('public.cash_registers_moves_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.categories ALTER COLUMN id SET DEFAULT nextval('public.categories_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.commissions ALTER COLUMN id SET DEFAULT nextval('public.commissions_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.contacts ALTER COLUMN id SET DEFAULT nextval('public.contacts_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.credit_payments ALTER COLUMN id SET DEFAULT nextval('public.credit_payments_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.credits ALTER COLUMN id SET DEFAULT nextval('public.credits_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.customers ALTER COLUMN id SET DEFAULT nextval('public.customers_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.expenses ALTER COLUMN id SET DEFAULT nextval('public.expenses_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.expensesconcepts ALTER COLUMN id SET DEFAULT nextval('public.expensesconcepts_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.inventories ALTER COLUMN id SET DEFAULT nextval('public.inventories_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.inventories_moves ALTER COLUMN id SET DEFAULT nextval('public.inventories_moves_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.invoice_details ALTER COLUMN id SET DEFAULT nextval('public.invoice_details_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.open_cash_registers ALTER COLUMN id SET DEFAULT nextval('public.open_cash_registers_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.payment_methods ALTER COLUMN id SET DEFAULT nextval('public.payment_methods_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.pointsales ALTER COLUMN id SET DEFAULT nextval('public.pointsales_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.pos_configs ALTER COLUMN id SET DEFAULT nextval('public.pos_configs_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.pre_purchases ALTER COLUMN id SET DEFAULT nextval('public.pre_purchases_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.pre_sales ALTER COLUMN id SET DEFAULT nextval('public.pre_sales_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.pre_transfers ALTER COLUMN id SET DEFAULT nextval('public.pre_transfers_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.product_wastes ALTER COLUMN id SET DEFAULT nextval('public.product_wastes_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.products ALTER COLUMN id SET DEFAULT nextval('public.products_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.products_return_ins ALTER COLUMN id SET DEFAULT nextval('public.products_return_ins_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.products_return_outs ALTER COLUMN id SET DEFAULT nextval('public.products_return_outs_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.products_returns ALTER COLUMN id SET DEFAULT nextval('public.products_returns_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.products_variants ALTER COLUMN id SET DEFAULT nextval('public.products_variants_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.promotions ALTER COLUMN id SET DEFAULT nextval('public.promotions_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.purchase_details ALTER COLUMN id SET DEFAULT nextval('public.purchase_details_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.purchases ALTER COLUMN id SET DEFAULT nextval('public.purchases_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.sales ALTER COLUMN id SET DEFAULT nextval('public.sales_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.sales_details ALTER COLUMN id SET DEFAULT nextval('public.sales_details_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.sales_sellercommissions ALTER COLUMN id SET DEFAULT nextval('public.sales_sellercommissions_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.sellers ALTER COLUMN id SET DEFAULT nextval('public.sellers_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.sellerscommissions ALTER COLUMN id SET DEFAULT nextval('public.sellerscommissions_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.special_prices ALTER COLUMN id SET DEFAULT nextval('public.special_prices_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.spmx_counties ALTER COLUMN id SET DEFAULT nextval('public.spmx_counties_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.spmx_states ALTER COLUMN id SET DEFAULT nextval('public.spmx_states_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.storers ALTER COLUMN id SET DEFAULT nextval('public.storers_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.suppliers ALTER COLUMN id SET DEFAULT nextval('public.suppliers_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.taggings ALTER COLUMN id SET DEFAULT nextval('public.taggings_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.tags ALTER COLUMN id SET DEFAULT nextval('public.tags_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.transfer_details ALTER COLUMN id SET DEFAULT nextval('public.transfer_details_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.transfers ALTER COLUMN id SET DEFAULT nextval('public.transfers_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.units ALTER COLUMN id SET DEFAULT nextval('public.units_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.warehouse_stocks ALTER COLUMN id SET DEFAULT nextval('public.warehouse_stocks_id_seq'::regclass); -- -- Name: id; Type: DEFAULT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.warehouses ALTER COLUMN id SET DEFAULT nextval('public.warehouses_id_seq'::regclass); -- -- Data for Name: audits; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.audits (id, auditable_id, auditable_type, associated_id, associated_type, user_id, user_type, username, action, audited_changes, version, comment, remote_address, request_uuid, created_at) FROM stdin; 1 1 User \N \N \N \N \N create ---\nuserid: adminpos\nfirst_name: Administrador\nlast_name: " POS "\nusertype: SS\nemail: info@sml.mx\nencrypted_password: "$2a$10$eXuf2mHOmbHKCfJv/ksJS.Y.C00ASpqP3DB9FAaFVGAXtN9OBSSgW"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: \nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N \N 8001af5f-e029-4734-8d43-0e0122456418 2019-01-28 18:10:12.533233 2 1 Unit \N \N \N \N \N create ---\nunit: Kilo\nstatus: 1\nunit_key: ''\n 1 \N \N a123abff-0d7b-4222-9d9f-685dacfe8fd6 2019-01-28 18:10:12.59046 3 2 Unit \N \N \N \N \N create ---\nunit: Gramo\nstatus: 1\nunit_key: ''\n 1 \N \N 234c55f4-ab67-421f-9436-48b66be10c56 2019-01-28 18:10:12.607109 4 3 Unit \N \N \N \N \N create ---\nunit: Pieza\nstatus: 1\nunit_key: ''\n 1 \N \N e58d14e9-5855-44bb-bc78-2022af23f702 2019-01-28 18:10:12.639222 5 4 Unit \N \N \N \N \N create ---\nunit: Litro\nstatus: 1\nunit_key: ''\n 1 \N \N 45fa6842-b259-44cd-8ef1-fd974699cb3f 2019-01-28 18:10:12.655362 6 1 Expensesconcept \N \N \N \N \N create ---\nname: Pago a compra\ndescription: Concepto para realizar el pago de una compra\nallpoints: true\nstatus: 1\nexpense_from_purchase: 1\n 1 \N \N fa741cfb-0302-4580-855b-e47e348af8d9 2019-01-28 18:10:12.697672 7 1 PosConfig \N \N \N \N \N create ---\ncancel_partial_payment: 30\nrefund_sale: 30\ndays_cancel_sale: 30\ndays_cancel_purchase: 30\ntax_percent: !ruby/object:BigDecimal 18:0.16E2\ntime_zone: Mountain Time (US & Canada)\ngain_margin: !ruby/object:BigDecimal 18:0.2E2\nticket_description: \ndays_cancel_reserved: 30\nreserve_sale_percent: !ruby/object:BigDecimal 18:0.2E2\ncommission_percent: 10\nticket_footer: \nticket_img_file_name: \nticket_img_content_type: \nticket_img_file_size: \nticket_img_updated_at: \nhaggle_in_sale_percent: 10\nticket_img: \nenable_haggle: true\n 1 \N \N c6b7a471-d533-4409-bdf0-39f3bd6d6134 2019-01-28 18:10:20.830903 8 1 Customer \N \N \N \N \N create ---\nnick_name: Publico general\nphone: '0000000000'\nemail: cliente@clientes.com\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ninguna\nstatus: 1\ncontact_id: \nis_public: 1\n 1 \N \N df009e8c-ebfa-42cd-8747-636e7504712f 2019-01-28 18:10:20.942231 9 1 Warehouse \N \N \N \N \N create ---\nname: Almacen central\nstatus: 1\nprefix: CEN\n 1 \N \N 491c8e02-1b80-470d-93d0-fd65a1287178 2019-01-28 18:10:20.994235 10 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-01-28 19:54:01.422359598 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3361501158\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3361501158\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 200.92.111.230 73f5ac54-963c-4acd-974a-41ec9d4474a2 2019-01-28 19:54:01.461056 11 1 User \N \N 1 User \N update ---\nunique_session_id:\n- \n- CkQp25tp8UKNdL_argoE\n 3 \N 200.92.111.230 73f5ac54-963c-4acd-974a-41ec9d4474a2 2019-01-28 19:54:01.487369 12 1 User \N \N 1 User \N update ---\ncurrent_sign_in_at:\n- 2019-01-28 19:54:01.422359000 Z\n- 2019-01-29 05:20:17.338474362 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3361501158\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542926\n mask_addr: 4294967295\nsign_in_count:\n- 1\n- 2\n 4 \N 177.228.130.206 f8ff6950-6478-40de-8796-b8a5cf477b93 2019-01-29 05:20:17.373321 13 1 User \N \N 1 User \N update ---\nunique_session_id:\n- CkQp25tp8UKNdL_argoE\n- 8wy3c2_9WupZ_LwfjGfY\n 5 \N 177.228.130.206 f8ff6950-6478-40de-8796-b8a5cf477b93 2019-01-29 05:20:17.398774 14 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-01-28 19:54:01.422359000 Z\n- &1 2019-01-29 05:20:17.338474000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-01-29 21:02:54.057394020 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3361501158\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542926\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542926\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095255\n mask_addr: 4294967295\nsign_in_count:\n- 2\n- 3\n 6 \N 189.186.45.215 e48f5385-49af-4b81-a8d6-238f6e3b6676 2019-01-29 21:02:54.068473 15 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 8wy3c2_9WupZ_LwfjGfY\n- 8Xr_3sdmAZcYU3KnKF7z\n 7 \N 189.186.45.215 e48f5385-49af-4b81-a8d6-238f6e3b6676 2019-01-29 21:02:54.092188 16 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-01-29 05:20:17.338474000 Z\n- &1 2019-01-29 21:02:54.057394000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-01 04:43:22.627885694 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542926\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095255\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095255\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542318\n mask_addr: 4294967295\nsign_in_count:\n- 3\n- 4\n 8 \N 177.228.128.110 616edd6c-33f3-4143-9948-97719af14caf 2019-02-01 04:43:22.673941 17 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 8Xr_3sdmAZcYU3KnKF7z\n- t-vspN-PmVUsRYc2y_Cw\n 9 \N 177.228.128.110 616edd6c-33f3-4143-9948-97719af14caf 2019-02-01 04:43:22.706012 18 2 User \N \N 1 User \N create ---\nuserid: GerentePrueba1\nfirst_name: Prueba 1\nlast_name: Prueba 1\nusertype: G\nemail: prueba@sts.com\nencrypted_password: "$2a$10$oO8XP959jwdvTCz2aNmfSeUB6YMqtaFT9pVjLe06r.itcWG2x8pc6"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 1\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 177.228.128.110 1ea5de0c-5f2b-46b7-a1f6-d99e7d4781d3 2019-02-01 04:44:58.217349 19 1 Pointsale \N \N 1 User \N create ---\nname: Punto de venta 1\naddress: ''\nnotes: ''\nstatus: 1\nprefix: PV1\nimg_pointsale_file_name: \nimg_pointsale_content_type: \nimg_pointsale_file_size: \nimg_pointsale_updated_at: \nticket_footer: ''\nimg_pointsale: \nhaggle_percent: !ruby/object:BigDecimal 18:0.0\nfederal_taxpayer_registration: PVV010101PVV\nbusiness_name: Punto de venta 1\ntax_regime: 601\npostal_code: 81200\n 1 El punto de venta Punto de venta 1 fue creado. 177.228.128.110 1ea5de0c-5f2b-46b7-a1f6-d99e7d4781d3 2019-02-01 04:44:58.246261 20 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-01-29 21:02:54.057394000 Z\n- &1 2019-02-01 04:43:22.627885000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-01 21:41:39.707381711 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095255\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542318\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542318\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537292\n mask_addr: 4294967295\nsign_in_count:\n- 4\n- 5\n 10 \N 177.228.108.204 040ca593-df2c-47fa-9748-a96b2c365fb8 2019-02-01 21:41:39.747009 21 1 User \N \N 1 User \N update ---\nunique_session_id:\n- t-vspN-PmVUsRYc2y_Cw\n- GkEdjfPQno9yhjsJfM7E\n 11 \N 177.228.108.204 040ca593-df2c-47fa-9748-a96b2c365fb8 2019-02-01 21:41:39.775384 22 1 Pointsale \N \N 1 User \N update ---\nname:\n- Punto de venta 1\n- SUO\npostal_code:\n- 81200\n- 85000\n 2 \N 177.228.108.204 d47c6d6c-47ac-42ee-a26d-3ee044c48bd1 2019-02-01 21:49:45.253332 70 1 Pointsale \N \N 5 User \N update ---\naddress:\n- test\n- 'MORELOS #297 LOC. 4'\n 5 \N 189.252.59.239 eef604e0-93f9-45d1-8f54-e2a6efbd3bad 2019-02-02 20:58:27.787474 71 1 Pointsale \N \N 5 User \N update ---\naddress:\n- 'MORELOS #297 LOC. 4'\n- 'MORELOS #297 LOC. 4 CENTRO'\n 6 \N 189.252.59.239 e764c774-a419-481d-98a4-131ddcc225e8 2019-02-02 20:58:41.634485 23 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-01 04:43:22.627885000 Z\n- &1 2019-02-01 21:41:39.707381000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-02 00:52:17.163556337 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542318\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537292\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537292\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\nsign_in_count:\n- 5\n- 6\n 12 \N 189.186.39.120 ecde4b52-9cda-47a0-a07c-0a64f3064c03 2019-02-02 00:52:17.172168 24 1 User \N \N 1 User \N update ---\nunique_session_id:\n- GkEdjfPQno9yhjsJfM7E\n- PTHeF-sUqwbzfN58yr1b\n 13 \N 189.186.39.120 ecde4b52-9cda-47a0-a07c-0a64f3064c03 2019-02-02 00:52:17.189536 25 1 PosConfig \N \N 1 User \N update ---\ncancel_partial_payment:\n- 30\n- 35\nrefund_sale:\n- 30\n- 15\ndays_cancel_sale:\n- 30\n- 15\ndays_cancel_purchase:\n- 30\n- 100\ntime_zone:\n- Mountain Time (US & Canada)\n- Chihuahua\ngain_margin:\n- !ruby/object:BigDecimal 18:0.2E2\n- !ruby/object:BigDecimal 18:0.1E3\nticket_description:\n- \n- "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN, SIN \\r\\nTEL. 6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK: SUO BOUTIQUE\\r\\n"\nreserve_sale_percent:\n- !ruby/object:BigDecimal 18:0.2E2\n- !ruby/object:BigDecimal 18:0.3E2\ndays_cancel_reserved:\n- 30\n- 35\ncommission_percent:\n- 10\n- 1\nticket_footer:\n- \n- "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES EN PROMOCIONES\n Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN ETIQUETA O MAL ESTADO \\r\\n*\n LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\nticket_img:\n- !ruby/object:ImageUploader\n model: !ruby/object:PosConfig\n raw_attributes:\n id: '1'\n cancel_partial_payment: '35'\n refund_sale: '15'\n days_cancel_sale: '15'\n days_cancel_purchase: '100'\n tax_percent: '16.0'\n time_zone: Chihuahua\n gain_margin: '100.0'\n ticket_description: "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN, SIN\n \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n reserve_sale_percent: '30.0'\n days_cancel_reserved: '35'\n commission_percent: '1.0'\n ticket_footer: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN ETIQUETA\n O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img: IMG_8613.jpg\n haggle_in_sale_percent: '100'\n enable_haggle: 'true'\n created_at: '2019-01-28 18:10:20.808419'\n updated_at: &10 2019-02-02 01:10:57.629811880 Z\n ticket_img_file_name: \n ticket_img_content_type: \n ticket_img_file_size: \n ticket_img_updated_at: \n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n cancel_partial_payment: *1\n refund_sale: *1\n days_cancel_sale: *1\n days_cancel_purchase: *1\n tax_percent: &2 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n time_zone: &5 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n gain_margin: *2\n created_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n updated_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n ticket_description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n days_cancel_reserved: *1\n reserve_sale_percent: &7 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n commission_percent: *1\n ticket_footer: &4 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n ticket_img_file_name: *4\n ticket_img_content_type: *4\n ticket_img_file_size: *1\n ticket_img_updated_at: &12 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n haggle_in_sale_percent: *1\n ticket_img: *4\n enable_haggle: &8 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n values:\n id: '1'\n cancel_partial_payment: '30'\n refund_sale: '30'\n days_cancel_sale: '30'\n days_cancel_purchase: '30'\n tax_percent: '16.0'\n time_zone: Mountain Time (US & Canada)\n gain_margin: '20.0'\n created_at: '2019-01-28 18:10:20.808419'\n updated_at: '2019-01-28 18:10:20.808419'\n ticket_description: \n days_cancel_reserved: '30'\n reserve_sale_percent: '20.00'\n commission_percent: '10'\n ticket_footer: \n ticket_img_file_name: \n ticket_img_content_type: \n ticket_img_file_size: \n ticket_img_updated_at: \n haggle_in_sale_percent: '10'\n ticket_img: \n enable_haggle: t\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1'\n type: *1\n value: 1\n cancel_partial_payment: !ruby/object:ActiveRecord::Attribute::FromUser\n name: cancel_partial_payment\n value_before_type_cast: '35'\n type: *1\n value: 35\n refund_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: refund_sale\n value_before_type_cast: '15'\n type: *1\n value: 15\n days_cancel_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_sale\n value_before_type_cast: '15'\n type: *1\n value: 15\n days_cancel_purchase: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_purchase\n value_before_type_cast: '100'\n type: *1\n value: 100\n tax_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: tax_percent\n value_before_type_cast: '16.0'\n type: *2\n value: !ruby/object:BigDecimal 18:0.16E2\n time_zone: !ruby/object:ActiveRecord::Attribute::FromUser\n name: time_zone\n value_before_type_cast: Chihuahua\n type: *5\n value: Chihuahua\n gain_margin: !ruby/object:ActiveRecord::Attribute::FromUser\n name: gain_margin\n value_before_type_cast: '100.0'\n type: *2\n value: !ruby/object:BigDecimal 18:0.1E3\n ticket_description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_description\n value_before_type_cast: "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN,\n SIN \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n type: *6\n value: "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN, SIN \\r\\nTEL.\n 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n reserve_sale_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: reserve_sale_percent\n value_before_type_cast: '30.0'\n type: *7\n value: !ruby/object:BigDecimal 18:0.3E2\n days_cancel_reserved: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_reserved\n value_before_type_cast: '35'\n type: *1\n value: 35\n commission_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: commission_percent\n value_before_type_cast: '1.0'\n type: *1\n value: 1\n ticket_footer: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_footer\n value_before_type_cast: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n*\n NO APLICAN DEVOLUCIONES EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA\n MERCANCÍA DAÑADA, SIN ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN\n VIGENCIA 30 DÍAS "\n type: *4\n value: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN\n ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_img\n value_before_type_cast: IMG_8613.jpg\n type: *4\n value: IMG_8613.jpg\n haggle_in_sale_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: haggle_in_sale_percent\n value_before_type_cast: '100'\n type: *1\n value: 100\n enable_haggle: !ruby/object:ActiveRecord::Attribute::FromUser\n name: enable_haggle\n value_before_type_cast: 'true'\n type: *8\n value: true\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-01-28 18:10:20.808419'\n type: *9\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *10\n type: *11\n value: *10\n ticket_img_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_file_name\n value_before_type_cast: \n type: *4\n ticket_img_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_content_type\n value_before_type_cast: \n type: *4\n ticket_img_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_file_size\n value_before_type_cast: \n type: *1\n ticket_img_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_updated_at\n value_before_type_cast: \n type: *12\n new_record: false\n mounted_as: :ticket_img\n- IMG_8613.jpg\nhaggle_in_sale_percent:\n- 10\n- 100\n 2 Se actualizaron los parámetros generales 189.186.39.120 723dc92f-6554-4281-bf99-0b2e9d534e79 2019-02-02 01:10:57.685706 26 3 User \N \N 1 User \N create ---\nuserid: ANABELLY\nfirst_name: 'ANABELLY '\nlast_name: GAXIOLA\nusertype: G\nemail: gaxiolaanabelly@gmail.com\nencrypted_password: "$2a$10$BH/Jzd.LUrbZlV9vvtX2FeJ2O.b9l7FgVdIrEUsIwgA/L9SOi1v/a"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 2\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.186.39.120 40ce8798-d540-4a70-bac6-efc1f61daf54 2019-02-02 01:18:08.982659 27 2 Pointsale \N \N 1 User \N create ---\nname: 'S BY SUO '\naddress: 'MORELOS 297 LOCAL 5 CENTRO '\nnotes: "MORELOS #297 LOC. 5\\r\\nCENTRO C.P 80000\\r\\nCULIACAN, SIN\\r\\nTEL.6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: S.BYSUO\\r\\nINSTAGRAM: S BY SUO "\nstatus: 1\nprefix: PV2\nimg_pointsale_file_name: \nimg_pointsale_content_type: \nimg_pointsale_file_size: \nimg_pointsale_updated_at: \nticket_footer: ''\nimg_pointsale: 26c8bf28-ac8f-4a5d-8c31-c8c1f3bfa8eb.JPG\nhaggle_percent: !ruby/object:BigDecimal 18:0.1E3\nfederal_taxpayer_registration: UIOS851003XXX\nbusiness_name: 'SUO BOUTIQUE '\ntax_regime: 601\npostal_code: 80000\n 1 El punto de venta S BY SUO fue creado. 189.186.39.120 40ce8798-d540-4a70-bac6-efc1f61daf54 2019-02-02 01:18:09.007518 28 2 Pointsale \N \N 1 User \N update ---\nticket_footer:\n- ''\n- "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO CAMBIOS NI DEVOLUCIONES EN PROMOCIONES\n Y APARTADOS\\r\\n* NO SE REGRESA EFECTIVO POR NINGÚN MOTIVO\\r\\n*NO SE ACEPTA MERCANCÍA\n EN MAL ESTADO Y SIN ETIQUETA "\n 2 \N 189.186.39.120 4fa55c32-2acb-4963-84c5-c616f17e931c 2019-02-02 01:21:27.058488 29 1 Pointsale \N \N 1 User \N update ---\nnotes:\n- ''\n- "MORELOS #297 LOC. 4\\r\\nCENTRO C.P 80000\\r\\nCULIACAN, SIN\\r\\nTEL.6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nINSTAGRAM: SUO BOUTIQUE\\r\\n"\nimg_pointsale:\n- !ruby/object:ImageUploader\n model: !ruby/object:Pointsale\n raw_attributes:\n id: '1'\n name: SUO\n address: ''\n notes: "MORELOS #297 LOC. 4\\r\\nCENTRO C.P 80000\\r\\nCULIACAN, SIN\\r\\nTEL.6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nINSTAGRAM: SUO BOUTIQUE\\r\\n"\n prefix: PV1\n img_pointsale: IMG_8613.jpg\n ticket_footer: "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO CAMBIOS NI DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS\\r\\n* NO SE REGRESA EFECTIVO POR NINGÚN MOTIVO\\r\\n*NO\n SE ACEPTA MERCANCÍA EN MAL ESTADO Y SIN ETIQUETA "\n haggle_percent: '0.0'\n tax_regime: '601'\n business_name: Punto de venta 1\n federal_taxpayer_registration: PVV010101PVV\n postal_code: '85000'\n status: '1'\n created_at: '2019-02-01 04:44:58.201443'\n updated_at: &7 2019-02-02 01:22:37.741634901 Z\n img_pointsale_file_name: \n img_pointsale_content_type: \n img_pointsale_file_size: \n img_pointsale_updated_at: \n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &2 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n name: &1 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n address: *1\n notes: &4 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n status: *2\n created_at: &6 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n updated_at: &8 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n prefix: *4\n img_pointsale_file_name: *1\n img_pointsale_content_type: *1\n img_pointsale_file_size: *2\n img_pointsale_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n ticket_footer: *1\n img_pointsale: *1\n haggle_percent: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n federal_taxpayer_registration: *1\n business_name: *1\n tax_regime: *2\n postal_code: *2\n values:\n id: '1'\n name: SUO\n address: ''\n notes: ''\n status: '1'\n created_at: '2019-02-01 04:44:58.201443'\n updated_at: '2019-02-01 21:49:45.246613'\n prefix: PV1\n img_pointsale_file_name: \n img_pointsale_content_type: \n img_pointsale_file_size: \n img_pointsale_updated_at: \n ticket_footer: ''\n img_pointsale: \n haggle_percent: '0.00'\n federal_taxpayer_registration: PVV010101PVV\n business_name: Punto de venta 1\n tax_regime: '601'\n postal_code: '85000'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1'\n type: *2\n value: 1\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: SUO\n type: *1\n value: SUO\n address: !ruby/object:ActiveRecord::Attribute::FromUser\n name: address\n value_before_type_cast: ''\n type: *1\n value: ''\n notes: !ruby/object:ActiveRecord::Attribute::FromUser\n name: notes\n value_before_type_cast: "MORELOS #297 LOC. 4\\r\\nCENTRO C.P 80000\\r\\nCULIACAN,\n SIN\\r\\nTEL.6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nINSTAGRAM:\n SUO BOUTIQUE\\r\\n"\n type: *4\n value: "MORELOS #297 LOC. 4\\r\\nCENTRO C.P 80000\\r\\nCULIACAN, SIN\\r\\nTEL.6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nINSTAGRAM: SUO BOUTIQUE\\r\\n"\n prefix: !ruby/object:ActiveRecord::Attribute::FromUser\n name: prefix\n value_before_type_cast: PV1\n type: *4\n value: PV1\n img_pointsale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_pointsale\n value_before_type_cast: IMG_8613.jpg\n type: *1\n value: IMG_8613.jpg\n ticket_footer: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_footer\n value_before_type_cast: "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO\n CAMBIOS NI DEVOLUCIONES EN PROMOCIONES Y APARTADOS\\r\\n* NO SE REGRESA\n EFECTIVO POR NINGÚN MOTIVO\\r\\n*NO SE ACEPTA MERCANCÍA EN MAL ESTADO\n Y SIN ETIQUETA "\n type: *1\n value: "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO CAMBIOS NI DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS\\r\\n* NO SE REGRESA EFECTIVO POR NINGÚN MOTIVO\\r\\n*NO\n SE ACEPTA MERCANCÍA EN MAL ESTADO Y SIN ETIQUETA "\n haggle_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: haggle_percent\n value_before_type_cast: '0.0'\n type: *5\n value: !ruby/object:BigDecimal 18:0.0\n tax_regime: !ruby/object:ActiveRecord::Attribute::FromUser\n name: tax_regime\n value_before_type_cast: '601'\n type: *2\n value: 601\n business_name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: business_name\n value_before_type_cast: Punto de venta 1\n type: *1\n value: Punto de venta 1\n federal_taxpayer_registration: !ruby/object:ActiveRecord::Attribute::FromUser\n name: federal_taxpayer_registration\n value_before_type_cast: PVV010101PVV\n type: *1\n value: PVV010101PVV\n postal_code: !ruby/object:ActiveRecord::Attribute::FromUser\n name: postal_code\n value_before_type_cast: '85000'\n type: *2\n value: 85000\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *2\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-01 04:44:58.201443'\n type: *6\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *7\n type: *8\n value: *7\n img_pointsale_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_pointsale_file_name\n value_before_type_cast: \n type: *1\n img_pointsale_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_pointsale_content_type\n value_before_type_cast: \n type: *1\n img_pointsale_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_pointsale_file_size\n value_before_type_cast: \n type: *2\n img_pointsale_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_pointsale_updated_at\n value_before_type_cast: \n type: *9\n new_record: false\n mounted_as: :img_pointsale\n- IMG_8613.jpg\nticket_footer:\n- ''\n- "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO CAMBIOS NI DEVOLUCIONES EN PROMOCIONES\n Y APARTADOS\\r\\n* NO SE REGRESA EFECTIVO POR NINGÚN MOTIVO\\r\\n*NO SE ACEPTA MERCANCÍA\n EN MAL ESTADO Y SIN ETIQUETA "\n 3 \N 189.186.39.120 181084d8-41e3-4fec-88a8-935c20971d50 2019-02-02 01:22:37.803993 30 2 User \N \N 1 User \N update ---\nfirst_name:\n- Prueba 1\n- ROCIO\nlast_name:\n- Prueba 1\n- GUEVARA\nemail:\n- prueba@sts.com\n- bellota_chio@hotmail.com\n 2 Usuario GerentePrueba1 ha sido modificado. 189.186.39.120 8bdc83c5-0f8e-4a81-ac60-e185115b3909 2019-02-02 01:25:30.738837 31 2 User \N \N 1 User \N update ---\nstatus:\n- active\n- 2\n 3 El usuario GerentePrueba1 fue desactivado. 189.186.39.120 c5bf83ea-bf3d-4079-9a9a-423062ce3167 2019-02-02 01:25:49.845844 32 4 User \N \N 1 User \N create ---\nuserid: SAMANTHA\nfirst_name: SAMANTHA\nlast_name: URCISICHI\nusertype: A\nemail: samantha_urcisichi@hotmail.com\nencrypted_password: "$2a$10$/j690iG.NoR7EVkJwbBKIuDwk24mhim1HkZAcYiNAtF57Fk.5t4IC"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: \nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.186.39.120 25f6fd85-9c92-470c-80d5-56c6c41500aa 2019-02-02 01:32:38.931702 33 1 Category \N \N 1 User \N create ---\ncategory: JUMPER\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto JUMPER fue creada. 189.186.39.120 5a9806fd-0d25-46fe-8da2-6e78608bd564 2019-02-02 01:37:02.474305 34 1 Product \N \N 1 User \N create ---\nsku: JUM-1\nname: JMP-0001\ndescription: "JUMPER APEACH FLORES \\r\\n"\nprice_base: \nprice_sale: !ruby/object:BigDecimal 18:0.182E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: true\nprice_base_dollars: !ruby/object:BigDecimal 18:0.1E2\nimg_product: \ncategory_id: 1\nproduct_service_key: '01010101'\n 1 El producto JUM-1 fue creado. 189.186.39.120 525f993b-3495-4389-80da-f394cdea1445 2019-02-02 01:39:44.885716 35 1 Contact \N \N 1 User \N create ---\nname: BLANCA\nlast_name: MORALES\nphone: "(335) 000-9292"\nemail: blancam@gmail.com\nnotes: ''\nstatus: 1\n 1 \N 189.186.39.120 7c1f1834-8e83-47cd-84d4-b1a9c9787429 2019-02-02 01:46:06.583743 36 1 Supplier \N \N 1 User \N create ---\nnick_name: 'CLOE '\nphone: "(335) 000-9292"\nemail: blancam.cloe@gmail.com\nnotes: ''\ncontact_id: 1\nstatus: 1\n 1 El proveedor CLOE fue registrado. 189.186.39.120 7c1f1834-8e83-47cd-84d4-b1a9c9787429 2019-02-02 01:46:06.603123 37 1 Seller \N \N 1 User \N create ---\npointsale_id: 1\nname: 'ROCIO '\nlast_name: GUEVARA\nstatus: 1\n 1 El vendedor ROCIO GUEVARA fue registrado. 189.186.39.120 f3b9ae03-9178-436c-babf-d0cf9164f622 2019-02-02 01:47:39.778768 38 2 Seller \N \N 1 User \N create ---\npointsale_id: 2\nname: ANABELLY\nlast_name: GAXIOLA\nstatus: 1\n 1 El vendedor ANABELLY GAXIOLA fue registrado. 189.186.39.120 347eb14b-8809-49d4-ba0e-b0085c20e691 2019-02-02 01:47:58.144362 39 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-01 21:41:39.707381000 Z\n- &1 2019-02-02 00:52:17.163556000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-02 01:49:15.303331699 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537292\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542565\n mask_addr: 4294967295\nsign_in_count:\n- 6\n- 7\n 14 \N 177.228.129.101 e74777ab-2b39-490f-a35c-5e3fa4614d11 2019-02-02 01:49:15.316367 40 1 User \N \N 1 User \N update ---\nunique_session_id:\n- PTHeF-sUqwbzfN58yr1b\n- DpLQqdqwEELpZZ7erkPZ\n 15 \N 177.228.129.101 e74777ab-2b39-490f-a35c-5e3fa4614d11 2019-02-02 01:49:15.339197 41 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-02-02 01:49:40.972316664 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 189.186.39.120 8f042c17-0b42-4514-be9f-bd2f7db407f4 2019-02-02 01:49:40.98272 42 4 User \N \N 4 User \N update ---\nunique_session_id:\n- \n- orYbc2LuKQUG1-7cS3HX\n 3 \N 189.186.39.120 8f042c17-0b42-4514-be9f-bd2f7db407f4 2019-02-02 01:49:41.005327 43 2 Expensesconcept \N \N 4 User \N create ---\nname: RENTA\ndescription: ''\nallpoints: true\nstatus: 1\nexpense_from_purchase: 0\n 1 Concepto de egreso RENTA creado. 189.186.39.120 295a78b0-26be-40e8-b4bc-1a60490a0cd9 2019-02-02 01:50:12.803692 72 1 Product \N \N 5 User \N update ---\nstatus:\n- active\n- 0\n 2 El producto JMP-0001 fue eliminado. 189.252.59.239 2fe0e8de-bf84-4147-ba33-8f2f02d47c3b 2019-02-02 22:49:41.896295 107 73 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000073'\n 1 \N \N 624324f2-27b9-41b3-86ab-9738e326605d 2019-02-04 08:28:01.349371 44 5 User \N \N 1 User \N create ---\nuserid: chemi\nfirst_name: josemiguel\nlast_name: ledon\nusertype: A\nemail: josemiguel@sml.mx\nencrypted_password: "$2a$10$nOXYdvuKwMAeEG8xetWIzOMuI69mAx9XcYQA2ucEIpH4w9zvJxYTa"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: \nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 177.228.129.101 3a182b57-087e-436a-95a4-bbed780c4480 2019-02-02 01:51:01.151399 45 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-02-02 01:51:06.636514086 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 2984542565\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 2984542565\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 177.228.129.101 d5059ff1-b16a-480b-b92a-30ecac1628a9 2019-02-02 01:51:06.646965 46 5 User \N \N 5 User \N update ---\nunique_session_id:\n- \n- 4S1LrUtEZjD_6v51ySyc\n 3 \N 177.228.129.101 d5059ff1-b16a-480b-b92a-30ecac1628a9 2019-02-02 01:51:06.67118 47 2 Category \N \N 5 User \N create ---\ncategory: SHORT\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto SHORT fue creada. 177.228.129.101 dfb113d2-0283-42da-82d6-5106c45128cd 2019-02-02 01:53:02.304034 48 3 Category \N \N 5 User \N create ---\ncategory: RELOJ\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto RELOJ fue creada. 177.228.129.101 cca8f441-4de7-4486-97d0-ee363b3817ce 2019-02-02 01:53:21.638973 49 4 Category \N \N 5 User \N create ---\ncategory: CARTERA\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto CARTERA fue creada. 177.228.129.101 3cd130b0-196f-4268-8eb6-572d9439724e 2019-02-02 01:53:33.149173 50 5 Category \N \N 5 User \N create ---\ncategory: LENTES\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto LENTES fue creada. 177.228.129.101 d88bf2ec-c600-4df0-a880-a874b656a790 2019-02-02 01:53:41.143127 51 6 Category \N \N 5 User \N create ---\ncategory: BOLSAS\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto BOLSAS fue creada. 177.228.129.101 5fdb33a6-0cc9-4485-ab7b-37fdbf50e1f1 2019-02-02 01:53:59.364026 52 7 Category \N \N 5 User \N create ---\ncategory: BLUSAS\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto BLUSAS fue creada. 177.228.129.101 96080275-4c00-4b0d-81f4-4b57f60f5fee 2019-02-02 01:54:33.151712 53 8 Category \N \N 5 User \N create ---\ncategory: PANTALONES\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto PANTALONES fue creada. 177.228.129.101 9ecc0306-2ee3-4670-bbcd-94d99c2abee1 2019-02-02 01:54:46.673559 54 9 Category \N \N 5 User \N create ---\ncategory: PALAZZO\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto PALAZZO fue creada. 177.228.129.101 4a0bec38-e099-49f7-bb2c-600b946250ce 2019-02-02 01:54:55.324527 55 10 Category \N \N 5 User \N create ---\ncategory: CONJUNTO\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto CONJUNTO fue creada. 177.228.129.101 9a60e626-0b71-4f2f-a5ef-9cbab4267801 2019-02-02 01:55:03.119524 56 11 Category \N \N 5 User \N create ---\ncategory: FALDA\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto FALDA fue creada. 177.228.129.101 4d37edbf-84b6-4d55-9ca0-f2dcbf33642d 2019-02-02 01:55:48.384351 57 12 Category \N \N 5 User \N create ---\ncategory: VESTIDO\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto VESTIDO fue creada. 177.228.129.101 22a12e39-3dc4-4e4f-b73d-48851845424d 2019-02-02 01:56:02.523713 58 13 Category \N \N 5 User \N create ---\ncategory: ZAPATO\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto ZAPATO fue creada. 177.228.129.101 2b7b0de1-1d02-463b-a277-999c8d320ac1 2019-02-02 01:56:21.087071 59 5 User \N \N 5 User \N update ---\ncurrent_sign_in_at:\n- 2019-02-02 01:51:06.636514000 Z\n- 2019-02-02 02:14:37.790741441 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542565\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3187438970\n mask_addr: 4294967295\nsign_in_count:\n- 1\n- 2\n 4 \N 189.252.117.122 657526da-69d2-4a4a-b610-a9b971af072e 2019-02-02 02:14:37.801217 60 5 User \N \N 5 User \N update ---\nunique_session_id:\n- 4S1LrUtEZjD_6v51ySyc\n- zU_xa84HFAoisEqey2zt\n 5 \N 189.252.117.122 657526da-69d2-4a4a-b610-a9b971af072e 2019-02-02 02:14:37.822065 61 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-02-02 01:51:06.636514000 Z\n- &1 2019-02-02 02:14:37.790741000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-02 04:28:02.056332823 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542565\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3187438970\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3187438970\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542565\n mask_addr: 4294967295\nsign_in_count:\n- 2\n- 3\n 6 \N 177.228.129.101 19d0224d-3faa-4c0d-b42a-700356a76e36 2019-02-02 04:28:02.068432 62 5 User \N \N 5 User \N update ---\nunique_session_id:\n- zU_xa84HFAoisEqey2zt\n- epN1HgYKhxvABv7Gkdsa\n 7 \N 177.228.129.101 19d0224d-3faa-4c0d-b42a-700356a76e36 2019-02-02 04:28:02.090801 63 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-02 00:52:17.163556000 Z\n- &1 2019-02-02 01:49:15.303331000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-02 17:11:00.193461134 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542565\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542565\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537292\n mask_addr: 4294967295\nsign_in_count:\n- 7\n- 8\n 16 \N 177.228.108.204 e8ecd635-f112-4435-8a2a-2188982121ce 2019-02-02 17:11:00.234012 64 1 User \N \N 1 User \N update ---\nunique_session_id:\n- DpLQqdqwEELpZZ7erkPZ\n- i8khru7qNycSx51szNt-\n 17 \N 177.228.108.204 e8ecd635-f112-4435-8a2a-2188982121ce 2019-02-02 17:11:00.267778 65 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-02-02 17:25:59.887229105 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 2984537292\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 2984537292\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 177.228.108.204 1ff96e18-3e3d-427f-af7e-b5d5e89091ca 2019-02-02 17:25:59.897112 66 3 User \N \N 3 User \N update ---\nunique_session_id:\n- \n- vjDfDQzJdfc-PzSBzeBY\n 3 \N 177.228.108.204 1ff96e18-3e3d-427f-af7e-b5d5e89091ca 2019-02-02 17:25:59.916995 67 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-02 01:49:15.303331000 Z\n- &1 2019-02-02 17:11:00.193461000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-02 17:30:14.451196116 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542565\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537292\n mask_addr: 4294967295\nsign_in_count:\n- 8\n- 9\n 18 \N 177.228.108.204 033f0ba3-00f7-407c-9d74-7f6af5c8c9ae 2019-02-02 17:30:14.462038 68 1 User \N \N 1 User \N update ---\nunique_session_id:\n- i8khru7qNycSx51szNt-\n- Xdwx__axHunoYPn5FbxC\n 19 \N 177.228.108.204 033f0ba3-00f7-407c-9d74-7f6af5c8c9ae 2019-02-02 17:30:14.48531 69 1 Pointsale \N \N 5 User \N update ---\naddress:\n- ''\n- test\n 4 \N 189.252.59.239 c4f6e825-9871-4d4f-a345-50a9c68d88f5 2019-02-02 20:58:14.59877 73 14 Category \N \N 5 User \N create ---\ncategory: COSMETIQUERA\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto COSMETIQUERA fue creada. 189.252.59.239 def981c7-e865-417e-aa99-b38e54e2a690 2019-02-02 22:53:01.837281 74 15 Category \N \N 5 User \N create ---\ncategory: PERFUMES\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto PERFUMES fue creada. 189.252.59.239 2bd23650-fc66-4c87-b548-147c4c6a428a 2019-02-02 22:53:37.620629 75 16 Category \N \N 5 User \N create ---\ncategory: PULCERAS\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto PULCERAS fue creada. 189.252.59.239 e96ab725-f3e1-4a41-baad-0501002408a2 2019-02-02 22:54:00.525646 76 17 Category \N \N 5 User \N create ---\ncategory: COLLARES\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto COLLARES fue creada. 189.252.59.239 0a9e62e5-a8bd-4888-a17f-cf675f2dcf4a 2019-02-02 22:54:22.265027 77 434 AvailableProduct \N \N 5 User \N create ---\nproduct_id: 151\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: !ruby/object:BigDecimal 27:0.479E3\nproducts_variant_id: \n 1 \N 189.252.59.239 be626472-59c4-468b-942f-e2fff69c57ce 2019-02-02 23:55:39.644203 78 435 AvailableProduct \N \N 5 User \N create ---\nproduct_id: 143\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: !ruby/object:BigDecimal 27:0.599E3\nproducts_variant_id: \n 1 \N 189.252.59.239 df80c817-a0f7-4c11-b919-0698ee7169de 2019-02-02 23:55:59.002387 79 436 AvailableProduct \N \N 5 User \N create ---\nproduct_id: 152\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: !ruby/object:BigDecimal 27:0.669E3\nproducts_variant_id: \n 1 \N 189.252.59.239 92739f16-8740-4c5b-be5e-b4750dcc5239 2019-02-02 23:56:07.683997 80 437 AvailableProduct \N \N 5 User \N create ---\nproduct_id: 199\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: !ruby/object:BigDecimal 27:0.749E3\nproducts_variant_id: \n 1 \N 189.252.59.239 f0225c72-5cce-42be-b73e-e7dceed3c519 2019-02-02 23:56:17.413623 81 438 AvailableProduct \N \N 5 User \N create ---\nproduct_id: 200\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: !ruby/object:BigDecimal 27:0.529E3\nproducts_variant_id: \n 1 \N 189.252.59.239 30ccc1bf-58c1-4983-8f79-4654d2161394 2019-02-02 23:56:28.227328 82 436 Product \N \N 5 User \N create ---\nsku: BLU-436\nname: CONTROL\ndescription: CONTROL\nprice_base: !ruby/object:BigDecimal 18:0.1E3\nprice_sale: !ruby/object:BigDecimal 18:0.2E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 1\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-436 fue creado. 189.252.59.239 30f43b25-7d20-40d1-a5de-c2f79b8d06c6 2019-02-04 08:14:00.93075 83 436 Product \N \N 5 User \N update ---\nstatus:\n- active\n- 0\n 2 El producto CONTROL fue eliminado. 189.252.59.239 bc58dd5e-ac55-4b41-a591-9ea2db542a20 2019-02-04 08:15:15.369375 84 437 Product \N \N 5 User \N create ---\nsku: BLU-436\nname: 'control 2 '\ndescription: asdasd\nprice_base: !ruby/object:BigDecimal 18:0.1E3\nprice_sale: !ruby/object:BigDecimal 18:0.2E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-436 fue creado. 189.252.59.239 2417f69b-4c08-4719-91f9-337f5f2a7eb3 2019-02-04 08:16:14.189007 85 438 Product \N \N 5 User \N create ---\nsku: BLU-436\nname: control 3\ndescription: asdsad\nprice_base: !ruby/object:BigDecimal 18:0.1E3\nprice_sale: !ruby/object:BigDecimal 18:0.2E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 1\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-436 fue creado. 189.252.59.239 4b4ba6b9-c4a7-404b-bd90-90ea790d940f 2019-02-04 08:17:43.143596 86 438 Product \N \N 5 User \N update ---\nbarcode:\n- ''\n- '0000438'\n 2 \N 189.252.59.239 4b4ba6b9-c4a7-404b-bd90-90ea790d940f 2019-02-04 08:17:43.188904 87 366 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000366'\n 1 \N \N d6b3fc1b-a7ca-4a64-8585-a25f9c59b802 2019-02-04 08:28:00.776483 88 356 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000356'\n 1 \N \N 00573bc4-5ef8-4b4c-b387-a5eaef74b40f 2019-02-04 08:28:00.816819 89 270 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000270'\n 1 \N \N b3d41ccc-d377-48e4-8e3f-01f23d6f663f 2019-02-04 08:28:00.860271 90 341 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000341'\n 1 \N \N 544de5be-93bf-4c48-8fec-0e07dd9838be 2019-02-04 08:28:00.889264 91 59 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000059'\n 1 \N \N 5888e77c-4abf-4463-a291-e9bfee281f45 2019-02-04 08:28:00.913851 92 263 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000263'\n 1 \N \N 9837a30f-4476-4fa2-858a-47f486df0f48 2019-02-04 08:28:00.938417 93 350 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000350'\n 1 \N \N 6b2a3aa9-22d8-45ba-a361-d67603dd6de3 2019-02-04 08:28:00.963336 94 351 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000351'\n 1 \N \N ba5675a4-3903-4210-9e0b-1a1c89754a60 2019-02-04 08:28:00.994862 95 369 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000369'\n 1 \N \N a79c51c3-f7c2-45f0-ae63-af8a6f777a6e 2019-02-04 08:28:01.029835 96 352 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000352'\n 1 \N \N 5d9b99a0-76eb-4503-8746-fff59d6a335a 2019-02-04 08:28:01.08129 97 353 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000353'\n 1 \N \N d51fda79-184c-4a19-94bc-3a389002e462 2019-02-04 08:28:01.108108 98 336 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000336'\n 1 \N \N 4683d200-dd96-4fda-8db8-a1c077403dbe 2019-02-04 08:28:01.137565 99 39 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000039'\n 1 \N \N 8c6cf461-73f0-4b53-892c-ad759ea2c0de 2019-02-04 08:28:01.168253 100 56 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000056'\n 1 \N \N 9b8446f1-a516-43be-ad71-01f549871baf 2019-02-04 08:28:01.198799 101 57 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000057'\n 1 \N \N 3680d963-e42e-484b-a6be-d07617983cf7 2019-02-04 08:28:01.222205 102 313 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000313'\n 1 \N \N 1b473fcf-76a7-4648-8f1f-a2b596ad9274 2019-02-04 08:28:01.244167 103 70 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000070'\n 1 \N \N d19db0b7-2a5a-46ab-abb7-1ae690bde748 2019-02-04 08:28:01.266952 104 69 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000069'\n 1 \N \N 82d59a4f-2eef-4e06-a6b3-352b6cc34422 2019-02-04 08:28:01.288779 105 68 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000068'\n 1 \N \N d9514828-4009-4903-95dc-c3d7ca0bf24e 2019-02-04 08:28:01.308958 106 66 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000066'\n 1 \N \N 8491a05f-cdc9-4b7d-a9a3-5b9ae231c435 2019-02-04 08:28:01.32867 108 295 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000295'\n 1 \N \N 5e54c15b-52d3-44a0-99d9-4fe49af7968c 2019-02-04 08:28:01.369954 109 312 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000312'\n 1 \N \N 05716ca0-3028-49d3-8fa3-51c3f687ff3d 2019-02-04 08:28:01.390853 110 67 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000067'\n 1 \N \N adfd521d-a920-4857-bfc4-f6fe86066fde 2019-02-04 08:28:01.416879 111 117 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000117'\n 1 \N \N db8ef4d3-3d56-4d2e-a3ea-dcf74bcf0251 2019-02-04 08:28:01.445928 112 293 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000293'\n 1 \N \N b15146bc-ee4b-48d7-81d8-bf5770b41e7c 2019-02-04 08:28:01.475446 113 113 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000113'\n 1 \N \N 59193013-4a39-4262-baa7-e70751aad8cc 2019-02-04 08:28:01.50441 114 315 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000315'\n 1 \N \N 9b3f955b-a317-48ce-b63c-558beb04eccd 2019-02-04 08:28:01.532076 115 308 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000308'\n 1 \N \N 3a3d5599-6d98-4d3b-8d9a-2617cd1f971f 2019-02-04 08:28:01.560499 116 108 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000108'\n 1 \N \N 2c78a678-8a97-4723-bd42-54d0da20b647 2019-02-04 08:28:01.591582 117 290 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000290'\n 1 \N \N f8f87670-b1b6-42c1-97cb-98e974ef51e1 2019-02-04 08:28:01.62171 118 65 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000065'\n 1 \N \N d4f0679c-63ae-4d0f-a785-6c069022bf4f 2019-02-04 08:28:01.648751 119 64 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000064'\n 1 \N \N 6d5d6b56-90df-4cf8-a69c-70bcfd4d19dc 2019-02-04 08:28:01.67469 120 90 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000090'\n 1 \N \N 1ba07868-33dc-4997-bd92-cbacd941d947 2019-02-04 08:28:01.702121 121 289 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000289'\n 1 \N \N 2eddb495-b9f2-4f94-bccf-c22f1e311cc8 2019-02-04 08:28:01.724813 122 110 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000110'\n 1 \N \N 68fb4e6d-e351-4520-82b7-c6cbf9e9ce89 2019-02-04 08:28:01.747182 123 115 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000115'\n 1 \N \N dd6fb353-0605-47b9-9f22-e550e0bb6b91 2019-02-04 08:28:01.769287 124 107 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000107'\n 1 \N \N b6621861-0fb4-409a-bdde-4d78042fc828 2019-02-04 08:28:01.804877 125 91 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000091'\n 1 \N \N 5a6e12e3-8fa0-4318-88ba-96c6ecb14f1b 2019-02-04 08:28:01.829054 126 280 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000280'\n 1 \N \N 24026b24-2834-4afc-aad3-72d18305f213 2019-02-04 08:28:01.861943 127 299 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000299'\n 1 \N \N 70e63d39-4288-4526-9221-055a8c69513a 2019-02-04 08:28:01.892959 128 96 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000096'\n 1 \N \N 71a9866c-bd29-4539-a23b-0bc39af9ae1e 2019-02-04 08:28:01.922902 129 95 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000095'\n 1 \N \N 0a438c76-aabd-4b2b-ba17-31ff72cfac77 2019-02-04 08:28:01.964491 130 114 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000114'\n 1 \N \N 4b25c24c-8f00-4018-ad25-534ebac4d4a0 2019-02-04 08:28:01.990118 131 283 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000283'\n 1 \N \N 57e7191b-7fc6-4cd3-91fd-2e897689bfcf 2019-02-04 08:28:02.018975 132 306 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000306'\n 1 \N \N aa0cda45-eb71-4a80-afce-85555c1eff64 2019-02-04 08:28:02.040408 133 94 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000094'\n 1 \N \N cd73cb4c-3e7c-4ed5-9fb1-53340b5c150e 2019-02-04 08:28:02.06143 134 111 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000111'\n 1 \N \N 9d2189a0-db18-472f-adba-9bb631d38035 2019-02-04 08:28:02.08421 135 102 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000102'\n 1 \N \N e35868c6-1ccb-441c-ac5c-5ed91227504e 2019-02-04 08:28:02.106438 136 109 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000109'\n 1 \N \N 7d6020c0-be8c-40ad-9bb2-83827d4522d9 2019-02-04 08:28:02.12863 137 287 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000287'\n 1 \N \N 47486cd5-600f-47fd-b564-9986d7f8012e 2019-02-04 08:28:02.148838 138 85 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000085'\n 1 \N \N 6f912f2c-81fd-4015-b5e5-504e65870680 2019-02-04 08:28:02.168238 139 98 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000098'\n 1 \N \N 0dd68cd1-fce8-41a1-8969-dfa2490fd2c3 2019-02-04 08:28:02.193741 140 121 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000121'\n 1 \N \N 3ccd2200-7f03-4524-a358-0e5ec3ab0521 2019-02-04 08:28:02.218438 141 74 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000074'\n 1 \N \N 06a45995-d81b-4b3a-833a-726c05a24275 2019-02-04 08:28:02.239383 142 282 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000282'\n 1 \N \N 8428c39b-8870-439f-adac-6a82de7509bf 2019-02-04 08:28:02.26287 143 89 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000089'\n 1 \N \N 25646b27-a05b-4838-bf80-565e6a7bf633 2019-02-04 08:28:02.289846 144 307 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000307'\n 1 \N \N 592e3dd9-0d61-46cd-87fd-f651fe79cd63 2019-02-04 08:28:02.316845 145 97 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000097'\n 1 \N \N a3da2914-eae0-4398-84e8-9928e617ec9c 2019-02-04 08:28:02.338414 146 288 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000288'\n 1 \N \N d775d514-7ade-47f2-9134-c7a04583be0a 2019-02-04 08:28:02.359584 147 305 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000305'\n 1 \N \N 4b3c299b-41bd-4ede-81f8-74f758136f97 2019-02-04 08:28:02.388529 148 72 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000072'\n 1 \N \N 19796ec6-72ea-4743-8711-13b311e51f2f 2019-02-04 08:28:02.41473 149 87 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000087'\n 1 \N \N 3cd51e6b-7e03-46a5-b135-e71f75277253 2019-02-04 08:28:02.437765 150 86 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000086'\n 1 \N \N 05f0e8be-3f43-4cda-98d1-966ee4afb4de 2019-02-04 08:28:02.459175 151 286 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000286'\n 1 \N \N 7bdeaaac-5e6e-4c9f-8b13-32fc6e9a54cd 2019-02-04 08:28:02.482436 152 303 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000303'\n 1 \N \N 6f28c4d2-7607-42d0-8e86-b8165f5aa00a 2019-02-04 08:28:02.507053 153 304 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000304'\n 1 \N \N ebd1f06e-76eb-4f12-88f5-11183a314ebf 2019-02-04 08:28:02.528346 154 297 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000297'\n 1 \N \N 3c140561-31d3-4b4e-84db-15e4ada9214c 2019-02-04 08:28:02.547916 155 302 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000302'\n 1 \N \N a34de93b-c198-41b6-b71d-1b3d0809d10a 2019-02-04 08:28:02.569031 156 122 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000122'\n 1 \N \N 4325ca7c-1ee2-4a6b-b80c-7cf441924375 2019-02-04 08:28:02.58985 157 63 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000063'\n 1 \N \N 059592b8-f2e1-41a6-82c6-52f2f685fc9d 2019-02-04 08:28:02.610761 158 101 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000101'\n 1 \N \N 59296c4e-c3b0-4401-9d18-cc1b9ceed0e9 2019-02-04 08:28:02.634409 159 285 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000285'\n 1 \N \N b676ea26-a8fc-4f1e-bf98-577f6815c4c9 2019-02-04 08:28:02.663925 160 61 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000061'\n 1 \N \N b78b09fe-0d1d-4fcb-b28e-c72f44e29c14 2019-02-04 08:28:02.684602 161 281 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000281'\n 1 \N \N 986a37fe-16f5-43f7-82c7-280355bbaa76 2019-02-04 08:28:02.705612 162 116 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000116'\n 1 \N \N 3ef84d21-b276-41ef-ae89-a4b585944896 2019-02-04 08:28:02.744035 163 301 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000301'\n 1 \N \N 7463fe5a-ee78-49b2-aa06-f6a72743d7cd 2019-02-04 08:28:02.77139 164 300 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000300'\n 1 \N \N e9f7f467-cb94-4e89-9bd9-185a46bd8eb4 2019-02-04 08:28:02.799869 165 296 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000296'\n 1 \N \N e69d815c-3612-41e6-8d89-9e1757d15606 2019-02-04 08:28:02.829275 166 60 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000060'\n 1 \N \N c7826827-8cdb-4695-8126-255e16d0eb18 2019-02-04 08:28:02.859037 167 298 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000298'\n 1 \N \N dc8a4148-4095-47ee-84da-60a8fba4c588 2019-02-04 08:28:02.88836 168 272 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000272'\n 1 \N \N d750e13f-7b8b-452c-b89f-47d4d3d52a02 2019-02-04 08:28:02.918307 169 340 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000340'\n 1 \N \N e270fedd-1bc9-48aa-9a87-8d5046d29ce5 2019-02-04 08:28:02.948656 170 79 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000079'\n 1 \N \N 4852d161-3336-434b-8e84-bfa3b3e1523c 2019-02-04 08:28:02.979246 171 294 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000294'\n 1 \N \N 6d4cd415-7b9b-4a7a-b810-e486c205df22 2019-02-04 08:28:03.009834 172 78 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000078'\n 1 \N \N bbb5d213-27b3-42bc-ad8c-4ae4fb956d8d 2019-02-04 08:28:03.04104 173 292 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000292'\n 1 \N \N 38f3171d-367b-4fd9-be89-546cd37d21dc 2019-02-04 08:28:03.071393 174 82 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000082'\n 1 \N \N b0db38de-9a73-4512-bad9-926a4220a2cc 2019-02-04 08:28:03.103389 175 11 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000011'\n 1 \N \N ea4824ab-60c1-4066-bb3b-88310eff251d 2019-02-04 08:28:03.134398 176 99 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000099'\n 1 \N \N 7d172c8a-ba79-47a9-b0e8-6e6af2d8485e 2019-02-04 08:28:03.169308 177 278 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000278'\n 1 \N \N e0ba7abb-411d-4d60-bb69-673c5f159050 2019-02-04 08:28:03.201206 178 81 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000081'\n 1 \N \N 2cfb90a0-c96e-476b-8a67-3ea8e5dbf947 2019-02-04 08:28:03.232925 179 83 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000083'\n 1 \N \N 8b8c2865-12d3-449c-b0c0-62e3c3e6c71d 2019-02-04 08:28:03.26245 180 75 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000075'\n 1 \N \N 0d5ff1e5-f47c-4cd4-98f5-220ea89cb150 2019-02-04 08:28:03.29477 181 284 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000284'\n 1 \N \N 17655634-4ec3-483e-b490-9b71d7715a33 2019-02-04 08:28:03.324797 182 76 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000076'\n 1 \N \N cd708de4-ca62-4f3e-8483-f9910a8406f9 2019-02-04 08:28:03.352872 183 80 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000080'\n 1 \N \N 1ee67e60-877b-475e-9a88-6b13487d9295 2019-02-04 08:28:03.384683 184 77 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000077'\n 1 \N \N bd54720a-ec8f-496f-b2b8-a38b6eb10bea 2019-02-04 08:28:03.415307 185 276 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000276'\n 1 \N \N 058f4159-da66-44ee-923f-d577edec9ef9 2019-02-04 08:28:03.445223 186 291 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000291'\n 1 \N \N 0e14c0db-1985-4e4e-8d94-2ccdde3b941c 2019-02-04 08:28:03.477226 187 277 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000277'\n 1 \N \N ab016c95-0ab6-464b-8305-273669caf1a0 2019-02-04 08:28:03.508031 188 93 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000093'\n 1 \N \N d8a660b7-597b-4fc7-8fa6-de179af54833 2019-02-04 08:28:03.531866 189 310 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000310'\n 1 \N \N 510d1819-48d8-44ae-8ccc-cebd58dbb1a4 2019-02-04 08:28:03.555536 190 279 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000279'\n 1 \N \N 2919d031-d32b-41eb-bf69-f372a4630ac3 2019-02-04 08:28:03.581718 191 275 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000275'\n 1 \N \N c8ef05b3-7dc5-4897-9437-845243525ff9 2019-02-04 08:28:03.61006 192 92 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000092'\n 1 \N \N 2074925b-56ce-40e0-9c9a-80b400e29619 2019-02-04 08:28:03.639963 193 62 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000062'\n 1 \N \N ecc2b6a5-6be7-4750-9fb3-5b9d6dbeabed 2019-02-04 08:28:03.683885 194 133 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000133'\n 1 \N \N a3740f66-781a-4343-8ca8-1f4817f89c5e 2019-02-04 08:28:03.713472 195 134 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000134'\n 1 \N \N 1f26ffc0-c5f3-4124-bca4-b7c6a92e567e 2019-02-04 08:28:03.739317 196 136 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000136'\n 1 \N \N f483123e-359e-4bea-bd6a-b143fa538b2b 2019-02-04 08:28:03.767745 197 135 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000135'\n 1 \N \N f5bf4f38-f830-4a9d-a648-5166b484387f 2019-02-04 08:28:03.797794 198 137 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000137'\n 1 \N \N 34eededf-54c4-496c-a7c6-a276deace55e 2019-02-04 08:28:03.828351 199 138 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000138'\n 1 \N \N 099da871-40df-4407-b178-18c1899f00d1 2019-02-04 08:28:03.857642 200 139 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000139'\n 1 \N \N 9ef12be6-3368-437d-b431-9a2ff12208af 2019-02-04 08:28:03.889222 201 140 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000140'\n 1 \N \N 79668170-c992-4fdd-b100-e8e1d5e13d06 2019-02-04 08:28:03.916437 202 141 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000141'\n 1 \N \N bee1b0db-34db-4267-9148-4d5523f0496a 2019-02-04 08:28:03.938476 203 142 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000142'\n 1 \N \N ee45d0f1-b697-463f-aa72-bece845447d2 2019-02-04 08:28:03.961713 204 143 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000143'\n 1 \N \N f7237c46-2090-4bb4-b0c0-db50b28637b8 2019-02-04 08:28:03.984245 205 144 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000144'\n 1 \N \N ab9db59a-9d63-4f39-a2ed-e3d11db86651 2019-02-04 08:28:04.009055 206 145 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000145'\n 1 \N \N 5be326ac-5727-4737-8622-5ea49e3f2b84 2019-02-04 08:28:04.029755 207 146 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000146'\n 1 \N \N a62d2e0b-b22a-4973-b3c6-50901cca3f8a 2019-02-04 08:28:04.056487 208 147 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000147'\n 1 \N \N 736f451e-80b2-4541-ace2-3baedcd6bbde 2019-02-04 08:28:04.085019 209 148 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000148'\n 1 \N \N 76c3076c-aff2-4b0f-813a-1cb56154c4a3 2019-02-04 08:28:04.114167 210 149 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000149'\n 1 \N \N 38a22b8b-88c6-4b09-b920-38890ca92d18 2019-02-04 08:28:04.137988 211 150 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000150'\n 1 \N \N 5e550867-c258-44e3-890c-f080a05dac3b 2019-02-04 08:28:04.16689 212 151 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000151'\n 1 \N \N b53ace5f-304e-463f-b6ae-01b037a84cd4 2019-02-04 08:28:04.194511 213 152 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000152'\n 1 \N \N c865b7ee-0c43-4c1d-bcf6-b024a6677d0a 2019-02-04 08:28:04.218886 214 153 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000153'\n 1 \N \N a791a0c2-b5f8-490f-af6e-fe2416e3210a 2019-02-04 08:28:04.24186 215 322 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000322'\n 1 \N \N 2e992d2c-d481-485e-959d-2cebcb40b9c2 2019-02-04 08:28:04.26674 216 154 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000154'\n 1 \N \N 3b707f70-1c8a-4193-b2dd-bcdfcabd2d01 2019-02-04 08:28:04.290537 217 155 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000155'\n 1 \N \N 7fb2d3ec-8250-42cc-ab05-098364c45676 2019-02-04 08:28:04.312612 218 156 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000156'\n 1 \N \N f78003c2-0905-497e-bda2-f8c3d30ce584 2019-02-04 08:28:04.340789 219 157 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000157'\n 1 \N \N f3445c4d-c58d-4463-8df0-1bf62c683488 2019-02-04 08:28:04.369888 220 158 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000158'\n 1 \N \N de299b13-2010-462e-bb9a-94fa09c61818 2019-02-04 08:28:04.400942 221 159 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000159'\n 1 \N \N 7d34f421-0922-4c76-900d-0b72e7522bf6 2019-02-04 08:28:04.430661 222 106 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000106'\n 1 \N \N 6ef11141-d44b-4abc-859b-ad69b2b93f76 2019-02-04 08:28:04.453455 223 173 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000173'\n 1 \N \N 8df6f1a5-8902-495b-b614-7cb46651e73f 2019-02-04 08:28:04.489605 224 71 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000071'\n 1 \N \N fd9919e5-1cf9-4a30-9546-fabce5d52967 2019-02-04 08:28:04.522718 225 104 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000104'\n 1 \N \N 13f23dc0-0961-4436-b814-aa732c0d731b 2019-02-04 08:28:04.553971 226 103 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000103'\n 1 \N \N e8eec79a-a654-4173-96de-96109905b20d 2019-02-04 08:28:04.585994 227 118 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000118'\n 1 \N \N ff6935e0-6632-41c7-acf7-5732b2e173d6 2019-02-04 08:28:04.61129 228 84 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000084'\n 1 \N \N d7054420-eb53-4894-a664-d85858817235 2019-02-04 08:28:04.635023 229 132 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000132'\n 1 \N \N 899362c5-4e4b-4f8c-a9ac-466df410df60 2019-02-04 08:28:04.659143 230 309 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000309'\n 1 \N \N c087152a-6e8b-482f-83c1-b0a7ecb18aff 2019-02-04 08:28:04.696513 231 311 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000311'\n 1 \N \N 68e1aa9e-2e7d-4edc-8139-aee7c7026b54 2019-02-04 08:28:04.727036 232 100 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000100'\n 1 \N \N 182ec8ef-272a-4757-812d-1ba82e13798a 2019-02-04 08:28:04.757765 233 125 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000125'\n 1 \N \N 679c50ea-c4bf-42ab-ad74-b2cf2b093ac6 2019-02-04 08:28:04.783807 234 124 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000124'\n 1 \N \N a5ef448e-62cb-4112-a76c-3edf0da935dd 2019-02-04 08:28:04.805764 235 120 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000120'\n 1 \N \N 557272f1-abfa-410d-81bf-96d8d14054d6 2019-02-04 08:28:04.834174 236 128 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000128'\n 1 \N \N 8bdc50e0-87f0-4af5-ae95-f66c140d8ab6 2019-02-04 08:28:04.861081 237 119 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000119'\n 1 \N \N 19820d03-7a3f-45de-9452-a4e918060bcb 2019-02-04 08:28:04.889291 238 129 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000129'\n 1 \N \N e112611b-662b-4756-95ac-0a3b6393216b 2019-02-04 08:28:04.910733 239 105 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000105'\n 1 \N \N bf8aab1c-827e-4a64-b586-82fe67f5915a 2019-02-04 08:28:04.932074 240 314 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000314'\n 1 \N \N 68fb1d79-cd91-4bb6-aa81-d2cf48ed20d1 2019-02-04 08:28:04.952232 241 130 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000130'\n 1 \N \N 97dfbadb-c9bf-4059-a3c9-301baf13dbb3 2019-02-04 08:28:04.975994 242 131 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000131'\n 1 \N \N 09c11e0c-4ba9-4978-a7c2-c386e20c1c90 2019-02-04 08:28:05.008489 243 123 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000123'\n 1 \N \N 5b090c04-f4a9-41f7-884d-4ca45b92aa5f 2019-02-04 08:28:05.053574 244 112 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000112'\n 1 \N \N 1663a778-93f1-4d00-85c1-bee2086593d8 2019-02-04 08:28:05.084958 245 126 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000126'\n 1 \N \N 336a5239-4593-4008-b9c2-a737b3542021 2019-02-04 08:28:05.116979 246 127 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000127'\n 1 \N \N a0c64024-b9f3-40e8-bed9-9d5acca1cb1c 2019-02-04 08:28:05.147004 247 316 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000316'\n 1 \N \N 5c5c6b78-278e-452d-a509-1bcc1d07e8bf 2019-02-04 08:28:05.179278 248 317 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000317'\n 1 \N \N 05021465-cf3c-47e3-8371-8cb358cebfb4 2019-02-04 08:28:05.21309 249 318 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000318'\n 1 \N \N 9628976d-4a70-4315-a85c-3e68e44610b7 2019-02-04 08:28:05.245202 250 319 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000319'\n 1 \N \N 76b5344c-603d-43c5-9ee5-6a73523baae5 2019-02-04 08:28:05.276315 251 320 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000320'\n 1 \N \N 28f87366-6239-4a71-b2fa-73e3d4b5d316 2019-02-04 08:28:05.321129 252 321 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000321'\n 1 \N \N bc90b48e-6abc-4d20-be4e-3313c0ee80e9 2019-02-04 08:28:05.352154 253 323 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000323'\n 1 \N \N e0b40a03-0d52-4bb2-975d-928480c48ba2 2019-02-04 08:28:05.382352 254 324 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000324'\n 1 \N \N aff0bb27-659a-4775-8dd5-26faf860c07e 2019-02-04 08:28:05.413138 255 325 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000325'\n 1 \N \N 0a69957c-8c29-4e05-9f02-81ed34f89253 2019-02-04 08:28:05.443531 256 326 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000326'\n 1 \N \N 7a62f7ab-2fe7-4841-9989-c553050343f5 2019-02-04 08:28:05.474868 257 327 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000327'\n 1 \N \N 3f5dca41-bf15-47ad-b143-552aaac5a74d 2019-02-04 08:28:05.50693 258 328 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000328'\n 1 \N \N 63b2ae2c-cd2b-45fe-8b89-56c8ba19c758 2019-02-04 08:28:05.538365 259 329 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000329'\n 1 \N \N 81a264f7-7a98-4a96-83d1-8b3d454b2904 2019-02-04 08:28:05.57051 260 330 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000330'\n 1 \N \N c1843ead-0e04-4c82-926c-ea67b8656813 2019-02-04 08:28:05.604348 261 331 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000331'\n 1 \N \N 372958bf-c609-4ee9-bfce-ec97e5b65655 2019-02-04 08:28:05.635263 262 332 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000332'\n 1 \N \N 689130a8-b8dc-4c17-968d-dd5b3dd4f726 2019-02-04 08:28:05.665388 263 367 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000367'\n 1 \N \N ec7af92e-1513-4e91-8111-98dcab84436a 2019-02-04 08:28:05.6959 264 368 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000368'\n 1 \N \N b63b4805-6890-4ff9-b8cd-46d62f076b1c 2019-02-04 08:28:05.725169 265 374 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000374'\n 1 \N \N 2f5967f9-7ed4-4c1c-b79c-a321654c2948 2019-02-04 08:28:05.75085 266 363 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000363'\n 1 \N \N 4846e6ca-ddd3-4512-af23-f8ffd5859b52 2019-02-04 08:28:05.773271 267 384 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000384'\n 1 \N \N 81786a7e-8b54-444f-b78e-f6b73c9b70bc 2019-02-04 08:28:05.79728 268 379 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000379'\n 1 \N \N 9a5a325e-b69b-49fb-842c-7fe0cbde310d 2019-02-04 08:28:05.826473 269 378 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000378'\n 1 \N \N db9ad779-fdfd-4d0d-bf4d-77722e031a40 2019-02-04 08:28:05.856203 270 55 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000055'\n 1 \N \N 0951f25e-ed41-408d-be2b-505bf319b12f 2019-02-04 08:28:05.885778 271 259 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000259'\n 1 \N \N 6b796e33-2361-446a-8192-0a6e9a8b73d3 2019-02-04 08:28:05.914856 272 267 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000267'\n 1 \N \N d0496561-382f-4fd9-bdd5-25c2696a9643 2019-02-04 08:28:05.940213 273 433 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000433'\n 1 \N \N 6e629108-7886-4407-b17e-8856fdbab912 2019-02-04 08:28:05.961119 274 434 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000434'\n 1 \N \N f165d9cc-13dc-42f4-90c2-ecd17f9ff55b 2019-02-04 08:28:05.984854 275 435 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000435'\n 1 \N \N 9e604386-a774-4e76-be42-02e51bd4b619 2019-02-04 08:28:06.012203 276 268 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000268'\n 1 \N \N bfbc0056-3893-470b-8932-cb5ca8c34fbf 2019-02-04 08:28:06.042512 277 260 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000260'\n 1 \N \N 6bc1cd96-d568-490f-91ba-05bfca33f756 2019-02-04 08:28:06.072098 278 400 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000400'\n 1 \N \N 06348d6d-8811-416c-a375-316ffca89c7a 2019-02-04 08:28:06.096985 279 186 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000186'\n 1 \N \N c7ea17c5-1bd9-4b2e-bd98-4967e37fb9dc 2019-02-04 08:28:06.133065 280 401 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000401'\n 1 \N \N 221d9b65-7959-4f29-b56c-e859fffc6a78 2019-02-04 08:28:06.158725 281 399 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000399'\n 1 \N \N 8521b1d7-6b58-4773-9e22-7b50744194b6 2019-02-04 08:28:06.190321 282 409 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000409'\n 1 \N \N 10a9f3c6-dc0a-4cec-9e62-2c76c2dd47a1 2019-02-04 08:28:06.221487 283 188 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000188'\n 1 \N \N 3756cf58-e0b5-421d-af50-a66ea7a6a685 2019-02-04 08:28:06.251421 284 190 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000190'\n 1 \N \N 4673a286-0903-417d-b312-0ac937bab880 2019-02-04 08:28:06.279502 285 404 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000404'\n 1 \N \N a5980992-7c6c-49fc-ac53-3c202c9427d6 2019-02-04 08:28:06.307517 286 398 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000398'\n 1 \N \N 1969ca9a-6153-425d-9fe7-e4994029f7cb 2019-02-04 08:28:06.335246 287 193 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000193'\n 1 \N \N c643de88-bd33-495f-987c-2e4e04e1ee75 2019-02-04 08:28:06.36401 288 195 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000195'\n 1 \N \N 1135678f-4077-4874-9380-8ce160791b39 2019-02-04 08:28:06.394541 289 403 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000403'\n 1 \N \N f94af4bb-7c37-4917-8625-5522aa5b4767 2019-02-04 08:28:06.425748 290 187 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000187'\n 1 \N \N 7b3d296d-0512-4abf-9226-58b50368198b 2019-02-04 08:28:06.456636 291 189 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000189'\n 1 \N \N 500b9feb-fa69-4ae7-8076-41527adccc77 2019-02-04 08:28:06.481316 292 194 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000194'\n 1 \N \N 4e6c7618-8ea6-4ddf-83dc-b2dd6f707ba1 2019-02-04 08:28:06.508716 293 402 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000402'\n 1 \N \N 1631edad-dc3a-4cf2-a803-cabd93ea8fb9 2019-02-04 08:28:06.537399 294 405 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000405'\n 1 \N \N bd8aade8-4df6-4871-8cbf-8c75ec28adcc 2019-02-04 08:28:06.565568 295 198 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000198'\n 1 \N \N 93bd4d76-59b5-4cdd-ac79-d589ece73f40 2019-02-04 08:28:06.59393 296 397 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000397'\n 1 \N \N 747f71bf-be26-4470-9343-2008a75a73aa 2019-02-04 08:28:06.623966 297 196 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000196'\n 1 \N \N f1afbde3-ed4e-44cc-b052-ac74bee293fa 2019-02-04 08:28:06.65346 298 199 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000199'\n 1 \N \N a07de5bd-5c5f-4a74-b2b6-7326f717b922 2019-02-04 08:28:06.684059 299 200 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000200'\n 1 \N \N a3fd16d7-547d-4017-a891-b731edb20732 2019-02-04 08:28:06.714519 300 201 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000201'\n 1 \N \N 198be766-f71d-427c-b6e9-c4e6a4d7875d 2019-02-04 08:28:06.745302 301 406 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000406'\n 1 \N \N bdd0721c-ef46-45a2-82b7-4c427f1e9d72 2019-02-04 08:28:06.777346 302 202 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000202'\n 1 \N \N 9494eda1-a5ec-4bbb-9d01-bceea69e8c15 2019-02-04 08:28:06.80871 303 203 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000203'\n 1 \N \N 43d7f8f8-a1db-4aa3-afd6-bb08c906805b 2019-02-04 08:28:06.837625 304 31 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000031'\n 1 \N \N f341b4e8-894f-429f-a27f-980e6242c889 2019-02-04 08:28:06.860607 305 335 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000335'\n 1 \N \N 6698fd00-601e-4023-9ce0-542d27b8cdff 2019-02-04 08:28:06.895545 306 337 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000337'\n 1 \N \N 594a1318-0cf2-40af-9942-2a8cdeb5c58c 2019-02-04 08:28:06.923809 307 265 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000265'\n 1 \N \N 29272b2a-d011-45d7-9d16-1446331e5270 2019-02-04 08:28:06.956529 308 45 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000045'\n 1 \N \N 715802d6-cbba-47ba-9a7b-556ed0d515d8 2019-02-04 08:28:06.989425 309 46 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000046'\n 1 \N \N 7947a81f-177e-484d-9edc-9ec5bd2c4c0e 2019-02-04 08:28:07.018759 310 349 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000349'\n 1 \N \N c9663425-3866-4dcd-a30f-ed0aaa6b9ce4 2019-02-04 08:28:07.041963 311 334 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000334'\n 1 \N \N dbd976f8-a818-40d7-9e54-335c7f570c36 2019-02-04 08:28:07.06495 312 53 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000053'\n 1 \N \N d518e0a7-b718-49f7-849e-f00ba74acaea 2019-02-04 08:28:07.087922 313 48 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000048'\n 1 \N \N aa849d0b-3c70-43c0-8f5f-5de673106442 2019-02-04 08:28:07.113298 314 344 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000344'\n 1 \N \N fd5bdb0c-2656-482d-9fcb-17355e02336f 2019-02-04 08:28:07.137421 315 360 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000360'\n 1 \N \N a0147967-e6a6-4cf0-bd82-4d0c227185c6 2019-02-04 08:28:07.159842 316 343 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000343'\n 1 \N \N be68be28-f2e0-4588-9679-a2a7b3d4255b 2019-02-04 08:28:07.182946 317 361 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000361'\n 1 \N \N 29ce1b1f-25b7-4875-962d-df4e4d16e18d 2019-02-04 08:28:07.210047 318 389 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000389'\n 1 \N \N cecb2325-3d5d-40d6-a615-217c52efc965 2019-02-04 08:28:07.240137 319 255 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000255'\n 1 \N \N d83c6353-2f77-4273-894e-dc005f460f30 2019-02-04 08:28:07.269822 320 256 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000256'\n 1 \N \N fadb1a90-347c-41c6-95ee-bfae5b9339fe 2019-02-04 08:28:07.299495 321 257 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000257'\n 1 \N \N aeccbbdb-ee50-496e-8282-471a9b4ecea4 2019-02-04 08:28:07.338317 322 262 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000262'\n 1 \N \N 7ca72cc8-be61-4d0a-ac3b-2adeba09dc5c 2019-02-04 08:28:07.378212 323 365 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000365'\n 1 \N \N fee071f2-94bd-47ac-922b-ef06d5336e7f 2019-02-04 08:28:07.417802 324 52 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000052'\n 1 \N \N c58bf81a-9aae-4ad6-b1b9-e0e2ffbfc3d0 2019-02-04 08:28:07.445726 325 258 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000258'\n 1 \N \N bb30867b-eb1c-4fa6-887a-865d0eaad389 2019-02-04 08:28:07.470234 326 342 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000342'\n 1 \N \N 72242fd7-3ec9-4584-b2ab-8b5028e28cff 2019-02-04 08:28:07.498076 327 41 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000041'\n 1 \N \N 6e680c96-c179-4488-9ef4-4d432e9ecb68 2019-02-04 08:28:07.524719 328 274 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000274'\n 1 \N \N 3f801697-a721-4a5c-8895-7a104dd4b46f 2019-02-04 08:28:07.555321 329 387 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000387'\n 1 \N \N 3719711c-d35b-464b-85a2-29f1ea6d7702 2019-02-04 08:28:07.585315 330 388 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000388'\n 1 \N \N 3e831890-4ba9-447a-aa9a-856c31a5e46b 2019-02-04 08:28:07.624055 331 355 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000355'\n 1 \N \N 71c857b2-30d1-487a-bca5-b78de208d678 2019-02-04 08:28:07.678596 332 354 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000354'\n 1 \N \N c2b00352-c875-4606-9249-f80e5e1118ca 2019-02-04 08:28:07.699787 333 357 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000357'\n 1 \N \N faa451d4-fbed-4ed1-aefe-38d20cf45d04 2019-02-04 08:28:07.728124 334 359 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000359'\n 1 \N \N f948aa0f-4438-4868-92cb-0ad4ae9d3605 2019-02-04 08:28:07.753644 335 364 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000364'\n 1 \N \N c4381e9d-10b7-42af-8a25-91b0a340277d 2019-02-04 08:28:07.780003 336 266 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000266'\n 1 \N \N 9d3e9011-471c-4c74-a667-3803d4267723 2019-02-04 08:28:07.817708 337 269 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000269'\n 1 \N \N 0b1fae0a-daf1-4e9e-9580-efd2a995d4ef 2019-02-04 08:28:07.844302 338 358 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000358'\n 1 \N \N cba96721-86cd-4924-9e49-973bbc160a7f 2019-02-04 08:28:07.864538 339 47 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000047'\n 1 \N \N 2c985797-f4fd-40cf-9734-bcba89e79867 2019-02-04 08:28:07.884439 340 339 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000339'\n 1 \N \N 1aeef67f-54e5-455e-a480-e10dfdf0a152 2019-02-04 08:28:07.90492 341 33 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000033'\n 1 \N \N 02905515-3b78-486b-8a39-26e4322903dc 2019-02-04 08:28:07.92838 342 338 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000338'\n 1 \N \N 3a442eb8-ca4a-453e-bb56-1b53124b1042 2019-02-04 08:28:07.950378 343 37 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000037'\n 1 \N \N 856063a3-4293-468d-9f1c-943bed8451a7 2019-02-04 08:28:07.974959 344 36 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000036'\n 1 \N \N c91b564a-27c3-4d1c-b598-9160596566f6 2019-02-04 08:28:07.996041 345 348 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000348'\n 1 \N \N 8650f56d-ff98-4c3b-b6ed-6d079f8698fb 2019-02-04 08:28:08.016746 346 54 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000054'\n 1 \N \N 494c2ff6-e697-4855-aff1-ad8fc351850a 2019-02-04 08:28:08.043962 347 333 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000333'\n 1 \N \N 9c465e1a-e16c-44c9-816b-ec6961d5c1ea 2019-02-04 08:28:08.070499 348 261 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000261'\n 1 \N \N cf82dbdb-76bb-463a-9ecf-72384b999453 2019-02-04 08:28:08.097104 349 50 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000050'\n 1 \N \N d00b690c-6b79-44ad-bbe2-0b8cfe640cf4 2019-02-04 08:28:08.117921 350 362 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000362'\n 1 \N \N fb0adeae-9eef-4e54-bad6-41f2d61adc17 2019-02-04 08:28:08.140414 351 49 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000049'\n 1 \N \N ecb2ac67-953e-4eec-9c10-bf2d9af111f6 2019-02-04 08:28:08.164222 352 375 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000375'\n 1 \N \N abcd88a7-34a7-4116-bd49-4e7634d2485a 2019-02-04 08:28:08.192298 353 376 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000376'\n 1 \N \N 91aa795e-d4da-4d84-85ca-af527c8300e7 2019-02-04 08:28:08.215835 354 373 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000373'\n 1 \N \N 0da82c54-12f5-4991-9134-fb8a7ee56e9b 2019-02-04 08:28:08.244368 355 377 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000377'\n 1 \N \N d7f78d83-4bd3-490d-8e01-c07713f37061 2019-02-04 08:28:08.27704 356 395 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000395'\n 1 \N \N 4fb23a49-52f8-4aea-bd71-cda3cfd8bfea 2019-02-04 08:28:08.301452 357 396 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000396'\n 1 \N \N 3d050c63-ffeb-4ad7-aa4e-6c1cc6b99166 2019-02-04 08:28:08.322429 358 416 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000416'\n 1 \N \N 8d07f124-9c7f-4117-a6a7-0a98e93186d3 2019-02-04 08:28:08.343563 359 161 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000161'\n 1 \N \N d8a9ec60-fdd2-4273-b76f-9226ee88bc09 2019-02-04 08:28:08.366197 360 417 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000417'\n 1 \N \N 69a5285f-dfb2-4655-b612-f0a789492d01 2019-02-04 08:28:08.387059 361 167 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000167'\n 1 \N \N 18d5ccfe-9ced-4b48-8b04-16d5d66a91f6 2019-02-04 08:28:08.407465 362 162 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000162'\n 1 \N \N b37dc591-4712-4111-b3f2-ee368206279f 2019-02-04 08:28:08.429266 363 160 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000160'\n 1 \N \N 6383e42c-05d9-4dba-a9f9-b93346f2ffb5 2019-02-04 08:28:08.451711 364 163 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000163'\n 1 \N \N 5a44c4a7-e306-4779-aa95-8e9eae0be724 2019-02-04 08:28:08.473778 365 166 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000166'\n 1 \N \N 640315ab-4074-4c32-851b-7c3a5c2d73f9 2019-02-04 08:28:08.496471 366 415 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000415'\n 1 \N \N ca616264-846e-441b-97b2-3fd7a822817e 2019-02-04 08:28:08.517891 367 418 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000418'\n 1 \N \N 3b219aa1-62da-46b2-aa14-851a9f02caa5 2019-02-04 08:28:08.54411 368 419 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000419'\n 1 \N \N bb1fdb1d-f375-4722-859f-6d2799ae9968 2019-02-04 08:28:08.574249 369 420 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000420'\n 1 \N \N 4de2b1cf-8734-49d3-b4f8-3b9189f9c269 2019-02-04 08:28:08.605781 370 421 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000421'\n 1 \N \N fb242033-9ddb-4c52-a00a-b2646b661638 2019-02-04 08:28:08.63126 371 88 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000088'\n 1 \N \N 7eaf0baf-5584-4250-b724-4da6e19d2b0a 2019-02-04 08:28:08.658471 372 264 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000264'\n 1 \N \N bf2f78eb-0d6d-440f-a8de-cab9febfed72 2019-02-04 08:28:08.687787 373 182 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000182'\n 1 \N \N dc63a37a-8743-433c-9013-00d26208fd38 2019-02-04 08:28:08.718305 374 183 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000183'\n 1 \N \N 3cf64fcf-e019-4e30-ad7c-17ee647f0c96 2019-02-04 08:28:08.748244 375 184 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000184'\n 1 \N \N f64759d9-39de-4440-8737-c942de7dec8e 2019-02-04 08:28:08.777292 376 185 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000185'\n 1 \N \N 7db57c7c-7931-4138-a456-5bf58388986b 2019-02-04 08:28:08.805965 377 177 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000177'\n 1 \N \N 8e317bb0-8bc9-421d-8a42-d5c8f850d1b7 2019-02-04 08:28:08.834337 378 178 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000178'\n 1 \N \N caa93e5f-64ec-435a-a09b-60ae9208aeab 2019-02-04 08:28:08.864186 379 179 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000179'\n 1 \N \N 76188dc1-0d4b-4d6f-ba8b-601f9c6b0b4c 2019-02-04 08:28:08.887117 380 422 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000422'\n 1 \N \N 12e89207-ef7c-49de-b4d8-9eef468deb20 2019-02-04 08:28:08.909334 381 180 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000180'\n 1 \N \N 63185c00-a38c-43e2-8af8-07074008e4ea 2019-02-04 08:28:08.931313 382 181 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000181'\n 1 \N \N 0820f2e7-7581-47b4-8b79-54c19c68a70f 2019-02-04 08:28:08.957769 383 386 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000386'\n 1 \N \N 3397dfc3-f99e-4511-8ffc-b60b9e11f7ac 2019-02-04 08:28:08.980093 384 385 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000385'\n 1 \N \N df6078fb-42b6-4a13-8f0b-c65fb898a9e1 2019-02-04 08:28:09.002143 385 372 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000372'\n 1 \N \N 94966455-2fb1-48e9-bdd1-a766a79c1664 2019-02-04 08:28:09.030075 386 371 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000371'\n 1 \N \N 89306817-cef0-40e4-a224-13440d9f2968 2019-02-04 08:28:09.06218 387 380 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000380'\n 1 \N \N c00f82f2-5d20-45d9-a6b5-213be7292eeb 2019-02-04 08:28:09.092511 388 383 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000383'\n 1 \N \N 2b248a6e-3827-4158-a265-d2bcc910e495 2019-02-04 08:28:09.125642 389 370 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000370'\n 1 \N \N a79ecea7-c987-4ab6-af87-667a66c8b6da 2019-02-04 08:28:09.151803 390 382 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000382'\n 1 \N \N 063f7d8c-05ba-4fbc-8c9d-9ea3f5783393 2019-02-04 08:28:09.180561 391 381 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000381'\n 1 \N \N 258edd44-d1e2-4009-a561-056848e41fa2 2019-02-04 08:28:09.212828 392 29 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000029'\n 1 \N \N 756c1e6b-152c-4f06-86d2-6b6b5a3e50d9 2019-02-04 08:28:09.244182 393 21 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000021'\n 1 \N \N 8c06fcb2-50bc-466b-97eb-ef420229a9cc 2019-02-04 08:28:09.275735 394 25 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000025'\n 1 \N \N 5647bed9-0e7b-435d-b555-4f84c332de51 2019-02-04 08:28:09.30551 395 27 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000027'\n 1 \N \N c56a69e7-5b0c-4cbe-a62b-d5abae5b3805 2019-02-04 08:28:09.336078 396 26 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000026'\n 1 \N \N aa2b8180-8c43-46e4-ad4f-2e1cbde20fca 2019-02-04 08:28:09.365338 397 30 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000030'\n 1 \N \N 15566450-d96f-4505-9d59-28b0a358eb7a 2019-02-04 08:28:09.387791 398 22 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000022'\n 1 \N \N bbdab92c-1d86-4e89-8482-17bb7577a709 2019-02-04 08:28:09.408338 399 28 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000028'\n 1 \N \N 2fb1fa68-4416-4611-b836-10f5d30b55a5 2019-02-04 08:28:09.4319 400 23 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000023'\n 1 \N \N 92ae94d3-c418-482b-ac9c-38c2cc91dd58 2019-02-04 08:28:09.459355 401 24 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000024'\n 1 \N \N e66aa306-7b71-45f2-a156-d4ca68691338 2019-02-04 08:28:09.486783 402 35 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000035'\n 1 \N \N 1cd2dcf2-454e-40eb-8794-2756eed490d1 2019-02-04 08:28:09.516301 403 38 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000038'\n 1 \N \N 35334fd2-88c5-4a32-a8d4-596d97135589 2019-02-04 08:28:09.546221 404 408 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000408'\n 1 \N \N 0b8be6c6-1ee4-4e78-8737-374e37a0cd54 2019-02-04 08:28:09.574967 405 7 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000007'\n 1 \N \N 3d829515-32b4-43f4-b359-9ef5d88fb857 2019-02-04 08:28:09.595697 406 4 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000004'\n 1 \N \N 0e128ec4-0808-47b9-bccf-be6c0919d94f 2019-02-04 08:28:09.618538 407 10 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000010'\n 1 \N \N 2491ff19-1499-4e30-99fb-c5f46a8ba9f3 2019-02-04 08:28:09.647668 408 5 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000005'\n 1 \N \N f81fc1e0-54b6-4aa7-838b-b58754ee7f25 2019-02-04 08:28:09.676978 409 407 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000407'\n 1 \N \N da116f8c-95e3-43fd-b60b-923cbd2bb7b2 2019-02-04 08:28:09.703137 410 12 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000012'\n 1 \N \N c32c93fe-d51c-4e04-b13f-2db277a9c137 2019-02-04 08:28:09.742569 411 6 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000006'\n 1 \N \N 6b9ba0cf-d08f-41a1-9674-51e979bcc626 2019-02-04 08:28:09.773976 412 9 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000009'\n 1 \N \N 45e2695d-74de-417f-9b01-c3c015d8925b 2019-02-04 08:28:09.800253 413 8 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000008'\n 1 \N \N a62af1d0-1d6d-4ad5-afb5-e5ef17de6577 2019-02-04 08:28:09.822966 414 410 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000410'\n 1 \N \N 4fc9ca34-85f0-4e36-a0c7-920473b07290 2019-02-04 08:28:09.846789 415 411 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000411'\n 1 \N \N 5eb33b35-cec2-453d-9be0-ae81a59ff944 2019-02-04 08:28:09.869903 416 413 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000413'\n 1 \N \N fdcfdd53-60b2-45de-b916-74de8fdf7722 2019-02-04 08:28:09.896893 417 414 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000414'\n 1 \N \N aafe8be1-258b-4007-bf16-07e790d4a2b5 2019-02-04 08:28:09.927261 418 13 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000013'\n 1 \N \N cbfa3833-0000-4fb7-a9c8-0e04417db034 2019-02-04 08:28:09.956547 419 14 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000014'\n 1 \N \N a510f9a3-9c66-435a-8f8d-b90ce147ccb4 2019-02-04 08:28:09.980945 420 412 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000412'\n 1 \N \N 3c161039-96f0-4814-972a-4f8e8e6a6024 2019-02-04 08:28:10.007831 421 15 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000015'\n 1 \N \N 64011e99-767d-4b7e-ae90-918ef0613a3b 2019-02-04 08:28:10.043004 422 16 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000016'\n 1 \N \N 426b3215-1de0-4964-bda1-67f1ea36f948 2019-02-04 08:28:10.064772 423 17 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000017'\n 1 \N \N 9bba8ed9-4b4b-4e65-945f-6f6832d1a290 2019-02-04 08:28:10.087271 424 18 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000018'\n 1 \N \N b5e4c350-1515-4705-ae01-e478bc2c71d1 2019-02-04 08:28:10.107729 425 19 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000019'\n 1 \N \N db136377-1344-4239-b11e-003a60674f37 2019-02-04 08:28:10.128149 426 20 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000020'\n 1 \N \N 3c426366-1a26-4833-86b8-65ac46b896a7 2019-02-04 08:28:10.149784 427 51 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000051'\n 1 \N \N 001df886-d12d-454b-a6c1-f82e578ce24c 2019-02-04 08:28:10.17907 428 347 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000347'\n 1 \N \N d4498c3c-f615-4584-aae8-cc8f71e2f795 2019-02-04 08:28:10.209743 429 346 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000346'\n 1 \N \N d7301b86-1a3b-4197-986e-fa9affee1b03 2019-02-04 08:28:10.240671 430 40 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000040'\n 1 \N \N d081b83d-bbde-46c3-a82b-ddf690b9f29f 2019-02-04 08:28:10.270221 431 43 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000043'\n 1 \N \N d15896d0-50d8-4ed6-a1fa-1563a3bc63c8 2019-02-04 08:28:10.294451 432 44 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000044'\n 1 \N \N 892217e2-bd17-4ea8-bb27-dfd5aeb10a35 2019-02-04 08:28:10.316233 433 271 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000271'\n 1 \N \N 6788e0d1-fc0b-4910-b69c-af788c6e3079 2019-02-04 08:28:10.342679 434 345 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000345'\n 1 \N \N af6698c2-fc83-4049-9c25-75a588a5547e 2019-02-04 08:28:10.372271 435 164 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000164'\n 1 \N \N 118bde21-edd8-4d6f-bb92-3a8fea655c44 2019-02-04 08:28:10.395542 436 393 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000393'\n 1 \N \N a311cc27-166e-4923-b8f8-6bf0d3f9c21b 2019-02-04 08:28:10.419365 437 230 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000230'\n 1 \N \N 4d92dfc3-ae46-4139-9485-0187a4141d83 2019-02-04 08:28:10.441243 438 205 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000205'\n 1 \N \N 731c75c2-b325-40ee-8441-202bb02fd091 2019-02-04 08:28:10.463939 439 391 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000391'\n 1 \N \N 39fd83a1-a541-4ae9-8183-929e3ba20c92 2019-02-04 08:28:10.494208 440 175 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000175'\n 1 \N \N 73309e63-1373-412a-b225-f929d04f1fc8 2019-02-04 08:28:10.521984 441 169 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000169'\n 1 \N \N 5167a9f2-6454-45a0-a737-36d9881d1dc8 2019-02-04 08:28:10.550872 442 168 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000168'\n 1 \N \N afa5a0a1-93df-4c9d-a32f-ac662734b5db 2019-02-04 08:28:10.582492 443 212 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000212'\n 1 \N \N d75716c8-0b78-40a4-9ae9-630f361ba1a7 2019-02-04 08:28:10.610506 444 211 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000211'\n 1 \N \N 145c0094-6719-430c-9459-16086ba2cdaa 2019-02-04 08:28:10.63266 445 240 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000240'\n 1 \N \N 8ccf1d75-09cf-4f0b-91a4-39e5ec9419c1 2019-02-04 08:28:10.655215 446 424 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000424'\n 1 \N \N af4929eb-8859-4b18-93b0-c37054d692c0 2019-02-04 08:28:10.683136 447 245 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000245'\n 1 \N \N 5d569435-c7a0-44dc-834c-1a51389fa89d 2019-02-04 08:28:10.713052 448 197 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000197'\n 1 \N \N 001ea213-d03d-4bc4-a570-c01f3469ea2b 2019-02-04 08:28:10.741848 449 244 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000244'\n 1 \N \N 9cb9b1df-880e-469b-961b-73b2ffe36689 2019-02-04 08:28:10.770398 450 219 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000219'\n 1 \N \N 78205cc6-460d-41e3-a10e-06b7d790f48d 2019-02-04 08:28:10.799339 451 425 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000425'\n 1 \N \N 5a44a9c0-da94-44ce-b37b-f5a17b569260 2019-02-04 08:28:10.827642 452 392 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000392'\n 1 \N \N 03caa554-8283-41c3-890d-7aa43ded4512 2019-02-04 08:28:10.857762 453 207 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000207'\n 1 \N \N 8f6e98b6-f66d-48fb-a0ac-b47ab8c181f1 2019-02-04 08:28:10.888415 454 243 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000243'\n 1 \N \N 86f2ebe8-aea8-4dae-93d4-ae47daf916f5 2019-02-04 08:28:10.918345 455 238 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000238'\n 1 \N \N 2a61fbff-2a01-4b67-b61a-37df93b147d2 2019-02-04 08:28:10.949653 456 239 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000239'\n 1 \N \N caf53a53-2a62-4f09-8b6e-de096ad95e75 2019-02-04 08:28:10.980993 457 432 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000432'\n 1 \N \N d35a048f-af87-44e0-bb57-417666a16102 2019-02-04 08:28:11.011467 458 426 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000426'\n 1 \N \N 1c9d805e-6d1d-48a2-93b3-1cd570ecabe1 2019-02-04 08:28:11.041984 459 229 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000229'\n 1 \N \N e10cf0c4-c1e1-4dc8-ae1a-37afb6b91392 2019-02-04 08:28:11.072344 460 165 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000165'\n 1 \N \N 9b307e41-f2ed-4929-8319-e302fe8c8bae 2019-02-04 08:28:11.100696 461 390 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000390'\n 1 \N \N abb162ed-bd17-4d2c-944e-936cc6cef888 2019-02-04 08:28:11.128541 462 176 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000176'\n 1 \N \N 488fdab3-089c-4a26-8944-71e258b202bb 2019-02-04 08:28:11.154358 463 223 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000223'\n 1 \N \N 527addea-6ba2-4da1-9eef-ccb463961277 2019-02-04 08:28:11.182622 464 228 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000228'\n 1 \N \N c68a73f4-fe4d-412a-97af-5b62fd73d6c5 2019-02-04 08:28:11.20693 465 220 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000220'\n 1 \N \N 9e89d94b-dcd1-493f-9f87-75775d68315d 2019-02-04 08:28:11.231936 466 170 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000170'\n 1 \N \N a25de461-5293-496c-8570-e28277f8c615 2019-02-04 08:28:11.258327 467 427 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000427'\n 1 \N \N c0a93220-1793-4341-8a1c-346d3b57332c 2019-02-04 08:28:11.281111 468 232 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000232'\n 1 \N \N 484c333e-b2d6-4a60-9cde-7a20ff6ffade 2019-02-04 08:28:11.310497 469 394 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000394'\n 1 \N \N 5e7a7329-86f5-4fb8-9344-e45856a51fd8 2019-02-04 08:28:11.341213 470 423 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000423'\n 1 \N \N 89cda011-ffc0-4e34-bf33-272f8ac4163f 2019-02-04 08:28:11.372312 471 222 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000222'\n 1 \N \N 53259372-f5b2-44b8-bd33-3ba0ea1b8df2 2019-02-04 08:28:11.401381 472 204 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000204'\n 1 \N \N 2156a09a-f855-4a76-bcae-bd017619b148 2019-02-04 08:28:11.431424 473 428 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000428'\n 1 \N \N e929f0b9-39c1-4c26-80ad-a4f517125e47 2019-02-04 08:28:11.457854 474 172 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000172'\n 1 \N \N fdf2068b-5e0a-4703-8b21-f221afd24c19 2019-02-04 08:28:11.479942 475 42 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000042'\n 1 \N \N 3c99a61e-6176-4679-bc23-466c5514a8a7 2019-02-04 08:28:11.502413 476 431 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000431'\n 1 \N \N 9d5065e3-b09f-42c4-b20e-dbe35776c3a9 2019-02-04 08:28:11.52608 477 237 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000237'\n 1 \N \N 2e8d1cd1-37c3-4d6b-88a5-d83f2106ca1e 2019-02-04 08:28:11.549077 478 429 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000429'\n 1 \N \N e92f31bf-fc25-4683-ba45-6e0aeac076af 2019-02-04 08:28:11.573538 479 213 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000213'\n 1 \N \N a403d1cd-9aa8-4024-bd88-e2ce11761684 2019-02-04 08:28:11.600836 480 246 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000246'\n 1 \N \N 3b289de5-ad36-43b9-93be-9b336bc29afd 2019-02-04 08:28:11.630334 481 218 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000218'\n 1 \N \N 0b3e28ad-821a-41c4-a3a2-d5300dc8b779 2019-02-04 08:28:11.663929 482 221 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000221'\n 1 \N \N e10d4993-6186-4938-950d-5ea15fcea4be 2019-02-04 08:28:11.695788 483 430 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000430'\n 1 \N \N 38751835-469f-4541-9133-196b2049b5c9 2019-02-04 08:28:11.72675 484 236 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000236'\n 1 \N \N 25089b52-0e8b-4e87-a057-06b57b96539b 2019-02-04 08:28:11.757876 485 209 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000209'\n 1 \N \N b4469d95-8861-4707-8138-48b3e195b7f0 2019-02-04 08:28:11.789479 486 171 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000171'\n 1 \N \N 127ce45c-b8cc-42c0-8e19-a1025ebad1cb 2019-02-04 08:28:11.821233 487 216 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000216'\n 1 \N \N eb721e5c-481d-4b40-9d5d-13927d6b0cde 2019-02-04 08:28:11.853578 488 208 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000208'\n 1 \N \N dd7eea10-6165-4406-ae03-c0ac7141591d 2019-02-04 08:28:11.885041 489 231 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000231'\n 1 \N \N d545d39d-ff7b-4199-a0f2-6db228a3cf77 2019-02-04 08:28:11.915561 490 206 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000206'\n 1 \N \N 88b73d42-3a41-4879-9556-008633f738ff 2019-02-04 08:28:11.947635 491 215 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000215'\n 1 \N \N acf563c0-2cf5-4efc-ab23-ffc250a28e6f 2019-02-04 08:28:11.979251 492 225 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000225'\n 1 \N \N 701329df-4c76-408d-9524-67d95c9ef740 2019-02-04 08:28:12.010073 493 242 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000242'\n 1 \N \N dcecf688-f0f0-4eec-896e-2d3fa486076b 2019-02-04 08:28:12.040406 494 210 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000210'\n 1 \N \N 26b914c4-736d-4c82-8515-bf7b7e86a3c3 2019-02-04 08:28:12.070829 495 235 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000235'\n 1 \N \N ba56e04a-6413-41ea-b840-dada2b791263 2019-02-04 08:28:12.100207 496 226 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000226'\n 1 \N \N c7953265-5fa0-451d-8200-30e2a7a193ea 2019-02-04 08:28:12.128468 497 217 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000217'\n 1 \N \N 2b3e166e-09b1-4c81-aa85-ab7dabeabca4 2019-02-04 08:28:12.176747 498 192 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000192'\n 1 \N \N 45a1b53c-4545-4013-bd77-2d5bf6af25c5 2019-02-04 08:28:12.20781 499 214 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000214'\n 1 \N \N bbc7ccc0-5a8b-408f-9d44-e7ed75d4b413 2019-02-04 08:28:12.237855 500 224 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000224'\n 1 \N \N 9343db53-c8a1-4ec1-8906-1b221d2c7e2d 2019-02-04 08:28:12.267506 501 174 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000174'\n 1 \N \N 414a3e20-782c-4000-a956-302011ef41bd 2019-02-04 08:28:12.298197 502 233 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000233'\n 1 \N \N 779d3b5e-1145-484b-a32f-94975089f87e 2019-02-04 08:28:12.323146 503 191 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000191'\n 1 \N \N 8cb29f30-9874-493c-8015-b84d78232f16 2019-02-04 08:28:12.346561 504 234 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000234'\n 1 \N \N a051789e-b776-4d26-848a-c9a37860ef21 2019-02-04 08:28:12.373772 505 227 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000227'\n 1 \N \N 0b833135-0ebb-4a31-92b2-d29851f1495c 2019-02-04 08:28:12.402545 506 241 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000241'\n 1 \N \N 510b4f68-057b-4fe6-820b-789363be4c59 2019-02-04 08:28:12.43296 507 247 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000247'\n 1 \N \N ed21c0c6-c0f2-473e-98c1-3f6578a2d0d0 2019-02-04 08:28:12.463122 508 248 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000248'\n 1 \N \N a626a1e8-de56-40d4-b90f-0cf0904f78cc 2019-02-04 08:28:12.492508 509 249 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000249'\n 1 \N \N 68c36068-8542-4228-84f4-bb375b46cc18 2019-02-04 08:28:12.523354 510 250 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000250'\n 1 \N \N fb0ad786-715f-403a-8c8f-6e5a41904a73 2019-02-04 08:28:12.552845 511 251 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000251'\n 1 \N \N 69a78287-7199-421d-ab4f-ed81ce48c711 2019-02-04 08:28:12.583728 512 252 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000252'\n 1 \N \N bddfe615-00f7-4cb6-a2a9-38dbce841955 2019-02-04 08:28:12.616667 513 253 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000253'\n 1 \N \N 0dcbe63c-70d6-4a7e-a2e4-289606b39c62 2019-02-04 08:28:12.642323 514 254 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000254'\n 1 \N \N 1877f39c-bffe-46fc-8a83-d486fb4c3db9 2019-02-04 08:28:12.663561 515 32 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000032'\n 1 \N \N 63879f9c-0796-466e-af61-337179dc5b6d 2019-02-04 08:28:12.685542 516 273 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000273'\n 1 \N \N 80f36a46-04ce-48d9-bf5b-8fb026dd96fa 2019-02-04 08:28:12.709031 517 58 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000058'\n 1 \N \N ea94b701-e743-49d5-98c5-bdf66dbdc9cc 2019-02-04 08:28:12.732797 518 34 Product \N \N \N \N \N update ---\nbarcode:\n- \n- '0000034'\n 1 \N \N 18c80976-f6ab-46f4-9ad7-d0859f72a372 2019-02-04 08:28:12.752477 519 366 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-366\n 2 \N \N 9bdb3206-ba2a-4e3e-abb5-5a6c2b6e40a4 2019-02-04 09:10:12.144674 520 356 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-356\n 2 \N \N b1e2523a-de02-4d16-b3e5-faa941fd09c1 2019-02-04 09:10:12.173387 521 270 Product \N \N \N \N \N update ---\nsku:\n- ''\n- ZAP-270\n 2 \N \N 24bba81c-d7fa-43f9-9661-a142e36e7512 2019-02-04 09:10:12.195618 522 341 Product \N \N \N \N \N update ---\nsku:\n- ''\n- COS-341\n 2 \N \N 9fc4763b-6e8d-428b-acc6-dca70fcb8672 2019-02-04 09:10:12.217545 523 59 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-59\n 2 \N \N d46dac7c-51d5-411c-a6ff-62b6ed1728c4 2019-02-04 09:10:12.23832 524 263 Product \N \N \N \N \N update ---\nsku:\n- ''\n- ZAP-263\n 2 \N \N 4f9e8444-ab0f-4df5-ad1f-714f48ecfcca 2019-02-04 09:10:12.266034 525 350 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-350\n 2 \N \N 31517bc9-907d-49a0-85eb-e8ba0ac497c4 2019-02-04 09:10:12.29536 526 351 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-351\n 2 \N \N bb01a06f-a2bc-438c-acb3-2db231b932b0 2019-02-04 09:10:12.320268 527 369 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PER-369\n 2 \N \N 99a73e31-1df4-4db4-ba7e-d37e0b15edac 2019-02-04 09:10:12.341528 528 352 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-352\n 2 \N \N 8bf08a0f-c1e4-4ea3-b42f-257c5b6372c6 2019-02-04 09:10:12.369 529 353 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-353\n 2 \N \N 2a330136-c99f-4bec-986a-09dce4c838cd 2019-02-04 09:10:12.419255 530 336 Product \N \N \N \N \N update ---\nsku:\n- ''\n- CAR-336\n 2 \N \N 204e5093-a254-4caf-9f47-65a0c87d4d9f 2019-02-04 09:10:12.443104 531 39 Product \N \N \N \N \N update ---\nsku:\n- ''\n- CAR-39\n 2 \N \N 79c7c464-c2c8-400b-8149-12aab8e7da2f 2019-02-04 09:10:12.467666 532 56 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-56\n 2 \N \N 585a5ba4-6f8d-4b03-a812-60504d4eab8e 2019-02-04 09:10:12.493281 533 57 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-57\n 2 \N \N 092afb64-752b-404f-91b4-91abfcc9dfea 2019-02-04 09:10:12.515462 534 313 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-313\n 2 \N \N 1ac3155b-d181-4802-bc2c-ff021469ee64 2019-02-04 09:10:12.538791 535 70 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-70\n 2 \N \N 663332e7-802d-436c-a4f1-12a3d7d5f41e 2019-02-04 09:10:12.563865 536 69 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-69\n 2 \N \N add190ae-7ff9-46d7-a820-2d52c9f44775 2019-02-04 09:10:12.588389 537 68 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-68\n 2 \N \N bb858d4c-f954-4ede-abf3-a666add8678a 2019-02-04 09:10:12.612509 538 66 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-66\n 2 \N \N 686583f3-0bf7-49aa-8b64-3be0e11a3b4b 2019-02-04 09:10:12.636917 539 73 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-73\n 2 \N \N 7bd5b9c2-3508-43a3-9380-d30dd98d503a 2019-02-04 09:10:12.66235 540 295 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-295\n 2 \N \N 578b8fd5-0a8e-41d2-9cb9-5aca37125ff9 2019-02-04 09:10:12.688487 541 312 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-312\n 2 \N \N 5e7f0625-b21f-440e-b442-02b403a2151c 2019-02-04 09:10:12.713847 542 67 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-67\n 2 \N \N 00215662-1086-42f9-9674-efe3868cc58e 2019-02-04 09:10:12.738326 543 117 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-117\n 2 \N \N b3f82512-21dc-4321-a79b-6e3f38548538 2019-02-04 09:10:12.763271 544 293 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-293\n 2 \N \N 44b8e629-19e1-4b37-984e-d077030fc008 2019-02-04 09:10:12.787797 545 113 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-113\n 2 \N \N 3bd57ed2-c55d-4690-8d7c-b6dba901e3e2 2019-02-04 09:10:12.810912 546 308 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-308\n 2 \N \N df707614-627a-417f-a41d-68c2113c499d 2019-02-04 09:10:12.835568 547 315 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-315\n 2 \N \N d8d8d3e9-bcd3-4517-b100-be2f8959d8eb 2019-02-04 09:10:12.85906 548 108 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-108\n 2 \N \N 97d3a832-9666-4d0a-b1e0-9b873c02b600 2019-02-04 09:10:12.882699 549 290 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-290\n 2 \N \N 9a3ac097-59ff-4294-aa4e-8621384ba882 2019-02-04 09:10:12.90759 550 65 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-65\n 2 \N \N db6585e2-01fe-4b70-bfb1-ac95f6780da0 2019-02-04 09:10:12.930888 551 64 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-64\n 2 \N \N db5cf42c-e80f-49ce-8f9f-8069f13a195d 2019-02-04 09:10:12.95611 552 90 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-90\n 2 \N \N 75f09c08-c992-409c-926a-f92cd3d5800b 2019-02-04 09:10:12.980965 553 289 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-289\n 2 \N \N 4e38c51e-2297-4058-a8d6-660d5275929f 2019-02-04 09:10:13.005781 554 110 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-110\n 2 \N \N 00f27d88-3dda-42e1-88f6-a02091c99480 2019-02-04 09:10:13.03129 555 115 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-115\n 2 \N \N 2301262b-974c-4827-9b22-63979d86dbca 2019-02-04 09:10:13.055995 556 107 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-107\n 2 \N \N 4c9de30b-e734-4398-bd37-7068d8280ed7 2019-02-04 09:10:13.081854 557 91 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-91\n 2 \N \N ca8c5245-eb4d-41cd-9a14-346b99170553 2019-02-04 09:10:13.10558 558 280 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-280\n 2 \N \N 93ef1e43-6782-4704-8fbc-708d64c13168 2019-02-04 09:10:13.130493 559 299 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-299\n 2 \N \N 0e0757cc-f0f8-4db6-b499-02f93396e98b 2019-02-04 09:10:13.155212 560 96 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-96\n 2 \N \N caf2b51d-8d2e-4a13-b8f1-d938ec8c7c20 2019-02-04 09:10:13.17899 561 95 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-95\n 2 \N \N 6b4263c3-4c92-4163-837a-6869d8467d00 2019-02-04 09:10:13.203235 562 114 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-114\n 2 \N \N c374b736-16a6-4f2b-96c3-7dc01b9258a1 2019-02-04 09:10:13.228052 563 283 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-283\n 2 \N \N 45f7aa9c-8688-4e51-b4ed-3b0d393f7fe1 2019-02-04 09:10:13.254552 564 306 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-306\n 2 \N \N 9517b68c-e378-4bf7-9d91-98cdfdc3d7f4 2019-02-04 09:10:13.274998 565 94 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-94\n 2 \N \N d9fe4ed2-4317-4c21-ab0c-de70001884fb 2019-02-04 09:10:13.298748 566 111 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-111\n 2 \N \N 0122542e-9253-48cb-9f69-f4db07d8ecc2 2019-02-04 09:10:13.322958 567 102 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-102\n 2 \N \N 0b7fe699-6cad-4015-b04d-39493c1b80b4 2019-02-04 09:10:13.343714 568 109 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-109\n 2 \N \N 2a4e411d-fd08-4113-8062-fe93b0ba6d39 2019-02-04 09:10:13.381242 569 287 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-287\n 2 \N \N a31bbf40-4ad7-4d0a-b114-c29ae8195952 2019-02-04 09:10:13.400629 570 85 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-85\n 2 \N \N f378cf68-6e52-4e1c-9fdb-17ea252406a5 2019-02-04 09:10:13.420653 571 98 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-98\n 2 \N \N d459a234-ea70-455e-b718-9b444e58a8b4 2019-02-04 09:10:13.445688 572 121 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-121\n 2 \N \N 617c0aa1-cc83-4862-ac8d-e89b9dba8219 2019-02-04 09:10:13.471116 573 74 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-74\n 2 \N \N fd140282-c9f6-40b4-a1e0-13a8a2fe474c 2019-02-04 09:10:13.495656 574 282 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-282\n 2 \N \N 54415591-bbd0-4cf7-8201-b62cff015190 2019-02-04 09:10:13.519939 575 89 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-89\n 2 \N \N 45757469-1425-41e2-8cd5-152124f74d09 2019-02-04 09:10:13.543754 576 307 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-307\n 2 \N \N 46eaad37-bbda-4447-ae6c-83c49b52bfa6 2019-02-04 09:10:13.568382 577 97 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-97\n 2 \N \N 513f4332-30e7-4930-bf12-c7d6aaefbf82 2019-02-04 09:10:13.593197 578 288 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-288\n 2 \N \N f4c32e2b-6e77-4f78-a8a0-b854fafc4b99 2019-02-04 09:10:13.614481 579 305 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-305\n 2 \N \N a833d5b0-20d4-43eb-b0db-fbcb59bd69bd 2019-02-04 09:10:13.633881 580 72 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-72\n 2 \N \N 6cd58970-a363-46e0-8d09-e553d49b72ac 2019-02-04 09:10:13.651555 581 87 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-87\n 2 \N \N e3e1ee31-38b6-469e-909d-9422c215b364 2019-02-04 09:10:13.668789 582 86 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-86\n 2 \N \N 646963de-d9c8-4768-a54e-ad5b4f0b28ee 2019-02-04 09:10:13.687082 583 286 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-286\n 2 \N \N ec011e37-3881-4f45-b31d-84cedb62f493 2019-02-04 09:10:13.710018 584 303 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-303\n 2 \N \N 66d48dd5-af82-4997-9614-074c75d4bdb3 2019-02-04 09:10:13.73522 585 304 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-304\n 2 \N \N 85c2e075-0d51-4645-aa68-b67685b5ecba 2019-02-04 09:10:13.760041 586 297 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-297\n 2 \N \N 193a96b9-2de3-4e1a-81b4-3f034e10e4ee 2019-02-04 09:10:13.783133 587 302 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-302\n 2 \N \N 1c741edc-81e0-44e1-ab28-3a99d913af04 2019-02-04 09:10:13.807724 588 122 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-122\n 2 \N \N ed9e68e0-1068-43fe-bc10-b41dc896574c 2019-02-04 09:10:13.831518 589 63 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-63\n 2 \N \N 8f43ae1d-8511-49d5-971a-7df7297c003e 2019-02-04 09:10:13.856532 590 101 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-101\n 2 \N \N a72fa588-df8b-4051-ad6c-2991a5900565 2019-02-04 09:10:13.880763 591 285 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-285\n 2 \N \N 625c99ce-9ce3-4b92-b898-81b9feefcb41 2019-02-04 09:10:13.90523 592 61 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-61\n 2 \N \N e37e55b0-e6fb-44a6-9da5-0463018e52f2 2019-02-04 09:10:13.9301 593 281 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-281\n 2 \N \N 51e5eef0-c432-4d59-a53d-2ee8bcdb4fdb 2019-02-04 09:10:13.949546 594 116 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-116\n 2 \N \N b3748d63-10e4-4139-9953-27b34a23f5c4 2019-02-04 09:10:13.969096 595 301 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-301\n 2 \N \N 598ec7e6-ea99-48b8-83df-98d37bc732d1 2019-02-04 09:10:13.989518 596 300 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-300\n 2 \N \N 499b9e9b-9fd3-44e5-8639-a719a485ccce 2019-02-04 09:10:14.011346 597 296 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-296\n 2 \N \N 1f601abc-c4db-486b-a416-a3025d5dde1a 2019-02-04 09:10:14.034803 598 60 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-60\n 2 \N \N 8ccd97d0-b133-4f61-9511-0c8ae1acd5a6 2019-02-04 09:10:14.060106 599 298 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-298\n 2 \N \N 441a78c6-9288-4bee-8635-9dc8b2a9f43a 2019-02-04 09:10:14.085132 600 272 Product \N \N \N \N \N update ---\nsku:\n- ''\n- ZAP-272\n 2 \N \N 0f50ae12-5778-4ec5-9074-017f0164e25c 2019-02-04 09:10:14.111102 601 340 Product \N \N \N \N \N update ---\nsku:\n- ''\n- COS-340\n 2 \N \N f79c71ae-0e45-4354-94f9-97e0f9122243 2019-02-04 09:10:14.136033 602 79 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-79\n 2 \N \N 829bfcc4-281a-4fc9-b602-c5d3949af6c3 2019-02-04 09:10:14.16099 603 294 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-294\n 2 \N \N c4c92357-5e31-4e65-945a-fe113f11b4e4 2019-02-04 09:10:14.185103 604 78 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-78\n 2 \N \N 6bd1d20c-f432-462a-b78e-4ebdac38ad75 2019-02-04 09:10:14.210408 605 292 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-292\n 2 \N \N 46d92b77-9767-468f-b93a-1c848db5eb4f 2019-02-04 09:10:14.258449 606 82 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-82\n 2 \N \N af87de8e-f02e-47d9-83f1-9e3f11e11d22 2019-02-04 09:10:14.281608 607 11 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-11\n 2 \N \N 20b4bf16-eb1a-4f3c-8881-c7804e8c944d 2019-02-04 09:10:14.305606 608 99 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-99\n 2 \N \N 7e24e264-dd40-43ff-8eca-ac853a688a6f 2019-02-04 09:10:14.331809 609 81 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-81\n 2 \N \N 01a131cb-f5e5-4a34-8894-62ab87d5aa9c 2019-02-04 09:10:14.357592 610 278 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-278\n 2 \N \N 4c28fc62-e7c1-4e40-975f-38211a8800be 2019-02-04 09:10:14.381879 611 83 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-83\n 2 \N \N 8a22e35f-598a-42e3-82ad-a7b3923254c6 2019-02-04 09:10:14.407143 612 75 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-75\n 2 \N \N a099b7d9-eaf2-483e-89be-28af36121601 2019-02-04 09:10:14.430979 613 284 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-284\n 2 \N \N 8a11305c-b1b5-4a39-b729-b77283e4c0f1 2019-02-04 09:10:14.45371 614 76 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-76\n 2 \N \N a466435c-fa7b-4471-9f2e-c825c541fefe 2019-02-04 09:10:14.479185 615 80 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-80\n 2 \N \N 10a4eb30-6a62-40e0-a99e-8bd0635110b3 2019-02-04 09:10:14.504989 616 77 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-77\n 2 \N \N 24650e07-de15-40a3-9f19-67b5a8c1fb78 2019-02-04 09:10:14.529354 617 276 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-276\n 2 \N \N 650020b9-a539-46ad-9419-344c39e7bae8 2019-02-04 09:10:14.556286 618 291 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-291\n 2 \N \N 00d04ea9-7c28-4430-a4ae-63f50b7a5ae1 2019-02-04 09:10:14.578316 619 277 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-277\n 2 \N \N e25cad1c-8c32-482b-954a-c4f3b9b6a615 2019-02-04 09:10:14.601939 620 93 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-93\n 2 \N \N 80ef1de3-50d2-453f-bc05-58094b0bb04e 2019-02-04 09:10:14.626062 621 310 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-310\n 2 \N \N e1bce3eb-c8b9-4614-bb8c-fbb857888433 2019-02-04 09:10:14.648131 622 279 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-279\n 2 \N \N a413449e-3973-4910-b153-ba794ca715ea 2019-02-04 09:10:14.668144 623 275 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-275\n 2 \N \N c56b6395-3048-47e0-93be-59e7414bf156 2019-02-04 09:10:14.68774 624 92 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-92\n 2 \N \N d51ab793-dfb7-4d68-a104-e4c828abe721 2019-02-04 09:10:14.712752 625 62 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-62\n 2 \N \N c9fe3131-1e0a-4dbe-9b5c-0525a2679faf 2019-02-04 09:10:14.739488 626 133 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-133\n 2 \N \N 2ffeed2f-1691-4257-8fc4-703fb181257e 2019-02-04 09:10:14.76465 627 134 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-134\n 2 \N \N 56f15ccd-78f0-4365-8de9-4f531273960b 2019-02-04 09:10:14.788287 628 135 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-135\n 2 \N \N 4848c582-2458-4a5c-97d1-825e389e04c4 2019-02-04 09:10:14.815289 629 136 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-136\n 2 \N \N 0d9590bd-f688-41cd-9095-96d96523221a 2019-02-04 09:10:14.841494 630 137 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-137\n 2 \N \N 9d242450-c27d-4fb0-8512-e6e805089eb7 2019-02-04 09:10:14.868973 631 138 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-138\n 2 \N \N d42e47a1-818d-4c33-9182-4c046dc710c2 2019-02-04 09:10:14.895285 632 139 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-139\n 2 \N \N 35acf18c-cd49-4b7e-9f29-9cf881b7e26f 2019-02-04 09:10:14.921647 633 140 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-140\n 2 \N \N 3a6b9129-cd48-4fc1-8324-66a651dac08c 2019-02-04 09:10:14.946586 634 141 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-141\n 2 \N \N fa3b75ea-78bd-4df2-a44d-4a04f7809ec8 2019-02-04 09:10:14.970653 635 142 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-142\n 2 \N \N 32f66fac-bbf6-4f04-aa98-a442bb0b2083 2019-02-04 09:10:14.995924 636 143 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-143\n 2 \N \N 64c5a14a-b462-4526-a12f-b0711c061a12 2019-02-04 09:10:15.036326 637 144 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-144\n 2 \N \N 675334ae-2f0b-44c0-9f8b-73cde8e9b208 2019-02-04 09:10:15.064061 638 145 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-145\n 2 \N \N a73d8837-fb03-4873-8a59-2e25d040221a 2019-02-04 09:10:15.09085 639 146 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-146\n 2 \N \N 26e741a0-5255-407c-9965-d1723a08f35b 2019-02-04 09:10:15.118848 640 147 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-147\n 2 \N \N 76f5cc8b-4785-4aca-8bc3-23b5e0082373 2019-02-04 09:10:15.145027 641 148 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-148\n 2 \N \N 4fe2802a-0e91-4941-98b6-fded1383020c 2019-02-04 09:10:15.185697 642 149 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-149\n 2 \N \N 2a29aad3-4306-465c-977f-9947ef419860 2019-02-04 09:10:15.210547 643 150 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-150\n 2 \N \N 55c06b5b-a0a2-453d-8752-207f99bfaa4a 2019-02-04 09:10:15.235212 644 151 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-151\n 2 \N \N 24c02ec8-8e62-4fc2-9800-d7f65668695f 2019-02-04 09:10:15.259417 645 152 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-152\n 2 \N \N 24c1b7de-b4da-4ab0-aef9-c65b19f45616 2019-02-04 09:10:15.285997 646 153 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-153\n 2 \N \N 3f3cdc70-02e4-4477-a12b-e217d473e800 2019-02-04 09:10:15.310584 647 322 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-322\n 2 \N \N 48eef350-9684-4f5f-8416-37c13f55b01c 2019-02-04 09:10:15.334782 648 154 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-154\n 2 \N \N f285e57c-1beb-4c1a-a384-f2e88cdfdf4a 2019-02-04 09:10:15.360749 649 155 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-155\n 2 \N \N 8fc1a127-52a7-4585-83a6-78edb12d3806 2019-02-04 09:10:15.385357 650 156 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-156\n 2 \N \N a81ae883-63e6-4d59-960f-8b546cb0ec2d 2019-02-04 09:10:15.41012 651 157 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-157\n 2 \N \N 0eb10ac3-16fb-4d96-a64b-74da0cddfe7f 2019-02-04 09:10:15.436021 652 158 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-158\n 2 \N \N e658810c-534b-4e3a-b44d-b0e578d2a822 2019-02-04 09:10:15.461757 653 159 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-159\n 2 \N \N 1c406322-3703-405d-84c2-084cdc237e1a 2019-02-04 09:10:15.486346 654 106 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-106\n 2 \N \N e0affee8-a047-4aec-a2d4-3eb9eb1fe12c 2019-02-04 09:10:15.510723 655 173 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-173\n 2 \N \N d27b485c-725c-4d38-bd2b-539631709254 2019-02-04 09:10:15.534008 656 71 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-71\n 2 \N \N d8a75f6d-1a0a-458b-9eb7-4defdb325658 2019-02-04 09:10:15.55817 657 104 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-104\n 2 \N \N 2590ce8a-caae-4180-9ac1-df7966b03956 2019-02-04 09:10:15.581633 658 103 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-103\n 2 \N \N 859a06b5-e5ec-452d-ba09-8a83601cb54a 2019-02-04 09:10:15.603903 659 118 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-118\n 2 \N \N 3ab662bb-2c64-4568-8c21-1be265db1704 2019-02-04 09:10:15.623556 660 84 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-84\n 2 \N \N 326c4fcf-39ec-443b-a920-4113f185b49a 2019-02-04 09:10:15.642233 661 132 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-132\n 2 \N \N 984591b1-adea-4882-90c5-3f0741211b58 2019-02-04 09:10:15.659643 662 309 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-309\n 2 \N \N 94be556e-10b4-492a-a6d0-a8b0da113a47 2019-02-04 09:10:15.677065 663 311 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-311\n 2 \N \N 701735b4-a7b0-4b23-87ad-3bdd273001a0 2019-02-04 09:10:15.696623 664 100 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-100\n 2 \N \N 93779fa6-02ba-44d2-a5b2-d1bfebd406d0 2019-02-04 09:10:15.718569 665 125 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-125\n 2 \N \N aaaf4f7e-113c-4f25-a4b8-60ee59e5a8b4 2019-02-04 09:10:15.741184 666 124 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-124\n 2 \N \N 5600637b-8178-4adb-8bb2-9ce2ca80da9b 2019-02-04 09:10:15.765354 667 120 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-120\n 2 \N \N 944a6c60-963b-45f8-a031-45350f0cc1b6 2019-02-04 09:10:15.787287 668 128 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-128\n 2 \N \N 52726666-9a15-4c6d-a72a-70e5e7b5f717 2019-02-04 09:10:15.804169 669 119 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-119\n 2 \N \N b4ba7378-e567-4776-8290-034c6b6eb30f 2019-02-04 09:10:15.822499 670 129 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-129\n 2 \N \N 596bd44a-f5a6-4b8c-bea5-d9e04f6a637e 2019-02-04 09:10:15.83919 671 105 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-105\n 2 \N \N 6dc95cc9-0da7-4c42-98c2-80373cb351f0 2019-02-04 09:10:15.857108 672 314 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-314\n 2 \N \N e53607b6-e4df-489b-986a-ff792d1810dc 2019-02-04 09:10:15.873666 673 130 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-130\n 2 \N \N badae9c4-25f5-4f38-96fe-5d337c631d6f 2019-02-04 09:10:15.891417 674 131 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-131\n 2 \N \N 451c7c7f-af84-4bbe-852d-274461ab9f1d 2019-02-04 09:10:15.92227 675 123 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-123\n 2 \N \N e48a7bc3-59c8-4510-a188-295df12d7148 2019-02-04 09:10:15.945437 676 112 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-112\n 2 \N \N 4d2c2682-68e7-4bba-a25a-07a5ffeea194 2019-02-04 09:10:15.967685 677 126 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-126\n 2 \N \N 6c1c7f92-3c5c-4522-a604-237e759ffe63 2019-02-04 09:10:15.991165 678 127 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-127\n 2 \N \N 4ef053fb-bc25-4cbd-bd92-3c41108842f9 2019-02-04 09:10:16.014734 679 316 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-316\n 2 \N \N f639add5-c55e-4a47-8916-3a20e3adef32 2019-02-04 09:10:16.037216 680 317 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-317\n 2 \N \N 3f0a9ad4-9a30-4899-a540-67691887595d 2019-02-04 09:10:16.057756 681 318 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-318\n 2 \N \N 23f3a1bf-b5ed-45ee-88ba-72a4bd29c717 2019-02-04 09:10:16.076722 682 319 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-319\n 2 \N \N 24ff48ed-33f1-487d-b92c-a8d4aa72a9a5 2019-02-04 09:10:16.098826 683 320 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-320\n 2 \N \N 68e4428b-a030-4800-a59d-5d02c72f9063 2019-02-04 09:10:16.118148 684 321 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-321\n 2 \N \N 20381512-065d-47ee-868f-fde17c368457 2019-02-04 09:10:16.13697 685 323 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-323\n 2 \N \N 402ba8f4-dfda-4909-af20-da5725130008 2019-02-04 09:10:16.155428 686 324 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-324\n 2 \N \N d879b3b3-d430-4957-9901-eaa59d0a1e9d 2019-02-04 09:10:16.175814 687 325 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-325\n 2 \N \N 7ac375ae-b54a-42ed-bfec-87cd451b930d 2019-02-04 09:10:16.195922 688 326 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-326\n 2 \N \N a15c5c1b-4254-478c-b701-fb8c4c387968 2019-02-04 09:10:16.217454 689 327 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-327\n 2 \N \N d26ce135-9973-4d3b-b40a-db92b5d17c8d 2019-02-04 09:10:16.240631 690 328 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-328\n 2 \N \N 97590852-8ae3-49ec-aa42-fbbcc1208f99 2019-02-04 09:10:16.267338 691 329 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-329\n 2 \N \N 4f7cbb81-4154-4887-9f6a-4a10f6bf8285 2019-02-04 09:10:16.293625 692 330 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-330\n 2 \N \N 1153b7ff-f557-482f-b9ae-18198e096910 2019-02-04 09:10:16.320097 693 331 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-331\n 2 \N \N 14a1351d-337c-4f0d-9f43-0d26ebb5ed02 2019-02-04 09:10:16.345762 694 332 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-332\n 2 \N \N 07f4aa81-0cb1-413c-83a5-dc5433c5f4e0 2019-02-04 09:10:16.371323 695 368 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PER-368\n 2 \N \N 39e46223-a194-4fb9-8fe5-18c5a8ddb15a 2019-02-04 09:10:16.395915 696 367 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PER-367\n 2 \N \N fc631087-6205-4522-8505-95a400e3deb2 2019-02-04 09:10:16.42077 697 374 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PUL-374\n 2 \N \N 2f32bac6-9a18-48d4-b79c-ab77d0cf54fc 2019-02-04 09:10:16.444759 698 363 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-363\n 2 \N \N d156251e-d046-4e5f-9a1b-bb17131ed8bc 2019-02-04 09:10:16.469974 699 384 Product \N \N \N \N \N update ---\nsku:\n- ''\n- COL-384\n 2 \N \N 74a2bbd1-f11b-4a42-a115-e399ffc9896b 2019-02-04 09:10:16.493832 700 379 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PUL-379\n 2 \N \N 3cde14c4-5f21-42a7-b732-d4b07a09102c 2019-02-04 09:10:16.515438 701 378 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PUL-378\n 2 \N \N 8e373ab8-4c82-4236-94e8-50f4dbe1b8c5 2019-02-04 09:10:16.538932 702 55 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-55\n 2 \N \N 341b11e7-f0f9-415c-ace4-09457598e853 2019-02-04 09:10:16.562577 703 259 Product \N \N \N \N \N update ---\nsku:\n- ''\n- ZAP-259\n 2 \N \N 534a3876-f237-4352-abc8-25df9f982450 2019-02-04 09:10:16.588004 704 267 Product \N \N \N \N \N update ---\nsku:\n- ''\n- ZAP-267\n 2 \N \N 32719a90-0180-4224-86fb-2d03021ef6a4 2019-02-04 09:10:16.613732 705 433 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-433\n 2 \N \N 2a9d78af-b114-4757-84a5-ef1bf4e9ebfb 2019-02-04 09:10:16.638908 706 434 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-434\n 2 \N \N 4d3b2ce1-733b-4ac4-b07e-c32dedbec241 2019-02-04 09:10:16.680748 707 435 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-435\n 2 \N \N 1122fd96-ba07-40b2-8290-b5a6e0360e39 2019-02-04 09:10:16.70532 708 268 Product \N \N \N \N \N update ---\nsku:\n- ''\n- ZAP-268\n 2 \N \N 0dfb592f-3ebd-4706-8bb7-87370cc1f507 2019-02-04 09:10:16.730823 709 260 Product \N \N \N \N \N update ---\nsku:\n- ''\n- ZAP-260\n 2 \N \N fe8c6e6e-045a-449d-8ed4-abd674902575 2019-02-04 09:10:16.756441 710 400 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-400\n 2 \N \N 97bb1496-ed5d-4826-810a-fd1b51cd9bc9 2019-02-04 09:10:16.780675 711 186 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-186\n 2 \N \N fd40e410-98a3-4b89-9b9b-f72d611e4ffd 2019-02-04 09:10:16.80545 712 401 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-401\n 2 \N \N 0eabed10-3add-42d7-b16f-4192c4e2dc61 2019-02-04 09:10:16.830067 713 399 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-399\n 2 \N \N 798a03aa-964c-415f-aaee-e162e0388537 2019-02-04 09:10:16.856308 714 409 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-409\n 2 \N \N 2fc7c4e0-cded-4240-a23d-3a4ce11bc30a 2019-02-04 09:10:16.882068 715 188 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-188\n 2 \N \N 4327e8b5-0c4b-4830-91f3-1cff368acbb6 2019-02-04 09:10:16.908001 716 190 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-190\n 2 \N \N f04d5a0d-8ae2-4b4a-bacb-df9400e2b3fb 2019-02-04 09:10:16.931946 717 404 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-404\n 2 \N \N 5b05d0f9-397f-46ad-9533-74ffa2d639b7 2019-02-04 09:10:16.956756 718 398 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-398\n 2 \N \N 3338f649-22de-4c21-a930-8ed892db3c36 2019-02-04 09:10:16.981012 719 193 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-193\n 2 \N \N 0faa6f09-1a2d-41f7-8f3e-556fd7409a56 2019-02-04 09:10:17.009258 720 195 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-195\n 2 \N \N 656dbaa6-f097-4a72-8cfd-dd651317f684 2019-02-04 09:10:17.03638 721 403 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-403\n 2 \N \N 5c9592ce-deb6-4f96-909d-8cfb04ac7f22 2019-02-04 09:10:17.060043 722 187 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-187\n 2 \N \N 56b9b66f-ec90-4ee4-be77-5f15af87a28d 2019-02-04 09:10:17.083852 723 189 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-189\n 2 \N \N d4293972-fe05-4d44-a098-6b2368fde796 2019-02-04 09:10:17.109424 724 194 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-194\n 2 \N \N e24217a7-47cb-4320-bb14-c088fa0c0b7d 2019-02-04 09:10:17.133997 725 402 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-402\n 2 \N \N 2977d770-54ec-4c23-b7b5-1ab2576ffcca 2019-02-04 09:10:17.157723 726 405 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-405\n 2 \N \N 65e08faa-9578-442f-adfa-d0592433a99c 2019-02-04 09:10:17.182457 727 198 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-198\n 2 \N \N 9ab30865-56c7-4484-b0a4-37fbb31ed23e 2019-02-04 09:10:17.207358 728 397 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-397\n 2 \N \N e1bbc0f8-9c1c-4355-abc3-db77fce22869 2019-02-04 09:10:17.232606 729 196 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-196\n 2 \N \N 0a33baca-efcd-4972-9f9d-29c43cca12df 2019-02-04 09:10:17.258468 730 199 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-199\n 2 \N \N 44098fe5-955a-4595-9775-6360058c4697 2019-02-04 09:10:17.278851 731 200 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-200\n 2 \N \N 15809edc-2c06-44d5-8221-8be2398f1502 2019-02-04 09:10:17.298155 732 201 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-201\n 2 \N \N 92ed728b-0365-476b-b14d-0d4dd9c3e25d 2019-02-04 09:10:17.318151 733 406 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-406\n 2 \N \N 38676ee7-039b-4acf-a3ca-78d9016a0d04 2019-02-04 09:10:17.337266 734 202 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-202\n 2 \N \N 3529a7e0-4f3e-4939-8300-09b27616958c 2019-02-04 09:10:17.359203 735 203 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-203\n 2 \N \N 79e8a037-6150-4d50-bf94-dd8d2b93ca77 2019-02-04 09:10:17.383704 736 335 Product \N \N \N \N \N update ---\nsku:\n- ''\n- CAR-335\n 2 \N \N f712e874-17dd-4186-a0b6-24839cfdb40e 2019-02-04 09:10:17.408801 737 31 Product \N \N \N \N \N update ---\nsku:\n- ''\n- CAR-31\n 2 \N \N 1f3b5c69-a6c0-4103-b79b-44ce8b3003cd 2019-02-04 09:10:17.447507 738 337 Product \N \N \N \N \N update ---\nsku:\n- ''\n- CAR-337\n 2 \N \N d4405632-b4a2-40ae-957e-77c308c79128 2019-02-04 09:10:17.474007 739 265 Product \N \N \N \N \N update ---\nsku:\n- ''\n- ZAP-265\n 2 \N \N 6d7fb889-7dc5-4bd7-ad80-fea7feb8ed2f 2019-02-04 09:10:17.501012 740 45 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-45\n 2 \N \N b31c2a60-18aa-4b5f-894b-0216f257bdf7 2019-02-04 09:10:17.526829 741 46 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-46\n 2 \N \N 3ba2452a-2f16-40a9-875e-aa257ab5832d 2019-02-04 09:10:17.5529 742 349 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-349\n 2 \N \N dd346ea7-a941-4518-9b95-2ee1a911075c 2019-02-04 09:10:17.580679 743 334 Product \N \N \N \N \N update ---\nsku:\n- ''\n- CAR-334\n 2 \N \N 68dc5c83-475d-4440-9ce4-bc724ec3c9ce 2019-02-04 09:10:17.607082 744 53 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-53\n 2 \N \N 3f821e9b-2c42-4aa3-8fce-74e55c1b42ca 2019-02-04 09:10:17.632815 745 48 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-48\n 2 \N \N 5dfdc1f3-1001-4af5-a0d5-46ed2bf01af2 2019-02-04 09:10:17.658329 746 344 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-344\n 2 \N \N 65a5acb6-af0b-45bb-b31e-b2559d72b7c9 2019-02-04 09:10:17.684657 747 360 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-360\n 2 \N \N 6d57d144-f41f-4e90-ab0a-7436e79b3aca 2019-02-04 09:10:17.711718 748 343 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-343\n 2 \N \N 757c7b05-afef-441d-9ebf-3bc569bf9f1c 2019-02-04 09:10:17.736907 749 361 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-361\n 2 \N \N 61683575-0280-4b7a-a5fc-134577283daa 2019-02-04 09:10:17.761152 750 389 Product \N \N \N \N \N update ---\nsku:\n- ''\n- JUM-389\n 2 \N \N 51f02648-ea5d-4629-891c-91b45cb0e59e 2019-02-04 09:10:17.784636 751 255 Product \N \N \N \N \N update ---\nsku:\n- ''\n- JUM-255\n 2 \N \N 809160fa-c0e0-4273-a5a4-abbc5915bbe9 2019-02-04 09:10:17.813404 752 256 Product \N \N \N \N \N update ---\nsku:\n- ''\n- JUM-256\n 2 \N \N b6b752dc-47f0-4f94-aeef-3841a78a131f 2019-02-04 09:10:17.846895 753 257 Product \N \N \N \N \N update ---\nsku:\n- ''\n- JUM-257\n 2 \N \N 5e23adac-21e2-40e4-9f69-60e804edabb8 2019-02-04 09:10:17.880761 754 262 Product \N \N \N \N \N update ---\nsku:\n- ''\n- ZAP-262\n 2 \N \N e6f70221-cc8f-4e05-a0ca-e0178ed706f7 2019-02-04 09:10:17.915241 755 52 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-52\n 2 \N \N 0418e41a-5dcc-445f-a6e1-2defc1f1ee51 2019-02-04 09:10:17.945129 756 365 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-365\n 2 \N \N 9fdf356c-c411-4d3a-8875-d80bc1c34402 2019-02-04 09:10:17.968806 757 258 Product \N \N \N \N \N update ---\nsku:\n- ''\n- ZAP-258\n 2 \N \N a25e7266-0258-440d-ad8a-4c7bfa6aaccb 2019-02-04 09:10:17.992735 758 342 Product \N \N \N \N \N update ---\nsku:\n- ''\n- COS-342\n 2 \N \N e1ef2963-5f54-45c2-851d-0730499905e2 2019-02-04 09:10:18.017806 759 41 Product \N \N \N \N \N update ---\nsku:\n- ''\n- LEN-41\n 2 \N \N e492d6d0-e401-435c-b882-801e2f845bef 2019-02-04 09:10:18.04404 760 274 Product \N \N \N \N \N update ---\nsku:\n- ''\n- ZAP-274\n 2 \N \N a067e233-44fb-445c-8061-6b7dcf53792e 2019-02-04 09:10:18.074957 761 387 Product \N \N \N \N \N update ---\nsku:\n- ''\n- LEN-387\n 2 \N \N a25d6552-a87d-443a-80ad-2408ec8c1b89 2019-02-04 09:10:18.108676 762 388 Product \N \N \N \N \N update ---\nsku:\n- ''\n- LEN-388\n 2 \N \N d6db8cee-26ab-44fb-bb48-479a8311cdf9 2019-02-04 09:10:18.139572 763 355 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-355\n 2 \N \N 8fe61b27-2abe-4218-8759-a2cea16faf3c 2019-02-04 09:10:18.172938 764 354 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-354\n 2 \N \N 62c89abf-5171-4af7-8767-647a68352beb 2019-02-04 09:10:18.210103 765 357 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-357\n 2 \N \N 701391d9-aef6-4447-a578-f156396e10a2 2019-02-04 09:10:18.276493 766 359 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-359\n 2 \N \N 51d99c30-7c70-4999-b76b-0da4a5c6846a 2019-02-04 09:10:18.301082 767 364 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-364\n 2 \N \N 5cf2f6de-fce5-41d0-92ba-f6e21f317b25 2019-02-04 09:10:18.325794 768 266 Product \N \N \N \N \N update ---\nsku:\n- ''\n- ZAP-266\n 2 \N \N 8c5a51cf-241b-4c10-a7d0-cab65e74cb9e 2019-02-04 09:10:18.350404 769 269 Product \N \N \N \N \N update ---\nsku:\n- ''\n- ZAP-269\n 2 \N \N e46ee085-55b0-4d9e-a489-e1d078ccf962 2019-02-04 09:10:18.376068 770 358 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-358\n 2 \N \N cb550042-ed7d-49b2-a1f1-400aaaad7cd5 2019-02-04 09:10:18.397637 771 47 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-47\n 2 \N \N 787af95d-6257-4953-a042-aa9a5685161a 2019-02-04 09:10:18.416077 772 339 Product \N \N \N \N \N update ---\nsku:\n- ''\n- CAR-339\n 2 \N \N 90ed4eb2-6977-446a-a246-dd984d89ccfc 2019-02-04 09:10:18.435083 773 33 Product \N \N \N \N \N update ---\nsku:\n- ''\n- CAR-33\n 2 \N \N 6a3a9f03-074b-40d1-9f44-3b6fb8351882 2019-02-04 09:10:18.453595 774 338 Product \N \N \N \N \N update ---\nsku:\n- ''\n- CAR-338\n 2 \N \N 3740f3e5-6ad2-4d32-a9db-03f5130dbb92 2019-02-04 09:10:18.473198 775 37 Product \N \N \N \N \N update ---\nsku:\n- ''\n- CAR-37\n 2 \N \N 12de03e2-f80e-4698-9b0a-b686980be04f 2019-02-04 09:10:18.49572 776 36 Product \N \N \N \N \N update ---\nsku:\n- ''\n- CAR-36\n 2 \N \N 5362718a-f090-47ca-93a5-c1b9a6db38e2 2019-02-04 09:10:18.519983 777 348 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-348\n 2 \N \N 2271499f-9ae1-459c-89e0-756f0d53f380 2019-02-04 09:10:18.542534 778 54 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-54\n 2 \N \N 7d485ee3-1fa6-44b5-b9ff-b224f6e031d5 2019-02-04 09:10:18.564967 779 333 Product \N \N \N \N \N update ---\nsku:\n- ''\n- CAR-333\n 2 \N \N 8f6f3200-2e9e-49b4-864d-f298092e13cb 2019-02-04 09:10:18.589239 780 261 Product \N \N \N \N \N update ---\nsku:\n- ''\n- ZAP-261\n 2 \N \N 7a6fb69a-77ca-4c5c-bf0f-60725da94d0e 2019-02-04 09:10:18.612652 781 50 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-50\n 2 \N \N b280dbc9-f466-489e-8cb2-0c781771f374 2019-02-04 09:10:18.635057 782 362 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-362\n 2 \N \N 6ea87e95-494c-4cf3-92ea-5054932c1616 2019-02-04 09:10:18.657913 783 49 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-49\n 2 \N \N 6afe0bc8-f779-4fb2-a771-eafc949596c7 2019-02-04 09:10:18.680715 784 375 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PUL-375\n 2 \N \N c462851f-9ae7-429f-b1d8-654c062fc1b7 2019-02-04 09:10:18.70326 785 376 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PUL-376\n 2 \N \N 50255d5f-0c38-4914-8a62-4389147daf0d 2019-02-04 09:10:18.726707 786 373 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PUL-373\n 2 \N \N f59efb91-eb7e-48c9-bd16-863fa0a5ba63 2019-02-04 09:10:18.749791 787 377 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PUL-377\n 2 \N \N b8f0a9fb-ab5d-4505-9ad0-182bef16281e 2019-02-04 09:10:18.774942 788 395 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAL-395\n 2 \N \N 17eec716-784a-4670-9d2e-0a1472a477ee 2019-02-04 09:10:18.799032 789 396 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAL-396\n 2 \N \N f4b580ae-038c-40c3-a431-c88d19329379 2019-02-04 09:10:18.822969 790 161 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-161\n 2 \N \N 237ed859-936a-4c53-92b8-30ec1f7eb2be 2019-02-04 09:10:18.845982 791 416 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-416\n 2 \N \N dc32898c-231d-461f-8459-59a61206cdf6 2019-02-04 09:10:18.870464 792 417 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-417\n 2 \N \N c20872d5-bb63-4a57-8a0c-dcf2037e85be 2019-02-04 09:10:18.896528 793 167 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-167\n 2 \N \N ea166b3d-75c6-4998-9fcb-ffba5c14f6be 2019-02-04 09:10:18.919952 794 162 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-162\n 2 \N \N 0ffdd4f3-ca72-4713-bb59-054f5c351727 2019-02-04 09:10:18.942705 795 160 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-160\n 2 \N \N 72041469-c936-4d35-9711-ce295d4f8cb0 2019-02-04 09:10:18.966375 796 163 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-163\n 2 \N \N 939a54cc-eb94-4ac8-8006-0d8d6659432e 2019-02-04 09:10:18.988646 797 166 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-166\n 2 \N \N 87a37baa-e99c-46e9-9d46-ba5f67f4f496 2019-02-04 09:10:19.013858 798 415 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-415\n 2 \N \N 5d369b8c-bb4f-46a5-aded-b8219c3dee52 2019-02-04 09:10:19.038853 799 418 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-418\n 2 \N \N 29fea9b4-e641-44a2-bbe1-a82d2c59f70c 2019-02-04 09:10:19.062226 800 419 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-419\n 2 \N \N cb0b28fc-1a89-40d8-8c9f-4f2b94c537fb 2019-02-04 09:10:19.086019 801 420 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-420\n 2 \N \N 98920a89-963b-4f22-a46f-e941f766e488 2019-02-04 09:10:19.109552 802 421 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-421\n 2 \N \N d8d98742-0fb5-4ee0-8808-1cf6c103bc1b 2019-02-04 09:10:19.134978 803 88 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BLU-88\n 2 \N \N 11aad2ee-00e2-4953-9c6b-39e24cd926ee 2019-02-04 09:10:19.159307 804 264 Product \N \N \N \N \N update ---\nsku:\n- ''\n- ZAP-264\n 2 \N \N aa9891d3-973f-4f11-bf48-b898a0655bf3 2019-02-04 09:10:19.184813 805 182 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAL-182\n 2 \N \N 12704f71-b695-48e0-a542-88259a97ab95 2019-02-04 09:10:19.210092 806 183 Product \N \N \N \N \N update ---\nsku:\n- ''\n- CON-183\n 2 \N \N 66bb63a8-e53e-4566-bcfd-56da3a322741 2019-02-04 09:10:19.23507 807 184 Product \N \N \N \N \N update ---\nsku:\n- ''\n- CON-184\n 2 \N \N 1f38e5f1-65ee-49de-a83b-c9b5515529ef 2019-02-04 09:10:19.259608 808 185 Product \N \N \N \N \N update ---\nsku:\n- ''\n- CON-185\n 2 \N \N 87faf9ac-1f87-4a38-ad20-874e559e37b4 2019-02-04 09:10:19.282719 809 177 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-177\n 2 \N \N 5cd5c601-d084-4972-8758-34d8fd94b7bd 2019-02-04 09:10:19.30642 810 178 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-178\n 2 \N \N 511f676b-4471-42ea-8d99-7e3bf8528aa1 2019-02-04 09:10:19.332689 811 422 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-422\n 2 \N \N 8d6be4cd-a527-4d13-9165-da1af291fe94 2019-02-04 09:10:19.356818 812 179 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-179\n 2 \N \N 2baf8e21-b1c0-4a6a-b4ef-b1c0c627f675 2019-02-04 09:10:19.379991 813 180 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-180\n 2 \N \N 1ffbc34a-6aab-49c3-a2a3-b05a985585c6 2019-02-04 09:10:19.404212 814 181 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-181\n 2 \N \N d56d980a-c532-4a7d-975c-a9623331a802 2019-02-04 09:10:19.426805 815 386 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PUL-386\n 2 \N \N 2bf70e0f-d1fa-47a6-bb71-0387a3efc295 2019-02-04 09:10:19.448306 816 385 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PUL-385\n 2 \N \N f71b88a7-26f0-47aa-a098-51ca97f853d0 2019-02-04 09:10:19.466244 817 372 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PUL-372\n 2 \N \N 9df16341-72a0-4d3c-a2d2-b47319b54434 2019-02-04 09:10:19.487734 818 371 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PUL-371\n 2 \N \N e09250f7-62b1-415b-9b60-97961309b934 2019-02-04 09:10:19.51238 819 380 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PUL-380\n 2 \N \N 9c519c35-1ed1-4dcd-b24f-a1bb0b1883cd 2019-02-04 09:10:19.535723 820 383 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PUL-383\n 2 \N \N 69ad228b-c9b0-4846-b04c-d11d422c2df9 2019-02-04 09:10:19.559509 821 370 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PUL-370\n 2 \N \N 931e9c3e-6003-4c2b-848d-8963de484608 2019-02-04 09:10:19.58218 822 382 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PUL-382\n 2 \N \N 0ecb41e1-db1c-4ad2-932a-6d04632efdaa 2019-02-04 09:10:19.604451 823 381 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PUL-381\n 2 \N \N 5656dd3c-0f80-4ade-b524-fef11557cee1 2019-02-04 09:10:19.62716 824 29 Product \N \N \N \N \N update ---\nsku:\n- ''\n- REL-29\n 2 \N \N 9e8a4be9-bec8-4353-9826-9af0cea4f380 2019-02-04 09:10:19.649513 825 21 Product \N \N \N \N \N update ---\nsku:\n- ''\n- REL-21\n 2 \N \N ce310a57-d7b7-4a9b-b7eb-a2335cd11463 2019-02-04 09:10:19.671264 826 25 Product \N \N \N \N \N update ---\nsku:\n- ''\n- REL-25\n 2 \N \N d308013e-927e-4017-b9c6-293648651fb1 2019-02-04 09:10:19.689906 827 27 Product \N \N \N \N \N update ---\nsku:\n- ''\n- REL-27\n 2 \N \N a576910e-2c14-47c8-97d3-473de735b4f9 2019-02-04 09:10:19.709669 828 26 Product \N \N \N \N \N update ---\nsku:\n- ''\n- REL-26\n 2 \N \N 48eab125-754d-47f5-b934-6c35b7df4d07 2019-02-04 09:10:19.727202 829 30 Product \N \N \N \N \N update ---\nsku:\n- ''\n- REL-30\n 2 \N \N 5b01f79a-13e9-4fdb-bac5-88759008ffaa 2019-02-04 09:10:19.749701 830 22 Product \N \N \N \N \N update ---\nsku:\n- ''\n- REL-22\n 2 \N \N 75413fc5-7a68-4aeb-bcdc-12454f77fbe5 2019-02-04 09:10:19.773415 831 28 Product \N \N \N \N \N update ---\nsku:\n- ''\n- REL-28\n 2 \N \N e0b2a21f-d8db-436e-8a5c-b66db52a443b 2019-02-04 09:10:19.798128 832 23 Product \N \N \N \N \N update ---\nsku:\n- ''\n- REL-23\n 2 \N \N 26f4a071-065a-448c-89af-177e86d5ca64 2019-02-04 09:10:19.823332 833 24 Product \N \N \N \N \N update ---\nsku:\n- ''\n- REL-24\n 2 \N \N 24aaabc0-22a4-43f2-86ed-527532c3c3d7 2019-02-04 09:10:19.848085 834 35 Product \N \N \N \N \N update ---\nsku:\n- ''\n- CAR-35\n 2 \N \N 1414c4bf-3755-410e-a514-838857063895 2019-02-04 09:10:19.872917 835 38 Product \N \N \N \N \N update ---\nsku:\n- ''\n- CAR-38\n 2 \N \N cc484d6e-4ddb-4a42-8c14-c97b68b868ef 2019-02-04 09:10:19.897657 836 408 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-408\n 2 \N \N 7091ea6e-133e-44ba-b3f3-7453b60b92b4 2019-02-04 09:10:19.919569 837 7 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-7\n 2 \N \N 0b2d420b-94bb-4d85-acac-25fb497d0efb 2019-02-04 09:10:19.943659 838 10 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-10\n 2 \N \N ac76d3c8-d453-4376-acbd-197a19292cef 2019-02-04 09:10:19.967427 839 4 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-4\n 2 \N \N 6251679c-bd11-4cd1-8e5d-6dab4bb910b4 2019-02-04 09:10:19.991739 840 5 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-5\n 2 \N \N 44b9895c-f363-4f56-bdbe-f9e840e5db20 2019-02-04 09:10:20.032697 841 12 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-12\n 2 \N \N ffc3a89b-a8ba-43da-ac19-a007a64c9024 2019-02-04 09:10:20.056947 842 407 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-407\n 2 \N \N a57d4bc1-f648-4a72-a107-4a8678041c68 2019-02-04 09:10:20.081923 843 6 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-6\n 2 \N \N 53ba754f-2e32-4592-8ab4-b6c632ac8947 2019-02-04 09:10:20.10549 844 9 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-9\n 2 \N \N 74ef01a3-426d-40b6-930a-cb5856b017fd 2019-02-04 09:10:20.128522 845 8 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-8\n 2 \N \N 97f1f158-dd60-4465-98ed-947d1608cbac 2019-02-04 09:10:20.152603 846 410 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-410\n 2 \N \N c0da2f22-95d2-4999-bda2-1fc3c585b052 2019-02-04 09:10:20.178557 847 411 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-411\n 2 \N \N b25a3628-c718-474b-b690-18e80d46b09c 2019-02-04 09:10:20.203456 848 413 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-413\n 2 \N \N 4b8a7b5a-7f05-4ab6-9739-0838c4e30066 2019-02-04 09:10:20.222404 849 414 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-414\n 2 \N \N 64c7d991-4cfc-4a7e-b334-826506ab46a7 2019-02-04 09:10:20.239533 850 13 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-13\n 2 \N \N 3b6ba8ac-1b69-4a3e-8d36-addd0cd71744 2019-02-04 09:10:20.259049 851 14 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-14\n 2 \N \N 810a34aa-6c2f-487b-a102-7083d705dc0e 2019-02-04 09:10:20.277342 852 412 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-412\n 2 \N \N d48d0d06-dc83-4043-98b8-9d313e4eaba6 2019-02-04 09:10:20.295109 853 15 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-15\n 2 \N \N e00c30cc-1797-49a8-b817-0b3283793e01 2019-02-04 09:10:20.313192 854 16 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-16\n 2 \N \N 90389f3f-e653-4ff2-a27a-eeeb23a622b0 2019-02-04 09:10:20.331058 855 17 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-17\n 2 \N \N 236427f9-4f31-4c21-ac8c-06ea0c7352d6 2019-02-04 09:10:20.350823 856 18 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-18\n 2 \N \N 442b8786-f8f8-4b66-b53c-90b7aaaeaf2e 2019-02-04 09:10:20.368952 857 19 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-19\n 2 \N \N fde15c45-4862-4f06-890c-04d31870260f 2019-02-04 09:10:20.385647 858 20 Product \N \N \N \N \N update ---\nsku:\n- ''\n- SHO-20\n 2 \N \N 0bab9a55-476f-49dc-9f25-2899ffb1e965 2019-02-04 09:10:20.402878 859 51 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-51\n 2 \N \N 18abf966-4d9a-461e-b630-869e3ab11d71 2019-02-04 09:10:20.421091 860 347 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-347\n 2 \N \N 1cce6a8e-564f-4e79-8ac5-1f2a3fcf5670 2019-02-04 09:10:20.439637 861 346 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-346\n 2 \N \N c5fac02f-e69b-417e-976c-ea8cd78b6347 2019-02-04 09:10:20.461335 862 40 Product \N \N \N \N \N update ---\nsku:\n- ''\n- CAR-40\n 2 \N \N d3df0c31-8bbc-4823-b4d2-0b67fc78b8f0 2019-02-04 09:10:20.48442 863 43 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-43\n 2 \N \N beeac2ea-2e62-48ba-aebb-cebfbd01644a 2019-02-04 09:10:20.506684 864 44 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-44\n 2 \N \N ce2c8100-7833-4724-a77c-8250eadeafb8 2019-02-04 09:10:20.530546 865 271 Product \N \N \N \N \N update ---\nsku:\n- ''\n- ZAP-271\n 2 \N \N d4455558-9a5e-4a0a-9560-0f224eaffbc2 2019-02-04 09:10:20.553498 866 345 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-345\n 2 \N \N 8c37ca1d-8222-458e-bc51-a48c0d1dd4b4 2019-02-04 09:10:20.576058 867 164 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-164\n 2 \N \N b9db8a68-1024-41e2-9543-71b6e6ba6df9 2019-02-04 09:10:20.597348 868 393 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAL-393\n 2 \N \N 27757159-59e1-4467-bbac-df57ff84bfe9 2019-02-04 09:10:20.619454 869 230 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-230\n 2 \N \N a0f66db1-1dc1-4642-9776-2f3aaca5db81 2019-02-04 09:10:20.641721 870 205 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-205\n 2 \N \N c28f896b-fb28-416a-9856-d7336062ec0b 2019-02-04 09:10:20.663649 871 391 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAL-391\n 2 \N \N 900e3476-ac52-4dc1-9632-018f204bb28e 2019-02-04 09:10:20.687579 872 175 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-175\n 2 \N \N cc26089b-357e-408d-aa47-cdacb3a366f7 2019-02-04 09:10:20.711534 873 169 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-169\n 2 \N \N f2a1c42d-652a-49c7-a8f1-e2e61f3a3ba2 2019-02-04 09:10:20.757387 874 168 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-168\n 2 \N \N d2897fe6-a15f-4894-a210-82cce26f8c5d 2019-02-04 09:10:20.780725 875 212 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-212\n 2 \N \N cd2a7b11-8c84-45b1-8398-bec521af1963 2019-02-04 09:10:20.803017 876 211 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-211\n 2 \N \N 9e5e3327-7ea0-494b-b79f-f3125725c6f3 2019-02-04 09:10:20.825561 877 240 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-240\n 2 \N \N 13e05ae8-77cf-4ad4-bc93-8153f1fef28c 2019-02-04 09:10:20.847953 878 424 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-424\n 2 \N \N 815f2391-0f20-46ed-a2e3-5348d01c6989 2019-02-04 09:10:20.873542 879 245 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-245\n 2 \N \N 2622fb21-ed2f-4b81-af60-6657050a0b90 2019-02-04 09:10:20.895998 880 197 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-197\n 2 \N \N d980176b-2527-4d93-bbfc-73bb709b8553 2019-02-04 09:10:20.920899 881 244 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-244\n 2 \N \N 198b919b-6273-4b41-be21-e5df2a017f36 2019-02-04 09:10:20.944703 882 219 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-219\n 2 \N \N 940e1e1b-efe8-4fe3-8be6-1700d1b3c2a4 2019-02-04 09:10:20.969535 883 425 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-425\n 2 \N \N 1222c45e-065d-42a1-bdd4-b5d61010f0e3 2019-02-04 09:10:20.995256 884 392 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAL-392\n 2 \N \N d556ee88-1756-4905-be1c-3ea70ebc0700 2019-02-04 09:10:21.019637 885 207 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-207\n 2 \N \N e36f10cc-c87b-4a27-b3ae-4b79803e18be 2019-02-04 09:10:21.043792 886 243 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-243\n 2 \N \N 9840e2f2-8d09-4ee2-b786-5b6b5f71ce48 2019-02-04 09:10:21.067773 887 238 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-238\n 2 \N \N 13349314-12c0-4703-86a0-76c2c7e7b3c0 2019-02-04 09:10:21.09049 888 239 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-239\n 2 \N \N 34a58eef-14e9-47c1-a94a-44b81228bd04 2019-02-04 09:10:21.112684 889 432 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-432\n 2 \N \N e92cc1d1-1062-4acc-aa3f-3942b15954f3 2019-02-04 09:10:21.136059 890 426 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-426\n 2 \N \N f9684287-54d3-4183-b1f0-07860df85ae6 2019-02-04 09:10:21.160413 891 229 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-229\n 2 \N \N 7280fb96-de5d-472e-8f78-447d147e9a7e 2019-02-04 09:10:21.184093 892 165 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-165\n 2 \N \N 31ac6f9a-115e-406e-bfd5-0ae2da3ec422 2019-02-04 09:10:21.207794 893 390 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAL-390\n 2 \N \N 9a27d823-c1cc-417c-9221-58ee330db73a 2019-02-04 09:10:21.232565 894 176 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-176\n 2 \N \N 07d4b29b-246a-43a1-8365-c09eb2d3eac7 2019-02-04 09:10:21.258184 895 223 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-223\n 2 \N \N 4bb02cbf-998a-4296-b6c9-f5c35cffabf4 2019-02-04 09:10:21.282249 896 228 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-228\n 2 \N \N 90944461-4d37-423b-8fda-0152ccc5e1cb 2019-02-04 09:10:21.305291 897 220 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-220\n 2 \N \N 5831956c-41fa-4107-9792-e14b3cef4fe0 2019-02-04 09:10:21.330113 898 170 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-170\n 2 \N \N 98b4fb0b-c18e-4011-8731-204d44bf4689 2019-02-04 09:10:21.355238 899 427 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-427\n 2 \N \N 6d7a39ed-6495-4c32-b57d-40d1f1f409e8 2019-02-04 09:10:21.381382 900 232 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-232\n 2 \N \N f1aed643-7227-4e3f-b8b1-1e0245818eda 2019-02-04 09:10:21.406016 901 394 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAL-394\n 2 \N \N bdc459d8-16f6-4fb1-a96d-bc239ba2f633 2019-02-04 09:10:21.430493 902 423 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-423\n 2 \N \N df0432cc-9fe2-4c3b-a0f9-370ee33396cc 2019-02-04 09:10:21.454763 903 222 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-222\n 2 \N \N 7ec1b9d0-4c6b-4838-a4bc-2b41b25a0a36 2019-02-04 09:10:21.476964 904 204 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-204\n 2 \N \N a714c305-9a2f-468c-bf83-ba9beafa5d30 2019-02-04 09:10:21.496876 905 428 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-428\n 2 \N \N d2ae3c28-2b2c-4737-aed2-6029b786bae0 2019-02-04 09:10:21.518556 906 172 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-172\n 2 \N \N 4ec16323-c1fb-4bd3-9a74-4244e1f8644c 2019-02-04 09:10:21.542605 907 42 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-42\n 2 \N \N 44318935-1003-41ea-887d-896da3e7f85d 2019-02-04 09:10:21.561671 908 431 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-431\n 2 \N \N b7359ab4-41ce-4450-9495-9081c265c0b7 2019-02-04 09:10:21.584412 909 237 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-237\n 2 \N \N f5ef8b28-c46e-451d-bc58-d86278f3cd57 2019-02-04 09:10:21.608456 910 429 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-429\n 2 \N \N 7d41f06b-e1f4-4523-b4d8-817dad9cc48e 2019-02-04 09:10:21.634253 911 246 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-246\n 2 \N \N 065f2a9a-197d-4c28-aec5-c5657289462c 2019-02-04 09:10:21.659391 912 213 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-213\n 2 \N \N c32ecbc2-812f-4725-800d-fa6164b83d3a 2019-02-04 09:10:21.679555 913 218 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-218\n 2 \N \N 6accebbc-bd49-43be-964c-8614d412b4c2 2019-02-04 09:10:21.700774 914 221 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-221\n 2 \N \N f6c6ee5b-3270-4573-91d3-7664a762f4a8 2019-02-04 09:10:21.723278 915 236 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-236\n 2 \N \N 0f5abdaa-112c-46ed-8bf2-107d500c6780 2019-02-04 09:10:21.744257 916 430 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-430\n 2 \N \N 473305fa-773c-44ac-b784-837b42e2f596 2019-02-04 09:10:21.76629 917 209 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-209\n 2 \N \N 33387288-f256-4a74-b376-6fd708480397 2019-02-04 09:10:21.790331 918 171 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-171\n 2 \N \N 042a3de8-1ff8-4012-9389-266ffecc602a 2019-02-04 09:10:21.814654 919 216 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-216\n 2 \N \N 8435ec12-c7f6-4b43-aef7-2bb857446001 2019-02-04 09:10:21.839668 920 208 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-208\n 2 \N \N bfaff773-133c-4e42-9224-a314c750bdf8 2019-02-04 09:10:21.863897 921 206 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-206\n 2 \N \N c07703a9-4594-4c50-822f-05e71e693c55 2019-02-04 09:10:21.886822 922 231 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-231\n 2 \N \N 7ff988ff-665c-403d-a2cd-b0b07f7fefe8 2019-02-04 09:10:21.911653 923 215 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-215\n 2 \N \N 758fba6b-93ee-482f-99ad-41fa401b0e65 2019-02-04 09:10:21.935479 924 225 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-225\n 2 \N \N 11a6a023-4a96-4e47-91e4-210530a705c2 2019-02-04 09:10:21.960134 925 242 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-242\n 2 \N \N de6cc209-aaef-4455-b2ac-7e8c124a1f74 2019-02-04 09:10:21.985006 926 210 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-210\n 2 \N \N c9550461-de87-4607-add0-dcd1b5b7bc58 2019-02-04 09:10:22.009257 927 235 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-235\n 2 \N \N bce7779e-d549-4099-91dc-00d3c843f7cf 2019-02-04 09:10:22.034908 928 226 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-226\n 2 \N \N dbdcc8b0-00d4-4700-9f67-65fbdf917361 2019-02-04 09:10:22.058178 929 217 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-217\n 2 \N \N 789aac75-3445-480d-8c2c-d1d7c103d099 2019-02-04 09:10:22.081166 930 192 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-192\n 2 \N \N 7cd5e704-7153-4eda-8ef8-ba8fdd4e3c53 2019-02-04 09:10:22.103935 931 214 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-214\n 2 \N \N 272bee08-edb8-44b5-8d49-2448c854c18d 2019-02-04 09:10:22.127185 932 224 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-224\n 2 \N \N c015a7ca-698c-484e-8e35-e731bcbdaf99 2019-02-04 09:10:22.149888 933 174 Product \N \N \N \N \N update ---\nsku:\n- ''\n- PAN-174\n 2 \N \N cfb21586-09b0-4f52-8339-353fdde87b50 2019-02-04 09:10:22.173133 934 233 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-233\n 2 \N \N bbeebe60-c890-4567-b0bb-8d480a34c7c6 2019-02-04 09:10:22.196308 935 191 Product \N \N \N \N \N update ---\nsku:\n- ''\n- FAL-191\n 2 \N \N fda9b87d-6553-4c7f-9ca8-4405378f2716 2019-02-04 09:10:22.219597 936 234 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-234\n 2 \N \N e4b7eed1-b559-471b-ba1f-8958a41b29e9 2019-02-04 09:10:22.244138 937 227 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-227\n 2 \N \N c288c6eb-269e-44b6-9911-ad4fcca517e7 2019-02-04 09:10:22.267099 938 241 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-241\n 2 \N \N a07165c0-d24b-472e-ba04-e76e83a57807 2019-02-04 09:10:22.290038 939 247 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-247\n 2 \N \N 86ff0bf4-ead4-4b57-bc54-b226341ac580 2019-02-04 09:10:22.315347 940 248 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-248\n 2 \N \N b51f749c-856b-4ab2-8703-f502790934a3 2019-02-04 09:10:22.34005 941 249 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-249\n 2 \N \N 4e553189-497c-4ddc-8024-58d378aa2b17 2019-02-04 09:10:22.364844 942 250 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-250\n 2 \N \N 2dc42a12-cf18-45ed-8bb4-09f9a5e2c2e2 2019-02-04 09:10:22.389132 943 251 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-251\n 2 \N \N d830c218-f29a-44aa-a7b2-9a52e962bd00 2019-02-04 09:10:22.411757 944 252 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-252\n 2 \N \N a01978e6-9607-422f-a663-28ecfd99b066 2019-02-04 09:10:22.433887 945 253 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-253\n 2 \N \N 6e4d57a8-e7eb-41c9-b394-24cf3a681c86 2019-02-04 09:10:22.456155 946 254 Product \N \N \N \N \N update ---\nsku:\n- ''\n- VES-254\n 2 \N \N 51e64e72-c2b8-4cc0-9588-e2ca30223b08 2019-02-04 09:10:22.479466 947 32 Product \N \N \N \N \N update ---\nsku:\n- ''\n- CAR-32\n 2 \N \N 8208b686-cd8d-485a-a514-67123e7b7089 2019-02-04 09:10:22.502896 948 273 Product \N \N \N \N \N update ---\nsku:\n- ''\n- ZAP-273\n 2 \N \N fb2f66ba-8ecd-4b5c-8924-9887cd41f926 2019-02-04 09:10:22.526198 949 58 Product \N \N \N \N \N update ---\nsku:\n- ''\n- BOL-58\n 2 \N \N a1e8b281-f039-4cab-a6c8-b52e97326765 2019-02-04 09:10:22.552128 950 34 Product \N \N \N \N \N update ---\nsku:\n- ''\n- CAR-34\n 2 \N \N 762ae303-6a60-4fdd-96a1-3ba764cca923 2019-02-04 09:10:22.576652 951 6 User \N \N 5 User \N create ---\nuserid: chemicajasuo\nfirst_name: chemicajasuo\nlast_name: chemicajasuo\nusertype: C\nemail: chemicajasuo@sml.mx\nencrypted_password: "$2a$10$1jyBZvBZo59cVXhNKURw7ewDexK3SUOR6hNNUPAxjpbeZwFIlBlfy"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 1\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.252.59.239 b0e04c17-3320-4c26-aa71-98c71a9146ad 2019-02-04 09:12:18.788088 952 6 User \N \N 6 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-02-04 09:12:26.474201721 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3187424239\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3187424239\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 189.252.59.239 637b7bc1-09a6-478a-a447-d8ecff271918 2019-02-04 09:12:26.485526 953 6 User \N \N 6 User \N update ---\nunique_session_id:\n- \n- 6LZprJ-9B4nWGpao2szv\n 3 \N 189.252.59.239 637b7bc1-09a6-478a-a447-d8ecff271918 2019-02-04 09:12:26.508656 954 1 OpenCashRegister \N \N 6 User \N create ---\ncash_register_id: 1\nuser_id: 6\ninitial_cash: !ruby/object:BigDecimal 18:0.0\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 0.0 189.252.59.239 c4983297-e49f-4dd7-911e-19aeefc4298c 2019-02-04 09:12:57.383715 955 1 Sale \N \N 6 User \N create ---\ncustomer_id: 1\nuser_id: 6\nopen_cash_register_id: 1\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-02-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.252.59.239 ba29501c-68ba-4ee2-851c-563d5f55f6e2 2019-02-04 09:17:54.571156 956 100 AvailableProduct \N \N 6 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.252.59.239 ba29501c-68ba-4ee2-851c-563d5f55f6e2 2019-02-04 09:17:54.616691 957 1 Sale \N \N 6 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.252.59.239 1fe66754-b14c-4950-8082-a3cd5fce0fe7 2019-02-04 09:17:58.758798 958 1 CashRegistersMove \N \N 6 User \N create ---\nopen_cash_register_id: 1\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.749E3\nmove_type: '1'\nsale_id: 1\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1 189.252.59.239 1fe66754-b14c-4950-8082-a3cd5fce0fe7 2019-02-04 09:17:58.794306 959 2 Sale \N \N 6 User \N create ---\ncustomer_id: 1\nuser_id: 6\nopen_cash_register_id: 1\namount: !ruby/object:BigDecimal 18:0.399E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.399E3\nstatus: 0\ndate_sale: 2019-02-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-2\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.252.59.239 30f22a56-e7cd-4b9e-862b-32d6bb787af1 2019-02-04 09:18:59.669024 960 68 AvailableProduct \N \N 6 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.252.59.239 30f22a56-e7cd-4b9e-862b-32d6bb787af1 2019-02-04 09:18:59.704275 961 2 Sale \N \N 6 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.252.59.239 6c943ef5-19e9-4e29-8ef4-c10125963fd7 2019-02-04 09:19:02.719181 962 2 CashRegistersMove \N \N 6 User \N create ---\nopen_cash_register_id: 1\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 2\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-2\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-2 189.252.59.239 6c943ef5-19e9-4e29-8ef4-c10125963fd7 2019-02-04 09:19:02.752719 963 6 User \N \N 6 User \N update ---\ncurrent_sign_in_at:\n- 2019-02-04 09:12:26.474201000 Z\n- 2019-02-04 09:21:36.789329063 Z\nsign_in_count:\n- 1\n- 2\n 4 \N 189.252.59.239 f29f44dd-53cc-43c0-a52a-a102bb7a2826 2019-02-04 09:21:36.79498 964 6 User \N \N 6 User \N update ---\nunique_session_id:\n- 6LZprJ-9B4nWGpao2szv\n- xYsM_kb-gzSgXEsAgy_M\n 5 \N 189.252.59.239 f29f44dd-53cc-43c0-a52a-a102bb7a2826 2019-02-04 09:21:36.808665 965 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-02-02 02:14:37.790741000 Z\n- &1 2019-02-02 04:28:02.056332000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-04 18:37:24.326627623 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3187438970\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542565\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542565\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984544284\n mask_addr: 4294967295\nsign_in_count:\n- 3\n- 4\n 8 \N 177.228.136.28 50ee85e5-bfbc-4e1b-bf45-32601abafcb4 2019-02-04 18:37:24.341288 966 5 User \N \N 5 User \N update ---\nunique_session_id:\n- epN1HgYKhxvABv7Gkdsa\n- Hpic2UKQxZCySECA9ZHs\n 9 \N 177.228.136.28 50ee85e5-bfbc-4e1b-bf45-32601abafcb4 2019-02-04 18:37:24.366649 967 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-02 17:11:00.193461000 Z\n- &1 2019-02-02 17:30:14.451196000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-04 19:54:40.278373174 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537292\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984543134\n mask_addr: 4294967295\nsign_in_count:\n- 9\n- 10\n 20 \N 177.228.131.158 0aa83fe5-def1-4f63-8e7a-ce40877ce603 2019-02-04 19:54:40.326437 968 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Xdwx__axHunoYPn5FbxC\n- aCQ9d6o9M9EXCFdcABwb\n 21 \N 177.228.131.158 0aa83fe5-def1-4f63-8e7a-ce40877ce603 2019-02-04 19:54:40.356895 969 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-02 17:30:14.451196000 Z\n- &1 2019-02-04 19:54:40.278373000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-05 21:24:26.135400943 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537292\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984543134\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984543134\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\nsign_in_count:\n- 10\n- 11\n 22 \N 189.186.39.120 1846cc21-960a-4b77-98ad-03ec503195c8 2019-02-05 21:24:26.18465 970 1 User \N \N 1 User \N update ---\nunique_session_id:\n- aCQ9d6o9M9EXCFdcABwb\n- NLbYiZ4wxLR-Z3E7g7RN\n 23 \N 189.186.39.120 1846cc21-960a-4b77-98ad-03ec503195c8 2019-02-05 21:24:26.212866 971 2 User \N \N 1 User \N update ---\nstatus:\n- inactive\n- 1\n 4 El usuario GerentePrueba1 fue activado. 189.186.39.120 56709685-c68b-469f-9ed4-66ec326fb0f9 2019-02-05 21:30:55.815198 972 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-02-05 21:37:01.915095918 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 5 \N 189.186.39.120 359520c7-6da4-471e-8b8d-e390b99e6020 2019-02-05 21:37:01.925897 973 2 User \N \N 2 User \N update ---\nunique_session_id:\n- \n- VNkN9QQsmJWP18xa5EG5\n 6 \N 189.186.39.120 359520c7-6da4-471e-8b8d-e390b99e6020 2019-02-05 21:37:01.950318 974 2 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.725E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 725.0 189.186.39.120 d1fe92ae-6e2c-4c2f-b741-092cf08d790a 2019-02-05 21:41:00.877656 975 3 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 2\namount: !ruby/object:BigDecimal 18:0.1448E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1448E4\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 103b5687-2d5e-4041-8834-6a26ddb7e3db 2019-02-05 21:45:38.328394 976 58 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 1 \N 189.186.39.120 103b5687-2d5e-4041-8834-6a26ddb7e3db 2019-02-05 21:45:38.375201 977 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 103b5687-2d5e-4041-8834-6a26ddb7e3db 2019-02-05 21:45:38.430003 978 3 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 80685b48-a68a-4072-a9cc-620945c5d46f 2019-02-05 21:46:07.360712 979 3 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1448E4\nmove_type: '1'\nsale_id: 3\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.52E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1 189.186.39.120 80685b48-a68a-4072-a9cc-620945c5d46f 2019-02-05 21:46:07.396763 980 4 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 2\namount: !ruby/object:BigDecimal 18:0.1049E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1049E4\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-2\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 dc0fd69c-5c2f-48c2-88c1-039ed0673b37 2019-02-05 22:11:05.728082 981 181 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 dc0fd69c-5c2f-48c2-88c1-039ed0673b37 2019-02-05 22:11:05.76997 982 4 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 b0757bb6-a3c2-4d0e-be4e-08e3f4673a8e 2019-02-05 22:11:13.630492 983 4 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1049E4\nmove_type: '1'\nsale_id: 4\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-2\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1049E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-2 189.186.39.120 b0757bb6-a3c2-4d0e-be4e-08e3f4673a8e 2019-02-05 22:11:13.658531 984 5 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 2\namount: !ruby/object:BigDecimal 18:0.1168E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1168E4\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-3\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 56b1a98b-971f-4d9f-8013-d4d12e4d53c3 2019-02-05 22:13:42.118308 985 133 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 1 \N 189.186.39.120 56b1a98b-971f-4d9f-8013-d4d12e4d53c3 2019-02-05 22:13:42.16105 986 175 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 56b1a98b-971f-4d9f-8013-d4d12e4d53c3 2019-02-05 22:13:42.198654 987 5 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 9e8267cf-36e9-4459-849a-59074dc05ad8 2019-02-05 22:13:50.865482 988 5 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1168E4\nmove_type: '1'\nsale_id: 5\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-3\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1168E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-3 189.186.39.120 9e8267cf-36e9-4459-849a-59074dc05ad8 2019-02-05 22:13:50.898239 989 6 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 2\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-4\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 206ee0c7-6586-42cc-9c83-b0cf999395b1 2019-02-05 22:15:02.951028 990 263 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.39.120 206ee0c7-6586-42cc-9c83-b0cf999395b1 2019-02-05 22:15:03.00671 991 6 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 9c7b0f0f-4ed2-4a07-81e8-4ee7aebf6bb7 2019-02-05 22:15:08.663172 992 6 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 6\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-4\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-4 189.186.39.120 9c7b0f0f-4ed2-4a07-81e8-4ee7aebf6bb7 2019-02-05 22:15:08.69788 993 7 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 2\namount: !ruby/object:BigDecimal 18:0.2537E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2537E4\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-5\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 d2455343-29d7-4e4b-a204-4f5b89c5624b 2019-02-05 22:16:42.174246 994 143 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 d2455343-29d7-4e4b-a204-4f5b89c5624b 2019-02-05 22:16:42.215713 995 181 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.39.120 d2455343-29d7-4e4b-a204-4f5b89c5624b 2019-02-05 22:16:42.252419 996 3 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 1 \N 189.186.39.120 d2455343-29d7-4e4b-a204-4f5b89c5624b 2019-02-05 22:16:42.287787 997 7 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 43af282d-e3f4-4328-a4a5-a346bebcd2f3 2019-02-05 22:17:20.214842 998 7 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2537E4\nmove_type: '1'\nsale_id: 7\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-5\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-5 189.186.39.120 43af282d-e3f4-4328-a4a5-a346bebcd2f3 2019-02-05 22:17:20.244758 999 2 Customer \N \N 2 User \N create ---\nnick_name: Julia Perez\nphone: "(667) 192-4037"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.5E4\ntime_limit: 35\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente Julia Perez fue registrado. 189.186.39.120 17c31f59-c21a-49ce-812f-4d0fdf8cdf4d 2019-02-05 22:20:36.194585 1000 8 Sale \N \N 2 User \N create ---\ncustomer_id: 2\nuser_id: 2\nopen_cash_register_id: 2\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-6\nexpiration_date: 2019-03-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 30a5777f-9797-4466-984f-79b782a5c0a5 2019-02-05 22:21:49.87175 1001 137 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 30a5777f-9797-4466-984f-79b782a5c0a5 2019-02-05 22:21:49.913492 1002 8 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.27E3\nmove_type: '1'\nsale_id: 8\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-6\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-6 189.186.39.120 31f6e002-77fb-44f0-95a5-e3e91fb4142e 2019-02-05 22:22:08.591904 1003 8 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.39.120 c4990826-12f4-4186-9600-4447c51a1b42 2019-02-05 22:22:28.355694 1004 9 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 2\namount: !ruby/object:BigDecimal 18:0.2346E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2346E4\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-7\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 2fb10a5a-6a6a-4afa-aa6b-575b51d5a121 2019-02-05 22:26:00.832912 1005 133 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 2 \N 189.186.39.120 2fb10a5a-6a6a-4afa-aa6b-575b51d5a121 2019-02-05 22:26:00.873392 1006 177 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 2fb10a5a-6a6a-4afa-aa6b-575b51d5a121 2019-02-05 22:26:00.908696 1054 16 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 417237d8-0d35-4343-8128-a2e45d37cb17 2019-02-05 22:41:05.272224 1007 138 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 2fb10a5a-6a6a-4afa-aa6b-575b51d5a121 2019-02-05 22:26:00.945147 1008 198 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 2fb10a5a-6a6a-4afa-aa6b-575b51d5a121 2019-02-05 22:26:00.981564 1009 9 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 9944884f-d838-4aca-bda2-fb1fd556b10b 2019-02-05 22:26:07.799129 1010 9 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2346E4\nmove_type: '1'\nsale_id: 9\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-7\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2346E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-7 189.186.39.120 9944884f-d838-4aca-bda2-fb1fd556b10b 2019-02-05 22:26:07.833376 1011 2 Contact \N \N 2 User \N create ---\nname: SAMANTHA\nlast_name: OSUNA\nphone: ''\nemail: ''\nnotes: ''\nstatus: 1\n 1 \N 189.186.39.120 3fbf562a-6a7b-42b4-a22b-a3e11b876535 2019-02-05 22:28:37.51755 1012 3 Customer \N \N 2 User \N create ---\nnick_name: PAOLA MARTINEZ\nphone: "(667) 228-6750"\nemail: samantha_urcisichi@hotmail.com\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.2E5\ntime_limit: 120\nnotes: ''\nstatus: 1\ncontact_id: 2\nis_public: 0\n 1 El cliente PAOLA MARTINEZ fue registrado. 189.186.39.120 3fbf562a-6a7b-42b4-a22b-a3e11b876535 2019-02-05 22:28:37.542268 1013 10 Sale \N \N 2 User \N create ---\ncustomer_id: 3\nuser_id: 2\nopen_cash_register_id: 2\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 0\nseller_id: 1\nsale_code: PV1-V-8\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 0ca1f6d4-e859-42b0-add3-1f6153037cc3 2019-02-05 22:30:22.518916 1014 143 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.39.120 0ca1f6d4-e859-42b0-add3-1f6153037cc3 2019-02-05 22:30:22.558496 1015 141 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 0ca1f6d4-e859-42b0-add3-1f6153037cc3 2019-02-05 22:30:22.589856 1016 4 Customer \N \N 2 User \N create ---\nnick_name: BLANCA VAZQUEZ\nphone: "(667) 182-8864"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.5E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BLANCA VAZQUEZ fue registrado. 189.186.39.120 ea1772bb-316f-4256-87c0-7c8386da69dd 2019-02-05 22:31:34.223013 1017 11 Sale \N \N 2 User \N create ---\ncustomer_id: 4\nuser_id: 2\nopen_cash_register_id: 2\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-9\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 2fe74a33-0133-46e1-b644-43f72047255b 2019-02-05 22:31:47.480201 1018 135 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 2fe74a33-0133-46e1-b644-43f72047255b 2019-02-05 22:31:47.520295 1019 11 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-9 cancelada. 189.186.39.120 4a13813f-ce8e-4578-bb3e-8ea8e488f6c8 2019-02-05 22:32:03.239346 1020 135 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.39.120 4a13813f-ce8e-4578-bb3e-8ea8e488f6c8 2019-02-05 22:32:03.274911 1021 12 Sale \N \N 2 User \N create ---\ncustomer_id: 4\nuser_id: 2\nopen_cash_register_id: 2\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-10\nexpiration_date: 2019-03-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 c18f7827-3d1e-45c4-b97e-3db6b489261b 2019-02-05 22:32:25.349437 1022 135 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.39.120 c18f7827-3d1e-45c4-b97e-3db6b489261b 2019-02-05 22:32:25.389974 1023 10 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.18E3\nmove_type: '1'\nsale_id: 12\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-10\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.18E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-10 189.186.39.120 7ba71513-781e-4fdd-a605-a01e64a23230 2019-02-05 22:32:48.683678 1024 12 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.39.120 cb596657-70bc-4729-b437-f6df5597a767 2019-02-05 22:32:50.876815 1025 5 Customer \N \N 2 User \N create ---\nnick_name: JANETH DIAZ\nphone: "(667) 253-9960"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JANETH DIAZ fue registrado. 189.186.39.120 0bd6c419-dd17-4472-bbce-5666fe8152a7 2019-02-05 22:33:53.252993 1026 3 Contact \N \N 2 User \N create ---\nname: SAMANTHA\nlast_name: OSUNA\nphone: ''\nemail: ''\nnotes: ''\nstatus: 1\n 1 \N 189.186.39.120 2de50476-0e26-4a4d-ae2c-be1c816cf5e2 2019-02-05 22:34:53.120518 1027 5 Customer \N \N 2 User \N update ---\nemail:\n- ''\n- samantha_urcisichi@hotmail.com\ncredit_limit:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E4\ncontact_id:\n- \n- 3\n 2 El cliente JANETH DIAZ fue registrado. 189.186.39.120 2de50476-0e26-4a4d-ae2c-be1c816cf5e2 2019-02-05 22:34:53.136825 1028 13 Sale \N \N 2 User \N create ---\ncustomer_id: 5\nuser_id: 2\nopen_cash_register_id: 2\namount: !ruby/object:BigDecimal 18:0.1048E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1048E4\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-11\nexpiration_date: 2019-03-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 18dc4e17-3c7f-460c-8a64-16fa86853348 2019-02-05 22:35:30.507806 1029 151 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 18dc4e17-3c7f-460c-8a64-16fa86853348 2019-02-05 22:35:30.563252 1030 157 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 18dc4e17-3c7f-460c-8a64-16fa86853348 2019-02-05 22:35:30.599035 1052 138 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.39.120 61509943-bf84-4eb5-b41f-f16c9dafec03 2019-02-05 22:41:00.194889 1053 76 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 189.186.39.120 61509943-bf84-4eb5-b41f-f16c9dafec03 2019-02-05 22:41:00.231756 1031 11 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.314E3\nmove_type: '1'\nsale_id: 13\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-11\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.348E3\nchange: !ruby/object:BigDecimal 18:0.34E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-11 189.186.39.120 562b55c4-1c99-4657-83fd-6bc61908cab5 2019-02-05 22:35:39.563931 1032 11 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.314E3\nmove_type: '1'\nsale_id: 13\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-11\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.348E3\nchange: !ruby/object:BigDecimal 18:0.34E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.39.120 502481c0-364a-419a-bad7-cc1ecadbef15 2019-02-05 22:35:56.490776 1033 12 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.348E3\nmove_type: '1'\nsale_id: 13\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-11\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.348E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-11 189.186.39.120 144533ba-fc24-4d1e-be6b-8fde052868bc 2019-02-05 22:36:08.684789 1034 13 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.39.120 960d57c0-7d6f-4be1-9b80-8787e8c879c8 2019-02-05 22:36:14.483752 1035 6 Customer \N \N 2 User \N create ---\nnick_name: ELIZABETH CARDENAS\nphone: "(631) 157-9350"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.5E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ELIZABETH CARDENAS fue registrado. 189.186.39.120 be060562-62f3-48bf-b4fe-ccda866f5304 2019-02-05 22:36:58.46684 1036 14 Sale \N \N 2 User \N create ---\ncustomer_id: 6\nuser_id: 2\nopen_cash_register_id: 2\namount: !ruby/object:BigDecimal 18:0.2746E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2746E4\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-12\nexpiration_date: 2019-03-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 a36ce9c0-5258-4863-97e6-b5d4d22003a2 2019-02-05 22:38:21.393404 1037 4 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 1 \N 189.186.39.120 a36ce9c0-5258-4863-97e6-b5d4d22003a2 2019-02-05 22:38:21.434758 1038 143 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.39.120 a36ce9c0-5258-4863-97e6-b5d4d22003a2 2019-02-05 22:38:21.470853 1039 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.39.120 a36ce9c0-5258-4863-97e6-b5d4d22003a2 2019-02-05 22:38:21.50576 1040 131 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 a36ce9c0-5258-4863-97e6-b5d4d22003a2 2019-02-05 22:38:21.539425 1041 13 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.73E3\nmove_type: '1'\nsale_id: 14\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-12\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.73E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-12 189.186.39.120 90dbac30-4a24-42ea-8b74-cc04c8759574 2019-02-05 22:38:41.851677 1042 13 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.73E3\nmove_type: '1'\nsale_id: 14\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-12\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.73E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.39.120 8a1d6f32-5df2-49ce-9a6c-ca7084f5ce8e 2019-02-05 22:38:50.110234 1043 14 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.849E3\nmove_type: '1'\nsale_id: 14\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-12\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.849E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-12 189.186.39.120 332511f2-b3e6-436d-b77c-35301bb0a0d0 2019-02-05 22:39:07.654884 1044 14 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.39.120 a91dbc2a-0877-46d8-bf0e-3abda5bfdbb1 2019-02-05 22:39:10.917618 1045 15 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 2\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-13\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 0c5c0217-d956-40b6-a562-4f48ac9751fd 2019-02-05 22:39:39.074828 1046 180 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 0c5c0217-d956-40b6-a562-4f48ac9751fd 2019-02-05 22:39:39.114555 1047 15 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 c2210482-3e2a-4c0f-8331-c242761c2f4c 2019-02-05 22:40:00.097448 1048 15 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 15\ncardnumber: 1111\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-13\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-13 189.186.39.120 c2210482-3e2a-4c0f-8331-c242761c2f4c 2019-02-05 22:40:00.129344 1049 16 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 2\namount: !ruby/object:BigDecimal 18:0.2742E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2742E4\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-14\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 61509943-bf84-4eb5-b41f-f16c9dafec03 2019-02-05 22:41:00.081549 1050 186 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 189.186.39.120 61509943-bf84-4eb5-b41f-f16c9dafec03 2019-02-05 22:41:00.121449 1051 176 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 61509943-bf84-4eb5-b41f-f16c9dafec03 2019-02-05 22:41:00.156916 1055 16 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2742E4\nmove_type: '1'\nsale_id: 16\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-14\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2742E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-14 189.186.39.120 417237d8-0d35-4343-8128-a2e45d37cb17 2019-02-05 22:41:05.307455 1056 17 Sale \N \N 2 User \N create ---\ncustomer_id: 3\nuser_id: 2\nopen_cash_register_id: 2\namount: !ruby/object:BigDecimal 18:0.2566E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2566E4\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-15\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 b3ea7b39-19b7-4291-9b09-ec29eb3fead1 2019-02-05 22:44:53.128039 1057 139 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 b3ea7b39-19b7-4291-9b09-ec29eb3fead1 2019-02-05 22:44:53.17031 1058 198 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.39.120 b3ea7b39-19b7-4291-9b09-ec29eb3fead1 2019-02-05 22:44:53.208129 1059 176 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.39.120 b3ea7b39-19b7-4291-9b09-ec29eb3fead1 2019-02-05 22:44:53.245056 1060 182 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 b3ea7b39-19b7-4291-9b09-ec29eb3fead1 2019-02-05 22:44:53.279896 1061 17 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 6317e603-9d8b-4b1c-b1db-12e7ef34afcc 2019-02-05 22:45:06.965282 1062 17 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1566E4\nmove_type: '1'\nsale_id: 17\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-15\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1566E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-15 189.186.39.120 6317e603-9d8b-4b1c-b1db-12e7ef34afcc 2019-02-05 22:45:06.997782 1063 17 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-15 cancelada. 189.186.39.120 bfb86bd9-07a2-493e-b9b9-74a4b70e39ef 2019-02-05 22:46:02.245466 1064 17 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1566E4\nmove_type: '1'\nsale_id: 17\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-15\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1566E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.39.120 bfb86bd9-07a2-493e-b9b9-74a4b70e39ef 2019-02-05 22:46:02.279252 1065 139 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.39.120 bfb86bd9-07a2-493e-b9b9-74a4b70e39ef 2019-02-05 22:46:02.315848 1066 198 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.39.120 bfb86bd9-07a2-493e-b9b9-74a4b70e39ef 2019-02-05 22:46:02.348083 1067 176 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.39.120 bfb86bd9-07a2-493e-b9b9-74a4b70e39ef 2019-02-05 22:46:02.380778 1068 182 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.39.120 bfb86bd9-07a2-493e-b9b9-74a4b70e39ef 2019-02-05 22:46:02.412259 1069 18 Sale \N \N 2 User \N create ---\ncustomer_id: 3\nuser_id: 2\nopen_cash_register_id: 2\namount: !ruby/object:BigDecimal 18:0.2566E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2566E4\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 0\nseller_id: 1\nsale_code: PV1-V-16\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 9e4b4257-8ef8-4666-8936-1d88efa8f591 2019-02-05 22:46:37.49497 1070 139 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.39.120 9e4b4257-8ef8-4666-8936-1d88efa8f591 2019-02-05 22:46:37.535986 1071 198 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.39.120 9e4b4257-8ef8-4666-8936-1d88efa8f591 2019-02-05 22:46:37.570518 1072 176 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.39.120 9e4b4257-8ef8-4666-8936-1d88efa8f591 2019-02-05 22:46:37.607772 1073 182 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.39.120 9e4b4257-8ef8-4666-8936-1d88efa8f591 2019-02-05 22:46:37.648101 1074 3 User \N \N 3 User \N update ---\ncurrent_sign_in_at:\n- 2019-02-02 17:25:59.887229000 Z\n- 2019-02-05 22:50:28.560352177 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537292\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\nsign_in_count:\n- 1\n- 2\n 4 \N 189.186.39.120 9892acbc-1333-4703-943b-30e2485ecc6e 2019-02-05 22:50:28.567121 1075 3 User \N \N 3 User \N update ---\nunique_session_id:\n- vjDfDQzJdfc-PzSBzeBY\n- mVwDhujcnTQPmgJyjAV7\n 5 \N 189.186.39.120 9892acbc-1333-4703-943b-30e2485ecc6e 2019-02-05 22:50:28.582624 1076 2 User \N \N 2 User \N update ---\ncurrent_sign_in_at:\n- 2019-02-05 21:37:01.915095000 Z\n- 2019-02-05 22:52:21.190001511 Z\nsign_in_count:\n- 1\n- 2\n 7 \N 189.186.39.120 0f51e4af-2b9e-47c4-8158-f1983da20126 2019-02-05 22:52:21.197095 1077 2 User \N \N 2 User \N update ---\nunique_session_id:\n- VNkN9QQsmJWP18xa5EG5\n- C3r_4p3_Vky3B6QemfKQ\n 8 \N 189.186.39.120 0f51e4af-2b9e-47c4-8158-f1983da20126 2019-02-05 22:52:21.210647 1078 4 User \N \N 4 User \N update ---\ncurrent_sign_in_at:\n- 2019-02-02 01:49:40.972316000 Z\n- 2019-02-06 00:07:07.000228765 Z\nsign_in_count:\n- 1\n- 2\n 4 \N 189.186.39.120 91c1f0fc-b887-4a33-bc88-a9f0a4352868 2019-02-06 00:07:07.00833 1079 4 User \N \N 4 User \N update ---\nunique_session_id:\n- orYbc2LuKQUG1-7cS3HX\n- ELyxtmGkwh8LGX9eKDJR\n 5 \N 189.186.39.120 91c1f0fc-b887-4a33-bc88-a9f0a4352868 2019-02-06 00:07:07.027017 1080 7 User \N \N 4 User \N create ---\nuserid: SAMANTHASUO\nfirst_name: SAMANTHA\nlast_name: URCISICHI\nusertype: G\nemail: samantha_urcisic@hotmail.com\nencrypted_password: "$2a$10$qwab7eg4COQk6q4d6xpsquh.MBNPQP3CHCya.7Ep6JYavxL7yVn06"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 1\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.186.39.120 29a23bb4-5e40-4487-a3b7-3a6b1e084fed 2019-02-06 00:25:54.86423 2020 101 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 f9ceb619-8ee4-41fd-9ace-30c6601acd66 2019-02-16 21:21:15.097962 1081 8 User \N \N 4 User \N create ---\nuserid: SAMANTHABYSUO\nfirst_name: SAMANTHA\nlast_name: URCISICHI\nusertype: G\nemail: samantha_urcisi@hotmail.com\nencrypted_password: "$2a$10$4U5jvtkwbToBkHmNkmGvnuEsiYg8A9Q4/flK9T38amBBilK9UAHXy"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 2\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.186.39.120 deca75f1-14ce-4aa3-a1e0-7d74ec4bb9a5 2019-02-06 00:26:39.548811 1082 7 User \N \N 7 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-02-06 00:30:34.115585317 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 189.186.39.120 101b691b-8941-41b6-b287-8a5cd4150f7b 2019-02-06 00:30:34.124302 1083 7 User \N \N 7 User \N update ---\nunique_session_id:\n- \n- oRqunezenUb-wSz45xxC\n 3 \N 189.186.39.120 101b691b-8941-41b6-b287-8a5cd4150f7b 2019-02-06 00:30:34.141149 1084 7 User \N \N 7 User \N update ---\nstatus:\n- active\n- 2\n 4 El usuario SAMANTHASUO fue desactivado. 189.186.39.120 fa782014-c2a8-48a6-b8c0-638f284082d6 2019-02-06 00:34:04.778787 1085 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-02 01:49:40.972316000 Z\n- &1 2019-02-06 00:07:07.000228000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-06 00:34:13.920829587 Z\nsign_in_count:\n- 2\n- 3\n 6 \N 189.186.39.120 bea24c10-a8d4-4003-b69a-d110044f486e 2019-02-06 00:34:13.929438 1086 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ELyxtmGkwh8LGX9eKDJR\n- pWXS2seGNbs63pBx-iVZ\n 7 \N 189.186.39.120 bea24c10-a8d4-4003-b69a-d110044f486e 2019-02-06 00:34:13.949648 1087 8 User \N \N 4 User \N update ---\nstatus:\n- active\n- 2\n 2 El usuario SAMANTHABYSUO fue desactivado. 189.186.39.120 cc7992e0-2bf2-457d-8ebd-7ea5333369a3 2019-02-06 00:34:27.065724 1088 9 User \N \N 4 User \N create ---\nuserid: SAMANTHASUO1\nfirst_name: SAMANTHA\nlast_name: OSUNA\nusertype: C\nemail: samantha_urcisii@hotmail.com\nencrypted_password: "$2a$10$34I0n2AWG69Mh0d8XfKMmuj8N56Pq2A1Upk.zb7IXj3P5ita4EzAC"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 1\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.186.39.120 50ad8880-a179-49a5-9cf2-a6761ef52d11 2019-02-06 00:36:08.372833 1089 10 User \N \N 4 User \N create ---\nuserid: SAMANTHASBYSUO\nfirst_name: SAMANTHA\nlast_name: OSUNA\nusertype: C\nemail: samantha_ursichi@hotmail.com\nencrypted_password: "$2a$10$EqduLGjJ0S4uTDllY6X/NO71AINpQsFSBZ6bWgmX.yTM8a1yU7l2C"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 2\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.186.39.120 4876e8c3-c41e-4c4e-95ad-87159442fb18 2019-02-06 00:36:42.699596 1090 3 Seller \N \N 4 User \N create ---\npointsale_id: 1\nname: 'SAMANTHA '\nlast_name: URCISICHI\nstatus: 1\n 1 El vendedor SAMANTHA URCISICHI fue registrado. 189.186.39.120 40755518-d5d8-494f-af32-1d1952653cdc 2019-02-06 00:37:44.954579 1091 4 Seller \N \N 4 User \N create ---\npointsale_id: 2\nname: SAMANTHA\nlast_name: URCISICHI\nstatus: 1\n 1 El vendedor SAMANTHA URCISICHI fue registrado. 189.186.39.120 4464e686-83a9-4505-a1c9-245fbcc58023 2019-02-06 00:38:01.919316 1092 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-02-06 00:38:29.169175316 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 189.186.39.120 f23e3785-6473-45d3-8ddb-ea57897ed0cf 2019-02-06 00:38:29.179333 1093 9 User \N \N 9 User \N update ---\nunique_session_id:\n- \n- VshYkdnG1sWftEnFZ-n7\n 3 \N 189.186.39.120 f23e3785-6473-45d3-8ddb-ea57897ed0cf 2019-02-06 00:38:29.201032 1094 19 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 2\namount: !ruby/object:BigDecimal 18:0.1248E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1248E4\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-17\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 c61230b2-1f6b-4b63-a039-a3dd58159e4a 2019-02-06 00:39:01.884386 1095 197 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.39.120 c61230b2-1f6b-4b63-a039-a3dd58159e4a 2019-02-06 00:39:01.930007 1096 14 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 c61230b2-1f6b-4b63-a039-a3dd58159e4a 2019-02-06 00:39:01.960162 1097 19 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 ec5adb73-ffe9-405f-ab74-69f157fb20fb 2019-02-06 00:39:08.357117 1098 18 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1248E4\nmove_type: '1'\nsale_id: 19\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-17\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1248E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-17 189.186.39.120 ec5adb73-ffe9-405f-ab74-69f157fb20fb 2019-02-06 00:39:08.390214 1099 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-02-06 00:39:51.311869510 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 189.186.39.120 be58c25c-ba23-4d21-afd7-66f97324a17c 2019-02-06 00:39:51.321625 1100 10 User \N \N 10 User \N update ---\nunique_session_id:\n- \n- a5KgGvTpQSWzxX-kLMHA\n 3 \N 189.186.39.120 be58c25c-ba23-4d21-afd7-66f97324a17c 2019-02-06 00:39:51.342827 1101 3 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.0\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 0.0 189.186.39.120 5acb72b1-88ea-42a3-b051-e566df1795ff 2019-02-06 00:39:59.323181 1102 20 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 3\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-1\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 1e67d31a-068a-41e2-9646-533834e81ac3 2019-02-06 00:40:26.80307 1103 327 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 1e67d31a-068a-41e2-9646-533834e81ac3 2019-02-06 00:40:26.835811 1104 20 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 9af0282f-623a-4b65-ba0b-53b84f1c2f3a 2019-02-06 00:40:30.937307 2208 106 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.207 585dfb92-a57f-4a62-9726-80649221f7ea 2019-02-20 00:26:35.454525 1105 19 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 3\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 20\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-1\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-1 189.186.39.120 9af0282f-623a-4b65-ba0b-53b84f1c2f3a 2019-02-06 00:40:30.985596 1106 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-06 00:07:07.000228000 Z\n- &1 2019-02-06 00:34:13.920829000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-06 00:41:13.736931297 Z\nsign_in_count:\n- 3\n- 4\n 8 \N 189.186.39.120 52476c13-865f-4d98-9574-ed8612f0482f 2019-02-06 00:41:13.746031 1107 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pWXS2seGNbs63pBx-iVZ\n- tsLvybPrsRuZXqWY-vTq\n 9 \N 189.186.39.120 52476c13-865f-4d98-9574-ed8612f0482f 2019-02-06 00:41:13.764551 1108 1 PosConfig \N \N 4 User \N update ---\nhaggle_in_sale_percent:\n- 100\n- 20\n 3 Se actualizaron los parámetros generales 189.186.39.120 1563c8ac-3606-4908-8436-822c7317d820 2019-02-06 00:42:24.937524 1109 9 User \N \N 9 User \N update ---\ncurrent_sign_in_at:\n- 2019-02-06 00:38:29.169175000 Z\n- 2019-02-06 00:43:55.458523239 Z\nsign_in_count:\n- 1\n- 2\n 4 \N 189.186.39.120 6fb18231-e876-418d-91b3-632705295a69 2019-02-06 00:43:55.465623 1110 9 User \N \N 9 User \N update ---\nunique_session_id:\n- VshYkdnG1sWftEnFZ-n7\n- 8RhRRh9kF_3RXEqdjq6e\n 5 \N 189.186.39.120 6fb18231-e876-418d-91b3-632705295a69 2019-02-06 00:43:55.48318 1111 20 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1566E4\nmove_type: '1'\nsale_id: 10\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1566E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.39.120 4dd281a9-71ed-4597-b960-573fb492237d 2019-02-06 00:46:46.917318 1112 10 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 4dd281a9-71ed-4597-b960-573fb492237d 2019-02-06 00:46:46.967253 1113 18 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.39.120 4dd281a9-71ed-4597-b960-573fb492237d 2019-02-06 00:46:47.001399 1114 20 CashRegistersMove \N \N 9 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV1-V-8 189.186.39.120 4dd281a9-71ed-4597-b960-573fb492237d 2019-02-06 00:46:47.019463 1115 4 AvailableProduct \N \N 4 User \N destroy ---\nproduct_id: 6\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.8E1\nprice_sale: \nproducts_variant_id: \n 2 \N 189.186.39.120 dcca8739-1731-4372-9786-990b0449fe49 2019-02-06 00:51:38.445788 1116 439 Product \N \N 4 User \N create ---\nsku: BOL-436\nname: SIGR575\ndescription: BOLSO CLOE NEGRO\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-436 fue creado. 189.186.39.120 adac79eb-4d52-4f09-926b-2485fd405777 2019-02-06 00:56:47.605127 1117 439 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000439'\n 2 \N 189.186.39.120 adac79eb-4d52-4f09-926b-2485fd405777 2019-02-06 00:56:47.659898 1118 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-05 21:37:01.915095000 Z\n- &1 2019-02-05 22:52:21.190001000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-06 01:00:40.628863562 Z\nsign_in_count:\n- 2\n- 3\n 9 \N 189.186.39.120 9f9a2d28-15fe-44bc-a361-c9603b586eec 2019-02-06 01:00:40.637048 1119 2 User \N \N 2 User \N update ---\nunique_session_id:\n- C3r_4p3_Vky3B6QemfKQ\n- hV2dWzzzxmuZxTG1C_kc\n 10 \N 189.186.39.120 9f9a2d28-15fe-44bc-a361-c9603b586eec 2019-02-06 01:00:40.657566 1120 440 Product \N \N 4 User \N create ---\nsku: BOL-440\nname: FREJ585\ndescription: 'BACK PACK CLOE '\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-440 fue creado. 189.186.39.120 a983da37-fe8e-4a58-a4e6-103459f6bdd2 2019-02-06 01:11:46.027725 1121 440 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000440'\n 2 \N 189.186.39.120 a983da37-fe8e-4a58-a4e6-103459f6bdd2 2019-02-06 01:11:46.060754 1122 441 Product \N \N 4 User \N create ---\nsku: BOL-441\nname: TYRA578\ndescription: BOLSO CLOE\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-441 fue creado. 189.186.39.120 9b0310a8-4487-4c9c-9795-a616f600fbe5 2019-02-06 01:13:20.476569 1123 441 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000441'\n 2 \N 189.186.39.120 9b0310a8-4487-4c9c-9795-a616f600fbe5 2019-02-06 01:13:20.521369 1124 442 Product \N \N 4 User \N create ---\nsku: BOL-442\nname: POIT440\ndescription: BOLSO CLOE\nprice_base: !ruby/object:BigDecimal 18:0.9495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-442 fue creado. 189.186.39.120 89973e8e-350f-4707-9041-0646f0c7dce7 2019-02-06 01:15:35.387955 1125 442 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000442'\n 2 \N 189.186.39.120 89973e8e-350f-4707-9041-0646f0c7dce7 2019-02-06 01:15:35.422092 1126 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-04 19:54:40.278373000 Z\n- &1 2019-02-05 21:24:26.135400000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-06 01:16:28.149073683 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984543134\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\nsign_in_count:\n- 11\n- 12\n 24 \N 189.186.39.120 ddcbc42b-dbab-4138-bf91-a2a62e5324d6 2019-02-06 01:16:28.159701 1127 1 User \N \N 1 User \N update ---\nunique_session_id:\n- NLbYiZ4wxLR-Z3E7g7RN\n- Pp66hLhZ8BJZyze1FruJ\n 25 \N 189.186.39.120 ddcbc42b-dbab-4138-bf91-a2a62e5324d6 2019-02-06 01:16:28.181794 1170 301 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.39.120 d303bbec-51e9-412b-87d9-c6044256c176 2019-02-06 01:47:26.589323 1128 439 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 442\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: !ruby/object:BigDecimal 27:0.1899E4\nproducts_variant_id: \n 1 \N 189.186.39.120 1c465447-31b9-413a-b724-3bca11528eb8 2019-02-06 01:18:57.032654 1129 440 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 440\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: !ruby/object:BigDecimal 27:0.1599E4\nproducts_variant_id: \n 1 \N 189.186.39.120 1c495f1c-325d-41f8-97d9-38b79db324ff 2019-02-06 01:20:45.976102 1130 441 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 441\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: !ruby/object:BigDecimal 27:0.1699E4\nproducts_variant_id: \n 1 \N 189.186.39.120 33fc1c8d-8826-40d2-8cfd-c1b9a947c237 2019-02-06 01:21:14.115471 1131 442 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 439\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: !ruby/object:BigDecimal 27:0.1799E4\nproducts_variant_id: \n 1 \N 189.186.39.120 07787025-604d-4b5e-98a3-949f85af1a66 2019-02-06 01:21:40.875919 1132 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-02 17:25:59.887229000 Z\n- &1 2019-02-05 22:50:28.560352000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-06 01:24:59.391447742 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537292\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\nsign_in_count:\n- 2\n- 3\n 6 \N 189.186.39.120 be533eca-0330-4a7f-820e-dffaf0ee0556 2019-02-06 01:24:59.399136 1133 3 User \N \N 3 User \N update ---\nunique_session_id:\n- mVwDhujcnTQPmgJyjAV7\n- s4KeyeVMFGTLcaAPJCKy\n 7 \N 189.186.39.120 be533eca-0330-4a7f-820e-dffaf0ee0556 2019-02-06 01:24:59.416715 1134 21 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 3\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.399E3\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-2\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 eaf1765b-a17f-431b-9cc8-b9ec1d13c5d0 2019-02-06 01:28:26.899345 1135 328 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 189.186.39.120 eaf1765b-a17f-431b-9cc8-b9ec1d13c5d0 2019-02-06 01:28:26.943833 1136 21 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 d08f0968-f059-4192-b79a-93df5678eced 2019-02-06 01:28:36.014387 1137 21 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 3\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.399E3\nmove_type: '1'\nsale_id: 21\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-2\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.399E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-2 189.186.39.120 d08f0968-f059-4192-b79a-93df5678eced 2019-02-06 01:28:36.068348 1138 22 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 3\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-3\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 cdbe255d-b576-403b-ae39-bc30c174669f 2019-02-06 01:30:42.262395 1139 321 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 189.186.39.120 cdbe255d-b576-403b-ae39-bc30c174669f 2019-02-06 01:30:42.291532 1140 22 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 c79f3bd3-9100-4277-a99e-70e54e70f478 2019-02-06 01:30:48.69482 1141 22 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 3\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 22\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-3\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.469E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-3 189.186.39.120 c79f3bd3-9100-4277-a99e-70e54e70f478 2019-02-06 01:30:48.717406 1142 7 Customer \N \N 3 User \N create ---\nnick_name: VANESA BARAJAS\nphone: "(667) 103-4173"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente VANESA BARAJAS fue registrado. 189.186.39.120 68b982aa-ce35-49d5-a256-c14d2e8107cb 2019-02-06 01:32:09.320046 1143 23 Sale \N \N 3 User \N create ---\ncustomer_id: 7\nuser_id: 3\nopen_cash_register_id: 3\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-4\nexpiration_date: 2019-03-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 39568167-17cb-4f19-83e2-36cb6bd1781f 2019-02-06 01:32:38.85209 1144 327 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.39.120 39568167-17cb-4f19-83e2-36cb6bd1781f 2019-02-06 01:32:38.901351 1145 23 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: \npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 23\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-4\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-4 189.186.39.120 9288c6af-0a08-4521-9ee7-cbe36a18ca06 2019-02-06 01:32:58.718312 1146 23 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.39.120 4a519142-c32f-4320-8473-4a698af56a32 2019-02-06 01:33:01.739802 1147 443 Product \N \N 4 User \N create ---\nsku: BOL-443\nname: COVI759\ndescription: BOLSO CLOE\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-443 fue creado. 189.186.39.120 e9ba6ae8-0849-4fc6-bf91-c9e2edfdec0d 2019-02-06 01:33:08.732858 1148 443 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000443'\n 2 \N 189.186.39.120 e9ba6ae8-0849-4fc6-bf91-c9e2edfdec0d 2019-02-06 01:33:08.77677 1171 29 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 8ab58d2c-f800-46be-941c-2ea0e48db75d 2019-02-06 01:47:41.14503 1149 444 Product \N \N 4 User \N create ---\nsku: BOL-444\nname: TUVA589\ndescription: BACK PACK\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-444 fue creado. 189.186.39.120 b05e770b-552c-44dc-bbac-a0e7f241135a 2019-02-06 01:34:04.439494 1150 444 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000444'\n 2 \N 189.186.39.120 b05e770b-552c-44dc-bbac-a0e7f241135a 2019-02-06 01:34:04.482924 1151 24 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 3\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-5\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 fe4bbe5c-b494-499f-85fd-b4053a411fff 2019-02-06 01:38:42.873813 1152 327 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.39.120 fe4bbe5c-b494-499f-85fd-b4053a411fff 2019-02-06 01:38:42.913735 1153 24 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 723c0b01-1f8a-4c76-85f4-3ef0ee250036 2019-02-06 01:39:19.69808 1154 24 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 3\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 24\ncardnumber: 4569\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-5\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-5 189.186.39.120 723c0b01-1f8a-4c76-85f4-3ef0ee250036 2019-02-06 01:39:19.730932 1155 25 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 3\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-6\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 51bb026d-426d-46d3-a8ed-105a2fc042fb 2019-02-06 01:40:06.504448 1156 416 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 51bb026d-426d-46d3-a8ed-105a2fc042fb 2019-02-06 01:40:06.544152 1157 25 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 9fcbadac-dd8b-42bd-ac64-d0f6dad78052 2019-02-06 01:40:20.320138 1158 25 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 3\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 25\ncardnumber: 4969\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-6\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-6 189.186.39.120 9fcbadac-dd8b-42bd-ac64-d0f6dad78052 2019-02-06 01:40:20.35242 1159 26 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 3\namount: !ruby/object:BigDecimal 18:0.619E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.619E3\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-7\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 aea6e468-11be-4921-8df0-e78fa73d43bc 2019-02-06 01:40:53.823976 1160 330 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 1 \N 189.186.39.120 aea6e468-11be-4921-8df0-e78fa73d43bc 2019-02-06 01:40:53.865632 1161 26 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 10e76484-07b3-41d2-84a8-9a8a159973e8 2019-02-06 01:41:10.49303 1162 26 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 3\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.619E3\nmove_type: '1'\nsale_id: 26\ncardnumber: 4969\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-7\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-7 189.186.39.120 10e76484-07b3-41d2-84a8-9a8a159973e8 2019-02-06 01:41:10.522628 1163 27 Sale \N \N 3 User \N create ---\ncustomer_id: 3\nuser_id: 3\nopen_cash_register_id: 3\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 0\nseller_id: 2\nsale_code: PV2-V-8\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 6a55c88b-3657-43ac-ad7b-8bbd5d72a057 2019-02-06 01:41:53.564419 1164 411 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 6a55c88b-3657-43ac-ad7b-8bbd5d72a057 2019-02-06 01:41:53.605494 1165 28 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 3\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-9\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 02922d34-0e8d-4f59-a498-3629c09ad8b8 2019-02-06 01:46:45.982878 1166 409 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 02922d34-0e8d-4f59-a498-3629c09ad8b8 2019-02-06 01:46:46.023003 1167 28 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 f1eb3515-7426-4757-8cff-9ee5fce3a3b8 2019-02-06 01:46:53.431655 1168 27 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 3\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.729E3\nmove_type: '1'\nsale_id: 28\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-9\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.729E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-9 189.186.39.120 f1eb3515-7426-4757-8cff-9ee5fce3a3b8 2019-02-06 01:46:53.464824 1169 29 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 3\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-10\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 d303bbec-51e9-412b-87d9-c6044256c176 2019-02-06 01:47:26.550947 1262 42 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 9d2aa85e-1067-46fb-b9e3-8568e4d2c0c2 2019-02-07 00:46:10.387512 1172 28 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 3\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 29\ncardnumber: 4969\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-10\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-10 189.186.39.120 8ab58d2c-f800-46be-941c-2ea0e48db75d 2019-02-06 01:47:41.17518 1173 30 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 3\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-11\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 8a827fc5-200d-4e25-aab5-432e051f17c1 2019-02-06 01:48:03.58688 1174 416 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.39.120 8a827fc5-200d-4e25-aab5-432e051f17c1 2019-02-06 01:48:03.629856 1175 30 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 3c4a9dfc-9c1d-463b-bd8a-b357cb6ddada 2019-02-06 01:48:11.370392 1176 29 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 3\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 30\ncardnumber: 4969\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-11\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-11 189.186.39.120 3c4a9dfc-9c1d-463b-bd8a-b357cb6ddada 2019-02-06 01:48:11.407144 1177 31 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 3\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-02-05\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-12\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 f1f6784d-28aa-40e6-98f0-d2c0dff637c9 2019-02-06 02:29:54.286787 1178 324 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 f1f6784d-28aa-40e6-98f0-d2c0dff637c9 2019-02-06 02:29:54.329281 1179 31 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 c7c30861-c621-48cd-a655-c29114a1749a 2019-02-06 02:30:08.194193 1180 30 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 3\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 31\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-12\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-12 189.186.39.120 c7c30861-c621-48cd-a655-c29114a1749a 2019-02-06 02:30:08.229086 1181 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-06 00:38:29.169175000 Z\n- &1 2019-02-06 00:43:55.458523000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-06 02:43:50.470624330 Z\nsign_in_count:\n- 2\n- 3\n 6 \N 189.186.39.120 5b1b0b7c-0c07-4343-94bb-333b5e480559 2019-02-06 02:43:50.492415 1182 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 8RhRRh9kF_3RXEqdjq6e\n- dSMTqaJgFEsMzPCc6zNk\n 7 \N 189.186.39.120 5b1b0b7c-0c07-4343-94bb-333b5e480559 2019-02-06 02:43:50.514462 1183 1 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 2\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.18249E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.18249E5\ncash_fund: !ruby/object:BigDecimal 18:0.725E3\nphysical_cash: !ruby/object:BigDecimal 18:0.18974E5\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.39.120 b1e48d59-40d5-401b-87de-872ba237e1e3 2019-02-06 02:48:24.145046 1184 2 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.39.120 b1e48d59-40d5-401b-87de-872ba237e1e3 2019-02-06 02:48:24.166503 1185 2 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 3\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.641E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.5465E4\ncash_fund: !ruby/object:BigDecimal 18:0.945E3\nphysical_cash: !ruby/object:BigDecimal 18:0.641E4\nobservations: RECIBIO SAMANTHA DINERO, ES VENTA ACUMULADA DESDE EL 30 DE ENERO\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.39.120 6f31c6b5-f1cf-490a-8e3a-47e32016efc8 2019-02-06 03:04:31.335393 1186 3 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.39.120 6f31c6b5-f1cf-490a-8e3a-47e32016efc8 2019-02-06 03:04:31.353036 1187 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-05 22:52:21.190001000 Z\n- &1 2019-02-06 01:00:40.628863000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-06 17:19:37.078834498 Z\nsign_in_count:\n- 3\n- 4\n 11 \N 189.186.39.120 ceab5abd-ad46-478b-bb58-bf74bf45b8e2 2019-02-06 17:19:37.10235 1188 2 User \N \N 2 User \N update ---\nunique_session_id:\n- hV2dWzzzxmuZxTG1C_kc\n- QxQ_mMj4uzfwmbVfHT5r\n 12 \N 189.186.39.120 ceab5abd-ad46-478b-bb58-bf74bf45b8e2 2019-02-06 17:19:37.121963 1189 4 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.725E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 725.0 189.186.39.120 fe88319f-8a1a-4ea5-ba3f-e4bb38db84e5 2019-02-06 17:20:55.972814 1190 32 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 4\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-02-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-18\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 c25bbaa7-6d1b-4ad1-85be-089712f44904 2019-02-06 17:22:34.408783 1191 78 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 189.186.39.120 c25bbaa7-6d1b-4ad1-85be-089712f44904 2019-02-06 17:22:34.456809 1192 32 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 d94d5b00-acec-4788-80a1-88a8a61b8ad2 2019-02-06 17:23:01.921099 1193 31 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 4\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 32\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-18\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-18 189.186.39.120 d94d5b00-acec-4788-80a1-88a8a61b8ad2 2019-02-06 17:23:01.957774 1330 10 User \N \N 10 User \N update ---\nunique_session_id:\n- a5KgGvTpQSWzxX-kLMHA\n- XjXrgPReKhzdXvGyNz9V\n 5 \N 189.186.39.120 d0d8f362-4c6a-47ac-a7a7-ac2793e33e4b 2019-02-08 17:41:45.501205 1194 33 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 4\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-02-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-19\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 369e1b0a-d851-410f-827c-60c5137a7e8b 2019-02-06 17:27:51.840963 1195 268 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 1 \N 189.186.39.120 369e1b0a-d851-410f-827c-60c5137a7e8b 2019-02-06 17:27:51.882212 1196 33 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 a75c2b7e-1f85-4d36-bca3-548de91633ff 2019-02-06 17:27:58.696742 1197 32 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 4\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 33\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-19\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-19 189.186.39.120 a75c2b7e-1f85-4d36-bca3-548de91633ff 2019-02-06 17:27:58.73038 1198 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-06 00:43:55.458523000 Z\n- &1 2019-02-06 02:43:50.470624000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-06 20:09:53.768702351 Z\nsign_in_count:\n- 3\n- 4\n 8 \N 189.186.39.120 3ce0479e-7432-4b6b-b769-3fd99ada72c4 2019-02-06 20:09:53.778238 1199 9 User \N \N 9 User \N update ---\nunique_session_id:\n- dSMTqaJgFEsMzPCc6zNk\n- Z9L5s5qhhjw7Dk2ZkQaa\n 9 \N 189.186.39.120 3ce0479e-7432-4b6b-b769-3fd99ada72c4 2019-02-06 20:09:53.795896 1200 34 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 4\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-02-06\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-20\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 14848d8c-127c-44d4-9f4f-82965415baee 2019-02-06 20:10:18.242221 1201 169 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 189.186.39.120 14848d8c-127c-44d4-9f4f-82965415baee 2019-02-06 20:10:18.280262 1202 34 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 cd980166-c7b6-47d7-a4ff-c05962846915 2019-02-06 20:10:24.840784 1203 33 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 4\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 34\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-20\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-20 189.186.39.120 cd980166-c7b6-47d7-a4ff-c05962846915 2019-02-06 20:10:24.877289 1204 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-05 22:50:28.560352000 Z\n- &1 2019-02-06 01:24:59.391447000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-06 20:14:39.989437316 Z\nsign_in_count:\n- 3\n- 4\n 8 \N 189.186.39.120 2491143d-e4d2-40ba-84fd-0cc8c5e3f4f7 2019-02-06 20:14:39.995994 1205 3 User \N \N 3 User \N update ---\nunique_session_id:\n- s4KeyeVMFGTLcaAPJCKy\n- ZiTBs5dtRWuLbDxrrXDD\n 9 \N 189.186.39.120 2491143d-e4d2-40ba-84fd-0cc8c5e3f4f7 2019-02-06 20:14:40.025041 1206 5 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.945E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 945.0 189.186.39.120 6bbb95e7-8388-4cd5-813b-c76de8cb66e2 2019-02-06 20:16:46.905229 1207 35 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 5\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-02-06\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-13\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 f9f2e03e-8a3c-4b6c-a517-0b53b69589cd 2019-02-06 20:17:18.225427 1208 420 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 f9f2e03e-8a3c-4b6c-a517-0b53b69589cd 2019-02-06 20:17:18.270073 1209 35 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 b85666bc-259b-461d-899f-ee9c3d736a5d 2019-02-06 20:17:24.533584 1210 34 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 5\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 35\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-13\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-13 189.186.39.120 b85666bc-259b-461d-899f-ee9c3d736a5d 2019-02-06 20:17:24.568466 1211 8 Customer \N \N 3 User \N create ---\nnick_name: BIRIDIANA PRECIADO\nphone: "(667) 161-4175"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BIRIDIANA PRECIADO fue registrado. 189.186.39.120 dc4cf96a-1797-4742-bc2c-f82aa63cc8f7 2019-02-06 20:19:56.31452 1212 36 Sale \N \N 3 User \N create ---\ncustomer_id: 8\nuser_id: 3\nopen_cash_register_id: 5\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-02-06\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-14\nexpiration_date: 2019-03-13\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 f3c1fdbf-3248-4b4c-a30c-1a36a82227d1 2019-02-06 20:20:16.810307 1213 370 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.39.120 f3c1fdbf-3248-4b4c-a30c-1a36a82227d1 2019-02-06 20:20:16.852982 1214 35 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 5\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 36\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-14\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-14 189.186.39.120 bd77586e-c717-470e-ae16-c3285a855169 2019-02-06 20:20:43.746079 1215 36 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.39.120 b490ac4a-96e6-4bee-a66a-31076f2010b4 2019-02-06 20:20:50.432084 1216 1 Pointsale \N \N 5 User \N update ---\nhaggle_percent:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E3\n 7 \N 177.228.138.52 32cc6209-571f-45aa-a971-5736e90abea0 2019-02-06 20:33:14.575329 2278 129 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 68e01ebd-fcad-4792-9a14-1139e0809688 2019-02-20 23:51:13.936296 1217 6 User \N \N 6 User \N update ---\nlast_sign_in_at:\n- 2019-02-04 09:12:26.474201000 Z\n- &1 2019-02-04 09:21:36.789329000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-06 20:33:49.445798884 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3187424239\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984544820\n mask_addr: 4294967295\nsign_in_count:\n- 2\n- 3\n 6 \N 177.228.138.52 911ac7c7-03bf-4706-a0c9-8d949bf99ecb 2019-02-06 20:33:49.457014 1218 6 User \N \N 6 User \N update ---\nunique_session_id:\n- xYsM_kb-gzSgXEsAgy_M\n- XH5wM7tAHyYUfc8BZtZk\n 7 \N 177.228.138.52 911ac7c7-03bf-4706-a0c9-8d949bf99ecb 2019-02-06 20:33:49.478731 1219 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-02-02 04:28:02.056332000 Z\n- &1 2019-02-04 18:37:24.326627000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-06 20:43:41.016523804 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542565\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984544284\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984544284\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984544820\n mask_addr: 4294967295\nsign_in_count:\n- 4\n- 5\n 10 \N 177.228.138.52 f388a334-1475-40ef-938b-e8be2cd719e3 2019-02-06 20:43:41.028407 1220 5 User \N \N 5 User \N update ---\nunique_session_id:\n- Hpic2UKQxZCySECA9ZHs\n- uL2CbVoZZTcXsGqug14z\n 11 \N 177.228.138.52 f388a334-1475-40ef-938b-e8be2cd719e3 2019-02-06 20:43:41.05247 1221 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-05 21:24:26.135400000 Z\n- &1 2019-02-06 01:16:28.149073000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-06 20:51:22.978724237 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3361511426\n mask_addr: 4294967295\nsign_in_count:\n- 12\n- 13\n 26 \N 200.92.152.2 045a3825-c491-46e5-82ec-2fdf02ed1821 2019-02-06 20:51:22.988989 1222 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Pp66hLhZ8BJZyze1FruJ\n- wNdLr8SKqsAfMavcyjnG\n 27 \N 200.92.152.2 045a3825-c491-46e5-82ec-2fdf02ed1821 2019-02-06 20:51:23.008896 1223 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-06 01:16:28.149073000 Z\n- &1 2019-02-06 20:51:22.978724000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-06 21:12:51.913379408 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3361511426\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3361511426\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542318\n mask_addr: 4294967295\nsign_in_count:\n- 13\n- 14\n 28 \N 177.228.128.110 ce6b9bbd-5624-4b1f-9a99-946cb3938c97 2019-02-06 21:12:51.922404 1224 1 User \N \N 1 User \N update ---\nunique_session_id:\n- wNdLr8SKqsAfMavcyjnG\n- RNw4qWayCsVbZupSayS7\n 29 \N 177.228.128.110 ce6b9bbd-5624-4b1f-9a99-946cb3938c97 2019-02-06 21:12:51.93994 1225 9 Customer \N \N 1 User \N create ---\nnick_name: Chemy\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente Chemy fue registrado. 177.228.128.110 a27cd22e-d380-4a91-affd-32fa60e4e28f 2019-02-06 21:13:13.899317 1226 9 Customer \N \N 1 User \N update ---\nstatus:\n- active\n- 0\n 2 \N 177.228.128.110 12efd78e-df33-474a-8606-f9665535a505 2019-02-06 21:13:18.704258 1227 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-06 01:00:40.628863000 Z\n- &1 2019-02-06 17:19:37.078834000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-06 21:29:37.270655787 Z\nsign_in_count:\n- 4\n- 5\n 13 \N 189.186.39.120 f8e1e611-91bd-46f0-bb53-c8dcdc016728 2019-02-06 21:29:37.278482 1228 2 User \N \N 2 User \N update ---\nunique_session_id:\n- QxQ_mMj4uzfwmbVfHT5r\n- aiaeSFdKX519_5RXznWs\n 14 \N 189.186.39.120 f8e1e611-91bd-46f0-bb53-c8dcdc016728 2019-02-06 21:29:37.303881 1229 37 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 5\namount: !ruby/object:BigDecimal 18:0.58534E3\ntax: !ruby/object:BigDecimal 18:0.9365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.67899E3\nstatus: 0\ndate_sale: 2019-02-06\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-15\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 e95490a4-20b8-45f6-95c7-c1a1bc815e85 2019-02-06 21:49:55.782622 1230 280 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.39.120 e95490a4-20b8-45f6-95c7-c1a1bc815e85 2019-02-06 21:49:55.82106 1231 37 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 321cf92d-bf98-46c7-9c74-4661399a7cb7 2019-02-06 21:53:53.485927 1232 36 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 5\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.679E3\nmove_type: '1'\nsale_id: 37\ncardnumber: 9045\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-15\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-15 189.186.39.120 321cf92d-bf98-46c7-9c74-4661399a7cb7 2019-02-06 21:53:53.517712 1233 37 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 5\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 23\ncardnumber: 9045\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-4 189.186.39.120 126d0f1d-2679-49a7-9d45-8b718087adbc 2019-02-06 21:56:06.309256 1234 23 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.39.120 0417549d-ff8a-4d2c-96cd-c400c74824f1 2019-02-06 21:56:08.02312 1235 38 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 5\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 36\ncardnumber: 9045\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-14 189.186.39.120 266f841d-44fc-422e-9d75-5c8d861d9312 2019-02-06 22:14:43.898562 1236 36 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.39.120 6c79a0ab-cd8a-4e2c-90f3-aca38820d0d9 2019-02-06 22:14:46.456568 1237 38 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 4\namount: !ruby/object:BigDecimal 18:0.66293E3\ntax: !ruby/object:BigDecimal 18:0.10607E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.769E3\nstatus: 0\ndate_sale: 2019-02-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-21\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 fd851ef6-a13c-4404-98f5-957c7f8b26b5 2019-02-06 23:42:24.05473 1238 132 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 fd851ef6-a13c-4404-98f5-957c7f8b26b5 2019-02-06 23:42:24.097191 1239 38 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 f3f16c02-545a-4fa8-8f46-bc933a1a1d25 2019-02-06 23:43:01.269064 4282 293 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 31cecb76-3f7b-4249-938b-e87d004eb137 2019-03-25 17:45:11.941987 1240 39 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 4\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.769E3\nmove_type: '1'\nsale_id: 38\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-21\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.231E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-21 189.186.39.120 f3f16c02-545a-4fa8-8f46-bc933a1a1d25 2019-02-06 23:43:01.298124 1241 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-06 02:43:50.470624000 Z\n- &1 2019-02-06 20:09:53.768702000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-07 00:18:27.453164374 Z\nsign_in_count:\n- 4\n- 5\n 10 \N 189.186.39.120 9f112d2d-d76c-471a-aa0c-2112bad8b56b 2019-02-07 00:18:27.474824 1242 9 User \N \N 9 User \N update ---\nunique_session_id:\n- Z9L5s5qhhjw7Dk2ZkQaa\n- jiP-T3BnF675rBRsP82n\n 11 \N 189.186.39.120 9f112d2d-d76c-471a-aa0c-2112bad8b56b 2019-02-07 00:18:27.510234 1243 39 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 4\namount: !ruby/object:BigDecimal 18:0.209137E4\ntax: !ruby/object:BigDecimal 18:0.33463E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2426E4\nstatus: 0\ndate_sale: 2019-02-06\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-22\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 1c68fbe8-ad93-42ec-85d3-35b61ca331ea 2019-02-07 00:23:10.50261 1244 143 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.39.120 1c68fbe8-ad93-42ec-85d3-35b61ca331ea 2019-02-07 00:23:10.53633 1245 133 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 3 \N 189.186.39.120 1c68fbe8-ad93-42ec-85d3-35b61ca331ea 2019-02-07 00:23:10.581863 1246 150 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 1c68fbe8-ad93-42ec-85d3-35b61ca331ea 2019-02-07 00:23:10.621553 1247 152 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 1c68fbe8-ad93-42ec-85d3-35b61ca331ea 2019-02-07 00:23:10.660647 1248 39 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 7d2ece9c-6329-43d2-a5d8-fb929d6db382 2019-02-07 00:25:49.517061 1249 40 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 4\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 39\ncardnumber: 3620\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-22\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-22 189.186.39.120 7d2ece9c-6329-43d2-a5d8-fb929d6db382 2019-02-07 00:25:49.553288 1250 40 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 4\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 39\ncardnumber: 3620\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-22\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.39.120 69fa547a-3f7d-40fe-84ef-94f4ab2e596d 2019-02-07 00:25:59.563825 1251 41 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 4\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2426E4\nmove_type: '1'\nsale_id: 39\ncardnumber: 3620\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-22\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-22 189.186.39.120 32c6f94b-efbc-4e77-b9b7-25e0d9016e8a 2019-02-07 00:26:30.453794 1252 40 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 4\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-02-06\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-23\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 1ade18e1-3f5e-4cec-8ac6-2d3f309e0631 2019-02-07 00:35:27.390834 1253 177 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.39.120 1ade18e1-3f5e-4cec-8ac6-2d3f309e0631 2019-02-07 00:35:27.462163 1254 40 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 fb9ce866-fb8c-40fd-bcb4-ac55f552e91a 2019-02-07 00:35:44.509324 1255 42 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 4\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 40\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-23\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-23 189.186.39.120 fb9ce866-fb8c-40fd-bcb4-ac55f552e91a 2019-02-07 00:35:44.546287 1256 41 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 5\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-02-06\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-16\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 bd26d157-67a3-47e8-9a7a-28bbef5e8744 2019-02-07 00:41:45.233782 1257 419 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 bd26d157-67a3-47e8-9a7a-28bbef5e8744 2019-02-07 00:41:45.279051 1258 41 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 3e16bff9-b119-4d7a-84a1-a03ab66c34ea 2019-02-07 00:42:30.466605 1259 43 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 5\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 41\ncardnumber: 3620\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-16\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-16 189.186.39.120 3e16bff9-b119-4d7a-84a1-a03ab66c34ea 2019-02-07 00:42:30.50729 1260 42 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 4\namount: !ruby/object:BigDecimal 18:0.44394E3\ntax: !ruby/object:BigDecimal 18:0.5506E2\ndiscount: !ruby/object:BigDecimal 18:0.998E2\ntotal: !ruby/object:BigDecimal 18:0.3992E3\nstatus: 0\ndate_sale: 2019-02-06\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-24\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 a3dcd967-3ad1-48a9-90bb-60bdab270e4b 2019-02-07 00:46:04.048715 1261 78 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.39.120 a3dcd967-3ad1-48a9-90bb-60bdab270e4b 2019-02-07 00:46:04.088716 1263 44 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 4\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.399E3\nmove_type: '1'\nsale_id: 42\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-24\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.399E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-24 189.186.39.120 9d2aa85e-1067-46fb-b9e3-8568e4d2c0c2 2019-02-07 00:46:10.41943 1264 44 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 4\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 42\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-24\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.399E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.39.120 e92837b8-5cd3-4fb3-b1b3-793a1a57d3f3 2019-02-07 00:46:13.163334 1265 45 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 4\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3992E3\nmove_type: '1'\nsale_id: 42\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-24\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3992E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-24 189.186.39.120 7409d2e3-ce78-4294-84b5-dbd9abe84eab 2019-02-07 00:46:21.117794 1266 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-06 00:34:13.920829000 Z\n- &1 2019-02-06 00:41:13.736931000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-07 00:48:14.973415778 Z\nsign_in_count:\n- 4\n- 5\n 10 \N 189.186.39.120 0b3765ef-37b3-4754-bbec-e818ee19d810 2019-02-07 00:48:14.981828 1267 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tsLvybPrsRuZXqWY-vTq\n- d3DwT4_z9sSsxJk_iEuK\n 11 \N 189.186.39.120 0b3765ef-37b3-4754-bbec-e818ee19d810 2019-02-07 00:48:15.002504 1268 43 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 5\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-02-06\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-17\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 211012ae-70e4-47ae-b5fa-693ac679f54c 2019-02-07 00:49:17.291365 1269 319 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 211012ae-70e4-47ae-b5fa-693ac679f54c 2019-02-07 00:49:17.331357 1270 43 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 84f7a2cf-9645-49f3-8270-0b1ae32e77d5 2019-02-07 00:49:31.903617 1271 46 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 5\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 43\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-17\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-17 189.186.39.120 84f7a2cf-9645-49f3-8270-0b1ae32e77d5 2019-02-07 00:49:31.938897 1272 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-06 00:41:13.736931000 Z\n- &1 2019-02-07 00:48:14.973415000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-07 01:23:51.926279766 Z\nsign_in_count:\n- 5\n- 6\n 12 \N 189.186.39.120 81e99389-48cb-4e82-b108-d999aa98a3dc 2019-02-07 01:23:51.956842 1273 4 User \N \N 4 User \N update ---\nunique_session_id:\n- d3DwT4_z9sSsxJk_iEuK\n- spabb7DbgF6ogQUGaoHo\n 13 \N 189.186.39.120 81e99389-48cb-4e82-b108-d999aa98a3dc 2019-02-07 01:23:51.983634 1274 445 Product \N \N 4 User \N create ---\nsku: BOL-445\nname: AMIK227\ndescription: BACK PACK CLOE\nprice_base: !ruby/object:BigDecimal 18:0.9995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1999E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-445 fue creado. 189.186.39.120 797477ba-50d3-4bc5-a0f6-560b7b240487 2019-02-07 01:30:38.553749 1275 445 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000445'\n 2 \N 189.186.39.120 797477ba-50d3-4bc5-a0f6-560b7b240487 2019-02-07 01:30:38.602828 1276 1 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: \npurchase_code: CEN-C-1\namount: !ruby/object:BigDecimal 18:0.29985E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.29985E4\nobservations: ''\npurchase_date: 2019-02-06\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-1 por $ 2998.5 MXN creada. 189.186.39.120 ee25a891-991a-44f6-b2af-a9280a27af2d 2019-02-07 01:31:12.234882 1277 443 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 445\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: !ruby/object:BigDecimal 27:0.1999E4\nproducts_variant_id: \n 1 \N 189.186.39.120 d592eb03-9a09-43a2-8f63-953be2aa8cf5 2019-02-07 01:32:47.364692 1278 446 Product \N \N 4 User \N create ---\nsku: BOL-446\nname: TUVA589\ndescription: BACK PACK CLOE\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-446 fue creado. 189.186.39.120 51c78529-8fc3-4779-9ff1-01b2ef1798d9 2019-02-07 01:36:18.743699 1279 446 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000446'\n 2 \N 189.186.39.120 51c78529-8fc3-4779-9ff1-01b2ef1798d9 2019-02-07 01:36:18.788189 1280 447 Product \N \N 4 User \N create ---\nsku: BOL-447\nname: TREC601\ndescription: BOLSO\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-447 fue creado. 189.186.39.120 5756255b-7f25-4825-aa40-9b17380baf6b 2019-02-07 01:37:23.775304 1281 447 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000447'\n 2 \N 189.186.39.120 5756255b-7f25-4825-aa40-9b17380baf6b 2019-02-07 01:37:23.815119 1331 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-07 17:13:03.497656000 Z\n- &1 2019-02-08 01:03:09.132834000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-08 17:57:36.939999690 Z\nsign_in_count:\n- 8\n- 9\n 21 \N 189.186.39.120 2f71b89b-fdce-4c51-a3ca-296373678d4e 2019-02-08 17:57:36.946479 1282 2 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: \npurchase_code: CEN-C-2\namount: !ruby/object:BigDecimal 18:0.23985E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.23985E4\nobservations: ''\npurchase_date: 2019-02-06\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-2 por $ 2398.5 MXN creada. 189.186.39.120 c92a4a35-2349-495d-8998-f6e5ae6fe419 2019-02-07 01:39:35.431542 1283 444 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 447\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: !ruby/object:BigDecimal 27:0.1399E4\nproducts_variant_id: \n 1 \N 189.186.39.120 8d4b28b0-d8ab-4e38-98b7-a2775449ac25 2019-02-07 01:41:46.241824 1284 445 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 446\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: !ruby/object:BigDecimal 27:0.1699E4\nproducts_variant_id: \n 1 \N 189.186.39.120 896d415e-403e-4ffe-ab98-8bf10ee9c432 2019-02-07 01:43:04.454926 1285 446 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 444\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: !ruby/object:BigDecimal 27:0.1699E4\nproducts_variant_id: \n 1 \N 189.186.39.120 0cb9d59e-78c5-41a3-a95b-caa98130ca19 2019-02-07 01:43:33.384966 1286 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-06 20:51:22.978724000 Z\n- &1 2019-02-06 21:12:51.913379000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-07 01:48:03.676265725 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3361511426\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542318\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542318\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\nsign_in_count:\n- 14\n- 15\n 30 \N 189.186.39.120 749af0c4-c160-4df0-84cf-bb55773750df 2019-02-07 01:48:03.686977 1287 1 User \N \N 1 User \N update ---\nunique_session_id:\n- RNw4qWayCsVbZupSayS7\n- yqZvxnb1kHJPqyt_ytaL\n 31 \N 189.186.39.120 749af0c4-c160-4df0-84cf-bb55773750df 2019-02-07 01:48:03.709578 1288 1 PosConfig \N \N 1 User \N update ---\nticket_img:\n- !ruby/object:ImageUploader\n model: &13 !ruby/object:PosConfig\n raw_attributes:\n id: '1'\n cancel_partial_payment: '35'\n refund_sale: '15'\n days_cancel_sale: '15'\n days_cancel_purchase: '100'\n tax_percent: '16.0'\n time_zone: Chihuahua\n gain_margin: '100.0'\n ticket_description: "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN, SIN\n \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n reserve_sale_percent: '30.0'\n days_cancel_reserved: '35'\n commission_percent: '1'\n ticket_footer: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN ETIQUETA\n O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img: foto.JPG\n haggle_in_sale_percent: '20'\n enable_haggle: 'true'\n add_iva_to_pre_sales: 'false'\n created_at: '2019-01-28 18:10:20.808419'\n updated_at: &10 2019-02-07 01:53:13.659991306 Z\n ticket_img_file_name: \n ticket_img_content_type: \n ticket_img_file_size: \n ticket_img_updated_at: \n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n cancel_partial_payment: *1\n refund_sale: *1\n days_cancel_sale: *1\n days_cancel_purchase: *1\n tax_percent: &2 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n time_zone: &6 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n gain_margin: *2\n created_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n updated_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n ticket_description: &7 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n days_cancel_reserved: *1\n reserve_sale_percent: &8 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n commission_percent: *1\n ticket_footer: &4 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n ticket_img_file_name: *4\n ticket_img_content_type: *4\n ticket_img_file_size: *1\n ticket_img_updated_at: &12 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n haggle_in_sale_percent: *1\n ticket_img: *4\n enable_haggle: &5 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n add_iva_to_pre_sales: *5\n values:\n id: '1'\n cancel_partial_payment: '35'\n refund_sale: '15'\n days_cancel_sale: '15'\n days_cancel_purchase: '100'\n tax_percent: '16.0'\n time_zone: Chihuahua\n gain_margin: '100.0'\n created_at: '2019-01-28 18:10:20.808419'\n updated_at: '2019-02-06 00:42:24.93149'\n ticket_description: "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN,\n SIN \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n days_cancel_reserved: '35'\n reserve_sale_percent: '30.00'\n commission_percent: '1'\n ticket_footer: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN\n DEVOLUCIONES EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA,\n SIN ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img_file_name: \n ticket_img_content_type: \n ticket_img_file_size: \n ticket_img_updated_at: \n haggle_in_sale_percent: '20'\n ticket_img: IMG_8613.jpg\n enable_haggle: t\n add_iva_to_pre_sales: f\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1'\n type: *1\n value: 1\n cancel_partial_payment: !ruby/object:ActiveRecord::Attribute::FromUser\n name: cancel_partial_payment\n value_before_type_cast: '35'\n type: *1\n value: 35\n refund_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: refund_sale\n value_before_type_cast: '15'\n type: *1\n value: 15\n days_cancel_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_sale\n value_before_type_cast: '15'\n type: *1\n value: 15\n days_cancel_purchase: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_purchase\n value_before_type_cast: '100'\n type: *1\n value: 100\n tax_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: tax_percent\n value_before_type_cast: '16.0'\n type: *2\n value: !ruby/object:BigDecimal 18:0.16E2\n time_zone: !ruby/object:ActiveRecord::Attribute::FromUser\n name: time_zone\n value_before_type_cast: Chihuahua\n type: *6\n value: Chihuahua\n gain_margin: !ruby/object:ActiveRecord::Attribute::FromUser\n name: gain_margin\n value_before_type_cast: '100.0'\n type: *2\n value: !ruby/object:BigDecimal 18:0.1E3\n ticket_description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_description\n value_before_type_cast: "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN,\n SIN \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n type: *7\n value: "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN, SIN \\r\\nTEL.\n 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n reserve_sale_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: reserve_sale_percent\n value_before_type_cast: '30.0'\n type: *8\n value: !ruby/object:BigDecimal 18:0.3E2\n days_cancel_reserved: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_reserved\n value_before_type_cast: '35'\n type: *1\n value: 35\n commission_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: commission_percent\n value_before_type_cast: '1'\n type: *1\n value: 1\n ticket_footer: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_footer\n value_before_type_cast: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n*\n NO APLICAN DEVOLUCIONES EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA\n MERCANCÍA DAÑADA, SIN ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN\n VIGENCIA 30 DÍAS "\n type: *4\n value: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN\n ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_img\n value_before_type_cast: foto.JPG\n type: *4\n value: foto.JPG\n haggle_in_sale_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: haggle_in_sale_percent\n value_before_type_cast: '20'\n type: *1\n value: 20\n enable_haggle: !ruby/object:ActiveRecord::Attribute::FromUser\n name: enable_haggle\n value_before_type_cast: 'true'\n type: *5\n value: true\n add_iva_to_pre_sales: !ruby/object:ActiveRecord::Attribute::FromUser\n name: add_iva_to_pre_sales\n value_before_type_cast: 'false'\n type: *5\n value: false\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-01-28 18:10:20.808419'\n type: *9\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *10\n type: *11\n value: *10\n ticket_img_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_file_name\n value_before_type_cast: \n type: *4\n ticket_img_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_content_type\n value_before_type_cast: \n type: *4\n ticket_img_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_file_size\n value_before_type_cast: \n type: *1\n ticket_img_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_updated_at\n value_before_type_cast: \n type: *12\n new_record: false\n mounted_as: :ticket_img\n versions: &14\n :thumb: &16 !ruby/object:ImageUploader::Uploader55553560\n model: *13\n mounted_as: :ticket_img\n parent_version: &15 !ruby/object:ImageUploader\n model: *13\n mounted_as: :ticket_img\n versions: *14\n storage: &19 !ruby/object:CarrierWave::Storage::File\n uploader: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/IMG_8613.jpg"\n original_filename: \n content_type: \n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *16\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_IMG_8613.jpg"\n original_filename: \n content_type: \n versions: {}\n :medium: &17 !ruby/object:ImageUploader::Uploader55540620\n model: *13\n mounted_as: :ticket_img\n parent_version: *15\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_IMG_8613.jpg"\n original_filename: \n content_type: \n versions: {}\n :small: &18 !ruby/object:ImageUploader::Uploader55535840\n model: *13\n mounted_as: :ticket_img\n parent_version: *15\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_IMG_8613.jpg"\n original_filename: \n content_type: \n versions: {}\n storage: *19\n file: *20\n- foto.JPG\n 4 Se actualizaron los parámetros generales 189.186.39.120 fdcb826b-5d81-4c02-89d1-490f9cfe3fb4 2019-02-07 01:53:13.726431 1289 1 Pointsale \N \N 1 User \N update ---\nimg_pointsale:\n- !ruby/object:ImageUploader\n model: &10 !ruby/object:Pointsale\n raw_attributes:\n id: '1'\n name: SUO\n address: 'MORELOS #297 LOC. 4 CENTRO'\n notes: "MORELOS #297 LOC. 4\\r\\nCENTRO C.P 80000\\r\\nCULIACAN, SIN\\r\\nTEL.6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nINSTAGRAM: SUO BOUTIQUE\\r\\n"\n prefix: PV1\n img_pointsale: foto.JPG\n ticket_footer: "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO CAMBIOS NI DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS\\r\\n* NO SE REGRESA EFECTIVO POR NINGÚN MOTIVO\\r\\n*NO\n SE ACEPTA MERCANCÍA EN MAL ESTADO Y SIN ETIQUETA "\n haggle_percent: '100.0'\n tax_regime: '601'\n business_name: Punto de venta 1\n federal_taxpayer_registration: PVV010101PVV\n postal_code: '85000'\n status: '1'\n created_at: '2019-02-01 04:44:58.201443'\n updated_at: &7 2019-02-07 01:54:16.288814641 Z\n img_pointsale_file_name: \n img_pointsale_content_type: \n img_pointsale_file_size: \n img_pointsale_updated_at: \n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &2 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n name: &1 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n address: *1\n notes: &4 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n status: *2\n created_at: &6 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n updated_at: &8 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n prefix: *4\n img_pointsale_file_name: *1\n img_pointsale_content_type: *1\n img_pointsale_file_size: *2\n img_pointsale_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n ticket_footer: *1\n img_pointsale: *1\n haggle_percent: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n federal_taxpayer_registration: *1\n business_name: *1\n tax_regime: *2\n postal_code: *2\n values:\n id: '1'\n name: SUO\n address: 'MORELOS #297 LOC. 4 CENTRO'\n notes: "MORELOS #297 LOC. 4\\r\\nCENTRO C.P 80000\\r\\nCULIACAN, SIN\\r\\nTEL.6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nINSTAGRAM: SUO BOUTIQUE\\r\\n"\n status: '1'\n created_at: '2019-02-01 04:44:58.201443'\n updated_at: '2019-02-06 20:33:14.562688'\n prefix: PV1\n img_pointsale_file_name: \n img_pointsale_content_type: \n img_pointsale_file_size: \n img_pointsale_updated_at: \n ticket_footer: "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO CAMBIOS NI\n DEVOLUCIONES EN PROMOCIONES Y APARTADOS\\r\\n* NO SE REGRESA EFECTIVO POR\n NINGÚN MOTIVO\\r\\n*NO SE ACEPTA MERCANCÍA EN MAL ESTADO Y SIN ETIQUETA "\n img_pointsale: IMG_8613.jpg\n haggle_percent: '100.00'\n federal_taxpayer_registration: PVV010101PVV\n business_name: Punto de venta 1\n tax_regime: '601'\n postal_code: '85000'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1'\n type: *2\n value: 1\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: SUO\n type: *1\n value: SUO\n address: !ruby/object:ActiveRecord::Attribute::FromUser\n name: address\n value_before_type_cast: 'MORELOS #297 LOC. 4 CENTRO'\n type: *1\n value: 'MORELOS #297 LOC. 4 CENTRO'\n notes: !ruby/object:ActiveRecord::Attribute::FromUser\n name: notes\n value_before_type_cast: "MORELOS #297 LOC. 4\\r\\nCENTRO C.P 80000\\r\\nCULIACAN,\n SIN\\r\\nTEL.6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nINSTAGRAM:\n SUO BOUTIQUE\\r\\n"\n type: *4\n value: "MORELOS #297 LOC. 4\\r\\nCENTRO C.P 80000\\r\\nCULIACAN, SIN\\r\\nTEL.6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nINSTAGRAM: SUO BOUTIQUE\\r\\n"\n prefix: !ruby/object:ActiveRecord::Attribute::FromUser\n name: prefix\n value_before_type_cast: PV1\n type: *4\n value: PV1\n img_pointsale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_pointsale\n value_before_type_cast: foto.JPG\n type: *1\n value: foto.JPG\n ticket_footer: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_footer\n value_before_type_cast: "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO\n CAMBIOS NI DEVOLUCIONES EN PROMOCIONES Y APARTADOS\\r\\n* NO SE REGRESA\n EFECTIVO POR NINGÚN MOTIVO\\r\\n*NO SE ACEPTA MERCANCÍA EN MAL ESTADO\n Y SIN ETIQUETA "\n type: *1\n value: "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO CAMBIOS NI DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS\\r\\n* NO SE REGRESA EFECTIVO POR NINGÚN MOTIVO\\r\\n*NO\n SE ACEPTA MERCANCÍA EN MAL ESTADO Y SIN ETIQUETA "\n haggle_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: haggle_percent\n value_before_type_cast: '100.0'\n type: *5\n value: !ruby/object:BigDecimal 18:0.1E3\n tax_regime: !ruby/object:ActiveRecord::Attribute::FromUser\n name: tax_regime\n value_before_type_cast: '601'\n type: *2\n value: 601\n business_name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: business_name\n value_before_type_cast: Punto de venta 1\n type: *1\n value: Punto de venta 1\n federal_taxpayer_registration: !ruby/object:ActiveRecord::Attribute::FromUser\n name: federal_taxpayer_registration\n value_before_type_cast: PVV010101PVV\n type: *1\n value: PVV010101PVV\n postal_code: !ruby/object:ActiveRecord::Attribute::FromUser\n name: postal_code\n value_before_type_cast: '85000'\n type: *2\n value: 85000\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *2\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-01 04:44:58.201443'\n type: *6\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *7\n type: *8\n value: *7\n img_pointsale_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_pointsale_file_name\n value_before_type_cast: \n type: *1\n img_pointsale_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_pointsale_content_type\n value_before_type_cast: \n type: *1\n img_pointsale_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_pointsale_file_size\n value_before_type_cast: \n type: *2\n img_pointsale_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_pointsale_updated_at\n value_before_type_cast: \n type: *9\n new_record: false\n mounted_as: :img_pointsale\n versions: &11\n :thumb: &13 !ruby/object:ImageUploader::Uploader55553560\n model: *10\n mounted_as: :img_pointsale\n parent_version: &12 !ruby/object:ImageUploader\n model: *10\n mounted_as: :img_pointsale\n versions: *11\n storage: &16 !ruby/object:CarrierWave::Storage::File\n uploader: *12\n file: &17 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/IMG_8613.jpg"\n original_filename: \n content_type: \n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *13\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_IMG_8613.jpg"\n original_filename: \n content_type: \n versions: {}\n :medium: &14 !ruby/object:ImageUploader::Uploader55540620\n model: *10\n mounted_as: :img_pointsale\n parent_version: *12\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *14\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_IMG_8613.jpg"\n original_filename: \n content_type: \n versions: {}\n :small: &15 !ruby/object:ImageUploader::Uploader55535840\n model: *10\n mounted_as: :img_pointsale\n parent_version: *12\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *15\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_IMG_8613.jpg"\n original_filename: \n content_type: \n versions: {}\n storage: *16\n file: *17\n- foto.JPG\n 8 \N 189.186.39.120 70f319c0-6a03-4581-95c6-ae463f1b665f 2019-02-07 01:54:16.354161 1290 1 PosConfig \N \N 1 User \N update ---\nticket_img:\n- !ruby/object:ImageUploader\n model: &13 !ruby/object:PosConfig\n raw_attributes:\n id: '1'\n cancel_partial_payment: '35'\n refund_sale: '15'\n days_cancel_sale: '15'\n days_cancel_purchase: '100'\n tax_percent: '16.0'\n time_zone: Chihuahua\n gain_margin: '100.0'\n ticket_description: "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN, SIN\n \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n reserve_sale_percent: '30.0'\n days_cancel_reserved: '35'\n commission_percent: '1'\n ticket_footer: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN ETIQUETA\n O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img: Sin_título.png\n haggle_in_sale_percent: '20'\n enable_haggle: 'true'\n add_iva_to_pre_sales: 'false'\n created_at: '2019-01-28 18:10:20.808419'\n updated_at: &10 2019-02-07 02:01:24.027779782 Z\n ticket_img_file_name: \n ticket_img_content_type: \n ticket_img_file_size: \n ticket_img_updated_at: \n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n cancel_partial_payment: *1\n refund_sale: *1\n days_cancel_sale: *1\n days_cancel_purchase: *1\n tax_percent: &2 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n time_zone: &6 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n gain_margin: *2\n created_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n updated_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n ticket_description: &7 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n days_cancel_reserved: *1\n reserve_sale_percent: &8 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n commission_percent: *1\n ticket_footer: &4 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n ticket_img_file_name: *4\n ticket_img_content_type: *4\n ticket_img_file_size: *1\n ticket_img_updated_at: &12 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n haggle_in_sale_percent: *1\n ticket_img: *4\n enable_haggle: &5 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n add_iva_to_pre_sales: *5\n values:\n id: '1'\n cancel_partial_payment: '35'\n refund_sale: '15'\n days_cancel_sale: '15'\n days_cancel_purchase: '100'\n tax_percent: '16.0'\n time_zone: Chihuahua\n gain_margin: '100.0'\n created_at: '2019-01-28 18:10:20.808419'\n updated_at: '2019-02-07 01:53:13.659991'\n ticket_description: "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN,\n SIN \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n days_cancel_reserved: '35'\n reserve_sale_percent: '30.00'\n commission_percent: '1'\n ticket_footer: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN\n DEVOLUCIONES EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA,\n SIN ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img_file_name: \n ticket_img_content_type: \n ticket_img_file_size: \n ticket_img_updated_at: \n haggle_in_sale_percent: '20'\n ticket_img: foto.JPG\n enable_haggle: t\n add_iva_to_pre_sales: f\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1'\n type: *1\n value: 1\n cancel_partial_payment: !ruby/object:ActiveRecord::Attribute::FromUser\n name: cancel_partial_payment\n value_before_type_cast: '35'\n type: *1\n value: 35\n refund_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: refund_sale\n value_before_type_cast: '15'\n type: *1\n value: 15\n days_cancel_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_sale\n value_before_type_cast: '15'\n type: *1\n value: 15\n days_cancel_purchase: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_purchase\n value_before_type_cast: '100'\n type: *1\n value: 100\n tax_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: tax_percent\n value_before_type_cast: '16.0'\n type: *2\n value: !ruby/object:BigDecimal 18:0.16E2\n time_zone: !ruby/object:ActiveRecord::Attribute::FromUser\n name: time_zone\n value_before_type_cast: Chihuahua\n type: *6\n value: Chihuahua\n gain_margin: !ruby/object:ActiveRecord::Attribute::FromUser\n name: gain_margin\n value_before_type_cast: '100.0'\n type: *2\n value: !ruby/object:BigDecimal 18:0.1E3\n ticket_description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_description\n value_before_type_cast: "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN,\n SIN \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n type: *7\n value: "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN, SIN \\r\\nTEL.\n 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n reserve_sale_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: reserve_sale_percent\n value_before_type_cast: '30.0'\n type: *8\n value: !ruby/object:BigDecimal 18:0.3E2\n days_cancel_reserved: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_reserved\n value_before_type_cast: '35'\n type: *1\n value: 35\n commission_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: commission_percent\n value_before_type_cast: '1'\n type: *1\n value: 1\n ticket_footer: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_footer\n value_before_type_cast: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n*\n NO APLICAN DEVOLUCIONES EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA\n MERCANCÍA DAÑADA, SIN ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN\n VIGENCIA 30 DÍAS "\n type: *4\n value: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN\n ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_img\n value_before_type_cast: Sin_título.png\n type: *4\n value: Sin_título.png\n haggle_in_sale_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: haggle_in_sale_percent\n value_before_type_cast: '20'\n type: *1\n value: 20\n enable_haggle: !ruby/object:ActiveRecord::Attribute::FromUser\n name: enable_haggle\n value_before_type_cast: 'true'\n type: *5\n value: true\n add_iva_to_pre_sales: !ruby/object:ActiveRecord::Attribute::FromUser\n name: add_iva_to_pre_sales\n value_before_type_cast: 'false'\n type: *5\n value: false\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-01-28 18:10:20.808419'\n type: *9\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *10\n type: *11\n value: *10\n ticket_img_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_file_name\n value_before_type_cast: \n type: *4\n ticket_img_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_content_type\n value_before_type_cast: \n type: *4\n ticket_img_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_file_size\n value_before_type_cast: \n type: *1\n ticket_img_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_updated_at\n value_before_type_cast: \n type: *12\n new_record: false\n mounted_as: :ticket_img\n versions: &14\n :thumb: &16 !ruby/object:ImageUploader::Uploader55553560\n model: *13\n mounted_as: :ticket_img\n parent_version: &15 !ruby/object:ImageUploader\n model: *13\n mounted_as: :ticket_img\n versions: *14\n storage: &19 !ruby/object:CarrierWave::Storage::File\n uploader: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/foto.JPG"\n original_filename: \n content_type: \n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *16\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_foto.JPG"\n original_filename: \n content_type: \n versions: {}\n :medium: &17 !ruby/object:ImageUploader::Uploader55540620\n model: *13\n mounted_as: :ticket_img\n parent_version: *15\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_foto.JPG"\n original_filename: \n content_type: \n versions: {}\n :small: &18 !ruby/object:ImageUploader::Uploader55535840\n model: *13\n mounted_as: :ticket_img\n parent_version: *15\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_foto.JPG"\n original_filename: \n content_type: \n versions: {}\n storage: *19\n file: *20\n- Sin_título.png\n 5 Se actualizaron los parámetros generales 189.186.39.120 0cd72110-e774-4fca-9e79-b1616090f077 2019-02-07 02:01:24.08384 1291 1 PosConfig \N \N 1 User \N update --- {}\n 6 Se actualizaron los parámetros generales 189.186.39.120 28b03570-f6a3-4725-ae3c-8b81fecb2111 2019-02-07 02:13:48.026505 1292 447 Product \N \N 1 User \N update --- {}\n 3 El producto BOL-447 fue modificado. 189.186.39.120 2226ded1-df4d-4851-9da7-f6a20504069a 2019-02-07 02:30:39.764938 1293 448 Product \N \N 1 User \N create ---\nsku: BLU-448\nname: Prueba\ndescription: Prueba\nprice_base: !ruby/object:BigDecimal 18:0.5E2\nprice_sale: !ruby/object:BigDecimal 18:0.1E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170712728'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-448 fue creado. 189.186.39.120 6f20119b-5cc6-40ae-b2c6-a99b7d443b74 2019-02-07 02:32:06.194278 1294 447 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 448\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: !ruby/object:BigDecimal 27:0.1E3\nproducts_variant_id: \n 1 \N 189.186.39.120 6e212a4a-bacc-4410-b396-931148ee5a1e 2019-02-07 02:32:59.589274 1295 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-06 17:19:37.078834000 Z\n- &1 2019-02-06 21:29:37.270655000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-07 02:33:50.799358479 Z\nsign_in_count:\n- 5\n- 6\n 15 \N 189.186.39.120 d53d33fc-8b8d-42d2-876c-953660db851f 2019-02-07 02:33:50.806397 1296 2 User \N \N 2 User \N update ---\nunique_session_id:\n- aiaeSFdKX519_5RXznWs\n- 1QVbryngt5rHHA6jJTdS\n 16 \N 189.186.39.120 d53d33fc-8b8d-42d2-876c-953660db851f 2019-02-07 02:33:50.823713 1297 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-06 21:12:51.913379000 Z\n- &1 2019-02-07 01:48:03.676265000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-07 02:37:19.701042291 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984542318\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\nsign_in_count:\n- 15\n- 16\n 32 \N 189.186.39.120 36a8d7e6-de43-4579-a728-7067eec96306 2019-02-07 02:37:19.709025 1298 1 User \N \N 1 User \N update ---\nunique_session_id:\n- yqZvxnb1kHJPqyt_ytaL\n- dtVxECNs9_oZxB_scZuX\n 33 \N 189.186.39.120 36a8d7e6-de43-4579-a728-7067eec96306 2019-02-07 02:37:19.726036 1299 448 Product \N \N 1 User \N update ---\nstatus:\n- active\n- 0\n 2 El producto Prueba fue eliminado. 189.186.39.120 4b0238ef-c3bc-4165-b9eb-5fd4d2cabb95 2019-02-07 02:37:45.006742 1300 1 Transfer \N \N 1 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-02-06\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.39.120 dd22f962-ef04-4186-b42e-c3470fba1109 2019-02-07 02:39:05.16708 1301 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-06 20:09:53.768702000 Z\n- &1 2019-02-07 00:18:27.453164000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-07 02:40:49.730857962 Z\nsign_in_count:\n- 5\n- 6\n 12 \N 189.186.39.120 52c19c5e-9413-4eee-b0fb-392ceaaa70b8 2019-02-07 02:40:49.737396 1302 9 User \N \N 9 User \N update ---\nunique_session_id:\n- jiP-T3BnF675rBRsP82n\n- eXQRyzNDyqeLRy-59paQ\n 13 \N 189.186.39.120 52c19c5e-9413-4eee-b0fb-392ceaaa70b8 2019-02-07 02:40:49.752831 1303 1 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-02-06\n 2 Se dio entrada a traspaso de Almacen central a SUO 189.186.39.120 9d24edd9-d536-43df-9dff-9eafaa377d14 2019-02-07 02:41:34.154133 1304 448 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 6\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.8E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.39.120 9d24edd9-d536-43df-9dff-9eafaa377d14 2019-02-07 02:41:34.19461 1305 6 Product \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 3 El producto SHO-0007 fue eliminado. 189.186.39.120 906c98a0-7c5f-4c80-b8d4-104cff5671e7 2019-02-07 02:43:30.660262 1332 2 User \N \N 2 User \N update ---\nunique_session_id:\n- zmXwviACH88vVM6k_yTN\n- cDXyJfkvrqnN14tCuMLo\n 22 \N 189.186.39.120 2f71b89b-fdce-4c51-a3ca-296373678d4e 2019-02-08 17:57:36.963802 1333 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-07 00:48:14.973415000 Z\n- &1 2019-02-07 01:23:51.926279000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-08 18:01:10.580253536 Z\nsign_in_count:\n- 6\n- 7\n 14 \N 189.186.39.120 b49a786b-cd62-41b2-9c2a-19c8ff5b2e9b 2019-02-08 18:01:10.58927 1306 3 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 4\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.72902E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.3756E4\ncash_fund: !ruby/object:BigDecimal 27:0.11341999999999998E4\nphysical_cash: !ruby/object:BigDecimal 18:0.48902E4\nobservations: 'FALTA ELIMINAR VENTA DUPLICADA '\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.39.120 e2675b1b-6029-4e6d-b22a-1242836cc2d3 2019-02-07 02:58:45.355498 1307 4 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.39.120 e2675b1b-6029-4e6d-b22a-1242836cc2d3 2019-02-07 02:58:45.377567 1308 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-06 01:24:59.391447000 Z\n- &1 2019-02-06 20:14:39.989437000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-07 03:00:05.119501779 Z\nsign_in_count:\n- 4\n- 5\n 10 \N 189.186.39.120 504b9981-cbec-43e7-85e6-f6194c528f77 2019-02-07 03:00:05.128761 1309 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ZiTBs5dtRWuLbDxrrXDD\n- LJSaQioq58tu2T8wGz3d\n 11 \N 189.186.39.120 504b9981-cbec-43e7-85e6-f6194c528f77 2019-02-07 03:00:05.148051 1310 4 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 5\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.3644E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.1368E4\ncash_fund: !ruby/object:BigDecimal 18:0.945E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2313E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.39.120 f08f9ee3-2855-4606-82ea-3ae67f4825a6 2019-02-07 03:03:19.163642 1311 5 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.39.120 f08f9ee3-2855-4606-82ea-3ae67f4825a6 2019-02-07 03:03:19.181706 1312 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-02-04 18:37:24.326627000 Z\n- &1 2019-02-06 20:43:41.016523000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-07 06:10:28.321365686 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984544284\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984544820\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984544820\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3187424239\n mask_addr: 4294967295\nsign_in_count:\n- 5\n- 6\n 12 \N 189.252.59.239 a5b7cd67-8f4f-484c-8aac-9eeb03c1aa60 2019-02-07 06:10:28.345438 1313 5 User \N \N 5 User \N update ---\nunique_session_id:\n- uL2CbVoZZTcXsGqug14z\n- 1SoU4g7C9oNg38wHhmsc\n 13 \N 189.252.59.239 a5b7cd67-8f4f-484c-8aac-9eeb03c1aa60 2019-02-07 06:10:28.371408 1314 6 User \N \N 6 User \N update ---\nlast_sign_in_at:\n- 2019-02-04 09:21:36.789329000 Z\n- &1 2019-02-06 20:33:49.445798000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-07 06:46:03.005921861 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3187424239\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984544820\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984544820\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3187424239\n mask_addr: 4294967295\nsign_in_count:\n- 3\n- 4\n 8 \N 189.252.59.239 4910a87b-f2ae-40a2-859e-08f5f9e4af87 2019-02-07 06:46:03.035235 1315 6 User \N \N 6 User \N update ---\nunique_session_id:\n- XH5wM7tAHyYUfc8BZtZk\n- izZGohh2zgdDH7C-19YH\n 9 \N 189.252.59.239 4910a87b-f2ae-40a2-859e-08f5f9e4af87 2019-02-07 06:46:03.064928 1316 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-02-06 20:43:41.016523000 Z\n- &1 2019-02-07 06:10:28.321365000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-07 07:43:35.918167112 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984544820\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3187424239\n mask_addr: 4294967295\nsign_in_count:\n- 6\n- 7\n 14 \N 189.252.59.239 a4eb0bc5-9f3a-4d09-a945-c0e32f972cd8 2019-02-07 07:43:35.957782 1317 5 User \N \N 5 User \N update ---\nunique_session_id:\n- 1SoU4g7C9oNg38wHhmsc\n- tFaRvaop4oZdw3mg3_-V\n 15 \N 189.252.59.239 a4eb0bc5-9f3a-4d09-a945-c0e32f972cd8 2019-02-07 07:43:35.98495 1318 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-06 21:29:37.270655000 Z\n- &1 2019-02-07 02:33:50.799358000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-07 17:13:03.497656641 Z\nsign_in_count:\n- 6\n- 7\n 17 \N 189.186.39.120 804e2d83-f1af-466f-8a68-3ec1a8460862 2019-02-07 17:13:03.542793 1319 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 1QVbryngt5rHHA6jJTdS\n- opKtHq895BssJpWMVyL2\n 18 \N 189.186.39.120 804e2d83-f1af-466f-8a68-3ec1a8460862 2019-02-07 17:13:03.573615 1320 6 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.635E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 635.0 189.186.39.120 45854f44-011e-4d96-8b86-b515cf50c2b7 2019-02-07 18:44:17.127854 1321 7 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.921E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 921.0 189.186.39.120 d3566df2-941d-43a1-a9d4-a514e354b780 2019-02-07 19:48:30.512364 1322 47 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 6\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 14\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-12 189.186.39.120 06be0c5e-4ad4-42f7-b5ea-6de7166c7932 2019-02-07 21:57:30.205574 1323 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-07 02:33:50.799358000 Z\n- &1 2019-02-07 17:13:03.497656000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-08 01:03:09.132834674 Z\nsign_in_count:\n- 7\n- 8\n 19 \N 189.186.39.120 ea1d52f8-56d2-4d47-a449-23cc7f3f673f 2019-02-08 01:03:09.163721 1324 2 User \N \N 2 User \N update ---\nunique_session_id:\n- opKtHq895BssJpWMVyL2\n- zmXwviACH88vVM6k_yTN\n 20 \N 189.186.39.120 ea1d52f8-56d2-4d47-a449-23cc7f3f673f 2019-02-08 01:03:09.190499 1325 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-07 01:48:03.676265000 Z\n- &1 2019-02-07 02:37:19.701042000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-08 01:06:24.719792348 Z\nsign_in_count:\n- 16\n- 17\n 34 \N 189.186.39.120 34d6ee81-0549-4378-9327-55e88fdeabfe 2019-02-08 01:06:24.728392 1326 1 User \N \N 1 User \N update ---\nunique_session_id:\n- dtVxECNs9_oZxB_scZuX\n- Xsae6xyy2cdsex--vqMt\n 35 \N 189.186.39.120 34d6ee81-0549-4378-9327-55e88fdeabfe 2019-02-08 01:06:24.748233 1327 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-07 00:18:27.453164000 Z\n- &1 2019-02-07 02:40:49.730857000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-08 17:21:30.065649476 Z\nsign_in_count:\n- 6\n- 7\n 14 \N 189.186.39.120 470a62f2-237f-4806-8ddf-27e0913b985f 2019-02-08 17:21:30.116981 1328 9 User \N \N 9 User \N update ---\nunique_session_id:\n- eXQRyzNDyqeLRy-59paQ\n- 8FiD4KSnMz6JFF1gspQQ\n 15 \N 189.186.39.120 470a62f2-237f-4806-8ddf-27e0913b985f 2019-02-08 17:21:30.144492 1329 10 User \N \N 10 User \N update ---\ncurrent_sign_in_at:\n- 2019-02-06 00:39:51.311869000 Z\n- 2019-02-08 17:41:45.477296272 Z\nsign_in_count:\n- 1\n- 2\n 4 \N 189.186.39.120 d0d8f362-4c6a-47ac-a7a7-ac2793e33e4b 2019-02-08 17:41:45.48325 6489 469 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 af6a418f-18b7-4d38-926f-b30f4b4918a4 2019-05-06 17:45:37.364911 1334 4 User \N \N 4 User \N update ---\nunique_session_id:\n- spabb7DbgF6ogQUGaoHo\n- ac19-3h9ssxiJp8dzjw-\n 15 \N 189.186.39.120 b49a786b-cd62-41b2-9c2a-19c8ff5b2e9b 2019-02-08 18:01:10.609333 1335 449 Product \N \N 4 User \N create ---\nsku: BOL-449\nname: KAMO792\ndescription: BOLSO CLOE ROJO Y MARINO\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-449 fue creado. 189.186.39.120 d22e42b6-0ca3-48fb-bf93-1e3c8ad9ad09 2019-02-08 18:11:38.209826 1336 449 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000449'\n 2 \N 189.186.39.120 d22e42b6-0ca3-48fb-bf93-1e3c8ad9ad09 2019-02-08 18:11:38.260142 1337 449 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 449\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.39.120 d22e42b6-0ca3-48fb-bf93-1e3c8ad9ad09 2019-02-08 18:11:38.315765 1338 3 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-1\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nobservations: ''\npurchase_date: 2019-02-08\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-1 por $ 1699.0 MXN creada. 189.186.39.120 556244b8-a599-4815-b2b5-3359bdcb4c27 2019-02-08 18:11:47.6367 1339 449 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.39.120 556244b8-a599-4815-b2b5-3359bdcb4c27 2019-02-08 18:11:47.675662 1340 450 Product \N \N 4 User \N create ---\nsku: BOL-450\nname: TREC603\ndescription: BACK PACK CLOE\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-450 fue creado. 189.186.39.120 54c26063-cebc-43d7-955e-22d7d2baf4c4 2019-02-08 18:12:59.117375 1341 450 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000450'\n 2 \N 189.186.39.120 54c26063-cebc-43d7-955e-22d7d2baf4c4 2019-02-08 18:12:59.150154 1342 450 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 450\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.39.120 54c26063-cebc-43d7-955e-22d7d2baf4c4 2019-02-08 18:12:59.186506 1343 4 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-2\namount: !ruby/object:BigDecimal 18:0.7495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.7495E3\nobservations: ''\npurchase_date: 2019-02-08\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-2 por $ 749.5 MXN creada. 189.186.39.120 82b7be3f-93b3-4081-9737-65abd965f948 2019-02-08 18:13:05.003302 1344 450 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.39.120 82b7be3f-93b3-4081-9737-65abd965f948 2019-02-08 18:13:05.056035 1345 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-07 02:37:19.701042000 Z\n- &1 2019-02-08 01:06:24.719792000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-08 18:34:02.711011446 Z\nsign_in_count:\n- 17\n- 18\n 36 \N 189.186.39.120 884aaa0a-9493-46ff-87dd-d1a93d955ecf 2019-02-08 18:34:02.717626 1346 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Xsae6xyy2cdsex--vqMt\n- ep5z_pfj8K8mZ4zGAXX8\n 37 \N 189.186.39.120 884aaa0a-9493-46ff-87dd-d1a93d955ecf 2019-02-08 18:34:02.73344 1347 451 Product \N \N 4 User \N create ---\nsku: BOL-451\nname: LIGE762\ndescription: BOLSO CLOE\nprice_base: !ruby/object:BigDecimal 18:0.9495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-451 fue creado. 189.186.39.120 d02b7ec6-58a4-4e2c-950a-b0f2d33fc397 2019-02-08 18:36:27.445367 1348 451 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000451'\n 2 \N 189.186.39.120 d02b7ec6-58a4-4e2c-950a-b0f2d33fc397 2019-02-08 18:36:27.482949 1349 451 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 451\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.39.120 d02b7ec6-58a4-4e2c-950a-b0f2d33fc397 2019-02-08 18:36:27.524237 1350 5 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-3\namount: !ruby/object:BigDecimal 18:0.9495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9495E3\nobservations: ''\npurchase_date: 2019-02-08\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-3 por $ 949.5 MXN creada. 189.186.39.120 64a324b4-9cc5-4cff-8d94-ceb835712896 2019-02-08 18:36:32.506936 1351 451 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.39.120 64a324b4-9cc5-4cff-8d94-ceb835712896 2019-02-08 18:36:32.539394 1352 452 Product \N \N 4 User \N create ---\nsku: BOL-452\nname: SIGR574\ndescription: BOLSO CLOE\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170711783'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-452 fue creado. 189.186.39.120 64d45933-e88b-4e91-94ee-9a7e3063e04c 2019-02-08 18:37:40.873066 1353 452 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 452\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.39.120 64d45933-e88b-4e91-94ee-9a7e3063e04c 2019-02-08 18:37:40.937006 1354 6 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-4\namount: !ruby/object:BigDecimal 18:0.8495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.8495E3\nobservations: ''\npurchase_date: 2019-02-08\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-4 por $ 849.5 MXN creada. 189.186.39.120 4e46db36-3769-4e7b-9a20-d47bac2ea8dd 2019-02-08 18:37:44.230914 6611 481 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 e82fce9a-d2ba-4ff1-915c-6ff5cb182ab2 2019-05-07 22:47:30.831787 1355 452 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.39.120 4e46db36-3769-4e7b-9a20-d47bac2ea8dd 2019-02-08 18:37:44.264272 1356 453 Product \N \N 4 User \N create ---\nsku: BOL-453\nname: MIGE626\ndescription: BOLSO CLOE\nprice_base: !ruby/object:BigDecimal 18:0.5495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-453 fue creado. 189.186.39.120 312cc18a-8418-4472-a5f9-37513a06ca5f 2019-02-08 18:38:44.695515 1357 453 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000453'\n 2 \N 189.186.39.120 312cc18a-8418-4472-a5f9-37513a06ca5f 2019-02-08 18:38:44.741104 1358 453 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 453\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.39.120 312cc18a-8418-4472-a5f9-37513a06ca5f 2019-02-08 18:38:44.784967 1359 7 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-5\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nobservations: ''\npurchase_date: 2019-02-08\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-5 por $ 1099.0 MXN creada. 189.186.39.120 fe9b7782-3bf3-4ce5-a361-716e477181a3 2019-02-08 18:38:51.89224 1360 453 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.39.120 fe9b7782-3bf3-4ce5-a361-716e477181a3 2019-02-08 18:38:51.926923 1361 454 Product \N \N 4 User \N create ---\nsku: BOL-454\nname: FREJ584\ndescription: BOLSO CLOE\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170712117'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-454 fue creado. 189.186.39.120 c5a532ae-0bb3-4926-a3a9-994b5d927724 2019-02-08 18:40:20.64359 1362 454 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 454\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.39.120 c5a532ae-0bb3-4926-a3a9-994b5d927724 2019-02-08 18:40:20.709954 1363 8 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-6\namount: !ruby/object:BigDecimal 18:0.7995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.7995E3\nobservations: ''\npurchase_date: 2019-02-08\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-6 por $ 799.5 MXN creada. 189.186.39.120 328b198f-804a-4e95-9a94-4467c1ecdbe7 2019-02-08 18:40:25.621754 1364 454 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.39.120 328b198f-804a-4e95-9a94-4467c1ecdbe7 2019-02-08 18:40:25.657806 1365 455 Product \N \N 4 User \N create ---\nsku: BOL-455\nname: GIRL243\ndescription: BOLSO GIRLS\nprice_base: !ruby/object:BigDecimal 18:0.1995E3\nprice_sale: !ruby/object:BigDecimal 18:0.399E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170666182'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-455 fue creado. 189.186.39.120 118d88e8-aae7-41eb-82e3-aa951f1e2685 2019-02-08 18:49:37.027365 1366 455 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 455\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.39.120 118d88e8-aae7-41eb-82e3-aa951f1e2685 2019-02-08 18:49:37.076508 1367 9 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 2\npurchase_code: PV2-C-1\namount: !ruby/object:BigDecimal 18:0.399E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.399E3\nobservations: ''\npurchase_date: 2019-02-08\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-1 por $ 399.0 MXN creada. 189.186.39.120 99229141-0e41-42f8-8aa2-49cfc4db2549 2019-02-08 18:49:44.374396 1368 455 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.39.120 99229141-0e41-42f8-8aa2-49cfc4db2549 2019-02-08 18:49:44.410104 1369 456 Product \N \N 4 User \N create ---\nsku: BOL-456\nname: GIRL263\ndescription: ''\nprice_base: !ruby/object:BigDecimal 18:0.2495E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170732740'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-456 fue creado. 189.186.39.120 5e71d732-7f8b-4810-a2d9-5ace50417330 2019-02-08 18:50:30.388614 1370 456 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 456\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.39.120 5e71d732-7f8b-4810-a2d9-5ace50417330 2019-02-08 18:50:30.455087 1371 10 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 2\npurchase_code: PV2-C-2\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nobservations: ''\npurchase_date: 2019-02-08\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-2 por $ 499.0 MXN creada. 189.186.39.120 58bb4669-69bc-47eb-a998-c456138e25a5 2019-02-08 18:50:36.357852 1372 456 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.39.120 58bb4669-69bc-47eb-a998-c456138e25a5 2019-02-08 18:50:36.397164 1373 457 Product \N \N 4 User \N create ---\nsku: BOL-457\nname: GIRL257\ndescription: BOLSO GIRL\nprice_base: !ruby/object:BigDecimal 18:0.1995E3\nprice_sale: !ruby/object:BigDecimal 18:0.399E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '170698725'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-457 fue creado. 189.186.39.120 6a48907a-c773-426a-bf3b-1aa902a49a3d 2019-02-08 18:51:32.567786 1374 457 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 457\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.39.120 6a48907a-c773-426a-bf3b-1aa902a49a3d 2019-02-08 18:51:32.607333 1375 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-06 00:39:51.311869000 Z\n- &1 2019-02-08 17:41:45.477296000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-08 18:51:35.910370488 Z\nsign_in_count:\n- 2\n- 3\n 6 \N 189.186.39.120 11396c13-4d1e-4e5b-aa95-87d90cea3be5 2019-02-08 18:51:35.91903 1376 10 User \N \N 10 User \N update ---\nunique_session_id:\n- XjXrgPReKhzdXvGyNz9V\n- rVEKcEcnQiDqY8sUAgcK\n 7 \N 189.186.39.120 11396c13-4d1e-4e5b-aa95-87d90cea3be5 2019-02-08 18:51:35.938938 1377 11 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 2\npurchase_code: PV2-C-3\namount: !ruby/object:BigDecimal 18:0.399E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.399E3\nobservations: ''\npurchase_date: 2019-02-08\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-3 por $ 399.0 MXN creada. 189.186.39.120 5db8b6b0-6a53-4d81-b1db-d9c3a0094135 2019-02-08 18:51:39.030907 1378 457 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.39.120 5db8b6b0-6a53-4d81-b1db-d9c3a0094135 2019-02-08 18:51:39.06424 1379 458 Product \N \N 4 User \N create ---\nsku: BOL-458\nname: GIRL249\ndescription: BOLSO GIRL\nprice_base: !ruby/object:BigDecimal 18:0.1745E3\nprice_sale: !ruby/object:BigDecimal 18:0.349E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170698497'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-458 fue creado. 189.186.39.120 b0ff8a02-7d1d-4369-a1e4-f8b9cd8cd8ba 2019-02-08 18:52:28.3915 1380 458 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 458\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.39.120 b0ff8a02-7d1d-4369-a1e4-f8b9cd8cd8ba 2019-02-08 18:52:28.450874 1381 12 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 2\npurchase_code: PV2-C-4\namount: !ruby/object:BigDecimal 18:0.349E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.349E3\nobservations: ''\npurchase_date: 2019-02-08\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-4 por $ 349.0 MXN creada. 189.186.39.120 8fc3c879-901e-4939-8b25-210e5ca0d2cb 2019-02-08 18:52:43.64847 1382 458 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.39.120 8fc3c879-901e-4939-8b25-210e5ca0d2cb 2019-02-08 18:52:43.696812 1383 459 Product \N \N 4 User \N create ---\nsku: BOL-459\nname: GIRL250\ndescription: BOLSO GIRL\nprice_base: !ruby/object:BigDecimal 18:0.2495E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170698534'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-459 fue creado. 189.186.39.120 d787d880-a472-44f8-9e32-8ba01d9e606b 2019-02-08 18:53:47.802537 1384 459 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 459\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.39.120 d787d880-a472-44f8-9e32-8ba01d9e606b 2019-02-08 18:53:47.864814 1385 13 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 2\npurchase_code: PV2-C-5\namount: !ruby/object:BigDecimal 18:0.2495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2495E3\nobservations: ''\npurchase_date: 2019-02-08\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-5 por $ 249.5 MXN creada. 189.186.39.120 cd07c1f0-a0a2-4f91-ab8c-420a1c9fa018 2019-02-08 18:53:51.693151 1386 459 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.39.120 cd07c1f0-a0a2-4f91-ab8c-420a1c9fa018 2019-02-08 18:53:51.717917 1387 460 Product \N \N 4 User \N create ---\nsku: BOL-460\nname: GIRL245\ndescription: BOLSO GIRL\nprice_base: !ruby/object:BigDecimal 18:0.2245E3\nprice_sale: !ruby/object:BigDecimal 18:0.449E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170666236'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-460 fue creado. 189.186.39.120 ac368b50-9df2-4791-9908-3724b55947d6 2019-02-08 18:54:42.157034 1388 460 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 460\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.39.120 ac368b50-9df2-4791-9908-3724b55947d6 2019-02-08 18:54:42.201518 1389 14 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 2\npurchase_code: PV2-C-6\namount: !ruby/object:BigDecimal 18:0.2245E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2245E3\nobservations: ''\npurchase_date: 2019-02-08\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-6 por $ 224.5 MXN creada. 189.186.39.120 2d888440-872c-44b1-93dc-5a7a374baf30 2019-02-08 18:54:48.437758 1390 460 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.39.120 2d888440-872c-44b1-93dc-5a7a374baf30 2019-02-08 18:54:48.471748 1391 461 Product \N \N 4 User \N create ---\nsku: BOL-461\nname: GIRL266\ndescription: BOLSO GIRL\nprice_base: !ruby/object:BigDecimal 18:0.1745E3\nprice_sale: !ruby/object:BigDecimal 18:0.349E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170732832'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-461 fue creado. 189.186.39.120 fa98c2f2-1149-4e56-80dc-f9be34d36a72 2019-02-08 18:55:45.657337 1392 461 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 461\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.39.120 fa98c2f2-1149-4e56-80dc-f9be34d36a72 2019-02-08 18:55:45.734899 1483 324 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 d20a68a9-6bcb-4f34-8e2c-ebad81ad18fe 2019-02-09 21:31:15.562253 1393 15 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 2\npurchase_code: PV2-C-7\namount: !ruby/object:BigDecimal 18:0.1745E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1745E3\nobservations: ''\npurchase_date: 2019-02-08\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-7 por $ 174.5 MXN creada. 189.186.39.120 a58c435b-5d90-4d84-89b3-d594c6196b92 2019-02-08 18:55:49.823808 1394 461 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.39.120 a58c435b-5d90-4d84-89b3-d594c6196b92 2019-02-08 18:55:49.85419 1395 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-08 01:06:24.719792000 Z\n- &1 2019-02-08 18:34:02.711011000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-08 18:59:30.900769200 Z\nsign_in_count:\n- 18\n- 19\n 38 \N 189.186.39.120 2fa208bd-d376-4857-93e1-dc66a9a202f0 2019-02-08 18:59:30.909964 1396 1 User \N \N 1 User \N update ---\nunique_session_id:\n- ep5z_pfj8K8mZ4zGAXX8\n- "-KY3gYGPiPud5fVyCdgV"\n 39 \N 189.186.39.120 2fa208bd-d376-4857-93e1-dc66a9a202f0 2019-02-08 18:59:30.928639 1397 44 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 7\namount: !ruby/object:BigDecimal 18:0.53362E3\ntax: !ruby/object:BigDecimal 18:0.8538E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.619E3\nstatus: 0\ndate_sale: 2019-02-08\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-18\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 f0298171-e1fb-481f-8811-da7b6b061103 2019-02-08 20:06:56.349306 1398 330 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 2 \N 189.186.39.120 f0298171-e1fb-481f-8811-da7b6b061103 2019-02-08 20:06:56.384809 1399 44 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 2fc84f21-e276-49e9-9ab8-ad59508b3b0c 2019-02-08 20:07:23.412165 1400 48 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 7\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.619E3\nmove_type: '1'\nsale_id: 44\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-18\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.81E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-18 189.186.39.120 2fc84f21-e276-49e9-9ab8-ad59508b3b0c 2019-02-08 20:07:23.446833 1401 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-08 01:03:09.132834000 Z\n- &1 2019-02-08 17:57:36.939999000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-08 20:08:12.649513756 Z\nsign_in_count:\n- 9\n- 10\n 23 \N 189.186.39.120 f78fb567-c5ad-4ffa-9c11-0ac8b1788c94 2019-02-08 20:08:12.657714 1402 2 User \N \N 2 User \N update ---\nunique_session_id:\n- cDXyJfkvrqnN14tCuMLo\n- v1oMh3n2cQgFsu7Wczry\n 24 \N 189.186.39.120 f78fb567-c5ad-4ffa-9c11-0ac8b1788c94 2019-02-08 20:08:12.675601 1403 45 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 6\namount: !ruby/object:BigDecimal 18:0.103362E4\ntax: !ruby/object:BigDecimal 18:0.16538E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-02-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-25\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 0c0e3dfe-1ebd-4dae-a42f-16449b879a83 2019-02-08 20:09:49.67487 1404 268 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 2 \N 189.186.39.120 0c0e3dfe-1ebd-4dae-a42f-16449b879a83 2019-02-08 20:09:49.706221 1405 45 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 37d47951-d227-4731-8d04-0d1c6035c0ee 2019-02-08 20:11:29.188004 1406 49 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 6\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 45\ncardnumber: 2495\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-25\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-25 189.186.39.120 37d47951-d227-4731-8d04-0d1c6035c0ee 2019-02-08 20:11:29.224564 1407 50 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 6\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 45\ncardnumber: 2495\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-25\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-25 189.186.39.120 0b9a5bb0-8019-441e-9e96-f71b5d914301 2019-02-08 20:12:12.178973 1408 49 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 6\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 45\ncardnumber: 2495\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-25\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.39.120 80cf2c31-25c7-4b69-81fd-6af4d818d21d 2019-02-08 20:12:16.661581 1409 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-08 18:34:02.711011000 Z\n- &1 2019-02-08 18:59:30.900769000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-08 21:11:54.329325342 Z\nsign_in_count:\n- 19\n- 20\n 40 \N 189.186.39.120 e458913b-78e9-45ff-b312-29e7061e41e3 2019-02-08 21:11:54.33718 1410 1 User \N \N 1 User \N update ---\nunique_session_id:\n- "-KY3gYGPiPud5fVyCdgV"\n- LHo6xmu8Lq_Re2NePzti\n 41 \N 189.186.39.120 e458913b-78e9-45ff-b312-29e7061e41e3 2019-02-08 21:11:54.352996 1411 138 Product \N \N 1 User \N update --- {}\n 3 El producto BLU-138 fue modificado. 189.186.39.120 cd8f07cc-31c8-4698-8718-08faa8c8fbe1 2019-02-08 22:16:05.657604 1412 46 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 6\namount: !ruby/object:BigDecimal 18:0.100776E4\ntax: !ruby/object:BigDecimal 18:0.16124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1169E4\nstatus: 0\ndate_sale: 2019-02-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-26\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 2f79045f-b139-435e-ba8c-e44c8926c0c2 2019-02-08 23:13:31.544193 1413 246 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.39.120 2f79045f-b139-435e-ba8c-e44c8926c0c2 2019-02-08 23:13:31.583274 1414 46 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 aabff240-94e6-4112-82ae-6a5fee3a49ab 2019-02-08 23:13:38.855881 1415 51 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 6\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1169E4\nmove_type: '1'\nsale_id: 46\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-26\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1169E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-26 189.186.39.120 aabff240-94e6-4112-82ae-6a5fee3a49ab 2019-02-08 23:13:38.88779 1416 47 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 6\namount: !ruby/object:BigDecimal 18:0.55948E3\ntax: !ruby/object:BigDecimal 18:0.8952E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-02-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-27\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 dcd75c5b-539c-4063-bcb0-150c3898d1a6 2019-02-09 01:26:42.015527 1417 138 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.39.120 dcd75c5b-539c-4063-bcb0-150c3898d1a6 2019-02-09 01:26:42.092649 1418 47 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-27 cancelada. 189.186.39.120 f26d38dc-2fc4-4697-9919-a649ef639641 2019-02-09 01:27:43.112098 1419 138 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.39.120 f26d38dc-2fc4-4697-9919-a649ef639641 2019-02-09 01:27:43.140514 1420 48 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 6\namount: !ruby/object:BigDecimal 18:0.103276E4\ntax: !ruby/object:BigDecimal 18:0.16524E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1198E4\nstatus: 0\ndate_sale: 2019-02-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-28\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 2ec82389-8fc1-44b7-a30b-233d578218ad 2019-02-09 01:28:20.523182 1421 138 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.39.120 2ec82389-8fc1-44b7-a30b-233d578218ad 2019-02-09 01:28:20.564098 1422 157 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.39.120 2ec82389-8fc1-44b7-a30b-233d578218ad 2019-02-09 01:28:20.601523 1423 48 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 6fefe075-d5a9-452e-a377-fbf89b443034 2019-02-09 01:30:29.83788 1424 52 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 6\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1198E4\nmove_type: '1'\nsale_id: 48\ncardnumber: 2458\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-28\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-28 189.186.39.120 6fefe075-d5a9-452e-a377-fbf89b443034 2019-02-09 01:30:29.877115 1425 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-06 20:14:39.989437000 Z\n- &1 2019-02-07 03:00:05.119501000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-09 02:12:37.257257332 Z\nsign_in_count:\n- 5\n- 6\n 12 \N 189.186.39.120 89bb6e5c-be04-40ce-924b-cc157ea3719c 2019-02-09 02:12:37.279778 1426 3 User \N \N 3 User \N update ---\nunique_session_id:\n- LJSaQioq58tu2T8wGz3d\n- WhMD66bq1P8wr3CNY5L8\n 13 \N 189.186.39.120 89bb6e5c-be04-40ce-924b-cc157ea3719c 2019-02-09 02:12:37.299768 1427 49 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 7\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-02-08\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-19\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 b59e13b6-662c-4f43-93e5-bb54330c7ef0 2019-02-09 02:12:57.971685 1428 295 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.39.120 b59e13b6-662c-4f43-93e5-bb54330c7ef0 2019-02-09 02:12:58.020935 1429 49 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 3cbf1b4b-1677-4500-9cf0-8b254f9ac743 2019-02-09 02:13:03.180848 1430 53 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 7\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 49\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-19\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.401E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-19 189.186.39.120 3cbf1b4b-1677-4500-9cf0-8b254f9ac743 2019-02-09 02:13:03.216152 1431 54 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 6\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 13\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-11 189.186.39.120 0a3d9527-118b-4bd7-b837-3b71924f76f6 2019-02-09 02:31:34.86689 1432 13 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.39.120 63e7edde-7266-4c44-9abe-b92351a19a55 2019-02-09 02:31:37.33547 1433 5 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 7\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1218E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.1218E4\ncash_fund: !ruby/object:BigDecimal 18:0.103E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2248E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.39.120 7842a7f0-c5f1-42d4-aa52-edacf8f0d995 2019-02-09 02:37:52.730449 1434 7 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.39.120 7842a7f0-c5f1-42d4-aa52-edacf8f0d995 2019-02-09 02:37:52.746101 1435 50 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 6\namount: !ruby/object:BigDecimal 18:0.100776E4\ntax: !ruby/object:BigDecimal 18:0.16124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1169E4\nstatus: 0\ndate_sale: 2019-02-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-29\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 9aeb85ad-ecab-4b73-acb5-579849922b17 2019-02-09 02:39:21.87923 1436 246 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.39.120 9aeb85ad-ecab-4b73-acb5-579849922b17 2019-02-09 02:39:21.924196 1437 50 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 8d9d050c-92a6-41c4-8150-9bd608a142fe 2019-02-09 02:43:18.078531 1438 55 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 6\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1169E4\nmove_type: '1'\nsale_id: 50\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-29\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1169E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-29 189.186.39.120 8d9d050c-92a6-41c4-8150-9bd608a142fe 2019-02-09 02:43:18.112694 1484 57 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 fb60d19e-aa50-464d-b1d2-e95cc07a9be2 2019-02-09 21:31:21.503365 1439 6 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 6\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6435E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.12E3\ncash_fund: !ruby/object:BigDecimal 18:0.3918E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4038E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.39.120 d82a075b-7464-4ecb-b4ec-04716afecda9 2019-02-09 03:12:31.567205 1440 6 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.39.120 d82a075b-7464-4ecb-b4ec-04716afecda9 2019-02-09 03:12:31.612009 1441 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-07 03:00:05.119501000 Z\n- &1 2019-02-09 02:12:37.257257000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-09 16:53:13.748351588 Z\nsign_in_count:\n- 6\n- 7\n 14 \N 189.186.39.120 a1d390f0-02f8-4762-a7d1-d66eb2cf37ee 2019-02-09 16:53:13.792686 1442 3 User \N \N 3 User \N update ---\nunique_session_id:\n- WhMD66bq1P8wr3CNY5L8\n- sxm9BHbXfNBc3yN6sxCk\n 15 \N 189.186.39.120 a1d390f0-02f8-4762-a7d1-d66eb2cf37ee 2019-02-09 16:53:13.820016 1443 8 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.945E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 945.0 189.186.39.120 c69d0a97-e66c-4ba7-8975-4c17155770ec 2019-02-09 16:58:45.948155 1444 51 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 8\namount: !ruby/object:BigDecimal 18:0.42155E3\ntax: !ruby/object:BigDecimal 18:0.6745E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-02-09\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-20\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.120 78f35a11-b4cd-417d-acc3-71edcf3a1a71 2019-02-09 17:33:43.990981 1445 323 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.39.120 78f35a11-b4cd-417d-acc3-71edcf3a1a71 2019-02-09 17:33:44.046369 1446 51 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.120 79b33147-8efc-430f-b21b-cfb46bf82449 2019-02-09 17:33:55.591062 1447 56 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 8\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.489E3\nmove_type: '1'\nsale_id: 51\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-20\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-20 189.186.39.120 79b33147-8efc-430f-b21b-cfb46bf82449 2019-02-09 17:33:55.61795 1448 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-08 17:57:36.939999000 Z\n- &1 2019-02-08 20:08:12.649513000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-09 18:48:37.179449464 Z\nsign_in_count:\n- 10\n- 11\n 25 \N 189.186.39.120 bb01c97d-ec67-4973-a7ab-eb2c02c05450 2019-02-09 18:48:37.214583 1449 2 User \N \N 2 User \N update ---\nunique_session_id:\n- v1oMh3n2cQgFsu7Wczry\n- UPKxsLcsySjp1QcjK-Cd\n 26 \N 189.186.39.120 bb01c97d-ec67-4973-a7ab-eb2c02c05450 2019-02-09 18:48:37.236895 1450 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-08 20:08:12.649513000 Z\n- &1 2019-02-09 18:48:37.179449000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-09 19:25:58.310448147 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 11\n- 12\n 27 \N 189.186.41.207 ebc36fe5-a9da-41e0-ac85-a027f9b989a6 2019-02-09 19:25:58.320673 1451 2 User \N \N 2 User \N update ---\nunique_session_id:\n- UPKxsLcsySjp1QcjK-Cd\n- b5Ras-W8NYdBp6T1P2q8\n 28 \N 189.186.41.207 ebc36fe5-a9da-41e0-ac85-a027f9b989a6 2019-02-09 19:25:58.339529 1452 9 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.652E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 652.0 189.186.41.207 c255219a-1e35-42ed-9c49-be258b3811c2 2019-02-09 19:26:58.578803 1453 52 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 9\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-02-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-30\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 9d966ac4-967d-427c-b37f-379702c999f4 2019-02-09 19:28:40.726618 1454 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.41.207 9d966ac4-967d-427c-b37f-379702c999f4 2019-02-09 19:28:40.767059 1455 52 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 3a3a24d8-7a28-47ed-8812-09a1c7e04b44 2019-02-09 19:29:47.263181 1456 57 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 9\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 52\ncardnumber: 7492\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-30\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-30 189.186.41.207 3a3a24d8-7a28-47ed-8812-09a1c7e04b44 2019-02-09 19:29:47.293872 1457 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-08 18:59:30.900769000 Z\n- &1 2019-02-08 21:11:54.329325000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-09 19:42:17.627816378 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 20\n- 21\n 42 \N 189.186.41.207 cb8c1f6e-81d0-46e6-944d-8d065e3981a9 2019-02-09 19:42:17.662009 1458 1 User \N \N 1 User \N update ---\nunique_session_id:\n- LHo6xmu8Lq_Re2NePzti\n- ymsEQT9tTAkDq6gkX_xs\n 43 \N 189.186.41.207 cb8c1f6e-81d0-46e6-944d-8d065e3981a9 2019-02-09 19:42:17.686872 1459 53 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 8\namount: !ruby/object:BigDecimal 18:0.85172E3\ntax: !ruby/object:BigDecimal 18:0.13628E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.988E3\nstatus: 0\ndate_sale: 2019-02-09\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-21\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 547117bd-0973-4712-953a-32cc225ffb87 2019-02-09 20:16:30.850945 1460 325 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 547117bd-0973-4712-953a-32cc225ffb87 2019-02-09 20:16:30.916993 1461 404 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 547117bd-0973-4712-953a-32cc225ffb87 2019-02-09 20:16:30.970802 1462 53 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 3d260748-3ca4-467d-8ac8-58185fa43f4c 2019-02-09 20:17:54.665595 1526 464 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.207 5ff8d979-6817-4b30-98a9-986ef06f00fb 2019-02-11 17:38:31.568082 1463 58 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 8\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.988E3\nmove_type: '1'\nsale_id: 53\ncardnumber: 5948\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-21\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-21 189.186.41.207 3d260748-3ca4-467d-8ac8-58185fa43f4c 2019-02-09 20:17:54.722107 1464 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-07 01:23:51.926279000 Z\n- &1 2019-02-08 18:01:10.580253000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-09 20:24:31.340789490 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539981\n mask_addr: 4294967295\nsign_in_count:\n- 7\n- 8\n 16 \N 177.228.119.77 f05c88df-3ca3-47a6-93b6-2b3720116169 2019-02-09 20:24:31.39503 1465 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ac19-3h9ssxiJp8dzjw-\n- yuuMLtzWmmX79y3t62bN\n 17 \N 177.228.119.77 f05c88df-3ca3-47a6-93b6-2b3720116169 2019-02-09 20:24:31.430522 1466 54 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 9\namount: !ruby/object:BigDecimal 18:0.126552E4\ntax: !ruby/object:BigDecimal 18:0.20248E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1468E4\nstatus: 0\ndate_sale: 2019-02-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-31\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 d545267d-1a40-4a2b-9ac3-9e95807cae1b 2019-02-09 21:19:03.190163 1467 234 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 189.186.41.207 d545267d-1a40-4a2b-9ac3-9e95807cae1b 2019-02-09 21:19:03.236201 1468 141 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 d545267d-1a40-4a2b-9ac3-9e95807cae1b 2019-02-09 21:19:03.287629 1469 54 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 c97ff64b-fe6f-4a78-b8cb-2e7f4f915a35 2019-02-09 21:19:42.846699 1470 59 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 9\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1468E4\nmove_type: '1'\nsale_id: 54\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-31\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.32E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-31 189.186.41.207 c97ff64b-fe6f-4a78-b8cb-2e7f4f915a35 2019-02-09 21:19:42.882 1471 55 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 8\namount: !ruby/object:BigDecimal 18:0.34397E3\ntax: !ruby/object:BigDecimal 18:0.5504E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.39901E3\nstatus: 0\ndate_sale: 2019-02-09\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-22\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 75e09ad2-1780-4e6b-ae30-f8fce1b18ec4 2019-02-09 21:25:30.424677 1472 311 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.41.207 75e09ad2-1780-4e6b-ae30-f8fce1b18ec4 2019-02-09 21:25:30.460062 1473 55 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 ec0d4dfe-4023-43d2-a13a-87aa6c9bafd7 2019-02-09 21:26:24.536555 1474 60 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 8\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.39901E3\nmove_type: '1'\nsale_id: 55\ncardnumber: 9051\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-22\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-22 189.186.41.207 ec0d4dfe-4023-43d2-a13a-87aa6c9bafd7 2019-02-09 21:26:24.566945 1475 10 Customer \N \N 2 User \N create ---\nnick_name: NORMA GARCIA\nphone: "(667) 184-3268"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.6E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente NORMA GARCIA fue registrado. 189.186.41.207 7220c2d9-7dbf-40b6-a5e5-f64fa5248953 2019-02-09 21:27:05.054919 1476 56 Sale \N \N 2 User \N create ---\ncustomer_id: 10\nuser_id: 2\nopen_cash_register_id: 9\namount: !ruby/object:BigDecimal 18:0.57672E3\ntax: !ruby/object:BigDecimal 18:0.9228E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-02-09\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-32\nexpiration_date: 2019-03-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 a8f30428-e584-4769-a710-4d3b06738810 2019-02-09 21:27:38.215182 1477 80 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.41.207 a8f30428-e584-4769-a710-4d3b06738810 2019-02-09 21:27:38.260408 1478 61 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 9\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.201E3\nmove_type: '1'\nsale_id: 56\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-32\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.99E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-32 189.186.41.207 94906dd5-fecf-4613-9338-53ca778bc1d0 2019-02-09 21:27:51.575024 1479 61 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 9\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.201E3\nmove_type: '1'\nsale_id: 56\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-32\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.99E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.41.207 dd10f2b6-54cc-4474-b032-89d05ef2a4e5 2019-02-09 21:27:59.242267 1480 62 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 9\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 56\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-32\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-32 189.186.41.207 c43dbd6c-9e13-43db-bf8c-68b987e3d226 2019-02-09 21:28:19.85953 1481 56 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 ddbe0313-5d9f-42c3-a0de-03d0333f9903 2019-02-09 21:28:27.45812 1482 57 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 8\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-02-09\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-23\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 d20a68a9-6bcb-4f34-8e2c-ebad81ad18fe 2019-02-09 21:31:15.531692 1485 63 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 8\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 57\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-23\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-23 189.186.41.207 fb60d19e-aa50-464d-b1d2-e95cc07a9be2 2019-02-09 21:31:21.534971 1486 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-08 18:01:10.580253000 Z\n- &1 2019-02-09 20:24:31.340789000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-09 22:57:18.629697713 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539981\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539981\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539493\n mask_addr: 4294967295\nsign_in_count:\n- 8\n- 9\n 18 \N 177.228.117.101 8c761008-e4ba-4fad-be53-6b7b2f0b892c 2019-02-09 22:57:18.641238 1487 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yuuMLtzWmmX79y3t62bN\n- qnoVSLpSjYcKayd9F5Mj\n 19 \N 177.228.117.101 8c761008-e4ba-4fad-be53-6b7b2f0b892c 2019-02-09 22:57:18.664314 1488 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-09 20:24:31.340789000 Z\n- &1 2019-02-09 22:57:18.629697000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-09 23:07:26.260777943 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539981\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539493\n mask_addr: 4294967295\nsign_in_count:\n- 9\n- 10\n 20 \N 177.228.117.101 93bcafa9-909a-46c6-ae4d-ab676283be67 2019-02-09 23:07:26.271264 1489 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qnoVSLpSjYcKayd9F5Mj\n- hpLJ1ZDiAZtVvN1Aw-kv\n 21 \N 177.228.117.101 93bcafa9-909a-46c6-ae4d-ab676283be67 2019-02-09 23:07:26.292974 1490 462 Product \N \N 4 User \N create ---\nsku: BLU-462\nname: BLX-0011\ndescription: BLUSA PAPAYON MOSTAZA\nprice_base: !ruby/object:BigDecimal 18:0.14196E3\nprice_sale: !ruby/object:BigDecimal 18:0.489E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-462 fue creado. 177.228.117.101 4630eac9-f6ca-45a0-bedb-4475f72491d7 2019-02-09 23:09:29.329911 1491 462 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000462'\n 2 \N 177.228.117.101 4630eac9-f6ca-45a0-bedb-4475f72491d7 2019-02-09 23:09:29.380485 1492 462 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 462\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: !ruby/object:BigDecimal 27:0.489E3\nproducts_variant_id: \n 1 \N 177.228.117.101 ffef1cf4-16c6-41f2-a694-58fdb2d87543 2019-02-09 23:15:27.511811 1493 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-08 21:11:54.329325000 Z\n- &1 2019-02-09 19:42:17.627816000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-10 00:18:26.616288890 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534101\n mask_addr: 4294967295\nsign_in_count:\n- 21\n- 22\n 44 \N 177.228.96.85 21eb8d58-2194-4a77-898d-7a58d3d402d4 2019-02-10 00:18:26.627783 1494 1 User \N \N 1 User \N update ---\nunique_session_id:\n- ymsEQT9tTAkDq6gkX_xs\n- AADghrzSj2YHp6mFL7WV\n 45 \N 177.228.96.85 21eb8d58-2194-4a77-898d-7a58d3d402d4 2019-02-10 00:18:26.651143 1495 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-09 19:42:17.627816000 Z\n- &1 2019-02-10 00:18:26.616288000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-10 00:46:33.176208904 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534101\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534101\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 22\n- 23\n 46 \N 189.186.41.207 4aa38b81-1ec3-440b-a989-df596d491aed 2019-02-10 00:46:33.187325 1496 1 User \N \N 1 User \N update ---\nunique_session_id:\n- AADghrzSj2YHp6mFL7WV\n- 8fiDZoPAusr6H_791XVs\n 47 \N 189.186.41.207 4aa38b81-1ec3-440b-a989-df596d491aed 2019-02-10 00:46:33.211512 1497 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-09 22:57:18.629697000 Z\n- &1 2019-02-09 23:07:26.260777000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-10 01:16:00.710260044 Z\nsign_in_count:\n- 10\n- 11\n 22 \N 177.228.117.101 25365cbd-aede-4045-95b6-757d4bb9fd4a 2019-02-10 01:16:00.718481 1498 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hpLJ1ZDiAZtVvN1Aw-kv\n- uSKjSf_iZBGMGs1GKTLq\n 23 \N 177.228.117.101 25365cbd-aede-4045-95b6-757d4bb9fd4a 2019-02-10 01:16:00.732979 1499 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-09 23:07:26.260777000 Z\n- &1 2019-02-10 01:16:00.710260000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-10 01:20:10.990165947 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539493\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938327\n mask_addr: 4294967295\nsign_in_count:\n- 11\n- 12\n 24 \N 200.68.151.23 6a244d0c-9df6-4a9b-9c6c-86d9b00d1d21 2019-02-10 01:20:11.000559 1500 4 User \N \N 4 User \N update ---\nunique_session_id:\n- uSKjSf_iZBGMGs1GKTLq\n- EFKJ5wtEGYt2L8vPxCmd\n 25 \N 200.68.151.23 6a244d0c-9df6-4a9b-9c6c-86d9b00d1d21 2019-02-10 01:20:11.022051 1501 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-09 02:12:37.257257000 Z\n- &1 2019-02-09 16:53:13.748351000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-10 02:04:39.934522506 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 7\n- 8\n 16 \N 189.186.41.207 1f969224-7b87-4578-8262-3707ae9efc3f 2019-02-10 02:04:39.945146 1502 3 User \N \N 3 User \N update ---\nunique_session_id:\n- sxm9BHbXfNBc3yN6sxCk\n- ZKk5geyHx7fyTJcCh5Sa\n 17 \N 189.186.41.207 1f969224-7b87-4578-8262-3707ae9efc3f 2019-02-10 02:04:39.967749 1503 7 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 8\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.237501E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.988E3\ncash_fund: !ruby/object:BigDecimal 18:0.945E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1933E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 f5967c66-a5a6-4976-bbd8-3a641dd277b5 2019-02-10 02:06:04.598671 1504 8 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 f5967c66-a5a6-4976-bbd8-3a641dd277b5 2019-02-10 02:06:04.628126 1548 2 User \N \N 2 User \N update ---\nunique_session_id:\n- b5Ras-W8NYdBp6T1P2q8\n- HsKfp2VedjFPFPReN8ZM\n 30 \N 189.186.41.207 335b447d-0c4d-4903-bf01-23fe4ce9035c 2019-02-11 18:51:13.397408 6681 489 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 f73c8be3-dd19-4af9-85e7-d4f2a6743506 2019-05-08 16:52:25.855333 1505 8 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 9\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2517E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.1768E4\ncash_fund: !ruby/object:BigDecimal 18:0.652E3\nphysical_cash: !ruby/object:BigDecimal 18:0.242E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 7f61fe54-4bee-403c-9e24-b1fe8b25ff07 2019-02-10 02:12:16.42835 1506 9 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 7f61fe54-4bee-403c-9e24-b1fe8b25ff07 2019-02-10 02:12:16.447763 1507 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-09 16:53:13.748351000 Z\n- &1 2019-02-10 02:04:39.934522000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-10 16:49:16.062254219 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 8\n- 9\n 18 \N 189.186.41.207 5f291f39-8b8e-4086-8067-764be9260856 2019-02-10 16:49:16.096734 1508 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ZKk5geyHx7fyTJcCh5Sa\n- TTTbZxhxiqUHxL4ZaJ2a\n 19 \N 189.186.41.207 5f291f39-8b8e-4086-8067-764be9260856 2019-02-10 16:49:16.130069 1509 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-10 01:16:00.710260000 Z\n- &1 2019-02-10 01:20:10.990165000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-10 21:01:54.369126759 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539493\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938327\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938327\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539493\n mask_addr: 4294967295\nsign_in_count:\n- 12\n- 13\n 26 \N 177.228.117.101 25a3ef71-dbf9-40d8-8e5f-76660086d3dd 2019-02-10 21:01:54.380339 1510 4 User \N \N 4 User \N update ---\nunique_session_id:\n- EFKJ5wtEGYt2L8vPxCmd\n- aAa77FbgPJii-rxw5S7s\n 27 \N 177.228.117.101 25a3ef71-dbf9-40d8-8e5f-76660086d3dd 2019-02-10 21:01:54.403931 1511 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-08 17:41:45.477296000 Z\n- &1 2019-02-08 18:51:35.910370000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-11 17:10:15.612800250 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 3\n- 4\n 8 \N 189.186.41.207 df28f048-68af-4854-b6c0-aee12f633e12 2019-02-11 17:10:15.652526 1512 10 User \N \N 10 User \N update ---\nunique_session_id:\n- rVEKcEcnQiDqY8sUAgcK\n- pQX9ALdugkwirtTaYkds\n 9 \N 189.186.41.207 df28f048-68af-4854-b6c0-aee12f633e12 2019-02-11 17:10:15.67687 1513 10 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.945E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 945.0 189.186.41.207 c82660fb-bf3e-4a2b-b33c-38dfa8ff1771 2019-02-11 17:10:21.042701 1514 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-10 01:20:10.990165000 Z\n- &1 2019-02-10 21:01:54.369126000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-11 17:34:04.045732331 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938327\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539493\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539493\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 13\n- 14\n 28 \N 189.186.41.207 edc31b19-3a62-4e64-ba1d-27c4c90c8648 2019-02-11 17:34:04.05446 1515 4 User \N \N 4 User \N update ---\nunique_session_id:\n- aAa77FbgPJii-rxw5S7s\n- 2w4JPWBHQoRCMokGCaBj\n 29 \N 189.186.41.207 edc31b19-3a62-4e64-ba1d-27c4c90c8648 2019-02-11 17:34:04.073161 1516 463 Product \N \N 4 User \N create ---\nsku: BOL-463\nname: KRAB271\ndescription: CARTERA CLOE\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-463 fue creado. 189.186.41.207 cb20e7f4-3ced-4066-bb1b-a2026716cec0 2019-02-11 17:35:41.931672 1517 463 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000463'\n 2 \N 189.186.41.207 cb20e7f4-3ced-4066-bb1b-a2026716cec0 2019-02-11 17:35:41.971319 1518 463 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 463\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 cb20e7f4-3ced-4066-bb1b-a2026716cec0 2019-02-11 17:35:42.018875 1519 16 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 2\npurchase_code: PV2-C-8\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nobservations: ''\npurchase_date: 2019-02-11\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-8 por $ 899.0 MXN creada. 189.186.41.207 73f1b61b-ef16-4be2-8805-1225fafa03dc 2019-02-11 17:35:51.387137 1520 463 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.41.207 73f1b61b-ef16-4be2-8805-1225fafa03dc 2019-02-11 17:35:51.424307 1521 2 Supplier \N \N 4 User \N create ---\nnick_name: ROPA\nphone: "(667) 777-7777"\nemail: SSD@HOTMAIL.COM\nnotes: ''\ncontact_id: \nstatus: 1\n 1 El proveedor ROPA fue registrado. 189.186.41.207 625c2ae8-7f51-4e26-8cf3-907795717220 2019-02-11 17:37:05.367519 1522 464 Product \N \N 4 User \N create ---\nsku: CAR-464\nname: EVAY402\ndescription: CARTERA CLOE\nprice_base: !ruby/object:BigDecimal 18:0.3995E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-464 fue creado. 189.186.41.207 28c009de-5790-4c8c-a715-42644485b954 2019-02-11 17:38:27.713838 1523 464 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000464'\n 2 \N 189.186.41.207 28c009de-5790-4c8c-a715-42644485b954 2019-02-11 17:38:27.755464 1524 464 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 464\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 28c009de-5790-4c8c-a715-42644485b954 2019-02-11 17:38:27.803588 1525 17 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 2\npurchase_code: PV2-C-9\namount: !ruby/object:BigDecimal 18:0.3995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3995E3\nobservations: ''\npurchase_date: 2019-02-11\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-9 por $ 399.5 MXN creada. 189.186.41.207 5ff8d979-6817-4b30-98a9-986ef06f00fb 2019-02-11 17:38:31.53237 1527 465 Product \N \N 4 User \N create ---\nsku: CAR-465\nname: SIGR572\ndescription: CARTERA CLOE\nprice_base: !ruby/object:BigDecimal 18:0.3995E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-465 fue creado. 189.186.41.207 0128fa0c-e4a7-4aa7-9ad8-cf72697027ee 2019-02-11 18:21:09.480567 1528 465 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000465'\n 2 \N 189.186.41.207 0128fa0c-e4a7-4aa7-9ad8-cf72697027ee 2019-02-11 18:21:09.522943 1529 465 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 465\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 0128fa0c-e4a7-4aa7-9ad8-cf72697027ee 2019-02-11 18:21:09.566178 1530 18 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-7\namount: !ruby/object:BigDecimal 18:0.3995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3995E3\nobservations: ''\npurchase_date: 2019-02-11\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-7 por $ 399.5 MXN creada. 189.186.41.207 89aa991a-6ed0-4e9d-b305-1ebb816c5088 2019-02-11 18:21:22.562818 1531 465 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.207 89aa991a-6ed0-4e9d-b305-1ebb816c5088 2019-02-11 18:21:22.597339 1532 466 Product \N \N 4 User \N create ---\nsku: CAR-466\nname: ERIN782\ndescription: CARTERA CLOE\nprice_base: !ruby/object:BigDecimal 18:0.3495E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-466 fue creado. 189.186.41.207 1bcc99a5-d597-44c1-ab58-cf09b31b39b6 2019-02-11 18:23:27.613193 1533 466 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000466'\n 2 \N 189.186.41.207 1bcc99a5-d597-44c1-ab58-cf09b31b39b6 2019-02-11 18:23:27.655015 1534 466 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 466\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 1bcc99a5-d597-44c1-ab58-cf09b31b39b6 2019-02-11 18:23:27.696103 1535 19 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-8\namount: !ruby/object:BigDecimal 18:0.3495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3495E3\nobservations: ''\npurchase_date: 2019-02-11\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-8 por $ 349.5 MXN creada. 189.186.41.207 a4511cb1-d1db-407a-9f16-050f87515889 2019-02-11 18:23:33.456177 1536 466 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.207 a4511cb1-d1db-407a-9f16-050f87515889 2019-02-11 18:23:33.481689 1537 467 Product \N \N 4 User \N create ---\nsku: CAR-467\nname: FREJ580\ndescription: CARTERA CLOE\nprice_base: !ruby/object:BigDecimal 18:0.3995E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-467 fue creado. 189.186.41.207 270347d7-37f3-4534-9854-83ae4a0e76f5 2019-02-11 18:36:24.145862 1538 467 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000467'\n 2 \N 189.186.41.207 270347d7-37f3-4534-9854-83ae4a0e76f5 2019-02-11 18:36:24.174958 1539 467 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 467\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 270347d7-37f3-4534-9854-83ae4a0e76f5 2019-02-11 18:36:24.203239 1540 20 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-9\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nobservations: ''\npurchase_date: 2019-02-11\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-9 por $ 799.0 MXN creada. 189.186.41.207 4645794f-ffbb-4e3c-9015-122d68b4d3fb 2019-02-11 18:36:33.383329 1541 467 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.41.207 4645794f-ffbb-4e3c-9015-122d68b4d3fb 2019-02-11 18:36:33.419865 1542 468 Product \N \N 4 User \N create ---\nsku: BOL-468\nname: DOGA599\ndescription: PORTA LAPTOP CLOE\nprice_base: !ruby/object:BigDecimal 18:0.9495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-468 fue creado. 189.186.41.207 2f772c75-c1b0-45d0-a6f9-8fed284ac668 2019-02-11 18:48:34.647156 1543 468 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000468'\n 2 \N 189.186.41.207 2f772c75-c1b0-45d0-a6f9-8fed284ac668 2019-02-11 18:48:34.689216 1544 468 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 468\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 2f772c75-c1b0-45d0-a6f9-8fed284ac668 2019-02-11 18:48:34.725426 1545 21 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-10\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nobservations: ''\npurchase_date: 2019-02-11\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-10 por $ 1899.0 MXN creada. 189.186.41.207 3eda1920-efa6-4dc8-a447-21255d929c7b 2019-02-11 18:48:39.119817 1546 468 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.41.207 3eda1920-efa6-4dc8-a447-21255d929c7b 2019-02-11 18:48:39.148977 1547 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-09 18:48:37.179449000 Z\n- &1 2019-02-09 19:25:58.310448000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-11 18:51:13.367448760 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 12\n- 13\n 29 \N 189.186.41.207 335b447d-0c4d-4903-bf01-23fe4ce9035c 2019-02-11 18:51:13.377462 1549 11 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.662E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 662.0 189.186.41.207 e8f06169-3e4e-4350-885b-1a8ab6e7c003 2019-02-11 18:51:40.198573 1550 58 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 11\namount: !ruby/object:BigDecimal 18:0.50776E3\ntax: !ruby/object:BigDecimal 18:0.8124E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2019-02-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-33\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 5df70422-c2aa-405a-95a3-9500b5d6885d 2019-02-11 18:51:57.28745 1551 247 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 5df70422-c2aa-405a-95a3-9500b5d6885d 2019-02-11 18:51:57.321382 1552 58 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 b0f419df-e611-417e-bfe9-b88915d742a8 2019-02-11 18:52:54.595749 1553 64 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 11\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.589E3\nmove_type: '1'\nsale_id: 58\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-33\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-33 189.186.41.207 b0f419df-e611-417e-bfe9-b88915d742a8 2019-02-11 18:52:54.62212 1554 469 Product \N \N 4 User \N create ---\nsku: BOL-469\nname: CANGURERA GUESS\ndescription: CANGURERA GUESS\nprice_base: !ruby/object:BigDecimal 18:0.5995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-469 fue creado. 189.186.41.207 93d1c5d2-f7bc-4726-8a50-444219336889 2019-02-11 19:00:00.310925 1555 469 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000469'\n 2 \N 189.186.41.207 93d1c5d2-f7bc-4726-8a50-444219336889 2019-02-11 19:00:00.349824 1556 469 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 469\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 93d1c5d2-f7bc-4726-8a50-444219336889 2019-02-11 19:00:00.381107 1557 22 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 2\npurchase_code: PV2-C-10\namount: !ruby/object:BigDecimal 18:0.17985E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.17985E4\nobservations: ''\npurchase_date: 2019-02-11\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-10 por $ 1798.5 MXN creada. 189.186.41.207 dd18f82b-0954-4111-bd40-722d97a471d6 2019-02-11 19:00:06.142442 1558 469 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.41.207 dd18f82b-0954-4111-bd40-722d97a471d6 2019-02-11 19:00:06.17662 1559 470 Product \N \N 4 User \N create ---\nsku: BOL-470\nname: CANGURERA GUESS\ndescription: CANGURERA GUESS\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-470 fue creado. 189.186.41.207 9b255412-0dce-4242-89da-4c3dea79abb8 2019-02-11 19:01:44.645661 1560 470 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000470'\n 2 \N 189.186.41.207 9b255412-0dce-4242-89da-4c3dea79abb8 2019-02-11 19:01:44.684837 1561 470 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 470\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 9b255412-0dce-4242-89da-4c3dea79abb8 2019-02-11 19:01:44.722673 1562 23 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-11\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nobservations: ''\npurchase_date: 2019-02-11\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-11 por $ 1399.0 MXN creada. 189.186.41.207 54ce89bb-fc72-48d4-bffc-c947d086f19d 2019-02-11 19:01:50.227375 1563 470 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.41.207 54ce89bb-fc72-48d4-bffc-c947d086f19d 2019-02-11 19:01:50.262376 1564 59 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 11\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-02-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-34\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 affc9b11-bb09-4b99-b186-ed8e3a4739dd 2019-02-11 19:36:54.238215 1565 155 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 affc9b11-bb09-4b99-b186-ed8e3a4739dd 2019-02-11 19:36:54.286608 1566 59 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 f6a1c213-d2bc-40ba-a274-4f21a45e993f 2019-02-11 19:37:18.089146 1567 65 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 11\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 59\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-34\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-34 189.186.41.207 f6a1c213-d2bc-40ba-a274-4f21a45e993f 2019-02-11 19:37:18.127675 1568 60 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 10\namount: !ruby/object:BigDecimal 18:0.49052E3\ntax: !ruby/object:BigDecimal 18:0.7848E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-02-11\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-24\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 ef23d79e-b0bd-422e-a150-3383affb4818 2019-02-11 19:52:26.198467 1569 410 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 ef23d79e-b0bd-422e-a150-3383affb4818 2019-02-11 19:52:26.237478 1570 60 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 1102988e-ce06-43be-9e85-015275b15fa1 2019-02-11 19:52:32.757598 1571 66 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 10\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.569E3\nmove_type: '1'\nsale_id: 60\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-24\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.569E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-24 189.186.41.207 1102988e-ce06-43be-9e85-015275b15fa1 2019-02-11 19:52:32.790454 1572 471 Product \N \N 4 User \N create ---\nsku: BOL-471\nname: TUVA586\ndescription: BOLSA CLOE\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-471 fue creado. 189.186.41.207 29237648-1ab7-45e7-9db6-2a4c936ca814 2019-02-11 20:42:17.250644 1573 471 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000471'\n 2 \N 189.186.41.207 29237648-1ab7-45e7-9db6-2a4c936ca814 2019-02-11 20:42:17.307955 1574 471 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 471\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 29237648-1ab7-45e7-9db6-2a4c936ca814 2019-02-11 20:42:17.367859 1575 24 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-12\namount: !ruby/object:BigDecimal 18:0.6995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6995E3\nobservations: ''\npurchase_date: 2019-02-11\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-12 por $ 699.5 MXN creada. 189.186.41.207 8ac69633-128b-41ef-b61d-238a5bc264a8 2019-02-11 20:42:37.699609 1576 471 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.207 8ac69633-128b-41ef-b61d-238a5bc264a8 2019-02-11 20:42:37.735497 1577 472 Product \N \N 4 User \N create ---\nsku: BOL-472\nname: TREC601\ndescription: BOLSA CLOE\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-472 fue creado. 189.186.41.207 4ceeb162-bf38-400b-94aa-9b1537a64f3a 2019-02-11 20:44:41.439062 1578 472 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000472'\n 2 \N 189.186.41.207 4ceeb162-bf38-400b-94aa-9b1537a64f3a 2019-02-11 20:44:41.483146 1579 472 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 472\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 4ceeb162-bf38-400b-94aa-9b1537a64f3a 2019-02-11 20:44:41.523628 1580 25 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-13\namount: !ruby/object:BigDecimal 18:0.6995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6995E3\nobservations: ''\npurchase_date: 2019-02-11\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-13 por $ 699.5 MXN creada. 189.186.41.207 b5fd0b29-f42a-4107-9631-10c22e152b52 2019-02-11 20:44:45.538001 1581 472 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.207 b5fd0b29-f42a-4107-9631-10c22e152b52 2019-02-11 20:44:45.564217 1582 25 Purchase \N \N 4 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Compra PV1-C-13 cancelada. 189.186.41.207 50d46c10-c373-4cd8-a74b-68be884aaf9c 2019-02-11 20:49:26.727453 1583 472 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.207 50d46c10-c373-4cd8-a74b-68be884aaf9c 2019-02-11 20:49:26.766027 1584 473 Product \N \N 4 User \N create ---\nsku: BOL-473\nname: EMEY780\ndescription: MOCHILA CLOE\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-473 fue creado. 189.186.41.207 6d63a972-cbe4-47c2-98ea-4fb325ce2af5 2019-02-11 20:52:05.841416 1585 473 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000473'\n 2 \N 189.186.41.207 6d63a972-cbe4-47c2-98ea-4fb325ce2af5 2019-02-11 20:52:05.886999 1586 473 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 473\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 6d63a972-cbe4-47c2-98ea-4fb325ce2af5 2019-02-11 20:52:05.927482 1587 26 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-14\namount: !ruby/object:BigDecimal 18:0.8995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.8995E3\nobservations: ''\npurchase_date: 2019-02-11\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-14 por $ 899.5 MXN creada. 189.186.41.207 26e7c27c-eb8c-49eb-aa1f-76e0c4e206d9 2019-02-11 20:52:11.318552 1588 473 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.207 26e7c27c-eb8c-49eb-aa1f-76e0c4e206d9 2019-02-11 20:52:11.344244 1589 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-10 21:01:54.369126000 Z\n- &1 2019-02-11 17:34:04.045732000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-11 20:58:41.588343474 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539493\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 14\n- 15\n 30 \N 189.186.41.207 e897d8d2-7eb6-47ac-b316-c8d6391a0050 2019-02-11 20:58:41.598052 1590 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2w4JPWBHQoRCMokGCaBj\n- Ly1e8ieca2P7zqD9eH_f\n 31 \N 189.186.41.207 e897d8d2-7eb6-47ac-b316-c8d6391a0050 2019-02-11 20:58:41.613214 1591 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-08 18:51:35.910370000 Z\n- &1 2019-02-11 17:10:15.612800000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-11 21:11:22.603657962 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 4\n- 5\n 10 \N 189.186.41.207 3c9265a1-5b5b-46bf-a8ae-f53ce24d20a0 2019-02-11 21:11:22.611122 1592 10 User \N \N 10 User \N update ---\nunique_session_id:\n- pQX9ALdugkwirtTaYkds\n- 2nHHX55M6EbmqPSyjgJu\n 11 \N 189.186.41.207 3c9265a1-5b5b-46bf-a8ae-f53ce24d20a0 2019-02-11 21:11:22.627476 1593 11 Customer \N \N 10 User \N create ---\nnick_name: IRMA SUGEY CARTAGENA\nphone: "(667) 785-1774"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.4E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente IRMA SUGEY CARTAGENA fue registrado. 189.186.41.207 eb6b2e49-cc59-4050-8ce8-b7f874c8f8e4 2019-02-11 21:12:58.05983 1594 61 Sale \N \N 10 User \N create ---\ncustomer_id: 11\nuser_id: 10\nopen_cash_register_id: 10\namount: !ruby/object:BigDecimal 18:0.116207E4\ntax: !ruby/object:BigDecimal 18:0.18593E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1348E4\nstatus: 0\ndate_sale: 2019-02-11\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-25\nexpiration_date: 2019-03-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 f382dd91-e949-4bc4-91bf-e8f6ade77a50 2019-02-11 21:14:18.056849 1595 409 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 f382dd91-e949-4bc4-91bf-e8f6ade77a50 2019-02-11 21:14:18.105518 1596 330 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 3 \N 189.186.41.207 f382dd91-e949-4bc4-91bf-e8f6ade77a50 2019-02-11 21:14:18.143289 1597 67 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 10\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.404E3\nmove_type: '1'\nsale_id: 61\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-25\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.96E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-25 189.186.41.207 c8e29d22-aff4-4d1a-b2eb-ece2c9cfbdd3 2019-02-11 21:14:31.881735 1598 67 CashRegistersMove \N \N 10 User \N destroy ---\nopen_cash_register_id: 10\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.404E3\nmove_type: '1'\nsale_id: 61\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-25\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.96E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.41.207 15e3a574-7e84-4aba-9205-1ad9a85dcbf7 2019-02-11 21:14:38.886152 1599 68 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 10\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 61\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-25\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-25 189.186.41.207 02971f18-7adf-4b18-9dab-f5d47ab72c22 2019-02-11 21:14:51.905007 1600 61 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 8429bac2-f5eb-4831-9494-8f14239de0de 2019-02-11 21:14:54.305416 1601 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-11 17:34:04.045732000 Z\n- &1 2019-02-11 20:58:41.588343000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-11 21:39:34.343930872 Z\nsign_in_count:\n- 15\n- 16\n 32 \N 189.186.41.207 30db8975-a427-4f4b-b202-b1705efdcbb2 2019-02-11 21:39:34.353164 1602 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Ly1e8ieca2P7zqD9eH_f\n- gPnu2Xz9pyYozMJVsiMR\n 33 \N 189.186.41.207 30db8975-a427-4f4b-b202-b1705efdcbb2 2019-02-11 21:39:34.375271 1603 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-10 00:18:26.616288000 Z\n- &1 2019-02-10 00:46:33.176208000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-11 22:09:27.100755695 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534101\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934292\n mask_addr: 4294967295\nsign_in_count:\n- 23\n- 24\n 48 \N 200.68.135.84 3fc781ab-8922-4768-aca9-2a32e9a2a308 2019-02-11 22:09:27.115597 1604 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 8fiDZoPAusr6H_791XVs\n- Zxxm82v-6hfgN1Laep3P\n 49 \N 200.68.135.84 3fc781ab-8922-4768-aca9-2a32e9a2a308 2019-02-11 22:09:27.136155 1605 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-09 19:25:58.310448000 Z\n- &1 2019-02-11 18:51:13.367448000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-11 22:10:11.838258942 Z\nsign_in_count:\n- 13\n- 14\n 31 \N 189.186.41.207 53e8654b-1f36-4daa-a254-570a4fbeed9b 2019-02-11 22:10:11.847134 1606 2 User \N \N 2 User \N update ---\nunique_session_id:\n- HsKfp2VedjFPFPReN8ZM\n- YsbqfMDS6Fxb6hFUj9hm\n 32 \N 189.186.41.207 53e8654b-1f36-4daa-a254-570a4fbeed9b 2019-02-11 22:10:11.865944 1607 62 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 11\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2019-02-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-35\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 b0ed926d-eb6c-4975-b93a-28b190f5820f 2019-02-11 22:12:53.605547 1608 452 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.207 b0ed926d-eb6c-4975-b93a-28b190f5820f 2019-02-11 22:12:53.662268 1609 62 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 9a84de87-0a10-40e0-ba5a-f6bbea1aa745 2019-02-11 22:13:28.264769 1610 69 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 11\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1699E4\nmove_type: '1'\nsale_id: 62\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-35\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1699E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-35 189.186.41.207 9a84de87-0a10-40e0-ba5a-f6bbea1aa745 2019-02-11 22:13:28.30793 1611 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-10 02:04:39.934522000 Z\n- &1 2019-02-10 16:49:16.062254000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-11 22:14:01.431969657 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934292\n mask_addr: 4294967295\nsign_in_count:\n- 9\n- 10\n 20 \N 200.68.135.84 c0fe63ce-0662-479a-a88a-1c8205f88b56 2019-02-11 22:14:01.442338 1612 3 User \N \N 3 User \N update ---\nunique_session_id:\n- TTTbZxhxiqUHxL4ZaJ2a\n- 3kziYPyyWivhUY7RaMzo\n 21 \N 200.68.135.84 c0fe63ce-0662-479a-a88a-1c8205f88b56 2019-02-11 22:14:01.464803 1613 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-11 20:58:41.588343000 Z\n- &1 2019-02-11 21:39:34.343930000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-11 23:47:05.822287347 Z\nsign_in_count:\n- 16\n- 17\n 34 \N 189.186.41.207 49eb7520-f5b8-4c3d-9425-715898b56fac 2019-02-11 23:47:05.831351 1614 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gPnu2Xz9pyYozMJVsiMR\n- BH9XHnk7q8w2Va2xxhTf\n 35 \N 189.186.41.207 49eb7520-f5b8-4c3d-9425-715898b56fac 2019-02-11 23:47:05.848752 1762 70 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 60a6c72e-821f-4baa-a924-5085e63a9423 2019-02-12 23:57:13.438531 1615 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-10 00:46:33.176208000 Z\n- &1 2019-02-11 22:09:27.100755000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-11 23:51:03.221721739 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934292\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934292\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 24\n- 25\n 50 \N 189.186.41.207 89e32199-ab3d-41d9-a79a-5866d00643f0 2019-02-11 23:51:03.232677 1616 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Zxxm82v-6hfgN1Laep3P\n- ebFiKQ_KvvLL4PAKWZTi\n 51 \N 189.186.41.207 89e32199-ab3d-41d9-a79a-5866d00643f0 2019-02-11 23:51:03.253167 1617 252 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 67f8d80c-dd8f-4eb9-bb0b-6752747c27d1 2019-02-12 00:14:51.2441 1618 11 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 24eb35ad-21bb-4778-be9a-64dc54175024 2019-02-12 00:15:34.51473 1619 154 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 9b84747e-c964-4539-af63-72050fdab262 2019-02-12 00:16:14.529706 1620 17 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 3a6b4f68-e3cf-4d3f-8149-7e007205d9c7 2019-02-12 00:16:35.861444 1621 2 Transfer \N \N 1 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-02-11\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.41.207 3e0606f8-d458-4488-af67-24ac168a5757 2019-02-12 00:17:30.815729 1622 63 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 10\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-02-11\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-26\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 45f40357-8576-49ee-8354-846c0580e40e 2019-02-12 00:20:20.755848 1623 420 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 45f40357-8576-49ee-8354-846c0580e40e 2019-02-12 00:20:20.797356 1624 63 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 87800551-4f9f-4f11-be74-7656a0c1c67a 2019-02-12 00:20:29.853626 1625 70 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 10\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 63\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-26\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-26 189.186.41.207 87800551-4f9f-4f11-be74-7656a0c1c67a 2019-02-12 00:20:29.890732 1626 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-11 17:10:15.612800000 Z\n- &1 2019-02-11 21:11:22.603657000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-12 00:21:51.119233441 Z\nsign_in_count:\n- 5\n- 6\n 12 \N 189.186.41.207 79409f96-4e53-4cdd-bf56-e5012cbbb9c6 2019-02-12 00:21:51.127817 1627 10 User \N \N 10 User \N update ---\nunique_session_id:\n- 2nHHX55M6EbmqPSyjgJu\n- VzY5ca4Bz17g__XFDYk6\n 13 \N 189.186.41.207 79409f96-4e53-4cdd-bf56-e5012cbbb9c6 2019-02-12 00:21:51.148036 1628 27 Purchase \N \N 1 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-11\namount: !ruby/object:BigDecimal 18:0.85176E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.85176E3\nobservations: ''\npurchase_date: 2019-02-11\nuser_id: '1'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-11 por $ 851.76 MXN creada. 189.186.41.207 8a97dc49-268e-4f22-9cd2-5a7198b1b5bd 2019-02-12 00:31:33.333836 1629 474 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 17\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 8a97dc49-268e-4f22-9cd2-5a7198b1b5bd 2019-02-12 00:31:33.36763 1630 12 Customer \N \N 2 User \N create ---\nnick_name: ALEJANDRA PEREZ\nphone: "(667) 466-8446"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.6E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ALEJANDRA PEREZ fue registrado. 189.186.41.207 6f5322ad-5f48-43c0-b392-32c134cab74e 2019-02-12 00:32:26.98503 1631 64 Sale \N \N 2 User \N create ---\ncustomer_id: 12\nuser_id: 2\nopen_cash_register_id: 11\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-02-11\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-36\nexpiration_date: 2019-03-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 4ed60e8d-9dae-41a6-bfe6-a9ed22ae92d0 2019-02-12 00:32:53.367321 1632 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.41.207 4ed60e8d-9dae-41a6-bfe6-a9ed22ae92d0 2019-02-12 00:32:53.4037 1633 71 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 11\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 64\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-36\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-36 189.186.41.207 7f199163-9c23-44df-bf09-529349763354 2019-02-12 00:33:14.226265 1634 64 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 11092c34-c8d0-48e1-b7ab-141e54685a9f 2019-02-12 00:33:16.385715 1635 65 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 10\namount: !ruby/object:BigDecimal 18:0.82586E3\ntax: !ruby/object:BigDecimal 18:0.13214E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.958E3\nstatus: 0\ndate_sale: 2019-02-11\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-27\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 81fe6006-8708-4dec-8290-8cfa2fec68ce 2019-02-12 01:32:52.146198 1636 323 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.207 81fe6006-8708-4dec-8290-8cfa2fec68ce 2019-02-12 01:32:52.190912 1637 315 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 81fe6006-8708-4dec-8290-8cfa2fec68ce 2019-02-12 01:32:52.247042 1638 65 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 f8f03b5d-21ed-4608-b636-d535efc4a4da 2019-02-12 01:32:59.113364 1639 72 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 10\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.958E3\nmove_type: '1'\nsale_id: 65\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-27\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.958E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-27 189.186.41.207 f8f03b5d-21ed-4608-b636-d535efc4a4da 2019-02-12 01:32:59.146646 1640 13 Customer \N \N 10 User \N create ---\nnick_name: DORA ELENA AVILES\nphone: "(667) 199-7149"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.4E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DORA ELENA AVILES fue registrado. 189.186.41.207 0553611a-8729-4ed5-8584-d44271807fd6 2019-02-12 01:36:29.396952 1641 66 Sale \N \N 10 User \N create ---\ncustomer_id: 13\nuser_id: 10\nopen_cash_register_id: 10\namount: !ruby/object:BigDecimal 18:0.5681E3\ntax: !ruby/object:BigDecimal 18:0.909E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.659E3\nstatus: 0\ndate_sale: 2019-02-11\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-28\nexpiration_date: 2019-03-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 4b837480-8a7f-42ba-92f3-20ec62888db6 2019-02-12 01:41:08.085478 1642 433 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 4b837480-8a7f-42ba-92f3-20ec62888db6 2019-02-12 01:41:08.120072 1643 73 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 10\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 66\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-28\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-28 189.186.41.207 6a67768c-67d1-44eb-9d3c-d84e5d33e453 2019-02-12 01:41:17.968189 1644 474 Product \N \N 1 User \N create ---\nsku: CON-474\nname: JMP-0002\ndescription: ''\nprice_base: !ruby/object:BigDecimal 18:0.356E3\nprice_sale: !ruby/object:BigDecimal 18:0.889E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 10\nproduct_service_key: '01010101'\n 1 El producto CON-474 fue creado. 189.186.41.207 14c4e3ca-6b29-4fce-8bc1-b5e61a9f8c07 2019-02-12 01:43:22.078663 1645 474 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0000474'\n 2 \N 189.186.41.207 14c4e3ca-6b29-4fce-8bc1-b5e61a9f8c07 2019-02-12 01:43:22.11832 1646 475 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 474\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 14c4e3ca-6b29-4fce-8bc1-b5e61a9f8c07 2019-02-12 01:43:22.162265 1647 66 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 50c3d273-c2ff-4591-b31d-188fc8af1afd 2019-02-12 01:47:37.709797 1648 475 Product \N \N 1 User \N create ---\nsku: CON-475\nname: JMP-0002\ndescription: SET COLOR LAVANDA A.PEACH\nprice_base: !ruby/object:BigDecimal 18:0.356E3\nprice_sale: !ruby/object:BigDecimal 18:0.889E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 10\nproduct_service_key: '01010101'\n 1 El producto CON-475 fue creado. 189.186.41.207 9fa6ecae-c82f-4f78-bc2f-55fea6fc84d3 2019-02-12 01:52:45.228094 1649 475 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0000475'\n 2 \N 189.186.41.207 9fa6ecae-c82f-4f78-bc2f-55fea6fc84d3 2019-02-12 01:52:45.269035 1650 476 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 475\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 9fa6ecae-c82f-4f78-bc2f-55fea6fc84d3 2019-02-12 01:52:45.31123 1651 28 Purchase \N \N 1 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-12\namount: !ruby/object:BigDecimal 18:0.2136E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2136E4\nobservations: ''\npurchase_date: 2019-02-11\nuser_id: '1'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-12 por $ 2136.0 MXN creada. 189.186.41.207 1adc7bc3-62cd-4a57-9639-1a1189177126 2019-02-12 01:52:53.31847 1652 476 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.207 1adc7bc3-62cd-4a57-9639-1a1189177126 2019-02-12 01:52:53.345721 1653 474 Product \N \N 1 User \N update ---\nstatus:\n- active\n- 0\n 3 El producto JMP-0002 fue eliminado. 189.186.41.207 54c95f9f-b0cd-4a05-a49c-0d19a2447fae 2019-02-12 01:54:08.998869 1654 476 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.41.207 790412d9-514c-4488-9f1e-e9af70ebc3ef 2019-02-12 01:59:09.135182 1655 476 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.41.207 bfb7298c-bcd4-4d77-8f34-27574396c4fb 2019-02-12 01:59:16.202907 1656 3 Transfer \N \N 1 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-02-11\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.41.207 71a1cecf-b1f1-4f60-b688-530f754a6d06 2019-02-12 01:59:20.454418 1657 255 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 57aadd04-455b-4a55-b120-0962c7c03591 2019-02-12 02:00:50.911592 1658 255 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.207 000ce3fe-41ad-4062-a99a-84f84970ea03 2019-02-12 02:00:57.104304 1659 4 Transfer \N \N 1 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-02-11\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.41.207 c598a0e2-0c6e-461e-8637-4c279fc97d78 2019-02-12 02:01:00.431469 1660 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-11 21:39:34.343930000 Z\n- &1 2019-02-11 23:47:05.822287000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-12 02:04:55.599686211 Z\nsign_in_count:\n- 17\n- 18\n 36 \N 189.186.41.207 ada531e3-1e86-4a86-89f7-2cad9e3ca3ba 2019-02-12 02:04:55.606362 1661 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BH9XHnk7q8w2Va2xxhTf\n- TbDe9DdsMy7Z-wwNAQpv\n 37 \N 189.186.41.207 ada531e3-1e86-4a86-89f7-2cad9e3ca3ba 2019-02-12 02:04:55.621392 6797 504 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 7b7c1874-a545-42cf-af0c-2ba67d35b86a 2019-05-08 21:52:14.791587 1662 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-11 21:11:22.603657000 Z\n- &1 2019-02-12 00:21:51.119233000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-12 02:25:44.256484423 Z\nsign_in_count:\n- 6\n- 7\n 14 \N 189.186.41.207 9e86b56c-c1b6-45b0-bbcf-8da0ac262df4 2019-02-12 02:25:44.265916 1663 10 User \N \N 10 User \N update ---\nunique_session_id:\n- VzY5ca4Bz17g__XFDYk6\n- TaHG3JhT6rMatTY6Dxzp\n 15 \N 189.186.41.207 9e86b56c-c1b6-45b0-bbcf-8da0ac262df4 2019-02-12 02:25:44.286741 1664 9 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 10\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.3226E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.3158E4\ncash_fund: !ruby/object:BigDecimal 18:0.1013E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4171E4\nobservations: 'CORTE SAMANTHA '\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 3d020faa-b137-4d63-9223-67a5a6de8262 2019-02-12 02:32:02.647733 1665 10 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 3d020faa-b137-4d63-9223-67a5a6de8262 2019-02-12 02:32:02.667579 1666 10 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 11\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3487E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.345E4\ncash_fund: !ruby/object:BigDecimal 18:0.699E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4149E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 71e38e32-9e21-42bc-8993-ccacc672405b 2019-02-12 02:37:52.202301 1667 11 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 71e38e32-9e21-42bc-8993-ccacc672405b 2019-02-12 02:37:52.221711 1668 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-02-07 06:10:28.321365000 Z\n- &1 2019-02-07 07:43:35.918167000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-12 06:56:44.155608022 Z\nsign_in_count:\n- 7\n- 8\n 16 \N 189.252.59.239 bfe2fe68-4f44-4cec-8def-06665d056afa 2019-02-12 06:56:44.191311 1669 5 User \N \N 5 User \N update ---\nunique_session_id:\n- tFaRvaop4oZdw3mg3_-V\n- srx5_uMVuBRJp4B3HvnQ\n 17 \N 189.252.59.239 bfe2fe68-4f44-4cec-8def-06665d056afa 2019-02-12 06:56:44.214568 1670 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-11 18:51:13.367448000 Z\n- &1 2019-02-11 22:10:11.838258000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-12 16:24:07.291253192 Z\nsign_in_count:\n- 14\n- 15\n 33 \N 189.186.41.207 54055899-7c57-4b83-a6b0-173d00959054 2019-02-12 16:24:07.334639 1671 2 User \N \N 2 User \N update ---\nunique_session_id:\n- YsbqfMDS6Fxb6hFUj9hm\n- xEfeCcaeUc1XykPDQ1h1\n 34 \N 189.186.41.207 54055899-7c57-4b83-a6b0-173d00959054 2019-02-12 16:24:07.364969 1672 12 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.699E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 699.0 189.186.41.207 1863d04d-d4d7-472d-90d7-ea65920466f2 2019-02-12 16:24:35.478053 1673 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-11 22:09:27.100755000 Z\n- &1 2019-02-11 23:51:03.221721000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-12 16:25:28.233857767 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934292\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 25\n- 26\n 52 \N 189.186.41.207 0cbd25a3-b6ba-4649-b859-34260d87a5f7 2019-02-12 16:25:28.24462 1674 1 User \N \N 1 User \N update ---\nunique_session_id:\n- ebFiKQ_KvvLL4PAKWZTi\n- pNrXJiY9N2riJXXGGUAV\n 53 \N 189.186.41.207 0cbd25a3-b6ba-4649-b859-34260d87a5f7 2019-02-12 16:25:28.26666 1675 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-11 23:51:03.221721000 Z\n- &1 2019-02-12 16:25:28.233857000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-12 17:09:26.942821405 Z\nsign_in_count:\n- 26\n- 27\n 54 \N 189.186.41.207 5c489cfe-1f98-4519-88a6-9d4d144403ad 2019-02-12 17:09:26.963692 1676 1 User \N \N 1 User \N update ---\nunique_session_id:\n- pNrXJiY9N2riJXXGGUAV\n- xrzvrswkKKBJRiihvB_J\n 55 \N 189.186.41.207 5c489cfe-1f98-4519-88a6-9d4d144403ad 2019-02-12 17:09:26.982347 1677 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-12 00:21:51.119233000 Z\n- &1 2019-02-12 02:25:44.256484000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-12 17:28:39.658277041 Z\nsign_in_count:\n- 7\n- 8\n 16 \N 189.186.41.207 d5c0eb5e-f85a-43de-9b36-0961c0e0bc46 2019-02-12 17:28:39.665671 1678 10 User \N \N 10 User \N update ---\nunique_session_id:\n- TaHG3JhT6rMatTY6Dxzp\n- 7pHtJGZ7iFnE8CebcyWz\n 17 \N 189.186.41.207 d5c0eb5e-f85a-43de-9b36-0961c0e0bc46 2019-02-12 17:28:39.682369 1679 13 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.1013E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1013.0 189.186.41.207 d2376309-af9a-47a1-a176-af1933f25a09 2019-02-12 17:28:44.077549 1680 4 Transfer \N \N 10 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 10\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-02-12\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.41.207 2e39cbc4-64bc-405a-bb53-9773ee678739 2019-02-12 17:29:56.539319 1681 477 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 257\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 2e39cbc4-64bc-405a-bb53-9773ee678739 2019-02-12 17:29:56.580615 1682 3 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-02-12\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.41.207 185ce81f-0db3-4f85-9ba2-b0c328bd7c29 2019-02-12 17:36:18.847135 1683 478 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 475\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 185ce81f-0db3-4f85-9ba2-b0c328bd7c29 2019-02-12 17:36:18.880203 1684 2 Transfer \N \N 10 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 10\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-02-12\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.41.207 924002d9-0437-4f41-91d1-9158646cf6b8 2019-02-12 17:37:09.250181 1685 479 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 254\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 924002d9-0437-4f41-91d1-9158646cf6b8 2019-02-12 17:37:09.294178 1686 480 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 13\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 924002d9-0437-4f41-91d1-9158646cf6b8 2019-02-12 17:37:09.338714 1687 481 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 156\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 924002d9-0437-4f41-91d1-9158646cf6b8 2019-02-12 17:37:09.379347 9550 745 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 1c94d61a-ac84-4d36-aa9a-7bace01fdb5c 2019-06-15 20:15:41.826328 1688 482 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 19\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 924002d9-0437-4f41-91d1-9158646cf6b8 2019-02-12 17:37:09.420462 1689 252 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 b610dd19-e3fc-444a-b67e-ec52353a0aef 2019-02-12 17:41:21.705114 1690 252 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.207 85806b83-fab4-4e1f-a136-1c3698631b5d 2019-02-12 17:41:27.144662 1691 11 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 65217263-2674-4a12-ad0a-8be172228387 2019-02-12 17:43:21.993743 1692 11 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.207 9b1707b3-247d-4586-be91-bc99c0943551 2019-02-12 17:43:25.872411 1693 154 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 4c3380be-ef69-4af3-88ec-7906e045810e 2019-02-12 17:43:38.432307 1694 154 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.207 97e9ec5e-c364-474a-9242-1aaad01f2592 2019-02-12 17:43:41.764042 1695 17 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 d6481fca-dcbe-46fb-89e1-d9ffd303e5b5 2019-02-12 17:43:53.993065 1696 17 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.207 c568c93b-2e2d-461c-9cc7-c769b0633571 2019-02-12 17:43:58.570305 1697 5 Transfer \N \N 1 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-02-12\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.41.207 129e106a-d03d-473e-85e5-7c03f321b234 2019-02-12 17:44:09.695278 1698 5 Transfer \N \N 10 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 10\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-02-12\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.41.207 56a902ee-e3b6-4f8d-a237-e8ecd502d6be 2019-02-12 17:48:54.788294 1699 479 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.207 56a902ee-e3b6-4f8d-a237-e8ecd502d6be 2019-02-12 17:48:54.816766 1700 480 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.207 56a902ee-e3b6-4f8d-a237-e8ecd502d6be 2019-02-12 17:48:54.848255 1701 481 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.207 56a902ee-e3b6-4f8d-a237-e8ecd502d6be 2019-02-12 17:48:54.883715 1702 482 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.207 56a902ee-e3b6-4f8d-a237-e8ecd502d6be 2019-02-12 17:48:54.918893 1703 140 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 bba1d629-faba-4000-ba28-e4ce4ceb7f6a 2019-02-12 18:48:51.237124 1704 140 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.207 e0524cf0-2979-498f-8a45-b9d405ca499b 2019-02-12 18:48:55.271922 1705 142 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 54d95a24-4f10-4cd6-95d1-6ab78af9eba3 2019-02-12 18:53:18.639261 1706 142 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.207 31af7eb4-4ff8-4ce9-ae6d-608e4b27450d 2019-02-12 18:53:22.567837 1707 136 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 32b7bec6-7345-483f-8d3f-28ad54298df4 2019-02-12 18:55:19.746505 1708 136 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.207 c29be28f-38ba-4db8-9497-e439c7c08369 2019-02-12 18:55:23.92379 1709 6 Transfer \N \N 1 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-02-12\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.41.207 fd28ce6f-b6b6-4419-bfcc-61836ed61463 2019-02-12 18:57:18.645183 1710 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-10 16:49:16.062254000 Z\n- &1 2019-02-11 22:14:01.431969000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-12 19:06:56.794409156 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934292\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934292\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 10\n- 11\n 22 \N 189.186.41.207 8ab027b7-3f7c-4806-9849-a1ec33f8f462 2019-02-12 19:06:56.806833 1711 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 3kziYPyyWivhUY7RaMzo\n- EiHx5sfxjnf9TRv61knu\n 23 \N 189.186.41.207 8ab027b7-3f7c-4806-9849-a1ec33f8f462 2019-02-12 19:06:56.831875 1712 6 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-02-12\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.41.207 c259b393-9144-4acd-a875-fbf027ba00da 2019-02-12 19:07:41.708162 1713 483 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 142\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 c259b393-9144-4acd-a875-fbf027ba00da 2019-02-12 19:07:41.739363 1714 484 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 144\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 c259b393-9144-4acd-a875-fbf027ba00da 2019-02-12 19:07:41.771391 1715 485 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 138\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 c259b393-9144-4acd-a875-fbf027ba00da 2019-02-12 19:07:41.807059 1851 360 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.207 4d98c163-a73c-4de2-a3d9-15ec0b766eb8 2019-02-13 23:58:51.447838 1852 446 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.207 4d98c163-a73c-4de2-a3d9-15ec0b766eb8 2019-02-13 23:58:51.486203 1716 476 Product \N \N 1 User \N create ---\nsku: BLU-476\nname: BASICA\ndescription: BLUSA DE TIRANTE EN VARIOS COLORES\nprice_base: !ruby/object:BigDecimal 18:0.495E2\nprice_sale: !ruby/object:BigDecimal 18:0.99E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-476 fue creado. 189.186.41.207 d1368d60-262e-4688-8d16-58edc6631c2f 2019-02-12 19:33:39.92055 1717 476 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0000476'\n 2 \N 189.186.41.207 d1368d60-262e-4688-8d16-58edc6631c2f 2019-02-12 19:33:39.970325 1718 486 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 476\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 d1368d60-262e-4688-8d16-58edc6631c2f 2019-02-12 19:33:40.033016 1719 29 Purchase \N \N 1 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-15\namount: !ruby/object:BigDecimal 18:0.396E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.396E4\nobservations: ''\npurchase_date: 2019-02-12\nuser_id: '1'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-15 por $ 3960.0 MXN creada. 189.186.41.207 29aa642a-a0dd-4aef-bc68-9b957c01d7a0 2019-02-12 19:36:39.083608 1720 486 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.8E2\n 2 \N 189.186.41.207 29aa642a-a0dd-4aef-bc68-9b957c01d7a0 2019-02-12 19:36:39.120098 1721 486 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E2\n- !ruby/object:BigDecimal 18:0.79E2\n 3 \N 189.186.41.207 fa5b2650-d743-46c3-8832-5eea72f5be60 2019-02-12 19:37:24.143619 1722 486 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.79E2\n- !ruby/object:BigDecimal 18:0.59E2\n 4 \N 189.186.41.207 0a9f385f-c42e-4deb-aae2-b7de82faf739 2019-02-12 19:37:31.409888 1723 7 Transfer \N \N 1 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-02-12\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.41.207 6038f609-8eef-4f03-94e8-6a83176cf7a7 2019-02-12 19:38:24.03039 1724 7 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-02-12\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.41.207 7eef8935-fbd0-4aff-a16b-3042074b5954 2019-02-12 20:26:05.606817 1725 487 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 476\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.21E2\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 7eef8935-fbd0-4aff-a16b-3042074b5954 2019-02-12 20:26:05.640234 1726 74 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 13\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.848E3\nmove_type: '1'\nsale_id: 61\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.152E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-25 189.186.41.207 e85731db-5a39-4eeb-8f40-b271ab851b5d 2019-02-12 20:31:32.72998 1727 61 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.207 7e0bf449-b30d-4ec6-8641-074ddd3a445d 2019-02-12 20:31:34.281321 1728 14 Customer \N \N 2 User \N create ---\nnick_name: CYNTHIA TELCEL\nphone: ''\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.6E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CYNTHIA TELCEL fue registrado. 189.186.41.207 f0f6ca2c-e3f7-4086-82cb-581e63de177f 2019-02-12 21:01:26.826157 1729 67 Sale \N \N 2 User \N create ---\ncustomer_id: 14\nuser_id: 2\nopen_cash_register_id: 12\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2019-02-12\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-37\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 88ee403c-ecbf-44f5-b27a-395383b25340 2019-02-12 21:02:22.065006 1730 450 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.207 88ee403c-ecbf-44f5-b27a-395383b25340 2019-02-12 21:02:22.110438 1731 75 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 12\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 67\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 13bedf1a-3d00-437c-a1e5-3e4e91a30fe0 2019-02-12 21:03:31.200838 1732 67 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 13bedf1a-3d00-437c-a1e5-3e4e91a30fe0 2019-02-12 21:03:31.227662 1733 75 CashRegistersMove \N \N 2 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV1-V-37 189.186.41.207 13bedf1a-3d00-437c-a1e5-3e4e91a30fe0 2019-02-12 21:03:31.266464 1734 68 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 12\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-02-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-38\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 04bac9ba-172a-4388-b986-04b88b7dcdb6 2019-02-12 23:26:35.1418 1735 86 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 1 \N 189.186.41.207 04bac9ba-172a-4388-b986-04b88b7dcdb6 2019-02-12 23:26:35.181761 1736 68 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 76bbbf12-504e-45af-8e4b-e41915b656db 2019-02-12 23:27:39.800979 1737 76 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 12\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 68\ncardnumber: 5615\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-38\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-38 189.186.41.207 76bbbf12-504e-45af-8e4b-e41915b656db 2019-02-12 23:27:39.835501 1738 76 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 12\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 68\ncardnumber: 5615\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-38\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.41.207 156b1cdd-d594-4090-9088-05bc56646187 2019-02-12 23:29:35.063341 1739 77 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 12\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 68\ncardnumber: 8272\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-38\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-38 189.186.41.207 dafee875-833a-46d4-8488-9a00c13515ba 2019-02-12 23:29:51.83428 1740 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-11 23:47:05.822287000 Z\n- &1 2019-02-12 02:04:55.599686000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-12 23:49:35.851066842 Z\nsign_in_count:\n- 18\n- 19\n 38 \N 189.186.41.207 0c52b339-05c4-4f40-9c4c-c85f31d5c7e5 2019-02-12 23:49:35.888666 1741 4 User \N \N 4 User \N update ---\nunique_session_id:\n- TbDe9DdsMy7Z-wwNAQpv\n- AXHaWzFiJfRCmyNaUYs6\n 39 \N 189.186.41.207 0c52b339-05c4-4f40-9c4c-c85f31d5c7e5 2019-02-12 23:49:35.917953 1742 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-07 02:40:49.730857000 Z\n- &1 2019-02-08 17:21:30.065649000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-12 23:50:53.496907823 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 7\n- 8\n 16 \N 189.186.41.207 3102ea2f-4e03-4fcd-96c8-adf8b9cc383c 2019-02-12 23:50:53.506526 1743 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 8FiD4KSnMz6JFF1gspQQ\n- gCaBnfKEFMs7i_HDHL2u\n 17 \N 189.186.41.207 3102ea2f-4e03-4fcd-96c8-adf8b9cc383c 2019-02-12 23:50:53.527655 1744 15 Customer \N \N 9 User \N create ---\nnick_name: HUMBERTO\nphone: "(667) 174-7327"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.6E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente HUMBERTO fue registrado. 189.186.41.207 de4d5fcd-1bc0-4c9e-a156-fbfeec12cfb2 2019-02-12 23:51:33.816282 1745 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-12 02:04:55.599686000 Z\n- &1 2019-02-12 23:49:35.851066000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-12 23:53:42.527695400 Z\nsign_in_count:\n- 19\n- 20\n 40 \N 189.186.41.207 bd05d7e3-f709-4033-8e81-4723ba20b053 2019-02-12 23:53:42.534896 1746 4 User \N \N 4 User \N update ---\nunique_session_id:\n- AXHaWzFiJfRCmyNaUYs6\n- mA5QDU-oiiu16VNgcmbs\n 41 \N 189.186.41.207 bd05d7e3-f709-4033-8e81-4723ba20b053 2019-02-12 23:53:42.549183 1747 477 Product \N \N 4 User \N create ---\nsku: ZAP-477\nname: SIGR836\ndescription: TENNIS\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 13\nproduct_service_key: '01010101'\n 1 El producto ZAP-477 fue creado. 189.186.41.207 e8ae0cec-2104-485f-acae-5a8fefff290c 2019-02-12 23:55:04.439039 1748 477 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000477'\n 2 \N 189.186.41.207 e8ae0cec-2104-485f-acae-5a8fefff290c 2019-02-12 23:55:04.492016 1749 488 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 477\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 e8ae0cec-2104-485f-acae-5a8fefff290c 2019-02-12 23:55:04.55285 1750 30 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-16\namount: !ruby/object:BigDecimal 18:0.48965E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.48965E4\nobservations: ''\npurchase_date: 2019-02-12\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-16 por $ 4896.5 MXN creada. 189.186.41.207 d22eddc2-b733-4dbc-bcee-130b0a3e6577 2019-02-12 23:55:10.923985 1751 488 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.7E1\n 2 \N 189.186.41.207 d22eddc2-b733-4dbc-bcee-130b0a3e6577 2019-02-12 23:55:10.955574 1752 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-08 17:21:30.065649000 Z\n- &1 2019-02-12 23:50:53.496907000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-12 23:55:30.745427674 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093624\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 8\n- 9\n 18 \N 189.186.41.207 894e86fb-7393-4e89-ad6b-eeeebf8082e2 2019-02-12 23:55:30.754867 1753 9 User \N \N 9 User \N update ---\nunique_session_id:\n- gCaBnfKEFMs7i_HDHL2u\n- TVVbaoQtdK2T4-S_KAv9\n 19 \N 189.186.41.207 894e86fb-7393-4e89-ad6b-eeeebf8082e2 2019-02-12 23:55:30.774333 1754 16 Customer \N \N 9 User \N create ---\nnick_name: HUMBERTO\nphone: "(667) 174-7327"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.6E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente HUMBERTO fue registrado. 189.186.41.207 6d0234a2-1fc7-4ddc-82dd-001edc47668b 2019-02-12 23:56:01.650529 1755 69 Sale \N \N 9 User \N create ---\ncustomer_id: 16\nuser_id: 9\nopen_cash_register_id: 12\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-02-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-39\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 2a72501e-f9e2-4528-896b-057be924678a 2019-02-12 23:56:24.691784 1756 488 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.41.207 2a72501e-f9e2-4528-896b-057be924678a 2019-02-12 23:56:24.734673 1757 69 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-39 cancelada. 189.186.41.207 d59ccdda-ad0e-406b-873c-e95b8e5d518f 2019-02-12 23:56:35.565839 1758 488 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 4 \N 189.186.41.207 d59ccdda-ad0e-406b-873c-e95b8e5d518f 2019-02-12 23:56:35.601404 1759 70 Sale \N \N 9 User \N create ---\ncustomer_id: 16\nuser_id: 9\nopen_cash_register_id: 12\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-02-12\nsaletype: 2\nseller_id: 3\nsale_code: PV1-V-40\nexpiration_date: 2019-03-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 63a9828a-77cc-4360-8c22-3ea85de579b4 2019-02-12 23:57:00.902307 1760 488 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.41.207 63a9828a-77cc-4360-8c22-3ea85de579b4 2019-02-12 23:57:00.942801 1761 78 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 12\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 70\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-40\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-40 189.186.41.207 2fb048ba-b3ab-40a9-957c-3890249cc25f 2019-02-12 23:57:08.713883 1763 71 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 12\namount: !ruby/object:BigDecimal 18:0.41293E3\ntax: !ruby/object:BigDecimal 18:0.6607E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-02-12\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-41\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 6eaa5fdc-e3a5-4e36-bf7a-a112ba744b25 2019-02-13 00:35:48.71679 1764 149 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 6eaa5fdc-e3a5-4e36-bf7a-a112ba744b25 2019-02-13 00:35:48.7565 1765 71 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 c36fb400-ba63-4e5b-836a-886c145bf57a 2019-02-13 00:36:08.506686 1766 79 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 12\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.479E3\nmove_type: '1'\nsale_id: 71\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-41\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-41 189.186.41.207 c36fb400-ba63-4e5b-836a-886c145bf57a 2019-02-13 00:36:08.538893 1767 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-12 23:49:35.851066000 Z\n- &1 2019-02-12 23:53:42.527695000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-13 01:49:42.600313414 Z\nsign_in_count:\n- 20\n- 21\n 42 \N 189.186.41.207 46050f81-9554-4e0b-9bc5-4a71f95ba656 2019-02-13 01:49:42.629147 1768 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mA5QDU-oiiu16VNgcmbs\n- 3o_4J4aEtszsW-UAtnyJ\n 43 \N 189.186.41.207 46050f81-9554-4e0b-9bc5-4a71f95ba656 2019-02-13 01:49:42.651194 1769 11 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 12\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.1878E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.14E4\ncash_fund: !ruby/object:BigDecimal 18:0.678E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2078E4\nobservations: FALTAN 22 CAJA\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 5452f9c4-866f-4574-bc21-e44cc1fe8e73 2019-02-13 02:36:20.86217 1770 12 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 5452f9c4-866f-4574-bc21-e44cc1fe8e73 2019-02-13 02:36:20.884203 1771 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-12 16:25:28.233857000 Z\n- &1 2019-02-12 17:09:26.942821000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-13 04:12:34.103517967 Z\nsign_in_count:\n- 27\n- 28\n 56 \N 189.186.41.207 bc496474-3264-4d25-8bd6-ca056d70b3ef 2019-02-13 04:12:34.11223 1772 1 User \N \N 1 User \N update ---\nunique_session_id:\n- xrzvrswkKKBJRiihvB_J\n- 97eyx4Mv5zv9Dp4VqXxv\n 57 \N 189.186.41.207 bc496474-3264-4d25-8bd6-ca056d70b3ef 2019-02-13 04:12:34.132817 1773 2 Pointsale \N \N 1 User \N update ---\nimg_pointsale:\n- !ruby/object:ImageUploader\n model: &10 !ruby/object:Pointsale\n raw_attributes:\n id: '2'\n name: 'S BY SUO '\n address: 'MORELOS 297 LOCAL 5 CENTRO '\n notes: "MORELOS #297 LOC. 5\\r\\nCENTRO C.P 80000\\r\\nCULIACAN, SIN\\r\\nTEL.6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: S.BYSUO\\r\\nINSTAGRAM: S BY SUO "\n prefix: PV2\n img_pointsale: Sin_título.png\n ticket_footer: "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO CAMBIOS NI DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS\\r\\n* NO SE REGRESA EFECTIVO POR NINGÚN MOTIVO\\r\\n*NO\n SE ACEPTA MERCANCÍA EN MAL ESTADO Y SIN ETIQUETA "\n haggle_percent: '100.0'\n tax_regime: '601'\n business_name: 'SUO BOUTIQUE '\n federal_taxpayer_registration: UIOS851003XXX\n postal_code: '80000'\n status: '1'\n created_at: '2019-02-02 01:18:08.966764'\n updated_at: &7 2019-02-13 04:13:35.563628329 Z\n img_pointsale_file_name: \n img_pointsale_content_type: \n img_pointsale_file_size: \n img_pointsale_updated_at: \n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &2 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n name: &1 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n address: *1\n notes: &4 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n status: *2\n created_at: &6 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n updated_at: &8 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n prefix: *4\n img_pointsale_file_name: *1\n img_pointsale_content_type: *1\n img_pointsale_file_size: *2\n img_pointsale_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n ticket_footer: *1\n img_pointsale: *1\n haggle_percent: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n federal_taxpayer_registration: *1\n business_name: *1\n tax_regime: *2\n postal_code: *2\n values:\n id: '2'\n name: 'S BY SUO '\n address: 'MORELOS 297 LOCAL 5 CENTRO '\n notes: "MORELOS #297 LOC. 5\\r\\nCENTRO C.P 80000\\r\\nCULIACAN, SIN\\r\\nTEL.6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: S.BYSUO\\r\\nINSTAGRAM: S BY SUO "\n status: '1'\n created_at: '2019-02-02 01:18:08.966764'\n updated_at: '2019-02-02 01:21:27.053564'\n prefix: PV2\n img_pointsale_file_name: \n img_pointsale_content_type: \n img_pointsale_file_size: \n img_pointsale_updated_at: \n ticket_footer: "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO CAMBIOS NI\n DEVOLUCIONES EN PROMOCIONES Y APARTADOS\\r\\n* NO SE REGRESA EFECTIVO POR\n NINGÚN MOTIVO\\r\\n*NO SE ACEPTA MERCANCÍA EN MAL ESTADO Y SIN ETIQUETA "\n img_pointsale: 26c8bf28-ac8f-4a5d-8c31-c8c1f3bfa8eb.JPG\n haggle_percent: '100.00'\n federal_taxpayer_registration: UIOS851003XXX\n business_name: 'SUO BOUTIQUE '\n tax_regime: '601'\n postal_code: '80000'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '2'\n type: *2\n value: 2\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 'S BY SUO '\n type: *1\n value: 'S BY SUO '\n address: !ruby/object:ActiveRecord::Attribute::FromUser\n name: address\n value_before_type_cast: 'MORELOS 297 LOCAL 5 CENTRO '\n type: *1\n value: 'MORELOS 297 LOCAL 5 CENTRO '\n notes: !ruby/object:ActiveRecord::Attribute::FromUser\n name: notes\n value_before_type_cast: "MORELOS #297 LOC. 5\\r\\nCENTRO C.P 80000\\r\\nCULIACAN,\n SIN\\r\\nTEL.6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: S.BYSUO\\r\\nINSTAGRAM:\n S BY SUO "\n type: *4\n value: "MORELOS #297 LOC. 5\\r\\nCENTRO C.P 80000\\r\\nCULIACAN, SIN\\r\\nTEL.6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: S.BYSUO\\r\\nINSTAGRAM: S BY SUO "\n prefix: !ruby/object:ActiveRecord::Attribute::FromUser\n name: prefix\n value_before_type_cast: PV2\n type: *4\n value: PV2\n img_pointsale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_pointsale\n value_before_type_cast: Sin_título.png\n type: *1\n value: Sin_título.png\n ticket_footer: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_footer\n value_before_type_cast: "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO\n CAMBIOS NI DEVOLUCIONES EN PROMOCIONES Y APARTADOS\\r\\n* NO SE REGRESA\n EFECTIVO POR NINGÚN MOTIVO\\r\\n*NO SE ACEPTA MERCANCÍA EN MAL ESTADO\n Y SIN ETIQUETA "\n type: *1\n value: "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO CAMBIOS NI DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS\\r\\n* NO SE REGRESA EFECTIVO POR NINGÚN MOTIVO\\r\\n*NO\n SE ACEPTA MERCANCÍA EN MAL ESTADO Y SIN ETIQUETA "\n haggle_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: haggle_percent\n value_before_type_cast: '100.0'\n type: *5\n value: !ruby/object:BigDecimal 18:0.1E3\n tax_regime: !ruby/object:ActiveRecord::Attribute::FromUser\n name: tax_regime\n value_before_type_cast: '601'\n type: *2\n value: 601\n business_name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: business_name\n value_before_type_cast: 'SUO BOUTIQUE '\n type: *1\n value: 'SUO BOUTIQUE '\n federal_taxpayer_registration: !ruby/object:ActiveRecord::Attribute::FromUser\n name: federal_taxpayer_registration\n value_before_type_cast: UIOS851003XXX\n type: *1\n value: UIOS851003XXX\n postal_code: !ruby/object:ActiveRecord::Attribute::FromUser\n name: postal_code\n value_before_type_cast: '80000'\n type: *2\n value: 80000\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *2\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:18:08.966764'\n type: *6\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *7\n type: *8\n value: *7\n img_pointsale_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_pointsale_file_name\n value_before_type_cast: \n type: *1\n img_pointsale_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_pointsale_content_type\n value_before_type_cast: \n type: *1\n img_pointsale_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_pointsale_file_size\n value_before_type_cast: \n type: *2\n img_pointsale_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_pointsale_updated_at\n value_before_type_cast: \n type: *9\n new_record: false\n mounted_as: :img_pointsale\n storage: &11 !ruby/object:CarrierWave::Storage::File\n uploader: &12 !ruby/object:ImageUploader\n model: *10\n mounted_as: :img_pointsale\n storage: *11\n file: &16 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/26c8bf28-ac8f-4a5d-8c31-c8c1f3bfa8eb.JPG"\n original_filename: \n content_type: \n versions: &17\n :thumb: &13 !ruby/object:ImageUploader::Uploader63734340\n model: *10\n mounted_as: :img_pointsale\n parent_version: *12\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *13\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_26c8bf28-ac8f-4a5d-8c31-c8c1f3bfa8eb.JPG"\n original_filename: \n content_type: \n versions: {}\n :medium: &14 !ruby/object:ImageUploader::Uploader63721880\n model: *10\n mounted_as: :img_pointsale\n parent_version: *12\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *14\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_26c8bf28-ac8f-4a5d-8c31-c8c1f3bfa8eb.JPG"\n original_filename: \n content_type: \n versions: {}\n :small: &15 !ruby/object:ImageUploader::Uploader63717800\n model: *10\n mounted_as: :img_pointsale\n parent_version: *12\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *15\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_26c8bf28-ac8f-4a5d-8c31-c8c1f3bfa8eb.JPG"\n original_filename: \n content_type: \n versions: {}\n file: *16\n versions: *17\n- Sin_título.png\n 3 \N 189.186.41.207 14ce8857-3d7a-4287-bcfd-0cddd51a4e36 2019-02-13 04:13:35.654567 1774 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-11 22:10:11.838258000 Z\n- &1 2019-02-12 16:24:07.291253000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-13 16:55:25.537685270 Z\nsign_in_count:\n- 15\n- 16\n 35 \N 189.186.41.207 4e2b2e9b-c080-4502-96c3-0a47778968bb 2019-02-13 16:55:25.582083 1775 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xEfeCcaeUc1XykPDQ1h1\n- zrM1CJnCA6sbPQDsCqq6\n 36 \N 189.186.41.207 4e2b2e9b-c080-4502-96c3-0a47778968bb 2019-02-13 16:55:25.608763 1776 14 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.678E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 678.0 189.186.41.207 5c898831-a693-4e10-b9ee-80be236ba840 2019-02-13 17:18:03.00446 1777 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-12 02:25:44.256484000 Z\n- &1 2019-02-12 17:28:39.658277000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-13 17:54:11.411398349 Z\nsign_in_count:\n- 8\n- 9\n 18 \N 189.186.41.207 7c180cdc-d48b-4de3-86e0-8c4839990f41 2019-02-13 17:54:11.434926 1778 10 User \N \N 10 User \N update ---\nunique_session_id:\n- 7pHtJGZ7iFnE8CebcyWz\n- zM-KGmmi4AE1-7RA5Xkf\n 19 \N 189.186.41.207 7c180cdc-d48b-4de3-86e0-8c4839990f41 2019-02-13 17:54:11.463866 1779 12 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 13\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.848E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.1361E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1861E4\nobservations: REALIZO CORTE DEL 12/02/19\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 1b2e2719-155c-43ee-97ee-4c84bc0e67f9 2019-02-13 17:57:13.692516 1780 13 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 1b2e2719-155c-43ee-97ee-4c84bc0e67f9 2019-02-13 17:57:13.716842 1781 15 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.1361E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1361.0 189.186.41.207 2fee6f9f-6338-494a-bb1a-142984ae7c2d 2019-02-13 18:01:52.906768 1782 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-11 22:14:01.431969000 Z\n- &1 2019-02-12 19:06:56.794409000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-13 19:52:40.699876490 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934292\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 11\n- 12\n 24 \N 189.186.41.207 cc4eb945-c51f-4b6a-92ba-2048b90c749f 2019-02-13 19:52:40.710805 1783 3 User \N \N 3 User \N update ---\nunique_session_id:\n- EiHx5sfxjnf9TRv61knu\n- nQPyTjj7pxVGyvQQzkt5\n 25 \N 189.186.41.207 cc4eb945-c51f-4b6a-92ba-2048b90c749f 2019-02-13 19:52:40.732556 1784 17 Customer \N \N 3 User \N create ---\nnick_name: ESMERALDA TELLES\nphone: "(667) 152-8170"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ESMERALDA TELLES fue registrado. 189.186.41.207 84e7e8ae-9f6f-4c45-86ea-1e480b8e3945 2019-02-13 19:54:08.74866 1785 72 Sale \N \N 3 User \N create ---\ncustomer_id: 17\nuser_id: 3\nopen_cash_register_id: 15\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-02-13\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-29\nexpiration_date: 2019-03-20\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 2d834984-4b2a-4f99-b801-7818469a97f4 2019-02-13 19:54:22.457319 1786 404 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 2d834984-4b2a-4f99-b801-7818469a97f4 2019-02-13 19:54:22.504207 1853 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-13 23:34:21.032665000 Z\n- &1 2019-02-13 23:41:16.493738000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-14 02:02:46.947132421 Z\nsign_in_count:\n- 24\n- 25\n 50 \N 189.186.41.207 65801d9c-e03a-421d-81e5-658644e93233 2019-02-14 02:02:46.956739 11275 77 Customer \N \N 2 User \N update ---\nstatus:\n- active\n- 0\n 2 \N 189.186.40.252 23f7088a-66e6-48ff-abeb-57a4e6b491f1 2019-07-17 16:28:15.110001 1787 80 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 15\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 72\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-29\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-29 189.186.41.207 b7c408e0-f5b3-4c0f-b604-a83f193ef1ed 2019-02-13 19:54:44.118481 1788 72 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 bf5d98e7-281c-4826-8381-9017292c14d2 2019-02-13 19:54:45.499068 1789 73 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 15\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-02-13\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-30\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 f2f23acc-9b97-40df-a62d-3b5e9c83eee8 2019-02-13 19:59:15.778002 1790 324 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.207 f2f23acc-9b97-40df-a62d-3b5e9c83eee8 2019-02-13 19:59:15.818761 1791 73 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 b3841098-1789-485c-b5f1-fea1d459dccf 2019-02-13 20:00:46.914161 1792 81 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 15\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 73\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-30\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-30 189.186.41.207 b3841098-1789-485c-b5f1-fea1d459dccf 2019-02-13 20:00:46.944721 1793 18 Customer \N \N 3 User \N create ---\nnick_name: ANA CRISTINA\nphone: "(687) 146-6476"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANA CRISTINA fue registrado. 189.186.41.207 cb9dfe52-7b72-4d10-a148-31b3132b77fd 2019-02-13 21:40:55.450848 1794 74 Sale \N \N 3 User \N create ---\ncustomer_id: 18\nuser_id: 3\nopen_cash_register_id: 15\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-02-13\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-31\nexpiration_date: 2019-03-20\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 40ea3f5c-6cde-4bd6-b6c1-9a4f5954077e 2019-02-13 21:41:10.35037 1795 404 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.207 40ea3f5c-6cde-4bd6-b6c1-9a4f5954077e 2019-02-13 21:41:10.394986 1796 82 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 15\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 74\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-31\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-31 189.186.41.207 bc692cb5-44f6-4821-b5bb-1b07593a65a2 2019-02-13 21:41:19.311386 1797 74 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 b3d8bdf2-348f-4af0-8834-93e70bb4e112 2019-02-13 21:41:20.765114 1798 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-12 23:53:42.527695000 Z\n- &1 2019-02-13 01:49:42.600313000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-13 21:41:26.844475060 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934249\n mask_addr: 4294967295\nsign_in_count:\n- 21\n- 22\n 44 \N 200.68.135.41 e067d325-ddb4-4719-a5e2-1af28f4c8846 2019-02-13 21:41:26.85958 1799 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3o_4J4aEtszsW-UAtnyJ\n- KBi2dGoKfjnQoq3ZyrBf\n 45 \N 200.68.135.41 e067d325-ddb4-4719-a5e2-1af28f4c8846 2019-02-13 21:41:26.897022 1800 83 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 14\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 70\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-40 189.186.41.207 b5a004ab-1264-4b2c-add6-1b87983f2ed6 2019-02-13 22:48:44.407732 1801 70 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.207 ddfaca1d-bd5b-40cb-8f82-de6683121e56 2019-02-13 22:48:45.57536 1802 75 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 15\namount: !ruby/object:BigDecimal 18:0.45603E3\ntax: !ruby/object:BigDecimal 18:0.7296E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.52899E3\nstatus: 0\ndate_sale: 2019-02-13\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-32\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 82fb12b0-7092-4101-9797-a6d69391b578 2019-02-13 22:55:51.479493 1803 438 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.41.207 82fb12b0-7092-4101-9797-a6d69391b578 2019-02-13 22:55:51.521812 1804 75 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 adf7f0dd-a0d1-4892-9037-e5f2a0d1033b 2019-02-13 22:56:48.844859 1805 84 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 15\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 75\ncardnumber: 9004\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-32\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-32 189.186.41.207 adf7f0dd-a0d1-4892-9037-e5f2a0d1033b 2019-02-13 22:56:48.883098 1806 85 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 15\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12899E3\nmove_type: '1'\nsale_id: 75\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-32\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.7101E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-32 189.186.41.207 579c4a91-251c-47a3-96be-83bf9fcedadb 2019-02-13 22:57:04.197701 1854 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zzpbhNJ-inbrszLTz_nK\n- bRg6Xxs14yKoicU631ss\n 51 \N 189.186.41.207 65801d9c-e03a-421d-81e5-658644e93233 2019-02-14 02:02:46.978618 1974 152 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 5d0219e6-fd47-4fbc-866c-c940232699f7 2019-02-16 00:55:28.150858 1807 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-13 01:49:42.600313000 Z\n- &1 2019-02-13 21:41:26.844475000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-13 23:34:21.032665297 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934249\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934249\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 22\n- 23\n 46 \N 189.186.41.207 d61767fa-f595-4037-b9d7-72b2d7a52f3f 2019-02-13 23:34:21.045228 1808 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KBi2dGoKfjnQoq3ZyrBf\n- HjLzKnbQRxeLFK8DNj7R\n 47 \N 189.186.41.207 d61767fa-f595-4037-b9d7-72b2d7a52f3f 2019-02-13 23:34:21.068757 1809 478 Product \N \N 4 User \N create ---\nsku: BLU-478\nname: B-0065\ndescription: BLUSA CON MANGA CAIDA ROJA Y DE FLORES\nprice_base: \nprice_sale: !ruby/object:BigDecimal 18:0.675E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-478 fue creado. 189.186.41.207 7136a7d1-4b17-4cbf-90ca-82d642f5a9bc 2019-02-13 23:35:40.776137 1810 478 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000478'\n 2 \N 189.186.41.207 7136a7d1-4b17-4cbf-90ca-82d642f5a9bc 2019-02-13 23:35:40.827834 1811 489 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 478\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 7136a7d1-4b17-4cbf-90ca-82d642f5a9bc 2019-02-13 23:35:40.874657 1812 478 Product \N \N 4 User \N update ---\nprice_base:\n- \n- !ruby/object:BigDecimal 27:0.675E3\n 3 El producto BLU-478 fue modificado. 189.186.41.207 6794a8a9-8fea-4f9e-aa3b-aa9f721e59e4 2019-02-13 23:36:09.000854 1813 478 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.675E3\n- !ruby/object:BigDecimal 27:0.135E4\n 4 \N 189.186.41.207 f60b9343-92b0-48d3-97cf-a051aa21cd75 2019-02-13 23:36:15.064259 1814 479 Product \N \N 4 User \N create ---\nsku: BLU-479\nname: B-0065\ndescription: BLUSA CON UNA MANGA MUY MUY ROJA Y FLORES\nprice_base: !ruby/object:BigDecimal 18:0.27E3\nprice_sale: !ruby/object:BigDecimal 18:0.675E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-479 fue creado. 189.186.41.207 a87f8ca9-dd74-4c23-a408-9b1daa317edc 2019-02-13 23:37:00.304933 1815 479 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000479'\n 2 \N 189.186.41.207 a87f8ca9-dd74-4c23-a408-9b1daa317edc 2019-02-13 23:37:00.368234 1816 490 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 479\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 a87f8ca9-dd74-4c23-a408-9b1daa317edc 2019-02-13 23:37:00.414528 1817 31 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-13\namount: !ruby/object:BigDecimal 18:0.27E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.27E4\nobservations: ''\npurchase_date: 2019-02-13\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-13 por $ 2700.0 MXN creada. 189.186.41.207 d3ea8064-47f1-49a3-8e5d-5fb5d5c86e92 2019-02-13 23:37:09.36293 1818 490 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E2\n 2 \N 189.186.41.207 d3ea8064-47f1-49a3-8e5d-5fb5d5c86e92 2019-02-13 23:37:09.400788 1819 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-12 19:06:56.794409000 Z\n- &1 2019-02-13 19:52:40.699876000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-13 23:38:02.294957223 Z\nsign_in_count:\n- 12\n- 13\n 26 \N 189.186.41.207 3f07d2cf-0b79-4b00-ba55-3ac35b9540d9 2019-02-13 23:38:02.301759 1820 3 User \N \N 3 User \N update ---\nunique_session_id:\n- nQPyTjj7pxVGyvQQzkt5\n- qGE44zcDDVZtDCC4YgvB\n 27 \N 189.186.41.207 3f07d2cf-0b79-4b00-ba55-3ac35b9540d9 2019-02-13 23:38:02.318599 1821 76 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 15\namount: !ruby/object:BigDecimal 18:0.675E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.675E3\nstatus: 0\ndate_sale: 2019-02-13\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-33\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 e342f725-06b0-4fd7-9c29-cf5a2b2fc1db 2019-02-13 23:38:20.802786 1822 490 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 3 \N 189.186.41.207 e342f725-06b0-4fd7-9c29-cf5a2b2fc1db 2019-02-13 23:38:20.845366 1823 76 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 c94a81d6-2d1d-4a58-8dab-9ae6ede88ed4 2019-02-13 23:38:35.807309 1824 86 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 15\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 76\ncardnumber: 4969\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-33\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-33 189.186.41.207 c94a81d6-2d1d-4a58-8dab-9ae6ede88ed4 2019-02-13 23:38:35.838992 1825 87 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 15\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.275E3\nmove_type: '1'\nsale_id: 76\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-33\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.275E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-33 189.186.41.207 09f796fc-e197-4021-9af5-1fc33e976673 2019-02-13 23:38:42.658615 1826 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-13 21:41:26.844475000 Z\n- &1 2019-02-13 23:34:21.032665000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-13 23:41:16.493738349 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934249\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 23\n- 24\n 48 \N 189.186.41.207 d70e59fa-9f59-4cb7-9237-3adb02eb37aa 2019-02-13 23:41:16.503225 1827 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HjLzKnbQRxeLFK8DNj7R\n- zzpbhNJ-inbrszLTz_nK\n 49 \N 189.186.41.207 d70e59fa-9f59-4cb7-9237-3adb02eb37aa 2019-02-13 23:41:16.524898 1877 2 User \N \N 2 User \N update ---\nunique_session_id:\n- zrM1CJnCA6sbPQDsCqq6\n- 197WAo5eBscfutb2texf\n 38 \N 189.186.41.207 2cc719ea-c8fc-4377-bc2b-3388d01e852f 2019-02-14 16:53:30.177141 1951 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 97eyx4Mv5zv9Dp4VqXxv\n- HNn7wgwsZpjgo8sJJxAs\n 59 \N 189.186.41.207 f6abcaf2-43d8-43d1-aafd-88bc4afe06c0 2019-02-16 00:04:03.081611 1828 88 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 15\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 23\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-4 189.186.41.207 fb9012e3-f755-4e6e-807c-de7b1ebd1979 2019-02-13 23:44:30.8272 1829 23 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 4 \N 189.186.41.207 fbf2b498-549b-4493-b7db-4c541e6cca64 2019-02-13 23:44:32.093087 1830 480 Product \N \N 4 User \N create ---\nsku: BOL-480\nname: BIXA572\ndescription: BOLSO CLOE\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-480 fue creado. 189.186.41.207 48342c9b-debd-4520-8c63-23d68e52715b 2019-02-13 23:46:26.899948 1831 480 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000480'\n 2 \N 189.186.41.207 48342c9b-debd-4520-8c63-23d68e52715b 2019-02-13 23:46:26.941464 1832 491 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 480\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 48342c9b-debd-4520-8c63-23d68e52715b 2019-02-13 23:46:26.982063 1833 32 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-17\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nobservations: ''\npurchase_date: 2019-02-13\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-17 por $ 1599.0 MXN creada. 189.186.41.207 23fd9fcc-c7ff-4bcc-976d-67dadd99e7c6 2019-02-13 23:46:36.457323 1834 491 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.41.207 23fd9fcc-c7ff-4bcc-976d-67dadd99e7c6 2019-02-13 23:46:36.494228 1835 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-12 23:50:53.496907000 Z\n- &1 2019-02-12 23:55:30.745427000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-13 23:48:26.488631378 Z\nsign_in_count:\n- 9\n- 10\n 20 \N 189.186.41.207 1610aad8-1073-4928-a21d-e88867520233 2019-02-13 23:48:26.497394 1836 9 User \N \N 9 User \N update ---\nunique_session_id:\n- TVVbaoQtdK2T4-S_KAv9\n- 9izQ96enqtwNA7CWu9tT\n 21 \N 189.186.41.207 1610aad8-1073-4928-a21d-e88867520233 2019-02-13 23:48:26.530621 1837 77 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 14\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.4797E3\ntotal: !ruby/object:BigDecimal 18:0.11193E4\nstatus: 0\ndate_sale: 2019-02-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-42\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 e3ddd770-001c-4018-be15-9bd5a01f81ba 2019-02-13 23:49:35.978173 1838 491 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.41.207 e3ddd770-001c-4018-be15-9bd5a01f81ba 2019-02-13 23:49:36.019492 1839 77 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 cbaa927b-eb3b-4dec-8e46-96de3af928dc 2019-02-13 23:49:53.410708 1840 89 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 14\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.11193E4\nmove_type: '1'\nsale_id: 77\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-42\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11193E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-42 189.186.41.207 cbaa927b-eb3b-4dec-8e46-96de3af928dc 2019-02-13 23:49:53.44382 1841 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-12 17:28:39.658277000 Z\n- &1 2019-02-13 17:54:11.411398000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-13 23:54:20.415437896 Z\nsign_in_count:\n- 9\n- 10\n 20 \N 189.186.41.207 dd57d584-63d8-4cad-8132-c3ac9ae3edd2 2019-02-13 23:54:20.4235 1842 10 User \N \N 10 User \N update ---\nunique_session_id:\n- zM-KGmmi4AE1-7RA5Xkf\n- CU8y_CpwaCLEuzNThRye\n 21 \N 189.186.41.207 dd57d584-63d8-4cad-8132-c3ac9ae3edd2 2019-02-13 23:54:20.441563 1843 19 Customer \N \N 10 User \N create ---\nnick_name: 'FELIPE BANORTE '\nphone: "(667) 126-0556"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.5E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente FELIPE BANORTE fue registrado. 189.186.41.207 15944334-1b9c-4cde-b968-2fe835e2d35b 2019-02-13 23:55:29.012136 1844 78 Sale \N \N 10 User \N create ---\ncustomer_id: 19\nuser_id: 10\nopen_cash_register_id: 15\namount: !ruby/object:BigDecimal 18:0.155086E4\ntax: !ruby/object:BigDecimal 18:0.24814E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2019-02-13\nsaletype: 0\nseller_id: 4\nsale_code: PV2-V-34\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 c77ae5e1-1159-4628-9754-edabc6b802f5 2019-02-13 23:55:54.761541 1845 360 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.41.207 c77ae5e1-1159-4628-9754-edabc6b802f5 2019-02-13 23:55:54.80243 1846 90 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 15\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 78\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 e499531e-2ebf-4ab1-a3e8-e5c176443826 2019-02-13 23:56:58.971029 1847 78 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 e499531e-2ebf-4ab1-a3e8-e5c176443826 2019-02-13 23:56:59.005097 1848 90 CashRegistersMove \N \N 10 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV2-V-34 189.186.41.207 e499531e-2ebf-4ab1-a3e8-e5c176443826 2019-02-13 23:56:59.021935 1849 20 Customer \N \N 10 User \N create ---\nnick_name: MARICELA BANORTE\nphone: "(667) 142-8445"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.2E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARICELA BANORTE fue registrado. 189.186.41.207 041be363-f9dd-4d92-8ca0-fd5a88a8630d 2019-02-13 23:58:26.23487 1850 79 Sale \N \N 10 User \N create ---\ncustomer_id: 20\nuser_id: 10\nopen_cash_register_id: 15\namount: !ruby/object:BigDecimal 18:0.301552E4\ntax: !ruby/object:BigDecimal 18:0.48249E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.349801E4\nstatus: 0\ndate_sale: 2019-02-13\nsaletype: 0\nseller_id: 4\nsale_code: PV2-V-35\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 4d98c163-a73c-4de2-a3d9-15ec0b766eb8 2019-02-13 23:58:51.406348 1855 80 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 15\namount: !ruby/object:BigDecimal 18:0.42155E3\ntax: !ruby/object:BigDecimal 18:0.6745E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-02-13\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-36\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 c38204a4-8214-4bc4-be7d-4fcbed4a86d6 2019-02-14 02:26:30.514235 1856 320 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 c38204a4-8214-4bc4-be7d-4fcbed4a86d6 2019-02-14 02:26:30.548749 1857 80 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 76828a90-b167-40b7-b915-e6e9f31f2074 2019-02-14 02:27:11.121337 1858 91 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 15\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.489E3\nmove_type: '1'\nsale_id: 80\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-36\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-36 189.186.41.207 76828a90-b167-40b7-b915-e6e9f31f2074 2019-02-14 02:27:11.155895 1859 21 Customer \N \N 3 User \N create ---\nnick_name: KARINA ZAZUETA\nphone: "(667) 418-1298"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KARINA ZAZUETA fue registrado. 189.186.41.207 70e82c10-1bce-4c0a-8093-5a202690a98e 2019-02-14 02:28:17.617317 1860 81 Sale \N \N 3 User \N create ---\ncustomer_id: 21\nuser_id: 3\nopen_cash_register_id: 15\namount: !ruby/object:BigDecimal 18:0.50776E3\ntax: !ruby/object:BigDecimal 18:0.8124E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2019-02-13\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-37\nexpiration_date: 2019-03-20\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 6863dedb-0314-431d-8bd5-5246ec757b73 2019-02-14 02:28:30.073663 1861 326 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 6863dedb-0314-431d-8bd5-5246ec757b73 2019-02-14 02:28:30.11588 1862 92 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 15\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 81\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-37\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-37 189.186.41.207 2d0cd31f-6ebb-487b-b3d6-d9a2ad51e684 2019-02-14 02:28:37.413124 1863 92 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 15\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 81\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-37\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.41.207 62fc14e1-055a-4d63-b00a-ff14ffcd044a 2019-02-14 02:29:05.721402 1864 81 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-37 cancelada. 189.186.41.207 5e0330a3-c2d6-4979-9f73-7bb4a94c6148 2019-02-14 02:29:20.181086 1865 326 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.207 5e0330a3-c2d6-4979-9f73-7bb4a94c6148 2019-02-14 02:29:20.215786 1866 82 Sale \N \N 3 User \N create ---\ncustomer_id: 21\nuser_id: 3\nopen_cash_register_id: 15\namount: !ruby/object:BigDecimal 18:0.50776E3\ntax: !ruby/object:BigDecimal 18:0.8124E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2019-02-13\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-38\nexpiration_date: 2019-03-20\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 da9be7fa-d384-4e03-abe5-1045287dae5f 2019-02-14 02:30:12.89178 1867 326 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.41.207 da9be7fa-d384-4e03-abe5-1045287dae5f 2019-02-14 02:30:12.951832 1868 93 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 15\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.177E3\nmove_type: '1'\nsale_id: 82\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-38\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.177E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-38 189.186.41.207 ff03c6cb-51ad-4a1e-9d80-cc5ea42867e2 2019-02-14 02:30:50.851405 1869 82 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 64d09ce1-eef2-47ab-a185-074a7e9b1ff3 2019-02-14 02:30:52.211183 1870 13 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 14\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.20183E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 27:0.6963000000000002E3\nphysical_cash: !ruby/object:BigDecimal 18:0.26963E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 37b584c6-4d0e-4736-a71a-90537cebbb72 2019-02-14 02:48:20.518163 1871 14 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 37b584c6-4d0e-4736-a71a-90537cebbb72 2019-02-14 02:48:20.545639 1872 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-12 23:55:30.745427000 Z\n- &1 2019-02-13 23:48:26.488631000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-14 02:49:14.565797538 Z\nsign_in_count:\n- 10\n- 11\n 22 \N 189.186.41.207 73c7f218-5864-424e-907f-2a4a5289ccc7 2019-02-14 02:49:14.574782 1873 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 9izQ96enqtwNA7CWu9tT\n- Lvpx_-GfpAJaHi2tonym\n 23 \N 189.186.41.207 73c7f218-5864-424e-907f-2a4a5289ccc7 2019-02-14 02:49:14.595539 1874 14 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 15\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.336799E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.2568E4\ncash_fund: !ruby/object:BigDecimal 18:0.1361E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3929E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 5c919302-957d-4832-82cf-0e4474c89f1e 2019-02-14 02:54:59.219877 1875 15 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 5c919302-957d-4832-82cf-0e4474c89f1e 2019-02-14 02:54:59.239103 1876 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-12 16:24:07.291253000 Z\n- &1 2019-02-13 16:55:25.537685000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-14 16:53:30.105496179 Z\nsign_in_count:\n- 16\n- 17\n 37 \N 189.186.41.207 2cc719ea-c8fc-4377-bc2b-3388d01e852f 2019-02-14 16:53:30.149973 1975 94 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 8d26e16f-11cf-4bb0-beb8-5df425dc30f0 2019-02-16 00:56:35.12171 1878 16 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.6963E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 696.3 189.186.41.207 814158ab-3bad-4e1e-a88f-3dddbfd147fb 2019-02-14 16:57:27.230159 1879 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-13 17:54:11.411398000 Z\n- &1 2019-02-13 23:54:20.415437000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-14 17:10:36.694926654 Z\nsign_in_count:\n- 10\n- 11\n 22 \N 189.186.41.207 444aaea6-0018-4667-ae90-cd4421b5b330 2019-02-14 17:10:36.704455 1880 10 User \N \N 10 User \N update ---\nunique_session_id:\n- CU8y_CpwaCLEuzNThRye\n- zTtyK8ebRi-Btsh9ixrT\n 23 \N 189.186.41.207 444aaea6-0018-4667-ae90-cd4421b5b330 2019-02-14 17:10:36.726377 1881 17 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.985E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 985.0 189.186.41.207 00e2e35c-9ea4-4866-94d3-cde426a32080 2019-02-14 17:14:29.346683 1882 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-13 23:41:16.493738000 Z\n- &1 2019-02-14 02:02:46.947132000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-14 17:15:05.524703542 Z\nsign_in_count:\n- 25\n- 26\n 52 \N 189.186.41.207 a9848c38-28c0-44a1-a018-d25409efd0dc 2019-02-14 17:15:05.533783 1883 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bRg6Xxs14yKoicU631ss\n- wb3hLj3L5WYHYMCU6yTu\n 53 \N 189.186.41.207 a9848c38-28c0-44a1-a018-d25409efd0dc 2019-02-14 17:15:05.553857 1884 83 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 17\namount: !ruby/object:BigDecimal 18:0.41293E3\ntax: !ruby/object:BigDecimal 18:0.6607E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-02-14\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-39\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 ef53a54d-1068-43fc-91c3-2f5b8f2f69c6 2019-02-14 18:34:29.538374 1885 434 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.41.207 ef53a54d-1068-43fc-91c3-2f5b8f2f69c6 2019-02-14 18:34:29.584884 1886 83 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 a4e1c4e2-d759-4157-98bf-079f2ed74b6d 2019-02-14 18:34:37.671581 1887 94 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 17\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.479E3\nmove_type: '1'\nsale_id: 83\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-39\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-39 189.186.41.207 a4e1c4e2-d759-4157-98bf-079f2ed74b6d 2019-02-14 18:34:37.703 1888 95 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 17\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.349E3\nmove_type: '1'\nsale_id: 74\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.349E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-31 189.186.41.207 4e5f5458-c8ed-436b-8406-0b70684df3b0 2019-02-14 18:47:32.039265 1889 74 Sale \N \N 10 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.207 5dd60e0b-9cd8-464d-9511-122562115685 2019-02-14 18:47:36.100032 1890 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-13 19:52:40.699876000 Z\n- &1 2019-02-13 23:38:02.294957000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-14 19:12:18.511462953 Z\nsign_in_count:\n- 13\n- 14\n 28 \N 189.186.41.207 4d1ddb14-ef71-4b4f-9f87-f35f3b56909a 2019-02-14 19:12:18.541927 1891 3 User \N \N 3 User \N update ---\nunique_session_id:\n- qGE44zcDDVZtDCC4YgvB\n- sNGH6rdEVWyPEpVfsxxJ\n 29 \N 189.186.41.207 4d1ddb14-ef71-4b4f-9f87-f35f3b56909a 2019-02-14 19:12:18.569561 1892 84 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 17\namount: !ruby/object:BigDecimal 18:0.55948E3\ntax: !ruby/object:BigDecimal 18:0.8952E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-02-14\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-40\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 3fc143ee-0c5f-4cb6-8ef7-228c9dfe75c7 2019-02-14 20:22:29.132893 1893 427 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.41.207 3fc143ee-0c5f-4cb6-8ef7-228c9dfe75c7 2019-02-14 20:22:29.180073 1894 84 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 ebc7f349-2cd7-41e0-90e4-3dee77d75078 2019-02-14 20:22:55.512086 1895 96 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 17\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.649E3\nmove_type: '1'\nsale_id: 84\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-40\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-40 189.186.41.207 ebc7f349-2cd7-41e0-90e4-3dee77d75078 2019-02-14 20:22:55.549814 1896 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-14 02:02:46.947132000 Z\n- &1 2019-02-14 17:15:05.524703000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-14 22:10:18.474107975 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938389\n mask_addr: 4294967295\nsign_in_count:\n- 26\n- 27\n 54 \N 200.68.151.85 622611aa-5815-4bf1-8e58-ef9de60f7cd5 2019-02-14 22:10:18.505985 1897 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wb3hLj3L5WYHYMCU6yTu\n- "-3zEdtKzx-EkZP4vxN_k"\n 55 \N 200.68.151.85 622611aa-5815-4bf1-8e58-ef9de60f7cd5 2019-02-14 22:10:18.535717 1898 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-14 17:15:05.524703000 Z\n- &1 2019-02-14 22:10:18.474107000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-15 00:00:20.311948830 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938389\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938389\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 27\n- 28\n 56 \N 189.186.41.207 2e4c4332-f815-469f-b445-5f4854e17a4c 2019-02-15 00:00:20.323113 1899 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-3zEdtKzx-EkZP4vxN_k"\n- ZQf4PmAoPsaQPHZ-shcj\n 57 \N 189.186.41.207 2e4c4332-f815-469f-b445-5f4854e17a4c 2019-02-15 00:00:20.345984 1900 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-13 23:48:26.488631000 Z\n- &1 2019-02-14 02:49:14.565797000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-15 00:11:26.113711911 Z\nsign_in_count:\n- 11\n- 12\n 24 \N 189.186.41.207 5b23e3eb-48ea-409f-8677-cd55aa5d2ed3 2019-02-15 00:11:26.121685 1901 9 User \N \N 9 User \N update ---\nunique_session_id:\n- Lvpx_-GfpAJaHi2tonym\n- 7cU35JCGC7jHcV6pX17n\n 25 \N 189.186.41.207 5b23e3eb-48ea-409f-8677-cd55aa5d2ed3 2019-02-15 00:11:26.142614 1902 85 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 17\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-02-14\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-41\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 b64fb287-1219-4509-89cf-6f79ad7ad0d7 2019-02-15 01:00:43.253221 1903 319 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 b64fb287-1219-4509-89cf-6f79ad7ad0d7 2019-02-15 01:00:43.292655 1904 85 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-41 cancelada. 189.186.41.207 0d4a8740-b842-4e80-9897-b9853686b90b 2019-02-15 01:07:30.844568 1905 319 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.41.207 0d4a8740-b842-4e80-9897-b9853686b90b 2019-02-15 01:07:30.882582 1906 86 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 17\namount: !ruby/object:BigDecimal 18:0.121293E4\ntax: !ruby/object:BigDecimal 18:0.19407E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1407E4\nstatus: 0\ndate_sale: 2019-02-14\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-42\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 a28f3e2d-ef18-4d84-a28b-7ef39e0da43f 2019-02-15 01:08:24.741856 1907 318 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 a28f3e2d-ef18-4d84-a28b-7ef39e0da43f 2019-02-15 01:08:24.782633 1908 317 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 a28f3e2d-ef18-4d84-a28b-7ef39e0da43f 2019-02-15 01:08:24.819951 1909 319 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.41.207 a28f3e2d-ef18-4d84-a28b-7ef39e0da43f 2019-02-15 01:08:24.856913 1910 86 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 a36c1684-b365-466f-9738-e1a394ddec05 2019-02-15 01:09:23.234584 1911 97 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 17\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1407E4\nmove_type: '1'\nsale_id: 86\ncardnumber: 4097\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-42\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-42 189.186.41.207 a36c1684-b365-466f-9738-e1a394ddec05 2019-02-15 01:09:23.268225 1912 87 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 16\namount: !ruby/object:BigDecimal 18:0.61538E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.698E3\nstatus: 0\ndate_sale: 2019-02-14\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-43\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 ee40e7b8-fca4-4d39-ac62-3e3bf1049909 2019-02-15 02:17:07.542089 1913 486 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.59E2\n- !ruby/object:BigDecimal 18:0.58E2\n 5 \N 189.186.41.207 ee40e7b8-fca4-4d39-ac62-3e3bf1049909 2019-02-15 02:17:07.583514 1914 141 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.207 ee40e7b8-fca4-4d39-ac62-3e3bf1049909 2019-02-15 02:17:07.619391 1915 87 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 5fcda868-d757-491f-af57-639a095d3589 2019-02-15 02:17:55.25136 1916 98 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 16\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.698E3\nmove_type: '1'\nsale_id: 87\ncardnumber: 8496\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-43\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-43 189.186.41.207 5fcda868-d757-491f-af57-639a095d3589 2019-02-15 02:17:55.2993 1917 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-14 02:49:14.565797000 Z\n- &1 2019-02-15 00:11:26.113711000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-15 02:49:59.545716205 Z\nsign_in_count:\n- 12\n- 13\n 26 \N 189.186.41.207 1bfeab4f-be2d-4844-95e4-5afa5ce296ca 2019-02-15 02:49:59.555359 1918 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 7cU35JCGC7jHcV6pX17n\n- iiTHj--M2w3tU6eS-p_1\n 27 \N 189.186.41.207 1bfeab4f-be2d-4844-95e4-5afa5ce296ca 2019-02-15 02:49:59.586994 1919 15 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 16\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.698E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.6963E3\nphysical_cash: !ruby/object:BigDecimal 18:0.6963E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 726234ef-cd2a-41cd-8cbf-795ade832f8f 2019-02-15 02:50:55.517204 1920 16 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 726234ef-cd2a-41cd-8cbf-795ade832f8f 2019-02-15 02:50:55.538821 1921 16 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 17\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.2884E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.562E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2562E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 e4b766c4-833f-4d66-be57-b6794639a6fc 2019-02-15 03:03:52.280129 1922 17 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 e4b766c4-833f-4d66-be57-b6794639a6fc 2019-02-15 03:03:52.298762 1923 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-13 23:54:20.415437000 Z\n- &1 2019-02-14 17:10:36.694926000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-15 18:05:57.653413168 Z\nsign_in_count:\n- 11\n- 12\n 24 \N 189.186.41.207 9e6788e4-0e41-4e42-9387-66b50c1023b6 2019-02-15 18:05:57.686413 1924 10 User \N \N 10 User \N update ---\nunique_session_id:\n- zTtyK8ebRi-Btsh9ixrT\n- LJAdWLJEfrH3ZusFyD5j\n 25 \N 189.186.41.207 9e6788e4-0e41-4e42-9387-66b50c1023b6 2019-02-15 18:05:57.709042 1925 18 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.562E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 562.0 189.186.41.207 946b529d-4dc5-4490-8d08-54019ff18f1d 2019-02-15 18:06:03.305466 1926 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-13 16:55:25.537685000 Z\n- &1 2019-02-14 16:53:30.105496000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-15 20:28:56.435199994 Z\nsign_in_count:\n- 17\n- 18\n 39 \N 189.186.41.207 16c6ba0c-49df-47f3-b947-fbe953deaca5 2019-02-15 20:28:56.466621 1927 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 197WAo5eBscfutb2texf\n- BX3KM_wET92optiTG2Bb\n 40 \N 189.186.41.207 16c6ba0c-49df-47f3-b947-fbe953deaca5 2019-02-15 20:28:56.494059 1928 19 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.697E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 697.0 189.186.41.207 c5bacc78-9137-409d-a72a-1ae8118e955c 2019-02-15 20:38:05.488766 1929 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-13 23:38:02.294957000 Z\n- &1 2019-02-14 19:12:18.511462000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-15 21:32:34.185324170 Z\nsign_in_count:\n- 14\n- 15\n 30 \N 189.186.41.207 acf9e8f9-2f89-49da-ba4b-14afe0dfafc9 2019-02-15 21:32:34.193757 1930 3 User \N \N 3 User \N update ---\nunique_session_id:\n- sNGH6rdEVWyPEpVfsxxJ\n- crGbDZvxqZ_stcmG-KmA\n 31 \N 189.186.41.207 acf9e8f9-2f89-49da-ba4b-14afe0dfafc9 2019-02-15 21:32:34.228789 1931 88 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 18\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-02-15\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-43\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 3d703fde-29c3-458b-ad94-61f306daf955 2019-02-15 21:32:50.442132 1932 324 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.41.207 3d703fde-29c3-458b-ad94-61f306daf955 2019-02-15 21:32:50.489961 1933 88 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 b0bbb6f8-b54a-4854-9ed3-e03dc0bad7ef 2019-02-15 21:33:21.300911 1934 99 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 18\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 88\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-43\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-43 189.186.41.207 b0bbb6f8-b54a-4854-9ed3-e03dc0bad7ef 2019-02-15 21:33:21.336747 1935 89 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 19\namount: !ruby/object:BigDecimal 18:0.47328E3\ntax: !ruby/object:BigDecimal 18:0.7572E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-02-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-44\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 f020df03-f8c5-4c33-957b-746504248511 2019-02-15 21:36:02.821586 1936 157 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.207 f020df03-f8c5-4c33-957b-746504248511 2019-02-15 21:36:02.861349 1937 89 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 53395af4-79a2-4850-a133-e640951fb41e 2019-02-15 21:38:52.617189 1938 100 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 19\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.549E3\nmove_type: '1'\nsale_id: 89\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-44\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-44 189.186.41.207 53395af4-79a2-4850-a133-e640951fb41e 2019-02-15 21:38:52.654841 1939 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-14 19:12:18.511462000 Z\n- &1 2019-02-15 21:32:34.185324000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-15 22:21:39.328535326 Z\nsign_in_count:\n- 15\n- 16\n 32 \N 189.186.41.207 38e8ddae-142b-4cbc-b50c-e2ed977eb48f 2019-02-15 22:21:39.336705 1940 3 User \N \N 3 User \N update ---\nunique_session_id:\n- crGbDZvxqZ_stcmG-KmA\n- qVisrxTuRB7uqLzBH7DF\n 33 \N 189.186.41.207 38e8ddae-142b-4cbc-b50c-e2ed977eb48f 2019-02-15 22:21:39.356128 1941 22 Customer \N \N 2 User \N create ---\nnick_name: 'MARIA DE JESUS MADURINO '\nphone: "(667) 159-7793"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.6E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIA DE JESUS MADURINO fue registrado. 189.186.41.207 c51f6850-79d4-4420-ba93-898a817a26f7 2019-02-15 22:25:51.080054 1942 90 Sale \N \N 2 User \N create ---\ncustomer_id: 22\nuser_id: 2\nopen_cash_register_id: 19\namount: !ruby/object:BigDecimal 18:0.137845E4\ntax: !ruby/object:BigDecimal 18:0.22055E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-02-15\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-45\nexpiration_date: 2019-03-22\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 6f4be775-f003-4ea4-8aa4-4ec5d79d325c 2019-02-15 22:26:45.659554 1943 264 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 189.186.41.207 6f4be775-f003-4ea4-8aa4-4ec5d79d325c 2019-02-15 22:26:45.703266 1944 101 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 19\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 90\ncardnumber: 2428\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-45\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-45 189.186.41.207 17688b4d-4f64-4995-a756-99576eb93a18 2019-02-15 22:27:46.215319 1945 90 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 b43de44a-f662-45b4-a7cf-eb8edcc15ddf 2019-02-15 22:28:35.036088 1946 91 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 18\namount: !ruby/object:BigDecimal 18:0.42155E3\ntax: !ruby/object:BigDecimal 18:0.6745E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-02-15\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-44\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 92f1889d-3007-4c88-8f7a-22e4f6357ff9 2019-02-15 23:53:25.902618 1947 320 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 92f1889d-3007-4c88-8f7a-22e4f6357ff9 2019-02-15 23:53:25.944551 1948 91 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 a7195758-fbfe-4e5f-ae3b-0243f63d5f51 2019-02-15 23:54:37.902966 1949 102 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 18\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.489E3\nmove_type: '1'\nsale_id: 91\ncardnumber: 8352\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-44\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-44 189.186.41.207 a7195758-fbfe-4e5f-ae3b-0243f63d5f51 2019-02-15 23:54:37.936178 1950 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-12 17:09:26.942821000 Z\n- &1 2019-02-13 04:12:34.103517000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-16 00:04:03.026253840 Z\nsign_in_count:\n- 28\n- 29\n 58 \N 189.186.41.207 f6abcaf2-43d8-43d1-aafd-88bc4afe06c0 2019-02-16 00:04:03.055917 1952 481 Product \N \N 1 User \N create ---\nsku: BLU-481\nname: b-0000\ndescription: blusa negra con cola CQBYCQ\nprice_base: !ruby/object:BigDecimal 18:0.2697E3\nprice_sale: !ruby/object:BigDecimal 18:0.5394E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-481 fue creado. 189.186.41.207 c180d630-8094-4631-a624-f66925afa053 2019-02-16 00:11:25.116184 1953 481 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0000481'\n 2 \N 189.186.41.207 c180d630-8094-4631-a624-f66925afa053 2019-02-16 00:11:25.169913 1954 492 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 481\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 c180d630-8094-4631-a624-f66925afa053 2019-02-16 00:11:25.232228 1955 33 Purchase \N \N 1 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-18\namount: !ruby/object:BigDecimal 18:0.2697E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2697E3\nobservations: ''\npurchase_date: 2019-02-15\nuser_id: '1'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-18 por $ 269.7 MXN creada. 189.186.41.207 2ee6ba8f-ce5b-446f-a157-44f650f1dde2 2019-02-16 00:11:39.864486 1956 492 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.207 2ee6ba8f-ce5b-446f-a157-44f650f1dde2 2019-02-16 00:11:39.8991 1957 33 Purchase \N \N 1 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Compra PV1-C-18 cancelada. 189.186.41.207 9a1163c6-2240-4ad0-871d-a99524009ca6 2019-02-16 00:12:53.302443 1958 492 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.207 9a1163c6-2240-4ad0-871d-a99524009ca6 2019-02-16 00:12:53.331168 1959 482 Product \N \N 1 User \N create ---\nsku: BLU-482\nname: B-0083\ndescription: BLUSA NEGRA CON COLA CQBYCQ\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-482 fue creado. 189.186.41.207 22029ec4-b92d-4315-867a-97caa5e147f0 2019-02-16 00:14:47.524173 1960 482 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0000482'\n 2 \N 189.186.41.207 22029ec4-b92d-4315-867a-97caa5e147f0 2019-02-16 00:14:47.570559 1961 493 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 482\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 22029ec4-b92d-4315-867a-97caa5e147f0 2019-02-16 00:14:47.614482 1962 34 Purchase \N \N 1 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-19\namount: !ruby/object:BigDecimal 18:0.4495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4495E3\nobservations: ''\npurchase_date: 2019-02-15\nuser_id: '1'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-19 por $ 449.5 MXN creada. 189.186.41.207 7c8c75a5-e5ae-4ece-a7f9-983eb6814d23 2019-02-16 00:14:56.403209 1963 493 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.207 7c8c75a5-e5ae-4ece-a7f9-983eb6814d23 2019-02-16 00:14:56.447916 1964 92 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 19\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-02-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-46\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 721750e3-00db-47bf-ada7-7ce274e45ecb 2019-02-16 00:15:22.557682 1965 493 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.207 721750e3-00db-47bf-ada7-7ce274e45ecb 2019-02-16 00:15:22.601004 1966 92 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 fadc2695-2f83-462f-acab-df5df83d157f 2019-02-16 00:15:28.957311 1967 103 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 19\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 92\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-46\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-46 189.186.41.207 fadc2695-2f83-462f-acab-df5df83d157f 2019-02-16 00:15:28.996249 1968 93 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 18\namount: !ruby/object:BigDecimal 18:0.66293E3\ntax: !ruby/object:BigDecimal 18:0.10607E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.769E3\nstatus: 0\ndate_sale: 2019-02-15\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-45\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 a6e91ad5-514f-4f76-baff-1d93733b1b43 2019-02-16 00:30:35.933215 1969 302 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.41.207 a6e91ad5-514f-4f76-baff-1d93733b1b43 2019-02-16 00:30:35.97519 1970 93 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 fda23dc4-6c59-4996-aeaa-c55c560f5efa 2019-02-16 00:31:13.830868 1971 104 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 18\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.769E3\nmove_type: '1'\nsale_id: 93\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-45\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.231E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-45 189.186.41.207 fda23dc4-6c59-4996-aeaa-c55c560f5efa 2019-02-16 00:31:13.864098 1972 94 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 19\namount: !ruby/object:BigDecimal 18:0.148965E4\ntax: !ruby/object:BigDecimal 18:0.23835E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1728E4\nstatus: 0\ndate_sale: 2019-02-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-47\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 5d0219e6-fd47-4fbc-866c-c940232699f7 2019-02-16 00:55:28.077998 1973 250 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 5d0219e6-fd47-4fbc-866c-c940232699f7 2019-02-16 00:55:28.116688 1976 105 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 19\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1728E4\nmove_type: '1'\nsale_id: 94\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-47\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1728E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-47 189.186.41.207 8d26e16f-11cf-4bb0-beb8-5df425dc30f0 2019-02-16 00:56:35.153804 1977 95 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 19\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-02-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-48\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 bbc50388-8466-4dcf-a82e-ebb810ed269f 2019-02-16 01:46:20.304462 1978 135 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.41.207 bbc50388-8466-4dcf-a82e-ebb810ed269f 2019-02-16 01:46:20.353345 1979 95 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 9ce1745f-f1af-4f60-9cd0-287020d32bd1 2019-02-16 01:47:28.68 1980 106 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 19\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 95\ncardnumber: 9978\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-48\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-48 189.186.41.207 9ce1745f-f1af-4f60-9cd0-287020d32bd1 2019-02-16 01:47:28.720956 1981 1 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 19\nquantity: !ruby/object:BigDecimal 18:0.86E2\nstatus: 1\nobservations: ''\nexpense_date: 2019-02-15\nexpense_code: PV1-E-1\n 1 Egreso por 86.0 registrado 189.186.41.207 f38573cf-7898-4375-8e72-b87bb9f97abb 2019-02-16 02:44:40.882489 1982 107 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 19\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.86E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 1\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 f38573cf-7898-4375-8e72-b87bb9f97abb 2019-02-16 02:44:40.923571 1983 17 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 19\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4374E4\namount_out: !ruby/object:BigDecimal 18:0.86E2\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.29E4\ncash_fund: !ruby/object:BigDecimal 18:0.887E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3787E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 7e6b9860-9d01-4fd1-b819-2cb3d8cf3b04 2019-02-16 02:49:06.473299 1984 19 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 7e6b9860-9d01-4fd1-b819-2cb3d8cf3b04 2019-02-16 02:49:06.489733 1985 18 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 18\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1757E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.1268E4\ncash_fund: !ruby/object:BigDecimal 18:0.562E3\nphysical_cash: !ruby/object:BigDecimal 18:0.183E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 cce4d5b3-c1e2-4b2e-b175-6cac82caa61e 2019-02-16 02:56:21.196787 1986 18 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 cce4d5b3-c1e2-4b2e-b175-6cac82caa61e 2019-02-16 02:56:21.210943 1987 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-14 16:53:30.105496000 Z\n- &1 2019-02-15 20:28:56.435199000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-16 18:02:20.668857088 Z\nsign_in_count:\n- 18\n- 19\n 41 \N 189.186.41.207 cbebb188-590c-4bd5-a295-e3ffd66f5945 2019-02-16 18:02:20.715011 1988 2 User \N \N 2 User \N update ---\nunique_session_id:\n- BX3KM_wET92optiTG2Bb\n- XAs5D3CyKgMvTSHC9qRY\n 42 \N 189.186.41.207 cbebb188-590c-4bd5-a295-e3ffd66f5945 2019-02-16 18:02:20.757837 1989 20 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.887E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 887.0 189.186.41.207 19f1e122-1c81-42c0-8f86-73ba86a124c7 2019-02-16 18:02:49.303933 1990 96 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 20\namount: !ruby/object:BigDecimal 18:0.47328E3\ntax: !ruby/object:BigDecimal 18:0.7572E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-02-16\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-49\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 cde9a8e6-1450-4d6c-91d7-162b0d2fed61 2019-02-16 19:51:33.236843 1991 157 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.41.207 cde9a8e6-1450-4d6c-91d7-162b0d2fed61 2019-02-16 19:51:33.280373 1992 96 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 64cb44a5-adb4-4c35-b896-09bc73935c60 2019-02-16 19:52:40.115843 1993 108 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 20\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.549E3\nmove_type: '1'\nsale_id: 96\ncardnumber: 3681\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-49\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-49 189.186.41.207 64cb44a5-adb4-4c35-b896-09bc73935c60 2019-02-16 19:52:40.152248 1994 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-15 21:32:34.185324000 Z\n- &1 2019-02-15 22:21:39.328535000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-16 20:03:49.225341713 Z\nsign_in_count:\n- 16\n- 17\n 34 \N 189.186.41.207 e133e431-78ad-4c79-acbc-f2798dac016b 2019-02-16 20:03:49.266202 1995 3 User \N \N 3 User \N update ---\nunique_session_id:\n- qVisrxTuRB7uqLzBH7DF\n- yfMsNsycVjGUtTmjbepm\n 35 \N 189.186.41.207 e133e431-78ad-4c79-acbc-f2798dac016b 2019-02-16 20:03:49.292833 1996 21 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.562E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 562.0 189.186.41.207 3ba59852-883a-4d91-b6e1-778592e474cc 2019-02-16 20:04:04.873242 1997 97 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 21\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-02-16\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-46\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 ad954cd2-5cd8-4079-ab33-2a62afdea9dc 2019-02-16 20:04:20.338641 1998 437 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.41.207 ad954cd2-5cd8-4079-ab33-2a62afdea9dc 2019-02-16 20:04:20.378655 1999 97 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 5706b1ed-9bbe-4d9c-9c63-4fd2e59218d3 2019-02-16 20:05:15.169015 2000 109 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 21\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 97\ncardnumber: 4535\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-46\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-46 189.186.41.207 5706b1ed-9bbe-4d9c-9c63-4fd2e59218d3 2019-02-16 20:05:15.206838 2001 98 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 20\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-02-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-50\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 6a1abdec-e23a-470a-b4ec-0a449e224d1d 2019-02-16 20:08:16.383848 2002 151 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 6a1abdec-e23a-470a-b4ec-0a449e224d1d 2019-02-16 20:08:16.414418 2003 98 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 3607dd37-dde6-4477-98af-7485851d1d58 2019-02-16 20:08:40.243744 2004 110 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 20\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 98\ncardnumber: 4535\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-50\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-50 189.186.41.207 3607dd37-dde6-4477-98af-7485851d1d58 2019-02-16 20:08:40.276974 2005 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-14 22:10:18.474107000 Z\n- &1 2019-02-15 00:00:20.311948000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-16 20:53:02.006396627 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938389\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938249\n mask_addr: 4294967295\nsign_in_count:\n- 28\n- 29\n 58 \N 200.68.150.201 8abf3bb7-2e50-4987-b9f9-4587b6b29809 2019-02-16 20:53:02.014746 2006 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZQf4PmAoPsaQPHZ-shcj\n- "-CF49HnpaxkHXkkFWj2J"\n 59 \N 200.68.150.201 8abf3bb7-2e50-4987-b9f9-4587b6b29809 2019-02-16 20:53:02.032877 2007 111 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 20\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 90\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-45 189.186.41.207 d162fc77-1440-4926-8e9b-12fe2d6e63b0 2019-02-16 20:56:54.628107 2008 90 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.207 41419811-bef0-4dac-88b0-ebadf97a5b5c 2019-02-16 20:56:57.106395 2009 99 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 20\namount: !ruby/object:BigDecimal 18:0.153276E4\ntax: !ruby/object:BigDecimal 18:0.24524E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1778E4\nstatus: 0\ndate_sale: 2019-02-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-51\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 77831576-7811-4822-afe4-7cc32f0cb8ce 2019-02-16 21:05:45.561142 2010 149 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 77831576-7811-4822-afe4-7cc32f0cb8ce 2019-02-16 21:05:45.603669 2011 218 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 189.186.41.207 77831576-7811-4822-afe4-7cc32f0cb8ce 2019-02-16 21:05:45.638112 2012 99 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 99d1edf5-2164-499c-a041-3004cb2188fd 2019-02-16 21:05:56.089999 2013 112 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 20\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1778E4\nmove_type: '1'\nsale_id: 99\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-51\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1778E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-51 189.186.41.207 99d1edf5-2164-499c-a041-3004cb2188fd 2019-02-16 21:05:56.125295 2014 100 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 20\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-02-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-52\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 dcc7b4c2-352a-40bc-9b6f-31f70b3623f9 2019-02-16 21:16:16.111181 2015 220 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.41.207 dcc7b4c2-352a-40bc-9b6f-31f70b3623f9 2019-02-16 21:16:16.155989 2016 100 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 6d779904-ad41-44f1-b9fa-c2525371adf3 2019-02-16 21:17:05.41848 2017 113 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 20\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 100\ncardnumber: 2428\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-52\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-52 189.186.41.207 6d779904-ad41-44f1-b9fa-c2525371adf3 2019-02-16 21:17:05.452223 2018 101 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 20\namount: !ruby/object:BigDecimal 18:0.103362E4\ntax: !ruby/object:BigDecimal 18:0.16538E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-02-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-53\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 aace39ac-33c9-465e-b3c4-8c6dab5a9199 2019-02-16 21:20:06.600159 2019 268 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 3 \N 189.186.41.207 aace39ac-33c9-465e-b3c4-8c6dab5a9199 2019-02-16 21:20:06.640913 2021 114 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 20\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 101\ncardnumber: 5587\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-53\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-53 189.186.41.207 f9ceb619-8ee4-41fd-9ace-30c6601acd66 2019-02-16 21:21:15.133231 2022 102 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 20\namount: !ruby/object:BigDecimal 18:0.42155E3\ntax: !ruby/object:BigDecimal 18:0.6745E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-02-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-54\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 08edc2fa-7442-41e0-b2d0-5b33a11500ae 2019-02-16 21:56:46.176977 2023 134 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 08edc2fa-7442-41e0-b2d0-5b33a11500ae 2019-02-16 21:56:46.21627 2024 102 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 bc3f60ee-f68d-4927-9375-9ca35686d77f 2019-02-16 21:58:27.259415 2025 115 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 20\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.489E3\nmove_type: '1'\nsale_id: 102\ncardnumber: 9515\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-54\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-54 189.186.41.207 bc3f60ee-f68d-4927-9375-9ca35686d77f 2019-02-16 21:58:27.295673 2026 103 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 21\namount: !ruby/object:BigDecimal 18:0.72328E3\ntax: !ruby/object:BigDecimal 18:0.11572E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.839E3\nstatus: 0\ndate_sale: 2019-02-16\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-47\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 351fc9e9-bfa4-4461-9a17-187f3399fd95 2019-02-16 22:24:37.171288 2027 418 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 351fc9e9-bfa4-4461-9a17-187f3399fd95 2019-02-16 22:24:37.209019 2028 103 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 df515531-fa80-48dd-a7b0-4fbe165b0c1d 2019-02-16 22:24:55.570357 2029 116 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 21\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.839E3\nmove_type: '1'\nsale_id: 103\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-47\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.85E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-47 189.186.41.207 df515531-fa80-48dd-a7b0-4fbe165b0c1d 2019-02-16 22:24:55.60498 2030 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-15 00:00:20.311948000 Z\n- &1 2019-02-16 20:53:02.006396000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-16 23:28:15.487358214 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938249\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938249\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539749\n mask_addr: 4294967295\nsign_in_count:\n- 29\n- 30\n 60 \N 177.228.118.101 220de386-e12a-4160-b213-cc0a4fa3f18d 2019-02-16 23:28:15.49673 2031 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-CF49HnpaxkHXkkFWj2J"\n- EMKGMs1VNaWg3MCiSsWK\n 61 \N 177.228.118.101 220de386-e12a-4160-b213-cc0a4fa3f18d 2019-02-16 23:28:15.515571 2032 23 Customer \N \N 2 User \N create ---\nnick_name: NANCY CONTRERAS\nphone: "(667) 127-1990"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.6E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente NANCY CONTRERAS fue registrado. 189.186.41.207 295794b5-289b-4cda-a364-cf9007e15a3e 2019-02-17 00:10:04.267987 2033 104 Sale \N \N 2 User \N create ---\ncustomer_id: 23\nuser_id: 2\nopen_cash_register_id: 20\namount: !ruby/object:BigDecimal 18:0.49052E3\ntax: !ruby/object:BigDecimal 18:0.7848E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-02-16\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-55\nexpiration_date: 2019-03-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 baa58a19-1ae2-464a-9ca1-62a9e13d3f43 2019-02-17 00:10:33.310158 2034 12 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 baa58a19-1ae2-464a-9ca1-62a9e13d3f43 2019-02-17 00:10:33.351354 2035 117 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 20\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 104\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-55\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-55 189.186.41.207 8f6a1036-7f19-481e-bbd8-28fc0bf5511d 2019-02-17 00:10:43.097591 2036 104 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 5a873e84-51f1-4e94-bfd6-8a17cd752646 2019-02-17 00:10:46.414475 2037 105 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 21\namount: !ruby/object:BigDecimal 18:0.85259E3\ntax: !ruby/object:BigDecimal 18:0.13641E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.989E3\nstatus: 0\ndate_sale: 2019-02-16\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-48\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 515c17e4-6410-4771-8f54-b54a8e7d2f0e 2019-02-17 00:24:52.133237 2038 293 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 189.186.41.207 515c17e4-6410-4771-8f54-b54a8e7d2f0e 2019-02-17 00:24:52.180803 2039 105 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 f96e3643-cda2-489a-b348-f8c26a2c321f 2019-02-17 00:26:26.773417 2040 118 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 21\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.989E3\nmove_type: '1'\nsale_id: 105\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-48\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-48 189.186.41.207 f96e3643-cda2-489a-b348-f8c26a2c321f 2019-02-17 00:26:26.804791 2064 490 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 4 \N 189.186.41.207 3f0cdcc0-6cff-4990-9dd6-f3454ca0201b 2019-02-17 21:04:44.92273 2041 24 Customer \N \N 2 User \N create ---\nnick_name: ELIZABETH BEDOLLA\nphone: "(667) 401-5400"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.6E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ELIZABETH BEDOLLA fue registrado. 189.186.41.207 c0449ff7-37bb-4977-b029-2181bdf7e1ac 2019-02-17 01:32:12.545904 2042 106 Sale \N \N 2 User \N create ---\ncustomer_id: 24\nuser_id: 2\nopen_cash_register_id: 20\namount: !ruby/object:BigDecimal 18:0.90431E3\ntax: !ruby/object:BigDecimal 18:0.14469E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1049E4\nstatus: 0\ndate_sale: 2019-02-16\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-56\nexpiration_date: 2019-03-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 dbd24339-440b-437c-8252-5a4082aa5fa6 2019-02-17 01:32:37.998845 2043 181 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.207 dbd24339-440b-437c-8252-5a4082aa5fa6 2019-02-17 01:32:38.041824 2044 119 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 20\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 106\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-56\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-56 189.186.41.207 7432b83f-7692-4396-a9e9-c7a9eff7e512 2019-02-17 01:32:57.667163 2045 106 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 7adf74d8-b609-4e4d-8fbc-7d69d1dca263 2019-02-17 01:33:04.141571 2046 2 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 20\nquantity: !ruby/object:BigDecimal 18:0.783E3\nstatus: 1\nobservations: "SUELDO CHIO $733\\r\\nCOMIDA $50"\nexpense_date: 2019-02-16\nexpense_code: PV1-E-2\n 1 Egreso por 783.0 registrado 189.186.41.207 c908c7c0-6180-4d6c-b0e5-683985275764 2019-02-17 02:39:57.213315 2047 120 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 20\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.783E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 2\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 c908c7c0-6180-4d6c-b0e5-683985275764 2019-02-17 02:39:57.265831 2048 19 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 20\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6913E4\namount_out: !ruby/object:BigDecimal 18:0.783E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.32E4\ncash_fund: !ruby/object:BigDecimal 18:0.882E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4082E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 bc0bfeef-a304-4997-9ba0-573cde4f3222 2019-02-17 02:45:16.167556 2049 20 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 bc0bfeef-a304-4997-9ba0-573cde4f3222 2019-02-17 02:45:16.187487 2050 20 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 21\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.2577E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.1828E4\ncash_fund: !ruby/object:BigDecimal 18:0.562E3\nphysical_cash: !ruby/object:BigDecimal 18:0.239E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 daa3c6cf-d483-4afa-a06a-11af94574d31 2019-02-17 02:53:14.905411 2051 21 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 daa3c6cf-d483-4afa-a06a-11af94574d31 2019-02-17 02:53:14.925882 2052 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-16 20:53:02.006396000 Z\n- &1 2019-02-16 23:28:15.487358000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-17 04:03:03.096199240 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938249\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539749\n mask_addr: 4294967295\nsign_in_count:\n- 30\n- 31\n 62 \N 177.228.118.101 53bf4692-4d83-4818-a1c2-3c13ed50002e 2019-02-17 04:03:03.139668 2053 4 User \N \N 4 User \N update ---\nunique_session_id:\n- EMKGMs1VNaWg3MCiSsWK\n- 9ox9x2-wE1UwDCzwq35y\n 63 \N 177.228.118.101 53bf4692-4d83-4818-a1c2-3c13ed50002e 2019-02-17 04:03:03.172676 2054 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-15 22:21:39.328535000 Z\n- &1 2019-02-16 20:03:49.225341000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-17 17:13:18.728499441 Z\nsign_in_count:\n- 17\n- 18\n 36 \N 189.186.41.207 3f794a56-c762-4bb4-a0fb-66020f51b6e1 2019-02-17 17:13:18.770555 2055 3 User \N \N 3 User \N update ---\nunique_session_id:\n- yfMsNsycVjGUtTmjbepm\n- zQXeEQPE6HUX6zLm5Tcb\n 37 \N 189.186.41.207 3f794a56-c762-4bb4-a0fb-66020f51b6e1 2019-02-17 17:13:18.79886 2056 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-16 20:03:49.225341000 Z\n- &1 2019-02-17 17:13:18.728499000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-17 18:12:44.373644516 Z\nsign_in_count:\n- 18\n- 19\n 38 \N 189.186.41.207 d086fbbb-f6cf-4648-b23f-63b729d46ff7 2019-02-17 18:12:44.3817 2057 3 User \N \N 3 User \N update ---\nunique_session_id:\n- zQXeEQPE6HUX6zLm5Tcb\n- xFxAN7o_Cozc5AvdZjNf\n 39 \N 189.186.41.207 d086fbbb-f6cf-4648-b23f-63b729d46ff7 2019-02-17 18:12:44.400738 2058 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-16 23:28:15.487358000 Z\n- &1 2019-02-17 04:03:03.096199000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-17 18:42:31.954991630 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539749\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540149\n mask_addr: 4294967295\nsign_in_count:\n- 31\n- 32\n 64 \N 177.228.119.245 b3bfb6e2-757d-4119-a1a5-0b87a272ebc4 2019-02-17 18:42:31.964928 2059 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9ox9x2-wE1UwDCzwq35y\n- hU7HMc_-xSm9LYeAeCyL\n 65 \N 177.228.119.245 b3bfb6e2-757d-4119-a1a5-0b87a272ebc4 2019-02-17 18:42:31.985034 2060 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-17 17:13:18.728499000 Z\n- &1 2019-02-17 18:12:44.373644000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-17 20:53:52.531674481 Z\nsign_in_count:\n- 19\n- 20\n 40 \N 189.186.41.207 18599619-43ac-4b10-baaa-c1635356af19 2019-02-17 20:53:52.541169 2061 3 User \N \N 3 User \N update ---\nunique_session_id:\n- xFxAN7o_Cozc5AvdZjNf\n- xq9Z7BF8pE2eY2eRtEpn\n 41 \N 189.186.41.207 18599619-43ac-4b10-baaa-c1635356af19 2019-02-17 20:53:52.560507 2062 22 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.562E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 562.0 189.186.41.207 c27967cb-bc48-4e04-a459-c5106261e787 2019-02-17 20:54:03.752885 2063 107 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 22\namount: !ruby/object:BigDecimal 18:0.675E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.675E3\nstatus: 0\ndate_sale: 2019-02-17\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-49\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 3f0cdcc0-6cff-4990-9dd6-f3454ca0201b 2019-02-17 21:04:44.884515 2065 107 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 a09ef7c7-0f96-4a68-a66f-76e72ec4038e 2019-02-17 21:05:55.041182 2066 121 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 22\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1174E4\nmove_type: '1'\nsale_id: 107\ncardnumber: 5045\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-49\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-49 189.186.41.207 a09ef7c7-0f96-4a68-a66f-76e72ec4038e 2019-02-17 21:05:55.080206 2067 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-15 00:11:26.113711000 Z\n- &1 2019-02-15 02:49:59.545716000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-17 21:24:21.326801005 Z\nsign_in_count:\n- 13\n- 14\n 28 \N 189.186.41.207 3c3d08b4-eb24-42b5-8565-dc29c0043afe 2019-02-17 21:24:21.356095 2068 9 User \N \N 9 User \N update ---\nunique_session_id:\n- iiTHj--M2w3tU6eS-p_1\n- xbhCnmr4SpXVyMDi-aZp\n 29 \N 189.186.41.207 3c3d08b4-eb24-42b5-8565-dc29c0043afe 2019-02-17 21:24:21.387218 2069 23 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.882E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 882.0 189.186.41.207 15722598-aba2-4caf-9d28-a3d02d660130 2019-02-17 21:24:26.791077 2070 108 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 23\namount: !ruby/object:BigDecimal 18:0.120603E4\ntax: !ruby/object:BigDecimal 18:0.19296E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.139899E4\nstatus: 0\ndate_sale: 2019-02-17\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-57\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 fe6e7f95-fe8b-4cac-9fe9-7054ceb01e7b 2019-02-17 21:24:58.374789 2071 249 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 fe6e7f95-fe8b-4cac-9fe9-7054ceb01e7b 2019-02-17 21:24:58.418664 2072 108 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 c5bf6339-cdee-405d-a759-5781e55a0f84 2019-02-17 21:25:02.459233 2073 122 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 23\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.139899E4\nmove_type: '1'\nsale_id: 108\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-57\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.10101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-57 189.186.41.207 c5bf6339-cdee-405d-a759-5781e55a0f84 2019-02-17 21:25:02.497557 2074 109 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 23\namount: !ruby/object:BigDecimal 18:0.107586E4\ntax: !ruby/object:BigDecimal 18:0.17214E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1248E4\nstatus: 0\ndate_sale: 2019-02-17\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-58\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 fc4e80f6-72f4-4cce-9e56-5a8c6c5de896 2019-02-17 21:28:05.326883 2075 151 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.207 fc4e80f6-72f4-4cce-9e56-5a8c6c5de896 2019-02-17 21:28:05.369944 2076 197 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.41.207 fc4e80f6-72f4-4cce-9e56-5a8c6c5de896 2019-02-17 21:28:05.4097 2077 109 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 56b9f62e-acc7-4b68-9e17-73ab93caec8f 2019-02-17 21:28:35.796125 2078 123 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 23\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1248E4\nmove_type: '1'\nsale_id: 109\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-58\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.13E4\nchange: !ruby/object:BigDecimal 18:0.52E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-58 189.186.41.207 56b9f62e-acc7-4b68-9e17-73ab93caec8f 2019-02-17 21:28:35.830522 2079 25 Customer \N \N 9 User \N create ---\nnick_name: AMAHIRANI GARCIA\nphone: "(667) 497-4245"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente AMAHIRANI GARCIA fue registrado. 189.186.41.207 00961166-2f00-4693-ace0-ef061940087b 2019-02-17 21:29:35.762816 2080 110 Sale \N \N 9 User \N create ---\ncustomer_id: 25\nuser_id: 9\nopen_cash_register_id: 23\namount: !ruby/object:BigDecimal 18:0.160086E4\ntax: !ruby/object:BigDecimal 18:0.25614E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1857E4\nstatus: 0\ndate_sale: 2019-02-17\nsaletype: 2\nseller_id: 3\nsale_code: PV1-V-59\nexpiration_date: 2019-03-24\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 85779a3e-0d80-405a-aa70-78e2d28d3342 2019-02-17 21:30:20.251518 2081 15 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 85779a3e-0d80-405a-aa70-78e2d28d3342 2019-02-17 21:30:20.294841 2082 155 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 85779a3e-0d80-405a-aa70-78e2d28d3342 2019-02-17 21:30:20.330958 2083 146 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 85779a3e-0d80-405a-aa70-78e2d28d3342 2019-02-17 21:30:20.365282 2084 124 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 23\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 110\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-59\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-59 189.186.41.207 68795b2a-e42d-4ca7-83e7-4070837ab71f 2019-02-17 21:30:28.564827 2085 124 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 23\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 110\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-59\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.41.207 43c5c4e2-6f5c-4119-a198-96e185881114 2019-02-17 21:30:40.32171 2086 125 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 23\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.557E3\nmove_type: '1'\nsale_id: 110\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-59\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.557E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-59 189.186.41.207 b359471e-f7d3-4851-a063-b8c14ad34e18 2019-02-17 21:30:46.986309 2087 125 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 23\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.557E3\nmove_type: '1'\nsale_id: 110\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-59\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.557E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.41.207 4aa876cf-2484-42b8-a43d-084294ebfc48 2019-02-17 21:31:01.902512 2088 126 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 23\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.557E3\nmove_type: '1'\nsale_id: 110\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-59\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.443E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-59 189.186.41.207 f12b0635-eec0-468a-b148-b18a1de65353 2019-02-17 21:31:09.817109 2089 110 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 5c13a4dc-934a-4b91-885a-2a9900b48afb 2019-02-17 21:31:11.293096 2090 111 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 23\namount: !ruby/object:BigDecimal 18:0.255451E4\ntax: !ruby/object:BigDecimal 18:0.33049E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2885E4\nstatus: 0\ndate_sale: 2019-02-17\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-60\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 a5ce1d37-2fce-4c43-b770-5c2a1261d372 2019-02-17 21:35:32.277445 2091 149 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.207 a5ce1d37-2fce-4c43-b770-5c2a1261d372 2019-02-17 21:35:32.323781 2092 148 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 a5ce1d37-2fce-4c43-b770-5c2a1261d372 2019-02-17 21:35:32.361772 2093 83 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.41.207 a5ce1d37-2fce-4c43-b770-5c2a1261d372 2019-02-17 21:35:32.3959 2094 462 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.41.207 a5ce1d37-2fce-4c43-b770-5c2a1261d372 2019-02-17 21:35:32.431686 2095 13 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 a5ce1d37-2fce-4c43-b770-5c2a1261d372 2019-02-17 21:35:32.467192 2096 111 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-60 cancelada. 189.186.41.207 a07da3ec-d201-4a8f-baf9-622f0fead2ca 2019-02-17 21:36:21.644605 2097 149 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.41.207 a07da3ec-d201-4a8f-baf9-622f0fead2ca 2019-02-17 21:36:21.679017 2098 148 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.207 a07da3ec-d201-4a8f-baf9-622f0fead2ca 2019-02-17 21:36:21.709396 2099 83 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.41.207 a07da3ec-d201-4a8f-baf9-622f0fead2ca 2019-02-17 21:36:21.739433 2100 462 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.41.207 a07da3ec-d201-4a8f-baf9-622f0fead2ca 2019-02-17 21:36:21.76923 2101 13 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.207 a07da3ec-d201-4a8f-baf9-622f0fead2ca 2019-02-17 21:36:21.800039 2102 112 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 23\namount: !ruby/object:BigDecimal 18:0.199503E4\ntax: !ruby/object:BigDecimal 18:0.24097E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2236E4\nstatus: 0\ndate_sale: 2019-02-17\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-61\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 c6102914-8272-4faa-83d7-351436919a3c 2019-02-17 21:39:40.827951 2103 149 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.41.207 c6102914-8272-4faa-83d7-351436919a3c 2019-02-17 21:39:40.870297 2104 148 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.41.207 c6102914-8272-4faa-83d7-351436919a3c 2019-02-17 21:39:40.904333 2105 462 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.41.207 c6102914-8272-4faa-83d7-351436919a3c 2019-02-17 21:39:40.94016 2106 13 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.41.207 c6102914-8272-4faa-83d7-351436919a3c 2019-02-17 21:39:40.975817 2107 112 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 a0acc253-bc14-43af-a740-dc939c27b278 2019-02-17 21:40:00.931804 2108 127 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 23\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.2236E4\nmove_type: '1'\nsale_id: 112\ncardnumber: 4969\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-61\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-61 189.186.41.207 a0acc253-bc14-43af-a740-dc939c27b278 2019-02-17 21:40:00.979853 2109 21 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 22\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1174E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.562E3\nphysical_cash: !ruby/object:BigDecimal 18:0.562E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 fd1f89dc-cea7-42a0-bf58-4fd6219d0952 2019-02-17 21:46:29.780113 2110 22 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 fd1f89dc-cea7-42a0-bf58-4fd6219d0952 2019-02-17 21:46:29.799563 2111 22 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 23\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.543999E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.35E4\ncash_fund: !ruby/object:BigDecimal 18:0.585E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4085E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 ded1ff15-4be6-4cca-931f-ad14f9268216 2019-02-17 22:02:51.637991 2112 23 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 ded1ff15-4be6-4cca-931f-ad14f9268216 2019-02-17 22:02:51.656452 2324 5 User \N \N 5 User \N update ---\nunique_session_id:\n- srx5_uMVuBRJp4B3HvnQ\n- ac7xaYGE5QBsNqxNFngg\n 19 \N 189.252.90.197 007015ef-4f8f-407b-b708-7969b4f68139 2019-02-21 02:40:51.368415 2113 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-14 17:10:36.694926000 Z\n- &1 2019-02-15 18:05:57.653413000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-18 17:53:22.405558679 Z\nsign_in_count:\n- 12\n- 13\n 26 \N 189.186.41.207 fb761f90-118c-45a8-8c49-57eccb6ae7ac 2019-02-18 17:53:22.450932 2114 10 User \N \N 10 User \N update ---\nunique_session_id:\n- LJAdWLJEfrH3ZusFyD5j\n- zoasEVyi234rCNbRzPCR\n 27 \N 189.186.41.207 fb761f90-118c-45a8-8c49-57eccb6ae7ac 2019-02-18 17:53:22.485241 2115 24 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.562E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 562.0 189.186.41.207 5c46b0a8-cdcb-41bd-b13d-bed97821cf4e 2019-02-18 17:53:25.948778 2116 26 Customer \N \N 10 User \N create ---\nnick_name: PERLA ENRIQUEZ\nphone: "(667) 188-3785"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.4E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente PERLA ENRIQUEZ fue registrado. 189.186.41.207 072233c3-5a9d-4089-8f37-2079b5f598c6 2019-02-18 17:54:03.639474 2117 113 Sale \N \N 10 User \N create ---\ncustomer_id: 26\nuser_id: 10\nopen_cash_register_id: 24\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-02-18\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-50\nexpiration_date: 2019-03-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 3502771d-bde2-4019-8f18-f8725c17aecd 2019-02-18 17:58:25.674662 2118 322 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 3502771d-bde2-4019-8f18-f8725c17aecd 2019-02-18 17:58:25.711017 2119 128 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 24\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 113\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-50\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-50 189.186.41.207 3e348708-ee55-45e3-8244-b686b6090a19 2019-02-18 17:58:39.640223 2120 113 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 76ac1f7e-d67a-4772-a4ce-7768e01086a1 2019-02-18 17:58:42.281923 2121 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-17 04:03:03.096199000 Z\n- &1 2019-02-17 18:42:31.954991000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-18 18:04:29.518598907 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539749\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540149\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540149\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 32\n- 33\n 66 \N 189.186.41.207 9003371a-738a-4e10-b266-db3fe478ff50 2019-02-18 18:04:29.546898 2122 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hU7HMc_-xSm9LYeAeCyL\n- EmZSbk599H3xdLv5FKYz\n 67 \N 189.186.41.207 9003371a-738a-4e10-b266-db3fe478ff50 2019-02-18 18:04:29.569735 2123 437 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.41.207 016c2c4b-e84e-48f9-9021-64cfc99c13bd 2019-02-18 19:01:01.799747 2124 437 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.41.207 90d6496a-c3a2-434b-8128-b20022ccce5a 2019-02-18 19:01:06.423048 2125 8 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-02-18\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.41.207 48c37d02-a28a-4940-aa82-4d8d903411f9 2019-02-18 19:01:09.844322 2126 129 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 24\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.319E3\nmove_type: '1'\nsale_id: 113\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-50 189.186.41.207 6e2fa833-0af8-4bfc-8c94-4a6e1b190552 2019-02-18 19:54:20.305818 2127 129 CashRegistersMove \N \N 10 User \N destroy ---\nopen_cash_register_id: 24\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.319E3\nmove_type: '1'\nsale_id: 113\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.41.207 bd6e32e1-d4d0-4586-b5df-b80041b4ac5b 2019-02-18 19:54:26.20355 2128 130 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 24\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.319E3\nmove_type: '1'\nsale_id: 113\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-50 189.186.41.207 d39c7c75-3124-450a-838b-cbd90faf4b3c 2019-02-18 19:54:37.636401 2129 113 Sale \N \N 10 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.207 bafaaeff-1db4-4b4b-8876-1a48f7d00cea 2019-02-18 19:54:39.79184 2130 27 Customer \N \N 10 User \N create ---\nnick_name: MARIA DE JESUS NAVA FRIAS\nphone: "(667) 748-8289"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.4E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIA DE JESUS NAVA FRIAS fue registrado. 189.186.41.207 1e6575a1-af1f-4d97-8f51-d1b5abf15412 2019-02-18 20:01:37.118143 2131 114 Sale \N \N 10 User \N create ---\ncustomer_id: 27\nuser_id: 10\nopen_cash_register_id: 24\namount: !ruby/object:BigDecimal 18:0.80862E3\ntax: !ruby/object:BigDecimal 18:0.12938E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.938E3\nstatus: 0\ndate_sale: 2019-02-18\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-51\nexpiration_date: 2019-03-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 81762145-9ee6-4a46-9e22-442c780261a9 2019-02-18 20:02:07.446484 2132 319 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.41.207 81762145-9ee6-4a46-9e22-442c780261a9 2019-02-18 20:02:07.487679 2133 315 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 81762145-9ee6-4a46-9e22-442c780261a9 2019-02-18 20:02:07.523855 2157 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-18 18:04:29.518598000 Z\n- &1 2019-02-19 01:18:28.180230000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-19 01:39:27.109258826 Z\nsign_in_count:\n- 34\n- 35\n 70 \N 189.186.41.207 51873def-30a8-4926-806f-8bb36af89014 2019-02-19 01:39:27.117464 2158 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Susmsn7ZFcxm8HhgC8YZ\n- E5PBRyNu7CTntqy6F8dh\n 71 \N 189.186.41.207 51873def-30a8-4926-806f-8bb36af89014 2019-02-19 01:39:27.135882 2134 131 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 24\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.281E3\nmove_type: '1'\nsale_id: 114\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-51\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.281E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-51 189.186.41.207 b35fcc74-057b-487f-a571-e66704dcf6c9 2019-02-18 20:02:18.739407 2135 131 CashRegistersMove \N \N 10 User \N destroy ---\nopen_cash_register_id: 24\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.281E3\nmove_type: '1'\nsale_id: 114\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-51\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.281E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.41.207 a80233dc-fab1-423f-97e6-8a4b55b1275d 2019-02-18 20:02:41.95147 2136 132 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 24\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.281E3\nmove_type: '1'\nsale_id: 114\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-51\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.19E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-51 189.186.41.207 c9689a12-a2cb-4904-ab51-e4859316e0b2 2019-02-18 20:02:50.653287 2137 114 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 1b5af102-6937-4c86-85ae-159b5caf5f32 2019-02-18 20:02:51.922794 2138 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-15 20:28:56.435199000 Z\n- &1 2019-02-16 18:02:20.668857000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-18 23:23:04.856252878 Z\nsign_in_count:\n- 19\n- 20\n 43 \N 189.186.41.207 6fccc5e4-493a-4c4c-b516-1e1875349842 2019-02-18 23:23:04.882787 2139 2 User \N \N 2 User \N update ---\nunique_session_id:\n- XAs5D3CyKgMvTSHC9qRY\n- UbzzqPrAorQh_az6qYJ6\n 44 \N 189.186.41.207 6fccc5e4-493a-4c4c-b516-1e1875349842 2019-02-18 23:23:04.908835 2140 25 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.585E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 585.0 189.186.41.207 a1d5add8-a3b3-4140-bf62-96b8774bbba4 2019-02-18 23:23:39.931461 2141 115 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 25\namount: !ruby/object:BigDecimal 18:0.176552E4\ntax: !ruby/object:BigDecimal 18:0.28248E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2048E4\nstatus: 0\ndate_sale: 2019-02-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-62\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 1ed89dc2-a902-41ca-8f90-a1bf901fc1aa 2019-02-18 23:24:49.809191 2142 155 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.207 1ed89dc2-a902-41ca-8f90-a1bf901fc1aa 2019-02-18 23:24:49.856994 2143 199 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 1ed89dc2-a902-41ca-8f90-a1bf901fc1aa 2019-02-18 23:24:49.90997 2144 115 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 d2a03879-d9c9-4417-a2fc-7250eb373d14 2019-02-18 23:25:36.67036 2145 133 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 25\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2048E4\nmove_type: '1'\nsale_id: 115\ncardnumber: 6234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-62\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-62 189.186.41.207 d2a03879-d9c9-4417-a2fc-7250eb373d14 2019-02-18 23:25:36.709426 2146 116 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 24\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-02-18\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-52\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 938c64d2-b10b-4e9b-add2-369a28413a1e 2019-02-19 01:10:23.257015 2147 404 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.41.207 938c64d2-b10b-4e9b-add2-369a28413a1e 2019-02-19 01:10:23.308822 2148 116 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 a42213c1-f31f-4ef9-8232-a6c0b4bf769f 2019-02-19 01:10:50.926387 2149 134 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 24\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 116\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-52\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-52 189.186.41.207 a42213c1-f31f-4ef9-8232-a6c0b4bf769f 2019-02-19 01:10:50.966518 2150 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-17 18:42:31.954991000 Z\n- &1 2019-02-18 18:04:29.518598000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-19 01:18:28.180230205 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540149\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 33\n- 34\n 68 \N 189.186.41.207 6ed17702-14b6-488f-b90b-b42c6ab2ffc8 2019-02-19 01:18:28.194041 2151 4 User \N \N 4 User \N update ---\nunique_session_id:\n- EmZSbk599H3xdLv5FKYz\n- Susmsn7ZFcxm8HhgC8YZ\n 69 \N 189.186.41.207 6ed17702-14b6-488f-b90b-b42c6ab2ffc8 2019-02-19 01:18:28.217864 2152 200 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 e875c456-d132-4a1e-9a95-02ea640159af 2019-02-19 01:24:50.62761 2153 200 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.207 26b9cc6a-17fb-4b08-bd2a-97b9cbf10ddf 2019-02-19 01:25:00.292864 2154 9 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-02-18\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.41.207 64280a55-f653-4083-9859-bc90863788ae 2019-02-19 01:25:09.622139 2155 8 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-02-18\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.41.207 a72e3156-4e11-4721-a040-d5cc9a1b249d 2019-02-19 01:25:45.024033 2156 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 189.186.41.207 a72e3156-4e11-4721-a040-d5cc9a1b249d 2019-02-19 01:25:45.059672 2159 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-19 01:18:28.180230000 Z\n- &1 2019-02-19 01:39:27.109258000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-19 01:40:55.281982128 Z\nsign_in_count:\n- 35\n- 36\n 72 \N 189.186.41.207 7c4fbb15-e84c-481c-921c-2450d8d7100f 2019-02-19 01:40:55.289378 2160 4 User \N \N 4 User \N update ---\nunique_session_id:\n- E5PBRyNu7CTntqy6F8dh\n- x2ZLPkca9p_hZzgRMPpo\n 73 \N 189.186.41.207 7c4fbb15-e84c-481c-921c-2450d8d7100f 2019-02-19 01:40:55.30921 2161 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-19 01:39:27.109258000 Z\n- &1 2019-02-19 01:40:55.281982000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-19 02:02:40.779994628 Z\nsign_in_count:\n- 36\n- 37\n 74 \N 189.186.41.207 d6789cfe-bf5b-482c-9162-768034b62b3d 2019-02-19 02:02:40.788045 2162 4 User \N \N 4 User \N update ---\nunique_session_id:\n- x2ZLPkca9p_hZzgRMPpo\n- ULGhyxsF7D2-y3FTXefS\n 75 \N 189.186.41.207 d6789cfe-bf5b-482c-9162-768034b62b3d 2019-02-19 02:02:40.808698 2163 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-13 04:12:34.103517000 Z\n- &1 2019-02-16 00:04:03.026253000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-19 02:12:54.214843736 Z\nsign_in_count:\n- 29\n- 30\n 60 \N 189.186.41.207 27dfdf72-af5f-4265-8e28-f5eea3b95c4c 2019-02-19 02:12:54.224181 2164 1 User \N \N 1 User \N update ---\nunique_session_id:\n- HNn7wgwsZpjgo8sJJxAs\n- cVUHfNkmy7zsFQezs4CD\n 61 \N 189.186.41.207 27dfdf72-af5f-4265-8e28-f5eea3b95c4c 2019-02-19 02:12:54.246539 2165 3 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 25\nquantity: !ruby/object:BigDecimal 18:0.72E2\nstatus: 1\nobservations: "agua $22\\r\\ncomida$50"\nexpense_date: 2019-02-18\nexpense_code: PV1-E-3\n 1 Egreso por 72.0 registrado 189.186.41.207 7b55b314-a561-4fa9-a9a1-12a9ab6c3860 2019-02-19 02:32:36.060466 2166 135 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 25\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.72E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 3\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 7b55b314-a561-4fa9-a9a1-12a9ab6c3860 2019-02-19 02:32:36.095953 2167 23 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 24\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.1249E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.8E3\ncash_fund: !ruby/object:BigDecimal 18:0.692E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1492E4\nobservations: RETIRO SAMANTHA\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 ba0e6ed1-16e4-4386-8c1c-df490ea02c13 2019-02-19 02:35:03.634313 2168 24 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 ba0e6ed1-16e4-4386-8c1c-df490ea02c13 2019-02-19 02:35:03.65126 2169 117 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 25\namount: !ruby/object:BigDecimal 18:0.85172E3\ntax: !ruby/object:BigDecimal 18:0.13628E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.988E3\nstatus: 0\ndate_sale: 2019-02-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-63\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 40022593-3c29-4f10-8c70-fc86910e151d 2019-02-19 02:40:23.631615 2170 152 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.207 40022593-3c29-4f10-8c70-fc86910e151d 2019-02-19 02:40:23.674753 2171 14 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 40022593-3c29-4f10-8c70-fc86910e151d 2019-02-19 02:40:23.710971 2172 117 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 6dcc961f-8903-4db4-83f2-4aa316a20c47 2019-02-19 02:40:58.558904 2173 136 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 25\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 117\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-63\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4858'\n 1 movimiento de efectivo por venta con folio PV1-V-63 189.186.41.207 6dcc961f-8903-4db4-83f2-4aa316a20c47 2019-02-19 02:40:58.592795 2174 117 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-63 cancelada. 189.186.41.207 85f4f917-0d3a-470e-b7b7-df25fed1cba6 2019-02-19 02:41:29.182587 2175 136 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 25\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 117\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-63\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4858'\n 2 \N 189.186.41.207 85f4f917-0d3a-470e-b7b7-df25fed1cba6 2019-02-19 02:41:29.210835 2176 152 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.41.207 85f4f917-0d3a-470e-b7b7-df25fed1cba6 2019-02-19 02:41:29.246936 2177 14 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.41.207 85f4f917-0d3a-470e-b7b7-df25fed1cba6 2019-02-19 02:41:29.27288 2178 24 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 25\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2048E4\namount_out: !ruby/object:BigDecimal 18:0.72E2\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.513E3\nphysical_cash: !ruby/object:BigDecimal 18:0.513E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 3de218f0-227e-406c-a415-48b3abd68903 2019-02-19 02:43:45.61095 2179 25 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 3de218f0-227e-406c-a415-48b3abd68903 2019-02-19 02:43:45.629824 2180 26 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.692E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 692.0 189.186.41.207 dff413be-ac23-4fd5-96c9-9845adddc823 2019-02-19 17:22:09.500228 2181 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-19 01:40:55.281982000 Z\n- &1 2019-02-19 02:02:40.779994000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-19 17:43:23.586145199 Z\nsign_in_count:\n- 37\n- 38\n 76 \N 189.186.41.207 574596da-25e8-4be0-9a19-50031cca7413 2019-02-19 17:43:23.597626 2182 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ULGhyxsF7D2-y3FTXefS\n- 5-Khzs7CmEoHA2zpz4ni\n 77 \N 189.186.41.207 574596da-25e8-4be0-9a19-50031cca7413 2019-02-19 17:43:23.62227 2207 139 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 27\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 106\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-56 189.186.41.207 1a7b1f72-99fe-48e9-87b0-e6043df70b9b 2019-02-20 00:26:31.624062 2183 483 Product \N \N 4 User \N create ---\nsku: CON-483\nname: PANX-0005\ndescription: CONJUNTO PANTALON APEACH FLORES CAFES\nprice_base: !ruby/object:BigDecimal 18:0.4E3\nprice_sale: !ruby/object:BigDecimal 18:0.969E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 10\nproduct_service_key: '01010101'\n 1 El producto CON-483 fue creado. 189.186.41.207 c9821140-bfe8-44f2-ac9c-176d38a610c4 2019-02-19 17:47:42.543875 2184 483 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000483'\n 2 \N 189.186.41.207 c9821140-bfe8-44f2-ac9c-176d38a610c4 2019-02-19 17:47:42.59317 2185 494 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 483\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 c9821140-bfe8-44f2-ac9c-176d38a610c4 2019-02-19 17:47:42.655375 2186 35 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-14\namount: !ruby/object:BigDecimal 18:0.24E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.24E4\nobservations: ''\npurchase_date: 2019-02-19\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-14 por $ 2400.0 MXN creada. 189.186.41.207 ddda30f1-4f2b-4e3c-9627-cee5dd4a5c96 2019-02-19 17:47:48.562601 2187 494 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.207 ddda30f1-4f2b-4e3c-9627-cee5dd4a5c96 2019-02-19 17:47:48.599347 2188 118 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 26\namount: !ruby/object:BigDecimal 18:0.53362E3\ntax: !ruby/object:BigDecimal 18:0.8538E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.619E3\nstatus: 0\ndate_sale: 2019-02-19\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-53\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 0477b16c-a48b-4e6f-b03b-750b6b556e27 2019-02-19 17:50:44.683755 2189 330 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 4 \N 189.186.41.207 0477b16c-a48b-4e6f-b03b-750b6b556e27 2019-02-19 17:50:44.721956 2190 118 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 bd214f38-f745-49ae-914c-e64cdc76ff86 2019-02-19 17:51:58.404766 2191 137 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 26\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.619E3\nmove_type: '1'\nsale_id: 118\ncardnumber: 3596\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-53\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-53 189.186.41.207 bd214f38-f745-49ae-914c-e64cdc76ff86 2019-02-19 17:51:58.441299 2192 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-19 02:02:40.779994000 Z\n- &1 2019-02-19 17:43:23.586145000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-19 18:05:58.374496688 Z\nsign_in_count:\n- 38\n- 39\n 78 \N 189.186.41.207 084f9b70-f84a-4561-a9ab-43a40daa06ab 2019-02-19 18:05:58.412687 2193 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5-Khzs7CmEoHA2zpz4ni\n- 1UUD6Ugxnaharxn_8Ksx\n 79 \N 189.186.41.207 084f9b70-f84a-4561-a9ab-43a40daa06ab 2019-02-19 18:05:58.445289 2194 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-15 18:05:57.653413000 Z\n- &1 2019-02-18 17:53:22.405558000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-19 18:40:37.783944973 Z\nsign_in_count:\n- 13\n- 14\n 28 \N 189.186.41.207 e66a721e-1102-45eb-bdfb-d74a1b879abb 2019-02-19 18:40:37.791524 2195 10 User \N \N 10 User \N update ---\nunique_session_id:\n- zoasEVyi234rCNbRzPCR\n- a9d_kEBY5eP3NeZPLPxJ\n 29 \N 189.186.41.207 e66a721e-1102-45eb-bdfb-d74a1b879abb 2019-02-19 18:40:37.809167 2196 9 Transfer \N \N 10 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 10\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-02-19\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.41.207 c4a62985-a452-4433-8a89-565b12857e9c 2019-02-19 18:40:53.197936 2197 495 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 202\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 c4a62985-a452-4433-8a89-565b12857e9c 2019-02-19 18:40:53.23484 2198 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-19 17:43:23.586145000 Z\n- &1 2019-02-19 18:05:58.374496000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-19 21:01:57.899875755 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938108\n mask_addr: 4294967295\nsign_in_count:\n- 39\n- 40\n 80 \N 200.68.150.60 9f1fcdf1-e7db-4c63-bd81-73abfcedfe54 2019-02-19 21:01:57.909485 2199 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1UUD6Ugxnaharxn_8Ksx\n- BQYW95J1YoksdNyCbKdA\n 81 \N 200.68.150.60 9f1fcdf1-e7db-4c63-bd81-73abfcedfe54 2019-02-19 21:01:57.931349 2200 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-15 02:49:59.545716000 Z\n- &1 2019-02-17 21:24:21.326801000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-19 23:37:19.982314940 Z\nsign_in_count:\n- 14\n- 15\n 30 \N 189.186.41.207 e14d876c-b685-4a11-a0a6-ac2fe622a9d5 2019-02-19 23:37:19.991353 2201 9 User \N \N 9 User \N update ---\nunique_session_id:\n- xbhCnmr4SpXVyMDi-aZp\n- WgDpgiJHQBQznvEDvhyQ\n 31 \N 189.186.41.207 e14d876c-b685-4a11-a0a6-ac2fe622a9d5 2019-02-19 23:37:20.011309 2202 27 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.513E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 513.0 189.186.41.207 35924971-562e-4624-9a38-7e25ddb33281 2019-02-19 23:39:30.169925 2203 119 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 27\namount: !ruby/object:BigDecimal 18:0.90431E3\ntax: !ruby/object:BigDecimal 18:0.14469E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1049E4\nstatus: 0\ndate_sale: 2019-02-19\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-64\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 df5c74ed-4cce-414a-a8d2-dd94f1fc77db 2019-02-20 00:12:51.434881 2204 181 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.41.207 df5c74ed-4cce-414a-a8d2-dd94f1fc77db 2019-02-20 00:12:51.476532 2205 119 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 b7e8ffe3-f44c-4403-937d-56b6e9626c40 2019-02-20 00:14:46.525097 2206 138 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 27\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1049E4\nmove_type: '1'\nsale_id: 119\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-64\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1049E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-64 189.186.41.207 b7e8ffe3-f44c-4403-937d-56b6e9626c40 2019-02-20 00:14:46.562076 2209 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-19 18:05:58.374496000 Z\n- &1 2019-02-19 21:01:57.899875000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-20 01:18:16.356703332 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938108\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938108\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 40\n- 41\n 82 \N 189.186.41.207 703c7bfa-d267-4543-8d42-0f3f0a95a23d 2019-02-20 01:18:16.380559 2210 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BQYW95J1YoksdNyCbKdA\n- fLPNyHwsNXiQZAZaAoGU\n 83 \N 189.186.41.207 703c7bfa-d267-4543-8d42-0f3f0a95a23d 2019-02-20 01:18:16.40412 2211 120 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 27\namount: !ruby/object:BigDecimal 18:0.101551E4\ntax: !ruby/object:BigDecimal 18:0.16248E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.117799E4\nstatus: 0\ndate_sale: 2019-02-19\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-65\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 a0b1dde2-b16c-4796-97cf-7cb65892cd01 2019-02-20 01:24:38.277832 2212 198 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.41.207 a0b1dde2-b16c-4796-97cf-7cb65892cd01 2019-02-20 01:24:38.313144 2213 138 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.41.207 a0b1dde2-b16c-4796-97cf-7cb65892cd01 2019-02-20 01:24:38.365827 2214 120 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 a274fc5e-bda7-4be4-99fc-96e386a02950 2019-02-20 01:26:29.053367 2215 140 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 27\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.117799E4\nmove_type: '1'\nsale_id: 120\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-65\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.117799E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-65 189.186.41.207 a274fc5e-bda7-4be4-99fc-96e386a02950 2019-02-20 01:26:29.091919 2216 28 Customer \N \N 9 User \N create ---\nnick_name: OLGA ARREOLA\nphone: "(667) 421-1322"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.4E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente OLGA ARREOLA fue registrado. 189.186.41.207 37f57a8f-ae0a-4dc2-b370-fd6a1ad0b0dc 2019-02-20 01:49:52.809607 2217 121 Sale \N \N 9 User \N create ---\ncustomer_id: 28\nuser_id: 9\nopen_cash_register_id: 27\namount: !ruby/object:BigDecimal 18:0.103362E4\ntax: !ruby/object:BigDecimal 18:0.16538E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-02-19\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-66\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 94478b11-547a-4154-a84d-c812934c8d02 2019-02-20 01:50:25.961973 2218 268 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 4 \N 189.186.41.207 94478b11-547a-4154-a84d-c812934c8d02 2019-02-20 01:50:26.006951 2219 121 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-66 cancelada. 189.186.41.207 1dea5c15-bda2-43b9-84f5-9a8cfb3102b3 2019-02-20 01:50:34.498125 2220 268 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.11E2\n 5 \N 189.186.41.207 1dea5c15-bda2-43b9-84f5-9a8cfb3102b3 2019-02-20 01:50:34.537423 2221 122 Sale \N \N 9 User \N create ---\ncustomer_id: 28\nuser_id: 9\nopen_cash_register_id: 27\namount: !ruby/object:BigDecimal 18:0.103362E4\ntax: !ruby/object:BigDecimal 18:0.16538E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-02-19\nsaletype: 2\nseller_id: 3\nsale_code: PV1-V-67\nexpiration_date: 2019-03-26\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 95575e1c-0400-4ee6-8250-6009d72827af 2019-02-20 01:51:01.816492 2222 268 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 6 \N 189.186.41.207 95575e1c-0400-4ee6-8250-6009d72827af 2019-02-20 01:51:01.859687 2223 141 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 27\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 122\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-67\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-67 189.186.41.207 3cf466b0-b6dc-4b6a-a997-4146d01700e0 2019-02-20 01:51:15.327334 2224 122 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 f1a66b30-6ba1-4c37-8a90-4a3d9a38708b 2019-02-20 01:51:16.657849 2225 25 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 27\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.317599E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.32E4\ncash_fund: !ruby/object:BigDecimal 27:0.4889899999999998E3\nphysical_cash: !ruby/object:BigDecimal 18:0.368899E4\nobservations: RETIRO DINERO SAMANTHA\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 fec14274-b497-4ae3-9953-b7c0fc900850 2019-02-20 02:31:16.174787 2226 27 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 fec14274-b497-4ae3-9953-b7c0fc900850 2019-02-20 02:31:16.195136 2227 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-17 18:12:44.373644000 Z\n- &1 2019-02-17 20:53:52.531674000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-20 02:45:23.460723620 Z\nsign_in_count:\n- 20\n- 21\n 42 \N 189.186.41.207 791f10bc-ff6f-4ef3-b8cf-199bba0c0da3 2019-02-20 02:45:23.501269 2228 3 User \N \N 3 User \N update ---\nunique_session_id:\n- xq9Z7BF8pE2eY2eRtEpn\n- zrr8YoiwXbitWYfuXVEh\n 43 \N 189.186.41.207 791f10bc-ff6f-4ef3-b8cf-199bba0c0da3 2019-02-20 02:45:23.529339 2229 26 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 26\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.619E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.692E3\nphysical_cash: !ruby/object:BigDecimal 18:0.692E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 231dcecd-c012-4ecf-85ab-5fedcfb0a01b 2019-02-20 02:50:40.454628 2230 26 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 231dcecd-c012-4ecf-85ab-5fedcfb0a01b 2019-02-20 02:50:40.477686 2347 154 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 32\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 14\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.897E3\nchange: !ruby/object:BigDecimal 18:0.897E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.41.207 162751e4-c4a4-427d-9c08-8248c42b8d5f 2019-02-21 21:12:49.235815 2231 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-19 21:01:57.899875000 Z\n- &1 2019-02-20 01:18:16.356703000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-20 16:18:42.779394735 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938108\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539445\n mask_addr: 4294967295\nsign_in_count:\n- 41\n- 42\n 84 \N 177.228.117.53 81d60d45-4983-4a9b-b3d6-b32010a2d97a 2019-02-20 16:18:42.830505 2232 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fLPNyHwsNXiQZAZaAoGU\n- Zjxy-7s-Fxc8jBg6ajjb\n 85 \N 177.228.117.53 81d60d45-4983-4a9b-b3d6-b32010a2d97a 2019-02-20 16:18:42.866812 2233 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-16 18:02:20.668857000 Z\n- &1 2019-02-18 23:23:04.856252000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-20 16:33:27.060657144 Z\nsign_in_count:\n- 20\n- 21\n 45 \N 189.186.41.207 1996acf2-119a-40bd-bb3c-ded6fda70a5a 2019-02-20 16:33:27.069647 2234 2 User \N \N 2 User \N update ---\nunique_session_id:\n- UbzzqPrAorQh_az6qYJ6\n- yPfGfU5w4HxFgGyeVnYG\n 46 \N 189.186.41.207 1996acf2-119a-40bd-bb3c-ded6fda70a5a 2019-02-20 16:33:27.092484 2235 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-16 00:04:03.026253000 Z\n- &1 2019-02-19 02:12:54.214843000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-20 16:41:01.944867755 Z\nsign_in_count:\n- 30\n- 31\n 62 \N 189.186.41.207 b5ed5492-8f7f-4453-89e9-a411a62861ee 2019-02-20 16:41:01.952792 2236 1 User \N \N 1 User \N update ---\nunique_session_id:\n- cVUHfNkmy7zsFQezs4CD\n- PyuZbYCC3sXgtrqFfukS\n 63 \N 189.186.41.207 b5ed5492-8f7f-4453-89e9-a411a62861ee 2019-02-20 16:41:01.972225 2237 28 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.489E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 489.0 189.186.41.207 33d4f659-5fc8-4673-9650-4635eaaad79e 2019-02-20 16:49:19.493788 2238 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-18 17:53:22.405558000 Z\n- &1 2019-02-19 18:40:37.783944000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-20 18:04:39.416062788 Z\nsign_in_count:\n- 14\n- 15\n 30 \N 189.186.41.207 6eb76bf2-5e5a-47a5-8609-6c77134688fa 2019-02-20 18:04:39.423625 2239 10 User \N \N 10 User \N update ---\nunique_session_id:\n- a9d_kEBY5eP3NeZPLPxJ\n- u-o66tsAY7Nz1SssvZ42\n 31 \N 189.186.41.207 6eb76bf2-5e5a-47a5-8609-6c77134688fa 2019-02-20 18:04:39.444552 2240 29 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.692E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 692.0 189.186.41.207 f0665fb7-b5ca-418c-9fd1-4d4d47c11e72 2019-02-20 18:04:45.771607 2241 123 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 28\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-02-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-68\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 7acb535e-9472-442a-a4a8-740695743847 2019-02-20 19:03:33.960034 2242 164 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.41.207 7acb535e-9472-442a-a4a8-740695743847 2019-02-20 19:03:34.001746 2243 123 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 97078cbd-d960-4ef1-a3bd-25181110d2f9 2019-02-20 19:05:37.966479 2244 142 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 28\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 123\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-68\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-68 189.186.41.207 97078cbd-d960-4ef1-a3bd-25181110d2f9 2019-02-20 19:05:38.00502 2245 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-17 21:24:21.326801000 Z\n- &1 2019-02-19 23:37:19.982314000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-20 19:10:11.999100485 Z\nsign_in_count:\n- 15\n- 16\n 32 \N 189.186.41.207 183fe164-2175-4965-948f-11377aa1e9bd 2019-02-20 19:10:12.006272 2246 9 User \N \N 9 User \N update ---\nunique_session_id:\n- WgDpgiJHQBQznvEDvhyQ\n- cUSuWNmP2KZDbsxv2tWu\n 33 \N 189.186.41.207 183fe164-2175-4965-948f-11377aa1e9bd 2019-02-20 19:10:12.0245 2247 124 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 28\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-02-20\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-69\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 8b14952a-6b30-4ec8-9dd6-291aa7acfe1f 2019-02-20 19:10:40.434049 2248 155 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.41.207 8b14952a-6b30-4ec8-9dd6-291aa7acfe1f 2019-02-20 19:10:40.477784 2249 124 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 6699326c-209a-49a3-95b8-48e1f0754e90 2019-02-20 19:10:50.833034 2250 143 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 28\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 124\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-69\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-69 189.186.41.207 6699326c-209a-49a3-95b8-48e1f0754e90 2019-02-20 19:10:50.864388 2251 125 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 28\namount: !ruby/object:BigDecimal 18:0.103276E4\ntax: !ruby/object:BigDecimal 18:0.26166E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.129442E4\nstatus: 0\ndate_sale: 2019-02-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-70\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 8237b9e0-ad50-4dd1-838c-b5decaf4a401 2019-02-20 19:36:32.8649 2252 177 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.41.207 8237b9e0-ad50-4dd1-838c-b5decaf4a401 2019-02-20 19:36:32.903313 2253 131 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 8237b9e0-ad50-4dd1-838c-b5decaf4a401 2019-02-20 19:36:32.942617 2254 125 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 93766c43-496b-4bd8-ad43-91a712a2b508 2019-02-20 19:36:40.336653 2421 134 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 81e2620a-0ab4-49b3-ac56-08c8b64f2bb2 2019-02-23 00:20:08.235072 2422 140 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 26a93c42-73fd-43f6-9d6a-4b4c09329c40 2019-02-23 00:20:22.099043 2255 144 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 28\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.129442E4\nmove_type: '1'\nsale_id: 125\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-70\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.13E4\nchange: !ruby/object:BigDecimal 18:0.558E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-70 189.186.41.207 93766c43-496b-4bd8-ad43-91a712a2b508 2019-02-20 19:36:40.37294 2256 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-17 20:53:52.531674000 Z\n- &1 2019-02-20 02:45:23.460723000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-20 19:54:21.431797130 Z\nsign_in_count:\n- 21\n- 22\n 44 \N 189.186.41.207 1a24d6f2-887b-4e2b-91d8-1df3c92a4d74 2019-02-20 19:54:21.440404 2257 3 User \N \N 3 User \N update ---\nunique_session_id:\n- zrr8YoiwXbitWYfuXVEh\n- EY1MWmwdPrtbt4c6vwcp\n 45 \N 189.186.41.207 1a24d6f2-887b-4e2b-91d8-1df3c92a4d74 2019-02-20 19:54:21.454875 2258 126 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 29\namount: !ruby/object:BigDecimal 18:0.49052E3\ntax: !ruby/object:BigDecimal 18:0.7848E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-02-20\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-54\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 def3ef61-8540-4aac-94e4-fe20be56e95c 2019-02-20 19:54:41.796936 2259 410 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 def3ef61-8540-4aac-94e4-fe20be56e95c 2019-02-20 19:54:41.840057 2260 126 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 638a3f78-d1b0-4f54-a636-28f68517eb6e 2019-02-20 19:56:36.958078 2261 145 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 29\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.569E3\nmove_type: '1'\nsale_id: 126\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-54\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.569E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-54 189.186.41.207 638a3f78-d1b0-4f54-a636-28f68517eb6e 2019-02-20 19:56:36.999201 2262 127 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 29\namount: !ruby/object:BigDecimal 18:0.97328E3\ntax: !ruby/object:BigDecimal 18:0.15572E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1129E4\nstatus: 0\ndate_sale: 2019-02-20\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-55\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 8390c697-8320-454a-861b-1c7882ce3193 2019-02-20 19:57:16.863347 2263 377 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.41.207 8390c697-8320-454a-861b-1c7882ce3193 2019-02-20 19:57:16.90847 2264 380 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.41.207 8390c697-8320-454a-861b-1c7882ce3193 2019-02-20 19:57:16.948128 2265 127 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 23f4599d-eea5-417d-a0fb-de22ea8ecbc9 2019-02-20 19:58:53.652786 2266 146 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 29\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1129E4\nmove_type: '1'\nsale_id: 127\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-55\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1129E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-55 189.186.41.207 23f4599d-eea5-417d-a0fb-de22ea8ecbc9 2019-02-20 19:58:53.687883 2267 125 Sale \N \N 9 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-70 cancelada. 189.186.41.207 68b116bf-8264-404a-a517-66d1648bea26 2019-02-20 21:24:08.085783 2268 144 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 28\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.129442E4\nmove_type: '1'\nsale_id: 125\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-70\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.13E4\nchange: !ruby/object:BigDecimal 18:0.558E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.41.207 68b116bf-8264-404a-a517-66d1648bea26 2019-02-20 21:24:08.114978 2269 177 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.41.207 68b116bf-8264-404a-a517-66d1648bea26 2019-02-20 21:24:08.144895 2270 131 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.41.207 68b116bf-8264-404a-a517-66d1648bea26 2019-02-20 21:24:08.171462 2271 128 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 28\namount: !ruby/object:BigDecimal 18:0.103276E4\ntax: !ruby/object:BigDecimal 18:0.16524E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1198E4\nstatus: 0\ndate_sale: 2019-02-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-71\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 220dffb9-8799-4211-9bce-b0211236dcd4 2019-02-20 21:25:37.933841 2272 177 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.41.207 220dffb9-8799-4211-9bce-b0211236dcd4 2019-02-20 21:25:37.965213 2273 131 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.41.207 220dffb9-8799-4211-9bce-b0211236dcd4 2019-02-20 21:25:38.002456 2274 128 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 e90ab939-faa1-47b0-bdca-582bd15bef1d 2019-02-20 21:25:52.142316 2275 147 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 28\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1198E4\nmove_type: '1'\nsale_id: 128\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-71\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1198E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-71 189.186.41.207 e90ab939-faa1-47b0-bdca-582bd15bef1d 2019-02-20 21:25:52.179352 2276 129 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 28\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-02-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-72\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 2249839c-a353-4507-8aa7-ce2cb3b485de 2019-02-20 23:50:25.657911 2277 146 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 2249839c-a353-4507-8aa7-ce2cb3b485de 2019-02-20 23:50:25.690604 2279 148 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 28\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 129\ncardnumber: 5499\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-72\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-72 189.186.41.207 68e01ebd-fcad-4792-9a14-1139e0809688 2019-02-20 23:51:13.9718 2280 130 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 29\namount: !ruby/object:BigDecimal 18:0.49052E3\ntax: !ruby/object:BigDecimal 18:0.7848E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-02-20\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-56\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 283b7841-fc03-4c55-928f-03ef9b88c2bd 2019-02-20 23:56:35.167494 2281 381 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.41.207 283b7841-fc03-4c55-928f-03ef9b88c2bd 2019-02-20 23:56:35.211165 2282 130 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 c2945acc-c030-4e60-8ef6-ebdefb568aba 2019-02-20 23:57:02.538717 2283 149 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 29\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.569E3\nmove_type: '1'\nsale_id: 130\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-56\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-56 189.186.41.207 c2945acc-c030-4e60-8ef6-ebdefb568aba 2019-02-20 23:57:02.578072 2284 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-20 01:18:16.356703000 Z\n- &1 2019-02-20 16:18:42.779394000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-21 00:30:13.532956353 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539445\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539445\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 42\n- 43\n 86 \N 189.186.41.207 b24393bb-b7ad-422d-b2db-fb1c4d88e52d 2019-02-21 00:30:13.546093 2285 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Zjxy-7s-Fxc8jBg6ajjb\n- mKpzXQRcZatBm7T7oym3\n 87 \N 189.186.41.207 b24393bb-b7ad-422d-b2db-fb1c4d88e52d 2019-02-21 00:30:13.570362 2286 484 Product \N \N 4 User \N create ---\nsku: ZAP-484\nname: JUNAI851\ndescription: CALZADO CLOE\nprice_base: !ruby/object:BigDecimal 18:0.4995E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170707984'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 13\nproduct_service_key: '01010101'\n 1 El producto ZAP-484 fue creado. 189.186.41.207 b6174d89-67bd-42cb-83c0-f9eff850b745 2019-02-21 00:33:09.968779 2287 496 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 484\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 b6174d89-67bd-42cb-83c0-f9eff850b745 2019-02-21 00:33:10.054665 2288 36 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-20\namount: !ruby/object:BigDecimal 18:0.6993E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6993E4\nobservations: ''\npurchase_date: 2019-02-20\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-20 por $ 6993.0 MXN creada. 189.186.41.207 326ff7f6-054b-4bac-b692-d9d048866418 2019-02-21 00:33:44.60098 2289 496 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.207 326ff7f6-054b-4bac-b692-d9d048866418 2019-02-21 00:33:44.637979 2290 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-19 23:37:19.982314000 Z\n- &1 2019-02-20 19:10:11.999100000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-21 00:38:16.912323713 Z\nsign_in_count:\n- 16\n- 17\n 34 \N 189.186.41.207 73d8fbf2-c596-4ee7-9d10-464c211aa5f0 2019-02-21 00:38:16.920418 2291 9 User \N \N 9 User \N update ---\nunique_session_id:\n- cUSuWNmP2KZDbsxv2tWu\n- _a-CkrohJozJEFSdDyVu\n 35 \N 189.186.41.207 73d8fbf2-c596-4ee7-9d10-464c211aa5f0 2019-02-21 00:38:16.938578 2292 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-20 02:45:23.460723000 Z\n- &1 2019-02-20 19:54:21.431797000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-21 01:15:30.008176643 Z\nsign_in_count:\n- 22\n- 23\n 46 \N 189.186.41.207 742b27f1-c017-46d6-9d93-ffc11b24fba8 2019-02-21 01:15:30.032112 2293 3 User \N \N 3 User \N update ---\nunique_session_id:\n- EY1MWmwdPrtbt4c6vwcp\n- WLr1XPvG2PypsQnPsKFx\n 47 \N 189.186.41.207 742b27f1-c017-46d6-9d93-ffc11b24fba8 2019-02-21 01:15:30.051446 2294 131 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 29\namount: !ruby/object:BigDecimal 18:0.45603E3\ntax: !ruby/object:BigDecimal 18:0.14593E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.60196E3\nstatus: 0\ndate_sale: 2019-02-20\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-57\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 ba93c2cf-b868-4a6e-94f9-288e14a5e03b 2019-02-21 01:15:54.455613 2295 438 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.207 ba93c2cf-b868-4a6e-94f9-288e14a5e03b 2019-02-21 01:15:54.498338 2296 131 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-57 cancelada. 189.186.41.207 43f76965-fb6b-411a-b3cf-603b3fb24475 2019-02-21 01:16:09.187758 2297 438 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.41.207 43f76965-fb6b-411a-b3cf-603b3fb24475 2019-02-21 01:16:09.231518 2298 132 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 29\namount: !ruby/object:BigDecimal 18:0.45603E3\ntax: !ruby/object:BigDecimal 18:0.7296E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.52899E3\nstatus: 0\ndate_sale: 2019-02-20\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-58\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 b5e220c7-400c-42e9-a471-aa650ccc3d5d 2019-02-21 01:16:27.611583 2299 438 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.41.207 b5e220c7-400c-42e9-a471-aa650ccc3d5d 2019-02-21 01:16:27.659698 2300 132 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 45d3bc9c-d7a8-405f-9eab-baf006206d83 2019-02-21 01:17:00.88303 2445 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-22 02:53:19.275861000 Z\n- &1 2019-02-23 01:52:08.470310000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-23 02:33:05.534935633 Z\nsign_in_count:\n- 26\n- 27\n 54 \N 189.186.41.207 56f21e2a-36a4-42ea-99a5-9c775624a12a 2019-02-23 02:33:05.542539 2301 150 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 29\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.52899E3\nmove_type: '1'\nsale_id: 132\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-58\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.529E3\nchange: !ruby/object:BigDecimal 18:0.1E-1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-58 189.186.41.207 45d3bc9c-d7a8-405f-9eab-baf006206d83 2019-02-21 01:17:00.915197 2302 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-19 18:40:37.783944000 Z\n- &1 2019-02-20 18:04:39.416062000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-21 01:19:36.292451242 Z\nsign_in_count:\n- 15\n- 16\n 32 \N 189.186.41.207 8157f6ee-7d5b-4f3e-8ee5-6a42b4f50981 2019-02-21 01:19:36.300477 2303 10 User \N \N 10 User \N update ---\nunique_session_id:\n- u-o66tsAY7Nz1SssvZ42\n- S1e7Rn2qrDf1THz9sTSU\n 33 \N 189.186.41.207 8157f6ee-7d5b-4f3e-8ee5-6a42b4f50981 2019-02-21 01:19:36.320835 2304 133 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 29\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-02-20\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-59\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 71dae147-0ade-4b35-8938-64dd0e7722c5 2019-02-21 01:22:36.356645 2305 387 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 71dae147-0ade-4b35-8938-64dd0e7722c5 2019-02-21 01:22:36.397015 2306 133 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 148217f6-c100-4a32-adb4-1c618caf3435 2019-02-21 01:23:17.149067 2307 151 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 29\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 133\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-59\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1111'\n 1 movimiento de efectivo por venta con folio PV2-V-59 189.186.41.207 148217f6-c100-4a32-adb4-1c618caf3435 2019-02-21 01:23:17.183765 2308 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-20 16:18:42.779394000 Z\n- &1 2019-02-21 00:30:13.532956000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-21 01:26:01.718763387 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539445\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 43\n- 44\n 88 \N 189.186.41.207 d6e640d4-a9e2-446a-88b8-f2d9240eb86f 2019-02-21 01:26:01.730949 2309 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mKpzXQRcZatBm7T7oym3\n- GVezczuhsBMPFyfKiBRy\n 89 \N 189.186.41.207 d6e640d4-a9e2-446a-88b8-f2d9240eb86f 2019-02-21 01:26:01.753817 2310 485 Product \N \N 4 User \N create ---\nsku: JUM-485\nname: JMP-0002\ndescription: JUMPER FLORES TIRANTES APEACH\nprice_base: !ruby/object:BigDecimal 18:0.2976E3\nprice_sale: !ruby/object:BigDecimal 18:0.869E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 1\nproduct_service_key: '01010101'\n 1 El producto JUM-485 fue creado. 189.186.41.207 0866b557-a129-4455-a4b3-28069021ab9e 2019-02-21 01:29:05.28964 2311 485 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000485'\n 2 \N 189.186.41.207 0866b557-a129-4455-a4b3-28069021ab9e 2019-02-21 01:29:05.334119 2312 497 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 485\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 0866b557-a129-4455-a4b3-28069021ab9e 2019-02-21 01:29:05.374198 2313 37 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-15\namount: !ruby/object:BigDecimal 18:0.17856E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.17856E4\nobservations: ''\npurchase_date: 2019-02-20\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-15 por $ 1785.6 MXN creada. 189.186.41.207 7998e818-d7d6-444f-a964-f4bf18733b2b 2019-02-21 01:29:11.683128 2314 497 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.207 7998e818-d7d6-444f-a964-f4bf18733b2b 2019-02-21 01:29:11.719423 2315 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-20 19:54:21.431797000 Z\n- &1 2019-02-21 01:15:30.008176000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-21 01:49:02.125894003 Z\nsign_in_count:\n- 23\n- 24\n 48 \N 189.186.41.207 fa903520-79fe-4aa8-9a26-ebb617e0a8e4 2019-02-21 01:49:02.13396 2316 3 User \N \N 3 User \N update ---\nunique_session_id:\n- WLr1XPvG2PypsQnPsKFx\n- puXoDcvcE1o4jkdo39HR\n 49 \N 189.186.41.207 fa903520-79fe-4aa8-9a26-ebb617e0a8e4 2019-02-21 01:49:02.150721 2317 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-20 19:10:11.999100000 Z\n- &1 2019-02-21 00:38:16.912323000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-21 02:11:35.195136058 Z\nsign_in_count:\n- 17\n- 18\n 36 \N 189.186.41.207 91b4953f-3ac8-47aa-b6a9-771540954d62 2019-02-21 02:11:35.204065 2318 9 User \N \N 9 User \N update ---\nunique_session_id:\n- _a-CkrohJozJEFSdDyVu\n- ME7FdhthYD89eV1zxix3\n 37 \N 189.186.41.207 91b4953f-3ac8-47aa-b6a9-771540954d62 2019-02-21 02:11:35.224353 2319 27 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 28\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.3365E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.27E4\ncash_fund: !ruby/object:BigDecimal 18:0.685E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3385E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 3462335f-cf09-48ae-85c3-16ed92cc24e6 2019-02-21 02:14:44.667321 2320 28 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 3462335f-cf09-48ae-85c3-16ed92cc24e6 2019-02-21 02:14:44.685116 2321 28 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 29\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.369499E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.28E4\ncash_fund: !ruby/object:BigDecimal 18:0.692E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3492E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 36853df3-8e9d-4bf7-b77d-e0830ad6e83f 2019-02-21 02:29:37.86638 2322 29 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 36853df3-8e9d-4bf7-b77d-e0830ad6e83f 2019-02-21 02:29:37.894221 2323 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-02-07 07:43:35.918167000 Z\n- &1 2019-02-12 06:56:44.155608000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-21 02:40:51.343138854 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3187424239\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3187432133\n mask_addr: 4294967295\nsign_in_count:\n- 8\n- 9\n 18 \N 189.252.90.197 007015ef-4f8f-407b-b708-7969b4f68139 2019-02-21 02:40:51.35229 2325 6 User \N \N 6 User \N update ---\nlast_sign_in_at:\n- 2019-02-06 20:33:49.445798000 Z\n- &1 2019-02-07 06:46:03.005921000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-21 02:43:33.905802365 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984544820\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3187424239\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3187424239\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3187432133\n mask_addr: 4294967295\nsign_in_count:\n- 4\n- 5\n 10 \N 189.252.90.197 40dfcf02-738f-4f62-a124-e0368a28ae70 2019-02-21 02:43:33.918122 2326 6 User \N \N 6 User \N update ---\nunique_session_id:\n- izZGohh2zgdDH7C-19YH\n- Hzrx9KoSygm46sfV3Byx\n 11 \N 189.252.90.197 40dfcf02-738f-4f62-a124-e0368a28ae70 2019-02-21 02:43:33.944872 2327 30 OpenCashRegister \N \N 6 User \N create ---\ncash_register_id: 1\nuser_id: 6\ninitial_cash: !ruby/object:BigDecimal 18:0.685E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 685.0 189.252.90.197 50b55df6-c4b6-4001-afa8-372372bfeb8e 2019-02-21 02:45:22.640325 2328 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-21 00:30:13.532956000 Z\n- &1 2019-02-21 01:26:01.718763000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-21 04:09:53.103835451 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934438\n mask_addr: 4294967295\nsign_in_count:\n- 44\n- 45\n 90 \N 200.68.135.230 3ba58afa-5b98-48ab-a28e-bfd3ea39166d 2019-02-21 04:09:53.117343 2329 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GVezczuhsBMPFyfKiBRy\n- ym4ViNx9V1E7B5CzHtHx\n 91 \N 200.68.135.230 3ba58afa-5b98-48ab-a28e-bfd3ea39166d 2019-02-21 04:09:53.146005 2330 6 User \N \N 6 User \N update ---\nlast_sign_in_at:\n- 2019-02-07 06:46:03.005921000 Z\n- &1 2019-02-21 02:43:33.905802000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-21 04:52:25.516870142 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3187424239\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3187432133\n mask_addr: 4294967295\nsign_in_count:\n- 5\n- 6\n 12 \N 189.252.90.197 3611e6f4-985f-4bbe-9b11-f5cd032ded30 2019-02-21 04:52:25.549387 2331 6 User \N \N 6 User \N update ---\nunique_session_id:\n- Hzrx9KoSygm46sfV3Byx\n- VReD5PLNTTxxtPwNUPbP\n 13 \N 189.252.90.197 3611e6f4-985f-4bbe-9b11-f5cd032ded30 2019-02-21 04:52:25.576495 2332 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-20 18:04:39.416062000 Z\n- &1 2019-02-21 01:19:36.292451000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-21 17:36:29.983576518 Z\nsign_in_count:\n- 16\n- 17\n 34 \N 189.186.41.207 5a74b080-88f5-4663-8856-787b47ed64ec 2019-02-21 17:36:30.040792 2333 10 User \N \N 10 User \N update ---\nunique_session_id:\n- S1e7Rn2qrDf1THz9sTSU\n- BicbocNXG3hMQ4GCsQYE\n 35 \N 189.186.41.207 5a74b080-88f5-4663-8856-787b47ed64ec 2019-02-21 17:36:30.0652 2334 31 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.692E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 692.0 189.186.41.207 39dc10d1-9331-49ca-8830-f243f1250f0c 2019-02-21 17:37:26.93256 2335 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-18 23:23:04.856252000 Z\n- &1 2019-02-20 16:33:27.060657000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-21 19:01:16.536616200 Z\nsign_in_count:\n- 21\n- 22\n 47 \N 189.186.41.207 3de9f651-4d3d-4dfe-b368-b483537a1b9b 2019-02-21 19:01:16.545844 2336 2 User \N \N 2 User \N update ---\nunique_session_id:\n- yPfGfU5w4HxFgGyeVnYG\n- D2ZFP8M7hdKt3Ftspi6d\n 48 \N 189.186.41.207 3de9f651-4d3d-4dfe-b368-b483537a1b9b 2019-02-21 19:01:16.566158 2337 32 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.685E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 685.0 189.186.41.207 915381ac-c504-4d00-8584-05b98bbc0715 2019-02-21 19:15:30.605134 2338 134 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 32\namount: !ruby/object:BigDecimal 18:0.66293E3\ntax: !ruby/object:BigDecimal 18:0.10607E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.769E3\nstatus: 0\ndate_sale: 2019-02-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-73\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 c3654e64-9f6d-48e1-8937-50c95e6b1b9a 2019-02-21 19:21:02.543875 2339 84 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.41.207 c3654e64-9f6d-48e1-8937-50c95e6b1b9a 2019-02-21 19:21:02.589227 2340 134 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 8c1e7230-a192-45e5-8be2-b9576b9805ee 2019-02-21 19:21:23.387592 2341 152 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 32\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.769E3\nmove_type: '1'\nsale_id: 134\ncardnumber: 5399\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-73\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-73 189.186.41.207 8c1e7230-a192-45e5-8be2-b9576b9805ee 2019-02-21 19:21:23.42635 2342 135 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 32\namount: !ruby/object:BigDecimal 18:0.100776E4\ntax: !ruby/object:BigDecimal 18:0.16124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1169E4\nstatus: 0\ndate_sale: 2019-02-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-74\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 ce50e8b7-8de4-420c-9758-89d8e522a68c 2019-02-21 19:40:28.859439 2343 246 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.207 ce50e8b7-8de4-420c-9758-89d8e522a68c 2019-02-21 19:40:28.964362 2344 135 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 da98eeef-e008-447e-8aa2-40eeb6b5a85c 2019-02-21 19:41:03.511424 2345 153 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 32\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1169E4\nmove_type: '1'\nsale_id: 135\ncardnumber: 3198\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-74\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-74 189.186.41.207 da98eeef-e008-447e-8aa2-40eeb6b5a85c 2019-02-21 19:41:03.549062 2346 154 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 32\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 14\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.897E3\nchange: !ruby/object:BigDecimal 18:0.897E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-12 189.186.41.207 7365e5c0-38d7-45ab-9e4a-691823b81024 2019-02-21 21:12:25.611629 2446 3 User \N \N 3 User \N update ---\nunique_session_id:\n- W3xzh924Dyc9Nnx7mXgG\n- 3pxhA9tA4jTWEonD9FJn\n 55 \N 189.186.41.207 56f21e2a-36a4-42ea-99a5-9c775624a12a 2019-02-23 02:33:05.561214 2348 155 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 32\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.897E3\nmove_type: '1'\nsale_id: 14\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.897E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-12 189.186.41.207 80f1cacc-1d1a-4141-91d8-11aa178ea5cf 2019-02-21 21:14:17.539124 2349 14 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.207 fd38f172-9423-4800-8e93-f150cbfad7e6 2019-02-21 21:14:20.556973 2350 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-21 01:26:01.718763000 Z\n- &1 2019-02-21 04:09:53.103835000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-21 23:33:04.748160299 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934438\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934438\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 45\n- 46\n 92 \N 189.186.41.207 70791dcf-ebbb-4f49-a128-626276d88ce1 2019-02-21 23:33:04.772923 2351 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ym4ViNx9V1E7B5CzHtHx\n- Xi4uiSh8QSMPyNVG_PUC\n 93 \N 189.186.41.207 70791dcf-ebbb-4f49-a128-626276d88ce1 2019-02-21 23:33:04.794807 2352 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-21 00:38:16.912323000 Z\n- &1 2019-02-21 02:11:35.195136000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-21 23:34:17.344642403 Z\nsign_in_count:\n- 18\n- 19\n 38 \N 189.186.41.207 4bad3ffe-3251-43ba-9645-9191ab6250fb 2019-02-21 23:34:17.353376 2353 9 User \N \N 9 User \N update ---\nunique_session_id:\n- ME7FdhthYD89eV1zxix3\n- yCSeVhAPKqGaa3J2thqV\n 39 \N 189.186.41.207 4bad3ffe-3251-43ba-9645-9191ab6250fb 2019-02-21 23:34:17.373522 2354 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-21 04:09:53.103835000 Z\n- &1 2019-02-21 23:33:04.748160000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-22 00:31:58.857366851 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934438\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 46\n- 47\n 94 \N 189.186.41.207 1daacf92-f764-44ba-82a5-33cfa4addbe9 2019-02-22 00:31:58.867696 2355 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Xi4uiSh8QSMPyNVG_PUC\n- g38yjLesYQUeHomVTPxz\n 95 \N 189.186.41.207 1daacf92-f764-44ba-82a5-33cfa4addbe9 2019-02-22 00:31:58.891311 2356 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-21 02:11:35.195136000 Z\n- &1 2019-02-21 23:34:17.344642000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-22 00:42:49.116391170 Z\nsign_in_count:\n- 19\n- 20\n 40 \N 189.186.41.207 5b849490-3972-4ac0-9657-a61f286ce8d8 2019-02-22 00:42:49.12488 2357 9 User \N \N 9 User \N update ---\nunique_session_id:\n- yCSeVhAPKqGaa3J2thqV\n- Z3-C256VUa1YDcJvduSb\n 41 \N 189.186.41.207 5b849490-3972-4ac0-9657-a61f286ce8d8 2019-02-22 00:42:49.143158 2358 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-21 23:34:17.344642000 Z\n- &1 2019-02-22 00:42:49.116391000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-22 01:07:01.404979677 Z\nsign_in_count:\n- 20\n- 21\n 42 \N 189.186.41.207 bce1e362-10c8-4bbd-ac90-1c7c5ce1ac2d 2019-02-22 01:07:01.41334 2359 9 User \N \N 9 User \N update ---\nunique_session_id:\n- Z3-C256VUa1YDcJvduSb\n- mN97V4Jdkw5NhxzzXMdY\n 43 \N 189.186.41.207 bce1e362-10c8-4bbd-ac90-1c7c5ce1ac2d 2019-02-22 01:07:01.432398 2360 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-22 00:42:49.116391000 Z\n- &1 2019-02-22 01:07:01.404979000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-22 01:14:54.239737308 Z\nsign_in_count:\n- 21\n- 22\n 44 \N 189.186.41.207 9a68fd8f-f4a5-40d3-a9e7-d4a9225e96c6 2019-02-22 01:14:54.247753 2361 9 User \N \N 9 User \N update ---\nunique_session_id:\n- mN97V4Jdkw5NhxzzXMdY\n- 5JRqzgr2Cu8kc4FXhP8M\n 45 \N 189.186.41.207 9a68fd8f-f4a5-40d3-a9e7-d4a9225e96c6 2019-02-22 01:14:54.269032 2362 136 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 32\namount: !ruby/object:BigDecimal 18:0.41293E3\ntax: !ruby/object:BigDecimal 18:0.6607E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-02-21\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-75\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 59811a54-66f6-478f-b85d-87f655df1fba 2019-02-22 01:15:09.078324 2363 149 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.41.207 59811a54-66f6-478f-b85d-87f655df1fba 2019-02-22 01:15:09.123509 2364 136 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 21859605-2c07-499a-b9ce-861de23df6cd 2019-02-22 01:15:19.447041 2365 156 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 32\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.479E3\nmove_type: '1'\nsale_id: 136\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-75\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-75 189.186.41.207 21859605-2c07-499a-b9ce-861de23df6cd 2019-02-22 01:15:19.484763 2366 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-22 01:07:01.404979000 Z\n- &1 2019-02-22 01:14:54.239737000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-22 01:33:42.978434125 Z\nsign_in_count:\n- 22\n- 23\n 46 \N 189.186.41.207 c004cd03-d060-415f-894a-d342c018a178 2019-02-22 01:33:42.986541 2367 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 5JRqzgr2Cu8kc4FXhP8M\n- iqi3YtsSrEMEGw9s-wXC\n 47 \N 189.186.41.207 c004cd03-d060-415f-894a-d342c018a178 2019-02-22 01:33:43.00661 2368 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-22 01:14:54.239737000 Z\n- &1 2019-02-22 01:33:42.978434000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-22 02:20:50.334335340 Z\nsign_in_count:\n- 23\n- 24\n 48 \N 189.186.41.207 ce61eff2-e0a7-493d-bb4f-8cbedf2860e1 2019-02-22 02:20:50.342955 2369 9 User \N \N 9 User \N update ---\nunique_session_id:\n- iqi3YtsSrEMEGw9s-wXC\n- SGN2YddPfigJMDPsJ_th\n 49 \N 189.186.41.207 ce61eff2-e0a7-493d-bb4f-8cbedf2860e1 2019-02-22 02:20:50.361817 2370 29 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 32\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.3314E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.582E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1582E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 bb8f003d-010a-45dc-91da-4ef3b1b4244b 2019-02-22 02:22:05.382978 2371 32 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 bb8f003d-010a-45dc-91da-4ef3b1b4244b 2019-02-22 02:22:05.40476 2372 33 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.882E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 882.0 189.186.41.207 86524d7a-61d9-4c53-9603-c0478e331397 2019-02-22 02:22:41.886004 2540 490 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 5 \N 189.186.41.207 7be8c8bf-c1ac-4dd1-a5fe-1d9e07db88c2 2019-02-24 00:47:26.727216 2373 30 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 33\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.882E3\nphysical_cash: !ruby/object:BigDecimal 18:0.882E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 0d7c4971-33b4-4237-977a-77e81dcbc335 2019-02-22 02:23:16.848029 2374 33 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 0d7c4971-33b4-4237-977a-77e81dcbc335 2019-02-22 02:23:16.866919 2375 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-22 01:33:42.978434000 Z\n- &1 2019-02-22 02:20:50.334335000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-22 02:49:49.656737666 Z\nsign_in_count:\n- 24\n- 25\n 50 \N 189.186.41.207 f04879e9-97b2-4af0-b8f8-481ee0edc17c 2019-02-22 02:49:49.668322 2376 9 User \N \N 9 User \N update ---\nunique_session_id:\n- SGN2YddPfigJMDPsJ_th\n- 5ypXcxobsy_WkKFBAknK\n 51 \N 189.186.41.207 f04879e9-97b2-4af0-b8f8-481ee0edc17c 2019-02-22 02:49:49.693928 2377 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-21 01:15:30.008176000 Z\n- &1 2019-02-21 01:49:02.125894000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-22 02:53:19.275861087 Z\nsign_in_count:\n- 24\n- 25\n 50 \N 189.186.41.207 4a286516-2fbf-4d2f-bf4b-23907e2600d4 2019-02-22 02:53:19.285139 2378 3 User \N \N 3 User \N update ---\nunique_session_id:\n- puXoDcvcE1o4jkdo39HR\n- 4ESV6fBKAFdFxuLaRTFD\n 51 \N 189.186.41.207 4a286516-2fbf-4d2f-bf4b-23907e2600d4 2019-02-22 02:53:19.311331 2379 31 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 31\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.692E3\nphysical_cash: !ruby/object:BigDecimal 18:0.692E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 2e9bab11-53ee-47a8-87ba-bc668897a336 2019-02-22 02:53:53.899205 2380 31 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 2e9bab11-53ee-47a8-87ba-bc668897a336 2019-02-22 02:53:53.918888 2381 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-22 02:20:50.334335000 Z\n- &1 2019-02-22 02:49:49.656737000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-22 02:55:21.422399428 Z\nsign_in_count:\n- 25\n- 26\n 52 \N 189.186.41.207 39437010-1361-454c-a767-4dafbdd84d28 2019-02-22 02:55:21.430986 2382 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 5ypXcxobsy_WkKFBAknK\n- 5cHF7p3MSEPL5fQaDWfP\n 53 \N 189.186.41.207 39437010-1361-454c-a767-4dafbdd84d28 2019-02-22 02:55:21.449949 2383 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-20 16:33:27.060657000 Z\n- &1 2019-02-21 19:01:16.536616000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-22 16:57:05.777996056 Z\nsign_in_count:\n- 22\n- 23\n 49 \N 189.186.41.207 cc12c643-2e8a-40da-8b93-da1c5b7e27b2 2019-02-22 16:57:05.827763 2384 2 User \N \N 2 User \N update ---\nunique_session_id:\n- D2ZFP8M7hdKt3Ftspi6d\n- mcKvpszxPNeawbasnR62\n 50 \N 189.186.41.207 cc12c643-2e8a-40da-8b93-da1c5b7e27b2 2019-02-22 16:57:05.86153 2385 34 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.882E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 882.0 189.186.41.207 944a5485-41d5-48f5-bedc-9504a7499c9c 2019-02-22 17:00:44.880239 2386 137 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 34\namount: !ruby/object:BigDecimal 18:0.4199E4\ntax: !ruby/object:BigDecimal 18:0.656E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4855E4\nstatus: 0\ndate_sale: 2019-02-22\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-76\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 7d141917-4881-4352-82e9-bb02fc834456 2019-02-22 17:09:24.79506 2387 39 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.6E1\n 1 \N 189.186.41.207 7d141917-4881-4352-82e9-bb02fc834456 2019-02-22 17:09:24.841491 2388 486 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.58E2\n- !ruby/object:BigDecimal 18:0.57E2\n 6 \N 189.186.41.207 7d141917-4881-4352-82e9-bb02fc834456 2019-02-22 17:09:24.896454 2389 152 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.41.207 7d141917-4881-4352-82e9-bb02fc834456 2019-02-22 17:09:24.932959 2390 133 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 4 \N 189.186.41.207 7d141917-4881-4352-82e9-bb02fc834456 2019-02-22 17:09:24.968072 2391 137 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 ffde4bc5-ebf5-447e-980e-97e601ce0651 2019-02-22 17:09:49.0705 2392 157 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 34\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.3798E4\nmove_type: '1'\nsale_id: 137\ncardnumber: 1280\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-76\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-76 189.186.41.207 ffde4bc5-ebf5-447e-980e-97e601ce0651 2019-02-22 17:09:49.104316 2393 158 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 34\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1057E4\nmove_type: '1'\nsale_id: 137\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-76\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1057E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-76 189.186.41.207 d691174d-c0e3-4bb8-97b0-5bb5419bdff7 2019-02-22 17:10:16.665633 2394 159 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 34\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.629E3\nmove_type: '1'\nsale_id: 8\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.629E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-6 189.186.41.207 606f4428-a1c7-43ec-9e79-41409e106072 2019-02-22 19:11:09.305533 2395 8 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.207 18d919d1-a1fb-466f-b207-4e5fb211ec9e 2019-02-22 19:11:12.81287 2396 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-22 02:49:49.656737000 Z\n- &1 2019-02-22 02:55:21.422399000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-22 19:11:47.853958163 Z\nsign_in_count:\n- 26\n- 27\n 54 \N 189.186.41.207 5cd23e7e-d458-406d-8d45-ec1912c04b28 2019-02-22 19:11:47.862494 2397 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 5cHF7p3MSEPL5fQaDWfP\n- oCw22iWLxU96sc4oBkU3\n 55 \N 189.186.41.207 5cd23e7e-d458-406d-8d45-ec1912c04b28 2019-02-22 19:11:47.880229 2469 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-21 17:36:29.983576000 Z\n- &1 2019-02-23 18:14:57.710478000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-23 19:52:19.940238450 Z\nsign_in_count:\n- 18\n- 19\n 38 \N 189.186.41.207 0931cddf-f875-4491-9699-ca8fa0312a17 2019-02-23 19:52:19.951075 2398 486 Product \N \N 2 User \N create ---\nsku: BOL-486\nname: UXDI214\ndescription: BOLSO CLOE\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-486 fue creado. 189.186.41.207 41456fbc-b202-4bc7-b4ba-77a3c33693eb 2019-02-22 19:25:21.819011 2399 486 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000486'\n 2 \N 189.186.41.207 41456fbc-b202-4bc7-b4ba-77a3c33693eb 2019-02-22 19:25:21.869297 2400 498 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 486\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 41456fbc-b202-4bc7-b4ba-77a3c33693eb 2019-02-22 19:25:21.916544 2401 38 Purchase \N \N 2 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-21\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nobservations: ''\npurchase_date: 2019-02-22\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-21 por $ 1799.0 MXN creada. 189.186.41.207 3900e1c4-5347-4d35-ba38-6ce3d8c319a8 2019-02-22 19:25:33.228142 2402 498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.41.207 3900e1c4-5347-4d35-ba38-6ce3d8c319a8 2019-02-22 19:25:33.257107 2403 138 Sale \N \N 2 User \N create ---\ncustomer_id: 20\nuser_id: 2\nopen_cash_register_id: 34\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2019-02-22\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-77\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 565f1eaa-1625-4b1d-9f02-a82a8fd8d847 2019-02-22 19:26:26.100188 2404 498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.41.207 565f1eaa-1625-4b1d-9f02-a82a8fd8d847 2019-02-22 19:26:26.141124 2405 29 Customer \N \N 2 User \N create ---\nnick_name: PALOMA PRIMA FLOR\nphone: ''\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.2E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente PALOMA PRIMA FLOR fue registrado. 189.186.41.207 454bba32-c3cd-4bcd-a3f8-7efd1d19bad0 2019-02-22 19:37:15.392209 2406 487 Product \N \N 2 User \N create ---\nsku: BOL-487\nname: IRCO175\ndescription: MOCHILA CLOE\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-487 fue creado. 189.186.41.207 305b0438-d6ce-4770-88e2-eef46eb32091 2019-02-22 19:41:23.154702 2407 487 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000487'\n 2 \N 189.186.41.207 305b0438-d6ce-4770-88e2-eef46eb32091 2019-02-22 19:41:23.200622 2408 499 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 487\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 305b0438-d6ce-4770-88e2-eef46eb32091 2019-02-22 19:41:23.245599 2409 39 Purchase \N \N 2 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-22\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nobservations: ''\npurchase_date: 2019-02-22\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-22 por $ 1799.0 MXN creada. 189.186.41.207 f29e9f99-283d-47d0-ab63-2f11db53cf05 2019-02-22 19:42:10.900179 2410 499 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.41.207 f29e9f99-283d-47d0-ab63-2f11db53cf05 2019-02-22 19:42:10.934455 2411 139 Sale \N \N 2 User \N create ---\ncustomer_id: 29\nuser_id: 2\nopen_cash_register_id: 34\namount: !ruby/object:BigDecimal 18:0.274641E4\ntax: !ruby/object:BigDecimal 18:0.15159E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2898E4\nstatus: 0\ndate_sale: 2019-02-22\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-78\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 f97719fd-02f7-4b04-a718-59f483cb2efa 2019-02-22 19:43:15.982928 2412 257 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 189.186.41.207 f97719fd-02f7-4b04-a718-59f483cb2efa 2019-02-22 19:43:16.022238 2413 499 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.41.207 f97719fd-02f7-4b04-a718-59f483cb2efa 2019-02-22 19:43:16.058934 2414 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-22 02:55:21.422399000 Z\n- &1 2019-02-22 19:11:47.853958000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-22 20:29:00.576041213 Z\nsign_in_count:\n- 27\n- 28\n 56 \N 189.186.41.207 746560a4-32ff-47a4-bee4-44046b584643 2019-02-22 20:29:00.587114 2415 9 User \N \N 9 User \N update ---\nunique_session_id:\n- oCw22iWLxU96sc4oBkU3\n- V5nPoseSY2Uov7f5pdqz\n 57 \N 189.186.41.207 746560a4-32ff-47a4-bee4-44046b584643 2019-02-22 20:29:00.609385 2416 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-22 19:11:47.853958000 Z\n- &1 2019-02-22 20:29:00.576041000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-22 21:16:36.143316358 Z\nsign_in_count:\n- 28\n- 29\n 58 \N 189.186.41.207 a54f7971-9a4e-403b-84b9-c6289e7c67d0 2019-02-22 21:16:36.151625 2417 9 User \N \N 9 User \N update ---\nunique_session_id:\n- V5nPoseSY2Uov7f5pdqz\n- _BG-JxDVgYGV1uFz6STU\n 59 \N 189.186.41.207 a54f7971-9a4e-403b-84b9-c6289e7c67d0 2019-02-22 21:16:36.171924 2418 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-21 23:33:04.748160000 Z\n- &1 2019-02-22 00:31:58.857366000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-22 22:43:06.414158940 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934400\n mask_addr: 4294967295\nsign_in_count:\n- 47\n- 48\n 96 \N 200.68.135.192 00a21183-c667-41a4-a3a1-bea4e4d7c5b0 2019-02-22 22:43:06.42664 2419 4 User \N \N 4 User \N update ---\nunique_session_id:\n- g38yjLesYQUeHomVTPxz\n- WmBJVBRzZkZazBkMEEhB\n 97 \N 200.68.135.192 00a21183-c667-41a4-a3a1-bea4e4d7c5b0 2019-02-22 22:43:06.449125 2420 140 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 34\namount: !ruby/object:BigDecimal 18:0.42155E3\ntax: !ruby/object:BigDecimal 18:0.6745E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-02-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-79\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 81e2620a-0ab4-49b3-ac56-08c8b64f2bb2 2019-02-23 00:20:08.195701 2423 160 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 34\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.489E3\nmove_type: '1'\nsale_id: 140\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-79\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.489E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-79 189.186.41.207 26a93c42-73fd-43f6-9d6a-4b4c09329c40 2019-02-23 00:20:22.134164 2424 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-22 20:29:00.576041000 Z\n- &1 2019-02-22 21:16:36.143316000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-23 01:09:41.159884689 Z\nsign_in_count:\n- 29\n- 30\n 60 \N 189.186.41.207 3397bb0a-8e5f-41d0-ab66-8db43d9bdbd7 2019-02-23 01:09:41.18843 2425 9 User \N \N 9 User \N update ---\nunique_session_id:\n- _BG-JxDVgYGV1uFz6STU\n- cBbaPyRyM4YvEBzQPphi\n 61 \N 189.186.41.207 3397bb0a-8e5f-41d0-ab66-8db43d9bdbd7 2019-02-23 01:09:41.214203 2426 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-21 01:49:02.125894000 Z\n- &1 2019-02-22 02:53:19.275861000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-23 01:52:08.470310717 Z\nsign_in_count:\n- 25\n- 26\n 52 \N 189.186.41.207 7916f7bd-7b1a-4c13-a1b0-a4c32a5ee1ae 2019-02-23 01:52:08.478553 2427 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 4ESV6fBKAFdFxuLaRTFD\n- W3xzh924Dyc9Nnx7mXgG\n 53 \N 189.186.41.207 7916f7bd-7b1a-4c13-a1b0-a4c32a5ee1ae 2019-02-23 01:52:08.498121 2428 35 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.692E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 692.0 189.186.41.207 2ab4c1c0-258c-4309-9622-83bf1b42b2bd 2019-02-23 01:52:18.16031 2429 30 Customer \N \N 3 User \N create ---\nnick_name: JAZMIN RAMOS\nphone: "(667) 393-2681"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JAZMIN RAMOS fue registrado. 189.186.41.207 bb590cea-40b5-416b-bceb-00103d7d87a5 2019-02-23 01:52:35.499957 2430 141 Sale \N \N 3 User \N create ---\ncustomer_id: 30\nuser_id: 3\nopen_cash_register_id: 35\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-02-22\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-60\nexpiration_date: 2019-03-29\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 848dc113-abf7-4e4b-9cc8-4302b6b9b09e 2019-02-23 01:52:57.099047 2431 417 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 848dc113-abf7-4e4b-9cc8-4302b6b9b09e 2019-02-23 01:52:57.142698 2432 161 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 35\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.21E3\nmove_type: '1'\nsale_id: 141\ncardnumber: 5207\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-60\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-60 189.186.41.207 e43f92a5-b1c3-4228-b573-49fd1c063736 2019-02-23 01:53:40.669587 2433 141 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 7b236b63-1850-4b63-9d17-384963452e13 2019-02-23 01:53:42.069861 2434 142 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 34\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-02-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-80\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 285b569b-52fe-479b-b998-8920e8ab8eb3 2019-02-23 02:01:07.53701 2435 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 189.186.41.207 285b569b-52fe-479b-b998-8920e8ab8eb3 2019-02-23 02:01:07.609818 2436 142 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 ba85e343-99fc-4dc5-a5f2-3ad8e54289c3 2019-02-23 02:02:10.052358 2437 162 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 34\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 142\ncardnumber: 4233\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-80\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-80 189.186.41.207 ba85e343-99fc-4dc5-a5f2-3ad8e54289c3 2019-02-23 02:02:10.090471 2438 163 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 34\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.449E3\nmove_type: '1'\nsale_id: 142\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-80\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.449E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-80 189.186.41.207 4003d5a5-b201-4659-8ec6-b071846d279e 2019-02-23 02:02:21.303864 2439 4 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 34\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida\nexpense_date: 2019-02-22\nexpense_code: PV1-E-4\n 1 Egreso por 50.0 registrado 189.186.41.207 14f5f125-2fde-4a46-9d57-65a8824ee894 2019-02-23 02:15:09.758469 2440 164 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 34\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 4\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 14f5f125-2fde-4a46-9d57-65a8824ee894 2019-02-23 02:15:09.800338 2441 32 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 34\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6722E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.956E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3456E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 bfc16319-2668-419a-888a-aa635ed39e55 2019-02-23 02:20:46.023644 2442 34 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 bfc16319-2668-419a-888a-aa635ed39e55 2019-02-23 02:20:46.046987 2443 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-22 21:16:36.143316000 Z\n- &1 2019-02-23 01:09:41.159884000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-23 02:24:55.266917925 Z\nsign_in_count:\n- 30\n- 31\n 62 \N 189.186.41.207 7e132b58-ec3b-49a8-aba2-8c0087261e5f 2019-02-23 02:24:55.277421 2444 9 User \N \N 9 User \N update ---\nunique_session_id:\n- cBbaPyRyM4YvEBzQPphi\n- hPYbBxg5HbZe_XzThRjV\n 63 \N 189.186.41.207 7e132b58-ec3b-49a8-aba2-8c0087261e5f 2019-02-23 02:24:55.297831 11276 118 Customer \N \N 2 User \N update ---\nstatus:\n- active\n- 0\n 2 \N 189.186.40.252 58317e2d-1b51-4ba7-8039-e6ac48cb2986 2019-07-17 16:28:42.007008 2447 33 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 35\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.21E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.692E3\nphysical_cash: !ruby/object:BigDecimal 18:0.692E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 5f21dd03-0592-460d-92b1-b85857379412 2019-02-23 02:33:26.229757 2448 35 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 5f21dd03-0592-460d-92b1-b85857379412 2019-02-23 02:33:26.252555 2449 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-21 19:01:16.536616000 Z\n- &1 2019-02-22 16:57:05.777996000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-23 17:06:54.878361482 Z\nsign_in_count:\n- 23\n- 24\n 51 \N 189.186.41.207 6cc7fa8c-5731-47d2-9d20-1e4c6d4d7f4d 2019-02-23 17:06:54.920838 2450 2 User \N \N 2 User \N update ---\nunique_session_id:\n- mcKvpszxPNeawbasnR62\n- Ds9LZRAX97at_b6KqYBe\n 52 \N 189.186.41.207 6cc7fa8c-5731-47d2-9d20-1e4c6d4d7f4d 2019-02-23 17:06:54.950946 2451 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-22 00:31:58.857366000 Z\n- &1 2019-02-22 22:43:06.414158000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-23 17:17:37.351370355 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934400\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934400\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 48\n- 49\n 98 \N 189.186.41.207 280b835c-737b-4490-b9ab-67bc94a5aa3c 2019-02-23 17:17:37.362286 2452 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WmBJVBRzZkZazBkMEEhB\n- XxpqC7b32TFumBztSZig\n 99 \N 189.186.41.207 280b835c-737b-4490-b9ab-67bc94a5aa3c 2019-02-23 17:17:37.378286 2453 11 User \N \N 4 User \N create ---\nuserid: ILSE\nfirst_name: 'ILSE '\nlast_name: 'LIZARRAGA '\nusertype: C\nemail: ilse_l@gmail.com\nencrypted_password: "$2a$10$YBtlbsEOLhX1Dn4k9ifhSuzMKXTFvAj2YS6bSi4hh3yzviq89YzgK"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 2\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.186.41.207 dd8d4dcd-2891-4478-9fa5-aaf21d23e33d 2019-02-23 17:19:50.620868 2454 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-21 01:19:36.292451000 Z\n- &1 2019-02-21 17:36:29.983576000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-23 18:14:57.710478104 Z\nsign_in_count:\n- 17\n- 18\n 36 \N 189.186.41.207 b1e8ad17-951a-437e-afa6-e2c637a04d4f 2019-02-23 18:14:57.718127 2455 10 User \N \N 10 User \N update ---\nunique_session_id:\n- BicbocNXG3hMQ4GCsQYE\n- ifLxzKTxtGFXnAjY1JM7\n 37 \N 189.186.41.207 b1e8ad17-951a-437e-afa6-e2c637a04d4f 2019-02-23 18:14:57.732406 2456 36 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.692E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 692.0 189.186.41.207 2c9c8d20-4feb-4b62-9bb6-0c67a81ad760 2019-02-23 18:15:17.147077 2457 37 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.956E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 956.0 189.186.41.207 f553cdcd-0c0b-4262-ab94-5300d475e365 2019-02-23 18:29:57.617593 2458 143 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 36\namount: !ruby/object:BigDecimal 18:0.8448E2\ntax: !ruby/object:BigDecimal 18:0.1352E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.98E2\nstatus: 0\ndate_sale: 2019-02-23\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-61\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 260e2e61-29e6-40f3-b752-6e9bdeaabbb4 2019-02-23 19:18:17.681279 2459 367 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.21E2\n- !ruby/object:BigDecimal 18:0.19E2\n 1 \N 189.186.41.207 260e2e61-29e6-40f3-b752-6e9bdeaabbb4 2019-02-23 19:18:17.744018 2460 143 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 acfd578f-3706-407e-941a-1cbe4603d11d 2019-02-23 19:18:25.225595 2461 165 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 36\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.98E2\nmove_type: '1'\nsale_id: 143\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-61\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.98E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-61 189.186.41.207 acfd578f-3706-407e-941a-1cbe4603d11d 2019-02-23 19:18:25.260399 2462 144 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 37\namount: !ruby/object:BigDecimal 18:0.115431E4\ntax: !ruby/object:BigDecimal 18:0.18469E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1339E4\nstatus: 0\ndate_sale: 2019-02-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-81\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 bf226da1-2e6d-4eab-ac5a-c55d3ce656e9 2019-02-23 19:39:30.493426 2463 85 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 189.186.41.207 bf226da1-2e6d-4eab-ac5a-c55d3ce656e9 2019-02-23 19:39:30.545965 2464 60 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.41.207 bf226da1-2e6d-4eab-ac5a-c55d3ce656e9 2019-02-23 19:39:30.581855 2465 144 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 9d80b3ea-0de5-4d8a-9649-916d02bf8a39 2019-02-23 19:40:15.06126 2466 166 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 37\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1339E4\nmove_type: '1'\nsale_id: 144\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-81\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1339E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-81 189.186.41.207 9d80b3ea-0de5-4d8a-9649-916d02bf8a39 2019-02-23 19:40:15.093138 2467 5 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 37\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: COMIDA\nexpense_date: 2019-02-23\nexpense_code: PV1-E-5\n 1 Egreso por 50.0 registrado 189.186.41.207 8afd9b18-be52-44cc-99e7-318ce5f44b0d 2019-02-23 19:48:22.155045 2468 167 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 37\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 5\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 8afd9b18-be52-44cc-99e7-318ce5f44b0d 2019-02-23 19:48:22.179527 2470 10 User \N \N 10 User \N update ---\nunique_session_id:\n- ifLxzKTxtGFXnAjY1JM7\n- ayy-MMcSc2R2Sa_WnT7C\n 39 \N 189.186.41.207 0931cddf-f875-4491-9699-ca8fa0312a17 2019-02-23 19:52:19.970579 2471 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-22 22:43:06.414158000 Z\n- &1 2019-02-23 17:17:37.351370000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-23 19:54:15.665367933 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934400\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 49\n- 50\n 100 \N 189.186.41.207 990d3ff1-5b7f-4f8b-8e6d-02385302486e 2019-02-23 19:54:15.672769 2472 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XxpqC7b32TFumBztSZig\n- A-KmsuzwUuE8-acMc-Kb\n 101 \N 189.186.41.207 990d3ff1-5b7f-4f8b-8e6d-02385302486e 2019-02-23 19:54:15.694061 2473 488 Product \N \N 4 User \N create ---\nsku: COL-488\nname: CO-0001\ndescription: COLLAR OJO\nprice_base: !ruby/object:BigDecimal 18:0.399E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-488 fue creado. 189.186.41.207 ac22164a-3015-4c81-8217-d4b07b96f2b3 2019-02-23 19:55:36.3016 2474 488 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000488'\n 2 \N 189.186.41.207 ac22164a-3015-4c81-8217-d4b07b96f2b3 2019-02-23 19:55:36.372328 2475 500 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 488\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 ac22164a-3015-4c81-8217-d4b07b96f2b3 2019-02-23 19:55:36.418152 2476 40 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-16\namount: !ruby/object:BigDecimal 18:0.1197E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1197E4\nobservations: ''\npurchase_date: 2019-02-23\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-16 por $ 1197.0 MXN creada. 189.186.41.207 5236f5da-3190-4c09-9a13-4cb747b325ca 2019-02-23 19:55:41.785731 2477 500 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.41.207 5236f5da-3190-4c09-9a13-4cb747b325ca 2019-02-23 19:55:41.809929 2478 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-02-23 19:56:06.520463987 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 189.186.41.207 d141341e-c1bd-43a3-8ae0-d655f184f173 2019-02-23 19:56:06.533615 2479 11 User \N \N 11 User \N update ---\nunique_session_id:\n- \n- XjtVdf9H5XK-4aK2utkW\n 3 \N 189.186.41.207 d141341e-c1bd-43a3-8ae0-d655f184f173 2019-02-23 19:56:06.56068 2480 145 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 36\namount: !ruby/object:BigDecimal 18:0.112759E4\ntax: !ruby/object:BigDecimal 18:0.18041E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1308E4\nstatus: 0\ndate_sale: 2019-02-23\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-62\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 fd92ce7c-6eb3-4af7-9ea8-a8e387b69c8f 2019-02-23 19:56:59.81724 2481 315 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.207 fd92ce7c-6eb3-4af7-9ea8-a8e387b69c8f 2019-02-23 19:56:59.861968 2482 418 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 fd92ce7c-6eb3-4af7-9ea8-a8e387b69c8f 2019-02-23 19:56:59.919235 2483 145 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 a07d4926-82c9-4edb-abe9-7d98079c027a 2019-02-23 19:57:37.862185 2484 168 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 36\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1308E4\nmove_type: '1'\nsale_id: 145\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-62\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.192E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-62 189.186.41.207 a07d4926-82c9-4edb-abe9-7d98079c027a 2019-02-23 19:57:37.895205 2485 168 CashRegistersMove \N \N 11 User \N destroy ---\nopen_cash_register_id: 36\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1308E4\nmove_type: '1'\nsale_id: 145\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-62\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.192E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.41.207 ebd796bf-0da4-42f7-a11f-8e274c40a10a 2019-02-23 19:57:43.428672 2486 169 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 36\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1308E4\nmove_type: '1'\nsale_id: 145\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-62\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1308E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-62 189.186.41.207 dd09fe0a-006a-43df-9e5b-b4e953a179e5 2019-02-23 19:57:49.910223 2487 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-23 17:17:37.351370000 Z\n- &1 2019-02-23 19:54:15.665367000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-23 19:58:47.822585413 Z\nsign_in_count:\n- 50\n- 51\n 102 \N 189.186.41.207 07cc11e9-f89a-4362-80d7-7363390e38f1 2019-02-23 19:58:47.831353 2488 4 User \N \N 4 User \N update ---\nunique_session_id:\n- A-KmsuzwUuE8-acMc-Kb\n- ZmoMsHNt-cDRCAyi8FXd\n 103 \N 189.186.41.207 07cc11e9-f89a-4362-80d7-7363390e38f1 2019-02-23 19:58:47.851368 2489 489 Product \N \N 4 User \N create ---\nsku: VES-489\nname: VES-0026\ndescription: 'VESTIDO LARGO NEGRO CON FLORES '\nprice_base: !ruby/object:BigDecimal 18:0.23E3\nprice_sale: !ruby/object:BigDecimal 18:0.46E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-489 fue creado. 189.186.41.207 bbd11637-422f-4a6f-997c-d20d8e20243f 2019-02-23 20:09:45.68641 2490 489 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000489'\n 2 \N 189.186.41.207 bbd11637-422f-4a6f-997c-d20d8e20243f 2019-02-23 20:09:45.744196 2491 501 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 489\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 bbd11637-422f-4a6f-997c-d20d8e20243f 2019-02-23 20:09:45.785165 2539 495 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.41.207 7be8c8bf-c1ac-4dd1-a5fe-1d9e07db88c2 2019-02-24 00:47:26.699077 2492 41 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-17\namount: !ruby/object:BigDecimal 18:0.23E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.23E3\nobservations: ''\npurchase_date: 2019-02-23\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-17 por $ 230.0 MXN creada. 189.186.41.207 e3b978d8-57a8-4adf-9f28-02c34b30ee2c 2019-02-23 20:09:48.393672 2493 501 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.207 e3b978d8-57a8-4adf-9f28-02c34b30ee2c 2019-02-23 20:09:48.425186 2494 490 Product \N \N 4 User \N create ---\nsku: VES-490\nname: V-0011\ndescription: VESTIDO NARANJA\nprice_base: !ruby/object:BigDecimal 18:0.23E3\nprice_sale: !ruby/object:BigDecimal 18:0.46E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-490 fue creado. 189.186.41.207 d1290e06-6542-4411-9fa0-32159ced1d39 2019-02-23 20:10:56.642668 2495 490 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000490'\n 2 \N 189.186.41.207 d1290e06-6542-4411-9fa0-32159ced1d39 2019-02-23 20:10:56.673631 2496 502 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 490\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 d1290e06-6542-4411-9fa0-32159ced1d39 2019-02-23 20:10:56.702296 2497 42 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-18\namount: !ruby/object:BigDecimal 18:0.46E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.46E3\nobservations: ''\npurchase_date: 2019-02-23\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-18 por $ 460.0 MXN creada. 189.186.41.207 d1b20f3f-8df3-4be0-95ab-081e502a9757 2019-02-23 20:11:04.23106 2498 502 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.41.207 d1b20f3f-8df3-4be0-95ab-081e502a9757 2019-02-23 20:11:04.262754 2499 491 Product \N \N 4 User \N create ---\nsku: VES-491\nname: VES-0017\ndescription: VESTIDO GRIS CON FLORES\nprice_base: !ruby/object:BigDecimal 18:0.23E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-491 fue creado. 189.186.41.207 7e32cd1b-4c08-43fe-903c-a52cec760943 2019-02-23 20:12:41.457804 2500 491 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000491'\n 2 \N 189.186.41.207 7e32cd1b-4c08-43fe-903c-a52cec760943 2019-02-23 20:12:41.501644 2501 503 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 491\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 7e32cd1b-4c08-43fe-903c-a52cec760943 2019-02-23 20:12:41.542829 2502 43 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-19\namount: !ruby/object:BigDecimal 18:0.46E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.46E3\nobservations: ''\npurchase_date: 2019-02-23\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-19 por $ 460.0 MXN creada. 189.186.41.207 0e095541-78f6-4925-8412-541be87fbaaa 2019-02-23 20:12:53.002089 2503 503 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.41.207 0e095541-78f6-4925-8412-541be87fbaaa 2019-02-23 20:12:53.0317 2504 11 User \N \N 11 User \N update ---\ncurrent_sign_in_at:\n- 2019-02-23 19:56:06.520463000 Z\n- 2019-02-23 20:15:49.326110624 Z\nsign_in_count:\n- 1\n- 2\n 4 \N 189.186.41.207 9ca841b0-3f54-40af-ab14-c476cba72982 2019-02-23 20:15:49.334342 2505 11 User \N \N 11 User \N update ---\nunique_session_id:\n- XjtVdf9H5XK-4aK2utkW\n- 1WdjBYyuDUHmzhM_MA9S\n 5 \N 189.186.41.207 9ca841b0-3f54-40af-ab14-c476cba72982 2019-02-23 20:15:49.353076 2506 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-23 19:54:15.665367000 Z\n- &1 2019-02-23 19:58:47.822585000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-23 20:22:10.876558589 Z\nsign_in_count:\n- 51\n- 52\n 104 \N 189.186.41.207 d036791c-34fb-474a-8860-41e40732565e 2019-02-23 20:22:10.899916 2507 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZmoMsHNt-cDRCAyi8FXd\n- tYNCGqyq_82y221ssi5i\n 105 \N 189.186.41.207 d036791c-34fb-474a-8860-41e40732565e 2019-02-23 20:22:10.921275 2508 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-02-12 06:56:44.155608000 Z\n- &1 2019-02-21 02:40:51.343138000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-23 20:23:44.779874359 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3187424239\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3187432133\n mask_addr: 4294967295\nsign_in_count:\n- 9\n- 10\n 20 \N 189.252.90.197 41a24829-d691-4120-ba6d-aa537f1ae246 2019-02-23 20:23:44.789588 2509 5 User \N \N 5 User \N update ---\nunique_session_id:\n- ac7xaYGE5QBsNqxNFngg\n- MMZwprA4NkLMoGC689Uz\n 21 \N 189.252.90.197 41a24829-d691-4120-ba6d-aa537f1ae246 2019-02-23 20:23:44.811001 2510 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-22 16:57:05.777996000 Z\n- &1 2019-02-23 17:06:54.878361000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-23 20:32:56.933537170 Z\nsign_in_count:\n- 24\n- 25\n 53 \N 189.186.41.207 0f871faa-744f-4e3c-ba9f-c5541edfd4dd 2019-02-23 20:32:56.94192 2511 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Ds9LZRAX97at_b6KqYBe\n- xK3xtTCNBAYdM6cYjGDw\n 54 \N 189.186.41.207 0f871faa-744f-4e3c-ba9f-c5541edfd4dd 2019-02-23 20:32:56.963404 2512 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-19 02:12:54.214843000 Z\n- &1 2019-02-20 16:41:01.944867000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-23 20:33:31.112754057 Z\nsign_in_count:\n- 31\n- 32\n 64 \N 189.186.41.207 32f7bf41-5694-4d36-b090-3c2454013e44 2019-02-23 20:33:31.121545 2513 1 User \N \N 1 User \N update ---\nunique_session_id:\n- PyuZbYCC3sXgtrqFfukS\n- zexxn9yGowxsDbBxXYrM\n 65 \N 189.186.41.207 32f7bf41-5694-4d36-b090-3c2454013e44 2019-02-23 20:33:31.140361 2514 146 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 36\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-02-23\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-63\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 285a7684-b2ef-4d98-b5f2-14293443efec 2019-02-23 20:58:42.869098 2515 316 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 285a7684-b2ef-4d98-b5f2-14293443efec 2019-02-23 20:58:42.913056 2516 146 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 55033b10-3d8c-485f-984d-f2a831fcd919 2019-02-23 20:59:07.354405 2517 170 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 36\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 146\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-63\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-63 189.186.41.207 55033b10-3d8c-485f-984d-f2a831fcd919 2019-02-23 20:59:07.388856 2518 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-23 19:58:47.822585000 Z\n- &1 2019-02-23 20:22:10.876558000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-23 21:26:45.039406605 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938233\n mask_addr: 4294967295\nsign_in_count:\n- 52\n- 53\n 106 \N 200.68.150.185 09e328c3-cff3-48c1-96fb-45972a452a4d 2019-02-23 21:26:45.082874 2519 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tYNCGqyq_82y221ssi5i\n- FQ6xKQbQA9NkAoWDv8x1\n 107 \N 200.68.150.185 09e328c3-cff3-48c1-96fb-45972a452a4d 2019-02-23 21:26:45.112201 2520 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-23 17:06:54.878361000 Z\n- &1 2019-02-23 20:32:56.933537000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-23 21:54:05.106817161 Z\nsign_in_count:\n- 25\n- 26\n 55 \N 189.186.41.207 3a47b822-605a-4adc-a845-03a7f140d8b9 2019-02-23 21:54:05.114443 2521 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xK3xtTCNBAYdM6cYjGDw\n- _Cm71mqkJjxxudDEy9yb\n 56 \N 189.186.41.207 3a47b822-605a-4adc-a845-03a7f140d8b9 2019-02-23 21:54:05.133931 2522 171 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: \npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.13E4\nmove_type: '1'\nsale_id: 110\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.13E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-59 189.186.41.207 8db7f228-a1b3-4388-a1c7-99504b806c54 2019-02-23 21:54:41.640155 2523 110 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.207 c5b24e43-f967-403d-8c07-df2e8250b556 2019-02-23 21:54:47.692026 2524 6 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 37\nquantity: !ruby/object:BigDecimal 18:0.718E3\nstatus: 1\nobservations: sueldo rocio\nexpense_date: 2019-02-23\nexpense_code: PV1-E-6\n 1 Egreso por 718.0 registrado 189.186.41.207 36062765-1a28-475e-a4ad-13e8b7572602 2019-02-23 22:14:10.348517 2525 172 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 37\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.718E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 6\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 36062765-1a28-475e-a4ad-13e8b7572602 2019-02-23 22:14:10.380958 2526 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-23 20:22:10.876558000 Z\n- &1 2019-02-23 21:26:45.039406000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-23 23:46:17.210934899 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938233\n mask_addr: 4294967295\nsign_in_count:\n- 53\n- 54\n 108 \N 200.68.150.185 53d8dd1e-e934-437d-a3cf-1b0fe96c88b6 2019-02-23 23:46:17.22107 2527 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FQ6xKQbQA9NkAoWDv8x1\n- 5iGYWnTbTgkFLSv8MSPs\n 109 \N 200.68.150.185 53d8dd1e-e934-437d-a3cf-1b0fe96c88b6 2019-02-23 23:46:17.243367 2528 147 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 37\namount: !ruby/object:BigDecimal 18:0.100776E4\ntax: !ruby/object:BigDecimal 18:0.16124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1169E4\nstatus: 0\ndate_sale: 2019-02-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-82\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 8c623ba2-30f8-4599-89c2-3f40918d28c5 2019-02-24 00:28:08.999058 2529 246 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.41.207 8c623ba2-30f8-4599-89c2-3f40918d28c5 2019-02-24 00:28:09.041686 2530 147 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 2ab4fbb6-990c-4da3-9b29-8ec505b17ada 2019-02-24 00:29:34.641254 2531 173 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 37\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1169E4\nmove_type: '1'\nsale_id: 147\ncardnumber: 3484\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-82\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-82 189.186.41.207 2ab4fbb6-990c-4da3-9b29-8ec505b17ada 2019-02-24 00:29:34.675743 2532 148 Sale \N \N 2 User \N create ---\ncustomer_id: 29\nuser_id: 2\nopen_cash_register_id: 37\namount: !ruby/object:BigDecimal 18:0.8431E3\ntax: !ruby/object:BigDecimal 18:0.1349E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.978E3\nstatus: 0\ndate_sale: 2019-02-23\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-83\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 c1b6e10f-b773-4e7c-ae9f-88fb2e5c74a5 2019-02-24 00:42:48.332734 2533 149 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.41.207 c1b6e10f-b773-4e7c-ae9f-88fb2e5c74a5 2019-02-24 00:42:48.381106 2534 14 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.41.207 c1b6e10f-b773-4e7c-ae9f-88fb2e5c74a5 2019-02-24 00:42:48.430518 2535 174 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 34\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.21E3\nmove_type: '1'\nsale_id: 139\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.21E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 cbbb76b8-e4e5-48f7-898b-ad0666fcd3a1 2019-02-24 00:44:12.532188 2536 139 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 cbbb76b8-e4e5-48f7-898b-ad0666fcd3a1 2019-02-24 00:44:12.569797 2537 174 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 34\n- \n 2 movimiento de efectivo por venta con folio PV1-V-78 189.186.41.207 cbbb76b8-e4e5-48f7-898b-ad0666fcd3a1 2019-02-24 00:44:12.589086 2538 149 Sale \N \N 11 User \N create ---\ncustomer_id: 29\nuser_id: 11\nopen_cash_register_id: 36\namount: !ruby/object:BigDecimal 18:0.110517E4\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1174E4\nstatus: 0\ndate_sale: 2019-02-23\nsaletype: 0\nseller_id: 4\nsale_code: PV2-V-64\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 7be8c8bf-c1ac-4dd1-a5fe-1d9e07db88c2 2019-02-24 00:47:26.662821 11277 78 Customer \N \N 2 User \N update ---\nstatus:\n- active\n- 0\n 2 \N 189.186.40.252 d8cbaa1c-863f-4edd-a677-656127aebae2 2019-07-17 16:28:55.452372 2541 492 Product \N \N 2 User \N create ---\nsku: BOL-492\nname: UXDI213\ndescription: MOCHILA CLOE\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-492 fue creado. 189.186.41.207 d840498f-b9d6-43af-bf25-fefb6c3d4f4d 2019-02-24 01:25:27.133717 2542 492 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000492'\n 2 \N 189.186.41.207 d840498f-b9d6-43af-bf25-fefb6c3d4f4d 2019-02-24 01:25:27.182928 2543 504 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 492\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 d840498f-b9d6-43af-bf25-fefb6c3d4f4d 2019-02-24 01:25:27.226428 2544 44 Purchase \N \N 2 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-23\namount: !ruby/object:BigDecimal 18:0.8495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.8495E3\nobservations: ''\npurchase_date: 2019-02-23\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-23 por $ 849.5 MXN creada. 189.186.41.207 39349224-d316-4bac-8efa-d4c0c556fbde 2019-02-24 01:25:37.949755 2545 504 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.207 39349224-d316-4bac-8efa-d4c0c556fbde 2019-02-24 01:25:37.985449 2546 150 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 37\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.509E3\ntotal: !ruby/object:BigDecimal 18:0.119E4\nstatus: 0\ndate_sale: 2019-02-23\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-84\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 8ac7fb4d-6bb8-4e11-a6dd-f91834d0ecda 2019-02-24 01:27:33.141485 2547 504 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.207 8ac7fb4d-6bb8-4e11-a6dd-f91834d0ecda 2019-02-24 01:27:33.180238 2548 150 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 347564a7-af1c-4945-8dd1-fe896c908b6e 2019-02-24 01:27:44.116895 2549 175 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 37\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.119E4\nmove_type: '1'\nsale_id: 150\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-84\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.119E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-84 189.186.41.207 347564a7-af1c-4945-8dd1-fe896c908b6e 2019-02-24 01:27:44.154837 2550 34 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 37\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3698E4\namount_out: !ruby/object:BigDecimal 18:0.768E3\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.32E4\ncash_fund: !ruby/object:BigDecimal 18:0.1027E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4227E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 2cc04213-22b0-425e-982e-61b6d7f884ff 2019-02-24 01:30:26.685285 2551 37 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 2cc04213-22b0-425e-982e-61b6d7f884ff 2019-02-24 01:30:26.705072 2552 35 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 36\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.1875E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.567E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2567E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 5b9b275b-13ab-4d10-bc9c-bdc0385e00b4 2019-02-24 01:49:47.691699 2553 36 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 5b9b275b-13ab-4d10-bc9c-bdc0385e00b4 2019-02-24 01:49:47.71147 2554 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-23 01:52:08.470310000 Z\n- &1 2019-02-23 02:33:05.534935000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-24 18:49:53.968893984 Z\nsign_in_count:\n- 27\n- 28\n 56 \N 189.186.41.207 1b6d87f9-451c-4aec-a80f-a8f307c5e897 2019-02-24 18:49:53.995741 2555 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 3pxhA9tA4jTWEonD9FJn\n- DNaSck_sxVkykLQga916\n 57 \N 189.186.41.207 1b6d87f9-451c-4aec-a80f-a8f307c5e897 2019-02-24 18:49:54.041735 2556 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-23 21:26:45.039406000 Z\n- &1 2019-02-23 23:46:17.210934000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-24 18:58:14.976695029 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938233\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539285\n mask_addr: 4294967295\nsign_in_count:\n- 54\n- 55\n 110 \N 177.228.116.149 f87aa30f-8ce9-463e-9ce3-dc4802265247 2019-02-24 18:58:14.984438 2557 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5iGYWnTbTgkFLSv8MSPs\n- Qx7Pt7Kyk8qZsPyN68vQ\n 111 \N 177.228.116.149 f87aa30f-8ce9-463e-9ce3-dc4802265247 2019-02-24 18:58:15.002934 2558 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-23 01:09:41.159884000 Z\n- &1 2019-02-23 02:24:55.266917000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-24 19:33:55.617188141 Z\nsign_in_count:\n- 31\n- 32\n 64 \N 189.186.41.207 1acc30fd-8fd3-426e-aaf5-332a50a1d15d 2019-02-24 19:33:55.625879 2559 9 User \N \N 9 User \N update ---\nunique_session_id:\n- hPYbBxg5HbZe_XzThRjV\n- LYVzGPJjAJZtEVwa4Qvc\n 65 \N 189.186.41.207 1acc30fd-8fd3-426e-aaf5-332a50a1d15d 2019-02-24 19:33:55.642753 2560 38 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.1027E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1027.0 189.186.41.207 cf730908-294b-46d8-96ef-09ed73962488 2019-02-24 19:34:00.661787 2561 176 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 38\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.419E3\nmove_type: '1'\nsale_id: 12\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.81E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-10 189.186.41.207 c762bead-2f06-4d18-8e52-24da7a345193 2019-02-24 19:35:17.828447 2562 12 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.207 cd6fabd4-2b9c-44c8-bb3d-a5f2a22c3803 2019-02-24 19:35:19.291203 2563 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-23 02:33:05.534935000 Z\n- &1 2019-02-24 18:49:53.968893000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-24 20:18:23.508632606 Z\nsign_in_count:\n- 28\n- 29\n 58 \N 189.186.41.207 0e44c58e-b3ff-4b63-a578-27de6cd22d33 2019-02-24 20:18:23.546158 11278 75 Customer \N \N 2 User \N update ---\nstatus:\n- active\n- 0\n 2 \N 189.186.40.252 37207aa4-1c60-46c1-94fa-2cf90a2502aa 2019-07-17 16:29:08.558947 2564 3 User \N \N 3 User \N update ---\nunique_session_id:\n- DNaSck_sxVkykLQga916\n- WbafAbPwoxB5GNWPoSN8\n 59 \N 189.186.41.207 0e44c58e-b3ff-4b63-a578-27de6cd22d33 2019-02-24 20:18:23.567601 2565 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-23 02:24:55.266917000 Z\n- &1 2019-02-24 19:33:55.617188000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-24 21:45:34.950990867 Z\nsign_in_count:\n- 32\n- 33\n 66 \N 189.186.41.207 610480ce-4264-47e6-9287-94c0165413b4 2019-02-24 21:45:34.958486 2566 9 User \N \N 9 User \N update ---\nunique_session_id:\n- LYVzGPJjAJZtEVwa4Qvc\n- oYP3bybWVpRtT4XtWcUd\n 67 \N 189.186.41.207 610480ce-4264-47e6-9287-94c0165413b4 2019-02-24 21:45:34.976383 2567 36 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 38\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.419E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.419E3\ncash_fund: !ruby/object:BigDecimal 18:0.1027E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1446E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 4dbae53e-292f-4aa7-9db7-276af27ebb37 2019-02-24 21:46:09.408732 2568 38 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 4dbae53e-292f-4aa7-9db7-276af27ebb37 2019-02-24 21:46:09.431148 2569 39 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.552E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 552.0 189.186.41.207 12754aab-0334-457d-bf02-79739f324bc4 2019-02-24 21:52:24.164955 2570 151 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 39\namount: !ruby/object:BigDecimal 18:0.208883E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2268E4\nstatus: 0\ndate_sale: 2019-02-24\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-65\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 61442403-b2e2-4cd8-b40b-2eeecac0c5c7 2019-02-24 22:07:33.583693 2571 394 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 61442403-b2e2-4cd8-b40b-2eeecac0c5c7 2019-02-24 22:07:33.625685 2572 494 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.41.207 61442403-b2e2-4cd8-b40b-2eeecac0c5c7 2019-02-24 22:07:33.675363 2573 151 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 3ec71394-3a59-4415-988f-01d071f8c456 2019-02-24 22:08:16.688696 2574 177 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 39\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2268E4\nmove_type: '1'\nsale_id: 151\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-65\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.23E4\nchange: !ruby/object:BigDecimal 18:0.32E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-65 189.186.41.207 3ec71394-3a59-4415-988f-01d071f8c456 2019-02-24 22:08:16.724211 2575 37 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 39\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.2268E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.23E4\ncash_fund: !ruby/object:BigDecimal 18:0.52E3\nphysical_cash: !ruby/object:BigDecimal 18:0.282E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 b0185a13-0110-4fbd-8c62-9f61ea9a034d 2019-02-24 22:09:28.684119 2576 39 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 b0185a13-0110-4fbd-8c62-9f61ea9a034d 2019-02-24 22:09:28.702177 2577 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-23 20:32:56.933537000 Z\n- &1 2019-02-23 21:54:05.106817000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-25 16:45:24.418192926 Z\nsign_in_count:\n- 26\n- 27\n 57 \N 189.186.41.207 e7bd4822-f21a-4f74-ab73-de5d26dd2245 2019-02-25 16:45:24.449182 2578 2 User \N \N 2 User \N update ---\nunique_session_id:\n- _Cm71mqkJjxxudDEy9yb\n- CCZNPNJmNBmEWWJ_Ejpp\n 58 \N 189.186.41.207 e7bd4822-f21a-4f74-ab73-de5d26dd2245 2019-02-25 16:45:24.473369 2579 40 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.846E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 846.0 189.186.41.207 5db916c4-8ea0-41b0-b95c-40dafb2dd344 2019-02-25 16:48:29.252918 2580 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-02-23 19:56:06.520463000 Z\n- &1 2019-02-23 20:15:49.326110000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-25 17:03:01.665141549 Z\nsign_in_count:\n- 2\n- 3\n 6 \N 189.186.41.207 36218679-0bd4-42a3-b22b-544448fb69b7 2019-02-25 17:03:01.709628 2581 11 User \N \N 11 User \N update ---\nunique_session_id:\n- 1WdjBYyuDUHmzhM_MA9S\n- GSQxP_gxVpFemx_WiiL1\n 7 \N 189.186.41.207 36218679-0bd4-42a3-b22b-544448fb69b7 2019-02-25 17:03:01.739711 2582 41 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.52E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 520.0 189.186.41.207 66055da8-0531-4196-87cd-7fc527b92e04 2019-02-25 17:03:14.742312 2583 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-20 16:41:01.944867000 Z\n- &1 2019-02-23 20:33:31.112754000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-25 17:30:16.045775129 Z\nsign_in_count:\n- 32\n- 33\n 66 \N 189.186.41.207 edd5e6da-29a7-46c2-912f-740f0aed3e0a 2019-02-25 17:30:16.090324 2584 1 User \N \N 1 User \N update ---\nunique_session_id:\n- zexxn9yGowxsDbBxXYrM\n- PVUxF4KAbMzntDAZyuGq\n 67 \N 189.186.41.207 edd5e6da-29a7-46c2-912f-740f0aed3e0a 2019-02-25 17:30:16.120014 2585 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-23 23:46:17.210934000 Z\n- &1 2019-02-24 18:58:14.976695000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-25 21:07:08.868474593 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938233\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539285\n mask_addr: 4294967295\nsign_in_count:\n- 55\n- 56\n 112 \N 177.228.116.149 14f28340-a2cc-4755-87dc-db0775c35681 2019-02-25 21:07:08.876083 2586 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Qx7Pt7Kyk8qZsPyN68vQ\n- ebHYzUbZApdH674sEp57\n 113 \N 177.228.116.149 14f28340-a2cc-4755-87dc-db0775c35681 2019-02-25 21:07:08.891603 2587 178 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 40\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 64\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.25E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-36 189.186.41.207 aaaae4e8-9048-47ba-8323-1f182a026c4b 2019-02-25 23:58:03.191951 2617 9 User \N \N 9 User \N update ---\nunique_session_id:\n- xbtodawLbEA-tmmxHrcj\n- J_6zsYtz8b9R3aKyWfUZ\n 73 \N 189.186.41.207 6edc23f4-8aeb-4c98-8412-e26cd95e7d09 2019-02-26 20:46:30.583852 2643 3 User \N \N 3 User \N update ---\nunique_session_id:\n- mprz3TZY9YbUh2AbzUK_\n- 9axjasMu4M3LCyzM4B8x\n 69 \N 189.186.41.207 471cd091-d116-42a2-a5cf-86e9771d2c66 2019-02-26 21:59:01.490587 2588 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-24 18:58:14.976695000 Z\n- &1 2019-02-25 21:07:08.868474000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-26 00:04:22.198590170 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539285\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 56\n- 57\n 114 \N 189.186.41.207 a270f050-da80-4976-9bca-862d8bf6d25a 2019-02-26 00:04:22.208673 2589 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ebHYzUbZApdH674sEp57\n- 4E2qN8Qy4sGXcvybEgtQ\n 115 \N 189.186.41.207 a270f050-da80-4976-9bca-862d8bf6d25a 2019-02-26 00:04:22.229448 2590 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-24 18:49:53.968893000 Z\n- &1 2019-02-24 20:18:23.508632000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-26 00:34:52.667543834 Z\nsign_in_count:\n- 29\n- 30\n 60 \N 189.186.41.207 2ba58f17-4d8d-4353-9b5e-557fdae6dfa9 2019-02-26 00:34:52.677113 2591 3 User \N \N 3 User \N update ---\nunique_session_id:\n- WbafAbPwoxB5GNWPoSN8\n- "-8mM46soyZxbHCT2KJ2e"\n 61 \N 189.186.41.207 2ba58f17-4d8d-4353-9b5e-557fdae6dfa9 2019-02-26 00:34:52.699104 2592 5 Seller \N \N 5 User \N create ---\npointsale_id: 2\nname: prueba\nlast_name: prueba\nstatus: 1\n 1 El vendedor prueba prueba fue registrado. 189.252.90.197 080af628-ddc6-4e77-ae2c-899c89279419 2019-02-26 01:01:30.992633 2593 6 Seller \N \N 5 User \N create ---\npointsale_id: 1\nname: prueba2\nlast_name: prueba2\nstatus: 1\n 1 El vendedor prueba2 prueba2 fue registrado. 189.252.90.197 a8123bdc-db94-4956-a89e-15880b9feb10 2019-02-26 01:01:53.82935 2594 6 Seller \N \N 5 User \N update ---\nstatus:\n- active\n- 0\n 2 El vendedor prueba2 prueba2 fue eliminado. 189.252.90.197 f60713e2-1fd5-4f87-a06c-727d7aa627c5 2019-02-26 01:03:20.767684 2595 5 Seller \N \N 5 User \N update ---\nstatus:\n- active\n- 0\n 2 El vendedor prueba prueba fue eliminado. 189.252.90.197 c838a3b9-da47-48dd-acd4-30b4fe5995ac 2019-02-26 01:03:24.277264 2596 7 Seller \N \N 4 User \N create ---\npointsale_id: 2\nname: 'ILSE '\nlast_name: LIZARRAGA\nstatus: 1\n 1 El vendedor ILSE LIZARRAGA fue registrado. 189.186.41.207 527d40dd-6500-4c40-bf82-990491b3dd4d 2019-02-26 01:10:43.125437 2597 8 Seller \N \N 4 User \N create ---\npointsale_id: 1\nname: ANABELLY\nlast_name: GAXIOLA\nstatus: 1\n 1 El vendedor ANABELLY GAXIOLA fue registrado. 189.186.41.207 91d7d452-b524-4d38-9a26-f4a714620284 2019-02-26 01:11:14.120685 2598 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-24 20:18:23.508632000 Z\n- &1 2019-02-26 00:34:52.667543000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-26 01:34:26.307334630 Z\nsign_in_count:\n- 30\n- 31\n 62 \N 189.186.41.207 25736d7f-c387-4fc5-8aa8-d8cf68d25c2e 2019-02-26 01:34:26.315143 2599 3 User \N \N 3 User \N update ---\nunique_session_id:\n- "-8mM46soyZxbHCT2KJ2e"\n- MArBXTw_NNkzGGibtkzE\n 63 \N 189.186.41.207 25736d7f-c387-4fc5-8aa8-d8cf68d25c2e 2019-02-26 01:34:26.343911 2600 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-24 19:33:55.617188000 Z\n- &1 2019-02-24 21:45:34.950990000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-26 01:52:01.048192081 Z\nsign_in_count:\n- 33\n- 34\n 68 \N 189.186.41.207 e814bf79-3704-43ae-866b-064e8a3057a8 2019-02-26 01:52:01.056724 2601 9 User \N \N 9 User \N update ---\nunique_session_id:\n- oYP3bybWVpRtT4XtWcUd\n- q8zk_SFgLDG54vAap_xe\n 69 \N 189.186.41.207 e814bf79-3704-43ae-866b-064e8a3057a8 2019-02-26 01:52:01.074879 2602 38 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 40\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.25E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.57E3\ncash_fund: !ruby/object:BigDecimal 18:0.844E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1414E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 3b70b4c3-de5e-4849-9b1e-086e4731c350 2019-02-26 01:55:39.940295 2603 40 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 3b70b4c3-de5e-4849-9b1e-086e4731c350 2019-02-26 01:55:39.957717 2604 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-23 18:14:57.710478000 Z\n- &1 2019-02-23 19:52:19.940238000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-26 01:59:47.216896988 Z\nsign_in_count:\n- 19\n- 20\n 40 \N 189.186.41.207 874957de-fd91-47b4-a395-c5e7a8271afd 2019-02-26 01:59:47.224343 2605 10 User \N \N 10 User \N update ---\nunique_session_id:\n- ayy-MMcSc2R2Sa_WnT7C\n- "-7by5Sk2usy4PXFQJdVT"\n 41 \N 189.186.41.207 874957de-fd91-47b4-a395-c5e7a8271afd 2019-02-26 01:59:47.244198 2606 39 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 41\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.52E3\nphysical_cash: !ruby/object:BigDecimal 18:0.52E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 2e787349-0c21-4076-85b8-7fb06e52c48b 2019-02-26 02:01:17.79457 2607 41 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 2e787349-0c21-4076-85b8-7fb06e52c48b 2019-02-26 02:01:17.811939 2608 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-02-23 20:15:49.326110000 Z\n- &1 2019-02-25 17:03:01.665141000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-26 16:56:18.189588506 Z\nsign_in_count:\n- 3\n- 4\n 8 \N 189.186.41.207 cd8e439e-f79c-4260-a5c5-7a3b1ae6031f 2019-02-26 16:56:18.222008 2609 11 User \N \N 11 User \N update ---\nunique_session_id:\n- GSQxP_gxVpFemx_WiiL1\n- xRQpMhgiAcy_VnVwiwWY\n 9 \N 189.186.41.207 cd8e439e-f79c-4260-a5c5-7a3b1ae6031f 2019-02-26 16:56:18.246079 2610 42 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.52E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 520.0 189.186.41.207 ccedb225-6e74-48d9-b1e6-1e83e5336ce5 2019-02-26 16:56:24.951136 2611 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-24 21:45:34.950990000 Z\n- &1 2019-02-26 01:52:01.048192000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-26 16:58:56.766748782 Z\nsign_in_count:\n- 34\n- 35\n 70 \N 189.186.41.207 ce73b9fc-1ff5-47a9-b0ff-8eb76090b194 2019-02-26 16:58:56.77483 2612 9 User \N \N 9 User \N update ---\nunique_session_id:\n- q8zk_SFgLDG54vAap_xe\n- xbtodawLbEA-tmmxHrcj\n 71 \N 189.186.41.207 ce73b9fc-1ff5-47a9-b0ff-8eb76090b194 2019-02-26 16:58:56.793419 2613 43 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.844E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 844.0 189.186.41.207 1c315428-13fe-4a8e-bfc9-a4fcfac751ed 2019-02-26 16:59:52.941022 2614 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-26 00:34:52.667543000 Z\n- &1 2019-02-26 01:34:26.307334000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-26 18:59:28.383145061 Z\nsign_in_count:\n- 31\n- 32\n 64 \N 189.186.41.207 93ec8478-5ee2-44f9-94b1-3dd1ec30eabe 2019-02-26 18:59:28.409297 2615 3 User \N \N 3 User \N update ---\nunique_session_id:\n- MArBXTw_NNkzGGibtkzE\n- 3sL2M-2czHbYSqmoeeR7\n 65 \N 189.186.41.207 93ec8478-5ee2-44f9-94b1-3dd1ec30eabe 2019-02-26 18:59:28.434802 2616 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-26 01:52:01.048192000 Z\n- &1 2019-02-26 16:58:56.766748000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-26 20:46:30.554458111 Z\nsign_in_count:\n- 35\n- 36\n 72 \N 189.186.41.207 6edc23f4-8aeb-4c98-8412-e26cd95e7d09 2019-02-26 20:46:30.563844 2618 152 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 43\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-02-26\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-85\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 cd44ff6e-8f74-403a-91dc-04874c4d9a02 2019-02-26 20:46:54.543111 2619 7 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 1 \N 189.186.41.207 cd44ff6e-8f74-403a-91dc-04874c4d9a02 2019-02-26 20:46:54.590519 2620 152 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 8935a606-e748-4400-83f9-2c716e31930c 2019-02-26 20:47:32.936507 2621 179 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 43\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 152\ncardnumber: 9373\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-85\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-85 189.186.41.207 8935a606-e748-4400-83f9-2c716e31930c 2019-02-26 20:47:32.970816 2622 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-26 01:34:26.307334000 Z\n- &1 2019-02-26 18:59:28.383145000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-26 20:48:40.251948962 Z\nsign_in_count:\n- 32\n- 33\n 66 \N 189.186.41.207 a4483abc-89cc-4792-809e-8cefa304851f 2019-02-26 20:48:40.25727 2623 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 3sL2M-2czHbYSqmoeeR7\n- mprz3TZY9YbUh2AbzUK_\n 67 \N 189.186.41.207 a4483abc-89cc-4792-809e-8cefa304851f 2019-02-26 20:48:40.268687 2624 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-26 16:58:56.766748000 Z\n- &1 2019-02-26 20:46:30.554458000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-26 20:53:27.443433756 Z\nsign_in_count:\n- 36\n- 37\n 74 \N 189.186.41.207 3b2c5519-795e-4899-bfd1-c09fff89572c 2019-02-26 20:53:27.451612 2625 9 User \N \N 9 User \N update ---\nunique_session_id:\n- J_6zsYtz8b9R3aKyWfUZ\n- _KZyAD6bS27ELEAKgRMP\n 75 \N 189.186.41.207 3b2c5519-795e-4899-bfd1-c09fff89572c 2019-02-26 20:53:27.470447 2626 153 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 42\namount: !ruby/object:BigDecimal 18:0.42155E3\ntax: !ruby/object:BigDecimal 18:0.6745E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-02-26\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-66\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 1a7c70c1-cde9-491a-83f2-1dd68be58b00 2019-02-26 21:09:19.40558 2627 320 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.207 1a7c70c1-cde9-491a-83f2-1dd68be58b00 2019-02-26 21:09:19.456459 2628 153 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-66 cancelada. 189.186.41.207 7c13fcd0-f650-4cde-883e-a0530a66aa73 2019-02-26 21:10:12.227747 2629 320 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.41.207 7c13fcd0-f650-4cde-883e-a0530a66aa73 2019-02-26 21:10:12.273699 2630 154 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 42\namount: !ruby/object:BigDecimal 18:0.198E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.198E3\nstatus: 0\ndate_sale: 2019-02-26\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-67\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 5c0b7e3a-520b-44e9-aad1-c739437a8f7d 2019-02-26 21:10:58.487753 2631 487 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.21E2\n- !ruby/object:BigDecimal 18:0.19E2\n 2 \N 189.186.41.207 5c0b7e3a-520b-44e9-aad1-c739437a8f7d 2019-02-26 21:10:58.52165 2632 154 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-67 cancelada. 189.186.41.207 be6894d9-5785-4c9e-8f0e-4ebec6484fc4 2019-02-26 21:11:04.956216 2633 487 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.19E2\n- !ruby/object:BigDecimal 18:0.21E2\n 3 \N 189.186.41.207 be6894d9-5785-4c9e-8f0e-4ebec6484fc4 2019-02-26 21:11:04.991423 2634 155 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 42\namount: !ruby/object:BigDecimal 18:0.42155E3\ntax: !ruby/object:BigDecimal 18:0.6745E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-02-26\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-68\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 fadc80cb-71e2-47c1-a683-6670514de508 2019-02-26 21:19:45.804936 2635 320 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.41.207 fadc80cb-71e2-47c1-a683-6670514de508 2019-02-26 21:19:45.84124 2636 155 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 3d98a06a-e8d9-4ae7-8ba9-ea7567429f06 2019-02-26 21:21:09.886534 2637 180 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 42\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.489E3\nmove_type: '1'\nsale_id: 155\ncardnumber: 672\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-68\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-68 189.186.41.207 3d98a06a-e8d9-4ae7-8ba9-ea7567429f06 2019-02-26 21:21:09.918543 2638 156 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 42\namount: !ruby/object:BigDecimal 18:0.99E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.99E2\nstatus: 0\ndate_sale: 2019-02-26\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-69\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 7371cc89-3571-4222-b704-aa093c00ecc4 2019-02-26 21:22:32.892262 2639 487 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.21E2\n- !ruby/object:BigDecimal 18:0.2E2\n 4 \N 189.186.41.207 7371cc89-3571-4222-b704-aa093c00ecc4 2019-02-26 21:22:32.922024 2640 156 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 395ccbed-98fd-4a50-8ba7-b21caaf39ab1 2019-02-26 21:22:49.025493 2641 181 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 42\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.99E2\nmove_type: '1'\nsale_id: 156\ncardnumber: 672\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-69\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-69 189.186.41.207 395ccbed-98fd-4a50-8ba7-b21caaf39ab1 2019-02-26 21:22:49.05812 2642 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-26 18:59:28.383145000 Z\n- &1 2019-02-26 20:48:40.251948000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-26 21:59:01.469544324 Z\nsign_in_count:\n- 33\n- 34\n 68 \N 189.186.41.207 471cd091-d116-42a2-a5cf-86e9771d2c66 2019-02-26 21:59:01.475538 2644 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-26 20:46:30.554458000 Z\n- &1 2019-02-26 20:53:27.443433000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-26 22:00:17.696981578 Z\nsign_in_count:\n- 37\n- 38\n 76 \N 189.186.41.207 b2c3fa1b-c9ea-40f1-a189-c74320617ace 2019-02-26 22:00:17.70895 2645 9 User \N \N 9 User \N update ---\nunique_session_id:\n- _KZyAD6bS27ELEAKgRMP\n- zqy-4rjbF55soBV51JP6\n 77 \N 189.186.41.207 b2c3fa1b-c9ea-40f1-a189-c74320617ace 2019-02-26 22:00:17.733187 2646 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-26 20:48:40.251948000 Z\n- &1 2019-02-26 21:59:01.469544000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-26 22:02:51.921166675 Z\nsign_in_count:\n- 34\n- 35\n 70 \N 189.186.41.207 9cc2e333-7a3e-4ca7-b5df-eede92e14e48 2019-02-26 22:02:51.930112 2647 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 9axjasMu4M3LCyzM4B8x\n- WB9ZvcJcsc4tc3-9xWgx\n 71 \N 189.186.41.207 9cc2e333-7a3e-4ca7-b5df-eede92e14e48 2019-02-26 22:02:51.950006 2648 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-26 21:59:01.469544000 Z\n- &1 2019-02-26 22:02:51.921166000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-26 22:42:57.858747508 Z\nsign_in_count:\n- 35\n- 36\n 72 \N 189.186.41.207 b3b0e957-189e-40e8-a454-ae8f5d6a7c05 2019-02-26 22:42:57.864878 2649 3 User \N \N 3 User \N update ---\nunique_session_id:\n- WB9ZvcJcsc4tc3-9xWgx\n- s9x3BDzmE9-1UcjHercu\n 73 \N 189.186.41.207 b3b0e957-189e-40e8-a454-ae8f5d6a7c05 2019-02-26 22:42:57.879672 2650 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-26 20:53:27.443433000 Z\n- &1 2019-02-26 22:00:17.696981000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-26 22:43:49.524944396 Z\nsign_in_count:\n- 38\n- 39\n 78 \N 189.186.41.207 daca6b81-072e-496e-8461-6cf0de002875 2019-02-26 22:43:49.530739 2651 9 User \N \N 9 User \N update ---\nunique_session_id:\n- zqy-4rjbF55soBV51JP6\n- Fcvhy3yq9UyYSJzd6xzw\n 79 \N 189.186.41.207 daca6b81-072e-496e-8461-6cf0de002875 2019-02-26 22:43:49.543694 2652 157 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 43\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-02-26\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-86\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 04e3171c-88bf-4de7-90aa-30225876895e 2019-02-26 23:03:04.594995 2653 266 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 04e3171c-88bf-4de7-90aa-30225876895e 2019-02-26 23:03:04.626351 2654 157 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 40612d1f-9bef-41b3-b1b5-b62b567f2dc6 2019-02-26 23:04:03.255633 2655 182 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 43\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 157\ncardnumber: 5836\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-86\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-86 189.186.41.207 40612d1f-9bef-41b3-b1b5-b62b567f2dc6 2019-02-26 23:04:03.288234 2656 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-26 22:02:51.921166000 Z\n- &1 2019-02-26 22:42:57.858747000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-26 23:07:26.205784099 Z\nsign_in_count:\n- 36\n- 37\n 74 \N 189.186.41.207 d29d7627-02b2-4440-9650-832957266b10 2019-02-26 23:07:26.214324 2657 3 User \N \N 3 User \N update ---\nunique_session_id:\n- s9x3BDzmE9-1UcjHercu\n- rEQQNzW7rK3rTdT1bvoW\n 75 \N 189.186.41.207 d29d7627-02b2-4440-9650-832957266b10 2019-02-26 23:07:26.235535 2658 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-26 22:00:17.696981000 Z\n- &1 2019-02-26 22:43:49.524944000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-26 23:07:42.839117604 Z\nsign_in_count:\n- 39\n- 40\n 80 \N 189.186.41.207 8144c166-306b-47db-96ce-6532c94f76f8 2019-02-26 23:07:42.845812 2659 9 User \N \N 9 User \N update ---\nunique_session_id:\n- Fcvhy3yq9UyYSJzd6xzw\n- cxn-nSYspQ1N3N-z7deM\n 81 \N 189.186.41.207 8144c166-306b-47db-96ce-6532c94f76f8 2019-02-26 23:07:42.859473 2660 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-26 22:42:57.858747000 Z\n- &1 2019-02-26 23:07:26.205784000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-26 23:20:02.831998219 Z\nsign_in_count:\n- 37\n- 38\n 76 \N 189.186.41.207 dac10018-50c9-4642-a16f-4c5d99566e48 2019-02-26 23:20:02.838208 2661 3 User \N \N 3 User \N update ---\nunique_session_id:\n- rEQQNzW7rK3rTdT1bvoW\n- xc1HnbC58TXWW2jiNQ7z\n 77 \N 189.186.41.207 dac10018-50c9-4642-a16f-4c5d99566e48 2019-02-26 23:20:02.851109 2662 40 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 42\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.588E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.52E3\nphysical_cash: !ruby/object:BigDecimal 18:0.52E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 0711cd1d-0d7d-4e0c-b3ba-920205ba9994 2019-02-26 23:50:45.935142 2663 42 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 0711cd1d-0d7d-4e0c-b3ba-920205ba9994 2019-02-26 23:50:45.958324 2664 44 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.52E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 520.0 189.186.41.207 ff68fb49-fa42-4b4f-a885-a4743e4de2f8 2019-02-27 00:04:18.577436 2665 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-26 23:07:26.205784000 Z\n- &1 2019-02-26 23:20:02.831998000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-27 00:04:52.962059900 Z\nsign_in_count:\n- 38\n- 39\n 78 \N 189.186.41.207 b18afc77-31a2-486c-a224-90df744f0fdf 2019-02-27 00:04:52.973359 2666 3 User \N \N 3 User \N update ---\nunique_session_id:\n- xc1HnbC58TXWW2jiNQ7z\n- WGE2skNszWykTKjvxNxp\n 79 \N 189.186.41.207 b18afc77-31a2-486c-a224-90df744f0fdf 2019-02-27 00:04:52.995355 2667 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-25 21:07:08.868474000 Z\n- &1 2019-02-26 00:04:22.198590000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-27 00:05:35.785934956 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539285\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 57\n- 58\n 116 \N 189.186.41.207 c9eda466-a565-4392-867c-e44be57788c1 2019-02-27 00:05:35.792963 2668 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4E2qN8Qy4sGXcvybEgtQ\n- zUhyYmXs-HFsQN1sjmdg\n 117 \N 189.186.41.207 c9eda466-a565-4392-867c-e44be57788c1 2019-02-27 00:05:35.807303 2669 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-26 22:43:49.524944000 Z\n- &1 2019-02-26 23:07:42.839117000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-27 00:05:38.349421741 Z\nsign_in_count:\n- 40\n- 41\n 82 \N 189.186.41.207 4036a622-124b-4e1d-b33f-688435b28760 2019-02-27 00:05:38.356724 2670 9 User \N \N 9 User \N update ---\nunique_session_id:\n- cxn-nSYspQ1N3N-z7deM\n- yQc26Egn8KAU_GC6rX51\n 83 \N 189.186.41.207 4036a622-124b-4e1d-b33f-688435b28760 2019-02-27 00:05:38.370414 2724 487 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E2\n- !ruby/object:BigDecimal 18:0.19E2\n 5 \N 189.186.41.207 b273b713-b5ae-4436-8adc-781a30cfcb0f 2019-02-28 01:39:12.209652 2671 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-23 19:52:19.940238000 Z\n- &1 2019-02-26 01:59:47.216896000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-27 00:06:40.611386036 Z\nsign_in_count:\n- 20\n- 21\n 42 \N 189.186.41.207 d2072f9e-6e93-4194-8edc-7cf006df02f3 2019-02-27 00:06:40.620547 2672 10 User \N \N 10 User \N update ---\nunique_session_id:\n- "-7by5Sk2usy4PXFQJdVT"\n- ihyJwrLhThvG-AmTvcjy\n 43 \N 189.186.41.207 d2072f9e-6e93-4194-8edc-7cf006df02f3 2019-02-27 00:06:40.638652 2673 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-26 00:04:22.198590000 Z\n- &1 2019-02-27 00:05:35.785934000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-27 00:09:05.591625604 Z\nsign_in_count:\n- 58\n- 59\n 118 \N 189.186.41.207 e8e638c6-6032-41c6-8251-bc4559db5635 2019-02-27 00:09:05.600106 2674 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zUhyYmXs-HFsQN1sjmdg\n- LcUXm-cwJLUXutHigjM_\n 119 \N 189.186.41.207 e8e638c6-6032-41c6-8251-bc4559db5635 2019-02-27 00:09:05.618418 2675 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-27 00:05:35.785934000 Z\n- &1 2019-02-27 00:09:05.591625000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-27 00:09:06.121674754 Z\nsign_in_count:\n- 59\n- 60\n 120 \N 189.186.41.207 5e97da87-3499-440e-b791-d3e7d94f169a 2019-02-27 00:09:06.129459 2676 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LcUXm-cwJLUXutHigjM_\n- s_3CAMrmcsjHDuSUsmzk\n 121 \N 189.186.41.207 5e97da87-3499-440e-b791-d3e7d94f169a 2019-02-27 00:09:06.147054 2677 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-26 23:20:02.831998000 Z\n- &1 2019-02-27 00:04:52.962059000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-27 00:09:12.887321531 Z\nsign_in_count:\n- 39\n- 40\n 80 \N 189.186.41.207 c75190ea-d673-4fe4-94f0-1dfef60ebef0 2019-02-27 00:09:12.892888 2678 3 User \N \N 3 User \N update ---\nunique_session_id:\n- WGE2skNszWykTKjvxNxp\n- RyhzmzMuyEgyGx9B4pxy\n 81 \N 189.186.41.207 c75190ea-d673-4fe4-94f0-1dfef60ebef0 2019-02-27 00:09:12.905742 2679 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-26 23:07:42.839117000 Z\n- &1 2019-02-27 00:05:38.349421000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-27 00:11:07.115720029 Z\nsign_in_count:\n- 41\n- 42\n 84 \N 189.186.41.207 aa998509-0fa2-4e7f-bbe0-d95704420868 2019-02-27 00:11:07.122165 2680 9 User \N \N 9 User \N update ---\nunique_session_id:\n- yQc26Egn8KAU_GC6rX51\n- 9pcLLDnLGJZ2sLXvauGo\n 85 \N 189.186.41.207 aa998509-0fa2-4e7f-bbe0-d95704420868 2019-02-27 00:11:07.13884 2681 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-27 00:04:52.962059000 Z\n- &1 2019-02-27 00:09:12.887321000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-27 00:25:32.261772640 Z\nsign_in_count:\n- 40\n- 41\n 82 \N 189.186.41.207 33796f77-7682-452c-a4da-80cdb84ed11f 2019-02-27 00:25:32.2701 2682 3 User \N \N 3 User \N update ---\nunique_session_id:\n- RyhzmzMuyEgyGx9B4pxy\n- xw_BjEkRXQSyysUmAViL\n 83 \N 189.186.41.207 33796f77-7682-452c-a4da-80cdb84ed11f 2019-02-27 00:25:32.28457 2683 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-27 00:05:38.349421000 Z\n- &1 2019-02-27 00:11:07.115720000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-27 00:25:50.565501333 Z\nsign_in_count:\n- 42\n- 43\n 86 \N 189.186.41.207 e838ce6a-e1ba-4226-9900-b756d5c1cd44 2019-02-27 00:25:50.571732 2684 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 9pcLLDnLGJZ2sLXvauGo\n- 8s1PfXm-TCY-ndjo7m72\n 87 \N 189.186.41.207 e838ce6a-e1ba-4226-9900-b756d5c1cd44 2019-02-27 00:25:50.590388 2685 158 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 43\namount: !ruby/object:BigDecimal 18:0.99E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.99E2\nstatus: 0\ndate_sale: 2019-02-26\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-87\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 40b1d2dd-dda0-46a1-9db8-ffd71093b4a4 2019-02-27 00:26:06.558893 2686 486 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.57E2\n- !ruby/object:BigDecimal 18:0.56E2\n 7 \N 189.186.41.207 40b1d2dd-dda0-46a1-9db8-ffd71093b4a4 2019-02-27 00:26:06.589904 2687 158 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 d04ba528-cde7-4fbc-9d23-524fa93c4de3 2019-02-27 00:26:10.072345 2688 183 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 43\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.99E2\nmove_type: '1'\nsale_id: 158\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-87\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-87 189.186.41.207 d04ba528-cde7-4fbc-9d23-524fa93c4de3 2019-02-27 00:26:10.096196 2689 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-27 00:09:12.887321000 Z\n- &1 2019-02-27 00:25:32.261772000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-27 00:29:33.310584217 Z\nsign_in_count:\n- 41\n- 42\n 84 \N 189.186.41.207 306e91f0-375a-498e-9ae2-62e17808d725 2019-02-27 00:29:33.31591 2690 3 User \N \N 3 User \N update ---\nunique_session_id:\n- xw_BjEkRXQSyysUmAViL\n- eVg4A-eyVuGNx357KQiz\n 85 \N 189.186.41.207 306e91f0-375a-498e-9ae2-62e17808d725 2019-02-27 00:29:33.327024 2691 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-27 00:25:32.261772000 Z\n- &1 2019-02-27 00:29:33.310584000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-27 01:02:01.049091852 Z\nsign_in_count:\n- 42\n- 43\n 86 \N 189.186.41.207 eadc664e-1af7-4ba2-844e-9fe4787ed032 2019-02-27 01:02:01.0572 2692 3 User \N \N 3 User \N update ---\nunique_session_id:\n- eVg4A-eyVuGNx357KQiz\n- HivV3J1Z85sbWxqQbzyn\n 87 \N 189.186.41.207 eadc664e-1af7-4ba2-844e-9fe4787ed032 2019-02-27 01:02:01.076004 2693 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-27 00:11:07.115720000 Z\n- &1 2019-02-27 00:25:50.565501000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-27 01:05:38.168073252 Z\nsign_in_count:\n- 43\n- 44\n 88 \N 189.186.41.207 b405045c-0105-49cb-a805-5cadbe8bb383 2019-02-27 01:05:38.173979 2694 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 8s1PfXm-TCY-ndjo7m72\n- LpXzUpQLVs63k_RBfJM2\n 89 \N 189.186.41.207 b405045c-0105-49cb-a805-5cadbe8bb383 2019-02-27 01:05:38.18768 2695 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-27 00:29:33.310584000 Z\n- &1 2019-02-27 01:02:01.049091000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-27 01:22:10.975018424 Z\nsign_in_count:\n- 43\n- 44\n 88 \N 189.186.41.207 929ed21d-2071-467c-bad6-cbaf325bc520 2019-02-27 01:22:10.980626 2696 3 User \N \N 3 User \N update ---\nunique_session_id:\n- HivV3J1Z85sbWxqQbzyn\n- 9WNzcZcihVWfDLsg3ShV\n 89 \N 189.186.41.207 929ed21d-2071-467c-bad6-cbaf325bc520 2019-02-27 01:22:10.994779 2697 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-27 00:25:50.565501000 Z\n- &1 2019-02-27 01:05:38.168073000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-27 01:54:46.974819749 Z\nsign_in_count:\n- 44\n- 45\n 90 \N 189.186.41.207 e916b8ee-fcb2-4e10-accb-6f540c48125f 2019-02-27 01:54:46.983016 2698 9 User \N \N 9 User \N update ---\nunique_session_id:\n- LpXzUpQLVs63k_RBfJM2\n- bqtMNfZYKsmDGBdbr245\n 91 \N 189.186.41.207 e916b8ee-fcb2-4e10-accb-6f540c48125f 2019-02-27 01:54:47.000301 2725 485 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.41.207 b273b713-b5ae-4436-8adc-781a30cfcb0f 2019-02-28 01:39:12.23768 2726 160 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 51a78960-2a67-4a2f-8ad3-fef57ef232dd 2019-02-28 01:39:40.347906 2699 41 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 43\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.2097E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.1E3\ncash_fund: !ruby/object:BigDecimal 18:0.844E3\nphysical_cash: !ruby/object:BigDecimal 18:0.944E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 5687a771-2707-4681-bfad-822045de475f 2019-02-27 01:55:54.076613 2700 43 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 5687a771-2707-4681-bfad-822045de475f 2019-02-27 01:55:54.090997 2701 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-02-25 17:03:01.665141000 Z\n- &1 2019-02-26 16:56:18.189588000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-27 17:09:25.733011556 Z\nsign_in_count:\n- 4\n- 5\n 10 \N 189.186.41.207 f9a5137d-d356-4238-a4a3-5ad4f1cc2ad2 2019-02-27 17:09:25.768294 2702 11 User \N \N 11 User \N update ---\nunique_session_id:\n- xRQpMhgiAcy_VnVwiwWY\n- rQszD9CTLGqGGYHt7oNb\n 11 \N 189.186.41.207 f9a5137d-d356-4238-a4a3-5ad4f1cc2ad2 2019-02-27 17:09:25.792956 2703 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-23 21:54:05.106817000 Z\n- &1 2019-02-25 16:45:24.418192000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-27 18:06:44.777146775 Z\nsign_in_count:\n- 27\n- 28\n 59 \N 189.186.41.207 0fb78d91-ac7a-4fd6-8a6b-bb0aa6c7cec6 2019-02-27 18:06:44.782929 2704 2 User \N \N 2 User \N update ---\nunique_session_id:\n- CCZNPNJmNBmEWWJ_Ejpp\n- 56hUdWNHGzQdGvnaPJz3\n 60 \N 189.186.41.207 0fb78d91-ac7a-4fd6-8a6b-bb0aa6c7cec6 2019-02-27 18:06:44.798258 2705 45 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.844E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 844.0 189.186.41.207 d6bb2736-9190-4a01-8582-c8a0c73d76d8 2019-02-27 18:12:06.559049 2706 184 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 18\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 a052f97b-da6d-43e0-b8f7-393dd150200f 2019-02-27 18:13:00.545144 2707 184 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 2\n- 45\n 2 movimiento de efectivo por venta con folio PV1-V-16 189.186.41.207 a052f97b-da6d-43e0-b8f7-393dd150200f 2019-02-27 18:13:00.579954 2708 159 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 44\namount: !ruby/object:BigDecimal 18:0.72328E3\ntax: !ruby/object:BigDecimal 18:0.11572E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.839E3\nstatus: 0\ndate_sale: 2019-02-27\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-70\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 61fa924c-1d45-4577-8777-17ffbf741a48 2019-02-27 23:49:22.383431 2709 418 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.207 61fa924c-1d45-4577-8777-17ffbf741a48 2019-02-27 23:49:22.428503 2710 159 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 818be3dd-743a-47b5-94d0-66789c996d83 2019-02-27 23:49:48.408314 2711 185 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 44\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.839E3\nmove_type: '1'\nsale_id: 159\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-70\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.161E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-70 189.186.41.207 818be3dd-743a-47b5-94d0-66789c996d83 2019-02-27 23:49:48.450232 2712 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-27 00:09:05.591625000 Z\n- &1 2019-02-27 00:09:06.121674000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-28 00:05:07.062362327 Z\nsign_in_count:\n- 60\n- 61\n 122 \N 189.186.41.207 5957f00a-3854-4819-b5ef-2e42e216c15d 2019-02-28 00:05:07.069253 2713 4 User \N \N 4 User \N update ---\nunique_session_id:\n- s_3CAMrmcsjHDuSUsmzk\n- yJknTb4Sag_-zkKrGejP\n 123 \N 189.186.41.207 5957f00a-3854-4819-b5ef-2e42e216c15d 2019-02-28 00:05:07.085262 2714 12 User \N \N 4 User \N create ---\nuserid: ANABELLY GAXIOLA\nfirst_name: ANABELLY\nlast_name: GAXIOLA\nusertype: C\nemail: ana_gax1@hotmail.com\nencrypted_password: "$2a$10$t06ODbRQIDEEBWeAB75zPeGth0h7EvO14Lpw8o2o7EEB.Ng7KrkQG"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 1\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.186.41.207 d7eb67bf-d6bf-43ea-a27d-f5be2af9c2ad 2019-02-28 00:07:35.493783 2715 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-02-28 00:08:26.805206969 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 189.186.41.207 535e0ccc-8b09-423a-8a88-806558dbc24d 2019-02-28 00:08:26.813445 2716 12 User \N \N 12 User \N update ---\nunique_session_id:\n- \n- imT7meo-Y6fgyVpupsdV\n 3 \N 189.186.41.207 535e0ccc-8b09-423a-8a88-806558dbc24d 2019-02-28 00:08:26.833377 2717 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-27 01:02:01.049091000 Z\n- &1 2019-02-27 01:22:10.975018000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-28 00:50:37.934951172 Z\nsign_in_count:\n- 44\n- 45\n 90 \N 189.186.41.207 5587a3dd-edb0-42b4-a355-6fcfdd0a71eb 2019-02-28 00:50:37.942919 2718 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 9WNzcZcihVWfDLsg3ShV\n- NstUySsCchLgj8fqPbxk\n 91 \N 189.186.41.207 5587a3dd-edb0-42b4-a355-6fcfdd0a71eb 2019-02-28 00:50:37.962166 2719 12 User \N \N 12 User \N update ---\ncurrent_sign_in_at:\n- 2019-02-28 00:08:26.805206000 Z\n- 2019-02-28 00:51:02.616327853 Z\nsign_in_count:\n- 1\n- 2\n 4 \N 189.186.41.207 b20a51a3-62d2-4023-874a-79ffc264681f 2019-02-28 00:51:02.626174 2720 12 User \N \N 12 User \N update ---\nunique_session_id:\n- imT7meo-Y6fgyVpupsdV\n- ut78ENzz1C3xg1vBgbVj\n 5 \N 189.186.41.207 b20a51a3-62d2-4023-874a-79ffc264681f 2019-02-28 00:51:02.644618 2721 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-26 01:59:47.216896000 Z\n- &1 2019-02-27 00:06:40.611386000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-28 01:29:36.927649850 Z\nsign_in_count:\n- 21\n- 22\n 44 \N 189.186.41.207 856ad787-72ee-40e9-8694-7dd98e461591 2019-02-28 01:29:36.934884 2722 10 User \N \N 10 User \N update ---\nunique_session_id:\n- ihyJwrLhThvG-AmTvcjy\n- gy22EUND6sYHyJdxxBsH\n 45 \N 189.186.41.207 856ad787-72ee-40e9-8694-7dd98e461591 2019-02-28 01:29:36.951616 2723 160 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 44\namount: !ruby/object:BigDecimal 18:0.874E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.998E3\nstatus: 0\ndate_sale: 2019-02-27\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-71\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 b273b713-b5ae-4436-8adc-781a30cfcb0f 2019-02-28 01:39:12.168744 2727 186 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 44\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.998E3\nmove_type: '1'\nsale_id: 160\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-71\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-71 189.186.41.207 51a78960-2a67-4a2f-8ad3-fef57ef232dd 2019-02-28 01:39:40.379028 2728 161 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 45\namount: !ruby/object:BigDecimal 18:0.94655E3\ntax: !ruby/object:BigDecimal 18:0.15145E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1098E4\nstatus: 0\ndate_sale: 2019-02-27\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-88\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 b8b9e3e9-1cf5-4fff-aee8-17af92c395b7 2019-02-28 01:44:05.025572 2729 176 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.41.207 b8b9e3e9-1cf5-4fff-aee8-17af92c395b7 2019-02-28 01:44:05.060408 2730 86 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.41.207 b8b9e3e9-1cf5-4fff-aee8-17af92c395b7 2019-02-28 01:44:05.088544 2731 161 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 61272a98-2047-414d-b826-de00957d9ba1 2019-02-28 01:45:15.064747 2732 187 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 45\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1098E4\nmove_type: '1'\nsale_id: 161\ncardnumber: 1996\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-88\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-88 189.186.41.207 61272a98-2047-414d-b826-de00957d9ba1 2019-02-28 01:45:15.090893 2733 42 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 45\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.2098E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.844E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1844E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 8d024892-4c52-448c-a73b-83b65190eb2a 2019-02-28 01:56:59.287746 2734 45 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 8d024892-4c52-448c-a73b-83b65190eb2a 2019-02-28 01:56:59.302702 2735 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-27 00:06:40.611386000 Z\n- &1 2019-02-28 01:29:36.927649000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-28 02:28:02.193393266 Z\nsign_in_count:\n- 22\n- 23\n 46 \N 189.186.41.207 ad99841a-70b6-488a-a368-aa13d90dc785 2019-02-28 02:28:02.199033 2736 10 User \N \N 10 User \N update ---\nunique_session_id:\n- gy22EUND6sYHyJdxxBsH\n- DspixFaqhVjdAGFgp-wV\n 47 \N 189.186.41.207 ad99841a-70b6-488a-a368-aa13d90dc785 2019-02-28 02:28:02.212514 2737 43 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 44\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.1837E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.859E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1359E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 0dc11682-8f18-4c41-b535-bb77014483d4 2019-02-28 02:30:20.925094 2738 44 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 0dc11682-8f18-4c41-b535-bb77014483d4 2019-02-28 02:30:20.943118 2739 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-02-26 16:56:18.189588000 Z\n- &1 2019-02-27 17:09:25.733011000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-28 16:55:35.638647628 Z\nsign_in_count:\n- 5\n- 6\n 12 \N 189.186.41.207 4e43e0c2-48fb-487e-884b-9ef556b0d5ff 2019-02-28 16:55:35.661401 2740 11 User \N \N 11 User \N update ---\nunique_session_id:\n- rQszD9CTLGqGGYHt7oNb\n- WyH_xzby_9-hgRgGdx1o\n 13 \N 189.186.41.207 4e43e0c2-48fb-487e-884b-9ef556b0d5ff 2019-02-28 16:55:35.680183 2741 46 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.64E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 640.0 189.186.41.207 428351e4-3c40-4f4d-bd34-a8a05a056515 2019-02-28 16:59:46.814011 2742 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-25 16:45:24.418192000 Z\n- &1 2019-02-27 18:06:44.777146000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-28 17:13:03.948241999 Z\nsign_in_count:\n- 28\n- 29\n 61 \N 189.186.41.207 8f7cc0c5-0e76-4fae-bffb-74bffeb1d103 2019-02-28 17:13:03.957316 2743 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 56hUdWNHGzQdGvnaPJz3\n- zjgZnvNyHXMwDsjP_3ZY\n 62 \N 189.186.41.207 8f7cc0c5-0e76-4fae-bffb-74bffeb1d103 2019-02-28 17:13:03.977122 2744 47 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.844E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 844.0 189.186.41.207 e49e6eae-bfe4-4718-ab02-575e947433b2 2019-02-28 17:13:22.214924 2745 31 Customer \N \N 2 User \N create ---\nnick_name: ISABEL RAFAEL\nphone: "(667) 481-2084"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.4E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ISABEL RAFAEL fue registrado. 189.186.41.207 5df9f630-52cf-4774-aa4d-fe1ba2234029 2019-02-28 17:15:31.397892 2746 162 Sale \N \N 2 User \N create ---\ncustomer_id: 31\nuser_id: 2\nopen_cash_register_id: 47\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-02-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-89\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 001dd959-1a93-4c00-8217-e5a1696a69f4 2019-02-28 17:15:52.253287 2747 266 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 001dd959-1a93-4c00-8217-e5a1696a69f4 2019-02-28 17:15:52.29532 2748 162 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 34ca74f2-ebfc-409e-bcb8-bc1deaa4a12a 2019-02-28 17:16:01.507204 2749 188 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 47\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 162\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-89\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-89 189.186.41.207 34ca74f2-ebfc-409e-bcb8-bc1deaa4a12a 2019-02-28 17:16:01.536981 2750 162 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-89 cancelada. 189.186.41.207 e52de4bd-ab51-4346-b34b-71dae9b05cea 2019-02-28 17:16:31.148516 11279 73 Customer \N \N 2 User \N update ---\nstatus:\n- active\n- 0\n 2 \N 189.186.40.252 40379fc8-82b0-4d4d-bcea-99134b6a7739 2019-07-17 16:29:24.09676 2751 188 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 47\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 162\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-89\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.41.207 e52de4bd-ab51-4346-b34b-71dae9b05cea 2019-02-28 17:16:31.20042 2752 266 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.41.207 e52de4bd-ab51-4346-b34b-71dae9b05cea 2019-02-28 17:16:31.24145 2753 163 Sale \N \N 2 User \N create ---\ncustomer_id: 31\nuser_id: 2\nopen_cash_register_id: 47\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-02-28\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-90\nexpiration_date: 2019-04-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 5d59c301-ed14-477b-af18-a4f11c6bc208 2019-02-28 17:17:01.164263 2754 266 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.41.207 5d59c301-ed14-477b-af18-a4f11c6bc208 2019-02-28 17:17:01.19873 2755 189 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 47\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 163\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-90\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-90 189.186.41.207 aefaa9b9-d871-40cd-81f6-72236ec53bfa 2019-02-28 17:17:10.856416 2756 189 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 47\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 163\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-90\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.41.207 358fcac1-4f1e-4ec7-bb59-13502948b12c 2019-02-28 17:17:28.179173 2757 190 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 47\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 163\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-90\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-90 189.186.41.207 0251bc42-08b4-4c3d-bb56-c24d9bcde01d 2019-02-28 17:17:38.048896 2758 190 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 47\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 163\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-90\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.41.207 2f2f1f4c-4fa0-4040-bec5-96dab3ae2eb0 2019-02-28 17:17:50.369733 2759 163 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-90 cancelada. 189.186.41.207 28b5b7ac-e154-45e4-83e9-e483e779ae9b 2019-02-28 17:17:56.025707 2760 266 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.41.207 28b5b7ac-e154-45e4-83e9-e483e779ae9b 2019-02-28 17:17:56.058222 2761 164 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 47\namount: !ruby/object:BigDecimal 18:0.42155E3\ntax: !ruby/object:BigDecimal 18:0.6745E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-02-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-91\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 339aa69a-62a3-4df3-9fe3-1c7f90c771c7 2019-02-28 18:01:16.171709 2762 152 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.41.207 339aa69a-62a3-4df3-9fe3-1c7f90c771c7 2019-02-28 18:01:16.21119 2763 164 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 ff86117c-c565-4521-b930-1a330d26ca6f 2019-02-28 18:01:45.155952 2764 191 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 47\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.489E3\nmove_type: '1'\nsale_id: 164\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-91\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.489E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-91 189.186.41.207 ff86117c-c565-4521-b930-1a330d26ca6f 2019-02-28 18:01:45.188881 2765 434 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.41.207 f8148982-4b90-4f02-a0c3-6d474d1c0c1b 2019-02-28 18:25:42.418986 2766 434 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.41.207 73673296-7bea-436c-babf-8afcdbdc157b 2019-02-28 18:25:46.968695 2767 10 Transfer \N \N 11 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-02-28\nuser_id: 11\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.41.207 c567dc10-cf3a-4c26-9c3d-5b50a928ca66 2019-02-28 18:25:53.201065 2768 10 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-02-28\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.41.207 213fb20e-1f07-4e42-923c-bd3771ad4df0 2019-02-28 18:52:02.814657 2769 149 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 189.186.41.207 213fb20e-1f07-4e42-923c-bd3771ad4df0 2019-02-28 18:52:02.840279 2770 32 Customer \N \N 2 User \N create ---\nnick_name: VIRIDIANA LOPEZ\nphone: "(667) 229-1064"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.2E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente VIRIDIANA LOPEZ fue registrado. 189.186.41.207 aeb0d435-b0bc-4452-ba1f-575f2769116f 2019-02-28 20:33:11.661986 2771 165 Sale \N \N 2 User \N create ---\ncustomer_id: 32\nuser_id: 2\nopen_cash_register_id: 47\namount: !ruby/object:BigDecimal 18:0.258448E4\ntax: !ruby/object:BigDecimal 18:0.41352E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2998E4\nstatus: 0\ndate_sale: 2019-02-28\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-92\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 376aead1-0b27-4476-ba4b-0fc35d5c4d05 2019-02-28 20:45:18.180162 11280 72 Customer \N \N 2 User \N update ---\nstatus:\n- active\n- 0\n 2 \N 189.186.40.252 60fa1cd2-40c0-4507-9d3c-27c71b854c70 2019-07-17 16:29:52.796253 2772 268 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 7 \N 189.186.41.207 376aead1-0b27-4476-ba4b-0fc35d5c4d05 2019-02-28 20:45:18.228922 2773 49 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.41.207 376aead1-0b27-4476-ba4b-0fc35d5c4d05 2019-02-28 20:45:18.285473 2774 192 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 47\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 165\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 fe601a38-85d7-47de-80ce-6be4a1642dc3 2019-02-28 20:46:22.251627 2775 165 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 fe601a38-85d7-47de-80ce-6be4a1642dc3 2019-02-28 20:46:22.30393 2776 192 CashRegistersMove \N \N 2 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV1-V-92 189.186.41.207 fe601a38-85d7-47de-80ce-6be4a1642dc3 2019-02-28 20:46:22.320391 2777 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-27 01:22:10.975018000 Z\n- &1 2019-02-28 00:50:37.934951000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-28 23:50:03.459513318 Z\nsign_in_count:\n- 45\n- 46\n 92 \N 189.186.41.207 5ebef8f9-c2f4-40f9-9f45-cc8fa186a31e 2019-02-28 23:50:03.480787 2778 3 User \N \N 3 User \N update ---\nunique_session_id:\n- NstUySsCchLgj8fqPbxk\n- m3NAkekbQ5AzVgdybvxx\n 93 \N 189.186.41.207 5ebef8f9-c2f4-40f9-9f45-cc8fa186a31e 2019-02-28 23:50:03.501113 2779 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-02-28 00:08:26.805206000 Z\n- &1 2019-02-28 00:51:02.616327000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-02-28 23:50:22.408785433 Z\nsign_in_count:\n- 2\n- 3\n 6 \N 189.186.41.207 b1b6d15c-f40f-4d57-9095-9fc8d15c674e 2019-02-28 23:50:22.416961 2780 12 User \N \N 12 User \N update ---\nunique_session_id:\n- ut78ENzz1C3xg1vBgbVj\n- 5ysJacCu8kgyjdnTEnmN\n 7 \N 189.186.41.207 b1b6d15c-f40f-4d57-9095-9fc8d15c674e 2019-02-28 23:50:22.4371 2781 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-27 00:09:06.121674000 Z\n- &1 2019-02-28 00:05:07.062362000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-01 00:45:53.000520429 Z\nsign_in_count:\n- 61\n- 62\n 124 \N 189.186.41.207 7f7b52b5-48ee-47ca-a9f2-feb6a24aa699 2019-03-01 00:45:53.009177 2782 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yJknTb4Sag_-zkKrGejP\n- ixDdPKipjUd_kc-pXjGB\n 125 \N 189.186.41.207 7f7b52b5-48ee-47ca-a9f2-feb6a24aa699 2019-03-01 00:45:53.027436 2783 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-28 00:50:37.934951000 Z\n- &1 2019-02-28 23:50:03.459513000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-01 01:05:22.110993401 Z\nsign_in_count:\n- 46\n- 47\n 94 \N 189.186.41.207 727943e6-821c-44ef-b9da-ddf5f4f3ff0b 2019-03-01 01:05:22.119168 2784 3 User \N \N 3 User \N update ---\nunique_session_id:\n- m3NAkekbQ5AzVgdybvxx\n- N1MvbzbrxKJMKMfWy588\n 95 \N 189.186.41.207 727943e6-821c-44ef-b9da-ddf5f4f3ff0b 2019-03-01 01:05:22.137236 2785 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-02-28 00:51:02.616327000 Z\n- &1 2019-02-28 23:50:22.408785000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-01 01:43:17.403376641 Z\nsign_in_count:\n- 3\n- 4\n 8 \N 189.186.41.207 3785ae21-ed9c-4b61-ab14-1bb6337ec5aa 2019-03-01 01:43:17.41159 2786 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 5ysJacCu8kgyjdnTEnmN\n- aixAXJxLeVaXDw4xo3RC\n 9 \N 189.186.41.207 3785ae21-ed9c-4b61-ab14-1bb6337ec5aa 2019-03-01 01:43:17.430981 2787 44 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 47\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.989E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.833E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1833E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 5ee0c4cb-0f2d-4254-b435-817789b99839 2019-03-01 01:57:47.967328 2788 47 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 5ee0c4cb-0f2d-4254-b435-817789b99839 2019-03-01 01:57:47.990368 2789 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-28 01:29:36.927649000 Z\n- &1 2019-02-28 02:28:02.193393000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-01 02:02:20.911962798 Z\nsign_in_count:\n- 23\n- 24\n 48 \N 189.186.41.207 a81180ca-0acd-437c-9b76-0c7d4905a043 2019-03-01 02:02:20.920603 2790 10 User \N \N 10 User \N update ---\nunique_session_id:\n- DspixFaqhVjdAGFgp-wV\n- _cy47BVkQS6xDpy3pwbn\n 49 \N 189.186.41.207 a81180ca-0acd-437c-9b76-0c7d4905a043 2019-03-01 02:02:20.939461 2791 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-02-28 00:05:07.062362000 Z\n- &1 2019-03-01 00:45:53.000520000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-01 02:06:42.320032782 Z\nsign_in_count:\n- 62\n- 63\n 126 \N 189.186.41.207 9ef77a44-a671-43db-849b-e89d680d2316 2019-03-01 02:06:42.326027 2792 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ixDdPKipjUd_kc-pXjGB\n- 5-RhcY5rxStSGT5e1eWt\n 127 \N 189.186.41.207 9ef77a44-a671-43db-849b-e89d680d2316 2019-03-01 02:06:42.350859 2793 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-02-28 02:28:02.193393000 Z\n- &1 2019-03-01 02:02:20.911962000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-01 02:07:59.178258375 Z\nsign_in_count:\n- 24\n- 25\n 50 \N 189.186.41.207 167fdd81-48a6-4d35-9c2f-5b136681f880 2019-03-01 02:07:59.185703 2794 10 User \N \N 10 User \N update ---\nunique_session_id:\n- _cy47BVkQS6xDpy3pwbn\n- BPyJrxPymYhmswTCRcxP\n 51 \N 189.186.41.207 167fdd81-48a6-4d35-9c2f-5b136681f880 2019-03-01 02:07:59.202357 2795 45 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 46\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.3E3\ncash_fund: !ruby/object:BigDecimal 18:0.34E3\nphysical_cash: !ruby/object:BigDecimal 18:0.64E3\nobservations: ADELANTO SUELDO ILSE\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 b6dbba6a-e15d-43f7-a79e-873889466640 2019-03-01 02:08:43.927372 2796 46 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 b6dbba6a-e15d-43f7-a79e-873889466640 2019-03-01 02:08:43.941277 2797 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-02-27 17:09:25.733011000 Z\n- &1 2019-02-28 16:55:35.638647000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-01 17:07:58.599098868 Z\nsign_in_count:\n- 6\n- 7\n 14 \N 189.186.41.207 f62dfbc4-83f1-4785-9ab7-e91026dea106 2019-03-01 17:07:58.642569 2798 11 User \N \N 11 User \N update ---\nunique_session_id:\n- WyH_xzby_9-hgRgGdx1o\n- Ro9Xk2SqWoyLFM1-ojU7\n 15 \N 189.186.41.207 f62dfbc4-83f1-4785-9ab7-e91026dea106 2019-03-01 17:07:58.67121 2799 48 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.34E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 340.0 189.186.41.207 4952dd75-04b4-4e56-babb-c5a438237aa0 2019-03-01 17:09:27.97168 2800 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-27 18:06:44.777146000 Z\n- &1 2019-02-28 17:13:03.948241000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-01 18:24:44.002779766 Z\nsign_in_count:\n- 29\n- 30\n 63 \N 189.186.41.207 b89d85d3-5fc9-4ebf-9867-d368aeaa12b6 2019-03-01 18:24:44.008473 2801 2 User \N \N 2 User \N update ---\nunique_session_id:\n- zjgZnvNyHXMwDsjP_3ZY\n- gZZ1AnNMxxmaKahVPGFt\n 64 \N 189.186.41.207 b89d85d3-5fc9-4ebf-9867-d368aeaa12b6 2019-03-01 18:24:44.022552 2802 49 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.833E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 833.0 189.186.41.207 68e9dab8-1e0a-470d-a133-2bc319cf58d3 2019-03-01 18:25:01.499431 2803 166 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 49\namount: !ruby/object:BigDecimal 18:0.41293E3\ntax: !ruby/object:BigDecimal 18:0.6607E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-93\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 4206965c-eb91-404f-8b93-29ef22fe4478 2019-03-01 18:26:09.629327 2804 149 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 189.186.41.207 4206965c-eb91-404f-8b93-29ef22fe4478 2019-03-01 18:26:09.672314 2805 166 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 9b84e7c5-3c64-4d31-8361-7cc709c7b904 2019-03-01 18:27:49.225226 2806 193 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.479E3\nmove_type: '1'\nsale_id: 166\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-93\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.479E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-93 189.186.41.207 9b84e7c5-3c64-4d31-8361-7cc709c7b904 2019-03-01 18:27:49.247695 2807 167 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 48\namount: !ruby/object:BigDecimal 18:0.82917E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.898E3\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-72\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 798dd0c4-f3b6-4aaa-ab09-4062c0598e54 2019-03-01 19:47:45.461712 2808 328 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.41.207 798dd0c4-f3b6-4aaa-ab09-4062c0598e54 2019-03-01 19:47:45.49769 2809 455 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.41.207 798dd0c4-f3b6-4aaa-ab09-4062c0598e54 2019-03-01 19:47:45.534177 2810 167 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 0bbaed2d-a301-46bf-b0db-ef36616a9b24 2019-03-01 19:48:14.438875 2811 194 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 48\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.898E3\nmove_type: '1'\nsale_id: 167\ncardnumber: 9585\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-72\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-72 189.186.41.207 0bbaed2d-a301-46bf-b0db-ef36616a9b24 2019-03-01 19:48:14.465106 2812 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-02-28 23:50:03.459513000 Z\n- &1 2019-03-01 01:05:22.110993000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-01 22:08:38.300559153 Z\nsign_in_count:\n- 47\n- 48\n 96 \N 189.186.41.207 f5a12cbc-95c9-4985-aafb-c1729d1a7f97 2019-03-01 22:08:38.307419 2813 3 User \N \N 3 User \N update ---\nunique_session_id:\n- N1MvbzbrxKJMKMfWy588\n- Gw3hV7ux3ccsk8FCt2yW\n 97 \N 189.186.41.207 f5a12cbc-95c9-4985-aafb-c1729d1a7f97 2019-03-01 22:08:38.323296 2814 33 Customer \N \N 3 User \N create ---\nnick_name: GRISELL PRIMA FLOR\nphone: ''\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.3E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente GRISELL PRIMA FLOR fue registrado. 189.186.41.207 3db4d4e5-544f-47e3-8d1b-1e9b0612ea30 2019-03-01 22:09:47.620877 2815 168 Sale \N \N 3 User \N create ---\ncustomer_id: 33\nuser_id: 3\nopen_cash_register_id: 48\namount: !ruby/object:BigDecimal 18:0.86121E3\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 0\nseller_id: 4\nsale_code: PV2-V-73\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 30458272-f25b-482d-90e4-d383338a2818 2019-03-01 22:11:53.982961 2816 332 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.41.207 30458272-f25b-482d-90e4-d383338a2818 2019-03-01 22:11:54.024859 2817 195 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 48\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 168\ncardnumber: 592\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 7f9099bf-f8cb-4319-9980-8d779c079523 2019-03-01 22:16:23.449006 2818 168 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 7f9099bf-f8cb-4319-9980-8d779c079523 2019-03-01 22:16:23.481556 2819 195 CashRegistersMove \N \N 11 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV2-V-73 189.186.41.207 7f9099bf-f8cb-4319-9980-8d779c079523 2019-03-01 22:16:23.498369 2820 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-02-28 23:50:22.408785000 Z\n- &1 2019-03-01 01:43:17.403376000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-01 23:35:52.818544585 Z\nsign_in_count:\n- 4\n- 5\n 10 \N 189.186.41.207 de81b15b-b7d9-4b43-9324-b43f9ae31fe8 2019-03-01 23:35:52.823882 2821 12 User \N \N 12 User \N update ---\nunique_session_id:\n- aixAXJxLeVaXDw4xo3RC\n- 9gyzRtSnk4T_SBsyXVK-\n 11 \N 189.186.41.207 de81b15b-b7d9-4b43-9324-b43f9ae31fe8 2019-03-01 23:35:52.837128 2822 169 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 49\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-94\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 02684337-ee9b-445a-b72f-45e7123119be 2019-03-01 23:36:16.547032 2823 131 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.41.207 02684337-ee9b-445a-b72f-45e7123119be 2019-03-01 23:36:16.583822 2824 169 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 dcc5ee28-68a1-465d-ba3d-fff20efd660a 2019-03-01 23:36:40.903658 2850 269 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.41.207 191e7b73-b760-412f-b844-23383ed3dd62 2019-03-02 00:11:47.972204 2876 365 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E2\n- !ruby/object:BigDecimal 18:0.54E2\n 3 \N 189.186.41.207 02883939-1acf-44df-b71c-c5913a676c9b 2019-03-02 00:40:00.069439 2825 196 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 169\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-94\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-94 189.186.41.207 dcc5ee28-68a1-465d-ba3d-fff20efd660a 2019-03-01 23:36:40.935554 2826 170 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 49\namount: !ruby/object:BigDecimal 18:0.55948E3\ntax: !ruby/object:BigDecimal 18:0.8952E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-95\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 afc2be2e-ab21-4b6f-8b83-298dba2ee359 2019-03-01 23:43:56.231886 2827 138 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.41.207 afc2be2e-ab21-4b6f-8b83-298dba2ee359 2019-03-01 23:43:56.269191 2828 170 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 f3a03c0d-bd25-4d9d-8115-29279014789c 2019-03-01 23:44:23.215104 2829 197 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.649E3\nmove_type: '1'\nsale_id: 170\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-95\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-95 189.186.41.207 f3a03c0d-bd25-4d9d-8115-29279014789c 2019-03-01 23:44:23.237691 2830 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-03-01 02:02:20.911962000 Z\n- &1 2019-03-01 02:07:59.178258000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-01 23:46:37.537712116 Z\nsign_in_count:\n- 25\n- 26\n 52 \N 189.186.41.207 e7b8c1fb-b50b-4a97-bb8d-ab260f749702 2019-03-01 23:46:37.549503 2831 10 User \N \N 10 User \N update ---\nunique_session_id:\n- BPyJrxPymYhmswTCRcxP\n- F9ALTQasMrJM5xZh_REW\n 53 \N 189.186.41.207 e7b8c1fb-b50b-4a97-bb8d-ab260f749702 2019-03-01 23:46:37.566738 2832 34 Customer \N \N 10 User \N create ---\nnick_name: ANABELLY SUO\nphone: "(667) 393-1875"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.6E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANABELLY SUO fue registrado. 189.186.41.207 f6e51afc-252c-4adb-97c8-d2e48b5586e7 2019-03-01 23:47:28.055419 2833 34 Customer \N \N 10 User \N update ---\ncredit_limit:\n- !ruby/object:BigDecimal 18:0.6E4\n- !ruby/object:BigDecimal 18:0.1E5\ntime_limit:\n- 0\n- 365\n 2 El cliente ANABELLY SUO fue registrado. 189.186.41.207 459a90b1-4e10-42c4-b857-bac114fbfda4 2019-03-01 23:49:25.598375 2834 171 Sale \N \N 10 User \N create ---\ncustomer_id: 34\nuser_id: 10\nopen_cash_register_id: 48\namount: !ruby/object:BigDecimal 18:0.379483E4\ntax: !ruby/object:BigDecimal 18:0.59117E3\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.4286E4\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 0\nseller_id: 4\nsale_code: PV2-V-74\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 f77e10c4-9b1c-484f-93e0-3c1a6fa616fc 2019-03-01 23:59:31.084401 2835 365 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E2\n- !ruby/object:BigDecimal 18:0.54E2\n 1 \N 189.186.41.207 f77e10c4-9b1c-484f-93e0-3c1a6fa616fc 2019-03-01 23:59:31.120385 2836 326 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.41.207 f77e10c4-9b1c-484f-93e0-3c1a6fa616fc 2019-03-01 23:59:31.148466 2837 321 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.41.207 f77e10c4-9b1c-484f-93e0-3c1a6fa616fc 2019-03-01 23:59:31.171917 2838 409 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.207 f77e10c4-9b1c-484f-93e0-3c1a6fa616fc 2019-03-01 23:59:31.195505 2839 274 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.41.207 f77e10c4-9b1c-484f-93e0-3c1a6fa616fc 2019-03-01 23:59:31.218679 2840 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-27 01:05:38.168073000 Z\n- &1 2019-02-27 01:54:46.974819000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-02 00:03:11.356248015 Z\nsign_in_count:\n- 45\n- 46\n 92 \N 189.186.41.207 09b56b17-f118-4614-a718-872087398e09 2019-03-02 00:03:11.363234 2841 9 User \N \N 9 User \N update ---\nunique_session_id:\n- bqtMNfZYKsmDGBdbr245\n- dZBxuzkz9fk76JnsuRFx\n 93 \N 189.186.41.207 09b56b17-f118-4614-a718-872087398e09 2019-03-02 00:03:11.379691 2842 172 Sale \N \N 9 User \N create ---\ncustomer_id: 34\nuser_id: 9\nopen_cash_register_id: 49\namount: !ruby/object:BigDecimal 18:0.202414E4\ntax: !ruby/object:BigDecimal 18:0.32387E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.234801E4\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 0\nseller_id: 8\nsale_code: PV1-V-96\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 3394c953-fc1f-4cf1-bf2e-6ac16aaaff25 2019-03-02 00:04:41.542824 2843 138 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.41.207 3394c953-fc1f-4cf1-bf2e-6ac16aaaff25 2019-03-02 00:04:41.578297 2844 50 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.41.207 3394c953-fc1f-4cf1-bf2e-6ac16aaaff25 2019-03-02 00:04:41.618504 2845 173 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 49\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-97\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 0bf16a47-249d-401c-b378-25223254dc52 2019-03-02 00:10:53.428228 2846 269 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.41.207 0bf16a47-249d-401c-b378-25223254dc52 2019-03-02 00:10:53.472868 2847 173 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-97 cancelada. 189.186.41.207 8fc611b2-1ee0-4919-827c-5ebbb639c1b2 2019-03-02 00:11:00.457831 2848 269 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.41.207 8fc611b2-1ee0-4919-827c-5ebbb639c1b2 2019-03-02 00:11:00.48363 2849 174 Sale \N \N 9 User \N create ---\ncustomer_id: 34\nuser_id: 9\nopen_cash_register_id: 49\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 0\nseller_id: 8\nsale_code: PV1-V-98\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 191e7b73-b760-412f-b844-23383ed3dd62 2019-03-02 00:11:47.939776 2851 35 Customer \N \N 9 User \N create ---\nnick_name: GLENDA KARELY REYES\nphone: "(667) 230-5986"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.5E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente GLENDA KARELY REYES fue registrado. 189.186.41.207 2b461b58-309c-49f0-a6af-9a476e941092 2019-03-02 00:27:40.347503 2852 175 Sale \N \N 9 User \N create ---\ncustomer_id: 35\nuser_id: 9\nopen_cash_register_id: 49\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 2\nseller_id: 8\nsale_code: PV1-V-99\nexpiration_date: 2019-04-05\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 1438024a-36b5-44b0-9616-ac795a5f68c4 2019-03-02 00:28:34.250753 2853 13 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.41.207 1438024a-36b5-44b0-9616-ac795a5f68c4 2019-03-02 00:28:34.282064 2854 175 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-99 cancelada. 189.186.41.207 e82e4dd5-a70a-4f8c-9c21-e7030f5b3a94 2019-03-02 00:28:38.32054 2855 13 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.41.207 e82e4dd5-a70a-4f8c-9c21-e7030f5b3a94 2019-03-02 00:28:38.344872 2856 176 Sale \N \N 9 User \N create ---\ncustomer_id: 35\nuser_id: 9\nopen_cash_register_id: 49\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-100\nexpiration_date: 2019-04-05\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 a29fb3db-ca56-48c1-9565-c89a42fdf7cc 2019-03-02 00:29:06.342761 2857 13 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.41.207 a29fb3db-ca56-48c1-9565-c89a42fdf7cc 2019-03-02 00:29:06.373856 2858 198 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 176\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-100\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-100 189.186.41.207 ebdce551-fd69-4e0b-91e1-1e5ded21a33b 2019-03-02 00:29:19.933014 2859 176 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-100 cancelada. 189.186.41.207 f0a0fc11-07c4-4b20-9cd3-0de7d978863b 2019-03-02 00:29:35.640488 2860 13 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 189.186.41.207 f0a0fc11-07c4-4b20-9cd3-0de7d978863b 2019-03-02 00:29:35.665165 2861 177 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 49\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-101\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 b5d8eb7e-2a06-4b96-817f-8b64278899bf 2019-03-02 00:29:53.511251 2862 13 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 189.186.41.207 b5d8eb7e-2a06-4b96-817f-8b64278899bf 2019-03-02 00:29:53.540913 2863 177 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 4512df8d-de9c-4e4e-ba01-237027d61dc7 2019-03-02 00:30:05.33553 2864 199 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 177\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-101\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-101 189.186.41.207 4512df8d-de9c-4e4e-ba01-237027d61dc7 2019-03-02 00:30:05.363191 2865 36 Customer \N \N 9 User \N create ---\nnick_name: ROCIO SUO\nphone: "(667) 223-6341"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.1E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ROCIO SUO fue registrado. 189.186.41.207 f5578d75-7f6c-418f-a350-4faebbeec905 2019-03-02 00:34:10.59604 2866 178 Sale \N \N 9 User \N create ---\ncustomer_id: 36\nuser_id: 9\nopen_cash_register_id: 49\namount: !ruby/object:BigDecimal 18:0.178276E4\ntax: !ruby/object:BigDecimal 18:0.28524E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2068E4\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 0\nseller_id: 1\nsale_code: PV1-V-102\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 8d20c1d3-60bd-420b-874f-ece209749db9 2019-03-02 00:36:54.036481 2867 182 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.41.207 8d20c1d3-60bd-420b-874f-ece209749db9 2019-03-02 00:36:54.074834 2868 248 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 8d20c1d3-60bd-420b-874f-ece209749db9 2019-03-02 00:36:54.103084 2869 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-03-01 02:07:59.178258000 Z\n- &1 2019-03-01 23:46:37.537712000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-02 00:37:52.856021056 Z\nsign_in_count:\n- 26\n- 27\n 54 \N 189.186.41.207 b1baa12b-6f9c-4e33-94d1-56941163eccb 2019-03-02 00:37:52.862686 2870 10 User \N \N 10 User \N update ---\nunique_session_id:\n- F9ALTQasMrJM5xZh_REW\n- QpQVMhxfUbWVBRbGBpzU\n 55 \N 189.186.41.207 b1baa12b-6f9c-4e33-94d1-56941163eccb 2019-03-02 00:37:52.874615 2871 179 Sale \N \N 10 User \N create ---\ncustomer_id: 36\nuser_id: 10\nopen_cash_register_id: 48\namount: !ruby/object:BigDecimal 18:0.171983E4\ntax: !ruby/object:BigDecimal 18:0.25917E3\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.1879E4\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-75\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 4d67c1cc-205d-49f4-a82c-fd2ff67bcded 2019-03-02 00:39:49.904155 2872 481 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.41.207 4d67c1cc-205d-49f4-a82c-fd2ff67bcded 2019-03-02 00:39:49.93399 2873 365 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.54E2\n- !ruby/object:BigDecimal 18:0.5E2\n 2 \N 189.186.41.207 4d67c1cc-205d-49f4-a82c-fd2ff67bcded 2019-03-02 00:39:49.957346 2874 179 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-75 cancelada. 189.186.41.207 02883939-1acf-44df-b71c-c5913a676c9b 2019-03-02 00:40:00.026889 2875 481 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.41.207 02883939-1acf-44df-b71c-c5913a676c9b 2019-03-02 00:40:00.049195 2877 180 Sale \N \N 10 User \N create ---\ncustomer_id: 36\nuser_id: 10\nopen_cash_register_id: 48\namount: !ruby/object:BigDecimal 18:0.171983E4\ntax: !ruby/object:BigDecimal 18:0.25917E3\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.1879E4\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 0\nseller_id: 4\nsale_code: PV2-V-76\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 a33b4dcd-f8b3-4868-b74c-7820ee21844c 2019-03-02 00:40:47.841637 2878 481 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.41.207 a33b4dcd-f8b3-4868-b74c-7820ee21844c 2019-03-02 00:40:47.876336 2879 365 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.54E2\n- !ruby/object:BigDecimal 18:0.5E2\n 4 \N 189.186.41.207 a33b4dcd-f8b3-4868-b74c-7820ee21844c 2019-03-02 00:40:47.900462 2880 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-01 00:45:53.000520000 Z\n- &1 2019-03-01 02:06:42.320032000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-02 00:47:19.006503375 Z\nsign_in_count:\n- 63\n- 64\n 128 \N 189.186.41.207 d159ca11-1aa1-43bb-b268-d7410ec04e4f 2019-03-02 00:47:19.013069 2881 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5-RhcY5rxStSGT5e1eWt\n- "-sxkHsN3rA659v75-QA2"\n 129 \N 189.186.41.207 d159ca11-1aa1-43bb-b268-d7410ec04e4f 2019-03-02 00:47:19.029095 2882 493 Product \N \N 4 User \N create ---\nsku: BLU-493\nname: DEUANT\ndescription: DEUDA ANTERIOR\nprice_base: !ruby/object:BigDecimal 18:0.185E4\nprice_sale: !ruby/object:BigDecimal 18:0.37E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-493 fue creado. 189.186.41.207 e1993ae3-b5ec-47b6-b9d2-3a4b95182a08 2019-03-02 00:50:34.33222 2883 493 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000493'\n 2 \N 189.186.41.207 e1993ae3-b5ec-47b6-b9d2-3a4b95182a08 2019-03-02 00:50:34.366036 2884 505 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 493\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 e1993ae3-b5ec-47b6-b9d2-3a4b95182a08 2019-03-02 00:50:34.397075 2885 45 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-24\namount: !ruby/object:BigDecimal 18:0.185E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.185E4\nobservations: ''\npurchase_date: 2019-03-01\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-24 por $ 1850.0 MXN creada. 189.186.41.207 dd4b0c87-038f-4d12-ac91-aa34f71e88bb 2019-03-02 00:50:39.258422 2886 505 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.207 dd4b0c87-038f-4d12-ac91-aa34f71e88bb 2019-03-02 00:50:39.284314 2887 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-02-27 01:54:46.974819000 Z\n- &1 2019-03-02 00:03:11.356248000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-02 00:51:16.778722319 Z\nsign_in_count:\n- 46\n- 47\n 94 \N 189.186.41.207 cde0e252-adc2-4f6d-a592-ece3a40d7c1b 2019-03-02 00:51:16.78439 2888 9 User \N \N 9 User \N update ---\nunique_session_id:\n- dZBxuzkz9fk76JnsuRFx\n- p4m8nhvQFuyDCbbDjq5z\n 95 \N 189.186.41.207 cde0e252-adc2-4f6d-a592-ece3a40d7c1b 2019-03-02 00:51:16.798361 2889 181 Sale \N \N 9 User \N create ---\ncustomer_id: 36\nuser_id: 9\nopen_cash_register_id: 49\namount: !ruby/object:BigDecimal 18:0.37E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.37E4\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-103\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 af033cc2-1b18-42f6-91b5-51d05df159ca 2019-03-02 00:51:55.531204 2890 505 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.207 af033cc2-1b18-42f6-91b5-51d05df159ca 2019-03-02 00:51:55.560537 2891 181 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-103 cancelada. 189.186.41.207 ddaed463-53e4-463a-a44e-782d05d29dff 2019-03-02 00:52:06.688623 2892 505 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.41.207 ddaed463-53e4-463a-a44e-782d05d29dff 2019-03-02 00:52:06.714577 2893 182 Sale \N \N 9 User \N create ---\ncustomer_id: 36\nuser_id: 9\nopen_cash_register_id: 49\namount: !ruby/object:BigDecimal 18:0.37E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.37E4\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 0\nseller_id: 1\nsale_code: PV1-V-104\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 c2acd385-71c9-47ff-9409-bf5549743fcd 2019-03-02 00:52:34.230894 2894 505 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.41.207 c2acd385-71c9-47ff-9409-bf5549743fcd 2019-03-02 00:52:34.25987 2895 200 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 178\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 62b76dcd-2f68-427b-a004-c05521434921 2019-03-02 00:57:29.708787 2896 178 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 62b76dcd-2f68-427b-a004-c05521434921 2019-03-02 00:57:29.745414 2897 200 CashRegistersMove \N \N 9 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV1-V-102 189.186.41.207 62b76dcd-2f68-427b-a004-c05521434921 2019-03-02 00:57:29.757484 2898 183 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 49\namount: !ruby/object:BigDecimal 18:0.99E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.99E2\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-105\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 6f3dc06c-9960-4fe7-88be-6d5d8627c6ec 2019-03-02 00:59:11.161694 2899 486 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.56E2\n- !ruby/object:BigDecimal 18:0.55E2\n 8 \N 189.186.41.207 6f3dc06c-9960-4fe7-88be-6d5d8627c6ec 2019-03-02 00:59:11.198486 2900 183 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 215123a4-4044-4061-86f6-756251dc3fd0 2019-03-02 00:59:18.648 2925 204 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.68E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 7\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 cd21d7cf-9f13-4568-905f-3d475f628b88 2019-03-02 02:00:46.038848 2901 201 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.99E2\nmove_type: '1'\nsale_id: 183\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-105\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.99E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-105 189.186.41.207 215123a4-4044-4061-86f6-756251dc3fd0 2019-03-02 00:59:18.679475 2902 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-23 20:33:31.112754000 Z\n- &1 2019-02-25 17:30:16.045775000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-02 01:05:02.545845261 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537487\n mask_addr: 4294967295\nsign_in_count:\n- 33\n- 34\n 68 \N 177.228.109.143 10d1e6d8-57b8-4917-8b4b-60984d6be82d 2019-03-02 01:05:02.555969 2903 1 User \N \N 1 User \N update ---\nunique_session_id:\n- PVUxF4KAbMzntDAZyuGq\n- QSG9TW5txqfrJqBFatB6\n 69 \N 177.228.109.143 10d1e6d8-57b8-4917-8b4b-60984d6be82d 2019-03-02 01:05:02.576499 2904 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-01 02:06:42.320032000 Z\n- &1 2019-03-02 00:47:19.006503000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-02 01:07:20.693000545 Z\nsign_in_count:\n- 64\n- 65\n 130 \N 189.186.41.207 222da3e6-f6b9-4407-92e2-b474c5104272 2019-03-02 01:07:20.700247 2905 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-sxkHsN3rA659v75-QA2"\n- GcpYQN7XiBCvnhZDyvn8\n 131 \N 189.186.41.207 222da3e6-f6b9-4407-92e2-b474c5104272 2019-03-02 01:07:20.71688 2906 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-02 00:47:19.006503000 Z\n- &1 2019-03-02 01:07:20.693000000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-02 01:13:40.658248875 Z\nsign_in_count:\n- 65\n- 66\n 132 \N 189.186.41.207 01db7579-f4d4-4f7a-b0e1-da11e2e0f375 2019-03-02 01:13:40.663686 2907 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GcpYQN7XiBCvnhZDyvn8\n- 9eEseKYKmdSxnBweGG6D\n 133 \N 189.186.41.207 01db7579-f4d4-4f7a-b0e1-da11e2e0f375 2019-03-02 01:13:40.67676 2908 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-01 01:43:17.403376000 Z\n- &1 2019-03-01 23:35:52.818544000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-02 01:31:58.588666137 Z\nsign_in_count:\n- 5\n- 6\n 12 \N 189.186.41.207 2d943f26-2ec3-445e-8e31-da3f7783d609 2019-03-02 01:31:58.594556 2909 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 9gyzRtSnk4T_SBsyXVK-\n- MDgiosxJPRksqCkXL-uZ\n 13 \N 189.186.41.207 2d943f26-2ec3-445e-8e31-da3f7783d609 2019-03-02 01:31:58.607223 2910 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-02-28 17:13:03.948241000 Z\n- &1 2019-03-01 18:24:44.002779000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-02 01:46:12.734955977 Z\nsign_in_count:\n- 30\n- 31\n 65 \N 189.186.41.207 e00b65a5-8246-40b7-9145-7fd4bc2ba6ff 2019-03-02 01:46:12.742982 2911 2 User \N \N 2 User \N update ---\nunique_session_id:\n- gZZ1AnNMxxmaKahVPGFt\n- EFYWuYD-_ifsNrWJVxMa\n 66 \N 189.186.41.207 e00b65a5-8246-40b7-9145-7fd4bc2ba6ff 2019-03-02 01:46:12.760937 2912 184 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 49\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-106\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 e222ef23-a709-4128-9ea4-d6c4a8b783a7 2019-03-02 01:48:19.443666 2913 254 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 e222ef23-a709-4128-9ea4-d6c4a8b783a7 2019-03-02 01:48:19.501305 2914 184 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 496dfb21-cca9-4a47-8a2c-533aae3eca14 2019-03-02 01:48:25.868675 2915 202 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 184\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-106\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-106 189.186.41.207 496dfb21-cca9-4a47-8a2c-533aae3eca14 2019-03-02 01:48:25.891107 2916 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-01 01:05:22.110993000 Z\n- &1 2019-03-01 22:08:38.300559000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-02 01:50:52.918704372 Z\nsign_in_count:\n- 48\n- 49\n 98 \N 189.186.41.207 6ee8cbba-c879-4c26-b1d8-99b2f3a1428b 2019-03-02 01:50:52.924679 2917 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Gw3hV7ux3ccsk8FCt2yW\n- bCzyV1yCYD8xCqHguX-D\n 99 \N 189.186.41.207 6ee8cbba-c879-4c26-b1d8-99b2f3a1428b 2019-03-02 01:50:52.937407 2918 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-01 22:08:38.300559000 Z\n- &1 2019-03-02 01:50:52.918704000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-02 01:50:55.684731795 Z\nsign_in_count:\n- 49\n- 50\n 100 \N 189.186.41.207 b3d94616-95e5-44b1-b741-ae4c95a41182 2019-03-02 01:50:55.691077 2919 3 User \N \N 3 User \N update ---\nunique_session_id:\n- bCzyV1yCYD8xCqHguX-D\n- DWsW56PaMnMJUD6hsZ3G\n 101 \N 189.186.41.207 b3d94616-95e5-44b1-b741-ae4c95a41182 2019-03-02 01:50:55.70482 2920 185 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 48\namount: !ruby/object:BigDecimal 18:0.8181E3\ntax: !ruby/object:BigDecimal 18:0.1309E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.949E3\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-77\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 d5bab553-87b7-4da7-a437-cd08e8dc8393 2019-03-02 01:51:25.191239 2921 479 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.41.207 d5bab553-87b7-4da7-a437-cd08e8dc8393 2019-03-02 01:51:25.227224 2922 185 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 d9049183-ac6b-4627-89e0-cf5da5c3f09a 2019-03-02 01:52:31.709809 2923 203 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 48\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.949E3\nmove_type: '1'\nsale_id: 185\ncardnumber: 3792\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-77\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-77 189.186.41.207 d9049183-ac6b-4627-89e0-cf5da5c3f09a 2019-03-02 01:52:31.740157 2924 7 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 49\nquantity: !ruby/object:BigDecimal 18:0.68E2\nstatus: 1\nobservations: sueldo rocio\nexpense_date: 2019-03-01\nexpense_code: PV1-E-7\n 1 Egreso por 68.0 registrado 189.186.41.207 cd21d7cf-9f13-4568-905f-3d475f628b88 2019-03-02 02:00:46.018128 2926 8 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 49\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida\nexpense_date: 2019-03-01\nexpense_code: PV1-E-8\n 1 Egreso por 50.0 registrado 189.186.41.207 f22229cd-ed65-431c-ad12-2e3ffe98891e 2019-03-02 02:08:56.637066 2927 205 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 8\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 f22229cd-ed65-431c-ad12-2e3ffe98891e 2019-03-02 02:08:56.670274 2928 9 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 49\nquantity: !ruby/object:BigDecimal 18:0.5E3\nstatus: 1\nobservations: sueldo chio\nexpense_date: 2019-03-01\nexpense_code: PV1-E-9\n 1 Egreso por 500.0 registrado 189.186.41.207 d19af7a7-7219-43b8-8218-34334e0b4189 2019-03-02 02:10:12.460937 2929 206 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 9\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 d19af7a7-7219-43b8-8218-34334e0b4189 2019-03-02 02:10:12.492443 2930 186 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 48\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-78\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 1782eb48-31d5-4e12-a9b0-01b8a649100d 2019-03-02 02:11:12.319887 2931 387 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 1782eb48-31d5-4e12-a9b0-01b8a649100d 2019-03-02 02:11:12.357689 2932 186 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 f4f1f66a-ab28-4de1-b293-e38081918771 2019-03-02 02:11:41.954373 2933 207 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 48\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 186\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-78\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-78 189.186.41.207 f4f1f66a-ab28-4de1-b293-e38081918771 2019-03-02 02:11:41.985574 2934 46 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 49\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3824E4\namount_out: !ruby/object:BigDecimal 18:0.618E3\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.94E3\nphysical_cash: !ruby/object:BigDecimal 18:0.394E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 4179c224-b09d-40bb-82d0-2cddbaf61b99 2019-03-02 02:12:24.555733 2935 49 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 4179c224-b09d-40bb-82d0-2cddbaf61b99 2019-03-02 02:12:24.572341 2936 50 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.94E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 940.0 189.186.41.207 c3053ca8-ce76-4927-84e9-1e80b7f13d94 2019-03-02 02:13:21.840838 2937 187 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 50\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-03-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-107\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 a331b758-933d-42fe-a606-2cd6664c77db 2019-03-02 02:14:37.785651 2938 131 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.41.207 a331b758-933d-42fe-a606-2cd6664c77db 2019-03-02 02:14:37.812236 2939 187 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 95928b1a-7f11-4d9b-9b6f-270498f1431e 2019-03-02 02:14:42.145472 2940 208 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 50\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 187\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-107\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-107 189.186.41.207 95928b1a-7f11-4d9b-9b6f-270498f1431e 2019-03-02 02:14:42.177254 2941 47 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 50\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.499E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.94E3\nphysical_cash: !ruby/object:BigDecimal 18:0.144E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 5c6ea78b-64a2-47e2-99a2-f4d34ac0e383 2019-03-02 02:16:42.130155 2942 50 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 5c6ea78b-64a2-47e2-99a2-f4d34ac0e383 2019-03-02 02:16:42.14857 2943 48 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 48\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.2946E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.239E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1239E4\nobservations: 'SOBRARON $100 DIERON MAL LA FERIA '\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 ad730d9a-cac9-4b9f-9ea2-171aacf40a4f 2019-03-02 02:36:24.036562 2944 48 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 ad730d9a-cac9-4b9f-9ea2-171aacf40a4f 2019-03-02 02:36:24.055124 2945 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-01 18:24:44.002779000 Z\n- &1 2019-03-02 01:46:12.734955000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-02 17:05:15.077230747 Z\nsign_in_count:\n- 31\n- 32\n 67 \N 189.186.41.207 8f236fec-86b0-44ce-9a0e-bb4172907b78 2019-03-02 17:05:15.105334 2946 2 User \N \N 2 User \N update ---\nunique_session_id:\n- EFYWuYD-_ifsNrWJVxMa\n- xzqQ9uybjMgcetuSVGtz\n 68 \N 189.186.41.207 8f236fec-86b0-44ce-9a0e-bb4172907b78 2019-03-02 17:05:15.125677 2947 494 Product \N \N 2 User \N create ---\nsku: CON-494\nname: BIKINIS\ndescription: ''\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 10\nproduct_service_key: '01010101'\n 1 El producto CON-494 fue creado. 189.186.41.207 de0c4120-1037-448e-b73b-3a3d8f5b9c6d 2019-03-02 17:10:27.09307 2948 494 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000494'\n 2 \N 189.186.41.207 de0c4120-1037-448e-b73b-3a3d8f5b9c6d 2019-03-02 17:10:27.135425 2949 506 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 494\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 de0c4120-1037-448e-b73b-3a3d8f5b9c6d 2019-03-02 17:10:27.197446 2950 46 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-25\namount: !ruby/object:BigDecimal 18:0.139345E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.139345E5\nobservations: ''\npurchase_date: 2019-03-02\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-25 por $ 13934.5 MXN creada. 189.186.41.207 d2c3989b-f288-422a-be58-b8dbee017b89 2019-03-02 17:16:01.509595 2951 506 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.31E2\n 2 \N 189.186.41.207 d2c3989b-f288-422a-be58-b8dbee017b89 2019-03-02 17:16:01.544245 2952 506 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.31E2\n- !ruby/object:BigDecimal 18:0.3E2\n 3 \N 189.186.41.207 acc876fc-e9a7-41a6-9ff3-5589d7aed91a 2019-03-02 17:16:26.036336 2953 506 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E2\n- !ruby/object:BigDecimal 18:0.15E2\n 4 \N 189.186.41.207 360b8ecb-6601-40d1-a33b-d47a4be17461 2019-03-02 17:16:32.158162 2954 180 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 d0a2c504-89ed-4a6f-a2ab-d220d5882db0 2019-03-02 17:16:58.14742 2955 180 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.207 2c0e8a13-1111-43a6-829d-eafe919a77a8 2019-03-02 17:17:06.893189 2956 16 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 62bf6e2b-853a-4691-acc1-f2361ad480c1 2019-03-02 17:23:00.92829 2957 16 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.207 9ad74b81-c67d-4933-ad5a-c620db51e4f4 2019-03-02 17:23:05.404189 2958 205 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 189.186.41.207 34f85563-19c6-47d7-badf-6b4bc9b13b2a 2019-03-02 17:27:58.211536 2959 205 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.207 f6a6f7de-5c25-437e-bd68-c3da761c26b2 2019-03-02 17:28:02.284072 2960 478 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.41.207 55fc1799-65a5-4d21-a01f-95c5c4a67e41 2019-03-02 17:28:24.433436 2961 478 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.207 b5a32bd2-d4ed-4546-aa91-4fbdd912cc93 2019-03-02 17:28:30.873848 2962 70 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 189.186.41.207 df44cff0-620d-4aa1-a989-6aed462725b9 2019-03-02 17:29:15.415945 2963 70 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.207 85aa884e-fdfa-441d-8c2a-f9a224a8425e 2019-03-02 17:29:18.679074 2964 153 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 14a08df3-76c5-46de-9a3e-d84a13dc8c0b 2019-03-02 17:30:01.653943 2965 153 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.207 45108ed7-4813-4007-a0e0-b96230a8d7f5 2019-03-02 17:30:07.083221 2966 251 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 af1dc6f0-e632-4720-b082-a5781da79c52 2019-03-02 17:30:41.904909 2967 251 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.207 a8776694-9ec0-44a4-9ca3-736d8ab57d66 2019-03-02 17:30:48.338028 2968 184 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.41.207 b61dde2b-14f8-47ea-b5fd-56cd8bacb265 2019-03-02 17:31:36.171271 2969 184 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.207 3358f564-6f53-4680-b3df-c72f0877e1af 2019-03-02 17:31:41.98191 2970 184 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.207 6b92d98c-cccf-4bf7-b101-75ce6869a2da 2019-03-02 17:32:03.683048 2971 5 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 1 \N 189.186.41.207 fa301308-b3fa-4795-a6a4-8270f86527ed 2019-03-02 17:32:25.974126 2972 5 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.41.207 e1a93ccc-6bdb-4bb6-826b-f9243972d9e7 2019-03-02 17:33:30.253688 2973 179 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 12f901d4-452e-4a01-87c9-17a63eacbb5c 2019-03-02 17:35:32.902416 2974 179 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.207 0300e72a-bc31-4b5a-9fbb-cf281eb266df 2019-03-02 17:35:39.390451 2975 11 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-03-02\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.41.207 9bd3d0b0-6fa1-4ef9-85bd-38ca7a754cf5 2019-03-02 17:37:17.5727 2976 51 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.94E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 940.0 189.186.41.207 5a895412-9183-45e7-92b4-8eb1e1f48f3f 2019-03-02 17:37:43.344732 2977 230 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.41.207 d9efad7a-dc15-44ee-8fe6-3864591f9aa3 2019-03-02 17:39:51.772148 2978 230 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.207 4b2ed03a-c939-4aa8-881c-15678ce93ee0 2019-03-02 17:39:54.934277 2979 12 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-03-02\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.41.207 1177cb46-0748-4b43-99a2-f9adb310c5dc 2019-03-02 17:39:59.709422 3002 189 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 d62457cf-1cf5-4b1e-af6a-1dccfd860b22 2019-03-02 19:03:48.050672 11281 98 Customer \N \N 2 User \N update ---\nstatus:\n- active\n- 0\n 2 \N 189.186.40.252 abfe6c29-b39c-466a-a058-5cb8cf6c79b7 2019-07-17 16:30:09.473253 2980 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-02-25 17:30:16.045775000 Z\n- &1 2019-03-02 01:05:02.545845000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-02 18:22:47.892846514 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537487\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537487\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 34\n- 35\n 70 \N 189.186.41.207 7c173933-551e-4ee7-beaa-9ce648f41eb8 2019-03-02 18:22:47.901939 2981 1 User \N \N 1 User \N update ---\nunique_session_id:\n- QSG9TW5txqfrJqBFatB6\n- BUG7zdgfAvyXvt1o7bm5\n 71 \N 189.186.41.207 7c173933-551e-4ee7-beaa-9ce648f41eb8 2019-03-02 18:22:47.91922 2982 274 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.207 1fb4a31c-4deb-4b73-b74e-c2828e39ece7 2019-03-02 18:23:58.8941 2983 274 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.207 7dee7016-4b73-491c-bd98-8eb187da1411 2019-03-02 18:24:02.405703 2984 13 Transfer \N \N 1 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-03-02\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.41.207 5fc5805b-9d21-4875-bf52-f1a065b75e93 2019-03-02 18:24:07.163791 2985 13 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-03-02\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.41.207 bc6514bb-cc1a-4289-b58f-bcee66a764e8 2019-03-02 18:24:25.416263 2986 507 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 276\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 bc6514bb-cc1a-4289-b58f-bcee66a764e8 2019-03-02 18:24:25.43735 2987 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-02 01:50:52.918704000 Z\n- &1 2019-03-02 01:50:55.684731000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-02 18:36:36.164817183 Z\nsign_in_count:\n- 50\n- 51\n 102 \N 189.186.41.207 726e5f79-be8e-4ffa-9f2c-2369c2fe6c46 2019-03-02 18:36:36.170905 2988 3 User \N \N 3 User \N update ---\nunique_session_id:\n- DWsW56PaMnMJUD6hsZ3G\n- zzvVSrtJqmeDhx-QgBs_\n 103 \N 189.186.41.207 726e5f79-be8e-4ffa-9f2c-2369c2fe6c46 2019-03-02 18:36:36.184532 2989 86 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.41.207 fd5af400-b423-4a9d-9e3f-cc17756f5e5e 2019-03-02 18:37:33.437338 2990 14 Transfer \N \N 1 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-03-02\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.41.207 881e09f7-4bc3-45fe-a8d3-fa8b615f56ce 2019-03-02 18:37:41.35947 2991 52 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.239E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 239.0 189.186.41.207 df882656-ba7a-4208-a685-9061c113afe4 2019-03-02 18:44:05.708139 2992 37 Customer \N \N 3 User \N create ---\nnick_name: JESSICA OLIVAS\nphone: "(667) 323-1063"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JESSICA OLIVAS fue registrado. 189.186.41.207 c9cd16a9-7139-4e3a-995f-f28c746391e6 2019-03-02 18:44:26.617255 2993 188 Sale \N \N 3 User \N create ---\ncustomer_id: 37\nuser_id: 3\nopen_cash_register_id: 52\namount: !ruby/object:BigDecimal 18:0.49052E3\ntax: !ruby/object:BigDecimal 18:0.7848E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-03-02\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-79\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 40c7200f-0b0a-4411-bd7c-26503f748a57 2019-03-02 18:47:08.719608 2994 275 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.41.207 40c7200f-0b0a-4411-bd7c-26503f748a57 2019-03-02 18:47:08.749716 2995 188 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 eb8ee6fb-7112-426f-8fae-1cb0ec43a4e4 2019-03-02 18:47:20.494326 2996 209 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 52\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 188\ncardnumber: 3510\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-79\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-79 189.186.41.207 eb8ee6fb-7112-426f-8fae-1cb0ec43a4e4 2019-03-02 18:47:20.533727 2997 209 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 52\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 188\ncardnumber: 3510\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-79\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.41.207 0d82cf55-61a6-4d92-b4c8-f66a80432e80 2019-03-02 18:47:24.360108 2998 210 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 52\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.459E3\nmove_type: '1'\nsale_id: 188\ncardnumber: 3510\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-79\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-79 189.186.41.207 31fc1ec2-0df7-4109-823c-08c86218b1a3 2019-03-02 18:47:33.199657 2999 211 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 52\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.11E3\nmove_type: '1'\nsale_id: 188\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-79\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-79 189.186.41.207 ef567013-e00e-4628-a6bb-bdb5cb870700 2019-03-02 18:47:38.219484 3000 189 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 52\namount: !ruby/object:BigDecimal 18:0.74914E3\ntax: !ruby/object:BigDecimal 18:0.11986E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-03-02\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-80\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 db78e782-9af4-4c52-b4ed-912ae5fdaa6f 2019-03-02 19:03:38.655791 3001 422 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.41.207 db78e782-9af4-4c52-b4ed-912ae5fdaa6f 2019-03-02 19:03:38.690709 3003 212 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 52\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.869E3\nmove_type: '1'\nsale_id: 189\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-80\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.131E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-80 189.186.41.207 d62457cf-1cf5-4b1e-af6a-1dccfd860b22 2019-03-02 19:03:48.074051 3004 190 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 51\namount: !ruby/object:BigDecimal 18:0.198E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.198E3\nstatus: 0\ndate_sale: 2019-03-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-108\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 548f09f6-7b72-4237-a78c-d5519e028ae2 2019-03-02 19:37:40.683924 3005 486 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.55E2\n- !ruby/object:BigDecimal 18:0.53E2\n 9 \N 189.186.41.207 548f09f6-7b72-4237-a78c-d5519e028ae2 2019-03-02 19:37:40.712326 3006 190 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 b5c07faa-abad-4e11-b0e9-4ce5549444f7 2019-03-02 19:37:47.206149 3007 213 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 51\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.198E3\nmove_type: '1'\nsale_id: 190\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-108\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.198E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-108 189.186.41.207 b5c07faa-abad-4e11-b0e9-4ce5549444f7 2019-03-02 19:37:47.228374 3008 10 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 51\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida\nexpense_date: 2019-03-02\nexpense_code: PV1-E-10\n 1 Egreso por 50.0 registrado 189.186.41.207 a2392787-eed1-4f07-8af8-6702e1a71693 2019-03-02 19:39:39.268771 3009 214 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 51\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 10\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 a2392787-eed1-4f07-8af8-6702e1a71693 2019-03-02 19:39:39.291948 3010 12 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-03-02\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.41.207 6d096b8d-8c92-48a5-9f36-bc012ebab3d8 2019-03-02 19:46:00.741175 3011 508 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 232\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 6d096b8d-8c92-48a5-9f36-bc012ebab3d8 2019-03-02 19:46:00.763757 3012 11 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-03-02\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.41.207 f079daae-d701-4ea9-aa1e-d62edc4b8966 2019-03-02 19:49:10.687548 3013 509 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 494\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.16E2\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 f079daae-d701-4ea9-aa1e-d62edc4b8966 2019-03-02 19:49:10.717659 3014 510 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 182\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 f079daae-d701-4ea9-aa1e-d62edc4b8966 2019-03-02 19:49:10.742972 3015 511 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 18\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 f079daae-d701-4ea9-aa1e-d62edc4b8966 2019-03-02 19:49:10.764973 3016 512 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 207\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 f079daae-d701-4ea9-aa1e-d62edc4b8966 2019-03-02 19:49:10.786155 3017 476 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.41.207 f079daae-d701-4ea9-aa1e-d62edc4b8966 2019-03-02 19:49:10.804085 3018 513 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 72\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 f079daae-d701-4ea9-aa1e-d62edc4b8966 2019-03-02 19:49:10.824607 3019 514 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 155\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 f079daae-d701-4ea9-aa1e-d62edc4b8966 2019-03-02 19:49:10.850535 3020 515 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 253\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 f079daae-d701-4ea9-aa1e-d62edc4b8966 2019-03-02 19:49:10.874974 3021 516 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 7\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 f079daae-d701-4ea9-aa1e-d62edc4b8966 2019-03-02 19:49:10.905712 3022 517 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 181\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 f079daae-d701-4ea9-aa1e-d62edc4b8966 2019-03-02 19:49:10.93515 3023 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-03-02 01:05:02.545845000 Z\n- &1 2019-03-02 18:22:47.892846000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-02 20:22:02.120099756 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537487\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 35\n- 36\n 72 \N 189.186.41.207 67990e4d-3b1b-4152-a4c8-8c95368eaf49 2019-03-02 20:22:02.12727 3024 1 User \N \N 1 User \N update ---\nunique_session_id:\n- BUG7zdgfAvyXvt1o7bm5\n- 8Z--A2WFx4uqUj2SiHuw\n 73 \N 189.186.41.207 67990e4d-3b1b-4152-a4c8-8c95368eaf49 2019-03-02 20:22:02.143159 3050 51 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 f572dd1b-3bf7-451e-9e45-b5666c9a0bab 2019-03-03 01:49:17.315708 3025 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-02 01:07:20.693000000 Z\n- &1 2019-03-02 01:13:40.658248000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-02 20:57:01.216151749 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539421\n mask_addr: 4294967295\nsign_in_count:\n- 66\n- 67\n 134 \N 177.228.117.29 a2cb8dc9-726d-46d8-9e7f-6b49889f8da6 2019-03-02 20:57:01.225844 3026 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9eEseKYKmdSxnBweGG6D\n- h5gSLs7tr95xX1zCsKPp\n 135 \N 177.228.117.29 a2cb8dc9-726d-46d8-9e7f-6b49889f8da6 2019-03-02 20:57:01.244964 3027 191 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 51\namount: !ruby/object:BigDecimal 18:0.41293E3\ntax: !ruby/object:BigDecimal 18:0.6607E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-03-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-109\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 15255a39-6106-4807-ab18-2e4e7c3ed5ad 2019-03-02 21:35:45.50358 3028 149 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 189.186.41.207 15255a39-6106-4807-ab18-2e4e7c3ed5ad 2019-03-02 21:35:45.539992 3029 191 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 3cf7b7bb-316f-4e8d-8d59-f8b78c2bd2b4 2019-03-02 21:35:50.152988 3030 215 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 51\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.479E3\nmove_type: '1'\nsale_id: 191\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-109\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.479E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-109 189.186.41.207 3cf7b7bb-316f-4e8d-8d59-f8b78c2bd2b4 2019-03-02 21:35:50.185673 3031 216 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 51\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.199E3\nmove_type: '1'\nsale_id: 64\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.199E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-36 189.186.41.207 1a6f4c39-2ed8-4263-abb5-e75501c51e41 2019-03-02 21:41:40.835909 3032 64 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.207 1b5b94bd-8997-4132-a5f5-5c5849dc158e 2019-03-02 21:41:43.533485 3033 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-01 23:35:52.818544000 Z\n- &1 2019-03-02 01:31:58.588666000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-02 22:11:28.420973403 Z\nsign_in_count:\n- 6\n- 7\n 14 \N 189.186.41.207 2f39f1c0-eeaa-478e-a854-b7d0e17c517f 2019-03-02 22:11:28.427105 3034 12 User \N \N 12 User \N update ---\nunique_session_id:\n- MDgiosxJPRksqCkXL-uZ\n- CLdQn5hXmXxnH9B9stJG\n 15 \N 189.186.41.207 2f39f1c0-eeaa-478e-a854-b7d0e17c517f 2019-03-02 22:11:28.441225 3035 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-02 01:50:55.684731000 Z\n- &1 2019-03-02 18:36:36.164817000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-02 22:12:39.418373833 Z\nsign_in_count:\n- 51\n- 52\n 104 \N 189.186.41.207 4f6440cb-00d6-4f93-9da5-0d9ed0a851e7 2019-03-02 22:12:39.424355 3036 3 User \N \N 3 User \N update ---\nunique_session_id:\n- zzvVSrtJqmeDhx-QgBs_\n- 6ZyypFzMxQjMN2Bnqr9v\n 105 \N 189.186.41.207 4f6440cb-00d6-4f93-9da5-0d9ed0a851e7 2019-03-02 22:12:39.439229 3037 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-02 01:31:58.588666000 Z\n- &1 2019-03-02 22:11:28.420973000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-02 22:17:33.161052980 Z\nsign_in_count:\n- 7\n- 8\n 16 \N 189.186.41.207 b5adb180-8ea5-4a4e-bc29-e0d3140d1f01 2019-03-02 22:17:33.167309 3038 12 User \N \N 12 User \N update ---\nunique_session_id:\n- CLdQn5hXmXxnH9B9stJG\n- bxtJLx15DHmedx2BRRkd\n 17 \N 189.186.41.207 b5adb180-8ea5-4a4e-bc29-e0d3140d1f01 2019-03-02 22:17:33.181969 3039 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-02 18:36:36.164817000 Z\n- &1 2019-03-02 22:12:39.418373000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-02 23:08:35.891661821 Z\nsign_in_count:\n- 52\n- 53\n 106 \N 189.186.41.207 fb157641-584e-443c-98be-f1b6b40e0db5 2019-03-02 23:08:35.898004 3040 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 6ZyypFzMxQjMN2Bnqr9v\n- F34gwUxA28ZNfADMKXRQ\n 107 \N 189.186.41.207 fb157641-584e-443c-98be-f1b6b40e0db5 2019-03-02 23:08:35.915729 3041 192 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 52\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-03-02\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-81\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 de474a44-dfef-49f0-8429-8e02124b9ea5 2019-03-02 23:09:13.002862 3042 391 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.41.207 de474a44-dfef-49f0-8429-8e02124b9ea5 2019-03-02 23:09:13.031546 3043 192 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 74a80ac5-9787-4228-bdee-805f08be7e1d 2019-03-02 23:09:17.216684 3044 217 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 52\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 192\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-81\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-81 189.186.41.207 74a80ac5-9787-4228-bdee-805f08be7e1d 2019-03-02 23:09:17.250295 3045 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-02 22:11:28.420973000 Z\n- &1 2019-03-02 22:17:33.161052000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-03 01:25:10.866412636 Z\nsign_in_count:\n- 8\n- 9\n 18 \N 189.186.41.207 75ea9938-58b6-450c-ae8a-db1fd0c44e37 2019-03-03 01:25:10.899554 3046 12 User \N \N 12 User \N update ---\nunique_session_id:\n- bxtJLx15DHmedx2BRRkd\n- xP6uARg3T9787MQfj5MK\n 19 \N 189.186.41.207 75ea9938-58b6-450c-ae8a-db1fd0c44e37 2019-03-03 01:25:10.931214 3047 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-02 22:12:39.418373000 Z\n- &1 2019-03-02 23:08:35.891661000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-03 01:38:52.451135297 Z\nsign_in_count:\n- 53\n- 54\n 108 \N 189.186.41.207 1a3e6dc6-5a3b-4efb-b3c6-5b0531a9fdeb 2019-03-03 01:38:52.459798 3048 3 User \N \N 3 User \N update ---\nunique_session_id:\n- F34gwUxA28ZNfADMKXRQ\n- 23fXgWrxyxLKsxmyiwsB\n 109 \N 189.186.41.207 1a3e6dc6-5a3b-4efb-b3c6-5b0531a9fdeb 2019-03-03 01:38:52.478465 3049 49 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 51\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.876E3\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.766E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1766E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 f572dd1b-3bf7-451e-9e45-b5666c9a0bab 2019-03-03 01:49:17.272665 3051 50 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 52\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.2337E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.1878E4\ncash_fund: !ruby/object:BigDecimal 18:0.239E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2117E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 c49a7aa1-4f7a-4759-9cb9-9c7659c19778 2019-03-03 01:49:47.030693 3052 52 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 c49a7aa1-4f7a-4759-9cb9-9c7659c19778 2019-03-03 01:49:47.060119 3053 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-02 22:17:33.161052000 Z\n- &1 2019-03-03 01:25:10.866412000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-03 18:30:38.318510598 Z\nsign_in_count:\n- 9\n- 10\n 20 \N 189.186.41.207 3914eaa2-e446-43c6-8d09-c109927aed28 2019-03-03 18:30:38.347712 3054 12 User \N \N 12 User \N update ---\nunique_session_id:\n- xP6uARg3T9787MQfj5MK\n- TwFwUsf93AxzyzS7UdFN\n 21 \N 189.186.41.207 3914eaa2-e446-43c6-8d09-c109927aed28 2019-03-03 18:30:38.368213 3055 53 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.766E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 766.0 189.186.41.207 7793602f-18f6-4bcf-8502-2948709e6537 2019-03-03 18:32:53.574135 3056 193 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 53\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-03-03\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-110\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 fd405157-41b1-4326-a631-5b1f2dbe211d 2019-03-03 18:33:08.922758 3057 146 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.207 fd405157-41b1-4326-a631-5b1f2dbe211d 2019-03-03 18:33:08.950673 3058 193 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 4f5b9ad2-4483-4517-8d6a-5b11165aa7e5 2019-03-03 18:38:55.309112 3059 218 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 53\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 193\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-110\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-110 189.186.41.207 4f5b9ad2-4483-4517-8d6a-5b11165aa7e5 2019-03-03 18:38:55.343333 3060 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-02-28 16:55:35.638647000 Z\n- &1 2019-03-01 17:07:58.599098000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-03 18:48:47.066636927 Z\nsign_in_count:\n- 7\n- 8\n 16 \N 189.186.41.207 5cfb7eb7-e575-4a64-a8e1-cd802032ffe1 2019-03-03 18:48:47.095852 3061 11 User \N \N 11 User \N update ---\nunique_session_id:\n- Ro9Xk2SqWoyLFM1-ojU7\n- 8NecTLPPb_yyrDJMyM-r\n 17 \N 189.186.41.207 5cfb7eb7-e575-4a64-a8e1-cd802032ffe1 2019-03-03 18:48:47.116935 3062 54 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.239E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 239.0 189.186.41.207 8c62e6d8-a0e3-4c5b-8372-024f7e4bac76 2019-03-03 18:48:59.303562 3063 194 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 54\namount: !ruby/object:BigDecimal 18:0.53362E3\ntax: !ruby/object:BigDecimal 18:0.8538E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.619E3\nstatus: 0\ndate_sale: 2019-03-03\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-82\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 7291f86d-2fe6-47b9-a0e3-6a9866355d50 2019-03-03 18:53:09.131388 3064 330 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 5 \N 189.186.41.207 7291f86d-2fe6-47b9-a0e3-6a9866355d50 2019-03-03 18:53:09.177511 3065 194 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 ab2907ea-cb3f-402e-9c2d-0124e16153aa 2019-03-03 18:53:40.511838 3066 219 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 54\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.619E3\nmove_type: '1'\nsale_id: 194\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-82\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.619E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-82 189.186.41.207 ab2907ea-cb3f-402e-9c2d-0124e16153aa 2019-03-03 18:53:40.535434 3067 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-02 23:08:35.891661000 Z\n- &1 2019-03-03 01:38:52.451135000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-03 18:58:18.502828230 Z\nsign_in_count:\n- 54\n- 55\n 110 \N 189.186.41.207 093f4747-a4e4-4b4b-9178-87b6116beabd 2019-03-03 18:58:18.510754 3068 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 23fXgWrxyxLKsxmyiwsB\n- Fy5-D8p3B5YJc8xd5B1n\n 111 \N 189.186.41.207 093f4747-a4e4-4b4b-9178-87b6116beabd 2019-03-03 18:58:18.527247 3069 195 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 54\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-03-03\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-83\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 12eef67b-a2ba-439e-b062-0346d6fa883b 2019-03-03 19:07:39.781019 3070 324 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.41.207 12eef67b-a2ba-439e-b062-0346d6fa883b 2019-03-03 19:07:39.817304 3071 195 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 047acc05-56e6-45d4-8184-e5d9093e6b24 2019-03-03 19:07:49.093237 3072 220 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 54\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 195\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-83\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-83 189.186.41.207 047acc05-56e6-45d4-8184-e5d9093e6b24 2019-03-03 19:07:49.124812 3073 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-03 01:25:10.866412000 Z\n- &1 2019-03-03 18:30:38.318510000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-03 19:12:37.921811077 Z\nsign_in_count:\n- 10\n- 11\n 22 \N 189.186.41.207 84c81305-db50-4663-916f-34197254916f 2019-03-03 19:12:37.929702 3074 12 User \N \N 12 User \N update ---\nunique_session_id:\n- TwFwUsf93AxzyzS7UdFN\n- u8_72ZciMrMGLWFxW4_E\n 23 \N 189.186.41.207 84c81305-db50-4663-916f-34197254916f 2019-03-03 19:12:37.947463 15880 1099 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.60.121 bf497a4d-4fa6-42e6-9a67-f056b01c92fd 2019-09-15 00:01:22.732958 3075 196 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 53\namount: !ruby/object:BigDecimal 18:0.107586E4\ntax: !ruby/object:BigDecimal 18:0.17214E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1248E4\nstatus: 0\ndate_sale: 2019-03-03\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-111\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 f42a1033-2ee2-45cf-95b7-768ac1040080 2019-03-03 19:13:09.113027 3076 197 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 189.186.41.207 f42a1033-2ee2-45cf-95b7-768ac1040080 2019-03-03 19:13:09.149649 3077 151 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.41.207 f42a1033-2ee2-45cf-95b7-768ac1040080 2019-03-03 19:13:09.184084 3078 196 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 fefca801-fc17-40ed-b959-31744a27457e 2019-03-03 19:14:16.374096 3079 221 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 53\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1248E4\nmove_type: '1'\nsale_id: 196\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-111\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.252E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-111 189.186.41.207 fefca801-fc17-40ed-b959-31744a27457e 2019-03-03 19:14:16.397736 3080 197 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 54\namount: !ruby/object:BigDecimal 18:0.53362E3\ntax: !ruby/object:BigDecimal 18:0.8538E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.619E3\nstatus: 0\ndate_sale: 2019-03-03\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-84\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 917e3fde-221f-42f1-8c61-748084420ceb 2019-03-03 19:17:37.871411 3081 330 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 189.186.41.207 917e3fde-221f-42f1-8c61-748084420ceb 2019-03-03 19:17:37.906491 3082 197 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 483a17ed-81c4-4af4-b8ec-52ea07291be6 2019-03-03 19:17:43.019251 3083 222 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 54\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.619E3\nmove_type: '1'\nsale_id: 197\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-84\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.619E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-84 189.186.41.207 483a17ed-81c4-4af4-b8ec-52ea07291be6 2019-03-03 19:17:43.045535 3084 198 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 54\namount: !ruby/object:BigDecimal 18:0.163707E4\ntax: !ruby/object:BigDecimal 18:0.26193E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2019-03-03\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-85\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 0393afdc-76e6-4c70-bb5b-39f4a9ecaaf8 2019-03-03 19:18:22.308182 3085 385 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 1 \N 189.186.41.207 0393afdc-76e6-4c70-bb5b-39f4a9ecaaf8 2019-03-03 19:18:22.348912 3086 198 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 b0c14d6f-02a1-4e42-944e-9b56afa75b13 2019-03-03 19:18:28.156333 3087 223 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 54\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1899E4\nmove_type: '1'\nsale_id: 198\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-85\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1899E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-85 189.186.41.207 b0c14d6f-02a1-4e42-944e-9b56afa75b13 2019-03-03 19:18:28.189674 3088 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-03 01:38:52.451135000 Z\n- &1 2019-03-03 18:58:18.502828000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-03 19:32:09.507973931 Z\nsign_in_count:\n- 55\n- 56\n 112 \N 189.186.41.207 58616d6f-86ef-4037-bf50-54edf5591640 2019-03-03 19:32:09.51468 3089 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Fy5-D8p3B5YJc8xd5B1n\n- 54Wyge-_HPkuLGMC75jU\n 113 \N 189.186.41.207 58616d6f-86ef-4037-bf50-54edf5591640 2019-03-03 19:32:09.52921 3090 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-03 18:30:38.318510000 Z\n- &1 2019-03-03 19:12:37.921811000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-03 19:33:29.253474367 Z\nsign_in_count:\n- 11\n- 12\n 24 \N 189.186.41.207 9ea28802-d573-4d76-97fd-58145c9e3e1f 2019-03-03 19:33:29.261235 3091 12 User \N \N 12 User \N update ---\nunique_session_id:\n- u8_72ZciMrMGLWFxW4_E\n- MierB2MbbnMy9LeWRy2L\n 25 \N 189.186.41.207 9ea28802-d573-4d76-97fd-58145c9e3e1f 2019-03-03 19:33:29.279716 3092 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-02 01:13:40.658248000 Z\n- &1 2019-03-02 20:57:01.216151000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-03 20:04:46.843962485 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539421\n mask_addr: 4294967295\nsign_in_count:\n- 67\n- 68\n 136 \N 177.228.117.29 e45dfabd-e522-48e0-ac63-d219e664360e 2019-03-03 20:04:46.85059 3093 4 User \N \N 4 User \N update ---\nunique_session_id:\n- h5gSLs7tr95xX1zCsKPp\n- 9tZojxKJQ3NyjRy4FS9E\n 137 \N 177.228.117.29 e45dfabd-e522-48e0-ac63-d219e664360e 2019-03-03 20:04:46.866552 3094 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-03 18:58:18.502828000 Z\n- &1 2019-03-03 19:32:09.507973000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-03 20:20:42.377115870 Z\nsign_in_count:\n- 56\n- 57\n 114 \N 189.186.41.207 e1099ebb-7625-4c8a-8d0d-934a4d0dcd33 2019-03-03 20:20:42.385747 3095 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 54Wyge-_HPkuLGMC75jU\n- 5bBfuf-31-ehi4pDiy8B\n 115 \N 189.186.41.207 e1099ebb-7625-4c8a-8d0d-934a4d0dcd33 2019-03-03 20:20:42.407166 3096 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-03 19:12:37.921811000 Z\n- &1 2019-03-03 19:33:29.253474000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-03 20:45:37.549545467 Z\nsign_in_count:\n- 12\n- 13\n 26 \N 189.186.41.207 30b2ca7f-0af5-4987-b32d-f2b10ac128d9 2019-03-03 20:45:37.555265 3097 12 User \N \N 12 User \N update ---\nunique_session_id:\n- MierB2MbbnMy9LeWRy2L\n- bJ3_J3s3UvyA9Hd8Lkes\n 27 \N 189.186.41.207 30b2ca7f-0af5-4987-b32d-f2b10ac128d9 2019-03-03 20:45:37.56947 3098 199 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 53\namount: !ruby/object:BigDecimal 18:0.272846E4\ntax: !ruby/object:BigDecimal 18:0.43654E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3165E4\nstatus: 0\ndate_sale: 2019-03-03\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-112\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 8182a93f-a178-42e8-accf-cdc0649054b1 2019-03-03 20:58:27.850134 3099 139 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.41.207 8182a93f-a178-42e8-accf-cdc0649054b1 2019-03-03 20:58:27.895023 3100 141 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.41.207 8182a93f-a178-42e8-accf-cdc0649054b1 2019-03-03 20:58:27.931152 3101 177 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.41.207 8182a93f-a178-42e8-accf-cdc0649054b1 2019-03-03 20:58:27.970031 3102 176 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.41.207 8182a93f-a178-42e8-accf-cdc0649054b1 2019-03-03 20:58:28.005674 3103 211 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 8182a93f-a178-42e8-accf-cdc0649054b1 2019-03-03 20:58:28.040034 3104 199 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 ee048d71-b9dc-4310-bb47-bc059b968121 2019-03-03 20:59:11.661422 3105 224 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 53\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3165E4\nmove_type: '1'\nsale_id: 199\ncardnumber: 5045\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-112\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-112 189.186.41.207 ee048d71-b9dc-4310-bb47-bc059b968121 2019-03-03 20:59:11.68502 3106 200 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 54\namount: !ruby/object:BigDecimal 18:0.273706E4\ntax: !ruby/object:BigDecimal 18:0.43794E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3175E4\nstatus: 0\ndate_sale: 2019-03-03\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-86\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 21785e68-04cb-411c-bb26-bf217e55ae04 2019-03-03 21:07:35.392061 3107 517 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 21785e68-04cb-411c-bb26-bf217e55ae04 2019-03-03 21:07:35.440166 3108 325 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.41.207 21785e68-04cb-411c-bb26-bf217e55ae04 2019-03-03 21:07:35.474277 3109 419 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 21785e68-04cb-411c-bb26-bf217e55ae04 2019-03-03 21:07:35.499104 3110 200 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-86 cancelada. 189.186.41.207 0148541c-c359-4ebb-923f-b193048a0b0b 2019-03-03 21:07:58.757004 3111 517 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.41.207 0148541c-c359-4ebb-923f-b193048a0b0b 2019-03-03 21:07:58.794552 3112 325 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.41.207 0148541c-c359-4ebb-923f-b193048a0b0b 2019-03-03 21:07:58.822418 3113 419 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.41.207 0148541c-c359-4ebb-923f-b193048a0b0b 2019-03-03 21:07:58.844222 3114 201 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 54\namount: !ruby/object:BigDecimal 18:0.171293E4\ntax: !ruby/object:BigDecimal 18:0.27407E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1987E4\nstatus: 0\ndate_sale: 2019-03-03\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-87\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 842d5ac5-b2a1-4949-80e1-b621a530bbd7 2019-03-03 21:10:00.879596 3115 419 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.41.207 842d5ac5-b2a1-4949-80e1-b621a530bbd7 2019-03-03 21:10:00.916439 3116 325 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.41.207 842d5ac5-b2a1-4949-80e1-b621a530bbd7 2019-03-03 21:10:00.950204 3117 517 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.41.207 842d5ac5-b2a1-4949-80e1-b621a530bbd7 2019-03-03 21:10:00.985787 3118 201 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 00f64a62-acb5-4892-b964-b0e6acd91cdc 2019-03-03 21:11:38.427431 3119 225 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 54\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1987E4\nmove_type: '1'\nsale_id: 201\ncardnumber: 7347\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-87\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-87 189.186.41.207 00f64a62-acb5-4892-b964-b0e6acd91cdc 2019-03-03 21:11:38.461808 3120 202 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 54\namount: !ruby/object:BigDecimal 18:0.16897E3\ntax: !ruby/object:BigDecimal 18:0.2704E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.19601E3\nstatus: 0\ndate_sale: 2019-03-03\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-88\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 fc657868-cabf-417a-87ca-224158616c45 2019-03-03 21:14:05.092503 3121 367 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.19E2\n- !ruby/object:BigDecimal 18:0.15E2\n 2 \N 189.186.41.207 fc657868-cabf-417a-87ca-224158616c45 2019-03-03 21:14:05.130892 3122 202 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 8b0036a2-9201-47cc-b6be-0e93d6617df0 2019-03-03 21:14:12.622743 3123 226 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 54\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.196E3\nmove_type: '1'\nsale_id: 202\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-88\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.196E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-88 189.186.41.207 8b0036a2-9201-47cc-b6be-0e93d6617df0 2019-03-03 21:14:12.657405 3124 227 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 54\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E-1\nmove_type: '1'\nsale_id: 202\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-88\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.196E3\nchange: !ruby/object:BigDecimal 18:0.19599E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-88 189.186.41.207 60931606-6052-4351-9ca7-51507533a85e 2019-03-03 21:14:35.148917 3125 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-03 19:32:09.507973000 Z\n- &1 2019-03-03 20:20:42.377115000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-03 21:16:35.510051084 Z\nsign_in_count:\n- 57\n- 58\n 116 \N 189.186.41.207 2f861e8c-c7cd-4aa8-bd37-c1684861dff7 2019-03-03 21:16:35.517113 3126 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 5bBfuf-31-ehi4pDiy8B\n- yUkg3tyBrGjn46kCHZr1\n 117 \N 189.186.41.207 2f861e8c-c7cd-4aa8-bd37-c1684861dff7 2019-03-03 21:16:35.530784 3127 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-03 19:33:29.253474000 Z\n- &1 2019-03-03 20:45:37.549545000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-03 21:21:25.427898122 Z\nsign_in_count:\n- 13\n- 14\n 28 \N 189.186.41.207 e62f5b15-4d75-4612-8c81-b7cd12c66160 2019-03-03 21:21:25.435956 3128 12 User \N \N 12 User \N update ---\nunique_session_id:\n- bJ3_J3s3UvyA9Hd8Lkes\n- kcobfas8WrEd98-tTGAz\n 29 \N 189.186.41.207 e62f5b15-4d75-4612-8c81-b7cd12c66160 2019-03-03 21:21:25.452049 3129 51 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 54\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.581901E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.37E4\ncash_fund: !ruby/object:BigDecimal 18:0.371E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4071E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 03072a11-a466-44f8-888d-d1d5db5e462d 2019-03-03 21:42:31.983009 3130 54 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 03072a11-a466-44f8-888d-d1d5db5e462d 2019-03-03 21:42:32.003399 3131 52 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 53\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.4882E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.2217E4\ncash_fund: !ruby/object:BigDecimal 18:0.766E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2983E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 f9e86f51-5ba5-4096-a9d5-50b16c3460bf 2019-03-03 21:56:15.225458 3132 53 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 f9e86f51-5ba5-4096-a9d5-50b16c3460bf 2019-03-03 21:56:15.243462 3133 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-03 20:20:42.377115000 Z\n- &1 2019-03-03 21:16:35.510051000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-03 22:01:24.388755495 Z\nsign_in_count:\n- 58\n- 59\n 118 \N 189.186.41.207 dcfb6cc0-3d77-4513-9559-a1cd9c779994 2019-03-03 22:01:24.3956 3134 3 User \N \N 3 User \N update ---\nunique_session_id:\n- yUkg3tyBrGjn46kCHZr1\n- w-f-Q6CCABfQFz5g5Qdy\n 119 \N 189.186.41.207 dcfb6cc0-3d77-4513-9559-a1cd9c779994 2019-03-03 22:01:24.41187 3135 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-02 01:46:12.734955000 Z\n- &1 2019-03-02 17:05:15.077230000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-04 16:31:45.435118607 Z\nsign_in_count:\n- 32\n- 33\n 69 \N 189.186.41.207 01c11097-27cc-4ec7-88e9-b910d31eab5d 2019-03-04 16:31:45.473176 3136 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xzqQ9uybjMgcetuSVGtz\n- qBrHiKGE_a2ce7mrQpj6\n 70 \N 189.186.41.207 01c11097-27cc-4ec7-88e9-b910d31eab5d 2019-03-04 16:31:45.500305 3137 55 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.766E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 766.0 189.186.41.207 c5dc7fb8-e4a2-4119-9566-d7658f7fae5c 2019-03-04 16:33:24.480033 3138 38 Customer \N \N 2 User \N create ---\nnick_name: EDNA AMIGA ROCIO\nphone: ''\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.1E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente EDNA AMIGA ROCIO fue registrado. 189.186.41.207 ce694ea2-ddac-4b67-a4f9-8eb1fabca4ce 2019-03-04 16:34:22.304036 3139 203 Sale \N \N 2 User \N create ---\ncustomer_id: 38\nuser_id: 2\nopen_cash_register_id: 55\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-03-04\nsaletype: 0\nseller_id: 1\nsale_code: PV1-V-113\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 b8a2ff34-8e28-49c8-b619-ffa4c2c2b741 2019-03-04 16:35:47.335575 3140 471 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.207 b8a2ff34-8e28-49c8-b619-ffa4c2c2b741 2019-03-04 16:35:47.378483 3141 228 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 55\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 203\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 c5300e3c-78f1-4e6e-8fe7-c8a8e78ecd8f 2019-03-04 16:36:36.715 3142 203 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 c5300e3c-78f1-4e6e-8fe7-c8a8e78ecd8f 2019-03-04 16:36:36.74237 3143 228 CashRegistersMove \N \N 2 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV1-V-113 189.186.41.207 c5300e3c-78f1-4e6e-8fe7-c8a8e78ecd8f 2019-03-04 16:36:36.753744 3144 56 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.371E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 371.0 189.186.41.207 84dcf8a9-a01c-410d-a507-d4e7ba43079a 2019-03-04 17:03:51.412027 3145 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-03-02 18:22:47.892846000 Z\n- &1 2019-03-02 20:22:02.120099000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-04 17:11:07.159286041 Z\nsign_in_count:\n- 36\n- 37\n 74 \N 189.186.41.207 7fa8f2a5-e2b3-498f-8490-640eb8cc8c2f 2019-03-04 17:11:07.16563 3146 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 8Z--A2WFx4uqUj2SiHuw\n- QA5y7TvVMFm79eAtjL85\n 75 \N 189.186.41.207 7fa8f2a5-e2b3-498f-8490-640eb8cc8c2f 2019-03-04 17:11:07.179578 3147 514 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.41.207 b0453a11-ef55-4aaa-8970-14384f24feb7 2019-03-04 17:11:57.71996 3148 514 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.207 c8b01374-ce2e-412c-bdac-71ad25ff82e3 2019-03-04 17:12:02.330345 3149 15 Transfer \N \N 1 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-03-04\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.41.207 c58aa93c-2b0a-4a6e-9661-4a9eb2b1e40e 2019-03-04 17:12:04.47777 3150 15 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-03-04\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.41.207 dd8deedd-89e2-4aa7-bd06-12e474fff4d5 2019-03-04 17:12:37.594842 3151 153 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.41.207 dd8deedd-89e2-4aa7-bd06-12e474fff4d5 2019-03-04 17:12:37.621564 3152 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-02 20:57:01.216151000 Z\n- &1 2019-03-03 20:04:46.843962000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-04 21:11:35.374544547 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539421\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934225\n mask_addr: 4294967295\nsign_in_count:\n- 68\n- 69\n 138 \N 200.68.135.17 6d78582f-dd75-4160-9ad9-f2ced1e98ec8 2019-03-04 21:11:35.383975 3153 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9tZojxKJQ3NyjRy4FS9E\n- xhinsTQ1W4L8a_2ACxyw\n 139 \N 200.68.135.17 6d78582f-dd75-4160-9ad9-f2ced1e98ec8 2019-03-04 21:11:35.406054 3154 204 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 56\namount: !ruby/object:BigDecimal 18:0.54224E3\ntax: !ruby/object:BigDecimal 18:0.8676E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.629E3\nstatus: 0\ndate_sale: 2019-03-04\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-89\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 cd46a8f3-ace6-4700-888b-f16e06e8e953 2019-03-04 22:58:54.385449 3155 287 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 189.186.41.207 cd46a8f3-ace6-4700-888b-f16e06e8e953 2019-03-04 22:58:54.422436 3156 204 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 cdfc44a8-3131-47d7-833e-5701e7fe721f 2019-03-04 22:59:01.557071 3157 229 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 56\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.629E3\nmove_type: '1'\nsale_id: 204\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-89\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.629E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-89 189.186.41.207 cdfc44a8-3131-47d7-833e-5701e7fe721f 2019-03-04 22:59:01.582209 3158 39 Customer \N \N 2 User \N create ---\nnick_name: TANIA AMIGA PALOMA\nphone: "(667) 746-9640"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.15E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente TANIA AMIGA PALOMA fue registrado. 189.186.41.207 4fb5fa8c-69ac-41df-92e4-c02193aac17c 2019-03-05 00:26:36.049367 3159 205 Sale \N \N 2 User \N create ---\ncustomer_id: 39\nuser_id: 2\nopen_cash_register_id: 55\namount: !ruby/object:BigDecimal 18:0.92069E3\ntax: !ruby/object:BigDecimal 18:0.14731E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1068E4\nstatus: 0\ndate_sale: 2019-03-04\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-114\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 e945fb56-4a7e-4662-9c5f-a1d12ea187ae 2019-03-05 00:28:09.688257 3160 146 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.41.207 e945fb56-4a7e-4662-9c5f-a1d12ea187ae 2019-03-05 00:28:09.752997 3161 135 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.41.207 e945fb56-4a7e-4662-9c5f-a1d12ea187ae 2019-03-05 00:28:09.801451 3162 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-03-01 23:46:37.537712000 Z\n- &1 2019-03-02 00:37:52.856021000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-05 00:30:34.698793197 Z\nsign_in_count:\n- 27\n- 28\n 56 \N 189.186.41.207 aefb51e9-a931-44f7-bf88-2811e3de3afe 2019-03-05 00:30:34.708445 3163 10 User \N \N 10 User \N update ---\nunique_session_id:\n- QpQVMhxfUbWVBRbGBpzU\n- nCQU88vj2y2ALiAts-si\n 57 \N 189.186.41.207 aefb51e9-a931-44f7-bf88-2811e3de3afe 2019-03-05 00:30:34.724549 3164 206 Sale \N \N 10 User \N create ---\ncustomer_id: 39\nuser_id: 10\nopen_cash_register_id: 56\namount: !ruby/object:BigDecimal 18:0.357327E4\ntax: !ruby/object:BigDecimal 18:0.57173E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4145E4\nstatus: 0\ndate_sale: 2019-03-04\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-90\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 583035c8-76a1-4041-a15e-0fb44d4e202f 2019-03-05 00:37:05.627666 3165 328 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.41.207 583035c8-76a1-4041-a15e-0fb44d4e202f 2019-03-05 00:37:05.679305 3166 430 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.41.207 583035c8-76a1-4041-a15e-0fb44d4e202f 2019-03-05 00:37:05.711246 3167 511 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.41.207 583035c8-76a1-4041-a15e-0fb44d4e202f 2019-03-05 00:37:05.745035 3168 396 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 1 \N 189.186.41.207 583035c8-76a1-4041-a15e-0fb44d4e202f 2019-03-05 00:37:05.778662 3169 386 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 189.186.41.207 583035c8-76a1-4041-a15e-0fb44d4e202f 2019-03-05 00:37:05.817235 3170 206 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-90 cancelada. 189.186.41.207 82e2394a-0ca9-4fa7-8662-4dc444dbc7ec 2019-03-05 00:37:12.586535 3171 386 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 82e2394a-0ca9-4fa7-8662-4dc444dbc7ec 2019-03-05 00:37:12.619234 3172 396 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 2 \N 189.186.41.207 82e2394a-0ca9-4fa7-8662-4dc444dbc7ec 2019-03-05 00:37:12.643269 3173 511 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.41.207 82e2394a-0ca9-4fa7-8662-4dc444dbc7ec 2019-03-05 00:37:12.665496 3174 430 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.41.207 82e2394a-0ca9-4fa7-8662-4dc444dbc7ec 2019-03-05 00:37:12.690743 3175 328 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.41.207 82e2394a-0ca9-4fa7-8662-4dc444dbc7ec 2019-03-05 00:37:12.717165 3176 207 Sale \N \N 10 User \N create ---\ncustomer_id: 39\nuser_id: 10\nopen_cash_register_id: 56\namount: !ruby/object:BigDecimal 18:0.357327E4\ntax: !ruby/object:BigDecimal 18:0.57173E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4145E4\nstatus: 0\ndate_sale: 2019-03-04\nsaletype: 0\nseller_id: 7\nsale_code: PV2-V-91\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 abe1560a-59ab-4aab-a8fe-0c8782ca3f8d 2019-03-05 00:38:34.462318 3177 396 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.41.207 abe1560a-59ab-4aab-a8fe-0c8782ca3f8d 2019-03-05 00:38:34.491008 3178 511 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.41.207 abe1560a-59ab-4aab-a8fe-0c8782ca3f8d 2019-03-05 00:38:34.516238 3179 430 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.41.207 abe1560a-59ab-4aab-a8fe-0c8782ca3f8d 2019-03-05 00:38:34.543405 3180 328 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.41.207 abe1560a-59ab-4aab-a8fe-0c8782ca3f8d 2019-03-05 00:38:34.566491 3181 385 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.41.207 abe1560a-59ab-4aab-a8fe-0c8782ca3f8d 2019-03-05 00:38:34.591094 3182 230 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 55\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E4\nmove_type: '1'\nsale_id: 205\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 cfa1e3aa-77ba-4a61-bb8d-68050d5e7efb 2019-03-05 00:41:52.621896 3183 205 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 cfa1e3aa-77ba-4a61-bb8d-68050d5e7efb 2019-03-05 00:41:52.645788 3184 207 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 cfa1e3aa-77ba-4a61-bb8d-68050d5e7efb 2019-03-05 00:41:52.671641 3185 230 CashRegistersMove \N \N 10 User \N update ---\nopen_cash_register_id:\n- 55\n- 56\n 2 movimiento de efectivo por venta con folio PV1-V-114 189.186.41.207 cfa1e3aa-77ba-4a61-bb8d-68050d5e7efb 2019-03-05 00:41:52.687319 3186 208 Sale \N \N 10 User \N create ---\ncustomer_id: 29\nuser_id: 10\nopen_cash_register_id: 56\namount: !ruby/object:BigDecimal 18:0.191983E4\ntax: !ruby/object:BigDecimal 18:0.30717E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2227E4\nstatus: 0\ndate_sale: 2019-03-04\nsaletype: 0\nseller_id: 4\nsale_code: PV2-V-92\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 94522ea0-fb94-4546-9424-1455a4aaae59 2019-03-05 00:51:18.403833 3187 512 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 94522ea0-fb94-4546-9424-1455a4aaae59 2019-03-05 00:51:18.44079 3188 435 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.41.207 94522ea0-fb94-4546-9424-1455a4aaae59 2019-03-05 00:51:18.474337 3189 517 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.41.207 94522ea0-fb94-4546-9424-1455a4aaae59 2019-03-05 00:51:18.515346 3190 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-02 17:05:15.077230000 Z\n- &1 2019-03-04 16:31:45.435118000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-05 01:03:41.750017612 Z\nsign_in_count:\n- 33\n- 34\n 71 \N 189.186.41.207 8d46bf0a-8108-4290-9a86-36833cf7536e 2019-03-05 01:03:41.769893 3191 2 User \N \N 2 User \N update ---\nunique_session_id:\n- qBrHiKGE_a2ce7mrQpj6\n- c6X-Be1Hgm6o1tcMmqMD\n 72 \N 189.186.41.207 8d46bf0a-8108-4290-9a86-36833cf7536e 2019-03-05 01:03:41.792069 3192 209 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 56\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-03-04\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-93\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 39f71098-271e-434e-8d3a-61d8068881ae 2019-03-05 01:15:17.767142 3193 497 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.41.207 39f71098-271e-434e-8d3a-61d8068881ae 2019-03-05 01:15:17.808756 3194 209 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 93e787f0-162c-4e13-aebc-d47cce8a6f94 2019-03-05 01:15:49.230593 3195 231 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 56\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.869E3\nmove_type: '1'\nsale_id: 209\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-93\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.87E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-93 189.186.41.207 93e787f0-162c-4e13-aebc-d47cce8a6f94 2019-03-05 01:15:49.265201 3196 210 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 56\namount: !ruby/object:BigDecimal 18:0.61724E3\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2019-03-04\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-94\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 65b43f97-aa55-4a98-81cc-bd76138bf7a0 2019-03-05 01:27:38.768907 3197 365 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E2\n- !ruby/object:BigDecimal 18:0.48E2\n 5 \N 189.186.41.207 65b43f97-aa55-4a98-81cc-bd76138bf7a0 2019-03-05 01:27:38.85822 3198 210 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 aca48f35-2b8f-491b-a5fc-986337a356da 2019-03-05 01:27:42.679645 3199 232 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 56\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 210\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-94\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-94 189.186.41.207 aca48f35-2b8f-491b-a5fc-986337a356da 2019-03-05 01:27:42.714305 3200 40 Customer \N \N 11 User \N create ---\nnick_name: GUADALUPE RUIZ\nphone: "(667) 306-3848"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.4E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente GUADALUPE RUIZ fue registrado. 189.186.41.207 16320483-33b4-4c55-966c-07a2789fb0c5 2019-03-05 01:29:03.839056 3201 211 Sale \N \N 11 User \N create ---\ncustomer_id: 40\nuser_id: 11\nopen_cash_register_id: 56\namount: !ruby/object:BigDecimal 18:0.83448E3\ntax: !ruby/object:BigDecimal 18:0.13352E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.968E3\nstatus: 0\ndate_sale: 2019-03-04\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-95\nexpiration_date: 2019-04-08\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 477ea596-a2a4-4784-8f60-7f4f1a455073 2019-03-05 01:29:48.001763 3202 318 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 477ea596-a2a4-4784-8f60-7f4f1a455073 2019-03-05 01:29:48.038516 3203 411 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 477ea596-a2a4-4784-8f60-7f4f1a455073 2019-03-05 01:29:48.072345 3402 3 User \N \N 3 User \N update ---\nunique_session_id:\n- c59BP9ps2vGxx9qpQH_Y\n- eksL6LQN718szjhHxs9f\n 141 \N 189.186.41.207 54d9eaab-e4f6-4554-aac3-8f7a0e1a6423 2019-03-08 01:40:34.888135 3204 233 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 56\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 211\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-95\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-95 189.186.41.207 edb334c0-3f1f-43f3-bfcd-6d6e0c71bbde 2019-03-05 01:29:59.359314 3205 211 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 7df610f5-bf5f-4df3-afd9-009924889185 2019-03-05 01:30:05.613659 3206 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-03-02 00:37:52.856021000 Z\n- &1 2019-03-05 00:30:34.698793000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-05 01:36:02.806840167 Z\nsign_in_count:\n- 28\n- 29\n 58 \N 189.186.41.207 78b47940-2399-406b-861c-4db9df4402a1 2019-03-05 01:36:02.816666 3207 10 User \N \N 10 User \N update ---\nunique_session_id:\n- nCQU88vj2y2ALiAts-si\n- v5LM6t5YqGPnrZwXiZzu\n 59 \N 189.186.41.207 78b47940-2399-406b-861c-4db9df4402a1 2019-03-05 01:36:02.834324 3208 432 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 5d70d3fa-f4a9-4572-bb83-511246c96556 2019-03-05 01:36:34.890879 3209 16 Transfer \N \N 10 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-03-04\nuser_id: 10\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.41.207 012dec94-9fd1-4fa7-8bbc-22e31c128408 2019-03-05 01:36:45.796166 3210 11 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 55\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida rocio\nexpense_date: 2019-03-04\nexpense_code: PV1-E-11\n 1 Egreso por 50.0 registrado 189.186.41.207 947ec56a-a888-48d8-80ee-877e06b29774 2019-03-05 01:37:12.005288 3211 234 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 55\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 11\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 947ec56a-a888-48d8-80ee-877e06b29774 2019-03-05 01:37:12.035372 3212 207 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV2-V-91 cancelada. 189.186.41.207 3fc4d5fd-216f-4626-a5d7-8d8988ac2e4a 2019-03-05 01:43:39.81367 3213 385 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.41.207 3fc4d5fd-216f-4626-a5d7-8d8988ac2e4a 2019-03-05 01:43:39.843151 3214 328 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.41.207 3fc4d5fd-216f-4626-a5d7-8d8988ac2e4a 2019-03-05 01:43:39.866903 3215 430 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.41.207 3fc4d5fd-216f-4626-a5d7-8d8988ac2e4a 2019-03-05 01:43:39.888383 3216 511 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.41.207 3fc4d5fd-216f-4626-a5d7-8d8988ac2e4a 2019-03-05 01:43:39.910441 3217 396 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 4 \N 189.186.41.207 3fc4d5fd-216f-4626-a5d7-8d8988ac2e4a 2019-03-05 01:43:39.937793 3218 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-03-05 00:30:34.698793000 Z\n- &1 2019-03-05 01:36:02.806840000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-05 01:44:20.182006668 Z\nsign_in_count:\n- 29\n- 30\n 60 \N 189.186.41.207 59d2bd4f-a91e-418f-93b5-96e11d6cef6f 2019-03-05 01:44:20.190001 3219 10 User \N \N 10 User \N update ---\nunique_session_id:\n- v5LM6t5YqGPnrZwXiZzu\n- 5JRY7gjBYgKnYVByYZxR\n 61 \N 189.186.41.207 59d2bd4f-a91e-418f-93b5-96e11d6cef6f 2019-03-05 01:44:20.209787 3220 212 Sale \N \N 10 User \N create ---\ncustomer_id: 39\nuser_id: 10\nopen_cash_register_id: 56\namount: !ruby/object:BigDecimal 18:0.357327E4\ntax: !ruby/object:BigDecimal 18:0.57173E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4145E4\nstatus: 0\ndate_sale: 2019-03-04\nsaletype: 0\nseller_id: 4\nsale_code: PV2-V-96\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 1b2bab86-0f09-43e5-be9a-389d9b40a059 2019-03-05 01:45:42.888028 3221 386 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.207 1b2bab86-0f09-43e5-be9a-389d9b40a059 2019-03-05 01:45:42.916444 3222 328 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.41.207 1b2bab86-0f09-43e5-be9a-389d9b40a059 2019-03-05 01:45:42.943803 3223 430 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.41.207 1b2bab86-0f09-43e5-be9a-389d9b40a059 2019-03-05 01:45:42.969464 3224 511 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.41.207 1b2bab86-0f09-43e5-be9a-389d9b40a059 2019-03-05 01:45:42.992981 3225 396 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.41.207 1b2bab86-0f09-43e5-be9a-389d9b40a059 2019-03-05 01:45:43.017742 3226 235 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 56\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.432E3\nmove_type: '1'\nsale_id: 212\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.432E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 7d725db7-507b-4152-b1f2-da760d24ea6a 2019-03-05 01:47:10.403383 3227 212 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 7d725db7-507b-4152-b1f2-da760d24ea6a 2019-03-05 01:47:10.433815 3228 235 CashRegistersMove \N \N 10 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV2-V-96 189.186.41.207 7d725db7-507b-4152-b1f2-da760d24ea6a 2019-03-05 01:47:10.448565 3229 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-04 16:31:45.435118000 Z\n- &1 2019-03-05 01:03:41.750017000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-05 01:48:36.378509256 Z\nsign_in_count:\n- 34\n- 35\n 73 \N 189.186.41.207 d028345c-4798-4a20-9a90-b9200878623c 2019-03-05 01:48:36.383882 3230 2 User \N \N 2 User \N update ---\nunique_session_id:\n- c6X-Be1Hgm6o1tcMmqMD\n- 6rKfKTyAFqTYCz8RK1ju\n 74 \N 189.186.41.207 d028345c-4798-4a20-9a90-b9200878623c 2019-03-05 01:48:36.400265 3231 16 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-03-04\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.41.207 cf7d40d5-6e07-41e5-aa34-49801b0f4ca0 2019-03-05 01:49:46.923704 3499 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 47su6-ngsBzth8rBFx7y\n- Qzmpx75fyGZQ35JbLsUM\n 61 \N 189.186.41.207 22a5b41f-1152-4db1-9098-407587a9c19a 2019-03-09 22:51:05.596669 3232 518 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 434\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 cf7d40d5-6e07-41e5-aa34-49801b0f4ca0 2019-03-05 01:49:46.959336 3233 1 ProductsReturn \N \N 2 User \N create ---\nsale_id: 184\nuser_id: 2\nreturn_code: PV1-D-1\npointsale_id: 1\nnew_amount: !ruby/object:BigDecimal 18:0.97901E3\nreturned_amount: !ruby/object:BigDecimal 18:0.799E3\ndifference_amount: !ruby/object:BigDecimal 18:0.18001E3\nis_money_returned: false\n 1 devolución PV1-D-1 creada. 189.186.41.207 8075b252-ee5a-4755-9547-f1b73a66e327 2019-03-05 01:52:24.946638 3234 254 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.207 8075b252-ee5a-4755-9547-f1b73a66e327 2019-03-05 01:52:24.983603 3235 518 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.207 8075b252-ee5a-4755-9547-f1b73a66e327 2019-03-05 01:52:25.038612 3236 236 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 55\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.18001E3\nmove_type: '1'\nsale_id: 184\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.18001E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 1\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV1-D-1 189.186.41.207 423b098a-4005-4478-b6e5-cb80d7d2c19c 2019-03-05 01:52:38.129537 3237 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-03 20:04:46.843962000 Z\n- &1 2019-03-04 21:11:35.374544000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-05 01:53:30.897186308 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539421\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934225\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934225\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 69\n- 70\n 140 \N 189.186.41.207 f32039d3-a61f-4eec-83a7-96bed4d6d4ec 2019-03-05 01:53:30.906303 3238 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xhinsTQ1W4L8a_2ACxyw\n- axZEgMj9VzTAYpKLtysK\n 141 \N 189.186.41.207 f32039d3-a61f-4eec-83a7-96bed4d6d4ec 2019-03-05 01:53:30.923231 3239 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-03-05 01:36:02.806840000 Z\n- &1 2019-03-05 01:44:20.182006000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-05 02:01:19.824771590 Z\nsign_in_count:\n- 30\n- 31\n 62 \N 189.186.41.207 38d3b87e-8578-48a2-a632-31504f7725fe 2019-03-05 02:01:19.832917 3240 10 User \N \N 10 User \N update ---\nunique_session_id:\n- 5JRY7gjBYgKnYVByYZxR\n- nqxTzuUwusxCVhcojQiz\n 63 \N 189.186.41.207 38d3b87e-8578-48a2-a632-31504f7725fe 2019-03-05 02:01:19.846818 3241 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-05 01:03:41.750017000 Z\n- &1 2019-03-05 01:48:36.378509000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-05 02:07:18.577519424 Z\nsign_in_count:\n- 35\n- 36\n 75 \N 189.186.41.207 824263bd-f829-446f-9360-aafb0fc80ee9 2019-03-05 02:07:18.586565 3242 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 6rKfKTyAFqTYCz8RK1ju\n- zAFZ6TGrD8dXH4TXY-1w\n 76 \N 189.186.41.207 824263bd-f829-446f-9360-aafb0fc80ee9 2019-03-05 02:07:18.606335 3243 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-04 21:11:35.374544000 Z\n- &1 2019-03-05 01:53:30.897186000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-05 02:07:50.262332026 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934225\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\nsign_in_count:\n- 70\n- 71\n 142 \N 189.186.41.207 c48b4cd5-e08a-4560-aec3-75fb37da78db 2019-03-05 02:07:50.271303 3244 4 User \N \N 4 User \N update ---\nunique_session_id:\n- axZEgMj9VzTAYpKLtysK\n- 9s7df7kVT3S54CtygHGx\n 143 \N 189.186.41.207 c48b4cd5-e08a-4560-aec3-75fb37da78db 2019-03-05 02:07:50.290776 3245 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-03-05 01:44:20.182006000 Z\n- &1 2019-03-05 02:01:19.824771000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-05 02:08:54.653891285 Z\nsign_in_count:\n- 31\n- 32\n 64 \N 189.186.41.207 091ce698-6d75-49f2-9263-9ae6e50e0888 2019-03-05 02:08:54.66147 3246 10 User \N \N 10 User \N update ---\nunique_session_id:\n- nqxTzuUwusxCVhcojQiz\n- hg4i5akLBAYuxs1jLx8o\n 65 \N 189.186.41.207 091ce698-6d75-49f2-9263-9ae6e50e0888 2019-03-05 02:08:54.679127 3247 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-05 01:53:30.897186000 Z\n- &1 2019-03-05 02:07:50.262332000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-05 02:09:46.996219546 Z\nsign_in_count:\n- 71\n- 72\n 144 \N 189.186.41.207 7bf02989-3a8b-4c6e-b518-b20dbb7e6de5 2019-03-05 02:09:47.005542 3248 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9s7df7kVT3S54CtygHGx\n- suz6cqrvzZL_Es5w1KN2\n 145 \N 189.186.41.207 7bf02989-3a8b-4c6e-b518-b20dbb7e6de5 2019-03-05 02:09:47.044678 3249 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-03-05 02:01:19.824771000 Z\n- &1 2019-03-05 02:08:54.653891000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-05 02:10:30.815601654 Z\nsign_in_count:\n- 32\n- 33\n 66 \N 189.186.41.207 6d610fe7-36c0-4ffd-adef-df64d5b49926 2019-03-05 02:10:30.824426 3250 10 User \N \N 10 User \N update ---\nunique_session_id:\n- hg4i5akLBAYuxs1jLx8o\n- zXLEjSrLM_4-6kzdEioz\n 67 \N 189.186.41.207 6d610fe7-36c0-4ffd-adef-df64d5b49926 2019-03-05 02:10:30.84462 3251 213 Sale \N \N 10 User \N create ---\ncustomer_id: 29\nuser_id: 10\nopen_cash_register_id: 56\namount: !ruby/object:BigDecimal 18:0.215345E4\ntax: !ruby/object:BigDecimal 18:0.34455E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2498E4\nstatus: 0\ndate_sale: 2019-03-04\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-97\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 655ff97f-8d55-4e06-9207-0dec7292cb07 2019-03-05 02:10:43.876027 3252 413 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.6E1\n 1 \N 189.186.41.207 655ff97f-8d55-4e06-9207-0dec7292cb07 2019-03-05 02:10:43.915084 3253 213 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-97 cancelada. 189.186.41.207 e668c299-461a-4e76-8d60-2568ec45bbb5 2019-03-05 02:11:14.117212 3254 413 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 189.186.41.207 e668c299-461a-4e76-8d60-2568ec45bbb5 2019-03-05 02:11:14.168084 3255 214 Sale \N \N 10 User \N create ---\ncustomer_id: 29\nuser_id: 10\nopen_cash_register_id: 56\namount: !ruby/object:BigDecimal 18:0.215345E4\ntax: !ruby/object:BigDecimal 18:0.34455E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2498E4\nstatus: 0\ndate_sale: 2019-03-04\nsaletype: 0\nseller_id: 4\nsale_code: PV2-V-98\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 5ad6dd65-4517-4b6d-a0a1-fe17155ed5a5 2019-03-05 02:11:32.45135 3256 413 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.41.207 5ad6dd65-4517-4b6d-a0a1-fe17155ed5a5 2019-03-05 02:11:32.489166 3545 242 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 2d16ae9b-8922-4a45-8a1a-a0a3a495704e 2019-03-10 01:47:49.235469 3257 53 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 55\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.68001E3\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.83201E3\ncash_fund: !ruby/object:BigDecimal 18:0.564E3\nphysical_cash: !ruby/object:BigDecimal 18:0.139601E4\nobservations: no se reflejo una venta a credito que se pago por la cantidad de $1068\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 4a1fce1e-10da-464a-836d-cb9880f1bf27 2019-03-05 02:16:23.371131 3258 55 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 4a1fce1e-10da-464a-836d-cb9880f1bf27 2019-03-05 02:16:23.391028 3259 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-05 02:07:50.262332000 Z\n- &1 2019-03-05 02:09:46.996219000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-05 02:17:21.572042798 Z\nsign_in_count:\n- 72\n- 73\n 146 \N 189.186.41.207 b63a38a5-3699-440d-b262-0b68307f739f 2019-03-05 02:17:21.579994 3260 4 User \N \N 4 User \N update ---\nunique_session_id:\n- suz6cqrvzZL_Es5w1KN2\n- Cmmjvd4V-D2z2sKhAXLi\n 147 \N 189.186.41.207 b63a38a5-3699-440d-b262-0b68307f739f 2019-03-05 02:17:21.595355 3261 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-03 21:16:35.510051000 Z\n- &1 2019-03-03 22:01:24.388755000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-05 02:19:05.824677414 Z\nsign_in_count:\n- 59\n- 60\n 120 \N 189.186.41.207 4c498036-afac-456d-94a4-202f2bcecbb8 2019-03-05 02:19:05.833267 3262 3 User \N \N 3 User \N update ---\nunique_session_id:\n- w-f-Q6CCABfQFz5g5Qdy\n- AkMSFLHq6w5VtxnH2ybp\n 121 \N 189.186.41.207 4c498036-afac-456d-94a4-202f2bcecbb8 2019-03-05 02:19:05.851685 3263 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-03-05 02:08:54.653891000 Z\n- &1 2019-03-05 02:10:30.815601000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-05 02:21:02.429157516 Z\nsign_in_count:\n- 33\n- 34\n 68 \N 189.186.41.207 889f715d-5e1a-482e-8cec-45678efe12a5 2019-03-05 02:21:02.434911 3264 10 User \N \N 10 User \N update ---\nunique_session_id:\n- zXLEjSrLM_4-6kzdEioz\n- pcN-Vqy-rWY9TMJLF_Kj\n 69 \N 189.186.41.207 889f715d-5e1a-482e-8cec-45678efe12a5 2019-03-05 02:21:02.454463 3265 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-05 02:09:46.996219000 Z\n- &1 2019-03-05 02:17:21.572042000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-05 02:45:59.850047993 Z\nsign_in_count:\n- 73\n- 74\n 148 \N 189.186.41.207 54727ac6-be77-4018-b7c6-71d6c82588e8 2019-03-05 02:45:59.855854 3266 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Cmmjvd4V-D2z2sKhAXLi\n- r2GBkxmXu_v6xzNmijgs\n 149 \N 189.186.41.207 54727ac6-be77-4018-b7c6-71d6c82588e8 2019-03-05 02:45:59.869871 3267 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-03-05 02:10:30.815601000 Z\n- &1 2019-03-05 02:21:02.429157000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-05 02:53:11.879020128 Z\nsign_in_count:\n- 34\n- 35\n 70 \N 189.186.41.207 cb6d62f6-5add-4a80-980f-b5f81dcc4f19 2019-03-05 02:53:11.884599 3268 10 User \N \N 10 User \N update ---\nunique_session_id:\n- pcN-Vqy-rWY9TMJLF_Kj\n- tsP-rSz-U1axhbGx_rNy\n 71 \N 189.186.41.207 cb6d62f6-5add-4a80-980f-b5f81dcc4f19 2019-03-05 02:53:11.89739 3269 54 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 56\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.433E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.4113E4\ncash_fund: !ruby/object:BigDecimal 18:0.588E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4701E4\nobservations: QUEDO ABONO CREDITO DE 1500 PENDIENTE\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 7e86912a-51c3-4d48-a355-b1f8e4705b15 2019-03-05 02:55:08.281785 3270 56 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 7e86912a-51c3-4d48-a355-b1f8e4705b15 2019-03-05 02:55:08.299309 3271 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-05 01:48:36.378509000 Z\n- &1 2019-03-05 02:07:18.577519000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-05 17:04:14.274507898 Z\nsign_in_count:\n- 36\n- 37\n 77 \N 189.186.41.207 fffa95d7-f38c-483b-ba6f-e44af32ceda6 2019-03-05 17:04:14.299516 3272 2 User \N \N 2 User \N update ---\nunique_session_id:\n- zAFZ6TGrD8dXH4TXY-1w\n- uoJDnvH4s-rb8ULYKsJz\n 78 \N 189.186.41.207 fffa95d7-f38c-483b-ba6f-e44af32ceda6 2019-03-05 17:04:14.31915 3273 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-03-01 17:07:58.599098000 Z\n- &1 2019-03-03 18:48:47.066636000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-05 17:42:23.219006746 Z\nsign_in_count:\n- 8\n- 9\n 18 \N 189.186.41.207 1b656892-5b7b-4271-8d02-e438cea60674 2019-03-05 17:42:23.227738 3274 11 User \N \N 11 User \N update ---\nunique_session_id:\n- 8NecTLPPb_yyrDJMyM-r\n- eeRTMzFHddhx5x-_dMxx\n 19 \N 189.186.41.207 1b656892-5b7b-4271-8d02-e438cea60674 2019-03-05 17:42:23.250525 3275 57 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.568E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 568.0 189.186.41.207 4521f657-fd6d-4fad-9577-d3b1c2002183 2019-03-05 17:53:37.714287 3276 58 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.564E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 564.0 189.186.41.207 fd6bc937-391d-402c-b287-a90b58dfa35d 2019-03-05 18:35:51.485646 3277 215 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 58\namount: !ruby/object:BigDecimal 18:0.107586E4\ntax: !ruby/object:BigDecimal 18:0.17214E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1248E4\nstatus: 0\ndate_sale: 2019-03-05\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-115\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 6cbdfd4d-e8dc-4462-a152-d3194ba7ff94 2019-03-05 19:09:46.992903 3278 151 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.41.207 6cbdfd4d-e8dc-4462-a152-d3194ba7ff94 2019-03-05 19:09:47.035151 3279 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 189.186.41.207 6cbdfd4d-e8dc-4462-a152-d3194ba7ff94 2019-03-05 19:09:47.083489 3280 215 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 d3d0d0f5-d8bf-40f4-b90d-3cd4578c4d55 2019-03-05 19:09:52.712037 3281 237 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 58\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1248E4\nmove_type: '1'\nsale_id: 215\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-115\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1248E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-115 189.186.41.207 d3d0d0f5-d8bf-40f4-b90d-3cd4578c4d55 2019-03-05 19:09:52.74721 3282 41 Customer \N \N 2 User \N create ---\nnick_name: ISABEL VARGAS\nphone: "(667) 165-9253"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.1E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ISABEL VARGAS fue registrado. 189.186.41.207 9b9e7018-66f5-4fde-8868-0554b98896f4 2019-03-05 21:27:39.486675 11570 317 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.229 ca95e924-64a4-4306-85a3-7daf7f71461d 2019-07-21 01:38:30.942135 3283 216 Sale \N \N 2 User \N create ---\ncustomer_id: 41\nuser_id: 2\nopen_cash_register_id: 58\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-03-05\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-116\nexpiration_date: 2019-04-09\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 fdd84b6d-825f-4ac6-aafb-4f3436707d4a 2019-03-05 21:27:58.159632 3284 135 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.41.207 fdd84b6d-825f-4ac6-aafb-4f3436707d4a 2019-03-05 21:27:58.192062 3285 238 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 58\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.199E3\nmove_type: '1'\nsale_id: 216\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-116\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.199E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-116 189.186.41.207 22a71f6e-193e-4ec0-8159-faf46fef28cc 2019-03-05 21:29:12.050476 3286 216 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 f7145966-ba99-4c91-9f8f-ad3fae63d871 2019-03-05 21:29:15.443477 3287 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-03 22:01:24.388755000 Z\n- &1 2019-03-05 02:19:05.824677000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-06 00:01:24.533539804 Z\nsign_in_count:\n- 60\n- 61\n 122 \N 189.186.41.207 d59fc5cb-67f7-4d58-b89d-4011dbe62d87 2019-03-06 00:01:24.543083 3288 3 User \N \N 3 User \N update ---\nunique_session_id:\n- AkMSFLHq6w5VtxnH2ybp\n- pgFToKrcymPYxn5teNPz\n 123 \N 189.186.41.207 d59fc5cb-67f7-4d58-b89d-4011dbe62d87 2019-03-06 00:01:24.561146 3289 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-03 20:45:37.549545000 Z\n- &1 2019-03-03 21:21:25.427898000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-06 00:20:30.867347545 Z\nsign_in_count:\n- 14\n- 15\n 30 \N 189.186.41.207 10c03235-0f73-4d90-8f78-740444782bac 2019-03-06 00:20:30.875923 3290 12 User \N \N 12 User \N update ---\nunique_session_id:\n- kcobfas8WrEd98-tTGAz\n- Vd3fssoiL-jQHs8oZfEq\n 31 \N 189.186.41.207 10c03235-0f73-4d90-8f78-740444782bac 2019-03-06 00:20:30.894552 3291 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-05 02:19:05.824677000 Z\n- &1 2019-03-06 00:01:24.533539000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-06 00:22:56.717220222 Z\nsign_in_count:\n- 61\n- 62\n 124 \N 189.186.41.207 5bf74c62-b267-43f7-bc89-6e26b165d16d 2019-03-06 00:22:56.723466 3292 3 User \N \N 3 User \N update ---\nunique_session_id:\n- pgFToKrcymPYxn5teNPz\n- rdTCGSvsYL5Xf3XxH5aH\n 125 \N 189.186.41.207 5bf74c62-b267-43f7-bc89-6e26b165d16d 2019-03-06 00:22:56.738483 3293 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-03 21:21:25.427898000 Z\n- &1 2019-03-06 00:20:30.867347000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-06 00:32:05.106843890 Z\nsign_in_count:\n- 15\n- 16\n 32 \N 189.186.41.207 fe5184b8-2e54-46e1-aeb2-d81f6bd5566c 2019-03-06 00:32:05.139805 3294 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Vd3fssoiL-jQHs8oZfEq\n- d9zC436CxetM98DWvG5T\n 33 \N 189.186.41.207 fe5184b8-2e54-46e1-aeb2-d81f6bd5566c 2019-03-06 00:32:05.156514 3295 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-06 00:01:24.533539000 Z\n- &1 2019-03-06 00:22:56.717220000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-06 00:39:12.209304356 Z\nsign_in_count:\n- 62\n- 63\n 126 \N 189.186.41.207 7fafc3c9-fe1b-4f5d-a108-8b45fd0a9dfc 2019-03-06 00:39:12.217167 3296 3 User \N \N 3 User \N update ---\nunique_session_id:\n- rdTCGSvsYL5Xf3XxH5aH\n- 9Xf2kgG4CBxwFYyF9qhb\n 127 \N 189.186.41.207 7fafc3c9-fe1b-4f5d-a108-8b45fd0a9dfc 2019-03-06 00:39:12.235523 3297 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-06 00:20:30.867347000 Z\n- &1 2019-03-06 00:32:05.106843000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-06 01:45:10.182019460 Z\nsign_in_count:\n- 16\n- 17\n 34 \N 189.186.41.207 ca0c17ac-edec-4c0c-8ef7-a779d230e05b 2019-03-06 01:45:10.187537 3298 12 User \N \N 12 User \N update ---\nunique_session_id:\n- d9zC436CxetM98DWvG5T\n- TNjmPhWPtriD5gEmNWU8\n 35 \N 189.186.41.207 ca0c17ac-edec-4c0c-8ef7-a779d230e05b 2019-03-06 01:45:10.200377 3299 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-06 00:22:56.717220000 Z\n- &1 2019-03-06 00:39:12.209304000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-06 01:49:11.179787819 Z\nsign_in_count:\n- 63\n- 64\n 128 \N 189.186.41.207 6bbdc09c-96f0-4afd-8f6d-5f1fa43bdc57 2019-03-06 01:49:11.186983 3300 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 9Xf2kgG4CBxwFYyF9qhb\n- Qdrh42jqfseaWEDqF9tA\n 129 \N 189.186.41.207 6bbdc09c-96f0-4afd-8f6d-5f1fa43bdc57 2019-03-06 01:49:11.204815 3301 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-06 00:32:05.106843000 Z\n- &1 2019-03-06 01:45:10.182019000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-06 01:53:49.841586557 Z\nsign_in_count:\n- 17\n- 18\n 36 \N 189.186.41.207 38c3a2d9-e152-4f7f-9441-4d344cc53815 2019-03-06 01:53:49.849844 3302 12 User \N \N 12 User \N update ---\nunique_session_id:\n- TNjmPhWPtriD5gEmNWU8\n- h7ipshTaqb4mFhCMrJGZ\n 37 \N 189.186.41.207 38c3a2d9-e152-4f7f-9441-4d344cc53815 2019-03-06 01:53:49.867707 3303 55 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 57\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.418E3\nphysical_cash: !ruby/object:BigDecimal 18:0.418E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 30816abd-3771-4655-9afd-5950073d4a4d 2019-03-06 01:56:26.119419 3304 57 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 30816abd-3771-4655-9afd-5950073d4a4d 2019-03-06 01:56:26.136493 3305 56 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 58\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.1447E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.511E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2011E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 62530992-5fed-4cad-bb5d-de990a70ad3c 2019-03-06 02:00:35.488047 3306 58 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 62530992-5fed-4cad-bb5d-de990a70ad3c 2019-03-06 02:00:35.5076 3307 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-05 02:17:21.572042000 Z\n- &1 2019-03-05 02:45:59.850047000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-06 02:45:16.007997910 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3151160854\n mask_addr: 4294967295\nsign_in_count:\n- 74\n- 75\n 150 \N 187.210.230.22 c32225d5-8d26-4f73-810d-9e274016ea0a 2019-03-06 02:45:16.020074 3308 4 User \N \N 4 User \N update ---\nunique_session_id:\n- r2GBkxmXu_v6xzNmijgs\n- sT2id-51o7-yUs6WbSa2\n 151 \N 187.210.230.22 c32225d5-8d26-4f73-810d-9e274016ea0a 2019-03-06 02:45:16.042165 3309 59 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.418E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 418.0 189.186.41.207 3e7e532a-6f09-4410-89f2-b472faee0c2b 2019-03-06 18:49:39.02745 3310 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-05 02:07:18.577519000 Z\n- &1 2019-03-05 17:04:14.274507000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-06 18:58:05.543497958 Z\nsign_in_count:\n- 37\n- 38\n 79 \N 189.186.41.207 e4fcd0cb-e685-425d-8851-d7d644900aaa 2019-03-06 18:58:05.554382 3311 2 User \N \N 2 User \N update ---\nunique_session_id:\n- uoJDnvH4s-rb8ULYKsJz\n- C7MEQkC7V13zwE1wpsYo\n 80 \N 189.186.41.207 e4fcd0cb-e685-425d-8851-d7d644900aaa 2019-03-06 18:58:05.57651 3312 160 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.41.207 bc74d1a3-32f9-4fe7-b141-6f64e668c932 2019-03-06 19:05:50.55583 3313 17 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-03-06\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.41.207 defdfd0a-bb3f-4a2f-8f4f-7b82bcffc39b 2019-03-06 19:06:00.773782 3314 17 Transfer \N \N 11 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 11\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-03-06\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.41.207 682ef3ed-3e96-42fa-bb81-41b08184f8e4 2019-03-06 19:17:29.765497 3315 519 AvailableProduct \N \N 11 User \N create ---\nproduct_id: 162\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 682ef3ed-3e96-42fa-bb81-41b08184f8e4 2019-03-06 19:17:29.798169 3316 42 Customer \N \N 11 User \N create ---\nnick_name: JAQUELIN CEBREROS\nphone: "(667) 165-7843"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.1E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JAQUELIN CEBREROS fue registrado. 189.186.41.207 68fd9815-6bc0-4dff-8a4c-6f3302ba07f8 2019-03-06 19:18:26.370967 3317 217 Sale \N \N 11 User \N create ---\ncustomer_id: 42\nuser_id: 11\nopen_cash_register_id: 59\namount: !ruby/object:BigDecimal 18:0.15931E4\ntax: !ruby/object:BigDecimal 18:0.2549E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1848E4\nstatus: 0\ndate_sale: 2019-03-06\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-99\nexpiration_date: 2019-04-10\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 8c058e50-de7b-4f23-bfe7-3def92a69842 2019-03-06 19:21:17.875561 3318 519 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.207 8c058e50-de7b-4f23-bfe7-3def92a69842 2019-03-06 19:21:17.906611 3319 485 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.41.207 8c058e50-de7b-4f23-bfe7-3def92a69842 2019-03-06 19:21:17.93387 3320 239 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 59\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 217\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-99\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-99 189.186.41.207 7d4cbda4-b996-4392-a183-eb8d83af7d60 2019-03-06 19:21:36.081566 3321 239 CashRegistersMove \N \N 11 User \N destroy ---\nopen_cash_register_id: 59\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 217\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-99\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.41.207 e6c7746e-568c-4e19-bd94-243cc576a16e 2019-03-06 19:21:48.960457 3322 240 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 59\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 217\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-99\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-99 189.186.41.207 23d89c5e-2033-4c1e-98a3-9eef1751701c 2019-03-06 19:22:01.631661 3323 240 CashRegistersMove \N \N 11 User \N destroy ---\nopen_cash_register_id: 59\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 217\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-99\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.41.207 f86d6486-4251-4e80-b3c5-83f233b2654b 2019-03-06 19:22:20.305104 3324 217 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-99 cancelada. 189.186.41.207 5aadc3f4-602b-43ef-a19f-e1cfd11a68fa 2019-03-06 19:22:25.18527 3325 485 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.41.207 5aadc3f4-602b-43ef-a19f-e1cfd11a68fa 2019-03-06 19:22:25.218238 3326 519 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.41.207 5aadc3f4-602b-43ef-a19f-e1cfd11a68fa 2019-03-06 19:22:25.248212 3327 60 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.511E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 511.0 189.186.41.207 a33fd7d0-d288-4b87-ac6a-0b2801be1cb0 2019-03-06 20:38:50.685807 3328 218 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 60\namount: !ruby/object:BigDecimal 18:0.51293E3\ntax: !ruby/object:BigDecimal 18:0.8207E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.595E3\nstatus: 0\ndate_sale: 2019-03-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-117\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 c6377376-a63a-4fc8-8098-09858b757193 2019-03-06 22:10:27.921073 3329 76 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.41.207 c6377376-a63a-4fc8-8098-09858b757193 2019-03-06 22:10:28.013407 3330 218 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 1aa1cf94-3223-41c5-8298-897a5e638522 2019-03-06 22:10:35.578924 3331 241 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 60\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.595E3\nmove_type: '1'\nsale_id: 218\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-117\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.595E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-117 189.186.41.207 1aa1cf94-3223-41c5-8298-897a5e638522 2019-03-06 22:10:35.614356 3693 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zBpXnx3hwPv_ATr8xmox\n- s3SDyyoVzpWD1i52xry7\n 173 \N 189.186.49.207 153c16ae-6025-4fbc-9f2e-3af3e2ac4251 2019-03-14 23:51:43.225294 3332 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-06 00:39:12.209304000 Z\n- &1 2019-03-06 01:49:11.179787000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-06 23:53:06.804313521 Z\nsign_in_count:\n- 64\n- 65\n 130 \N 189.186.41.207 f4d741da-c2bd-4845-9236-1c3b8ff31e3b 2019-03-06 23:53:06.830391 3333 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Qdrh42jqfseaWEDqF9tA\n- qNQ56RV_LXEf5D6wF_rU\n 131 \N 189.186.41.207 f4d741da-c2bd-4845-9236-1c3b8ff31e3b 2019-03-06 23:53:06.850112 3334 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-06 01:45:10.182019000 Z\n- &1 2019-03-06 01:53:49.841586000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-07 00:13:46.780825231 Z\nsign_in_count:\n- 18\n- 19\n 38 \N 189.186.41.207 3a1e1b3a-dbfc-474b-ab46-b272f7da8bc5 2019-03-07 00:13:46.787277 3335 12 User \N \N 12 User \N update ---\nunique_session_id:\n- h7ipshTaqb4mFhCMrJGZ\n- _RZJp8jP2df3r8RVeoUD\n 39 \N 189.186.41.207 3a1e1b3a-dbfc-474b-ab46-b272f7da8bc5 2019-03-07 00:13:46.801011 3336 219 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 60\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-03-06\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-118\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 1fca0e54-6bb9-4555-9836-5a1c3ad317fd 2019-03-07 00:18:02.813071 3337 133 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.41.207 1fca0e54-6bb9-4555-9836-5a1c3ad317fd 2019-03-07 00:18:02.855279 3338 219 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 ea08e5fe-34e1-479c-8012-ec703f01c22b 2019-03-07 00:18:28.119567 3339 242 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 60\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 219\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-118\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-118 189.186.41.207 ea08e5fe-34e1-479c-8012-ec703f01c22b 2019-03-07 00:18:28.143619 3340 220 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 60\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-03-06\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-119\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 6441bb43-0d8d-4505-bdfb-212dc736ead9 2019-03-07 00:45:40.98732 3341 197 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 189.186.41.207 6441bb43-0d8d-4505-bdfb-212dc736ead9 2019-03-07 00:45:41.026098 3342 220 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 f2b085a3-bab9-4ab5-b70b-828d45c7eed1 2019-03-07 00:46:28.137406 3343 243 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 60\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 220\ncardnumber: 8811\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-119\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-119 189.186.41.207 f2b085a3-bab9-4ab5-b70b-828d45c7eed1 2019-03-07 00:46:28.170058 3344 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-05 02:45:59.850047000 Z\n- &1 2019-03-06 02:45:16.007997000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-07 01:09:47.922767481 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3151160854\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3151160854\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359935118\n mask_addr: 4294967295\nsign_in_count:\n- 75\n- 76\n 152 \N 200.68.138.142 f741eb18-bbb2-407b-954b-c44ed0fb122d 2019-03-07 01:09:47.967878 3345 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sT2id-51o7-yUs6WbSa2\n- g9gY1uT9kQV56s_vm4yC\n 153 \N 200.68.138.142 f741eb18-bbb2-407b-954b-c44ed0fb122d 2019-03-07 01:09:48.004121 3346 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-06 01:49:11.179787000 Z\n- &1 2019-03-06 23:53:06.804313000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-07 01:24:02.636162077 Z\nsign_in_count:\n- 65\n- 66\n 132 \N 189.186.41.207 9497e7d8-5802-432c-b5d9-5f7aaf5db519 2019-03-07 01:24:02.641458 3347 3 User \N \N 3 User \N update ---\nunique_session_id:\n- qNQ56RV_LXEf5D6wF_rU\n- 9GUePGdPxMRyws_TcWg_\n 133 \N 189.186.41.207 9497e7d8-5802-432c-b5d9-5f7aaf5db519 2019-03-07 01:24:02.670157 3348 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-06 01:53:49.841586000 Z\n- &1 2019-03-07 00:13:46.780825000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-07 01:24:33.783544518 Z\nsign_in_count:\n- 19\n- 20\n 40 \N 189.186.41.207 fe2cb6f0-92e8-4aa7-9ac9-1aef16f056e4 2019-03-07 01:24:33.789397 3349 12 User \N \N 12 User \N update ---\nunique_session_id:\n- _RZJp8jP2df3r8RVeoUD\n- M7sa_WvdPT7rKnzhsyi-\n 41 \N 189.186.41.207 fe2cb6f0-92e8-4aa7-9ac9-1aef16f056e4 2019-03-07 01:24:33.802386 3350 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-06 23:53:06.804313000 Z\n- &1 2019-03-07 01:24:02.636162000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-07 01:42:30.416835950 Z\nsign_in_count:\n- 66\n- 67\n 134 \N 189.186.41.207 f3a41a6d-808d-4ff1-a00e-a218cef80398 2019-03-07 01:42:30.422545 3351 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 9GUePGdPxMRyws_TcWg_\n- PsJRs-YBiNXzFvzBRsT5\n 135 \N 189.186.41.207 f3a41a6d-808d-4ff1-a00e-a218cef80398 2019-03-07 01:42:30.435613 3352 221 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 59\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-03-06\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-100\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 6d2e6cb7-bbc3-48ac-8751-984d6f66f8e8 2019-03-07 01:43:55.985363 3353 419 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.41.207 6d2e6cb7-bbc3-48ac-8751-984d6f66f8e8 2019-03-07 01:43:56.015286 3354 221 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 3d9e5848-22d0-4a8c-ad4f-64a4fccdacd6 2019-03-07 01:44:04.634669 3355 244 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 59\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 221\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-100\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-100 189.186.41.207 3d9e5848-22d0-4a8c-ad4f-64a4fccdacd6 2019-03-07 01:44:04.65833 13108 20 Category \N \N 4 User \N update ---\nstatus:\n- active\n- 2\n 2 \N 189.186.213.107 87eda24b-1ebe-4dcd-a4aa-07ec39bd93ca 2019-08-18 21:10:46.979496 3356 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-07 00:13:46.780825000 Z\n- &1 2019-03-07 01:24:33.783544000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-07 01:44:51.491900508 Z\nsign_in_count:\n- 20\n- 21\n 42 \N 189.186.41.207 09d1fc08-adf4-4ee8-8e4d-c95a73641d76 2019-03-07 01:44:51.497704 3357 12 User \N \N 12 User \N update ---\nunique_session_id:\n- M7sa_WvdPT7rKnzhsyi-\n- qM1e73XQogGhpTJ1qaV6\n 43 \N 189.186.41.207 09d1fc08-adf4-4ee8-8e4d-c95a73641d76 2019-03-07 01:44:51.511593 3358 222 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 60\namount: !ruby/object:BigDecimal 18:0.42155E3\ntax: !ruby/object:BigDecimal 18:0.6745E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-03-06\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-120\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 42ce2182-9c56-4af7-b6e1-fa0f728493fb 2019-03-07 01:45:10.137015 3359 134 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.207 42ce2182-9c56-4af7-b6e1-fa0f728493fb 2019-03-07 01:45:10.16611 3360 222 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 0fb8bd70-b6c2-4f69-9f17-215ac0196e96 2019-03-07 01:45:13.764548 3361 245 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 60\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.489E3\nmove_type: '1'\nsale_id: 222\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-120\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-120 189.186.41.207 0fb8bd70-b6c2-4f69-9f17-215ac0196e96 2019-03-07 01:45:13.787619 3362 43 Customer \N \N 12 User \N create ---\nnick_name: KARLA CABADA\nphone: "(714) 608-26__"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KARLA CABADA fue registrado. 189.186.41.207 af0f01fe-2637-4e6e-b06f-87a260cedcbb 2019-03-07 01:47:04.186637 3363 223 Sale \N \N 12 User \N create ---\ncustomer_id: 43\nuser_id: 12\nopen_cash_register_id: 60\namount: !ruby/object:BigDecimal 18:0.120603E4\ntax: !ruby/object:BigDecimal 18:0.19296E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.139899E4\nstatus: 0\ndate_sale: 2019-03-06\nsaletype: 2\nseller_id: 8\nsale_code: PV1-V-121\nexpiration_date: 2019-04-10\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 c51bb5ca-8fb0-430b-80c5-c5cd53819530 2019-03-07 01:47:18.27982 3364 249 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.41.207 c51bb5ca-8fb0-430b-80c5-c5cd53819530 2019-03-07 01:47:18.308751 3365 246 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 60\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.42E3\nmove_type: '1'\nsale_id: 223\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-121\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.8E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-121 189.186.41.207 ca408733-95bf-438a-a8cd-bf8b7d8573f2 2019-03-07 01:48:04.187739 3366 223 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 a909dc9d-0c49-4b3f-8b39-6ae2efdba1cd 2019-03-07 01:48:05.365576 3367 224 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 59\namount: !ruby/object:BigDecimal 18:0.8181E3\ntax: !ruby/object:BigDecimal 18:0.1309E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.949E3\nstatus: 0\ndate_sale: 2019-03-06\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-101\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 03808375-c957-48a5-8aa8-bc0c741db366 2019-03-07 01:52:36.153174 3368 479 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.41.207 03808375-c957-48a5-8aa8-bc0c741db366 2019-03-07 01:52:36.185262 3369 224 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 762b4863-778d-465a-98f8-fa97c7990753 2019-03-07 01:52:53.294629 3370 247 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 59\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.949E3\nmove_type: '1'\nsale_id: 224\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-101\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-101 189.186.41.207 762b4863-778d-465a-98f8-fa97c7990753 2019-03-07 01:52:53.333231 3371 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-07 01:24:02.636162000 Z\n- &1 2019-03-07 01:42:30.416835000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-07 01:59:02.703454123 Z\nsign_in_count:\n- 67\n- 68\n 136 \N 189.186.41.207 c6aa7476-8f66-4de4-9579-73c573043454 2019-03-07 01:59:02.711186 3372 3 User \N \N 3 User \N update ---\nunique_session_id:\n- PsJRs-YBiNXzFvzBRsT5\n- doL3x1KyxkaKDmFPfdqK\n 137 \N 189.186.41.207 c6aa7476-8f66-4de4-9579-73c573043454 2019-03-07 01:59:02.729269 3373 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-07 01:24:33.783544000 Z\n- &1 2019-03-07 01:44:51.491900000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-07 01:59:53.295201843 Z\nsign_in_count:\n- 21\n- 22\n 44 \N 189.186.41.207 9372c2bc-17d2-408d-852a-3ece793d2185 2019-03-07 01:59:53.300777 3374 12 User \N \N 12 User \N update ---\nunique_session_id:\n- qM1e73XQogGhpTJ1qaV6\n- owX7q2Uu8HRjKUReGS7c\n 45 \N 189.186.41.207 9372c2bc-17d2-408d-852a-3ece793d2185 2019-03-07 01:59:53.31299 3375 57 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 59\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.1748E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.22E4\ncash_fund: !ruby/object:BigDecimal 18:0.466E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2666E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 ea98344d-9ed5-452c-9c01-e34dba2f759e 2019-03-07 02:00:49.822396 3376 59 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 ea98344d-9ed5-452c-9c01-e34dba2f759e 2019-03-07 02:00:49.841994 3377 58 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 60\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.2722E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.19E4\ncash_fund: !ruby/object:BigDecimal 18:0.584E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2484E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 e544b17e-526d-46d7-b5f1-550f258970db 2019-03-07 02:02:14.543283 3378 60 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 e544b17e-526d-46d7-b5f1-550f258970db 2019-03-07 02:02:14.55899 3739 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 189.186.41.207 a5fa6fbf-dd78-4a01-9f60-0be20f2f7f35 2019-03-15 20:11:40.411316 3379 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-06 02:45:16.007997000 Z\n- &1 2019-03-07 01:09:47.922767000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-07 02:21:47.361845400 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3151160854\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359935118\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359935118\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3149978156\n mask_addr: 4294967295\nsign_in_count:\n- 76\n- 77\n 154 \N 187.192.218.44 b39d61a9-d686-4dd8-be06-d69c63dfe5fb 2019-03-07 02:21:47.370135 3380 4 User \N \N 4 User \N update ---\nunique_session_id:\n- g9gY1uT9kQV56s_vm4yC\n- QRXzZD42ZDp799uT8DPh\n 155 \N 187.192.218.44 b39d61a9-d686-4dd8-be06-d69c63dfe5fb 2019-03-07 02:21:47.39075 3381 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-05 17:04:14.274507000 Z\n- &1 2019-03-06 18:58:05.543497000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-07 16:45:41.439706230 Z\nsign_in_count:\n- 38\n- 39\n 81 \N 189.186.41.207 aa21d47c-f7eb-487c-a2fa-fda51100726d 2019-03-07 16:45:41.473962 3382 2 User \N \N 2 User \N update ---\nunique_session_id:\n- C7MEQkC7V13zwE1wpsYo\n- V5fzxfy89nE4XKKxS9P3\n 82 \N 189.186.41.207 aa21d47c-f7eb-487c-a2fa-fda51100726d 2019-03-07 16:45:41.495643 3383 61 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.584E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 584.0 189.186.41.207 273476d8-9ae7-428c-b11b-0d8a51c48f64 2019-03-07 16:54:19.903516 3384 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-07 01:09:47.922767000 Z\n- &1 2019-03-07 02:21:47.361845000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-07 18:44:00.120079276 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359935118\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3149978156\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3149978156\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3149972429\n mask_addr: 4294967295\nsign_in_count:\n- 77\n- 78\n 156 \N 187.192.195.205 d36ce0f6-a0f8-45ca-a1bc-8db6bd97e614 2019-03-07 18:44:00.130799 3385 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QRXzZD42ZDp799uT8DPh\n- P4uETS1CddjRhExzTreT\n 157 \N 187.192.195.205 d36ce0f6-a0f8-45ca-a1bc-8db6bd97e614 2019-03-07 18:44:00.151828 3386 62 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.466E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 466.0 189.186.41.207 2fe3836b-142b-4aac-b325-a82076eb08ef 2019-03-07 21:58:13.322381 3387 225 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 62\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-03-07\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-102\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 45b57991-22e1-4e2f-acbd-3fb0d5818e83 2019-03-07 21:59:43.176173 3388 485 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.41.207 45b57991-22e1-4e2f-acbd-3fb0d5818e83 2019-03-07 21:59:43.2153 3389 225 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 1b29cb4f-8522-426a-a527-405eb3d8ee8c 2019-03-07 21:59:50.528431 3390 248 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 62\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 225\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-102\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-102 189.186.41.207 1b29cb4f-8522-426a-a527-405eb3d8ee8c 2019-03-07 21:59:50.560974 3391 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-07 02:21:47.361845000 Z\n- &1 2019-03-07 18:44:00.120079000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-07 23:04:35.775378595 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3149978156\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3149972429\n mask_addr: 4294967295\nsign_in_count:\n- 78\n- 79\n 158 \N 187.192.195.205 25109750-64b1-4ff5-85a7-d14123c03158 2019-03-07 23:04:35.81484 3392 4 User \N \N 4 User \N update ---\nunique_session_id:\n- P4uETS1CddjRhExzTreT\n- p9NYqU5ZrszGmTus3sX1\n 159 \N 187.192.195.205 25109750-64b1-4ff5-85a7-d14123c03158 2019-03-07 23:04:35.837922 3393 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-07 01:42:30.416835000 Z\n- &1 2019-03-07 01:59:02.703454000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-08 00:09:26.217855361 Z\nsign_in_count:\n- 68\n- 69\n 138 \N 189.186.41.207 9f873d3d-88ad-40c9-ae24-d304a4184574 2019-03-08 00:09:26.223219 3394 3 User \N \N 3 User \N update ---\nunique_session_id:\n- doL3x1KyxkaKDmFPfdqK\n- c59BP9ps2vGxx9qpQH_Y\n 139 \N 189.186.41.207 9f873d3d-88ad-40c9-ae24-d304a4184574 2019-03-08 00:09:26.235537 3395 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-07 01:44:51.491900000 Z\n- &1 2019-03-07 01:59:53.295201000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-08 00:10:09.857000994 Z\nsign_in_count:\n- 22\n- 23\n 46 \N 189.186.41.207 523faaa7-b8ef-4d74-84a5-909785f323be 2019-03-08 00:10:09.862598 3396 12 User \N \N 12 User \N update ---\nunique_session_id:\n- owX7q2Uu8HRjKUReGS7c\n- aRaTZPeFTmMBFJuNZVXn\n 47 \N 189.186.41.207 523faaa7-b8ef-4d74-84a5-909785f323be 2019-03-08 00:10:09.875326 3397 226 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 62\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-03-07\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-103\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 6d4bd8cc-1ece-4f59-a021-620af711bc8b 2019-03-08 00:27:56.830326 3398 515 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.41.207 6d4bd8cc-1ece-4f59-a021-620af711bc8b 2019-03-08 00:27:56.890013 3399 226 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 4e243f77-1488-43bf-82fa-f60ea597c134 2019-03-08 00:28:44.473571 3400 249 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 62\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 226\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-103\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-103 189.186.41.207 4e243f77-1488-43bf-82fa-f60ea597c134 2019-03-08 00:28:44.49935 3401 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-07 01:59:02.703454000 Z\n- &1 2019-03-08 00:09:26.217855000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-08 01:40:34.868867203 Z\nsign_in_count:\n- 69\n- 70\n 140 \N 189.186.41.207 54d9eaab-e4f6-4554-aac3-8f7a0e1a6423 2019-03-08 01:40:34.874745 3740 259 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 8b13e413-3678-4a99-8ea4-5daeabb1d68f 2019-03-15 20:12:08.958806 3403 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-07 01:59:53.295201000 Z\n- &1 2019-03-08 00:10:09.857000000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-08 01:50:47.749749090 Z\nsign_in_count:\n- 23\n- 24\n 48 \N 189.186.41.207 26effc9a-645b-4b91-bb05-3ddcafa882d6 2019-03-08 01:50:47.7551 3404 12 User \N \N 12 User \N update ---\nunique_session_id:\n- aRaTZPeFTmMBFJuNZVXn\n- LoKY8-PoQxfsYcHuoESs\n 49 \N 189.186.41.207 26effc9a-645b-4b91-bb05-3ddcafa882d6 2019-03-08 01:50:47.767519 3405 59 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 62\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.1798E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.264E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2264E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 4758abff-74c3-4b1c-835b-3f9a87d5220c 2019-03-08 02:00:54.56901 3406 62 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 4758abff-74c3-4b1c-835b-3f9a87d5220c 2019-03-08 02:00:54.583364 3407 60 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 61\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.584E3\nphysical_cash: !ruby/object:BigDecimal 18:0.584E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 15f2c3c6-02c2-47d1-839c-4b231df68d49 2019-03-08 02:01:04.029823 3408 61 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 15f2c3c6-02c2-47d1-839c-4b231df68d49 2019-03-08 02:01:04.049458 3409 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-08 00:09:26.217855000 Z\n- &1 2019-03-08 01:40:34.868867000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-08 02:05:29.446173045 Z\nsign_in_count:\n- 70\n- 71\n 142 \N 189.186.41.207 af1a76a2-5023-4655-b7a6-d410c3ce7d73 2019-03-08 02:05:29.453215 3410 3 User \N \N 3 User \N update ---\nunique_session_id:\n- eksL6LQN718szjhHxs9f\n- GGabauQSftxw4Q1XVGzp\n 143 \N 189.186.41.207 af1a76a2-5023-4655-b7a6-d410c3ce7d73 2019-03-08 02:05:29.467456 3411 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-06 18:58:05.543497000 Z\n- &1 2019-03-07 16:45:41.439706000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-08 16:55:50.498393386 Z\nsign_in_count:\n- 39\n- 40\n 83 \N 189.186.41.207 a6ed512a-a123-407f-89ce-74bc51bd8af0 2019-03-08 16:55:50.517338 3412 2 User \N \N 2 User \N update ---\nunique_session_id:\n- V5fzxfy89nE4XKKxS9P3\n- 1pCXQ3zba-LMv1MMLfPt\n 84 \N 189.186.41.207 a6ed512a-a123-407f-89ce-74bc51bd8af0 2019-03-08 16:55:50.539927 3413 63 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.584E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 584.0 189.186.41.207 a40fd53e-e2bb-447f-a139-b4542e811c08 2019-03-08 16:56:25.643313 3414 64 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.264E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 264.0 189.186.41.207 d6c7176c-103a-4f2c-92ef-011964ceb7a4 2019-03-08 17:03:06.606461 3415 250 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 12\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 67\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4858152465545465'\n 1 \N 189.186.41.207 763a96a5-0841-425d-bd95-9e60fe904cf8 2019-03-08 17:13:49.056545 3416 250 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 12\n- 63\n 2 movimiento de efectivo por venta con folio PV1-V-37 189.186.41.207 763a96a5-0841-425d-bd95-9e60fe904cf8 2019-03-08 17:13:49.085327 3417 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-07 18:44:00.120079000 Z\n- &1 2019-03-07 23:04:35.775378000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-08 23:38:10.479654499 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3149972429\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3149979167\n mask_addr: 4294967295\nsign_in_count:\n- 79\n- 80\n 160 \N 187.192.222.31 aac7da21-d6a1-4d96-8002-3857ac6f5163 2019-03-08 23:38:10.507891 3418 4 User \N \N 4 User \N update ---\nunique_session_id:\n- p9NYqU5ZrszGmTus3sX1\n- ZQpkfMCpTDhzvuNrskf6\n 161 \N 187.192.222.31 aac7da21-d6a1-4d96-8002-3857ac6f5163 2019-03-08 23:38:10.530117 3419 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-03-02 00:03:11.356248000 Z\n- &1 2019-03-02 00:51:16.778722000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-09 00:36:27.644887633 Z\nsign_in_count:\n- 47\n- 48\n 96 \N 189.186.41.207 85e7076f-47bf-4f2f-8314-988a0fed3f55 2019-03-09 00:36:27.653059 3420 9 User \N \N 9 User \N update ---\nunique_session_id:\n- p4m8nhvQFuyDCbbDjq5z\n- VrBforcG9GmPiJrEaEei\n 97 \N 189.186.41.207 85e7076f-47bf-4f2f-8314-988a0fed3f55 2019-03-09 00:36:27.673518 3421 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-08 01:40:34.868867000 Z\n- &1 2019-03-08 02:05:29.446173000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-09 00:40:38.164276060 Z\nsign_in_count:\n- 71\n- 72\n 144 \N 189.186.41.207 250c480d-a5b4-4159-ae08-ad65b0da8bbc 2019-03-09 00:40:38.170463 3422 3 User \N \N 3 User \N update ---\nunique_session_id:\n- GGabauQSftxw4Q1XVGzp\n- 1yUVqzos_G9Jx39q7B4w\n 145 \N 189.186.41.207 250c480d-a5b4-4159-ae08-ad65b0da8bbc 2019-03-09 00:40:38.185218 3423 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-08 00:10:09.857000000 Z\n- &1 2019-03-08 01:50:47.749749000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-09 00:46:09.500848921 Z\nsign_in_count:\n- 24\n- 25\n 50 \N 189.186.41.207 44fcf4ee-acfc-4041-b409-85f8246769ae 2019-03-09 00:46:09.507685 3424 12 User \N \N 12 User \N update ---\nunique_session_id:\n- LoKY8-PoQxfsYcHuoESs\n- bddhGahhxC-DxXtJ78W8\n 51 \N 189.186.41.207 44fcf4ee-acfc-4041-b409-85f8246769ae 2019-03-09 00:46:09.524125 3425 227 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 63\namount: !ruby/object:BigDecimal 18:0.41293E3\ntax: !ruby/object:BigDecimal 18:0.6607E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-03-08\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-122\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 cf6e0471-2763-4684-ab02-26a120bd21e2 2019-03-09 00:46:52.390444 3426 149 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 189.186.41.207 cf6e0471-2763-4684-ab02-26a120bd21e2 2019-03-09 00:46:52.423508 3427 227 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 933ebaa2-bba4-4b35-99a3-3d943d141f90 2019-03-09 00:46:55.563145 3428 251 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 63\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.479E3\nmove_type: '1'\nsale_id: 227\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-122\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-122 189.186.41.207 933ebaa2-bba4-4b35-99a3-3d943d141f90 2019-03-09 00:46:55.596059 3429 44 Customer \N \N 12 User \N create ---\nnick_name: ELOIZA SARABIA\nphone: "(667) 234-4122"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ELOIZA SARABIA fue registrado. 189.186.41.207 c08911b6-b6a7-4641-80c9-786c8e55b4e0 2019-03-09 00:48:54.143552 3430 228 Sale \N \N 12 User \N create ---\ncustomer_id: 44\nuser_id: 12\nopen_cash_register_id: 63\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-03-08\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-123\nexpiration_date: 2019-04-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 dfc404cf-00a9-4693-88f8-8e7e61db47a8 2019-03-09 00:49:06.000102 3431 86 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.41.207 dfc404cf-00a9-4693-88f8-8e7e61db47a8 2019-03-09 00:49:06.033694 3432 252 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 63\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 228\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-123\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.5E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-123 189.186.41.207 d259c62b-2a96-4e67-bec9-34921cf456f9 2019-03-09 00:49:10.15409 3433 228 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 2836d5e2-f204-4039-83de-4214ebfcf7e4 2019-03-09 00:49:12.518235 3434 253 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 63\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '1'\nsale_id: 228\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-123 189.186.41.207 f282198c-5585-433b-8390-4de55b4cbf06 2019-03-09 00:49:53.617379 3435 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-08 02:05:29.446173000 Z\n- &1 2019-03-09 00:40:38.164276000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-09 01:02:34.071753649 Z\nsign_in_count:\n- 72\n- 73\n 146 \N 189.186.41.207 967c4924-3106-490e-b7a5-d7231fc4c90b 2019-03-09 01:02:34.080371 3436 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 1yUVqzos_G9Jx39q7B4w\n- ThJAB69uzETU4YPqTMgL\n 147 \N 189.186.41.207 967c4924-3106-490e-b7a5-d7231fc4c90b 2019-03-09 01:02:34.099776 3437 229 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 64\namount: !ruby/object:BigDecimal 18:0.1674E4\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1798E4\nstatus: 0\ndate_sale: 2019-03-08\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-104\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 0c2e902e-77dd-42ba-8a9c-17d29a2b8fdd 2019-03-09 01:03:57.32647 3438 509 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.15E2\n 2 \N 189.186.41.207 0c2e902e-77dd-42ba-8a9c-17d29a2b8fdd 2019-03-09 01:03:57.364293 3439 515 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.41.207 0c2e902e-77dd-42ba-8a9c-17d29a2b8fdd 2019-03-09 01:03:57.399973 3440 229 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 c5a9a9ba-7cee-4da9-98a5-ec280f068f73 2019-03-09 01:06:22.441488 3441 254 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 64\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1798E4\nmove_type: '1'\nsale_id: 229\ncardnumber: 3805\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-104\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-104 189.186.41.207 c5a9a9ba-7cee-4da9-98a5-ec280f068f73 2019-03-09 01:06:22.474705 3442 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-08 01:50:47.749749000 Z\n- &1 2019-03-09 00:46:09.500848000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-09 01:41:49.867020325 Z\nsign_in_count:\n- 25\n- 26\n 52 \N 189.186.41.207 a5cd9e1d-7322-475a-bac0-9ed4adce7935 2019-03-09 01:41:49.875985 3443 12 User \N \N 12 User \N update ---\nunique_session_id:\n- bddhGahhxC-DxXtJ78W8\n- s6U5kMCi37-gKytGBFi-\n 53 \N 189.186.41.207 a5cd9e1d-7322-475a-bac0-9ed4adce7935 2019-03-09 01:41:49.895043 3444 61 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 64\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.1798E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.264E3\nphysical_cash: !ruby/object:BigDecimal 18:0.264E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 3378c790-c4fc-43d5-8842-99309141793a 2019-03-09 01:58:06.511553 3445 64 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 3378c790-c4fc-43d5-8842-99309141793a 2019-03-09 01:58:06.529228 3446 62 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 63\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.1079E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.563E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1263E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 94839009-fa3a-41ae-adec-308c00230911 2019-03-09 02:07:28.957034 3447 63 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 94839009-fa3a-41ae-adec-308c00230911 2019-03-09 02:07:28.977041 3448 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-07 16:45:41.439706000 Z\n- &1 2019-03-08 16:55:50.498393000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-09 17:17:11.622794543 Z\nsign_in_count:\n- 40\n- 41\n 85 \N 189.186.41.207 c0113d5d-79dc-4fc4-8a9a-a35a3f4ae0fe 2019-03-09 17:17:11.65113 3449 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 1pCXQ3zba-LMv1MMLfPt\n- zxzR1Mw9s2HCvBpnXxwh\n 86 \N 189.186.41.207 c0113d5d-79dc-4fc4-8a9a-a35a3f4ae0fe 2019-03-09 17:17:11.674021 3450 65 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.563E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 563.0 189.186.41.207 f82fd08a-f594-419f-8fdd-15a27a6a1038 2019-03-09 17:19:49.537581 3451 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-09 00:40:38.164276000 Z\n- &1 2019-03-09 01:02:34.071753000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-09 17:45:30.130945965 Z\nsign_in_count:\n- 73\n- 74\n 148 \N 189.186.41.207 e944822c-f7c7-4841-92dc-c46b8cff0bbd 2019-03-09 17:45:30.137136 3452 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ThJAB69uzETU4YPqTMgL\n- x2j36H8ox6nhDSswr1ap\n 149 \N 189.186.41.207 e944822c-f7c7-4841-92dc-c46b8cff0bbd 2019-03-09 17:45:30.149993 3453 66 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.414E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 414.0 189.186.41.207 2a47dbac-7a3f-4488-80a6-8297456bd39d 2019-03-09 17:51:17.901916 3454 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-09 00:46:09.500848000 Z\n- &1 2019-03-09 01:41:49.867020000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-09 18:50:10.243749789 Z\nsign_in_count:\n- 26\n- 27\n 54 \N 189.186.41.207 ca4996a2-6efe-46e4-aa36-e39a078543e9 2019-03-09 18:50:10.272168 3455 12 User \N \N 12 User \N update ---\nunique_session_id:\n- s6U5kMCi37-gKytGBFi-\n- xPj6qhhD7_VjKMXyd-Lc\n 55 \N 189.186.41.207 ca4996a2-6efe-46e4-aa36-e39a078543e9 2019-03-09 18:50:10.293489 3456 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-09 01:02:34.071753000 Z\n- &1 2019-03-09 17:45:30.130945000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-09 19:23:36.755293863 Z\nsign_in_count:\n- 74\n- 75\n 150 \N 189.186.41.207 0cfa4624-3812-42d2-a9a6-2c01a018ed2d 2019-03-09 19:23:36.762992 3457 3 User \N \N 3 User \N update ---\nunique_session_id:\n- x2j36H8ox6nhDSswr1ap\n- qzwZyLYhF1CVs4AfSNzQ\n 151 \N 189.186.41.207 0cfa4624-3812-42d2-a9a6-2c01a018ed2d 2019-03-09 19:23:36.782419 3458 230 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 65\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-03-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-124\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 a1991c1e-0239-4066-826c-07245deb3638 2019-03-09 20:42:01.01461 3459 133 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.41.207 a1991c1e-0239-4066-826c-07245deb3638 2019-03-09 20:42:01.069729 3460 230 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 913baae2-9dd6-44a3-9705-5611a4495497 2019-03-09 20:42:51.727791 3461 255 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 65\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 230\ncardnumber: 3318\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-124\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-124 189.186.41.207 913baae2-9dd6-44a3-9705-5611a4495497 2019-03-09 20:42:51.764024 3462 231 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 66\namount: !ruby/object:BigDecimal 18:0.50776E3\ntax: !ruby/object:BigDecimal 18:0.8124E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2019-03-09\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-105\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 c798ee7c-012f-475b-b0b2-4a6762fa0da0 2019-03-09 20:50:00.553522 3463 326 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.41.207 c798ee7c-012f-475b-b0b2-4a6762fa0da0 2019-03-09 20:50:00.595034 3464 231 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 45e44890-e56c-4382-ade6-f7aac86db60f 2019-03-09 20:50:39.588459 3465 256 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 66\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.589E3\nmove_type: '1'\nsale_id: 231\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-105\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.411E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-105 189.186.41.207 45e44890-e56c-4382-ade6-f7aac86db60f 2019-03-09 20:50:39.61937 3466 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-09 01:41:49.867020000 Z\n- &1 2019-03-09 18:50:10.243749000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-09 21:16:53.148169221 Z\nsign_in_count:\n- 27\n- 28\n 56 \N 189.186.41.207 295dcf7e-05e0-425e-a9c9-7156dfc8a23c 2019-03-09 21:16:53.154506 3467 12 User \N \N 12 User \N update ---\nunique_session_id:\n- xPj6qhhD7_VjKMXyd-Lc\n- URzY8esxEiWWUCSmuXfx\n 57 \N 189.186.41.207 295dcf7e-05e0-425e-a9c9-7156dfc8a23c 2019-03-09 21:16:53.179898 3468 45 Customer \N \N 12 User \N create ---\nnick_name: MARTHA SARABIA\nphone: "(667) 321-5289"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARTHA SARABIA fue registrado. 189.186.41.207 7d44a325-d51a-4da9-84a6-f88746f039c5 2019-03-09 21:26:06.319656 3469 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-09 17:45:30.130945000 Z\n- &1 2019-03-09 19:23:36.755293000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-09 21:26:43.183647543 Z\nsign_in_count:\n- 75\n- 76\n 152 \N 189.186.41.207 1b8f8e72-851a-4331-9f6f-bc62d98e235b 2019-03-09 21:26:43.188914 3470 3 User \N \N 3 User \N update ---\nunique_session_id:\n- qzwZyLYhF1CVs4AfSNzQ\n- 52nSNLFkeHz1FNqzi1SF\n 153 \N 189.186.41.207 1b8f8e72-851a-4331-9f6f-bc62d98e235b 2019-03-09 21:26:43.203628 3471 232 Sale \N \N 3 User \N create ---\ncustomer_id: 45\nuser_id: 3\nopen_cash_register_id: 66\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-03-09\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-106\nexpiration_date: 2019-04-13\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 3b837415-bf47-4693-bc3d-81dc60c316fc 2019-03-09 21:27:08.698636 3472 416 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.207 3b837415-bf47-4693-bc3d-81dc60c316fc 2019-03-09 21:27:08.750315 3473 232 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-106 cancelada. 189.186.41.207 e8e8c726-6757-481c-bffb-d54241c1159b 2019-03-09 21:29:04.272739 3474 416 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.41.207 e8e8c726-6757-481c-bffb-d54241c1159b 2019-03-09 21:29:04.321547 3475 233 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 65\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-03-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-125\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 0e72c774-77d2-4364-912f-8760e05b3497 2019-03-09 21:37:19.136005 3476 211 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.207 0e72c774-77d2-4364-912f-8760e05b3497 2019-03-09 21:37:19.187569 3477 233 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 8c8bff4f-0282-4e29-af30-8a019a0e7252 2019-03-09 21:37:47.391472 4033 540 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 2b50ef4c-b3bb-4780-bdff-f3c6ac77a586 2019-03-21 23:45:39.938548 3478 257 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 65\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 233\ncardnumber: 2466\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-125\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-125 189.186.41.207 8c8bff4f-0282-4e29-af30-8a019a0e7252 2019-03-09 21:37:47.422075 3479 234 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 66\namount: !ruby/object:BigDecimal 18:0.70603E3\ntax: !ruby/object:BigDecimal 18:0.11296E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.81899E3\nstatus: 0\ndate_sale: 2019-03-09\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-107\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 62151f70-9df0-4085-bb71-f06573ee90eb 2019-03-09 22:13:11.373553 3480 329 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 62151f70-9df0-4085-bb71-f06573ee90eb 2019-03-09 22:13:11.408976 3481 234 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 dfdb69c0-9c57-4bd2-9264-5efa371ec92e 2019-03-09 22:13:39.621991 3482 258 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 66\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.81899E3\nmove_type: '1'\nsale_id: 234\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-107\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.18101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-107 189.186.41.207 dfdb69c0-9c57-4bd2-9264-5efa371ec92e 2019-03-09 22:13:39.654404 3483 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-09 18:50:10.243749000 Z\n- &1 2019-03-09 21:16:53.148169000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-09 22:21:08.549606064 Z\nsign_in_count:\n- 28\n- 29\n 58 \N 189.186.41.207 4bbe8cea-5af7-49c9-8595-109069a74231 2019-03-09 22:21:08.567357 3484 12 User \N \N 12 User \N update ---\nunique_session_id:\n- URzY8esxEiWWUCSmuXfx\n- 47su6-ngsBzth8rBFx7y\n 59 \N 189.186.41.207 4bbe8cea-5af7-49c9-8595-109069a74231 2019-03-09 22:21:08.585963 3485 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-09 19:23:36.755293000 Z\n- &1 2019-03-09 21:26:43.183647000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-09 22:21:31.869374611 Z\nsign_in_count:\n- 76\n- 77\n 154 \N 189.186.41.207 d1c29b30-ac95-4cc3-9508-be5a9127ae6d 2019-03-09 22:21:31.877724 3486 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 52nSNLFkeHz1FNqzi1SF\n- tLcRnYhat74Lpkyh74Z9\n 155 \N 189.186.41.207 d1c29b30-ac95-4cc3-9508-be5a9127ae6d 2019-03-09 22:21:31.896478 3487 259 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 66\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 66\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.21E3\nchange: !ruby/object:BigDecimal 18:0.21E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-28 189.186.41.207 83102f06-6034-4106-8074-34d04da3aa8e 2019-03-09 22:29:30.725169 3488 259 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 66\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 66\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.21E3\nchange: !ruby/object:BigDecimal 18:0.21E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.41.207 01ebb1f0-db84-4c52-b4df-f34b2ee92c2a 2019-03-09 22:29:37.261554 3489 260 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 66\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.159E3\nmove_type: '1'\nsale_id: 66\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.21E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-28 189.186.41.207 60594314-3772-4610-b219-882747e30f95 2019-03-09 22:29:46.770313 3490 66 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.207 7911bccd-00c0-4091-89dd-f5fe843341d0 2019-03-09 22:29:49.582154 3491 261 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 66\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.162E3\nmove_type: '1'\nsale_id: 82\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.162E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-38 189.186.41.207 f12fa8b7-82e8-4c58-9176-b702459254f6 2019-03-09 22:38:27.090016 3492 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-07 23:04:35.775378000 Z\n- &1 2019-03-08 23:38:10.479654000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-09 22:44:41.266580478 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3149972429\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3149979167\n mask_addr: 4294967295\nsign_in_count:\n- 80\n- 81\n 162 \N 187.192.222.31 d2aab14d-a6b5-415d-bb94-bc16a76bc954 2019-03-09 22:44:41.29601 3493 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZQpkfMCpTDhzvuNrskf6\n- yEFgmfTkHDnDwjyCKNMm\n 163 \N 187.192.222.31 d2aab14d-a6b5-415d-bb94-bc16a76bc954 2019-03-09 22:44:41.318072 3494 235 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 65\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-03-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-126\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 02f8ac3d-2b7d-4bad-88a2-17625348e995 2019-03-09 22:48:55.613137 3495 133 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.41.207 02f8ac3d-2b7d-4bad-88a2-17625348e995 2019-03-09 22:48:55.648997 3496 235 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 fb876230-c000-41a2-b724-8745811338bb 2019-03-09 22:49:40.865297 3497 262 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 65\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 235\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-126\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.469E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-126 189.186.41.207 fb876230-c000-41a2-b724-8745811338bb 2019-03-09 22:49:40.898921 3498 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-09 21:16:53.148169000 Z\n- &1 2019-03-09 22:21:08.549606000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-09 22:51:05.575576240 Z\nsign_in_count:\n- 29\n- 30\n 60 \N 189.186.41.207 22a5b41f-1152-4db1-9098-407587a9c19a 2019-03-09 22:51:05.581538 3500 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-09 21:26:43.183647000 Z\n- &1 2019-03-09 22:21:31.869374000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-09 22:51:42.501980820 Z\nsign_in_count:\n- 77\n- 78\n 156 \N 189.186.41.207 c77f6475-f25f-4e17-b3ae-83c2c98a2d8f 2019-03-09 22:51:42.508766 3501 3 User \N \N 3 User \N update ---\nunique_session_id:\n- tLcRnYhat74Lpkyh74Z9\n- 5yjvQkgzTWXTGVFX9boj\n 157 \N 189.186.41.207 c77f6475-f25f-4e17-b3ae-83c2c98a2d8f 2019-03-09 22:51:42.525993 3502 12 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 65\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida chio\nexpense_date: 2019-03-09\nexpense_code: PV1-E-12\n 1 Egreso por 50.0 registrado 189.186.41.207 797325b2-08e0-4511-8c12-33de2ced88d3 2019-03-09 22:55:13.897419 3503 263 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 65\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 12\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 797325b2-08e0-4511-8c12-33de2ced88d3 2019-03-09 22:55:13.926529 3504 264 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 66\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.489E3\nmove_type: '1'\nsale_id: 141\ncardnumber: 5207\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-60 189.186.41.207 3ed2ed99-b4bb-4974-a5ff-bc95f7e83890 2019-03-09 23:11:55.800809 3505 141 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.207 047afda8-38d2-4a80-bf95-d03ab4503fb2 2019-03-09 23:11:57.584333 3506 236 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 65\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-03-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-127\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 3d62e799-5ddb-42b6-be1b-1e38e97513d9 2019-03-09 23:32:27.384535 3507 200 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.41.207 3d62e799-5ddb-42b6-be1b-1e38e97513d9 2019-03-09 23:32:27.418321 3508 236 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 be5916c5-b0bc-4db7-9d61-e145162e75d3 2019-03-09 23:32:33.611325 3509 265 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 65\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 236\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-127\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-127 189.186.41.207 be5916c5-b0bc-4db7-9d61-e145162e75d3 2019-03-09 23:32:33.641194 3510 266 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 66\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 82\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-38 189.186.41.207 01cf0ff4-ed9d-431f-902c-1e2f077e716d 2019-03-09 23:33:06.481586 3511 82 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.207 637ea7dc-d3e3-4b38-a9be-30955e6be144 2019-03-09 23:33:07.613669 3512 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-09 22:21:08.549606000 Z\n- &1 2019-03-09 22:51:05.575576000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-09 23:38:12.334012195 Z\nsign_in_count:\n- 30\n- 31\n 62 \N 189.186.41.207 4fdbdf8d-e56d-42ac-b542-915ee9e13f4d 2019-03-09 23:38:12.340728 3513 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Qzmpx75fyGZQ35JbLsUM\n- YmbEb5ukctxeHW7sSNdL\n 63 \N 189.186.41.207 4fdbdf8d-e56d-42ac-b542-915ee9e13f4d 2019-03-09 23:38:12.353694 3514 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-09 22:21:31.869374000 Z\n- &1 2019-03-09 22:51:42.501980000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-09 23:38:40.707450024 Z\nsign_in_count:\n- 78\n- 79\n 158 \N 189.186.41.207 fd65ad20-a9f5-4606-9e12-6174d1e2025d 2019-03-09 23:38:40.712799 3515 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 5yjvQkgzTWXTGVFX9boj\n- KKQwzrvHxNU9DQnnZ-pJ\n 159 \N 189.186.41.207 fd65ad20-a9f5-4606-9e12-6174d1e2025d 2019-03-09 23:38:40.725671 3516 13 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 65\nquantity: !ruby/object:BigDecimal 18:0.878E3\nstatus: 1\nobservations: "$628 sueldo chio\\r\\n$250 aretes vendidos con tarjeta"\nexpense_date: 2019-03-09\nexpense_code: PV1-E-13\n 1 Egreso por 878.0 registrado 189.186.41.207 d3f6afeb-809c-4cf7-9222-8728476a5e08 2019-03-09 23:43:21.427337 3517 267 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 65\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.878E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 13\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 d3f6afeb-809c-4cf7-9222-8728476a5e08 2019-03-09 23:43:21.463283 3518 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-09 22:51:05.575576000 Z\n- &1 2019-03-09 23:38:12.334012000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-10 00:16:46.206681878 Z\nsign_in_count:\n- 31\n- 32\n 64 \N 189.186.41.207 77c164c0-659a-4502-ad40-b23c35104363 2019-03-10 00:16:46.214701 3519 12 User \N \N 12 User \N update ---\nunique_session_id:\n- YmbEb5ukctxeHW7sSNdL\n- F8DHhR6U-DLgWN8oq5Kt\n 65 \N 189.186.41.207 77c164c0-659a-4502-ad40-b23c35104363 2019-03-10 00:16:46.232012 3520 237 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 65\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-03-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-128\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 826a16b2-e1d9-4469-b3e4-656861801154 2019-03-10 00:28:59.801959 3521 243 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.41.207 826a16b2-e1d9-4469-b3e4-656861801154 2019-03-10 00:28:59.832348 3522 237 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 982885b5-261e-47a7-84a5-336b83b1564d 2019-03-10 00:29:05.740353 3571 68 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.438E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 438.0 189.186.41.207 683227d9-6e43-4096-aa0f-3871d5a2a76c 2019-03-10 20:55:22.328759 18969 1280 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 6ac24c18-711a-409a-9f26-8bf7b87df00c 2019-10-21 23:16:37.179157 3523 268 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 65\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 237\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-128\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.749E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-128 189.186.41.207 982885b5-261e-47a7-84a5-336b83b1564d 2019-03-10 00:29:05.774278 3524 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-09 22:51:42.501980000 Z\n- &1 2019-03-09 23:38:40.707450000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-10 00:59:53.882555890 Z\nsign_in_count:\n- 79\n- 80\n 160 \N 189.186.41.207 acc3b32d-79e8-4599-aaf4-0521e3840d94 2019-03-10 00:59:53.8906 3525 3 User \N \N 3 User \N update ---\nunique_session_id:\n- KKQwzrvHxNU9DQnnZ-pJ\n- CC1BTNxH3uWp3B_kuPVR\n 161 \N 189.186.41.207 acc3b32d-79e8-4599-aaf4-0521e3840d94 2019-03-10 00:59:53.907573 3526 238 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 66\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-03-09\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-108\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 0465ed01-5fe2-4297-85cd-31c6c561ced3 2019-03-10 01:00:16.461214 3527 495 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.41.207 0465ed01-5fe2-4297-85cd-31c6c561ced3 2019-03-10 01:00:16.499157 3528 238 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 36d230b7-255a-48d2-9db6-2e243e3da646 2019-03-10 01:00:35.459807 3529 269 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 66\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 238\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-108\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-108 189.186.41.207 36d230b7-255a-48d2-9db6-2e243e3da646 2019-03-10 01:00:35.489525 3530 239 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 66\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2019-03-09\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-109\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 4086df7b-05a7-40c2-bdd6-a7733189f7ae 2019-03-10 01:03:50.658921 3531 367 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 3 \N 189.186.41.207 4086df7b-05a7-40c2-bdd6-a7733189f7ae 2019-03-10 01:03:50.685547 3532 239 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 ae8cf37a-c0c4-4859-91f9-d9b1ae2f293c 2019-03-10 01:03:54.3026 3533 270 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 66\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 239\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-109\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E2\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-109 189.186.41.207 ae8cf37a-c0c4-4859-91f9-d9b1ae2f293c 2019-03-10 01:03:54.333785 3534 240 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 66\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-03-09\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-110\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 62f1f017-1850-4e09-8129-a8be4b133ea0 2019-03-10 01:08:38.787188 3535 477 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.41.207 62f1f017-1850-4e09-8129-a8be4b133ea0 2019-03-10 01:08:38.841857 3536 240 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 d7cfa97b-0a4a-4e0f-b569-aa03ee8c2f2b 2019-03-10 01:08:52.547343 3537 271 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 66\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 240\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-110\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-110 189.186.41.207 d7cfa97b-0a4a-4e0f-b569-aa03ee8c2f2b 2019-03-10 01:08:52.578829 3538 241 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 65\namount: !ruby/object:BigDecimal 18:0.94656E3\ntax: !ruby/object:BigDecimal 18:0.15145E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.109801E4\nstatus: 0\ndate_sale: 2019-03-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-129\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 17372694-d489-4a26-9a27-9bfbb9447997 2019-03-10 01:31:15.27347 3539 59 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.41.207 17372694-d489-4a26-9a27-9bfbb9447997 2019-03-10 01:31:15.311899 3540 201 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.207 17372694-d489-4a26-9a27-9bfbb9447997 2019-03-10 01:31:15.34317 3541 241 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 968bc7b2-914b-4c83-b85f-14df120c059d 2019-03-10 01:31:25.501297 3542 272 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 65\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.109801E4\nmove_type: '1'\nsale_id: 241\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-129\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.109801E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-129 189.186.41.207 968bc7b2-914b-4c83-b85f-14df120c059d 2019-03-10 01:31:25.533313 3543 242 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 66\namount: !ruby/object:BigDecimal 18:0.8181E3\ntax: !ruby/object:BigDecimal 18:0.1309E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.949E3\nstatus: 0\ndate_sale: 2019-03-09\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-111\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 59705f99-c77a-4d46-8ea5-552a99fc7194 2019-03-10 01:47:27.67376 3544 479 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.41.207 59705f99-c77a-4d46-8ea5-552a99fc7194 2019-03-10 01:47:27.708986 3546 273 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 66\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.949E3\nmove_type: '1'\nsale_id: 242\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-111\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-111 189.186.41.207 2d16ae9b-8922-4a45-8a1a-a0a3a495704e 2019-03-10 01:47:49.260202 3547 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-08 16:55:50.498393000 Z\n- &1 2019-03-09 17:17:11.622794000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-10 01:56:00.862240680 Z\nsign_in_count:\n- 41\n- 42\n 87 \N 189.186.41.207 51a178a4-af1a-41f0-ad55-e6b2009f89d8 2019-03-10 01:56:00.869635 3548 2 User \N \N 2 User \N update ---\nunique_session_id:\n- zxzR1Mw9s2HCvBpnXxwh\n- KQF9BoPjpwafsLZazKdF\n 88 \N 189.186.41.207 51a178a4-af1a-41f0-ad55-e6b2009f89d8 2019-03-10 01:56:00.884983 3549 63 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 65\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.398301E4\namount_out: !ruby/object:BigDecimal 18:0.928E3\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.18E4\ncash_fund: !ruby/object:BigDecimal 18:0.65E3\nphysical_cash: !ruby/object:BigDecimal 18:0.245E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 1870c0d5-c885-4a35-b524-c360c3ac9cc0 2019-03-10 02:01:59.735666 3550 65 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 1870c0d5-c885-4a35-b524-c360c3ac9cc0 2019-03-10 02:01:59.758357 3551 64 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 66\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.476399E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.4E4\ncash_fund: !ruby/object:BigDecimal 18:0.439E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4439E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 c8025ae2-8baa-4857-b35b-4b14303a6d04 2019-03-10 02:03:10.537237 3552 66 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 c8025ae2-8baa-4857-b35b-4b14303a6d04 2019-03-10 02:03:10.555784 3553 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-02-21 02:40:51.343138000 Z\n- &1 2019-02-23 20:23:44.779874000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-10 11:56:58.209079422 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3187432133\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3187437303\n mask_addr: 4294967295\nsign_in_count:\n- 10\n- 11\n 22 \N 189.252.110.247 30384a94-3492-4b81-ae00-2731751f85ce 2019-03-10 11:56:58.237556 3554 5 User \N \N 5 User \N update ---\nunique_session_id:\n- MMZwprA4NkLMoGC689Uz\n- 1Qpz63rZ6jdyMfFzZ3mU\n 23 \N 189.252.110.247 30384a94-3492-4b81-ae00-2731751f85ce 2019-03-10 11:56:58.258379 3555 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-09 23:38:12.334012000 Z\n- &1 2019-03-10 00:16:46.206681000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-10 17:30:13.326246735 Z\nsign_in_count:\n- 32\n- 33\n 66 \N 189.186.41.207 66d96445-5f92-41da-8c4f-26a35af019e9 2019-03-10 17:30:13.332415 3556 12 User \N \N 12 User \N update ---\nunique_session_id:\n- F8DHhR6U-DLgWN8oq5Kt\n- s8Ea9dxDBvJ7E_vAYCXx\n 67 \N 189.186.41.207 66d96445-5f92-41da-8c4f-26a35af019e9 2019-03-10 17:30:13.346388 3557 67 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.65E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 650.0 189.186.41.207 c86e2280-1298-4d18-a171-2486a238e5ad 2019-03-10 17:30:17.295883 3558 46 Customer \N \N 12 User \N create ---\nnick_name: GRACIELA ARREDONDO\nphone: "(667) 139-9060"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente GRACIELA ARREDONDO fue registrado. 189.186.41.207 1fec301c-2b9f-421a-962f-6fa667a020e9 2019-03-10 17:30:46.724525 3559 243 Sale \N \N 12 User \N create ---\ncustomer_id: 46\nuser_id: 12\nopen_cash_register_id: 67\namount: !ruby/object:BigDecimal 18:0.180948E4\ntax: !ruby/object:BigDecimal 18:0.28952E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2019-03-10\nsaletype: 2\nseller_id: 8\nsale_code: PV1-V-130\nexpiration_date: 2019-04-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 5749ac56-5418-433d-bb24-b78a894ab0c6 2019-03-10 17:31:53.4334 3560 55 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.41.207 5749ac56-5418-433d-bb24-b78a894ab0c6 2019-03-10 17:31:53.470236 3561 274 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 67\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 243\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-130\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-130 189.186.41.207 6599c545-61b2-4919-8db4-258b95ca708e 2019-03-10 17:32:36.502272 3562 243 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 976ac0a6-d32a-464d-90f9-262395cbc3bb 2019-03-10 17:32:38.392883 3563 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-09 23:38:40.707450000 Z\n- &1 2019-03-10 00:59:53.882555000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-10 18:04:03.792885141 Z\nsign_in_count:\n- 80\n- 81\n 162 \N 189.186.41.207 a83fcc28-1ad6-4a07-a959-5464314a6382 2019-03-10 18:04:03.79857 3564 3 User \N \N 3 User \N update ---\nunique_session_id:\n- CC1BTNxH3uWp3B_kuPVR\n- HQvrzr-LiFX1uyLxRNCE\n 163 \N 189.186.41.207 a83fcc28-1ad6-4a07-a959-5464314a6382 2019-03-10 18:04:03.812199 3565 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-10 00:16:46.206681000 Z\n- &1 2019-03-10 17:30:13.326246000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-10 18:04:29.741613293 Z\nsign_in_count:\n- 33\n- 34\n 68 \N 189.186.41.207 f9d998db-9404-4a22-8691-13f2e77d1848 2019-03-10 18:04:29.750046 3566 12 User \N \N 12 User \N update ---\nunique_session_id:\n- s8Ea9dxDBvJ7E_vAYCXx\n- dSsbb7WgnYE1ZhAE1UJ2\n 69 \N 189.186.41.207 f9d998db-9404-4a22-8691-13f2e77d1848 2019-03-10 18:04:29.769006 3567 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-10 00:59:53.882555000 Z\n- &1 2019-03-10 18:04:03.792885000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-10 20:12:57.345590735 Z\nsign_in_count:\n- 81\n- 82\n 164 \N 189.186.41.207 3c504655-4579-4b84-80d2-870c92a033af 2019-03-10 20:12:57.354198 3568 3 User \N \N 3 User \N update ---\nunique_session_id:\n- HQvrzr-LiFX1uyLxRNCE\n- DoJeyaaS3CmiRSyPqqqv\n 165 \N 189.186.41.207 3c504655-4579-4b84-80d2-870c92a033af 2019-03-10 20:12:57.374277 3569 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-03-03 18:48:47.066636000 Z\n- &1 2019-03-05 17:42:23.219006000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-10 20:53:31.341789068 Z\nsign_in_count:\n- 9\n- 10\n 20 \N 189.186.41.207 6b471ae0-f73c-4ef0-b7d0-8c03cd99a88b 2019-03-10 20:53:31.349526 3570 11 User \N \N 11 User \N update ---\nunique_session_id:\n- eeRTMzFHddhx5x-_dMxx\n- mXYG_v4zLZD8K1s4bf2N\n 21 \N 189.186.41.207 6b471ae0-f73c-4ef0-b7d0-8c03cd99a88b 2019-03-10 20:53:31.366809 3572 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-08 23:38:10.479654000 Z\n- &1 2019-03-09 22:44:41.266580000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-10 21:02:52.310626568 Z\nsign_in_count:\n- 81\n- 82\n 164 \N 187.192.222.31 855ffa3e-dced-4c7e-88e7-7ce1d11538a2 2019-03-10 21:02:52.317365 3573 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yEFgmfTkHDnDwjyCKNMm\n- mxzzcgZWoZYiYFnaSZKq\n 165 \N 187.192.222.31 855ffa3e-dced-4c7e-88e7-7ce1d11538a2 2019-03-10 21:02:52.330776 3574 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-10 17:30:13.326246000 Z\n- &1 2019-03-10 18:04:29.741613000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-10 21:15:29.212053247 Z\nsign_in_count:\n- 34\n- 35\n 70 \N 189.186.41.207 910528bf-e6f2-4089-af33-28606baa107d 2019-03-10 21:15:29.219229 3575 12 User \N \N 12 User \N update ---\nunique_session_id:\n- dSsbb7WgnYE1ZhAE1UJ2\n- Pwc-VexHCXvxECVrnzMb\n 71 \N 189.186.41.207 910528bf-e6f2-4089-af33-28606baa107d 2019-03-10 21:15:29.234871 3576 244 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 67\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-03-10\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-131\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 0c7aff8e-4f47-403d-b42e-a590a97696fb 2019-03-10 21:15:44.809585 3577 73 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 189.186.41.207 0c7aff8e-4f47-403d-b42e-a590a97696fb 2019-03-10 21:15:44.845395 3578 244 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 c1d2f9f3-f02b-43a1-bad7-ff035935132d 2019-03-10 21:16:39.163811 3579 275 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 67\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 244\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-131\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-131 189.186.41.207 c1d2f9f3-f02b-43a1-bad7-ff035935132d 2019-03-10 21:16:39.185954 3580 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-10 18:04:03.792885000 Z\n- &1 2019-03-10 20:12:57.345590000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-10 21:22:34.287049444 Z\nsign_in_count:\n- 82\n- 83\n 166 \N 189.186.41.207 3065efaf-4471-40d4-859c-8f286a9019d8 2019-03-10 21:22:34.29423 3581 3 User \N \N 3 User \N update ---\nunique_session_id:\n- DoJeyaaS3CmiRSyPqqqv\n- P4-LpugLEQ6h9KFzVxQM\n 167 \N 189.186.41.207 3065efaf-4471-40d4-859c-8f286a9019d8 2019-03-10 21:22:34.309972 3582 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-10 18:04:29.741613000 Z\n- &1 2019-03-10 21:15:29.212053000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-10 21:49:13.882578128 Z\nsign_in_count:\n- 35\n- 36\n 72 \N 189.186.41.207 66a8c381-9e12-4562-a684-7dddf68e767e 2019-03-10 21:49:13.890187 3583 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Pwc-VexHCXvxECVrnzMb\n- r5TFaR8d6-twPyC1uPrz\n 73 \N 189.186.41.207 66a8c381-9e12-4562-a684-7dddf68e767e 2019-03-10 21:49:13.909571 3584 65 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 67\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.1199E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.649E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1849E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 e3e379a1-826a-45a9-b155-85545efdf30a 2019-03-10 21:56:43.778699 3585 67 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 e3e379a1-826a-45a9-b155-85545efdf30a 2019-03-10 21:56:43.792715 3586 66 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 68\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.438E3\nphysical_cash: !ruby/object:BigDecimal 18:0.438E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 0910f794-96cd-46c3-a547-8661ce299940 2019-03-10 21:57:16.754975 3587 68 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 0910f794-96cd-46c3-a547-8661ce299940 2019-03-10 21:57:16.771495 3588 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-09 17:17:11.622794000 Z\n- &1 2019-03-10 01:56:00.862240000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-11 17:03:24.346077012 Z\nsign_in_count:\n- 42\n- 43\n 89 \N 189.186.41.207 f1dc4328-ba11-4a10-a6f8-44e3cff59eba 2019-03-11 17:03:24.393984 3589 2 User \N \N 2 User \N update ---\nunique_session_id:\n- KQF9BoPjpwafsLZazKdF\n- 2QcMHNYygcZURPDStDR2\n 90 \N 189.186.41.207 f1dc4328-ba11-4a10-a6f8-44e3cff59eba 2019-03-11 17:03:24.416951 3590 69 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.649E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 649.0 189.186.41.207 bbaf818c-a892-4cca-b08e-3ea414fbfcba 2019-03-11 17:07:45.772845 3591 70 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.438E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 438.0 189.186.41.207 1e4a0c83-a299-4b23-a2a4-9936ba675ba5 2019-03-11 17:14:46.988007 3592 276 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 48\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 171\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 994ee285-34ae-4613-9ee1-81d22b59bb24 2019-03-11 18:37:16.222486 3593 171 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 994ee285-34ae-4613-9ee1-81d22b59bb24 2019-03-11 18:37:16.255955 3594 276 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 48\n- 69\n 2 movimiento de efectivo por venta con folio PV2-V-74 189.186.41.207 994ee285-34ae-4613-9ee1-81d22b59bb24 2019-03-11 18:37:16.273638 3595 245 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 70\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2019-03-11\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-112\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 9b41ec04-49d3-4d59-8048-48c8921bae9e 2019-03-11 20:03:29.980321 3596 367 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 4 \N 189.186.41.207 9b41ec04-49d3-4d59-8048-48c8921bae9e 2019-03-11 20:03:30.030639 3597 245 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 96ab2364-d9dd-4180-bcfd-b5b0dcd0b18c 2019-03-11 20:03:37.017593 3598 277 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 70\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49E2\nmove_type: '1'\nsale_id: 245\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-112\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-112 189.186.41.207 96ab2364-d9dd-4180-bcfd-b5b0dcd0b18c 2019-03-11 20:03:37.040944 3599 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-10 01:56:00.862240000 Z\n- &1 2019-03-11 17:03:24.346077000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-11 21:05:35.780025721 Z\nsign_in_count:\n- 43\n- 44\n 91 \N 189.186.41.207 c6e95ff8-26dc-485a-af6b-8231684c396d 2019-03-11 21:05:35.810185 3600 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 2QcMHNYygcZURPDStDR2\n- o7Ez6Pw_TpAnCrasWEjf\n 92 \N 189.186.41.207 c6e95ff8-26dc-485a-af6b-8231684c396d 2019-03-11 21:05:35.831048 3601 495 Product \N \N 2 User \N create ---\nsku: BOL-495\nname: OHIP174\ndescription: BOLSA CLOE\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-495 fue creado. 189.186.41.207 4f3f8bf9-253e-4de2-95f3-e9e215116da7 2019-03-11 21:07:39.048843 3602 495 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000495'\n 2 \N 189.186.41.207 4f3f8bf9-253e-4de2-95f3-e9e215116da7 2019-03-11 21:07:39.09785 3603 520 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 495\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 4f3f8bf9-253e-4de2-95f3-e9e215116da7 2019-03-11 21:07:39.13566 3604 47 Purchase \N \N 2 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-26\namount: !ruby/object:BigDecimal 18:0.42475E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.42475E4\nobservations: ''\npurchase_date: 2019-03-11\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-26 por $ 4247.5 MXN creada. 189.186.41.207 a74059ec-1778-4188-859a-74d02b47592f 2019-03-11 21:09:22.390091 3605 520 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.41.207 a74059ec-1778-4188-859a-74d02b47592f 2019-03-11 21:09:22.416294 3606 48 Purchase \N \N 2 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-26\namount: !ruby/object:BigDecimal 18:0.42475E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.42475E4\nobservations: ''\npurchase_date: 2019-03-11\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-26 por $ 4247.5 MXN creada. 189.186.41.207 7bb78394-5840-4fe0-856c-07e5796f0c90 2019-03-11 21:09:22.995824 3607 246 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 69\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.511E3\ntotal: !ruby/object:BigDecimal 18:0.1188E4\nstatus: 0\ndate_sale: 2019-03-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-132\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 f3cc84fc-f511-4821-9b01-01bed6948cd7 2019-03-11 21:13:20.737246 3608 520 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.41.207 f3cc84fc-f511-4821-9b01-01bed6948cd7 2019-03-11 21:13:20.777951 3609 246 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 cbbfe68e-2d6a-4847-bc5b-a199da83fe77 2019-03-11 21:13:29.69035 3610 278 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 69\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1188E4\nmove_type: '1'\nsale_id: 246\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-132\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1188E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-132 189.186.41.207 cbbfe68e-2d6a-4847-bc5b-a199da83fe77 2019-03-11 21:13:29.716558 3611 14 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 69\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: COMIDA ROCIO\nexpense_date: 2019-03-11\nexpense_code: PV1-E-14\n 1 Egreso por 50.0 registrado 189.186.41.207 2785b836-e365-444d-81b0-c996772f2b54 2019-03-12 01:55:25.619886 3612 279 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 69\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 14\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 2785b836-e365-444d-81b0-c996772f2b54 2019-03-12 01:55:25.668043 3613 67 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 69\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1688E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.17E4\ncash_fund: !ruby/object:BigDecimal 18:0.587E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2287E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 d28e8c25-ed63-4646-b8fc-278e8b49fcaa 2019-03-12 01:58:06.448395 3614 69 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 d28e8c25-ed63-4646-b8fc-278e8b49fcaa 2019-03-12 01:58:06.472293 3615 68 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 70\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.49E2\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.487E3\nphysical_cash: !ruby/object:BigDecimal 18:0.487E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 31e9f7ca-0318-4a95-8564-a9553c3b6b95 2019-03-12 02:06:14.253273 3616 70 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 31e9f7ca-0318-4a95-8564-a9553c3b6b95 2019-03-12 02:06:14.273047 3617 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-11 17:03:24.346077000 Z\n- &1 2019-03-11 21:05:35.780025000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-12 18:26:52.537415518 Z\nsign_in_count:\n- 44\n- 45\n 93 \N 189.186.41.207 6fc1b497-6311-4b9c-abd9-787afe34ff62 2019-03-12 18:26:52.56239 3618 2 User \N \N 2 User \N update ---\nunique_session_id:\n- o7Ez6Pw_TpAnCrasWEjf\n- Ey8df5PgiQt94vHhXmvw\n 94 \N 189.186.41.207 6fc1b497-6311-4b9c-abd9-787afe34ff62 2019-03-12 18:26:52.590588 3619 71 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.587E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 587.0 189.186.41.207 90382135-0c78-42be-b735-4ad3808b137b 2019-03-12 18:27:06.741805 3620 280 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 18\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 fe5d9646-ec79-4f70-9c76-e8fadf378fe9 2019-03-12 18:27:32.86836 3621 280 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 2\n- 71\n 2 movimiento de efectivo por venta con folio PV1-V-16 189.186.41.207 fe5d9646-ec79-4f70-9c76-e8fadf378fe9 2019-03-12 18:27:32.897733 3622 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-09 22:44:41.266580000 Z\n- &1 2019-03-10 21:02:52.310626000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-12 23:31:15.640158804 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3149979167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934428\n mask_addr: 4294967295\nsign_in_count:\n- 82\n- 83\n 166 \N 200.68.135.220 a069d860-bc63-4dff-b810-61214061f4ac 2019-03-12 23:31:15.672099 3623 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mxzzcgZWoZYiYFnaSZKq\n- KpaVCyT__4MDtA6zGjB9\n 167 \N 200.68.135.220 a069d860-bc63-4dff-b810-61214061f4ac 2019-03-12 23:31:15.701775 3624 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-03-05 17:42:23.219006000 Z\n- &1 2019-03-10 20:53:31.341789000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-13 02:00:18.140476209 Z\nsign_in_count:\n- 10\n- 11\n 22 \N 189.186.41.207 d7158802-5e3f-47a3-96e6-2020ccff28ac 2019-03-13 02:00:18.147998 3625 11 User \N \N 11 User \N update ---\nunique_session_id:\n- mXYG_v4zLZD8K1s4bf2N\n- MKKYuGgG74e7mDqepfda\n 23 \N 189.186.41.207 d7158802-5e3f-47a3-96e6-2020ccff28ac 2019-03-13 02:00:18.161972 3626 72 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.487E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 487.0 189.186.41.207 d544357f-bbc6-480a-866b-be13b7e44f63 2019-03-13 02:00:22.412416 3627 69 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 71\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.587E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1087E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 a0a90293-8261-47d0-bbda-664dd6e1be18 2019-03-13 02:00:36.682151 3628 71 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 a0a90293-8261-47d0-bbda-664dd6e1be18 2019-03-13 02:00:36.69655 3629 70 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 72\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.487E3\nphysical_cash: !ruby/object:BigDecimal 18:0.487E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 9bfcc4c4-ca4e-4fd1-b529-2acf53f9652a 2019-03-13 02:00:47.983887 3630 72 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 9bfcc4c4-ca4e-4fd1-b529-2acf53f9652a 2019-03-13 02:00:48.002841 3631 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-10 21:02:52.310626000 Z\n- &1 2019-03-12 23:31:15.640158000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-13 03:23:01.544214789 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3149979167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934428\n mask_addr: 4294967295\nsign_in_count:\n- 83\n- 84\n 168 \N 200.68.135.220 5101441f-7f32-4177-88f7-192941b9fc22 2019-03-13 03:23:01.554799 3632 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KpaVCyT__4MDtA6zGjB9\n- 6P4WzD-wy2k2s2BnryCC\n 169 \N 200.68.135.220 5101441f-7f32-4177-88f7-192941b9fc22 2019-03-13 03:23:01.578368 3633 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-11 21:05:35.780025000 Z\n- &1 2019-03-12 18:26:52.537415000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-13 18:38:41.713397488 Z\nsign_in_count:\n- 45\n- 46\n 95 \N 189.186.41.207 306b740d-240c-4326-ae13-f680bfc3b2a4 2019-03-13 18:38:41.735308 3634 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Ey8df5PgiQt94vHhXmvw\n- c7VtYVrtd68U5JH3W7Z_\n 96 \N 189.186.41.207 306b740d-240c-4326-ae13-f680bfc3b2a4 2019-03-13 18:38:41.75536 3635 73 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.487E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 487.0 189.186.41.207 300c6239-43f6-4ddc-b107-d4e2b6ef0ae1 2019-03-13 19:27:26.966335 3636 247 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 73\namount: !ruby/object:BigDecimal 18:0.122241E4\ntax: !ruby/object:BigDecimal 18:0.19559E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1418E4\nstatus: 0\ndate_sale: 2019-03-13\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-113\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 66ef3365-f244-4059-a9d2-0c60668f7b51 2019-03-13 19:55:15.691666 3637 330 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 189.186.41.207 66ef3365-f244-4059-a9d2-0c60668f7b51 2019-03-13 19:55:15.731492 3638 419 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.41.207 66ef3365-f244-4059-a9d2-0c60668f7b51 2019-03-13 19:55:15.770841 3639 247 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 78a76c4e-aaef-4a59-99b9-fca933e6d7da 2019-03-13 19:57:12.148454 3640 281 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 73\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1418E4\nmove_type: '1'\nsale_id: 247\ncardnumber: 7946\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-113\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-113 189.186.41.207 78a76c4e-aaef-4a59-99b9-fca933e6d7da 2019-03-13 19:57:12.182952 3641 282 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 73\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.349E3\nmove_type: '1'\nsale_id: 72\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-29 189.186.41.207 cf7394cc-7430-49fe-8ee6-799cc622081d 2019-03-13 21:08:19.802091 3642 72 Sale \N \N 11 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.207 1c384ad2-49ef-47fd-abb1-68f3cb23f019 2019-03-13 21:08:21.392947 3643 47 Customer \N \N 11 User \N create ---\nnick_name: VICTORIA SANCHEZ\nphone: "(667) 428-7554"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente VICTORIA SANCHEZ fue registrado. 189.186.41.207 24e13859-c94e-45f9-a955-45a9e0d17644 2019-03-13 21:10:29.689686 3644 248 Sale \N \N 11 User \N create ---\ncustomer_id: 47\nuser_id: 11\nopen_cash_register_id: 73\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-03-13\nsaletype: 2\nseller_id: 7\nsale_code: PV2-V-114\nexpiration_date: 2019-04-17\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 10ad2b70-c681-4302-b230-ad10b2cd6d13 2019-03-13 21:10:46.807704 3645 503 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.41.207 10ad2b70-c681-4302-b230-ad10b2cd6d13 2019-03-13 21:10:46.85167 3646 283 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 73\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 248\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-114\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-114 189.186.41.207 7b6743c5-d44c-4f6c-ade6-5ec557984a50 2019-03-13 21:11:05.183885 3647 248 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 10b74132-9304-4f46-bfaf-426219c9a84c 2019-03-13 21:11:06.563265 3648 284 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 73\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 248\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.5E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-114 189.186.41.207 7f0e00c7-355e-406b-93f1-a6ff752b325f 2019-03-13 21:40:11.893703 3649 285 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 73\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 248\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-114 189.186.41.207 2f11b895-9092-4a4c-9de0-e670aff107bf 2019-03-13 21:40:47.564396 3650 248 Sale \N \N 11 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.207 e8efc31d-97da-488a-82b1-39b59e4fa52e 2019-03-13 21:40:51.119432 3651 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-12 23:31:15.640158000 Z\n- &1 2019-03-13 03:23:01.544214000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-13 21:57:05.804103533 Z\nsign_in_count:\n- 84\n- 85\n 170 \N 200.68.135.220 1eda082d-54d6-49f6-ba11-45b365793581 2019-03-13 21:57:05.832205 3652 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6P4WzD-wy2k2s2BnryCC\n- zBpXnx3hwPv_ATr8xmox\n 171 \N 200.68.135.220 1eda082d-54d6-49f6-ba11-45b365793581 2019-03-13 21:57:05.853107 3653 249 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 73\namount: !ruby/object:BigDecimal 18:0.111034E4\ntax: !ruby/object:BigDecimal 18:0.17766E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1288E4\nstatus: 0\ndate_sale: 2019-03-13\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-115\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 85ad7b0b-0344-4012-8344-372c828282b0 2019-03-13 22:19:44.208969 3654 419 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.41.207 85ad7b0b-0344-4012-8344-372c828282b0 2019-03-13 22:19:44.24128 3655 325 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.41.207 85ad7b0b-0344-4012-8344-372c828282b0 2019-03-13 22:19:44.279381 3656 249 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 a8cddeb8-67f2-4882-854e-93a8a613f2b4 2019-03-13 22:20:58.155257 3657 286 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 73\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1288E4\nmove_type: '1'\nsale_id: 249\ncardnumber: 1532\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-115\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-115 189.186.41.207 a8cddeb8-67f2-4882-854e-93a8a613f2b4 2019-03-13 22:20:58.19277 3658 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-03-10 20:53:31.341789000 Z\n- &1 2019-03-13 02:00:18.140476000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-13 23:26:28.102565342 Z\nsign_in_count:\n- 11\n- 12\n 24 \N 189.186.41.207 20fa701d-fb68-4bc7-a757-bc3619fa489c 2019-03-13 23:26:28.132189 3659 11 User \N \N 11 User \N update ---\nunique_session_id:\n- MKKYuGgG74e7mDqepfda\n- vnYonb5bigaUmZMysuUR\n 25 \N 189.186.41.207 20fa701d-fb68-4bc7-a757-bc3619fa489c 2019-03-13 23:26:28.162523 3660 15 Expense \N \N 11 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 73\nquantity: !ruby/object:BigDecimal 18:0.13E4\nstatus: 1\nobservations: SE ENTREGO A DANIELA\nexpense_date: 2019-03-13\nexpense_code: PV2-E-1\n 1 Egreso por 1300.0 registrado 189.186.41.207 3b756004-fc92-4fb8-8cac-76fed1414244 2019-03-13 23:29:05.97207 3661 287 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 73\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.13E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 15\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 3b756004-fc92-4fb8-8cac-76fed1414244 2019-03-13 23:29:06.008083 3662 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-10 20:12:57.345590000 Z\n- &1 2019-03-10 21:22:34.287049000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-14 00:18:33.210313174 Z\nsign_in_count:\n- 83\n- 84\n 168 \N 189.186.41.207 df77b647-07db-4f8a-9863-f721195bb384 2019-03-14 00:18:33.231714 3663 3 User \N \N 3 User \N update ---\nunique_session_id:\n- P4-LpugLEQ6h9KFzVxQM\n- EYpxX7zx_6ipY7iwzPcX\n 169 \N 189.186.41.207 df77b647-07db-4f8a-9863-f721195bb384 2019-03-14 00:18:33.244351 3664 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-10 21:15:29.212053000 Z\n- &1 2019-03-10 21:49:13.882578000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-14 00:19:26.961958162 Z\nsign_in_count:\n- 36\n- 37\n 74 \N 189.186.41.207 d501a320-29a3-48f4-9234-0d257236862d 2019-03-14 00:19:26.970299 3665 12 User \N \N 12 User \N update ---\nunique_session_id:\n- r5TFaR8d6-twPyC1uPrz\n- i_oxg-FGDmseDTKRDQAg\n 75 \N 189.186.41.207 d501a320-29a3-48f4-9234-0d257236862d 2019-03-14 00:19:26.989305 3666 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-10 21:22:34.287049000 Z\n- &1 2019-03-14 00:18:33.210313000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-14 01:47:15.292058630 Z\nsign_in_count:\n- 84\n- 85\n 170 \N 189.186.41.207 29533905-6299-4ca2-875e-28ba6bf72eb9 2019-03-14 01:47:15.298426 3667 3 User \N \N 3 User \N update ---\nunique_session_id:\n- EYpxX7zx_6ipY7iwzPcX\n- sFtdfFuvzZQWs4z8Dgci\n 171 \N 189.186.41.207 29533905-6299-4ca2-875e-28ba6bf72eb9 2019-03-14 01:47:15.31211 3668 71 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 73\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.4054E4\namount_out: !ruby/object:BigDecimal 18:0.13E4\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.535E3\nphysical_cash: !ruby/object:BigDecimal 18:0.535E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 837f3527-5db6-47aa-b846-a7f2686e37b7 2019-03-14 02:00:47.174933 3669 73 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 837f3527-5db6-47aa-b846-a7f2686e37b7 2019-03-14 02:00:47.189622 3670 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-12 18:26:52.537415000 Z\n- &1 2019-03-13 18:38:41.713397000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-14 16:48:46.968123127 Z\nsign_in_count:\n- 46\n- 47\n 97 \N 189.186.41.207 f4c0a7ce-1788-4284-8010-749a6d6f9d69 2019-03-14 16:48:47.000276 3671 2 User \N \N 2 User \N update ---\nunique_session_id:\n- c7VtYVrtd68U5JH3W7Z_\n- czktoQ3SG_BgpfFsaHTv\n 98 \N 189.186.41.207 f4c0a7ce-1788-4284-8010-749a6d6f9d69 2019-03-14 16:48:47.022231 3672 74 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.587E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 587.0 189.186.41.207 1acf083d-3424-4d98-a1cc-504533d14793 2019-03-14 16:50:10.323523 3673 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-03-13 02:00:18.140476000 Z\n- &1 2019-03-13 23:26:28.102565000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-14 17:14:57.464229992 Z\nsign_in_count:\n- 12\n- 13\n 26 \N 189.186.41.207 4a227b51-fcdc-4079-8800-afab89a2b261 2019-03-14 17:14:57.469643 3674 11 User \N \N 11 User \N update ---\nunique_session_id:\n- vnYonb5bigaUmZMysuUR\n- 6hNFikLRGyUj31Xy793Z\n 27 \N 189.186.41.207 4a227b51-fcdc-4079-8800-afab89a2b261 2019-03-14 17:14:57.482647 3675 75 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.535E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 535.0 189.186.41.207 e9ce9557-f225-450e-a753-edf9eb9ea946 2019-03-14 17:16:15.28777 3676 250 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 74\namount: !ruby/object:BigDecimal 18:0.103276E4\ntax: !ruby/object:BigDecimal 18:0.16524E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1198E4\nstatus: 0\ndate_sale: 2019-03-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-133\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 910dc6f8-eb76-4e9c-a17f-bd40a97c230f 2019-03-14 20:09:00.121191 3677 135 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.41.207 910dc6f8-eb76-4e9c-a17f-bd40a97c230f 2019-03-14 20:09:00.167928 3678 250 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-133 cancelada. 189.186.41.207 baeaa18a-6b41-4429-938c-5be4b1892dd0 2019-03-14 20:09:08.293852 3679 135 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.41.207 baeaa18a-6b41-4429-938c-5be4b1892dd0 2019-03-14 20:09:08.329971 3680 251 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 74\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-03-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-134\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 8afa6c89-06b5-41ac-8fbd-62a1a8e2dee7 2019-03-14 20:09:22.236775 3681 135 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.41.207 8afa6c89-06b5-41ac-8fbd-62a1a8e2dee7 2019-03-14 20:09:22.292093 3682 251 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 38998d38-b525-46d2-aa82-7c0f667f94c3 2019-03-14 20:10:56.712818 3683 288 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 74\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 251\ncardnumber: 9953\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-134\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-134 189.186.41.207 38998d38-b525-46d2-aa82-7c0f667f94c3 2019-03-14 20:10:56.738365 3684 252 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 75\namount: !ruby/object:BigDecimal 18:0.889E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.889E3\nstatus: 0\ndate_sale: 2019-03-14\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-116\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 b821ba30-2b2d-48ae-9816-87a263625434 2019-03-14 20:47:57.204558 3685 476 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.41.207 b821ba30-2b2d-48ae-9816-87a263625434 2019-03-14 20:47:57.243379 3686 252 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 27b48171-550c-49ec-b8fb-f6b1e8428e5a 2019-03-14 20:48:49.279777 3687 289 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 75\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.889E3\nmove_type: '1'\nsale_id: 252\ncardnumber: 8980\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-116\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-116 189.186.41.207 27b48171-550c-49ec-b8fb-f6b1e8428e5a 2019-03-14 20:48:49.301196 3688 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-14 00:18:33.210313000 Z\n- &1 2019-03-14 01:47:15.292058000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-14 23:44:12.006064029 Z\nsign_in_count:\n- 85\n- 86\n 172 \N 189.186.41.207 c73fd900-819e-4ac0-ad10-6bcc1a8141d6 2019-03-14 23:44:12.036119 3689 3 User \N \N 3 User \N update ---\nunique_session_id:\n- sFtdfFuvzZQWs4z8Dgci\n- Pqmw_AJsEDudYKbGsdn6\n 173 \N 189.186.41.207 c73fd900-819e-4ac0-ad10-6bcc1a8141d6 2019-03-14 23:44:12.059105 3690 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-10 21:49:13.882578000 Z\n- &1 2019-03-14 00:19:26.961958000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-14 23:44:41.956083831 Z\nsign_in_count:\n- 37\n- 38\n 76 \N 189.186.41.207 0ac90d76-24f6-4300-9b34-c48f90529766 2019-03-14 23:44:41.961102 3691 12 User \N \N 12 User \N update ---\nunique_session_id:\n- i_oxg-FGDmseDTKRDQAg\n- xt6BoiXM88xGsTVgPBQh\n 77 \N 189.186.41.207 0ac90d76-24f6-4300-9b34-c48f90529766 2019-03-14 23:44:41.973787 3692 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-13 03:23:01.544214000 Z\n- &1 2019-03-13 21:57:05.804103000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-14 23:51:43.196280832 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934428\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096271\n mask_addr: 4294967295\nsign_in_count:\n- 85\n- 86\n 172 \N 189.186.49.207 153c16ae-6025-4fbc-9f2e-3af3e2ac4251 2019-03-14 23:51:43.205686 3694 253 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 75\namount: !ruby/object:BigDecimal 18:0.61724E3\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2019-03-14\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-117\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 3693b5e0-948d-4d6a-ba20-1d856b087b23 2019-03-15 00:31:52.521926 3695 365 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.48E2\n- !ruby/object:BigDecimal 18:0.46E2\n 6 \N 189.186.41.207 3693b5e0-948d-4d6a-ba20-1d856b087b23 2019-03-15 00:31:52.558467 3696 253 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 814870ce-94a4-45ca-91f0-2d091d9917a0 2019-03-15 00:31:58.782756 3697 290 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 75\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 253\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-117\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-117 189.186.41.207 814870ce-94a4-45ca-91f0-2d091d9917a0 2019-03-15 00:31:58.811664 3698 254 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 75\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-03-14\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-118\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 360df4d6-a24b-481b-a831-c9e11e0ad124 2019-03-15 00:33:10.722114 3699 335 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.41.207 360df4d6-a24b-481b-a831-c9e11e0ad124 2019-03-15 00:33:10.752056 3700 254 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 d0471633-e9f2-4d35-b4bb-9f9d32228457 2019-03-15 00:33:15.44861 3701 291 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 75\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 254\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-118\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-118 189.186.41.207 d0471633-e9f2-4d35-b4bb-9f9d32228457 2019-03-15 00:33:15.4722 3702 255 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 74\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-03-14\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-135\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 007f7d0b-ba8a-4547-94fe-dbcf7e0460df 2019-03-15 00:58:28.909747 3703 135 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.41.207 007f7d0b-ba8a-4547-94fe-dbcf7e0460df 2019-03-15 00:58:28.950029 3704 255 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 4dcf06fd-4251-4005-904f-586413c9aa37 2019-03-15 00:58:36.460097 3705 292 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 74\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 255\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-135\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-135 189.186.41.207 4dcf06fd-4251-4005-904f-586413c9aa37 2019-03-15 00:58:36.485938 3706 293 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 74\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.369E3\nmove_type: '1'\nsale_id: 56\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.131E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-32 189.186.41.207 68432184-02d0-4733-9da1-6e3642878090 2019-03-15 01:44:58.308641 3707 56 Sale \N \N 12 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.207 b1ee169c-4e23-4022-b752-5f27455ac360 2019-03-15 01:44:59.610035 3708 72 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 74\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.1567E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.555E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1555E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 5eb94cd5-4de6-4077-a5b6-a532538d1fb3 2019-03-15 01:56:08.648332 3709 74 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 5eb94cd5-4de6-4077-a5b6-a532538d1fb3 2019-03-15 01:56:08.662823 3710 73 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 75\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.2388E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.535E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2035E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 7527d2bd-c813-4891-a645-5608a95f9f09 2019-03-15 02:00:00.371827 3711 75 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 7527d2bd-c813-4891-a645-5608a95f9f09 2019-03-15 02:00:00.385054 3712 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-13 21:57:05.804103000 Z\n- &1 2019-03-14 23:51:43.196280000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-15 02:07:12.621805946 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934428\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096271\n mask_addr: 4294967295\nsign_in_count:\n- 86\n- 87\n 174 \N 189.186.49.207 6a6babba-3d81-47d5-9c83-88c7b6847016 2019-03-15 02:07:12.628396 3713 4 User \N \N 4 User \N update ---\nunique_session_id:\n- s3SDyyoVzpWD1i52xry7\n- nhx_PwXkZrNLRMyp1_MM\n 175 \N 189.186.49.207 6a6babba-3d81-47d5-9c83-88c7b6847016 2019-03-15 02:07:12.643254 3714 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-03-13 23:26:28.102565000 Z\n- &1 2019-03-14 17:14:57.464229000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-15 16:48:13.411418388 Z\nsign_in_count:\n- 13\n- 14\n 28 \N 189.186.41.207 48e5bcae-e259-415e-a958-1131fc6b2717 2019-03-15 16:48:13.457694 3715 11 User \N \N 11 User \N update ---\nunique_session_id:\n- 6hNFikLRGyUj31Xy793Z\n- 15wrFoy2iV5kSjDnzCAZ\n 29 \N 189.186.41.207 48e5bcae-e259-415e-a958-1131fc6b2717 2019-03-15 16:48:13.484324 4034 541 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 2b50ef4c-b3bb-4780-bdff-f3c6ac77a586 2019-03-21 23:45:39.970128 3716 76 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.534E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 534.0 189.186.41.207 8e556717-2f6f-46c4-a71f-4d6e47e5e239 2019-03-15 16:48:19.165529 3717 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-03-14 17:14:57.464229000 Z\n- &1 2019-03-15 16:48:13.411418000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-15 16:56:07.524173873 Z\nsign_in_count:\n- 14\n- 15\n 30 \N 189.186.41.207 06e6098e-30ae-421e-a8f6-34444d6317e6 2019-03-15 16:56:07.533336 3718 11 User \N \N 11 User \N update ---\nunique_session_id:\n- 15wrFoy2iV5kSjDnzCAZ\n- 2Ad-n5nt_8zt_ANKiJnx\n 31 \N 189.186.41.207 06e6098e-30ae-421e-a8f6-34444d6317e6 2019-03-15 16:56:07.551277 3719 256 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 76\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-03-15\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-119\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 72fde837-96d9-4a8c-9ce6-4a04deb2d566 2019-03-15 18:26:10.431159 3720 515 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.41.207 72fde837-96d9-4a8c-9ce6-4a04deb2d566 2019-03-15 18:26:10.49647 3721 256 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 24b53228-14f9-4222-bd25-4ee938f3b583 2019-03-15 18:26:17.158151 3722 294 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 76\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 256\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-119\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-119 189.186.41.207 24b53228-14f9-4222-bd25-4ee938f3b583 2019-03-15 18:26:17.191025 3723 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-13 18:38:41.713397000 Z\n- &1 2019-03-14 16:48:46.968123000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-15 18:51:17.028633685 Z\nsign_in_count:\n- 47\n- 48\n 99 \N 189.186.41.207 e91300c8-8677-462d-8983-4a3bc5f28d6a 2019-03-15 18:51:17.060077 3724 2 User \N \N 2 User \N update ---\nunique_session_id:\n- czktoQ3SG_BgpfFsaHTv\n- FxauNPhxvhMneafB_zux\n 100 \N 189.186.41.207 e91300c8-8677-462d-8983-4a3bc5f28d6a 2019-03-15 18:51:17.0825 3725 257 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 76\namount: !ruby/object:BigDecimal 18:0.57672E3\ntax: !ruby/object:BigDecimal 18:0.9228E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-03-15\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-120\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 c27c243b-4eb2-47d3-9e8e-51fdbbf3c963 2019-03-15 18:51:55.924214 3726 436 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.41.207 c27c243b-4eb2-47d3-9e8e-51fdbbf3c963 2019-03-15 18:51:55.964329 3727 257 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 911fd62a-e5f0-4480-9094-2611b6629843 2019-03-15 18:52:10.746354 3728 295 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 76\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.669E3\nmove_type: '1'\nsale_id: 257\ncardnumber: 4670\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-120\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-120 189.186.41.207 911fd62a-e5f0-4480-9094-2611b6629843 2019-03-15 18:52:10.787362 3729 77 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.555E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 555.0 189.186.41.207 7068fa83-0e65-4798-b8f0-ff84db5a84ac 2019-03-15 18:54:23.377551 3730 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-14 23:51:43.196280000 Z\n- &1 2019-03-15 02:07:12.621805000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-15 18:56:31.159540477 Z\nsign_in_count:\n- 87\n- 88\n 176 \N 189.186.49.207 c399f664-206b-4e8f-a491-a0685298afcf 2019-03-15 18:56:31.165551 3731 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nhx_PwXkZrNLRMyp1_MM\n- qiNDWeiV3ufzV6c86ZtW\n 177 \N 189.186.49.207 c399f664-206b-4e8f-a491-a0685298afcf 2019-03-15 18:56:31.178454 3732 258 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 77\namount: !ruby/object:BigDecimal 18:0.232586E4\ntax: !ruby/object:BigDecimal 18:0.37213E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.269799E4\nstatus: 0\ndate_sale: 2019-03-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-136\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 109483e7-7077-4efc-aa88-efefa6d48632 2019-03-15 19:13:02.972746 3733 258 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.41.207 109483e7-7077-4efc-aa88-efefa6d48632 2019-03-15 19:13:03.003693 3734 169 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.41.207 109483e7-7077-4efc-aa88-efefa6d48632 2019-03-15 19:13:03.026997 3735 258 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 a24ea384-646e-4b2f-a90f-43245d4c60b4 2019-03-15 19:13:16.644513 3736 296 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 77\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1698E4\nmove_type: '1'\nsale_id: 258\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-136\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1698E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-136 189.186.41.207 a24ea384-646e-4b2f-a90f-43245d4c60b4 2019-03-15 19:13:16.667353 3737 297 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 77\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.99999E3\nmove_type: '1'\nsale_id: 258\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-136\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4858152465545465'\n 1 movimiento de efectivo por venta con folio PV1-V-136 189.186.41.207 e9a6223c-2734-4b7f-9e10-bdb8e1a72794 2019-03-15 19:13:42.727647 3738 259 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 77\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-03-15\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-137\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 a5fa6fbf-dd78-4a01-9f60-0be20f2f7f35 2019-03-15 20:11:40.341929 3741 298 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 77\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.749E3\nmove_type: '1'\nsale_id: 259\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-137\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.251E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-137 189.186.41.207 8b13e413-3678-4a99-8ea4-5daeabb1d68f 2019-03-15 20:12:08.982893 3742 260 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 77\namount: !ruby/object:BigDecimal 18:0.90431E3\ntax: !ruby/object:BigDecimal 18:0.14469E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1049E4\nstatus: 0\ndate_sale: 2019-03-15\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-138\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 e0972d7d-a0ad-4242-b986-fa53a3e46b4e 2019-03-15 20:29:54.654929 3743 181 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.41.207 e0972d7d-a0ad-4242-b986-fa53a3e46b4e 2019-03-15 20:29:54.70759 3744 260 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 b20066ed-03f8-4c13-b369-0cdee21bd9fd 2019-03-15 20:31:00.117534 3745 299 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 77\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1049E4\nmove_type: '1'\nsale_id: 260\ncardnumber: 9199\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-138\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-138 189.186.41.207 b20066ed-03f8-4c13-b369-0cdee21bd9fd 2019-03-15 20:31:00.151426 3746 497 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.41.207 31edc08c-12d2-493a-8d54-3e02ce10b02f 2019-03-15 20:49:11.352303 3747 18 Transfer \N \N 11 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-03-15\nuser_id: 11\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.41.207 0f379115-2689-4454-9ea7-ac3b3f27ca91 2019-03-15 20:49:24.753624 3748 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-15 02:07:12.621805000 Z\n- &1 2019-03-15 18:56:31.159540000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-15 20:51:28.598105367 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096271\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934017\n mask_addr: 4294967295\nsign_in_count:\n- 88\n- 89\n 178 \N 200.68.134.65 866a0e2f-35a2-4593-b98e-65ae6f7ed50e 2019-03-15 20:51:28.606612 3749 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qiNDWeiV3ufzV6c86ZtW\n- JEFp6Nh-RqSNwQPHQ15K\n 179 \N 200.68.134.65 866a0e2f-35a2-4593-b98e-65ae6f7ed50e 2019-03-15 20:51:28.621759 3750 18 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-03-15\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.41.207 d6f306f3-f28f-4ff9-b629-ab81a8b6c2e5 2019-03-15 20:51:57.002347 3751 521 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 485\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 d6f306f3-f28f-4ff9-b629-ab81a8b6c2e5 2019-03-15 20:51:57.024642 3752 521 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.207 d055b923-b148-41fa-ab16-8202008ec439 2019-03-15 20:54:38.682853 3753 19 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-03-15\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.41.207 149fc812-122f-4f95-9008-59e9d1953b01 2019-03-15 20:54:44.17112 3754 19 Transfer \N \N 11 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 11\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-03-15\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.41.207 5893e6b2-b89d-41a2-8951-876ad4d354e7 2019-03-15 20:56:16.796789 3755 497 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.41.207 5893e6b2-b89d-41a2-8951-876ad4d354e7 2019-03-15 20:56:16.822189 3756 476 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.41.207 697a6187-424f-4b96-8fc6-3fc3363b3ef2 2019-03-15 20:56:37.908623 3757 20 Transfer \N \N 11 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-03-15\nuser_id: 11\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.41.207 b8ce6313-1453-4ae4-ae51-9b1fe8237a40 2019-03-15 20:56:41.365043 3758 20 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-03-15\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.41.207 cf874e58-d63d-44d1-89a6-6e289f0d4d5a 2019-03-15 20:57:36.330533 3759 478 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.41.207 cf874e58-d63d-44d1-89a6-6e289f0d4d5a 2019-03-15 20:57:36.354998 3760 261 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 77\namount: !ruby/object:BigDecimal 18:0.889E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.889E3\nstatus: 0\ndate_sale: 2019-03-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-139\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 7c394410-8671-4edf-847a-cd2c31731ecf 2019-03-15 20:58:09.644364 3761 478 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.41.207 7c394410-8671-4edf-847a-cd2c31731ecf 2019-03-15 20:58:09.681085 3762 261 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 63ffc9fb-ea38-4fe5-84d7-a68a99766c7b 2019-03-15 20:58:15.686894 3763 300 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 77\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.889E3\nmove_type: '1'\nsale_id: 261\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-139\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.889E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-139 189.186.41.207 63ffc9fb-ea38-4fe5-84d7-a68a99766c7b 2019-03-15 20:58:15.715002 3831 18 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 78\nquantity: !ruby/object:BigDecimal 18:0.1E4\nstatus: 1\nobservations: SUELDO ANABELLY\nexpense_date: 2019-03-16\nexpense_code: PV2-E-2\n 1 Egreso por 1000.0 registrado 189.186.41.207 7891e6b6-8fa9-4990-a6ee-3840f2dffc0e 2019-03-17 01:28:22.382519 3764 496 Product \N \N 2 User \N create ---\nsku: PAN-496\nname: PNT-0006\ndescription: PANTALON VERDE APEACH\nprice_base: !ruby/object:BigDecimal 18:0.3345E3\nprice_sale: !ruby/object:BigDecimal 18:0.669E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-496 fue creado. 189.186.41.207 c2e013ea-610e-4158-83c6-52319888bc25 2019-03-15 21:02:35.577417 3765 496 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000496'\n 2 \N 189.186.41.207 c2e013ea-610e-4158-83c6-52319888bc25 2019-03-15 21:02:35.611823 3766 522 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 496\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.207 c2e013ea-610e-4158-83c6-52319888bc25 2019-03-15 21:02:35.641618 3767 49 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-28\namount: !ruby/object:BigDecimal 18:0.10035E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.10035E4\nobservations: ''\npurchase_date: 2019-03-15\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-28 por $ 1003.5 MXN creada. 189.186.41.207 76e68994-accc-4ac3-a8e1-8749fa4ecee1 2019-03-15 21:02:47.343474 3768 522 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.41.207 76e68994-accc-4ac3-a8e1-8749fa4ecee1 2019-03-15 21:02:47.368976 3769 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-15 18:56:31.159540000 Z\n- &1 2019-03-15 20:51:28.598105000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-15 23:22:53.019701061 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096271\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934017\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934017\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096271\n mask_addr: 4294967295\nsign_in_count:\n- 89\n- 90\n 180 \N 189.186.49.207 7e887173-cc00-4086-a1ac-9bdbed39bdbd 2019-03-15 23:22:53.031241 3770 4 User \N \N 4 User \N update ---\nunique_session_id:\n- JEFp6Nh-RqSNwQPHQ15K\n- XHwKdQsxZf9b889o5-9U\n 181 \N 189.186.49.207 7e887173-cc00-4086-a1ac-9bdbed39bdbd 2019-03-15 23:22:53.054077 3771 16 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 77\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: COMIDA ROCIO\nexpense_date: 2019-03-15\nexpense_code: PV1-E-15\n 1 Egreso por 50.0 registrado 189.186.41.207 94f9b8ff-8b76-4f38-88cf-987dccd547cc 2019-03-15 23:43:59.630255 3772 301 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 77\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 16\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 94f9b8ff-8b76-4f38-88cf-987dccd547cc 2019-03-15 23:43:59.65319 3773 48 Customer \N \N 2 User \N create ---\nnick_name: LINDA IBARRA\nphone: "(760) 315-0___"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LINDA IBARRA fue registrado. 189.186.41.207 7a82d082-25e0-4373-abb1-25591f2bc654 2019-03-16 00:18:49.298999 3774 262 Sale \N \N 2 User \N create ---\ncustomer_id: 48\nuser_id: 2\nopen_cash_register_id: 77\namount: !ruby/object:BigDecimal 18:0.80862E3\ntax: !ruby/object:BigDecimal 18:0.12938E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.938E3\nstatus: 0\ndate_sale: 2019-03-15\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-140\nexpiration_date: 2019-04-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 5b4b71f7-0ba9-408f-ac8b-4654b26d747b 2019-03-16 00:19:19.856443 3775 133 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.41.207 5b4b71f7-0ba9-408f-ac8b-4654b26d747b 2019-03-16 00:19:19.887143 3776 302 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 77\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 262\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-140\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.2E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-140 189.186.41.207 96a3fca5-69a5-4a40-a250-c195ffb77e9b 2019-03-16 00:19:42.250552 3777 262 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 3f28b059-b0f0-4779-a23f-e0abb0daa7d8 2019-03-16 00:19:43.760871 3778 49 Customer \N \N 2 User \N create ---\nnick_name: ILSE SUO\nphone: "(667) 409-3814"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.1E6\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ILSE SUO fue registrado. 189.186.41.207 31edfc68-2a58-425a-ba33-08bfd9ab9b35 2019-03-16 01:41:42.734806 3779 74 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 77\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.568499E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.913E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3913E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 eedf9216-6f7d-4823-9d7a-79c478482146 2019-03-16 01:57:23.216418 3780 77 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 eedf9216-6f7d-4823-9d7a-79c478482146 2019-03-16 01:57:23.232222 3781 263 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 76\namount: !ruby/object:BigDecimal 18:0.215176E4\ntax: !ruby/object:BigDecimal 18:0.20525E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.235701E4\nstatus: 0\ndate_sale: 2019-03-15\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-121\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 935352ee-3b91-4555-8436-d0d004328d52 2019-03-16 02:05:24.812066 3782 395 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 1 \N 189.186.41.207 935352ee-3b91-4555-8436-d0d004328d52 2019-03-16 02:05:24.844343 3783 477 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.41.207 935352ee-3b91-4555-8436-d0d004328d52 2019-03-16 02:05:24.872915 3784 497 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.41.207 935352ee-3b91-4555-8436-d0d004328d52 2019-03-16 02:05:24.901481 3785 263 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 150ea853-8558-4c91-a935-72c3d535b5f4 2019-03-16 02:05:36.506509 4082 420 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.42.241 e001aea5-8abb-4289-9af8-e1ec00c98938 2019-03-22 18:21:50.354126 3786 303 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 76\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2357E4\nmove_type: '1'\nsale_id: 263\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-121\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2357E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-121 189.186.41.207 150ea853-8558-4c91-a935-72c3d535b5f4 2019-03-16 02:05:36.53181 3787 304 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 76\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E-1\nmove_type: '1'\nsale_id: 263\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-121\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.235701E4\nchange: !ruby/object:BigDecimal 27:0.2357E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-121 189.186.41.207 edf06d0b-9dec-4cbf-af43-2a56d54baf4c 2019-03-16 02:06:06.843133 3788 75 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 76\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.392501E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.39E4\ncash_fund: !ruby/object:BigDecimal 18:0.383E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4283E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 a0e24fc0-2791-4702-a145-3235fc48e550 2019-03-16 02:12:04.019091 3789 76 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 a0e24fc0-2791-4702-a145-3235fc48e550 2019-03-16 02:12:04.031973 3790 78 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.383E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 383.0 189.186.41.207 e5a2b916-33c7-4522-be1b-f07d185d88c3 2019-03-16 18:48:24.480061 3791 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-14 01:47:15.292058000 Z\n- &1 2019-03-14 23:44:12.006064000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-16 18:49:12.330722814 Z\nsign_in_count:\n- 86\n- 87\n 174 \N 189.186.41.207 9d6c411b-7ef3-4860-ba1f-6fad89c2ca54 2019-03-16 18:49:12.340884 3792 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Pqmw_AJsEDudYKbGsdn6\n- wjauoAQq4eLF_LYpZV13\n 175 \N 189.186.41.207 9d6c411b-7ef3-4860-ba1f-6fad89c2ca54 2019-03-16 18:49:12.357866 3793 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-15 20:51:28.598105000 Z\n- &1 2019-03-15 23:22:53.019701000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-16 18:51:21.967515116 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934017\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096271\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096271\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092285\n mask_addr: 4294967295\nsign_in_count:\n- 90\n- 91\n 182 \N 189.186.34.61 c944eed9-4086-4b21-8e66-dabd32c2e2b9 2019-03-16 18:51:21.977821 3794 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XHwKdQsxZf9b889o5-9U\n- UQxFTGzMwvfzaLzK9W6_\n 183 \N 189.186.34.61 c944eed9-4086-4b21-8e66-dabd32c2e2b9 2019-03-16 18:51:22.002801 3795 264 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 78\namount: !ruby/object:BigDecimal 18:0.17155E3\ntax: !ruby/object:BigDecimal 18:0.2745E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.199E3\nstatus: 0\ndate_sale: 2019-03-16\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-122\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 24bcaf7f-cf7a-495b-a01b-8ce328b400ed 2019-03-16 18:52:44.847424 3796 339 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.41.207 24bcaf7f-cf7a-495b-a01b-8ce328b400ed 2019-03-16 18:52:44.876686 3797 264 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 d5ff1cbf-8957-49c0-be35-f64549c68482 2019-03-16 18:52:53.664687 3798 305 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 78\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.199E3\nmove_type: '1'\nsale_id: 264\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-122\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.199E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-122 189.186.41.207 d5ff1cbf-8957-49c0-be35-f64549c68482 2019-03-16 18:52:53.691173 3799 50 Customer \N \N 3 User \N create ---\nnick_name: TERESITA TAPIA\nphone: "(667) 175-4256"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente TERESITA TAPIA fue registrado. 189.186.41.207 1228d8a5-3982-4627-8a47-f976ce39c498 2019-03-16 18:54:30.918283 3800 265 Sale \N \N 3 User \N create ---\ncustomer_id: 50\nuser_id: 3\nopen_cash_register_id: 78\namount: !ruby/object:BigDecimal 18:0.163707E4\ntax: !ruby/object:BigDecimal 18:0.26193E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2019-03-16\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-123\nexpiration_date: 2019-04-20\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 87290958-0d64-4999-9683-364294490972 2019-03-16 18:54:45.050823 3801 385 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.41.207 87290958-0d64-4999-9683-364294490972 2019-03-16 18:54:45.082239 3802 306 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 78\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.57E3\nmove_type: '1'\nsale_id: 265\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-123\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.3E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-123 189.186.41.207 5d29e168-2d6d-4707-96db-c0e66af4581a 2019-03-16 18:54:48.925967 3803 265 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.207 df7b5180-1205-4558-b3d0-5dd5b40abf3d 2019-03-16 18:54:50.037827 3804 266 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 78\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-03-16\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-124\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 54fb9765-9132-43ab-b6cd-f523fcac8921 2019-03-16 20:28:54.253154 3805 419 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.41.207 54fb9765-9132-43ab-b6cd-f523fcac8921 2019-03-16 20:28:54.282605 3806 266 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 1109a692-7541-4206-9d1d-83dd002454a7 2019-03-16 20:29:07.096305 4083 277 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 52457c9a-4219-4dcf-9921-f1e786352e6e 2019-03-22 18:24:05.870662 3807 307 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 78\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 266\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-124\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-124 189.186.41.207 1109a692-7541-4206-9d1d-83dd002454a7 2019-03-16 20:29:07.117105 3808 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-14 00:19:26.961958000 Z\n- &1 2019-03-14 23:44:41.956083000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-16 20:30:35.831478516 Z\nsign_in_count:\n- 38\n- 39\n 78 \N 189.186.41.207 687d9477-b028-493e-95c5-b78ac59488b5 2019-03-16 20:30:35.837469 3809 12 User \N \N 12 User \N update ---\nunique_session_id:\n- xt6BoiXM88xGsTVgPBQh\n- kYLqaPZiUVFSFxUZfvq3\n 79 \N 189.186.41.207 687d9477-b028-493e-95c5-b78ac59488b5 2019-03-16 20:30:35.851199 3810 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-14 23:44:12.006064000 Z\n- &1 2019-03-16 18:49:12.330722000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-16 20:30:53.098994184 Z\nsign_in_count:\n- 87\n- 88\n 176 \N 189.186.41.207 75e02763-2c09-4b05-a702-29f5a819ff00 2019-03-16 20:30:53.108781 3811 3 User \N \N 3 User \N update ---\nunique_session_id:\n- wjauoAQq4eLF_LYpZV13\n- o_rYsjCKHQ6dZGCZz8iD\n 177 \N 189.186.41.207 75e02763-2c09-4b05-a702-29f5a819ff00 2019-03-16 20:30:53.12601 3812 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-14 16:48:46.968123000 Z\n- &1 2019-03-15 18:51:17.028633000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-16 21:47:50.683576844 Z\nsign_in_count:\n- 48\n- 49\n 101 \N 189.186.41.207 d6ccd0a0-205f-4ef7-b043-15e733914720 2019-03-16 21:47:50.690281 3813 2 User \N \N 2 User \N update ---\nunique_session_id:\n- FxauNPhxvhMneafB_zux\n- xVxmbUhahVJJgjzC3_w5\n 102 \N 189.186.41.207 d6ccd0a0-205f-4ef7-b043-15e733914720 2019-03-16 21:47:50.705129 3814 79 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.913E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 913.0 189.186.41.207 a9c33378-c7bb-416a-8f4d-b1be9f96e723 2019-03-16 21:48:19.059802 3815 267 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 79\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-03-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-141\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 caa53783-68ab-44f2-ac75-af41d1918965 2019-03-16 21:48:35.555776 3816 146 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.41.207 caa53783-68ab-44f2-ac75-af41d1918965 2019-03-16 21:48:35.594465 3817 267 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 9af73455-b74f-41aa-b065-70ff73380e95 2019-03-16 21:49:46.303084 3818 308 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 79\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 267\ncardnumber: 3593\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-141\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-141 189.186.41.207 9af73455-b74f-41aa-b065-70ff73380e95 2019-03-16 21:49:46.325063 3819 268 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 79\namount: !ruby/object:BigDecimal 18:0.90431E3\ntax: !ruby/object:BigDecimal 18:0.14469E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1049E4\nstatus: 0\ndate_sale: 2019-03-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-142\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.207 347659dc-5aad-4f89-a1ec-821c639fe390 2019-03-16 22:06:01.423729 3820 181 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.41.207 347659dc-5aad-4f89-a1ec-821c639fe390 2019-03-16 22:06:01.458355 3821 268 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.207 23ce9c75-7c3b-4d5d-92f3-bda0f8b5a5d5 2019-03-16 22:06:29.377996 3822 309 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 79\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1049E4\nmove_type: '1'\nsale_id: 268\ncardnumber: 7\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-142\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-142 189.186.41.207 23ce9c75-7c3b-4d5d-92f3-bda0f8b5a5d5 2019-03-16 22:06:29.408181 3823 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-14 23:44:41.956083000 Z\n- &1 2019-03-16 20:30:35.831478000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-16 22:32:15.182446572 Z\nsign_in_count:\n- 39\n- 40\n 80 \N 189.186.41.207 7b05a733-bee0-467a-a426-ff5c57fff4e8 2019-03-16 22:32:15.187523 3824 12 User \N \N 12 User \N update ---\nunique_session_id:\n- kYLqaPZiUVFSFxUZfvq3\n- GQfXYcfzCdT3YRSuy3XN\n 81 \N 189.186.41.207 7b05a733-bee0-467a-a426-ff5c57fff4e8 2019-03-16 22:32:15.19864 3825 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-16 20:30:35.831478000 Z\n- &1 2019-03-16 22:32:15.182446000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-16 23:26:58.739871883 Z\nsign_in_count:\n- 40\n- 41\n 82 \N 189.186.41.207 4f65e6ed-3f4e-45b7-8c8a-a23c6e58e76d 2019-03-16 23:26:58.745585 3826 12 User \N \N 12 User \N update ---\nunique_session_id:\n- GQfXYcfzCdT3YRSuy3XN\n- aCxYHJwCCJHW5AbSCANU\n 83 \N 189.186.41.207 4f65e6ed-3f4e-45b7-8c8a-a23c6e58e76d 2019-03-16 23:26:58.757787 3827 17 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 79\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida rocio\nexpense_date: 2019-03-16\nexpense_code: PV1-E-16\n 1 Egreso por 50.0 registrado 189.186.41.207 c3a74a60-ec95-49af-95f9-4eaafdf16ed0 2019-03-17 01:26:10.63652 3828 310 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 79\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 17\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 c3a74a60-ec95-49af-95f9-4eaafdf16ed0 2019-03-17 01:26:10.656784 3829 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-16 18:49:12.330722000 Z\n- &1 2019-03-16 20:30:53.098994000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-17 01:27:57.809080461 Z\nsign_in_count:\n- 88\n- 89\n 178 \N 189.186.41.207 537af338-b3ed-4867-8a70-f72aac994243 2019-03-17 01:27:57.816736 3830 3 User \N \N 3 User \N update ---\nunique_session_id:\n- o_rYsjCKHQ6dZGCZz8iD\n- raKNoJw8z_8dmo3Hx6Sb\n 179 \N 189.186.41.207 537af338-b3ed-4867-8a70-f72aac994243 2019-03-17 01:27:57.83319 4104 12 User \N \N 12 User \N update ---\nunique_session_id:\n- sd4TPrYXa28W-u4VJ65f\n- 7XJzxvUwxVSvYnxSJy_5\n 93 \N 189.186.42.241 b9e8b11b-54ca-43bf-ba5d-62df7fdbc7cb 2019-03-22 23:37:04.647696 3832 311 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 78\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 18\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.207 7891e6b6-8fa9-4990-a6ee-3840f2dffc0e 2019-03-17 01:28:22.410216 3833 76 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 78\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1568E4\namount_out: !ruby/object:BigDecimal 18:0.1E4\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.446E3\nphysical_cash: !ruby/object:BigDecimal 18:0.946E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.207 d644d8a9-d425-4937-abe1-166a0da7c92a 2019-03-17 01:53:54.352981 3834 78 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 d644d8a9-d425-4937-abe1-166a0da7c92a 2019-03-17 01:53:54.370827 3835 77 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 79\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1518E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.863E3\nphysical_cash: !ruby/object:BigDecimal 18:0.863E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.207 f0f46c53-0b97-4805-b52f-aced7669497d 2019-03-17 02:02:06.551747 3836 79 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.207 f0f46c53-0b97-4805-b52f-aced7669497d 2019-03-17 02:02:06.567231 3837 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-03-15 16:48:13.411418000 Z\n- &1 2019-03-15 16:56:07.524173000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-17 17:04:33.614871966 Z\nsign_in_count:\n- 15\n- 16\n 32 \N 189.186.41.207 8acc7e6b-ce98-488b-8e57-78d015925af0 2019-03-17 17:04:33.654676 3838 11 User \N \N 11 User \N update ---\nunique_session_id:\n- 2Ad-n5nt_8zt_ANKiJnx\n- X_xWscQAjd1gpywbaC_Q\n 33 \N 189.186.41.207 8acc7e6b-ce98-488b-8e57-78d015925af0 2019-03-17 17:04:33.679391 3839 80 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.446E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 446.0 189.186.41.207 6cdd7df3-cace-4909-a529-e0cc7d4bc22b 2019-03-17 17:05:42.401366 3840 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-15 23:22:53.019701000 Z\n- &1 2019-03-16 18:51:21.967515000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-17 20:16:46.912379540 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096271\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092285\n mask_addr: 4294967295\nsign_in_count:\n- 91\n- 92\n 184 \N 189.186.34.61 8cc700ed-9e95-4b71-bd7d-664e5dcd1d45 2019-03-17 20:16:46.919104 3841 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UQxFTGzMwvfzaLzK9W6_\n- 8Uz39A5eYdWW2PVH29Fz\n 185 \N 189.186.34.61 8cc700ed-9e95-4b71-bd7d-664e5dcd1d45 2019-03-17 20:16:46.934242 3842 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-16 20:30:53.098994000 Z\n- &1 2019-03-17 01:27:57.809080000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-17 20:55:38.925284665 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\nsign_in_count:\n- 89\n- 90\n 180 \N 189.186.42.241 467bce7b-f196-4a2c-841a-5c0cfc1f9c1e 2019-03-17 20:55:38.934579 3843 3 User \N \N 3 User \N update ---\nunique_session_id:\n- raKNoJw8z_8dmo3Hx6Sb\n- wxqsitua5ZxrS7Bz7Zxz\n 181 \N 189.186.42.241 467bce7b-f196-4a2c-841a-5c0cfc1f9c1e 2019-03-17 20:55:38.954621 3844 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-16 22:32:15.182446000 Z\n- &1 2019-03-16 23:26:58.739871000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-17 21:19:03.734676982 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\nsign_in_count:\n- 41\n- 42\n 84 \N 189.186.42.241 ba17a7b9-89c7-4176-bd16-9e1fa51d5afd 2019-03-17 21:19:03.740935 3845 12 User \N \N 12 User \N update ---\nunique_session_id:\n- aCxYHJwCCJHW5AbSCANU\n- srhSsxssP3eAM14XxgTz\n 85 \N 189.186.42.241 ba17a7b9-89c7-4176-bd16-9e1fa51d5afd 2019-03-17 21:19:03.754691 3846 81 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.863E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 863.0 189.186.42.241 7031e358-6d65-43ad-9b47-926b177f1290 2019-03-17 21:19:07.095234 3847 269 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 81\namount: !ruby/object:BigDecimal 18:0.42155E3\ntax: !ruby/object:BigDecimal 18:0.6745E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-03-17\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-143\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 e177720c-8cec-4754-b0c3-a8ad4ed0f71d 2019-03-17 21:19:28.287122 3848 134 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.42.241 e177720c-8cec-4754-b0c3-a8ad4ed0f71d 2019-03-17 21:19:28.332525 3849 269 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 41fc8aab-7f77-4266-9f48-4f8aea25770e 2019-03-17 21:19:31.807253 3850 312 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 81\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.489E3\nmove_type: '1'\nsale_id: 269\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-143\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-143 189.186.42.241 41fc8aab-7f77-4266-9f48-4f8aea25770e 2019-03-17 21:19:31.830298 3851 78 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 81\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.489E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.85E3\nphysical_cash: !ruby/object:BigDecimal 18:0.135E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 baa662ea-ae32-4ae5-8e61-f50cc2523abd 2019-03-17 21:45:29.098154 3852 81 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 baa662ea-ae32-4ae5-8e61-f50cc2523abd 2019-03-17 21:45:29.123857 3853 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-03-15 16:56:07.524173000 Z\n- &1 2019-03-17 17:04:33.614871000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-17 21:55:07.334465637 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\nsign_in_count:\n- 16\n- 17\n 34 \N 189.186.42.241 f9c88e0e-3e69-442d-8a44-2faaa6edcf87 2019-03-17 21:55:07.342668 3854 11 User \N \N 11 User \N update ---\nunique_session_id:\n- X_xWscQAjd1gpywbaC_Q\n- Hycga_pEfvLeNh912zHF\n 35 \N 189.186.42.241 f9c88e0e-3e69-442d-8a44-2faaa6edcf87 2019-03-17 21:55:07.359087 3855 79 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 80\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.446E3\nphysical_cash: !ruby/object:BigDecimal 18:0.446E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.42.241 d6994fd1-4688-4e2c-bb9f-24863c4f6e25 2019-03-17 21:55:34.623524 3856 80 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 d6994fd1-4688-4e2c-bb9f-24863c4f6e25 2019-03-17 21:55:34.63675 3857 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-03-17 17:04:33.614871000 Z\n- &1 2019-03-17 21:55:07.334465000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-19 17:02:41.967233674 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\nsign_in_count:\n- 17\n- 18\n 36 \N 189.186.42.241 31107acb-00f4-4c5c-92a9-b5b02752c109 2019-03-19 17:02:42.015417 3858 11 User \N \N 11 User \N update ---\nunique_session_id:\n- Hycga_pEfvLeNh912zHF\n- _fuM95B9Cswsjwvssv9M\n 37 \N 189.186.42.241 31107acb-00f4-4c5c-92a9-b5b02752c109 2019-03-19 17:02:42.047631 3859 82 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.446E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 446.0 189.186.42.241 b7fe7dd5-853f-4855-a31b-f65509c7ca71 2019-03-19 17:02:45.657874 3860 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-15 18:51:17.028633000 Z\n- &1 2019-03-16 21:47:50.683576000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-19 18:04:14.604556504 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\nsign_in_count:\n- 49\n- 50\n 103 \N 189.186.42.241 6ebd67b2-b1aa-437f-8927-b7d05ff7532d 2019-03-19 18:04:14.613702 3861 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xVxmbUhahVJJgjzC3_w5\n- HoFiydBwz5LusVudxr9W\n 104 \N 189.186.42.241 6ebd67b2-b1aa-437f-8927-b7d05ff7532d 2019-03-19 18:04:14.645899 3862 83 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.85E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 850.0 189.186.42.241 7cc12602-c803-42e0-b588-52e4dcd3d4a7 2019-03-19 18:05:11.832704 3863 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-03-17 21:55:07.334465000 Z\n- &1 2019-03-19 17:02:41.967233000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-19 21:01:13.194623298 Z\nsign_in_count:\n- 18\n- 19\n 38 \N 189.186.42.241 33696acc-ea8d-4030-8f9a-a1912a01c996 2019-03-19 21:01:13.202779 3864 11 User \N \N 11 User \N update ---\nunique_session_id:\n- _fuM95B9Cswsjwvssv9M\n- 31fbdaqyWzTvt6ErZdH4\n 39 \N 189.186.42.241 33696acc-ea8d-4030-8f9a-a1912a01c996 2019-03-19 21:01:13.222435 3865 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-16 18:51:21.967515000 Z\n- &1 2019-03-17 20:16:46.912379000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-19 22:02:35.582273803 Z\nsign_in_count:\n- 92\n- 93\n 186 \N 189.186.34.61 bd23edd3-ff0b-4fce-9407-5b1559850f5a 2019-03-19 22:02:35.590483 3866 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8Uz39A5eYdWW2PVH29Fz\n- u2PY5emwQ51aKZpQQBf7\n 187 \N 189.186.34.61 bd23edd3-ff0b-4fce-9407-5b1559850f5a 2019-03-19 22:02:35.608235 3867 313 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 47\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 165\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4858152465545465'\n 1 \N 189.186.42.241 acc64dab-f18b-460b-9f94-02777b3042cc 2019-03-19 23:17:01.299146 3868 313 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 47\n- 83\n 2 movimiento de efectivo por venta con folio PV1-V-92 189.186.42.241 acc64dab-f18b-460b-9f94-02777b3042cc 2019-03-19 23:17:01.335026 3869 314 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 15\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 79\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4858152465545465'\n 1 \N 189.186.42.241 d02cfcbe-c77c-4b24-aaff-e66822d45880 2019-03-19 23:19:05.392206 3870 79 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.42.241 d02cfcbe-c77c-4b24-aaff-e66822d45880 2019-03-19 23:19:05.430008 3871 314 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 15\n- 83\n 2 movimiento de efectivo por venta con folio PV2-V-35 189.186.42.241 d02cfcbe-c77c-4b24-aaff-e66822d45880 2019-03-19 23:19:05.451076 3872 315 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 15\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 78\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4858152465545465'\n 1 \N 189.186.42.241 bcb9231d-6e5f-417c-89e7-298376770bb8 2019-03-19 23:44:25.760426 3873 315 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 15\n- 83\n 2 movimiento de efectivo por venta con folio PV2-V-34 189.186.42.241 bcb9231d-6e5f-417c-89e7-298376770bb8 2019-03-19 23:44:25.801684 3874 316 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 15\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 78\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4858152465545465'\n 1 \N 189.186.42.241 91fdd772-1bd9-4384-9986-d4cd6202a583 2019-03-20 00:09:04.590627 3875 316 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 15\n- 83\n 2 movimiento de efectivo por venta con folio PV2-V-34 189.186.42.241 91fdd772-1bd9-4384-9986-d4cd6202a583 2019-03-20 00:09:04.625206 3876 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-17 01:27:57.809080000 Z\n- &1 2019-03-17 20:55:38.925284000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-20 00:38:02.064490972 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\nsign_in_count:\n- 90\n- 91\n 182 \N 189.186.42.241 0e212411-98db-402e-b8bc-99a3ae00b19f 2019-03-20 00:38:02.074089 3877 3 User \N \N 3 User \N update ---\nunique_session_id:\n- wxqsitua5ZxrS7Bz7Zxz\n- yr2faF5nTuxNLs3BqM9_\n 183 \N 189.186.42.241 0e212411-98db-402e-b8bc-99a3ae00b19f 2019-03-20 00:38:02.092769 3966 53 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-32\namount: !ruby/object:BigDecimal 18:0.15522E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.15522E4\nobservations: ''\npurchase_date: 2019-03-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-32 por $ 1552.2 MXN creada. 189.186.42.241 2527b206-6ea9-4795-a126-2e6d4806e74b 2019-03-21 22:37:44.473615 3878 270 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 82\namount: !ruby/object:BigDecimal 18:0.5681E3\ntax: !ruby/object:BigDecimal 18:0.909E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.659E3\nstatus: 0\ndate_sale: 2019-03-19\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-125\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 da07c16e-57df-407b-ac9d-3414308ac68d 2019-03-20 00:41:21.391603 3879 300 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 189.186.42.241 da07c16e-57df-407b-ac9d-3414308ac68d 2019-03-20 00:41:21.438012 3880 270 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 5df7a967-c677-4895-a6a3-aaa5376ef604 2019-03-20 00:41:58.567818 3881 317 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 82\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.659E3\nmove_type: '1'\nsale_id: 270\ncardnumber: 949\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-125\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-125 189.186.42.241 5df7a967-c677-4895-a6a3-aaa5376ef604 2019-03-20 00:41:58.597782 3882 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-16 23:26:58.739871000 Z\n- &1 2019-03-17 21:19:03.734676000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-20 01:36:38.637333173 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\nsign_in_count:\n- 42\n- 43\n 86 \N 189.186.42.241 62dde01c-1a97-43a7-a8a0-3cc6032d3c60 2019-03-20 01:36:38.668158 3883 12 User \N \N 12 User \N update ---\nunique_session_id:\n- srhSsxssP3eAM14XxgTz\n- Q_zu68s-LtSxdL5yeMrs\n 87 \N 189.186.42.241 62dde01c-1a97-43a7-a8a0-3cc6032d3c60 2019-03-20 01:36:38.698009 3884 271 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 82\namount: !ruby/object:BigDecimal 18:0.129224E4\ntax: !ruby/object:BigDecimal 18:0.20676E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2019-03-19\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-126\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 627b2223-b659-493f-accc-1d618f76f29a 2019-03-20 01:59:48.229065 3885 508 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.42.241 627b2223-b659-493f-accc-1d618f76f29a 2019-03-20 01:59:48.268706 3886 271 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 0037bc8c-6d5a-48a0-9742-43abe14dac7c 2019-03-20 02:00:02.913216 3887 318 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 82\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 271\ncardnumber: 5207\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-126\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-126 189.186.42.241 0037bc8c-6d5a-48a0-9742-43abe14dac7c 2019-03-20 02:00:02.94796 3888 80 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 82\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.2158E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.406E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1106E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.42.241 ca8b95de-f4f4-45be-b8f2-b0a68dbb8f8a 2019-03-20 02:04:11.598132 3889 82 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 ca8b95de-f4f4-45be-b8f2-b0a68dbb8f8a 2019-03-20 02:04:11.61456 3890 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-17 21:19:03.734676000 Z\n- &1 2019-03-20 01:36:38.637333000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-20 02:08:01.647344351 Z\nsign_in_count:\n- 43\n- 44\n 88 \N 189.186.42.241 92b2c945-c28d-48b1-b53f-91d577b3e3f0 2019-03-20 02:08:01.653091 3891 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Q_zu68s-LtSxdL5yeMrs\n- vDHCyC1cpsE8-6JPUuGS\n 89 \N 189.186.42.241 92b2c945-c28d-48b1-b53f-91d577b3e3f0 2019-03-20 02:08:01.669784 3892 81 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 83\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.28E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.85E3\nphysical_cash: !ruby/object:BigDecimal 18:0.85E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 7bc91ee2-0fa1-4906-8880-6390cbbde44f 2019-03-20 02:08:46.75696 3893 83 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 7bc91ee2-0fa1-4906-8880-6390cbbde44f 2019-03-20 02:08:46.774685 3894 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-03-19 17:02:41.967233000 Z\n- &1 2019-03-19 21:01:13.194623000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-20 17:11:05.031837903 Z\nsign_in_count:\n- 19\n- 20\n 40 \N 189.186.42.241 806b1d1c-a224-4af6-baf9-5671d1b2bab0 2019-03-20 17:11:05.060153 3895 11 User \N \N 11 User \N update ---\nunique_session_id:\n- 31fbdaqyWzTvt6ErZdH4\n- BnQKoQYKba8_P9uTbYNY\n 41 \N 189.186.42.241 806b1d1c-a224-4af6-baf9-5671d1b2bab0 2019-03-20 17:11:05.079951 3896 84 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.406E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 406.0 189.186.42.241 7cb58796-d42e-4b5e-b277-41e1fd768f54 2019-03-20 17:11:08.3367 3897 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-03-19 21:01:13.194623000 Z\n- &1 2019-03-20 17:11:05.031837000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-20 17:13:45.512917293 Z\nsign_in_count:\n- 20\n- 21\n 42 \N 189.186.42.241 4fab187b-a082-4d5c-a1e3-89a5da86d380 2019-03-20 17:13:45.5216 3898 11 User \N \N 11 User \N update ---\nunique_session_id:\n- BnQKoQYKba8_P9uTbYNY\n- 5bVhcTNPntjgVhTeFJix\n 43 \N 189.186.42.241 4fab187b-a082-4d5c-a1e3-89a5da86d380 2019-03-20 17:13:45.540784 3899 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-16 21:47:50.683576000 Z\n- &1 2019-03-19 18:04:14.604556000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-20 18:24:12.739478900 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\nsign_in_count:\n- 50\n- 51\n 105 \N 189.186.42.241 69a1d267-f61c-4953-b9d4-dc64bd0012a8 2019-03-20 18:24:12.747091 3900 2 User \N \N 2 User \N update ---\nunique_session_id:\n- HoFiydBwz5LusVudxr9W\n- xE7xhRMxURSDsy_w7HPr\n 106 \N 189.186.42.241 69a1d267-f61c-4953-b9d4-dc64bd0012a8 2019-03-20 18:24:12.764267 3901 85 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.85E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 850.0 189.186.42.241 6ee2972c-f07e-48a7-88d1-489624e575da 2019-03-20 18:24:28.961994 22539 1548 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 d70191e8-8ba7-4285-87eb-49354c9c72f7 2019-12-01 19:58:36.127268 3902 319 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 85\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 228\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.299E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-123 189.186.42.241 24b8f09b-f8ef-4454-a5da-9075e6870031 2019-03-20 18:25:05.239852 3903 228 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.42.241 c46b8770-a3f9-45da-b043-5a673b817bf3 2019-03-20 18:25:09.226054 3904 320 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 84\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 114\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.657E3\nchange: !ruby/object:BigDecimal 18:0.357E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-51 189.186.42.241 97906f1d-b40e-49ef-a964-0cc66b03092e 2019-03-20 20:10:17.629424 3905 320 CashRegistersMove \N \N 11 User \N destroy ---\nopen_cash_register_id: 84\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 114\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.657E3\nchange: !ruby/object:BigDecimal 18:0.357E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.42.241 1df7a81c-f2e9-4de1-8163-1d925347aec5 2019-03-20 20:10:49.491052 3906 321 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 84\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 114\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.657E3\nchange: !ruby/object:BigDecimal 18:0.357E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-51 189.186.42.241 c6d71aca-c124-4541-9a6c-f3a8e2e8d030 2019-03-20 20:11:12.613165 3907 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-17 20:55:38.925284000 Z\n- &1 2019-03-20 00:38:02.064490000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-20 20:14:10.055807170 Z\nsign_in_count:\n- 91\n- 92\n 184 \N 189.186.42.241 c56e8ee4-adca-49be-8c96-0208a8540405 2019-03-20 20:14:10.061423 3908 3 User \N \N 3 User \N update ---\nunique_session_id:\n- yr2faF5nTuxNLs3BqM9_\n- kwxsngphCnfss7RWySCV\n 185 \N 189.186.42.241 c56e8ee4-adca-49be-8c96-0208a8540405 2019-03-20 20:14:10.075876 3909 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-17 20:16:46.912379000 Z\n- &1 2019-03-19 22:02:35.582273000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-20 20:43:17.627477678 Z\nsign_in_count:\n- 93\n- 94\n 188 \N 189.186.34.61 a8704b0b-94b3-4049-816d-2edb998cdee7 2019-03-20 20:43:17.633889 3910 4 User \N \N 4 User \N update ---\nunique_session_id:\n- u2PY5emwQ51aKZpQQBf7\n- GBdnrc1VGAtVDrpMxVu3\n 189 \N 189.186.34.61 a8704b0b-94b3-4049-816d-2edb998cdee7 2019-03-20 20:43:17.649225 3911 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-20 01:36:38.637333000 Z\n- &1 2019-03-20 02:08:01.647344000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-20 21:16:56.395836685 Z\nsign_in_count:\n- 44\n- 45\n 90 \N 189.186.42.241 f56de587-b5ec-4d8f-a552-76d3760bc1bf 2019-03-20 21:16:56.401843 3912 12 User \N \N 12 User \N update ---\nunique_session_id:\n- vDHCyC1cpsE8-6JPUuGS\n- sd4TPrYXa28W-u4VJ65f\n 91 \N 189.186.42.241 f56de587-b5ec-4d8f-a552-76d3760bc1bf 2019-03-20 21:16:56.415603 3913 14 Transfer \N \N 11 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 11\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-03-20\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.42.241 735f2e31-7483-4bf5-957e-09ed5a7aeab1 2019-03-20 21:37:56.107428 3914 523 AvailableProduct \N \N 11 User \N create ---\nproduct_id: 88\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 735f2e31-7483-4bf5-957e-09ed5a7aeab1 2019-03-20 21:37:56.139018 3915 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-19 22:02:35.582273000 Z\n- &1 2019-03-20 20:43:17.627477000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-20 23:29:38.016473770 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092285\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938224\n mask_addr: 4294967295\nsign_in_count:\n- 94\n- 95\n 190 \N 200.68.150.176 267b3154-dc47-4ded-9225-7e7c20a9f587 2019-03-20 23:29:38.027791 3916 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GBdnrc1VGAtVDrpMxVu3\n- xT8pgPVtU5RGvf5Mstmz\n 191 \N 200.68.150.176 267b3154-dc47-4ded-9225-7e7c20a9f587 2019-03-20 23:29:38.048872 3917 272 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 84\namount: !ruby/object:BigDecimal 18:0.59052E3\ntax: !ruby/object:BigDecimal 18:0.9448E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.685E3\nstatus: 0\ndate_sale: 2019-03-20\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-127\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 f5786d02-eeac-48e4-88ae-e0076611e4a1 2019-03-21 00:20:15.567066 3918 483 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.42.241 f5786d02-eeac-48e4-88ae-e0076611e4a1 2019-03-21 00:20:15.609702 3919 272 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 24e2e4b2-fa7a-4b32-9228-b9ce311d4564 2019-03-21 00:21:31.682576 3920 322 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 84\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.685E3\nmove_type: '1'\nsale_id: 272\ncardnumber: 9796\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-127\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-127 189.186.42.241 24e2e4b2-fa7a-4b32-9228-b9ce311d4564 2019-03-21 00:21:31.71557 3921 273 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 84\namount: !ruby/object:BigDecimal 18:0.86034E3\ntax: !ruby/object:BigDecimal 18:0.13765E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.99799E3\nstatus: 0\ndate_sale: 2019-03-20\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-128\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 a6221056-db5a-4fd5-ad2c-927c8bdedb29 2019-03-21 00:29:39.477991 3922 511 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.42.241 a6221056-db5a-4fd5-ad2c-927c8bdedb29 2019-03-21 00:29:39.527978 3923 273 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 868d71e8-079d-4a3d-9867-972249b7cb86 2019-03-21 00:32:58.08678 3967 527 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 2527b206-6ea9-4795-a126-2e6d4806e74b 2019-03-21 22:37:44.501615 22560 1551 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 2fd29914-2a5d-4260-b822-447ae7e55f0e 2019-12-01 23:03:38.560265 3924 323 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 84\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.998E3\nmove_type: '1'\nsale_id: 273\ncardnumber: 3788\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-128\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-128 189.186.42.241 868d71e8-079d-4a3d-9867-972249b7cb86 2019-03-21 00:32:58.121816 3925 274 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 85\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-03-20\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-144\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 66594d9e-f1a9-40d8-8fb0-c2c3383ddfea 2019-03-21 01:37:03.548239 3926 148 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.42.241 66594d9e-f1a9-40d8-8fb0-c2c3383ddfea 2019-03-21 01:37:03.59783 3927 274 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 a30fe98b-dc77-4f9d-92c8-45d0e592cc7a 2019-03-21 01:37:07.945965 3928 324 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 85\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 274\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-144\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-144 189.186.42.241 a30fe98b-dc77-4f9d-92c8-45d0e592cc7a 2019-03-21 01:37:07.98037 3929 82 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 84\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.1983E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.2E3\ncash_fund: !ruby/object:BigDecimal 18:0.506E3\nphysical_cash: !ruby/object:BigDecimal 18:0.706E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.42.241 355c86e4-1174-4d2c-baba-6831f82a0de3 2019-03-21 01:56:10.706605 3930 84 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 355c86e4-1174-4d2c-baba-6831f82a0de3 2019-03-21 01:56:10.732047 3931 19 Expense \N \N 12 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 85\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: COMIDA ROCIO\nexpense_date: 2019-03-20\nexpense_code: PV1-E-17\n 1 Egreso por 50.0 registrado 189.186.42.241 be029000-a3ba-43e2-9680-fd0e90dd745a 2019-03-21 02:09:10.816316 3932 325 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 85\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 19\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 be029000-a3ba-43e2-9680-fd0e90dd745a 2019-03-21 02:09:10.85545 3933 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-19 18:04:14.604556000 Z\n- &1 2019-03-20 18:24:12.739478000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-21 16:57:36.782739331 Z\nsign_in_count:\n- 51\n- 52\n 107 \N 189.186.42.241 d8b48a1b-ee44-4ee8-b548-b83418ebbf52 2019-03-21 16:57:36.810099 3934 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xE7xhRMxURSDsy_w7HPr\n- 17VDBpj5YskTFZYBuGMP\n 108 \N 189.186.42.241 d8b48a1b-ee44-4ee8-b548-b83418ebbf52 2019-03-21 16:57:36.836182 3935 83 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 85\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.768E3\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.1068E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1568E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 e8fdaf65-1f99-4ca0-b446-b120d161982f 2019-03-21 17:05:07.989804 3936 85 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 e8fdaf65-1f99-4ca0-b446-b120d161982f 2019-03-21 17:05:08.005523 3937 86 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1068E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1068.0 189.186.42.241 b98c2d04-3263-48e7-a797-f4e79ecc0cb2 2019-03-21 17:09:06.35831 3938 20 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 86\nquantity: !ruby/object:BigDecimal 18:0.2E3\nstatus: 1\nobservations: 'paqueteria '\nexpense_date: 2019-03-21\nexpense_code: PV1-E-18\n 1 Egreso por 200.0 registrado 189.186.42.241 8e8fb927-bc84-4f6f-a555-7c98b31a737b 2019-03-21 17:09:42.023112 3939 326 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 86\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 20\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 8e8fb927-bc84-4f6f-a555-7c98b31a737b 2019-03-21 17:09:42.056995 3940 87 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.506E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 506.0 189.186.42.241 94fdb5fe-601d-4741-81a8-54a8dabf5c9c 2019-03-21 17:24:48.208856 3941 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-20 20:43:17.627477000 Z\n- &1 2019-03-20 23:29:38.016473000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-21 20:26:09.244282870 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092285\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938224\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938224\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\nsign_in_count:\n- 95\n- 96\n 192 \N 189.186.42.241 09a889e8-1a1a-4e59-b5de-7293f01427ad 2019-03-21 20:26:09.256135 3942 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xT8pgPVtU5RGvf5Mstmz\n- iBA-obsDF7B1_xjghrS2\n 193 \N 189.186.42.241 09a889e8-1a1a-4e59-b5de-7293f01427ad 2019-03-21 20:26:09.273874 3943 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-20 23:29:38.016473000 Z\n- &1 2019-03-21 20:26:09.244282000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-21 22:16:17.196035185 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938224\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\nsign_in_count:\n- 96\n- 97\n 194 \N 189.186.42.241 44a320a9-30b1-42f8-8f70-0e99efce6bcd 2019-03-21 22:16:17.202791 3944 4 User \N \N 4 User \N update ---\nunique_session_id:\n- iBA-obsDF7B1_xjghrS2\n- XpSyGcVGFLhCHty-7VET\n 195 \N 189.186.42.241 44a320a9-30b1-42f8-8f70-0e99efce6bcd 2019-03-21 22:16:17.24336 4030 537 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 2b50ef4c-b3bb-4780-bdff-f3c6ac77a586 2019-03-21 23:45:39.844781 3945 497 Product \N \N 4 User \N create ---\nsku: VES-497\nname: VST-0009\ndescription: "KIMONO MUY MUY ROSA ENCAJE\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.29352E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-497 fue creado. 189.186.42.241 60457c1b-e59d-4fea-b89e-ebd3792f8cb7 2019-03-21 22:27:46.147069 3946 497 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000497'\n 2 \N 189.186.42.241 60457c1b-e59d-4fea-b89e-ebd3792f8cb7 2019-03-21 22:27:46.179585 3947 524 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 497\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 60457c1b-e59d-4fea-b89e-ebd3792f8cb7 2019-03-21 22:27:46.217311 3948 50 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-29\namount: !ruby/object:BigDecimal 18:0.176112E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.176112E4\nobservations: ''\npurchase_date: 2019-03-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-29 por $ 1761.12 MXN creada. 189.186.42.241 47944a85-6661-4ca2-9612-6ce1b3505a93 2019-03-21 22:28:11.061618 3949 524 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 47944a85-6661-4ca2-9612-6ce1b3505a93 2019-03-21 22:28:11.094796 3950 498 Product \N \N 4 User \N create ---\nsku: VES-498\nname: VST-0010\ndescription: "KIMONO MUY MUY NEGRO TEJIDO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.21392E3\nprice_sale: !ruby/object:BigDecimal 18:0.669E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-498 fue creado. 189.186.42.241 c975f1b8-f21e-4f62-8635-be94ce333b88 2019-03-21 22:30:28.778749 3951 498 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000498'\n 2 \N 189.186.42.241 c975f1b8-f21e-4f62-8635-be94ce333b88 2019-03-21 22:30:28.80915 3952 525 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 498\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 c975f1b8-f21e-4f62-8635-be94ce333b88 2019-03-21 22:30:28.838629 3953 51 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-30\namount: !ruby/object:BigDecimal 18:0.128352E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.128352E4\nobservations: ''\npurchase_date: 2019-03-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-30 por $ 1283.52 MXN creada. 189.186.42.241 95ac2752-a7e2-4bd7-9401-9043ef75d6b5 2019-03-21 22:30:38.538384 3954 525 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 95ac2752-a7e2-4bd7-9401-9043ef75d6b5 2019-03-21 22:30:38.55986 3955 499 Product \N \N 4 User \N create ---\nsku: VES-499\nname: VST-0011\ndescription: "KIMONO ENCAJE MUY MUY ROJO Y NEGRO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.22885E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-499 fue creado. 189.186.42.241 b1980abc-378b-4224-97b2-4fa8b5c9bf29 2019-03-21 22:33:29.563026 3956 499 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000499'\n 2 \N 189.186.42.241 b1980abc-378b-4224-97b2-4fa8b5c9bf29 2019-03-21 22:33:29.598372 3957 526 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 499\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 b1980abc-378b-4224-97b2-4fa8b5c9bf29 2019-03-21 22:33:29.635412 3958 52 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-31\namount: !ruby/object:BigDecimal 18:0.27462E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.27462E4\nobservations: ''\npurchase_date: 2019-03-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-31 por $ 2746.2 MXN creada. 189.186.42.241 57683636-5a4a-46d3-b176-2a556c9bbb71 2019-03-21 22:33:35.665777 3959 526 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.12E2\n 2 \N 189.186.42.241 57683636-5a4a-46d3-b176-2a556c9bbb71 2019-03-21 22:33:35.698672 3960 526 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 3 \N 189.186.42.241 e99f4be7-c2ee-490c-a647-69563841e004 2019-03-21 22:34:12.499962 3961 526 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.42.241 2a83974f-140a-481d-82de-27380148e546 2019-03-21 22:34:16.833801 3962 21 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-03-21\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.42.241 3fe4433d-c1bf-4796-a9a3-e41c78c23624 2019-03-21 22:34:17.894762 3963 500 Product \N \N 4 User \N create ---\nsku: VES-500\nname: VST-0012\ndescription: KIMONO SAN J RAYAS NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.2587E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-500 fue creado. 189.186.42.241 5894b8ea-c5a0-493f-9d88-2f13510b9115 2019-03-21 22:37:36.880933 3964 500 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000500'\n 2 \N 189.186.42.241 5894b8ea-c5a0-493f-9d88-2f13510b9115 2019-03-21 22:37:36.908652 3965 527 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 500\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 5894b8ea-c5a0-493f-9d88-2f13510b9115 2019-03-21 22:37:36.93769 4031 538 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 2b50ef4c-b3bb-4780-bdff-f3c6ac77a586 2019-03-21 23:45:39.87593 3968 501 Product \N \N 4 User \N create ---\nsku: VES-501\nname: VST-0013\ndescription: VESTIDO TROPICAL HOJAS APEACH\nprice_base: !ruby/object:BigDecimal 18:0.2985E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-501 fue creado. 189.186.42.241 e1f41fcb-8b8f-4354-9f79-0c92ddda17da 2019-03-21 22:41:12.760817 3969 501 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000501'\n 2 \N 189.186.42.241 e1f41fcb-8b8f-4354-9f79-0c92ddda17da 2019-03-21 22:41:12.78906 3970 528 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 501\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 e1f41fcb-8b8f-4354-9f79-0c92ddda17da 2019-03-21 22:41:12.818711 3971 54 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-33\namount: !ruby/object:BigDecimal 18:0.1791E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1791E4\nobservations: ''\npurchase_date: 2019-03-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-33 por $ 1791.0 MXN creada. 189.186.42.241 784a6717-45e3-40fc-87a0-7bce2525b28e 2019-03-21 22:41:21.181091 3972 528 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 784a6717-45e3-40fc-87a0-7bce2525b28e 2019-03-21 22:41:21.206673 3973 502 Product \N \N 4 User \N create ---\nsku: VES-502\nname: VST-0014\ndescription: "VESTIDO CARIBEEN Q ROSA FUSCIA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.398E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-502 fue creado. 189.186.42.241 76037b26-b4e2-45ba-924b-60c48355967c 2019-03-21 22:44:11.226973 3974 502 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000502'\n 2 \N 189.186.42.241 76037b26-b4e2-45ba-924b-60c48355967c 2019-03-21 22:44:11.254285 3975 529 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 502\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 76037b26-b4e2-45ba-924b-60c48355967c 2019-03-21 22:44:11.28301 3976 55 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-34\namount: !ruby/object:BigDecimal 18:0.2388E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2388E4\nobservations: ''\npurchase_date: 2019-03-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-34 por $ 2388.0 MXN creada. 189.186.42.241 bcfb03c0-4ffa-428d-920d-370623a81e12 2019-03-21 22:44:19.737638 3977 529 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 bcfb03c0-4ffa-428d-920d-370623a81e12 2019-03-21 22:44:19.769615 3978 503 Product \N \N 4 User \N create ---\nsku: VES-503\nname: 'VST-0015 '\ndescription: 'VESTIDO CARIBEEN Q CON MANGA Y FLORES '\nprice_base: !ruby/object:BigDecimal 18:0.38E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-503 fue creado. 189.186.42.241 30f1260e-c9fe-4c34-915a-c595d4253c5f 2019-03-21 22:46:57.616318 3979 503 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000503'\n 2 \N 189.186.42.241 30f1260e-c9fe-4c34-915a-c595d4253c5f 2019-03-21 22:46:57.655197 3980 530 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 503\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 30f1260e-c9fe-4c34-915a-c595d4253c5f 2019-03-21 22:46:57.698349 3981 56 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-35\namount: !ruby/object:BigDecimal 18:0.228E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.228E4\nobservations: ''\npurchase_date: 2019-03-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-35 por $ 2280.0 MXN creada. 189.186.42.241 f693b4e6-bc12-4b01-bfd8-745adfdb9f51 2019-03-21 22:47:05.414 3982 530 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 f693b4e6-bc12-4b01-bfd8-745adfdb9f51 2019-03-21 22:47:05.435737 3983 504 Product \N \N 4 User \N create ---\nsku: VES-504\nname: VST-0016\ndescription: VESTIDO LATIS NEGRO CON FLORES ENCAJE\nprice_base: !ruby/object:BigDecimal 18:0.5571E3\nprice_sale: !ruby/object:BigDecimal 18:0.1392E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-504 fue creado. 189.186.42.241 251670fd-55da-47ad-ad3e-0c6f61268428 2019-03-21 22:49:59.64578 3984 504 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000504'\n 2 \N 189.186.42.241 251670fd-55da-47ad-ad3e-0c6f61268428 2019-03-21 22:49:59.674845 3985 531 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 504\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 251670fd-55da-47ad-ad3e-0c6f61268428 2019-03-21 22:49:59.703288 3986 57 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-36\namount: !ruby/object:BigDecimal 18:0.33426E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.33426E4\nobservations: ''\npurchase_date: 2019-03-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-36 por $ 3342.6 MXN creada. 189.186.42.241 4d479500-b8f3-4348-87a1-86de0c174458 2019-03-21 22:50:07.675785 3987 531 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 4d479500-b8f3-4348-87a1-86de0c174458 2019-03-21 22:50:07.702839 4032 539 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 2b50ef4c-b3bb-4780-bdff-f3c6ac77a586 2019-03-21 23:45:39.907058 3988 505 Product \N \N 4 User \N create ---\nsku: VES-505\nname: VST-0017\ndescription: "CONJUNTO LATISTE ELEFANTES\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6766E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-505 fue creado. 189.186.42.241 4dd46d73-f0b4-43c9-9648-a814c41c588b 2019-03-21 22:52:28.677222 3989 505 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000505'\n 2 \N 189.186.42.241 4dd46d73-f0b4-43c9-9648-a814c41c588b 2019-03-21 22:52:28.740245 3990 532 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 505\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 4dd46d73-f0b4-43c9-9648-a814c41c588b 2019-03-21 22:52:28.77194 3991 58 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-37\namount: !ruby/object:BigDecimal 18:0.6766E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6766E3\nobservations: ''\npurchase_date: 2019-03-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-37 por $ 676.6 MXN creada. 189.186.42.241 8d3bd7f4-3c52-4981-9ffb-aa590a11ce28 2019-03-21 22:52:32.89653 3992 532 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.42.241 8d3bd7f4-3c52-4981-9ffb-aa590a11ce28 2019-03-21 22:52:32.92271 3993 506 Product \N \N 4 User \N create ---\nsku: CON-506\nname: VST-0018\ndescription: "CONJUNTO PANTALON PAÑUELO \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5572E3\nprice_sale: !ruby/object:BigDecimal 18:0.1395E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 10\nproduct_service_key: '01010101'\n 1 El producto CON-506 fue creado. 189.186.42.241 4013d8e1-93fa-4c44-9a7f-515af09b3ff9 2019-03-21 22:54:12.56655 3994 506 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000506'\n 2 \N 189.186.42.241 4013d8e1-93fa-4c44-9a7f-515af09b3ff9 2019-03-21 22:54:12.59521 3995 533 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 506\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 4013d8e1-93fa-4c44-9a7f-515af09b3ff9 2019-03-21 22:54:12.62556 3996 59 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-38\namount: !ruby/object:BigDecimal 18:0.33432E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.33432E4\nobservations: ''\npurchase_date: 2019-03-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-38 por $ 3343.2 MXN creada. 189.186.42.241 5e466e50-5026-4bf0-946e-334a5750e97c 2019-03-21 22:54:19.407045 3997 533 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 5e466e50-5026-4bf0-946e-334a5750e97c 2019-03-21 22:54:19.435654 3998 507 Product \N \N 4 User \N create ---\nsku: BLU-507\nname: BLS-0027\ndescription: "BLUSA NEVER 89\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.19425E3\nprice_sale: !ruby/object:BigDecimal 18:0.479E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-507 fue creado. 189.186.42.241 b95b3ca8-01cb-4021-94b1-94ce0333c926 2019-03-21 22:58:54.885219 3999 507 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000507'\n 2 \N 189.186.42.241 b95b3ca8-01cb-4021-94b1-94ce0333c926 2019-03-21 22:58:54.913958 4000 534 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 507\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 b95b3ca8-01cb-4021-94b1-94ce0333c926 2019-03-21 22:58:54.946133 4001 138 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 9 \N 189.186.42.241 ba935d72-8c2c-48c0-8a70-2ab3e00bcd83 2019-03-21 23:01:06.259513 4002 138 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 10 \N 189.186.42.241 ec649467-eaf1-4c4e-8c15-52c3a5582dc4 2019-03-21 23:01:09.572433 4003 22 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-03-21\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.42.241 5cf70535-0832-43e1-9ae2-7c9a9379eab0 2019-03-21 23:01:10.773445 4004 508 Product \N \N 4 User \N create ---\nsku: BLU-508\nname: BLS-0028\ndescription: 'BLUSA SAN JOY RAYAS CON MOÑO '\nprice_base: !ruby/object:BigDecimal 18:0.30845E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-508 fue creado. 189.186.42.241 eb3bf691-d0b6-46b6-940b-90de72ac3e4a 2019-03-21 23:04:00.225078 4005 508 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000508'\n 2 \N 189.186.42.241 eb3bf691-d0b6-46b6-940b-90de72ac3e4a 2019-03-21 23:04:00.251228 4006 535 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 508\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 eb3bf691-d0b6-46b6-940b-90de72ac3e4a 2019-03-21 23:04:00.277949 4007 60 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-39\namount: !ruby/object:BigDecimal 18:0.30162E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.30162E4\nobservations: ''\npurchase_date: 2019-03-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-39 por $ 3016.2 MXN creada. 189.186.42.241 6de7e6ab-b683-4024-ae43-dd8b249f9b9f 2019-03-21 23:04:22.99796 4008 534 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 6de7e6ab-b683-4024-ae43-dd8b249f9b9f 2019-03-21 23:04:23.023193 4009 535 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 6de7e6ab-b683-4024-ae43-dd8b249f9b9f 2019-03-21 23:04:23.047192 4010 509 Product \N \N 4 User \N create ---\nsku: BLU-509\nname: BLS-0029\ndescription: BLUSA A.PEACH NEGRA DE ENCAJE\nprice_base: !ruby/object:BigDecimal 18:0.2995E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-509 fue creado. 189.186.42.241 bfe73e2e-7f20-41d0-8b59-293646a039c9 2019-03-21 23:36:55.158318 4011 509 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000509'\n 2 \N 189.186.42.241 bfe73e2e-7f20-41d0-8b59-293646a039c9 2019-03-21 23:36:55.202806 4012 536 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 509\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 bfe73e2e-7f20-41d0-8b59-293646a039c9 2019-03-21 23:36:55.239953 4013 510 Product \N \N 4 User \N create ---\nsku: BLU-510\nname: BLS-0030\ndescription: BLUSA AMARILLA VOILA\nprice_base: !ruby/object:BigDecimal 18:0.4745E3\nprice_sale: !ruby/object:BigDecimal 18:0.949E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-510 fue creado. 189.186.42.241 99ca23a2-02d7-40a1-afdc-96bea8974731 2019-03-21 23:37:55.250178 4014 510 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000510'\n 2 \N 189.186.42.241 99ca23a2-02d7-40a1-afdc-96bea8974731 2019-03-21 23:37:55.29026 4015 537 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 510\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 99ca23a2-02d7-40a1-afdc-96bea8974731 2019-03-21 23:37:55.329367 4016 511 Product \N \N 4 User \N create ---\nsku: BLU-511\nname: BLS-0031\ndescription: BLUSA VOILA ROSA CORTE CAMPESINA\nprice_base: !ruby/object:BigDecimal 18:0.4345E3\nprice_sale: !ruby/object:BigDecimal 18:0.869E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-511 fue creado. 189.186.42.241 b412715e-4307-4fcf-8faa-84c0ef508634 2019-03-21 23:40:19.38133 4017 511 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000511'\n 2 \N 189.186.42.241 b412715e-4307-4fcf-8faa-84c0ef508634 2019-03-21 23:40:19.410997 4018 538 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 511\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 b412715e-4307-4fcf-8faa-84c0ef508634 2019-03-21 23:40:19.441078 4019 512 Product \N \N 4 User \N create ---\nsku: BLU-512\nname: BLS-0032\ndescription: BLUSA NEGRA CON BLANCO DE ENCAJE CBQ\nprice_base: !ruby/object:BigDecimal 18:0.4345E3\nprice_sale: !ruby/object:BigDecimal 18:0.869E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-512 fue creado. 189.186.42.241 bbc3ec74-6c25-44d7-9be9-e6eac04774cb 2019-03-21 23:43:07.88998 4020 512 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000512'\n 2 \N 189.186.42.241 bbc3ec74-6c25-44d7-9be9-e6eac04774cb 2019-03-21 23:43:07.938138 4021 539 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 512\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 bbc3ec74-6c25-44d7-9be9-e6eac04774cb 2019-03-21 23:43:07.987634 4022 513 Product \N \N 4 User \N create ---\nsku: BLU-513\nname: BLS-0033\ndescription: BLUSA BLANCA CBQ\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-513 fue creado. 189.186.42.241 a6e9ec1c-fa21-4aa8-b8ea-16f91967b3ac 2019-03-21 23:44:15.549085 4023 513 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000513'\n 2 \N 189.186.42.241 a6e9ec1c-fa21-4aa8-b8ea-16f91967b3ac 2019-03-21 23:44:15.603187 4024 540 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 513\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 a6e9ec1c-fa21-4aa8-b8ea-16f91967b3ac 2019-03-21 23:44:15.64295 4025 514 Product \N \N 4 User \N create ---\nsku: BLU-514\nname: BLS-0034\ndescription: BLUSA NEGRA CON MANGA DE OLAN PAPAYON\nprice_base: !ruby/object:BigDecimal 18:0.2395E3\nprice_sale: !ruby/object:BigDecimal 18:0.479E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-514 fue creado. 189.186.42.241 5a55b2ae-c914-49f0-972e-8f813936f3ec 2019-03-21 23:45:14.540166 4026 514 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000514'\n 2 \N 189.186.42.241 5a55b2ae-c914-49f0-972e-8f813936f3ec 2019-03-21 23:45:14.574139 4027 541 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 514\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 5a55b2ae-c914-49f0-972e-8f813936f3ec 2019-03-21 23:45:14.603122 4028 61 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-40\namount: !ruby/object:BigDecimal 18:0.13992E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.13992E5\nobservations: ''\npurchase_date: 2019-03-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-40 por $ 13992.0 MXN creada. 189.186.42.241 2b50ef4c-b3bb-4780-bdff-f3c6ac77a586 2019-03-21 23:45:39.780111 4029 536 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 2b50ef4c-b3bb-4780-bdff-f3c6ac77a586 2019-03-21 23:45:39.81242 4035 515 Product \N \N 4 User \N create ---\nsku: PAN-515\nname: PNT-0007\ndescription: PANTALON MEZCLILLA CBQ\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-515 fue creado. 189.186.42.241 64daa8eb-21d0-4bdd-a24e-d08d572d2e48 2019-03-21 23:50:14.066771 4036 515 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000515'\n 2 \N 189.186.42.241 64daa8eb-21d0-4bdd-a24e-d08d572d2e48 2019-03-21 23:50:14.101792 4037 542 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 515\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 64daa8eb-21d0-4bdd-a24e-d08d572d2e48 2019-03-21 23:50:14.139638 4038 62 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-41\namount: !ruby/object:BigDecimal 18:0.2697E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2697E4\nobservations: ''\npurchase_date: 2019-03-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-41 por $ 2697.0 MXN creada. 189.186.42.241 9a9d0149-523e-4e12-b422-e7ad4cc81c71 2019-03-21 23:50:19.981325 4039 542 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 9a9d0149-523e-4e12-b422-e7ad4cc81c71 2019-03-21 23:50:20.026501 4040 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-20 18:24:12.739478000 Z\n- &1 2019-03-21 16:57:36.782739000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-21 23:54:04.624993656 Z\nsign_in_count:\n- 52\n- 53\n 109 \N 189.186.42.241 ccc85fe8-b223-4454-8076-621164953842 2019-03-21 23:54:04.634007 4041 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 17VDBpj5YskTFZYBuGMP\n- G5y8c8KdoyZwpxWuB1a5\n 110 \N 189.186.42.241 ccc85fe8-b223-4454-8076-621164953842 2019-03-21 23:54:04.653151 4042 275 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 86\namount: !ruby/object:BigDecimal 18:0.55948E3\ntax: !ruby/object:BigDecimal 18:0.8952E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-03-21\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-145\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 510895a8-356b-43f9-aa69-266df94623cb 2019-03-21 23:54:37.716021 4043 138 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 11 \N 189.186.42.241 510895a8-356b-43f9-aa69-266df94623cb 2019-03-21 23:54:37.753743 4044 275 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 e8e22695-5d68-4c30-9e1b-a1a4bdd6c4a0 2019-03-21 23:54:42.848263 4045 327 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 86\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 275\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-145\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.649E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-145 189.186.42.241 e8e22695-5d68-4c30-9e1b-a1a4bdd6c4a0 2019-03-21 23:54:42.883809 4046 21 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 86\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida rocio\nexpense_date: 2019-03-21\nexpense_code: PV1-E-19\n 1 Egreso por 50.0 registrado 189.186.42.241 40ecdaab-65c4-4c8f-ac18-d062f78a1130 2019-03-22 00:13:38.033821 4047 328 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 86\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 21\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 40ecdaab-65c4-4c8f-ac18-d062f78a1130 2019-03-22 00:13:38.06414 4048 22 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 86\nquantity: !ruby/object:BigDecimal 18:0.2E2\nstatus: 1\nobservations: agua\nexpense_date: 2019-03-21\nexpense_code: PV1-E-20\n 1 Egreso por 20.0 registrado 189.186.42.241 805da6b8-78ce-463f-bf95-b1ae5d513908 2019-03-22 00:45:36.221292 4049 329 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 86\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 22\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 805da6b8-78ce-463f-bf95-b1ae5d513908 2019-03-22 00:45:36.246749 4050 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-03-02 00:51:16.778722000 Z\n- &1 2019-03-09 00:36:27.644887000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-22 00:46:21.381627457 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\nsign_in_count:\n- 48\n- 49\n 98 \N 189.186.42.241 152b5d41-74ab-4ddd-a915-8f396bb08598 2019-03-22 00:46:21.390637 4051 9 User \N \N 9 User \N update ---\nunique_session_id:\n- VrBforcG9GmPiJrEaEei\n- gsMHFGymxYnuVZT8kPNC\n 99 \N 189.186.42.241 152b5d41-74ab-4ddd-a915-8f396bb08598 2019-03-22 00:46:21.408531 4052 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-21 16:57:36.782739000 Z\n- &1 2019-03-21 23:54:04.624993000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-22 00:48:46.530182702 Z\nsign_in_count:\n- 53\n- 54\n 111 \N 189.186.42.241 c68c15b2-2962-44de-a1a5-af0989409275 2019-03-22 00:48:46.537476 4053 2 User \N \N 2 User \N update ---\nunique_session_id:\n- G5y8c8KdoyZwpxWuB1a5\n- tqPJY8biKsAgzC9RxiXY\n 112 \N 189.186.42.241 c68c15b2-2962-44de-a1a5-af0989409275 2019-03-22 00:48:46.551369 4054 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-03-02 20:22:02.120099000 Z\n- &1 2019-03-04 17:11:07.159286000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-22 00:49:48.706564516 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\nsign_in_count:\n- 37\n- 38\n 76 \N 189.186.42.241 0815a112-2190-4d42-b999-8159a71711e1 2019-03-22 00:49:48.713322 4055 1 User \N \N 1 User \N update ---\nunique_session_id:\n- QA5y7TvVMFm79eAtjL85\n- SG4r7JYzkaVJ1bhu8huD\n 77 \N 189.186.42.241 0815a112-2190-4d42-b999-8159a71711e1 2019-03-22 00:49:48.731047 4056 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-03-20 17:11:05.031837000 Z\n- &1 2019-03-20 17:13:45.512917000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-22 01:24:41.656728209 Z\nsign_in_count:\n- 21\n- 22\n 44 \N 189.186.42.241 a0e4eca3-f483-4c6a-88cc-91e2144fc5bc 2019-03-22 01:24:41.66638 4057 11 User \N \N 11 User \N update ---\nunique_session_id:\n- 5bVhcTNPntjgVhTeFJix\n- PHtDrcf-ZsxMUu8artD4\n 45 \N 189.186.42.241 a0e4eca3-f483-4c6a-88cc-91e2144fc5bc 2019-03-22 01:24:41.689244 4058 276 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 87\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-03-21\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-129\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 2046abb2-f05c-447c-b978-786622702cdf 2019-03-22 01:25:33.635596 4059 404 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 5 \N 189.186.42.241 2046abb2-f05c-447c-b978-786622702cdf 2019-03-22 01:25:33.682586 4060 276 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 1ba7cec7-118a-40f3-86e8-ded55150dd5b 2019-03-22 01:25:41.02227 4061 330 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 87\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 276\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-129\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-129 189.186.42.241 1ba7cec7-118a-40f3-86e8-ded55150dd5b 2019-03-22 01:25:41.05505 4062 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-21 23:54:04.624993000 Z\n- &1 2019-03-22 00:48:46.530182000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-22 01:49:30.235993768 Z\nsign_in_count:\n- 54\n- 55\n 113 \N 189.186.42.241 ec6f0c36-4668-4cfb-b945-c50fd623a7f0 2019-03-22 01:49:30.244186 4063 2 User \N \N 2 User \N update ---\nunique_session_id:\n- tqPJY8biKsAgzC9RxiXY\n- qLsNDydwZ9sX-WLubHJ8\n 114 \N 189.186.42.241 ec6f0c36-4668-4cfb-b945-c50fd623a7f0 2019-03-22 01:49:30.262184 4064 23 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 86\nquantity: !ruby/object:BigDecimal 18:0.5E3\nstatus: 1\nobservations: adelanto sueldo Anabelly\nexpense_date: 2019-03-21\nexpense_code: PV1-E-21\n 1 Egreso por 500.0 registrado 189.186.42.241 ca4ba5d1-7363-473c-a073-044fbe834f68 2019-03-22 01:52:49.347597 4065 331 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 86\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 23\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 ca4ba5d1-7363-473c-a073-044fbe834f68 2019-03-22 01:52:49.378006 4066 84 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 87\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.499E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.505E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1005E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.42.241 ad065f05-a6d1-45ab-ae7a-4314b0cb6522 2019-03-22 01:54:27.288305 4067 87 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 ad065f05-a6d1-45ab-ae7a-4314b0cb6522 2019-03-22 01:54:27.301762 4068 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-21 20:26:09.244282000 Z\n- &1 2019-03-21 22:16:17.196035000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-22 02:44:36.924133069 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539589\n mask_addr: 4294967295\nsign_in_count:\n- 97\n- 98\n 196 \N 177.228.117.197 3368de5c-dd83-4458-bbc3-d6d4a8d33f61 2019-03-22 02:44:36.931107 4069 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XpSyGcVGFLhCHty-7VET\n- PqRjen9KLkmQTdKW2beJ\n 197 \N 177.228.117.197 3368de5c-dd83-4458-bbc3-d6d4a8d33f61 2019-03-22 02:44:36.946381 4070 88 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.505E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 505.0 189.186.42.241 a4bc1b41-8478-40f8-950e-a3ad34735b30 2019-03-22 16:52:10.155957 4071 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-22 00:48:46.530182000 Z\n- &1 2019-03-22 01:49:30.235993000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-22 17:17:11.838165711 Z\nsign_in_count:\n- 55\n- 56\n 115 \N 189.186.42.241 9aefd983-795f-4537-a131-217f1d5d20e0 2019-03-22 17:17:11.849067 4072 2 User \N \N 2 User \N update ---\nunique_session_id:\n- qLsNDydwZ9sX-WLubHJ8\n- xuBKWkY2qtvy5cT3trCa\n 116 \N 189.186.42.241 9aefd983-795f-4537-a131-217f1d5d20e0 2019-03-22 17:17:11.869456 4073 85 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 86\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.649E3\namount_out: !ruby/object:BigDecimal 18:0.77E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.947E3\nphysical_cash: !ruby/object:BigDecimal 18:0.947E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 63d3ae77-c315-41c8-8dc4-540bfb60d6ad 2019-03-22 17:19:29.397823 4074 86 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 63d3ae77-c315-41c8-8dc4-540bfb60d6ad 2019-03-22 17:19:29.4174 4075 89 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.947E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 947.0 189.186.42.241 fc9f2007-f404-48f1-8afa-76640ad0260e 2019-03-22 17:26:23.701765 4076 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-03-04 17:11:07.159286000 Z\n- &1 2019-03-22 00:49:48.706564000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-22 17:34:24.030212377 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\nsign_in_count:\n- 38\n- 39\n 78 \N 189.186.42.241 aca4286f-c6b7-4c95-895b-829a42d90451 2019-03-22 17:34:24.037765 4077 1 User \N \N 1 User \N update ---\nunique_session_id:\n- SG4r7JYzkaVJ1bhu8huD\n- mgk-4a9Koyn7T3idKHGd\n 79 \N 189.186.42.241 aca4286f-c6b7-4c95-895b-829a42d90451 2019-03-22 17:34:24.054457 4078 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-22 01:49:30.235993000 Z\n- &1 2019-03-22 17:17:11.838165000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-22 18:07:28.547458720 Z\nsign_in_count:\n- 56\n- 57\n 117 \N 189.186.42.241 d354ff1a-927e-4f5d-81cc-9c4f2b0d9849 2019-03-22 18:07:28.556118 4079 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xuBKWkY2qtvy5cT3trCa\n- viHydaLHYDGY-mw2GMx6\n 118 \N 189.186.42.241 d354ff1a-927e-4f5d-81cc-9c4f2b0d9849 2019-03-22 18:07:28.577783 4080 277 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 88\namount: !ruby/object:BigDecimal 18:0.102414E4\ntax: !ruby/object:BigDecimal 18:0.16386E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1188E4\nstatus: 0\ndate_sale: 2019-03-22\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-130\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 e001aea5-8abb-4289-9af8-e1ec00c98938 2019-03-22 18:21:50.266183 4081 325 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.42.241 e001aea5-8abb-4289-9af8-e1ec00c98938 2019-03-22 18:21:50.30609 4084 332 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 88\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1188E4\nmove_type: '1'\nsale_id: 277\ncardnumber: 8081\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-130\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-130 189.186.42.241 52457c9a-4219-4dcf-9921-f1e786352e6e 2019-03-22 18:24:05.912432 4085 278 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 89\namount: !ruby/object:BigDecimal 18:0.118538E4\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1268E4\nstatus: 0\ndate_sale: 2019-03-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-146\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 3fe1990b-9b35-4e0c-aeb5-8ccab045eed8 2019-03-22 19:33:11.655719 4086 522 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.42.241 3fe1990b-9b35-4e0c-aeb5-8ccab045eed8 2019-03-22 19:33:11.692626 4087 141 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.42.241 3fe1990b-9b35-4e0c-aeb5-8ccab045eed8 2019-03-22 19:33:11.731091 4088 278 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 df5cfff0-afec-4629-8fdc-555acc2e51c6 2019-03-22 19:33:17.565859 4089 333 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 89\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1268E4\nmove_type: '1'\nsale_id: 278\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-146\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1268E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-146 189.186.42.241 df5cfff0-afec-4629-8fdc-555acc2e51c6 2019-03-22 19:33:17.590168 4090 279 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 89\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-03-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-147\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 6d053252-a369-4fea-be3e-ba112dad3730 2019-03-22 19:35:16.90774 4091 145 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.42.241 6d053252-a369-4fea-be3e-ba112dad3730 2019-03-22 19:35:16.944226 4092 279 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 97afefb0-3a19-4e92-9522-159a82cd9ba9 2019-03-22 19:36:41.324318 4093 334 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 89\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 279\ncardnumber: 6060\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-147\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-147 189.186.42.241 97afefb0-3a19-4e92-9522-159a82cd9ba9 2019-03-22 19:36:41.34915 4094 51 Customer \N \N 2 User \N create ---\nnick_name: KARLA MERCHAMD\nphone: "(667) 484-0342"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.1E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KARLA MERCHAMD fue registrado. 189.186.42.241 17bbd9ec-f49a-48df-ae4d-3e6d93cb0189 2019-03-22 19:43:54.756365 4095 280 Sale \N \N 2 User \N create ---\ncustomer_id: 51\nuser_id: 2\nopen_cash_register_id: 89\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-03-22\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-148\nexpiration_date: 2019-04-26\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 0111d524-873d-40cb-8ff7-9a5378aa2e24 2019-03-22 19:48:49.341975 4096 235 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 189.186.42.241 0111d524-873d-40cb-8ff7-9a5378aa2e24 2019-03-22 19:48:49.379148 4097 335 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 89\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 280\ncardnumber: 877\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-148\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-148 189.186.42.241 b98739c7-866f-4623-bed9-9c7c973095c6 2019-03-22 19:49:18.333329 4098 335 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 89\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 280\ncardnumber: 877\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-148\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.42.241 44013cf4-edbe-4991-b6a2-7b51c00b62d2 2019-03-22 19:49:47.102626 4099 336 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 89\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 280\ncardnumber: 877\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-148\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-148 189.186.42.241 0ae95724-3619-4d91-b376-a90c908a9d5a 2019-03-22 19:50:38.106684 4100 336 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 89\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 280\ncardnumber: 877\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-148\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.42.241 94240e30-2c89-4627-9adf-7b72cd9f18b6 2019-03-22 19:50:40.50539 4101 337 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 89\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 280\ncardnumber: 877\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-148\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-148 189.186.42.241 14d45783-abfa-4306-84f9-acc28605c8d2 2019-03-22 19:50:53.663024 4102 280 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.42.241 e63648fb-f851-4aac-8af1-54d40880fd95 2019-03-22 19:50:55.860427 4103 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-20 02:08:01.647344000 Z\n- &1 2019-03-20 21:16:56.395836000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-22 23:37:04.615938686 Z\nsign_in_count:\n- 45\n- 46\n 92 \N 189.186.42.241 b9e8b11b-54ca-43bf-ba5d-62df7fdbc7cb 2019-03-22 23:37:04.626933 4105 24 Expense \N \N 12 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 89\nquantity: !ruby/object:BigDecimal 18:0.11E4\nstatus: 1\nobservations: SUELDO ILSE\nexpense_date: 2019-03-22\nexpense_code: PV1-E-22\n 1 Egreso por 1100.0 registrado 189.186.42.241 d78627a0-4891-4026-9684-36c1c6c99ffc 2019-03-23 01:20:22.093438 4106 338 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 89\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.11E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 24\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 d78627a0-4891-4026-9684-36c1c6c99ffc 2019-03-23 01:20:22.122604 4107 86 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 88\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.1188E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.5E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.42.241 57e7ffe6-ac49-4606-959b-3db590352cb1 2019-03-23 01:43:08.358635 4108 88 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 57e7ffe6-ac49-4606-959b-3db590352cb1 2019-03-23 01:43:08.373774 4109 87 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 89\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.2037E4\namount_out: !ruby/object:BigDecimal 18:0.11E4\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.15E3\ncash_fund: !ruby/object:BigDecimal 18:0.964E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1114E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 5706e14c-3f7c-4d20-9c84-f08274200814 2019-03-23 01:59:08.992253 4110 89 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 5706e14c-3f7c-4d20-9c84-f08274200814 2019-03-23 01:59:09.011192 4111 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-22 17:17:11.838165000 Z\n- &1 2019-03-22 18:07:28.547458000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-23 16:58:10.110801594 Z\nsign_in_count:\n- 57\n- 58\n 119 \N 189.186.42.241 7f7d0535-6c79-403c-b293-95b6afdc31a5 2019-03-23 16:58:10.140476 4112 2 User \N \N 2 User \N update ---\nunique_session_id:\n- viHydaLHYDGY-mw2GMx6\n- 3qrFDi-hJHRjjS1T_Bqt\n 120 \N 189.186.42.241 7f7d0535-6c79-403c-b293-95b6afdc31a5 2019-03-23 16:58:10.162436 4113 90 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.964E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 964.0 189.186.42.241 b1ef6225-4f46-4475-a732-228496cfc856 2019-03-23 17:04:44.060797 4114 90 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.42.241 2de48b57-50ba-42d5-a5b5-d8dcec5faf4c 2019-03-23 17:20:10.216492 4115 90 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.42.241 b2af1f57-d3e1-4407-b850-0da31fc7e891 2019-03-23 17:20:13.106173 4116 143 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.42.241 0d8c9b68-9b0a-478e-b4b5-fb1bf6621708 2019-03-23 17:20:30.803559 4117 143 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.42.241 d5983c98-0a32-479e-8cb1-d27178f029f0 2019-03-23 17:20:33.932374 4118 199 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.42.241 b4f8952e-6986-432b-b9d7-60e14f3efde6 2019-03-23 17:20:44.847394 4119 199 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.42.241 d2e960e0-bdba-419c-8e06-e950854f73f9 2019-03-23 17:20:48.769911 4120 192 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.42.241 0ed9f35f-e7f2-4aa2-b801-be94dc1eff8e 2019-03-23 17:21:19.208721 4121 192 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.42.241 d97ed7bc-7fdf-4330-8e57-1528f11fd53c 2019-03-23 17:21:21.907434 4122 23 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-03-23\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.42.241 c51c2a72-71fc-48b1-98f1-93da7a949958 2019-03-23 17:21:23.853239 4123 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-03-22 00:49:48.706564000 Z\n- &1 2019-03-22 17:34:24.030212000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-23 17:23:43.407577947 Z\nsign_in_count:\n- 39\n- 40\n 80 \N 189.186.42.241 dd74aafc-7944-415d-86fd-7ec3ebee703c 2019-03-23 17:23:43.413206 4124 1 User \N \N 1 User \N update ---\nunique_session_id:\n- mgk-4a9Koyn7T3idKHGd\n- T8EJp7KAM_z_issP9bF2\n 81 \N 189.186.42.241 dd74aafc-7944-415d-86fd-7ec3ebee703c 2019-03-23 17:23:43.426899 4125 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-20 00:38:02.064490000 Z\n- &1 2019-03-20 20:14:10.055807000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-23 17:26:53.758441012 Z\nsign_in_count:\n- 92\n- 93\n 186 \N 189.186.42.241 d53b2809-67ba-4702-9f99-991477f1775c 2019-03-23 17:26:53.764914 4126 3 User \N \N 3 User \N update ---\nunique_session_id:\n- kwxsngphCnfss7RWySCV\n- sg8njyYqvCDyYJyhxCFU\n 187 \N 189.186.42.241 d53b2809-67ba-4702-9f99-991477f1775c 2019-03-23 17:26:53.78151 4127 23 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-03-23\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.42.241 1224c9f3-eae4-48f8-a5c8-eba134121424 2019-03-23 17:28:59.077848 4128 543 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 92\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 1224c9f3-eae4-48f8-a5c8-eba134121424 2019-03-23 17:28:59.109596 4129 544 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 145\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 1224c9f3-eae4-48f8-a5c8-eba134121424 2019-03-23 17:28:59.144407 4130 545 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 201\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 1224c9f3-eae4-48f8-a5c8-eba134121424 2019-03-23 17:28:59.165898 4131 546 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 194\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 1224c9f3-eae4-48f8-a5c8-eba134121424 2019-03-23 17:28:59.192171 22585 1553 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 c97feced-b157-43c2-b702-e49ddd7634c3 2019-12-02 20:52:56.846008 4132 22 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-03-23\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.42.241 865d1d55-5aef-4fe6-accd-ad479491150d 2019-03-23 17:29:05.382152 4133 547 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 140\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 865d1d55-5aef-4fe6-accd-ad479491150d 2019-03-23 17:29:05.4218 4134 21 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-03-23\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.42.241 3c219503-a867-4b8c-8f80-3b1437f5b00c 2019-03-23 17:29:10.5208 4135 548 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 499\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 3c219503-a867-4b8c-8f80-3b1437f5b00c 2019-03-23 17:29:10.550951 4136 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-20 20:14:10.055807000 Z\n- &1 2019-03-23 17:26:53.758441000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-23 17:41:30.434756981 Z\nsign_in_count:\n- 93\n- 94\n 188 \N 189.186.42.241 7f7c9d42-b702-47ca-b2b4-3e8fbba12519 2019-03-23 17:41:30.440187 4137 3 User \N \N 3 User \N update ---\nunique_session_id:\n- sg8njyYqvCDyYJyhxCFU\n- "-sxDBut68osqanQ-ynmU"\n 189 \N 189.186.42.241 7f7c9d42-b702-47ca-b2b4-3e8fbba12519 2019-03-23 17:41:30.453533 4138 435 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.42.241 68b7e8d1-f42e-4893-a296-4f0711366da6 2019-03-23 17:42:00.584238 4139 435 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.42.241 2923b3a7-efca-4827-813d-0974043a1432 2019-03-23 17:42:06.382389 4140 24 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-03-23\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.42.241 db5a51ca-1255-45a2-9df5-29da6ca05fe9 2019-03-23 17:42:17.177439 4141 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-22 18:07:28.547458000 Z\n- &1 2019-03-23 16:58:10.110801000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-23 17:44:44.965963141 Z\nsign_in_count:\n- 58\n- 59\n 121 \N 189.186.42.241 9ca9347e-b719-4992-922d-4f32aba3770d 2019-03-23 17:44:44.971674 4142 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 3qrFDi-hJHRjjS1T_Bqt\n- NdxVSdGbGBXUDo_UnDUy\n 122 \N 189.186.42.241 9ca9347e-b719-4992-922d-4f32aba3770d 2019-03-23 17:44:44.984075 4143 24 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-03-23\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.42.241 1a56cc0c-b677-4432-beb6-397c7b48829d 2019-03-23 17:44:59.964641 4144 141 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 189.186.42.241 1a56cc0c-b677-4432-beb6-397c7b48829d 2019-03-23 17:44:59.989108 4145 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-23 17:26:53.758441000 Z\n- &1 2019-03-23 17:41:30.434756000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-23 18:06:48.092151636 Z\nsign_in_count:\n- 94\n- 95\n 190 \N 189.186.42.241 8ff889ae-72d9-4874-b62f-b86cd0385c03 2019-03-23 18:06:48.100136 4146 3 User \N \N 3 User \N update ---\nunique_session_id:\n- "-sxDBut68osqanQ-ynmU"\n- VQsyGESMoPJ42xgtyy3X\n 191 \N 189.186.42.241 8ff889ae-72d9-4874-b62f-b86cd0385c03 2019-03-23 18:06:48.1178 4147 91 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.5E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 500.0 189.186.42.241 c56f9a2d-aef8-4d1d-a653-b780e7b79c91 2019-03-23 18:07:00.820821 4148 281 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 91\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-03-23\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-131\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 31a00b69-9e0f-424e-8244-cc0bd937b9d3 2019-03-23 18:07:13.457993 4149 285 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.42.241 31a00b69-9e0f-424e-8244-cc0bd937b9d3 2019-03-23 18:07:13.485984 4150 281 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 bea5f4e9-0000-452b-95ed-b8b5518bf4d5 2019-03-23 18:07:16.858178 4151 339 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 91\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 281\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-131\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-131 189.186.42.241 bea5f4e9-0000-452b-95ed-b8b5518bf4d5 2019-03-23 18:07:16.890258 4152 282 Sale \N \N 3 User \N create ---\ncustomer_id: 45\nuser_id: 3\nopen_cash_register_id: 91\namount: !ruby/object:BigDecimal 18:0.84483E3\ntax: !ruby/object:BigDecimal 18:0.13517E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.98E3\nstatus: 0\ndate_sale: 2019-03-23\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-132\nexpiration_date: 2019-04-27\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 3212b797-4f04-4625-a3ba-dda01897d5fa 2019-03-23 20:55:34.554878 4153 414 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.42.241 3212b797-4f04-4625-a3ba-dda01897d5fa 2019-03-23 20:55:34.599781 4154 340 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 91\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 282\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-132\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-132 189.186.42.241 a1ba6304-541c-4b25-8963-61bd0ffd56d0 2019-03-23 20:55:42.755767 4155 282 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.42.241 974b84ff-9a88-4739-885c-7614dc8ad2cc 2019-03-23 20:55:43.91385 4156 45 Customer \N \N 3 User \N update --- {}\n 2 El cliente MARTHA SARABIA fue registrado. 189.186.42.241 303ab743-3948-46a7-af6f-def0a0844329 2019-03-23 21:00:25.055264 4157 282 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV2-V-132 cancelada. 189.186.42.241 6e25eafb-1ebb-4ca0-bc52-9a10c59bea31 2019-03-23 21:00:42.166912 4158 414 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.42.241 6e25eafb-1ebb-4ca0-bc52-9a10c59bea31 2019-03-23 21:00:42.198833 4159 283 Sale \N \N 3 User \N create ---\ncustomer_id: 45\nuser_id: 3\nopen_cash_register_id: 91\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-03-23\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-133\nexpiration_date: 2019-04-27\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 df4f1f63-a929-4266-a688-da625d83819c 2019-03-23 21:01:29.505127 4160 416 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.42.241 df4f1f63-a929-4266-a688-da625d83819c 2019-03-23 21:01:29.53912 4161 341 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 91\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 283\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-133\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-133 189.186.42.241 a2300347-ce55-408a-aed6-655a16503333 2019-03-23 21:01:36.472388 4162 283 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.42.241 2f8b2caa-1e91-4c66-995b-af3c2951d639 2019-03-23 21:01:38.35431 4163 342 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 91\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.668E3\nmove_type: '1'\nsale_id: 211\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.32E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-95 189.186.42.241 dba4cb18-da05-41db-aa34-53a1f2a2751e 2019-03-23 21:57:25.263814 4164 211 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.42.241 21ef1b96-9b3d-4634-a14e-da241ba743eb 2019-03-23 21:57:26.778574 4165 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-21 22:16:17.196035000 Z\n- &1 2019-03-22 02:44:36.924133000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-23 22:09:53.325594128 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539589\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539589\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938465\n mask_addr: 4294967295\nsign_in_count:\n- 98\n- 99\n 198 \N 200.68.151.161 43f01b36-19bf-4dd4-9f89-b22d49f50e9f 2019-03-23 22:09:53.338216 4166 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PqRjen9KLkmQTdKW2beJ\n- QdtjRsuogXN3ww68qRzV\n 199 \N 200.68.151.161 43f01b36-19bf-4dd4-9f89-b22d49f50e9f 2019-03-23 22:09:53.359442 4167 63 Purchase \N \N 1 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-42\namount: !ruby/object:BigDecimal 18:0.3383E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3383E4\nobservations: ''\npurchase_date: 2019-03-23\nuser_id: '1'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-42 por $ 3383.0 MXN creada. 189.186.42.241 46986a51-a0dc-4fba-8f5c-f35a9a6e0cd6 2019-03-23 22:13:51.605353 4168 532 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.42.241 46986a51-a0dc-4fba-8f5c-f35a9a6e0cd6 2019-03-23 22:13:51.635233 4169 284 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 91\namount: !ruby/object:BigDecimal 18:0.42155E3\ntax: !ruby/object:BigDecimal 18:0.6745E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-03-23\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-134\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 47fd389f-7a42-4e2a-b718-8b70f8bd07ac 2019-03-23 22:20:48.027179 4170 320 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.42.241 47fd389f-7a42-4e2a-b718-8b70f8bd07ac 2019-03-23 22:20:48.062075 4171 284 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 b3260294-a38b-4624-8118-e15dd713510e 2019-03-23 22:21:13.130729 4172 343 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 91\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.489E3\nmove_type: '1'\nsale_id: 284\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-134\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-134 189.186.42.241 b3260294-a38b-4624-8118-e15dd713510e 2019-03-23 22:21:13.156234 4173 187 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 189.186.42.241 9b68350e-cb86-4d3b-9e53-f3f9df527f94 2019-03-23 22:36:02.567666 4174 187 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.42.241 17b5f68d-6ae1-41cf-a659-566f94346fbc 2019-03-23 22:36:06.395049 4175 187 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.42.241 84b33dd7-3da9-4db5-be43-c2bd0d7d3a6d 2019-03-23 22:36:08.429571 4176 185 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.42.241 25edb36b-0181-4181-84db-ce238f11f7ab 2019-03-23 22:36:31.103133 4177 185 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.42.241 aadbf005-f97d-4682-ad2a-6ccd69bbc6d3 2019-03-23 22:36:35.779643 4178 25 Transfer \N \N 1 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-03-23\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.42.241 01b49cd2-ef29-4226-82ed-ab848e906e4c 2019-03-23 22:36:38.135554 4179 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-23 16:58:10.110801000 Z\n- &1 2019-03-23 17:44:44.965963000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-23 22:37:33.196777654 Z\nsign_in_count:\n- 59\n- 60\n 123 \N 189.186.42.241 29b4d535-6246-473b-9c9e-0f22b488c755 2019-03-23 22:37:33.206303 4180 2 User \N \N 2 User \N update ---\nunique_session_id:\n- NdxVSdGbGBXUDo_UnDUy\n- 8y6EyrMsE8mGgqe8Phxy\n 124 \N 189.186.42.241 29b4d535-6246-473b-9c9e-0f22b488c755 2019-03-23 22:37:33.225812 4181 344 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 90\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 223\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-121 189.186.42.241 57852971-b8b3-497b-865d-f895d2a30195 2019-03-23 22:38:31.116443 23490 1644 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 e84eadbd-9d95-4f83-8c4c-92337fd310ae 2019-12-11 20:18:27.546204 4182 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-23 17:41:30.434756000 Z\n- &1 2019-03-23 18:06:48.092151000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-23 23:15:46.951943701 Z\nsign_in_count:\n- 95\n- 96\n 192 \N 189.186.42.241 4e3f79f8-471e-450b-baff-6cf813f5f6b6 2019-03-23 23:15:46.959215 4183 3 User \N \N 3 User \N update ---\nunique_session_id:\n- VQsyGESMoPJ42xgtyy3X\n- GBzT6teuSos9GKCzYTSL\n 193 \N 189.186.42.241 4e3f79f8-471e-450b-baff-6cf813f5f6b6 2019-03-23 23:15:46.976219 4184 516 Product \N \N 3 User \N create ---\nsku: VES-516\nname: VST-0012\ndescription: VESTIDO NEGRO VALENTINE\nprice_base: !ruby/object:BigDecimal 18:0.4995E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-516 fue creado. 189.186.42.241 ed59664b-b501-4f54-9683-390ea4923f02 2019-03-23 23:36:56.195731 4185 516 Product \N \N 3 User \N update ---\nbarcode:\n- ''\n- '0000516'\n 2 \N 189.186.42.241 ed59664b-b501-4f54-9683-390ea4923f02 2019-03-23 23:36:56.246985 4186 549 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 516\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 ed59664b-b501-4f54-9683-390ea4923f02 2019-03-23 23:36:56.29424 4187 64 Purchase \N \N 3 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-20\namount: !ruby/object:BigDecimal 18:0.2997E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2997E4\nobservations: ''\npurchase_date: 2019-03-23\nuser_id: '3'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-20 por $ 2997.0 MXN creada. 189.186.42.241 a336e8e0-2983-44e0-a789-337cb07e29c7 2019-03-23 23:37:06.218133 4188 549 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 a336e8e0-2983-44e0-a789-337cb07e29c7 2019-03-23 23:37:06.247857 4189 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-03-22 17:34:24.030212000 Z\n- &1 2019-03-23 17:23:43.407577000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-23 23:38:14.553965443 Z\nsign_in_count:\n- 40\n- 41\n 82 \N 189.186.42.241 446d2e3f-9649-410d-8898-d76d4006303c 2019-03-23 23:38:14.561638 4190 1 User \N \N 1 User \N update ---\nunique_session_id:\n- T8EJp7KAM_z_issP9bF2\n- 18He1Xw6agFgrdALiqtc\n 83 \N 189.186.42.241 446d2e3f-9649-410d-8898-d76d4006303c 2019-03-23 23:38:14.578184 4191 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-23 18:06:48.092151000 Z\n- &1 2019-03-23 23:15:46.951943000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-23 23:43:06.825023739 Z\nsign_in_count:\n- 96\n- 97\n 194 \N 189.186.42.241 69913455-0504-46a5-91b0-e6d19746bac6 2019-03-23 23:43:06.832199 4192 3 User \N \N 3 User \N update ---\nunique_session_id:\n- GBzT6teuSos9GKCzYTSL\n- sXYXEdW7fcrybEP6HnQs\n 195 \N 189.186.42.241 69913455-0504-46a5-91b0-e6d19746bac6 2019-03-23 23:43:06.847162 4193 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-20 21:16:56.395836000 Z\n- &1 2019-03-22 23:37:04.615938000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-24 00:04:20.826980681 Z\nsign_in_count:\n- 46\n- 47\n 94 \N 189.186.42.241 a0285f7a-b19b-460c-8d3e-174a41a32863 2019-03-24 00:04:20.83344 4194 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 7XJzxvUwxVSvYnxSJy_5\n- DZBjDwHh-zNP6g9Ey9ne\n 95 \N 189.186.42.241 a0285f7a-b19b-460c-8d3e-174a41a32863 2019-03-24 00:04:20.848254 4195 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-23 23:15:46.951943000 Z\n- &1 2019-03-23 23:43:06.825023000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-24 00:10:49.887881480 Z\nsign_in_count:\n- 97\n- 98\n 196 \N 189.186.42.241 f6e02301-18ba-468f-91fe-6519f6feef7f 2019-03-24 00:10:49.894701 4196 3 User \N \N 3 User \N update ---\nunique_session_id:\n- sXYXEdW7fcrybEP6HnQs\n- HxpnbPxVW-5n6fMPaNLM\n 197 \N 189.186.42.241 f6e02301-18ba-468f-91fe-6519f6feef7f 2019-03-24 00:10:49.912188 4197 285 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 91\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-03-23\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-135\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 4fa50c7f-0707-4117-a2c1-d6d8c02b4a5b 2019-03-24 00:18:49.101527 4198 283 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.42.241 4fa50c7f-0707-4117-a2c1-d6d8c02b4a5b 2019-03-24 00:18:49.134432 4199 285 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 de0dff41-c2ff-447e-b1e3-ab53f0e87c3d 2019-03-24 00:20:26.839328 4200 345 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 91\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 285\ncardnumber: 7580\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-135\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-135 189.186.42.241 de0dff41-c2ff-447e-b1e3-ab53f0e87c3d 2019-03-24 00:20:26.875211 4201 346 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 48\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.23301E3\nmove_type: '1'\nsale_id: 171\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.23301E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 f3747d39-2d4a-41c3-9b81-bceffd31b32c 2019-03-24 01:14:22.993856 4202 346 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 48\n- 90\n 2 movimiento de efectivo por venta con folio PV2-V-74 189.186.42.241 f3747d39-2d4a-41c3-9b81-bceffd31b32c 2019-03-24 01:14:23.027103 4203 25 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 91\nquantity: !ruby/object:BigDecimal 18:0.5E3\nstatus: 1\nobservations: SUELDO RESTANTE ANABELLY\nexpense_date: 2019-03-23\nexpense_code: PV2-E-3\n 1 Egreso por 500.0 registrado 189.186.42.241 018238cf-14bd-4808-9fd3-1321e6136e80 2019-03-24 01:26:20.544152 4204 347 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 91\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 25\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 018238cf-14bd-4808-9fd3-1321e6136e80 2019-03-24 01:26:20.569621 4205 26 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 90\nquantity: !ruby/object:BigDecimal 18:0.678E3\nstatus: 1\nobservations: "$50 comida $628 sueldo Rocio"\nexpense_date: 2019-03-23\nexpense_code: PV1-E-23\n 1 Egreso por 678.0 registrado 189.186.42.241 07d564f7-4c0c-4a31-b45a-85c345df1501 2019-03-24 01:42:25.639941 24082 1717 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 59768d02-9a42-449b-bb83-8c51dd7061e6 2019-12-17 00:36:27.14892 4206 348 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 90\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.678E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 26\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 07d564f7-4c0c-4a31-b45a-85c345df1501 2019-03-24 01:42:25.666969 4207 88 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 91\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.3355E4\namount_out: !ruby/object:BigDecimal 18:0.5E3\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.18E4\ncash_fund: !ruby/object:BigDecimal 18:0.556E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2356E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.42.241 72542bc5-9532-494b-a6f4-f3993273437c 2019-03-24 01:56:57.409277 4208 91 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 72542bc5-9532-494b-a6f4-f3993273437c 2019-03-24 01:56:57.425718 4209 89 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 90\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.73301E3\namount_out: !ruby/object:BigDecimal 18:0.678E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1019E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1019E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 b2abc1a6-3d25-426b-8cb0-9b9f96fd9e81 2019-03-24 01:58:29.250246 4210 90 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 b2abc1a6-3d25-426b-8cb0-9b9f96fd9e81 2019-03-24 01:58:29.263995 4211 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-22 23:37:04.615938000 Z\n- &1 2019-03-24 00:04:20.826980000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-24 17:14:48.893127960 Z\nsign_in_count:\n- 47\n- 48\n 96 \N 189.186.42.241 8b262711-db7f-4e44-8a69-590fe172b9fb 2019-03-24 17:14:48.922756 4212 12 User \N \N 12 User \N update ---\nunique_session_id:\n- DZBjDwHh-zNP6g9Ey9ne\n- 4LcaCGyxCw_sVa7TCBsc\n 97 \N 189.186.42.241 8b262711-db7f-4e44-8a69-590fe172b9fb 2019-03-24 17:14:48.944534 4213 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-03-20 17:13:45.512917000 Z\n- &1 2019-03-22 01:24:41.656728000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-24 17:16:04.850987868 Z\nsign_in_count:\n- 22\n- 23\n 46 \N 189.186.42.241 867a0598-5231-4092-978e-317ecb6b6959 2019-03-24 17:16:04.8568 4214 11 User \N \N 11 User \N update ---\nunique_session_id:\n- PHtDrcf-ZsxMUu8artD4\n- 4xwU1iUdssN2Z_eXkxbY\n 47 \N 189.186.42.241 867a0598-5231-4092-978e-317ecb6b6959 2019-03-24 17:16:04.871319 4215 92 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.555E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 555.0 189.186.42.241 fe544652-a7c7-4811-98a6-fb2ea2d1d380 2019-03-24 17:19:58.55567 4216 93 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.1018E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1018.0 189.186.42.241 596bc38f-2968-4d31-a3b2-f068de44433e 2019-03-24 17:23:06.96722 4217 286 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 93\namount: !ruby/object:BigDecimal 18:0.874E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.998E3\nstatus: 0\ndate_sale: 2019-03-24\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-149\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 b9204b6d-e84a-43a6-9d2d-427dddb606c4 2019-03-24 18:04:13.952098 4218 137 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.42.241 b9204b6d-e84a-43a6-9d2d-427dddb606c4 2019-03-24 18:04:13.994919 4219 486 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.53E2\n- !ruby/object:BigDecimal 18:0.52E2\n 10 \N 189.186.42.241 b9204b6d-e84a-43a6-9d2d-427dddb606c4 2019-03-24 18:04:14.041176 4220 286 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 dd066d38-9eb4-4058-9179-a016f48f197f 2019-03-24 18:04:17.889442 4221 349 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 93\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.998E3\nmove_type: '1'\nsale_id: 286\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-149\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-149 189.186.42.241 dd066d38-9eb4-4058-9179-a016f48f197f 2019-03-24 18:04:17.917221 4222 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-22 02:44:36.924133000 Z\n- &1 2019-03-23 22:09:53.325594000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-24 18:06:30.808296657 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539589\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938465\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938465\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539541\n mask_addr: 4294967295\nsign_in_count:\n- 99\n- 100\n 200 \N 177.228.117.149 22d9db4b-7acb-4f78-9234-64d4e5389553 2019-03-24 18:06:30.819255 4223 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QdtjRsuogXN3ww68qRzV\n- 4T2GxtsE7Pq1APK4zqZT\n 201 \N 177.228.117.149 22d9db4b-7acb-4f78-9234-64d4e5389553 2019-03-24 18:06:30.840538 4224 287 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 92\namount: !ruby/object:BigDecimal 18:0.103448E4\ntax: !ruby/object:BigDecimal 18:0.16552E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.12E4\nstatus: 0\ndate_sale: 2019-03-24\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-136\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 5d61cbaf-068c-406d-9e8a-d25001595150 2019-03-24 18:49:24.391223 4225 546 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.42.241 5d61cbaf-068c-406d-9e8a-d25001595150 2019-03-24 18:49:24.429603 4226 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-23 23:43:06.825023000 Z\n- &1 2019-03-24 00:10:49.887881000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-24 18:49:29.074329743 Z\nsign_in_count:\n- 98\n- 99\n 198 \N 189.186.42.241 6ad27891-d1eb-487c-8459-09b8ed0b7637 2019-03-24 18:49:29.079642 4227 3 User \N \N 3 User \N update ---\nunique_session_id:\n- HxpnbPxVW-5n6fMPaNLM\n- 3wqgL3eYQpx2q8nEcaj8\n 199 \N 189.186.42.241 6ad27891-d1eb-487c-8459-09b8ed0b7637 2019-03-24 18:49:29.094188 4228 287 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-136 cancelada. 189.186.42.241 3494753d-aad8-47e5-afb9-03fe5784d020 2019-03-24 18:49:39.630508 4229 546 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.42.241 3494753d-aad8-47e5-afb9-03fe5784d020 2019-03-24 18:49:39.662982 4280 138 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 12 \N 189.186.42.241 48676074-5de7-4d33-8ec2-cdec5884f584 2019-03-25 17:45:02.397728 4230 288 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 92\namount: !ruby/object:BigDecimal 18:0.103448E4\ntax: !ruby/object:BigDecimal 18:0.16552E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.12E4\nstatus: 0\ndate_sale: 2019-03-24\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-137\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 80c4b33b-0c06-413f-be36-67644aa5f5a1 2019-03-24 18:50:16.935841 4231 546 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.42.241 80c4b33b-0c06-413f-be36-67644aa5f5a1 2019-03-24 18:50:16.965345 4232 288 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-137 cancelada. 189.186.42.241 032c6626-b098-4ea3-8312-6c5c6a26e097 2019-03-24 18:50:45.039369 4233 546 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.42.241 032c6626-b098-4ea3-8312-6c5c6a26e097 2019-03-24 18:50:45.062437 4234 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-24 00:04:20.826980000 Z\n- &1 2019-03-24 17:14:48.893127000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-24 18:51:42.689932672 Z\nsign_in_count:\n- 48\n- 49\n 98 \N 189.186.42.241 001bc9ff-7da5-4478-876a-ae9eda7a89fd 2019-03-24 18:51:42.698848 4235 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 4LcaCGyxCw_sVa7TCBsc\n- E4jfCqG2A9DLibtPCLPg\n 99 \N 189.186.42.241 001bc9ff-7da5-4478-876a-ae9eda7a89fd 2019-03-24 18:51:42.720949 4236 52 Customer \N \N 11 User \N create ---\nnick_name: LULU ORTIZ\nphone: "(667) 305-0564"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LULU ORTIZ fue registrado. 189.186.42.241 e09b4bb6-8b22-495a-8158-dcf2457b0d79 2019-03-24 18:54:59.839809 4237 289 Sale \N \N 11 User \N create ---\ncustomer_id: 52\nuser_id: 11\nopen_cash_register_id: 92\namount: !ruby/object:BigDecimal 18:0.103448E4\ntax: !ruby/object:BigDecimal 18:0.16552E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.12E4\nstatus: 0\ndate_sale: 2019-03-24\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-138\nexpiration_date: 2019-04-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 bfdf851b-efb0-4644-a729-347ea000aa37 2019-03-24 18:55:15.846466 4238 546 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.42.241 bfdf851b-efb0-4644-a729-347ea000aa37 2019-03-24 18:55:15.872549 4239 350 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 92\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 289\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-138\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.7E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-138 189.186.42.241 da95e669-ec62-4571-b91d-c0ac930a60e6 2019-03-24 18:55:37.523502 4240 289 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.42.241 de894490-2117-4ba4-a7cb-176717373245 2019-03-24 18:55:41.408302 4241 289 Sale \N \N 11 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV2-V-138 cancelada. 189.186.42.241 35eeeb22-1d7c-4138-a14b-b072ec78e783 2019-03-24 18:58:07.996533 4242 546 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.42.241 35eeeb22-1d7c-4138-a14b-b072ec78e783 2019-03-24 18:58:08.024241 4243 53 Customer \N \N 11 User \N create ---\nnick_name: LULU ORTIZ\nphone: "(667) 305-0564"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LULU ORTIZ fue registrado. 189.186.42.241 17a8052a-bc13-4a24-8b01-c4b680fe814a 2019-03-24 18:59:22.397302 4244 290 Sale \N \N 11 User \N create ---\ncustomer_id: 53\nuser_id: 11\nopen_cash_register_id: 92\namount: !ruby/object:BigDecimal 18:0.103448E4\ntax: !ruby/object:BigDecimal 18:0.16552E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.12E4\nstatus: 0\ndate_sale: 2019-03-24\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-139\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 7293ec7c-849c-4dc0-8ba3-28a91c96dc66 2019-03-24 18:59:38.178904 4245 546 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.42.241 7293ec7c-849c-4dc0-8ba3-28a91c96dc66 2019-03-24 18:59:38.210509 4246 290 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-139 cancelada. 189.186.42.241 8bf2e6bd-2c75-4eb9-8354-c601e441a309 2019-03-24 18:59:47.611119 4247 546 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.42.241 8bf2e6bd-2c75-4eb9-8354-c601e441a309 2019-03-24 18:59:47.640602 4248 54 Customer \N \N 11 User \N create ---\nnick_name: LULU ORTIZ\nphone: "(667) 305-0564"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LULU ORTIZ fue registrado. 189.186.42.241 a794cdc5-2c1e-41a2-84e6-0316840bb27a 2019-03-24 19:00:14.580291 4249 291 Sale \N \N 11 User \N create ---\ncustomer_id: 54\nuser_id: 11\nopen_cash_register_id: 92\namount: !ruby/object:BigDecimal 18:0.103448E4\ntax: !ruby/object:BigDecimal 18:0.16552E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.12E4\nstatus: 0\ndate_sale: 2019-03-24\nsaletype: 2\nseller_id: 7\nsale_code: PV2-V-140\nexpiration_date: 2019-04-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 57ed32ed-4c5a-49f3-98bd-144fbaf4c32c 2019-03-24 19:00:56.920342 4250 546 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.42.241 57ed32ed-4c5a-49f3-98bd-144fbaf4c32c 2019-03-24 19:00:56.950016 4251 351 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 92\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 291\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-140\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.7E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-140 189.186.42.241 a00f859a-6098-4833-9780-ade3631272d8 2019-03-24 19:01:05.363653 4252 291 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.42.241 31f21f4a-6e84-4bb1-9d5e-ce61a7f2a798 2019-03-24 19:01:06.761256 4253 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-24 00:10:49.887881000 Z\n- &1 2019-03-24 18:49:29.074329000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-24 20:32:12.570697054 Z\nsign_in_count:\n- 99\n- 100\n 200 \N 189.186.42.241 a4fa4b3a-36f9-4b50-8786-6e47393cd69d 2019-03-24 20:32:12.578976 4254 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 3wqgL3eYQpx2q8nEcaj8\n- gUTnwQeS5KyS8qgTHV3T\n 201 \N 189.186.42.241 a4fa4b3a-36f9-4b50-8786-6e47393cd69d 2019-03-24 20:32:12.597836 4281 248 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.42.241 48676074-5de7-4d33-8ec2-cdec5884f584 2019-03-25 17:45:02.440862 4255 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-24 17:14:48.893127000 Z\n- &1 2019-03-24 18:51:42.689932000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-24 20:45:42.590159922 Z\nsign_in_count:\n- 49\n- 50\n 100 \N 189.186.42.241 478fe421-2234-44c4-92f1-9a5b613d7656 2019-03-24 20:45:42.596725 4256 12 User \N \N 12 User \N update ---\nunique_session_id:\n- E4jfCqG2A9DLibtPCLPg\n- 8y9ZjYSDX7oaGMz3XJR6\n 101 \N 189.186.42.241 478fe421-2234-44c4-92f1-9a5b613d7656 2019-03-24 20:45:42.614283 4257 292 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 93\namount: !ruby/object:BigDecimal 18:0.86121E3\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-03-24\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-150\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 45649cee-6cc0-4a8c-8984-eb8e14b8b704 2019-03-24 20:46:04.580152 4258 165 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.42.241 45649cee-6cc0-4a8c-8984-eb8e14b8b704 2019-03-24 20:46:04.615485 4259 292 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 1af1125d-bad4-4ac8-a3ff-fd57e8f99b9c 2019-03-24 20:46:29.611727 4260 352 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 93\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 292\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-150\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-150 189.186.42.241 1af1125d-bad4-4ac8-a3ff-fd57e8f99b9c 2019-03-24 20:46:29.658054 4261 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-24 18:49:29.074329000 Z\n- &1 2019-03-24 20:32:12.570697000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-24 20:49:06.170698606 Z\nsign_in_count:\n- 100\n- 101\n 202 \N 189.186.42.241 7d039c56-9d46-4cd6-b17d-87e037c29049 2019-03-24 20:49:06.176345 4262 3 User \N \N 3 User \N update ---\nunique_session_id:\n- gUTnwQeS5KyS8qgTHV3T\n- zzdXPjvwa-YY68sZssxC\n 203 \N 189.186.42.241 7d039c56-9d46-4cd6-b17d-87e037c29049 2019-03-24 20:49:06.188751 4263 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-24 18:51:42.689932000 Z\n- &1 2019-03-24 20:45:42.590159000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-24 20:49:21.942697975 Z\nsign_in_count:\n- 50\n- 51\n 102 \N 189.186.42.241 f64db306-9d0a-47ef-b9f2-d8979cd8630e 2019-03-24 20:49:21.949178 4264 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 8y9ZjYSDX7oaGMz3XJR6\n- ywY7zEiFuFpFY3Chgf4C\n 103 \N 189.186.42.241 f64db306-9d0a-47ef-b9f2-d8979cd8630e 2019-03-24 20:49:21.96319 4265 353 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 93\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 122\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-67 189.186.42.241 71ee76cc-e5ed-4348-822d-e19c38a7a304 2019-03-24 21:47:30.049703 4266 122 Sale \N \N 12 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.42.241 74628607-d625-476a-8327-b49ef02e7b3e 2019-03-24 21:47:31.089872 4267 90 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 93\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.2796E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.32E4\ncash_fund: !ruby/object:BigDecimal 18:0.1015E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4215E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 d6fddabb-f894-43b5-9a36-1d4d3c814057 2019-03-24 21:53:30.690632 4268 93 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 d6fddabb-f894-43b5-9a36-1d4d3c814057 2019-03-24 21:53:30.707646 4269 91 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 92\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.1E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.555E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1055E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.42.241 4c8fcfab-e3ed-43cf-8292-a29f8e9059b9 2019-03-24 21:56:40.267979 4270 92 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 4c8fcfab-e3ed-43cf-8292-a29f8e9059b9 2019-03-24 21:56:40.285625 4271 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-23 22:09:53.325594000 Z\n- &1 2019-03-24 18:06:30.808296000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-24 23:05:40.604842922 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938465\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539541\n mask_addr: 4294967295\nsign_in_count:\n- 100\n- 101\n 202 \N 177.228.117.149 2dce7fde-ca76-4022-95f1-b2979aa1f549 2019-03-24 23:05:40.615166 4272 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4T2GxtsE7Pq1APK4zqZT\n- xjNcjhjd4Do2fq5otNXC\n 203 \N 177.228.117.149 2dce7fde-ca76-4022-95f1-b2979aa1f549 2019-03-24 23:05:40.637786 4273 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-03-22 01:24:41.656728000 Z\n- &1 2019-03-24 17:16:04.850987000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-25 17:07:51.050458140 Z\nsign_in_count:\n- 23\n- 24\n 48 \N 189.186.42.241 61827366-3df0-4382-8f95-b9f15ff7ef96 2019-03-25 17:07:51.080542 4274 11 User \N \N 11 User \N update ---\nunique_session_id:\n- 4xwU1iUdssN2Z_eXkxbY\n- oFEy8qSXRt1kVCy3Q_QU\n 49 \N 189.186.42.241 61827366-3df0-4382-8f95-b9f15ff7ef96 2019-03-25 17:07:51.101022 4275 94 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.555E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 555.0 189.186.42.241 f0746990-9629-412b-ab20-f50c73395b90 2019-03-25 17:07:58.908284 4276 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-23 17:44:44.965963000 Z\n- &1 2019-03-23 22:37:33.196777000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-25 17:27:56.669800281 Z\nsign_in_count:\n- 60\n- 61\n 125 \N 189.186.42.241 45862491-f4d1-4b31-8233-671115a7ec3e 2019-03-25 17:27:56.675672 4277 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 8y6EyrMsE8mGgqe8Phxy\n- 7BFvMXFw-vh12se4a_iw\n 126 \N 189.186.42.241 45862491-f4d1-4b31-8233-671115a7ec3e 2019-03-25 17:27:56.690897 4278 95 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1015E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1015.0 189.186.42.241 de883ce5-ded3-4d0a-9260-13b53d48f0f9 2019-03-25 17:28:08.38687 4279 293 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 95\namount: !ruby/object:BigDecimal 18:0.15931E4\ntax: !ruby/object:BigDecimal 18:0.2549E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1848E4\nstatus: 0\ndate_sale: 2019-03-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-151\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 48676074-5de7-4d33-8ec2-cdec5884f584 2019-03-25 17:45:02.337765 4283 354 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 95\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1848E4\nmove_type: '1'\nsale_id: 293\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-151\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1848E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-151 189.186.42.241 31cecb76-3f7b-4249-938b-e87d004eb137 2019-03-25 17:45:11.972842 4284 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-24 20:32:12.570697000 Z\n- &1 2019-03-24 20:49:06.170698000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-25 17:49:29.717067991 Z\nsign_in_count:\n- 101\n- 102\n 204 \N 189.186.42.241 9ba66a65-03c3-4d53-adc3-bd6b819f2cbb 2019-03-25 17:49:29.725399 4285 3 User \N \N 3 User \N update ---\nunique_session_id:\n- zzdXPjvwa-YY68sZssxC\n- FQyP6PjehTzSEF6vU5Er\n 205 \N 189.186.42.241 9ba66a65-03c3-4d53-adc3-bd6b819f2cbb 2019-03-25 17:49:29.743624 4286 517 Product \N \N 3 User \N create ---\nsku: BLU-517\nname: BLX-0017\ndescription: 'BLUSA NEGRA DE TUL A.PEACH '\nprice_base: !ruby/object:BigDecimal 18:0.2995E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-517 fue creado. 189.186.42.241 29cbe5c4-bf90-48bc-961e-b51d34bd1460 2019-03-25 17:52:48.959735 4287 517 Product \N \N 3 User \N update ---\nbarcode:\n- ''\n- '0000517'\n 2 \N 189.186.42.241 29cbe5c4-bf90-48bc-961e-b51d34bd1460 2019-03-25 17:52:48.993622 4288 550 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 517\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 29cbe5c4-bf90-48bc-961e-b51d34bd1460 2019-03-25 17:52:49.027525 4289 517 Product \N \N 3 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.2995E3\n- !ruby/object:BigDecimal 27:0.3035E3\n 3 El producto BLU-517 fue modificado. 189.186.42.241 b9c8edc5-ff43-4236-a53e-a9d4b6be1a57 2019-03-25 17:52:53.171402 4290 517 Product \N \N 3 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.3035E3\n- !ruby/object:BigDecimal 27:0.3025E3\n 4 El producto BLU-517 fue modificado. 189.186.42.241 ea938fd8-96b9-4fb2-a9bb-23da4db5ee41 2019-03-25 17:52:57.923565 4291 517 Product \N \N 3 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.3025E3\n- !ruby/object:BigDecimal 27:0.3015E3\n 5 El producto BLU-517 fue modificado. 189.186.42.241 78fba3cd-2547-47a3-b282-9dd58158c739 2019-03-25 17:53:09.548819 4292 517 Product \N \N 3 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.3015E3\n- !ruby/object:BigDecimal 27:0.3005E3\n 6 El producto BLU-517 fue modificado. 189.186.42.241 86d96ee6-763b-4e4e-85f9-c82a668ac25e 2019-03-25 17:53:10.109392 4293 517 Product \N \N 3 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.3005E3\n- !ruby/object:BigDecimal 27:0.2995E3\n 7 El producto BLU-517 fue modificado. 189.186.42.241 2d94fdf7-1160-4a70-9277-379282cf1292 2019-03-25 17:53:14.482412 4294 65 Purchase \N \N 3 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-21\namount: !ruby/object:BigDecimal 18:0.1797E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1797E4\nobservations: ''\npurchase_date: 2019-03-25\nuser_id: '3'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-21 por $ 1797.0 MXN creada. 189.186.42.241 ad12c6ec-75ed-438a-aecb-f285956950f0 2019-03-25 17:53:45.934856 4295 550 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 ad12c6ec-75ed-438a-aecb-f285956950f0 2019-03-25 17:53:45.969165 4296 25 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-03-25\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.42.241 094591dc-3a94-4443-9840-3ac75647e8dc 2019-03-25 17:54:12.433823 4297 551 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 189\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 094591dc-3a94-4443-9840-3ac75647e8dc 2019-03-25 17:54:12.461416 4298 552 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 187\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 094591dc-3a94-4443-9840-3ac75647e8dc 2019-03-25 17:54:12.483671 4299 550 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.42.241 d679ab9d-ccae-4438-9a71-962214270d6b 2019-03-25 17:54:30.154058 4300 26 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-03-25\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.42.241 3b5dcef5-e921-4354-9ffb-af14adccfb33 2019-03-25 17:54:33.567263 4301 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-03-23 17:23:43.407577000 Z\n- &1 2019-03-23 23:38:14.553965000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-25 17:55:04.762443390 Z\nsign_in_count:\n- 41\n- 42\n 84 \N 189.186.42.241 3c4d4e28-9690-41c9-8418-279861dc8457 2019-03-25 17:55:04.768632 4302 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 18He1Xw6agFgrdALiqtc\n- imvMgxbXyasxwk6SFhwR\n 85 \N 189.186.42.241 3c4d4e28-9690-41c9-8418-279861dc8457 2019-03-25 17:55:04.782049 4303 26 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-03-25\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.42.241 37db334e-c822-476c-9193-34ce4afcb40f 2019-03-25 17:55:23.828203 4304 553 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 517\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 37db334e-c822-476c-9193-34ce4afcb40f 2019-03-25 17:55:23.853359 4305 294 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 95\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-03-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-152\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 52cbca88-40ec-45a2-8b30-c89291f339c9 2019-03-25 17:55:56.650393 4306 553 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.42.241 52cbca88-40ec-45a2-8b30-c89291f339c9 2019-03-25 17:55:56.6985 4307 294 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 eedf6c73-e044-4d3b-9ee5-93e722229529 2019-03-25 17:56:01.850465 4308 355 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 95\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 294\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-152\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-152 189.186.42.241 eedf6c73-e044-4d3b-9ee5-93e722229529 2019-03-25 17:56:01.873616 4309 27 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 95\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: Comida chio\nexpense_date: 2019-03-25\nexpense_code: PV1-E-24\n 1 Egreso por 50.0 registrado 189.186.42.241 a16eeb7c-5bda-4d0f-998e-3c2677b6807a 2019-03-25 17:59:43.457637 4310 356 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 95\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 27\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 a16eeb7c-5bda-4d0f-998e-3c2677b6807a 2019-03-25 17:59:43.479166 4311 55 Customer \N \N 2 User \N create ---\nnick_name: CARMEN RUELAS\nphone: "(667) 202-2096"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.1E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CARMEN RUELAS fue registrado. 189.186.42.241 f5ca8c8a-69ac-4f59-98cb-7717da5ff4e9 2019-03-25 18:50:35.333227 4312 295 Sale \N \N 2 User \N create ---\ncustomer_id: 55\nuser_id: 2\nopen_cash_register_id: 95\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-03-25\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-153\nexpiration_date: 2019-04-29\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 eed0faf9-e4f9-4f77-b448-2b34bdcc5817 2019-03-25 18:51:15.969373 4313 137 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.42.241 eed0faf9-e4f9-4f77-b448-2b34bdcc5817 2019-03-25 18:51:16.002966 4314 357 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 95\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 295\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-153\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-153 189.186.42.241 0c7ecb0a-e8a0-46f7-bf3f-c6d1126af09c 2019-03-25 18:51:23.555292 4315 295 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.42.241 c1cec18b-2c40-4626-93f1-d5f3ac5c7821 2019-03-25 18:51:28.204127 4316 56 Customer \N \N 11 User \N create ---\nnick_name: ABRIL ROMERO\nphone: "(672) 117-5882"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ABRIL ROMERO fue registrado. 189.186.42.241 3f9fbec2-d7d2-4809-b44d-bab4382a902f 2019-03-25 20:02:34.767496 4317 296 Sale \N \N 11 User \N create ---\ncustomer_id: 56\nuser_id: 11\nopen_cash_register_id: 94\namount: !ruby/object:BigDecimal 18:0.399E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.399E3\nstatus: 0\ndate_sale: 2019-03-25\nsaletype: 2\nseller_id: 7\nsale_code: PV2-V-141\nexpiration_date: 2019-04-29\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 9d8eeb53-190c-43b9-a536-e99093a60805 2019-03-25 20:03:15.809109 4318 457 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.42.241 9d8eeb53-190c-43b9-a536-e99093a60805 2019-03-25 20:03:15.845285 4319 358 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 94\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 296\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-141\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.399E3\nchange: !ruby/object:BigDecimal 18:0.199E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-141 189.186.42.241 b56cc2e1-aad7-41f9-9a55-5302416d857c 2019-03-25 20:03:39.479775 4320 296 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.42.241 c7ed599f-01d9-4efc-b57d-54d5dc7bc5bd 2019-03-25 20:03:41.411434 4321 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-24 18:06:30.808296000 Z\n- &1 2019-03-24 23:05:40.604842000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-26 00:05:31.017647193 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539541\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938351\n mask_addr: 4294967295\nsign_in_count:\n- 101\n- 102\n 204 \N 200.68.151.47 c8c20880-f1cd-4605-9b9e-ff0f41b9ec8c 2019-03-26 00:05:31.046917 4322 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xjNcjhjd4Do2fq5otNXC\n- tsk-SsNhyJkeHdo--bPb\n 205 \N 200.68.151.47 c8c20880-f1cd-4605-9b9e-ff0f41b9ec8c 2019-03-26 00:05:31.068417 4323 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-24 23:05:40.604842000 Z\n- &1 2019-03-26 00:05:31.017647000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-26 00:36:22.755829966 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539541\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938351\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938351\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\nsign_in_count:\n- 102\n- 103\n 206 \N 189.186.42.241 33f8c72a-635a-4e00-902c-c737a78761ba 2019-03-26 00:36:22.763689 4324 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tsk-SsNhyJkeHdo--bPb\n- R2mb_weDoSgrKqt9_Pth\n 207 \N 189.186.42.241 33f8c72a-635a-4e00-902c-c737a78761ba 2019-03-26 00:36:22.781289 4325 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-03-05 02:21:02.429157000 Z\n- &1 2019-03-05 02:53:11.879020000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-26 00:58:34.584891949 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\nsign_in_count:\n- 35\n- 36\n 72 \N 189.186.42.241 551d4607-ec0a-41ab-84bf-7151aa6c7e97 2019-03-26 00:58:34.595182 4326 10 User \N \N 10 User \N update ---\nunique_session_id:\n- tsP-rSz-U1axhbGx_rNy\n- mQs78a1kMDQ5xqEmUVi5\n 73 \N 189.186.42.241 551d4607-ec0a-41ab-84bf-7151aa6c7e97 2019-03-26 00:58:34.616188 4348 557 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 49b48c25-81e2-467c-935f-1940aa87ca63 2019-03-26 01:39:39.100772 4370 561 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 22435957-95cd-4d65-bd6e-7394cc5a8b8d 2019-03-26 01:58:13.709724 4752 3 User \N \N 3 User \N update ---\nunique_session_id:\n- zQcCW9CUrp9QNxqhzWpP\n- oLbz5Xa-35sySKEDuQ-8\n 237 \N 189.186.42.241 9d93b030-6649-4a7e-83e2-dc881b92a8b5 2019-04-03 22:50:59.772273 4327 518 Product \N \N 4 User \N create ---\nsku: BLU-518\nname: BLX-0017\ndescription: BLUSA VOILA ROSA CON ENCAJE EN MANGAS\nprice_base: !ruby/object:BigDecimal 18:0.35478E3\nprice_sale: !ruby/object:BigDecimal 18:0.869E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-518 fue creado. 189.186.42.241 a1095cb0-9463-44b4-82a0-6ad1eda0fbbb 2019-03-26 01:14:47.135722 4328 518 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000518'\n 2 \N 189.186.42.241 a1095cb0-9463-44b4-82a0-6ad1eda0fbbb 2019-03-26 01:14:47.178834 4329 554 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 518\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 a1095cb0-9463-44b4-82a0-6ad1eda0fbbb 2019-03-26 01:14:47.212344 4330 66 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-22\namount: !ruby/object:BigDecimal 18:0.212868E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.212868E4\nobservations: ''\npurchase_date: 2019-03-25\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-22 por $ 2128.68 MXN creada. 189.186.42.241 081def97-0751-4833-898b-a063277e3f1d 2019-03-26 01:14:54.268962 4331 554 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 081def97-0751-4833-898b-a063277e3f1d 2019-03-26 01:14:54.301938 4332 66 Purchase \N \N 4 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Compra PV2-C-22 cancelada. 189.186.42.241 edea0983-78bb-43b9-a7db-cebf4b5a558a 2019-03-26 01:19:34.854237 4333 554 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.42.241 edea0983-78bb-43b9-a7db-cebf4b5a558a 2019-03-26 01:19:34.889839 4334 519 Product \N \N 4 User \N create ---\nsku: BLU-519\nname: BLX-0018\ndescription: BLUSA VOILA ROSA CON ENCAJE EN MANGAS\nprice_base: !ruby/object:BigDecimal 18:0.35478E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-519 fue creado. 189.186.42.241 eb129dcc-6dc7-4651-97e0-28a3019bc55c 2019-03-26 01:21:26.708801 4335 519 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000519'\n 2 \N 189.186.42.241 eb129dcc-6dc7-4651-97e0-28a3019bc55c 2019-03-26 01:21:26.738662 4336 555 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 519\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 eb129dcc-6dc7-4651-97e0-28a3019bc55c 2019-03-26 01:21:26.771767 4337 67 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-23\namount: !ruby/object:BigDecimal 18:0.212868E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.212868E4\nobservations: ''\npurchase_date: 2019-03-25\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-23 por $ 2128.68 MXN creada. 189.186.42.241 a2babbef-0516-4a39-bb69-2254195d5d19 2019-03-26 01:21:34.565194 4338 555 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 a2babbef-0516-4a39-bb69-2254195d5d19 2019-03-26 01:21:34.598944 4339 520 Product \N \N 4 User \N create ---\nsku: BLU-520\nname: BLX-0019\ndescription: BLUSA NEGRA CON FALDITA Y MOÑO\nprice_base: !ruby/object:BigDecimal 18:0.38434E3\nprice_sale: !ruby/object:BigDecimal 18:0.849E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-520 fue creado. 189.186.42.241 4450e6ce-b93e-4113-aaa5-2923cae9a4d7 2019-03-26 01:30:15.157562 4340 520 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000520'\n 2 \N 189.186.42.241 4450e6ce-b93e-4113-aaa5-2923cae9a4d7 2019-03-26 01:30:15.186318 4341 556 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 520\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 4450e6ce-b93e-4113-aaa5-2923cae9a4d7 2019-03-26 01:30:15.221302 4342 68 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-24\namount: !ruby/object:BigDecimal 18:0.230604E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.230604E4\nobservations: ''\npurchase_date: 2019-03-25\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-24 por $ 2306.04 MXN creada. 189.186.42.241 bcd82263-828f-4e61-ae58-6790b8f59e40 2019-03-26 01:30:27.063512 4343 556 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 bcd82263-828f-4e61-ae58-6790b8f59e40 2019-03-26 01:30:27.091665 4344 521 Product \N \N 4 User \N create ---\nsku: BLU-521\nname: BLX-0020\ndescription: "PLAYERA NEGRA MONITAS CON GORRA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.17739E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-521 fue creado. 189.186.42.241 ce1d8078-7d23-4d71-b910-f7d55799522a 2019-03-26 01:39:31.287335 4345 521 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000521'\n 2 \N 189.186.42.241 ce1d8078-7d23-4d71-b910-f7d55799522a 2019-03-26 01:39:31.326145 4346 557 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 521\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 ce1d8078-7d23-4d71-b910-f7d55799522a 2019-03-26 01:39:31.356638 4347 69 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-25\namount: !ruby/object:BigDecimal 18:0.106434E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.106434E4\nobservations: ''\npurchase_date: 2019-03-25\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-25 por $ 1064.34 MXN creada. 189.186.42.241 49b48c25-81e2-467c-935f-1940aa87ca63 2019-03-26 01:39:39.0724 24129 1723 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 fdd665ad-5c35-4e4a-882e-c1109aa1e224 2019-12-17 18:36:07.502747 4349 522 Product \N \N 4 User \N create ---\nsku: FAL-522\nname: FLD-0005\ndescription: "FALDA MEZCLILLA BLABOA NEGRA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.23652E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-522 fue creado. 189.186.42.241 2cff790d-edad-45b3-afb9-0c62cbabb52f 2019-03-26 01:44:37.530139 4350 522 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000522'\n 2 \N 189.186.42.241 2cff790d-edad-45b3-afb9-0c62cbabb52f 2019-03-26 01:44:37.570325 4351 558 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 522\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 2cff790d-edad-45b3-afb9-0c62cbabb52f 2019-03-26 01:44:37.609342 4352 70 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-26\namount: !ruby/object:BigDecimal 18:0.141912E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.141912E4\nobservations: ''\npurchase_date: 2019-03-25\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-26 por $ 1419.12 MXN creada. 189.186.42.241 c484f5e0-1679-482d-b0cb-57c04c0db8cc 2019-03-26 01:44:45.482829 4353 558 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 c484f5e0-1679-482d-b0cb-57c04c0db8cc 2019-03-26 01:44:45.509857 4354 70 Purchase \N \N 4 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Compra PV2-C-26 cancelada. 189.186.42.241 c9c05b36-af63-4d96-be34-6a263325cb2a 2019-03-26 01:46:22.294621 4355 558 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.42.241 c9c05b36-af63-4d96-be34-6a263325cb2a 2019-03-26 01:46:22.325686 4356 523 Product \N \N 4 User \N create ---\nsku: FAL-523\nname: FLD-0006\ndescription: FALDA BALBOA MEZCLILLA NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.23652E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-523 fue creado. 189.186.42.241 fb7d8fc8-09c5-42c1-b6a9-2a7cc1380dbf 2019-03-26 01:47:14.770943 4357 523 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000523'\n 2 \N 189.186.42.241 fb7d8fc8-09c5-42c1-b6a9-2a7cc1380dbf 2019-03-26 01:47:14.80846 4358 559 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 523\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 fb7d8fc8-09c5-42c1-b6a9-2a7cc1380dbf 2019-03-26 01:47:14.845047 4359 71 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-27\namount: !ruby/object:BigDecimal 18:0.141912E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.141912E4\nobservations: ''\npurchase_date: 2019-03-25\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-27 por $ 1419.12 MXN creada. 189.186.42.241 b6fa850a-1414-4a53-bef6-087f008a04dc 2019-03-26 01:47:25.865795 4360 559 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 b6fa850a-1414-4a53-bef6-087f008a04dc 2019-03-26 01:47:25.897504 4361 524 Product \N \N 4 User \N create ---\nsku: BLU-524\nname: BLX-0021\ndescription: 'BLUSA PLAYERA ZAPATILLA ROSA '\nprice_base: !ruby/object:BigDecimal 18:0.21681E3\nprice_sale: !ruby/object:BigDecimal 18:0.549E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-524 fue creado. 189.186.42.241 617c9e21-2d95-4883-adef-8ae8f49d089b 2019-03-26 01:51:04.612137 4362 524 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000524'\n 2 \N 189.186.42.241 617c9e21-2d95-4883-adef-8ae8f49d089b 2019-03-26 01:51:04.653549 4363 560 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 524\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 617c9e21-2d95-4883-adef-8ae8f49d089b 2019-03-26 01:51:04.692865 4364 72 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-28\namount: !ruby/object:BigDecimal 18:0.130086E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.130086E4\nobservations: ''\npurchase_date: 2019-03-25\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-28 por $ 1300.86 MXN creada. 189.186.42.241 32d265cc-38a6-449f-8363-63caf9d6607c 2019-03-26 01:51:17.001803 4365 560 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 32d265cc-38a6-449f-8363-63caf9d6607c 2019-03-26 01:51:17.032156 4366 525 Product \N \N 4 User \N create ---\nsku: VES-525\nname: DRESS-0004\ndescription: VESTIDO CBQ ROSA BATITA\nprice_base: !ruby/object:BigDecimal 18:0.45333E3\nprice_sale: !ruby/object:BigDecimal 18:0.1099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-525 fue creado. 189.186.42.241 8e82b80b-a27f-4a57-b000-62ba70ffc4dd 2019-03-26 01:58:06.30023 4367 525 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000525'\n 2 \N 189.186.42.241 8e82b80b-a27f-4a57-b000-62ba70ffc4dd 2019-03-26 01:58:06.344193 4368 561 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 525\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 8e82b80b-a27f-4a57-b000-62ba70ffc4dd 2019-03-26 01:58:06.387638 4369 73 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-29\namount: !ruby/object:BigDecimal 18:0.271998E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.271998E4\nobservations: ''\npurchase_date: 2019-03-25\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-29 por $ 2719.98 MXN creada. 189.186.42.241 22435957-95cd-4d65-bd6e-7394cc5a8b8d 2019-03-26 01:58:13.67839 13109 18 Category \N \N 4 User \N update ---\nstatus:\n- active\n- 2\n 2 \N 189.186.213.107 f23e34f6-9fbc-4f13-9f55-07ae0272b9c6 2019-08-18 21:11:44.986188 4371 526 Product \N \N 4 User \N create ---\nsku: VES-526\nname: DRESS-005\ndescription: "VESTIDO NEGRO VOLADITO CON FLORES \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.35478E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-526 fue creado. 189.186.42.241 44129ddf-8e5f-4a5f-8702-7015302f1bdb 2019-03-26 02:03:24.331669 4372 526 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000526'\n 2 \N 189.186.42.241 44129ddf-8e5f-4a5f-8702-7015302f1bdb 2019-03-26 02:03:24.37087 4373 562 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 526\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 44129ddf-8e5f-4a5f-8702-7015302f1bdb 2019-03-26 02:03:24.410111 4374 74 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-30\namount: !ruby/object:BigDecimal 18:0.212868E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.212868E4\nobservations: ''\npurchase_date: 2019-03-25\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-30 por $ 2128.68 MXN creada. 189.186.42.241 a2a9fa60-29c7-42c2-832e-d94bd142a4c5 2019-03-26 02:03:31.315679 4375 562 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 a2a9fa60-29c7-42c2-832e-d94bd142a4c5 2019-03-26 02:03:31.346855 4376 92 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 95\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2747E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.28E4\ncash_fund: !ruby/object:BigDecimal 18:0.912E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3712E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 9defd5fc-0856-417c-a601-112e8b040d76 2019-03-26 02:06:03.719149 4377 95 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 9defd5fc-0856-417c-a601-112e8b040d76 2019-03-26 02:06:03.739622 4378 527 Product \N \N 4 User \N create ---\nsku: VES-527\nname: DRESS-006\ndescription: 'VESTIDO AZUL CON HOJAS '\nprice_base: !ruby/object:BigDecimal 18:0.29565E3\nprice_sale: !ruby/object:BigDecimal 18:0.749E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-527 fue creado. 189.186.42.241 fa8614da-dec3-4733-9ed6-7b9f5cfab3c4 2019-03-26 02:06:05.578199 4379 527 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000527'\n 2 \N 189.186.42.241 fa8614da-dec3-4733-9ed6-7b9f5cfab3c4 2019-03-26 02:06:05.68409 4380 563 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 527\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 fa8614da-dec3-4733-9ed6-7b9f5cfab3c4 2019-03-26 02:06:05.871135 4381 75 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-31\namount: !ruby/object:BigDecimal 18:0.17739E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.17739E4\nobservations: ''\npurchase_date: 2019-03-25\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-31 por $ 1773.9 MXN creada. 189.186.42.241 9bfff336-4094-4082-a006-b2d82179fe19 2019-03-26 02:06:12.539892 4382 563 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 9bfff336-4094-4082-a006-b2d82179fe19 2019-03-26 02:06:12.571069 4383 528 Product \N \N 4 User \N create ---\nsku: VES-528\nname: BLX-0022\ndescription: 'KIMONO NEGRO CON CINTO '\nprice_base: !ruby/object:BigDecimal 18:0.23652E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-528 fue creado. 189.186.42.241 2ee87920-7950-439b-9d0e-dd8a4fb5dc68 2019-03-26 02:12:43.375895 4384 528 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000528'\n 2 \N 189.186.42.241 2ee87920-7950-439b-9d0e-dd8a4fb5dc68 2019-03-26 02:12:43.41561 4385 564 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 528\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 2ee87920-7950-439b-9d0e-dd8a4fb5dc68 2019-03-26 02:12:43.45155 4386 76 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-32\namount: !ruby/object:BigDecimal 18:0.141912E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.141912E4\nobservations: ''\npurchase_date: 2019-03-25\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-32 por $ 1419.12 MXN creada. 189.186.42.241 16d2d7c3-b721-496f-a7d3-cf56897472c7 2019-03-26 02:12:49.937186 4387 564 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 16d2d7c3-b721-496f-a7d3-cf56897472c7 2019-03-26 02:12:49.973245 4388 529 Product \N \N 4 User \N create ---\nsku: BLU-529\nname: BLX-0023\ndescription: KIMONO CON PERLAS NEGRO SAN J\nprice_base: !ruby/object:BigDecimal 18:0.31536E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-529 fue creado. 189.186.42.241 a7d097a6-ef9a-4eaf-bf95-d387e13df730 2019-03-26 02:15:08.719577 4389 529 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000529'\n 2 \N 189.186.42.241 a7d097a6-ef9a-4eaf-bf95-d387e13df730 2019-03-26 02:15:08.756214 4390 565 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 529\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 a7d097a6-ef9a-4eaf-bf95-d387e13df730 2019-03-26 02:15:08.791249 4417 27 Transfer \N \N 11 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-03-26\nuser_id: 11\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.42.241 15a08471-df46-410b-8a90-37f8931b78df 2019-03-26 22:51:58.911968 4391 77 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-33\namount: !ruby/object:BigDecimal 18:0.189216E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.189216E4\nobservations: ''\npurchase_date: 2019-03-25\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-33 por $ 1892.16 MXN creada. 189.186.42.241 90b81d4a-e5db-46c8-a51f-dd29a4e9da38 2019-03-26 02:15:13.763618 4392 565 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 90b81d4a-e5db-46c8-a51f-dd29a4e9da38 2019-03-26 02:15:13.79531 4393 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-03-05 02:53:11.879020000 Z\n- &1 2019-03-26 00:58:34.584891000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-26 02:27:11.169176972 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\nsign_in_count:\n- 36\n- 37\n 74 \N 189.186.42.241 b75a76b6-7e2e-427c-8628-cb7a322e44b0 2019-03-26 02:27:11.176696 4394 10 User \N \N 10 User \N update ---\nunique_session_id:\n- mQs78a1kMDQ5xqEmUVi5\n- gURQuCqn9XN9mxYBYRzX\n 75 \N 189.186.42.241 b75a76b6-7e2e-427c-8628-cb7a322e44b0 2019-03-26 02:27:11.19069 4395 93 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 94\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.2E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.755E3\nphysical_cash: !ruby/object:BigDecimal 18:0.755E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.42.241 a944fb90-317b-473c-b234-f56347c2c21e 2019-03-26 02:28:50.332415 4396 94 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 a944fb90-317b-473c-b234-f56347c2c21e 2019-03-26 02:28:50.351784 4397 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-23 22:37:33.196777000 Z\n- &1 2019-03-25 17:27:56.669800000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-26 17:30:28.096675274 Z\nsign_in_count:\n- 61\n- 62\n 127 \N 189.186.42.241 3200ed3a-a715-4db4-9a39-c8c9b0ce1a2b 2019-03-26 17:30:28.139002 4398 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 7BFvMXFw-vh12se4a_iw\n- 6skmsUyB_kUzpVZ78wFL\n 128 \N 189.186.42.241 3200ed3a-a715-4db4-9a39-c8c9b0ce1a2b 2019-03-26 17:30:28.166221 4399 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-03-24 17:16:04.850987000 Z\n- &1 2019-03-25 17:07:51.050458000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-26 17:57:03.498294326 Z\nsign_in_count:\n- 24\n- 25\n 50 \N 189.186.42.241 9c7733e3-436c-4a38-9826-8ff6e7564320 2019-03-26 17:57:03.506486 4400 11 User \N \N 11 User \N update ---\nunique_session_id:\n- oFEy8qSXRt1kVCy3Q_QU\n- zF5DDJg--7xZgPnEcEgx\n 51 \N 189.186.42.241 9c7733e3-436c-4a38-9826-8ff6e7564320 2019-03-26 17:57:03.525542 4401 96 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.755E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 755.0 189.186.42.241 793c5553-0b69-409a-984f-a53d764d6aef 2019-03-26 18:36:33.783132 4402 297 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 96\namount: !ruby/object:BigDecimal 18:0.85172E3\ntax: !ruby/object:BigDecimal 18:0.13628E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.988E3\nstatus: 0\ndate_sale: 2019-03-26\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-142\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 4921af78-5b26-4d70-938b-550aaa2a84e7 2019-03-26 20:48:35.780871 4403 323 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.42.241 4921af78-5b26-4d70-938b-550aaa2a84e7 2019-03-26 20:48:35.820765 4404 495 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.42.241 4921af78-5b26-4d70-938b-550aaa2a84e7 2019-03-26 20:48:35.858099 4405 297 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 d1a366b3-1020-400e-8ece-935e860f5665 2019-03-26 20:48:48.027938 4406 359 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 96\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.988E3\nmove_type: '1'\nsale_id: 297\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-142\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.988E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-142 189.186.42.241 d1a366b3-1020-400e-8ece-935e860f5665 2019-03-26 20:48:48.064618 4407 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-26 00:05:31.017647000 Z\n- &1 2019-03-26 00:36:22.755829000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-26 22:17:10.272233050 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938351\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539213\n mask_addr: 4294967295\nsign_in_count:\n- 103\n- 104\n 208 \N 177.228.116.77 ff2b39df-7e6d-40a0-a3ce-7cf27254f3a4 2019-03-26 22:17:10.302932 4408 4 User \N \N 4 User \N update ---\nunique_session_id:\n- R2mb_weDoSgrKqt9_Pth\n- Y22BjxaDfzsmikKj1GyM\n 209 \N 177.228.116.77 ff2b39df-7e6d-40a0-a3ce-7cf27254f3a4 2019-03-26 22:17:10.328198 4409 328 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.42.241 387fbfcb-4857-4d79-b136-fa9d4fcfdb27 2019-03-26 22:50:33.626896 4410 328 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.42.241 82456da5-4bd3-4ee7-8a95-d1d5c685d1ea 2019-03-26 22:50:38.603285 4411 325 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.42.241 88823ea7-91d8-4e3e-9014-6633858f30f4 2019-03-26 22:51:02.778947 4412 325 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.42.241 4cd0915f-426d-4678-987f-42a640bdec8f 2019-03-26 22:51:06.321555 4413 320 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.42.241 179eed0b-272b-4bdd-bc96-2a1de7070d2c 2019-03-26 22:51:23.334871 4414 320 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.42.241 284bdf63-cebe-4997-ab88-320b3aba6ac0 2019-03-26 22:51:26.963826 4415 425 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.42.241 f06e3cc3-d92e-4c67-834b-10995414b1d7 2019-03-26 22:51:51.141972 4416 425 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.42.241 5fe56337-f919-4f77-b245-3a778479dbbc 2019-03-26 22:51:55.907329 4777 562 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.42.241 03b4bac3-94e2-4f96-b6fe-586d3e42edee 2019-04-04 17:21:49.527161 4418 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-24 20:45:42.590159000 Z\n- &1 2019-03-24 20:49:21.942697000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-27 00:24:43.443358009 Z\nsign_in_count:\n- 51\n- 52\n 104 \N 189.186.42.241 9bf86603-89f0-4e28-a3bc-a95245ca3244 2019-03-27 00:24:43.451341 4419 12 User \N \N 12 User \N update ---\nunique_session_id:\n- ywY7zEiFuFpFY3Chgf4C\n- FWkoiodEZ8TppzFywmNn\n 105 \N 189.186.42.241 9bf86603-89f0-4e28-a3bc-a95245ca3244 2019-03-27 00:24:43.470071 4420 97 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.912E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 912.0 189.186.42.241 98ade0a6-e32a-4341-b0e7-e93ab2e02d2a 2019-03-27 00:24:48.251258 4421 360 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 97\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.369E3\nmove_type: '1'\nsale_id: 104\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-55 189.186.42.241 dfb997dd-e7ec-4f03-ae6d-a4062bb84b45 2019-03-27 00:25:33.771349 4422 104 Sale \N \N 12 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.42.241 0235290c-a5dd-49c0-b133-27fbfd5d762a 2019-03-27 00:25:35.07716 4423 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-24 20:49:06.170698000 Z\n- &1 2019-03-25 17:49:29.717067000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-27 00:27:13.492953024 Z\nsign_in_count:\n- 102\n- 103\n 206 \N 189.186.42.241 e4f48bdb-0be3-4f2f-bb7b-1ac2bf81131b 2019-03-27 00:27:13.499593 4424 3 User \N \N 3 User \N update ---\nunique_session_id:\n- FQyP6PjehTzSEF6vU5Er\n- vjrc2Tqz_fpHCP_63YbC\n 207 \N 189.186.42.241 e4f48bdb-0be3-4f2f-bb7b-1ac2bf81131b 2019-03-27 00:27:13.514793 4425 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-24 20:49:21.942697000 Z\n- &1 2019-03-27 00:24:43.443358000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-27 00:27:47.397100283 Z\nsign_in_count:\n- 52\n- 53\n 106 \N 189.186.42.241 3701443d-35f8-4b8a-89b6-bb698cd538cc 2019-03-27 00:27:47.408937 4426 12 User \N \N 12 User \N update ---\nunique_session_id:\n- FWkoiodEZ8TppzFywmNn\n- wTaBjuUMz9zHet6ZY-NS\n 107 \N 189.186.42.241 3701443d-35f8-4b8a-89b6-bb698cd538cc 2019-03-27 00:27:47.433371 4427 28 Expense \N \N 12 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 97\nquantity: !ruby/object:BigDecimal 18:0.24E2\nstatus: 1\nobservations: AGUA\nexpense_date: 2019-03-26\nexpense_code: PV1-E-25\n 1 Egreso por 24.0 registrado 189.186.42.241 2f0f0b93-4fc4-459a-a8a4-a08ea356b715 2019-03-27 00:29:15.869693 4428 361 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 97\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.24E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 28\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 2f0f0b93-4fc4-459a-a8a4-a08ea356b715 2019-03-27 00:29:15.891361 4429 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-26 00:36:22.755829000 Z\n- &1 2019-03-26 22:17:10.272233000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-27 00:39:38.578491040 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539213\n mask_addr: 4294967295\nsign_in_count:\n- 104\n- 105\n 210 \N 177.228.116.77 d4d46b4c-2cc8-4e5e-bc08-35db6dca0109 2019-03-27 00:39:38.58806 4430 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Y22BjxaDfzsmikKj1GyM\n- WwxX5xLyst5Vjyakz1N5\n 211 \N 177.228.116.77 d4d46b4c-2cc8-4e5e-bc08-35db6dca0109 2019-03-27 00:39:38.608326 4431 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-25 17:49:29.717067000 Z\n- &1 2019-03-27 00:27:13.492953000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-27 01:33:23.374193019 Z\nsign_in_count:\n- 103\n- 104\n 208 \N 189.186.42.241 8fd16305-36e9-4b71-acc9-0a9171f244c0 2019-03-27 01:33:23.382774 4432 3 User \N \N 3 User \N update ---\nunique_session_id:\n- vjrc2Tqz_fpHCP_63YbC\n- mixkC5v2-gsxiPhW6F6G\n 209 \N 189.186.42.241 8fd16305-36e9-4b71-acc9-0a9171f244c0 2019-03-27 01:33:23.403187 4433 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-27 00:24:43.443358000 Z\n- &1 2019-03-27 00:27:47.397100000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-27 01:33:43.821156517 Z\nsign_in_count:\n- 53\n- 54\n 108 \N 189.186.42.241 20aa5efa-2ed0-43a9-a702-6638e25e0996 2019-03-27 01:33:43.829664 4434 12 User \N \N 12 User \N update ---\nunique_session_id:\n- wTaBjuUMz9zHet6ZY-NS\n- P7amKBScEyLk3sfUL7tn\n 109 \N 189.186.42.241 20aa5efa-2ed0-43a9-a702-6638e25e0996 2019-03-27 01:33:43.849147 4435 94 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 96\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.988E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.743E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1743E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.42.241 4caa41ee-7efe-4827-8e20-39007f077467 2019-03-27 01:49:19.682588 4436 96 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 4caa41ee-7efe-4827-8e20-39007f077467 2019-03-27 01:49:19.699221 4437 95 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 97\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.369E3\namount_out: !ruby/object:BigDecimal 18:0.24E2\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.757E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1257E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 7572a856-19ef-4e16-8d0c-f607f595821d 2019-03-27 01:54:20.857856 4438 97 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 7572a856-19ef-4e16-8d0c-f607f595821d 2019-03-27 01:54:20.877834 4439 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-25 17:27:56.669800000 Z\n- &1 2019-03-26 17:30:28.096675000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-27 17:13:55.868890316 Z\nsign_in_count:\n- 62\n- 63\n 129 \N 189.186.42.241 8cdceb34-7797-4f95-966b-2c2be513033c 2019-03-27 17:13:55.898199 4440 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 6skmsUyB_kUzpVZ78wFL\n- uC79_-o9EQF69C9FMVsW\n 130 \N 189.186.42.241 8cdceb34-7797-4f95-966b-2c2be513033c 2019-03-27 17:13:55.946113 4441 98 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.757E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 757.0 189.186.42.241 1b92635d-f79a-491d-b308-39414c1c5a8e 2019-03-27 17:14:53.883592 4442 99 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.743E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 743.0 189.186.42.241 2461fd4a-677c-4957-8a5e-414cd477d8f4 2019-03-27 19:39:40.787872 4606 105 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.522E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 522.0 189.186.42.241 6d044ae0-4d20-4338-aa64-ff7876c9803e 2019-03-30 23:17:09.829719 4443 362 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 99\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.357E3\nmove_type: '1'\nsale_id: 114\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.357E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-51 189.186.42.241 e9d5130d-a97f-4ba1-8d5f-b284de0c62df 2019-03-27 19:41:36.039517 4444 114 Sale \N \N 11 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.42.241 e006f3ce-404c-4669-b433-6a8fc2a9332f 2019-03-27 19:41:39.418276 4445 298 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 98\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-03-27\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-154\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 ea6a11de-ac7f-4f05-acf8-0a43fcffbaaf 2019-03-27 19:52:01.579549 4446 526 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.42.241 ea6a11de-ac7f-4f05-acf8-0a43fcffbaaf 2019-03-27 19:52:01.614561 4447 298 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 d1760702-a688-4030-92d1-b7c12d97e4a6 2019-03-27 19:52:43.485161 4448 363 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 98\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 298\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-154\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-154 189.186.42.241 d1760702-a688-4030-92d1-b7c12d97e4a6 2019-03-27 19:52:43.5083 4449 299 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 99\namount: !ruby/object:BigDecimal 18:0.74914E3\ntax: !ruby/object:BigDecimal 18:0.11986E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-03-27\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-143\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 a0cc3ee2-4752-4259-aa72-b1adb43d5286 2019-03-27 20:55:49.679622 4450 422 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.42.241 a0cc3ee2-4752-4259-aa72-b1adb43d5286 2019-03-27 20:55:49.720177 4451 299 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 3de4f5b6-8a5c-4fc4-a78c-f0514cfc8fde 2019-03-27 20:57:13.155223 4452 364 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 99\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.869E3\nmove_type: '1'\nsale_id: 299\ncardnumber: 9192\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-143\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-143 189.186.42.241 3de4f5b6-8a5c-4fc4-a78c-f0514cfc8fde 2019-03-27 20:57:13.1773 4453 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-26 22:17:10.272233000 Z\n- &1 2019-03-27 00:39:38.578491000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-27 23:01:10.415052344 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539213\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938257\n mask_addr: 4294967295\nsign_in_count:\n- 105\n- 106\n 212 \N 200.68.150.209 f8fe1637-78ee-4c8c-8616-6a4908267a47 2019-03-27 23:01:10.448872 4454 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WwxX5xLyst5Vjyakz1N5\n- Wx5fLEyz_brnq7zwECWu\n 213 \N 200.68.150.209 f8fe1637-78ee-4c8c-8616-6a4908267a47 2019-03-27 23:01:10.470335 4455 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-27 00:27:13.492953000 Z\n- &1 2019-03-27 01:33:23.374193000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-28 00:30:03.370702687 Z\nsign_in_count:\n- 104\n- 105\n 210 \N 189.186.42.241 aef56561-9da2-4650-80d5-9dde4cdbb5c5 2019-03-28 00:30:03.376313 4456 3 User \N \N 3 User \N update ---\nunique_session_id:\n- mixkC5v2-gsxiPhW6F6G\n- fmRy7B3zH6Ag9SnZzcwf\n 211 \N 189.186.42.241 aef56561-9da2-4650-80d5-9dde4cdbb5c5 2019-03-28 00:30:03.391636 4457 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-27 00:27:47.397100000 Z\n- &1 2019-03-27 01:33:43.821156000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-28 00:30:40.879413656 Z\nsign_in_count:\n- 54\n- 55\n 110 \N 189.186.42.241 b132955c-02b4-4936-8675-57b12e679c97 2019-03-28 00:30:40.887666 4458 12 User \N \N 12 User \N update ---\nunique_session_id:\n- P7amKBScEyLk3sfUL7tn\n- Dv7tx4ayoJmuRzczKYA5\n 111 \N 189.186.42.241 b132955c-02b4-4936-8675-57b12e679c97 2019-03-28 00:30:40.907519 4459 29 Expense \N \N 12 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 98\nquantity: !ruby/object:BigDecimal 18:0.5E3\nstatus: 1\nobservations: ADELANTO SUELDO ANABELLY\nexpense_date: 2019-03-27\nexpense_code: PV1-E-26\n 1 Egreso por 500.0 registrado 189.186.42.241 7fbc7cb9-0fb3-4d7d-b2c6-8391ee3593ef 2019-03-28 01:26:49.563526 4460 365 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 98\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 29\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 7fbc7cb9-0fb3-4d7d-b2c6-8391ee3593ef 2019-03-28 01:26:49.587115 4461 96 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 99\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.1226E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.8E3\ncash_fund: !ruby/object:BigDecimal 18:0.296E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1096E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.42.241 3d7cdd9e-80f1-4834-a9bd-2b115c585a58 2019-03-28 01:40:02.683634 4462 99 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 3d7cdd9e-80f1-4834-a9bd-2b115c585a58 2019-03-28 01:40:02.704651 4463 300 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 98\namount: !ruby/object:BigDecimal 18:0.45603E3\ntax: !ruby/object:BigDecimal 18:0.7296E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.52899E3\nstatus: 0\ndate_sale: 2019-03-27\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-155\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 ffdf5923-9084-47ba-a855-ace24f5740d5 2019-03-28 01:40:15.39187 4464 198 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.42.241 ffdf5923-9084-47ba-a855-ace24f5740d5 2019-03-28 01:40:15.422814 4465 300 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 0bf29099-f29e-4161-a62a-573f5a2161a2 2019-03-28 01:41:24.529354 4800 330 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 189.186.42.241 887df210-c9ab-42e7-95d5-3412eaffa83d 2019-04-04 22:48:33.765366 4466 366 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 98\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.529E3\nmove_type: '1'\nsale_id: 300\ncardnumber: 5102\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-155\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-155 189.186.42.241 0bf29099-f29e-4161-a62a-573f5a2161a2 2019-03-28 01:41:24.572225 4467 97 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 98\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.1228E4\namount_out: !ruby/object:BigDecimal 18:0.5E3\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.2E3\ncash_fund: !ruby/object:BigDecimal 18:0.757E3\nphysical_cash: !ruby/object:BigDecimal 18:0.957E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 e171da66-cddb-4424-9c87-358fcdd879c2 2019-03-28 01:54:53.614046 4468 98 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 e171da66-cddb-4424-9c87-358fcdd879c2 2019-03-28 01:54:53.633857 4469 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-27 01:33:23.374193000 Z\n- &1 2019-03-28 00:30:03.370702000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-28 01:55:49.610678898 Z\nsign_in_count:\n- 105\n- 106\n 212 \N 189.186.42.241 8cd4cd1f-69f4-48f8-8a27-11f46cd884f9 2019-03-28 01:55:49.622579 4470 3 User \N \N 3 User \N update ---\nunique_session_id:\n- fmRy7B3zH6Ag9SnZzcwf\n- u1v4or_yLYxcEJge8Xdn\n 213 \N 189.186.42.241 8cd4cd1f-69f4-48f8-8a27-11f46cd884f9 2019-03-28 01:55:49.646585 4471 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-26 17:30:28.096675000 Z\n- &1 2019-03-27 17:13:55.868890000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-28 16:31:25.434448475 Z\nsign_in_count:\n- 63\n- 64\n 131 \N 189.186.42.241 c8b1c1cc-f7a0-4248-a487-1a2d214a8d7b 2019-03-28 16:31:25.47892 4472 2 User \N \N 2 User \N update ---\nunique_session_id:\n- uC79_-o9EQF69C9FMVsW\n- f_f17XzPAjMLdJ-DByW8\n 132 \N 189.186.42.241 c8b1c1cc-f7a0-4248-a487-1a2d214a8d7b 2019-03-28 16:31:25.509612 4473 100 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.757E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 757.0 189.186.42.241 5a0582ed-6fc5-4532-b3a5-239573a16e20 2019-03-28 16:32:39.803863 4474 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-27 01:33:43.821156000 Z\n- &1 2019-03-28 00:30:40.879413000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-28 22:28:55.685224511 Z\nsign_in_count:\n- 55\n- 56\n 112 \N 189.186.42.241 9c4f0430-4e84-4adc-818c-9909d9e99624 2019-03-28 22:28:55.693317 4475 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Dv7tx4ayoJmuRzczKYA5\n- wL-2pyMsuUPXf3RnYv4k\n 113 \N 189.186.42.241 9c4f0430-4e84-4adc-818c-9909d9e99624 2019-03-28 22:28:55.711437 4476 57 Customer \N \N 12 User \N create ---\nnick_name: SELENE CAMPOS\nphone: "(667) 451-8871"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente SELENE CAMPOS fue registrado. 189.186.42.241 7ff08264-e595-41d5-8e59-7681d22c8b16 2019-03-28 22:29:35.574821 4477 58 Customer \N \N 12 User \N create ---\nnick_name: SELENE CAMPOS\nphone: "(667) 451-8871"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente SELENE CAMPOS fue registrado. 189.186.42.241 9b5546f1-6609-45be-86fe-1e38fcdad803 2019-03-28 22:29:36.847159 4478 59 Customer \N \N 12 User \N create ---\nnick_name: SELENE CAMPOS\nphone: "(667) 451-8871"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente SELENE CAMPOS fue registrado. 189.186.42.241 9d4b8335-fc4b-4b89-a51d-9dc75e369be8 2019-03-28 22:29:36.921104 4479 60 Customer \N \N 12 User \N create ---\nnick_name: SELENE CAMPOS\nphone: "(667) 451-8871"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente SELENE CAMPOS fue registrado. 189.186.42.241 428b24ad-6b85-4185-a955-f53a0609eea6 2019-03-28 22:29:38.203258 4480 61 Customer \N \N 12 User \N create ---\nnick_name: SELENE CAMPOS\nphone: "(667) 451-8871"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente SELENE CAMPOS fue registrado. 189.186.42.241 f6dec446-f827-4ac9-afb0-ef76ec553204 2019-03-28 22:29:39.38972 4481 301 Sale \N \N 12 User \N create ---\ncustomer_id: 61\nuser_id: 12\nopen_cash_register_id: 100\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-03-28\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-156\nexpiration_date: 2019-05-02\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 9f3aebf3-3009-4c88-ab23-79f918e8a92d 2019-03-28 22:30:03.079778 4482 148 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.42.241 9f3aebf3-3009-4c88-ab23-79f918e8a92d 2019-03-28 22:30:03.110396 4483 367 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 100\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 301\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-156\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-156 189.186.42.241 4a6bef67-6d8b-4604-94aa-d13c04631c90 2019-03-28 22:30:15.893359 4484 368 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 100\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 301\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-156\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-156 189.186.42.241 7fd25a1b-13e3-4180-83d4-575d55408c64 2019-03-28 22:30:17.445516 4485 367 CashRegistersMove \N \N 12 User \N destroy ---\nopen_cash_register_id: 100\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 301\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-156\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.42.241 9926ddf1-96c6-4d3c-ac47-e35510189dcd 2019-03-28 22:30:21.459804 4486 301 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.42.241 d2fa7a19-25d7-4501-a7c6-bea183d4ff4c 2019-03-28 22:30:29.927599 4655 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-31 01:12:56.610570000 Z\n- &1 2019-03-31 19:07:49.081375000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-31 19:36:15.864410198 Z\nsign_in_count:\n- 62\n- 63\n 126 \N 189.186.42.241 805d4949-9f23-4148-95f8-862f0de7461a 2019-03-31 19:36:15.870329 4487 302 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 100\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-03-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-157\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 95f27d21-2177-4f44-91e0-cdd046fcf445 2019-03-28 22:52:32.735519 4488 141 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 189.186.42.241 95f27d21-2177-4f44-91e0-cdd046fcf445 2019-03-28 22:52:32.773244 4489 302 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 4c1f5260-d9a8-4ba2-9d91-04ab45964f88 2019-03-28 22:52:43.743141 4490 369 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 100\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 302\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-157\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-157 189.186.42.241 4c1f5260-d9a8-4ba2-9d91-04ab45964f88 2019-03-28 22:52:43.783316 4491 62 Customer \N \N 12 User \N create ---\nnick_name: NEREYDA CAMACHO\nphone: "(667) 152-9707"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente NEREYDA CAMACHO fue registrado. 189.186.42.241 b1e6fa4a-81e4-4683-a3ec-f72e1394ea61 2019-03-28 22:53:34.895534 4492 303 Sale \N \N 12 User \N create ---\ncustomer_id: 62\nuser_id: 12\nopen_cash_register_id: 100\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-03-28\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-158\nexpiration_date: 2019-05-02\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 a537fc3d-d6b6-4f2c-beac-eb832ecf5f40 2019-03-28 22:53:48.094002 4493 470 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.42.241 a537fc3d-d6b6-4f2c-beac-eb832ecf5f40 2019-03-28 22:53:48.134345 4494 370 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 100\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 303\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-158\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-158 189.186.42.241 351b5827-9be1-49cb-bfba-eb25059b5d64 2019-03-28 22:54:40.01468 4495 303 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.42.241 92248433-e31b-4ebd-a55f-cd2693c79ad7 2019-03-28 22:54:42.456466 4496 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-27 17:13:55.868890000 Z\n- &1 2019-03-28 16:31:25.434448000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-28 22:59:59.746600399 Z\nsign_in_count:\n- 64\n- 65\n 133 \N 189.186.42.241 c1689dbb-e4db-4350-9a26-d68427e5d6ae 2019-03-28 22:59:59.752341 4497 2 User \N \N 2 User \N update ---\nunique_session_id:\n- f_f17XzPAjMLdJ-DByW8\n- pKx-_BF_2xcnbMPZM62H\n 134 \N 189.186.42.241 c1689dbb-e4db-4350-9a26-d68427e5d6ae 2019-03-28 22:59:59.765441 4498 530 Product \N \N 2 User \N create ---\nsku: BOL-530\nname: OHIP173\ndescription: BOLSA CLOE\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-530 fue creado. 189.186.42.241 96faaa24-3f20-459d-964a-25d8a63feaa5 2019-03-28 23:02:31.667216 4499 530 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000530'\n 2 \N 189.186.42.241 96faaa24-3f20-459d-964a-25d8a63feaa5 2019-03-28 23:02:31.713207 4500 566 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 530\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 96faaa24-3f20-459d-964a-25d8a63feaa5 2019-03-28 23:02:31.743818 4501 78 Purchase \N \N 2 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-43\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nobservations: ''\npurchase_date: 2019-03-28\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-43 por $ 1499.0 MXN creada. 189.186.42.241 e57cc4e6-3ede-46fc-a692-407de2234537 2019-03-28 23:02:41.31365 4502 566 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.42.241 e57cc4e6-3ede-46fc-a692-407de2234537 2019-03-28 23:02:41.371495 4503 304 Sale \N \N 2 User \N create ---\ncustomer_id: 62\nuser_id: 2\nopen_cash_register_id: 100\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.449E3\ntotal: !ruby/object:BigDecimal 18:0.105E4\nstatus: 0\ndate_sale: 2019-03-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-159\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 e0d99066-e673-4734-860a-12a2603df607 2019-03-28 23:04:09.877609 4504 566 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.42.241 e0d99066-e673-4734-860a-12a2603df607 2019-03-28 23:04:09.905573 4505 304 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-159 cancelada. 189.186.42.241 ee933444-3bd4-46e4-8ed8-785be6ac690e 2019-03-28 23:04:33.879682 4506 566 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.42.241 ee933444-3bd4-46e4-8ed8-785be6ac690e 2019-03-28 23:04:33.91455 4507 305 Sale \N \N 2 User \N create ---\ncustomer_id: 62\nuser_id: 2\nopen_cash_register_id: 100\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.449E3\ntotal: !ruby/object:BigDecimal 18:0.105E4\nstatus: 0\ndate_sale: 2019-03-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-160\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 3c6585c3-4897-4e30-b86c-8e9973318bfb 2019-03-28 23:05:42.966639 4508 566 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.42.241 3c6585c3-4897-4e30-b86c-8e9973318bfb 2019-03-28 23:05:43.023852 4509 305 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 2336f8f8-74b2-4f70-9b2a-d1a530edade1 2019-03-28 23:05:58.115523 4656 12 User \N \N 12 User \N update ---\nunique_session_id:\n- TxKij9Y-y5GtAyhzKxKg\n- oS8xy3u3C1Q1JQQjuUk_\n 127 \N 189.186.42.241 805d4949-9f23-4148-95f8-862f0de7461a 2019-03-31 19:36:15.886873 4510 371 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 100\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 305\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-160\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-160 189.186.42.241 2336f8f8-74b2-4f70-9b2a-d1a530edade1 2019-03-28 23:05:58.152018 4511 371 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 100\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 305\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-160\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.42.241 ed33202a-6c7c-4174-bd70-6a2898ff4f2a 2019-03-28 23:06:27.622276 4512 305 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-160 cancelada. 189.186.42.241 566c5905-c008-4b4b-9919-2f9625954229 2019-03-28 23:06:50.935769 4513 566 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.42.241 566c5905-c008-4b4b-9919-2f9625954229 2019-03-28 23:06:50.972475 4514 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-28 00:30:03.370702000 Z\n- &1 2019-03-28 01:55:49.610678000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-28 23:10:15.687926359 Z\nsign_in_count:\n- 106\n- 107\n 214 \N 189.186.42.241 ce81920d-ba03-460b-b4f5-20acd9963d6d 2019-03-28 23:10:15.695946 4515 3 User \N \N 3 User \N update ---\nunique_session_id:\n- u1v4or_yLYxcEJge8Xdn\n- isTy3nN26FboHetd6eWK\n 215 \N 189.186.42.241 ce81920d-ba03-460b-b4f5-20acd9963d6d 2019-03-28 23:10:15.713778 4516 469 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.42.241 965d5b2f-2392-4323-b79c-dc930f9d3852 2019-03-28 23:11:13.233933 4517 28 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-03-28\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.42.241 f1815b2c-99af-47e3-bcd9-516b814453bb 2019-03-28 23:11:27.279869 4518 27 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-03-28\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.42.241 195782cd-63ac-49c0-97be-ccd75dbfcd9d 2019-03-28 23:12:32.76705 4519 567 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 330\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 195782cd-63ac-49c0-97be-ccd75dbfcd9d 2019-03-28 23:12:32.789694 4520 568 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 327\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 195782cd-63ac-49c0-97be-ccd75dbfcd9d 2019-03-28 23:12:32.815227 4521 569 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 322\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 195782cd-63ac-49c0-97be-ccd75dbfcd9d 2019-03-28 23:12:32.84053 4522 570 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 427\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 195782cd-63ac-49c0-97be-ccd75dbfcd9d 2019-03-28 23:12:32.870274 4523 28 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-03-28\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.42.241 ed818c2a-f646-418c-811c-021a5b00f23d 2019-03-28 23:12:54.233343 4524 571 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 469\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.42.241 ed818c2a-f646-418c-811c-021a5b00f23d 2019-03-28 23:12:54.265333 4525 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-28 01:55:49.610678000 Z\n- &1 2019-03-28 23:10:15.687926000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-29 00:24:14.915196274 Z\nsign_in_count:\n- 107\n- 108\n 216 \N 189.186.42.241 6e409a34-0454-481c-86d3-eca4a9282a09 2019-03-29 00:24:14.922261 4526 3 User \N \N 3 User \N update ---\nunique_session_id:\n- isTy3nN26FboHetd6eWK\n- UjYVKLcb3ynzB6-PWnr9\n 217 \N 189.186.42.241 6e409a34-0454-481c-86d3-eca4a9282a09 2019-03-29 00:24:14.936289 4527 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-28 00:30:40.879413000 Z\n- &1 2019-03-28 22:28:55.685224000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-29 00:24:37.200540324 Z\nsign_in_count:\n- 56\n- 57\n 114 \N 189.186.42.241 cbf4aefb-da04-447a-b5c3-13fa5ea7bafd 2019-03-29 00:24:37.206142 4528 12 User \N \N 12 User \N update ---\nunique_session_id:\n- wL-2pyMsuUPXf3RnYv4k\n- Kz4YZ9ejTz_fxwoyyx1f\n 115 \N 189.186.42.241 cbf4aefb-da04-447a-b5c3-13fa5ea7bafd 2019-03-29 00:24:37.219722 4529 372 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 174\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 bbdb9ace-3093-4736-8e91-3f9ca71c6010 2019-03-29 00:30:31.118085 4530 174 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.42.241 bbdb9ace-3093-4736-8e91-3f9ca71c6010 2019-03-29 00:30:31.152308 4531 372 CashRegistersMove \N \N 12 User \N update ---\nopen_cash_register_id:\n- 49\n- 100\n 2 movimiento de efectivo por venta con folio PV1-V-98 189.186.42.241 bbdb9ace-3093-4736-8e91-3f9ca71c6010 2019-03-29 00:30:31.169493 4532 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-27 00:39:38.578491000 Z\n- &1 2019-03-27 23:01:10.415052000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-29 01:50:06.953544301 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539213\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938257\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938257\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539469\n mask_addr: 4294967295\nsign_in_count:\n- 106\n- 107\n 214 \N 177.228.117.77 d2fcdfa7-5a75-4bd1-a9d3-f683b74c744c 2019-03-29 01:50:06.987306 4533 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Wx5fLEyz_brnq7zwECWu\n- hNpZcjiSxi_3AFxyR_Dz\n 215 \N 177.228.117.77 d2fcdfa7-5a75-4bd1-a9d3-f683b74c744c 2019-03-29 01:50:07.010528 4704 320 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 89aa0cdc-50f5-4e36-8f20-93cc850d5f2a 2019-04-02 17:39:39.886179 4939 346 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 e6e4fc9a-9d77-470f-8de9-6c8ae4d65e35 2019-04-06 22:41:19.640736 4534 98 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 100\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.1499E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.757E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2257E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 8b53d030-d360-4bdb-8da0-4a248cd2a1f4 2019-03-29 01:53:37.138077 4535 100 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 8b53d030-d360-4bdb-8da0-4a248cd2a1f4 2019-03-29 01:53:37.158441 4536 101 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.296E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 296.0 189.186.42.241 de497d54-2373-4920-b170-487cfc5ad5cc 2019-03-29 01:53:48.740538 4537 99 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 101\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.296E3\nphysical_cash: !ruby/object:BigDecimal 18:0.296E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.42.241 f8ec0674-4e5d-49ed-8185-2e9bb9b06059 2019-03-29 01:54:13.901519 4538 101 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 f8ec0674-4e5d-49ed-8185-2e9bb9b06059 2019-03-29 01:54:13.914584 4539 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-28 16:31:25.434448000 Z\n- &1 2019-03-28 22:59:59.746600000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-29 16:35:41.373585179 Z\nsign_in_count:\n- 65\n- 66\n 135 \N 189.186.42.241 0c733681-32d2-4dde-92e9-b2cf8b16ca6c 2019-03-29 16:35:41.403005 4540 2 User \N \N 2 User \N update ---\nunique_session_id:\n- pKx-_BF_2xcnbMPZM62H\n- xfjGM-7nhPWhqLo81aJ2\n 136 \N 189.186.42.241 0c733681-32d2-4dde-92e9-b2cf8b16ca6c 2019-03-29 16:35:41.424003 4541 102 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.757E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 757.0 189.186.42.241 9be96c69-92e5-409b-a0b5-c5e315d07324 2019-03-29 16:40:02.926387 4542 63 Customer \N \N 2 User \N create ---\nnick_name: ARELY LAIJA\nphone: "(667) 410-0973"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ARELY LAIJA fue registrado. 189.186.42.241 a41e5419-8eb7-4214-98bf-ce855da2805f 2019-03-29 18:02:08.785566 4543 306 Sale \N \N 2 User \N create ---\ncustomer_id: 63\nuser_id: 2\nopen_cash_register_id: 102\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-03-29\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-161\nexpiration_date: 2019-05-03\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 df6e2cac-8cd4-4c40-b5c8-9c90491ca3e0 2019-03-29 18:02:27.478524 4544 524 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.42.241 df6e2cac-8cd4-4c40-b5c8-9c90491ca3e0 2019-03-29 18:02:27.509078 4545 373 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 102\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 306\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-161\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-161 189.186.42.241 2185b63d-ddc9-409d-8d9d-baeb211b5186 2019-03-29 18:02:41.597984 4546 306 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.42.241 9060e566-53d9-44aa-9b80-dc48e550c3a2 2019-03-29 18:02:43.601684 4547 30 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 102\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: COMIDA CHIO\nexpense_date: 2019-03-29\nexpense_code: PV1-E-27\n 1 Egreso por 50.0 registrado 189.186.42.241 59a433db-276c-4119-9eee-b41a1a47b9a8 2019-03-29 18:09:36.138825 4548 374 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 102\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 30\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 59a433db-276c-4119-9eee-b41a1a47b9a8 2019-03-29 18:09:36.19004 4549 375 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 102\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 280\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-148 189.186.42.241 2f926de2-aa4c-4fcb-9e53-075c46c7c8f7 2019-03-29 18:23:03.868959 4550 103 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.296E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 296.0 189.186.42.241 8aa89d87-6216-45bb-a978-6dbf66411045 2019-03-29 20:08:58.672749 4551 307 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 103\namount: !ruby/object:BigDecimal 18:0.49914E3\ntax: !ruby/object:BigDecimal 18:0.7986E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.579E3\nstatus: 0\ndate_sale: 2019-03-29\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-144\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 a6b9be96-13a7-43cd-bae8-f0367d4a9244 2019-03-29 20:09:39.432419 4552 481 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.42.241 a6b9be96-13a7-43cd-bae8-f0367d4a9244 2019-03-29 20:09:39.465175 4553 307 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 7332ce62-a34c-4849-be81-2ae228f6df7a 2019-03-29 20:10:10.59968 4554 376 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 103\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.579E3\nmove_type: '1'\nsale_id: 307\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-144\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.579E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-144 189.186.42.241 7332ce62-a34c-4849-be81-2ae228f6df7a 2019-03-29 20:10:10.625688 4555 64 Customer \N \N 11 User \N create ---\nnick_name: karla pereda\nphone: "(667) 268-6771"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente karla pereda fue registrado. 189.186.42.241 f8f5b95f-0882-43d0-8b1f-c525dfaeda34 2019-03-29 21:18:14.36972 4556 308 Sale \N \N 11 User \N create ---\ncustomer_id: 64\nuser_id: 11\nopen_cash_register_id: 103\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-03-29\nsaletype: 2\nseller_id: 7\nsale_code: PV2-V-145\nexpiration_date: 2019-05-03\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 e3d278d2-3ddd-45e2-8bf2-49d1c8c578e2 2019-03-29 21:18:31.325553 4557 411 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.42.241 e3d278d2-3ddd-45e2-8bf2-49d1c8c578e2 2019-03-29 21:18:31.380024 4558 377 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 103\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 308\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-145\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.349E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-145 189.186.42.241 d291ec29-ad4e-41a9-ba5f-5a383b64d616 2019-03-29 21:19:23.171602 4559 308 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.42.241 27859234-31bd-4f31-a00f-b3ed066b8c40 2019-03-29 21:19:25.271965 4560 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-28 22:28:55.685224000 Z\n- &1 2019-03-29 00:24:37.200540000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-29 23:46:34.420469258 Z\nsign_in_count:\n- 57\n- 58\n 116 \N 189.186.42.241 a694a328-034c-4da7-baa2-78a37bc25d3d 2019-03-29 23:46:34.465068 4561 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Kz4YZ9ejTz_fxwoyyx1f\n- 2HdYd9F36y5JzNxyHy-Y\n 117 \N 189.186.42.241 a694a328-034c-4da7-baa2-78a37bc25d3d 2019-03-29 23:46:34.49787 4562 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-28 23:10:15.687926000 Z\n- &1 2019-03-29 00:24:14.915196000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-29 23:46:55.769782345 Z\nsign_in_count:\n- 108\n- 109\n 218 \N 189.186.42.241 8f63b830-1f4d-4c1d-bb75-c7a17c5b63dc 2019-03-29 23:46:55.777447 4563 3 User \N \N 3 User \N update ---\nunique_session_id:\n- UjYVKLcb3ynzB6-PWnr9\n- r6EKMmXeiDF6fMvh3HRp\n 219 \N 189.186.42.241 8f63b830-1f4d-4c1d-bb75-c7a17c5b63dc 2019-03-29 23:46:55.793525 4564 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-27 23:01:10.415052000 Z\n- &1 2019-03-29 01:50:06.953544000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-30 01:07:48.782444194 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938257\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539469\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539469\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938444\n mask_addr: 4294967295\nsign_in_count:\n- 107\n- 108\n 216 \N 200.68.151.140 a69695b1-a61f-426f-a97a-11f5aa93a196 2019-03-30 01:07:48.793721 4565 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hNpZcjiSxi_3AFxyR_Dz\n- MzUtzNqt4DZTkwPuqpZt\n 217 \N 200.68.151.140 a69695b1-a61f-426f-a97a-11f5aa93a196 2019-03-30 01:07:48.816568 4566 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-29 00:24:14.915196000 Z\n- &1 2019-03-29 23:46:55.769782000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-30 01:25:36.802220028 Z\nsign_in_count:\n- 109\n- 110\n 220 \N 189.186.42.241 a33df0be-c2fd-4178-ac00-29de4537c8e0 2019-03-30 01:25:36.809756 4567 3 User \N \N 3 User \N update ---\nunique_session_id:\n- r6EKMmXeiDF6fMvh3HRp\n- Qyy3BxBND_1gYUmpMbqz\n 221 \N 189.186.42.241 a33df0be-c2fd-4178-ac00-29de4537c8e0 2019-03-30 01:25:36.827101 4568 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-28 22:59:59.746600000 Z\n- &1 2019-03-29 16:35:41.373585000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-30 01:27:07.235327701 Z\nsign_in_count:\n- 66\n- 67\n 137 \N 189.186.42.241 d169c67f-60d3-46a3-8665-1a75548e47f3 2019-03-30 01:27:07.241495 4569 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xfjGM-7nhPWhqLo81aJ2\n- yZxU8trNACmQF6Vexx3v\n 138 \N 189.186.42.241 d169c67f-60d3-46a3-8665-1a75548e47f3 2019-03-30 01:27:07.256272 4570 100 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 102\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.55E3\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.757E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1257E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 af091cae-a23f-40dd-a485-264928d05a55 2019-03-30 01:48:10.656907 4571 102 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 af091cae-a23f-40dd-a485-264928d05a55 2019-03-30 01:48:10.676109 4572 101 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 103\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.729E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.522E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1022E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.42.241 a1232ff5-c4f5-4bfa-bd1e-c2180272213a 2019-03-30 01:55:54.458218 4573 103 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 a1232ff5-c4f5-4bfa-bd1e-c2180272213a 2019-03-30 01:55:54.472523 4574 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-29 23:46:55.769782000 Z\n- &1 2019-03-30 01:25:36.802220000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-30 17:02:42.600005762 Z\nsign_in_count:\n- 110\n- 111\n 222 \N 189.186.42.241 cd5ccf04-fec3-4e05-aa8a-4a4e2da2aa5e 2019-03-30 17:02:42.64623 4575 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Qyy3BxBND_1gYUmpMbqz\n- WpQBmjqmj5_W_7ptQx8-\n 223 \N 189.186.42.241 cd5ccf04-fec3-4e05-aa8a-4a4e2da2aa5e 2019-03-30 17:02:42.675815 4576 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-29 16:35:41.373585000 Z\n- &1 2019-03-30 01:27:07.235327000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-30 18:09:28.754215592 Z\nsign_in_count:\n- 67\n- 68\n 139 \N 189.186.42.241 255d0a56-7976-4d38-a3b8-77a32970c01f 2019-03-30 18:09:28.759726 4577 2 User \N \N 2 User \N update ---\nunique_session_id:\n- yZxU8trNACmQF6Vexx3v\n- f5J9nSzbpicJxqFVm3ML\n 140 \N 189.186.42.241 255d0a56-7976-4d38-a3b8-77a32970c01f 2019-03-30 18:09:28.773622 4578 104 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.757E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 757.0 189.186.42.241 8b9c9cea-bb0f-4ce5-a037-b4f01d1a3c1d 2019-03-30 18:10:04.378455 4579 309 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 104\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-03-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-162\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 90747999-e01b-471e-bb40-44d71edda1eb 2019-03-30 18:10:21.397548 4580 266 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.42.241 90747999-e01b-471e-bb40-44d71edda1eb 2019-03-30 18:10:21.444271 4581 309 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 8076704c-8116-4c94-b618-ed98c5cbc879 2019-03-30 18:10:33.392191 4582 378 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 104\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 309\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-162\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-162 189.186.42.241 8076704c-8116-4c94-b618-ed98c5cbc879 2019-03-30 18:10:33.425393 4583 31 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 104\nquantity: !ruby/object:BigDecimal 18:0.678E3\nstatus: 1\nobservations: comida chio $50 sueldo chio $628\nexpense_date: 2019-03-30\nexpense_code: PV1-E-28\n 1 Egreso por 678.0 registrado 189.186.42.241 d09f5d02-a3ee-47d9-ac47-b53b71c93f89 2019-03-30 18:14:19.386635 4584 379 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 104\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.678E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 31\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 d09f5d02-a3ee-47d9-ac47-b53b71c93f89 2019-03-30 18:14:19.41602 4585 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-03-23 23:38:14.553965000 Z\n- &1 2019-03-25 17:55:04.762443000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-30 19:14:33.218921369 Z\nsign_in_count:\n- 42\n- 43\n 86 \N 189.186.42.241 c41a5bea-c0b0-4902-bb19-4e83811d6f46 2019-03-30 19:14:33.227091 4586 1 User \N \N 1 User \N update ---\nunique_session_id:\n- imvMgxbXyasxwk6SFhwR\n- kd6mp1DW5uDsxb-eNHwG\n 87 \N 189.186.42.241 c41a5bea-c0b0-4902-bb19-4e83811d6f46 2019-03-30 19:14:33.245319 4587 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-29 01:50:06.953544000 Z\n- &1 2019-03-30 01:07:48.782444000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-30 19:57:30.258754418 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539469\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938444\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938444\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539909\n mask_addr: 4294967295\nsign_in_count:\n- 108\n- 109\n 218 \N 177.228.119.5 e6c09696-6c77-4e9b-af6d-95b147823cb6 2019-03-30 19:57:30.268251 4588 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MzUtzNqt4DZTkwPuqpZt\n- eAGoGcx14kwytZ5fousC\n 219 \N 177.228.119.5 e6c09696-6c77-4e9b-af6d-95b147823cb6 2019-03-30 19:57:30.286692 4589 65 Customer \N \N 2 User \N create ---\nnick_name: MARIA ELIZA MALACON\nphone: "(667) 791-8400"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIA ELIZA MALACON fue registrado. 189.186.42.241 78e0841b-c68b-45dd-934f-d1f0e667e3ce 2019-03-30 20:53:22.534867 4590 310 Sale \N \N 2 User \N create ---\ncustomer_id: 65\nuser_id: 2\nopen_cash_register_id: 104\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-03-30\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-163\nexpiration_date: 2019-05-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 91b72304-91b8-401e-b8b5-ae5ebdde1ab7 2019-03-30 20:53:55.546677 4591 526 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.42.241 91b72304-91b8-401e-b8b5-ae5ebdde1ab7 2019-03-30 20:53:55.574454 4592 380 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 104\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.22E3\nmove_type: '1'\nsale_id: 310\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-163\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.22E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-163 189.186.42.241 ca648e82-f674-4b7c-8e39-542043caeb94 2019-03-30 20:54:06.283256 4593 310 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.42.241 20669c42-dbad-4749-bfb1-e28b658d268e 2019-03-30 20:54:07.569486 4594 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-29 00:24:37.200540000 Z\n- &1 2019-03-29 23:46:34.420469000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-30 21:15:52.084489715 Z\nsign_in_count:\n- 58\n- 59\n 118 \N 189.186.42.241 0bfbd672-f3e0-45a0-a8a1-01c3a6e50d23 2019-03-30 21:15:52.090269 4595 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 2HdYd9F36y5JzNxyHy-Y\n- zbqZx46hbWgULVAN6knx\n 119 \N 189.186.42.241 0bfbd672-f3e0-45a0-a8a1-01c3a6e50d23 2019-03-30 21:15:52.10449 4596 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-30 01:07:48.782444000 Z\n- &1 2019-03-30 19:57:30.258754000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-30 21:54:15.066321783 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938444\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539909\n mask_addr: 4294967295\nsign_in_count:\n- 109\n- 110\n 220 \N 177.228.119.5 3e74a324-dc06-45c3-bbc0-a28977a15780 2019-03-30 21:54:15.074113 4597 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eAGoGcx14kwytZ5fousC\n- SUve3HkBsm6hMsCHi7JK\n 221 \N 177.228.119.5 3e74a324-dc06-45c3-bbc0-a28977a15780 2019-03-30 21:54:15.08888 4598 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-30 01:25:36.802220000 Z\n- &1 2019-03-30 17:02:42.600005000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-30 22:00:09.497236986 Z\nsign_in_count:\n- 111\n- 112\n 224 \N 189.186.42.241 66d8d8a8-be98-4a19-bf32-d9b7372d3072 2019-03-30 22:00:09.505722 4599 3 User \N \N 3 User \N update ---\nunique_session_id:\n- WpQBmjqmj5_W_7ptQx8-\n- mMxdddYtBczKLHsxykix\n 225 \N 189.186.42.241 66d8d8a8-be98-4a19-bf32-d9b7372d3072 2019-03-30 22:00:09.522144 4600 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-30 01:27:07.235327000 Z\n- &1 2019-03-30 18:09:28.754215000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-30 23:04:45.077814314 Z\nsign_in_count:\n- 68\n- 69\n 141 \N 189.186.42.241 db647a87-3722-4080-a9aa-a55dcd5659d5 2019-03-30 23:04:45.087015 4601 2 User \N \N 2 User \N update ---\nunique_session_id:\n- f5J9nSzbpicJxqFVm3ML\n- m3hC9Z1q4xqHXhDcCChv\n 142 \N 189.186.42.241 db647a87-3722-4080-a9aa-a55dcd5659d5 2019-03-30 23:04:45.108983 4602 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-29 23:46:34.420469000 Z\n- &1 2019-03-30 21:15:52.084489000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-30 23:15:29.062341290 Z\nsign_in_count:\n- 59\n- 60\n 120 \N 189.186.42.241 6d664d8e-4f99-4383-9f42-e451f18fa838 2019-03-30 23:15:29.068719 4603 12 User \N \N 12 User \N update ---\nunique_session_id:\n- zbqZx46hbWgULVAN6knx\n- kUKA9fQETYjJak4q54Ws\n 121 \N 189.186.42.241 6d664d8e-4f99-4383-9f42-e451f18fa838 2019-03-30 23:15:29.084613 4604 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-30 17:02:42.600005000 Z\n- &1 2019-03-30 22:00:09.497236000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-30 23:15:41.615237858 Z\nsign_in_count:\n- 112\n- 113\n 226 \N 189.186.42.241 2d74b2c5-55fe-4273-98ba-9d55240d3564 2019-03-30 23:15:41.623078 4605 3 User \N \N 3 User \N update ---\nunique_session_id:\n- mMxdddYtBczKLHsxykix\n- Th52WGKDDZCszop1Lhh-\n 227 \N 189.186.42.241 2d74b2c5-55fe-4273-98ba-9d55240d3564 2019-03-30 23:15:41.639526 4607 311 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 105\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-03-30\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-146\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 7e1fa373-9ac2-4e9e-9b57-4148a4b15488 2019-03-30 23:18:10.781407 4608 420 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.42.241 7e1fa373-9ac2-4e9e-9b57-4148a4b15488 2019-03-30 23:18:10.815314 4609 311 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 00ff0f27-f4bf-455e-ac04-cd93dc044505 2019-03-30 23:18:14.819114 4610 381 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 105\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 311\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-146\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-146 189.186.42.241 00ff0f27-f4bf-455e-ac04-cd93dc044505 2019-03-30 23:18:14.849327 4611 312 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 105\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-03-30\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-147\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 dfabad3b-885c-4962-9981-88ce325bbf9d 2019-03-30 23:20:20.168847 4612 387 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.42.241 dfabad3b-885c-4962-9981-88ce325bbf9d 2019-03-30 23:20:20.201063 4613 312 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 2bf1f87d-845f-4b70-8464-1d7aef22277f 2019-03-30 23:20:38.787046 4614 382 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 105\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 312\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-147\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-147 189.186.42.241 2bf1f87d-845f-4b70-8464-1d7aef22277f 2019-03-30 23:20:38.820868 4615 313 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 104\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-03-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-164\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 4dee8ab9-3259-43a2-8392-f638b3e42e56 2019-03-31 00:29:14.821786 4616 527 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.42.241 4dee8ab9-3259-43a2-8392-f638b3e42e56 2019-03-31 00:29:14.861622 4617 313 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 04e04a7f-48bf-4bae-beb8-2c5557f57fd6 2019-03-31 00:29:20.66369 4618 383 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 104\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 313\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-164\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-164 189.186.42.241 04e04a7f-48bf-4bae-beb8-2c5557f57fd6 2019-03-31 00:29:20.695813 4619 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-30 19:57:30.258754000 Z\n- &1 2019-03-30 21:54:15.066321000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-31 00:55:15.757490303 Z\nsign_in_count:\n- 110\n- 111\n 222 \N 177.228.119.5 42017564-9c33-49ae-b822-47290f22080f 2019-03-31 00:55:15.787809 4620 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SUve3HkBsm6hMsCHi7JK\n- BFVbT9_iJhPHy9RVhn69\n 223 \N 177.228.119.5 42017564-9c33-49ae-b822-47290f22080f 2019-03-31 00:55:15.809119 4621 32 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 105\nquantity: !ruby/object:BigDecimal 18:0.5E3\nstatus: 1\nobservations: SUELDO RESTANTE ANABELLY\nexpense_date: 2019-03-30\nexpense_code: PV2-E-4\n 1 Egreso por 500.0 registrado 189.186.42.241 d1c918ae-2506-4ec3-a9ae-c464295828b8 2019-03-31 01:09:15.690626 4622 384 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 105\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 32\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 d1c918ae-2506-4ec3-a9ae-c464295828b8 2019-03-31 01:09:15.744763 4623 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-30 21:15:52.084489000 Z\n- &1 2019-03-30 23:15:29.062341000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-31 01:12:56.610570356 Z\nsign_in_count:\n- 60\n- 61\n 122 \N 189.186.42.241 58a37238-7542-4a58-bd1b-a06388a34548 2019-03-31 01:12:56.621436 4624 12 User \N \N 12 User \N update ---\nunique_session_id:\n- kUKA9fQETYjJak4q54Ws\n- hSc7QBK3GYmjCzvUbAn-\n 123 \N 189.186.42.241 58a37238-7542-4a58-bd1b-a06388a34548 2019-03-31 01:12:56.646014 4625 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-30 22:00:09.497236000 Z\n- &1 2019-03-30 23:15:41.615237000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-31 01:13:37.751587862 Z\nsign_in_count:\n- 113\n- 114\n 228 \N 189.186.42.241 e1d53e97-8883-4598-8bc3-031e6968e7bd 2019-03-31 01:13:37.77485 4626 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Th52WGKDDZCszop1Lhh-\n- 8vmGH5GJEVqfc7dePsaG\n 229 \N 189.186.42.241 e1d53e97-8883-4598-8bc3-031e6968e7bd 2019-03-31 01:13:37.818009 4627 314 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 104\namount: !ruby/object:BigDecimal 18:0.120517E4\ntax: !ruby/object:BigDecimal 18:0.19283E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2019-03-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-165\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 13a13695-03ef-4243-a7e3-4a72ce360b47 2019-03-31 01:19:49.179301 4628 253 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.42.241 13a13695-03ef-4243-a7e3-4a72ce360b47 2019-03-31 01:19:49.224011 4629 200 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.42.241 13a13695-03ef-4243-a7e3-4a72ce360b47 2019-03-31 01:19:49.275264 4630 314 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 0b36e825-5ecf-4c43-9774-386a26d8bad4 2019-03-31 01:20:06.01819 4631 385 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 104\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1398E4\nmove_type: '1'\nsale_id: 314\ncardnumber: 1068\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-165\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-165 189.186.42.241 0b36e825-5ecf-4c43-9774-386a26d8bad4 2019-03-31 01:20:06.051376 4632 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-03-25 17:55:04.762443000 Z\n- &1 2019-03-30 19:14:33.218921000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-31 01:25:33.091055996 Z\nsign_in_count:\n- 43\n- 44\n 88 \N 189.186.42.241 e9df16c1-4ffb-4805-8cc2-099e5919011b 2019-03-31 01:25:33.097561 4633 1 User \N \N 1 User \N update ---\nunique_session_id:\n- kd6mp1DW5uDsxb-eNHwG\n- 3AwS4TyZHLNyxZqqWxc1\n 89 \N 189.186.42.241 e9df16c1-4ffb-4805-8cc2-099e5919011b 2019-03-31 01:25:33.112069 4634 102 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 105\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1598E4\namount_out: !ruby/object:BigDecimal 18:0.5E3\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.102E4\ncash_fund: !ruby/object:BigDecimal 18:0.6E3\nphysical_cash: !ruby/object:BigDecimal 18:0.162E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.42.241 63b0b7b0-a321-4cce-a5f3-24567fb262cc 2019-03-31 01:56:36.276845 4635 105 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 63b0b7b0-a321-4cce-a5f3-24567fb262cc 2019-03-31 01:56:36.301352 4636 103 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 104\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3616E4\namount_out: !ruby/object:BigDecimal 18:0.678E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.16E4\ncash_fund: !ruby/object:BigDecimal 18:0.697E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2297E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 9d515c42-7954-4fe5-8a3b-35c1d5d565de 2019-03-31 01:59:31.007716 4637 104 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 9d515c42-7954-4fe5-8a3b-35c1d5d565de 2019-03-31 01:59:31.027132 4638 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-03-25 17:07:51.050458000 Z\n- &1 2019-03-26 17:57:03.498294000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-31 17:08:56.830195970 Z\nsign_in_count:\n- 25\n- 26\n 52 \N 189.186.42.241 ff5e6110-f515-4983-8b6b-ddae3977e3fb 2019-03-31 17:08:56.864935 4639 11 User \N \N 11 User \N update ---\nunique_session_id:\n- zF5DDJg--7xZgPnEcEgx\n- xcLoyxcwiKp3C7vm7_po\n 53 \N 189.186.42.241 ff5e6110-f515-4983-8b6b-ddae3977e3fb 2019-03-31 17:08:56.890749 4640 106 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.6E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 600.0 189.186.42.241 ed246117-e65c-401e-946d-d7cfa6ca89be 2019-03-31 17:09:19.924489 4641 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-30 21:54:15.066321000 Z\n- &1 2019-03-31 00:55:15.757490000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-31 18:58:19.659476833 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539909\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933981\n mask_addr: 4294967295\nsign_in_count:\n- 111\n- 112\n 224 \N 200.68.134.29 5378f3b0-65a5-4586-9973-1e7ec2c86464 2019-03-31 18:58:19.667062 4642 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BFVbT9_iJhPHy9RVhn69\n- rdFdUze_VsnaxCYikmPr\n 225 \N 200.68.134.29 5378f3b0-65a5-4586-9973-1e7ec2c86464 2019-03-31 18:58:19.686212 4643 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-30 23:15:29.062341000 Z\n- &1 2019-03-31 01:12:56.610570000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-31 19:07:49.081375023 Z\nsign_in_count:\n- 61\n- 62\n 124 \N 189.186.42.241 98fa1512-e2c8-4fa0-b45f-245ad6338392 2019-03-31 19:07:49.088646 4644 12 User \N \N 12 User \N update ---\nunique_session_id:\n- hSc7QBK3GYmjCzvUbAn-\n- TxKij9Y-y5GtAyhzKxKg\n 125 \N 189.186.42.241 98fa1512-e2c8-4fa0-b45f-245ad6338392 2019-03-31 19:07:49.105289 4645 107 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.697E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 697.0 189.186.42.241 8eab554a-7681-47f2-9a85-7d2c5b8cd97f 2019-03-31 19:07:53.041272 4646 386 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 107\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 243\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-130 189.186.42.241 e39c10ce-4467-4a3f-9c96-b257dcd72cb3 2019-03-31 19:09:04.091512 4647 243 Sale \N \N 12 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.42.241 6c533fea-5c61-40aa-a555-bcf2f491349e 2019-03-31 19:09:05.53715 4648 315 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 106\namount: !ruby/object:BigDecimal 18:0.136379E4\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1474E4\nstatus: 0\ndate_sale: 2019-03-31\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-148\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 9c6a572a-38b4-461f-85ed-2d8411ac0b22 2019-03-31 19:14:29.228295 4649 490 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 189.186.42.241 9c6a572a-38b4-461f-85ed-2d8411ac0b22 2019-03-31 19:14:29.259306 4650 419 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 189.186.42.241 9c6a572a-38b4-461f-85ed-2d8411ac0b22 2019-03-31 19:14:29.291842 4651 315 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 223ef573-23fc-44c1-b14b-ac4151513844 2019-03-31 19:16:39.588145 4652 387 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 106\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1474E4\nmove_type: '1'\nsale_id: 315\ncardnumber: 6529\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-148\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-148 189.186.42.241 223ef573-23fc-44c1-b14b-ac4151513844 2019-03-31 19:16:39.609991 4653 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-30 23:15:41.615237000 Z\n- &1 2019-03-31 01:13:37.751587000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-31 19:16:52.150638201 Z\nsign_in_count:\n- 114\n- 115\n 230 \N 189.186.42.241 8f2bcb0d-68fa-4afd-886e-0558e1629e92 2019-03-31 19:16:52.156186 4654 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 8vmGH5GJEVqfc7dePsaG\n- b_YwquUE9sp8X4Jeieb6\n 231 \N 189.186.42.241 8f2bcb0d-68fa-4afd-886e-0558e1629e92 2019-03-31 19:16:52.169643 4727 131 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 189.186.42.241 760c4a88-9170-41be-b73c-858a6a81fb0d 2019-04-02 23:42:19.502284 4657 316 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 107\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-03-31\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-166\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 6a9c1322-785c-42e9-a733-887e77fed2ae 2019-03-31 19:37:06.187486 4658 453 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.42.241 6a9c1322-785c-42e9-a733-887e77fed2ae 2019-03-31 19:37:06.216833 4659 316 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 d7d5ea3f-8376-4550-b31e-581b96374e73 2019-03-31 19:38:00.509025 4660 388 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 107\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 316\ncardnumber: 6831\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-166\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-166 189.186.42.241 d7d5ea3f-8376-4550-b31e-581b96374e73 2019-03-31 19:38:00.536668 4661 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-31 01:13:37.751587000 Z\n- &1 2019-03-31 19:16:52.150638000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-31 20:34:28.872651623 Z\nsign_in_count:\n- 115\n- 116\n 232 \N 189.186.42.241 31108029-1b47-435a-bad9-d2d2f99f1d60 2019-03-31 20:34:28.877902 4662 3 User \N \N 3 User \N update ---\nunique_session_id:\n- b_YwquUE9sp8X4Jeieb6\n- dA6exsJoaEMF6yqqVZyN\n 233 \N 189.186.42.241 31108029-1b47-435a-bad9-d2d2f99f1d60 2019-03-31 20:34:28.890808 4663 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-31 19:07:49.081375000 Z\n- &1 2019-03-31 19:36:15.864410000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-31 21:21:56.770626303 Z\nsign_in_count:\n- 63\n- 64\n 128 \N 189.186.42.241 a308a6f9-8657-4513-b701-896596201139 2019-03-31 21:21:56.777115 4664 12 User \N \N 12 User \N update ---\nunique_session_id:\n- oS8xy3u3C1Q1JQQjuUk_\n- swH1zbx59J4NFaj_1xVs\n 129 \N 189.186.42.241 a308a6f9-8657-4513-b701-896596201139 2019-03-31 21:21:56.791535 4665 104 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 106\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.1474E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.6E3\nphysical_cash: !ruby/object:BigDecimal 18:0.6E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.42.241 14bc806b-646d-4200-90c5-813ad7f54c3b 2019-03-31 21:42:41.884986 4666 106 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 14bc806b-646d-4200-90c5-813ad7f54c3b 2019-03-31 21:42:41.897867 4667 105 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 107\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.2498E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.596E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2096E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 ea26f079-da03-4022-a718-36faab53f944 2019-03-31 21:52:35.096914 4668 107 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 ea26f079-da03-4022-a718-36faab53f944 2019-03-31 21:52:35.11508 4669 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-31 00:55:15.757490000 Z\n- &1 2019-03-31 18:58:19.659476000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-03-31 22:32:53.598212188 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539909\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933981\n mask_addr: 4294967295\nsign_in_count:\n- 112\n- 113\n 226 \N 200.68.134.29 c95f1bf7-53c4-4007-b60a-043cc90df04e 2019-03-31 22:32:53.630384 4670 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rdFdUze_VsnaxCYikmPr\n- T-eSYUg3rEshQj4ziC-p\n 227 \N 200.68.134.29 c95f1bf7-53c4-4007-b60a-043cc90df04e 2019-03-31 22:32:53.657811 4671 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-30 18:09:28.754215000 Z\n- &1 2019-03-30 23:04:45.077814000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-01 17:19:29.506127950 Z\nsign_in_count:\n- 69\n- 70\n 143 \N 189.186.42.241 aea1fd1b-d7db-4efb-ba37-7a2ade1544ad 2019-04-01 17:19:29.525562 4672 2 User \N \N 2 User \N update ---\nunique_session_id:\n- m3hC9Z1q4xqHXhDcCChv\n- MTd1ZqZCFy6_47R7LrZR\n 144 \N 189.186.42.241 aea1fd1b-d7db-4efb-ba37-7a2ade1544ad 2019-04-01 17:19:29.544149 4673 108 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.596E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 596.0 189.186.42.241 1f00f7f2-6d6a-4c64-9a86-e04edd2dca7c 2019-04-01 17:57:07.627904 4674 317 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 108\namount: !ruby/object:BigDecimal 18:0.103362E4\ntax: !ruby/object:BigDecimal 18:0.16538E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-04-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-167\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 8100c634-e1e8-4754-8617-c72a9af2fdb0 2019-04-01 18:58:47.900386 4675 248 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.42.241 8100c634-e1e8-4754-8617-c72a9af2fdb0 2019-04-01 18:58:47.9482 4676 317 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 5b7d0a96-f7c3-40ac-983d-759565425a65 2019-04-01 18:59:43.30016 4677 389 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 108\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 317\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-167\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-167 189.186.42.241 5b7d0a96-f7c3-40ac-983d-759565425a65 2019-04-01 18:59:43.334154 4678 390 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 108\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 280\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.299E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-148 189.186.42.241 023c7950-7445-4fdc-99b3-dac50ef1f4b2 2019-04-01 19:01:52.677166 4679 280 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.42.241 b5bd2027-13e5-46e8-87d6-b1ab3eaddb4c 2019-04-01 19:01:54.520401 4680 33 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 108\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida Chio\nexpense_date: 2019-04-01\nexpense_code: PV1-E-29\n 1 Egreso por 50.0 registrado 189.186.42.241 fdb32142-106b-483e-a506-a6007c5b046e 2019-04-01 19:11:34.239625 4681 391 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 108\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 33\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 fdb32142-106b-483e-a506-a6007c5b046e 2019-04-01 19:11:34.269083 4682 318 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 108\namount: !ruby/object:BigDecimal 18:0.123965E4\ntax: !ruby/object:BigDecimal 18:0.19835E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1438E4\nstatus: 0\ndate_sale: 2019-04-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-168\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 55d30d9b-bbb5-499d-923b-2cd20f649a12 2019-04-01 19:55:52.159687 4683 568 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.42.241 55d30d9b-bbb5-499d-923b-2cd20f649a12 2019-04-01 19:55:52.193268 4684 160 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.42.241 55d30d9b-bbb5-499d-923b-2cd20f649a12 2019-04-01 19:55:52.222117 4685 318 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 b244ad31-b42d-48ca-a04c-60c94c01ae57 2019-04-01 19:56:24.032605 4686 392 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 108\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1438E4\nmove_type: '1'\nsale_id: 318\ncardnumber: 7874\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-168\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-168 189.186.42.241 b244ad31-b42d-48ca-a04c-60c94c01ae57 2019-04-01 19:56:24.053139 4687 319 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 108\namount: !ruby/object:BigDecimal 18:0.50331E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.568E3\nstatus: 0\ndate_sale: 2019-04-01\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-169\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 81e618d4-5be8-4fd2-b535-5762a922ecc2 2019-04-01 20:09:45.389864 4688 144 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.42.241 81e618d4-5be8-4fd2-b535-5762a922ecc2 2019-04-01 20:09:45.454671 4689 486 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.52E2\n- !ruby/object:BigDecimal 18:0.51E2\n 11 \N 189.186.42.241 81e618d4-5be8-4fd2-b535-5762a922ecc2 2019-04-01 20:09:45.494575 4690 319 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 d48ce352-98f0-4985-9857-47cde389d7f2 2019-04-01 20:09:56.157986 4691 393 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 108\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.568E3\nmove_type: '1'\nsale_id: 319\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-169\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.568E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-169 189.186.42.241 d48ce352-98f0-4985-9857-47cde389d7f2 2019-04-01 20:09:56.182681 4692 34 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 108\nquantity: !ruby/object:BigDecimal 18:0.1013E4\nstatus: 1\nobservations: LUZ CFE\nexpense_date: 2019-04-01\nexpense_code: PV1-E-30\n 1 Egreso por 1013.0 registrado 189.186.42.241 d7a39346-a2ae-4d79-830d-7213323b51ee 2019-04-01 21:22:26.030616 4693 394 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 108\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1013E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 34\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 d7a39346-a2ae-4d79-830d-7213323b51ee 2019-04-01 21:22:26.058599 4694 109 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.6E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 600.0 189.186.42.241 119dbf68-815d-4885-9318-d3099da42175 2019-04-02 00:10:42.044926 4695 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-31 18:58:19.659476000 Z\n- &1 2019-03-31 22:32:53.598212000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-02 01:25:52.676274181 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933981\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938487\n mask_addr: 4294967295\nsign_in_count:\n- 113\n- 114\n 228 \N 200.68.151.183 e1520fc9-4a00-4c9c-8619-e4f9955fdae7 2019-04-02 01:25:52.687226 4696 4 User \N \N 4 User \N update ---\nunique_session_id:\n- T-eSYUg3rEshQj4ziC-p\n- Aa3cvVHwgppHoomVcgNB\n 229 \N 200.68.151.183 e1520fc9-4a00-4c9c-8619-e4f9955fdae7 2019-04-02 01:25:52.707053 4697 106 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 108\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3504E4\namount_out: !ruby/object:BigDecimal 18:0.1063E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.599E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1599E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 89a864c8-c013-4986-a06c-1edc567d4c15 2019-04-02 02:01:42.078393 4698 108 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 89a864c8-c013-4986-a06c-1edc567d4c15 2019-04-02 02:01:42.093648 4699 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-03-30 23:04:45.077814000 Z\n- &1 2019-04-01 17:19:29.506127000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-02 17:10:34.242402870 Z\nsign_in_count:\n- 70\n- 71\n 145 \N 189.186.42.241 22083103-3829-4966-a0fd-07edc94d547c 2019-04-02 17:10:34.280393 4700 2 User \N \N 2 User \N update ---\nunique_session_id:\n- MTd1ZqZCFy6_47R7LrZR\n- EkoLv9T8FqC6VsLRZzde\n 146 \N 189.186.42.241 22083103-3829-4966-a0fd-07edc94d547c 2019-04-02 17:10:34.301975 4701 110 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.599E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 599.0 189.186.42.241 32f222b0-fb81-47d5-a6fa-f2981b5eab6e 2019-04-02 17:11:21.230365 4702 320 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 110\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-04-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-170\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 868d8a49-2576-42cd-92e6-386b41a8ed42 2019-04-02 17:39:34.899684 4703 524 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.42.241 868d8a49-2576-42cd-92e6-386b41a8ed42 2019-04-02 17:39:34.948742 4705 395 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 110\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 320\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-170\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-170 189.186.42.241 89aa0cdc-50f5-4e36-8f20-93cc850d5f2a 2019-04-02 17:39:39.911041 4706 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-03-26 17:57:03.498294000 Z\n- &1 2019-03-31 17:08:56.830195000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-02 17:52:32.135088517 Z\nsign_in_count:\n- 26\n- 27\n 54 \N 189.186.42.241 efa132ac-75cc-441f-86e7-2bec997a99c1 2019-04-02 17:52:32.141757 4707 11 User \N \N 11 User \N update ---\nunique_session_id:\n- xcLoyxcwiKp3C7vm7_po\n- fEitTemgtPG74mNcEkTh\n 55 \N 189.186.42.241 efa132ac-75cc-441f-86e7-2bec997a99c1 2019-04-02 17:52:32.154685 4708 66 Customer \N \N 2 User \N create ---\nnick_name: RUTH OJEDA\nphone: "(667) 415-4542"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente RUTH OJEDA fue registrado. 189.186.42.241 5a516daa-0e30-47f6-b287-65cd1effd768 2019-04-02 18:05:07.399841 4709 321 Sale \N \N 2 User \N create ---\ncustomer_id: 66\nuser_id: 2\nopen_cash_register_id: 110\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-04-02\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-171\nexpiration_date: 2019-05-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 58676b69-cc23-4b55-a313-1f35fb4aa6a1 2019-04-02 18:05:25.166047 4710 524 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.42.241 58676b69-cc23-4b55-a313-1f35fb4aa6a1 2019-04-02 18:05:25.193161 4711 396 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 110\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 321\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-171\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-171 189.186.42.241 75620311-d9be-4bf6-bb0a-d3f0072f4862 2019-04-02 18:06:21.164353 4712 321 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.42.241 01c99d3c-09c2-4379-aa86-4096ee116967 2019-04-02 18:06:25.567172 4713 397 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 109\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 283\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.299E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-133 189.186.42.241 1892beef-e268-4eda-a56d-332fb100ed8f 2019-04-02 22:39:50.80214 4714 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-03-09 00:36:27.644887000 Z\n- &1 2019-03-22 00:46:21.381627000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-02 23:40:06.999562493 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094223\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\nsign_in_count:\n- 49\n- 50\n 100 \N 189.186.42.241 4ee026da-8b48-404f-b959-8e8eede0b62d 2019-04-02 23:40:07.027387 4715 9 User \N \N 9 User \N update ---\nunique_session_id:\n- gsMHFGymxYnuVZT8kPNC\n- Dsh9RELvvfvKRVaSdNS-\n 101 \N 189.186.42.241 4ee026da-8b48-404f-b959-8e8eede0b62d 2019-04-02 23:40:07.049241 4716 322 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 110\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-04-02\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-172\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 1db53612-3c12-426e-95cb-80222a5a53ca 2019-04-02 23:40:56.980544 4717 131 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.42.241 1db53612-3c12-426e-95cb-80222a5a53ca 2019-04-02 23:40:57.01456 4718 322 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 276aaa52-9c8c-4271-9d5a-46b4607392ef 2019-04-02 23:41:02.843165 4719 398 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 110\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 322\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-172\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-172 189.186.42.241 276aaa52-9c8c-4271-9d5a-46b4607392ef 2019-04-02 23:41:02.867196 4720 398 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 110\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 322\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-172\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.42.241 9d2eedac-57e2-487f-af30-729ada2b45c7 2019-04-02 23:41:05.226549 4721 322 Sale \N \N 9 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-172 cancelada. 189.186.42.241 0264db92-058b-43ba-81c5-b6f185fef845 2019-04-02 23:41:25.337915 4722 131 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.42.241 0264db92-058b-43ba-81c5-b6f185fef845 2019-04-02 23:41:25.365107 4723 67 Customer \N \N 9 User \N create ---\nnick_name: PAOLA MARTINEZ\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente PAOLA MARTINEZ fue registrado. 189.186.42.241 ed822b7d-31eb-4a69-b97f-9ef2d0a27ee8 2019-04-02 23:41:45.477617 4724 323 Sale \N \N 9 User \N create ---\ncustomer_id: 67\nuser_id: 9\nopen_cash_register_id: 110\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-04-02\nsaletype: 2\nseller_id: 3\nsale_code: PV1-V-173\nexpiration_date: 2019-05-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 02d52d35-9896-4baa-b8bf-a54781775d6c 2019-04-02 23:42:02.345049 4725 131 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.42.241 02d52d35-9896-4baa-b8bf-a54781775d6c 2019-04-02 23:42:02.387048 4726 323 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-173 cancelada. 189.186.42.241 760c4a88-9170-41be-b73c-858a6a81fb0d 2019-04-02 23:42:19.472097 4728 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-31 19:36:15.864410000 Z\n- &1 2019-03-31 21:21:56.770626000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-03 00:07:03.851034688 Z\nsign_in_count:\n- 64\n- 65\n 130 \N 189.186.42.241 e73a9971-02db-4256-9cf5-8486731bebb5 2019-04-03 00:07:03.858855 4729 12 User \N \N 12 User \N update ---\nunique_session_id:\n- swH1zbx59J4NFaj_1xVs\n- WCC-53zMspFvif9Fb6Gs\n 131 \N 189.186.42.241 e73a9971-02db-4256-9cf5-8486731bebb5 2019-04-03 00:07:03.876747 4730 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-31 19:16:52.150638000 Z\n- &1 2019-03-31 20:34:28.872651000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-03 01:06:59.355130373 Z\nsign_in_count:\n- 116\n- 117\n 234 \N 189.186.42.241 e1272561-8b6f-49e2-942a-c8f37ea19ec6 2019-04-03 01:06:59.363236 4731 3 User \N \N 3 User \N update ---\nunique_session_id:\n- dA6exsJoaEMF6yqqVZyN\n- zQcCW9CUrp9QNxqhzWpP\n 235 \N 189.186.42.241 e1272561-8b6f-49e2-942a-c8f37ea19ec6 2019-04-03 01:06:59.383409 4732 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-03-31 21:21:56.770626000 Z\n- &1 2019-04-03 00:07:03.851034000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-03 01:07:25.853493433 Z\nsign_in_count:\n- 65\n- 66\n 132 \N 189.186.42.241 3b0b9071-5f7e-4ece-af96-5e0cb00f9bc3 2019-04-03 01:07:25.86174 4733 12 User \N \N 12 User \N update ---\nunique_session_id:\n- WCC-53zMspFvif9Fb6Gs\n- nz5a6LSszW6LgsW5QYNx\n 133 \N 189.186.42.241 3b0b9071-5f7e-4ece-af96-5e0cb00f9bc3 2019-04-03 01:07:25.882328 4734 399 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 110\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.319E3\nmove_type: '1'\nsale_id: 262\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.52E3\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-140 189.186.42.241 7db54300-7558-48d6-b550-47fb591861ca 2019-04-03 01:16:10.883223 4735 107 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 110\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.1368E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.13E4\ncash_fund: !ruby/object:BigDecimal 18:0.667E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1967E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 c12d2f55-b496-4c28-835c-15f128d90e9a 2019-04-03 02:00:16.018852 4736 110 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 c12d2f55-b496-4c28-835c-15f128d90e9a 2019-04-03 02:00:16.039368 4737 108 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 109\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.2E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.4E3\ncash_fund: !ruby/object:BigDecimal 18:0.4E3\nphysical_cash: !ruby/object:BigDecimal 18:0.8E3\nobservations: "$400 por adelanto Ilse"\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.42.241 75ed6017-325c-442c-9626-99bba0e83e28 2019-04-03 02:02:42.526046 4738 109 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 75ed6017-325c-442c-9626-99bba0e83e28 2019-04-03 02:02:42.544421 4739 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-03-31 22:32:53.598212000 Z\n- &1 2019-04-02 01:25:52.676274000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-03 02:24:40.505500118 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933981\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938487\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938487\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934088\n mask_addr: 4294967295\nsign_in_count:\n- 114\n- 115\n 230 \N 200.68.134.136 bda6c471-bba4-4dc8-843b-483ddab6bd1d 2019-04-03 02:24:40.514996 4740 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Aa3cvVHwgppHoomVcgNB\n- 6f3C8yzH5Ld4yV8e47Qf\n 231 \N 200.68.134.136 bda6c471-bba4-4dc8-843b-483ddab6bd1d 2019-04-03 02:24:40.532519 4741 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-04-01 17:19:29.506127000 Z\n- &1 2019-04-02 17:10:34.242402000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-03 16:50:55.263181798 Z\nsign_in_count:\n- 71\n- 72\n 147 \N 189.186.42.241 fc368fe8-c750-4f8d-92f3-6dd742ba144a 2019-04-03 16:50:55.302199 4742 2 User \N \N 2 User \N update ---\nunique_session_id:\n- EkoLv9T8FqC6VsLRZzde\n- 39cSkbsoC57P8ocwHMn7\n 148 \N 189.186.42.241 fc368fe8-c750-4f8d-92f3-6dd742ba144a 2019-04-03 16:50:55.323145 4743 111 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.667E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 667.0 189.186.42.241 39b0ed66-fe78-4a88-8bf7-aee97107b925 2019-04-03 16:55:47.162696 4744 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-03-31 17:08:56.830195000 Z\n- &1 2019-04-02 17:52:32.135088000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-03 17:02:04.634202080 Z\nsign_in_count:\n- 27\n- 28\n 56 \N 189.186.42.241 146a19a2-5459-47d1-8458-1561347ed273 2019-04-03 17:02:04.670998 4745 11 User \N \N 11 User \N update ---\nunique_session_id:\n- fEitTemgtPG74mNcEkTh\n- nJ1Z-TrGvyRL6aNhxTty\n 57 \N 189.186.42.241 146a19a2-5459-47d1-8458-1561347ed273 2019-04-03 17:02:04.692522 4746 112 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.4E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 400.0 189.186.42.241 2b2a2fa5-aa6d-4364-9acb-b36ae0844ee1 2019-04-03 17:02:18.107063 4747 400 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.243E3\nmove_type: '1'\nsale_id: 18\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.243E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 39b97307-e3f5-44a6-912e-bf07c312ac6d 2019-04-03 17:25:20.267544 4748 400 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 2\n- 111\n 2 movimiento de efectivo por venta con folio PV1-V-16 189.186.42.241 39b97307-e3f5-44a6-912e-bf07c312ac6d 2019-04-03 17:25:20.299158 4749 324 Sale \N \N 2 User \N create ---\ncustomer_id: 3\nuser_id: 2\nopen_cash_register_id: 111\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-04-03\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-174\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 85192098-6f59-4cd3-affe-a040a13dbd03 2019-04-03 17:41:02.147239 4750 488 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.42.241 85192098-6f59-4cd3-affe-a040a13dbd03 2019-04-03 17:41:02.176762 4751 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-03-31 20:34:28.872651000 Z\n- &1 2019-04-03 01:06:59.355130000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-03 22:50:59.720660758 Z\nsign_in_count:\n- 117\n- 118\n 236 \N 189.186.42.241 9d93b030-6649-4a7e-83e2-dc881b92a8b5 2019-04-03 22:50:59.747221 27922 2089 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 0847cb66-3fc8-4ae9-907e-771bcf98d04d 2020-01-25 22:13:29.927431 4753 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-03 00:07:03.851034000 Z\n- &1 2019-04-03 01:07:25.853493000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-03 23:20:13.119469910 Z\nsign_in_count:\n- 66\n- 67\n 134 \N 189.186.42.241 09aba0e5-2b40-46df-8d92-0624bba21373 2019-04-03 23:20:13.125468 4754 12 User \N \N 12 User \N update ---\nunique_session_id:\n- nz5a6LSszW6LgsW5QYNx\n- zAwZ_G9JqAvujtisQ9ss\n 135 \N 189.186.42.241 09aba0e5-2b40-46df-8d92-0624bba21373 2019-04-03 23:20:13.141017 4755 325 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 111\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-04-03\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-175\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 b194a1b4-4c04-4958-9142-929cb99a4b55 2019-04-03 23:20:32.195132 4756 89 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.42.241 b194a1b4-4c04-4958-9142-929cb99a4b55 2019-04-03 23:20:32.235967 4757 325 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 06b1e79d-1db5-45bb-9e8c-4312200f5102 2019-04-03 23:20:42.379579 4758 401 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 111\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 325\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-175\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-175 189.186.42.241 06b1e79d-1db5-45bb-9e8c-4312200f5102 2019-04-03 23:20:42.41733 4759 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-02 01:25:52.676274000 Z\n- &1 2019-04-03 02:24:40.505500000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-04 00:40:05.987880508 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938487\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934088\n mask_addr: 4294967295\nsign_in_count:\n- 115\n- 116\n 232 \N 200.68.134.136 dec38e30-1299-443f-955e-c0d8a1d22a96 2019-04-04 00:40:05.99752 4760 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6f3C8yzH5Ld4yV8e47Qf\n- Sps1hu1GAWSEt7jCTSvP\n 233 \N 200.68.134.136 dec38e30-1299-443f-955e-c0d8a1d22a96 2019-04-04 00:40:06.019425 4761 326 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 112\namount: !ruby/object:BigDecimal 18:0.92917E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.998E3\nstatus: 0\ndate_sale: 2019-04-03\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-149\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 7ecdb092-1220-4ed3-91ad-aeeb939fdfbe 2019-04-04 01:57:10.430513 4762 557 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.42.241 7ecdb092-1220-4ed3-91ad-aeeb939fdfbe 2019-04-04 01:57:10.463096 4763 495 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.42.241 7ecdb092-1220-4ed3-91ad-aeeb939fdfbe 2019-04-04 01:57:10.491827 4764 326 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 c9c5bf8c-08db-403d-8243-38413365030f 2019-04-04 01:57:29.114176 4765 402 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 112\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.998E3\nmove_type: '1'\nsale_id: 326\ncardnumber: 11\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-149\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-149 189.186.42.241 c9c5bf8c-08db-403d-8243-38413365030f 2019-04-04 01:57:29.147116 4766 109 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 111\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.842E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.766E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1966E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 98bf82f2-0c47-471f-9e24-17e373411311 2019-04-04 01:58:42.706826 4767 111 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 98bf82f2-0c47-471f-9e24-17e373411311 2019-04-04 01:58:42.724854 4768 110 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 112\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.998E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.1098E4\ncash_fund: !ruby/object:BigDecimal 18:0.3E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1398E4\nobservations: abono a cuenta de Ilse $100.00\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.42.241 12adb254-7c41-4a03-9e2b-730de84fba28 2019-04-04 02:02:55.854344 4769 112 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 12adb254-7c41-4a03-9e2b-730de84fba28 2019-04-04 02:02:55.874012 4770 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-04-02 17:52:32.135088000 Z\n- &1 2019-04-03 17:02:04.634202000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-04 17:05:11.953422587 Z\nsign_in_count:\n- 28\n- 29\n 58 \N 189.186.42.241 ca97c2b2-9ea2-4200-be4e-a4063ef39c09 2019-04-04 17:05:11.98661 4771 11 User \N \N 11 User \N update ---\nunique_session_id:\n- nJ1Z-TrGvyRL6aNhxTty\n- WL3TQB515o588T22eUjm\n 59 \N 189.186.42.241 ca97c2b2-9ea2-4200-be4e-a4063ef39c09 2019-04-04 17:05:12.025726 4772 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-04-02 17:10:34.242402000 Z\n- &1 2019-04-03 16:50:55.263181000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-04 17:10:48.028306831 Z\nsign_in_count:\n- 72\n- 73\n 149 \N 189.186.42.241 b968a3ec-59fe-4271-a3bc-c158054326b8 2019-04-04 17:10:48.036906 4773 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 39cSkbsoC57P8ocwHMn7\n- sZuKnZY76T_waCmdsRpE\n 150 \N 189.186.42.241 b968a3ec-59fe-4271-a3bc-c158054326b8 2019-04-04 17:10:48.056238 4774 113 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.3E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 300.0 189.186.42.241 fef80b3d-d1b1-42e5-9cfa-fda7e3bac82e 2019-04-04 17:17:03.700202 4775 68 Customer \N \N 11 User \N create ---\nnick_name: angelica otiz\nphone: "(667) 169-0637"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente angelica otiz fue registrado. 189.186.42.241 9f7513fd-93e6-4d54-9b0e-5a7c6c832064 2019-04-04 17:21:30.049204 4776 327 Sale \N \N 11 User \N create ---\ncustomer_id: 68\nuser_id: 11\nopen_cash_register_id: 113\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-04-04\nsaletype: 2\nseller_id: 7\nsale_code: PV2-V-150\nexpiration_date: 2019-05-09\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 03b4bac3-94e2-4f96-b6fe-586d3e42edee 2019-04-04 17:21:49.482883 4778 403 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 113\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 327\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-150\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.699E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-150 189.186.42.241 fd3f7968-79ca-41f4-ace3-926afc02b55f 2019-04-04 17:22:18.907167 4779 327 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.42.241 4363aa71-912c-4623-a1bc-37e5a588f363 2019-04-04 17:22:20.251113 4780 114 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.766E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 766.0 189.186.42.241 061e396d-544e-4e9a-9667-d4bfa5fcd981 2019-04-04 18:43:18.92829 4781 328 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 113\namount: !ruby/object:BigDecimal 18:0.59397E3\ntax: !ruby/object:BigDecimal 18:0.9504E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.68901E3\nstatus: 0\ndate_sale: 2019-04-04\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-151\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 7872cab2-2d4e-49cb-893b-7d6f30856b0c 2019-04-04 19:48:26.813122 4782 395 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.42.241 7872cab2-2d4e-49cb-893b-7d6f30856b0c 2019-04-04 19:48:26.861996 4783 328 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 f8e6ad22-f1b2-4c0c-91c3-e5b8343011d3 2019-04-04 19:49:06.790176 4784 404 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 113\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.689E3\nmove_type: '1'\nsale_id: 328\ncardnumber: 9587\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-151\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-151 189.186.42.241 f8e6ad22-f1b2-4c0c-91c3-e5b8343011d3 2019-04-04 19:49:06.81545 4785 405 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 113\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.689E3\nmove_type: '1'\nsale_id: 328\ncardnumber: 9587\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-151\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-151 189.186.42.241 eaae4184-5c22-4722-bb32-204b2f18d9ce 2019-04-04 19:49:53.467291 4786 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-03 02:24:40.505500000 Z\n- &1 2019-04-04 00:40:05.987880000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-04 20:30:05.988197909 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934088\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934333\n mask_addr: 4294967295\nsign_in_count:\n- 116\n- 117\n 234 \N 200.68.135.125 a64b0079-c6da-4242-8857-3aa47e094cbc 2019-04-04 20:30:06.021967 4787 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Sps1hu1GAWSEt7jCTSvP\n- URmozu28nCyCWC7sdVPP\n 235 \N 200.68.135.125 a64b0079-c6da-4242-8857-3aa47e094cbc 2019-04-04 20:30:06.045484 4788 329 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 113\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-04-04\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-152\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 19be2316-dd06-4bc3-b686-7babdb3c3b46 2019-04-04 21:31:07.904909 4789 549 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.42.241 19be2316-dd06-4bc3-b686-7babdb3c3b46 2019-04-04 21:31:07.943402 4790 329 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 0ecbcec1-3669-48ab-b0d1-6f598558fa1e 2019-04-04 21:31:33.614786 4791 406 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 113\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 329\ncardnumber: 8774\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-152\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-152 189.186.42.241 0ecbcec1-3669-48ab-b0d1-6f598558fa1e 2019-04-04 21:31:33.635078 4792 330 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 114\namount: !ruby/object:BigDecimal 18:0.223965E4\ntax: !ruby/object:BigDecimal 18:0.35834E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.259799E4\nstatus: 0\ndate_sale: 2019-04-04\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-176\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 dd37ac78-ed4a-41c2-a942-4bdc51c53827 2019-04-04 21:58:10.893122 4793 248 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.42.241 dd37ac78-ed4a-41c2-a942-4bdc51c53827 2019-04-04 21:58:10.94117 4794 249 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.42.241 dd37ac78-ed4a-41c2-a942-4bdc51c53827 2019-04-04 21:58:10.983742 4795 330 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 d95e626c-6183-4951-8d39-d3e5e0e99c89 2019-04-04 21:58:39.567607 4796 407 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 114\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.2598E4\nmove_type: '1'\nsale_id: 330\ncardnumber: 8628\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-176\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-176 189.186.42.241 d95e626c-6183-4951-8d39-d3e5e0e99c89 2019-04-04 21:58:39.606914 4797 331 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 113\namount: !ruby/object:BigDecimal 18:0.106724E4\ntax: !ruby/object:BigDecimal 18:0.17076E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1238E4\nstatus: 0\ndate_sale: 2019-04-04\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-153\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 581073aa-c8ca-445e-84f3-c68f7822eea8 2019-04-04 22:48:29.268212 4798 330 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.42.241 581073aa-c8ca-445e-84f3-c68f7822eea8 2019-04-04 22:48:29.304422 4799 331 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-153 cancelada. 189.186.42.241 887df210-c9ab-42e7-95d5-3412eaffa83d 2019-04-04 22:48:33.732755 4801 332 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 113\namount: !ruby/object:BigDecimal 18:0.53362E3\ntax: !ruby/object:BigDecimal 18:0.8538E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.619E3\nstatus: 0\ndate_sale: 2019-04-04\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-154\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 2c4e3341-0cd5-4fcb-99aa-89a3cce5f4ce 2019-04-04 22:48:44.721094 4802 330 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 189.186.42.241 2c4e3341-0cd5-4fcb-99aa-89a3cce5f4ce 2019-04-04 22:48:44.746679 4803 332 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 a81baba9-e51f-423e-9702-d81561895e07 2019-04-04 22:48:57.303843 4804 408 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 113\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.619E3\nmove_type: '1'\nsale_id: 332\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-154\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.619E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-154 189.186.42.241 a81baba9-e51f-423e-9702-d81561895e07 2019-04-04 22:48:57.329253 4805 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-04 00:40:05.987880000 Z\n- &1 2019-04-04 20:30:05.988197000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-04 22:49:23.645195800 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934088\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934333\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934333\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095256\n mask_addr: 4294967295\nsign_in_count:\n- 117\n- 118\n 236 \N 189.186.45.216 5d0b471b-c1a5-458a-b24c-74c6c611b157 2019-04-04 22:49:23.652753 4806 4 User \N \N 4 User \N update ---\nunique_session_id:\n- URmozu28nCyCWC7sdVPP\n- iERhQGhs3ChUMsacV7Ad\n 237 \N 189.186.45.216 5d0b471b-c1a5-458a-b24c-74c6c611b157 2019-04-04 22:49:23.667258 4807 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-03 01:06:59.355130000 Z\n- &1 2019-04-03 22:50:59.720660000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-04 22:54:40.413022824 Z\nsign_in_count:\n- 118\n- 119\n 238 \N 189.186.42.241 b077f492-8929-4710-aaac-3894448c0913 2019-04-04 22:54:40.418341 4808 3 User \N \N 3 User \N update ---\nunique_session_id:\n- oLbz5Xa-35sySKEDuQ-8\n- "--dEUxFsCXuoPom8F8bb"\n 239 \N 189.186.42.241 b077f492-8929-4710-aaac-3894448c0913 2019-04-04 22:54:40.431199 4809 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-03 22:50:59.720660000 Z\n- &1 2019-04-04 22:54:40.413022000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-05 00:00:55.166743093 Z\nsign_in_count:\n- 119\n- 120\n 240 \N 189.186.42.241 ed1514e6-d633-43b7-b1fe-ce81db6186e5 2019-04-05 00:00:55.174267 4810 3 User \N \N 3 User \N update ---\nunique_session_id:\n- "--dEUxFsCXuoPom8F8bb"\n- NgnPfJ8BX87NRTMFbrxS\n 241 \N 189.186.42.241 ed1514e6-d633-43b7-b1fe-ce81db6186e5 2019-04-05 00:00:55.193957 4811 409 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 178\ncardnumber: 8275\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 53917dcd-b80e-472b-9a06-4e637a0832be 2019-04-05 00:26:08.465233 4812 409 CashRegistersMove \N \N 3 User \N update ---\nopen_cash_register_id:\n- 49\n- 113\n 2 movimiento de efectivo por venta con folio PV1-V-102 189.186.42.241 53917dcd-b80e-472b-9a06-4e637a0832be 2019-04-05 00:26:08.490826 4813 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-04 22:54:40.413022000 Z\n- &1 2019-04-05 00:00:55.166743000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-05 01:12:19.828800419 Z\nsign_in_count:\n- 120\n- 121\n 242 \N 189.186.42.241 10e5e9ac-3a64-42ac-9ee1-2d0fa7dbc325 2019-04-05 01:12:19.851735 4814 3 User \N \N 3 User \N update ---\nunique_session_id:\n- NgnPfJ8BX87NRTMFbrxS\n- nU4viCdgFgr9Zrk7BPPh\n 243 \N 189.186.42.241 10e5e9ac-3a64-42ac-9ee1-2d0fa7dbc325 2019-04-05 01:12:19.873659 4815 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-03 01:07:25.853493000 Z\n- &1 2019-04-03 23:20:13.119469000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-05 01:12:44.518965063 Z\nsign_in_count:\n- 67\n- 68\n 136 \N 189.186.42.241 790705f5-8696-4fad-a2f6-8abcb83c6745 2019-04-05 01:12:44.53148 4816 12 User \N \N 12 User \N update ---\nunique_session_id:\n- zAwZ_G9JqAvujtisQ9ss\n- NM7nty87-_yx4k1yZeTs\n 137 \N 189.186.42.241 790705f5-8696-4fad-a2f6-8abcb83c6745 2019-04-05 01:12:44.557578 4817 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-03-26 00:58:34.584891000 Z\n- &1 2019-03-26 02:27:11.169176000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-05 01:20:57.465540214 Z\nsign_in_count:\n- 37\n- 38\n 76 \N 189.186.42.241 6ef921e4-b333-435c-9b1d-5dcad19ced03 2019-04-05 01:20:57.47347 4818 10 User \N \N 10 User \N update ---\nunique_session_id:\n- gURQuCqn9XN9mxYBYRzX\n- n__x4w9xJFopmEd524rx\n 77 \N 189.186.42.241 6ef921e4-b333-435c-9b1d-5dcad19ced03 2019-04-05 01:20:57.491202 4819 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-04 20:30:05.988197000 Z\n- &1 2019-04-04 22:49:23.645195000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-05 01:45:22.954689437 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934333\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095256\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095256\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934333\n mask_addr: 4294967295\nsign_in_count:\n- 118\n- 119\n 238 \N 200.68.135.125 f6c01d0d-d081-4d65-a817-3e922fead2ac 2019-04-05 01:45:22.971481 4820 4 User \N \N 4 User \N update ---\nunique_session_id:\n- iERhQGhs3ChUMsacV7Ad\n- zoJJrz-86kfxzLcHBKxB\n 239 \N 200.68.135.125 f6c01d0d-d081-4d65-a817-3e922fead2ac 2019-04-05 01:45:23.010681 4821 333 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 114\namount: !ruby/object:BigDecimal 18:0.50776E3\ntax: !ruby/object:BigDecimal 18:0.8124E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2019-04-04\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-177\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 7a7421a5-c472-475b-936b-f08f811873d0 2019-04-05 01:46:34.905576 4822 247 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.42.241 7a7421a5-c472-475b-936b-f08f811873d0 2019-04-05 01:46:34.949617 4823 333 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 44b1c53b-ad77-43a1-a9ca-5132bc0f3382 2019-04-05 01:47:51.23047 4824 410 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 114\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.589E3\nmove_type: '1'\nsale_id: 333\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-177\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-177 189.186.42.241 44b1c53b-ad77-43a1-a9ca-5132bc0f3382 2019-04-05 01:47:51.264928 4825 111 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 114\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.3187E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.6E3\ncash_fund: !ruby/object:BigDecimal 18:0.755E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1355E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 a7cfde10-23be-439e-9e00-e03b870b82da 2019-04-05 01:52:22.934655 4826 114 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 a7cfde10-23be-439e-9e00-e03b870b82da 2019-04-05 01:52:22.955681 4827 112 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 113\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.3596E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.11E4\ncash_fund: !ruby/object:BigDecimal 18:0.535E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1635E4\nobservations: ABONO ILSE $100\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.42.241 a5cb0b93-61f8-4f0a-ac98-fc52eea197e5 2019-04-05 02:05:01.855859 4828 113 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 a5cb0b93-61f8-4f0a-ac98-fc52eea197e5 2019-04-05 02:05:01.897301 4829 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-05 00:00:55.166743000 Z\n- &1 2019-04-05 01:12:19.828800000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-05 17:04:27.534866038 Z\nsign_in_count:\n- 121\n- 122\n 244 \N 189.186.42.241 8f47611c-ad20-452b-8110-b486053aeb3d 2019-04-05 17:04:27.565855 4830 3 User \N \N 3 User \N update ---\nunique_session_id:\n- nU4viCdgFgr9Zrk7BPPh\n- 4P3xVqosPYFfksKEKmSc\n 245 \N 189.186.42.241 8f47611c-ad20-452b-8110-b486053aeb3d 2019-04-05 17:04:27.589641 4831 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-04-03 17:02:04.634202000 Z\n- &1 2019-04-04 17:05:11.953422000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-05 17:14:32.466358164 Z\nsign_in_count:\n- 29\n- 30\n 60 \N 189.186.42.241 e618e918-4b59-4176-85a5-237c9a0df526 2019-04-05 17:14:32.47263 4832 11 User \N \N 11 User \N update ---\nunique_session_id:\n- WL3TQB515o588T22eUjm\n- dKcNxPtdW1EympszCu6z\n 61 \N 189.186.42.241 e618e918-4b59-4176-85a5-237c9a0df526 2019-04-05 17:14:32.48627 4833 115 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.535E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 535.0 189.186.42.241 32a211b2-57b7-4ac4-9e45-321b0d83951e 2019-04-05 17:14:40.059553 4834 411 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 115\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 327\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-150 189.186.42.241 a2fbfa5d-c853-42d3-9c72-041097c2ff2a 2019-04-05 17:15:49.15397 4835 327 Sale \N \N 11 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.42.241 556649d8-8219-4001-814a-899513440605 2019-04-05 17:15:52.740742 4836 334 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 115\namount: !ruby/object:BigDecimal 18:0.5681E3\ntax: !ruby/object:BigDecimal 18:0.909E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.659E3\nstatus: 0\ndate_sale: 2019-04-05\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-155\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 08f38cbb-f1f9-4d3f-b5c2-2ff847c86ffd 2019-04-05 17:24:12.318508 4837 433 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.42.241 08f38cbb-f1f9-4d3f-b5c2-2ff847c86ffd 2019-04-05 17:24:12.350266 4838 334 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 992e150a-6d18-410d-b726-89e1bc7ce73b 2019-04-05 17:24:27.795753 4839 412 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 115\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.659E3\nmove_type: '1'\nsale_id: 334\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-155\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.659E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-155 189.186.42.241 992e150a-6d18-410d-b726-89e1bc7ce73b 2019-04-05 17:24:27.829066 4840 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-04-03 16:50:55.263181000 Z\n- &1 2019-04-04 17:10:48.028306000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-05 18:08:54.371546297 Z\nsign_in_count:\n- 73\n- 74\n 151 \N 189.186.42.241 630a90fd-7087-4bc8-90de-8db216e7d691 2019-04-05 18:08:54.379904 4841 2 User \N \N 2 User \N update ---\nunique_session_id:\n- sZuKnZY76T_waCmdsRpE\n- sxb2jSXaYW5kk71Wkviw\n 152 \N 189.186.42.241 630a90fd-7087-4bc8-90de-8db216e7d691 2019-04-05 18:08:54.396882 4842 116 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.755E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 755.0 189.186.42.241 f4141492-4020-4783-9394-7363dbddb3e3 2019-04-05 18:10:17.257491 4843 35 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 116\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: Comida Chio\nexpense_date: 2019-04-05\nexpense_code: PV1-E-31\n 1 Egreso por 50.0 registrado 189.186.42.241 f3d3cd62-25ef-4954-92fd-b1a31da51694 2019-04-05 18:13:32.274875 4844 413 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 116\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 35\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 f3d3cd62-25ef-4954-92fd-b1a31da51694 2019-04-05 18:13:32.296863 4845 335 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 115\namount: !ruby/object:BigDecimal 18:0.161021E4\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1748E4\nstatus: 0\ndate_sale: 2019-04-05\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-156\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 e00feb36-28f4-4e34-9136-8cdd42db943c 2019-04-05 19:33:18.510985 4846 431 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.42.241 e00feb36-28f4-4e34-9136-8cdd42db943c 2019-04-05 19:33:18.54341 4847 563 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.42.241 e00feb36-28f4-4e34-9136-8cdd42db943c 2019-04-05 19:33:18.577279 4848 335 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 f45dd145-9b77-414c-8641-f106ec816df9 2019-04-05 19:34:12.552107 5218 509 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.16E2\n 3 \N 189.186.34.75 93d2998f-f6d7-4ac4-b45b-f0eb0515ef4e 2019-04-13 18:22:55.197129 4849 414 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 115\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1748E4\nmove_type: '1'\nsale_id: 335\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-156\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1748E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-156 189.186.42.241 f45dd145-9b77-414c-8641-f106ec816df9 2019-04-05 19:34:12.574416 4850 336 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 115\namount: !ruby/object:BigDecimal 18:0.161021E4\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1748E4\nstatus: 0\ndate_sale: 2019-04-05\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-157\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 04af3e12-f11e-43bb-b269-135f124cc40a 2019-04-05 19:35:12.310017 4851 563 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.42.241 04af3e12-f11e-43bb-b269-135f124cc40a 2019-04-05 19:35:12.341052 4852 431 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.42.241 04af3e12-f11e-43bb-b269-135f124cc40a 2019-04-05 19:35:12.36881 4853 336 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 abc73e0c-ae3c-4c50-89bb-0d97124e302f 2019-04-05 19:35:18.124676 4854 415 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 115\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1748E4\nmove_type: '1'\nsale_id: 336\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-157\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1748E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-157 189.186.42.241 abc73e0c-ae3c-4c50-89bb-0d97124e302f 2019-04-05 19:35:18.149051 4855 337 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 115\namount: !ruby/object:BigDecimal 18:0.161021E4\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1748E4\nstatus: 0\ndate_sale: 2019-04-05\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-158\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 5e77fed7-f6bc-4975-a1e3-8dd88d23cdf5 2019-04-05 19:37:11.69399 4856 563 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.42.241 5e77fed7-f6bc-4975-a1e3-8dd88d23cdf5 2019-04-05 19:37:11.72355 4857 431 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.42.241 5e77fed7-f6bc-4975-a1e3-8dd88d23cdf5 2019-04-05 19:37:11.753142 4858 337 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 c3d4eb04-46bc-4296-bfb1-6300bfb8ef52 2019-04-05 19:37:17.401141 4859 416 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 115\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1748E4\nmove_type: '1'\nsale_id: 337\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-158\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1748E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-158 189.186.42.241 c3d4eb04-46bc-4296-bfb1-6300bfb8ef52 2019-04-05 19:37:17.430314 4860 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-04 22:49:23.645195000 Z\n- &1 2019-04-05 01:45:22.954689000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-05 20:40:25.111618898 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095256\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934333\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934333\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938255\n mask_addr: 4294967295\nsign_in_count:\n- 119\n- 120\n 240 \N 200.68.150.207 c0463a0d-c840-4c76-8d7e-a2608dfdbe0f 2019-04-05 20:40:25.12134 4861 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zoJJrz-86kfxzLcHBKxB\n- 9duotx4QBdXSTGra_vFx\n 241 \N 200.68.150.207 c0463a0d-c840-4c76-8d7e-a2608dfdbe0f 2019-04-05 20:40:25.143085 4862 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-05 01:45:22.954689000 Z\n- &1 2019-04-05 20:40:25.111618000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-05 21:03:58.494106686 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934333\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938255\n mask_addr: 4294967295\nsign_in_count:\n- 120\n- 121\n 242 \N 200.68.150.207 d29e4e1e-08ec-4513-a11e-9f39c285b759 2019-04-05 21:03:58.502508 4863 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9duotx4QBdXSTGra_vFx\n- wzAQFVAvwCoZz-MLspJv\n 243 \N 200.68.150.207 d29e4e1e-08ec-4513-a11e-9f39c285b759 2019-04-05 21:03:58.519887 4864 338 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 116\namount: !ruby/object:BigDecimal 18:0.146466E4\ntax: !ruby/object:BigDecimal 18:0.23435E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.169901E4\nstatus: 0\ndate_sale: 2019-04-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-178\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 180fed1b-0c44-4807-9c6c-37ae44273d02 2019-04-05 21:45:38.153288 4865 42 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.42.241 180fed1b-0c44-4807-9c6c-37ae44273d02 2019-04-05 21:45:38.191955 4866 338 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 647371ba-023d-4a08-8514-797222004e5d 2019-04-05 21:47:21.962236 4867 417 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 116\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1699E4\nmove_type: '1'\nsale_id: 338\ncardnumber: 7686\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-178\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-178 189.186.42.241 647371ba-023d-4a08-8514-797222004e5d 2019-04-05 21:47:21.993 4868 417 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 116\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.1699E4\nmove_type: '1'\nsale_id: 338\ncardnumber: 7686\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-178\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.42.241 95b9309c-aed5-4f84-8548-dc0e590291c0 2019-04-05 21:47:46.194453 4965 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-04-04 17:05:11.953422000 Z\n- &1 2019-04-05 17:14:32.466358000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-07 16:03:04.983145992 Z\nsign_in_count:\n- 30\n- 31\n 62 \N 189.186.42.241 743222bf-117f-4d63-aa0d-df2f412cca15 2019-04-07 16:03:05.041416 28213 2115 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 98564bb6-93cf-413b-90c3-8be2aa93621c 2020-01-28 19:46:07.638601 4869 418 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 116\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1699E4\nmove_type: '1'\nsale_id: 338\ncardnumber: 7686\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-178\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-178 189.186.42.241 6c517843-41f9-4afe-957b-93f80c7f85cd 2019-04-05 21:48:00.862745 4870 418 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 116\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.1699E4\nmove_type: '1'\nsale_id: 338\ncardnumber: 7686\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-178\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.42.241 ca973365-bcaf-46c4-aed4-3a35a839bcfb 2019-04-05 21:48:08.555506 4871 419 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 116\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.169901E4\nmove_type: '1'\nsale_id: 338\ncardnumber: 7686\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-178\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-178 189.186.42.241 e07c1113-dddf-464b-9c86-74cda6cd26a8 2019-04-05 21:48:25.601349 4872 339 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 115\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-04-05\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-159\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 42aa7e88-239c-42c1-83be-92c22dca5b9e 2019-04-05 21:54:44.741399 4873 387 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.42.241 42aa7e88-239c-42c1-83be-92c22dca5b9e 2019-04-05 21:54:44.771618 4874 339 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 8fb67067-5c37-4241-895b-fc53a374ca59 2019-04-05 21:54:50.356395 4875 420 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 115\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 339\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-159\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-159 189.186.42.241 8fb67067-5c37-4241-895b-fc53a374ca59 2019-04-05 21:54:50.386781 4876 335 Sale \N \N 11 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-156 cancelada. 189.186.42.241 ca6774a1-dd5e-4f45-9513-ea27a62d92ee 2019-04-05 22:50:14.029691 4877 414 CashRegistersMove \N \N 11 User \N destroy ---\nopen_cash_register_id: 115\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1748E4\nmove_type: '1'\nsale_id: 335\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-156\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1748E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.42.241 ca6774a1-dd5e-4f45-9513-ea27a62d92ee 2019-04-05 22:50:14.068249 4878 563 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.42.241 ca6774a1-dd5e-4f45-9513-ea27a62d92ee 2019-04-05 22:50:14.106696 4879 431 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.42.241 ca6774a1-dd5e-4f45-9513-ea27a62d92ee 2019-04-05 22:50:14.140001 4880 336 Sale \N \N 11 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-157 cancelada. 189.186.42.241 fd2f87bc-3f3a-4d09-a946-a8a16785036d 2019-04-05 22:50:19.912215 4881 415 CashRegistersMove \N \N 11 User \N destroy ---\nopen_cash_register_id: 115\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1748E4\nmove_type: '1'\nsale_id: 336\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-157\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1748E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.42.241 fd2f87bc-3f3a-4d09-a946-a8a16785036d 2019-04-05 22:50:19.933719 4882 431 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.42.241 fd2f87bc-3f3a-4d09-a946-a8a16785036d 2019-04-05 22:50:19.961169 4883 563 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 189.186.42.241 fd2f87bc-3f3a-4d09-a946-a8a16785036d 2019-04-05 22:50:19.982845 4884 340 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 115\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-04-05\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-160\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 3de88546-b0f2-4f52-bdf7-392890e556aa 2019-04-05 23:46:45.078576 4885 495 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.42.241 3de88546-b0f2-4f52-bdf7-392890e556aa 2019-04-05 23:46:45.307158 4886 340 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 8dc9f7d3-9a7a-4578-ab1f-b0871ed0de19 2019-04-05 23:47:02.172698 4887 421 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 115\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 340\ncardnumber: 9663\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-160\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-160 189.186.42.241 8dc9f7d3-9a7a-4578-ab1f-b0871ed0de19 2019-04-05 23:47:02.206691 4888 341 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 115\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-04-05\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-161\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 fccaa12f-3c0e-4028-8b3f-e24ce2e1156a 2019-04-05 23:54:59.283998 4889 316 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.42.241 fccaa12f-3c0e-4028-8b3f-e24ce2e1156a 2019-04-05 23:54:59.341523 4966 11 User \N \N 11 User \N update ---\nunique_session_id:\n- dKcNxPtdW1EympszCu6z\n- r16KxRpstkHjXzjA1gme\n 63 \N 189.186.42.241 743222bf-117f-4d63-aa0d-df2f412cca15 2019-04-07 16:03:05.071162 4890 422 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 116\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.319E3\nmove_type: '1'\nsale_id: 262\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.319E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-140 189.186.42.241 a0d04d9d-a0e3-4a56-8e70-e7e529cdcee2 2019-04-05 23:55:03.808303 4891 262 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.42.241 a3975825-ea1c-4ba7-895f-d986fb874d57 2019-04-05 23:55:05.37672 4892 341 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 5f02b831-687c-4e1b-9966-8af036168554 2019-04-05 23:55:23.012606 4893 423 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 115\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 341\ncardnumber: 9663\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-161\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-161 189.186.42.241 5f02b831-687c-4e1b-9966-8af036168554 2019-04-05 23:55:23.046096 4894 424 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 116\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 306\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-161 189.186.42.241 e0361d3e-fe0c-416c-adde-74ae4132dc4d 2019-04-06 00:12:05.73378 4895 306 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.42.241 b0255134-ab5f-44bc-9206-cb21a218fd38 2019-04-06 00:12:06.989785 4896 113 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 116\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.256701E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.573E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1573E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 364bed15-e1f3-4a0f-b0e7-d9d99908f847 2019-04-06 01:28:16.334448 4897 116 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 364bed15-e1f3-4a0f-b0e7-d9d99908f847 2019-04-06 01:28:16.353554 4898 2 ProductsReturn \N \N 11 User \N create ---\nsale_id: 307\nuser_id: 11\nreturn_code: PV2-D-1\npointsale_id: 2\nnew_amount: !ruby/object:BigDecimal 18:0.1899E4\nreturned_amount: !ruby/object:BigDecimal 18:0.579E3\ndifference_amount: !ruby/object:BigDecimal 18:0.132E4\nis_money_returned: false\n 1 devolución PV2-D-1 creada. 189.186.42.241 0f79a397-7d6d-4495-b887-7b97c2bb5daa 2019-04-06 01:38:28.740923 4899 481 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 189.186.42.241 0f79a397-7d6d-4495-b887-7b97c2bb5daa 2019-04-06 01:38:28.793869 4900 385 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.42.241 0f79a397-7d6d-4495-b887-7b97c2bb5daa 2019-04-06 01:38:28.855423 4901 425 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 115\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.132E4\nmove_type: '1'\nsale_id: 307\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.132E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 2\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV2-D-1 189.186.42.241 46928774-8893-47fa-8113-130cedf49e13 2019-04-06 01:38:37.401146 4902 114 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 115\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.6293E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.49E4\ncash_fund: !ruby/object:BigDecimal 18:0.96E3\nphysical_cash: !ruby/object:BigDecimal 18:0.586E4\nobservations: 200 SUELDO ILSE\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.42.241 60a2f901-af5f-494d-b384-d0a1eb2c364a 2019-04-06 01:43:26.910169 4903 115 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 60a2f901-af5f-494d-b384-d0a1eb2c364a 2019-04-06 01:43:26.928533 4904 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-05 20:40:25.111618000 Z\n- &1 2019-04-05 21:03:58.494106000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-06 02:11:42.312038809 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938255\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938243\n mask_addr: 4294967295\nsign_in_count:\n- 121\n- 122\n 244 \N 200.68.150.195 9e402eaf-9436-41f1-9ebe-97b0dfe1f471 2019-04-06 02:11:42.335484 4905 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wzAQFVAvwCoZz-MLspJv\n- n1-4ziz42uzSecovjYeJ\n 245 \N 200.68.150.195 9e402eaf-9436-41f1-9ebe-97b0dfe1f471 2019-04-06 02:11:42.367991 4906 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-03 23:20:13.119469000 Z\n- &1 2019-04-05 01:12:44.518965000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-06 18:34:57.711070446 Z\nsign_in_count:\n- 68\n- 69\n 138 \N 189.186.42.241 d13faa87-61cc-4e7a-92af-9c45a25c61af 2019-04-06 18:34:57.748447 4907 12 User \N \N 12 User \N update ---\nunique_session_id:\n- NM7nty87-_yx4k1yZeTs\n- UxJQMJPnC5pMv33Bpsee\n 139 \N 189.186.42.241 d13faa87-61cc-4e7a-92af-9c45a25c61af 2019-04-06 18:34:57.774733 4908 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-05 01:12:19.828800000 Z\n- &1 2019-04-05 17:04:27.534866000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-06 18:42:38.496161070 Z\nsign_in_count:\n- 122\n- 123\n 246 \N 189.186.42.241 8aa661e2-6667-4c7d-b3c0-fa236d3a20e9 2019-04-06 18:42:38.502711 4909 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 4P3xVqosPYFfksKEKmSc\n- yVbLybKxRdw1agR2AR4x\n 247 \N 189.186.42.241 8aa661e2-6667-4c7d-b3c0-fa236d3a20e9 2019-04-06 18:42:38.519098 4910 117 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.96E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 960.0 189.186.42.241 5830d7a0-0d5f-40e2-b82c-8b1bbbb94e32 2019-04-06 18:47:30.197619 4911 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-05 21:03:58.494106000 Z\n- &1 2019-04-06 02:11:42.312038000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-06 19:49:07.843185313 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938255\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938243\n mask_addr: 4294967295\nsign_in_count:\n- 122\n- 123\n 246 \N 200.68.150.195 d09ff300-8854-43b3-ae48-a2b646f8ff7e 2019-04-06 19:49:07.873174 4912 4 User \N \N 4 User \N update ---\nunique_session_id:\n- n1-4ziz42uzSecovjYeJ\n- FUzBQDq_sLu7pjmnxPzx\n 247 \N 200.68.150.195 d09ff300-8854-43b3-ae48-a2b646f8ff7e 2019-04-06 19:49:07.896099 5328 411 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.37.196 0f7f15c5-6f3f-43a7-a2da-b2405873dbcf 2019-04-16 00:56:39.699309 4913 342 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 117\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-04-06\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-162\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 b6bec550-7e8c-4042-8549-afb08eb8e08f 2019-04-06 20:37:14.895623 4914 477 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.42.241 b6bec550-7e8c-4042-8549-afb08eb8e08f 2019-04-06 20:37:14.925051 4915 342 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 57395b0c-aa77-4013-aaef-6cc80c9ee992 2019-04-06 20:37:48.278622 4916 426 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 117\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 342\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-162\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-162 189.186.42.241 57395b0c-aa77-4013-aaef-6cc80c9ee992 2019-04-06 20:37:48.305394 4917 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-04-04 17:10:48.028306000 Z\n- &1 2019-04-05 18:08:54.371546000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-06 21:14:17.328898886 Z\nsign_in_count:\n- 74\n- 75\n 153 \N 189.186.42.241 7d0ba560-7299-48ce-8f95-0ddda7bb34fc 2019-04-06 21:14:17.348052 4918 2 User \N \N 2 User \N update ---\nunique_session_id:\n- sxb2jSXaYW5kk71Wkviw\n- 3KNn12RjaUrj1JJxVX5F\n 154 \N 189.186.42.241 7d0ba560-7299-48ce-8f95-0ddda7bb34fc 2019-04-06 21:14:17.3818 4919 118 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.573E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 573.0 189.186.42.241 ed43f0e2-a275-42c8-9be9-dc42bad92f83 2019-04-06 21:14:38.850849 4920 343 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 118\namount: !ruby/object:BigDecimal 18:0.130159E4\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2019-04-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-179\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 7cfc1959-09dc-4f0e-84a4-d5777cb3dcf2 2019-04-06 21:16:48.911451 4921 526 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.42.241 7cfc1959-09dc-4f0e-84a4-d5777cb3dcf2 2019-04-06 21:16:48.940507 4922 156 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.42.241 7cfc1959-09dc-4f0e-84a4-d5777cb3dcf2 2019-04-06 21:16:48.974151 4923 343 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 306dc060-d55e-4a35-8353-ed29c0a39ec2 2019-04-06 21:17:57.002764 4924 427 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 118\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1398E4\nmove_type: '1'\nsale_id: 343\ncardnumber: 9911\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-179\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-179 189.186.42.241 306dc060-d55e-4a35-8353-ed29c0a39ec2 2019-04-06 21:17:57.035216 4925 344 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 118\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-04-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-180\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 fbc2ba67-8e2b-4a6b-8e4c-49b8a285978d 2019-04-06 22:26:41.946947 4926 526 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.42.241 fbc2ba67-8e2b-4a6b-8e4c-49b8a285978d 2019-04-06 22:26:41.998846 4927 344 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-180 cancelada. 189.186.42.241 b21790aa-c01b-445f-b038-58b1db7c5f2b 2019-04-06 22:28:16.77071 4928 526 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 189.186.42.241 b21790aa-c01b-445f-b038-58b1db7c5f2b 2019-04-06 22:28:16.798539 4929 345 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 118\namount: !ruby/object:BigDecimal 18:0.195748E4\ntax: !ruby/object:BigDecimal 18:0.8952E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2047E4\nstatus: 0\ndate_sale: 2019-04-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-181\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 72a6d47f-a73b-4d79-8c46-9c040d07c908 2019-04-06 22:37:18.085072 4930 138 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 13 \N 189.186.42.241 72a6d47f-a73b-4d79-8c46-9c040d07c908 2019-04-06 22:37:18.117212 4931 526 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.42.241 72a6d47f-a73b-4d79-8c46-9c040d07c908 2019-04-06 22:37:18.146634 4932 345 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-181 cancelada. 189.186.42.241 c079128d-56c5-4201-ba59-57449bf60643 2019-04-06 22:38:37.68192 4933 526 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 189.186.42.241 c079128d-56c5-4201-ba59-57449bf60643 2019-04-06 22:38:37.711064 4934 138 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 14 \N 189.186.42.241 c079128d-56c5-4201-ba59-57449bf60643 2019-04-06 22:38:37.735766 4935 346 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 118\namount: !ruby/object:BigDecimal 18:0.275648E4\ntax: !ruby/object:BigDecimal 18:0.8952E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2846E4\nstatus: 0\ndate_sale: 2019-04-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-182\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 6bdec373-8252-4f4f-97a4-34119502eabc 2019-04-06 22:40:13.944878 4936 524 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.42.241 6bdec373-8252-4f4f-97a4-34119502eabc 2019-04-06 22:40:13.974191 4937 526 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 189.186.42.241 6bdec373-8252-4f4f-97a4-34119502eabc 2019-04-06 22:40:13.997331 4938 138 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 15 \N 189.186.42.241 6bdec373-8252-4f4f-97a4-34119502eabc 2019-04-06 22:40:14.0195 4940 428 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 118\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.2846E4\nmove_type: '1'\nsale_id: 346\ncardnumber: 1841\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-182\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-182 189.186.42.241 e6e4fc9a-9d77-470f-8de9-6c8ae4d65e35 2019-04-06 22:41:19.664745 4941 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-05 17:04:27.534866000 Z\n- &1 2019-04-06 18:42:38.496161000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-06 22:51:49.669803094 Z\nsign_in_count:\n- 123\n- 124\n 248 \N 189.186.42.241 6643a2f1-70a9-47b7-9222-cee19668ce3a 2019-04-06 22:51:49.677644 4942 3 User \N \N 3 User \N update ---\nunique_session_id:\n- yVbLybKxRdw1agR2AR4x\n- vovU3rdryX38Uu5smtE7\n 249 \N 189.186.42.241 6643a2f1-70a9-47b7-9222-cee19668ce3a 2019-04-06 22:51:49.69079 4943 547 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.42.241 9da8c6a4-a5b2-4d99-89f8-20e57be02431 2019-04-06 22:52:53.307696 4944 548 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.42.241 196d3088-3c2c-4315-b323-c1de0206ba51 2019-04-06 22:53:06.814238 4945 29 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-04-06\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.42.241 7dd1fad6-2f58-41a0-bd17-de380fb556e3 2019-04-06 22:53:18.758864 4946 29 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-04-06\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.42.241 e4aaf35f-96d6-4f97-9f4c-97349a245b5b 2019-04-06 22:53:42.063128 4947 138 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 16 \N 189.186.42.241 e4aaf35f-96d6-4f97-9f4c-97349a245b5b 2019-04-06 22:53:42.0896 4948 526 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 13 \N 189.186.42.241 e4aaf35f-96d6-4f97-9f4c-97349a245b5b 2019-04-06 22:53:42.121049 4949 347 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 118\namount: !ruby/object:BigDecimal 18:0.55948E3\ntax: !ruby/object:BigDecimal 18:0.8952E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-04-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-183\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 3ccbbd9e-5940-49d4-ae8a-40387030739b 2019-04-06 23:38:39.247988 4950 138 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 17 \N 189.186.42.241 3ccbbd9e-5940-49d4-ae8a-40387030739b 2019-04-06 23:38:39.278952 4951 347 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 540cd7fa-4f00-4229-8fd8-02588f1c315b 2019-04-06 23:38:44.947277 4952 429 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 118\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 347\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-183\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.649E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-183 189.186.42.241 540cd7fa-4f00-4229-8fd8-02588f1c315b 2019-04-06 23:38:44.978299 4953 36 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 118\nquantity: !ruby/object:BigDecimal 18:0.738E3\nstatus: 1\nobservations: sueldo Chio $673 comida $50 sres. basura $15\nexpense_date: 2019-04-06\nexpense_code: PV1-E-32\n 1 Egreso por 738.0 registrado 189.186.42.241 aa5004e0-4992-49cc-b5fe-def56cc52a22 2019-04-06 23:52:22.143195 4954 430 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 118\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.738E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 36\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.42.241 aa5004e0-4992-49cc-b5fe-def56cc52a22 2019-04-06 23:52:22.166887 4955 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-05 01:12:44.518965000 Z\n- &1 2019-04-06 18:34:57.711070000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-07 00:58:06.561877009 Z\nsign_in_count:\n- 69\n- 70\n 140 \N 189.186.42.241 56c00e9e-6a2e-4736-a4d1-16314bc97247 2019-04-07 00:58:06.569824 4956 12 User \N \N 12 User \N update ---\nunique_session_id:\n- UxJQMJPnC5pMv33Bpsee\n- aexMjQrhDaowCzDu_fMd\n 141 \N 189.186.42.241 56c00e9e-6a2e-4736-a4d1-16314bc97247 2019-04-07 00:58:06.589669 4957 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-06 18:42:38.496161000 Z\n- &1 2019-04-06 22:51:49.669803000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-07 01:49:17.488668923 Z\nsign_in_count:\n- 124\n- 125\n 250 \N 189.186.42.241 8009222f-89a6-4ec6-8161-d58b72087b6a 2019-04-07 01:49:17.495931 4958 3 User \N \N 3 User \N update ---\nunique_session_id:\n- vovU3rdryX38Uu5smtE7\n- EudJ3iuxyMtf96YF-z3F\n 251 \N 189.186.42.241 8009222f-89a6-4ec6-8161-d58b72087b6a 2019-04-07 01:49:17.514318 4959 115 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 117\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.799E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.759E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1759E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.42.241 ddee9924-d70b-4758-a822-169ec27b3e8a 2019-04-07 01:54:06.315521 4960 117 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 ddee9924-d70b-4758-a822-169ec27b3e8a 2019-04-07 01:54:06.339094 4961 116 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 118\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4893E4\namount_out: !ruby/object:BigDecimal 18:0.738E3\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.484E3\nphysical_cash: !ruby/object:BigDecimal 18:0.484E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 c90631e2-4393-44a5-860d-ddc07f820f64 2019-04-07 02:03:18.279841 4962 118 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 c90631e2-4393-44a5-860d-ddc07f820f64 2019-04-07 02:03:18.296298 4963 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-06 02:11:42.312038000 Z\n- &1 2019-04-06 19:49:07.843185000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-07 03:34:28.296876003 Z\nsign_in_count:\n- 123\n- 124\n 248 \N 200.68.150.195 bbd06b74-16cb-40b1-acc3-b3d1ea67a98b 2019-04-07 03:34:28.304689 4964 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FUzBQDq_sLu7pjmnxPzx\n- FTM2Xhp2wC9T_FZ8A3Jg\n 249 \N 200.68.150.195 bbd06b74-16cb-40b1-acc3-b3d1ea67a98b 2019-04-07 03:34:28.321805 5329 384 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 ef05fb42-6e2d-47ec-9dab-1b1f2fdf2b53 2019-04-16 00:57:02.125212 4967 119 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.759E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 759.0 189.186.42.241 935df756-141b-4a4d-9917-ea1cb01ccd0b 2019-04-07 16:05:43.146787 4968 348 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 119\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-04-07\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-163\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 3fe8b8e4-11b0-4960-bd06-ff8e2d86156c 2019-04-07 16:59:04.362075 4969 559 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.42.241 3fe8b8e4-11b0-4960-bd06-ff8e2d86156c 2019-04-07 16:59:04.392003 4970 348 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 df7fa7cf-8f8e-4c7b-b388-971abeebb1b2 2019-04-07 16:59:10.049305 4971 431 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 119\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 348\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-163\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-163 189.186.42.241 df7fa7cf-8f8e-4c7b-b388-971abeebb1b2 2019-04-07 16:59:10.072934 4972 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-06 22:51:49.669803000 Z\n- &1 2019-04-07 01:49:17.488668000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-07 17:09:31.394292923 Z\nsign_in_count:\n- 125\n- 126\n 252 \N 189.186.42.241 8abb1d32-ac65-48ea-94e2-e68bc3b6bc22 2019-04-07 17:09:31.400091 4973 3 User \N \N 3 User \N update ---\nunique_session_id:\n- EudJ3iuxyMtf96YF-z3F\n- FCrrxsUmX2c65HedB1je\n 253 \N 189.186.42.241 8abb1d32-ac65-48ea-94e2-e68bc3b6bc22 2019-04-07 17:09:31.413306 4974 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-07 01:49:17.488668000 Z\n- &1 2019-04-07 17:09:31.394292000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-07 18:04:51.455449739 Z\nsign_in_count:\n- 126\n- 127\n 254 \N 189.186.42.241 4ba21166-3556-4782-adcd-2e028cb7d1a2 2019-04-07 18:04:51.461126 4975 3 User \N \N 3 User \N update ---\nunique_session_id:\n- FCrrxsUmX2c65HedB1je\n- XVBpEEpZTWhnYD7agf2Q\n 255 \N 189.186.42.241 4ba21166-3556-4782-adcd-2e028cb7d1a2 2019-04-07 18:04:51.473916 4976 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-06 18:34:57.711070000 Z\n- &1 2019-04-07 00:58:06.561877000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-07 19:07:50.987477378 Z\nsign_in_count:\n- 70\n- 71\n 142 \N 189.186.42.241 c9fcfe90-8b7a-4f6d-b787-99641fa1cb11 2019-04-07 19:07:51.004465 4977 12 User \N \N 12 User \N update ---\nunique_session_id:\n- aexMjQrhDaowCzDu_fMd\n- FRC1rxZzeVy7svAVhGUf\n 143 \N 189.186.42.241 c9fcfe90-8b7a-4f6d-b787-99641fa1cb11 2019-04-07 19:07:51.01748 4978 120 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.484E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 484.0 189.186.42.241 ee16d3b9-96b5-4c03-a34e-9505c3809516 2019-04-07 19:08:19.543742 4979 349 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 120\namount: !ruby/object:BigDecimal 18:0.41293E3\ntax: !ruby/object:BigDecimal 18:0.6607E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-04-07\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-184\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.241 931c11f8-b18a-461f-8b92-af7983dd065b 2019-04-07 19:08:38.415012 4980 149 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 189.186.42.241 931c11f8-b18a-461f-8b92-af7983dd065b 2019-04-07 19:08:38.442859 4981 349 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.241 01667620-17e6-40ae-9bb3-66b8940e68c3 2019-04-07 19:08:43.564444 4982 432 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 120\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.479E3\nmove_type: '1'\nsale_id: 349\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-184\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-184 189.186.42.241 01667620-17e6-40ae-9bb3-66b8940e68c3 2019-04-07 19:08:43.588938 4983 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-07 17:09:31.394292000 Z\n- &1 2019-04-07 18:04:51.455449000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-07 19:10:12.219307686 Z\nsign_in_count:\n- 127\n- 128\n 256 \N 189.186.42.241 968de106-e0b3-4f1d-829d-2da8f1490261 2019-04-07 19:10:12.226869 4984 3 User \N \N 3 User \N update ---\nunique_session_id:\n- XVBpEEpZTWhnYD7agf2Q\n- jpvejL4fvyiqc6t3NySe\n 257 \N 189.186.42.241 968de106-e0b3-4f1d-829d-2da8f1490261 2019-04-07 19:10:12.240816 4985 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-07 00:58:06.561877000 Z\n- &1 2019-04-07 19:07:50.987477000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-07 19:10:33.268245606 Z\nsign_in_count:\n- 71\n- 72\n 144 \N 189.186.42.241 f8da10b3-cc8d-47e7-ac29-86fc77989fba 2019-04-07 19:10:33.275462 4986 12 User \N \N 12 User \N update ---\nunique_session_id:\n- FRC1rxZzeVy7svAVhGUf\n- fD8cCho17HP4CCw5S9s9\n 145 \N 189.186.42.241 f8da10b3-cc8d-47e7-ac29-86fc77989fba 2019-04-07 19:10:33.289362 4987 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-07 18:04:51.455449000 Z\n- &1 2019-04-07 19:10:12.219307000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-07 20:06:12.058338198 Z\nsign_in_count:\n- 128\n- 129\n 258 \N 189.186.42.241 f6d25ae2-c4e6-4ecf-8649-972c21150177 2019-04-07 20:06:12.066132 4988 3 User \N \N 3 User \N update ---\nunique_session_id:\n- jpvejL4fvyiqc6t3NySe\n- GZ6yzXMspi4AoRRa4jZJ\n 259 \N 189.186.42.241 f6d25ae2-c4e6-4ecf-8649-972c21150177 2019-04-07 20:06:12.082998 4989 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-07 19:07:50.987477000 Z\n- &1 2019-04-07 19:10:33.268245000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-07 20:06:39.746814237 Z\nsign_in_count:\n- 72\n- 73\n 146 \N 189.186.42.241 155adf75-f378-4172-a257-d293c19b54ed 2019-04-07 20:06:39.753505 4990 12 User \N \N 12 User \N update ---\nunique_session_id:\n- fD8cCho17HP4CCw5S9s9\n- Ukc7aGkcnGLBWs1SyNxx\n 147 \N 189.186.42.241 155adf75-f378-4172-a257-d293c19b54ed 2019-04-07 20:06:39.767969 4991 117 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 119\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.599E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.6E3\ncash_fund: !ruby/object:BigDecimal 18:0.758E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1358E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.42.241 2077f78f-5193-4536-8945-c8797c62040a 2019-04-07 20:54:13.262047 4992 119 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 2077f78f-5193-4536-8945-c8797c62040a 2019-04-07 20:54:13.274863 4993 118 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 120\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.479E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.463E3\nphysical_cash: !ruby/object:BigDecimal 18:0.963E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.241 0299805d-c050-4303-90e3-3d51370e93ee 2019-04-07 20:54:35.597053 4994 120 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.241 0299805d-c050-4303-90e3-3d51370e93ee 2019-04-07 20:54:35.609044 4995 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-04-05 18:08:54.371546000 Z\n- &1 2019-04-06 21:14:17.328898000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-08 15:53:36.375256164 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\nsign_in_count:\n- 75\n- 76\n 155 \N 189.186.40.236 d618b9dd-cc1b-4101-af32-692a85c37e5f 2019-04-08 15:53:36.394578 4996 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 3KNn12RjaUrj1JJxVX5F\n- br7M2ATCzh9kHUojdz6v\n 156 \N 189.186.40.236 d618b9dd-cc1b-4101-af32-692a85c37e5f 2019-04-08 15:53:36.41461 4997 121 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.463E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 463.0 189.186.40.236 09d64c0e-c3c4-4202-97d9-7b4194aadb21 2019-04-08 15:53:59.16845 4998 350 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 121\namount: !ruby/object:BigDecimal 18:0.5681E3\ntax: !ruby/object:BigDecimal 18:0.909E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.659E3\nstatus: 0\ndate_sale: 2019-04-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-185\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.236 4a152a68-4126-4f57-a9b9-b5db4f0a50a3 2019-04-08 15:55:09.777898 4999 107 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 189.186.40.236 4a152a68-4126-4f57-a9b9-b5db4f0a50a3 2019-04-08 15:55:09.810823 5000 350 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.236 ad0d620f-8a69-43a1-ae63-2b00cf66d87b 2019-04-08 15:55:20.865222 5001 433 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 121\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.659E3\nmove_type: '1'\nsale_id: 350\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-185\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.659E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-185 189.186.40.236 ad0d620f-8a69-43a1-ae63-2b00cf66d87b 2019-04-08 15:55:20.903982 5002 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-06 19:49:07.843185000 Z\n- &1 2019-04-07 03:34:28.296876000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-08 20:39:40.994943153 Z\nsign_in_count:\n- 124\n- 125\n 250 \N 200.68.150.195 4980821e-80ce-4498-a0eb-d26751a3350e 2019-04-08 20:39:41.027365 5003 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FTM2Xhp2wC9T_FZ8A3Jg\n- hhppwjouL3dt6EPnFzbd\n 251 \N 200.68.150.195 4980821e-80ce-4498-a0eb-d26751a3350e 2019-04-08 20:39:41.054724 5004 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-07 19:10:12.219307000 Z\n- &1 2019-04-07 20:06:12.058338000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-08 22:39:06.719916223 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\nsign_in_count:\n- 129\n- 130\n 260 \N 189.186.40.236 44b52357-ee1f-48ba-a262-91e91e6d5025 2019-04-08 22:39:06.726289 5005 3 User \N \N 3 User \N update ---\nunique_session_id:\n- GZ6yzXMspi4AoRRa4jZJ\n- YaD4aV7ydxRqVixQ3Puw\n 261 \N 189.186.40.236 44b52357-ee1f-48ba-a262-91e91e6d5025 2019-04-08 22:39:06.740354 5006 531 Product \N \N 3 User \N create ---\nsku: BLU-531\nname: BLX-0024\ndescription: BLUSA DE FLORES A.PEACH YT5876\nprice_base: !ruby/object:BigDecimal 18:0.2895E3\nprice_sale: !ruby/object:BigDecimal 18:0.579E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-531 fue creado. 189.186.40.236 d39ac8fd-411b-4084-8da4-5fbd73d81690 2019-04-08 22:46:56.760716 5007 531 Product \N \N 3 User \N update ---\nbarcode:\n- ''\n- '0000531'\n 2 \N 189.186.40.236 d39ac8fd-411b-4084-8da4-5fbd73d81690 2019-04-08 22:46:56.795311 5008 572 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 531\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.236 d39ac8fd-411b-4084-8da4-5fbd73d81690 2019-04-08 22:46:56.826169 5009 532 Product \N \N 3 User \N create ---\nsku: BLU-532\nname: BLX-0022\ndescription: BLUSA NEGRA A.PEACH YT5844\nprice_base: !ruby/object:BigDecimal 18:0.2995E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-532 fue creado. 189.186.40.236 a1213d89-654b-4d41-a8de-671eef57570e 2019-04-08 22:48:24.084465 5010 532 Product \N \N 3 User \N update ---\nbarcode:\n- ''\n- '0000532'\n 2 \N 189.186.40.236 a1213d89-654b-4d41-a8de-671eef57570e 2019-04-08 22:48:24.111917 5011 573 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 532\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.236 a1213d89-654b-4d41-a8de-671eef57570e 2019-04-08 22:48:24.140318 5012 79 Purchase \N \N 3 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-34\namount: !ruby/object:BigDecimal 18:0.3534E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3534E4\nobservations: ''\npurchase_date: 2019-04-08\nuser_id: '3'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-34 por $ 3534.0 MXN creada. 189.186.40.236 7b3411ea-055a-497a-9718-6d414b8887b4 2019-04-08 22:48:35.914058 5013 572 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.40.236 7b3411ea-055a-497a-9718-6d414b8887b4 2019-04-08 22:48:35.942676 5014 573 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.40.236 7b3411ea-055a-497a-9718-6d414b8887b4 2019-04-08 22:48:35.977377 5585 507 CashRegistersMove \N \N 12 User \N update ---\nopen_cash_register_id:\n- 47\n- 142\n 2 movimiento de efectivo por venta con folio PV1-V-92 189.186.37.196 53f2b9d5-d6c8-4a0a-a9b3-8e7d2d1cf54c 2019-04-23 00:21:50.343379 5015 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-03-30 19:14:33.218921000 Z\n- &1 2019-03-31 01:25:33.091055000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-08 22:52:13.320243230 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\nsign_in_count:\n- 44\n- 45\n 90 \N 189.186.40.236 1efa05cd-30d0-4d13-b262-8e71b525a67a 2019-04-08 22:52:13.326697 5016 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 3AwS4TyZHLNyxZqqWxc1\n- QGdYsC6yz7p2wVshSvyz\n 91 \N 189.186.40.236 1efa05cd-30d0-4d13-b262-8e71b525a67a 2019-04-08 22:52:13.340279 5017 122 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.758E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 758.0 189.186.40.236 0dc090f6-b6aa-4431-85a8-da1995fa7272 2019-04-08 22:54:24.268398 5018 80 Purchase \N \N 1 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-44\namount: !ruby/object:BigDecimal 18:0.19656E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.19656E4\nobservations: ''\npurchase_date: 2019-04-08\nuser_id: '1'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-44 por $ 1965.6 MXN creada. 189.186.40.236 cb4b80d8-139c-4df1-8036-40f284d8120b 2019-04-08 22:59:10.440003 5019 155 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.8E1\n 5 \N 189.186.40.236 cb4b80d8-139c-4df1-8036-40f284d8120b 2019-04-08 22:59:10.462266 5020 37 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 121\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida Chio\nexpense_date: 2019-04-08\nexpense_code: PV1-E-33\n 1 Egreso por 50.0 registrado 189.186.40.236 14af2dc4-1450-4b6b-836d-c5b919f2577a 2019-04-09 00:38:06.067819 5021 434 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 121\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 37\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.40.236 14af2dc4-1450-4b6b-836d-c5b919f2577a 2019-04-09 00:38:06.103096 5022 119 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 122\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.758E3\nphysical_cash: !ruby/object:BigDecimal 18:0.758E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.40.236 cd9de697-ce0f-4325-beec-73cdc34d063e 2019-04-09 01:46:13.634251 5023 122 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.236 cd9de697-ce0f-4325-beec-73cdc34d063e 2019-04-09 01:46:13.647392 5024 120 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 121\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.659E3\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.572E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1072E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.40.236 8203700f-f3c7-46b8-a251-48c564a76b83 2019-04-09 01:58:50.62569 5025 121 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.236 8203700f-f3c7-46b8-a251-48c564a76b83 2019-04-09 01:58:50.644104 5026 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-04-05 17:14:32.466358000 Z\n- &1 2019-04-07 16:03:04.983145000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-09 16:07:26.446530564 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\nsign_in_count:\n- 31\n- 32\n 64 \N 189.186.40.236 1a3ba68d-7bd9-408c-bc16-e720a8bd852a 2019-04-09 16:07:26.478586 5027 11 User \N \N 11 User \N update ---\nunique_session_id:\n- r16KxRpstkHjXzjA1gme\n- popcpBwvkRpYRScJyYXK\n 65 \N 189.186.40.236 1a3ba68d-7bd9-408c-bc16-e720a8bd852a 2019-04-09 16:07:26.50301 5028 123 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.758E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 758.0 189.186.40.236 18463d67-4aea-4e02-a6dc-03effc113b2b 2019-04-09 16:07:29.838949 5029 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-04-06 21:14:17.328898000 Z\n- &1 2019-04-08 15:53:36.375256000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-09 16:28:53.475852493 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\nsign_in_count:\n- 76\n- 77\n 157 \N 189.186.40.236 bcce2472-cfb4-4116-8f61-9bbf9bc2bf22 2019-04-09 16:28:53.48226 5030 2 User \N \N 2 User \N update ---\nunique_session_id:\n- br7M2ATCzh9kHUojdz6v\n- 5QLoCzrMmbvR5ng3u-ks\n 158 \N 189.186.40.236 bcce2472-cfb4-4116-8f61-9bbf9bc2bf22 2019-04-09 16:28:53.502528 5031 124 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.572E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 572.0 189.186.40.236 a7dc405d-cd75-47fd-93b4-41511bf38ee4 2019-04-09 16:29:32.320811 5032 351 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 124\namount: !ruby/object:BigDecimal 18:0.103362E4\ntax: !ruby/object:BigDecimal 18:0.16538E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-04-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-186\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.236 8e1a3091-2f14-404b-bee8-efb5e64ca2da 2019-04-09 18:27:20.141543 5033 256 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 1 \N 189.186.40.236 8e1a3091-2f14-404b-bee8-efb5e64ca2da 2019-04-09 18:27:20.174663 5034 351 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.236 084dc59d-de5b-4c90-b8f4-82d3f50a3215 2019-04-09 18:28:25.470062 5035 435 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 124\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 351\ncardnumber: 4791\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-186\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-186 189.186.40.236 084dc59d-de5b-4c90-b8f4-82d3f50a3215 2019-04-09 18:28:25.503755 5036 436 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 124\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.199E3\nmove_type: '1'\nsale_id: 351\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-186\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.199E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-186 189.186.40.236 14bd1bf5-746b-4ea3-8a91-59dde2c649ec 2019-04-09 18:28:40.497924 5037 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-07 03:34:28.296876000 Z\n- &1 2019-04-08 20:39:40.994943000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-09 20:55:02.541016311 Z\nsign_in_count:\n- 125\n- 126\n 252 \N 200.68.150.195 0cbf9e8b-017f-4e9d-a116-8c9e00d15ab9 2019-04-09 20:55:02.547737 5038 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hhppwjouL3dt6EPnFzbd\n- UzPbVyF1rXq7dR6kjksS\n 253 \N 200.68.150.195 0cbf9e8b-017f-4e9d-a116-8c9e00d15ab9 2019-04-09 20:55:02.562931 5039 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-08 20:39:40.994943000 Z\n- &1 2019-04-09 20:55:02.541016000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-09 22:42:29.315751299 Z\nsign_in_count:\n- 126\n- 127\n 254 \N 200.68.150.195 0eda5540-501c-4a3a-9bfa-94e83ac8be5a 2019-04-09 22:42:29.321583 5040 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UzPbVyF1rXq7dR6kjksS\n- 2iHZZy7z7zVkYQKRzeZF\n 255 \N 200.68.150.195 0eda5540-501c-4a3a-9bfa-94e83ac8be5a 2019-04-09 22:42:29.336047 5041 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-07 20:06:12.058338000 Z\n- &1 2019-04-08 22:39:06.719916000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-09 23:09:52.208338202 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\nsign_in_count:\n- 130\n- 131\n 262 \N 189.186.40.236 4379bc9d-302d-44b0-9294-ce0a9975a92d 2019-04-09 23:09:52.217547 5042 3 User \N \N 3 User \N update ---\nunique_session_id:\n- YaD4aV7ydxRqVixQ3Puw\n- qp7W2xNUPU97USLBFyhT\n 263 \N 189.186.40.236 4379bc9d-302d-44b0-9294-ce0a9975a92d 2019-04-09 23:09:52.23203 5043 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-07 19:10:33.268245000 Z\n- &1 2019-04-07 20:06:39.746814000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-09 23:10:15.166254086 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\nsign_in_count:\n- 73\n- 74\n 148 \N 189.186.40.236 731da813-c9c6-4458-ba65-3debebf2b886 2019-04-09 23:10:15.172848 5044 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Ukc7aGkcnGLBWs1SyNxx\n- i9Q5qjUCDxz9FKmwfoSk\n 149 \N 189.186.40.236 731da813-c9c6-4458-ba65-3debebf2b886 2019-04-09 23:10:15.186371 5045 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-08 22:39:06.719916000 Z\n- &1 2019-04-09 23:09:52.208338000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-09 23:12:39.009263629 Z\nsign_in_count:\n- 131\n- 132\n 264 \N 189.186.40.236 9916bf85-9c29-4554-8828-a46bd50b34f7 2019-04-09 23:12:39.017605 5046 3 User \N \N 3 User \N update ---\nunique_session_id:\n- qp7W2xNUPU97USLBFyhT\n- Nps1uHohN1K7H6zjYxhb\n 265 \N 189.186.40.236 9916bf85-9c29-4554-8828-a46bd50b34f7 2019-04-09 23:12:39.035883 5047 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-07 20:06:39.746814000 Z\n- &1 2019-04-09 23:10:15.166254000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-09 23:14:14.114247702 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\nsign_in_count:\n- 74\n- 75\n 150 \N 189.186.40.236 8b885513-838e-4312-9ff1-f9d5a28b4fd4 2019-04-09 23:14:14.121273 5048 12 User \N \N 12 User \N update ---\nunique_session_id:\n- i9Q5qjUCDxz9FKmwfoSk\n- JoyGzxCm5rLDSZGrxAKr\n 151 \N 189.186.40.236 8b885513-838e-4312-9ff1-f9d5a28b4fd4 2019-04-09 23:14:14.139115 5049 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-03-26 02:27:11.169176000 Z\n- &1 2019-04-05 01:20:57.465540000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-09 23:50:46.545364688 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\nsign_in_count:\n- 38\n- 39\n 78 \N 189.186.40.236 10802963-1f9c-4cbb-b838-244be8daca7a 2019-04-09 23:50:46.554834 5050 10 User \N \N 10 User \N update ---\nunique_session_id:\n- n__x4w9xJFopmEd524rx\n- WPbsCcsTzUuaXg6sQ-H6\n 79 \N 189.186.40.236 10802963-1f9c-4cbb-b838-244be8daca7a 2019-04-09 23:50:46.577062 5051 121 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 123\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.758E3\nphysical_cash: !ruby/object:BigDecimal 18:0.758E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.40.236 46feb4f5-7769-45ca-b796-5f03aaf2ad67 2019-04-10 01:54:30.185235 5052 123 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.236 46feb4f5-7769-45ca-b796-5f03aaf2ad67 2019-04-10 01:54:30.20748 5053 122 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 124\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.1199E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.2E3\ncash_fund: !ruby/object:BigDecimal 18:0.572E3\nphysical_cash: !ruby/object:BigDecimal 18:0.772E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.40.236 8a7d0d89-9c1e-4ffd-9c83-6a9cacb1dea0 2019-04-10 01:54:52.251393 5054 124 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.236 8a7d0d89-9c1e-4ffd-9c83-6a9cacb1dea0 2019-04-10 01:54:52.267085 5055 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-04-08 15:53:36.375256000 Z\n- &1 2019-04-09 16:28:53.475852000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-10 15:57:44.526392499 Z\nsign_in_count:\n- 77\n- 78\n 159 \N 189.186.40.236 fbabe607-bbb8-44b3-aedb-2eae86c8bbed 2019-04-10 15:57:44.558717 5056 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 5QLoCzrMmbvR5ng3u-ks\n- QSAd74xWDy6nzyVK54LM\n 160 \N 189.186.40.236 fbabe607-bbb8-44b3-aedb-2eae86c8bbed 2019-04-10 15:57:44.581949 5057 125 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.572E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 572.0 189.186.40.236 3d18318c-e308-43b7-bba4-ef6a89992351 2019-04-10 15:58:10.111835 5058 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-04-07 16:03:04.983145000 Z\n- &1 2019-04-09 16:07:26.446530000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-10 16:05:01.429473644 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\nsign_in_count:\n- 32\n- 33\n 66 \N 189.186.40.236 93f063ed-5b03-4749-84ac-5060a80faaed 2019-04-10 16:05:01.43883 5059 11 User \N \N 11 User \N update ---\nunique_session_id:\n- popcpBwvkRpYRScJyYXK\n- qJgmgev51suDRwJb4yMq\n 67 \N 189.186.40.236 93f063ed-5b03-4749-84ac-5060a80faaed 2019-04-10 16:05:01.459515 5060 126 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.758E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 758.0 189.186.40.236 c2274029-4d63-4ca7-968e-972953de8487 2019-04-10 16:05:08.707712 5104 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-04-09 16:28:53.475852000 Z\n- &1 2019-04-10 15:57:44.526392000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-11 16:07:59.316980041 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092317\n mask_addr: 4294967295\nsign_in_count:\n- 78\n- 79\n 161 \N 189.186.34.93 de90fafc-072a-465d-bcd3-ede2f2a5323c 2019-04-11 16:07:59.345702 5061 437 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 125\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 321\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-171 189.186.40.236 076043f7-8f4b-48b8-a96e-7ebd66fe725a 2019-04-10 16:05:13.727485 5062 321 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.40.236 af24a05f-c74f-419a-b35f-9919bc32e68e 2019-04-10 16:05:16.293927 5063 352 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 125\namount: !ruby/object:BigDecimal 18:0.90431E3\ntax: !ruby/object:BigDecimal 18:0.14469E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1049E4\nstatus: 0\ndate_sale: 2019-04-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-187\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.236 1f82ff8e-34f2-489f-a108-113bf7f4194f 2019-04-10 16:11:15.712879 5064 183 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.40.236 1f82ff8e-34f2-489f-a108-113bf7f4194f 2019-04-10 16:11:15.767127 5065 352 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.236 ef56ff3c-f497-4bee-8ecc-c4808d7a931b 2019-04-10 16:12:05.361158 5066 438 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 125\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1049E4\nmove_type: '1'\nsale_id: 352\ncardnumber: 6304\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-187\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-187 189.186.40.236 ef56ff3c-f497-4bee-8ecc-c4808d7a931b 2019-04-10 16:12:05.386956 5067 353 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 126\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-04-10\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-164\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.236 5a92e514-f6e8-44a9-b4d4-84ab355f0d6a 2019-04-10 16:13:43.926419 5068 564 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.40.236 5a92e514-f6e8-44a9-b4d4-84ab355f0d6a 2019-04-10 16:13:43.961715 5069 353 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.236 99f93f87-0c9d-4d16-990a-dd05ea38ea37 2019-04-10 16:13:48.96011 5070 439 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 126\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 353\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-164\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-164 189.186.40.236 99f93f87-0c9d-4d16-990a-dd05ea38ea37 2019-04-10 16:13:48.996103 5071 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-03-31 01:25:33.091055000 Z\n- &1 2019-04-08 22:52:13.320243000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-10 16:25:15.044883789 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\nsign_in_count:\n- 45\n- 46\n 92 \N 189.186.40.236 f3981e43-559c-4c75-9c51-58bd59b2597d 2019-04-10 16:25:15.052969 5072 1 User \N \N 1 User \N update ---\nunique_session_id:\n- QGdYsC6yz7p2wVshSvyz\n- zsig6yrcqsE24y5g9B71\n 93 \N 189.186.40.236 f3981e43-559c-4c75-9c51-58bd59b2597d 2019-04-10 16:25:15.070388 5073 354 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 126\namount: !ruby/object:BigDecimal 18:0.49914E3\ntax: !ruby/object:BigDecimal 18:0.7986E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.579E3\nstatus: 0\ndate_sale: 2019-04-10\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-165\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.236 0042810f-dce6-469a-ae0a-7a7096904ae9 2019-04-10 19:06:37.806761 5074 481 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 189.186.40.236 0042810f-dce6-469a-ae0a-7a7096904ae9 2019-04-10 19:06:37.870121 5075 354 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.236 36c4b247-3569-4f96-b526-32568cca73d1 2019-04-10 19:08:09.381537 5076 440 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 126\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.579E3\nmove_type: '1'\nsale_id: 354\ncardnumber: 9921\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-165\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-165 189.186.40.236 36c4b247-3569-4f96-b526-32568cca73d1 2019-04-10 19:08:09.410691 5077 441 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.147E3\nmove_type: '1'\nsale_id: 178\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.147E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.40.236 cfd8c867-c41d-46a0-9587-516ddb09d594 2019-04-10 19:52:22.192725 5078 441 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 49\n- 125\n 2 movimiento de efectivo por venta con folio PV1-V-102 189.186.40.236 cfd8c867-c41d-46a0-9587-516ddb09d594 2019-04-10 19:52:22.229199 5079 355 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 126\namount: !ruby/object:BigDecimal 18:0.160331E4\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1668E4\nstatus: 0\ndate_sale: 2019-04-10\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-166\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.236 ae71567c-0e7e-460f-b527-a91b6ecb3e38 2019-04-10 22:51:29.422924 5080 322 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.40.236 ae71567c-0e7e-460f-b527-a91b6ecb3e38 2019-04-10 22:51:29.455912 5081 469 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.40.236 ae71567c-0e7e-460f-b527-a91b6ecb3e38 2019-04-10 22:51:29.493393 5082 355 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.236 7ce3560c-ecd2-4175-94a3-94078d88dfff 2019-04-10 22:52:02.526333 5105 2 User \N \N 2 User \N update ---\nunique_session_id:\n- QSAd74xWDy6nzyVK54LM\n- yEL3y7Bykn3HydZ88kx4\n 162 \N 189.186.34.93 de90fafc-072a-465d-bcd3-ede2f2a5323c 2019-04-11 16:07:59.367316 5083 442 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 126\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1668E4\nmove_type: '1'\nsale_id: 355\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-166\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1668E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-166 189.186.40.236 7ce3560c-ecd2-4175-94a3-94078d88dfff 2019-04-10 22:52:02.560798 5084 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-09 20:55:02.541016000 Z\n- &1 2019-04-09 22:42:29.315751000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-10 22:58:31.705687766 Z\nsign_in_count:\n- 127\n- 128\n 256 \N 200.68.150.195 fd386aab-d0ee-400b-9f91-5988fb27a310 2019-04-10 22:58:31.750034 5085 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2iHZZy7z7zVkYQKRzeZF\n- gwLrUfrLn4mYKPtCCyRG\n 257 \N 200.68.150.195 fd386aab-d0ee-400b-9f91-5988fb27a310 2019-04-10 22:58:31.778651 5086 356 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 126\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-04-10\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-167\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.236 c760e7af-a5c6-4ca6-9f6f-6ec3fde3bcd3 2019-04-10 22:59:34.844473 5087 562 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.40.236 c760e7af-a5c6-4ca6-9f6f-6ec3fde3bcd3 2019-04-10 22:59:34.886588 5088 356 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.236 0beb30b8-6d2a-40b6-90c1-8a54221241ad 2019-04-10 22:59:41.365985 5089 443 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 126\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 356\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-167\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-167 189.186.40.236 0beb30b8-6d2a-40b6-90c1-8a54221241ad 2019-04-10 22:59:41.393754 5090 357 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 125\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-04-10\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-188\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.236 7e8fe432-f768-455e-b387-7558a113e945 2019-04-11 00:13:16.767127 5091 541 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.40.236 7e8fe432-f768-455e-b387-7558a113e945 2019-04-11 00:13:16.80469 5092 357 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.236 4a5a6b75-2424-4efb-b2f8-e2a35423d1b6 2019-04-11 00:13:24.451845 5093 444 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 125\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.479E3\nmove_type: '1'\nsale_id: 357\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-188\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-188 189.186.40.236 4a5a6b75-2424-4efb-b2f8-e2a35423d1b6 2019-04-11 00:13:24.481643 5094 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-04-05 01:20:57.465540000 Z\n- &1 2019-04-09 23:50:46.545364000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-11 01:33:55.189138994 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\nsign_in_count:\n- 39\n- 40\n 80 \N 189.186.40.236 281a6ab7-32a3-42d3-9c6e-3e5c2c84ac0e 2019-04-11 01:33:55.216372 5095 10 User \N \N 10 User \N update ---\nunique_session_id:\n- WPbsCcsTzUuaXg6sQ-H6\n- 2qjGCpYJ8bELG4Mxtyi5\n 81 \N 189.186.40.236 281a6ab7-32a3-42d3-9c6e-3e5c2c84ac0e 2019-04-11 01:33:55.24674 5096 358 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 126\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-04-10\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-168\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.236 4a82b4c2-0bf6-44c9-992f-199e5e22a86a 2019-04-11 01:37:31.986572 5097 396 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.40.236 4a82b4c2-0bf6-44c9-992f-199e5e22a86a 2019-04-11 01:37:32.027863 5098 358 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.236 2da66edb-9d5c-46be-a33e-aadb1a43aaa9 2019-04-11 01:38:53.683716 5099 445 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 126\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 358\ncardnumber: 3822\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-168\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-168 189.186.40.236 2da66edb-9d5c-46be-a33e-aadb1a43aaa9 2019-04-11 01:38:53.71614 5100 123 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 125\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2224E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.547E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1747E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.40.236 ecde190f-d8f0-49bf-b2a2-77fac780dc3e 2019-04-11 01:56:25.519019 5101 125 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.236 ecde190f-d8f0-49bf-b2a2-77fac780dc3e 2019-04-11 01:56:25.541511 5102 124 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 126\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.4544E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.34E4\ncash_fund: !ruby/object:BigDecimal 18:0.724E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4124E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.40.236 5c37022b-ce89-4e00-af8c-111e3ddfd77d 2019-04-11 01:58:27.357245 5103 126 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.236 5c37022b-ce89-4e00-af8c-111e3ddfd77d 2019-04-11 01:58:27.374057 5171 3 User \N \N 3 User \N update ---\nunique_session_id:\n- BFk7G5Hs7uJk2d2yDhHh\n- xi27DMRUWTJjV17WY7_M\n 271 \N 189.186.34.75 b2bd7350-7cd8-4f89-9faa-e08395d803c6 2019-04-12 22:54:24.787265 5609 10 User \N \N 10 User \N update ---\nunique_session_id:\n- TT3v3YffpxZ-7nn8u7nj\n- r1n7wfsnKDtUVqA-hDtg\n 95 \N 189.186.52.34 492c7a38-eeb5-4ffb-8695-be9c09325c84 2019-04-23 21:29:26.175448 5106 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-04-09 16:07:26.446530000 Z\n- &1 2019-04-10 16:05:01.429473000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-11 16:08:50.236079461 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092317\n mask_addr: 4294967295\nsign_in_count:\n- 33\n- 34\n 68 \N 189.186.34.93 cbc51a91-0304-4865-970e-4b163eecf5d7 2019-04-11 16:08:50.245225 5107 11 User \N \N 11 User \N update ---\nunique_session_id:\n- qJgmgev51suDRwJb4yMq\n- JnGiH4Ax6oJnDK_q5yYa\n 69 \N 189.186.34.93 cbc51a91-0304-4865-970e-4b163eecf5d7 2019-04-11 16:08:50.261277 5108 127 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.724E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 724.0 189.186.34.93 3992d2f8-9459-4903-99ce-6f4d0616e30f 2019-04-11 16:08:53.691056 5109 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-09 22:42:29.315751000 Z\n- &1 2019-04-10 22:58:31.705687000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-11 17:00:59.624493727 Z\nsign_in_count:\n- 128\n- 129\n 258 \N 200.68.150.195 8b6a301d-f767-4487-9afd-e65c9490e5b5 2019-04-11 17:00:59.630007 5110 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gwLrUfrLn4mYKPtCCyRG\n- YyAWLrRvaG_gA3SZrFYu\n 259 \N 200.68.150.195 8b6a301d-f767-4487-9afd-e65c9490e5b5 2019-04-11 17:00:59.64249 5111 128 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.547E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 547.0 189.186.48.37 e7b5ff17-0a0d-489c-927c-bbf8a1cf8488 2019-04-11 17:30:22.668826 5112 359 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 128\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-04-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-189\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.48.37 e98cab8e-c398-4c2d-b838-5ffc60c92d25 2019-04-11 17:32:10.554731 5113 156 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.48.37 e98cab8e-c398-4c2d-b838-5ffc60c92d25 2019-04-11 17:32:10.592323 5114 359 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.48.37 7ebfcf13-7f46-49aa-abe4-08ee30ba3d72 2019-04-11 17:32:35.32754 5115 446 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 128\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 359\ncardnumber: 2261\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-189\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-189 189.186.48.37 7ebfcf13-7f46-49aa-abe4-08ee30ba3d72 2019-04-11 17:32:35.352047 5116 360 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 127\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-04-11\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-169\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.48.37 7b6a2cc6-4530-49b3-b819-39a18163ff17 2019-04-11 22:05:12.185092 5117 396 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.48.37 7b6a2cc6-4530-49b3-b819-39a18163ff17 2019-04-11 22:05:12.220102 5118 360 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.48.37 be65cd65-ae2b-4943-be60-717096389278 2019-04-11 22:05:17.429731 5119 447 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 127\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 360\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-169\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-169 189.186.48.37 be65cd65-ae2b-4943-be60-717096389278 2019-04-11 22:05:17.454739 5120 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-10 22:58:31.705687000 Z\n- &1 2019-04-11 17:00:59.624493000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-11 22:11:14.580235781 Z\nsign_in_count:\n- 129\n- 130\n 260 \N 200.68.150.195 a80af251-b843-4e72-9218-778df31278ae 2019-04-11 22:11:14.587086 5121 4 User \N \N 4 User \N update ---\nunique_session_id:\n- YyAWLrRvaG_gA3SZrFYu\n- nx9feoxyFYk2vHXibtXw\n 261 \N 200.68.150.195 a80af251-b843-4e72-9218-778df31278ae 2019-04-11 22:11:14.601833 5122 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-09 23:09:52.208338000 Z\n- &1 2019-04-09 23:12:39.009263000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-11 22:24:38.230781812 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095845\n mask_addr: 4294967295\nsign_in_count:\n- 132\n- 133\n 266 \N 189.186.48.37 b3d74af4-804f-4104-9b39-ddd786b90019 2019-04-11 22:24:38.238362 5123 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Nps1uHohN1K7H6zjYxhb\n- zbtF-82tn3zajtSqFsLG\n 267 \N 189.186.48.37 b3d74af4-804f-4104-9b39-ddd786b90019 2019-04-11 22:24:38.256429 5124 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-09 23:10:15.166254000 Z\n- &1 2019-04-09 23:14:14.114247000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-11 22:26:56.000040771 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095845\n mask_addr: 4294967295\nsign_in_count:\n- 75\n- 76\n 152 \N 189.186.48.37 e549a969-d138-4ebd-ba52-181f4d72a74c 2019-04-11 22:26:56.006435 5125 12 User \N \N 12 User \N update ---\nunique_session_id:\n- JoyGzxCm5rLDSZGrxAKr\n- _19RSmJB-JbktSEkLhzq\n 153 \N 189.186.48.37 e549a969-d138-4ebd-ba52-181f4d72a74c 2019-04-11 22:26:56.019479 5126 361 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 127\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-04-11\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-170\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.51.15 f76fad04-a24e-49cc-a032-4086e11ad0d3 2019-04-12 00:21:56.270768 5127 416 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.51.15 f76fad04-a24e-49cc-a032-4086e11ad0d3 2019-04-12 00:21:56.319746 5128 361 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.51.15 b331ad1c-27ae-41d9-a479-e6dc88f9ad36 2019-04-12 00:23:59.80304 5217 30 Transfer \N \N 11 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 11\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-04-13\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.34.75 93d2998f-f6d7-4ac4-b45b-f0eb0515ef4e 2019-04-13 18:22:55.165741 28478 2126 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 bf55b248-68f3-4a00-b283-e3bc4eb6d016 2020-01-29 22:02:32.08397 5129 448 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 127\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 361\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-170\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-170 189.186.51.15 b331ad1c-27ae-41d9-a479-e6dc88f9ad36 2019-04-12 00:23:59.827342 5130 69 Customer \N \N 11 User \N create ---\nnick_name: CLAUDIA CASTILLO\nphone: "(667) 140-1816"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.3E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CLAUDIA CASTILLO fue registrado. 189.186.50.225 83e4877e-d97c-4845-896c-e7b2a34d4017 2019-04-12 01:20:23.3969 5131 362 Sale \N \N 11 User \N create ---\ncustomer_id: 69\nuser_id: 11\nopen_cash_register_id: 127\namount: !ruby/object:BigDecimal 18:0.129224E4\ntax: !ruby/object:BigDecimal 18:0.20676E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2019-04-11\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-171\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.50.225 90766528-c176-46ca-a621-d4dc31a301c8 2019-04-12 01:22:31.314401 5132 356 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.50.225 90766528-c176-46ca-a621-d4dc31a301c8 2019-04-12 01:22:31.346996 5133 362 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-171 cancelada. 189.186.50.225 2b3f8672-cc17-4a50-8917-00c531f90ee7 2019-04-12 01:22:41.01645 5134 356 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.50.225 2b3f8672-cc17-4a50-8917-00c531f90ee7 2019-04-12 01:22:41.041548 5135 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-09 23:14:14.114247000 Z\n- &1 2019-04-11 22:26:56.000040000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-12 01:33:23.643392925 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095845\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095845\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096545\n mask_addr: 4294967295\nsign_in_count:\n- 76\n- 77\n 154 \N 189.186.50.225 22b29a07-c382-4899-8e07-7d6b52e1268e 2019-04-12 01:33:23.650985 5136 12 User \N \N 12 User \N update ---\nunique_session_id:\n- _19RSmJB-JbktSEkLhzq\n- Gz4vy9CrfMXKe7E39SfB\n 155 \N 189.186.50.225 22b29a07-c382-4899-8e07-7d6b52e1268e 2019-04-12 01:33:23.668249 5137 125 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 128\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.699E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.547E3\nphysical_cash: !ruby/object:BigDecimal 18:0.547E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.50.225 3ac767de-017b-4e11-8f65-1e3ee963e4d4 2019-04-12 01:33:47.895554 5138 128 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.50.225 3ac767de-017b-4e11-8f65-1e3ee963e4d4 2019-04-12 01:33:47.915465 5139 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-09 23:12:39.009263000 Z\n- &1 2019-04-11 22:24:38.230781000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-12 01:34:25.105182152 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095845\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095845\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096545\n mask_addr: 4294967295\nsign_in_count:\n- 133\n- 134\n 268 \N 189.186.50.225 0b28b433-7798-46d9-975e-b3880042871a 2019-04-12 01:34:25.115237 5140 3 User \N \N 3 User \N update ---\nunique_session_id:\n- zbtF-82tn3zajtSqFsLG\n- BFk7G5Hs7uJk2d2yDhHh\n 269 \N 189.186.50.225 0b28b433-7798-46d9-975e-b3880042871a 2019-04-12 01:34:25.130223 5141 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-04-09 23:50:46.545364000 Z\n- &1 2019-04-11 01:33:55.189138000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-12 01:35:58.237806126 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096545\n mask_addr: 4294967295\nsign_in_count:\n- 40\n- 41\n 82 \N 189.186.50.225 304b42ec-1915-4523-b96d-eadbe29a4204 2019-04-12 01:35:58.247281 5142 10 User \N \N 10 User \N update ---\nunique_session_id:\n- 2qjGCpYJ8bELG4Mxtyi5\n- 5Pn2tr9GjN-CaHxNQPeu\n 83 \N 189.186.50.225 304b42ec-1915-4523-b96d-eadbe29a4204 2019-04-12 01:35:58.263063 5143 126 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 127\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.1498E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.14E4\ncash_fund: !ruby/object:BigDecimal 18:0.763E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2163E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.50.225 39bff450-aa12-4371-8d7f-1695111ea51f 2019-04-12 01:50:30.533071 5144 127 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.50.225 39bff450-aa12-4371-8d7f-1695111ea51f 2019-04-12 01:50:30.549895 5145 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-04-10 15:57:44.526392000 Z\n- &1 2019-04-11 16:07:59.316980000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-12 15:50:34.796960745 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092317\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092299\n mask_addr: 4294967295\nsign_in_count:\n- 79\n- 80\n 163 \N 189.186.34.75 220b698f-b579-4b3c-af1b-87cdc9915bae 2019-04-12 15:50:34.827179 5146 2 User \N \N 2 User \N update ---\nunique_session_id:\n- yEL3y7Bykn3HydZ88kx4\n- 4Wcros7dyHJVQsK1G6oz\n 164 \N 189.186.34.75 220b698f-b579-4b3c-af1b-87cdc9915bae 2019-04-12 15:50:34.849941 5147 129 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.547E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 547.0 189.186.34.75 c0df4b17-fffb-4705-b5b7-804d891b9ab8 2019-04-12 15:52:11.731369 5148 363 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 129\namount: !ruby/object:BigDecimal 18:0.47328E3\ntax: !ruby/object:BigDecimal 18:0.7572E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-04-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-190\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.34.75 914622e9-28ee-4897-ae83-7a6156ef5ef5 2019-04-12 16:35:39.650964 5149 157 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.34.75 914622e9-28ee-4897-ae83-7a6156ef5ef5 2019-04-12 16:35:39.698089 5150 363 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.34.75 ff78c5f9-29b0-45ac-a72f-6b7df0fb5009 2019-04-12 16:35:47.408186 5151 449 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 129\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.549E3\nmove_type: '1'\nsale_id: 363\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-190\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-190 189.186.34.75 ff78c5f9-29b0-45ac-a72f-6b7df0fb5009 2019-04-12 16:35:47.443154 5152 364 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 129\namount: !ruby/object:BigDecimal 18:0.98965E3\ntax: !ruby/object:BigDecimal 18:0.15835E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1148E4\nstatus: 0\ndate_sale: 2019-04-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-191\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.34.75 ea2dadd4-9ec6-4613-b308-13a523cda20e 2019-04-12 17:50:17.155124 5153 138 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 18 \N 189.186.34.75 ea2dadd4-9ec6-4613-b308-13a523cda20e 2019-04-12 17:50:17.186292 5154 200 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.34.75 ea2dadd4-9ec6-4613-b308-13a523cda20e 2019-04-12 17:50:17.212802 5155 364 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.34.75 fe960ec3-716b-444f-babb-a2077f669052 2019-04-12 17:50:23.275052 5156 450 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 129\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1148E4\nmove_type: '1'\nsale_id: 364\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-191\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1148E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-191 189.186.34.75 fe960ec3-716b-444f-babb-a2077f669052 2019-04-12 17:50:23.297539 5157 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-04-10 16:05:01.429473000 Z\n- &1 2019-04-11 16:08:50.236079000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-12 18:04:54.355230020 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092317\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092299\n mask_addr: 4294967295\nsign_in_count:\n- 34\n- 35\n 70 \N 189.186.34.75 a242d472-35ea-46cc-a269-9b5694f67ce9 2019-04-12 18:04:54.391282 5158 11 User \N \N 11 User \N update ---\nunique_session_id:\n- JnGiH4Ax6oJnDK_q5yYa\n- 1cvyjc12r5i5TRJLhxfP\n 71 \N 189.186.34.75 a242d472-35ea-46cc-a269-9b5694f67ce9 2019-04-12 18:04:54.413925 5159 130 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.763E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 763.0 189.186.34.75 3c10107f-4d54-4d6f-976f-f1c207c4c2af 2019-04-12 18:04:58.736408 5160 365 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 130\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-04-12\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-172\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.34.75 54333657-1796-4b54-848a-c95ee935a5d3 2019-04-12 18:05:25.146648 5161 559 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.34.75 54333657-1796-4b54-848a-c95ee935a5d3 2019-04-12 18:05:25.178714 5162 365 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.34.75 e51428d1-b6f0-497e-a960-44894d726176 2019-04-12 18:05:30.10645 5163 451 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 130\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 365\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-172\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-172 189.186.34.75 e51428d1-b6f0-497e-a960-44894d726176 2019-04-12 18:05:30.130171 5164 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-11 17:00:59.624493000 Z\n- &1 2019-04-11 22:11:14.580235000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-12 18:42:58.440567738 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946022\n mask_addr: 4294967295\nsign_in_count:\n- 130\n- 131\n 262 \N 200.68.181.38 4dfd1f28-1340-41b7-ba8c-c90baf838bdd 2019-04-12 18:42:58.447309 5165 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nx9feoxyFYk2vHXibtXw\n- 61ayMbKW-_uZsx3LvhVP\n 263 \N 200.68.181.38 4dfd1f28-1340-41b7-ba8c-c90baf838bdd 2019-04-12 18:42:58.461942 5166 452 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 129\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.479E3\nmove_type: '1'\nsale_id: 223\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-121 189.186.34.75 9d17d6d9-cdc3-4ee1-a137-2f88d9738a8b 2019-04-12 19:39:10.265238 5167 223 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.34.75 82c4dd9f-83fc-4c9c-8df5-c512f666823d 2019-04-12 19:39:11.594043 5168 38 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 129\nquantity: !ruby/object:BigDecimal 18:0.6E3\nstatus: 1\nobservations: 'préstamo Rocío '\nexpense_date: 2019-04-12\nexpense_code: PV1-E-34\n 1 Egreso por 600.0 registrado 189.186.34.75 adf5ed0c-86a7-4a24-914f-543797ef8531 2019-04-12 21:30:46.993109 5169 453 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 129\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 38\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.34.75 adf5ed0c-86a7-4a24-914f-543797ef8531 2019-04-12 21:30:47.017881 5170 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-11 22:24:38.230781000 Z\n- &1 2019-04-12 01:34:25.105182000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-12 22:54:24.764552698 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095845\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096545\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096545\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092299\n mask_addr: 4294967295\nsign_in_count:\n- 134\n- 135\n 270 \N 189.186.34.75 b2bd7350-7cd8-4f89-9faa-e08395d803c6 2019-04-12 22:54:24.772155 28773 2152 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 7ba45e92-c8d7-44b7-8fa4-ce50176cdc54 2020-01-31 21:36:10.280891 5172 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-11 22:26:56.000040000 Z\n- &1 2019-04-12 01:33:23.643392000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-12 22:54:42.115148955 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095845\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096545\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096545\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092299\n mask_addr: 4294967295\nsign_in_count:\n- 77\n- 78\n 156 \N 189.186.34.75 865fc496-8b1d-4b4e-982b-e224036238ea 2019-04-12 22:54:42.124098 5173 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Gz4vy9CrfMXKe7E39SfB\n- bxAdcyWWJVY6hKEsLf4X\n 157 \N 189.186.34.75 865fc496-8b1d-4b4e-982b-e224036238ea 2019-04-12 22:54:42.140648 5174 366 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 129\namount: !ruby/object:BigDecimal 18:0.122917E4\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1298E4\nstatus: 0\ndate_sale: 2019-04-12\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-192\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.34.75 6b3999b0-b3f5-4e59-8a6f-75c17681a575 2019-04-13 00:39:51.991438 5175 200 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.34.75 6b3999b0-b3f5-4e59-8a6f-75c17681a575 2019-04-13 00:39:52.038365 5176 467 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.34.75 6b3999b0-b3f5-4e59-8a6f-75c17681a575 2019-04-13 00:39:52.074912 5177 366 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.34.75 e92d36bc-aeff-49f4-b48c-d41a9eb7c2a4 2019-04-13 00:40:10.062103 5178 454 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 129\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1298E4\nmove_type: '1'\nsale_id: 366\ncardnumber: 1027\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-192\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-192 189.186.34.75 e92d36bc-aeff-49f4-b48c-d41a9eb7c2a4 2019-04-13 00:40:10.111572 5179 367 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 129\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-04-12\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-193\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.34.75 c9fa6fbf-fb2f-4e66-a09b-de05a4e09281 2019-04-13 00:42:28.374211 5180 542 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.34.75 c9fa6fbf-fb2f-4e66-a09b-de05a4e09281 2019-04-13 00:42:28.414709 5181 367 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.34.75 6922c949-d2b1-4940-a2a2-e718ddab39f6 2019-04-13 00:42:53.351171 5182 455 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 129\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 367\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-193\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-193 189.186.34.75 6922c949-d2b1-4940-a2a2-e718ddab39f6 2019-04-13 00:42:53.393117 5183 368 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 129\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-04-12\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-194\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.34.75 465114e9-5338-47fb-be91-91a6b73e9e92 2019-04-13 00:50:30.163061 5184 541 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.34.75 465114e9-5338-47fb-be91-91a6b73e9e92 2019-04-13 00:50:30.213595 5185 368 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.34.75 5a56569b-8de1-467a-8592-b3bf3c58bfe3 2019-04-13 00:51:05.544677 5186 456 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 129\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.479E3\nmove_type: '1'\nsale_id: 368\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-194\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-194 189.186.34.75 5a56569b-8de1-467a-8592-b3bf3c58bfe3 2019-04-13 00:51:05.567923 5187 457 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 129\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 216\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-116 189.186.34.75 7c2ec3c9-6454-4806-9195-9aa6a70aa6ce 2019-04-13 01:11:25.064396 5188 216 Sale \N \N 12 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.34.75 9f0aee26-a05f-42f0-81c9-4cd1fed0b6ef 2019-04-13 01:11:26.250694 5189 39 Expense \N \N 11 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 130\nquantity: !ruby/object:BigDecimal 18:0.8E3\nstatus: 1\nobservations: sueldo de Ilse\nexpense_date: 2019-04-12\nexpense_code: PV2-E-5\n 1 Egreso por 800.0 registrado 189.186.34.75 3268284a-5417-4ed2-a4cf-11a303f18859 2019-04-13 01:23:12.369412 5190 9 Purchase \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.34.75 3268284a-5417-4ed2-a4cf-11a303f18859 2019-04-13 01:23:12.389216 5191 458 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 130\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: 9\nexpense_id: 39\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.34.75 3268284a-5417-4ed2-a4cf-11a303f18859 2019-04-13 01:23:12.423469 5192 40 Expense \N \N 12 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 129\nquantity: !ruby/object:BigDecimal 18:0.12E4\nstatus: 1\nobservations: SUELDO ANABELLY\nexpense_date: 2019-04-12\nexpense_code: PV1-E-35\n 1 Egreso por 1200.0 registrado 189.186.34.75 a9c980af-8a50-4eca-b600-d38ffc75e6c5 2019-04-13 01:27:25.007755 5193 459 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 129\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 40\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.34.75 a9c980af-8a50-4eca-b600-d38ffc75e6c5 2019-04-13 01:27:25.040182 5194 460 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 174\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.34.75 c77e4d07-6f19-466b-827e-91552722c189 2019-04-13 01:28:38.070492 5195 460 CashRegistersMove \N \N 12 User \N update ---\nopen_cash_register_id:\n- 49\n- 129\n 2 movimiento de efectivo por venta con folio PV1-V-98 189.186.34.75 c77e4d07-6f19-466b-827e-91552722c189 2019-04-13 01:28:38.115869 5196 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-11 22:11:14.580235000 Z\n- &1 2019-04-12 18:42:58.440567000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-13 01:33:04.617520085 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946022\n mask_addr: 4294967295\nsign_in_count:\n- 131\n- 132\n 264 \N 200.68.181.38 32b71564-72a7-47f2-849f-9d6f1e992deb 2019-04-13 01:33:04.629049 5197 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 61ayMbKW-_uZsx3LvhVP\n- WatRM6DjCazGqs7TxjCz\n 265 \N 200.68.181.38 32b71564-72a7-47f2-849f-9d6f1e992deb 2019-04-13 01:33:04.649983 5198 127 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 129\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.5502E4\namount_out: !ruby/object:BigDecimal 18:0.18E4\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.24E4\ncash_fund: !ruby/object:BigDecimal 18:0.551E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2951E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.34.75 b76939af-eb19-46ac-94a0-c4c3d6e17fd3 2019-04-13 01:56:18.245634 5199 129 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.34.75 b76939af-eb19-46ac-94a0-c4c3d6e17fd3 2019-04-13 01:56:18.265406 5200 128 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 130\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.599E3\namount_out: !ruby/object:BigDecimal 18:0.8E3\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.562E3\nphysical_cash: !ruby/object:BigDecimal 18:0.562E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.34.75 c8c18280-b707-4541-aa44-35b3d54072c3 2019-04-13 02:01:27.913817 5201 130 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.34.75 c8c18280-b707-4541-aa44-35b3d54072c3 2019-04-13 02:01:27.934895 5202 131 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.562E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 562.0 189.186.34.75 720e3288-d7ef-46ec-bf8f-c25f37cc9075 2019-04-13 16:02:14.619331 5203 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-04-11 16:07:59.316980000 Z\n- &1 2019-04-12 15:50:34.796960000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-13 16:36:37.741942357 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092299\n mask_addr: 4294967295\nsign_in_count:\n- 80\n- 81\n 165 \N 189.186.34.75 abad2b2d-12c7-4149-a15f-7010c5183598 2019-04-13 16:36:37.750055 5204 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 4Wcros7dyHJVQsK1G6oz\n- G3mzLsaG1uuN-YXeNyqj\n 166 \N 189.186.34.75 abad2b2d-12c7-4149-a15f-7010c5183598 2019-04-13 16:36:37.765725 5205 461 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 178\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.34.75 52d65f68-0dbd-4883-a341-b92a2c286137 2019-04-13 17:00:51.102175 5206 461 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 49\n- \n 2 movimiento de efectivo por venta con folio PV1-V-102 189.186.34.75 52d65f68-0dbd-4883-a341-b92a2c286137 2019-04-13 17:00:51.127906 5207 506 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 5 \N 189.186.34.75 2f5f8c08-a289-4ea8-8b2e-e13c44f8dfaa 2019-04-13 17:02:50.04554 5208 30 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-04-13\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.34.75 d4b2f16a-862d-40bf-9cd5-db93f7505a04 2019-04-13 17:02:52.701239 5209 132 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.551E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 551.0 189.186.34.75 8d30be31-aea3-4504-abe1-375748b0dfb8 2019-04-13 17:08:20.900891 5210 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-04-08 22:52:13.320243000 Z\n- &1 2019-04-10 16:25:15.044883000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-13 17:09:19.060474515 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092299\n mask_addr: 4294967295\nsign_in_count:\n- 46\n- 47\n 94 \N 189.186.34.75 a5d74248-9be3-44c1-a0c6-dc1ef2e054ef 2019-04-13 17:09:19.067099 5211 1 User \N \N 1 User \N update ---\nunique_session_id:\n- zsig6yrcqsE24y5g9B71\n- 3sEQhMc5bX9VKUdyux4q\n 95 \N 189.186.34.75 a5d74248-9be3-44c1-a0c6-dc1ef2e054ef 2019-04-13 17:09:19.081862 5212 70 Customer \N \N 2 User \N create ---\nnick_name: ALEYDA AMIGA SAM\nphone: ''\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.5E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ALEYDA AMIGA SAM fue registrado. 189.186.34.75 041f5cf1-ab52-4f68-be84-0b23f8bffc19 2019-04-13 17:19:56.362129 5213 369 Sale \N \N 2 User \N create ---\ncustomer_id: 70\nuser_id: 2\nopen_cash_register_id: 132\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-04-13\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-195\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.34.75 8948ec70-18f3-407a-bd3d-c5243c9e8bcb 2019-04-13 17:20:28.135237 5214 266 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.34.75 8948ec70-18f3-407a-bd3d-c5243c9e8bcb 2019-04-13 17:20:28.163011 5215 369 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.34.75 3d6e8621-ce37-441c-93f0-48879d365533 2019-04-13 17:20:38.881495 5216 462 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 132\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 369\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-195\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4858152465545465'\n 1 movimiento de efectivo por venta con folio PV1-V-195 189.186.34.75 3d6e8621-ce37-441c-93f0-48879d365533 2019-04-13 17:20:38.917947 5219 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-12 01:34:25.105182000 Z\n- &1 2019-04-12 22:54:24.764552000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-13 19:53:13.360904292 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096545\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092299\n mask_addr: 4294967295\nsign_in_count:\n- 135\n- 136\n 272 \N 189.186.34.75 6daff225-bf13-4575-903d-03ceda91465e 2019-04-13 19:53:13.368436 5220 3 User \N \N 3 User \N update ---\nunique_session_id:\n- xi27DMRUWTJjV17WY7_M\n- i1e6u7Xf2nNrXAW1t-x9\n 273 \N 189.186.34.75 6daff225-bf13-4575-903d-03ceda91465e 2019-04-13 19:53:13.383737 5221 463 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 131\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 283\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.5E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-133 189.186.34.75 69896190-65cd-4d29-9c88-a9c22e73df65 2019-04-13 20:05:11.095096 5222 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-12 01:33:23.643392000 Z\n- &1 2019-04-12 22:54:42.115148000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-13 21:48:41.787757378 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096545\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092299\n mask_addr: 4294967295\nsign_in_count:\n- 78\n- 79\n 158 \N 189.186.34.75 9a07af04-8fd0-44e5-8db7-a4a5fb18972c 2019-04-13 21:48:41.807162 5223 12 User \N \N 12 User \N update ---\nunique_session_id:\n- bxAdcyWWJVY6hKEsLf4X\n- fmw92x3_dn3NB1yRxQ8x\n 159 \N 189.186.34.75 9a07af04-8fd0-44e5-8db7-a4a5fb18972c 2019-04-13 21:48:41.82599 5224 370 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 132\namount: !ruby/object:BigDecimal 18:0.53279E3\ntax: !ruby/object:BigDecimal 18:0.6621E2\ndiscount: !ruby/object:BigDecimal 18:0.119E3\ntotal: !ruby/object:BigDecimal 18:0.48E3\nstatus: 0\ndate_sale: 2019-04-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-196\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.34.75 16d28d1d-1b39-4843-b1ff-72cb2e62d80d 2019-04-13 21:49:34.06393 5225 87 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.34.75 16d28d1d-1b39-4843-b1ff-72cb2e62d80d 2019-04-13 21:49:34.111951 5226 370 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.34.75 1ee846c6-a58e-4943-bab4-dddb882e850f 2019-04-13 21:50:01.772745 5227 464 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 132\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.48E3\nmove_type: '1'\nsale_id: 370\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-196\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.48E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-196 189.186.34.75 1ee846c6-a58e-4943-bab4-dddb882e850f 2019-04-13 21:50:01.796132 5228 41 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 132\nquantity: !ruby/object:BigDecimal 18:0.678E3\nstatus: 1\nobservations: SUELDO ROCIO $628 COMIDA $50\nexpense_date: 2019-04-13\nexpense_code: PV1-E-36\n 1 Egreso por 678.0 registrado 189.186.34.75 0a293bad-3e25-44c9-9f2b-07e7995ebe23 2019-04-13 21:53:07.657082 5229 465 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 132\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.678E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 41\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.34.75 0a293bad-3e25-44c9-9f2b-07e7995ebe23 2019-04-13 21:53:07.676732 5230 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-12 22:54:24.764552000 Z\n- &1 2019-04-13 19:53:13.360904000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-13 23:40:24.077000327 Z\nsign_in_count:\n- 136\n- 137\n 274 \N 189.186.34.75 fc31a459-e871-495c-ad29-83d8aac74fd5 2019-04-13 23:40:24.085857 5231 3 User \N \N 3 User \N update ---\nunique_session_id:\n- i1e6u7Xf2nNrXAW1t-x9\n- 45vn9qyK_kV68UTs99YQ\n 275 \N 189.186.34.75 fc31a459-e871-495c-ad29-83d8aac74fd5 2019-04-13 23:40:24.106704 5232 371 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 131\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-04-13\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-173\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.34.75 a6091f77-7e57-4f2e-a612-a772c08165f1 2019-04-13 23:40:46.453209 5233 562 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.34.75 a6091f77-7e57-4f2e-a612-a772c08165f1 2019-04-13 23:40:46.48602 5234 371 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.34.75 d6a673b7-7654-48f6-bfd5-73d50b75495e 2019-04-13 23:41:17.899496 5235 466 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 131\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 371\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-173\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-173 189.186.34.75 d6a673b7-7654-48f6-bfd5-73d50b75495e 2019-04-13 23:41:17.928678 5236 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-12 18:42:58.440567000 Z\n- &1 2019-04-13 01:33:04.617520000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-14 01:21:19.725627550 Z\nsign_in_count:\n- 132\n- 133\n 266 \N 200.68.181.38 55c912b1-6903-47b1-80b8-1fb6135ad209 2019-04-14 01:21:19.779849 5237 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WatRM6DjCazGqs7TxjCz\n- xYqTuxWst3dsQxg5uLLF\n 267 \N 200.68.181.38 55c912b1-6903-47b1-80b8-1fb6135ad209 2019-04-14 01:21:19.809881 5238 42 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 132\nquantity: !ruby/object:BigDecimal 18:0.25E2\nstatus: 1\nobservations: GARRAFON DE AGUA\nexpense_date: 2019-04-13\nexpense_code: PV1-E-37\n 1 Egreso por 25.0 registrado 189.186.34.75 28b9124e-f5a5-4850-908d-c83700bfa690 2019-04-14 01:28:54.759298 5239 467 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 132\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 42\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.34.75 28b9124e-f5a5-4850-908d-c83700bfa690 2019-04-14 01:28:54.784193 5393 586 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 544\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.196 599bebf4-a2d5-4d94-b376-9d5182371a8a 2019-04-16 19:31:26.202089 5240 129 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 132\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1779E4\namount_out: !ruby/object:BigDecimal 18:0.703E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.528E3\nphysical_cash: !ruby/object:BigDecimal 18:0.528E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.34.75 65e595e6-48ef-4f7b-aa7a-fd12414a70dc 2019-04-14 01:36:50.832375 5241 132 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.34.75 65e595e6-48ef-4f7b-aa7a-fd12414a70dc 2019-04-14 01:36:50.851373 5242 130 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 131\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1149E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.18E4\ncash_fund: !ruby/object:BigDecimal 18:0.61E3\nphysical_cash: !ruby/object:BigDecimal 18:0.241E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.34.75 efda8c53-4264-4e96-9d91-d53b93275473 2019-04-14 01:56:39.921342 5243 131 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.34.75 efda8c53-4264-4e96-9d91-d53b93275473 2019-04-14 01:56:39.942663 5244 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-04-11 16:08:50.236079000 Z\n- &1 2019-04-12 18:04:54.355230000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-14 16:09:12.854294688 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092299\n mask_addr: 4294967295\nsign_in_count:\n- 35\n- 36\n 72 \N 189.186.34.75 b55755f6-1cf2-4c90-848a-3e7349fca27a 2019-04-14 16:09:12.882323 5245 11 User \N \N 11 User \N update ---\nunique_session_id:\n- 1cvyjc12r5i5TRJLhxfP\n- ULFDxTHtkyEK6MB1fQCM\n 73 \N 189.186.34.75 b55755f6-1cf2-4c90-848a-3e7349fca27a 2019-04-14 16:09:12.903957 5246 133 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.61E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 610.0 189.186.34.75 6b54d410-3f5a-47ce-98d5-7a0761e68166 2019-04-14 16:12:00.563056 5247 372 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 133\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-04-14\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-174\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.34.75 f28e7dbf-5dd9-445a-9be5-6205d48a988d 2019-04-14 18:56:21.619065 5248 416 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.34.75 f28e7dbf-5dd9-445a-9be5-6205d48a988d 2019-04-14 18:56:21.659576 5249 372 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-174 cancelada. 189.186.34.75 a172ff75-74ac-44f2-85f0-b6b2d641daf1 2019-04-14 18:56:35.772665 5250 416 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.34.75 a172ff75-74ac-44f2-85f0-b6b2d641daf1 2019-04-14 18:56:35.799231 5251 373 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 133\namount: !ruby/object:BigDecimal 18:0.139224E4\ntax: !ruby/object:BigDecimal 18:0.20676E3\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2019-04-14\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-175\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.34.75 02bc803f-221e-4ae5-9443-7dc6b0d5dc76 2019-04-14 18:59:41.659819 5252 416 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.34.75 02bc803f-221e-4ae5-9443-7dc6b0d5dc76 2019-04-14 18:59:41.69674 5253 365 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.49E2\n- !ruby/object:BigDecimal 18:0.47E2\n 7 \N 189.186.34.75 02bc803f-221e-4ae5-9443-7dc6b0d5dc76 2019-04-14 18:59:41.726482 5254 373 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.34.75 a14658b0-f549-4d62-83c6-0d663def4ba2 2019-04-14 19:02:00.654099 5255 468 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 133\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 373\ncardnumber: 3788\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-175\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-175 189.186.34.75 a14658b0-f549-4d62-83c6-0d663def4ba2 2019-04-14 19:02:00.680254 5256 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-12 22:54:42.115148000 Z\n- &1 2019-04-13 21:48:41.787757000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-14 19:22:59.020088730 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092299\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\nsign_in_count:\n- 79\n- 80\n 160 \N 189.186.37.196 69dfd18a-425d-49e7-b36c-63a924b4efe8 2019-04-14 19:22:59.048825 5257 12 User \N \N 12 User \N update ---\nunique_session_id:\n- fmw92x3_dn3NB1yRxQ8x\n- c7yvy3pYbKP9F96TfXoX\n 161 \N 189.186.37.196 69dfd18a-425d-49e7-b36c-63a924b4efe8 2019-04-14 19:22:59.070261 5258 134 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.528E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 528.0 189.186.37.196 ce89cd5f-5f12-477f-b96c-2870ebfab263 2019-04-14 19:23:07.20768 5259 374 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 134\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-04-14\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-197\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 2412622d-a8bb-4e6e-8425-37b9e4dbefe8 2019-04-14 19:23:24.942549 5260 178 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.37.196 2412622d-a8bb-4e6e-8425-37b9e4dbefe8 2019-04-14 19:23:24.972565 5261 374 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 bd7a8a4a-9b6b-4e94-803d-7e1d19ac5b2a 2019-04-14 19:25:39.232475 5262 469 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 134\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 374\ncardnumber: 7193\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-197\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-197 189.186.37.196 bd7a8a4a-9b6b-4e94-803d-7e1d19ac5b2a 2019-04-14 19:25:39.256209 5419 590 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.37.196 788c741e-4635-4fa3-ab8f-788b823fffe2 2019-04-16 20:34:42.446737 5263 375 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 133\namount: !ruby/object:BigDecimal 18:0.30172E3\ntax: !ruby/object:BigDecimal 18:0.4828E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2019-04-14\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-176\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 560c6cf2-42dd-4f4d-a312-a6b6e1462839 2019-04-14 20:03:20.621052 5264 365 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.47E2\n- !ruby/object:BigDecimal 18:0.46E2\n 8 \N 189.186.37.196 560c6cf2-42dd-4f4d-a312-a6b6e1462839 2019-04-14 20:03:20.651737 5265 375 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 4a031503-f300-477e-bea5-590b425cbd5c 2019-04-14 20:03:25.715297 5266 470 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 133\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.35E3\nmove_type: '1'\nsale_id: 375\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-176\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-176 189.186.37.196 4a031503-f300-477e-bea5-590b425cbd5c 2019-04-14 20:03:25.740475 5267 131 CashOut \N \N 11 User \N create ---\nopen_cash_register_id: 133\nuser_id: 11\namount_in: !ruby/object:BigDecimal 18:0.1849E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 11\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.96E3\nphysical_cash: !ruby/object:BigDecimal 18:0.96E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.196 c67128e8-2947-48ed-96c1-c37b02c29ca6 2019-04-14 20:51:54.67178 5268 133 OpenCashRegister \N \N 11 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.196 c67128e8-2947-48ed-96c1-c37b02c29ca6 2019-04-14 20:51:54.688843 5269 132 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 134\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.899E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.528E3\nphysical_cash: !ruby/object:BigDecimal 18:0.528E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.196 b0193903-32f5-4aea-b8f8-a5333126cd96 2019-04-14 20:55:07.807616 5270 134 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.196 b0193903-32f5-4aea-b8f8-a5333126cd96 2019-04-14 20:55:07.820636 5271 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-13 01:33:04.617520000 Z\n- &1 2019-04-14 01:21:19.725627000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-14 22:09:42.419029385 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946022\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934422\n mask_addr: 4294967295\nsign_in_count:\n- 133\n- 134\n 268 \N 200.68.135.214 e60b4bda-27e3-444b-8d19-e2a9a1903245 2019-04-14 22:09:42.426704 5272 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xYqTuxWst3dsQxg5uLLF\n- F6S3V5yk1kRWaxXgPesg\n 269 \N 200.68.135.214 e60b4bda-27e3-444b-8d19-e2a9a1903245 2019-04-14 22:09:42.445131 5273 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-04-12 15:50:34.796960000 Z\n- &1 2019-04-13 16:36:37.741942000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-15 18:03:45.735612117 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092299\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\nsign_in_count:\n- 81\n- 82\n 167 \N 189.186.37.196 5e3c1fbc-99cc-4169-885c-2f7f88b7728f 2019-04-15 18:03:45.757681 5274 2 User \N \N 2 User \N update ---\nunique_session_id:\n- G3mzLsaG1uuN-YXeNyqj\n- 37YxsbPCszVftwXUzQFz\n 168 \N 189.186.37.196 5e3c1fbc-99cc-4169-885c-2f7f88b7728f 2019-04-15 18:03:45.779465 5275 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-04-12 18:04:54.355230000 Z\n- &1 2019-04-14 16:09:12.854294000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-15 18:06:33.930025903 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092299\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\nsign_in_count:\n- 36\n- 37\n 74 \N 189.186.37.196 9c3cb0e9-5528-49d1-ad17-f2253b2d21d9 2019-04-15 18:06:33.939156 5276 11 User \N \N 11 User \N update ---\nunique_session_id:\n- ULFDxTHtkyEK6MB1fQCM\n- r4KZNn8KRuL3j7qmV6LY\n 75 \N 189.186.37.196 9c3cb0e9-5528-49d1-ad17-f2253b2d21d9 2019-04-15 18:06:33.954974 5277 135 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.96E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 960.0 189.186.37.196 01c0829e-9259-4738-89fc-50371bf71429 2019-04-15 18:06:45.678602 5278 376 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 135\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-04-15\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-177\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 bc61de14-0c8c-49bd-86b8-4b0ad2f3be66 2019-04-15 18:07:16.2085 5279 398 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.37.196 bc61de14-0c8c-49bd-86b8-4b0ad2f3be66 2019-04-15 18:07:16.249633 5280 136 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.528E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 528.0 189.186.37.196 d9ab42eb-724f-42f2-8caf-e2ec86273d27 2019-04-15 18:07:19.788206 5281 376 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 e68d7cdc-88b4-40d2-8ca9-39a11cde634f 2019-04-15 18:07:21.162523 5282 471 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 135\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 376\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-177\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-177 189.186.37.196 e68d7cdc-88b4-40d2-8ca9-39a11cde634f 2019-04-15 18:07:21.185052 5283 377 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 136\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-04-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-198\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 14c54a23-407e-4206-bf26-9e7a93afa828 2019-04-15 18:14:52.555259 5284 72 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.37.196 14c54a23-407e-4206-bf26-9e7a93afa828 2019-04-15 18:14:52.590306 5285 377 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 f207c6c2-0f57-441d-9c08-9e9c3b3f3fc8 2019-04-15 18:14:57.20503 5286 472 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 136\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 377\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-198\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-198 189.186.37.196 f207c6c2-0f57-441d-9c08-9e9c3b3f3fc8 2019-04-15 18:14:57.230764 5287 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-14 01:21:19.725627000 Z\n- &1 2019-04-14 22:09:42.419029000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-15 20:44:27.510545287 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946022\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934422\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934422\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946196\n mask_addr: 4294967295\nsign_in_count:\n- 134\n- 135\n 270 \N 200.68.181.212 534dc60f-1afe-474a-8d87-c1d48ac288c2 2019-04-15 20:44:27.522804 5288 4 User \N \N 4 User \N update ---\nunique_session_id:\n- F6S3V5yk1kRWaxXgPesg\n- NSBAYGTyMMtCsZZY-Wtq\n 271 \N 200.68.181.212 534dc60f-1afe-474a-8d87-c1d48ac288c2 2019-04-15 20:44:27.544782 5289 378 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 136\namount: !ruby/object:BigDecimal 18:0.103362E4\ntax: !ruby/object:BigDecimal 18:0.16538E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-04-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-199\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 2a2eda12-a8cb-4fb9-b24b-944bdd5f50f1 2019-04-15 21:37:17.534236 5290 248 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.37.196 2a2eda12-a8cb-4fb9-b24b-944bdd5f50f1 2019-04-15 21:37:17.565138 5291 378 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 1ca66240-cfb9-4729-ac4a-7d37e57af681 2019-04-15 21:37:22.714944 5292 473 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 136\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 378\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-199\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-199 189.186.37.196 1ca66240-cfb9-4729-ac4a-7d37e57af681 2019-04-15 21:37:22.737859 5293 379 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 135\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-04-15\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-178\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 488ee0a2-24f6-4b63-8e66-ef4a18c19a97 2019-04-16 00:00:02.121972 5294 550 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.196 488ee0a2-24f6-4b63-8e66-ef4a18c19a97 2019-04-16 00:00:02.165453 5295 379 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 50a5115e-19ee-492c-9f24-f8d28abde4f4 2019-04-16 00:00:08.213617 5296 474 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 135\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 379\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-178\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-178 189.186.37.196 50a5115e-19ee-492c-9f24-f8d28abde4f4 2019-04-16 00:00:08.24736 5297 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-04-10 16:25:15.044883000 Z\n- &1 2019-04-13 17:09:19.060474000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-16 00:12:43.345030808 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092299\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092299\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\nsign_in_count:\n- 47\n- 48\n 96 \N 189.186.37.196 48d66021-31f0-42fe-9a3f-619566edb46e 2019-04-16 00:12:43.370635 5298 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 3sEQhMc5bX9VKUdyux4q\n- i9AXrUf_sE-ZWRPvxZbE\n 97 \N 189.186.37.196 48d66021-31f0-42fe-9a3f-619566edb46e 2019-04-16 00:12:43.392353 5299 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-04-11 01:33:55.189138000 Z\n- &1 2019-04-12 01:35:58.237806000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-16 00:15:50.891902077 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096545\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096545\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\nsign_in_count:\n- 41\n- 42\n 84 \N 189.186.37.196 2fbe240b-271e-4e07-9f5c-99f42365c6bb 2019-04-16 00:15:50.900187 5300 10 User \N \N 10 User \N update ---\nunique_session_id:\n- 5Pn2tr9GjN-CaHxNQPeu\n- H2TuGB_xc1sNVB8oceVx\n 85 \N 189.186.37.196 2fbe240b-271e-4e07-9f5c-99f42365c6bb 2019-04-16 00:15:50.917663 5301 380 Sale \N \N 10 User \N create ---\ncustomer_id: 13\nuser_id: 10\nopen_cash_register_id: 135\namount: !ruby/object:BigDecimal 18:0.150262E4\ntax: !ruby/object:BigDecimal 18:0.8538E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1588E4\nstatus: 0\ndate_sale: 2019-04-15\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-179\nexpiration_date: 2019-05-20\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 42b319b6-a713-4ed7-a3f5-48110ac3efaf 2019-04-16 00:18:00.351049 5302 494 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.196 42b319b6-a713-4ed7-a3f5-48110ac3efaf 2019-04-16 00:18:00.419922 5303 330 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 189.186.37.196 42b319b6-a713-4ed7-a3f5-48110ac3efaf 2019-04-16 00:18:00.468935 5304 380 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-179 cancelada. 189.186.37.196 e0bd1782-f039-4243-990c-941c93c022ed 2019-04-16 00:29:26.616753 5305 330 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 12 \N 189.186.37.196 e0bd1782-f039-4243-990c-941c93c022ed 2019-04-16 00:29:26.649523 5306 494 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.37.196 e0bd1782-f039-4243-990c-941c93c022ed 2019-04-16 00:29:26.681018 5420 591 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.37.196 788c741e-4635-4fa3-ab8f-788b823fffe2 2019-04-16 20:34:42.470766 5307 381 Sale \N \N 2 User \N create ---\ncustomer_id: 36\nuser_id: 2\nopen_cash_register_id: 136\namount: !ruby/object:BigDecimal 18:0.669E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-04-15\nsaletype: 0\nseller_id: 1\nsale_code: PV1-V-200\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 840ef4e3-01d0-4af2-a2a8-eadf7aa72e6f 2019-04-16 00:30:06.900961 5308 525 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.196 840ef4e3-01d0-4af2-a2a8-eadf7aa72e6f 2019-04-16 00:30:06.938441 5309 43 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 136\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: 'comida '\nexpense_date: 2019-04-15\nexpense_code: PV1-E-38\n 1 Egreso por 50.0 registrado 189.186.37.196 6406716e-f8ee-4d54-b9ea-02a0958434d5 2019-04-16 00:31:09.997093 5310 475 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 136\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 43\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.196 6406716e-f8ee-4d54-b9ea-02a0958434d5 2019-04-16 00:31:10.036753 5311 382 Sale \N \N 10 User \N create ---\ncustomer_id: 13\nuser_id: 10\nopen_cash_register_id: 135\namount: !ruby/object:BigDecimal 18:0.53362E3\ntax: !ruby/object:BigDecimal 18:0.8538E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.619E3\nstatus: 0\ndate_sale: 2019-04-15\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-180\nexpiration_date: 2019-05-20\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 4d9c41fb-82e4-40f1-886e-dbab8f950da3 2019-04-16 00:41:29.896376 5312 330 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 13 \N 189.186.37.196 4d9c41fb-82e4-40f1-886e-dbab8f950da3 2019-04-16 00:41:29.934327 5313 476 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 135\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.186E3\nmove_type: '1'\nsale_id: 382\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-180\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.219E3\nchange: !ruby/object:BigDecimal 18:0.33E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-180 189.186.37.196 3f08ab96-8b07-4ec2-abbc-b4d48c5515e1 2019-04-16 00:41:38.606486 5314 476 CashRegistersMove \N \N 10 User \N destroy ---\nopen_cash_register_id: 135\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.186E3\nmove_type: '1'\nsale_id: 382\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-180\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.219E3\nchange: !ruby/object:BigDecimal 18:0.33E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.37.196 dba3b44b-51cf-496d-a480-4691ded7b813 2019-04-16 00:41:46.676491 5315 533 Product \N \N 2 User \N create ---\nsku: ZAP-533\nname: DIXI665\ndescription: TENNIS CLOE\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 13\nproduct_service_key: '01010101'\n 1 El producto ZAP-533 fue creado. 189.186.37.196 e1d3304c-de86-460d-a3e2-2adc83215d26 2019-04-16 00:41:54.451785 5316 533 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000533'\n 2 \N 189.186.37.196 e1d3304c-de86-460d-a3e2-2adc83215d26 2019-04-16 00:41:54.502462 5317 574 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 533\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.196 e1d3304c-de86-460d-a3e2-2adc83215d26 2019-04-16 00:41:54.545061 5318 477 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 135\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.219E3\nmove_type: '1'\nsale_id: 382\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-180\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.219E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-180 189.186.37.196 173a6321-8f04-4641-bece-eacb2e1f530b 2019-04-16 00:41:58.489806 5319 382 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.196 c64c7e3a-0b21-4bb7-9df0-48bd6a385153 2019-04-16 00:42:03.678872 5320 81 Purchase \N \N 2 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-45\namount: !ruby/object:BigDecimal 18:0.79925E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.79925E4\nobservations: ''\npurchase_date: 2019-04-15\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-45 por $ 7992.5 MXN creada. 189.186.37.196 4af39af0-8127-4a36-83b9-f1a1f7d8a383 2019-04-16 00:45:30.282118 5321 263 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.37.196 4af39af0-8127-4a36-83b9-f1a1f7d8a383 2019-04-16 00:45:30.317091 5322 269 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.37.196 4af39af0-8127-4a36-83b9-f1a1f7d8a383 2019-04-16 00:45:30.353164 5323 574 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.37.196 4af39af0-8127-4a36-83b9-f1a1f7d8a383 2019-04-16 00:45:30.387492 5324 496 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.13E2\n 3 \N 189.186.37.196 4af39af0-8127-4a36-83b9-f1a1f7d8a383 2019-04-16 00:45:30.422933 5325 383 Sale \N \N 2 User \N create ---\ncustomer_id: 34\nuser_id: 2\nopen_cash_register_id: 136\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-04-15\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-201\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 6a1e156d-eb8f-470e-8c92-b1da8d273b2b 2019-04-16 00:52:16.989874 5326 200 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.37.196 6a1e156d-eb8f-470e-8c92-b1da8d273b2b 2019-04-16 00:52:17.029707 5327 384 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 135\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-04-15\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-181\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 0f7f15c5-6f3f-43a7-a2da-b2405873dbcf 2019-04-16 00:56:39.661732 5330 478 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 135\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 384\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-181\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-181 189.186.37.196 ef05fb42-6e2d-47ec-9dab-1b1f2fdf2b53 2019-04-16 00:57:02.155935 5331 385 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 136\namount: !ruby/object:BigDecimal 18:0.80086E3\ntax: !ruby/object:BigDecimal 18:0.12814E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.929E3\nstatus: 0\ndate_sale: 2019-04-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-202\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 22614984-c2fb-4069-94a0-2f291211437c 2019-04-16 01:09:30.451235 5332 193 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.37.196 22614984-c2fb-4069-94a0-2f291211437c 2019-04-16 01:09:30.487573 5333 385 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 6a5dbcce-6412-4a2e-8e88-3251667c81e0 2019-04-16 01:09:36.290385 5334 479 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 136\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.929E3\nmove_type: '1'\nsale_id: 385\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-202\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.71E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-202 189.186.37.196 6a5dbcce-6412-4a2e-8e88-3251667c81e0 2019-04-16 01:09:36.314063 5335 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-14 22:09:42.419029000 Z\n- &1 2019-04-15 20:44:27.510545000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-16 01:19:29.537423327 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934422\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946196\n mask_addr: 4294967295\nsign_in_count:\n- 135\n- 136\n 272 \N 200.68.181.212 f2b87922-dd28-4bd8-9143-82703ccc837a 2019-04-16 01:19:29.544556 5336 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NSBAYGTyMMtCsZZY-Wtq\n- 18Ue6vkb4bQZzHzmhbwy\n 273 \N 200.68.181.212 f2b87922-dd28-4bd8-9143-82703ccc837a 2019-04-16 01:19:29.559977 5337 133 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 136\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2627E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.605E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3105E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.196 b6bf14ca-6b09-4e8a-af19-f683461d382d 2019-04-16 01:40:42.622048 5338 136 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.196 b6bf14ca-6b09-4e8a-af19-f683461d382d 2019-04-16 01:40:42.642111 5339 134 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 135\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.1816E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.21E4\ncash_fund: !ruby/object:BigDecimal 18:0.676E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2776E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.196 8867283e-919a-4304-9b89-08c06656404a 2019-04-16 01:56:03.056843 5340 135 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.196 8867283e-919a-4304-9b89-08c06656404a 2019-04-16 01:56:03.077208 5341 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-04-14 16:09:12.854294000 Z\n- &1 2019-04-15 18:06:33.930025000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-16 16:07:01.936945074 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092299\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\nsign_in_count:\n- 37\n- 38\n 76 \N 189.186.37.196 0ff5c5c5-ff99-455a-b5bb-2ad220de8164 2019-04-16 16:07:01.967032 5342 11 User \N \N 11 User \N update ---\nunique_session_id:\n- r4KZNn8KRuL3j7qmV6LY\n- j13JV7Jsqp-HyWpPmaq-\n 77 \N 189.186.37.196 0ff5c5c5-ff99-455a-b5bb-2ad220de8164 2019-04-16 16:07:01.990371 5343 137 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.676E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 676.0 189.186.37.196 fa5f2075-e7c8-4217-a1e9-5585ecbd82fe 2019-04-16 16:10:04.930649 5344 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-04-13 16:36:37.741942000 Z\n- &1 2019-04-15 18:03:45.735612000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-16 16:15:28.047594273 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092299\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\nsign_in_count:\n- 82\n- 83\n 169 \N 189.186.37.196 9655a7c8-ef31-4fb7-8663-ab73e3f2ec40 2019-04-16 16:15:28.054063 5345 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 37YxsbPCszVftwXUzQFz\n- Mqqc_UNwgbmDGt1gZszr\n 170 \N 189.186.37.196 9655a7c8-ef31-4fb7-8663-ab73e3f2ec40 2019-04-16 16:15:28.06853 5346 138 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.605E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 605.0 189.186.37.196 cd8b8a5b-beee-40da-819c-4bfac0b0dd4a 2019-04-16 16:25:03.310549 5347 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-15 20:44:27.510545000 Z\n- &1 2019-04-16 01:19:29.537423000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-16 17:21:29.781133362 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946196\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938447\n mask_addr: 4294967295\nsign_in_count:\n- 136\n- 137\n 274 \N 200.68.151.143 ee0a3f75-17ea-4956-be06-a4fd2d97b4b1 2019-04-16 17:21:29.803262 5348 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 18Ue6vkb4bQZzHzmhbwy\n- g3pSoax-1RcwbDNs2qc2\n 275 \N 200.68.151.143 ee0a3f75-17ea-4956-be06-a4fd2d97b4b1 2019-04-16 17:21:29.834522 5349 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-13 19:53:13.360904000 Z\n- &1 2019-04-13 23:40:24.077000000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-16 17:26:45.679529958 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092299\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\nsign_in_count:\n- 137\n- 138\n 276 \N 189.186.37.196 86d443f6-0598-4e51-a30b-a3d4542c1510 2019-04-16 17:26:45.686257 5350 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 45vn9qyK_kV68UTs99YQ\n- 4aFGgzWtnzd5iZTysu2c\n 277 \N 189.186.37.196 86d443f6-0598-4e51-a30b-a3d4542c1510 2019-04-16 17:26:45.705236 5511 45 Expense \N \N 10 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 140\nquantity: !ruby/object:BigDecimal 18:0.5E3\nstatus: 1\nobservations: 'SUELDO ILSE '\nexpense_date: 2019-04-17\nexpense_code: PV2-E-6\n 1 Egreso por 500.0 registrado 189.186.37.196 916b0176-ce0d-42ef-82d7-600959c1607a 2019-04-17 23:57:53.237563 5351 534 Product \N \N 3 User \N create ---\nsku: BLU-534\nname: B-0030\ndescription: NARANJA CON ENCAJE VALENTINE\nprice_base: !ruby/object:BigDecimal 18:0.2995E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-534 fue creado. 189.186.37.196 ccef1914-dadb-4429-b5b9-d8f40da09ecf 2019-04-16 17:40:35.745282 5352 534 Product \N \N 3 User \N update ---\nbarcode:\n- ''\n- '0000534'\n 2 \N 189.186.37.196 ccef1914-dadb-4429-b5b9-d8f40da09ecf 2019-04-16 17:40:35.777689 5353 575 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 534\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.196 ccef1914-dadb-4429-b5b9-d8f40da09ecf 2019-04-16 17:40:35.810253 5354 535 Product \N \N 3 User \N create ---\nsku: BLU-535\nname: B-0051\ndescription: BLANCA FLOREADA MC\nprice_base: !ruby/object:BigDecimal 18:0.3495E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-535 fue creado. 189.186.37.196 40b239cf-0e1a-46f5-b9a1-ccb6aa7e365a 2019-04-16 17:41:46.45669 5355 535 Product \N \N 3 User \N update ---\nbarcode:\n- ''\n- '0000535'\n 2 \N 189.186.37.196 40b239cf-0e1a-46f5-b9a1-ccb6aa7e365a 2019-04-16 17:41:46.504279 5356 576 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 535\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.196 40b239cf-0e1a-46f5-b9a1-ccb6aa7e365a 2019-04-16 17:41:46.546861 5357 536 Product \N \N 3 User \N create ---\nsku: BLU-536\nname: B-0068\ndescription: ROSA DE UNA MANGA MUY MUY\nprice_base: !ruby/object:BigDecimal 18:0.3045E3\nprice_sale: !ruby/object:BigDecimal 18:0.609E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-536 fue creado. 189.186.37.196 84000be3-cee0-41be-b1a7-ea3fee58bd46 2019-04-16 17:43:09.371616 5358 536 Product \N \N 3 User \N update ---\nbarcode:\n- ''\n- '0000536'\n 2 \N 189.186.37.196 84000be3-cee0-41be-b1a7-ea3fee58bd46 2019-04-16 17:43:09.400268 5359 577 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 536\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.196 84000be3-cee0-41be-b1a7-ea3fee58bd46 2019-04-16 17:43:09.431449 5360 537 Product \N \N 3 User \N create ---\nsku: BLU-537\nname: B-0018\ndescription: FLOREADA MICHEL\nprice_base: !ruby/object:BigDecimal 18:0.2495E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-537 fue creado. 189.186.37.196 da8f163c-f07a-4e17-849d-8a620536144c 2019-04-16 17:47:10.946099 5361 537 Product \N \N 3 User \N update ---\nbarcode:\n- ''\n- '0000537'\n 2 \N 189.186.37.196 da8f163c-f07a-4e17-849d-8a620536144c 2019-04-16 17:47:10.972861 5362 578 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 537\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.196 da8f163c-f07a-4e17-849d-8a620536144c 2019-04-16 17:47:11.000242 5363 82 Purchase \N \N 3 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-35\namount: !ruby/object:BigDecimal 18:0.69475E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.69475E4\nobservations: NO ESTABAN EN SISTEMA\npurchase_date: 2019-04-16\nuser_id: '3'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-35 por $ 6947.5 MXN creada. 189.186.37.196 598c0bd4-258e-486f-b6c6-e7dd3f18522b 2019-04-16 17:48:02.790303 5364 575 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.37.196 598c0bd4-258e-486f-b6c6-e7dd3f18522b 2019-04-16 17:48:02.820694 5365 576 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.37.196 598c0bd4-258e-486f-b6c6-e7dd3f18522b 2019-04-16 17:48:02.856212 5366 579 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 60\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.11E2\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.196 598c0bd4-258e-486f-b6c6-e7dd3f18522b 2019-04-16 17:48:02.901384 5367 577 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.37.196 598c0bd4-258e-486f-b6c6-e7dd3f18522b 2019-04-16 17:48:02.924227 5368 578 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.7E1\n 2 \N 189.186.37.196 598c0bd4-258e-486f-b6c6-e7dd3f18522b 2019-04-16 17:48:02.946238 5369 83 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-46\namount: !ruby/object:BigDecimal 18:0.24E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.24E3\nobservations: ''\npurchase_date: 2019-04-16\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-46 por $ 240.0 MXN creada. 189.186.37.196 c2a0e30a-fa6d-4f40-8552-c6bd8c02e860 2019-04-16 17:50:00.829903 5370 58 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.11E2\n 2 \N 189.186.37.196 c2a0e30a-fa6d-4f40-8552-c6bd8c02e860 2019-04-16 17:50:00.854788 5371 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-13 23:40:24.077000000 Z\n- &1 2019-04-16 17:26:45.679529000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-16 19:12:02.768830884 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092299\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\nsign_in_count:\n- 138\n- 139\n 278 \N 189.186.37.196 c1021d5b-0f83-4cb7-b5bb-0472fb1e7add 2019-04-16 19:12:02.790968 5372 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 4aFGgzWtnzd5iZTysu2c\n- zEbxFhYdP-2ZrHAPAT2T\n 279 \N 189.186.37.196 c1021d5b-0f83-4cb7-b5bb-0472fb1e7add 2019-04-16 19:12:02.810241 5373 538 Product \N \N 2 User \N create ---\nsku: BOL-538\nname: TIRX128\ndescription: BOLSO CLOE\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-538 fue creado. 189.186.37.196 4bc828ef-af29-4e2a-b701-0621895d33c3 2019-04-16 19:22:13.656206 5374 538 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000538'\n 2 \N 189.186.37.196 4bc828ef-af29-4e2a-b701-0621895d33c3 2019-04-16 19:22:13.704175 5375 580 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 538\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.196 4bc828ef-af29-4e2a-b701-0621895d33c3 2019-04-16 19:22:13.739827 5376 539 Product \N \N 2 User \N create ---\nsku: BOL-539\nname: BIXA573\ndescription: BACKPACK CLOE\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-539 fue creado. 189.186.37.196 9a2ec901-31b8-4f56-b5ea-70879242d136 2019-04-16 19:23:44.770742 5377 539 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000539'\n 2 \N 189.186.37.196 9a2ec901-31b8-4f56-b5ea-70879242d136 2019-04-16 19:23:44.801656 5378 581 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 539\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.196 9a2ec901-31b8-4f56-b5ea-70879242d136 2019-04-16 19:23:44.829811 5379 540 Product \N \N 2 User \N create ---\nsku: BOL-540\nname: LHAN344\ndescription: BACKPACK CLOE\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-540 fue creado. 189.186.37.196 145cbd4d-67d4-492c-aabe-c175c228bbaf 2019-04-16 19:24:37.489303 5380 540 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000540'\n 2 \N 189.186.37.196 145cbd4d-67d4-492c-aabe-c175c228bbaf 2019-04-16 19:24:37.523774 5381 582 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 540\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.196 145cbd4d-67d4-492c-aabe-c175c228bbaf 2019-04-16 19:24:37.55393 5382 541 Product \N \N 2 User \N create ---\nsku: BOL-541\nname: VAIM222\ndescription: BACKPACK CLOE\nprice_base: !ruby/object:BigDecimal 18:0.9495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-541 fue creado. 189.186.37.196 6aee7ca0-7b86-402d-baa0-ad3098f5008d 2019-04-16 19:25:22.353293 5383 541 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000541'\n 2 \N 189.186.37.196 6aee7ca0-7b86-402d-baa0-ad3098f5008d 2019-04-16 19:25:22.378716 5384 583 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 541\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.196 6aee7ca0-7b86-402d-baa0-ad3098f5008d 2019-04-16 19:25:22.415472 5385 542 Product \N \N 2 User \N create ---\nsku: BOL-542\nname: ADEY161\ndescription: BOLSO CLOE\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-542 fue creado. 189.186.37.196 74ee2334-c072-46ae-95a8-3c76748e0e1c 2019-04-16 19:26:34.840612 5386 542 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000542'\n 2 \N 189.186.37.196 74ee2334-c072-46ae-95a8-3c76748e0e1c 2019-04-16 19:26:34.867981 5387 584 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 542\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.196 74ee2334-c072-46ae-95a8-3c76748e0e1c 2019-04-16 19:26:34.894581 5388 543 Product \N \N 2 User \N create ---\nsku: BOL-543\nname: MOXZ820\ndescription: BOLSO CLOE\nprice_base: !ruby/object:BigDecimal 18:0.9495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-543 fue creado. 189.186.37.196 0b443691-6fa7-4386-ba9b-4956e9070c2a 2019-04-16 19:30:01.153731 5389 543 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000543'\n 2 \N 189.186.37.196 0b443691-6fa7-4386-ba9b-4956e9070c2a 2019-04-16 19:30:01.181329 5390 585 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 543\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.196 0b443691-6fa7-4386-ba9b-4956e9070c2a 2019-04-16 19:30:01.210188 5391 544 Product \N \N 2 User \N create ---\nsku: BOL-544\nname: KIYN799\ndescription: BOLSO CLOE\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-544 fue creado. 189.186.37.196 599bebf4-a2d5-4d94-b376-9d5182371a8a 2019-04-16 19:31:26.129229 5392 544 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000544'\n 2 \N 189.186.37.196 599bebf4-a2d5-4d94-b376-9d5182371a8a 2019-04-16 19:31:26.166024 5394 545 Product \N \N 2 User \N create ---\nsku: BOL-545\nname: KIYN801\ndescription: BOLSO CLOE\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-545 fue creado. 189.186.37.196 89f373a5-efb5-4e6c-bd8b-7fcb8ca3e370 2019-04-16 19:32:59.932301 5395 545 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000545'\n 2 \N 189.186.37.196 89f373a5-efb5-4e6c-bd8b-7fcb8ca3e370 2019-04-16 19:32:59.970656 5396 587 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 545\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.196 89f373a5-efb5-4e6c-bd8b-7fcb8ca3e370 2019-04-16 19:33:00.001356 5397 84 Purchase \N \N 2 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-47\namount: !ruby/object:BigDecimal 18:0.147415E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.147415E5\nobservations: ''\npurchase_date: 2019-04-16\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-47 por $ 14741.5 MXN creada. 189.186.37.196 45e95fcf-efd2-433b-b6c3-3cf71f680786 2019-04-16 19:33:08.978508 5398 566 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.37.196 45e95fcf-efd2-433b-b6c3-3cf71f680786 2019-04-16 19:33:09.003435 5399 498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.37.196 45e95fcf-efd2-433b-b6c3-3cf71f680786 2019-04-16 19:33:09.038698 5400 504 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.37.196 45e95fcf-efd2-433b-b6c3-3cf71f680786 2019-04-16 19:33:09.062071 5401 588 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 358\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.196 45e95fcf-efd2-433b-b6c3-3cf71f680786 2019-04-16 19:33:09.089356 5402 589 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 351\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.196 45e95fcf-efd2-433b-b6c3-3cf71f680786 2019-04-16 19:33:09.119689 5403 580 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.37.196 45e95fcf-efd2-433b-b6c3-3cf71f680786 2019-04-16 19:33:09.144375 5404 581 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.37.196 45e95fcf-efd2-433b-b6c3-3cf71f680786 2019-04-16 19:33:09.16869 5405 582 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.37.196 45e95fcf-efd2-433b-b6c3-3cf71f680786 2019-04-16 19:33:09.191792 5406 583 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.37.196 45e95fcf-efd2-433b-b6c3-3cf71f680786 2019-04-16 19:33:09.214821 5407 584 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.37.196 45e95fcf-efd2-433b-b6c3-3cf71f680786 2019-04-16 19:33:09.240308 5408 585 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.37.196 45e95fcf-efd2-433b-b6c3-3cf71f680786 2019-04-16 19:33:09.266571 5409 586 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.37.196 45e95fcf-efd2-433b-b6c3-3cf71f680786 2019-04-16 19:33:09.297229 5410 587 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.37.196 45e95fcf-efd2-433b-b6c3-3cf71f680786 2019-04-16 19:33:09.330274 5411 546 Product \N \N 2 User \N create ---\nsku: BOL-546\nname: " AJIR873"\ndescription: BOLSA AZUL REY CLOE\nprice_base: !ruby/object:BigDecimal 18:0.595E3\nprice_sale: !ruby/object:BigDecimal 18:0.119E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-546 fue creado. 189.186.37.196 46ccb6ea-6292-4ee3-8d47-78515bec24bc 2019-04-16 20:33:08.407903 5412 546 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000546'\n 2 \N 189.186.37.196 46ccb6ea-6292-4ee3-8d47-78515bec24bc 2019-04-16 20:33:08.45462 5413 590 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 546\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.196 46ccb6ea-6292-4ee3-8d47-78515bec24bc 2019-04-16 20:33:08.491658 5414 547 Product \N \N 2 User \N create ---\nsku: ZAP-547\nname: LAET768\ndescription: BOTAS CLOE\nprice_base: !ruby/object:BigDecimal 18:0.11995E4\nprice_sale: !ruby/object:BigDecimal 18:0.2399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 13\nproduct_service_key: '01010101'\n 1 El producto ZAP-547 fue creado. 189.186.37.196 7e3d88c8-c4f5-4af6-b5d5-a24db3b5c709 2019-04-16 20:34:33.443501 5415 547 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000547'\n 2 \N 189.186.37.196 7e3d88c8-c4f5-4af6-b5d5-a24db3b5c709 2019-04-16 20:34:33.489218 5416 591 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 547\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.196 7e3d88c8-c4f5-4af6-b5d5-a24db3b5c709 2019-04-16 20:34:33.527058 5417 85 Purchase \N \N 2 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-48\namount: !ruby/object:BigDecimal 18:0.2544E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2544E4\nobservations: ''\npurchase_date: 2019-04-16\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-48 por $ 2544.0 MXN creada. 189.186.37.196 788c741e-4635-4fa3-ab8f-788b823fffe2 2019-04-16 20:34:42.379011 5418 592 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 443\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.196 788c741e-4635-4fa3-ab8f-788b823fffe2 2019-04-16 20:34:42.408081 5421 386 Sale \N \N 2 User \N create ---\ncustomer_id: 49\nuser_id: 2\nopen_cash_register_id: 138\namount: !ruby/object:BigDecimal 18:0.119E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.119E4\nstatus: 0\ndate_sale: 2019-04-16\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-203\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 e9e299a9-a5b8-4c61-b2a3-b60461373635 2019-04-16 20:37:29.542551 5422 590 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.37.196 e9e299a9-a5b8-4c61-b2a3-b60461373635 2019-04-16 20:37:29.57403 5423 480 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 138\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.75E3\nmove_type: '1'\nsale_id: 386\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4858152465545465'\n 1 \N 189.186.37.196 60f81211-c7ab-46c9-a1bd-2e50e57e05ce 2019-04-16 20:39:22.243048 5424 386 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.196 60f81211-c7ab-46c9-a1bd-2e50e57e05ce 2019-04-16 20:39:22.265597 5425 480 CashRegistersMove \N \N 2 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV1-V-203 189.186.37.196 60f81211-c7ab-46c9-a1bd-2e50e57e05ce 2019-04-16 20:39:22.27945 5426 387 Sale \N \N 2 User \N create ---\ncustomer_id: 69\nuser_id: 2\nopen_cash_register_id: 138\namount: !ruby/object:BigDecimal 18:0.137845E4\ntax: !ruby/object:BigDecimal 18:0.22055E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-04-16\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-204\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 61e45414-d16b-44f5-8313-71cf969ddc36 2019-04-16 22:18:59.99528 5427 47 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.37.196 61e45414-d16b-44f5-8313-71cf969ddc36 2019-04-16 22:19:00.034713 5428 44 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 138\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: COMIDA\nexpense_date: 2019-04-16\nexpense_code: PV1-E-39\n 1 Egreso por 50.0 registrado 189.186.37.196 522e230a-1956-4ed9-a3f4-a762e7a3970e 2019-04-16 22:20:05.143017 5429 481 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 138\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 44\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.196 522e230a-1956-4ed9-a3f4-a762e7a3970e 2019-04-16 22:20:05.163596 5430 388 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 138\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-04-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-205\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 e9b1e0f5-e335-4c9e-a18d-35b1431a2641 2019-04-16 23:05:57.164551 5431 524 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.37.196 e9b1e0f5-e335-4c9e-a18d-35b1431a2641 2019-04-16 23:05:57.194099 5432 388 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 a1f76289-463e-44a8-a238-a50785af5d90 2019-04-16 23:06:03.955005 5433 482 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 138\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 388\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-205\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-205 189.186.37.196 a1f76289-463e-44a8-a238-a50785af5d90 2019-04-16 23:06:03.987295 5434 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-04-12 01:35:58.237806000 Z\n- &1 2019-04-16 00:15:50.891902000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-16 23:12:35.562705066 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096545\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\nsign_in_count:\n- 42\n- 43\n 86 \N 189.186.37.196 96d31c1f-a584-4783-9dd5-46b32c127b7f 2019-04-16 23:12:35.573958 5435 10 User \N \N 10 User \N update ---\nunique_session_id:\n- H2TuGB_xc1sNVB8oceVx\n- PJ7fBBgS2HxxTR5E6gCf\n 87 \N 189.186.37.196 96d31c1f-a584-4783-9dd5-46b32c127b7f 2019-04-16 23:12:35.595331 5436 69 Customer \N \N 10 User \N update ---\ncredit_limit:\n- !ruby/object:BigDecimal 18:0.3E4\n- !ruby/object:BigDecimal 18:0.4E4\n 2 El cliente CLAUDIA CASTILLO fue registrado. 189.186.37.196 ecbb1359-05c7-4977-ae22-1fe9c74a0984 2019-04-16 23:16:38.140844 5437 389 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 138\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-04-16\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-206\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 345f34de-f5d7-4032-b7ed-736cc531f074 2019-04-16 23:51:02.406893 5438 201 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.37.196 345f34de-f5d7-4032-b7ed-736cc531f074 2019-04-16 23:51:02.474949 5439 389 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 45c415ab-f5f4-4227-88a0-17e7dd55c7ce 2019-04-16 23:51:06.519491 5440 483 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 138\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 389\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-206\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-206 189.186.37.196 45c415ab-f5f4-4227-88a0-17e7dd55c7ce 2019-04-16 23:51:06.545667 5441 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-16 01:19:29.537423000 Z\n- &1 2019-04-16 17:21:29.781133000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-17 01:42:45.129155870 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946196\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938447\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938447\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938206\n mask_addr: 4294967295\nsign_in_count:\n- 137\n- 138\n 276 \N 200.68.150.158 b1e44ffb-e3b9-47eb-a1ea-0d2359fcb248 2019-04-17 01:42:45.168404 5442 4 User \N \N 4 User \N update ---\nunique_session_id:\n- g3pSoax-1RcwbDNs2qc2\n- 7KXbVYzzDGRqWhw4qgPJ\n 277 \N 200.68.150.158 b1e44ffb-e3b9-47eb-a1ea-0d2359fcb248 2019-04-17 01:42:45.197643 5443 135 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 137\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.676E3\nphysical_cash: !ruby/object:BigDecimal 18:0.676E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.196 550398f5-ae11-4521-b86e-783edd75883e 2019-04-17 01:56:32.33025 5444 137 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.196 550398f5-ae11-4521-b86e-783edd75883e 2019-04-17 01:56:32.345745 5445 136 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 138\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2248E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.553E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2053E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.196 14874e9a-8974-4ceb-ba38-2d34bf141e10 2019-04-17 02:06:32.513841 5446 138 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.196 14874e9a-8974-4ceb-ba38-2d34bf141e10 2019-04-17 02:06:32.527473 5447 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-13 21:48:41.787757000 Z\n- &1 2019-04-14 19:22:59.020088000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-17 02:09:05.136467026 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092299\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\nsign_in_count:\n- 80\n- 81\n 162 \N 189.186.37.196 3809fe9e-8fa1-4984-93db-88f7d4b59d2d 2019-04-17 02:09:05.144486 5448 12 User \N \N 12 User \N update ---\nunique_session_id:\n- c7yvy3pYbKP9F96TfXoX\n- vB33DK85SvJaETm4i3zc\n 163 \N 189.186.37.196 3809fe9e-8fa1-4984-93db-88f7d4b59d2d 2019-04-17 02:09:05.160066 5449 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-14 19:22:59.020088000 Z\n- &1 2019-04-17 02:09:05.136467000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-17 02:09:54.460858529 Z\nsign_in_count:\n- 81\n- 82\n 164 \N 189.186.37.196 5f653ece-874f-45f9-aa37-6329704463a9 2019-04-17 02:09:54.467382 5450 12 User \N \N 12 User \N update ---\nunique_session_id:\n- vB33DK85SvJaETm4i3zc\n- nWW9WUv43yrEweVctfm4\n 165 \N 189.186.37.196 5f653ece-874f-45f9-aa37-6329704463a9 2019-04-17 02:09:54.481553 5451 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-04-15 18:03:45.735612000 Z\n- &1 2019-04-16 16:15:28.047594000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-17 16:17:13.528303887 Z\nsign_in_count:\n- 83\n- 84\n 171 \N 189.186.37.196 5d3895cd-4413-4f7d-8716-ba03cad9ed41 2019-04-17 16:17:13.562673 5452 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Mqqc_UNwgbmDGt1gZszr\n- 7rdnbNHNyoiPZkjz4MJq\n 172 \N 189.186.37.196 5d3895cd-4413-4f7d-8716-ba03cad9ed41 2019-04-17 16:17:13.605647 5453 139 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.553E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 553.0 189.186.37.196 e28a7b6f-07f7-4b4a-814b-a9d8f4b56139 2019-04-17 16:37:28.318098 5454 11 User \N \N 11 User \N update ---\nlast_sign_in_at:\n- 2019-04-15 18:06:33.930025000 Z\n- &1 2019-04-16 16:07:01.936945000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-17 16:43:29.711402887 Z\nsign_in_count:\n- 38\n- 39\n 78 \N 189.186.37.196 d9072023-6fb5-485a-9883-f4c4613fada6 2019-04-17 16:43:29.72105 5455 11 User \N \N 11 User \N update ---\nunique_session_id:\n- j13JV7Jsqp-HyWpPmaq-\n- NsRGxsYLS2pPgzojQyrc\n 79 \N 189.186.37.196 d9072023-6fb5-485a-9883-f4c4613fada6 2019-04-17 16:43:29.737568 5456 140 OpenCashRegister \N \N 11 User \N create ---\ncash_register_id: 2\nuser_id: 11\ninitial_cash: !ruby/object:BigDecimal 18:0.676E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 676.0 189.186.37.196 2e03c906-44d1-4d71-bd70-6b31b552a2fd 2019-04-17 16:45:25.304519 5457 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-16 17:21:29.781133000 Z\n- &1 2019-04-17 01:42:45.129155000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-17 19:08:21.607669581 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938447\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938206\n mask_addr: 4294967295\nsign_in_count:\n- 138\n- 139\n 278 \N 200.68.150.158 138d47e7-220f-4330-b553-96b5bbc227ab 2019-04-17 19:08:21.617073 5458 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7KXbVYzzDGRqWhw4qgPJ\n- P4tR2fCyENubPqDsnVAG\n 279 \N 200.68.150.158 138d47e7-220f-4330-b553-96b5bbc227ab 2019-04-17 19:08:21.635863 5459 71 Customer \N \N 11 User \N create ---\nnick_name: franccisca frias\nphone: "(667) 345-6900"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente franccisca frias fue registrado. 189.186.37.196 b86bdda7-eb4d-4422-bc07-446cdb16c151 2019-04-17 19:16:46.428683 5460 390 Sale \N \N 11 User \N create ---\ncustomer_id: 71\nuser_id: 11\nopen_cash_register_id: 140\namount: !ruby/object:BigDecimal 18:0.99052E3\ntax: !ruby/object:BigDecimal 18:0.15848E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1149E4\nstatus: 0\ndate_sale: 2019-04-17\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-182\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 32f35608-7fa3-4b70-b1aa-d45574543c9c 2019-04-17 19:17:41.993699 5461 545 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.37.196 32f35608-7fa3-4b70-b1aa-d45574543c9c 2019-04-17 19:17:42.024209 5462 390 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-182 cancelada. 189.186.37.196 79cfcc81-5a80-4ee4-935d-43e7d0e51787 2019-04-17 19:17:47.704923 5463 545 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.196 79cfcc81-5a80-4ee4-935d-43e7d0e51787 2019-04-17 19:17:47.732788 5464 72 Customer \N \N 11 User \N create ---\nnick_name: franccisca frias\nphone: "(667) 345-00__"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente franccisca frias fue registrado. 189.186.37.196 79d0b9d5-fd5c-42d5-9ee9-08dc02b20891 2019-04-17 19:18:29.467533 5465 73 Customer \N \N 11 User \N create ---\nnick_name: franccisca frias\nphone: "(667) 345-6900"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente franccisca frias fue registrado. 189.186.37.196 72ae9ea2-dc1e-49f2-b2b1-a3dff374d235 2019-04-17 19:19:48.619054 5466 391 Sale \N \N 11 User \N create ---\ncustomer_id: 73\nuser_id: 11\nopen_cash_register_id: 140\namount: !ruby/object:BigDecimal 18:0.99052E3\ntax: !ruby/object:BigDecimal 18:0.15848E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1149E4\nstatus: 0\ndate_sale: 2019-04-17\nsaletype: 2\nseller_id: 7\nsale_code: PV2-V-183\nexpiration_date: 2019-05-22\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 d15ec254-7850-4ca4-85d3-bbe80f03ead5 2019-04-17 19:20:06.857111 5467 545 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.196 d15ec254-7850-4ca4-85d3-bbe80f03ead5 2019-04-17 19:20:06.891169 5468 484 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 140\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.345E3\nmove_type: '1'\nsale_id: 391\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-183\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1149E4\nchange: !ruby/object:BigDecimal 18:0.804E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-183 189.186.37.196 e7aa5753-90cb-4d20-aaa8-6a71dcd8ec6a 2019-04-17 19:20:31.706764 5469 484 CashRegistersMove \N \N 11 User \N destroy ---\nopen_cash_register_id: 140\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.345E3\nmove_type: '1'\nsale_id: 391\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-183\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1149E4\nchange: !ruby/object:BigDecimal 18:0.804E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.37.196 848a2bbc-7263-48d8-bd9b-0b40a04ec3a7 2019-04-17 19:20:37.232424 5470 485 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 140\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 391\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-183\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1149E4\nchange: !ruby/object:BigDecimal 18:0.799E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-183 189.186.37.196 68f5bc95-91d7-4842-b90c-7ca4df00aa4e 2019-04-17 19:20:58.292709 5471 391 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.196 e74bc315-1524-4e91-a45c-5fbd1bf06dcb 2019-04-17 19:21:00.33944 5472 392 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 140\namount: !ruby/object:BigDecimal 18:0.8448E2\ntax: !ruby/object:BigDecimal 18:0.1352E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.98E2\nstatus: 0\ndate_sale: 2019-04-17\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-184\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 d9c50dfd-5840-4e79-bb50-2e61f56117c4 2019-04-17 19:38:03.605147 5473 367 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.11E2\n 5 \N 189.186.37.196 d9c50dfd-5840-4e79-bb50-2e61f56117c4 2019-04-17 19:38:03.63933 5474 392 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 51d1ef9d-3a5e-4d3f-9dda-37240b0161a3 2019-04-17 19:38:10.678894 5475 486 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 140\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.98E2\nmove_type: '1'\nsale_id: 392\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-184\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.98E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-184 189.186.37.196 51d1ef9d-3a5e-4d3f-9dda-37240b0161a3 2019-04-17 19:38:10.699048 5476 393 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 139\namount: !ruby/object:BigDecimal 18:0.90431E3\ntax: !ruby/object:BigDecimal 18:0.14469E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1049E4\nstatus: 0\ndate_sale: 2019-04-17\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-207\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 de9f88d1-e6a7-4538-8d07-f949d2efc64f 2019-04-17 21:15:22.396023 5477 183 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.37.196 de9f88d1-e6a7-4538-8d07-f949d2efc64f 2019-04-17 21:15:22.431868 5478 393 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 4a5e7218-e002-4028-b892-911940436091 2019-04-17 21:17:18.031383 5479 487 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 139\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1049E4\nmove_type: '1'\nsale_id: 393\ncardnumber: 2315\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-207\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-207 189.186.37.196 4a5e7218-e002-4028-b892-911940436091 2019-04-17 21:17:18.068471 5480 488 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 140\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 382\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.619E3\nchange: !ruby/object:BigDecimal 18:0.219E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-180 189.186.37.196 6fd1e3d8-2001-489b-a9b1-fc5d52974008 2019-04-17 21:43:14.218025 5481 382 Sale \N \N 11 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.196 645314b8-b51e-42a3-ac97-90251657b1ac 2019-04-17 21:43:25.34784 5482 394 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 140\namount: !ruby/object:BigDecimal 18:0.55948E3\ntax: !ruby/object:BigDecimal 18:0.8952E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-04-17\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-185\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 4ae84d63-2e97-4932-bd7c-ff96b85ad45b 2019-04-17 21:46:21.819062 5483 547 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.37.196 4ae84d63-2e97-4932-bd7c-ff96b85ad45b 2019-04-17 21:46:21.857706 5484 394 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 984f3fe2-de2b-4309-8b39-48771352a3fc 2019-04-17 21:46:28.073836 5485 489 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 140\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 394\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-185\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.649E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-185 189.186.37.196 984f3fe2-de2b-4309-8b39-48771352a3fc 2019-04-17 21:46:28.096537 5486 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-16 17:26:45.679529000 Z\n- &1 2019-04-16 19:12:02.768830000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-17 21:48:58.023271278 Z\nsign_in_count:\n- 139\n- 140\n 280 \N 189.186.37.196 4f0992b8-626f-45b5-a501-103e585d7ab2 2019-04-17 21:48:58.038013 5487 3 User \N \N 3 User \N update ---\nunique_session_id:\n- zEbxFhYdP-2ZrHAPAT2T\n- P_8GpRgzdqwCirKzLBox\n 281 \N 189.186.37.196 4f0992b8-626f-45b5-a501-103e585d7ab2 2019-04-17 21:48:58.064286 5535 477 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.37.196 a4a39aef-e478-485c-aea4-550043c97e54 2019-04-18 00:41:31.360553 5536 401 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 acd3a2e2-2638-4caa-85b2-0693c55900d2 2019-04-18 00:41:54.590492 5488 395 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 140\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-04-17\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-186\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 335066e4-236b-4cfa-b718-7454a6f4d2f9 2019-04-17 21:50:30.284263 5489 509 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.15E2\n 4 \N 189.186.37.196 335066e4-236b-4cfa-b718-7454a6f4d2f9 2019-04-17 21:50:30.312632 5490 395 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 280e58ae-1ab7-4f11-81b2-3a74a21708c8 2019-04-17 21:50:35.712503 5491 490 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 140\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 395\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-186\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-186 189.186.37.196 280e58ae-1ab7-4f11-81b2-3a74a21708c8 2019-04-17 21:50:35.736496 5492 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-17 01:42:45.129155000 Z\n- &1 2019-04-17 19:08:21.607669000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-17 21:55:22.693774494 Z\nsign_in_count:\n- 139\n- 140\n 280 \N 200.68.150.158 067fe77f-36d1-41a4-9711-e8feb20ff3e3 2019-04-17 21:55:22.70041 5493 4 User \N \N 4 User \N update ---\nunique_session_id:\n- P4tR2fCyENubPqDsnVAG\n- LXRi-nsjUDuAwXgLHGsU\n 281 \N 200.68.150.158 067fe77f-36d1-41a4-9711-e8feb20ff3e3 2019-04-17 21:55:22.714526 5494 491 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 140\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.149E3\nmove_type: '1'\nsale_id: 283\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.149E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-133 189.186.37.196 182f76c5-d829-4b6c-ba72-c05578ed5c73 2019-04-17 22:03:31.951773 5495 283 Sale \N \N 11 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.196 d35ad8c9-d68c-44f3-980f-163cc797b75c 2019-04-17 22:03:33.793788 5496 396 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 140\namount: !ruby/object:BigDecimal 18:0.55948E3\ntax: !ruby/object:BigDecimal 18:0.8952E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-04-17\nsaletype: 1\nseller_id: 7\nsale_code: PV2-V-187\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 903988f9-3c52-492f-ad62-475a77656645 2019-04-17 22:20:22.109519 5497 547 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.37.196 903988f9-3c52-492f-ad62-475a77656645 2019-04-17 22:20:22.144168 5498 396 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 4ac96063-29f0-4adb-9c3a-56999cc0b1a8 2019-04-17 22:20:26.603532 5499 492 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 140\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 396\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-187\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.649E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-187 189.186.37.196 4ac96063-29f0-4adb-9c3a-56999cc0b1a8 2019-04-17 22:20:26.626046 5500 397 Sale \N \N 11 User \N create ---\ncustomer_id: 1\nuser_id: 11\nopen_cash_register_id: 140\namount: !ruby/object:BigDecimal 18:0.969E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.969E3\nstatus: 0\ndate_sale: 2019-04-17\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-188\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 d04d0409-f111-4c4e-956c-7d073a931e95 2019-04-17 23:26:15.162868 5501 494 AvailableProduct \N \N 11 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.37.196 d04d0409-f111-4c4e-956c-7d073a931e95 2019-04-17 23:26:15.212202 5502 397 Sale \N \N 11 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 59b589cf-4283-4490-8f78-965cf9e6c53c 2019-04-17 23:26:22.21146 5503 493 CashRegistersMove \N \N 11 User \N create ---\nopen_cash_register_id: 140\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.969E3\nmove_type: '1'\nsale_id: 397\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-188\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.969E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-188 189.186.37.196 59b589cf-4283-4490-8f78-965cf9e6c53c 2019-04-17 23:26:22.248029 5504 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-04-16 00:15:50.891902000 Z\n- &1 2019-04-16 23:12:35.562705000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-17 23:34:46.825679778 Z\nsign_in_count:\n- 43\n- 44\n 88 \N 189.186.37.196 760dfed8-c74a-4741-84a6-91052ad28c52 2019-04-17 23:34:46.859927 5505 10 User \N \N 10 User \N update ---\nunique_session_id:\n- PJ7fBBgS2HxxTR5E6gCf\n- 5xzWJdEwshps-LyeBKss\n 89 \N 189.186.37.196 760dfed8-c74a-4741-84a6-91052ad28c52 2019-04-17 23:34:46.884082 5506 398 Sale \N \N 10 User \N create ---\ncustomer_id: 69\nuser_id: 10\nopen_cash_register_id: 140\namount: !ruby/object:BigDecimal 18:0.129224E4\ntax: !ruby/object:BigDecimal 18:0.20676E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2019-04-17\nsaletype: 0\nseller_id: 4\nsale_code: PV2-V-189\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 da89d903-a60e-48cb-b3ab-d11378496f5d 2019-04-17 23:37:06.114274 5507 343 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.37.196 da89d903-a60e-48cb-b3ab-d11378496f5d 2019-04-17 23:37:06.144194 5508 494 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 138\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 387\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '142568798758'\n 1 \N 189.186.37.196 62e2291f-63fd-4a8d-9e9f-c2b4d0ba64bc 2019-04-17 23:38:25.708243 5509 387 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.196 62e2291f-63fd-4a8d-9e9f-c2b4d0ba64bc 2019-04-17 23:38:25.731458 5510 494 CashRegistersMove \N \N 10 User \N update ---\nopen_cash_register_id:\n- 138\n- 140\n 2 movimiento de efectivo por venta con folio PV1-V-204 189.186.37.196 62e2291f-63fd-4a8d-9e9f-c2b4d0ba64bc 2019-04-17 23:38:25.747105 5584 165 Sale \N \N 12 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.196 53f2b9d5-d6c8-4a0a-a9b3-8e7d2d1cf54c 2019-04-23 00:21:50.320546 5512 495 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 140\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 45\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.196 916b0176-ce0d-42ef-82d7-600959c1607a 2019-04-17 23:57:53.269245 5513 399 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 140\namount: !ruby/object:BigDecimal 18:0.92069E3\ntax: !ruby/object:BigDecimal 18:0.14731E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1068E4\nstatus: 0\ndate_sale: 2019-04-17\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-190\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 2d62648c-2c65-4a16-b13f-8fbf57e22f11 2019-04-18 00:08:34.471041 5514 410 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.37.196 2d62648c-2c65-4a16-b13f-8fbf57e22f11 2019-04-18 00:08:34.509318 5515 411 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.37.196 2d62648c-2c65-4a16-b13f-8fbf57e22f11 2019-04-18 00:08:34.543301 5516 399 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 c1bcdc46-bf94-4fe9-b1ca-6ab65703a652 2019-04-18 00:08:46.379324 5517 496 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 140\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1068E4\nmove_type: '1'\nsale_id: 399\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-190\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.32E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-190 189.186.37.196 c1bcdc46-bf94-4fe9-b1ca-6ab65703a652 2019-04-18 00:08:46.413794 5518 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-17 19:08:21.607669000 Z\n- &1 2019-04-17 21:55:22.693774000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-18 00:12:20.145042832 Z\nsign_in_count:\n- 140\n- 141\n 282 \N 200.68.150.158 fe1357ec-7d4f-476f-9e5b-7c0a9012539a 2019-04-18 00:12:20.153089 5519 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LXRi-nsjUDuAwXgLHGsU\n- Fxirszbz_kvCRBnxHWzw\n 283 \N 200.68.150.158 fe1357ec-7d4f-476f-9e5b-7c0a9012539a 2019-04-18 00:12:20.171738 5520 400 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 139\namount: !ruby/object:BigDecimal 18:0.103362E4\ntax: !ruby/object:BigDecimal 18:0.16538E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-04-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-208\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 df804191-1b74-488e-94a0-78625f1610e0 2019-04-18 00:12:46.687463 5521 248 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.37.196 df804191-1b74-488e-94a0-78625f1610e0 2019-04-18 00:12:46.732768 5522 400 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 1b21b7a0-5a64-4288-8d4b-a0005c84900a 2019-04-18 00:12:57.024243 5523 497 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 139\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 400\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-208\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.18E4\nchange: !ruby/object:BigDecimal 18:0.601E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-208 189.186.37.196 1b21b7a0-5a64-4288-8d4b-a0005c84900a 2019-04-18 00:12:57.070232 5524 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-16 19:12:02.768830000 Z\n- &1 2019-04-17 21:48:58.023271000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-18 00:14:21.874346151 Z\nsign_in_count:\n- 140\n- 141\n 282 \N 189.186.37.196 1cc5739d-8da1-4d3c-bc8c-55072fa62a77 2019-04-18 00:14:21.882666 5525 3 User \N \N 3 User \N update ---\nunique_session_id:\n- P_8GpRgzdqwCirKzLBox\n- 7JKthKm_fojvb9MeZzR5\n 283 \N 189.186.37.196 1cc5739d-8da1-4d3c-bc8c-55072fa62a77 2019-04-18 00:14:21.901724 5526 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-17 21:48:58.023271000 Z\n- &1 2019-04-18 00:14:21.874346000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-18 00:23:34.776824806 Z\nsign_in_count:\n- 141\n- 142\n 284 \N 189.186.37.196 d2087afb-6c85-4755-8024-a825a08fa2ca 2019-04-18 00:23:34.785019 5527 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 7JKthKm_fojvb9MeZzR5\n- ao2Fb_GKVL-r3WNf82FA\n 285 \N 189.186.37.196 d2087afb-6c85-4755-8024-a825a08fa2ca 2019-04-18 00:23:34.808784 5528 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-17 02:09:05.136467000 Z\n- &1 2019-04-17 02:09:54.460858000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-18 00:24:06.996496951 Z\nsign_in_count:\n- 82\n- 83\n 166 \N 189.186.37.196 d51f0b40-e772-42aa-b0e2-aa3dab97a099 2019-04-18 00:24:07.00542 5529 12 User \N \N 12 User \N update ---\nunique_session_id:\n- nWW9WUv43yrEweVctfm4\n- QV4tpfK19g87x3nwEpqR\n 167 \N 189.186.37.196 d51f0b40-e772-42aa-b0e2-aa3dab97a099 2019-04-18 00:24:07.026561 5530 46 Expense \N \N 12 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 139\nquantity: !ruby/object:BigDecimal 18:0.12E4\nstatus: 1\nobservations: SUELDO ANABELLY\nexpense_date: 2019-04-17\nexpense_code: PV1-E-40\n 1 Egreso por 1200.0 registrado 189.186.37.196 cc670abb-38aa-48cb-baa2-f1dbc13ebdc3 2019-04-18 00:31:29.740406 5531 498 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 139\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 46\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.196 cc670abb-38aa-48cb-baa2-f1dbc13ebdc3 2019-04-18 00:31:29.770277 5532 499 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.769E3\nmove_type: '1'\nsale_id: 178\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.769E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.196 4b4fcdaf-a937-4259-88fb-4fa3ba4eb4f9 2019-04-18 00:36:23.673983 5533 499 CashRegistersMove \N \N 12 User \N update ---\nopen_cash_register_id:\n- 49\n- 139\n 2 movimiento de efectivo por venta con folio PV1-V-102 189.186.37.196 4b4fcdaf-a937-4259-88fb-4fa3ba4eb4f9 2019-04-18 00:36:23.700798 5534 401 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 140\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-04-17\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-191\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 a4a39aef-e478-485c-aea4-550043c97e54 2019-04-18 00:41:31.308817 13229 613 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '613'\n is_parent: false\n sku: BOL-613\n name: OZAI891\n description: MOCHILA CLOE NEGRA CON MASCADA AZUL Y ROJO\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: OZAI.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170723434'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-17 23:02:37.908189'\n updated_at: &12 2019-08-19 00:58:44.391274891 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '613'\n sku: BOL-613\n name: OZAI891\n description: MOCHILA CLOE NEGRA CON MASCADA AZUL Y ROJO\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-17 23:02:37.908189'\n updated_at: '2019-07-17 23:02:37.908189'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170723434'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '613'\n type: *3\n value: 613\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-613\n type: *7\n value: BOL-613\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: OZAI891\n type: *8\n value: OZAI891\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCHILA CLOE NEGRA CON MASCADA AZUL Y ROJO\n type: *6\n value: MOCHILA CLOE NEGRA CON MASCADA AZUL Y ROJO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: OZAI.jpg\n type: *2\n value: OZAI.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170723434'\n type: *2\n value: '7509170723434'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-17 23:02:37.908189'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- OZAI.jpg\n 2 El producto BOL-613 fue modificado. 189.186.213.107 7d1c0459-4186-4403-989a-6f51e3731a00 2019-08-19 00:58:44.438835 5537 500 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 140\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 401\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-191\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-191 189.186.37.196 acd3a2e2-2638-4caa-85b2-0693c55900d2 2019-04-18 00:41:54.619697 5538 501 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.249E3\nmove_type: '1'\nsale_id: 174\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.251E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.196 7e0c5702-144b-400a-be77-e53665a22a17 2019-04-18 00:53:14.594109 5539 501 CashRegistersMove \N \N 12 User \N update ---\nopen_cash_register_id:\n- 49\n- 139\n 2 movimiento de efectivo por venta con folio PV1-V-98 189.186.37.196 7e0c5702-144b-400a-be77-e53665a22a17 2019-04-18 00:53:14.631537 5540 137 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 140\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.633E4\namount_out: !ruby/object:BigDecimal 18:0.5E3\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.555E4\ncash_fund: !ruby/object:BigDecimal 18:0.656E3\nphysical_cash: !ruby/object:BigDecimal 18:0.6206E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.196 ee707b17-2144-401f-b2fc-8189c66fa04b 2019-04-18 01:53:14.036164 5541 140 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.196 ee707b17-2144-401f-b2fc-8189c66fa04b 2019-04-18 01:53:14.056161 5542 138 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 139\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.3266E4\namount_out: !ruby/object:BigDecimal 18:0.12E4\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.571E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1571E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.196 cce9b58b-e944-4e77-a4e7-b94ed564a627 2019-04-18 01:56:00.234541 5543 139 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.196 cce9b58b-e944-4e77-a4e7-b94ed564a627 2019-04-18 01:56:00.254907 5544 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-04-16 23:12:35.562705000 Z\n- &1 2019-04-17 23:34:46.825679000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-22 16:07:26.689389437 Z\nsign_in_count:\n- 44\n- 45\n 90 \N 189.186.37.196 8e1d80d7-9b86-4091-9f65-4888dfaea70d 2019-04-22 16:07:26.720845 5545 10 User \N \N 10 User \N update ---\nunique_session_id:\n- 5xzWJdEwshps-LyeBKss\n- fjU9VAkTxGP3-AgQVbza\n 91 \N 189.186.37.196 8e1d80d7-9b86-4091-9f65-4888dfaea70d 2019-04-22 16:07:26.742342 5546 141 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.656E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 656.0 189.186.37.196 80713867-2348-446e-bcb3-82a474e6aa6d 2019-04-22 16:07:30.225048 5547 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-17 02:09:54.460858000 Z\n- &1 2019-04-18 00:24:06.996496000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-22 19:26:30.030284721 Z\nsign_in_count:\n- 83\n- 84\n 168 \N 189.186.37.196 ca8d6eb0-1380-4bfe-8d01-c6ec441886bc 2019-04-22 19:26:30.070881 5548 12 User \N \N 12 User \N update ---\nunique_session_id:\n- QV4tpfK19g87x3nwEpqR\n- ifKGj2dt_7X6WqVnF8gW\n 169 \N 189.186.37.196 ca8d6eb0-1380-4bfe-8d01-c6ec441886bc 2019-04-22 19:26:30.096313 5549 142 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.571E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 571.0 189.186.37.196 361bdd29-9532-4967-891e-607c1846ed8f 2019-04-22 19:26:34.202153 5550 402 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 142\namount: !ruby/object:BigDecimal 18:0.146466E4\ntax: !ruby/object:BigDecimal 18:0.23435E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.169901E4\nstatus: 0\ndate_sale: 2019-04-22\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-209\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 6afe2bbf-01ab-4199-96f3-a6613e309ea1 2019-04-22 19:26:50.570506 5551 53 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.37.196 6afe2bbf-01ab-4199-96f3-a6613e309ea1 2019-04-22 19:26:50.610008 5552 402 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 7928925d-967d-4ac1-a065-598f29878706 2019-04-22 19:28:22.115895 5553 502 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 142\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 402\ncardnumber: 2383\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-209\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-209 189.186.37.196 7928925d-967d-4ac1-a065-598f29878706 2019-04-22 19:28:22.153372 5554 503 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 142\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.119901E4\nmove_type: '1'\nsale_id: 402\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-209\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.99E0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-209 189.186.37.196 df46af8c-3a64-4213-9666-853120da076c 2019-04-22 19:28:31.09875 5555 403 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 142\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-04-22\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-210\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 9c34367f-b106-4687-9fc9-8d9f596b0b8f 2019-04-22 19:34:39.239993 5556 462 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.37.196 9c34367f-b106-4687-9fc9-8d9f596b0b8f 2019-04-22 19:34:39.27487 5557 403 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 44fc1589-c586-4986-82e5-a689ee3b4da6 2019-04-22 19:34:42.605926 5558 504 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 142\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.489E3\nmove_type: '1'\nsale_id: 403\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-210\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-210 189.186.37.196 44fc1589-c586-4986-82e5-a689ee3b4da6 2019-04-22 19:34:42.629002 5559 404 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 141\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-04-22\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-192\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 ce2366fd-fdf7-483f-a1f4-2f725aa0325e 2019-04-22 19:37:17.351525 5560 319 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.37.196 ce2366fd-fdf7-483f-a1f4-2f725aa0325e 2019-04-22 19:37:17.387204 5561 404 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 ccdd1806-4575-493e-bd55-0fbbc67f63e2 2019-04-22 19:38:02.783253 5562 505 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 141\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 404\ncardnumber: 9712\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-192\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-192 189.186.37.196 ccdd1806-4575-493e-bd55-0fbbc67f63e2 2019-04-22 19:38:02.814064 5563 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-18 00:14:21.874346000 Z\n- &1 2019-04-18 00:23:34.776824000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-22 19:39:02.621756744 Z\nsign_in_count:\n- 142\n- 143\n 286 \N 189.186.37.196 c1c1d44e-debd-47af-b3da-5e04f28fdffb 2019-04-22 19:39:02.630424 5564 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ao2Fb_GKVL-r3WNf82FA\n- nyRLGbGoRWrU8n7Qy3fa\n 287 \N 189.186.37.196 c1c1d44e-debd-47af-b3da-5e04f28fdffb 2019-04-22 19:39:02.646521 5565 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-18 00:24:06.996496000 Z\n- &1 2019-04-22 19:26:30.030284000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-22 19:39:52.272502101 Z\nsign_in_count:\n- 84\n- 85\n 170 \N 189.186.37.196 238e088f-b53d-448f-aaf8-04148db4dfeb 2019-04-22 19:39:52.278824 5566 12 User \N \N 12 User \N update ---\nunique_session_id:\n- ifKGj2dt_7X6WqVnF8gW\n- zxooA1wyEqgySc6dyTC7\n 171 \N 189.186.37.196 238e088f-b53d-448f-aaf8-04148db4dfeb 2019-04-22 19:39:52.292565 5567 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-17 21:55:22.693774000 Z\n- &1 2019-04-18 00:12:20.145042000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-22 20:35:35.818731254 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938206\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093955\n mask_addr: 4294967295\nsign_in_count:\n- 141\n- 142\n 284 \N 189.186.40.195 1ca98ef0-1a77-4e6e-9060-d2c7a494c090 2019-04-22 20:35:35.827049 5568 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Fxirszbz_kvCRBnxHWzw\n- BYDLCxDYXJX_Df-NLydq\n 285 \N 189.186.40.195 1ca98ef0-1a77-4e6e-9060-d2c7a494c090 2019-04-22 20:35:35.847614 5569 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-18 00:23:34.776824000 Z\n- &1 2019-04-22 19:39:02.621756000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-22 21:52:03.815080722 Z\nsign_in_count:\n- 143\n- 144\n 288 \N 189.186.37.196 17aeb9b3-8e54-4f3b-83c7-284e5098a51b 2019-04-22 21:52:03.823487 5570 3 User \N \N 3 User \N update ---\nunique_session_id:\n- nyRLGbGoRWrU8n7Qy3fa\n- 6hfq4rg_wU6-kiNhR_2x\n 289 \N 189.186.37.196 17aeb9b3-8e54-4f3b-83c7-284e5098a51b 2019-04-22 21:52:03.842173 5571 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-22 19:26:30.030284000 Z\n- &1 2019-04-22 19:39:52.272502000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-22 21:52:25.463075076 Z\nsign_in_count:\n- 85\n- 86\n 172 \N 189.186.37.196 d1039588-a136-40c1-a69c-dff64a71c70f 2019-04-22 21:52:25.468444 5572 12 User \N \N 12 User \N update ---\nunique_session_id:\n- zxooA1wyEqgySc6dyTC7\n- j1NbSsRAVVuSSfd847ke\n 173 \N 189.186.37.196 d1039588-a136-40c1-a69c-dff64a71c70f 2019-04-22 21:52:25.484114 5573 405 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 142\namount: !ruby/object:BigDecimal 18:0.1392E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1392E4\nstatus: 0\ndate_sale: 2019-04-22\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-211\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.196 4eab13c9-069e-4e4d-b89c-6b06470cfb4e 2019-04-22 22:43:56.426209 5574 531 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.196 4eab13c9-069e-4e4d-b89c-6b06470cfb4e 2019-04-22 22:43:56.462048 5575 405 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.196 a9b4cf86-5dd5-457c-92a9-ab0130bf3baf 2019-04-22 22:46:13.296532 5576 506 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 142\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1392E4\nmove_type: '1'\nsale_id: 405\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-211\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.108E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-211 189.186.37.196 a9b4cf86-5dd5-457c-92a9-ab0130bf3baf 2019-04-22 22:46:13.341417 5577 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-22 19:39:02.621756000 Z\n- &1 2019-04-22 21:52:03.815080000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-22 22:47:54.596181496 Z\nsign_in_count:\n- 144\n- 145\n 290 \N 189.186.37.196 5ca4490a-3117-4b81-ba4c-238abbc0bce3 2019-04-22 22:47:54.6043 5578 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 6hfq4rg_wU6-kiNhR_2x\n- cByj3yCwYpCmQPE1r_cX\n 291 \N 189.186.37.196 5ca4490a-3117-4b81-ba4c-238abbc0bce3 2019-04-22 22:47:54.622253 5579 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-22 19:39:52.272502000 Z\n- &1 2019-04-22 21:52:25.463075000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-22 22:48:10.682016719 Z\nsign_in_count:\n- 86\n- 87\n 174 \N 189.186.37.196 d8186bf7-0331-4c06-85d0-c7ca5f6cd63c 2019-04-22 22:48:10.687841 5580 12 User \N \N 12 User \N update ---\nunique_session_id:\n- j1NbSsRAVVuSSfd847ke\n- rYhTh1D5gFB8Rz_AxaQo\n 175 \N 189.186.37.196 d8186bf7-0331-4c06-85d0-c7ca5f6cd63c 2019-04-22 22:48:10.699552 5581 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-18 00:12:20.145042000 Z\n- &1 2019-04-22 20:35:35.818731000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-23 00:20:08.835237034 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938206\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093955\n mask_addr: 4294967295\nsign_in_count:\n- 142\n- 143\n 286 \N 189.186.40.195 be1fe257-6e1c-4c01-8a63-75017f286491 2019-04-23 00:20:08.845118 5582 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BYDLCxDYXJX_Df-NLydq\n- ymGjs1FbpK5AvJmnePWB\n 287 \N 189.186.40.195 be1fe257-6e1c-4c01-8a63-75017f286491 2019-04-23 00:20:08.862764 5583 507 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 47\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1498E4\nmove_type: '1'\nsale_id: 165\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAMANTHA\n 1 \N 189.186.37.196 53f2b9d5-d6c8-4a0a-a9b3-8e7d2d1cf54c 2019-04-23 00:21:50.272491 5586 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-22 21:52:03.815080000 Z\n- &1 2019-04-22 22:47:54.596181000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-23 00:51:38.526879053 Z\nsign_in_count:\n- 145\n- 146\n 292 \N 189.186.37.196 7b7ef3a5-18ba-4b45-89ec-fc7f92be51dc 2019-04-23 00:51:38.547846 5587 3 User \N \N 3 User \N update ---\nunique_session_id:\n- cByj3yCwYpCmQPE1r_cX\n- eutDxE3ygwGe6iXTKjeB\n 293 \N 189.186.37.196 7b7ef3a5-18ba-4b45-89ec-fc7f92be51dc 2019-04-23 00:51:38.566211 5588 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-22 21:52:25.463075000 Z\n- &1 2019-04-22 22:48:10.682016000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-23 00:52:00.792596176 Z\nsign_in_count:\n- 87\n- 88\n 176 \N 189.186.37.196 d1877bfc-10c7-44bc-83a2-a472bb6be7ef 2019-04-23 00:52:00.810192 5589 12 User \N \N 12 User \N update ---\nunique_session_id:\n- rYhTh1D5gFB8Rz_AxaQo\n- 4teX9Z6KF5b83JN6Lw_X\n 177 \N 189.186.37.196 d1877bfc-10c7-44bc-83a2-a472bb6be7ef 2019-04-23 00:52:00.826331 5590 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-22 20:35:35.818731000 Z\n- &1 2019-04-23 00:20:08.835237000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-23 01:32:13.572039890 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093955\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934315\n mask_addr: 4294967295\nsign_in_count:\n- 143\n- 144\n 288 \N 200.68.135.107 62830808-2466-4618-a7aa-bf09e6b1050a 2019-04-23 01:32:13.581308 5591 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ymGjs1FbpK5AvJmnePWB\n- "-Ja_-YaSqcDLA2fsyzvZ"\n 289 \N 200.68.135.107 62830808-2466-4618-a7aa-bf09e6b1050a 2019-04-23 01:32:13.602006 5592 139 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 142\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.507801E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.651E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3651E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.45.119 747639a8-a24b-4294-a7c6-ede214ca1a57 2019-04-23 01:56:23.614167 5593 142 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.119 747639a8-a24b-4294-a7c6-ede214ca1a57 2019-04-23 01:56:23.63548 5594 140 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 141\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.469E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.656E3\nphysical_cash: !ruby/object:BigDecimal 18:0.656E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.45.119 ae6e7b71-b9e0-4b6f-b75e-82823aad8196 2019-04-23 01:56:45.557748 5595 141 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.119 ae6e7b71-b9e0-4b6f-b75e-82823aad8196 2019-04-23 01:56:45.574657 5596 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-04-17 23:34:46.825679000 Z\n- &1 2019-04-22 16:07:26.689389000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-23 17:40:45.654125063 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093843\n mask_addr: 4294967295\nsign_in_count:\n- 45\n- 46\n 92 \N 189.186.40.83 8a76f5af-ffbd-47cc-ac3f-1247ed10e61c 2019-04-23 17:40:45.686422 5597 10 User \N \N 10 User \N update ---\nunique_session_id:\n- fjU9VAkTxGP3-AgQVbza\n- TT3v3YffpxZ-7nn8u7nj\n 93 \N 189.186.40.83 8a76f5af-ffbd-47cc-ac3f-1247ed10e61c 2019-04-23 17:40:45.709948 5598 143 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.656E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 656.0 189.186.40.83 207c3c00-8d46-4c07-a814-8274e799cc92 2019-04-23 18:57:40.172321 5599 406 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 143\namount: !ruby/object:BigDecimal 18:0.173021E4\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1868E4\nstatus: 0\ndate_sale: 2019-04-23\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-193\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.83 4f58540f-1246-41a3-b178-94eeeee88c57 2019-04-23 19:12:20.993937 5600 497 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.40.83 4f58540f-1246-41a3-b178-94eeeee88c57 2019-04-23 19:12:21.038172 5601 431 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.40.83 4f58540f-1246-41a3-b178-94eeeee88c57 2019-04-23 19:12:21.087988 5602 406 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.83 5aefdeed-1799-464a-880f-de9579f3f07f 2019-04-23 19:13:28.635977 5603 508 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 143\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1868E4\nmove_type: '1'\nsale_id: 406\ncardnumber: 8470\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-193\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-193 189.186.40.83 5aefdeed-1799-464a-880f-de9579f3f07f 2019-04-23 19:13:28.692864 5604 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-22 22:47:54.596181000 Z\n- &1 2019-04-23 00:51:38.526879000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-23 19:28:30.001826847 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093843\n mask_addr: 4294967295\nsign_in_count:\n- 146\n- 147\n 294 \N 189.186.40.83 cf3ea98f-3504-466d-b27e-6b012cd1d7c8 2019-04-23 19:28:30.024122 5605 3 User \N \N 3 User \N update ---\nunique_session_id:\n- eutDxE3ygwGe6iXTKjeB\n- hnxZC_ZW_xkbDzGxstgj\n 295 \N 189.186.40.83 cf3ea98f-3504-466d-b27e-6b012cd1d7c8 2019-04-23 19:28:30.043326 5606 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-23 00:20:08.835237000 Z\n- &1 2019-04-23 01:32:13.572039000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-23 21:24:46.412896042 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093955\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934315\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934315\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093955\n mask_addr: 4294967295\nsign_in_count:\n- 144\n- 145\n 290 \N 189.186.40.195 9230fff6-5d34-44a8-8224-cf59eb385a43 2019-04-23 21:24:46.424124 5607 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-Ja_-YaSqcDLA2fsyzvZ"\n- qg27do5qS6zEfy3oUVD5\n 291 \N 189.186.40.195 9230fff6-5d34-44a8-8224-cf59eb385a43 2019-04-23 21:24:46.447405 5608 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-04-22 16:07:26.689389000 Z\n- &1 2019-04-23 17:40:45.654125000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-23 21:29:26.136031930 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093843\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093843\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096866\n mask_addr: 4294967295\nsign_in_count:\n- 46\n- 47\n 94 \N 189.186.52.34 492c7a38-eeb5-4ffb-8695-be9c09325c84 2019-04-23 21:29:26.157914 5610 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-22 22:48:10.682016000 Z\n- &1 2019-04-23 00:52:00.792596000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-23 21:43:29.588022029 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096866\n mask_addr: 4294967295\nsign_in_count:\n- 88\n- 89\n 178 \N 189.186.52.34 115173b4-71a7-4e9b-9d05-936ed97b47ef 2019-04-23 21:43:29.595984 5611 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 4teX9Z6KF5b83JN6Lw_X\n- tzjCQaW2iy5BWoSrsYqG\n 179 \N 189.186.52.34 115173b4-71a7-4e9b-9d05-936ed97b47ef 2019-04-23 21:43:29.61177 5612 144 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.651E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 651.0 189.186.52.34 8825d30d-c71a-4de8-9581-a936e785a724 2019-04-23 21:43:34.229684 5613 74 Customer \N \N 12 User \N create ---\nnick_name: PAOLA AYON\nphone: "(667) 390-3681"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente PAOLA AYON fue registrado. 189.186.52.34 510fa360-3cb2-4e4c-82bd-9d4c0b707c17 2019-04-23 21:45:03.601793 5614 407 Sale \N \N 12 User \N create ---\ncustomer_id: 74\nuser_id: 12\nopen_cash_register_id: 144\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-04-23\nsaletype: 2\nseller_id: 8\nsale_code: PV1-V-212\nexpiration_date: 2019-05-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.52.34 38fa8b9f-96c3-4112-a018-c5965f8adb79 2019-04-23 21:45:37.659396 5615 488 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.52.34 38fa8b9f-96c3-4112-a018-c5965f8adb79 2019-04-23 21:45:37.696235 5616 509 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 144\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.42E3\nmove_type: '1'\nsale_id: 407\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-212\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.8E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-212 189.186.52.34 045e3297-23b6-45d6-ae69-068b777a61f7 2019-04-23 21:45:48.801952 5617 407 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.52.34 59e4b08b-ae81-46c2-b170-2e6c7eb2eba9 2019-04-23 21:46:10.235923 5618 408 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 144\namount: !ruby/object:BigDecimal 18:0.45517E3\ntax: !ruby/object:BigDecimal 18:0.7283E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.528E3\nstatus: 0\ndate_sale: 2019-04-23\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-213\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.52.34 07016650-0ba4-492b-8a2c-35cfa9c69c57 2019-04-23 21:58:09.464566 5619 74 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 189.186.52.34 07016650-0ba4-492b-8a2c-35cfa9c69c57 2019-04-23 21:58:09.491666 5620 408 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.52.34 efaec767-e0a1-4ade-abb4-9c6a7b7d20d5 2019-04-23 21:58:33.317461 5621 510 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 144\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.528E3\nmove_type: '1'\nsale_id: 408\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-213\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.55E3\nchange: !ruby/object:BigDecimal 18:0.22E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-213 189.186.52.34 efaec767-e0a1-4ade-abb4-9c6a7b7d20d5 2019-04-23 21:58:33.349758 5622 409 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 144\namount: !ruby/object:BigDecimal 18:0.206724E4\ntax: !ruby/object:BigDecimal 18:0.33076E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2398E4\nstatus: 0\ndate_sale: 2019-04-23\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-214\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.52.34 f2846b68-4e87-40ab-b9b9-128a7d0290f5 2019-04-23 22:49:16.467425 5623 267 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.25E2\n- !ruby/object:BigDecimal 18:0.24E2\n 1 \N 189.186.52.34 f2846b68-4e87-40ab-b9b9-128a7d0290f5 2019-04-23 22:49:16.517236 5624 592 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.52.34 f2846b68-4e87-40ab-b9b9-128a7d0290f5 2019-04-23 22:49:16.553193 5625 409 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.52.34 0e52a918-3131-414d-bd4d-0bd133d4f158 2019-04-23 22:49:47.608748 5626 511 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 144\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2398E4\nmove_type: '1'\nsale_id: 409\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-214\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.24E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-214 189.186.52.34 0e52a918-3131-414d-bd4d-0bd133d4f158 2019-04-23 22:49:47.632235 5627 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-23 00:51:38.526879000 Z\n- &1 2019-04-23 19:28:30.001826000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-23 22:59:55.949709452 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093843\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093843\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096866\n mask_addr: 4294967295\nsign_in_count:\n- 147\n- 148\n 296 \N 189.186.52.34 0464d0e5-5d1d-46cf-9957-1a71a502e509 2019-04-23 22:59:55.985274 5628 3 User \N \N 3 User \N update ---\nunique_session_id:\n- hnxZC_ZW_xkbDzGxstgj\n- EtpX9rzy1Uux4x7xYZFL\n 297 \N 189.186.52.34 0464d0e5-5d1d-46cf-9957-1a71a502e509 2019-04-23 22:59:56.00911 5629 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-23 00:52:00.792596000 Z\n- &1 2019-04-23 21:43:29.588022000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-23 23:00:18.621969515 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096866\n mask_addr: 4294967295\nsign_in_count:\n- 89\n- 90\n 180 \N 189.186.52.34 1b6dc882-67d4-47f5-8eb0-d8e9ebc80f38 2019-04-23 23:00:18.631693 5630 12 User \N \N 12 User \N update ---\nunique_session_id:\n- tzjCQaW2iy5BWoSrsYqG\n- E7sAZQ-yrM3zxEem5ph1\n 181 \N 189.186.52.34 1b6dc882-67d4-47f5-8eb0-d8e9ebc80f38 2019-04-23 23:00:18.651856 5654 146 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.696E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 696.0 189.186.52.34 e1c87a2c-d996-4a2b-8c49-14234b6f8508 2019-04-24 19:27:03.590668 5631 410 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 143\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-04-23\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-194\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.52.34 b97ca148-f328-4d2f-b2dc-3ef45e7e95a8 2019-04-23 23:39:52.706131 5632 416 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.52.34 b97ca148-f328-4d2f-b2dc-3ef45e7e95a8 2019-04-23 23:39:52.749007 5633 410 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.52.34 b30808bc-4cfa-46c0-9d09-8e38759e5fdb 2019-04-23 23:40:28.832165 5634 512 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 143\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 410\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-194\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-194 189.186.52.34 b30808bc-4cfa-46c0-9d09-8e38759e5fdb 2019-04-23 23:40:28.867577 5635 411 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 144\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-04-23\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-215\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.52.34 0220c989-38a9-44e5-92d8-00eb896435cc 2019-04-23 23:44:35.610985 5636 153 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.52.34 0220c989-38a9-44e5-92d8-00eb896435cc 2019-04-23 23:44:35.652164 5637 411 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.52.34 df4d40b4-eca6-413d-b247-13158d38ad1d 2019-04-23 23:45:11.944313 5638 513 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 144\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 411\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-215\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-215 189.186.52.34 df4d40b4-eca6-413d-b247-13158d38ad1d 2019-04-23 23:45:11.978033 5639 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-23 19:28:30.001826000 Z\n- &1 2019-04-23 22:59:55.949709000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-24 00:33:31.103129344 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093843\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096866\n mask_addr: 4294967295\nsign_in_count:\n- 148\n- 149\n 298 \N 189.186.52.34 3750cd34-5592-4b12-83ba-9700dfd3c579 2019-04-24 00:33:31.112898 5640 3 User \N \N 3 User \N update ---\nunique_session_id:\n- EtpX9rzy1Uux4x7xYZFL\n- 3JpKMzNBkChCynWTNpUz\n 299 \N 189.186.52.34 3750cd34-5592-4b12-83ba-9700dfd3c579 2019-04-24 00:33:31.134759 5641 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-23 21:43:29.588022000 Z\n- &1 2019-04-23 23:00:18.621969000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-24 00:34:20.311601042 Z\nsign_in_count:\n- 90\n- 91\n 182 \N 189.186.52.34 4122ce73-d90b-43ef-a797-fd8369f69762 2019-04-24 00:34:20.320318 5642 12 User \N \N 12 User \N update ---\nunique_session_id:\n- E7sAZQ-yrM3zxEem5ph1\n- CqxGMe5WrwrzLxsERX9Y\n 183 \N 189.186.52.34 4122ce73-d90b-43ef-a797-fd8369f69762 2019-04-24 00:34:20.338541 5643 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-23 01:32:13.572039000 Z\n- &1 2019-04-23 21:24:46.412896000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-24 01:11:59.785499597 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934315\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093955\n mask_addr: 4294967295\nsign_in_count:\n- 145\n- 146\n 292 \N 189.186.40.195 ba28081a-388c-4b7b-b01f-391792e029fe 2019-04-24 01:11:59.795426 5644 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qg27do5qS6zEfy3oUVD5\n- 8c_9zUwSdwcB3rcW8azV\n 293 \N 189.186.40.195 ba28081a-388c-4b7b-b01f-391792e029fe 2019-04-24 01:11:59.819742 5645 141 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 143\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.2767E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.556E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1556E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.52.34 883bc545-8e7c-443b-96cc-84fa75e4c2f7 2019-04-24 01:53:10.384156 5646 143 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.52.34 883bc545-8e7c-443b-96cc-84fa75e4c2f7 2019-04-24 01:53:10.403099 5647 142 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 144\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.3945E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.39E4\ncash_fund: !ruby/object:BigDecimal 18:0.696E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4596E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.52.34 02125f21-4023-408d-860c-7d6c175cd7b5 2019-04-24 01:55:52.150857 5648 144 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.52.34 02125f21-4023-408d-860c-7d6c175cd7b5 2019-04-24 01:55:52.170845 5649 145 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.556E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 556.0 189.186.52.34 5c825476-fc24-4b8b-8488-d053c5f37f52 2019-04-24 02:09:10.731556 5650 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-04-23 17:40:45.654125000 Z\n- &1 2019-04-23 21:29:26.136031000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-24 16:15:17.176933037 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093843\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096866\n mask_addr: 4294967295\nsign_in_count:\n- 47\n- 48\n 96 \N 189.186.52.34 3675c42a-aef1-46a7-8291-f90fb1fbe219 2019-04-24 16:15:17.221144 5651 10 User \N \N 10 User \N update ---\nunique_session_id:\n- r1n7wfsnKDtUVqA-hDtg\n- sxy15AhQdsq5JSSBHiTR\n 97 \N 189.186.52.34 3675c42a-aef1-46a7-8291-f90fb1fbe219 2019-04-24 16:15:17.245849 5652 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-23 23:00:18.621969000 Z\n- &1 2019-04-24 00:34:20.311601000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-24 19:26:59.814463218 Z\nsign_in_count:\n- 91\n- 92\n 184 \N 189.186.52.34 dde2eba1-a4b0-43b2-94a7-55e1d2c669a2 2019-04-24 19:26:59.821853 5653 12 User \N \N 12 User \N update ---\nunique_session_id:\n- CqxGMe5WrwrzLxsERX9Y\n- 18jPo8ysmvFDjzPgEhHC\n 185 \N 189.186.52.34 dde2eba1-a4b0-43b2-94a7-55e1d2c669a2 2019-04-24 19:26:59.838037 5724 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Uvwn2xUpmssts2WBhh5z\n- f5C4zaMQXubN2o9vqzsy\n 311 \N 189.186.43.119 5a0b0dbc-7f89-46c9-a304-b60a02bcad3a 2019-04-26 01:28:37.892235 5655 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-23 22:59:55.949709000 Z\n- &1 2019-04-24 00:33:31.103129000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-24 19:27:42.225729912 Z\nsign_in_count:\n- 149\n- 150\n 300 \N 189.186.52.34 6cca50a4-36f7-4bf6-a551-f56630326be7 2019-04-24 19:27:42.234214 5656 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 3JpKMzNBkChCynWTNpUz\n- mLCt9oHy5X6P1zj14DqD\n 301 \N 189.186.52.34 6cca50a4-36f7-4bf6-a551-f56630326be7 2019-04-24 19:27:42.247892 5657 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-24 00:34:20.311601000 Z\n- &1 2019-04-24 19:26:59.814463000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-24 21:07:59.550344108 Z\nsign_in_count:\n- 92\n- 93\n 186 \N 189.186.52.34 c4cd2360-3619-4221-b1ec-7b4a5e66189f 2019-04-24 21:07:59.55678 5658 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 18jPo8ysmvFDjzPgEhHC\n- UK8zohNw9ou5QGFpn3cv\n 187 \N 189.186.52.34 c4cd2360-3619-4221-b1ec-7b4a5e66189f 2019-04-24 21:07:59.570453 5659 412 Sale \N \N 12 User \N create ---\ncustomer_id: 48\nuser_id: 12\nopen_cash_register_id: 146\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-04-24\nsaletype: 2\nseller_id: 8\nsale_code: PV1-V-216\nexpiration_date: 2019-05-29\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.52.34 b969d98a-db51-472d-9f92-89c966a71ec1 2019-04-24 21:08:51.782812 5660 506 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 6 \N 189.186.52.34 b969d98a-db51-472d-9f92-89c966a71ec1 2019-04-24 21:08:51.813979 5661 514 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 146\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 412\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-216\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.1E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-216 189.186.52.34 5f3db088-7130-461f-8f4c-2c23ffc74fae 2019-04-24 21:09:43.126678 5662 412 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.52.34 daed88da-6ffc-416a-8baa-56422952e673 2019-04-24 21:09:44.277793 5663 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-23 21:24:46.412896000 Z\n- &1 2019-04-24 01:11:59.785499000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-24 21:45:18.797944088 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093955\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934454\n mask_addr: 4294967295\nsign_in_count:\n- 146\n- 147\n 294 \N 200.68.135.246 55649a57-a8d0-419b-923f-57e68f6216d5 2019-04-24 21:45:18.808438 5664 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8c_9zUwSdwcB3rcW8azV\n- swsXDKFynbzVXurSobyU\n 295 \N 200.68.135.246 55649a57-a8d0-419b-923f-57e68f6216d5 2019-04-24 21:45:18.82926 5665 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-24 00:33:31.103129000 Z\n- &1 2019-04-24 19:27:42.225729000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-24 22:19:22.151043290 Z\nsign_in_count:\n- 150\n- 151\n 302 \N 189.186.52.34 1792b32a-5a46-47b0-96eb-50f4b675ff91 2019-04-24 22:19:22.156627 5666 3 User \N \N 3 User \N update ---\nunique_session_id:\n- mLCt9oHy5X6P1zj14DqD\n- sdLxBDXaqZ8xb5RxzySs\n 303 \N 189.186.52.34 1792b32a-5a46-47b0-96eb-50f4b675ff91 2019-04-24 22:19:22.169927 5667 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-24 19:26:59.814463000 Z\n- &1 2019-04-24 21:07:59.550344000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-24 22:28:37.203966355 Z\nsign_in_count:\n- 93\n- 94\n 188 \N 189.186.52.34 6d553a94-d5d0-48a0-89c7-35702e75eb43 2019-04-24 22:28:37.212549 5668 12 User \N \N 12 User \N update ---\nunique_session_id:\n- UK8zohNw9ou5QGFpn3cv\n- LrzWSnrbtB9hPCzuLxTK\n 189 \N 189.186.52.34 6d553a94-d5d0-48a0-89c7-35702e75eb43 2019-04-24 22:28:37.232226 5669 413 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 145\namount: !ruby/object:BigDecimal 18:0.49914E3\ntax: !ruby/object:BigDecimal 18:0.7986E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.579E3\nstatus: 0\ndate_sale: 2019-04-24\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-195\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.52.34 3efc774a-944b-4e5e-8d08-0e42a58e9b73 2019-04-25 00:06:24.800138 5670 481 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 189.186.52.34 3efc774a-944b-4e5e-8d08-0e42a58e9b73 2019-04-25 00:06:24.832937 5671 413 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.52.34 7b01ff57-0479-4a1e-ab87-40bc240bd1e8 2019-04-25 00:07:33.435437 5672 515 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 145\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.579E3\nmove_type: '1'\nsale_id: 413\ncardnumber: 4608\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-195\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-195 189.186.52.34 7b01ff57-0479-4a1e-ab87-40bc240bd1e8 2019-04-25 00:07:33.462837 5673 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-24 19:27:42.225729000 Z\n- &1 2019-04-24 22:19:22.151043000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-25 00:34:32.172243120 Z\nsign_in_count:\n- 151\n- 152\n 304 \N 189.186.52.34 268f95d9-0f8f-42c5-9e7d-6b29297ef9a2 2019-04-25 00:34:32.178597 5674 3 User \N \N 3 User \N update ---\nunique_session_id:\n- sdLxBDXaqZ8xb5RxzySs\n- e2Fo44NghRcj_m2wHNms\n 305 \N 189.186.52.34 268f95d9-0f8f-42c5-9e7d-6b29297ef9a2 2019-04-25 00:34:32.192408 5675 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-24 21:07:59.550344000 Z\n- &1 2019-04-24 22:28:37.203966000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-25 00:51:17.258236158 Z\nsign_in_count:\n- 94\n- 95\n 190 \N 189.186.52.34 7102b5c9-c659-4750-a0e3-adeba4f90f70 2019-04-25 00:51:17.264503 5676 12 User \N \N 12 User \N update ---\nunique_session_id:\n- LrzWSnrbtB9hPCzuLxTK\n- 2ijt24XRRzgL96s1AbLo\n 191 \N 189.186.52.34 7102b5c9-c659-4750-a0e3-adeba4f90f70 2019-04-25 00:51:17.279271 5677 516 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 56\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.15E4\nmove_type: '1'\nsale_id: 212\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAMANTHA\n 1 \N 189.186.52.34 32b753b5-f98e-4bbe-b47b-28dc65970f10 2019-04-25 00:52:01.342997 5678 516 CashRegistersMove \N \N 12 User \N update ---\nopen_cash_register_id:\n- 56\n- 146\n 2 movimiento de efectivo por venta con folio PV2-V-96 189.186.52.34 32b753b5-f98e-4bbe-b47b-28dc65970f10 2019-04-25 00:52:01.379942 5679 517 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 145\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 265\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-123 189.186.52.34 5612ca52-ca17-4065-baec-556961178868 2019-04-25 01:02:42.965894 5680 414 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 145\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-04-24\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-196\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.52.34 504ea7ae-6b41-469d-9ec1-a90cde4bbeb1 2019-04-25 01:11:08.975231 5681 394 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.52.34 504ea7ae-6b41-469d-9ec1-a90cde4bbeb1 2019-04-25 01:11:09.051957 5682 414 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.52.34 4ec6ccfd-d3dc-4b22-a18b-9d2e8e25534c 2019-04-25 01:11:26.723482 5683 518 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 145\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 414\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-196\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-196 189.186.52.34 4ec6ccfd-d3dc-4b22-a18b-9d2e8e25534c 2019-04-25 01:11:26.754928 5684 415 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 146\namount: !ruby/object:BigDecimal 18:0.109159E4\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1188E4\nstatus: 0\ndate_sale: 2019-04-24\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-217\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.52.34 39f1c235-63ab-498f-8890-adc54199b5e6 2019-04-25 01:33:37.406533 5685 462 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.52.34 39f1c235-63ab-498f-8890-adc54199b5e6 2019-04-25 01:33:37.442448 5686 201 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.52.34 39f1c235-63ab-498f-8890-adc54199b5e6 2019-04-25 01:33:37.475004 5687 415 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.52.34 b7f9f3fa-a640-47fb-ab33-681bdcc824cd 2019-04-25 01:34:29.397105 5688 519 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 146\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1188E4\nmove_type: '1'\nsale_id: 415\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-217\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.312E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-217 189.186.52.34 b7f9f3fa-a640-47fb-ab33-681bdcc824cd 2019-04-25 01:34:29.428867 5689 143 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 145\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.2378E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.856E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2356E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.52.34 d98cd347-3861-4bbb-be89-d321da546e43 2019-04-25 01:54:34.870905 5690 145 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.52.34 d98cd347-3861-4bbb-be89-d321da546e43 2019-04-25 01:54:34.884144 5691 144 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 146\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.2988E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.684E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2184E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.52.34 0dd17ea1-f14a-469a-bf93-a512c5abd01a 2019-04-25 01:56:04.848263 5692 146 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.52.34 0dd17ea1-f14a-469a-bf93-a512c5abd01a 2019-04-25 01:56:04.866094 5693 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-24 01:11:59.785499000 Z\n- &1 2019-04-24 21:45:18.797944000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-25 01:59:21.515283837 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093955\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934454\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934454\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093955\n mask_addr: 4294967295\nsign_in_count:\n- 147\n- 148\n 296 \N 189.186.40.195 bdd6f721-859c-4e80-986b-307978690a07 2019-04-25 01:59:21.522827 5694 4 User \N \N 4 User \N update ---\nunique_session_id:\n- swsXDKFynbzVXurSobyU\n- LrG5y5Pmft5bbFEA6-xS\n 297 \N 189.186.40.195 bdd6f721-859c-4e80-986b-307978690a07 2019-04-25 01:59:21.538299 5695 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-04-23 21:29:26.136031000 Z\n- &1 2019-04-24 16:15:17.176933000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-25 16:08:17.248945832 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096866\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097100\n mask_addr: 4294967295\nsign_in_count:\n- 48\n- 49\n 98 \N 189.186.53.12 59cb709c-d2ed-42ef-9c9a-a3b826e35a1e 2019-04-25 16:08:17.291208 5696 10 User \N \N 10 User \N update ---\nunique_session_id:\n- sxy15AhQdsq5JSSBHiTR\n- F-syZ4dYYd_u6rNhWfu7\n 99 \N 189.186.53.12 59cb709c-d2ed-42ef-9c9a-a3b826e35a1e 2019-04-25 16:08:17.322829 5697 147 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.856E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 856.0 189.186.53.12 f5b8bdd9-7513-4c04-8d18-142a85c0a908 2019-04-25 16:08:21.579977 5698 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-24 21:45:18.797944000 Z\n- &1 2019-04-25 01:59:21.515283000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-25 16:44:51.018306370 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934454\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093955\n mask_addr: 4294967295\nsign_in_count:\n- 148\n- 149\n 298 \N 189.186.40.195 3da73262-5e3a-43c5-90a0-157833726877 2019-04-25 16:44:51.024316 5699 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LrG5y5Pmft5bbFEA6-xS\n- 9kc1QJnNou-LD-d3fdGy\n 299 \N 189.186.40.195 3da73262-5e3a-43c5-90a0-157833726877 2019-04-25 16:44:51.03966 5700 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-24 22:28:37.203966000 Z\n- &1 2019-04-25 00:51:17.258236000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-25 17:03:33.084271938 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096866\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097100\n mask_addr: 4294967295\nsign_in_count:\n- 95\n- 96\n 192 \N 189.186.53.12 80b5b81c-aec7-4ffa-b590-6541df388503 2019-04-25 17:03:33.093196 5701 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 2ijt24XRRzgL96s1AbLo\n- wc4RZhZfsZzAQHL4PdFX\n 193 \N 189.186.53.12 80b5b81c-aec7-4ffa-b590-6541df388503 2019-04-25 17:03:33.112022 5890 431 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.93 10e61af0-5f38-4857-a15f-751858c3fe9a 2019-04-29 20:22:48.533806 5702 148 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.684E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 684.0 189.186.53.12 ce330e99-b964-48df-95fe-985f905c8fdb 2019-04-25 17:03:36.7899 5703 520 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 148\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 295\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-153 189.186.53.12 e3ea355a-bd43-413b-9979-66a169f3311f 2019-04-25 17:04:23.653459 5704 521 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 15\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.3E4\nmove_type: '1'\nsale_id: 79\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '142568798758'\n 1 \N 189.186.53.12 00aa1229-ddb9-4ee6-986a-6b453bd6756b 2019-04-25 18:40:06.710844 5705 79 Sale \N \N 10 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.53.12 00aa1229-ddb9-4ee6-986a-6b453bd6756b 2019-04-25 18:40:06.747818 5706 138 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.53.12 00aa1229-ddb9-4ee6-986a-6b453bd6756b 2019-04-25 18:40:06.768854 5707 521 CashRegistersMove \N \N 10 User \N update ---\nopen_cash_register_id:\n- 15\n- 147\n 2 movimiento de efectivo por venta con folio PV2-V-35 189.186.53.12 00aa1229-ddb9-4ee6-986a-6b453bd6756b 2019-04-25 18:40:06.786217 5708 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-25 01:59:21.515283000 Z\n- &1 2019-04-25 16:44:51.018306000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-25 18:46:19.265060344 Z\nsign_in_count:\n- 149\n- 150\n 300 \N 189.186.40.195 46f26f58-90eb-4775-98c5-53af8f4f47a6 2019-04-25 18:46:19.270848 5709 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9kc1QJnNou-LD-d3fdGy\n- Uy7X1yzHTMvByY5fdPvz\n 301 \N 189.186.40.195 46f26f58-90eb-4775-98c5-53af8f4f47a6 2019-04-25 18:46:19.286636 5710 522 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 15\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 78\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '142568798758'\n 1 \N 189.186.53.12 5571b9ab-ce09-49ec-b6cc-4e128c9fb91c 2019-04-25 18:48:19.531123 5711 78 Sale \N \N 10 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.53.12 5571b9ab-ce09-49ec-b6cc-4e128c9fb91c 2019-04-25 18:48:19.558882 5712 522 CashRegistersMove \N \N 10 User \N update ---\nopen_cash_register_id:\n- 15\n- 147\n 2 movimiento de efectivo por venta con folio PV2-V-34 189.186.53.12 5571b9ab-ce09-49ec-b6cc-4e128c9fb91c 2019-04-25 18:48:19.574516 5713 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-24 22:19:22.151043000 Z\n- &1 2019-04-25 00:34:32.172243000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-25 21:35:26.863910050 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096866\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097100\n mask_addr: 4294967295\nsign_in_count:\n- 152\n- 153\n 306 \N 189.186.53.12 d931168d-c328-41fa-af42-08cbac4d4756 2019-04-25 21:35:26.891461 5714 3 User \N \N 3 User \N update ---\nunique_session_id:\n- e2Fo44NghRcj_m2wHNms\n- sKpy7qxeohauRKsxzwQS\n 307 \N 189.186.53.12 d931168d-c328-41fa-af42-08cbac4d4756 2019-04-25 21:35:26.912743 5715 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-04-24 16:15:17.176933000 Z\n- &1 2019-04-25 16:08:17.248945000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-25 22:50:55.869022064 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096866\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097100\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097100\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095743\n mask_addr: 4294967295\nsign_in_count:\n- 49\n- 50\n 100 \N 189.186.47.191 f7c5924e-78dc-46b0-a10d-11d98da9fde0 2019-04-25 22:50:55.876417 5716 10 User \N \N 10 User \N update ---\nunique_session_id:\n- F-syZ4dYYd_u6rNhWfu7\n- X4dJ7sT7KzaKpuYNq9Y5\n 101 \N 189.186.47.191 f7c5924e-78dc-46b0-a10d-11d98da9fde0 2019-04-25 22:50:55.894257 5717 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-25 00:51:17.258236000 Z\n- &1 2019-04-25 17:03:33.084271000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-25 23:35:33.619129427 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096866\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097100\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097100\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094647\n mask_addr: 4294967295\nsign_in_count:\n- 96\n- 97\n 194 \N 189.186.43.119 c4f471e4-4e4b-423b-8da6-b7f697b4d465 2019-04-25 23:35:33.629971 5718 12 User \N \N 12 User \N update ---\nunique_session_id:\n- wc4RZhZfsZzAQHL4PdFX\n- 5k28X9wVxxYxQMAo5xVM\n 195 \N 189.186.43.119 c4f471e4-4e4b-423b-8da6-b7f697b4d465 2019-04-25 23:35:33.650456 5719 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-25 00:34:32.172243000 Z\n- &1 2019-04-25 21:35:26.863910000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-26 00:06:23.956309972 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096866\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097100\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097100\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094647\n mask_addr: 4294967295\nsign_in_count:\n- 153\n- 154\n 308 \N 189.186.43.119 8d2e5ad5-d1dd-4716-903a-659767bf4830 2019-04-26 00:06:23.969937 5720 3 User \N \N 3 User \N update ---\nunique_session_id:\n- sKpy7qxeohauRKsxzwQS\n- Uvwn2xUpmssts2WBhh5z\n 309 \N 189.186.43.119 8d2e5ad5-d1dd-4716-903a-659767bf4830 2019-04-26 00:06:23.997229 5721 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-02-23 20:23:44.779874000 Z\n- &1 2019-03-10 11:56:58.209079000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-26 00:07:12.425646478 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3187432133\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3187437303\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3187437303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3187425760\n mask_addr: 4294967295\nsign_in_count:\n- 11\n- 12\n 24 \N 189.252.65.224 b04d7624-c930-4a64-92be-697ecfa63d9d 2019-04-26 00:07:12.437975 5722 5 User \N \N 5 User \N update ---\nunique_session_id:\n- 1Qpz63rZ6jdyMfFzZ3mU\n- szbjXX9XvZNkd9A1_3KD\n 25 \N 189.252.65.224 b04d7624-c930-4a64-92be-697ecfa63d9d 2019-04-26 00:07:12.461962 5723 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-25 21:35:26.863910000 Z\n- &1 2019-04-26 00:06:23.956309000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-26 01:28:37.861246222 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097100\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094647\n mask_addr: 4294967295\nsign_in_count:\n- 154\n- 155\n 310 \N 189.186.43.119 5a0b0dbc-7f89-46c9-a304-b60a02bcad3a 2019-04-26 01:28:37.870713 5725 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-25 17:03:33.084271000 Z\n- &1 2019-04-25 23:35:33.619129000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-26 01:28:57.885913629 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097100\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094647\n mask_addr: 4294967295\nsign_in_count:\n- 97\n- 98\n 196 \N 189.186.43.119 4b377dc2-1da6-481c-82e1-8efc9a4cd5cb 2019-04-26 01:28:57.893088 5726 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 5k28X9wVxxYxQMAo5xVM\n- CoaNBips26Dficm12zsV\n 197 \N 189.186.43.119 4b377dc2-1da6-481c-82e1-8efc9a4cd5cb 2019-04-26 01:28:57.908657 5727 145 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 147\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.3599E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.856E3\nphysical_cash: !ruby/object:BigDecimal 18:0.856E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.43.119 1774d269-fd1f-4461-be8f-fb0387ccff5b 2019-04-26 01:50:06.448023 5728 147 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.43.119 1774d269-fd1f-4461-be8f-fb0387ccff5b 2019-04-26 01:50:06.465347 5729 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-26 00:06:23.956309000 Z\n- &1 2019-04-26 01:28:37.861246000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-26 01:53:34.468777685 Z\nsign_in_count:\n- 155\n- 156\n 312 \N 189.186.43.119 f5d71308-de8c-43a2-8c88-c9d0ecc22a0d 2019-04-26 01:53:34.478269 5730 3 User \N \N 3 User \N update ---\nunique_session_id:\n- f5C4zaMQXubN2o9vqzsy\n- _D-kmFPKETPeVRGDMiaE\n 313 \N 189.186.43.119 f5d71308-de8c-43a2-8c88-c9d0ecc22a0d 2019-04-26 01:53:34.501178 5731 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-25 23:35:33.619129000 Z\n- &1 2019-04-26 01:28:57.885913000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-26 01:54:48.689043604 Z\nsign_in_count:\n- 98\n- 99\n 198 \N 189.186.43.119 f7d7c9d8-88c7-4cd8-9e00-fd6a4bcfcb50 2019-04-26 01:54:48.695404 5732 12 User \N \N 12 User \N update ---\nunique_session_id:\n- CoaNBips26Dficm12zsV\n- m2yQg6PVDPxzD_P1sjFH\n 199 \N 189.186.43.119 f7d7c9d8-88c7-4cd8-9e00-fd6a4bcfcb50 2019-04-26 01:54:48.710815 5733 146 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 148\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.3E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.3E3\ncash_fund: !ruby/object:BigDecimal 18:0.684E3\nphysical_cash: !ruby/object:BigDecimal 18:0.984E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.43.119 6ec4fcb4-b33a-4f9d-b7d2-dfa77f6d5aa5 2019-04-26 01:56:01.766466 5734 148 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.43.119 6ec4fcb4-b33a-4f9d-b7d2-dfa77f6d5aa5 2019-04-26 01:56:01.784384 5735 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-04-25 16:08:17.248945000 Z\n- &1 2019-04-25 22:50:55.869022000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-26 16:00:52.826318531 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097100\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095743\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095743\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094647\n mask_addr: 4294967295\nsign_in_count:\n- 50\n- 51\n 102 \N 189.186.43.119 a40e3dfa-bd66-43e2-98ac-12fa6b14bfc9 2019-04-26 16:00:52.869906 5736 10 User \N \N 10 User \N update ---\nunique_session_id:\n- X4dJ7sT7KzaKpuYNq9Y5\n- kaJMtymHuaiLfV4V6ndq\n 103 \N 189.186.43.119 a40e3dfa-bd66-43e2-98ac-12fa6b14bfc9 2019-04-26 16:00:52.90117 5737 149 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.856E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 856.0 189.186.43.119 a830cf4d-3711-4e5f-b202-c9b0ca4d75ea 2019-04-26 16:01:00.48663 5738 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-26 01:28:57.885913000 Z\n- &1 2019-04-26 01:54:48.689043000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-26 16:20:22.439846739 Z\nsign_in_count:\n- 99\n- 100\n 200 \N 189.186.43.119 3dba4316-ef7a-425b-98a9-69341d6095ff 2019-04-26 16:20:22.447378 5739 12 User \N \N 12 User \N update ---\nunique_session_id:\n- m2yQg6PVDPxzD_P1sjFH\n- RR5irovZ3Dt5shopwL3G\n 201 \N 189.186.43.119 3dba4316-ef7a-425b-98a9-69341d6095ff 2019-04-26 16:20:22.46511 5740 150 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.684E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 684.0 189.186.43.119 b09d2112-36a8-4b1d-8f4f-072c18247ac5 2019-04-26 16:20:27.646516 5741 523 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 150\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 295\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-153 189.186.43.119 f0f026b2-9baa-4955-b5ad-71443ccce8b1 2019-04-26 17:26:20.030845 5742 295 Sale \N \N 12 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.43.119 388c31c3-e8ea-4c3e-b8c8-a674f53d7e00 2019-04-26 17:26:21.272181 5743 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-03-22 00:46:21.381627000 Z\n- &1 2019-04-02 23:40:06.999562000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-26 17:38:38.273228767 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094647\n mask_addr: 4294967295\nsign_in_count:\n- 50\n- 51\n 102 \N 189.186.43.119 05de483b-efae-411a-ade0-374d06885c99 2019-04-26 17:38:38.283664 5744 9 User \N \N 9 User \N update ---\nunique_session_id:\n- Dsh9RELvvfvKRVaSdNS-\n- 5gRpoDZx4JiKzJhQmGuX\n 103 \N 189.186.43.119 05de483b-efae-411a-ade0-374d06885c99 2019-04-26 17:38:38.307313 5745 75 Customer \N \N 9 User \N create ---\nnick_name: CARMEN RUELAS\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CARMEN RUELAS fue registrado. 189.186.43.119 e00126a0-39ba-4e1c-9271-19e39ab2b028 2019-04-26 17:48:53.03725 5746 416 Sale \N \N 9 User \N create ---\ncustomer_id: 75\nuser_id: 9\nopen_cash_register_id: 150\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-04-26\nsaletype: 2\nseller_id: 8\nsale_code: PV1-V-218\nexpiration_date: 2019-05-31\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.43.119 a54b7dfd-419c-4ac7-9668-39d79bbd5df6 2019-04-26 17:49:06.938273 5747 540 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.43.119 a54b7dfd-419c-4ac7-9668-39d79bbd5df6 2019-04-26 17:49:06.988418 5748 416 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-218 cancelada. 189.186.43.119 63729e01-4d62-49e3-af82-d4a6ce817e35 2019-04-26 17:49:45.825734 5749 540 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.43.119 63729e01-4d62-49e3-af82-d4a6ce817e35 2019-04-26 17:49:45.851023 5750 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-25 16:44:51.018306000 Z\n- &1 2019-04-25 18:46:19.265060000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-26 20:18:38.227403360 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093955\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946258\n mask_addr: 4294967295\nsign_in_count:\n- 150\n- 151\n 302 \N 200.68.182.18 896f6059-b607-4c4b-969a-edb9be0d13e5 2019-04-26 20:18:38.237531 5751 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Uy7X1yzHTMvByY5fdPvz\n- Bm1uycsXaWx58sds8xPU\n 303 \N 200.68.182.18 896f6059-b607-4c4b-969a-edb9be0d13e5 2019-04-26 20:18:38.259147 5752 524 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 138\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 387\ncardnumber: 5251\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.43.119 b3b99eff-13f1-4aac-a9af-5493e5cca168 2019-04-26 22:21:19.882721 5753 524 CashRegistersMove \N \N 9 User \N update ---\nopen_cash_register_id:\n- 138\n- 150\n 2 movimiento de efectivo por venta con folio PV1-V-204 189.186.43.119 b3b99eff-13f1-4aac-a9af-5493e5cca168 2019-04-26 22:21:19.918295 5754 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-26 01:28:37.861246000 Z\n- &1 2019-04-26 01:53:34.468777000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-26 22:33:14.596850717 Z\nsign_in_count:\n- 156\n- 157\n 314 \N 189.186.43.119 7a294e75-af86-4c20-a37d-7b1258daf8f6 2019-04-26 22:33:14.626588 5755 3 User \N \N 3 User \N update ---\nunique_session_id:\n- _D-kmFPKETPeVRGDMiaE\n- EG461WURER1Hqxun11bW\n 315 \N 189.186.43.119 7a294e75-af86-4c20-a37d-7b1258daf8f6 2019-04-26 22:33:14.64798 5756 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-26 01:54:48.689043000 Z\n- &1 2019-04-26 16:20:22.439846000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-26 22:33:36.824799351 Z\nsign_in_count:\n- 100\n- 101\n 202 \N 189.186.43.119 7db1831b-4df9-44f2-a4bf-106e0e270501 2019-04-26 22:33:36.829794 5757 12 User \N \N 12 User \N update ---\nunique_session_id:\n- RR5irovZ3Dt5shopwL3G\n- 7xjcA6GHBXVcCz2QzHF4\n 203 \N 189.186.43.119 7db1831b-4df9-44f2-a4bf-106e0e270501 2019-04-26 22:33:36.843848 5758 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-26 01:53:34.468777000 Z\n- &1 2019-04-26 22:33:14.596850000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-26 23:22:06.636120001 Z\nsign_in_count:\n- 157\n- 158\n 316 \N 189.186.43.119 836d5f20-bd61-4ce5-aa67-7a3866fa4c0b 2019-04-26 23:22:06.643884 5759 3 User \N \N 3 User \N update ---\nunique_session_id:\n- EG461WURER1Hqxun11bW\n- RvZmRwipkopNnTWz3ZYk\n 317 \N 189.186.43.119 836d5f20-bd61-4ce5-aa67-7a3866fa4c0b 2019-04-26 23:22:06.66294 5760 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-26 16:20:22.439846000 Z\n- &1 2019-04-26 22:33:36.824799000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-26 23:22:26.260415416 Z\nsign_in_count:\n- 101\n- 102\n 204 \N 189.186.43.119 5c3b7315-8fc1-4dc9-a337-515f5abdbee8 2019-04-26 23:22:26.268764 5761 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 7xjcA6GHBXVcCz2QzHF4\n- 3XMJWyiRcmRqivqyiv9z\n 205 \N 189.186.43.119 5c3b7315-8fc1-4dc9-a337-515f5abdbee8 2019-04-26 23:22:26.28761 5762 417 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 150\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-04-26\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-219\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.43.119 05ba7e42-b3d3-4eea-a43a-db026dd4e382 2019-04-27 00:10:51.22094 5763 155 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 6 \N 189.186.43.119 05ba7e42-b3d3-4eea-a43a-db026dd4e382 2019-04-27 00:10:51.266812 5764 417 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.43.119 78a89503-1ff5-4228-ac2c-7a8773530993 2019-04-27 00:11:09.524957 5765 525 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 150\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.449E3\nmove_type: '1'\nsale_id: 417\ncardnumber: 7035\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-219\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-219 189.186.43.119 78a89503-1ff5-4228-ac2c-7a8773530993 2019-04-27 00:11:09.56184 5766 526 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 150\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 417\ncardnumber: 7035\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-219\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-219 189.186.43.119 e8a52b36-c734-4bec-bfe5-825c31f6fae9 2019-04-27 00:15:01.394689 5767 525 CashRegistersMove \N \N 12 User \N destroy ---\nopen_cash_register_id: 150\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.449E3\nmove_type: '1'\nsale_id: 417\ncardnumber: 7035\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-219\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.43.119 ad9c4f6c-4e57-4dec-bea8-cf32ce386b7e 2019-04-27 00:15:06.034391 5768 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-26 22:33:14.596850000 Z\n- &1 2019-04-26 23:22:06.636120000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-27 00:17:42.021666370 Z\nsign_in_count:\n- 158\n- 159\n 318 \N 189.186.43.119 b3f2095d-57c4-44df-b279-dc346be0fcf3 2019-04-27 00:17:42.029062 5769 3 User \N \N 3 User \N update ---\nunique_session_id:\n- RvZmRwipkopNnTWz3ZYk\n- kk9sxbBQkZMXMGcK4pi_\n 319 \N 189.186.43.119 b3f2095d-57c4-44df-b279-dc346be0fcf3 2019-04-27 00:17:42.049036 5770 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-26 22:33:36.824799000 Z\n- &1 2019-04-26 23:22:26.260415000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-27 00:18:17.215009983 Z\nsign_in_count:\n- 102\n- 103\n 206 \N 189.186.43.119 f723d05a-f9e4-4d02-b4f3-0431fda4f358 2019-04-27 00:18:17.223425 5771 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 3XMJWyiRcmRqivqyiv9z\n- cqRaZdLV2FDW_iN8nJyy\n 207 \N 189.186.43.119 f723d05a-f9e4-4d02-b4f3-0431fda4f358 2019-04-27 00:18:17.253011 5772 418 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 149\namount: !ruby/object:BigDecimal 18:0.55948E3\ntax: !ruby/object:BigDecimal 18:0.8952E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-04-26\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-197\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.43.119 b4c8abaa-24fc-4298-a2b6-43523c20c1c8 2019-04-27 00:32:34.484764 5773 547 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.43.119 b4c8abaa-24fc-4298-a2b6-43523c20c1c8 2019-04-27 00:32:34.530626 5774 418 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.43.119 8e70e88a-e2f9-4935-b9f3-667c3023ae61 2019-04-27 00:32:40.060165 5775 527 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 149\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 418\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-197\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.649E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-197 189.186.43.119 8e70e88a-e2f9-4935-b9f3-667c3023ae61 2019-04-27 00:32:40.090802 5776 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-25 18:46:19.265060000 Z\n- &1 2019-04-26 20:18:38.227403000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-27 01:00:48.170929865 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093955\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946258\n mask_addr: 4294967295\nsign_in_count:\n- 151\n- 152\n 304 \N 200.68.182.18 228c62f5-d8ff-4cf7-9e57-236a46468054 2019-04-27 01:00:48.217577 5777 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Bm1uycsXaWx58sds8xPU\n- SZfjrDwCzuCuGPswoyzm\n 305 \N 200.68.182.18 228c62f5-d8ff-4cf7-9e57-236a46468054 2019-04-27 01:00:48.250023 5778 494 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '494'\n is_parent: false\n sku: CON-494\n name: BIKINIS\n description: ''\n price_base: '449.5'\n price_sale: '899.0'\n img_product: D1764E99-5670-44B9-AF27-AC2EC4B430B5.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '10'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000494'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-03-02 17:10:27.07906'\n updated_at: &12 2019-04-27 01:03:00.117187844 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '494'\n sku: CON-494\n name: BIKINIS\n description: ''\n price_base: '449.50'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-03-02 17:10:27.07906'\n updated_at: '2019-03-02 17:10:27.130985'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000494'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '10'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '494'\n type: *3\n value: 494\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CON-494\n type: *7\n value: CON-494\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BIKINIS\n type: *8\n value: BIKINIS\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: ''\n type: *6\n value: ''\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '449.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: D1764E99-5670-44B9-AF27-AC2EC4B430B5.jpeg\n type: *2\n value: D1764E99-5670-44B9-AF27-AC2EC4B430B5.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '10'\n type: *3\n value: 10\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000494'\n type: *2\n value: '0000494'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-03-02 17:10:27.07906'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- D1764E99-5670-44B9-AF27-AC2EC4B430B5.jpeg\n 3 El producto CON-494 fue modificado. 200.68.182.18 4e51c6d5-297d-4d31-9266-70fb7cd25391 2019-04-27 01:03:00.18579 5779 419 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 150\namount: !ruby/object:BigDecimal 18:0.57672E3\ntax: !ruby/object:BigDecimal 18:0.9228E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-04-26\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-220\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.43.119 7d6d9331-ff3c-4383-abb6-a13b616f7395 2019-04-27 01:17:43.98448 5780 150 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.43.119 7d6d9331-ff3c-4383-abb6-a13b616f7395 2019-04-27 01:17:44.04942 5781 419 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-220 cancelada. 189.186.43.119 aeabcd97-4189-48ad-9ddc-51bf48682a8d 2019-04-27 01:54:20.9788 5782 150 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.43.119 aeabcd97-4189-48ad-9ddc-51bf48682a8d 2019-04-27 01:54:21.016871 5783 147 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 150\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.1698E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.483E3\nphysical_cash: !ruby/object:BigDecimal 18:0.983E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.43.119 bfd28f4d-978b-4f80-b9ad-573053479d25 2019-04-27 01:56:07.619428 5784 150 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.43.119 bfd28f4d-978b-4f80-b9ad-573053479d25 2019-04-27 01:56:07.639846 5785 148 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 149\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.649E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.505E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1505E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.43.119 ad7f3261-1b31-4b74-b8ec-14b7b0a13736 2019-04-27 01:59:31.525665 5786 149 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.43.119 ad7f3261-1b31-4b74-b8ec-14b7b0a13736 2019-04-27 01:59:31.540147 5787 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-04-25 22:50:55.869022000 Z\n- &1 2019-04-26 16:00:52.826318000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-27 15:57:23.262221166 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095743\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094647\n mask_addr: 4294967295\nsign_in_count:\n- 51\n- 52\n 104 \N 189.186.43.119 6d34c36e-11f4-49e5-a0a2-d8dc24a65efb 2019-04-27 15:57:23.292536 5788 10 User \N \N 10 User \N update ---\nunique_session_id:\n- kaJMtymHuaiLfV4V6ndq\n- 524Sa1Y_tXTWCcfs9xN2\n 105 \N 189.186.43.119 6d34c36e-11f4-49e5-a0a2-d8dc24a65efb 2019-04-27 15:57:23.315507 5789 151 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.524E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 524.0 189.186.43.119 93e1eb5a-50df-47ba-b0ea-5dd80a7b87b8 2019-04-27 16:04:00.908989 5790 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-26 23:22:26.260415000 Z\n- &1 2019-04-27 00:18:17.215009000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-27 16:26:49.353726767 Z\nsign_in_count:\n- 103\n- 104\n 208 \N 189.186.43.119 563d44fb-dca7-4bed-8943-afad3a0c3414 2019-04-27 16:26:49.363715 5791 12 User \N \N 12 User \N update ---\nunique_session_id:\n- cqRaZdLV2FDW_iN8nJyy\n- BSL2449afCwRjDVXsyoe\n 209 \N 189.186.43.119 563d44fb-dca7-4bed-8943-afad3a0c3414 2019-04-27 16:26:49.384943 5792 152 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.483E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 483.0 189.186.43.119 00e5c37e-95ba-4ed7-9c6f-c750878eaff0 2019-04-27 16:26:53.036187 5793 420 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 152\namount: !ruby/object:BigDecimal 18:0.698E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.698E3\nstatus: 0\ndate_sale: 2019-04-27\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-221\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.43.119 236897fb-31a3-4418-814f-9a8d85532c78 2019-04-27 16:27:21.42206 5794 536 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.43.119 236897fb-31a3-4418-814f-9a8d85532c78 2019-04-27 16:27:21.452478 5795 486 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.51E2\n- !ruby/object:BigDecimal 18:0.5E2\n 12 \N 189.186.43.119 236897fb-31a3-4418-814f-9a8d85532c78 2019-04-27 16:27:21.487409 5796 420 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.43.119 d99691b6-a0a4-454f-a62e-5fc9fc453f04 2019-04-27 16:28:51.739793 5797 528 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 152\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.698E3\nmove_type: '1'\nsale_id: 420\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-221\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-221 189.186.43.119 d99691b6-a0a4-454f-a62e-5fc9fc453f04 2019-04-27 16:28:51.762999 5891 203 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 1 \N 189.186.37.93 333c1b6d-6db5-43d1-ae44-4515212a8f91 2019-04-29 22:07:20.366702 5892 217 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 189.186.37.93 8d4542a4-456a-4c1e-8e37-e79d3579cee6 2019-04-29 22:08:32.703771 5798 421 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 152\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-04-27\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-222\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.43.119 f0506c02-d544-4e65-857c-af6c2e951789 2019-04-27 16:29:45.030506 5799 541 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.43.119 f0506c02-d544-4e65-857c-af6c2e951789 2019-04-27 16:29:45.068976 5800 421 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.43.119 bbafd89d-bd05-45a3-933c-e0e6a1824033 2019-04-27 16:29:50.773689 5801 529 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 152\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.479E3\nmove_type: '1'\nsale_id: 421\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-222\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-222 189.186.43.119 bbafd89d-bd05-45a3-933c-e0e6a1824033 2019-04-27 16:29:50.795865 5802 422 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 152\namount: !ruby/object:BigDecimal 18:0.57672E3\ntax: !ruby/object:BigDecimal 18:0.9228E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-04-27\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-223\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.43.119 34692e84-21a7-40e6-86be-7c0cdd1498dc 2019-04-27 17:50:13.057668 5803 150 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.43.119 34692e84-21a7-40e6-86be-7c0cdd1498dc 2019-04-27 17:50:13.097976 5804 422 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.43.119 9083c371-65a9-4dd8-862d-0cc04e3d9a71 2019-04-27 17:50:21.158566 5805 530 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 152\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.669E3\nmove_type: '1'\nsale_id: 422\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-223\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.67E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-223 189.186.43.119 9083c371-65a9-4dd8-862d-0cc04e3d9a71 2019-04-27 17:50:21.189927 5806 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-26 23:22:06.636120000 Z\n- &1 2019-04-27 00:17:42.021666000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-27 18:40:56.067161156 Z\nsign_in_count:\n- 159\n- 160\n 320 \N 189.186.43.119 b5aed765-d408-4222-b7aa-cafbe80a0185 2019-04-27 18:40:56.07348 5807 3 User \N \N 3 User \N update ---\nunique_session_id:\n- kk9sxbBQkZMXMGcK4pi_\n- yB8c4aoRUDXWCbtT6o_E\n 321 \N 189.186.43.119 b5aed765-d408-4222-b7aa-cafbe80a0185 2019-04-27 18:40:56.087068 5808 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-27 00:18:17.215009000 Z\n- &1 2019-04-27 16:26:49.353726000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-27 18:41:22.275927882 Z\nsign_in_count:\n- 104\n- 105\n 210 \N 189.186.43.119 16a1ec40-1800-4f88-884b-bc1504d7c5f4 2019-04-27 18:41:22.284534 5809 12 User \N \N 12 User \N update ---\nunique_session_id:\n- BSL2449afCwRjDVXsyoe\n- h4s1ypEsPX7Zh5f2AsSc\n 211 \N 189.186.43.119 16a1ec40-1800-4f88-884b-bc1504d7c5f4 2019-04-27 18:41:22.305341 5810 423 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 152\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-04-27\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-224\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.43.119 2b51fb87-9e9f-4a56-9fcb-83171e960eff 2019-04-27 19:06:31.100223 5811 542 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.43.119 2b51fb87-9e9f-4a56-9fcb-83171e960eff 2019-04-27 19:06:31.133174 5812 423 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.43.119 4281c7ff-9175-4c66-a4de-4845192a668b 2019-04-27 19:08:02.640736 5813 531 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 152\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 423\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-224\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-224 189.186.43.119 4281c7ff-9175-4c66-a4de-4845192a668b 2019-04-27 19:08:02.672489 5814 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-27 00:17:42.021666000 Z\n- &1 2019-04-27 18:40:56.067161000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-27 19:19:28.231651529 Z\nsign_in_count:\n- 160\n- 161\n 322 \N 189.186.43.119 ef165cc7-ec46-4212-a06a-739150d89403 2019-04-27 19:19:28.258068 5815 3 User \N \N 3 User \N update ---\nunique_session_id:\n- yB8c4aoRUDXWCbtT6o_E\n- g3LRRMUBV44-ku6Bj6yb\n 323 \N 189.186.43.119 ef165cc7-ec46-4212-a06a-739150d89403 2019-04-27 19:19:28.279021 5816 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-27 16:26:49.353726000 Z\n- &1 2019-04-27 18:41:22.275927000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-27 19:20:50.820810690 Z\nsign_in_count:\n- 105\n- 106\n 212 \N 189.186.43.119 aab1b2c4-2681-4cb4-bfd8-13f7e0695ea4 2019-04-27 19:20:50.829104 5817 12 User \N \N 12 User \N update ---\nunique_session_id:\n- h4s1ypEsPX7Zh5f2AsSc\n- H47NHTug2by3cxRnRRHo\n 213 \N 189.186.43.119 aab1b2c4-2681-4cb4-bfd8-13f7e0695ea4 2019-04-27 19:20:50.848891 5818 76 Customer \N \N 12 User \N create ---\nnick_name: CAROLINA ELENES\nphone: "(667) 174-0386"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CAROLINA ELENES fue registrado. 189.186.43.119 80d12279-81d6-4d65-b45e-752a0305d7b8 2019-04-27 19:47:57.685157 5819 424 Sale \N \N 12 User \N create ---\ncustomer_id: 76\nuser_id: 12\nopen_cash_register_id: 152\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-04-27\nsaletype: 2\nseller_id: 8\nsale_code: PV1-V-225\nexpiration_date: 2019-06-01\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.43.119 741130e2-fee4-48c9-83d2-6ff782bc267c 2019-04-27 19:48:09.040875 5820 540 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.43.119 741130e2-fee4-48c9-83d2-6ff782bc267c 2019-04-27 19:48:09.070968 5893 203 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.37.93 bf56d75e-c2cf-44b1-96e7-a3cafdaf4f8b 2019-04-29 22:08:36.299533 13427 663 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '663'\n is_parent: false\n sku: BLU-663\n name: BLS-0056\n description: BLUSA LOVESONG NEGRA Y BLANCA\n price_base: '275.0'\n price_sale: '699.0'\n img_product: PHOTO-2019-08-12-12-53-14_2422_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000663'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-20 21:44:59.510836'\n updated_at: &12 2019-08-22 04:26:48.233978964 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '663'\n sku: BLU-663\n name: BLS-0056\n description: BLUSA LOVESONG NEGRA Y BLANCA\n price_base: '275.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-20 21:44:59.510836'\n updated_at: '2019-08-20 21:44:59.556074'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000663'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '663'\n type: *3\n value: 663\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-663\n type: *7\n value: BLU-663\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0056\n type: *8\n value: BLS-0056\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA LOVESONG NEGRA Y BLANCA\n type: *6\n value: BLUSA LOVESONG NEGRA Y BLANCA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '275.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.275E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-08-12-12-53-14_2422_.jpg\n type: *2\n value: PHOTO-2019-08-12-12-53-14_2422_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000663'\n type: *2\n value: '0000663'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-20 21:44:59.510836'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-08-12-12-53-14_2422_.jpg\n 3 El producto BLU-663 fue modificado. 189.186.53.136 8a12863c-42cf-4b71-9dea-bddd7231b8bf 2019-08-22 04:26:48.297085 5821 532 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 152\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.27E3\nmove_type: '1'\nsale_id: 424\ncardnumber: 2705\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-225\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-225 189.186.43.119 74ab10f1-db8d-4900-a5f6-a7bc763393a0 2019-04-27 19:49:28.193031 5822 424 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.43.119 6b5d1ffd-fc47-4672-bf29-282f68a0f2ad 2019-04-27 19:49:31.527271 5823 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-27 18:40:56.067161000 Z\n- &1 2019-04-27 19:19:28.231651000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-27 19:58:38.715345049 Z\nsign_in_count:\n- 161\n- 162\n 324 \N 189.186.43.119 adbc5c87-8039-4543-894d-af17eada3236 2019-04-27 19:58:38.720627 5824 3 User \N \N 3 User \N update ---\nunique_session_id:\n- g3LRRMUBV44-ku6Bj6yb\n- 2FQKuaNsktdpoTLP6JVn\n 325 \N 189.186.43.119 adbc5c87-8039-4543-894d-af17eada3236 2019-04-27 19:58:38.734487 5825 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-27 19:19:28.231651000 Z\n- &1 2019-04-27 19:58:38.715345000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-27 19:58:54.880829152 Z\nsign_in_count:\n- 162\n- 163\n 326 \N 189.186.43.119 cc621b89-05cb-4c52-aa99-24ed4e10e49d 2019-04-27 19:58:54.887069 5826 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 2FQKuaNsktdpoTLP6JVn\n- YNsrvHKPPaRVdV4XNxBx\n 327 \N 189.186.43.119 cc621b89-05cb-4c52-aa99-24ed4e10e49d 2019-04-27 19:58:54.89941 5827 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-27 18:41:22.275927000 Z\n- &1 2019-04-27 19:20:50.820810000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-27 20:00:16.662694930 Z\nsign_in_count:\n- 106\n- 107\n 214 \N 189.186.43.119 8fb4392a-a473-4994-8d05-92133644c5b4 2019-04-27 20:00:16.670213 5828 12 User \N \N 12 User \N update ---\nunique_session_id:\n- H47NHTug2by3cxRnRRHo\n- ViJod5xgeMVBKg83QALy\n 215 \N 189.186.43.119 8fb4392a-a473-4994-8d05-92133644c5b4 2019-04-27 20:00:16.68813 5829 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-26 20:18:38.227403000 Z\n- &1 2019-04-27 01:00:48.170929000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-27 20:02:55.160878441 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946258\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938262\n mask_addr: 4294967295\nsign_in_count:\n- 152\n- 153\n 306 \N 200.68.150.214 d6029e66-2ce0-4a3c-84a8-c45069128dc1 2019-04-27 20:02:55.170659 5830 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SZfjrDwCzuCuGPswoyzm\n- r5ggrhtasecHSHdYyse3\n 307 \N 200.68.150.214 d6029e66-2ce0-4a3c-84a8-c45069128dc1 2019-04-27 20:02:55.191409 5831 425 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 151\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-04-27\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-198\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.43.119 c513bac4-440f-4b84-b716-c90981af1fc4 2019-04-27 20:33:11.884189 5832 549 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.43.119 c513bac4-440f-4b84-b716-c90981af1fc4 2019-04-27 20:33:11.911366 5833 425 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.43.119 c00286cc-3220-4fc8-96dc-20829953710b 2019-04-27 20:33:19.022648 5834 533 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 151\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 425\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-198\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-198 189.186.43.119 c00286cc-3220-4fc8-96dc-20829953710b 2019-04-27 20:33:19.046281 5835 426 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 152\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-04-27\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-226\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.43.119 c1797343-efcf-46fb-bbdb-f4df5499b7f2 2019-04-27 20:43:33.314531 5836 155 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 189.186.43.119 c1797343-efcf-46fb-bbdb-f4df5499b7f2 2019-04-27 20:43:33.368023 5837 426 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.43.119 a0212395-6c88-492f-b2ad-03deed81a408 2019-04-27 20:43:59.606174 5838 534 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 152\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 426\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-226\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-226 189.186.43.119 a0212395-6c88-492f-b2ad-03deed81a408 2019-04-27 20:43:59.634491 5839 47 Expense \N \N 12 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 152\nquantity: !ruby/object:BigDecimal 18:0.127E4\nstatus: 1\nobservations: SUELDO ANABELLY\nexpense_date: 2019-04-27\nexpense_code: PV1-E-41\n 1 Egreso por 1270.0 registrado 189.186.43.119 028405f7-3444-4eb5-9976-3dad2dd67e27 2019-04-27 21:12:03.427178 5840 535 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 152\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.127E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 47\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.43.119 028405f7-3444-4eb5-9976-3dad2dd67e27 2019-04-27 21:12:03.461497 5841 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-27 19:58:38.715345000 Z\n- &1 2019-04-27 19:58:54.880829000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-27 22:33:53.940165604 Z\nsign_in_count:\n- 163\n- 164\n 328 \N 189.186.43.119 cee89906-e4d5-4967-a1bb-85e489887915 2019-04-27 22:33:53.950951 5842 3 User \N \N 3 User \N update ---\nunique_session_id:\n- YNsrvHKPPaRVdV4XNxBx\n- zk6riH6fnUCpxnMoKH3f\n 329 \N 189.186.43.119 cee89906-e4d5-4967-a1bb-85e489887915 2019-04-27 22:33:53.974556 5843 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-27 19:20:50.820810000 Z\n- &1 2019-04-27 20:00:16.662694000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-27 22:34:22.541720837 Z\nsign_in_count:\n- 107\n- 108\n 216 \N 189.186.43.119 3869a7ac-0c91-4ddf-9f7c-c50c1792c451 2019-04-27 22:34:22.549463 5844 12 User \N \N 12 User \N update ---\nunique_session_id:\n- ViJod5xgeMVBKg83QALy\n- fq4X3t2re-Y9iShyB6EE\n 217 \N 189.186.43.119 3869a7ac-0c91-4ddf-9f7c-c50c1792c451 2019-04-27 22:34:22.568079 5894 217 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.37.93 8b277cf1-58c7-4267-bd17-9faa58cf5caf 2019-04-29 22:08:40.988444 5845 536 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 151\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 391\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.8E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-183 189.186.43.119 7b5853bf-ba07-4856-a2c7-2533121d1157 2019-04-27 22:52:13.186726 5846 537 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 151\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 391\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-183 189.186.43.119 0c903433-b0bc-4b30-9c7d-b3aba9fd1e8f 2019-04-27 22:52:50.387547 5847 391 Sale \N \N 10 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.43.119 a62b9f15-7ce5-4386-8d48-668432e47915 2019-04-27 22:52:52.315088 5848 77 Customer \N \N 12 User \N create ---\nnick_name: CARMEN RUELAS\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CARMEN RUELAS fue registrado. 189.186.43.119 90184436-74fb-41ed-81d3-d3ff3373b8c4 2019-04-28 00:27:57.16397 5849 427 Sale \N \N 12 User \N create ---\ncustomer_id: 77\nuser_id: 12\nopen_cash_register_id: 152\namount: !ruby/object:BigDecimal 18:0.50776E3\ntax: !ruby/object:BigDecimal 18:0.8124E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2019-04-27\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-227\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.43.119 f487b99d-070d-4584-895f-1dd492483452 2019-04-28 00:28:12.136877 5850 247 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.43.119 f487b99d-070d-4584-895f-1dd492483452 2019-04-28 00:28:12.1816 5851 427 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-227 cancelada. 189.186.43.119 35bdb7ae-b5b7-4f4d-8918-560625fdaa3f 2019-04-28 00:28:22.536394 5852 247 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.43.119 35bdb7ae-b5b7-4f4d-8918-560625fdaa3f 2019-04-28 00:28:22.578043 5853 78 Customer \N \N 12 User \N create ---\nnick_name: CARMEN RUELAS\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CARMEN RUELAS fue registrado. 189.186.43.119 8e0593da-59e7-4f38-9bf0-f887b54d6b8a 2019-04-28 00:28:38.3791 5854 428 Sale \N \N 12 User \N create ---\ncustomer_id: 78\nuser_id: 12\nopen_cash_register_id: 152\namount: !ruby/object:BigDecimal 18:0.50776E3\ntax: !ruby/object:BigDecimal 18:0.8124E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2019-04-27\nsaletype: 2\nseller_id: 8\nsale_code: PV1-V-228\nexpiration_date: 2019-06-01\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.43.119 875b8f0f-29da-49b9-9466-a2bcf159af2c 2019-04-28 00:29:14.20363 5855 247 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.43.119 875b8f0f-29da-49b9-9466-a2bcf159af2c 2019-04-28 00:29:14.242667 5856 538 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 152\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 428\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-228\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-228 189.186.43.119 d02b1a68-0488-4003-80fa-80dc6b76f165 2019-04-28 00:29:21.133703 5857 428 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.43.119 c16c4fc2-957d-423a-8f05-b6fc59b4ad09 2019-04-28 00:29:22.281063 5858 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-27 19:58:54.880829000 Z\n- &1 2019-04-27 22:33:53.940165000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-28 01:08:55.526995133 Z\nsign_in_count:\n- 164\n- 165\n 330 \N 189.186.43.119 ad450e76-59fd-41b9-b005-1ebba84c3f72 2019-04-28 01:08:55.536941 5859 3 User \N \N 3 User \N update ---\nunique_session_id:\n- zk6riH6fnUCpxnMoKH3f\n- PU_6aTeDJbQkyMF1PSHz\n 331 \N 189.186.43.119 ad450e76-59fd-41b9-b005-1ebba84c3f72 2019-04-28 01:08:55.555598 5860 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-27 20:00:16.662694000 Z\n- &1 2019-04-27 22:34:22.541720000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-28 01:24:55.510447871 Z\nsign_in_count:\n- 108\n- 109\n 218 \N 189.186.43.119 be3c53d1-2807-4b8c-904c-e7657dc6808a 2019-04-28 01:24:55.518856 5861 12 User \N \N 12 User \N update ---\nunique_session_id:\n- fq4X3t2re-Y9iShyB6EE\n- m8ssN3zxTt6Qp2fNpU7W\n 219 \N 189.186.43.119 be3c53d1-2807-4b8c-904c-e7657dc6808a 2019-04-28 01:24:55.537116 5862 429 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 152\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-04-27\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-229\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.43.119 cb8137e7-0281-41ea-9375-6c8e6cd048fe 2019-04-28 01:25:21.559503 5863 542 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.43.119 cb8137e7-0281-41ea-9375-6c8e6cd048fe 2019-04-28 01:25:21.602304 5864 429 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.43.119 b097160b-1c98-4777-9a8c-9f8256944274 2019-04-28 01:26:30.722056 5865 539 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 152\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 429\ncardnumber: 9449\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-229\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-229 189.186.43.119 b097160b-1c98-4777-9a8c-9f8256944274 2019-04-28 01:26:30.754243 5866 149 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 152\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.5013E4\namount_out: !ruby/object:BigDecimal 18:0.127E4\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.24E4\ncash_fund: !ruby/object:BigDecimal 18:0.657E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3057E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.43.119 2ec58938-169b-4912-8996-502c3e97723d 2019-04-28 01:55:55.856699 5867 152 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.43.119 2ec58938-169b-4912-8996-502c3e97723d 2019-04-28 01:55:55.883077 29044 2183 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 80866101-9a89-42bb-bd14-b2030ace6792 2020-02-07 23:06:04.982455 5868 150 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 151\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.1798E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.18E4\ncash_fund: !ruby/object:BigDecimal 18:0.524E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2324E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.43.119 dc602ce3-64ab-43cf-b5b3-27bf4fe3f364 2019-04-28 01:56:22.381404 5869 151 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.43.119 dc602ce3-64ab-43cf-b5b3-27bf4fe3f364 2019-04-28 01:56:22.399434 5870 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-27 22:34:22.541720000 Z\n- &1 2019-04-28 01:24:55.510447000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-28 16:48:56.514151513 Z\nsign_in_count:\n- 109\n- 110\n 220 \N 189.186.43.119 0fbdea96-a6c4-42a9-9132-ffde5e1068c5 2019-04-28 16:48:56.548678 5871 12 User \N \N 12 User \N update ---\nunique_session_id:\n- m8ssN3zxTt6Qp2fNpU7W\n- tzB3kxZrUpyigfLt-wiG\n 221 \N 189.186.43.119 0fbdea96-a6c4-42a9-9132-ffde5e1068c5 2019-04-28 16:48:56.576562 5872 153 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.657E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 657.0 189.186.43.119 9a5d561b-be4c-4e7a-abc6-a7bf564073b7 2019-04-28 16:49:01.003674 5873 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-28 01:24:55.510447000 Z\n- &1 2019-04-28 16:48:56.514151000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-28 19:45:24.568520145 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094647\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093085\n mask_addr: 4294967295\nsign_in_count:\n- 110\n- 111\n 222 \N 189.186.37.93 d9514fce-0a6f-42b9-93a0-f902d1dbe438 2019-04-28 19:45:24.575485 5874 12 User \N \N 12 User \N update ---\nunique_session_id:\n- tzB3kxZrUpyigfLt-wiG\n- 2gK-WXS3baBf9LwPx9Bn\n 223 \N 189.186.37.93 d9514fce-0a6f-42b9-93a0-f902d1dbe438 2019-04-28 19:45:24.59081 5875 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-04-26 16:00:52.826318000 Z\n- &1 2019-04-27 15:57:23.262221000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-29 15:55:29.661942093 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094647\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093085\n mask_addr: 4294967295\nsign_in_count:\n- 52\n- 53\n 106 \N 189.186.37.93 404825ec-b48d-4a8b-a86e-e1075a10dbf5 2019-04-29 15:55:29.695305 5876 10 User \N \N 10 User \N update ---\nunique_session_id:\n- 524Sa1Y_tXTWCcfs9xN2\n- usDwH7t4CQfvxdRuBsUV\n 107 \N 189.186.37.93 404825ec-b48d-4a8b-a86e-e1075a10dbf5 2019-04-29 15:55:29.717221 5877 154 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.524E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 524.0 189.186.37.93 cec15b61-d516-4f6d-881f-727c5d39e4b8 2019-04-29 15:56:24.840147 5878 430 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 154\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-04-29\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-199\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.93 d402f76f-5c97-4a99-9614-d536196c8361 2019-04-29 16:04:16.632242 5879 555 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.93 d402f76f-5c97-4a99-9614-d536196c8361 2019-04-29 16:04:16.671132 5880 430 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.93 0e46562e-83ad-4bfd-8496-1113e3792ee7 2019-04-29 16:04:41.161139 5881 540 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 154\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 430\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-199\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-199 189.186.37.93 0e46562e-83ad-4bfd-8496-1113e3792ee7 2019-04-29 16:04:41.184538 5882 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-04-16 16:15:28.047594000 Z\n- &1 2019-04-17 16:17:13.528303000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-29 16:24:18.729882382 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093085\n mask_addr: 4294967295\nsign_in_count:\n- 84\n- 85\n 173 \N 189.186.37.93 106ca786-af46-45a8-980a-bc7c29752356 2019-04-29 16:24:18.758821 5883 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 7rdnbNHNyoiPZkjz4MJq\n- mFMvFxDyvdAc5WEmKxvG\n 174 \N 189.186.37.93 106ca786-af46-45a8-980a-bc7c29752356 2019-04-29 16:24:18.781362 5884 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-27 01:00:48.170929000 Z\n- &1 2019-04-27 20:02:55.160878000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-29 18:24:41.915849907 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946258\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938262\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938262\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093955\n mask_addr: 4294967295\nsign_in_count:\n- 153\n- 154\n 308 \N 189.186.40.195 1edc8399-65ef-4a28-b35f-a767a01d8f40 2019-04-29 18:24:41.924856 5885 4 User \N \N 4 User \N update ---\nunique_session_id:\n- r5ggrhtasecHSHdYyse3\n- UzNxAMxFByvDKscsD-Ld\n 309 \N 189.186.40.195 1edc8399-65ef-4a28-b35f-a767a01d8f40 2019-04-29 18:24:41.941888 5886 79 Customer \N \N 10 User \N create ---\nnick_name: MARCELA URIARTE\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARCELA URIARTE fue registrado. 189.186.37.93 b5dfcf5d-7392-49df-986b-851dbb28166b 2019-04-29 20:21:09.906504 5887 431 Sale \N \N 10 User \N create ---\ncustomer_id: 79\nuser_id: 10\nopen_cash_register_id: 154\namount: !ruby/object:BigDecimal 18:0.675E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.675E3\nstatus: 0\ndate_sale: 2019-04-29\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-200\nexpiration_date: 2019-06-03\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.93 16134510-494f-470e-9d8e-40c195c6d325 2019-04-29 20:21:30.938924 5888 490 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 189.186.37.93 16134510-494f-470e-9d8e-40c195c6d325 2019-04-29 20:21:30.978302 5889 541 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 154\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.203E3\nmove_type: '1'\nsale_id: 431\ncardnumber: 9269\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-200\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-200 189.186.37.93 0dca2a93-f48b-4263-9363-e8c2b2281a74 2019-04-29 20:22:45.562923 5895 207 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.37.93 18b19e1f-19b3-42dc-8be0-2e23ec4370eb 2019-04-29 22:09:31.807131 5896 207 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.37.93 1a6e5c17-359b-4f07-8670-de504f569d04 2019-04-29 22:09:36.122127 5897 535 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.93 5b75f297-c9c1-4f47-8863-ba790d4aabfe 2019-04-29 22:10:18.43521 5898 535 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.37.93 477665da-77d5-48ab-aea4-9faab7467972 2019-04-29 22:10:29.944021 5899 144 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.37.93 9bbe8de4-b02d-4d9e-85fa-63747a36e8fe 2019-04-29 22:10:51.03077 5900 144 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.37.93 5b75c390-eadf-4d1f-a49e-84ed2d2054a3 2019-04-29 22:10:58.068628 5901 145 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.37.93 e54955eb-8637-4baf-b2d8-74c84ccd4f54 2019-04-29 22:11:09.37454 5902 145 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.37.93 111351a0-e49f-4fe0-9c34-e51805160506 2019-04-29 22:11:15.862719 5903 31 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-04-29\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.37.93 17b0945e-97a7-4332-87c0-d93514f6775a 2019-04-29 22:11:17.352161 5904 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-27 22:33:53.940165000 Z\n- &1 2019-04-28 01:08:55.526995000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-29 22:12:06.720236148 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094647\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093085\n mask_addr: 4294967295\nsign_in_count:\n- 165\n- 166\n 332 \N 189.186.37.93 edcba8ec-f992-44e7-acd2-10b2644e5155 2019-04-29 22:12:06.728488 5905 3 User \N \N 3 User \N update ---\nunique_session_id:\n- PU_6aTeDJbQkyMF1PSHz\n- nd1-SztyxE8A34zwm_3K\n 333 \N 189.186.37.93 edcba8ec-f992-44e7-acd2-10b2644e5155 2019-04-29 22:12:06.743362 5906 31 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-04-29\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.37.93 cb7f0068-fb64-455b-950d-8582122705e8 2019-04-29 22:13:00.472169 5907 593 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 205\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.11E2\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.93 cb7f0068-fb64-455b-950d-8582122705e8 2019-04-29 22:13:00.495917 5908 594 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 219\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.93 cb7f0068-fb64-455b-950d-8582122705e8 2019-04-29 22:13:00.529215 5909 595 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 209\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.93 cb7f0068-fb64-455b-950d-8582122705e8 2019-04-29 22:13:00.561078 5910 596 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 508\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.93 cb7f0068-fb64-455b-950d-8582122705e8 2019-04-29 22:13:00.587863 5911 597 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 146\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.93 cb7f0068-fb64-455b-950d-8582122705e8 2019-04-29 22:13:00.612087 5912 598 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 147\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.93 cb7f0068-fb64-455b-950d-8582122705e8 2019-04-29 22:13:00.634508 5913 533 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.93 dec9cfd4-ece5-4c75-9e64-f66f43a34c30 2019-04-29 22:16:08.247682 5914 533 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.37.93 f8be82b3-d8d4-4a53-8f07-0122f9dd2264 2019-04-29 22:18:50.480446 5915 32 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-04-29\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.37.93 b54013f2-cf84-4bc0-a724-ed150d9f605e 2019-04-29 22:18:51.713697 5916 32 Transfer \N \N 10 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 10\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-04-29\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.37.93 ed356f04-6314-4f3c-8ce9-55a5adc8b45e 2019-04-29 22:21:56.571383 5917 599 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 506\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.93 ed356f04-6314-4f3c-8ce9-55a5adc8b45e 2019-04-29 22:21:56.599182 5918 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-28 01:08:55.526995000 Z\n- &1 2019-04-29 22:12:06.720236000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-29 22:31:12.153678919 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094647\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093085\n mask_addr: 4294967295\nsign_in_count:\n- 166\n- 167\n 334 \N 189.186.37.93 9a6a1226-b7d3-461d-b3c3-ac4de7de7c08 2019-04-29 22:31:12.161425 5919 3 User \N \N 3 User \N update ---\nunique_session_id:\n- nd1-SztyxE8A34zwm_3K\n- AiXu6e1TKMYb-jtKDh27\n 335 \N 189.186.37.93 9a6a1226-b7d3-461d-b3c3-ac4de7de7c08 2019-04-29 22:31:12.176831 5920 561 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.93 df069866-76c7-408e-9815-6325f7de2f8d 2019-04-29 22:31:43.15046 5921 561 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.37.93 9446a42c-86c2-421a-ab38-f78fbf5ce33a 2019-04-29 22:31:49.325586 5922 483 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.37.93 389dcffe-fa17-4aaf-ac58-e831bb37527d 2019-04-29 22:32:02.070216 5923 483 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.37.93 e85576d5-2f4c-49b6-ba8f-afafb60e9802 2019-04-29 22:32:06.132071 5924 33 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-04-29\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.37.93 9f638219-57ca-4151-b8f5-ec1afb9a764f 2019-04-29 22:32:08.075757 5925 33 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-04-29\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.37.93 f754ed9d-0814-4b36-8439-8b1870d6fc8a 2019-04-29 22:33:04.507338 5926 140 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.93 f754ed9d-0814-4b36-8439-8b1870d6fc8a 2019-04-29 22:33:04.525832 5927 600 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 525\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.93 f754ed9d-0814-4b36-8439-8b1870d6fc8a 2019-04-29 22:33:04.546265 5928 432 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 153\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-04-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-230\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.93 1f99de99-ce00-4ba7-a924-92e202cadfdf 2019-04-29 22:51:55.82124 5929 527 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.93 1f99de99-ce00-4ba7-a924-92e202cadfdf 2019-04-29 22:51:55.857208 5930 432 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.93 49c3b631-ba27-4f69-b7d0-375046c8b1b5 2019-04-29 22:52:27.186786 5931 542 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 153\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 432\ncardnumber: 590\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-230\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-230 189.186.37.93 49c3b631-ba27-4f69-b7d0-375046c8b1b5 2019-04-29 22:52:27.243255 5932 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-27 20:02:55.160878000 Z\n- &1 2019-04-29 18:24:41.915849000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-30 00:16:21.252031302 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938262\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093955\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093955\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938349\n mask_addr: 4294967295\nsign_in_count:\n- 154\n- 155\n 310 \N 200.68.151.45 55ea05c1-012e-4fc9-a1bc-b59fedb71735 2019-04-30 00:16:21.260875 5933 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UzNxAMxFByvDKscsD-Ld\n- tV3K5mauy5zysfL1Q5uf\n 311 \N 200.68.151.45 55ea05c1-012e-4fc9-a1bc-b59fedb71735 2019-04-30 00:16:21.278011 5934 433 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 153\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-04-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-231\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.93 66113416-faa5-44f2-9efa-26f18c435e7e 2019-04-30 00:49:29.929663 5935 178 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.37.93 66113416-faa5-44f2-9efa-26f18c435e7e 2019-04-30 00:49:29.959933 5936 433 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.93 c07e5c27-8e83-4884-b68b-5d7db69bf2ba 2019-04-30 00:49:57.953637 5937 543 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 153\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 433\ncardnumber: 9014\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-231\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-231 189.186.37.93 c07e5c27-8e83-4884-b68b-5d7db69bf2ba 2019-04-30 00:49:57.983698 5938 48 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 153\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida rocio\nexpense_date: 2019-04-29\nexpense_code: PV1-E-42\n 1 Egreso por 50.0 registrado 189.186.37.93 fe7c67e2-c454-49ac-b5ab-42ea85d82420 2019-04-30 01:41:42.602311 5939 544 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 153\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 48\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.93 fe7c67e2-c454-49ac-b5ab-42ea85d82420 2019-04-30 01:41:42.625325 5940 151 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 153\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1598E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.607E3\nphysical_cash: !ruby/object:BigDecimal 18:0.607E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.93 b27a64e9-728c-4818-90b1-836e8acaa336 2019-04-30 01:54:49.526533 5941 153 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.93 b27a64e9-728c-4818-90b1-836e8acaa336 2019-04-30 01:54:49.543806 5942 152 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 154\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.1002E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.8E3\ncash_fund: !ruby/object:BigDecimal 18:0.524E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1324E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.93 00287f20-1fc5-489b-9f34-7ec338e844cd 2019-04-30 02:00:05.040179 5943 154 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.93 00287f20-1fc5-489b-9f34-7ec338e844cd 2019-04-30 02:00:05.054054 5944 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-04-17 16:17:13.528303000 Z\n- &1 2019-04-29 16:24:18.729882000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-30 15:56:24.229690314 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093085\n mask_addr: 4294967295\nsign_in_count:\n- 85\n- 86\n 175 \N 189.186.37.93 cc9a56b7-b513-4c70-b708-2e51737b7a11 2019-04-30 15:56:24.262558 5945 2 User \N \N 2 User \N update ---\nunique_session_id:\n- mFMvFxDyvdAc5WEmKxvG\n- rcknh9ydX_Dg6gDdi3sx\n 176 \N 189.186.37.93 cc9a56b7-b513-4c70-b708-2e51737b7a11 2019-04-30 15:56:24.28937 5946 155 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.607E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 607.0 189.186.37.93 6e4882ad-f408-457a-a5e4-42a0a7d03a34 2019-04-30 15:56:43.702324 5947 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-04-27 15:57:23.262221000 Z\n- &1 2019-04-29 15:55:29.661942000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-30 16:08:54.274696354 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094647\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093085\n mask_addr: 4294967295\nsign_in_count:\n- 53\n- 54\n 108 \N 189.186.37.93 d62113a3-b7c8-4619-8413-e5b822656a9c 2019-04-30 16:08:54.307726 5948 10 User \N \N 10 User \N update ---\nunique_session_id:\n- usDwH7t4CQfvxdRuBsUV\n- nybna1ezLU_CMTgDxAuK\n 109 \N 189.186.37.93 d62113a3-b7c8-4619-8413-e5b822656a9c 2019-04-30 16:08:54.328829 5949 156 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.524E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 524.0 189.186.37.93 dac9621a-b17b-4698-bd0a-d0fe0b06d61b 2019-04-30 16:09:30.306319 5950 434 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 156\namount: !ruby/object:BigDecimal 18:0.99828E3\ntax: !ruby/object:BigDecimal 18:0.15973E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.115801E4\nstatus: 0\ndate_sale: 2019-04-30\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-201\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.93 bf80f3d1-9c27-4fb9-a53d-b8714a2d8f21 2019-04-30 16:33:04.686137 5951 319 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.37.93 bf80f3d1-9c27-4fb9-a53d-b8714a2d8f21 2019-04-30 16:33:04.728515 5952 395 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.93 bf80f3d1-9c27-4fb9-a53d-b8714a2d8f21 2019-04-30 16:33:04.76745 5953 434 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.93 89dfb336-b3d9-43ae-bff8-ed7a16a9627f 2019-04-30 16:34:11.287246 5954 545 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 156\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.115801E4\nmove_type: '1'\nsale_id: 434\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-201\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.4199E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-201 189.186.37.93 89dfb336-b3d9-43ae-bff8-ed7a16a9627f 2019-04-30 16:34:11.312801 5955 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-04-29 16:24:18.729882000 Z\n- &1 2019-04-30 15:56:24.229690000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-30 17:55:22.821318296 Z\nsign_in_count:\n- 86\n- 87\n 177 \N 189.186.37.93 6f3ae75e-915e-45b2-adce-5b5e745984f6 2019-04-30 17:55:22.82701 5956 2 User \N \N 2 User \N update ---\nunique_session_id:\n- rcknh9ydX_Dg6gDdi3sx\n- SYyQE9y9g9pQKGf3yh-e\n 178 \N 189.186.37.93 6f3ae75e-915e-45b2-adce-5b5e745984f6 2019-04-30 17:55:22.840217 5957 435 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 155\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2019-04-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-232\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.93 b13e3900-4c62-4fdd-8999-84ff7496a667 2019-04-30 20:30:52.479088 5958 532 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.37.93 b13e3900-4c62-4fdd-8999-84ff7496a667 2019-04-30 20:30:52.541894 5959 435 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.93 255e64b1-6108-4c86-ba16-729208136f01 2019-04-30 20:31:24.413199 5960 546 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 155\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1699E4\nmove_type: '1'\nsale_id: 435\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-232\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1699E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-232 189.186.37.93 255e64b1-6108-4c86-ba16-729208136f01 2019-04-30 20:31:24.446174 5961 80 Customer \N \N 2 User \N create ---\nnick_name: lizbeth lizarraga\nphone: "(667) 206-0411"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente lizbeth lizarraga fue registrado. 189.186.37.93 f6e84328-e771-4e06-87ce-62185d07940b 2019-04-30 20:32:32.56937 5962 436 Sale \N \N 2 User \N create ---\ncustomer_id: 80\nuser_id: 2\nopen_cash_register_id: 155\namount: !ruby/object:BigDecimal 18:0.1392E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1392E4\nstatus: 0\ndate_sale: 2019-04-30\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-233\nexpiration_date: 2019-06-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.93 135259f6-493c-4cfd-8ede-4f3620e986d4 2019-04-30 20:32:49.274732 5963 531 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.93 135259f6-493c-4cfd-8ede-4f3620e986d4 2019-04-30 20:32:49.310876 5964 547 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 155\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 436\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-233\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-233 189.186.37.93 47424eac-051c-452a-bcfe-2ded45babb88 2019-04-30 20:33:12.164512 5965 436 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.93 776ecd67-1fdc-40c9-bcec-b7435e40c118 2019-04-30 20:33:25.465239 5966 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-04-30 15:56:24.229690000 Z\n- &1 2019-04-30 17:55:22.821318000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-30 20:45:12.224652381 Z\nsign_in_count:\n- 87\n- 88\n 179 \N 189.186.37.93 799b9970-e923-4c7d-b3e3-4b9b5a8b7f72 2019-04-30 20:45:12.230198 5967 2 User \N \N 2 User \N update ---\nunique_session_id:\n- SYyQE9y9g9pQKGf3yh-e\n- _rRywhsf5MzyZJstp3-7\n 180 \N 189.186.37.93 799b9970-e923-4c7d-b3e3-4b9b5a8b7f72 2019-04-30 20:45:12.242786 5990 175 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.93 a7528729-4df3-4d0e-be8c-9e32c4fd73f1 2019-04-30 23:10:54.686823 6016 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-04-30 17:55:22.821318000 Z\n- &1 2019-04-30 20:45:12.224652000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-01 16:19:27.042369882 Z\nsign_in_count:\n- 88\n- 89\n 181 \N 189.186.37.93 68c5405b-7d0b-46d1-a669-4832687ccbb3 2019-05-01 16:19:27.049245 5968 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-29 18:24:41.915849000 Z\n- &1 2019-04-30 00:16:21.252031000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-30 21:38:27.454566226 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093955\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938349\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938349\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934453\n mask_addr: 4294967295\nsign_in_count:\n- 155\n- 156\n 312 \N 200.68.135.245 e3a516b7-8ad6-4dcc-a62e-19819c172149 2019-04-30 21:38:27.462238 5969 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tV3K5mauy5zysfL1Q5uf\n- Gw4oDpJcXWqxgyR7NxPx\n 313 \N 200.68.135.245 e3a516b7-8ad6-4dcc-a62e-19819c172149 2019-04-30 21:38:27.477554 5970 437 Sale \N \N 2 User \N create ---\ncustomer_id: 71\nuser_id: 2\nopen_cash_register_id: 155\namount: !ruby/object:BigDecimal 18:0.55948E3\ntax: !ruby/object:BigDecimal 18:0.8952E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-04-30\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-234\nexpiration_date: 2019-06-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.93 a122ea27-2694-4ebe-9948-5aba41203bc6 2019-04-30 21:40:47.135953 5971 138 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 19 \N 189.186.37.93 a122ea27-2694-4ebe-9948-5aba41203bc6 2019-04-30 21:40:47.175235 5972 548 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 155\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 437\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-234\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-234 189.186.37.93 d42ceb10-8499-48fc-b051-87e7ec3fac84 2019-04-30 21:40:58.273655 5973 437 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.93 806f49a1-9bc7-4572-90a5-931542a210bc 2019-04-30 21:41:00.157826 5974 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-28 16:48:56.514151000 Z\n- &1 2019-04-28 19:45:24.568520000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-30 21:45:14.824968091 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094647\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093085\n mask_addr: 4294967295\nsign_in_count:\n- 111\n- 112\n 224 \N 189.186.37.93 8ced4718-daa8-4f34-a7b9-15165b551638 2019-04-30 21:45:14.833532 5975 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 2gK-WXS3baBf9LwPx9Bn\n- z6UMCAycmRUh2-oAzvb_\n 225 \N 189.186.37.93 8ced4718-daa8-4f34-a7b9-15165b551638 2019-04-30 21:45:14.848602 5976 49 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 155\nquantity: !ruby/object:BigDecimal 18:0.628E3\nstatus: 1\nobservations: sueldo Rocio\nexpense_date: 2019-04-30\nexpense_code: PV1-E-43\n 1 Egreso por 628.0 registrado 189.186.37.93 e17bbe87-7af3-4a28-bdc9-acdfafa2dc4a 2019-04-30 22:34:28.144042 5977 549 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 155\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.628E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 49\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.93 e17bbe87-7af3-4a28-bdc9-acdfafa2dc4a 2019-04-30 22:34:28.174752 5978 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-28 19:45:24.568520000 Z\n- &1 2019-04-30 21:45:14.824968000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-30 22:39:03.539467200 Z\nsign_in_count:\n- 112\n- 113\n 226 \N 189.186.37.93 13365fda-4f9c-422c-936e-00aa390f6c30 2019-04-30 22:39:03.545032 5979 12 User \N \N 12 User \N update ---\nunique_session_id:\n- z6UMCAycmRUh2-oAzvb_\n- BbwPgAFvpaLhVXhWzDJD\n 227 \N 189.186.37.93 13365fda-4f9c-422c-936e-00aa390f6c30 2019-04-30 22:39:03.560734 5980 50 Expense \N \N 12 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 155\nquantity: !ruby/object:BigDecimal 18:0.15E3\nstatus: 1\nobservations: COMISION ANABELLY\nexpense_date: 2019-04-30\nexpense_code: PV1-E-44\n 1 Egreso por 150.0 registrado 189.186.37.93 859f6c0b-39be-45ab-a7fb-1824a0c9fc61 2019-04-30 22:39:33.109535 5981 550 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 155\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 50\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.93 859f6c0b-39be-45ab-a7fb-1824a0c9fc61 2019-04-30 22:39:33.134557 5982 81 Customer \N \N 12 User \N create ---\nnick_name: ROCIO LOPEZ\nphone: "(667) 326-1314"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ROCIO LOPEZ fue registrado. 189.186.37.93 ac8017b3-7ada-40f0-8e56-744223fa37f9 2019-04-30 23:06:07.631061 5983 438 Sale \N \N 12 User \N create ---\ncustomer_id: 81\nuser_id: 12\nopen_cash_register_id: 155\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-04-30\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-235\nexpiration_date: 2019-06-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.93 36be8a4b-947e-4a0e-8953-9721823a00ae 2019-04-30 23:06:20.878926 5984 175 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.37.93 36be8a4b-947e-4a0e-8953-9721823a00ae 2019-04-30 23:06:20.92802 5985 551 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 155\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 438\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-235\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.2E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-235 189.186.37.93 b4b85868-4b3d-4d58-bb62-13f3e6c1793c 2019-04-30 23:06:35.857079 5986 438 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.93 1df59038-028c-4ec9-b4f9-5106a976e5a3 2019-04-30 23:06:37.181829 5987 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-30 00:16:21.252031000 Z\n- &1 2019-04-30 21:38:27.454566000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-30 23:07:42.768254843 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938349\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934453\n mask_addr: 4294967295\nsign_in_count:\n- 156\n- 157\n 314 \N 200.68.135.245 1a1b83f9-e06a-4b0e-a515-9b445d7732fa 2019-04-30 23:07:42.777107 5988 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Gw4oDpJcXWqxgyR7NxPx\n- BxsH8KWJnQU64v4SPHKZ\n 315 \N 200.68.135.245 1a1b83f9-e06a-4b0e-a515-9b445d7732fa 2019-04-30 23:07:42.796795 5989 438 Sale \N \N 12 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV1-V-235 cancelada. 189.186.37.93 a7528729-4df3-4d0e-be8c-9e32c4fd73f1 2019-04-30 23:10:54.654385 5991 439 Sale \N \N 12 User \N create ---\ncustomer_id: 81\nuser_id: 12\nopen_cash_register_id: 155\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-04-30\nsaletype: 2\nseller_id: 8\nsale_code: PV1-V-236\nexpiration_date: 2019-06-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.93 cef60bb0-9df7-4058-8fed-0e62380af12f 2019-04-30 23:12:50.778976 5992 175 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.93 cef60bb0-9df7-4058-8fed-0e62380af12f 2019-04-30 23:12:50.807182 5993 552 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 155\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 439\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-236\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.2E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-236 189.186.37.93 fb2473d5-667b-4ce6-9f21-e7068c88971f 2019-04-30 23:13:03.881075 5994 439 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.93 852dbdde-c36a-4695-9b2a-5fe0020d5c05 2019-04-30 23:13:08.711117 5995 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-30 21:38:27.454566000 Z\n- &1 2019-04-30 23:07:42.768254000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-04-30 23:32:29.622388271 Z\nsign_in_count:\n- 157\n- 158\n 316 \N 200.68.135.245 8f86e949-5617-44e1-9110-d6469e52fcc7 2019-04-30 23:32:29.631508 5996 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BxsH8KWJnQU64v4SPHKZ\n- gnqfou2yJY6ZVR4wMeBz\n 317 \N 200.68.135.245 8f86e949-5617-44e1-9110-d6469e52fcc7 2019-04-30 23:32:29.652378 5997 553 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 155\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.449E3\nmove_type: '1'\nsale_id: 437\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-234 189.186.37.93 4fb09650-679a-41a7-ab30-9e53adcd6b5d 2019-04-30 23:57:04.043015 5998 437 Sale \N \N 12 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.93 13661b31-7d72-46bb-aab9-634dceb80bb1 2019-04-30 23:57:06.009546 5999 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-04-29 15:55:29.661942000 Z\n- &1 2019-04-30 16:08:54.274696000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-01 00:06:23.637328641 Z\nsign_in_count:\n- 54\n- 55\n 110 \N 189.186.37.93 0d64a9e1-5346-411a-a876-3fe8dc9aadf2 2019-05-01 00:06:23.644888 6000 10 User \N \N 10 User \N update ---\nunique_session_id:\n- nybna1ezLU_CMTgDxAuK\n- _amtuW_5oEas39xNz7e9\n 111 \N 189.186.37.93 0d64a9e1-5346-411a-a876-3fe8dc9aadf2 2019-05-01 00:06:23.662676 6001 554 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 34\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 138\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '142568798758'\n 1 \N 189.186.37.93 8db35786-48a2-412e-be0c-cf682eb34f37 2019-05-01 00:06:53.684992 6002 554 CashRegistersMove \N \N 10 User \N update ---\nopen_cash_register_id:\n- 34\n- 156\n 2 movimiento de efectivo por venta con folio PV1-V-77 189.186.37.93 8db35786-48a2-412e-be0c-cf682eb34f37 2019-05-01 00:06:53.751094 6003 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-29 22:12:06.720236000 Z\n- &1 2019-04-29 22:31:12.153678000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-01 00:31:15.471210125 Z\nsign_in_count:\n- 167\n- 168\n 336 \N 189.186.37.93 0571a6d5-606e-45cc-845a-e78f8ae77af3 2019-05-01 00:31:15.479835 6004 3 User \N \N 3 User \N update ---\nunique_session_id:\n- AiXu6e1TKMYb-jtKDh27\n- 4Dkmnhbhn-euTkfoZHMj\n 337 \N 189.186.37.93 0571a6d5-606e-45cc-845a-e78f8ae77af3 2019-05-01 00:31:15.502899 6005 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-30 21:45:14.824968000 Z\n- &1 2019-04-30 22:39:03.539467000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-01 00:34:39.624155713 Z\nsign_in_count:\n- 113\n- 114\n 228 \N 189.186.37.93 f553c347-3b07-4f59-8741-e78acac50c19 2019-05-01 00:34:39.630834 6006 12 User \N \N 12 User \N update ---\nunique_session_id:\n- BbwPgAFvpaLhVXhWzDJD\n- RwjsK4cqm6xDrsraVF9J\n 229 \N 189.186.37.93 f553c347-3b07-4f59-8741-e78acac50c19 2019-05-01 00:34:39.644465 6007 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-30 23:07:42.768254000 Z\n- &1 2019-04-30 23:32:29.622388000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-01 01:49:31.909661524 Z\nsign_in_count:\n- 158\n- 159\n 318 \N 200.68.135.245 009c843a-099c-4bff-b433-f0df6acc3542 2019-05-01 01:49:31.91598 6008 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gnqfou2yJY6ZVR4wMeBz\n- cxj79EEAxp6c6L-yKcu2\n 319 \N 200.68.135.245 009c843a-099c-4bff-b433-f0df6acc3542 2019-05-01 01:49:31.932827 6009 153 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 156\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.215801E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.482E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1682E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.93 6c162baf-b760-4368-aa5d-e02561a6ba39 2019-05-01 01:55:15.130194 6010 156 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.93 6c162baf-b760-4368-aa5d-e02561a6ba39 2019-05-01 01:55:15.183327 6011 154 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 155\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.3948E4\namount_out: !ruby/object:BigDecimal 18:0.778E3\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.29E4\ncash_fund: !ruby/object:BigDecimal 18:0.577E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3477E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.93 c82f1d82-e98b-466c-af0f-15fb5cbbbcff 2019-05-01 01:58:20.388274 6012 155 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.93 c82f1d82-e98b-466c-af0f-15fb5cbbbcff 2019-05-01 01:58:20.436081 6013 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-04-30 16:08:54.274696000 Z\n- &1 2019-05-01 00:06:23.637328000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-01 16:04:32.040664286 Z\nsign_in_count:\n- 55\n- 56\n 112 \N 189.186.37.93 2192528c-cc4d-45db-9159-881348c847a1 2019-05-01 16:04:32.072799 6014 10 User \N \N 10 User \N update ---\nunique_session_id:\n- _amtuW_5oEas39xNz7e9\n- hY-JFMd1Gd3DSKDxCenZ\n 113 \N 189.186.37.93 2192528c-cc4d-45db-9159-881348c847a1 2019-05-01 16:04:32.093868 6015 157 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.482E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 482.0 189.186.37.93 7f872ba0-0bcc-45ec-8d87-f0b771e44bc4 2019-05-01 16:04:40.757012 6017 2 User \N \N 2 User \N update ---\nunique_session_id:\n- _rRywhsf5MzyZJstp3-7\n- HaBaeDLxxymRt4qCVBe4\n 182 \N 189.186.37.93 68c5405b-7d0b-46d1-a669-4832687ccbb3 2019-05-01 16:19:27.063879 6018 158 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.577E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 577.0 189.186.37.93 124c7feb-57e1-4067-8a9f-364c7b4f585f 2019-05-01 16:20:12.873421 6019 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-04-30 23:32:29.622388000 Z\n- &1 2019-05-01 01:49:31.909661000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-01 17:35:52.696648138 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934453\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093955\n mask_addr: 4294967295\nsign_in_count:\n- 159\n- 160\n 320 \N 189.186.40.195 a55b8ce8-5fab-4a27-bd44-a806f88a43e5 2019-05-01 17:35:52.707004 6020 4 User \N \N 4 User \N update ---\nunique_session_id:\n- cxj79EEAxp6c6L-yKcu2\n- QY4zS5H-sioz4TPoeEKK\n 321 \N 189.186.40.195 a55b8ce8-5fab-4a27-bd44-a806f88a43e5 2019-05-01 17:35:52.728081 6021 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-01 01:49:31.909661000 Z\n- &1 2019-05-01 17:35:52.696648000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-01 18:48:02.490846865 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934453\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093955\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093955\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946214\n mask_addr: 4294967295\nsign_in_count:\n- 160\n- 161\n 322 \N 200.68.181.230 3d2ce18c-c680-4608-9877-24e0f6907b99 2019-05-01 18:48:02.497933 6022 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QY4zS5H-sioz4TPoeEKK\n- NhKe_tQjMNhGzxf9RT7o\n 323 \N 200.68.181.230 3d2ce18c-c680-4608-9877-24e0f6907b99 2019-05-01 18:48:02.513696 6023 440 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 158\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2019-05-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-237\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.93 6bebb153-e5e7-43cd-83aa-4ecf1cd9e4d1 2019-05-01 18:57:08.622642 6024 532 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.37.93 6bebb153-e5e7-43cd-83aa-4ecf1cd9e4d1 2019-05-01 18:57:08.653945 6025 440 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.93 1ba28f37-312a-4d8d-bce5-3fcdc126061c 2019-05-01 18:57:29.680441 6026 555 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 158\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1699E4\nmove_type: '1'\nsale_id: 440\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-237\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1699E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-237 189.186.37.93 1ba28f37-312a-4d8d-bce5-3fcdc126061c 2019-05-01 18:57:29.734722 6027 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-04-30 20:45:12.224652000 Z\n- &1 2019-05-01 16:19:27.042369000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-01 19:19:24.877731930 Z\nsign_in_count:\n- 89\n- 90\n 183 \N 189.186.37.93 9d9dd75c-e445-4186-9d1b-e2efc416dfd4 2019-05-01 19:19:24.900088 6028 2 User \N \N 2 User \N update ---\nunique_session_id:\n- HaBaeDLxxymRt4qCVBe4\n- usSESJ8o_yADcxkTsowE\n 184 \N 189.186.37.93 9d9dd75c-e445-4186-9d1b-e2efc416dfd4 2019-05-01 19:19:24.920164 6029 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-04-13 17:09:19.060474000 Z\n- &1 2019-04-16 00:12:43.345030000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-01 19:44:52.552018464 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092299\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934315\n mask_addr: 4294967295\nsign_in_count:\n- 48\n- 49\n 98 \N 200.68.135.107 4da011d5-2d62-4ccb-9cf8-9a33c8d61c6a 2019-05-01 19:44:52.560796 6030 1 User \N \N 1 User \N update ---\nunique_session_id:\n- i9AXrUf_sE-ZWRPvxZbE\n- sS18YTpNZ29X2YyXm_gN\n 99 \N 200.68.135.107 4da011d5-2d62-4ccb-9cf8-9a33c8d61c6a 2019-05-01 19:44:52.577161 6031 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-01 17:35:52.696648000 Z\n- &1 2019-05-01 18:48:02.490846000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-01 20:22:37.362561620 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093955\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946214\n mask_addr: 4294967295\nsign_in_count:\n- 161\n- 162\n 324 \N 200.68.181.230 ba49db5e-50cd-407d-a03a-ce342b7d3ba4 2019-05-01 20:22:37.369986 6032 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NhKe_tQjMNhGzxf9RT7o\n- 3omMY-YEqhAzju4W61fF\n 325 \N 200.68.181.230 ba49db5e-50cd-407d-a03a-ce342b7d3ba4 2019-05-01 20:22:37.385425 6033 155 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 158\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1699E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.16E4\ncash_fund: !ruby/object:BigDecimal 18:0.676E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2276E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.93 0c1e6844-bcdf-4582-b272-781f71b4fe8c 2019-05-01 21:55:18.093729 6034 158 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.93 0c1e6844-bcdf-4582-b272-781f71b4fe8c 2019-05-01 21:55:18.111552 6035 156 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 157\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.482E3\nphysical_cash: !ruby/object:BigDecimal 18:0.482E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.93 46bbb9d0-6209-4371-bced-f1463568c4a9 2019-05-01 21:59:27.229694 6036 157 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.93 46bbb9d0-6209-4371-bced-f1463568c4a9 2019-05-01 21:59:27.245792 6037 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-01 16:19:27.042369000 Z\n- &1 2019-05-01 19:19:24.877731000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-02 15:37:25.904633861 Z\nsign_in_count:\n- 90\n- 91\n 185 \N 189.186.37.93 eb2d142c-e775-4c7a-89a8-12dc91202b12 2019-05-02 15:37:25.944628 6038 2 User \N \N 2 User \N update ---\nunique_session_id:\n- usSESJ8o_yADcxkTsowE\n- qzUvDobqUV1C8mzje213\n 186 \N 189.186.37.93 eb2d142c-e775-4c7a-89a8-12dc91202b12 2019-05-02 15:37:25.967181 6039 159 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.676E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 676.0 189.186.37.93 f17b4838-8275-4e80-9768-7b9d020b5267 2019-05-02 15:40:31.029114 6040 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-04-29 22:31:12.153678000 Z\n- &1 2019-05-01 00:31:15.471210000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-02 16:09:54.006838252 Z\nsign_in_count:\n- 168\n- 169\n 338 \N 189.186.37.93 66587e69-839b-4dfd-865e-d3435335f556 2019-05-02 16:09:54.015432 6041 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 4Dkmnhbhn-euTkfoZHMj\n- xS_VdEgefFSQfVoPoNFu\n 339 \N 189.186.37.93 66587e69-839b-4dfd-865e-d3435335f556 2019-05-02 16:09:54.035637 6042 13 User \N \N 3 User \N create ---\nuserid: YARETZI\nfirst_name: YARETZI\nlast_name: NAJAR\nusertype: C\nemail: yaretzinajar12@hotmail.com\nencrypted_password: "$2a$10$gBxeqfOZONYhZV9EOmkwkefOV7l.Hp4IuaeLjvznVwtgBam9mV8ya"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 2\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.186.37.93 d5387231-07a4-43ab-a239-83fcb22a0a29 2019-05-02 16:19:13.968193 6043 14 User \N \N 2 User \N create ---\nuserid: YARETZII\nfirst_name: YARETZII\nlast_name: NAJAR\nusertype: C\nemail: yaretzi_najar1@hotmail.com\nencrypted_password: "$2a$10$selbbIWARD.jdT6NZJI/geFcpeMn8q0zd9334JWK9hVPAvU132IJe"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 1\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.186.37.93 9f3bdf25-2aaa-422a-be36-b0de8c3c6986 2019-05-02 16:26:41.317337 6044 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-01 00:31:15.471210000 Z\n- &1 2019-05-02 16:09:54.006838000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-02 16:27:00.712975213 Z\nsign_in_count:\n- 169\n- 170\n 340 \N 189.186.37.93 d443766f-e4b6-45f9-bcb8-b69648509590 2019-05-02 16:27:00.718505 6045 3 User \N \N 3 User \N update ---\nunique_session_id:\n- xS_VdEgefFSQfVoPoNFu\n- vN4AAgRxTob4GzXjBMUs\n 341 \N 189.186.37.93 d443766f-e4b6-45f9-bcb8-b69648509590 2019-05-02 16:27:00.730143 6046 11 User \N \N 3 User \N update ---\nstatus:\n- active\n- 2\n 80 El usuario ILSE fue desactivado. 189.186.37.93 05c39fbf-9748-4eb8-877a-97b3e4a5c903 2019-05-02 16:27:38.049099 6047 15 User \N \N 3 User \N create ---\nuserid: ROCIOG\nfirst_name: ROCIOG\nlast_name: GUEVARA\nusertype: C\nemail: rocioguevara_86@hotmail.com\nencrypted_password: "$2a$10$piPcHux11GCWTNC4dabn9.cUvmBcU3kQfHwSNKGqN87R3v7ygfVc6"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 2\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.186.37.93 af0c998a-6480-41d6-a91f-10b61deaa682 2019-05-02 16:34:40.107185 6048 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-01 19:19:24.877731000 Z\n- &1 2019-05-02 15:37:25.904633000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-02 16:46:26.277067243 Z\nsign_in_count:\n- 91\n- 92\n 187 \N 189.186.37.93 5a10c60b-78a9-4920-9efd-3598109b3621 2019-05-02 16:46:26.285099 6049 2 User \N \N 2 User \N update ---\nunique_session_id:\n- qzUvDobqUV1C8mzje213\n- tq3h1LndNpGSLZZxihgo\n 188 \N 189.186.37.93 5a10c60b-78a9-4920-9efd-3598109b3621 2019-05-02 16:46:26.298509 6050 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-05-01 00:06:23.637328000 Z\n- &1 2019-05-01 16:04:32.040664000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-02 16:56:52.049830695 Z\nsign_in_count:\n- 56\n- 57\n 114 \N 189.186.37.93 e82640d3-cfd8-47b0-9934-8b22220ce952 2019-05-02 16:56:52.05632 6051 10 User \N \N 10 User \N update ---\nunique_session_id:\n- hY-JFMd1Gd3DSKDxCenZ\n- 6XHGxPf2cJJSooZ7NEzz\n 115 \N 189.186.37.93 e82640d3-cfd8-47b0-9934-8b22220ce952 2019-05-02 16:56:52.06961 6052 160 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.482E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 482.0 189.186.37.93 552ded37-9086-48f3-b45a-f879fb86e4db 2019-05-02 16:57:02.203956 6053 51 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 159\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida\nexpense_date: 2019-05-02\nexpense_code: PV1-E-45\n 1 Egreso por 50.0 registrado 189.186.37.93 4db28444-35ca-4379-9d70-215b7b77b05a 2019-05-02 18:30:16.863066 6054 556 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 159\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 51\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.93 4db28444-35ca-4379-9d70-215b7b77b05a 2019-05-02 18:30:16.907269 6055 557 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 159\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 439\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-236 189.186.37.93 9dde6367-1d52-4ff2-818d-7555549b4895 2019-05-02 18:47:50.443046 6056 439 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.93 1c88dee2-d349-4fdd-9ea1-2454918b2019 2019-05-02 18:47:51.381943 6057 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-01 18:48:02.490846000 Z\n- &1 2019-05-01 20:22:37.362561000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-02 20:25:00.298264358 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946214\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 162\n- 163\n 326 \N 189.186.50.198 14f2090c-3298-41be-b227-af54573b58f8 2019-05-02 20:25:00.30489 6058 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3omMY-YEqhAzju4W61fF\n- oq_4br_fxgZawrvPUurE\n 327 \N 189.186.50.198 14f2090c-3298-41be-b227-af54573b58f8 2019-05-02 20:25:00.319326 6059 441 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 159\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-05-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-238\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.93 7c14e386-f717-4a23-850c-6b18a825867d 2019-05-02 20:34:33.174791 6060 238 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.37.93 7c14e386-f717-4a23-850c-6b18a825867d 2019-05-02 20:34:33.208214 6061 441 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.93 177bc293-e0eb-48aa-8907-0b035e4f5a7d 2019-05-02 20:34:42.186386 6062 558 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 159\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 441\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-238\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-238 189.186.37.93 177bc293-e0eb-48aa-8907-0b035e4f5a7d 2019-05-02 20:34:42.219914 6063 432 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.37.93 c240336a-6924-4b56-b26c-5e205ae1c047 2019-05-02 21:12:11.364158 13428 667 Product \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 3 El producto BLS-0054 fue eliminado. 189.186.53.136 c006de71-0108-4d3e-b42f-fb32269ed1f2 2019-08-22 04:27:46.409365 6064 432 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.37.93 e66ac570-35cc-4154-8540-13012d7102b3 2019-05-02 21:12:17.203061 6065 34 Transfer \N \N 10 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-05-02\nuser_id: 10\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.37.93 eb78bd74-8643-4a18-a88c-ce2eef6e785d 2019-05-02 21:12:21.630576 6066 432 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.37.93 4bb320cd-d93b-43ca-a0a9-731434e90ba7 2019-05-02 21:13:37.534449 6067 35 Transfer \N \N 10 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-05-02\nuser_id: 10\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.37.93 3a6a0f6d-33cd-48f5-8f3d-511b3b9eff4a 2019-05-02 21:13:40.818333 6068 34 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-05-02\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.37.93 84601a35-a008-4fc4-896b-10900595918f 2019-05-02 21:25:44.36728 6069 518 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.37.93 84601a35-a008-4fc4-896b-10900595918f 2019-05-02 21:25:44.395364 6070 35 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-05-02\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.37.93 0d57ebe2-3265-4600-a316-1f5385842c06 2019-05-02 21:26:07.162016 6071 518 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.37.93 0d57ebe2-3265-4600-a316-1f5385842c06 2019-05-02 21:26:07.184275 6072 506 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 7 \N 189.186.37.93 004f3164-49a0-4ce3-8c9a-8717b6b1c9f5 2019-05-02 21:42:54.19032 6073 506 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 8 \N 189.186.37.93 6ee11672-65c4-49fa-9db9-32799db8a9d1 2019-05-02 21:42:58.309783 6074 36 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-05-02\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.37.93 5ad92a32-d344-4a45-b829-4922f2fae48e 2019-05-02 21:43:02.423396 6075 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-04-30 22:39:03.539467000 Z\n- &1 2019-05-01 00:34:39.624155000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-02 21:44:49.318587332 Z\nsign_in_count:\n- 114\n- 115\n 230 \N 189.186.37.93 28013537-377a-4c11-a656-d08aede4eba6 2019-05-02 21:44:49.325356 6076 12 User \N \N 12 User \N update ---\nunique_session_id:\n- RwjsK4cqm6xDrsraVF9J\n- ampfDm3XHryw5SbvXjcV\n 231 \N 189.186.37.93 28013537-377a-4c11-a656-d08aede4eba6 2019-05-02 21:44:49.338695 6077 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-02 16:09:54.006838000 Z\n- &1 2019-05-02 16:27:00.712975000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-02 21:45:33.560441249 Z\nsign_in_count:\n- 170\n- 171\n 342 \N 189.186.37.93 900fc9f4-6fba-4b2d-9a59-6077cf5e4815 2019-05-02 21:45:33.566036 6078 3 User \N \N 3 User \N update ---\nunique_session_id:\n- vN4AAgRxTob4GzXjBMUs\n- LBQSf22WGxL4vR4DM-Ds\n 343 \N 189.186.37.93 900fc9f4-6fba-4b2d-9a59-6077cf5e4815 2019-05-02 21:45:33.578517 6079 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-01 20:22:37.362561000 Z\n- &1 2019-05-02 20:25:00.298264000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-02 22:28:21.556026756 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946214\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938330\n mask_addr: 4294967295\nsign_in_count:\n- 163\n- 164\n 328 \N 200.68.151.26 2f60b57c-841f-4b28-ade5-8e1a96f32217 2019-05-02 22:28:21.563746 6080 4 User \N \N 4 User \N update ---\nunique_session_id:\n- oq_4br_fxgZawrvPUurE\n- sVs-GTszzxcaL9qQ8XEx\n 329 \N 200.68.151.26 2f60b57c-841f-4b28-ade5-8e1a96f32217 2019-05-02 22:28:21.579834 6081 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-02 20:25:00.298264000 Z\n- &1 2019-05-02 22:28:21.556026000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-02 23:03:22.888307592 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938330\n mask_addr: 4294967295\nsign_in_count:\n- 164\n- 165\n 330 \N 200.68.151.26 f7eb2e13-e576-4438-a734-d7e75f9cad92 2019-05-02 23:03:22.895915 6082 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sVs-GTszzxcaL9qQ8XEx\n- TzVMctYikXZxXqYJj_vx\n 331 \N 200.68.151.26 f7eb2e13-e576-4438-a734-d7e75f9cad92 2019-05-02 23:03:22.911667 6083 442 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 159\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-05-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-239\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.93 d2e52d37-cd38-45e3-94fa-007fa91d2b58 2019-05-02 23:07:51.260807 6084 218 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.37.93 d2e52d37-cd38-45e3-94fa-007fa91d2b58 2019-05-02 23:07:51.294526 6085 442 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.93 64174cbe-1a6c-4a53-8e6c-f709f96215ee 2019-05-02 23:08:50.723528 6086 559 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 159\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 442\ncardnumber: 7696\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-239\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-239 189.186.37.93 64174cbe-1a6c-4a53-8e6c-f709f96215ee 2019-05-02 23:08:50.745095 6087 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-02 15:37:25.904633000 Z\n- &1 2019-05-02 16:46:26.277067000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-02 23:12:15.108651958 Z\nsign_in_count:\n- 92\n- 93\n 189 \N 189.186.37.93 cee49fcb-b2e0-4b6a-946d-b4f141947c6e 2019-05-02 23:12:15.114681 6088 2 User \N \N 2 User \N update ---\nunique_session_id:\n- tq3h1LndNpGSLZZxihgo\n- rdbGLqqRzQZbzF5-3MUk\n 190 \N 189.186.37.93 cee49fcb-b2e0-4b6a-946d-b4f141947c6e 2019-05-02 23:12:15.127628 6089 443 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 160\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-05-02\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-202\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.93 dd70beb5-c86e-4a55-a236-ac0305277001 2019-05-02 23:13:21.613311 6090 517 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.37.93 dd70beb5-c86e-4a55-a236-ac0305277001 2019-05-02 23:13:21.641887 6091 443 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.93 d26a7a4d-a6a1-4017-a355-fffb3e747211 2019-05-02 23:13:35.986812 6092 560 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 160\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 443\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-202\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-202 189.186.37.93 d26a7a4d-a6a1-4017-a355-fffb3e747211 2019-05-02 23:13:36.017291 6093 561 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 159\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 303\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-158 189.186.37.93 59915c6e-0ec1-49b0-8675-4d1dffbb2aa4 2019-05-02 23:37:24.133091 6094 303 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.93 09a8aa83-91ad-4333-bd74-55a571893ec2 2019-05-02 23:37:25.88956 6095 444 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 159\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.449E3\ntotal: !ruby/object:BigDecimal 18:0.105E4\nstatus: 0\ndate_sale: 2019-05-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-240\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.93 f22c1652-07a1-41a6-adb4-fc755f2fd818 2019-05-02 23:39:09.862185 6096 566 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.37.93 f22c1652-07a1-41a6-adb4-fc755f2fd818 2019-05-02 23:39:09.890174 6097 444 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.93 069b0d61-9f3c-4e54-923e-2c5f175740a3 2019-05-02 23:39:35.508689 6098 562 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 159\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.105E4\nmove_type: '1'\nsale_id: 444\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-240\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.105E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-240 189.186.37.93 069b0d61-9f3c-4e54-923e-2c5f175740a3 2019-05-02 23:39:35.540309 6099 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-02 22:28:21.556026000 Z\n- &1 2019-05-02 23:03:22.888307000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-03 00:21:41.445511060 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938330\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938078\n mask_addr: 4294967295\nsign_in_count:\n- 165\n- 166\n 332 \N 200.68.150.30 c4d76a59-ab3c-4a7e-ac91-9d87b7fdbe1a 2019-05-03 00:21:41.458001 6100 4 User \N \N 4 User \N update ---\nunique_session_id:\n- TzVMctYikXZxXqYJj_vx\n- s3XCKv9PksMpWjhQXiBC\n 333 \N 200.68.150.30 c4d76a59-ab3c-4a7e-ac91-9d87b7fdbe1a 2019-05-03 00:21:41.483742 6101 445 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 160\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-05-02\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-203\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.93 1ff6a5c3-58be-4ccb-a0dc-cc8c417ca10d 2019-05-03 01:29:15.556536 6102 544 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.37.93 1ff6a5c3-58be-4ccb-a0dc-cc8c417ca10d 2019-05-03 01:29:15.594889 6103 445 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.93 ecdb6012-9dc1-4049-b182-c5d6e59b525c 2019-05-03 01:29:43.865165 6104 563 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 160\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 445\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-203\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-203 189.186.37.93 ecdb6012-9dc1-4049-b182-c5d6e59b525c 2019-05-03 01:29:43.893354 6105 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-02 23:03:22.888307000 Z\n- &1 2019-05-03 00:21:41.445511000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-03 01:36:11.359666730 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938330\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938078\n mask_addr: 4294967295\nsign_in_count:\n- 166\n- 167\n 334 \N 200.68.150.30 138bdae3-bb05-466b-aa56-2ffbe80ba057 2019-05-03 01:36:11.369846 6106 4 User \N \N 4 User \N update ---\nunique_session_id:\n- s3XCKv9PksMpWjhQXiBC\n- TtmEYXySnbgWV4xgz3-Z\n 335 \N 200.68.150.30 138bdae3-bb05-466b-aa56-2ffbe80ba057 2019-05-03 01:36:11.391033 6107 564 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 174\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.93 4f568368-6dc5-4c49-b892-0c16634f41c9 2019-05-03 01:49:48.783613 6108 564 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 49\n- 159\n 2 movimiento de efectivo por venta con folio PV1-V-98 189.186.37.93 4f568368-6dc5-4c49-b892-0c16634f41c9 2019-05-03 01:49:48.808053 6109 52 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 159\nquantity: !ruby/object:BigDecimal 18:0.11E4\nstatus: 1\nobservations: sueldo Anabelly\nexpense_date: 2019-05-02\nexpense_code: PV1-E-46\n 1 Egreso por 1100.0 registrado 189.186.37.93 3dfae3ce-95d6-4e1b-9f45-8ede2bc6309a 2019-05-03 01:50:48.652293 6110 565 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 159\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.11E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 52\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.93 3dfae3ce-95d6-4e1b-9f45-8ede2bc6309a 2019-05-03 01:50:48.675164 6154 54 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 162\nquantity: !ruby/object:BigDecimal 18:0.25E3\nstatus: 1\nobservations: "$200 PAQUETERIA\\r\\n$50 COMIDA"\nexpense_date: 2019-05-03\nexpense_code: PV1-E-48\n 1 Egreso por 250.0 registrado 189.186.49.156 44d8ec3d-21a8-4a80-adba-77f17cf500c3 2019-05-04 02:00:31.230693 6111 157 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 159\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5046E4\namount_out: !ruby/object:BigDecimal 18:0.115E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.24E4\ncash_fund: !ruby/object:BigDecimal 18:0.873E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3273E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.93 55c1f2ea-5284-4cfd-9499-eb1805f377f7 2019-05-03 01:55:41.589256 6112 159 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.93 55c1f2ea-5284-4cfd-9499-eb1805f377f7 2019-05-03 01:55:41.609723 6113 158 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 160\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1498E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.14E4\ncash_fund: !ruby/object:BigDecimal 18:0.58E3\nphysical_cash: !ruby/object:BigDecimal 18:0.198E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.93 4952199c-ccd5-4b0b-8759-6a2df8f9290f 2019-05-03 01:57:28.63831 6114 160 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.93 4952199c-ccd5-4b0b-8759-6a2df8f9290f 2019-05-03 01:57:28.656922 6115 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-05-01 16:04:32.040664000 Z\n- &1 2019-05-02 16:56:52.049830000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-03 17:05:43.819160362 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093085\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\nsign_in_count:\n- 57\n- 58\n 116 \N 189.186.49.156 f7853172-523b-4ce3-8170-1f9bd18a5c9e 2019-05-03 17:05:43.852933 6116 10 User \N \N 10 User \N update ---\nunique_session_id:\n- 6XHGxPf2cJJSooZ7NEzz\n- hkiB4_yhvz_GNzp4Mq2R\n 117 \N 189.186.49.156 f7853172-523b-4ce3-8170-1f9bd18a5c9e 2019-05-03 17:05:43.875388 6117 161 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.58E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 580.0 189.186.49.156 7297e062-37ff-4795-b44f-8ab1516b489a 2019-05-03 17:05:49.550687 6118 446 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 161\namount: !ruby/object:BigDecimal 18:0.57672E3\ntax: !ruby/object:BigDecimal 18:0.9228E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-05-03\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-204\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.49.156 bbf88a54-8205-47be-b8d7-8eef27af60b8 2019-05-03 17:06:07.097223 6119 436 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.49.156 bbf88a54-8205-47be-b8d7-8eef27af60b8 2019-05-03 17:06:07.134976 6120 446 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.49.156 ab6948d2-0d4f-447d-819a-f9fb82fcbb3f 2019-05-03 17:06:22.190905 6121 566 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 161\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.669E3\nmove_type: '1'\nsale_id: 446\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-204\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-204 189.186.49.156 ab6948d2-0d4f-447d-819a-f9fb82fcbb3f 2019-05-03 17:06:22.217647 6122 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-03 00:21:41.445511000 Z\n- &1 2019-05-03 01:36:11.359666000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-03 20:36:32.923391381 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938078\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 167\n- 168\n 336 \N 189.186.50.198 55c81241-46b7-4702-a31b-d1904d4f4e0f 2019-05-03 20:36:32.932915 6123 4 User \N \N 4 User \N update ---\nunique_session_id:\n- TtmEYXySnbgWV4xgz3-Z\n- XF1GvxwA8i2Q7LzXvZJQ\n 337 \N 189.186.50.198 55c81241-46b7-4702-a31b-d1904d4f4e0f 2019-05-03 20:36:32.953467 6124 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-02 16:46:26.277067000 Z\n- &1 2019-05-02 23:12:15.108651000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-03 20:59:35.765202332 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093085\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\nsign_in_count:\n- 93\n- 94\n 191 \N 189.186.49.156 a1d650e2-d29e-4727-b716-f40091c46c06 2019-05-03 20:59:35.773104 6125 2 User \N \N 2 User \N update ---\nunique_session_id:\n- rdbGLqqRzQZbzF5-3MUk\n- N4FC6jkTfN3e4vPvaYbz\n 192 \N 189.186.49.156 a1d650e2-d29e-4727-b716-f40091c46c06 2019-05-03 20:59:35.786613 6126 567 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: \npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.269E3\nmove_type: '1'\nsale_id: 301\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.269E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-156 189.186.49.156 e2551695-d937-4685-90b9-290e3606cc2a 2019-05-03 21:00:34.603059 6127 301 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.49.156 37711614-a695-4858-90fe-1ecdaa2068e4 2019-05-03 21:00:36.609567 6128 162 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.873E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 873.0 189.186.49.156 51633fba-219c-454a-a997-6a7803e4538b 2019-05-03 22:57:25.071961 6129 447 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 162\namount: !ruby/object:BigDecimal 18:0.71638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.2E3\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-05-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-241\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.49.156 ff18ef40-00e8-4844-9dbd-b64d4b69a6ee 2019-05-03 22:58:11.021863 6130 225 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.49.156 ff18ef40-00e8-4844-9dbd-b64d4b69a6ee 2019-05-03 22:58:11.056278 6131 447 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.49.156 15eb3085-9c60-497a-ba23-2e791b0da778 2019-05-03 22:58:18.574908 6132 568 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 162\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 447\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-241\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-241 189.186.49.156 15eb3085-9c60-497a-ba23-2e791b0da778 2019-05-03 22:58:18.601348 13429 665 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '665'\n is_parent: false\n sku: BLU-665\n name: BLS-0058\n description: BLUSA MUY MUY MM0778 BLANCA CON ENCAJE EN LAS MANGAS\n price_base: '170.0'\n price_sale: '469.0'\n img_product: 18860C9C-A568-4904-94E0-8E86C3F1BA2C_2440_.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000665'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-20 21:53:24.328963'\n updated_at: &12 2019-08-22 04:42:33.676665685 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '665'\n sku: BLU-665\n name: BLS-0058\n description: BLUSA MUY MUY MM0778 BLANCA CON ENCAJE EN LAS MANGAS\n price_base: '170.00'\n price_sale: '469.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-20 21:53:24.328963'\n updated_at: '2019-08-20 22:34:04.651347'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000665'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '665'\n type: *3\n value: 665\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-665\n type: *7\n value: BLU-665\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0058\n type: *8\n value: BLS-0058\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA MUY MUY MM0778 BLANCA CON ENCAJE EN LAS\n MANGAS\n type: *6\n value: BLUSA MUY MUY MM0778 BLANCA CON ENCAJE EN LAS MANGAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '170.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.17E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '469.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.469E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 18860C9C-A568-4904-94E0-8E86C3F1BA2C_2440_.JPG\n type: *2\n value: 18860C9C-A568-4904-94E0-8E86C3F1BA2C_2440_.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000665'\n type: *2\n value: '0000665'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-20 21:53:24.328963'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 18860C9C-A568-4904-94E0-8E86C3F1BA2C_2440_.JPG\n 4 El producto BLU-665 fue modificado. 189.186.53.136 ab6625f2-22df-43b3-95b7-cdf02f183cdc 2019-08-22 04:42:33.728792 6133 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-03 01:36:11.359666000 Z\n- &1 2019-05-03 20:36:32.923391000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-03 23:05:30.636135078 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938078\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 168\n- 169\n 338 \N 189.186.50.198 a93af2d0-8181-4069-b159-e1cb580858f9 2019-05-03 23:05:30.649663 6134 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XF1GvxwA8i2Q7LzXvZJQ\n- SXE76evHDyVsbYqkt6k6\n 339 \N 189.186.50.198 a93af2d0-8181-4069-b159-e1cb580858f9 2019-05-03 23:05:30.668241 6135 448 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 162\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-05-03\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-242\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.49.156 8a87f1f5-807f-4a5b-9eba-5c84c813ed1f 2019-05-04 01:08:18.475896 6136 530 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.49.156 8a87f1f5-807f-4a5b-9eba-5c84c813ed1f 2019-05-04 01:08:18.518461 6137 448 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.49.156 7caa24ec-d3e7-4bf2-86dd-fecc3ed72c80 2019-05-04 01:08:25.22961 6138 569 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 162\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 448\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-242\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-242 189.186.49.156 7caa24ec-d3e7-4bf2-86dd-fecc3ed72c80 2019-05-04 01:08:25.267068 6139 548 Product \N \N 2 User \N create ---\nsku: VES-548\nname: VST-0019\ndescription: VESTIDO LARGO LATISTE ST.LD51032Z\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-548 fue creado. 189.186.49.156 23d37d69-aa3d-44bf-9c57-34e26c397a95 2019-05-04 01:11:05.866164 6140 548 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000548'\n 2 \N 189.186.49.156 23d37d69-aa3d-44bf-9c57-34e26c397a95 2019-05-04 01:11:05.911244 6141 601 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 548\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 23d37d69-aa3d-44bf-9c57-34e26c397a95 2019-05-04 01:11:05.949693 6142 86 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-49\namount: !ruby/object:BigDecimal 18:0.4497E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4497E4\nobservations: ''\npurchase_date: 2019-05-03\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-49 por $ 4497.0 MXN creada. 189.186.49.156 48003321-107a-4283-98cc-2e91db49fa3e 2019-05-04 01:11:15.114031 6143 601 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.49.156 48003321-107a-4283-98cc-2e91db49fa3e 2019-05-04 01:11:15.148401 6144 449 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 162\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2019-05-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-243\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.49.156 e1df5b09-5ef1-4217-b3d5-fe4c8c15f01f 2019-05-04 01:11:44.839467 6145 601 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.49.156 e1df5b09-5ef1-4217-b3d5-fe4c8c15f01f 2019-05-04 01:11:44.878539 6146 449 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.49.156 3562123f-12cc-4b30-bd97-f0778a4e27ac 2019-05-04 01:12:03.396411 6147 570 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 162\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 449\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-243\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-243 189.186.49.156 3562123f-12cc-4b30-bd97-f0778a4e27ac 2019-05-04 01:12:03.423246 6148 159 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 161\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.669E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.549E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1249E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.49.156 578901ab-21d9-4378-a24b-b8e179c329f2 2019-05-04 01:47:52.644177 6149 161 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.49.156 578901ab-21d9-4378-a24b-b8e179c329f2 2019-05-04 01:47:52.66397 6150 53 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 162\nquantity: !ruby/object:BigDecimal 18:0.25E3\nstatus: 1\nobservations: "$200 PAQUETERIA"\nexpense_date: 2019-05-03\nexpense_code: PV1-E-47\n 1 Egreso por 250.0 registrado 189.186.49.156 4aeb74cb-59e6-40a3-b1dc-f13f2ce16e44 2019-05-04 01:59:36.99332 6151 571 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 162\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 53\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.49.156 4aeb74cb-59e6-40a3-b1dc-f13f2ce16e44 2019-05-04 01:59:37.043638 6152 53 Expense \N \N 2 User \N update ---\nstatus:\n- active\n- 0\n 2 Egreso PV1-E-47 cancelado. 189.186.49.156 32aead64-8922-4fc9-896a-5379b86e31e0 2019-05-04 01:59:49.15793 6153 571 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 162\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 53\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.49.156 32aead64-8922-4fc9-896a-5379b86e31e0 2019-05-04 01:59:49.177034 6178 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.17E2\n- !ruby/object:BigDecimal 18:0.9E1\n 15 \N 189.186.49.156 ea1dfdd2-15b8-41ec-84c6-29a35c265af5 2019-05-04 17:19:55.594422 6155 572 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 162\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 54\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.49.156 44d8ec3d-21a8-4a80-adba-77f17cf500c3 2019-05-04 02:00:31.251273 6156 160 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 162\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3397E4\namount_out: !ruby/object:BigDecimal 18:0.25E3\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.35E4\ncash_fund: !ruby/object:BigDecimal 18:0.789E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4289E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.49.156 bfc36174-327a-4a69-a25b-2c566bd20006 2019-05-04 02:08:30.865895 6157 162 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.49.156 bfc36174-327a-4a69-a25b-2c566bd20006 2019-05-04 02:08:30.882417 6158 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-03-10 11:56:58.209079000 Z\n- &1 2019-04-26 00:07:12.425646000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 06:49:29.198969396 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3187437303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3187425760\n mask_addr: 4294967295\nsign_in_count:\n- 12\n- 13\n 26 \N 189.252.65.224 eb210344-11ec-4de1-a195-fb327e330c06 2019-05-04 06:49:29.209821 6159 5 User \N \N 5 User \N update ---\nunique_session_id:\n- szbjXX9XvZNkd9A1_3KD\n- tpn3KzEKC2BQy97CZt26\n 27 \N 189.252.65.224 eb210344-11ec-4de1-a195-fb327e330c06 2019-05-04 06:49:29.225861 6160 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-01 00:34:39.624155000 Z\n- &1 2019-05-02 21:44:49.318587000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 16:44:57.614619674 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093085\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\nsign_in_count:\n- 115\n- 116\n 232 \N 189.186.49.156 e5c961e6-3fa9-463a-8339-51ca8c0aef05 2019-05-04 16:44:57.658163 6161 12 User \N \N 12 User \N update ---\nunique_session_id:\n- ampfDm3XHryw5SbvXjcV\n- 4Rv-Wiw3YXsUC3J7FDMf\n 233 \N 189.186.49.156 e5c961e6-3fa9-463a-8339-51ca8c0aef05 2019-05-04 16:44:57.682124 6162 163 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.789E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 789.0 189.186.49.156 021b8de2-fe64-4052-b7b8-810161e84f3b 2019-05-04 16:45:01.245518 6163 450 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 163\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-05-04\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-244\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.49.156 780c83e4-d294-40b3-abc0-529a6459f168 2019-05-04 16:45:55.042647 6164 542 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.49.156 780c83e4-d294-40b3-abc0-529a6459f168 2019-05-04 16:45:55.08827 6165 450 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.49.156 57751f4c-9a4f-46c2-8f33-240979e36271 2019-05-04 16:46:24.597706 6166 573 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 163\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 450\ncardnumber: 3524\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-244\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-244 189.186.49.156 57751f4c-9a4f-46c2-8f33-240979e36271 2019-05-04 16:46:24.629518 6167 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-02 21:44:49.318587000 Z\n- &1 2019-05-04 16:44:57.614619000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 16:50:07.924315877 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093085\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\nsign_in_count:\n- 116\n- 117\n 234 \N 189.186.49.156 303fc686-b480-4c57-9bef-91f98b58c8df 2019-05-04 16:50:07.930794 6168 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 4Rv-Wiw3YXsUC3J7FDMf\n- 2GZ5joZCwc9kkcvhPsEi\n 235 \N 189.186.49.156 303fc686-b480-4c57-9bef-91f98b58c8df 2019-05-04 16:50:07.945784 6169 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-02 16:27:00.712975000 Z\n- &1 2019-05-02 21:45:33.560441000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 16:50:43.584362947 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093085\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\nsign_in_count:\n- 171\n- 172\n 344 \N 189.186.49.156 23454df1-97e6-4bc5-963f-5779e11fadbe 2019-05-04 16:50:43.590976 6170 3 User \N \N 3 User \N update ---\nunique_session_id:\n- LBQSf22WGxL4vR4DM-Ds\n- T_PzsqZEy-zNSrjCupXM\n 345 \N 189.186.49.156 23454df1-97e6-4bc5-963f-5779e11fadbe 2019-05-04 16:50:43.604921 6171 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-02 23:12:15.108651000 Z\n- &1 2019-05-03 20:59:35.765202000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 17:04:36.594904081 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093085\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\nsign_in_count:\n- 94\n- 95\n 193 \N 189.186.49.156 15534b2b-1685-4cf3-8960-9f23784226b6 2019-05-04 17:04:36.606224 6172 2 User \N \N 2 User \N update ---\nunique_session_id:\n- N4FC6jkTfN3e4vPvaYbz\n- 1bg9xrJ5o_sTEwxJSxdx\n 194 \N 189.186.49.156 15534b2b-1685-4cf3-8960-9f23784226b6 2019-05-04 17:04:36.624824 6173 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-02 21:45:33.560441000 Z\n- &1 2019-05-04 16:50:43.584362000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 17:18:37.840095852 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093085\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\nsign_in_count:\n- 172\n- 173\n 346 \N 189.186.49.156 f1d73384-171e-43ca-9d51-247234888e54 2019-05-04 17:18:37.847366 6174 3 User \N \N 3 User \N update ---\nunique_session_id:\n- T_PzsqZEy-zNSrjCupXM\n- UJAM1RRKN65AwHCRsom-\n 347 \N 189.186.49.156 f1d73384-171e-43ca-9d51-247234888e54 2019-05-04 17:18:37.862013 6175 87 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-50\namount: !ruby/object:BigDecimal 18:0.54054E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.54054E4\nobservations: ''\npurchase_date: 2019-05-04\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-50 por $ 5405.4 MXN creada. 189.186.49.156 32848014-770c-47fe-8697-cda957b54e53 2019-05-04 17:18:59.766022 6176 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.18E2\n 13 \N 189.186.49.156 32848014-770c-47fe-8697-cda957b54e53 2019-05-04 17:18:59.795967 6177 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.18E2\n- !ruby/object:BigDecimal 18:0.17E2\n 14 \N 189.186.49.156 fe3f4421-c0c1-4bb8-804c-f7f02c3c5a33 2019-05-04 17:19:52.165028 6179 37 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-05-04\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.49.156 8570a177-0beb-4925-aabe-694192944076 2019-05-04 17:20:08.558081 6180 549 Product \N \N 2 User \N create ---\nsku: VES-549\nname: VST-0020\ndescription: VESTIDO BLANCO CON FLORES AZULES LD51151Z\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-549 fue creado. 189.186.49.156 cfaf2ff1-d5bb-424b-8f87-1918b5236dca 2019-05-04 17:49:20.697505 6181 549 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000549'\n 2 \N 189.186.49.156 cfaf2ff1-d5bb-424b-8f87-1918b5236dca 2019-05-04 17:49:20.729126 6182 602 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 549\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 cfaf2ff1-d5bb-424b-8f87-1918b5236dca 2019-05-04 17:49:20.756449 6183 550 Product \N \N 2 User \N create ---\nsku: VES-550\nname: VST-0021\ndescription: VESTIDO LATISTE AQUA ST.LD51068B\nprice_base: !ruby/object:BigDecimal 18:0.7345E3\nprice_sale: !ruby/object:BigDecimal 18:0.1469E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-550 fue creado. 189.186.49.156 663c6306-17a1-43b7-a3a5-cb8580cb4c1b 2019-05-04 17:56:07.8364 6184 550 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000550'\n 2 \N 189.186.49.156 663c6306-17a1-43b7-a3a5-cb8580cb4c1b 2019-05-04 17:56:07.864833 6185 603 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 550\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 663c6306-17a1-43b7-a3a5-cb8580cb4c1b 2019-05-04 17:56:07.893785 6186 551 Product \N \N 2 User \N create ---\nsku: VES-551\nname: VST-0022\ndescription: VESTIDO LATISTE NUDE CON ROSAS ROJAS ST.LD51140A\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-551 fue creado. 189.186.49.156 3f4582bb-2816-4b44-a01f-e2fcbf692255 2019-05-04 18:01:44.025724 6187 551 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000551'\n 2 \N 189.186.49.156 3f4582bb-2816-4b44-a01f-e2fcbf692255 2019-05-04 18:01:44.055059 6188 604 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 551\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 3f4582bb-2816-4b44-a01f-e2fcbf692255 2019-05-04 18:01:44.08322 6189 164 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.549E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 549.0 189.186.49.156 e4c9c9fa-b80a-4937-8ced-bb1210c32e4d 2019-05-04 18:03:19.901379 6190 451 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 164\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-05-04\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-205\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.49.156 aeae7f9e-7e87-46b3-ae6a-fb3dc7693b12 2019-05-04 18:05:15.461887 6191 389 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.49.156 aeae7f9e-7e87-46b3-ae6a-fb3dc7693b12 2019-05-04 18:05:15.496922 6192 451 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.49.156 ea2345fc-7284-44b4-8e76-2aef47cbedf4 2019-05-04 18:07:42.413185 6193 574 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 164\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 451\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-205\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-205 189.186.49.156 ea2345fc-7284-44b4-8e76-2aef47cbedf4 2019-05-04 18:07:42.43548 6194 88 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-51\namount: !ruby/object:BigDecimal 18:0.13401E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.13401E5\nobservations: ''\npurchase_date: 2019-05-04\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-51 por $ 13401.0 MXN creada. 189.186.49.156 d64d7f79-09d3-46b2-b13b-92975e96a8f3 2019-05-04 18:09:16.675063 6195 602 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.49.156 d64d7f79-09d3-46b2-b13b-92975e96a8f3 2019-05-04 18:09:16.698711 6196 603 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.49.156 d64d7f79-09d3-46b2-b13b-92975e96a8f3 2019-05-04 18:09:16.723744 6197 604 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.49.156 d64d7f79-09d3-46b2-b13b-92975e96a8f3 2019-05-04 18:09:16.751923 6198 552 Product \N \N 2 User \N create ---\nsku: BLU-552\nname: BLS-0035\ndescription: PANTIBLUSA CQBYCQ NEGRA ST.6297BW\nprice_base: !ruby/object:BigDecimal 18:0.2395E3\nprice_sale: !ruby/object:BigDecimal 18:0.479E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-552 fue creado. 189.186.49.156 c65fe938-c1ca-4fe2-adc5-ddcefd898962 2019-05-04 18:20:38.766933 6199 552 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000552'\n 2 \N 189.186.49.156 c65fe938-c1ca-4fe2-adc5-ddcefd898962 2019-05-04 18:20:38.808548 29558 2213 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 550b3073-0914-4d5a-b37c-c32a2b19f09e 2020-02-15 19:25:58.752151 6200 605 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 552\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 c65fe938-c1ca-4fe2-adc5-ddcefd898962 2019-05-04 18:20:38.847919 6201 553 Product \N \N 2 User \N create ---\nsku: CON-553\nname: PLZ-0005\ndescription: SET CQBYCQ ST.8912DW\nprice_base: !ruby/object:BigDecimal 18:0.5995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 10\nproduct_service_key: '01010101'\n 1 El producto CON-553 fue creado. 189.186.49.156 e4bb05a4-0f20-4295-bed6-843fe4743062 2019-05-04 18:21:45.147648 6202 553 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000553'\n 2 \N 189.186.49.156 e4bb05a4-0f20-4295-bed6-843fe4743062 2019-05-04 18:21:45.173878 6203 606 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 553\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 e4bb05a4-0f20-4295-bed6-843fe4743062 2019-05-04 18:21:45.207235 6204 554 Product \N \N 2 User \N create ---\nsku: FAL-554\nname: FLD-0006\ndescription: FALDA CQBYCQ NEGRA ST.9025SW\nprice_base: !ruby/object:BigDecimal 18:0.4145E3\nprice_sale: !ruby/object:BigDecimal 18:0.829E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-554 fue creado. 189.186.49.156 aa08d60c-1f9d-43ad-a5c9-e613287cc876 2019-05-04 18:23:45.342341 6205 554 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000554'\n 2 \N 189.186.49.156 aa08d60c-1f9d-43ad-a5c9-e613287cc876 2019-05-04 18:23:45.376131 6206 607 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 554\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 aa08d60c-1f9d-43ad-a5c9-e613287cc876 2019-05-04 18:23:45.415815 6207 555 Product \N \N 2 User \N create ---\nsku: VES-555\nname: VST-0023\ndescription: VESTIDO CQBYCQ BLANCO CON CAFE ST.9145DW\nprice_base: !ruby/object:BigDecimal 18:0.4895E3\nprice_sale: !ruby/object:BigDecimal 18:0.979E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-555 fue creado. 189.186.49.156 5666a764-d716-47d6-9c3b-466ed1ad3809 2019-05-04 18:26:53.18663 6208 555 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000555'\n 2 \N 189.186.49.156 5666a764-d716-47d6-9c3b-466ed1ad3809 2019-05-04 18:26:53.214769 6209 608 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 555\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 5666a764-d716-47d6-9c3b-466ed1ad3809 2019-05-04 18:26:53.242887 6210 89 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-52\namount: !ruby/object:BigDecimal 18:0.10458E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.10458E5\nobservations: ''\npurchase_date: 2019-05-04\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-52 por $ 10458.0 MXN creada. 189.186.49.156 40eb06b1-d400-48cd-b0d0-5f2d9898ec7f 2019-05-04 18:26:59.503987 6211 605 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.49.156 40eb06b1-d400-48cd-b0d0-5f2d9898ec7f 2019-05-04 18:26:59.529227 6212 606 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.49.156 40eb06b1-d400-48cd-b0d0-5f2d9898ec7f 2019-05-04 18:26:59.551141 6213 607 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.49.156 40eb06b1-d400-48cd-b0d0-5f2d9898ec7f 2019-05-04 18:26:59.572505 6214 608 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.49.156 40eb06b1-d400-48cd-b0d0-5f2d9898ec7f 2019-05-04 18:26:59.59551 6215 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-04-26 00:07:12.425646000 Z\n- &1 2019-05-04 06:49:29.198969000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 18:32:59.914158466 Z\nsign_in_count:\n- 13\n- 14\n 28 \N 189.252.65.224 7f6c1303-673a-4b16-95f7-887fd6f05697 2019-05-04 18:32:59.919631 6216 5 User \N \N 5 User \N update ---\nunique_session_id:\n- tpn3KzEKC2BQy97CZt26\n- FHNVS_gcvqMRsDfkPHwe\n 29 \N 189.252.65.224 7f6c1303-673a-4b16-95f7-887fd6f05697 2019-05-04 18:32:59.932956 6217 556 Product \N \N 2 User \N create ---\nsku: BLU-556\nname: BLS-0036\ndescription: BLUSA ROSA NEON MUYMUY ST.MM0728\nprice_base: !ruby/object:BigDecimal 18:0.2395E3\nprice_sale: !ruby/object:BigDecimal 18:0.479E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-556 fue creado. 189.186.49.156 cf119f83-0119-4b53-b46c-a5ee1b791e8e 2019-05-04 18:38:01.818744 6218 556 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000556'\n 2 \N 189.186.49.156 cf119f83-0119-4b53-b46c-a5ee1b791e8e 2019-05-04 18:38:01.846643 6219 609 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 556\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 cf119f83-0119-4b53-b46c-a5ee1b791e8e 2019-05-04 18:38:01.884248 6220 90 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-53\namount: !ruby/object:BigDecimal 18:0.1437E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1437E4\nobservations: ''\npurchase_date: 2019-05-04\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-53 por $ 1437.0 MXN creada. 189.186.49.156 6f6d2bf1-1e9d-496e-ad7e-be006df08d8b 2019-05-04 18:38:14.22 6221 609 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.49.156 6f6d2bf1-1e9d-496e-ad7e-be006df08d8b 2019-05-04 18:38:14.243822 6265 611 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.49.156 6bc8f6a6-fcfb-46a8-8fd2-c2fadf474d7a 2019-05-04 19:04:33.770304 6222 557 Product \N \N 2 User \N create ---\nsku: SHO-557\nname: SHR-0009\ndescription: SHORT NEGRO MUYMUY ST.MM99002\nprice_base: !ruby/object:BigDecimal 18:0.2395E3\nprice_sale: !ruby/object:BigDecimal 18:0.479E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 2\nproduct_service_key: '01010101'\n 1 El producto SHO-557 fue creado. 189.186.49.156 0532cdbc-4806-4d58-ad2d-7b9b8be5d45a 2019-05-04 18:40:21.107935 6223 557 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000557'\n 2 \N 189.186.49.156 0532cdbc-4806-4d58-ad2d-7b9b8be5d45a 2019-05-04 18:40:21.141435 6224 610 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 557\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 0532cdbc-4806-4d58-ad2d-7b9b8be5d45a 2019-05-04 18:40:21.183378 6225 557 Product \N \N 2 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.2395E3\n- !ruby/object:BigDecimal 27:0.25E1\n 3 El producto SHO-557 fue modificado. 189.186.49.156 010c44ed-4b6a-4d91-ba71-980b9025d96a 2019-05-04 18:41:00.249383 6226 557 Product \N \N 2 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.25E1\n- !ruby/object:BigDecimal 27:0.2745E3\n 4 El producto SHO-557 fue modificado. 189.186.49.156 5b17d818-db35-4101-a8b7-b732b94be3c5 2019-05-04 18:41:01.168006 6227 557 Product \N \N 2 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.479E3\n- !ruby/object:BigDecimal 27:0.549E3\n 5 \N 189.186.49.156 4997a16a-f961-48c9-aa2d-7498259cb3d2 2019-05-04 18:41:09.475647 6228 91 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-54\namount: !ruby/object:BigDecimal 18:0.1647E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1647E4\nobservations: ''\npurchase_date: 2019-05-04\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-54 por $ 1647.0 MXN creada. 189.186.49.156 1fdcd93d-082a-4a74-8ab6-6d2e3c24ffea 2019-05-04 18:41:14.083198 6229 610 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.49.156 1fdcd93d-082a-4a74-8ab6-6d2e3c24ffea 2019-05-04 18:41:14.118114 6230 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 06:49:29.198969000 Z\n- &1 2019-05-04 18:32:59.914158000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 18:48:00.292553357 Z\nsign_in_count:\n- 14\n- 15\n 30 \N 189.252.65.224 c7166e31-8e4b-471d-9c9d-b560d679fe29 2019-05-04 18:48:00.300168 6231 5 User \N \N 5 User \N update ---\nunique_session_id:\n- FHNVS_gcvqMRsDfkPHwe\n- kWe6zAVz8qmPC96VPvE9\n 31 \N 189.252.65.224 c7166e31-8e4b-471d-9c9d-b560d679fe29 2019-05-04 18:48:00.31515 6232 6 User \N \N 6 User \N update ---\nlast_sign_in_at:\n- 2019-02-21 02:43:33.905802000 Z\n- &1 2019-02-21 04:52:25.516870000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 18:48:11.428147424 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3187432133\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3187425760\n mask_addr: 4294967295\nsign_in_count:\n- 6\n- 7\n 14 \N 189.252.65.224 4ff7584b-48df-4211-a66d-9938ff5edfa1 2019-05-04 18:48:11.434836 6233 6 User \N \N 6 User \N update ---\nunique_session_id:\n- VReD5PLNTTxxtPwNUPbP\n- eYzpNzn1yZjvzJ6ermsw\n 15 \N 189.252.65.224 4ff7584b-48df-4211-a66d-9938ff5edfa1 2019-05-04 18:48:11.455655 6234 558 Product \N \N 2 User \N create ---\nsku: JUM-558\nname: JUM-0002\ndescription: JUMPER NEGRO SHE+SKY ST.SL9388\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 1\nproduct_service_key: '01010101'\n 1 El producto JUM-558 fue creado. 189.186.49.156 f6da753b-e5c6-4446-8fe1-f2ace8c05161 2019-05-04 18:48:28.940899 6235 558 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000558'\n 2 \N 189.186.49.156 f6da753b-e5c6-4446-8fe1-f2ace8c05161 2019-05-04 18:48:28.977778 6236 611 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 558\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 f6da753b-e5c6-4446-8fe1-f2ace8c05161 2019-05-04 18:48:29.022518 6237 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 18:32:59.914158000 Z\n- &1 2019-05-04 18:48:00.292553000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 18:49:50.813907670 Z\nsign_in_count:\n- 15\n- 16\n 32 \N 189.252.65.224 05cd1f98-a298-4d83-b4de-0d6388bc31ef 2019-05-04 18:49:50.819378 6238 5 User \N \N 5 User \N update ---\nunique_session_id:\n- kWe6zAVz8qmPC96VPvE9\n- UAqCBeuddGSMhn1D2rTV\n 33 \N 189.252.65.224 05cd1f98-a298-4d83-b4de-0d6388bc31ef 2019-05-04 18:49:50.83354 6239 559 Product \N \N 2 User \N create ---\nsku: FAL-559\nname: FLD-0007\ndescription: FALDA NEGRA SHE+SKY ST.SL9868\nprice_base: !ruby/object:BigDecimal 18:0.2895E3\nprice_sale: !ruby/object:BigDecimal 18:0.579E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-559 fue creado. 189.186.49.156 cb060a62-e584-44b2-8219-28bf4eb085d4 2019-05-04 18:50:35.992686 6240 559 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000559'\n 2 \N 189.186.49.156 cb060a62-e584-44b2-8219-28bf4eb085d4 2019-05-04 18:50:36.032149 6241 612 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 559\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 cb060a62-e584-44b2-8219-28bf4eb085d4 2019-05-04 18:50:36.065516 6242 452 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 164\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-05-04\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-206\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.49.156 f9132c78-a29c-4a92-ba84-0e696bf054fb 2019-05-04 18:53:21.259835 6243 394 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.49.156 f9132c78-a29c-4a92-ba84-0e696bf054fb 2019-05-04 18:53:21.29138 6264 92 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-55\namount: !ruby/object:BigDecimal 18:0.15609E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.15609E5\nobservations: ''\npurchase_date: 2019-05-04\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-55 por $ 15609.0 MXN creada. 189.186.49.156 6bc8f6a6-fcfb-46a8-8fd2-c2fadf474d7a 2019-05-04 19:04:33.74114 6244 560 Product \N \N 2 User \N create ---\nsku: BLU-560\nname: BLS-0036\ndescription: BLUSA ROSA FUCSIA APEACH ST. YT5853\nprice_base: !ruby/object:BigDecimal 18:0.2845E3\nprice_sale: !ruby/object:BigDecimal 18:0.569E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-560 fue creado. 189.186.49.156 a32b03b9-0a14-42eb-82d2-eb1da019aa28 2019-05-04 18:53:31.095536 6245 560 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000560'\n 2 \N 189.186.49.156 a32b03b9-0a14-42eb-82d2-eb1da019aa28 2019-05-04 18:53:31.123969 6246 613 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 560\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 a32b03b9-0a14-42eb-82d2-eb1da019aa28 2019-05-04 18:53:31.151594 6247 452 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.49.156 33defcc3-9f4e-4453-a178-10ce39d11720 2019-05-04 18:53:36.006511 6248 575 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 164\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 452\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-206\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.13E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-206 189.186.49.156 33defcc3-9f4e-4453-a178-10ce39d11720 2019-05-04 18:53:36.028878 6249 561 Product \N \N 2 User \N create ---\nsku: BLU-561\nname: BLS-0037\ndescription: BLUSA BLANCA APEACH ST.CD21209\nprice_base: !ruby/object:BigDecimal 18:0.3995E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-561 fue creado. 189.186.49.156 43f78c40-48b9-4582-9ab9-6a05fb71e877 2019-05-04 18:56:51.339832 6250 561 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000561'\n 2 \N 189.186.49.156 43f78c40-48b9-4582-9ab9-6a05fb71e877 2019-05-04 18:56:51.368498 6251 614 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 561\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 43f78c40-48b9-4582-9ab9-6a05fb71e877 2019-05-04 18:56:51.395639 6252 562 Product \N \N 2 User \N create ---\nsku: VES-562\nname: VST-0024\ndescription: VESTIDO NEGRO APEACH ST.CD21209\nprice_base: !ruby/object:BigDecimal 18:0.3995E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-562 fue creado. 189.186.49.156 8dced898-de47-4b99-98ef-9e892fa2ebbe 2019-05-04 19:00:07.544045 6253 562 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000562'\n 2 \N 189.186.49.156 8dced898-de47-4b99-98ef-9e892fa2ebbe 2019-05-04 19:00:07.570174 6254 615 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 562\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 8dced898-de47-4b99-98ef-9e892fa2ebbe 2019-05-04 19:00:07.596551 6255 563 Product \N \N 2 User \N create ---\nsku: BLU-563\nname: BLS-0037\ndescription: BLUSA BLANCA APEACH ST.NT1485\nprice_base: !ruby/object:BigDecimal 18:0.2845E3\nprice_sale: !ruby/object:BigDecimal 18:0.569E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-563 fue creado. 189.186.49.156 6e4184ba-c15b-4558-85f9-7f3d418d8a53 2019-05-04 19:01:39.937563 6256 563 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000563'\n 2 \N 189.186.49.156 6e4184ba-c15b-4558-85f9-7f3d418d8a53 2019-05-04 19:01:39.9688 6257 616 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 563\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 6e4184ba-c15b-4558-85f9-7f3d418d8a53 2019-05-04 19:01:40.006924 6258 564 Product \N \N 2 User \N create ---\nsku: VES-564\nname: VST-0025\ndescription: VESTIDO BLANCO/MULTI APEACH ST.CD21197\nprice_base: !ruby/object:BigDecimal 18:0.5495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-564 fue creado. 189.186.49.156 574d2554-4fb5-4aeb-a8f7-8f263b7f3f3f 2019-05-04 19:02:57.879595 6259 564 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000564'\n 2 \N 189.186.49.156 574d2554-4fb5-4aeb-a8f7-8f263b7f3f3f 2019-05-04 19:02:57.910425 6260 617 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 564\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 574d2554-4fb5-4aeb-a8f7-8f263b7f3f3f 2019-05-04 19:02:57.937723 6261 565 Product \N \N 2 User \N create ---\nsku: BLU-565\nname: BLS-0038\ndescription: BLUSA AMARILLA APEACH ST.NT1483\nprice_base: !ruby/object:BigDecimal 18:0.3445E3\nprice_sale: !ruby/object:BigDecimal 18:0.689E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-565 fue creado. 189.186.49.156 b4e7c6c0-25e5-4c01-86d9-b23f15be00cb 2019-05-04 19:04:20.900163 6262 565 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000565'\n 2 \N 189.186.49.156 b4e7c6c0-25e5-4c01-86d9-b23f15be00cb 2019-05-04 19:04:20.931226 6263 618 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 565\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 b4e7c6c0-25e5-4c01-86d9-b23f15be00cb 2019-05-04 19:04:20.979527 6266 612 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.49.156 6bc8f6a6-fcfb-46a8-8fd2-c2fadf474d7a 2019-05-04 19:04:33.797285 6267 613 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.49.156 6bc8f6a6-fcfb-46a8-8fd2-c2fadf474d7a 2019-05-04 19:04:33.826756 6268 615 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.49.156 6bc8f6a6-fcfb-46a8-8fd2-c2fadf474d7a 2019-05-04 19:04:33.857292 6269 616 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.49.156 6bc8f6a6-fcfb-46a8-8fd2-c2fadf474d7a 2019-05-04 19:04:33.882714 6270 617 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.49.156 6bc8f6a6-fcfb-46a8-8fd2-c2fadf474d7a 2019-05-04 19:04:33.913308 6271 618 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.49.156 6bc8f6a6-fcfb-46a8-8fd2-c2fadf474d7a 2019-05-04 19:04:33.942688 6272 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-03 20:36:32.923391000 Z\n- &1 2019-05-03 23:05:30.636135000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 19:16:49.012754911 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946399\n mask_addr: 4294967295\nsign_in_count:\n- 169\n- 170\n 340 \N 200.68.182.159 2e823579-53a6-440e-b28d-3f0e8df29327 2019-05-04 19:16:49.019537 6273 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SXE76evHDyVsbYqkt6k6\n- f-Cs7WLLztfzDdAqMaxz\n 341 \N 200.68.182.159 2e823579-53a6-440e-b28d-3f0e8df29327 2019-05-04 19:16:49.033744 6274 602 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.49.156 8cf66b49-59e4-4d9f-a5f2-9d54d439dd8e 2019-05-04 19:18:37.598248 6275 604 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.49.156 4b0b2c15-bfe1-4f4d-8b66-e070702d1679 2019-05-04 19:18:50.856754 6276 608 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.49.156 40e929e6-7f58-456f-ad58-349cf82a4806 2019-05-04 19:19:02.595972 6277 613 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.49.156 cb66a93e-4afc-4dc4-b088-519ee81cebed 2019-05-04 19:19:20.719752 6278 618 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.49.156 d2c8a88c-3452-41e0-9c26-661aaa94ed49 2019-05-04 19:19:34.519981 6279 612 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.49.156 4fd8677e-459d-40b5-9f6f-c3ea91b8e9e2 2019-05-04 19:19:48.776693 6280 602 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.49.156 2e72a219-84e1-44af-a931-1d55310a8524 2019-05-04 19:20:10.868841 6281 604 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.49.156 be2b37fa-61bf-4399-be5c-d991e179f04e 2019-05-04 19:20:12.578593 6282 608 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.49.156 976a7eeb-4156-4cd6-bfb7-e0ebcf455bae 2019-05-04 19:20:14.539229 6283 608 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.49.156 e088a776-6560-4304-9823-db085f372d23 2019-05-04 19:20:25.060434 6284 613 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.49.156 c76454c8-b155-4f75-a4f8-900e6fc03bd6 2019-05-04 19:20:27.076728 6285 618 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.49.156 fa04d22c-13c5-48ea-b68e-0c6728fb503b 2019-05-04 19:20:29.004979 6286 612 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.49.156 1209fd4a-85fc-4dc9-b075-a903671a385e 2019-05-04 19:20:31.311517 6287 38 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-05-04\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.49.156 0c5dd549-3120-449d-ba24-ce9e5db6ef54 2019-05-04 19:21:31.051653 6288 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-04-16 00:12:43.345030000 Z\n- &1 2019-05-01 19:44:52.552018000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 19:24:19.412416143 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093188\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934315\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934315\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\nsign_in_count:\n- 49\n- 50\n 100 \N 189.186.49.156 d5ba62b8-3468-4462-8921-c906c7d7177a 2019-05-04 19:24:19.422288 6289 1 User \N \N 1 User \N update ---\nunique_session_id:\n- sS18YTpNZ29X2YyXm_gN\n- Fg_zowP4ExbpbgzFVGFy\n 101 \N 189.186.49.156 d5ba62b8-3468-4462-8921-c906c7d7177a 2019-05-04 19:24:19.440915 6290 561 Product \N \N 1 User \N update ---\nstatus:\n- active\n- 0\n 3 El producto BLS-0037 fue eliminado. 189.186.49.156 52617147-a9a5-44d4-83ca-52248c409dbc 2019-05-04 19:37:22.840941 6291 38 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-05-04\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.49.156 c4b43ccc-d928-4aa2-a9ad-2e38e33c8635 2019-05-04 19:48:43.261716 6292 619 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 549\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 c4b43ccc-d928-4aa2-a9ad-2e38e33c8635 2019-05-04 19:48:43.287661 6293 620 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 551\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 c4b43ccc-d928-4aa2-a9ad-2e38e33c8635 2019-05-04 19:48:43.331878 6294 621 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 555\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 c4b43ccc-d928-4aa2-a9ad-2e38e33c8635 2019-05-04 19:48:43.358858 6295 622 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 560\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 c4b43ccc-d928-4aa2-a9ad-2e38e33c8635 2019-05-04 19:48:43.384892 6296 623 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 565\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 c4b43ccc-d928-4aa2-a9ad-2e38e33c8635 2019-05-04 19:48:43.411793 6297 624 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 559\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 c4b43ccc-d928-4aa2-a9ad-2e38e33c8635 2019-05-04 19:48:43.438126 6298 37 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-05-04\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.49.156 7e860e2e-e842-4873-a3c2-01c7f4491234 2019-05-04 19:48:49.200946 6299 437 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.9E1\n 5 \N 189.186.49.156 7e860e2e-e842-4873-a3c2-01c7f4491234 2019-05-04 19:48:49.216918 6300 36 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-05-04\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.49.156 4a2d4405-976e-4ed3-992b-4b658b5fce20 2019-05-04 19:48:57.478798 6301 509 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.17E2\n 5 \N 189.186.49.156 4a2d4405-976e-4ed3-992b-4b658b5fce20 2019-05-04 19:48:57.494528 6302 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-05-01 19:44:52.552018000 Z\n- &1 2019-05-04 19:24:19.412416000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 19:54:08.968968275 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934315\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\nsign_in_count:\n- 50\n- 51\n 102 \N 189.186.49.156 8edd9502-609a-4986-8ee2-05fb7b54f9e0 2019-05-04 19:54:08.978148 6303 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Fg_zowP4ExbpbgzFVGFy\n- Ax-rd6SNaj7Mzzc7Zs-e\n 103 \N 189.186.49.156 8edd9502-609a-4986-8ee2-05fb7b54f9e0 2019-05-04 19:54:08.99283 6304 619 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.49.156 7929ef3a-a0a0-471b-8a38-bb6260804997 2019-05-04 20:05:51.993966 6305 39 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-05-04\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.49.156 e5858712-7aa1-4eb7-ba67-bb0e4c8deb0c 2019-05-04 20:05:56.568126 6306 39 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-05-04\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.49.156 7d97d1ca-3547-48d5-a2d5-d8314fe3c848 2019-05-04 20:06:17.065295 6307 602 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.49.156 7d97d1ca-3547-48d5-a2d5-d8314fe3c848 2019-05-04 20:06:17.082713 6308 453 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 163\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-05-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-245\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.49.156 25353d90-e28b-4372-b6b9-343e88fd6a46 2019-05-04 20:06:53.13998 6309 602 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.49.156 25353d90-e28b-4372-b6b9-343e88fd6a46 2019-05-04 20:06:53.179894 6310 453 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.49.156 5161a60f-7303-4262-8a3a-449762b1d80a 2019-05-04 20:07:04.086802 6311 576 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 163\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 453\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-245\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1399E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-245 189.186.49.156 5161a60f-7303-4262-8a3a-449762b1d80a 2019-05-04 20:07:04.140394 6312 577 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 178\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.49.156 2003f87d-e085-4dfa-b9d0-ba120ee6d686 2019-05-04 20:10:00.883075 6313 178 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.49.156 2003f87d-e085-4dfa-b9d0-ba120ee6d686 2019-05-04 20:10:00.908141 6314 180 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.49.156 2003f87d-e085-4dfa-b9d0-ba120ee6d686 2019-05-04 20:10:00.929399 6315 577 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 49\n- 163\n 2 movimiento de efectivo por venta con folio PV1-V-102 189.186.49.156 2003f87d-e085-4dfa-b9d0-ba120ee6d686 2019-05-04 20:10:00.944062 6316 55 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 163\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida\nexpense_date: 2019-05-04\nexpense_code: PV1-E-49\n 1 Egreso por 50.0 registrado 189.186.49.156 f4eee6d6-3b1b-484b-bc14-c286793fab93 2019-05-04 20:23:12.511358 6317 578 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 163\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 55\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.49.156 f4eee6d6-3b1b-484b-bc14-c286793fab93 2019-05-04 20:23:12.532569 6318 454 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 163\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-05-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-246\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.49.156 fade5bc8-2fdf-4b2d-a99e-240e2d41aeaa 2019-05-04 20:51:15.697894 6319 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 16 \N 189.186.49.156 fade5bc8-2fdf-4b2d-a99e-240e2d41aeaa 2019-05-04 20:51:15.730789 6320 454 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.49.156 920e9215-cb8e-46a0-861f-f2d8c6d65752 2019-05-04 20:51:57.881794 6441 10 User \N \N 10 User \N update ---\nunique_session_id:\n- YtmaD-EHj1pbPi6tSnNa\n- tzR9wasgs9-mgq3hbCC8\n 123 \N 189.186.37.251 ed817646-b035-4fe9-b58e-4f7c31b77fab 2019-05-05 17:38:16.97802 6321 579 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 163\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 454\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-246\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.749E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-246 189.186.49.156 920e9215-cb8e-46a0-861f-f2d8c6d65752 2019-05-04 20:51:57.914051 6322 82 Customer \N \N 2 User \N create ---\nnick_name: KELLY OCHOA\nphone: "(667) 409-4281"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KELLY OCHOA fue registrado. 189.186.49.156 61ee0e23-76e2-4622-ba69-41f4253f117b 2019-05-04 20:54:04.98382 6323 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-04-02 23:40:06.999562000 Z\n- &1 2019-04-26 17:38:38.273228000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 20:54:23.251682624 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094513\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094647\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094647\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\nsign_in_count:\n- 51\n- 52\n 104 \N 189.186.49.156 338d192b-21c2-421e-a71e-e07d8808d0ef 2019-05-04 20:54:23.259202 6324 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 5gRpoDZx4JiKzJhQmGuX\n- Uko6uQMJ9jXuEASyV9bx\n 105 \N 189.186.49.156 338d192b-21c2-421e-a71e-e07d8808d0ef 2019-05-04 20:54:23.287324 6325 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 16:50:43.584362000 Z\n- &1 2019-05-04 17:18:37.840095000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 20:54:49.441012372 Z\nsign_in_count:\n- 173\n- 174\n 348 \N 189.186.49.156 e1f3e0f5-93a5-4b6c-899b-d2de251f5c97 2019-05-04 20:54:49.446287 6326 3 User \N \N 3 User \N update ---\nunique_session_id:\n- UJAM1RRKN65AwHCRsom-\n- SsJHBs63ZyvrSX1TR1Ke\n 349 \N 189.186.49.156 e1f3e0f5-93a5-4b6c-899b-d2de251f5c97 2019-05-04 20:54:49.45834 6327 455 Sale \N \N 2 User \N create ---\ncustomer_id: 82\nuser_id: 2\nopen_cash_register_id: 163\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-05-04\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-247\nexpiration_date: 2019-06-08\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.49.156 1523b579-1d7c-4a62-9736-20a17a0e0671 2019-05-04 20:55:04.571584 6328 200 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.49.156 1523b579-1d7c-4a62-9736-20a17a0e0671 2019-05-04 20:55:04.599125 6329 580 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 163\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 455\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-247\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-247 189.186.49.156 47706ea4-7fdb-4161-8238-6320587c0a35 2019-05-04 20:55:27.182093 6330 455 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.49.156 de8e2b33-4267-49db-95f1-84bcc9741dcb 2019-05-04 20:55:28.613474 6331 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 19:24:19.412416000 Z\n- &1 2019-05-04 19:54:08.968968000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 20:57:56.166744133 Z\nsign_in_count:\n- 51\n- 52\n 104 \N 189.186.49.156 c6d46788-9377-40bd-8100-909b6d4b8854 2019-05-04 20:57:56.175431 6332 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Ax-rd6SNaj7Mzzc7Zs-e\n- z4bm4fp1AFgdyPsw8f7J\n 105 \N 189.186.49.156 c6d46788-9377-40bd-8100-909b6d4b8854 2019-05-04 20:57:56.194169 6333 56 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 163\nquantity: !ruby/object:BigDecimal 18:0.1348E4\nstatus: 1\nobservations: "$240 8 HORAS EXTRA ROCIO \\r\\n$628 SUELDO ROCIO\\r\\n$480 SUELDO YARETZI"\nexpense_date: 2019-05-04\nexpense_code: PV1-E-50\n 1 Egreso por 1348.0 registrado 189.186.49.156 e0104833-da92-48db-94fd-a60d216022de 2019-05-04 21:19:17.966882 6334 581 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 163\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1348E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 56\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.49.156 e0104833-da92-48db-94fd-a60d216022de 2019-05-04 21:19:17.989066 6335 456 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 163\namount: !ruby/object:BigDecimal 18:0.45517E3\ntax: !ruby/object:BigDecimal 18:0.7283E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.528E3\nstatus: 0\ndate_sale: 2019-05-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-248\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.49.156 4ae711a5-0d2f-466c-917e-deb8e72c5c9f 2019-05-04 21:33:04.411251 6336 74 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.49.156 4ae711a5-0d2f-466c-917e-deb8e72c5c9f 2019-05-04 21:33:04.451034 6337 456 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.49.156 5702b1ea-7bf9-4782-be16-29057b00d9b9 2019-05-04 21:35:17.083905 6338 582 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 163\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.528E3\nmove_type: '1'\nsale_id: 456\ncardnumber: 9243\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-248\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-248 189.186.49.156 5702b1ea-7bf9-4782-be16-29057b00d9b9 2019-05-04 21:35:17.106705 6339 611 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.49.156 eb8cd902-0dbb-4e47-88fb-5ab995e2052e 2019-05-04 21:39:02.057844 6340 611 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.49.156 5d6bd03f-d6aa-4ddd-b420-682771da72ef 2019-05-04 21:39:05.246763 6341 40 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-05-04\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.49.156 11643089-cf19-4e9c-b63a-c52b260cea16 2019-05-04 21:39:07.140142 6342 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 17:18:37.840095000 Z\n- &1 2019-05-04 20:54:49.441012000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 21:39:49.967177400 Z\nsign_in_count:\n- 174\n- 175\n 350 \N 189.186.49.156 516da3ab-cd3f-4982-9aa6-31a37353de57 2019-05-04 21:39:49.972687 6343 3 User \N \N 3 User \N update ---\nunique_session_id:\n- SsJHBs63ZyvrSX1TR1Ke\n- 51Udyyz7QsQJW6hz8CUx\n 351 \N 189.186.49.156 516da3ab-cd3f-4982-9aa6-31a37353de57 2019-05-04 21:39:49.986728 6344 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-03 20:59:35.765202000 Z\n- &1 2019-05-04 17:04:36.594904000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 21:40:01.066215859 Z\nsign_in_count:\n- 95\n- 96\n 195 \N 189.186.49.156 a95d8b3f-dcd6-49a6-9e8d-b34ba932f230 2019-05-04 21:40:01.072295 6345 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 1bg9xrJ5o_sTEwxJSxdx\n- SyB-Cjq-favUFbL9gro8\n 196 \N 189.186.49.156 a95d8b3f-dcd6-49a6-9e8d-b34ba932f230 2019-05-04 21:40:01.084661 6346 40 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-05-04\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.49.156 36f068d6-36e0-48be-9aeb-33567e58deb3 2019-05-04 21:40:02.969907 6347 625 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 558\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.49.156 36f068d6-36e0-48be-9aeb-33567e58deb3 2019-05-04 21:40:02.992808 6348 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 19:54:08.968968000 Z\n- &1 2019-05-04 20:57:56.166744000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 21:41:48.549561446 Z\nsign_in_count:\n- 52\n- 53\n 106 \N 189.186.49.156 db9c7668-2f74-44a0-82b0-08575cbe36b8 2019-05-04 21:41:48.611804 6349 1 User \N \N 1 User \N update ---\nunique_session_id:\n- z4bm4fp1AFgdyPsw8f7J\n- EysfrZxx_Rp1j_Ph2jnz\n 107 \N 189.186.49.156 db9c7668-2f74-44a0-82b0-08575cbe36b8 2019-05-04 21:41:48.654078 6350 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-05-02 16:56:52.049830000 Z\n- &1 2019-05-03 17:05:43.819160000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 21:44:01.258924298 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093085\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946399\n mask_addr: 4294967295\nsign_in_count:\n- 58\n- 59\n 118 \N 200.68.182.159 a6b5529f-a1ad-4f44-bf9d-7034229ec8cf 2019-05-04 21:44:01.267376 6351 10 User \N \N 10 User \N update ---\nunique_session_id:\n- hkiB4_yhvz_GNzp4Mq2R\n- sCzcWRR9JcecmkK3Ajzx\n 119 \N 200.68.182.159 a6b5529f-a1ad-4f44-bf9d-7034229ec8cf 2019-05-04 21:44:01.284614 6352 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-03 23:05:30.636135000 Z\n- &1 2019-05-04 19:16:49.012754000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 21:50:17.783642767 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946399\n mask_addr: 4294967295\nsign_in_count:\n- 170\n- 171\n 342 \N 200.68.182.159 e7851032-d74d-4c93-9c55-4aa604844e55 2019-05-04 21:50:17.793052 6353 4 User \N \N 4 User \N update ---\nunique_session_id:\n- f-Cs7WLLztfzDdAqMaxz\n- Qy2ysojADQFaW35ssb4j\n 343 \N 200.68.182.159 e7851032-d74d-4c93-9c55-4aa604844e55 2019-05-04 21:50:17.812342 6354 9 Seller \N \N 4 User \N create ---\npointsale_id: 2\nname: 'YARETZI '\nlast_name: NAJAR\nstatus: 1\n 1 El vendedor YARETZI NAJAR fue registrado. 200.68.182.159 7d6207b8-c971-47f0-aa65-fa308a96e4d9 2019-05-04 21:55:09.764826 6355 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 20:54:49.441012000 Z\n- &1 2019-05-04 21:39:49.967177000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 21:59:26.227465310 Z\nsign_in_count:\n- 175\n- 176\n 352 \N 189.186.49.156 c77fc551-af17-4d30-af74-0f2c031e0a3a 2019-05-04 21:59:26.236988 6356 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 51Udyyz7QsQJW6hz8CUx\n- UYFopzZikB95QEvT13u-\n 353 \N 189.186.49.156 c77fc551-af17-4d30-af74-0f2c031e0a3a 2019-05-04 21:59:26.255817 6357 457 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 164\namount: !ruby/object:BigDecimal 18:0.125779E4\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1368E4\nstatus: 0\ndate_sale: 2019-05-04\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-207\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.49.156 2a1ef97b-92d8-422f-ad05-aa3f789daa09 2019-05-04 22:16:33.501225 6358 419 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 189.186.49.156 2a1ef97b-92d8-422f-ad05-aa3f789daa09 2019-05-04 22:16:33.542064 6359 622 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.49.156 2a1ef97b-92d8-422f-ad05-aa3f789daa09 2019-05-04 22:16:33.574762 6360 457 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.49.156 79d8d8c3-8be2-40d2-83c8-f8cddd3c46d8 2019-05-04 22:17:11.167082 6361 583 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 164\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1368E4\nmove_type: '1'\nsale_id: 457\ncardnumber: 9690\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-207\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-207 189.186.49.156 79d8d8c3-8be2-40d2-83c8-f8cddd3c46d8 2019-05-04 22:17:11.188391 6362 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 17:04:36.594904000 Z\n- &1 2019-05-04 21:40:01.066215000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-04 22:36:52.160216840 Z\nsign_in_count:\n- 96\n- 97\n 197 \N 189.186.49.156 c9a2a66b-ed6c-4a9a-9238-9c7625f9b51e 2019-05-04 22:36:52.189473 6363 2 User \N \N 2 User \N update ---\nunique_session_id:\n- SyB-Cjq-favUFbL9gro8\n- xDGbnnzMn5zyQCz-3s-6\n 198 \N 189.186.49.156 c9a2a66b-ed6c-4a9a-9238-9c7625f9b51e 2019-05-04 22:36:52.210864 6364 141 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 189.186.49.156 144eecf9-d15a-48d9-bd53-b75e0954acb9 2019-05-04 22:42:03.910348 6365 141 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.49.156 4615c135-0f74-4abd-812f-5c9ec7228d2a 2019-05-04 22:42:09.337178 6366 41 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-05-04\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.49.156 197760cf-7b78-47ac-ab94-e7784c1d17a5 2019-05-04 22:42:14.154428 6367 458 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 164\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-05-04\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-208\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.49.156 638d4897-8e25-4a91-8961-7336af9dd563 2019-05-04 23:32:45.760826 6368 283 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.49.156 638d4897-8e25-4a91-8961-7336af9dd563 2019-05-04 23:32:45.803546 6369 458 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.49.156 1c624a0e-ee58-430a-a08d-ea389e643777 2019-05-04 23:33:11.193745 17342 481 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 a81c8e7d-828f-4108-8049-a1042ad0eb70 2019-10-06 01:31:12.213694 6370 584 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 164\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 458\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-208\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-208 189.186.49.156 1c624a0e-ee58-430a-a08d-ea389e643777 2019-05-04 23:33:11.228763 6371 459 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 163\namount: !ruby/object:BigDecimal 18:0.45517E3\ntax: !ruby/object:BigDecimal 18:0.7283E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.528E3\nstatus: 0\ndate_sale: 2019-05-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-249\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 80d7d3a0-c37c-45c6-b143-4db53fe58abd 2019-05-05 00:29:06.442147 6372 74 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.37.251 80d7d3a0-c37c-45c6-b143-4db53fe58abd 2019-05-05 00:29:06.494729 6373 459 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 3083d60d-3bda-4c60-ae3b-a0d159fd083e 2019-05-05 00:29:11.018682 6374 585 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 163\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.528E3\nmove_type: '1'\nsale_id: 459\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-249\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.528E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-249 189.186.37.251 3083d60d-3bda-4c60-ae3b-a0d159fd083e 2019-05-05 00:29:11.054398 6375 460 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 163\namount: !ruby/object:BigDecimal 18:0.58621E3\ntax: !ruby/object:BigDecimal 18:0.9379E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.68E3\nstatus: 0\ndate_sale: 2019-05-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-250\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 c99df08e-f654-4d02-8fd2-6d13550ea9ed 2019-05-05 00:57:47.321654 6376 85 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.37.251 c99df08e-f654-4d02-8fd2-6d13550ea9ed 2019-05-05 00:57:47.361187 6377 460 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 857ac79c-cfe7-4429-b525-fd0e3ca879ef 2019-05-05 00:57:53.773295 6378 586 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 163\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.68E3\nmove_type: '1'\nsale_id: 460\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-250\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.68E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-250 189.186.37.251 857ac79c-cfe7-4429-b525-fd0e3ca879ef 2019-05-05 00:57:53.805761 6379 461 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 163\namount: !ruby/object:BigDecimal 18:0.66293E3\ntax: !ruby/object:BigDecimal 18:0.10607E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.769E3\nstatus: 0\ndate_sale: 2019-05-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-251\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 8aec9d0a-c4de-4ba9-9862-43e43a378eae 2019-05-05 01:45:07.663784 6380 132 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.37.251 8aec9d0a-c4de-4ba9-9862-43e43a378eae 2019-05-05 01:45:07.704153 6381 461 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 5ada0b3b-7130-422f-b265-315e274cb858 2019-05-05 01:46:10.869543 6382 587 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 163\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.769E3\nmove_type: '1'\nsale_id: 461\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-251\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.769E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-251 189.186.37.251 5ada0b3b-7130-422f-b265-315e274cb858 2019-05-05 01:46:10.903149 6383 161 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 164\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.4565E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.696E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3696E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 dd28b43f-6b32-46f2-b0e1-305773f5dcd3 2019-05-05 01:49:11.448481 6384 164 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 dd28b43f-6b32-46f2-b0e1-305773f5dcd3 2019-05-05 01:49:11.46807 6385 162 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 163\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6102E4\namount_out: !ruby/object:BigDecimal 18:0.1398E4\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.1066E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4066E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 45033186-b8d8-49da-9690-8342334122a8 2019-05-05 02:01:55.830086 6386 163 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 45033186-b8d8-49da-9690-8342334122a8 2019-05-05 02:01:55.848424 6387 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-05-03 17:05:43.819160000 Z\n- &1 2019-05-04 21:44:01.258924000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-05 16:06:09.983428151 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946399\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946399\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 59\n- 60\n 120 \N 189.186.37.251 dcf4740b-01fb-47d2-9e9b-12a9371b596a 2019-05-05 16:06:10.023265 6388 10 User \N \N 10 User \N update ---\nunique_session_id:\n- sCzcWRR9JcecmkK3Ajzx\n- YtmaD-EHj1pbPi6tSnNa\n 121 \N 189.186.37.251 dcf4740b-01fb-47d2-9e9b-12a9371b596a 2019-05-05 16:06:10.045672 6389 165 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.696E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 696.0 189.186.37.251 e52aa5b9-5eee-4ea2-9430-d42b23d9f44d 2019-05-05 16:09:08.181785 6442 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-05 17:13:23.595104000 Z\n- &1 2019-05-05 17:17:22.121317000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-05 19:17:15.097282582 Z\nsign_in_count:\n- 180\n- 181\n 362 \N 189.186.37.251 8a5ebd79-80c0-41a1-995b-b42e4d427813 2019-05-05 19:17:15.105324 6390 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 21:39:49.967177000 Z\n- &1 2019-05-04 21:59:26.227465000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-05 17:00:10.171489143 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 176\n- 177\n 354 \N 189.186.37.251 b81d1e97-0ba6-48f1-8c46-475c32d06131 2019-05-05 17:00:10.194014 6391 3 User \N \N 3 User \N update ---\nunique_session_id:\n- UYFopzZikB95QEvT13u-\n- njMjs56cEHLmhgCJ522U\n 355 \N 189.186.37.251 b81d1e97-0ba6-48f1-8c46-475c32d06131 2019-05-05 17:00:10.221305 6392 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 16:44:57.614619000 Z\n- &1 2019-05-04 16:50:07.924315000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-05 17:01:14.031917639 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 117\n- 118\n 236 \N 189.186.37.251 a0401bb8-59af-424e-9427-0530ca66e70e 2019-05-05 17:01:14.039522 6393 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 2GZ5joZCwc9kkcvhPsEi\n- x6zFQWqH3b4CabQx5Nxn\n 237 \N 189.186.37.251 a0401bb8-59af-424e-9427-0530ca66e70e 2019-05-05 17:01:14.056119 6394 166 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.1066E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1066.0 189.186.37.251 6b6a2d2d-7b3c-46e3-af4c-4afb8df2c2ab 2019-05-05 17:01:18.649715 6395 462 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 166\namount: !ruby/object:BigDecimal 18:0.233693E4\ntax: !ruby/object:BigDecimal 18:0.23007E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2567E4\nstatus: 0\ndate_sale: 2019-05-05\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-252\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 820f8d4a-bbd3-44b5-b1c4-8a8a0266d0fe 2019-05-05 17:02:12.290571 6396 132 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.37.251 820f8d4a-bbd3-44b5-b1c4-8a8a0266d0fe 2019-05-05 17:02:12.332282 6397 137 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.37.251 820f8d4a-bbd3-44b5-b1c4-8a8a0266d0fe 2019-05-05 17:02:12.385688 6398 540 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.37.251 820f8d4a-bbd3-44b5-b1c4-8a8a0266d0fe 2019-05-05 17:02:12.412793 6399 462 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 d139e4d7-023e-42ce-bdac-ea5587fc7355 2019-05-05 17:02:24.916258 6400 588 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 166\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.2567E4\nmove_type: '1'\nsale_id: 462\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-252\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAMANTHA\n 1 movimiento de efectivo por venta con folio PV1-V-252 189.186.37.251 d139e4d7-023e-42ce-bdac-ea5587fc7355 2019-05-05 17:02:24.940291 6401 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 21:59:26.227465000 Z\n- &1 2019-05-05 17:00:10.171489000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-05 17:03:04.094010032 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 177\n- 178\n 356 \N 189.186.37.251 7a67b0fe-b476-4e2c-ad4f-8fa5dbdb19a2 2019-05-05 17:03:04.10222 6402 3 User \N \N 3 User \N update ---\nunique_session_id:\n- njMjs56cEHLmhgCJ522U\n- b2LPy3jBiiCqJw2xX6B1\n 357 \N 189.186.37.251 7a67b0fe-b476-4e2c-ad4f-8fa5dbdb19a2 2019-05-05 17:03:04.119237 6403 463 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 165\namount: !ruby/object:BigDecimal 18:0.370949E4\ntax: !ruby/object:BigDecimal 18:0.30551E3\ndiscount: !ruby/object:BigDecimal 18:0.18E4\ntotal: !ruby/object:BigDecimal 18:0.2215E4\nstatus: 0\ndate_sale: 2019-05-05\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-209\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 a974a089-8869-4d02-97b7-de9087bbfabc 2019-05-05 17:09:47.805959 6404 286 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.37.251 a974a089-8869-4d02-97b7-de9087bbfabc 2019-05-05 17:09:47.842195 6405 293 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.37.251 a974a089-8869-4d02-97b7-de9087bbfabc 2019-05-05 17:09:47.870515 6406 297 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 189.186.37.251 a974a089-8869-4d02-97b7-de9087bbfabc 2019-05-05 17:09:47.895057 6407 287 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.37.251 a974a089-8869-4d02-97b7-de9087bbfabc 2019-05-05 17:09:47.920314 6408 420 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.37.251 a974a089-8869-4d02-97b7-de9087bbfabc 2019-05-05 17:09:47.944261 6409 463 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 23e02371-ff8b-4f09-a0bd-094d2f74257e 2019-05-05 17:09:56.697937 6410 589 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 165\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.2215E4\nmove_type: '1'\nsale_id: 463\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-209\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAMANTHA\n 1 movimiento de efectivo por venta con folio PV2-V-209 189.186.37.251 23e02371-ff8b-4f09-a0bd-094d2f74257e 2019-05-05 17:09:56.740034 6411 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 16:50:07.924315000 Z\n- &1 2019-05-05 17:01:14.031917000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-05 17:12:27.011465805 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 118\n- 119\n 238 \N 189.186.37.251 a353380e-2868-48d6-9b89-d4bab597ec2a 2019-05-05 17:12:27.017418 6412 12 User \N \N 12 User \N update ---\nunique_session_id:\n- x6zFQWqH3b4CabQx5Nxn\n- fpaWCjyWsEWQRqypk9es\n 239 \N 189.186.37.251 a353380e-2868-48d6-9b89-d4bab597ec2a 2019-05-05 17:12:27.030038 6413 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-05 17:00:10.171489000 Z\n- &1 2019-05-05 17:03:04.094010000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-05 17:13:23.595104553 Z\nsign_in_count:\n- 178\n- 179\n 358 \N 189.186.37.251 8cc10ead-b6fa-4665-be40-77a126bf66aa 2019-05-05 17:13:23.605267 6414 3 User \N \N 3 User \N update ---\nunique_session_id:\n- b2LPy3jBiiCqJw2xX6B1\n- y2ET78z7x8rzn9PGavLy\n 359 \N 189.186.37.251 8cc10ead-b6fa-4665-be40-77a126bf66aa 2019-05-05 17:13:23.62623 30724 1062 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001062'\n 2 \N 187.149.78.168 f675ea32-ff5b-4016-86ba-b4bbd5f3b0e5 2020-03-01 01:48:32.213653 6415 464 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 165\namount: !ruby/object:BigDecimal 18:0.31552E3\ntax: !ruby/object:BigDecimal 18:0.3448E2\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2019-05-05\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-210\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 62959366-4357-4fdb-8dcf-1102ed56b4e4 2019-05-05 17:14:41.722507 6416 365 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.46E2\n- !ruby/object:BigDecimal 18:0.45E2\n 9 \N 189.186.37.251 62959366-4357-4fdb-8dcf-1102ed56b4e4 2019-05-05 17:14:41.756267 6417 464 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 ad433a06-3182-4d65-b3b2-27c7044c35c9 2019-05-05 17:14:46.961998 6418 590 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 165\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 464\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-210\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-210 189.186.37.251 ad433a06-3182-4d65-b3b2-27c7044c35c9 2019-05-05 17:14:46.988534 6419 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 20:57:56.166744000 Z\n- &1 2019-05-04 21:41:48.549561000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-05 17:16:29.445718731 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 53\n- 54\n 108 \N 189.186.37.251 831d8f22-889b-4aff-91b8-385a4f634169 2019-05-05 17:16:29.452774 6420 1 User \N \N 1 User \N update ---\nunique_session_id:\n- EysfrZxx_Rp1j_Ph2jnz\n- _WEBLazd7zpxfVQVC-yz\n 109 \N 189.186.37.251 831d8f22-889b-4aff-91b8-385a4f634169 2019-05-05 17:16:29.46761 6421 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-05 17:03:04.094010000 Z\n- &1 2019-05-05 17:13:23.595104000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-05 17:17:22.121317882 Z\nsign_in_count:\n- 179\n- 180\n 360 \N 189.186.37.251 956d7fa2-7989-4afb-b052-e0d8aa59a6c3 2019-05-05 17:17:22.129862 6422 3 User \N \N 3 User \N update ---\nunique_session_id:\n- y2ET78z7x8rzn9PGavLy\n- X1C6gduTuQAdfafEWD7f\n 361 \N 189.186.37.251 956d7fa2-7989-4afb-b052-e0d8aa59a6c3 2019-05-05 17:17:22.142891 6423 287 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.37.251 dfe37e3f-0165-45a3-895b-4f2823fe73c4 2019-05-05 17:17:55.144384 6424 287 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.37.251 d385d8d4-bafb-433e-ad3c-38539e90e58b 2019-05-05 17:17:58.12728 6425 297 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.37.251 d73efab3-7fb7-4b63-8c26-8929dfdf4012 2019-05-05 17:18:08.019273 6426 297 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.37.251 4500a56d-6bf5-492b-a38d-cb79bfa9aaa5 2019-05-05 17:18:10.65148 6427 285 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.37.251 4712848a-6748-468c-8a81-8d7c6d240602 2019-05-05 17:18:17.338927 6428 285 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.37.251 a1f49ceb-b0a1-4618-b3eb-ca3bcbbea549 2019-05-05 17:18:19.956016 6429 42 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-05-05\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.37.251 702df75c-96cf-4358-ad88-c27c2f8f0af3 2019-05-05 17:18:21.116081 6430 41 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-05-05\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.37.251 a7cf66dc-7014-4266-9543-e3b0e273deaf 2019-05-05 17:18:40.151963 6431 435 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.37.251 a7cf66dc-7014-4266-9543-e3b0e273deaf 2019-05-05 17:18:40.170303 6432 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-05 17:01:14.031917000 Z\n- &1 2019-05-05 17:12:27.011465000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-05 17:19:01.895777303 Z\nsign_in_count:\n- 119\n- 120\n 240 \N 189.186.37.251 c92ac3cb-8f9d-4633-8b14-0cabe79bc4f2 2019-05-05 17:19:01.904078 6433 12 User \N \N 12 User \N update ---\nunique_session_id:\n- fpaWCjyWsEWQRqypk9es\n- aZbEUuxPpxTxukKNC_yG\n 241 \N 189.186.37.251 c92ac3cb-8f9d-4633-8b14-0cabe79bc4f2 2019-05-05 17:19:01.921354 6434 42 Transfer \N \N 12 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 12\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-05-05\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.37.251 bfa9d0a0-ca9c-4cff-a4da-c67d62230b3b 2019-05-05 17:19:13.19012 6435 626 AvailableProduct \N \N 12 User \N create ---\nproduct_id: 289\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 bfa9d0a0-ca9c-4cff-a4da-c67d62230b3b 2019-05-05 17:19:13.211125 6436 627 AvailableProduct \N \N 12 User \N create ---\nproduct_id: 299\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 bfa9d0a0-ca9c-4cff-a4da-c67d62230b3b 2019-05-05 17:19:13.247007 6437 628 AvailableProduct \N \N 12 User \N create ---\nproduct_id: 287\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 bfa9d0a0-ca9c-4cff-a4da-c67d62230b3b 2019-05-05 17:19:13.267948 6438 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 19:16:49.012754000 Z\n- &1 2019-05-04 21:50:17.783642000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-05 17:21:48.431826171 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946399\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 171\n- 172\n 344 \N 189.186.50.198 199d78c9-d88a-434c-abab-31a4a20a8ea5 2019-05-05 17:21:48.438034 6439 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Qy2ysojADQFaW35ssb4j\n- Ea3kccuSKN46hWJKTiuh\n 345 \N 189.186.50.198 199d78c9-d88a-434c-abab-31a4a20a8ea5 2019-05-05 17:21:48.451757 6440 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 21:44:01.258924000 Z\n- &1 2019-05-05 16:06:09.983428000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-05 17:38:16.954192062 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946399\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 60\n- 61\n 122 \N 189.186.37.251 ed817646-b035-4fe9-b58e-4f7c31b77fab 2019-05-05 17:38:16.961653 6443 3 User \N \N 3 User \N update ---\nunique_session_id:\n- X1C6gduTuQAdfafEWD7f\n- rRPgNJ8TzNTJZ5hX-i2z\n 363 \N 189.186.37.251 8a5ebd79-80c0-41a1-995b-b42e4d427813 2019-05-05 19:17:15.119403 6444 465 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 165\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-05-05\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-211\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 3c616356-b2e8-4a64-87dd-24b39fc0a302 2019-05-05 19:57:12.211407 6445 622 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.37.251 3c616356-b2e8-4a64-87dd-24b39fc0a302 2019-05-05 19:57:12.236839 6446 465 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 3a9ea1e4-02c1-4a06-bcee-ec0afb3d8a6b 2019-05-05 19:57:17.607524 6447 591 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 165\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.569E3\nmove_type: '1'\nsale_id: 465\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-211\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-211 189.186.37.251 3a9ea1e4-02c1-4a06-bcee-ec0afb3d8a6b 2019-05-05 19:57:17.640148 6448 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-05 17:12:27.011465000 Z\n- &1 2019-05-05 17:19:01.895777000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-05 20:45:46.133203241 Z\nsign_in_count:\n- 120\n- 121\n 242 \N 189.186.37.251 20477796-e634-4746-8c7d-46201d2dd256 2019-05-05 20:45:46.151443 6449 12 User \N \N 12 User \N update ---\nunique_session_id:\n- aZbEUuxPpxTxukKNC_yG\n- 5pAyX1_oym-yYne94xox\n 243 \N 189.186.37.251 20477796-e634-4746-8c7d-46201d2dd256 2019-05-05 20:45:46.170638 6450 466 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 165\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-05-05\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-212\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 0af04715-7875-4bd2-9748-24a7edaf783e 2019-05-05 21:01:10.042325 6451 387 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.37.251 0af04715-7875-4bd2-9748-24a7edaf783e 2019-05-05 21:01:10.080032 6452 466 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 3077be6f-0cb1-491c-afc6-660742af7eb2 2019-05-05 21:01:33.877083 6453 592 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 165\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 466\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-212\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-212 189.186.37.251 3077be6f-0cb1-491c-afc6-660742af7eb2 2019-05-05 21:01:33.902896 6454 163 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 166\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.2567E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1066E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1066E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 be190e38-5278-4cb9-9d38-99f165e998ff 2019-05-05 21:01:38.875335 6455 166 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 be190e38-5278-4cb9-9d38-99f165e998ff 2019-05-05 21:01:38.906796 6456 164 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 165\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.3933E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 13\nreceived_cash: !ruby/object:BigDecimal 18:0.18E4\ncash_fund: !ruby/object:BigDecimal 18:0.668E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2468E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 218529d9-bac7-4797-b8ca-d2ac8f46ee83 2019-05-05 21:06:34.228816 6457 165 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 218529d9-bac7-4797-b8ca-d2ac8f46ee83 2019-05-05 21:06:34.24146 6458 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 21:50:17.783642000 Z\n- &1 2019-05-05 17:21:48.431826000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-05 22:03:46.659895950 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946399\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539421\n mask_addr: 4294967295\nsign_in_count:\n- 172\n- 173\n 346 \N 177.228.117.29 2f3eb8d4-e4d9-4869-b4b0-80d648e18d31 2019-05-05 22:03:46.67068 6459 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Ea3kccuSKN46hWJKTiuh\n- fxLfyJmW-F6WotcZvtcz\n 347 \N 177.228.117.29 2f3eb8d4-e4d9-4869-b4b0-80d648e18d31 2019-05-05 22:03:46.687578 6460 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 21:40:01.066215000 Z\n- &1 2019-05-04 22:36:52.160216000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-06 15:52:24.358445848 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 97\n- 98\n 199 \N 189.186.37.251 1d953b1f-1097-431a-a594-becdb4f912c6 2019-05-06 15:52:24.387595 6461 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xDGbnnzMn5zyQCz-3s-6\n- DkrLFMtvuTLvxoz4hE7X\n 200 \N 189.186.37.251 1d953b1f-1097-431a-a594-becdb4f912c6 2019-05-06 15:52:24.40994 6462 167 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1066E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1066.0 189.186.37.251 2ae706d5-ae25-41de-97cf-4c79882c160c 2019-05-06 15:57:33.781154 6463 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-05 17:21:48.431826000 Z\n- &1 2019-05-05 22:03:46.659895000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-06 16:20:34.530557550 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539421\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539421\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 173\n- 174\n 348 \N 189.186.50.198 922350af-ac2a-4ecf-b80a-7ed86af90a70 2019-05-06 16:20:34.539026 6464 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fxLfyJmW-F6WotcZvtcz\n- zSPQphMoU9pcutoxu27K\n 349 \N 189.186.50.198 922350af-ac2a-4ecf-b80a-7ed86af90a70 2019-05-06 16:20:34.55709 6488 329 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.37.251 7f422661-5e19-4460-b8cd-97b2491203b5 2019-05-06 17:44:58.274569 6465 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-05 17:17:22.121317000 Z\n- &1 2019-05-05 19:17:15.097282000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-06 16:28:54.918493006 Z\nsign_in_count:\n- 181\n- 182\n 364 \N 189.186.37.251 285a3d75-5f0d-45b4-b029-78999a19f135 2019-05-06 16:28:54.924009 6466 3 User \N \N 3 User \N update ---\nunique_session_id:\n- rRPgNJ8TzNTJZ5hX-i2z\n- H-7dvqYS2jAz438E5aRk\n 365 \N 189.186.37.251 285a3d75-5f0d-45b4-b029-78999a19f135 2019-05-06 16:28:54.937537 6467 168 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.668E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 668.0 189.186.37.251 db6f8c56-a7fe-4886-aebe-4095ceb376c7 2019-05-06 16:29:31.016156 6468 316 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.37.251 8ad162ec-a34f-4a06-acd8-cf385762b3c1 2019-05-06 16:50:30.646243 6469 43 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-05-06\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.37.251 73575e8c-2a60-46bf-9dcd-1948d1acafd6 2019-05-06 16:50:34.273255 6470 43 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-05-06\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.37.251 71ef33f5-26a5-4043-9edd-4367c519f43a 2019-05-06 16:53:47.543578 6471 629 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 318\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 71ef33f5-26a5-4043-9edd-4367c519f43a 2019-05-06 16:53:47.572069 6472 467 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 167\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-05-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-253\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 4312afb6-c320-4b3a-ba4d-4d0a469c3273 2019-05-06 16:54:22.582423 6473 629 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.37.251 4312afb6-c320-4b3a-ba4d-4d0a469c3273 2019-05-06 16:54:22.619885 6474 467 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 669defc4-649b-4cd0-a83a-6e7ea39c6a47 2019-05-06 16:54:43.930263 6475 593 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 167\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 467\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-253\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.469E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-253 189.186.37.251 669defc4-649b-4cd0-a83a-6e7ea39c6a47 2019-05-06 16:54:43.968691 6476 83 Customer \N \N 2 User \N create ---\nnick_name: SUJEY AGUILAR\nphone: "(667) 797-7166"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente SUJEY AGUILAR fue registrado. 189.186.37.251 50b58811-8d9c-4b13-b7d0-d7726710ac55 2019-05-06 17:23:15.592288 6477 84 Customer \N \N 2 User \N create ---\nnick_name: SUJEY AGUILAR\nphone: "(667) 797-7166"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente SUJEY AGUILAR fue registrado. 189.186.37.251 14da04a6-a1ba-41b3-b1e8-0d0e5a1c6cf3 2019-05-06 17:23:17.441962 6478 468 Sale \N \N 2 User \N create ---\ncustomer_id: 84\nuser_id: 2\nopen_cash_register_id: 167\namount: !ruby/object:BigDecimal 18:0.1048E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1048E4\nstatus: 0\ndate_sale: 2019-05-06\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-254\nexpiration_date: 2019-06-10\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 3fab38b2-62d7-469b-8509-bc27e5014f7f 2019-05-06 17:23:53.39341 6479 534 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 3fab38b2-62d7-469b-8509-bc27e5014f7f 2019-05-06 17:23:53.432267 6480 616 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 3fab38b2-62d7-469b-8509-bc27e5014f7f 2019-05-06 17:23:53.480373 6481 594 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 167\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 468\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-254\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-254 189.186.37.251 ac5c5fe7-9c53-40e2-b849-877df74cbc5c 2019-05-06 17:24:24.9956 6482 468 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 16220ba7-09c2-4aca-a84a-5005722afb76 2019-05-06 17:24:43.129899 6483 595 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 167\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.392E3\nmove_type: '1'\nsale_id: 436\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.392E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-233 189.186.37.251 598ff01c-5a13-4282-8b93-a875887a8dc9 2019-05-06 17:37:56.013448 6484 436 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 1335816a-e959-41df-a605-ec0de868f490 2019-05-06 17:37:57.36877 6485 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-05 22:03:46.659895000 Z\n- &1 2019-05-06 16:20:34.530557000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-06 17:42:44.404399573 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539421\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 174\n- 175\n 350 \N 189.186.50.198 409e408e-4107-49d2-abef-5f1f7ebb0be6 2019-05-06 17:42:44.415714 6486 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zSPQphMoU9pcutoxu27K\n- d-_yLGyB1t4bCqfJQfgR\n 351 \N 189.186.50.198 409e408e-4107-49d2-abef-5f1f7ebb0be6 2019-05-06 17:42:44.438937 6487 469 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 168\namount: !ruby/object:BigDecimal 18:0.70603E3\ntax: !ruby/object:BigDecimal 18:0.11296E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.81899E3\nstatus: 0\ndate_sale: 2019-05-06\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-213\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 7f422661-5e19-4460-b8cd-97b2491203b5 2019-05-06 17:44:58.224554 6490 596 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 168\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.81899E3\nmove_type: '1'\nsale_id: 469\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-213\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.18101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-213 189.186.37.251 af6a418f-18b7-4d38-926f-b30f4b4918a4 2019-05-06 17:45:37.400026 6491 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-05 17:19:01.895777000 Z\n- &1 2019-05-05 20:45:46.133203000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-06 17:48:51.782238572 Z\nsign_in_count:\n- 121\n- 122\n 244 \N 189.186.37.251 028ed11d-6f22-4a72-b2db-be25faa4c7c3 2019-05-06 17:48:51.787898 6492 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 5pAyX1_oym-yYne94xox\n- kWjpaJEBzppnLqszbSVw\n 245 \N 189.186.37.251 028ed11d-6f22-4a72-b2db-be25faa4c7c3 2019-05-06 17:48:51.803229 6493 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-05 19:17:15.097282000 Z\n- &1 2019-05-06 16:28:54.918493000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-06 17:54:27.308749974 Z\nsign_in_count:\n- 182\n- 183\n 366 \N 189.186.37.251 b65588fe-54d4-427d-9557-742231cd4d10 2019-05-06 17:54:27.315541 6494 3 User \N \N 3 User \N update ---\nunique_session_id:\n- H-7dvqYS2jAz438E5aRk\n- FvU4gn484Ut2Hsgn7xcW\n 367 \N 189.186.37.251 b65588fe-54d4-427d-9557-742231cd4d10 2019-05-06 17:54:27.330927 6495 470 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 167\namount: !ruby/object:BigDecimal 18:0.83003E3\ntax: !ruby/object:BigDecimal 18:0.6896E2\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.49999E3\nstatus: 0\ndate_sale: 2019-05-06\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-255\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 1f68ca71-eb95-41d5-a99c-6358d9479b14 2019-05-06 19:15:25.956932 6496 178 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.37.251 1f68ca71-eb95-41d5-a99c-6358d9479b14 2019-05-06 19:15:25.989973 6497 470 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 5a18683d-c4ed-44d6-8aa4-f351609d2a62 2019-05-06 19:15:29.081343 6498 597 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 167\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49999E3\nmove_type: '1'\nsale_id: 470\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-255\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E-1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-255 189.186.37.251 5a18683d-c4ed-44d6-8aa4-f351609d2a62 2019-05-06 19:15:29.104754 6499 471 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 168\namount: !ruby/object:BigDecimal 18:0.8181E3\ntax: !ruby/object:BigDecimal 18:0.1309E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.949E3\nstatus: 0\ndate_sale: 2019-05-06\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-214\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 27678eb7-f287-4325-b8f3-27187818ca68 2019-05-06 20:10:06.10566 6500 479 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.37.251 27678eb7-f287-4325-b8f3-27187818ca68 2019-05-06 20:10:06.157015 6501 471 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 998063e3-795b-4b0c-93c4-e8708ee5b8cc 2019-05-06 20:10:53.694451 6502 598 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 168\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.949E3\nmove_type: '1'\nsale_id: 471\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-214\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.95E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-214 189.186.37.251 998063e3-795b-4b0c-93c4-e8708ee5b8cc 2019-05-06 20:10:53.718541 6503 472 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 167\namount: !ruby/object:BigDecimal 18:0.59052E3\ntax: !ruby/object:BigDecimal 18:0.9448E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.685E3\nstatus: 0\ndate_sale: 2019-05-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-256\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 f22d1b25-e48f-48a6-9180-16f9d3e42784 2019-05-06 20:34:42.246252 6504 140 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.251 f22d1b25-e48f-48a6-9180-16f9d3e42784 2019-05-06 20:34:42.286752 6505 472 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 f1c4a4d2-f8b5-45c1-8c39-da02e7155da6 2019-05-06 20:34:52.222777 6506 599 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 167\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.685E3\nmove_type: '1'\nsale_id: 472\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-256\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.685E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-256 189.186.37.251 f1c4a4d2-f8b5-45c1-8c39-da02e7155da6 2019-05-06 20:34:52.256623 6507 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-05 20:45:46.133203000 Z\n- &1 2019-05-06 17:48:51.782238000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-06 20:51:50.537429778 Z\nsign_in_count:\n- 122\n- 123\n 246 \N 189.186.37.251 aa0da8ea-b08c-49ab-b2eb-ae5c9c53c2dd 2019-05-06 20:51:50.544044 6508 12 User \N \N 12 User \N update ---\nunique_session_id:\n- kWjpaJEBzppnLqszbSVw\n- "-xhEHzA6H5TSGrkWABec"\n 247 \N 189.186.37.251 aa0da8ea-b08c-49ab-b2eb-ae5c9c53c2dd 2019-05-06 20:51:50.560026 6509 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-06 16:28:54.918493000 Z\n- &1 2019-05-06 17:54:27.308749000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-06 21:00:36.517455217 Z\nsign_in_count:\n- 183\n- 184\n 368 \N 189.186.37.251 7891c7ab-58eb-47f3-b168-124da794bb5b 2019-05-06 21:00:36.525464 6510 3 User \N \N 3 User \N update ---\nunique_session_id:\n- FvU4gn484Ut2Hsgn7xcW\n- F8x43-FdeMXhmhtqxcaC\n 369 \N 189.186.37.251 7891c7ab-58eb-47f3-b168-124da794bb5b 2019-05-06 21:00:36.542801 6511 473 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 168\namount: !ruby/object:BigDecimal 18:0.969E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.969E3\nstatus: 0\ndate_sale: 2019-05-06\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-215\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 8728abf3-5268-4dfb-a027-5c3e76082ed9 2019-05-06 22:01:29.621513 6512 494 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.37.251 8728abf3-5268-4dfb-a027-5c3e76082ed9 2019-05-06 22:01:29.664342 6513 473 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 a33e3e30-1d96-4876-9268-124cd91735de 2019-05-06 22:01:35.455707 6514 600 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 168\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.969E3\nmove_type: '1'\nsale_id: 473\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-215\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-215 189.186.37.251 a33e3e30-1d96-4876-9268-124cd91735de 2019-05-06 22:01:35.481668 6515 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-06 17:48:51.782238000 Z\n- &1 2019-05-06 20:51:50.537429000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-06 22:19:09.221197027 Z\nsign_in_count:\n- 123\n- 124\n 248 \N 189.186.37.251 b2845a32-9bdc-45f7-a17c-c32974466221 2019-05-06 22:19:09.248613 6516 12 User \N \N 12 User \N update ---\nunique_session_id:\n- "-xhEHzA6H5TSGrkWABec"\n- quw1cKQy7QpWFuVpLVKJ\n 249 \N 189.186.37.251 b2845a32-9bdc-45f7-a17c-c32974466221 2019-05-06 22:19:09.267702 6517 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-06 20:51:50.537429000 Z\n- &1 2019-05-06 22:19:09.221197000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-06 22:52:55.027608895 Z\nsign_in_count:\n- 124\n- 125\n 250 \N 189.186.37.251 ffba6066-465a-48a0-8aae-6affd9bd559a 2019-05-06 22:52:55.034749 6518 12 User \N \N 12 User \N update ---\nunique_session_id:\n- quw1cKQy7QpWFuVpLVKJ\n- fy8S551DZ_4RbRenEhHu\n 251 \N 189.186.37.251 ffba6066-465a-48a0-8aae-6affd9bd559a 2019-05-06 22:52:55.052201 6519 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-06 17:54:27.308749000 Z\n- &1 2019-05-06 21:00:36.517455000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-06 23:21:09.525412568 Z\nsign_in_count:\n- 184\n- 185\n 370 \N 189.186.37.251 fed573b2-687c-4717-8a53-8ecaa225b32e 2019-05-06 23:21:09.530749 6520 3 User \N \N 3 User \N update ---\nunique_session_id:\n- F8x43-FdeMXhmhtqxcaC\n- sX99nPsi8fvrAf6RTLAj\n 371 \N 189.186.37.251 fed573b2-687c-4717-8a53-8ecaa225b32e 2019-05-06 23:21:09.544008 6521 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-06 22:19:09.221197000 Z\n- &1 2019-05-06 22:52:55.027608000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-06 23:26:58.210518803 Z\nsign_in_count:\n- 125\n- 126\n 252 \N 189.186.37.251 161f4b07-e275-42bc-8d16-f352f57171c0 2019-05-06 23:26:58.216537 6522 12 User \N \N 12 User \N update ---\nunique_session_id:\n- fy8S551DZ_4RbRenEhHu\n- 9HqAa9rDjhXhxMhazEk2\n 253 \N 189.186.37.251 161f4b07-e275-42bc-8d16-f352f57171c0 2019-05-06 23:26:58.229814 6523 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-06 21:00:36.517455000 Z\n- &1 2019-05-06 23:21:09.525412000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-06 23:27:16.436721256 Z\nsign_in_count:\n- 185\n- 186\n 372 \N 189.186.37.251 8dc288f1-551d-4486-b420-f387d1f55845 2019-05-06 23:27:16.442842 6524 3 User \N \N 3 User \N update ---\nunique_session_id:\n- sX99nPsi8fvrAf6RTLAj\n- SwCMvFKEq6juNevPgMqT\n 373 \N 189.186.37.251 8dc288f1-551d-4486-b420-f387d1f55845 2019-05-06 23:27:16.456627 6525 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-06 23:21:09.525412000 Z\n- &1 2019-05-06 23:27:16.436721000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-06 23:40:20.276468708 Z\nsign_in_count:\n- 186\n- 187\n 374 \N 189.186.37.251 035a45a3-6abd-44f9-8efa-a458c4b89081 2019-05-06 23:40:20.28357 6526 3 User \N \N 3 User \N update ---\nunique_session_id:\n- SwCMvFKEq6juNevPgMqT\n- WyX5yyQCxXKtzpjUN-xc\n 375 \N 189.186.37.251 035a45a3-6abd-44f9-8efa-a458c4b89081 2019-05-06 23:40:20.299002 6527 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-06 22:52:55.027608000 Z\n- &1 2019-05-06 23:26:58.210518000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-06 23:40:36.828467347 Z\nsign_in_count:\n- 126\n- 127\n 254 \N 189.186.37.251 ebfd69e6-4e7e-493c-bb47-206fe5484ae8 2019-05-06 23:40:36.835414 6528 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 9HqAa9rDjhXhxMhazEk2\n- WQYWRHumy3d2uXhoua6V\n 255 \N 189.186.37.251 ebfd69e6-4e7e-493c-bb47-206fe5484ae8 2019-05-06 23:40:36.851919 6529 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-06 23:27:16.436721000 Z\n- &1 2019-05-06 23:40:20.276468000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-06 23:40:52.856149126 Z\nsign_in_count:\n- 187\n- 188\n 376 \N 189.186.37.251 e0058069-f195-4945-8e67-44b3e82ee2f1 2019-05-06 23:40:52.864662 6530 3 User \N \N 3 User \N update ---\nunique_session_id:\n- WyX5yyQCxXKtzpjUN-xc\n- MtfRirzoWxW9epbqoyWk\n 377 \N 189.186.37.251 e0058069-f195-4945-8e67-44b3e82ee2f1 2019-05-06 23:40:52.883395 6531 474 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 167\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-05-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-257\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 7bf44604-fc3d-4fdc-975a-2215bdcec9ed 2019-05-06 23:56:02.615175 6532 530 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.251 7bf44604-fc3d-4fdc-975a-2215bdcec9ed 2019-05-06 23:56:02.659374 6533 474 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 43db79e6-ed5e-460d-8ac4-74104ecf7aa7 2019-05-07 00:02:41.395389 6534 601 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 167\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 474\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-257\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-257 189.186.37.251 43db79e6-ed5e-460d-8ac4-74104ecf7aa7 2019-05-07 00:02:41.420357 6535 475 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 167\namount: !ruby/object:BigDecimal 18:0.1344E4\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1468E4\nstatus: 0\ndate_sale: 2019-05-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-258\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 1abe972b-ea32-4dc8-8638-68e092dd93a4 2019-05-07 00:04:11.699313 6536 616 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.251 1abe972b-ea32-4dc8-8638-68e092dd93a4 2019-05-07 00:04:11.73455 6537 186 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.37.251 1abe972b-ea32-4dc8-8638-68e092dd93a4 2019-05-07 00:04:11.760069 6538 475 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 cf95a546-a6ed-47a2-8c96-69ac1385b64a 2019-05-07 00:04:56.416253 6539 602 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 167\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1468E4\nmove_type: '1'\nsale_id: 475\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-258\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1468E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-258 189.186.37.251 cf95a546-a6ed-47a2-8c96-69ac1385b64a 2019-05-07 00:04:56.449494 6540 602 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 167\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1468E4\nmove_type: '1'\nsale_id: 475\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-258\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1468E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.37.251 7b3b1d26-3779-46f0-9038-e34346d751ae 2019-05-07 00:05:19.250359 6541 603 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 167\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1468E4\nmove_type: '1'\nsale_id: 475\ncardnumber: 8677\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-258\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-258 189.186.37.251 9a5de639-0a4a-46e7-981b-a69e385a9715 2019-05-07 00:05:39.175721 6542 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-06 23:26:58.210518000 Z\n- &1 2019-05-06 23:40:36.828467000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-07 00:28:27.873082090 Z\nsign_in_count:\n- 127\n- 128\n 256 \N 189.186.37.251 9c9b6a72-f66e-400b-8709-66cdadd1eef9 2019-05-07 00:28:27.880318 6543 12 User \N \N 12 User \N update ---\nunique_session_id:\n- WQYWRHumy3d2uXhoua6V\n- Uv13XYxQj_sH6rTnDmtt\n 257 \N 189.186.37.251 9c9b6a72-f66e-400b-8709-66cdadd1eef9 2019-05-07 00:28:27.896856 6544 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-06 23:40:20.276468000 Z\n- &1 2019-05-06 23:40:52.856149000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-07 00:29:37.827371985 Z\nsign_in_count:\n- 188\n- 189\n 378 \N 189.186.37.251 c7a2d8f0-8fc9-4796-b846-d36589e78d01 2019-05-07 00:29:37.833433 6545 3 User \N \N 3 User \N update ---\nunique_session_id:\n- MtfRirzoWxW9epbqoyWk\n- io5AoqF25KZTqD_2ueLR\n 379 \N 189.186.37.251 c7a2d8f0-8fc9-4796-b846-d36589e78d01 2019-05-07 00:29:37.84794 6546 476 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 168\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-05-06\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-216\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 7f1cb0b9-b103-4809-a04f-0f04cae2d6a5 2019-05-07 00:34:11.190139 6547 435 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.37.251 7f1cb0b9-b103-4809-a04f-0f04cae2d6a5 2019-05-07 00:34:11.21825 6548 476 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 7f68c3ac-c74b-4188-a09a-560f9dec0658 2019-05-07 00:34:34.808046 6549 604 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 168\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 476\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-216\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-216 189.186.37.251 7f68c3ac-c74b-4188-a09a-560f9dec0658 2019-05-07 00:34:34.842076 6550 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-06 23:40:36.828467000 Z\n- &1 2019-05-07 00:28:27.873082000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-07 00:53:45.716763777 Z\nsign_in_count:\n- 128\n- 129\n 258 \N 189.186.37.251 4b0ac333-2b2d-4521-97de-450ad770ef89 2019-05-07 00:53:45.723803 6551 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Uv13XYxQj_sH6rTnDmtt\n- YvcsMmCgqmrj1RytsVWL\n 259 \N 189.186.37.251 4b0ac333-2b2d-4521-97de-450ad770ef89 2019-05-07 00:53:45.739985 6552 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-06 23:40:52.856149000 Z\n- &1 2019-05-07 00:29:37.827371000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-07 00:54:15.972175795 Z\nsign_in_count:\n- 189\n- 190\n 380 \N 189.186.37.251 321f6d35-b8df-40c9-b678-6bcd0e1c9b29 2019-05-07 00:54:15.97822 6553 3 User \N \N 3 User \N update ---\nunique_session_id:\n- io5AoqF25KZTqD_2ueLR\n- i7JzNvrzUMHxUzWqs-xA\n 381 \N 189.186.37.251 321f6d35-b8df-40c9-b678-6bcd0e1c9b29 2019-05-07 00:54:15.99214 6554 477 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 168\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-05-06\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-217\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 27d83c23-e7f5-4a99-b230-d9ef7d53a1d2 2019-05-07 00:58:20.28179 6555 394 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.37.251 27d83c23-e7f5-4a99-b230-d9ef7d53a1d2 2019-05-07 00:58:20.329744 6556 477 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 e928d6f8-8751-48d4-8cd5-5ff13db01b96 2019-05-07 00:59:14.770827 6557 605 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 168\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 477\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-217\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.13E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-217 189.186.37.251 e928d6f8-8751-48d4-8cd5-5ff13db01b96 2019-05-07 00:59:14.798845 6558 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-07 00:28:27.873082000 Z\n- &1 2019-05-07 00:53:45.716763000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-07 01:00:49.860620338 Z\nsign_in_count:\n- 129\n- 130\n 260 \N 189.186.37.251 81e6ecfa-3344-4d29-9535-8f8983b6bf0a 2019-05-07 01:00:49.866975 6559 12 User \N \N 12 User \N update ---\nunique_session_id:\n- YvcsMmCgqmrj1RytsVWL\n- P-aseXzuyRs_n_Uv1sA_\n 261 \N 189.186.37.251 81e6ecfa-3344-4d29-9535-8f8983b6bf0a 2019-05-07 01:00:49.884259 6560 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-07 00:29:37.827371000 Z\n- &1 2019-05-07 00:54:15.972175000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-07 01:27:54.304598951 Z\nsign_in_count:\n- 190\n- 191\n 382 \N 189.186.37.251 37aea026-c3a6-47fd-b5b7-79aab90bd80d 2019-05-07 01:27:54.310612 6561 3 User \N \N 3 User \N update ---\nunique_session_id:\n- i7JzNvrzUMHxUzWqs-xA\n- G1jkdUMbr83ZdZhGHcj-\n 383 \N 189.186.37.251 37aea026-c3a6-47fd-b5b7-79aab90bd80d 2019-05-07 01:27:54.324467 6562 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-06 16:20:34.530557000 Z\n- &1 2019-05-06 17:42:44.404399000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-07 01:34:10.450514937 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 175\n- 176\n 352 \N 189.186.37.251 a8267bd7-3b91-43ee-8089-70e40365a068 2019-05-07 01:34:10.457881 6563 4 User \N \N 4 User \N update ---\nunique_session_id:\n- d-_yLGyB1t4bCqfJQfgR\n- APPfsa5e658V8bRZMQxV\n 353 \N 189.186.37.251 a8267bd7-3b91-43ee-8089-70e40365a068 2019-05-07 01:34:10.475701 31106 2299 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.107.100 ba4df064-765e-4a10-b825-54bc128de66e 2020-03-06 22:06:45.074326 6564 165 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 168\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.463499E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.44E4\ncash_fund: !ruby/object:BigDecimal 18:0.903E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5303E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 3d963c12-ffd1-4c85-9b06-5e0423a003c1 2019-05-07 01:36:02.759846 6565 168 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 3d963c12-ffd1-4c85-9b06-5e0423a003c1 2019-05-07 01:36:02.781139 6566 57 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 167\nquantity: !ruby/object:BigDecimal 18:0.75E3\nstatus: 1\nobservations: "$700 PRESTAMO ROCIO\\r\\n$50 COMIDA"\nexpense_date: 2019-05-06\nexpense_code: PV1-E-51\n 1 Egreso por 750.0 registrado 189.186.37.251 f2472075-e7a8-4678-8ad4-a810b6ae1d6c 2019-05-07 01:36:47.026046 6567 606 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 167\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.75E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 57\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 f2472075-e7a8-4678-8ad4-a810b6ae1d6c 2019-05-07 01:36:47.048887 6568 166 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 167\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.516299E4\namount_out: !ruby/object:BigDecimal 18:0.75E3\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.1511E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4011E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 b37c7075-9a1b-4514-9295-619467633d23 2019-05-07 01:40:14.157034 6569 167 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 b37c7075-9a1b-4514-9295-619467633d23 2019-05-07 01:40:14.174522 6570 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-07 00:53:45.716763000 Z\n- &1 2019-05-07 01:00:49.860620000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-07 01:41:31.384431057 Z\nsign_in_count:\n- 130\n- 131\n 262 \N 189.186.37.251 4eccab1c-f25b-457c-b8f0-a58ed85d90cc 2019-05-07 01:41:31.390262 6571 12 User \N \N 12 User \N update ---\nunique_session_id:\n- P-aseXzuyRs_n_Uv1sA_\n- KSNiwczcHSx-Q6LZtzr-\n 263 \N 189.186.37.251 4eccab1c-f25b-457c-b8f0-a58ed85d90cc 2019-05-07 01:41:31.404766 6572 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 22:36:52.160216000 Z\n- &1 2019-05-06 15:52:24.358445000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-07 15:20:57.523433479 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 98\n- 99\n 201 \N 189.186.37.251 7953bce1-15be-4126-a3c7-dbb5b1514af6 2019-05-07 15:20:57.564433 6573 2 User \N \N 2 User \N update ---\nunique_session_id:\n- DkrLFMtvuTLvxoz4hE7X\n- p1e_hYk3YzDUqN_h-Wtd\n 202 \N 189.186.37.251 7953bce1-15be-4126-a3c7-dbb5b1514af6 2019-05-07 15:20:57.597336 6574 169 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1511E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1511.0 189.186.37.251 d6152054-ef05-41da-800d-5cc1db7c7d79 2019-05-07 15:37:39.776212 6575 607 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 55\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 203\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 08cdfc01-5cb1-456e-b65d-05e417e02f48 2019-05-07 15:38:32.676038 6576 607 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 55\n- 169\n 2 movimiento de efectivo por venta con folio PV1-V-113 189.186.37.251 08cdfc01-5cb1-456e-b65d-05e417e02f48 2019-05-07 15:38:32.709834 6577 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-07 00:54:15.972175000 Z\n- &1 2019-05-07 01:27:54.304598000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-07 16:03:09.369161956 Z\nsign_in_count:\n- 191\n- 192\n 384 \N 189.186.37.251 be23daf1-2af6-4270-825c-b56aa4c60ede 2019-05-07 16:03:09.374951 6578 3 User \N \N 3 User \N update ---\nunique_session_id:\n- G1jkdUMbr83ZdZhGHcj-\n- cxEzkxUdS-QyzQkrJi8R\n 385 \N 189.186.37.251 be23daf1-2af6-4270-825c-b56aa4c60ede 2019-05-07 16:03:09.390478 6579 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-06 17:42:44.404399000 Z\n- &1 2019-05-07 01:34:10.450514000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-07 17:32:12.527744125 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946228\n mask_addr: 4294967295\nsign_in_count:\n- 176\n- 177\n 354 \N 200.68.181.244 80dd2d72-67e7-422a-b450-519e163c9a12 2019-05-07 17:32:12.560746 6580 4 User \N \N 4 User \N update ---\nunique_session_id:\n- APPfsa5e658V8bRZMQxV\n- UUM2EzKdQdtyYxueQx3R\n 355 \N 200.68.181.244 80dd2d72-67e7-422a-b450-519e163c9a12 2019-05-07 17:32:12.591002 6581 61 AvailableProduct \N \N 2 User \N update ---\nprice_sale:\n- \n- !ruby/object:BigDecimal 18:0.899E3\n 1 \N 189.186.37.251 7f9c8914-a7be-4a3b-b29d-ad4c67a1b6ad 2019-05-07 18:02:00.507349 6582 478 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 169\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-05-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-259\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 8d761772-e17d-4da2-a839-ea045503682a 2019-05-07 18:02:24.121358 6583 61 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.37.251 8d761772-e17d-4da2-a839-ea045503682a 2019-05-07 18:02:24.150701 6584 478 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 9d6b71fa-b9c9-4fa5-9d7e-ed84618ed20e 2019-05-07 18:02:37.118366 6585 608 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 169\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 478\ncardnumber: 2260\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-259\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-259 189.186.37.251 9d6b71fa-b9c9-4fa5-9d7e-ed84618ed20e 2019-05-07 18:02:37.154739 6586 61 AvailableProduct \N \N 2 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.899E3\n- !ruby/object:BigDecimal 18:0.749E3\n 3 \N 189.186.37.251 264936f7-a8a3-470b-8212-b32d7b1dbff4 2019-05-07 18:03:45.590493 6796 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 18 \N 189.186.37.251 4e558066-4f48-4716-9ea9-710dab92ead6 2019-05-08 21:52:01.638102 6587 170 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.903E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 903.0 189.186.37.251 27fde65a-102e-4a08-83ed-689f0e235125 2019-05-07 18:10:47.912873 6588 85 Customer \N \N 2 User \N create ---\nnick_name: ZAIDA MENDOZA\nphone: "(667) 104-7475"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ZAIDA MENDOZA fue registrado. 189.186.37.251 0be0a004-8df4-491e-aa8a-5fab6bb8a049 2019-05-07 18:15:23.779646 6589 479 Sale \N \N 2 User \N create ---\ncustomer_id: 85\nuser_id: 2\nopen_cash_register_id: 169\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-05-07\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-260\nexpiration_date: 2019-06-11\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 37216387-8afd-4350-bfcb-483162f0a3dc 2019-05-07 18:16:18.575041 6590 186 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.37.251 37216387-8afd-4350-bfcb-483162f0a3dc 2019-05-07 18:16:18.607178 6591 609 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 169\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 479\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-260\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-260 189.186.37.251 35eb5b6d-ba8d-4a5d-854b-e31f90cded37 2019-05-07 18:16:40.058428 6592 479 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 618e5140-5aac-47c6-9f48-7fa9b56fa4fe 2019-05-07 18:16:41.996839 6593 86 Customer \N \N 3 User \N create ---\nnick_name: ZAYDA MENDOZA\nphone: "(667) 104-7475"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ZAYDA MENDOZA fue registrado. 189.186.37.251 569df0e2-9284-49bd-8c55-2347d4c4e7c9 2019-05-07 18:26:19.685602 6594 480 Sale \N \N 3 User \N create ---\ncustomer_id: 86\nuser_id: 3\nopen_cash_register_id: 170\namount: !ruby/object:BigDecimal 18:0.72328E3\ntax: !ruby/object:BigDecimal 18:0.11572E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.839E3\nstatus: 0\ndate_sale: 2019-05-07\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-218\nexpiration_date: 2019-06-11\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 cdc68a66-fe70-4c19-b04f-90453f01ade0 2019-05-07 18:26:30.032108 6595 418 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.37.251 cdc68a66-fe70-4c19-b04f-90453f01ade0 2019-05-07 18:26:30.068808 6596 610 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 170\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.252E3\nmove_type: '1'\nsale_id: 480\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-218\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.252E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-218 189.186.37.251 6e9af4a3-8ea8-42b1-ace6-ed2cadf947f8 2019-05-07 18:26:55.582626 6597 480 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 5a2814b1-603d-4e48-a38b-e68e0b886d22 2019-05-07 18:27:02.415919 6598 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-07 01:00:49.860620000 Z\n- &1 2019-05-07 01:41:31.384431000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-07 19:06:54.873188060 Z\nsign_in_count:\n- 131\n- 132\n 264 \N 189.186.37.251 ea4cd6d7-3436-4de8-a5dc-0c7e4a468288 2019-05-07 19:06:54.896049 6599 12 User \N \N 12 User \N update ---\nunique_session_id:\n- KSNiwczcHSx-Q6LZtzr-\n- jHQ-vFGyhzJsK3Nqyxgz\n 265 \N 189.186.37.251 ea4cd6d7-3436-4de8-a5dc-0c7e4a468288 2019-05-07 19:06:54.915953 6600 611 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 169\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 412\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-216 189.186.37.251 aade8bbf-0c21-4e56-8d69-8583f92296b8 2019-05-07 19:17:36.556386 6601 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-07 01:41:31.384431000 Z\n- &1 2019-05-07 19:06:54.873188000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-07 20:41:43.629097081 Z\nsign_in_count:\n- 132\n- 133\n 266 \N 189.186.37.251 2951bdde-95d6-4e4f-8eaf-b0d8cae9a1de 2019-05-07 20:41:43.648051 6602 12 User \N \N 12 User \N update ---\nunique_session_id:\n- jHQ-vFGyhzJsK3Nqyxgz\n- KuyGTCep_aZFGNSNcHVx\n 267 \N 189.186.37.251 2951bdde-95d6-4e4f-8eaf-b0d8cae9a1de 2019-05-07 20:41:43.665976 6603 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-07 19:06:54.873188000 Z\n- &1 2019-05-07 20:41:43.629097000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-07 20:42:33.395520582 Z\nsign_in_count:\n- 133\n- 134\n 268 \N 189.186.37.251 a1ced242-5197-4a7f-b754-ee60bb5e0af4 2019-05-07 20:42:33.403669 6604 12 User \N \N 12 User \N update ---\nunique_session_id:\n- KuyGTCep_aZFGNSNcHVx\n- D1PRpu4qDxVyuRzxofoQ\n 269 \N 189.186.37.251 a1ced242-5197-4a7f-b754-ee60bb5e0af4 2019-05-07 20:42:33.423008 6605 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-07 01:27:54.304598000 Z\n- &1 2019-05-07 16:03:09.369161000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-07 20:43:27.231700391 Z\nsign_in_count:\n- 192\n- 193\n 386 \N 189.186.37.251 1aaca6bf-8085-4744-b1d0-76688bc741b8 2019-05-07 20:43:27.237274 6606 3 User \N \N 3 User \N update ---\nunique_session_id:\n- cxEzkxUdS-QyzQkrJi8R\n- 2-U7muz-b2psnGdDMdez\n 387 \N 189.186.37.251 1aaca6bf-8085-4744-b1d0-76688bc741b8 2019-05-07 20:43:27.252529 6607 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-06 15:52:24.358445000 Z\n- &1 2019-05-07 15:20:57.523433000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-07 22:41:33.665267189 Z\nsign_in_count:\n- 99\n- 100\n 203 \N 189.186.37.251 e4e04240-8c86-4b99-af2b-7eae27a46756 2019-05-07 22:41:33.672185 6608 2 User \N \N 2 User \N update ---\nunique_session_id:\n- p1e_hYk3YzDUqN_h-Wtd\n- torE9EF-ArC5aEua1PbR\n 204 \N 189.186.37.251 e4e04240-8c86-4b99-af2b-7eae27a46756 2019-05-07 22:41:33.686605 6609 481 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 169\namount: !ruby/object:BigDecimal 18:0.79569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.15E3\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-05-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-261\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 f2ae7925-5bfe-44a7-91c0-6cabb4af65c0 2019-05-07 22:47:18.567913 6610 186 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.37.251 f2ae7925-5bfe-44a7-91c0-6cabb4af65c0 2019-05-07 22:47:18.602137 6612 612 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 169\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.749E3\nmove_type: '1'\nsale_id: 481\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-261\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.75E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-261 189.186.37.251 e82fce9a-d2ba-4ff1-915c-6ff5cb182ab2 2019-05-07 22:47:30.867807 6613 482 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 169\namount: !ruby/object:BigDecimal 18:0.45603E3\ntax: !ruby/object:BigDecimal 18:0.7296E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.52899E3\nstatus: 0\ndate_sale: 2019-05-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-262\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 1736447d-a973-43d6-a676-60640ef9f151 2019-05-07 22:49:54.990867 6614 198 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.37.251 1736447d-a973-43d6-a676-60640ef9f151 2019-05-07 22:49:55.041174 6615 482 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 16713837-2cc8-4fa0-92e4-67862cea9d54 2019-05-07 22:50:07.180331 6616 613 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 169\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.52899E3\nmove_type: '1'\nsale_id: 482\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-262\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.529E3\nchange: !ruby/object:BigDecimal 18:0.1E-1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-262 189.186.37.251 16713837-2cc8-4fa0-92e4-67862cea9d54 2019-05-07 22:50:07.221264 6617 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-07 01:34:10.450514000 Z\n- &1 2019-05-07 17:32:12.527744000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-07 22:54:01.109565360 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946228\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946228\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938087\n mask_addr: 4294967295\nsign_in_count:\n- 177\n- 178\n 356 \N 200.68.150.39 f9dd5d10-4a5f-4a2d-b9ef-994863581042 2019-05-07 22:54:01.121191 6618 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UUM2EzKdQdtyYxueQx3R\n- sgMkQQzC3R4xuwcjwTRc\n 357 \N 200.68.150.39 f9dd5d10-4a5f-4a2d-b9ef-994863581042 2019-05-07 22:54:01.142623 6619 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-07 20:41:43.629097000 Z\n- &1 2019-05-07 20:42:33.395520000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-07 23:17:50.998704261 Z\nsign_in_count:\n- 134\n- 135\n 270 \N 189.186.37.251 69cad878-3537-475f-a861-9a19a2e6886f 2019-05-07 23:17:51.006969 6620 12 User \N \N 12 User \N update ---\nunique_session_id:\n- D1PRpu4qDxVyuRzxofoQ\n- zmSkyPfeymsMsjHhHcqb\n 271 \N 189.186.37.251 69cad878-3537-475f-a861-9a19a2e6886f 2019-05-07 23:17:51.024935 6621 58 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 169\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: COMIDA\nexpense_date: 2019-05-07\nexpense_code: PV1-E-52\n 1 Egreso por 50.0 registrado 189.186.37.251 7037cd0c-8cda-4876-974c-85b62f8716b0 2019-05-07 23:29:20.334111 6622 614 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 169\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 58\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 7037cd0c-8cda-4876-974c-85b62f8716b0 2019-05-07 23:29:20.367951 6623 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-07 16:03:09.369161000 Z\n- &1 2019-05-07 20:43:27.231700000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 00:07:06.878208994 Z\nsign_in_count:\n- 193\n- 194\n 388 \N 189.186.37.251 6e5676db-5662-4715-85e2-bede27418b66 2019-05-08 00:07:06.886227 6624 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 2-U7muz-b2psnGdDMdez\n- TMy_3p4JJ7AUhmSMx-PH\n 389 \N 189.186.37.251 6e5676db-5662-4715-85e2-bede27418b66 2019-05-08 00:07:06.902175 6625 483 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 169\namount: !ruby/object:BigDecimal 18:0.121469E4\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1318E4\nstatus: 0\ndate_sale: 2019-05-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-263\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 8e6b65b2-df22-4696-95a7-08d0555340ff 2019-05-08 00:14:06.787028 6626 616 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.37.251 8e6b65b2-df22-4696-95a7-08d0555340ff 2019-05-08 00:14:06.857635 6627 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 17 \N 189.186.37.251 8e6b65b2-df22-4696-95a7-08d0555340ff 2019-05-08 00:14:06.931845 6628 483 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 0711a64d-f9ed-475e-965c-16585ead7db0 2019-05-08 00:14:30.175539 6629 615 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 169\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1318E4\nmove_type: '1'\nsale_id: 483\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-263\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1318E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-263 189.186.37.251 0711a64d-f9ed-475e-965c-16585ead7db0 2019-05-08 00:14:30.210148 6630 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-07 20:43:27.231700000 Z\n- &1 2019-05-08 00:07:06.878208000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 00:21:16.075009342 Z\nsign_in_count:\n- 194\n- 195\n 390 \N 189.186.37.251 b71920c3-2e41-43d7-950a-a03b9a5bea0b 2019-05-08 00:21:16.081354 6631 3 User \N \N 3 User \N update ---\nunique_session_id:\n- TMy_3p4JJ7AUhmSMx-PH\n- 673gTiqyFa5rgxGv9uFJ\n 391 \N 189.186.37.251 b71920c3-2e41-43d7-950a-a03b9a5bea0b 2019-05-08 00:21:16.094527 6632 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-07 17:32:12.527744000 Z\n- &1 2019-05-07 22:54:01.109565000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 00:26:06.667217559 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946228\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938087\n mask_addr: 4294967295\nsign_in_count:\n- 178\n- 179\n 358 \N 200.68.150.39 d9a9055b-9d9d-40d8-8be5-7bbda1a636a8 2019-05-08 00:26:06.674763 6633 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sgMkQQzC3R4xuwcjwTRc\n- SZWE2g-o3LMFLDsHzisV\n 359 \N 200.68.150.39 d9a9055b-9d9d-40d8-8be5-7bbda1a636a8 2019-05-08 00:26:06.692216 6727 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 17:09:51.541562000 Z\n- &1 2019-05-08 17:30:59.401668000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 18:33:40.327540860 Z\nsign_in_count:\n- 203\n- 204\n 408 \N 189.186.37.251 11e64688-3e27-41ff-8a14-cf81c067c280 2019-05-08 18:33:40.3342 6634 484 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 169\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-05-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-264\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 44bd00c1-2a9a-4514-99c0-228c11ef5b3d 2019-05-08 00:31:41.15333 6635 616 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.37.251 44bd00c1-2a9a-4514-99c0-228c11ef5b3d 2019-05-08 00:31:41.178856 6636 484 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 80f6e449-b951-47f3-b5d6-e1c4047d0bf8 2019-05-08 00:36:40.480476 6637 616 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 169\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.569E3\nmove_type: '1'\nsale_id: 484\ncardnumber: 7754\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-264\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-264 189.186.37.251 80f6e449-b951-47f3-b5d6-e1c4047d0bf8 2019-05-08 00:36:40.50175 6638 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 00:07:06.878208000 Z\n- &1 2019-05-08 00:21:16.075009000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 00:37:52.707829623 Z\nsign_in_count:\n- 195\n- 196\n 392 \N 189.186.37.251 c9448eb9-aad5-4167-b23f-0eca34a300f3 2019-05-08 00:37:52.716212 6639 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 673gTiqyFa5rgxGv9uFJ\n- QgwzRUAdDcHowde2vXfD\n 393 \N 189.186.37.251 c9448eb9-aad5-4167-b23f-0eca34a300f3 2019-05-08 00:37:52.735066 6640 338 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.37.251 c49d9bbb-81d2-4558-ae44-f363c37ed402 2019-05-08 00:38:34.558178 6641 44 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-05-07\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.37.251 f8c32421-98f6-4fca-bb70-322e41d9a5cd 2019-05-08 00:38:46.299945 6642 44 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-05-07\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.37.251 8f0543ce-c277-4800-bbdc-3c035a1cb102 2019-05-08 00:39:36.807894 6643 630 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 340\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 8f0543ce-c277-4800-bbdc-3c035a1cb102 2019-05-08 00:39:36.83797 6644 485 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 169\namount: !ruby/object:BigDecimal 18:0.34397E3\ntax: !ruby/object:BigDecimal 18:0.5504E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.39901E3\nstatus: 0\ndate_sale: 2019-05-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-265\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 8fd24c70-2bc3-416e-988e-bf5dd6816340 2019-05-08 00:41:30.279133 6645 630 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.37.251 8fd24c70-2bc3-416e-988e-bf5dd6816340 2019-05-08 00:41:30.319318 6646 485 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 76967535-b1b0-4b02-8a8f-e19c44ea9cdb 2019-05-08 00:41:46.574196 6647 617 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 169\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.399E3\nmove_type: '1'\nsale_id: 485\ncardnumber: 7754\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-265\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-265 189.186.37.251 76967535-b1b0-4b02-8a8f-e19c44ea9cdb 2019-05-08 00:41:46.599146 6648 617 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 169\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 485\ncardnumber: 7754\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-265\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.37.251 04135ff7-7143-451d-84a3-c62ddfeebeec 2019-05-08 00:41:56.121048 6649 618 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 169\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.39901E3\nmove_type: '1'\nsale_id: 485\ncardnumber: 7754\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-265\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-265 189.186.37.251 69b04454-8c94-4e0a-b7e4-f2318486af46 2019-05-08 00:42:10.088157 6650 486 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 169\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-05-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-266\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 c9924fd8-0209-4405-9f46-de615062cc29 2019-05-08 00:50:08.251812 6651 137 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.37.251 c9924fd8-0209-4405-9f46-de615062cc29 2019-05-08 00:50:08.287365 6652 486 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 55d29536-3a33-481e-a1f7-4142cfc20c75 2019-05-08 00:50:52.872027 6653 619 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 169\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 486\ncardnumber: 2453\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-266\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-266 189.186.37.251 55d29536-3a33-481e-a1f7-4142cfc20c75 2019-05-08 00:50:52.89741 6654 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 00:21:16.075009000 Z\n- &1 2019-05-08 00:37:52.707829000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 00:57:44.798471042 Z\nsign_in_count:\n- 196\n- 197\n 394 \N 189.186.37.251 941d885a-e888-46fb-83fe-c9565fb23d8a 2019-05-08 00:57:44.804999 6655 3 User \N \N 3 User \N update ---\nunique_session_id:\n- QgwzRUAdDcHowde2vXfD\n- c-xdRG4uyvKqnzPQwv15\n 395 \N 189.186.37.251 941d885a-e888-46fb-83fe-c9565fb23d8a 2019-05-08 00:57:44.818616 6728 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ypsKJNcKNNLcHyZdce6B\n- sjjF5C19Z5ZmMFJCX_9r\n 409 \N 189.186.37.251 11e64688-3e27-41ff-8a14-cf81c067c280 2019-05-08 18:33:40.349356 6656 487 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 170\namount: !ruby/object:BigDecimal 18:0.1718E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1718E4\nstatus: 0\ndate_sale: 2019-05-07\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-219\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 023d2460-2b6b-4285-9493-fcaa1ae52f1d 2019-05-08 01:27:05.845678 6657 556 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 023d2460-2b6b-4285-9493-fcaa1ae52f1d 2019-05-08 01:27:05.961293 6658 497 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.37.251 023d2460-2b6b-4285-9493-fcaa1ae52f1d 2019-05-08 01:27:06.004522 6659 487 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 51bbd4f8-d711-40ec-971e-1b2c4f616212 2019-05-08 01:27:53.008645 6660 620 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 170\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1718E4\nmove_type: '1'\nsale_id: 487\ncardnumber: 7\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-219\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-219 189.186.37.251 51bbd4f8-d711-40ec-971e-1b2c4f616212 2019-05-08 01:27:53.044022 6661 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-07 20:42:33.395520000 Z\n- &1 2019-05-07 23:17:50.998704000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 01:35:44.220966408 Z\nsign_in_count:\n- 135\n- 136\n 272 \N 189.186.37.251 8fe0d713-af77-49a4-a32c-10439202e00b 2019-05-08 01:35:44.226831 6662 12 User \N \N 12 User \N update ---\nunique_session_id:\n- zmSkyPfeymsMsjHhHcqb\n- ez1XsMjgT-goyVNTVRV5\n 273 \N 189.186.37.251 8fe0d713-af77-49a4-a32c-10439202e00b 2019-05-08 01:35:44.240737 6663 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 00:37:52.707829000 Z\n- &1 2019-05-08 00:57:44.798471000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 01:44:22.666203919 Z\nsign_in_count:\n- 197\n- 198\n 396 \N 189.186.37.251 def4ef61-a097-456b-8415-9a400454828c 2019-05-08 01:44:22.672919 6664 3 User \N \N 3 User \N update ---\nunique_session_id:\n- c-xdRG4uyvKqnzPQwv15\n- ZEoSd3PsxkYKn8stNbvL\n 397 \N 189.186.37.251 def4ef61-a097-456b-8415-9a400454828c 2019-05-08 01:44:22.689649 6665 488 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 169\namount: !ruby/object:BigDecimal 18:0.829E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.829E3\nstatus: 0\ndate_sale: 2019-05-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-267\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 d5995474-7aab-4222-b1d4-e40fe157e201 2019-05-08 01:53:21.977736 6666 607 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 d5995474-7aab-4222-b1d4-e40fe157e201 2019-05-08 01:53:22.011211 6667 488 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 96b102b2-a2c2-445c-9205-ad23e3a7d02a 2019-05-08 01:53:30.097677 6668 621 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 169\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.829E3\nmove_type: '1'\nsale_id: 488\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-267\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.829E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-267 189.186.37.251 96b102b2-a2c2-445c-9205-ad23e3a7d02a 2019-05-08 01:53:30.127231 6669 167 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 170\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.197E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1155E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1155E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 3641dcff-ccc3-42b0-9488-71b6766ca6da 2019-05-08 01:54:51.27615 6670 170 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 3641dcff-ccc3-42b0-9488-71b6766ca6da 2019-05-08 01:54:51.293803 6671 168 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 169\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.7041E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.45E4\ncash_fund: !ruby/object:BigDecimal 18:0.1236E4\nphysical_cash: !ruby/object:BigDecimal 18:0.5736E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 e90f2652-d852-4447-9345-ef22645bc2e4 2019-05-08 01:58:05.956203 6672 169 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 e90f2652-d852-4447-9345-ef22645bc2e4 2019-05-08 01:58:05.977042 6673 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 00:57:44.798471000 Z\n- &1 2019-05-08 01:44:22.666203000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 16:19:25.972264061 Z\nsign_in_count:\n- 198\n- 199\n 398 \N 189.186.37.251 3df63838-7462-49ee-b354-bc33914b83ed 2019-05-08 16:19:26.001278 6674 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ZEoSd3PsxkYKn8stNbvL\n- V3fNvSHbm8EW2CFDznKb\n 399 \N 189.186.37.251 3df63838-7462-49ee-b354-bc33914b83ed 2019-05-08 16:19:26.022018 6675 171 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.1155E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1155.0 189.186.37.251 9580feb2-124f-4faf-8ada-36387c62e35f 2019-05-08 16:25:38.006581 6676 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-07 15:20:57.523433000 Z\n- &1 2019-05-07 22:41:33.665267000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 16:26:22.217752259 Z\nsign_in_count:\n- 100\n- 101\n 205 \N 189.186.37.251 5367c696-6343-459d-9b5f-c9c0c82c23b8 2019-05-08 16:26:22.223826 6677 2 User \N \N 2 User \N update ---\nunique_session_id:\n- torE9EF-ArC5aEua1PbR\n- BHqW4MnZdzy75xjdjjyz\n 206 \N 189.186.37.251 5367c696-6343-459d-9b5f-c9c0c82c23b8 2019-05-08 16:26:22.238882 6678 172 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1236E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1236.0 189.186.37.251 cfd22874-2601-4d92-8184-da0911a19076 2019-05-08 16:29:20.866975 6679 489 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 171\namount: !ruby/object:BigDecimal 18:0.5681E3\ntax: !ruby/object:BigDecimal 18:0.909E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.659E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-220\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 5e420166-7f69-4858-a669-1e7cd8e7602f 2019-05-08 16:52:21.086054 6680 433 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.37.251 5e420166-7f69-4858-a669-1e7cd8e7602f 2019-05-08 16:52:21.11791 6682 622 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.659E3\nmove_type: '1'\nsale_id: 489\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-220\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.341E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-220 189.186.37.251 f73c8be3-dd19-4af9-85e7-d4f2a6743506 2019-05-08 16:52:25.879322 6683 490 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 171\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-221\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 78fc9624-c235-40dd-99f8-af2aa5b89272 2019-05-08 16:58:11.174311 6684 593 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 2 \N 189.186.37.251 78fc9624-c235-40dd-99f8-af2aa5b89272 2019-05-08 16:58:11.2118 6685 490 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-221 cancelada. 189.186.37.251 743651ad-91f3-4b26-83d6-42e86a6292c5 2019-05-08 16:58:18.968956 6686 593 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.11E2\n 3 \N 189.186.37.251 743651ad-91f3-4b26-83d6-42e86a6292c5 2019-05-08 16:58:19.000752 6687 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-04-26 17:38:38.273228000 Z\n- &1 2019-05-04 20:54:23.251682000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 17:00:31.728507921 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094647\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 52\n- 53\n 106 \N 189.186.37.251 bf90a8fd-38ce-4a84-ba3a-f80432db3398 2019-05-08 17:00:31.742922 6688 9 User \N \N 9 User \N update ---\nunique_session_id:\n- Uko6uQMJ9jXuEASyV9bx\n- PCsAZzdBGk_JJMxzYZsV\n 107 \N 189.186.37.251 bf90a8fd-38ce-4a84-ba3a-f80432db3398 2019-05-08 17:00:31.768099 6689 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 01:44:22.666203000 Z\n- &1 2019-05-08 16:19:25.972264000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 17:00:42.865916521 Z\nsign_in_count:\n- 199\n- 200\n 400 \N 189.186.37.251 57599adb-5368-4fb4-8cff-fb9bd258611d 2019-05-08 17:00:42.87174 6690 3 User \N \N 3 User \N update ---\nunique_session_id:\n- V3fNvSHbm8EW2CFDznKb\n- dKUxbURs5RnretAaquBu\n 401 \N 189.186.37.251 57599adb-5368-4fb4-8cff-fb9bd258611d 2019-05-08 17:00:42.885768 6691 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 16:19:25.972264000 Z\n- &1 2019-05-08 17:00:42.865916000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 17:02:22.636131188 Z\nsign_in_count:\n- 200\n- 201\n 402 \N 189.186.37.251 e4740625-74ea-4438-80b5-951d4fece45b 2019-05-08 17:02:22.642273 6692 3 User \N \N 3 User \N update ---\nunique_session_id:\n- dKUxbURs5RnretAaquBu\n- NMvTTJLWE4xxc2YfrHzL\n 403 \N 189.186.37.251 e4740625-74ea-4438-80b5-951d4fece45b 2019-05-08 17:02:22.655824 6693 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-07 22:41:33.665267000 Z\n- &1 2019-05-08 16:26:22.217752000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 17:04:22.678522426 Z\nsign_in_count:\n- 101\n- 102\n 207 \N 189.186.37.251 b71aca16-eb57-4844-87cc-4e267ad26311 2019-05-08 17:04:22.686255 6694 2 User \N \N 2 User \N update ---\nunique_session_id:\n- BHqW4MnZdzy75xjdjjyz\n- 6sNE7RXV9zNqyDqFvJ26\n 208 \N 189.186.37.251 b71aca16-eb57-4844-87cc-4e267ad26311 2019-05-08 17:04:22.700457 6695 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 17:00:42.865916000 Z\n- &1 2019-05-08 17:02:22.636131000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 17:09:51.541562106 Z\nsign_in_count:\n- 201\n- 202\n 404 \N 189.186.37.251 b3a327aa-a5c8-4f20-8477-7dfefe607df5 2019-05-08 17:09:51.547298 6696 3 User \N \N 3 User \N update ---\nunique_session_id:\n- NMvTTJLWE4xxc2YfrHzL\n- KAy-zsxEFtTNn3YuJV6m\n 405 \N 189.186.37.251 b3a327aa-a5c8-4f20-8477-7dfefe607df5 2019-05-08 17:09:51.564148 6697 469 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.37.251 98af54c2-8ef0-44d5-a517-2a3f3eb8c7a9 2019-05-08 17:12:33.631724 6698 45 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-05-08\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.37.251 c54cfd29-fd03-4e3b-b0c8-a6712a582ca4 2019-05-08 17:12:36.268531 6699 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 20:54:23.251682000 Z\n- &1 2019-05-08 17:00:31.728507000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 17:12:54.220557171 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 53\n- 54\n 108 \N 189.186.37.251 6ec0cf06-a835-4bb9-80be-805aeb96d841 2019-05-08 17:12:54.228792 6700 9 User \N \N 9 User \N update ---\nunique_session_id:\n- PCsAZzdBGk_JJMxzYZsV\n- cb4Xj5k1dB5H4T8Xnzxr\n 109 \N 189.186.37.251 6ec0cf06-a835-4bb9-80be-805aeb96d841 2019-05-08 17:12:54.245338 6701 491 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 172\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-268\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 ffe6134a-6b11-4ea1-a6c7-74aa67ce7786 2019-05-08 17:13:10.639897 6702 609 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 ffe6134a-6b11-4ea1-a6c7-74aa67ce7786 2019-05-08 17:13:10.670997 6703 491 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 727d49a7-6c94-4f8b-a39e-3680fa9a53cf 2019-05-08 17:13:24.313466 6704 623 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.479E3\nmove_type: '1'\nsale_id: 491\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-268\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-268 189.186.37.251 727d49a7-6c94-4f8b-a39e-3680fa9a53cf 2019-05-08 17:13:24.334476 6705 45 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-05-08\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.37.251 6e5ef467-c91a-4d9a-8827-1a4a4feff22c 2019-05-08 17:14:03.917753 6706 571 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.37.251 6e5ef467-c91a-4d9a-8827-1a4a4feff22c 2019-05-08 17:14:03.941585 6707 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-07 22:54:01.109565000 Z\n- &1 2019-05-08 00:26:06.667217000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 17:18:31.258739058 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938087\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946235\n mask_addr: 4294967295\nsign_in_count:\n- 179\n- 180\n 360 \N 200.68.181.251 791e9e34-bd54-4de5-a5be-7d747afda596 2019-05-08 17:18:31.268321 6708 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SZWE2g-o3LMFLDsHzisV\n- R7uTEpPRrJsn-c6QW9YS\n 361 \N 200.68.181.251 791e9e34-bd54-4de5-a5be-7d747afda596 2019-05-08 17:18:31.288811 6709 624 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 479\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-260 189.186.37.251 77da7e56-521e-4842-a8dd-2cd1e06a5f6e 2019-05-08 17:28:36.609413 6710 479 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 a4d149dc-a0e7-4ad3-a9c4-6bfe55914af8 2019-05-08 17:28:37.685899 6711 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 17:02:22.636131000 Z\n- &1 2019-05-08 17:09:51.541562000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 17:30:59.401668110 Z\nsign_in_count:\n- 202\n- 203\n 406 \N 189.186.37.251 1f7a311a-5c64-402c-89b1-eaed1f267013 2019-05-08 17:30:59.409751 6712 3 User \N \N 3 User \N update ---\nunique_session_id:\n- KAy-zsxEFtTNn3YuJV6m\n- ypsKJNcKNNLcHyZdce6B\n 407 \N 189.186.37.251 1f7a311a-5c64-402c-89b1-eaed1f267013 2019-05-08 17:30:59.426892 6713 625 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 480\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.6E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-218 189.186.37.251 cde14291-46cc-4753-a5d2-093aa1b6b2a4 2019-05-08 17:31:33.774818 6714 626 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.587E3\nmove_type: '1'\nsale_id: 480\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.13E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-218 189.186.37.251 0de3cc0a-9c0f-43e3-bab6-d8660598f90f 2019-05-08 17:31:57.680111 6715 625 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 480\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.6E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.37.251 5b652c2e-d459-4273-918a-0fea5b1d4467 2019-05-08 17:32:04.369178 6716 626 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.587E3\nmove_type: '1'\nsale_id: 480\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.13E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.37.251 49ce137e-dcfa-4cfb-8f3f-33990223808a 2019-05-08 17:32:05.565139 6717 627 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.587E3\nmove_type: '1'\nsale_id: 480\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.13E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-218 189.186.37.251 d7abd309-cba6-4354-abfa-ea6a6ab31a9e 2019-05-08 17:32:21.795512 6718 480 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 51816bd5-5402-4047-b98a-ef53a60a75cf 2019-05-08 17:32:23.562977 6719 492 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 172\namount: !ruby/object:BigDecimal 18:0.86121E3\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-269\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 d72dd25b-8b11-4621-99b9-519439c813d5 2019-05-08 18:03:34.125042 6720 202 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 189.186.37.251 d72dd25b-8b11-4621-99b9-519439c813d5 2019-05-08 18:03:34.161779 6721 492 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 19bff3ca-8fc9-4ab3-9317-932f4ec94db5 2019-05-08 18:03:49.741874 6722 628 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 492\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-269\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-269 189.186.37.251 19bff3ca-8fc9-4ab3-9317-932f4ec94db5 2019-05-08 18:03:49.770188 6723 493 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 172\namount: !ruby/object:BigDecimal 18:0.41293E3\ntax: !ruby/object:BigDecimal 18:0.6607E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-270\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 a280c379-2019-40c8-9379-066e9061381f 2019-05-08 18:23:35.530575 6724 190 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 189.186.37.251 a280c379-2019-40c8-9379-066e9061381f 2019-05-08 18:23:35.566311 6725 493 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 b0f25acc-ee86-4f50-a8fc-4ea885c990f8 2019-05-08 18:23:42.513886 6726 629 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.479E3\nmove_type: '1'\nsale_id: 493\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-270\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.479E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-270 189.186.37.251 b0f25acc-ee86-4f50-a8fc-4ea885c990f8 2019-05-08 18:23:42.536993 6729 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-07 23:17:50.998704000 Z\n- &1 2019-05-08 01:35:44.220966000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 18:41:43.189653068 Z\nsign_in_count:\n- 136\n- 137\n 274 \N 189.186.37.251 753a5977-a6b3-4221-aec9-4b325434b6c2 2019-05-08 18:41:43.196322 6730 12 User \N \N 12 User \N update ---\nunique_session_id:\n- ez1XsMjgT-goyVNTVRV5\n- 1Ttz9XAexienr5AkST4c\n 275 \N 189.186.37.251 753a5977-a6b3-4221-aec9-4b325434b6c2 2019-05-08 18:41:43.212664 6731 494 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 172\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-271\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 478fba1d-bed5-4c49-8eea-b21df6d20507 2019-05-08 18:42:02.271831 6732 605 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 478fba1d-bed5-4c49-8eea-b21df6d20507 2019-05-08 18:42:02.314617 6733 494 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 55809170-7c5d-48d9-b1e9-63f29c1ab098 2019-05-08 18:42:05.695032 6734 630 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.479E3\nmove_type: '1'\nsale_id: 494\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-271\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-271 189.186.37.251 55809170-7c5d-48d9-b1e9-63f29c1ab098 2019-05-08 18:42:05.720785 6735 494 Sale \N \N 12 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-271 cancelada. 189.186.37.251 837e3110-a72f-465e-8993-594016ca8792 2019-05-08 18:43:59.642056 6736 630 CashRegistersMove \N \N 12 User \N destroy ---\nopen_cash_register_id: 172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.479E3\nmove_type: '1'\nsale_id: 494\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-271\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.37.251 837e3110-a72f-465e-8993-594016ca8792 2019-05-08 18:43:59.6685 6737 605 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.37.251 837e3110-a72f-465e-8993-594016ca8792 2019-05-08 18:43:59.698046 6738 495 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 172\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-272\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 ec35ac2d-6fab-4999-9579-b8515612def3 2019-05-08 18:44:36.683807 6739 605 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.37.251 ec35ac2d-6fab-4999-9579-b8515612def3 2019-05-08 18:44:36.725581 6740 495 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 c1f139c5-1cce-4ba9-9c03-006a76d51033 2019-05-08 18:44:41.902885 6741 631 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.479E3\nmove_type: '1'\nsale_id: 495\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-272\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-272 189.186.37.251 c1f139c5-1cce-4ba9-9c03-006a76d51033 2019-05-08 18:44:41.927436 6742 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 17:30:59.401668000 Z\n- &1 2019-05-08 18:33:40.327540000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 18:46:25.274528679 Z\nsign_in_count:\n- 204\n- 205\n 410 \N 189.186.37.251 544a5893-ad79-4410-8ade-8c3211fe71b4 2019-05-08 18:46:25.281761 6743 3 User \N \N 3 User \N update ---\nunique_session_id:\n- sjjF5C19Z5ZmMFJCX_9r\n- bStHpn8g_Y9qxT4q3v17\n 411 \N 189.186.37.251 544a5893-ad79-4410-8ade-8c3211fe71b4 2019-05-08 18:46:25.294495 6744 87 Customer \N \N 3 User \N create ---\nnick_name: NALLELY MURILLO\nphone: "(669) 116-2780"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente NALLELY MURILLO fue registrado. 189.186.37.251 85f30992-30fa-42bb-8f22-3a60fbd9b2c6 2019-05-08 18:48:26.69413 6745 496 Sale \N \N 3 User \N create ---\ncustomer_id: 87\nuser_id: 3\nopen_cash_register_id: 171\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 2\nseller_id: 9\nsale_code: PV2-V-222\nexpiration_date: 2019-06-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 c3afb345-b37e-401c-b907-eb2bc1d6aa1b 2019-05-08 18:49:05.138873 6746 593 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 4 \N 189.186.37.251 c3afb345-b37e-401c-b907-eb2bc1d6aa1b 2019-05-08 18:49:05.172658 6747 632 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.24E3\nmove_type: '1'\nsale_id: 496\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-222\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.26E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-222 189.186.37.251 95bbed8d-31d8-4562-acf0-e00e9cab3816 2019-05-08 18:49:11.023097 6748 632 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.24E3\nmove_type: '1'\nsale_id: 496\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-222\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.26E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.37.251 0b45d948-548c-491c-9645-8ec8b3ddd587 2019-05-08 18:49:13.135054 6749 633 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 496\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-222\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-222 189.186.37.251 1e30744b-df09-4739-9675-ee22095c0648 2019-05-08 18:49:37.295433 6750 496 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 1e169c31-3442-4eba-9ce6-402db90251e1 2019-05-08 18:49:39.769771 6751 497 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 172\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-273\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 8331da72-ed09-4b12-8ef3-6beef7663d0c 2019-05-08 18:54:31.176062 6752 615 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 8331da72-ed09-4b12-8ef3-6beef7663d0c 2019-05-08 18:54:31.206378 6753 497 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 0383fc30-67e1-4f56-9cf7-5a212f640ce2 2019-05-08 18:54:58.417856 6754 634 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 497\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-273\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-273 189.186.37.251 0383fc30-67e1-4f56-9cf7-5a212f640ce2 2019-05-08 18:54:58.4445 6755 498 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 172\namount: !ruby/object:BigDecimal 18:0.958E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.958E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-274\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 887f8908-48f2-4e54-82fb-9562aacd4f15 2019-05-08 19:04:41.024429 6756 609 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.37.251 887f8908-48f2-4e54-82fb-9562aacd4f15 2019-05-08 19:04:41.053604 6757 498 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 132fbfcd-7679-4bc6-becd-e1b6179ff2b8 2019-05-08 19:04:47.336472 6758 635 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 498\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-274\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-274 189.186.37.251 132fbfcd-7679-4bc6-becd-e1b6179ff2b8 2019-05-08 19:04:47.372321 6759 498 Sale \N \N 12 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-274 cancelada. 189.186.37.251 5005c3fe-9ed1-4625-a2b5-63a454c5fdb5 2019-05-08 19:05:09.637133 6760 635 CashRegistersMove \N \N 12 User \N destroy ---\nopen_cash_register_id: 172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 498\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-274\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.37.251 5005c3fe-9ed1-4625-a2b5-63a454c5fdb5 2019-05-08 19:05:09.65864 6761 609 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.37.251 5005c3fe-9ed1-4625-a2b5-63a454c5fdb5 2019-05-08 19:05:09.684269 6762 499 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 172\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-275\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 95282c6f-4108-40ef-85cd-782bbcc4cf49 2019-05-08 19:05:24.063115 6763 609 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.37.251 95282c6f-4108-40ef-85cd-782bbcc4cf49 2019-05-08 19:05:24.099496 6764 499 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 3458b669-43bc-4303-b540-b057bd565de4 2019-05-08 19:05:28.6977 6765 636 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.479E3\nmove_type: '1'\nsale_id: 499\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-275\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-275 189.186.37.251 3458b669-43bc-4303-b540-b057bd565de4 2019-05-08 19:05:28.721991 6766 500 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 172\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-276\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 51982ee3-3567-4851-8388-7758d7ed0e46 2019-05-08 19:15:10.062384 6767 156 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.37.251 51982ee3-3567-4851-8388-7758d7ed0e46 2019-05-08 19:15:10.089841 6768 500 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 45df5ea7-683f-40b1-9c13-d6131e30a5ae 2019-05-08 19:15:34.580212 6769 637 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 500\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-276\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-276 189.186.37.251 45df5ea7-683f-40b1-9c13-d6131e30a5ae 2019-05-08 19:15:34.603254 6770 501 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 171\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-223\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 954f3386-5235-4f99-9905-11856a5febb4 2019-05-08 20:07:54.092532 6771 321 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.37.251 954f3386-5235-4f99-9905-11856a5febb4 2019-05-08 20:07:54.127277 6772 501 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 1d73232a-83ae-4f5b-8eba-291f3505b159 2019-05-08 20:08:48.330909 6795 616 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.37.251 4e558066-4f48-4716-9ea9-710dab92ead6 2019-05-08 21:52:01.61504 6773 638 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 171\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 501\ncardnumber: 9287\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-223\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-223 189.186.37.251 1d73232a-83ae-4f5b-8eba-291f3505b159 2019-05-08 20:08:48.361177 6774 502 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 171\namount: !ruby/object:BigDecimal 18:0.50776E3\ntax: !ruby/object:BigDecimal 18:0.8124E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-224\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 5c4768be-555f-4552-ad3a-928d2013b6d6 2019-05-08 20:17:15.392903 6775 326 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.37.251 5c4768be-555f-4552-ad3a-928d2013b6d6 2019-05-08 20:17:15.422314 6776 502 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 4fad2094-b916-4ae7-b6d3-5eca77aacb08 2019-05-08 20:17:59.762864 6777 639 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 171\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.589E3\nmove_type: '1'\nsale_id: 502\ncardnumber: 9269\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-224\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-224 189.186.37.251 4fad2094-b916-4ae7-b6d3-5eca77aacb08 2019-05-08 20:17:59.785005 6778 503 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 171\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-225\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 5f420606-c52d-4e83-8d81-6c4b6d191fd6 2019-05-08 20:28:53.266519 6779 497 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.37.251 5f420606-c52d-4e83-8d81-6c4b6d191fd6 2019-05-08 20:28:53.297784 6780 503 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 285b5ed8-e5ca-4bea-8db4-52f6dce9441e 2019-05-08 20:29:31.002972 6781 640 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.869E3\nmove_type: '1'\nsale_id: 503\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-225\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-225 189.186.37.251 285b5ed8-e5ca-4bea-8db4-52f6dce9441e 2019-05-08 20:29:31.027684 6782 641 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 503\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-225\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.9E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-225 189.186.37.251 5c62574e-f3b2-4fbc-842a-b523085b03b0 2019-05-08 20:29:32.574418 6783 641 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 503\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-225\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.9E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.37.251 253cc15e-6f75-45c0-8b06-1758a6495e56 2019-05-08 20:29:35.305861 6784 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 01:35:44.220966000 Z\n- &1 2019-05-08 18:41:43.189653000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 20:38:19.665063680 Z\nsign_in_count:\n- 137\n- 138\n 276 \N 189.186.37.251 6e0705d9-cb87-4666-b1dc-57e0970f78a9 2019-05-08 20:38:19.671704 6785 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 1Ttz9XAexienr5AkST4c\n- uqBfTjxYXJTr1h6NwohK\n 277 \N 189.186.37.251 6e0705d9-cb87-4666-b1dc-57e0970f78a9 2019-05-08 20:38:19.686815 6786 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 18:33:40.327540000 Z\n- &1 2019-05-08 18:46:25.274528000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 20:40:52.671275244 Z\nsign_in_count:\n- 205\n- 206\n 412 \N 189.186.37.251 6b7c9182-a98e-445f-81a8-469cdfbe9033 2019-05-08 20:40:52.6793 6787 3 User \N \N 3 User \N update ---\nunique_session_id:\n- bStHpn8g_Y9qxT4q3v17\n- LJ8Q_b5un7XAw2qyCeEU\n 413 \N 189.186.37.251 6b7c9182-a98e-445f-81a8-469cdfbe9033 2019-05-08 20:40:52.698114 6788 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 16:26:22.217752000 Z\n- &1 2019-05-08 17:04:22.678522000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 20:53:34.442073975 Z\nsign_in_count:\n- 102\n- 103\n 209 \N 189.186.37.251 b7d6fa15-964b-48f6-9e1d-ac4e2b354c3e 2019-05-08 20:53:34.447656 6789 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 6sNE7RXV9zNqyDqFvJ26\n- uP87Jsa1YsdKw4-eZ7a1\n 210 \N 189.186.37.251 b7d6fa15-964b-48f6-9e1d-ac4e2b354c3e 2019-05-08 20:53:34.459877 6790 642 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.349E3\nmove_type: '1'\nsale_id: 455\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.349E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-247 189.186.37.251 43e89dad-59cc-4f89-a7a9-3e86670bbd05 2019-05-08 20:54:08.236211 6791 455 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 21afc313-3e80-4f5c-a452-9a8a6143e811 2019-05-08 20:54:09.702751 6792 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 17:04:22.678522000 Z\n- &1 2019-05-08 20:53:34.442073000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 21:51:16.761550723 Z\nsign_in_count:\n- 103\n- 104\n 211 \N 189.186.37.251 f9f70f8a-1acc-460e-abda-58cfeff999a4 2019-05-08 21:51:16.768129 6793 2 User \N \N 2 User \N update ---\nunique_session_id:\n- uP87Jsa1YsdKw4-eZ7a1\n- ffCP6Lk4PrHsENXM7mu8\n 212 \N 189.186.37.251 f9f70f8a-1acc-460e-abda-58cfeff999a4 2019-05-08 21:51:16.7809 6794 504 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 172\namount: !ruby/object:BigDecimal 18:0.121469E4\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1318E4\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-277\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 4e558066-4f48-4716-9ea9-710dab92ead6 2019-05-08 21:52:01.586771 6798 643 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1318E4\nmove_type: '1'\nsale_id: 504\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-277\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1318E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-277 189.186.37.251 7b7c1874-a545-42cf-af0c-2ba67d35b86a 2019-05-08 21:52:14.824892 6799 505 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 171\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-226\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 ef75cb75-a2d9-40e7-9a94-681205fa2108 2019-05-08 21:52:46.559015 6800 622 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.37.251 ef75cb75-a2d9-40e7-9a94-681205fa2108 2019-05-08 21:52:46.58705 6801 505 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 9a849edc-db6b-4ed3-bc61-038ef5237bc2 2019-05-08 21:53:11.273926 6802 644 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.569E3\nmove_type: '1'\nsale_id: 505\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-226\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-226 189.186.37.251 9a849edc-db6b-4ed3-bc61-038ef5237bc2 2019-05-08 21:53:11.297064 6803 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 18:41:43.189653000 Z\n- &1 2019-05-08 20:38:19.665063000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 21:56:36.468539489 Z\nsign_in_count:\n- 138\n- 139\n 278 \N 189.186.37.251 604d425e-f1cd-4c0f-a407-84b3b960cf4b 2019-05-08 21:56:36.475587 6804 12 User \N \N 12 User \N update ---\nunique_session_id:\n- uqBfTjxYXJTr1h6NwohK\n- TDz4JrkXKMLZjHti29hr\n 279 \N 189.186.37.251 604d425e-f1cd-4c0f-a407-84b3b960cf4b 2019-05-08 21:56:36.490036 6805 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 18:46:25.274528000 Z\n- &1 2019-05-08 20:40:52.671275000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 21:59:20.450545458 Z\nsign_in_count:\n- 206\n- 207\n 414 \N 189.186.37.251 739bf60c-8d39-4f60-8b40-c011c8cbc2da 2019-05-08 21:59:20.456022 6806 3 User \N \N 3 User \N update ---\nunique_session_id:\n- LJ8Q_b5un7XAw2qyCeEU\n- PbyTm9yuzid4-FkiJ_uw\n 415 \N 189.186.37.251 739bf60c-8d39-4f60-8b40-c011c8cbc2da 2019-05-08 21:59:20.468134 6807 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 20:38:19.665063000 Z\n- &1 2019-05-08 21:56:36.468539000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 22:01:41.333691784 Z\nsign_in_count:\n- 139\n- 140\n 280 \N 189.186.37.251 30771b32-454d-41c9-af54-0df09c83b71b 2019-05-08 22:01:41.339989 6808 12 User \N \N 12 User \N update ---\nunique_session_id:\n- TDz4JrkXKMLZjHti29hr\n- NFBCt1BubDitM7y-bhqh\n 281 \N 189.186.37.251 30771b32-454d-41c9-af54-0df09c83b71b 2019-05-08 22:01:41.35549 6809 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 17:00:31.728507000 Z\n- &1 2019-05-08 17:12:54.220557000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 22:02:37.795987943 Z\nsign_in_count:\n- 54\n- 55\n 110 \N 189.186.37.251 fd10d11f-81e0-4295-8612-1c0c91f7685e 2019-05-08 22:02:37.804426 6810 9 User \N \N 9 User \N update ---\nunique_session_id:\n- cb4Xj5k1dB5H4T8Xnzxr\n- ormAdXss8-iLBHy_xm6v\n 111 \N 189.186.37.251 fd10d11f-81e0-4295-8612-1c0c91f7685e 2019-05-08 22:02:37.821831 6811 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 20:40:52.671275000 Z\n- &1 2019-05-08 21:59:20.450545000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 22:03:56.391013007 Z\nsign_in_count:\n- 207\n- 208\n 416 \N 189.186.37.251 c5160723-c0e5-4f99-8b2a-1e4db01974c6 2019-05-08 22:03:56.396648 6812 3 User \N \N 3 User \N update ---\nunique_session_id:\n- PbyTm9yuzid4-FkiJ_uw\n- URshZWXssYE65gxh78e7\n 417 \N 189.186.37.251 c5160723-c0e5-4f99-8b2a-1e4db01974c6 2019-05-08 22:03:56.409931 6813 506 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 172\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-278\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 4b851ac8-d1ae-43ba-aa76-3f6a93b815b3 2019-05-08 22:25:00.929914 6814 534 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.251 4b851ac8-d1ae-43ba-aa76-3f6a93b815b3 2019-05-08 22:25:00.960873 6815 506 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 30cdb53c-16f4-45b2-9316-9cffaec53b76 2019-05-08 22:25:10.935799 6816 645 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.479E3\nmove_type: '1'\nsale_id: 506\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-278\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.479E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-278 189.186.37.251 30cdb53c-16f4-45b2-9316-9cffaec53b76 2019-05-08 22:25:10.958499 6817 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 21:59:20.450545000 Z\n- &1 2019-05-08 22:03:56.391013000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 22:27:29.667632889 Z\nsign_in_count:\n- 208\n- 209\n 418 \N 189.186.37.251 ca2f1aee-6df1-4796-8dca-f869f30f60d8 2019-05-08 22:27:29.675547 6818 3 User \N \N 3 User \N update ---\nunique_session_id:\n- URshZWXssYE65gxh78e7\n- 5tFmcVAwBVF-uEStM12F\n 419 \N 189.186.37.251 ca2f1aee-6df1-4796-8dca-f869f30f60d8 2019-05-08 22:27:29.694157 6819 507 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 171\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-227\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 4ca8b342-078a-4f72-8463-22bf95da2f4e 2019-05-08 22:27:52.36186 6820 485 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.37.251 4ca8b342-078a-4f72-8463-22bf95da2f4e 2019-05-08 22:27:52.392158 6821 507 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 e8b78c9a-5918-4330-8bc5-a7ed35673c60 2019-05-08 22:28:18.545718 6843 58 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 3 \N 189.186.37.251 2fd3e260-7171-4e58-98e6-25e94dc890da 2019-05-08 23:43:00.722284 6844 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 19 \N 189.186.37.251 2fd3e260-7171-4e58-98e6-25e94dc890da 2019-05-08 23:43:00.757412 6822 646 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 507\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-227\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-227 189.186.37.251 e8b78c9a-5918-4330-8bc5-a7ed35673c60 2019-05-08 22:28:18.579839 6823 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 21:56:36.468539000 Z\n- &1 2019-05-08 22:01:41.333691000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 23:08:46.642846781 Z\nsign_in_count:\n- 140\n- 141\n 282 \N 189.186.37.251 f2b7f8c1-ea13-4bcd-886d-5d1a98ba6f3d 2019-05-08 23:08:46.691164 6824 12 User \N \N 12 User \N update ---\nunique_session_id:\n- NFBCt1BubDitM7y-bhqh\n- a9c4Md6pT19mg3M9z2HA\n 283 \N 189.186.37.251 f2b7f8c1-ea13-4bcd-886d-5d1a98ba6f3d 2019-05-08 23:08:46.731489 6825 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 22:03:56.391013000 Z\n- &1 2019-05-08 22:27:29.667632000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 23:09:44.349314152 Z\nsign_in_count:\n- 209\n- 210\n 420 \N 189.186.37.251 146051d1-7936-47f0-bde4-74fe4d63305c 2019-05-08 23:09:44.356615 6826 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 5tFmcVAwBVF-uEStM12F\n- CiC_GCHxqEbUrpiJcEZ8\n 421 \N 189.186.37.251 146051d1-7936-47f0-bde4-74fe4d63305c 2019-05-08 23:09:44.380081 6827 508 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 172\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-279\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 d112f16f-007f-4b4f-99d5-05175962024f 2019-05-08 23:21:46.819189 6828 218 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.37.251 d112f16f-007f-4b4f-99d5-05175962024f 2019-05-08 23:21:46.859765 6829 508 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 7f59614b-2dbf-4502-b540-44a233e970b6 2019-05-08 23:21:51.044803 6830 647 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 508\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-279\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-279 189.186.37.251 7f59614b-2dbf-4502-b540-44a233e970b6 2019-05-08 23:21:51.070433 6831 509 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 171\namount: !ruby/object:BigDecimal 18:0.72328E3\ntax: !ruby/object:BigDecimal 18:0.11572E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.839E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-228\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 243ded79-9974-47fc-8c49-d2867eba3f35 2019-05-08 23:36:53.193285 6832 418 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.37.251 243ded79-9974-47fc-8c49-d2867eba3f35 2019-05-08 23:36:53.230682 6833 509 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 8b6ae856-0f33-4df2-9b2f-6ddbc94e321f 2019-05-08 23:36:56.995169 6834 648 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.839E3\nmove_type: '1'\nsale_id: 509\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-228\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.85E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-228 189.186.37.251 8b6ae856-0f33-4df2-9b2f-6ddbc94e321f 2019-05-08 23:36:57.018579 6835 88 Customer \N \N 3 User \N create ---\nnick_name: PERLA ZAZUETA\nphone: "(667) 730-7988"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente PERLA ZAZUETA fue registrado. 189.186.37.251 8ea0246a-3fda-4312-8ea0-92969a889b95 2019-05-08 23:38:26.851531 6836 510 Sale \N \N 3 User \N create ---\ncustomer_id: 88\nuser_id: 3\nopen_cash_register_id: 171\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-229\nexpiration_date: 2019-06-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 f32ab56e-125f-478d-9096-38684f07e953 2019-05-08 23:38:38.173136 6837 435 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.37.251 f32ab56e-125f-478d-9096-38684f07e953 2019-05-08 23:38:38.21274 6838 649 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 510\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-229\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-229 189.186.37.251 d0ae8741-6f6d-44fc-acf8-7ec0c7e5909f 2019-05-08 23:38:48.7842 6839 510 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 c67ce1f5-d8fa-4b0f-a7a0-4ef5bf433e56 2019-05-08 23:38:56.62589 6840 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 00:26:06.667217000 Z\n- &1 2019-05-08 17:18:31.258739000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 23:41:24.152798367 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938087\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946235\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946235\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938103\n mask_addr: 4294967295\nsign_in_count:\n- 180\n- 181\n 362 \N 200.68.150.55 861b8dc3-b294-4ba7-a3ad-5fae4870af62 2019-05-08 23:41:24.162796 6841 4 User \N \N 4 User \N update ---\nunique_session_id:\n- R7uTEpPRrJsn-c6QW9YS\n- xoEMnx17L_-HfNpsSyJ7\n 363 \N 200.68.150.55 861b8dc3-b294-4ba7-a3ad-5fae4870af62 2019-05-08 23:41:24.184394 6842 511 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 172\namount: !ruby/object:BigDecimal 18:0.124828E4\ntax: !ruby/object:BigDecimal 18:0.19972E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1448E4\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-280\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 2fd3e260-7171-4e58-98e6-25e94dc890da 2019-05-08 23:43:00.682071 6845 511 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 8509eaa3-8b84-4c1d-a434-35632d45f009 2019-05-08 23:44:19.595704 6846 650 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1448E4\nmove_type: '1'\nsale_id: 511\ncardnumber: 4244\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-280\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-280 189.186.37.251 8509eaa3-8b84-4c1d-a434-35632d45f009 2019-05-08 23:44:19.624166 6847 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 22:01:41.333691000 Z\n- &1 2019-05-08 23:08:46.642846000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 23:45:25.531433572 Z\nsign_in_count:\n- 141\n- 142\n 284 \N 189.186.37.251 f9a53c5e-37b4-4eba-92df-0c96274dd88a 2019-05-08 23:45:25.539671 6848 12 User \N \N 12 User \N update ---\nunique_session_id:\n- a9c4Md6pT19mg3M9z2HA\n- wPKqsbtUr_f7wYsPw7xy\n 285 \N 189.186.37.251 f9a53c5e-37b4-4eba-92df-0c96274dd88a 2019-05-08 23:45:25.558938 6849 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 22:27:29.667632000 Z\n- &1 2019-05-08 23:09:44.349314000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 23:46:36.104248894 Z\nsign_in_count:\n- 210\n- 211\n 422 \N 189.186.37.251 012c6bc0-660b-4932-b5f4-47a983ff5ad1 2019-05-08 23:46:36.110032 6850 3 User \N \N 3 User \N update ---\nunique_session_id:\n- CiC_GCHxqEbUrpiJcEZ8\n- YrCCWZBiTb5i1sCsYbiF\n 423 \N 189.186.37.251 012c6bc0-660b-4932-b5f4-47a983ff5ad1 2019-05-08 23:46:36.122212 6851 512 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 172\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-281\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 45db8c24-2c87-497f-855e-2dc118b0fb6d 2019-05-08 23:48:00.441508 6852 609 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.37.251 45db8c24-2c87-497f-855e-2dc118b0fb6d 2019-05-08 23:48:00.481692 6853 512 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 e28b1d4f-d33c-4740-8a06-b4fa0d6b9a84 2019-05-08 23:48:50.129101 6854 651 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.479E3\nmove_type: '1'\nsale_id: 512\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-281\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.479E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-281 189.186.37.251 e28b1d4f-d33c-4740-8a06-b4fa0d6b9a84 2019-05-08 23:48:50.162716 6855 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 23:08:46.642846000 Z\n- &1 2019-05-08 23:45:25.531433000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 23:48:50.772655894 Z\nsign_in_count:\n- 142\n- 143\n 286 \N 189.186.37.251 b84c815e-744a-4e9a-a5d7-2a6344908585 2019-05-08 23:48:50.780483 6856 12 User \N \N 12 User \N update ---\nunique_session_id:\n- wPKqsbtUr_f7wYsPw7xy\n- f83aap-FBCxy_uoeVHwx\n 287 \N 189.186.37.251 b84c815e-744a-4e9a-a5d7-2a6344908585 2019-05-08 23:48:50.797891 6857 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 23:09:44.349314000 Z\n- &1 2019-05-08 23:46:36.104248000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-08 23:55:12.790679419 Z\nsign_in_count:\n- 211\n- 212\n 424 \N 189.186.37.251 f1244856-84aa-4075-b47d-2d6023f535dc 2019-05-08 23:55:12.796985 6858 3 User \N \N 3 User \N update ---\nunique_session_id:\n- YrCCWZBiTb5i1sCsYbiF\n- icVrH1PeaaNpaVsPvmxh\n 425 \N 189.186.37.251 f1244856-84aa-4075-b47d-2d6023f535dc 2019-05-08 23:55:12.81577 6859 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 23:45:25.531433000 Z\n- &1 2019-05-08 23:48:50.772655000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-09 00:01:04.324777673 Z\nsign_in_count:\n- 143\n- 144\n 288 \N 189.186.37.251 54eb2cba-c815-414e-8f24-b462f032bc44 2019-05-09 00:01:04.33144 6860 12 User \N \N 12 User \N update ---\nunique_session_id:\n- f83aap-FBCxy_uoeVHwx\n- WygLx8z4MNSrxh3QtVH8\n 289 \N 189.186.37.251 54eb2cba-c815-414e-8f24-b462f032bc44 2019-05-09 00:01:04.346991 6861 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 23:46:36.104248000 Z\n- &1 2019-05-08 23:55:12.790679000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-09 00:04:14.813832996 Z\nsign_in_count:\n- 212\n- 213\n 426 \N 189.186.37.251 eea09f99-ae91-4f83-8a77-a7781df4f38b 2019-05-09 00:04:14.823113 6862 3 User \N \N 3 User \N update ---\nunique_session_id:\n- icVrH1PeaaNpaVsPvmxh\n- hcpYDyv5z7shCY-7oxV8\n 427 \N 189.186.37.251 eea09f99-ae91-4f83-8a77-a7781df4f38b 2019-05-09 00:04:14.838327 6863 513 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 172\namount: !ruby/object:BigDecimal 18:0.74914E3\ntax: !ruby/object:BigDecimal 18:0.11986E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-282\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 4396b83b-6d06-4687-bce9-9949bfcfbc25 2019-05-09 00:44:21.276102 6864 182 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.37.251 4396b83b-6d06-4687-bce9-9949bfcfbc25 2019-05-09 00:44:21.307838 6865 513 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 b0f3702f-edb4-4a42-8082-fb96983a340e 2019-05-09 00:44:37.946865 6866 652 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.869E3\nmove_type: '1'\nsale_id: 513\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-282\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.131E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-282 189.186.37.251 b0f3702f-edb4-4a42-8082-fb96983a340e 2019-05-09 00:44:37.976981 6867 653 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 510\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.4E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-229 189.186.37.251 0a25637b-1871-47b6-99a7-f4b4555d459b 2019-05-09 00:53:07.374862 6868 653 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 510\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.4E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.37.251 0ef61a31-0cc7-45aa-b5cb-76b5b889508f 2019-05-09 00:53:10.749253 6915 247 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.37.251 c06dbf72-9a38-4139-a81a-76e1a8276828 2019-05-09 02:05:04.253696 6869 654 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 510\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-229 189.186.37.251 3294277a-e872-4060-8e30-76857b2f48e5 2019-05-09 00:53:18.694151 6870 510 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 de79b216-c9dc-43de-96c8-42f8eca64832 2019-05-09 00:53:19.702613 6871 514 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 172\namount: !ruby/object:BigDecimal 18:0.145848E4\ntax: !ruby/object:BigDecimal 18:0.8952E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1548E4\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-283\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 8a17abcc-fcf7-408a-9c2f-68135e32867d 2019-05-09 00:58:41.634197 6872 542 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.37.251 8a17abcc-fcf7-408a-9c2f-68135e32867d 2019-05-09 00:58:41.665885 6873 138 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 20 \N 189.186.37.251 8a17abcc-fcf7-408a-9c2f-68135e32867d 2019-05-09 00:58:41.706205 6874 514 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 e92ecbd2-5cfb-4488-87ed-52f52995f1dc 2019-05-09 01:01:22.227675 6875 655 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1548E4\nmove_type: '1'\nsale_id: 514\ncardnumber: 14\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-283\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-283 189.186.37.251 e92ecbd2-5cfb-4488-87ed-52f52995f1dc 2019-05-09 01:01:22.265511 6876 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 17:18:31.258739000 Z\n- &1 2019-05-08 23:41:24.152798000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-09 01:06:44.838092766 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946235\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938103\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938103\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 181\n- 182\n 364 \N 189.186.50.198 f9badf3e-aa40-4504-9379-fc61c82a6a40 2019-05-09 01:06:44.849767 6877 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xoEMnx17L_-HfNpsSyJ7\n- vER5pZK3tytyjNWV-5JW\n 365 \N 189.186.50.198 f9badf3e-aa40-4504-9379-fc61c82a6a40 2019-05-09 01:06:44.872079 6878 515 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 172\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-284\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 a11ce89d-8c79-48c1-840f-300f8bb14ffa 2019-05-09 01:08:01.729394 6879 627 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.37.251 a11ce89d-8c79-48c1-840f-300f8bb14ffa 2019-05-09 01:08:01.763735 6880 515 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 fbb0bb76-c42d-4675-bcdf-4ac86533cc6f 2019-05-09 01:08:06.332026 6881 656 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 515\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-284\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-284 189.186.37.251 fbb0bb76-c42d-4675-bcdf-4ac86533cc6f 2019-05-09 01:08:06.356534 6882 516 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 172\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-285\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 b97fe3a3-854b-4dc1-8d92-929adc364121 2019-05-09 01:22:05.599443 6883 454 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.37.251 b97fe3a3-854b-4dc1-8d92-929adc364121 2019-05-09 01:22:05.635801 6884 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 23:48:50.772655000 Z\n- &1 2019-05-09 00:01:04.324777000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-09 01:23:00.701556847 Z\nsign_in_count:\n- 144\n- 145\n 290 \N 189.186.37.251 fd2f3506-7ebf-4f33-ac00-4490890a9102 2019-05-09 01:23:00.709727 6885 12 User \N \N 12 User \N update ---\nunique_session_id:\n- WygLx8z4MNSrxh3QtVH8\n- Q58sCRdk6wSx_-fc3Vzi\n 291 \N 189.186.37.251 fd2f3506-7ebf-4f33-ac00-4490890a9102 2019-05-09 01:23:00.723365 6886 516 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 7da16fa9-a5d1-4281-bafb-e41abb51b659 2019-05-09 01:23:15.330984 6887 657 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 516\ncardnumber: 249\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-285\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-285 189.186.37.251 7da16fa9-a5d1-4281-bafb-e41abb51b659 2019-05-09 01:23:15.364334 6888 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 23:55:12.790679000 Z\n- &1 2019-05-09 00:04:14.813832000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-09 01:28:25.491239565 Z\nsign_in_count:\n- 213\n- 214\n 428 \N 189.186.37.251 c675076b-c713-408f-915b-d66b6d5d8544 2019-05-09 01:28:25.500264 6889 3 User \N \N 3 User \N update ---\nunique_session_id:\n- hcpYDyv5z7shCY-7oxV8\n- GofJhsbxiiYY7zrB31es\n 429 \N 189.186.37.251 c675076b-c713-408f-915b-d66b6d5d8544 2019-05-09 01:28:25.517699 6890 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-09 00:04:14.813832000 Z\n- &1 2019-05-09 01:28:25.491239000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-09 01:28:54.952966158 Z\nsign_in_count:\n- 214\n- 215\n 430 \N 189.186.37.251 531030aa-cd8b-4ebf-8ab9-e0ed29d7d59f 2019-05-09 01:28:54.959096 6891 3 User \N \N 3 User \N update ---\nunique_session_id:\n- GofJhsbxiiYY7zrB31es\n- fi1kh5KsJ48zs3ZqTstH\n 431 \N 189.186.37.251 531030aa-cd8b-4ebf-8ab9-e0ed29d7d59f 2019-05-09 01:28:54.976413 6916 519 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 4d36b0a6-bbf6-4d5c-816e-d41cdb7f3514 2019-05-09 02:05:10.989057 6892 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-09 00:01:04.324777000 Z\n- &1 2019-05-09 01:23:00.701556000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-09 01:31:07.515368830 Z\nsign_in_count:\n- 145\n- 146\n 292 \N 189.186.37.251 e52bb8be-c80d-4d94-978b-f24028caa4c9 2019-05-09 01:31:07.522862 6893 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Q58sCRdk6wSx_-fc3Vzi\n- DgGDAizkzoHfY5d4pksu\n 293 \N 189.186.37.251 e52bb8be-c80d-4d94-978b-f24028caa4c9 2019-05-09 01:31:07.537628 6894 59 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 172\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida\nexpense_date: 2019-05-08\nexpense_code: PV1-E-53\n 1 Egreso por 50.0 registrado 189.186.37.251 8591880c-9d38-4c98-9fed-0462bcb57716 2019-05-09 01:31:48.098045 6895 658 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 59\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 8591880c-9d38-4c98-9fed-0462bcb57716 2019-05-09 01:31:48.121223 6896 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-09 01:28:25.491239000 Z\n- &1 2019-05-09 01:28:54.952966000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-09 01:34:49.894882489 Z\nsign_in_count:\n- 215\n- 216\n 432 \N 189.186.37.251 f116fc70-fb75-4afd-b1a1-0bfbb62f9e16 2019-05-09 01:34:49.90379 6897 3 User \N \N 3 User \N update ---\nunique_session_id:\n- fi1kh5KsJ48zs3ZqTstH\n- wn6Hhxr9GPgWrZ1NZoLd\n 433 \N 189.186.37.251 f116fc70-fb75-4afd-b1a1-0bfbb62f9e16 2019-05-09 01:34:49.92315 6898 517 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 171\namount: !ruby/object:BigDecimal 18:0.979E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.979E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-230\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 830c4130-e700-4d43-9dec-c383c15a1e7c 2019-05-09 01:35:11.868179 6899 621 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.37.251 830c4130-e700-4d43-9dec-c383c15a1e7c 2019-05-09 01:35:11.90535 6900 517 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 60c288d2-fd35-414d-8874-a1c3f6162762 2019-05-09 01:36:07.58444 6901 659 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.979E3\nmove_type: '1'\nsale_id: 517\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-230\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-230 189.186.37.251 60c288d2-fd35-414d-8874-a1c3f6162762 2019-05-09 01:36:07.618361 6902 518 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 171\namount: !ruby/object:BigDecimal 18:0.102917E4\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1098E4\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-231\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 fdc29da4-d1dd-406e-af9a-2a11a3f15154 2019-05-09 01:43:45.605141 6903 378 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.37.251 fdc29da4-d1dd-406e-af9a-2a11a3f15154 2019-05-09 01:43:45.647764 6904 573 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 fdc29da4-d1dd-406e-af9a-2a11a3f15154 2019-05-09 01:43:45.675692 6905 518 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 71485939-40b4-4d55-9674-8ccdfb8fd489 2019-05-09 01:44:31.3618 6906 660 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1098E4\nmove_type: '1'\nsale_id: 518\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-231\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-231 189.186.37.251 71485939-40b4-4d55-9674-8ccdfb8fd489 2019-05-09 01:44:31.393945 6907 169 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 171\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.8656E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.78E4\ncash_fund: !ruby/object:BigDecimal 18:0.953E3\nphysical_cash: !ruby/object:BigDecimal 18:0.8753E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 f20b5379-7917-4f4b-aa21-30d85882d913 2019-05-09 01:54:29.506659 6908 171 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 f20b5379-7917-4f4b-aa21-30d85882d913 2019-05-09 01:54:29.523161 6909 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 23:41:24.152798000 Z\n- &1 2019-05-09 01:06:44.838092000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-09 02:00:42.734264529 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938103\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 182\n- 183\n 366 \N 189.186.50.198 1797d869-e969-4b54-abf3-bffb22a6cabb 2019-05-09 02:00:42.742693 6910 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vER5pZK3tytyjNWV-5JW\n- c4A2eoFofTWEbSM_X3nn\n 367 \N 189.186.50.198 1797d869-e969-4b54-abf3-bffb22a6cabb 2019-05-09 02:00:42.760115 6911 170 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 172\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.15099E5\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.109E5\ncash_fund: !ruby/object:BigDecimal 18:0.79E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1169E5\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 1906e4b6-139d-40f4-b749-71f433a07fa9 2019-05-09 02:00:53.265779 6912 172 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 1906e4b6-139d-40f4-b749-71f433a07fa9 2019-05-09 02:00:53.284274 6913 173 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.79E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 790.0 189.186.37.251 ab48c4f7-0a95-4d17-85b5-f562d85213a6 2019-05-09 02:04:39.664341 6914 519 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 173\namount: !ruby/object:BigDecimal 18:0.50776E3\ntax: !ruby/object:BigDecimal 18:0.8124E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2019-05-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-286\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 c06dbf72-9a38-4139-a81a-76e1a8276828 2019-05-09 02:05:04.217964 6917 661 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 173\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.589E3\nmove_type: '1'\nsale_id: 519\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-286\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.589E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-286 189.186.37.251 4d36b0a6-bbf6-4d5c-816e-d41cdb7f3514 2019-05-09 02:05:11.019468 6918 171 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 173\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.589E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.879E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1379E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 78600a2e-5409-4cfd-a53d-adc23035e058 2019-05-09 02:07:10.029231 6919 173 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 78600a2e-5409-4cfd-a53d-adc23035e058 2019-05-09 02:07:10.046937 6920 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 20:53:34.442073000 Z\n- &1 2019-05-08 21:51:16.761550000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-09 15:38:05.705975106 Z\nsign_in_count:\n- 104\n- 105\n 213 \N 189.186.37.251 1050e2a1-63c2-4f66-bb0d-0a439ae68cda 2019-05-09 15:38:05.752749 6921 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ffCP6Lk4PrHsENXM7mu8\n- t8xf8wNz5CgnswHtDPzk\n 214 \N 189.186.37.251 1050e2a1-63c2-4f66-bb0d-0a439ae68cda 2019-05-09 15:38:05.78906 6922 174 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.879E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 879.0 189.186.37.251 1d6f34dc-960b-4c13-8d64-0b4878e913cc 2019-05-09 15:38:31.100085 6923 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-09 01:28:54.952966000 Z\n- &1 2019-05-09 01:34:49.894882000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-09 15:59:38.136027664 Z\nsign_in_count:\n- 216\n- 217\n 434 \N 189.186.37.251 59268362-b33e-4a7c-8724-781a46647f1a 2019-05-09 15:59:38.145208 6924 3 User \N \N 3 User \N update ---\nunique_session_id:\n- wn6Hhxr9GPgWrZ1NZoLd\n- vm8hVQcAFsH6cNsDu4Kg\n 435 \N 189.186.37.251 59268362-b33e-4a7c-8724-781a46647f1a 2019-05-09 15:59:38.165331 6925 175 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.953E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 953.0 189.186.37.251 05d6b05f-208b-48ea-b065-f8cb010dbca5 2019-05-09 16:00:23.64713 6926 662 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 174\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.37E3\nmove_type: '1'\nsale_id: 468\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.37E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-254 189.186.37.251 399783f9-36bf-4167-bf43-4ad380dc4071 2019-05-09 16:08:08.412876 6927 60 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 174\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida\nexpense_date: 2019-05-09\nexpense_code: PV1-E-54\n 1 Egreso por 50.0 registrado 189.186.37.251 1055abf3-bbd3-4c24-9c0d-e649fecc3cc9 2019-05-09 16:15:20.266142 6928 663 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 174\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 60\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 1055abf3-bbd3-4c24-9c0d-e649fecc3cc9 2019-05-09 16:15:20.309182 6929 664 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 175\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 496\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.299E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-222 189.186.37.251 cfbb761d-5ed8-46e9-91f3-616f38c3c875 2019-05-09 16:43:01.04717 6930 496 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 341aa275-f527-4b09-bd8f-28347ce657ef 2019-05-09 16:43:09.671895 6931 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-09 01:06:44.838092000 Z\n- &1 2019-05-09 02:00:42.734264000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-09 16:49:01.082680438 Z\nsign_in_count:\n- 183\n- 184\n 368 \N 189.186.50.198 191465e2-314d-4172-a216-7a3826471fc4 2019-05-09 16:49:01.118409 6932 4 User \N \N 4 User \N update ---\nunique_session_id:\n- c4A2eoFofTWEbSM_X3nn\n- XaiWnAC85HPcUe3deirR\n 369 \N 189.186.50.198 191465e2-314d-4172-a216-7a3826471fc4 2019-05-09 16:49:01.150046 6933 520 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 174\namount: !ruby/object:BigDecimal 18:0.117159E4\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1268E4\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-287\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 c1110884-1beb-446f-945e-24ec2c94c936 2019-05-09 17:14:58.323238 6934 177 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.37.251 c1110884-1beb-446f-945e-24ec2c94c936 2019-05-09 17:14:58.38667 6935 616 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.37.251 c1110884-1beb-446f-945e-24ec2c94c936 2019-05-09 17:14:58.432113 6936 520 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 af6dcc99-0163-4d1d-b3ab-5c058a73900c 2019-05-09 17:15:07.1686 6937 665 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 174\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1268E4\nmove_type: '1'\nsale_id: 520\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-287\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1268E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-287 189.186.37.251 af6dcc99-0163-4d1d-b3ab-5c058a73900c 2019-05-09 17:15:07.199861 6938 89 Customer \N \N 2 User \N create ---\nnick_name: CLARA CRUZ\nphone: "(667) 105-6827"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CLARA CRUZ fue registrado. 189.186.37.251 d5b26f98-c39a-4e25-82a0-34f2e15a7e45 2019-05-09 17:17:04.651581 6983 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2eLv1bV4Kb4bTcc1Q9bf\n- gSY3jH9tZksxc2L3oy5d\n 373 \N 200.68.151.138 97af03f3-6bbe-4e4d-8235-ce0f97b25b39 2019-05-09 19:38:12.141795 6939 521 Sale \N \N 2 User \N create ---\ncustomer_id: 89\nuser_id: 2\nopen_cash_register_id: 174\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-288\nexpiration_date: 2019-06-13\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 608eb98c-a120-49e1-9d61-25c41624a9eb 2019-05-09 17:26:46.344648 6940 571 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.37.251 608eb98c-a120-49e1-9d61-25c41624a9eb 2019-05-09 17:26:46.384143 6941 666 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 174\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 521\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-288\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-288 189.186.37.251 79abadff-66b5-417a-8e5f-d8792823b342 2019-05-09 17:27:17.047565 6942 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-09 02:00:42.734264000 Z\n- &1 2019-05-09 16:49:01.082680000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-09 17:27:21.682886811 Z\nsign_in_count:\n- 184\n- 185\n 370 \N 189.186.50.198 c138a3c8-2401-4bfb-bbf4-013719d2e490 2019-05-09 17:27:21.691649 6943 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XaiWnAC85HPcUe3deirR\n- 2eLv1bV4Kb4bTcc1Q9bf\n 371 \N 189.186.50.198 c138a3c8-2401-4bfb-bbf4-013719d2e490 2019-05-09 17:27:21.711119 6944 666 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 174\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 521\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-288\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.37.251 17259fc1-2114-44f7-9618-2c55af270624 2019-05-09 17:27:28.672808 6945 521 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-288 cancelada. 189.186.37.251 86e707a0-1281-4b45-b87f-384eee114783 2019-05-09 17:27:48.681093 6946 571 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.37.251 86e707a0-1281-4b45-b87f-384eee114783 2019-05-09 17:27:48.712161 6947 667 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 3\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8E3\nmove_type: '1'\nsale_id: 27\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 03678ecf-6ca8-4ac1-b7ba-258a232daa0c 2019-05-09 17:44:30.874775 6948 27 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 03678ecf-6ca8-4ac1-b7ba-258a232daa0c 2019-05-09 17:44:30.902799 6949 667 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 3\n- 174\n 2 movimiento de efectivo por venta con folio PV2-V-8 189.186.37.251 03678ecf-6ca8-4ac1-b7ba-258a232daa0c 2019-05-09 17:44:30.926862 6950 522 Sale \N \N 2 User \N create ---\ncustomer_id: 3\nuser_id: 2\nopen_cash_register_id: 174\namount: !ruby/object:BigDecimal 18:0.180862E4\ntax: !ruby/object:BigDecimal 18:0.28937E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.209799E4\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-289\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 42525b6f-c50b-4d0b-9e1f-c0610abacab0 2019-05-09 18:00:00.569271 6951 41 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.37.251 42525b6f-c50b-4d0b-9e1f-c0610abacab0 2019-05-09 18:00:00.618887 6952 30 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.37.251 42525b6f-c50b-4d0b-9e1f-c0610abacab0 2019-05-09 18:00:00.67236 6953 523 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 174\namount: !ruby/object:BigDecimal 18:0.59052E3\ntax: !ruby/object:BigDecimal 18:0.9448E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.685E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-290\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 b221c937-4c35-4bf3-be89-85b7e0ac3fa8 2019-05-09 18:04:06.885474 6954 140 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.37.251 b221c937-4c35-4bf3-be89-85b7e0ac3fa8 2019-05-09 18:04:06.925523 6955 523 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 a459f3d1-5a49-42ba-94d1-0db44de79a36 2019-05-09 18:05:23.202116 6956 668 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 174\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.685E3\nmove_type: '1'\nsale_id: 523\ncardnumber: 4892\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-290\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-290 189.186.37.251 a459f3d1-5a49-42ba-94d1-0db44de79a36 2019-05-09 18:05:23.236558 6957 3 ProductsReturn \N \N 3 User \N create ---\nsale_id: 487\nuser_id: 3\nreturn_code: PV2-D-2\npointsale_id: 2\nnew_amount: !ruby/object:BigDecimal 18:0.1048E4\nreturned_amount: !ruby/object:BigDecimal 18:0.869E3\ndifference_amount: !ruby/object:BigDecimal 18:0.179E3\nis_money_returned: false\n 1 devolución PV2-D-2 creada. 189.186.37.251 2fcfce6d-6927-480d-b859-6d828894970b 2019-05-09 18:09:41.973812 6958 497 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 189.186.37.251 2fcfce6d-6927-480d-b859-6d828894970b 2019-05-09 18:09:42.005454 6959 597 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.37.251 2fcfce6d-6927-480d-b859-6d828894970b 2019-05-09 18:09:42.040517 6960 624 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.37.251 2fcfce6d-6927-480d-b859-6d828894970b 2019-05-09 18:09:42.062915 6961 669 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 175\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.179E3\nmove_type: '1'\nsale_id: 487\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: 3\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV2-D-2 189.186.37.251 af4ef226-1d55-4a4d-86be-65a4e9cdbb68 2019-05-09 18:10:13.596131 7124 2 User \N \N 2 User \N update ---\nunique_session_id:\n- t8xf8wNz5CgnswHtDPzk\n- 3jTA7dcpCGyv6DiTz6xZ\n 216 \N 189.186.37.251 4af85d74-688b-40c0-a117-09c803aa27a7 2019-05-10 16:07:17.424976 6962 524 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 175\namount: !ruby/object:BigDecimal 18:0.30172E3\ntax: !ruby/object:BigDecimal 18:0.4828E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-232\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 8c9964ce-328c-428c-9e9e-5fb15e16f983 2019-05-09 18:13:03.501524 6963 365 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.45E2\n- !ruby/object:BigDecimal 18:0.44E2\n 10 \N 189.186.37.251 8c9964ce-328c-428c-9e9e-5fb15e16f983 2019-05-09 18:13:03.542735 6964 524 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 0dd3b275-18f5-48ad-8e9a-fbb7fdf6d39e 2019-05-09 18:13:08.609199 6965 670 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 175\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 524\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-232\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.5E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-232 189.186.37.251 0dd3b275-18f5-48ad-8e9a-fbb7fdf6d39e 2019-05-09 18:13:08.641445 6966 525 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 175\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-233\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 d584268b-dc01-4e0c-a24a-26313a110587 2019-05-09 18:23:48.064159 6967 625 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.37.251 d584268b-dc01-4e0c-a24a-26313a110587 2019-05-09 18:23:48.121012 6968 525 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 88a2bac0-e6d5-4db0-a673-00f368cfd97d 2019-05-09 18:25:09.284991 6969 671 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 175\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 525\ncardnumber: 1576\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-233\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-233 189.186.37.251 88a2bac0-e6d5-4db0-a673-00f368cfd97d 2019-05-09 18:25:09.316563 6970 526 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 175\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-234\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 99d7bb2a-d550-434e-8471-6094671b3c32 2019-05-09 18:30:48.149716 6971 437 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 6 \N 189.186.37.251 99d7bb2a-d550-434e-8471-6094671b3c32 2019-05-09 18:30:48.193896 6972 526 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 39c651e6-ad23-475b-964c-08de6af607c8 2019-05-09 18:32:12.989602 6973 672 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 175\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.749E3\nmove_type: '1'\nsale_id: 526\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-234\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.251E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-234 189.186.37.251 39c651e6-ad23-475b-964c-08de6af607c8 2019-05-09 18:32:13.025874 6974 527 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 175\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-235\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 a7620d7b-5b0b-4e30-9ae3-aae05fd13d78 2019-05-09 18:39:11.026698 6975 560 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 a7620d7b-5b0b-4e30-9ae3-aae05fd13d78 2019-05-09 18:39:11.139106 6976 527 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 e480eb7b-69ac-4195-b549-c822be6f838a 2019-05-09 18:39:44.253895 6977 673 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 175\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 527\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-235\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.151E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-235 189.186.37.251 e480eb7b-69ac-4195-b549-c822be6f838a 2019-05-09 18:39:44.282295 6978 528 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 174\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-291\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 eb2bd34c-a489-44be-add7-9dead81c916a 2019-05-09 18:43:39.049361 6979 14 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.37.251 eb2bd34c-a489-44be-add7-9dead81c916a 2019-05-09 18:43:39.093437 6980 528 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 803c116c-539e-43dd-afd6-f72bf31bc3e7 2019-05-09 18:43:53.844205 6981 674 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 174\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 528\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-291\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-291 189.186.37.251 803c116c-539e-43dd-afd6-f72bf31bc3e7 2019-05-09 18:43:53.878036 6982 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-09 16:49:01.082680000 Z\n- &1 2019-05-09 17:27:21.682886000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-09 19:38:12.112025095 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938442\n mask_addr: 4294967295\nsign_in_count:\n- 185\n- 186\n 372 \N 200.68.151.138 97af03f3-6bbe-4e4d-8235-ce0f97b25b39 2019-05-09 19:38:12.121454 6984 90 Customer \N \N 3 User \N create ---\nnick_name: DANIEL SISTEMA\nphone: "(667) 387-5904"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.3E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DANIEL SISTEMA fue registrado. 189.186.37.251 4a8033b1-6f80-4eb9-8a82-af6bea7b45f0 2019-05-09 19:44:25.04604 6985 529 Sale \N \N 3 User \N create ---\ncustomer_id: 90\nuser_id: 3\nopen_cash_register_id: 175\namount: !ruby/object:BigDecimal 18:0.211986E4\ntax: !ruby/object:BigDecimal 18:0.24814E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2368E4\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 0\nseller_id: 4\nsale_code: PV2-V-236\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 8564d1c0-e005-4602-9272-ff75910e4e8d 2019-05-09 19:44:57.877473 6986 622 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.37.251 8564d1c0-e005-4602-9272-ff75910e4e8d 2019-05-09 19:44:57.91328 6987 358 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.37.251 8564d1c0-e005-4602-9272-ff75910e4e8d 2019-05-09 19:44:57.948802 6988 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-09 01:34:49.894882000 Z\n- &1 2019-05-09 15:59:38.136027000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-09 21:42:22.522756850 Z\nsign_in_count:\n- 217\n- 218\n 436 \N 189.186.37.251 ef5d94ec-2ef5-4f39-8940-4e4208bbb45c 2019-05-09 21:42:22.531776 6989 3 User \N \N 3 User \N update ---\nunique_session_id:\n- vm8hVQcAFsH6cNsDu4Kg\n- AaaYhupVzFZ1M3kS_Ywd\n 437 \N 189.186.37.251 ef5d94ec-2ef5-4f39-8940-4e4208bbb45c 2019-05-09 21:42:22.566189 6990 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-05-05 16:06:09.983428000 Z\n- &1 2019-05-05 17:38:16.954192000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-09 22:12:31.890262666 Z\nsign_in_count:\n- 61\n- 62\n 124 \N 189.186.37.251 bbe96f9b-d6ca-4235-8b8f-693e2d9d6028 2019-05-09 22:12:31.899068 6991 10 User \N \N 10 User \N update ---\nunique_session_id:\n- tzR9wasgs9-mgq3hbCC8\n- JXY7CHms3NoTyJ-RyEPD\n 125 \N 189.186.37.251 bbe96f9b-d6ca-4235-8b8f-693e2d9d6028 2019-05-09 22:12:31.917188 6992 530 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 174\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-292\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 01dbe0fb-2c68-4eb5-8824-f87b2dbc89f5 2019-05-09 22:54:46.02428 6993 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 20 \N 189.186.37.251 01dbe0fb-2c68-4eb5-8824-f87b2dbc89f5 2019-05-09 22:54:46.060828 6994 530 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 05cbe33c-c1ae-4055-98c9-ba92b9feb8a8 2019-05-09 22:55:05.174254 6995 675 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 174\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.749E3\nmove_type: '1'\nsale_id: 530\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-292\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.75E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-292 189.186.37.251 05cbe33c-c1ae-4055-98c9-ba92b9feb8a8 2019-05-09 22:55:05.20706 6996 531 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 175\namount: !ruby/object:BigDecimal 18:0.50431E3\ntax: !ruby/object:BigDecimal 18:0.8069E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.585E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-237\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 08e9ae6d-f4da-49ca-ae40-4ccc454dea0c 2019-05-09 22:56:48.756391 6997 379 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.37.251 08e9ae6d-f4da-49ca-ae40-4ccc454dea0c 2019-05-09 22:56:48.786502 6998 531 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 e1cd4812-3d72-4fd0-b348-306373317a79 2019-05-09 22:57:03.859592 6999 676 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 175\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.585E3\nmove_type: '1'\nsale_id: 531\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-237\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.15E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-237 189.186.37.251 e1cd4812-3d72-4fd0-b348-306373317a79 2019-05-09 22:57:03.891566 7000 532 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 174\namount: !ruby/object:BigDecimal 18:0.66293E3\ntax: !ruby/object:BigDecimal 18:0.10607E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.769E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-293\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 c7b6d409-000b-4df8-9cb9-1ca18fecda43 2019-05-09 22:58:40.462751 7001 132 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.37.251 c7b6d409-000b-4df8-9cb9-1ca18fecda43 2019-05-09 22:58:40.499437 7002 532 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-293 cancelada. 189.186.37.251 52db26ef-7205-4ba4-b67c-0b46fa659ac1 2019-05-09 23:01:24.182791 7003 132 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.37.251 52db26ef-7205-4ba4-b67c-0b46fa659ac1 2019-05-09 23:01:24.218588 7004 533 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 174\namount: !ruby/object:BigDecimal 18:0.669E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-294\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 a64d9c24-9097-467a-8534-ced2cb65b613 2019-05-09 23:02:41.457538 7005 522 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.37.251 a64d9c24-9097-467a-8534-ced2cb65b613 2019-05-09 23:02:41.503435 7006 533 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 ddbe7b26-f285-45b9-a64c-1b39aa9b12d2 2019-05-09 23:03:01.191577 7007 677 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 174\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.669E3\nmove_type: '1'\nsale_id: 533\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-294\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.669E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-294 189.186.37.251 ddbe7b26-f285-45b9-a64c-1b39aa9b12d2 2019-05-09 23:03:01.225046 7008 534 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 174\namount: !ruby/object:BigDecimal 18:0.66293E3\ntax: !ruby/object:BigDecimal 18:0.10607E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.769E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-295\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 bff1ec17-4e23-40a2-9e79-f78694618f0a 2019-05-09 23:04:39.266236 7009 132 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.37.251 bff1ec17-4e23-40a2-9e79-f78694618f0a 2019-05-09 23:04:39.305899 7010 534 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 01633ea4-e324-4dc2-99e1-11883eb53795 2019-05-09 23:04:43.83649 7011 678 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 174\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.769E3\nmove_type: '1'\nsale_id: 534\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-295\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.231E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-295 189.186.37.251 01633ea4-e324-4dc2-99e1-11883eb53795 2019-05-09 23:04:43.866813 7012 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-09 01:23:00.701556000 Z\n- &1 2019-05-09 01:31:07.515368000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-09 23:18:00.410959051 Z\nsign_in_count:\n- 146\n- 147\n 294 \N 189.186.37.251 ebffa8d5-b32d-411b-b8d3-944b69c9eecb 2019-05-09 23:18:00.420192 7013 12 User \N \N 12 User \N update ---\nunique_session_id:\n- DgGDAizkzoHfY5d4pksu\n- Cc_JvuQxjs2HUNNypLck\n 295 \N 189.186.37.251 ebffa8d5-b32d-411b-b8d3-944b69c9eecb 2019-05-09 23:18:00.440151 7014 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-09 15:59:38.136027000 Z\n- &1 2019-05-09 21:42:22.522756000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-09 23:18:38.385009583 Z\nsign_in_count:\n- 218\n- 219\n 438 \N 189.186.37.251 9b106c5a-cc3f-4d7c-b936-fb76d5291a6c 2019-05-09 23:18:38.393318 7015 3 User \N \N 3 User \N update ---\nunique_session_id:\n- AaaYhupVzFZ1M3kS_Ywd\n- FzjPb-XgtPorUy-ad4kG\n 439 \N 189.186.37.251 9b106c5a-cc3f-4d7c-b936-fb76d5291a6c 2019-05-09 23:18:38.410568 7016 61 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 174\nquantity: !ruby/object:BigDecimal 18:0.433E3\nstatus: 1\nobservations: 'PIZZA '\nexpense_date: 2019-05-09\nexpense_code: PV1-E-55\n 1 Egreso por 433.0 registrado 189.186.37.251 438e0644-6641-41d9-a6d3-e5793dd4dc08 2019-05-09 23:18:56.144949 7017 679 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 174\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.433E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 61\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 438e0644-6641-41d9-a6d3-e5793dd4dc08 2019-05-09 23:18:56.166047 7018 91 Customer \N \N 3 User \N create ---\nnick_name: SOL GARCIA\nphone: "(672) 718-0499"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente SOL GARCIA fue registrado. 189.186.37.251 d6815361-e32d-4ce1-bf70-afa165f434e2 2019-05-09 23:27:52.348553 7019 535 Sale \N \N 3 User \N create ---\ncustomer_id: 91\nuser_id: 3\nopen_cash_register_id: 175\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-238\nexpiration_date: 2019-06-13\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 0e062b55-1af1-4596-ae1f-e6d6211e6cd2 2019-05-09 23:28:00.821101 7020 544 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.37.251 0e062b55-1af1-4596-ae1f-e6d6211e6cd2 2019-05-09 23:28:00.857176 7021 680 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 175\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.24E3\nmove_type: '1'\nsale_id: 535\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-238\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.26E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-238 189.186.37.251 533da6ca-dcd7-4133-a82c-189ef5d2a8df 2019-05-09 23:28:40.492261 7022 535 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 cd4b3bce-1333-4228-ad98-05b3d98b830b 2019-05-09 23:28:41.779955 7023 536 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 175\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-239\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 cef1c2ea-550d-46ee-a63f-bfba83c937f6 2019-05-09 23:29:36.323257 7024 625 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.37.251 cef1c2ea-550d-46ee-a63f-bfba83c937f6 2019-05-09 23:29:36.353263 7025 536 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 74c11f97-98ad-486b-a015-91d1d3ab839b 2019-05-09 23:29:39.650326 7026 681 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 175\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 536\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-239\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-239 189.186.37.251 74c11f97-98ad-486b-a015-91d1d3ab839b 2019-05-09 23:29:39.673255 7027 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-09 01:31:07.515368000 Z\n- &1 2019-05-09 23:18:00.410959000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-09 23:44:40.455377502 Z\nsign_in_count:\n- 147\n- 148\n 296 \N 189.186.37.251 0cea80ba-fae9-4e19-a451-73064c1b1354 2019-05-09 23:44:40.464649 7028 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Cc_JvuQxjs2HUNNypLck\n- rGzbs753QPPGRhYMHhLV\n 297 \N 189.186.37.251 0cea80ba-fae9-4e19-a451-73064c1b1354 2019-05-09 23:44:40.479906 7029 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-09 21:42:22.522756000 Z\n- &1 2019-05-09 23:18:38.385009000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-09 23:45:13.529251277 Z\nsign_in_count:\n- 219\n- 220\n 440 \N 189.186.37.251 920f2a62-17e4-4129-b199-51521c8e3135 2019-05-09 23:45:13.534747 7030 3 User \N \N 3 User \N update ---\nunique_session_id:\n- FzjPb-XgtPorUy-ad4kG\n- UauHyEYNKynSnSn4wdM5\n 441 \N 189.186.37.251 920f2a62-17e4-4129-b199-51521c8e3135 2019-05-09 23:45:13.547717 7125 176 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.725E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 725.0 189.186.37.251 d7983d19-c8ee-4618-b6ea-47c5cbe41b2d 2019-05-10 16:08:07.024814 7031 537 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 174\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-296\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 cfaa787d-71a7-4852-89ee-95e830775a4d 2019-05-10 00:23:05.75082 7032 58 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 4 \N 189.186.37.251 cfaa787d-71a7-4852-89ee-95e830775a4d 2019-05-10 00:23:05.791361 7033 537 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 0b16295c-97ee-4dd6-a27f-d8ca7851f63d 2019-05-10 00:23:10.418896 7034 682 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 174\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 537\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-296\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-296 189.186.37.251 0b16295c-97ee-4dd6-a27f-d8ca7851f63d 2019-05-10 00:23:10.452754 7035 538 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 175\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-240\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 c99eb99c-cccd-4372-b8d4-c3ebf7994623 2019-05-10 00:25:14.884884 7036 622 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.37.251 c99eb99c-cccd-4372-b8d4-c3ebf7994623 2019-05-10 00:25:14.927772 7037 538 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 a95b8af7-8123-445d-b2d0-1f0673bdd1ea 2019-05-10 00:25:18.37049 7038 683 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 175\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.569E3\nmove_type: '1'\nsale_id: 538\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-240\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-240 189.186.37.251 a95b8af7-8123-445d-b2d0-1f0673bdd1ea 2019-05-10 00:25:18.408231 7039 539 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 174\namount: !ruby/object:BigDecimal 18:0.42155E3\ntax: !ruby/object:BigDecimal 18:0.6745E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-297\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 d90ae31f-498e-4d77-afc9-8b291bfe7367 2019-05-10 00:26:19.206426 7040 134 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.37.251 d90ae31f-498e-4d77-afc9-8b291bfe7367 2019-05-10 00:26:19.246553 7041 539 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 082b4db2-4437-4d2e-9918-cd0a89ebb03f 2019-05-10 00:26:27.429356 7042 684 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 174\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.489E3\nmove_type: '1'\nsale_id: 539\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-297\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-297 189.186.37.251 082b4db2-4437-4d2e-9918-cd0a89ebb03f 2019-05-10 00:26:27.457137 7043 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-09 23:18:00.410959000 Z\n- &1 2019-05-09 23:44:40.455377000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 00:29:41.226155636 Z\nsign_in_count:\n- 148\n- 149\n 298 \N 189.186.37.251 f0b1641c-d0e7-4cc0-ae19-d883c450d712 2019-05-10 00:29:41.232548 7044 12 User \N \N 12 User \N update ---\nunique_session_id:\n- rGzbs753QPPGRhYMHhLV\n- FzCqUkDs7wQQSkHNfTvs\n 299 \N 189.186.37.251 f0b1641c-d0e7-4cc0-ae19-d883c450d712 2019-05-10 00:29:41.248747 7045 92 Customer \N \N 2 User \N create ---\nnick_name: JOSEFINA RODRIGUEZ\nphone: "(667) 471-3179"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JOSEFINA RODRIGUEZ fue registrado. 189.186.37.251 c1e256b4-d3bb-48bf-8a78-f0ac126fdc9c 2019-05-10 00:30:27.850936 7046 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-09 23:18:38.385009000 Z\n- &1 2019-05-09 23:45:13.529251000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 00:30:40.986695519 Z\nsign_in_count:\n- 220\n- 221\n 442 \N 189.186.37.251 c81bc9c8-c063-4488-83a5-5632553183be 2019-05-10 00:30:40.993989 7047 3 User \N \N 3 User \N update ---\nunique_session_id:\n- UauHyEYNKynSnSn4wdM5\n- yesKaRZzKWE91ezHhxVu\n 443 \N 189.186.37.251 c81bc9c8-c063-4488-83a5-5632553183be 2019-05-10 00:30:41.01 7048 540 Sale \N \N 2 User \N create ---\ncustomer_id: 92\nuser_id: 2\nopen_cash_register_id: 174\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-298\nexpiration_date: 2019-06-13\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 af0fc1a6-579c-4a17-aa6f-87950539650b 2019-05-10 00:30:43.598775 7049 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 21 \N 189.186.37.251 af0fc1a6-579c-4a17-aa6f-87950539650b 2019-05-10 00:30:43.725358 7050 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-09 23:45:13.529251000 Z\n- &1 2019-05-10 00:30:40.986695000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 00:30:58.210086506 Z\nsign_in_count:\n- 221\n- 222\n 444 \N 189.186.37.251 cae720f0-7908-4999-a48c-0a593aae240b 2019-05-10 00:30:58.218144 7051 3 User \N \N 3 User \N update ---\nunique_session_id:\n- yesKaRZzKWE91ezHhxVu\n- ig6H8fNHz4tRLJzwVxfq\n 445 \N 189.186.37.251 cae720f0-7908-4999-a48c-0a593aae240b 2019-05-10 00:30:58.236465 7052 685 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 174\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.225E3\nmove_type: '1'\nsale_id: 540\ncardnumber: 837\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-298\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-298 189.186.37.251 62d08611-4fb6-48e9-a5f7-996c9f57b2c1 2019-05-10 00:32:12.038223 7126 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 01:56:44.020880000 Z\n- &1 2019-05-10 02:04:52.555239000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 16:09:07.615367917 Z\nsign_in_count:\n- 227\n- 228\n 456 \N 189.186.37.251 4660c607-7510-4d61-b28d-1c1af4fc9907 2019-05-10 16:09:07.623981 7053 685 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 174\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.225E3\nmove_type: '1'\nsale_id: 540\ncardnumber: 837\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-298\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.37.251 8e75dd63-409b-4cc0-b5b9-c55a11da6d67 2019-05-10 00:32:16.097005 7054 686 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 174\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 540\ncardnumber: 8372\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-298\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-298 189.186.37.251 dc5b514e-d697-49da-8536-c71a8fd2c84d 2019-05-10 00:32:39.824731 7055 540 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 14e395c2-0fb8-4550-afc5-58699c500685 2019-05-10 00:32:42.778804 7056 541 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 175\namount: !ruby/object:BigDecimal 18:0.53362E3\ntax: !ruby/object:BigDecimal 18:0.8538E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.619E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-241\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 51b655f9-f152-403d-b398-94ddb8ac975c 2019-05-10 00:48:22.830468 7057 330 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 14 \N 189.186.37.251 51b655f9-f152-403d-b398-94ddb8ac975c 2019-05-10 00:48:22.867273 7058 541 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 667fba42-f8b6-4b48-bc44-f294be6afa84 2019-05-10 00:48:35.807495 7059 687 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 175\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.619E3\nmove_type: '1'\nsale_id: 541\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-241\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.81E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-241 189.186.37.251 667fba42-f8b6-4b48-bc44-f294be6afa84 2019-05-10 00:48:35.834556 7060 542 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 174\namount: !ruby/object:BigDecimal 18:0.162917E4\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1698E4\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-299\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 1e61cfce-c825-4394-a0c7-7374818572e6 2019-05-10 00:54:42.047632 7061 606 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 1e61cfce-c825-4394-a0c7-7374818572e6 2019-05-10 00:54:42.092246 7062 131 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 189.186.37.251 1e61cfce-c825-4394-a0c7-7374818572e6 2019-05-10 00:54:42.131375 7063 542 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 3b034bc7-689f-404b-bf63-9dd55cfb5066 2019-05-10 00:55:17.091219 7064 688 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 174\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1698E4\nmove_type: '1'\nsale_id: 542\ncardnumber: 7881\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-299\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-299 189.186.37.251 3b034bc7-689f-404b-bf63-9dd55cfb5066 2019-05-10 00:55:17.120007 7065 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-09 23:44:40.455377000 Z\n- &1 2019-05-10 00:29:41.226155000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 01:10:20.482680573 Z\nsign_in_count:\n- 149\n- 150\n 300 \N 189.186.37.251 f8474d8e-f2b4-4896-b5cb-d25dbfaf6176 2019-05-10 01:10:20.502801 7066 12 User \N \N 12 User \N update ---\nunique_session_id:\n- FzCqUkDs7wQQSkHNfTvs\n- zmXDh8xZA_HXUG3kTfzd\n 301 \N 189.186.37.251 f8474d8e-f2b4-4896-b5cb-d25dbfaf6176 2019-05-10 01:10:20.523943 7067 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 00:30:40.986695000 Z\n- &1 2019-05-10 00:30:58.210086000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 01:11:09.722943332 Z\nsign_in_count:\n- 222\n- 223\n 446 \N 189.186.37.251 36affabf-8a3c-4def-bdec-1caa44bc3193 2019-05-10 01:11:09.728527 7068 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ig6H8fNHz4tRLJzwVxfq\n- CwnBuqSk6wfjmg-xo3hm\n 447 \N 189.186.37.251 36affabf-8a3c-4def-bdec-1caa44bc3193 2019-05-10 01:11:09.746188 7069 543 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 174\namount: !ruby/object:BigDecimal 18:0.66293E3\ntax: !ruby/object:BigDecimal 18:0.10607E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.769E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-300\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 bf403423-44dd-4032-84b3-7d6b90c3ceac 2019-05-10 01:18:58.531013 7070 132 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.37.251 bf403423-44dd-4032-84b3-7d6b90c3ceac 2019-05-10 01:18:58.584029 7071 543 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 90a78777-a5ef-480e-a5f8-05c50b043411 2019-05-10 01:19:16.148496 7072 689 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 174\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.769E3\nmove_type: '1'\nsale_id: 543\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-300\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.131E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-300 189.186.37.251 90a78777-a5ef-480e-a5f8-05c50b043411 2019-05-10 01:19:16.180414 7073 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 00:29:41.226155000 Z\n- &1 2019-05-10 01:10:20.482680000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 01:23:48.574803101 Z\nsign_in_count:\n- 150\n- 151\n 302 \N 189.186.37.251 5a694539-6ae0-49e9-9596-981b768a3f60 2019-05-10 01:23:48.5836 7074 12 User \N \N 12 User \N update ---\nunique_session_id:\n- zmXDh8xZA_HXUG3kTfzd\n- s8MEt8XeE7uST5Qr6UAx\n 303 \N 189.186.37.251 5a694539-6ae0-49e9-9596-981b768a3f60 2019-05-10 01:23:48.604335 7075 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 00:30:58.210086000 Z\n- &1 2019-05-10 01:11:09.722943000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 01:27:15.555909537 Z\nsign_in_count:\n- 223\n- 224\n 448 \N 189.186.37.251 ab239014-efba-4a57-850f-2b5b585be24e 2019-05-10 01:27:15.56525 7076 3 User \N \N 3 User \N update ---\nunique_session_id:\n- CwnBuqSk6wfjmg-xo3hm\n- 4Xbyf_M18uyBSTg8bTRv\n 449 \N 189.186.37.251 ab239014-efba-4a57-850f-2b5b585be24e 2019-05-10 01:27:15.587053 7077 544 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 174\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-301\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 f15a8ddf-52a9-4e46-a3b6-f7fb972a65a3 2019-05-10 01:27:17.832921 7078 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 22 \N 189.186.37.251 f15a8ddf-52a9-4e46-a3b6-f7fb972a65a3 2019-05-10 01:27:17.922853 7079 544 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 c8f76ff2-ee0f-4d70-876d-3169466fcb36 2019-05-10 01:27:37.239455 7080 690 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 174\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.749E3\nmove_type: '1'\nsale_id: 544\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-301\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.251E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-301 189.186.37.251 c8f76ff2-ee0f-4d70-876d-3169466fcb36 2019-05-10 01:27:37.276249 7081 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 01:10:20.482680000 Z\n- &1 2019-05-10 01:23:48.574803000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 01:42:20.128101644 Z\nsign_in_count:\n- 151\n- 152\n 304 \N 189.186.37.251 ee3cbda0-867b-452c-91d4-dbff5db05869 2019-05-10 01:42:20.13738 7082 12 User \N \N 12 User \N update ---\nunique_session_id:\n- s8MEt8XeE7uST5Qr6UAx\n- _6DLsszLF4QgjX6NrA8p\n 305 \N 189.186.37.251 ee3cbda0-867b-452c-91d4-dbff5db05869 2019-05-10 01:42:20.157108 7083 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 01:11:09.722943000 Z\n- &1 2019-05-10 01:27:15.555909000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 01:43:29.999279962 Z\nsign_in_count:\n- 224\n- 225\n 450 \N 189.186.37.251 b9e5d0b6-ab1c-415e-9332-e9178614c593 2019-05-10 01:43:30.009602 7084 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 4Xbyf_M18uyBSTg8bTRv\n- VfXq9e-zpeNoqMSxvvsH\n 451 \N 189.186.37.251 b9e5d0b6-ab1c-415e-9332-e9178614c593 2019-05-10 01:43:30.037536 7085 93 Customer \N \N 3 User \N create ---\nnick_name: AURORA PEÑA\nphone: "(667) 317-3557"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente AURORA PEÑA fue registrado. 189.186.37.251 e56e81a7-4cfe-4c07-b0d5-6e52019822e0 2019-05-10 01:44:38.99325 7086 545 Sale \N \N 3 User \N create ---\ncustomer_id: 93\nuser_id: 3\nopen_cash_register_id: 175\namount: !ruby/object:BigDecimal 18:0.969E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.969E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-242\nexpiration_date: 2019-06-13\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 c6dd2993-fa69-4fc4-87cc-bf58d646ef56 2019-05-10 01:45:14.765677 7087 494 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.37.251 c6dd2993-fa69-4fc4-87cc-bf58d646ef56 2019-05-10 01:45:14.804379 7088 691 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 175\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 545\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-242\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.2E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-242 189.186.37.251 94bb2641-e3a6-4417-b692-174c14810f93 2019-05-10 01:46:04.30934 7089 545 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 97d3ddd5-8856-4c6e-ae6c-3a2110732962 2019-05-10 01:46:05.543029 7090 546 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 175\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-243\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 ea709216-3ed8-4883-9f0e-4e7ff32d3188 2019-05-10 01:51:29.684432 7091 367 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 6 \N 189.186.37.251 ea709216-3ed8-4883-9f0e-4e7ff32d3188 2019-05-10 01:51:29.725018 7092 546 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 c87c3d8c-7636-4db2-8a33-0b6e78a9106f 2019-05-10 01:52:01.529991 7093 692 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 175\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 546\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-243\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E2\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-243 189.186.37.251 c87c3d8c-7636-4db2-8a33-0b6e78a9106f 2019-05-10 01:52:01.559192 7094 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 01:23:48.574803000 Z\n- &1 2019-05-10 01:42:20.128101000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 01:56:24.841809296 Z\nsign_in_count:\n- 152\n- 153\n 306 \N 189.186.37.251 2734f92f-abd5-4ad4-88ab-8dd9ea035009 2019-05-10 01:56:24.848884 7095 12 User \N \N 12 User \N update ---\nunique_session_id:\n- _6DLsszLF4QgjX6NrA8p\n- 4kGP4ij8LdxFa_yrXzAw\n 307 \N 189.186.37.251 2734f92f-abd5-4ad4-88ab-8dd9ea035009 2019-05-10 01:56:24.867839 7096 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 01:27:15.555909000 Z\n- &1 2019-05-10 01:43:29.999279000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 01:56:44.020880260 Z\nsign_in_count:\n- 225\n- 226\n 452 \N 189.186.37.251 9e7cffe8-d08a-44a0-bda5-f5af8d2a02fe 2019-05-10 01:56:44.028423 7097 3 User \N \N 3 User \N update ---\nunique_session_id:\n- VfXq9e-zpeNoqMSxvvsH\n- sADeJ19598sSho2zPxZd\n 453 \N 189.186.37.251 9e7cffe8-d08a-44a0-bda5-f5af8d2a02fe 2019-05-10 01:56:44.045549 7098 547 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 174\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-302\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 7caeb269-4ae8-416f-97df-20b0282f13ba 2019-05-10 01:57:07.640996 7099 72 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.37.251 7caeb269-4ae8-416f-97df-20b0282f13ba 2019-05-10 01:57:07.69497 7100 547 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 2a4b42ba-c0ce-4c12-85f8-7bc717832c56 2019-05-10 01:57:16.944974 7127 3 User \N \N 3 User \N update ---\nunique_session_id:\n- "-MwY7Fy4_2wykzcpUWzP"\n- 8mwSoofvSTEDr6R9DpRP\n 457 \N 189.186.37.251 4660c607-7510-4d61-b28d-1c1af4fc9907 2019-05-10 16:09:07.645238 7101 693 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 174\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 547\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-302\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-302 189.186.37.251 2a4b42ba-c0ce-4c12-85f8-7bc717832c56 2019-05-10 01:57:16.97584 7102 548 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 175\namount: !ruby/object:BigDecimal 18:0.116207E4\ntax: !ruby/object:BigDecimal 18:0.18593E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1348E4\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-244\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 0ba911fb-f01f-4070-8d7b-0caa297f6b2f 2019-05-10 01:58:43.189632 7103 435 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.37.251 0ba911fb-f01f-4070-8d7b-0caa297f6b2f 2019-05-10 01:58:43.225633 7104 437 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 7 \N 189.186.37.251 0ba911fb-f01f-4070-8d7b-0caa297f6b2f 2019-05-10 01:58:43.258995 7105 548 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 3dcaba64-d68d-42d2-96e8-f086c5389733 2019-05-10 01:58:52.501891 7106 694 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 175\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1348E4\nmove_type: '1'\nsale_id: 548\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-244\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.152E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-244 189.186.37.251 3dcaba64-d68d-42d2-96e8-f086c5389733 2019-05-10 01:58:52.530821 7107 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 01:42:20.128101000 Z\n- &1 2019-05-10 01:56:24.841809000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 02:03:20.632670435 Z\nsign_in_count:\n- 153\n- 154\n 308 \N 189.186.37.251 4e8a6cb9-6a7f-47c0-9bc5-603064c09bdd 2019-05-10 02:03:20.64337 7108 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 4kGP4ij8LdxFa_yrXzAw\n- eK4qoVitCuzhjNrJSj-1\n 309 \N 189.186.37.251 4e8a6cb9-6a7f-47c0-9bc5-603064c09bdd 2019-05-10 02:03:20.685801 7109 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 01:43:29.999279000 Z\n- &1 2019-05-10 01:56:44.020880000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 02:04:52.555239103 Z\nsign_in_count:\n- 226\n- 227\n 454 \N 189.186.37.251 d739fa86-ec75-4d25-94de-91274afa9cea 2019-05-10 02:04:52.564105 7110 3 User \N \N 3 User \N update ---\nunique_session_id:\n- sADeJ19598sSho2zPxZd\n- "-MwY7Fy4_2wykzcpUWzP"\n 455 \N 189.186.37.251 d739fa86-ec75-4d25-94de-91274afa9cea 2019-05-10 02:04:52.581778 7111 549 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 175\namount: !ruby/object:BigDecimal 18:0.86121E3\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-245\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 31203f45-b400-4680-bc2b-e5648d7c8b15 2019-05-10 02:13:37.549141 7112 431 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.37.251 31203f45-b400-4680-bc2b-e5648d7c8b15 2019-05-10 02:13:37.59013 7113 549 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 251ac010-9022-4391-b7dd-e440fd8ae700 2019-05-10 02:13:51.797486 7114 695 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 175\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 549\ncardnumber: 1359\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-245\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-245 189.186.37.251 251ac010-9022-4391-b7dd-e440fd8ae700 2019-05-10 02:13:51.832807 7115 172 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 174\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.10962E5\namount_out: !ruby/object:BigDecimal 18:0.483E3\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.8E4\ncash_fund: !ruby/object:BigDecimal 18:0.725E3\nphysical_cash: !ruby/object:BigDecimal 18:0.8725E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 914e1956-7513-4838-aa42-791198aa2f8d 2019-05-10 02:17:11.610381 7116 174 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 914e1956-7513-4838-aa42-791198aa2f8d 2019-05-10 02:17:11.632966 7117 550 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 175\namount: !ruby/object:BigDecimal 18:0.70603E3\ntax: !ruby/object:BigDecimal 18:0.11296E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.81899E3\nstatus: 0\ndate_sale: 2019-05-09\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-246\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 964b71a4-b165-4270-97da-33884fec0fd4 2019-05-10 02:31:07.318959 7118 329 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.37.251 964b71a4-b165-4270-97da-33884fec0fd4 2019-05-10 02:31:07.362638 7119 550 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 a594666b-29fe-4b01-9132-016f2a54d5dd 2019-05-10 02:31:20.401409 7120 696 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 175\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.81899E3\nmove_type: '1'\nsale_id: 550\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-246\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.18101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-246 189.186.37.251 a594666b-29fe-4b01-9132-016f2a54d5dd 2019-05-10 02:31:20.436053 7121 173 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 175\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.945199E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.78E4\ncash_fund: !ruby/object:BigDecimal 18:0.707E3\nphysical_cash: !ruby/object:BigDecimal 18:0.8507E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 7d8fbcc0-10d7-4467-a615-d680fb24e929 2019-05-10 02:37:40.203201 7122 175 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 7d8fbcc0-10d7-4467-a615-d680fb24e929 2019-05-10 02:37:40.215906 7123 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 21:51:16.761550000 Z\n- &1 2019-05-09 15:38:05.705975000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 16:07:17.372550005 Z\nsign_in_count:\n- 105\n- 106\n 215 \N 189.186.37.251 4af85d74-688b-40c0-a117-09c803aa27a7 2019-05-10 16:07:17.398958 7128 177 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.707E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 707.0 189.186.37.251 4bff0e4a-fb4a-4515-ac8b-9968eeab247c 2019-05-10 16:09:48.485025 7129 551 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 177\namount: !ruby/object:BigDecimal 18:0.49052E3\ntax: !ruby/object:BigDecimal 18:0.7848E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-05-10\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-247\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 d373195a-7c3c-4de8-aa79-71585fccba3d 2019-05-10 16:57:06.013865 7130 595 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.37.251 d373195a-7c3c-4de8-aa79-71585fccba3d 2019-05-10 16:57:06.053458 7131 551 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-247 cancelada. 189.186.37.251 2557d322-5c1f-457e-af69-34bda786da91 2019-05-10 17:01:24.433747 7132 595 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.37.251 2557d322-5c1f-457e-af69-34bda786da91 2019-05-10 17:01:24.461786 7133 552 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 177\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-05-10\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-248\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 50160f6f-db45-45e5-92d2-c7840ede4833 2019-05-10 17:02:10.613165 7134 477 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.37.251 50160f6f-db45-45e5-92d2-c7840ede4833 2019-05-10 17:02:10.662918 7135 552 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 ae8000c0-444e-484e-b172-6e8bf9dfe8fc 2019-05-10 17:03:33.804917 7136 697 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 177\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 552\ncardnumber: 3846\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-248\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-248 189.186.37.251 ae8000c0-444e-484e-b172-6e8bf9dfe8fc 2019-05-10 17:03:33.842537 7137 553 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 176\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-05-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-303\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 4d85dd07-6305-4a05-94ce-8e86cf509e95 2019-05-10 17:49:41.702425 7138 567 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.37.251 4d85dd07-6305-4a05-94ce-8e86cf509e95 2019-05-10 17:49:41.731397 7139 553 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 ddd95764-8607-44e5-bdbf-7c374039c866 2019-05-10 17:49:49.723091 7140 698 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 176\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 553\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-303\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-303 189.186.37.251 ddd95764-8607-44e5-bdbf-7c374039c866 2019-05-10 17:49:49.757215 7141 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 02:04:52.555239000 Z\n- &1 2019-05-10 16:09:07.615367000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 17:51:00.201852469 Z\nsign_in_count:\n- 228\n- 229\n 458 \N 189.186.37.251 006bdb96-2593-489c-b5a6-2421ff8452bb 2019-05-10 17:51:00.207991 7142 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 8mwSoofvSTEDr6R9DpRP\n- wcnDLpLtQz49V5W8kMWH\n 459 \N 189.186.37.251 006bdb96-2593-489c-b5a6-2421ff8452bb 2019-05-10 17:51:00.223023 7143 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-09 17:27:21.682886000 Z\n- &1 2019-05-09 19:38:12.112025000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 18:17:09.105292121 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938442\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938442\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933994\n mask_addr: 4294967295\nsign_in_count:\n- 186\n- 187\n 374 \N 200.68.134.42 41e17243-9703-4ab4-81dc-4019916a7dbe 2019-05-10 18:17:09.114659 7144 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gSY3jH9tZksxc2L3oy5d\n- mryxPXyLx2YtgEfNGr_w\n 375 \N 200.68.134.42 41e17243-9703-4ab4-81dc-4019916a7dbe 2019-05-10 18:17:09.131498 7145 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 16:09:07.615367000 Z\n- &1 2019-05-10 17:51:00.201852000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 18:53:25.435145652 Z\nsign_in_count:\n- 229\n- 230\n 460 \N 189.186.37.251 83c46097-7ed4-45d1-938a-11916a9ead25 2019-05-10 18:53:25.441908 7146 3 User \N \N 3 User \N update ---\nunique_session_id:\n- wcnDLpLtQz49V5W8kMWH\n- 3mAqp9xW78Zadxpzux8i\n 461 \N 189.186.37.251 83c46097-7ed4-45d1-938a-11916a9ead25 2019-05-10 18:53:25.460309 7147 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 17:51:00.201852000 Z\n- &1 2019-05-10 18:53:25.435145000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 18:53:54.349516391 Z\nsign_in_count:\n- 230\n- 231\n 462 \N 189.186.37.251 0994208b-2441-4cff-8a80-ac37a060c415 2019-05-10 18:53:54.358261 7148 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 3mAqp9xW78Zadxpzux8i\n- dBC4xVhEEbxK3GU6E7JQ\n 463 \N 189.186.37.251 0994208b-2441-4cff-8a80-ac37a060c415 2019-05-10 18:53:54.376392 7149 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-09 15:38:05.705975000 Z\n- &1 2019-05-10 16:07:17.372550000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 19:26:16.028009707 Z\nsign_in_count:\n- 106\n- 107\n 217 \N 189.186.37.251 f1585f07-3911-4ff1-a8d4-c35eec6d95e9 2019-05-10 19:26:16.048812 7150 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 3jTA7dcpCGyv6DiTz6xZ\n- upxPNp_vERRvhKsqeJJC\n 218 \N 189.186.37.251 f1585f07-3911-4ff1-a8d4-c35eec6d95e9 2019-05-10 19:26:16.067838 7151 554 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 176\namount: !ruby/object:BigDecimal 18:0.49052E3\ntax: !ruby/object:BigDecimal 18:0.7848E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-05-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-304\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 2fac53a4-c940-403c-ae9a-6246250d9fb2 2019-05-10 19:34:29.055677 7266 572 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 b40043d1-b7bc-411a-8acf-d793eef51659 2019-05-12 00:08:34.230721 7152 139 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.37.251 2fac53a4-c940-403c-ae9a-6246250d9fb2 2019-05-10 19:34:29.092876 7153 554 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-304 cancelada. 189.186.37.251 90458e98-811a-4de1-8c48-3627a83cfbb3 2019-05-10 19:34:37.426823 7154 139 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.37.251 90458e98-811a-4de1-8c48-3627a83cfbb3 2019-05-10 19:34:37.463097 7155 94 Customer \N \N 2 User \N create ---\nnick_name: ALEJANDRA RAMOS\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ALEJANDRA RAMOS fue registrado. 189.186.37.251 e677d689-8cf5-44fc-acb1-1e5b04108ed2 2019-05-10 19:36:10.763481 7156 555 Sale \N \N 2 User \N create ---\ncustomer_id: 94\nuser_id: 2\nopen_cash_register_id: 176\namount: !ruby/object:BigDecimal 18:0.49052E3\ntax: !ruby/object:BigDecimal 18:0.7848E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-05-10\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-305\nexpiration_date: 2019-06-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 f583189d-c6f1-4a97-a282-46b16f76348f 2019-05-10 19:36:28.561399 7157 139 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.37.251 f583189d-c6f1-4a97-a282-46b16f76348f 2019-05-10 19:36:28.593684 7158 699 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 176\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 555\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-305\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-305 189.186.37.251 9d92f824-30e8-4f45-ad02-0ae413405198 2019-05-10 19:36:38.671978 7159 555 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 20cd238b-63dc-4c23-adbf-832ee9160bb9 2019-05-10 19:36:40.380665 7160 556 Sale \N \N 3 User \N create ---\ncustomer_id: 69\nuser_id: 3\nopen_cash_register_id: 177\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-05-10\nsaletype: 0\nseller_id: 4\nsale_code: PV2-V-249\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 ee670410-b0fe-4df0-a19f-372da968ca53 2019-05-10 19:53:31.235692 7161 593 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 5 \N 189.186.37.251 ee670410-b0fe-4df0-a19f-372da968ca53 2019-05-10 19:53:31.27094 7162 557 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 177\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-05-10\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-250\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 4ea6dfe6-8d26-4b9e-a5bc-8867f963e1c4 2019-05-10 20:16:01.4401 7163 495 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.37.251 4ea6dfe6-8d26-4b9e-a5bc-8867f963e1c4 2019-05-10 20:16:01.489221 7164 557 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 f6beb529-ada3-46b8-ad34-96e784daa6d2 2019-05-10 20:16:08.057536 7165 700 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 177\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 557\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-250\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-250 189.186.37.251 f6beb529-ada3-46b8-ad34-96e784daa6d2 2019-05-10 20:16:08.081465 7166 558 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 177\namount: !ruby/object:BigDecimal 18:0.129224E4\ntax: !ruby/object:BigDecimal 18:0.20676E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2019-05-10\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-251\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 6438c2d1-eb7a-4bde-8b84-36ea2d17f907 2019-05-10 20:18:51.213129 7167 346 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.37.251 6438c2d1-eb7a-4bde-8b84-36ea2d17f907 2019-05-10 20:18:51.245316 7168 558 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 ec704233-d56c-4a00-a004-f33d89271c8b 2019-05-10 20:19:46.397311 7169 701 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 177\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 558\ncardnumber: 5533\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-251\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-251 189.186.37.251 ec704233-d56c-4a00-a004-f33d89271c8b 2019-05-10 20:19:46.421598 7170 559 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 176\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-05-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-306\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 4b6b6c9f-47b1-4beb-bd7d-b4e42f8b509d 2019-05-10 20:40:44.611785 7171 615 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.251 4b6b6c9f-47b1-4beb-bd7d-b4e42f8b509d 2019-05-10 20:40:44.643515 7172 559 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 5b89cf73-39b8-40d8-b607-fc12b6fe8762 2019-05-10 20:40:59.334637 7173 702 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 176\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 559\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-306\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-306 189.186.37.251 5b89cf73-39b8-40d8-b607-fc12b6fe8762 2019-05-10 20:40:59.37227 7314 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-12 01:08:08.694868000 Z\n- &1 2019-05-12 19:36:23.052203000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-12 20:46:30.160232795 Z\nsign_in_count:\n- 160\n- 161\n 322 \N 189.186.37.251 55fc05ba-9238-41c8-84cd-85cb85e71504 2019-05-12 20:46:30.167306 7174 560 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 176\namount: !ruby/object:BigDecimal 18:0.65245E3\ntax: !ruby/object:BigDecimal 18:0.9655E2\ndiscount: !ruby/object:BigDecimal 18:0.49E2\ntotal: !ruby/object:BigDecimal 18:0.7E3\nstatus: 0\ndate_sale: 2019-05-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-307\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 bb7d03e5-52aa-43fb-9174-3c1d58b6211c 2019-05-10 20:58:30.80804 7175 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 23 \N 189.186.37.251 bb7d03e5-52aa-43fb-9174-3c1d58b6211c 2019-05-10 20:58:30.851556 7176 560 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 d112ca20-7494-4573-b190-fcf1e3451c53 2019-05-10 20:59:23.627261 7177 703 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 176\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.7E3\nmove_type: '1'\nsale_id: 560\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-307\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-307 189.186.37.251 d112ca20-7494-4573-b190-fcf1e3451c53 2019-05-10 20:59:23.659001 7178 704 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 176\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.369E3\nmove_type: '1'\nsale_id: 555\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.369E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-305 189.186.37.251 da241448-3895-4853-875d-8d9a14ec40b0 2019-05-10 21:11:31.53328 7179 555 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 275a64c7-0d13-421c-a5c2-6090f645dd2f 2019-05-10 21:11:32.583005 7180 561 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 177\namount: !ruby/object:BigDecimal 18:0.35E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.35E3\ntotal: !ruby/object:BigDecimal 18:0.0\nstatus: 0\ndate_sale: 2019-05-10\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-252\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 afdeb88d-859a-4f2d-8b7d-48508869fa35 2019-05-10 21:18:21.81493 7181 365 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.44E2\n- !ruby/object:BigDecimal 18:0.43E2\n 11 \N 189.186.37.251 afdeb88d-859a-4f2d-8b7d-48508869fa35 2019-05-10 21:18:21.846166 7182 561 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 2cd49d3e-9adc-409a-8133-bd93de3bd993 2019-05-10 21:18:26.372052 7183 705 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 177\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 561\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-252\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-252 189.186.37.251 2cd49d3e-9adc-409a-8133-bd93de3bd993 2019-05-10 21:18:26.394529 7184 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 01:56:24.841809000 Z\n- &1 2019-05-10 02:03:20.632670000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 21:29:38.355910683 Z\nsign_in_count:\n- 154\n- 155\n 310 \N 189.186.37.251 690cfabe-6664-4f58-9af6-e8f607caf5d2 2019-05-10 21:29:38.381658 7185 12 User \N \N 12 User \N update ---\nunique_session_id:\n- eK4qoVitCuzhjNrJSj-1\n- eT1ubJkyxTrhPbtRzWnu\n 311 \N 189.186.37.251 690cfabe-6664-4f58-9af6-e8f607caf5d2 2019-05-10 21:29:38.404976 7186 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 18:53:25.435145000 Z\n- &1 2019-05-10 18:53:54.349516000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-10 21:32:11.350605334 Z\nsign_in_count:\n- 231\n- 232\n 464 \N 189.186.37.251 ac599f85-77b3-48f4-98ea-e67730b2b827 2019-05-10 21:32:11.355984 7187 3 User \N \N 3 User \N update ---\nunique_session_id:\n- dBC4xVhEEbxK3GU6E7JQ\n- J3cmGLh1K5cqxwwFteZU\n 465 \N 189.186.37.251 ac599f85-77b3-48f4-98ea-e67730b2b827 2019-05-10 21:32:11.370124 7188 174 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 177\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.2797E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.706E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1206E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 155363c0-2c70-4118-9e5d-c0ec498e27ba 2019-05-10 21:51:07.220013 7189 177 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 155363c0-2c70-4118-9e5d-c0ec498e27ba 2019-05-10 21:51:07.234859 7190 175 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 176\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2567E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.792E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3292E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 ab4db1cb-3630-4b0b-acd8-6f8aa1e3f299 2019-05-10 21:57:05.364925 7191 176 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 ab4db1cb-3630-4b0b-acd8-6f8aa1e3f299 2019-05-10 21:57:05.384125 7192 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 16:07:17.372550000 Z\n- &1 2019-05-10 19:26:16.028009000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-11 16:15:01.630270025 Z\nsign_in_count:\n- 107\n- 108\n 219 \N 189.186.37.251 5f3a3109-baf6-4a93-855d-461e98fcf191 2019-05-11 16:15:01.669188 7193 2 User \N \N 2 User \N update ---\nunique_session_id:\n- upxPNp_vERRvhKsqeJJC\n- uAemqQR1WQ552sCBuKxU\n 220 \N 189.186.37.251 5f3a3109-baf6-4a93-855d-461e98fcf191 2019-05-11 16:15:01.693628 7194 178 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.792E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 792.0 189.186.37.251 37007e83-4761-4a36-8977-1aa5222b6c01 2019-05-11 16:16:01.236946 7195 562 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 178\namount: !ruby/object:BigDecimal 18:0.58621E3\ntax: !ruby/object:BigDecimal 18:0.9379E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.68E3\nstatus: 0\ndate_sale: 2019-05-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-308\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 407a0b23-ceb6-4b42-b774-6600302b50fd 2019-05-11 16:17:18.65982 7196 85 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.37.251 407a0b23-ceb6-4b42-b774-6600302b50fd 2019-05-11 16:17:18.695999 7197 562 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 b793f7ca-afda-4f54-ad67-b660a8a76429 2019-05-11 16:17:57.239283 32598 2411 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.145.62 6a4c4a42-ce0d-45fe-b799-9761370ffb24 2020-03-28 19:02:10.18269 7198 706 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 178\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.68E3\nmove_type: '1'\nsale_id: 562\ncardnumber: 6819\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-308\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-308 189.186.37.251 b793f7ca-afda-4f54-ad67-b660a8a76429 2019-05-11 16:17:57.266285 7199 563 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 178\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-05-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-309\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 f86aa578-8c08-4a8a-8b9d-ddb6c6fe05e7 2019-05-11 16:33:05.463957 7200 615 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.37.251 f86aa578-8c08-4a8a-8b9d-ddb6c6fe05e7 2019-05-11 16:33:05.493324 7201 563 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 83cb48fc-2304-41d7-b59b-c5f9dabd4b67 2019-05-11 16:33:36.083699 7202 707 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 178\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 563\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-309\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-309 189.186.37.251 83cb48fc-2304-41d7-b59b-c5f9dabd4b67 2019-05-11 16:33:36.11642 7203 564 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 178\namount: !ruby/object:BigDecimal 18:0.50776E3\ntax: !ruby/object:BigDecimal 18:0.8124E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2019-05-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-310\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 0d235db6-1854-473b-af1f-613c03c40adb 2019-05-11 17:05:58.996466 7204 247 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.37.251 0d235db6-1854-473b-af1f-613c03c40adb 2019-05-11 17:05:59.037342 7205 564 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 dc3bd6c7-f210-4582-a1a1-40779db16e47 2019-05-11 17:07:08.718237 7206 708 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 178\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.589E3\nmove_type: '1'\nsale_id: 564\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-310\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.589E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-310 189.186.37.251 dc3bd6c7-f210-4582-a1a1-40779db16e47 2019-05-11 17:07:08.741734 7207 62 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 178\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: COMIDA ROCIO\nexpense_date: 2019-05-11\nexpense_code: PV1-E-56\n 1 Egreso por 50.0 registrado 189.186.37.251 1720cb75-3f48-4ee0-9ca8-bac5af08404c 2019-05-11 17:10:28.141731 7208 709 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 178\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 62\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 1720cb75-3f48-4ee0-9ca8-bac5af08404c 2019-05-11 17:10:28.171677 7209 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 18:53:54.349516000 Z\n- &1 2019-05-10 21:32:11.350605000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-11 17:23:43.540158100 Z\nsign_in_count:\n- 232\n- 233\n 466 \N 189.186.37.251 e332d250-047c-4822-b770-774109bec33b 2019-05-11 17:23:43.548495 7210 3 User \N \N 3 User \N update ---\nunique_session_id:\n- J3cmGLh1K5cqxwwFteZU\n- znCneee3FPix2VTyRJJE\n 467 \N 189.186.37.251 e332d250-047c-4822-b770-774109bec33b 2019-05-11 17:23:43.567429 7211 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 02:03:20.632670000 Z\n- &1 2019-05-10 21:29:38.355910000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-11 18:20:11.468176172 Z\nsign_in_count:\n- 155\n- 156\n 312 \N 189.186.37.251 0f994178-bb4d-41af-90ea-23122e835500 2019-05-11 18:20:11.473663 7212 12 User \N \N 12 User \N update ---\nunique_session_id:\n- eT1ubJkyxTrhPbtRzWnu\n- iiZ3F5Rxo6V4UHPaVYvr\n 313 \N 189.186.37.251 0f994178-bb4d-41af-90ea-23122e835500 2019-05-11 18:20:11.491135 7213 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 21:32:11.350605000 Z\n- &1 2019-05-11 17:23:43.540158000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-11 18:21:31.570730418 Z\nsign_in_count:\n- 233\n- 234\n 468 \N 189.186.37.251 f5c2771b-5cc5-4697-af71-c887c70b41b9 2019-05-11 18:21:31.577971 7214 3 User \N \N 3 User \N update ---\nunique_session_id:\n- znCneee3FPix2VTyRJJE\n- Byt7gn7zhqaosTyH9cqo\n 469 \N 189.186.37.251 f5c2771b-5cc5-4697-af71-c887c70b41b9 2019-05-11 18:21:31.592174 7215 95 Customer \N \N 2 User \N create ---\nnick_name: MARTHA OSUNA\nphone: "(667) 162-657_"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARTHA OSUNA fue registrado. 189.186.37.251 c08cb870-e1ba-4858-ab56-8cad668707b0 2019-05-11 18:38:40.995297 7216 565 Sale \N \N 2 User \N create ---\ncustomer_id: 95\nuser_id: 2\nopen_cash_register_id: 178\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-05-11\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-311\nexpiration_date: 2019-06-15\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 32fe4587-9794-4985-986c-94e99e3a86de 2019-05-11 18:39:15.817361 7217 542 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.37.251 32fe4587-9794-4985-986c-94e99e3a86de 2019-05-11 18:39:15.842791 7218 710 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 178\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 565\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-311\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-311 189.186.37.251 58a5e868-cf30-45f2-8edb-7917e45cf468 2019-05-11 18:39:23.664984 7219 565 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 0d06deb8-2bb2-45b9-af33-344bee6b91e8 2019-05-11 18:39:28.975751 7315 12 User \N \N 12 User \N update ---\nunique_session_id:\n- yuLFHFZrc8BDo7c9bmVM\n- Djosb57Yy8PUt8PXN7qU\n 323 \N 189.186.37.251 55fc05ba-9238-41c8-84cd-85cb85e71504 2019-05-12 20:46:30.184463 7220 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-09 19:38:12.112025000 Z\n- &1 2019-05-10 18:17:09.105292000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-11 19:02:58.307354502 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938442\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933994\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933994\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 187\n- 188\n 376 \N 189.186.50.198 57f403af-2a79-4491-aa12-f78d61b79afc 2019-05-11 19:02:58.343458 7221 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mryxPXyLx2YtgEfNGr_w\n- rFRrMxQuHmxa3PLVPiHw\n 377 \N 189.186.50.198 57f403af-2a79-4491-aa12-f78d61b79afc 2019-05-11 19:02:58.372016 7222 179 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.706E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 706.0 189.186.37.251 b14a0001-b098-4708-80de-549af597ab3a 2019-05-11 19:28:38.340955 7223 566 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 179\namount: !ruby/object:BigDecimal 18:0.58595E3\ntax: !ruby/object:BigDecimal 18:0.8305E2\ndiscount: !ruby/object:BigDecimal 18:0.669E2\ntotal: !ruby/object:BigDecimal 18:0.6021E3\nstatus: 0\ndate_sale: 2019-05-11\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-253\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 bac34bde-9e50-494b-993d-7a4d924fb324 2019-05-11 19:28:57.545873 7224 436 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.37.251 bac34bde-9e50-494b-993d-7a4d924fb324 2019-05-11 19:28:57.579645 7225 566 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-253 cancelada. 189.186.37.251 215a8dc3-2d53-40d7-9d9f-0262d90b3440 2019-05-11 19:29:38.109218 7226 436 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.37.251 215a8dc3-2d53-40d7-9d9f-0262d90b3440 2019-05-11 19:29:38.137005 7227 567 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 179\namount: !ruby/object:BigDecimal 18:0.58624E3\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.69E2\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2019-05-11\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-254\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 faf8b2ac-f437-41f9-9136-699685f72a86 2019-05-11 19:30:03.217875 7228 436 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.37.251 faf8b2ac-f437-41f9-9136-699685f72a86 2019-05-11 19:30:03.252941 7229 567 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 d16a08da-289e-4763-b502-bd05a3534e55 2019-05-11 19:30:06.317594 7230 711 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 179\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 567\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-254\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-254 189.186.37.251 d16a08da-289e-4763-b502-bd05a3534e55 2019-05-11 19:30:06.365652 7231 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 18:17:09.105292000 Z\n- &1 2019-05-11 19:02:58.307354000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-11 19:35:15.236814178 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933994\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 188\n- 189\n 378 \N 189.186.50.198 faf67ed4-2a26-4e79-9b69-552f2bbceb15 2019-05-11 19:35:15.243957 7232 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rFRrMxQuHmxa3PLVPiHw\n- uxX6jLg2nyhugko_QcYq\n 379 \N 189.186.50.198 faf67ed4-2a26-4e79-9b69-552f2bbceb15 2019-05-11 19:35:15.270155 7233 568 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 178\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-05-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-312\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 c07383f5-f6b4-4e6f-b7e1-729132d061a7 2019-05-11 19:52:20.580848 7234 462 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.37.251 c07383f5-f6b4-4e6f-b7e1-729132d061a7 2019-05-11 19:52:20.61331 7235 568 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 7de722d1-d510-4be4-8de1-55676e7d3771 2019-05-11 19:52:41.460813 7236 712 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 178\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.489E3\nmove_type: '1'\nsale_id: 568\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-312\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.489E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-312 189.186.37.251 7de722d1-d510-4be4-8de1-55676e7d3771 2019-05-11 19:52:41.490891 7237 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-11 17:23:43.540158000 Z\n- &1 2019-05-11 18:21:31.570730000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-11 20:03:00.855584387 Z\nsign_in_count:\n- 234\n- 235\n 470 \N 189.186.37.251 db4cd870-eb3c-47ca-87cd-b4113a8777c6 2019-05-11 20:03:00.887432 7238 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Byt7gn7zhqaosTyH9cqo\n- ZmCGDKU6TRcTaiW5yup1\n 471 \N 189.186.37.251 db4cd870-eb3c-47ca-87cd-b4113a8777c6 2019-05-11 20:03:00.913848 7239 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 21:29:38.355910000 Z\n- &1 2019-05-11 18:20:11.468176000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-11 20:28:44.394497111 Z\nsign_in_count:\n- 156\n- 157\n 314 \N 189.186.37.251 3db63d63-1ed4-4137-8673-47341f081dd8 2019-05-11 20:28:44.401578 7240 12 User \N \N 12 User \N update ---\nunique_session_id:\n- iiZ3F5Rxo6V4UHPaVYvr\n- uxcUYqQyQKd8x3X69r7n\n 315 \N 189.186.37.251 3db63d63-1ed4-4137-8673-47341f081dd8 2019-05-11 20:28:44.415309 7241 569 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 178\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-05-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-313\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 ef35ac21-4569-4df7-8191-541d00ce111b 2019-05-11 21:04:51.437689 7242 528 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 ef35ac21-4569-4df7-8191-541d00ce111b 2019-05-11 21:04:51.499448 7243 569 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 5fc50d5e-88dd-4575-8a8e-87ee008d658d 2019-05-11 21:06:00.213949 7244 713 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 178\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 569\ncardnumber: 460\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-313\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-313 189.186.37.251 5fc50d5e-88dd-4575-8a8e-87ee008d658d 2019-05-11 21:06:00.250296 7245 714 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 178\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.399E3\nmove_type: '1'\nsale_id: 569\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-313\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.399E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-313 189.186.37.251 248f86c0-0699-4459-bb62-3a56c5f2e159 2019-05-11 21:06:23.934259 7246 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-11 19:02:58.307354000 Z\n- &1 2019-05-11 19:35:15.236814000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-11 21:46:36.174963723 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938451\n mask_addr: 4294967295\nsign_in_count:\n- 189\n- 190\n 380 \N 200.68.151.147 55983af0-4b64-4ed7-9f83-550dcf021058 2019-05-11 21:46:36.182354 7247 4 User \N \N 4 User \N update ---\nunique_session_id:\n- uxX6jLg2nyhugko_QcYq\n- TLre2ySx8Ajm4zEy1pF5\n 381 \N 200.68.151.147 55983af0-4b64-4ed7-9f83-550dcf021058 2019-05-11 21:46:36.197776 7248 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-11 18:21:31.570730000 Z\n- &1 2019-05-11 20:03:00.855584000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-11 22:53:48.418299997 Z\nsign_in_count:\n- 235\n- 236\n 472 \N 189.186.37.251 46c349ff-cdf4-4579-9ba4-b4648f4e7d97 2019-05-11 22:53:48.426357 7249 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ZmCGDKU6TRcTaiW5yup1\n- ywzunYTvVSF8hHGqDXJj\n 473 \N 189.186.37.251 46c349ff-cdf4-4579-9ba4-b4648f4e7d97 2019-05-11 22:53:48.445142 7250 570 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 179\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-05-11\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-255\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 9aaa959d-1f98-4ea2-86c1-f49985525160 2019-05-11 22:54:21.519452 7251 437 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 189.186.37.251 9aaa959d-1f98-4ea2-86c1-f49985525160 2019-05-11 22:54:21.552822 7252 570 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 30cc5d62-cc13-419d-accc-d710f0463b40 2019-05-11 22:54:26.176505 7253 715 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 179\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.749E3\nmove_type: '1'\nsale_id: 570\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-255\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.251E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-255 189.186.37.251 30cc5d62-cc13-419d-accc-d710f0463b40 2019-05-11 22:54:26.207682 7254 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-11 18:20:11.468176000 Z\n- &1 2019-05-11 20:28:44.394497000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-11 22:59:16.560873928 Z\nsign_in_count:\n- 157\n- 158\n 316 \N 189.186.37.251 8ed1a875-fbf3-4cb2-ab8d-3cdc1c98b9c1 2019-05-11 22:59:16.567483 7255 12 User \N \N 12 User \N update ---\nunique_session_id:\n- uxcUYqQyQKd8x3X69r7n\n- z6zrppQsMYi5D_Qxda34\n 317 \N 189.186.37.251 8ed1a875-fbf3-4cb2-ab8d-3cdc1c98b9c1 2019-05-11 22:59:16.583306 7256 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-11 20:03:00.855584000 Z\n- &1 2019-05-11 22:53:48.418299000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-11 23:00:32.097772650 Z\nsign_in_count:\n- 236\n- 237\n 474 \N 189.186.37.251 9a7582d1-47e6-436c-bc7b-3bad9c1bf5c3 2019-05-11 23:00:32.107306 7257 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ywzunYTvVSF8hHGqDXJj\n- _2HooPi2MmuuTymQxu1M\n 475 \N 189.186.37.251 9a7582d1-47e6-436c-bc7b-3bad9c1bf5c3 2019-05-11 23:00:32.127751 7258 571 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 178\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-05-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-314\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 da6406cf-d102-4ca7-bc12-a474d76e1571 2019-05-11 23:14:57.349218 7259 488 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.37.251 da6406cf-d102-4ca7-bc12-a474d76e1571 2019-05-11 23:14:57.388103 7260 571 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 317b9713-f2eb-4fd3-82c7-caa173b1d93c 2019-05-11 23:15:03.345387 7261 716 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 178\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 571\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-314\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1399E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-314 189.186.37.251 317b9713-f2eb-4fd3-82c7-caa173b1d93c 2019-05-11 23:15:03.376846 7262 63 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 178\nquantity: !ruby/object:BigDecimal 18:0.85E3\nstatus: 1\nobservations: SUELDO YARETZI\nexpense_date: 2019-05-11\nexpense_code: PV1-E-57\n 1 Egreso por 850.0 registrado 189.186.37.251 681bb669-c840-402d-96c5-9846e85b5915 2019-05-11 23:16:33.016724 7263 717 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 178\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.85E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 63\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 681bb669-c840-402d-96c5-9846e85b5915 2019-05-11 23:16:33.044885 7264 572 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 178\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-05-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-315\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 23c470a1-5ddf-4cc7-9e73-91acb5647697 2019-05-12 00:08:15.493388 7265 89 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.37.251 23c470a1-5ddf-4cc7-9e73-91acb5647697 2019-05-12 00:08:15.537219 7267 718 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 178\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 572\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-315\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-315 189.186.37.251 b40043d1-b7bc-411a-8acf-d793eef51659 2019-05-12 00:08:34.263879 7268 64 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 178\nquantity: !ruby/object:BigDecimal 18:0.12E4\nstatus: 1\nobservations: SUELDO ANABELLY\nexpense_date: 2019-05-11\nexpense_code: PV1-E-58\n 1 Egreso por 1200.0 registrado 189.186.37.251 14034280-156d-4fac-ad9a-cbce297bbb94 2019-05-12 00:14:05.437168 7269 719 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 178\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 64\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 14034280-156d-4fac-ad9a-cbce297bbb94 2019-05-12 00:14:05.466801 7270 720 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 174\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 718dc007-edfa-4dfe-9b08-594222255824 2019-05-12 00:16:52.091467 7271 174 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 718dc007-edfa-4dfe-9b08-594222255824 2019-05-12 00:16:52.125069 7272 720 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 49\n- 178\n 2 movimiento de efectivo por venta con folio PV1-V-98 189.186.37.251 718dc007-edfa-4dfe-9b08-594222255824 2019-05-12 00:16:52.162352 7273 573 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 178\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-05-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-316\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 d43e2401-1cbf-4288-bd5c-689c70b7abde 2019-05-12 00:55:14.692119 7274 72 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.37.251 d43e2401-1cbf-4288-bd5c-689c70b7abde 2019-05-12 00:55:14.741284 7275 573 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 176d702c-c7fb-45cf-8782-6f93056ab575 2019-05-12 00:55:23.97669 7276 721 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 178\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 573\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-316\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-316 189.186.37.251 176d702c-c7fb-45cf-8782-6f93056ab575 2019-05-12 00:55:24.01172 7277 574 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 179\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-05-11\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-256\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 9774b429-624e-4d0a-ad0f-5e74a6fe7063 2019-05-12 01:04:11.900706 7278 316 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.37.251 9774b429-624e-4d0a-ad0f-5e74a6fe7063 2019-05-12 01:04:11.956172 7279 574 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 748e561e-8a45-4998-9c90-0972003f7399 2019-05-12 01:05:05.433207 7280 722 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 179\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 574\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-256\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-256 189.186.37.251 748e561e-8a45-4998-9c90-0972003f7399 2019-05-12 01:05:05.477897 7281 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-11 20:28:44.394497000 Z\n- &1 2019-05-11 22:59:16.560873000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-12 01:08:08.694868820 Z\nsign_in_count:\n- 158\n- 159\n 318 \N 189.186.37.251 4977f49a-d0a4-4483-bbe9-97d9b39167ef 2019-05-12 01:08:08.704643 7282 12 User \N \N 12 User \N update ---\nunique_session_id:\n- z6zrppQsMYi5D_Qxda34\n- Zzs7guYjzxN1UPVGdMhq\n 319 \N 189.186.37.251 4977f49a-d0a4-4483-bbe9-97d9b39167ef 2019-05-12 01:08:08.727728 7283 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-11 22:53:48.418299000 Z\n- &1 2019-05-11 23:00:32.097772000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-12 01:09:20.522825195 Z\nsign_in_count:\n- 237\n- 238\n 476 \N 189.186.37.251 711ad471-127a-4859-b256-2270c7a201f4 2019-05-12 01:09:20.5301 7284 3 User \N \N 3 User \N update ---\nunique_session_id:\n- _2HooPi2MmuuTymQxu1M\n- kcrzCyYggpZPC6xX13_j\n 477 \N 189.186.37.251 711ad471-127a-4859-b256-2270c7a201f4 2019-05-12 01:09:20.548946 7285 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-11 23:00:32.097772000 Z\n- &1 2019-05-12 01:09:20.522825000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-12 01:09:35.099892423 Z\nsign_in_count:\n- 238\n- 239\n 478 \N 189.186.37.251 5ab38d45-3a8a-4f6e-9180-c44480a9931c 2019-05-12 01:09:35.110395 7286 3 User \N \N 3 User \N update ---\nunique_session_id:\n- kcrzCyYggpZPC6xX13_j\n- G4kK2PGM_jzxmnAWehLq\n 479 \N 189.186.37.251 5ab38d45-3a8a-4f6e-9180-c44480a9931c 2019-05-12 01:09:35.132396 7287 176 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 179\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1818E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.19E4\ncash_fund: !ruby/object:BigDecimal 18:0.624E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2524E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 e98507b2-e12b-4e05-bacc-48501f6f5d72 2019-05-12 01:55:35.757971 7288 179 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 e98507b2-e12b-4e05-bacc-48501f6f5d72 2019-05-12 01:55:35.780145 7289 65 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 178\nquantity: !ruby/object:BigDecimal 18:0.2038E4\nstatus: 1\nobservations: "SUELDO $628\\r\\nHRS EXTRA $330\\r\\nCOMISION SEMANA PASADA $200\\r\\nCOMISIIN\n SEMANA DOBLE $880"\nexpense_date: 2019-05-11\nexpense_code: PV1-E-59\n 1 Egreso por 2038.0 registrado 189.186.37.251 d4adb32a-6091-40d5-8e70-a91da7043103 2019-05-12 02:39:23.547905 7290 723 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 178\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2038E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 65\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 d4adb32a-6091-40d5-8e70-a91da7043103 2019-05-12 02:39:23.598445 7291 177 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 178\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6653E4\namount_out: !ruby/object:BigDecimal 18:0.4138E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.17E4\ncash_fund: !ruby/object:BigDecimal 18:0.527E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2227E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 7c3187b5-2b78-484e-8d1e-7b4149bd1aaf 2019-05-12 02:45:15.120234 7292 178 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 7c3187b5-2b78-484e-8d1e-7b4149bd1aaf 2019-05-12 02:45:15.140953 7293 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-12 01:09:20.522825000 Z\n- &1 2019-05-12 01:09:35.099892000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-12 16:03:35.042293323 Z\nsign_in_count:\n- 239\n- 240\n 480 \N 189.186.37.251 5c63e26c-fe91-441e-a24e-58321190d247 2019-05-12 16:03:35.073683 7294 3 User \N \N 3 User \N update ---\nunique_session_id:\n- G4kK2PGM_jzxmnAWehLq\n- QaXb1V7aqZPjs9w5rFD-\n 481 \N 189.186.37.251 5c63e26c-fe91-441e-a24e-58321190d247 2019-05-12 16:03:35.09997 7295 180 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.624E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 624.0 189.186.37.251 c82ccccf-e17b-43b0-a507-a17bbef93361 2019-05-12 16:07:32.512062 7296 575 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 180\namount: !ruby/object:BigDecimal 18:0.99052E3\ntax: !ruby/object:BigDecimal 18:0.15848E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1149E4\nstatus: 0\ndate_sale: 2019-05-12\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-257\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 0ac9411e-2f89-451f-85f5-ed00eba0a88c 2019-05-12 17:30:25.989576 7297 545 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.37.251 0ac9411e-2f89-451f-85f5-ed00eba0a88c 2019-05-12 17:30:26.034704 7298 575 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 b909b978-a34e-4560-bcce-4edbf977a3ae 2019-05-12 17:30:43.968288 7299 724 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 180\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1149E4\nmove_type: '1'\nsale_id: 575\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-257\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.115E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-257 189.186.37.251 b909b978-a34e-4560-bcce-4edbf977a3ae 2019-05-12 17:30:43.992387 7300 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-12 01:09:35.099892000 Z\n- &1 2019-05-12 16:03:35.042293000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-12 18:37:49.468828547 Z\nsign_in_count:\n- 240\n- 241\n 482 \N 189.186.37.251 5eb3395d-87be-4b0b-b726-492a195af3e8 2019-05-12 18:37:49.475585 7301 3 User \N \N 3 User \N update ---\nunique_session_id:\n- QaXb1V7aqZPjs9w5rFD-\n- K8TJExs6wRoFzJPSqxzc\n 483 \N 189.186.37.251 5eb3395d-87be-4b0b-b726-492a195af3e8 2019-05-12 18:37:49.491365 7302 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-12 16:03:35.042293000 Z\n- &1 2019-05-12 18:37:49.468828000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-12 18:38:44.231775519 Z\nsign_in_count:\n- 241\n- 242\n 484 \N 189.186.37.251 5b29f726-7b99-47a4-b611-5f3a74b77e83 2019-05-12 18:38:44.237569 7303 3 User \N \N 3 User \N update ---\nunique_session_id:\n- K8TJExs6wRoFzJPSqxzc\n- EFkXQ3snKBAs_wEJ5B-i\n 485 \N 189.186.37.251 5b29f726-7b99-47a4-b611-5f3a74b77e83 2019-05-12 18:38:44.251475 7304 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-11 22:59:16.560873000 Z\n- &1 2019-05-12 01:08:08.694868000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-12 19:36:23.052203327 Z\nsign_in_count:\n- 159\n- 160\n 320 \N 189.186.37.251 7b95edf8-27ba-4949-98c8-ab52acfa8aff 2019-05-12 19:36:23.060298 7305 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Zzs7guYjzxN1UPVGdMhq\n- yuLFHFZrc8BDo7c9bmVM\n 321 \N 189.186.37.251 7b95edf8-27ba-4949-98c8-ab52acfa8aff 2019-05-12 19:36:23.080436 7306 181 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.527E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 527.0 189.186.37.251 e8f54fd0-e04d-4f6e-a33a-3f8bb7ddbc75 2019-05-12 19:36:26.441814 7307 96 Customer \N \N 12 User \N create ---\nnick_name: MAYRA BELTRAN\nphone: "(667) 357-5697"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MAYRA BELTRAN fue registrado. 189.186.37.251 ef7cc1f2-50d5-47b8-bfc9-176eec98ccb2 2019-05-12 19:36:58.847114 7308 576 Sale \N \N 12 User \N create ---\ncustomer_id: 96\nuser_id: 12\nopen_cash_register_id: 181\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-05-12\nsaletype: 2\nseller_id: 8\nsale_code: PV1-V-317\nexpiration_date: 2019-06-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 4f26c6a7-0a4b-44ba-a555-c2a65cdc3ddf 2019-05-12 19:37:19.769299 7309 606 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.251 4f26c6a7-0a4b-44ba-a555-c2a65cdc3ddf 2019-05-12 19:37:19.817767 7310 725 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 181\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 576\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-317\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-317 189.186.37.251 2552e6b1-b8b7-4bd3-979e-58dab3c8a2a4 2019-05-12 19:37:49.210387 7311 576 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 729e25e7-8d25-40bb-90e4-e3ecd7b29fe1 2019-05-12 19:37:50.196959 7312 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-12 18:37:49.468828000 Z\n- &1 2019-05-12 18:38:44.231775000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-12 19:44:27.946797093 Z\nsign_in_count:\n- 242\n- 243\n 486 \N 189.186.37.251 7e14a44b-7a5c-4742-a5ac-7e11f76483da 2019-05-12 19:44:27.952769 7313 3 User \N \N 3 User \N update ---\nunique_session_id:\n- EFkXQ3snKBAs_wEJ5B-i\n- hYhyiQrmqVPYXQGBiJge\n 487 \N 189.186.37.251 7e14a44b-7a5c-4742-a5ac-7e11f76483da 2019-05-12 19:44:27.971316 7367 103 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.37.251 4093f6c7-4845-44ac-9f39-78bcce1e59ed 2019-05-14 16:42:33.405343 7316 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-12 18:38:44.231775000 Z\n- &1 2019-05-12 19:44:27.946797000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-12 20:47:23.773443307 Z\nsign_in_count:\n- 243\n- 244\n 488 \N 189.186.37.251 1f058c39-1bbd-451e-9ca0-567f8b10b30a 2019-05-12 20:47:23.779317 7317 3 User \N \N 3 User \N update ---\nunique_session_id:\n- hYhyiQrmqVPYXQGBiJge\n- FBszWcTzq3WriYFj5WCK\n 489 \N 189.186.37.251 1f058c39-1bbd-451e-9ca0-567f8b10b30a 2019-05-12 20:47:23.793067 7318 178 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 181\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.5E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.527E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1027E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 59a17543-3bc1-4d40-97e0-75cd5eb387df 2019-05-12 20:48:31.262926 7319 181 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 59a17543-3bc1-4d40-97e0-75cd5eb387df 2019-05-12 20:48:31.277132 7320 179 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 180\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1149E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.773E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1773E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 ef95d481-70e3-450a-91e9-f2ea326e45c5 2019-05-12 20:53:47.982927 7321 180 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 ef95d481-70e3-450a-91e9-f2ea326e45c5 2019-05-12 20:53:47.99703 7322 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-05-05 17:38:16.954192000 Z\n- &1 2019-05-09 22:12:31.890262000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-13 16:03:39.532471322 Z\nsign_in_count:\n- 62\n- 63\n 126 \N 189.186.37.251 90d89143-c368-40d6-b7d2-353de7451035 2019-05-13 16:03:39.58156 7323 10 User \N \N 10 User \N update ---\nunique_session_id:\n- JXY7CHms3NoTyJ-RyEPD\n- arj898yG8W7dosXp92wP\n 127 \N 189.186.37.251 90d89143-c368-40d6-b7d2-353de7451035 2019-05-13 16:03:39.62008 7324 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-10 19:26:16.028009000 Z\n- &1 2019-05-11 16:15:01.630270000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-13 16:07:47.882296567 Z\nsign_in_count:\n- 108\n- 109\n 221 \N 189.186.37.251 b0cb9c77-30fb-4d9c-8324-cd506dd6e463 2019-05-13 16:07:47.88981 7325 2 User \N \N 2 User \N update ---\nunique_session_id:\n- uAemqQR1WQ552sCBuKxU\n- JE1z6zzkT3Wb8sD4skdA\n 222 \N 189.186.37.251 b0cb9c77-30fb-4d9c-8324-cd506dd6e463 2019-05-13 16:07:47.909671 7326 182 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.527E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 527.0 189.186.37.251 6972da97-13f8-43f0-b2c9-0b855fdc7da2 2019-05-13 16:12:35.751175 7327 183 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.773E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 773.0 189.186.37.251 f4dde9d1-4c87-438e-bc85-fedff5c328f5 2019-05-13 16:22:12.504117 7328 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-11 19:35:15.236814000 Z\n- &1 2019-05-11 21:46:36.174963000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-13 20:00:31.471380943 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938451\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938451\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 190\n- 191\n 382 \N 189.186.50.198 d51e3282-edab-414f-8edf-f2df6de16c9f 2019-05-13 20:00:31.483642 7329 4 User \N \N 4 User \N update ---\nunique_session_id:\n- TLre2ySx8Ajm4zEy1pF5\n- Q7xaDTHxJVvzV-bhqPDh\n 383 \N 189.186.50.198 d51e3282-edab-414f-8edf-f2df6de16c9f 2019-05-13 20:00:31.504309 7330 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-11 21:46:36.174963000 Z\n- &1 2019-05-13 20:00:31.471380000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-13 21:08:29.023304670 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938451\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938152\n mask_addr: 4294967295\nsign_in_count:\n- 191\n- 192\n 384 \N 200.68.150.104 f8908d8b-2ef2-4f90-8f9b-baad02f422ec 2019-05-13 21:08:29.031804 7331 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Q7xaDTHxJVvzV-bhqPDh\n- "-9gLfjj74WRc_hPMeY6w"\n 385 \N 200.68.150.104 f8908d8b-2ef2-4f90-8f9b-baad02f422ec 2019-05-13 21:08:29.051168 7332 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-12 19:44:27.946797000 Z\n- &1 2019-05-12 20:47:23.773443000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-13 21:31:01.104972271 Z\nsign_in_count:\n- 244\n- 245\n 490 \N 189.186.37.251 bec03211-a32a-443b-a36c-6fbd33257d51 2019-05-13 21:31:01.114143 7333 3 User \N \N 3 User \N update ---\nunique_session_id:\n- FBszWcTzq3WriYFj5WCK\n- p4Y96SJomBzwDgcYbL25\n 491 \N 189.186.37.251 bec03211-a32a-443b-a36c-6fbd33257d51 2019-05-13 21:31:01.133784 7334 577 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 182\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2019-05-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-318\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 30f8cbcd-951f-47d3-8cec-9a7efec828bf 2019-05-13 23:47:19.58559 7335 601 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.251 30f8cbcd-951f-47d3-8cec-9a7efec828bf 2019-05-13 23:47:19.6419 7336 577 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 d75c2582-7f09-4422-8323-d6a2a4697818 2019-05-13 23:48:25.72594 7337 726 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 182\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 577\ncardnumber: 1679\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-318\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-318 189.186.37.251 d75c2582-7f09-4422-8323-d6a2a4697818 2019-05-13 23:48:25.766917 7338 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-13 20:00:31.471380000 Z\n- &1 2019-05-13 21:08:29.023304000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-14 00:19:28.569002760 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938152\n mask_addr: 4294967295\nsign_in_count:\n- 192\n- 193\n 386 \N 200.68.150.104 293d5ec6-da8e-4a60-b300-ae63a6ff2064 2019-05-14 00:19:28.612504 7339 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-9gLfjj74WRc_hPMeY6w"\n- uVZjo_QujwX5zSmtH_3R\n 387 \N 200.68.150.104 293d5ec6-da8e-4a60-b300-ae63a6ff2064 2019-05-14 00:19:28.642483 7340 578 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 183\namount: !ruby/object:BigDecimal 18:0.136469E4\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.719E3\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-05-13\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-258\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 d2a08df1-7227-421a-a5e4-9f03408d314b 2019-05-14 00:23:59.490808 7341 303 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.37.251 d2a08df1-7227-421a-a5e4-9f03408d314b 2019-05-14 00:23:59.542263 7342 304 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.37.251 d2a08df1-7227-421a-a5e4-9f03408d314b 2019-05-14 00:23:59.600356 7343 578 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 ad33b3d0-3002-4d68-90b1-e085dacd780c 2019-05-14 00:24:18.791373 7344 727 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 183\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 578\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-258\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '12345678'\n 1 movimiento de efectivo por venta con folio PV2-V-258 189.186.37.251 ad33b3d0-3002-4d68-90b1-e085dacd780c 2019-05-14 00:24:18.830462 7345 291 Sale \N \N 10 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.37.251 57fc2a58-b948-41b4-8139-d4f6e82e995f 2019-05-14 00:26:43.009915 7346 546 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 189.186.37.251 57fc2a58-b948-41b4-8139-d4f6e82e995f 2019-05-14 00:26:43.044371 7347 296 Sale \N \N 10 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.37.251 5540e272-e7ea-4fb1-b816-696258b5a94b 2019-05-14 00:27:02.323106 7348 457 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.37.251 5540e272-e7ea-4fb1-b816-696258b5a94b 2019-05-14 00:27:02.363115 7349 308 Sale \N \N 10 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.37.251 f25f06ba-cdab-4ace-87b7-5dc80c64538d 2019-05-14 00:27:11.926325 7350 411 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.37.251 f25f06ba-cdab-4ace-87b7-5dc80c64538d 2019-05-14 00:27:11.963094 7351 66 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 182\nquantity: !ruby/object:BigDecimal 18:0.7E2\nstatus: 1\nobservations: "$50 comida $20 me falto de comisiones jaja"\nexpense_date: 2019-05-13\nexpense_code: PV1-E-60\n 1 Egreso por 70.0 registrado 189.186.37.251 75ef14c6-a294-4409-b635-cf3d7261e7e9 2019-05-14 01:33:43.123219 7352 728 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 182\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 66\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 75ef14c6-a294-4409-b635-cf3d7261e7e9 2019-05-14 01:33:43.155053 7353 180 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 182\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1499E4\namount_out: !ruby/object:BigDecimal 18:0.7E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.457E3\nphysical_cash: !ruby/object:BigDecimal 18:0.457E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 72e431e9-86a5-4ada-8e6a-3e8c1809e336 2019-05-14 01:59:11.060859 7354 182 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 72e431e9-86a5-4ada-8e6a-3e8c1809e336 2019-05-14 01:59:11.083232 7355 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-05-09 22:12:31.890262000 Z\n- &1 2019-05-13 16:03:39.532471000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-14 02:02:03.603383483 Z\nsign_in_count:\n- 63\n- 64\n 128 \N 189.186.37.251 6b4367c1-b051-4ebe-a63b-36f28eb7b541 2019-05-14 02:02:03.611081 7356 10 User \N \N 10 User \N update ---\nunique_session_id:\n- arj898yG8W7dosXp92wP\n- djbLD1C1SoDsYhf8wivZ\n 129 \N 189.186.37.251 6b4367c1-b051-4ebe-a63b-36f28eb7b541 2019-05-14 02:02:03.629546 7357 181 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 183\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.749E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.773E3\nphysical_cash: !ruby/object:BigDecimal 18:0.773E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 d36fce6d-b47b-44a2-8075-74d215bd8d01 2019-05-14 02:02:56.391102 7358 183 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 d36fce6d-b47b-44a2-8075-74d215bd8d01 2019-05-14 02:02:56.429221 7359 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-11 16:15:01.630270000 Z\n- &1 2019-05-13 16:07:47.882296000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-14 16:00:06.415553192 Z\nsign_in_count:\n- 109\n- 110\n 223 \N 189.186.37.251 f1099c8c-35e4-4202-b760-d47d18cac959 2019-05-14 16:00:06.461028 7360 2 User \N \N 2 User \N update ---\nunique_session_id:\n- JE1z6zzkT3Wb8sD4skdA\n- SyJ-yoR9UyAyvrsxC3Lo\n 224 \N 189.186.37.251 f1099c8c-35e4-4202-b760-d47d18cac959 2019-05-14 16:00:06.490599 7361 184 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.457E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 457.0 189.186.37.251 975e1935-350b-4d35-ab60-8ec7f2d7d8c8 2019-05-14 16:00:31.000257 7362 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-12 20:47:23.773443000 Z\n- &1 2019-05-13 21:31:01.104972000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-14 16:11:21.109134703 Z\nsign_in_count:\n- 245\n- 246\n 492 \N 189.186.37.251 641dce77-ce8d-439d-8768-9349db1054f7 2019-05-14 16:11:21.11726 7363 3 User \N \N 3 User \N update ---\nunique_session_id:\n- p4Y96SJomBzwDgcYbL25\n- h5xAsMvyc3j_HR3dJNjn\n 493 \N 189.186.37.251 641dce77-ce8d-439d-8768-9349db1054f7 2019-05-14 16:11:21.144625 7364 185 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.773E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 773.0 189.186.37.251 db293991-5e74-41de-b7ed-f3d849d21348 2019-05-14 16:11:53.990362 7365 579 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 184\namount: !ruby/object:BigDecimal 18:0.563576E4\ntax: !ruby/object:BigDecimal 18:0.36524E3\ndiscount: !ruby/object:BigDecimal 18:0.3353E4\ntotal: !ruby/object:BigDecimal 18:0.2648E4\nstatus: 0\ndate_sale: 2019-05-14\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-319\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 4093f6c7-4845-44ac-9f39-78bcce1e59ed 2019-05-14 16:42:33.285209 7366 125 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.37.251 4093f6c7-4845-44ac-9f39-78bcce1e59ed 2019-05-14 16:42:33.353085 7368 108 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.37.251 4093f6c7-4845-44ac-9f39-78bcce1e59ed 2019-05-14 16:42:33.445772 7369 105 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.37.251 4093f6c7-4845-44ac-9f39-78bcce1e59ed 2019-05-14 16:42:33.485682 7370 106 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.37.251 4093f6c7-4845-44ac-9f39-78bcce1e59ed 2019-05-14 16:42:33.523904 7371 99 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.37.251 4093f6c7-4845-44ac-9f39-78bcce1e59ed 2019-05-14 16:42:33.564949 7372 93 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.37.251 4093f6c7-4845-44ac-9f39-78bcce1e59ed 2019-05-14 16:42:33.604789 7373 223 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.37.251 4093f6c7-4845-44ac-9f39-78bcce1e59ed 2019-05-14 16:42:33.639625 7374 232 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.37.251 4093f6c7-4845-44ac-9f39-78bcce1e59ed 2019-05-14 16:42:33.673896 7375 579 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 b93e106c-7df0-4d02-af08-82bac517e697 2019-05-14 16:42:47.994694 7376 729 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 184\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.2648E4\nmove_type: '1'\nsale_id: 579\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-319\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4858152465545465'\n 1 movimiento de efectivo por venta con folio PV1-V-319 189.186.37.251 b93e106c-7df0-4d02-af08-82bac517e697 2019-05-14 16:42:48.025815 7377 580 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 184\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2019-05-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-320\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 cd34f56c-7620-4925-86a9-f9ecca7aa2fd 2019-05-14 17:32:48.173648 7378 601 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.37.251 cd34f56c-7620-4925-86a9-f9ecca7aa2fd 2019-05-14 17:32:48.230122 7379 580 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 e654ab4e-e4fb-492a-bc31-1adcf8c86159 2019-05-14 17:34:48.607268 7380 730 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 184\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 580\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-320\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-320 189.186.37.251 e654ab4e-e4fb-492a-bc31-1adcf8c86159 2019-05-14 17:34:48.637942 7381 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-13 21:08:29.023304000 Z\n- &1 2019-05-14 00:19:28.569002000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-14 18:25:11.848971789 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938152\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946137\n mask_addr: 4294967295\nsign_in_count:\n- 193\n- 194\n 388 \N 200.68.181.153 63816270-daeb-486e-aea3-864c0ee4a5d8 2019-05-14 18:25:11.864473 7382 4 User \N \N 4 User \N update ---\nunique_session_id:\n- uVZjo_QujwX5zSmtH_3R\n- edGyGGPNA1HzhD4Um9EN\n 389 \N 200.68.181.153 63816270-daeb-486e-aea3-864c0ee4a5d8 2019-05-14 18:25:11.895841 7383 581 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 185\namount: !ruby/object:BigDecimal 18:0.86623E3\ntax: !ruby/object:BigDecimal 18:0.12277E3\ndiscount: !ruby/object:BigDecimal 18:0.989E2\ntotal: !ruby/object:BigDecimal 18:0.8901E3\nstatus: 0\ndate_sale: 2019-05-14\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-259\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 c60fab3b-099a-4324-be7b-5bea6b025b31 2019-05-14 18:31:57.545409 7384 293 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.37.251 c60fab3b-099a-4324-be7b-5bea6b025b31 2019-05-14 18:31:57.594044 7385 581 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 92a53bd9-d62d-442c-92fd-eb98a066a869 2019-05-14 18:32:45.252276 7386 731 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 185\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8901E3\nmove_type: '1'\nsale_id: 581\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-259\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1099E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-259 189.186.37.251 92a53bd9-d62d-442c-92fd-eb98a066a869 2019-05-14 18:32:45.276989 7387 582 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 184\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-05-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-321\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 e9993769-0585-484d-b954-d2179dc5f1fc 2019-05-14 18:39:39.269519 7388 86 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.37.251 e9993769-0585-484d-b954-d2179dc5f1fc 2019-05-14 18:39:39.327886 7389 582 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 c3a0e84a-7e59-48a0-9256-3d6d20483999 2019-05-14 18:40:00.998489 7390 732 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 184\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 582\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-321\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-321 189.186.37.251 c3a0e84a-7e59-48a0-9256-3d6d20483999 2019-05-14 18:40:01.037447 7413 97 Customer \N \N 12 User \N create ---\nnick_name: INDELIZA VILLEGAS\nphone: "(257) 765-6___"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente INDELIZA VILLEGAS fue registrado. 189.186.37.251 072ec337-eaae-46c5-9c75-accdabbafaf5 2019-05-14 19:56:26.035356 35263 2549 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.120.209 d2cfbdba-3b15-4316-8746-946817fd9173 2020-07-09 21:26:34.98707 7391 733 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 184\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 582\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-321\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.499E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-321 189.186.37.251 ac49aa63-3bc6-43ee-9760-a268ad249364 2019-05-14 18:40:02.067385 7392 732 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 184\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 582\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-321\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.37.251 2795a6ea-f2f0-4cfb-b033-a94e372718fe 2019-05-14 18:40:05.744997 7393 733 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 184\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 582\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-321\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.499E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.37.251 44f676d8-cf8b-4feb-8ecd-e17f04d0368d 2019-05-14 18:40:18.164057 7394 734 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 184\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 582\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-321\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-321 189.186.37.251 0f1df966-e615-4166-a1b2-ec512e692e05 2019-05-14 18:40:26.627596 7395 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-13 21:31:01.104972000 Z\n- &1 2019-05-14 16:11:21.109134000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-14 18:43:27.760712294 Z\nsign_in_count:\n- 246\n- 247\n 494 \N 189.186.37.251 6f5f2f41-b1ed-4a68-ad76-e961d9981080 2019-05-14 18:43:27.771408 7396 3 User \N \N 3 User \N update ---\nunique_session_id:\n- h5xAsMvyc3j_HR3dJNjn\n- zKekUvXsRj4ZeKRzQr-N\n 495 \N 189.186.37.251 6f5f2f41-b1ed-4a68-ad76-e961d9981080 2019-05-14 18:43:27.789485 7397 583 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 184\namount: !ruby/object:BigDecimal 18:0.128772E4\ntax: !ruby/object:BigDecimal 18:0.11028E3\ndiscount: !ruby/object:BigDecimal 18:0.5985E3\ntotal: !ruby/object:BigDecimal 18:0.7995E3\nstatus: 0\ndate_sale: 2019-05-14\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-322\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 ed0112bd-81ee-4c36-a97a-46cf8d817a7d 2019-05-14 18:49:07.888554 7398 91 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.37.251 ed0112bd-81ee-4c36-a97a-46cf8d817a7d 2019-05-14 18:49:07.926204 7399 72 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.37.251 ed0112bd-81ee-4c36-a97a-46cf8d817a7d 2019-05-14 18:49:07.964985 7400 583 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 8131eda4-cda2-49c1-baa3-3810f86e471f 2019-05-14 18:49:21.195527 7401 735 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 184\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.8E3\nmove_type: '1'\nsale_id: 583\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-322\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4858152465545465'\n 1 movimiento de efectivo por venta con folio PV1-V-322 189.186.37.251 8131eda4-cda2-49c1-baa3-3810f86e471f 2019-05-14 18:49:21.232139 7402 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-14 16:11:21.109134000 Z\n- &1 2019-05-14 18:43:27.760712000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-14 18:56:31.283530120 Z\nsign_in_count:\n- 247\n- 248\n 496 \N 189.186.37.251 deec77c0-0264-45b9-829a-e308ae26f59d 2019-05-14 18:56:31.293965 7403 3 User \N \N 3 User \N update ---\nunique_session_id:\n- zKekUvXsRj4ZeKRzQr-N\n- yeTbhh9c6RPxByuz3_d_\n 497 \N 189.186.37.251 deec77c0-0264-45b9-829a-e308ae26f59d 2019-05-14 18:56:31.318782 7404 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-12 19:36:23.052203000 Z\n- &1 2019-05-12 20:46:30.160232000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-14 19:33:33.076288743 Z\nsign_in_count:\n- 161\n- 162\n 324 \N 189.186.37.251 a8d55b60-31b5-4cb5-95a0-e7a0bc8bbc76 2019-05-14 19:33:33.087099 7405 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Djosb57Yy8PUt8PXN7qU\n- NH756ZME7cpKckz41URx\n 325 \N 189.186.37.251 a8d55b60-31b5-4cb5-95a0-e7a0bc8bbc76 2019-05-14 19:33:33.108976 7406 67 Expense \N \N 12 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 184\nquantity: !ruby/object:BigDecimal 18:0.25E3\nstatus: 1\nobservations: COMISION ANABELLY\nexpense_date: 2019-05-14\nexpense_code: PV1-E-61\n 1 Egreso por 250.0 registrado 189.186.37.251 94e84051-e782-47c5-9b4d-ca8b04f3ef6d 2019-05-14 19:33:55.001469 7407 736 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 184\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 67\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 94e84051-e782-47c5-9b4d-ca8b04f3ef6d 2019-05-14 19:33:55.038949 7408 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 18:48:00.292553000 Z\n- &1 2019-05-04 18:49:50.813907000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-14 19:51:42.721995199 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3187425760\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984544540\n mask_addr: 4294967295\nsign_in_count:\n- 16\n- 17\n 34 \N 177.228.137.28 1ce54a12-826e-45cc-8ffd-20a3ac457b0d 2019-05-14 19:51:42.733299 7409 5 User \N \N 5 User \N update ---\nunique_session_id:\n- UAqCBeuddGSMhn1D2rTV\n- EGEZWccncnruZwZFRoo7\n 35 \N 177.228.137.28 1ce54a12-826e-45cc-8ffd-20a3ac457b0d 2019-05-14 19:51:42.757258 7410 1 PosConfig \N \N 5 User \N update ---\nreserve_sale_percent:\n- !ruby/object:BigDecimal 18:0.3E2\n- !ruby/object:BigDecimal 18:0.2E2\n 7 Se actualizaron los parámetros generales 177.228.137.28 4d0e0ed7-814c-46c6-8709-b6119cfc8e80 2019-05-14 19:51:57.739926 7411 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 18:49:50.813907000 Z\n- &1 2019-05-14 19:51:42.721995000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-14 19:52:37.876807025 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3187425760\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984544540\n mask_addr: 4294967295\nsign_in_count:\n- 17\n- 18\n 36 \N 177.228.137.28 14c4b5b5-ad14-4a28-9b74-f15813011fc1 2019-05-14 19:52:37.88401 7412 5 User \N \N 5 User \N update ---\nunique_session_id:\n- EGEZWccncnruZwZFRoo7\n- jtmKC26HoeWHEn_b1t62\n 37 \N 177.228.137.28 14c4b5b5-ad14-4a28-9b74-f15813011fc1 2019-05-14 19:52:37.902129 7414 584 Sale \N \N 12 User \N create ---\ncustomer_id: 97\nuser_id: 12\nopen_cash_register_id: 184\namount: !ruby/object:BigDecimal 18:0.829E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.829E3\nstatus: 0\ndate_sale: 2019-05-14\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-323\nexpiration_date: 2019-06-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 3edfa2e5-e1cf-4644-a842-9f88d0875680 2019-05-14 19:56:40.356444 7415 607 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.251 3edfa2e5-e1cf-4644-a842-9f88d0875680 2019-05-14 19:56:40.407919 7416 737 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 184\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 584\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-323\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-323 189.186.37.251 72685449-cfd3-4ee1-8483-bba1f423c5bd 2019-05-14 19:56:50.73868 7417 584 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 aa39cc41-3f9e-49a8-87fd-bdb196610622 2019-05-14 19:56:55.065842 7418 585 Sale \N \N 12 User \N create ---\ncustomer_id: 89\nuser_id: 12\nopen_cash_register_id: 184\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-05-14\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-324\nexpiration_date: 2019-06-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 313e99d7-1201-4c44-a4a8-fd42e0e8e709 2019-05-14 20:01:05.810152 7419 571 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.37.251 313e99d7-1201-4c44-a4a8-fd42e0e8e709 2019-05-14 20:01:05.845073 7420 738 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 184\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 585\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-324\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-324 189.186.37.251 ff60e2dc-cbf7-4c53-afd5-b11338b63281 2019-05-14 20:01:13.595007 7421 585 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 1e01e8ed-8723-41b9-b4cd-f647de1c83df 2019-05-14 20:01:17.398861 7422 586 Sale \N \N 12 User \N create ---\ncustomer_id: 75\nuser_id: 12\nopen_cash_register_id: 184\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-05-14\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-325\nexpiration_date: 2019-06-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 60f04ec7-76d2-4e8d-9836-34e1495f0897 2019-05-14 20:02:13.59144 7423 540 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.37.251 60f04ec7-76d2-4e8d-9836-34e1495f0897 2019-05-14 20:02:13.620114 7424 739 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 184\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 586\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-325\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-325 189.186.37.251 68f0b257-ecbf-47b3-b21f-298ec95afac6 2019-05-14 20:02:20.926077 7425 586 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 a8d4d008-674b-4a9b-b1e4-d2aa80db7f1b 2019-05-14 20:02:23.426384 7426 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-13 16:07:47.882296000 Z\n- &1 2019-05-14 16:00:06.415553000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-14 20:04:40.039811694 Z\nsign_in_count:\n- 110\n- 111\n 225 \N 189.186.37.251 e35a1503-f81f-40a2-b147-1a4f93c53f89 2019-05-14 20:04:40.04812 7427 2 User \N \N 2 User \N update ---\nunique_session_id:\n- SyJ-yoR9UyAyvrsxC3Lo\n- 7g3X1z2fWK2jCkkHrqR2\n 226 \N 189.186.37.251 e35a1503-f81f-40a2-b147-1a4f93c53f89 2019-05-14 20:04:40.066175 7428 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-12 20:46:30.160232000 Z\n- &1 2019-05-14 19:33:33.076288000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-14 23:12:56.706673282 Z\nsign_in_count:\n- 162\n- 163\n 326 \N 189.186.37.251 ef15c22a-9dba-4f07-8495-c6f119e6d93b 2019-05-14 23:12:56.721174 7429 12 User \N \N 12 User \N update ---\nunique_session_id:\n- NH756ZME7cpKckz41URx\n- GayH-x7p5YD_AAWoDx8r\n 327 \N 189.186.37.251 ef15c22a-9dba-4f07-8495-c6f119e6d93b 2019-05-14 23:12:56.748448 7430 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-14 18:43:27.760712000 Z\n- &1 2019-05-14 18:56:31.283530000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-14 23:39:40.958010994 Z\nsign_in_count:\n- 248\n- 249\n 498 \N 189.186.37.251 67828d63-8f98-41dd-9b75-5e0595880ab2 2019-05-14 23:39:40.971312 7431 3 User \N \N 3 User \N update ---\nunique_session_id:\n- yeTbhh9c6RPxByuz3_d_\n- LUrUXU9-GAy5CEwzzRHr\n 499 \N 189.186.37.251 67828d63-8f98-41dd-9b75-5e0595880ab2 2019-05-14 23:39:40.997345 7432 587 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 185\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-05-14\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-260\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 16f587fa-9015-4dcf-97f9-581525dda096 2019-05-14 23:40:00.296365 7433 497 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 189.186.37.251 16f587fa-9015-4dcf-97f9-581525dda096 2019-05-14 23:40:00.342298 7434 587 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 d9b06539-d52f-42b3-833c-b1bb083ca03f 2019-05-14 23:40:17.355871 7435 740 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 185\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.869E3\nmove_type: '1'\nsale_id: 587\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-260\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.131E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-260 189.186.37.251 d9b06539-d52f-42b3-833c-b1bb083ca03f 2019-05-14 23:40:17.395915 7436 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-14 19:33:33.076288000 Z\n- &1 2019-05-14 23:12:56.706673000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-15 00:09:44.874071155 Z\nsign_in_count:\n- 163\n- 164\n 328 \N 189.186.37.251 0a8c366a-862d-429b-bd83-e27b932063ec 2019-05-15 00:09:44.920248 7437 12 User \N \N 12 User \N update ---\nunique_session_id:\n- GayH-x7p5YD_AAWoDx8r\n- ooaWTV7z6GWMYEBJg56E\n 329 \N 189.186.37.251 0a8c366a-862d-429b-bd83-e27b932063ec 2019-05-15 00:09:44.957562 7438 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-14 23:12:56.706673000 Z\n- &1 2019-05-15 00:09:44.874071000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-15 00:36:30.490697355 Z\nsign_in_count:\n- 164\n- 165\n 330 \N 189.186.37.251 cba50ebf-94c7-4512-9402-a541d1905666 2019-05-15 00:36:30.500077 7439 12 User \N \N 12 User \N update ---\nunique_session_id:\n- ooaWTV7z6GWMYEBJg56E\n- Kecief_YYv3S2hiNfj3_\n 331 \N 189.186.37.251 cba50ebf-94c7-4512-9402-a541d1905666 2019-05-15 00:36:30.540702 7440 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-14 18:56:31.283530000 Z\n- &1 2019-05-14 23:39:40.958010000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-15 00:37:01.553871776 Z\nsign_in_count:\n- 249\n- 250\n 500 \N 189.186.37.251 05cb4ff1-0fbc-4c43-ab5b-1b12cf01d1b9 2019-05-15 00:37:01.56318 7441 3 User \N \N 3 User \N update ---\nunique_session_id:\n- LUrUXU9-GAy5CEwzzRHr\n- 4yvmPNG_y7zzExmWTFWV\n 501 \N 189.186.37.251 05cb4ff1-0fbc-4c43-ab5b-1b12cf01d1b9 2019-05-15 00:37:01.586911 7442 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-15 00:09:44.874071000 Z\n- &1 2019-05-15 00:36:30.490697000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-15 00:37:48.808021529 Z\nsign_in_count:\n- 165\n- 166\n 332 \N 189.186.37.251 a1dfae0a-4238-4315-b647-9ea3ffd3776d 2019-05-15 00:37:48.81813 7443 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Kecief_YYv3S2hiNfj3_\n- zthnvB_QZLoxrGPqNr5s\n 333 \N 189.186.37.251 a1dfae0a-4238-4315-b647-9ea3ffd3776d 2019-05-15 00:37:48.84106 7444 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-14 23:39:40.958010000 Z\n- &1 2019-05-15 00:37:01.553871000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-15 00:50:37.740179637 Z\nsign_in_count:\n- 250\n- 251\n 502 \N 189.186.37.251 dce10206-0aea-41fa-add5-20e607d5894a 2019-05-15 00:50:37.748808 7445 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 4yvmPNG_y7zzExmWTFWV\n- ymxvvaDhhL6UEZgAWv4y\n 503 \N 189.186.37.251 dce10206-0aea-41fa-add5-20e607d5894a 2019-05-15 00:50:37.76873 7446 182 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 185\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.17591E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.1759E4\ncash_fund: !ruby/object:BigDecimal 18:0.773E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2532E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 ff57fe8a-fa9b-4868-bb34-96459b0cc785 2019-05-15 01:56:09.366408 7447 185 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 ff57fe8a-fa9b-4868-bb34-96459b0cc785 2019-05-15 01:56:09.39497 7448 588 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 184\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-05-14\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-326\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 4bb74e17-1d8b-49bf-96e8-9bb87d02694e 2019-05-15 02:03:10.722962 7449 609 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.37.251 4bb74e17-1d8b-49bf-96e8-9bb87d02694e 2019-05-15 02:03:10.776264 7450 588 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 4d4dab0d-03cf-4930-943f-0c47bcf45e1a 2019-05-15 02:03:57.397423 7451 741 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 184\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.479E3\nmove_type: '1'\nsale_id: 588\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-326\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-326 189.186.37.251 4d4dab0d-03cf-4930-943f-0c47bcf45e1a 2019-05-15 02:03:57.431962 7452 183 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 184\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6825E4\namount_out: !ruby/object:BigDecimal 18:0.25E3\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.26E4\ncash_fund: !ruby/object:BigDecimal 18:0.982E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3582E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 89c78318-8943-4d49-9bc8-9f750d9c8355 2019-05-15 02:12:30.766242 7453 184 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 89c78318-8943-4d49-9bc8-9f750d9c8355 2019-05-15 02:12:30.787907 7454 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-15 00:37:01.553871000 Z\n- &1 2019-05-15 00:50:37.740179000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-15 16:14:42.862289958 Z\nsign_in_count:\n- 251\n- 252\n 504 \N 189.186.37.251 2f298e8c-be69-44ba-ba96-767f38fedfba 2019-05-15 16:14:42.911342 7455 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ymxvvaDhhL6UEZgAWv4y\n- j-CAAxqmQvZcXi22nt23\n 505 \N 189.186.37.251 2f298e8c-be69-44ba-ba96-767f38fedfba 2019-05-15 16:14:42.945556 7456 186 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.773E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 773.0 189.186.37.251 ab6fc404-bfd2-4585-869f-5e9d81ef8006 2019-05-15 16:14:54.279388 7457 589 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 186\namount: !ruby/object:BigDecimal 18:0.2998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2998E4\nstatus: 0\ndate_sale: 2019-05-15\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-261\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 6a9ffc45-c3fb-495a-949d-aaf7c44f3eea 2019-05-15 16:50:20.337893 7458 620 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.37.251 6a9ffc45-c3fb-495a-949d-aaf7c44f3eea 2019-05-15 16:50:20.408442 7459 619 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.37.251 6a9ffc45-c3fb-495a-949d-aaf7c44f3eea 2019-05-15 16:50:20.455733 7460 589 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-261 cancelada. 189.186.37.251 6eb0a080-2600-4935-b06f-e3b364605402 2019-05-15 16:53:31.085804 7461 619 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.37.251 6eb0a080-2600-4935-b06f-e3b364605402 2019-05-15 16:53:31.122921 7462 620 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.37.251 6eb0a080-2600-4935-b06f-e3b364605402 2019-05-15 16:53:31.153078 7463 590 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 186\namount: !ruby/object:BigDecimal 18:0.3997E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3997E4\nstatus: 0\ndate_sale: 2019-05-15\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-262\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 cc1251e9-a96d-451f-ae37-3968a6aaede1 2019-05-15 16:55:47.440473 18201 718 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '718'\n is_parent: false\n sku: BOL-718\n name: 1BLCI19279\n description: 'MOCHILA NEGRA '\n price_base: '799.5'\n price_sale: '1599.0'\n img_product: BBAL279_NEGR_1_300x435.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170765830'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-09-26 23:10:45.203654'\n updated_at: &12 2019-10-13 20:25:26.477557781 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '718'\n sku: BOL-718\n name: 1BLCI19279\n description: 'MOCHILA NEGRA '\n price_base: '799.50'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-09-26 23:10:45.203654'\n updated_at: '2019-09-26 23:10:45.203654'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170765830'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '718'\n type: *3\n value: 718\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-718\n type: *7\n value: BOL-718\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCI19279\n type: *8\n value: 1BLCI19279\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'MOCHILA NEGRA '\n type: *6\n value: 'MOCHILA NEGRA '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '799.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BBAL279_NEGR_1_300x435.jpg\n type: *2\n value: BBAL279_NEGR_1_300x435.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170765830'\n type: *2\n value: '7509170765830'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-09-26 23:10:45.203654'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BBAL279_NEGR_1_300x435.jpg\n 2 El producto BOL-718 fue modificado. 187.149.73.66 03dc83a9-4dea-4167-9da0-6a1df4c4cebc 2019-10-13 20:25:26.53811 7464 619 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.37.251 cc1251e9-a96d-451f-ae37-3968a6aaede1 2019-05-15 16:55:47.50349 7465 562 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.37.251 cc1251e9-a96d-451f-ae37-3968a6aaede1 2019-05-15 16:55:47.54132 7466 620 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.37.251 cc1251e9-a96d-451f-ae37-3968a6aaede1 2019-05-15 16:55:47.579071 7467 590 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 9f15eb1a-893b-4a8a-94a0-2ba454be3650 2019-05-15 16:58:11.778022 7468 742 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 186\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.3997E4\nmove_type: '1'\nsale_id: 590\ncardnumber: 5120\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-262\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-262 189.186.37.251 9f15eb1a-893b-4a8a-94a0-2ba454be3650 2019-05-15 16:58:11.815882 7469 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-14 00:19:28.569002000 Z\n- &1 2019-05-14 18:25:11.848971000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-15 17:54:30.541333338 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938152\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 194\n- 195\n 390 \N 189.186.50.198 01cda016-2f2a-4fcc-82c7-927ec5ed2e44 2019-05-15 17:54:30.554413 7470 4 User \N \N 4 User \N update ---\nunique_session_id:\n- edGyGGPNA1HzhD4Um9EN\n- DTQ8SwBSWuTNzymMY4-8\n 391 \N 189.186.50.198 01cda016-2f2a-4fcc-82c7-927ec5ed2e44 2019-05-15 17:54:30.581006 7471 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-14 16:00:06.415553000 Z\n- &1 2019-05-14 20:04:40.039811000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-15 17:58:26.086903134 Z\nsign_in_count:\n- 111\n- 112\n 227 \N 189.186.37.251 7313e0ae-a206-4dee-8eb4-2f0e7ef2e709 2019-05-15 17:58:26.094934 7472 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 7g3X1z2fWK2jCkkHrqR2\n- x-jyRjV9kVTVksgfxQU_\n 228 \N 189.186.37.251 7313e0ae-a206-4dee-8eb4-2f0e7ef2e709 2019-05-15 17:58:26.109973 7473 187 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.982E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 982.0 189.186.37.251 5f0141ee-748c-4648-bd9d-07fca6d7defc 2019-05-15 17:59:05.614858 7474 566 Product \N \N 2 User \N create ---\nsku: BLU-566\nname: BLU-0023\ndescription: BLUSA NEGRA TRANSPARENTE FLOREADA HAUTE MODE\nprice_base: !ruby/object:BigDecimal 18:0.1995E3\nprice_sale: !ruby/object:BigDecimal 18:0.399E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-566 fue creado. 189.186.37.251 2f185011-0439-41f3-8f90-6c4c25be57b7 2019-05-15 18:03:58.613936 7475 566 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000566'\n 2 \N 189.186.37.251 2f185011-0439-41f3-8f90-6c4c25be57b7 2019-05-15 18:03:58.658062 7476 631 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 566\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 2f185011-0439-41f3-8f90-6c4c25be57b7 2019-05-15 18:03:58.696465 7477 93 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-56\namount: !ruby/object:BigDecimal 18:0.798E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.798E3\nobservations: ''\npurchase_date: 2019-05-15\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-56 por $ 798.0 MXN creada. 189.186.37.251 bde89325-4a84-4b41-a208-11a549cf2294 2019-05-15 18:08:16.234939 7478 631 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.37.251 bde89325-4a84-4b41-a208-11a549cf2294 2019-05-15 18:08:16.270312 7479 591 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 187\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-05-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-327\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 cfdba3e0-0189-4ffb-9e8b-c866835faa62 2019-05-15 18:10:18.109171 7480 600 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.37.251 cfdba3e0-0189-4ffb-9e8b-c866835faa62 2019-05-15 18:10:18.157863 7481 591 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 2e79436e-481f-4689-b361-936296cb925d 2019-05-15 18:11:20.245611 7482 743 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 187\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 591\ncardnumber: 7097\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-327\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-327 189.186.37.251 2e79436e-481f-4689-b361-936296cb925d 2019-05-15 18:11:20.2849 7483 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-15 00:50:37.740179000 Z\n- &1 2019-05-15 16:14:42.862289000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-15 18:14:32.924517546 Z\nsign_in_count:\n- 252\n- 253\n 506 \N 189.186.37.251 d0982a9a-d7ed-447e-b070-6c4f3cb9afed 2019-05-15 18:14:32.933166 7484 3 User \N \N 3 User \N update ---\nunique_session_id:\n- j-CAAxqmQvZcXi22nt23\n- E3iXnbK8dmnc1zzUkq5Z\n 507 \N 189.186.37.251 d0982a9a-d7ed-447e-b070-6c4f3cb9afed 2019-05-15 18:14:32.951589 7485 744 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 34\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.29701E3\nmove_type: '1'\nsale_id: 138\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4858152465545465'\n 1 \N 189.186.37.251 360bb381-5aef-47a4-9f0d-9a5e485d6d5c 2019-05-15 18:18:32.171077 7486 138 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 360bb381-5aef-47a4-9f0d-9a5e485d6d5c 2019-05-15 18:18:32.206887 7487 744 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 34\n- 187\n 2 movimiento de efectivo por venta con folio PV1-V-77 189.186.37.251 360bb381-5aef-47a4-9f0d-9a5e485d6d5c 2019-05-15 18:18:32.229839 7488 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-15 16:14:42.862289000 Z\n- &1 2019-05-15 18:14:32.924517000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-15 18:32:20.474930975 Z\nsign_in_count:\n- 253\n- 254\n 508 \N 189.186.37.251 2af77905-1618-4c0e-9549-2d3d7fd452ea 2019-05-15 18:32:20.484826 7489 3 User \N \N 3 User \N update ---\nunique_session_id:\n- E3iXnbK8dmnc1zzUkq5Z\n- Seyq1b82PiAPP-d3b-Yy\n 509 \N 189.186.37.251 2af77905-1618-4c0e-9549-2d3d7fd452ea 2019-05-15 18:32:20.510108 7490 549 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.37.251 64a12e5d-2948-4f7b-bf3d-9b3ec7698b4b 2019-05-15 19:42:13.412156 7491 46 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-05-15\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.37.251 1e584ae4-482d-4709-b18f-f9eb6195f572 2019-05-15 19:42:16.23366 7492 46 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-05-15\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.37.251 2439b073-9548-4285-af68-ca4ff8fb34b2 2019-05-15 19:43:36.394513 7493 632 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 516\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 2439b073-9548-4285-af68-ca4ff8fb34b2 2019-05-15 19:43:36.425455 7494 4 ProductsReturn \N \N 2 User \N create ---\nsale_id: 580\nuser_id: 2\nreturn_code: PV1-D-2\npointsale_id: 1\nnew_amount: !ruby/object:BigDecimal 18:0.2198E4\nreturned_amount: !ruby/object:BigDecimal 18:0.1499E4\ndifference_amount: !ruby/object:BigDecimal 18:0.699E3\nis_money_returned: false\n 1 devolución PV1-D-2 creada. 189.186.37.251 b818ec3b-9e68-49e6-883d-977b55c1b374 2019-05-15 19:49:54.278495 7495 601 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.37.251 b818ec3b-9e68-49e6-883d-977b55c1b374 2019-05-15 19:49:54.313756 7496 632 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.37.251 b818ec3b-9e68-49e6-883d-977b55c1b374 2019-05-15 19:49:54.350133 7497 268 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 8 \N 189.186.37.251 b818ec3b-9e68-49e6-883d-977b55c1b374 2019-05-15 19:49:54.375408 7498 745 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 187\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 580\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 4\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV1-D-2 189.186.37.251 e66af494-74fd-4ac3-b250-483b06f45a95 2019-05-15 19:50:18.356374 7499 481 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 189.186.37.251 648079f0-6cd1-4237-adb6-589a9aa252e2 2019-05-15 21:45:40.655449 7500 548 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.37.251 3f98ffd7-4132-43ed-bd31-51c780532280 2019-05-15 21:45:51.232769 7501 47 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-05-15\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.37.251 bfacc123-ba72-420e-b7ab-87d170edab2c 2019-05-15 21:45:55.116466 7502 47 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-05-15\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.37.251 06ca43a8-2e5a-4c17-9fc2-4f088e6117d4 2019-05-15 21:46:19.592788 7503 154 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.37.251 06ca43a8-2e5a-4c17-9fc2-4f088e6117d4 2019-05-15 21:46:19.621512 7504 526 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 14 \N 189.186.37.251 06ca43a8-2e5a-4c17-9fc2-4f088e6117d4 2019-05-15 21:46:19.651072 7505 592 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 187\namount: !ruby/object:BigDecimal 18:0.119814E4\ntax: !ruby/object:BigDecimal 18:0.7986E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1278E4\nstatus: 0\ndate_sale: 2019-05-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-328\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 8d1c4445-0075-4107-b246-375163f01bba 2019-05-15 21:46:59.052126 7506 154 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.37.251 8d1c4445-0075-4107-b246-375163f01bba 2019-05-15 21:46:59.09585 7507 526 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 15 \N 189.186.37.251 8d1c4445-0075-4107-b246-375163f01bba 2019-05-15 21:46:59.136127 7508 592 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 5093d872-4d2e-4374-b562-0624efa2ed95 2019-05-15 21:48:08.142905 7509 746 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 187\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1278E4\nmove_type: '1'\nsale_id: 592\ncardnumber: 5797\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-328\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-328 189.186.37.251 5093d872-4d2e-4374-b562-0624efa2ed95 2019-05-15 21:48:08.177446 7510 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-14 18:25:11.848971000 Z\n- &1 2019-05-15 17:54:30.541333000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-15 21:54:41.510188745 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938257\n mask_addr: 4294967295\nsign_in_count:\n- 195\n- 196\n 392 \N 200.68.150.209 8f63e42d-5163-43f3-9618-8f1b9d5a29c9 2019-05-15 21:54:41.563516 7511 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DTQ8SwBSWuTNzymMY4-8\n- 6EsKXVGabsx7nmNqvbBD\n 393 \N 200.68.150.209 8f63e42d-5163-43f3-9618-8f1b9d5a29c9 2019-05-15 21:54:41.602583 7512 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-15 18:14:32.924517000 Z\n- &1 2019-05-15 18:32:20.474930000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-15 22:27:17.246862579 Z\nsign_in_count:\n- 254\n- 255\n 510 \N 189.186.37.251 cdfbe18e-4152-4e3f-8125-a7af54899ec1 2019-05-15 22:27:17.256362 7513 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Seyq1b82PiAPP-d3b-Yy\n- yxTLoPdtq-yHFY-aZmoP\n 511 \N 189.186.37.251 cdfbe18e-4152-4e3f-8125-a7af54899ec1 2019-05-15 22:27:17.276322 7514 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-15 18:32:20.474930000 Z\n- &1 2019-05-15 22:27:17.246862000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-15 22:34:35.607915213 Z\nsign_in_count:\n- 255\n- 256\n 512 \N 189.186.37.251 3ac103b2-759e-4b00-b306-00ad029287f6 2019-05-15 22:34:35.614102 7515 3 User \N \N 3 User \N update ---\nunique_session_id:\n- yxTLoPdtq-yHFY-aZmoP\n- JEqkD_BFvTKWdj1R43Qb\n 513 \N 189.186.37.251 3ac103b2-759e-4b00-b306-00ad029287f6 2019-05-15 22:34:35.630901 7516 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-15 00:36:30.490697000 Z\n- &1 2019-05-15 00:37:48.808021000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-15 22:58:45.741472838 Z\nsign_in_count:\n- 166\n- 167\n 334 \N 189.186.37.251 1386c9f4-e1e1-4736-b4c6-49772ec2cb43 2019-05-15 22:58:45.748147 7517 12 User \N \N 12 User \N update ---\nunique_session_id:\n- zthnvB_QZLoxrGPqNr5s\n- 7qpbE-oZxuRGhNmh7cT1\n 335 \N 189.186.37.251 1386c9f4-e1e1-4736-b4c6-49772ec2cb43 2019-05-15 22:58:45.764474 7518 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-15 22:27:17.246862000 Z\n- &1 2019-05-15 22:34:35.607915000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-15 23:01:49.642577871 Z\nsign_in_count:\n- 256\n- 257\n 514 \N 189.186.37.251 c8976a77-d496-4567-8933-4e6860927c9f 2019-05-15 23:01:49.651396 7519 3 User \N \N 3 User \N update ---\nunique_session_id:\n- JEqkD_BFvTKWdj1R43Qb\n- JLBBCqDwYd8w1Ns4f7RW\n 515 \N 189.186.37.251 c8976a77-d496-4567-8933-4e6860927c9f 2019-05-15 23:01:49.674447 7520 593 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 186\namount: !ruby/object:BigDecimal 18:0.1395E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1395E4\nstatus: 0\ndate_sale: 2019-05-15\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-263\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 41097a61-4564-45b6-ae58-9b76465e78e5 2019-05-15 23:02:41.11958 7521 599 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.37.251 41097a61-4564-45b6-ae58-9b76465e78e5 2019-05-15 23:02:41.168007 7522 593 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 c974ddb7-64ef-4eba-9eec-4d6c26bbfc1b 2019-05-15 23:02:44.821341 7523 747 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 186\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1395E4\nmove_type: '1'\nsale_id: 593\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-263\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.5E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-263 189.186.37.251 c974ddb7-64ef-4eba-9eec-4d6c26bbfc1b 2019-05-15 23:02:44.859652 7524 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-15 17:54:30.541333000 Z\n- &1 2019-05-15 21:54:41.510188000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-15 23:26:44.128786709 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938257\n mask_addr: 4294967295\nsign_in_count:\n- 196\n- 197\n 394 \N 200.68.150.209 ebec0e1b-f3b0-42d4-87d2-66e95c14a520 2019-05-15 23:26:44.158198 7525 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6EsKXVGabsx7nmNqvbBD\n- zEMe_-fkRWhsG5vBSGyM\n 395 \N 200.68.150.209 ebec0e1b-f3b0-42d4-87d2-66e95c14a520 2019-05-15 23:26:44.190653 7526 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-15 00:37:48.808021000 Z\n- &1 2019-05-15 22:58:45.741472000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-16 00:43:53.367766939 Z\nsign_in_count:\n- 167\n- 168\n 336 \N 189.186.37.251 5ec0a075-4aaf-4a96-bf5e-7c57b4be9be9 2019-05-16 00:43:53.401625 7527 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 7qpbE-oZxuRGhNmh7cT1\n- naEZMzsmyqzwgiFHci7g\n 337 \N 189.186.37.251 5ec0a075-4aaf-4a96-bf5e-7c57b4be9be9 2019-05-16 00:43:53.436654 7528 68 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 187\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida rocio\nexpense_date: 2019-05-15\nexpense_code: PV1-E-62\n 1 Egreso por 50.0 registrado 189.186.37.251 54d9f810-33b6-42ae-a88e-a651b4142716 2019-05-16 01:05:38.775482 7529 748 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 187\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 68\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 54d9f810-33b6-42ae-a88e-a651b4142716 2019-05-16 01:05:38.83312 7530 98 Customer \N \N 2 User \N create ---\nnick_name: CLAUDIA QUINTERO\nphone: "(667) 334-0940"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CLAUDIA QUINTERO fue registrado. 189.186.37.251 73d8a011-548a-4510-9cde-f5fdd2efb2dc 2019-05-16 01:25:51.285099 7531 594 Sale \N \N 2 User \N create ---\ncustomer_id: 98\nuser_id: 2\nopen_cash_register_id: 187\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-05-15\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-329\nexpiration_date: 2019-06-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 7aae8192-c095-4d29-a2b4-ca5545aa8129 2019-05-16 01:26:02.151634 7532 610 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 7aae8192-c095-4d29-a2b4-ca5545aa8129 2019-05-16 01:26:02.198997 7533 749 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 187\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.11E3\nmove_type: '1'\nsale_id: 594\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-329\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.165E3\nchange: !ruby/object:BigDecimal 18:0.55E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-329 189.186.37.251 eb89767a-4489-4c6e-b13a-f59df7f41a6d 2019-05-16 01:26:18.01764 7534 749 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 187\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.11E3\nmove_type: '1'\nsale_id: 594\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-329\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.165E3\nchange: !ruby/object:BigDecimal 18:0.55E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.37.251 fd62054d-78b7-4bdd-9cc6-e8fd6f8c35c9 2019-05-16 01:26:26.099264 7535 750 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 187\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.165E3\nmove_type: '1'\nsale_id: 594\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-329\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.165E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-329 189.186.37.251 ba691d9e-eeb2-475c-aa06-95414460bd52 2019-05-16 01:26:33.847396 7536 594 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 c9e714d1-186c-4efc-abe4-e559befa4b37 2019-05-16 01:26:35.76506 7537 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-15 22:34:35.607915000 Z\n- &1 2019-05-15 23:01:49.642577000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-16 01:28:31.138468333 Z\nsign_in_count:\n- 257\n- 258\n 516 \N 189.186.37.251 19df1701-5d92-40fb-8776-b1656e037540 2019-05-16 01:28:31.150339 7538 3 User \N \N 3 User \N update ---\nunique_session_id:\n- JLBBCqDwYd8w1Ns4f7RW\n- odcBssueoifan8r-L4A-\n 517 \N 189.186.37.251 19df1701-5d92-40fb-8776-b1656e037540 2019-05-16 01:28:31.175359 7539 99 Customer \N \N 3 User \N create ---\nnick_name: CLAUDIA QUINTERO\nphone: "(667) 334-0940"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CLAUDIA QUINTERO fue registrado. 189.186.37.251 2ed3e6e4-6c59-4e7d-9684-bb3aed950342 2019-05-16 01:28:54.833387 7540 595 Sale \N \N 3 User \N create ---\ncustomer_id: 99\nuser_id: 3\nopen_cash_register_id: 186\namount: !ruby/object:BigDecimal 18:0.50776E3\ntax: !ruby/object:BigDecimal 18:0.8124E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2019-05-15\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-264\nexpiration_date: 2019-06-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 7fdb7259-9992-4d1f-a550-1d6cb55281c3 2019-05-16 01:29:05.652357 7541 326 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.37.251 7fdb7259-9992-4d1f-a550-1d6cb55281c3 2019-05-16 01:29:05.707714 7542 751 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 186\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.18E3\nmove_type: '1'\nsale_id: 595\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-264\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.2E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-264 189.186.37.251 21a28229-184f-40de-991a-7f69add4fef7 2019-05-16 01:29:13.929779 7543 595 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 858d5e20-e300-4273-9663-b3809fb2f88e 2019-05-16 01:29:23.351787 7544 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-15 23:01:49.642577000 Z\n- &1 2019-05-16 01:28:31.138468000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-16 01:31:42.610541728 Z\nsign_in_count:\n- 258\n- 259\n 518 \N 189.186.37.251 50242e41-205f-4f2b-9ea8-4f34139dd4f7 2019-05-16 01:31:42.621805 7545 3 User \N \N 3 User \N update ---\nunique_session_id:\n- odcBssueoifan8r-L4A-\n- 3yrYQkQwzLf4JR5cEPyR\n 519 \N 189.186.37.251 50242e41-205f-4f2b-9ea8-4f34139dd4f7 2019-05-16 01:31:42.644358 7546 184 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 186\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.5572E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.16E4\ncash_fund: !ruby/object:BigDecimal 18:0.507E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2107E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 767782c6-ef13-4778-a7d7-889c260c8190 2019-05-16 01:57:01.738118 7547 186 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 767782c6-ef13-4778-a7d7-889c260c8190 2019-05-16 01:57:01.758369 7548 185 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 187\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.353801E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.8E3\ncash_fund: !ruby/object:BigDecimal 18:0.997E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1797E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 c2474ea3-9372-43af-846c-3b5af8eae658 2019-05-16 02:02:56.141083 7549 187 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 c2474ea3-9372-43af-846c-3b5af8eae658 2019-05-16 02:02:56.168494 7550 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-15 21:54:41.510188000 Z\n- &1 2019-05-15 23:26:44.128786000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-16 03:48:45.445149319 Z\nsign_in_count:\n- 197\n- 198\n 396 \N 200.68.150.209 f911c576-202e-4f41-9373-67f12a8ec8c2 2019-05-16 03:48:45.460373 7551 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zEMe_-fkRWhsG5vBSGyM\n- uzq6NXsdGuJDH1SjKZEA\n 397 \N 200.68.150.209 f911c576-202e-4f41-9373-67f12a8ec8c2 2019-05-16 03:48:45.487093 7552 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-14 20:04:40.039811000 Z\n- &1 2019-05-15 17:58:26.086903000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-16 16:14:40.561581441 Z\nsign_in_count:\n- 112\n- 113\n 229 \N 189.186.37.251 02c75d99-8520-4f40-bac9-3f1cf9fb9574 2019-05-16 16:14:40.58734 7553 2 User \N \N 2 User \N update ---\nunique_session_id:\n- x-jyRjV9kVTVksgfxQU_\n- ojHJLz_xwNwS_77JRF3n\n 230 \N 189.186.37.251 02c75d99-8520-4f40-bac9-3f1cf9fb9574 2019-05-16 16:14:40.620031 7554 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-16 01:28:31.138468000 Z\n- &1 2019-05-16 01:31:42.610541000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-16 16:25:46.915527933 Z\nsign_in_count:\n- 259\n- 260\n 520 \N 189.186.37.251 407daaf1-b2d5-4164-bba2-5089d059ac03 2019-05-16 16:25:46.924685 7555 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 3yrYQkQwzLf4JR5cEPyR\n- ydvCx4DyJqVBTcBSXUTf\n 521 \N 189.186.37.251 407daaf1-b2d5-4164-bba2-5089d059ac03 2019-05-16 16:25:46.946753 7556 188 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.507E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 507.0 189.186.37.251 cbcfeae5-0db1-427c-b969-bed1cc2a29f2 2019-05-16 16:30:07.350166 7557 189 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.997E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 997.0 189.186.37.251 bc55174d-d80a-4b96-8ded-26dcc5a22f80 2019-05-16 17:39:52.145692 7558 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-16 01:31:42.610541000 Z\n- &1 2019-05-16 16:25:46.915527000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-16 17:46:08.678219599 Z\nsign_in_count:\n- 260\n- 261\n 522 \N 189.186.37.251 53b6c5f9-3c61-4dc1-8d22-2a533c7c4282 2019-05-16 17:46:08.688257 7559 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ydvCx4DyJqVBTcBSXUTf\n- EGwdqSMvZHUsXsr_A2da\n 523 \N 189.186.37.251 53b6c5f9-3c61-4dc1-8d22-2a533c7c4282 2019-05-16 17:46:08.706837 7560 596 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 189\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.39E2\ntotal: !ruby/object:BigDecimal 18:0.44E3\nstatus: 0\ndate_sale: 2019-05-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-330\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 eb978974-de52-4de7-9948-9e021f0352a6 2019-05-16 18:25:18.673443 7561 605 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.37.251 eb978974-de52-4de7-9948-9e021f0352a6 2019-05-16 18:25:18.732551 7562 596 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 2fe0dcee-609e-4d81-b406-b8fe637dac67 2019-05-16 18:25:35.792787 35522 2570 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 b0ebbf41-0f06-4004-aab8-0d02c0e337e9 2020-07-14 00:08:26.784089 7563 752 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 189\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.44E3\nmove_type: '1'\nsale_id: 596\ncardnumber: 2792\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-330\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-330 189.186.37.251 2fe0dcee-609e-4d81-b406-b8fe637dac67 2019-05-16 18:25:35.83447 7564 753 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 48\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 180\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 fc94d713-bf43-4299-814e-1b3254e9cc33 2019-05-16 18:34:28.358388 7565 753 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 48\n- 189\n 2 movimiento de efectivo por venta con folio PV2-V-76 189.186.37.251 fc94d713-bf43-4299-814e-1b3254e9cc33 2019-05-16 18:34:28.417374 7566 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-15 23:26:44.128786000 Z\n- &1 2019-05-16 03:48:45.445149000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-16 18:41:50.055938797 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938257\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946473\n mask_addr: 4294967295\nsign_in_count:\n- 198\n- 199\n 398 \N 200.68.182.233 33e25624-1c2e-4e4a-9fbb-d338207420d4 2019-05-16 18:41:50.069587 7567 4 User \N \N 4 User \N update ---\nunique_session_id:\n- uzq6NXsdGuJDH1SjKZEA\n- z-szAtjhVcFDZXzUNgeM\n 399 \N 200.68.182.233 33e25624-1c2e-4e4a-9fbb-d338207420d4 2019-05-16 18:41:50.096008 7568 597 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 189\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-05-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-331\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 9af9d6bf-4188-4c6f-a788-7f2e6c701949 2019-05-16 19:28:34.776274 7569 530 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.37.251 9af9d6bf-4188-4c6f-a788-7f2e6c701949 2019-05-16 19:28:34.827773 7570 597 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 55f753c7-06fc-49ba-ad8e-a75bb808c3c8 2019-05-16 19:29:08.993467 7571 754 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 189\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 597\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-331\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-331 189.186.37.251 55f753c7-06fc-49ba-ad8e-a75bb808c3c8 2019-05-16 19:29:09.040294 7572 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-16 16:25:46.915527000 Z\n- &1 2019-05-16 17:46:08.678219000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-16 19:49:35.672626280 Z\nsign_in_count:\n- 261\n- 262\n 524 \N 189.186.37.251 a194930c-6993-4e40-a12c-c0c0bdc4e6c5 2019-05-16 19:49:35.710465 7573 3 User \N \N 3 User \N update ---\nunique_session_id:\n- EGwdqSMvZHUsXsr_A2da\n- KwhMdFTZ-1R-dY-Vmg2k\n 525 \N 189.186.37.251 a194930c-6993-4e40-a12c-c0c0bdc4e6c5 2019-05-16 19:49:35.745141 7574 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-16 17:46:08.678219000 Z\n- &1 2019-05-16 19:49:35.672626000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-16 19:50:59.271728041 Z\nsign_in_count:\n- 262\n- 263\n 526 \N 189.186.37.251 f2af4d38-819c-4493-9b13-e6bedfe40ab1 2019-05-16 19:50:59.281354 7575 3 User \N \N 3 User \N update ---\nunique_session_id:\n- KwhMdFTZ-1R-dY-Vmg2k\n- ViKjUPK9e2J1x_-L_to6\n 527 \N 189.186.37.251 f2af4d38-819c-4493-9b13-e6bedfe40ab1 2019-05-16 19:50:59.303067 7576 755 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 189\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.389E3\nmove_type: '1'\nsale_id: 428\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.389E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-228 189.186.37.251 013f0496-e12e-4a32-b969-5cc7c60beeb5 2019-05-16 19:55:35.307526 7577 428 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 a278bf0b-c057-45f0-b3b5-16c9c34818a1 2019-05-16 19:55:36.811246 7578 756 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 189\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 586\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-325 189.186.37.251 6306dace-9a94-480a-93c9-b35a3827bc50 2019-05-16 19:56:28.526829 7579 586 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 24665ebd-5bb0-4643-9b5d-be94f1a72023 2019-05-16 19:56:33.241713 7580 598 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 188\namount: !ruby/object:BigDecimal 18:0.137759E4\ntax: !ruby/object:BigDecimal 18:0.22041E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1598E4\nstatus: 0\ndate_sale: 2019-05-16\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-265\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 797e635b-ae65-475d-831f-049c899ce795 2019-05-16 21:52:40.906528 7581 419 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 189.186.37.251 797e635b-ae65-475d-831f-049c899ce795 2019-05-16 21:52:40.964081 7582 598 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 43cf5466-9287-4fe1-bc57-3dee47affb0d 2019-05-16 21:54:33.901431 7583 757 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 188\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1598E4\nmove_type: '1'\nsale_id: 598\ncardnumber: 9758\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-265\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-265 189.186.37.251 43cf5466-9287-4fe1-bc57-3dee47affb0d 2019-05-16 21:54:33.944131 7673 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-16 22:56:11.829279000 Z\n- &1 2019-05-16 23:37:09.641275000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-17 15:52:40.305082776 Z\nsign_in_count:\n- 265\n- 266\n 532 \N 189.186.37.251 5e6260cf-370c-4b43-840f-76213ddbcacc 2019-05-17 15:52:40.314688 7674 3 User \N \N 3 User \N update ---\nunique_session_id:\n- RVbfiUaxzSxuqVAokyvF\n- ShCqxxqyULF3y5Y8Z7uP\n 533 \N 189.186.37.251 5e6260cf-370c-4b43-840f-76213ddbcacc 2019-05-17 15:52:40.339356 7584 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-16 03:48:45.445149000 Z\n- &1 2019-05-16 18:41:50.055938000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-16 22:09:53.193108525 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938257\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946473\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946473\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934084\n mask_addr: 4294967295\nsign_in_count:\n- 199\n- 200\n 400 \N 200.68.134.132 b4d7c39e-7527-4b0c-ba2a-db719ef9755d 2019-05-16 22:09:53.229015 7585 4 User \N \N 4 User \N update ---\nunique_session_id:\n- z-szAtjhVcFDZXzUNgeM\n- ouUiKSySx3GHtMfiPMsz\n 401 \N 200.68.134.132 b4d7c39e-7527-4b0c-ba2a-db719ef9755d 2019-05-16 22:09:53.253184 7586 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-15 17:58:26.086903000 Z\n- &1 2019-05-16 16:14:40.561581000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-16 22:29:04.696860275 Z\nsign_in_count:\n- 113\n- 114\n 231 \N 189.186.37.251 c6c40fba-c474-4f61-8a70-7174594f5594 2019-05-16 22:29:04.706202 7587 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ojHJLz_xwNwS_77JRF3n\n- RUTqKsfr6CGZRFLKiEbB\n 232 \N 189.186.37.251 c6c40fba-c474-4f61-8a70-7174594f5594 2019-05-16 22:29:04.7285 7588 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-16 18:41:50.055938000 Z\n- &1 2019-05-16 22:09:53.193108000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-16 22:41:58.564111957 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946473\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934084\n mask_addr: 4294967295\nsign_in_count:\n- 200\n- 201\n 402 \N 200.68.134.132 ffcc212c-2dbb-4e53-81c0-6fb046758288 2019-05-16 22:41:58.576768 7589 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ouUiKSySx3GHtMfiPMsz\n- KpXqAAqhfW7n9mgAM5W7\n 403 \N 200.68.134.132 ffcc212c-2dbb-4e53-81c0-6fb046758288 2019-05-16 22:41:58.635608 7590 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-16 19:49:35.672626000 Z\n- &1 2019-05-16 19:50:59.271728000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-16 22:56:11.829279964 Z\nsign_in_count:\n- 263\n- 264\n 528 \N 189.186.37.251 09841469-7355-4ce4-9b6f-2d1e200ba978 2019-05-16 22:56:11.864217 7591 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ViKjUPK9e2J1x_-L_to6\n- 6rNM1pjnwa7ffVe4kHFm\n 529 \N 189.186.37.251 09841469-7355-4ce4-9b6f-2d1e200ba978 2019-05-16 22:56:11.892453 7592 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-15 22:58:45.741472000 Z\n- &1 2019-05-16 00:43:53.367766000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-16 22:56:34.032382078 Z\nsign_in_count:\n- 168\n- 169\n 338 \N 189.186.37.251 41ff0540-bd4b-49de-bdc0-c14bb839de77 2019-05-16 22:56:34.044865 7593 12 User \N \N 12 User \N update ---\nunique_session_id:\n- naEZMzsmyqzwgiFHci7g\n- jwTnb1TiMSi2xQy_wpWr\n 339 \N 189.186.37.251 41ff0540-bd4b-49de-bdc0-c14bb839de77 2019-05-16 22:56:34.071274 7594 567 Product \N \N 2 User \N create ---\nsku: SHO-567\nname: SHR-0010\ndescription: SHORT DE MEZCLILLA CON CINTO APEACH ST.80620\nprice_base: !ruby/object:BigDecimal 18:0.2895E3\nprice_sale: !ruby/object:BigDecimal 18:0.579E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 2\nproduct_service_key: '01010101'\n 1 El producto SHO-567 fue creado. 189.186.37.251 45a765b8-5aab-4ef9-bd34-5099180a7133 2019-05-16 23:22:35.768705 7595 567 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000567'\n 2 \N 189.186.37.251 45a765b8-5aab-4ef9-bd34-5099180a7133 2019-05-16 23:22:35.850201 7596 633 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 567\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 45a765b8-5aab-4ef9-bd34-5099180a7133 2019-05-16 23:22:35.91844 7597 568 Product \N \N 2 User \N create ---\nsku: BLU-568\nname: BLS-0039\ndescription: BLUSA AMARILLA DE ENCAJE APEACH ST.CT5853\nprice_base: !ruby/object:BigDecimal 18:0.3345E3\nprice_sale: !ruby/object:BigDecimal 18:0.669E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-568 fue creado. 189.186.37.251 b01f320b-48a1-42f0-80ba-cce02e7a1200 2019-05-16 23:26:52.507536 7598 568 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000568'\n 2 \N 189.186.37.251 b01f320b-48a1-42f0-80ba-cce02e7a1200 2019-05-16 23:26:52.568416 7599 634 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 568\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 b01f320b-48a1-42f0-80ba-cce02e7a1200 2019-05-16 23:26:52.613143 7600 569 Product \N \N 2 User \N create ---\nsku: BLU-569\nname: BLS-0040\ndescription: PANTIBLUSA MANGA 3/4 BLUE.S ROSA NEON Y NEGRO ST.B91606\nprice_base: !ruby/object:BigDecimal 18:0.2445E3\nprice_sale: !ruby/object:BigDecimal 18:0.489E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-569 fue creado. 189.186.37.251 91150978-799c-4a58-8664-3e36c1c897a3 2019-05-16 23:28:05.946247 7601 569 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000569'\n 2 \N 189.186.37.251 91150978-799c-4a58-8664-3e36c1c897a3 2019-05-16 23:28:05.993866 7602 635 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 569\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 91150978-799c-4a58-8664-3e36c1c897a3 2019-05-16 23:28:06.049998 7603 570 Product \N \N 2 User \N create ---\nsku: BLU-570\nname: BLS-0041\ndescription: PANTIBLUSA BLUE.S VERDE NEON Y NEGRO ST.B91806\nprice_base: !ruby/object:BigDecimal 18:0.2445E3\nprice_sale: !ruby/object:BigDecimal 18:0.489E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-570 fue creado. 189.186.37.251 b4321d1e-ea98-47fc-aff6-e0296cc8ca05 2019-05-16 23:28:51.852102 7604 570 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000570'\n 2 \N 189.186.37.251 b4321d1e-ea98-47fc-aff6-e0296cc8ca05 2019-05-16 23:28:51.90052 7605 636 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 570\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 b4321d1e-ea98-47fc-aff6-e0296cc8ca05 2019-05-16 23:28:51.94612 7606 571 Product \N \N 2 User \N create ---\nsku: PAN-571\nname: PNT-0008\ndescription: PANTALON ROJO VALENTINE CAMPANA ST.P9350\nprice_base: !ruby/object:BigDecimal 18:0.3995E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-571 fue creado. 189.186.37.251 3bdb6002-827e-4726-90a6-c8e4a24ae2aa 2019-05-16 23:30:11.095742 7607 571 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000571'\n 2 \N 189.186.37.251 3bdb6002-827e-4726-90a6-c8e4a24ae2aa 2019-05-16 23:30:11.139779 7608 637 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 571\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 3bdb6002-827e-4726-90a6-c8e4a24ae2aa 2019-05-16 23:30:11.183273 7609 572 Product \N \N 2 User \N create ---\nsku: PAL-572\nname: PLZ-0006\ndescription: PALAZZO VALENTINE NEGRO CON GAZA ARRIBA ST.JP9125\nprice_base: !ruby/object:BigDecimal 18:0.5995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 9\nproduct_service_key: '01010101'\n 1 El producto PAL-572 fue creado. 189.186.37.251 afad9fca-233a-4eeb-9bae-375b9c8b424f 2019-05-16 23:31:11.292775 7610 572 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000572'\n 2 \N 189.186.37.251 afad9fca-233a-4eeb-9bae-375b9c8b424f 2019-05-16 23:31:11.334176 7611 638 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 572\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 afad9fca-233a-4eeb-9bae-375b9c8b424f 2019-05-16 23:31:11.379498 7612 573 Product \N \N 2 User \N create ---\nsku: PAL-573\nname: PLZ-0007\ndescription: PALAZZO VALENTINE LIMA DE ENCAJE ARRIBA ST.JP9815\nprice_base: !ruby/object:BigDecimal 18:0.6245E3\nprice_sale: !ruby/object:BigDecimal 18:0.1249E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 9\nproduct_service_key: '01010101'\n 1 El producto PAL-573 fue creado. 189.186.37.251 003125bc-885d-4b95-b98d-3ba37d743bf9 2019-05-16 23:32:11.450437 7613 573 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000573'\n 2 \N 189.186.37.251 003125bc-885d-4b95-b98d-3ba37d743bf9 2019-05-16 23:32:11.491409 7614 639 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 573\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 003125bc-885d-4b95-b98d-3ba37d743bf9 2019-05-16 23:32:11.533981 7615 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-16 19:50:59.271728000 Z\n- &1 2019-05-16 22:56:11.829279000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-16 23:37:09.641275563 Z\nsign_in_count:\n- 264\n- 265\n 530 \N 189.186.37.251 3920330a-e37b-4218-b118-4d190c1a944e 2019-05-16 23:37:09.651227 7616 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 6rNM1pjnwa7ffVe4kHFm\n- RVbfiUaxzSxuqVAokyvF\n 531 \N 189.186.37.251 3920330a-e37b-4218-b118-4d190c1a944e 2019-05-16 23:37:09.67433 7617 574 Product \N \N 2 User \N create ---\nsku: PAL-574\nname: PLZ-0008\ndescription: PALAZZO VALENTINE NEGRO CON ENCAJE EN ESPALDA ST.8268\nprice_base: !ruby/object:BigDecimal 18:0.5995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 9\nproduct_service_key: '01010101'\n 1 El producto PAL-574 fue creado. 189.186.37.251 75e456c2-f878-4cca-ad9c-5f01b3eea44f 2019-05-16 23:38:12.343899 7618 574 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000574'\n 2 \N 189.186.37.251 75e456c2-f878-4cca-ad9c-5f01b3eea44f 2019-05-16 23:38:12.387636 7619 640 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 574\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 75e456c2-f878-4cca-ad9c-5f01b3eea44f 2019-05-16 23:38:12.436672 7620 575 Product \N \N 2 User \N create ---\nsku: PAL-575\nname: PLZ-0009\ndescription: PALAZZO VALENTINE DE ENCAJE ARRIBA ST.JP9539\nprice_base: !ruby/object:BigDecimal 18:0.5845E3\nprice_sale: !ruby/object:BigDecimal 18:0.1169E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 9\nproduct_service_key: '01010101'\n 1 El producto PAL-575 fue creado. 189.186.37.251 01154de7-6829-4983-8566-85817b036d84 2019-05-16 23:40:29.427407 7621 575 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000575'\n 2 \N 189.186.37.251 01154de7-6829-4983-8566-85817b036d84 2019-05-16 23:40:29.532412 7622 641 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 575\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 01154de7-6829-4983-8566-85817b036d84 2019-05-16 23:40:29.606261 7623 576 Product \N \N 2 User \N create ---\nsku: VES-576\nname: VST-0026\ndescription: VESTIDO VALENTINE NEGRO ST.D9109\nprice_base: !ruby/object:BigDecimal 18:0.4995E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-576 fue creado. 189.186.37.251 62340d9f-85d4-4c00-9783-ae0b0ce32c8a 2019-05-16 23:42:23.812224 7624 576 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000576'\n 2 \N 189.186.37.251 62340d9f-85d4-4c00-9783-ae0b0ce32c8a 2019-05-16 23:42:23.881414 7625 642 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 576\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 62340d9f-85d4-4c00-9783-ae0b0ce32c8a 2019-05-16 23:42:23.933607 7698 603 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 ac0cf8f5-ead0-494f-b586-9ddefd732ea6 2019-05-17 18:49:00.593248 7626 577 Product \N \N 2 User \N create ---\nsku: VES-577\nname: VST-0027\ndescription: VESTIDO CON OLANES AMARILLO JEALOUS ST.JD5474\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-577 fue creado. 189.186.37.251 af5712c1-2753-4e29-9c68-61570cc1eff5 2019-05-16 23:44:44.466042 7627 577 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000577'\n 2 \N 189.186.37.251 af5712c1-2753-4e29-9c68-61570cc1eff5 2019-05-16 23:44:44.507498 7628 643 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 577\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 af5712c1-2753-4e29-9c68-61570cc1eff5 2019-05-16 23:44:44.551616 7629 578 Product \N \N 2 User \N create ---\nsku: JUM-578\nname: JUM-0004\ndescription: JUMPER APEACH MINT MULTI ST.YP80466\nprice_base: !ruby/object:BigDecimal 18:0.3995E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 1\nproduct_service_key: '01010101'\n 1 El producto JUM-578 fue creado. 189.186.37.251 ea82aa7a-943b-47ac-a0a5-ba1ae08a0d3e 2019-05-16 23:47:09.644106 7630 578 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000578'\n 2 \N 189.186.37.251 ea82aa7a-943b-47ac-a0a5-ba1ae08a0d3e 2019-05-16 23:47:09.688474 7631 644 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 578\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 ea82aa7a-943b-47ac-a0a5-ba1ae08a0d3e 2019-05-16 23:47:09.752377 7632 579 Product \N \N 2 User \N create ---\nsku: JUM-579\nname: JUM-0005\ndescription: JUMPER APEACH GREEN MULTI ST. 80649\nprice_base: !ruby/object:BigDecimal 18:0.3495E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 1\nproduct_service_key: '01010101'\n 1 El producto JUM-579 fue creado. 189.186.37.251 c8abd378-2941-4725-8a3b-e039a84bedd3 2019-05-16 23:49:09.833972 7633 579 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000579'\n 2 \N 189.186.37.251 c8abd378-2941-4725-8a3b-e039a84bedd3 2019-05-16 23:49:09.885544 7634 645 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 579\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 c8abd378-2941-4725-8a3b-e039a84bedd3 2019-05-16 23:49:09.944147 7635 94 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-57\namount: !ruby/object:BigDecimal 18:0.359115E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.359115E5\nobservations: ''\npurchase_date: 2019-05-16\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-57 por $ 35911.5 MXN creada. 189.186.37.251 ab8d3bdd-2463-4ff6-a4e4-9c700431570b 2019-05-16 23:49:41.920105 7636 640 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.37.251 ab8d3bdd-2463-4ff6-a4e4-9c700431570b 2019-05-16 23:49:41.958334 7637 641 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.37.251 ab8d3bdd-2463-4ff6-a4e4-9c700431570b 2019-05-16 23:49:42.002662 7638 642 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.37.251 ab8d3bdd-2463-4ff6-a4e4-9c700431570b 2019-05-16 23:49:42.045253 7639 643 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.37.251 ab8d3bdd-2463-4ff6-a4e4-9c700431570b 2019-05-16 23:49:42.089694 7640 644 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.37.251 ab8d3bdd-2463-4ff6-a4e4-9c700431570b 2019-05-16 23:49:42.129543 7641 645 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.37.251 ab8d3bdd-2463-4ff6-a4e4-9c700431570b 2019-05-16 23:49:42.162837 7642 633 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.37.251 ab8d3bdd-2463-4ff6-a4e4-9c700431570b 2019-05-16 23:49:42.202886 7643 634 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.37.251 ab8d3bdd-2463-4ff6-a4e4-9c700431570b 2019-05-16 23:49:42.24248 7644 635 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.12E2\n 2 \N 189.186.37.251 ab8d3bdd-2463-4ff6-a4e4-9c700431570b 2019-05-16 23:49:42.280877 7645 636 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.9E1\n 2 \N 189.186.37.251 ab8d3bdd-2463-4ff6-a4e4-9c700431570b 2019-05-16 23:49:42.317679 7646 637 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.37.251 ab8d3bdd-2463-4ff6-a4e4-9c700431570b 2019-05-16 23:49:42.355708 7647 638 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.37.251 ab8d3bdd-2463-4ff6-a4e4-9c700431570b 2019-05-16 23:49:42.392453 7648 639 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.37.251 ab8d3bdd-2463-4ff6-a4e4-9c700431570b 2019-05-16 23:49:42.430219 7649 599 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 189\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-05-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-332\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 393a4524-e71d-4492-8bd2-2ccdf448e41c 2019-05-17 00:10:19.895484 7650 643 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 393a4524-e71d-4492-8bd2-2ccdf448e41c 2019-05-17 00:10:19.947139 7651 599 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 2b9e0eaf-f225-429e-8225-1164388909ad 2019-05-17 00:10:52.673916 7652 758 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 189\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 599\ncardnumber: 2099\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-332\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-332 189.186.37.251 2b9e0eaf-f225-429e-8225-1164388909ad 2019-05-17 00:10:52.710721 7653 580 Product \N \N 2 User \N create ---\nsku: PAL-580\nname: PLZ-0010\ndescription: PALAZZO CQBYCQ NEGRO OLGADO ST.7853\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 9\nproduct_service_key: '01010101'\n 1 El producto PAL-580 fue creado. 189.186.37.251 781bf7ce-2f7e-4e06-b8e2-956b18be9b69 2019-05-17 00:20:43.329847 7654 580 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000580'\n 2 \N 189.186.37.251 781bf7ce-2f7e-4e06-b8e2-956b18be9b69 2019-05-17 00:20:43.372985 7655 646 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 580\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 781bf7ce-2f7e-4e06-b8e2-956b18be9b69 2019-05-17 00:20:43.417236 7656 581 Product \N \N 2 User \N create ---\nsku: PAL-581\nname: PLZ-0011\ndescription: PALAZZO CQBYCQ RALLADO BLACK/WHITE ST.7788\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 9\nproduct_service_key: '01010101'\n 1 El producto PAL-581 fue creado. 189.186.37.251 e28b2155-f6a4-441d-bd5e-2cd03126945f 2019-05-17 00:22:55.136887 7657 581 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000581'\n 2 \N 189.186.37.251 e28b2155-f6a4-441d-bd5e-2cd03126945f 2019-05-17 00:22:55.190478 7658 647 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 581\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 e28b2155-f6a4-441d-bd5e-2cd03126945f 2019-05-17 00:22:55.239383 7659 95 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-58\namount: !ruby/object:BigDecimal 18:0.8394E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.8394E4\nobservations: ''\npurchase_date: 2019-05-16\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-58 por $ 8394.0 MXN creada. 189.186.37.251 9084e80e-21ab-42df-ade0-6bd5113d9796 2019-05-17 00:23:03.626783 7660 646 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.37.251 9084e80e-21ab-42df-ade0-6bd5113d9796 2019-05-17 00:23:03.659212 7661 647 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.37.251 9084e80e-21ab-42df-ade0-6bd5113d9796 2019-05-17 00:23:03.690437 7662 759 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 189\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 576\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.7E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-317 189.186.37.251 8d2309a2-e5ce-4e02-9ff3-9c201712463d 2019-05-17 00:42:17.47841 7663 760 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 189\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 576\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-317 189.186.37.251 258c46e7-3066-4b0e-83cc-86b270a758fb 2019-05-17 00:42:50.367414 7664 576 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 06cb4417-cecb-43b7-ab92-6c72dd842f92 2019-05-17 00:42:51.455308 7665 69 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 189\nquantity: !ruby/object:BigDecimal 18:0.25E3\nstatus: 1\nobservations: '200 PAQUETERIA 50 COMIDA '\nexpense_date: 2019-05-16\nexpense_code: PV1-E-63\n 1 Egreso por 250.0 registrado 189.186.37.251 b8e7cd67-ef71-46b0-b019-147d439ee653 2019-05-17 01:24:05.468749 7666 761 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 189\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 69\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 b8e7cd67-ef71-46b0-b019-147d439ee653 2019-05-17 01:24:05.512223 7667 186 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 188\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1598E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.507E3\nphysical_cash: !ruby/object:BigDecimal 18:0.507E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 2787ce11-bb87-4b14-b4bf-1283979d829c 2019-05-17 01:57:03.207125 7668 188 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 2787ce11-bb87-4b14-b4bf-1283979d829c 2019-05-17 01:57:03.231297 7669 187 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 189\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4726E4\namount_out: !ruby/object:BigDecimal 18:0.25E3\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.32E4\ncash_fund: !ruby/object:BigDecimal 18:0.934E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4134E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 ab6f5427-588e-4fbb-8b4f-01bccc974821 2019-05-17 02:03:40.728303 7670 189 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 ab6f5427-588e-4fbb-8b4f-01bccc974821 2019-05-17 02:03:40.754887 7671 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-16 16:14:40.561581000 Z\n- &1 2019-05-16 22:29:04.696860000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-17 15:52:10.449391226 Z\nsign_in_count:\n- 114\n- 115\n 233 \N 189.186.37.251 ad236c71-44d0-488d-a3f6-9ecf6c0f0108 2019-05-17 15:52:10.497663 7672 2 User \N \N 2 User \N update ---\nunique_session_id:\n- RUTqKsfr6CGZRFLKiEbB\n- bj5L7BX2xs3K4iFxqs3x\n 234 \N 189.186.37.251 ad236c71-44d0-488d-a3f6-9ecf6c0f0108 2019-05-17 15:52:10.530456 7675 190 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.507E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 507.0 189.186.37.251 a4680bf2-fb63-4005-9ebb-1b4f20e855a3 2019-05-17 15:53:03.225821 7676 191 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.934E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 934.0 189.186.37.251 42f7e064-3020-4b19-bf36-a1edefe3426b 2019-05-17 15:54:26.156842 7677 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-16 22:09:53.193108000 Z\n- &1 2019-05-16 22:41:58.564111000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-17 17:19:35.412690089 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934084\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938102\n mask_addr: 4294967295\nsign_in_count:\n- 201\n- 202\n 404 \N 200.68.150.54 d92a13eb-b4e4-4222-b962-2f723eb22042 2019-05-17 17:19:35.424956 7678 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KpXqAAqhfW7n9mgAM5W7\n- ktTUWQTDzdsZ_zPuhhqB\n 405 \N 200.68.150.54 d92a13eb-b4e4-4222-b962-2f723eb22042 2019-05-17 17:19:35.449554 7679 600 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 191\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-05-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-333\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 a0975a2d-3f5e-4994-a4f8-f472958617b6 2019-05-17 17:30:37.677245 7680 148 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.37.251 a0975a2d-3f5e-4994-a4f8-f472958617b6 2019-05-17 17:30:37.71845 7681 600 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 ccc98dbd-77dd-4a09-aa05-a69a4d118024 2019-05-17 17:31:58.116571 7682 762 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 191\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 600\ncardnumber: 7770\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-333\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-333 189.186.37.251 ccc98dbd-77dd-4a09-aa05-a69a4d118024 2019-05-17 17:31:58.158599 7683 639 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 9c7baf87-f3b0-4754-9014-eee3f85ddae6 2019-05-17 18:14:43.822694 7684 48 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-05-17\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.37.251 65aa50be-9293-43d1-b7f5-8a5a3a798442 2019-05-17 18:14:48.472845 7685 48 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-05-17\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.37.251 01afe58f-0899-4886-b66f-8a539dd8c89e 2019-05-17 18:16:49.112847 7686 648 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 573\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 01afe58f-0899-4886-b66f-8a539dd8c89e 2019-05-17 18:16:49.147043 7687 601 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 190\namount: !ruby/object:BigDecimal 18:0.1249E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1249E4\nstatus: 0\ndate_sale: 2019-05-17\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-266\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 c90289fb-b85d-4f1a-a7b3-8cd1a20a2ac1 2019-05-17 18:18:32.381745 7688 648 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.37.251 c90289fb-b85d-4f1a-a7b3-8cd1a20a2ac1 2019-05-17 18:18:32.418163 7689 601 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 a67cf38f-72a8-4d18-88d2-d469d042ddb0 2019-05-17 18:18:44.967834 7690 763 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 190\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1249E4\nmove_type: '1'\nsale_id: 601\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-266\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.125E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-266 189.186.37.251 a67cf38f-72a8-4d18-88d2-d469d042ddb0 2019-05-17 18:18:45.007724 7691 602 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 191\namount: !ruby/object:BigDecimal 18:0.1308E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1308E4\nstatus: 0\ndate_sale: 2019-05-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-334\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 f6ae578c-e84d-41a2-a1d3-f0fe8003ec41 2019-05-17 18:29:02.697624 7692 607 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.37.251 f6ae578c-e84d-41a2-a1d3-f0fe8003ec41 2019-05-17 18:29:02.741791 7693 609 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.37.251 f6ae578c-e84d-41a2-a1d3-f0fe8003ec41 2019-05-17 18:29:02.781379 7694 602 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 db8d0fb6-20de-4f5e-bcc8-c68716659bc4 2019-05-17 18:29:32.310398 7695 764 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 191\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1308E4\nmove_type: '1'\nsale_id: 602\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-334\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1308E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-334 189.186.37.251 db8d0fb6-20de-4f5e-bcc8-c68716659bc4 2019-05-17 18:29:32.344505 7696 603 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 191\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-05-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-335\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 a19d9901-8a36-411b-924e-2fc5189e9167 2019-05-17 18:48:34.438913 7697 155 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 189.186.37.251 a19d9901-8a36-411b-924e-2fc5189e9167 2019-05-17 18:48:34.527294 7699 765 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 191\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 603\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-335\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-335 189.186.37.251 ac0cf8f5-ead0-494f-b586-9ddefd732ea6 2019-05-17 18:49:00.635796 7700 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-16 23:37:09.641275000 Z\n- &1 2019-05-17 15:52:40.305082000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-17 18:57:13.549513649 Z\nsign_in_count:\n- 266\n- 267\n 534 \N 189.186.37.251 119d2a2d-8428-42da-a520-3d2fa61f8dd9 2019-05-17 18:57:13.560333 7701 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ShCqxxqyULF3y5Y8Z7uP\n- F8FxBykz2Gh-cYjesK28\n 535 \N 189.186.37.251 119d2a2d-8428-42da-a520-3d2fa61f8dd9 2019-05-17 18:57:13.586412 7702 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-17 15:52:40.305082000 Z\n- &1 2019-05-17 18:57:13.549513000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-17 19:16:01.625749228 Z\nsign_in_count:\n- 267\n- 268\n 536 \N 189.186.37.251 64522f20-238e-4e42-8b96-ca3a5c9e91e8 2019-05-17 19:16:01.636006 7703 3 User \N \N 3 User \N update ---\nunique_session_id:\n- F8FxBykz2Gh-cYjesK28\n- ttUAVxkLKZ14wGTspXPU\n 537 \N 189.186.37.251 64522f20-238e-4e42-8b96-ca3a5c9e91e8 2019-05-17 19:16:01.660277 7704 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-05-04 21:41:48.549561000 Z\n- &1 2019-05-05 17:16:29.445718000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-17 21:10:58.217252659 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096220\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 54\n- 55\n 110 \N 189.186.37.251 3bb3f734-5700-4d4a-a02d-8b170b34b324 2019-05-17 21:10:58.228798 7705 1 User \N \N 1 User \N update ---\nunique_session_id:\n- _WEBLazd7zpxfVQVC-yz\n- pty8yQFy64UNUNQstzX_\n 111 \N 189.186.37.251 3bb3f734-5700-4d4a-a02d-8b170b34b324 2019-05-17 21:10:58.256484 7706 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-16 22:41:58.564111000 Z\n- &1 2019-05-17 17:19:35.412690000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-17 21:21:32.516233883 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934084\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938102\n mask_addr: 4294967295\nsign_in_count:\n- 202\n- 203\n 406 \N 200.68.150.54 8362d7d8-f59f-4c9f-85ab-1683e2f86426 2019-05-17 21:21:32.527474 7707 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ktTUWQTDzdsZ_zPuhhqB\n- pk1d5UCyskBGX2hbJTZ7\n 407 \N 200.68.150.54 8362d7d8-f59f-4c9f-85ab-1683e2f86426 2019-05-17 21:21:32.552839 7708 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-17 18:57:13.549513000 Z\n- &1 2019-05-17 19:16:01.625749000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-17 21:30:15.409317519 Z\nsign_in_count:\n- 268\n- 269\n 538 \N 189.186.37.251 584d819f-0b04-4b07-a3af-2d9b6c63732e 2019-05-17 21:30:15.416755 7709 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ttUAVxkLKZ14wGTspXPU\n- 8TmsW1Lo4VWxhntpz88z\n 539 \N 189.186.37.251 584d819f-0b04-4b07-a3af-2d9b6c63732e 2019-05-17 21:30:15.436105 7710 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-17 17:19:35.412690000 Z\n- &1 2019-05-17 21:21:32.516233000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-17 21:36:06.361121502 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938102\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 203\n- 204\n 408 \N 189.186.50.198 f06ced07-7145-4297-a167-d899e11bbff0 2019-05-17 21:36:06.372807 7711 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pk1d5UCyskBGX2hbJTZ7\n- 9LfK5p7xzsxM6oFKFZmQ\n 409 \N 189.186.50.198 f06ced07-7145-4297-a167-d899e11bbff0 2019-05-17 21:36:06.39861 7712 5 ProductsReturn \N \N 3 User \N create ---\nsale_id: 552\nuser_id: 3\nreturn_code: PV2-D-3\npointsale_id: 2\nnew_amount: !ruby/object:BigDecimal 18:0.78701E3\nreturned_amount: !ruby/object:BigDecimal 18:0.799E3\ndifference_amount: !ruby/object:BigDecimal 18:0.0\nis_money_returned: false\n 1 devolución PV2-D-3 creada. 189.186.37.251 1ff7df08-a6ba-4fb7-9d8a-b49e1a57e7d4 2019-05-17 21:42:35.114447 7713 477 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.37.251 1ff7df08-a6ba-4fb7-9d8a-b49e1a57e7d4 2019-05-17 21:42:35.159468 7714 395 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.251 1ff7df08-a6ba-4fb7-9d8a-b49e1a57e7d4 2019-05-17 21:42:35.190972 7715 367 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.8E1\n 7 \N 189.186.37.251 1ff7df08-a6ba-4fb7-9d8a-b49e1a57e7d4 2019-05-17 21:42:35.214026 7716 633 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 0c79a0dd-27a7-478e-8861-25a3033aaa9b 2019-05-17 22:08:29.95436 7717 633 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.37.251 d3cd0b2c-5a5a-4ca4-8866-33c937bc61bd 2019-05-17 22:08:33.499353 7718 634 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 fe12e492-60a9-4087-9fca-d44f8cd13c0d 2019-05-17 22:08:54.16672 7719 635 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 3 \N 189.186.37.251 7a0bd548-363a-4c1a-937f-c3d20257dd27 2019-05-17 22:09:00.271719 7720 634 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.37.251 2409ed4b-405b-4925-a50a-f05798ca3c31 2019-05-17 22:09:05.070174 7721 635 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.37.251 5f5f2741-d96d-45aa-a567-a96622028452 2019-05-17 22:09:06.589963 7722 638 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 0aef93e7-4a0f-439d-924c-33a757e07d72 2019-05-17 22:09:36.103151 7723 641 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 b771f2e8-5c60-4af6-a297-49515c86e5c4 2019-05-17 22:09:55.888902 7724 638 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.37.251 21e68ca7-bdce-46bd-ad39-5976b2b440c1 2019-05-17 22:10:02.078475 7725 641 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.37.251 4d2647de-b60a-49dd-8db4-dd12b3acf0e3 2019-05-17 22:10:03.005436 7726 647 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 4b30eed6-7fe9-4a5b-b297-8db3f8ecb952 2019-05-17 22:10:27.409065 7727 647 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.37.251 994154cf-8ad6-40cc-b165-fcc7b5d7c62c 2019-05-17 22:10:31.438703 7728 644 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 b9a92436-2060-4ee6-ae24-c4da2cd8a489 2019-05-17 22:10:48.231269 7729 644 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.37.251 7f159b9f-c563-4efb-a8c3-2497fbea0c16 2019-05-17 22:10:52.023612 7730 49 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-05-17\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.37.251 9a39ab5b-0e68-48e6-bd46-723a8ae56b12 2019-05-17 22:11:03.383537 7731 49 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-05-17\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.37.251 b18e0bf0-e298-4c1b-817a-5c465b1d6bfe 2019-05-17 22:19:55.364363 7732 649 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 567\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 b18e0bf0-e298-4c1b-817a-5c465b1d6bfe 2019-05-17 22:19:55.399537 7733 650 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 568\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 b18e0bf0-e298-4c1b-817a-5c465b1d6bfe 2019-05-17 22:19:55.435364 7734 651 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 569\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.12E2\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 b18e0bf0-e298-4c1b-817a-5c465b1d6bfe 2019-05-17 22:19:55.470597 7735 652 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 572\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 b18e0bf0-e298-4c1b-817a-5c465b1d6bfe 2019-05-17 22:19:55.507637 7736 653 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 575\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 b18e0bf0-e298-4c1b-817a-5c465b1d6bfe 2019-05-17 22:19:55.542225 7737 654 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 581\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 b18e0bf0-e298-4c1b-817a-5c465b1d6bfe 2019-05-17 22:19:55.576045 7738 655 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 578\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 b18e0bf0-e298-4c1b-817a-5c465b1d6bfe 2019-05-17 22:19:55.603888 7739 555 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.251 0bfa1f19-0551-4377-b571-d2e0d31129c6 2019-05-17 22:27:04.301344 7740 555 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.37.251 705194af-d00f-4c37-85bc-a3f8b8add5e5 2019-05-17 22:27:07.694537 7741 50 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-05-17\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.37.251 7f25d9e5-2fbc-4d3e-bbd9-1ce70a680694 2019-05-17 22:27:08.431187 7742 766 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 190\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.409E3\nmove_type: '1'\nsale_id: 595\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.91E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-264 189.186.37.251 0304d4ef-e14a-45bc-a0d7-95f0bf9487e6 2019-05-18 00:29:22.521479 7743 595 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 3d00fccf-b353-4276-b2a1-558c509d6338 2019-05-18 00:29:24.771206 7744 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-16 00:43:53.367766000 Z\n- &1 2019-05-16 22:56:34.032382000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 00:31:00.427821723 Z\nsign_in_count:\n- 169\n- 170\n 340 \N 189.186.37.251 70dafc79-30f7-4ae5-9f4b-079c9e5ba314 2019-05-18 00:31:00.439382 7745 12 User \N \N 12 User \N update ---\nunique_session_id:\n- jwTnb1TiMSi2xQy_wpWr\n- xFeHeRdbVLg4mz_hoTDE\n 341 \N 189.186.37.251 70dafc79-30f7-4ae5-9f4b-079c9e5ba314 2019-05-18 00:31:00.467248 7746 767 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 191\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.384E3\nmove_type: '1'\nsale_id: 594\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.116E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-329 189.186.37.251 49683359-610a-47f3-8f00-8beaefee1a5d 2019-05-18 00:31:24.377892 7747 594 Sale \N \N 12 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 b211e6ee-5a53-4e40-91bf-6d47b991ed76 2019-05-18 00:31:25.892409 7748 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-17 19:16:01.625749000 Z\n- &1 2019-05-17 21:30:15.409317000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 00:50:23.332147474 Z\nsign_in_count:\n- 269\n- 270\n 540 \N 189.186.37.251 6675e4e0-dfa7-4b49-968c-fdbbf18e91a0 2019-05-18 00:50:23.343945 7749 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 8TmsW1Lo4VWxhntpz88z\n- h5RQqyyero7cLoRmeTd9\n 541 \N 189.186.37.251 6675e4e0-dfa7-4b49-968c-fdbbf18e91a0 2019-05-18 00:50:23.397413 7750 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-17 21:30:15.409317000 Z\n- &1 2019-05-18 00:50:23.332147000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 00:51:33.908452618 Z\nsign_in_count:\n- 270\n- 271\n 542 \N 189.186.37.251 12ca2868-0229-40bc-99fc-f899d4117aab 2019-05-18 00:51:33.918678 7751 3 User \N \N 3 User \N update ---\nunique_session_id:\n- h5RQqyyero7cLoRmeTd9\n- 5WnhFoTYqYeinfmSGw-x\n 543 \N 189.186.37.251 12ca2868-0229-40bc-99fc-f899d4117aab 2019-05-18 00:51:33.943302 7752 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 00:50:23.332147000 Z\n- &1 2019-05-18 00:51:33.908452000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 00:56:08.880091598 Z\nsign_in_count:\n- 271\n- 272\n 544 \N 189.186.37.251 0708b572-4dab-4ea3-9e9e-ff8c5bda7688 2019-05-18 00:56:08.890935 7753 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 5WnhFoTYqYeinfmSGw-x\n- N-1yorAppypP74_YS53c\n 545 \N 189.186.37.251 0708b572-4dab-4ea3-9e9e-ff8c5bda7688 2019-05-18 00:56:08.922748 18202 716 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '716'\n is_parent: false\n sku: BOL-716\n name: 1BLCI19288\n description: MOCHILA CLOE DE PELUCHE\n price_base: '749.5'\n price_sale: '1499.0'\n img_product: BBAO288_GRIS_1_300x435.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170766134'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-09-26 23:05:41.171646'\n updated_at: &12 2019-10-13 20:26:05.643596383 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '716'\n sku: BOL-716\n name: 1BLCI19288\n description: MOCHILA CLOE DE PELUCHE\n price_base: '749.50'\n price_sale: '1499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-09-26 23:05:41.171646'\n updated_at: '2019-09-26 23:05:41.171646'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170766134'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '716'\n type: *3\n value: 716\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-716\n type: *7\n value: BOL-716\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCI19288\n type: *8\n value: 1BLCI19288\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCHILA CLOE DE PELUCHE\n type: *6\n value: MOCHILA CLOE DE PELUCHE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '749.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1499E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BBAO288_GRIS_1_300x435.jpg\n type: *2\n value: BBAO288_GRIS_1_300x435.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170766134'\n type: *2\n value: '7509170766134'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-09-26 23:05:41.171646'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BBAO288_GRIS_1_300x435.jpg\n 2 El producto BOL-716 fue modificado. 187.149.73.66 ce1fd2e6-3087-407e-a6a6-c5637e2769c3 2019-10-13 20:26:05.684056 7754 604 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 191\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-05-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-336\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 4361b0b4-a052-4442-a745-c3f2c52af1e1 2019-05-18 01:10:17.312481 7755 615 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.37.251 4361b0b4-a052-4442-a745-c3f2c52af1e1 2019-05-18 01:10:17.364967 7756 604 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 1b37db59-1111-46cb-b085-e8686cc4a394 2019-05-18 01:11:15.312726 7757 768 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 191\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 604\ncardnumber: 694\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-336\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-336 189.186.37.251 1b37db59-1111-46cb-b085-e8686cc4a394 2019-05-18 01:11:15.350959 7758 70 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 191\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: COMIDA\nexpense_date: 2019-05-17\nexpense_code: PV1-E-64\n 1 Egreso por 50.0 registrado 189.186.37.251 9384c714-c3a0-4c4d-a564-f78f40d64a40 2019-05-18 01:29:28.312977 7759 769 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 191\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 70\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 9384c714-c3a0-4c4d-a564-f78f40d64a40 2019-05-18 01:29:28.401416 7760 188 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 190\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1658E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.665E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2165E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 3ba4ff67-b0c3-4a9e-9270-b64c83e9a7a6 2019-05-18 01:53:29.14767 7761 190 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 3ba4ff67-b0c3-4a9e-9270-b64c83e9a7a6 2019-05-18 01:53:29.17075 7762 189 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 191\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3859E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.975E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3475E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 75e01b85-678b-4c5c-88b9-6d0361a6bd43 2019-05-18 02:02:02.736262 7763 191 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 75e01b85-678b-4c5c-88b9-6d0361a6bd43 2019-05-18 02:02:02.770448 7764 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 00:51:33.908452000 Z\n- &1 2019-05-18 00:56:08.880091000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 16:17:55.861401624 Z\nsign_in_count:\n- 272\n- 273\n 546 \N 189.186.37.251 13372889-76b8-4672-99be-d529d78efc86 2019-05-18 16:17:55.895224 7765 3 User \N \N 3 User \N update ---\nunique_session_id:\n- N-1yorAppypP74_YS53c\n- hyVVXwPZLmeTXu5SRNFR\n 547 \N 189.186.37.251 13372889-76b8-4672-99be-d529d78efc86 2019-05-18 16:17:55.926341 7766 192 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.665E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 665.0 189.186.37.251 2b5c7135-680f-449a-8ede-cb24914edec7 2019-05-18 16:20:53.814797 7767 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-16 22:29:04.696860000 Z\n- &1 2019-05-17 15:52:10.449391000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 16:46:02.367424347 Z\nsign_in_count:\n- 115\n- 116\n 235 \N 189.186.37.251 814c1279-722b-4265-ba50-536f1b609ec5 2019-05-18 16:46:02.413446 7768 2 User \N \N 2 User \N update ---\nunique_session_id:\n- bj5L7BX2xs3K4iFxqs3x\n- JNi-QTqdo-JGKib9sN9j\n 236 \N 189.186.37.251 814c1279-722b-4265-ba50-536f1b609ec5 2019-05-18 16:46:02.448437 7769 193 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.975E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 975.0 189.186.37.251 3e8c7e4f-1772-4aa1-9aa0-8f29b1b4a21f 2019-05-18 16:46:18.745325 7770 605 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 193\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.509E3\ntotal: !ruby/object:BigDecimal 18:0.119E4\nstatus: 0\ndate_sale: 2019-05-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-337\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 6c7daf81-6f8c-488e-8d15-1dd5ae34d2f1 2019-05-18 16:47:10.444817 7771 580 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.37.251 6c7daf81-6f8c-488e-8d15-1dd5ae34d2f1 2019-05-18 16:47:10.487681 7772 605 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 8e09c7b7-940f-4bcd-a78c-13ade6366441 2019-05-18 16:47:15.417369 7773 770 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 193\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.119E4\nmove_type: '1'\nsale_id: 605\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-337\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.119E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-337 189.186.37.251 8e09c7b7-940f-4bcd-a78c-13ade6366441 2019-05-18 16:47:15.456511 7774 71 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 193\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida rocio\nexpense_date: 2019-05-18\nexpense_code: PV1-E-65\n 1 Egreso por 50.0 registrado 189.186.37.251 22cdd96d-ef54-4a4e-aeee-1bfa54ed0d89 2019-05-18 17:13:36.221353 7775 771 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 193\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 71\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 22cdd96d-ef54-4a4e-aeee-1bfa54ed0d89 2019-05-18 17:13:36.260524 7801 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 21:31:29.163333000 Z\n- &1 2019-05-18 22:25:32.249680000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 22:28:53.689683701 Z\nsign_in_count:\n- 119\n- 120\n 243 \N 189.186.37.251 781516f3-6da7-451d-a992-b9865abb9089 2019-05-18 22:28:53.699757 7776 606 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 192\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-05-18\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-267\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 ad2d5b2a-1bae-41b8-a002-bea0aff33c70 2019-05-18 17:45:29.940527 7777 573 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.251 ad2d5b2a-1bae-41b8-a002-bea0aff33c70 2019-05-18 17:45:29.990635 7778 606 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 c60ad607-0911-45ea-883f-76b6a7d1431a 2019-05-18 17:45:56.763104 7779 772 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 192\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 606\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-267\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.401E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-267 189.186.37.251 c60ad607-0911-45ea-883f-76b6a7d1431a 2019-05-18 17:45:56.801602 7780 773 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 192\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.472E3\nmove_type: '1'\nsale_id: 431\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.28E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-200 189.186.37.251 729c0b71-9393-4a3b-85bb-87e91cb06135 2019-05-18 18:02:21.278433 7781 431 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 cf9e372d-a785-4568-a1b8-d487875b31e5 2019-05-18 18:02:33.059026 7782 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-17 21:21:32.516233000 Z\n- &1 2019-05-17 21:36:06.361121000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 18:14:54.468284894 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938102\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 204\n- 205\n 410 \N 189.186.50.198 c61ea5c2-0673-44fe-a14a-00cd360caa7d 2019-05-18 18:14:54.477303 7783 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9LfK5p7xzsxM6oFKFZmQ\n- pb2DsKEYfsxFq326_-hh\n 411 \N 189.186.50.198 c61ea5c2-0673-44fe-a14a-00cd360caa7d 2019-05-18 18:14:54.498517 7784 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-17 21:36:06.361121000 Z\n- &1 2019-05-18 18:14:54.468284000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 19:02:22.950539936 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938119\n mask_addr: 4294967295\nsign_in_count:\n- 205\n- 206\n 412 \N 200.68.150.71 743b5bdd-a89c-4d64-907b-d5ba1a5f2fec 2019-05-18 19:02:22.962174 7785 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pb2DsKEYfsxFq326_-hh\n- uZPs2AMvA9JkiaxqEDhs\n 413 \N 200.68.150.71 743b5bdd-a89c-4d64-907b-d5ba1a5f2fec 2019-05-18 19:02:22.987261 7786 14 User \N \N 4 User \N update --- {}\n 2 Usuario YARETZII ha sido modificado. 200.68.150.71 5e5f208b-29f9-4e8c-8bff-1c8dcbbbf8be 2019-05-18 20:54:58.303529 7787 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-17 15:52:10.449391000 Z\n- &1 2019-05-18 16:46:02.367424000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 21:25:37.033769895 Z\nsign_in_count:\n- 116\n- 117\n 237 \N 189.186.37.251 43f56b8a-adc6-406a-bb2a-9e5b0bbf0f24 2019-05-18 21:25:37.041398 7788 2 User \N \N 2 User \N update ---\nunique_session_id:\n- JNi-QTqdo-JGKib9sN9j\n- CLpx816BcFnExss_xvMF\n 238 \N 189.186.37.251 43f56b8a-adc6-406a-bb2a-9e5b0bbf0f24 2019-05-18 21:25:37.060731 7789 100 Customer \N \N 2 User \N create ---\nnick_name: MARISELA GANDARILLA\nphone: "(667) 271-1239"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARISELA GANDARILLA fue registrado. 189.186.37.251 c4300e10-51ae-43ac-85e7-7980a4df65ae 2019-05-18 21:27:02.475242 7790 607 Sale \N \N 2 User \N create ---\ncustomer_id: 100\nuser_id: 2\nopen_cash_register_id: 193\namount: !ruby/object:BigDecimal 18:0.258883E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2768E4\nstatus: 0\ndate_sale: 2019-05-18\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-338\nexpiration_date: 2019-06-22\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 fa8ad18a-690e-4f09-a4c8-de8775b5dbe9 2019-05-18 21:28:19.234219 7791 603 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 fa8ad18a-690e-4f09-a4c8-de8775b5dbe9 2019-05-18 21:28:19.277648 7792 218 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.37.251 fa8ad18a-690e-4f09-a4c8-de8775b5dbe9 2019-05-18 21:28:19.31959 7793 774 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 193\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.555E3\nmove_type: '1'\nsale_id: 607\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-338\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.555E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-338 189.186.37.251 6497b009-5114-47b3-8453-49b39b600750 2019-05-18 21:28:33.953276 7794 607 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 926faad2-0b62-4d2a-9e2d-5e89ce334fe2 2019-05-18 21:28:35.927491 7795 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 16:46:02.367424000 Z\n- &1 2019-05-18 21:25:37.033769000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 21:31:29.163333877 Z\nsign_in_count:\n- 117\n- 118\n 239 \N 189.186.37.251 91146584-fd56-48dc-9f37-fd780be065ed 2019-05-18 21:31:29.173689 7796 2 User \N \N 2 User \N update ---\nunique_session_id:\n- CLpx816BcFnExss_xvMF\n- nMUB7C9SrWzvY6RRyx4S\n 240 \N 189.186.37.251 91146584-fd56-48dc-9f37-fd780be065ed 2019-05-18 21:31:29.196918 7797 1 Commission \N \N 4 User \N create ---\ncommission_total: !ruby/object:BigDecimal 18:0.7443E4\npointsale_id: 2\nuser_id: 4\ninitial_date: 2019-05-13 06:00:00.000000000 Z\nfinal_date: 2019-05-19 05:59:59.000000000 Z\n 1 Comisiones del 2019-05-13 00:00:00 -0600 al 2019-05-18 23:59:59 -0600 generadas 200.68.150.71 d7ca63da-f5bf-4a88-af12-20c7d1d51a79 2019-05-18 22:22:52.490364 7798 14 User \N \N 4 User \N update --- {}\n 3 Usuario YARETZII ha sido modificado. 200.68.150.71 d20e5332-5214-4461-a46c-0d4176996b44 2019-05-18 22:23:32.719148 7799 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 21:25:37.033769000 Z\n- &1 2019-05-18 21:31:29.163333000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 22:25:32.249680546 Z\nsign_in_count:\n- 118\n- 119\n 241 \N 189.186.37.251 9f7f8a1c-6372-4770-9011-41ca702a89c2 2019-05-18 22:25:32.258877 7800 2 User \N \N 2 User \N update ---\nunique_session_id:\n- nMUB7C9SrWzvY6RRyx4S\n- t47yAt19i52hPG3-hdXG\n 242 \N 189.186.37.251 9f7f8a1c-6372-4770-9011-41ca702a89c2 2019-05-18 22:25:32.280161 7802 2 User \N \N 2 User \N update ---\nunique_session_id:\n- t47yAt19i52hPG3-hdXG\n- gQcuEhiMxsGYzyks5Ko6\n 244 \N 189.186.37.251 781516f3-6da7-451d-a992-b9865abb9089 2019-05-18 22:28:53.72055 7803 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 17:12:54.220557000 Z\n- &1 2019-05-08 22:02:37.795987000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 22:29:24.515989005 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938119\n mask_addr: 4294967295\nsign_in_count:\n- 55\n- 56\n 112 \N 200.68.150.71 459a95bc-155e-4cae-9866-2d2e491e1d62 2019-05-18 22:29:24.528137 7804 9 User \N \N 9 User \N update ---\nunique_session_id:\n- ormAdXss8-iLBHy_xm6v\n- xGm_kQ9kVJnksYqeyGBK\n 113 \N 200.68.150.71 459a95bc-155e-4cae-9866-2d2e491e1d62 2019-05-18 22:29:24.550538 7805 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-05-14 19:51:42.721995000 Z\n- &1 2019-05-14 19:52:37.876807000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 22:38:30.607772381 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984544540\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3187423707\n mask_addr: 4294967295\nsign_in_count:\n- 18\n- 19\n 38 \N 189.252.57.219 3f4b82cd-1a67-4c32-8238-2816be6e5088 2019-05-18 22:38:30.619298 7806 5 User \N \N 5 User \N update ---\nunique_session_id:\n- jtmKC26HoeWHEn_b1t62\n- eaf-hrkRhwBco_8NyyxZ\n 39 \N 189.252.57.219 3f4b82cd-1a67-4c32-8238-2816be6e5088 2019-05-18 22:38:30.642883 7807 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-05-14 19:52:37.876807000 Z\n- &1 2019-05-18 22:38:30.607772000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 22:39:02.202989700 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984544540\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3187423707\n mask_addr: 4294967295\nsign_in_count:\n- 19\n- 20\n 40 \N 189.252.57.219 c7ad6d05-c7b9-423e-b4c5-09155628a8ec 2019-05-18 22:39:02.217045 7808 5 User \N \N 5 User \N update ---\nunique_session_id:\n- eaf-hrkRhwBco_8NyyxZ\n- 9nJr3YGzGKYsLJpFJEqk\n 41 \N 189.252.57.219 c7ad6d05-c7b9-423e-b4c5-09155628a8ec 2019-05-18 22:39:02.240647 7809 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 00:56:08.880091000 Z\n- &1 2019-05-18 16:17:55.861401000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 22:43:29.867777577 Z\nsign_in_count:\n- 273\n- 274\n 548 \N 189.186.37.251 c5e70ee9-2911-402f-893f-668881c9476c 2019-05-18 22:43:29.877063 7810 3 User \N \N 3 User \N update ---\nunique_session_id:\n- hyVVXwPZLmeTXu5SRNFR\n- nDqqEzxDTo-4R_NT8c8z\n 549 \N 189.186.37.251 c5e70ee9-2911-402f-893f-668881c9476c 2019-05-18 22:43:29.899923 7811 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 22:25:32.249680000 Z\n- &1 2019-05-18 22:28:53.689683000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 23:04:12.407979870 Z\nsign_in_count:\n- 120\n- 121\n 245 \N 189.186.37.251 5c952abf-aa55-4726-9015-ed92f6bd8544 2019-05-18 23:04:12.415631 7812 2 User \N \N 2 User \N update ---\nunique_session_id:\n- gQcuEhiMxsGYzyks5Ko6\n- DRRDd9XvdV1myazT2cE5\n 246 \N 189.186.37.251 5c952abf-aa55-4726-9015-ed92f6bd8544 2019-05-18 23:04:12.433686 7813 10 Seller \N \N 2 User \N create ---\npointsale_id: 1\nname: YARETZI\nlast_name: NAJAR\nstatus: 1\n 1 El vendedor YARETZI NAJAR fue registrado. 189.186.37.251 e1a5d1ca-a8fe-4915-a101-94fe98e43327 2019-05-18 23:04:52.679801 7814 10 Seller \N \N 2 User \N update --- {}\n 2 El vendedor YARETZI NAJAR fue modificado. 189.186.37.251 2ffcca94-b888-49d8-911c-97f223606eb1 2019-05-18 23:05:07.793901 7815 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-16 22:56:34.032382000 Z\n- &1 2019-05-18 00:31:00.427821000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 23:13:15.133133150 Z\nsign_in_count:\n- 170\n- 171\n 342 \N 189.186.37.251 d0f3051e-9ed2-4e93-838b-4135985433f0 2019-05-18 23:13:15.142182 7816 12 User \N \N 12 User \N update ---\nunique_session_id:\n- xFeHeRdbVLg4mz_hoTDE\n- rUi31XTtPn93BPw47Y6Z\n 343 \N 189.186.37.251 d0f3051e-9ed2-4e93-838b-4135985433f0 2019-05-18 23:13:15.164943 7817 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 16:17:55.861401000 Z\n- &1 2019-05-18 22:43:29.867777000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 23:14:54.276454474 Z\nsign_in_count:\n- 274\n- 275\n 550 \N 189.186.37.251 360749dc-25a2-4197-800c-6b1bc612be27 2019-05-18 23:14:54.283132 7818 3 User \N \N 3 User \N update ---\nunique_session_id:\n- nDqqEzxDTo-4R_NT8c8z\n- KX8TK81C_snvVq2SvZra\n 551 \N 189.186.37.251 360749dc-25a2-4197-800c-6b1bc612be27 2019-05-18 23:14:54.303303 7819 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 18:14:54.468284000 Z\n- &1 2019-05-18 19:02:22.950539000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 23:17:39.626151650 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938119\n mask_addr: 4294967295\nsign_in_count:\n- 206\n- 207\n 414 \N 200.68.150.71 8c733270-2043-438c-a864-6bd6f8a575a5 2019-05-18 23:17:39.636484 7820 4 User \N \N 4 User \N update ---\nunique_session_id:\n- uZPs2AMvA9JkiaxqEDhs\n- xu5SZ9y3WZYWdC-Vn_SQ\n 415 \N 200.68.150.71 8c733270-2043-438c-a864-6bd6f8a575a5 2019-05-18 23:17:39.657894 7821 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 22:28:53.689683000 Z\n- &1 2019-05-18 23:04:12.407979000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-18 23:30:53.306918823 Z\nsign_in_count:\n- 121\n- 122\n 247 \N 189.186.37.251 b055de16-843e-4486-b258-e945aa71ff19 2019-05-18 23:30:53.314349 7822 2 User \N \N 2 User \N update ---\nunique_session_id:\n- DRRDd9XvdV1myazT2cE5\n- uUwgVkiztfUWvknEsuBs\n 248 \N 189.186.37.251 b055de16-843e-4486-b258-e945aa71ff19 2019-05-18 23:30:53.335153 7823 775 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 193\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.629E3\nmove_type: '1'\nsale_id: 424\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.71E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-225 189.186.37.251 8dc413a1-38ce-48fe-8bc3-6462dcb3205c 2019-05-18 23:31:23.028515 7824 424 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 22c73a73-0593-46e0-90e2-57e26a764c78 2019-05-18 23:31:24.563214 7825 608 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 193\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-05-18\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-339\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 f7bfd4da-85e3-4dbf-bf93-680b2d27cf31 2019-05-19 00:00:00.537993 7826 646 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 f7bfd4da-85e3-4dbf-bf93-680b2d27cf31 2019-05-19 00:00:00.670376 7827 608 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 83625db5-6fe4-421b-9904-79367f588006 2019-05-19 00:00:35.394952 7849 101 Customer \N \N 9 User \N create ---\nnick_name: MIRIAM BELTRAN\nphone: "(667) 340-7441"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MIRIAM BELTRAN fue registrado. 189.186.37.251 cc1b0c9d-86a3-4fa9-b550-b1ca0b09c215 2019-05-19 19:00:47.422182 7828 776 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 193\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 608\ncardnumber: 3235\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-339\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-339 189.186.37.251 83625db5-6fe4-421b-9904-79367f588006 2019-05-19 00:00:35.449025 7829 72 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 193\nquantity: !ruby/object:BigDecimal 18:0.2128E4\nstatus: 1\nobservations: "hras estra Rocio $300\\r\\nsueldo Rocio $628\\r\\nsueldo Anabelly $1200"\nexpense_date: 2019-05-18\nexpense_code: PV1-E-66\n 1 Egreso por 2128.0 registrado 189.186.37.251 0f6b0aef-423a-49bd-8128-ab397f356364 2019-05-19 01:38:37.337904 7830 777 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 193\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2128E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 72\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 0f6b0aef-423a-49bd-8128-ab397f356364 2019-05-19 01:38:37.373852 7831 73 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 192\nquantity: !ruby/object:BigDecimal 18:0.72E3\nstatus: 1\nobservations: SUELDO YARETZI\nexpense_date: 2019-05-18\nexpense_code: PV2-E-7\n 1 Egreso por 720.0 registrado 189.186.37.251 cf5054b4-ac6d-4a28-bc9c-7bb0d120ab30 2019-05-19 01:50:27.26804 7832 778 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 192\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.72E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 73\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 cf5054b4-ac6d-4a28-bc9c-7bb0d120ab30 2019-05-19 01:50:27.314795 7833 190 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 192\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1071E4\namount_out: !ruby/object:BigDecimal 18:0.72E3\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.516E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1016E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 f41b19ea-2424-496d-b764-56f428117de2 2019-05-19 01:55:46.015328 7834 192 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 f41b19ea-2424-496d-b764-56f428117de2 2019-05-19 01:55:46.041297 7835 191 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 193\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3773E4\namount_out: !ruby/object:BigDecimal 18:0.2178E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.4E3\ncash_fund: !ruby/object:BigDecimal 18:0.771E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1171E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 67d17a3f-2b12-4d42-ab96-a0fb33e09499 2019-05-19 01:59:29.547796 7836 193 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 67d17a3f-2b12-4d42-ab96-a0fb33e09499 2019-05-19 01:59:29.575589 7837 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 22:43:29.867777000 Z\n- &1 2019-05-18 23:14:54.276454000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-19 16:20:53.464868956 Z\nsign_in_count:\n- 275\n- 276\n 552 \N 189.186.37.251 be0474b2-31c0-464a-bc7c-c518d7f1f169 2019-05-19 16:20:53.504955 7838 3 User \N \N 3 User \N update ---\nunique_session_id:\n- KX8TK81C_snvVq2SvZra\n- k5xPKWnNtPDxzwrZ1oBw\n 553 \N 189.186.37.251 be0474b2-31c0-464a-bc7c-c518d7f1f169 2019-05-19 16:20:53.537282 7839 194 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.516E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 516.0 189.186.37.251 78aa6c48-d9e0-48fb-bb72-564d86a3147b 2019-05-19 16:21:38.016688 7840 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 19:02:22.950539000 Z\n- &1 2019-05-18 23:17:39.626151000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-19 17:16:23.521329702 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938119\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 207\n- 208\n 416 \N 189.186.50.198 159c1a98-04a2-425f-8492-474d6708977c 2019-05-19 17:16:23.532417 7841 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xu5SZ9y3WZYWdC-Vn_SQ\n- DyfdWTKJxx5B9VzhF6t5\n 417 \N 189.186.50.198 159c1a98-04a2-425f-8492-474d6708977c 2019-05-19 17:16:23.55183 7842 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-05-08 22:02:37.795987000 Z\n- &1 2019-05-18 22:29:24.515989000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-19 17:19:07.969199660 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938119\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938119\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 56\n- 57\n 114 \N 189.186.37.251 2dc64929-ceaa-4ddc-9f3f-41723f61e303 2019-05-19 17:19:07.978533 7843 9 User \N \N 9 User \N update ---\nunique_session_id:\n- xGm_kQ9kVJnksYqeyGBK\n- MThiD1hhEymakgzwXytD\n 115 \N 189.186.37.251 2dc64929-ceaa-4ddc-9f3f-41723f61e303 2019-05-19 17:19:07.998442 7844 195 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.771E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 771.0 189.186.37.251 81fe2996-4503-448c-a196-6676011221f2 2019-05-19 17:22:23.837686 7845 609 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 195\namount: !ruby/object:BigDecimal 18:0.949E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.949E3\nstatus: 0\ndate_sale: 2019-05-19\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-340\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 11696534-bd42-4790-bac7-86160c1d1f7e 2019-05-19 18:36:44.795546 7846 537 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 11696534-bd42-4790-bac7-86160c1d1f7e 2019-05-19 18:36:44.843065 7847 609 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 b6a10d6f-5d16-4fbf-b259-d2ea9e39e53e 2019-05-19 18:37:20.473918 7848 779 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 195\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.949E3\nmove_type: '1'\nsale_id: 609\ncardnumber: 2415\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-340\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-340 189.186.37.251 b6a10d6f-5d16-4fbf-b259-d2ea9e39e53e 2019-05-19 18:37:20.503336 7983 651 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 2 \N 189.186.37.251 97b433b1-24ef-49be-a161-525cef9ade11 2019-05-20 23:46:43.501275 7850 610 Sale \N \N 9 User \N create ---\ncustomer_id: 101\nuser_id: 9\nopen_cash_register_id: 195\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-05-19\nsaletype: 2\nseller_id: 3\nsale_code: PV1-V-341\nexpiration_date: 2019-06-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 35b110e4-25b1-4970-802d-fc4d489c098d 2019-05-19 19:01:08.302784 7851 609 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.37.251 35b110e4-25b1-4970-802d-fc4d489c098d 2019-05-19 19:01:08.350227 7852 780 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 195\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 610\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-341\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-341 189.186.37.251 5d018db9-4d43-4899-85ef-730c42f7489c 2019-05-19 19:01:25.537558 7853 610 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 6f96ce8e-a9b2-4d36-89e9-3cc55db42729 2019-05-19 19:01:41.697938 7854 611 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 194\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-05-19\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-268\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 b0070dc5-a851-414c-9f52-115f3d90af50 2019-05-19 19:14:01.469754 7855 573 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.37.251 b0070dc5-a851-414c-9f52-115f3d90af50 2019-05-19 19:14:01.509956 7856 611 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 c8ab5431-387c-45a8-959c-a5791c7d80d0 2019-05-19 19:14:41.529521 7857 781 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 194\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 611\ncardnumber: 4730\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-268\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-268 189.186.37.251 c8ab5431-387c-45a8-959c-a5791c7d80d0 2019-05-19 19:14:41.573595 7858 612 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 195\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-05-19\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-342\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 f0b7e6f6-52eb-4dc5-b89b-f6773af07c60 2019-05-19 19:17:15.219552 7859 177 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.37.251 f0b7e6f6-52eb-4dc5-b89b-f6773af07c60 2019-05-19 19:17:15.265153 7860 612 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 9da2d15d-7ce4-4bae-83f5-fcfdc1c5d063 2019-05-19 19:18:15.049477 7861 782 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 195\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 612\ncardnumber: 4730\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-342\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-342 189.186.37.251 9da2d15d-7ce4-4bae-83f5-fcfdc1c5d063 2019-05-19 19:18:15.083523 7862 613 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 195\namount: !ruby/object:BigDecimal 18:0.90431E3\ntax: !ruby/object:BigDecimal 18:0.14469E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1049E4\nstatus: 0\ndate_sale: 2019-05-19\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-343\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 af47d241-4277-4ffe-b875-26da92643de3 2019-05-19 19:46:45.2916 7863 183 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.37.251 af47d241-4277-4ffe-b875-26da92643de3 2019-05-19 19:46:45.327554 7864 613 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 3cfb6619-b53f-4587-b4d2-5215bcc275e3 2019-05-19 19:47:25.144518 7865 783 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 195\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1049E4\nmove_type: '1'\nsale_id: 613\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-343\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.105E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-343 189.186.37.251 3cfb6619-b53f-4587-b4d2-5215bcc275e3 2019-05-19 19:47:25.18009 7866 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 23:04:12.407979000 Z\n- &1 2019-05-18 23:30:53.306918000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-19 19:50:06.615531851 Z\nsign_in_count:\n- 122\n- 123\n 249 \N 189.186.37.251 5940fe7c-0b8b-407a-af99-86df73635b06 2019-05-19 19:50:06.625088 7867 2 User \N \N 2 User \N update ---\nunique_session_id:\n- uUwgVkiztfUWvknEsuBs\n- rZbrGyEGs_thimWcJdVD\n 250 \N 189.186.37.251 5940fe7c-0b8b-407a-af99-86df73635b06 2019-05-19 19:50:06.646063 7868 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 23:14:54.276454000 Z\n- &1 2019-05-19 16:20:53.464868000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-19 19:50:50.131534101 Z\nsign_in_count:\n- 276\n- 277\n 554 \N 189.186.37.251 2364ec41-d128-4538-bf06-7d3a8249b4af 2019-05-19 19:50:50.137803 7869 3 User \N \N 3 User \N update ---\nunique_session_id:\n- k5xPKWnNtPDxzwrZ1oBw\n- pw25i62_yAzJhfG9p7S-\n 555 \N 189.186.37.251 2364ec41-d128-4538-bf06-7d3a8249b4af 2019-05-19 19:50:50.153801 7870 192 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 194\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.599E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.516E3\nphysical_cash: !ruby/object:BigDecimal 18:0.516E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 755c7c30-c063-4b6b-9ab2-2eed3a653b3b 2019-05-19 20:55:51.5655 7871 194 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 755c7c30-c063-4b6b-9ab2-2eed3a653b3b 2019-05-19 20:55:51.58722 7984 621 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 7eb6cb16-026f-44a5-9827-0602af801f8f 2019-05-20 23:46:48.699261 8294 620 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.37.251 dbf9629c-003f-4a05-8824-31a3d3ecf318 2019-05-23 20:15:47.834301 7872 193 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 195\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.2897E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.826E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2026E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 539eac4e-7e49-478b-a243-cfedcf528d7c 2019-05-19 20:59:39.112303 7873 195 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 539eac4e-7e49-478b-a243-cfedcf528d7c 2019-05-19 20:59:39.131324 7874 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 23:17:39.626151000 Z\n- &1 2019-05-19 17:16:23.521329000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-20 01:54:57.662737269 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938119\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 208\n- 209\n 418 \N 189.186.50.198 8d2be8a0-15ef-45fa-9ee8-d650cfafaef5 2019-05-20 01:54:57.725552 7875 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DyfdWTKJxx5B9VzhF6t5\n- U4FHQxkmVirFsqQizzNZ\n 419 \N 189.186.50.198 8d2be8a0-15ef-45fa-9ee8-d650cfafaef5 2019-05-20 01:54:57.778526 7876 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 23:30:53.306918000 Z\n- &1 2019-05-19 19:50:06.615531000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-20 16:04:13.399094804 Z\nsign_in_count:\n- 123\n- 124\n 251 \N 189.186.37.251 31361d02-f47f-4bb3-a0a9-858c86989157 2019-05-20 16:04:13.452084 7877 2 User \N \N 2 User \N update ---\nunique_session_id:\n- rZbrGyEGs_thimWcJdVD\n- D9Wc1kcfVKwsnyRJjjA5\n 252 \N 189.186.37.251 31361d02-f47f-4bb3-a0a9-858c86989157 2019-05-20 16:04:13.490744 7878 196 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.826E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 826.0 189.186.37.251 57840c11-2175-4637-8646-9bfa9d7b0137 2019-05-20 16:05:16.922303 7879 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-19 17:16:23.521329000 Z\n- &1 2019-05-20 01:54:57.662737000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-20 16:38:46.777644873 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 209\n- 210\n 420 \N 189.186.37.251 aa00b27c-cdee-4b89-acec-45daf77d3d8b 2019-05-20 16:38:46.809635 7880 4 User \N \N 4 User \N update ---\nunique_session_id:\n- U4FHQxkmVirFsqQizzNZ\n- 5d2DRZ-zp9xayTA_Le4b\n 421 \N 189.186.37.251 aa00b27c-cdee-4b89-acec-45daf77d3d8b 2019-05-20 16:38:46.835559 7881 542 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '542'\n is_parent: false\n sku: BOL-542\n name: ADEY161\n description: BOLSO CLOE\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: ADEY161.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000542'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-04-16 19:26:34.828732'\n updated_at: &12 2019-05-20 16:47:25.162944581 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '542'\n sku: BOL-542\n name: ADEY161\n description: BOLSO CLOE\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-04-16 19:26:34.828732'\n updated_at: '2019-04-16 19:26:34.865207'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000542'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '542'\n type: *3\n value: 542\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-542\n type: *7\n value: BOL-542\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ADEY161\n type: *8\n value: ADEY161\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO CLOE\n type: *6\n value: BOLSO CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: ADEY161.jpg\n type: *2\n value: ADEY161.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000542'\n type: *2\n value: '0000542'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-04-16 19:26:34.828732'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- ADEY161.jpg\n 3 El producto BOL-542 fue modificado. 189.186.37.251 41ed2278-9815-4225-a1fd-f532e287914d 2019-05-20 16:47:25.269302 7882 366 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '366'\n is_parent: false\n sku: BOL-366\n name: ADEY163\n description: MOCHILA CLOE AZUL CIELO\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: ADEY163.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000366'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 16:48:33.704234027 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '366'\n sku: BOL-366\n name: ADEY163\n description: MOCHILA CLOE AZUL CIELO\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:12.115095'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000366'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '366'\n type: *3\n value: 366\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-366\n type: *7\n value: BOL-366\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ADEY163\n type: *8\n value: ADEY163\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCHILA CLOE AZUL CIELO\n type: *6\n value: MOCHILA CLOE AZUL CIELO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: ADEY163.jpg\n type: *2\n value: ADEY163.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000366'\n type: *2\n value: '0000366'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- ADEY163.jpg\n 3 El producto BOL-366 fue modificado. 189.186.37.251 ff70e829-2c92-4ca4-9d8e-8943ebcd0553 2019-05-20 16:48:33.788735 7883 614 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 196\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-05-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-344\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 52c4a898-721e-4c6b-9cad-9829916eebbe 2019-05-20 16:52:11.513697 7884 61 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.37.251 52c4a898-721e-4c6b-9cad-9829916eebbe 2019-05-20 16:52:11.567555 7885 614 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 b32328db-2981-47fd-b2bc-aada34fc1f63 2019-05-20 16:52:17.459532 7886 784 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 196\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 614\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-344\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.749E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-344 189.186.37.251 b32328db-2981-47fd-b2bc-aada34fc1f63 2019-05-20 16:52:17.50323 7887 615 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 196\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-05-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-345\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 2ac2dbd8-6f4e-4704-abcd-fc4e3313a33c 2019-05-20 16:55:37.317449 7888 610 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.251 2ac2dbd8-6f4e-4704-abcd-fc4e3313a33c 2019-05-20 16:55:37.360136 7889 615 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 732aba9d-eec6-4a85-a5ca-974ff0125c2b 2019-05-20 16:55:42.319551 7890 785 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 196\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.549E3\nmove_type: '1'\nsale_id: 615\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-345\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-345 189.186.37.251 732aba9d-eec6-4a85-a5ca-974ff0125c2b 2019-05-20 16:55:42.355082 7891 356 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '356'\n is_parent: false\n sku: BOL-356\n name: AENI622\n description: MOCHILA CLOE LILITA\n price_base: '699.5'\n price_sale: '1399.0'\n img_product: AINE622.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000356'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 17:07:01.833162754 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '356'\n sku: BOL-356\n name: AENI622\n description: MOCHILA CLOE LILITA\n price_base: '699.50'\n price_sale: '1399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:12.16797'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000356'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '356'\n type: *3\n value: 356\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-356\n type: *7\n value: BOL-356\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: AENI622\n type: *8\n value: AENI622\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCHILA CLOE LILITA\n type: *6\n value: MOCHILA CLOE LILITA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '699.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1399E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: AINE622.jpg\n type: *2\n value: AINE622.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000356'\n type: *2\n value: '0000356'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- AINE622.jpg\n 3 El producto BOL-356 fue modificado. 189.186.37.251 6f36e34c-ef1b-481b-b0f7-abe2eb695525 2019-05-20 17:07:01.897721 7892 555 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '555'\n is_parent: false\n sku: VES-555\n name: VST-0023\n description: VESTIDO CQBYCQ BLANCO CON CAFE ST.9145DW\n price_base: '489.5'\n price_sale: '979.0'\n img_product: file3-3.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000555'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-05-04 18:26:53.173057'\n updated_at: &12 2019-05-20 17:19:11.344511498 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '555'\n sku: VES-555\n name: VST-0023\n description: VESTIDO CQBYCQ BLANCO CON CAFE ST.9145DW\n price_base: '489.50'\n price_sale: '979.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-05-04 18:26:53.173057'\n updated_at: '2019-05-04 18:26:53.212155'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000555'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '555'\n type: *3\n value: 555\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-555\n type: *7\n value: VES-555\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0023\n type: *8\n value: VST-0023\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO CQBYCQ BLANCO CON CAFE ST.9145DW\n type: *6\n value: VESTIDO CQBYCQ BLANCO CON CAFE ST.9145DW\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '489.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4895E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '979.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.979E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file3-3.jpeg\n type: *2\n value: file3-3.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000555'\n type: *2\n value: '0000555'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-05-04 18:26:53.173057'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file3-3.jpeg\n 3 El producto VES-555 fue modificado. 189.186.37.251 a0eb7529-d753-4b3e-b797-b0d06720d7ea 2019-05-20 17:19:11.431233 7893 567 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '567'\n is_parent: false\n sku: SHO-567\n name: SHR-0010\n description: SHORT DE MEZCLILLA CON CINTO APEACH ST.80620\n price_base: '289.5'\n price_sale: '579.0'\n img_product: file3-2.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '2'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000567'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-05-16 23:22:35.728821'\n updated_at: &12 2019-05-20 17:21:20.462632275 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '567'\n sku: SHO-567\n name: SHR-0010\n description: SHORT DE MEZCLILLA CON CINTO APEACH ST.80620\n price_base: '289.50'\n price_sale: '579.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-05-16 23:22:35.728821'\n updated_at: '2019-05-16 23:22:35.84382'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000567'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '2'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '567'\n type: *3\n value: 567\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: SHO-567\n type: *7\n value: SHO-567\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: SHR-0010\n type: *8\n value: SHR-0010\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: SHORT DE MEZCLILLA CON CINTO APEACH ST.80620\n type: *6\n value: SHORT DE MEZCLILLA CON CINTO APEACH ST.80620\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '289.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2895E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '579.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.579E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file3-2.jpeg\n type: *2\n value: file3-2.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '2'\n type: *3\n value: 2\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000567'\n type: *2\n value: '0000567'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-05-16 23:22:35.728821'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file3-2.jpeg\n 3 El producto SHO-567 fue modificado. 189.186.37.251 42ec91e1-0996-465a-93ee-5276fe139e87 2019-05-20 17:21:20.530539 7894 578 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '578'\n is_parent: false\n sku: JUM-578\n name: JUM-0004\n description: JUMPER APEACH MINT MULTI ST.YP80466\n price_base: '399.5'\n price_sale: '799.0'\n img_product: file1-2.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '1'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000578'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-05-16 23:47:09.6197'\n updated_at: &12 2019-05-20 17:23:18.172484390 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '578'\n sku: JUM-578\n name: JUM-0004\n description: JUMPER APEACH MINT MULTI ST.YP80466\n price_base: '399.50'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-05-16 23:47:09.6197'\n updated_at: '2019-05-16 23:47:09.684444'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000578'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '1'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '578'\n type: *3\n value: 578\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: JUM-578\n type: *7\n value: JUM-578\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: JUM-0004\n type: *8\n value: JUM-0004\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: JUMPER APEACH MINT MULTI ST.YP80466\n type: *6\n value: JUMPER APEACH MINT MULTI ST.YP80466\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '399.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file1-2.jpeg\n type: *2\n value: file1-2.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '1'\n type: *3\n value: 1\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000578'\n type: *2\n value: '0000578'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-05-16 23:47:09.6197'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file1-2.jpeg\n 3 El producto JUM-578 fue modificado. 189.186.37.251 83096135-050a-4f71-ba7d-634be5fe0e19 2019-05-20 17:23:18.234821 7895 558 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '558'\n is_parent: false\n sku: JUM-558\n name: JUM-0002\n description: JUMPER NEGRO SHE+SKY ST.SL9388\n price_base: '449.5'\n price_sale: '899.0'\n img_product: file2-2.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '1'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000558'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-05-04 18:48:28.926786'\n updated_at: &12 2019-05-20 17:23:45.900321393 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '558'\n sku: JUM-558\n name: JUM-0002\n description: JUMPER NEGRO SHE+SKY ST.SL9388\n price_base: '449.50'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-05-04 18:48:28.926786'\n updated_at: '2019-05-04 18:48:28.973506'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000558'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '1'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '558'\n type: *3\n value: 558\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: JUM-558\n type: *7\n value: JUM-558\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: JUM-0002\n type: *8\n value: JUM-0002\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: JUMPER NEGRO SHE+SKY ST.SL9388\n type: *6\n value: JUMPER NEGRO SHE+SKY ST.SL9388\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '449.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file2-2.jpeg\n type: *2\n value: file2-2.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '1'\n type: *3\n value: 1\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000558'\n type: *2\n value: '0000558'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-05-04 18:48:28.926786'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file2-2.jpeg\n 3 El producto JUM-558 fue modificado. 189.186.37.251 ffdd575b-09c9-4bca-b679-d20bd68402cf 2019-05-20 17:23:45.962198 7896 581 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '581'\n is_parent: false\n sku: PAL-581\n name: PLZ-0011\n description: PALAZZO CQBYCQ RALLADO BLACK/WHITE ST.7788\n price_base: '699.5'\n price_sale: '1399.0'\n img_product: file-5.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '9'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000581'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-05-17 00:22:55.114045'\n updated_at: &12 2019-05-20 17:24:57.719071998 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '581'\n sku: PAL-581\n name: PLZ-0011\n description: PALAZZO CQBYCQ RALLADO BLACK/WHITE ST.7788\n price_base: '699.50'\n price_sale: '1399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-05-17 00:22:55.114045'\n updated_at: '2019-05-17 00:22:55.185506'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000581'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '9'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '581'\n type: *3\n value: 581\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAL-581\n type: *7\n value: PAL-581\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PLZ-0011\n type: *8\n value: PLZ-0011\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PALAZZO CQBYCQ RALLADO BLACK/WHITE ST.7788\n type: *6\n value: PALAZZO CQBYCQ RALLADO BLACK/WHITE ST.7788\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '699.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1399E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file-5.jpeg\n type: *2\n value: file-5.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '9'\n type: *3\n value: 9\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000581'\n type: *2\n value: '0000581'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-05-17 00:22:55.114045'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file-5.jpeg\n 3 El producto PAL-581 fue modificado. 189.186.37.251 a7618a7a-e93e-4201-bc36-4ac4a617b256 2019-05-20 17:24:57.790725 7897 569 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '569'\n is_parent: false\n sku: BLU-569\n name: BLS-0040\n description: PANTIBLUSA MANGA 3/4 BLUE.S ROSA NEON Y NEGRO ST.B91606\n price_base: '244.5'\n price_sale: '489.0'\n img_product: file2-3.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000569'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-05-16 23:28:05.923371'\n updated_at: &12 2019-05-20 17:26:14.137000845 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '569'\n sku: BLU-569\n name: BLS-0040\n description: PANTIBLUSA MANGA 3/4 BLUE.S ROSA NEON Y NEGRO ST.B91606\n price_base: '244.50'\n price_sale: '489.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-05-16 23:28:05.923371'\n updated_at: '2019-05-16 23:28:05.989742'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000569'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '569'\n type: *3\n value: 569\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-569\n type: *7\n value: BLU-569\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0040\n type: *8\n value: BLS-0040\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTIBLUSA MANGA 3/4 BLUE.S ROSA NEON Y NEGRO\n ST.B91606\n type: *6\n value: PANTIBLUSA MANGA 3/4 BLUE.S ROSA NEON Y NEGRO ST.B91606\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '244.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2445E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '489.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.489E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file2-3.jpeg\n type: *2\n value: file2-3.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000569'\n type: *2\n value: '0000569'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-05-16 23:28:05.923371'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file2-3.jpeg\n 3 El producto BLU-569 fue modificado. 189.186.37.251 9814e2e9-d415-4124-b103-d28f7c391864 2019-05-20 17:26:14.21393 7898 74 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 196\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: 'comida Rocío '\nexpense_date: 2019-05-20\nexpense_code: PV1-E-67\n 1 Egreso por 50.0 registrado 189.186.37.251 50dabfaf-a470-4338-b50f-8326d2b406b5 2019-05-20 17:28:14.411307 7899 786 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 196\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 74\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 50dabfaf-a470-4338-b50f-8326d2b406b5 2019-05-20 17:28:14.448786 7900 572 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '572'\n is_parent: false\n sku: PAL-572\n name: PLZ-0006\n description: PALAZZO VALENTINE NEGRO CON GAZA ARRIBA ST.JP9125\n price_base: '599.5'\n price_sale: '1199.0'\n img_product: file1-3.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '9'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000572'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-05-16 23:31:11.273181'\n updated_at: &12 2019-05-20 17:29:47.006139415 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '572'\n sku: PAL-572\n name: PLZ-0006\n description: PALAZZO VALENTINE NEGRO CON GAZA ARRIBA ST.JP9125\n price_base: '599.50'\n price_sale: '1199.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-05-16 23:31:11.273181'\n updated_at: '2019-05-16 23:31:11.329204'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000572'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '9'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '572'\n type: *3\n value: 572\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAL-572\n type: *7\n value: PAL-572\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PLZ-0006\n type: *8\n value: PLZ-0006\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PALAZZO VALENTINE NEGRO CON GAZA ARRIBA ST.JP9125\n type: *6\n value: PALAZZO VALENTINE NEGRO CON GAZA ARRIBA ST.JP9125\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '599.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.5995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1199.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1199E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file1-3.jpeg\n type: *2\n value: file1-3.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '9'\n type: *3\n value: 9\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000572'\n type: *2\n value: '0000572'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-05-16 23:31:11.273181'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file1-3.jpeg\n 3 El producto PAL-572 fue modificado. 189.186.37.251 fc22c280-975c-4c9a-b3e0-874accdf4ef6 2019-05-20 17:29:47.071363 7901 568 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '568'\n is_parent: false\n sku: BLU-568\n name: BLS-0039\n description: BLUSA AMARILLA DE ENCAJE APEACH ST.CT5853\n price_base: '334.5'\n price_sale: '669.0'\n img_product: file-4.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000568'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-05-16 23:26:52.484278'\n updated_at: &12 2019-05-20 17:31:03.842582443 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '568'\n sku: BLU-568\n name: BLS-0039\n description: BLUSA AMARILLA DE ENCAJE APEACH ST.CT5853\n price_base: '334.50'\n price_sale: '669.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-05-16 23:26:52.484278'\n updated_at: '2019-05-16 23:26:52.564521'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000568'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '568'\n type: *3\n value: 568\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-568\n type: *7\n value: BLU-568\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0039\n type: *8\n value: BLS-0039\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA AMARILLA DE ENCAJE APEACH ST.CT5853\n type: *6\n value: BLUSA AMARILLA DE ENCAJE APEACH ST.CT5853\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '334.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3345E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '669.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.669E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file-4.jpeg\n type: *2\n value: file-4.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000568'\n type: *2\n value: '0000568'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-05-16 23:26:52.484278'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file-4.jpeg\n 3 El producto BLU-568 fue modificado. 189.186.37.251 4a157c7f-fec9-4558-8925-4bbe067e2341 2019-05-20 17:31:03.927866 7902 565 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '565'\n is_parent: false\n sku: BLU-565\n name: BLS-0038\n description: BLUSA AMARILLA APEACH ST.NT1483\n price_base: '344.5'\n price_sale: '689.0'\n img_product: file5-2.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000565'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-05-04 19:04:20.888152'\n updated_at: &12 2019-05-20 17:31:39.655633744 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '565'\n sku: BLU-565\n name: BLS-0038\n description: BLUSA AMARILLA APEACH ST.NT1483\n price_base: '344.50'\n price_sale: '689.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-05-04 19:04:20.888152'\n updated_at: '2019-05-04 19:04:20.92797'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000565'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '565'\n type: *3\n value: 565\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-565\n type: *7\n value: BLU-565\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0038\n type: *8\n value: BLS-0038\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA AMARILLA APEACH ST.NT1483\n type: *6\n value: BLUSA AMARILLA APEACH ST.NT1483\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '344.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3445E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '689.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.689E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file5-2.jpeg\n type: *2\n value: file5-2.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000565'\n type: *2\n value: '0000565'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-05-04 19:04:20.888152'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file5-2.jpeg\n 3 El producto BLU-565 fue modificado. 189.186.37.251 683da2d3-fc40-4607-a47e-3c1637a032f6 2019-05-20 17:31:39.716955 7903 570 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '570'\n is_parent: false\n sku: BLU-570\n name: BLS-0041\n description: PANTIBLUSA BLUE.S VERDE NEON Y NEGRO ST.B91806\n price_base: '244.5'\n price_sale: '489.0'\n img_product: file4-2.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000570'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-05-16 23:28:51.811437'\n updated_at: &12 2019-05-20 17:33:35.159449423 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '570'\n sku: BLU-570\n name: BLS-0041\n description: PANTIBLUSA BLUE.S VERDE NEON Y NEGRO ST.B91806\n price_base: '244.50'\n price_sale: '489.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-05-16 23:28:51.811437'\n updated_at: '2019-05-16 23:28:51.89599'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000570'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '570'\n type: *3\n value: 570\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-570\n type: *7\n value: BLU-570\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0041\n type: *8\n value: BLS-0041\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTIBLUSA BLUE.S VERDE NEON Y NEGRO ST.B91806\n type: *6\n value: PANTIBLUSA BLUE.S VERDE NEON Y NEGRO ST.B91806\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '244.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2445E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '489.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.489E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file4-2.jpeg\n type: *2\n value: file4-2.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000570'\n type: *2\n value: '0000570'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-05-16 23:28:51.811437'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file4-2.jpeg\n 3 El producto BLU-570 fue modificado. 189.186.37.251 46fdcad0-cc9d-4d62-8252-4e69963396d3 2019-05-20 17:33:35.275502 7904 560 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '560'\n is_parent: false\n sku: BLU-560\n name: BLS-0036\n description: BLUSA ROSA FUCSIA APEACH ST. YT5853\n price_base: '284.5'\n price_sale: '569.0'\n img_product: file-6.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000560'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-05-04 18:53:31.08356'\n updated_at: &12 2019-05-20 17:36:36.267360402 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '560'\n sku: BLU-560\n name: BLS-0036\n description: BLUSA ROSA FUCSIA APEACH ST. YT5853\n price_base: '284.50'\n price_sale: '569.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-05-04 18:53:31.08356'\n updated_at: '2019-05-04 18:53:31.121444'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000560'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '560'\n type: *3\n value: 560\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-560\n type: *7\n value: BLU-560\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0036\n type: *8\n value: BLS-0036\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA ROSA FUCSIA APEACH ST. YT5853\n type: *6\n value: BLUSA ROSA FUCSIA APEACH ST. YT5853\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '284.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2845E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '569.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.569E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file-6.jpeg\n type: *2\n value: file-6.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000560'\n type: *2\n value: '0000560'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-05-04 18:53:31.08356'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file-6.jpeg\n 3 El producto BLU-560 fue modificado. 189.186.37.251 ed8738ce-1498-4b37-89fc-d0bda8e1b457 2019-05-20 17:36:36.329621 7905 580 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '580'\n is_parent: false\n sku: PAL-580\n name: PLZ-0010\n description: PALAZZO CQBYCQ NEGRO OLGADO ST.7853\n price_base: '699.5'\n price_sale: '1399.0'\n img_product: file-3.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '9'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000580'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-05-17 00:20:43.305828'\n updated_at: &12 2019-05-20 17:40:24.291559635 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '580'\n sku: PAL-580\n name: PLZ-0010\n description: PALAZZO CQBYCQ NEGRO OLGADO ST.7853\n price_base: '699.50'\n price_sale: '1399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-05-17 00:20:43.305828'\n updated_at: '2019-05-17 00:20:43.368983'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000580'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '9'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '580'\n type: *3\n value: 580\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAL-580\n type: *7\n value: PAL-580\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PLZ-0010\n type: *8\n value: PLZ-0010\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PALAZZO CQBYCQ NEGRO OLGADO ST.7853\n type: *6\n value: PALAZZO CQBYCQ NEGRO OLGADO ST.7853\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '699.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1399E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file-3.jpeg\n type: *2\n value: file-3.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '9'\n type: *3\n value: 9\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000580'\n type: *2\n value: '0000580'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-05-17 00:20:43.305828'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file-3.jpeg\n 3 El producto PAL-580 fue modificado. 189.186.37.251 e87eaf7e-53b1-4b60-a1fb-0eecd4f51b8f 2019-05-20 17:40:24.354093 7906 270 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '270'\n is_parent: false\n sku: ZAP-270\n name: AGTI821\n description: ZAPATO CLOE\n price_base: '599.5'\n price_sale: '1199.0'\n img_product: AGTI821.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '13'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000270'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862848'\n updated_at: &12 2019-05-20 17:41:46.083184693 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '270'\n sku: ZAP-270\n name: AGTI821\n description: ZAPATO CLOE\n price_base: '599.50'\n price_sale: '1199.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862848'\n updated_at: '2019-02-04 09:10:12.191438'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000270'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '13'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '270'\n type: *3\n value: 270\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ZAP-270\n type: *7\n value: ZAP-270\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: AGTI821\n type: *8\n value: AGTI821\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: ZAPATO CLOE\n type: *6\n value: ZAPATO CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '599.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.5995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1199.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1199E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: AGTI821.jpg\n type: *2\n value: AGTI821.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '13'\n type: *3\n value: 13\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000270'\n type: *2\n value: '0000270'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862848'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- AGTI821.jpg\n 3 El producto ZAP-270 fue modificado. 189.186.37.251 3e997fb6-3fe7-4583-8e03-0e90f591d4cf 2019-05-20 17:41:46.137598 7907 341 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '341'\n is_parent: false\n sku: COS-341\n name: AKAL722\n description: COSQUETIQUERA CLOE NEGRA Y ROSA\n price_base: '99.5'\n price_sale: '199.0'\n img_product: AKAL722.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '14'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000341'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 17:46:10.587131060 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '341'\n sku: COS-341\n name: AKAL722\n description: COSQUETIQUERA CLOE NEGRA Y ROSA\n price_base: '99.50'\n price_sale: '199.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:12.213694'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000341'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '14'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '341'\n type: *3\n value: 341\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: COS-341\n type: *7\n value: COS-341\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: AKAL722\n type: *8\n value: AKAL722\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: COSQUETIQUERA CLOE NEGRA Y ROSA\n type: *6\n value: COSQUETIQUERA CLOE NEGRA Y ROSA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '99.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.995E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '199.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.199E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: AKAL722.jpg\n type: *2\n value: AKAL722.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '14'\n type: *3\n value: 14\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000341'\n type: *2\n value: '0000341'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- AKAL722.jpg\n 3 El producto COS-341 fue modificado. 189.186.37.251 cb11150f-d3c0-49c1-9aa1-f0825e469f7a 2019-05-20 17:46:10.669139 7908 335 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '335'\n is_parent: false\n sku: CAR-335\n name: HURG309\n description: CARTERA CLOE ROJA Y NEGRA\n price_base: '399.5'\n price_sale: '799.0'\n img_product: HURG309.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000335'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 17:49:59.518208153 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '335'\n sku: CAR-335\n name: HURG309\n description: CARTERA CLOE ROJA Y NEGRA\n price_base: '399.50'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:17.404092'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000335'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '335'\n type: *3\n value: 335\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-335\n type: *7\n value: CAR-335\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: HURG309\n type: *8\n value: HURG309\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA CLOE ROJA Y NEGRA\n type: *6\n value: CARTERA CLOE ROJA Y NEGRA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '399.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: HURG309.jpg\n type: *2\n value: HURG309.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000335'\n type: *2\n value: '0000335'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- HURG309.jpg\n 3 El producto CAR-335 fue modificado. 189.186.37.251 585f5b90-53c3-49ea-93c5-ad3ef273cb9a 2019-05-20 17:49:59.619415 7909 339 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '339'\n is_parent: false\n sku: CAR-339\n name: NAIJ299\n description: CARTERA AZUL CON DORADO\n price_base: '399.5'\n price_sale: '799.0'\n img_product: NAIJ299.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000339'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 17:51:05.618154775 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '339'\n sku: CAR-339\n name: NAIJ299\n description: CARTERA AZUL CON DORADO\n price_base: '399.50'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:18.431355'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000339'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '339'\n type: *3\n value: 339\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-339\n type: *7\n value: CAR-339\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: NAIJ299\n type: *8\n value: NAIJ299\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA AZUL CON DORADO\n type: *6\n value: CARTERA AZUL CON DORADO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '399.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: NAIJ299.jpg\n type: *2\n value: NAIJ299.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000339'\n type: *2\n value: '0000339'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- NAIJ299.jpg\n 3 El producto CAR-339 fue modificado. 189.186.37.251 553f88a0-e9f2-4d19-a607-f69aa316bd3e 2019-05-20 17:51:05.732847 7910 337 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '337'\n is_parent: false\n sku: CAR-337\n name: HURG311\n description: CARTERA CLOE ROJA Y ORO ROSADO\n price_base: '449.5'\n price_sale: '899.0'\n img_product: HURG311.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000337'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 17:53:10.613933667 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '337'\n sku: CAR-337\n name: HURG311\n description: CARTERA CLOE ROJA Y ORO ROSADO\n price_base: '449.50'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:17.468818'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000337'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '337'\n type: *3\n value: 337\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-337\n type: *7\n value: CAR-337\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: HURG311\n type: *8\n value: HURG311\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA CLOE ROJA Y ORO ROSADO\n type: *6\n value: CARTERA CLOE ROJA Y ORO ROSADO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '449.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: HURG311.jpg\n type: *2\n value: HURG311.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000337'\n type: *2\n value: '0000337'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- HURG311.jpg\n 3 El producto CAR-337 fue modificado. 189.186.37.251 f31b8a91-37e8-45f2-81b6-2cd29720b097 2019-05-20 17:53:10.688732 7911 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-20 01:54:57.662737000 Z\n- &1 2019-05-20 16:38:46.777644000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-20 17:59:49.505894154 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 210\n- 211\n 422 \N 189.186.50.198 e03ce5fe-5b00-41f1-8ef3-8cdcfa4c2bae 2019-05-20 17:59:49.518638 7912 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5d2DRZ-zp9xayTA_Le4b\n- Ze-1JL9DGuZCK6RFATxV\n 423 \N 189.186.50.198 e03ce5fe-5b00-41f1-8ef3-8cdcfa4c2bae 2019-05-20 17:59:49.543731 7913 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-20 16:38:46.777644000 Z\n- &1 2019-05-20 17:59:49.505894000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-20 18:00:59.060827545 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 211\n- 212\n 424 \N 189.186.37.251 bb3abe46-baf5-4d4e-a120-9b83d7af7145 2019-05-20 18:00:59.075907 7914 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Ze-1JL9DGuZCK6RFATxV\n- RvzVYfj46_KLQSxpKgH8\n 425 \N 189.186.37.251 bb3abe46-baf5-4d4e-a120-9b83d7af7145 2019-05-20 18:00:59.102299 7915 463 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '463'\n is_parent: false\n sku: BOL-463\n name: KRAB271\n description: CARTERA CLOE\n price_base: '449.5'\n price_sale: '899.0'\n img_product: KRAB271.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000463'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-11 17:35:41.914524'\n updated_at: &12 2019-05-20 18:01:22.304669741 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '463'\n sku: BOL-463\n name: KRAB271\n description: CARTERA CLOE\n price_base: '449.50'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-11 17:35:41.914524'\n updated_at: '2019-02-11 17:35:41.967929'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000463'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '463'\n type: *3\n value: 463\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-463\n type: *7\n value: BOL-463\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: KRAB271\n type: *8\n value: KRAB271\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA CLOE\n type: *6\n value: CARTERA CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '449.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: KRAB271.jpg\n type: *2\n value: KRAB271.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000463'\n type: *2\n value: '0000463'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-11 17:35:41.914524'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- KRAB271.jpg\n 3 El producto BOL-463 fue modificado. 189.186.37.251 2bda86da-3bcb-43c1-afc8-59026ff5fb1a 2019-05-20 18:01:22.395057 7916 350 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '350'\n is_parent: false\n sku: BOL-350\n name: AMYN104\n description: BOLSA CLOE CAFÉ CON ROSA CHICA\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: AMYN104.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000350'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 18:09:39.319960352 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '350'\n sku: BOL-350\n name: AMYN104\n description: BOLSA CLOE CAFÉ CON ROSA CHICA\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:12.290386'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000350'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '350'\n type: *3\n value: 350\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-350\n type: *7\n value: BOL-350\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: AMYN104\n type: *8\n value: AMYN104\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE CAFÉ CON ROSA CHICA\n type: *6\n value: BOLSA CLOE CAFÉ CON ROSA CHICA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: AMYN104.jpg\n type: *2\n value: AMYN104.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000350'\n type: *2\n value: '0000350'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- AMYN104.jpg\n 3 El producto BOL-350 fue modificado. 189.186.37.251 9b571bdc-8361-4f71-a7ac-8ff051a4b454 2019-05-20 18:09:39.386877 7917 347 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '347'\n is_parent: false\n sku: BOL-347\n name: SODI148\n description: MOCHILA CLOE TINTA CON DORADO\n price_base: '749.5'\n price_sale: '1499.0'\n img_product: SODI148.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000347'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 18:11:30.868866560 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '347'\n sku: BOL-347\n name: SODI148\n description: MOCHILA CLOE TINTA CON DORADO\n price_base: '749.50'\n price_sale: '1499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:20.436259'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000347'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '347'\n type: *3\n value: 347\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-347\n type: *7\n value: BOL-347\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: SODI148\n type: *8\n value: SODI148\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCHILA CLOE TINTA CON DORADO\n type: *6\n value: MOCHILA CLOE TINTA CON DORADO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '749.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1499E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: SODI148.jpg\n type: *2\n value: SODI148.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000347'\n type: *2\n value: '0000347'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- SODI148.jpg\n 3 El producto BOL-347 fue modificado. 189.186.37.251 eb6c692d-8dfd-4476-97ab-55bc39e0683f 2019-05-20 18:11:30.939762 7918 363 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '363'\n is_parent: false\n sku: BOL-363\n name: BORU943\n description: MOCHILA CLOE PLATA Y ROSA\n price_base: '749.5'\n price_sale: '1499.0'\n img_product: BORU943.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000363'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 18:13:21.192876520 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '363'\n sku: BOL-363\n name: BORU943\n description: MOCHILA CLOE PLATA Y ROSA\n price_base: '749.50'\n price_sale: '1499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:16.465616'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000363'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '363'\n type: *3\n value: 363\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-363\n type: *7\n value: BOL-363\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BORU943\n type: *8\n value: BORU943\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCHILA CLOE PLATA Y ROSA\n type: *6\n value: MOCHILA CLOE PLATA Y ROSA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '749.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1499E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BORU943.jpg\n type: *2\n value: BORU943.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000363'\n type: *2\n value: '0000363'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BORU943.jpg\n 3 El producto BOL-363 fue modificado. 189.186.37.251 94f71047-e100-47db-921a-b4a9312003c6 2019-05-20 18:13:21.268242 7919 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-05-13 16:03:39.532471000 Z\n- &1 2019-05-14 02:02:03.603383000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-20 19:07:40.930990917 Z\nsign_in_count:\n- 64\n- 65\n 130 \N 189.186.37.251 c4f36b35-85e1-47e2-acf3-19780af6680b 2019-05-20 19:07:40.937453 7920 10 User \N \N 10 User \N update ---\nunique_session_id:\n- djbLD1C1SoDsYhf8wivZ\n- hyB-awYYTa_aRnR2tGC8\n 131 \N 189.186.37.251 c4f36b35-85e1-47e2-acf3-19780af6680b 2019-05-20 19:07:40.956652 7921 197 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.516E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 516.0 189.186.37.251 7b9c5676-3cb8-4e05-b6b3-3066bcb6dacc 2019-05-20 19:07:45.877586 7922 102 Customer \N \N 2 User \N create ---\nnick_name: EDUARDO DOMINGUEZ\nphone: "(667) 106-7705"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.3E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente EDUARDO DOMINGUEZ fue registrado. 189.186.37.251 f89ae890-b7e7-4e2a-9775-3f8502481e69 2019-05-20 19:18:39.970352 7923 616 Sale \N \N 2 User \N create ---\ncustomer_id: 102\nuser_id: 2\nopen_cash_register_id: 196\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-05-20\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-346\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 f79ba844-b240-4ea2-a28b-b8165fbb553c 2019-05-20 19:19:14.942373 7924 444 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.37.251 f79ba844-b240-4ea2-a28b-b8165fbb553c 2019-05-20 19:19:14.990909 7925 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-20 17:59:49.505894000 Z\n- &1 2019-05-20 18:00:59.060827000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-20 19:40:42.236939805 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 212\n- 213\n 426 \N 189.186.37.251 22c6bfde-69ea-491c-8299-ddbcd7718049 2019-05-20 19:40:42.268429 7926 4 User \N \N 4 User \N update ---\nunique_session_id:\n- RvzVYfj46_KLQSxpKgH8\n- FrayuZPZR9eyZwkXGwZX\n 427 \N 189.186.37.251 22c6bfde-69ea-491c-8299-ddbcd7718049 2019-05-20 19:40:42.303899 7927 346 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '346'\n is_parent: false\n sku: BOL-346\n name: SOED445\n description: BOLSA CLOE TINTA\n price_base: '949.5'\n price_sale: '1899.0'\n img_product: SOED445.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000346'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 19:48:41.082501315 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '346'\n sku: BOL-346\n name: SOED445\n description: BOLSA CLOE TINTA\n price_base: '949.50'\n price_sale: '1899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:20.457213'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000346'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '346'\n type: *3\n value: 346\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-346\n type: *7\n value: BOL-346\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: SOED445\n type: *8\n value: SOED445\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE TINTA\n type: *6\n value: BOLSA CLOE TINTA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '949.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.9495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1899E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: SOED445.jpg\n type: *2\n value: SOED445.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000346'\n type: *2\n value: '0000346'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- SOED445.jpg\n 3 El producto BOL-346 fue modificado. 189.186.37.251 939dd623-0e3c-4dc1-8069-6539a0dc3d2a 2019-05-20 19:48:41.136508 7928 362 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '362'\n is_parent: false\n sku: BOL-362\n name: OZAL155\n description: MOCHILA CLOE CON TEXTURA DE SERPIENTE NEGRA, TINTA Y CAMEL\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: OZAL155.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000362'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 19:49:11.439857970 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '362'\n sku: BOL-362\n name: OZAL155\n description: MOCHILA CLOE CON TEXTURA DE SERPIENTE NEGRA, TINTA Y CAMEL\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:18.653568'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000362'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '362'\n type: *3\n value: 362\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-362\n type: *7\n value: BOL-362\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: OZAL155\n type: *8\n value: OZAL155\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCHILA CLOE CON TEXTURA DE SERPIENTE NEGRA, TINTA\n Y CAMEL\n type: *6\n value: MOCHILA CLOE CON TEXTURA DE SERPIENTE NEGRA, TINTA Y CAMEL\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: OZAL155.jpg\n type: *2\n value: OZAL155.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000362'\n type: *2\n value: '0000362'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- OZAL155.jpg\n 3 El producto BOL-362 fue modificado. 189.186.37.251 f031cd9f-4bd5-409a-a5eb-968410fe3644 2019-05-20 19:49:11.505902 7929 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-20 18:00:59.060827000 Z\n- &1 2019-05-20 19:40:42.236939000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-20 19:52:28.779366366 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 213\n- 214\n 428 \N 189.186.50.198 8b9217d3-dc5b-46a0-b8e7-1365d0dc44e5 2019-05-20 19:52:28.788913 7930 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FrayuZPZR9eyZwkXGwZX\n- sq2x9CR_isqyzSexHHb9\n 429 \N 189.186.50.198 8b9217d3-dc5b-46a0-b8e7-1365d0dc44e5 2019-05-20 19:52:28.812441 7931 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-20 19:40:42.236939000 Z\n- &1 2019-05-20 19:52:28.779366000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-20 19:52:37.688535972 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 214\n- 215\n 430 \N 189.186.37.251 5a8c16b3-f5b4-4a9f-81d3-ae652390f9fc 2019-05-20 19:52:37.697994 7932 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sq2x9CR_isqyzSexHHb9\n- yxUfmNYvy4148uh8Xp6j\n 431 \N 189.186.37.251 5a8c16b3-f5b4-4a9f-81d3-ae652390f9fc 2019-05-20 19:52:37.719145 7933 369 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '369'\n is_parent: false\n sku: PER-369\n name: ANTIBACTERIAL\n description: ANTIBACTERIAL\n price_base: '23.0'\n price_sale: '49.0'\n img_product: ANTIBACTERIAL.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '15'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000369'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 19:53:02.104733883 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '369'\n sku: PER-369\n name: ANTIBACTERIAL\n description: ANTIBACTERIAL\n price_base: '23.00'\n price_sale: '49.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:12.337489'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000369'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '15'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '369'\n type: *3\n value: 369\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PER-369\n type: *7\n value: PER-369\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ANTIBACTERIAL\n type: *8\n value: ANTIBACTERIAL\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: ANTIBACTERIAL\n type: *6\n value: ANTIBACTERIAL\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '23.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.23E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '49.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.49E2\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: ANTIBACTERIAL.jpg\n type: *2\n value: ANTIBACTERIAL.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '15'\n type: *3\n value: 15\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000369'\n type: *2\n value: '0000369'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- ANTIBACTERIAL.jpg\n 3 El producto PER-369 fue modificado. 189.186.37.251 67eb918a-2828-4ee1-998a-4b62a69914cd 2019-05-20 19:53:02.165267 7934 353 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '353'\n is_parent: false\n sku: BOL-353\n name: AREB875\n description: BOLSA CLOE PIEL DE SERPIENTE\n price_base: '849.5'\n price_sale: '1699.0'\n img_product: AREB875.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000353'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 19:57:21.781445874 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '353'\n sku: BOL-353\n name: AREB875\n description: BOLSA CLOE PIEL DE SERPIENTE\n price_base: '849.50'\n price_sale: '1699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:12.414579'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000353'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '353'\n type: *3\n value: 353\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-353\n type: *7\n value: BOL-353\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: AREB875\n type: *8\n value: AREB875\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE PIEL DE SERPIENTE\n type: *6\n value: BOLSA CLOE PIEL DE SERPIENTE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '849.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1699E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: AREB875.jpeg\n type: *2\n value: AREB875.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000353'\n type: *2\n value: '0000353'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- AREB875.jpeg\n 3 El producto BOL-353 fue modificado. 189.186.37.251 f7ce8eb1-da3e-44e7-b20b-12d6f6deab48 2019-05-20 19:57:21.857685 7935 463 Product \N \N 4 User \N update ---\nsku:\n- BOL-463\n- CAR-582\ncategory_id:\n- 6\n- 4\n 4 El producto BOL-463 fue modificado. 189.186.37.251 fcf3ec79-37aa-415f-8ca4-1b210b124194 2019-05-20 20:00:44.32643 7936 348 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '348'\n is_parent: false\n sku: BOL-348\n name: ODNY157\n description: BOLSA CLOE LISAS NEGRA, ROSA Y AZUL\n price_base: '749.5'\n price_sale: '1499.0'\n img_product: ODNY.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000348'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 20:18:50.797455679 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '348'\n sku: BOL-348\n name: ODNY157\n description: BOLSA CLOE LISAS NEGRA, ROSA Y AZUL\n price_base: '749.50'\n price_sale: '1499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:18.538293'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000348'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '348'\n type: *3\n value: 348\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-348\n type: *7\n value: BOL-348\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ODNY157\n type: *8\n value: ODNY157\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE LISAS NEGRA, ROSA Y AZUL\n type: *6\n value: BOLSA CLOE LISAS NEGRA, ROSA Y AZUL\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '749.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1499E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: ODNY.jpeg\n type: *2\n value: ODNY.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000348'\n type: *2\n value: '0000348'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- ODNY.jpeg\n 3 El producto BOL-348 fue modificado. 189.186.37.251 0b77c016-f602-4d25-9fb7-a1c3da9d854b 2019-05-20 20:18:50.881107 7937 351 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '351'\n is_parent: false\n sku: BOL-351\n name: AMYN105\n description: BOLSA CLOE CAFÉ CON ROSA GRANDE\n price_base: '999.5'\n price_sale: '1999.0'\n img_product: AMYN104.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000351'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 20:19:13.791111311 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '351'\n sku: BOL-351\n name: AMYN105\n description: BOLSA CLOE CAFÉ CON ROSA GRANDE\n price_base: '999.50'\n price_sale: '1999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:12.316037'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000351'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '351'\n type: *3\n value: 351\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-351\n type: *7\n value: BOL-351\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: AMYN105\n type: *8\n value: AMYN105\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE CAFÉ CON ROSA GRANDE\n type: *6\n value: BOLSA CLOE CAFÉ CON ROSA GRANDE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '999.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.9995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1999E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: AMYN104.jpg\n type: *2\n value: AMYN104.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000351'\n type: *2\n value: '0000351'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- AMYN104.jpg\n 3 El producto BOL-351 fue modificado. 189.186.37.251 6e8d0f82-53f6-436a-a114-d9c4a129d50c 2019-05-20 20:19:13.879661 7938 355 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '355'\n is_parent: false\n sku: BOL-355\n name: LIAC507\n description: BOLSA CLOE TINTA\n price_base: '849.5'\n price_sale: '1699.0'\n img_product: LIAC.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000355'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 20:25:14.756994845 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '355'\n sku: BOL-355\n name: LIAC507\n description: BOLSA CLOE TINTA\n price_base: '849.50'\n price_sale: '1699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:18.165155'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000355'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '355'\n type: *3\n value: 355\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-355\n type: *7\n value: BOL-355\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: LIAC507\n type: *8\n value: LIAC507\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE TINTA\n type: *6\n value: BOLSA CLOE TINTA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '849.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1699E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: LIAC.jpg\n type: *2\n value: LIAC.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000355'\n type: *2\n value: '0000355'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- LIAC.jpg\n 3 El producto BOL-355 fue modificado. 189.186.37.251 44d8f89f-4ba7-45eb-9f76-655c7fbcf73f 2019-05-20 20:25:14.841056 7939 359 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '359'\n is_parent: false\n sku: BOL-359\n name: LOUB019\n description: MOCHILA CLOE ORO ROSADO\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: LOUB.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000359'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 20:25:37.076626859 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '359'\n sku: BOL-359\n name: LOUB019\n description: MOCHILA CLOE ORO ROSADO\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:18.296059'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000359'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '359'\n type: *3\n value: 359\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-359\n type: *7\n value: BOL-359\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: LOUB019\n type: *8\n value: LOUB019\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCHILA CLOE ORO ROSADO\n type: *6\n value: MOCHILA CLOE ORO ROSADO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: LOUB.jpg\n type: *2\n value: LOUB.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000359'\n type: *2\n value: '0000359'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- LOUB.jpg\n 3 El producto BOL-359 fue modificado. 189.186.37.251 45a2fc5b-405a-425d-a9da-9b9138b85b85 2019-05-20 20:25:37.151352 7940 354 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '354'\n is_parent: false\n sku: BOL-354\n name: LIMO382\n description: BOLSA CLOE COLORES CHICA\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: LIMON.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000354'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 20:25:56.948821220 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '354'\n sku: BOL-354\n name: LIMO382\n description: BOLSA CLOE COLORES CHICA\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:18.20237'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000354'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '354'\n type: *3\n value: 354\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-354\n type: *7\n value: BOL-354\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: LIMO382\n type: *8\n value: LIMO382\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE COLORES CHICA\n type: *6\n value: BOLSA CLOE COLORES CHICA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: LIMON.jpg\n type: *2\n value: LIMON.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000354'\n type: *2\n value: '0000354'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- LIMON.jpg\n 3 El producto BOL-354 fue modificado. 189.186.37.251 8990fcc8-2b67-47e3-9cea-c65044cb9bcf 2019-05-20 20:25:57.00784 7941 357 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '357'\n is_parent: false\n sku: BOL-357\n name: LIMO383\n description: BOLSA CLOE COLORES GRANDE\n price_base: '949.5'\n price_sale: '1899.0'\n img_product: LIMON.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000357'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 20:26:17.179734378 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '357'\n sku: BOL-357\n name: LIMO383\n description: BOLSA CLOE COLORES GRANDE\n price_base: '949.50'\n price_sale: '1899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:18.239082'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000357'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '357'\n type: *3\n value: 357\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-357\n type: *7\n value: BOL-357\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: LIMO383\n type: *8\n value: LIMO383\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE COLORES GRANDE\n type: *6\n value: BOLSA CLOE COLORES GRANDE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '949.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.9495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1899E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: LIMON.jpg\n type: *2\n value: LIMON.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000357'\n type: *2\n value: '0000357'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- LIMON.jpg\n 3 El producto BOL-357 fue modificado. 189.186.37.251 6720ca5a-ee77-4161-bceb-0d860ea6c6e4 2019-05-20 20:26:17.239042 7942 349 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '349'\n is_parent: false\n sku: BOL-349\n name: IOFY608\n description: MOCHILA CLOE CAMEL\n price_base: '749.5'\n price_sale: '1499.0'\n img_product: IOFY.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000349'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 20:31:38.282312416 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '349'\n sku: BOL-349\n name: IOFY608\n description: MOCHILA CLOE CAMEL\n price_base: '749.50'\n price_sale: '1499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:17.575732'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000349'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '349'\n type: *3\n value: 349\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-349\n type: *7\n value: BOL-349\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: IOFY608\n type: *8\n value: IOFY608\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCHILA CLOE CAMEL\n type: *6\n value: MOCHILA CLOE CAMEL\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '749.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1499E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IOFY.jpg\n type: *2\n value: IOFY.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000349'\n type: *2\n value: '0000349'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IOFY.jpg\n 3 El producto BOL-349 fue modificado. 189.186.37.251 b13f9d39-c085-464f-9c92-79e835874e02 2019-05-20 20:31:38.339799 7943 364 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '364'\n is_parent: false\n sku: BOL-364\n name: LUAK962\n description: BOLSA CLOE NEGRA\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: LUAK.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000364'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 20:32:30.277968606 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '364'\n sku: BOL-364\n name: LUAK962\n description: BOLSA CLOE NEGRA\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:18.321449'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000364'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '364'\n type: *3\n value: 364\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-364\n type: *7\n value: BOL-364\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: LUAK962\n type: *8\n value: LUAK962\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE NEGRA\n type: *6\n value: BOLSA CLOE NEGRA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: LUAK.jpg\n type: *2\n value: LUAK.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000364'\n type: *2\n value: '0000364'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- LUAK.jpg\n 3 El producto BOL-364 fue modificado. 189.186.37.251 3f180bab-fc8d-4d3b-8853-9046086a52a2 2019-05-20 20:32:30.349125 7944 358 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '358'\n is_parent: false\n sku: BOL-358\n name: MAOD124\n description: MOCHILA CLOE ROSITA CON DORADO\n price_base: '749.5'\n price_sale: '1499.0'\n img_product: MOAD.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000358'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 20:36:44.960285995 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '358'\n sku: BOL-358\n name: MAOD124\n description: MOCHILA CLOE ROSITA CON DORADO\n price_base: '749.50'\n price_sale: '1499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:18.394478'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000358'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '358'\n type: *3\n value: 358\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-358\n type: *7\n value: BOL-358\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: MAOD124\n type: *8\n value: MAOD124\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCHILA CLOE ROSITA CON DORADO\n type: *6\n value: MOCHILA CLOE ROSITA CON DORADO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '749.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1499E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: MOAD.jpg\n type: *2\n value: MOAD.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000358'\n type: *2\n value: '0000358'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- MOAD.jpg\n 3 El producto BOL-358 fue modificado. 189.186.37.251 c8255701-bfec-474f-8918-623e9711d02f 2019-05-20 20:36:45.026209 7945 352 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '352'\n is_parent: false\n sku: BOL-352\n name: ANYG857\n description: MOCHILA CLOE ROSA ORO Y DORADA\n price_base: '949.5'\n price_sale: '1899.0'\n img_product: ANYG.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000352'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 20:44:41.710447602 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '352'\n sku: BOL-352\n name: ANYG857\n description: MOCHILA CLOE ROSA ORO Y DORADA\n price_base: '949.50'\n price_sale: '1899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:12.362345'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000352'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '352'\n type: *3\n value: 352\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-352\n type: *7\n value: BOL-352\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ANYG857\n type: *8\n value: ANYG857\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCHILA CLOE ROSA ORO Y DORADA\n type: *6\n value: MOCHILA CLOE ROSA ORO Y DORADA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '949.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.9495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1899E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: ANYG.jpg\n type: *2\n value: ANYG.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000352'\n type: *2\n value: '0000352'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- ANYG.jpg\n 3 El producto BOL-352 fue modificado. 189.186.37.251 14156400-ee8c-4668-9b7d-432f814c033c 2019-05-20 20:44:41.806335 7946 365 Product \N \N 4 User \N update ---\ndescription:\n- BOLSA CLOE NEGRA CON POMPON\n- BOLSA CLOE OLIVE CON POMPON\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '365'\n is_parent: false\n sku: BOL-365\n name: KEIL009\n description: BOLSA CLOE OLIVE CON POMPON\n price_base: '849.5'\n price_sale: '1699.0'\n img_product: KEIL.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000365'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 20:46:14.265550631 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '365'\n sku: BOL-365\n name: KEIL009\n description: BOLSA CLOE NEGRA CON POMPON\n price_base: '849.50'\n price_sale: '1699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:17.964039'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000365'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '365'\n type: *3\n value: 365\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-365\n type: *7\n value: BOL-365\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: KEIL009\n type: *8\n value: KEIL009\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE OLIVE CON POMPON\n type: *6\n value: BOLSA CLOE OLIVE CON POMPON\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '849.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1699E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: KEIL.jpg\n type: *2\n value: KEIL.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000365'\n type: *2\n value: '0000365'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- KEIL.jpg\n 3 El producto BOL-365 fue modificado. 189.186.37.251 1c05f4af-07ca-440f-ab01-09a44722f01e 2019-05-20 20:46:14.343239 7947 361 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '361'\n is_parent: false\n sku: BOL-361\n name: JIAM488\n description: MOCHILA CLOE CAFÉ CON LLAVERO DE HOJA\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: JIAM.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000361'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 20:50:00.878422895 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '361'\n sku: BOL-361\n name: JIAM488\n description: MOCHILA CLOE CAFÉ CON LLAVERO DE HOJA\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:17.756682'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000361'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '361'\n type: *3\n value: 361\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-361\n type: *7\n value: BOL-361\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: JIAM488\n type: *8\n value: JIAM488\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCHILA CLOE CAFÉ CON LLAVERO DE HOJA\n type: *6\n value: MOCHILA CLOE CAFÉ CON LLAVERO DE HOJA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: JIAM.jpg\n type: *2\n value: JIAM.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000361'\n type: *2\n value: '0000361'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- JIAM.jpg\n 3 El producto BOL-361 fue modificado. 189.186.37.251 cca8fa9c-ce88-465b-a20e-a905e5e3a91b 2019-05-20 20:50:00.936492 7948 50 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '50'\n is_parent: false\n sku: BOL-50\n name: OZAL155\n description: BOLSA CLOE\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: OZAL155.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000050'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862628'\n updated_at: &12 2019-05-20 21:40:28.802768216 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '50'\n sku: BOL-50\n name: OZAL155\n description: BOLSA CLOE\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862628'\n updated_at: '2019-02-04 09:10:18.630916'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000050'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '50'\n type: *3\n value: 50\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-50\n type: *7\n value: BOL-50\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: OZAL155\n type: *8\n value: OZAL155\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE\n type: *6\n value: BOLSA CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: OZAL155.jpg\n type: *2\n value: OZAL155.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000050'\n type: *2\n value: '0000050'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862628'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- OZAL155.jpg\n 3 El producto BOL-50 fue modificado. 189.186.37.251 a5674b31-f4b4-44d6-965e-112a74bed42b 2019-05-20 21:40:28.90386 7949 490 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.46E3\n- !ruby/object:BigDecimal 18:0.999E3\n 3 El producto VES-490 fue modificado. 189.186.37.251 a1ed37b4-4e5b-4cf7-b0eb-f205546ba0d4 2019-05-20 21:48:42.67255 7950 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-05-14 02:02:03.603383000 Z\n- &1 2019-05-20 19:07:40.930990000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-20 21:55:07.755757774 Z\nsign_in_count:\n- 65\n- 66\n 132 \N 189.186.37.251 3f74d8de-5b69-46ff-b95d-a7453dfe858c 2019-05-20 21:55:07.765522 7951 10 User \N \N 10 User \N update ---\nunique_session_id:\n- hyB-awYYTa_aRnR2tGC8\n- QHsJUXN-F2hDDZPWfQHy\n 133 \N 189.186.37.251 3f74d8de-5b69-46ff-b95d-a7453dfe858c 2019-05-20 21:55:07.786712 7952 617 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 196\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-05-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-347\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 18dbe6a6-45b2-49db-9a80-bfd6190a29f8 2019-05-20 22:00:36.457062 7953 131 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 189.186.37.251 18dbe6a6-45b2-49db-9a80-bfd6190a29f8 2019-05-20 22:00:36.50281 7954 617 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 a8aeeaef-05b2-4e38-9543-604d63ea9194 2019-05-20 22:00:42.614497 7955 787 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 196\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 617\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-347\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-347 189.186.37.251 a8aeeaef-05b2-4e38-9543-604d63ea9194 2019-05-20 22:00:42.651416 7956 618 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 197\namount: !ruby/object:BigDecimal 18:0.1169E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1169E4\nstatus: 0\ndate_sale: 2019-05-20\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-269\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 152f70e3-75e2-4533-8d92-bc217880c515 2019-05-20 22:13:09.838184 7957 653 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.37.251 152f70e3-75e2-4533-8d92-bc217880c515 2019-05-20 22:13:09.885828 7958 618 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 a7709b34-38f8-42d5-8a55-7395ae56c8db 2019-05-20 22:13:17.812258 8011 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GcsJmvkz9P826cPqZZ2U\n- 53GZUnX-kFDWMUYX1jeh\n 437 \N 200.68.182.25 0985b52d-36d3-4fa5-9d00-8507672aa03a 2019-05-21 00:23:44.955329 37328 1218 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001218'\n 2 \N 189.186.59.156 d1f31281-2a74-4876-bf57-bc5f06a64df7 2020-08-14 21:02:00.353933 7959 788 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 197\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1169E4\nmove_type: '1'\nsale_id: 618\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-269\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.331E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-269 189.186.37.251 a7709b34-38f8-42d5-8a55-7395ae56c8db 2019-05-20 22:13:17.839278 7960 75 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 196\nquantity: !ruby/object:BigDecimal 18:0.21E2\nstatus: 1\nobservations: GARRAFON DE AGUA\nexpense_date: 2019-05-20\nexpense_code: PV1-E-68\n 1 Egreso por 21.0 registrado 189.186.37.251 eadddeae-aebc-4e02-8fa4-1994183579c7 2019-05-20 22:34:57.071888 7961 789 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 196\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.21E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 75\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 eadddeae-aebc-4e02-8fa4-1994183579c7 2019-05-20 22:34:57.119765 7962 556 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-249 cancelada. 189.186.37.251 f4c540ef-6bb2-43c3-b873-500afd9676de 2019-05-20 22:51:04.532215 7963 593 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.1E2\n 6 \N 189.186.37.251 f4c540ef-6bb2-43c3-b873-500afd9676de 2019-05-20 22:51:04.590188 7964 619 Sale \N \N 10 User \N create ---\ncustomer_id: 69\nuser_id: 10\nopen_cash_register_id: 197\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-05-20\nsaletype: 0\nseller_id: 4\nsale_code: PV2-V-270\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 f88a52eb-e23b-40ae-98d9-e9f52c00abef 2019-05-20 22:52:37.87042 7965 324 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.37.251 f88a52eb-e23b-40ae-98d9-e9f52c00abef 2019-05-20 22:52:37.914311 7966 103 Customer \N \N 2 User \N create ---\nnick_name: NORA LOPEZ PASQUEL\nphone: "(667) 182-0056"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente NORA LOPEZ PASQUEL fue registrado. 189.186.37.251 3adbf152-db15-4d6b-a45c-1da18f0a9b5d 2019-05-20 23:18:03.775277 7967 620 Sale \N \N 2 User \N create ---\ncustomer_id: 103\nuser_id: 2\nopen_cash_register_id: 196\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-05-20\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-348\nexpiration_date: 2019-06-24\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 d3abfebd-19c5-4b59-ab81-04b8699824b5 2019-05-20 23:20:44.83106 7968 646 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.251 d3abfebd-19c5-4b59-ab81-04b8699824b5 2019-05-20 23:20:44.902258 7969 790 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 196\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 620\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-348\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-348 189.186.37.251 a41aa8f1-2d1f-491d-8555-6fcaccc32223 2019-05-20 23:20:56.461401 7970 620 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 5ad52992-3ff0-4f6a-a1f4-b83ad537f92d 2019-05-20 23:20:58.421085 7971 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-20 19:52:28.779366000 Z\n- &1 2019-05-20 19:52:37.688535000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-20 23:40:48.085719911 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 215\n- 216\n 432 \N 189.186.37.251 76e4d809-77e0-41d9-a838-0c48b76a418d 2019-05-20 23:40:48.098873 7972 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yxUfmNYvy4148uh8Xp6j\n- VpXiQ2z_2-yAm3R-snLL\n 433 \N 189.186.37.251 76e4d809-77e0-41d9-a838-0c48b76a418d 2019-05-20 23:40:48.123685 7973 50 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-05-20\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.37.251 2ba8d95f-1f36-4ab9-81b5-ac39e2e9124c 2019-05-20 23:43:52.968728 7974 656 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 519\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 2ba8d95f-1f36-4ab9-81b5-ac39e2e9124c 2019-05-20 23:43:53.002704 7975 642 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 6acfd600-7464-4c6a-9dfd-733b87d10b9b 2019-05-20 23:44:09.149151 7976 642 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.37.251 87bbb390-8639-49f5-ac18-f4466833dc33 2019-05-20 23:44:12.081835 7977 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-05-20 19:07:40.930990000 Z\n- &1 2019-05-20 21:55:07.755757000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-20 23:44:27.770512506 Z\nsign_in_count:\n- 66\n- 67\n 134 \N 189.186.37.251 c87a9d9f-9376-493c-a512-d2c7d14b3a8e 2019-05-20 23:44:27.778707 7978 10 User \N \N 10 User \N update ---\nunique_session_id:\n- QHsJUXN-F2hDDZPWfQHy\n- a269up3grGjDEcUzxoZp\n 135 \N 189.186.37.251 c87a9d9f-9376-493c-a512-d2c7d14b3a8e 2019-05-20 23:44:27.79906 7979 204 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 189.186.37.251 85fc89be-1222-4c7e-95ae-71f62b0dea56 2019-05-20 23:45:48.055589 7980 204 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.37.251 b5b792be-8fc0-498e-9d33-26d2a87424d6 2019-05-20 23:45:51.634002 7981 51 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-05-20\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.37.251 e73f47ac-05a0-4ce3-a8dc-e227aeb25300 2019-05-20 23:45:52.727218 7982 621 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 197\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-05-20\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-271\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 97b433b1-24ef-49be-a161-525cef9ade11 2019-05-20 23:46:43.462441 7985 791 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 197\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.489E3\nmove_type: '1'\nsale_id: 621\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-271\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-271 189.186.37.251 7eb6cb16-026f-44a5-9827-0602af801f8f 2019-05-20 23:46:48.737698 7986 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-19 16:20:53.464868000 Z\n- &1 2019-05-19 19:50:50.131534000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-20 23:47:24.875202242 Z\nsign_in_count:\n- 277\n- 278\n 556 \N 189.186.37.251 c5efb8a5-cdc8-4962-90ea-38cbbaaf4bf0 2019-05-20 23:47:24.885189 7987 3 User \N \N 3 User \N update ---\nunique_session_id:\n- pw25i62_yAzJhfG9p7S-\n- jQ8KduZEfiHo7wXTWaos\n 557 \N 189.186.37.251 c5efb8a5-cdc8-4962-90ea-38cbbaaf4bf0 2019-05-20 23:47:24.909442 7988 7 Seller \N \N 3 User \N update ---\nstatus:\n- active\n- 0\n 2 El vendedor ILSE LIZARRAGA fue eliminado. 189.186.37.251 e6ae3185-ba8b-4564-b0b2-b37353579eef 2019-05-20 23:48:06.986696 7989 11 Seller \N \N 3 User \N create ---\npointsale_id: 2\nname: ROCIO\nlast_name: GUEVARA\nstatus: 1\n 1 El vendedor ROCIO GUEVARA fue registrado. 189.186.37.251 feb4f1ad-9a01-40f3-92ba-fe958fe021ea 2019-05-20 23:48:20.852071 7990 51 Transfer \N \N 10 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 10\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-05-20\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.37.251 f34295e9-5068-4e37-90fa-12d2883d14b3 2019-05-20 23:48:47.482389 7991 657 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 576\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 f34295e9-5068-4e37-90fa-12d2883d14b3 2019-05-20 23:48:47.507529 7992 658 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 206\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 f34295e9-5068-4e37-90fa-12d2883d14b3 2019-05-20 23:48:47.537635 7993 622 Sale \N \N 10 User \N create ---\ncustomer_id: 21\nuser_id: 10\nopen_cash_register_id: 197\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-05-20\nsaletype: 2\nseller_id: 11\nsale_code: PV2-V-272\nexpiration_date: 2019-06-24\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 286849b4-298d-4f2e-89c5-f18873f33776 2019-05-20 23:49:53.996388 7994 657 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.37.251 286849b4-298d-4f2e-89c5-f18873f33776 2019-05-20 23:49:54.046429 7995 792 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 197\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 622\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-272\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-272 189.186.37.251 382adcfc-23b0-46f5-8a91-a86a20f8584e 2019-05-20 23:50:00.646704 7996 622 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 f4e2956e-c159-4363-b0ce-45358551d4a4 2019-05-20 23:50:02.264304 7997 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-20 19:52:37.688535000 Z\n- &1 2019-05-20 23:40:48.085719000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-20 23:58:59.385866297 Z\nsign_in_count:\n- 216\n- 217\n 434 \N 189.186.37.251 61fe2caa-15cc-4ee8-81f4-57f9eed9869d 2019-05-20 23:58:59.394018 7998 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VpXiQ2z_2-yAm3R-snLL\n- GcsJmvkz9P826cPqZZ2U\n 435 \N 189.186.37.251 61fe2caa-15cc-4ee8-81f4-57f9eed9869d 2019-05-20 23:58:59.413865 7999 396 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '396'\n is_parent: false\n sku: PAL-396\n name: PAL-0002\n description: YELLOW LEAF LATISTE\n price_base: '491.4'\n price_sale: '1299.0'\n img_product: IMG_0849.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '9'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000396'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-20 23:59:42.214649294 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '396'\n sku: PAL-396\n name: PAL-0002\n description: YELLOW LEAF LATISTE\n price_base: '491.40'\n price_sale: '1299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:18.818799'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000396'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '9'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '396'\n type: *3\n value: 396\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAL-396\n type: *7\n value: PAL-396\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PAL-0002\n type: *8\n value: PAL-0002\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: YELLOW LEAF LATISTE\n type: *6\n value: YELLOW LEAF LATISTE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '491.4'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4914E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1299E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_0849.jpg\n type: *2\n value: IMG_0849.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '9'\n type: *3\n value: 9\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000396'\n type: *2\n value: '0000396'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_0849.jpg\n 3 El producto PAL-396 fue modificado. 189.186.37.251 d1fad8f6-6c76-4d13-94e9-8a0687e99e54 2019-05-20 23:59:42.36341 8000 182 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '182'\n is_parent: false\n sku: PAL-182\n name: PLZ-0001\n description: PALAZZO ROJO CON MOÑO\n price_base: '445.9'\n price_sale: '1299.0'\n img_product: IMG_0850.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '9'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000182'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.86276'\n updated_at: &12 2019-05-21 00:00:26.827669259 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '182'\n sku: PAL-182\n name: PLZ-0001\n description: PALAZZO ROJO CON MOÑO\n price_base: '445.90'\n price_sale: '1299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.86276'\n updated_at: '2019-02-04 09:10:19.20509'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000182'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '9'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '182'\n type: *3\n value: 182\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAL-182\n type: *7\n value: PAL-182\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PLZ-0001\n type: *8\n value: PLZ-0001\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PALAZZO ROJO CON MOÑO\n type: *6\n value: PALAZZO ROJO CON MOÑO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '445.9'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4459E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1299E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_0850.jpg\n type: *2\n value: IMG_0850.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '9'\n type: *3\n value: 9\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000182'\n type: *2\n value: '0000182'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.86276'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_0850.jpg\n 3 El producto PAL-182 fue modificado. 189.186.37.251 1f2e8ea2-7bac-4bea-a027-1dbedf7a88a1 2019-05-21 00:00:26.878668 8001 520 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '520'\n is_parent: false\n sku: BLU-520\n name: BLX-0019\n description: BLUSA NEGRA CON FALDITA Y MOÑO\n price_base: '384.34'\n price_sale: '849.0'\n img_product: IMG_0847.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000520'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-03-26 01:30:15.143782'\n updated_at: &12 2019-05-21 00:00:52.943925948 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '520'\n sku: BLU-520\n name: BLX-0019\n description: BLUSA NEGRA CON FALDITA Y MOÑO\n price_base: '384.34'\n price_sale: '849.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-03-26 01:30:15.143782'\n updated_at: '2019-03-26 01:30:15.183563'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000520'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '520'\n type: *3\n value: 520\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-520\n type: *7\n value: BLU-520\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLX-0019\n type: *8\n value: BLX-0019\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA NEGRA CON FALDITA Y MOÑO\n type: *6\n value: BLUSA NEGRA CON FALDITA Y MOÑO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '384.34'\n type: *1\n value: !ruby/object:BigDecimal 18:0.38434E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '849.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.849E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_0847.jpg\n type: *2\n value: IMG_0847.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000520'\n type: *2\n value: '0000520'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-03-26 01:30:15.143782'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_0847.jpg\n 3 El producto BLU-520 fue modificado. 189.186.37.251 6fc70f10-a4ec-430d-8ee6-b69ffa868e01 2019-05-21 00:00:53.026605 8002 316 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '316'\n is_parent: false\n sku: BLU-316\n name: BLX-0001\n description: BLUSA DE TIRANTES CON COLA BLANCA RAYAS\n price_base: '308.16'\n price_sale: '799.0'\n img_product: IMG_0848.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000316'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-21 00:01:17.762738864 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '316'\n sku: BLU-316\n name: BLX-0001\n description: BLUSA DE TIRANTES CON COLA BLANCA RAYAS\n price_base: '308.16'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:16.033051'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000316'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '316'\n type: *3\n value: 316\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-316\n type: *7\n value: BLU-316\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLX-0001\n type: *8\n value: BLX-0001\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA DE TIRANTES CON COLA BLANCA RAYAS\n type: *6\n value: BLUSA DE TIRANTES CON COLA BLANCA RAYAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '308.16'\n type: *1\n value: !ruby/object:BigDecimal 18:0.30816E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_0848.jpg\n type: *2\n value: IMG_0848.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000316'\n type: *2\n value: '0000316'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_0848.jpg\n 3 El producto BLU-316 fue modificado. 189.186.37.251 3a269549-454f-4bfc-b5e9-4a4d6b34e93d 2019-05-21 00:01:17.822099 8003 331 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '331'\n is_parent: false\n sku: BLU-331\n name: BLX-0015\n description: BLUSA MC COLITA RAYAS GRIS\n price_base: '307.2'\n price_sale: '819.0'\n img_product: IMG_0846.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000331'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-05-21 00:02:36.413132687 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '331'\n sku: BLU-331\n name: BLX-0015\n description: BLUSA MC COLITA RAYAS GRIS\n price_base: '307.20'\n price_sale: '819.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:16.341186'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000331'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '331'\n type: *3\n value: 331\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-331\n type: *7\n value: BLU-331\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLX-0015\n type: *8\n value: BLX-0015\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA MC COLITA RAYAS GRIS\n type: *6\n value: BLUSA MC COLITA RAYAS GRIS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '307.2'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3072E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '819.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.819E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_0846.jpg\n type: *2\n value: IMG_0846.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000331'\n type: *2\n value: '0000331'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_0846.jpg\n 3 El producto BLU-331 fue modificado. 189.186.37.251 7ee77d25-85b7-4cef-991d-f1842aec27e5 2019-05-21 00:02:36.481281 8004 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-05-20 21:55:07.755757000 Z\n- &1 2019-05-20 23:44:27.770512000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-21 00:04:06.535314035 Z\nsign_in_count:\n- 67\n- 68\n 136 \N 189.186.37.251 b2594349-b580-43ae-872d-a8d0a292dd77 2019-05-21 00:04:06.544395 8005 10 User \N \N 10 User \N update ---\nunique_session_id:\n- a269up3grGjDEcUzxoZp\n- PeMmD2smb5iTzavgnZX8\n 137 \N 189.186.37.251 b2594349-b580-43ae-872d-a8d0a292dd77 2019-05-21 00:04:06.567126 8006 623 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 197\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-05-20\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-273\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 7a6d94b6-afc7-4359-811a-27359b6cd777 2019-05-21 00:04:45.062737 8007 404 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 189.186.37.251 7a6d94b6-afc7-4359-811a-27359b6cd777 2019-05-21 00:04:45.130444 8008 623 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 c9599c94-f8cb-4c98-92d8-af8e4533daa0 2019-05-21 00:04:51.645015 8009 793 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 197\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 623\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-273\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-273 189.186.37.251 c9599c94-f8cb-4c98-92d8-af8e4533daa0 2019-05-21 00:04:51.685507 8010 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-20 23:40:48.085719000 Z\n- &1 2019-05-20 23:58:59.385866000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-21 00:23:44.921954485 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946265\n mask_addr: 4294967295\nsign_in_count:\n- 217\n- 218\n 436 \N 200.68.182.25 0985b52d-36d3-4fa5-9d00-8507672aa03a 2019-05-21 00:23:44.931445 8012 6 ProductsReturn \N \N 2 User \N create ---\nsale_id: 564\nuser_id: 2\nreturn_code: PV1-D-3\npointsale_id: 1\nnew_amount: !ruby/object:BigDecimal 18:0.1469E4\nreturned_amount: !ruby/object:BigDecimal 18:0.589E3\ndifference_amount: !ruby/object:BigDecimal 18:0.88E3\nis_money_returned: false\n 1 devolución PV1-D-3 creada. 189.186.37.251 36749a84-155b-4b0a-90ab-5360bf511019 2019-05-21 01:04:07.463591 8013 247 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.37.251 36749a84-155b-4b0a-90ab-5360bf511019 2019-05-21 01:04:07.531128 8014 603 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.251 36749a84-155b-4b0a-90ab-5360bf511019 2019-05-21 01:04:07.620496 8015 794 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 196\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.88E3\nmove_type: '1'\nsale_id: 564\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.88E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 6\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV1-D-3 189.186.37.251 58dd15f5-201a-4578-a953-e45790f637ae 2019-05-21 01:04:20.081897 8016 194 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 196\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3177E4\namount_out: !ruby/object:BigDecimal 18:0.71E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.31E4\ncash_fund: !ruby/object:BigDecimal 18:0.832E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3932E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 567746d1-df3c-432a-91f6-e40561615ed2 2019-05-21 01:46:31.913396 8017 196 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 567746d1-df3c-432a-91f6-e40561615ed2 2019-05-21 01:46:31.935288 8018 795 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 56\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.15E4\nmove_type: '1'\nsale_id: 212\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4858152465545465'\n 1 \N 189.186.37.251 1866aa24-3514-4eba-a0ae-154fb204cb69 2019-05-21 01:48:44.059412 8019 795 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 56\n- \n 2 movimiento de efectivo por venta con folio PV2-V-96 189.186.37.251 1866aa24-3514-4eba-a0ae-154fb204cb69 2019-05-21 01:48:44.105924 8020 796 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 175\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.79E3\nmove_type: '1'\nsale_id: 529\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAMANTHA\n 1 \N 189.186.37.251 42d3328d-9852-4151-aae9-2be783b0cdc8 2019-05-21 01:54:50.50949 8021 529 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 42d3328d-9852-4151-aae9-2be783b0cdc8 2019-05-21 01:54:50.54537 8022 796 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 175\n- \n 2 movimiento de efectivo por venta con folio PV2-V-236 189.186.37.251 42d3328d-9852-4151-aae9-2be783b0cdc8 2019-05-21 01:54:50.56835 8023 195 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 197\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.2357E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.24E4\ncash_fund: !ruby/object:BigDecimal 18:0.473E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2873E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 ed200ec5-bd44-429f-a592-7117696e398a 2019-05-21 02:00:52.206833 8024 197 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 ed200ec5-bd44-429f-a592-7117696e398a 2019-05-21 02:00:52.232802 8025 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-20 23:58:59.385866000 Z\n- &1 2019-05-21 00:23:44.921954000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-21 05:37:15.566887085 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946265\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946265\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 218\n- 219\n 438 \N 189.186.50.198 7a0b472b-5b04-4ba9-b3b8-b8a24cad3a30 2019-05-21 05:37:15.596715 8026 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 53GZUnX-kFDWMUYX1jeh\n- oaDZAoUWZWJseTJgR_uT\n 439 \N 189.186.50.198 7a0b472b-5b04-4ba9-b3b8-b8a24cad3a30 2019-05-21 05:37:15.633084 8027 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-19 19:50:06.615531000 Z\n- &1 2019-05-20 16:04:13.399094000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-21 16:01:38.510573060 Z\nsign_in_count:\n- 124\n- 125\n 253 \N 189.186.37.251 522a74a8-2046-4ac8-85f1-47c67017809a 2019-05-21 16:01:38.55061 8028 2 User \N \N 2 User \N update ---\nunique_session_id:\n- D9Wc1kcfVKwsnyRJjjA5\n- GzHH_gtXEKqqpSz52N1a\n 254 \N 189.186.37.251 522a74a8-2046-4ac8-85f1-47c67017809a 2019-05-21 16:01:38.580649 8029 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-19 19:50:50.131534000 Z\n- &1 2019-05-20 23:47:24.875202000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-21 16:01:41.720385232 Z\nsign_in_count:\n- 278\n- 279\n 558 \N 189.186.37.251 af600604-0f66-4345-85f0-7d418ff379ea 2019-05-21 16:01:41.750739 8030 3 User \N \N 3 User \N update ---\nunique_session_id:\n- jQ8KduZEfiHo7wXTWaos\n- pKGy3bcx73rgMpP4qN7a\n 559 \N 189.186.37.251 af600604-0f66-4345-85f0-7d418ff379ea 2019-05-21 16:01:41.806489 8031 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-20 23:47:24.875202000 Z\n- &1 2019-05-21 16:01:41.720385000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-21 16:02:30.593762646 Z\nsign_in_count:\n- 279\n- 280\n 560 \N 189.186.37.251 59d0befb-981e-4330-b497-7b80ef81772d 2019-05-21 16:02:30.601963 8032 3 User \N \N 3 User \N update ---\nunique_session_id:\n- pKGy3bcx73rgMpP4qN7a\n- MnQjVE6_i6zjMcUcd2jy\n 561 \N 189.186.37.251 59d0befb-981e-4330-b497-7b80ef81772d 2019-05-21 16:02:30.642812 8033 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-21 16:01:41.720385000 Z\n- &1 2019-05-21 16:02:30.593762000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-21 16:02:48.458334384 Z\nsign_in_count:\n- 280\n- 281\n 562 \N 189.186.37.251 3fe1f76f-c8a0-4f05-a808-4490a8c39850 2019-05-21 16:02:48.46722 8034 3 User \N \N 3 User \N update ---\nunique_session_id:\n- MnQjVE6_i6zjMcUcd2jy\n- 1YQb2Wy2rk_E9xmDY_EY\n 563 \N 189.186.37.251 3fe1f76f-c8a0-4f05-a808-4490a8c39850 2019-05-21 16:02:48.492223 8035 198 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.832E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 832.0 189.186.37.251 575fbb8b-5caf-449c-97ab-153d3bfa49b5 2019-05-21 16:04:53.930744 8175 654 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.37.251 92025f9a-424c-45c8-a3c3-7313b4d9e911 2019-05-23 00:51:35.335054 8036 199 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.473E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 473.0 189.186.37.251 1b26073d-f498-4d65-bac3-72d9c4e341aa 2019-05-21 16:06:13.275017 8037 104 Customer \N \N 3 User \N create ---\nnick_name: JENNI RAMOS\nphone: "(667) 451-0150"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JENNI RAMOS fue registrado. 189.186.37.251 d5f460f0-64e9-42ba-ad0a-b2166c13f045 2019-05-21 17:18:30.913095 8038 624 Sale \N \N 3 User \N create ---\ncustomer_id: 104\nuser_id: 3\nopen_cash_register_id: 199\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-05-21\nsaletype: 2\nseller_id: 9\nsale_code: PV2-V-274\nexpiration_date: 2019-06-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 6b1ac469-89f9-4b05-af00-95fd779a2439 2019-05-21 17:19:06.487516 8039 619 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.37.251 6b1ac469-89f9-4b05-af00-95fd779a2439 2019-05-21 17:19:06.532919 8040 797 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 199\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.42E3\nmove_type: '1'\nsale_id: 624\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-274\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.8E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-274 189.186.37.251 ea0e28e8-d92f-4205-9f1a-c6c115a8757f 2019-05-21 17:19:45.285483 8041 624 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 5a13f7ec-eca7-4d90-8fce-ca04d540073f 2019-05-21 17:19:50.951123 8042 625 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 199\namount: !ruby/object:BigDecimal 18:0.53362E3\ntax: !ruby/object:BigDecimal 18:0.8538E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.619E3\nstatus: 0\ndate_sale: 2019-05-21\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-275\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 8e394296-3a8c-4b10-85e7-29c535b4db32 2019-05-21 17:39:39.49652 8043 330 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 15 \N 189.186.37.251 8e394296-3a8c-4b10-85e7-29c535b4db32 2019-05-21 17:39:39.569262 8044 625 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 0a05e101-2356-47d1-973f-79df1d805f5f 2019-05-21 17:41:09.381586 8045 798 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 199\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.619E3\nmove_type: '1'\nsale_id: 625\ncardnumber: 4626\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-275\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-275 189.186.37.251 0a05e101-2356-47d1-973f-79df1d805f5f 2019-05-21 17:41:09.422685 8046 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-21 00:23:44.921954000 Z\n- &1 2019-05-21 05:37:15.566887000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-21 18:01:24.721966534 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946265\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 219\n- 220\n 440 \N 189.186.50.198 1df5f38e-6dc8-45fb-b438-43530a47c8c5 2019-05-21 18:01:24.736467 8047 4 User \N \N 4 User \N update ---\nunique_session_id:\n- oaDZAoUWZWJseTJgR_uT\n- FrbVYaoEySfJX5xytALQ\n 441 \N 189.186.50.198 1df5f38e-6dc8-45fb-b438-43530a47c8c5 2019-05-21 18:01:24.761398 8048 799 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 198\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.479E3\nmove_type: '1'\nsale_id: 310\ncardnumber: 8660\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-163 189.186.37.251 49afdcec-a31f-4e22-b749-4eb6566c55de 2019-05-21 18:56:31.739542 8049 310 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 b0bca64a-2315-4d35-bce0-feac352805f6 2019-05-21 18:56:35.465618 8050 626 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 198\namount: !ruby/object:BigDecimal 18:0.71083E3\ntax: !ruby/object:BigDecimal 18:0.8816E2\ndiscount: !ruby/object:BigDecimal 18:0.1598E3\ntotal: !ruby/object:BigDecimal 18:0.63919E3\nstatus: 0\ndate_sale: 2019-05-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-349\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 ba3bdc67-df70-4f8e-a100-f2e0dc8897a6 2019-05-21 20:45:03.504041 8051 225 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.37.251 ba3bdc67-df70-4f8e-a100-f2e0dc8897a6 2019-05-21 20:45:03.56143 8052 626 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 9bbeac6b-6257-4847-9578-48f502acb9e1 2019-05-21 20:45:18.741463 8053 800 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 198\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.63919E3\nmove_type: '1'\nsale_id: 626\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-349\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.6081E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-349 189.186.37.251 9bbeac6b-6257-4847-9578-48f502acb9e1 2019-05-21 20:45:18.774126 8054 627 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 198\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2019-05-21\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-350\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 f09fc83f-89f7-4b54-9fa1-54d95e068b63 2019-05-21 21:01:15.421127 8055 532 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.37.251 f09fc83f-89f7-4b54-9fa1-54d95e068b63 2019-05-21 21:01:15.475294 8056 627 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 e3ed69d6-a371-4b71-9295-2351b8065a77 2019-05-21 21:01:46.474502 8057 801 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 198\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1699E4\nmove_type: '1'\nsale_id: 627\ncardnumber: 3367\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-350\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-350 189.186.37.251 e3ed69d6-a371-4b71-9295-2351b8065a77 2019-05-21 21:01:46.513728 8058 105 Customer \N \N 3 User \N create ---\nnick_name: MARTHA CASTRO\nphone: "(667) 359-7007"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARTHA CASTRO fue registrado. 189.186.37.251 8160757e-31ab-4a94-bb21-6a8a85785c1f 2019-05-21 21:15:21.705009 8059 628 Sale \N \N 3 User \N create ---\ncustomer_id: 105\nuser_id: 3\nopen_cash_register_id: 199\namount: !ruby/object:BigDecimal 18:0.61724E3\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2019-05-21\nsaletype: 2\nseller_id: 9\nsale_code: PV2-V-276\nexpiration_date: 2019-06-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 25105f60-d374-4ccf-8f7a-7722e87bff89 2019-05-21 21:18:50.083003 8060 365 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.39E2\n- !ruby/object:BigDecimal 18:0.37E2\n 12 \N 189.186.37.251 25105f60-d374-4ccf-8f7a-7722e87bff89 2019-05-21 21:18:50.150583 8061 802 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 199\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.18E3\nmove_type: '1'\nsale_id: 628\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-276\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.2E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-276 189.186.37.251 d9e31f71-5b42-4ffe-b263-beb896d08cd6 2019-05-21 21:19:49.669652 8062 628 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 8c7733fb-3846-4cc3-b0ef-fcd73be73f0d 2019-05-21 21:19:51.48333 8063 803 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 198\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.979E3\nmove_type: '1'\nsale_id: 407\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-212 189.186.37.251 a09e929e-9d6b-44e6-9d1b-c9aefbff8b30 2019-05-21 21:45:24.698311 8064 407 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 ecf422a7-1384-4d8c-a151-480fbc8c1ca7 2019-05-21 21:45:26.338199 8065 629 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 198\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-05-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-351\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 4a765454-07a1-4a8c-a409-eb4c29d2eb04 2019-05-21 21:52:48.323178 8066 529 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 4a765454-07a1-4a8c-a409-eb4c29d2eb04 2019-05-21 21:52:48.369899 8067 629 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 7e721d86-65b0-408d-b487-deb50b63f3dc 2019-05-21 21:53:24.257635 8068 804 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 198\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 629\ncardnumber: 4697\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-351\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-351 189.186.37.251 7e721d86-65b0-408d-b487-deb50b63f3dc 2019-05-21 21:53:24.295827 8069 630 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 198\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-05-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-352\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 851ee55a-1faf-4dc7-ab15-846eabaeb99b 2019-05-21 22:22:48.114981 8070 645 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 851ee55a-1faf-4dc7-ab15-846eabaeb99b 2019-05-21 22:22:48.156941 8071 630 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 dea9f4e3-cdb0-4de7-ad13-ed600f58bfc8 2019-05-21 22:23:24.217696 8072 805 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 198\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 630\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-352\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-352 189.186.37.251 dea9f4e3-cdb0-4de7-ad13-ed600f58bfc8 2019-05-21 22:23:24.244379 8073 106 Customer \N \N 2 User \N create ---\nnick_name: mariana chavez\nphone: "(667) 118-8473"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente mariana chavez fue registrado. 189.186.37.251 c4fd1b01-1ef3-402c-9fb9-38ecf0a8a6f1 2019-05-21 22:45:57.778715 8074 631 Sale \N \N 2 User \N create ---\ncustomer_id: 106\nuser_id: 2\nopen_cash_register_id: 198\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-05-21\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-353\nexpiration_date: 2019-06-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 45458719-bb51-40ba-8c73-358305abdc0e 2019-05-21 22:46:28.182417 8075 534 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.37.251 45458719-bb51-40ba-8c73-358305abdc0e 2019-05-21 22:46:28.229828 8076 806 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 198\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 631\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-353\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-353 189.186.37.251 0bb18382-f8b1-490d-b2c2-6da928c300e7 2019-05-21 22:46:36.948185 8077 631 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 5a5d3f57-f9c9-44ca-bfe0-a00941f45acc 2019-05-21 22:47:31.204122 8078 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 00:31:00.427821000 Z\n- &1 2019-05-18 23:13:15.133133000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-21 22:48:49.817446809 Z\nsign_in_count:\n- 171\n- 172\n 344 \N 189.186.37.251 fb7ea559-b720-4bef-9916-15b26de377de 2019-05-21 22:48:49.828635 8079 12 User \N \N 12 User \N update ---\nunique_session_id:\n- rUi31XTtPn93BPw47Y6Z\n- sv46pr2T1WS7kW7662NU\n 345 \N 189.186.37.251 fb7ea559-b720-4bef-9916-15b26de377de 2019-05-21 22:48:49.853101 8080 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 23:13:15.133133000 Z\n- &1 2019-05-21 22:48:49.817446000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-22 00:28:17.498570716 Z\nsign_in_count:\n- 172\n- 173\n 346 \N 189.186.37.251 66b50ce6-fa1a-47e6-9d09-dcc7d39eefe1 2019-05-22 00:28:17.542253 8081 12 User \N \N 12 User \N update ---\nunique_session_id:\n- sv46pr2T1WS7kW7662NU\n- jqJzs1tsATLqpV_h1J5f\n 347 \N 189.186.37.251 66b50ce6-fa1a-47e6-9d09-dcc7d39eefe1 2019-05-22 00:28:17.57491 8082 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-21 16:02:30.593762000 Z\n- &1 2019-05-21 16:02:48.458334000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-22 00:30:07.528451955 Z\nsign_in_count:\n- 281\n- 282\n 564 \N 189.186.37.251 49386795-9a16-410b-a7e4-eb23b00e41ba 2019-05-22 00:30:07.53802 8083 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 1YQb2Wy2rk_E9xmDY_EY\n- RF8isdqCsFAzepz_3xX4\n 565 \N 189.186.37.251 49386795-9a16-410b-a7e4-eb23b00e41ba 2019-05-22 00:30:07.56113 8084 807 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 199\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.83E3\nmove_type: '1'\nsale_id: 265\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.83E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-123 189.186.37.251 dcd5e9ba-b9f0-4e3c-b2f0-3f63277916a3 2019-05-22 00:49:26.414402 8085 265 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 ab72f2a0-f487-4361-8fda-3af7c26f00f1 2019-05-22 00:49:28.191694 8086 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-21 16:02:48.458334000 Z\n- &1 2019-05-22 00:30:07.528451000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-22 01:35:48.911875033 Z\nsign_in_count:\n- 282\n- 283\n 566 \N 189.186.37.251 1b990060-8710-49c7-93f1-0bc2a7abc19e 2019-05-22 01:35:48.943666 8087 3 User \N \N 3 User \N update ---\nunique_session_id:\n- RF8isdqCsFAzepz_3xX4\n- yKwnCy8pxwzbp2fq3MwJ\n 567 \N 189.186.37.251 1b990060-8710-49c7-93f1-0bc2a7abc19e 2019-05-22 01:35:48.967803 8088 107 Customer \N \N 3 User \N create ---\nnick_name: IVANIA QUINTERO\nphone: "(667) 778-8326"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente IVANIA QUINTERO fue registrado. 189.186.37.251 54a63e54-3bdd-4230-b502-65fe749459d6 2019-05-22 01:38:51.834467 8089 632 Sale \N \N 3 User \N create ---\ncustomer_id: 107\nuser_id: 3\nopen_cash_register_id: 199\namount: !ruby/object:BigDecimal 18:0.72328E3\ntax: !ruby/object:BigDecimal 18:0.11572E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.839E3\nstatus: 0\ndate_sale: 2019-05-21\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-277\nexpiration_date: 2019-06-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 67a27e20-05d8-435c-82b1-04fa81e33ab0 2019-05-22 01:39:06.331731 8090 418 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.37.251 67a27e20-05d8-435c-82b1-04fa81e33ab0 2019-05-22 01:39:06.374197 8091 808 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 199\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 632\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-277\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.25E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-277 189.186.37.251 a9a7b947-0bd3-4092-ab06-28cf72423c18 2019-05-22 01:39:15.114986 8092 632 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 4c343162-c3d9-4c45-a1f4-88155644d127 2019-05-22 01:39:16.636921 8093 196 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 199\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.2299E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.653E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2153E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 dc0981d4-8032-45e1-9a0a-d03db3b8146d 2019-05-22 01:55:07.474539 8094 199 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 dc0981d4-8032-45e1-9a0a-d03db3b8146d 2019-05-22 01:55:07.502256 8095 633 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 198\namount: !ruby/object:BigDecimal 18:0.108159E4\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1178E4\nstatus: 0\ndate_sale: 2019-05-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-354\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 69d49e9c-92c5-4625-8861-84d42b690919 2019-05-22 01:59:11.719077 8096 201 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.37.251 69d49e9c-92c5-4625-8861-84d42b690919 2019-05-22 01:59:11.761172 8097 605 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.37.251 69d49e9c-92c5-4625-8861-84d42b690919 2019-05-22 01:59:11.802893 8098 633 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 dfcfe1b1-a9c8-4249-8d6a-c163a120b52d 2019-05-22 01:59:19.355185 8099 809 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 198\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1178E4\nmove_type: '1'\nsale_id: 633\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-354\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.322E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-354 189.186.37.251 dfcfe1b1-a9c8-4249-8d6a-c163a120b52d 2019-05-22 01:59:19.392766 8100 197 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 198\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.717219E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.39E4\ncash_fund: !ruby/object:BigDecimal 18:0.629E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4529E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 48e94ae9-11ff-46ce-abb1-9a1971453930 2019-05-22 02:09:08.079372 8101 198 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 48e94ae9-11ff-46ce-abb1-9a1971453930 2019-05-22 02:09:08.105163 8102 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-22 00:30:07.528451000 Z\n- &1 2019-05-22 01:35:48.911875000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-22 16:11:57.123851834 Z\nsign_in_count:\n- 283\n- 284\n 568 \N 189.186.37.251 2177b91d-f84e-4bde-91c2-80d795dc91a9 2019-05-22 16:11:57.172226 8103 3 User \N \N 3 User \N update ---\nunique_session_id:\n- yKwnCy8pxwzbp2fq3MwJ\n- S2xvxM6YGXYeBwE3xtxY\n 569 \N 189.186.37.251 2177b91d-f84e-4bde-91c2-80d795dc91a9 2019-05-22 16:11:57.205837 8199 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LTXoj_nwKRhkBEsRPm6B\n- 3SWRjzRwqAVBbr-BA4zc\n 453 \N 189.186.37.251 85875ea3-eebb-4c39-8afe-f745538e1cc2 2019-05-23 01:34:43.47841 8104 200 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.653E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 653.0 189.186.37.251 2cabcebb-285d-4e87-a2d2-af38be75e092 2019-05-22 16:12:58.858165 8105 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-20 16:04:13.399094000 Z\n- &1 2019-05-21 16:01:38.510573000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-22 16:49:54.417003878 Z\nsign_in_count:\n- 125\n- 126\n 255 \N 189.186.37.251 953565d0-3089-4b48-96b7-65401279c1fd 2019-05-22 16:49:54.467142 8106 2 User \N \N 2 User \N update ---\nunique_session_id:\n- GzHH_gtXEKqqpSz52N1a\n- 43FaKG4C5aRmpsimk5Zg\n 256 \N 189.186.37.251 953565d0-3089-4b48-96b7-65401279c1fd 2019-05-22 16:49:54.502051 8107 201 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.629E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 629.0 189.186.37.251 e6ca97fe-e206-4457-b6c3-1a5743de4bc7 2019-05-22 16:50:57.618892 8108 810 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 201\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 620\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-348 189.186.37.251 4a7b2fd2-032d-4b66-85bc-2221139fb7b4 2019-05-22 16:51:18.174552 8109 620 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 d302d38d-38ab-4a79-9f97-59303bc03e59 2019-05-22 16:51:19.835137 8110 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-21 05:37:15.566887000 Z\n- &1 2019-05-21 18:01:24.721966000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-22 18:03:43.627455994 Z\nsign_in_count:\n- 220\n- 221\n 442 \N 189.186.50.198 b6a68ed9-0ee4-4906-8dd4-42d4a186c25b 2019-05-22 18:03:43.639073 8111 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FrbVYaoEySfJX5xytALQ\n- 2apsg_-CFhBGQk-gM-92\n 443 \N 189.186.50.198 b6a68ed9-0ee4-4906-8dd4-42d4a186c25b 2019-05-22 18:03:43.66794 8112 634 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 201\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-05-22\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-355\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 89f48e3d-2737-412f-80a0-f6c5af3b4db5 2019-05-22 19:13:24.102306 8113 615 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.37.251 89f48e3d-2737-412f-80a0-f6c5af3b4db5 2019-05-22 19:13:24.208234 8114 634 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 6ff07665-8559-404c-b1d5-539cf2ffef63 2019-05-22 19:13:59.357195 8115 811 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 201\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 634\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-355\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-355 189.186.37.251 6ff07665-8559-404c-b1d5-539cf2ffef63 2019-05-22 19:13:59.385856 8116 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-22 01:35:48.911875000 Z\n- &1 2019-05-22 16:11:57.123851000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-22 19:15:13.422713049 Z\nsign_in_count:\n- 284\n- 285\n 570 \N 189.186.37.251 5f01574d-4839-44b3-8890-e52309510737 2019-05-22 19:15:13.431261 8117 3 User \N \N 3 User \N update ---\nunique_session_id:\n- S2xvxM6YGXYeBwE3xtxY\n- soWoHybbZTxJSeK_UzZ_\n 571 \N 189.186.37.251 5f01574d-4839-44b3-8890-e52309510737 2019-05-22 19:15:13.453398 8118 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-22 16:11:57.123851000 Z\n- &1 2019-05-22 19:15:13.422713000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-22 19:17:20.174551049 Z\nsign_in_count:\n- 285\n- 286\n 572 \N 189.186.37.251 5d76fb98-6ddf-4b73-b6d2-121fefecf56c 2019-05-22 19:17:20.183757 8119 3 User \N \N 3 User \N update ---\nunique_session_id:\n- soWoHybbZTxJSeK_UzZ_\n- nwmXAEWouH2iX_vghhgi\n 573 \N 189.186.37.251 5d76fb98-6ddf-4b73-b6d2-121fefecf56c 2019-05-22 19:17:20.204269 8120 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-21 22:48:49.817446000 Z\n- &1 2019-05-22 00:28:17.498570000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-22 19:18:04.859123003 Z\nsign_in_count:\n- 173\n- 174\n 348 \N 189.186.37.251 703a9100-952a-4bb5-babf-9ac4b21cc568 2019-05-22 19:18:04.86992 8121 12 User \N \N 12 User \N update ---\nunique_session_id:\n- jqJzs1tsATLqpV_h1J5f\n- _iJoxkDxi5DDEsPrqo2m\n 349 \N 189.186.37.251 703a9100-952a-4bb5-babf-9ac4b21cc568 2019-05-22 19:18:04.893737 8122 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-21 16:01:38.510573000 Z\n- &1 2019-05-22 16:49:54.417003000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-22 19:35:33.362766812 Z\nsign_in_count:\n- 126\n- 127\n 257 \N 189.186.37.251 347e6518-8d33-4a37-9db2-860cc132380b 2019-05-22 19:35:33.368964 8123 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 43FaKG4C5aRmpsimk5Zg\n- QKEzyWNqwJNqDN5vNVp-\n 258 \N 189.186.37.251 347e6518-8d33-4a37-9db2-860cc132380b 2019-05-22 19:35:33.382727 8124 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-22 19:15:13.422713000 Z\n- &1 2019-05-22 19:17:20.174551000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-22 19:36:20.052800307 Z\nsign_in_count:\n- 286\n- 287\n 574 \N 189.186.37.251 eaf4bb05-eb48-424a-8bad-4603ebf42957 2019-05-22 19:36:20.061885 8125 3 User \N \N 3 User \N update ---\nunique_session_id:\n- nwmXAEWouH2iX_vghhgi\n- 5dku6Thzhhb9pbZGG81U\n 575 \N 189.186.37.251 eaf4bb05-eb48-424a-8bad-4603ebf42957 2019-05-22 19:36:20.083861 8126 635 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 201\namount: !ruby/object:BigDecimal 18:0.103362E4\ntax: !ruby/object:BigDecimal 18:0.16538E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-05-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-356\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 da581a05-bb37-4053-9f1d-ca8861041143 2019-05-22 20:01:52.558444 8127 268 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 9 \N 189.186.37.251 da581a05-bb37-4053-9f1d-ca8861041143 2019-05-22 20:01:52.612029 8128 635 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 48956642-b6f9-4a2f-954d-19e02d0e8acf 2019-05-22 20:02:13.679318 8129 812 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 201\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 635\ncardnumber: 4152\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-356\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-356 189.186.37.251 48956642-b6f9-4a2f-954d-19e02d0e8acf 2019-05-22 20:02:13.715514 8130 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-21 18:01:24.721966000 Z\n- &1 2019-05-22 18:03:43.627455000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-22 21:55:11.378575986 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946109\n mask_addr: 4294967295\nsign_in_count:\n- 221\n- 222\n 444 \N 200.68.181.125 0f053ad3-f476-4229-9ae9-3c1caa97cb4f 2019-05-22 21:55:11.404515 8131 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2apsg_-CFhBGQk-gM-92\n- BN82z5RYp6-GGVrEaKe4\n 445 \N 200.68.181.125 0f053ad3-f476-4229-9ae9-3c1caa97cb4f 2019-05-22 21:55:11.453636 8132 636 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 200\namount: !ruby/object:BigDecimal 18:0.86121E3\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-05-22\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-278\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 cd769092-a612-45a0-9ec5-996eeb3b7c2e 2019-05-22 21:56:24.543559 8133 431 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.37.251 cd769092-a612-45a0-9ec5-996eeb3b7c2e 2019-05-22 21:56:24.602941 8134 636 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 099ea0f3-0ac4-4731-b7ee-8e8e99f002cf 2019-05-22 21:56:51.556744 8135 813 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 200\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 636\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-278\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-278 189.186.37.251 099ea0f3-0ac4-4731-b7ee-8e8e99f002cf 2019-05-22 21:56:51.595689 8136 636 Sale \N \N 3 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-278 cancelada. 189.186.37.251 2239e248-35d9-401f-9235-6355470859eb 2019-05-22 21:58:22.023666 8137 813 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 200\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 636\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-278\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.37.251 2239e248-35d9-401f-9235-6355470859eb 2019-05-22 21:58:22.064215 8138 431 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 189.186.37.251 2239e248-35d9-401f-9235-6355470859eb 2019-05-22 21:58:22.108531 8139 637 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 200\namount: !ruby/object:BigDecimal 18:0.86121E3\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-05-22\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-279\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 a862aba4-57ac-449b-9342-659294d28d94 2019-05-22 21:58:39.551232 8140 431 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 189.186.37.251 a862aba4-57ac-449b-9342-659294d28d94 2019-05-22 21:58:39.593985 8141 637 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 4e2d9634-4738-4ee6-9f86-3d47d4ab19b5 2019-05-22 21:58:44.90606 8142 814 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 200\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 637\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-279\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-279 189.186.37.251 4e2d9634-4738-4ee6-9f86-3d47d4ab19b5 2019-05-22 21:58:44.944998 8143 638 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 200\namount: !ruby/object:BigDecimal 18:0.1169E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1169E4\nstatus: 0\ndate_sale: 2019-05-22\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-280\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 375abfb5-f107-4def-918f-11d84ed8c6cb 2019-05-22 22:01:05.669792 8144 653 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.37.251 375abfb5-f107-4def-918f-11d84ed8c6cb 2019-05-22 22:01:05.726304 8145 638 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 625cb5e6-2ae2-4f9f-b760-9e5c941289bb 2019-05-22 22:01:15.134199 8146 815 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 200\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1169E4\nmove_type: '1'\nsale_id: 638\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-280\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-280 189.186.37.251 625cb5e6-2ae2-4f9f-b760-9e5c941289bb 2019-05-22 22:01:15.171521 8147 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-22 19:17:20.174551000 Z\n- &1 2019-05-22 19:36:20.052800000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-22 23:05:03.649625673 Z\nsign_in_count:\n- 287\n- 288\n 576 \N 189.186.37.251 28ec8a38-ef75-46f2-9c22-1e78a24deba0 2019-05-22 23:05:03.679782 8148 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 5dku6Thzhhb9pbZGG81U\n- h2B_UCW6M_AfWx33Mpz8\n 577 \N 189.186.37.251 28ec8a38-ef75-46f2-9c22-1e78a24deba0 2019-05-22 23:05:03.710698 8149 108 Customer \N \N 3 User \N create ---\nnick_name: CRISTINA RIVERA\nphone: "(667) 481-4055"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CRISTINA RIVERA fue registrado. 189.186.37.251 5ba3ad46-9e04-4e93-97b2-de000c3ebc37 2019-05-22 23:18:44.321243 8150 639 Sale \N \N 3 User \N create ---\ncustomer_id: 108\nuser_id: 3\nopen_cash_register_id: 200\namount: !ruby/object:BigDecimal 18:0.1395E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1395E4\nstatus: 0\ndate_sale: 2019-05-22\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-281\nexpiration_date: 2019-06-26\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 05cc8697-61e0-47cf-b7fe-41b330b2043f 2019-05-22 23:18:57.988027 8151 599 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.37.251 05cc8697-61e0-47cf-b7fe-41b330b2043f 2019-05-22 23:18:58.044355 8200 582 Product \N \N 4 User \N update --- {}\n 3 El producto VES-582 fue modificado. 189.186.37.251 5f7b3927-33e9-413f-8970-e59d057f97c1 2019-05-23 01:35:08.146539 8152 816 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 200\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.42E3\nmove_type: '1'\nsale_id: 639\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-281\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.8E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-281 189.186.37.251 b1a2ca04-9669-423a-90d1-1dad5271c67d 2019-05-22 23:19:05.429054 8153 639 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 930a813d-4d29-4732-bb92-2583dd22d058 2019-05-22 23:19:06.672639 8154 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 22:38:30.607772000 Z\n- &1 2019-05-18 22:39:02.202989000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-22 23:43:46.165466190 Z\nsign_in_count:\n- 20\n- 21\n 42 \N 189.252.57.219 32459c2a-5674-427e-b8d9-efa6a5873aaf 2019-05-22 23:43:46.201357 8155 5 User \N \N 5 User \N update ---\nunique_session_id:\n- 9nJr3YGzGKYsLJpFJEqk\n- mNmvUdQGqPiEXAEabiNH\n 43 \N 189.252.57.219 32459c2a-5674-427e-b8d9-efa6a5873aaf 2019-05-22 23:43:46.229874 8156 640 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 200\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-05-22\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-282\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 799e9f1d-c56a-4dea-a611-9ac55b2b86a0 2019-05-23 00:26:25.415463 8157 654 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.37.251 799e9f1d-c56a-4dea-a611-9ac55b2b86a0 2019-05-23 00:26:25.492284 8158 640 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 34256b73-cb90-49d3-823d-941bd01dacd6 2019-05-23 00:26:36.577908 8159 817 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 200\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 640\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-282\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-282 189.186.37.251 34256b73-cb90-49d3-823d-941bd01dacd6 2019-05-23 00:26:36.623837 8160 641 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 200\namount: !ruby/object:BigDecimal 18:0.45603E3\ntax: !ruby/object:BigDecimal 18:0.7296E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.52899E3\nstatus: 0\ndate_sale: 2019-05-22\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-283\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 559f2acf-451d-4215-bb48-43743a3e9b4f 2019-05-23 00:46:30.22624 8161 438 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.37.251 559f2acf-451d-4215-bb48-43743a3e9b4f 2019-05-23 00:46:30.27439 8162 641 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 704dc5cc-798c-4ab0-8452-4112da7bec0c 2019-05-23 00:46:49.901694 8163 818 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 200\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.52899E3\nmove_type: '1'\nsale_id: 641\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-283\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.17101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-283 189.186.37.251 704dc5cc-798c-4ab0-8452-4112da7bec0c 2019-05-23 00:46:49.94384 8164 640 Sale \N \N 3 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-282 cancelada. 189.186.37.251 e94729a2-2f9c-43f9-8a99-6a2d5bc55d68 2019-05-23 00:49:05.488773 8165 817 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 200\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 640\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-282\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.37.251 e94729a2-2f9c-43f9-8a99-6a2d5bc55d68 2019-05-23 00:49:05.545632 8166 654 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.37.251 e94729a2-2f9c-43f9-8a99-6a2d5bc55d68 2019-05-23 00:49:05.595998 8167 642 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 200\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-05-22\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-284\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 88bcb3be-043b-4dd2-8679-6d24eb90a675 2019-05-23 00:49:37.036154 8168 510 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.37.251 88bcb3be-043b-4dd2-8679-6d24eb90a675 2019-05-23 00:49:37.084329 8169 642 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 27583c13-5d77-4184-a291-ae65e78b509b 2019-05-23 00:49:47.462247 8170 819 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 200\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 642\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-284\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-284 189.186.37.251 27583c13-5d77-4184-a291-ae65e78b509b 2019-05-23 00:49:47.539436 8171 109 Customer \N \N 3 User \N create ---\nnick_name: MARICRUZ MONTOYA\nphone: "(667) 784-3047"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARICRUZ MONTOYA fue registrado. 189.186.37.251 36ffd518-2983-4109-aa74-7505f2114477 2019-05-23 00:51:03.478434 8172 643 Sale \N \N 3 User \N create ---\ncustomer_id: 109\nuser_id: 3\nopen_cash_register_id: 200\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-05-22\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-285\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 02325e16-690b-4f7f-92b6-a7fd194a8813 2019-05-23 00:51:30.977792 8173 654 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.37.251 02325e16-690b-4f7f-92b6-a7fd194a8813 2019-05-23 00:51:31.070359 8174 643 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-285 cancelada. 189.186.37.251 92025f9a-424c-45c8-a3c3-7313b4d9e911 2019-05-23 00:51:35.288758 8176 644 Sale \N \N 3 User \N create ---\ncustomer_id: 109\nuser_id: 3\nopen_cash_register_id: 200\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-05-22\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-286\nexpiration_date: 2019-06-26\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 6d66e5a6-4e89-4c25-8840-1b96dbcaefa7 2019-05-23 00:51:51.664211 8177 654 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.37.251 6d66e5a6-4e89-4c25-8840-1b96dbcaefa7 2019-05-23 00:51:51.737994 8178 820 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 200\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.28E3\nmove_type: '1'\nsale_id: 644\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-286\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.12E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-286 189.186.37.251 ba0a1dc7-0dc4-4ebe-82de-c0c180f88c32 2019-05-23 00:52:14.790319 8179 644 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 59548038-c29f-4076-9d09-04f16fd66768 2019-05-23 00:52:16.544799 8180 821 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 138\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.15E4\nmove_type: '1'\nsale_id: 387\ncardnumber: 5257\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 0e386dd2-d6e5-4cca-a590-7f96a63337ba 2019-05-23 00:58:20.681077 8181 387 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 0e386dd2-d6e5-4cca-a590-7f96a63337ba 2019-05-23 00:58:20.719119 8182 398 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 0e386dd2-d6e5-4cca-a590-7f96a63337ba 2019-05-23 00:58:20.755154 8183 821 CashRegistersMove \N \N 3 User \N update ---\nopen_cash_register_id:\n- 138\n- 200\n 2 movimiento de efectivo por venta con folio PV1-V-204 189.186.37.251 0e386dd2-d6e5-4cca-a590-7f96a63337ba 2019-05-23 00:58:20.780126 8184 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-22 00:28:17.498570000 Z\n- &1 2019-05-22 19:18:04.859123000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 01:16:24.244511715 Z\nsign_in_count:\n- 174\n- 175\n 350 \N 189.186.37.251 efbaeb8c-c45a-448a-b1fa-6b135673cc1a 2019-05-23 01:16:24.257438 8185 12 User \N \N 12 User \N update ---\nunique_session_id:\n- _iJoxkDxi5DDEsPrqo2m\n- CP8h83F3Kc2BYVBsJNYT\n 351 \N 189.186.37.251 efbaeb8c-c45a-448a-b1fa-6b135673cc1a 2019-05-23 01:16:24.282771 8186 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-22 19:36:20.052800000 Z\n- &1 2019-05-22 23:05:03.649625000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 01:16:56.732232996 Z\nsign_in_count:\n- 288\n- 289\n 578 \N 189.186.37.251 ce627e26-66b3-41c7-a085-1c82cf082a32 2019-05-23 01:16:56.744114 8187 3 User \N \N 3 User \N update ---\nunique_session_id:\n- h2B_UCW6M_AfWx33Mpz8\n- mSsKKQiDWpzzB1Lu7CM1\n 579 \N 189.186.37.251 ce627e26-66b3-41c7-a085-1c82cf082a32 2019-05-23 01:16:56.765919 8188 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-22 18:03:43.627455000 Z\n- &1 2019-05-22 21:55:11.378575000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 01:18:14.114227431 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946109\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946109\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 222\n- 223\n 446 \N 189.186.37.251 780ac258-c362-4be0-b88d-22efef5a2a5b 2019-05-23 01:18:14.12886 8189 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BN82z5RYp6-GGVrEaKe4\n- a-VEpeatmzdwkyJg_sx-\n 447 \N 189.186.37.251 780ac258-c362-4be0-b88d-22efef5a2a5b 2019-05-23 01:18:14.165747 8190 582 Product \N \N 4 User \N create ---\nsku: VES-582\nname: VST-0028\ndescription: VESTIDO ROSA FUSCIA APEACH\nprice_base: !ruby/object:BigDecimal 18:0.382E3\nprice_sale: !ruby/object:BigDecimal 18:0.869E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: vst000258.jpeg\ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-582 fue creado. 189.186.37.251 0c02b0c0-9d6f-4b6e-ac61-801dfdee2e8b 2019-05-23 01:31:02.75094 8191 582 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000582'\n 2 \N 189.186.37.251 0c02b0c0-9d6f-4b6e-ac61-801dfdee2e8b 2019-05-23 01:31:02.84677 8192 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-05-20 23:44:27.770512000 Z\n- &1 2019-05-21 00:04:06.535314000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 01:31:49.862765266 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 68\n- 69\n 138 \N 189.186.50.198 a40a3d77-b508-4b17-b835-188c2060803b 2019-05-23 01:31:49.875679 8193 10 User \N \N 10 User \N update ---\nunique_session_id:\n- PeMmD2smb5iTzavgnZX8\n- J2o8qiP_FkKQsBPLnqpv\n 139 \N 189.186.50.198 a40a3d77-b508-4b17-b835-188c2060803b 2019-05-23 01:31:49.903062 8194 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-22 21:55:11.378575000 Z\n- &1 2019-05-23 01:18:14.114227000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 01:32:00.287048179 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946109\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 223\n- 224\n 448 \N 189.186.37.251 a7d8f9a4-696c-4474-aa72-d91e25a7e7be 2019-05-23 01:32:00.298004 8195 4 User \N \N 4 User \N update ---\nunique_session_id:\n- a-VEpeatmzdwkyJg_sx-\n- DckTiJuhfYrfHzjDrG_K\n 449 \N 189.186.37.251 a7d8f9a4-696c-4474-aa72-d91e25a7e7be 2019-05-23 01:32:00.369602 8196 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 01:18:14.114227000 Z\n- &1 2019-05-23 01:32:00.287048000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 01:34:28.253199096 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 224\n- 225\n 450 \N 189.186.50.198 70ac5885-3a3d-4662-9b72-917aee356866 2019-05-23 01:34:28.268021 8197 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DckTiJuhfYrfHzjDrG_K\n- LTXoj_nwKRhkBEsRPm6B\n 451 \N 189.186.50.198 70ac5885-3a3d-4662-9b72-917aee356866 2019-05-23 01:34:28.297132 8198 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 01:32:00.287048000 Z\n- &1 2019-05-23 01:34:28.253199000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 01:34:43.437037411 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 225\n- 226\n 452 \N 189.186.37.251 85875ea3-eebb-4c39-8afe-f745538e1cc2 2019-05-23 01:34:43.44882 8201 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 01:34:28.253199000 Z\n- &1 2019-05-23 01:34:43.437037000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 01:36:04.017556599 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 226\n- 227\n 454 \N 189.186.50.198 89514dbb-c738-4117-9f66-317775547ce7 2019-05-23 01:36:04.046112 8202 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3SWRjzRwqAVBbr-BA4zc\n- NvSmCELR5s9x3UotDfh2\n 455 \N 189.186.50.198 89514dbb-c738-4117-9f66-317775547ce7 2019-05-23 01:36:04.092741 8203 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 01:34:43.437037000 Z\n- &1 2019-05-23 01:36:04.017556000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 01:36:27.962300669 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 227\n- 228\n 456 \N 189.186.37.251 17fe8bce-0a42-4cb0-a168-9666c9b59350 2019-05-23 01:36:27.975982 8204 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NvSmCELR5s9x3UotDfh2\n- pNzxHRfK4ZEgu_5gmeKh\n 457 \N 189.186.37.251 17fe8bce-0a42-4cb0-a168-9666c9b59350 2019-05-23 01:36:28.003742 8205 582 Product \N \N 4 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.382E3\n- \n 4 El producto VES-582 fue modificado. 189.186.37.251 9d90f9c3-c365-4b41-8e85-d5f277aa2110 2019-05-23 01:37:35.366559 8206 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 01:36:04.017556000 Z\n- &1 2019-05-23 01:36:27.962300000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 01:41:05.377334109 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 228\n- 229\n 458 \N 189.186.50.198 f1859703-8016-4854-afea-ee9bc6c987bb 2019-05-23 01:41:05.407595 8207 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pNzxHRfK4ZEgu_5gmeKh\n- 7mMzzk8RFTXPyiHEepyX\n 459 \N 189.186.50.198 f1859703-8016-4854-afea-ee9bc6c987bb 2019-05-23 01:41:05.453444 8208 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 01:36:27.962300000 Z\n- &1 2019-05-23 01:41:05.377334000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 01:41:14.780776147 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 229\n- 230\n 460 \N 189.186.37.251 a5577804-fc8e-4f1b-a9c4-e6c1f0533c4c 2019-05-23 01:41:14.794542 8209 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7mMzzk8RFTXPyiHEepyX\n- H8YxGeBRpvj3T-5gf7qA\n 461 \N 189.186.37.251 a5577804-fc8e-4f1b-a9c4-e6c1f0533c4c 2019-05-23 01:41:14.825733 8210 582 Product \N \N 4 User \N update --- {}\n 5 El producto VES-582 fue modificado. 189.186.37.251 d218a3a1-d6a8-4a14-a06e-fbfce374bc1a 2019-05-23 01:42:14.378257 8211 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 01:41:05.377334000 Z\n- &1 2019-05-23 01:41:14.780776000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 01:44:30.149236010 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 230\n- 231\n 462 \N 189.186.50.198 6b4460bd-86ea-4431-ba74-dd30ebcb18e8 2019-05-23 01:44:30.163235 8212 4 User \N \N 4 User \N update ---\nunique_session_id:\n- H8YxGeBRpvj3T-5gf7qA\n- f4_n2he-w2rQkPbomdjh\n 463 \N 189.186.50.198 6b4460bd-86ea-4431-ba74-dd30ebcb18e8 2019-05-23 01:44:30.189989 8213 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 01:41:14.780776000 Z\n- &1 2019-05-23 01:44:30.149236000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 01:45:05.593069720 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 231\n- 232\n 464 \N 189.186.37.251 975c1063-96e6-4f80-80ce-ad68cee62818 2019-05-23 01:45:05.614392 8214 4 User \N \N 4 User \N update ---\nunique_session_id:\n- f4_n2he-w2rQkPbomdjh\n- Dmtp7c7ZdkSgTpRPdyDi\n 465 \N 189.186.37.251 975c1063-96e6-4f80-80ce-ad68cee62818 2019-05-23 01:45:05.649755 8215 582 Product \N \N 4 User \N update ---\nprice_base_dollars:\n- \n- !ruby/object:BigDecimal 27:0.382E3\n 6 El producto VES-582 fue modificado. 189.186.37.251 76e33741-1f0a-430f-9e27-7a61804a136d 2019-05-23 01:47:53.186776 8216 582 Product \N \N 4 User \N update ---\nprice_base_dollars:\n- !ruby/object:BigDecimal 18:0.382E3\n- !ruby/object:BigDecimal 27:0.2E2\n 7 El producto VES-582 fue modificado. 189.186.37.251 ddcbb766-5888-4c63-b56d-21c83eb1fd73 2019-05-23 01:48:07.90947 8217 96 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-3\namount: !ruby/object:BigDecimal 18:0.2E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2E2\nobservations: VESTIDO ROSA FUSCIA APEACH\npurchase_date: 2019-05-22\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: true\nexchange: !ruby/object:BigDecimal 18:0.192E2\n 1 Compra CEN-C-3 por $ 20.0 USD creada. 189.186.37.251 7794ddbc-d1ad-4696-a89b-87da246b62d2 2019-05-23 01:48:30.668359 8218 582 Product \N \N 4 User \N update --- {}\n 8 El producto VES-582 fue modificado. 189.186.37.251 dab95097-3691-4e99-8c4e-6013aac09835 2019-05-23 01:50:03.877815 8219 96 Purchase \N \N 4 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Compra CEN-C-3 cancelada. 189.186.37.251 ae5e5919-d381-41dd-8b27-fb9e29c4d2a2 2019-05-23 01:50:58.75107 8220 582 Product \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 9 El producto VST-0028 fue eliminado. 189.186.37.251 4241ecc1-ea15-466a-8997-02209d5c1abb 2019-05-23 01:52:29.417736 8221 583 Product \N \N 4 User \N create ---\nsku: VES-583\nname: VST-0028\ndescription: VESTIDO ROSA FUCSIA A PEACH\nprice_base: !ruby/object:BigDecimal 18:0.384E3\nprice_sale: !ruby/object:BigDecimal 18:0.869E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: vst000258.jpeg\ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-583 fue creado. 189.186.37.251 02ad3267-7652-4888-a433-410f48534a52 2019-05-23 01:53:40.562731 8222 583 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000583'\n 2 \N 189.186.37.251 02ad3267-7652-4888-a433-410f48534a52 2019-05-23 01:53:40.61692 8223 659 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 583\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.1E1\nstock_max: !ruby/object:BigDecimal 18:0.6E1\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 02ad3267-7652-4888-a433-410f48534a52 2019-05-23 01:53:40.669696 8224 97 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-59\namount: !ruby/object:BigDecimal 18:0.384E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.384E3\nobservations: ''\npurchase_date: 2019-05-22\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-59 por $ 384.0 MXN creada. 189.186.37.251 cccca3f8-f957-4438-9fcb-3d7dd7c7c554 2019-05-23 01:53:49.895215 8225 659 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.37.251 cccca3f8-f957-4438-9fcb-3d7dd7c7c554 2019-05-23 01:53:49.935783 8226 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 22:29:24.515989000 Z\n- &1 2019-05-19 17:19:07.969199000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 01:54:15.861814404 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938119\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 57\n- 58\n 116 \N 189.186.37.251 93d86917-bea7-4832-97d9-cfc4ba33f4a9 2019-05-23 01:54:15.940754 8227 9 User \N \N 9 User \N update ---\nunique_session_id:\n- MThiD1hhEymakgzwXytD\n- dBzyQ-2Y6tNXyUSZyx6x\n 117 \N 189.186.37.251 93d86917-bea7-4832-97d9-cfc4ba33f4a9 2019-05-23 01:54:16.006066 8228 645 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 201\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-05-22\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-357\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 dfd29666-da45-4309-8cd4-2d7ec652d4ec 2019-05-23 01:54:49.542568 8229 659 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.37.251 dfd29666-da45-4309-8cd4-2d7ec652d4ec 2019-05-23 01:54:49.591876 8230 645 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 06fa87ee-3492-49e2-b3a6-de70c05fd7d2 2019-05-23 01:55:06.319781 8231 822 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 201\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.869E3\nmove_type: '1'\nsale_id: 645\ncardnumber: 8362\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-357\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-357 189.186.37.251 06fa87ee-3492-49e2-b3a6-de70c05fd7d2 2019-05-23 01:55:06.371234 8232 198 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 200\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.619599E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.45E4\ncash_fund: !ruby/object:BigDecimal 18:0.849E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5349E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 06118d95-9281-46ac-8ce1-7ce15bfab1b8 2019-05-23 01:56:53.6613 8233 200 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 06118d95-9281-46ac-8ce1-7ce15bfab1b8 2019-05-23 01:56:53.690476 8234 76 Expense \N \N 9 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 201\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: PAQUETERIA\nexpense_date: 2019-05-22\nexpense_code: PV1-E-69\n 1 Egreso por 50.0 registrado 189.186.37.251 e51d5f08-7b58-4ea5-934d-aaaf867ec5e6 2019-05-23 01:57:22.465254 8235 3 Purchase \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 e51d5f08-7b58-4ea5-934d-aaaf867ec5e6 2019-05-23 01:57:22.494592 8236 823 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 201\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: 3\nexpense_id: 76\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 e51d5f08-7b58-4ea5-934d-aaaf867ec5e6 2019-05-23 01:57:22.539013 8237 199 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 201\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.3766E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.16E4\ncash_fund: !ruby/object:BigDecimal 18:0.646E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2246E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 1ba3502a-db86-451f-ac30-30756b8a3808 2019-05-23 02:00:58.626536 8238 201 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 1ba3502a-db86-451f-ac30-30756b8a3808 2019-05-23 02:00:58.653383 8239 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-22 16:49:54.417003000 Z\n- &1 2019-05-22 19:35:33.362766000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 15:38:14.914231148 Z\nsign_in_count:\n- 127\n- 128\n 259 \N 189.186.37.251 6cb9db0b-396a-48ac-83dd-ad447c285fe8 2019-05-23 15:38:14.960241 8240 2 User \N \N 2 User \N update ---\nunique_session_id:\n- QKEzyWNqwJNqDN5vNVp-\n- dSKYBzyBZSmEhePW5W3j\n 260 \N 189.186.37.251 6cb9db0b-396a-48ac-83dd-ad447c285fe8 2019-05-23 15:38:14.986874 8241 202 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.646E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 646.0 189.186.37.251 a01fcf72-c0e7-42d4-a2b2-12191e6a7874 2019-05-23 15:40:28.280001 8242 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-05-21 00:04:06.535314000 Z\n- &1 2019-05-23 01:31:49.862765000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 16:23:44.673775102 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 69\n- 70\n 140 \N 189.186.37.251 40426b13-f9b7-465d-afd5-7f4b4b2f83f9 2019-05-23 16:23:44.694524 8243 10 User \N \N 10 User \N update ---\nunique_session_id:\n- J2o8qiP_FkKQsBPLnqpv\n- 4cVEftPPYiozKsG_U2s4\n 141 \N 189.186.37.251 40426b13-f9b7-465d-afd5-7f4b4b2f83f9 2019-05-23 16:23:44.7154 8244 203 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.849E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 849.0 189.186.37.251 fdb9b5bc-fdf8-40b3-bf78-7982b5f97d07 2019-05-23 16:23:52.935018 8292 663 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.37.251 531a1310-32ce-4b9b-93b8-0eab99213f92 2019-05-23 20:12:16.664014 8295 620 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.37.251 ab534226-74e1-4a28-9dbb-e1b2e9a512be 2019-05-23 20:15:52.018412 8245 646 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 203\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-05-23\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-287\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 fdfc70a8-057e-4c52-a5d8-f5f2ff79a807 2019-05-23 16:26:23.09212 8246 655 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.37.251 fdfc70a8-057e-4c52-a5d8-f5f2ff79a807 2019-05-23 16:26:23.18106 8247 646 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 05445cd1-22e5-4ca9-91f1-760aac84afab 2019-05-23 16:27:43.963838 8248 824 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 203\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 646\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-287\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-287 189.186.37.251 05445cd1-22e5-4ca9-91f1-760aac84afab 2019-05-23 16:27:43.988778 8249 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 01:44:30.149236000 Z\n- &1 2019-05-23 01:45:05.593069000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 17:08:16.803169995 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 232\n- 233\n 466 \N 189.186.50.198 618759c9-6cc4-423b-9344-781e4d2dd578 2019-05-23 17:08:16.81222 8250 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Dmtp7c7ZdkSgTpRPdyDi\n- 4fnfyWDzDbrhrZqzdxAu\n 467 \N 189.186.50.198 618759c9-6cc4-423b-9344-781e4d2dd578 2019-05-23 17:08:16.830784 8251 584 Product \N \N 2 User \N create ---\nsku: VES-584\nname: VST-0029\ndescription: VESTIDO LAVANDA/VERDE APEACH ST.CD-21175\nprice_base: !ruby/object:BigDecimal 18:0.28635E3\nprice_sale: !ruby/object:BigDecimal 18:0.749E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-584 fue creado. 189.186.37.251 8aa247ea-bc2b-4752-ad5a-bb62cb0edda2 2019-05-23 17:40:31.801035 8252 584 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000584'\n 2 \N 189.186.37.251 8aa247ea-bc2b-4752-ad5a-bb62cb0edda2 2019-05-23 17:40:31.836732 8253 660 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 584\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 8aa247ea-bc2b-4752-ad5a-bb62cb0edda2 2019-05-23 17:40:31.867781 8254 98 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-60\namount: !ruby/object:BigDecimal 18:0.17181E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.17181E4\nobservations: ''\npurchase_date: 2019-05-23\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-60 por $ 1718.1 MXN creada. 189.186.37.251 3eabd6a2-c7fd-4f5e-b04a-8b546979669e 2019-05-23 17:47:00.690148 8255 660 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.37.251 3eabd6a2-c7fd-4f5e-b04a-8b546979669e 2019-05-23 17:47:00.713994 8256 99 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-61\namount: !ruby/object:BigDecimal 18:0.335175E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.335175E4\nobservations: ''\npurchase_date: 2019-05-23\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-61 por $ 3351.75 MXN creada. 189.186.37.251 6c919a50-5ef8-464f-87f3-a49b25457092 2019-05-23 17:50:42.55944 8257 659 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.37.251 6c919a50-5ef8-464f-87f3-a49b25457092 2019-05-23 17:50:42.587329 8258 660 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.37.251 6c919a50-5ef8-464f-87f3-a49b25457092 2019-05-23 17:50:42.617782 8259 585 Product \N \N 2 User \N create ---\nsku: VES-585\nname: VST-0030\ndescription: VESTIDO DURAZNO LATISTE ST.LD51074A\nprice_base: !ruby/object:BigDecimal 18:0.668E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-585 fue creado. 189.186.37.251 aa8fd372-b996-44ee-a037-2ca8ebeb2298 2019-05-23 18:01:24.030155 8260 585 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000585'\n 2 \N 189.186.37.251 aa8fd372-b996-44ee-a037-2ca8ebeb2298 2019-05-23 18:01:24.05961 8261 661 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 585\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 aa8fd372-b996-44ee-a037-2ca8ebeb2298 2019-05-23 18:01:24.08963 8262 100 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-62\namount: !ruby/object:BigDecimal 18:0.4008E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4008E4\nobservations: ''\npurchase_date: 2019-05-23\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-62 por $ 4008.0 MXN creada. 189.186.37.251 633f8092-c4ea-4e9e-aa4f-867cb9525d5e 2019-05-23 18:01:41.901665 8263 661 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.37.251 633f8092-c4ea-4e9e-aa4f-867cb9525d5e 2019-05-23 18:01:41.93509 8264 661 AvailableProduct \N \N 2 User \N update ---\nprice_sale:\n- \n- !ruby/object:BigDecimal 18:0.1499E4\n 3 \N 189.186.37.251 ce435012-174b-445a-bb83-964497ffe7d8 2019-05-23 18:03:54.717943 8265 661 AvailableProduct \N \N 2 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.1499E4\n- !ruby/object:BigDecimal 18:0.1599E4\n 4 \N 189.186.37.251 25d24762-6153-418b-9ab0-d0a51630876f 2019-05-23 18:05:24.210074 8293 52 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-05-23\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.37.251 38af8626-77fc-4fd5-b28b-43046e7a6fb4 2019-05-23 20:12:17.624979 8266 586 Product \N \N 2 User \N create ---\nsku: BLU-586\nname: BLS-0042\ndescription: BLUSA BLANCA CON HOJAS APEACH ST.YT6012\nprice_base: !ruby/object:BigDecimal 18:0.21953E3\nprice_sale: !ruby/object:BigDecimal 18:0.549E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-586 fue creado. 189.186.37.251 93e6902e-a4e8-41ce-9efb-3c7b16aaff7b 2019-05-23 18:19:58.146672 8267 586 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000586'\n 2 \N 189.186.37.251 93e6902e-a4e8-41ce-9efb-3c7b16aaff7b 2019-05-23 18:19:58.175754 8268 662 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 586\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 93e6902e-a4e8-41ce-9efb-3c7b16aaff7b 2019-05-23 18:19:58.20603 8269 587 Product \N \N 2 User \N create ---\nsku: BLU-587\nname: BLS-0043\ndescription: BLUSA NEGRA CON DESTELLOS APEACH ST.CT-7422\nprice_base: !ruby/object:BigDecimal 18:0.209E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-587 fue creado. 189.186.37.251 edb36ebf-9323-4b2b-bdd1-c081e58f3c26 2019-05-23 18:23:42.730612 8270 587 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000587'\n 2 \N 189.186.37.251 edb36ebf-9323-4b2b-bdd1-c081e58f3c26 2019-05-23 18:23:42.764317 8271 663 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 587\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 edb36ebf-9323-4b2b-bdd1-c081e58f3c26 2019-05-23 18:23:42.797957 8272 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-22 23:05:03.649625000 Z\n- &1 2019-05-23 01:16:56.732232000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 18:23:56.287810936 Z\nsign_in_count:\n- 289\n- 290\n 580 \N 189.186.37.251 ea763cf2-57d7-4d9c-8aa6-f35e0f4ca8c5 2019-05-23 18:23:56.295702 8273 3 User \N \N 3 User \N update ---\nunique_session_id:\n- mSsKKQiDWpzzB1Lu7CM1\n- ZoBEpJB6_mVfriEskz--\n 581 \N 189.186.37.251 ea763cf2-57d7-4d9c-8aa6-f35e0f4ca8c5 2019-05-23 18:23:56.315425 8274 588 Product \N \N 2 User \N create ---\nsku: BLU-588\nname: BLS-0044\ndescription: BLUSA DE ENCAJE CON TUL FUCSIA APEACH ST.NT-1505\nprice_base: !ruby/object:BigDecimal 18:0.24875E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-588 fue creado. 189.186.37.251 ea94214b-9f4c-41a3-a252-1c5955db89ab 2019-05-23 18:24:49.280949 8275 588 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000588'\n 2 \N 189.186.37.251 ea94214b-9f4c-41a3-a252-1c5955db89ab 2019-05-23 18:24:49.31011 8276 664 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 588\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 ea94214b-9f4c-41a3-a252-1c5955db89ab 2019-05-23 18:24:49.337991 8277 101 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-63\namount: !ruby/object:BigDecimal 18:0.406368E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.406368E4\nobservations: ''\npurchase_date: 2019-05-23\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-63 por $ 4063.68 MXN creada. 189.186.37.251 a7ce6d87-9ece-4173-86eb-5ef637166911 2019-05-23 18:25:12.716827 8278 662 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.37.251 a7ce6d87-9ece-4173-86eb-5ef637166911 2019-05-23 18:25:12.742008 8279 663 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.37.251 a7ce6d87-9ece-4173-86eb-5ef637166911 2019-05-23 18:25:12.76646 8280 664 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.37.251 a7ce6d87-9ece-4173-86eb-5ef637166911 2019-05-23 18:25:12.791382 8281 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-05-05 17:16:29.445718000 Z\n- &1 2019-05-17 21:10:58.217252000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 19:24:36.246619154 Z\nsign_in_count:\n- 55\n- 56\n 112 \N 189.186.37.251 2529aedf-c16c-416c-b453-5b66dc150883 2019-05-23 19:24:36.25417 8282 1 User \N \N 1 User \N update ---\nunique_session_id:\n- pty8yQFy64UNUNQstzX_\n- 2G-pcnL_V9SwxEevNyUL\n 113 \N 189.186.37.251 2529aedf-c16c-416c-b453-5b66dc150883 2019-05-23 19:24:36.270087 8283 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-22 19:18:04.859123000 Z\n- &1 2019-05-23 01:16:24.244511000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 19:55:24.489619355 Z\nsign_in_count:\n- 175\n- 176\n 352 \N 189.186.37.251 ce5743a3-baf3-4db4-8285-8a274abf0d99 2019-05-23 19:55:24.49559 8284 12 User \N \N 12 User \N update ---\nunique_session_id:\n- CP8h83F3Kc2BYVBsJNYT\n- xa7rG2t13WSbzu3jv7ox\n 353 \N 189.186.37.251 ce5743a3-baf3-4db4-8285-8a274abf0d99 2019-05-23 19:55:24.509694 8285 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 01:16:56.732232000 Z\n- &1 2019-05-23 18:23:56.287810000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 19:56:27.734404685 Z\nsign_in_count:\n- 290\n- 291\n 582 \N 189.186.37.251 c9012eab-bf0e-48b4-afce-a451882fa4a6 2019-05-23 19:56:27.741447 8286 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ZoBEpJB6_mVfriEskz--\n- 4Kxgz86s8A3XFebB-z3U\n 583 \N 189.186.37.251 c9012eab-bf0e-48b4-afce-a451882fa4a6 2019-05-23 19:56:27.755389 8287 661 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.37.251 e2aaba2c-7930-4790-a5a5-f901e515cc4c 2019-05-23 20:11:23.2154 8288 661 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.37.251 f33f462e-9baf-48a2-854d-833a0cc3aab1 2019-05-23 20:11:27.849788 8289 662 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 9fc2d024-be36-4aa1-abc5-e09e93386fe8 2019-05-23 20:11:50.903112 8290 663 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 ea5d475d-f538-4542-ab94-02ee52458520 2019-05-23 20:12:09.940798 8291 662 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.37.251 bfe8db46-d178-4431-9189-55544b5a19de 2019-05-23 20:12:13.811409 8296 53 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-05-23\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.37.251 a0426ca8-6a26-46cb-a554-ee141d5b83b6 2019-05-23 20:15:52.511678 8297 52 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-05-23\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.37.251 35cc7485-627e-4f95-8aa3-e6cb77bdbef1 2019-05-23 20:24:17.966405 8298 665 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 585\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 35cc7485-627e-4f95-8aa3-e6cb77bdbef1 2019-05-23 20:24:17.998811 8299 666 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 586\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 35cc7485-627e-4f95-8aa3-e6cb77bdbef1 2019-05-23 20:24:18.026467 8300 667 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 587\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.37.251 35cc7485-627e-4f95-8aa3-e6cb77bdbef1 2019-05-23 20:24:18.050046 8301 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 01:45:05.593069000 Z\n- &1 2019-05-23 17:08:16.803169000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 20:25:13.970584921 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938096\n mask_addr: 4294967295\nsign_in_count:\n- 233\n- 234\n 468 \N 200.68.150.48 f5d49b04-d296-4a9a-a07f-2975c4c959ce 2019-05-23 20:25:13.980935 8302 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4fnfyWDzDbrhrZqzdxAu\n- 5ou1Sn8Vy4zV3UZkPMcs\n 469 \N 200.68.150.48 f5d49b04-d296-4a9a-a07f-2975c4c959ce 2019-05-23 20:25:14.000836 8303 584 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '584'\n is_parent: false\n sku: VES-584\n name: VST-0029\n description: VESTIDO LAVANDA/VERDE APEACH ST.CD-21175\n price_base: '286.35'\n price_sale: '749.0'\n img_product: A9FA7346-6215-4990-8536-6AFA9BC02D41.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000584'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-05-23 17:40:31.787008'\n updated_at: &12 2019-05-23 20:32:24.611347555 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '584'\n sku: VES-584\n name: VST-0029\n description: VESTIDO LAVANDA/VERDE APEACH ST.CD-21175\n price_base: '286.35'\n price_sale: '749.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-05-23 17:40:31.787008'\n updated_at: '2019-05-23 17:40:31.833934'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000584'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '584'\n type: *3\n value: 584\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-584\n type: *7\n value: VES-584\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0029\n type: *8\n value: VST-0029\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO LAVANDA/VERDE APEACH ST.CD-21175\n type: *6\n value: VESTIDO LAVANDA/VERDE APEACH ST.CD-21175\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '286.35'\n type: *1\n value: !ruby/object:BigDecimal 18:0.28635E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '749.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.749E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: A9FA7346-6215-4990-8536-6AFA9BC02D41.jpeg\n type: *2\n value: A9FA7346-6215-4990-8536-6AFA9BC02D41.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000584'\n type: *2\n value: '0000584'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-05-23 17:40:31.787008'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- A9FA7346-6215-4990-8536-6AFA9BC02D41.jpeg\n 3 El producto VES-584 fue modificado. 200.68.150.48 55bb2c4c-703e-4234-9ef5-dd4aebb68548 2019-05-23 20:32:24.663043 8304 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 17:08:16.803169000 Z\n- &1 2019-05-23 20:25:13.970584000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 20:38:05.539400995 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938096\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938096\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 234\n- 235\n 470 \N 189.186.50.198 77edcc1f-3620-41dc-94ed-b739c9ca2fe9 2019-05-23 20:38:05.547121 8305 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5ou1Sn8Vy4zV3UZkPMcs\n- oqTEQBQnGSiNQwqtnyRH\n 471 \N 189.186.50.198 77edcc1f-3620-41dc-94ed-b739c9ca2fe9 2019-05-23 20:38:05.564094 8306 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 01:16:24.244511000 Z\n- &1 2019-05-23 19:55:24.489619000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 21:43:19.882299308 Z\nsign_in_count:\n- 176\n- 177\n 354 \N 189.186.37.251 83dcf72b-2f6f-472a-bd48-75ab98ea79d7 2019-05-23 21:43:19.888498 8307 12 User \N \N 12 User \N update ---\nunique_session_id:\n- xa7rG2t13WSbzu3jv7ox\n- usnyGJUUzrGGbXj3i3-T\n 355 \N 189.186.37.251 83dcf72b-2f6f-472a-bd48-75ab98ea79d7 2019-05-23 21:43:19.903004 8308 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 18:23:56.287810000 Z\n- &1 2019-05-23 19:56:27.734404000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 21:43:35.143068051 Z\nsign_in_count:\n- 291\n- 292\n 584 \N 189.186.37.251 5257e912-f2f7-46c8-8ec3-fde2865d5255 2019-05-23 21:43:35.151769 8309 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 4Kxgz86s8A3XFebB-z3U\n- kZ4HHeNn-rTz5mjQywSW\n 585 \N 189.186.37.251 5257e912-f2f7-46c8-8ec3-fde2865d5255 2019-05-23 21:43:35.171327 8310 647 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 203\namount: !ruby/object:BigDecimal 18:0.92917E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.998E3\nstatus: 0\ndate_sale: 2019-05-23\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-288\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 bc65a31c-d927-4382-85f4-a32a676339c8 2019-05-23 22:46:04.126689 8311 404 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 189.186.37.251 bc65a31c-d927-4382-85f4-a32a676339c8 2019-05-23 22:46:04.161286 8312 667 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.37.251 bc65a31c-d927-4382-85f4-a32a676339c8 2019-05-23 22:46:04.18981 8313 647 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-288 cancelada. 189.186.37.251 5adb7797-67cb-4d59-b76a-eb5f8b0e333e 2019-05-23 22:47:07.779925 8314 667 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.37.251 5adb7797-67cb-4d59-b76a-eb5f8b0e333e 2019-05-23 22:47:07.803284 8315 404 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 189.186.37.251 5adb7797-67cb-4d59-b76a-eb5f8b0e333e 2019-05-23 22:47:07.824957 8316 648 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 203\namount: !ruby/object:BigDecimal 18:0.102817E4\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.99E2\ntotal: !ruby/object:BigDecimal 18:0.998E3\nstatus: 0\ndate_sale: 2019-05-23\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-289\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 937f4905-f3eb-4183-9ad8-390ba78db8c0 2019-05-23 22:49:00.066627 8317 487 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.19E2\n- !ruby/object:BigDecimal 18:0.18E2\n 6 \N 189.186.37.251 937f4905-f3eb-4183-9ad8-390ba78db8c0 2019-05-23 22:49:00.099547 8318 404 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 189.186.37.251 937f4905-f3eb-4183-9ad8-390ba78db8c0 2019-05-23 22:49:00.130144 8319 667 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.37.251 937f4905-f3eb-4183-9ad8-390ba78db8c0 2019-05-23 22:49:00.16275 8320 648 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 075c105e-644f-4f57-85c5-ea676187d275 2019-05-23 22:49:04.040926 8345 652 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 202\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-05-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-360\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 05304655-2040-4c30-a10d-36cdea91d7e4 2019-05-24 00:17:08.511346 8321 825 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 203\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.998E3\nmove_type: '1'\nsale_id: 648\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-289\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-289 189.186.37.251 075c105e-644f-4f57-85c5-ea676187d275 2019-05-23 22:49:04.065999 8322 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 19:55:24.489619000 Z\n- &1 2019-05-23 21:43:19.882299000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 23:00:47.646763582 Z\nsign_in_count:\n- 177\n- 178\n 356 \N 189.186.37.251 4e05834a-4b81-4e2c-aa23-d321a4b05898 2019-05-23 23:00:47.655598 8323 12 User \N \N 12 User \N update ---\nunique_session_id:\n- usnyGJUUzrGGbXj3i3-T\n- oZmyNxKKAeMGdzQHHAtE\n 357 \N 189.186.37.251 4e05834a-4b81-4e2c-aa23-d321a4b05898 2019-05-23 23:00:47.673541 8324 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 19:56:27.734404000 Z\n- &1 2019-05-23 21:43:35.143068000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 23:01:01.903396391 Z\nsign_in_count:\n- 292\n- 293\n 586 \N 189.186.37.251 42d8ebf2-6b9a-4880-8acc-246e024db274 2019-05-23 23:01:01.91084 8325 3 User \N \N 3 User \N update ---\nunique_session_id:\n- kZ4HHeNn-rTz5mjQywSW\n- NqqHTTvRD7_pNdbcaACP\n 587 \N 189.186.37.251 42d8ebf2-6b9a-4880-8acc-246e024db274 2019-05-23 23:01:01.928697 8326 649 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 202\namount: !ruby/object:BigDecimal 18:0.59052E3\ntax: !ruby/object:BigDecimal 18:0.9448E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.685E3\nstatus: 0\ndate_sale: 2019-05-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-358\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 0e20bd1d-efb4-401a-8ac8-b620fe5d6e9f 2019-05-23 23:14:48.528809 8327 140 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.37.251 0e20bd1d-efb4-401a-8ac8-b620fe5d6e9f 2019-05-23 23:14:48.572093 8328 649 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 2e4b7977-2d97-4f55-ab5c-b3506f90d017 2019-05-23 23:15:09.229826 8329 826 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 202\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.685E3\nmove_type: '1'\nsale_id: 649\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-358\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.685E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-358 189.186.37.251 2e4b7977-2d97-4f55-ab5c-b3506f90d017 2019-05-23 23:15:09.255889 8330 650 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 203\namount: !ruby/object:BigDecimal 18:0.598E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.598E3\nstatus: 0\ndate_sale: 2019-05-23\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-290\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 06a547ce-0334-4057-8e07-30bea0e189be 2019-05-23 23:32:37.992282 8331 667 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.37.251 06a547ce-0334-4057-8e07-30bea0e189be 2019-05-23 23:32:38.021362 8332 487 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.18E2\n- !ruby/object:BigDecimal 18:0.17E2\n 7 \N 189.186.37.251 06a547ce-0334-4057-8e07-30bea0e189be 2019-05-23 23:32:38.047638 8333 650 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 136a5729-265f-47ce-ab92-346ec58b011b 2019-05-23 23:32:44.951798 8334 827 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 203\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.598E3\nmove_type: '1'\nsale_id: 650\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-290\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-290 189.186.37.251 136a5729-265f-47ce-ab92-346ec58b011b 2019-05-23 23:32:44.97397 8335 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 21:43:19.882299000 Z\n- &1 2019-05-23 23:00:47.646763000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-23 23:41:17.761668533 Z\nsign_in_count:\n- 178\n- 179\n 358 \N 189.186.37.251 8492d761-d919-4c89-880b-25501768bd0a 2019-05-23 23:41:17.781496 8336 12 User \N \N 12 User \N update ---\nunique_session_id:\n- oZmyNxKKAeMGdzQHHAtE\n- JQi98RhRUCMV2YpfzQkC\n 359 \N 189.186.37.251 8492d761-d919-4c89-880b-25501768bd0a 2019-05-23 23:41:17.799664 8337 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 23:00:47.646763000 Z\n- &1 2019-05-23 23:41:17.761668000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 00:05:27.491583397 Z\nsign_in_count:\n- 179\n- 180\n 360 \N 189.186.37.251 0d43a78a-026b-46e7-a69d-d93ed474b3c6 2019-05-24 00:05:27.498461 8338 12 User \N \N 12 User \N update ---\nunique_session_id:\n- JQi98RhRUCMV2YpfzQkC\n- sbuPuzbWnssfezDfKDS-\n 361 \N 189.186.37.251 0d43a78a-026b-46e7-a69d-d93ed474b3c6 2019-05-24 00:05:27.514124 8339 651 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 202\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-05-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-359\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 0af1ff00-3955-4ec8-aafc-410bf8810c20 2019-05-24 00:07:20.219845 8340 541 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.37.251 0af1ff00-3955-4ec8-aafc-410bf8810c20 2019-05-24 00:07:20.306067 8341 651 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 3656503c-833d-4117-8d43-6d63e871ed47 2019-05-24 00:07:34.726882 8342 828 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 202\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.479E3\nmove_type: '1'\nsale_id: 651\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-359\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.479E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-359 189.186.37.251 3656503c-833d-4117-8d43-6d63e871ed47 2019-05-24 00:07:34.750459 8343 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 21:43:35.143068000 Z\n- &1 2019-05-23 23:01:01.903396000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 00:08:33.162690475 Z\nsign_in_count:\n- 293\n- 294\n 588 \N 189.186.37.251 7e2bc258-d100-4b1b-aff9-aa13984441d1 2019-05-24 00:08:33.172276 8344 3 User \N \N 3 User \N update ---\nunique_session_id:\n- NqqHTTvRD7_pNdbcaACP\n- eofEAcysJTdt1NRJJtb3\n 589 \N 189.186.37.251 7e2bc258-d100-4b1b-aff9-aa13984441d1 2019-05-24 00:08:33.192902 19316 1300 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-687 cancelada. 187.149.42.159 6ea49299-5dc0-480b-8362-279d2ada5967 2019-10-26 01:37:44.479729 8346 659 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.37.251 05304655-2040-4c30-a10d-36cdea91d7e4 2019-05-24 00:17:08.546745 8347 652 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 5a01054a-a040-4c8a-ae88-efccce1ebac2 2019-05-24 00:17:26.279168 8348 829 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 202\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.869E3\nmove_type: '1'\nsale_id: 652\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-360\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.869E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-360 189.186.37.251 5a01054a-a040-4c8a-ae88-efccce1ebac2 2019-05-24 00:17:26.311834 8349 653 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 202\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-05-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-361\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 025527f8-11a0-41bc-ac57-f1faa5020d44 2019-05-24 00:41:47.994886 8350 148 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.37.251 025527f8-11a0-41bc-ac57-f1faa5020d44 2019-05-24 00:41:48.030676 8351 653 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 98ae6ff6-8db7-4a05-a683-24df18b3d131 2019-05-24 00:42:16.01144 8352 830 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 202\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 653\ncardnumber: 1320\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-361\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-361 189.186.37.251 98ae6ff6-8db7-4a05-a683-24df18b3d131 2019-05-24 00:42:16.039868 8353 831 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 140\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1297E4\nmove_type: '1'\nsale_id: 398\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.103E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 9206b9e8-946a-422e-90c7-d3b80c01c222 2019-05-24 00:45:37.795848 8354 398 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 9206b9e8-946a-422e-90c7-d3b80c01c222 2019-05-24 00:45:37.821095 8355 619 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 9206b9e8-946a-422e-90c7-d3b80c01c222 2019-05-24 00:45:37.84129 8356 831 CashRegistersMove \N \N 3 User \N update ---\nchange:\n- !ruby/object:BigDecimal 18:0.103E3\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.37.251 9206b9e8-946a-422e-90c7-d3b80c01c222 2019-05-24 00:45:37.861401 8357 831 CashRegistersMove \N \N 3 User \N update ---\nopen_cash_register_id:\n- 140\n- 203\n 3 movimiento de efectivo por venta con folio PV2-V-189 189.186.37.251 9206b9e8-946a-422e-90c7-d3b80c01c222 2019-05-24 00:45:37.875002 8358 654 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 202\namount: !ruby/object:BigDecimal 18:0.1249E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1249E4\nstatus: 0\ndate_sale: 2019-05-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-362\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 be76766c-53e9-4a27-97d9-0b38a7ed99a7 2019-05-24 00:47:24.371457 8359 639 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.251 be76766c-53e9-4a27-97d9-0b38a7ed99a7 2019-05-24 00:47:24.407579 8360 654 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 85eb8561-384d-4d4c-af36-2f387770ed67 2019-05-24 00:48:33.357611 8361 832 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 202\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1249E4\nmove_type: '1'\nsale_id: 654\ncardnumber: 6029\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-362\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-362 189.186.37.251 85eb8561-384d-4d4c-af36-2f387770ed67 2019-05-24 00:48:33.384063 8362 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 23:01:01.903396000 Z\n- &1 2019-05-24 00:08:33.162690000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 00:53:05.581341253 Z\nsign_in_count:\n- 294\n- 295\n 590 \N 189.186.37.251 2dbdb444-f98a-4fe8-a455-e0a13630b099 2019-05-24 00:53:05.589315 8363 3 User \N \N 3 User \N update ---\nunique_session_id:\n- eofEAcysJTdt1NRJJtb3\n- TKaJztfjSbuM9Eex7mDk\n 591 \N 189.186.37.251 2dbdb444-f98a-4fe8-a455-e0a13630b099 2019-05-24 00:53:05.60551 8364 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-05-17 21:10:58.217252000 Z\n- &1 2019-05-23 19:24:36.246619000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 00:57:26.047710051 Z\nsign_in_count:\n- 56\n- 57\n 114 \N 189.186.37.251 e649ae6f-469d-481d-bcb9-b02c9d4e4c92 2019-05-24 00:57:26.055677 8365 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 2G-pcnL_V9SwxEevNyUL\n- qdFjVx5RxNtyreuBwz81\n 115 \N 189.186.37.251 e649ae6f-469d-481d-bcb9-b02c9d4e4c92 2019-05-24 00:57:26.074006 8366 77 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 202\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida\nexpense_date: 2019-05-23\nexpense_code: PV1-E-70\n 1 Egreso por 50.0 registrado 189.186.37.251 5fc3a9ff-48c6-4821-ab8f-066b9e1e6ac2 2019-05-24 01:03:37.685486 8367 833 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 202\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 77\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 5fc3a9ff-48c6-4821-ab8f-066b9e1e6ac2 2019-05-24 01:03:37.72053 8368 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 20:25:13.970584000 Z\n- &1 2019-05-23 20:38:05.539400000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 01:04:12.647318271 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938096\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 235\n- 236\n 472 \N 189.186.50.198 6d709019-5c37-4557-953a-8e5c4a8b4a3d 2019-05-24 01:04:12.656981 8369 4 User \N \N 4 User \N update ---\nunique_session_id:\n- oqTEQBQnGSiNQwqtnyRH\n- LvyzpZeecyZA7s4KWwHz\n 473 \N 189.186.50.198 6d709019-5c37-4557-953a-8e5c4a8b4a3d 2019-05-24 01:04:12.678213 8396 12 User \N \N 12 User \N update ---\nunique_session_id:\n- KhC-2bdhbGGbxyssGD77\n- p22opNtx8eUboVeAqG9Q\n 367 \N 189.186.37.251 99f39b1d-9b1f-4ff3-8de9-25e9ff676641 2019-05-24 01:31:22.125954 8370 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 23:41:17.761668000 Z\n- &1 2019-05-24 00:05:27.491583000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 01:06:02.459847638 Z\nsign_in_count:\n- 180\n- 181\n 362 \N 189.186.37.251 2015094c-8b1d-47e8-8a9a-e4feed74da84 2019-05-24 01:06:02.468692 8371 12 User \N \N 12 User \N update ---\nunique_session_id:\n- sbuPuzbWnssfezDfKDS-\n- iGyxBqKtd2Z4zPJi4gzy\n 363 \N 189.186.37.251 2015094c-8b1d-47e8-8a9a-e4feed74da84 2019-05-24 01:06:02.488986 8372 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 00:05:27.491583000 Z\n- &1 2019-05-24 01:06:02.459847000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 01:06:46.802718343 Z\nsign_in_count:\n- 181\n- 182\n 364 \N 189.186.37.251 1302010b-0ef3-4099-a30f-6679ed67a086 2019-05-24 01:06:46.811402 8373 12 User \N \N 12 User \N update ---\nunique_session_id:\n- iGyxBqKtd2Z4zPJi4gzy\n- KhC-2bdhbGGbxyssGD77\n 365 \N 189.186.37.251 1302010b-0ef3-4099-a30f-6679ed67a086 2019-05-24 01:06:46.831608 8374 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 20:38:05.539400000 Z\n- &1 2019-05-24 01:04:12.647318000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 01:09:09.361893012 Z\nsign_in_count:\n- 236\n- 237\n 474 \N 189.186.50.198 786d437a-58d6-4641-8412-2618136ff041 2019-05-24 01:09:09.369897 8375 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LvyzpZeecyZA7s4KWwHz\n- E5uxe3JcWDpzkkopVKWJ\n 475 \N 189.186.50.198 786d437a-58d6-4641-8412-2618136ff041 2019-05-24 01:09:09.390482 8376 655 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 202\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-05-23\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-363\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 b455e7b9-9676-496c-8bca-8cc589097556 2019-05-24 01:09:54.377807 8377 664 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.37.251 b455e7b9-9676-496c-8bca-8cc589097556 2019-05-24 01:09:54.419238 8378 655 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 304776ce-be04-4de0-a357-bedccdc399b4 2019-05-24 01:09:58.238448 8379 834 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 202\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 655\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-363\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-363 189.186.37.251 304776ce-be04-4de0-a357-bedccdc399b4 2019-05-24 01:09:58.276961 8380 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 00:08:33.162690000 Z\n- &1 2019-05-24 00:53:05.581341000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 01:13:00.338650434 Z\nsign_in_count:\n- 295\n- 296\n 592 \N 189.186.37.251 42387def-3d5f-4446-b15d-3affa7ead98d 2019-05-24 01:13:00.347422 8381 3 User \N \N 3 User \N update ---\nunique_session_id:\n- TKaJztfjSbuM9Eex7mDk\n- dmsy2sBmKxvWKYSroiJW\n 593 \N 189.186.37.251 42387def-3d5f-4446-b15d-3affa7ead98d 2019-05-24 01:13:00.368459 8382 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 00:53:05.581341000 Z\n- &1 2019-05-24 01:13:00.338650000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 01:17:47.392334403 Z\nsign_in_count:\n- 296\n- 297\n 594 \N 189.186.37.251 b5a45ff9-9ba8-498e-a406-dfea1525864e 2019-05-24 01:17:47.400042 8383 3 User \N \N 3 User \N update ---\nunique_session_id:\n- dmsy2sBmKxvWKYSroiJW\n- MHQc-SvLrbHNUUjb5Hx6\n 595 \N 189.186.37.251 b5a45ff9-9ba8-498e-a406-dfea1525864e 2019-05-24 01:17:47.417177 8384 656 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 202\namount: !ruby/object:BigDecimal 18:0.104297E4\ntax: !ruby/object:BigDecimal 18:0.5504E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.109801E4\nstatus: 0\ndate_sale: 2019-05-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-364\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 d4af77f2-f169-442f-8d83-82e7dd0f34d4 2019-05-24 01:21:06.873409 8385 645 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.251 d4af77f2-f169-442f-8d83-82e7dd0f34d4 2019-05-24 01:21:06.920001 8386 59 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.37.251 d4af77f2-f169-442f-8d83-82e7dd0f34d4 2019-05-24 01:21:06.978817 8387 656 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 f92081dc-0afb-47e9-bd3c-ec81cd04a36f 2019-05-24 01:21:23.873478 8388 835 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 202\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.109801E4\nmove_type: '1'\nsale_id: 656\ncardnumber: 3645\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-364\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-364 189.186.37.251 f92081dc-0afb-47e9-bd3c-ec81cd04a36f 2019-05-24 01:21:23.908896 8389 657 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 203\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-05-23\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-291\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 501f05e3-ee44-4b8b-8eab-7eaadb3e47c2 2019-05-24 01:21:44.674107 8390 655 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.37.251 501f05e3-ee44-4b8b-8eab-7eaadb3e47c2 2019-05-24 01:21:44.718863 8391 657 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 ded68261-7b93-4556-a28c-6f6d75917d58 2019-05-24 01:21:58.40468 8392 836 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 203\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 657\ncardnumber: 3645\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-291\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-291 189.186.37.251 ded68261-7b93-4556-a28c-6f6d75917d58 2019-05-24 01:21:58.429378 8393 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 01:13:00.338650000 Z\n- &1 2019-05-24 01:17:47.392334000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 01:30:00.442518014 Z\nsign_in_count:\n- 297\n- 298\n 596 \N 189.186.37.251 a4d31005-7d49-4724-a357-9578c76847c1 2019-05-24 01:30:00.451639 8394 3 User \N \N 3 User \N update ---\nunique_session_id:\n- MHQc-SvLrbHNUUjb5Hx6\n- 3LTkJqn7mvcSuPREC_bs\n 597 \N 189.186.37.251 a4d31005-7d49-4724-a357-9578c76847c1 2019-05-24 01:30:00.473582 8395 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 01:06:02.459847000 Z\n- &1 2019-05-24 01:06:46.802718000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 01:31:22.102553161 Z\nsign_in_count:\n- 182\n- 183\n 366 \N 189.186.37.251 99f39b1d-9b1f-4ff3-8de9-25e9ff676641 2019-05-24 01:31:22.110268 8397 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 01:17:47.392334000 Z\n- &1 2019-05-24 01:30:00.442518000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 01:32:56.327228127 Z\nsign_in_count:\n- 298\n- 299\n 598 \N 189.186.37.251 f1de109c-ef56-4840-bebb-d4f28e44b89b 2019-05-24 01:32:56.333185 8398 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 3LTkJqn7mvcSuPREC_bs\n- jAwWQbHEwsPngFLE4ZaM\n 599 \N 189.186.37.251 f1de109c-ef56-4840-bebb-d4f28e44b89b 2019-05-24 01:32:56.346239 8399 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 01:06:46.802718000 Z\n- &1 2019-05-24 01:31:22.102553000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 01:34:29.735786511 Z\nsign_in_count:\n- 183\n- 184\n 368 \N 189.186.37.251 77726ce4-27ae-45b4-97c4-9d054c607dd6 2019-05-24 01:34:29.747416 8400 12 User \N \N 12 User \N update ---\nunique_session_id:\n- p22opNtx8eUboVeAqG9Q\n- Xxa7xMxoojk24jxYzb5L\n 369 \N 189.186.37.251 77726ce4-27ae-45b4-97c4-9d054c607dd6 2019-05-24 01:34:29.770455 8401 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 01:30:00.442518000 Z\n- &1 2019-05-24 01:32:56.327228000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 01:37:01.735854596 Z\nsign_in_count:\n- 299\n- 300\n 600 \N 189.186.37.251 f833b7d4-8638-4d16-bf97-201298244f3a 2019-05-24 01:37:01.748326 8402 3 User \N \N 3 User \N update ---\nunique_session_id:\n- jAwWQbHEwsPngFLE4ZaM\n- jVjw2f79qnpotiAD-b2s\n 601 \N 189.186.37.251 f833b7d4-8638-4d16-bf97-201298244f3a 2019-05-24 01:37:01.773185 8403 200 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 202\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.544801E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.728E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3228E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 4e81e9da-6bbd-4c71-ade5-2e6bf7ce35da 2019-05-24 01:51:33.039907 8404 202 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 4e81e9da-6bbd-4c71-ade5-2e6bf7ce35da 2019-05-24 01:51:33.057992 8405 201 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 203\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.4491E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.38E4\ncash_fund: !ruby/object:BigDecimal 18:0.741E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4541E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 73d0f29b-5cc8-4f3f-808b-f324efd9bf5d 2019-05-24 01:53:14.83977 8406 203 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 73d0f29b-5cc8-4f3f-808b-f324efd9bf5d 2019-05-24 01:53:14.8544 8407 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-22 19:35:33.362766000 Z\n- &1 2019-05-23 15:38:14.914231000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 15:51:10.124727904 Z\nsign_in_count:\n- 128\n- 129\n 261 \N 189.186.37.251 bc7865c9-e1af-4937-9833-0cd0d183922c 2019-05-24 15:51:10.164094 8408 2 User \N \N 2 User \N update ---\nunique_session_id:\n- dSKYBzyBZSmEhePW5W3j\n- zVxhr8dKzzhpAEx3CzQz\n 262 \N 189.186.37.251 bc7865c9-e1af-4937-9833-0cd0d183922c 2019-05-24 15:51:10.193552 8409 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 01:32:56.327228000 Z\n- &1 2019-05-24 01:37:01.735854000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 15:57:43.418107323 Z\nsign_in_count:\n- 300\n- 301\n 602 \N 189.186.37.251 3d17baa9-2974-4b47-ba8b-7444150ccc14 2019-05-24 15:57:43.423777 8410 3 User \N \N 3 User \N update ---\nunique_session_id:\n- jVjw2f79qnpotiAD-b2s\n- QxLY13DQJGvW6zHmQ_Lk\n 603 \N 189.186.37.251 3d17baa9-2974-4b47-ba8b-7444150ccc14 2019-05-24 15:57:43.43776 8411 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 01:31:49.862765000 Z\n- &1 2019-05-23 16:23:44.673775000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 16:06:57.657246621 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 70\n- 71\n 142 \N 189.186.37.251 9fcb7cd5-6af7-462d-ae8f-8ef3475a2883 2019-05-24 16:06:57.664183 8412 10 User \N \N 10 User \N update ---\nunique_session_id:\n- 4cVEftPPYiozKsG_U2s4\n- ugmaGieFCBpwBVzXC3MR\n 143 \N 189.186.37.251 9fcb7cd5-6af7-462d-ae8f-8ef3475a2883 2019-05-24 16:06:57.680183 8413 204 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.741E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 741.0 189.186.37.251 2c40f228-8d5d-47ec-983a-61aec8e99764 2019-05-24 16:07:06.12953 8414 205 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.728E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 728.0 189.186.37.251 10d56242-2578-4cb4-bbc8-a409b1a8b918 2019-05-24 16:07:28.336527 8415 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 01:04:12.647318000 Z\n- &1 2019-05-24 01:09:09.361893000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 17:45:32.261101747 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\nsign_in_count:\n- 237\n- 238\n 476 \N 189.186.37.251 a7772038-b22c-405d-a2c6-46f39447f231 2019-05-24 17:45:32.267827 8416 4 User \N \N 4 User \N update ---\nunique_session_id:\n- E5uxe3JcWDpzkkopVKWJ\n- "--tkrsc11hxtPAsoboxU"\n 477 \N 189.186.37.251 a7772038-b22c-405d-a2c6-46f39447f231 2019-05-24 17:45:32.2866 8417 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 01:09:09.361893000 Z\n- &1 2019-05-24 17:45:32.261101000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 17:56:58.599205745 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 238\n- 239\n 478 \N 189.186.50.198 98fbfd9c-8261-4a18-a845-e49d8b0456dd 2019-05-24 17:56:58.6125 8418 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "--tkrsc11hxtPAsoboxU"\n- sJ54QQiiB7xGGVL2chdZ\n 479 \N 189.186.50.198 98fbfd9c-8261-4a18-a845-e49d8b0456dd 2019-05-24 17:56:58.638474 8419 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 01:37:01.735854000 Z\n- &1 2019-05-24 15:57:43.418107000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 18:06:06.350393261 Z\nsign_in_count:\n- 301\n- 302\n 604 \N 189.186.37.251 e1af022d-1e58-4012-aa50-67bef5b48d1a 2019-05-24 18:06:06.357616 8420 3 User \N \N 3 User \N update ---\nunique_session_id:\n- QxLY13DQJGvW6zHmQ_Lk\n- sJFx-LJrj6Xh-LoZcZeG\n 605 \N 189.186.37.251 e1af022d-1e58-4012-aa50-67bef5b48d1a 2019-05-24 18:06:06.375099 8421 658 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 204\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-05-24\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-292\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 c2cecb97-6522-410f-a7b5-1c56657d4119 2019-05-24 18:07:43.621763 8474 663 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 549bbba7-0a50-4898-acbc-72c3e32e3b1c 2019-05-25 00:50:59.357984 8422 510 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.37.251 c2cecb97-6522-410f-a7b5-1c56657d4119 2019-05-24 18:07:43.651135 8423 658 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 99835bdb-19ec-4d81-872a-5c6b0d5bd101 2019-05-24 18:08:11.293724 8424 837 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 204\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 658\ncardnumber: 5102\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-292\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-292 189.186.37.251 99835bdb-19ec-4d81-872a-5c6b0d5bd101 2019-05-24 18:08:11.324537 8425 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 01:31:22.102553000 Z\n- &1 2019-05-24 01:34:29.735786000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 18:18:04.391828527 Z\nsign_in_count:\n- 184\n- 185\n 370 \N 189.186.37.251 fcaba7b2-d4e5-47ca-be42-d2e88f3cf02e 2019-05-24 18:18:04.410138 8426 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Xxa7xMxoojk24jxYzb5L\n- 9xkbFqaE8v5ytfJZPmHh\n 371 \N 189.186.37.251 fcaba7b2-d4e5-47ca-be42-d2e88f3cf02e 2019-05-24 18:18:04.430429 8427 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 15:57:43.418107000 Z\n- &1 2019-05-24 18:06:06.350393000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 20:00:27.345286565 Z\nsign_in_count:\n- 302\n- 303\n 606 \N 189.186.37.251 beb76b81-3c2c-4649-89d6-4d8986950d86 2019-05-24 20:00:27.350822 8428 3 User \N \N 3 User \N update ---\nunique_session_id:\n- sJFx-LJrj6Xh-LoZcZeG\n- 5Q2fug1tviy1A4vQszFz\n 607 \N 189.186.37.251 beb76b81-3c2c-4649-89d6-4d8986950d86 2019-05-24 20:00:27.363868 8429 110 Customer \N \N 3 User \N create ---\nnick_name: DANIELA VELARDE\nphone: "(667) 163-5869"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DANIELA VELARDE fue registrado. 189.186.37.251 cbc97b01-9ba8-4d3c-aaa2-58b4e941c7fa 2019-05-24 20:01:43.89746 8430 659 Sale \N \N 3 User \N create ---\ncustomer_id: 110\nuser_id: 3\nopen_cash_register_id: 204\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-05-24\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-293\nexpiration_date: 2019-06-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 cc3a3f31-4687-4789-99ac-419e1b6ae78a 2019-05-24 20:01:52.484212 8431 665 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.37.251 cc3a3f31-4687-4789-99ac-419e1b6ae78a 2019-05-24 20:01:52.516249 8432 838 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 204\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 659\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-293\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-293 189.186.37.251 ab2ceabd-37ea-4f4e-a360-1c17f173fc62 2019-05-24 20:02:01.528492 8433 659 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 6cd70ecc-fec6-410d-ae1d-82cbe4a2ee78 2019-05-24 20:02:07.652429 8434 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 01:34:29.735786000 Z\n- &1 2019-05-24 18:18:04.391828000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 20:05:51.964428591 Z\nsign_in_count:\n- 185\n- 186\n 372 \N 189.186.37.251 e48f2c41-88ee-4899-85ea-7e338713e78e 2019-05-24 20:05:51.970927 8435 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 9xkbFqaE8v5ytfJZPmHh\n- iS9jx7gvLEydwt8FxTiV\n 373 \N 189.186.37.251 e48f2c41-88ee-4899-85ea-7e338713e78e 2019-05-24 20:05:51.985282 8436 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 18:06:06.350393000 Z\n- &1 2019-05-24 20:00:27.345286000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 20:06:09.249106444 Z\nsign_in_count:\n- 303\n- 304\n 608 \N 189.186.37.251 06082051-42d1-4071-a9d8-5ae15f365fe2 2019-05-24 20:06:09.25743 8437 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 5Q2fug1tviy1A4vQszFz\n- z2XiyNPZpMV3hwxVWQuo\n 609 \N 189.186.37.251 06082051-42d1-4071-a9d8-5ae15f365fe2 2019-05-24 20:06:09.275721 8438 660 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 205\namount: !ruby/object:BigDecimal 18:0.66293E3\ntax: !ruby/object:BigDecimal 18:0.10607E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.769E3\nstatus: 0\ndate_sale: 2019-05-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-365\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 63a8675a-4895-4a92-8b50-c8d612a9ef4c 2019-05-24 20:15:03.440181 8439 209 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.37.251 63a8675a-4895-4a92-8b50-c8d612a9ef4c 2019-05-24 20:15:03.465863 8440 660 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 54f9555f-7c08-4c06-9f77-ac265def6920 2019-05-24 20:16:07.435959 8441 839 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 205\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.769E3\nmove_type: '1'\nsale_id: 660\ncardnumber: 7528\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-365\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-365 189.186.37.251 54f9555f-7c08-4c06-9f77-ac265def6920 2019-05-24 20:16:07.462723 8442 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 18:18:04.391828000 Z\n- &1 2019-05-24 20:05:51.964428000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 20:46:04.718470430 Z\nsign_in_count:\n- 186\n- 187\n 374 \N 189.186.37.251 210e7e9e-3eea-485e-8d5c-26a5e96db809 2019-05-24 20:46:04.728844 8443 12 User \N \N 12 User \N update ---\nunique_session_id:\n- iS9jx7gvLEydwt8FxTiV\n- VfH9-2ycLr6183bka_HF\n 375 \N 189.186.37.251 210e7e9e-3eea-485e-8d5c-26a5e96db809 2019-05-24 20:46:04.748404 8444 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 20:00:27.345286000 Z\n- &1 2019-05-24 20:06:09.249106000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 20:46:26.337641984 Z\nsign_in_count:\n- 304\n- 305\n 610 \N 189.186.37.251 7da405a7-ce96-45f5-b14b-349d4a721fa1 2019-05-24 20:46:26.345936 8445 3 User \N \N 3 User \N update ---\nunique_session_id:\n- z2XiyNPZpMV3hwxVWQuo\n- tQeJsyw92V_ef4e5mxuD\n 611 \N 189.186.37.251 7da405a7-ce96-45f5-b14b-349d4a721fa1 2019-05-24 20:46:26.365158 8446 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 20:05:51.964428000 Z\n- &1 2019-05-24 20:46:04.718470000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 20:54:51.801826882 Z\nsign_in_count:\n- 187\n- 188\n 376 \N 189.186.37.251 205dff18-6def-4aed-911e-655cdc355f7e 2019-05-24 20:54:51.807386 8447 12 User \N \N 12 User \N update ---\nunique_session_id:\n- VfH9-2ycLr6183bka_HF\n- aKvfERzjqm6Fjn4yaB7F\n 377 \N 189.186.37.251 205dff18-6def-4aed-911e-655cdc355f7e 2019-05-24 20:54:51.825455 19362 1309 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.93.117 5230e208-d6fb-4966-89eb-a110d384399d 2019-10-26 22:22:01.752832 8448 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 17:45:32.261101000 Z\n- &1 2019-05-24 17:56:58.599205000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 20:56:07.957966068 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 239\n- 240\n 480 \N 189.186.50.198 0ffd87c6-193f-453f-aa10-5e6514e27297 2019-05-24 20:56:07.964895 8449 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sJ54QQiiB7xGGVL2chdZ\n- nns2y1xb_iqPp_dh57e6\n 481 \N 189.186.50.198 0ffd87c6-193f-453f-aa10-5e6514e27297 2019-05-24 20:56:07.981379 8450 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 20:46:04.718470000 Z\n- &1 2019-05-24 20:54:51.801826000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 21:07:32.719352642 Z\nsign_in_count:\n- 188\n- 189\n 378 \N 189.186.37.251 73edb5e7-49f0-4853-9bce-5a38edeb31b0 2019-05-24 21:07:32.725424 8451 12 User \N \N 12 User \N update ---\nunique_session_id:\n- aKvfERzjqm6Fjn4yaB7F\n- 9cxyDAx5gpMjxkiDctCe\n 379 \N 189.186.37.251 73edb5e7-49f0-4853-9bce-5a38edeb31b0 2019-05-24 21:07:32.738426 8452 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 20:06:09.249106000 Z\n- &1 2019-05-24 20:46:26.337641000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 21:07:53.360528410 Z\nsign_in_count:\n- 305\n- 306\n 612 \N 189.186.37.251 d27c5faa-e048-4a1b-b8c0-685f8f8f1d1a 2019-05-24 21:07:53.367301 8453 3 User \N \N 3 User \N update ---\nunique_session_id:\n- tQeJsyw92V_ef4e5mxuD\n- YxBHBPLMwx3VHeMx273x\n 613 \N 189.186.37.251 d27c5faa-e048-4a1b-b8c0-685f8f8f1d1a 2019-05-24 21:07:53.38236 8454 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 20:54:51.801826000 Z\n- &1 2019-05-24 21:07:32.719352000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 22:00:57.034067626 Z\nsign_in_count:\n- 189\n- 190\n 380 \N 189.186.37.251 49d0193a-0760-4c88-90a2-288217ed360c 2019-05-24 22:00:57.045531 8455 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 9cxyDAx5gpMjxkiDctCe\n- wiwSkNZmRcZHtLac4UFz\n 381 \N 189.186.37.251 49d0193a-0760-4c88-90a2-288217ed360c 2019-05-24 22:00:57.073236 8456 661 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 205\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-05-24\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-366\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 55733f23-5e1c-49a2-9dd5-a579b3d8a344 2019-05-24 22:51:18.467829 8457 660 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.37.251 55733f23-5e1c-49a2-9dd5-a579b3d8a344 2019-05-24 22:51:18.506623 8458 661 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 e13d88f9-3f70-4623-b6f6-d9d86f28c0fe 2019-05-24 22:52:13.827862 8459 840 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 205\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 661\ncardnumber: 9253\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-366\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-366 189.186.37.251 e13d88f9-3f70-4623-b6f6-d9d86f28c0fe 2019-05-24 22:52:13.85189 8460 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 21:07:32.719352000 Z\n- &1 2019-05-24 22:00:57.034067000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 23:09:04.711312211 Z\nsign_in_count:\n- 190\n- 191\n 382 \N 189.186.37.251 8e70b087-5a35-4216-8e42-4151ea0ec057 2019-05-24 23:09:04.751583 8461 12 User \N \N 12 User \N update ---\nunique_session_id:\n- wiwSkNZmRcZHtLac4UFz\n- xh1eJ_AezkxZ-d6xU7sP\n 383 \N 189.186.37.251 8e70b087-5a35-4216-8e42-4151ea0ec057 2019-05-24 23:09:04.781946 8462 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 20:46:26.337641000 Z\n- &1 2019-05-24 21:07:53.360528000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-24 23:12:19.907364044 Z\nsign_in_count:\n- 306\n- 307\n 614 \N 189.186.37.251 3c017ac5-2f21-4ad9-9aac-25e1602e8cf8 2019-05-24 23:12:19.913138 8463 3 User \N \N 3 User \N update ---\nunique_session_id:\n- YxBHBPLMwx3VHeMx273x\n- aEqNi--GQk-kJUeWgPgw\n 615 \N 189.186.37.251 3c017ac5-2f21-4ad9-9aac-25e1602e8cf8 2019-05-24 23:12:19.928364 8464 662 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 205\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-05-24\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-367\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 ea698ed2-54a7-457d-9c06-fdf39ced617e 2019-05-24 23:26:54.887996 8465 636 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 3 \N 189.186.37.251 ea698ed2-54a7-457d-9c06-fdf39ced617e 2019-05-24 23:26:54.923846 8466 662 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 59ab2456-e8e3-4167-82f6-98b726de349f 2019-05-24 23:27:18.207733 8467 841 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 205\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.489E3\nmove_type: '1'\nsale_id: 662\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-367\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.489E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-367 189.186.37.251 59ab2456-e8e3-4167-82f6-98b726de349f 2019-05-24 23:27:18.231127 8468 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 22:00:57.034067000 Z\n- &1 2019-05-24 23:09:04.711312000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 00:19:24.259247609 Z\nsign_in_count:\n- 191\n- 192\n 384 \N 189.186.37.251 854e861f-d9d3-4af9-b1e0-c095e7e334fc 2019-05-25 00:19:24.287046 8469 12 User \N \N 12 User \N update ---\nunique_session_id:\n- xh1eJ_AezkxZ-d6xU7sP\n- _yjYdqmyYY1cgjcbdNc2\n 385 \N 189.186.37.251 854e861f-d9d3-4af9-b1e0-c095e7e334fc 2019-05-25 00:19:24.313914 8470 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 21:07:53.360528000 Z\n- &1 2019-05-24 23:12:19.907364000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 00:50:12.163748584 Z\nsign_in_count:\n- 307\n- 308\n 616 \N 189.186.37.251 3bc0dc22-9eeb-4eca-9ccb-66f94234e0d9 2019-05-25 00:50:12.171381 8471 3 User \N \N 3 User \N update ---\nunique_session_id:\n- aEqNi--GQk-kJUeWgPgw\n- NR8kezC6ynedGzd1iVj5\n 617 \N 189.186.37.251 3bc0dc22-9eeb-4eca-9ccb-66f94234e0d9 2019-05-25 00:50:12.188349 8472 663 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 204\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-05-24\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-294\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 77d4606c-611b-4639-9516-0e2d086df6e0 2019-05-25 00:50:25.52023 8473 667 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.37.251 77d4606c-611b-4639-9516-0e2d086df6e0 2019-05-25 00:50:25.571236 8475 842 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 204\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 663\ncardnumber: 985\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-294\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-294 189.186.37.251 549bbba7-0a50-4898-acbc-72c3e32e3b1c 2019-05-25 00:50:59.396785 8476 843 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 204\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.589E3\nmove_type: '1'\nsale_id: 632\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-277 189.186.37.251 876356d2-9dfd-40f5-b083-1a1999da49d0 2019-05-25 00:56:56.786051 8477 632 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 53531823-618d-4ed1-a098-0d82db59331f 2019-05-25 00:56:57.983291 8478 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 23:12:19.907364000 Z\n- &1 2019-05-25 00:50:12.163748000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 01:05:20.311493699 Z\nsign_in_count:\n- 308\n- 309\n 618 \N 189.186.37.251 851cd54f-751e-4dbc-81af-6bcc11f0db63 2019-05-25 01:05:20.319194 8479 3 User \N \N 3 User \N update ---\nunique_session_id:\n- NR8kezC6ynedGzd1iVj5\n- 3pE69ywA6gosncz3MQZB\n 619 \N 189.186.37.251 851cd54f-751e-4dbc-81af-6bcc11f0db63 2019-05-25 01:05:20.334721 8480 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 23:09:04.711312000 Z\n- &1 2019-05-25 00:19:24.259247000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 01:16:45.622741892 Z\nsign_in_count:\n- 192\n- 193\n 386 \N 189.186.37.251 f90896a7-b881-4dcf-91ae-ba3e72d96b12 2019-05-25 01:16:45.633082 8481 12 User \N \N 12 User \N update ---\nunique_session_id:\n- _yjYdqmyYY1cgjcbdNc2\n- uq3r3MfEDB8wAsRXm7yt\n 387 \N 189.186.37.251 f90896a7-b881-4dcf-91ae-ba3e72d96b12 2019-05-25 01:16:45.65585 8482 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 00:50:12.163748000 Z\n- &1 2019-05-25 01:05:20.311493000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 01:18:18.152045055 Z\nsign_in_count:\n- 309\n- 310\n 620 \N 189.186.37.251 a4ff2553-3dd3-40e0-af93-ad199d5d126b 2019-05-25 01:18:18.161392 8483 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 3pE69ywA6gosncz3MQZB\n- PzWBG2_MJBDYJDSsvDRs\n 621 \N 189.186.37.251 a4ff2553-3dd3-40e0-af93-ad199d5d126b 2019-05-25 01:18:18.181896 8484 78 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 204\nquantity: !ruby/object:BigDecimal 18:0.5E3\nstatus: 1\nobservations: ADELANTO SUELDO ANABELLY\nexpense_date: 2019-05-24\nexpense_code: PV2-E-8\n 1 Egreso por 500.0 registrado 189.186.37.251 a8dbe7d2-4ae2-47b8-9fcc-8e12e6d2bbd8 2019-05-25 01:43:18.556386 8485 844 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 204\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 78\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.37.251 a8dbe7d2-4ae2-47b8-9fcc-8e12e6d2bbd8 2019-05-25 01:43:18.598158 8486 664 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 205\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-05-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-368\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 f0bfa752-29c5-43a5-9a15-0d5a53132402 2019-05-25 01:55:25.54309 8487 643 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.37.251 f0bfa752-29c5-43a5-9a15-0d5a53132402 2019-05-25 01:55:25.581088 8488 664 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 eaf2da5a-31f8-4d1a-89dc-b3d0c8c94961 2019-05-25 01:55:31.219722 8489 845 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 205\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 664\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-368\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-368 189.186.37.251 eaf2da5a-31f8-4d1a-89dc-b3d0c8c94961 2019-05-25 01:55:31.248322 8490 202 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 204\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.2887E4\namount_out: !ruby/object:BigDecimal 18:0.5E3\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.63E3\nphysical_cash: !ruby/object:BigDecimal 18:0.133E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.37.251 0291e399-ad66-4ea3-9617-cead5a2d3fee 2019-05-25 01:56:20.887472 8491 204 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 0291e399-ad66-4ea3-9617-cead5a2d3fee 2019-05-25 01:56:20.903354 8492 203 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 205\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2906E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.626E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2126E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.37.251 f44bf616-8da3-4af6-9114-30dc55218025 2019-05-25 02:02:39.663833 8493 205 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.37.251 f44bf616-8da3-4af6-9114-30dc55218025 2019-05-25 02:02:39.68474 8494 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 01:05:20.311493000 Z\n- &1 2019-05-25 01:18:18.152045000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 15:59:10.763531893 Z\nsign_in_count:\n- 310\n- 311\n 622 \N 189.186.37.251 de209c1f-9e04-4c83-b01f-519692019b3b 2019-05-25 15:59:10.792428 8495 3 User \N \N 3 User \N update ---\nunique_session_id:\n- PzWBG2_MJBDYJDSsvDRs\n- 8z-gSxEG7LM2sG5osAKz\n 623 \N 189.186.37.251 de209c1f-9e04-4c83-b01f-519692019b3b 2019-05-25 15:59:10.814652 8496 206 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.63E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 630.0 189.186.37.251 0a6969df-72b5-409c-bce1-a63ab7ce9cde 2019-05-25 15:59:26.45162 8497 665 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 206\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-05-25\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-295\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 7a02732b-4c57-4e46-9a50-f082fb2b0f18 2019-05-25 15:59:55.390145 8498 597 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.37.251 7a02732b-4c57-4e46-9a50-f082fb2b0f18 2019-05-25 15:59:55.420415 8499 665 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 41df2e45-aba6-469e-974c-5b5881ba9761 2019-05-25 15:59:59.084505 8500 846 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 206\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 665\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-295\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.52E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-295 189.186.37.251 41df2e45-aba6-469e-974c-5b5881ba9761 2019-05-25 15:59:59.108149 8501 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 01:18:18.152045000 Z\n- &1 2019-05-25 15:59:10.763531000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 16:02:14.141977609 Z\nsign_in_count:\n- 311\n- 312\n 624 \N 189.186.37.251 a380a014-b64a-4761-b84f-a537965f0533 2019-05-25 16:02:14.147868 8502 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 8z-gSxEG7LM2sG5osAKz\n- 1S8xpx4nch2PDtzQEdes\n 625 \N 189.186.37.251 a380a014-b64a-4761-b84f-a537965f0533 2019-05-25 16:02:14.163594 8503 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 00:19:24.259247000 Z\n- &1 2019-05-25 01:16:45.622741000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 16:03:02.036101103 Z\nsign_in_count:\n- 193\n- 194\n 388 \N 189.186.37.251 b463bf79-f0a4-4a5b-a611-d944af62c09e 2019-05-25 16:03:02.048345 8504 12 User \N \N 12 User \N update ---\nunique_session_id:\n- uq3r3MfEDB8wAsRXm7yt\n- 59fGsp5qX2Ar6npdyo_w\n 389 \N 189.186.37.251 b463bf79-f0a4-4a5b-a611-d944af62c09e 2019-05-25 16:03:02.067382 8505 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 15:59:10.763531000 Z\n- &1 2019-05-25 16:02:14.141977000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 16:03:41.431135078 Z\nsign_in_count:\n- 312\n- 313\n 626 \N 189.186.37.251 ad6b670a-8b29-4a8f-9ba7-667ec3c3cb1b 2019-05-25 16:03:41.438005 8506 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 1S8xpx4nch2PDtzQEdes\n- 8CiVZMfUGQs1NQf7YRe6\n 627 \N 189.186.37.251 ad6b670a-8b29-4a8f-9ba7-667ec3c3cb1b 2019-05-25 16:03:41.452512 8507 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 15:38:14.914231000 Z\n- &1 2019-05-24 15:51:10.124727000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 16:15:40.310324794 Z\nsign_in_count:\n- 129\n- 130\n 263 \N 189.186.37.251 bd34e88c-0ea4-4971-b745-ef708f133a00 2019-05-25 16:15:40.316436 8508 2 User \N \N 2 User \N update ---\nunique_session_id:\n- zVxhr8dKzzhpAEx3CzQz\n- LYry6xe6yoXXxmaW6px8\n 264 \N 189.186.37.251 bd34e88c-0ea4-4971-b745-ef708f133a00 2019-05-25 16:15:40.330583 8509 847 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 196\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 616\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAMANTHA\n 1 \N 189.186.37.251 08fce7da-a1b6-415d-87f5-0787771bd98d 2019-05-25 16:27:41.903235 8510 616 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.37.251 08fce7da-a1b6-415d-87f5-0787771bd98d 2019-05-25 16:27:41.92705 8511 847 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 196\n- \n 2 movimiento de efectivo por venta con folio PV1-V-346 189.186.37.251 08fce7da-a1b6-415d-87f5-0787771bd98d 2019-05-25 16:27:41.941076 8512 207 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.616E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 616.0 189.186.37.251 f1629820-ecda-4997-9d1d-d640fba6ab70 2019-05-25 16:31:48.507147 8513 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 17:56:58.599205000 Z\n- &1 2019-05-24 20:56:07.957966000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 17:12:48.293954637 Z\nsign_in_count:\n- 240\n- 241\n 482 \N 189.186.50.198 5419a1f5-352b-427c-be55-4bbd75ac8e5d 2019-05-25 17:12:48.300736 8514 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nns2y1xb_iqPp_dh57e6\n- 1umPMtP2G_kkWPtCxK_T\n 483 \N 189.186.50.198 5419a1f5-352b-427c-be55-4bbd75ac8e5d 2019-05-25 17:12:48.314298 8515 848 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 206\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.979E3\nmove_type: '1'\nsale_id: 624\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-274 189.186.37.251 97b3d5ac-71dc-4a36-8917-5007cf9eab1c 2019-05-25 17:19:49.762974 8516 624 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.37.251 3922a5e7-ec19-4d35-9554-daf2f6c8c6a4 2019-05-25 17:19:51.705506 8517 666 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 206\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-05-25\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-296\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 b8f3bb2f-66c0-4759-a5ab-bac4b5aca2e2 2019-05-25 17:31:36.113777 8518 619 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.37.251 b8f3bb2f-66c0-4759-a5ab-bac4b5aca2e2 2019-05-25 17:31:36.147687 8519 666 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 17fcd84e-b466-4dc2-be8c-884a2deff65f 2019-05-25 17:32:20.148374 8520 849 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 206\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 666\ncardnumber: 916\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-296\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-296 189.186.37.251 17fcd84e-b466-4dc2-be8c-884a2deff65f 2019-05-25 17:32:20.173294 8521 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 01:16:45.622741000 Z\n- &1 2019-05-25 16:03:02.036101000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 17:36:20.950152631 Z\nsign_in_count:\n- 194\n- 195\n 390 \N 189.186.37.251 e32f4c78-8746-432d-909f-a19bf3bb8cd9 2019-05-25 17:36:20.960874 8522 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 59fGsp5qX2Ar6npdyo_w\n- q5_m23a6EhPW9s7ZUC9M\n 391 \N 189.186.37.251 e32f4c78-8746-432d-909f-a19bf3bb8cd9 2019-05-25 17:36:20.978069 8523 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 16:02:14.141977000 Z\n- &1 2019-05-25 16:03:41.431135000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 17:36:37.207782516 Z\nsign_in_count:\n- 313\n- 314\n 628 \N 189.186.37.251 672bf2dc-5727-4cf2-aefb-5c16a81f90f4 2019-05-25 17:36:37.213532 8524 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 8CiVZMfUGQs1NQf7YRe6\n- Urw4aiVXyz4KkFryY3L-\n 629 \N 189.186.37.251 672bf2dc-5727-4cf2-aefb-5c16a81f90f4 2019-05-25 17:36:37.226193 8525 667 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 207\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-05-25\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-369\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 66c7033e-3276-4696-97a4-a7539a16373f 2019-05-25 17:41:57.805338 8526 645 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.37.251 66c7033e-3276-4696-97a4-a7539a16373f 2019-05-25 17:41:57.838824 8527 667 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 f73d58f8-473f-4cd3-a35b-62b9369b6fa8 2019-05-25 17:42:51.407046 8528 850 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 207\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 667\ncardnumber: 4329\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-369\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-369 189.186.37.251 f73d58f8-473f-4cd3-a35b-62b9369b6fa8 2019-05-25 17:42:51.441268 8529 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 16:03:41.431135000 Z\n- &1 2019-05-25 17:36:37.207782000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 18:36:49.892891577 Z\nsign_in_count:\n- 314\n- 315\n 630 \N 189.186.37.251 fc77ff3b-264b-467a-9550-f16e2479ed2d 2019-05-25 18:36:49.89915 8530 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Urw4aiVXyz4KkFryY3L-\n- VhHuSNxH745i_EGxZKjq\n 631 \N 189.186.37.251 fc77ff3b-264b-467a-9550-f16e2479ed2d 2019-05-25 18:36:49.913977 8531 668 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 207\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-05-25\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-370\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 5c6dacdd-41df-45c3-b850-567c6da2a31b 2019-05-25 18:37:51.775208 8532 636 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 4 \N 189.186.37.251 5c6dacdd-41df-45c3-b850-567c6da2a31b 2019-05-25 18:37:51.809264 8533 668 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 08d9a73f-6ebd-44c9-b3c0-a29fd44a36c5 2019-05-25 18:38:37.720601 8534 851 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 207\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.489E3\nmove_type: '1'\nsale_id: 668\ncardnumber: 5771\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-370\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-370 189.186.37.251 08d9a73f-6ebd-44c9-b3c0-a29fd44a36c5 2019-05-25 18:38:37.742632 8535 669 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 207\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-05-25\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-371\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 0a5fcda2-d5fa-4494-9476-987a1e1e7c63 2019-05-25 19:16:54.655543 8536 82 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 189.186.37.251 0a5fcda2-d5fa-4494-9476-987a1e1e7c63 2019-05-25 19:16:54.690424 8537 669 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 8798cf68-be1e-4943-acbd-96e3c0684a05 2019-05-25 19:17:13.52487 8538 852 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 207\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 669\ncardnumber: 4915\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-371\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-371 189.186.37.251 8798cf68-be1e-4943-acbd-96e3c0684a05 2019-05-25 19:17:13.543968 8539 670 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 206\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-05-25\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-297\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 b7b1fa07-5c77-4104-84f6-59a6aacf3744 2019-05-25 19:19:14.342543 8540 314 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.37.251 b7b1fa07-5c77-4104-84f6-59a6aacf3744 2019-05-25 19:19:14.373351 8541 670 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 3a4500e4-77cb-478c-b525-5f14b046b986 2019-05-25 19:19:56.884396 8542 853 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 206\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 670\ncardnumber: 9272\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-297\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-297 189.186.37.251 3a4500e4-77cb-478c-b525-5f14b046b986 2019-05-25 19:19:56.907849 8543 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 16:03:02.036101000 Z\n- &1 2019-05-25 17:36:20.950152000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 19:56:15.268326505 Z\nsign_in_count:\n- 195\n- 196\n 392 \N 189.186.37.251 47b8f123-3d23-4f62-ad96-ff9752aaa8a8 2019-05-25 19:56:15.274451 8544 12 User \N \N 12 User \N update ---\nunique_session_id:\n- q5_m23a6EhPW9s7ZUC9M\n- ZmhrXy9F9zsS_1dLR-Yy\n 393 \N 189.186.37.251 47b8f123-3d23-4f62-ad96-ff9752aaa8a8 2019-05-25 19:56:15.287344 8545 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 17:36:37.207782000 Z\n- &1 2019-05-25 18:36:49.892891000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 20:23:28.442621888 Z\nsign_in_count:\n- 315\n- 316\n 632 \N 189.186.37.251 4aa50bf2-5acb-4869-929d-1fa03bf1f4b3 2019-05-25 20:23:28.448238 8546 3 User \N \N 3 User \N update ---\nunique_session_id:\n- VhHuSNxH745i_EGxZKjq\n- L6o_2vLFvKnMxNruzsGa\n 633 \N 189.186.37.251 4aa50bf2-5acb-4869-929d-1fa03bf1f4b3 2019-05-25 20:23:28.460994 8547 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 20:56:07.957966000 Z\n- &1 2019-05-25 17:12:48.293954000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 20:29:36.501374772 Z\nsign_in_count:\n- 241\n- 242\n 484 \N 189.186.50.198 04f0f5d8-172d-4cb2-880e-f17506ec6e05 2019-05-25 20:29:36.508802 8548 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1umPMtP2G_kkWPtCxK_T\n- Pyso2M6Rsd46Ht92WGRR\n 485 \N 189.186.50.198 04f0f5d8-172d-4cb2-880e-f17506ec6e05 2019-05-25 20:29:36.523516 8549 671 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 207\namount: !ruby/object:BigDecimal 18:0.59397E3\ntax: !ruby/object:BigDecimal 18:0.9504E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.68901E3\nstatus: 0\ndate_sale: 2019-05-25\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-372\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.37.251 23a91b60-ee13-4e4e-8456-69d4f52ce018 2019-05-25 20:49:34.022696 8550 8 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 189.186.37.251 23a91b60-ee13-4e4e-8456-69d4f52ce018 2019-05-25 20:49:34.056669 8551 671 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.37.251 4e75c5e0-e5fb-4d4c-b499-38d8d7f4b8bd 2019-05-25 20:49:43.554786 8552 854 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 207\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.689E3\nmove_type: '1'\nsale_id: 671\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-372\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.689E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-372 189.186.37.251 4e75c5e0-e5fb-4d4c-b499-38d8d7f4b8bd 2019-05-25 20:49:43.577279 8553 854 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 207\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.689E3\nmove_type: '1'\nsale_id: 671\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-372\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.689E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.37.251 d72950e4-3db0-421c-9583-225860b4ff87 2019-05-25 20:49:53.75702 8554 855 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 207\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.68901E3\nmove_type: '1'\nsale_id: 671\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-372\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.68901E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-372 189.186.37.251 4a94cfee-f680-4024-9d40-f141fd2a1cfa 2019-05-25 20:50:01.852976 8555 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 18:36:49.892891000 Z\n- &1 2019-05-25 20:23:28.442621000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 21:13:39.586557074 Z\nsign_in_count:\n- 316\n- 317\n 634 \N 189.186.37.251 1dfdd990-2e12-4085-baec-8d7e00595215 2019-05-25 21:13:39.593106 8556 3 User \N \N 3 User \N update ---\nunique_session_id:\n- L6o_2vLFvKnMxNruzsGa\n- i5tyaykySiJM5TzGsNry\n 635 \N 189.186.37.251 1dfdd990-2e12-4085-baec-8d7e00595215 2019-05-25 21:13:39.606991 8557 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 15:51:10.124727000 Z\n- &1 2019-05-25 16:15:40.310324000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 21:14:16.318780001 Z\nsign_in_count:\n- 130\n- 131\n 265 \N 189.186.37.251 a18bcdfb-d7e9-4d56-b76d-c8b6a851e8f6 2019-05-25 21:14:16.324588 8558 2 User \N \N 2 User \N update ---\nunique_session_id:\n- LYry6xe6yoXXxmaW6px8\n- iuiYqLRCv3k1nDeuAz7d\n 266 \N 189.186.37.251 a18bcdfb-d7e9-4d56-b76d-c8b6a851e8f6 2019-05-25 21:14:16.336835 8559 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 17:36:20.950152000 Z\n- &1 2019-05-25 19:56:15.268326000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 21:15:34.929318239 Z\nsign_in_count:\n- 196\n- 197\n 394 \N 189.186.37.251 d8880acd-c579-42a4-a763-52a9c2e72374 2019-05-25 21:15:34.935299 8560 12 User \N \N 12 User \N update ---\nunique_session_id:\n- ZmhrXy9F9zsS_1dLR-Yy\n- x7a8qSktnPn5iR7sFXAe\n 395 \N 189.186.37.251 d8880acd-c579-42a4-a763-52a9c2e72374 2019-05-25 21:15:34.949492 8561 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 20:23:28.442621000 Z\n- &1 2019-05-25 21:13:39.586557000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 21:16:08.969511521 Z\nsign_in_count:\n- 317\n- 318\n 636 \N 189.186.37.251 8d4dede7-f3c6-4f03-be8d-0e3da6b725a1 2019-05-25 21:16:08.97657 8562 3 User \N \N 3 User \N update ---\nunique_session_id:\n- i5tyaykySiJM5TzGsNry\n- BvNjyNovVRfMquT3gCr7\n 637 \N 189.186.37.251 8d4dede7-f3c6-4f03-be8d-0e3da6b725a1 2019-05-25 21:16:08.995313 8563 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 17:12:48.293954000 Z\n- &1 2019-05-25 20:29:36.501374000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 21:17:11.346438727 Z\nsign_in_count:\n- 242\n- 243\n 486 \N 189.186.50.198 7314eb4f-c309-4f58-89d8-341299d8b430 2019-05-25 21:17:11.352324 8564 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Pyso2M6Rsd46Ht92WGRR\n- CepYvXpzygM61rR16qu9\n 487 \N 189.186.50.198 7314eb4f-c309-4f58-89d8-341299d8b430 2019-05-25 21:17:11.364978 8565 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 16:15:40.310324000 Z\n- &1 2019-05-25 21:14:16.318780000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 21:35:49.371670183 Z\nsign_in_count:\n- 131\n- 132\n 267 \N 189.186.37.251 eeafd207-f852-454c-bf5e-1ef7b3c4ab05 2019-05-25 21:35:49.377743 8566 2 User \N \N 2 User \N update ---\nunique_session_id:\n- iuiYqLRCv3k1nDeuAz7d\n- DrREyb3xspc_wx1eSSAj\n 268 \N 189.186.37.251 eeafd207-f852-454c-bf5e-1ef7b3c4ab05 2019-05-25 21:35:49.394833 8567 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 21:13:39.586557000 Z\n- &1 2019-05-25 21:16:08.969511000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 21:36:46.077444463 Z\nsign_in_count:\n- 318\n- 319\n 638 \N 189.186.37.251 fcdb3388-aeaf-4161-81c3-0a44139533c8 2019-05-25 21:36:46.083559 8568 3 User \N \N 3 User \N update ---\nunique_session_id:\n- BvNjyNovVRfMquT3gCr7\n- 5L9q7YoRbmXdEDFuw4iX\n 639 \N 189.186.37.251 fcdb3388-aeaf-4161-81c3-0a44139533c8 2019-05-25 21:36:46.097321 8569 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 19:56:15.268326000 Z\n- &1 2019-05-25 21:15:34.929318000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 22:16:58.594802271 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\nsign_in_count:\n- 197\n- 198\n 396 \N 189.186.36.70 feaf5ccf-4b7b-47b2-882e-ba246e7a041f 2019-05-25 22:16:58.602159 8570 12 User \N \N 12 User \N update ---\nunique_session_id:\n- x7a8qSktnPn5iR7sFXAe\n- 4p5wmT4QCzARHVyjjcTb\n 397 \N 189.186.36.70 feaf5ccf-4b7b-47b2-882e-ba246e7a041f 2019-05-25 22:16:58.622894 8571 111 Customer \N \N 12 User \N create ---\nnick_name: KAR A\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KAR A fue registrado. 189.186.36.70 2f5c5b1f-efa3-4c9f-a56f-118dce5d84f0 2019-05-25 22:36:24.420281 8572 112 Customer \N \N 12 User \N create ---\nnick_name: KAR A\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KAR A fue registrado. 189.186.36.70 c4805505-8493-40ed-be2e-8e4d59c712da 2019-05-25 22:36:24.656895 8573 113 Customer \N \N 12 User \N create ---\nnick_name: KAREN ARAUJO\nphone: "(667) 200-9784"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KAREN ARAUJO fue registrado. 189.186.36.70 4f3a2baa-d311-458f-88fc-96ab0d968151 2019-05-25 22:36:44.146993 8574 114 Customer \N \N 12 User \N create ---\nnick_name: KAREN ARAUJO\nphone: "(667) 201-9784"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KAREN ARAUJO fue registrado. 189.186.36.70 fb814e73-baed-4d57-90fe-c3a92afa6ad1 2019-05-25 22:37:20.496148 8575 672 Sale \N \N 12 User \N create ---\ncustomer_id: 114\nuser_id: 12\nopen_cash_register_id: 207\namount: !ruby/object:BigDecimal 18:0.2448E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2448E4\nstatus: 0\ndate_sale: 2019-05-25\nsaletype: 2\nseller_id: 8\nsale_code: PV1-V-373\nexpiration_date: 2019-06-29\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 9c27c1fb-38e7-43d6-9dc6-132638c46637 2019-05-25 22:38:11.327902 8576 532 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.36.70 9c27c1fb-38e7-43d6-9dc6-132638c46637 2019-05-25 22:38:11.370302 8577 660 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.36.70 9c27c1fb-38e7-43d6-9dc6-132638c46637 2019-05-25 22:38:11.406727 8578 856 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 207\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 672\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-373\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-373 189.186.36.70 6b0bfaa5-216c-489c-8155-e361f3b76751 2019-05-25 22:38:35.54032 8579 672 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.36.70 d1642df3-ed17-433b-87a5-8fb14d159e51 2019-05-25 22:38:37.282406 8580 673 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 207\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.5397E3\ntotal: !ruby/object:BigDecimal 18:0.12593E4\nstatus: 0\ndate_sale: 2019-05-25\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-374\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 4e5fe631-23dd-43d6-b753-6ebcdb7fbf61 2019-05-25 22:42:27.42083 8581 584 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.36.70 4e5fe631-23dd-43d6-b753-6ebcdb7fbf61 2019-05-25 22:42:27.450964 8582 673 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 d3fc5d9a-2493-4a2a-acb7-4e0ae19cfa6d 2019-05-25 22:42:31.481942 8583 857 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 207\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12593E4\nmove_type: '1'\nsale_id: 673\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-374\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.2407E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-374 189.186.36.70 d3fc5d9a-2493-4a2a-acb7-4e0ae19cfa6d 2019-05-25 22:42:31.506115 8584 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 21:16:08.969511000 Z\n- &1 2019-05-25 21:36:46.077444000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 23:05:44.035741149 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\nsign_in_count:\n- 319\n- 320\n 640 \N 189.186.36.70 6e0848e4-1ff3-454f-99cd-f50b9fd4c2fa 2019-05-25 23:05:44.042123 8585 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 5L9q7YoRbmXdEDFuw4iX\n- qRh8ei2Er1Ec2HFBuhas\n 641 \N 189.186.36.70 6e0848e4-1ff3-454f-99cd-f50b9fd4c2fa 2019-05-25 23:05:44.056225 8586 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 21:15:34.929318000 Z\n- &1 2019-05-25 22:16:58.594802000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 23:20:34.731694484 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\nsign_in_count:\n- 198\n- 199\n 398 \N 189.186.36.70 03313d37-3db8-4bdc-8e76-6d3d5cf983ac 2019-05-25 23:20:34.739852 8587 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 4p5wmT4QCzARHVyjjcTb\n- M13DFswonbwsse2kKoCx\n 399 \N 189.186.36.70 03313d37-3db8-4bdc-8e76-6d3d5cf983ac 2019-05-25 23:20:34.769227 8588 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 21:14:16.318780000 Z\n- &1 2019-05-25 21:35:49.371670000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 23:36:08.228425442 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\nsign_in_count:\n- 132\n- 133\n 269 \N 189.186.36.70 ec737add-e481-4ca9-8d92-afcc6218b72d 2019-05-25 23:36:08.2356 8589 2 User \N \N 2 User \N update ---\nunique_session_id:\n- DrREyb3xspc_wx1eSSAj\n- dbGEXQMeg6P9EsUWmAfs\n 270 \N 189.186.36.70 ec737add-e481-4ca9-8d92-afcc6218b72d 2019-05-25 23:36:08.251833 8590 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 21:36:46.077444000 Z\n- &1 2019-05-25 23:05:44.035741000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-25 23:40:03.552620900 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\nsign_in_count:\n- 320\n- 321\n 642 \N 189.186.36.70 9d035709-308f-4e4f-b747-57e94c74fb60 2019-05-25 23:40:03.560196 8591 3 User \N \N 3 User \N update ---\nunique_session_id:\n- qRh8ei2Er1Ec2HFBuhas\n- yzpNoSJURx3FdwR7szs6\n 643 \N 189.186.36.70 9d035709-308f-4e4f-b747-57e94c74fb60 2019-05-25 23:40:03.577051 8592 115 Customer \N \N 12 User \N create ---\nnick_name: YARETZI NAJAR\nphone: "(667) 210-7957"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente YARETZI NAJAR fue registrado. 189.186.36.70 856f6573-e859-4565-bc94-a701543b8556 2019-05-26 00:15:02.729344 8593 674 Sale \N \N 12 User \N create ---\ncustomer_id: 115\nuser_id: 12\nopen_cash_register_id: 207\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-05-25\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-375\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 2a62058a-d9b1-4b25-a64f-83529c7d8413 2019-05-26 00:15:52.989561 8594 659 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.36.70 2a62058a-d9b1-4b25-a64f-83529c7d8413 2019-05-26 00:15:53.033003 8595 674 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-375 cancelada. 189.186.36.70 cf6aab16-8a52-469f-b1fe-dad01345878d 2019-05-26 00:17:01.244799 8596 659 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.36.70 cf6aab16-8a52-469f-b1fe-dad01345878d 2019-05-26 00:17:01.278055 8671 208 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 300fb057-68b0-45c1-8a5e-3e617d1407a4 2019-05-26 20:50:21.379467 8597 675 Sale \N \N 12 User \N create ---\ncustomer_id: 115\nuser_id: 12\nopen_cash_register_id: 207\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-05-25\nsaletype: 2\nseller_id: 10\nsale_code: PV1-V-376\nexpiration_date: 2019-06-29\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 d21b6fa1-c1b6-456c-aca8-e79833906aea 2019-05-26 00:17:45.789268 8598 659 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.36.70 d21b6fa1-c1b6-456c-aca8-e79833906aea 2019-05-26 00:17:45.829853 8599 858 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 207\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.265E3\nmove_type: '1'\nsale_id: 675\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-376\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.265E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-376 189.186.36.70 68b843e7-0c35-41f3-9217-9485964ce5f2 2019-05-26 00:18:10.769394 8600 675 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.36.70 bf941300-d880-4894-a9e3-a621ecdba100 2019-05-26 00:18:16.192518 8601 676 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 207\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-05-25\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-377\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 794395b0-ff9c-4406-85e8-e03a782ea73d 2019-05-26 00:37:56.74074 8602 659 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.36.70 794395b0-ff9c-4406-85e8-e03a782ea73d 2019-05-26 00:37:56.781 8603 676 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 74d4231b-008f-4b67-aefd-10aacbf15d4f 2019-05-26 00:38:17.572934 8604 859 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 207\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.869E3\nmove_type: '1'\nsale_id: 676\ncardnumber: 7866\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-377\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-377 189.186.36.70 74d4231b-008f-4b67-aefd-10aacbf15d4f 2019-05-26 00:38:17.604955 8605 79 Expense \N \N 12 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 207\nquantity: !ruby/object:BigDecimal 18:0.628E3\nstatus: 1\nobservations: SUELDO ROCIO\nexpense_date: 2019-05-25\nexpense_code: PV1-E-71\n 1 Egreso por 628.0 registrado 189.186.36.70 e9f7656a-edb2-4e5c-bd99-7a9b04766fd4 2019-05-26 00:56:22.886717 8606 860 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 207\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.628E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 79\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 e9f7656a-edb2-4e5c-bd99-7a9b04766fd4 2019-05-26 00:56:22.920405 8607 861 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 55\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 203\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 9eba44bb-9937-41bb-9d3a-9b6c93e18444 2019-05-26 00:57:34.06808 8608 203 Sale \N \N 12 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.36.70 9eba44bb-9937-41bb-9d3a-9b6c93e18444 2019-05-26 00:57:34.099054 8609 861 CashRegistersMove \N \N 12 User \N update ---\nopen_cash_register_id:\n- 55\n- 207\n 2 movimiento de efectivo por venta con folio PV1-V-113 189.186.36.70 9eba44bb-9937-41bb-9d3a-9b6c93e18444 2019-05-26 00:57:34.121428 8610 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 23:05:44.035741000 Z\n- &1 2019-05-25 23:40:03.552620000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 01:03:48.665320908 Z\nsign_in_count:\n- 321\n- 322\n 644 \N 189.186.36.70 7e0139db-dfea-4de5-b090-3209281af14d 2019-05-26 01:03:48.674473 8611 3 User \N \N 3 User \N update ---\nunique_session_id:\n- yzpNoSJURx3FdwR7szs6\n- DrfraPqyBsSeEmcxXj9E\n 645 \N 189.186.36.70 7e0139db-dfea-4de5-b090-3209281af14d 2019-05-26 01:03:48.695358 8612 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 22:16:58.594802000 Z\n- &1 2019-05-25 23:20:34.731694000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 01:05:09.744171398 Z\nsign_in_count:\n- 199\n- 200\n 400 \N 189.186.36.70 496917b4-5047-44ab-9d77-8ac7253a0f6d 2019-05-26 01:05:09.75338 8613 12 User \N \N 12 User \N update ---\nunique_session_id:\n- M13DFswonbwsse2kKoCx\n- 4XRzbbznvjpXpMLwzdXy\n 401 \N 189.186.36.70 496917b4-5047-44ab-9d77-8ac7253a0f6d 2019-05-26 01:05:09.777549 8614 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 23:40:03.552620000 Z\n- &1 2019-05-26 01:03:48.665320000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 01:09:45.293049192 Z\nsign_in_count:\n- 322\n- 323\n 646 \N 189.186.36.70 dc9bae10-72a4-4584-b5e7-6dadd0f1d606 2019-05-26 01:09:45.301064 8615 3 User \N \N 3 User \N update ---\nunique_session_id:\n- DrfraPqyBsSeEmcxXj9E\n- 5XqRzk297da9UQzUH46o\n 647 \N 189.186.36.70 dc9bae10-72a4-4584-b5e7-6dadd0f1d606 2019-05-26 01:09:45.319462 8616 677 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 206\namount: !ruby/object:BigDecimal 18:0.231883E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2498E4\nstatus: 0\ndate_sale: 2019-05-25\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-298\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 870136a9-ce02-4c66-8e73-896fddd820bb 2019-05-26 01:10:21.335096 8617 510 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.36.70 870136a9-ce02-4c66-8e73-896fddd820bb 2019-05-26 01:10:21.378103 8618 652 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.36.70 870136a9-ce02-4c66-8e73-896fddd820bb 2019-05-26 01:10:21.409585 8619 677 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 73f08e43-004a-4a3d-9260-ae50889544cc 2019-05-26 01:10:56.223206 8620 862 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 206\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.2498E4\nmove_type: '1'\nsale_id: 677\ncardnumber: 3945\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-298\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-298 189.186.36.70 73f08e43-004a-4a3d-9260-ae50889544cc 2019-05-26 01:10:56.258632 8621 80 Expense \N \N 12 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 207\nquantity: !ruby/object:BigDecimal 18:0.7E3\nstatus: 1\nobservations: SUELDO RESTANTE ANABELLY\nexpense_date: 2019-05-25\nexpense_code: PV1-E-72\n 1 Egreso por 700.0 registrado 189.186.36.70 9f5b5072-2df0-4db2-a784-d7909753d404 2019-05-26 01:12:57.90982 8622 863 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 207\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 80\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 9f5b5072-2df0-4db2-a784-d7909753d404 2019-05-26 01:12:57.949204 8623 864 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 172\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 f5841c47-7841-4fce-b2e5-966a8f0ff0b4 2019-05-26 01:14:25.469258 8624 172 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.36.70 f5841c47-7841-4fce-b2e5-966a8f0ff0b4 2019-05-26 01:14:25.509766 8625 864 CashRegistersMove \N \N 12 User \N update ---\nopen_cash_register_id:\n- 49\n- 207\n 2 movimiento de efectivo por venta con folio PV1-V-96 189.186.36.70 f5841c47-7841-4fce-b2e5-966a8f0ff0b4 2019-05-26 01:14:25.529871 8626 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 21:35:49.371670000 Z\n- &1 2019-05-25 23:36:08.228425000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 01:19:16.225406766 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\nsign_in_count:\n- 133\n- 134\n 271 \N 189.186.36.70 e4f42ff1-c952-4442-aaa0-53fe7c391243 2019-05-26 01:19:16.237447 8627 2 User \N \N 2 User \N update ---\nunique_session_id:\n- dbGEXQMeg6P9EsUWmAfs\n- vrY7Mr9YxpVeiPu85Q87\n 272 \N 189.186.36.70 e4f42ff1-c952-4442-aaa0-53fe7c391243 2019-05-26 01:19:16.25974 8628 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-26 01:03:48.665320000 Z\n- &1 2019-05-26 01:09:45.293049000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 01:22:31.425566331 Z\nsign_in_count:\n- 323\n- 324\n 648 \N 189.186.36.70 9180f4b7-1ed4-4f89-9b91-1a7d5f1179c6 2019-05-26 01:22:31.434636 8629 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 5XqRzk297da9UQzUH46o\n- zxPy6iYhwycRqgduapWD\n 649 \N 189.186.36.70 9180f4b7-1ed4-4f89-9b91-1a7d5f1179c6 2019-05-26 01:22:31.458276 8630 204 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 207\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.681831E4\namount_out: !ruby/object:BigDecimal 18:0.1328E4\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.55E3\nphysical_cash: !ruby/object:BigDecimal 18:0.355E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.36.70 f2768e3e-3518-45e2-a3e4-373167fee5da 2019-05-26 01:56:44.47702 8631 207 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 f2768e3e-3518-45e2-a3e4-373167fee5da 2019-05-26 01:56:44.498915 8632 205 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 206\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.6144E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.129E4\ncash_fund: !ruby/object:BigDecimal 18:0.788E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2078E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.36.70 2acd1dd2-6452-4e8e-ba0c-97183dfb29e8 2019-05-26 01:57:44.171224 8633 206 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 2acd1dd2-6452-4e8e-ba0c-97183dfb29e8 2019-05-26 01:57:44.19086 8634 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 20:29:36.501374000 Z\n- &1 2019-05-25 21:17:11.346438000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 06:31:23.005518457 Z\nsign_in_count:\n- 243\n- 244\n 488 \N 189.186.50.198 8b3ca100-49b2-45c1-85e9-2e288e7d669c 2019-05-26 06:31:23.012736 8635 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CepYvXpzygM61rR16qu9\n- ByRp9EPXsFTbM2AeMpj5\n 489 \N 189.186.50.198 8b3ca100-49b2-45c1-85e9-2e288e7d669c 2019-05-26 06:31:23.02784 8636 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-26 01:09:45.293049000 Z\n- &1 2019-05-26 01:22:31.425566000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 16:04:28.666598481 Z\nsign_in_count:\n- 324\n- 325\n 650 \N 189.186.36.70 c5ea6911-2a18-4ca9-a561-345c06c76e36 2019-05-26 16:04:28.703974 8637 3 User \N \N 3 User \N update ---\nunique_session_id:\n- zxPy6iYhwycRqgduapWD\n- "-RdtCsCPikCm7tvyjGG5"\n 651 \N 189.186.36.70 c5ea6911-2a18-4ca9-a561-345c06c76e36 2019-05-26 16:04:28.725944 8638 208 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.788E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 788.0 189.186.36.70 e018cf2f-270f-495f-ae08-db90bedda4d2 2019-05-26 16:04:56.639831 8639 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 23:20:34.731694000 Z\n- &1 2019-05-26 01:05:09.744171000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 16:05:18.662124242 Z\nsign_in_count:\n- 200\n- 201\n 402 \N 189.186.36.70 231394b8-b6ce-4a29-b77e-2f4e3bfc6cea 2019-05-26 16:05:18.667815 8640 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 4XRzbbznvjpXpMLwzdXy\n- cXVy2sT1w8TxszzLSfZp\n 403 \N 189.186.36.70 231394b8-b6ce-4a29-b77e-2f4e3bfc6cea 2019-05-26 16:05:18.68064 8641 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-26 01:22:31.425566000 Z\n- &1 2019-05-26 16:04:28.666598000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 17:28:17.546706854 Z\nsign_in_count:\n- 325\n- 326\n 652 \N 189.186.36.70 2ffe97ad-5972-49ba-b21e-3a1bdd629b72 2019-05-26 17:28:17.553403 8642 3 User \N \N 3 User \N update ---\nunique_session_id:\n- "-RdtCsCPikCm7tvyjGG5"\n- oNxUwnffxH6XeQZfTyMB\n 653 \N 189.186.36.70 2ffe97ad-5972-49ba-b21e-3a1bdd629b72 2019-05-26 17:28:17.567516 8643 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-26 01:05:09.744171000 Z\n- &1 2019-05-26 16:05:18.662124000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 18:22:17.559534827 Z\nsign_in_count:\n- 201\n- 202\n 404 \N 189.186.36.70 7b51dce7-0c27-42bd-8de1-5ddb3a306cdb 2019-05-26 18:22:17.565021 8644 12 User \N \N 12 User \N update ---\nunique_session_id:\n- cXVy2sT1w8TxszzLSfZp\n- UCn_HSShvMXzKXn_bzM3\n 405 \N 189.186.36.70 7b51dce7-0c27-42bd-8de1-5ddb3a306cdb 2019-05-26 18:22:17.577933 8645 209 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.55E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 550.0 189.186.36.70 02d58fff-0ce7-4de9-89ba-ae57d6580286 2019-05-26 18:34:01.856373 8697 116 Customer \N \N 2 User \N create ---\nnick_name: KENIA H\nphone: "(667) 216-1242"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KENIA H fue registrado. 189.186.36.70 8b156bd6-a0cd-428f-9ae9-c9d3534a4f26 2019-05-27 17:46:24.226931 8646 678 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 209\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-05-26\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-378\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 fdd49625-5702-46ae-a4af-cd9e4844189a 2019-05-26 18:35:24.707759 8647 617 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.36.70 fdd49625-5702-46ae-a4af-cd9e4844189a 2019-05-26 18:35:24.740207 8648 678 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 251e89d1-50b1-4f59-aee3-0147a597705a 2019-05-26 18:35:31.048983 8649 865 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 209\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 678\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-378\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-378 189.186.36.70 251e89d1-50b1-4f59-aee3-0147a597705a 2019-05-26 18:35:31.084634 8650 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-26 16:04:28.666598000 Z\n- &1 2019-05-26 17:28:17.546706000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 18:46:41.880229564 Z\nsign_in_count:\n- 326\n- 327\n 654 \N 189.186.36.70 a10cdadf-4077-44d0-9f87-354f1f505124 2019-05-26 18:46:41.886175 8651 3 User \N \N 3 User \N update ---\nunique_session_id:\n- oNxUwnffxH6XeQZfTyMB\n- Vpwr8TvSQFFDTnpBsPsS\n 655 \N 189.186.36.70 a10cdadf-4077-44d0-9f87-354f1f505124 2019-05-26 18:46:41.89889 8652 679 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 208\namount: !ruby/object:BigDecimal 18:0.969E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.969E3\nstatus: 0\ndate_sale: 2019-05-26\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-299\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 cb55c3bc-d852-44c9-9e8a-e6ee90e566d4 2019-05-26 18:47:37.037124 8653 494 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.36.70 cb55c3bc-d852-44c9-9e8a-e6ee90e566d4 2019-05-26 18:47:37.066067 8654 679 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 2ff71358-af48-40d7-a5ff-86348d74f270 2019-05-26 18:47:52.606562 8655 866 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 208\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.969E3\nmove_type: '1'\nsale_id: 679\ncardnumber: 9097\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-299\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-299 189.186.36.70 2ff71358-af48-40d7-a5ff-86348d74f270 2019-05-26 18:47:52.628487 8656 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 23:36:08.228425000 Z\n- &1 2019-05-26 01:19:16.225406000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 18:54:37.023837338 Z\nsign_in_count:\n- 134\n- 135\n 273 \N 189.186.36.70 55145775-497c-4bf6-98bf-31ce2997b994 2019-05-26 18:54:37.029614 8657 2 User \N \N 2 User \N update ---\nunique_session_id:\n- vrY7Mr9YxpVeiPu85Q87\n- eyuT8mfzc-MuKgGYdEQi\n 274 \N 189.186.36.70 55145775-497c-4bf6-98bf-31ce2997b994 2019-05-26 18:54:37.042062 8658 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-26 17:28:17.546706000 Z\n- &1 2019-05-26 18:46:41.880229000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 18:55:04.885505869 Z\nsign_in_count:\n- 327\n- 328\n 656 \N 189.186.36.70 2ab10a8e-0a64-4221-82f2-e6757cda2c0b 2019-05-26 18:55:04.892906 8659 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Vpwr8TvSQFFDTnpBsPsS\n- y1r3GZDkiNkuKALv97sR\n 657 \N 189.186.36.70 2ab10a8e-0a64-4221-82f2-e6757cda2c0b 2019-05-26 18:55:04.909123 8660 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-26 18:46:41.880229000 Z\n- &1 2019-05-26 18:55:04.885505000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 20:07:40.565920505 Z\nsign_in_count:\n- 328\n- 329\n 658 \N 189.186.36.70 c76eee74-3872-47eb-bd72-90fe71e9479e 2019-05-26 20:07:40.571902 8661 3 User \N \N 3 User \N update ---\nunique_session_id:\n- y1r3GZDkiNkuKALv97sR\n- HKMS1a93aiCwmz2Bf2Ex\n 659 \N 189.186.36.70 c76eee74-3872-47eb-bd72-90fe71e9479e 2019-05-26 20:07:40.584717 8662 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-26 16:05:18.662124000 Z\n- &1 2019-05-26 18:22:17.559534000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 20:17:01.201025073 Z\nsign_in_count:\n- 202\n- 203\n 406 \N 189.186.36.70 1dcc0c38-2e64-4ee7-9de8-5e40fb674f79 2019-05-26 20:17:01.207072 8663 12 User \N \N 12 User \N update ---\nunique_session_id:\n- UCn_HSShvMXzKXn_bzM3\n- H7AMUX7FZnzGNDiYLofE\n 407 \N 189.186.36.70 1dcc0c38-2e64-4ee7-9de8-5e40fb674f79 2019-05-26 20:17:01.220244 8664 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-26 18:55:04.885505000 Z\n- &1 2019-05-26 20:07:40.565920000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 20:24:00.916000454 Z\nsign_in_count:\n- 329\n- 330\n 660 \N 189.186.36.70 4692fd28-c636-4e80-bc03-371e0ffbb4da 2019-05-26 20:24:00.921988 8665 3 User \N \N 3 User \N update ---\nunique_session_id:\n- HKMS1a93aiCwmz2Bf2Ex\n- 3zFSNbzNR1bmMA2zJyN4\n 661 \N 189.186.36.70 4692fd28-c636-4e80-bc03-371e0ffbb4da 2019-05-26 20:24:00.934852 8666 680 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 208\namount: !ruby/object:BigDecimal 18:0.889E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.889E3\nstatus: 0\ndate_sale: 2019-05-26\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-300\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 83aadca5-8de9-4142-b3bc-f014c72add26 2019-05-26 20:24:44.026886 8667 476 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.36.70 83aadca5-8de9-4142-b3bc-f014c72add26 2019-05-26 20:24:44.05249 8668 680 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 0441ec7c-824a-4310-85c8-fc88fe70e56b 2019-05-26 20:24:50.696467 8669 867 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 208\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.889E3\nmove_type: '1'\nsale_id: 680\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-300\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.111E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-300 189.186.36.70 0441ec7c-824a-4310-85c8-fc88fe70e56b 2019-05-26 20:24:50.71902 8670 206 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 208\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1858E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.677E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1677E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.36.70 300fb057-68b0-45c1-8a5e-3e617d1407a4 2019-05-26 20:50:21.366014 8672 868 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 209\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.279E3\nmove_type: '1'\nsale_id: 631\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.221E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-353 189.186.36.70 3da4bafa-da00-4b74-bb98-e460424a03d5 2019-05-26 20:56:39.515132 8673 631 Sale \N \N 12 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.36.70 5f7d8271-e963-4cd2-8363-888c6622bd98 2019-05-26 20:56:40.670234 8674 81 Expense \N \N 12 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 209\nquantity: !ruby/object:BigDecimal 18:0.2E3\nstatus: 1\nobservations: COMISIONES ANABELLY\nexpense_date: 2019-05-26\nexpense_code: PV1-E-73\n 1 Egreso por 200.0 registrado 189.186.36.70 cf0e85e4-840f-44c6-b6de-30114a204a8b 2019-05-26 21:01:10.04254 8675 869 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 209\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 81\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 cf0e85e4-840f-44c6-b6de-30114a204a8b 2019-05-26 21:01:10.075133 8676 207 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 209\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.1378E4\namount_out: !ruby/object:BigDecimal 18:0.2E3\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.728E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1728E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.36.70 37b3780d-85e9-4f1f-9be6-e6795035ebb4 2019-05-26 21:02:34.093817 8677 209 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 37b3780d-85e9-4f1f-9be6-e6795035ebb4 2019-05-26 21:02:34.114129 8678 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-26 18:22:17.559534000 Z\n- &1 2019-05-26 20:17:01.201025000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 21:04:17.458836978 Z\nsign_in_count:\n- 203\n- 204\n 408 \N 189.186.36.70 53c66fc0-1a4b-4e69-98f7-7d7ff272c908 2019-05-26 21:04:17.468244 8679 12 User \N \N 12 User \N update ---\nunique_session_id:\n- H7AMUX7FZnzGNDiYLofE\n- QYiHmJXhFSFaZvE-1Cc-\n 409 \N 189.186.36.70 53c66fc0-1a4b-4e69-98f7-7d7ff272c908 2019-05-26 21:04:17.486717 8680 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-05-18 22:39:02.202989000 Z\n- &1 2019-05-22 23:43:46.165466000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 22:31:12.756714166 Z\nsign_in_count:\n- 21\n- 22\n 44 \N 189.252.57.219 04d5a3ed-9395-4333-802a-044fec75f068 2019-05-26 22:31:12.763687 8681 5 User \N \N 5 User \N update ---\nunique_session_id:\n- mNmvUdQGqPiEXAEabiNH\n- SpVx13cYQ7uxiDsn8bZD\n 45 \N 189.252.57.219 04d5a3ed-9395-4333-802a-044fec75f068 2019-05-26 22:31:12.780728 8682 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-25 21:17:11.346438000 Z\n- &1 2019-05-26 06:31:23.005518000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 22:37:02.127746422 Z\nsign_in_count:\n- 244\n- 245\n 490 \N 189.186.50.198 6f2a3a2a-fdd5-4a50-b7a7-785a78e6fe30 2019-05-26 22:37:02.133672 8683 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ByRp9EPXsFTbM2AeMpj5\n- y4y5YebakynonEsg8Kzb\n 491 \N 189.186.50.198 6f2a3a2a-fdd5-4a50-b7a7-785a78e6fe30 2019-05-26 22:37:02.146493 8684 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-05-22 23:43:46.165466000 Z\n- &1 2019-05-26 22:31:12.756714000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 23:29:22.861727223 Z\nsign_in_count:\n- 22\n- 23\n 46 \N 189.252.57.219 2e5ce777-cb47-4464-8fc6-5619a80617d9 2019-05-26 23:29:22.868114 8685 5 User \N \N 5 User \N update ---\nunique_session_id:\n- SpVx13cYQ7uxiDsn8bZD\n- 3gTPGKgbW_GMSt9Zcgzc\n 47 \N 189.252.57.219 2e5ce777-cb47-4464-8fc6-5619a80617d9 2019-05-26 23:29:22.882216 8686 16 User \N \N 5 User \N create ---\nuserid: chemigerentesuo\nfirst_name: chemi\nlast_name: gerente\nusertype: G\nemail: chemigerentesuo@sml.mx\nencrypted_password: "$2a$10$AvdDQjDcoLdPQocc38MmUeUWjWLbr45mAfEqRSL/cHXZ1KL0aGaxm"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 1\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.252.57.219 a306f7ac-77ac-4677-9f98-3e144dd56b92 2019-05-26 23:31:35.08191 8687 16 User \N \N 16 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-05-26 23:31:56.548556036 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3187423707\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3187423707\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 189.252.57.219 d0aa3af0-8e9f-4055-acee-a18ea899e45d 2019-05-26 23:31:56.557233 8688 16 User \N \N 16 User \N update ---\nunique_session_id:\n- \n- dsRhHXfcWkPGAa6HnJGe\n 3 \N 189.252.57.219 d0aa3af0-8e9f-4055-acee-a18ea899e45d 2019-05-26 23:31:56.575572 8689 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-05-26 22:31:12.756714000 Z\n- &1 2019-05-26 23:29:22.861727000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-26 23:36:53.283438539 Z\nsign_in_count:\n- 23\n- 24\n 48 \N 189.252.57.219 60894926-9abc-4ba9-b60f-1f99f87e20a4 2019-05-26 23:36:53.291636 8690 5 User \N \N 5 User \N update ---\nunique_session_id:\n- 3gTPGKgbW_GMSt9Zcgzc\n- 4fxTdWf3mktzAQegJ_eQ\n 49 \N 189.252.57.219 60894926-9abc-4ba9-b60f-1f99f87e20a4 2019-05-26 23:36:53.3111 8691 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-26 01:19:16.225406000 Z\n- &1 2019-05-26 18:54:37.023837000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-27 17:10:08.019413336 Z\nsign_in_count:\n- 135\n- 136\n 275 \N 189.186.36.70 f0aaeaef-fb26-49e9-90ee-69a3e8b647a7 2019-05-27 17:10:08.052657 8692 2 User \N \N 2 User \N update ---\nunique_session_id:\n- eyuT8mfzc-MuKgGYdEQi\n- GXL96u5LqJrUEyDkx1LM\n 276 \N 189.186.36.70 f0aaeaef-fb26-49e9-90ee-69a3e8b647a7 2019-05-27 17:10:08.075577 8693 210 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.728E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 728.0 189.186.36.70 3f9903e3-3209-4cd6-af77-521c4e797959 2019-05-27 17:18:48.306626 8694 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 16:23:44.673775000 Z\n- &1 2019-05-24 16:06:57.657246000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-27 17:29:35.442923735 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\nsign_in_count:\n- 71\n- 72\n 144 \N 189.186.36.70 6941be27-4ffe-495a-b4f4-c8ef15444861 2019-05-27 17:29:35.475249 8695 10 User \N \N 10 User \N update ---\nunique_session_id:\n- ugmaGieFCBpwBVzXC3MR\n- w18UszzRBN6y2ses-oaN\n 145 \N 189.186.36.70 6941be27-4ffe-495a-b4f4-c8ef15444861 2019-05-27 17:29:35.4987 8696 211 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.677E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 677.0 189.186.36.70 2c961c91-a4c8-4b08-b80c-919397372830 2019-05-27 17:29:39.729839 8786 689 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 88055e58-211b-4db7-860f-ddd2d77b4eb3 2019-05-28 23:46:57.833664 8698 681 Sale \N \N 2 User \N create ---\ncustomer_id: 116\nuser_id: 2\nopen_cash_register_id: 210\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-05-27\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-379\nexpiration_date: 2019-07-01\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 04c670d2-d8eb-45e1-84d4-7a3a22889991 2019-05-27 17:47:01.706292 8699 659 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.36.70 04c670d2-d8eb-45e1-84d4-7a3a22889991 2019-05-27 17:47:01.73607 8700 870 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 210\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.26E3\nmove_type: '1'\nsale_id: 681\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-379\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-379 189.186.36.70 d3cf036b-054b-4ab2-a65b-2d64074b2b0c 2019-05-27 17:49:11.776336 8701 870 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 210\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.26E3\nmove_type: '1'\nsale_id: 681\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-379\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.36.70 5f4ce892-e43f-4a49-9b56-aa4803592b2b 2019-05-27 17:49:19.934953 8702 871 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 210\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E2\nmove_type: '1'\nsale_id: 681\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-379\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-379 189.186.36.70 349972da-dc0d-4cb7-8d19-1979b24cbec2 2019-05-27 17:49:34.178976 8703 872 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 210\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 681\ncardnumber: 4489\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-379\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-379 189.186.36.70 3b3e2169-2f89-4631-a061-964f0acb8452 2019-05-27 17:49:55.362243 8704 872 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 210\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 681\ncardnumber: 4489\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-379\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.36.70 43781866-75a1-4123-8b8e-09281bc103d8 2019-05-27 17:50:04.069931 8705 873 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 210\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 681\ncardnumber: 4489\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-379\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-379 189.186.36.70 343cd03f-987f-4f71-ab1b-ec43f3ff2716 2019-05-27 17:50:18.252072 8706 681 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.36.70 05bf5e6d-84aa-473d-aefc-32232ff62f5f 2019-05-27 17:51:09.799162 8707 82 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 210\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: COMIDA\nexpense_date: 2019-05-27\nexpense_code: PV1-E-74\n 1 Egreso por 50.0 registrado 189.186.36.70 9275403e-2094-4ad9-9dff-32a47b6a3caf 2019-05-27 17:54:25.952153 8708 874 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 210\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 82\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 9275403e-2094-4ad9-9dff-32a47b6a3caf 2019-05-27 17:54:25.975397 8709 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-26 06:31:23.005518000 Z\n- &1 2019-05-26 22:37:02.127746000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-27 18:09:17.632778255 Z\nsign_in_count:\n- 245\n- 246\n 492 \N 189.186.50.198 596e0606-fe11-4eaa-9df7-e927b228e6b2 2019-05-27 18:09:17.638627 8710 4 User \N \N 4 User \N update ---\nunique_session_id:\n- y4y5YebakynonEsg8Kzb\n- m2vz3FGbC3rqxLp1ec-Q\n 493 \N 189.186.50.198 596e0606-fe11-4eaa-9df7-e927b228e6b2 2019-05-27 18:09:17.652496 8711 117 Customer \N \N 2 User \N create ---\nnick_name: KIMBERLY BELTRAN\nphone: "(667) 102-2592"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KIMBERLY BELTRAN fue registrado. 189.186.36.70 37f10a26-4602-4f12-9977-7f12e4a68361 2019-05-27 18:18:03.908281 8712 682 Sale \N \N 2 User \N create ---\ncustomer_id: 117\nuser_id: 2\nopen_cash_register_id: 210\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-05-27\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-380\nexpiration_date: 2019-07-01\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 9fd45e7b-e219-4d75-b115-7128831d8b51 2019-05-27 18:18:21.986805 8713 615 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.36.70 9fd45e7b-e219-4d75-b115-7128831d8b51 2019-05-27 18:18:22.017081 8714 875 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 210\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.75E3\nmove_type: '1'\nsale_id: 682\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-380\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.75E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-380 189.186.36.70 aa6b8cf8-9a87-4b9b-a572-5ec57729392a 2019-05-27 18:18:57.151 8715 876 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 210\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.75E3\nmove_type: '1'\nsale_id: 682\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-380\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.75E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-380 189.186.36.70 274f7bf4-3f34-42e2-b0c6-3caa5f672f72 2019-05-27 18:18:57.218432 37940 2727 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.137.127 edd0fb6e-548a-419a-8037-2b1ed56dff11 2020-08-18 18:08:33.808106 8716 875 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 210\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.75E3\nmove_type: '1'\nsale_id: 682\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-380\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.75E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.36.70 13cb1f61-a369-48d9-a11d-2b993b103e3b 2019-05-27 18:19:00.216137 8717 682 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.36.70 f6241100-60a1-41e8-a1d4-38f6da9ed8a8 2019-05-27 18:19:04.624127 8718 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-26 20:07:40.565920000 Z\n- &1 2019-05-26 20:24:00.916000000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-27 18:21:26.825337761 Z\nsign_in_count:\n- 330\n- 331\n 662 \N 189.186.36.70 6ab70cb8-fdb4-418a-9547-38461f334338 2019-05-27 18:21:26.833575 8719 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 3zFSNbzNR1bmMA2zJyN4\n- M3-DagyVrDC12s279ZDK\n 663 \N 189.186.36.70 6ab70cb8-fdb4-418a-9547-38461f334338 2019-05-27 18:21:26.850469 8720 683 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 210\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-05-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-381\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 577fbb56-ac3e-4c4e-8705-fb983f3cad26 2019-05-27 18:27:35.913176 8721 660 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.36.70 577fbb56-ac3e-4c4e-8705-fb983f3cad26 2019-05-27 18:27:35.95925 8722 683 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 64e3cb4e-28e9-4e35-89f4-134df345ccd4 2019-05-27 18:27:40.601268 8723 877 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 210\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 683\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-381\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.749E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-381 189.186.36.70 64e3cb4e-28e9-4e35-89f4-134df345ccd4 2019-05-27 18:27:40.626946 8724 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-26 22:37:02.127746000 Z\n- &1 2019-05-27 18:09:17.632778000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-27 20:29:39.984930227 Z\nsign_in_count:\n- 246\n- 247\n 494 \N 189.186.50.198 57f04af8-3122-4980-8d79-72be8e1823a4 2019-05-27 20:29:39.990963 8725 4 User \N \N 4 User \N update ---\nunique_session_id:\n- m2vz3FGbC3rqxLp1ec-Q\n- 1GB4iGRv_BbQRdi3smzu\n 495 \N 189.186.50.198 57f04af8-3122-4980-8d79-72be8e1823a4 2019-05-27 20:29:40.005515 8726 684 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 210\namount: !ruby/object:BigDecimal 18:0.77259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.17E3\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-05-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-382\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 37a64974-6638-43d4-b38f-4c1efc8792cd 2019-05-27 21:45:47.653908 8727 240 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.36.70 37a64974-6638-43d4-b38f-4c1efc8792cd 2019-05-27 21:45:47.680696 8728 684 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 d541082e-4705-452f-8612-c6b2b3b2f59d 2019-05-27 21:45:52.445234 8729 878 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 210\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 684\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-382\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-382 189.186.36.70 d541082e-4705-452f-8612-c6b2b3b2f59d 2019-05-27 21:45:52.467234 8730 83 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 210\nquantity: !ruby/object:BigDecimal 18:0.4E3\nstatus: 1\nobservations: comisiones Rocío\nexpense_date: 2019-05-27\nexpense_code: PV1-E-75\n 1 Egreso por 400.0 registrado 189.186.36.70 b8a1c497-828e-452f-90cf-07e3a8164259 2019-05-27 22:11:56.286669 8731 879 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 210\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 83\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 b8a1c497-828e-452f-90cf-07e3a8164259 2019-05-27 22:11:56.308971 8732 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-27 18:09:17.632778000 Z\n- &1 2019-05-27 20:29:39.984930000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-27 22:43:38.862837058 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\nsign_in_count:\n- 247\n- 248\n 496 \N 189.186.36.70 7a38303a-8b98-41cc-973a-3fdcdcfe42dd 2019-05-27 22:43:38.870017 8733 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1GB4iGRv_BbQRdi3smzu\n- 9rorWZfhC8GJ_tHxBsCG\n 497 \N 189.186.36.70 7a38303a-8b98-41cc-973a-3fdcdcfe42dd 2019-05-27 22:43:38.888126 8734 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 16:06:57.657246000 Z\n- &1 2019-05-27 17:29:35.442923000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-27 22:50:30.654254645 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\nsign_in_count:\n- 72\n- 73\n 146 \N 189.186.36.70 4123003b-3ce2-4ae7-865c-9a11c6f0eb49 2019-05-27 22:50:30.663286 8735 10 User \N \N 10 User \N update ---\nunique_session_id:\n- w18UszzRBN6y2ses-oaN\n- 5UzmkwamiszKoUqsuqhJ\n 147 \N 189.186.36.70 4123003b-3ce2-4ae7-865c-9a11c6f0eb49 2019-05-27 22:50:30.684018 8736 880 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 210\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 682\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-380 189.186.36.70 0a7347df-4cba-44a7-8f50-2bed07bc201b 2019-05-27 23:21:35.871767 8737 682 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.36.70 5bdee3ad-837a-4607-9133-9824ec29f8dd 2019-05-27 23:21:37.447416 8837 215 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.776E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 776.0 189.186.36.70 e139276f-894a-4c5f-87b8-78cd4309c716 2019-05-30 16:07:49.648011 8738 685 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 210\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-05-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-383\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 30c382f2-d9be-4395-b046-2b64121825c1 2019-05-27 23:22:52.463484 8739 605 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.36.70 30c382f2-d9be-4395-b046-2b64121825c1 2019-05-27 23:22:52.491924 8740 685 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 343e1ddd-425c-443c-b9ae-3eed8cc682d9 2019-05-27 23:23:04.895142 8741 881 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 210\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.479E3\nmove_type: '1'\nsale_id: 685\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-383\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.479E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-383 189.186.36.70 343e1ddd-425c-443c-b9ae-3eed8cc682d9 2019-05-27 23:23:04.916562 8742 686 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 210\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-05-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-384\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 48596328-7593-4bed-af15-1be06f67e17e 2019-05-27 23:38:33.051389 8743 643 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.36.70 48596328-7593-4bed-af15-1be06f67e17e 2019-05-27 23:38:33.092517 8744 686 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 449e7411-7a14-4618-949a-799d6616193f 2019-05-27 23:39:08.364842 8745 882 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 210\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 686\ncardnumber: 9109\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-384\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-384 189.186.36.70 449e7411-7a14-4618-949a-799d6616193f 2019-05-27 23:39:08.388613 8746 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-27 20:29:39.984930000 Z\n- &1 2019-05-27 22:43:38.862837000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-28 00:17:20.379491743 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 248\n- 249\n 498 \N 189.186.50.198 2eed893f-569b-42d1-9063-30cf46612b23 2019-05-28 00:17:20.387805 8747 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9rorWZfhC8GJ_tHxBsCG\n- nSHby4m64MCJ-So9bMDq\n 499 \N 189.186.50.198 2eed893f-569b-42d1-9063-30cf46612b23 2019-05-28 00:17:20.405388 8748 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-26 20:24:00.916000000 Z\n- &1 2019-05-27 18:21:26.825337000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-28 01:05:00.089691431 Z\nsign_in_count:\n- 331\n- 332\n 664 \N 189.186.36.70 4e6a974b-dfb1-4f6f-8053-e973d572af89 2019-05-28 01:05:00.099287 8749 3 User \N \N 3 User \N update ---\nunique_session_id:\n- M3-DagyVrDC12s279ZDK\n- 1rL6QP2cLy-CH8e9y5Fb\n 665 \N 189.186.36.70 4e6a974b-dfb1-4f6f-8053-e973d572af89 2019-05-28 01:05:00.121131 8750 208 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 210\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3885E4\namount_out: !ruby/object:BigDecimal 18:0.45E3\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.1064E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3064E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.36.70 32d2f9a1-2a9c-4b45-8252-f16d792cac17 2019-05-28 01:49:07.138069 8751 210 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 32d2f9a1-2a9c-4b45-8252-f16d792cac17 2019-05-28 01:49:07.152672 8752 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-26 18:54:37.023837000 Z\n- &1 2019-05-27 17:10:08.019413000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-28 15:41:55.034552367 Z\nsign_in_count:\n- 136\n- 137\n 277 \N 189.186.36.70 d87994b9-42aa-4930-9203-66dd0814e8e5 2019-05-28 15:41:55.074387 8753 2 User \N \N 2 User \N update ---\nunique_session_id:\n- GXL96u5LqJrUEyDkx1LM\n- hMXf8PgBuMExAZEG7RVs\n 278 \N 189.186.36.70 d87994b9-42aa-4930-9203-66dd0814e8e5 2019-05-28 15:41:55.108315 8754 212 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1064E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1064.0 189.186.36.70 3be0b2c4-a315-42b9-8057-2f3420d6351e 2019-05-28 15:42:14.148164 8755 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-27 18:21:26.825337000 Z\n- &1 2019-05-28 01:05:00.089691000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-28 16:15:54.230993454 Z\nsign_in_count:\n- 332\n- 333\n 666 \N 189.186.36.70 bd988e0a-85ba-41d1-82c6-21a0e4461ab1 2019-05-28 16:15:54.2373 8756 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 1rL6QP2cLy-CH8e9y5Fb\n- NyxsdzswMTjVhPMfPms5\n 667 \N 189.186.36.70 bd988e0a-85ba-41d1-82c6-21a0e4461ab1 2019-05-28 16:15:54.252905 8757 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-28 01:05:00.089691000 Z\n- &1 2019-05-28 16:15:54.230993000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-28 16:51:32.369042339 Z\nsign_in_count:\n- 333\n- 334\n 668 \N 189.186.36.70 94b0594f-723c-4df0-8231-f52f9745fdfc 2019-05-28 16:51:32.376725 8758 3 User \N \N 3 User \N update ---\nunique_session_id:\n- NyxsdzswMTjVhPMfPms5\n- 8CqQscsX6yq_q3wfdqCT\n 669 \N 189.186.36.70 94b0594f-723c-4df0-8231-f52f9745fdfc 2019-05-28 16:51:32.394552 8759 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-27 22:43:38.862837000 Z\n- &1 2019-05-28 00:17:20.379491000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-28 17:32:55.790662837 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\nsign_in_count:\n- 249\n- 250\n 500 \N 189.186.50.198 40690240-6f48-4f11-9e72-66ce76dec67a 2019-05-28 17:32:55.799067 8760 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nSHby4m64MCJ-So9bMDq\n- i7cneRGCS1RCK5NK4h9-\n 501 \N 189.186.50.198 40690240-6f48-4f11-9e72-66ce76dec67a 2019-05-28 17:32:55.814982 8838 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-28 15:41:55.034552000 Z\n- &1 2019-05-29 15:49:38.672092000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-30 16:36:32.142548876 Z\nsign_in_count:\n- 138\n- 139\n 281 \N 189.186.36.70 c8806904-3629-4dbc-81fa-b7acbd9e9703 2019-05-30 16:36:32.1756 38119 2748 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 975769fc-54dd-41c2-b13d-e652a9f9d4d5 2020-08-20 23:10:55.868991 8761 883 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 212\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 412\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-216 189.186.36.70 494d67b4-72aa-46ed-bf6f-53f048e6f8dc 2019-05-28 18:47:38.346273 8762 412 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.36.70 f9b3d0a1-0a2c-4d86-bd36-f88db28ff3ce 2019-05-28 18:47:40.237967 8763 687 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 212\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-05-28\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-385\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 e3466049-8de1-4623-a430-c374ac2c59bb 2019-05-28 18:50:06.961865 8764 155 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 189.186.36.70 e3466049-8de1-4623-a430-c374ac2c59bb 2019-05-28 18:50:07.010627 8765 687 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 d1674ae6-e2d4-4e44-a54a-8d0e84f4e2eb 2019-05-28 18:50:31.203104 8766 884 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 212\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 687\ncardnumber: 1083\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-385\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-385 189.186.36.70 d1674ae6-e2d4-4e44-a54a-8d0e84f4e2eb 2019-05-28 18:50:31.229749 8767 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-28 00:17:20.379491000 Z\n- &1 2019-05-28 17:32:55.790662000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-28 19:15:06.831163037 Z\nsign_in_count:\n- 250\n- 251\n 502 \N 189.186.50.198 a0b12a83-d640-46f2-a255-c2e05a8cfe3d 2019-05-28 19:15:06.838897 8768 4 User \N \N 4 User \N update ---\nunique_session_id:\n- i7cneRGCS1RCK5NK4h9-\n- qp4KsJHPTBd3H3f1WdK-\n 503 \N 189.186.50.198 a0b12a83-d640-46f2-a255-c2e05a8cfe3d 2019-05-28 19:15:06.854845 8769 687 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-385 cancelada. 189.186.36.70 3c7a1707-d0b5-4d55-95ce-400373b2719e 2019-05-28 19:38:18.784 8770 884 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 212\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 687\ncardnumber: 1083\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-385\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.36.70 3c7a1707-d0b5-4d55-95ce-400373b2719e 2019-05-28 19:38:18.806542 8771 155 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 10 \N 189.186.36.70 3c7a1707-d0b5-4d55-95ce-400373b2719e 2019-05-28 19:38:18.832891 8772 688 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 212\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-05-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-386\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 8736e3a0-065a-4857-afed-95c502abf103 2019-05-28 19:38:56.361664 8773 155 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 11 \N 189.186.36.70 8736e3a0-065a-4857-afed-95c502abf103 2019-05-28 19:38:56.395692 8774 688 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 0e107fe6-cf89-4b09-87de-28e1f8f0c966 2019-05-28 19:39:10.243927 8775 885 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 212\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 688\ncardnumber: 1083\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-386\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-386 189.186.36.70 0e107fe6-cf89-4b09-87de-28e1f8f0c966 2019-05-28 19:39:10.268621 8776 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-26 20:17:01.201025000 Z\n- &1 2019-05-26 21:04:17.458836000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-28 20:16:54.271750055 Z\nsign_in_count:\n- 204\n- 205\n 410 \N 189.186.36.70 469af06c-a09f-4fa3-af5b-8f47c77b2114 2019-05-28 20:16:54.277824 8777 12 User \N \N 12 User \N update ---\nunique_session_id:\n- QYiHmJXhFSFaZvE-1Cc-\n- cr3v2sSFfM7BqCLqrxQP\n 411 \N 189.186.36.70 469af06c-a09f-4fa3-af5b-8f47c77b2114 2019-05-28 20:16:54.292951 8778 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-28 16:15:54.230993000 Z\n- &1 2019-05-28 16:51:32.369042000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-28 20:18:19.868674392 Z\nsign_in_count:\n- 334\n- 335\n 670 \N 189.186.36.70 90db66c2-2f7c-4c8a-8ce7-e30d163fb488 2019-05-28 20:18:19.874318 8779 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 8CqQscsX6yq_q3wfdqCT\n- SJszsHHzbJsjMH18QaPf\n 671 \N 189.186.36.70 90db66c2-2f7c-4c8a-8ce7-e30d163fb488 2019-05-28 20:18:19.887201 8780 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-28 17:32:55.790662000 Z\n- &1 2019-05-28 19:15:06.831163000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-28 20:23:25.764080256 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938099\n mask_addr: 4294967295\nsign_in_count:\n- 251\n- 252\n 504 \N 200.68.150.51 950a82a7-5508-48b2-92b6-94a6bd175f67 2019-05-28 20:23:25.771264 8781 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qp4KsJHPTBd3H3f1WdK-\n- PLSWQcHqog3Je3zfEjqh\n 505 \N 200.68.150.51 950a82a7-5508-48b2-92b6-94a6bd175f67 2019-05-28 20:23:25.785888 8782 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-26 21:04:17.458836000 Z\n- &1 2019-05-28 20:16:54.271750000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-28 23:44:40.875136388 Z\nsign_in_count:\n- 205\n- 206\n 412 \N 189.186.36.70 7104a9c7-769c-4977-8674-ffd38f17c103 2019-05-28 23:44:40.884918 8783 12 User \N \N 12 User \N update ---\nunique_session_id:\n- cr3v2sSFfM7BqCLqrxQP\n- VQJ7uMUzUjB9s2nR1foZ\n 413 \N 189.186.36.70 7104a9c7-769c-4977-8674-ffd38f17c103 2019-05-28 23:44:40.906465 8784 689 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 212\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-05-28\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-387\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 f3a3a2cb-0beb-44b7-8f75-c1cc97b64089 2019-05-28 23:46:45.49572 8785 636 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.36.70 f3a3a2cb-0beb-44b7-8f75-c1cc97b64089 2019-05-28 23:46:45.543083 8787 886 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 212\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.489E3\nmove_type: '1'\nsale_id: 689\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-387\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-387 189.186.36.70 88055e58-211b-4db7-860f-ddd2d77b4eb3 2019-05-28 23:46:57.862695 8788 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-28 16:51:32.369042000 Z\n- &1 2019-05-28 20:18:19.868674000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-29 00:20:00.977987851 Z\nsign_in_count:\n- 335\n- 336\n 672 \N 189.186.36.70 fdf2e61d-1bfa-4e40-aa8f-ef92f5b2277c 2019-05-29 00:20:00.985162 8789 3 User \N \N 3 User \N update ---\nunique_session_id:\n- SJszsHHzbJsjMH18QaPf\n- "-KmX1CthveVPBvWKTRy_"\n 673 \N 189.186.36.70 fdf2e61d-1bfa-4e40-aa8f-ef92f5b2277c 2019-05-29 00:20:01.004354 8790 690 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 211\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-05-28\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-301\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 07d06d1f-c3bf-4255-af03-bed0014a8300 2019-05-29 00:20:47.817781 8791 665 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.36.70 07d06d1f-c3bf-4255-af03-bed0014a8300 2019-05-29 00:20:47.852733 8792 690 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 e42f6312-db29-4a2f-a335-27f675f000dd 2019-05-29 00:20:56.815875 8793 887 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 211\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 690\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-301\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.401E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-301 189.186.36.70 e42f6312-db29-4a2f-a335-27f675f000dd 2019-05-29 00:20:56.847897 8794 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-28 20:18:19.868674000 Z\n- &1 2019-05-29 00:20:00.977987000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-29 00:31:49.776062241 Z\nsign_in_count:\n- 336\n- 337\n 674 \N 189.186.36.70 f98d6cb8-37da-43cb-a61a-bdd3f4d000a4 2019-05-29 00:31:49.803529 8795 3 User \N \N 3 User \N update ---\nunique_session_id:\n- "-KmX1CthveVPBvWKTRy_"\n- SygCQZY8XsxBR2aFEzUQ\n 675 \N 189.186.36.70 f98d6cb8-37da-43cb-a61a-bdd3f4d000a4 2019-05-29 00:31:49.829794 8796 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-28 20:16:54.271750000 Z\n- &1 2019-05-28 23:44:40.875136000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-29 00:32:07.156392420 Z\nsign_in_count:\n- 206\n- 207\n 414 \N 189.186.36.70 8b5b1da8-052f-49c9-b5e0-e1b1afd632b8 2019-05-29 00:32:07.164119 8797 12 User \N \N 12 User \N update ---\nunique_session_id:\n- VQJ7uMUzUjB9s2nR1foZ\n- VFugMhnf9Hcfg6sVtyVo\n 415 \N 189.186.36.70 8b5b1da8-052f-49c9-b5e0-e1b1afd632b8 2019-05-29 00:32:07.181423 8798 888 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 212\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 607\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-338 189.186.36.70 aeaa1eb9-53c6-4fce-b367-08d3dcc83cb7 2019-05-29 00:53:15.780439 8799 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-29 00:20:00.977987000 Z\n- &1 2019-05-29 00:31:49.776062000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-29 00:58:30.054122220 Z\nsign_in_count:\n- 337\n- 338\n 676 \N 189.186.36.70 c50b8e20-bf22-4e72-b41c-2d64945c10c9 2019-05-29 00:58:30.066334 8800 3 User \N \N 3 User \N update ---\nunique_session_id:\n- SygCQZY8XsxBR2aFEzUQ\n- MGfzBJfH-5XAyPCmWubS\n 677 \N 189.186.36.70 c50b8e20-bf22-4e72-b41c-2d64945c10c9 2019-05-29 00:58:30.093243 8801 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-28 19:15:06.831163000 Z\n- &1 2019-05-28 20:23:25.764080000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-29 01:24:41.737589669 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938099\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938099\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097291\n mask_addr: 4294967295\nsign_in_count:\n- 252\n- 253\n 506 \N 189.186.53.203 ed164cf3-d7f1-4315-a350-af511e8b25f2 2019-05-29 01:24:41.747266 8802 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PLSWQcHqog3Je3zfEjqh\n- AxDzW-dvEd4HTDkmXEtZ\n 507 \N 189.186.53.203 ed164cf3-d7f1-4315-a350-af511e8b25f2 2019-05-29 01:24:41.769297 8803 691 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 212\namount: !ruby/object:BigDecimal 18:0.10681E4\ntax: !ruby/object:BigDecimal 18:0.1709E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1239E4\nstatus: 0\ndate_sale: 2019-05-28\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-388\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 b186f828-f15a-441c-8cc1-8db6849a9d3f 2019-05-29 01:36:53.534952 8804 250 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.36.70 b186f828-f15a-441c-8cc1-8db6849a9d3f 2019-05-29 01:36:53.572026 8805 691 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 6ebe90e0-8693-4204-8bfd-7eb92f491faf 2019-05-29 01:38:10.895299 8806 889 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 212\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1239E4\nmove_type: '1'\nsale_id: 691\ncardnumber: 7578\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-388\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-388 189.186.36.70 6ebe90e0-8693-4204-8bfd-7eb92f491faf 2019-05-29 01:38:10.922501 8807 209 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 211\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1599E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.776E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2276E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.36.70 83ef8891-592d-4fe9-b3af-07b9e43d7019 2019-05-29 01:54:53.402901 8808 211 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 83ef8891-592d-4fe9-b3af-07b9e43d7019 2019-05-29 01:54:53.426875 8839 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 95oBdzVUPVgeyoFtr1mh\n- G81LgLSKYEyqHxpcUSig\n 282 \N 189.186.36.70 c8806904-3629-4dbc-81fa-b7acbd9e9703 2019-05-30 16:36:32.199036 8809 210 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 212\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3526E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.17E4\ncash_fund: !ruby/object:BigDecimal 18:0.752E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2452E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.36.70 3ca151a5-e6ca-450f-ba82-40de53e828c5 2019-05-29 02:02:17.291692 8810 212 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 3ca151a5-e6ca-450f-ba82-40de53e828c5 2019-05-29 02:02:17.312811 8811 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-27 17:10:08.019413000 Z\n- &1 2019-05-28 15:41:55.034552000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-29 15:49:38.672092158 Z\nsign_in_count:\n- 137\n- 138\n 279 \N 189.186.36.70 7f5c0441-f2a6-4bf6-9078-6844f388788a 2019-05-29 15:49:38.704428 8812 2 User \N \N 2 User \N update ---\nunique_session_id:\n- hMXf8PgBuMExAZEG7RVs\n- 95oBdzVUPVgeyoFtr1mh\n 280 \N 189.186.36.70 7f5c0441-f2a6-4bf6-9078-6844f388788a 2019-05-29 15:49:38.730327 8813 213 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.752E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 752.0 189.186.36.70 891476b0-c262-4451-a0d1-82e875de9fb8 2019-05-29 15:51:13.483218 8814 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-29 00:31:49.776062000 Z\n- &1 2019-05-29 00:58:30.054122000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-29 15:55:16.081591485 Z\nsign_in_count:\n- 338\n- 339\n 678 \N 189.186.36.70 a7e23a48-ef2c-428d-bc2b-d1ea24a6badd 2019-05-29 15:55:16.09154 8815 3 User \N \N 3 User \N update ---\nunique_session_id:\n- MGfzBJfH-5XAyPCmWubS\n- xRg41RaU422rFT6B2sxE\n 679 \N 189.186.36.70 a7e23a48-ef2c-428d-bc2b-d1ea24a6badd 2019-05-29 15:55:16.112691 8816 214 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.776E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 776.0 189.186.36.70 231225ee-fc90-41bb-bc99-d98fa5734c3b 2019-05-29 15:56:05.049902 8817 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-29 00:58:30.054122000 Z\n- &1 2019-05-29 15:55:16.081591000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-29 16:43:40.559014543 Z\nsign_in_count:\n- 339\n- 340\n 680 \N 189.186.36.70 c50950f6-016c-46ae-9a4d-d58dd180eafc 2019-05-29 16:43:40.56833 8818 3 User \N \N 3 User \N update ---\nunique_session_id:\n- xRg41RaU422rFT6B2sxE\n- sjVWNH7fvg-nvy8W7ciW\n 681 \N 189.186.36.70 c50950f6-016c-46ae-9a4d-d58dd180eafc 2019-05-29 16:43:40.586584 8819 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-28 23:44:40.875136000 Z\n- &1 2019-05-29 00:32:07.156392000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-29 18:51:15.683039592 Z\nsign_in_count:\n- 207\n- 208\n 416 \N 189.186.36.70 5c4199d2-191c-4e36-8144-296484956016 2019-05-29 18:51:15.689345 8820 12 User \N \N 12 User \N update ---\nunique_session_id:\n- VFugMhnf9Hcfg6sVtyVo\n- zRcSBLh9xBxuTFZNqZv-\n 417 \N 189.186.36.70 5c4199d2-191c-4e36-8144-296484956016 2019-05-29 18:51:15.703955 8821 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-28 20:23:25.764080000 Z\n- &1 2019-05-29 01:24:41.737589000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-29 19:54:59.510948602 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938099\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097291\n mask_addr: 4294967295\nsign_in_count:\n- 253\n- 254\n 508 \N 189.186.53.203 e9f85f22-2be6-4882-b663-fcc8d0b00bf1 2019-05-29 19:54:59.518102 8822 4 User \N \N 4 User \N update ---\nunique_session_id:\n- AxDzW-dvEd4HTDkmXEtZ\n- znSb6G21F3CNz_chzS3k\n 509 \N 189.186.53.203 e9f85f22-2be6-4882-b663-fcc8d0b00bf1 2019-05-29 19:54:59.537537 8823 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-29 15:55:16.081591000 Z\n- &1 2019-05-29 16:43:40.559014000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-29 21:18:32.436414352 Z\nsign_in_count:\n- 340\n- 341\n 682 \N 189.186.36.70 9f244a90-6cff-49bb-b74e-e05dc5db4a02 2019-05-29 21:18:32.442319 8824 3 User \N \N 3 User \N update ---\nunique_session_id:\n- sjVWNH7fvg-nvy8W7ciW\n- 69BHsGQoyeJY7CKkLWwa\n 683 \N 189.186.36.70 9f244a90-6cff-49bb-b74e-e05dc5db4a02 2019-05-29 21:18:32.456348 8825 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-29 01:24:41.737589000 Z\n- &1 2019-05-29 19:54:59.510948000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-29 23:15:51.001808505 Z\nsign_in_count:\n- 254\n- 255\n 510 \N 189.186.53.203 1df10d8e-f645-40d5-8c7b-c1e7c5ce7366 2019-05-29 23:15:51.008424 8826 4 User \N \N 4 User \N update ---\nunique_session_id:\n- znSb6G21F3CNz_chzS3k\n- bsXgpkaNsgHGfx_pVMFm\n 511 \N 189.186.53.203 1df10d8e-f645-40d5-8c7b-c1e7c5ce7366 2019-05-29 23:15:51.024521 8827 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-29 16:43:40.559014000 Z\n- &1 2019-05-29 21:18:32.436414000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-30 01:47:10.998087968 Z\nsign_in_count:\n- 341\n- 342\n 684 \N 189.186.36.70 c6df280f-ead3-4fa3-8c4a-87541d7c2d75 2019-05-30 01:47:11.00708 8828 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 69BHsGQoyeJY7CKkLWwa\n- S_4-V63hTS6qaEV1xg1c\n 685 \N 189.186.36.70 c6df280f-ead3-4fa3-8c4a-87541d7c2d75 2019-05-30 01:47:11.03775 8829 211 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 214\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.776E3\nphysical_cash: !ruby/object:BigDecimal 18:0.776E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.36.70 16400d16-d531-4326-b347-b3facadbb5b6 2019-05-30 01:47:57.057745 8830 214 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 16400d16-d531-4326-b347-b3facadbb5b6 2019-05-30 01:47:57.075066 8831 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-29 00:32:07.156392000 Z\n- &1 2019-05-29 18:51:15.683039000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-30 01:48:30.114640792 Z\nsign_in_count:\n- 208\n- 209\n 418 \N 189.186.36.70 f529f39d-4b40-48a9-8483-43d1db88eb80 2019-05-30 01:48:30.122393 8832 12 User \N \N 12 User \N update ---\nunique_session_id:\n- zRcSBLh9xBxuTFZNqZv-\n- bpLfPaxGA_xqaDDYx5r6\n 419 \N 189.186.36.70 f529f39d-4b40-48a9-8483-43d1db88eb80 2019-05-30 01:48:30.140688 8833 212 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 213\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.752E3\nphysical_cash: !ruby/object:BigDecimal 18:0.752E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.36.70 87499c8a-d862-4456-8c27-3f77a2cfefe9 2019-05-30 01:57:42.105921 8834 213 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 87499c8a-d862-4456-8c27-3f77a2cfefe9 2019-05-30 01:57:42.125356 8835 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-29 21:18:32.436414000 Z\n- &1 2019-05-30 01:47:10.998087000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-30 16:07:30.201605964 Z\nsign_in_count:\n- 342\n- 343\n 686 \N 189.186.36.70 fcbc660c-9bce-4963-9b32-1c828059b5d9 2019-05-30 16:07:30.234107 8836 3 User \N \N 3 User \N update ---\nunique_session_id:\n- S_4-V63hTS6qaEV1xg1c\n- bfH7RUAYfeYRXHy2N5it\n 687 \N 189.186.36.70 fcbc660c-9bce-4963-9b32-1c828059b5d9 2019-05-30 16:07:30.261233 8840 216 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.752E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 752.0 189.186.36.70 e6e4ccee-400d-4e7f-9853-f9cefa7c622b 2019-05-30 16:39:15.755001 8841 692 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 215\namount: !ruby/object:BigDecimal 18:0.669E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-05-30\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-302\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 c88c9c38-73cb-46ab-be48-9b4584528740 2019-05-30 19:35:57.023211 8842 650 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.36.70 c88c9c38-73cb-46ab-be48-9b4584528740 2019-05-30 19:35:57.108088 8843 692 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 e7d7c098-efa2-45ef-9843-513cd18736aa 2019-05-30 19:36:00.833999 8844 890 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 215\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.669E3\nmove_type: '1'\nsale_id: 692\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-302\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.331E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-302 189.186.36.70 e7d7c098-efa2-45ef-9843-513cd18736aa 2019-05-30 19:36:00.858334 8845 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-29 18:51:15.683039000 Z\n- &1 2019-05-30 01:48:30.114640000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-30 19:40:30.457538867 Z\nsign_in_count:\n- 209\n- 210\n 420 \N 189.186.36.70 7b061018-5846-4f1f-95e4-0ff28dc15ba7 2019-05-30 19:40:30.466199 8846 12 User \N \N 12 User \N update ---\nunique_session_id:\n- bpLfPaxGA_xqaDDYx5r6\n- qfW7W3EQ4-N3FRuLpf5m\n 421 \N 189.186.36.70 7b061018-5846-4f1f-95e4-0ff28dc15ba7 2019-05-30 19:40:30.486946 8847 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-29 19:54:59.510948000 Z\n- &1 2019-05-29 23:15:51.001808000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-30 20:01:41.539150309 Z\nsign_in_count:\n- 255\n- 256\n 512 \N 189.186.53.203 b95a0e33-ee7a-450d-bd66-5d2f727c6ec2 2019-05-30 20:01:41.545727 8848 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bsXgpkaNsgHGfx_pVMFm\n- U-tVXKqmVhHdRQod7ZAU\n 513 \N 189.186.53.203 b95a0e33-ee7a-450d-bd66-5d2f727c6ec2 2019-05-30 20:01:41.560901 8849 693 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 216\namount: !ruby/object:BigDecimal 18:0.142155E4\ntax: !ruby/object:BigDecimal 18:0.22745E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1649E4\nstatus: 0\ndate_sale: 2019-05-30\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-389\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 210f845d-7678-466b-b4b5-3ca8b5f9153f 2019-05-30 21:09:22.495575 8850 227 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.36.70 210f845d-7678-466b-b4b5-3ca8b5f9153f 2019-05-30 21:09:22.533021 8851 247 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.36.70 210f845d-7678-466b-b4b5-3ca8b5f9153f 2019-05-30 21:09:22.561693 8852 693 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 a6c6a369-6f44-49d8-b3b5-0e9c4172f494 2019-05-30 21:10:51.16181 8853 891 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 216\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.1649E4\nmove_type: '1'\nsale_id: 693\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-389\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: 0000JP99\ncustomer_account: '1089106392922'\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-389 189.186.36.70 a6c6a369-6f44-49d8-b3b5-0e9c4172f494 2019-05-30 21:10:51.184243 8854 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-30 01:48:30.114640000 Z\n- &1 2019-05-30 19:40:30.457538000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-30 21:48:36.357155715 Z\nsign_in_count:\n- 210\n- 211\n 422 \N 189.186.36.70 8b3e1266-e4e4-489a-aaf4-bb7cc07a0790 2019-05-30 21:48:36.362843 8855 12 User \N \N 12 User \N update ---\nunique_session_id:\n- qfW7W3EQ4-N3FRuLpf5m\n- vW6MVt4eFzfLw3gtS-kU\n 423 \N 189.186.36.70 8b3e1266-e4e4-489a-aaf4-bb7cc07a0790 2019-05-30 21:48:36.376397 8856 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-30 01:47:10.998087000 Z\n- &1 2019-05-30 16:07:30.201605000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-30 21:49:16.752778734 Z\nsign_in_count:\n- 343\n- 344\n 688 \N 189.186.36.70 9f00125a-1c57-4c93-89bf-c97599a592e5 2019-05-30 21:49:16.758594 8857 3 User \N \N 3 User \N update ---\nunique_session_id:\n- bfH7RUAYfeYRXHy2N5it\n- prTWNzcspxhpXa2Lu2xc\n 689 \N 189.186.36.70 9f00125a-1c57-4c93-89bf-c97599a592e5 2019-05-30 21:49:16.771238 8858 84 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 216\nquantity: !ruby/object:BigDecimal 18:0.4E3\nstatus: 1\nobservations: ADELANTO ROCIO\nexpense_date: 2019-05-30\nexpense_code: PV1-E-76\n 1 Egreso por 400.0 registrado 189.186.36.70 c065fc15-1f1d-4944-8ade-bb6e707a48ac 2019-05-30 22:05:54.997498 8859 892 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 216\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 84\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 c065fc15-1f1d-4944-8ade-bb6e707a48ac 2019-05-30 22:05:55.028537 8860 85 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 215\nquantity: !ruby/object:BigDecimal 18:0.1E3\nstatus: 1\nobservations: ADELANTO YARETZI\nexpense_date: 2019-05-30\nexpense_code: PV2-E-9\n 1 Egreso por 100.0 registrado 189.186.36.70 04e8d2c7-9868-4981-94a3-86ff75d20e87 2019-05-30 22:10:50.14416 8861 893 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 215\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 85\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 04e8d2c7-9868-4981-94a3-86ff75d20e87 2019-05-30 22:10:50.187498 8862 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-30 19:40:30.457538000 Z\n- &1 2019-05-30 21:48:36.357155000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-30 22:11:25.811777456 Z\nsign_in_count:\n- 211\n- 212\n 424 \N 189.186.36.70 788e9d10-ec7a-40dd-b9e2-90851b53ecb5 2019-05-30 22:11:25.818455 8863 12 User \N \N 12 User \N update ---\nunique_session_id:\n- vW6MVt4eFzfLw3gtS-kU\n- rzGbpCEjwjPE9mue1bPj\n 425 \N 189.186.36.70 788e9d10-ec7a-40dd-b9e2-90851b53ecb5 2019-05-30 22:11:25.835196 8864 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-30 16:07:30.201605000 Z\n- &1 2019-05-30 21:49:16.752778000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-30 22:11:41.094196099 Z\nsign_in_count:\n- 344\n- 345\n 690 \N 189.186.36.70 d877bdb8-c90a-483d-8a89-dd191f19a9ff 2019-05-30 22:11:41.102632 8865 3 User \N \N 3 User \N update ---\nunique_session_id:\n- prTWNzcspxhpXa2Lu2xc\n- 7Vsz4JLV7ddeqyppZFUA\n 691 \N 189.186.36.70 d877bdb8-c90a-483d-8a89-dd191f19a9ff 2019-05-30 22:11:41.121593 8866 894 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 216\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 540\ncardnumber: 8372\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-298 189.186.36.70 118bdb81-9969-4dd7-88e5-dee911560080 2019-05-30 22:35:16.669944 8867 540 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.36.70 5b54fb26-b318-48fe-8460-72ba06edd465 2019-05-30 22:35:18.44492 8868 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-30 21:48:36.357155000 Z\n- &1 2019-05-30 22:11:25.811777000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-30 23:18:53.350278062 Z\nsign_in_count:\n- 212\n- 213\n 426 \N 189.186.36.70 e2b54d32-eb15-4f52-8a2a-24faffda00aa 2019-05-30 23:18:53.356053 8869 12 User \N \N 12 User \N update ---\nunique_session_id:\n- rzGbpCEjwjPE9mue1bPj\n- 4juegZsEi_-PRiayR-dw\n 427 \N 189.186.36.70 e2b54d32-eb15-4f52-8a2a-24faffda00aa 2019-05-30 23:18:53.370231 8870 694 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 216\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-05-30\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-390\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 68a3f7f0-b0e5-4530-98ab-13cdd869dc1e 2019-05-31 00:22:41.781068 8871 659 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.36.70 68a3f7f0-b0e5-4530-98ab-13cdd869dc1e 2019-05-31 00:22:41.863892 8872 694 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 a1a305ad-0e45-4309-b4c3-d6cf7165565e 2019-05-31 00:22:55.374005 8873 895 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 216\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.869E3\nmove_type: '1'\nsale_id: 694\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-390\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.131E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-390 189.186.36.70 a1a305ad-0e45-4309-b4c3-d6cf7165565e 2019-05-31 00:22:55.406217 8874 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-30 21:49:16.752778000 Z\n- &1 2019-05-30 22:11:41.094196000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-31 00:39:03.797333682 Z\nsign_in_count:\n- 345\n- 346\n 692 \N 189.186.36.70 359887a9-8783-4e7c-94c7-85cdd3720dd2 2019-05-31 00:39:03.808985 8875 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 7Vsz4JLV7ddeqyppZFUA\n- ZyrWyQqzJfahsNE-shRi\n 693 \N 189.186.36.70 359887a9-8783-4e7c-94c7-85cdd3720dd2 2019-05-31 00:39:03.832774 8876 896 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 215\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 545\ncardnumber: 6515\npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-242 189.186.36.70 22005e0d-8444-4340-a23d-8a15658dbb1c 2019-05-31 00:40:52.558708 8877 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-30 22:11:25.811777000 Z\n- &1 2019-05-30 23:18:53.350278000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-31 00:45:08.365221919 Z\nsign_in_count:\n- 213\n- 214\n 428 \N 189.186.36.70 dcd817bb-a00f-423b-ae43-ff11dae12d4d 2019-05-31 00:45:08.371609 8878 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 4juegZsEi_-PRiayR-dw\n- c8y4T4JKZKnEjMeQgG46\n 429 \N 189.186.36.70 dcd817bb-a00f-423b-ae43-ff11dae12d4d 2019-05-31 00:45:08.387582 8879 118 Customer \N \N 2 User \N create ---\nnick_name: Aurrora Peña\nphone: "(667) 317-357_"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente Aurrora Peña fue registrado. 189.186.36.70 2343d618-ee2f-4c18-a220-728ce0390f32 2019-05-31 00:46:20.467032 8880 695 Sale \N \N 2 User \N create ---\ncustomer_id: 118\nuser_id: 2\nopen_cash_register_id: 216\namount: !ruby/object:BigDecimal 18:0.120603E4\ntax: !ruby/object:BigDecimal 18:0.19296E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.139899E4\nstatus: 0\ndate_sale: 2019-05-30\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-391\nexpiration_date: 2019-07-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 a938fdb4-b4f2-4f19-add8-14e757192688 2019-05-31 00:46:53.743623 8881 249 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.36.70 a938fdb4-b4f2-4f19-add8-14e757192688 2019-05-31 00:46:53.77979 8882 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-30 22:11:41.094196000 Z\n- &1 2019-05-31 00:39:03.797333000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-31 00:46:57.005276756 Z\nsign_in_count:\n- 346\n- 347\n 694 \N 189.186.36.70 e563e4ab-0b41-4bcd-b8dc-f2cf5b87239b 2019-05-31 00:46:57.012339 8883 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ZyrWyQqzJfahsNE-shRi\n- _J2M9ueANx1E4C14HdTC\n 695 \N 189.186.36.70 e563e4ab-0b41-4bcd-b8dc-f2cf5b87239b 2019-05-31 00:46:57.033637 8884 897 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 216\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.28E3\nmove_type: '1'\nsale_id: 695\ncardnumber: 6515\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-391\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-391 189.186.36.70 57367f6d-3670-48d5-bc7b-7391f6e35e63 2019-05-31 00:47:43.471642 8885 898 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 216\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 695\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-391\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-391 189.186.36.70 f84df068-da97-4a55-ad1a-d577e3df6496 2019-05-31 00:48:00.28698 8886 897 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 216\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.28E3\nmove_type: '1'\nsale_id: 695\ncardnumber: 6515\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-391\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.36.70 a99692b3-8988-41f8-87b2-ab133aa52ff5 2019-05-31 00:49:13.477294 8954 577 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.36.70 b246606b-884b-4b6c-80e4-31d165d5a6f0 2019-05-31 23:32:31.340468 8887 898 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 216\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 695\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-391\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.36.70 4aac62e2-76d4-454d-99ff-f2b6aec66e10 2019-05-31 00:49:47.946171 8888 899 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 216\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 695\ncardnumber: 6515\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-391\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-391 189.186.36.70 87e0c91a-3ace-4ec2-a042-8befbf6c59ae 2019-05-31 00:50:20.590604 8889 899 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 216\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 695\ncardnumber: 6515\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-391\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.36.70 9e5ec7d1-397c-4d36-af9c-975437d2d293 2019-05-31 00:50:35.626444 8890 900 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 216\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 695\ncardnumber: 6515\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-391\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-391 189.186.36.70 9be4e5ab-6c60-4b0e-ac78-39a395fb6ef1 2019-05-31 00:50:57.780225 8891 900 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 216\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 695\ncardnumber: 6515\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-391\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.36.70 034f3c99-d910-4f2a-b581-dc067f244112 2019-05-31 00:51:16.962565 8892 695 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-391 cancelada. 189.186.36.70 87b90455-4f5f-4f97-abf3-0797310d7fae 2019-05-31 00:51:19.765954 8893 249 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.36.70 87b90455-4f5f-4f97-abf3-0797310d7fae 2019-05-31 00:51:19.802112 8894 696 Sale \N \N 2 User \N create ---\ncustomer_id: 118\nuser_id: 2\nopen_cash_register_id: 216\namount: !ruby/object:BigDecimal 18:0.120603E4\ntax: !ruby/object:BigDecimal 18:0.19296E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.139899E4\nstatus: 0\ndate_sale: 2019-05-30\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-392\nexpiration_date: 2019-07-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 a2ed37a1-40d7-4e70-be0c-a99d1ef17b1e 2019-05-31 00:52:18.859334 8895 249 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.36.70 a2ed37a1-40d7-4e70-be0c-a99d1ef17b1e 2019-05-31 00:52:18.888478 8896 901 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 216\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.28E3\nmove_type: '1'\nsale_id: 696\ncardnumber: 6515\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-392\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-392 189.186.36.70 b909083f-5777-44f5-8932-58c372f3647a 2019-05-31 00:52:28.853288 8897 696 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.36.70 4048b253-e63e-431c-8835-5b663f85e0c2 2019-05-31 00:52:30.617654 8898 902 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 216\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 696\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-392 189.186.36.70 a8a59571-d584-4ef1-a4d7-eea43504636c 2019-05-31 00:53:19.060201 8899 903 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 216\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.2E2\nmove_type: '1'\nsale_id: 696\ncardnumber: 6515\npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-392 189.186.36.70 85ac39d0-ef57-4224-bf3a-a2f20f0f49c9 2019-05-31 00:55:38.119664 8900 119 Customer \N \N 2 User \N create ---\nnick_name: ARACELI DIARTE\nphone: "(667) 175-7207"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ARACELI DIARTE fue registrado. 189.186.36.70 003022fc-7761-46ae-b97b-12ee634c0a98 2019-05-31 01:25:05.728513 8901 697 Sale \N \N 2 User \N create ---\ncustomer_id: 119\nuser_id: 2\nopen_cash_register_id: 216\namount: !ruby/object:BigDecimal 18:0.195517E4\ntax: !ruby/object:BigDecimal 18:0.31282E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.226799E4\nstatus: 0\ndate_sale: 2019-05-30\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-393\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 1fbfb66e-7e09-49bb-b423-7c0371061c68 2019-05-31 01:25:36.797456 8902 249 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.36.70 1fbfb66e-7e09-49bb-b423-7c0371061c68 2019-05-31 01:25:36.840254 8903 182 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.36.70 1fbfb66e-7e09-49bb-b423-7c0371061c68 2019-05-31 01:25:36.879581 8904 697 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-393 cancelada. 189.186.36.70 7dbd3d9b-c1b7-4fd4-bf20-8fca7b0a4182 2019-05-31 01:25:49.555138 8905 182 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.36.70 7dbd3d9b-c1b7-4fd4-bf20-8fca7b0a4182 2019-05-31 01:25:49.610478 8906 249 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.36.70 7dbd3d9b-c1b7-4fd4-bf20-8fca7b0a4182 2019-05-31 01:25:49.644776 8955 703 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 257d5306-4245-4bf7-964e-9bd643ae7f1a 2019-05-31 23:33:23.277236 19516 868 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000868'\n 2 \N 189.186.180.166 fa2c558e-548a-4352-adb4-7b7e4a450679 2019-10-29 01:25:10.603762 8907 698 Sale \N \N 2 User \N create ---\ncustomer_id: 119\nuser_id: 2\nopen_cash_register_id: 216\namount: !ruby/object:BigDecimal 18:0.195517E4\ntax: !ruby/object:BigDecimal 18:0.31282E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.226799E4\nstatus: 0\ndate_sale: 2019-05-30\nsaletype: 2\nseller_id: 3\nsale_code: PV1-V-394\nexpiration_date: 2019-07-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 40e3d00f-c4ae-4850-9ab1-0883129f83e1 2019-05-31 01:26:18.397077 8908 182 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.36.70 40e3d00f-c4ae-4850-9ab1-0883129f83e1 2019-05-31 01:26:18.425155 8909 249 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.36.70 40e3d00f-c4ae-4850-9ab1-0883129f83e1 2019-05-31 01:26:18.450391 8910 904 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 216\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.454E3\nmove_type: '1'\nsale_id: 698\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-394\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.46E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-394 189.186.36.70 9ec35ad5-dc71-4ec1-8e19-b4f228270c6e 2019-05-31 01:26:33.751193 8911 904 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 216\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.454E3\nmove_type: '1'\nsale_id: 698\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-394\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.46E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.36.70 a931c061-9818-415a-95fa-ca1265da570e 2019-05-31 01:26:38.217583 8912 905 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 216\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 698\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-394\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-394 189.186.36.70 849cccdb-a3f1-4674-85de-c0e9c047af78 2019-05-31 01:26:50.218614 8913 698 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.36.70 55adcf4f-4602-4c2b-8241-761af6594516 2019-05-31 01:26:51.64533 8914 213 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 215\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.969E3\namount_out: !ruby/object:BigDecimal 18:0.1E3\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.845E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1345E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.36.70 eb47c0c3-7540-447c-ae0a-890d7501a230 2019-05-31 01:58:54.227998 8915 215 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 eb47c0c3-7540-447c-ae0a-890d7501a230 2019-05-31 01:58:54.247307 8916 214 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 216\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4017E4\namount_out: !ruby/object:BigDecimal 18:0.4E3\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.411E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1911E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.36.70 851a6418-62a8-4531-a462-325af3e89902 2019-05-31 02:03:42.419349 8917 216 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 851a6418-62a8-4531-a462-325af3e89902 2019-05-31 02:03:42.435989 8918 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-29 15:49:38.672092000 Z\n- &1 2019-05-30 16:36:32.142548000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-31 15:56:36.188053531 Z\nsign_in_count:\n- 139\n- 140\n 283 \N 189.186.36.70 294da48c-2580-43c6-9c99-5b67cd9459b7 2019-05-31 15:56:36.222501 8919 2 User \N \N 2 User \N update ---\nunique_session_id:\n- G81LgLSKYEyqHxpcUSig\n- T8te87oBJJyjbMz5YsLe\n 284 \N 189.186.36.70 294da48c-2580-43c6-9c99-5b67cd9459b7 2019-05-31 15:56:36.248357 8920 217 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.411E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 411.0 189.186.36.70 4561a4a7-d9e6-4b1e-9dd4-83f23496e07d 2019-05-31 15:57:23.654401 8921 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-31 00:39:03.797333000 Z\n- &1 2019-05-31 00:46:57.005276000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-31 15:59:52.131024972 Z\nsign_in_count:\n- 347\n- 348\n 696 \N 189.186.36.70 64aa61c0-e9d6-4f5b-a196-232c18aace7b 2019-05-31 15:59:52.137454 8922 3 User \N \N 3 User \N update ---\nunique_session_id:\n- _J2M9ueANx1E4C14HdTC\n- x1DAhkXLMH7iBZC6a6dy\n 697 \N 189.186.36.70 64aa61c0-e9d6-4f5b-a196-232c18aace7b 2019-05-31 15:59:52.153777 8923 218 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.845E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 845.0 189.186.36.70 c00c13e7-54fd-4f2a-9dfa-667c15158090 2019-05-31 16:19:34.411047 8924 699 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 217\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-05-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-395\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 7596c8b6-22fe-4a44-8b3d-87357db3ecf6 2019-05-31 16:55:12.206868 8925 82 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.36.70 7596c8b6-22fe-4a44-8b3d-87357db3ecf6 2019-05-31 16:55:12.26019 8926 699 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 4d444588-1f6d-45ed-9dda-e1fe330c80b7 2019-05-31 16:55:47.655348 8927 906 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 217\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 699\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-395\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-395 189.186.36.70 4d444588-1f6d-45ed-9dda-e1fe330c80b7 2019-05-31 16:55:47.680857 8928 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-29 23:15:51.001808000 Z\n- &1 2019-05-30 20:01:41.539150000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-31 17:42:50.306045078 Z\nsign_in_count:\n- 256\n- 257\n 514 \N 189.186.53.203 3bfa2236-6d1b-4356-b363-18990d8da00d 2019-05-31 17:42:50.313422 8929 4 User \N \N 4 User \N update ---\nunique_session_id:\n- U-tVXKqmVhHdRQod7ZAU\n- 9jN5MFochNGGazi9Sz1H\n 515 \N 189.186.53.203 3bfa2236-6d1b-4356-b363-18990d8da00d 2019-05-31 17:42:50.330103 8930 120 Customer \N \N 2 User \N create ---\nnick_name: SOCORRO VEGA FLORES\nphone: "(667) 431-3005"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente SOCORRO VEGA FLORES fue registrado. 189.186.36.70 f92d3194-7a0f-4756-af25-312cee43f5bf 2019-05-31 19:02:36.613781 8931 700 Sale \N \N 2 User \N create ---\ncustomer_id: 120\nuser_id: 2\nopen_cash_register_id: 217\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-05-31\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-396\nexpiration_date: 2019-07-05\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 33eb53cb-8dea-456f-80b3-10e32df72809 2019-05-31 19:02:54.41824 8932 529 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.36.70 33eb53cb-8dea-456f-80b3-10e32df72809 2019-05-31 19:02:54.451241 8933 907 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 217\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 700\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-396\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-396 189.186.36.70 de958d88-2e9d-42a8-bcf0-3d3c39d98e2e 2019-05-31 19:03:01.447005 8934 700 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.36.70 0434cbca-a093-41d6-902c-cc930fc45a21 2019-05-31 19:03:03.835086 8935 701 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 217\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.569E3\ntotal: !ruby/object:BigDecimal 18:0.133E4\nstatus: 0\ndate_sale: 2019-05-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-397\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 4453db45-5388-4bba-a4d5-8125ece657b1 2019-05-31 19:40:08.614625 8936 585 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.36.70 4453db45-5388-4bba-a4d5-8125ece657b1 2019-05-31 19:40:08.642864 8937 701 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 28bb617a-4a36-4bc9-a4a6-db0f8fe8c9dc 2019-05-31 19:40:41.978358 8938 908 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 217\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.133E4\nmove_type: '1'\nsale_id: 701\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-397\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.133E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-397 189.186.36.70 28bb617a-4a36-4bc9-a4a6-db0f8fe8c9dc 2019-05-31 19:40:42.000517 8939 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-31 00:46:57.005276000 Z\n- &1 2019-05-31 15:59:52.131024000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-31 19:49:26.445668162 Z\nsign_in_count:\n- 348\n- 349\n 698 \N 189.186.36.70 e1b624bb-5d72-4848-839e-c16c56d3a21e 2019-05-31 19:49:26.454033 8940 3 User \N \N 3 User \N update ---\nunique_session_id:\n- x1DAhkXLMH7iBZC6a6dy\n- q_xL3Mt-B1u9693QVzhg\n 699 \N 189.186.36.70 e1b624bb-5d72-4848-839e-c16c56d3a21e 2019-05-31 19:49:26.474571 8941 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-30 16:36:32.142548000 Z\n- &1 2019-05-31 15:56:36.188053000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-31 20:08:15.809332379 Z\nsign_in_count:\n- 140\n- 141\n 285 \N 189.186.36.70 ccc55b50-02fb-40e0-8637-2a5721d26f3b 2019-05-31 20:08:15.815973 8942 2 User \N \N 2 User \N update ---\nunique_session_id:\n- T8te87oBJJyjbMz5YsLe\n- YJaLki8mW-BvxG_2bWyU\n 286 \N 189.186.36.70 ccc55b50-02fb-40e0-8637-2a5721d26f3b 2019-05-31 20:08:15.831184 8943 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-31 15:59:52.131024000 Z\n- &1 2019-05-31 19:49:26.445668000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-31 20:09:15.366294088 Z\nsign_in_count:\n- 349\n- 350\n 700 \N 189.186.36.70 6f20da19-4180-4023-89bb-b6da23f1135b 2019-05-31 20:09:15.372933 8944 3 User \N \N 3 User \N update ---\nunique_session_id:\n- q_xL3Mt-B1u9693QVzhg\n- dsFqR3ypTNBUrMj6j51a\n 701 \N 189.186.36.70 6f20da19-4180-4023-89bb-b6da23f1135b 2019-05-31 20:09:15.387485 8945 702 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 218\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-05-31\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-303\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 e079f77e-92bf-4a7e-b09a-9dd52d17e61f 2019-05-31 22:52:16.245537 8946 437 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 189.186.36.70 e079f77e-92bf-4a7e-b09a-9dd52d17e61f 2019-05-31 22:52:16.271943 8947 702 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 fc572acb-b0dc-4208-afa6-75c86721743c 2019-05-31 22:52:27.240921 8948 909 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 218\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 702\ncardnumber: 890\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-303\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-303 189.186.36.70 fc572acb-b0dc-4208-afa6-75c86721743c 2019-05-31 22:52:27.261535 8949 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-30 23:18:53.350278000 Z\n- &1 2019-05-31 00:45:08.365221000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-31 23:07:47.524238815 Z\nsign_in_count:\n- 214\n- 215\n 430 \N 189.186.36.70 cd6229f8-cc63-4d06-9604-1fe371653c5a 2019-05-31 23:07:47.529939 8950 12 User \N \N 12 User \N update ---\nunique_session_id:\n- c8y4T4JKZKnEjMeQgG46\n- nzNfLfuyXJFrEfTdmuLN\n 431 \N 189.186.36.70 cd6229f8-cc63-4d06-9604-1fe371653c5a 2019-05-31 23:07:47.54398 8951 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-31 19:49:26.445668000 Z\n- &1 2019-05-31 20:09:15.366294000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-05-31 23:31:29.516007076 Z\nsign_in_count:\n- 350\n- 351\n 702 \N 189.186.36.70 66056d78-bc3d-40a9-82e5-a24adae30184 2019-05-31 23:31:29.52236 8952 3 User \N \N 3 User \N update ---\nunique_session_id:\n- dsFqR3ypTNBUrMj6j51a\n- guo2oeuA9uZieqyydnWn\n 703 \N 189.186.36.70 66056d78-bc3d-40a9-82e5-a24adae30184 2019-05-31 23:31:29.536251 8953 703 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 218\namount: !ruby/object:BigDecimal 18:0.609E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.609E3\nstatus: 0\ndate_sale: 2019-05-31\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-304\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 b246606b-884b-4b6c-80e4-31d165d5a6f0 2019-05-31 23:32:31.312952 8981 705 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 647660d8-b6b2-491d-a924-c0b69fb1209f 2019-06-01 01:21:28.417534 8956 910 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 218\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.609E3\nmove_type: '1'\nsale_id: 703\ncardnumber: 2294\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-304\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-304 189.186.36.70 257d5306-4245-4bf7-964e-9bd643ae7f1a 2019-05-31 23:33:23.297986 8957 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-31 00:45:08.365221000 Z\n- &1 2019-05-31 23:07:47.524238000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-01 00:12:36.588881889 Z\nsign_in_count:\n- 215\n- 216\n 432 \N 189.186.36.70 15f158c4-7812-47e3-81c1-ae37b8f6ffe5 2019-06-01 00:12:36.61739 8958 12 User \N \N 12 User \N update ---\nunique_session_id:\n- nzNfLfuyXJFrEfTdmuLN\n- eFrWytecPMzFgD5fj9k4\n 433 \N 189.186.36.70 15f158c4-7812-47e3-81c1-ae37b8f6ffe5 2019-06-01 00:12:36.646536 8959 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-05-19 17:19:07.969199000 Z\n- &1 2019-05-23 01:54:15.861814000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-01 00:40:08.558347561 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\nsign_in_count:\n- 58\n- 59\n 118 \N 189.186.36.70 fbe86734-d095-4151-8b55-a316158d6fd4 2019-06-01 00:40:08.569056 8960 9 User \N \N 9 User \N update ---\nunique_session_id:\n- dBzyQ-2Y6tNXyUSZyx6x\n- yeDHDHK1ABJGjrzvxvTF\n 119 \N 189.186.36.70 fbe86734-d095-4151-8b55-a316158d6fd4 2019-06-01 00:40:08.591544 8961 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-05-27 17:29:35.442923000 Z\n- &1 2019-05-27 22:50:30.654254000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-01 00:43:53.127430091 Z\nsign_in_count:\n- 73\n- 74\n 148 \N 189.186.36.70 425c6f24-10fe-4613-87bb-3f5862eb4b37 2019-06-01 00:43:53.136285 8962 10 User \N \N 10 User \N update ---\nunique_session_id:\n- 5UzmkwamiszKoUqsuqhJ\n- yPe1qAihgjn1ZYsuR4sS\n 149 \N 189.186.36.70 425c6f24-10fe-4613-87bb-3f5862eb4b37 2019-06-01 00:43:53.171395 8963 911 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 34\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.3E4\nmove_type: '1'\nsale_id: 139\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4858152465545465'\n 1 \N 189.186.36.70 527779d4-bb66-4f40-bf25-1701e0f34980 2019-06-01 00:44:40.738442 8964 139 Sale \N \N 10 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.36.70 527779d4-bb66-4f40-bf25-1701e0f34980 2019-06-01 00:44:40.772151 8965 148 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.36.70 527779d4-bb66-4f40-bf25-1701e0f34980 2019-06-01 00:44:40.7953 8966 911 CashRegistersMove \N \N 10 User \N update ---\nopen_cash_register_id:\n- 34\n- 218\n 2 movimiento de efectivo por venta con folio PV1-V-78 189.186.36.70 527779d4-bb66-4f40-bf25-1701e0f34980 2019-06-01 00:44:40.811886 8967 704 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 218\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-05-31\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-305\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 c2eb45fb-23e4-428c-9867-651538af144e 2019-06-01 00:58:52.397305 8968 619 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.36.70 c2eb45fb-23e4-428c-9867-651538af144e 2019-06-01 00:58:52.439137 8969 704 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 4749cdaf-d836-49f6-b4a7-e69f1a4d0500 2019-06-01 01:01:14.217054 8970 912 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 218\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 704\ncardnumber: 3837\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-305\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-305 189.186.36.70 4749cdaf-d836-49f6-b4a7-e69f1a4d0500 2019-06-01 01:01:14.248459 8971 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-05-31 23:07:47.524238000 Z\n- &1 2019-06-01 00:12:36.588881000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-01 01:08:55.120707674 Z\nsign_in_count:\n- 216\n- 217\n 434 \N 189.186.36.70 4898741b-5d6e-44e5-baf4-c505e630b48e 2019-06-01 01:08:55.132161 8972 12 User \N \N 12 User \N update ---\nunique_session_id:\n- eFrWytecPMzFgD5fj9k4\n- NF-XLvx2DRiWmwFVxzhx\n 435 \N 189.186.36.70 4898741b-5d6e-44e5-baf4-c505e630b48e 2019-06-01 01:08:55.178574 8973 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-31 20:09:15.366294000 Z\n- &1 2019-05-31 23:31:29.516007000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-01 01:10:38.156122085 Z\nsign_in_count:\n- 351\n- 352\n 704 \N 189.186.36.70 57a6ca73-3a73-429d-be52-3b080e194b1c 2019-06-01 01:10:38.165935 8974 3 User \N \N 3 User \N update ---\nunique_session_id:\n- guo2oeuA9uZieqyydnWn\n- sZV-hAysVBw3Se_F5541\n 705 \N 189.186.36.70 57a6ca73-3a73-429d-be52-3b080e194b1c 2019-06-01 01:10:38.188381 8975 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 01:54:15.861814000 Z\n- &1 2019-06-01 00:40:08.558347000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-01 01:13:14.656057434 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\nsign_in_count:\n- 59\n- 60\n 120 \N 189.186.36.70 2efc9fac-8b4a-41d2-a05f-dce05ee53f7d 2019-06-01 01:13:14.663713 8976 9 User \N \N 9 User \N update ---\nunique_session_id:\n- yeDHDHK1ABJGjrzvxvTF\n- C7vwieApQsR6mfxMzMPh\n 121 \N 189.186.36.70 2efc9fac-8b4a-41d2-a05f-dce05ee53f7d 2019-06-01 01:13:14.680093 8977 913 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 217\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.609E3\nmove_type: '1'\nsale_id: 681\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.62E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-379 189.186.36.70 6a4c44e9-6426-4a80-b9e3-ac7b16980ee5 2019-06-01 01:13:36.773138 8978 681 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.36.70 1a5d7326-3c64-426b-adc9-d04b1f254e06 2019-06-01 01:13:38.18558 8979 705 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 217\namount: !ruby/object:BigDecimal 18:0.57672E3\ntax: !ruby/object:BigDecimal 18:0.9228E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-05-31\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-398\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 c63df00f-6ff0-4575-b39c-524157fc33f4 2019-06-01 01:21:01.525118 8980 6 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 1 \N 189.186.36.70 c63df00f-6ff0-4575-b39c-524157fc33f4 2019-06-01 01:21:01.56166 8982 914 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 217\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.669E3\nmove_type: '1'\nsale_id: 705\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-398\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-398 189.186.36.70 647660d8-b6b2-491d-a924-c0b69fb1209f 2019-06-01 01:21:28.44926 8983 215 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 218\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.5757E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.845E3\nphysical_cash: !ruby/object:BigDecimal 18:0.845E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.36.70 4e046ab5-260d-4dea-9755-cc9066934fa4 2019-06-01 01:55:48.589799 8984 218 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 4e046ab5-260d-4dea-9755-cc9066934fa4 2019-06-01 01:55:48.608693 8985 216 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 217\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.3807E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.3205E4\ncash_fund: !ruby/object:BigDecimal 18:0.1019E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4224E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.36.70 2c2e7f6c-b6b0-4b4b-b7c3-6ecbb9a29ad4 2019-06-01 02:06:21.329772 8986 217 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 2c2e7f6c-b6b0-4b4b-b7c3-6ecbb9a29ad4 2019-06-01 02:06:21.349562 8987 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-31 15:56:36.188053000 Z\n- &1 2019-05-31 20:08:15.809332000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-01 16:13:39.859482599 Z\nsign_in_count:\n- 141\n- 142\n 287 \N 189.186.36.70 0b905871-82f3-4e15-b6ec-c0e6b183c69c 2019-06-01 16:13:39.891915 8988 2 User \N \N 2 User \N update ---\nunique_session_id:\n- YJaLki8mW-BvxG_2bWyU\n- kJHYMzkxyyFSCeK2dweU\n 288 \N 189.186.36.70 0b905871-82f3-4e15-b6ec-c0e6b183c69c 2019-06-01 16:13:39.913924 8989 219 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1019E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1019.0 189.186.36.70 b4ce6d18-9420-4e2d-adef-cecb9ff0eba4 2019-06-01 16:24:24.859317 8990 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-30 20:01:41.539150000 Z\n- &1 2019-05-31 17:42:50.306045000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-01 16:44:05.392667528 Z\nsign_in_count:\n- 257\n- 258\n 516 \N 189.186.53.203 20210cce-a1c6-4198-8f15-34ecfda3bf03 2019-06-01 16:44:05.421141 8991 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9jN5MFochNGGazi9Sz1H\n- AGJgS7PDq3c3exLFQ6Ns\n 517 \N 189.186.53.203 20210cce-a1c6-4198-8f15-34ecfda3bf03 2019-06-01 16:44:05.443661 8992 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-05-31 23:31:29.516007000 Z\n- &1 2019-06-01 01:10:38.156122000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-01 17:06:53.371086654 Z\nsign_in_count:\n- 352\n- 353\n 706 \N 189.186.36.70 ce88b207-52fb-48aa-a9c9-d05c12dc6589 2019-06-01 17:06:53.37729 8993 3 User \N \N 3 User \N update ---\nunique_session_id:\n- sZV-hAysVBw3Se_F5541\n- tHQZjz1s6ZJ7Md76BDU6\n 707 \N 189.186.36.70 ce88b207-52fb-48aa-a9c9-d05c12dc6589 2019-06-01 17:06:53.391596 8994 220 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.845E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 845.0 189.186.36.70 c2626398-f65f-4558-bcce-780bfbf3a04b 2019-06-01 19:12:38.915294 8995 706 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 220\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-06-01\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-306\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 90a32263-207d-4e82-9bd8-2db6e70f6986 2019-06-01 19:12:49.441268 8996 652 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.36.70 90a32263-207d-4e82-9bd8-2db6e70f6986 2019-06-01 19:12:49.469869 8997 706 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 2b55a63b-9cb2-48da-9083-af140b16d360 2019-06-01 19:13:40.102355 8998 915 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 220\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 706\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-306\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-306 189.186.36.70 2b55a63b-9cb2-48da-9083-af140b16d360 2019-06-01 19:13:40.161073 8999 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-01 00:12:36.588881000 Z\n- &1 2019-06-01 01:08:55.120707000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-01 19:29:32.664122935 Z\nsign_in_count:\n- 217\n- 218\n 436 \N 189.186.36.70 9d9540fd-4493-4f42-a129-19c92a18df20 2019-06-01 19:29:32.670316 9000 12 User \N \N 12 User \N update ---\nunique_session_id:\n- NF-XLvx2DRiWmwFVxzhx\n- 7cS2WEaVaWyvFxs4V3aA\n 437 \N 189.186.36.70 9d9540fd-4493-4f42-a129-19c92a18df20 2019-06-01 19:29:32.687971 9001 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-01 01:10:38.156122000 Z\n- &1 2019-06-01 17:06:53.371086000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-01 19:30:03.679355567 Z\nsign_in_count:\n- 353\n- 354\n 708 \N 189.186.36.70 404536b1-14b2-48d5-b9e6-8e743c68272c 2019-06-01 19:30:03.691904 9002 3 User \N \N 3 User \N update ---\nunique_session_id:\n- tHQZjz1s6ZJ7Md76BDU6\n- MnEzgVqJRL3xyShGU8An\n 709 \N 189.186.36.70 404536b1-14b2-48d5-b9e6-8e743c68272c 2019-06-01 19:30:03.721892 9003 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-05-31 17:42:50.306045000 Z\n- &1 2019-06-01 16:44:05.392667000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-01 19:33:32.916403062 Z\nsign_in_count:\n- 258\n- 259\n 518 \N 189.186.53.203 7eaad534-0dc0-493c-95e7-0d91742fe0bc 2019-06-01 19:33:32.925175 9004 4 User \N \N 4 User \N update ---\nunique_session_id:\n- AGJgS7PDq3c3exLFQ6Ns\n- st9bzc5JGq-axnsqKs2j\n 519 \N 189.186.53.203 7eaad534-0dc0-493c-95e7-0d91742fe0bc 2019-06-01 19:33:32.943332 9005 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-01 17:06:53.371086000 Z\n- &1 2019-06-01 19:30:03.679355000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-01 20:41:46.265242110 Z\nsign_in_count:\n- 354\n- 355\n 710 \N 189.186.36.70 548633db-9989-4bfe-b6ed-6c9c6d8d465f 2019-06-01 20:41:46.296658 9006 3 User \N \N 3 User \N update ---\nunique_session_id:\n- MnEzgVqJRL3xyShGU8An\n- stQrnkBEsizdxdHTnzhZ\n 711 \N 189.186.36.70 548633db-9989-4bfe-b6ed-6c9c6d8d465f 2019-06-01 20:41:46.316176 9007 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-01 19:30:03.679355000 Z\n- &1 2019-06-01 20:41:46.265242000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-01 20:50:22.231525827 Z\nsign_in_count:\n- 355\n- 356\n 712 \N 189.186.36.70 ba6a569a-791a-45d5-b9be-4f36fa6cb6d7 2019-06-01 20:50:22.236947 9008 3 User \N \N 3 User \N update ---\nunique_session_id:\n- stQrnkBEsizdxdHTnzhZ\n- V31cNxtzfvPcz4sNoSRe\n 713 \N 189.186.36.70 ba6a569a-791a-45d5-b9be-4f36fa6cb6d7 2019-06-01 20:50:22.249983 9009 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-01 20:41:46.265242000 Z\n- &1 2019-06-01 20:50:22.231525000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-01 21:12:25.319801762 Z\nsign_in_count:\n- 356\n- 357\n 714 \N 189.186.36.70 988b352a-772c-4988-bc72-73b847a08568 2019-06-01 21:12:25.337675 9010 3 User \N \N 3 User \N update ---\nunique_session_id:\n- V31cNxtzfvPcz4sNoSRe\n- xYbyAuQ6wwHvymiGDg-E\n 715 \N 189.186.36.70 988b352a-772c-4988-bc72-73b847a08568 2019-06-01 21:12:25.356977 9011 282 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 189.186.36.70 e5b19f95-9c8a-41e5-a3f9-f851232b2c2b 2019-06-01 21:12:42.179563 9012 282 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.36.70 f2c5671b-adea-4943-a87f-ac8c11a33184 2019-06-01 21:12:45.762675 9013 54 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-06-01\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.36.70 d2c81ce8-33b2-4ad6-a412-aad28b9e31ed 2019-06-01 21:13:34.09798 9014 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-01 01:08:55.120707000 Z\n- &1 2019-06-01 19:29:32.664122000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-01 21:14:07.599533281 Z\nsign_in_count:\n- 218\n- 219\n 438 \N 189.186.36.70 481bc61b-a07e-4133-aac2-647b8d1a4323 2019-06-01 21:14:07.605175 9015 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 7cS2WEaVaWyvFxs4V3aA\n- yy7imjRSHA-1zN7F1Use\n 439 \N 189.186.36.70 481bc61b-a07e-4133-aac2-647b8d1a4323 2019-06-01 21:14:07.617304 9016 707 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 219\namount: !ruby/object:BigDecimal 18:0.1249E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1249E4\nstatus: 0\ndate_sale: 2019-06-01\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-399\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 69d6da99-786e-4fcf-a589-fd22ea032c76 2019-06-01 21:49:18.694338 9017 639 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.36.70 69d6da99-786e-4fcf-a589-fd22ea032c76 2019-06-01 21:49:18.747026 9018 707 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 adddad91-fbc8-4230-aae4-7bb97a038164 2019-06-01 21:50:37.991197 9019 916 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 219\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1249E4\nmove_type: '1'\nsale_id: 707\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-399\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1249E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-399 189.186.36.70 adddad91-fbc8-4230-aae4-7bb97a038164 2019-06-01 21:50:38.017739 9020 121 Customer \N \N 3 User \N create ---\nnick_name: ERICA BAEZ\nphone: "(667) 121-2018"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ERICA BAEZ fue registrado. 189.186.36.70 b1bbf518-158d-4be9-9e04-52820bfa4ae8 2019-06-01 21:54:33.392478 9021 708 Sale \N \N 3 User \N create ---\ncustomer_id: 121\nuser_id: 3\nopen_cash_register_id: 220\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-06-01\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-307\nexpiration_date: 2019-07-06\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 cae2eca0-f0c9-4e29-ad8c-1a78077a0a17 2019-06-01 21:54:46.751799 9022 665 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.36.70 cae2eca0-f0c9-4e29-ad8c-1a78077a0a17 2019-06-01 21:54:46.7843 9023 917 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 220\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.48E3\nmove_type: '1'\nsale_id: 708\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-307\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.2E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-307 189.186.36.70 558eac55-4602-439e-b913-0a4746d6f302 2019-06-01 21:55:19.193157 9024 708 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.36.70 9e34bfe2-4b89-4c05-924b-dc28dceee1dd 2019-06-01 21:55:20.245392 9025 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-01 20:50:22.231525000 Z\n- &1 2019-06-01 21:12:25.319801000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-01 22:08:18.594446286 Z\nsign_in_count:\n- 357\n- 358\n 716 \N 189.186.36.70 d367034a-4254-4eaa-8371-1ffc64fcbf92 2019-06-01 22:08:18.602292 9026 3 User \N \N 3 User \N update ---\nunique_session_id:\n- xYbyAuQ6wwHvymiGDg-E\n- PGfEDeGmL2UQCPsf-DaE\n 717 \N 189.186.36.70 d367034a-4254-4eaa-8371-1ffc64fcbf92 2019-06-01 22:08:18.619056 9027 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-01 19:29:32.664122000 Z\n- &1 2019-06-01 21:14:07.599533000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-01 23:13:48.143522265 Z\nsign_in_count:\n- 219\n- 220\n 440 \N 189.186.36.70 63e409d6-e6cd-454e-b636-af4f66e7b8b9 2019-06-01 23:13:48.149758 9028 12 User \N \N 12 User \N update ---\nunique_session_id:\n- yy7imjRSHA-1zN7F1Use\n- YzXH_yuDbxsFsQAeWz-a\n 441 \N 189.186.36.70 63e409d6-e6cd-454e-b636-af4f66e7b8b9 2019-06-01 23:13:48.164606 9029 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-01 21:14:07.599533000 Z\n- &1 2019-06-01 23:13:48.143522000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-02 00:07:41.455314573 Z\nsign_in_count:\n- 220\n- 221\n 442 \N 189.186.36.70 ea581fb5-d6fb-47c1-a8e3-dc1b863eabc6 2019-06-02 00:07:41.462272 9030 12 User \N \N 12 User \N update ---\nunique_session_id:\n- YzXH_yuDbxsFsQAeWz-a\n- DXsccejn4b9xznQVx86x\n 443 \N 189.186.36.70 ea581fb5-d6fb-47c1-a8e3-dc1b863eabc6 2019-06-02 00:07:41.475892 9031 86 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 219\nquantity: !ruby/object:BigDecimal 18:0.1238E4\nstatus: 1\nobservations: SUELDO ROCIO $228 HRAS EXTRA $110 COMIDA $50 SUELDO YARETZI $850\nexpense_date: 2019-06-01\nexpense_code: PV1-E-77\n 1 Egreso por 1238.0 registrado 189.186.36.70 e69d02f6-65e7-4ade-a455-06ecfe3d9ccc 2019-06-02 00:53:27.701122 9032 918 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 219\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1238E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 86\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 e69d02f6-65e7-4ade-a455-06ecfe3d9ccc 2019-06-02 00:53:27.732815 9100 623 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.36.70 31af8086-234d-470a-8d89-f857843c6751 2019-06-04 00:58:44.48233 9033 217 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 219\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1249E4\namount_out: !ruby/object:BigDecimal 18:0.1238E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.53E3\nphysical_cash: !ruby/object:BigDecimal 18:0.103E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.36.70 9bdf5d62-dd3f-4adf-a057-a5d42e913868 2019-06-02 01:44:05.969256 9034 219 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 9bdf5d62-dd3f-4adf-a057-a5d42e913868 2019-06-02 01:44:05.990781 9035 218 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 220\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1679E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.1074E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2574E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.36.70 46535046-f1bc-4161-8b42-1f73f0e9628b 2019-06-02 01:53:02.397573 9036 220 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 46535046-f1bc-4161-8b42-1f73f0e9628b 2019-06-02 01:53:02.419837 9037 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-01 21:12:25.319801000 Z\n- &1 2019-06-01 22:08:18.594446000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-02 15:59:38.507747653 Z\nsign_in_count:\n- 358\n- 359\n 718 \N 189.186.36.70 0bc48d1d-9073-46dc-842f-c93e88996564 2019-06-02 15:59:38.535548 9038 3 User \N \N 3 User \N update ---\nunique_session_id:\n- PGfEDeGmL2UQCPsf-DaE\n- eEK6PzsF8yvseypuaajt\n 719 \N 189.186.36.70 0bc48d1d-9073-46dc-842f-c93e88996564 2019-06-02 15:59:38.558159 9039 221 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.1074E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1074.0 189.186.36.70 defd4697-f123-4a21-b0c3-258ec2e40274 2019-06-02 16:07:30.744757 9040 709 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 221\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-06-02\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-308\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 7ccc2ed4-e1b6-468e-9f94-de3dddc42d5c 2019-06-02 18:13:21.680989 9041 404 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 189.186.36.70 7ccc2ed4-e1b6-468e-9f94-de3dddc42d5c 2019-06-02 18:13:21.711605 9042 709 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 cb8792cf-81f1-4d16-a3b0-18a84563227b 2019-06-02 18:19:10.020148 9043 919 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 221\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 709\ncardnumber: 4298\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-308\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-308 189.186.36.70 cb8792cf-81f1-4d16-a3b0-18a84563227b 2019-06-02 18:19:10.095882 9044 920 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 221\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 709\ncardnumber: 4298\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-308\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-308 189.186.36.70 9da67bcf-1cb6-4d8d-b48a-6d4311ccafd7 2019-06-02 18:19:10.187547 9045 921 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 221\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 709\ncardnumber: 4298\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-308\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-308 189.186.36.70 2b4cd616-c3fb-430c-82b3-2f61123198d3 2019-06-02 18:19:10.322993 9046 922 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 221\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 709\ncardnumber: 4298\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-308\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-308 189.186.36.70 c3ae6b1e-80da-406f-88bd-f86378251411 2019-06-02 18:19:10.416099 9047 923 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 221\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 709\ncardnumber: 4298\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-308\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-308 189.186.36.70 3d9b26a8-64c9-498d-81ce-427531870a63 2019-06-02 18:19:10.50668 9048 924 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 221\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 709\ncardnumber: 4298\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-308\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-308 189.186.36.70 c0a710b6-7402-4cb0-a484-95ccd1de3e41 2019-06-02 18:19:10.589029 9049 925 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 221\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 709\ncardnumber: 4298\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-308\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-308 189.186.36.70 0fe6e130-457f-4dc2-bff2-99b5601290eb 2019-06-02 18:19:10.698818 9050 920 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 221\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 709\ncardnumber: 4298\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-308\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.36.70 fac06608-ca10-4c30-b7f9-dbc12e12d748 2019-06-02 18:19:33.200448 9101 623 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.36.70 0026f17d-4319-4c23-83e0-ad5c55304b82 2019-06-04 00:58:47.85974 9315 3 User \N \N 3 User \N update ---\nunique_session_id:\n- YYKpKtq4iWx7ZEvA21y3\n- Nxin2LoXwv3myvWjddTA\n 753 \N 189.186.36.70 9725088f-8808-488c-a185-d869e99ff485 2019-06-09 20:55:23.798501 9051 921 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 221\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 709\ncardnumber: 4298\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-308\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.36.70 872b3bf6-bcb4-4dfa-8504-d4b380be5c1a 2019-06-02 18:19:33.367256 9052 919 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 221\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 709\ncardnumber: 4298\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-308\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.36.70 7a09d6e0-44a5-489f-8284-9bff9bdf998e 2019-06-02 18:19:33.4031 9053 925 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 221\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 709\ncardnumber: 4298\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-308\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.36.70 d8f7687d-be78-4e9b-a343-64b0554ba41c 2019-06-02 18:19:33.83372 9054 924 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 221\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 709\ncardnumber: 4298\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-308\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.36.70 d17d5205-893d-4bb1-b8ad-01e44778e4c0 2019-06-02 18:19:34.809423 9055 923 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 221\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 709\ncardnumber: 4298\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-308\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.36.70 2e158600-e103-4d8e-bd43-d85fe70bbb79 2019-06-02 18:19:35.836107 9056 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-01 16:44:05.392667000 Z\n- &1 2019-06-01 19:33:32.916403000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-02 18:27:48.090967198 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097291\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096671\n mask_addr: 4294967295\nsign_in_count:\n- 259\n- 260\n 520 \N 189.186.51.95 b8cf3421-e0d0-43dc-9372-4f8d56212892 2019-06-02 18:27:48.098092 9057 4 User \N \N 4 User \N update ---\nunique_session_id:\n- st9bzc5JGq-axnsqKs2j\n- yhT9iXhynKjx3ZRLsL9v\n 521 \N 189.186.51.95 b8cf3421-e0d0-43dc-9372-4f8d56212892 2019-06-02 18:27:48.126437 9058 710 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 221\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-06-02\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-309\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 f17f8e89-ec51-4e22-9fe7-f0dc330d3e57 2019-06-02 18:58:53.723467 9059 573 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.36.70 f17f8e89-ec51-4e22-9fe7-f0dc330d3e57 2019-06-02 18:58:53.760446 9060 710 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 0860e3b0-5872-4d91-960b-df49e24e2002 2019-06-02 18:59:25.602365 9061 926 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 221\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 710\ncardnumber: 2018\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-309\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-309 189.186.36.70 0860e3b0-5872-4d91-960b-df49e24e2002 2019-06-02 18:59:25.643227 9062 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-01 22:08:18.594446000 Z\n- &1 2019-06-02 15:59:38.507747000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-02 20:11:28.356833769 Z\nsign_in_count:\n- 359\n- 360\n 720 \N 189.186.36.70 e39d738e-1651-4b4a-9278-2e4d622453b1 2019-06-02 20:11:28.378227 9063 3 User \N \N 3 User \N update ---\nunique_session_id:\n- eEK6PzsF8yvseypuaajt\n- Lr7F4WysJYTFfxmgz3Bn\n 721 \N 189.186.36.70 e39d738e-1651-4b4a-9278-2e4d622453b1 2019-06-02 20:11:28.398091 9064 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-01 23:13:48.143522000 Z\n- &1 2019-06-02 00:07:41.455314000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-02 20:25:17.105449024 Z\nsign_in_count:\n- 221\n- 222\n 444 \N 189.186.36.70 d5320f25-8acf-4f59-a056-6bbc7ddad3f2 2019-06-02 20:25:17.11511 9065 12 User \N \N 12 User \N update ---\nunique_session_id:\n- DXsccejn4b9xznQVx86x\n- GK-nVDEfLAzx5V4KmosS\n 445 \N 189.186.36.70 d5320f25-8acf-4f59-a056-6bbc7ddad3f2 2019-06-02 20:25:17.138468 9066 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-02 15:59:38.507747000 Z\n- &1 2019-06-02 20:11:28.356833000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-02 20:47:26.468050682 Z\nsign_in_count:\n- 360\n- 361\n 722 \N 189.186.36.70 dc66cbf0-142d-4eb4-a433-7d9d5a3511f6 2019-06-02 20:47:26.496502 9067 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Lr7F4WysJYTFfxmgz3Bn\n- zyYrd8nsKt-_Y68sZWa9\n 723 \N 189.186.36.70 dc66cbf0-142d-4eb4-a433-7d9d5a3511f6 2019-06-02 20:47:26.516296 9068 219 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 221\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1098E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1074E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1074E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.36.70 7a367cf3-0eb9-4554-999f-bacf3012dfbc 2019-06-02 20:55:37.172311 9069 221 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 7a367cf3-0eb9-4554-999f-bacf3012dfbc 2019-06-02 20:55:37.191901 9070 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-05-31 20:08:15.809332000 Z\n- &1 2019-06-01 16:13:39.859482000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-03 16:00:19.496281544 Z\nsign_in_count:\n- 142\n- 143\n 289 \N 189.186.36.70 8b87e2d6-4950-4dbf-abe6-002260377e5d 2019-06-03 16:00:19.543755 9071 2 User \N \N 2 User \N update ---\nunique_session_id:\n- kJHYMzkxyyFSCeK2dweU\n- X3qHrDyr-Wnh_eb7Q5pE\n 290 \N 189.186.36.70 8b87e2d6-4950-4dbf-abe6-002260377e5d 2019-06-03 16:00:19.568477 9072 222 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.53E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 530.0 189.186.36.70 7d108da3-cd51-483c-b9de-a2346c8f03fb 2019-06-03 16:01:27.40782 9197 3 User \N \N 3 User \N update ---\nunique_session_id:\n- hu7XLLXcXDVWQCpm_KbM\n- qyeGSV4ayoxxuBeoS2Hg\n 737 \N 189.186.36.70 d15517f3-e841-4801-8716-b796e135a34d 2019-06-06 20:16:26.325092 9073 711 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 222\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-06-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-400\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 a238b1ae-be6b-429d-934f-715b8d3acab5 2019-06-03 18:35:05.177051 9074 636 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.36.70 a238b1ae-be6b-429d-934f-715b8d3acab5 2019-06-03 18:35:05.240301 9075 711 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 dd02cacc-d82f-4def-9dfb-9a8b3c363021 2019-06-03 18:36:34.244528 9076 927 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 222\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.489E3\nmove_type: '1'\nsale_id: 711\ncardnumber: 1326\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-400\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-400 189.186.36.70 dd02cacc-d82f-4def-9dfb-9a8b3c363021 2019-06-03 18:36:34.268761 9077 122 Customer \N \N 2 User \N create ---\nnick_name: TATIANA AGUAYO\nphone: ''\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.1E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente TATIANA AGUAYO fue registrado. 189.186.36.70 dcd84012-21c6-442e-8c7f-bdd076483619 2019-06-03 21:11:54.197973 9078 712 Sale \N \N 2 User \N create ---\ncustomer_id: 122\nuser_id: 2\nopen_cash_register_id: 222\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-06-03\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-401\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 065f879a-efaa-4878-bf48-630ae19635da 2019-06-03 21:17:54.267219 9079 538 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.36.70 065f879a-efaa-4878-bf48-630ae19635da 2019-06-03 21:17:54.306924 9080 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-05-27 22:50:30.654254000 Z\n- &1 2019-06-01 00:43:53.127430000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-03 22:23:50.059493488 Z\nsign_in_count:\n- 74\n- 75\n 150 \N 189.186.36.70 7a380a06-9158-44c4-b203-9194eaa7eb3e 2019-06-03 22:23:50.066458 9081 10 User \N \N 10 User \N update ---\nunique_session_id:\n- yPe1qAihgjn1ZYsuR4sS\n- YGVv_MBE_FszCULGs7-o\n 151 \N 189.186.36.70 7a380a06-9158-44c4-b203-9194eaa7eb3e 2019-06-03 22:23:50.079769 9082 223 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.1074E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1074.0 189.186.36.70 9b8f5f11-4e6a-4fce-a4ec-076686d74b0e 2019-06-03 22:23:54.09451 9083 53 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-06-03\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.36.70 4ec93c5a-6ffc-4fb0-9a15-a90a2aaab435 2019-06-04 00:09:53.228184 9084 604 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.36.70 4ec93c5a-6ffc-4fb0-9a15-a90a2aaab435 2019-06-04 00:09:53.259458 9085 54 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-06-03\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.36.70 a0819ff6-3caf-4779-9ee7-da9feb0b9087 2019-06-04 00:10:07.756729 9086 668 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 284\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.36.70 a0819ff6-3caf-4779-9ee7-da9feb0b9087 2019-06-04 00:10:07.7805 9087 245 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.36.70 0f1b5a28-46d3-460b-adde-0ee682592c35 2019-06-04 00:10:32.293741 9088 245 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.36.70 02afe5ba-4563-46f8-b3d3-afd56d8e0bd7 2019-06-04 00:10:35.643305 9089 55 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-06-03\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.36.70 43d6a232-7563-4b69-a43f-41a57e990421 2019-06-04 00:10:52.915471 9090 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-01 19:33:32.916403000 Z\n- &1 2019-06-02 18:27:48.090967000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-04 00:40:56.045993446 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097291\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096671\n mask_addr: 4294967295\nsign_in_count:\n- 260\n- 261\n 522 \N 189.186.51.95 b85d31dd-d36d-40bb-982c-da3fe9d30af2 2019-06-04 00:40:56.055054 9091 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yhT9iXhynKjx3ZRLsL9v\n- dsRAPe8KJLrpW-pziwjh\n 523 \N 189.186.51.95 b85d31dd-d36d-40bb-982c-da3fe9d30af2 2019-06-04 00:40:56.074831 9092 55 Transfer \N \N 10 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 10\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-06-03\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.36.70 3edb4e74-eda6-40ff-854a-86f6d0619ff3 2019-06-04 00:56:48.929344 9093 669 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 247\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.36.70 3edb4e74-eda6-40ff-854a-86f6d0619ff3 2019-06-04 00:56:48.95166 9094 393 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.36.70 7b861286-5e31-46a9-885c-6895a09abb44 2019-06-04 00:57:34.929885 9095 393 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.36.70 72645ee0-8768-4503-be91-7f60997179d3 2019-06-04 00:57:38.444117 9096 479 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.36.70 d4d68285-26a7-4a02-b73a-d70bdad42531 2019-06-04 00:57:53.479025 9097 479 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.36.70 7d81b8a5-899f-4715-b117-73cb5796dc84 2019-06-04 00:57:56.359407 9098 621 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.36.70 0a80378b-c9b6-4546-bb0c-6b3404beccaf 2019-06-04 00:58:32.140542 9099 621 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.36.70 f82f8b12-7c2e-461d-9832-38dcf1e500a0 2019-06-04 00:58:35.841222 9102 56 Transfer \N \N 10 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-06-03\nuser_id: 10\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.36.70 7af6ef58-7475-4e10-a126-21c7ac814aa0 2019-06-04 00:58:53.309481 9103 56 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-06-03\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.36.70 d4fbe904-c98e-4fd7-ae9d-0fc2bc583bf8 2019-06-04 01:38:16.016151 9104 618 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.36.70 d4fbe904-c98e-4fd7-ae9d-0fc2bc583bf8 2019-06-04 01:38:16.0381 9105 608 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.36.70 d4fbe904-c98e-4fd7-ae9d-0fc2bc583bf8 2019-06-04 01:38:16.062428 9106 252 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.36.70 d4fbe904-c98e-4fd7-ae9d-0fc2bc583bf8 2019-06-04 01:38:16.091456 9107 670 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 395\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.36.70 d4fbe904-c98e-4fd7-ae9d-0fc2bc583bf8 2019-06-04 01:38:16.121029 9108 87 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 222\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida\nexpense_date: 2019-06-03\nexpense_code: PV1-E-78\n 1 Egreso por 50.0 registrado 189.186.36.70 84ffad8f-3654-4a07-8c95-a7ca9576eeb1 2019-06-04 01:38:36.075995 9109 928 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 222\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 87\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 84ffad8f-3654-4a07-8c95-a7ca9576eeb1 2019-06-04 01:38:36.102025 9110 220 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 222\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.489E3\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.48E3\nphysical_cash: !ruby/object:BigDecimal 18:0.48E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.36.70 880b0132-d238-4772-8b89-bae59e2799a5 2019-06-04 01:45:32.004246 9111 222 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 880b0132-d238-4772-8b89-bae59e2799a5 2019-06-04 01:45:32.02013 9112 221 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 223\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1074E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1074E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.36.70 8e87852c-b1bc-4209-baf6-1ae586368e3f 2019-06-04 01:58:43.369523 9113 223 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 8e87852c-b1bc-4209-baf6-1ae586368e3f 2019-06-04 01:58:43.384019 9114 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-02 20:11:28.356833000 Z\n- &1 2019-06-02 20:47:26.468050000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-04 16:03:13.058707367 Z\nsign_in_count:\n- 361\n- 362\n 724 \N 189.186.36.70 0fb28f34-ab72-4b3d-94e9-9a81b3e6d125 2019-06-04 16:03:13.103478 9115 3 User \N \N 3 User \N update ---\nunique_session_id:\n- zyYrd8nsKt-_Y68sZWa9\n- xxQC6X7vtwbv-cp4c42T\n 725 \N 189.186.36.70 0fb28f34-ab72-4b3d-94e9-9a81b3e6d125 2019-06-04 16:03:13.139513 9116 224 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.1074E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1074.0 189.186.36.70 ae5c97a7-400b-448d-8c50-7171b2c7756d 2019-06-04 16:03:45.951166 9117 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-01 16:13:39.859482000 Z\n- &1 2019-06-03 16:00:19.496281000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-04 16:12:08.698106964 Z\nsign_in_count:\n- 143\n- 144\n 291 \N 189.186.36.70 27048772-dc96-4fd8-b5fa-c57a3214f777 2019-06-04 16:12:08.732982 9118 2 User \N \N 2 User \N update ---\nunique_session_id:\n- X3qHrDyr-Wnh_eb7Q5pE\n- "-oyP1t3cjrozw4jbbxLj"\n 292 \N 189.186.36.70 27048772-dc96-4fd8-b5fa-c57a3214f777 2019-06-04 16:12:08.757284 9119 225 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.48E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 480.0 189.186.36.70 436648b6-c3bf-4edd-81df-247d02901f26 2019-06-04 16:12:29.023722 9120 88 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 225\nquantity: !ruby/object:BigDecimal 18:0.3E3\nstatus: 1\nobservations: renta de retomartillo\nexpense_date: 2019-06-04\nexpense_code: PV1-E-79\n 1 Egreso por 300.0 registrado 189.186.36.70 b1ecf867-7687-4472-8e68-85dfc71a6f78 2019-06-04 20:02:45.001054 9121 929 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 225\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 88\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 b1ecf867-7687-4472-8e68-85dfc71a6f78 2019-06-04 20:02:45.055694 9122 89 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 225\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida\nexpense_date: 2019-06-04\nexpense_code: PV1-E-80\n 1 Egreso por 50.0 registrado 189.186.36.70 7a919fa2-cbea-47bc-b036-e7b6996ed113 2019-06-04 20:03:08.805494 9123 930 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 225\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 89\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 7a919fa2-cbea-47bc-b036-e7b6996ed113 2019-06-04 20:03:08.835107 9124 713 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 224\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-06-04\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-310\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 2b1d1db3-ac54-4497-885f-4dada300cf75 2019-06-04 20:48:55.157168 9125 652 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.36.70 2b1d1db3-ac54-4497-885f-4dada300cf75 2019-06-04 20:48:55.202933 9126 713 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 45a22ece-15b1-47d9-a656-16bb87d1a465 2019-06-04 20:49:32.536235 9127 931 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 224\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 713\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-310\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-310 189.186.36.70 45a22ece-15b1-47d9-a656-16bb87d1a465 2019-06-04 20:49:32.562431 9128 714 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 225\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.449E3\ntotal: !ruby/object:BigDecimal 18:0.105E4\nstatus: 0\ndate_sale: 2019-06-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-402\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 546e3a05-8316-43a4-95a3-4334de3b538f 2019-06-04 21:33:23.709316 9129 574 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.36.70 546e3a05-8316-43a4-95a3-4334de3b538f 2019-06-04 21:33:23.761704 9130 714 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 91694d18-aebf-40e6-b2ff-d03debcd4a56 2019-06-04 21:33:35.854149 9131 932 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 225\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.105E4\nmove_type: '1'\nsale_id: 714\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-402\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.105E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-402 189.186.36.70 91694d18-aebf-40e6-b2ff-d03debcd4a56 2019-06-04 21:33:35.879657 9132 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-02 20:47:26.468050000 Z\n- &1 2019-06-04 16:03:13.058707000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-04 21:37:01.664454653 Z\nsign_in_count:\n- 362\n- 363\n 726 \N 189.186.36.70 62024d7a-b858-4ab6-b12d-3c5d70715022 2019-06-04 21:37:01.67028 9133 3 User \N \N 3 User \N update ---\nunique_session_id:\n- xxQC6X7vtwbv-cp4c42T\n- H8jPk2d7zZmFisT7PYBS\n 727 \N 189.186.36.70 62024d7a-b858-4ab6-b12d-3c5d70715022 2019-06-04 21:37:01.682754 9134 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-02 18:27:48.090967000 Z\n- &1 2019-06-04 00:40:56.045993000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-04 22:02:39.590716988 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096671\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\nsign_in_count:\n- 261\n- 262\n 524 \N 189.186.36.70 cc115041-ff0b-42da-a764-be049bb09f4e 2019-06-04 22:02:39.597601 9135 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dsRAPe8KJLrpW-pziwjh\n- 5PjzVL8TNTZdw_cYX-5B\n 525 \N 189.186.36.70 cc115041-ff0b-42da-a764-be049bb09f4e 2019-06-04 22:02:39.618599 9136 17 Product \N \N 4 User \N update ---\ndescription:\n- SHORT RUFLEE ROJO\n- SHORT PAPAYA AZUL REY\n 3 El producto SHO-17 fue modificado. 189.186.36.70 9ba02bca-0871-4c8b-9f58-b25dd2d215cd 2019-06-04 22:04:45.885533 9137 437 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 189.186.36.70 a88c7b4e-ba18-4eb0-a5b0-8c3723c9a302 2019-06-04 22:20:29.246187 9138 57 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-06-04\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.36.70 e4c8c695-8a6b-421a-8afb-7633b5bb123b 2019-06-04 22:20:31.963082 9139 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-04 00:40:56.045993000 Z\n- &1 2019-06-04 22:02:39.590716000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-04 22:45:44.116309805 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096671\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092587\n mask_addr: 4294967295\nsign_in_count:\n- 262\n- 263\n 526 \N 189.186.35.107 c79f1131-7a45-4b36-865e-debcf1d0f5d1 2019-06-04 22:45:44.124261 9140 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5PjzVL8TNTZdw_cYX-5B\n- 7542zAXpJfKz8QkrESFs\n 527 \N 189.186.35.107 c79f1131-7a45-4b36-865e-debcf1d0f5d1 2019-06-04 22:45:44.140744 9141 933 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 225\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 585\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-324 189.186.36.70 c08f5492-ef13-4fd8-90b4-1884f339d504 2019-06-04 23:35:05.716375 9142 585 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.36.70 ec91748a-81c2-43c4-a15c-a9112b21ad4d 2019-06-04 23:35:07.240973 9143 90 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 225\nquantity: !ruby/object:BigDecimal 18:0.44E2\nstatus: 1\nobservations: GASTO EN FERRETERIA (KIKO)\nexpense_date: 2019-06-04\nexpense_code: PV1-E-81\n 1 Egreso por 44.0 registrado 189.186.36.70 bf30c418-a0c4-4e0a-b6dc-ae559e5311d7 2019-06-04 23:41:29.463223 9144 934 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 225\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.44E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 90\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 bf30c418-a0c4-4e0a-b6dc-ae559e5311d7 2019-06-04 23:41:29.485753 9145 935 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 225\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 607\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-338 189.186.36.70 dee97366-fdf4-47fa-a045-af450f8e04df 2019-06-05 00:46:53.334813 9146 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-06-01 00:43:53.127430000 Z\n- &1 2019-06-03 22:23:50.059493000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-05 01:46:20.882197533 Z\nsign_in_count:\n- 75\n- 76\n 152 \N 189.186.36.70 c05451cd-484f-4634-b913-ec69bf67f0bf 2019-06-05 01:46:20.891188 9147 10 User \N \N 10 User \N update ---\nunique_session_id:\n- YGVv_MBE_FszCULGs7-o\n- cC-bkmxheHjSNz9_gGX8\n 153 \N 189.186.36.70 c05451cd-484f-4634-b913-ec69bf67f0bf 2019-06-05 01:46:20.909954 9198 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-06 18:40:50.801642000 Z\n- &1 2019-06-06 20:16:26.293326000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-06 20:29:48.173875838 Z\nsign_in_count:\n- 368\n- 369\n 738 \N 189.186.36.70 431887b2-1912-4870-8b45-5f7c03af9d2e 2019-06-06 20:29:48.180412 9148 222 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 225\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2249E4\namount_out: !ruby/object:BigDecimal 18:0.394E3\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.835E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2335E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.36.70 f7dcd77a-91b8-41c7-a67e-82eec083e58e 2019-06-05 01:54:50.500648 9149 225 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 f7dcd77a-91b8-41c7-a67e-82eec083e58e 2019-06-05 01:54:50.518416 9150 223 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 224\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.1199E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.14E4\ncash_fund: !ruby/object:BigDecimal 18:0.884E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2284E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.36.70 15ee01eb-aa34-471d-9c02-0f101270b3d4 2019-06-05 01:57:22.968545 9151 224 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 15ee01eb-aa34-471d-9c02-0f101270b3d4 2019-06-05 01:57:22.98602 9152 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-04 16:03:13.058707000 Z\n- &1 2019-06-04 21:37:01.664454000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-05 15:55:52.394871588 Z\nsign_in_count:\n- 363\n- 364\n 728 \N 189.186.36.70 e797c11f-2025-4d64-b344-50e2f309135f 2019-06-05 15:55:52.425169 9153 3 User \N \N 3 User \N update ---\nunique_session_id:\n- H8jPk2d7zZmFisT7PYBS\n- _dC3USToCqy8zyxZzM3f\n 729 \N 189.186.36.70 e797c11f-2025-4d64-b344-50e2f309135f 2019-06-05 15:55:52.447927 9154 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-03 16:00:19.496281000 Z\n- &1 2019-06-04 16:12:08.698106000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-05 16:00:17.198376138 Z\nsign_in_count:\n- 144\n- 145\n 293 \N 189.186.36.70 44ebe690-31d0-44a7-a4c9-dca9aa4fe197 2019-06-05 16:00:17.204465 9155 2 User \N \N 2 User \N update ---\nunique_session_id:\n- "-oyP1t3cjrozw4jbbxLj"\n- 6s4-xNLYyS29Szdgxfri\n 294 \N 189.186.36.70 44ebe690-31d0-44a7-a4c9-dca9aa4fe197 2019-06-05 16:00:17.222322 9156 226 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.884E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 884.0 189.186.36.70 0c0a6b07-8463-4d94-9599-1c34fcb1ed53 2019-06-05 16:01:15.295591 9157 227 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.835E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 835.0 189.186.36.70 598ba32c-3867-421b-80df-4c65946496ff 2019-06-05 16:21:32.102993 9158 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-04 21:37:01.664454000 Z\n- &1 2019-06-05 15:55:52.394871000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-05 20:40:43.829974796 Z\nsign_in_count:\n- 364\n- 365\n 730 \N 189.186.36.70 cf1a65f0-76e1-4279-a56f-900c96c6fb98 2019-06-05 20:40:43.863662 9159 3 User \N \N 3 User \N update ---\nunique_session_id:\n- _dC3USToCqy8zyxZzM3f\n- tUzny7YdBaNxaYmyDKVY\n 731 \N 189.186.36.70 cf1a65f0-76e1-4279-a56f-900c96c6fb98 2019-06-05 20:40:43.889572 9160 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-04 22:02:39.590716000 Z\n- &1 2019-06-04 22:45:44.116309000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-05 20:48:32.529069136 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092587\n mask_addr: 4294967295\nsign_in_count:\n- 263\n- 264\n 528 \N 189.186.35.107 1641b50f-6268-4693-9163-4517db22546b 2019-06-05 20:48:32.536506 9161 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7542zAXpJfKz8QkrESFs\n- HnB4pm4BzxoyG-zCLYiv\n 529 \N 189.186.35.107 1641b50f-6268-4693-9163-4517db22546b 2019-06-05 20:48:32.554221 9162 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-06-03 22:23:50.059493000 Z\n- &1 2019-06-05 01:46:20.882197000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-05 22:07:21.631954280 Z\nsign_in_count:\n- 76\n- 77\n 154 \N 189.186.36.70 4eedbe7e-5439-4635-a4b3-4462c2baadef 2019-06-05 22:07:21.637919 9163 10 User \N \N 10 User \N update ---\nunique_session_id:\n- cC-bkmxheHjSNz9_gGX8\n- eRZPqF6kXzX34HqRT1x7\n 155 \N 189.186.36.70 4eedbe7e-5439-4635-a4b3-4462c2baadef 2019-06-05 22:07:21.651112 9164 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-04 22:45:44.116309000 Z\n- &1 2019-06-05 20:48:32.529069000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-05 23:15:34.639231484 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092587\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095812\n mask_addr: 4294967295\nsign_in_count:\n- 264\n- 265\n 530 \N 189.186.48.4 5c52ca8e-f9cc-4707-a5e7-5331b752ab95 2019-06-05 23:15:34.647804 9165 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HnB4pm4BzxoyG-zCLYiv\n- u1Rm2mQz9LosbRvsZ_Fd\n 531 \N 189.186.48.4 5c52ca8e-f9cc-4707-a5e7-5331b752ab95 2019-06-05 23:15:34.664674 9166 936 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 175\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 529\ncardnumber: 3186\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 0452f690-a8a7-4d34-bd82-fd3414b77af9 2019-06-06 00:35:09.020114 9167 936 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 175\n- 227\n 2 movimiento de efectivo por venta con folio PV2-V-236 189.186.36.70 0452f690-a8a7-4d34-bd82-fd3414b77af9 2019-06-06 00:35:09.052121 9168 224 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 226\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.884E3\nphysical_cash: !ruby/object:BigDecimal 18:0.884E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.36.70 c9f90545-7b71-4942-b7bc-6facb62a80c0 2019-06-06 01:13:03.855691 9169 226 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 c9f90545-7b71-4942-b7bc-6facb62a80c0 2019-06-06 01:13:03.873166 9170 91 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 227\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida\nexpense_date: 2019-06-05\nexpense_code: PV1-E-82\n 1 Egreso por 50.0 registrado 189.186.36.70 1b824dc2-1ee0-46c6-ad34-49ca2222c140 2019-06-06 01:18:03.396055 9171 937 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 227\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 91\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 1b824dc2-1ee0-46c6-ad34-49ca2222c140 2019-06-06 01:18:03.424544 9199 3 User \N \N 3 User \N update ---\nunique_session_id:\n- qyeGSV4ayoxxuBeoS2Hg\n- KWCvwgbhMocAz4PyK3A3\n 739 \N 189.186.36.70 431887b2-1912-4870-8b45-5f7c03af9d2e 2019-06-06 20:29:48.194149 38912 2826 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.76.107 4db94ebb-7e34-4324-850d-d18f8d1689ab 2020-09-01 22:06:49.686527 9172 225 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 227\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5E3\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.805E3\nphysical_cash: !ruby/object:BigDecimal 18:0.805E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.36.70 2dc4861c-d60b-496e-be7f-522e2ac28d26 2019-06-06 01:19:13.916243 9173 227 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 2dc4861c-d60b-496e-be7f-522e2ac28d26 2019-06-06 01:19:13.934258 9174 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-04 16:12:08.698106000 Z\n- &1 2019-06-05 16:00:17.198376000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-06 15:52:41.216563150 Z\nsign_in_count:\n- 145\n- 146\n 295 \N 189.186.36.70 e5bdf665-4960-48b6-bff0-396bf228dd91 2019-06-06 15:52:41.246451 9175 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 6s4-xNLYyS29Szdgxfri\n- SBUTU1psEzzQZsvbYBH_\n 296 \N 189.186.36.70 e5bdf665-4960-48b6-bff0-396bf228dd91 2019-06-06 15:52:41.268777 9176 228 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.805E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 805.0 189.186.36.70 c3907617-f6e2-455e-907c-bf25465de3a3 2019-06-06 15:54:44.110404 9177 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-05 15:55:52.394871000 Z\n- &1 2019-06-05 20:40:43.829974000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-06 16:13:19.232736994 Z\nsign_in_count:\n- 365\n- 366\n 732 \N 189.186.36.70 3f38d7fe-4017-42b3-bc8a-ac2d7c52ab09 2019-06-06 16:13:19.265996 9178 3 User \N \N 3 User \N update ---\nunique_session_id:\n- tUzny7YdBaNxaYmyDKVY\n- _8Yh_AYRjoSKTwFBUuue\n 733 \N 189.186.36.70 3f38d7fe-4017-42b3-bc8a-ac2d7c52ab09 2019-06-06 16:13:19.290215 9179 229 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.884E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 884.0 189.186.36.70 1e72e3da-cbf8-47b2-839f-e1d0211c1934 2019-06-06 16:13:33.242365 9180 715 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 228\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-06-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-403\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 27ccef10-99bc-48b1-844e-9b0831339a4a 2019-06-06 16:42:53.637917 9181 660 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.36.70 27ccef10-99bc-48b1-844e-9b0831339a4a 2019-06-06 16:42:53.694682 9182 715 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 2e49ef30-3429-42d0-997e-afa3c9735ea8 2019-06-06 16:49:47.065184 9183 938 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 228\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 715\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-403\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.749E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-403 189.186.36.70 2e49ef30-3429-42d0-997e-afa3c9735ea8 2019-06-06 16:49:47.10431 9184 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-05 16:00:17.198376000 Z\n- &1 2019-06-06 15:52:41.216563000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-06 18:39:38.505942872 Z\nsign_in_count:\n- 146\n- 147\n 297 \N 189.186.36.70 4ab3c268-22fe-4028-aca9-bcae5b7a2e51 2019-06-06 18:39:38.511931 9185 2 User \N \N 2 User \N update ---\nunique_session_id:\n- SBUTU1psEzzQZsvbYBH_\n- 78Lez2GjxvRmeCEQ8rVB\n 298 \N 189.186.36.70 4ab3c268-22fe-4028-aca9-bcae5b7a2e51 2019-06-06 18:39:38.525352 9186 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-05 20:40:43.829974000 Z\n- &1 2019-06-06 16:13:19.232736000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-06 18:40:50.801642207 Z\nsign_in_count:\n- 366\n- 367\n 734 \N 189.186.36.70 7b824fa8-cd62-4fa6-b623-9ece7cd7986f 2019-06-06 18:40:50.807528 9187 3 User \N \N 3 User \N update ---\nunique_session_id:\n- _8Yh_AYRjoSKTwFBUuue\n- hu7XLLXcXDVWQCpm_KbM\n 735 \N 189.186.36.70 7b824fa8-cd62-4fa6-b623-9ece7cd7986f 2019-06-06 18:40:50.821677 9188 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-06 15:52:41.216563000 Z\n- &1 2019-06-06 18:39:38.505942000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-06 18:59:10.958144138 Z\nsign_in_count:\n- 147\n- 148\n 299 \N 189.186.36.70 a27c1ab2-fc3c-47e6-bc74-df455d17edd0 2019-06-06 18:59:10.963685 9189 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 78Lez2GjxvRmeCEQ8rVB\n- HYVVxJ77v2RFKqv_Hnib\n 300 \N 189.186.36.70 a27c1ab2-fc3c-47e6-bc74-df455d17edd0 2019-06-06 18:59:10.975969 9190 92 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 228\nquantity: !ruby/object:BigDecimal 18:0.171E3\nstatus: 1\nobservations: comida $50 ferreteria (kiko) $121\nexpense_date: 2019-06-06\nexpense_code: PV1-E-83\n 1 Egreso por 171.0 registrado 189.186.36.70 921945c9-7eac-47ab-9e21-66418720db69 2019-06-06 18:59:54.694054 9191 939 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 228\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.171E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 92\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 921945c9-7eac-47ab-9e21-66418720db69 2019-06-06 18:59:54.728358 9192 716 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 228\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-06-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-404\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 c1cc7929-589f-4d55-ae90-718ec1fc028b 2019-06-06 20:02:11.705463 9193 637 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.36.70 c1cc7929-589f-4d55-ae90-718ec1fc028b 2019-06-06 20:02:11.749023 9194 716 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 e9a15663-1662-47a3-9250-175bdd3d0e34 2019-06-06 20:02:16.73569 9195 940 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 228\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 716\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-404\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-404 189.186.36.70 e9a15663-1662-47a3-9250-175bdd3d0e34 2019-06-06 20:02:16.760144 9196 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-06 16:13:19.232736000 Z\n- &1 2019-06-06 18:40:50.801642000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-06 20:16:26.293326782 Z\nsign_in_count:\n- 367\n- 368\n 736 \N 189.186.36.70 d15517f3-e841-4801-8716-b796e135a34d 2019-06-06 20:16:26.300969 9200 941 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 229\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 659\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-293 189.186.36.70 37bcda87-1cb0-4c79-a26e-b57557574ff8 2019-06-06 20:30:14.915229 9201 93 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 228\nquantity: !ruby/object:BigDecimal 18:0.1E3\nstatus: 1\nobservations: comida kiko\nexpense_date: 2019-06-06\nexpense_code: PV1-E-84\n 1 Egreso por 100.0 registrado 189.186.36.70 963a842a-1d4c-4f02-978a-c94c9a3646d4 2019-06-06 20:32:26.154545 9202 942 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 228\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 93\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 963a842a-1d4c-4f02-978a-c94c9a3646d4 2019-06-06 20:32:26.175241 9203 717 Sale \N \N 2 User \N create ---\ncustomer_id: 33\nuser_id: 2\nopen_cash_register_id: 228\namount: !ruby/object:BigDecimal 18:0.45776E3\ntax: !ruby/object:BigDecimal 18:0.4124E2\ndiscount: !ruby/object:BigDecimal 18:0.2E3\ntotal: !ruby/object:BigDecimal 18:0.299E3\nstatus: 0\ndate_sale: 2019-06-06\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-405\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 3f823fef-d9e4-4bc6-86d0-3b8d8201ed8d 2019-06-06 22:04:51.88127 9204 507 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.36.70 3f823fef-d9e4-4bc6-86d0-3b8d8201ed8d 2019-06-06 22:04:51.912995 9205 717 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 0ae04583-9b32-42ff-b44f-c5465d3759f2 2019-06-06 22:05:05.123908 9206 943 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 228\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.299E3\nmove_type: '1'\nsale_id: 717\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-405\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAMANTHA\n 1 movimiento de efectivo por venta con folio PV1-V-405 189.186.36.70 0ae04583-9b32-42ff-b44f-c5465d3759f2 2019-06-06 22:05:05.147403 9207 94 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 228\nquantity: !ruby/object:BigDecimal 18:0.35E2\nstatus: 1\nobservations: ferreteria (kiko)\nexpense_date: 2019-06-06\nexpense_code: PV1-E-85\n 1 Egreso por 35.0 registrado 189.186.36.70 1e35aeb1-3db0-4af6-8647-eb048c8fcea8 2019-06-06 22:21:14.666286 9208 944 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 228\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.35E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 94\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 1e35aeb1-3db0-4af6-8647-eb048c8fcea8 2019-06-06 22:21:14.688271 9209 718 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 228\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-06-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-406\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 62070c4f-e952-4da3-a20a-5e6aa69c3a25 2019-06-06 22:21:50.522493 9210 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 24 \N 189.186.36.70 62070c4f-e952-4da3-a20a-5e6aa69c3a25 2019-06-06 22:21:50.559445 9211 718 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 a821de87-4050-4d2e-b61b-dbe7eb60e3a6 2019-06-06 22:21:58.331501 9212 945 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 228\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 718\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-406\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.749E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-406 189.186.36.70 a821de87-4050-4d2e-b61b-dbe7eb60e3a6 2019-06-06 22:21:58.352034 9213 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-06 20:16:26.293326000 Z\n- &1 2019-06-06 20:29:48.173875000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-06 23:28:23.764671867 Z\nsign_in_count:\n- 369\n- 370\n 740 \N 189.186.36.70 203e2dec-af31-4dce-a9a0-979c1e1b936b 2019-06-06 23:28:23.770509 9214 3 User \N \N 3 User \N update ---\nunique_session_id:\n- KWCvwgbhMocAz4PyK3A3\n- WTKqFxp7287EGw2nYZqd\n 741 \N 189.186.36.70 203e2dec-af31-4dce-a9a0-979c1e1b936b 2019-06-06 23:28:23.783033 9215 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-06-05 01:46:20.882197000 Z\n- &1 2019-06-05 22:07:21.631954000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-07 00:36:35.351384731 Z\nsign_in_count:\n- 77\n- 78\n 156 \N 189.186.36.70 a1d1e101-ff90-453e-9a91-c476deccd33a 2019-06-07 00:36:35.358835 9216 10 User \N \N 10 User \N update ---\nunique_session_id:\n- eRZPqF6kXzX34HqRT1x7\n- B_J-nA2G-UPmaNi36ioa\n 157 \N 189.186.36.70 a1d1e101-ff90-453e-9a91-c476deccd33a 2019-06-07 00:36:35.373313 9217 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-06 20:29:48.173875000 Z\n- &1 2019-06-06 23:28:23.764671000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-07 00:38:12.642624534 Z\nsign_in_count:\n- 370\n- 371\n 742 \N 189.186.36.70 dc4a691f-6393-42a3-811a-c31e13f42d8f 2019-06-07 00:38:12.651186 9218 3 User \N \N 3 User \N update ---\nunique_session_id:\n- WTKqFxp7287EGw2nYZqd\n- xxW_VRz1RzZQM2uAaMyv\n 743 \N 189.186.36.70 dc4a691f-6393-42a3-811a-c31e13f42d8f 2019-06-07 00:38:12.670706 9219 946 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 229\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.975E3\nmove_type: '1'\nsale_id: 639\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.975E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-281 189.186.36.70 1922bc9e-4193-4113-be02-789445c18cd2 2019-06-07 00:38:33.19103 9220 639 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.36.70 e6a16565-b857-463c-81de-1573dfd0e7d3 2019-06-07 00:38:36.475213 9221 123 Customer \N \N 2 User \N create ---\nnick_name: ISAMAR ARELLANO\nphone: "(667) 176-7271"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ISAMAR ARELLANO fue registrado. 189.186.36.70 e141ddd0-f7bb-4d0a-b9ed-f29456f8793a 2019-06-07 01:13:14.712291 9431 240 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.209 bca92b72-0da7-481b-982a-31948f9155d2 2019-06-13 01:55:11.306181 9222 719 Sale \N \N 2 User \N create ---\ncustomer_id: 123\nuser_id: 2\nopen_cash_register_id: 228\namount: !ruby/object:BigDecimal 18:0.979E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.979E3\nstatus: 0\ndate_sale: 2019-06-06\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-407\nexpiration_date: 2019-07-11\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 ce1d8cdf-0659-4037-872d-f860e7aa90fa 2019-06-07 01:13:40.405748 9223 608 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.36.70 ce1d8cdf-0659-4037-872d-f860e7aa90fa 2019-06-07 01:13:40.459489 9224 947 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 228\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.42E3\nmove_type: '1'\nsale_id: 719\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-407\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.42E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-407 189.186.36.70 60d21205-3485-4528-9830-0b31f3a6ff3d 2019-06-07 01:13:49.410941 9225 719 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.36.70 e4fae79d-ad04-4bbd-af1f-dfe1a144d5a9 2019-06-07 01:13:53.987697 9226 226 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 228\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3016E4\namount_out: !ruby/object:BigDecimal 18:0.306E3\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.22E4\ncash_fund: !ruby/object:BigDecimal 18:0.1016E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3216E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.36.70 7bb33184-01df-4369-8052-96a252093c8d 2019-06-07 01:49:06.788384 9227 228 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 7bb33184-01df-4369-8052-96a252093c8d 2019-06-07 01:49:06.80911 9228 227 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 229\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1475E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.859E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2359E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.36.70 f2fe7ce4-b241-4438-964f-6cce2cf62afd 2019-06-07 01:59:26.444063 9229 229 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 f2fe7ce4-b241-4438-964f-6cce2cf62afd 2019-06-07 01:59:26.469767 9230 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-06 23:28:23.764671000 Z\n- &1 2019-06-07 00:38:12.642624000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-07 15:59:45.445779839 Z\nsign_in_count:\n- 371\n- 372\n 744 \N 189.186.36.70 d6a7d7af-80a8-47aa-97ac-76885d051fbf 2019-06-07 15:59:45.478512 9231 3 User \N \N 3 User \N update ---\nunique_session_id:\n- xxW_VRz1RzZQM2uAaMyv\n- YF_ZES8Ws2iu4Pm-rejs\n 745 \N 189.186.36.70 d6a7d7af-80a8-47aa-97ac-76885d051fbf 2019-06-07 15:59:45.503305 9232 230 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.859E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 859.0 189.186.36.70 8bb4e011-12a2-4a2b-bfa8-92f3bb3fef4d 2019-06-07 16:02:30.736405 9233 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-06 18:39:38.505942000 Z\n- &1 2019-06-06 18:59:10.958144000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-07 16:34:35.930566250 Z\nsign_in_count:\n- 148\n- 149\n 301 \N 189.186.36.70 5c0857b3-d232-4f20-86f0-5720863427f2 2019-06-07 16:34:35.938684 9234 2 User \N \N 2 User \N update ---\nunique_session_id:\n- HYVVxJ77v2RFKqv_Hnib\n- a-RyexZ3sMzoVwU6QKeY\n 302 \N 189.186.36.70 5c0857b3-d232-4f20-86f0-5720863427f2 2019-06-07 16:34:35.955337 9235 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-05 20:48:32.529069000 Z\n- &1 2019-06-05 23:15:34.639231000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-07 17:09:57.468056937 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092587\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095812\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095812\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933992\n mask_addr: 4294967295\nsign_in_count:\n- 265\n- 266\n 532 \N 200.68.134.40 d6587520-bc5b-4558-9bb6-9d20a419e2ed 2019-06-07 17:09:57.47704 9236 4 User \N \N 4 User \N update ---\nunique_session_id:\n- u1Rm2mQz9LosbRvsZ_Fd\n- Mx-snUdTZ2rDJXPVnQBQ\n 533 \N 200.68.134.40 d6587520-bc5b-4558-9bb6-9d20a419e2ed 2019-06-07 17:09:57.495755 9237 95 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 230\nquantity: !ruby/object:BigDecimal 18:0.2E3\nstatus: 1\nobservations: "$100 COMIDA KIKO $100 ADELANTO YARETZI"\nexpense_date: 2019-06-07\nexpense_code: PV2-E-10\n 1 Egreso por 200.0 registrado 189.186.36.70 5137ef30-84d9-4686-b400-b3f4f15c88b5 2019-06-07 22:05:58.093378 9238 948 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 230\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 95\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 5137ef30-84d9-4686-b400-b3f4f15c88b5 2019-06-07 22:05:58.146405 9239 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-05 23:15:34.639231000 Z\n- &1 2019-06-07 17:09:57.468056000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-08 01:50:40.356198977 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095812\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933992\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933992\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093761\n mask_addr: 4294967295\nsign_in_count:\n- 266\n- 267\n 534 \N 189.186.40.1 d1d6f030-cec2-4841-a2fb-78fbcb3ab9b6 2019-06-08 01:50:40.363942 9240 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Mx-snUdTZ2rDJXPVnQBQ\n- sxxLvwU-12UFZsfLFDhq\n 535 \N 189.186.40.1 d1d6f030-cec2-4841-a2fb-78fbcb3ab9b6 2019-06-08 01:50:40.37873 9241 228 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 230\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.2E3\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.659E3\nphysical_cash: !ruby/object:BigDecimal 18:0.659E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.36.70 3f170028-2766-4ff3-973e-885e0b68f9aa 2019-06-08 02:54:36.453575 9242 230 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 3f170028-2766-4ff3-973e-885e0b68f9aa 2019-06-08 02:54:36.466815 9243 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-07 00:38:12.642624000 Z\n- &1 2019-06-07 15:59:45.445779000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-08 15:55:41.854944684 Z\nsign_in_count:\n- 372\n- 373\n 746 \N 189.186.36.70 1ef44d8b-2312-493b-bfc2-dde76ccb973e 2019-06-08 15:55:41.884721 9244 3 User \N \N 3 User \N update ---\nunique_session_id:\n- YF_ZES8Ws2iu4Pm-rejs\n- 4iVBWyYj_f9BF7qcm1xm\n 747 \N 189.186.36.70 1ef44d8b-2312-493b-bfc2-dde76ccb973e 2019-06-08 15:55:41.906655 9245 231 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.659E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 659.0 189.186.36.70 9fcce710-b102-4d2a-842d-22de7ad3aa6d 2019-06-08 15:59:36.79794 9246 720 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 231\namount: !ruby/object:BigDecimal 18:0.70259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-06-08\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-311\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 af414d21-481a-4ff3-9aa9-67812829a618 2019-06-08 17:37:20.659845 9247 593 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 7 \N 189.186.36.70 af414d21-481a-4ff3-9aa9-67812829a618 2019-06-08 17:37:20.720605 9248 720 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 4a1922ac-22e9-4f78-a606-e61ab11782a6 2019-06-08 17:37:49.225739 9249 949 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 231\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 720\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-311\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-311 189.186.36.70 4a1922ac-22e9-4f78-a606-e61ab11782a6 2019-06-08 17:37:49.249272 9250 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-06 18:59:10.958144000 Z\n- &1 2019-06-07 16:34:35.930566000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-08 18:31:59.201788932 Z\nsign_in_count:\n- 149\n- 150\n 303 \N 189.186.36.70 7d90aab7-3aa6-4514-9923-be4d4bb50d27 2019-06-08 18:31:59.21965 9251 2 User \N \N 2 User \N update ---\nunique_session_id:\n- a-RyexZ3sMzoVwU6QKeY\n- zawdKWk43mSmcu-ePB5A\n 304 \N 189.186.36.70 7d90aab7-3aa6-4514-9923-be4d4bb50d27 2019-06-08 18:31:59.236815 9252 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-07 16:34:35.930566000 Z\n- &1 2019-06-08 18:31:59.201788000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-08 18:32:52.002803214 Z\nsign_in_count:\n- 150\n- 151\n 305 \N 189.186.36.70 896ada86-bc1d-4f21-98a3-67de0267e71a 2019-06-08 18:32:52.00925 9253 2 User \N \N 2 User \N update ---\nunique_session_id:\n- zawdKWk43mSmcu-ePB5A\n- YXnuLEwnJqxFvPFmTjKE\n 306 \N 189.186.36.70 896ada86-bc1d-4f21-98a3-67de0267e71a 2019-06-08 18:32:52.023599 9254 232 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1016E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1016.0 189.186.36.70 f6759480-b4b8-4de4-b387-78e006a594bc 2019-06-08 18:33:41.33038 9255 950 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 232\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.279E3\nmove_type: '1'\nsale_id: 610\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.279E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-341 189.186.36.70 1ebdca44-db98-486b-9cb4-25d5034f74da 2019-06-08 18:33:58.68912 9256 610 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.36.70 95607b95-a109-434d-a2f8-06d109514ea7 2019-06-08 18:34:01.17938 9257 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-07 17:09:57.468056000 Z\n- &1 2019-06-08 01:50:40.356198000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-08 18:44:15.973298194 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933992\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093761\n mask_addr: 4294967295\nsign_in_count:\n- 267\n- 268\n 536 \N 189.186.40.1 d874ae26-6193-4433-866a-f62fb586f5e7 2019-06-08 18:44:15.98052 9258 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sxxLvwU-12UFZsfLFDhq\n- WS4xx8w13vnBuu9yjiqe\n 537 \N 189.186.40.1 d874ae26-6193-4433-866a-f62fb586f5e7 2019-06-08 18:44:15.99646 9259 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-07 15:59:45.445779000 Z\n- &1 2019-06-08 15:55:41.854944000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-08 19:26:52.745489724 Z\nsign_in_count:\n- 373\n- 374\n 748 \N 189.186.36.70 63f2ce9d-689b-49b8-b096-c373853f960a 2019-06-08 19:26:52.751789 9260 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 4iVBWyYj_f9BF7qcm1xm\n- EXQRF9G3dEWGYRZH3a7s\n 749 \N 189.186.36.70 63f2ce9d-689b-49b8-b096-c373853f960a 2019-06-08 19:26:52.766181 9261 721 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 231\namount: !ruby/object:BigDecimal 18:0.21121E3\ntax: !ruby/object:BigDecimal 18:0.3379E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.245E3\nstatus: 0\ndate_sale: 2019-06-08\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-312\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 74c52b82-97d3-4419-a0ba-ba997f701502 2019-06-08 22:23:47.840196 9262 367 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.36.70 74c52b82-97d3-4419-a0ba-ba997f701502 2019-06-08 22:23:47.883642 9263 721 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 89c07c46-fea8-495c-8c7c-015334135b9b 2019-06-08 22:23:56.022168 9264 951 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 231\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.245E3\nmove_type: '1'\nsale_id: 721\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-312\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.245E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-312 189.186.36.70 89c07c46-fea8-495c-8c7c-015334135b9b 2019-06-08 22:23:56.057214 9265 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-08 18:31:59.201788000 Z\n- &1 2019-06-08 18:32:52.002803000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-08 22:26:32.589382514 Z\nsign_in_count:\n- 151\n- 152\n 307 \N 189.186.36.70 9d27b06d-293e-4345-8f5c-2a3481d07c41 2019-06-08 22:26:32.596466 9266 2 User \N \N 2 User \N update ---\nunique_session_id:\n- YXnuLEwnJqxFvPFmTjKE\n- jofswWRszMLYfyNJx9eo\n 308 \N 189.186.36.70 9d27b06d-293e-4345-8f5c-2a3481d07c41 2019-06-08 22:26:32.611207 9267 952 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 182\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 eda92ffc-ee83-40ca-b4f6-2b297e49c3fd 2019-06-08 22:27:06.639731 9268 182 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.36.70 eda92ffc-ee83-40ca-b4f6-2b297e49c3fd 2019-06-08 22:27:06.673577 9455 735 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 9ca0e119-ecfb-442f-b1f2-cbb845f3eab3 2019-06-13 20:06:26.652217 9269 952 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 49\n- 232\n 2 movimiento de efectivo por venta con folio PV1-V-104 189.186.36.70 eda92ffc-ee83-40ca-b4f6-2b297e49c3fd 2019-06-08 22:27:06.689565 9270 96 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 231\nquantity: !ruby/object:BigDecimal 18:0.1E3\nstatus: 1\nobservations: desayuno kiko\nexpense_date: 2019-06-08\nexpense_code: PV2-E-11\n 1 Egreso por 100.0 registrado 189.186.36.70 daed4256-dc3d-4d4e-86e2-165c8320cf7a 2019-06-08 22:28:55.324164 9271 953 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 231\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 96\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 daed4256-dc3d-4d4e-86e2-165c8320cf7a 2019-06-08 22:28:55.350578 9272 722 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 231\namount: !ruby/object:BigDecimal 18:0.111897E4\ntax: !ruby/object:BigDecimal 18:0.17903E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1298E4\nstatus: 0\ndate_sale: 2019-06-08\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-313\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 60c924fb-d447-46fe-80a0-7788fe452477 2019-06-08 22:50:17.693604 9273 408 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.36.70 60c924fb-d447-46fe-80a0-7788fe452477 2019-06-08 22:50:17.720346 9274 579 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 2 \N 189.186.36.70 60c924fb-d447-46fe-80a0-7788fe452477 2019-06-08 22:50:17.749772 9275 722 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 3b62a55d-43f8-440b-8fa3-19fe815c4095 2019-06-08 22:50:27.314333 9276 954 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 231\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1298E4\nmove_type: '1'\nsale_id: 722\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-313\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.202E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-313 189.186.36.70 3b62a55d-43f8-440b-8fa3-19fe815c4095 2019-06-08 22:50:27.344381 9277 97 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 232\nquantity: !ruby/object:BigDecimal 18:0.1028E4\nstatus: 1\nobservations: "$628 sueldo Rocio $300 horas extra $100 comida 07/08"\nexpense_date: 2019-06-08\nexpense_code: PV1-E-86\n 1 Egreso por 1028.0 registrado 189.186.36.70 cee8d31a-356e-4af4-9679-1f9705da5c04 2019-06-08 23:09:47.426102 9278 955 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 232\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1028E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 97\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 cee8d31a-356e-4af4-9679-1f9705da5c04 2019-06-08 23:09:47.447402 9279 229 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 232\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.579E3\namount_out: !ruby/object:BigDecimal 18:0.1028E4\nreceived_by_id: 14\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.567E3\nphysical_cash: !ruby/object:BigDecimal 18:0.567E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.36.70 e3eb8c0c-24bc-4c7c-916f-367df39864c0 2019-06-08 23:11:08.131336 9280 232 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 e3eb8c0c-24bc-4c7c-916f-367df39864c0 2019-06-08 23:11:08.146076 9281 98 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 231\nquantity: !ruby/object:BigDecimal 18:0.85E3\nstatus: 1\nobservations: sueldo yaretzy\nexpense_date: 2019-06-08\nexpense_code: PV2-E-12\n 1 Egreso por 850.0 registrado 189.186.36.70 a44040ef-021a-48ef-b466-79902cb6791b 2019-06-08 23:17:00.462692 9282 956 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 231\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.85E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 98\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 a44040ef-021a-48ef-b466-79902cb6791b 2019-06-08 23:17:00.484007 9283 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-08 01:50:40.356198000 Z\n- &1 2019-06-08 18:44:15.973298000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-09 01:13:40.117097635 Z\nsign_in_count:\n- 268\n- 269\n 538 \N 189.186.40.1 2762c1cd-52e0-47d5-8a44-0b2e878c4498 2019-06-09 01:13:40.126221 9284 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WS4xx8w13vnBuu9yjiqe\n- pH81TAqrnYi34cSFCVr9\n 539 \N 189.186.40.1 2762c1cd-52e0-47d5-8a44-0b2e878c4498 2019-06-09 01:13:40.148046 9285 233 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.567E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 567.0 189.186.36.70 8bfefeb0-a802-4551-9114-e0fa9c14f29b 2019-06-09 01:45:04.867293 9286 957 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 233\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1448E4\nmove_type: '1'\nsale_id: 672\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.52E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-373 189.186.36.70 cc451981-7ecd-4dfa-bf5e-31e3df3fdad8 2019-06-09 01:46:09.417372 9287 672 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.36.70 6aa9427b-f779-40e7-9211-181566ff876a 2019-06-09 01:46:11.691958 9288 723 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 231\namount: !ruby/object:BigDecimal 18:0.47328E3\ntax: !ruby/object:BigDecimal 18:0.7572E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-06-08\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-314\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 0b59add2-612d-4d92-88dc-f3983b797bd4 2019-06-09 01:48:59.977943 9289 368 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.36.70 0b59add2-612d-4d92-88dc-f3983b797bd4 2019-06-09 01:49:00.015533 9290 723 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 97e03980-9266-494a-8987-07ecfc7aa01c 2019-06-09 01:49:05.002834 9314 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-08 19:26:52.745489000 Z\n- &1 2019-06-09 16:04:12.891080000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-09 20:55:23.773922933 Z\nsign_in_count:\n- 375\n- 376\n 752 \N 189.186.36.70 9725088f-8808-488c-a185-d869e99ff485 2019-06-09 20:55:23.780957 9291 958 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 231\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 723\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-314\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-314 189.186.36.70 97e03980-9266-494a-8987-07ecfc7aa01c 2019-06-09 01:49:05.057392 9292 230 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 231\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.2791E4\namount_out: !ruby/object:BigDecimal 18:0.95E3\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.721E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2721E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.36.70 65786f7f-c159-4a29-8e85-9f4abead2fa4 2019-06-09 02:04:14.571744 9293 231 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 65786f7f-c159-4a29-8e85-9f4abead2fa4 2019-06-09 02:04:14.593624 9294 231 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 233\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1448E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.1448E4\ncash_fund: !ruby/object:BigDecimal 18:0.567E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2015E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.36.70 03ed9d37-558b-4ec3-84d0-b78d7540ff54 2019-06-09 02:18:35.978411 9295 233 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 03ed9d37-558b-4ec3-84d0-b78d7540ff54 2019-06-09 02:18:36.000938 9296 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-08 15:55:41.854944000 Z\n- &1 2019-06-08 19:26:52.745489000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-09 16:04:12.891080313 Z\nsign_in_count:\n- 374\n- 375\n 750 \N 189.186.36.70 c0e250f8-48c8-47c3-b859-9d9d7542dab1 2019-06-09 16:04:12.940074 9297 3 User \N \N 3 User \N update ---\nunique_session_id:\n- EXQRF9G3dEWGYRZH3a7s\n- YYKpKtq4iWx7ZEvA21y3\n 751 \N 189.186.36.70 c0e250f8-48c8-47c3-b859-9d9d7542dab1 2019-06-09 16:04:12.97048 9298 234 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.721E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 721.0 189.186.36.70 684a83ea-cac8-4708-aca2-bac162daa7dc 2019-06-09 16:11:20.221786 9299 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-08 18:44:15.973298000 Z\n- &1 2019-06-09 01:13:40.117097000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-09 17:17:52.770712374 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093761\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093136\n mask_addr: 4294967295\nsign_in_count:\n- 269\n- 270\n 540 \N 189.186.37.144 03a8524c-5109-41bd-90af-71538b97f188 2019-06-09 17:17:52.778108 9300 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pH81TAqrnYi34cSFCVr9\n- YXsAdNzYpPy7Mc6Uv2m1\n 541 \N 189.186.37.144 03a8524c-5109-41bd-90af-71538b97f188 2019-06-09 17:17:52.795486 9301 724 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 234\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-06-09\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-315\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 60f01181-3ca5-4860-afeb-df504919e6c5 2019-06-09 20:45:23.793108 9302 665 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.36.70 60f01181-3ca5-4860-afeb-df504919e6c5 2019-06-09 20:45:23.825662 9303 724 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 40f47ebc-e92f-4cc4-a2da-02fe53cff0be 2019-06-09 20:46:06.5504 9304 959 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 234\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 724\ncardnumber: 6073\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-315\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-315 189.186.36.70 40f47ebc-e92f-4cc4-a2da-02fe53cff0be 2019-06-09 20:46:06.577189 9305 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-08 18:32:52.002803000 Z\n- &1 2019-06-08 22:26:32.589382000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-09 20:47:37.277605492 Z\nsign_in_count:\n- 152\n- 153\n 309 \N 189.186.36.70 dd4dcc81-ffaa-4031-a62f-45e62ceb12e6 2019-06-09 20:47:37.283384 9306 2 User \N \N 2 User \N update ---\nunique_session_id:\n- jofswWRszMLYfyNJx9eo\n- 2L9JpLP_p3b8zM-uCKNG\n 310 \N 189.186.36.70 dd4dcc81-ffaa-4031-a62f-45e62ceb12e6 2019-06-09 20:47:37.296984 9307 235 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.567E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 567.0 189.186.36.70 5fa0f822-5023-44ae-8805-70d09bcb43cd 2019-06-09 20:47:46.008509 9308 725 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 235\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2019-06-09\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-408\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.36.70 36f1c2f9-03e4-4e9c-a195-8ace6832d661 2019-06-09 20:48:01.402806 9309 601 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.36.70 36f1c2f9-03e4-4e9c-a195-8ace6832d661 2019-06-09 20:48:01.428934 9310 725 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.36.70 869c6d84-888c-4701-b469-efb6d3e4bb61 2019-06-09 20:48:50.951375 9311 960 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 235\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 725\ncardnumber: 6073\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-408\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-408 189.186.36.70 869c6d84-888c-4701-b469-efb6d3e4bb61 2019-06-09 20:48:50.973501 9312 232 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 235\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1499E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.567E3\nphysical_cash: !ruby/object:BigDecimal 18:0.567E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.36.70 4b0cee3a-92ea-4156-950c-5cd082afeb45 2019-06-09 20:52:59.095259 9313 235 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 4b0cee3a-92ea-4156-950c-5cd082afeb45 2019-06-09 20:52:59.108196 9316 99 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 234\nquantity: !ruby/object:BigDecimal 18:0.157E3\nstatus: 1\nobservations: COMPRA DE KIKO EN FERRETERIA YAQUI\nexpense_date: 2019-06-09\nexpense_code: PV2-E-13\n 1 Egreso por 157.0 registrado 189.186.36.70 47c57d3c-93f0-4523-afee-425f7128bddb 2019-06-09 20:56:45.720394 9317 961 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 234\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.157E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 99\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.36.70 47c57d3c-93f0-4523-afee-425f7128bddb 2019-06-09 20:56:45.750835 9318 233 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 234\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1599E4\namount_out: !ruby/object:BigDecimal 18:0.157E3\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.564E3\nphysical_cash: !ruby/object:BigDecimal 18:0.564E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.36.70 97138c4a-6379-4e11-8e21-61d89fc0e7a8 2019-06-09 20:58:15.099789 9319 234 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.36.70 97138c4a-6379-4e11-8e21-61d89fc0e7a8 2019-06-09 20:58:15.116392 9320 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-09 16:04:12.891080000 Z\n- &1 2019-06-09 20:55:23.773922000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-10 20:35:38.763335269 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097081\n mask_addr: 4294967295\nsign_in_count:\n- 376\n- 377\n 754 \N 189.186.52.249 ce78b3aa-002b-4fba-854a-fb5075ec6bf5 2019-06-10 20:35:38.812063 9321 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Nxin2LoXwv3myvWjddTA\n- ugypoG9f-mjnxzn2Wgfj\n 755 \N 189.186.52.249 ce78b3aa-002b-4fba-854a-fb5075ec6bf5 2019-06-10 20:35:38.846137 9322 433 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.52.249 28f24fb6-5266-404c-8d59-396eb6c262c3 2019-06-10 20:36:04.086424 9323 433 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.52.249 b361243f-31ce-4390-8483-f91216bdab77 2019-06-10 20:36:15.053222 9324 58 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-06-10\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.52.249 eeb61e03-bdd5-4343-86f5-8a1251561b87 2019-06-10 20:36:17.737428 9325 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-08 22:26:32.589382000 Z\n- &1 2019-06-09 20:47:37.277605000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-10 20:37:48.147050112 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097081\n mask_addr: 4294967295\nsign_in_count:\n- 153\n- 154\n 311 \N 189.186.52.249 1af52ae6-31b7-4e3f-8ec2-9fffc4d49bf3 2019-06-10 20:37:48.155493 9326 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 2L9JpLP_p3b8zM-uCKNG\n- svbEgrTGS67dci3guF2_\n 312 \N 189.186.52.249 1af52ae6-31b7-4e3f-8ec2-9fffc4d49bf3 2019-06-10 20:37:48.174029 9327 236 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.567E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 567.0 189.186.52.249 1991da80-63ee-4cbc-a6f6-ed1697fc8378 2019-06-10 20:38:11.372991 9328 58 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-06-10\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.52.249 554dcf7e-ddec-48e9-90e0-2fb28b0b2d42 2019-06-10 20:38:58.349291 9329 671 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 435\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.52.249 554dcf7e-ddec-48e9-90e0-2fb28b0b2d42 2019-06-10 20:38:58.379718 9330 57 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-06-10\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.52.249 95773b60-ba55-4ad8-be84-5a9766c67392 2019-06-10 20:39:11.181687 9331 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 25 \N 189.186.52.249 95773b60-ba55-4ad8-be84-5a9766c67392 2019-06-10 20:39:11.199882 9332 150 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.52.249 36246f60-342b-4705-8823-20c27ced8edb 2019-06-10 20:39:49.119812 9333 150 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.52.249 4c7c6f11-063d-4293-9149-a50ddce2ba2e 2019-06-10 20:39:52.019196 9334 59 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-06-10\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.52.249 4b994745-16a0-46f9-8684-11b6aa720bbe 2019-06-10 20:39:53.38347 9335 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-09 01:13:40.117097000 Z\n- &1 2019-06-09 17:17:52.770712000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-10 22:02:22.588861095 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093761\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093136\n mask_addr: 4294967295\nsign_in_count:\n- 270\n- 271\n 542 \N 189.186.37.144 38a11e2b-ea7f-47a2-b47f-6ef43460e7f7 2019-06-10 22:02:22.600077 9336 4 User \N \N 4 User \N update ---\nunique_session_id:\n- YXsAdNzYpPy7Mc6Uv2m1\n- tb83JL8-q6gZtNhbuT3u\n 543 \N 189.186.37.144 38a11e2b-ea7f-47a2-b47f-6ef43460e7f7 2019-06-10 22:02:22.623823 9337 962 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 236\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.559E3\nmove_type: '1'\nsale_id: 719\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.559E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-407 189.186.52.249 8de8a99f-5c8c-41e8-bd29-0fe0efab5e72 2019-06-10 22:15:23.741747 9338 719 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.52.249 121a5902-d4f0-4d90-9db6-58869225de07 2019-06-10 22:15:25.380802 9339 59 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-06-10\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.52.249 15bbce49-740b-46b3-a852-7aad66267c7a 2019-06-10 23:13:43.585334 9340 436 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.7E1\n 7 \N 189.186.52.249 15bbce49-740b-46b3-a852-7aad66267c7a 2019-06-10 23:13:43.609816 9341 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-09 17:17:52.770712000 Z\n- &1 2019-06-10 22:02:22.588861000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-10 23:21:28.072420338 Z\nsign_in_count:\n- 271\n- 272\n 544 \N 189.186.37.144 9484d52b-9dff-433d-b237-192c669646ae 2019-06-10 23:21:28.079722 9342 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tb83JL8-q6gZtNhbuT3u\n- _35csx4hbyRAW7xF6U3h\n 545 \N 189.186.37.144 9484d52b-9dff-433d-b237-192c669646ae 2019-06-10 23:21:28.09947 9343 124 Customer \N \N 2 User \N create ---\nnick_name: YAJAIRA LOPEZ\nphone: "(667) 265-6051"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente YAJAIRA LOPEZ fue registrado. 189.186.52.249 fb191126-9e51-4e71-9f51-53481a422175 2019-06-11 00:27:32.204846 9344 726 Sale \N \N 2 User \N create ---\ncustomer_id: 124\nuser_id: 2\nopen_cash_register_id: 236\namount: !ruby/object:BigDecimal 18:0.86121E3\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-06-10\nsaletype: 2\nseller_id: 10\nsale_code: PV1-V-409\nexpiration_date: 2019-07-15\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.52.249 32d95cf0-4c68-46de-9ef2-7120f3914faa 2019-06-11 00:27:58.431024 9345 202 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.52.249 32d95cf0-4c68-46de-9ef2-7120f3914faa 2019-06-11 00:27:58.477673 9346 963 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 236\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 726\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-409\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-409 189.186.52.249 7c2a8719-472e-4706-be77-1f76d059f3b5 2019-06-11 00:28:03.296318 9347 726 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.52.249 df74ce36-8c65-4d4a-aab9-de397640273f 2019-06-11 00:28:04.915719 9348 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-02 00:07:41.455314000 Z\n- &1 2019-06-02 20:25:17.105449000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-11 00:46:30.355034127 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097081\n mask_addr: 4294967295\nsign_in_count:\n- 222\n- 223\n 446 \N 189.186.52.249 22734982-a6f4-4cc1-8acb-7bc72afbde0e 2019-06-11 00:46:30.364955 9349 12 User \N \N 12 User \N update ---\nunique_session_id:\n- GK-nVDEfLAzx5V4KmosS\n- QW2SqUj3rT-spyA4HYLu\n 447 \N 189.186.52.249 22734982-a6f4-4cc1-8acb-7bc72afbde0e 2019-06-11 00:46:30.386693 9350 727 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 236\namount: !ruby/object:BigDecimal 18:0.1249E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1249E4\nstatus: 0\ndate_sale: 2019-06-10\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-410\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.52.249 ed8ae79f-5dd0-4a81-aaaf-37a7dcb7605d 2019-06-11 01:39:37.279501 9351 639 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.52.249 ed8ae79f-5dd0-4a81-aaaf-37a7dcb7605d 2019-06-11 01:39:37.310461 9352 727 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.52.249 413251ce-ab73-4103-ad9a-214adbca1882 2019-06-11 01:40:03.080494 9353 964 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 236\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1249E4\nmove_type: '1'\nsale_id: 727\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-410\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.251E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-410 189.186.52.249 413251ce-ab73-4103-ad9a-214adbca1882 2019-06-11 01:40:03.116902 9354 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-09 20:55:23.773922000 Z\n- &1 2019-06-10 20:35:38.763335000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-11 01:52:19.895067479 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097081\n mask_addr: 4294967295\nsign_in_count:\n- 377\n- 378\n 756 \N 189.186.52.249 d60bee9c-9e25-401b-9b1d-de3db15124be 2019-06-11 01:52:19.906179 9355 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ugypoG9f-mjnxzn2Wgfj\n- T6u1PKakCznvEZnBa7Px\n 757 \N 189.186.52.249 d60bee9c-9e25-401b-9b1d-de3db15124be 2019-06-11 01:52:19.926914 9356 237 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.564E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 564.0 189.186.52.249 5f919e2e-4a87-423c-bc97-f7696b3565a3 2019-06-11 01:52:55.754068 9357 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-10 22:02:22.588861000 Z\n- &1 2019-06-10 23:21:28.072420000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-11 01:54:39.345983353 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093136\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097081\n mask_addr: 4294967295\nsign_in_count:\n- 272\n- 273\n 546 \N 189.186.52.249 9ea4735c-a56e-4dac-a70c-eca42edffc91 2019-06-11 01:54:39.353964 9358 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _35csx4hbyRAW7xF6U3h\n- qvRzr6McuwK6Nd2gQBXm\n 547 \N 189.186.52.249 9ea4735c-a56e-4dac-a70c-eca42edffc91 2019-06-11 01:54:39.373747 9359 234 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 237\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.77E3\nphysical_cash: !ruby/object:BigDecimal 18:0.177E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.52.249 a6fff4d4-d445-433f-b4ca-e4f10b33a716 2019-06-11 02:02:38.444547 9360 237 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.52.249 a6fff4d4-d445-433f-b4ca-e4f10b33a716 2019-06-11 02:02:38.469141 9361 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-06-01 00:40:08.558347000 Z\n- &1 2019-06-01 01:13:14.656057000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-11 02:03:44.058168644 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097081\n mask_addr: 4294967295\nsign_in_count:\n- 60\n- 61\n 122 \N 189.186.52.249 89de6251-e46e-40c4-8625-5851577db310 2019-06-11 02:03:44.066601 9362 9 User \N \N 9 User \N update ---\nunique_session_id:\n- C7vwieApQsR6mfxMzMPh\n- tjrUzJ4PFEPcs4m2xg3J\n 123 \N 189.186.52.249 89de6251-e46e-40c4-8625-5851577db310 2019-06-11 02:03:44.082123 9479 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-13 16:04:46.414499000 Z\n- &1 2019-06-13 22:20:49.567057000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-14 01:03:24.646963939 Z\nsign_in_count:\n- 384\n- 385\n 770 \N 189.186.40.209 45ed0371-e1dc-4deb-8a4f-5a70a54eacb8 2019-06-14 01:03:24.656958 9363 235 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 236\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.2008E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.575E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2575E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.52.249 b0909b44-d8c4-4b11-8d33-a5e382f74af6 2019-06-11 02:07:16.702538 9364 236 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.52.249 b0909b44-d8c4-4b11-8d33-a5e382f74af6 2019-06-11 02:07:16.71798 9365 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-10 23:21:28.072420000 Z\n- &1 2019-06-11 01:54:39.345983000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-11 02:58:41.714234219 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093136\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097081\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097081\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093136\n mask_addr: 4294967295\nsign_in_count:\n- 273\n- 274\n 548 \N 189.186.37.144 1ab3613d-4fc4-4b29-b9fb-34b452c8df73 2019-06-11 02:58:41.72608 9366 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qvRzr6McuwK6Nd2gQBXm\n- NHdTxxzGJsx2FCfypkUt\n 549 \N 189.186.37.144 1ab3613d-4fc4-4b29-b9fb-34b452c8df73 2019-06-11 02:58:41.7465 9367 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-09 20:47:37.277605000 Z\n- &1 2019-06-10 20:37:48.147050000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-11 15:50:41.432070448 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097081\n mask_addr: 4294967295\nsign_in_count:\n- 154\n- 155\n 313 \N 189.186.52.249 1cca6a3f-bb93-4c2d-bb45-8bbda20dd44a 2019-06-11 15:50:41.465899 9368 2 User \N \N 2 User \N update ---\nunique_session_id:\n- svbEgrTGS67dci3guF2_\n- wFi8eFqveYmGgDvoq531\n 314 \N 189.186.52.249 1cca6a3f-bb93-4c2d-bb45-8bbda20dd44a 2019-06-11 15:50:41.495839 9369 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-10 20:35:38.763335000 Z\n- &1 2019-06-11 01:52:19.895067000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-11 15:55:01.243066337 Z\nsign_in_count:\n- 378\n- 379\n 758 \N 189.186.52.249 6f3bfd14-45d2-40d0-a98d-7d2d4480a56b 2019-06-11 15:55:01.250415 9370 3 User \N \N 3 User \N update ---\nunique_session_id:\n- T6u1PKakCznvEZnBa7Px\n- 41aGCQK9dyEP595VSSpq\n 759 \N 189.186.52.249 6f3bfd14-45d2-40d0-a98d-7d2d4480a56b 2019-06-11 15:55:01.270038 9371 238 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.77E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 770.0 189.186.52.249 7330c7c3-984e-4dfb-b869-65e3ef8a03f6 2019-06-11 15:57:48.427754 9372 239 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.575E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 575.0 189.186.52.249 df14e83e-a99d-47bf-80e7-6a212ac5c2a3 2019-06-11 15:58:52.288486 9373 965 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 239\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.328E3\nmove_type: '1'\nsale_id: 468\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.328E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-254 189.186.52.249 cbe41f61-5955-4b0e-bf23-f8313fa5dc08 2019-06-11 16:31:41.078969 9374 468 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.52.249 7ff0023f-96dc-49e3-8f37-c0ada7606c76 2019-06-11 16:31:43.014664 9375 728 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 239\namount: !ruby/object:BigDecimal 18:0.829E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.829E3\nstatus: 0\ndate_sale: 2019-06-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-411\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.52.249 d9f755b8-8cd5-4442-a67b-c452cdc8c93e 2019-06-11 17:16:35.224904 9376 607 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.52.249 d9f755b8-8cd5-4442-a67b-c452cdc8c93e 2019-06-11 17:16:35.331195 9377 728 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.52.249 8a1501cf-c6b9-459c-b3f1-fcc9336756d8 2019-06-11 17:18:25.696721 9378 966 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 239\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.829E3\nmove_type: '1'\nsale_id: 728\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-411\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.829E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-411 189.186.52.249 8a1501cf-c6b9-459c-b3f1-fcc9336756d8 2019-06-11 17:18:25.735637 9379 729 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 238\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-06-11\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-316\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.52.249 5f06a701-9f59-4bee-97fb-a251190e1b1a 2019-06-11 18:04:33.120567 9380 665 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.52.249 5f06a701-9f59-4bee-97fb-a251190e1b1a 2019-06-11 18:04:33.148355 9381 729 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.52.249 0506bbbd-4db9-48fd-ae5b-f523049190ee 2019-06-11 18:05:08.691975 9382 967 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 238\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 729\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-316\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-316 189.186.52.249 0506bbbd-4db9-48fd-ae5b-f523049190ee 2019-06-11 18:05:08.713756 9383 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-11 01:54:39.345983000 Z\n- &1 2019-06-11 02:58:41.714234000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-11 20:24:04.008479908 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097081\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093136\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093136\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938128\n mask_addr: 4294967295\nsign_in_count:\n- 274\n- 275\n 550 \N 200.68.150.80 fd283c00-0cfc-41d2-b7a8-228acad68fee 2019-06-11 20:24:04.04336 9384 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NHdTxxzGJsx2FCfypkUt\n- 6kGdd9vABid93zTDXUuW\n 551 \N 200.68.150.80 fd283c00-0cfc-41d2-b7a8-228acad68fee 2019-06-11 20:24:04.073344 9385 730 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 239\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-06-11\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-412\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.52.249 a6e34d2e-6cca-4b7a-864a-0687f6c10170 2019-06-11 23:17:22.802598 9386 600 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.52.249 a6e34d2e-6cca-4b7a-864a-0687f6c10170 2019-06-11 23:17:22.844487 9387 730 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.52.249 2451934c-1092-4e56-a1c4-8a7e35860c0c 2019-06-11 23:17:50.795039 9388 968 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 239\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 730\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-412\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.401E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-412 189.186.52.249 2451934c-1092-4e56-a1c4-8a7e35860c0c 2019-06-11 23:17:50.818201 9389 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-11 02:58:41.714234000 Z\n- &1 2019-06-11 20:24:04.008479000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-11 23:22:25.644479693 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093136\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938128\n mask_addr: 4294967295\nsign_in_count:\n- 275\n- 276\n 552 \N 200.68.150.80 f683da86-a065-4b78-accd-f8e36c2e6576 2019-06-11 23:22:25.656302 9390 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6kGdd9vABid93zTDXUuW\n- Lnev7oLE86pEbV5s1o96\n 553 \N 200.68.150.80 f683da86-a065-4b78-accd-f8e36c2e6576 2019-06-11 23:22:25.686466 9391 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-02 20:25:17.105449000 Z\n- &1 2019-06-11 00:46:30.355034000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-12 01:44:09.250824159 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097081\n mask_addr: 4294967295\nsign_in_count:\n- 223\n- 224\n 448 \N 189.186.52.249 2977518a-ab60-41d0-9e05-51e6a5eae134 2019-06-12 01:44:09.271986 9392 12 User \N \N 12 User \N update ---\nunique_session_id:\n- QW2SqUj3rT-spyA4HYLu\n- 78_SaLc4USGCmNqNUprM\n 449 \N 189.186.52.249 2977518a-ab60-41d0-9e05-51e6a5eae134 2019-06-12 01:44:09.297072 9393 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-11 01:52:19.895067000 Z\n- &1 2019-06-11 15:55:01.243066000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-12 01:45:05.417248342 Z\nsign_in_count:\n- 379\n- 380\n 760 \N 189.186.52.249 74cab81b-c5bc-471b-8438-b301c74f2a51 2019-06-12 01:45:05.424193 9394 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 41aGCQK9dyEP595VSSpq\n- KTexk-j3SbNLhtqCcxDq\n 761 \N 189.186.52.249 74cab81b-c5bc-471b-8438-b301c74f2a51 2019-06-12 01:45:05.440533 9395 236 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 238\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1599E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.17E4\ncash_fund: !ruby/object:BigDecimal 18:0.669E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2369E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.52.249 06e76171-0f5b-45e2-b8a6-2ce45624fa45 2019-06-12 01:54:19.602241 9396 238 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.52.249 06e76171-0f5b-45e2-b8a6-2ce45624fa45 2019-06-12 01:54:19.619313 9397 237 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 239\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2256E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.831E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2831E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.52.249 0552bf23-cceb-4b8e-8e70-af172539e203 2019-06-12 01:59:02.938558 9398 239 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.52.249 0552bf23-cceb-4b8e-8e70-af172539e203 2019-06-12 01:59:02.955456 9399 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-11 20:24:04.008479000 Z\n- &1 2019-06-11 23:22:25.644479000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-12 02:03:24.266492928 Z\nsign_in_count:\n- 276\n- 277\n 554 \N 200.68.150.80 9a7d4f7e-b2b7-45e3-8d26-5d7f866e72b8 2019-06-12 02:03:24.282601 9400 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Lnev7oLE86pEbV5s1o96\n- 6WbiSpRGP7jt9mjRB7zM\n 555 \N 200.68.150.80 9a7d4f7e-b2b7-45e3-8d26-5d7f866e72b8 2019-06-12 02:03:24.306207 9401 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-11 15:55:01.243066000 Z\n- &1 2019-06-12 01:45:05.417248000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-12 15:56:05.414631585 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097081\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093969\n mask_addr: 4294967295\nsign_in_count:\n- 380\n- 381\n 762 \N 189.186.40.209 f2f64a95-c8ae-4cc4-886e-9bbdaaf448fd 2019-06-12 15:56:05.442882 9402 3 User \N \N 3 User \N update ---\nunique_session_id:\n- KTexk-j3SbNLhtqCcxDq\n- RG798ijL7LArzdRFX7py\n 763 \N 189.186.40.209 f2f64a95-c8ae-4cc4-886e-9bbdaaf448fd 2019-06-12 15:56:05.464515 9403 240 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.669E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 669.0 189.186.40.209 a4abbe5c-f908-4db4-8107-547970706922 2019-06-12 15:57:26.323213 9404 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-10 20:37:48.147050000 Z\n- &1 2019-06-11 15:50:41.432070000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-12 16:07:00.034354177 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097081\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093969\n mask_addr: 4294967295\nsign_in_count:\n- 155\n- 156\n 315 \N 189.186.40.209 15c95d93-67bb-4dee-ad21-0cc3b94daa39 2019-06-12 16:07:00.041367 9405 2 User \N \N 2 User \N update ---\nunique_session_id:\n- wFi8eFqveYmGgDvoq531\n- XWxmbSivFi_sXYiTvcsU\n 316 \N 189.186.40.209 15c95d93-67bb-4dee-ad21-0cc3b94daa39 2019-06-12 16:07:00.073404 9406 241 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.831E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 831.0 189.186.40.209 10c75f46-39b7-4efc-90cc-d2ba9f99e0e0 2019-06-12 16:07:30.589649 9407 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-11 23:22:25.644479000 Z\n- &1 2019-06-12 02:03:24.266492000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-12 18:02:33.235548188 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938128\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093136\n mask_addr: 4294967295\nsign_in_count:\n- 277\n- 278\n 556 \N 189.186.37.144 9a2000d3-5606-4677-b004-79489424eef7 2019-06-12 18:02:33.242492 9408 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6WbiSpRGP7jt9mjRB7zM\n- LiGzghjhMsbfz77kt6cA\n 557 \N 189.186.37.144 9a2000d3-5606-4677-b004-79489424eef7 2019-06-12 18:02:33.256986 9409 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-11 00:46:30.355034000 Z\n- &1 2019-06-12 01:44:09.250824000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-12 20:48:04.613789040 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097081\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093969\n mask_addr: 4294967295\nsign_in_count:\n- 224\n- 225\n 450 \N 189.186.40.209 01960187-02eb-4614-be26-9be98c47f889 2019-06-12 20:48:04.623191 9410 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 78_SaLc4USGCmNqNUprM\n- XtcU6VT1gsuGSsxDDG2m\n 451 \N 189.186.40.209 01960187-02eb-4614-be26-9be98c47f889 2019-06-12 20:48:04.644035 9411 125 Customer \N \N 2 User \N create ---\nnick_name: AZUCENA QUINTERO\nphone: "(667) 214-8714"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente AZUCENA QUINTERO fue registrado. 189.186.40.209 e0b0c8e2-6680-4d4f-a9ab-95c2f47d43fc 2019-06-12 22:26:39.816426 9412 731 Sale \N \N 2 User \N create ---\ncustomer_id: 125\nuser_id: 2\nopen_cash_register_id: 241\namount: !ruby/object:BigDecimal 18:0.1392E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1392E4\nstatus: 0\ndate_sale: 2019-06-12\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-413\nexpiration_date: 2019-07-17\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 1cdf998f-f9fd-4949-9080-4a843193ef43 2019-06-12 22:26:55.818522 9413 531 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.40.209 1cdf998f-f9fd-4949-9080-4a843193ef43 2019-06-12 22:26:55.849971 9414 969 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 241\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.278E3\nmove_type: '1'\nsale_id: 731\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-413\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.22E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-413 189.186.40.209 8da677ab-abd6-4573-8c75-402d3f568e78 2019-06-12 22:27:05.291867 9415 731 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.40.209 c9cf48b5-7d98-4d31-8668-859208de42f3 2019-06-12 22:27:06.592061 9416 970 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 241\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.22E2\nmove_type: '1'\nsale_id: 731\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.22E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-413 189.186.40.209 8622e5b7-6e17-4c68-b9cb-09d63aecccfb 2019-06-12 22:27:51.873591 9417 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-12 02:03:24.266492000 Z\n- &1 2019-06-12 18:02:33.235548000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-12 22:33:12.582772483 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938128\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093136\n mask_addr: 4294967295\nsign_in_count:\n- 278\n- 279\n 558 \N 189.186.37.144 49a01dee-aba8-48fe-81c3-7dd508bab56f 2019-06-12 22:33:12.593543 9418 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LiGzghjhMsbfz77kt6cA\n- xhLLbuKHEHtz9C1gr9ws\n 559 \N 189.186.37.144 49a01dee-aba8-48fe-81c3-7dd508bab56f 2019-06-12 22:33:12.614474 9419 7 ProductsReturn \N \N 2 User \N create ---\nsale_id: 725\nuser_id: 2\nreturn_code: PV1-D-4\npointsale_id: 1\nnew_amount: !ruby/object:BigDecimal 18:0.2091E4\nreturned_amount: !ruby/object:BigDecimal 18:0.1499E4\ndifference_amount: !ruby/object:BigDecimal 18:0.592E3\nis_money_returned: false\n 1 devolución PV1-D-4 creada. 189.186.40.209 22270a7f-ed5b-4fac-89e1-1e1152f660f6 2019-06-12 22:39:20.483651 9420 601 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 189.186.40.209 22270a7f-ed5b-4fac-89e1-1e1152f660f6 2019-06-12 22:39:20.514931 9421 531 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.40.209 22270a7f-ed5b-4fac-89e1-1e1152f660f6 2019-06-12 22:39:20.547384 9422 527 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.40.209 22270a7f-ed5b-4fac-89e1-1e1152f660f6 2019-06-12 22:39:20.567065 9423 971 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 241\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.592E3\nmove_type: '1'\nsale_id: 725\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.592E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 7\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV1-D-4 189.186.40.209 0cdc02c6-c638-4777-a9de-47a208e944f5 2019-06-12 22:39:30.215347 9424 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-12 01:44:09.250824000 Z\n- &1 2019-06-12 20:48:04.613789000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-12 23:32:43.471282881 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097081\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093969\n mask_addr: 4294967295\nsign_in_count:\n- 225\n- 226\n 452 \N 189.186.40.209 b3c240c0-35d5-4442-84e5-ec44d6c2269e 2019-06-12 23:32:43.483053 9425 12 User \N \N 12 User \N update ---\nunique_session_id:\n- XtcU6VT1gsuGSsxDDG2m\n- f4xgDU7HzeGMbWXBsXoJ\n 453 \N 189.186.40.209 b3c240c0-35d5-4442-84e5-ec44d6c2269e 2019-06-12 23:32:43.503788 9426 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-12 20:48:04.613789000 Z\n- &1 2019-06-12 23:32:43.471282000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-13 00:37:12.107634480 Z\nsign_in_count:\n- 226\n- 227\n 454 \N 189.186.40.209 7384be02-b7ff-460e-84a3-cd3b51fdb1e2 2019-06-13 00:37:12.114222 9427 12 User \N \N 12 User \N update ---\nunique_session_id:\n- f4xgDU7HzeGMbWXBsXoJ\n- bsYAQaJzEEk-GzhcezRj\n 455 \N 189.186.40.209 7384be02-b7ff-460e-84a3-cd3b51fdb1e2 2019-06-13 00:37:12.129126 9428 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-12 01:45:05.417248000 Z\n- &1 2019-06-12 15:56:05.414631000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-13 01:22:15.984204002 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097081\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093969\n mask_addr: 4294967295\nsign_in_count:\n- 381\n- 382\n 764 \N 189.186.40.209 9440ce02-e233-4cb4-a1b4-e87a6bd83264 2019-06-13 01:22:15.998529 9429 3 User \N \N 3 User \N update ---\nunique_session_id:\n- RG798ijL7LArzdRFX7py\n- bKQ1d8yJCAyrK29fU5Q2\n 765 \N 189.186.40.209 9440ce02-e233-4cb4-a1b4-e87a6bd83264 2019-06-13 01:22:16.027016 9430 238 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 240\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.669E3\nphysical_cash: !ruby/object:BigDecimal 18:0.669E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.40.209 bca92b72-0da7-481b-982a-31948f9155d2 2019-06-13 01:55:11.28872 9432 239 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 241\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.892E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.723E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1723E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.40.209 66803526-0ab8-4b77-bfe2-fa6c22d21797 2019-06-13 02:01:51.540272 9433 241 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.209 66803526-0ab8-4b77-bfe2-fa6c22d21797 2019-06-13 02:01:51.559029 9434 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-12 15:56:05.414631000 Z\n- &1 2019-06-13 01:22:15.984204000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-13 16:04:46.414499711 Z\nsign_in_count:\n- 382\n- 383\n 766 \N 189.186.40.209 bd329849-974c-48c7-91a1-1c2009476212 2019-06-13 16:04:46.442769 9435 3 User \N \N 3 User \N update ---\nunique_session_id:\n- bKQ1d8yJCAyrK29fU5Q2\n- BakTxNSwsUVaJgxN9W9P\n 767 \N 189.186.40.209 bd329849-974c-48c7-91a1-1c2009476212 2019-06-13 16:04:46.464777 9436 242 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.669E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 669.0 189.186.40.209 926b79eb-1161-4bba-bf11-3cfc25ca791c 2019-06-13 16:04:59.536123 9437 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-11 15:50:41.432070000 Z\n- &1 2019-06-12 16:07:00.034354000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-13 16:12:53.867825154 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097081\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093969\n mask_addr: 4294967295\nsign_in_count:\n- 156\n- 157\n 317 \N 189.186.40.209 ff7b5adb-7348-48e2-bc94-025cd10f1c09 2019-06-13 16:12:53.900724 9438 2 User \N \N 2 User \N update ---\nunique_session_id:\n- XWxmbSivFi_sXYiTvcsU\n- uQ3t-SMc-BZ2zuSn5z-3\n 318 \N 189.186.40.209 ff7b5adb-7348-48e2-bc94-025cd10f1c09 2019-06-13 16:12:53.934216 9439 97 Customer \N \N 2 User \N update ---\nphone:\n- "(257) 765-6___"\n- "(667) 467-2180"\n 2 El cliente INDELIZA VILLEGAS fue registrado. 189.186.40.209 e007e5cc-ed88-42b1-bc00-bb82a9734e0e 2019-06-13 16:14:49.303665 9440 243 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.723E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 723.0 189.186.40.209 50b36f5f-c487-4096-a528-1b97d5132110 2019-06-13 16:20:10.781673 9441 732 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 243\namount: !ruby/object:BigDecimal 18:0.57728E3\ntax: !ruby/object:BigDecimal 18:0.7172E2\ndiscount: !ruby/object:BigDecimal 18:0.129E3\ntotal: !ruby/object:BigDecimal 18:0.52E3\nstatus: 0\ndate_sale: 2019-06-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-414\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 2aa13c1c-68f4-4263-b966-fed95544a3c2 2019-06-13 16:51:48.374638 9442 94 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.40.209 2aa13c1c-68f4-4263-b966-fed95544a3c2 2019-06-13 16:51:48.404745 9443 732 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 ec1163b3-8fc5-4272-a1f4-2eea574e6995 2019-06-13 16:52:54.457121 9444 972 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 243\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.52E3\nmove_type: '1'\nsale_id: 732\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-414\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.52E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-414 189.186.40.209 ec1163b3-8fc5-4272-a1f4-2eea574e6995 2019-06-13 16:52:54.480208 9445 733 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 243\namount: !ruby/object:BigDecimal 18:0.1249E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1249E4\nstatus: 0\ndate_sale: 2019-06-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-415\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 af4a1cb7-31fa-4691-b520-ac585bb3bf8f 2019-06-13 18:42:20.536846 9446 639 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.40.209 af4a1cb7-31fa-4691-b520-ac585bb3bf8f 2019-06-13 18:42:20.584002 9447 733 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 77514aa6-507c-430c-a874-406f98aecb95 2019-06-13 18:42:52.521375 9448 973 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 243\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1249E4\nmove_type: '1'\nsale_id: 733\ncardnumber: 9428\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-415\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-415 189.186.40.209 77514aa6-507c-430c-a874-406f98aecb95 2019-06-13 18:42:52.547711 9449 734 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 243\namount: !ruby/object:BigDecimal 18:0.86121E3\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-06-13\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-416\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 d573068d-0a85-42a7-9b60-a2c38e66fc2c 2019-06-13 19:52:30.700515 9450 670 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.40.209 d573068d-0a85-42a7-9b60-a2c38e66fc2c 2019-06-13 19:52:30.763024 9451 734 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 40513d63-b9ce-455e-a756-cd6ce9399805 2019-06-13 19:53:04.513736 9452 974 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 243\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 734\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-416\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-416 189.186.40.209 40513d63-b9ce-455e-a756-cd6ce9399805 2019-06-13 19:53:04.537485 9453 735 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 242\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-06-13\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-317\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 0eadec7f-0b53-4710-aafe-3d6ec746d6b6 2019-06-13 20:05:18.015466 9454 579 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 3 \N 189.186.40.209 0eadec7f-0b53-4710-aafe-3d6ec746d6b6 2019-06-13 20:05:18.046713 9456 975 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 242\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 735\ncardnumber: 6611\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-317\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-317 189.186.40.209 9ca0e119-ecfb-442f-b1f2-cbb845f3eab3 2019-06-13 20:06:26.68216 9457 976 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 242\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.199E3\nmove_type: '1'\nsale_id: 735\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-317\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.199E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-317 189.186.40.209 d276d9e4-fe6a-4c9d-98ae-5170d9d47dac 2019-06-13 20:06:37.175185 9458 736 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 243\namount: !ruby/object:BigDecimal 18:0.59397E3\ntax: !ruby/object:BigDecimal 18:0.9504E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.68901E3\nstatus: 0\ndate_sale: 2019-06-13\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-417\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 860ff0b6-6b8f-49a0-a402-444a8310280d 2019-06-13 20:07:50.721375 9459 188 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.40.209 860ff0b6-6b8f-49a0-a402-444a8310280d 2019-06-13 20:07:50.759148 9460 736 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 01caf815-f257-4abe-a697-85fccbdf259b 2019-06-13 20:08:10.173367 9461 977 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 243\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.68901E3\nmove_type: '1'\nsale_id: 736\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-417\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.68901E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-417 189.186.40.209 01caf815-f257-4abe-a697-85fccbdf259b 2019-06-13 20:08:10.196914 9462 737 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 243\namount: !ruby/object:BigDecimal 18:0.59397E3\ntax: !ruby/object:BigDecimal 18:0.9504E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.68901E3\nstatus: 0\ndate_sale: 2019-06-13\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-418\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 befd7d7e-f58c-4ffd-97ce-80c32a20f776 2019-06-13 20:09:42.875557 9463 188 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.40.209 befd7d7e-f58c-4ffd-97ce-80c32a20f776 2019-06-13 20:09:42.909546 9464 737 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 12a1c487-a896-4fde-80d8-fb6a6a4220b6 2019-06-13 20:10:03.543382 9465 978 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 243\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.68901E3\nmove_type: '1'\nsale_id: 737\ncardnumber: 5390\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-418\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-418 189.186.40.209 12a1c487-a896-4fde-80d8-fb6a6a4220b6 2019-06-13 20:10:03.580106 9466 736 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-417 cancelada. 189.186.40.209 be790d82-f7a6-40c7-bc1b-485846df2119 2019-06-13 20:12:00.165387 9467 977 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 243\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.68901E3\nmove_type: '1'\nsale_id: 736\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-417\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.68901E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.40.209 be790d82-f7a6-40c7-bc1b-485846df2119 2019-06-13 20:12:00.189706 9468 188 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.40.209 be790d82-f7a6-40c7-bc1b-485846df2119 2019-06-13 20:12:00.220664 9469 100 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 243\nquantity: !ruby/object:BigDecimal 18:0.1E2\nstatus: 1\nobservations: cooperacion a indigentes con cara de asaltantes jaja\nexpense_date: 2019-06-13\nexpense_code: PV1-E-87\n 1 Egreso por 10.0 registrado 189.186.40.209 976deb15-138b-401e-9e81-687bc4cf698d 2019-06-13 20:15:49.379337 9470 979 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 243\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 100\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.40.209 976deb15-138b-401e-9e81-687bc4cf698d 2019-06-13 20:15:49.402247 9471 8 ProductsReturn \N \N 2 User \N create ---\nsale_id: 727\nuser_id: 2\nreturn_code: PV1-D-5\npointsale_id: 1\nnew_amount: !ruby/object:BigDecimal 18:0.1179E4\nreturned_amount: !ruby/object:BigDecimal 18:0.1249E4\ndifference_amount: !ruby/object:BigDecimal 18:0.0\nis_money_returned: false\n 1 devolución PV1-D-5 creada. 189.186.40.209 eb483f9f-b9e6-476f-8e58-1d9e74cb1eca 2019-06-13 21:19:44.513118 9472 639 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.40.209 eb483f9f-b9e6-476f-8e58-1d9e74cb1eca 2019-06-13 21:19:44.557589 9473 73 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.40.209 eb483f9f-b9e6-476f-8e58-1d9e74cb1eca 2019-06-13 21:19:44.603435 9474 85 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.40.209 eb483f9f-b9e6-476f-8e58-1d9e74cb1eca 2019-06-13 21:19:44.633251 9475 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-13 01:22:15.984204000 Z\n- &1 2019-06-13 16:04:46.414499000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-13 22:20:49.567057223 Z\nsign_in_count:\n- 383\n- 384\n 768 \N 189.186.40.209 10ab056a-a2a2-456c-a4f2-e8828735a867 2019-06-13 22:20:49.573974 9476 3 User \N \N 3 User \N update ---\nunique_session_id:\n- BakTxNSwsUVaJgxN9W9P\n- ZiXL5phKyLaki5ymL2sZ\n 769 \N 189.186.40.209 10ab056a-a2a2-456c-a4f2-e8828735a867 2019-06-13 22:20:49.58632 9477 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-12 23:32:43.471282000 Z\n- &1 2019-06-13 00:37:12.107634000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-13 22:23:39.898409048 Z\nsign_in_count:\n- 227\n- 228\n 456 \N 189.186.40.209 3abe8189-501b-4217-be73-39cf135c5204 2019-06-13 22:23:39.905084 9478 12 User \N \N 12 User \N update ---\nunique_session_id:\n- bsYAQaJzEEk-GzhcezRj\n- ejzqG_PawTKkFx47mgxi\n 457 \N 189.186.40.209 3abe8189-501b-4217-be73-39cf135c5204 2019-06-13 22:23:39.921992 9480 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ZiXL5phKyLaki5ymL2sZ\n- zctHKsHeSJextsfhw2RK\n 771 \N 189.186.40.209 45ed0371-e1dc-4deb-8a4f-5a70a54eacb8 2019-06-14 01:03:24.687062 9481 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-13 00:37:12.107634000 Z\n- &1 2019-06-13 22:23:39.898409000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-14 01:12:56.677285598 Z\nsign_in_count:\n- 228\n- 229\n 458 \N 189.186.40.209 90e0dffe-9daa-4bf2-a417-328b7f4974d4 2019-06-14 01:12:56.686432 9482 12 User \N \N 12 User \N update ---\nunique_session_id:\n- ejzqG_PawTKkFx47mgxi\n- DzybA-qAYR6rQPpgs617\n 459 \N 189.186.40.209 90e0dffe-9daa-4bf2-a417-328b7f4974d4 2019-06-14 01:12:56.708889 9483 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-06-05 22:07:21.631954000 Z\n- &1 2019-06-07 00:36:35.351384000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-14 01:22:14.236318897 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093969\n mask_addr: 4294967295\nsign_in_count:\n- 78\n- 79\n 158 \N 189.186.40.209 ca703334-d6a7-400e-ad6d-be9a326a98ac 2019-06-14 01:22:14.243454 9484 10 User \N \N 10 User \N update ---\nunique_session_id:\n- B_J-nA2G-UPmaNi36ioa\n- XB3NB7f4wwiLMHjzhjUB\n 159 \N 189.186.40.209 ca703334-d6a7-400e-ad6d-be9a326a98ac 2019-06-14 01:22:14.25941 9485 738 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 242\namount: !ruby/object:BigDecimal 18:0.99E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.99E2\nstatus: 0\ndate_sale: 2019-06-13\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-318\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 67dab98d-732c-4bbf-911e-71880573f97c 2019-06-14 01:22:33.768121 9486 487 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.17E2\n- !ruby/object:BigDecimal 18:0.16E2\n 8 \N 189.186.40.209 67dab98d-732c-4bbf-911e-71880573f97c 2019-06-14 01:22:33.797223 9487 738 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 ce8e901a-92fd-423d-b1b8-2305a1cc3cdf 2019-06-14 01:23:43.454092 9488 980 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 242\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.99E2\nmove_type: '1'\nsale_id: 738\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-318\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-318 189.186.40.209 ce8e901a-92fd-423d-b1b8-2305a1cc3cdf 2019-06-14 01:23:43.480064 9489 739 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 242\namount: !ruby/object:BigDecimal 18:0.99E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.99E2\nstatus: 0\ndate_sale: 2019-06-13\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-319\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 362f67f7-a2de-4184-810c-cbf928609952 2019-06-14 01:26:46.875701 9490 487 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.15E2\n 9 \N 189.186.40.209 362f67f7-a2de-4184-810c-cbf928609952 2019-06-14 01:26:46.905653 9491 739 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 19d31eaa-d9d7-4b88-919a-d6d9d3dd58ac 2019-06-14 01:26:51.299172 9492 981 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 242\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.99E2\nmove_type: '1'\nsale_id: 739\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-319\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.401E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-319 189.186.40.209 19d31eaa-d9d7-4b88-919a-d6d9d3dd58ac 2019-06-14 01:26:51.335114 9493 240 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 243\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.345701E4\namount_out: !ruby/object:BigDecimal 18:0.1E2\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.732E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2232E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.40.209 8a54ea21-11cc-4490-9f59-83e6da771801 2019-06-14 01:58:42.216974 9494 243 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.209 8a54ea21-11cc-4490-9f59-83e6da771801 2019-06-14 01:58:42.245161 9495 241 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 242\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.897E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.566E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1066E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.40.209 7d765354-c222-49f5-a57e-391ee90cc68c 2019-06-14 02:10:16.997047 9496 242 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.209 7d765354-c222-49f5-a57e-391ee90cc68c 2019-06-14 02:10:17.015999 9497 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-13 22:20:49.567057000 Z\n- &1 2019-06-14 01:03:24.646963000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-14 15:59:03.463180757 Z\nsign_in_count:\n- 385\n- 386\n 772 \N 189.186.40.209 132bc727-6055-40b2-9f1d-7d5edaece455 2019-06-14 15:59:03.492514 9498 3 User \N \N 3 User \N update ---\nunique_session_id:\n- zctHKsHeSJextsfhw2RK\n- KKE4bBCXxaLD5JvpA7eS\n 773 \N 189.186.40.209 132bc727-6055-40b2-9f1d-7d5edaece455 2019-06-14 15:59:03.514758 9499 244 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.566E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 566.0 189.186.40.209 f4b6803a-b060-4760-8839-79713de045e8 2019-06-14 16:01:07.91772 9500 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-12 16:07:00.034354000 Z\n- &1 2019-06-13 16:12:53.867825000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-14 16:01:15.632137991 Z\nsign_in_count:\n- 157\n- 158\n 319 \N 189.186.40.209 048473ff-beac-4f7d-9c17-406c4c500e49 2019-06-14 16:01:15.639682 9501 2 User \N \N 2 User \N update ---\nunique_session_id:\n- uQ3t-SMc-BZ2zuSn5z-3\n- zfzoYMuEskEY7RNceSUi\n 320 \N 189.186.40.209 048473ff-beac-4f7d-9c17-406c4c500e49 2019-06-14 16:01:15.659295 9502 245 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.732E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 732.0 189.186.40.209 5e45e693-59e9-47bf-af9a-6362dd18ae89 2019-06-14 16:02:08.773051 9503 740 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 244\namount: !ruby/object:BigDecimal 18:0.1395E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1395E4\nstatus: 0\ndate_sale: 2019-06-14\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-320\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 09d09af0-a4f1-4761-98bb-5533ad45d090 2019-06-14 17:08:40.46573 9504 599 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.40.209 09d09af0-a4f1-4761-98bb-5533ad45d090 2019-06-14 17:08:40.519637 9505 740 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 6dfb916f-312a-4f47-ab1b-dde072bd1ab9 2019-06-14 17:08:48.507663 9506 982 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 244\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1395E4\nmove_type: '1'\nsale_id: 740\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-320\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.105E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-320 189.186.40.209 6dfb916f-312a-4f47-ab1b-dde072bd1ab9 2019-06-14 17:08:48.531718 9507 983 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.629E3\nmove_type: '1'\nsale_id: 584\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.629E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-323 189.186.40.209 858d8b63-d08c-4035-9de3-3faa7127b4e5 2019-06-14 17:29:31.48703 9508 584 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.40.209 c087fc9e-3993-4384-9182-ef4af8b44eb5 2019-06-14 17:29:33.663074 9509 741 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 245\namount: !ruby/object:BigDecimal 18:0.949E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.949E3\nstatus: 0\ndate_sale: 2019-06-14\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-419\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 fea910c7-5d88-4b0c-9a00-24616a8c25f6 2019-06-14 19:07:02.587517 9510 537 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.40.209 fea910c7-5d88-4b0c-9a00-24616a8c25f6 2019-06-14 19:07:02.620178 9511 741 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 c985da1a-c094-4a0a-9c07-95045464bd3f 2019-06-14 19:07:35.769033 9512 984 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.949E3\nmove_type: '1'\nsale_id: 741\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-419\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.949E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-419 189.186.40.209 c985da1a-c094-4a0a-9c07-95045464bd3f 2019-06-14 19:07:35.792828 9513 985 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 222\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 712\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAMANTHA\n 1 \N 189.186.40.209 83da89f4-9a91-4cf5-8641-6cd0c9a060f7 2019-06-14 21:33:43.825583 9514 712 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.40.209 83da89f4-9a91-4cf5-8641-6cd0c9a060f7 2019-06-14 21:33:43.860765 9515 985 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 222\n- 245\n 2 movimiento de efectivo por venta con folio PV1-V-401 189.186.40.209 83da89f4-9a91-4cf5-8641-6cd0c9a060f7 2019-06-14 21:33:43.879989 9516 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-12 18:02:33.235548000 Z\n- &1 2019-06-12 22:33:12.582772000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-14 22:24:39.897891540 Z\nsign_in_count:\n- 279\n- 280\n 560 \N 189.186.37.144 5d73d772-0bc3-48e9-9dca-60d2853baf91 2019-06-14 22:24:39.905117 9517 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xhLLbuKHEHtz9C1gr9ws\n- 5Dcz1Lxf_qwLV7vCYRzx\n 561 \N 189.186.37.144 5d73d772-0bc3-48e9-9dca-60d2853baf91 2019-06-14 22:24:39.920192 9518 101 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 245\nquantity: !ruby/object:BigDecimal 18:0.1E4\nstatus: 1\nobservations: SUELDO ANABELLY\nexpense_date: 2019-06-14\nexpense_code: PV1-E-88\n 1 Egreso por 1000.0 registrado 189.186.40.209 4e70bf06-9df6-439d-89da-75ff182465b7 2019-06-14 23:44:39.300312 9519 986 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 101\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.40.209 4e70bf06-9df6-439d-89da-75ff182465b7 2019-06-14 23:44:39.325507 9520 102 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 245\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida\nexpense_date: 2019-06-14\nexpense_code: PV1-E-89\n 1 Egreso por 50.0 registrado 189.186.40.209 88943f67-cb4f-45d8-a782-e1d6293c5691 2019-06-15 01:56:29.127735 9521 987 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 102\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.40.209 88943f67-cb4f-45d8-a782-e1d6293c5691 2019-06-15 01:56:29.152968 9522 242 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 244\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1395E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.461E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1961E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.40.209 8dd2393d-125c-42aa-8221-8b2a99803b48 2019-06-15 01:59:04.972266 9523 244 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.209 8dd2393d-125c-42aa-8221-8b2a99803b48 2019-06-15 01:59:04.993244 9524 243 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 245\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1878E4\namount_out: !ruby/object:BigDecimal 18:0.105E4\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.76E3\nphysical_cash: !ruby/object:BigDecimal 18:0.126E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.40.209 d39cead7-f27e-46be-a35e-7c1e2f21681a 2019-06-15 02:02:45.839757 9525 245 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.209 d39cead7-f27e-46be-a35e-7c1e2f21681a 2019-06-15 02:02:45.855809 9526 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-13 16:12:53.867825000 Z\n- &1 2019-06-14 16:01:15.632137000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-15 16:01:23.917350939 Z\nsign_in_count:\n- 158\n- 159\n 321 \N 189.186.40.209 f84a27b8-e350-43bf-9bd0-21cffdebfc7a 2019-06-15 16:01:23.953286 9527 2 User \N \N 2 User \N update ---\nunique_session_id:\n- zfzoYMuEskEY7RNceSUi\n- ss3af7kCGWzz-1oLtss_\n 322 \N 189.186.40.209 f84a27b8-e350-43bf-9bd0-21cffdebfc7a 2019-06-15 16:01:23.980342 9528 246 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.76E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 760.0 189.186.40.209 671caf71-3ecb-4dde-9e76-b26c7a463483 2019-06-15 16:02:56.198546 9529 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-14 01:03:24.646963000 Z\n- &1 2019-06-14 15:59:03.463180000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-15 16:07:04.165708388 Z\nsign_in_count:\n- 386\n- 387\n 774 \N 189.186.40.209 bb6e0aa8-f978-4b14-9556-c76c7e171410 2019-06-15 16:07:04.173201 9530 3 User \N \N 3 User \N update ---\nunique_session_id:\n- KKE4bBCXxaLD5JvpA7eS\n- 5TdsrnPnokospmUCrYY7\n 775 \N 189.186.40.209 bb6e0aa8-f978-4b14-9556-c76c7e171410 2019-06-15 16:07:04.194215 9531 247 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.461E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 461.0 189.186.40.209 96a00b1b-2302-4025-8591-6106f2128ed0 2019-06-15 16:07:27.604756 9532 742 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 246\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-06-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-420\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 71f4eef1-54b7-464f-a1cb-1344663f2a3c 2019-06-15 16:53:13.876046 9533 640 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.40.209 71f4eef1-54b7-464f-a1cb-1344663f2a3c 2019-06-15 16:53:13.912287 9534 742 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 dfbca1a1-e390-443c-b0ff-0761c52e01ae 2019-06-15 16:53:29.470173 9535 988 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 246\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 742\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-420\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-420 189.186.40.209 dfbca1a1-e390-443c-b0ff-0761c52e01ae 2019-06-15 16:53:29.497179 9536 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-12 22:33:12.582772000 Z\n- &1 2019-06-14 22:24:39.897891000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-15 18:21:07.930169939 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093136\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096769\n mask_addr: 4294967295\nsign_in_count:\n- 280\n- 281\n 562 \N 189.186.51.193 e52de826-be1b-483f-97f9-1e995a50ff67 2019-06-15 18:21:07.975265 9537 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5Dcz1Lxf_qwLV7vCYRzx\n- 9GX67iF7Kc7XQS5hUk1G\n 563 \N 189.186.51.193 e52de826-be1b-483f-97f9-1e995a50ff67 2019-06-15 18:21:08.012338 9538 743 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 247\namount: !ruby/object:BigDecimal 18:0.978E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.978E3\nstatus: 0\ndate_sale: 2019-06-15\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-321\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 8ceb0e42-d064-41e9-8cda-6cae0072e763 2019-06-15 19:34:53.869345 9539 651 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.9E1\n 3 \N 189.186.40.209 8ceb0e42-d064-41e9-8cda-6cae0072e763 2019-06-15 19:34:53.899536 9540 743 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 120d05b1-5b0d-4fa1-ad46-af28993a2d7d 2019-06-15 19:35:10.343421 9541 989 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 247\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.978E3\nmove_type: '1'\nsale_id: 743\ncardnumber: 1575\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-321\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-321 189.186.40.209 120d05b1-5b0d-4fa1-ad46-af28993a2d7d 2019-06-15 19:35:10.366251 9542 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-14 22:24:39.897891000 Z\n- &1 2019-06-15 18:21:07.930169000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-15 19:53:28.254547485 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093136\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096769\n mask_addr: 4294967295\nsign_in_count:\n- 281\n- 282\n 564 \N 189.186.51.193 2d36b2fc-d29a-4e23-aa22-1c62b0c35f17 2019-06-15 19:53:28.261979 9543 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9GX67iF7Kc7XQS5hUk1G\n- QGsJxsDDG1jFy-Rt4bUN\n 565 \N 189.186.51.193 2d36b2fc-d29a-4e23-aa22-1c62b0c35f17 2019-06-15 19:53:28.278666 9544 744 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 247\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-06-15\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-322\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 70fc397d-939e-4e69-a4c3-c906067489da 2019-06-15 20:03:18.099761 9545 435 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.40.209 70fc397d-939e-4e69-a4c3-c906067489da 2019-06-15 20:03:18.138325 9546 744 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 a0b187ac-5aa4-4049-bbe9-844ce7ab3e04 2019-06-15 20:03:22.078416 9547 990 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 744\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-322\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-322 189.186.40.209 a0b187ac-5aa4-4049-bbe9-844ce7ab3e04 2019-06-15 20:03:22.117928 9548 745 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 246\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-06-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-421\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 a5948838-d69b-4d4c-af00-1a2a5d66b731 2019-06-15 20:13:49.136538 9549 664 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.40.209 a5948838-d69b-4d4c-af00-1a2a5d66b731 2019-06-15 20:13:49.168845 9551 991 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 246\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 745\ncardnumber: 6949\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-421\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-421 189.186.40.209 1c94d61a-ac84-4d36-aa9a-7bace01fdb5c 2019-06-15 20:15:41.850753 9552 746 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 246\namount: !ruby/object:BigDecimal 18:0.949E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.949E3\nstatus: 0\ndate_sale: 2019-06-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-422\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 4368c379-8e1b-44f7-8870-8f6a888243d0 2019-06-15 20:22:17.950861 9553 537 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.40.209 4368c379-8e1b-44f7-8870-8f6a888243d0 2019-06-15 20:22:17.982762 9554 746 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 a18fcf41-19e0-4960-a9c1-feb4b9b157cf 2019-06-15 20:22:21.961061 9555 992 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 246\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.949E3\nmove_type: '1'\nsale_id: 746\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-422\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.949E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-422 189.186.40.209 a18fcf41-19e0-4960-a9c1-feb4b9b157cf 2019-06-15 20:22:21.985574 9556 126 Customer \N \N 3 User \N create ---\nnick_name: nayelli moreno\nphone: "(667) 306-7523"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente nayelli moreno fue registrado. 189.186.40.209 27c7ef48-3fc6-4712-9ca8-5c99d4ef6892 2019-06-15 20:24:41.354544 9557 747 Sale \N \N 3 User \N create ---\ncustomer_id: 126\nuser_id: 3\nopen_cash_register_id: 247\namount: !ruby/object:BigDecimal 18:0.1395E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1395E4\nstatus: 0\ndate_sale: 2019-06-15\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-323\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 13129f5d-3821-4492-bdeb-95dc465038da 2019-06-15 20:25:02.974089 9558 599 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.40.209 13129f5d-3821-4492-bdeb-95dc465038da 2019-06-15 20:25:03.007818 9559 747 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 1c43894e-fec5-491c-b3fc-53a74cac07cc 2019-06-15 20:25:35.817712 9560 993 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 247\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.15E4\nmove_type: '1'\nsale_id: 747\ncardnumber: 5299\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-323\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-323 189.186.40.209 1c43894e-fec5-491c-b3fc-53a74cac07cc 2019-06-15 20:25:35.849046 9561 993 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 247\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.15E4\nmove_type: '1'\nsale_id: 747\ncardnumber: 5299\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-323\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.40.209 40740342-00ba-4e71-bd25-d6888d31f9f3 2019-06-15 20:26:16.346038 9562 994 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 247\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 747\ncardnumber: 5299\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-323\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-323 189.186.40.209 e9cbe0bf-eea2-4075-8227-892be32604d3 2019-06-15 20:26:32.459422 9563 994 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 247\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 747\ncardnumber: 5299\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-323\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.40.209 f8d1e9fd-7113-4a40-8750-c7db4d35db5e 2019-06-15 20:27:06.843773 9564 995 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 247\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 747\ncardnumber: 5299\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-323\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-323 189.186.40.209 f3b13141-b86a-43d0-834f-8ab3d1580860 2019-06-15 20:27:22.402549 9565 127 Customer \N \N 3 User \N create ---\nnick_name: nayelli moreno\nphone: "(667) 306-7523"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente nayelli moreno fue registrado. 189.186.40.209 b63d38f9-87d0-46e2-90c6-67c7bd2db02a 2019-06-15 20:28:18.335624 9566 748 Sale \N \N 3 User \N create ---\ncustomer_id: 127\nuser_id: 3\nopen_cash_register_id: 247\namount: !ruby/object:BigDecimal 18:0.1395E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1395E4\nstatus: 0\ndate_sale: 2019-06-15\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-324\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 59b9d576-7560-49c2-9e12-9ec428854187 2019-06-15 20:28:32.907223 9567 599 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.40.209 59b9d576-7560-49c2-9e12-9ec428854187 2019-06-15 20:28:32.936428 9568 748 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 d76d8fb6-73f2-4f7d-8759-c7b76efd08bf 2019-06-15 20:28:42.532019 9569 996 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 247\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 748\ncardnumber: 5299\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-324\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-324 189.186.40.209 d76d8fb6-73f2-4f7d-8759-c7b76efd08bf 2019-06-15 20:28:42.55423 20266 902 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '902'\n is_parent: false\n sku: CHA-902\n name: CHA-0020\n description: "ABRIGO JELOUSE TOMATO DE COLORES ST-JJ2322\\r\\n"\n price_base: '660.0'\n price_sale: '1769.0'\n img_product: PHOTO-2019-10-15-21-54-35.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000902'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-30 01:55:37.918596'\n updated_at: &12 2019-11-05 20:23:25.202402196 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '902'\n sku: CHA-902\n name: CHA-0020\n description: "ABRIGO JELOUSE TOMATO DE COLORES ST-JJ2322\\r\\n"\n price_base: '660.00'\n price_sale: '1769.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-30 01:55:37.918596'\n updated_at: '2019-10-30 01:55:37.958288'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000902'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '902'\n type: *3\n value: 902\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-902\n type: *7\n value: CHA-902\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0020\n type: *8\n value: CHA-0020\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "ABRIGO JELOUSE TOMATO DE COLORES ST-JJ2322\\r\\n"\n type: *6\n value: "ABRIGO JELOUSE TOMATO DE COLORES ST-JJ2322\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '660.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.66E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1769.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1769E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-10-15-21-54-35.jpg\n type: *2\n value: PHOTO-2019-10-15-21-54-35.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000902'\n type: *2\n value: '0000902'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-30 01:55:37.918596'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-10-15-21-54-35.jpg\n 3 El producto CHA-902 fue modificado. 187.149.74.215 ad7cd4d8-6baa-4a96-9c29-23bff0ba21ec 2019-11-05 20:23:25.249841 9570 996 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 247\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 748\ncardnumber: 5299\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-324\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.40.209 a35498c6-17f4-48d5-b9e7-d11f0fba6465 2019-06-15 20:30:22.323764 9571 997 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 247\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 748\ncardnumber: 5299\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-324\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-324 189.186.40.209 734d9fc2-34ce-4493-998f-1966d7eacae5 2019-06-15 20:30:59.466884 9572 998 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 247\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 748\ncardnumber: 5299\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-324\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-324 189.186.40.209 b7a45bc7-8300-4f61-b70c-7d9db61fcd48 2019-06-15 20:31:23.739128 9573 997 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 247\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 748\ncardnumber: 5299\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-324\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.40.209 027ad16b-3833-4a57-a370-320f4237afcb 2019-06-15 20:31:25.27891 9574 748 Sale \N \N 3 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-324 cancelada. 189.186.40.209 9e7ce375-1605-410b-9771-f14320f07187 2019-06-15 20:33:15.375125 9575 998 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 247\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 748\ncardnumber: 5299\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-324\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.40.209 9e7ce375-1605-410b-9771-f14320f07187 2019-06-15 20:33:15.426374 9576 599 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.40.209 9e7ce375-1605-410b-9771-f14320f07187 2019-06-15 20:33:15.467351 9577 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-14 15:59:03.463180000 Z\n- &1 2019-06-15 16:07:04.165708000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-15 20:33:31.979625674 Z\nsign_in_count:\n- 387\n- 388\n 776 \N 189.186.40.209 39836eb1-fab3-4c0b-b7e8-da0acdc45dc0 2019-06-15 20:33:31.986359 9578 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 5TdsrnPnokospmUCrYY7\n- EkXG2XSzemnz8mAx3TTx\n 777 \N 189.186.40.209 39836eb1-fab3-4c0b-b7e8-da0acdc45dc0 2019-06-15 20:33:32.002974 9579 128 Customer \N \N 3 User \N create ---\nnick_name: NAYELLI MORENO\nphone: "(667) 306-7523"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente NAYELLI MORENO fue registrado. 189.186.40.209 480928b0-831c-4d04-be63-4ad1b2b9dff8 2019-06-15 20:34:00.948185 9580 749 Sale \N \N 3 User \N create ---\ncustomer_id: 128\nuser_id: 3\nopen_cash_register_id: 247\namount: !ruby/object:BigDecimal 18:0.1395E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1395E4\nstatus: 0\ndate_sale: 2019-06-15\nsaletype: 2\nseller_id: 9\nsale_code: PV2-V-325\nexpiration_date: 2019-07-20\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 c51dbf2b-36b6-4135-b276-3dca6304be61 2019-06-15 20:34:18.728253 9581 599 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.40.209 c51dbf2b-36b6-4135-b276-3dca6304be61 2019-06-15 20:34:18.780699 9582 999 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 247\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 749\ncardnumber: 5299\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-325\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-325 189.186.40.209 fff27ceb-0bb0-4291-a8ca-b7991ae1d12b 2019-06-15 20:34:34.638919 9583 749 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.40.209 a036c7e1-1aa2-4975-ab93-57702dec8755 2019-06-15 20:34:40.961977 9584 129 Customer \N \N 2 User \N create ---\nnick_name: PAOLA SALCIDO\nphone: "(667) 268-2867"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente PAOLA SALCIDO fue registrado. 189.186.40.209 5b53852e-ac6d-4c2b-8041-4cdbd15214b7 2019-06-15 21:12:48.579301 9585 750 Sale \N \N 2 User \N create ---\ncustomer_id: 129\nuser_id: 2\nopen_cash_register_id: 246\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-06-15\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-423\nexpiration_date: 2019-07-20\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 09a314ca-0f48-43e4-8010-1d0b0c46b51a 2019-06-15 21:13:05.628039 9586 610 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.40.209 09a314ca-0f48-43e4-8010-1d0b0c46b51a 2019-06-15 21:13:05.654475 9587 1000 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 246\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 750\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-423\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-423 189.186.40.209 ad4a8809-a41a-4fcc-9af4-cb39911f6904 2019-06-15 21:13:15.390259 9588 750 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.40.209 2289cc9f-0e6b-4d7f-878a-00d85226a5b8 2019-06-15 21:13:18.190761 9589 751 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 246\namount: !ruby/object:BigDecimal 18:0.11069E4\ntax: !ruby/object:BigDecimal 18:0.1771E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1284E4\nstatus: 0\ndate_sale: 2019-06-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-424\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 9b169f99-c9aa-4f42-9c60-bede0030a64f 2019-06-15 22:13:31.093982 9590 140 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.40.209 9b169f99-c9aa-4f42-9c60-bede0030a64f 2019-06-15 22:13:31.123946 9591 176 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.40.209 9b169f99-c9aa-4f42-9c60-bede0030a64f 2019-06-15 22:13:31.155521 9592 751 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 eeda16a2-4d57-4b73-ab18-072729bb75d1 2019-06-15 22:13:52.019176 9593 1001 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 246\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1284E4\nmove_type: '1'\nsale_id: 751\ncardnumber: 8322\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-424\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-424 189.186.40.209 eeda16a2-4d57-4b73-ab18-072729bb75d1 2019-06-15 22:13:52.041021 9594 752 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 246\namount: !ruby/object:BigDecimal 18:0.74914E3\ntax: !ruby/object:BigDecimal 18:0.11986E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-06-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-425\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 f88d6683-55ff-44c0-9847-27a0dce8682d 2019-06-15 22:22:52.434874 9595 234 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.40.209 f88d6683-55ff-44c0-9847-27a0dce8682d 2019-06-15 22:22:52.465827 9596 752 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 cdd81e89-ba87-4025-980a-6dc6de13e55e 2019-06-15 22:23:05.132984 9597 1002 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 246\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.869E3\nmove_type: '1'\nsale_id: 752\ncardnumber: 8322\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-425\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-425 189.186.40.209 cdd81e89-ba87-4025-980a-6dc6de13e55e 2019-06-15 22:23:05.153945 9598 1002 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 246\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.869E3\nmove_type: '1'\nsale_id: 752\ncardnumber: 8322\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-425\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.40.209 a7ecfa4c-6a26-4f3c-b581-58f2a6467c0a 2019-06-15 22:23:25.286235 9599 1003 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 246\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.869E3\nmove_type: '1'\nsale_id: 752\ncardnumber: 8523\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-425\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-425 189.186.40.209 56b44588-98e9-4c12-880a-5c9e001ec3df 2019-06-15 22:24:01.855647 9600 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-15 16:07:04.165708000 Z\n- &1 2019-06-15 20:33:31.979625000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-15 22:26:10.701766938 Z\nsign_in_count:\n- 388\n- 389\n 778 \N 189.186.40.209 2df89715-8dac-4792-8563-8fcec5f562de 2019-06-15 22:26:10.707842 9601 3 User \N \N 3 User \N update ---\nunique_session_id:\n- EkXG2XSzemnz8mAx3TTx\n- n-RYExjcoy1H1GzsLTpt\n 779 \N 189.186.40.209 2df89715-8dac-4792-8563-8fcec5f562de 2019-06-15 22:26:10.721171 9602 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-15 20:33:31.979625000 Z\n- &1 2019-06-15 22:26:10.701766000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-15 22:28:27.901223289 Z\nsign_in_count:\n- 389\n- 390\n 780 \N 189.186.40.209 77342208-29a7-45da-8911-ef46e375fd1b 2019-06-15 22:28:27.907888 9603 3 User \N \N 3 User \N update ---\nunique_session_id:\n- n-RYExjcoy1H1GzsLTpt\n- xgvUwFiUWGfjEzLveTqR\n 781 \N 189.186.40.209 77342208-29a7-45da-8911-ef46e375fd1b 2019-06-15 22:28:27.926227 9604 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-15 22:26:10.701766000 Z\n- &1 2019-06-15 22:28:27.901223000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-15 22:32:59.919747564 Z\nsign_in_count:\n- 390\n- 391\n 782 \N 189.186.40.209 780336ed-cb20-4367-816d-0cd0f910219a 2019-06-15 22:32:59.926137 9605 3 User \N \N 3 User \N update ---\nunique_session_id:\n- xgvUwFiUWGfjEzLveTqR\n- syPTuzjtYfjFVhmTSLjV\n 783 \N 189.186.40.209 780336ed-cb20-4367-816d-0cd0f910219a 2019-06-15 22:32:59.939688 9606 747 Sale \N \N 3 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-323 cancelada. 189.186.40.209 754702ec-49e6-424e-95f6-0006af9fca65 2019-06-15 22:33:13.845427 9607 995 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 247\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 747\ncardnumber: 5299\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-323\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.40.209 754702ec-49e6-424e-95f6-0006af9fca65 2019-06-15 22:33:13.866837 9608 599 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.40.209 754702ec-49e6-424e-95f6-0006af9fca65 2019-06-15 22:33:13.893409 9609 1004 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 246\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.176799E4\nmove_type: '1'\nsale_id: 698\ncardnumber: 3879\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-394 189.186.40.209 05180d61-976e-42fd-950f-02b595ae9139 2019-06-16 00:53:10.289097 9610 698 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.40.209 5cd1ab8d-94b2-4e0c-9953-df068e58ddbd 2019-06-16 00:53:11.938425 9611 103 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 246\nquantity: !ruby/object:BigDecimal 18:0.838E3\nstatus: 1\nobservations: "$50 comida $628 sueldo rocio $160 comisiones"\nexpense_date: 2019-06-15\nexpense_code: PV1-E-90\n 1 Egreso por 838.0 registrado 189.186.40.209 f997fee2-db61-4bca-9560-b17ef045a2b4 2019-06-16 01:49:10.412562 9612 1005 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 246\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.838E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 103\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.40.209 f997fee2-db61-4bca-9560-b17ef045a2b4 2019-06-16 01:49:10.443153 9613 104 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 246\nquantity: !ruby/object:BigDecimal 18:0.95E3\nstatus: 1\nobservations: sueldo yaretzi\nexpense_date: 2019-06-15\nexpense_code: PV1-E-91\n 1 Egreso por 950.0 registrado 189.186.40.209 95cd26c5-ada8-4df8-b5c7-bef4ad754a48 2019-06-16 01:53:07.972711 9614 1006 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 246\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.95E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 104\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.40.209 95cd26c5-ada8-4df8-b5c7-bef4ad754a48 2019-06-16 01:53:07.99687 9615 105 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 247\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: 'YARETZI '\nexpense_date: 2019-06-15\nexpense_code: PV2-E-14\n 1 Egreso por 50.0 registrado 189.186.40.209 a4b16d5e-0676-4008-91e5-b2460ac4388e 2019-06-16 01:53:38.959253 9616 1007 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 105\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.40.209 a4b16d5e-0676-4008-91e5-b2460ac4388e 2019-06-16 01:53:38.980055 9617 244 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 247\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.2077E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.51E3\nphysical_cash: !ruby/object:BigDecimal 18:0.101E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.40.209 5d815033-f700-4278-93b4-bbd988730c6b 2019-06-16 01:58:23.375466 9618 247 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.209 5d815033-f700-4278-93b4-bbd988730c6b 2019-06-16 01:58:23.391075 9619 245 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 246\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.681799E4\namount_out: !ruby/object:BigDecimal 18:0.1788E4\nreceived_by_id: 16\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.77E3\nphysical_cash: !ruby/object:BigDecimal 18:0.127E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.40.209 63046e0f-45cf-4506-8269-38a6ae99b1b0 2019-06-16 02:00:12.23469 9620 246 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.209 63046e0f-45cf-4506-8269-38a6ae99b1b0 2019-06-16 02:00:12.248957 9621 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-14 16:01:15.632137000 Z\n- &1 2019-06-15 16:01:23.917350000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-16 16:04:09.989148204 Z\nsign_in_count:\n- 159\n- 160\n 323 \N 189.186.40.209 edd97e02-778d-4d4f-a35a-c7641e9b52bd 2019-06-16 16:04:10.026685 9622 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ss3af7kCGWzz-1oLtss_\n- Qyw-e2Ns7KRNM_gQz3bt\n 324 \N 189.186.40.209 edd97e02-778d-4d4f-a35a-c7641e9b52bd 2019-06-16 16:04:10.04778 9623 248 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.82E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 820.0 189.186.40.209 2727a8b5-f32a-48a0-a34f-4db1a3160ef1 2019-06-16 16:06:24.932087 9624 1008 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 248\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.604E3\nmove_type: '1'\nsale_id: 675\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.604E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-376 189.186.40.209 b5197ed7-559f-456d-9966-d886cc3870f1 2019-06-16 16:07:13.804526 9625 675 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.40.209 1b24c552-471c-45d7-837c-b7f0f8a19c0f 2019-06-16 16:07:16.088358 9626 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-15 22:28:27.901223000 Z\n- &1 2019-06-15 22:32:59.919747000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-16 16:21:42.725662949 Z\nsign_in_count:\n- 391\n- 392\n 784 \N 189.186.40.209 1ad7d83f-eb9d-4980-a688-d3c3f3109937 2019-06-16 16:21:42.731702 9627 3 User \N \N 3 User \N update ---\nunique_session_id:\n- syPTuzjtYfjFVhmTSLjV\n- N-Y9PQh2EfdPiKjY3CFS\n 785 \N 189.186.40.209 1ad7d83f-eb9d-4980-a688-d3c3f3109937 2019-06-16 16:21:42.745725 9628 249 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.51E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 510.0 189.186.40.209 869b12b0-2a3d-4b65-b570-a7f078fe4e78 2019-06-16 16:22:07.072319 9629 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-15 16:01:23.917350000 Z\n- &1 2019-06-16 16:04:09.989148000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-16 16:22:28.036788135 Z\nsign_in_count:\n- 160\n- 161\n 325 \N 189.186.40.209 5d59f67d-caa9-4906-ba10-68fad3cfa5e0 2019-06-16 16:22:28.045706 9630 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Qyw-e2Ns7KRNM_gQz3bt\n- FxyP6FVzYueEvhc1rMeP\n 326 \N 189.186.40.209 5d59f67d-caa9-4906-ba10-68fad3cfa5e0 2019-06-16 16:22:28.065997 9631 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-15 22:32:59.919747000 Z\n- &1 2019-06-16 16:21:42.725662000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-16 16:23:02.984479256 Z\nsign_in_count:\n- 392\n- 393\n 786 \N 189.186.40.209 613ddb02-fb1c-4969-bd28-3104e2096167 2019-06-16 16:23:02.990526 9632 3 User \N \N 3 User \N update ---\nunique_session_id:\n- N-Y9PQh2EfdPiKjY3CFS\n- 4dzMmFpzy6hWuzAki8Qw\n 787 \N 189.186.40.209 613ddb02-fb1c-4969-bd28-3104e2096167 2019-06-16 16:23:03.005341 9633 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-16 16:21:42.725662000 Z\n- &1 2019-06-16 16:23:02.984479000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-16 18:32:18.723061184 Z\nsign_in_count:\n- 393\n- 394\n 788 \N 189.186.40.209 51bf8825-5fdd-4382-b8be-c5d2620e2f67 2019-06-16 18:32:18.73156 9634 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 4dzMmFpzy6hWuzAki8Qw\n- WcwubgU5aQZ5Je58FF4i\n 789 \N 189.186.40.209 51bf8825-5fdd-4382-b8be-c5d2620e2f67 2019-06-16 18:32:18.74911 9635 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-15 18:21:07.930169000 Z\n- &1 2019-06-15 19:53:28.254547000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-16 18:45:12.564888142 Z\nsign_in_count:\n- 282\n- 283\n 566 \N 189.186.51.193 6edf1339-f549-48ac-987c-371bc6b6d435 2019-06-16 18:45:12.572044 9636 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QGsJxsDDG1jFy-Rt4bUN\n- 5GBrzKTXf6StyWUnsoFR\n 567 \N 189.186.51.193 6edf1339-f549-48ac-987c-371bc6b6d435 2019-06-16 18:45:12.590779 9637 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-16 16:04:09.989148000 Z\n- &1 2019-06-16 16:22:28.036788000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-16 19:08:46.065907974 Z\nsign_in_count:\n- 161\n- 162\n 327 \N 189.186.40.209 f123a0ef-45fd-4d7f-8036-b584e88e6b08 2019-06-16 19:08:46.075171 9638 2 User \N \N 2 User \N update ---\nunique_session_id:\n- FxyP6FVzYueEvhc1rMeP\n- 7k6rbwBUkqxpyE8RsQA8\n 328 \N 189.186.40.209 f123a0ef-45fd-4d7f-8036-b584e88e6b08 2019-06-16 19:08:46.095613 9689 3 User \N \N 3 User \N update ---\nunique_session_id:\n- s_L91WGanGfAXTZpCstY\n- guV-nPMutz1ex_eUUnRv\n 803 \N 189.186.40.209 57b23b76-49c0-4d09-8d80-d5d9e60fd831 2019-06-18 18:06:11.042656 40392 2967 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 8e53e662-c66f-49f1-a3ee-ff6ce1b01f36 2020-09-18 22:45:29.926581 9639 9 ProductsReturn \N \N 3 User \N create ---\nsale_id: 729\nuser_id: 3\nreturn_code: PV2-D-4\npointsale_id: 2\nnew_amount: !ruby/object:BigDecimal 18:0.1598E4\nreturned_amount: !ruby/object:BigDecimal 18:0.1599E4\ndifference_amount: !ruby/object:BigDecimal 18:0.0\nis_money_returned: false\n 1 devolución PV2-D-4 creada. 189.186.40.209 14b75366-80a3-4193-8a4b-18d542825337 2019-06-16 19:11:55.071265 9640 665 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.40.209 14b75366-80a3-4193-8a4b-18d542825337 2019-06-16 19:11:55.120141 9641 419 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 189.186.40.209 14b75366-80a3-4193-8a4b-18d542825337 2019-06-16 19:11:55.152992 9642 365 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.37E2\n- !ruby/object:BigDecimal 18:0.35E2\n 13 \N 189.186.40.209 14b75366-80a3-4193-8a4b-18d542825337 2019-06-16 19:11:55.179043 9643 339 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.40.209 14b75366-80a3-4193-8a4b-18d542825337 2019-06-16 19:11:55.203373 9644 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-15 19:53:28.254547000 Z\n- &1 2019-06-16 18:45:12.564888000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-16 20:27:49.421642348 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938444\n mask_addr: 4294967295\nsign_in_count:\n- 283\n- 284\n 568 \N 200.68.151.140 4bd7d9f1-a228-4dba-9b82-e130445f048d 2019-06-16 20:27:49.428959 9645 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5GBrzKTXf6StyWUnsoFR\n- mouqyxGdNnCgxyAa4V7m\n 569 \N 200.68.151.140 4bd7d9f1-a228-4dba-9b82-e130445f048d 2019-06-16 20:27:49.444152 9646 246 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 248\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.604E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.924E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1424E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.40.209 2224e090-3a3e-4db0-b7fe-9a99568011c3 2019-06-16 20:51:19.359971 9647 248 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.209 2224e090-3a3e-4db0-b7fe-9a99568011c3 2019-06-16 20:51:19.375636 9648 247 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 249\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.51E3\nphysical_cash: !ruby/object:BigDecimal 18:0.51E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.40.209 7f8b56cc-bca3-400a-8817-e9c118bb09b1 2019-06-16 20:54:20.901442 9649 249 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.209 7f8b56cc-bca3-400a-8817-e9c118bb09b1 2019-06-16 20:54:20.921662 9650 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-16 16:22:28.036788000 Z\n- &1 2019-06-16 19:08:46.065907000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-17 16:20:06.498653372 Z\nsign_in_count:\n- 162\n- 163\n 329 \N 189.186.40.209 cdfe3b83-4f0e-426c-be4b-26ed6d334e32 2019-06-17 16:20:06.541148 9651 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 7k6rbwBUkqxpyE8RsQA8\n- irYcV4kovX2xGsdxMxAH\n 330 \N 189.186.40.209 cdfe3b83-4f0e-426c-be4b-26ed6d334e32 2019-06-17 16:20:06.571447 9652 250 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.924E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 924.0 189.186.40.209 36f74687-469e-4769-8e7e-59573e14fcd5 2019-06-17 16:20:32.58771 9653 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-06-07 00:36:35.351384000 Z\n- &1 2019-06-14 01:22:14.236318000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-17 17:04:30.075759593 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093969\n mask_addr: 4294967295\nsign_in_count:\n- 79\n- 80\n 160 \N 189.186.40.209 f2a509b5-d129-4e7f-b497-f34c07ffe9bb 2019-06-17 17:04:30.083663 9654 10 User \N \N 10 User \N update ---\nunique_session_id:\n- XB3NB7f4wwiLMHjzhjUB\n- myYZMr7YVzoyd68oEQcL\n 161 \N 189.186.40.209 f2a509b5-d129-4e7f-b497-f34c07ffe9bb 2019-06-17 17:04:30.100018 9655 251 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.51E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 510.0 189.186.40.209 13b81f95-ecab-4e46-9748-766d01b4c9fd 2019-06-17 17:04:38.938136 9656 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-16 16:23:02.984479000 Z\n- &1 2019-06-16 18:32:18.723061000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-17 17:56:14.665681797 Z\nsign_in_count:\n- 394\n- 395\n 790 \N 189.186.40.209 58cd95a4-9f7e-4903-9857-233ab8c29738 2019-06-17 17:56:14.671409 9657 3 User \N \N 3 User \N update ---\nunique_session_id:\n- WcwubgU5aQZ5Je58FF4i\n- G4qmmyoPV7oEtCtsgEpS\n 791 \N 189.186.40.209 58cd95a4-9f7e-4903-9857-233ab8c29738 2019-06-17 17:56:14.686053 9658 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-16 18:45:12.564888000 Z\n- &1 2019-06-16 20:27:49.421642000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-17 20:02:31.625515887 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938444\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938444\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096769\n mask_addr: 4294967295\nsign_in_count:\n- 284\n- 285\n 570 \N 189.186.51.193 6cf4f6e0-6424-4307-9a14-27e67293628a 2019-06-17 20:02:31.634018 9659 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mouqyxGdNnCgxyAa4V7m\n- osSxcmzFjkbYqcXqAao2\n 571 \N 189.186.51.193 6cf4f6e0-6424-4307-9a14-27e67293628a 2019-06-17 20:02:31.648885 9660 753 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 250\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-06-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-426\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 7d9ff0a7-8275-41b5-890f-d925c94b0a50 2019-06-17 20:50:15.873091 9661 645 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.40.209 7d9ff0a7-8275-41b5-890f-d925c94b0a50 2019-06-17 20:50:15.919282 9662 753 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 d46e07e4-c9fa-469d-897e-5202be08e83d 2019-06-17 20:51:03.561897 9690 754 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 253\namount: !ruby/object:BigDecimal 18:0.144469E4\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1548E4\nstatus: 0\ndate_sale: 2019-06-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-427\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 d7255f53-d7c7-474d-a458-830f67dae56a 2019-06-18 18:08:49.757049 9663 1009 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 250\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 753\ncardnumber: 8263\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-426\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-426 189.186.40.209 d46e07e4-c9fa-469d-897e-5202be08e83d 2019-06-17 20:51:03.59378 9664 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-16 20:27:49.421642000 Z\n- &1 2019-06-17 20:02:31.625515000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-17 21:55:32.897343238 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938444\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096769\n mask_addr: 4294967295\nsign_in_count:\n- 285\n- 286\n 572 \N 189.186.51.193 20c11dec-ad79-460c-b330-c9badfedf62b 2019-06-17 21:55:32.905759 9665 4 User \N \N 4 User \N update ---\nunique_session_id:\n- osSxcmzFjkbYqcXqAao2\n- _H1yq52etE_iMQE6LzX6\n 573 \N 189.186.51.193 20c11dec-ad79-460c-b330-c9badfedf62b 2019-06-17 21:55:32.922557 9666 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-16 18:32:18.723061000 Z\n- &1 2019-06-17 17:56:14.665681000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-18 00:55:16.415330163 Z\nsign_in_count:\n- 395\n- 396\n 792 \N 189.186.40.209 94ca6701-c628-46d2-b035-d178c3efaca7 2019-06-18 00:55:16.42263 9667 3 User \N \N 3 User \N update ---\nunique_session_id:\n- G4qmmyoPV7oEtCtsgEpS\n- hACkQ82mYkjc44MTDnig\n 793 \N 189.186.40.209 94ca6701-c628-46d2-b035-d178c3efaca7 2019-06-18 00:55:16.439574 9668 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-13 22:23:39.898409000 Z\n- &1 2019-06-14 01:12:56.677285000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-18 00:55:48.799181151 Z\nsign_in_count:\n- 229\n- 230\n 460 \N 189.186.40.209 ad264492-a990-443b-98f8-1994024f2726 2019-06-18 00:55:48.807758 9669 12 User \N \N 12 User \N update ---\nunique_session_id:\n- DzybA-qAYR6rQPpgs617\n- _UPUWQFZNoSAxq9fzdN8\n 461 \N 189.186.40.209 ad264492-a990-443b-98f8-1994024f2726 2019-06-18 00:55:48.825837 9670 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-17 17:56:14.665681000 Z\n- &1 2019-06-18 00:55:16.415330000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-18 01:51:41.455257861 Z\nsign_in_count:\n- 396\n- 397\n 794 \N 189.186.40.209 86b3c1f4-70aa-407d-b21b-690bfc2efb28 2019-06-18 01:51:41.464057 9671 3 User \N \N 3 User \N update ---\nunique_session_id:\n- hACkQ82mYkjc44MTDnig\n- U12SVuqNA3uXaMya3Zts\n 795 \N 189.186.40.209 86b3c1f4-70aa-407d-b21b-690bfc2efb28 2019-06-18 01:51:41.484377 9672 248 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 251\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.51E3\nphysical_cash: !ruby/object:BigDecimal 18:0.51E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.40.209 9e453e29-232f-4611-920e-54b753e0dab2 2019-06-18 01:52:05.846264 9673 251 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.209 9e453e29-232f-4611-920e-54b753e0dab2 2019-06-18 01:52:05.862352 9674 249 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 250\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.699E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.924E3\nphysical_cash: !ruby/object:BigDecimal 18:0.924E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.40.209 2a62f50a-3234-426f-aac7-36ccb3455138 2019-06-18 01:53:36.465496 9675 250 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.209 2a62f50a-3234-426f-aac7-36ccb3455138 2019-06-18 01:53:36.486027 9676 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-18 00:55:16.415330000 Z\n- &1 2019-06-18 01:51:41.455257000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-18 16:02:16.643765577 Z\nsign_in_count:\n- 397\n- 398\n 796 \N 189.186.40.209 9c344f02-5a5b-4fe6-af63-3792d17dfe95 2019-06-18 16:02:16.694347 9677 3 User \N \N 3 User \N update ---\nunique_session_id:\n- U12SVuqNA3uXaMya3Zts\n- uN_H97SQR7CoC_YfQaJz\n 797 \N 189.186.40.209 9c344f02-5a5b-4fe6-af63-3792d17dfe95 2019-06-18 16:02:16.726988 9678 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-18 01:51:41.455257000 Z\n- &1 2019-06-18 16:02:16.643765000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-18 16:02:16.891435808 Z\nsign_in_count:\n- 398\n- 399\n 798 \N 189.186.40.209 eb0634c8-250e-4a99-8428-4833acf5611f 2019-06-18 16:02:16.901125 9679 3 User \N \N 3 User \N update ---\nunique_session_id:\n- uN_H97SQR7CoC_YfQaJz\n- NWxKMHV8CmVHZsQy5HZY\n 799 \N 189.186.40.209 eb0634c8-250e-4a99-8428-4833acf5611f 2019-06-18 16:02:16.934514 9680 252 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.51E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 510.0 189.186.40.209 a540d4cd-c402-421a-a2d9-67a1403dd055 2019-06-18 16:02:30.552942 9681 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-16 19:08:46.065907000 Z\n- &1 2019-06-17 16:20:06.498653000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-18 17:17:51.211212130 Z\nsign_in_count:\n- 163\n- 164\n 331 \N 189.186.40.209 9e2d125b-a059-4665-8690-e71f628575d1 2019-06-18 17:17:51.21768 9682 2 User \N \N 2 User \N update ---\nunique_session_id:\n- irYcV4kovX2xGsdxMxAH\n- ei4LfoEknGQsTawzibQ_\n 332 \N 189.186.40.209 9e2d125b-a059-4665-8690-e71f628575d1 2019-06-18 17:17:51.231401 9683 253 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.924E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 924.0 189.186.40.209 4cacd3ff-f401-4c63-9842-5abd8ee09eae 2019-06-18 17:18:24.429886 9684 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-17 20:02:31.625515000 Z\n- &1 2019-06-17 21:55:32.897343000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-18 17:42:58.963170284 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946072\n mask_addr: 4294967295\nsign_in_count:\n- 286\n- 287\n 574 \N 200.68.181.88 78bda515-4c13-491e-b8e7-4e205034c0e2 2019-06-18 17:42:58.994807 9685 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _H1yq52etE_iMQE6LzX6\n- EMRUADFfsdhtcsXxuuzi\n 575 \N 200.68.181.88 78bda515-4c13-491e-b8e7-4e205034c0e2 2019-06-18 17:42:59.022558 9686 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-18 16:02:16.643765000 Z\n- &1 2019-06-18 16:02:16.891435000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-18 17:56:09.958747826 Z\nsign_in_count:\n- 399\n- 400\n 800 \N 189.186.40.209 94bbea81-655b-4d45-81ff-3584411f2c6e 2019-06-18 17:56:09.964642 9687 3 User \N \N 3 User \N update ---\nunique_session_id:\n- NWxKMHV8CmVHZsQy5HZY\n- s_L91WGanGfAXTZpCstY\n 801 \N 189.186.40.209 94bbea81-655b-4d45-81ff-3584411f2c6e 2019-06-18 17:56:09.978888 9688 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-18 16:02:16.891435000 Z\n- &1 2019-06-18 17:56:09.958747000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-18 18:06:11.021318226 Z\nsign_in_count:\n- 400\n- 401\n 802 \N 189.186.40.209 57b23b76-49c0-4d09-8d80-d5d9e60fd831 2019-06-18 18:06:11.028818 40415 1346 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001346'\n 2 \N 189.186.40.40 06cee12c-afdc-4308-bf3e-2e5f4d1b21a8 2020-09-19 00:22:45.0705 9691 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 26 \N 189.186.40.209 d7255f53-d7c7-474d-a458-830f67dae56a 2019-06-18 18:08:49.80565 9692 656 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.40.209 d7255f53-d7c7-474d-a458-830f67dae56a 2019-06-18 18:08:49.840325 9693 754 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 46b16574-25f8-483f-980d-8d4bb244729c 2019-06-18 18:09:22.823181 9694 1010 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 253\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1548E4\nmove_type: '1'\nsale_id: 754\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-427\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1548E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-427 189.186.40.209 46b16574-25f8-483f-980d-8d4bb244729c 2019-06-18 18:09:22.852097 9695 755 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 253\namount: !ruby/object:BigDecimal 18:0.10681E4\ntax: !ruby/object:BigDecimal 18:0.1709E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1239E4\nstatus: 0\ndate_sale: 2019-06-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-428\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 491f9ba1-9e74-4ebc-9ead-9a0a0d69582f 2019-06-18 19:54:40.046623 9696 250 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.40.209 491f9ba1-9e74-4ebc-9ead-9a0a0d69582f 2019-06-18 19:54:40.075301 9697 755 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 8cbe9614-dfa7-468a-b245-d1bdb6d3e9da 2019-06-18 19:55:16.074808 9698 1011 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 253\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1239E4\nmove_type: '1'\nsale_id: 755\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-428\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1239E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-428 189.186.40.209 8cbe9614-dfa7-468a-b245-d1bdb6d3e9da 2019-06-18 19:55:16.098517 9699 1012 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 252\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.369E3\nmove_type: '1'\nsale_id: 545\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.131E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-242 189.186.40.209 1a4a927f-0726-40d7-a31e-33a036da598b 2019-06-18 20:09:15.850193 9700 545 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.40.209 e825f8b2-6613-441c-a8b9-ebc70eb72feb 2019-06-18 20:09:19.546913 9701 1013 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 253\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.199E3\nmove_type: '1'\nsale_id: 696\ncardnumber: 6507\npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-392 189.186.40.209 47af4896-f58d-47e6-9e6f-b33208c31c3e 2019-06-18 20:18:03.286257 9702 1014 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 253\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 696\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-392 189.186.40.209 7e504040-9ff2-48f7-9a96-0d525240bd26 2019-06-18 20:18:20.823432 9703 1014 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 253\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 696\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.40.209 b03a50c8-864c-4e20-99ce-518364bb73b5 2019-06-18 20:20:57.983384 9704 1013 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 253\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.199E3\nmove_type: '1'\nsale_id: 696\ncardnumber: 6507\npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.40.209 24a4fa55-3c2f-4d68-81a7-1c85e321f0e1 2019-06-18 20:21:00.798942 9705 1015 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 253\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 696\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-392 189.186.40.209 bfbe2d82-d079-4f6f-842e-0addc9c698b5 2019-06-18 20:21:18.702038 9706 1016 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 253\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 696\ncardnumber: 6507\npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-392 189.186.40.209 50be542e-5eb8-4550-98f3-77a4be9f7f88 2019-06-18 20:22:14.552201 9707 696 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.40.209 b8fca1ac-fed9-4217-845f-4217588bbe6c 2019-06-18 20:22:17.700677 9708 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-18 17:56:09.958747000 Z\n- &1 2019-06-18 18:06:11.021318000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-18 21:02:44.419955876 Z\nsign_in_count:\n- 401\n- 402\n 804 \N 189.186.40.209 262c96fb-e5cc-471f-83e0-fdf0497c8fb8 2019-06-18 21:02:44.426452 9709 3 User \N \N 3 User \N update ---\nunique_session_id:\n- guV-nPMutz1ex_eUUnRv\n- ZswwiZ6T2QU6TPWo-qyx\n 805 \N 189.186.40.209 262c96fb-e5cc-471f-83e0-fdf0497c8fb8 2019-06-18 21:02:44.441949 9710 756 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 252\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-06-18\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-326\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 811a6e98-a70b-46f5-8b66-6053975208f3 2019-06-18 21:03:40.555702 9711 435 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.40.209 811a6e98-a70b-46f5-8b66-6053975208f3 2019-06-18 21:03:40.603591 9712 756 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 2894b9fd-025d-4b5d-8c18-29bb37b24265 2019-06-18 21:04:36.593241 9713 1017 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 252\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 756\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-326\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-326 189.186.40.209 2894b9fd-025d-4b5d-8c18-29bb37b24265 2019-06-18 21:04:36.618219 9714 1017 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 252\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 756\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-326\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.40.209 37b743f6-a39b-4911-8691-55137ac910cd 2019-06-18 21:04:54.727747 9715 756 Sale \N \N 3 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-326 cancelada. 189.186.40.209 74154f30-d246-452a-b352-35fd590980e3 2019-06-18 21:05:08.179867 9716 435 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 189.186.40.209 74154f30-d246-452a-b352-35fd590980e3 2019-06-18 21:05:08.216085 9717 757 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 252\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-06-18\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-327\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 7b39292c-80b5-4399-8476-30defd70ac68 2019-06-18 21:05:31.910604 9718 435 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 189.186.40.209 7b39292c-80b5-4399-8476-30defd70ac68 2019-06-18 21:05:31.962789 9719 757 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 d04db7c3-3551-4d80-9504-3819352d27b5 2019-06-18 21:05:36.48565 9720 1018 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 252\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 757\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-327\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-327 189.186.40.209 d04db7c3-3551-4d80-9504-3819352d27b5 2019-06-18 21:05:36.510841 9721 1019 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 252\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.895E3\nmove_type: '1'\nsale_id: 749\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.5E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-325 189.186.40.209 f58bc418-fa11-4d60-b308-8d819bba4625 2019-06-18 21:33:41.561136 9722 749 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.40.209 ecfe62dc-075f-4295-b37b-9cac5ada77ba 2019-06-18 21:33:43.634903 9723 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-18 18:06:11.021318000 Z\n- &1 2019-06-18 21:02:44.419955000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-18 22:30:50.149760144 Z\nsign_in_count:\n- 402\n- 403\n 806 \N 189.186.40.209 75f54be2-1b34-47f2-be5f-43105a8770bd 2019-06-18 22:30:50.197463 9724 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ZswwiZ6T2QU6TPWo-qyx\n- QLyypUreqdqdtTAx_quP\n 807 \N 189.186.40.209 75f54be2-1b34-47f2-be5f-43105a8770bd 2019-06-18 22:30:50.231556 9725 130 Customer \N \N 2 User \N create ---\nnick_name: LIZETH FELIX\nphone: "(667) 251-3457"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LIZETH FELIX fue registrado. 189.186.40.209 518931ff-9e33-46f8-8f7e-436f2e761125 2019-06-18 22:39:42.910053 9726 758 Sale \N \N 2 User \N create ---\ncustomer_id: 130\nuser_id: 2\nopen_cash_register_id: 253\namount: !ruby/object:BigDecimal 18:0.1498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1498E4\nstatus: 0\ndate_sale: 2019-06-18\nsaletype: 2\nseller_id: 8\nsale_code: PV1-V-429\nexpiration_date: 2019-07-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 380f646b-ee3e-4dc6-8b70-b2ebb1926cfd 2019-06-18 22:40:03.510508 9727 660 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.40.209 380f646b-ee3e-4dc6-8b70-b2ebb1926cfd 2019-06-18 22:40:03.560485 9728 1020 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 253\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 758\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-429\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-429 189.186.40.209 ea4290e9-8f0e-47b4-a58b-e09fe84fd829 2019-06-18 22:40:28.188841 9729 758 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-429 cancelada. 189.186.40.209 3fdb3c24-334f-47e4-9e85-5e21fb156c5f 2019-06-18 22:40:43.584122 9730 660 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.40.209 3fdb3c24-334f-47e4-9e85-5e21fb156c5f 2019-06-18 22:40:43.622255 9731 759 Sale \N \N 2 User \N create ---\ncustomer_id: 130\nuser_id: 2\nopen_cash_register_id: 253\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-06-18\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-430\nexpiration_date: 2019-07-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 1bd45b68-0a68-47dd-b265-8698aa43bbeb 2019-06-18 22:41:34.516359 9732 660 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.40.209 1bd45b68-0a68-47dd-b265-8698aa43bbeb 2019-06-18 22:41:34.594561 9758 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-18 17:17:51.211212000 Z\n- &1 2019-06-19 16:05:44.368083000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-19 19:27:32.442736055 Z\nsign_in_count:\n- 165\n- 166\n 335 \N 189.186.40.209 ead5315b-58c7-438c-b180-a943f5a5812f 2019-06-19 19:27:32.448825 9759 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 9CWicwnEUXt8v9zV8Mrp\n- dT3z7AEZ7ziBa9GAiL_M\n 336 \N 189.186.40.209 ead5315b-58c7-438c-b180-a943f5a5812f 2019-06-19 19:27:32.462199 9733 1021 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 253\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 759\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-430\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-430 189.186.40.209 e97b7b41-8c6b-4c25-a329-adb66af814eb 2019-06-18 22:41:54.168967 9734 759 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.40.209 259d6e54-8c3b-4e55-8db3-0f73f2a1e311 2019-06-18 22:41:55.67391 9735 759 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV1-V-430 cancelada. 189.186.40.209 d4fd8252-1df0-48cf-a3e7-5c533c208425 2019-06-18 22:42:55.253321 9736 1021 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 253\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 759\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-430\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.40.209 d4fd8252-1df0-48cf-a3e7-5c533c208425 2019-06-18 22:42:55.289927 9737 660 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 189.186.40.209 d4fd8252-1df0-48cf-a3e7-5c533c208425 2019-06-18 22:42:55.354865 9738 760 Sale \N \N 2 User \N create ---\ncustomer_id: 130\nuser_id: 2\nopen_cash_register_id: 253\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-06-18\nsaletype: 2\nseller_id: 8\nsale_code: PV1-V-431\nexpiration_date: 2019-07-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 b80cb068-153a-465b-8076-4bb425421de8 2019-06-18 22:44:03.612923 9739 660 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 189.186.40.209 b80cb068-153a-465b-8076-4bb425421de8 2019-06-18 22:44:03.639478 9740 1022 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 253\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 760\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-431\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-431 189.186.40.209 15c2c772-2152-4856-86b2-c5b93cc05402 2019-06-18 22:44:11.944506 9741 760 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.40.209 2f5c07e5-0211-4da0-8b3e-0a5208c78919 2019-06-18 22:44:13.176924 9742 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-18 21:02:44.419955000 Z\n- &1 2019-06-18 22:30:50.149760000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-18 23:18:25.342979601 Z\nsign_in_count:\n- 403\n- 404\n 808 \N 189.186.40.209 74091323-2919-450f-bf4d-6e3c0dc46b14 2019-06-18 23:18:25.350667 9743 3 User \N \N 3 User \N update ---\nunique_session_id:\n- QLyypUreqdqdtTAx_quP\n- UHzsASMzk9BzSkrX6Rdr\n 809 \N 189.186.40.209 74091323-2919-450f-bf4d-6e3c0dc46b14 2019-06-18 23:18:25.371134 9744 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-18 22:30:50.149760000 Z\n- &1 2019-06-18 23:18:25.342979000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-19 01:55:40.872024478 Z\nsign_in_count:\n- 404\n- 405\n 810 \N 189.186.40.209 d4bb75db-d9f4-47c4-b3cb-d12741b88e7f 2019-06-19 01:55:40.879314 9745 3 User \N \N 3 User \N update ---\nunique_session_id:\n- UHzsASMzk9BzSkrX6Rdr\n- EhHyGGAqL5bJeuZxz-F9\n 811 \N 189.186.40.209 d4bb75db-d9f4-47c4-b3cb-d12741b88e7f 2019-06-19 01:55:40.894439 9746 250 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 253\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3986E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.35E4\ncash_fund: !ruby/object:BigDecimal 18:0.1011E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4511E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.40.209 ee150ca5-5b7d-46f0-a575-1a5c76e9b648 2019-06-19 01:56:20.795297 9747 253 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.209 ee150ca5-5b7d-46f0-a575-1a5c76e9b648 2019-06-19 01:56:20.813361 9748 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-18 23:18:25.342979000 Z\n- &1 2019-06-19 01:55:40.872024000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-19 01:58:43.817183632 Z\nsign_in_count:\n- 405\n- 406\n 812 \N 189.186.40.209 5e228116-cff0-4c4c-9f7f-c034e14a369a 2019-06-19 01:58:43.825914 9749 3 User \N \N 3 User \N update ---\nunique_session_id:\n- EhHyGGAqL5bJeuZxz-F9\n- mmtUB3bCh-PN6a8axwze\n 813 \N 189.186.40.209 5e228116-cff0-4c4c-9f7f-c034e14a369a 2019-06-19 01:58:43.845008 9750 251 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 252\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1863E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.18E4\ncash_fund: !ruby/object:BigDecimal 18:0.573E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2373E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.40.209 0a949d9e-b4a4-4af2-a9b6-a30dbf291c9b 2019-06-19 02:06:11.305772 9751 252 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.209 0a949d9e-b4a4-4af2-a9b6-a30dbf291c9b 2019-06-19 02:06:11.326873 9752 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-17 16:20:06.498653000 Z\n- &1 2019-06-18 17:17:51.211212000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-19 16:05:44.368083949 Z\nsign_in_count:\n- 164\n- 165\n 333 \N 189.186.40.209 7bd5cc0a-2f50-4d36-ace1-f7028a992c58 2019-06-19 16:05:44.454301 9753 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ei4LfoEknGQsTawzibQ_\n- 9CWicwnEUXt8v9zV8Mrp\n 334 \N 189.186.40.209 7bd5cc0a-2f50-4d36-ace1-f7028a992c58 2019-06-19 16:05:44.501927 9754 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-19 01:55:40.872024000 Z\n- &1 2019-06-19 01:58:43.817183000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-19 16:11:35.826923623 Z\nsign_in_count:\n- 406\n- 407\n 814 \N 189.186.40.209 dd325639-8724-4728-8cb7-fdcd9c13ad6c 2019-06-19 16:11:35.844431 9755 3 User \N \N 3 User \N update ---\nunique_session_id:\n- mmtUB3bCh-PN6a8axwze\n- RCJDyJBsWwGYz5skd6eV\n 815 \N 189.186.40.209 dd325639-8724-4728-8cb7-fdcd9c13ad6c 2019-06-19 16:11:35.885419 9756 254 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.573E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 573.0 189.186.40.209 d5f045e2-5cf4-4130-83de-c1b31ce4a838 2019-06-19 16:17:15.752475 9757 255 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1011E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1011.0 189.186.40.209 f69b6d64-cf58-45ac-b32b-7ca3e99fed68 2019-06-19 16:24:27.09732 9831 234 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.33.248 d6c66b45-4e0e-4d04-be75-ecfd0d81f269 2019-06-20 21:57:36.3541 9760 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-19 01:58:43.817183000 Z\n- &1 2019-06-19 16:11:35.826923000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-19 19:28:08.964869096 Z\nsign_in_count:\n- 407\n- 408\n 816 \N 189.186.40.209 7d2b93e6-de8e-4d6c-af11-05c867ab6d13 2019-06-19 19:28:08.973884 9761 3 User \N \N 3 User \N update ---\nunique_session_id:\n- RCJDyJBsWwGYz5skd6eV\n- xN6A_ZrbX4EiwX6X_t1H\n 817 \N 189.186.40.209 7d2b93e6-de8e-4d6c-af11-05c867ab6d13 2019-06-19 19:28:08.997141 9762 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-17 21:55:32.897343000 Z\n- &1 2019-06-18 17:42:58.963170000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-19 20:17:38.976023912 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946072\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946072\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096769\n mask_addr: 4294967295\nsign_in_count:\n- 287\n- 288\n 576 \N 189.186.51.193 be883be3-2637-45bc-a41f-129bb451d07d 2019-06-19 20:17:38.984503 9763 4 User \N \N 4 User \N update ---\nunique_session_id:\n- EMRUADFfsdhtcsXxuuzi\n- H3Mx9DwXsR6NVVa6i9_a\n 577 \N 189.186.51.193 be883be3-2637-45bc-a41f-129bb451d07d 2019-06-19 20:17:39.000421 9764 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-19 16:05:44.368083000 Z\n- &1 2019-06-19 19:27:32.442736000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-19 20:42:21.068766526 Z\nsign_in_count:\n- 166\n- 167\n 337 \N 189.186.40.209 9b8964f5-c13e-4ab5-9ce2-026f54aef749 2019-06-19 20:42:21.077573 9765 2 User \N \N 2 User \N update ---\nunique_session_id:\n- dT3z7AEZ7ziBa9GAiL_M\n- YVoEV8PirysJku_GR7JU\n 338 \N 189.186.40.209 9b8964f5-c13e-4ab5-9ce2-026f54aef749 2019-06-19 20:42:21.096045 9766 761 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 255\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-06-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-432\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 7d79f2f7-225c-482e-931f-6abb02fafd84 2019-06-19 20:42:58.165614 9767 147 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.40.209 7d79f2f7-225c-482e-931f-6abb02fafd84 2019-06-19 20:42:58.204696 9768 761 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 af2e5ef0-aec1-4f9b-be17-185a957b712e 2019-06-19 20:44:08.160385 9769 1023 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 255\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 761\ncardnumber: 4489\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-432\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-432 189.186.40.209 af2e5ef0-aec1-4f9b-be17-185a957b712e 2019-06-19 20:44:08.198795 9770 1024 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 255\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.269E3\nmove_type: '1'\nsale_id: 761\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-432\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.269E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-432 189.186.40.209 389265d1-0111-4527-b774-82e3586bb7a3 2019-06-19 20:44:23.887867 9771 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-19 16:11:35.826923000 Z\n- &1 2019-06-19 19:28:08.964869000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-19 20:55:01.192808783 Z\nsign_in_count:\n- 408\n- 409\n 818 \N 189.186.40.209 88f36843-89d5-42d1-a87b-234c910ff96a 2019-06-19 20:55:01.203104 9772 3 User \N \N 3 User \N update ---\nunique_session_id:\n- xN6A_ZrbX4EiwX6X_t1H\n- Eat7br22V73-4kVV9jdh\n 819 \N 189.186.40.209 88f36843-89d5-42d1-a87b-234c910ff96a 2019-06-19 20:55:01.224879 9773 762 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 254\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-06-19\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-328\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 4aa2f55b-2415-448a-a6b7-14206c64639e 2019-06-19 20:55:44.825601 9774 404 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 189.186.40.209 4aa2f55b-2415-448a-a6b7-14206c64639e 2019-06-19 20:55:44.859927 9775 762 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 be617f1c-f75a-4b98-a0fe-8620d79509bc 2019-06-19 20:55:49.300798 9776 1025 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 254\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 762\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-328\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-328 189.186.40.209 be617f1c-f75a-4b98-a0fe-8620d79509bc 2019-06-19 20:55:49.322307 9777 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-19 19:28:08.964869000 Z\n- &1 2019-06-19 20:55:01.192808000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-19 22:31:51.063843794 Z\nsign_in_count:\n- 409\n- 410\n 820 \N 189.186.40.209 6f9084b3-49f5-4f1d-8507-3f14a3dc5595 2019-06-19 22:31:51.070671 9778 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Eat7br22V73-4kVV9jdh\n- yg7AyJzv9QHkaGzbJGdM\n 821 \N 189.186.40.209 6f9084b3-49f5-4f1d-8507-3f14a3dc5595 2019-06-19 22:31:51.086472 9779 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-14 01:12:56.677285000 Z\n- &1 2019-06-18 00:55:48.799181000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-19 22:59:21.145023230 Z\nsign_in_count:\n- 230\n- 231\n 462 \N 189.186.40.209 f8d0233e-b44b-4167-bda6-aeb37ca411bd 2019-06-19 22:59:21.152359 9780 12 User \N \N 12 User \N update ---\nunique_session_id:\n- _UPUWQFZNoSAxq9fzdN8\n- Y4FxHy9yszszugasJuro\n 463 \N 189.186.40.209 f8d0233e-b44b-4167-bda6-aeb37ca411bd 2019-06-19 22:59:21.168046 9781 763 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 255\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-06-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-433\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 aaed6516-5e1e-486a-97cb-dd2a1cd2639c 2019-06-19 23:00:17.885067 9782 536 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.40.209 aaed6516-5e1e-486a-97cb-dd2a1cd2639c 2019-06-19 23:00:17.914933 9783 763 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 efa8fc63-441f-4cfa-a60f-f77bbaddf130 2019-06-19 23:00:22.846907 20267 886 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '886'\n is_parent: false\n sku: CHA-886\n name: CHA-0002\n description: "Sueter lentejuelas JELOUSE TOMATO ST-ASW1115 \\r\\n"\n price_base: '395.0'\n price_sale: '989.0'\n img_product: PHOTO-2019-10-15-21-54-24__1_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000886'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-30 01:30:38.001584'\n updated_at: &12 2019-11-05 20:24:11.733388976 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '886'\n sku: CHA-886\n name: CHA-0002\n description: "Sueter lentejuelas JELOUSE TOMATO ST-ASW1115 \\r\\n"\n price_base: '395.00'\n price_sale: '989.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-30 01:30:38.001584'\n updated_at: '2019-10-30 01:30:38.05735'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000886'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '886'\n type: *3\n value: 886\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-886\n type: *7\n value: CHA-886\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0002\n type: *8\n value: CHA-0002\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "Sueter lentejuelas JELOUSE TOMATO ST-ASW1115\n \\r\\n"\n type: *6\n value: "Sueter lentejuelas JELOUSE TOMATO ST-ASW1115 \\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '395.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.395E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '989.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.989E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-10-15-21-54-24__1_.jpg\n type: *2\n value: PHOTO-2019-10-15-21-54-24__1_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000886'\n type: *2\n value: '0000886'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-30 01:30:38.001584'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-10-15-21-54-24__1_.jpg\n 3 El producto CHA-886 fue modificado. 187.149.74.215 15737d22-842e-445d-b1c7-37dbf094a992 2019-11-05 20:24:11.771882 9784 1026 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 255\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 763\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-433\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-433 189.186.40.209 efa8fc63-441f-4cfa-a60f-f77bbaddf130 2019-06-19 23:00:22.874411 9785 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-18 17:42:58.963170000 Z\n- &1 2019-06-19 20:17:38.976023000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-19 23:02:22.720866457 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946072\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096769\n mask_addr: 4294967295\nsign_in_count:\n- 288\n- 289\n 578 \N 189.186.51.193 42c2ffe1-9f0b-4c2c-9e36-1537e7fa1dbd 2019-06-19 23:02:22.729213 9786 4 User \N \N 4 User \N update ---\nunique_session_id:\n- H3Mx9DwXsR6NVVa6i9_a\n- nG5zGwdhwFQAesfJggvE\n 579 \N 189.186.51.193 42c2ffe1-9f0b-4c2c-9e36-1537e7fa1dbd 2019-06-19 23:02:22.755033 9787 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-19 19:27:32.442736000 Z\n- &1 2019-06-19 20:42:21.068766000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-19 23:17:23.777126759 Z\nsign_in_count:\n- 167\n- 168\n 339 \N 189.186.40.209 7a15c1d4-6bc6-46ea-972d-b02c970b8ffe 2019-06-19 23:17:23.784292 9788 2 User \N \N 2 User \N update ---\nunique_session_id:\n- YVoEV8PirysJku_GR7JU\n- RXbvgk1RGT7iSaQzTBjm\n 340 \N 189.186.40.209 7a15c1d4-6bc6-46ea-972d-b02c970b8ffe 2019-06-19 23:17:23.800795 9789 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-19 20:55:01.192808000 Z\n- &1 2019-06-19 22:31:51.063843000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-19 23:17:51.279019934 Z\nsign_in_count:\n- 410\n- 411\n 822 \N 189.186.40.209 8cbcb99b-f1c2-47ca-b257-8ba95817fe37 2019-06-19 23:17:51.287571 9790 3 User \N \N 3 User \N update ---\nunique_session_id:\n- yg7AyJzv9QHkaGzbJGdM\n- WiAYvkXyH7qyi6-fzZYt\n 823 \N 189.186.40.209 8cbcb99b-f1c2-47ca-b257-8ba95817fe37 2019-06-19 23:17:51.30452 9791 764 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 254\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-06-19\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-329\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 ce7b1e91-4ebf-4ba3-b93a-130b9e7f4c06 2019-06-19 23:56:16.004148 9792 550 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.40.209 ce7b1e91-4ebf-4ba3-b93a-130b9e7f4c06 2019-06-19 23:56:16.038389 9793 764 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 dd029a1d-2e44-4307-a21f-28ed83a1accf 2019-06-19 23:56:24.308045 9794 1027 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 254\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 764\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-329\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-329 189.186.40.209 dd029a1d-2e44-4307-a21f-28ed83a1accf 2019-06-19 23:56:24.340315 9795 765 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 255\namount: !ruby/object:BigDecimal 18:0.42155E3\ntax: !ruby/object:BigDecimal 18:0.6745E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-06-19\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-434\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.209 7f07714f-870c-44be-9fa1-cf6b53779d82 2019-06-19 23:59:11.786435 9796 134 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.40.209 7f07714f-870c-44be-9fa1-cf6b53779d82 2019-06-19 23:59:11.818392 9797 765 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.209 fbbdb803-c0e1-470e-a3fa-07f13a23b9a7 2019-06-19 23:59:15.11892 9798 1028 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 255\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.489E3\nmove_type: '1'\nsale_id: 765\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-434\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-434 189.186.40.209 fbbdb803-c0e1-470e-a3fa-07f13a23b9a7 2019-06-19 23:59:15.145226 9799 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-19 20:17:38.976023000 Z\n- &1 2019-06-19 23:02:22.720866000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-20 00:41:49.201653099 Z\nsign_in_count:\n- 289\n- 290\n 580 \N 189.186.51.193 d349d745-39e4-4501-b20c-a13882a5fd20 2019-06-20 00:41:49.209063 9800 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nG5zGwdhwFQAesfJggvE\n- a5Sn9UF8ep3Z_VFMsuZf\n 581 \N 189.186.51.193 d349d745-39e4-4501-b20c-a13882a5fd20 2019-06-20 00:41:49.228769 9801 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-18 00:55:48.799181000 Z\n- &1 2019-06-19 22:59:21.145023000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-20 01:56:59.488842010 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093969\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092216\n mask_addr: 4294967295\nsign_in_count:\n- 231\n- 232\n 464 \N 189.186.33.248 8fdcca5c-b20b-42bc-8e7d-9b943be3c481 2019-06-20 01:56:59.500457 9802 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Y4FxHy9yszszugasJuro\n- YEk342-R8CdPSEvxBmXn\n 465 \N 189.186.33.248 8fdcca5c-b20b-42bc-8e7d-9b943be3c481 2019-06-20 01:56:59.525271 9803 252 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 255\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.1557E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.14E4\ncash_fund: !ruby/object:BigDecimal 18:0.968E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2368E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.33.248 deac9211-e0f7-4074-a920-837a50c134ef 2019-06-20 01:57:36.496751 9804 255 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.33.248 deac9211-e0f7-4074-a920-837a50c134ef 2019-06-20 01:57:36.517118 9805 253 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 254\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1098E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.671E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1671E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.33.248 756fad1a-7b9e-45a7-b168-eb0cc7b02708 2019-06-20 02:04:47.550902 9806 254 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.33.248 756fad1a-7b9e-45a7-b168-eb0cc7b02708 2019-06-20 02:04:47.571394 40443 2969 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 270c578d-4bf4-44b5-a260-ddafc0cd87f7 2020-09-19 00:49:02.777463 9807 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-19 22:31:51.063843000 Z\n- &1 2019-06-19 23:17:51.279019000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-20 16:10:22.003374883 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093969\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092216\n mask_addr: 4294967295\nsign_in_count:\n- 411\n- 412\n 824 \N 189.186.33.248 b7a5d1f5-7787-4eef-bb41-6648dee6d008 2019-06-20 16:10:22.036773 9808 3 User \N \N 3 User \N update ---\nunique_session_id:\n- WiAYvkXyH7qyi6-fzZYt\n- pDPF5rofH_y2LFJn8s7Q\n 825 \N 189.186.33.248 b7a5d1f5-7787-4eef-bb41-6648dee6d008 2019-06-20 16:10:22.066083 9809 256 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.654E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 654.0 189.186.33.248 215214bc-028f-4882-9475-25af5b9c2f8a 2019-06-20 16:17:46.405327 9810 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-19 22:59:21.145023000 Z\n- &1 2019-06-20 01:56:59.488842000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-20 18:04:35.957821117 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093969\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092216\n mask_addr: 4294967295\nsign_in_count:\n- 232\n- 233\n 466 \N 189.186.33.248 cd80f3d7-5873-4497-9b9a-ff6c3d1a7cbb 2019-06-20 18:04:35.965644 9811 12 User \N \N 12 User \N update ---\nunique_session_id:\n- YEk342-R8CdPSEvxBmXn\n- duJJM5ww1e1-Xf8fvVbm\n 467 \N 189.186.33.248 cd80f3d7-5873-4497-9b9a-ff6c3d1a7cbb 2019-06-20 18:04:35.982856 9812 539 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.33.248 c6fbc5e2-983e-41ec-9d37-8ae6dc89c1d3 2019-06-20 18:05:30.837629 9813 539 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.33.248 acaeeef2-be2b-43cb-894d-92be704c6f97 2019-06-20 18:05:34.267966 9814 60 Transfer \N \N 12 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-06-20\nuser_id: 12\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.33.248 974719e2-2936-46ce-9b88-742425eb0257 2019-06-20 18:05:35.801861 9815 257 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.968E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 968.0 189.186.33.248 3ddeaebe-36c0-4cd8-84e6-82cb55e70abe 2019-06-20 19:46:56.714063 9816 1029 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 257\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 565\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-311 189.186.33.248 7791126c-0ec6-41f1-8fac-66089ef4fe88 2019-06-20 19:47:32.59837 9817 565 Sale \N \N 12 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.33.248 d4a162aa-9f1c-4537-a06a-e82079620957 2019-06-20 19:47:34.641877 9818 766 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 256\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-06-20\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-330\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 24c5025e-57d4-4a6a-bb41-cd18edce8358 2019-06-20 20:06:11.176313 9819 477 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.33.248 24c5025e-57d4-4a6a-bb41-cd18edce8358 2019-06-20 20:06:11.208356 9820 766 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.33.248 6a894cb4-c51d-4b67-a32d-fa21c394952b 2019-06-20 20:06:47.02727 9821 1030 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 256\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 766\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-330\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-330 189.186.33.248 6a894cb4-c51d-4b67-a32d-fa21c394952b 2019-06-20 20:06:47.06356 9822 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-06-01 01:13:14.656057000 Z\n- &1 2019-06-11 02:03:44.058168000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-20 21:27:04.083810033 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092806\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097081\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097081\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096769\n mask_addr: 4294967295\nsign_in_count:\n- 61\n- 62\n 124 \N 189.186.51.193 4d64893a-2ac9-41a7-aa4b-810467b39aed 2019-06-20 21:27:04.097368 9823 9 User \N \N 9 User \N update ---\nunique_session_id:\n- tjrUzJ4PFEPcs4m2xg3J\n- npQJQC2pCi2vYuqMe3s-\n 125 \N 189.186.51.193 4d64893a-2ac9-41a7-aa4b-810467b39aed 2019-06-20 21:27:04.120662 9824 60 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-06-20\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.33.248 7d4c8f7b-a91a-4c49-af79-eff3f06b04fd 2019-06-20 21:45:51.301232 9825 672 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 512\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.33.248 7d4c8f7b-a91a-4c49-af79-eff3f06b04fd 2019-06-20 21:45:51.331721 9826 474 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.33.248 7b28e10a-c27e-4b6e-8bd0-7cc90d2f50f8 2019-06-20 21:46:13.3543 9827 61 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-06-20\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.33.248 a8ab1ddc-6672-4889-8d99-b4b172e62ec0 2019-06-20 21:46:17.005706 9828 61 Transfer \N \N 12 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 12\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-06-20\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.33.248 a05cb5bd-cb76-476a-878b-f7fe2c246d57 2019-06-20 21:57:06.163464 9829 15 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.33.248 a05cb5bd-cb76-476a-878b-f7fe2c246d57 2019-06-20 21:57:06.192059 9830 234 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.33.248 5ab7cdb9-8cf9-4b13-adfe-95095c2fd924 2019-06-20 21:57:31.622951 41384 3055 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 8eff8f05-3a21-4b74-a8b7-2b0f34431b7c 2020-09-26 18:17:45.898755 9832 62 Transfer \N \N 12 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-06-20\nuser_id: 12\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.33.248 e9638fc7-c85b-4a7a-b5cf-389bde13c9b6 2019-06-20 21:57:37.986732 9833 767 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 256\namount: !ruby/object:BigDecimal 18:0.111624E4\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-06-20\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-331\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 1b2bf2a5-d4f0-4eed-9798-a5eaaa7fdc71 2019-06-20 22:13:45.637388 9834 578 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.33.248 1b2bf2a5-d4f0-4eed-9798-a5eaaa7fdc71 2019-06-20 22:13:45.670277 9835 365 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.35E2\n- !ruby/object:BigDecimal 18:0.33E2\n 14 \N 189.186.33.248 1b2bf2a5-d4f0-4eed-9798-a5eaaa7fdc71 2019-06-20 22:13:45.699198 9836 767 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.33.248 82fc1e9a-d1e5-4d91-bc97-cdb8a16c2229 2019-06-20 22:13:49.172975 9837 1031 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 256\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 767\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-331\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-331 189.186.33.248 82fc1e9a-d1e5-4d91-bc97-cdb8a16c2229 2019-06-20 22:13:49.207112 9838 768 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 257\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-06-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-435\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 8e356a49-dbe4-472e-a03a-9e1cdb6dbd2a 2019-06-20 23:21:53.992998 9839 530 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.33.248 8e356a49-dbe4-472e-a03a-9e1cdb6dbd2a 2019-06-20 23:21:54.048994 9840 768 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.33.248 f6db3596-7fee-4182-a6e2-ed63fef48162 2019-06-20 23:22:12.718271 9841 1032 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 257\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 768\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-435\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-435 189.186.33.248 f6db3596-7fee-4182-a6e2-ed63fef48162 2019-06-20 23:22:12.741277 9842 769 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 256\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-06-20\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-332\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 d9eeeaf3-57ba-4c4b-8096-1a698b6d391e 2019-06-20 23:25:09.065314 9843 596 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.33.248 d9eeeaf3-57ba-4c4b-8096-1a698b6d391e 2019-06-20 23:25:09.112907 9844 769 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.33.248 3b27afcd-4cef-4905-b70e-149294ffeaa6 2019-06-20 23:25:17.733009 9845 1033 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 256\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 769\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-332\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-332 189.186.33.248 3b27afcd-4cef-4905-b70e-149294ffeaa6 2019-06-20 23:25:17.755138 9846 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-19 23:02:22.720866000 Z\n- &1 2019-06-20 00:41:49.201653000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-20 23:40:26.663262346 Z\nsign_in_count:\n- 290\n- 291\n 582 \N 189.186.51.193 d0f744a7-0c95-4a04-98a4-9dd541d1fb7e 2019-06-20 23:40:26.671096 9847 4 User \N \N 4 User \N update ---\nunique_session_id:\n- a5Sn9UF8ep3Z_VFMsuZf\n- TmB6eENut82isEh8Ykbd\n 583 \N 189.186.51.193 d0f744a7-0c95-4a04-98a4-9dd541d1fb7e 2019-06-20 23:40:26.685957 9848 106 Expense \N \N 12 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 257\nquantity: !ruby/object:BigDecimal 18:0.1E4\nstatus: 1\nobservations: "$900 ANABELLY $100 SIEM"\nexpense_date: 2019-06-20\nexpense_code: PV1-E-92\n 1 Egreso por 1000.0 registrado 189.186.33.248 1e78e781-ea96-4398-af5f-d4231e73f2e8 2019-06-21 00:01:49.317265 9849 1034 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 257\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 106\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.33.248 1e78e781-ea96-4398-af5f-d4231e73f2e8 2019-06-21 00:01:49.346179 9850 1035 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 172\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.33.248 253cd113-203f-4240-9cca-f45de98b4852 2019-06-21 00:02:47.898998 9851 1035 CashRegistersMove \N \N 12 User \N update ---\nopen_cash_register_id:\n- 49\n- 257\n 2 movimiento de efectivo por venta con folio PV1-V-96 189.186.33.248 253cd113-203f-4240-9cca-f45de98b4852 2019-06-21 00:02:47.92547 9852 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-19 23:17:51.279019000 Z\n- &1 2019-06-20 16:10:22.003374000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-21 00:08:59.885847825 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093969\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092216\n mask_addr: 4294967295\nsign_in_count:\n- 412\n- 413\n 826 \N 189.186.33.248 98697724-14f7-4b31-a1e9-e2c995d36ce4 2019-06-21 00:08:59.896384 9853 3 User \N \N 3 User \N update ---\nunique_session_id:\n- pDPF5rofH_y2LFJn8s7Q\n- Lq7TKPNWckE2vu7vmRVL\n 827 \N 189.186.33.248 98697724-14f7-4b31-a1e9-e2c995d36ce4 2019-06-21 00:08:59.917941 20268 888 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '888'\n is_parent: false\n sku: CHA-888\n name: CHA-0004\n description: "Saco rosa JELOUSE TOMATO ST-JJ2323 \\r\\n"\n price_base: '475.0'\n price_sale: '1199.0'\n img_product: PHOTO-2019-10-15-21-54-32__4_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000888'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-30 01:35:23.805199'\n updated_at: &12 2019-11-05 20:24:52.155892602 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '888'\n sku: CHA-888\n name: CHA-0004\n description: "Saco rosa JELOUSE TOMATO ST-JJ2323 \\r\\n"\n price_base: '475.00'\n price_sale: '1199.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-30 01:35:23.805199'\n updated_at: '2019-10-30 01:35:23.85053'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000888'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '888'\n type: *3\n value: 888\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-888\n type: *7\n value: CHA-888\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0004\n type: *8\n value: CHA-0004\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "Saco rosa JELOUSE TOMATO ST-JJ2323 \\r\\n"\n type: *6\n value: "Saco rosa JELOUSE TOMATO ST-JJ2323 \\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '475.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.475E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1199.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1199E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-10-15-21-54-32__4_.jpg\n type: *2\n value: PHOTO-2019-10-15-21-54-32__4_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000888'\n type: *2\n value: '0000888'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-30 01:35:23.805199'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-10-15-21-54-32__4_.jpg\n 3 El producto CHA-888 fue modificado. 187.149.74.215 bd1eef77-8b7c-482f-a8f0-5beded5cfcf3 2019-11-05 20:24:52.19645 9854 131 Customer \N \N 3 User \N create ---\nnick_name: EVA ARAMBURO\nphone: "(667) 316-0069"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente EVA ARAMBURO fue registrado. 189.186.33.248 e1b4d58d-2625-4ab0-8c80-aed3ef24f82a 2019-06-21 00:10:21.396665 9855 770 Sale \N \N 3 User \N create ---\ncustomer_id: 131\nuser_id: 3\nopen_cash_register_id: 256\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-06-20\nsaletype: 2\nseller_id: 11\nsale_code: PV2-V-333\nexpiration_date: 2019-07-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 5e48dd94-3062-4c26-94a8-93449834ba05 2019-06-21 00:10:43.430658 9856 437 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 189.186.33.248 5e48dd94-3062-4c26-94a8-93449834ba05 2019-06-21 00:10:43.471521 9857 1036 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 256\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 770\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-333\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-333 189.186.33.248 b909b2f4-a4cd-4c30-bd90-700973659e47 2019-06-21 00:10:53.874644 9858 770 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.33.248 43ddf8ad-e90d-444b-a5ad-3d02d49b22dc 2019-06-21 00:10:57.696296 9859 771 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 257\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-06-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-436\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 f225326d-c0f2-4f9b-bf77-972d6e5cdf48 2019-06-21 00:28:19.779122 9860 617 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.33.248 f225326d-c0f2-4f9b-bf77-972d6e5cdf48 2019-06-21 00:28:19.82149 9861 771 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.33.248 6d0d52e4-8b86-47c2-a626-6eee8e33f740 2019-06-21 00:28:28.043518 9862 1037 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 257\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 771\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-436\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-436 189.186.33.248 6d0d52e4-8b86-47c2-a626-6eee8e33f740 2019-06-21 00:28:28.068907 9863 1038 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 257\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.449E3\nmove_type: '1'\nsale_id: 760\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.449E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-431 189.186.33.248 50262e74-1538-4f02-9dbe-280928cb9a08 2019-06-21 00:54:36.208503 9864 760 Sale \N \N 12 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.33.248 eb642da2-acec-4b98-b852-4a634d526052 2019-06-21 00:54:37.73671 9865 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-19 20:42:21.068766000 Z\n- &1 2019-06-19 23:17:23.777126000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-21 01:10:07.439924767 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093969\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092216\n mask_addr: 4294967295\nsign_in_count:\n- 168\n- 169\n 341 \N 189.186.33.248 0813506e-4d2d-4bde-902f-3ae8c3380917 2019-06-21 01:10:07.446967 9866 2 User \N \N 2 User \N update ---\nunique_session_id:\n- RXbvgk1RGT7iSaQzTBjm\n- RKsx2x68TGYN_ruJUZ5y\n 342 \N 189.186.33.248 0813506e-4d2d-4bde-902f-3ae8c3380917 2019-06-21 01:10:07.462018 9867 1039 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 182\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.33.248 1a7ea986-9552-4a34-bd18-4ab10ec7a445 2019-06-21 01:13:50.447062 9868 1039 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 49\n- 257\n 2 movimiento de efectivo por venta con folio PV1-V-104 189.186.33.248 1a7ea986-9552-4a34-bd18-4ab10ec7a445 2019-06-21 01:13:50.472331 9869 589 Product \N \N 2 User \N create ---\nsku: BLU-589\nname: DEUDA\ndescription: ''\nprice_base: !ruby/object:BigDecimal 18:0.6745E3\nprice_sale: !ruby/object:BigDecimal 18:0.1349E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-589 fue creado. 189.186.33.248 e889c941-b6d8-455b-8f8a-c9e7edc92aed 2019-06-21 01:27:48.520009 9870 589 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000589'\n 2 \N 189.186.33.248 e889c941-b6d8-455b-8f8a-c9e7edc92aed 2019-06-21 01:27:48.557339 9871 673 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 589\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.33.248 e889c941-b6d8-455b-8f8a-c9e7edc92aed 2019-06-21 01:27:48.590597 9872 102 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-64\namount: !ruby/object:BigDecimal 18:0.6745E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6745E3\nobservations: ''\npurchase_date: 2019-06-20\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-64 por $ 674.5 MXN creada. 189.186.33.248 3e46764e-c7c4-4404-a754-c88f3fb5a320 2019-06-21 01:27:55.971537 9873 673 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.33.248 3e46764e-c7c4-4404-a754-c88f3fb5a320 2019-06-21 01:27:55.99816 9874 132 Customer \N \N 2 User \N create ---\nnick_name: MAMA ROCIO\nphone: ''\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.2E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MAMA ROCIO fue registrado. 189.186.33.248 4b439295-33ce-48d5-b205-654a5c61cf8f 2019-06-21 01:28:31.943321 9923 3 User \N \N 3 User \N update ---\nunique_session_id:\n- WLK8stJaBN71EwtiRkWz\n- Y9Ziw-G7Xqim4xNKkLR8\n 835 \N 189.186.33.248 6b39afec-a48d-4327-b0c0-11a7f10038cc 2019-06-21 19:32:55.100423 9875 772 Sale \N \N 2 User \N create ---\ncustomer_id: 132\nuser_id: 2\nopen_cash_register_id: 257\namount: !ruby/object:BigDecimal 18:0.1349E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1349E4\nstatus: 0\ndate_sale: 2019-06-20\nsaletype: 0\nseller_id: 1\nsale_code: PV1-V-437\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 06f10fc9-f96d-480f-a38b-834aebe7147c 2019-06-21 01:28:49.61186 9876 673 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.33.248 06f10fc9-f96d-480f-a38b-834aebe7147c 2019-06-21 01:28:49.639147 9877 1040 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 257\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8E3\nmove_type: '1'\nsale_id: 772\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.33.248 f2d87e54-aeeb-4f9a-bb4f-a3ed35e95844 2019-06-21 01:29:50.954744 9878 772 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.33.248 f2d87e54-aeeb-4f9a-bb4f-a3ed35e95844 2019-06-21 01:29:50.988753 9879 1040 CashRegistersMove \N \N 2 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV1-V-437 189.186.33.248 f2d87e54-aeeb-4f9a-bb4f-a3ed35e95844 2019-06-21 01:29:51.006956 9880 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-06-14 01:22:14.236318000 Z\n- &1 2019-06-17 17:04:30.075759000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-21 01:43:45.330181386 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093969\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092216\n mask_addr: 4294967295\nsign_in_count:\n- 80\n- 81\n 162 \N 189.186.33.248 428d0d1b-d231-441f-85d8-5bfa539a2183 2019-06-21 01:43:45.33826 9881 10 User \N \N 10 User \N update ---\nunique_session_id:\n- myYZMr7YVzoyd68oEQcL\n- LYzsy6s1q_LhoMQxDTCw\n 163 \N 189.186.33.248 428d0d1b-d231-441f-85d8-5bfa539a2183 2019-06-21 01:43:45.353385 9882 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-20 16:10:22.003374000 Z\n- &1 2019-06-21 00:08:59.885847000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-21 01:46:03.054111661 Z\nsign_in_count:\n- 413\n- 414\n 828 \N 189.186.33.248 7eb93819-59ec-4cb7-ac53-d2652c652c63 2019-06-21 01:46:03.061449 9883 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Lq7TKPNWckE2vu7vmRVL\n- oTXK9_wzbB9rj43sTk5w\n 829 \N 189.186.33.248 7eb93819-59ec-4cb7-ac53-d2652c652c63 2019-06-21 01:46:03.07618 9884 773 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 256\namount: !ruby/object:BigDecimal 18:0.112917E4\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1198E4\nstatus: 0\ndate_sale: 2019-06-20\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-334\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 b32e327b-2466-489b-98cd-fb1cd60e6de0 2019-06-21 01:46:35.353765 9885 406 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 1 \N 189.186.33.248 b32e327b-2466-489b-98cd-fb1cd60e6de0 2019-06-21 01:46:35.381281 9886 596 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.33.248 b32e327b-2466-489b-98cd-fb1cd60e6de0 2019-06-21 01:46:35.406434 9887 773 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.33.248 248bdfcb-b815-44a2-82ab-3d236abc5749 2019-06-21 01:48:32.299399 9888 1041 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 256\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1198E4\nmove_type: '1'\nsale_id: 773\ncardnumber: 229\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-334\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-334 189.186.33.248 248bdfcb-b815-44a2-82ab-3d236abc5749 2019-06-21 01:48:32.324503 9889 254 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 257\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4946E4\namount_out: !ruby/object:BigDecimal 18:0.1E4\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.41E4\ncash_fund: !ruby/object:BigDecimal 18:0.814E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4914E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.33.248 cd5eb315-0e97-48a1-946a-62f87966d7e4 2019-06-21 02:07:11.692165 9890 257 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.33.248 cd5eb315-0e97-48a1-946a-62f87966d7e4 2019-06-21 02:07:11.708661 9891 255 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 256\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.4195E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.31E4\ncash_fund: !ruby/object:BigDecimal 18:0.616E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3716E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.33.248 03d8d5c9-ea4f-46ab-9e04-94c125e7b5b1 2019-06-21 02:11:26.651338 9892 256 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.33.248 03d8d5c9-ea4f-46ab-9e04-94c125e7b5b1 2019-06-21 02:11:26.666177 9893 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-06-17 17:04:30.075759000 Z\n- &1 2019-06-21 01:43:45.330181000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-21 02:42:20.287464611 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093969\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092216\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096769\n mask_addr: 4294967295\nsign_in_count:\n- 81\n- 82\n 164 \N 189.186.51.193 007e71d6-f66d-418b-a590-ca0b7c6e71a6 2019-06-21 02:42:20.298342 9894 10 User \N \N 10 User \N update ---\nunique_session_id:\n- LYzsy6s1q_LhoMQxDTCw\n- sd3VZkPJrQyJxo8ca4SN\n 165 \N 189.186.51.193 007e71d6-f66d-418b-a590-ca0b7c6e71a6 2019-06-21 02:42:20.323292 9895 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-20 00:41:49.201653000 Z\n- &1 2019-06-20 23:40:26.663262000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-21 02:44:56.292106078 Z\nsign_in_count:\n- 291\n- 292\n 584 \N 189.186.51.193 9832e486-be36-4166-9a68-4d628c49668d 2019-06-21 02:44:56.298338 9896 4 User \N \N 4 User \N update ---\nunique_session_id:\n- TmB6eENut82isEh8Ykbd\n- gYmEEfGtP8K28QV2LfKy\n 585 \N 189.186.51.193 9832e486-be36-4166-9a68-4d628c49668d 2019-06-21 02:44:56.313001 9897 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-21 00:08:59.885847000 Z\n- &1 2019-06-21 01:46:03.054111000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-21 15:59:52.518363874 Z\nsign_in_count:\n- 414\n- 415\n 830 \N 189.186.33.248 47dcd09a-54e2-445a-9d49-f529e7f4ecc5 2019-06-21 15:59:52.553504 9898 3 User \N \N 3 User \N update ---\nunique_session_id:\n- oTXK9_wzbB9rj43sTk5w\n- CTyByuLemC7zL3GCbcsd\n 831 \N 189.186.33.248 47dcd09a-54e2-445a-9d49-f529e7f4ecc5 2019-06-21 15:59:52.584032 10039 12 User \N \N 12 User \N update ---\nunique_session_id:\n- KAWVReyQ8X-AEpzsykNq\n- Z-FFoozDrqV66mn8Efzy\n 473 \N 189.186.33.248 dc70a076-9fff-4583-ae37-64ab0a740e50 2019-06-23 16:56:12.718192 9899 258 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.616E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 616.0 189.186.33.248 e9b5db00-9e01-4a83-80a3-267f8e0a80e3 2019-06-21 16:00:21.725682 9900 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-20 01:56:59.488842000 Z\n- &1 2019-06-20 18:04:35.957821000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-21 17:03:17.288377564 Z\nsign_in_count:\n- 233\n- 234\n 468 \N 189.186.33.248 3157f674-9cf5-4978-802a-f9d5b08e2f56 2019-06-21 17:03:17.320246 9901 12 User \N \N 12 User \N update ---\nunique_session_id:\n- duJJM5ww1e1-Xf8fvVbm\n- N4r6zs99zPE7_mJznT_Z\n 469 \N 189.186.33.248 3157f674-9cf5-4978-802a-f9d5b08e2f56 2019-06-21 17:03:17.342693 9902 259 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.814E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 814.0 189.186.33.248 b8b714ec-6814-46bb-8b38-d990b382b25a 2019-06-21 17:03:22.253043 9903 774 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 259\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-06-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-438\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 32e08baf-e0bf-4439-8156-68a585282f13 2019-06-21 17:04:10.561619 9904 606 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.33.248 32e08baf-e0bf-4439-8156-68a585282f13 2019-06-21 17:04:10.594061 9905 774 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.33.248 143f8b54-2db1-45a4-8243-3fd3e17e0ff6 2019-06-21 17:04:16.864734 9906 1042 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 259\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 774\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-438\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-438 189.186.33.248 143f8b54-2db1-45a4-8243-3fd3e17e0ff6 2019-06-21 17:04:16.889246 9907 774 Sale \N \N 12 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-438 cancelada. 189.186.33.248 6f875499-9807-422e-acc6-4b6f9de7f46e 2019-06-21 17:05:08.223696 9908 1042 CashRegistersMove \N \N 12 User \N destroy ---\nopen_cash_register_id: 259\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 774\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-438\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.33.248 6f875499-9807-422e-acc6-4b6f9de7f46e 2019-06-21 17:05:08.248301 9909 606 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.33.248 6f875499-9807-422e-acc6-4b6f9de7f46e 2019-06-21 17:05:08.275252 9910 775 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 259\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-06-21\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-439\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 76608945-b543-4bdc-9f95-5c19311ade24 2019-06-21 17:05:48.565495 9911 606 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.33.248 76608945-b543-4bdc-9f95-5c19311ade24 2019-06-21 17:05:48.602316 9912 775 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.33.248 6c3f4d4e-bfd1-45d5-92ba-2eb92d2c2849 2019-06-21 17:05:54.535892 9913 1043 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 259\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 775\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-439\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-439 189.186.33.248 6c3f4d4e-bfd1-45d5-92ba-2eb92d2c2849 2019-06-21 17:05:54.577972 9914 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-21 01:46:03.054111000 Z\n- &1 2019-06-21 15:59:52.518363000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-21 17:17:52.069802710 Z\nsign_in_count:\n- 415\n- 416\n 832 \N 189.186.33.248 30c4bf4d-2311-4b39-98cf-21e9d6fbadfa 2019-06-21 17:17:52.075992 9915 3 User \N \N 3 User \N update ---\nunique_session_id:\n- CTyByuLemC7zL3GCbcsd\n- WLK8stJaBN71EwtiRkWz\n 833 \N 189.186.33.248 30c4bf4d-2311-4b39-98cf-21e9d6fbadfa 2019-06-21 17:17:52.090544 9916 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-20 18:04:35.957821000 Z\n- &1 2019-06-21 17:03:17.288377000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-21 18:11:33.897517267 Z\nsign_in_count:\n- 234\n- 235\n 470 \N 189.186.33.248 264f3a56-e368-4d61-bd27-9f57984ec0fa 2019-06-21 18:11:33.903392 9917 12 User \N \N 12 User \N update ---\nunique_session_id:\n- N4r6zs99zPE7_mJznT_Z\n- KAWVReyQ8X-AEpzsykNq\n 471 \N 189.186.33.248 264f3a56-e368-4d61-bd27-9f57984ec0fa 2019-06-21 18:11:33.916089 9918 776 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 259\namount: !ruby/object:BigDecimal 18:0.689E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.689E3\nstatus: 0\ndate_sale: 2019-06-21\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-440\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 07f88cf3-f60f-48b9-99e4-5b069cbaf253 2019-06-21 18:12:12.3396 9919 618 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.33.248 07f88cf3-f60f-48b9-99e4-5b069cbaf253 2019-06-21 18:12:12.393761 9920 776 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.33.248 8884dd21-c318-417a-91c1-c5cce1c45d85 2019-06-21 18:12:15.907904 9921 1044 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 259\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.689E3\nmove_type: '1'\nsale_id: 776\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-440\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.111E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-440 189.186.33.248 8884dd21-c318-417a-91c1-c5cce1c45d85 2019-06-21 18:12:15.9314 9922 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-21 15:59:52.518363000 Z\n- &1 2019-06-21 17:17:52.069802000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-21 19:32:55.075153080 Z\nsign_in_count:\n- 416\n- 417\n 834 \N 189.186.33.248 6b39afec-a48d-4327-b0c0-11a7f10038cc 2019-06-21 19:32:55.083431 9924 777 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 258\namount: !ruby/object:BigDecimal 18:0.30172E3\ntax: !ruby/object:BigDecimal 18:0.4828E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2019-06-21\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-335\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 1037d66f-9e15-4789-a831-2c42c69d6f73 2019-06-21 19:33:13.926582 9925 365 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.33E2\n- !ruby/object:BigDecimal 18:0.32E2\n 15 \N 189.186.33.248 1037d66f-9e15-4789-a831-2c42c69d6f73 2019-06-21 19:33:13.969055 9926 777 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.33.248 176c0dd7-33c7-4ac0-add8-0411aa54e7b4 2019-06-21 19:33:35.519601 9927 1045 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 258\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 777\ncardnumber: 1738\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-335\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-335 189.186.33.248 176c0dd7-33c7-4ac0-add8-0411aa54e7b4 2019-06-21 19:33:35.540546 9928 1045 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 258\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 777\ncardnumber: 1738\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-335\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.33.248 018c264e-fee8-4728-9888-11a2012627cc 2019-06-21 19:33:45.345497 9929 1046 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 258\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.35E3\nmove_type: '1'\nsale_id: 777\ncardnumber: 1738\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-335\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-335 189.186.33.248 361bbc29-bf56-4f9f-80fd-e31cdc06b623 2019-06-21 19:34:10.332836 9930 778 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 258\namount: !ruby/object:BigDecimal 18:0.100538E4\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1088E4\nstatus: 0\ndate_sale: 2019-06-21\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-336\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 f77f2b0a-cf15-45ba-ac42-9bdb5bff0cfb 2019-06-21 20:01:38.646098 9931 396 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.33.248 f77f2b0a-cf15-45ba-ac42-9bdb5bff0cfb 2019-06-21 20:01:38.67399 9932 651 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 4 \N 189.186.33.248 f77f2b0a-cf15-45ba-ac42-9bdb5bff0cfb 2019-06-21 20:01:38.698953 9933 778 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.33.248 1c7a3862-260d-4c4c-9b1a-e9efe5d7724a 2019-06-21 20:02:10.606746 9934 1047 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1088E4\nmove_type: '1'\nsale_id: 778\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-336\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.112E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-336 189.186.33.248 1c7a3862-260d-4c4c-9b1a-e9efe5d7724a 2019-06-21 20:02:10.63493 9935 1048 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 259\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 700\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-396 189.186.33.248 2d8907d6-b279-4c0c-a99f-3ff916f47208 2019-06-21 20:31:10.594274 9936 1048 CashRegistersMove \N \N 12 User \N destroy ---\nopen_cash_register_id: 259\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 700\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.33.248 e04f1212-ebe0-472d-8f5a-33fe10825a19 2019-06-21 20:31:15.47007 9937 1049 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 259\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 700\ncardnumber: 587\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-396 189.186.33.248 892c6563-efec-4f40-8cbc-49403bd2df0f 2019-06-21 20:34:32.018719 9938 700 Sale \N \N 12 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.33.248 f8daebdd-91d3-402c-84b4-fceb10e8913b 2019-06-21 20:34:37.63909 9939 107 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 258\nquantity: !ruby/object:BigDecimal 18:0.1E3\nstatus: 1\nobservations: ADELANTO YARETZI\nexpense_date: 2019-06-21\nexpense_code: PV2-E-15\n 1 Egreso por 100.0 registrado 189.186.33.248 42cc0437-0922-4aa6-8bb6-b9b64ca7e324 2019-06-21 20:56:57.550461 9940 1050 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 107\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.33.248 42cc0437-0922-4aa6-8bb6-b9b64ca7e324 2019-06-21 20:56:57.572408 9941 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-20 23:40:26.663262000 Z\n- &1 2019-06-21 02:44:56.292106000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-21 21:13:29.953260942 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938381\n mask_addr: 4294967295\nsign_in_count:\n- 292\n- 293\n 586 \N 200.68.151.77 2b7822fb-de71-453b-9475-e7e953ce1243 2019-06-21 21:13:29.962275 9942 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gYmEEfGtP8K28QV2LfKy\n- nSx5v4sJt3ejvzjSoUPS\n 587 \N 200.68.151.77 2b7822fb-de71-453b-9475-e7e953ce1243 2019-06-21 21:13:29.980916 10040 263 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.986E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 986.0 189.186.33.248 95327e2e-33cd-4823-8f64-f3020680bd2a 2019-06-23 16:56:30.142201 9943 779 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 258\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-06-21\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-337\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 745168e1-4aa5-41db-961b-a7ed3f8e44da 2019-06-21 21:42:12.006349 9944 437 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 189.186.33.248 745168e1-4aa5-41db-961b-a7ed3f8e44da 2019-06-21 21:42:12.037638 9945 779 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.33.248 47125486-9565-4add-8da8-3c7d8d15b293 2019-06-21 21:42:26.170644 9946 1051 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.749E3\nmove_type: '1'\nsale_id: 779\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-337\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-337 189.186.33.248 47125486-9565-4add-8da8-3c7d8d15b293 2019-06-21 21:42:26.194202 9947 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-21 17:17:52.069802000 Z\n- &1 2019-06-21 19:32:55.075153000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-21 22:04:53.883131058 Z\nsign_in_count:\n- 417\n- 418\n 836 \N 189.186.33.248 948b1c6e-ce3f-45b6-91aa-bd809628a9dc 2019-06-21 22:04:53.890847 9948 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Y9Ziw-G7Xqim4xNKkLR8\n- yJiaRqAXkFa8MjyrBvZh\n 837 \N 189.186.33.248 948b1c6e-ce3f-45b6-91aa-bd809628a9dc 2019-06-21 22:04:53.905152 9949 256 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 259\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.2487E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.702E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2702E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.33.248 dda57ad2-5ddd-4e70-9c18-ec25ed75df9a 2019-06-22 01:56:47.064464 9950 259 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.33.248 dda57ad2-5ddd-4e70-9c18-ec25ed75df9a 2019-06-22 01:56:47.080729 9951 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-21 19:32:55.075153000 Z\n- &1 2019-06-21 22:04:53.883131000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-22 02:02:10.504026789 Z\nsign_in_count:\n- 418\n- 419\n 838 \N 189.186.33.248 e50aeb26-6dd6-4d89-81ab-3af14c3bcbf3 2019-06-22 02:02:10.511659 9952 3 User \N \N 3 User \N update ---\nunique_session_id:\n- yJiaRqAXkFa8MjyrBvZh\n- A1VNUy4Sz1gz96Z3W3d1\n 839 \N 189.186.33.248 e50aeb26-6dd6-4d89-81ab-3af14c3bcbf3 2019-06-22 02:02:10.528399 9953 1052 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 56\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.713E3\nmove_type: '1'\nsale_id: 212\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '142568798758'\n 1 \N 189.186.33.248 9a9bb997-c434-41d3-b1ee-edb464ead20b 2019-06-22 02:04:28.704807 9954 212 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.33.248 9a9bb997-c434-41d3-b1ee-edb464ead20b 2019-06-22 02:04:28.736339 9955 1052 CashRegistersMove \N \N 3 User \N update ---\nopen_cash_register_id:\n- 56\n- \n 2 movimiento de efectivo por venta con folio PV2-V-96 189.186.33.248 9a9bb997-c434-41d3-b1ee-edb464ead20b 2019-06-22 02:04:28.761131 9956 257 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 258\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.2187E4\namount_out: !ruby/object:BigDecimal 18:0.1E3\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.16E4\ncash_fund: !ruby/object:BigDecimal 18:0.722E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2322E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.33.248 911a3a63-c2ce-4c0a-b76b-73f2579e5a81 2019-06-22 02:05:40.921032 9957 258 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.33.248 911a3a63-c2ce-4c0a-b76b-73f2579e5a81 2019-06-22 02:05:40.940532 9958 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-21 22:04:53.883131000 Z\n- &1 2019-06-22 02:02:10.504026000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-22 02:12:20.325657562 Z\nsign_in_count:\n- 419\n- 420\n 840 \N 189.186.33.248 8b134bb9-f573-4be5-a474-8f2526eb3a60 2019-06-22 02:12:20.332131 9959 3 User \N \N 3 User \N update ---\nunique_session_id:\n- A1VNUy4Sz1gz96Z3W3d1\n- kDQsqfRYuU-dFxxNsa6X\n 841 \N 189.186.33.248 8b134bb9-f573-4be5-a474-8f2526eb3a60 2019-06-22 02:12:20.349299 9960 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-22 02:02:10.504026000 Z\n- &1 2019-06-22 02:12:20.325657000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-22 16:19:19.739067828 Z\nsign_in_count:\n- 420\n- 421\n 842 \N 189.186.33.248 16652f80-ee1f-4768-86ab-8fc02153ff41 2019-06-22 16:19:19.770709 9961 3 User \N \N 3 User \N update ---\nunique_session_id:\n- kDQsqfRYuU-dFxxNsa6X\n- i6-69EUYkjcDdYmx8H4k\n 843 \N 189.186.33.248 16652f80-ee1f-4768-86ab-8fc02153ff41 2019-06-22 16:19:19.796033 9962 260 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.722E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 722.0 189.186.33.248 6d5b5ac7-417c-451d-9275-030a210c41ab 2019-06-22 16:23:35.140876 9963 780 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 260\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-06-22\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-338\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 5786fc4c-c349-4de6-af0e-262051fd04b5 2019-06-22 16:44:33.500907 9964 406 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 189.186.33.248 5786fc4c-c349-4de6-af0e-262051fd04b5 2019-06-22 16:44:33.545661 9965 780 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.33.248 ade4cf99-10a3-4ba7-95a1-e66752a53b0b 2019-06-22 16:45:02.906617 9966 1053 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 260\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 780\ncardnumber: 9413\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-338\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-338 189.186.33.248 ade4cf99-10a3-4ba7-95a1-e66752a53b0b 2019-06-22 16:45:02.931226 10066 63 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-06-24\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.39.107 25c16d95-6a8a-4ecc-8781-7b6de9e267fc 2019-06-24 22:05:55.188911 9967 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-19 23:17:23.777126000 Z\n- &1 2019-06-21 01:10:07.439924000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-22 17:30:12.617840665 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093969\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092216\n mask_addr: 4294967295\nsign_in_count:\n- 169\n- 170\n 343 \N 189.186.33.248 dbb47d95-6509-4057-a63a-09c3a5fe3a93 2019-06-22 17:30:12.6508 9968 2 User \N \N 2 User \N update ---\nunique_session_id:\n- RKsx2x68TGYN_ruJUZ5y\n- DmYZ9YWUsizMe2mZP8QZ\n 344 \N 189.186.33.248 dbb47d95-6509-4057-a63a-09c3a5fe3a93 2019-06-22 17:30:12.68033 9969 261 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.702E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 702.0 189.186.33.248 4d44c1da-fd07-4adc-9c79-60f4cced824f 2019-06-22 17:30:44.672257 9970 781 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 261\namount: !ruby/object:BigDecimal 18:0.158262E4\ntax: !ruby/object:BigDecimal 18:0.16538E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1748E4\nstatus: 0\ndate_sale: 2019-06-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-441\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 959ad452-6852-4b8f-a733-ff672ed16b90 2019-06-22 17:32:58.610458 9971 268 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 10 \N 189.186.33.248 959ad452-6852-4b8f-a733-ff672ed16b90 2019-06-22 17:32:58.644912 9972 610 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.33.248 959ad452-6852-4b8f-a733-ff672ed16b90 2019-06-22 17:32:58.698921 9973 781 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.33.248 b90f4b7e-ebfa-40e5-aa61-4548cf401eb4 2019-06-22 17:33:05.235817 9974 1054 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 261\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1748E4\nmove_type: '1'\nsale_id: 781\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-441\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1748E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-441 189.186.33.248 b90f4b7e-ebfa-40e5-aa61-4548cf401eb4 2019-06-22 17:33:05.267455 9975 782 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 260\namount: !ruby/object:BigDecimal 18:0.221338E4\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2296E4\nstatus: 0\ndate_sale: 2019-06-22\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-339\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 3a9b5d06-4b75-46fb-8197-d8afe0613ad2 2019-06-22 19:30:31.193415 9976 657 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.33.248 3a9b5d06-4b75-46fb-8197-d8afe0613ad2 2019-06-22 19:30:31.369351 9977 550 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.33.248 3a9b5d06-4b75-46fb-8197-d8afe0613ad2 2019-06-22 19:30:31.395766 9978 487 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 10 \N 189.186.33.248 3a9b5d06-4b75-46fb-8197-d8afe0613ad2 2019-06-22 19:30:31.420808 9979 435 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 189.186.33.248 3a9b5d06-4b75-46fb-8197-d8afe0613ad2 2019-06-22 19:30:31.447756 9980 782 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.33.248 e49c8843-e8ab-4ad1-90f9-1c74ba390c50 2019-06-22 19:31:31.026496 9981 1055 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 260\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.2296E4\nmove_type: '1'\nsale_id: 782\ncardnumber: 4804\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-339\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-339 189.186.33.248 e49c8843-e8ab-4ad1-90f9-1c74ba390c50 2019-06-22 19:31:31.049363 9982 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-21 01:10:07.439924000 Z\n- &1 2019-06-22 17:30:12.617840000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-22 19:43:43.726823434 Z\nsign_in_count:\n- 170\n- 171\n 345 \N 189.186.33.248 8d6f3372-1e93-47a1-859a-985252afbfeb 2019-06-22 19:43:43.732228 9983 2 User \N \N 2 User \N update ---\nunique_session_id:\n- DmYZ9YWUsizMe2mZP8QZ\n- UnvpU7Td1eymVYUi34za\n 346 \N 189.186.33.248 8d6f3372-1e93-47a1-859a-985252afbfeb 2019-06-22 19:43:43.744977 9984 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-22 02:12:20.325657000 Z\n- &1 2019-06-22 16:19:19.739067000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-22 19:43:59.723802415 Z\nsign_in_count:\n- 421\n- 422\n 844 \N 189.186.33.248 1dae8226-c025-4c01-b066-d71ee0b796aa 2019-06-22 19:43:59.729439 9985 3 User \N \N 3 User \N update ---\nunique_session_id:\n- i6-69EUYkjcDdYmx8H4k\n- ynqDksXX3x1ddy9q9Pc4\n 845 \N 189.186.33.248 1dae8226-c025-4c01-b066-d71ee0b796aa 2019-06-22 19:43:59.742008 9986 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-21 02:44:56.292106000 Z\n- &1 2019-06-21 21:13:29.953260000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-22 19:44:05.470182971 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938381\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938381\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095040\n mask_addr: 4294967295\nsign_in_count:\n- 293\n- 294\n 588 \N 189.186.45.0 60c43921-2dd4-4dc0-965d-6643f9ad88ab 2019-06-22 19:44:05.477878 9987 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nSx5v4sJt3ejvzjSoUPS\n- 1SyBrpag3Kf5_SSqz8yH\n 589 \N 189.186.45.0 60c43921-2dd4-4dc0-965d-6643f9ad88ab 2019-06-22 19:44:05.492944 9988 783 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 260\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-06-22\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-340\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 bd9b6788-843a-4c73-972c-df3ddec2dfc8 2019-06-22 20:09:13.308142 9989 652 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.33.248 bd9b6788-843a-4c73-972c-df3ddec2dfc8 2019-06-22 20:09:13.337757 9990 783 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.33.248 bc789285-2753-4844-99a7-6675d873f343 2019-06-22 20:09:31.323156 10067 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-23 20:54:22.915291000 Z\n- &1 2019-06-24 16:38:40.480085000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-24 23:03:49.782681764 Z\nsign_in_count:\n- 431\n- 432\n 864 \N 189.186.39.107 17941854-d323-4d9d-84a7-bf8ab0bd7a2c 2019-06-24 23:03:49.790283 9991 1056 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 260\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 783\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-340\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-340 189.186.33.248 bc789285-2753-4844-99a7-6675d873f343 2019-06-22 20:09:31.347514 9992 133 Customer \N \N 3 User \N create ---\nnick_name: JANETH ZAMORA\nphone: "(667) 341-3042"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JANETH ZAMORA fue registrado. 189.186.33.248 da8bb33f-e0fc-4146-9dcc-6b8deed750a0 2019-06-22 20:11:14.555854 9993 784 Sale \N \N 3 User \N create ---\ncustomer_id: 133\nuser_id: 3\nopen_cash_register_id: 260\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-06-22\nsaletype: 2\nseller_id: 9\nsale_code: PV2-V-341\nexpiration_date: 2019-07-27\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 b6dbce7e-2642-4bd2-a3d4-9bd041eca872 2019-06-22 20:11:26.947904 9994 510 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.33.248 b6dbce7e-2642-4bd2-a3d4-9bd041eca872 2019-06-22 20:11:26.982656 9995 1057 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 260\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.39E3\nmove_type: '1'\nsale_id: 784\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-341\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.1E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-341 189.186.33.248 dca42517-2cd4-4977-84ef-03719ce018bf 2019-06-22 20:11:48.196528 9996 784 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.33.248 6f76ca75-cd73-4dd9-b47e-01baae3a13e7 2019-06-22 20:11:49.566441 9997 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-22 17:30:12.617840000 Z\n- &1 2019-06-22 19:43:43.726823000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-22 20:17:47.839030980 Z\nsign_in_count:\n- 171\n- 172\n 347 \N 189.186.33.248 77496e88-face-4a37-b19c-7c54cc03397e 2019-06-22 20:17:47.845254 9998 2 User \N \N 2 User \N update ---\nunique_session_id:\n- UnvpU7Td1eymVYUi34za\n- dLyxnFy6E7qZahnk-k4L\n 348 \N 189.186.33.248 77496e88-face-4a37-b19c-7c54cc03397e 2019-06-22 20:17:47.863648 9999 108 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 261\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida\nexpense_date: 2019-06-22\nexpense_code: PV1-E-93\n 1 Egreso por 50.0 registrado 189.186.33.248 c50d402e-ad7e-4683-982c-eda6ea181ba5 2019-06-22 20:48:09.222523 10000 1058 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 261\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 108\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.33.248 c50d402e-ad7e-4683-982c-eda6ea181ba5 2019-06-22 20:48:09.25776 10001 785 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 261\namount: !ruby/object:BigDecimal 18:0.85737E3\ntax: !ruby/object:BigDecimal 18:0.9163E2\ndiscount: !ruby/object:BigDecimal 18:0.2847E3\ntotal: !ruby/object:BigDecimal 18:0.6643E3\nstatus: 0\ndate_sale: 2019-06-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-442\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 cf8fb304-f619-4148-aac0-981c60994f7e 2019-06-22 21:00:16.978869 10002 239 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.33.248 cf8fb304-f619-4148-aac0-981c60994f7e 2019-06-22 21:00:17.005675 10003 785 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.33.248 520f697a-e10a-45b1-b0d3-e61873d65ab1 2019-06-22 21:00:30.193785 10004 1059 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 261\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6643E3\nmove_type: '1'\nsale_id: 785\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-442\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6643E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-442 189.186.33.248 520f697a-e10a-45b1-b0d3-e61873d65ab1 2019-06-22 21:00:30.215887 10005 786 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 260\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-06-22\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-342\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.33.248 ad63d017-1a32-4301-8cac-1f6a84c552d1 2019-06-22 21:57:56.331076 10006 517 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.33.248 ad63d017-1a32-4301-8cac-1f6a84c552d1 2019-06-22 21:57:56.368962 10007 786 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.33.248 2b946e2e-2aa6-43af-899a-aeaa41ded5d2 2019-06-22 21:58:01.292669 10008 1060 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 260\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 786\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-342\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-342 189.186.33.248 2b946e2e-2aa6-43af-899a-aeaa41ded5d2 2019-06-22 21:58:01.328969 10009 10 ProductsReturn \N \N 3 User \N create ---\nsale_id: 767\nuser_id: 3\nreturn_code: PV2-D-5\npointsale_id: 2\nnew_amount: !ruby/object:BigDecimal 18:0.499E3\nreturned_amount: !ruby/object:BigDecimal 18:0.499E3\ndifference_amount: !ruby/object:BigDecimal 18:0.0\nis_money_returned: false\n 1 devolución PV2-D-5 creada. 189.186.33.248 d69fe3cf-6a77-4a72-93f2-e9cf09fee06f 2019-06-22 22:02:09.54358 10010 578 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 4 \N 189.186.33.248 d69fe3cf-6a77-4a72-93f2-e9cf09fee06f 2019-06-22 22:02:09.572031 10011 578 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.33.248 d69fe3cf-6a77-4a72-93f2-e9cf09fee06f 2019-06-22 22:02:09.606451 10012 109 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 260\nquantity: !ruby/object:BigDecimal 18:0.75E3\nstatus: 1\nobservations: SUELDO YARETZI\nexpense_date: 2019-06-22\nexpense_code: PV2-E-16\n 1 Egreso por 750.0 registrado 189.186.33.248 04a42598-43e5-4db8-830a-b061fed76732 2019-06-22 22:37:53.862516 10013 1061 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 260\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.75E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 109\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.33.248 04a42598-43e5-4db8-830a-b061fed76732 2019-06-22 22:37:53.882326 10014 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-22 16:19:19.739067000 Z\n- &1 2019-06-22 19:43:59.723802000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-22 22:42:00.491294314 Z\nsign_in_count:\n- 422\n- 423\n 846 \N 189.186.33.248 d9649152-3ece-40de-b88e-deec61cc2535 2019-06-22 22:42:00.497243 10015 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ynqDksXX3x1ddy9q9Pc4\n- ZxvzDdf7kyUvwbsMoyDn\n 847 \N 189.186.33.248 d9649152-3ece-40de-b88e-deec61cc2535 2019-06-22 22:42:00.511652 10016 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-22 19:43:43.726823000 Z\n- &1 2019-06-22 20:17:47.839030000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-22 23:23:07.365489006 Z\nsign_in_count:\n- 172\n- 173\n 349 \N 189.186.33.248 0df4713a-4c53-43df-9e43-e432b696b588 2019-06-22 23:23:07.37118 10017 2 User \N \N 2 User \N update ---\nunique_session_id:\n- dLyxnFy6E7qZahnk-k4L\n- 24e1bMqpVQ6UcKf7-sw6\n 350 \N 189.186.33.248 0df4713a-4c53-43df-9e43-e432b696b588 2019-06-22 23:23:07.384601 10018 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-22 19:43:59.723802000 Z\n- &1 2019-06-22 22:42:00.491294000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-22 23:23:54.128888146 Z\nsign_in_count:\n- 423\n- 424\n 848 \N 189.186.33.248 4295a74e-3776-4b3b-9538-099589e108ec 2019-06-22 23:23:54.134644 10019 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ZxvzDdf7kyUvwbsMoyDn\n- FF9B6FSACsXBKBUx_fBV\n 849 \N 189.186.33.248 4295a74e-3776-4b3b-9538-099589e108ec 2019-06-22 23:23:54.147886 10020 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-22 20:17:47.839030000 Z\n- &1 2019-06-22 23:23:07.365489000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-22 23:50:26.565440093 Z\nsign_in_count:\n- 173\n- 174\n 351 \N 189.186.33.248 6942c312-75cd-4e7c-a40c-200de3ecee7e 2019-06-22 23:50:26.571053 10021 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 24e1bMqpVQ6UcKf7-sw6\n- dbgBmkFMUDj8zp75zDxA\n 352 \N 189.186.33.248 6942c312-75cd-4e7c-a40c-200de3ecee7e 2019-06-22 23:50:26.582969 10022 1062 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 261\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 607\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-338 189.186.33.248 7696936c-59b5-4fb2-9aef-8c678621fccd 2019-06-22 23:52:14.114318 10023 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-22 23:23:07.365489000 Z\n- &1 2019-06-22 23:50:26.565440000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-23 01:37:15.869305426 Z\nsign_in_count:\n- 174\n- 175\n 353 \N 189.186.33.248 e4b3bcac-b2c5-4be3-8039-e9270c3199cc 2019-06-23 01:37:15.877881 10024 2 User \N \N 2 User \N update ---\nunique_session_id:\n- dbgBmkFMUDj8zp75zDxA\n- s7aosRx-z-TryAU7ABPq\n 354 \N 189.186.33.248 e4b3bcac-b2c5-4be3-8039-e9270c3199cc 2019-06-23 01:37:15.897977 10025 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-22 22:42:00.491294000 Z\n- &1 2019-06-22 23:23:54.128888000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-23 01:37:34.811896330 Z\nsign_in_count:\n- 424\n- 425\n 850 \N 189.186.33.248 be895092-ea15-40be-a116-d5ae3aaee1e2 2019-06-23 01:37:34.818106 10026 3 User \N \N 3 User \N update ---\nunique_session_id:\n- FF9B6FSACsXBKBUx_fBV\n- htoPdRsQzo2bYujTRAnQ\n 851 \N 189.186.33.248 be895092-ea15-40be-a116-d5ae3aaee1e2 2019-06-23 01:37:34.83683 10027 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-22 23:50:26.565440000 Z\n- &1 2019-06-23 01:37:15.869305000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-23 01:55:07.031803385 Z\nsign_in_count:\n- 175\n- 176\n 355 \N 189.186.33.248 336bc03b-dee9-4959-8fd8-1cc4b9bb1505 2019-06-23 01:55:07.03846 10028 2 User \N \N 2 User \N update ---\nunique_session_id:\n- s7aosRx-z-TryAU7ABPq\n- RvbUhoM8qRiRyNJ-Q_r3\n 356 \N 189.186.33.248 336bc03b-dee9-4959-8fd8-1cc4b9bb1505 2019-06-23 01:55:07.052316 10029 110 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 261\nquantity: !ruby/object:BigDecimal 18:0.578E3\nstatus: 1\nobservations: sueldo chio\nexpense_date: 2019-06-22\nexpense_code: PV1-E-94\n 1 Egreso por 578.0 registrado 189.186.33.248 6c000b33-34e9-45fe-ad6a-6b36d616d265 2019-06-23 01:57:42.249054 10030 1063 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 261\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.578E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 110\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.33.248 6c000b33-34e9-45fe-ad6a-6b36d616d265 2019-06-23 01:57:42.279268 10031 258 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 260\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.5083E4\namount_out: !ruby/object:BigDecimal 18:0.75E3\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.561E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1561E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.33.248 701b894d-1c63-471a-8fad-30ac56910c1a 2019-06-23 01:58:10.621739 10032 260 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.33.248 701b894d-1c63-471a-8fad-30ac56910c1a 2019-06-23 01:58:10.648867 10033 259 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 261\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.29123E4\namount_out: !ruby/object:BigDecimal 18:0.628E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.986E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2986E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.33.248 2a4d33bb-5fea-43f3-bdf4-236fbcb6a994 2019-06-23 02:02:16.563462 10034 261 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.33.248 2a4d33bb-5fea-43f3-bdf4-236fbcb6a994 2019-06-23 02:02:16.585634 10035 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-22 23:23:54.128888000 Z\n- &1 2019-06-23 01:37:34.811896000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-23 16:01:00.267548303 Z\nsign_in_count:\n- 425\n- 426\n 852 \N 189.186.33.248 510be797-1978-41f7-9a4a-faa1696359df 2019-06-23 16:01:00.297224 10036 3 User \N \N 3 User \N update ---\nunique_session_id:\n- htoPdRsQzo2bYujTRAnQ\n- BtrgkY7kRSmGrkbJhEBD\n 853 \N 189.186.33.248 510be797-1978-41f7-9a4a-faa1696359df 2019-06-23 16:01:00.318699 10037 262 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.561E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 561.0 189.186.33.248 0419e298-f9a7-4080-9ea5-2d58c3e08697 2019-06-23 16:04:01.454705 10038 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-21 17:03:17.288377000 Z\n- &1 2019-06-21 18:11:33.897517000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-23 16:56:12.664739476 Z\nsign_in_count:\n- 235\n- 236\n 472 \N 189.186.33.248 dc70a076-9fff-4583-ae37-64ab0a740e50 2019-06-23 16:56:12.695301 10041 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-23 01:37:34.811896000 Z\n- &1 2019-06-23 16:01:00.267548000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-23 19:22:54.234485434 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\nsign_in_count:\n- 426\n- 427\n 854 \N 189.186.39.107 606c9fff-d7c9-480d-9df2-45f544dcddfd 2019-06-23 19:22:54.241084 10042 3 User \N \N 3 User \N update ---\nunique_session_id:\n- BtrgkY7kRSmGrkbJhEBD\n- z5SeiiCMEpz-zAobojVL\n 855 \N 189.186.39.107 606c9fff-d7c9-480d-9df2-45f544dcddfd 2019-06-23 19:22:54.256222 10043 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-23 16:01:00.267548000 Z\n- &1 2019-06-23 19:22:54.234485000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-23 19:24:30.235457584 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\nsign_in_count:\n- 427\n- 428\n 856 \N 189.186.39.107 d65e5bf4-d152-4610-a466-1182a914c7a9 2019-06-23 19:24:30.242086 10044 3 User \N \N 3 User \N update ---\nunique_session_id:\n- z5SeiiCMEpz-zAobojVL\n- e4BLJhSkzsJDTj_ZCzfU\n 857 \N 189.186.39.107 d65e5bf4-d152-4610-a466-1182a914c7a9 2019-06-23 19:24:30.25726 10045 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-23 01:37:15.869305000 Z\n- &1 2019-06-23 01:55:07.031803000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-23 20:50:00.207869586 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\nsign_in_count:\n- 176\n- 177\n 357 \N 189.186.39.107 ea1966aa-799a-43f6-a658-44d993c5ec2d 2019-06-23 20:50:00.214361 10046 2 User \N \N 2 User \N update ---\nunique_session_id:\n- RvbUhoM8qRiRyNJ-Q_r3\n- T76DP3VqmviKfqRQfPgb\n 358 \N 189.186.39.107 ea1966aa-799a-43f6-a658-44d993c5ec2d 2019-06-23 20:50:00.228042 10047 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-23 19:22:54.234485000 Z\n- &1 2019-06-23 19:24:30.235457000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-23 20:50:19.444091020 Z\nsign_in_count:\n- 428\n- 429\n 858 \N 189.186.39.107 4a4f5cc8-161c-4686-a4f9-faaa86487ece 2019-06-23 20:50:19.45024 10048 3 User \N \N 3 User \N update ---\nunique_session_id:\n- e4BLJhSkzsJDTj_ZCzfU\n- F3UX7Axuu5bzAx5Jsxz-\n 859 \N 189.186.39.107 4a4f5cc8-161c-4686-a4f9-faaa86487ece 2019-06-23 20:50:19.465175 10049 260 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 262\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.561E3\nphysical_cash: !ruby/object:BigDecimal 18:0.561E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.39.107 31611f74-8ef5-4caf-9f83-79fae3cd78e9 2019-06-23 20:50:54.426974 10050 262 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.39.107 31611f74-8ef5-4caf-9f83-79fae3cd78e9 2019-06-23 20:50:54.440775 10051 261 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 263\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.986E3\nphysical_cash: !ruby/object:BigDecimal 18:0.986E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.39.107 914a8419-9c01-459a-b220-e72a09c71256 2019-06-23 20:51:32.011334 10052 263 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.39.107 914a8419-9c01-459a-b220-e72a09c71256 2019-06-23 20:51:32.025498 10053 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-23 19:24:30.235457000 Z\n- &1 2019-06-23 20:50:19.444091000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-23 20:54:22.915291576 Z\nsign_in_count:\n- 429\n- 430\n 860 \N 189.186.39.107 ef9d1b55-776d-46a1-a002-8560c29426f3 2019-06-23 20:54:22.921551 10054 3 User \N \N 3 User \N update ---\nunique_session_id:\n- F3UX7Axuu5bzAx5Jsxz-\n- 8u-hVqrsWrvNPp1eyVGK\n 861 \N 189.186.39.107 ef9d1b55-776d-46a1-a002-8560c29426f3 2019-06-23 20:54:22.937903 10055 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-23 20:50:19.444091000 Z\n- &1 2019-06-23 20:54:22.915291000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-24 16:38:40.480085911 Z\nsign_in_count:\n- 430\n- 431\n 862 \N 189.186.39.107 86684bb3-447f-464a-9cdd-d3a8fff7662b 2019-06-24 16:38:40.511303 10056 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 8u-hVqrsWrvNPp1eyVGK\n- cV95Ni_pTbTqUSkoFph_\n 863 \N 189.186.39.107 86684bb3-447f-464a-9cdd-d3a8fff7662b 2019-06-24 16:38:40.5397 10057 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-21 21:13:29.953260000 Z\n- &1 2019-06-22 19:44:05.470182000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-24 19:15:52.097925128 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938381\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095040\n mask_addr: 4294967295\nsign_in_count:\n- 294\n- 295\n 590 \N 189.186.45.0 de0c5ec7-25eb-419b-bb68-97730c359e83 2019-06-24 19:15:52.108752 10058 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1SyBrpag3Kf5_SSqz8yH\n- Pi8_PLH7x4FoyrTsaDws\n 591 \N 189.186.45.0 de0c5ec7-25eb-419b-bb68-97730c359e83 2019-06-24 19:15:52.13155 10059 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-23 01:55:07.031803000 Z\n- &1 2019-06-23 20:50:00.207869000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-24 21:01:03.538447613 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\nsign_in_count:\n- 177\n- 178\n 359 \N 189.186.39.107 47372b43-2396-4273-bba8-b7254196150b 2019-06-24 21:01:03.545728 10060 2 User \N \N 2 User \N update ---\nunique_session_id:\n- T76DP3VqmviKfqRQfPgb\n- _CrEdwQummbLKkx7dsXA\n 360 \N 189.186.39.107 47372b43-2396-4273-bba8-b7254196150b 2019-06-24 21:01:03.571273 10061 264 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.986E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 986.0 189.186.39.107 5e766f66-4562-4bd5-a1d2-fbdbd82cf545 2019-06-24 21:01:30.143019 10062 62 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-06-24\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.39.107 2ddd34d7-f185-44a5-ad99-e390bf79a1b2 2019-06-24 22:05:27.60713 10063 674 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 236\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.39.107 2ddd34d7-f185-44a5-ad99-e390bf79a1b2 2019-06-24 22:05:27.643776 10064 577 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.39.107 52136381-18ad-4440-9fb9-19442d1e4f11 2019-06-24 22:05:51.201652 10065 577 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.39.107 6af1e3f8-57af-4499-a8a0-1221bedb63cd 2019-06-24 22:05:53.747508 10068 3 User \N \N 3 User \N update ---\nunique_session_id:\n- cV95Ni_pTbTqUSkoFph_\n- oQiHsBstCguQ15iHuLMx\n 865 \N 189.186.39.107 17941854-d323-4d9d-84a7-bf8ab0bd7a2c 2019-06-24 23:03:49.805416 10069 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-22 19:44:05.470182000 Z\n- &1 2019-06-24 19:15:52.097925000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-24 23:08:09.818634710 Z\nsign_in_count:\n- 295\n- 296\n 592 \N 189.186.45.0 2bc36490-3298-4b6f-91bd-fac617f58d3f 2019-06-24 23:08:09.837242 10070 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Pi8_PLH7x4FoyrTsaDws\n- xMixEm8ibcocy_zLaQQx\n 593 \N 189.186.45.0 2bc36490-3298-4b6f-91bd-fac617f58d3f 2019-06-24 23:08:09.849581 10071 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-24 16:38:40.480085000 Z\n- &1 2019-06-24 23:03:49.782681000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-24 23:18:17.969713757 Z\nsign_in_count:\n- 432\n- 433\n 866 \N 189.186.39.107 9379720e-a769-4bec-8489-941faf4ffb8b 2019-06-24 23:18:17.975923 10072 3 User \N \N 3 User \N update ---\nunique_session_id:\n- oQiHsBstCguQ15iHuLMx\n- cWFMjcVyA-x1spLfpgrp\n 867 \N 189.186.39.107 9379720e-a769-4bec-8489-941faf4ffb8b 2019-06-24 23:18:17.988372 10073 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-06-21 01:43:45.330181000 Z\n- &1 2019-06-21 02:42:20.287464000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-24 23:20:42.100644076 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096769\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\nsign_in_count:\n- 82\n- 83\n 166 \N 189.186.39.107 a0af6ac1-8b7f-493b-98f6-2c61fe3e1c15 2019-06-24 23:20:42.108667 10074 10 User \N \N 10 User \N update ---\nunique_session_id:\n- sd3VZkPJrQyJxo8ca4SN\n- TWoze1Pct4s-siaAnPyh\n 167 \N 189.186.39.107 a0af6ac1-8b7f-493b-98f6-2c61fe3e1c15 2019-06-24 23:20:42.124775 10075 265 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.561E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 561.0 189.186.39.107 a520f4e3-06a1-4aa8-974a-a4f1a994794a 2019-06-24 23:20:46.770312 10076 1064 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 265\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 622\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-272 189.186.39.107 8f8e188f-3116-44e8-982c-0fcb3af14d11 2019-06-24 23:21:06.523284 10077 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-24 23:03:49.782681000 Z\n- &1 2019-06-24 23:18:17.969713000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-25 00:32:13.796730102 Z\nsign_in_count:\n- 433\n- 434\n 868 \N 189.186.39.107 6f869a2c-479c-44f7-90ed-22aa02322d32 2019-06-25 00:32:13.826366 10078 3 User \N \N 3 User \N update ---\nunique_session_id:\n- cWFMjcVyA-x1spLfpgrp\n- KmS5Q_4FnyY_aCi6rCed\n 869 \N 189.186.39.107 6f869a2c-479c-44f7-90ed-22aa02322d32 2019-06-25 00:32:13.847973 10079 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-24 19:15:52.097925000 Z\n- &1 2019-06-24 23:08:09.818634000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-25 01:28:11.098210816 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095040\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\nsign_in_count:\n- 296\n- 297\n 594 \N 189.186.39.107 b7c13ed4-ca71-4ee2-8547-f443305ed65a 2019-06-25 01:28:11.107581 10080 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xMixEm8ibcocy_zLaQQx\n- V2nrBjnGzWNgiC_usy4v\n 595 \N 189.186.39.107 b7c13ed4-ca71-4ee2-8547-f443305ed65a 2019-06-25 01:28:11.126894 10081 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-24 23:08:09.818634000 Z\n- &1 2019-06-25 01:28:11.098210000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-25 01:31:46.264595060 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095040\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946387\n mask_addr: 4294967295\nsign_in_count:\n- 297\n- 298\n 596 \N 200.68.182.147 ee924cda-a0c1-4e74-b5d7-04125f2e49f9 2019-06-25 01:31:46.272541 10082 4 User \N \N 4 User \N update ---\nunique_session_id:\n- V2nrBjnGzWNgiC_usy4v\n- qQtdnMCU1LqzumuSe61r\n 597 \N 200.68.182.147 ee924cda-a0c1-4e74-b5d7-04125f2e49f9 2019-06-25 01:31:46.290453 10083 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-25 01:28:11.098210000 Z\n- &1 2019-06-25 01:31:46.264595000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-25 01:31:59.556293904 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946387\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946387\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\nsign_in_count:\n- 298\n- 299\n 598 \N 189.186.39.107 5c4b813c-468a-48bf-895b-96751872045e 2019-06-25 01:31:59.563892 10084 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qQtdnMCU1LqzumuSe61r\n- nmc3jcWGRdMzF-myxxnS\n 599 \N 189.186.39.107 5c4b813c-468a-48bf-895b-96751872045e 2019-06-25 01:31:59.581248 10085 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-24 23:18:17.969713000 Z\n- &1 2019-06-25 00:32:13.796730000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-25 01:40:48.190485656 Z\nsign_in_count:\n- 434\n- 435\n 870 \N 189.186.39.107 3e21ba17-bfe9-451d-b9a9-b3485f507295 2019-06-25 01:40:48.198854 10086 3 User \N \N 3 User \N update ---\nunique_session_id:\n- KmS5Q_4FnyY_aCi6rCed\n- eYfqqeJUx1uQGE4QzSQ4\n 871 \N 189.186.39.107 3e21ba17-bfe9-451d-b9a9-b3485f507295 2019-06-25 01:40:48.21721 10087 262 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 264\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.986E3\nphysical_cash: !ruby/object:BigDecimal 18:0.986E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.39.107 c331d695-e9aa-4803-a05d-31e39220edd9 2019-06-25 01:59:15.497557 10088 264 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.39.107 c331d695-e9aa-4803-a05d-31e39220edd9 2019-06-25 01:59:15.515923 10089 263 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 265\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.5E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.561E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1061E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.39.107 97b4f8ed-a5f5-4bad-9996-49ce9617cbd4 2019-06-25 02:08:10.955155 10090 265 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.39.107 97b4f8ed-a5f5-4bad-9996-49ce9617cbd4 2019-06-25 02:08:10.972038 10091 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-25 00:32:13.796730000 Z\n- &1 2019-06-25 01:40:48.190485000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-25 16:05:05.088084626 Z\nsign_in_count:\n- 435\n- 436\n 872 \N 189.186.39.107 f351f32a-a949-492d-af57-a02a4bc8c2d6 2019-06-25 16:05:05.11769 43541 1383 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001383'\n 2 \N 187.149.19.6 5c4369cc-7ff3-4d32-a00d-218b8cb88655 2020-10-25 21:51:25.022947 10092 3 User \N \N 3 User \N update ---\nunique_session_id:\n- eYfqqeJUx1uQGE4QzSQ4\n- U2xyCJoNn-snXyEs_yVE\n 873 \N 189.186.39.107 f351f32a-a949-492d-af57-a02a4bc8c2d6 2019-06-25 16:05:05.141282 10093 266 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.561E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 561.0 189.186.39.107 cbc5ae1f-e06b-4676-92e1-4f54f055577b 2019-06-25 16:05:47.0459 10094 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-23 20:50:00.207869000 Z\n- &1 2019-06-24 21:01:03.538447000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-25 16:19:07.035877929 Z\nsign_in_count:\n- 178\n- 179\n 361 \N 189.186.39.107 bfe68120-27ac-4324-a587-3a383a051512 2019-06-25 16:19:07.064682 10095 2 User \N \N 2 User \N update ---\nunique_session_id:\n- _CrEdwQummbLKkx7dsXA\n- j19aZzS79TccE3sE2kSK\n 362 \N 189.186.39.107 bfe68120-27ac-4324-a587-3a383a051512 2019-06-25 16:19:07.084868 10096 267 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.986E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 986.0 189.186.39.107 f9405378-4473-4551-bdec-0c7c5dd8b57f 2019-06-25 16:19:25.778434 10097 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-25 01:31:46.264595000 Z\n- &1 2019-06-25 01:31:59.556293000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-25 18:44:53.109862177 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946387\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938545\n mask_addr: 4294967295\nsign_in_count:\n- 299\n- 300\n 600 \N 200.68.151.241 697df7ed-9523-487f-b548-afaf1cadd514 2019-06-25 18:44:53.117822 10098 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nmc3jcWGRdMzF-myxxnS\n- prUGyoZGc5df9Xsj-D-L\n 601 \N 200.68.151.241 697df7ed-9523-487f-b548-afaf1cadd514 2019-06-25 18:44:53.13236 10099 134 Customer \N \N 3 User \N create ---\nnick_name: ANA MARIA RODRIGUEZ\nphone: "(667) 120-2806"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANA MARIA RODRIGUEZ fue registrado. 189.186.39.107 923acb78-1d02-4553-a103-a65ef490b402 2019-06-25 18:50:19.824677 10100 787 Sale \N \N 3 User \N create ---\ncustomer_id: 134\nuser_id: 3\nopen_cash_register_id: 266\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-06-25\nsaletype: 2\nseller_id: 9\nsale_code: PV2-V-343\nexpiration_date: 2019-07-30\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.107 7310ef9b-5e16-4a10-b9c6-9ec77fdfb9e6 2019-06-25 18:50:35.990132 10101 666 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.39.107 7310ef9b-5e16-4a10-b9c6-9ec77fdfb9e6 2019-06-25 18:50:36.020088 10102 1065 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 266\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.16E3\nmove_type: '1'\nsale_id: 787\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-343\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.16E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-343 189.186.39.107 c920d1bb-27c7-4a6d-8e55-2dc4772ae487 2019-06-25 18:51:17.300201 10103 787 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.39.107 2cfa5e57-5745-4fd5-b198-6b966e10af8c 2019-06-25 18:51:22.040235 10104 788 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 267\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-06-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-443\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.107 41518bc9-53ca-4795-9e48-26c1fc31f099 2019-06-25 19:03:08.334584 10105 606 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.39.107 41518bc9-53ca-4795-9e48-26c1fc31f099 2019-06-25 19:03:08.388872 10106 788 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.107 2fdf00a3-b537-43a8-9cf2-695fee3c13a2 2019-06-25 19:03:15.735452 10107 1066 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 267\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 788\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-443\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-443 189.186.39.107 2fdf00a3-b537-43a8-9cf2-695fee3c13a2 2019-06-25 19:03:15.760437 10108 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-25 01:40:48.190485000 Z\n- &1 2019-06-25 16:05:05.088084000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-25 20:18:06.779400128 Z\nsign_in_count:\n- 436\n- 437\n 874 \N 189.186.39.107 48208c3f-8528-4f00-a91b-b3ed70d43b08 2019-06-25 20:18:06.786096 10109 3 User \N \N 3 User \N update ---\nunique_session_id:\n- U2xyCJoNn-snXyEs_yVE\n- tMo6-NXRvJsxvg-8u34s\n 875 \N 189.186.39.107 48208c3f-8528-4f00-a91b-b3ed70d43b08 2019-06-25 20:18:06.799141 10110 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-25 16:05:05.088084000 Z\n- &1 2019-06-25 20:18:06.779400000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-25 20:20:07.190991674 Z\nsign_in_count:\n- 437\n- 438\n 876 \N 189.186.39.107 522bee98-aefb-4751-905d-1db145fb1501 2019-06-25 20:20:07.199323 10111 3 User \N \N 3 User \N update ---\nunique_session_id:\n- tMo6-NXRvJsxvg-8u34s\n- ZPSsSCdRQ1E3LyDvxswd\n 877 \N 189.186.39.107 522bee98-aefb-4751-905d-1db145fb1501 2019-06-25 20:20:07.215157 10112 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-25 20:18:06.779400000 Z\n- &1 2019-06-25 20:20:07.190991000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-25 23:09:47.243658451 Z\nsign_in_count:\n- 438\n- 439\n 878 \N 189.186.39.107 544107f7-936c-4337-9b9f-3a719bf23875 2019-06-25 23:09:47.250087 10113 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ZPSsSCdRQ1E3LyDvxswd\n- JXahViY_ZxmYbvwwssw4\n 879 \N 189.186.39.107 544107f7-936c-4337-9b9f-3a719bf23875 2019-06-25 23:09:47.264075 10114 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-06-21 02:42:20.287464000 Z\n- &1 2019-06-24 23:20:42.100644000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-25 23:14:37.024758731 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\nsign_in_count:\n- 83\n- 84\n 168 \N 189.186.39.107 9e18e960-1c99-4a48-839b-f6e1a61385ea 2019-06-25 23:14:37.036485 10115 10 User \N \N 10 User \N update ---\nunique_session_id:\n- TWoze1Pct4s-siaAnPyh\n- sTYzN1ncjzvRFqbhHVSg\n 169 \N 189.186.39.107 9e18e960-1c99-4a48-839b-f6e1a61385ea 2019-06-25 23:14:37.061452 10207 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 3Cf5SS6SoeMhzy53z3vB\n- 2KyXVGk6iKP8reqs3gsF\n 368 \N 189.186.44.120 a62e816c-0bcb-4aa0-a43c-cb5f3b5e5ab6 2019-06-28 17:31:13.379582 10116 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-25 20:20:07.190991000 Z\n- &1 2019-06-25 23:09:47.243658000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-25 23:15:17.272304040 Z\nsign_in_count:\n- 439\n- 440\n 880 \N 189.186.39.107 712a6e54-7c93-4402-9539-24a6b30d092a 2019-06-25 23:15:17.278174 10117 3 User \N \N 3 User \N update ---\nunique_session_id:\n- JXahViY_ZxmYbvwwssw4\n- tpfAvr4qj7tAhx7y-WZH\n 881 \N 189.186.39.107 712a6e54-7c93-4402-9539-24a6b30d092a 2019-06-25 23:15:17.292812 10118 1067 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 266\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 659\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-293 189.186.39.107 28a30983-7d50-47f8-b371-0b805cbd37bd 2019-06-25 23:15:39.747181 10119 659 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.39.107 31daf684-6b40-43f6-ae1f-f57ab4f39f23 2019-06-25 23:15:41.544032 10120 111 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 267\nquantity: !ruby/object:BigDecimal 18:0.52E3\nstatus: 1\nobservations: "$500 PRESTAMO ROCIO $20 GARRAFON DE AGUA"\nexpense_date: 2019-06-25\nexpense_code: PV1-E-95\n 1 Egreso por 520.0 registrado 189.186.39.107 de7b2c40-b907-48ad-98a4-c2aa32e892cb 2019-06-25 23:33:48.297035 10121 1068 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 267\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.52E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 111\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.39.107 de7b2c40-b907-48ad-98a4-c2aa32e892cb 2019-06-25 23:33:48.319703 10122 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-25 23:09:47.243658000 Z\n- &1 2019-06-25 23:15:17.272304000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-26 00:32:51.428615993 Z\nsign_in_count:\n- 440\n- 441\n 882 \N 189.186.39.107 47a6913a-151d-4724-990a-41381c657e41 2019-06-26 00:32:51.435858 10123 3 User \N \N 3 User \N update ---\nunique_session_id:\n- tpfAvr4qj7tAhx7y-WZH\n- rsck329JsskF5gh6cDxg\n 883 \N 189.186.39.107 47a6913a-151d-4724-990a-41381c657e41 2019-06-26 00:32:51.452213 10124 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-25 01:31:59.556293000 Z\n- &1 2019-06-25 18:44:53.109862000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-26 00:36:25.076131749 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938545\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938545\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\nsign_in_count:\n- 300\n- 301\n 602 \N 189.186.39.107 ecba1956-cd37-4ea2-8a8c-a9bea4f2ee98 2019-06-26 00:36:25.084445 10125 4 User \N \N 4 User \N update ---\nunique_session_id:\n- prUGyoZGc5df9Xsj-D-L\n- FHexjyU7adjGVe3meNKm\n 603 \N 189.186.39.107 ecba1956-cd37-4ea2-8a8c-a9bea4f2ee98 2019-06-26 00:36:25.101884 10126 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-25 23:15:17.272304000 Z\n- &1 2019-06-26 00:32:51.428615000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-26 01:48:31.318506607 Z\nsign_in_count:\n- 441\n- 442\n 884 \N 189.186.39.107 5706bdd2-498e-4e9a-a439-1a5c8b16174a 2019-06-26 01:48:31.326379 10127 3 User \N \N 3 User \N update ---\nunique_session_id:\n- rsck329JsskF5gh6cDxg\n- QZn3jZRGkv233Rkqm7GH\n 885 \N 189.186.39.107 5706bdd2-498e-4e9a-a439-1a5c8b16174a 2019-06-26 01:48:31.343175 10128 264 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 267\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1199E4\namount_out: !ruby/object:BigDecimal 18:0.52E3\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.6E3\ncash_fund: !ruby/object:BigDecimal 18:0.1065E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1665E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.39.107 85b2276e-596d-4bd7-bf85-d74f609e567a 2019-06-26 01:56:53.363271 10129 267 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.39.107 85b2276e-596d-4bd7-bf85-d74f609e567a 2019-06-26 01:56:53.379908 10130 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-25 18:44:53.109862000 Z\n- &1 2019-06-26 00:36:25.076131000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-26 02:01:06.982757245 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938545\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946477\n mask_addr: 4294967295\nsign_in_count:\n- 301\n- 302\n 604 \N 200.68.182.237 efe3b743-8097-4a26-a496-5dae08ce63c9 2019-06-26 02:01:06.991276 10131 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FHexjyU7adjGVe3meNKm\n- qFMrGnyHJj-qUxKERf-G\n 605 \N 200.68.182.237 efe3b743-8097-4a26-a496-5dae08ce63c9 2019-06-26 02:01:07.008285 10132 265 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 266\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.759E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.6E3\ncash_fund: !ruby/object:BigDecimal 18:0.725E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1325E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.39.107 130da06e-43a8-4210-9f08-86138e13716d 2019-06-26 02:01:58.203725 10133 266 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.39.107 130da06e-43a8-4210-9f08-86138e13716d 2019-06-26 02:01:58.224806 10134 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-26 00:32:51.428615000 Z\n- &1 2019-06-26 01:48:31.318506000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-26 16:05:12.679216638 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\nsign_in_count:\n- 442\n- 443\n 886 \N 189.186.44.120 87de8297-dcdc-448a-b42f-9764b3e12434 2019-06-26 16:05:12.716611 10135 3 User \N \N 3 User \N update ---\nunique_session_id:\n- QZn3jZRGkv233Rkqm7GH\n- nVMXcDJWVszspt4fNGVt\n 887 \N 189.186.44.120 87de8297-dcdc-448a-b42f-9764b3e12434 2019-06-26 16:05:12.743177 10136 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-26 01:48:31.318506000 Z\n- &1 2019-06-26 16:05:12.679216000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-26 16:05:13.716698399 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\nsign_in_count:\n- 443\n- 444\n 888 \N 189.186.44.120 cd1e4cf7-5a0b-4d2c-8804-c53055617f7d 2019-06-26 16:05:13.725443 10137 3 User \N \N 3 User \N update ---\nunique_session_id:\n- nVMXcDJWVszspt4fNGVt\n- K2smMREJdnJNVTbRueDH\n 889 \N 189.186.44.120 cd1e4cf7-5a0b-4d2c-8804-c53055617f7d 2019-06-26 16:05:13.747163 10138 268 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.0\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 0.0 189.186.44.120 19b50316-c3ce-4d72-b43c-c13e8d7c2c9d 2019-06-26 16:06:11.380398 10139 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-24 21:01:03.538447000 Z\n- &1 2019-06-25 16:19:07.035877000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-26 16:36:35.212485910 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\nsign_in_count:\n- 179\n- 180\n 363 \N 189.186.44.120 84ff226a-9581-4331-a67f-b429336d4e59 2019-06-26 16:36:35.219786 10140 2 User \N \N 2 User \N update ---\nunique_session_id:\n- j19aZzS79TccE3sE2kSK\n- qmHfy4ukKAYMUL_PN6c4\n 364 \N 189.186.44.120 84ff226a-9581-4331-a67f-b429336d4e59 2019-06-26 16:36:35.236307 10141 269 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1065E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1065.0 189.186.44.120 bb0a2549-973a-4320-9533-52b3781893e3 2019-06-26 16:43:31.328726 10142 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-26 00:36:25.076131000 Z\n- &1 2019-06-26 02:01:06.982757000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-26 19:48:25.312860906 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946477\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946477\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938241\n mask_addr: 4294967295\nsign_in_count:\n- 302\n- 303\n 606 \N 200.68.150.193 840da87b-2b92-40b6-8020-6d12c043a2d2 2019-06-26 19:48:25.326272 10143 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qFMrGnyHJj-qUxKERf-G\n- bZBbuxjxcpVoF_yNK2kR\n 607 \N 200.68.150.193 840da87b-2b92-40b6-8020-6d12c043a2d2 2019-06-26 19:48:25.357753 10144 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-26 16:05:12.679216000 Z\n- &1 2019-06-26 16:05:13.716698000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-26 22:38:00.259101377 Z\nsign_in_count:\n- 444\n- 445\n 890 \N 189.186.44.120 631e1e28-d79e-46c2-a024-82c7ec041d4b 2019-06-26 22:38:00.265972 10145 3 User \N \N 3 User \N update ---\nunique_session_id:\n- K2smMREJdnJNVTbRueDH\n- rjzX9H3nyCDVrJDAb_-9\n 891 \N 189.186.44.120 631e1e28-d79e-46c2-a024-82c7ec041d4b 2019-06-26 22:38:00.28113 10146 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-26 16:05:13.716698000 Z\n- &1 2019-06-26 22:38:00.259101000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-26 23:19:58.012264770 Z\nsign_in_count:\n- 445\n- 446\n 892 \N 189.186.44.120 7f2dd792-bc73-438f-b402-8e19341660ed 2019-06-26 23:19:58.021728 10147 3 User \N \N 3 User \N update ---\nunique_session_id:\n- rjzX9H3nyCDVrJDAb_-9\n- VJjDxRaToNLT-WfRvaqT\n 893 \N 189.186.44.120 7f2dd792-bc73-438f-b402-8e19341660ed 2019-06-26 23:19:58.040849 10148 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-26 02:01:06.982757000 Z\n- &1 2019-06-26 19:48:25.312860000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-27 00:29:31.025368600 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946477\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938241\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938241\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095040\n mask_addr: 4294967295\nsign_in_count:\n- 303\n- 304\n 608 \N 189.186.45.0 ea5d0ce1-6992-43b8-96b9-2d24ba7c4233 2019-06-27 00:29:31.038093 10149 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bZBbuxjxcpVoF_yNK2kR\n- DhKjdU1spsHiV4a4MsHv\n 609 \N 189.186.45.0 ea5d0ce1-6992-43b8-96b9-2d24ba7c4233 2019-06-27 00:29:31.059625 10150 266 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 269\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1065E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1065E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.44.120 a52179c8-05c7-4e8d-9d52-8a93847ac0fe 2019-06-27 01:57:38.783931 10151 269 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 a52179c8-05c7-4e8d-9d52-8a93847ac0fe 2019-06-27 01:57:38.798838 10152 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-26 22:38:00.259101000 Z\n- &1 2019-06-26 23:19:58.012264000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-27 02:29:37.941565530 Z\nsign_in_count:\n- 446\n- 447\n 894 \N 189.186.44.120 b0e4db80-b4d0-4b7b-af1f-604f1abfa463 2019-06-27 02:29:37.947266 10153 3 User \N \N 3 User \N update ---\nunique_session_id:\n- VJjDxRaToNLT-WfRvaqT\n- Woe_CjUFzQCdKPd3HnkZ\n 895 \N 189.186.44.120 b0e4db80-b4d0-4b7b-af1f-604f1abfa463 2019-06-27 02:29:37.975541 10154 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-26 23:19:58.012264000 Z\n- &1 2019-06-27 02:29:37.941565000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-27 16:05:07.274428960 Z\nsign_in_count:\n- 447\n- 448\n 896 \N 189.186.44.120 c9364b6d-a8e4-4ae0-8d0c-f5c94c1914b9 2019-06-27 16:05:07.303639 10155 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Woe_CjUFzQCdKPd3HnkZ\n- "-JWv-Ppkb2z8hSQyfFLo"\n 897 \N 189.186.44.120 c9364b6d-a8e4-4ae0-8d0c-f5c94c1914b9 2019-06-27 16:05:07.327821 10156 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-25 16:19:07.035877000 Z\n- &1 2019-06-26 16:36:35.212485000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-27 16:21:26.356366794 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\nsign_in_count:\n- 180\n- 181\n 365 \N 189.186.44.120 d9869c10-044e-4628-be03-4e82b23503f5 2019-06-27 16:21:26.36339 10157 2 User \N \N 2 User \N update ---\nunique_session_id:\n- qmHfy4ukKAYMUL_PN6c4\n- 3Cf5SS6SoeMhzy53z3vB\n 366 \N 189.186.44.120 d9869c10-044e-4628-be03-4e82b23503f5 2019-06-27 16:21:26.379645 10158 270 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1065E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1065.0 189.186.44.120 e3f374cd-2fda-4623-ae3e-50ec11e79547 2019-06-27 16:26:11.053565 10159 135 Customer \N \N 2 User \N create ---\nnick_name: GRACIELA VAZQUEZ\nphone: "(667) 350-7792"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente GRACIELA VAZQUEZ fue registrado. 189.186.44.120 4504507e-abfa-42e6-805b-bddae349bafb 2019-06-27 16:35:09.959181 10160 789 Sale \N \N 2 User \N create ---\ncustomer_id: 135\nuser_id: 2\nopen_cash_register_id: 270\namount: !ruby/object:BigDecimal 18:0.67155E3\ntax: !ruby/object:BigDecimal 18:0.10745E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.779E3\nstatus: 0\ndate_sale: 2019-06-27\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-444\nexpiration_date: 2019-08-01\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 5e07989d-ed24-4a27-b15e-92eb9a54d5f1 2019-06-27 16:37:31.719071 10161 120 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.44.120 5e07989d-ed24-4a27-b15e-92eb9a54d5f1 2019-06-27 16:37:31.768389 10206 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-26 16:36:35.212485000 Z\n- &1 2019-06-27 16:21:26.356366000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-28 17:31:13.329343399 Z\nsign_in_count:\n- 181\n- 182\n 367 \N 189.186.44.120 a62e816c-0bcb-4aa0-a43c-cb5f3b5e5ab6 2019-06-28 17:31:13.358474 10162 1069 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 270\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.156E3\nmove_type: '1'\nsale_id: 789\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-444\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.17E3\nchange: !ruby/object:BigDecimal 18:0.14E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-444 189.186.44.120 f52cbc74-e18a-41f9-a8f1-076cb948077e 2019-06-27 16:38:31.895683 10163 1069 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 270\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.156E3\nmove_type: '1'\nsale_id: 789\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-444\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.17E3\nchange: !ruby/object:BigDecimal 18:0.14E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.44.120 4c90ea9a-82ee-4c58-a729-a08a07fb329c 2019-06-27 16:38:36.296026 10164 1070 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 270\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.17E3\nmove_type: '1'\nsale_id: 789\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-444\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.17E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-444 189.186.44.120 d2b5672d-59d7-468a-8fb4-3caf9e1c2881 2019-06-27 16:38:46.399687 10165 789 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.44.120 fbcd674e-e7a4-4288-ae9f-0d8bd1d0d811 2019-06-27 16:38:57.757581 10166 789 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV1-V-444 cancelada. 189.186.44.120 c079615d-63e0-41f9-bd71-d5aa657c9d2d 2019-06-27 16:52:02.408496 10167 1070 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 270\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.17E3\nmove_type: '1'\nsale_id: 789\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-444\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.17E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.44.120 c079615d-63e0-41f9-bd71-d5aa657c9d2d 2019-06-27 16:52:02.447806 10168 120 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.44.120 c079615d-63e0-41f9-bd71-d5aa657c9d2d 2019-06-27 16:52:02.487614 10169 790 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 270\namount: !ruby/object:BigDecimal 18:0.69279E3\ntax: !ruby/object:BigDecimal 18:0.8621E2\ndiscount: !ruby/object:BigDecimal 18:0.154E3\ntotal: !ruby/object:BigDecimal 18:0.625E3\nstatus: 0\ndate_sale: 2019-06-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-445\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 2e3ca11d-3fbc-4b15-b996-e3be1c10c621 2019-06-27 16:59:05.561184 10170 120 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.44.120 2e3ca11d-3fbc-4b15-b996-e3be1c10c621 2019-06-27 16:59:05.597178 10171 790 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 99cef947-e3e9-49cf-969e-6ed828f70651 2019-06-27 16:59:10.977162 10172 1071 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 270\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.625E3\nmove_type: '1'\nsale_id: 790\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-445\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.625E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-445 189.186.44.120 99cef947-e3e9-49cf-969e-6ed828f70651 2019-06-27 16:59:11.005435 10173 135 Customer \N \N 2 User \N update ---\nphone:\n- "(667) 350-7792"\n- "(667) 350-7790"\n 2 El cliente GRACIELA VAZQUEZ fue registrado. 189.186.44.120 8b5757af-665f-468a-b6a2-3bae38000132 2019-06-27 17:09:42.404768 10174 791 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 268\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-06-27\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-344\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 d639d272-327e-4e9e-9e0a-a21439a9f90b 2019-06-27 17:44:47.226255 10175 437 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 13 \N 189.186.44.120 d639d272-327e-4e9e-9e0a-a21439a9f90b 2019-06-27 17:44:47.273325 10176 791 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 143f907f-8c62-44a7-98bb-f7846e65f18b 2019-06-27 17:45:09.16682 10177 1072 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 268\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.749E3\nmove_type: '1'\nsale_id: 791\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-344\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-344 189.186.44.120 143f907f-8c62-44a7-98bb-f7846e65f18b 2019-06-27 17:45:09.190349 10178 1072 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 268\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.749E3\nmove_type: '1'\nsale_id: 791\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-344\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.44.120 5ae81db7-c01f-43e2-a94f-b354c54dd4b7 2019-06-27 17:45:18.640055 10179 791 Sale \N \N 3 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-344 cancelada. 189.186.44.120 42e6c2b3-4052-4d18-b11a-db8f8ebd7484 2019-06-27 17:45:23.320553 10180 437 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 14 \N 189.186.44.120 42e6c2b3-4052-4d18-b11a-db8f8ebd7484 2019-06-27 17:45:23.365178 10181 792 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 270\namount: !ruby/object:BigDecimal 18:0.1249E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1249E4\nstatus: 0\ndate_sale: 2019-06-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-446\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 155ab1bd-9bd0-46f4-9998-de8657b6f65d 2019-06-27 18:04:40.997974 10182 639 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.44.120 155ab1bd-9bd0-46f4-9998-de8657b6f65d 2019-06-27 18:04:41.025226 10183 792 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 859a49d4-87d4-4f42-91d6-f602109d7f08 2019-06-27 18:05:01.990035 10184 1073 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 270\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1249E4\nmove_type: '1'\nsale_id: 792\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-446\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1249E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-446 189.186.44.120 859a49d4-87d4-4f42-91d6-f602109d7f08 2019-06-27 18:05:02.01441 10185 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-26 19:48:25.312860000 Z\n- &1 2019-06-27 00:29:31.025368000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-27 19:03:54.168151934 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938241\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095040\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095040\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938358\n mask_addr: 4294967295\nsign_in_count:\n- 304\n- 305\n 610 \N 200.68.151.54 1306a2a4-b8d4-4001-af1a-dea9f33c9246 2019-06-27 19:03:54.180157 10186 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DhKjdU1spsHiV4a4MsHv\n- JTsbcL9rU-yBqY6z7mY5\n 611 \N 200.68.151.54 1306a2a4-b8d4-4001-af1a-dea9f33c9246 2019-06-27 19:03:54.204262 10187 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-27 02:29:37.941565000 Z\n- &1 2019-06-27 16:05:07.274428000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-27 23:21:19.734256361 Z\nsign_in_count:\n- 448\n- 449\n 898 \N 189.186.44.120 5fccbd9f-435a-45c0-a5a3-e183c3fff72b 2019-06-27 23:21:19.762081 10188 3 User \N \N 3 User \N update ---\nunique_session_id:\n- "-JWv-Ppkb2z8hSQyfFLo"\n- enFuRMTCztdVVv42B6BW\n 899 \N 189.186.44.120 5fccbd9f-435a-45c0-a5a3-e183c3fff72b 2019-06-27 23:21:19.782393 10189 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-27 16:05:07.274428000 Z\n- &1 2019-06-27 23:21:19.734256000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-28 01:01:11.552100475 Z\nsign_in_count:\n- 449\n- 450\n 900 \N 189.186.44.120 d496fe76-3fbc-4419-8ee3-84ac766857bc 2019-06-28 01:01:11.560233 10190 3 User \N \N 3 User \N update ---\nunique_session_id:\n- enFuRMTCztdVVv42B6BW\n- cz3XMajGGTQmbmtw-iyz\n 901 \N 189.186.44.120 d496fe76-3fbc-4419-8ee3-84ac766857bc 2019-06-28 01:01:11.573612 10191 793 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 268\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-06-27\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-345\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 baa507c8-f0e9-4bf0-a029-020a4b567a06 2019-06-28 01:03:46.322261 10192 651 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 5 \N 189.186.44.120 baa507c8-f0e9-4bf0-a029-020a4b567a06 2019-06-28 01:03:46.362883 10193 793 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 36cc91ae-2a40-4efb-9b65-ec728cbc42f6 2019-06-28 01:03:50.568068 10194 1074 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 268\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.489E3\nmove_type: '1'\nsale_id: 793\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-345\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-345 189.186.44.120 36cc91ae-2a40-4efb-9b65-ec728cbc42f6 2019-06-28 01:03:50.593859 10195 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-27 00:29:31.025368000 Z\n- &1 2019-06-27 19:03:54.168151000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-28 01:26:54.342775126 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095040\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938358\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938061\n mask_addr: 4294967295\nsign_in_count:\n- 305\n- 306\n 612 \N 200.68.150.13 9deb863c-0ba4-493f-9c18-013e79a6897e 2019-06-28 01:26:54.375679 10196 4 User \N \N 4 User \N update ---\nunique_session_id:\n- JTsbcL9rU-yBqY6z7mY5\n- xgSWspzc1Ux8YxmsqJMz\n 613 \N 200.68.150.13 9deb863c-0ba4-493f-9c18-013e79a6897e 2019-06-28 01:26:54.410395 10197 112 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 270\nquantity: !ruby/object:BigDecimal 18:0.2E3\nstatus: 1\nobservations: SE LE DIO A KIKO\nexpense_date: 2019-06-27\nexpense_code: PV1-E-96\n 1 Egreso por 200.0 registrado 189.186.44.120 b485b725-04fd-48cb-9454-821bf029331d 2019-06-28 01:45:55.134957 10198 1075 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 270\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 112\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.44.120 b485b725-04fd-48cb-9454-821bf029331d 2019-06-28 01:45:55.158599 10199 267 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 270\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1874E4\namount_out: !ruby/object:BigDecimal 18:0.2E3\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.1239E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2739E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.44.120 9de13c6e-e540-4dae-8cab-d687d8c69f5a 2019-06-28 01:58:33.473169 10200 270 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 9de13c6e-e540-4dae-8cab-d687d8c69f5a 2019-06-28 01:58:33.488957 10201 268 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 268\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.489E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.712E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1212E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.44.120 12699a17-19b2-4422-9bd8-8ad1a6f8c764 2019-06-28 02:09:17.852408 10202 268 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 12699a17-19b2-4422-9bd8-8ad1a6f8c764 2019-06-28 02:09:17.867361 10203 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-27 23:21:19.734256000 Z\n- &1 2019-06-28 01:01:11.552100000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-28 16:01:14.556157714 Z\nsign_in_count:\n- 450\n- 451\n 902 \N 189.186.44.120 1ee1682b-9b4c-4b66-a1f6-70db0f48e087 2019-06-28 16:01:14.586065 10204 3 User \N \N 3 User \N update ---\nunique_session_id:\n- cz3XMajGGTQmbmtw-iyz\n- s96WjqzbLCPkszqzPLtd\n 903 \N 189.186.44.120 1ee1682b-9b4c-4b66-a1f6-70db0f48e087 2019-06-28 16:01:14.609011 10205 271 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.712E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 712.0 189.186.44.120 f0690d50-4ea0-4036-9fc8-42ea2e083b22 2019-06-28 16:03:14.935569 45718 3401 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.26.176 24985ea3-670b-4a58-a4ee-3626fec765d6 2020-11-12 22:17:56.939457 10208 1076 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 222\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 712\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAMANTHA\n 1 \N 189.186.44.120 7262ae5c-d2ac-460a-86c5-80354a245478 2019-06-28 17:58:40.562267 10209 1076 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 222\n- \n 2 movimiento de efectivo por venta con folio PV1-V-401 189.186.44.120 7262ae5c-d2ac-460a-86c5-80354a245478 2019-06-28 17:58:40.594575 10210 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-28 01:01:11.552100000 Z\n- &1 2019-06-28 16:01:14.556157000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-28 19:29:43.804984157 Z\nsign_in_count:\n- 451\n- 452\n 904 \N 189.186.44.120 7ef1199d-8555-4e4b-a0fc-3a53ebd43ecb 2019-06-28 19:29:43.824986 10211 3 User \N \N 3 User \N update ---\nunique_session_id:\n- s96WjqzbLCPkszqzPLtd\n- "-1fhaU41PMWUo_cxzSnY"\n 905 \N 189.186.44.120 7ef1199d-8555-4e4b-a0fc-3a53ebd43ecb 2019-06-28 19:29:43.843601 10212 272 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1239E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1239.0 189.186.44.120 6b6c86d7-6bd3-4b33-aa3d-007174bc5a7e 2019-06-28 19:37:36.899707 10213 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-28 16:01:14.556157000 Z\n- &1 2019-06-28 19:29:43.804984000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-28 19:47:30.970946507 Z\nsign_in_count:\n- 452\n- 453\n 906 \N 189.186.44.120 c19feecc-0e21-4eb3-bf80-3bf494aa332b 2019-06-28 19:47:30.980919 10214 3 User \N \N 3 User \N update ---\nunique_session_id:\n- "-1fhaU41PMWUo_cxzSnY"\n- aqmM2oxZiV9KR5NL8rjV\n 907 \N 189.186.44.120 c19feecc-0e21-4eb3-bf80-3bf494aa332b 2019-06-28 19:47:31.00037 10215 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-28 19:29:43.804984000 Z\n- &1 2019-06-28 19:47:30.970946000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-28 19:53:33.218682157 Z\nsign_in_count:\n- 453\n- 454\n 908 \N 189.186.44.120 75aaa72d-4605-44db-be1d-ec10a3a2c616 2019-06-28 19:53:33.224761 10216 3 User \N \N 3 User \N update ---\nunique_session_id:\n- aqmM2oxZiV9KR5NL8rjV\n- 67_xuecnu7n1Mq6p46LW\n 909 \N 189.186.44.120 75aaa72d-4605-44db-be1d-ec10a3a2c616 2019-06-28 19:53:33.238983 10217 535 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.44.120 7f285764-6503-4ba7-816b-a8eb654414a9 2019-06-28 20:00:38.491938 10218 544 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.44.120 7f285764-6503-4ba7-816b-a8eb654414a9 2019-06-28 20:00:38.524108 10219 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-28 19:47:30.970946000 Z\n- &1 2019-06-28 19:53:33.218682000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-28 20:03:43.215526080 Z\nsign_in_count:\n- 454\n- 455\n 910 \N 189.186.44.120 3d677075-4c08-4234-b7ca-24b84e8c59d9 2019-06-28 20:03:43.234106 10220 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 67_xuecnu7n1Mq6p46LW\n- Ry7fFu6192v2864Udp58\n 911 \N 189.186.44.120 3d677075-4c08-4234-b7ca-24b84e8c59d9 2019-06-28 20:03:43.249825 10221 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-28 19:53:33.218682000 Z\n- &1 2019-06-28 20:03:43.215526000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-28 20:09:08.746286812 Z\nsign_in_count:\n- 455\n- 456\n 912 \N 189.186.44.120 91c047c4-f2df-42b4-a087-24a7adaf34cf 2019-06-28 20:09:08.75312 10222 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Ry7fFu6192v2864Udp58\n- 34zBJzT2yNhoqTiyeQHE\n 913 \N 189.186.44.120 91c047c4-f2df-42b4-a087-24a7adaf34cf 2019-06-28 20:09:08.76696 10223 113 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 271\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: ADELANTO YARETZI\nexpense_date: 2019-06-28\nexpense_code: PV2-E-17\n 1 Egreso por 50.0 registrado 189.186.44.120 b1278258-2953-4393-ac2b-6880bf8770ac 2019-06-28 21:02:04.168076 10224 1077 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 271\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 113\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.44.120 b1278258-2953-4393-ac2b-6880bf8770ac 2019-06-28 21:02:04.202433 10225 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-27 19:03:54.168151000 Z\n- &1 2019-06-28 01:26:54.342775000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-28 21:18:50.020489937 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938061\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938061\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\nsign_in_count:\n- 306\n- 307\n 614 \N 189.186.41.174 20c37525-ec2e-4615-8015-b21f47ef33ea 2019-06-28 21:18:50.029585 10226 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xgSWspzc1Ux8YxmsqJMz\n- e6Yfj3RuszvKXkzpByCh\n 615 \N 189.186.41.174 20c37525-ec2e-4615-8015-b21f47ef33ea 2019-06-28 21:18:50.046549 10227 552 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.44.120 14771a77-240d-4086-b8d4-471194258764 2019-06-28 23:18:33.323061 10228 552 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.44.120 63f50f7a-1842-46dc-abc1-6ddb18352121 2019-06-28 23:18:36.074213 10229 437 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 15 \N 189.186.44.120 8481b389-7e79-4060-b17a-36cb83423558 2019-06-28 23:18:53.453314 10230 437 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 16 \N 189.186.44.120 ea24ddae-a236-473b-828b-d784fc6cd35b 2019-06-28 23:18:56.184527 10231 64 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-06-28\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.44.120 e8875347-6955-49b3-b440-bf08c74e7882 2019-06-28 23:18:56.677271 10232 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-28 01:26:54.342775000 Z\n- &1 2019-06-28 21:18:50.020489000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-28 23:23:05.512001730 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938061\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946114\n mask_addr: 4294967295\nsign_in_count:\n- 307\n- 308\n 616 \N 200.68.181.130 e7b83b37-e840-45e5-88b1-78ba7e8b9916 2019-06-28 23:23:05.520429 10233 4 User \N \N 4 User \N update ---\nunique_session_id:\n- e6Yfj3RuszvKXkzpByCh\n- mBx_-aHRTGjdZC1h6gss\n 617 \N 200.68.181.130 e7b83b37-e840-45e5-88b1-78ba7e8b9916 2019-06-28 23:23:05.538067 10377 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7hWwz9mTiHxLvZa7ABxB\n- WxjyXzwiQo9zTyn9yiGw\n 631 \N 189.186.44.120 914e5354-48d7-46be-9d5a-eb1b8dd515c4 2019-07-01 23:35:47.714155 10234 794 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 271\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-06-28\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-346\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 3b6ace17-8a5e-484f-9b95-cf8e443d978c 2019-06-28 23:30:28.114371 10235 389 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.44.120 3b6ace17-8a5e-484f-9b95-cf8e443d978c 2019-06-28 23:30:28.16042 10236 794 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 9f981ea0-0263-4361-afaf-b3495c804f1a 2019-06-28 23:31:39.865348 10237 1078 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 271\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 794\ncardnumber: 8319\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-346\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-346 189.186.44.120 9f981ea0-0263-4361-afaf-b3495c804f1a 2019-06-28 23:31:39.889255 10238 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-28 20:03:43.215526000 Z\n- &1 2019-06-28 20:09:08.746286000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-29 01:08:48.305416106 Z\nsign_in_count:\n- 456\n- 457\n 914 \N 189.186.44.120 624dba1f-d9dc-442d-918f-ec99658ec290 2019-06-29 01:08:48.341124 10239 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 34zBJzT2yNhoqTiyeQHE\n- Y2f_9kGZPD1rD-qwJu9j\n 915 \N 189.186.44.120 624dba1f-d9dc-442d-918f-ec99658ec290 2019-06-29 01:08:48.371611 10240 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-28 20:09:08.746286000 Z\n- &1 2019-06-29 01:08:48.305416000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-29 01:12:31.174844207 Z\nsign_in_count:\n- 457\n- 458\n 916 \N 189.186.44.120 9c1809b9-19de-46ca-a75f-e5dafda83e7b 2019-06-29 01:12:31.184442 10241 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Y2f_9kGZPD1rD-qwJu9j\n- BaSpsMBAsze62N_oaKvc\n 917 \N 189.186.44.120 9c1809b9-19de-46ca-a75f-e5dafda83e7b 2019-06-29 01:12:31.207216 10242 114 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 272\nquantity: !ruby/object:BigDecimal 18:0.55E3\nstatus: 1\nobservations: adelanto sueldo Anabelly $500 comida $50\nexpense_date: 2019-06-28\nexpense_code: PV1-E-97\n 1 Egreso por 550.0 registrado 189.186.44.120 82aebb56-a27e-4d79-94d1-bc53ff907a8c 2019-06-29 01:51:23.597994 10243 1079 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 272\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.55E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 114\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.44.120 82aebb56-a27e-4d79-94d1-bc53ff907a8c 2019-06-29 01:51:23.625998 10244 269 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 272\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.55E3\nreceived_by_id: 16\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.689E3\nphysical_cash: !ruby/object:BigDecimal 18:0.689E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.44.120 6253110a-3e9d-4894-b283-ad93b30e0e60 2019-06-29 02:03:04.718577 10245 272 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 6253110a-3e9d-4894-b283-ad93b30e0e60 2019-06-29 02:03:04.741598 10246 270 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 271\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1299E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.662E3\nphysical_cash: !ruby/object:BigDecimal 18:0.662E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.44.120 847a899b-c015-4275-b87e-a86630502c28 2019-06-29 02:07:20.506871 10247 271 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 847a899b-c015-4275-b87e-a86630502c28 2019-06-29 02:07:20.526176 10248 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-28 21:18:50.020489000 Z\n- &1 2019-06-28 23:23:05.512001000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-29 02:52:19.403002772 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946114\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946114\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945998\n mask_addr: 4294967295\nsign_in_count:\n- 308\n- 309\n 618 \N 200.68.181.14 38e39f55-38d0-401c-9db3-fc1768af5e6e 2019-06-29 02:52:19.414766 10249 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mBx_-aHRTGjdZC1h6gss\n- kQDqU3baAiy-F1NfQ29E\n 619 \N 200.68.181.14 38e39f55-38d0-401c-9db3-fc1768af5e6e 2019-06-29 02:52:19.439228 10250 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-27 16:21:26.356366000 Z\n- &1 2019-06-28 17:31:13.329343000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-29 16:04:57.254601951 Z\nsign_in_count:\n- 182\n- 183\n 369 \N 189.186.44.120 b6e84f37-acf6-4b8b-8fdc-dc321fdbb0f2 2019-06-29 16:04:57.284635 10251 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 2KyXVGk6iKP8reqs3gsF\n- cGi7kZZffxjFZb5yFkbs\n 370 \N 189.186.44.120 b6e84f37-acf6-4b8b-8fdc-dc321fdbb0f2 2019-06-29 16:04:57.309295 10252 273 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.689E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 689.0 189.186.44.120 4de1193a-8042-456e-af56-1328d3ece838 2019-06-29 16:05:29.564525 10253 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-29 01:08:48.305416000 Z\n- &1 2019-06-29 01:12:31.174844000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-29 16:11:31.109553406 Z\nsign_in_count:\n- 458\n- 459\n 918 \N 189.186.44.120 8522dd35-411b-4c6c-bdb4-2205c2e3168d 2019-06-29 16:11:31.115856 10254 3 User \N \N 3 User \N update ---\nunique_session_id:\n- BaSpsMBAsze62N_oaKvc\n- 5X1HFvmfXhGML1QaxQHz\n 919 \N 189.186.44.120 8522dd35-411b-4c6c-bdb4-2205c2e3168d 2019-06-29 16:11:31.131559 10255 795 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 273\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-06-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-447\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 0b7bf820-5a82-4335-9c29-5fbf38c27747 2019-06-29 17:46:44.319162 10256 660 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 189.186.44.120 0b7bf820-5a82-4335-9c29-5fbf38c27747 2019-06-29 17:46:44.354212 10257 795 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 1dfd2b84-c3e3-4c9c-b232-aa9366ffc4f3 2019-06-29 17:47:42.492704 10403 3 User \N \N 3 User \N update ---\nunique_session_id:\n- RSLzgTqBZavs6_wakSHP\n- yhx1ywtSUdnj7ma5Zqjy\n 941 \N 189.186.44.120 eccef901-a287-46be-92cf-7195d1597afd 2019-07-02 15:59:20.754491 10258 1080 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 273\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 795\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-447\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.749E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-447 189.186.44.120 1dfd2b84-c3e3-4c9c-b232-aa9366ffc4f3 2019-06-29 17:47:42.517692 10259 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-29 01:12:31.174844000 Z\n- &1 2019-06-29 16:11:31.109553000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-29 17:49:37.875733972 Z\nsign_in_count:\n- 459\n- 460\n 920 \N 189.186.44.120 43cbba5a-9d7c-452a-bf0f-4d6192377fd8 2019-06-29 17:49:37.88249 10260 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 5X1HFvmfXhGML1QaxQHz\n- 4n4X52MW-TsURdCHiboZ\n 921 \N 189.186.44.120 43cbba5a-9d7c-452a-bf0f-4d6192377fd8 2019-06-29 17:49:37.914652 10261 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-29 16:11:31.109553000 Z\n- &1 2019-06-29 17:49:37.875733000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-29 18:16:36.128692819 Z\nsign_in_count:\n- 460\n- 461\n 922 \N 189.186.44.120 3b1535c4-4526-4f0a-874b-5119537e90cc 2019-06-29 18:16:36.150054 10262 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 4n4X52MW-TsURdCHiboZ\n- 6yN7hg5qmEEFsjRP-VZK\n 923 \N 189.186.44.120 3b1535c4-4526-4f0a-874b-5119537e90cc 2019-06-29 18:16:36.169452 10263 274 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.662E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 662.0 189.186.44.120 187e8c5b-0d7e-45ba-9b19-afec6232fa7d 2019-06-29 18:16:46.36871 10264 796 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 273\namount: !ruby/object:BigDecimal 18:0.44383E3\ntax: !ruby/object:BigDecimal 18:0.5517E2\ndiscount: !ruby/object:BigDecimal 18:0.99E2\ntotal: !ruby/object:BigDecimal 18:0.4E3\nstatus: 0\ndate_sale: 2019-06-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-448\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 ea75a169-ad0e-4e75-8049-2a1820078dbf 2019-06-29 19:43:43.910735 10265 72 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.44.120 ea75a169-ad0e-4e75-8049-2a1820078dbf 2019-06-29 19:43:43.945138 10266 796 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 dcf270d8-5c33-4aaf-8ec4-44bc38ae3465 2019-06-29 19:43:48.213322 10267 1081 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 273\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 796\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-448\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-448 189.186.44.120 dcf270d8-5c33-4aaf-8ec4-44bc38ae3465 2019-06-29 19:43:48.242019 10268 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-28 17:31:13.329343000 Z\n- &1 2019-06-29 16:04:57.254601000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-29 19:54:32.967050290 Z\nsign_in_count:\n- 183\n- 184\n 371 \N 189.186.44.120 c923efd6-839b-49d4-9b3f-73d7c28e519b 2019-06-29 19:54:32.975129 10269 2 User \N \N 2 User \N update ---\nunique_session_id:\n- cGi7kZZffxjFZb5yFkbs\n- 3AmRZuzvYpToGTzj4d-w\n 372 \N 189.186.44.120 c923efd6-839b-49d4-9b3f-73d7c28e519b 2019-06-29 19:54:32.997182 10270 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-29 16:04:57.254601000 Z\n- &1 2019-06-29 19:54:32.967050000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-29 21:14:01.301066877 Z\nsign_in_count:\n- 184\n- 185\n 373 \N 189.186.44.120 ec016df9-64f5-43cd-b068-68a1557c15b0 2019-06-29 21:14:01.307548 10271 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 3AmRZuzvYpToGTzj4d-w\n- y_jDiTytP3g_smiUwjUt\n 374 \N 189.186.44.120 ec016df9-64f5-43cd-b068-68a1557c15b0 2019-06-29 21:14:01.322578 10272 64 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-06-29\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.44.120 422246ae-1ff9-4e0a-ba8f-16c734f4fab1 2019-06-29 21:14:16.611386 10273 185 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.44.120 422246ae-1ff9-4e0a-ba8f-16c734f4fab1 2019-06-29 21:14:16.632724 10274 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 27 \N 189.186.44.120 422246ae-1ff9-4e0a-ba8f-16c734f4fab1 2019-06-29 21:14:16.655535 10275 63 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-06-29\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.44.120 3809a089-408f-456f-8f27-538137eca69b 2019-06-29 21:31:35.123731 10276 675 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 536\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.44.120 3809a089-408f-456f-8f27-538137eca69b 2019-06-29 21:31:35.14773 10277 797 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 274\namount: !ruby/object:BigDecimal 18:0.124572E4\ntax: !ruby/object:BigDecimal 18:0.9228E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1338E4\nstatus: 0\ndate_sale: 2019-06-29\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-347\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 301b4c20-117d-44e3-a2ef-6cb239af9459 2019-06-29 21:41:33.102898 10278 650 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.44.120 301b4c20-117d-44e3-a2ef-6cb239af9459 2019-06-29 21:41:33.139193 10279 436 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 189.186.44.120 301b4c20-117d-44e3-a2ef-6cb239af9459 2019-06-29 21:41:33.180423 10280 797 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 b9b9aa57-b4f9-456c-8db5-f26079cf5466 2019-06-29 21:41:44.269531 10281 1082 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 274\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1338E4\nmove_type: '1'\nsale_id: 797\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-347\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.135E4\nchange: !ruby/object:BigDecimal 18:0.12E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-347 189.186.44.120 b9b9aa57-b4f9-456c-8db5-f26079cf5466 2019-06-29 21:41:44.290684 10374 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-30 20:59:27.294996000 Z\n- &1 2019-07-01 17:07:17.713829000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-01 23:27:50.670616989 Z\nsign_in_count:\n- 466\n- 467\n 934 \N 189.186.44.120 c5ec4e97-ce52-49af-b1b3-9bffc2d598a1 2019-07-01 23:27:50.6804 10428 809 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 fa5745ff-975c-4980-93d3-21b2a099e7aa 2019-07-02 22:40:24.287813 10282 1083 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 274\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1119E4\nmove_type: '1'\nsale_id: 708\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.81E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-307 189.186.44.120 ca5cd757-42a9-4217-9588-d96b4a15c802 2019-06-29 22:39:26.452501 10283 708 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.44.120 ac34fced-77bb-4ad2-8dc8-b19bccd7928c 2019-06-29 22:39:29.132478 10284 136 Customer \N \N 2 User \N create ---\nnick_name: ANGELITA OLIVAS\nphone: "(667) 143-3666"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANGELITA OLIVAS fue registrado. 189.186.44.120 477d8f64-f840-4ae6-97a6-aa7c42780160 2019-06-29 22:42:24.008656 10285 798 Sale \N \N 2 User \N create ---\ncustomer_id: 136\nuser_id: 2\nopen_cash_register_id: 273\namount: !ruby/object:BigDecimal 18:0.189483E4\ntax: !ruby/object:BigDecimal 18:0.30317E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2198E4\nstatus: 0\ndate_sale: 2019-06-29\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-449\nexpiration_date: 2019-08-03\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 31e9f42b-5014-4cdb-b452-b0f1697c18cd 2019-06-29 22:43:07.738096 10286 246 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.44.120 31e9f42b-5014-4cdb-b452-b0f1697c18cd 2019-06-29 22:43:07.76561 10287 237 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.44.120 31e9f42b-5014-4cdb-b452-b0f1697c18cd 2019-06-29 22:43:07.789068 10288 1084 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 273\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 798\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-449\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-449 189.186.44.120 4b4ff649-89bf-41e4-9556-0120e7e62c51 2019-06-29 22:43:15.744261 10289 798 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.44.120 6f2cdfac-9314-443f-ae03-df54133daa18 2019-06-29 22:43:18.715889 10290 799 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 274\namount: !ruby/object:BigDecimal 18:0.74914E3\ntax: !ruby/object:BigDecimal 18:0.11986E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-06-29\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-348\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 83ffc9b3-9c02-4244-9e12-9dca92f78ba3 2019-06-29 23:44:26.596187 10291 674 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.44.120 83ffc9b3-9c02-4244-9e12-9dca92f78ba3 2019-06-29 23:44:26.647855 10292 799 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 5ae44de3-476c-4f3d-a780-d094b185e44a 2019-06-29 23:44:48.305136 10293 1085 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 274\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.869E3\nmove_type: '1'\nsale_id: 799\ncardnumber: 9231\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-348\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-348 189.186.44.120 5ae44de3-476c-4f3d-a780-d094b185e44a 2019-06-29 23:44:48.331651 10294 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-29 19:54:32.967050000 Z\n- &1 2019-06-29 21:14:01.301066000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-29 23:47:40.976146161 Z\nsign_in_count:\n- 185\n- 186\n 375 \N 189.186.44.120 07dddd81-7f2b-41b3-8399-e4212d97d978 2019-06-29 23:47:40.983671 10295 2 User \N \N 2 User \N update ---\nunique_session_id:\n- y_jDiTytP3g_smiUwjUt\n- _s-s7MgZ-ur8FnDN3tCg\n 376 \N 189.186.44.120 07dddd81-7f2b-41b3-8399-e4212d97d978 2019-06-29 23:47:40.998453 10296 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-29 21:14:01.301066000 Z\n- &1 2019-06-29 23:47:40.976146000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-29 23:58:38.916265911 Z\nsign_in_count:\n- 186\n- 187\n 377 \N 189.186.44.120 468044e5-6c36-423b-a0c4-8992548a944f 2019-06-29 23:58:38.922396 10297 2 User \N \N 2 User \N update ---\nunique_session_id:\n- _s-s7MgZ-ur8FnDN3tCg\n- GAyDjnx1pY7hyfUwwLCK\n 378 \N 189.186.44.120 468044e5-6c36-423b-a0c4-8992548a944f 2019-06-29 23:58:38.944007 10298 800 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 273\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-06-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-450\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 3a5f0f06-11a6-417c-a9f2-bd748e0d9ecf 2019-06-29 23:58:51.697361 10299 646 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.44.120 3a5f0f06-11a6-417c-a9f2-bd748e0d9ecf 2019-06-29 23:58:51.741798 10300 800 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 5b1c6e4b-4bb0-4937-b0c5-34496e903d77 2019-06-29 23:59:36.588524 10301 1086 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 273\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 800\ncardnumber: 3206\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-450\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-450 189.186.44.120 5b1c6e4b-4bb0-4937-b0c5-34496e903d77 2019-06-29 23:59:36.623621 10302 115 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 273\nquantity: !ruby/object:BigDecimal 18:0.678E3\nstatus: 1\nobservations: "$628 sueldo $50 comida"\nexpense_date: 2019-06-29\nexpense_code: PV1-E-98\n 1 Egreso por 678.0 registrado 189.186.44.120 6f0a791f-2ac3-4b5f-8f66-da44b8b892ac 2019-06-30 00:06:34.453026 10303 1087 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 273\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.678E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 115\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.44.120 6f0a791f-2ac3-4b5f-8f66-da44b8b892ac 2019-06-30 00:06:34.486293 10375 3 User \N \N 3 User \N update ---\nunique_session_id:\n- LqDxHLz74optfy2rWJ56\n- oZXxJkxCfJu9yU2QuvEu\n 935 \N 189.186.44.120 c5ec4e97-ce52-49af-b1b3-9bffc2d598a1 2019-07-01 23:27:50.701484 10451 280 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 e93ebe80-2cde-4dc2-af9c-d8196ed173e9 2019-07-03 01:58:06.415918 10304 1088 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 273\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.713E3\nmove_type: '1'\nsale_id: 607\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.713E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-338 189.186.44.120 132216b2-ac98-4c52-8560-305cb9617be1 2019-06-30 01:19:08.121941 10305 607 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.44.120 c564788b-5e6a-465a-b3bb-59f1e57210bb 2019-06-30 01:19:09.247052 10306 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-28 23:23:05.512001000 Z\n- &1 2019-06-29 02:52:19.403002000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-30 01:32:07.367961809 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946114\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945998\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945998\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946134\n mask_addr: 4294967295\nsign_in_count:\n- 309\n- 310\n 620 \N 200.68.181.150 9b80f1d8-33b6-43c4-9f60-879fc48af4f7 2019-06-30 01:32:07.399795 10307 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kQDqU3baAiy-F1NfQ29E\n- D8TdRm8Yvwf9YE8v5jzi\n 621 \N 200.68.181.150 9b80f1d8-33b6-43c4-9f60-879fc48af4f7 2019-06-30 01:32:07.424665 10308 116 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 274\nquantity: !ruby/object:BigDecimal 18:0.9E3\nstatus: 1\nobservations: SUELDO YARETZI\nexpense_date: 2019-06-29\nexpense_code: PV2-E-18\n 1 Egreso por 900.0 registrado 189.186.44.120 8162e9c4-5ce7-45db-97e3-822f509481b1 2019-06-30 01:40:49.212109 10309 1089 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 274\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.9E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 116\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.44.120 8162e9c4-5ce7-45db-97e3-822f509481b1 2019-06-30 01:40:49.247568 10310 117 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 273\nquantity: !ruby/object:BigDecimal 18:0.4E3\nstatus: 1\nobservations: resto de sueldo Anabelly\nexpense_date: 2019-06-29\nexpense_code: PV1-E-99\n 1 Egreso por 400.0 registrado 189.186.44.120 aac2976a-d02e-41d1-89bd-2e55d789a85f 2019-06-30 01:48:43.843889 10311 1090 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 273\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 117\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.44.120 aac2976a-d02e-41d1-89bd-2e55d789a85f 2019-06-30 01:48:43.87411 10312 271 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 273\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3761E4\namount_out: !ruby/object:BigDecimal 18:0.1078E4\nreceived_by_id: 16\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.773E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1973E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.44.120 281b29b2-379d-4f61-b79d-56a6c67b7571 2019-06-30 01:53:42.831614 10313 273 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 281b29b2-379d-4f61-b79d-56a6c67b7571 2019-06-30 01:53:42.856218 10314 272 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 274\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.3326E4\namount_out: !ruby/object:BigDecimal 18:0.9E3\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.719E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2219E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.44.120 363e5296-5008-473f-8b6f-e74d19c1b77b 2019-06-30 02:06:45.731111 10315 274 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 363e5296-5008-473f-8b6f-e74d19c1b77b 2019-06-30 02:06:45.762796 10316 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-29 17:49:37.875733000 Z\n- &1 2019-06-29 18:16:36.128692000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-30 16:11:32.096551782 Z\nsign_in_count:\n- 461\n- 462\n 924 \N 189.186.44.120 ee06d85d-e758-436e-9b69-4198238553e2 2019-06-30 16:11:32.131674 10317 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 6yN7hg5qmEEFsjRP-VZK\n- "-4BgY5zxCCJy79sgDcjk"\n 925 \N 189.186.44.120 ee06d85d-e758-436e-9b69-4198238553e2 2019-06-30 16:11:32.156472 10318 275 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.719E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 719.0 189.186.44.120 76bed38c-64fc-4ef1-9a5a-09dab7589b9d 2019-06-30 16:11:41.793517 10319 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-21 18:11:33.897517000 Z\n- &1 2019-06-23 16:56:12.664739000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-30 18:39:47.588052084 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\nsign_in_count:\n- 236\n- 237\n 474 \N 189.186.44.120 233a9d36-e79d-4037-92e6-3a47c3dda6fc 2019-06-30 18:39:47.595197 10320 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Z-FFoozDrqV66mn8Efzy\n- 2W2jAsx_QuLtLAGyLHQ_\n 475 \N 189.186.44.120 233a9d36-e79d-4037-92e6-3a47c3dda6fc 2019-06-30 18:39:47.612679 10321 276 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.773E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 773.0 189.186.44.120 accfa68a-6f02-4d80-8aee-e5f79b570e05 2019-06-30 18:39:51.117252 10322 137 Customer \N \N 12 User \N create ---\nnick_name: MARIA LUISA CAMPOS\nphone: "(667) 223-1434"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIA LUISA CAMPOS fue registrado. 189.186.44.120 3768ef9d-5952-483c-9f20-d0f5b3830adf 2019-06-30 18:40:16.286511 10323 801 Sale \N \N 12 User \N create ---\ncustomer_id: 137\nuser_id: 12\nopen_cash_register_id: 276\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-06-30\nsaletype: 2\nseller_id: 8\nsale_code: PV1-V-451\nexpiration_date: 2019-08-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 b17b53f5-0669-429c-89cc-c1a0b9b570a9 2019-06-30 18:40:31.363571 10324 600 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.44.120 b17b53f5-0669-429c-89cc-c1a0b9b570a9 2019-06-30 18:40:31.405378 10376 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-01 22:33:45.030306000 Z\n- &1 2019-07-01 23:11:59.748131000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-01 23:35:47.694521669 Z\nsign_in_count:\n- 314\n- 315\n 630 \N 189.186.44.120 914e5354-48d7-46be-9d5a-eb1b8dd515c4 2019-07-01 23:35:47.700358 10325 1091 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 276\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 801\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-451\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.2E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-451 189.186.44.120 056d5640-772c-4674-aa00-78e344a6ecbe 2019-06-30 18:41:07.329708 10326 801 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.44.120 f0ca1683-0943-4a64-8c5c-821224104901 2019-06-30 18:41:10.354194 10327 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-29 18:16:36.128692000 Z\n- &1 2019-06-30 16:11:32.096551000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-30 19:18:32.351633398 Z\nsign_in_count:\n- 462\n- 463\n 926 \N 189.186.44.120 7b84effd-d659-4275-be5b-4c8039e62fac 2019-06-30 19:18:32.371953 10328 3 User \N \N 3 User \N update ---\nunique_session_id:\n- "-4BgY5zxCCJy79sgDcjk"\n- 4TCMEp_Wnzozg5V9GhJA\n 927 \N 189.186.44.120 7b84effd-d659-4275-be5b-4c8039e62fac 2019-06-30 19:18:32.394294 10329 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-23 16:56:12.664739000 Z\n- &1 2019-06-30 18:39:47.588052000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-30 20:07:04.402491705 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\nsign_in_count:\n- 237\n- 238\n 476 \N 189.186.44.120 1fd25e35-cc44-46ff-85fb-a7239c7ca54c 2019-06-30 20:07:04.40929 10330 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 2W2jAsx_QuLtLAGyLHQ_\n- Hd2G5LtTdFzNNgj8Ev5W\n 477 \N 189.186.44.120 1fd25e35-cc44-46ff-85fb-a7239c7ca54c 2019-06-30 20:07:04.425729 10331 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-30 16:11:32.096551000 Z\n- &1 2019-06-30 19:18:32.351633000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-30 20:47:18.440476964 Z\nsign_in_count:\n- 463\n- 464\n 928 \N 189.186.44.120 29e59e06-0de9-4b31-a3de-158cd3dd79bf 2019-06-30 20:47:18.446551 10332 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 4TCMEp_Wnzozg5V9GhJA\n- eZ154xLGLpmnXFvpJVMZ\n 929 \N 189.186.44.120 29e59e06-0de9-4b31-a3de-158cd3dd79bf 2019-06-30 20:47:18.460291 10333 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-30 18:39:47.588052000 Z\n- &1 2019-06-30 20:07:04.402491000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-30 20:49:12.508427201 Z\nsign_in_count:\n- 238\n- 239\n 478 \N 189.186.44.120 23e21794-1c30-4b7d-bc16-b4ff735fdba5 2019-06-30 20:49:12.514435 10334 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Hd2G5LtTdFzNNgj8Ev5W\n- bz682GUcqReR2Eu12ZXo\n 479 \N 189.186.44.120 23e21794-1c30-4b7d-bc16-b4ff735fdba5 2019-06-30 20:49:12.527432 10335 273 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 276\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.3E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1073E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1073E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.44.120 3774bb6b-5b61-434b-b7a0-a63ae786fe05 2019-06-30 20:56:00.409813 10336 276 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 3774bb6b-5b61-434b-b7a0-a63ae786fe05 2019-06-30 20:56:00.4376 10337 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-30 19:18:32.351633000 Z\n- &1 2019-06-30 20:47:18.440476000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-30 20:59:27.294996306 Z\nsign_in_count:\n- 464\n- 465\n 930 \N 189.186.44.120 cafea4a0-99cb-401a-b96c-5c62f1d4c94b 2019-06-30 20:59:27.30362 10338 3 User \N \N 3 User \N update ---\nunique_session_id:\n- eZ154xLGLpmnXFvpJVMZ\n- sPNA3s954i1rwc_ZTxcV\n 931 \N 189.186.44.120 cafea4a0-99cb-401a-b96c-5c62f1d4c94b 2019-06-30 20:59:27.321126 10339 274 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 275\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.719E3\nphysical_cash: !ruby/object:BigDecimal 18:0.719E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.44.120 fcf18ad9-f03c-4d68-a761-2471c850303c 2019-06-30 20:59:59.12572 10340 275 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 fcf18ad9-f03c-4d68-a761-2471c850303c 2019-06-30 20:59:59.139022 10341 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-29 02:52:19.403002000 Z\n- &1 2019-06-30 01:32:07.367961000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-06-30 22:00:06.585900108 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945998\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946134\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946134\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\nsign_in_count:\n- 310\n- 311\n 622 \N 189.186.41.174 8faa2ebf-3a29-4ab7-8360-c37b025f2272 2019-06-30 22:00:06.59501 10342 4 User \N \N 4 User \N update ---\nunique_session_id:\n- D8TdRm8Yvwf9YE8v5jzi\n- v1P6VWyWxygyeKKr2eM5\n 623 \N 189.186.41.174 8faa2ebf-3a29-4ab7-8360-c37b025f2272 2019-06-30 22:00:06.61268 10343 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-29 23:47:40.976146000 Z\n- &1 2019-06-29 23:58:38.916265000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-01 16:06:36.452981389 Z\nsign_in_count:\n- 187\n- 188\n 379 \N 189.186.44.120 08d6d267-c546-4b4d-be83-c6b7105c4282 2019-07-01 16:06:36.490961 10344 2 User \N \N 2 User \N update ---\nunique_session_id:\n- GAyDjnx1pY7hyfUwwLCK\n- cwmcJYJztGGsUx9sEuJB\n 380 \N 189.186.44.120 08d6d267-c546-4b4d-be83-c6b7105c4282 2019-07-01 16:06:36.520734 10345 277 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1073E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1073.0 189.186.44.120 995af8d9-66f3-483b-94f3-57f15568a03e 2019-07-01 16:07:41.717443 10346 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-06-30 20:47:18.440476000 Z\n- &1 2019-06-30 20:59:27.294996000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-01 17:07:17.713829934 Z\nsign_in_count:\n- 465\n- 466\n 932 \N 189.186.44.120 b6fa2ebb-721d-4177-b3b5-80ba5fc567f7 2019-07-01 17:07:17.719825 10347 3 User \N \N 3 User \N update ---\nunique_session_id:\n- sPNA3s954i1rwc_ZTxcV\n- LqDxHLz74optfy2rWJ56\n 933 \N 189.186.44.120 b6fa2ebb-721d-4177-b3b5-80ba5fc567f7 2019-07-01 17:07:17.740508 10348 802 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 277\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-07-01\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-452\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 4a428b81-aa32-441a-8d47-3783aa73f6b3 2019-07-01 18:16:23.010619 10349 605 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.44.120 4a428b81-aa32-441a-8d47-3783aa73f6b3 2019-07-01 18:16:23.048058 10350 802 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 5b3ba5e0-e9a9-4ffb-a423-1c361511f84a 2019-07-01 18:16:33.431424 10351 1092 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 277\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.479E3\nmove_type: '1'\nsale_id: 802\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-452\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAMANTHA\n 1 movimiento de efectivo por venta con folio PV1-V-452 189.186.44.120 5b3ba5e0-e9a9-4ffb-a423-1c361511f84a 2019-07-01 18:16:33.459196 10352 803 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 277\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-07-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-453\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 31d8b31c-6fa0-4348-88bd-4d2cbda4502e 2019-07-01 20:03:16.19809 10353 646 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.44.120 31d8b31c-6fa0-4348-88bd-4d2cbda4502e 2019-07-01 20:03:16.247801 10354 803 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 af748654-71d6-4d97-a108-2bc4eee2c93e 2019-07-01 20:03:29.427169 10355 1093 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 277\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 803\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-453\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1399E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-453 189.186.44.120 af748654-71d6-4d97-a108-2bc4eee2c93e 2019-07-01 20:03:29.463704 10356 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-30 01:32:07.367961000 Z\n- &1 2019-06-30 22:00:06.585900000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-01 20:16:33.688517669 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946134\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\nsign_in_count:\n- 311\n- 312\n 624 \N 189.186.41.174 c5569370-c616-4ef8-9f74-3fd8554b3041 2019-07-01 20:16:33.703507 10357 4 User \N \N 4 User \N update ---\nunique_session_id:\n- v1P6VWyWxygyeKKr2eM5\n- bHvYHQdJsXDYhJJaSKm_\n 625 \N 189.186.41.174 c5569370-c616-4ef8-9f74-3fd8554b3041 2019-07-01 20:16:33.728175 10358 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-30 20:07:04.402491000 Z\n- &1 2019-06-30 20:49:12.508427000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-01 22:13:04.538737898 Z\nsign_in_count:\n- 239\n- 240\n 480 \N 189.186.44.120 10f986c0-8790-49a1-bdd6-a5ed5f633882 2019-07-01 22:13:04.560456 10359 12 User \N \N 12 User \N update ---\nunique_session_id:\n- bz682GUcqReR2Eu12ZXo\n- AzJrcWP9PYcWynuTfNg3\n 481 \N 189.186.44.120 10f986c0-8790-49a1-bdd6-a5ed5f633882 2019-07-01 22:13:04.580378 10360 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-06-30 22:00:06.585900000 Z\n- &1 2019-07-01 20:16:33.688517000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-01 22:33:45.030306863 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\nsign_in_count:\n- 312\n- 313\n 626 \N 189.186.44.120 66835a15-b578-41d2-9d9d-644e7ef4e52f 2019-07-01 22:33:45.038429 10361 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bHvYHQdJsXDYhJJaSKm_\n- n6Te_Xpf-1ojMwAUD7vY\n 627 \N 189.186.44.120 66835a15-b578-41d2-9d9d-644e7ef4e52f 2019-07-01 22:33:45.055748 10362 327 Product \N \N 4 User \N update ---\ndescription:\n- BLUS NEGRA CON OLAN\n- BLUS MOSTAZA CON OLAN\n 3 El producto BLU-327 fue modificado. 189.186.44.120 0a8661e9-6edc-4d91-83c0-0add5e1f9ed6 2019-07-01 22:40:17.57998 10363 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-06-24 23:20:42.100644000 Z\n- &1 2019-06-25 23:14:37.024758000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-01 22:41:30.920111425 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\nsign_in_count:\n- 84\n- 85\n 170 \N 189.186.44.120 941710d9-6809-477b-8b8b-297aad50b454 2019-07-01 22:41:30.9327 10364 10 User \N \N 10 User \N update ---\nunique_session_id:\n- sTYzN1ncjzvRFqbhHVSg\n- 5-7B1Bnsz6p4tdQh1e74\n 171 \N 189.186.44.120 941710d9-6809-477b-8b8b-297aad50b454 2019-07-01 22:41:30.954594 10365 278 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.719E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 719.0 189.186.44.120 eea8263e-4712-4d5d-8a2b-306f2857798f 2019-07-01 22:41:34.306172 10366 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-01 20:16:33.688517000 Z\n- &1 2019-07-01 22:33:45.030306000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-01 23:11:59.748131826 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\nsign_in_count:\n- 313\n- 314\n 628 \N 189.186.44.120 a4b44202-ae64-4e7c-93a6-e2d29969c18d 2019-07-01 23:11:59.766799 10367 4 User \N \N 4 User \N update ---\nunique_session_id:\n- n6Te_Xpf-1ojMwAUD7vY\n- 7hWwz9mTiHxLvZa7ABxB\n 629 \N 189.186.44.120 a4b44202-ae64-4e7c-93a6-e2d29969c18d 2019-07-01 23:11:59.782077 10368 804 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 277\namount: !ruby/object:BigDecimal 18:0.5681E3\ntax: !ruby/object:BigDecimal 18:0.909E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.659E3\nstatus: 0\ndate_sale: 2019-07-01\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-454\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 05002354-f44d-47b5-afa7-e8d1208bff00 2019-07-01 23:22:53.383737 10369 671 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.44.120 05002354-f44d-47b5-afa7-e8d1208bff00 2019-07-01 23:22:53.428818 10370 804 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 ef0cc16c-f1f4-4552-977f-a4e72b2714dd 2019-07-01 23:23:43.873263 10371 1094 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 277\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.659E3\nmove_type: '1'\nsale_id: 804\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-454\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.41E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-454 189.186.44.120 ef0cc16c-f1f4-4552-977f-a4e72b2714dd 2019-07-01 23:23:43.915071 10372 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-06-25 23:14:37.024758000 Z\n- &1 2019-07-01 22:41:30.920111000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-01 23:27:27.917432697 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093611\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\nsign_in_count:\n- 85\n- 86\n 172 \N 189.186.44.120 f214c337-a6d0-449b-ad49-c7acb12c17a3 2019-07-01 23:27:27.924955 10373 10 User \N \N 10 User \N update ---\nunique_session_id:\n- 5-7B1Bnsz6p4tdQh1e74\n- QhJbmyqKozdLas5at_GC\n 173 \N 189.186.44.120 f214c337-a6d0-449b-ad49-c7acb12c17a3 2019-07-01 23:27:27.941691 10378 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-01 22:41:30.920111000 Z\n- &1 2019-07-01 23:27:27.917432000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-02 00:05:14.563444114 Z\nsign_in_count:\n- 86\n- 87\n 174 \N 189.186.44.120 2af4ba55-1fcb-46e8-a968-421ddee1e66f 2019-07-02 00:05:14.570799 10379 10 User \N \N 10 User \N update ---\nunique_session_id:\n- QhJbmyqKozdLas5at_GC\n- ySySXJi5AdG-8tYxEjxG\n 175 \N 189.186.44.120 2af4ba55-1fcb-46e8-a968-421ddee1e66f 2019-07-02 00:05:14.587503 10380 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-01 17:07:17.713829000 Z\n- &1 2019-07-01 23:27:50.670616000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-02 00:49:05.800051084 Z\nsign_in_count:\n- 467\n- 468\n 936 \N 189.186.44.120 4c7dbd2d-bb22-401b-b925-9be4074a09dd 2019-07-02 00:49:05.806456 10381 3 User \N \N 3 User \N update ---\nunique_session_id:\n- oZXxJkxCfJu9yU2QuvEu\n- xzKxdh4sXzrb9kUznczX\n 937 \N 189.186.44.120 4c7dbd2d-bb22-401b-b925-9be4074a09dd 2019-07-02 00:49:05.820726 10382 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-06-30 20:49:12.508427000 Z\n- &1 2019-07-01 22:13:04.538737000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-02 00:49:56.498742405 Z\nsign_in_count:\n- 240\n- 241\n 482 \N 189.186.44.120 d9abbb9c-45ea-44d4-b82c-15f65f478995 2019-07-02 00:49:56.505012 10383 12 User \N \N 12 User \N update ---\nunique_session_id:\n- AzJrcWP9PYcWynuTfNg3\n- VDtxtoC-9ee8HzeyCbDS\n 483 \N 189.186.44.120 d9abbb9c-45ea-44d4-b82c-15f65f478995 2019-07-02 00:49:56.519569 10384 805 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 277\namount: !ruby/object:BigDecimal 18:0.57672E3\ntax: !ruby/object:BigDecimal 18:0.9228E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-07-01\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-455\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 199fa0a4-5335-4d45-b62f-639d31321de2 2019-07-02 01:28:42.440304 10385 80 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.44.120 199fa0a4-5335-4d45-b62f-639d31321de2 2019-07-02 01:28:42.473709 10386 805 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 1a10d30a-4c4d-4897-bbd0-c9e84406ed75 2019-07-02 01:28:55.40122 10387 1095 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 277\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.669E3\nmove_type: '1'\nsale_id: 805\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-455\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.331E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-455 189.186.44.120 1a10d30a-4c4d-4897-bbd0-c9e84406ed75 2019-07-02 01:28:55.422732 10388 806 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 277\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-07-01\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-456\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 6ccadcff-355b-4893-bab9-fe86c53a43b5 2019-07-02 01:38:51.626081 10389 530 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.44.120 6ccadcff-355b-4893-bab9-fe86c53a43b5 2019-07-02 01:38:51.675939 10390 806 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 99e93472-e121-487a-a5ae-b0637f441118 2019-07-02 01:39:21.624837 10391 1096 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 277\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 806\ncardnumber: 6297\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-456\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-456 189.186.44.120 99e93472-e121-487a-a5ae-b0637f441118 2019-07-02 01:39:21.650147 10392 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-01 23:27:50.670616000 Z\n- &1 2019-07-02 00:49:05.800051000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-02 01:41:09.964815024 Z\nsign_in_count:\n- 468\n- 469\n 938 \N 189.186.44.120 30edfba5-df12-44d1-980b-9194a65b2848 2019-07-02 01:41:09.973879 10393 3 User \N \N 3 User \N update ---\nunique_session_id:\n- xzKxdh4sXzrb9kUznczX\n- RSLzgTqBZavs6_wakSHP\n 939 \N 189.186.44.120 30edfba5-df12-44d1-980b-9194a65b2848 2019-07-02 01:41:09.992154 10394 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-01 22:13:04.538737000 Z\n- &1 2019-07-02 00:49:56.498742000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-02 01:41:28.489454842 Z\nsign_in_count:\n- 241\n- 242\n 484 \N 189.186.44.120 512960cb-3a7a-4292-98ae-cd7b8d666530 2019-07-02 01:41:28.499626 10395 12 User \N \N 12 User \N update ---\nunique_session_id:\n- VDtxtoC-9ee8HzeyCbDS\n- xs2AipeRkVjk3s4ya6i3\n 485 \N 189.186.44.120 512960cb-3a7a-4292-98ae-cd7b8d666530 2019-07-02 01:41:28.521693 10396 275 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 277\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.4505E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.28E4\ncash_fund: !ruby/object:BigDecimal 18:0.1E4\nphysical_cash: !ruby/object:BigDecimal 18:0.38E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.44.120 c60850f4-d88a-4442-b87d-6b29a8af13d0 2019-07-02 01:56:30.854123 10397 277 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 c60850f4-d88a-4442-b87d-6b29a8af13d0 2019-07-02 01:56:30.870696 10398 276 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 278\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.719E3\nphysical_cash: !ruby/object:BigDecimal 18:0.719E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.44.120 1f157d6b-b567-4e92-a41d-b1874cc9a802 2019-07-02 02:00:37.4716 10399 278 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 1f157d6b-b567-4e92-a41d-b1874cc9a802 2019-07-02 02:00:37.488894 10400 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-01 23:11:59.748131000 Z\n- &1 2019-07-01 23:35:47.694521000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-02 04:11:16.078924304 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\nsign_in_count:\n- 315\n- 316\n 632 \N 189.186.41.174 99a6d12c-4c91-475a-82b9-7b643c4742c9 2019-07-02 04:11:16.090376 10401 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WxjyXzwiQo9zTyn9yiGw\n- XKnEfAYsQTNPp5sTd66r\n 633 \N 189.186.41.174 99a6d12c-4c91-475a-82b9-7b643c4742c9 2019-07-02 04:11:16.11116 10402 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-02 00:49:05.800051000 Z\n- &1 2019-07-02 01:41:09.964815000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-02 15:59:20.696661676 Z\nsign_in_count:\n- 469\n- 470\n 940 \N 189.186.44.120 eccef901-a287-46be-92cf-7195d1597afd 2019-07-02 15:59:20.728296 10404 279 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.719E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 719.0 189.186.44.120 a4b55c1d-ce5a-456e-9f26-d579a4f3daef 2019-07-02 15:59:34.602002 10405 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-06-29 23:58:38.916265000 Z\n- &1 2019-07-01 16:06:36.452981000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-02 16:29:32.286222791 Z\nsign_in_count:\n- 188\n- 189\n 381 \N 189.186.44.120 131b7549-b04e-4722-a485-47517ab8d978 2019-07-02 16:29:32.292259 10406 2 User \N \N 2 User \N update ---\nunique_session_id:\n- cwmcJYJztGGsUx9sEuJB\n- xKvrXDfpzV5Ln2JLFxZJ\n 382 \N 189.186.44.120 131b7549-b04e-4722-a485-47517ab8d978 2019-07-02 16:29:32.30605 10407 280 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1000.0 189.186.44.120 3b59b953-d776-4464-9f7a-2e393a11fa03 2019-07-02 16:33:13.04999 10408 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-01 23:35:47.694521000 Z\n- &1 2019-07-02 04:11:16.078924000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-02 20:45:08.160261068 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\nsign_in_count:\n- 316\n- 317\n 634 \N 189.186.41.174 76441b1f-2fb7-4bb2-8cba-44ac54a05e3b 2019-07-02 20:45:08.167294 10409 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XKnEfAYsQTNPp5sTd66r\n- 3sPhqYkQTJ7sAuA4wCCQ\n 635 \N 189.186.41.174 76441b1f-2fb7-4bb2-8cba-44ac54a05e3b 2019-07-02 20:45:08.18234 10410 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-02 04:11:16.078924000 Z\n- &1 2019-07-02 20:45:08.160261000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-02 21:18:01.776718292 Z\nsign_in_count:\n- 317\n- 318\n 636 \N 189.186.41.174 320c55ec-ac0f-48fb-b5ae-17abfd6422de 2019-07-02 21:18:01.783419 10411 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3sPhqYkQTJ7sAuA4wCCQ\n- aZP1Gn6xsDsdZpR6VHFn\n 637 \N 189.186.41.174 320c55ec-ac0f-48fb-b5ae-17abfd6422de 2019-07-02 21:18:01.797739 10412 807 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 279\namount: !ruby/object:BigDecimal 18:0.135427E4\ntax: !ruby/object:BigDecimal 18:0.14473E3\ndiscount: !ruby/object:BigDecimal 18:0.4497E3\ntotal: !ruby/object:BigDecimal 18:0.10493E4\nstatus: 0\ndate_sale: 2019-07-02\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-349\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 143cafb8-204b-4bc4-947c-793221d5f219 2019-07-02 22:28:42.38832 10413 356 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.44.120 143cafb8-204b-4bc4-947c-793221d5f219 2019-07-02 22:28:42.419269 10414 807 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 b48da73a-c2b0-4a42-b25d-37b14e4827e6 2019-07-02 22:28:58.021727 10415 1097 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 279\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.10493E4\nmove_type: '1'\nsale_id: 807\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-349\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAM\n 1 movimiento de efectivo por venta con folio PV2-V-349 189.186.44.120 b48da73a-c2b0-4a42-b25d-37b14e4827e6 2019-07-02 22:28:58.0507 10416 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-06-11 02:03:44.058168000 Z\n- &1 2019-06-20 21:27:04.083810000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-02 22:33:42.385359947 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097081\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096769\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\nsign_in_count:\n- 62\n- 63\n 126 \N 189.186.44.120 024f582e-b4eb-484b-9111-80c925532f2b 2019-07-02 22:33:42.394615 10417 9 User \N \N 9 User \N update ---\nunique_session_id:\n- npQJQC2pCi2vYuqMe3s-\n- kL74yrsMy4UhZ4mxrGhV\n 127 \N 189.186.44.120 024f582e-b4eb-484b-9111-80c925532f2b 2019-07-02 22:33:42.415748 10418 138 Customer \N \N 9 User \N create ---\nnick_name: ROCIO RUEDA BANORTE\nphone: ''\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.5E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ROCIO RUEDA BANORTE fue registrado. 189.186.44.120 ba02759d-0733-4e4b-9d73-2e3afe2b1b2c 2019-07-02 22:34:17.119807 10419 808 Sale \N \N 9 User \N create ---\ncustomer_id: 138\nuser_id: 9\nopen_cash_register_id: 280\namount: !ruby/object:BigDecimal 18:0.354986E4\ntax: !ruby/object:BigDecimal 18:0.24814E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3798E4\nstatus: 0\ndate_sale: 2019-07-02\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-457\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 a4d225cc-3bff-4011-97cc-3fb639a86562 2019-07-02 22:35:22.467994 10420 443 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.44.120 a4d225cc-3bff-4011-97cc-3fb639a86562 2019-07-02 22:35:22.508893 10421 48 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.44.120 a4d225cc-3bff-4011-97cc-3fb639a86562 2019-07-02 22:35:22.544805 10422 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-02 20:45:08.160261000 Z\n- &1 2019-07-02 21:18:01.776718000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-02 22:35:56.786059721 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\nsign_in_count:\n- 318\n- 319\n 638 \N 189.186.44.120 918e7623-87d5-496c-992c-c0da3db5b512 2019-07-02 22:35:56.793926 10423 4 User \N \N 4 User \N update ---\nunique_session_id:\n- aZP1Gn6xsDsdZpR6VHFn\n- 6hsKsJeyg6y3hffNHsSr\n 639 \N 189.186.44.120 918e7623-87d5-496c-992c-c0da3db5b512 2019-07-02 22:35:56.811569 10424 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-01 23:27:27.917432000 Z\n- &1 2019-07-02 00:05:14.563444000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-02 22:38:34.041423424 Z\nsign_in_count:\n- 87\n- 88\n 176 \N 189.186.44.120 a71ae2d3-a82b-476b-9b70-aeb466dd2da0 2019-07-02 22:38:34.049018 10425 10 User \N \N 10 User \N update ---\nunique_session_id:\n- ySySXJi5AdG-8tYxEjxG\n- phius9oWHofmHz1Z-4A5\n 177 \N 189.186.44.120 a71ae2d3-a82b-476b-9b70-aeb466dd2da0 2019-07-02 22:38:34.065126 10426 809 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 279\namount: !ruby/object:BigDecimal 18:0.349E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.349E3\nstatus: 0\ndate_sale: 2019-07-02\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-350\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 8a8e201e-5856-4752-8da9-c1a0d45670f4 2019-07-02 22:39:44.833302 10427 458 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.44.120 8a8e201e-5856-4752-8da9-c1a0d45670f4 2019-07-02 22:39:44.869908 10429 1098 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 279\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.349E3\nmove_type: '1'\nsale_id: 809\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-350\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SUEL\n 1 movimiento de efectivo por venta con folio PV2-V-350 189.186.44.120 fa5745ff-975c-4980-93d3-21b2a099e7aa 2019-07-02 22:40:24.308327 10430 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-02 21:18:01.776718000 Z\n- &1 2019-07-02 22:35:56.786059000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-02 22:41:07.444307997 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\nsign_in_count:\n- 319\n- 320\n 640 \N 189.186.44.120 c1cf8661-44b4-435d-a5d4-35930f694f0b 2019-07-02 22:41:07.450493 10431 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6hsKsJeyg6y3hffNHsSr\n- 7xs_Dtcxios6teUzJcSk\n 641 \N 189.186.44.120 c1cf8661-44b4-435d-a5d4-35930f694f0b 2019-07-02 22:41:07.465461 10432 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-02 00:05:14.563444000 Z\n- &1 2019-07-02 22:38:34.041423000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-02 22:42:18.831583997 Z\nsign_in_count:\n- 88\n- 89\n 178 \N 189.186.44.120 1067043e-857a-4937-9c18-a87612976d2f 2019-07-02 22:42:18.838606 10433 10 User \N \N 10 User \N update ---\nunique_session_id:\n- phius9oWHofmHz1Z-4A5\n- Ax4SpkrrxvztzoFJAR6R\n 179 \N 189.186.44.120 1067043e-857a-4937-9c18-a87612976d2f 2019-07-02 22:42:18.852478 10434 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-02 00:49:56.498742000 Z\n- &1 2019-07-02 01:41:28.489454000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-02 22:44:35.907700786 Z\nsign_in_count:\n- 242\n- 243\n 486 \N 189.186.44.120 16378d82-b3ce-4366-9b69-d765e83cc6b8 2019-07-02 22:44:35.913413 10435 12 User \N \N 12 User \N update ---\nunique_session_id:\n- xs2AipeRkVjk3s4ya6i3\n- Zq3e7KXyy5AbJxSzPJ6u\n 487 \N 189.186.44.120 16378d82-b3ce-4366-9b69-d765e83cc6b8 2019-07-02 22:44:35.928258 10436 810 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 280\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-07-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-458\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 f88fcf0f-4a52-4e12-afb1-3d2833c80f97 2019-07-02 22:56:53.096507 10437 640 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.44.120 f88fcf0f-4a52-4e12-afb1-3d2833c80f97 2019-07-02 22:56:53.132468 10438 810 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 95bfb4e7-3438-43ed-b302-921e31dbf1a2 2019-07-02 22:57:51.214883 10439 1099 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 280\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 810\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-458\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-458 189.186.44.120 95bfb4e7-3438-43ed-b302-921e31dbf1a2 2019-07-02 22:57:51.237869 10440 811 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 279\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-07-02\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-351\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 32ac4a64-09d1-4cbe-a968-4f8a3cc3f834 2019-07-03 00:04:14.871389 10441 672 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.44.120 32ac4a64-09d1-4cbe-a968-4f8a3cc3f834 2019-07-03 00:04:14.912933 10442 811 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 66b2fc4b-ce67-48c5-86b9-afc0740bf05b 2019-07-03 00:05:02.36457 10443 1100 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 279\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.869E3\nmove_type: '1'\nsale_id: 811\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-351\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.131E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-351 189.186.44.120 66b2fc4b-ce67-48c5-86b9-afc0740bf05b 2019-07-03 00:05:02.388154 10444 812 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 279\namount: !ruby/object:BigDecimal 18:0.86638E3\ntax: !ruby/object:BigDecimal 18:0.12262E3\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.889E3\nstatus: 0\ndate_sale: 2019-07-02\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-352\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 5d629360-d4c6-4841-a49f-e18bcde10a37 2019-07-03 00:44:01.493589 10445 293 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.44.120 5d629360-d4c6-4841-a49f-e18bcde10a37 2019-07-03 00:44:01.538537 10446 812 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 f0078865-ccf7-4216-96d5-4c9736cf95cf 2019-07-03 00:44:11.368539 10447 1101 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 279\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.889E3\nmove_type: '1'\nsale_id: 812\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-352\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.111E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-352 189.186.44.120 f0078865-ccf7-4216-96d5-4c9736cf95cf 2019-07-03 00:44:11.402174 10448 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-02 22:35:56.786059000 Z\n- &1 2019-07-02 22:41:07.444307000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-03 01:52:30.826773172 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\nsign_in_count:\n- 320\n- 321\n 642 \N 189.186.41.174 5c821e42-de1c-4805-af23-7be6b1bbe8e3 2019-07-03 01:52:30.855567 10449 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7xs_Dtcxios6teUzJcSk\n- MUsTyue5bzkzxxsj21Gs\n 643 \N 189.186.41.174 5c821e42-de1c-4805-af23-7be6b1bbe8e3 2019-07-03 01:52:30.886639 10450 277 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 280\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.1199E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 16\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.999E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2199E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.44.120 e93ebe80-2cde-4dc2-af9c-d8196ed173e9 2019-07-03 01:58:06.399095 10452 278 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 279\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.31563E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.18E4\ncash_fund: !ruby/object:BigDecimal 18:0.677E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2477E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.44.120 a1d57690-6438-4b60-81ae-c4aaf16c3641 2019-07-03 02:03:33.739539 10453 279 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 a1d57690-6438-4b60-81ae-c4aaf16c3641 2019-07-03 02:03:33.759029 10454 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-02 22:38:34.041423000 Z\n- &1 2019-07-02 22:42:18.831583000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-03 02:09:45.528761932 Z\nsign_in_count:\n- 89\n- 90\n 180 \N 189.186.44.120 fc8b8b45-41da-460f-9bf4-4f49c07e00ab 2019-07-03 02:09:45.537066 10455 10 User \N \N 10 User \N update ---\nunique_session_id:\n- Ax4SpkrrxvztzoFJAR6R\n- kdf82XnqPeC-zznnxoQy\n 181 \N 189.186.44.120 fc8b8b45-41da-460f-9bf4-4f49c07e00ab 2019-07-03 02:09:45.553879 10456 281 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.677E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 677.0 189.186.44.120 d3bee7bb-256a-40fa-b0c6-ea4418773b9d 2019-07-03 02:10:31.867514 10457 813 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 281\namount: !ruby/object:BigDecimal 18:0.121293E4\ntax: !ruby/object:BigDecimal 18:0.19407E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1407E4\nstatus: 0\ndate_sale: 2019-07-02\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-353\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 bfd1eb5f-a6a3-46d3-9c50-0b496b53c57d 2019-07-03 02:11:55.400176 10458 597 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.44.120 bfd1eb5f-a6a3-46d3-9c50-0b496b53c57d 2019-07-03 02:11:55.447052 10459 319 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.44.120 bfd1eb5f-a6a3-46d3-9c50-0b496b53c57d 2019-07-03 02:11:55.485379 10460 317 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.44.120 bfd1eb5f-a6a3-46d3-9c50-0b496b53c57d 2019-07-03 02:11:55.518247 10461 813 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 31d08f28-2aae-49f9-9c76-226acfa2de57 2019-07-03 02:12:50.398115 10462 1102 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 281\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1407E4\nmove_type: '1'\nsale_id: 813\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-353\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1407E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-353 189.186.44.120 31d08f28-2aae-49f9-9c76-226acfa2de57 2019-07-03 02:12:50.429571 10463 279 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 281\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.1407E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.14E4\ncash_fund: !ruby/object:BigDecimal 18:0.684E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2084E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.44.120 52fe1328-3f17-4daa-9091-161590cd2122 2019-07-03 02:14:32.069027 10464 281 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 52fe1328-3f17-4daa-9091-161590cd2122 2019-07-03 02:14:32.081856 10465 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-02 01:41:09.964815000 Z\n- &1 2019-07-02 15:59:20.696661000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-03 16:01:05.245428870 Z\nsign_in_count:\n- 470\n- 471\n 942 \N 189.186.44.120 3206e9b0-b2d3-4a69-b49a-065580cf469f 2019-07-03 16:01:05.280601 10466 3 User \N \N 3 User \N update ---\nunique_session_id:\n- yhx1ywtSUdnj7ma5Zqjy\n- CWLEt3FvCXiCSFtY8hNX\n 943 \N 189.186.44.120 3206e9b0-b2d3-4a69-b49a-065580cf469f 2019-07-03 16:01:05.304623 10467 282 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.684E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 684.0 189.186.44.120 fac451fa-034f-456c-9c77-734a75ad4bfa 2019-07-03 16:05:35.880364 10468 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-01 16:06:36.452981000 Z\n- &1 2019-07-02 16:29:32.286222000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-03 16:10:41.841222315 Z\nsign_in_count:\n- 189\n- 190\n 383 \N 189.186.44.120 50ee8a54-ffbd-4dd5-b8ad-9f0c6dd91798 2019-07-03 16:10:41.84724 10469 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xKvrXDfpzV5Ln2JLFxZJ\n- fu9ptZ4ywdu3ygyb2zoN\n 384 \N 189.186.44.120 50ee8a54-ffbd-4dd5-b8ad-9f0c6dd91798 2019-07-03 16:10:41.861767 10470 814 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 282\namount: !ruby/object:BigDecimal 18:0.59397E3\ntax: !ruby/object:BigDecimal 18:0.9504E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.68901E3\nstatus: 0\ndate_sale: 2019-07-03\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-354\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 7097d71e-791e-4e7c-b9a0-13ce2c1c48db 2019-07-03 18:00:42.830112 10471 395 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.44.120 7097d71e-791e-4e7c-b9a0-13ce2c1c48db 2019-07-03 18:00:42.864919 10472 814 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 6299158c-03fd-4a85-808e-ed1b863652c8 2019-07-03 18:01:21.460233 10473 1103 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 282\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.689E3\nmove_type: '1'\nsale_id: 814\ncardnumber: 2895\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-354\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-354 189.186.44.120 6299158c-03fd-4a85-808e-ed1b863652c8 2019-07-03 18:01:21.488772 10474 1103 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 282\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.689E3\nmove_type: '1'\nsale_id: 814\ncardnumber: 2895\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-354\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.44.120 48e83f70-e117-43e9-8d28-b1a29e767042 2019-07-03 18:01:27.598041 10499 1107 CashRegistersMove \N \N 3 User \N update ---\nopen_cash_register_id:\n- 222\n- 282\n 2 movimiento de efectivo por venta con folio PV1-V-401 189.186.44.120 0a0daae0-715f-45c5-80b1-65818f26a40d 2019-07-03 21:13:09.615448 10569 3 User \N \N 3 User \N update ---\nunique_session_id:\n- L9hrqXK1rc195_YSS8Yg\n- S5mtMp_QDU8tjmhsEn5L\n 951 \N 189.186.44.120 f72659f1-a0c2-455b-baef-b61abae6a0a2 2019-07-05 16:08:19.89767 10475 1104 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 282\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.68901E3\nmove_type: '1'\nsale_id: 814\ncardnumber: 2895\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-354\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-354 189.186.44.120 9da94d74-1bb2-4dad-bc49-978f2d982bdf 2019-07-03 18:01:40.874065 10476 283 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.999E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 999.0 189.186.44.120 2bdfc68e-35e9-4541-9ffd-f205cac6bb87 2019-07-03 19:22:07.848914 10477 815 Sale \N \N 3 User \N create ---\ncustomer_id: 122\nuser_id: 3\nopen_cash_register_id: 282\namount: !ruby/object:BigDecimal 18:0.83952E3\ntax: !ruby/object:BigDecimal 18:0.7848E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.918E3\nstatus: 0\ndate_sale: 2019-07-03\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-355\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 5de71807-e162-46c2-91f1-123db13e79b1 2019-07-03 21:06:51.949985 10478 595 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.44.120 5de71807-e162-46c2-91f1-123db13e79b1 2019-07-03 21:06:51.975891 10479 458 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.44.120 5de71807-e162-46c2-91f1-123db13e79b1 2019-07-03 21:06:51.999853 10480 815 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 6d0a3a57-4c33-45ed-ae51-191dc9275238 2019-07-03 21:07:37.554159 10481 1105 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 282\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 815\ncardnumber: 5548\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-355\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-355 189.186.44.120 6d0a3a57-4c33-45ed-ae51-191dc9275238 2019-07-03 21:07:37.575519 10482 815 Sale \N \N 3 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-355 cancelada. 189.186.44.120 f8668df3-3359-4c87-aace-e89fa1ceeccf 2019-07-03 21:07:49.422482 10483 1105 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 282\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 815\ncardnumber: 5548\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-355\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.44.120 f8668df3-3359-4c87-aace-e89fa1ceeccf 2019-07-03 21:07:49.444055 10484 458 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.44.120 f8668df3-3359-4c87-aace-e89fa1ceeccf 2019-07-03 21:07:49.469693 10485 595 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.44.120 f8668df3-3359-4c87-aace-e89fa1ceeccf 2019-07-03 21:07:49.491788 10486 816 Sale \N \N 3 User \N create ---\ncustomer_id: 122\nuser_id: 3\nopen_cash_register_id: 282\namount: !ruby/object:BigDecimal 18:0.83952E3\ntax: !ruby/object:BigDecimal 18:0.7848E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.918E3\nstatus: 0\ndate_sale: 2019-07-03\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-356\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 4c171f76-2f66-49ed-bbb3-91e1cbc14a9a 2019-07-03 21:09:52.032128 10487 595 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.44.120 4c171f76-2f66-49ed-bbb3-91e1cbc14a9a 2019-07-03 21:09:52.064999 10488 458 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.44.120 4c171f76-2f66-49ed-bbb3-91e1cbc14a9a 2019-07-03 21:09:52.089648 10489 816 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 79b43920-0b52-4f61-9b5c-efaf7b1f0b15 2019-07-03 21:10:06.642747 10490 1106 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 282\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 816\ncardnumber: 5548\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-356\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-356 189.186.44.120 79b43920-0b52-4f61-9b5c-efaf7b1f0b15 2019-07-03 21:10:06.667218 10491 816 Sale \N \N 3 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-356 cancelada. 189.186.44.120 158d13fa-c324-4a14-80a5-f34420fb370a 2019-07-03 21:11:09.492606 10492 1106 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 282\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 816\ncardnumber: 5548\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-356\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.44.120 158d13fa-c324-4a14-80a5-f34420fb370a 2019-07-03 21:11:09.520561 10493 458 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.44.120 158d13fa-c324-4a14-80a5-f34420fb370a 2019-07-03 21:11:09.55094 10494 595 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 189.186.44.120 158d13fa-c324-4a14-80a5-f34420fb370a 2019-07-03 21:11:09.574496 10495 817 Sale \N \N 3 User \N create ---\ncustomer_id: 122\nuser_id: 3\nopen_cash_register_id: 282\namount: !ruby/object:BigDecimal 18:0.83952E3\ntax: !ruby/object:BigDecimal 18:0.7848E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.918E3\nstatus: 0\ndate_sale: 2019-07-03\nsaletype: 0\nseller_id: 9\nsale_code: PV2-V-357\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 a7e4c304-1d1c-4500-81c8-1957eee1f607 2019-07-03 21:11:46.306472 10496 595 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 189.186.44.120 a7e4c304-1d1c-4500-81c8-1957eee1f607 2019-07-03 21:11:46.337995 10497 458 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.44.120 a7e4c304-1d1c-4500-81c8-1957eee1f607 2019-07-03 21:11:46.367928 10498 1107 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 222\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 712\ncardnumber: 5548\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.44.120 0a0daae0-715f-45c5-80b1-65818f26a40d 2019-07-03 21:13:09.578344 10500 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-02 22:41:07.444307000 Z\n- &1 2019-07-03 01:52:30.826773000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-03 22:01:14.988794679 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946274\n mask_addr: 4294967295\nsign_in_count:\n- 321\n- 322\n 644 \N 200.68.182.34 078e62ac-3c7a-4f02-88cd-c2edafc6bb83 2019-07-03 22:01:14.997727 10501 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MUsTyue5bzkzxxsj21Gs\n- HziB1W1G5K188zQsnaR4\n 645 \N 200.68.182.34 078e62ac-3c7a-4f02-88cd-c2edafc6bb83 2019-07-03 22:01:15.026622 10502 1108 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 283\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 798\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.17E4\nchange: !ruby/object:BigDecimal 18:0.17E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-449 189.186.44.120 879935b7-9a49-4176-a087-1d110f3a4b8c 2019-07-04 00:13:50.10603 10503 1108 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 283\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 798\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.17E4\nchange: !ruby/object:BigDecimal 18:0.17E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.44.120 3327daff-7719-407f-b9d4-166516ad0869 2019-07-04 00:13:53.463887 10504 1109 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 283\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1698E4\nmove_type: '1'\nsale_id: 798\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.17E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-449 189.186.44.120 2bd6e74d-be07-4b29-8471-819ab68f7141 2019-07-04 00:14:15.359642 10505 798 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.44.120 08d57b67-f877-4627-ae2e-57849668693d 2019-07-04 00:14:26.817259 10506 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-02 15:59:20.696661000 Z\n- &1 2019-07-03 16:01:05.245428000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-04 01:08:14.502644674 Z\nsign_in_count:\n- 471\n- 472\n 944 \N 189.186.44.120 7ee9e151-bd91-4f72-abb3-836ffb56f550 2019-07-04 01:08:14.509337 10507 3 User \N \N 3 User \N update ---\nunique_session_id:\n- CWLEt3FvCXiCSFtY8hNX\n- Fy-zY_eyQAzFNvhEyRCW\n 945 \N 189.186.44.120 7ee9e151-bd91-4f72-abb3-836ffb56f550 2019-07-04 01:08:14.529178 10508 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-02 22:42:18.831583000 Z\n- &1 2019-07-03 02:09:45.528761000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-04 01:12:42.894615316 Z\nsign_in_count:\n- 90\n- 91\n 182 \N 189.186.44.120 da0b99a5-5f68-4555-bc51-0971b63e1d1c 2019-07-04 01:12:42.901193 10509 10 User \N \N 10 User \N update ---\nunique_session_id:\n- kdf82XnqPeC-zznnxoQy\n- JxfecFR4sv_JBxSsDYZ2\n 183 \N 189.186.44.120 da0b99a5-5f68-4555-bc51-0971b63e1d1c 2019-07-04 01:12:42.916308 10510 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-02 01:41:28.489454000 Z\n- &1 2019-07-02 22:44:35.907700000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-04 01:43:43.264758443 Z\nsign_in_count:\n- 243\n- 244\n 488 \N 189.186.44.120 6222e06a-aaee-45eb-894c-cfc7d9c4423d 2019-07-04 01:43:43.270557 10511 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Zq3e7KXyy5AbJxSzPJ6u\n- j8UxDfMvK8vwGsLMNgfy\n 489 \N 189.186.44.120 6222e06a-aaee-45eb-894c-cfc7d9c4423d 2019-07-04 01:43:43.286372 10512 280 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 283\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.1698E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.17E4\ncash_fund: !ruby/object:BigDecimal 18:0.997E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2697E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.44.120 72cfc6ac-1da2-4f48-b987-a0b6ca0b4332 2019-07-04 01:51:50.223711 10513 283 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 72cfc6ac-1da2-4f48-b987-a0b6ca0b4332 2019-07-04 01:51:50.237504 10514 281 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 282\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.88901E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.684E3\nphysical_cash: !ruby/object:BigDecimal 18:0.684E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.44.120 d0ef4ce9-b112-4410-9a20-53032d10e6ea 2019-07-04 01:58:24.560171 10515 282 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 d0ef4ce9-b112-4410-9a20-53032d10e6ea 2019-07-04 01:58:24.575362 10516 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-03 01:52:30.826773000 Z\n- &1 2019-07-03 22:01:14.988794000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-04 06:02:47.860420133 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946274\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\nsign_in_count:\n- 322\n- 323\n 646 \N 189.186.41.174 4e688b5c-5a35-478d-878d-bf730eac4e56 2019-07-04 06:02:47.87167 10517 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HziB1W1G5K188zQsnaR4\n- gZZALxxQPawuHznLWcv-\n 647 \N 189.186.41.174 4e688b5c-5a35-478d-878d-bf730eac4e56 2019-07-04 06:02:47.891085 10518 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-02 16:29:32.286222000 Z\n- &1 2019-07-03 16:10:41.841222000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-04 15:56:34.159912777 Z\nsign_in_count:\n- 190\n- 191\n 385 \N 189.186.44.120 a48ce3a2-ee0e-4901-a383-33455a1c8a6b 2019-07-04 15:56:34.195497 10519 2 User \N \N 2 User \N update ---\nunique_session_id:\n- fu9ptZ4ywdu3ygyb2zoN\n- 4EmBZrhmt7Mn267MshZN\n 386 \N 189.186.44.120 a48ce3a2-ee0e-4901-a383-33455a1c8a6b 2019-07-04 15:56:34.220173 10520 284 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.997E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 997.0 189.186.44.120 e2110d79-e675-4671-81a7-0226d01fe70f 2019-07-04 16:00:18.666967 10521 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-03 16:01:05.245428000 Z\n- &1 2019-07-04 01:08:14.502644000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-04 16:18:42.594891014 Z\nsign_in_count:\n- 472\n- 473\n 946 \N 189.186.44.120 5438660e-8747-44e6-b0b0-5b5e3a5c605c 2019-07-04 16:18:42.600825 10522 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Fy-zY_eyQAzFNvhEyRCW\n- HZVaQm3yT5m889VsBvtc\n 947 \N 189.186.44.120 5438660e-8747-44e6-b0b0-5b5e3a5c605c 2019-07-04 16:18:42.615172 10639 289 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 92a70ebb-7cc9-4c21-b64f-1d4ff2c67a11 2019-07-07 01:55:01.078179 10523 285 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.684E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 684.0 189.186.44.120 963d1098-474e-4afb-b53a-4c2ef9a736f9 2019-07-04 16:42:33.452419 10524 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-03 22:01:14.988794000 Z\n- &1 2019-07-04 06:02:47.860420000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-04 16:50:40.069939630 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938094\n mask_addr: 4294967295\nsign_in_count:\n- 323\n- 324\n 648 \N 200.68.150.46 bcfde019-b602-4666-b756-645d3244e7bd 2019-07-04 16:50:40.077896 10525 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gZZALxxQPawuHznLWcv-\n- HZ85CYzrzR7MbPwYFirG\n 649 \N 200.68.150.46 bcfde019-b602-4666-b756-645d3244e7bd 2019-07-04 16:50:40.095364 10526 818 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 284\namount: !ruby/object:BigDecimal 18:0.90431E3\ntax: !ruby/object:BigDecimal 18:0.14469E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1049E4\nstatus: 0\ndate_sale: 2019-07-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-459\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 f4aa67d0-5907-4ecd-b832-b33a03fbf67f 2019-07-04 17:31:54.491506 10527 183 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.44.120 f4aa67d0-5907-4ecd-b832-b33a03fbf67f 2019-07-04 17:31:54.520237 10528 818 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 6d62cc5c-80d8-4e39-aa2a-ef7a9beb5c6c 2019-07-04 17:32:04.082307 10529 1110 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 284\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1049E4\nmove_type: '1'\nsale_id: 818\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-459\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1049E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-459 189.186.44.120 6d62cc5c-80d8-4e39-aa2a-ef7a9beb5c6c 2019-07-04 17:32:04.118647 10530 139 Customer \N \N 2 User \N create ---\nnick_name: ROCIO GROSSO\nphone: "(667) 324-2449"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ROCIO GROSSO fue registrado. 189.186.44.120 9e326d1e-16fc-4b9c-ac17-92674342213f 2019-07-04 17:40:51.257174 10531 819 Sale \N \N 2 User \N create ---\ncustomer_id: 139\nuser_id: 2\nopen_cash_register_id: 284\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-07-04\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-460\nexpiration_date: 2019-08-08\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 dbf77f0d-cf59-4baa-861b-d4e34d1714aa 2019-07-04 17:41:21.310374 10532 646 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.44.120 dbf77f0d-cf59-4baa-861b-d4e34d1714aa 2019-07-04 17:41:21.34358 10533 1111 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 284\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 819\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-460\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-460 189.186.44.120 6c03b90e-1fd5-4d92-b4c1-ab0a484a345d 2019-07-04 17:41:27.730751 10534 819 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.44.120 afbad90c-171b-4430-b1b6-b78b3aefdb04 2019-07-04 17:41:31.470371 10535 820 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 284\namount: !ruby/object:BigDecimal 18:0.134021E4\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1478E4\nstatus: 0\ndate_sale: 2019-07-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-461\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 78160c0e-48c2-47c1-b4df-3ef5146f0457 2019-07-04 19:50:27.661773 10536 185 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.44.120 78160c0e-48c2-47c1-b4df-3ef5146f0457 2019-07-04 19:50:27.696916 10537 541 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.44.120 78160c0e-48c2-47c1-b4df-3ef5146f0457 2019-07-04 19:50:27.723478 10538 820 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 920c75d0-832e-46b2-a9aa-8ae23df9ebc8 2019-07-04 19:52:41.582321 10539 1112 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 284\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1478E4\nmove_type: '1'\nsale_id: 820\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-461\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1478E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-461 189.186.44.120 920c75d0-832e-46b2-a9aa-8ae23df9ebc8 2019-07-04 19:52:41.602472 10540 118 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 285\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: ADELANTO YARETZI\nexpense_date: 2019-07-04\nexpense_code: PV2-E-19\n 1 Egreso por 50.0 registrado 189.186.44.120 2d39c405-486f-4e9a-851c-10dd401aaa06 2019-07-04 21:40:34.036482 10541 1113 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 285\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 118\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.44.120 2d39c405-486f-4e9a-851c-10dd401aaa06 2019-07-04 21:40:34.063371 10542 119 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 284\nquantity: !ruby/object:BigDecimal 18:0.8E3\nstatus: 1\nobservations: PRESTAMO ROCIO\nexpense_date: 2019-07-04\nexpense_code: PV1-E-100\n 1 Egreso por 800.0 registrado 189.186.44.120 2e56afc2-0b66-42b6-abaa-2ffddb34c1a3 2019-07-04 21:55:26.772412 10543 1114 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 284\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 119\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.44.120 2e56afc2-0b66-42b6-abaa-2ffddb34c1a3 2019-07-04 21:55:26.792839 10668 827 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 7e162564-d707-4276-8724-30870fde6031 2019-07-08 17:25:48.723681 10544 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-04 06:02:47.860420000 Z\n- &1 2019-07-04 16:50:40.069939000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-04 22:51:15.324951625 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938094\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938094\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\nsign_in_count:\n- 324\n- 325\n 650 \N 189.186.41.174 7568223b-a3d8-4791-ae72-ce63001f58b8 2019-07-04 22:51:15.33278 10545 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HZ85CYzrzR7MbPwYFirG\n- 1QJUsPj5z8XdJAtCfyZS\n 651 \N 189.186.41.174 7568223b-a3d8-4791-ae72-ce63001f58b8 2019-07-04 22:51:15.349741 10546 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-04 01:08:14.502644000 Z\n- &1 2019-07-04 16:18:42.594891000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-04 23:00:24.341998550 Z\nsign_in_count:\n- 473\n- 474\n 948 \N 189.186.44.120 f4bdc52a-925d-4351-8150-088cdcd90a4e 2019-07-04 23:00:24.347722 10547 3 User \N \N 3 User \N update ---\nunique_session_id:\n- HZVaQm3yT5m889VsBvtc\n- L9hrqXK1rc195_YSS8Yg\n 949 \N 189.186.44.120 f4bdc52a-925d-4351-8150-088cdcd90a4e 2019-07-04 23:00:24.360552 10548 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-02 22:44:35.907700000 Z\n- &1 2019-07-04 01:43:43.264758000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-05 00:32:22.962056407 Z\nsign_in_count:\n- 244\n- 245\n 490 \N 189.186.44.120 c074d840-a7fd-4bd8-967e-a8c66af6c58b 2019-07-05 00:32:22.968798 10549 12 User \N \N 12 User \N update ---\nunique_session_id:\n- j8UxDfMvK8vwGsLMNgfy\n- 7zyYu9Vp7bJhJoxUPv4s\n 491 \N 189.186.44.120 c074d840-a7fd-4bd8-967e-a8c66af6c58b 2019-07-05 00:32:22.986457 10550 821 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 284\namount: !ruby/object:BigDecimal 18:0.155086E4\ntax: !ruby/object:BigDecimal 18:0.24814E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2019-07-04\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-462\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 fb50b5c1-4a41-4749-9d88-f7c97d642ce5 2019-07-05 00:32:55.020811 10551 44 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.44.120 fb50b5c1-4a41-4749-9d88-f7c97d642ce5 2019-07-05 00:32:55.061321 10552 821 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 01d1a5a0-6f88-43af-9f8d-74904a26fc16 2019-07-05 00:34:37.46715 10553 1115 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 284\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 821\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-462\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: UNIVALE\n 1 movimiento de efectivo por venta con folio PV1-V-462 189.186.44.120 01d1a5a0-6f88-43af-9f8d-74904a26fc16 2019-07-05 00:34:37.492912 10554 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-03 02:09:45.528761000 Z\n- &1 2019-07-04 01:12:42.894615000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-05 01:54:41.239373868 Z\nsign_in_count:\n- 91\n- 92\n 184 \N 189.186.44.120 ce990e39-cc90-4a78-8b00-5e6e03088eff 2019-07-05 01:54:41.246506 10555 10 User \N \N 10 User \N update ---\nunique_session_id:\n- JxfecFR4sv_JBxSsDYZ2\n- D3B18sg9xJa2Z2j8g36W\n 185 \N 189.186.44.120 ce990e39-cc90-4a78-8b00-5e6e03088eff 2019-07-05 01:54:41.26408 10556 282 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 284\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.4826E4\namount_out: !ruby/object:BigDecimal 18:0.8E3\nreceived_by_id: 16\nreceived_cash: !ruby/object:BigDecimal 18:0.24E4\ncash_fund: !ruby/object:BigDecimal 18:0.824E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3224E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.44.120 938ea3b4-eb68-462b-aafa-fbde9a883af0 2019-07-05 01:58:01.752887 10557 284 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 938ea3b4-eb68-462b-aafa-fbde9a883af0 2019-07-05 01:58:01.767054 10558 283 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 285\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.684E3\nphysical_cash: !ruby/object:BigDecimal 18:0.684E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.44.120 102ac1d6-5bf8-4767-9aa8-807b6b724725 2019-07-05 02:09:21.306273 10559 285 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 102ac1d6-5bf8-4767-9aa8-807b6b724725 2019-07-05 02:09:21.320502 10560 286 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.684E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 684.0 189.186.44.120 74b26570-5f9f-4c4a-87b4-5d6f8a71ec33 2019-07-05 02:10:05.329835 10561 284 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 286\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.634E3\nphysical_cash: !ruby/object:BigDecimal 18:0.634E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.44.120 c7659f47-1a2f-48b9-8760-670153ff4f35 2019-07-05 02:10:51.706723 10562 286 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 c7659f47-1a2f-48b9-8760-670153ff4f35 2019-07-05 02:10:51.720468 10563 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-04 01:12:42.894615000 Z\n- &1 2019-07-05 01:54:41.239373000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-05 02:27:45.746111193 Z\nsign_in_count:\n- 92\n- 93\n 186 \N 189.186.44.120 3bd284f9-a51a-46a5-abd4-ff00b81e5249 2019-07-05 02:27:45.752348 10564 10 User \N \N 10 User \N update ---\nunique_session_id:\n- D3B18sg9xJa2Z2j8g36W\n- B59RcfyJGzgrSoM8QSzL\n 187 \N 189.186.44.120 3bd284f9-a51a-46a5-abd4-ff00b81e5249 2019-07-05 02:27:45.766946 10565 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-03 16:10:41.841222000 Z\n- &1 2019-07-04 15:56:34.159912000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-05 16:02:09.875369875 Z\nsign_in_count:\n- 191\n- 192\n 387 \N 189.186.44.120 d70cfe99-6a70-4b8a-827a-559eb36db120 2019-07-05 16:02:09.905113 10566 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 4EmBZrhmt7Mn267MshZN\n- oPNs_bCMXZ_oCRhiM4v5\n 388 \N 189.186.44.120 d70cfe99-6a70-4b8a-827a-559eb36db120 2019-07-05 16:02:09.927398 10567 287 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.824E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 824.0 189.186.44.120 eb669f32-7ecf-417b-8626-6c2b813dab17 2019-07-05 16:06:52.468283 10568 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-04 16:18:42.594891000 Z\n- &1 2019-07-04 23:00:24.341998000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-05 16:08:19.867282929 Z\nsign_in_count:\n- 474\n- 475\n 950 \N 189.186.44.120 f72659f1-a0c2-455b-baef-b61abae6a0a2 2019-07-05 16:08:19.883146 10570 288 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.634E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 634.0 189.186.44.120 68902272-b59d-4c7e-b4b7-855b092fad0b 2019-07-05 16:08:38.875745 10571 822 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 288\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-07-05\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-358\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 0349a16b-e4b1-4dbf-aa98-1c98e72bf6f1 2019-07-05 17:18:38.13488 10572 387 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.44.120 0349a16b-e4b1-4dbf-aa98-1c98e72bf6f1 2019-07-05 17:18:38.208016 10573 822 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 9053d7af-a29f-494c-b087-2ac18339eb92 2019-07-05 17:18:57.693295 10574 1116 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 288\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 822\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-358\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-358 189.186.44.120 9053d7af-a29f-494c-b087-2ac18339eb92 2019-07-05 17:18:57.716318 10575 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-04 16:50:40.069939000 Z\n- &1 2019-07-04 22:51:15.324951000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-05 17:52:46.909750944 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938094\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\nsign_in_count:\n- 325\n- 326\n 652 \N 189.186.41.174 e2a6c1e5-e043-45bd-9bb6-bb48d633a0db 2019-07-05 17:52:46.941037 10576 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1QJUsPj5z8XdJAtCfyZS\n- nPwrPj2DpkpWaWaFsNxr\n 653 \N 189.186.41.174 e2a6c1e5-e043-45bd-9bb6-bb48d633a0db 2019-07-05 17:52:46.96491 10577 823 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 287\namount: !ruby/object:BigDecimal 18:0.50776E3\ntax: !ruby/object:BigDecimal 18:0.8124E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2019-07-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-463\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 2305c014-f59a-4771-8dc5-efe7d602adc3 2019-07-05 18:18:45.90759 10578 247 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.44.120 2305c014-f59a-4771-8dc5-efe7d602adc3 2019-07-05 18:18:45.940254 10579 823 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 bec204d5-20f0-472e-8ab1-6df23b3eb764 2019-07-05 18:18:51.948685 10580 1117 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 287\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.589E3\nmove_type: '1'\nsale_id: 823\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-463\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.589E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-463 189.186.44.120 bec204d5-20f0-472e-8ab1-6df23b3eb764 2019-07-05 18:18:51.984178 10581 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-04 22:51:15.324951000 Z\n- &1 2019-07-05 17:52:46.909750000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-05 21:06:20.976141425 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938264\n mask_addr: 4294967295\nsign_in_count:\n- 326\n- 327\n 654 \N 200.68.150.216 38e4b40f-9f26-4613-8d03-50d87cc1294d 2019-07-05 21:06:20.982949 10582 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nPwrPj2DpkpWaWaFsNxr\n- x6VLfX32h_CSHt-hqezZ\n 655 \N 200.68.150.216 38e4b40f-9f26-4613-8d03-50d87cc1294d 2019-07-05 21:06:20.99611 10583 1118 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 287\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1092E4\nmove_type: '1'\nsale_id: 731\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1092E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-413 189.186.44.120 41ed8949-1b07-41ce-acf0-5ef913281837 2019-07-05 21:51:41.221166 10584 731 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.44.120 b510fe3e-06fe-4178-9cc9-5c422b86d7b5 2019-07-05 21:51:42.505194 10585 120 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 287\nquantity: !ruby/object:BigDecimal 18:0.921E3\nstatus: 1\nobservations: SUELDO ANABELLY\nexpense_date: 2019-07-05\nexpense_code: PV1-E-101\n 1 Egreso por 921.0 registrado 189.186.44.120 995b26b9-48f0-402b-b0c1-5bd2fe020ea5 2019-07-05 22:07:08.195444 10586 1119 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 287\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.921E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 120\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.44.120 995b26b9-48f0-402b-b0c1-5bd2fe020ea5 2019-07-05 22:07:08.219559 10587 1120 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 172\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.44.120 536f3731-0fb1-42e1-aac3-4700ffbe8a88 2019-07-05 22:11:17.957439 10588 1120 CashRegistersMove \N \N 3 User \N update ---\nopen_cash_register_id:\n- 49\n- 288\n 2 movimiento de efectivo por venta con folio PV1-V-96 189.186.44.120 536f3731-0fb1-42e1-aac3-4700ffbe8a88 2019-07-05 22:11:17.981458 10589 121 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 288\nquantity: !ruby/object:BigDecimal 18:0.7E3\nstatus: 1\nobservations: PAGO DE SUELDO DE YARETZI\nexpense_date: 2019-07-05\nexpense_code: PV2-E-20\n 1 Egreso por 700.0 registrado 189.186.44.120 0e01d715-4a21-4489-8941-69384c8bd19d 2019-07-05 22:12:24.86583 10590 10 Purchase \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 0e01d715-4a21-4489-8941-69384c8bd19d 2019-07-05 22:12:24.881278 10591 1121 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 288\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: 10\nexpense_id: 121\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.44.120 0e01d715-4a21-4489-8941-69384c8bd19d 2019-07-05 22:12:24.901346 10592 122 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 287\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: COMIDA ROCIO\nexpense_date: 2019-07-05\nexpense_code: PV1-E-102\n 1 Egreso por 50.0 registrado 189.186.44.120 bb3bd9e6-2b61-4d7f-bb65-13f2d5ac4cf5 2019-07-05 22:20:19.823921 10593 1122 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 287\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 122\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.44.120 bb3bd9e6-2b61-4d7f-bb65-13f2d5ac4cf5 2019-07-05 22:20:19.850813 10594 824 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 287\namount: !ruby/object:BigDecimal 18:0.669E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-07-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-464\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 6365a601-3086-44fc-a0cf-d158202b7706 2019-07-06 00:48:16.892979 10595 525 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.44.120 6365a601-3086-44fc-a0cf-d158202b7706 2019-07-06 00:48:16.927994 10596 824 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 fa4488f9-a58c-481a-a866-ff8249748d2c 2019-07-06 00:49:08.00094 10597 1123 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 287\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.669E3\nmove_type: '1'\nsale_id: 824\ncardnumber: 4963\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-464\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-464 189.186.44.120 fa4488f9-a58c-481a-a866-ff8249748d2c 2019-07-06 00:49:08.025337 10598 825 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 287\namount: !ruby/object:BigDecimal 18:0.78728E3\ntax: !ruby/object:BigDecimal 18:0.11172E3\ndiscount: !ruby/object:BigDecimal 18:0.89E2\ntotal: !ruby/object:BigDecimal 18:0.81E3\nstatus: 0\ndate_sale: 2019-07-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-465\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 3df55f4a-9bd4-41fe-84f8-4c3c12b90d81 2019-07-06 00:58:49.924144 10599 186 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.44.120 3df55f4a-9bd4-41fe-84f8-4c3c12b90d81 2019-07-06 00:58:49.957924 10600 825 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 07d2ef1a-6f4f-456a-9be1-886e9cd0b759 2019-07-06 00:59:05.459721 10601 1124 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 287\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.81E3\nmove_type: '1'\nsale_id: 825\ncardnumber: 7789\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-465\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-465 189.186.44.120 07d2ef1a-6f4f-456a-9be1-886e9cd0b759 2019-07-06 00:59:05.486555 10602 123 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 287\nquantity: !ruby/object:BigDecimal 18:0.128E3\nstatus: 1\nobservations: sueldo Rocio\nexpense_date: 2019-07-05\nexpense_code: PV1-E-103\n 1 Egreso por 128.0 registrado 189.186.44.120 7de3b3c2-d792-4552-b68c-486604b77a87 2019-07-06 02:02:27.136467 10603 1125 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 287\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.128E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 123\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.44.120 7de3b3c2-d792-4552-b68c-486604b77a87 2019-07-06 02:02:27.160173 10604 285 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 287\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.316E4\namount_out: !ruby/object:BigDecimal 18:0.1099E4\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.906E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1406E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.44.120 10d2cfbc-047b-4179-848d-b3645c7271c8 2019-07-06 02:07:35.806701 10605 287 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 10d2cfbc-047b-4179-848d-b3645c7271c8 2019-07-06 02:07:35.826236 10606 286 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 288\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1399E4\namount_out: !ruby/object:BigDecimal 18:0.7E3\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.633E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1333E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.44.120 b2ace4b0-f9cf-4f6c-b314-14edf0929295 2019-07-06 02:08:07.233375 10607 288 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 b2ace4b0-f9cf-4f6c-b314-14edf0929295 2019-07-06 02:08:07.247845 10608 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-04 23:00:24.341998000 Z\n- &1 2019-07-05 16:08:19.867282000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-06 16:12:10.160726275 Z\nsign_in_count:\n- 475\n- 476\n 952 \N 189.186.44.120 8700c811-15ff-45a6-9f4a-d1d00d300c5a 2019-07-06 16:12:10.190804 10609 3 User \N \N 3 User \N update ---\nunique_session_id:\n- S5mtMp_QDU8tjmhsEn5L\n- Arjxwyzz7HkxSeg2qrux\n 953 \N 189.186.44.120 8700c811-15ff-45a6-9f4a-d1d00d300c5a 2019-07-06 16:12:10.212207 10610 289 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.633E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 633.0 189.186.44.120 dbd132d5-2800-48bf-a2bb-8ebed891d9da 2019-07-06 16:12:30.10481 10611 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-04 15:56:34.159912000 Z\n- &1 2019-07-05 16:02:09.875369000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-06 16:36:15.151830669 Z\nsign_in_count:\n- 192\n- 193\n 389 \N 189.186.44.120 ff83e00f-4f60-4902-8f5f-2e81a8ee72fe 2019-07-06 16:36:15.157482 10612 2 User \N \N 2 User \N update ---\nunique_session_id:\n- oPNs_bCMXZ_oCRhiM4v5\n- zi6pZfaZQ7L6XqMcSR25\n 390 \N 189.186.44.120 ff83e00f-4f60-4902-8f5f-2e81a8ee72fe 2019-07-06 16:36:15.169694 10613 290 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.906E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 906.0 189.186.44.120 c149b797-8b90-4938-94f2-e68bb89bb4d6 2019-07-06 16:41:04.242993 10614 124 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 290\nquantity: !ruby/object:BigDecimal 18:0.135E3\nstatus: 1\nobservations: "$85 tapiz $50 comida"\nexpense_date: 2019-07-06\nexpense_code: PV1-E-104\n 1 Egreso por 135.0 registrado 189.186.44.120 42776d2e-b891-4635-85d6-0a0257fcb16c 2019-07-06 16:41:39.840398 10615 1126 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 290\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.135E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 124\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.44.120 42776d2e-b891-4635-85d6-0a0257fcb16c 2019-07-06 16:41:39.882364 10616 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-05 16:08:19.867282000 Z\n- &1 2019-07-06 16:12:10.160726000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-06 20:38:15.196413672 Z\nsign_in_count:\n- 476\n- 477\n 954 \N 189.186.44.120 f88b06ea-0f2f-42c2-81f9-f04aa4c881f5 2019-07-06 20:38:15.214825 10617 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Arjxwyzz7HkxSeg2qrux\n- ujPCUifErYQKYXbhaKHV\n 955 \N 189.186.44.120 f88b06ea-0f2f-42c2-81f9-f04aa4c881f5 2019-07-06 20:38:15.236876 10618 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-05 17:52:46.909750000 Z\n- &1 2019-07-05 21:06:20.976141000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-06 20:44:09.426256008 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938264\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938264\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\nsign_in_count:\n- 327\n- 328\n 656 \N 189.186.41.174 16a543f2-11c9-4a24-b11a-1b48842adff6 2019-07-06 20:44:09.435948 10619 4 User \N \N 4 User \N update ---\nunique_session_id:\n- x6VLfX32h_CSHt-hqezZ\n- NrkNSCu49JyGAbrG9JF-\n 657 \N 189.186.41.174 16a543f2-11c9-4a24-b11a-1b48842adff6 2019-07-06 20:44:09.454813 10620 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-05 16:02:09.875369000 Z\n- &1 2019-07-06 16:36:15.151830000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-06 21:07:07.599901095 Z\nsign_in_count:\n- 193\n- 194\n 391 \N 189.186.44.120 ee05c830-735f-4194-b0b1-76df53a1715b 2019-07-06 21:07:07.607881 10621 2 User \N \N 2 User \N update ---\nunique_session_id:\n- zi6pZfaZQ7L6XqMcSR25\n- M8j-jmhZy8n33QDGuuaC\n 392 \N 189.186.44.120 ee05c830-735f-4194-b0b1-76df53a1715b 2019-07-06 21:07:07.625362 10622 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-05 21:06:20.976141000 Z\n- &1 2019-07-06 20:44:09.426256000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-06 21:51:50.880563274 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938264\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\nsign_in_count:\n- 328\n- 329\n 658 \N 189.186.41.174 efc7645d-c724-4d15-9909-950add568ec5 2019-07-06 21:51:50.899381 10623 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NrkNSCu49JyGAbrG9JF-\n- 3SyzgUCLpKAmp67p-i1L\n 659 \N 189.186.41.174 efc7645d-c724-4d15-9909-950add568ec5 2019-07-06 21:51:50.92209 10624 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-06 16:36:15.151830000 Z\n- &1 2019-07-06 21:07:07.599901000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-06 22:34:14.574602865 Z\nsign_in_count:\n- 194\n- 195\n 393 \N 189.186.44.120 385e8fe4-583c-474a-b9b3-b03d07cfd92c 2019-07-06 22:34:14.579727 10625 2 User \N \N 2 User \N update ---\nunique_session_id:\n- M8j-jmhZy8n33QDGuuaC\n- sfKjJL1iT8UfauL7_2_y\n 394 \N 189.186.44.120 385e8fe4-583c-474a-b9b3-b03d07cfd92c 2019-07-06 22:34:14.593095 10626 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-06 21:07:07.599901000 Z\n- &1 2019-07-06 22:34:14.574602000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-07 00:29:23.921977091 Z\nsign_in_count:\n- 195\n- 196\n 395 \N 189.186.44.120 88ea6a5f-38bc-45ec-8998-c62c0cc715a2 2019-07-07 00:29:23.927991 10627 2 User \N \N 2 User \N update ---\nunique_session_id:\n- sfKjJL1iT8UfauL7_2_y\n- aVUuGmXykaXzrjqJZgyE\n 396 \N 189.186.44.120 88ea6a5f-38bc-45ec-8998-c62c0cc715a2 2019-07-07 00:29:23.944853 10628 826 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 290\namount: !ruby/object:BigDecimal 18:0.8121E3\ntax: !ruby/object:BigDecimal 18:0.869E2\ndiscount: !ruby/object:BigDecimal 18:0.269E3\ntotal: !ruby/object:BigDecimal 18:0.63E3\nstatus: 0\ndate_sale: 2019-07-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-466\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 7183e96f-0430-49b4-94eb-331733e36bda 2019-07-07 00:30:44.159611 10629 93 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.44.120 7183e96f-0430-49b4-94eb-331733e36bda 2019-07-07 00:30:44.196959 10630 826 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 6070266d-5ef2-4e06-a5fd-5a48ad047515 2019-07-07 00:30:48.772771 10631 1127 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 290\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.63E3\nmove_type: '1'\nsale_id: 826\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-466\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.63E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-466 189.186.44.120 6070266d-5ef2-4e06-a5fd-5a48ad047515 2019-07-07 00:30:48.807729 10632 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-06 16:12:10.160726000 Z\n- &1 2019-07-06 20:38:15.196413000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-07 00:39:22.861938867 Z\nsign_in_count:\n- 477\n- 478\n 956 \N 189.186.44.120 c398472d-96a5-4ff8-b7a0-5655e0933050 2019-07-07 00:39:22.867868 10633 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ujPCUifErYQKYXbhaKHV\n- Bf4AzW8zjjo2F_xvjuen\n 957 \N 189.186.44.120 c398472d-96a5-4ff8-b7a0-5655e0933050 2019-07-07 00:39:22.885535 10634 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-06 20:44:09.426256000 Z\n- &1 2019-07-06 21:51:50.880563000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-07 01:01:34.012279335 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946054\n mask_addr: 4294967295\nsign_in_count:\n- 329\n- 330\n 660 \N 200.68.181.70 b8b943a5-6bc5-435d-8452-c796a3728246 2019-07-07 01:01:34.029673 10635 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3SyzgUCLpKAmp67p-i1L\n- FDzY132uwEdyx_m6R1ty\n 661 \N 200.68.181.70 b8b943a5-6bc5-435d-8452-c796a3728246 2019-07-07 01:01:34.061805 10636 287 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 290\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.63E3\namount_out: !ruby/object:BigDecimal 18:0.135E3\nreceived_by_id: 16\nreceived_cash: !ruby/object:BigDecimal 18:0.6E3\ncash_fund: !ruby/object:BigDecimal 18:0.801E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1401E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.44.120 42e3bcd1-42b7-4763-9b55-24d5555575b5 2019-07-07 01:49:01.73085 10637 290 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 42e3bcd1-42b7-4763-9b55-24d5555575b5 2019-07-07 01:49:01.747126 10638 288 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 289\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.633E3\nphysical_cash: !ruby/object:BigDecimal 18:0.633E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.44.120 92a70ebb-7cc9-4c21-b64f-1d4ff2c67a11 2019-07-07 01:55:01.063541 10640 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-04 01:43:43.264758000 Z\n- &1 2019-07-05 00:32:22.962056000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-07 16:12:50.681265378 Z\nsign_in_count:\n- 245\n- 246\n 492 \N 189.186.44.120 af17c17d-1d7d-44eb-931d-eaadb659a387 2019-07-07 16:12:50.708873 10641 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 7zyYu9Vp7bJhJoxUPv4s\n- krfzBkc2SA4KUrebWbgq\n 493 \N 189.186.44.120 af17c17d-1d7d-44eb-931d-eaadb659a387 2019-07-07 16:12:50.733743 10642 291 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.801E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 801.0 189.186.44.120 90eafef7-fe14-4b9d-b7c6-11502e8cdd81 2019-07-07 16:17:24.90842 10643 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-06 20:38:15.196413000 Z\n- &1 2019-07-07 00:39:22.861938000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-07 16:21:05.537691145 Z\nsign_in_count:\n- 478\n- 479\n 958 \N 189.186.44.120 a887f622-d8e9-4f23-b67b-0a507d1302b7 2019-07-07 16:21:05.546606 10644 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Bf4AzW8zjjo2F_xvjuen\n- aDrgqRzuFMysyzT4fRGt\n 959 \N 189.186.44.120 a887f622-d8e9-4f23-b67b-0a507d1302b7 2019-07-07 16:21:05.569177 10645 292 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.633E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 633.0 189.186.44.120 b6b6445f-993c-454a-a15b-03d63ccf682c 2019-07-07 16:21:15.618611 10646 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-07 00:39:22.861938000 Z\n- &1 2019-07-07 16:21:05.537691000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-07 20:44:10.230163801 Z\nsign_in_count:\n- 479\n- 480\n 960 \N 189.186.44.120 b0c492aa-64ff-4224-a8fe-cfc215ba6cca 2019-07-07 20:44:10.248847 10647 3 User \N \N 3 User \N update ---\nunique_session_id:\n- aDrgqRzuFMysyzT4fRGt\n- FYMBymoV5tdaTwKrTzDj\n 961 \N 189.186.44.120 b0c492aa-64ff-4224-a8fe-cfc215ba6cca 2019-07-07 20:44:10.267629 10648 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-07 16:21:05.537691000 Z\n- &1 2019-07-07 20:44:10.230163000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-07 20:44:59.151979301 Z\nsign_in_count:\n- 480\n- 481\n 962 \N 189.186.44.120 4b9ab5ee-fbdd-4ee8-ab89-910ffa16e5d3 2019-07-07 20:44:59.157491 10649 3 User \N \N 3 User \N update ---\nunique_session_id:\n- FYMBymoV5tdaTwKrTzDj\n- Wc_Xac6eh5tXFhxDKM1q\n 963 \N 189.186.44.120 4b9ab5ee-fbdd-4ee8-ab89-910ffa16e5d3 2019-07-07 20:44:59.170819 10650 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-05 00:32:22.962056000 Z\n- &1 2019-07-07 16:12:50.681265000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-07 20:45:18.245591453 Z\nsign_in_count:\n- 246\n- 247\n 494 \N 189.186.44.120 a3db1364-a0a9-41b8-ad5b-251817ff5fa2 2019-07-07 20:45:18.254559 10651 12 User \N \N 12 User \N update ---\nunique_session_id:\n- krfzBkc2SA4KUrebWbgq\n- ePqoSpgyhma3e27suBKp\n 495 \N 189.186.44.120 a3db1364-a0a9-41b8-ad5b-251817ff5fa2 2019-07-07 20:45:18.276607 10652 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-07 16:12:50.681265000 Z\n- &1 2019-07-07 20:45:18.245591000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-07 20:47:13.982129675 Z\nsign_in_count:\n- 247\n- 248\n 496 \N 189.186.44.120 66de914f-eff2-42d3-a502-238ab816d976 2019-07-07 20:47:13.989372 10653 12 User \N \N 12 User \N update ---\nunique_session_id:\n- ePqoSpgyhma3e27suBKp\n- hFp5su1aZfUQrdgbUCZD\n 497 \N 189.186.44.120 66de914f-eff2-42d3-a502-238ab816d976 2019-07-07 20:47:14.001487 10654 289 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 291\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.801E3\nphysical_cash: !ruby/object:BigDecimal 18:0.801E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.44.120 2f907d6f-0ecb-4cb2-9def-596bb9a48592 2019-07-07 20:47:37.599589 10655 291 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 2f907d6f-0ecb-4cb2-9def-596bb9a48592 2019-07-07 20:47:37.613271 10656 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-07 20:44:10.230163000 Z\n- &1 2019-07-07 20:44:59.151979000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-07 20:57:57.655119431 Z\nsign_in_count:\n- 481\n- 482\n 964 \N 189.186.44.120 7dcb7647-b617-4a2f-8eef-0157d9fefd16 2019-07-07 20:57:57.680443 10657 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Wc_Xac6eh5tXFhxDKM1q\n- qtKpo_gNtoY6jJ1gpxP1\n 965 \N 189.186.44.120 7dcb7647-b617-4a2f-8eef-0157d9fefd16 2019-07-07 20:57:57.702293 10658 290 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 292\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.633E3\nphysical_cash: !ruby/object:BigDecimal 18:0.633E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.44.120 6aea0761-c2ae-4fcc-b8df-93314d70f79d 2019-07-07 20:58:18.100514 10659 292 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 6aea0761-c2ae-4fcc-b8df-93314d70f79d 2019-07-07 20:58:18.115045 10660 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-06 22:34:14.574602000 Z\n- &1 2019-07-07 00:29:23.921977000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-08 15:51:42.330406415 Z\nsign_in_count:\n- 196\n- 197\n 397 \N 189.186.44.120 0461598b-1cab-4f53-a739-9f4f9639396a 2019-07-08 15:51:42.360015 10661 2 User \N \N 2 User \N update ---\nunique_session_id:\n- aVUuGmXykaXzrjqJZgyE\n- uiQKojJDAvbXkN6i4C17\n 398 \N 189.186.44.120 0461598b-1cab-4f53-a739-9f4f9639396a 2019-07-08 15:51:42.382721 10662 293 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.801E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 801.0 189.186.44.120 c8a74564-5161-41d7-9c59-3c4e9d559279 2019-07-08 15:52:09.013583 10663 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-05 01:54:41.239373000 Z\n- &1 2019-07-05 02:27:45.746111000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-08 15:59:06.796377693 Z\nsign_in_count:\n- 93\n- 94\n 188 \N 189.186.44.120 3234640c-7793-4f06-8a63-54b1bfb94b37 2019-07-08 15:59:06.801635 10664 10 User \N \N 10 User \N update ---\nunique_session_id:\n- B59RcfyJGzgrSoM8QSzL\n- iMxxVAN4ZZsQEF1xBjBb\n 189 \N 189.186.44.120 3234640c-7793-4f06-8a63-54b1bfb94b37 2019-07-08 15:59:06.814869 10665 294 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.633E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 633.0 189.186.44.120 b4f34a2e-c6f6-4892-a0c5-4d3078fe3cda 2019-07-08 15:59:10.3232 10666 827 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 294\namount: !ruby/object:BigDecimal 18:0.1169E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1169E4\nstatus: 0\ndate_sale: 2019-07-08\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-359\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 2dfdea1d-6c52-4874-8d47-b06d14fd774b 2019-07-08 17:25:29.40676 10667 653 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.44.120 2dfdea1d-6c52-4874-8d47-b06d14fd774b 2019-07-08 17:25:29.440075 10669 1128 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 294\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1169E4\nmove_type: '1'\nsale_id: 827\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-359\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-359 189.186.44.120 7e162564-d707-4276-8724-30870fde6031 2019-07-08 17:25:48.747691 10670 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-06 21:51:50.880563000 Z\n- &1 2019-07-07 01:01:34.012279000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-08 18:14:26.480042274 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094190\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946054\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946054\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938053\n mask_addr: 4294967295\nsign_in_count:\n- 330\n- 331\n 662 \N 200.68.150.5 ff17672d-7233-4e2a-99b9-fbd511f84ef7 2019-07-08 18:14:26.49977 10671 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FDzY132uwEdyx_m6R1ty\n- 3ysJgGzJykgF6xNopLi9\n 663 \N 200.68.150.5 ff17672d-7233-4e2a-99b9-fbd511f84ef7 2019-07-08 18:14:26.520047 10672 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-07 20:45:18.245591000 Z\n- &1 2019-07-07 20:47:13.982129000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-08 19:58:09.442309154 Z\nsign_in_count:\n- 248\n- 249\n 498 \N 189.186.44.120 323d5258-aa40-4608-b178-64fa5ba3891c 2019-07-08 19:58:09.447617 10673 12 User \N \N 12 User \N update ---\nunique_session_id:\n- hFp5su1aZfUQrdgbUCZD\n- Sy368R1JvfP-zQUbvoKN\n 499 \N 189.186.44.120 323d5258-aa40-4608-b178-64fa5ba3891c 2019-07-08 19:58:09.459325 10674 140 Customer \N \N 2 User \N create ---\nnick_name: MONICA ANGULO\nphone: "(667) 247-1822"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MONICA ANGULO fue registrado. 189.186.44.120 728457d4-c8b4-433e-99ee-a20068c98196 2019-07-08 20:12:08.300768 10675 828 Sale \N \N 2 User \N create ---\ncustomer_id: 140\nuser_id: 2\nopen_cash_register_id: 293\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-07-08\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-467\nexpiration_date: 2019-08-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 dcb23238-9203-4f49-af2f-860ce8e52ca9 2019-07-08 20:12:42.011602 10676 604 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.44.120 dcb23238-9203-4f49-af2f-860ce8e52ca9 2019-07-08 20:12:42.0441 10677 1129 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 293\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 828\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-467\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-467 189.186.44.120 c538778e-92bf-42c3-bb58-a6f190676537 2019-07-08 20:13:00.609961 10678 828 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.44.120 fb3df063-2de0-4e36-ae2a-a55b69b47454 2019-07-08 20:13:03.122136 10679 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-07 01:01:34.012279000 Z\n- &1 2019-07-08 18:14:26.480042000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-08 22:07:22.801577510 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946054\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938053\n mask_addr: 4294967295\nsign_in_count:\n- 331\n- 332\n 664 \N 200.68.150.5 da409912-a968-4089-b3f9-395f665ea60e 2019-07-08 22:07:22.808051 10680 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3ysJgGzJykgF6xNopLi9\n- SG-x5MgkGKrJCWiraBKc\n 665 \N 200.68.150.5 da409912-a968-4089-b3f9-395f665ea60e 2019-07-08 22:07:22.821967 10681 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-08 18:14:26.480042000 Z\n- &1 2019-07-08 22:07:22.801577000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-08 22:53:17.141216883 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938053\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\nsign_in_count:\n- 332\n- 333\n 666 \N 189.186.44.120 b4f035ca-1a50-4067-922d-a5f08fa0c683 2019-07-08 22:53:17.148234 10682 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SG-x5MgkGKrJCWiraBKc\n- 9zcfCrbhxy2X3SHNy-Vk\n 667 \N 189.186.44.120 b4f035ca-1a50-4067-922d-a5f08fa0c683 2019-07-08 22:53:17.163879 10683 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-08 22:07:22.801577000 Z\n- &1 2019-07-08 22:53:17.141216000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-09 00:00:44.975987336 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938053\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938053\n mask_addr: 4294967295\nsign_in_count:\n- 333\n- 334\n 668 \N 200.68.150.5 b31cd384-7c8c-4b18-ac1b-8326c1ebad4f 2019-07-09 00:00:44.983606 10684 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9zcfCrbhxy2X3SHNy-Vk\n- 7DxrmidicTYsP2CuxiJv\n 669 \N 200.68.150.5 b31cd384-7c8c-4b18-ac1b-8326c1ebad4f 2019-07-09 00:00:45.000972 10685 291 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 293\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 16\nreceived_cash: !ruby/object:BigDecimal 18:0.4E3\ncash_fund: !ruby/object:BigDecimal 18:0.801E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1201E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.44.120 c9452fa6-d720-4d2b-b8d4-ff59c706d0ee 2019-07-09 01:54:16.173154 10686 293 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 c9452fa6-d720-4d2b-b8d4-ff59c706d0ee 2019-07-09 01:54:16.194356 10687 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-05 02:27:45.746111000 Z\n- &1 2019-07-08 15:59:06.796377000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-09 02:01:25.394314143 Z\nsign_in_count:\n- 94\n- 95\n 190 \N 189.186.44.120 5c17eae4-776d-45eb-bfe5-ec5a4f8d6d5a 2019-07-09 02:01:25.43126 10688 10 User \N \N 10 User \N update ---\nunique_session_id:\n- iMxxVAN4ZZsQEF1xBjBb\n- MezXVCWTfkLZ1LEHxtDy\n 191 \N 189.186.44.120 5c17eae4-776d-45eb-bfe5-ec5a4f8d6d5a 2019-07-09 02:01:25.450175 10689 292 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 294\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.1169E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.602E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1802E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.44.120 649af11e-995c-4775-b0c7-0d1a33045063 2019-07-09 02:04:19.66693 10690 294 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.44.120 649af11e-995c-4775-b0c7-0d1a33045063 2019-07-09 02:04:19.681605 10691 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-07 00:29:23.921977000 Z\n- &1 2019-07-08 15:51:42.330406000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-09 15:56:59.461454222 Z\nsign_in_count:\n- 197\n- 198\n 399 \N 189.186.44.120 244bd89d-85b3-4a89-afd1-cccdf9bd83cc 2019-07-09 15:56:59.490213 10692 2 User \N \N 2 User \N update ---\nunique_session_id:\n- uiQKojJDAvbXkN6i4C17\n- 1v2j7gkZ95_ksqHgzPxy\n 400 \N 189.186.44.120 244bd89d-85b3-4a89-afd1-cccdf9bd83cc 2019-07-09 15:56:59.510842 10693 295 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.801E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 801.0 189.186.44.120 a0bf3c9d-d61f-4807-89ae-197aff16171e 2019-07-09 15:57:27.78441 10694 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-07 20:44:59.151979000 Z\n- &1 2019-07-07 20:57:57.655119000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-09 16:05:18.821610975 Z\nsign_in_count:\n- 482\n- 483\n 966 \N 189.186.44.120 ced4f7d0-9d79-4bc8-8df7-f05894319748 2019-07-09 16:05:18.82787 10695 3 User \N \N 3 User \N update ---\nunique_session_id:\n- qtKpo_gNtoY6jJ1gpxP1\n- z-f_iyG9qrjJhzw8vxv9\n 967 \N 189.186.44.120 ced4f7d0-9d79-4bc8-8df7-f05894319748 2019-07-09 16:05:18.851286 10696 296 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.602E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 602.0 189.186.44.120 9b1da138-5af3-4cf2-8da0-a752f969cc3e 2019-07-09 16:05:39.267374 10697 1130 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 2\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 18\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.44.120 0edcb7be-5e96-4f26-aee8-a84cbd3ea11e 2019-07-09 18:22:33.462014 10698 18 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.44.120 0edcb7be-5e96-4f26-aee8-a84cbd3ea11e 2019-07-09 18:22:33.521567 10699 324 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.44.120 0edcb7be-5e96-4f26-aee8-a84cbd3ea11e 2019-07-09 18:22:33.556246 10700 1130 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 2\n- 295\n 2 movimiento de efectivo por venta con folio PV1-V-16 189.186.44.120 0edcb7be-5e96-4f26-aee8-a84cbd3ea11e 2019-07-09 18:22:33.571768 10701 829 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 295\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.509E3\ntotal: !ruby/object:BigDecimal 18:0.119E4\nstatus: 0\ndate_sale: 2019-07-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-468\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 b6747d10-a55e-4be3-9c0e-29d546068ebd 2019-07-09 20:19:36.860335 10702 520 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.44.120 b6747d10-a55e-4be3-9c0e-29d546068ebd 2019-07-09 20:19:36.890854 10703 829 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 b4bc83f2-4d25-4634-b5da-1719a2bccc63 2019-07-09 20:20:30.927323 10704 1131 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 295\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.119E4\nmove_type: '1'\nsale_id: 829\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-468\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.119E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-468 189.186.44.120 b4bc83f2-4d25-4634-b5da-1719a2bccc63 2019-07-09 20:20:30.95074 10705 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-08 22:53:17.141216000 Z\n- &1 2019-07-09 00:00:44.975987000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-09 21:19:24.188107061 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938053\n mask_addr: 4294967295\nsign_in_count:\n- 334\n- 335\n 670 \N 200.68.150.5 9a7964f9-cbaa-44fe-af9d-905618b0ef88 2019-07-09 21:19:24.198041 10706 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7DxrmidicTYsP2CuxiJv\n- A5szj8b89xeyH3U9dWi_\n 671 \N 200.68.150.5 9a7964f9-cbaa-44fe-af9d-905618b0ef88 2019-07-09 21:19:24.213407 10707 830 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 296\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-07-09\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-360\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 a438e41d-ce2b-4a97-a656-ba0eec6381ae 2019-07-09 21:29:10.972064 10708 482 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.44.120 a438e41d-ce2b-4a97-a656-ba0eec6381ae 2019-07-09 21:29:11.001325 10709 830 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 23519c4b-af96-4e84-b1a1-16528d1ec6f5 2019-07-09 21:29:20.179444 10710 1132 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 296\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 830\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-360\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-360 189.186.44.120 23519c4b-af96-4e84-b1a1-16528d1ec6f5 2019-07-09 21:29:20.200371 10711 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-07 20:57:57.655119000 Z\n- &1 2019-07-09 16:05:18.821610000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-09 23:57:55.284837274 Z\nsign_in_count:\n- 483\n- 484\n 968 \N 189.186.44.120 a17d2990-a999-4e6e-83d5-54afb0d62598 2019-07-09 23:57:55.290342 10712 3 User \N \N 3 User \N update ---\nunique_session_id:\n- z-f_iyG9qrjJhzw8vxv9\n- v2h8JxJJeusLLYL3Tr9s\n 969 \N 189.186.44.120 a17d2990-a999-4e6e-83d5-54afb0d62598 2019-07-09 23:57:55.303253 10713 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-07 20:47:13.982129000 Z\n- &1 2019-07-08 19:58:09.442309000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-09 23:58:57.534745697 Z\nsign_in_count:\n- 249\n- 250\n 500 \N 189.186.44.120 36492f49-afa3-4e18-8edf-c7cfa601896a 2019-07-09 23:58:57.540925 10714 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Sy368R1JvfP-zQUbvoKN\n- Pez8Fx8CzSfB_Qup2KDy\n 501 \N 189.186.44.120 36492f49-afa3-4e18-8edf-c7cfa601896a 2019-07-09 23:58:57.553907 10715 831 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 295\namount: !ruby/object:BigDecimal 18:0.137845E4\ntax: !ruby/object:BigDecimal 18:0.22055E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-07-09\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-469\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.44.120 747b54d1-e492-4892-9e0e-5541185d186f 2019-07-10 00:23:11.026046 10716 271 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 1 \N 189.186.44.120 747b54d1-e492-4892-9e0e-5541185d186f 2019-07-10 00:23:11.062771 10717 831 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.44.120 8ea2f8aa-7e3a-421f-90e5-dd2fa0a44cba 2019-07-10 00:23:27.50141 10718 1133 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 295\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 831\ncardnumber: 3788\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-469\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-469 189.186.44.120 8ea2f8aa-7e3a-421f-90e5-dd2fa0a44cba 2019-07-10 00:23:27.522261 10719 293 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 295\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.3389E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.1091E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2591E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.35.54 4a55bd27-4ec8-4ccc-bf76-7abfdf0ce077 2019-07-10 01:54:57.195502 10720 295 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.35.54 4a55bd27-4ec8-4ccc-bf76-7abfdf0ce077 2019-07-10 01:54:57.212171 10721 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-08 15:59:06.796377000 Z\n- &1 2019-07-09 02:01:25.394314000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-10 01:59:35.384720833 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\nsign_in_count:\n- 95\n- 96\n 192 \N 189.186.35.54 d0596de1-5c56-414b-bcae-33a07b2d873b 2019-07-10 01:59:35.391497 10722 10 User \N \N 10 User \N update ---\nunique_session_id:\n- MezXVCWTfkLZ1LEHxtDy\n- CXCJg8gtx9s7k2SWj9_-\n 193 \N 189.186.35.54 d0596de1-5c56-414b-bcae-33a07b2d873b 2019-07-10 01:59:35.405949 10723 294 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 296\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.599E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.701E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1201E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.35.54 c223f122-1c32-4a05-914e-7896782c59b9 2019-07-10 02:05:26.178661 10724 296 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.35.54 c223f122-1c32-4a05-914e-7896782c59b9 2019-07-10 02:05:26.195028 10725 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-09 16:05:18.821610000 Z\n- &1 2019-07-09 23:57:55.284837000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-10 16:04:37.736851545 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\nsign_in_count:\n- 484\n- 485\n 970 \N 189.186.35.54 7d322cea-7f9f-47db-8135-e2dad3cbb94f 2019-07-10 16:04:37.782345 10726 3 User \N \N 3 User \N update ---\nunique_session_id:\n- v2h8JxJJeusLLYL3Tr9s\n- mqDkGD-GhQy45m7q47Xy\n 971 \N 189.186.35.54 7d322cea-7f9f-47db-8135-e2dad3cbb94f 2019-07-10 16:04:37.816072 10727 297 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.701E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 701.0 189.186.35.54 2d66a169-e2eb-4ae7-a517-5ad9e5da63f3 2019-07-10 16:06:00.760176 10728 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-08 15:51:42.330406000 Z\n- &1 2019-07-09 15:56:59.461454000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-10 16:07:35.974477639 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\nsign_in_count:\n- 198\n- 199\n 401 \N 189.186.35.54 f94e65a4-b4fa-466a-a5a2-80a0f7b14d11 2019-07-10 16:07:35.983205 10729 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 1v2j7gkZ95_ksqHgzPxy\n- 2WdR_is1zxz9cAnKQYkx\n 402 \N 189.186.35.54 f94e65a4-b4fa-466a-a5a2-80a0f7b14d11 2019-07-10 16:07:36.003406 10730 298 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1091E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1091.0 189.186.35.54 9a5ba6e9-0900-4ab9-8155-adb3932aff8c 2019-07-10 16:44:57.235618 10731 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-09 00:00:44.975987000 Z\n- &1 2019-07-09 21:19:24.188107000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-10 22:54:25.083693787 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938053\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934046\n mask_addr: 4294967295\nsign_in_count:\n- 335\n- 336\n 672 \N 200.68.134.94 16513adc-96af-4432-a2e3-c12931313149 2019-07-10 22:54:25.090959 10732 4 User \N \N 4 User \N update ---\nunique_session_id:\n- A5szj8b89xeyH3U9dWi_\n- aHvqDzdYj4hUsGVZ9PSH\n 673 \N 200.68.134.94 16513adc-96af-4432-a2e3-c12931313149 2019-07-10 22:54:25.104537 10733 832 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 298\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-07-10\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-470\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.35.54 bf774faf-d5ff-47df-b944-e3003b62a6ff 2019-07-10 22:55:22.214308 10734 656 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.35.54 bf774faf-d5ff-47df-b944-e3003b62a6ff 2019-07-10 22:55:22.245676 10735 832 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.35.54 3aaacfa8-dc41-4428-9379-8f8cc223924e 2019-07-10 22:56:01.894051 10736 1134 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 298\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 832\ncardnumber: 9453\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-470\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-470 189.186.35.54 3aaacfa8-dc41-4428-9379-8f8cc223924e 2019-07-10 22:56:01.918659 10737 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-09 21:19:24.188107000 Z\n- &1 2019-07-10 22:54:25.083693000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-11 00:14:50.753923684 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938053\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934046\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934046\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\nsign_in_count:\n- 336\n- 337\n 674 \N 189.186.35.54 5f2154b1-5708-4f8e-8495-0df6aa5d58ae 2019-07-11 00:14:50.761113 20269 892 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '892'\n is_parent: false\n sku: CHA-892\n name: CHA-0010\n description: "Suéter Balboa rosa \\r\\n"\n price_base: '310.0'\n price_sale: '779.0'\n img_product: PHOTO-2019-10-26-23-29-38.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000892'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-30 01:43:22.339627'\n updated_at: &12 2019-11-05 20:26:49.076445026 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '892'\n sku: CHA-892\n name: CHA-0010\n description: "Suéter Balboa rosa \\r\\n"\n price_base: '310.00'\n price_sale: '779.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-30 01:43:22.339627'\n updated_at: '2019-10-30 01:43:22.382573'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000892'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '892'\n type: *3\n value: 892\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-892\n type: *7\n value: CHA-892\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0010\n type: *8\n value: CHA-0010\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "Suéter Balboa rosa \\r\\n"\n type: *6\n value: "Suéter Balboa rosa \\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '310.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.31E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '779.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.779E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-10-26-23-29-38.jpg\n type: *2\n value: PHOTO-2019-10-26-23-29-38.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000892'\n type: *2\n value: '0000892'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-30 01:43:22.339627'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-10-26-23-29-38.jpg\n 3 El producto CHA-892 fue modificado. 187.149.74.215 f4fa6242-e665-4a3c-ae7c-de3b36ccfc56 2019-11-05 20:26:49.133221 10738 4 User \N \N 4 User \N update ---\nunique_session_id:\n- aHvqDzdYj4hUsGVZ9PSH\n- zsyD-GsZ-1Yph4LHX3Vv\n 675 \N 189.186.35.54 5f2154b1-5708-4f8e-8495-0df6aa5d58ae 2019-07-11 00:14:50.775275 10739 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-10 22:54:25.083693000 Z\n- &1 2019-07-11 00:14:50.753923000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-11 00:47:40.435666053 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934046\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934046\n mask_addr: 4294967295\nsign_in_count:\n- 337\n- 338\n 676 \N 200.68.134.94 7b77d704-0da8-45ff-81c1-c82761158a48 2019-07-11 00:47:40.447044 10740 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zsyD-GsZ-1Yph4LHX3Vv\n- ZspQMfbU9K5wtrxLBkYn\n 677 \N 200.68.134.94 7b77d704-0da8-45ff-81c1-c82761158a48 2019-07-11 00:47:40.469121 10741 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-09 23:57:55.284837000 Z\n- &1 2019-07-10 16:04:37.736851000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-11 01:11:14.465697368 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\nsign_in_count:\n- 485\n- 486\n 972 \N 189.186.35.54 0d769a55-22db-4efd-9091-8b7ae6100e97 2019-07-11 01:11:14.4731 10742 3 User \N \N 3 User \N update ---\nunique_session_id:\n- mqDkGD-GhQy45m7q47Xy\n- s7RN3ctxo4KezQj8FLLT\n 973 \N 189.186.35.54 0d769a55-22db-4efd-9091-8b7ae6100e97 2019-07-11 01:11:14.491004 10743 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-08 19:58:09.442309000 Z\n- &1 2019-07-09 23:58:57.534745000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-11 01:11:48.927373629 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\nsign_in_count:\n- 250\n- 251\n 502 \N 189.186.35.54 3d806a62-a30b-4aa1-adc8-7c744ec8e379 2019-07-11 01:11:48.934255 10744 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Pez8Fx8CzSfB_Qup2KDy\n- hRA5AHRot8U_1ojwd8cc\n 503 \N 189.186.35.54 3d806a62-a30b-4aa1-adc8-7c744ec8e379 2019-07-11 01:11:48.948356 10745 295 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 298\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.799E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1091E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1091E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.35.54 7628e050-b63f-47a4-a6f7-79dc3967508a 2019-07-11 01:57:48.496131 10746 298 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.35.54 7628e050-b63f-47a4-a6f7-79dc3967508a 2019-07-11 01:57:48.526807 10747 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-09 02:01:25.394314000 Z\n- &1 2019-07-10 01:59:35.384720000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-11 02:00:32.372323915 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\nsign_in_count:\n- 96\n- 97\n 194 \N 189.186.35.54 4ba67447-c6ba-40ee-ac1f-510280a45edf 2019-07-11 02:00:32.380246 10748 10 User \N \N 10 User \N update ---\nunique_session_id:\n- CXCJg8gtx9s7k2SWj9_-\n- gvxyhb47_cSddaqLpHD_\n 195 \N 189.186.35.54 4ba67447-c6ba-40ee-ac1f-510280a45edf 2019-07-11 02:00:32.39892 10749 296 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 297\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.71E3\nphysical_cash: !ruby/object:BigDecimal 18:0.71E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.35.54 c99ce5d7-67e3-486a-8d2e-2b7731a8a289 2019-07-11 02:01:03.608748 10750 297 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.35.54 c99ce5d7-67e3-486a-8d2e-2b7731a8a289 2019-07-11 02:01:03.630328 10751 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-10 16:04:37.736851000 Z\n- &1 2019-07-11 01:11:14.465697000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-11 16:07:58.251479899 Z\nsign_in_count:\n- 486\n- 487\n 974 \N 189.186.35.54 f77478eb-9c20-4988-9696-f29f6b33598e 2019-07-11 16:07:58.281933 10752 3 User \N \N 3 User \N update ---\nunique_session_id:\n- s7RN3ctxo4KezQj8FLLT\n- _7msmKwj4iAVJzerK-pD\n 975 \N 189.186.35.54 f77478eb-9c20-4988-9696-f29f6b33598e 2019-07-11 16:07:58.306466 10753 299 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.71E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 710.0 189.186.35.54 5ee10aac-c10b-48ba-9102-ce30a91382e5 2019-07-11 16:08:15.557096 10754 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-09 15:56:59.461454000 Z\n- &1 2019-07-10 16:07:35.974477000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-11 16:15:35.088139425 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\nsign_in_count:\n- 199\n- 200\n 403 \N 189.186.35.54 17823fed-8a26-4893-8b23-9445cdd1ff2e 2019-07-11 16:15:35.138123 10755 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 2WdR_is1zxz9cAnKQYkx\n- xsVwmC3kQ9SJ5vHjxXc6\n 404 \N 189.186.35.54 17823fed-8a26-4893-8b23-9445cdd1ff2e 2019-07-11 16:15:35.171593 10756 300 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1091E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1091.0 189.186.35.54 28d6465c-ef03-4254-b035-68445c8d3fd9 2019-07-11 16:16:06.197941 10757 125 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 299\nquantity: !ruby/object:BigDecimal 18:0.1E3\nstatus: 1\nobservations: yaretzi\nexpense_date: 2019-07-11\nexpense_code: PV2-E-21\n 1 Egreso por 100.0 registrado 189.186.35.54 3be491c1-42a7-429f-acc0-9abe076414fc 2019-07-11 20:11:59.073033 10758 1135 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 299\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 125\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.35.54 3be491c1-42a7-429f-acc0-9abe076414fc 2019-07-11 20:11:59.126015 10759 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-11 00:14:50.753923000 Z\n- &1 2019-07-11 00:47:40.435666000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-11 21:03:24.089719125 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934046\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934046\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934446\n mask_addr: 4294967295\nsign_in_count:\n- 338\n- 339\n 678 \N 200.68.135.238 61ae75b7-0fbc-4661-a07f-264fb9225cd0 2019-07-11 21:03:24.099843 10760 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZspQMfbU9K5wtrxLBkYn\n- zp-G653W7jkxCxY7BQT5\n 679 \N 200.68.135.238 61ae75b7-0fbc-4661-a07f-264fb9225cd0 2019-07-11 21:03:24.135227 10761 1136 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 299\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 622\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.299E3\nchange: !ruby/object:BigDecimal 18:0.299E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-272 189.186.35.54 0620bf1e-06d6-49e5-bd96-9f62c23d1919 2019-07-12 00:09:17.059351 10762 1136 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 299\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 622\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.299E3\nchange: !ruby/object:BigDecimal 18:0.299E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.35.54 d3c4aa12-856f-4d77-9c16-650c11a4bcb5 2019-07-12 00:09:24.952361 10763 1137 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 299\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 622\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-272 189.186.35.54 09d72e29-dae7-416e-935b-73ac58b721f1 2019-07-12 00:09:35.589284 10764 622 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.35.54 58fae4df-69da-460c-861e-7861724c59e7 2019-07-12 00:09:37.68913 10765 297 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 300\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1091E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1091E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.35.54 18d88c81-97ca-4084-9585-6da41b1733a3 2019-07-12 01:50:31.058169 10766 300 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.35.54 18d88c81-97ca-4084-9585-6da41b1733a3 2019-07-12 01:50:31.105622 10767 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-11 01:11:14.465697000 Z\n- &1 2019-07-11 16:07:58.251479000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-12 01:51:35.392735392 Z\nsign_in_count:\n- 487\n- 488\n 976 \N 189.186.35.54 f177b838-9c6f-49ee-b8c3-e10d361dab82 2019-07-12 01:51:35.400871 10768 3 User \N \N 3 User \N update ---\nunique_session_id:\n- _7msmKwj4iAVJzerK-pD\n- 2i7bEBcNhg5cp8ZyYLyB\n 977 \N 189.186.35.54 f177b838-9c6f-49ee-b8c3-e10d361dab82 2019-07-12 01:51:35.418061 10769 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-10 01:59:35.384720000 Z\n- &1 2019-07-11 02:00:32.372323000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-12 02:06:19.290184461 Z\nsign_in_count:\n- 97\n- 98\n 196 \N 189.186.35.54 158af9bf-6598-483c-a5f9-4105e9ae7091 2019-07-12 02:06:19.29624 10770 10 User \N \N 10 User \N update ---\nunique_session_id:\n- gvxyhb47_cSddaqLpHD_\n- UxxbgWJzseQ6y2JEiVax\n 197 \N 189.186.35.54 158af9bf-6598-483c-a5f9-4105e9ae7091 2019-07-12 02:06:19.310376 10771 298 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 299\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.299E3\namount_out: !ruby/object:BigDecimal 18:0.1E3\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.409E3\nphysical_cash: !ruby/object:BigDecimal 18:0.909E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.35.54 39e04087-4f55-4924-9c92-8531dc1e375e 2019-07-12 02:10:28.434458 10772 299 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.35.54 39e04087-4f55-4924-9c92-8531dc1e375e 2019-07-12 02:10:28.450639 10773 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-10 16:07:35.974477000 Z\n- &1 2019-07-11 16:15:35.088139000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-12 16:03:21.300168092 Z\nsign_in_count:\n- 200\n- 201\n 405 \N 189.186.35.54 d66f22a5-2740-4a71-bce7-65c729632e08 2019-07-12 16:03:21.330938 10774 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xsVwmC3kQ9SJ5vHjxXc6\n- E6pvy_57-ks6Qfw2WuHA\n 406 \N 189.186.35.54 d66f22a5-2740-4a71-bce7-65c729632e08 2019-07-12 16:03:21.355112 10775 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-11 16:07:58.251479000 Z\n- &1 2019-07-12 01:51:35.392735000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-12 16:05:14.513007672 Z\nsign_in_count:\n- 488\n- 489\n 978 \N 189.186.35.54 d103fa1a-d107-4521-9972-5b8c4050981b 2019-07-12 16:05:14.518808 10776 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 2i7bEBcNhg5cp8ZyYLyB\n- uDLNrwmFQhsTFYhoLUtY\n 979 \N 189.186.35.54 d103fa1a-d107-4521-9972-5b8c4050981b 2019-07-12 16:05:14.533055 10777 301 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1091E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1091.0 189.186.35.54 4d93db13-ea47-41ff-ab03-41e7d2ab14a0 2019-07-12 16:08:55.698428 10778 302 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.4E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 400.0 189.186.35.54 0f573684-fe22-4eb1-bc0a-849367ed1fde 2019-07-12 16:10:55.446528 10779 141 Customer \N \N 2 User \N create ---\nnick_name: KARLA BENITEZ ALVAREZ\nphone: "(672) 723-2362"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KARLA BENITEZ ALVAREZ fue registrado. 189.186.35.54 61552dde-61c0-4ced-a4a8-fcd1c9b44dd4 2019-07-12 18:01:14.48832 10780 833 Sale \N \N 2 User \N create ---\ncustomer_id: 141\nuser_id: 2\nopen_cash_register_id: 301\namount: !ruby/object:BigDecimal 18:0.949E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.949E3\nstatus: 0\ndate_sale: 2019-07-12\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-471\nexpiration_date: 2019-08-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.35.54 905d64be-355c-46ac-83b2-da92e7dc5ed2 2019-07-12 18:01:31.890275 10781 537 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.35.54 905d64be-355c-46ac-83b2-da92e7dc5ed2 2019-07-12 18:01:31.955097 10782 1138 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 301\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 833\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-471\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-471 189.186.35.54 d02febbd-abd9-4281-9e14-5c291da64bc2 2019-07-12 18:01:58.33701 10783 833 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.35.54 2ad42118-a2df-427b-87e1-c0c5b6b353c7 2019-07-12 18:01:59.497516 10837 516 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.35.54 a6974d24-7b3c-4a67-81b0-f2715c315748 2019-07-13 18:02:58.129872 10784 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-11 16:15:35.088139000 Z\n- &1 2019-07-12 16:03:21.300168000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-12 21:20:10.243195382 Z\nsign_in_count:\n- 201\n- 202\n 407 \N 189.186.35.54 7710ea86-3a1e-4351-beb8-4f3ee3994125 2019-07-12 21:20:10.250539 10785 2 User \N \N 2 User \N update ---\nunique_session_id:\n- E6pvy_57-ks6Qfw2WuHA\n- btScnxXS87yBBRB-ipMz\n 408 \N 189.186.35.54 7710ea86-3a1e-4351-beb8-4f3ee3994125 2019-07-12 21:20:10.279421 10786 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-12 16:03:21.300168000 Z\n- &1 2019-07-12 21:20:10.243195000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-12 21:20:11.789464504 Z\nsign_in_count:\n- 202\n- 203\n 409 \N 189.186.35.54 90cb0bf1-157b-4f36-8101-3d37962fca2c 2019-07-12 21:20:11.795073 10787 2 User \N \N 2 User \N update ---\nunique_session_id:\n- btScnxXS87yBBRB-ipMz\n- 2dmtbqL2P-VsYMg61Jp2\n 410 \N 189.186.35.54 90cb0bf1-157b-4f36-8101-3d37962fca2c 2019-07-12 21:20:11.807813 10788 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-12 21:20:10.243195000 Z\n- &1 2019-07-12 21:20:11.789464000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-12 22:18:42.602970317 Z\nsign_in_count:\n- 203\n- 204\n 411 \N 189.186.35.54 b4f8a9a6-a8aa-4adc-8995-d968ba666524 2019-07-12 22:18:42.608675 10789 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 2dmtbqL2P-VsYMg61Jp2\n- SeZy_mWi6S3gcZVWTbJB\n 412 \N 189.186.35.54 b4f8a9a6-a8aa-4adc-8995-d968ba666524 2019-07-12 22:18:42.622737 10790 142 Customer \N \N 2 User \N create ---\nnick_name: MARIA ANTONIETA VATIZ VALDEZ\nphone: "(667) 424-2176"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIA ANTONIETA VATIZ VALDEZ fue registrado. 189.186.35.54 ee5865f3-a73c-40a0-a5dc-0dc9978eab54 2019-07-12 22:20:43.339022 10791 834 Sale \N \N 2 User \N create ---\ncustomer_id: 142\nuser_id: 2\nopen_cash_register_id: 301\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-07-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-472\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.35.54 d4cb7007-b48b-482a-9eda-ad5544614a57 2019-07-12 22:25:51.302436 10792 470 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.35.54 d4cb7007-b48b-482a-9eda-ad5544614a57 2019-07-12 22:25:51.330424 10793 834 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.35.54 a1b5fc03-2f79-421f-801c-2cc4835af086 2019-07-12 22:26:43.128356 10794 1139 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 301\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 834\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-472\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: 0000NOBK\ncustomer_account: 0000NOBK\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-472 189.186.35.54 a1b5fc03-2f79-421f-801c-2cc4835af086 2019-07-12 22:26:43.156153 10795 835 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 301\namount: !ruby/object:BigDecimal 18:0.84397E3\ntax: !ruby/object:BigDecimal 18:0.13504E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.97901E3\nstatus: 0\ndate_sale: 2019-07-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-473\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.35.54 1c5de0df-9aca-4ff4-85fc-60a24c426ef4 2019-07-13 00:50:42.258704 10796 518 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.35.54 1c5de0df-9aca-4ff4-85fc-60a24c426ef4 2019-07-13 00:50:42.299463 10797 835 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.35.54 7c7d8075-40e0-4841-91bd-c5322ebd6ea7 2019-07-13 00:50:54.30315 10798 1140 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 301\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.97901E3\nmove_type: '1'\nsale_id: 835\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-473\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.97901E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-473 189.186.35.54 7c7d8075-40e0-4841-91bd-c5322ebd6ea7 2019-07-13 00:50:54.337688 10799 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-11 00:47:40.435666000 Z\n- &1 2019-07-11 21:03:24.089719000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-13 00:52:30.674668874 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934046\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934446\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934446\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095349\n mask_addr: 4294967295\nsign_in_count:\n- 339\n- 340\n 680 \N 189.186.46.53 66fd84b6-64f1-4893-9894-6dab0e117b2f 2019-07-13 00:52:30.686948 10800 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zp-G653W7jkxCxY7BQT5\n- o4xZjyx61bG9R6F17D48\n 681 \N 189.186.46.53 66fd84b6-64f1-4893-9894-6dab0e117b2f 2019-07-13 00:52:30.710159 10801 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-11 21:03:24.089719000 Z\n- &1 2019-07-13 00:52:30.674668000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-13 00:52:31.005318988 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934446\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095349\n mask_addr: 4294967295\nsign_in_count:\n- 340\n- 341\n 682 \N 189.186.46.53 1d8701b1-18d7-4922-80f2-5a3e77854b51 2019-07-13 00:52:31.014481 10802 4 User \N \N 4 User \N update ---\nunique_session_id:\n- o4xZjyx61bG9R6F17D48\n- 7pd8gd4iX564mm843qQT\n 683 \N 189.186.46.53 1d8701b1-18d7-4922-80f2-5a3e77854b51 2019-07-13 00:52:31.036616 10803 126 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 301\nquantity: !ruby/object:BigDecimal 18:0.55E3\nstatus: 1\nobservations: "$500 SUELDO ANABELLY $50 COMIDA ROCIO"\nexpense_date: 2019-07-12\nexpense_code: PV1-E-105\n 1 Egreso por 550.0 registrado 189.186.35.54 c9f05ad7-a6b1-4be4-a334-d150d172fc37 2019-07-13 00:56:43.17629 10804 1141 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 301\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.55E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 126\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.35.54 c9f05ad7-a6b1-4be4-a334-d150d172fc37 2019-07-13 00:56:43.209585 10805 299 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 301\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.277801E4\namount_out: !ruby/object:BigDecimal 18:0.55E3\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.92E3\nphysical_cash: !ruby/object:BigDecimal 18:0.192E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.35.54 bc950843-5f29-4ef6-8ef7-bd65d054cd3b 2019-07-13 01:55:23.173459 10806 301 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.35.54 bc950843-5f29-4ef6-8ef7-bd65d054cd3b 2019-07-13 01:55:23.188099 10807 300 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 302\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.4E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.35.54 25f66efe-7921-45c4-b320-a0b127ed2f77 2019-07-13 02:03:09.711306 10808 302 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.35.54 25f66efe-7921-45c4-b320-a0b127ed2f77 2019-07-13 02:03:09.729698 10809 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-12 21:20:11.789464000 Z\n- &1 2019-07-12 22:18:42.602970000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-13 16:03:38.825839324 Z\nsign_in_count:\n- 204\n- 205\n 413 \N 189.186.35.54 9af36ca0-ac11-4d06-8bfc-0ba121c918ff 2019-07-13 16:03:38.857204 10810 2 User \N \N 2 User \N update ---\nunique_session_id:\n- SeZy_mWi6S3gcZVWTbJB\n- 4J7ZZXoZyHGW5kVMWjSx\n 414 \N 189.186.35.54 9af36ca0-ac11-4d06-8bfc-0ba121c918ff 2019-07-13 16:03:38.880104 10811 303 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.92E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 920.0 189.186.35.54 983cc19c-2a49-4034-9f3b-b50d2fbe473a 2019-07-13 16:10:09.547349 10812 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-12 01:51:35.392735000 Z\n- &1 2019-07-12 16:05:14.513007000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-13 16:12:22.501225717 Z\nsign_in_count:\n- 489\n- 490\n 980 \N 189.186.35.54 6f040340-16a0-44f2-92c2-5c5dd79ce3b6 2019-07-13 16:12:22.508065 10813 3 User \N \N 3 User \N update ---\nunique_session_id:\n- uDLNrwmFQhsTFYhoLUtY\n- bWfjQuKVTRm2j-WDzPzF\n 981 \N 189.186.35.54 6f040340-16a0-44f2-92c2-5c5dd79ce3b6 2019-07-13 16:12:22.522308 10814 304 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.4E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 400.0 189.186.35.54 63e7ee26-d824-4270-9d93-0012fa6a2247 2019-07-13 16:12:32.690766 10815 640 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.35.54 a99f87b4-1483-4404-8561-4d00a4dd851f 2019-07-13 17:50:58.752327 10816 640 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.35.54 36a36d17-5f68-49ce-b8ef-1d16fb3034cb 2019-07-13 17:51:02.311308 10817 159 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.35.54 b9402366-0a13-41b7-8b46-a4661d49cec1 2019-07-13 17:51:25.27374 10818 159 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.35.54 a6450636-9514-47d8-9dac-a11f55634a63 2019-07-13 17:51:37.881944 10819 158 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.35.54 414f7b6d-3dc1-4075-88a4-bf952adfe47d 2019-07-13 17:51:50.885755 10820 158 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.35.54 6112e404-703d-49f9-8c51-22c0762c0502 2019-07-13 17:51:54.143465 10821 65 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-07-13\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.35.54 22f38d24-34cd-4c5f-a0e7-975d2c7a6c58 2019-07-13 17:51:58.65979 10822 65 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-13\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.35.54 7558a364-bd87-4b6d-828a-05f57609fca8 2019-07-13 17:58:58.475239 10823 676 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 574\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 7558a364-bd87-4b6d-828a-05f57609fca8 2019-07-13 17:58:58.496105 10824 677 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 160\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 7558a364-bd87-4b6d-828a-05f57609fca8 2019-07-13 17:58:58.52681 10825 417 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.35.54 fa4bd284-0bde-4926-9b91-7f6ad7669577 2019-07-13 17:59:38.347719 10826 417 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.35.54 f7dc8a1d-ff1a-49c2-bc44-9133a431d038 2019-07-13 17:59:42.448564 10827 654 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.35.54 846d98cd-5a93-4ce4-bd5c-2dc9d384f28c 2019-07-13 18:00:05.926086 10828 654 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.35.54 1a83e4c9-ffe0-4590-aa16-8fddbad1a0aa 2019-07-13 18:00:09.933392 10829 657 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.35.54 6873de0b-c741-4af5-9369-62f438ff6d21 2019-07-13 18:00:37.037111 10830 657 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.35.54 d9d23438-a2c8-4993-a367-06402543ec83 2019-07-13 18:00:42.634248 10831 549 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.35.54 9a618daa-5f06-4581-b755-be16bfe003a7 2019-07-13 18:01:16.998734 10832 549 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.35.54 f108163a-a114-4f06-9d9e-d28773827ade 2019-07-13 18:01:25.723105 10833 66 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-07-13\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.35.54 d859be6f-0193-4d00-80cc-ba61020d2777 2019-07-13 18:01:26.423245 10834 516 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.35.54 06795a65-9cb5-48df-9218-b419a7f89670 2019-07-13 18:02:40.22438 10835 396 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.35.54 8737bd4f-165f-4888-8fd2-7614ff348522 2019-07-13 18:02:49.358586 10836 396 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.35.54 47c08258-a24f-4361-9a6e-daa2cb9ee874 2019-07-13 18:02:56.199524 10951 833 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.35.54 7dd4501a-ae20-407d-8a27-e7de00b899be 2019-07-14 00:46:54.351707 10838 67 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-07-13\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.35.54 e7b95a0b-5ef2-46bd-a60e-be23286e143c 2019-07-13 18:03:05.420367 10839 103 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-65\namount: !ruby/object:BigDecimal 18:0.28E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.28E3\nobservations: ''\npurchase_date: 2019-07-13\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-65 por $ 280.0 MXN creada. 189.186.35.54 963447f8-ab73-47b4-bb57-e36347f53807 2019-07-13 18:10:11.55995 10840 159 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.35.54 963447f8-ab73-47b4-bb57-e36347f53807 2019-07-13 18:10:11.587849 10841 13 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 189.186.35.54 3468c178-d884-411e-af5b-7bfe25b138c8 2019-07-13 18:10:43.867234 10842 6 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.35.54 371f1567-714c-484c-b0ad-edb352d369ec 2019-07-13 18:11:18.154906 10843 6 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.35.54 d9914232-cdfb-460b-ab77-23a26aa4180e 2019-07-13 18:11:30.189594 10844 13 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.35.54 51eb66c7-2282-473a-8d4b-d527601a0b62 2019-07-13 18:11:32.125902 10845 68 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-07-13\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.35.54 d37f7298-5bcf-472b-bde5-ce77345d14c8 2019-07-13 18:11:33.938885 10846 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-12 16:05:14.513007000 Z\n- &1 2019-07-13 16:12:22.501225000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-13 18:13:58.407938977 Z\nsign_in_count:\n- 490\n- 491\n 982 \N 189.186.35.54 a210a4ed-832a-4888-a531-5459b32bbe63 2019-07-13 18:13:58.414081 10847 3 User \N \N 3 User \N update ---\nunique_session_id:\n- bWfjQuKVTRm2j-WDzPzF\n- 4gnygw_XjS1RLhYucgaE\n 983 \N 189.186.35.54 a210a4ed-832a-4888-a531-5459b32bbe63 2019-07-13 18:13:58.428028 10848 517 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.35.54 b45ff45a-6435-40b6-b90b-3be918a98f51 2019-07-13 18:14:29.971193 10849 517 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.35.54 48df3163-fb64-46ce-a57d-46c9a77a8b8d 2019-07-13 18:14:33.350729 10850 69 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-07-13\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.35.54 d5089435-1108-41d6-9414-45a92aeddd0f 2019-07-13 18:14:34.489087 10851 68 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-13\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.35.54 58d62084-76d2-4494-8f4f-614454243d97 2019-07-13 18:14:52.233639 10852 678 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 8\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 58d62084-76d2-4494-8f4f-614454243d97 2019-07-13 18:14:52.290502 10853 679 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 15\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 58d62084-76d2-4494-8f4f-614454243d97 2019-07-13 18:14:52.3115 10854 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-13 16:12:22.501225000 Z\n- &1 2019-07-13 18:13:58.407938000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-13 18:21:06.467929058 Z\nsign_in_count:\n- 491\n- 492\n 984 \N 189.186.35.54 8fe02dd6-208d-4e47-bf35-92a1c0beb12f 2019-07-13 18:21:06.474415 10855 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 4gnygw_XjS1RLhYucgaE\n- H7dLptAgUEZYjAdFz9SJ\n 985 \N 189.186.35.54 8fe02dd6-208d-4e47-bf35-92a1c0beb12f 2019-07-13 18:21:06.488306 10856 183 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.35.54 aec12f07-47d0-4790-bc27-218a11f63ab1 2019-07-13 18:23:52.07857 10857 183 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.35.54 7de5713c-9a01-43ac-8c9d-90b3af2d9e6d 2019-07-13 18:23:55.250726 10858 237 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.35.54 57bd6b9a-9dbb-4ef7-adbf-d572d644c59c 2019-07-13 18:24:12.418354 10859 237 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.35.54 ac55984b-aa7b-4804-b613-309a2fd0506b 2019-07-13 18:24:16.144511 10860 70 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-07-13\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.35.54 c8db335f-a934-4b6a-a6c4-709bc7db92d0 2019-07-13 18:24:17.014474 10861 69 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-13\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.35.54 8552ccc4-9d43-4b67-acf2-75d4da62fe53 2019-07-13 18:24:25.964656 10862 179 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.35.54 8552ccc4-9d43-4b67-acf2-75d4da62fe53 2019-07-13 18:24:25.98121 10863 67 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-13\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.35.54 45ee5f55-9810-4167-a3e9-dbbf6d9b4732 2019-07-13 18:24:35.701576 10864 680 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 398\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 45ee5f55-9810-4167-a3e9-dbbf6d9b4732 2019-07-13 18:24:35.727234 10865 5 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.7E1\n 3 \N 189.186.35.54 45ee5f55-9810-4167-a3e9-dbbf6d9b4732 2019-07-13 18:24:35.749481 10866 66 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-13\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.35.54 2a1624e9-e8d2-4308-98c9-4cafcfcecee0 2019-07-13 18:24:48.208621 10867 632 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.35.54 2a1624e9-e8d2-4308-98c9-4cafcfcecee0 2019-07-13 18:24:48.224837 10868 681 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 419\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 2a1624e9-e8d2-4308-98c9-4cafcfcecee0 2019-07-13 18:24:48.244701 10869 647 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.35.54 2a1624e9-e8d2-4308-98c9-4cafcfcecee0 2019-07-13 18:24:48.261619 10870 642 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.35.54 2a1624e9-e8d2-4308-98c9-4cafcfcecee0 2019-07-13 18:24:48.277423 10871 2 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.35.54 01415f2f-fc1c-4fc6-a927-5db07b9d0e54 2019-07-13 18:30:37.743596 10872 8 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.35.54 e0f09e20-d618-440d-a76b-e3683e2a1afa 2019-07-13 18:30:49.576667 10873 2 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.35.54 5c49da91-2b3b-495f-ab01-578d07fab3af 2019-07-13 18:31:06.821159 10874 8 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.35.54 c81fb3be-d884-4b16-9094-e877eaf9e006 2019-07-13 18:31:34.669828 10875 71 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-07-13\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.35.54 a930cc9a-abfb-4e37-aadf-4daae35f508a 2019-07-13 18:31:35.424395 10876 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-13 18:13:58.407938000 Z\n- &1 2019-07-13 18:21:06.467929000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-13 18:31:54.529766517 Z\nsign_in_count:\n- 492\n- 493\n 986 \N 189.186.35.54 61fd973b-c2d4-49fd-a86a-55e828e79381 2019-07-13 18:31:54.535389 10877 3 User \N \N 3 User \N update ---\nunique_session_id:\n- H7dLptAgUEZYjAdFz9SJ\n- 3Bh62JWwftF7uZ34EiEY\n 987 \N 189.186.35.54 61fd973b-c2d4-49fd-a86a-55e828e79381 2019-07-13 18:31:54.548049 10878 71 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-13\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.35.54 a417f1d2-3a43-431c-874f-09b158659c99 2019-07-13 18:32:13.372395 10879 682 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 10\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 a417f1d2-3a43-431c-874f-09b158659c99 2019-07-13 18:32:13.398513 10880 70 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-13\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.35.54 c8a5555d-e991-474b-b168-bb80d00b9587 2019-07-13 18:32:22.721935 10881 683 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 185\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 c8a5555d-e991-474b-b168-bb80d00b9587 2019-07-13 18:32:22.753595 10882 684 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 239\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 c8a5555d-e991-474b-b168-bb80d00b9587 2019-07-13 18:32:22.784342 10883 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-13 18:21:06.467929000 Z\n- &1 2019-07-13 18:31:54.529766000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-13 18:33:35.498865796 Z\nsign_in_count:\n- 493\n- 494\n 988 \N 189.186.35.54 a468ee4a-bba5-4205-a514-78b1b938c58d 2019-07-13 18:33:35.507925 10884 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 3Bh62JWwftF7uZ34EiEY\n- 4kMJsXgDpV7PAW4kANt4\n 989 \N 189.186.35.54 a468ee4a-bba5-4205-a514-78b1b938c58d 2019-07-13 18:33:35.523691 10885 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-13 18:31:54.529766000 Z\n- &1 2019-07-13 18:33:35.498865000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-13 18:44:35.396464226 Z\nsign_in_count:\n- 494\n- 495\n 990 \N 189.186.35.54 ab6beafe-2429-4d6a-9fde-ade8aa9af5c4 2019-07-13 18:44:35.402794 10886 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 4kMJsXgDpV7PAW4kANt4\n- xhyNNv94KybCznUbvC-_\n 991 \N 189.186.35.54 ab6beafe-2429-4d6a-9fde-ade8aa9af5c4 2019-07-13 18:44:35.418464 10887 515 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.35.54 4e28d8c3-e0a3-42ef-baf6-18643584898a 2019-07-13 18:45:09.873899 10888 515 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.35.54 ffc44256-c0ad-4b03-b47c-95f8c219bf6c 2019-07-13 18:45:13.024521 10889 72 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-07-13\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.35.54 bd26873b-25be-4eec-866d-732a01c6815c 2019-07-13 18:45:16.426314 10890 72 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-13\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.35.54 58b9beae-35e9-4cd0-ba70-435f5795c256 2019-07-13 18:45:56.960291 10891 251 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.35.54 58b9beae-35e9-4cd0-ba70-435f5795c256 2019-07-13 18:45:56.977609 10892 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-13 00:52:30.674668000 Z\n- &1 2019-07-13 00:52:31.005318000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-13 18:48:36.847149283 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095349\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094177\n mask_addr: 4294967295\nsign_in_count:\n- 341\n- 342\n 684 \N 189.186.41.161 f6337d56-9f5c-4a44-b686-fc540115cfaf 2019-07-13 18:48:36.854201 10893 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7pd8gd4iX564mm843qQT\n- SQuZb8N_wDXs12h9Gwjg\n 685 \N 189.186.41.161 f6337d56-9f5c-4a44-b686-fc540115cfaf 2019-07-13 18:48:36.869279 10894 836 Sale \N \N 2 User \N create ---\ncustomer_id: 122\nuser_id: 2\nopen_cash_register_id: 303\namount: !ruby/object:BigDecimal 18:0.146466E4\ntax: !ruby/object:BigDecimal 18:0.23435E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.169901E4\nstatus: 0\ndate_sale: 2019-07-13\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-474\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.35.54 9c1f55e1-9351-4d03-8832-08c11d3434eb 2019-07-13 20:18:30.805484 10895 57 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.35.54 9c1f55e1-9351-4d03-8832-08c11d3434eb 2019-07-13 20:18:30.871196 10896 1142 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 222\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 712\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.35.54 550b4fd7-e0b3-4682-9eaa-9e7540cb07f7 2019-07-13 20:19:47.95216 10897 712 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.35.54 550b4fd7-e0b3-4682-9eaa-9e7540cb07f7 2019-07-13 20:19:47.972729 10898 817 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.35.54 550b4fd7-e0b3-4682-9eaa-9e7540cb07f7 2019-07-13 20:19:47.992464 10899 1142 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 222\n- 303\n 2 movimiento de efectivo por venta con folio PV1-V-401 189.186.35.54 550b4fd7-e0b3-4682-9eaa-9e7540cb07f7 2019-07-13 20:19:48.004217 10900 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-13 18:33:35.498865000 Z\n- &1 2019-07-13 18:44:35.396464000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-13 23:49:33.045981182 Z\nsign_in_count:\n- 495\n- 496\n 992 \N 189.186.35.54 f70ffdef-d865-4960-9dac-244e7a2c1394 2019-07-13 23:49:33.054075 10901 3 User \N \N 3 User \N update ---\nunique_session_id:\n- xhyNNv94KybCznUbvC-_\n- KD2hdLQQ-U2YTzKe6mBf\n 993 \N 189.186.35.54 f70ffdef-d865-4960-9dac-244e7a2c1394 2019-07-13 23:49:33.075279 10902 837 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 304\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-07-13\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-361\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.35.54 0df0cd68-bb0e-4473-a96b-d88e66f59617 2019-07-13 23:49:50.827317 10903 370 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.35.54 0df0cd68-bb0e-4473-a96b-d88e66f59617 2019-07-13 23:49:50.862662 10904 837 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.35.54 10fa406a-a242-458d-a4de-6b4a57a741dd 2019-07-13 23:51:34.667475 10905 1143 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 304\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 837\ncardnumber: 5672\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-361\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-361 189.186.35.54 10fa406a-a242-458d-a4de-6b4a57a741dd 2019-07-13 23:51:34.69179 10906 838 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 303\namount: !ruby/object:BigDecimal 18:0.539E3\ntax: !ruby/object:BigDecimal 18:0.6E2\ndiscount: !ruby/object:BigDecimal 18:0.164E3\ntotal: !ruby/object:BigDecimal 18:0.435E3\nstatus: 0\ndate_sale: 2019-07-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-475\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.35.54 690b0fb7-e9ed-409b-9fa0-c0e7db7800db 2019-07-13 23:55:38.974378 10907 89 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.35.54 690b0fb7-e9ed-409b-9fa0-c0e7db7800db 2019-07-13 23:55:39.002186 10908 838 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.35.54 07f6fb25-50a2-4763-8f77-97dda1500ac7 2019-07-13 23:55:59.367725 10909 1144 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 303\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.435E3\nmove_type: '1'\nsale_id: 838\ncardnumber: 821\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-475\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-475 189.186.35.54 07f6fb25-50a2-4763-8f77-97dda1500ac7 2019-07-13 23:55:59.392158 10910 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-12 22:18:42.602970000 Z\n- &1 2019-07-13 16:03:38.825839000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-14 00:00:48.878769677 Z\nsign_in_count:\n- 205\n- 206\n 415 \N 189.186.35.54 563be87f-b6c8-4f0c-8555-e580f2861d47 2019-07-14 00:00:48.887976 10911 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 4J7ZZXoZyHGW5kVMWjSx\n- yT_2-pLp-nseJzQZUe8D\n 416 \N 189.186.35.54 563be87f-b6c8-4f0c-8555-e580f2861d47 2019-07-14 00:00:48.90841 10912 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-13 16:03:38.825839000 Z\n- &1 2019-07-14 00:00:48.878769000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-14 00:04:17.719740945 Z\nsign_in_count:\n- 206\n- 207\n 417 \N 189.186.35.54 e9a1ec02-8dc3-44bc-8714-6789d9f3d10d 2019-07-14 00:04:17.728438 10913 2 User \N \N 2 User \N update ---\nunique_session_id:\n- yT_2-pLp-nseJzQZUe8D\n- QzfYfCT797xFj-QKFB69\n 418 \N 189.186.35.54 e9a1ec02-8dc3-44bc-8714-6789d9f3d10d 2019-07-14 00:04:17.747987 10914 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-13 18:44:35.396464000 Z\n- &1 2019-07-13 23:49:33.045981000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-14 00:05:09.236757736 Z\nsign_in_count:\n- 496\n- 497\n 994 \N 189.186.35.54 4f30c87e-1697-4066-8262-aa1ea9f5bd38 2019-07-14 00:05:09.243207 10915 3 User \N \N 3 User \N update ---\nunique_session_id:\n- KD2hdLQQ-U2YTzKe6mBf\n- h8Pa_mXZ7QME_rfFn_Ym\n 995 \N 189.186.35.54 4f30c87e-1697-4066-8262-aa1ea9f5bd38 2019-07-14 00:05:09.256548 10916 839 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 304\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-07-13\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-362\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.35.54 9eecff46-fb85-49cc-ae1e-ff643a47378b 2019-07-14 00:06:23.625226 10917 404 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 189.186.35.54 9eecff46-fb85-49cc-ae1e-ff643a47378b 2019-07-14 00:06:23.656628 10918 839 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.35.54 5bfaff02-eacc-4fb3-adac-8efa142c140f 2019-07-14 00:06:34.466718 10919 1145 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 304\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 839\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-362\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-362 189.186.35.54 5bfaff02-eacc-4fb3-adac-8efa142c140f 2019-07-14 00:06:34.50265 10981 550 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.35.54 a52c9250-73ea-4df8-af01-51284e8b340a 2019-07-14 01:27:37.911066 10920 840 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 303\namount: !ruby/object:BigDecimal 18:0.38707E3\ntax: !ruby/object:BigDecimal 18:0.6193E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.449E3\nstatus: 0\ndate_sale: 2019-07-13\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-476\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.35.54 c0048c4b-ee29-492e-ac43-da83a90eaa32 2019-07-14 00:06:58.515024 10921 114 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.35.54 c0048c4b-ee29-492e-ac43-da83a90eaa32 2019-07-14 00:06:58.544495 10922 840 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.35.54 3d42e7a2-6260-4c26-bd11-d29cefd8f1da 2019-07-14 00:07:03.4616 10923 1146 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 303\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.449E3\nmove_type: '1'\nsale_id: 840\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-476\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.449E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-476 189.186.35.54 3d42e7a2-6260-4c26-bd11-d29cefd8f1da 2019-07-14 00:07:03.489949 10924 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-13 23:49:33.045981000 Z\n- &1 2019-07-14 00:05:09.236757000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-14 00:12:10.386064463 Z\nsign_in_count:\n- 497\n- 498\n 996 \N 189.186.35.54 fea86362-a695-4f72-8cc0-46bd2176c2f2 2019-07-14 00:12:10.392834 10925 3 User \N \N 3 User \N update ---\nunique_session_id:\n- h8Pa_mXZ7QME_rfFn_Ym\n- t1rW6yXq1u5KTxkPz5Zf\n 997 \N 189.186.35.54 fea86362-a695-4f72-8cc0-46bd2176c2f2 2019-07-14 00:12:10.407974 10926 321 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.35.54 ec8fbbe4-6a4b-40da-83ea-cb8d9662a95e 2019-07-14 00:34:43.351375 10927 321 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.35.54 47f790d6-b933-4d7a-81c7-74fc23905061 2019-07-14 00:34:55.744483 10928 316 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.35.54 6b1e6ce0-3e91-4fd0-9e67-a0a12c4698ec 2019-07-14 00:35:05.049522 10929 316 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.35.54 ff151fde-6a6a-4ff8-ba6a-3ddea4cf99a8 2019-07-14 00:35:11.747781 10930 547 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.35.54 9589e9f8-78e2-4c11-8e64-2853f28fe70d 2019-07-14 00:35:22.453334 10931 547 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.35.54 704b6994-08ef-4cf9-8476-971c342269c1 2019-07-14 00:35:27.388666 10932 275 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.35.54 3d3344f5-5a95-4e1e-bc41-9c90e49a582d 2019-07-14 00:36:28.393666 10933 318 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.35.54 1e329f54-4a99-45d6-93ea-e93eafd78ca1 2019-07-14 00:36:33.195478 10934 318 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.35.54 99e52e75-da53-4542-9aba-bd4e1b05bf1f 2019-07-14 00:36:56.969532 10935 276 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.35.54 c575b1a2-bcb9-46cf-b8be-d7d91d92e8a7 2019-07-14 00:37:14.184036 10936 276 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.35.54 f74e48e1-b54f-45f4-b97c-a6117466118b 2019-07-14 00:37:18.671728 10937 327 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.35.54 d59e4eb8-3f91-4318-aef0-6ba2d0c85a24 2019-07-14 00:37:29.283116 10938 327 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.35.54 0926327d-37df-4315-8fc1-2f3d116bfd22 2019-07-14 00:37:37.343435 10939 402 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.35.54 b10567d3-87d4-44bb-b24a-c25fd7682aea 2019-07-14 00:38:11.844994 10940 402 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.35.54 7a0a886a-03f6-4ee1-b1ed-8e6c6120deac 2019-07-14 00:38:30.042191 10941 401 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.35.54 594c381b-d15a-4e5a-af77-f6b32a40b00f 2019-07-14 00:38:41.779858 10942 402 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.35.54 9795651b-1a88-41af-bd9b-fbb9cb2062bd 2019-07-14 00:39:07.336195 10943 402 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.35.54 c21490ba-acd2-45b9-9932-ad0733024acf 2019-07-14 00:39:12.030039 10944 543 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.35.54 104f4066-aa65-4e92-8c81-a1d462633386 2019-07-14 00:39:41.253364 10945 543 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.35.54 41968b25-2509-4549-816d-b722b3c24882 2019-07-14 00:39:45.713381 10946 544 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.35.54 5e4f8394-f85e-4f6c-85d1-db491ff29427 2019-07-14 00:39:52.923031 10947 73 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-07-13\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.35.54 60948844-c01b-4f66-bf61-618249ec0684 2019-07-14 00:40:10.154109 10948 644 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.35.54 9659535a-15d9-43f4-bc37-ca817e7d3195 2019-07-14 00:40:35.076231 10949 654 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.35.54 9659535a-15d9-43f4-bc37-ca817e7d3195 2019-07-14 00:40:35.11223 10950 1147 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 303\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 833\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-471 189.186.35.54 07e795aa-a86b-4b01-9101-678377b169be 2019-07-14 00:46:51.816054 10952 73 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-13\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.35.54 dd0a217c-bd42-4833-8374-862052b02f95 2019-07-14 01:18:25.779622 10953 685 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 323\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 dd0a217c-bd42-4833-8374-862052b02f95 2019-07-14 01:18:25.801417 10954 629 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.35.54 dd0a217c-bd42-4833-8374-862052b02f95 2019-07-14 01:18:25.819738 10955 138 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 21 \N 189.186.35.54 dd0a217c-bd42-4833-8374-862052b02f95 2019-07-14 01:18:25.841181 10956 686 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 277\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 dd0a217c-bd42-4833-8374-862052b02f95 2019-07-14 01:18:25.868445 10957 687 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 320\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 dd0a217c-bd42-4833-8374-862052b02f95 2019-07-14 01:18:25.890739 10958 688 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 278\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 dd0a217c-bd42-4833-8374-862052b02f95 2019-07-14 01:18:25.918465 10959 689 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 329\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 dd0a217c-bd42-4833-8374-862052b02f95 2019-07-14 01:18:25.945752 10960 690 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 403\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 dd0a217c-bd42-4833-8374-862052b02f95 2019-07-14 01:18:25.965846 10961 691 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 404\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 dd0a217c-bd42-4833-8374-862052b02f95 2019-07-14 01:18:25.98621 10962 90 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.35.54 dd0a217c-bd42-4833-8374-862052b02f95 2019-07-14 01:18:26.004088 10963 143 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.35.54 dd0a217c-bd42-4833-8374-862052b02f95 2019-07-14 01:18:26.024411 10964 603 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.35.54 6073ee23-60ef-4c8b-a583-4d10f65ecf54 2019-07-14 01:19:00.401592 10965 603 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.35.54 0add3096-daec-4949-a6d4-c7aca0dcc524 2019-07-14 01:19:07.790192 10966 601 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 189.186.35.54 da2ed69a-0296-4021-bb16-75805c4d4ca6 2019-07-14 01:19:31.437215 10967 601 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 189.186.35.54 3e2415a9-7a5c-4fcc-9c41-fdecfc51f076 2019-07-14 01:19:37.141012 10968 601 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 189.186.35.54 3af4e88e-da49-4836-864b-45066937b287 2019-07-14 01:19:37.833927 10969 601 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 189.186.35.54 80980873-33a9-47fe-adfe-c374181a5092 2019-07-14 01:19:38.578944 10970 529 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.35.54 43653281-2646-4867-b8db-6aa91267a079 2019-07-14 01:19:48.208467 10971 529 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.35.54 d1d266d6-2f98-4431-aaca-debf46ad9056 2019-07-14 01:19:54.355119 10972 74 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-07-13\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.35.54 0aba63af-d659-42e3-82b8-06d173a637a6 2019-07-14 01:19:55.309759 10973 74 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-13\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.35.54 7313b8b5-25ad-4988-8611-c8a877f3aecc 2019-07-14 01:22:24.698387 10974 692 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 550\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 7313b8b5-25ad-4988-8611-c8a877f3aecc 2019-07-14 01:22:24.72435 10975 693 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 548\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 7313b8b5-25ad-4988-8611-c8a877f3aecc 2019-07-14 01:22:24.750255 10976 694 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 502\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 7313b8b5-25ad-4988-8611-c8a877f3aecc 2019-07-14 01:22:24.774424 10977 288 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.35.54 2c422bc3-ab2c-4283-9160-5c8ed52357d6 2019-07-14 01:27:14.507015 10978 288 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.35.54 e3e9a14f-fd18-45ae-9e7c-2b83def6c190 2019-07-14 01:27:18.897036 10979 573 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.35.54 dcb5cd33-b7d8-4ed3-ab55-a85dfd394696 2019-07-14 01:27:25.151526 10980 573 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.35.54 3b50c0d4-5d91-49fe-abb9-20f4ac5cf47f 2019-07-14 01:27:30.643431 10982 550 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.35.54 24d080f1-c66c-47ea-9420-c10271cdf04e 2019-07-14 01:27:42.400888 10983 667 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.35.54 fb86dacf-2b29-4545-9895-708a7f52d09b 2019-07-14 01:27:49.081054 10984 667 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.35.54 bc5a199a-d753-4a32-a9b9-6192ac3b9835 2019-07-14 01:27:52.893145 10985 667 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.35.54 0739a447-13f7-41f0-b988-592e07845c29 2019-07-14 01:28:00.398154 10986 75 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-07-13\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.35.54 918352e8-16af-438d-91e2-366ce9baaa6e 2019-07-14 01:28:05.783786 10987 649 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.35.54 be95cfec-2339-42de-9d93-527f4f0e9c78 2019-07-14 01:35:55.797452 10988 649 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.35.54 7a6f7a27-2f35-42d5-934c-5b4d37ed9126 2019-07-14 01:36:02.365056 10989 649 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.35.54 477b49f4-7a42-4d6a-95c9-b6b193648bba 2019-07-14 01:36:05.478442 10990 649 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.35.54 501e07e4-5b2a-49f4-89da-5bdabfc66552 2019-07-14 01:36:09.297936 10991 76 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-07-13\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.35.54 957811c3-6d75-42a9-9e9f-f48db4bdcbf5 2019-07-14 01:36:29.214176 10992 235 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.35.54 059a6175-f9bf-448c-96d8-46122266ddf6 2019-07-14 01:41:17.520181 10993 235 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.35.54 e9dcc4b2-0cd5-4e54-a7b1-d7f845706dd8 2019-07-14 01:41:21.967242 10994 236 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.35.54 15c32b4c-4c1f-457e-ac47-cedc5ad93324 2019-07-14 01:41:37.149049 10995 236 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.35.54 db45166d-ed33-42c3-80e8-6f2bfb692fc0 2019-07-14 01:41:43.02265 10996 77 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-07-13\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.35.54 40ee1f52-5a21-4183-96d8-8acc9fb9ebd9 2019-07-14 01:41:43.756303 10997 76 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-13\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.35.54 616b12f9-95c2-4fa2-a34a-9f7dce02ed30 2019-07-14 01:43:11.809417 10998 633 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.35.54 616b12f9-95c2-4fa2-a34a-9f7dce02ed30 2019-07-14 01:43:11.826128 10999 75 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-13\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.35.54 bc7a8305-4e8b-4f2d-9e1f-9e6c7c07408b 2019-07-14 01:43:24.751231 11000 663 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.35.54 bc7a8305-4e8b-4f2d-9e1f-9e6c7c07408b 2019-07-14 01:43:24.775351 11001 553 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.35.54 bc7a8305-4e8b-4f2d-9e1f-9e6c7c07408b 2019-07-14 01:43:24.804165 11002 695 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 532\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 bc7a8305-4e8b-4f2d-9e1f-9e6c7c07408b 2019-07-14 01:43:24.837133 11003 696 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 290\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 bc7a8305-4e8b-4f2d-9e1f-9e6c7c07408b 2019-07-14 01:43:24.867128 11004 3 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 189.186.35.54 9e438331-7e0b-4ed2-ab6f-040f9e24e8ee 2019-07-14 01:46:28.817189 11005 3 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.9E1\n 3 \N 189.186.35.54 db8b1a5f-e1f5-4a17-bf0c-2e72e2f09da9 2019-07-14 01:46:38.773433 11006 3 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 4 \N 189.186.35.54 1b830659-6c07-42b1-b1c7-4dacdf1a38f0 2019-07-14 01:47:00.38617 11007 127 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 304\nquantity: !ruby/object:BigDecimal 18:0.72E3\nstatus: 1\nobservations: SUELDO YARETZI\nexpense_date: 2019-07-13\nexpense_code: PV2-E-22\n 1 Egreso por 720.0 registrado 189.186.35.54 009811ba-3f64-4d97-866b-c930fe739365 2019-07-14 01:54:03.726271 11008 1148 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 304\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.72E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 127\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.35.54 009811ba-3f64-4d97-866b-c930fe739365 2019-07-14 01:54:03.746023 11009 128 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 303\nquantity: !ruby/object:BigDecimal 18:0.678E3\nstatus: 1\nobservations: "$628 SUELDO $50 COMIDA"\nexpense_date: 2019-07-13\nexpense_code: PV1-E-106\n 1 Egreso por 678.0 registrado 189.186.35.54 fb7d1db7-cba2-4056-803e-f4061853d555 2019-07-14 01:55:43.533288 11010 1149 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 303\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.678E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 128\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.35.54 fb7d1db7-cba2-4056-803e-f4061853d555 2019-07-14 01:55:43.551827 11011 301 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 304\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1098E4\namount_out: !ruby/object:BigDecimal 18:0.72E3\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.179E3\nphysical_cash: !ruby/object:BigDecimal 18:0.179E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.35.54 42e9981b-81ca-4aa8-8fa8-1283da98375e 2019-07-14 01:55:48.076137 11012 304 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.35.54 42e9981b-81ca-4aa8-8fa8-1283da98375e 2019-07-14 01:55:48.090918 11013 1150 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.42E3\nmove_type: '1'\nsale_id: 182\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAMANTHA\n 1 \N 189.186.35.54 48a6f559-73c8-4a9b-9542-cbd5f71e1826 2019-07-14 02:03:06.969839 11014 1150 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 49\n- \n 2 movimiento de efectivo por venta con folio PV1-V-104 189.186.35.54 48a6f559-73c8-4a9b-9542-cbd5f71e1826 2019-07-14 02:03:06.997224 11015 1151 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.28E3\nmove_type: '1'\nsale_id: 182\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.28E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.35.54 a07cdb3c-f62b-4b78-8a47-cec2f1c0e5f9 2019-07-14 02:04:17.64829 11016 1151 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 49\n- \n 2 movimiento de efectivo por venta con folio PV1-V-104 189.186.35.54 a07cdb3c-f62b-4b78-8a47-cec2f1c0e5f9 2019-07-14 02:04:17.676988 11017 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-14 00:00:48.878769000 Z\n- &1 2019-07-14 00:04:17.719740000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-14 02:17:40.562603176 Z\nsign_in_count:\n- 207\n- 208\n 419 \N 189.186.35.54 8838672d-66d1-4253-8ba3-9110408b5d17 2019-07-14 02:17:40.571025 11018 2 User \N \N 2 User \N update ---\nunique_session_id:\n- QzfYfCT797xFj-QKFB69\n- xDsfJZRUyHUaQ2Gf-zh_\n 420 \N 189.186.35.54 8838672d-66d1-4253-8ba3-9110408b5d17 2019-07-14 02:17:40.588814 11019 302 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 303\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1933E4\namount_out: !ruby/object:BigDecimal 18:0.678E3\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.52E3\nphysical_cash: !ruby/object:BigDecimal 18:0.202E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.35.54 53744e57-986a-428f-92cd-89db2ebd6c9f 2019-07-14 02:22:41.363412 11020 303 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.35.54 53744e57-986a-428f-92cd-89db2ebd6c9f 2019-07-14 02:22:41.379579 11021 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-14 00:05:09.236757000 Z\n- &1 2019-07-14 00:12:10.386064000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-14 16:15:56.067623976 Z\nsign_in_count:\n- 498\n- 499\n 998 \N 189.186.35.54 376a97a4-4630-4af9-bc95-10728f1b0595 2019-07-14 16:15:56.097139 11022 3 User \N \N 3 User \N update ---\nunique_session_id:\n- t1rW6yXq1u5KTxkPz5Zf\n- 5YuuAo_rJC7BzK2AcgWM\n 999 \N 189.186.35.54 376a97a4-4630-4af9-bc95-10728f1b0595 2019-07-14 16:15:56.120929 11023 305 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.379E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 379.0 189.186.35.54 8442882d-ea98-4b2c-9259-7612cc2eee25 2019-07-14 16:18:05.036069 11024 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-13 00:52:31.005318000 Z\n- &1 2019-07-13 18:48:36.847149000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-14 19:44:44.450941661 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095349\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094177\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094177\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946114\n mask_addr: 4294967295\nsign_in_count:\n- 342\n- 343\n 686 \N 200.68.181.130 afb91bb6-4f1f-41d4-9ca1-4b087d323e07 2019-07-14 19:44:44.480303 11025 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SQuZb8N_wDXs12h9Gwjg\n- PE9yy-yGzKgfqesXKAvL\n 687 \N 200.68.181.130 afb91bb6-4f1f-41d4-9ca1-4b087d323e07 2019-07-14 19:44:44.502838 11026 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-09 23:58:57.534745000 Z\n- &1 2019-07-11 01:11:48.927373000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-14 20:57:41.051792339 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\nsign_in_count:\n- 251\n- 252\n 504 \N 189.186.35.54 00ebd054-fdeb-4313-b8a5-132f21208e86 2019-07-14 20:57:41.060245 11027 12 User \N \N 12 User \N update ---\nunique_session_id:\n- hRA5AHRot8U_1ojwd8cc\n- UpRw8zvTYrBEbGxDRMzh\n 505 \N 189.186.35.54 00ebd054-fdeb-4313-b8a5-132f21208e86 2019-07-14 20:57:41.078894 11028 303 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 305\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.379E3\nphysical_cash: !ruby/object:BigDecimal 18:0.379E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.35.54 406b8a4c-c64c-4131-8e32-e89cd0a8cea3 2019-07-14 20:58:19.191902 11029 305 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.35.54 406b8a4c-c64c-4131-8e32-e89cd0a8cea3 2019-07-14 20:58:19.221349 11030 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-14 00:04:17.719740000 Z\n- &1 2019-07-14 02:17:40.562603000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-15 15:59:48.691782904 Z\nsign_in_count:\n- 208\n- 209\n 421 \N 189.186.35.54 ca401da2-88cd-4ce6-81c7-993418daa1be 2019-07-15 15:59:48.72353 11031 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xDsfJZRUyHUaQ2Gf-zh_\n- ZW2gaSxD1P4x4yQUSZc4\n 422 \N 189.186.35.54 ca401da2-88cd-4ce6-81c7-993418daa1be 2019-07-15 15:59:48.746475 11032 306 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.52E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 520.0 189.186.35.54 4ecd1f63-8e22-4652-a64f-ec43336f7440 2019-07-15 16:00:00.267338 11033 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-14 00:12:10.386064000 Z\n- &1 2019-07-14 16:15:56.067623000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-15 18:02:47.055755157 Z\nsign_in_count:\n- 499\n- 500\n 1000 \N 189.186.35.54 122dc7ec-b07c-419e-a77e-aca281572eca 2019-07-15 18:02:47.06391 11034 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 5YuuAo_rJC7BzK2AcgWM\n- KQtUxSsgg8mHFEKQDWGu\n 1001 \N 189.186.35.54 122dc7ec-b07c-419e-a77e-aca281572eca 2019-07-15 18:02:47.087223 11129 594 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.35.54 6831f1d7-343d-4c54-b675-86e70fa72217 2019-07-15 22:58:06.554932 11035 307 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.379E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 379.0 189.186.35.54 7fec9a94-1712-4e1a-96f3-6736aea93430 2019-07-15 18:36:33.057041 11036 841 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 307\namount: !ruby/object:BigDecimal 18:0.1298E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1298E4\nstatus: 0\ndate_sale: 2019-07-15\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-363\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.35.54 3a8f92c2-561b-4676-b6b7-ce7b91a2d575 2019-07-15 18:37:37.865282 11037 676 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.35.54 3a8f92c2-561b-4676-b6b7-ce7b91a2d575 2019-07-15 18:37:37.904313 11038 487 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 11 \N 189.186.35.54 3a8f92c2-561b-4676-b6b7-ce7b91a2d575 2019-07-15 18:37:37.950052 11039 841 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.35.54 284ae1a0-a840-41c6-ae3a-38610d67460c 2019-07-15 18:37:57.835101 11040 1152 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 307\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1298E4\nmove_type: '1'\nsale_id: 841\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-363\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.102E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-363 189.186.35.54 284ae1a0-a840-41c6-ae3a-38610d67460c 2019-07-15 18:37:57.860495 11041 590 Product \N \N 2 User \N create ---\nsku: VES-590\nname: VST-0031\ndescription: "VESTIDO ROJO Y BLANCO VOILA ST. D1565\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-590 fue creado. 189.186.35.54 204c6e6f-63ec-4b46-aca3-2b7273f2ff16 2019-07-15 19:11:41.386495 11042 590 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000590'\n 2 \N 189.186.35.54 204c6e6f-63ec-4b46-aca3-2b7273f2ff16 2019-07-15 19:11:41.422851 11043 697 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 590\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 204c6e6f-63ec-4b46-aca3-2b7273f2ff16 2019-07-15 19:11:41.457444 11044 591 Product \N \N 2 User \N create ---\nsku: VES-591\nname: VST-0032\ndescription: VESTIDO FLOREADO UNA MAGA VOILA ST. D1345\nprice_base: !ruby/object:BigDecimal 18:0.5995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-591 fue creado. 189.186.35.54 9b50e9e4-9f01-4d9b-82cc-a44f7f304c40 2019-07-15 19:13:11.280113 11045 591 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000591'\n 2 \N 189.186.35.54 9b50e9e4-9f01-4d9b-82cc-a44f7f304c40 2019-07-15 19:13:11.308068 11046 698 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 591\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 9b50e9e4-9f01-4d9b-82cc-a44f7f304c40 2019-07-15 19:13:11.335139 11047 592 Product \N \N 2 User \N create ---\nsku: VES-592\nname: VST-0033\ndescription: VESTIDO FLOREADO LARGO DE PATOLES LATISTE ST. LD50978H\nprice_base: !ruby/object:BigDecimal 18:0.6495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-592 fue creado. 189.186.35.54 f1ca9a4f-dfe7-4de7-84b7-fb70a296dcd6 2019-07-15 19:14:01.937681 11048 592 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000592'\n 2 \N 189.186.35.54 f1ca9a4f-dfe7-4de7-84b7-fb70a296dcd6 2019-07-15 19:14:01.965479 11049 699 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 592\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 f1ca9a4f-dfe7-4de7-84b7-fb70a296dcd6 2019-07-15 19:14:01.997078 11050 593 Product \N \N 2 User \N create ---\nsku: BLU-593\nname: BLS-0045\ndescription: PANTIBLUSA BLANCA VALENTINE ST.T8675\nprice_base: !ruby/object:BigDecimal 18:0.3295E3\nprice_sale: !ruby/object:BigDecimal 18:0.659E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-593 fue creado. 189.186.35.54 f5231660-8da5-42af-bcec-5dc886d87998 2019-07-15 19:15:21.602218 11051 593 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000593'\n 2 \N 189.186.35.54 f5231660-8da5-42af-bcec-5dc886d87998 2019-07-15 19:15:21.631681 11052 700 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 593\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 f5231660-8da5-42af-bcec-5dc886d87998 2019-07-15 19:15:21.673915 11053 594 Product \N \N 2 User \N create ---\nsku: PAN-594\nname: PNT-0009\ndescription: PANTALON VALENTINE DE LICRA NEGRO ST. P10626\nprice_base: !ruby/object:BigDecimal 18:0.3245E3\nprice_sale: !ruby/object:BigDecimal 18:0.649E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-594 fue creado. 189.186.35.54 1b7143c2-35fc-4b80-b655-e88d576e959b 2019-07-15 19:16:30.014251 11054 594 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000594'\n 2 \N 189.186.35.54 1b7143c2-35fc-4b80-b655-e88d576e959b 2019-07-15 19:16:30.045682 11160 697 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.35.54 50068cba-2314-4896-824d-9d9136faec13 2019-07-15 23:48:46.717066 11055 701 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 594\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 1b7143c2-35fc-4b80-b655-e88d576e959b 2019-07-15 19:16:30.071931 11056 595 Product \N \N 2 User \N create ---\nsku: FAL-595\nname: FLD-0009\ndescription: FALDA M2 AMARILLA DE PATOLES ST. S2680\nprice_base: !ruby/object:BigDecimal 18:0.3495E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-595 fue creado. 189.186.35.54 fd6df5a9-16cc-40f4-9333-b51f131308c5 2019-07-15 19:20:01.206825 11057 595 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000595'\n 2 \N 189.186.35.54 fd6df5a9-16cc-40f4-9333-b51f131308c5 2019-07-15 19:20:01.23418 11058 702 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 595\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 fd6df5a9-16cc-40f4-9333-b51f131308c5 2019-07-15 19:20:01.261622 11059 104 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-66\namount: !ruby/object:BigDecimal 18:0.16812E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.16812E5\nobservations: ''\npurchase_date: 2019-07-15\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-66 por $ 16812.0 MXN creada. 189.186.35.54 0bd359cb-c2ec-4a79-bd66-45dec2687019 2019-07-15 19:21:29.665393 11060 697 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.35.54 0bd359cb-c2ec-4a79-bd66-45dec2687019 2019-07-15 19:21:29.704295 11061 698 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.35.54 0bd359cb-c2ec-4a79-bd66-45dec2687019 2019-07-15 19:21:29.728723 11062 699 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.35.54 0bd359cb-c2ec-4a79-bd66-45dec2687019 2019-07-15 19:21:29.751737 11063 700 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.35.54 0bd359cb-c2ec-4a79-bd66-45dec2687019 2019-07-15 19:21:29.77614 11064 701 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.35.54 0bd359cb-c2ec-4a79-bd66-45dec2687019 2019-07-15 19:21:29.800889 11065 702 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.35.54 0bd359cb-c2ec-4a79-bd66-45dec2687019 2019-07-15 19:21:29.824493 11066 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-05-23 19:24:36.246619000 Z\n- &1 2019-05-24 00:57:26.047710000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-15 19:22:47.116469048 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\nsign_in_count:\n- 57\n- 58\n 116 \N 189.186.35.54 de483971-08c1-4ec4-b03e-483157a9a739 2019-07-15 19:22:47.123408 11067 1 User \N \N 1 User \N update ---\nunique_session_id:\n- qdFjVx5RxNtyreuBwz81\n- yNw2Qk5FL2YYJPZwuG6D\n 117 \N 189.186.35.54 de483971-08c1-4ec4-b03e-483157a9a739 2019-07-15 19:22:47.13924 11068 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-14 02:17:40.562603000 Z\n- &1 2019-07-15 15:59:48.691782000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-15 19:40:15.208453047 Z\nsign_in_count:\n- 209\n- 210\n 423 \N 189.186.35.54 3b8432af-c98f-404d-8844-b38411a83824 2019-07-15 19:40:15.214752 11069 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ZW2gaSxD1P4x4yQUSZc4\n- iyPyadzTQiEcBooyqs8f\n 424 \N 189.186.35.54 3b8432af-c98f-404d-8844-b38411a83824 2019-07-15 19:40:15.227025 11070 596 Product \N \N 2 User \N create ---\nsku: VES-596\nname: VST-0034\ndescription: VESTIDO OLGADO CON CINTO LATISTE ST. LD51371B\nprice_base: !ruby/object:BigDecimal 18:0.6495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-596 fue creado. 189.186.35.54 f72ef710-9e7f-4965-b404-885beb8f2cbb 2019-07-15 19:52:56.69593 11071 596 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000596'\n 2 \N 189.186.35.54 f72ef710-9e7f-4965-b404-885beb8f2cbb 2019-07-15 19:52:56.723616 11072 703 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 596\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 f72ef710-9e7f-4965-b404-885beb8f2cbb 2019-07-15 19:52:56.753072 11073 596 Product \N \N 2 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.6495E3\n- !ruby/object:BigDecimal 27:0.551E3\n 3 El producto VES-596 fue modificado. 189.186.35.54 0766f887-b89e-4737-840f-5d6a38292df8 2019-07-15 20:23:39.422131 11074 105 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-67\namount: !ruby/object:BigDecimal 18:0.2755E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2755E4\nobservations: ''\npurchase_date: 2019-07-15\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-67 por $ 2755.0 MXN creada. 189.186.35.54 7f0b9b4f-6039-4f85-abd7-de6304b0c8dd 2019-07-15 20:24:06.517637 11075 703 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.35.54 7f0b9b4f-6039-4f85-abd7-de6304b0c8dd 2019-07-15 20:24:06.540067 11076 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-05-24 00:57:26.047710000 Z\n- &1 2019-07-15 19:22:47.116469000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-15 20:28:02.642942876 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\nsign_in_count:\n- 58\n- 59\n 118 \N 189.186.35.54 d61611da-9317-42b0-9b6e-bc5bb85da3c3 2019-07-15 20:28:02.650176 11077 1 User \N \N 1 User \N update ---\nunique_session_id:\n- yNw2Qk5FL2YYJPZwuG6D\n- _WYfEVgsxA-7DwqmScih\n 119 \N 189.186.35.54 d61611da-9317-42b0-9b6e-bc5bb85da3c3 2019-07-15 20:28:02.679125 11078 593 Product \N \N 1 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.3295E3\n- \nis_in_dollars:\n- false\n- true\nprice_base_dollars:\n- \n- !ruby/object:BigDecimal 18:0.2565E3\n 3 El producto BLU-593 fue modificado. 189.186.35.54 c28031df-6b71-4550-910d-060096b66dde 2019-07-15 20:30:14.664236 11127 595 Product \N \N 1 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.3495E3\n- !ruby/object:BigDecimal 18:0.266E3\n 3 El producto FAL-595 fue modificado. 189.186.35.54 58efa81d-f6d4-480f-befe-ecb84541d7d5 2019-07-15 22:50:00.154332 11079 593 Product \N \N 1 User \N update ---\nprice_base:\n- \n- !ruby/object:BigDecimal 18:0.2565E3\ninclude_sale_tax:\n- 0\n- 1\nis_in_dollars:\n- true\n- false\nprice_base_dollars:\n- !ruby/object:BigDecimal 18:0.2565E3\n- \n 4 El producto BLU-593 fue modificado. 189.186.35.54 7a5d2c20-8cf6-4e37-a42b-d1f65bbb3594 2019-07-15 20:31:22.660481 11080 594 Product \N \N 1 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.3245E3\n- !ruby/object:BigDecimal 18:0.2945E3\ninclude_sale_tax:\n- 0\n- 1\n 3 El producto PAN-594 fue modificado. 189.186.35.54 8f81e97a-1149-4685-ae39-84756e7def69 2019-07-15 20:33:44.374057 11081 592 Product \N \N 1 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.6495E3\n- !ruby/object:BigDecimal 18:0.551E3\ninclude_sale_tax:\n- 0\n- 1\n 3 El producto VES-592 fue modificado. 189.186.35.54 721980e2-f7e3-4d0a-aab8-d658c97dbbb5 2019-07-15 20:36:31.62385 11082 590 Product \N \N 1 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.5495E3\n- !ruby/object:BigDecimal 18:0.418E3\n 3 El producto VES-590 fue modificado. 189.186.35.54 3ebc0a3a-f814-4e6f-a74c-622b482e4b27 2019-07-15 20:37:36.397676 11083 591 Product \N \N 1 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.5995E3\n- !ruby/object:BigDecimal 18:0.418E3\n 3 El producto VES-591 fue modificado. 189.186.35.54 e145b23f-01b7-4e4b-b094-2be210e7623d 2019-07-15 20:38:26.399378 11084 593 Product \N \N 1 User \N update ---\ninclude_sale_tax:\n- 1\n- 0\n 5 El producto BLU-593 fue modificado. 189.186.35.54 55d853f3-ea50-4fec-9bcc-43d00990be8c 2019-07-15 20:38:58.204821 11085 594 Product \N \N 1 User \N update ---\ninclude_sale_tax:\n- 1\n- 0\n 4 El producto PAN-594 fue modificado. 189.186.35.54 fcd1b2f6-45ba-4b70-bfac-55707b9397a4 2019-07-15 20:39:37.914488 11086 592 Product \N \N 1 User \N update ---\ninclude_sale_tax:\n- 1\n- 0\n 4 El producto VES-592 fue modificado. 189.186.35.54 ea7de082-9034-498f-951a-01601d0d5c0e 2019-07-15 20:40:11.599102 11087 597 Product \N \N 2 User \N create ---\nsku: FAL-597\nname: FLD-0008\ndescription: FALDA BLUE S NEGRA DE PATOLES ST. S92139\nprice_base: !ruby/object:BigDecimal 18:0.24225E3\nprice_sale: !ruby/object:BigDecimal 18:0.649E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-597 fue creado. 189.186.35.54 44396333-04ef-4e50-9b73-39c39cecbe4a 2019-07-15 22:29:19.102391 11088 597 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000597'\n 2 \N 189.186.35.54 44396333-04ef-4e50-9b73-39c39cecbe4a 2019-07-15 22:29:19.130578 11089 704 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 597\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 44396333-04ef-4e50-9b73-39c39cecbe4a 2019-07-15 22:29:19.162799 11090 598 Product \N \N 2 User \N create ---\nsku: BLU-598\nname: BLS-0046\ndescription: BLUSA DE ENCAJE BLANCA VALENTINE ST. T10516\nprice_base: !ruby/object:BigDecimal 18:0.2755E3\nprice_sale: !ruby/object:BigDecimal 18:0.679E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-598 fue creado. 189.186.35.54 74761df8-a3bc-4423-a46e-8a63e672883e 2019-07-15 22:30:32.831499 11091 598 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000598'\n 2 \N 189.186.35.54 74761df8-a3bc-4423-a46e-8a63e672883e 2019-07-15 22:30:32.861963 11092 705 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 598\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 74761df8-a3bc-4423-a46e-8a63e672883e 2019-07-15 22:30:32.891886 11093 599 Product \N \N 2 User \N create ---\nsku: BLU-599\nname: BLS-0047\ndescription: BLUSA BALBOA DE ENCAJE ROSA FUCSIA ST. BT-19073\nprice_base: !ruby/object:BigDecimal 18:0.209E3\nprice_sale: !ruby/object:BigDecimal 18:0.519E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-599 fue creado. 189.186.35.54 d2519040-cb1c-43a3-8880-fd3c7ed42592 2019-07-15 22:31:24.677824 11094 599 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000599'\n 2 \N 189.186.35.54 d2519040-cb1c-43a3-8880-fd3c7ed42592 2019-07-15 22:31:24.708653 11095 706 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 599\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 d2519040-cb1c-43a3-8880-fd3c7ed42592 2019-07-15 22:31:24.743749 11096 600 Product \N \N 2 User \N create ---\nsku: BLU-600\nname: BLS-0048\ndescription: PLAYERA MUYMUY DE MICKEY ST. A0753\nprice_base: !ruby/object:BigDecimal 18:0.1615E3\nprice_sale: !ruby/object:BigDecimal 18:0.549E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-600 fue creado. 189.186.35.54 69bb22ed-50a1-46e7-b48a-839b990ceb58 2019-07-15 22:32:19.299492 11097 600 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000600'\n 2 \N 189.186.35.54 69bb22ed-50a1-46e7-b48a-839b990ceb58 2019-07-15 22:32:19.336448 11098 707 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 600\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 69bb22ed-50a1-46e7-b48a-839b990ceb58 2019-07-15 22:32:19.375007 11099 601 Product \N \N 2 User \N create ---\nsku: PAN-601\nname: PNT-0010\ndescription: PANTALON SANJOY DE MEZCLILLA CAMPANA ST. S3033\nprice_base: !ruby/object:BigDecimal 18:0.266E3\nprice_sale: !ruby/object:BigDecimal 18:0.669E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-601 fue creado. 189.186.35.54 a5ab765f-0fd0-4b03-8d0e-7bf39df061a7 2019-07-15 22:33:26.935116 11100 601 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000601'\n 2 \N 189.186.35.54 a5ab765f-0fd0-4b03-8d0e-7bf39df061a7 2019-07-15 22:33:26.964262 11128 594 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.35.54 d88028cc-e805-46c7-a547-a595c084bf5d 2019-07-15 22:58:02.609861 11101 708 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 601\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 a5ab765f-0fd0-4b03-8d0e-7bf39df061a7 2019-07-15 22:33:26.990927 11102 602 Product \N \N 2 User \N create ---\nsku: PAN-602\nname: PNT-0011\ndescription: 'PANTALON MUYMUY ROSA CON RALLAS '\nprice_base: !ruby/object:BigDecimal 18:0.22325E3\nprice_sale: !ruby/object:BigDecimal 18:0.569E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-602 fue creado. 189.186.35.54 7860439c-9f63-4210-b55b-697ded64ec7e 2019-07-15 22:34:22.543733 11103 602 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000602'\n 2 \N 189.186.35.54 7860439c-9f63-4210-b55b-697ded64ec7e 2019-07-15 22:34:22.570845 11104 709 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 602\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 7860439c-9f63-4210-b55b-697ded64ec7e 2019-07-15 22:34:22.596508 11105 603 Product \N \N 2 User \N create ---\nsku: JUM-603\nname: JUM-0006\ndescription: JUMPER NEGRO DE ENCAJE VALENTINE ST. JP9989\nprice_base: !ruby/object:BigDecimal 18:0.4655E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 1\nproduct_service_key: '01010101'\n 1 El producto JUM-603 fue creado. 189.186.35.54 8758b205-82fd-49c3-82f5-7351071a5df3 2019-07-15 22:36:18.331603 11106 603 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000603'\n 2 \N 189.186.35.54 8758b205-82fd-49c3-82f5-7351071a5df3 2019-07-15 22:36:18.358559 11107 710 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 603\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 8758b205-82fd-49c3-82f5-7351071a5df3 2019-07-15 22:36:18.398107 11108 508 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.35.54 e58d7a69-dff1-404c-a60d-2415bc04183a 2019-07-15 22:37:03.348055 11109 658 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.35.54 7868bd99-fbf3-4fec-aa8e-b90d80bb7d2d 2019-07-15 22:37:33.877746 11110 658 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.35.54 9adb0612-d3dc-4656-b581-d1af24cd3b22 2019-07-15 22:38:01.156024 11111 604 Product \N \N 2 User \N create ---\nsku: JUM-604\nname: JUM-0007\ndescription: JUMPER BLUE B FLOREADO ST. R6141\nprice_base: !ruby/object:BigDecimal 18:0.2945E3\nprice_sale: !ruby/object:BigDecimal 18:0.749E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 1\nproduct_service_key: '01010101'\n 1 El producto JUM-604 fue creado. 189.186.35.54 103fcb33-05d7-400c-9a5c-cbf04e00835f 2019-07-15 22:38:29.569454 11112 604 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000604'\n 2 \N 189.186.35.54 103fcb33-05d7-400c-9a5c-cbf04e00835f 2019-07-15 22:38:29.595775 11113 711 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 604\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 103fcb33-05d7-400c-9a5c-cbf04e00835f 2019-07-15 22:38:29.623662 11114 106 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-68\namount: !ruby/object:BigDecimal 18:0.12825E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.12825E5\nobservations: ''\npurchase_date: 2019-07-15\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-68 por $ 12825.0 MXN creada. 189.186.35.54 8ca73dc8-ae4a-4e19-8483-9ae780c80a5c 2019-07-15 22:40:01.414058 11115 704 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.35.54 8ca73dc8-ae4a-4e19-8483-9ae780c80a5c 2019-07-15 22:40:01.435726 11116 705 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.35.54 8ca73dc8-ae4a-4e19-8483-9ae780c80a5c 2019-07-15 22:40:01.457845 11117 706 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.35.54 8ca73dc8-ae4a-4e19-8483-9ae780c80a5c 2019-07-15 22:40:01.479229 11118 707 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.35.54 8ca73dc8-ae4a-4e19-8483-9ae780c80a5c 2019-07-15 22:40:01.504496 11119 708 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.35.54 8ca73dc8-ae4a-4e19-8483-9ae780c80a5c 2019-07-15 22:40:01.539007 11120 709 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.35.54 8ca73dc8-ae4a-4e19-8483-9ae780c80a5c 2019-07-15 22:40:01.561949 11121 710 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.35.54 8ca73dc8-ae4a-4e19-8483-9ae780c80a5c 2019-07-15 22:40:01.584663 11122 711 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.35.54 8ca73dc8-ae4a-4e19-8483-9ae780c80a5c 2019-07-15 22:40:01.606126 11123 484 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.35.54 753a0438-416b-4556-bbd0-2fb9fb445556 2019-07-15 22:45:59.651084 11124 484 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.35.54 7ee5675f-2709-4b03-bf0d-cc388dd9e389 2019-07-15 22:46:10.52379 11125 563 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 189.186.35.54 c6f660da-5384-495a-99d5-567ccc176fee 2019-07-15 22:48:20.800494 11126 563 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.35.54 47f8ecbb-1e72-4d72-b953-d5fd1a5d6984 2019-07-15 22:48:24.98695 11206 843 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-477 cancelada. 189.186.35.54 6e9d97d3-98ad-4e6b-8ebe-dd1eadb1f2fa 2019-07-16 00:52:43.368659 11130 78 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-07-15\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.35.54 7a833c40-2dda-4a27-b495-20f075e434af 2019-07-15 23:16:12.448241 11131 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-06-20 21:27:04.083810000 Z\n- &1 2019-07-02 22:33:42.385359000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-15 23:18:30.969119525 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\nsign_in_count:\n- 63\n- 64\n 128 \N 189.186.35.54 d41d9da5-1aeb-4116-ba94-a7be57a278f6 2019-07-15 23:18:30.977112 11132 9 User \N \N 9 User \N update ---\nunique_session_id:\n- kL74yrsMy4UhZ4mxrGhV\n- tMVaWtR-Jh-ynd8LW_p6\n 129 \N 189.186.35.54 d41d9da5-1aeb-4116-ba94-a7be57a278f6 2019-07-15 23:18:30.996617 11133 528 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.35.54 126c35da-b862-4836-aa37-6d14dd8fa298 2019-07-15 23:19:20.237872 11134 528 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.35.54 35a78427-49cc-46c5-9f9b-1f0adaa426fa 2019-07-15 23:19:26.345149 11135 522 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.35.54 8355b761-f27b-4d44-8540-d270e025c648 2019-07-15 23:20:20.941046 11136 522 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.35.54 0fe5a9f6-14ed-4d2e-a5b3-dadae8e40b12 2019-07-15 23:20:23.898837 11137 176 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.35.54 02fb698a-566c-4807-9f39-86201836d001 2019-07-15 23:21:20.515953 11138 161 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.35.54 69fbcb43-9d75-4872-ac46-6b7b443aa0ad 2019-07-15 23:21:43.05665 11139 161 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.35.54 255ec63d-3256-484e-af9d-5db27da12a3a 2019-07-15 23:21:47.330858 11140 79 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-07-15\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.35.54 317ebec3-f097-4fc8-a7c5-4a643d00b589 2019-07-15 23:21:48.810553 11141 107 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-69\namount: !ruby/object:BigDecimal 18:0.49305E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49305E4\nobservations: ''\npurchase_date: 2019-07-15\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-69 por $ 4930.5 MXN creada. 189.186.35.54 4860f70f-8acc-4daf-89d0-2ab7806f00f2 2019-07-15 23:43:05.042472 11142 707 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.12E2\n 3 \N 189.186.35.54 4860f70f-8acc-4daf-89d0-2ab7806f00f2 2019-07-15 23:43:05.06471 11143 704 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.12E2\n 3 \N 189.186.35.54 4860f70f-8acc-4daf-89d0-2ab7806f00f2 2019-07-15 23:43:05.090373 11144 697 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.12E2\n 3 \N 189.186.35.54 4860f70f-8acc-4daf-89d0-2ab7806f00f2 2019-07-15 23:43:05.1221 11145 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-07-15 19:22:47.116469000 Z\n- &1 2019-07-15 20:28:02.642942000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-15 23:44:47.119644777 Z\nsign_in_count:\n- 59\n- 60\n 120 \N 189.186.35.54 899dfc47-9a28-4557-b57b-593727011fdd 2019-07-15 23:44:47.125321 11146 1 User \N \N 1 User \N update ---\nunique_session_id:\n- _WYfEVgsxA-7DwqmScih\n- j2Ess3VhmCzzA_MpZ823\n 121 \N 189.186.35.54 899dfc47-9a28-4557-b57b-593727011fdd 2019-07-15 23:44:47.138129 11147 597 Product \N \N 1 User \N update ---\ndescription:\n- FALDA BLUE S NEGRA DE PATOLES ST. S92139\n- FALDA BLUE S NEGRA Y ROJA DE PATOLES ST. S92139\n 3 El producto FAL-597 fue modificado. 189.186.35.54 24f21b67-3250-4202-bfbe-5590523fe578 2019-07-15 23:46:04.231403 11148 78 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-15\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.35.54 85374d3c-1994-4e8d-9981-a1783f446d2b 2019-07-15 23:47:16.917186 11149 217 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.35.54 85374d3c-1994-4e8d-9981-a1783f446d2b 2019-07-15 23:47:16.943263 11150 712 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 527\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 85374d3c-1994-4e8d-9981-a1783f446d2b 2019-07-15 23:47:16.967675 11151 142 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.35.54 85374d3c-1994-4e8d-9981-a1783f446d2b 2019-07-15 23:47:16.990077 11152 204 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.35.54 85374d3c-1994-4e8d-9981-a1783f446d2b 2019-07-15 23:47:17.011783 11153 230 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.35.54 85374d3c-1994-4e8d-9981-a1783f446d2b 2019-07-15 23:47:17.038682 11154 707 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 4 \N 189.186.35.54 b3b704a5-5c57-4caf-a45b-99c04a211102 2019-07-15 23:47:43.098053 11155 3 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.9E1\n 5 \N 189.186.35.54 da681365-3e76-4ba6-9d3a-1e6c9533b6a1 2019-07-15 23:47:47.830546 11156 707 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.35.54 b114dc8c-5f5d-4ccd-a660-fcac0d8e8a04 2019-07-15 23:47:51.794032 11157 704 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 4 \N 189.186.35.54 b7a60707-c8c0-4015-a3fd-22e230ac3968 2019-07-15 23:48:27.924778 11158 704 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.35.54 51b55c05-dff1-4deb-a194-68bc23553b0b 2019-07-15 23:48:31.317959 11159 697 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 4 \N 189.186.35.54 539ea0c2-8918-4521-b9f7-82bcb080d7e3 2019-07-15 23:48:42.757604 11161 80 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-07-15\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.35.54 7295f4b7-e294-4a85-9f57-4de9ad03833a 2019-07-15 23:48:48.385396 11162 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-14 16:15:56.067623000 Z\n- &1 2019-07-15 18:02:47.055755000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-15 23:49:49.074856026 Z\nsign_in_count:\n- 500\n- 501\n 1002 \N 189.186.35.54 4ed97832-3e13-405d-b1a2-4b3de956b9ff 2019-07-15 23:49:49.081022 11163 3 User \N \N 3 User \N update ---\nunique_session_id:\n- KQtUxSsgg8mHFEKQDWGu\n- byHyyg_N_-7ceeqHPxpu\n 1003 \N 189.186.35.54 4ed97832-3e13-405d-b1a2-4b3de956b9ff 2019-07-15 23:49:49.096389 11164 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-15 18:02:47.055755000 Z\n- &1 2019-07-15 23:49:49.074856000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-15 23:49:54.666579339 Z\nsign_in_count:\n- 501\n- 502\n 1004 \N 189.186.35.54 b1f0bbc1-d38e-4e52-accf-5a10ffc7cfcc 2019-07-15 23:49:54.673019 11165 3 User \N \N 3 User \N update ---\nunique_session_id:\n- byHyyg_N_-7ceeqHPxpu\n- rSSkCsExzjUDEdLqystg\n 1005 \N 189.186.35.54 b1f0bbc1-d38e-4e52-accf-5a10ffc7cfcc 2019-07-15 23:49:54.685981 11166 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-15 23:49:49.074856000 Z\n- &1 2019-07-15 23:49:54.666579000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-15 23:50:13.171472511 Z\nsign_in_count:\n- 502\n- 503\n 1006 \N 189.186.35.54 10427b4d-f9ed-4244-87f3-a527f89e37f9 2019-07-15 23:50:13.177274 11167 3 User \N \N 3 User \N update ---\nunique_session_id:\n- rSSkCsExzjUDEdLqystg\n- eABfzQR5fMyy9ZRcJkrR\n 1007 \N 189.186.35.54 10427b4d-f9ed-4244-87f3-a527f89e37f9 2019-07-15 23:50:13.191606 11168 842 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 307\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2019-07-15\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-364\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.35.54 b28e9035-8f74-4935-9e68-6ac8cc67dd56 2019-07-15 23:50:54.61556 11169 693 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.35.54 b28e9035-8f74-4935-9e68-6ac8cc67dd56 2019-07-15 23:50:54.676484 11170 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-15 15:59:48.691782000 Z\n- &1 2019-07-15 19:40:15.208453000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-15 23:50:57.256874742 Z\nsign_in_count:\n- 210\n- 211\n 425 \N 189.186.35.54 2d11517d-6396-4f83-84cf-c801dadb022a 2019-07-15 23:50:57.262667 11171 2 User \N \N 2 User \N update ---\nunique_session_id:\n- iyPyadzTQiEcBooyqs8f\n- S1jfXZyUNsCtsnu11WEm\n 426 \N 189.186.35.54 2d11517d-6396-4f83-84cf-c801dadb022a 2019-07-15 23:50:57.27727 11172 842 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.35.54 7d4cddf4-a814-4818-aa7d-e2475c70087a 2019-07-15 23:51:07.117592 11173 1153 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 307\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 842\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-364\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-364 189.186.35.54 7d4cddf4-a814-4818-aa7d-e2475c70087a 2019-07-15 23:51:07.140856 11174 79 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-15\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.35.54 178ab301-133e-4af0-8bfc-3e421e73bfe5 2019-07-16 00:08:51.455317 11175 713 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 163\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 178ab301-133e-4af0-8bfc-3e421e73bfe5 2019-07-16 00:08:51.489454 11176 714 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 178\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 178ab301-133e-4af0-8bfc-3e421e73bfe5 2019-07-16 00:08:51.519932 11177 715 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 496\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 178ab301-133e-4af0-8bfc-3e421e73bfe5 2019-07-16 00:08:51.541917 11178 716 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 501\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 178ab301-133e-4af0-8bfc-3e421e73bfe5 2019-07-16 00:08:51.564363 11179 80 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-15\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.35.54 6341f902-c43a-4de8-b6fe-029b21afe618 2019-07-16 00:09:20.505516 11180 717 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 600\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 6341f902-c43a-4de8-b6fe-029b21afe618 2019-07-16 00:09:20.535303 11181 718 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 597\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 6341f902-c43a-4de8-b6fe-029b21afe618 2019-07-16 00:09:20.555853 11182 719 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 590\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 6341f902-c43a-4de8-b6fe-029b21afe618 2019-07-16 00:09:20.577671 11183 77 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-15\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.35.54 5719750c-0f30-4550-8ff2-98eeadd44f95 2019-07-16 00:09:46.635169 11184 720 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 238\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 5719750c-0f30-4550-8ff2-98eeadd44f95 2019-07-16 00:09:46.660534 11185 721 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 237\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 5719750c-0f30-4550-8ff2-98eeadd44f95 2019-07-16 00:09:46.681124 11207 606 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 189.186.35.54 6e9d97d3-98ad-4e6b-8ebe-dd1eadb1f2fa 2019-07-16 00:52:43.394991 11186 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-13 18:48:36.847149000 Z\n- &1 2019-07-14 19:44:44.450941000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-16 00:24:24.673671121 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094177\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946114\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946114\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\nsign_in_count:\n- 343\n- 344\n 688 \N 189.186.35.54 e7538911-eae4-4363-8ab7-826f988cb1fa 2019-07-16 00:24:24.683034 11187 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PE9yy-yGzKgfqesXKAvL\n- syYQ4U_HMF4Dfnv77v_h\n 689 \N 189.186.35.54 e7538911-eae4-4363-8ab7-826f988cb1fa 2019-07-16 00:24:24.703997 11188 605 Product \N \N 4 User \N create ---\nsku: VES-605\nname: V-0077\ndescription: 'VESTIDO CON ENCAJE ROSA VALENTINE '\nprice_base: !ruby/object:BigDecimal 18:0.35E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-605 fue creado. 189.186.35.54 624af416-b778-42f8-9026-e6167056c653 2019-07-16 00:25:33.808682 11189 605 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000605'\n 2 \N 189.186.35.54 624af416-b778-42f8-9026-e6167056c653 2019-07-16 00:25:33.850012 11190 606 Product \N \N 4 User \N create ---\nsku: BLU-606\nname: BLU-0071\ndescription: BLUSA MUY MUY ROSA CON LENTEJUELA\nprice_base: !ruby/object:BigDecimal 18:0.166E3\nprice_sale: !ruby/object:BigDecimal 18:0.449E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: file2-5.jpeg\ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-606 fue creado. 189.186.35.54 cc9edd73-6068-49fd-87b2-c36fda628814 2019-07-16 00:28:34.443529 11191 606 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000606'\n 2 \N 189.186.35.54 cc9edd73-6068-49fd-87b2-c36fda628814 2019-07-16 00:28:34.490812 11192 607 Product \N \N 4 User \N create ---\nsku: PAL-607\nname: PAL-0001\ndescription: 'PALAZZO DE MEZCLILLA LATISTE CON PERLAS '\nprice_base: \nprice_sale: !ruby/object:BigDecimal 18:0.1549E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: file4-5.jpeg\ncategory_id: 9\nproduct_service_key: '01010101'\n 1 El producto PAL-607 fue creado. 189.186.35.54 bcce32ac-d35e-4e80-b011-fbcc3337d293 2019-07-16 00:31:23.297602 11193 607 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000607'\n 2 \N 189.186.35.54 bcce32ac-d35e-4e80-b011-fbcc3337d293 2019-07-16 00:31:23.328428 11194 608 Product \N \N 4 User \N create ---\nsku: CON-608\nname: JUM-0005\ndescription: CONJUNTO SAN JOY COLOR MOZTAZA\nprice_base: \nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 10\nproduct_service_key: '01010101'\n 1 El producto CON-608 fue creado. 189.186.35.54 6912bf02-5c94-4f20-a343-46c2213524bb 2019-07-16 00:33:45.314575 11195 608 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000608'\n 2 \N 189.186.35.54 6912bf02-5c94-4f20-a343-46c2213524bb 2019-07-16 00:33:45.34063 11196 609 Product \N \N 4 User \N create ---\nsku: BLU-609\nname: BLU-0072\ndescription: BLUSA AZUL ROYAL DE ENCAJE VALENTINE\nprice_base: !ruby/object:BigDecimal 18:0.37E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: file3-5HHH.jpeg\ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-609 fue creado. 189.186.35.54 666b3071-9860-412d-bae5-8df26171ba2a 2019-07-16 00:40:16.843933 11197 609 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000609'\n 2 \N 189.186.35.54 666b3071-9860-412d-bae5-8df26171ba2a 2019-07-16 00:40:16.875979 11198 610 Product \N \N 4 User \N create ---\nsku: BLU-610\nname: BLU-0073\ndescription: PANTIBLUSA COLOR BLANCO VALENTINE\nprice_base: \nprice_sale: !ruby/object:BigDecimal 18:0.649E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: file5-5.jpeg\ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-610 fue creado. 189.186.35.54 40d83b0d-c44d-4b78-9059-cacd8d2b65af 2019-07-16 00:42:32.153242 11199 610 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000610'\n 2 \N 189.186.35.54 40d83b0d-c44d-4b78-9059-cacd8d2b65af 2019-07-16 00:42:32.184011 11200 611 Product \N \N 4 User \N create ---\nsku: PAN-611\nname: PAN-0017\ndescription: PANTALON NEGRO PLIZADO M2\nprice_base: \nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-611 fue creado. 189.186.35.54 6c7a5e63-e15c-49b6-9451-b6b3c99a769e 2019-07-16 00:47:10.004506 11201 611 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000611'\n 2 \N 189.186.35.54 6c7a5e63-e15c-49b6-9451-b6b3c99a769e 2019-07-16 00:47:10.045252 11202 610 Product \N \N 4 User \N update ---\nprice_base:\n- \n- !ruby/object:BigDecimal 27:0.31E3\n 3 El producto BLU-610 fue modificado. 189.186.35.54 89825147-f862-4588-889b-0b522a02a981 2019-07-16 00:51:32.256103 11203 843 Sale \N \N 2 User \N create ---\ncustomer_id: 113\nuser_id: 2\nopen_cash_register_id: 306\namount: !ruby/object:BigDecimal 18:0.2398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2398E4\nstatus: 0\ndate_sale: 2019-07-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-477\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.35.54 ce93771d-8d22-478e-be66-0e12444ca5b7 2019-07-16 00:52:33.002298 11204 710 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.35.54 ce93771d-8d22-478e-be66-0e12444ca5b7 2019-07-16 00:52:33.031034 11205 606 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.35.54 ce93771d-8d22-478e-be66-0e12444ca5b7 2019-07-16 00:52:33.055922 11208 710 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.35.54 6e9d97d3-98ad-4e6b-8ebe-dd1eadb1f2fa 2019-07-16 00:52:43.420501 11209 608 Product \N \N 4 User \N update ---\nname:\n- JUM-0005\n- JUM-0010\nprice_base:\n- \n- !ruby/object:BigDecimal 18:0.4085E3\n 3 El producto CON-608 fue modificado. 189.186.35.54 2b5a6aaa-3b77-48c5-aa0d-a8ec65597106 2019-07-16 00:53:33.88488 11210 844 Sale \N \N 2 User \N create ---\ncustomer_id: 113\nuser_id: 2\nopen_cash_register_id: 306\namount: !ruby/object:BigDecimal 18:0.2398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2398E4\nstatus: 0\ndate_sale: 2019-07-15\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-478\nexpiration_date: 2019-08-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.35.54 d25d44b7-346a-425b-a916-a61d18187102 2019-07-16 00:53:48.57362 11211 606 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 189.186.35.54 d25d44b7-346a-425b-a916-a61d18187102 2019-07-16 00:53:48.600699 11212 710 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.35.54 d25d44b7-346a-425b-a916-a61d18187102 2019-07-16 00:53:48.62541 11213 1154 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 306\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 844\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-478\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-478 189.186.35.54 114d1471-b8a6-4460-9be0-7aff29658482 2019-07-16 00:53:56.794019 11214 844 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.35.54 78daf2e3-5cc6-47d6-84ad-e48aeb1ec022 2019-07-16 00:54:00.508131 11215 607 Product \N \N 4 User \N update ---\nprice_base:\n- \n- !ruby/object:BigDecimal 27:0.68E3\n 3 El producto PAL-607 fue modificado. 189.186.35.54 733620b6-acb0-4297-86e4-438156d611ba 2019-07-16 00:55:58.638989 11216 108 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-36\namount: !ruby/object:BigDecimal 18:0.13707E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.13707E5\nobservations: ''\npurchase_date: 2019-07-15\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-36 por $ 13707.0 MXN creada. 189.186.35.54 05b0a20f-cb74-4a66-a967-77a46c48a093 2019-07-16 01:00:21.863412 11217 722 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 606\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 05b0a20f-cb74-4a66-a967-77a46c48a093 2019-07-16 01:00:21.901388 11218 723 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 609\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 05b0a20f-cb74-4a66-a967-77a46c48a093 2019-07-16 01:00:21.953202 11219 724 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 610\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 05b0a20f-cb74-4a66-a967-77a46c48a093 2019-07-16 01:00:21.998658 11220 725 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 608\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 05b0a20f-cb74-4a66-a967-77a46c48a093 2019-07-16 01:00:22.036357 11221 726 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 607\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 05b0a20f-cb74-4a66-a967-77a46c48a093 2019-07-16 01:00:22.070453 11222 727 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 605\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 05b0a20f-cb74-4a66-a967-77a46c48a093 2019-07-16 01:00:22.110615 11223 605 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '605'\n is_parent: false\n sku: VES-605\n name: V-0077\n description: 'VESTIDO CON ENCAJE ROSA VALENTINE '\n price_base: '350.0'\n price_sale: '999.0'\n img_product: file6-4.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000605'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-16 00:25:33.786509'\n updated_at: &12 2019-07-16 01:01:06.648974007 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '605'\n sku: VES-605\n name: V-0077\n description: 'VESTIDO CON ENCAJE ROSA VALENTINE '\n price_base: '350.00'\n price_sale: '999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-16 00:25:33.786509'\n updated_at: '2019-07-16 00:25:33.846593'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000605'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '605'\n type: *3\n value: 605\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-605\n type: *7\n value: VES-605\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: V-0077\n type: *8\n value: V-0077\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'VESTIDO CON ENCAJE ROSA VALENTINE '\n type: *6\n value: 'VESTIDO CON ENCAJE ROSA VALENTINE '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '350.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.35E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file6-4.jpeg\n type: *2\n value: file6-4.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000605'\n type: *2\n value: '0000605'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-16 00:25:33.786509'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file6-4.jpeg\n 3 El producto VES-605 fue modificado. 189.186.35.54 d6e4b4c2-acf5-48df-b5be-dc92d0f86abd 2019-07-16 01:01:06.698178 11224 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-15 23:49:54.666579000 Z\n- &1 2019-07-15 23:50:13.171472000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-16 01:01:53.642722840 Z\nsign_in_count:\n- 503\n- 504\n 1008 \N 189.186.35.54 828d3e85-01f8-46b3-9667-9109cb92fbb4 2019-07-16 01:01:53.649834 11225 3 User \N \N 3 User \N update ---\nunique_session_id:\n- eABfzQR5fMyy9ZRcJkrR\n- K95zXAUo6oZ9jEK3MSs6\n 1009 \N 189.186.35.54 828d3e85-01f8-46b3-9667-9109cb92fbb4 2019-07-16 01:01:53.664357 11226 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-14 19:44:44.450941000 Z\n- &1 2019-07-16 00:24:24.673671000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-16 01:03:48.679741010 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946114\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\nsign_in_count:\n- 344\n- 345\n 690 \N 189.186.35.54 24376f3d-3cbe-41f7-84dd-04973728f996 2019-07-16 01:03:48.686821 11227 4 User \N \N 4 User \N update ---\nunique_session_id:\n- syYQ4U_HMF4Dfnv77v_h\n- gEico77Rq7P7hR-SJiQ4\n 691 \N 189.186.35.54 24376f3d-3cbe-41f7-84dd-04973728f996 2019-07-16 01:03:48.701081 11228 611 Product \N \N 4 User \N update ---\nprice_base:\n- \n- !ruby/object:BigDecimal 27:0.161E3\n 3 El producto PAN-611 fue modificado. 189.186.35.54 df306cc0-388d-41a3-91b0-ec9730677ede 2019-07-16 01:15:01.465696 11229 109 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-37\namount: !ruby/object:BigDecimal 18:0.966E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.966E3\nobservations: ''\npurchase_date: 2019-07-15\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-37 por $ 966.0 MXN creada. 189.186.35.54 45991358-36ea-42dc-9246-cd45c96e5682 2019-07-16 01:15:20.837374 11230 728 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 611\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.35.54 45991358-36ea-42dc-9246-cd45c96e5682 2019-07-16 01:15:20.871989 11231 129 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 306\nquantity: !ruby/object:BigDecimal 18:0.17E3\nstatus: 1\nobservations: COMISIONES Y COMIDA ROCIO\nexpense_date: 2019-07-15\nexpense_code: PV1-E-107\n 1 Egreso por 170.0 registrado 189.186.35.54 278b416f-7c64-4b2a-9da1-fb9ffe669db3 2019-07-16 01:34:16.180375 11444 724 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.41.229 f2e18f58-da77-4161-9a89-497c07c45f95 2019-07-19 19:43:11.938204 11232 1155 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 306\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.17E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 129\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.35.54 278b416f-7c64-4b2a-9da1-fb9ffe669db3 2019-07-16 01:34:16.202268 11233 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-15 23:50:13.171472000 Z\n- &1 2019-07-16 01:01:53.642722000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-16 01:52:16.331542261 Z\nsign_in_count:\n- 504\n- 505\n 1010 \N 189.186.35.54 0faf9acf-40ae-4261-9b3c-8b141a8a9493 2019-07-16 01:52:16.339713 11234 3 User \N \N 3 User \N update ---\nunique_session_id:\n- K95zXAUo6oZ9jEK3MSs6\n- aeous6zZAAPeH7Lv-1yb\n 1011 \N 189.186.35.54 0faf9acf-40ae-4261-9b3c-8b141a8a9493 2019-07-16 01:52:16.359393 11235 304 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 307\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.2797E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.24E4\ncash_fund: !ruby/object:BigDecimal 18:0.796E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3196E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.35.54 4fc43cc9-f713-4a48-acd9-b316ec8be32b 2019-07-16 01:56:11.495075 11236 307 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.35.54 4fc43cc9-f713-4a48-acd9-b316ec8be32b 2019-07-16 01:56:11.515991 11237 305 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 306\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5E3\namount_out: !ruby/object:BigDecimal 18:0.17E3\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.85E3\nphysical_cash: !ruby/object:BigDecimal 18:0.85E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.35.54 83b9aee1-ba06-4d5a-9857-2d410cbd52bb 2019-07-16 01:56:30.806362 11238 306 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.35.54 83b9aee1-ba06-4d5a-9857-2d410cbd52bb 2019-07-16 01:56:30.823494 11239 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-16 00:24:24.673671000 Z\n- &1 2019-07-16 01:03:48.679741000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-16 04:13:36.915072228 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092411\n mask_addr: 4294967295\nsign_in_count:\n- 345\n- 346\n 692 \N 189.186.34.187 1bf72c6c-549e-406d-8a57-6a524e3137a5 2019-07-16 04:13:36.947995 11240 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gEico77Rq7P7hR-SJiQ4\n- SdNYpFbzpEFv_ckxdvqr\n 693 \N 189.186.34.187 1bf72c6c-549e-406d-8a57-6a524e3137a5 2019-07-16 04:13:36.977974 11241 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-16 01:01:53.642722000 Z\n- &1 2019-07-16 01:52:16.331542000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-16 16:04:15.675626096 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094589\n mask_addr: 4294967295\nsign_in_count:\n- 505\n- 506\n 1012 \N 189.186.43.61 2dbf748e-32b7-433c-8890-305a123de4ec 2019-07-16 16:04:15.706696 11242 3 User \N \N 3 User \N update ---\nunique_session_id:\n- aeous6zZAAPeH7Lv-1yb\n- cHr8swUbpHPxfFemHNVE\n 1013 \N 189.186.43.61 2dbf748e-32b7-433c-8890-305a123de4ec 2019-07-16 16:04:15.73294 11243 308 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.796E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 796.0 189.186.43.61 6924d053-4ec1-4f79-b6d6-808a76232e77 2019-07-16 16:06:07.246179 11244 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-15 19:40:15.208453000 Z\n- &1 2019-07-15 23:50:57.256874000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-16 17:09:28.289658859 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094589\n mask_addr: 4294967295\nsign_in_count:\n- 211\n- 212\n 427 \N 189.186.43.61 3a5dbfc4-8142-4f41-af32-bda65916bf91 2019-07-16 17:09:28.320031 11245 2 User \N \N 2 User \N update ---\nunique_session_id:\n- S1jfXZyUNsCtsnu11WEm\n- SCs3GyyRx--X6Z7DPzTy\n 428 \N 189.186.43.61 3a5dbfc4-8142-4f41-af32-bda65916bf91 2019-07-16 17:09:28.342823 11246 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-11 02:00:32.372323000 Z\n- &1 2019-07-12 02:06:19.290184000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-16 19:03:26.186193554 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938427\n mask_addr: 4294967295\nsign_in_count:\n- 98\n- 99\n 198 \N 200.68.151.123 0892f2c1-184d-4b3d-88b5-c68c383c8e8d 2019-07-16 19:03:26.196964 11247 10 User \N \N 10 User \N update ---\nunique_session_id:\n- UxxbgWJzseQ6y2JEiVax\n- 4tDZ7H8NuzDP-jyrZKQ2\n 199 \N 200.68.151.123 0892f2c1-184d-4b3d-88b5-c68c383c8e8d 2019-07-16 19:03:26.216145 11248 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-16 01:03:48.679741000 Z\n- &1 2019-07-16 04:13:36.915072000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-16 19:08:14.472315549 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092411\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092411\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938284\n mask_addr: 4294967295\nsign_in_count:\n- 346\n- 347\n 694 \N 200.68.150.236 75455713-723e-4444-b14b-1e8decd6e05c 2019-07-16 19:08:14.483141 11249 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SdNYpFbzpEFv_ckxdvqr\n- AZyg2xByarJDgMM79_MX\n 695 \N 200.68.150.236 75455713-723e-4444-b14b-1e8decd6e05c 2019-07-16 19:08:14.505031 11250 309 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.0\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 0.0 189.186.43.61 446a1584-2ef0-4666-950d-d06bea5d6407 2019-07-16 20:50:32.904323 11251 845 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 309\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-07-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-479\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.43.61 d83b84f7-e0d8-428e-841a-61564d0dc7b7 2019-07-16 20:55:04.892887 11252 703 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.43.61 d83b84f7-e0d8-428e-841a-61564d0dc7b7 2019-07-16 20:55:04.922105 11253 845 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.43.61 06e1a950-4d83-48d8-a0a5-f9973ea274ef 2019-07-16 20:55:10.164734 11273 307 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 309\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1299E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.299E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1299E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.40.252 09fb3823-6250-406d-a102-f096dd9609a5 2019-07-17 16:22:21.481806 11254 1156 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 309\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 845\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-479\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-479 189.186.43.61 06e1a950-4d83-48d8-a0a5-f9973ea274ef 2019-07-16 20:55:10.186619 11255 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-16 04:13:36.915072000 Z\n- &1 2019-07-16 19:08:14.472315000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-16 23:32:40.291267736 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092411\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938284\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938284\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094589\n mask_addr: 4294967295\nsign_in_count:\n- 347\n- 348\n 696 \N 189.186.43.61 3f40301a-b81e-475d-a307-142b9b86a08c 2019-07-16 23:32:40.302143 11256 4 User \N \N 4 User \N update ---\nunique_session_id:\n- AZyg2xByarJDgMM79_MX\n- f-C9WhXUnskFWevsMz6z\n 697 \N 189.186.43.61 3f40301a-b81e-475d-a307-142b9b86a08c 2019-07-16 23:32:40.324764 11257 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-16 19:08:14.472315000 Z\n- &1 2019-07-16 23:32:40.291267000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-16 23:50:45.455640995 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938284\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094589\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094589\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093730\n mask_addr: 4294967295\nsign_in_count:\n- 348\n- 349\n 698 \N 189.186.39.226 7514e1a8-c1fa-411e-b8a7-5840f00c8681 2019-07-16 23:50:45.463143 11258 4 User \N \N 4 User \N update ---\nunique_session_id:\n- f-C9WhXUnskFWevsMz6z\n- 6z7Ju44qMy-mUWXieYsU\n 699 \N 189.186.39.226 7514e1a8-c1fa-411e-b8a7-5840f00c8681 2019-07-16 23:50:45.480868 11259 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-16 23:32:40.291267000 Z\n- &1 2019-07-16 23:50:45.455640000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-17 00:19:01.695143371 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094589\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093730\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093730\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094589\n mask_addr: 4294967295\nsign_in_count:\n- 349\n- 350\n 700 \N 189.186.43.61 22ff051f-f204-4ad3-83d4-6819ed3a8eef 2019-07-17 00:19:01.70362 11260 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6z7Ju44qMy-mUWXieYsU\n- 3S2obmVxSxxtWquFmRMf\n 701 \N 189.186.43.61 22ff051f-f204-4ad3-83d4-6819ed3a8eef 2019-07-17 00:19:01.729873 11261 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-12 02:06:19.290184000 Z\n- &1 2019-07-16 19:03:26.186193000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-17 00:35:54.792058052 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938427\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938427\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094589\n mask_addr: 4294967295\nsign_in_count:\n- 99\n- 100\n 200 \N 189.186.43.61 67db3270-aea1-446c-af1f-b39cd8917f6f 2019-07-17 00:35:54.8042 11262 10 User \N \N 10 User \N update ---\nunique_session_id:\n- 4tDZ7H8NuzDP-jyrZKQ2\n- czQmNxbyFTxSjosyVHUF\n 201 \N 189.186.43.61 67db3270-aea1-446c-af1f-b39cd8917f6f 2019-07-17 00:35:54.8286 11263 293 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.43.61 deeb6c61-f5a4-49e2-9f1a-7b06fe70fe1f 2019-07-17 00:36:34.021225 11264 81 Transfer \N \N 10 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-07-16\nuser_id: 10\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.43.61 5ccaed88-7181-404b-8414-3d5e7a52b088 2019-07-17 00:36:36.610544 11265 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-16 23:50:45.455640000 Z\n- &1 2019-07-17 00:19:01.695143000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-17 00:57:22.420153184 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093730\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094589\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094589\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093730\n mask_addr: 4294967295\nsign_in_count:\n- 350\n- 351\n 702 \N 189.186.39.226 6da1b469-5129-4a99-b403-557444e57a6b 2019-07-17 00:57:22.434358 11266 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3S2obmVxSxxtWquFmRMf\n- oJxDS9HmDGvFKTAdEbuo\n 703 \N 189.186.39.226 6da1b469-5129-4a99-b403-557444e57a6b 2019-07-17 00:57:22.461986 11267 130 Expense \N \N 10 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 308\nquantity: !ruby/object:BigDecimal 18:0.726E3\nstatus: 1\nobservations: 'Sueldo Anabelly '\nexpense_date: 2019-07-16\nexpense_code: PV2-E-23\n 1 Egreso por 726.0 registrado 189.186.43.61 f4f9e8d8-6bc0-4ef4-9d11-bfeaf9208bd1 2019-07-17 01:54:34.023883 11268 1157 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 308\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.726E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 130\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.43.61 f4f9e8d8-6bc0-4ef4-9d11-bfeaf9208bd1 2019-07-17 01:54:34.056041 11269 306 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 308\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.726E3\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.7E2\nphysical_cash: !ruby/object:BigDecimal 18:0.7E2\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.43.61 6a036562-45df-4b5f-a6e3-84780a3ed54d 2019-07-17 01:55:05.625283 11270 308 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.43.61 6a036562-45df-4b5f-a6e3-84780a3ed54d 2019-07-17 01:55:05.644737 11271 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-16 01:52:16.331542000 Z\n- &1 2019-07-16 16:04:15.675626000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-17 16:05:08.521161155 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094589\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094589\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094012\n mask_addr: 4294967295\nsign_in_count:\n- 506\n- 507\n 1014 \N 189.186.40.252 ba52dac5-893b-40f5-9847-5301cba572f0 2019-07-17 16:05:08.560053 11272 3 User \N \N 3 User \N update ---\nunique_session_id:\n- cHr8swUbpHPxfFemHNVE\n- eMBdQB-hNMQCKGyhGuvF\n 1015 \N 189.186.40.252 ba52dac5-893b-40f5-9847-5301cba572f0 2019-07-17 16:05:08.58474 11274 309 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.252 09fb3823-6250-406d-a102-f096dd9609a5 2019-07-17 16:22:21.496669 11282 310 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.299E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 299.0 189.186.40.252 88af5bed-b3d7-462a-bd69-44b827ea0c3a 2019-07-17 16:42:19.602806 11283 846 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 310\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-07-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-480\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.252 d2d701e0-2239-4dd0-8371-657928389059 2019-07-17 16:45:44.750402 11284 704 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.40.252 d2d701e0-2239-4dd0-8371-657928389059 2019-07-17 16:45:44.784657 11285 846 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.252 881497c2-e560-407c-a766-78f1eb0c5233 2019-07-17 16:45:50.978528 11286 1158 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 310\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 846\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-480\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.649E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-480 189.186.40.252 881497c2-e560-407c-a766-78f1eb0c5233 2019-07-17 16:45:51.002047 11287 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-17 00:19:01.695143000 Z\n- &1 2019-07-17 00:57:22.420153000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-17 16:51:16.417727110 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094589\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093730\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093730\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938284\n mask_addr: 4294967295\nsign_in_count:\n- 351\n- 352\n 704 \N 200.68.150.236 ef6f3a90-b230-4bcf-8ae7-1e7edde7d918 2019-07-17 16:51:16.425256 11288 4 User \N \N 4 User \N update ---\nunique_session_id:\n- oJxDS9HmDGvFKTAdEbuo\n- Z_yw2i8xvwXtXLSjsJCw\n 705 \N 200.68.150.236 ef6f3a90-b230-4bcf-8ae7-1e7edde7d918 2019-07-17 16:51:16.442805 11289 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-16 19:03:26.186193000 Z\n- &1 2019-07-17 00:35:54.792058000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-17 17:15:02.363324646 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938427\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094589\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094589\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093730\n mask_addr: 4294967295\nsign_in_count:\n- 100\n- 101\n 202 \N 189.186.39.226 3ef84f8b-f296-4aac-a217-1f8b389ecf1f 2019-07-17 17:15:02.371442 11290 10 User \N \N 10 User \N update ---\nunique_session_id:\n- czQmNxbyFTxSjosyVHUF\n- FfptkzbUEcs5bnNW6dRP\n 203 \N 189.186.39.226 3ef84f8b-f296-4aac-a217-1f8b389ecf1f 2019-07-17 17:15:02.387774 11291 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-16 16:04:15.675626000 Z\n- &1 2019-07-17 16:05:08.521161000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-17 17:56:41.478531783 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094589\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094012\n mask_addr: 4294967295\nsign_in_count:\n- 507\n- 508\n 1016 \N 189.186.40.252 573bc6d8-753b-4ac2-a532-765a0ca27822 2019-07-17 17:56:41.486308 11292 3 User \N \N 3 User \N update ---\nunique_session_id:\n- eMBdQB-hNMQCKGyhGuvF\n- XA_MdzVuyx2nrsUX2JJx\n 1017 \N 189.186.40.252 573bc6d8-753b-4ac2-a532-765a0ca27822 2019-07-17 17:56:41.500816 11293 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-11 01:11:48.927373000 Z\n- &1 2019-07-14 20:57:41.051792000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-17 18:49:23.948988655 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094012\n mask_addr: 4294967295\nsign_in_count:\n- 252\n- 253\n 506 \N 189.186.40.252 2a74b385-9d43-418a-92a3-28b7ac0997b7 2019-07-17 18:49:23.955757 11294 12 User \N \N 12 User \N update ---\nunique_session_id:\n- UpRw8zvTYrBEbGxDRMzh\n- hEckzctmJgNr1ywDqUhW\n 507 \N 189.186.40.252 2a74b385-9d43-418a-92a3-28b7ac0997b7 2019-07-17 18:49:23.969989 11295 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-17 16:05:08.521161000 Z\n- &1 2019-07-17 17:56:41.478531000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-17 18:50:09.584687564 Z\nsign_in_count:\n- 508\n- 509\n 1018 \N 189.186.40.252 e1069840-7afa-4948-84e3-d6195eb00b09 2019-07-17 18:50:09.590732 11296 3 User \N \N 3 User \N update ---\nunique_session_id:\n- XA_MdzVuyx2nrsUX2JJx\n- agJs9ecv2_5UbW8NzMGY\n 1019 \N 189.186.40.252 e1069840-7afa-4948-84e3-d6195eb00b09 2019-07-17 18:50:09.605361 11297 847 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 310\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-07-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-481\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.252 ad886b96-97d2-451e-bc1c-ce2b636a3834 2019-07-17 19:13:37.94836 11298 527 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.40.252 ad886b96-97d2-451e-bc1c-ce2b636a3834 2019-07-17 19:13:37.98125 11299 847 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.252 207537c9-e4cd-4f63-930c-ccfa849cf6f2 2019-07-17 19:13:47.721814 11300 1159 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 310\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 847\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-481\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-481 189.186.40.252 207537c9-e4cd-4f63-930c-ccfa849cf6f2 2019-07-17 19:13:47.745552 11301 848 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 310\namount: !ruby/object:BigDecimal 18:0.45762E3\ntax: !ruby/object:BigDecimal 18:0.4138E2\ndiscount: !ruby/object:BigDecimal 18:0.199E3\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2019-07-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-482\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.252 9c9c1af0-8858-4e24-b14d-8e080056a0df 2019-07-17 19:35:16.985136 11302 116 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.40.252 9c9c1af0-8858-4e24-b14d-8e080056a0df 2019-07-17 19:35:17.019981 11303 848 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.252 5acfc47d-11c1-4fe4-b894-bd5c480d0870 2019-07-17 19:35:26.20739 11445 279 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 189.186.41.229 f2e18f58-da77-4161-9a89-497c07c45f95 2019-07-19 19:43:11.962358 11304 1160 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 310\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 848\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-482\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-482 189.186.40.252 5acfc47d-11c1-4fe4-b894-bd5c480d0870 2019-07-17 19:35:26.231459 11305 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-17 17:56:41.478531000 Z\n- &1 2019-07-17 18:50:09.584687000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-17 19:54:33.304906055 Z\nsign_in_count:\n- 509\n- 510\n 1020 \N 189.186.40.252 68663531-0bcb-4380-8148-a6b87f08ff8f 2019-07-17 19:54:33.31499 11306 3 User \N \N 3 User \N update ---\nunique_session_id:\n- agJs9ecv2_5UbW8NzMGY\n- z3AbLmF_oswxzQBASKtQ\n 1021 \N 189.186.40.252 68663531-0bcb-4380-8148-a6b87f08ff8f 2019-07-17 19:54:33.331475 11307 311 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.7E2\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 70.0 189.186.40.252 4e28d3b3-a73c-442d-b1c1-a3dd091bf96d 2019-07-17 19:56:42.231132 11308 849 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 310\namount: !ruby/object:BigDecimal 18:0.86121E3\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-07-17\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-483\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.252 f39e5ed9-f50f-4fbe-a17b-888b03a21c5e 2019-07-17 19:57:17.555939 11309 185 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.40.252 f39e5ed9-f50f-4fbe-a17b-888b03a21c5e 2019-07-17 19:57:17.584158 11310 849 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.252 1f3c6efb-6311-4fa1-80ff-ed4cefa6191a 2019-07-17 19:57:22.158342 11311 1161 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 310\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 849\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-483\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-483 189.186.40.252 1f3c6efb-6311-4fa1-80ff-ed4cefa6191a 2019-07-17 19:57:22.179079 11312 850 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 311\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-07-17\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-365\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.252 2926ab6c-8b8e-4103-9a60-a4e7ff64b554 2019-07-17 19:57:42.694359 11313 694 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.40.252 2926ab6c-8b8e-4103-9a60-a4e7ff64b554 2019-07-17 19:57:42.724348 11314 850 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.252 56906f65-634d-400c-9c1d-30cca09a1264 2019-07-17 19:58:06.106872 11315 1162 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 311\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 850\ncardnumber: 5518\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-365\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-365 189.186.40.252 56906f65-634d-400c-9c1d-30cca09a1264 2019-07-17 19:58:06.129719 11316 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-14 20:57:41.051792000 Z\n- &1 2019-07-17 18:49:23.948988000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-17 20:01:36.863870577 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094012\n mask_addr: 4294967295\nsign_in_count:\n- 253\n- 254\n 508 \N 189.186.40.252 f66a4291-c93d-4cf1-baa6-b43e0dcd030c 2019-07-17 20:01:36.872458 11317 12 User \N \N 12 User \N update ---\nunique_session_id:\n- hEckzctmJgNr1ywDqUhW\n- xhSN4s-ncTr72fAfTASf\n 509 \N 189.186.40.252 f66a4291-c93d-4cf1-baa6-b43e0dcd030c 2019-07-17 20:01:36.888627 11318 851 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 311\namount: !ruby/object:BigDecimal 18:0.1549E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1549E4\nstatus: 0\ndate_sale: 2019-07-17\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-366\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.252 aac199a1-c382-4aff-a5ad-5ab71e58acb4 2019-07-17 20:10:42.153853 11319 726 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.40.252 aac199a1-c382-4aff-a5ad-5ab71e58acb4 2019-07-17 20:10:42.179979 11320 851 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.252 ad40ca05-475a-471f-a1aa-227c35cf55b7 2019-07-17 20:10:48.092987 11321 1163 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 311\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1549E4\nmove_type: '1'\nsale_id: 851\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-366\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-366 189.186.40.252 ad40ca05-475a-471f-a1aa-227c35cf55b7 2019-07-17 20:10:48.113756 11322 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-17 18:50:09.584687000 Z\n- &1 2019-07-17 19:54:33.304906000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-17 21:20:45.976375082 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 510\n- 511\n 1022 \N 189.186.41.229 f2523b9e-88d6-47db-86bd-eded33a1ccc9 2019-07-17 21:20:45.982681 11323 3 User \N \N 3 User \N update ---\nunique_session_id:\n- z3AbLmF_oswxzQBASKtQ\n- Jy1-Ei23mm1CQPnxaC9g\n 1023 \N 189.186.41.229 f2523b9e-88d6-47db-86bd-eded33a1ccc9 2019-07-17 21:20:45.997536 11324 1164 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 310\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 819\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-460 189.186.41.229 411440a4-5af4-4c06-9c69-0cbfe5614bf1 2019-07-17 21:39:25.52008 11325 819 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.229 c7d3febd-b546-4c42-bd24-25b034b3934d 2019-07-17 21:39:27.666385 11326 852 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 310\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-07-17\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-484\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 21eb1de7-c950-46dc-bf8e-28ec1a3f351b 2019-07-17 21:53:04.311563 11327 702 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.41.229 21eb1de7-c950-46dc-bf8e-28ec1a3f351b 2019-07-17 21:53:04.341808 11328 852 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 995b0495-7d4a-441f-acdc-cbc4cfab9e4e 2019-07-17 21:53:10.021923 11329 1165 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 310\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 852\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-484\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-484 189.186.41.229 995b0495-7d4a-441f-acdc-cbc4cfab9e4e 2019-07-17 21:53:10.046636 11330 853 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 310\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-07-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-485\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 762f790b-0e66-415c-9e64-eaad86f25e8e 2019-07-17 22:20:00.687865 11331 702 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.41.229 762f790b-0e66-415c-9e64-eaad86f25e8e 2019-07-17 22:20:00.715199 11332 853 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 f6422ef5-bd5b-486f-9aec-d9e0f297cd0c 2019-07-17 22:20:10.457931 11333 1166 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 310\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 853\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-485\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-485 189.186.41.229 f6422ef5-bd5b-486f-9aec-d9e0f297cd0c 2019-07-17 22:20:10.490331 11334 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-17 00:57:22.420153000 Z\n- &1 2019-07-17 16:51:16.417727000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-17 22:30:29.622917519 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093730\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938284\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938284\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 352\n- 353\n 706 \N 189.186.41.229 9e878512-2ce2-402d-af1c-ae9143549524 2019-07-17 22:30:29.644688 11335 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Z_yw2i8xvwXtXLSjsJCw\n- yTE5EEPsx8G1Z-qMx5LY\n 707 \N 189.186.41.229 9e878512-2ce2-402d-af1c-ae9143549524 2019-07-17 22:30:29.659438 11336 612 Product \N \N 4 User \N create ---\nsku: BOL-612\nname: ELIF098\ndescription: 'MOCHILA CLOE COLOR NEGRO '\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ELIF.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-612 fue creado. 189.186.41.229 0c4be9b5-dc81-44e7-af32-51d30738fad2 2019-07-17 23:00:12.256292 11337 612 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000612'\n 2 \N 189.186.41.229 0c4be9b5-dc81-44e7-af32-51d30738fad2 2019-07-17 23:00:12.291993 11338 729 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 612\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 0c4be9b5-dc81-44e7-af32-51d30738fad2 2019-07-17 23:00:12.320859 11339 613 Product \N \N 4 User \N create ---\nsku: BOL-613\nname: OZAI891\ndescription: MOCHILA CLOE NEGRA CON MASCADA AZUL Y ROJO\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170723434'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-613 fue creado. 189.186.41.229 8fc8ac3c-faeb-49a7-b8d1-00ea17817a62 2019-07-17 23:02:37.920913 11340 730 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 613\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 8fc8ac3c-faeb-49a7-b8d1-00ea17817a62 2019-07-17 23:02:37.961783 11341 614 Product \N \N 4 User \N create ---\nsku: BOL-614\nname: BLCO1900\ndescription: MOCHILA CLOE NEGRA CON LLAVERO VERDE\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170751048'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-614 fue creado. 189.186.41.229 ea6b1e0e-567c-4563-83d3-016e54b32841 2019-07-17 23:05:19.231734 11342 731 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 614\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 ea6b1e0e-567c-4563-83d3-016e54b32841 2019-07-17 23:05:19.268092 11343 615 Product \N \N 4 User \N create ---\nsku: CAR-615\nname: MAYU979\ndescription: CARTERA CLOR PLATA\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170727081'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-615 fue creado. 189.186.41.229 a6f0a615-7a8a-461c-a7e2-ccb00eaa2869 2019-07-17 23:06:25.838427 11446 859 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 0b6975bd-7914-4bc7-831d-4bd7c9419db5 2019-07-19 19:45:08.97411 11344 732 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 615\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 a6f0a615-7a8a-461c-a7e2-ccb00eaa2869 2019-07-17 23:06:25.885625 11345 110 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-70\namount: !ruby/object:BigDecimal 18:0.2948E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2948E4\nobservations: ''\npurchase_date: 2019-07-17\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-70 por $ 2948.0 MXN creada. 189.186.41.229 b025ffaf-8d39-4d9e-b947-42a7c1eae8f3 2019-07-17 23:06:30.056475 11346 729 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.229 b025ffaf-8d39-4d9e-b947-42a7c1eae8f3 2019-07-17 23:06:30.08173 11347 730 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.229 b025ffaf-8d39-4d9e-b947-42a7c1eae8f3 2019-07-17 23:06:30.108389 11348 731 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.229 b025ffaf-8d39-4d9e-b947-42a7c1eae8f3 2019-07-17 23:06:30.133516 11349 732 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.229 b025ffaf-8d39-4d9e-b947-42a7c1eae8f3 2019-07-17 23:06:30.157294 11350 615 Product \N \N 4 User \N update ---\ndescription:\n- CARTERA CLOR PLATA\n- CARTERA COLOR PLATA\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '615'\n is_parent: false\n sku: CAR-615\n name: MAYU979\n description: CARTERA COLOR PLATA\n price_base: '449.5'\n price_sale: '899.0'\n img_product: CARTERA_MAYU.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170727081'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-17 23:06:25.823742'\n updated_at: &12 2019-07-17 23:08:58.426421768 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '615'\n sku: CAR-615\n name: MAYU979\n description: CARTERA CLOR PLATA\n price_base: '449.50'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-17 23:06:25.823742'\n updated_at: '2019-07-17 23:06:25.823742'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170727081'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '615'\n type: *3\n value: 615\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-615\n type: *7\n value: CAR-615\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: MAYU979\n type: *8\n value: MAYU979\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA COLOR PLATA\n type: *6\n value: CARTERA COLOR PLATA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '449.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: CARTERA_MAYU.jpg\n type: *2\n value: CARTERA_MAYU.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170727081'\n type: *2\n value: '7509170727081'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-17 23:06:25.823742'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- CARTERA_MAYU.jpg\n 2 El producto CAR-615 fue modificado. 189.186.41.229 f8be2cb3-a083-4778-ba0c-b173e5f92ecd 2019-07-17 23:08:58.470106 11351 614 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '614'\n is_parent: false\n sku: BOL-614\n name: BLCO1900\n description: MOCHILA CLOE NEGRA CON LLAVERO VERDE\n price_base: '849.5'\n price_sale: '1699.0'\n img_product: IMG_1414.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170751048'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-17 23:05:19.214809'\n updated_at: &12 2019-07-17 23:12:27.491401794 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '614'\n sku: BOL-614\n name: BLCO1900\n description: MOCHILA CLOE NEGRA CON LLAVERO VERDE\n price_base: '849.50'\n price_sale: '1699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-17 23:05:19.214809'\n updated_at: '2019-07-17 23:05:19.214809'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170751048'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '614'\n type: *3\n value: 614\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-614\n type: *7\n value: BOL-614\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLCO1900\n type: *8\n value: BLCO1900\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCHILA CLOE NEGRA CON LLAVERO VERDE\n type: *6\n value: MOCHILA CLOE NEGRA CON LLAVERO VERDE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '849.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1699E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_1414.jpg\n type: *2\n value: IMG_1414.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170751048'\n type: *2\n value: '7509170751048'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-17 23:05:19.214809'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_1414.jpg\n 2 El producto BOL-614 fue modificado. 189.186.41.229 49e09d04-7193-4991-a094-7d3f59c7dd0b 2019-07-17 23:12:27.556958 11352 595 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '595'\n is_parent: false\n sku: FAL-595\n name: FLD-0009\n description: FALDA M2 AMARILLA DE PATOLES ST. S2680\n price_base: '266.0'\n price_sale: '699.0'\n img_product: PHOTO-2019-07-14-22-34-34.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000595'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-15 19:20:01.190194'\n updated_at: &12 2019-07-17 23:17:25.601184293 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '595'\n sku: FAL-595\n name: FLD-0009\n description: FALDA M2 AMARILLA DE PATOLES ST. S2680\n price_base: '266.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-15 19:20:01.190194'\n updated_at: '2019-07-15 22:50:00.14802'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000595'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '595'\n type: *3\n value: 595\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-595\n type: *7\n value: FAL-595\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0009\n type: *8\n value: FLD-0009\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA M2 AMARILLA DE PATOLES ST. S2680\n type: *6\n value: FALDA M2 AMARILLA DE PATOLES ST. S2680\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '266.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.266E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-07-14-22-34-34.jpg\n type: *2\n value: PHOTO-2019-07-14-22-34-34.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000595'\n type: *2\n value: '0000595'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-15 19:20:01.190194'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-07-14-22-34-34.jpg\n 4 El producto FAL-595 fue modificado. 189.186.41.229 7fd81770-8a98-4906-aec8-6ce8bed5b27b 2019-07-17 23:17:25.652975 11353 591 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '591'\n is_parent: false\n sku: VES-591\n name: VST-0032\n description: VESTIDO FLOREADO UNA MAGA VOILA ST. D1345\n price_base: '418.0'\n price_sale: '1199.0'\n img_product: VEST.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000591'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-15 19:13:11.267545'\n updated_at: &12 2019-07-17 23:19:44.337983608 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '591'\n sku: VES-591\n name: VST-0032\n description: VESTIDO FLOREADO UNA MAGA VOILA ST. D1345\n price_base: '418.00'\n price_sale: '1199.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-15 19:13:11.267545'\n updated_at: '2019-07-15 20:38:26.392954'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000591'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '591'\n type: *3\n value: 591\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-591\n type: *7\n value: VES-591\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0032\n type: *8\n value: VST-0032\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO FLOREADO UNA MAGA VOILA ST. D1345\n type: *6\n value: VESTIDO FLOREADO UNA MAGA VOILA ST. D1345\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '418.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.418E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1199.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1199E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: VEST.jpg\n type: *2\n value: VEST.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000591'\n type: *2\n value: '0000591'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-15 19:13:11.267545'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- VEST.jpg\n 4 El producto VES-591 fue modificado. 189.186.41.229 d126676b-cc34-4fd4-90a5-f8f475b4c625 2019-07-17 23:19:44.398096 11354 600 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '600'\n is_parent: false\n sku: BLU-600\n name: BLS-0048\n description: PLAYERA MUYMUY DE MICKEY ST. A0753\n price_base: '161.5'\n price_sale: '549.0'\n img_product: BLS_MICKEY.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000600'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-15 22:32:19.283587'\n updated_at: &12 2019-07-17 23:20:27.204637347 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '600'\n sku: BLU-600\n name: BLS-0048\n description: PLAYERA MUYMUY DE MICKEY ST. A0753\n price_base: '161.50'\n price_sale: '549.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-15 22:32:19.283587'\n updated_at: '2019-07-15 22:32:19.332393'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000600'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '600'\n type: *3\n value: 600\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-600\n type: *7\n value: BLU-600\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0048\n type: *8\n value: BLS-0048\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PLAYERA MUYMUY DE MICKEY ST. A0753\n type: *6\n value: PLAYERA MUYMUY DE MICKEY ST. A0753\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '161.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1615E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '549.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.549E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BLS_MICKEY.jpg\n type: *2\n value: BLS_MICKEY.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000600'\n type: *2\n value: '0000600'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-15 22:32:19.283587'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BLS_MICKEY.jpg\n 3 El producto BLU-600 fue modificado. 189.186.41.229 948804b5-5b2e-4979-92a9-f3527eb9c6b1 2019-07-17 23:20:27.249225 11355 598 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '598'\n is_parent: false\n sku: BLU-598\n name: BLS-0046\n description: BLUSA DE ENCAJE BLANCA VALENTINE ST. T10516\n price_base: '275.5'\n price_sale: '679.0'\n img_product: PHOTO-2019-07-14-22-41-36.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000598'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-15 22:30:32.818328'\n updated_at: &12 2019-07-17 23:21:41.116734377 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '598'\n sku: BLU-598\n name: BLS-0046\n description: BLUSA DE ENCAJE BLANCA VALENTINE ST. T10516\n price_base: '275.50'\n price_sale: '679.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-15 22:30:32.818328'\n updated_at: '2019-07-15 22:30:32.858595'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000598'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '598'\n type: *3\n value: 598\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-598\n type: *7\n value: BLU-598\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0046\n type: *8\n value: BLS-0046\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA DE ENCAJE BLANCA VALENTINE ST. T10516\n type: *6\n value: BLUSA DE ENCAJE BLANCA VALENTINE ST. T10516\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '275.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2755E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '679.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.679E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-07-14-22-41-36.jpg\n type: *2\n value: PHOTO-2019-07-14-22-41-36.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000598'\n type: *2\n value: '0000598'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-15 22:30:32.818328'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-07-14-22-41-36.jpg\n 3 El producto BLU-598 fue modificado. 189.186.41.229 ee120b9c-7f59-46ea-a83f-a3a00ccb808c 2019-07-17 23:21:41.157906 11356 601 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '601'\n is_parent: false\n sku: PAN-601\n name: PNT-0010\n description: PANTALON SANJOY DE MEZCLILLA CAMPANA ST. S3033\n price_base: '266.0'\n price_sale: '669.0'\n img_product: PHOTO-2019-07-14-22-34-31.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '8'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000601'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-15 22:33:26.922711'\n updated_at: &12 2019-07-17 23:22:55.796814193 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '601'\n sku: PAN-601\n name: PNT-0010\n description: PANTALON SANJOY DE MEZCLILLA CAMPANA ST. S3033\n price_base: '266.00'\n price_sale: '669.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-15 22:33:26.922711'\n updated_at: '2019-07-15 22:33:26.961498'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000601'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '8'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '601'\n type: *3\n value: 601\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAN-601\n type: *7\n value: PAN-601\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PNT-0010\n type: *8\n value: PNT-0010\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTALON SANJOY DE MEZCLILLA CAMPANA ST. S3033\n type: *6\n value: PANTALON SANJOY DE MEZCLILLA CAMPANA ST. S3033\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '266.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.266E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '669.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.669E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-07-14-22-34-31.jpg\n type: *2\n value: PHOTO-2019-07-14-22-34-31.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '8'\n type: *3\n value: 8\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000601'\n type: *2\n value: '0000601'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-15 22:33:26.922711'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-07-14-22-34-31.jpg\n 3 El producto PAN-601 fue modificado. 189.186.41.229 3d028ac3-c38e-4f3e-b55a-bfe20da74839 2019-07-17 23:22:55.856511 11357 596 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '596'\n is_parent: false\n sku: VES-596\n name: VST-0034\n description: VESTIDO OLGADO CON CINTO LATISTE ST. LD51371B\n price_base: '551.0'\n price_sale: '1299.0'\n img_product: PHOTO-2019-07-14-22-34-33__1_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000596'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-15 19:52:56.683671'\n updated_at: &12 2019-07-17 23:25:48.464051655 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '596'\n sku: VES-596\n name: VST-0034\n description: VESTIDO OLGADO CON CINTO LATISTE ST. LD51371B\n price_base: '551.00'\n price_sale: '1299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-15 19:52:56.683671'\n updated_at: '2019-07-15 20:23:39.415277'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000596'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '596'\n type: *3\n value: 596\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-596\n type: *7\n value: VES-596\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0034\n type: *8\n value: VST-0034\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO OLGADO CON CINTO LATISTE ST. LD51371B\n type: *6\n value: VESTIDO OLGADO CON CINTO LATISTE ST. LD51371B\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '551.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.551E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1299E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-07-14-22-34-33__1_.jpg\n type: *2\n value: PHOTO-2019-07-14-22-34-33__1_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000596'\n type: *2\n value: '0000596'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-15 19:52:56.683671'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-07-14-22-34-33__1_.jpg\n 4 El producto VES-596 fue modificado. 189.186.41.229 517184f5-bccc-4ac3-a1ed-e40402187b9a 2019-07-17 23:25:48.504966 11358 594 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '594'\n is_parent: false\n sku: PAN-594\n name: PNT-0009\n description: PANTALON VALENTINE DE LICRA NEGRO ST. P10626\n price_base: '294.5'\n price_sale: '649.0'\n img_product: PHOTO-2019-07-14-22-34-32.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '8'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000594'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-15 19:16:29.995187'\n updated_at: &12 2019-07-17 23:26:36.859958604 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '594'\n sku: PAN-594\n name: PNT-0009\n description: PANTALON VALENTINE DE LICRA NEGRO ST. P10626\n price_base: '294.50'\n price_sale: '649.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-15 19:16:29.995187'\n updated_at: '2019-07-15 20:39:37.909491'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000594'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '8'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '594'\n type: *3\n value: 594\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAN-594\n type: *7\n value: PAN-594\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PNT-0009\n type: *8\n value: PNT-0009\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTALON VALENTINE DE LICRA NEGRO ST. P10626\n type: *6\n value: PANTALON VALENTINE DE LICRA NEGRO ST. P10626\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '294.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2945E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '649.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.649E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-07-14-22-34-32.jpg\n type: *2\n value: PHOTO-2019-07-14-22-34-32.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '8'\n type: *3\n value: 8\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000594'\n type: *2\n value: '0000594'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-15 19:16:29.995187'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-07-14-22-34-32.jpg\n 5 El producto PAN-594 fue modificado. 189.186.41.229 b29d7848-5bb1-4e9c-bee7-6666619d438e 2019-07-17 23:26:36.903669 11359 603 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '603'\n is_parent: false\n sku: JUM-603\n name: JUM-0006\n description: JUMPER NEGRO DE ENCAJE VALENTINE ST. JP9989\n price_base: '465.5'\n price_sale: '1199.0'\n img_product: PHOTO-2019-07-15-22-47-13.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '1'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000603'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-15 22:36:18.3194'\n updated_at: &12 2019-07-17 23:28:14.412738770 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '603'\n sku: JUM-603\n name: JUM-0006\n description: JUMPER NEGRO DE ENCAJE VALENTINE ST. JP9989\n price_base: '465.50'\n price_sale: '1199.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-15 22:36:18.3194'\n updated_at: '2019-07-15 22:36:18.355475'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000603'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '1'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '603'\n type: *3\n value: 603\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: JUM-603\n type: *7\n value: JUM-603\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: JUM-0006\n type: *8\n value: JUM-0006\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: JUMPER NEGRO DE ENCAJE VALENTINE ST. JP9989\n type: *6\n value: JUMPER NEGRO DE ENCAJE VALENTINE ST. JP9989\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '465.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4655E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1199.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1199E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-07-15-22-47-13.jpg\n type: *2\n value: PHOTO-2019-07-15-22-47-13.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '1'\n type: *3\n value: 1\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000603'\n type: *2\n value: '0000603'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-15 22:36:18.3194'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-07-15-22-47-13.jpg\n 3 El producto JUM-603 fue modificado. 189.186.41.229 a3cd56c9-fb41-4650-88ed-c5a31560d99d 2019-07-17 23:28:14.459729 11360 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-17 16:51:16.417727000 Z\n- &1 2019-07-17 22:30:29.622917000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-17 23:32:26.388567548 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938284\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093730\n mask_addr: 4294967295\nsign_in_count:\n- 353\n- 354\n 708 \N 189.186.39.226 6b1eb519-3d09-454f-aa60-df2aaba9d6c7 2019-07-17 23:32:26.396523 11361 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yTE5EEPsx8G1Z-qMx5LY\n- bYx9F4ygsdqWwzwyrjsh\n 709 \N 189.186.39.226 6b1eb519-3d09-454f-aa60-df2aaba9d6c7 2019-07-17 23:32:26.412179 11362 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-07-02 22:33:42.385359000 Z\n- &1 2019-07-15 23:18:30.969119000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-17 23:53:17.903104806 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 64\n- 65\n 130 \N 189.186.41.229 3f6710a9-fc56-48e6-81ce-0e2ade097fef 2019-07-17 23:53:17.911894 11363 9 User \N \N 9 User \N update ---\nunique_session_id:\n- tMVaWtR-Jh-ynd8LW_p6\n- 11_JqBWVMaea1huyB45T\n 131 \N 189.186.41.229 3f6710a9-fc56-48e6-81ce-0e2ade097fef 2019-07-17 23:53:17.933543 11364 1167 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 310\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1898E4\nmove_type: '1'\nsale_id: 844\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1898E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-478 189.186.41.229 11c9d2cf-52f5-4253-9992-1df49e9b7d6f 2019-07-18 01:08:05.669017 11365 844 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.229 da1bbc59-6ec8-4f93-b077-f263dc556d22 2019-07-18 01:18:15.756142 11366 854 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 310\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-07-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-486\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 6a94e272-01ae-4283-b291-3c40a7cbd9ee 2019-07-18 01:19:13.946168 11367 707 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.41.229 6a94e272-01ae-4283-b291-3c40a7cbd9ee 2019-07-18 01:19:13.977348 11368 854 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 51d37792-0494-4212-96e7-aeac603f3474 2019-07-18 01:19:21.541877 11369 1168 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 310\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.549E3\nmove_type: '1'\nsale_id: 854\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-486\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-486 189.186.41.229 51d37792-0494-4212-96e7-aeac603f3474 2019-07-18 01:19:21.601944 11393 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-17 19:54:33.304906000 Z\n- &1 2019-07-17 21:20:45.976375000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-18 02:01:25.360911467 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 511\n- 512\n 1024 \N 189.186.41.229 22af9482-6f55-4aec-b550-506b657e9d06 2019-07-18 02:01:25.367953 11370 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-17 00:35:54.792058000 Z\n- &1 2019-07-17 17:15:02.363324000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-18 01:20:22.346635316 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094589\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093730\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093730\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 101\n- 102\n 204 \N 189.186.41.229 ab6c7f23-5c92-4000-8d3f-b7daa95b13ec 2019-07-18 01:20:22.362478 11371 10 User \N \N 10 User \N update ---\nunique_session_id:\n- FfptkzbUEcs5bnNW6dRP\n- JV7gsfnqsn_uJtsVnQfL\n 205 \N 189.186.41.229 ab6c7f23-5c92-4000-8d3f-b7daa95b13ec 2019-07-18 01:20:22.388464 11372 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-07-15 23:18:30.969119000 Z\n- &1 2019-07-17 23:53:17.903104000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-18 01:21:39.455563047 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 65\n- 66\n 132 \N 189.186.41.229 11aab10c-fae5-4be5-82e8-219abdf90a7c 2019-07-18 01:21:39.465414 11373 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 11_JqBWVMaea1huyB45T\n- nRr1mVLhExy8mpMr1L4n\n 133 \N 189.186.41.229 11aab10c-fae5-4be5-82e8-219abdf90a7c 2019-07-18 01:21:39.485222 11374 14 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.41.229 6709cd77-82fd-4252-80a9-ad68cb161d46 2019-07-18 01:22:33.267052 11375 14 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.41.229 afa9bbbe-410e-4304-879b-8650c327057e 2019-07-18 01:22:46.470274 11376 82 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-07-17\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.41.229 ea82d5d1-a0e2-4b48-a685-0cb857d9a489 2019-07-18 01:22:52.383383 11377 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-17 17:15:02.363324000 Z\n- &1 2019-07-18 01:20:22.346635000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-18 01:23:13.466964354 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093730\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 102\n- 103\n 206 \N 189.186.41.229 2f2bb61c-5f5d-47bc-8063-74520a3aa256 2019-07-18 01:23:13.474059 11378 10 User \N \N 10 User \N update ---\nunique_session_id:\n- JV7gsfnqsn_uJtsVnQfL\n- bA278K6GXzKm7Fx8fVZ5\n 207 \N 189.186.41.229 2f2bb61c-5f5d-47bc-8063-74520a3aa256 2019-07-18 01:23:13.48982 11379 82 Transfer \N \N 10 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 10\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-17\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.41.229 8ccdbed1-afd4-4e66-a467-babac9eb2c54 2019-07-18 01:23:32.300795 11380 733 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 16\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 8ccdbed1-afd4-4e66-a467-babac9eb2c54 2019-07-18 01:23:32.324345 11381 855 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 311\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-07-17\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-367\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 badc9385-450e-4629-8feb-288228e39d14 2019-07-18 01:24:20.593051 11382 733 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.229 badc9385-450e-4629-8feb-288228e39d14 2019-07-18 01:24:20.624852 11383 855 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 e24a0131-ff60-4942-b135-14435afe6f55 2019-07-18 01:24:30.529218 11384 1169 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 311\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 855\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-367\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-367 189.186.41.229 e24a0131-ff60-4942-b135-14435afe6f55 2019-07-18 01:24:30.550555 11385 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-07-17 23:53:17.903104000 Z\n- &1 2019-07-18 01:21:39.455563000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-18 01:32:53.459543037 Z\nsign_in_count:\n- 66\n- 67\n 134 \N 189.186.41.229 2b027bf0-7882-48e0-908c-80c45b0fc335 2019-07-18 01:32:53.466569 11386 9 User \N \N 9 User \N update ---\nunique_session_id:\n- nRr1mVLhExy8mpMr1L4n\n- tKx3VQQee1CukvHwqf_Q\n 135 \N 189.186.41.229 2b027bf0-7882-48e0-908c-80c45b0fc335 2019-07-18 01:32:53.481174 11387 856 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 310\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-07-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-487\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 1a5e841b-b970-498c-b006-37dd342f4208 2019-07-18 01:34:44.143428 11388 712 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.229 1a5e841b-b970-498c-b006-37dd342f4208 2019-07-18 01:34:44.171348 11389 856 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 d39cdb5e-c4c0-4d79-b432-9ac7e3a538d7 2019-07-18 01:36:32.375638 11390 1170 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 310\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 856\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-487\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.749E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-487 189.186.41.229 d39cdb5e-c4c0-4d79-b432-9ac7e3a538d7 2019-07-18 01:36:32.403028 11391 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-17 18:49:23.948988000 Z\n- &1 2019-07-17 20:01:36.863870000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-18 02:00:05.757487659 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 254\n- 255\n 510 \N 189.186.41.229 dac1f500-4a66-4277-b8df-6e386447e136 2019-07-18 02:00:05.766606 11392 12 User \N \N 12 User \N update ---\nunique_session_id:\n- xhSN4s-ncTr72fAfTASf\n- Nju4-zZZxDYoDNoJDsuW\n 511 \N 189.186.41.229 dac1f500-4a66-4277-b8df-6e386447e136 2019-07-18 02:00:05.784627 11394 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Jy1-Ei23mm1CQPnxaC9g\n- hJhZkDfyhZkxmsjLapZV\n 1025 \N 189.186.41.229 22af9482-6f55-4aec-b550-506b657e9d06 2019-07-18 02:01:25.382068 11395 308 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 310\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.814E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.77E4\ncash_fund: !ruby/object:BigDecimal 18:0.739E3\nphysical_cash: !ruby/object:BigDecimal 18:0.8439E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.229 c7d1900f-8830-475f-9e9a-50125f8fca5e 2019-07-18 02:07:17.386223 11396 310 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.229 c7d1900f-8830-475f-9e9a-50125f8fca5e 2019-07-18 02:07:17.400457 11397 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-18 01:20:22.346635000 Z\n- &1 2019-07-18 01:23:13.466964000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-18 02:12:18.418572017 Z\nsign_in_count:\n- 103\n- 104\n 208 \N 189.186.41.229 7ad59c34-bf0f-421f-872a-2aa25b4b2019 2019-07-18 02:12:18.42768 11398 10 User \N \N 10 User \N update ---\nunique_session_id:\n- bA278K6GXzKm7Fx8fVZ5\n- 1sKu1r352zM13dm2C1eh\n 209 \N 189.186.41.229 7ad59c34-bf0f-421f-872a-2aa25b4b2019 2019-07-18 02:12:18.447588 11399 309 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 311\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.3347E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.13E4\ncash_fund: !ruby/object:BigDecimal 18:0.818E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2118E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.229 09d0affb-8c93-477a-b24b-34cc62620ef6 2019-07-18 02:14:44.731741 11400 311 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.229 09d0affb-8c93-477a-b24b-34cc62620ef6 2019-07-18 02:14:44.748034 11401 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-15 23:50:57.256874000 Z\n- &1 2019-07-16 17:09:28.289658000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-18 16:11:27.945663328 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094589\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094589\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 212\n- 213\n 429 \N 189.186.41.229 18699d23-8163-48ef-b370-83e09594f72e 2019-07-18 16:11:27.976288 11402 2 User \N \N 2 User \N update ---\nunique_session_id:\n- SCs3GyyRx--X6Z7DPzTy\n- px5bcSbBKyAazDnNgQAS\n 430 \N 189.186.41.229 18699d23-8163-48ef-b370-83e09594f72e 2019-07-18 16:11:27.998289 11403 312 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.739E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 739.0 189.186.41.229 3c3cd100-052b-4c3a-8e82-f5214712cbe9 2019-07-18 16:12:37.20415 11404 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-17 21:20:45.976375000 Z\n- &1 2019-07-18 02:01:25.360911000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-18 17:37:17.338572953 Z\nsign_in_count:\n- 512\n- 513\n 1026 \N 189.186.41.229 835cbc87-e733-4b1b-a17a-b1e17fa1b3c8 2019-07-18 17:37:17.359228 11405 3 User \N \N 3 User \N update ---\nunique_session_id:\n- hJhZkDfyhZkxmsjLapZV\n- _kYiMudRZViWF7k_5aT4\n 1027 \N 189.186.41.229 835cbc87-e733-4b1b-a17a-b1e17fa1b3c8 2019-07-18 17:37:17.380671 11406 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-17 20:01:36.863870000 Z\n- &1 2019-07-18 02:00:05.757487000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-18 18:45:34.166240278 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 255\n- 256\n 512 \N 189.186.41.229 fc639eb6-a7c5-46d1-9593-bc5767a9d866 2019-07-18 18:45:34.172987 11407 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Nju4-zZZxDYoDNoJDsuW\n- HScL1U8yDcG8WttPAEQ4\n 513 \N 189.186.41.229 fc639eb6-a7c5-46d1-9593-bc5767a9d866 2019-07-18 18:45:34.187088 11408 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-17 22:30:29.622917000 Z\n- &1 2019-07-17 23:32:26.388567000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-18 19:16:26.451844884 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093730\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093730\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938150\n mask_addr: 4294967295\nsign_in_count:\n- 354\n- 355\n 710 \N 200.68.150.102 f9fe8c64-ea7a-4d4f-b288-1f20cefcfdbb 2019-07-18 19:16:26.45963 11409 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bYx9F4ygsdqWwzwyrjsh\n- U3US_JT13kgGsTb7xstH\n 711 \N 200.68.150.102 f9fe8c64-ea7a-4d4f-b288-1f20cefcfdbb 2019-07-18 19:16:26.476799 11410 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-18 02:00:05.757487000 Z\n- &1 2019-07-18 18:45:34.166240000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-19 01:55:21.537194693 Z\nsign_in_count:\n- 256\n- 257\n 514 \N 189.186.41.229 34239b76-899d-4213-9098-2a2a17319a03 2019-07-19 01:55:21.543291 11411 12 User \N \N 12 User \N update ---\nunique_session_id:\n- HScL1U8yDcG8WttPAEQ4\n- Gxu35y_sRuVsd6x-sw9b\n 515 \N 189.186.41.229 34239b76-899d-4213-9098-2a2a17319a03 2019-07-19 01:55:21.558426 11412 310 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 312\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 16\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.739E3\nphysical_cash: !ruby/object:BigDecimal 18:0.739E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.229 9e453a34-d2a3-46d6-920a-861f82c42c11 2019-07-19 01:55:52.189952 11413 312 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.229 9e453a34-d2a3-46d6-920a-861f82c42c11 2019-07-19 01:55:52.202735 11414 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-18 02:01:25.360911000 Z\n- &1 2019-07-18 17:37:17.338572000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-19 01:56:39.080814591 Z\nsign_in_count:\n- 513\n- 514\n 1028 \N 189.186.41.229 119b994a-06e1-47ae-87d4-bfc8f64ad6bf 2019-07-19 01:56:39.086651 11415 3 User \N \N 3 User \N update ---\nunique_session_id:\n- _kYiMudRZViWF7k_5aT4\n- meZ16z_xWJxzzWrus-VB\n 1029 \N 189.186.41.229 119b994a-06e1-47ae-87d4-bfc8f64ad6bf 2019-07-19 01:56:39.10062 11416 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-18 01:23:13.466964000 Z\n- &1 2019-07-18 02:12:18.418572000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-19 01:57:24.249587795 Z\nsign_in_count:\n- 104\n- 105\n 210 \N 189.186.41.229 eaa7747f-b9ae-4641-a635-7c54986612f1 2019-07-19 01:57:24.256037 11417 10 User \N \N 10 User \N update ---\nunique_session_id:\n- 1sKu1r352zM13dm2C1eh\n- MUVnaFM2XGASEUsKySg7\n 211 \N 189.186.41.229 eaa7747f-b9ae-4641-a635-7c54986612f1 2019-07-19 01:57:24.270791 11418 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-18 02:12:18.418572000 Z\n- &1 2019-07-19 01:57:24.249587000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-19 01:58:26.860756040 Z\nsign_in_count:\n- 105\n- 106\n 212 \N 189.186.41.229 cc04de09-5242-4c65-8bef-4618ed001a31 2019-07-19 01:58:26.866638 11419 10 User \N \N 10 User \N update ---\nunique_session_id:\n- MUVnaFM2XGASEUsKySg7\n- ZN9VrcVRecdZ8Zbpy7Mv\n 213 \N 189.186.41.229 cc04de09-5242-4c65-8bef-4618ed001a31 2019-07-19 01:58:26.879983 45959 3421 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 17e53593-0218-4ffb-b4c3-df2afbb460ee 2020-11-14 21:14:33.726418 11420 313 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.818E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 818.0 189.186.41.229 6d2896e8-7714-4a41-9621-40ea20c58b81 2019-07-19 01:58:31.848803 11421 311 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 313\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.818E3\nphysical_cash: !ruby/object:BigDecimal 18:0.818E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.229 271bb43a-b1e6-467c-b613-8c637a0a0777 2019-07-19 01:58:52.782496 11422 313 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.229 271bb43a-b1e6-467c-b613-8c637a0a0777 2019-07-19 01:58:52.797141 11423 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-18 17:37:17.338572000 Z\n- &1 2019-07-19 01:56:39.080814000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-19 16:11:44.951665371 Z\nsign_in_count:\n- 514\n- 515\n 1030 \N 189.186.41.229 dce4d873-48d8-4b54-b243-cdca596e7875 2019-07-19 16:11:44.980536 11424 3 User \N \N 3 User \N update ---\nunique_session_id:\n- meZ16z_xWJxzzWrus-VB\n- EzjMNyYan-gVpxEZjnPx\n 1031 \N 189.186.41.229 dce4d873-48d8-4b54-b243-cdca596e7875 2019-07-19 16:11:45.008551 11425 314 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.866E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 866.0 189.186.41.229 aa011c99-e21a-4b7d-b229-543eea84d3d0 2019-07-19 16:15:54.595953 11426 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-16 17:09:28.289658000 Z\n- &1 2019-07-18 16:11:27.945663000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-19 16:18:18.464332893 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094589\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 213\n- 214\n 431 \N 189.186.41.229 4e1f068a-bebe-4da5-a174-769f7c7d77ad 2019-07-19 16:18:18.474529 11427 2 User \N \N 2 User \N update ---\nunique_session_id:\n- px5bcSbBKyAazDnNgQAS\n- Y_4HE4Q3Z9xscijivX1d\n 432 \N 189.186.41.229 4e1f068a-bebe-4da5-a174-769f7c7d77ad 2019-07-19 16:18:18.491038 11428 315 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.739E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 739.0 189.186.41.229 b53f665b-23c3-4d73-b27b-ab08bc3b52e9 2019-07-19 16:29:10.247213 11429 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-17 23:32:26.388567000 Z\n- &1 2019-07-18 19:16:26.451844000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-19 17:24:47.620947294 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093730\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938150\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938150\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095534\n mask_addr: 4294967295\nsign_in_count:\n- 355\n- 356\n 712 \N 189.186.46.238 cded7c73-dd64-4820-848c-a8fe8d547174 2019-07-19 17:24:47.628144 11430 4 User \N \N 4 User \N update ---\nunique_session_id:\n- U3US_JT13kgGsTb7xstH\n- MjNJcyuGA5SjBG71iQrM\n 713 \N 189.186.46.238 cded7c73-dd64-4820-848c-a8fe8d547174 2019-07-19 17:24:47.645333 11431 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-18 16:11:27.945663000 Z\n- &1 2019-07-19 16:18:18.464332000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-19 18:47:07.153395148 Z\nsign_in_count:\n- 214\n- 215\n 433 \N 189.186.41.229 766b7c2b-329b-4868-8f50-3c9295dc4e03 2019-07-19 18:47:07.159148 11432 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Y_4HE4Q3Z9xscijivX1d\n- 2X8LtknAgS4Lc5bvxGAE\n 434 \N 189.186.41.229 766b7c2b-329b-4868-8f50-3c9295dc4e03 2019-07-19 18:47:07.171815 11433 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-19 16:18:18.464332000 Z\n- &1 2019-07-19 18:47:07.153395000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-19 19:30:03.149247644 Z\nsign_in_count:\n- 215\n- 216\n 435 \N 189.186.41.229 b089a56f-a373-4228-8484-40953c733a5b 2019-07-19 19:30:03.155884 11434 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 2X8LtknAgS4Lc5bvxGAE\n- Yde-kN9egeFNqmWMPTQH\n 436 \N 189.186.41.229 b089a56f-a373-4228-8484-40953c733a5b 2019-07-19 19:30:03.17037 11435 857 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 315\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-07-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-488\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 f6b5b301-81ab-4caa-b86f-7545d1b3cb73 2019-07-19 19:34:31.881255 11436 707 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.41.229 f6b5b301-81ab-4caa-b86f-7545d1b3cb73 2019-07-19 19:34:31.914111 11437 857 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 5f688d30-dad1-43e4-b10a-202cac463c15 2019-07-19 19:34:37.931278 11438 1171 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 315\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.549E3\nmove_type: '1'\nsale_id: 857\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-488\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-488 189.186.41.229 5f688d30-dad1-43e4-b10a-202cac463c15 2019-07-19 19:34:37.953369 11439 858 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 314\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-07-19\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-368\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 146edef4-fd1c-418a-9bc9-de617009d0eb 2019-07-19 19:39:52.610659 11440 724 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.41.229 146edef4-fd1c-418a-9bc9-de617009d0eb 2019-07-19 19:39:52.64064 11441 858 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-368 cancelada. 189.186.41.229 fea0b98e-157b-4c0b-9626-249bba6991ea 2019-07-19 19:41:44.533247 11442 724 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.41.229 fea0b98e-157b-4c0b-9626-249bba6991ea 2019-07-19 19:41:44.561373 11443 859 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 314\namount: !ruby/object:BigDecimal 18:0.100948E4\ntax: !ruby/object:BigDecimal 18:0.3852E2\ndiscount: !ruby/object:BigDecimal 18:0.1197E3\ntotal: !ruby/object:BigDecimal 18:0.9283E3\nstatus: 0\ndate_sale: 2019-07-19\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-369\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 f2e18f58-da77-4161-9a89-497c07c45f95 2019-07-19 19:43:11.911436 46006 3427 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 9b962b50-2f1b-4c4a-9417-0d8e4e5ea67a 2020-11-15 00:26:05.669516 11447 1172 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 314\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 859\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-369\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-369 189.186.41.229 0b6975bd-7914-4bc7-831d-4bd7c9419db5 2019-07-19 19:45:08.996292 11448 1172 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 314\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 859\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-369\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.41.229 7b47bcb9-7e8c-4520-abc5-71b2cae8d106 2019-07-19 19:45:14.677491 11449 859 Sale \N \N 3 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-369 cancelada. 189.186.41.229 b032597e-b532-4ffa-a28a-19ffaeee3de2 2019-07-19 19:45:50.112189 11450 279 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.41.229 b032597e-b532-4ffa-a28a-19ffaeee3de2 2019-07-19 19:45:50.13846 11451 724 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.41.229 b032597e-b532-4ffa-a28a-19ffaeee3de2 2019-07-19 19:45:50.161302 11452 859 Sale \N \N 3 User \N update --- {}\n 4 Venta PV2-V-369 cancelada. 189.186.41.229 b8da9dd8-0571-4ccf-8201-58ba95283ff5 2019-07-19 19:46:11.680917 11453 279 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.41.229 b8da9dd8-0571-4ccf-8201-58ba95283ff5 2019-07-19 19:46:11.701193 11454 724 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 6 \N 189.186.41.229 b8da9dd8-0571-4ccf-8201-58ba95283ff5 2019-07-19 19:46:11.719813 11455 131 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 315\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida\nexpense_date: 2019-07-19\nexpense_code: PV1-E-108\n 1 Egreso por 50.0 registrado 189.186.41.229 b5e8787d-24a4-498d-bc22-51861e938d79 2019-07-19 19:46:29.888046 11456 1173 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 315\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 131\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.229 b5e8787d-24a4-498d-bc22-51861e938d79 2019-07-19 19:46:29.906789 11457 860 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 314\namount: !ruby/object:BigDecimal 18:0.100938E4\ntax: !ruby/object:BigDecimal 18:0.3862E2\ndiscount: !ruby/object:BigDecimal 18:0.119E3\ntotal: !ruby/object:BigDecimal 18:0.929E3\nstatus: 0\ndate_sale: 2019-07-19\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-370\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 c03dc9ae-de5c-4ec4-abe5-19e2ba06c358 2019-07-19 19:46:50.493293 11458 724 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 189.186.41.229 c03dc9ae-de5c-4ec4-abe5-19e2ba06c358 2019-07-19 19:46:50.517584 11459 279 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.41.229 c03dc9ae-de5c-4ec4-abe5-19e2ba06c358 2019-07-19 19:46:50.538736 11460 860 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 76c10323-9ee1-40ad-9d2a-a465f67543da 2019-07-19 19:46:54.196537 11461 1174 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 314\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.929E3\nmove_type: '1'\nsale_id: 860\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-370\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.71E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-370 189.186.41.229 76c10323-9ee1-40ad-9d2a-a465f67543da 2019-07-19 19:46:54.217018 11462 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-19 18:47:07.153395000 Z\n- &1 2019-07-19 19:30:03.149247000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-19 19:50:33.144409940 Z\nsign_in_count:\n- 216\n- 217\n 437 \N 189.186.41.229 113444a5-4fcb-4d98-b249-ddb9d80fccbd 2019-07-19 19:50:33.149999 11463 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Yde-kN9egeFNqmWMPTQH\n- A9u5Ums3JmKbKR1yzK_Z\n 438 \N 189.186.41.229 113444a5-4fcb-4d98-b249-ddb9d80fccbd 2019-07-19 19:50:33.162472 11464 132 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 314\nquantity: !ruby/object:BigDecimal 18:0.85E3\nstatus: 1\nobservations: sueldo Yaretzi\nexpense_date: 2019-07-19\nexpense_code: PV2-E-24\n 1 Egreso por 850.0 registrado 189.186.41.229 8744df7a-f573-4060-9b95-cf84a187e288 2019-07-19 20:10:29.947456 11465 1175 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 314\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.85E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 132\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.229 8744df7a-f573-4060-9b95-cf84a187e288 2019-07-19 20:10:29.967532 11466 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-19 19:30:03.149247000 Z\n- &1 2019-07-19 19:50:33.144409000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-19 20:55:13.710660588 Z\nsign_in_count:\n- 217\n- 218\n 439 \N 189.186.41.229 7edab618-f16b-49d4-9221-0a424ee3e1ca 2019-07-19 20:55:13.716304 11467 2 User \N \N 2 User \N update ---\nunique_session_id:\n- A9u5Ums3JmKbKR1yzK_Z\n- bfeKgxyApfkpR6QSZ5mT\n 440 \N 189.186.41.229 7edab618-f16b-49d4-9221-0a424ee3e1ca 2019-07-19 20:55:13.729822 11468 861 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 315\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-07-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-489\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 eec36d26-2d8c-477b-8158-0162d5b60b7d 2019-07-19 21:01:37.762453 11469 698 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.41.229 eec36d26-2d8c-477b-8158-0162d5b60b7d 2019-07-19 21:01:37.79827 11470 861 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 3b24703d-6922-43a2-a038-dbe8f05eb4e9 2019-07-19 21:01:59.25782 11520 341 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.41.229 6f5cb8e6-ad12-4366-a87c-ac0860489064 2019-07-20 18:01:59.622042 20270 783 Product \N \N 4 User \N update ---\ndescription:\n- SUDADERA BRILLOS WILD\n- SUDADERA BRILLOS WILD Y NEGRA\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '783'\n is_parent: false\n sku: CHA-865\n name: CHA-01\n description: SUDADERA BRILLOS WILD Y NEGRA\n price_base: '340.0'\n price_sale: '799.0'\n img_product: PHOTO-2019-10-15-21-54-34.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000783'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-11 21:20:23.084535'\n updated_at: &12 2019-11-05 20:27:44.772139085 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '783'\n sku: CHA-865\n name: CHA-01\n description: SUDADERA BRILLOS WILD\n price_base: '340.00'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-11 21:20:23.084535'\n updated_at: '2019-10-28 21:34:03.193369'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000783'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '783'\n type: *3\n value: 783\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-865\n type: *7\n value: CHA-865\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-01\n type: *8\n value: CHA-01\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: SUDADERA BRILLOS WILD Y NEGRA\n type: *6\n value: SUDADERA BRILLOS WILD Y NEGRA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '340.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.34E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-10-15-21-54-34.jpg\n type: *2\n value: PHOTO-2019-10-15-21-54-34.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000783'\n type: *2\n value: '0000783'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-11 21:20:23.084535'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-10-15-21-54-34.jpg\n 5 El producto CHA-865 fue modificado. 187.149.74.215 7f36c8fa-7189-46f6-a25f-7b88516f4b8b 2019-11-05 20:27:44.810866 11471 1176 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 315\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 861\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-489\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-489 189.186.41.229 3b24703d-6922-43a2-a038-dbe8f05eb4e9 2019-07-19 21:01:59.286856 11472 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-07-15 20:28:02.642942000 Z\n- &1 2019-07-15 23:44:47.119644000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-19 21:04:40.701627092 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 60\n- 61\n 122 \N 189.186.41.229 65b3a42f-d323-4c4d-bca2-657446f3bff6 2019-07-19 21:04:40.708997 11473 1 User \N \N 1 User \N update ---\nunique_session_id:\n- j2Ess3VhmCzzA_MpZ823\n- U2MyLZUnMbeGXZCNSzTL\n 123 \N 189.186.41.229 65b3a42f-d323-4c4d-bca2-657446f3bff6 2019-07-19 21:04:40.72335 11474 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-19 01:56:39.080814000 Z\n- &1 2019-07-19 16:11:44.951665000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-19 21:07:38.672464157 Z\nsign_in_count:\n- 515\n- 516\n 1032 \N 189.186.41.229 4d8a1bab-d1d2-4002-af9f-6d4be8fb2a27 2019-07-19 21:07:38.67845 11475 3 User \N \N 3 User \N update ---\nunique_session_id:\n- EzjMNyYan-gVpxEZjnPx\n- Vx31Gqs14pAF4r6aFpx9\n 1033 \N 189.186.41.229 4d8a1bab-d1d2-4002-af9f-6d4be8fb2a27 2019-07-19 21:07:38.692451 11476 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-19 16:11:44.951665000 Z\n- &1 2019-07-19 21:07:38.672464000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-19 21:08:12.530242774 Z\nsign_in_count:\n- 516\n- 517\n 1034 \N 189.186.41.229 30b84c34-6dd2-4cad-8324-c372534a0121 2019-07-19 21:08:12.53562 11477 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Vx31Gqs14pAF4r6aFpx9\n- 8Fo6yb-LCndCM5s4UDUA\n 1035 \N 189.186.41.229 30b84c34-6dd2-4cad-8324-c372534a0121 2019-07-19 21:08:12.551231 11478 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-19 21:07:38.672464000 Z\n- &1 2019-07-19 21:08:12.530242000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-19 21:09:06.472987130 Z\nsign_in_count:\n- 517\n- 518\n 1036 \N 189.186.41.229 2a5d78e9-75ac-470e-adbc-1da7fbe846a1 2019-07-19 21:09:06.479149 11479 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 8Fo6yb-LCndCM5s4UDUA\n- E_zN1bngkCyQjKJzhXop\n 1037 \N 189.186.41.229 2a5d78e9-75ac-470e-adbc-1da7fbe846a1 2019-07-19 21:09:06.49245 11480 1177 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 314\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.349E3\nmove_type: '1'\nsale_id: 770\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.349E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-333 189.186.41.229 a97a3ff0-c2a1-4c81-a470-ea5278100985 2019-07-19 21:09:34.101924 11481 770 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.229 e2332588-c2c7-4321-aa65-8cc3469c7f11 2019-07-19 21:09:36.406025 11482 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-07-15 23:44:47.119644000 Z\n- &1 2019-07-19 21:04:40.701627000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-19 21:16:03.083120637 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092534\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 61\n- 62\n 124 \N 189.186.41.229 8d3c597d-e8dc-4afe-8032-c876c70f31f4 2019-07-19 21:16:03.08966 11483 1 User \N \N 1 User \N update ---\nunique_session_id:\n- U2MyLZUnMbeGXZCNSzTL\n- NEdWRupiuPdggjW7BzmZ\n 125 \N 189.186.41.229 8d3c597d-e8dc-4afe-8032-c876c70f31f4 2019-07-19 21:16:03.102771 11484 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-19 21:08:12.530242000 Z\n- &1 2019-07-19 21:09:06.472987000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-19 21:49:56.674004760 Z\nsign_in_count:\n- 518\n- 519\n 1038 \N 189.186.41.229 c2c0e52a-a4ac-4db9-946d-8e3f806f3e04 2019-07-19 21:49:56.679948 11485 3 User \N \N 3 User \N update ---\nunique_session_id:\n- E_zN1bngkCyQjKJzhXop\n- HqiKyA-NjvThXfdVAE1_\n 1039 \N 189.186.41.229 c2c0e52a-a4ac-4db9-946d-8e3f806f3e04 2019-07-19 21:49:56.694045 11486 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-18 19:16:26.451844000 Z\n- &1 2019-07-19 17:24:47.620947000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-19 23:43:30.328630759 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938150\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095534\n mask_addr: 4294967295\nsign_in_count:\n- 356\n- 357\n 714 \N 189.186.46.238 330f1381-f30d-470a-84ab-e3a023543d39 2019-07-19 23:43:30.335217 11487 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MjNJcyuGA5SjBG71iQrM\n- 75Kb4RZpXHxML7q5Bx1b\n 715 \N 189.186.46.238 330f1381-f30d-470a-84ab-e3a023543d39 2019-07-19 23:43:30.352285 11488 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-19 17:24:47.620947000 Z\n- &1 2019-07-19 23:43:30.328630000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-20 00:10:34.833872306 Z\nsign_in_count:\n- 357\n- 358\n 716 \N 189.186.46.238 2fed4037-ad89-4d4b-b565-438503df77b0 2019-07-20 00:10:34.841544 11489 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 75Kb4RZpXHxML7q5Bx1b\n- T88KfqbUxgNVLAB6-sfx\n 717 \N 189.186.46.238 2fed4037-ad89-4d4b-b565-438503df77b0 2019-07-20 00:10:34.858843 11490 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-19 19:50:33.144409000 Z\n- &1 2019-07-19 20:55:13.710660000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-20 01:55:11.012907817 Z\nsign_in_count:\n- 218\n- 219\n 441 \N 189.186.41.229 bafed593-2b0e-4b68-a7b7-049762813155 2019-07-20 01:55:11.018349 11491 2 User \N \N 2 User \N update ---\nunique_session_id:\n- bfeKgxyApfkpR6QSZ5mT\n- FfPHvv9a6qEChiuLLPxn\n 442 \N 189.186.41.229 bafed593-2b0e-4b68-a7b7-049762813155 2019-07-20 01:55:11.030821 11492 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-19 01:57:24.249587000 Z\n- &1 2019-07-19 01:58:26.860756000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-20 01:56:06.585288700 Z\nsign_in_count:\n- 106\n- 107\n 214 \N 189.186.41.229 9f324d18-4739-462b-bfb5-f9091abc0471 2019-07-20 01:56:06.591018 11493 10 User \N \N 10 User \N update ---\nunique_session_id:\n- ZN9VrcVRecdZ8Zbpy7Mv\n- 8_wozQwoy3kcW4PpwdvF\n 215 \N 189.186.41.229 9f324d18-4739-462b-bfb5-f9091abc0471 2019-07-20 01:56:06.60293 11494 312 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 314\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.1278E4\namount_out: !ruby/object:BigDecimal 18:0.85E3\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.594E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1294E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.229 878b408a-af8b-44d2-94c2-68163e8d75e4 2019-07-20 02:00:52.500682 11495 314 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.229 878b408a-af8b-44d2-94c2-68163e8d75e4 2019-07-20 02:00:52.514082 11521 83 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-07-20\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.41.229 c0521fc6-17e3-4d8e-9efb-6ad47c657cdc 2019-07-20 18:02:06.2788 11496 313 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 315\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1748E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.1801E4\ncash_fund: !ruby/object:BigDecimal 18:0.636E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2437E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.229 2f1f8b9f-63bf-4dc3-97e0-e5c0363a6b4f 2019-07-20 02:09:17.719997 11497 315 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.229 2f1f8b9f-63bf-4dc3-97e0-e5c0363a6b4f 2019-07-20 02:09:17.735454 11498 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-19 21:09:06.472987000 Z\n- &1 2019-07-19 21:49:56.674004000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-20 16:03:22.791988500 Z\nsign_in_count:\n- 519\n- 520\n 1040 \N 189.186.41.229 81abeaf1-651d-4d20-9d29-140b521eef9a 2019-07-20 16:03:22.820971 11499 3 User \N \N 3 User \N update ---\nunique_session_id:\n- HqiKyA-NjvThXfdVAE1_\n- E5jZ55sYJb1YjCddQ-Aq\n 1041 \N 189.186.41.229 81abeaf1-651d-4d20-9d29-140b521eef9a 2019-07-20 16:03:22.84148 11500 316 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.594E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 594.0 189.186.41.229 ddf5b0ce-8e26-4d6f-a1f8-7392d9605479 2019-07-20 16:04:54.740222 11501 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-19 20:55:13.710660000 Z\n- &1 2019-07-20 01:55:11.012907000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-20 16:10:45.559410370 Z\nsign_in_count:\n- 219\n- 220\n 443 \N 189.186.41.229 81ac485f-18aa-41bb-8be8-2bf1ee7a748d 2019-07-20 16:10:45.58579 11502 2 User \N \N 2 User \N update ---\nunique_session_id:\n- FfPHvv9a6qEChiuLLPxn\n- uPE1e3zzrgQ78ZzoK5zA\n 444 \N 189.186.41.229 81ac485f-18aa-41bb-8be8-2bf1ee7a748d 2019-07-20 16:10:45.604905 11503 317 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.636E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 636.0 189.186.41.229 e10653eb-be35-4b2d-93e8-4be5792d0c5f 2019-07-20 16:13:55.580408 11504 862 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 316\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-07-20\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-371\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 a4117fb9-c382-4d45-afdb-edb1d4c22c42 2019-07-20 16:29:58.31336 11505 598 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.41.229 a4117fb9-c382-4d45-afdb-edb1d4c22c42 2019-07-20 16:29:58.340294 11506 862 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 271ee977-5d3c-4ce1-81ae-5dfacae101a5 2019-07-20 16:30:37.353198 11507 1178 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 316\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 862\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-371\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-371 189.186.41.229 271ee977-5d3c-4ce1-81ae-5dfacae101a5 2019-07-20 16:30:37.373835 11508 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-19 23:43:30.328630000 Z\n- &1 2019-07-20 00:10:34.833872000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-20 17:14:42.834968726 Z\nsign_in_count:\n- 358\n- 359\n 718 \N 189.186.46.238 4719a877-a5bb-423e-8e0d-b3ac805a5b2e 2019-07-20 17:14:42.840667 11509 4 User \N \N 4 User \N update ---\nunique_session_id:\n- T88KfqbUxgNVLAB6-sfx\n- e81emq4abEziZxvXxKGg\n 719 \N 189.186.46.238 4719a877-a5bb-423e-8e0d-b3ac805a5b2e 2019-07-20 17:14:42.854761 11510 863 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 317\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-07-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-490\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 a6fb07ae-d76b-4664-bdc2-17cc7cce6d9e 2019-07-20 17:30:16.135566 11511 699 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.41.229 a6fb07ae-d76b-4664-bdc2-17cc7cce6d9e 2019-07-20 17:30:16.164786 11512 863 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 9427b79a-ae71-4eb6-a7a3-25483a0b3923 2019-07-20 17:30:29.373132 11513 1179 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 317\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 863\ncardnumber: 383\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-490\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-490 189.186.41.229 9427b79a-ae71-4eb6-a7a3-25483a0b3923 2019-07-20 17:30:29.394072 11514 143 Customer \N \N 2 User \N create ---\nnick_name: ROCIO RODRIGUEZ\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ROCIO RODRIGUEZ fue registrado. 189.186.41.229 385133d3-d572-4ef5-acf6-4292170807cd 2019-07-20 17:46:05.134556 11515 864 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 316\namount: !ruby/object:BigDecimal 18:0.57672E3\ntax: !ruby/object:BigDecimal 18:0.9228E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-07-20\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-372\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 ca0f1749-3a1a-4807-bea4-6cd4b408a820 2019-07-20 17:57:41.918037 11516 436 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 189.186.41.229 ca0f1749-3a1a-4807-bea4-6cd4b408a820 2019-07-20 17:57:41.958965 11517 864 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 b7fd78c0-bc25-457c-86e9-4e2831980265 2019-07-20 17:57:45.618054 11518 1180 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 316\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.669E3\nmove_type: '1'\nsale_id: 864\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-372\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-372 189.186.41.229 b7fd78c0-bc25-457c-86e9-4e2831980265 2019-07-20 17:57:45.640449 11519 365 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.32E2\n- !ruby/object:BigDecimal 18:0.31E2\n 16 \N 189.186.41.229 501a6798-562a-4766-a6fe-59129c6ce7ea 2019-07-20 18:01:29.926207 11522 81 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-20\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.41.229 aa029634-9fc0-48ff-94b1-0e08cc4e6b0f 2019-07-20 18:05:32.951912 11523 734 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 295\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 aa029634-9fc0-48ff-94b1-0e08cc4e6b0f 2019-07-20 18:05:32.974979 11524 83 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-20\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.41.229 0346ba91-f7b2-4dfe-8c76-ac9b9320133d 2019-07-20 18:05:48.038161 11525 735 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 367\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 0346ba91-f7b2-4dfe-8c76-ac9b9320133d 2019-07-20 18:05:48.057628 11526 736 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 343\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 0346ba91-f7b2-4dfe-8c76-ac9b9320133d 2019-07-20 18:05:48.078544 11527 865 Sale \N \N 2 User \N create ---\ncustomer_id: 143\nuser_id: 2\nopen_cash_register_id: 317\namount: !ruby/object:BigDecimal 18:0.227386E4\ntax: !ruby/object:BigDecimal 18:0.17215E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.244601E4\nstatus: 0\ndate_sale: 2019-07-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-491\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 80515cdd-05b1-415c-9291-3909078fb48e 2019-07-20 18:29:13.381327 11528 736 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.229 80515cdd-05b1-415c-9291-3909078fb48e 2019-07-20 18:29:13.404934 11529 707 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.41.229 80515cdd-05b1-415c-9291-3909078fb48e 2019-07-20 18:29:13.425852 11530 735 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.229 80515cdd-05b1-415c-9291-3909078fb48e 2019-07-20 18:29:13.447227 11531 704 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.41.229 80515cdd-05b1-415c-9291-3909078fb48e 2019-07-20 18:29:13.468076 11532 86 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.41.229 80515cdd-05b1-415c-9291-3909078fb48e 2019-07-20 18:29:13.489041 11533 865 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 042b634e-c465-4a01-8492-764f57fedb4a 2019-07-20 18:30:08.271423 11534 1181 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 317\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.244601E4\nmove_type: '1'\nsale_id: 865\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-491\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: 0000OW9V\ncustomer_account: 0000OW9V\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-491 189.186.41.229 042b634e-c465-4a01-8492-764f57fedb4a 2019-07-20 18:30:08.291196 11535 143 Customer \N \N 2 User \N update ---\nphone:\n- ''\n- "(667) 190-8221"\n 2 El cliente ROCIO RODRIGUEZ fue registrado. 189.186.41.229 c77680fd-a007-4a9d-bd80-88e94eda6254 2019-07-20 18:32:39.684881 11536 866 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 317\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-07-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-492\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 228cf298-0558-4c09-b935-427eceb43799 2019-07-20 19:04:54.924072 11537 699 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.41.229 228cf298-0558-4c09-b935-427eceb43799 2019-07-20 19:04:54.953331 11538 866 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 f58b5516-f0f6-491d-8888-dfe42d15046c 2019-07-20 19:05:41.116547 11539 1182 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 317\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 866\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-492\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-492 189.186.41.229 f58b5516-f0f6-491d-8888-dfe42d15046c 2019-07-20 19:05:41.136465 11540 867 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 316\namount: !ruby/object:BigDecimal 18:0.36052E3\ntax: !ruby/object:BigDecimal 18:0.3848E2\ndiscount: !ruby/object:BigDecimal 18:0.12E3\ntotal: !ruby/object:BigDecimal 18:0.279E3\nstatus: 0\ndate_sale: 2019-07-20\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-373\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 898f50be-4cc1-437f-ba44-89dabd557ef3 2019-07-20 19:19:51.466085 11541 313 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.41.229 898f50be-4cc1-437f-ba44-89dabd557ef3 2019-07-20 19:19:51.493493 11542 867 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 32f5af3e-a957-427f-926d-eb2659c5e17a 2019-07-20 19:19:55.152265 11543 1183 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 316\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.279E3\nmove_type: '1'\nsale_id: 867\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-373\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-373 189.186.41.229 32f5af3e-a957-427f-926d-eb2659c5e17a 2019-07-20 19:19:55.172516 11544 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-20 01:55:11.012907000 Z\n- &1 2019-07-20 16:10:45.559410000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-20 21:42:26.726639945 Z\nsign_in_count:\n- 220\n- 221\n 445 \N 189.186.41.229 f2d54493-69d7-40d1-b0b6-f9f86d8a203e 2019-07-20 21:42:26.750023 11545 2 User \N \N 2 User \N update ---\nunique_session_id:\n- uPE1e3zzrgQ78ZzoK5zA\n- RgkLgYHKKAC_Ua-dbC9j\n 446 \N 189.186.41.229 f2d54493-69d7-40d1-b0b6-f9f86d8a203e 2019-07-20 21:42:26.772173 11546 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-20 16:10:45.559410000 Z\n- &1 2019-07-20 21:42:26.726639000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-20 21:58:33.462864032 Z\nsign_in_count:\n- 221\n- 222\n 447 \N 189.186.41.229 dde69f10-5124-4776-a674-1c495ed4b0e9 2019-07-20 21:58:33.468102 11547 2 User \N \N 2 User \N update ---\nunique_session_id:\n- RgkLgYHKKAC_Ua-dbC9j\n- E2BqxDLkykVhEy1xAu6w\n 448 \N 189.186.41.229 dde69f10-5124-4776-a674-1c495ed4b0e9 2019-07-20 21:58:33.481298 11548 133 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 317\nquantity: !ruby/object:BigDecimal 18:0.498E3\nstatus: 1\nobservations: SUELDO ANABELLY $200 SUELDO ROCIO $248 COMIDA $50\nexpense_date: 2019-07-20\nexpense_code: PV1-E-109\n 1 Egreso por 498.0 registrado 189.186.41.229 896c04aa-3588-4151-a17b-33bb8624108f 2019-07-20 22:00:06.080069 11549 1184 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 317\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.498E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 133\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.229 896c04aa-3588-4151-a17b-33bb8624108f 2019-07-20 22:00:06.101239 11550 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-20 00:10:34.833872000 Z\n- &1 2019-07-20 17:14:42.834968000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-20 23:01:34.717215029 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095534\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934313\n mask_addr: 4294967295\nsign_in_count:\n- 359\n- 360\n 720 \N 200.68.135.105 49587c0f-26fa-4b2e-95a3-f8b868d6c7be 2019-07-20 23:01:34.724694 11551 4 User \N \N 4 User \N update ---\nunique_session_id:\n- e81emq4abEziZxvXxKGg\n- sGk1x2HCDAyzDnoT98zD\n 721 \N 200.68.135.105 49587c0f-26fa-4b2e-95a3-f8b868d6c7be 2019-07-20 23:01:34.739978 11552 868 Sale \N \N 2 User \N create ---\ncustomer_id: 21\nuser_id: 2\nopen_cash_register_id: 317\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-07-20\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-493\nexpiration_date: 2019-08-24\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 125a5f18-071e-4b2d-a47e-d056254fb27d 2019-07-20 23:14:41.256631 11553 710 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.41.229 125a5f18-071e-4b2d-a47e-d056254fb27d 2019-07-20 23:14:41.309187 11554 1185 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 317\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 868\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-493\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-493 189.186.41.229 0a98e251-7cdd-4c8f-a715-653543bf21b2 2019-07-20 23:14:54.875444 11555 868 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.229 4e465b26-c311-4677-9fa3-5c5c5a403908 2019-07-20 23:14:56.904828 11556 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-20 21:42:26.726639000 Z\n- &1 2019-07-20 21:58:33.462864000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-20 23:14:57.441754088 Z\nsign_in_count:\n- 222\n- 223\n 449 \N 189.186.41.229 9d38c77f-2803-45d7-855d-9fba6c52cce0 2019-07-20 23:14:57.449616 11557 2 User \N \N 2 User \N update ---\nunique_session_id:\n- E2BqxDLkykVhEy1xAu6w\n- WxPE6dLRyiQuKseiUgk4\n 450 \N 189.186.41.229 9d38c77f-2803-45d7-855d-9fba6c52cce0 2019-07-20 23:14:57.466209 11558 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-20 21:58:33.462864000 Z\n- &1 2019-07-20 23:14:57.441754000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-20 23:15:40.824376434 Z\nsign_in_count:\n- 223\n- 224\n 451 \N 189.186.41.229 85e7a9e4-5196-4db4-b704-32d8be29da99 2019-07-20 23:15:40.833208 11559 2 User \N \N 2 User \N update ---\nunique_session_id:\n- WxPE6dLRyiQuKseiUgk4\n- mH57U4JBE2FWfe1o3N1s\n 452 \N 189.186.41.229 85e7a9e4-5196-4db4-b704-32d8be29da99 2019-07-20 23:15:40.852026 11560 869 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 316\namount: !ruby/object:BigDecimal 18:0.669E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-07-20\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-374\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 98398aca-4d75-444a-a030-b839b77845b5 2019-07-21 01:01:41.880795 11561 650 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.41.229 98398aca-4d75-444a-a030-b839b77845b5 2019-07-21 01:01:41.921261 11562 869 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 6af2fae3-76b9-478d-a74f-adf514dc6e44 2019-07-21 01:02:30.060377 11563 1186 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 316\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.669E3\nmove_type: '1'\nsale_id: 869\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-374\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-374 189.186.41.229 6af2fae3-76b9-478d-a74f-adf514dc6e44 2019-07-21 01:02:30.095655 11564 870 Sale \N \N 2 User \N create ---\ncustomer_id: 100\nuser_id: 2\nopen_cash_register_id: 317\namount: !ruby/object:BigDecimal 18:0.1498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1498E4\nstatus: 0\ndate_sale: 2019-07-20\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-494\nexpiration_date: 2019-08-24\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 1d2afdb7-1dfc-400c-a0b2-26576a0068ec 2019-07-21 01:12:20.697454 11565 712 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.41.229 1d2afdb7-1dfc-400c-a0b2-26576a0068ec 2019-07-21 01:12:20.733824 11566 711 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.41.229 1d2afdb7-1dfc-400c-a0b2-26576a0068ec 2019-07-21 01:12:20.760765 11567 1187 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 317\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 870\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-494\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-494 189.186.41.229 add85ad1-41b8-4a10-90d3-e6bcc17485bf 2019-07-21 01:12:30.372947 11568 870 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.229 6e09b8a1-1933-4ffb-bafb-8beccd807969 2019-07-21 01:12:32.059409 11569 314 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 317\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.579401E4\namount_out: !ruby/object:BigDecimal 18:0.498E3\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.687E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2187E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.229 ca95e924-64a4-4306-85a3-7daf7f71461d 2019-07-21 01:38:30.915753 11571 315 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 316\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.2086E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.21E4\ncash_fund: !ruby/object:BigDecimal 18:0.58E3\nphysical_cash: !ruby/object:BigDecimal 18:0.268E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.229 235f8862-0b62-47fe-8550-d7b5b26bd9b7 2019-07-21 01:57:36.372733 11572 316 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.229 235f8862-0b62-47fe-8550-d7b5b26bd9b7 2019-07-21 01:57:36.394656 11573 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-18 18:45:34.166240000 Z\n- &1 2019-07-19 01:55:21.537194000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-21 16:07:02.814862015 Z\nsign_in_count:\n- 257\n- 258\n 516 \N 189.186.41.229 796e55a8-404c-4e33-83c8-f11de125678b 2019-07-21 16:07:02.845272 11574 12 User \N \N 12 User \N update ---\nunique_session_id:\n- Gxu35y_sRuVsd6x-sw9b\n- niPGwBTbsLJD4MaLWGQv\n 517 \N 189.186.41.229 796e55a8-404c-4e33-83c8-f11de125678b 2019-07-21 16:07:02.865401 11575 318 OpenCashRegister \N \N 12 User \N create ---\ncash_register_id: 1\nuser_id: 12\ninitial_cash: !ruby/object:BigDecimal 18:0.687E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 687.0 189.186.41.229 bb0c5e69-574d-4822-b82f-000b69fe39c1 2019-07-21 16:09:52.968991 11576 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-19 21:49:56.674004000 Z\n- &1 2019-07-20 16:03:22.791988000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-21 16:14:08.947227799 Z\nsign_in_count:\n- 520\n- 521\n 1042 \N 189.186.41.229 10caaed2-0e48-42ec-b0b9-e89607ed3908 2019-07-21 16:14:08.952718 11577 3 User \N \N 3 User \N update ---\nunique_session_id:\n- E5jZ55sYJb1YjCddQ-Aq\n- ysynZ3fo4ia5tTw3GZ1U\n 1043 \N 189.186.41.229 10caaed2-0e48-42ec-b0b9-e89607ed3908 2019-07-21 16:14:08.964435 11578 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-20 16:03:22.791988000 Z\n- &1 2019-07-21 16:14:08.947227000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-21 16:14:43.170203814 Z\nsign_in_count:\n- 521\n- 522\n 1044 \N 189.186.41.229 41780427-f7f9-49bb-9bb7-e2260af7ea68 2019-07-21 16:14:43.175891 11579 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ysynZ3fo4ia5tTw3GZ1U\n- N8UwzCU65sxqyCxBZrjC\n 1045 \N 189.186.41.229 41780427-f7f9-49bb-9bb7-e2260af7ea68 2019-07-21 16:14:43.188011 11580 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-21 16:14:08.947227000 Z\n- &1 2019-07-21 16:14:43.170203000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-21 16:15:06.447485713 Z\nsign_in_count:\n- 522\n- 523\n 1046 \N 189.186.41.229 1352e59c-2e23-46f8-ba61-7a3b866c25bd 2019-07-21 16:15:06.453824 11581 3 User \N \N 3 User \N update ---\nunique_session_id:\n- N8UwzCU65sxqyCxBZrjC\n- w9VguA6qZHN-uF_gb9Am\n 1047 \N 189.186.41.229 1352e59c-2e23-46f8-ba61-7a3b866c25bd 2019-07-21 16:15:06.467583 11582 319 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.58E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 580.0 189.186.41.229 33978f9d-9e65-4afe-9748-dcd5822b13fd 2019-07-21 16:15:10.571688 11583 871 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 318\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-07-21\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-495\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 ce9d78ef-c42b-4e3d-844c-b7d90c3f1e3d 2019-07-21 16:42:07.122638 11584 526 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 16 \N 189.186.41.229 ce9d78ef-c42b-4e3d-844c-b7d90c3f1e3d 2019-07-21 16:42:07.158686 11585 871 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 84f506f6-83ce-42fc-9085-65978d5f28df 2019-07-21 16:42:24.238236 11586 1188 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 318\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 871\ncardnumber: 1190\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-495\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-495 189.186.41.229 84f506f6-83ce-42fc-9085-65978d5f28df 2019-07-21 16:42:24.27197 11587 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-20 17:14:42.834968000 Z\n- &1 2019-07-20 23:01:34.717215000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-21 17:34:17.848881842 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095534\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934313\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934313\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933986\n mask_addr: 4294967295\nsign_in_count:\n- 360\n- 361\n 722 \N 200.68.134.34 9233d026-d146-4633-8684-4fa170479a26 2019-07-21 17:34:17.857542 11588 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sGk1x2HCDAyzDnoT98zD\n- YTDQdAGU71ZRGYE3-jwV\n 723 \N 200.68.134.34 9233d026-d146-4633-8684-4fa170479a26 2019-07-21 17:34:17.874546 11589 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-21 16:14:43.170203000 Z\n- &1 2019-07-21 16:15:06.447485000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-21 18:17:23.286609750 Z\nsign_in_count:\n- 523\n- 524\n 1048 \N 189.186.41.229 2c9e2707-e4bf-4e73-9abf-a1d13e3b118f 2019-07-21 18:17:23.291952 11590 3 User \N \N 3 User \N update ---\nunique_session_id:\n- w9VguA6qZHN-uF_gb9Am\n- jdJ4xkyzZwY6t_z7_UdN\n 1049 \N 189.186.41.229 2c9e2707-e4bf-4e73-9abf-a1d13e3b118f 2019-07-21 18:17:23.317612 11591 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-21 16:15:06.447485000 Z\n- &1 2019-07-21 18:17:23.286609000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-21 19:01:05.860999208 Z\nsign_in_count:\n- 524\n- 525\n 1050 \N 189.186.41.229 c055eb5a-4ee7-4399-80dc-6bca84e12d7f 2019-07-21 19:01:05.866313 11592 3 User \N \N 3 User \N update ---\nunique_session_id:\n- jdJ4xkyzZwY6t_z7_UdN\n- 3Z7Yti2sRmgZMyjTHHe2\n 1051 \N 189.186.41.229 c055eb5a-4ee7-4399-80dc-6bca84e12d7f 2019-07-21 19:01:05.880841 11593 872 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 319\namount: !ruby/object:BigDecimal 18:0.49914E3\ntax: !ruby/object:BigDecimal 18:0.7986E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.579E3\nstatus: 0\ndate_sale: 2019-07-21\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-375\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 20ba186e-d521-4e78-b987-c2ecd131f10c 2019-07-21 19:01:24.057182 11594 481 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 189.186.41.229 20ba186e-d521-4e78-b987-c2ecd131f10c 2019-07-21 19:01:24.080463 11595 872 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 24dafabe-3375-45d4-97aa-9df85665d2a4 2019-07-21 19:01:53.856647 11617 144 Customer \N \N 2 User \N create ---\nnick_name: SOCORRO PEREZ CAMACHO\nphone: "(762) 367-1___"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente SOCORRO PEREZ CAMACHO fue registrado. 189.186.41.229 a42ee057-3536-4d91-8ba8-11cf856098e2 2019-07-21 20:07:19.274675 11596 1189 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 319\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.579E3\nmove_type: '1'\nsale_id: 872\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-375\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-375 189.186.41.229 24dafabe-3375-45d4-97aa-9df85665d2a4 2019-07-21 19:01:53.877508 11597 873 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 318\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-07-21\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-496\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 520801f3-1d60-41aa-ab49-2567f4748b71 2019-07-21 19:12:59.646108 11598 156 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.41.229 520801f3-1d60-41aa-ab49-2567f4748b71 2019-07-21 19:12:59.673221 11599 873 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 d7b4b7ad-bdff-420c-98df-81666c023120 2019-07-21 19:13:03.855837 11600 1190 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 318\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 873\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-496\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-496 189.186.41.229 d7b4b7ad-bdff-420c-98df-81666c023120 2019-07-21 19:13:03.876363 11601 874 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 318\namount: !ruby/object:BigDecimal 18:0.44394E3\ntax: !ruby/object:BigDecimal 18:0.5506E2\ndiscount: !ruby/object:BigDecimal 18:0.998E2\ntotal: !ruby/object:BigDecimal 18:0.3992E3\nstatus: 0\ndate_sale: 2019-07-21\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-497\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 8f2d54fd-ec15-480e-8252-c65c6a9f8150 2019-07-21 19:23:30.56728 11602 567 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.229 8f2d54fd-ec15-480e-8252-c65c6a9f8150 2019-07-21 19:23:30.592081 11603 874 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 473095b2-6688-4f1c-aca1-a96d33b015ac 2019-07-21 19:23:35.722094 11604 1191 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 318\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3992E3\nmove_type: '1'\nsale_id: 874\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-497\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.8E0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-497 189.186.41.229 473095b2-6688-4f1c-aca1-a96d33b015ac 2019-07-21 19:23:35.751562 11605 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-21 18:17:23.286609000 Z\n- &1 2019-07-21 19:01:05.860999000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-21 19:36:58.053866524 Z\nsign_in_count:\n- 525\n- 526\n 1052 \N 189.186.41.229 54c2bed8-7a01-41dd-96cc-45504dedd05a 2019-07-21 19:36:58.059421 11606 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 3Z7Yti2sRmgZMyjTHHe2\n- iyMrs95EABsJKJ1qxpxE\n 1053 \N 189.186.41.229 54c2bed8-7a01-41dd-96cc-45504dedd05a 2019-07-21 19:36:58.072499 11607 616 Product \N \N 3 User \N create ---\nsku: PUL-616\nname: LLA-0001\ndescription: LLAVERO BOLITA COLERES\nprice_base: \nprice_sale: !ruby/object:BigDecimal 18:0.149E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 16\nproduct_service_key: '01010101'\n 1 El producto PUL-616 fue creado. 189.186.41.229 9fd4e939-91cf-4846-a904-3a37ca6bfa32 2019-07-21 19:41:58.974385 11608 616 Product \N \N 3 User \N update ---\nbarcode:\n- ''\n- '0000616'\n 2 \N 189.186.41.229 9fd4e939-91cf-4846-a904-3a37ca6bfa32 2019-07-21 19:41:59.009415 11609 737 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 616\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 9fd4e939-91cf-4846-a904-3a37ca6bfa32 2019-07-21 19:41:59.03502 11610 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-20 23:14:57.441754000 Z\n- &1 2019-07-20 23:15:40.824376000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-21 19:55:07.170901355 Z\nsign_in_count:\n- 224\n- 225\n 453 \N 189.186.41.229 b1cf4a23-0b24-4968-927f-430a5e4301e1 2019-07-21 19:55:07.177196 11611 2 User \N \N 2 User \N update ---\nunique_session_id:\n- mH57U4JBE2FWfe1o3N1s\n- AApBszEhUFcpaqfGtw4P\n 454 \N 189.186.41.229 b1cf4a23-0b24-4968-927f-430a5e4301e1 2019-07-21 19:55:07.194793 11612 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-20 23:01:34.717215000 Z\n- &1 2019-07-21 17:34:17.848881000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-21 19:57:19.681761295 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934313\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933986\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933986\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095534\n mask_addr: 4294967295\nsign_in_count:\n- 361\n- 362\n 724 \N 189.186.46.238 e2023e32-8a80-4d66-867b-77466dd8dafe 2019-07-21 19:57:19.689409 11613 4 User \N \N 4 User \N update ---\nunique_session_id:\n- YTDQdAGU71ZRGYE3-jwV\n- SuutxaKpYYRggpK9ez5y\n 725 \N 189.186.46.238 e2023e32-8a80-4d66-867b-77466dd8dafe 2019-07-21 19:57:19.705315 11614 617 Product \N \N 2 User \N create ---\nsku: PUL-617\nname: LLA-0001\ndescription: LLAVERO BOLTA DE COORES\nprice_base: \nprice_sale: !ruby/object:BigDecimal 18:0.149E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 16\nproduct_service_key: '01010101'\n 1 El producto PUL-617 fue creado. 189.186.41.229 ad9ee937-c41c-432c-acf3-751c89bd5a48 2019-07-21 19:59:14.685388 11615 617 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000617'\n 2 \N 189.186.41.229 ad9ee937-c41c-432c-acf3-751c89bd5a48 2019-07-21 19:59:14.711399 11616 738 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 617\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 ad9ee937-c41c-432c-acf3-751c89bd5a48 2019-07-21 19:59:14.733466 11731 747 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 dd31b50e-8f50-4194-b03c-e53bf40f7840 2019-07-23 18:34:24.312707 11618 875 Sale \N \N 2 User \N create ---\ncustomer_id: 144\nuser_id: 2\nopen_cash_register_id: 318\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-07-21\nsaletype: 2\nseller_id: 8\nsale_code: PV1-V-498\nexpiration_date: 2019-08-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 1503ab08-5409-4bd4-85b4-c42662f1b68b 2019-07-21 20:07:55.196942 11619 699 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.41.229 1503ab08-5409-4bd4-85b4-c42662f1b68b 2019-07-21 20:07:55.2216 11620 1192 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 318\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 875\ncardnumber: 7381\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-498\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-498 189.186.41.229 80a1360a-ea7d-4b19-af67-7b3941319f39 2019-07-21 20:09:09.870212 11621 875 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.229 3d4a7206-65b0-49d6-8065-a0a399ee44cb 2019-07-21 20:09:11.566846 11622 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-21 19:01:05.860999000 Z\n- &1 2019-07-21 19:36:58.053866000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-21 20:24:37.773533704 Z\nsign_in_count:\n- 526\n- 527\n 1054 \N 189.186.41.229 fd867326-80e5-4588-ba71-1d7147f3be65 2019-07-21 20:24:37.792961 11623 3 User \N \N 3 User \N update ---\nunique_session_id:\n- iyMrs95EABsJKJ1qxpxE\n- 4uhEzvpecAntxb5gymSM\n 1055 \N 189.186.41.229 fd867326-80e5-4588-ba71-1d7147f3be65 2019-07-21 20:24:37.81153 11624 316 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 319\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.579E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.6E3\ncash_fund: !ruby/object:BigDecimal 18:0.559E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1159E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.229 29e0fa83-e241-4aee-881b-1c19391e61cf 2019-07-21 20:56:27.543117 11625 319 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.229 29e0fa83-e241-4aee-881b-1c19391e61cf 2019-07-21 20:56:27.557176 11626 876 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 318\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-07-21\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-499\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 a9674cbb-fbfc-4441-b41d-262511d9417b 2019-07-21 21:03:41.961088 11627 526 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 17 \N 189.186.41.229 a9674cbb-fbfc-4441-b41d-262511d9417b 2019-07-21 21:03:41.991421 11628 876 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 4f045df3-e46f-4009-8313-f14db4324cc3 2019-07-21 21:03:53.923942 11629 1193 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 318\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 876\ncardnumber: 9730\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-499\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-499 189.186.41.229 4f045df3-e46f-4009-8313-f14db4324cc3 2019-07-21 21:03:53.94544 11630 317 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 318\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.29962E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.585E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1785E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.229 4aec1d8f-ec15-425e-b9a2-6fd082bf2397 2019-07-21 21:06:27.751848 11631 318 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.229 4aec1d8f-ec15-425e-b9a2-6fd082bf2397 2019-07-21 21:06:27.778835 11632 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-20 23:15:40.824376000 Z\n- &1 2019-07-21 19:55:07.170901000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-22 16:06:17.088789318 Z\nsign_in_count:\n- 225\n- 226\n 455 \N 189.186.41.229 e49b1f2c-d789-4f76-9a2c-1c998e3f6cf6 2019-07-22 16:06:17.124421 11633 2 User \N \N 2 User \N update ---\nunique_session_id:\n- AApBszEhUFcpaqfGtw4P\n- gzg_d8Za_jFC73_ezRB8\n 456 \N 189.186.41.229 e49b1f2c-d789-4f76-9a2c-1c998e3f6cf6 2019-07-22 16:06:17.151226 11634 320 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.585E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 585.0 189.186.41.229 c1036e3f-c981-41a5-97cd-5a5cc45bde50 2019-07-22 16:13:02.50511 11635 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-19 01:58:26.860756000 Z\n- &1 2019-07-20 01:56:06.585288000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-22 16:26:47.855328679 Z\nsign_in_count:\n- 107\n- 108\n 216 \N 189.186.41.229 02e32c4f-02e1-4791-a24c-3fe631582b09 2019-07-22 16:26:47.861753 11636 10 User \N \N 10 User \N update ---\nunique_session_id:\n- 8_wozQwoy3kcW4PpwdvF\n- Tz_TzLzz31rfpjHspg2b\n 217 \N 189.186.41.229 02e32c4f-02e1-4791-a24c-3fe631582b09 2019-07-22 16:26:47.880857 11637 321 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.559E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 559.0 189.186.41.229 85bfe175-26ae-408b-a7c0-43ba48d3c403 2019-07-22 16:26:53.962676 11638 145 Customer \N \N 2 User \N create ---\nnick_name: MARA CHIQUETE\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARA CHIQUETE fue registrado. 189.186.41.229 689bd664-387f-4487-b0ed-ffee79270a08 2019-07-22 18:02:11.332704 11639 877 Sale \N \N 2 User \N create ---\ncustomer_id: 145\nuser_id: 2\nopen_cash_register_id: 320\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2019-07-22\nsaletype: 2\nseller_id: 3\nsale_code: PV1-V-500\nexpiration_date: 2019-08-26\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 3af314dc-d650-49b6-a6b7-dc9cc8fcbccf 2019-07-22 18:02:35.340084 11640 731 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.229 3af314dc-d650-49b6-a6b7-dc9cc8fcbccf 2019-07-22 18:02:35.370042 11686 323 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.53E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 530.0 189.186.41.229 07f4a925-945b-4bd7-a99f-5594b1410dea 2019-07-23 16:04:37.056855 11641 1194 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 320\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 877\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-500\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-500 189.186.41.229 c6ba0f00-6e6f-49bc-bda7-9cd546c18e9c 2019-07-22 18:02:42.417489 11642 877 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.229 95913f33-b371-4ea1-9f89-c1ce7c1fa9a6 2019-07-22 18:02:44.538555 11643 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-21 17:34:17.848881000 Z\n- &1 2019-07-21 19:57:19.681761000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-22 18:31:06.454420792 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933986\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095534\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095534\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946046\n mask_addr: 4294967295\nsign_in_count:\n- 362\n- 363\n 726 \N 200.68.181.62 b2f777a2-c7d0-4f56-b73f-5902efe93fda 2019-07-22 18:31:06.465865 11644 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SuutxaKpYYRggpK9ez5y\n- ovcs_3yELJ1iZD-3_kNi\n 727 \N 200.68.181.62 b2f777a2-c7d0-4f56-b73f-5902efe93fda 2019-07-22 18:31:06.488953 11645 878 Sale \N \N 2 User \N create ---\ncustomer_id: 122\nuser_id: 2\nopen_cash_register_id: 320\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-07-22\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-501\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 86eeb5ec-6fb6-4cae-8b13-1e5410e5ad84 2019-07-22 20:05:39.958798 11646 664 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.41.229 86eeb5ec-6fb6-4cae-8b13-1e5410e5ad84 2019-07-22 20:05:40.015366 11647 134 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 320\nquantity: !ruby/object:BigDecimal 18:0.25E3\nstatus: 1\nobservations: "$200 paqueteria y comida $50"\nexpense_date: 2019-07-22\nexpense_code: PV1-E-110\n 1 Egreso por 250.0 registrado 189.186.41.229 87bd97c7-48b7-4e65-a7dd-803193922f0b 2019-07-22 22:57:49.980862 11648 1195 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 320\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 134\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.229 87bd97c7-48b7-4e65-a7dd-803193922f0b 2019-07-22 22:57:49.999477 11649 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-21 19:57:19.681761000 Z\n- &1 2019-07-22 18:31:06.454420000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-22 23:35:12.475108903 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095534\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946046\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946046\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 363\n- 364\n 728 \N 189.186.41.229 7218a8df-76bf-44f8-b11f-9b0cec4adb88 2019-07-22 23:35:12.482888 11650 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ovcs_3yELJ1iZD-3_kNi\n- KnrMg8TCYnT4n9qice19\n 729 \N 189.186.41.229 7218a8df-76bf-44f8-b11f-9b0cec4adb88 2019-07-22 23:35:12.498256 11651 617 Product \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 3 El producto LLA-0001 fue eliminado. 189.186.41.229 59aed44a-e0e0-4d72-bf4b-4849be7aab2e 2019-07-22 23:35:33.08864 11652 616 Product \N \N 4 User \N update ---\nprice_base:\n- \n- !ruby/object:BigDecimal 27:0.1E2\n 3 El producto PUL-616 fue modificado. 189.186.41.229 c7960724-da94-45c4-9a8d-93dcb4d54cbd 2019-07-22 23:36:41.808988 11653 616 Product \N \N 4 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 27:0.1E1\n 4 El producto PUL-616 fue modificado. 189.186.41.229 73eb2caa-fac9-42ae-bb34-d956ed6391d1 2019-07-22 23:36:49.710675 11654 616 Product \N \N 4 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 El producto PUL-616 fue modificado. 189.186.41.229 9cc3db39-b043-40f0-83e9-1af8dc2b9b78 2019-07-22 23:36:50.530813 11655 616 Product \N \N 4 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 27:0.75E2\n 6 El producto PUL-616 fue modificado. 189.186.41.229 68df2526-e165-415c-a6a3-777a658cf4ff 2019-07-22 23:37:11.16189 11656 616 Product \N \N 4 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.75E2\n- !ruby/object:BigDecimal 27:0.745E2\n 7 El producto PUL-616 fue modificado. 189.186.41.229 64fd4cba-f648-4ff0-bed8-eeeebe00e04c 2019-07-22 23:37:23.695305 11657 111 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-38\namount: !ruby/object:BigDecimal 18:0.8195E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.8195E3\nobservations: ''\npurchase_date: 2019-07-22\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-38 por $ 819.5 MXN creada. 189.186.41.229 77554ff8-aca5-416d-b429-94724137f9e5 2019-07-22 23:37:30.613767 11658 737 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.11E2\n 2 \N 189.186.41.229 77554ff8-aca5-416d-b429-94724137f9e5 2019-07-22 23:37:30.650008 11659 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-20 01:56:06.585288000 Z\n- &1 2019-07-22 16:26:47.855328000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-22 23:37:46.064904561 Z\nsign_in_count:\n- 108\n- 109\n 218 \N 189.186.41.229 030475a6-c1c9-4b96-83dd-50e9eef50968 2019-07-22 23:37:46.073112 11660 10 User \N \N 10 User \N update ---\nunique_session_id:\n- Tz_TzLzz31rfpjHspg2b\n- krnyCg3K6oywbZyNgVWq\n 219 \N 189.186.41.229 030475a6-c1c9-4b96-83dd-50e9eef50968 2019-07-22 23:37:46.086713 11661 879 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 321\namount: !ruby/object:BigDecimal 18:0.298E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.298E3\nstatus: 0\ndate_sale: 2019-07-22\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-376\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 c5f2468d-d3e5-4768-8d05-0d0e7727ae84 2019-07-22 23:38:13.226402 11662 737 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.9E1\n 3 \N 189.186.41.229 c5f2468d-d3e5-4768-8d05-0d0e7727ae84 2019-07-22 23:38:13.253078 11663 879 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 69606c95-fc52-4a98-bdb4-751c65263d85 2019-07-22 23:38:17.977282 11729 745 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 dd31b50e-8f50-4194-b03c-e53bf40f7840 2019-07-23 18:34:24.259168 11730 746 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 dd31b50e-8f50-4194-b03c-e53bf40f7840 2019-07-23 18:34:24.285308 11664 1196 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 321\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.298E3\nmove_type: '1'\nsale_id: 879\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-376\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-376 189.186.41.229 69606c95-fc52-4a98-bdb4-751c65263d85 2019-07-22 23:38:17.998758 11665 880 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 321\namount: !ruby/object:BigDecimal 18:0.30172E3\ntax: !ruby/object:BigDecimal 18:0.4828E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2019-07-22\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-377\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 9cc278ed-2afe-4928-bc4b-afb0cc326517 2019-07-23 00:18:32.968866 11666 365 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.31E2\n- !ruby/object:BigDecimal 18:0.3E2\n 17 \N 189.186.41.229 9cc278ed-2afe-4928-bc4b-afb0cc326517 2019-07-23 00:18:33.010792 11667 880 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 91829f51-1a83-4c1f-bb22-df33b28488ca 2019-07-23 00:18:36.920676 11668 1197 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 321\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.35E3\nmove_type: '1'\nsale_id: 880\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-377\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-377 189.186.41.229 91829f51-1a83-4c1f-bb22-df33b28488ca 2019-07-23 00:18:36.945495 11669 881 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 320\namount: !ruby/object:BigDecimal 18:0.32831E3\ntax: !ruby/object:BigDecimal 18:0.4069E2\ndiscount: !ruby/object:BigDecimal 18:0.74E2\ntotal: !ruby/object:BigDecimal 18:0.295E3\nstatus: 0\ndate_sale: 2019-07-22\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-502\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 fd277fc8-34f2-41ba-914d-790be8758a76 2019-07-23 01:29:35.366353 11670 102 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.41.229 fd277fc8-34f2-41ba-914d-790be8758a76 2019-07-23 01:29:35.415111 11671 881 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 90aed559-b34a-4584-a38b-7b09d70a2bb5 2019-07-23 01:29:42.639422 11672 1198 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 320\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.295E3\nmove_type: '1'\nsale_id: 881\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-502\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.505E3\nchange: !ruby/object:BigDecimal 18:0.21E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-502 189.186.41.229 90aed559-b34a-4584-a38b-7b09d70a2bb5 2019-07-23 01:29:42.662164 11673 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-22 18:31:06.454420000 Z\n- &1 2019-07-22 23:35:12.475108000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 01:57:40.421470834 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946046\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946494\n mask_addr: 4294967295\nsign_in_count:\n- 364\n- 365\n 730 \N 200.68.182.254 1cfd2a19-dd0d-4326-a8b5-7a74bb35c149 2019-07-23 01:57:40.428985 11674 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KnrMg8TCYnT4n9qice19\n- ryC7NDZbG6LDvdFj6Gv4\n 731 \N 200.68.182.254 1cfd2a19-dd0d-4326-a8b5-7a74bb35c149 2019-07-23 01:57:40.445387 11675 318 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 320\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.695E3\namount_out: !ruby/object:BigDecimal 18:0.25E3\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.53E3\nphysical_cash: !ruby/object:BigDecimal 18:0.103E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.229 8f3d0441-7a2b-4f83-bc3f-c0dfabc47883 2019-07-23 01:59:53.1363 11676 320 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.229 8f3d0441-7a2b-4f83-bc3f-c0dfabc47883 2019-07-23 01:59:53.149074 11677 319 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 321\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.648E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.4E3\ncash_fund: !ruby/object:BigDecimal 18:0.808E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1208E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.41.229 08269949-09a7-43f4-914d-9bd3f1c71665 2019-07-23 02:14:52.074424 11678 321 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.229 08269949-09a7-43f4-914d-9bd3f1c71665 2019-07-23 02:14:52.087172 11679 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-22 23:35:12.475108000 Z\n- &1 2019-07-23 01:57:40.421470000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 04:08:19.128904291 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946494\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946494\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938334\n mask_addr: 4294967295\nsign_in_count:\n- 365\n- 366\n 732 \N 200.68.151.30 7b99f256-277e-4d6c-a7c2-53bb40cf47a5 2019-07-23 04:08:19.141934 11680 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ryC7NDZbG6LDvdFj6Gv4\n- aWR3N1s5MsJPzs9b2WzW\n 733 \N 200.68.151.30 7b99f256-277e-4d6c-a7c2-53bb40cf47a5 2019-07-23 04:08:19.165058 11681 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-21 19:36:58.053866000 Z\n- &1 2019-07-21 20:24:37.773533000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 15:58:04.483029767 Z\nsign_in_count:\n- 527\n- 528\n 1056 \N 189.186.41.229 f0e56198-9b4d-4178-a0da-dcfec22925c2 2019-07-23 15:58:04.530901 11682 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 4uhEzvpecAntxb5gymSM\n- jdHb5ftC2-Rw7pYs-9TM\n 1057 \N 189.186.41.229 f0e56198-9b4d-4178-a0da-dcfec22925c2 2019-07-23 15:58:04.564731 11683 322 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.808E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 808.0 189.186.41.229 6a689c3b-1668-4662-935b-f4fd0ad8e519 2019-07-23 15:59:59.883307 11684 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-21 19:55:07.170901000 Z\n- &1 2019-07-22 16:06:17.088789000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 16:00:42.455679903 Z\nsign_in_count:\n- 226\n- 227\n 457 \N 189.186.41.229 faf77788-69e5-4fa9-b801-fff7296e602e 2019-07-23 16:00:42.461449 11685 2 User \N \N 2 User \N update ---\nunique_session_id:\n- gzg_d8Za_jFC73_ezRB8\n- 6Xs-EWLFDaVK6vbxb-SS\n 458 \N 189.186.41.229 faf77788-69e5-4fa9-b801-fff7296e602e 2019-07-23 16:00:42.47474 11687 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 01:57:40.421470000 Z\n- &1 2019-07-23 04:08:19.128904000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 17:26:35.953235854 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946494\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938334\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938334\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946474\n mask_addr: 4294967295\nsign_in_count:\n- 366\n- 367\n 734 \N 200.68.182.234 0ca610ad-314c-40fa-9074-18b8f16b6719 2019-07-23 17:26:35.979087 11688 4 User \N \N 4 User \N update ---\nunique_session_id:\n- aWR3N1s5MsJPzs9b2WzW\n- Pc6USjM5th_2tHh_jskp\n 735 \N 200.68.182.234 0ca610ad-314c-40fa-9074-18b8f16b6719 2019-07-23 17:26:35.997669 11689 1199 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 196\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 616\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAMANTHA\n 1 \N 189.186.41.229 ee6eacdf-193c-454f-955e-68de2cbfa8d7 2019-07-23 17:26:40.754283 11690 616 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.229 ee6eacdf-193c-454f-955e-68de2cbfa8d7 2019-07-23 17:26:40.781925 11691 1199 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 196\n- 323\n 2 movimiento de efectivo por venta con folio PV1-V-346 189.186.41.229 ee6eacdf-193c-454f-955e-68de2cbfa8d7 2019-07-23 17:26:40.800908 11692 618 Product \N \N 2 User \N create ---\nsku: BLU-618\nname: BLS-0049\ndescription: BLUSA M2 ROJO ESCARLATA CORTE CAMPESINA ST. T2665\nprice_base: !ruby/object:BigDecimal 18:0.247E3\nprice_sale: !ruby/object:BigDecimal 18:0.569E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-618 fue creado. 189.186.41.229 d7e1b927-1ee0-4f7c-ba6d-c02264279d1e 2019-07-23 18:22:52.631239 11693 618 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000618'\n 2 \N 189.186.41.229 d7e1b927-1ee0-4f7c-ba6d-c02264279d1e 2019-07-23 18:22:52.666319 11694 739 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 618\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 d7e1b927-1ee0-4f7c-ba6d-c02264279d1e 2019-07-23 18:22:52.709239 11695 619 Product \N \N 2 User \N create ---\nsku: BLU-619\nname: BLS-0050\ndescription: BLUSA BLUE B BLANCA CON BORDADO ST. T11819\nprice_base: !ruby/object:BigDecimal 18:0.2565E3\nprice_sale: !ruby/object:BigDecimal 18:0.569E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-619 fue creado. 189.186.41.229 a2fb2795-edfa-4147-91c8-e318b7f5473a 2019-07-23 18:23:42.490117 11696 619 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000619'\n 2 \N 189.186.41.229 a2fb2795-edfa-4147-91c8-e318b7f5473a 2019-07-23 18:23:42.518232 11697 740 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 619\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 a2fb2795-edfa-4147-91c8-e318b7f5473a 2019-07-23 18:23:42.546218 11698 620 Product \N \N 2 User \N create ---\nsku: BLU-620\nname: BLS-0051\ndescription: PLAYERA MUYMUY CORAZON SANDIA ST. A0733\nprice_base: !ruby/object:BigDecimal 18:0.14725E3\nprice_sale: !ruby/object:BigDecimal 18:0.449E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-620 fue creado. 189.186.41.229 193a2cea-5eff-461a-99a2-2e88889c3957 2019-07-23 18:26:06.419913 11699 620 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000620'\n 2 \N 189.186.41.229 193a2cea-5eff-461a-99a2-2e88889c3957 2019-07-23 18:26:06.448744 11700 741 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 620\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 193a2cea-5eff-461a-99a2-2e88889c3957 2019-07-23 18:26:06.474845 11701 621 Product \N \N 2 User \N create ---\nsku: BLU-621\nname: BLS-0052\ndescription: BLUSA CQBYCQ BLANCA CON FLORES Y PERLAS ST. 7887TW\nprice_base: !ruby/object:BigDecimal 18:0.2475E3\nprice_sale: !ruby/object:BigDecimal 18:0.619E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-621 fue creado. 189.186.41.229 7dc8a67f-919d-402e-adec-f66719b7ce72 2019-07-23 18:26:49.28244 11702 621 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000621'\n 2 \N 189.186.41.229 7dc8a67f-919d-402e-adec-f66719b7ce72 2019-07-23 18:26:49.310019 11703 742 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 621\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 7dc8a67f-919d-402e-adec-f66719b7ce72 2019-07-23 18:26:49.338548 11704 622 Product \N \N 2 User \N create ---\nsku: BLU-622\nname: BLS-0053\ndescription: "PANTIBLUSA CQBYCQ NEGRA ST. 9291BW\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.19E3\nprice_sale: !ruby/object:BigDecimal 18:0.489E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-622 fue creado. 189.186.41.229 f73f0699-1d4b-4c57-b20f-49bfedefa4e4 2019-07-23 18:27:38.851495 11705 622 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000622'\n 2 \N 189.186.41.229 f73f0699-1d4b-4c57-b20f-49bfedefa4e4 2019-07-23 18:27:38.878775 11706 743 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 622\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 f73f0699-1d4b-4c57-b20f-49bfedefa4e4 2019-07-23 18:27:38.905713 46100 3435 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 bec45052-fe8f-4066-a917-7d8f08e356eb 2020-11-16 21:57:41.855456 11707 623 Product \N \N 2 User \N create ---\nsku: FAL-623\nname: FLD-0010\ndescription: FALDA MUYMUY DE TUL BRILLOSA ST. A0793\nprice_base: !ruby/object:BigDecimal 18:0.24225E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-623 fue creado. 189.186.41.229 77b4ac75-61e2-4c68-b637-7081903b20da 2019-07-23 18:28:49.864936 11708 623 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000623'\n 2 \N 189.186.41.229 77b4ac75-61e2-4c68-b637-7081903b20da 2019-07-23 18:28:49.903843 11709 744 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 623\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 77b4ac75-61e2-4c68-b637-7081903b20da 2019-07-23 18:28:49.93034 11710 624 Product \N \N 2 User \N create ---\nsku: VES-624\nname: VST-0035\ndescription: VESTIDO CQBYCQ NEGRO DE ENCAJE ST. 9330DK\nprice_base: !ruby/object:BigDecimal 18:0.4275E3\nprice_sale: !ruby/object:BigDecimal 18:0.1099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-624 fue creado. 189.186.41.229 52aa7896-4995-49c0-bfb9-b0dc8be21a38 2019-07-23 18:30:23.13993 11711 624 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000624'\n 2 \N 189.186.41.229 52aa7896-4995-49c0-bfb9-b0dc8be21a38 2019-07-23 18:30:23.165364 11712 745 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 624\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 52aa7896-4995-49c0-bfb9-b0dc8be21a38 2019-07-23 18:30:23.192323 11713 625 Product \N \N 2 User \N create ---\nsku: VES-625\nname: VST-0036\ndescription: VESTIDO BLUE B NEGRO PLISADO ST. D11805\nprice_base: !ruby/object:BigDecimal 18:0.304E3\nprice_sale: !ruby/object:BigDecimal 18:0.869E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-625 fue creado. 189.186.41.229 b512fe77-6ed0-488d-9158-28f7d5813bf3 2019-07-23 18:31:04.942638 11714 625 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000625'\n 2 \N 189.186.41.229 b512fe77-6ed0-488d-9158-28f7d5813bf3 2019-07-23 18:31:04.969788 11715 746 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 625\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 b512fe77-6ed0-488d-9158-28f7d5813bf3 2019-07-23 18:31:04.995454 11716 626 Product \N \N 2 User \N create ---\nsku: JUM-626\nname: JUM-0008\ndescription: JUMPER LATISTE BEIGE ST. LJS21162H\nprice_base: !ruby/object:BigDecimal 18:0.513E3\nprice_sale: !ruby/object:BigDecimal 18:0.127E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 1\nproduct_service_key: '01010101'\n 1 El producto JUM-626 fue creado. 189.186.41.229 8bb201d5-3c9d-4d1f-b4bd-6c0ccf2915b0 2019-07-23 18:33:31.547714 11717 626 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000626'\n 2 \N 189.186.41.229 8bb201d5-3c9d-4d1f-b4bd-6c0ccf2915b0 2019-07-23 18:33:31.583631 11718 747 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 626\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 8bb201d5-3c9d-4d1f-b4bd-6c0ccf2915b0 2019-07-23 18:33:31.615831 11719 627 Product \N \N 2 User \N create ---\nsku: CON-627\nname: JUM-0009\ndescription: SET APEACHBLANCO CON FLORES ST. YT6033\nprice_base: !ruby/object:BigDecimal 18:0.399E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 10\nproduct_service_key: '01010101'\n 1 El producto CON-627 fue creado. 189.186.41.229 5f4769e1-b737-44ce-9d2c-42d7b4273f2e 2019-07-23 18:34:10.249117 11720 627 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000627'\n 2 \N 189.186.41.229 5f4769e1-b737-44ce-9d2c-42d7b4273f2e 2019-07-23 18:34:10.274952 11721 748 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 627\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 5f4769e1-b737-44ce-9d2c-42d7b4273f2e 2019-07-23 18:34:10.299508 11722 112 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-71\namount: !ruby/object:BigDecimal 18:0.17844E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.17844E5\nobservations: ''\npurchase_date: 2019-07-23\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-71 por $ 17844.0 MXN creada. 189.186.41.229 dd31b50e-8f50-4194-b03c-e53bf40f7840 2019-07-23 18:34:24.036463 11723 739 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 dd31b50e-8f50-4194-b03c-e53bf40f7840 2019-07-23 18:34:24.075733 11724 740 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 dd31b50e-8f50-4194-b03c-e53bf40f7840 2019-07-23 18:34:24.117151 11725 741 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 dd31b50e-8f50-4194-b03c-e53bf40f7840 2019-07-23 18:34:24.150878 11726 742 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 dd31b50e-8f50-4194-b03c-e53bf40f7840 2019-07-23 18:34:24.182668 11727 743 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 dd31b50e-8f50-4194-b03c-e53bf40f7840 2019-07-23 18:34:24.209329 11728 744 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 dd31b50e-8f50-4194-b03c-e53bf40f7840 2019-07-23 18:34:24.233247 11732 748 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 dd31b50e-8f50-4194-b03c-e53bf40f7840 2019-07-23 18:34:24.342531 11733 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-07-19 21:04:40.701627000 Z\n- &1 2019-07-19 21:16:03.083120000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 18:35:19.595936856 Z\nsign_in_count:\n- 62\n- 63\n 126 \N 189.186.41.229 da4c45b6-386d-4b6d-b0c7-1ddf851f13d9 2019-07-23 18:35:19.602616 11734 1 User \N \N 1 User \N update ---\nunique_session_id:\n- NEdWRupiuPdggjW7BzmZ\n- 1MLHX6rvbqLn8puRFxmY\n 127 \N 189.186.41.229 da4c45b6-386d-4b6d-b0c7-1ddf851f13d9 2019-07-23 18:35:19.615464 11735 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 04:08:19.128904000 Z\n- &1 2019-07-23 17:26:35.953235000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 18:48:32.708507511 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938334\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946474\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946474\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 367\n- 368\n 736 \N 189.186.41.229 920d1cfb-1fcb-4a27-be67-0373bd04608b 2019-07-23 18:48:32.716619 11736 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Pc6USjM5th_2tHh_jskp\n- Day95cY-eqeFhxnLaFzL\n 737 \N 189.186.41.229 920d1cfb-1fcb-4a27-be67-0373bd04608b 2019-07-23 18:48:32.734061 11737 628 Product \N \N 4 User \N create ---\nsku: VES-628\nname: V-0024\ndescription: VESTIDO LATISTE COLORES NEON\nprice_base: !ruby/object:BigDecimal 18:0.437E3\nprice_sale: !ruby/object:BigDecimal 18:0.1099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: LATISTE_COLORES.jpeg\ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-628 fue creado. 189.186.41.229 b3ca78f0-7462-4eca-b7ac-c765058c8550 2019-07-23 19:14:59.835789 11738 628 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000628'\n 2 \N 189.186.41.229 b3ca78f0-7462-4eca-b7ac-c765058c8550 2019-07-23 19:14:59.872997 11739 749 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 628\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 b3ca78f0-7462-4eca-b7ac-c765058c8550 2019-07-23 19:14:59.913896 11740 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 17:26:35.953235000 Z\n- &1 2019-07-23 18:48:32.708507000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 19:15:20.057801897 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946474\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\nsign_in_count:\n- 368\n- 369\n 738 \N 189.186.37.219 f537afb3-8790-4bd7-b671-acd3c754bae4 2019-07-23 19:15:20.066898 11741 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Day95cY-eqeFhxnLaFzL\n- Sbyfsw6TLtp3X6rEirgy\n 739 \N 189.186.37.219 f537afb3-8790-4bd7-b671-acd3c754bae4 2019-07-23 19:15:20.082607 11742 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 18:48:32.708507000 Z\n- &1 2019-07-23 19:15:20.057801000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 19:17:46.332962509 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 369\n- 370\n 740 \N 189.186.41.229 59a56e7f-7d24-49c0-8380-e5409cbf3537 2019-07-23 19:17:46.341012 11743 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Sbyfsw6TLtp3X6rEirgy\n- Cp17LEr4ShsDESJMxM3K\n 741 \N 189.186.41.229 59a56e7f-7d24-49c0-8380-e5409cbf3537 2019-07-23 19:17:46.356539 11744 629 Product \N \N 4 User \N create ---\nsku: CON-629\nname: CJT-0001\ndescription: CONJUNTO VERDE OLIVO LATISTE\nprice_base: !ruby/object:BigDecimal 18:0.4275E3\nprice_sale: !ruby/object:BigDecimal 18:0.1149E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: file4-8.jpeg\ncategory_id: 10\nproduct_service_key: '01010101'\n 1 El producto CON-629 fue creado. 189.186.41.229 7ec10731-3913-48a9-b2f6-7147b95059b8 2019-07-23 19:20:13.48412 11745 629 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000629'\n 2 \N 189.186.41.229 7ec10731-3913-48a9-b2f6-7147b95059b8 2019-07-23 19:20:13.515558 11746 750 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 629\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 7ec10731-3913-48a9-b2f6-7147b95059b8 2019-07-23 19:20:13.544382 11747 630 Product \N \N 4 User \N create ---\nsku: FAL-630\nname: FLD-0009\ndescription: FALDA MUYMUY ROSA NEON\nprice_base: !ruby/object:BigDecimal 18:0.2755E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-630 fue creado. 189.186.41.229 39f6787f-6497-4e7e-b3dd-0c9b5f34773e 2019-07-23 19:22:21.770116 11748 630 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000630'\n 2 \N 189.186.41.229 39f6787f-6497-4e7e-b3dd-0c9b5f34773e 2019-07-23 19:22:21.798655 11749 751 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 630\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 39f6787f-6497-4e7e-b3dd-0c9b5f34773e 2019-07-23 19:22:21.825717 11750 631 Product \N \N 4 User \N create ---\nsku: FAL-631\nname: FLD-0010\ndescription: FALDA MUYMUY MIX COLOR\nprice_base: !ruby/object:BigDecimal 18:0.28025E3\nprice_sale: !ruby/object:BigDecimal 18:0.729E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-631 fue creado. 189.186.41.229 5e54fbfe-0e98-4152-a583-599c4deee52d 2019-07-23 19:25:35.407394 11751 631 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000631'\n 2 \N 189.186.41.229 5e54fbfe-0e98-4152-a583-599c4deee52d 2019-07-23 19:25:35.437138 11798 699 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.41.229 6958032f-8fd6-438d-9a91-8e6ecdd3835b 2019-07-23 20:05:01.513916 11752 752 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 631\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 5e54fbfe-0e98-4152-a583-599c4deee52d 2019-07-23 19:25:35.465873 11753 632 Product \N \N 4 User \N create ---\nsku: BLU-632\nname: BLX-0028\ndescription: MUYMUY CAMISA COLOR ROSA PALO\nprice_base: !ruby/object:BigDecimal 18:0.18525E3\nprice_sale: !ruby/object:BigDecimal 18:0.3705E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-632 fue creado. 189.186.41.229 f2e0ccd3-f78d-47cc-b5b6-be70d8ffe0a8 2019-07-23 19:26:36.51282 11754 632 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000632'\n 2 \N 189.186.41.229 f2e0ccd3-f78d-47cc-b5b6-be70d8ffe0a8 2019-07-23 19:26:36.552384 11755 753 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 632\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 f2e0ccd3-f78d-47cc-b5b6-be70d8ffe0a8 2019-07-23 19:26:36.585796 11756 633 Product \N \N 4 User \N create ---\nsku: BLU-633\nname: BLX-0026\ndescription: CQ&CQ CAMISA NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.285E3\nprice_sale: !ruby/object:BigDecimal 18:0.719E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-633 fue creado. 189.186.41.229 e8d25464-f162-4006-8d2f-3888bcdd1a81 2019-07-23 19:28:21.400181 11757 633 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000633'\n 2 \N 189.186.41.229 e8d25464-f162-4006-8d2f-3888bcdd1a81 2019-07-23 19:28:21.456006 11758 754 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 633\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 e8d25464-f162-4006-8d2f-3888bcdd1a81 2019-07-23 19:28:21.495916 11759 634 Product \N \N 4 User \N create ---\nsku: BLU-634\nname: BLX-0027\ndescription: 'CQ&CQ CAMISA COLOR NEGRO '\nprice_base: !ruby/object:BigDecimal 18:0.285E3\nprice_sale: !ruby/object:BigDecimal 18:0.719E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-634 fue creado. 189.186.41.229 10e8f29d-b268-4978-a940-29b1f8ecd4a7 2019-07-23 19:29:16.442549 11760 634 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000634'\n 2 \N 189.186.41.229 10e8f29d-b268-4978-a940-29b1f8ecd4a7 2019-07-23 19:29:16.47109 11761 755 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 634\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 10e8f29d-b268-4978-a940-29b1f8ecd4a7 2019-07-23 19:29:16.49979 11762 635 Product \N \N 4 User \N create ---\nsku: BLU-635\nname: BLX-0029\ndescription: 'M2 BLUSA ROSA DE TIRANTE '\nprice_base: !ruby/object:BigDecimal 18:0.2375E3\nprice_sale: !ruby/object:BigDecimal 18:0.569E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-635 fue creado. 189.186.41.229 11cbe600-3408-4032-acb6-1478e3cab19d 2019-07-23 19:31:39.026576 11763 635 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000635'\n 2 \N 189.186.41.229 11cbe600-3408-4032-acb6-1478e3cab19d 2019-07-23 19:31:39.073218 11764 756 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 635\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 11cbe600-3408-4032-acb6-1478e3cab19d 2019-07-23 19:31:39.104732 11765 636 Product \N \N 4 User \N create ---\nsku: VES-636\nname: VST-0025\ndescription: VESTIDO APEACH BLANCON CON CADENA, CINTURON CON DORADO\nprice_base: !ruby/object:BigDecimal 18:0.3135E3\nprice_sale: !ruby/object:BigDecimal 18:0.829E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-636 fue creado. 189.186.41.229 41fa44a9-be94-47a5-939a-f9c630564c02 2019-07-23 19:33:28.136692 11766 636 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000636'\n 2 \N 189.186.41.229 41fa44a9-be94-47a5-939a-f9c630564c02 2019-07-23 19:33:28.168488 11767 757 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 636\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 41fa44a9-be94-47a5-939a-f9c630564c02 2019-07-23 19:33:28.196617 11768 637 Product \N \N 4 User \N create ---\nsku: JUM-637\nname: JUM-0011\ndescription: JUMPER APEACH VERDE CON FLORES\nprice_base: !ruby/object:BigDecimal 18:0.285E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 1\nproduct_service_key: '01010101'\n 1 El producto JUM-637 fue creado. 189.186.41.229 96f368dd-914e-4846-a30b-c2149b29c901 2019-07-23 19:34:49.011111 11769 637 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000637'\n 2 \N 189.186.41.229 96f368dd-914e-4846-a30b-c2149b29c901 2019-07-23 19:34:49.038563 11770 758 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 637\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 96f368dd-914e-4846-a30b-c2149b29c901 2019-07-23 19:34:49.071187 11799 883 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 e6b216c7-8d25-44e5-ba59-9e1af5473649 2019-07-23 20:05:41.636213 11829 4 User \N \N 4 User \N update ---\nunique_session_id:\n- w3tc54yk24qmtpMV3PsV\n- _3Mfzvmm1BHVDsStsK_u\n 749 \N 189.186.37.219 45ad1136-9cd3-4aa3-9527-862aeac5af30 2019-07-23 23:03:39.10552 11771 638 Product \N \N 4 User \N create ---\nsku: BLU-638\nname: BLX-0030\ndescription: BLUSA APEACH CON HOJAS DE PALMERA\nprice_base: !ruby/object:BigDecimal 18:0.247E3\nprice_sale: !ruby/object:BigDecimal 18:0.619E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-638 fue creado. 189.186.41.229 935e2ef8-4e89-42f1-99a9-f2e8800fc596 2019-07-23 19:35:57.338715 11772 638 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000638'\n 2 \N 189.186.41.229 935e2ef8-4e89-42f1-99a9-f2e8800fc596 2019-07-23 19:35:57.372629 11773 759 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 638\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.229 935e2ef8-4e89-42f1-99a9-f2e8800fc596 2019-07-23 19:35:57.407514 11774 113 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-39\namount: !ruby/object:BigDecimal 18:0.19551E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.19551E5\nobservations: ''\npurchase_date: 2019-07-23\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-39 por $ 19551.0 MXN creada. 189.186.41.229 f5a03a76-098b-417b-b316-7c20ae190a37 2019-07-23 19:36:35.497551 11775 750 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 f5a03a76-098b-417b-b316-7c20ae190a37 2019-07-23 19:36:35.521485 11776 751 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 f5a03a76-098b-417b-b316-7c20ae190a37 2019-07-23 19:36:35.558556 11777 752 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 f5a03a76-098b-417b-b316-7c20ae190a37 2019-07-23 19:36:35.580964 11778 753 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 f5a03a76-098b-417b-b316-7c20ae190a37 2019-07-23 19:36:35.60684 11779 754 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 f5a03a76-098b-417b-b316-7c20ae190a37 2019-07-23 19:36:35.637523 11780 755 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 f5a03a76-098b-417b-b316-7c20ae190a37 2019-07-23 19:36:35.663892 11781 749 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 f5a03a76-098b-417b-b316-7c20ae190a37 2019-07-23 19:36:35.685816 11782 756 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 f5a03a76-098b-417b-b316-7c20ae190a37 2019-07-23 19:36:35.716393 11783 757 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 f5a03a76-098b-417b-b316-7c20ae190a37 2019-07-23 19:36:35.738873 11784 758 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 f5a03a76-098b-417b-b316-7c20ae190a37 2019-07-23 19:36:35.764383 11785 759 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.41.229 f5a03a76-098b-417b-b316-7c20ae190a37 2019-07-23 19:36:35.791865 11786 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-21 20:24:37.773533000 Z\n- &1 2019-07-23 15:58:04.483029000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 19:36:56.022506418 Z\nsign_in_count:\n- 528\n- 529\n 1058 \N 189.186.41.229 e0d37864-c17c-4913-8fdc-b52b7e4a23eb 2019-07-23 19:36:56.029306 11787 3 User \N \N 3 User \N update ---\nunique_session_id:\n- jdHb5ftC2-Rw7pYs-9TM\n- VW9pEuauBtsuxewoqTYs\n 1059 \N 189.186.41.229 e0d37864-c17c-4913-8fdc-b52b7e4a23eb 2019-07-23 19:36:56.043457 11788 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 19:15:20.057801000 Z\n- &1 2019-07-23 19:17:46.332962000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 19:49:23.005040993 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 370\n- 371\n 742 \N 189.186.41.229 7c73771e-4256-40a9-8520-5fd80f2d1dc4 2019-07-23 19:49:23.012101 11789 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Cp17LEr4ShsDESJMxM3K\n- Tn8HQZJbq7ki-5xsoEdw\n 743 \N 189.186.41.229 7c73771e-4256-40a9-8520-5fd80f2d1dc4 2019-07-23 19:49:23.028293 11790 634 Product \N \N 4 User \N update ---\ndescription:\n- 'CQ&CQ CAMISA COLOR NEGRO '\n- CQ&CQ BODY BLANCO DE ENCAJE\nprice_base:\n- !ruby/object:BigDecimal 18:0.285E3\n- !ruby/object:BigDecimal 18:0.323E3\nprice_sale:\n- !ruby/object:BigDecimal 18:0.719E3\n- !ruby/object:BigDecimal 18:0.799E3\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '634'\n is_parent: false\n sku: BLU-634\n name: BLX-0027\n description: CQ&CQ BODY BLANCO DE ENCAJE\n price_base: '323'\n price_sale: '799'\n img_product: file3-8.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000634'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-23 19:29:16.429885'\n updated_at: &12 2019-07-23 19:51:07.061920528 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '634'\n sku: BLU-634\n name: BLX-0027\n description: 'CQ&CQ CAMISA COLOR NEGRO '\n price_base: '285.00'\n price_sale: '719.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-23 19:29:16.429885'\n updated_at: '2019-07-23 19:29:16.468304'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000634'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '634'\n type: *3\n value: 634\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-634\n type: *7\n value: BLU-634\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLX-0027\n type: *8\n value: BLX-0027\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CQ&CQ BODY BLANCO DE ENCAJE\n type: *6\n value: CQ&CQ BODY BLANCO DE ENCAJE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '323'\n type: *1\n value: !ruby/object:BigDecimal 18:0.323E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file3-8.jpeg\n type: *2\n value: file3-8.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000634'\n type: *2\n value: '0000634'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-23 19:29:16.429885'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file3-8.jpeg\n 3 El producto BLU-634 fue modificado. 189.186.41.229 afa90ee4-e526-4aa8-8d95-742b417d625b 2019-07-23 19:51:07.116054 11791 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 15:58:04.483029000 Z\n- &1 2019-07-23 19:36:56.022506000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 19:59:53.794939639 Z\nsign_in_count:\n- 529\n- 530\n 1060 \N 189.186.41.229 e437a137-3e6c-4bc3-bb4c-0dc58afe82db 2019-07-23 19:59:53.800697 11792 3 User \N \N 3 User \N update ---\nunique_session_id:\n- VW9pEuauBtsuxewoqTYs\n- jJTiHtLx7Wm9J4NFZtzD\n 1061 \N 189.186.41.229 e437a137-3e6c-4bc3-bb4c-0dc58afe82db 2019-07-23 19:59:53.814393 11793 882 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 322\namount: !ruby/object:BigDecimal 18:0.1149E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1149E4\nstatus: 0\ndate_sale: 2019-07-23\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-378\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 619a1244-8029-44da-bfaf-9d9d5d46903a 2019-07-23 20:00:20.966098 11794 750 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.41.229 619a1244-8029-44da-bfaf-9d9d5d46903a 2019-07-23 20:00:20.991828 11795 882 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 7dd5aa04-378a-4d00-a995-39d2e12cf33c 2019-07-23 20:00:26.110961 11796 1200 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 322\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1149E4\nmove_type: '1'\nsale_id: 882\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-378\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-378 189.186.41.229 7dd5aa04-378a-4d00-a995-39d2e12cf33c 2019-07-23 20:00:26.137569 11797 883 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 323\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-07-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-503\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 6958032f-8fd6-438d-9a91-8e6ecdd3835b 2019-07-23 20:05:01.487459 11800 1201 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 323\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 883\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-503\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-503 189.186.41.229 e6b216c7-8d25-44e5-ba59-9e1af5473649 2019-07-23 20:05:41.656127 11801 146 Customer \N \N 2 User \N create ---\nnick_name: NORMA ALEJANDRA RODRIGUEZ\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente NORMA ALEJANDRA RODRIGUEZ fue registrado. 189.186.41.229 b34b2ee8-c8c9-4694-b5b3-4bd1445c2847 2019-07-23 20:49:33.148426 11802 884 Sale \N \N 2 User \N create ---\ncustomer_id: 146\nuser_id: 2\nopen_cash_register_id: 323\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2019-07-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-504\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 481dd5f8-dd86-4a9d-b0c4-bc0d6f0f649d 2019-07-23 20:50:45.4016 11803 730 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.229 481dd5f8-dd86-4a9d-b0c4-bc0d6f0f649d 2019-07-23 20:50:45.429113 11804 884 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 381a73a0-712f-4b28-a47a-ca5ebcdbf3f0 2019-07-23 20:51:23.353879 11805 1202 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 323\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 884\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-504\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: 0000Q6RR\ncustomer_account: 0000Q6RR\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-504 189.186.41.229 381a73a0-712f-4b28-a47a-ca5ebcdbf3f0 2019-07-23 20:51:23.379818 11806 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 19:17:46.332962000 Z\n- &1 2019-07-23 19:49:23.005040000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 22:04:49.609850062 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\nsign_in_count:\n- 371\n- 372\n 744 \N 189.186.37.219 8781338f-070f-4bcd-9474-104b7758460d 2019-07-23 22:04:49.643013 11807 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Tn8HQZJbq7ki-5xsoEdw\n- wCs-nV4AJs_s_Up5wznB\n 745 \N 189.186.37.219 8781338f-070f-4bcd-9474-104b7758460d 2019-07-23 22:04:49.665071 11808 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 19:49:23.005040000 Z\n- &1 2019-07-23 22:04:49.609850000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 22:08:51.303448788 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 372\n- 373\n 746 \N 189.186.41.229 adf06eec-9475-4a8e-b5d0-0b9cbeca1d2e 2019-07-23 22:08:51.311052 11809 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wCs-nV4AJs_s_Up5wznB\n- w3tc54yk24qmtpMV3PsV\n 747 \N 189.186.41.229 adf06eec-9475-4a8e-b5d0-0b9cbeca1d2e 2019-07-23 22:08:51.325674 11810 632 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.3705E3\n- !ruby/object:BigDecimal 18:0.479E3\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '632'\n is_parent: false\n sku: BLU-632\n name: BLX-0028\n description: MUYMUY CAMISA COLOR ROSA PALO\n price_base: '185.25'\n price_sale: '479'\n img_product: file-16.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000632'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-23 19:26:36.500667'\n updated_at: &12 2019-07-23 22:16:59.685047519 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '632'\n sku: BLU-632\n name: BLX-0028\n description: MUYMUY CAMISA COLOR ROSA PALO\n price_base: '185.25'\n price_sale: '370.50'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-23 19:26:36.500667'\n updated_at: '2019-07-23 19:26:36.549085'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000632'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '632'\n type: *3\n value: 632\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-632\n type: *7\n value: BLU-632\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLX-0028\n type: *8\n value: BLX-0028\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MUYMUY CAMISA COLOR ROSA PALO\n type: *6\n value: MUYMUY CAMISA COLOR ROSA PALO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '185.25'\n type: *1\n value: !ruby/object:BigDecimal 18:0.18525E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '479'\n type: *1\n value: !ruby/object:BigDecimal 18:0.479E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file-16.jpeg\n type: *2\n value: file-16.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000632'\n type: *2\n value: '0000632'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-23 19:26:36.500667'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file-16.jpeg\n 3 El producto BLU-632 fue modificado. 189.186.41.229 c315663f-6509-4b2e-93ec-36fa28bff63a 2019-07-23 22:16:59.731402 11811 635 Product \N \N 4 User \N update --- {}\n 3 El producto BLU-635 fue modificado. 189.186.41.229 0c1e8575-3fc8-4bdf-b11b-cfbb0224255a 2019-07-23 22:19:40.76846 11812 638 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '638'\n is_parent: false\n sku: BLU-638\n name: BLX-0030\n description: BLUSA APEACH CON HOJAS DE PALMERA\n price_base: '247.0'\n price_sale: '619.0'\n img_product: BLX-0030.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000638'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-23 19:35:57.327036'\n updated_at: &12 2019-07-23 22:22:48.258429003 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '638'\n sku: BLU-638\n name: BLX-0030\n description: BLUSA APEACH CON HOJAS DE PALMERA\n price_base: '247.00'\n price_sale: '619.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-23 19:35:57.327036'\n updated_at: '2019-07-23 19:35:57.369281'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000638'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '638'\n type: *3\n value: 638\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-638\n type: *7\n value: BLU-638\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLX-0030\n type: *8\n value: BLX-0030\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA APEACH CON HOJAS DE PALMERA\n type: *6\n value: BLUSA APEACH CON HOJAS DE PALMERA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '247.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.247E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '619.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.619E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BLX-0030.png\n type: *2\n value: BLX-0030.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000638'\n type: *2\n value: '0000638'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-23 19:35:57.327036'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BLX-0030.png\n 3 El producto BLU-638 fue modificado. 189.186.41.229 1815b498-7ac7-4f2c-a3ab-256173350507 2019-07-23 22:22:48.301156 11813 636 Product \N \N 4 User \N update ---\nname:\n- VST-0025\n- VST-0040\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '636'\n is_parent: false\n sku: VES-636\n name: VST-0040\n description: VESTIDO APEACH BLANCON CON CADENA, CINTURON CON DORADO\n price_base: '313.5'\n price_sale: '829.0'\n img_product: VST-0040.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000636'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-23 19:33:28.116434'\n updated_at: &12 2019-07-23 22:29:39.345475656 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '636'\n sku: VES-636\n name: VST-0025\n description: VESTIDO APEACH BLANCON CON CADENA, CINTURON CON DORADO\n price_base: '313.50'\n price_sale: '829.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-23 19:33:28.116434'\n updated_at: '2019-07-23 19:33:28.16589'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000636'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '636'\n type: *3\n value: 636\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-636\n type: *7\n value: VES-636\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0040\n type: *8\n value: VST-0040\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO APEACH BLANCON CON CADENA, CINTURON CON\n DORADO\n type: *6\n value: VESTIDO APEACH BLANCON CON CADENA, CINTURON CON DORADO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '313.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3135E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '829.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.829E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: VST-0040.png\n type: *2\n value: VST-0040.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000636'\n type: *2\n value: '0000636'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-23 19:33:28.116434'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- VST-0040.png\n 3 El producto VES-636 fue modificado. 189.186.41.229 db7d45d0-d58e-47d7-afb2-f675a587ffa1 2019-07-23 22:29:39.388274 11814 628 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '628'\n is_parent: false\n sku: VES-628\n name: V-0024\n description: VESTIDO LATISTE COLORES NEON\n price_base: '437.0'\n price_sale: '1099.0'\n img_product: file3-11.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000628'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-23 19:14:59.808535'\n updated_at: &12 2019-07-23 22:33:47.186198116 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '628'\n sku: VES-628\n name: V-0024\n description: VESTIDO LATISTE COLORES NEON\n price_base: '437.00'\n price_sale: '1099.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-23 19:14:59.808535'\n updated_at: '2019-07-23 19:14:59.869901'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000628'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: LATISTE_COLORES.jpeg\n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '628'\n type: *3\n value: 628\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-628\n type: *7\n value: VES-628\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: V-0024\n type: *8\n value: V-0024\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO LATISTE COLORES NEON\n type: *6\n value: VESTIDO LATISTE COLORES NEON\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '437.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.437E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1099.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1099E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file3-11.jpeg\n type: *2\n value: file3-11.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000628'\n type: *2\n value: '0000628'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-23 19:14:59.808535'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/LATISTE_COLORES.jpeg"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader56785440\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_LATISTE_COLORES.jpeg"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader56781340\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_LATISTE_COLORES.jpeg"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader56768540\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_LATISTE_COLORES.jpeg"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- file3-11.jpeg\n 3 El producto VES-628 fue modificado. 189.186.41.229 4a67a271-6a9a-4838-9a73-0661b98cfc0c 2019-07-23 22:33:47.236311 11815 630 Product \N \N 4 User \N update ---\nname:\n- FLD-0009\n- FLD-0011\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '630'\n is_parent: false\n sku: FAL-630\n name: FLD-0011\n description: FALDA MUYMUY ROSA NEON\n price_base: '275.5'\n price_sale: '699.0'\n img_product: file4-9.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000630'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-23 19:22:21.757222'\n updated_at: &12 2019-07-23 22:39:30.919847429 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '630'\n sku: FAL-630\n name: FLD-0009\n description: FALDA MUYMUY ROSA NEON\n price_base: '275.50'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-23 19:22:21.757222'\n updated_at: '2019-07-23 19:22:21.795796'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000630'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '630'\n type: *3\n value: 630\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-630\n type: *7\n value: FAL-630\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0011\n type: *8\n value: FLD-0011\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA MUYMUY ROSA NEON\n type: *6\n value: FALDA MUYMUY ROSA NEON\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '275.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2755E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file4-9.jpeg\n type: *2\n value: file4-9.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000630'\n type: *2\n value: '0000630'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-23 19:22:21.757222'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file4-9.jpeg\n 3 El producto FAL-630 fue modificado. 189.186.41.229 1dcf5f4e-b734-40e1-851a-b8baae4947d1 2019-07-23 22:39:30.965887 11816 630 Product \N \N 4 User \N update ---\nname:\n- FLD-0011\n- FAL-0009\n 4 El producto FAL-630 fue modificado. 189.186.41.229 a28a02a7-bcf8-4f0c-a9dd-dc6cbe570949 2019-07-23 22:41:58.358811 11817 630 Product \N \N 4 User \N update ---\nname:\n- FAL-0009\n- FAL-0010\n 5 El producto FAL-630 fue modificado. 189.186.41.229 a074ee49-f1ab-4905-a73f-ba213504db90 2019-07-23 22:43:00.973093 11818 631 Product \N \N 4 User \N update ---\nname:\n- FLD-0010\n- FAL-0011\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '631'\n is_parent: false\n sku: FAL-631\n name: FAL-0011\n description: FALDA MUYMUY MIX COLOR\n price_base: '280.25'\n price_sale: '729.0'\n img_product: file-14.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000631'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-23 19:25:35.395485'\n updated_at: &12 2019-07-23 22:44:36.443137124 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '631'\n sku: FAL-631\n name: FLD-0010\n description: FALDA MUYMUY MIX COLOR\n price_base: '280.25'\n price_sale: '729.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-23 19:25:35.395485'\n updated_at: '2019-07-23 19:25:35.434399'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000631'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '631'\n type: *3\n value: 631\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-631\n type: *7\n value: FAL-631\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FAL-0011\n type: *8\n value: FAL-0011\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA MUYMUY MIX COLOR\n type: *6\n value: FALDA MUYMUY MIX COLOR\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '280.25'\n type: *1\n value: !ruby/object:BigDecimal 18:0.28025E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '729.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.729E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file-14.jpeg\n type: *2\n value: file-14.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000631'\n type: *2\n value: '0000631'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-23 19:25:35.395485'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file-14.jpeg\n 3 El producto FAL-631 fue modificado. 189.186.41.229 39313ee7-c06a-4b6f-90fe-7b53f740e025 2019-07-23 22:44:36.489079 11819 637 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '637'\n is_parent: false\n sku: JUM-637\n name: JUM-0011\n description: JUMPER APEACH VERDE CON FLORES\n price_base: '285.0'\n price_sale: '799.0'\n img_product: JUM-0011.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '1'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000637'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-23 19:34:48.992627'\n updated_at: &12 2019-07-23 22:47:03.999749147 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '637'\n sku: JUM-637\n name: JUM-0011\n description: JUMPER APEACH VERDE CON FLORES\n price_base: '285.00'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-23 19:34:48.992627'\n updated_at: '2019-07-23 19:34:49.035634'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000637'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '1'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '637'\n type: *3\n value: 637\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: JUM-637\n type: *7\n value: JUM-637\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: JUM-0011\n type: *8\n value: JUM-0011\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: JUMPER APEACH VERDE CON FLORES\n type: *6\n value: JUMPER APEACH VERDE CON FLORES\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '285.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.285E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: JUM-0011.png\n type: *2\n value: JUM-0011.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '1'\n type: *3\n value: 1\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000637'\n type: *2\n value: '0000637'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-23 19:34:48.992627'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- JUM-0011.png\n 3 El producto JUM-637 fue modificado. 189.186.41.229 5f5e263a-eaba-4490-a7c7-589e467a0c75 2019-07-23 22:47:04.048057 11820 627 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '627'\n is_parent: false\n sku: CON-627\n name: JUM-0009\n description: SET APEACHBLANCO CON FLORES ST. YT6033\n price_base: '399.0'\n price_sale: '999.0'\n img_product: JUM-0009.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '10'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000627'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-23 18:34:10.236404'\n updated_at: &12 2019-07-23 22:50:48.738903966 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '627'\n sku: CON-627\n name: JUM-0009\n description: SET APEACHBLANCO CON FLORES ST. YT6033\n price_base: '399.00'\n price_sale: '999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-23 18:34:10.236404'\n updated_at: '2019-07-23 18:34:10.272311'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000627'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '10'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '627'\n type: *3\n value: 627\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CON-627\n type: *7\n value: CON-627\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: JUM-0009\n type: *8\n value: JUM-0009\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: SET APEACHBLANCO CON FLORES ST. YT6033\n type: *6\n value: SET APEACHBLANCO CON FLORES ST. YT6033\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.399E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: JUM-0009.png\n type: *2\n value: JUM-0009.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '10'\n type: *3\n value: 10\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000627'\n type: *2\n value: '0000627'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-23 18:34:10.236404'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- JUM-0009.png\n 3 El producto CON-627 fue modificado. 189.186.41.229 c92aa3c8-2942-4e44-8886-20d0124a0dcb 2019-07-23 22:50:48.787624 11821 618 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '618'\n is_parent: false\n sku: BLU-618\n name: BLS-0049\n description: BLUSA M2 ROJO ESCARLATA CORTE CAMPESINA ST. T2665\n price_base: '247.0'\n price_sale: '569.0'\n img_product: ROJA.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000618'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-23 18:22:52.605528'\n updated_at: &12 2019-07-23 22:52:58.379440031 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '618'\n sku: BLU-618\n name: BLS-0049\n description: BLUSA M2 ROJO ESCARLATA CORTE CAMPESINA ST. T2665\n price_base: '247.00'\n price_sale: '569.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-23 18:22:52.605528'\n updated_at: '2019-07-23 18:22:52.663763'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000618'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '618'\n type: *3\n value: 618\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-618\n type: *7\n value: BLU-618\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0049\n type: *8\n value: BLS-0049\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA M2 ROJO ESCARLATA CORTE CAMPESINA ST. T2665\n type: *6\n value: BLUSA M2 ROJO ESCARLATA CORTE CAMPESINA ST. T2665\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '247.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.247E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '569.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.569E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: ROJA.jpg\n type: *2\n value: ROJA.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000618'\n type: *2\n value: '0000618'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-23 18:22:52.605528'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- ROJA.jpg\n 3 El producto BLU-618 fue modificado. 189.186.41.229 85a6e61d-d98a-4d42-8992-2f36e23013c0 2019-07-23 22:52:58.421733 11822 619 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '619'\n is_parent: false\n sku: BLU-619\n name: BLS-0050\n description: BLUSA BLUE B BLANCA CON BORDADO ST. T11819\n price_base: '256.5'\n price_sale: '569.0'\n img_product: BLS-0050.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000619'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-23 18:23:42.477259'\n updated_at: &12 2019-07-23 22:55:52.082579823 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '619'\n sku: BLU-619\n name: BLS-0050\n description: BLUSA BLUE B BLANCA CON BORDADO ST. T11819\n price_base: '256.50'\n price_sale: '569.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-23 18:23:42.477259'\n updated_at: '2019-07-23 18:23:42.515621'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000619'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '619'\n type: *3\n value: 619\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-619\n type: *7\n value: BLU-619\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0050\n type: *8\n value: BLS-0050\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA BLUE B BLANCA CON BORDADO ST. T11819\n type: *6\n value: BLUSA BLUE B BLANCA CON BORDADO ST. T11819\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '256.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2565E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '569.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.569E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BLS-0050.png\n type: *2\n value: BLS-0050.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000619'\n type: *2\n value: '0000619'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-23 18:23:42.477259'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BLS-0050.png\n 3 El producto BLU-619 fue modificado. 189.186.41.229 502ae333-ee37-4a86-9e3b-5c5ad64825b3 2019-07-23 22:55:52.123419 11823 624 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '624'\n is_parent: false\n sku: VES-624\n name: VST-0035\n description: VESTIDO CQBYCQ NEGRO DE ENCAJE ST. 9330DK\n price_base: '427.5'\n price_sale: '1099.0'\n img_product: file1-10.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000624'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-23 18:30:23.122319'\n updated_at: &12 2019-07-23 22:56:49.459060077 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '624'\n sku: VES-624\n name: VST-0035\n description: VESTIDO CQBYCQ NEGRO DE ENCAJE ST. 9330DK\n price_base: '427.50'\n price_sale: '1099.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-23 18:30:23.122319'\n updated_at: '2019-07-23 18:30:23.162836'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000624'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '624'\n type: *3\n value: 624\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-624\n type: *7\n value: VES-624\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0035\n type: *8\n value: VST-0035\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO CQBYCQ NEGRO DE ENCAJE ST. 9330DK\n type: *6\n value: VESTIDO CQBYCQ NEGRO DE ENCAJE ST. 9330DK\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '427.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4275E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1099.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1099E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file1-10.jpeg\n type: *2\n value: file1-10.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000624'\n type: *2\n value: '0000624'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-23 18:30:23.122319'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file1-10.jpeg\n 3 El producto VES-624 fue modificado. 189.186.41.229 59376026-ae7a-4cd0-9a27-b8b0d141cd48 2019-07-23 22:56:49.502718 11824 625 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '625'\n is_parent: false\n sku: VES-625\n name: VST-0036\n description: VESTIDO BLUE B NEGRO PLISADO ST. D11805\n price_base: '304.0'\n price_sale: '869.0'\n img_product: VST-0036.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000625'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-23 18:31:04.931576'\n updated_at: &12 2019-07-23 22:58:54.038788493 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '625'\n sku: VES-625\n name: VST-0036\n description: VESTIDO BLUE B NEGRO PLISADO ST. D11805\n price_base: '304.00'\n price_sale: '869.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-23 18:31:04.931576'\n updated_at: '2019-07-23 18:31:04.967153'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000625'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '625'\n type: *3\n value: 625\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-625\n type: *7\n value: VES-625\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0036\n type: *8\n value: VST-0036\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO BLUE B NEGRO PLISADO ST. D11805\n type: *6\n value: VESTIDO BLUE B NEGRO PLISADO ST. D11805\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '304.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.304E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '869.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.869E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: VST-0036.png\n type: *2\n value: VST-0036.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000625'\n type: *2\n value: '0000625'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-23 18:31:04.931576'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- VST-0036.png\n 3 El producto VES-625 fue modificado. 189.186.41.229 a7636f89-42af-4215-ba21-e924b19b5d08 2019-07-23 22:58:54.095565 11825 622 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '622'\n is_parent: false\n sku: BLU-622\n name: BLS-0053\n description: "PANTIBLUSA CQBYCQ NEGRA ST. 9291BW\\r\\n"\n price_base: '190.0'\n price_sale: '489.0'\n img_product: file1-9.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000622'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-23 18:27:38.840661'\n updated_at: &12 2019-07-23 22:59:59.868129138 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '622'\n sku: BLU-622\n name: BLS-0053\n description: "PANTIBLUSA CQBYCQ NEGRA ST. 9291BW\\r\\n"\n price_base: '190.00'\n price_sale: '489.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-23 18:27:38.840661'\n updated_at: '2019-07-23 18:27:38.875962'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000622'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '622'\n type: *3\n value: 622\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-622\n type: *7\n value: BLU-622\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0053\n type: *8\n value: BLS-0053\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "PANTIBLUSA CQBYCQ NEGRA ST. 9291BW\\r\\n"\n type: *6\n value: "PANTIBLUSA CQBYCQ NEGRA ST. 9291BW\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '190.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.19E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '489.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.489E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file1-9.jpeg\n type: *2\n value: file1-9.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000622'\n type: *2\n value: '0000622'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-23 18:27:38.840661'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file1-9.jpeg\n 3 El producto BLU-622 fue modificado. 189.186.41.229 19fbd616-82c7-41ed-9889-e74fc627761a 2019-07-23 22:59:59.926755 11826 621 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '621'\n is_parent: false\n sku: BLU-621\n name: BLS-0052\n description: BLUSA CQBYCQ BLANCA CON FLORES Y PERLAS ST. 7887TW\n price_base: '247.5'\n price_sale: '619.0'\n img_product: CQ.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000621'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-23 18:26:49.270542'\n updated_at: &12 2019-07-23 23:01:47.406310895 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '621'\n sku: BLU-621\n name: BLS-0052\n description: BLUSA CQBYCQ BLANCA CON FLORES Y PERLAS ST. 7887TW\n price_base: '247.50'\n price_sale: '619.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-23 18:26:49.270542'\n updated_at: '2019-07-23 18:26:49.306592'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000621'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '621'\n type: *3\n value: 621\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-621\n type: *7\n value: BLU-621\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0052\n type: *8\n value: BLS-0052\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA CQBYCQ BLANCA CON FLORES Y PERLAS ST. 7887TW\n type: *6\n value: BLUSA CQBYCQ BLANCA CON FLORES Y PERLAS ST. 7887TW\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '247.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2475E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '619.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.619E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: CQ.jpeg\n type: *2\n value: CQ.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000621'\n type: *2\n value: '0000621'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-23 18:26:49.270542'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- CQ.jpeg\n 3 El producto BLU-621 fue modificado. 189.186.41.229 a98239bd-2d9f-411c-9922-569cdf93cf98 2019-07-23 23:01:47.455157 11827 623 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '623'\n is_parent: false\n sku: FAL-623\n name: FLD-0010\n description: FALDA MUYMUY DE TUL BRILLOSA ST. A0793\n price_base: '242.25'\n price_sale: '699.0'\n img_product: FLD-0010.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000623'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-23 18:28:49.847492'\n updated_at: &12 2019-07-23 23:03:20.732120354 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '623'\n sku: FAL-623\n name: FLD-0010\n description: FALDA MUYMUY DE TUL BRILLOSA ST. A0793\n price_base: '242.25'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-23 18:28:49.847492'\n updated_at: '2019-07-23 18:28:49.901275'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000623'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '623'\n type: *3\n value: 623\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-623\n type: *7\n value: FAL-623\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0010\n type: *8\n value: FLD-0010\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA MUYMUY DE TUL BRILLOSA ST. A0793\n type: *6\n value: FALDA MUYMUY DE TUL BRILLOSA ST. A0793\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '242.25'\n type: *1\n value: !ruby/object:BigDecimal 18:0.24225E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: FLD-0010.png\n type: *2\n value: FLD-0010.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000623'\n type: *2\n value: '0000623'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-23 18:28:49.847492'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- FLD-0010.png\n 3 El producto FAL-623 fue modificado. 189.186.41.229 3aba9479-9fb6-4108-bd18-edacdb3655f6 2019-07-23 23:03:20.787963 11828 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 22:04:49.609850000 Z\n- &1 2019-07-23 22:08:51.303448000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 23:03:39.077791832 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\nsign_in_count:\n- 373\n- 374\n 748 \N 189.186.37.219 45ad1136-9cd3-4aa3-9527-862aeac5af30 2019-07-23 23:03:39.088546 11830 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 22:08:51.303448000 Z\n- &1 2019-07-23 23:03:39.077791000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 23:04:51.547383223 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 374\n- 375\n 750 \N 189.186.41.229 841fc75a-6e7f-4721-9618-4ae32893338f 2019-07-23 23:04:51.555308 11831 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _3Mfzvmm1BHVDsStsK_u\n- xJeG1C4kGiV4ptznnYtB\n 751 \N 189.186.41.229 841fc75a-6e7f-4721-9618-4ae32893338f 2019-07-23 23:04:51.570748 11832 626 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '626'\n is_parent: false\n sku: JUM-626\n name: JUM-0008\n description: JUMPER LATISTE BEIGE ST. LJS21162H\n price_base: '513.0'\n price_sale: '1270.0'\n img_product: BLA.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '1'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000626'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-23 18:33:31.535435'\n updated_at: &12 2019-07-23 23:06:48.185152860 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '626'\n sku: JUM-626\n name: JUM-0008\n description: JUMPER LATISTE BEIGE ST. LJS21162H\n price_base: '513.00'\n price_sale: '1270.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-23 18:33:31.535435'\n updated_at: '2019-07-23 18:33:31.580187'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000626'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '1'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '626'\n type: *3\n value: 626\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: JUM-626\n type: *7\n value: JUM-626\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: JUM-0008\n type: *8\n value: JUM-0008\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: JUMPER LATISTE BEIGE ST. LJS21162H\n type: *6\n value: JUMPER LATISTE BEIGE ST. LJS21162H\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '513.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.513E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1270.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.127E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BLA.jpeg\n type: *2\n value: BLA.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '1'\n type: *3\n value: 1\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000626'\n type: *2\n value: '0000626'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-23 18:33:31.535435'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BLA.jpeg\n 3 El producto JUM-626 fue modificado. 189.186.41.229 348d0d9e-59df-4a24-ad76-93698638a037 2019-07-23 23:06:48.23168 11833 620 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '620'\n is_parent: false\n sku: BLU-620\n name: BLS-0051\n description: PLAYERA MUYMUY CORAZON SANDIA ST. A0733\n price_base: '147.25'\n price_sale: '449.0'\n img_product: file3-9.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000620'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-23 18:26:06.40862'\n updated_at: &12 2019-07-23 23:09:55.395128008 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '620'\n sku: BLU-620\n name: BLS-0051\n description: PLAYERA MUYMUY CORAZON SANDIA ST. A0733\n price_base: '147.25'\n price_sale: '449.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-23 18:26:06.40862'\n updated_at: '2019-07-23 18:26:06.445597'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000620'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '620'\n type: *3\n value: 620\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-620\n type: *7\n value: BLU-620\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0051\n type: *8\n value: BLS-0051\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PLAYERA MUYMUY CORAZON SANDIA ST. A0733\n type: *6\n value: PLAYERA MUYMUY CORAZON SANDIA ST. A0733\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '147.25'\n type: *1\n value: !ruby/object:BigDecimal 18:0.14725E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '449.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.449E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file3-9.jpeg\n type: *2\n value: file3-9.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000620'\n type: *2\n value: '0000620'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-23 18:26:06.40862'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file3-9.jpeg\n 3 El producto BLU-620 fue modificado. 189.186.41.229 d97866a4-a8c5-4047-b17a-f8045dfb5744 2019-07-23 23:09:55.43696 11834 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 19:36:56.022506000 Z\n- &1 2019-07-23 19:59:53.794939000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 23:13:43.639666362 Z\nsign_in_count:\n- 530\n- 531\n 1062 \N 189.186.41.229 fb824e81-0a22-46c3-bfda-9a333f542ace 2019-07-23 23:13:43.645592 11835 3 User \N \N 3 User \N update ---\nunique_session_id:\n- jJTiHtLx7Wm9J4NFZtzD\n- s1xKubuNWtZ8S__DGpE6\n 1063 \N 189.186.41.229 fb824e81-0a22-46c3-bfda-9a333f542ace 2019-07-23 23:13:43.659519 11836 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-22 16:26:47.855328000 Z\n- &1 2019-07-22 23:37:46.064904000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 23:14:27.505938254 Z\nsign_in_count:\n- 109\n- 110\n 220 \N 189.186.41.229 9f9ae181-e897-464c-ad7a-d3377238e622 2019-07-23 23:14:27.511535 11837 10 User \N \N 10 User \N update ---\nunique_session_id:\n- krnyCg3K6oywbZyNgVWq\n- cG_zdtt-Z1B39cSLTNvt\n 221 \N 189.186.41.229 9f9ae181-e897-464c-ad7a-d3377238e622 2019-07-23 23:14:27.523824 11838 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-19 01:55:21.537194000 Z\n- &1 2019-07-21 16:07:02.814862000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 23:15:21.734289031 Z\nsign_in_count:\n- 258\n- 259\n 518 \N 189.186.41.229 3afa2cbc-f4f4-4b26-8731-579af07b0b7a 2019-07-23 23:15:21.740791 11839 12 User \N \N 12 User \N update ---\nunique_session_id:\n- niPGwBTbsLJD4MaLWGQv\n- 3zWi6NFoDhsXipsaEtZ-\n 519 \N 189.186.41.229 3afa2cbc-f4f4-4b26-8731-579af07b0b7a 2019-07-23 23:15:21.754919 11840 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 23:03:39.077791000 Z\n- &1 2019-07-23 23:04:51.547383000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 23:30:07.498551266 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 375\n- 376\n 752 \N 189.186.41.229 dde68d09-0052-435b-af20-92e508b38fc5 2019-07-23 23:30:07.506017 11841 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xJeG1C4kGiV4ptznnYtB\n- evQHZkeu_KJp3ZRwmxTG\n 753 \N 189.186.41.229 dde68d09-0052-435b-af20-92e508b38fc5 2019-07-23 23:30:07.524751 11842 10 Product \N \N 4 User \N update ---\ndescription:\n- SHORT AZUL MARINO CON RAYAS Y CINTO\n- SHORT MUYMUY AZUL MARINO CON RAYAS Y CINTO\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '10'\n is_parent: false\n sku: SHO-10\n name: SHO-0003\n description: SHORT MUYMUY AZUL MARINO CON RAYAS Y CINTO\n price_base: '299.0'\n price_sale: '689.0'\n img_product: SHO-0003.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '2'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000010'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862588'\n updated_at: &12 2019-07-23 23:47:16.613063593 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '10'\n sku: SHO-10\n name: SHO-0003\n description: SHORT AZUL MARINO CON RAYAS Y CINTO\n price_base: '299.00'\n price_sale: '689.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862588'\n updated_at: '2019-02-04 09:10:19.963268'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000010'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '2'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '10'\n type: *3\n value: 10\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: SHO-10\n type: *7\n value: SHO-10\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: SHO-0003\n type: *8\n value: SHO-0003\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: SHORT MUYMUY AZUL MARINO CON RAYAS Y CINTO\n type: *6\n value: SHORT MUYMUY AZUL MARINO CON RAYAS Y CINTO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.299E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '689.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.689E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: SHO-0003.jpg\n type: *2\n value: SHO-0003.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '2'\n type: *3\n value: 2\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000010'\n type: *2\n value: '0000010'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862588'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- SHO-0003.jpg\n 3 El producto SHO-10 fue modificado. 189.186.41.229 f75a7863-86f1-4b80-9320-79d2caccf81d 2019-07-23 23:47:16.652873 11843 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 19:59:53.794939000 Z\n- &1 2019-07-23 23:13:43.639666000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 23:49:25.817448628 Z\nsign_in_count:\n- 531\n- 532\n 1064 \N 189.186.41.229 8901cfba-7c39-4bce-9c3f-5a548093ec6b 2019-07-23 23:49:25.822954 11844 3 User \N \N 3 User \N update ---\nunique_session_id:\n- s1xKubuNWtZ8S__DGpE6\n- DARicAS9-rtuY2e7Nxmb\n 1065 \N 189.186.41.229 8901cfba-7c39-4bce-9c3f-5a548093ec6b 2019-07-23 23:49:25.835811 11845 885 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 322\namount: !ruby/object:BigDecimal 18:0.60762E3\ntax: !ruby/object:BigDecimal 18:0.4138E2\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2019-07-23\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-379\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.229 51009051-d603-4197-9b9c-6d352cdc058d 2019-07-23 23:50:33.001953 11846 277 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.41.229 51009051-d603-4197-9b9c-6d352cdc058d 2019-07-23 23:50:33.040476 11847 885 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.229 6dd82c6d-95d4-45c4-b8f2-8fc5bda0f0f2 2019-07-23 23:50:51.872554 11848 1203 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 322\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 885\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-379\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAMA\n 1 movimiento de efectivo por venta con folio PV2-V-379 189.186.41.229 6dd82c6d-95d4-45c4-b8f2-8fc5bda0f0f2 2019-07-23 23:50:51.895423 11849 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 23:04:51.547383000 Z\n- &1 2019-07-23 23:30:07.498551000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-23 23:52:10.459962329 Z\nsign_in_count:\n- 376\n- 377\n 754 \N 189.186.41.229 a170d215-e6d1-4148-8ba1-fed70c9626f3 2019-07-23 23:52:10.469093 11850 4 User \N \N 4 User \N update ---\nunique_session_id:\n- evQHZkeu_KJp3ZRwmxTG\n- ggxNsqs_1RrHyapC-JjJ\n 755 \N 189.186.41.229 a170d215-e6d1-4148-8ba1-fed70c9626f3 2019-07-23 23:52:10.486997 11851 593 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '593'\n is_parent: false\n sku: BLU-593\n name: BLS-0045\n description: PANTIBLUSA BLANCA VALENTINE ST.T8675\n price_base: '256.5'\n price_sale: '659.0'\n img_product: file5-5.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000593'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-15 19:15:21.586546'\n updated_at: &12 2019-07-23 23:59:06.132032390 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '593'\n sku: BLU-593\n name: BLS-0045\n description: PANTIBLUSA BLANCA VALENTINE ST.T8675\n price_base: '256.50'\n price_sale: '659.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-15 19:15:21.586546'\n updated_at: '2019-07-15 20:38:58.201158'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000593'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '593'\n type: *3\n value: 593\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-593\n type: *7\n value: BLU-593\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0045\n type: *8\n value: BLS-0045\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTIBLUSA BLANCA VALENTINE ST.T8675\n type: *6\n value: PANTIBLUSA BLANCA VALENTINE ST.T8675\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '256.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2565E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '659.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.659E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file5-5.jpeg\n type: *2\n value: file5-5.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000593'\n type: *2\n value: '0000593'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-15 19:15:21.586546'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file5-5.jpeg\n 6 El producto BLU-593 fue modificado. 189.186.41.229 bc10c842-b4b2-49ac-b5b5-3716a611da40 2019-07-23 23:59:06.186292 11852 610 Product \N \N 4 User \N update ---\ndescription:\n- PANTIBLUSA COLOR BLANCO VALENTINE\n- PANTIBLUSA COLOR NEGRO DE ENCAJE VALENTAINE\ninclude_sale_tax:\n- 0\n- 1\n 4 El producto BLU-610 fue modificado. 189.186.41.229 f39cb9b5-f32a-40b8-8174-2ceaf67d755e 2019-07-24 00:01:01.136859 11853 610 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '610'\n is_parent: false\n sku: BLU-610\n name: BLU-0073\n description: PANTIBLUSA COLOR NEGRO DE ENCAJE VALENTAINE\n price_base: '310.0'\n price_sale: '649.0'\n img_product: file1-9.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000610'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-16 00:42:32.141936'\n updated_at: &12 2019-07-24 00:03:26.607575652 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '610'\n sku: BLU-610\n name: BLU-0073\n description: PANTIBLUSA COLOR NEGRO DE ENCAJE VALENTAINE\n price_base: '310.00'\n price_sale: '649.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-16 00:42:32.141936'\n updated_at: '2019-07-24 00:01:01.133067'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000610'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: file5-5.jpeg\n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '610'\n type: *3\n value: 610\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-610\n type: *7\n value: BLU-610\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLU-0073\n type: *8\n value: BLU-0073\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTIBLUSA COLOR NEGRO DE ENCAJE VALENTAINE\n type: *6\n value: PANTIBLUSA COLOR NEGRO DE ENCAJE VALENTAINE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '310.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.31E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '649.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.649E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file1-9.jpeg\n type: *2\n value: file1-9.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000610'\n type: *2\n value: '0000610'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-16 00:42:32.141936'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/file5-5.jpeg"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader56785440\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_file5-5.jpeg"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader56781340\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_file5-5.jpeg"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader56768540\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_file5-5.jpeg"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- file1-9.jpeg\n 5 El producto BLU-610 fue modificado. 189.186.41.229 69b5dd15-9c1e-40c0-9840-b3e79fe18ca6 2019-07-24 00:03:26.660141 11854 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 23:13:43.639666000 Z\n- &1 2019-07-23 23:49:25.817448000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-24 00:04:11.838821210 Z\nsign_in_count:\n- 532\n- 533\n 1066 \N 189.186.41.229 a174eb8f-1f47-4376-8f2d-977ca161c56e 2019-07-24 00:04:11.845202 11855 3 User \N \N 3 User \N update ---\nunique_session_id:\n- DARicAS9-rtuY2e7Nxmb\n- n-jBpcAUC5TR5CBJsEDd\n 1067 \N 189.186.41.229 a174eb8f-1f47-4376-8f2d-977ca161c56e 2019-07-24 00:04:11.860134 11856 438 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.41.229 e29170e8-1865-447b-9837-497edd04fe63 2019-07-24 00:04:40.510927 11857 438 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.41.229 d7004e97-4ce0-4006-93d6-0a7d601fc94a 2019-07-24 00:04:46.017101 11908 4 User \N \N 4 User \N update ---\nunique_session_id:\n- JhoTKgiUyLjvUHzK89BC\n- UAoG5cMxNt7ePaKdq6om\n 769 \N 200.68.135.102 b7e07dbf-6f16-4901-93a2-88558a6d3e04 2019-07-24 18:18:47.295961 11858 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 23:30:07.498551000 Z\n- &1 2019-07-23 23:52:10.459962000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-24 00:21:34.654321806 Z\nsign_in_count:\n- 377\n- 378\n 756 \N 189.186.41.229 385bdfe9-ab6e-4ef3-ab48-9f5f5d446d05 2019-07-24 00:21:34.660737 11859 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ggxNsqs_1RrHyapC-JjJ\n- js45VXyumyjjFxgK_WNy\n 757 \N 189.186.41.229 385bdfe9-ab6e-4ef3-ab48-9f5f5d446d05 2019-07-24 00:21:34.676026 11860 630 Product \N \N 4 User \N update ---\ninclude_sale_tax:\n- 0\n- 1\n 6 El producto FAL-630 fue modificado. 189.186.41.229 fd7cc023-3991-4c9e-9a5a-685a423bd997 2019-07-24 00:22:00.76879 11861 631 Product \N \N 4 User \N update ---\ninclude_sale_tax:\n- 0\n- 1\n 4 El producto FAL-631 fue modificado. 189.186.41.229 2654a7a2-8196-4980-a102-5ea902816266 2019-07-24 00:22:22.743353 11862 628 Product \N \N 4 User \N update ---\ninclude_sale_tax:\n- 0\n- 1\n 4 El producto VES-628 fue modificado. 189.186.41.229 0e916bca-9b02-4e8f-ab0d-e317e481bb0e 2019-07-24 00:22:47.762157 11863 629 Product \N \N 4 User \N update ---\ninclude_sale_tax:\n- 0\n- 1\n 3 El producto CON-629 fue modificado. 189.186.41.229 1e158cd4-2062-455d-a30f-473d95d098f8 2019-07-24 00:23:06.299383 11864 593 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '593'\n is_parent: false\n sku: BLU-593\n name: BLS-0045\n description: PANTIBLUSA BLANCA VALENTINE ST.T8675\n price_base: '256.5'\n price_sale: '659.0'\n img_product: file5-5.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000593'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-15 19:15:21.586546'\n updated_at: &12 2019-07-24 00:25:47.060654352 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '593'\n sku: BLU-593\n name: BLS-0045\n description: PANTIBLUSA BLANCA VALENTINE ST.T8675\n price_base: '256.50'\n price_sale: '659.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-15 19:15:21.586546'\n updated_at: '2019-07-23 23:59:06.132032'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000593'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: file5-5.jpeg\n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '593'\n type: *3\n value: 593\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-593\n type: *7\n value: BLU-593\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0045\n type: *8\n value: BLS-0045\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTIBLUSA BLANCA VALENTINE ST.T8675\n type: *6\n value: PANTIBLUSA BLANCA VALENTINE ST.T8675\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '256.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2565E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '659.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.659E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file5-5.jpeg\n type: *2\n value: file5-5.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000593'\n type: *2\n value: '0000593'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-15 19:15:21.586546'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/file5-5.jpeg"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader56785440\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_file5-5.jpeg"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader56781340\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_file5-5.jpeg"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader56768540\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_file5-5.jpeg"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- file5-5.jpeg\n 7 El producto BLU-593 fue modificado. 189.186.41.229 7299652e-8757-4e99-8a2c-7f3d1c69a63a 2019-07-24 00:25:47.10821 11865 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 23:49:25.817448000 Z\n- &1 2019-07-24 00:04:11.838821000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-24 00:27:13.557079651 Z\nsign_in_count:\n- 533\n- 534\n 1068 \N 189.186.41.229 e16843d3-94f2-462c-a502-884cfeafcab1 2019-07-24 00:27:13.563524 11866 3 User \N \N 3 User \N update ---\nunique_session_id:\n- n-jBpcAUC5TR5CBJsEDd\n- oXmi5rVCTpne_B2B-vvY\n 1069 \N 189.186.41.229 e16843d3-94f2-462c-a502-884cfeafcab1 2019-07-24 00:27:13.577183 11867 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 23:52:10.459962000 Z\n- &1 2019-07-24 00:21:34.654321000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-24 00:40:11.910289916 Z\nsign_in_count:\n- 378\n- 379\n 758 \N 189.186.41.229 bc59c9c5-a73f-4f8f-b436-b03fbaa53d71 2019-07-24 00:40:11.916187 11868 4 User \N \N 4 User \N update ---\nunique_session_id:\n- js45VXyumyjjFxgK_WNy\n- SUDBT7jApndMYAWrhBCq\n 759 \N 189.186.41.229 bc59c9c5-a73f-4f8f-b436-b03fbaa53d71 2019-07-24 00:40:11.943636 11869 590 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '590'\n is_parent: false\n sku: VES-590\n name: VST-0031\n description: "VESTIDO ROJO Y BLANCO VOILA ST. D1565\\r\\n"\n price_base: '418.0'\n price_sale: '1099.0'\n img_product: file-17.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000590'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-15 19:11:41.37249'\n updated_at: &12 2019-07-24 00:41:02.783109171 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '590'\n sku: VES-590\n name: VST-0031\n description: "VESTIDO ROJO Y BLANCO VOILA ST. D1565\\r\\n"\n price_base: '418.00'\n price_sale: '1099.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-15 19:11:41.37249'\n updated_at: '2019-07-15 20:37:36.390419'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000590'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '590'\n type: *3\n value: 590\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-590\n type: *7\n value: VES-590\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0031\n type: *8\n value: VST-0031\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "VESTIDO ROJO Y BLANCO VOILA ST. D1565\\r\\n"\n type: *6\n value: "VESTIDO ROJO Y BLANCO VOILA ST. D1565\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '418.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.418E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1099.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1099E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file-17.jpeg\n type: *2\n value: file-17.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000590'\n type: *2\n value: '0000590'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-15 19:11:41.37249'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file-17.jpeg\n 4 El producto VES-590 fue modificado. 189.186.41.229 c50403a7-a571-41b1-afd0-98db733be864 2019-07-24 00:41:02.85415 11870 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-24 00:21:34.654321000 Z\n- &1 2019-07-24 00:40:11.910289000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-24 00:47:08.025068092 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\nsign_in_count:\n- 379\n- 380\n 760 \N 189.186.37.219 edb83354-c020-4cd7-868b-3822939db9bc 2019-07-24 00:47:08.03447 11871 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SUDBT7jApndMYAWrhBCq\n- zGX5iJsrN6oeLs_SBu12\n 761 \N 189.186.37.219 edb83354-c020-4cd7-868b-3822939db9bc 2019-07-24 00:47:08.054956 11872 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-24 00:40:11.910289000 Z\n- &1 2019-07-24 00:47:08.025068000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-24 00:48:09.254839142 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\nsign_in_count:\n- 380\n- 381\n 762 \N 189.186.41.229 5d5aa207-58bb-440d-a29b-e643bb11e268 2019-07-24 00:48:09.263276 11873 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zGX5iJsrN6oeLs_SBu12\n- nA7ry9Y2MiyUsnW4W_qQ\n 763 \N 189.186.41.229 5d5aa207-58bb-440d-a29b-e643bb11e268 2019-07-24 00:48:09.280685 11874 586 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '586'\n is_parent: false\n sku: BLU-586\n name: BLS-0042\n description: BLUSA BLANCA CON HOJAS APEACH ST.YT6012\n price_base: '219.53'\n price_sale: '549.0'\n img_product: file2-1.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000586'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-05-23 18:19:58.133794'\n updated_at: &12 2019-07-24 00:48:36.336139471 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '586'\n sku: BLU-586\n name: BLS-0042\n description: BLUSA BLANCA CON HOJAS APEACH ST.YT6012\n price_base: '219.53'\n price_sale: '549.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-05-23 18:19:58.133794'\n updated_at: '2019-05-23 18:19:58.172891'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000586'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '586'\n type: *3\n value: 586\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-586\n type: *7\n value: BLU-586\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0042\n type: *8\n value: BLS-0042\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA BLANCA CON HOJAS APEACH ST.YT6012\n type: *6\n value: BLUSA BLANCA CON HOJAS APEACH ST.YT6012\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '219.53'\n type: *1\n value: !ruby/object:BigDecimal 18:0.21953E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '549.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.549E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file2-1.jpeg\n type: *2\n value: file2-1.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000586'\n type: *2\n value: '0000586'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-05-23 18:19:58.133794'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file2-1.jpeg\n 3 El producto BLU-586 fue modificado. 189.186.41.229 08d00682-03c8-4b39-8cfb-5a25ee2b8a38 2019-07-24 00:48:36.383174 11875 432 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '432'\n is_parent: false\n sku: VES-432\n name: V-0038\n description: VESTIDO GRIS NYLON CON MANGAS CUADRADAS Y CORAZON\n price_base: '250.25'\n price_sale: '649.0'\n img_product: f9838e21-5ff4-4b57-af2f-cd5752fd4739.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000432'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-07-24 00:49:31.609610635 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '432'\n sku: VES-432\n name: V-0038\n description: VESTIDO GRIS NYLON CON MANGAS CUADRADAS Y CORAZON\n price_base: '250.25'\n price_sale: '649.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:21.131713'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000432'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '432'\n type: *3\n value: 432\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-432\n type: *7\n value: VES-432\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: V-0038\n type: *8\n value: V-0038\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO GRIS NYLON CON MANGAS CUADRADAS Y CORAZON\n type: *6\n value: VESTIDO GRIS NYLON CON MANGAS CUADRADAS Y CORAZON\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '250.25'\n type: *1\n value: !ruby/object:BigDecimal 18:0.25025E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '649.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.649E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: f9838e21-5ff4-4b57-af2f-cd5752fd4739.JPG\n type: *2\n value: f9838e21-5ff4-4b57-af2f-cd5752fd4739.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000432'\n type: *2\n value: '0000432'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- f9838e21-5ff4-4b57-af2f-cd5752fd4739.JPG\n 3 El producto VES-432 fue modificado. 189.186.41.229 a8e5b382-1f7a-4d87-afe4-f775e8adbf5a 2019-07-24 00:49:31.658306 11876 279 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '279'\n is_parent: false\n sku: BLU-279\n name: BL-0031\n description: BLUSA ROSA Y ROJO NYLON CON COLA RAYADA\n price_base: '250.0'\n price_sale: '649.0'\n img_product: d9cdacb1-4ce8-4d73-b43b-0f8ca5ee45da.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000279'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-07-24 00:50:01.053346416 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '279'\n sku: BLU-279\n name: BL-0031\n description: BLUSA ROSA Y ROJO NYLON CON COLA RAYADA\n price_base: '250.00'\n price_sale: '649.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:14.664966'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000279'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '279'\n type: *3\n value: 279\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-279\n type: *7\n value: BLU-279\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BL-0031\n type: *8\n value: BL-0031\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA ROSA Y ROJO NYLON CON COLA RAYADA\n type: *6\n value: BLUSA ROSA Y ROJO NYLON CON COLA RAYADA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '250.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.25E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '649.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.649E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: d9cdacb1-4ce8-4d73-b43b-0f8ca5ee45da.JPG\n type: *2\n value: d9cdacb1-4ce8-4d73-b43b-0f8ca5ee45da.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000279'\n type: *2\n value: '0000279'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- d9cdacb1-4ce8-4d73-b43b-0f8ca5ee45da.JPG\n 3 El producto BLU-279 fue modificado. 189.186.41.229 28fe22ef-3a55-449e-89ad-4bc2d7e53a02 2019-07-24 00:50:01.097007 11877 279 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '279'\n is_parent: false\n sku: BLU-279\n name: BL-0031\n description: BLUSA ROSA Y ROJO NYLON CON COLA RAYADA\n price_base: '250.0'\n price_sale: '649.0'\n img_product: d9cdacb1-4ce8-4d73-b43b-0f8ca5ee45da.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000279'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2019-07-24 00:50:07.292824836 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '279'\n sku: BLU-279\n name: BL-0031\n description: BLUSA ROSA Y ROJO NYLON CON COLA RAYADA\n price_base: '250.00'\n price_sale: '649.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-07-24 00:50:01.053346'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000279'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: d9cdacb1-4ce8-4d73-b43b-0f8ca5ee45da.JPG\n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '279'\n type: *3\n value: 279\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-279\n type: *7\n value: BLU-279\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BL-0031\n type: *8\n value: BL-0031\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA ROSA Y ROJO NYLON CON COLA RAYADA\n type: *6\n value: BLUSA ROSA Y ROJO NYLON CON COLA RAYADA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '250.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.25E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '649.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.649E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: d9cdacb1-4ce8-4d73-b43b-0f8ca5ee45da.JPG\n type: *2\n value: d9cdacb1-4ce8-4d73-b43b-0f8ca5ee45da.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000279'\n type: *2\n value: '0000279'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/d9cdacb1-4ce8-4d73-b43b-0f8ca5ee45da.JPG"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader56785440\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_d9cdacb1-4ce8-4d73-b43b-0f8ca5ee45da.JPG"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader56781340\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_d9cdacb1-4ce8-4d73-b43b-0f8ca5ee45da.JPG"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader56768540\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_d9cdacb1-4ce8-4d73-b43b-0f8ca5ee45da.JPG"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- d9cdacb1-4ce8-4d73-b43b-0f8ca5ee45da.JPG\n 4 El producto BLU-279 fue modificado. 189.186.41.229 bd317fdf-0772-4f6d-bd72-535755d01a6e 2019-07-24 00:50:07.342293 11878 476 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '476'\n is_parent: false\n sku: BLU-476\n name: BASICA\n description: BLUSA DE TIRANTE EN VARIOS COLORES\n price_base: '49.5'\n price_sale: '99.0'\n img_product: descarga.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000476'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-12 19:33:39.899095'\n updated_at: &12 2019-07-24 00:50:37.132673282 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '476'\n sku: BLU-476\n name: BASICA\n description: BLUSA DE TIRANTE EN VARIOS COLORES\n price_base: '49.50'\n price_sale: '99.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-12 19:33:39.899095'\n updated_at: '2019-02-12 19:33:39.966022'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000476'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '476'\n type: *3\n value: 476\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-476\n type: *7\n value: BLU-476\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BASICA\n type: *8\n value: BASICA\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA DE TIRANTE EN VARIOS COLORES\n type: *6\n value: BLUSA DE TIRANTE EN VARIOS COLORES\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '49.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.495E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '99.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.99E2\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: descarga.jpg\n type: *2\n value: descarga.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000476'\n type: *2\n value: '0000476'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-12 19:33:39.899095'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- descarga.jpg\ninclude_sale_tax:\n- 0\n- 1\n 3 El producto BLU-476 fue modificado. 189.186.41.229 71e0ab15-ea08-4f8b-9b36-80fe9fa1af1e 2019-07-24 00:50:37.172779 11879 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-22 23:37:46.064904000 Z\n- &1 2019-07-23 23:14:27.505938000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-24 01:08:42.646339940 Z\nsign_in_count:\n- 110\n- 111\n 222 \N 189.186.41.229 a18c0afe-fd98-475e-8a0a-ba7fc1b7be08 2019-07-24 01:08:42.652644 11880 10 User \N \N 10 User \N update ---\nunique_session_id:\n- cG_zdtt-Z1B39cSLTNvt\n- PiSPhXyDZCsqeCqBehhQ\n 223 \N 189.186.41.229 a18c0afe-fd98-475e-8a0a-ba7fc1b7be08 2019-07-24 01:08:42.665798 11881 474 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.41.229 efcc03d7-9d81-4860-9c8c-8b59c0d56fd4 2019-07-24 01:09:27.895542 11882 474 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.41.229 de7b419c-e49c-42ee-9046-fad76ce1ad1a 2019-07-24 01:09:31.469814 11883 562 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.41.229 43127967-e83e-4411-8696-e67ae1d89962 2019-07-24 01:10:45.527643 11884 84 Transfer \N \N 10 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-07-23\nuser_id: 10\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.41.229 0e8155a2-5d49-43bb-b96c-1aa0072e4dd1 2019-07-24 01:11:03.148999 11885 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-24 00:47:08.025068000 Z\n- &1 2019-07-24 00:48:09.254839000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-24 01:18:52.900110153 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\nsign_in_count:\n- 381\n- 382\n 764 \N 189.186.38.130 4f13adf7-2d80-4e42-b80d-8db6e7b76581 2019-07-24 01:18:52.908658 11886 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nA7ry9Y2MiyUsnW4W_qQ\n- 7sAkd2LWAcjZgJCEMFux\n 765 \N 189.186.38.130 4f13adf7-2d80-4e42-b80d-8db6e7b76581 2019-07-24 01:18:52.927608 11955 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-24 16:07:48.565894000 Z\n- &1 2019-07-24 20:31:23.190139000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-25 16:02:13.373709618 Z\nsign_in_count:\n- 229\n- 230\n 463 \N 189.186.38.130 282aa7e5-66d9-4002-937c-7b140dbe6a59 2019-07-25 16:02:13.382772 47104 3549 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 d7a9dc8f-886e-4661-9abc-ef5337a2ce9f 2020-11-29 00:55:55.03334 11887 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-24 00:48:09.254839000 Z\n- &1 2019-07-24 01:18:52.900110000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-24 01:34:45.557726889 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\nsign_in_count:\n- 382\n- 383\n 766 \N 189.186.37.219 ee90d6b1-9de0-4966-9ac9-c02becb644f8 2019-07-24 01:34:45.56739 11888 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7sAkd2LWAcjZgJCEMFux\n- JhoTKgiUyLjvUHzK89BC\n 767 \N 189.186.37.219 ee90d6b1-9de0-4966-9ac9-c02becb644f8 2019-07-24 01:34:45.585999 11889 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 23:14:27.505938000 Z\n- &1 2019-07-24 01:08:42.646339000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-24 01:37:40.113653316 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\nsign_in_count:\n- 111\n- 112\n 224 \N 189.186.38.130 5993795f-c847-4dbf-afea-09b72cd74049 2019-07-24 01:37:40.121157 11890 10 User \N \N 10 User \N update ---\nunique_session_id:\n- PiSPhXyDZCsqeCqBehhQ\n- UHbzKpT8_ArdWyxyumYm\n 225 \N 189.186.38.130 5993795f-c847-4dbf-afea-09b72cd74049 2019-07-24 01:37:40.135447 11891 320 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 323\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.4097E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.629E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1829E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.38.130 b6d4fc65-75d9-4f2b-8b25-6625553b5f3e 2019-07-24 01:56:56.077741 11892 323 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.38.130 b6d4fc65-75d9-4f2b-8b25-6625553b5f3e 2019-07-24 01:56:56.092839 11893 321 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 322\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.1449E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.757E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1957E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.38.130 f67086a0-6a0c-4c2a-b1ba-d1bd3dc01c58 2019-07-24 02:00:50.312422 11894 322 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.38.130 f67086a0-6a0c-4c2a-b1ba-d1bd3dc01c58 2019-07-24 02:00:50.325763 11895 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-24 00:04:11.838821000 Z\n- &1 2019-07-24 00:27:13.557079000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-24 16:06:42.434931810 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\nsign_in_count:\n- 534\n- 535\n 1070 \N 189.186.38.130 977e7743-4a4a-4ca2-97f1-d5825b0c75bb 2019-07-24 16:06:42.466737 11896 3 User \N \N 3 User \N update ---\nunique_session_id:\n- oXmi5rVCTpne_B2B-vvY\n- yEQPGAZi7yuxFtncf_sT\n 1071 \N 189.186.38.130 977e7743-4a4a-4ca2-97f1-d5825b0c75bb 2019-07-24 16:06:42.490413 11897 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-22 16:06:17.088789000 Z\n- &1 2019-07-23 16:00:42.455679000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-24 16:07:48.565894499 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\nsign_in_count:\n- 227\n- 228\n 459 \N 189.186.38.130 6cabb823-1b78-4d1f-99fa-6530fab2aee8 2019-07-24 16:07:48.572199 11898 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 6Xs-EWLFDaVK6vbxb-SS\n- snhyu6GBFJKxtYpBewkY\n 460 \N 189.186.38.130 6cabb823-1b78-4d1f-99fa-6530fab2aee8 2019-07-24 16:07:48.586014 11899 324 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.757E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 757.0 189.186.38.130 20dc5341-4f13-469f-9d9c-932e18161377 2019-07-24 16:11:11.823309 11900 325 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.629E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 629.0 189.186.38.130 3001e051-7e26-4b55-8d88-245115b00659 2019-07-24 16:22:04.545906 11901 886 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 325\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-07-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-505\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.38.130 a12c3321-e0ad-48d7-99ec-b5fc85f4d838 2019-07-24 16:22:22.562035 11902 698 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.38.130 a12c3321-e0ad-48d7-99ec-b5fc85f4d838 2019-07-24 16:22:22.591979 11903 886 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.38.130 d03c712b-a57a-4a71-a689-188e0b808a0b 2019-07-24 16:22:26.624097 11904 1204 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 325\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 886\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-505\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-505 189.186.38.130 d03c712b-a57a-4a71-a689-188e0b808a0b 2019-07-24 16:22:26.661994 11905 135 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 325\nquantity: !ruby/object:BigDecimal 18:0.2E2\nstatus: 1\nobservations: GARRAFON DE AGUA\nexpense_date: 2019-07-24\nexpense_code: PV1-E-111\n 1 Egreso por 20.0 registrado 189.186.38.130 7a0c89c2-9f93-4b92-bf58-6df9bdb7e63f 2019-07-24 16:34:50.048967 11906 1205 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 325\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 135\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.38.130 7a0c89c2-9f93-4b92-bf58-6df9bdb7e63f 2019-07-24 16:34:50.081786 11907 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-24 01:18:52.900110000 Z\n- &1 2019-07-24 01:34:45.557726000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-24 18:18:47.271748116 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934310\n mask_addr: 4294967295\nsign_in_count:\n- 383\n- 384\n 768 \N 200.68.135.102 b7e07dbf-6f16-4901-93a2-88558a6d3e04 2019-07-24 18:18:47.280705 11909 887 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 325\namount: !ruby/object:BigDecimal 18:0.1868E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1868E4\nstatus: 0\ndate_sale: 2019-07-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-506\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.38.130 0e5d3d9a-1d7a-468d-8ea8-74b1e2fea3ae 2019-07-24 18:26:50.635939 11910 739 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.38.130 0e5d3d9a-1d7a-468d-8ea8-74b1e2fea3ae 2019-07-24 18:26:50.664918 11911 703 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.38.130 0e5d3d9a-1d7a-468d-8ea8-74b1e2fea3ae 2019-07-24 18:26:50.698438 11912 887 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.38.130 75fdd74a-b2ed-4a51-92ce-11400027c984 2019-07-24 18:27:48.899774 11913 1206 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 325\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1868E4\nmove_type: '1'\nsale_id: 887\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-506\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1868E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-506 189.186.38.130 75fdd74a-b2ed-4a51-92ce-11400027c984 2019-07-24 18:27:48.923357 11914 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 16:00:42.455679000 Z\n- &1 2019-07-24 16:07:48.565894000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-24 20:31:23.190139169 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\nsign_in_count:\n- 228\n- 229\n 461 \N 189.186.38.130 e58ac6f1-7945-4ab8-9084-3571839d2d9d 2019-07-24 20:31:23.197364 11915 2 User \N \N 2 User \N update ---\nunique_session_id:\n- snhyu6GBFJKxtYpBewkY\n- zimtfDiyNWDrqEx6JBaR\n 462 \N 189.186.38.130 e58ac6f1-7945-4ab8-9084-3571839d2d9d 2019-07-24 20:31:23.211601 11916 438 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 189.186.38.130 68f398b8-eb97-4b4a-a70d-86383c9e1e06 2019-07-24 21:38:24.502725 11917 481 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 189.186.38.130 2189ce23-b070-4084-add2-4e2f75cc4d31 2019-07-24 21:38:33.283683 11918 85 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-07-24\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.38.130 bae99466-73ea-4c72-8ccd-6f4a483d6a17 2019-07-24 21:39:12.716119 11919 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-24 01:34:45.557726000 Z\n- &1 2019-07-24 18:18:47.271748000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-24 22:45:32.836705797 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934310\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934310\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\nsign_in_count:\n- 384\n- 385\n 770 \N 189.186.37.219 1e0f7aba-8cf8-4ab2-b631-a36371b36247 2019-07-24 22:45:32.844303 11920 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UAoG5cMxNt7ePaKdq6om\n- cZy5F1YwrQTKLcMd6k2z\n 771 \N 189.186.37.219 1e0f7aba-8cf8-4ab2-b631-a36371b36247 2019-07-24 22:45:32.858455 11921 888 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 324\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-07-24\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-380\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.38.130 c7138b73-21cb-4375-9f84-3f790888f8a0 2019-07-25 00:05:04.102 11922 725 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.38.130 c7138b73-21cb-4375-9f84-3f790888f8a0 2019-07-25 00:05:04.140453 11923 888 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.38.130 0088ad2d-ae3c-4ea6-98fb-06cc6fe9d746 2019-07-25 00:05:16.716119 11924 1207 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 324\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 888\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-380\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-380 189.186.38.130 0088ad2d-ae3c-4ea6-98fb-06cc6fe9d746 2019-07-25 00:05:16.740815 11925 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-24 00:27:13.557079000 Z\n- &1 2019-07-24 16:06:42.434931000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-25 00:07:44.393413539 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\nsign_in_count:\n- 535\n- 536\n 1072 \N 189.186.38.130 f6b03d75-cd29-4855-adb0-34d8ef9faef2 2019-07-25 00:07:44.403993 11926 3 User \N \N 3 User \N update ---\nunique_session_id:\n- yEQPGAZi7yuxFtncf_sT\n- BxnoswVBmcLHqFSdWbee\n 1073 \N 189.186.38.130 f6b03d75-cd29-4855-adb0-34d8ef9faef2 2019-07-25 00:07:44.4269 11927 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-21 16:07:02.814862000 Z\n- &1 2019-07-23 23:15:21.734289000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-25 00:08:39.290605172 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\nsign_in_count:\n- 259\n- 260\n 520 \N 189.186.38.130 8893d10f-f1a5-4fcd-873a-6f1df3f416b8 2019-07-25 00:08:39.300129 11928 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 3zWi6NFoDhsXipsaEtZ-\n- rub8Em9A4bkZy-oVoEhK\n 521 \N 189.186.38.130 8893d10f-f1a5-4fcd-873a-6f1df3f416b8 2019-07-25 00:08:39.323122 11929 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-24 18:18:47.271748000 Z\n- &1 2019-07-24 22:45:32.836705000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-25 00:22:57.116384740 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934310\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\nsign_in_count:\n- 385\n- 386\n 772 \N 189.186.37.219 550ff6bf-219c-479d-bf4a-fe3a0c223d8f 2019-07-25 00:22:57.123226 11930 4 User \N \N 4 User \N update ---\nunique_session_id:\n- cZy5F1YwrQTKLcMd6k2z\n- kUdKmjJv_FsjXzvbpgZS\n 773 \N 189.186.37.219 550ff6bf-219c-479d-bf4a-fe3a0c223d8f 2019-07-25 00:22:57.138251 11931 147 Customer \N \N 12 User \N create ---\nnick_name: ROSALINDA FLORES\nphone: "(667) 467-3348"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ROSALINDA FLORES fue registrado. 189.186.38.130 0e3d1573-e65d-4b60-99e2-9433736dd422 2019-07-25 00:30:32.189305 11932 889 Sale \N \N 12 User \N create ---\ncustomer_id: 147\nuser_id: 12\nopen_cash_register_id: 325\namount: !ruby/object:BigDecimal 18:0.1198E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1198E4\nstatus: 0\ndate_sale: 2019-07-24\nsaletype: 2\nseller_id: 8\nsale_code: PV1-V-507\nexpiration_date: 2019-08-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.38.130 792e0626-8b24-45f7-bd67-3777a39e2165 2019-07-25 00:31:00.172357 11933 663 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.38.130 792e0626-8b24-45f7-bd67-3777a39e2165 2019-07-25 00:31:00.208138 11934 744 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.38.130 792e0626-8b24-45f7-bd67-3777a39e2165 2019-07-25 00:31:00.234557 11935 1208 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 325\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.36E3\nmove_type: '1'\nsale_id: 889\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-507\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.14E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-507 189.186.38.130 17b046b7-9e5d-4b23-82a9-5c83b1775e07 2019-07-25 00:31:37.404145 11936 889 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.38.130 71f00c45-f2d6-41f7-95df-6fa28d92a541 2019-07-25 00:31:38.614432 11937 148 Customer \N \N 12 User \N create ---\nnick_name: VERONICA VALLE\nphone: "(667) 303-1324"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente VERONICA VALLE fue registrado. 189.186.38.130 22e4bfc7-4e54-44c4-a66c-5ef493fa5d44 2019-07-25 00:42:37.292146 11938 890 Sale \N \N 12 User \N create ---\ncustomer_id: 148\nuser_id: 12\nopen_cash_register_id: 325\namount: !ruby/object:BigDecimal 18:0.1248E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1248E4\nstatus: 0\ndate_sale: 2019-07-24\nsaletype: 2\nseller_id: 8\nsale_code: PV1-V-508\nexpiration_date: 2019-08-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.38.130 8fac53ae-35af-4188-a39a-e05e6b66c5d5 2019-07-25 00:43:02.582246 11939 744 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.38.130 8fac53ae-35af-4188-a39a-e05e6b66c5d5 2019-07-25 00:43:02.615291 11940 707 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.38.130 8fac53ae-35af-4188-a39a-e05e6b66c5d5 2019-07-25 00:43:02.643164 11941 1209 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 325\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 890\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-508\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-508 189.186.38.130 c2e7657d-8f40-4562-bb6e-24c21186bf5e 2019-07-25 00:43:39.964071 11942 890 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.38.130 6371440b-9c28-4413-9443-b45dfd7bc172 2019-07-25 00:43:41.447225 11943 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-24 01:08:42.646339000 Z\n- &1 2019-07-24 01:37:40.113653000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-25 01:39:34.926126421 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\nsign_in_count:\n- 112\n- 113\n 226 \N 189.186.38.130 a6860c64-919f-4cea-b643-c909260cbf0c 2019-07-25 01:39:34.936043 11944 10 User \N \N 10 User \N update ---\nunique_session_id:\n- UHbzKpT8_ArdWyxyumYm\n- 82LZn2vzDAmhGBV1BN7g\n 227 \N 189.186.38.130 a6860c64-919f-4cea-b643-c909260cbf0c 2019-07-25 01:39:34.956448 11945 891 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 324\namount: !ruby/object:BigDecimal 18:0.55948E3\ntax: !ruby/object:BigDecimal 18:0.8952E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-07-24\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-381\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.38.130 c57d10e5-85a1-4e51-9ef8-98166e7f5844 2019-07-25 01:41:26.404812 11946 724 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 189.186.38.130 c57d10e5-85a1-4e51-9ef8-98166e7f5844 2019-07-25 01:41:26.431138 11947 891 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.38.130 933e40fa-397f-4bf0-90a5-83200d749e32 2019-07-25 01:41:46.021564 11948 1210 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 324\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.649E3\nmove_type: '1'\nsale_id: 891\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-381\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.65E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-381 189.186.38.130 933e40fa-397f-4bf0-90a5-83200d749e32 2019-07-25 01:41:46.048469 11949 322 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 325\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.3727E4\namount_out: !ruby/object:BigDecimal 18:0.2E2\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.37E4\ncash_fund: !ruby/object:BigDecimal 18:0.636E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4336E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.38.130 019209f3-2ef4-4668-a5bc-53415cd12497 2019-07-25 02:01:49.29682 11950 325 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.38.130 019209f3-2ef4-4668-a5bc-53415cd12497 2019-07-25 02:01:49.315696 11951 323 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 324\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.1648E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.16E4\ncash_fund: !ruby/object:BigDecimal 18:0.806E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2406E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.38.130 8835a5c3-73a6-4317-9990-0ca72c0962c5 2019-07-25 02:06:33.539306 11952 324 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.38.130 8835a5c3-73a6-4317-9990-0ca72c0962c5 2019-07-25 02:06:33.557973 11953 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-24 16:06:42.434931000 Z\n- &1 2019-07-25 00:07:44.393413000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-25 16:01:20.804194398 Z\nsign_in_count:\n- 536\n- 537\n 1074 \N 189.186.38.130 b6e37b25-edfe-4440-96a8-552878143dd3 2019-07-25 16:01:20.834248 11954 3 User \N \N 3 User \N update ---\nunique_session_id:\n- BxnoswVBmcLHqFSdWbee\n- R6y7szzweDGVUTojL3pN\n 1075 \N 189.186.38.130 b6e37b25-edfe-4440-96a8-552878143dd3 2019-07-25 16:01:20.857817 11956 2 User \N \N 2 User \N update ---\nunique_session_id:\n- zimtfDiyNWDrqEx6JBaR\n- 1Co45TymusxE2WRUkspB\n 464 \N 189.186.38.130 282aa7e5-66d9-4002-937c-7b140dbe6a59 2019-07-25 16:02:13.399016 11957 326 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.806E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 806.0 189.186.38.130 f7b2af24-d9b0-44f0-aa76-7822e51235ac 2019-07-25 16:02:26.82436 11958 327 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.636E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 636.0 189.186.38.130 a30a641d-4fdf-48a4-8954-f42edb9090fa 2019-07-25 16:04:41.699397 11959 1211 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 111\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 324\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.38.130 b193eb64-c903-4789-bbc1-34a30843587a 2019-07-25 16:55:11.763698 11960 1211 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 111\n- 327\n 2 movimiento de efectivo por venta con folio PV1-V-174 189.186.38.130 b193eb64-c903-4789-bbc1-34a30843587a 2019-07-25 16:55:11.800864 11961 67 Customer \N \N 2 User \N update ---\nstatus:\n- active\n- 0\n 2 \N 189.186.38.130 db18e5c4-c3a0-4789-8638-e89244277269 2019-07-25 17:13:03.760357 11962 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-24 22:45:32.836705000 Z\n- &1 2019-07-25 00:22:57.116384000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-25 17:49:47.539180243 Z\nsign_in_count:\n- 386\n- 387\n 774 \N 189.186.37.219 9a6ef702-036e-4198-af04-58d77f9b548f 2019-07-25 17:49:47.546432 11963 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kUdKmjJv_FsjXzvbpgZS\n- 6NEZWpeKxNfSNpcQAs-a\n 775 \N 189.186.37.219 9a6ef702-036e-4198-af04-58d77f9b548f 2019-07-25 17:49:47.561036 11964 85 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-25\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.38.130 ecd66f52-1ffb-448e-84f7-0a79b22c85b8 2019-07-25 17:51:17.231405 11965 154 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.38.130 ecd66f52-1ffb-448e-84f7-0a79b22c85b8 2019-07-25 17:51:17.256508 11966 892 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 327\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-07-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-509\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.38.130 e1549743-07ea-4753-bea4-e63a9bc8d530 2019-07-25 18:07:04.188011 11967 643 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.38.130 e1549743-07ea-4753-bea4-e63a9bc8d530 2019-07-25 18:07:04.218866 11968 892 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.38.130 1de70793-1217-4b40-a588-9430301b05e2 2019-07-25 18:07:11.349805 11969 1212 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 327\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 892\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-509\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-509 189.186.38.130 1de70793-1217-4b40-a588-9430301b05e2 2019-07-25 18:07:11.372138 11970 893 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 327\namount: !ruby/object:BigDecimal 18:0.1248E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1248E4\nstatus: 0\ndate_sale: 2019-07-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-510\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.38.130 de5d929f-6c41-4236-b88f-d215e848297e 2019-07-25 18:36:30.770425 11971 744 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.38.130 de5d929f-6c41-4236-b88f-d215e848297e 2019-07-25 18:36:30.831009 11972 707 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.38.130 de5d929f-6c41-4236-b88f-d215e848297e 2019-07-25 18:36:30.863915 11973 893 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.38.130 bc855ca9-fede-48c3-ac31-0d23465e784b 2019-07-25 18:36:46.33214 11974 1213 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 327\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1248E4\nmove_type: '1'\nsale_id: 893\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-510\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1248E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-510 189.186.38.130 bc855ca9-fede-48c3-ac31-0d23465e784b 2019-07-25 18:36:46.356995 11975 894 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 327\namount: !ruby/object:BigDecimal 18:0.255931E4\ntax: !ruby/object:BigDecimal 18:0.34069E3\ndiscount: !ruby/object:BigDecimal 18:0.43E3\ntotal: !ruby/object:BigDecimal 18:0.247E4\nstatus: 0\ndate_sale: 2019-07-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-511\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.38.130 3e58dc4f-4e69-4d3f-bacd-1da281cd8738 2019-07-25 19:36:26.340826 11976 23 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.38.130 3e58dc4f-4e69-4d3f-bacd-1da281cd8738 2019-07-25 19:36:26.377282 11977 894 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.38.130 16270713-61fd-4362-8904-a97fec39e065 2019-07-25 19:36:34.114944 11978 1214 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 327\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.247E4\nmove_type: '1'\nsale_id: 894\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-511\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.247E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-511 189.186.38.130 16270713-61fd-4362-8904-a97fec39e065 2019-07-25 19:36:34.136798 12045 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-26 16:07:29.650251000 Z\n- &1 2019-07-26 19:39:15.492526000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-26 21:58:23.530127390 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 232\n- 233\n 469 \N 189.186.46.7 4a95f0ed-5945-488d-a6e1-7309c68e9843 2019-07-26 21:58:23.539685 11979 1215 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 327\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.948E3\nmove_type: '1'\nsale_id: 890\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.948E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-508 189.186.38.130 c073c53b-3a4f-46a3-b002-ec0536a4363c 2019-07-25 19:39:43.757164 11980 890 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.38.130 1fcdf221-e9fb-4ac7-976a-fd6e0865896d 2019-07-25 19:39:45.061949 11981 894 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-511 cancelada. 189.186.38.130 ce368b10-0580-4c06-8c34-e6b0a39a47a1 2019-07-25 19:43:51.430513 11982 1214 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 327\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.247E4\nmove_type: '1'\nsale_id: 894\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-511\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.247E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.38.130 ce368b10-0580-4c06-8c34-e6b0a39a47a1 2019-07-25 19:43:51.458081 11983 23 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.38.130 ce368b10-0580-4c06-8c34-e6b0a39a47a1 2019-07-25 19:43:51.4861 11984 895 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 327\namount: !ruby/object:BigDecimal 18:0.255931E4\ntax: !ruby/object:BigDecimal 18:0.34069E3\ndiscount: !ruby/object:BigDecimal 18:0.43E3\ntotal: !ruby/object:BigDecimal 18:0.247E4\nstatus: 0\ndate_sale: 2019-07-25\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-512\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.38.130 17bac5ef-2893-45fa-8e53-348ffcffbe8d 2019-07-25 19:44:28.79484 11985 23 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.38.130 17bac5ef-2893-45fa-8e53-348ffcffbe8d 2019-07-25 19:44:28.819209 11986 895 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.38.130 149d964a-cc77-499f-abf7-1eba9d24a1b4 2019-07-25 19:44:33.503525 11987 1216 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 327\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.247E4\nmove_type: '1'\nsale_id: 895\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-512\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.247E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-512 189.186.38.130 149d964a-cc77-499f-abf7-1eba9d24a1b4 2019-07-25 19:44:33.523701 11988 136 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 326\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: yaretzi\nexpense_date: 2019-07-25\nexpense_code: PV2-E-25\n 1 Egreso por 50.0 registrado 189.186.38.130 aec9c4c6-a2cb-40e6-8c87-9a5b79c64776 2019-07-25 21:18:03.972873 11989 1217 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 326\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 136\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.38.130 aec9c4c6-a2cb-40e6-8c87-9a5b79c64776 2019-07-25 21:18:03.99147 11990 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-25 00:22:57.116384000 Z\n- &1 2019-07-25 17:49:47.539180000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-25 23:58:16.949367240 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938539\n mask_addr: 4294967295\nsign_in_count:\n- 387\n- 388\n 776 \N 200.68.151.235 7f62580f-efab-4c31-8bce-582c2b7d5bad 2019-07-25 23:58:16.957247 11991 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6NEZWpeKxNfSNpcQAs-a\n- zaMRZGFxemz-ztzoQDEB\n 777 \N 200.68.151.235 7f62580f-efab-4c31-8bce-582c2b7d5bad 2019-07-25 23:58:16.972363 11992 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-25 17:49:47.539180000 Z\n- &1 2019-07-25 23:58:16.949367000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-26 00:49:02.964139479 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\nsign_in_count:\n- 388\n- 389\n 778 \N 189.186.38.130 7be7725b-6562-4db1-999a-b431e9ba6f81 2019-07-26 00:49:02.976538 11993 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zaMRZGFxemz-ztzoQDEB\n- snerxfsaS-bF4nyBgYQd\n 779 \N 189.186.38.130 7be7725b-6562-4db1-999a-b431e9ba6f81 2019-07-26 00:49:03.001609 11994 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-25 23:58:16.949367000 Z\n- &1 2019-07-26 00:49:02.964139000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-26 01:30:47.379410705 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938539\n mask_addr: 4294967295\nsign_in_count:\n- 389\n- 390\n 780 \N 200.68.151.235 53f6107e-94a5-4f6b-9845-8ba56192f8ba 2019-07-26 01:30:47.388933 11995 4 User \N \N 4 User \N update ---\nunique_session_id:\n- snerxfsaS-bF4nyBgYQd\n- kidyidGyBiyTse3K_RUQ\n 781 \N 200.68.151.235 53f6107e-94a5-4f6b-9845-8ba56192f8ba 2019-07-26 01:30:47.410768 11996 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-24 01:37:40.113653000 Z\n- &1 2019-07-25 01:39:34.926126000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-26 01:39:36.131855305 Z\nsign_in_count:\n- 113\n- 114\n 228 \N 189.186.38.130 4511bda9-0cf5-40d5-8f81-cdc02666d15e 2019-07-26 01:39:36.137605 11997 10 User \N \N 10 User \N update ---\nunique_session_id:\n- 82LZn2vzDAmhGBV1BN7g\n- D5vXPMZEN7Rps-T5DU5e\n 229 \N 189.186.38.130 4511bda9-0cf5-40d5-8f81-cdc02666d15e 2019-07-26 01:39:36.152025 11998 896 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 326\namount: !ruby/object:BigDecimal 18:0.57739E3\ntax: !ruby/object:BigDecimal 18:0.7161E2\ndiscount: !ruby/object:BigDecimal 18:0.1298E3\ntotal: !ruby/object:BigDecimal 18:0.5192E3\nstatus: 0\ndate_sale: 2019-07-25\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-382\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.38.130 d0d1dfcd-2681-4f39-9ecb-53504574a9c6 2019-07-26 01:49:56.843998 11999 277 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.38.130 d0d1dfcd-2681-4f39-9ecb-53504574a9c6 2019-07-26 01:49:56.884267 12000 896 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.38.130 1d2bddfd-e5fe-4eea-98b2-69f0971d5ed5 2019-07-26 01:50:02.46736 12046 2 User \N \N 2 User \N update ---\nunique_session_id:\n- s218StJApi7xdnUSsFxL\n- JBEfxtPzhqkFEdAuV_8_\n 470 \N 189.186.46.7 4a95f0ed-5945-488d-a6e1-7309c68e9843 2019-07-26 21:58:23.560355 12001 1218 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 326\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5192E3\nmove_type: '1'\nsale_id: 896\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-382\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.52E3\nchange: !ruby/object:BigDecimal 18:0.8E0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-382 189.186.38.130 1d2bddfd-e5fe-4eea-98b2-69f0971d5ed5 2019-07-26 01:50:02.48924 12002 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-26 00:49:02.964139000 Z\n- &1 2019-07-26 01:30:47.379410000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-26 01:59:05.436778150 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938539\n mask_addr: 4294967295\nsign_in_count:\n- 390\n- 391\n 782 \N 200.68.151.235 fb281369-8856-448c-9cfe-e1770f728ba1 2019-07-26 01:59:05.467139 12003 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kidyidGyBiyTse3K_RUQ\n- fGo_vs5XYoXBUzQqHunv\n 783 \N 200.68.151.235 fb281369-8856-448c-9cfe-e1770f728ba1 2019-07-26 01:59:05.493351 12004 324 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 326\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.5192E3\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.776E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1276E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.38.130 8f10dc51-1f76-4ff6-86c7-93dc7e91cf5b 2019-07-26 02:00:15.368155 12005 326 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.38.130 8f10dc51-1f76-4ff6-86c7-93dc7e91cf5b 2019-07-26 02:00:15.385465 12006 325 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 327\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6065E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.6E4\ncash_fund: !ruby/object:BigDecimal 18:0.701E3\nphysical_cash: !ruby/object:BigDecimal 18:0.6701E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.38.130 558a20b0-c350-423f-95b1-1f70028f54ca 2019-07-26 02:06:38.054106 12007 327 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.38.130 558a20b0-c350-423f-95b1-1f70028f54ca 2019-07-26 02:06:38.072835 12008 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-25 01:39:34.926126000 Z\n- &1 2019-07-26 01:39:36.131855000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-26 03:47:56.912279771 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933975\n mask_addr: 4294967295\nsign_in_count:\n- 114\n- 115\n 230 \N 200.68.134.23 cb099eea-6b98-4392-90d6-be9ca5a8c1ce 2019-07-26 03:47:56.919064 12009 10 User \N \N 10 User \N update ---\nunique_session_id:\n- D5vXPMZEN7Rps-T5DU5e\n- 6rqH-y64AjY1sug9JWqD\n 231 \N 200.68.134.23 cb099eea-6b98-4392-90d6-be9ca5a8c1ce 2019-07-26 03:47:56.933146 12010 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-26 01:30:47.379410000 Z\n- &1 2019-07-26 01:59:05.436778000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-26 03:50:04.034322823 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933975\n mask_addr: 4294967295\nsign_in_count:\n- 391\n- 392\n 784 \N 200.68.134.23 9845ea77-c5cc-432b-91fe-58bdfa776ec7 2019-07-26 03:50:04.040781 12011 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fGo_vs5XYoXBUzQqHunv\n- F832SnVRXtp5iE_fvica\n 785 \N 200.68.134.23 9845ea77-c5cc-432b-91fe-58bdfa776ec7 2019-07-26 03:50:04.055909 12012 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-25 00:07:44.393413000 Z\n- &1 2019-07-25 16:01:20.804194000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-26 16:04:29.641502527 Z\nsign_in_count:\n- 537\n- 538\n 1076 \N 189.186.38.130 d4c00caa-e148-4daf-b598-1b0493e21b66 2019-07-26 16:04:29.670657 12013 3 User \N \N 3 User \N update ---\nunique_session_id:\n- R6y7szzweDGVUTojL3pN\n- Z7dyzhzxeBFKm26T6F4g\n 1077 \N 189.186.38.130 d4c00caa-e148-4daf-b598-1b0493e21b66 2019-07-26 16:04:29.693544 12014 328 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.775E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 775.0 189.186.38.130 962ba5cc-81f1-481d-96c3-1b8f067c128f 2019-07-26 16:05:44.043525 12015 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-24 20:31:23.190139000 Z\n- &1 2019-07-25 16:02:13.373709000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-26 16:07:29.650251107 Z\nsign_in_count:\n- 230\n- 231\n 465 \N 189.186.38.130 8c7919d1-2e90-403d-8470-b4cf70c9d6cb 2019-07-26 16:07:29.65626 12016 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 1Co45TymusxE2WRUkspB\n- xkbJGHxwHAFLP6z7MLiT\n 466 \N 189.186.38.130 8c7919d1-2e90-403d-8470-b4cf70c9d6cb 2019-07-26 16:07:29.669858 12017 329 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.701E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 701.0 189.186.38.130 dda6d8e5-9a08-413e-afaf-894f31405716 2019-07-26 16:07:56.516396 12018 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-26 01:59:05.436778000 Z\n- &1 2019-07-26 03:50:04.034322000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-26 18:29:10.664001887 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933975\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933975\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\nsign_in_count:\n- 392\n- 393\n 786 \N 189.186.37.219 c32d2d85-88db-4b70-941e-b2ad591c5071 2019-07-26 18:29:10.685281 12019 4 User \N \N 4 User \N update ---\nunique_session_id:\n- F832SnVRXtp5iE_fvica\n- F6PUGAzPwsqbV7Bofb5q\n 787 \N 189.186.37.219 c32d2d85-88db-4b70-941e-b2ad591c5071 2019-07-26 18:29:10.70504 12020 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-25 16:02:13.373709000 Z\n- &1 2019-07-26 16:07:29.650251000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-26 19:39:15.492526262 Z\nsign_in_count:\n- 231\n- 232\n 467 \N 189.186.38.130 3c0ffe79-76bc-49fd-a9d7-7e96e39f0acf 2019-07-26 19:39:15.49795 12021 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xkbJGHxwHAFLP6z7MLiT\n- s218StJApi7xdnUSsFxL\n 468 \N 189.186.38.130 3c0ffe79-76bc-49fd-a9d7-7e96e39f0acf 2019-07-26 19:39:15.512961 12022 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-26 03:50:04.034322000 Z\n- &1 2019-07-26 18:29:10.664001000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-26 20:12:55.266484757 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933975\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938053\n mask_addr: 4294967295\nsign_in_count:\n- 393\n- 394\n 788 \N 200.68.150.5 bef2d328-aa74-40b3-9039-38242e1def7e 2019-07-26 20:12:55.274352 12023 4 User \N \N 4 User \N update ---\nunique_session_id:\n- F6PUGAzPwsqbV7Bofb5q\n- dL1E3qcud6rxesKQEhBm\n 789 \N 200.68.150.5 bef2d328-aa74-40b3-9039-38242e1def7e 2019-07-26 20:12:55.290283 12024 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-26 18:29:10.664001000 Z\n- &1 2019-07-26 20:12:55.266484000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-26 20:33:24.975448598 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938053\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938053\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\nsign_in_count:\n- 394\n- 395\n 790 \N 189.186.36.37 7b288c0d-89a1-4682-aaf7-1bdba0a9a0bd 2019-07-26 20:33:24.986582 12025 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dL1E3qcud6rxesKQEhBm\n- Ky_Qm4Ri1LMVxAs1vqqF\n 791 \N 189.186.36.37 7b288c0d-89a1-4682-aaf7-1bdba0a9a0bd 2019-07-26 20:33:25.013144 12026 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 23:15:21.734289000 Z\n- &1 2019-07-25 00:08:39.290605000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-26 20:57:55.911868399 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\nsign_in_count:\n- 260\n- 261\n 522 \N 189.186.38.130 80c6c26f-1d38-4bf2-aec5-292bc08c3567 2019-07-26 20:57:55.941873 12027 12 User \N \N 12 User \N update ---\nunique_session_id:\n- rub8Em9A4bkZy-oVoEhK\n- GPTzAXB_h35oMY-Qsh9_\n 523 \N 189.186.38.130 80c6c26f-1d38-4bf2-aec5-292bc08c3567 2019-07-26 20:57:55.96396 12028 897 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 329\namount: !ruby/object:BigDecimal 18:0.659E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.659E3\nstatus: 0\ndate_sale: 2019-07-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-513\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.38.130 b23e41c3-918c-42a3-84b9-23eb4e967eef 2019-07-26 21:03:54.181544 12029 700 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.38.130 b23e41c3-918c-42a3-84b9-23eb4e967eef 2019-07-26 21:03:54.21173 12030 897 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.38.130 3b37e410-b4b2-491b-b226-e70c5a9b8b8e 2019-07-26 21:04:02.509106 12031 1219 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 329\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.659E3\nmove_type: '1'\nsale_id: 897\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-513\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.659E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-513 189.186.38.130 3b37e410-b4b2-491b-b226-e70c5a9b8b8e 2019-07-26 21:04:02.533506 12032 897 Sale \N \N 12 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-513 cancelada. 189.186.38.130 5345dd16-d8e7-4f97-9715-dfd2b8ab4096 2019-07-26 21:18:51.148915 12033 1219 CashRegistersMove \N \N 12 User \N destroy ---\nopen_cash_register_id: 329\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.659E3\nmove_type: '1'\nsale_id: 897\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-513\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.659E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.38.130 5345dd16-d8e7-4f97-9715-dfd2b8ab4096 2019-07-26 21:18:51.173759 12034 700 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.38.130 5345dd16-d8e7-4f97-9715-dfd2b8ab4096 2019-07-26 21:18:51.203667 12035 898 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 329\namount: !ruby/object:BigDecimal 18:0.659E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.659E3\nstatus: 0\ndate_sale: 2019-07-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-514\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.38.130 d7e10e97-4355-4fb9-8df0-edbc098a8200 2019-07-26 21:19:56.933532 12036 700 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.38.130 d7e10e97-4355-4fb9-8df0-edbc098a8200 2019-07-26 21:19:56.958888 12037 898 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.38.130 45e64619-f2db-4ca3-b70b-2ffbb5ed0d0a 2019-07-26 21:20:11.688518 12038 1220 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 329\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.35E3\nmove_type: '1'\nsale_id: 898\ncardnumber: 8359\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-514\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-514 189.186.38.130 45e64619-f2db-4ca3-b70b-2ffbb5ed0d0a 2019-07-26 21:20:11.730355 12039 1221 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 329\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.309E3\nmove_type: '1'\nsale_id: 898\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-514\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.309E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-514 189.186.38.130 2c7746d2-42d4-4e95-9197-56d28e38f387 2019-07-26 21:20:19.524098 12040 899 Sale \N \N 12 User \N create ---\ncustomer_id: 1\nuser_id: 12\nopen_cash_register_id: 329\namount: !ruby/object:BigDecimal 18:0.1318E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1318E4\nstatus: 0\ndate_sale: 2019-07-26\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-515\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 057d9d3a-0cfa-4767-a5ea-f688f4629902 2019-07-26 21:29:03.324438 12041 742 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.46.7 057d9d3a-0cfa-4767-a5ea-f688f4629902 2019-07-26 21:29:03.350437 12042 702 AvailableProduct \N \N 12 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.46.7 057d9d3a-0cfa-4767-a5ea-f688f4629902 2019-07-26 21:29:03.380095 12043 899 Sale \N \N 12 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 76872a39-ac56-45bc-a359-70b4f5828759 2019-07-26 21:29:07.415526 12044 1222 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 329\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1318E4\nmove_type: '1'\nsale_id: 899\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-515\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.182E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-515 189.186.46.7 76872a39-ac56-45bc-a359-70b4f5828759 2019-07-26 21:29:07.446525 12112 906 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 b2577ada-456c-4c9e-94dc-1e2253bd7dc3 2019-07-27 19:31:09.369636 12047 900 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 329\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-07-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-516\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 687da3c9-aea9-4260-8d78-c7ba97b5db98 2019-07-26 21:59:07.210802 12048 697 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.46.7 687da3c9-aea9-4260-8d78-c7ba97b5db98 2019-07-26 21:59:07.246887 12049 900 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 05a9cc57-7b38-4159-9f02-010e102b621d 2019-07-26 22:00:42.294959 12050 1223 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 329\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 900\ncardnumber: 8359\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-516\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-516 189.186.46.7 05a9cc57-7b38-4159-9f02-010e102b621d 2019-07-26 22:00:42.315927 12051 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-26 20:12:55.266484000 Z\n- &1 2019-07-26 20:33:24.975448000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-26 22:03:15.985790794 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938053\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938053\n mask_addr: 4294967295\nsign_in_count:\n- 395\n- 396\n 792 \N 200.68.150.5 018049fd-4f79-4f47-a0d6-f413c5deeae6 2019-07-26 22:03:15.99305 12052 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Ky_Qm4Ri1LMVxAs1vqqF\n- 2wCmm_hCXGJmRf3HqPVu\n 793 \N 200.68.150.5 018049fd-4f79-4f47-a0d6-f413c5deeae6 2019-07-26 22:03:16.008802 12053 137 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 329\nquantity: !ruby/object:BigDecimal 18:0.628E3\nstatus: 1\nobservations: sueldo rocio\nexpense_date: 2019-07-26\nexpense_code: PV1-E-112\n 1 Egreso por 628.0 registrado 189.186.46.7 434ed355-9f3b-4446-acbe-949bb171da3f 2019-07-26 22:22:01.241778 12054 1224 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 329\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.628E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 137\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.46.7 434ed355-9f3b-4446-acbe-949bb171da3f 2019-07-26 22:22:01.26489 12055 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-26 20:33:24.975448000 Z\n- &1 2019-07-26 22:03:15.985790000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-26 22:45:21.897750638 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938053\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938053\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 396\n- 397\n 794 \N 189.186.46.7 de0896b7-a29a-42d4-9b62-2847f3e41a03 2019-07-26 22:45:21.904927 12056 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2wCmm_hCXGJmRf3HqPVu\n- yysPYryXkEoFyw8s4czc\n 795 \N 189.186.46.7 de0896b7-a29a-42d4-9b62-2847f3e41a03 2019-07-26 22:45:21.920157 12057 149 Customer \N \N 2 User \N create ---\nnick_name: YESENIA BOGARIN\nphone: "(667) 387-6351"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente YESENIA BOGARIN fue registrado. 189.186.46.7 f1ea517b-89f5-46e0-baae-5b2737f73218 2019-07-26 22:53:40.772486 12058 901 Sale \N \N 2 User \N create ---\ncustomer_id: 149\nuser_id: 2\nopen_cash_register_id: 329\namount: !ruby/object:BigDecimal 18:0.55948E3\ntax: !ruby/object:BigDecimal 18:0.8952E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-07-26\nsaletype: 2\nseller_id: 8\nsale_code: PV1-V-517\nexpiration_date: 2019-08-30\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 5b1b0f12-2cfa-4512-b2f6-4b4d00116b7e 2019-07-26 22:54:03.461193 12059 138 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 22 \N 189.186.46.7 5b1b0f12-2cfa-4512-b2f6-4b4d00116b7e 2019-07-26 22:54:03.489371 12060 1225 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 329\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 901\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-517\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.3E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-517 189.186.46.7 3c60d735-480b-4f99-ac9b-8bd61613a304 2019-07-26 22:54:31.852454 12061 901 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.46.7 f52f1da1-c869-4e60-a482-b375f3089e64 2019-07-26 22:54:34.010122 12062 902 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 329\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-07-26\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-518\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 a07b3e2f-095f-4e6c-8e0a-50bb7273eedc 2019-07-26 23:01:28.070572 12063 488 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.46.7 a07b3e2f-095f-4e6c-8e0a-50bb7273eedc 2019-07-26 23:01:28.096345 12064 902 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 4dbdf28f-d1c4-4c92-af1d-3601fa3a426b 2019-07-26 23:01:32.398327 12065 1226 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 329\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 902\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-518\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-518 189.186.46.7 4dbdf28f-d1c4-4c92-af1d-3601fa3a426b 2019-07-26 23:01:32.419092 12066 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-26 19:39:15.492526000 Z\n- &1 2019-07-26 21:58:23.530127000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-26 23:07:08.639808570 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 233\n- 234\n 471 \N 189.186.46.7 5f4faf28-8038-4217-9580-f2fdafee9f1d 2019-07-26 23:07:08.647331 12067 2 User \N \N 2 User \N update ---\nunique_session_id:\n- JBEfxtPzhqkFEdAuV_8_\n- Nrs-N7TU--z_ssg4A-xV\n 472 \N 189.186.46.7 5f4faf28-8038-4217-9580-f2fdafee9f1d 2019-07-26 23:07:08.66363 12068 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-26 01:39:36.131855000 Z\n- &1 2019-07-26 03:47:56.912279000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-27 00:19:28.019418604 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933975\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933975\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 115\n- 116\n 232 \N 189.186.46.7 27843965-6ad9-41a2-935f-1f92dbc8e14a 2019-07-27 00:19:28.031193 12069 10 User \N \N 10 User \N update ---\nunique_session_id:\n- 6rqH-y64AjY1sug9JWqD\n- 8zhSW_AjL2EpSb3ZqLUx\n 233 \N 189.186.46.7 27843965-6ad9-41a2-935f-1f92dbc8e14a 2019-07-27 00:19:28.075886 12070 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-07-18 01:21:39.455563000 Z\n- &1 2019-07-18 01:32:53.459543000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-27 00:20:37.274500388 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 67\n- 68\n 136 \N 189.186.46.7 d1fe4bbd-1768-434f-90db-35b4d2352fcd 2019-07-27 00:20:37.285612 12071 9 User \N \N 9 User \N update ---\nunique_session_id:\n- tKx3VQQee1CukvHwqf_Q\n- K7tH8LxtNnLZWwqzyxEU\n 137 \N 189.186.46.7 d1fe4bbd-1768-434f-90db-35b4d2352fcd 2019-07-27 00:20:37.305588 12072 903 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 329\namount: !ruby/object:BigDecimal 18:0.689E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.689E3\nstatus: 0\ndate_sale: 2019-07-26\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-519\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 5ea4ba9d-9d98-4052-a6f1-4e20edb4afc8 2019-07-27 00:54:56.265964 12073 618 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.46.7 5ea4ba9d-9d98-4052-a6f1-4e20edb4afc8 2019-07-27 00:54:56.299449 12074 903 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 a079b387-4f23-471b-afe6-b775b7e51441 2019-07-27 00:55:10.369831 12075 1227 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 329\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.689E3\nmove_type: '1'\nsale_id: 903\ncardnumber: 385\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-519\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-519 189.186.46.7 a079b387-4f23-471b-afe6-b775b7e51441 2019-07-27 00:55:10.404073 12076 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-26 21:58:23.530127000 Z\n- &1 2019-07-26 23:07:08.639808000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-27 00:58:15.778773173 Z\nsign_in_count:\n- 234\n- 235\n 473 \N 189.186.46.7 6e2082d0-fc8c-4c19-8144-6ce5e3313705 2019-07-27 00:58:15.784758 12077 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Nrs-N7TU--z_ssg4A-xV\n- La5YT33DcyTDZSVpm4tu\n 474 \N 189.186.46.7 6e2082d0-fc8c-4c19-8144-6ce5e3313705 2019-07-27 00:58:15.80035 12078 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-25 16:01:20.804194000 Z\n- &1 2019-07-26 16:04:29.641502000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-27 01:03:24.862227498 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 538\n- 539\n 1078 \N 189.186.46.7 56d2d13c-e81c-4c6b-88db-ecf1ae7bf55d 2019-07-27 01:03:24.874996 12079 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Z7dyzhzxeBFKm26T6F4g\n- vDMzE5iFkMrNT7eAg-iz\n 1079 \N 189.186.46.7 56d2d13c-e81c-4c6b-88db-ecf1ae7bf55d 2019-07-27 01:03:24.897763 12080 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-26 03:47:56.912279000 Z\n- &1 2019-07-27 00:19:28.019418000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-27 01:16:17.950133887 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933975\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 116\n- 117\n 234 \N 189.186.46.7 e61f5908-273a-4e00-9073-a458031d1239 2019-07-27 01:16:17.959781 12081 10 User \N \N 10 User \N update ---\nunique_session_id:\n- 8zhSW_AjL2EpSb3ZqLUx\n- aP6eMmdd3PD8omsjZFPu\n 235 \N 189.186.46.7 e61f5908-273a-4e00-9073-a458031d1239 2019-07-27 01:16:17.977192 12082 1228 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 328\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.909E3\nmove_type: '1'\nsale_id: 784\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.91E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-341 189.186.46.7 7531c45c-21a3-460b-8788-1c5477b506f9 2019-07-27 01:16:45.612031 12083 784 Sale \N \N 10 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.46.7 9adc7e6a-59a2-45c3-bc5e-572026bb7f7c 2019-07-27 01:17:08.913568 12084 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-25 00:08:39.290605000 Z\n- &1 2019-07-26 20:57:55.911868000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-27 01:22:10.803886216 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 261\n- 262\n 524 \N 189.186.46.7 a1dbc1bc-4cbf-4ddf-a527-fefccc349024 2019-07-27 01:22:10.814715 12085 12 User \N \N 12 User \N update ---\nunique_session_id:\n- GPTzAXB_h35oMY-Qsh9_\n- wHcM6fypks4zHN7scRN_\n 525 \N 189.186.46.7 a1dbc1bc-4cbf-4ddf-a527-fefccc349024 2019-07-27 01:22:10.838383 12086 326 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 329\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.5364E4\namount_out: !ruby/object:BigDecimal 18:0.628E3\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.799E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3299E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.46.7 15972fa9-bd53-440c-b656-729bf5ae384f 2019-07-27 01:55:02.439949 12087 329 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.46.7 15972fa9-bd53-440c-b656-729bf5ae384f 2019-07-27 01:55:02.4548 12088 327 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 328\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.909E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.684E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1684E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.46.7 8ea6ec1c-b889-42ad-a268-b0597ce7995f 2019-07-27 02:38:00.304736 12089 328 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.46.7 8ea6ec1c-b889-42ad-a268-b0597ce7995f 2019-07-27 02:38:00.325426 12230 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vyS2DD2uFoWChyQrifXQ\n- sNVanz86crhprMQHxXik\n 817 \N 189.186.36.37 ceccc9aa-f31c-4c65-88de-f0e30fd9d356 2019-07-29 19:48:20.244124 12090 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-26 22:03:15.985790000 Z\n- &1 2019-07-26 22:45:21.897750000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-27 03:23:30.279442994 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938053\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\nsign_in_count:\n- 397\n- 398\n 796 \N 189.186.36.37 40a9a2dd-5b5c-4154-bf0f-c2740220e2fa 2019-07-27 03:23:30.307315 12091 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yysPYryXkEoFyw8s4czc\n- Xf2w1NxacxkWosfkQCYB\n 797 \N 189.186.36.37 40a9a2dd-5b5c-4154-bf0f-c2740220e2fa 2019-07-27 03:23:30.330206 12092 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-26 23:07:08.639808000 Z\n- &1 2019-07-27 00:58:15.778773000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-27 15:59:50.489552455 Z\nsign_in_count:\n- 235\n- 236\n 475 \N 189.186.46.7 89f31bfd-b84c-4aa6-b9c3-b0ea254f39bb 2019-07-27 15:59:50.518186 12093 2 User \N \N 2 User \N update ---\nunique_session_id:\n- La5YT33DcyTDZSVpm4tu\n- hDZ3wPsQ15x8HZBSuwhN\n 476 \N 189.186.46.7 89f31bfd-b84c-4aa6-b9c3-b0ea254f39bb 2019-07-27 15:59:50.539237 12094 330 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.799E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 799.0 189.186.46.7 99831a43-8131-4d6c-9f2e-b55680ac635c 2019-07-27 16:05:55.193701 12095 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-26 16:04:29.641502000 Z\n- &1 2019-07-27 01:03:24.862227000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-27 16:07:24.817418679 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 539\n- 540\n 1080 \N 189.186.46.7 8d841f75-b322-4fc4-b705-2c441d7c67ef 2019-07-27 16:07:24.824059 12096 3 User \N \N 3 User \N update ---\nunique_session_id:\n- vDMzE5iFkMrNT7eAg-iz\n- CSv9qLpuPRx5KzGvd5GN\n 1081 \N 189.186.46.7 8d841f75-b322-4fc4-b705-2c441d7c67ef 2019-07-27 16:07:24.838661 12097 1229 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 330\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 828\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-467 189.186.46.7 94cdc556-56a7-4a43-81b1-d8b0ce107f3c 2019-07-27 16:09:15.724964 12098 828 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.46.7 1f34e527-48f7-4016-b2f9-27ee4f4c9c47 2019-07-27 16:09:16.870628 12099 331 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.678E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 678.0 189.186.46.7 f9d4d938-1eb1-4d0d-a156-0c077aa92f5b 2019-07-27 16:12:41.341149 12100 138 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 330\nquantity: !ruby/object:BigDecimal 18:0.65E3\nstatus: 1\nobservations: SE LE DIO A DANIELA 26/07/19 $600 COMIDA $50\nexpense_date: 2019-07-27\nexpense_code: PV1-E-113\n 1 Egreso por 650.0 registrado 189.186.46.7 4679e682-5744-4aba-a1ea-15aea962e2c5 2019-07-27 16:17:08.302564 12101 1230 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 330\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.65E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 138\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.46.7 4679e682-5744-4aba-a1ea-15aea962e2c5 2019-07-27 16:17:08.323877 12102 904 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 330\namount: !ruby/object:BigDecimal 18:0.669E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-07-27\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-520\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 6f136a9e-a8c8-4fc0-bf9b-93d40457f183 2019-07-27 18:44:15.228948 12103 708 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.46.7 6f136a9e-a8c8-4fc0-bf9b-93d40457f183 2019-07-27 18:44:15.315143 12104 904 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 36983fd2-00c2-4a79-86eb-916e40f6db6e 2019-07-27 18:44:27.606343 12105 1231 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 330\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.669E3\nmove_type: '1'\nsale_id: 904\ncardnumber: 1391\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-520\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-520 189.186.46.7 36983fd2-00c2-4a79-86eb-916e40f6db6e 2019-07-27 18:44:27.627256 12106 905 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 331\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-07-27\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-383\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 5a2f8fa5-5007-4cd1-8fb2-35a19aa60783 2019-07-27 19:28:00.063885 12107 317 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.46.7 5a2f8fa5-5007-4cd1-8fb2-35a19aa60783 2019-07-27 19:28:00.087994 12108 905 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 27ec8aee-f285-458e-8b1a-98ce0c18182e 2019-07-27 19:28:06.040934 12109 1232 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 331\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 905\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-383\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-383 189.186.46.7 27ec8aee-f285-458e-8b1a-98ce0c18182e 2019-07-27 19:28:06.063408 12110 906 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 331\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-07-27\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-384\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 5a10e52b-20f9-449d-911d-d5167785f6c6 2019-07-27 19:30:48.560901 12111 753 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.46.7 5a10e52b-20f9-449d-911d-d5167785f6c6 2019-07-27 19:30:48.586931 12113 1233 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 331\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.479E3\nmove_type: '1'\nsale_id: 906\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-384\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-384 189.186.46.7 b2577ada-456c-4c9e-94dc-1e2253bd7dc3 2019-07-27 19:31:09.398733 12114 907 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 330\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-07-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-521\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 5a62c917-1330-4338-b5cf-d597729f5a07 2019-07-27 19:42:52.054607 12115 664 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.46.7 5a62c917-1330-4338-b5cf-d597729f5a07 2019-07-27 19:42:52.092299 12116 907 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 3dc98205-c6c2-458f-9c55-8c737b0b55a9 2019-07-27 19:44:28.765111 12117 1234 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 330\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 907\ncardnumber: 7094\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-521\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-521 189.186.46.7 3dc98205-c6c2-458f-9c55-8c737b0b55a9 2019-07-27 19:44:28.789954 12118 150 Customer \N \N 2 User \N create ---\nnick_name: GUADALUPE RAMIREZ\nphone: "(667) 419-1352"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente GUADALUPE RAMIREZ fue registrado. 189.186.46.7 1e27dc03-14c2-4fd4-9b03-fc6372866028 2019-07-27 19:46:48.429908 12119 908 Sale \N \N 2 User \N create ---\ncustomer_id: 150\nuser_id: 2\nopen_cash_register_id: 330\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-07-27\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-522\nexpiration_date: 2019-08-31\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 e2d0ad95-7159-4249-baa0-fcef2ca1ad52 2019-07-27 19:54:10.962784 12120 488 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.46.7 e2d0ad95-7159-4249-baa0-fcef2ca1ad52 2019-07-27 19:54:10.999552 12121 1235 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 330\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 908\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-522\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-522 189.186.46.7 b73be37d-c795-42fb-9c99-8267e0100d72 2019-07-27 19:55:28.763891 12122 908 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.46.7 1053eeda-71d2-45a6-82f6-04013fb66a98 2019-07-27 19:55:30.662912 12123 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-27 00:58:15.778773000 Z\n- &1 2019-07-27 15:59:50.489552000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-27 21:03:59.252832914 Z\nsign_in_count:\n- 236\n- 237\n 477 \N 189.186.46.7 03427888-d401-4e62-90c8-c3878da12d84 2019-07-27 21:03:59.260347 12124 2 User \N \N 2 User \N update ---\nunique_session_id:\n- hDZ3wPsQ15x8HZBSuwhN\n- PFztyQiegiBjmiMEv7H8\n 478 \N 189.186.46.7 03427888-d401-4e62-90c8-c3878da12d84 2019-07-27 21:03:59.274995 12125 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-26 22:45:21.897750000 Z\n- &1 2019-07-27 03:23:30.279442000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-27 22:33:40.997085218 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\nsign_in_count:\n- 398\n- 399\n 798 \N 189.186.36.37 57dec6d6-e399-4917-a259-55cb620dc288 2019-07-27 22:33:41.025076 12126 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Xf2w1NxacxkWosfkQCYB\n- ZTwDyjN2Ba2tWkvs9BD-\n 799 \N 189.186.36.37 57dec6d6-e399-4917-a259-55cb620dc288 2019-07-27 22:33:41.045475 12127 909 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 331\namount: !ruby/object:BigDecimal 18:0.62845E3\ntax: !ruby/object:BigDecimal 18:0.10055E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2019-07-27\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-385\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 471d0c45-7960-409a-86de-0f3bf634ab52 2019-07-27 22:37:35.244286 12128 752 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.46.7 471d0c45-7960-409a-86de-0f3bf634ab52 2019-07-27 22:37:35.287956 12129 909 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 4b58c4b4-744a-42a3-8764-e3cdb65f6cd9 2019-07-27 22:38:18.281565 12130 1236 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 331\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.729E3\nmove_type: '1'\nsale_id: 909\ncardnumber: 3764\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-385\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-385 189.186.46.7 4b58c4b4-744a-42a3-8764-e3cdb65f6cd9 2019-07-27 22:38:18.30328 12131 436 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 189.186.46.7 7fa85f25-7a3c-4398-8232-35a2a6524766 2019-07-27 23:18:28.760713 12132 436 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.46.7 4af9bbce-a351-4a21-9a03-897127126d36 2019-07-27 23:18:35.330377 12133 86 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-07-27\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.46.7 887b1481-1cc5-4d84-8a2e-8b0d50a1c23c 2019-07-27 23:18:45.467832 12134 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-27 15:59:50.489552000 Z\n- &1 2019-07-27 21:03:59.252832000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-27 23:31:09.381285903 Z\nsign_in_count:\n- 237\n- 238\n 479 \N 189.186.46.7 a7680c1d-b1a6-4459-9e03-28423908126d 2019-07-27 23:31:09.391259 12135 2 User \N \N 2 User \N update ---\nunique_session_id:\n- PFztyQiegiBjmiMEv7H8\n- TcWydvb7vCCAWS61As7t\n 480 \N 189.186.46.7 a7680c1d-b1a6-4459-9e03-28423908126d 2019-07-27 23:31:09.411092 47171 3556 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.20.144 5b61f5c8-12fb-4d7c-b71f-92b70ea03ece 2020-11-30 20:41:39.606742 12136 910 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 330\namount: !ruby/object:BigDecimal 18:0.99124E3\ntax: !ruby/object:BigDecimal 18:0.8676E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1078E4\nstatus: 0\ndate_sale: 2019-07-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-523\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 e1b66901-a7ac-44cd-be94-9a70ffbe6921 2019-07-27 23:36:38.833506 12137 81 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 189.186.46.7 e1b66901-a7ac-44cd-be94-9a70ffbe6921 2019-07-27 23:36:38.875352 12138 741 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.46.7 e1b66901-a7ac-44cd-be94-9a70ffbe6921 2019-07-27 23:36:38.924549 12139 910 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 490faa6b-7a5e-4901-bd5e-66a95e919f15 2019-07-27 23:36:48.906948 12140 1237 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 330\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1078E4\nmove_type: '1'\nsale_id: 910\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-523\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1078E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-523 189.186.46.7 490faa6b-7a5e-4901-bd5e-66a95e919f15 2019-07-27 23:36:48.937398 12141 394 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.46.7 c2c3939b-6d47-4ae4-a000-7a0ed827126e 2019-07-27 23:43:09.675112 12142 394 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.46.7 259068dc-116b-4217-a6a2-405df2f62880 2019-07-27 23:43:14.119549 12143 394 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:-0.1E1\n 7 \N 189.186.46.7 66046ed7-da9f-4655-8431-b417778b625e 2019-07-27 23:43:15.066037 12144 394 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:-0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.46.7 a7a1d1f5-b37a-4959-bf53-c733319ce7b7 2019-07-27 23:43:17.441754 12145 390 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.46.7 e21843de-0e56-490c-9e38-5d157e38e0b7 2019-07-27 23:43:42.512435 12146 510 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.46.7 dcfb7241-ce23-49df-ba50-57ff259939ad 2019-07-27 23:44:01.418702 12147 388 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.46.7 2aff7499-bb00-478b-a82b-7ec102df7b21 2019-07-27 23:44:25.587239 12148 388 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.46.7 4a495b4f-94ae-45e3-8b00-43770f95e330 2019-07-27 23:44:29.474022 12149 87 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-07-27\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.46.7 86af74e3-1cac-4f0d-9fbc-d16fe11b9bd2 2019-07-27 23:44:45.481382 12150 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-27 01:03:24.862227000 Z\n- &1 2019-07-27 16:07:24.817418000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-28 00:01:57.183946241 Z\nsign_in_count:\n- 540\n- 541\n 1082 \N 189.186.46.7 4bfeed39-a9f7-4fc0-b920-2f7c0c823385 2019-07-28 00:01:57.1921 12151 3 User \N \N 3 User \N update ---\nunique_session_id:\n- CSv9qLpuPRx5KzGvd5GN\n- xJBtyetxL6MZMXjxZa8x\n 1083 \N 189.186.46.7 4bfeed39-a9f7-4fc0-b920-2f7c0c823385 2019-07-28 00:01:57.211324 12152 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-27 16:07:24.817418000 Z\n- &1 2019-07-28 00:01:57.183946000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-28 00:15:36.676478005 Z\nsign_in_count:\n- 541\n- 542\n 1084 \N 189.186.46.7 6641732f-7bb7-4e12-80b5-d29bbdb0ddf9 2019-07-28 00:15:36.685249 12153 3 User \N \N 3 User \N update ---\nunique_session_id:\n- xJBtyetxL6MZMXjxZa8x\n- MPkMC1WEHFo6TjEmtAzy\n 1085 \N 189.186.46.7 6641732f-7bb7-4e12-80b5-d29bbdb0ddf9 2019-07-28 00:15:36.704 12154 911 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 330\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-07-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-524\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 2c4e6bb8-4c6b-4c65-a601-3e21ddc27e7b 2019-07-28 00:20:35.869699 12155 636 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.46.7 2c4e6bb8-4c6b-4c65-a601-3e21ddc27e7b 2019-07-28 00:20:35.91149 12156 911 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 7e5366aa-96cf-4e92-8f6b-cb412c920548 2019-07-28 00:20:40.392919 12157 1238 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 330\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.489E3\nmove_type: '1'\nsale_id: 911\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-524\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.489E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-524 189.186.46.7 7e5366aa-96cf-4e92-8f6b-cb412c920548 2019-07-28 00:20:40.426242 12158 912 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 331\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-07-27\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-386\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 dcc661aa-06d5-4760-8769-7c2cb931ed35 2019-07-28 00:25:54.290549 12159 727 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.46.7 dcc661aa-06d5-4760-8769-7c2cb931ed35 2019-07-28 00:25:54.332749 12160 912 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 4e9ae7ad-0d4d-4fa3-8b85-fbcbbadd8338 2019-07-28 00:26:32.001561 12161 1239 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 331\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 912\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-386\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-386 189.186.46.7 4e9ae7ad-0d4d-4fa3-8b85-fbcbbadd8338 2019-07-28 00:26:32.032641 20271 904 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '904'\n is_parent: false\n sku: CHA-904\n name: CHA-0022\n description: "SUETER DE COLORES LELIS ST-4883\\r\\n"\n price_base: '320.0'\n price_sale: '789.0'\n img_product: PHOTO-2019-10-15-21-54-32__3_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000904'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-30 02:35:09.520272'\n updated_at: &12 2019-11-05 20:28:16.412259871 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '904'\n sku: CHA-904\n name: CHA-0022\n description: "SUETER DE COLORES LELIS ST-4883\\r\\n"\n price_base: '320.00'\n price_sale: '789.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-30 02:35:09.520272'\n updated_at: '2019-10-30 02:35:09.561358'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000904'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '904'\n type: *3\n value: 904\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-904\n type: *7\n value: CHA-904\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0022\n type: *8\n value: CHA-0022\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "SUETER DE COLORES LELIS ST-4883\\r\\n"\n type: *6\n value: "SUETER DE COLORES LELIS ST-4883\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '320.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.32E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '789.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.789E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-10-15-21-54-32__3_.jpg\n type: *2\n value: PHOTO-2019-10-15-21-54-32__3_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000904'\n type: *2\n value: '0000904'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-30 02:35:09.520272'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-10-15-21-54-32__3_.jpg\n 3 El producto CHA-904 fue modificado. 187.149.74.215 9cc33877-c869-4f8e-8496-949c4895a8c6 2019-11-05 20:28:16.465519 12162 1239 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 331\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 912\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-386\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.46.7 8315a6d2-2c14-4f05-a3bd-e91d35a1e272 2019-07-28 00:26:36.365828 12163 1240 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 331\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 912\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-386\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-386 189.186.46.7 ffc8e8b1-877c-4ff9-ade8-7d4c2ac2df03 2019-07-28 00:26:48.725204 12164 87 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-27\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.46.7 3b827e8a-3d7a-4884-a0be-6856bdecc933 2019-07-28 00:57:11.578395 12165 760 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 390\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.46.7 3b827e8a-3d7a-4884-a0be-6856bdecc933 2019-07-28 00:57:11.638635 12166 180 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.46.7 3b827e8a-3d7a-4884-a0be-6856bdecc933 2019-07-28 00:57:11.686437 12167 761 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 392\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.46.7 3b827e8a-3d7a-4884-a0be-6856bdecc933 2019-07-28 00:57:11.72483 12168 762 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 396\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.46.7 3b827e8a-3d7a-4884-a0be-6856bdecc933 2019-07-28 00:57:11.755242 12169 86 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-27\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.46.7 bce06cf5-568d-4e11-829f-1ea92c263b7a 2019-07-28 00:57:18.596044 12170 150 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 189.186.46.7 bce06cf5-568d-4e11-829f-1ea92c263b7a 2019-07-28 00:57:18.621223 12171 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-28 00:01:57.183946000 Z\n- &1 2019-07-28 00:15:36.676478000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-28 00:57:43.105188663 Z\nsign_in_count:\n- 542\n- 543\n 1086 \N 189.186.46.7 7f73b56f-93f9-4567-884b-3752d20d5bfa 2019-07-28 00:57:43.116465 12172 3 User \N \N 3 User \N update ---\nunique_session_id:\n- MPkMC1WEHFo6TjEmtAzy\n- kpDiyHZf8TEWoo6V-wqo\n 1087 \N 189.186.46.7 7f73b56f-93f9-4567-884b-3752d20d5bfa 2019-07-28 00:57:43.137277 12173 651 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 189.186.46.7 1d117490-6472-4aa1-a788-ebca5b9b2e41 2019-07-28 00:58:17.671141 12174 88 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-07-27\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.46.7 d3240bf2-7d85-449d-bf0d-3172ea1fa4c4 2019-07-28 00:58:22.101373 12175 88 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-07-27\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.46.7 9590bc3c-6b86-4239-afb5-a3e2bbbf6eec 2019-07-28 00:58:34.754387 12176 635 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.46.7 9590bc3c-6b86-4239-afb5-a3e2bbbf6eec 2019-07-28 00:58:34.783362 12177 911 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-524 cancelada. 189.186.46.7 84c39db3-2494-4eec-a057-4e68802946ed 2019-07-28 01:01:00.834437 12178 1238 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 330\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.489E3\nmove_type: '1'\nsale_id: 911\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-524\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.489E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.46.7 84c39db3-2494-4eec-a057-4e68802946ed 2019-07-28 01:01:00.897879 12179 636 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 189.186.46.7 84c39db3-2494-4eec-a057-4e68802946ed 2019-07-28 01:01:00.936286 12180 913 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 330\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-07-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-525\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 01c1b32b-7bf4-4f80-ac4e-f3b15755a4ec 2019-07-28 01:01:26.383447 12181 635 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.46.7 01c1b32b-7bf4-4f80-ac4e-f3b15755a4ec 2019-07-28 01:01:26.428357 12182 913 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 b64740a3-2b75-42f2-9e60-5d743b1c8551 2019-07-28 01:01:33.420474 12183 1241 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 330\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.489E3\nmove_type: '1'\nsale_id: 913\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-525\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.489E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-525 189.186.46.7 b64740a3-2b75-42f2-9e60-5d743b1c8551 2019-07-28 01:01:33.454368 12184 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-27 03:23:30.279442000 Z\n- &1 2019-07-27 22:33:40.997085000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-28 01:01:57.338901869 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934274\n mask_addr: 4294967295\nsign_in_count:\n- 399\n- 400\n 800 \N 200.68.135.66 b8000125-acb9-41db-b670-41b9481a1706 2019-07-28 01:01:57.348279 12185 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZTwDyjN2Ba2tWkvs9BD-\n- tLmaZK61P95zspPGdz5r\n 801 \N 200.68.135.66 b8000125-acb9-41db-b670-41b9481a1706 2019-07-28 01:01:57.368397 12186 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-27 22:33:40.997085000 Z\n- &1 2019-07-28 01:01:57.338901000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-28 01:19:25.121755498 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934274\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\nsign_in_count:\n- 400\n- 401\n 802 \N 189.186.36.37 50a52846-4b1a-4180-8434-a07f9b1bbaa4 2019-07-28 01:19:25.130224 12187 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tLmaZK61P95zspPGdz5r\n- iZ9wMUoLNySxpHs-xBeY\n 803 \N 189.186.36.37 50a52846-4b1a-4180-8434-a07f9b1bbaa4 2019-07-28 01:19:25.152998 12188 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-28 00:15:36.676478000 Z\n- &1 2019-07-28 00:57:43.105188000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-28 01:47:19.901167072 Z\nsign_in_count:\n- 543\n- 544\n 1088 \N 189.186.46.7 a9efb7f4-675a-4290-a9f6-e662625f435d 2019-07-28 01:47:19.90719 12189 3 User \N \N 3 User \N update ---\nunique_session_id:\n- kpDiyHZf8TEWoo6V-wqo\n- xo-USXg1en7XtYJmvWrr\n 1089 \N 189.186.46.7 a9efb7f4-675a-4290-a9f6-e662625f435d 2019-07-28 01:47:19.922759 12190 328 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 331\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.2676E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.625E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2625E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.46.7 3ca7e7fc-55fe-4b31-b398-ae3488101a9f 2019-07-28 01:49:14.086718 12191 331 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.46.7 3ca7e7fc-55fe-4b31-b398-ae3488101a9f 2019-07-28 01:49:14.103286 12192 139 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 330\nquantity: !ruby/object:BigDecimal 18:0.28E3\nstatus: 1\nobservations: COMISIONES\nexpense_date: 2019-07-27\nexpense_code: PV1-E-114\n 1 Egreso por 280.0 registrado 189.186.46.7 a2c69442-d74e-4295-b212-87656a81de4c 2019-07-28 01:53:21.681037 12193 1242 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 330\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.28E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 139\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.46.7 a2c69442-d74e-4295-b212-87656a81de4c 2019-07-28 01:53:21.715787 12194 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-28 01:01:57.338901000 Z\n- &1 2019-07-28 01:19:25.121755000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-28 01:56:42.170750978 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934274\n mask_addr: 4294967295\nsign_in_count:\n- 401\n- 402\n 804 \N 200.68.135.66 c3eb580e-7ce4-4923-be0a-a2e31d0436b2 2019-07-28 01:56:42.17844 12195 4 User \N \N 4 User \N update ---\nunique_session_id:\n- iZ9wMUoLNySxpHs-xBeY\n- 87AXzjA_R7tLHCaK_sf-\n 805 \N 200.68.135.66 c3eb580e-7ce4-4923-be0a-a2e31d0436b2 2019-07-28 01:56:42.194835 12196 329 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 330\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4534E4\namount_out: !ruby/object:BigDecimal 18:0.93E3\nreceived_by_id: 16\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.635E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3135E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.46.7 b9537d2e-3296-4136-8467-99d8ff97f300 2019-07-28 01:57:06.345937 12197 330 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.46.7 b9537d2e-3296-4136-8467-99d8ff97f300 2019-07-28 01:57:06.358446 12198 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-28 01:19:25.121755000 Z\n- &1 2019-07-28 01:56:42.170750000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-28 05:24:57.830209256 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934274\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\nsign_in_count:\n- 402\n- 403\n 806 \N 189.186.36.37 9cf62d19-d9bc-41c7-94ee-ed2c9b5cb47c 2019-07-28 05:24:57.84094 12199 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 87AXzjA_R7tLHCaK_sf-\n- B8-VxRQC7pathBZd-9LS\n 807 \N 189.186.36.37 9cf62d19-d9bc-41c7-94ee-ed2c9b5cb47c 2019-07-28 05:24:57.860411 12200 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-28 00:57:43.105188000 Z\n- &1 2019-07-28 01:47:19.901167000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-28 16:04:53.802020907 Z\nsign_in_count:\n- 544\n- 545\n 1090 \N 189.186.46.7 e5879b53-2eca-4cd5-b759-8acfc2782caa 2019-07-28 16:04:53.833136 12201 3 User \N \N 3 User \N update ---\nunique_session_id:\n- xo-USXg1en7XtYJmvWrr\n- iJNzwQCymUCc9jZBzL4U\n 1091 \N 189.186.46.7 e5879b53-2eca-4cd5-b759-8acfc2782caa 2019-07-28 16:04:53.8557 12202 332 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.625E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 625.0 189.186.46.7 87b9f91d-51cb-4800-89a0-6e00feabba54 2019-07-28 16:05:04.316448 12203 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-28 01:56:42.170750000 Z\n- &1 2019-07-28 05:24:57.830209000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-28 18:36:57.658655491 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\nsign_in_count:\n- 403\n- 404\n 808 \N 189.186.36.37 32c7c5a2-4084-41b0-97cc-7767df578d55 2019-07-28 18:36:57.668162 12204 4 User \N \N 4 User \N update ---\nunique_session_id:\n- B8-VxRQC7pathBZd-9LS\n- FwqyxaRyWgs4BwVuaDnD\n 809 \N 189.186.36.37 32c7c5a2-4084-41b0-97cc-7767df578d55 2019-07-28 18:36:57.685829 12205 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-27 21:03:59.252832000 Z\n- &1 2019-07-27 23:31:09.381285000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-28 19:08:48.750009456 Z\nsign_in_count:\n- 238\n- 239\n 481 \N 189.186.46.7 c5844418-a5bb-4865-a018-74ff5f79cba1 2019-07-28 19:08:48.755462 12206 2 User \N \N 2 User \N update ---\nunique_session_id:\n- TcWydvb7vCCAWS61As7t\n- 26z1ymcWWsQrxJXMwuxU\n 482 \N 189.186.46.7 c5844418-a5bb-4865-a018-74ff5f79cba1 2019-07-28 19:08:48.76937 12207 333 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.635E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 635.0 189.186.46.7 b2277836-e542-4465-993b-89475d7afcfb 2019-07-28 19:09:11.983611 12254 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-29 23:10:40.954508000 Z\n- &1 2019-07-29 23:18:48.955258000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-30 00:34:09.755682849 Z\nsign_in_count:\n- 411\n- 412\n 824 \N 189.186.46.7 4dc67c4c-9e4c-4781-9dde-5a696c93c874 2019-07-30 00:34:09.766031 12208 914 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 333\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-07-28\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-526\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 30c43653-f270-45bf-afd1-82cd3ef89597 2019-07-28 19:09:33.837236 12209 663 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.46.7 30c43653-f270-45bf-afd1-82cd3ef89597 2019-07-28 19:09:33.873108 12210 914 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 de363653-daf7-4726-bac2-ba3bf433aa1c 2019-07-28 19:10:12.317995 12211 1243 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 333\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 914\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-526\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-526 189.186.46.7 de363653-daf7-4726-bac2-ba3bf433aa1c 2019-07-28 19:10:12.343247 12212 330 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 332\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.625E3\nphysical_cash: !ruby/object:BigDecimal 18:0.625E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.46.7 268ed3fb-a7c1-4307-b783-57d728eae01d 2019-07-28 20:52:23.022449 12213 332 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.46.7 268ed3fb-a7c1-4307-b783-57d728eae01d 2019-07-28 20:52:23.035753 12214 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-27 23:31:09.381285000 Z\n- &1 2019-07-28 19:08:48.750009000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-28 20:53:14.911736390 Z\nsign_in_count:\n- 239\n- 240\n 483 \N 189.186.46.7 83fadcab-c890-4096-9abd-6c82fc1ccd2f 2019-07-28 20:53:14.91777 12215 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 26z1ymcWWsQrxJXMwuxU\n- _KXufXeU8yEU8spJ4Yf2\n 484 \N 189.186.46.7 83fadcab-c890-4096-9abd-6c82fc1ccd2f 2019-07-28 20:53:14.932646 12216 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-26 20:57:55.911868000 Z\n- &1 2019-07-27 01:22:10.803886000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-28 20:54:10.144327558 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093378\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 262\n- 263\n 526 \N 189.186.46.7 50cc99ab-818f-4afd-87ec-a7fd86c52094 2019-07-28 20:54:10.15437 12217 12 User \N \N 12 User \N update ---\nunique_session_id:\n- wHcM6fypks4zHN7scRN_\n- MMrqgxZKxvVG5Gnxise_\n 527 \N 189.186.46.7 50cc99ab-818f-4afd-87ec-a7fd86c52094 2019-07-28 20:54:10.174346 12218 331 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 333\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.499E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.634E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1134E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.46.7 22e2ec0d-bcae-4f11-ab2f-c9e35058b0dd 2019-07-28 20:55:44.046877 12219 333 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.46.7 22e2ec0d-bcae-4f11-ab2f-c9e35058b0dd 2019-07-28 20:55:44.059116 12220 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-28 19:08:48.750009000 Z\n- &1 2019-07-28 20:53:14.911736000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-29 15:55:57.010181322 Z\nsign_in_count:\n- 240\n- 241\n 485 \N 189.186.46.7 b9247a21-fd3b-4be0-b19d-6b0e211c42b3 2019-07-29 15:55:57.039653 12221 2 User \N \N 2 User \N update ---\nunique_session_id:\n- _KXufXeU8yEU8spJ4Yf2\n- xEzpN4Qu1wHycZAtY_xD\n 486 \N 189.186.46.7 b9247a21-fd3b-4be0-b19d-6b0e211c42b3 2019-07-29 15:55:57.060982 12222 334 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.634E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 634.0 189.186.46.7 124885e9-a593-416c-b11b-7f84f0aea86a 2019-07-29 15:58:06.804435 12223 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-28 05:24:57.830209000 Z\n- &1 2019-07-28 18:36:57.658655000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-29 17:09:38.477226645 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 404\n- 405\n 810 \N 189.186.46.7 76a79f57-cf8e-4916-b8b7-24620a6ab9f7 2019-07-29 17:09:38.483819 12224 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FwqyxaRyWgs4BwVuaDnD\n- mN569qFqLwsYHafVv4Co\n 811 \N 189.186.46.7 76a79f57-cf8e-4916-b8b7-24620a6ab9f7 2019-07-29 17:09:38.498576 12225 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-28 18:36:57.658655000 Z\n- &1 2019-07-29 17:09:38.477226000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-29 17:42:27.336259539 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\nsign_in_count:\n- 405\n- 406\n 812 \N 189.186.36.37 f253cd3c-0461-40d4-af03-dfcd463781b4 2019-07-29 17:42:27.344234 12226 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mN569qFqLwsYHafVv4Co\n- B5poiKCHQrVEkaby2Pch\n 813 \N 189.186.36.37 f253cd3c-0461-40d4-af03-dfcd463781b4 2019-07-29 17:42:27.360122 12227 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-29 17:09:38.477226000 Z\n- &1 2019-07-29 17:42:27.336259000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-29 18:49:16.944960327 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 406\n- 407\n 814 \N 189.186.46.7 9903c37f-fcdd-4350-b395-d1f07672ee72 2019-07-29 18:49:16.951626 12228 4 User \N \N 4 User \N update ---\nunique_session_id:\n- B5poiKCHQrVEkaby2Pch\n- vyS2DD2uFoWChyQrifXQ\n 815 \N 189.186.46.7 9903c37f-fcdd-4350-b395-d1f07672ee72 2019-07-29 18:49:16.96583 12229 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-29 17:42:27.336259000 Z\n- &1 2019-07-29 18:49:16.944960000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-29 19:48:20.208088211 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\nsign_in_count:\n- 407\n- 408\n 816 \N 189.186.36.37 ceccc9aa-f31c-4c65-88de-f0e30fd9d356 2019-07-29 19:48:20.219896 12231 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-29 18:49:16.944960000 Z\n- &1 2019-07-29 19:48:20.208088000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-29 19:57:54.010379444 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 408\n- 409\n 818 \N 189.186.46.7 d079f19f-db34-45b6-aaa8-579f554dec4c 2019-07-29 19:57:54.017947 12232 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sNVanz86crhprMQHxXik\n- 8jR39upscyxtpniQ8FeT\n 819 \N 189.186.46.7 d079f19f-db34-45b6-aaa8-579f554dec4c 2019-07-29 19:57:54.034751 12233 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-27 00:19:28.019418000 Z\n- &1 2019-07-27 01:16:17.950133000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-29 20:05:38.116151862 Z\nsign_in_count:\n- 117\n- 118\n 236 \N 189.186.46.7 d8769b4f-cc99-4b00-9eb5-02af1dc23d9f 2019-07-29 20:05:38.121883 12234 10 User \N \N 10 User \N update ---\nunique_session_id:\n- aP6eMmdd3PD8omsjZFPu\n- nvs-1XicTrr_jyq1xG_g\n 237 \N 189.186.46.7 d8769b4f-cc99-4b00-9eb5-02af1dc23d9f 2019-07-29 20:05:38.135271 12235 335 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.625E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 625.0 189.186.46.7 c02876bb-8713-4ceb-add6-325dc68deb8d 2019-07-29 20:05:57.131217 12236 140 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 334\nquantity: !ruby/object:BigDecimal 18:0.15E2\nstatus: 1\nobservations: cooperacion a señores que barren\nexpense_date: 2019-07-29\nexpense_code: PV1-E-115\n 1 Egreso por 15.0 registrado 189.186.46.7 217d0ad0-4945-4d2d-92c0-e0d6b1ab3ef4 2019-07-29 21:29:53.799023 12237 1244 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 334\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 140\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.46.7 217d0ad0-4945-4d2d-92c0-e0d6b1ab3ef4 2019-07-29 21:29:53.823994 12238 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-29 19:48:20.208088000 Z\n- &1 2019-07-29 19:57:54.010379000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-29 23:10:40.954508131 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092773\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 409\n- 410\n 820 \N 189.186.46.7 2493af3e-593a-42b7-9ff2-3d0b1993d48c 2019-07-29 23:10:40.963004 12239 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8jR39upscyxtpniQ8FeT\n- TJ5sc8DXwCM3jyEF6WGQ\n 821 \N 189.186.46.7 2493af3e-593a-42b7-9ff2-3d0b1993d48c 2019-07-29 23:10:40.983487 12240 639 Product \N \N 4 User \N create ---\nsku: VES-639\nname: VES-0003\ndescription: VESTIDO TIPO COLOMBIANO, ROSA VIEJO, NEGRO Y LILA\nprice_base: !ruby/object:BigDecimal 18:0.3E3\nprice_sale: !ruby/object:BigDecimal 18:0.6E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 1\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-639 fue creado. 189.186.46.7 faf6c45a-929a-4c5b-82d4-905943bc23cd 2019-07-29 23:15:23.394261 12241 639 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000639'\n 2 \N 189.186.46.7 faf6c45a-929a-4c5b-82d4-905943bc23cd 2019-07-29 23:15:23.429026 12242 763 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 639\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.46.7 faf6c45a-929a-4c5b-82d4-905943bc23cd 2019-07-29 23:15:23.459385 12243 114 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-72\namount: !ruby/object:BigDecimal 18:0.12E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.12E4\nobservations: ''\npurchase_date: 2019-07-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-72 por $ 1200.0 MXN creada. 189.186.46.7 52385010-b8bb-4b18-91e2-7c2007b00f0a 2019-07-29 23:15:51.654199 12244 763 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.46.7 52385010-b8bb-4b18-91e2-7c2007b00f0a 2019-07-29 23:15:51.678672 12245 1 Promotion \N \N 4 User \N create ---\nstart_date: 2019-07-29\nend_date: 2019-08-31\npercent: !ruby/object:BigDecimal 18:0.3E2\nproduct_id: 639\ncategory_id: \nuser_id: \nstatus: 1\nsubcategory_id: \n 1 \N 189.186.46.7 cea6367c-e6b0-406a-ad8f-44e5a0af3614 2019-07-29 23:16:51.59001 12246 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-07-18 01:32:53.459543000 Z\n- &1 2019-07-27 00:20:37.274500000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-29 23:17:32.073184812 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 68\n- 69\n 138 \N 189.186.46.7 c2ad34af-0169-4324-b60f-2a16500db278 2019-07-29 23:17:32.079915 12247 9 User \N \N 9 User \N update ---\nunique_session_id:\n- K7tH8LxtNnLZWwqzyxEU\n- dWT-iN-ALv2UEAmTxHVP\n 139 \N 189.186.46.7 c2ad34af-0169-4324-b60f-2a16500db278 2019-07-29 23:17:32.093281 12248 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-29 19:57:54.010379000 Z\n- &1 2019-07-29 23:10:40.954508000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-29 23:18:48.955258025 Z\nsign_in_count:\n- 410\n- 411\n 822 \N 189.186.46.7 f16c39cc-6aea-4b8d-a851-e64669dfe501 2019-07-29 23:18:48.961765 12249 4 User \N \N 4 User \N update ---\nunique_session_id:\n- TJ5sc8DXwCM3jyEF6WGQ\n- cxZM1ZnhbjkqCBGPRsZh\n 823 \N 189.186.46.7 f16c39cc-6aea-4b8d-a851-e64669dfe501 2019-07-29 23:18:48.976078 12250 1 Promotion \N \N 4 User \N destroy ---\nstart_date: 2019-07-29\nend_date: 2019-08-31\npercent: !ruby/object:BigDecimal 18:0.3E2\nproduct_id: 639\ncategory_id: \nuser_id: \nstatus: 1\nsubcategory_id: \n 2 Descuento eliminado correctamente 189.186.46.7 4b696d46-32fa-4535-b1c2-83d6e743e3f2 2019-07-29 23:19:24.713304 12251 2 Promotion \N \N 4 User \N create ---\nstart_date: 2019-07-29\nend_date: 2019-08-31\npercent: !ruby/object:BigDecimal 18:0.5E2\nproduct_id: 639\ncategory_id: \nuser_id: \nstatus: 1\nsubcategory_id: \n 1 \N 189.186.46.7 4f538a4b-2dcb-459b-a313-1a28875195d3 2019-07-29 23:19:50.899018 12252 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-28 20:53:14.911736000 Z\n- &1 2019-07-29 15:55:57.010181000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-30 00:14:39.744074147 Z\nsign_in_count:\n- 241\n- 242\n 487 \N 189.186.46.7 a6f6249e-5e2c-47da-bed1-32b00af13cf8 2019-07-30 00:14:39.749796 12253 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xEzpN4Qu1wHycZAtY_xD\n- z6DNBBUxg-GYmHV4_-E1\n 488 \N 189.186.46.7 a6f6249e-5e2c-47da-bed1-32b00af13cf8 2019-07-30 00:14:39.763098 12255 4 User \N \N 4 User \N update ---\nunique_session_id:\n- cxZM1ZnhbjkqCBGPRsZh\n- KbsCn341EVetYnogzunq\n 825 \N 189.186.46.7 4dc67c4c-9e4c-4781-9dde-5a696c93c874 2019-07-30 00:34:09.786742 12256 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-07-27 00:20:37.274500000 Z\n- &1 2019-07-29 23:17:32.073184000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-30 01:55:42.149090370 Z\nsign_in_count:\n- 69\n- 70\n 140 \N 189.186.46.7 6dc7f04a-9816-4af7-bf66-ef99d9dc402e 2019-07-30 01:55:42.154767 12257 9 User \N \N 9 User \N update ---\nunique_session_id:\n- dWT-iN-ALv2UEAmTxHVP\n- hLNkBa19xGoZhKd2383o\n 141 \N 189.186.46.7 6dc7f04a-9816-4af7-bf66-ef99d9dc402e 2019-07-30 01:55:42.167023 12258 332 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 334\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.15E2\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.634E3\nphysical_cash: !ruby/object:BigDecimal 18:0.634E3\nobservations: FALTANTE $15 REPONER ROCIO\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.46.7 7e2d301d-5977-4dbe-b85f-295e9212dbbe 2019-07-30 01:59:23.61718 12259 334 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.46.7 7e2d301d-5977-4dbe-b85f-295e9212dbbe 2019-07-30 01:59:23.632355 12260 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-28 01:47:19.901167000 Z\n- &1 2019-07-28 16:04:53.802020000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-30 15:58:53.780313529 Z\nsign_in_count:\n- 545\n- 546\n 1092 \N 189.186.46.7 4b5b547f-3881-4782-8c8d-71936c62e2cc 2019-07-30 15:58:53.811172 12261 3 User \N \N 3 User \N update ---\nunique_session_id:\n- iJNzwQCymUCc9jZBzL4U\n- yo7pBJ9D4mk7DYAr35DF\n 1093 \N 189.186.46.7 4b5b547f-3881-4782-8c8d-71936c62e2cc 2019-07-30 15:58:53.835813 12262 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-29 15:55:57.010181000 Z\n- &1 2019-07-30 00:14:39.744074000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-30 16:25:22.777307319 Z\nsign_in_count:\n- 242\n- 243\n 489 \N 189.186.46.7 6a5bbabc-0401-42c5-95f6-6b7f3428b860 2019-07-30 16:25:22.784912 12263 2 User \N \N 2 User \N update ---\nunique_session_id:\n- z6DNBBUxg-GYmHV4_-E1\n- sV-19hr843R63dUwdvrc\n 490 \N 189.186.46.7 6a5bbabc-0401-42c5-95f6-6b7f3428b860 2019-07-30 16:25:22.803761 12264 336 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.619E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 619.0 189.186.46.7 4e6390f0-d02c-4efb-8af4-563e3578e058 2019-07-30 16:39:53.421247 12265 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-29 23:18:48.955258000 Z\n- &1 2019-07-30 00:34:09.755682000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-30 17:30:23.510702794 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094753\n mask_addr: 4294967295\nsign_in_count:\n- 412\n- 413\n 826 \N 189.186.43.225 e33adf42-04a9-4074-a88b-01648b2c6680 2019-07-30 17:30:23.518631 12266 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KbsCn341EVetYnogzunq\n- aYVRpBkqyyAM7MQt1YC1\n 827 \N 189.186.43.225 e33adf42-04a9-4074-a88b-01648b2c6680 2019-07-30 17:30:23.536603 12267 915 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 335\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-07-30\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-387\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 0f94e283-8eeb-45cd-991c-f2b9b5b76006 2019-07-30 18:03:02.334221 12268 758 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.46.7 0f94e283-8eeb-45cd-991c-f2b9b5b76006 2019-07-30 18:03:02.380463 12269 915 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 886c78f9-95b5-4449-ae6e-574f7999ed11 2019-07-30 18:03:06.819073 12270 1245 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 335\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 915\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-387\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-387 189.186.46.7 886c78f9-95b5-4449-ae6e-574f7999ed11 2019-07-30 18:03:06.840829 12271 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-30 00:34:09.755682000 Z\n- &1 2019-07-30 17:30:23.510702000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-30 19:00:40.689560674 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094753\n mask_addr: 4294967295\nsign_in_count:\n- 413\n- 414\n 828 \N 189.186.43.225 168972e6-768f-49ad-9246-e36338c75977 2019-07-30 19:00:40.700702 12272 4 User \N \N 4 User \N update ---\nunique_session_id:\n- aYVRpBkqyyAM7MQt1YC1\n- vQyWo1GX4WZtzfTcyCnE\n 829 \N 189.186.43.225 168972e6-768f-49ad-9246-e36338c75977 2019-07-30 19:00:40.722882 12273 141 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 335\nquantity: !ruby/object:BigDecimal 18:0.2E3\nstatus: 1\nobservations: yaretzi\nexpense_date: 2019-07-30\nexpense_code: PV2-E-26\n 1 Egreso por 200.0 registrado 189.186.46.7 04544326-29ee-45a9-8ea7-bcdd90823019 2019-07-30 19:49:03.198157 12274 1246 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 335\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 141\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.46.7 04544326-29ee-45a9-8ea7-bcdd90823019 2019-07-30 19:49:03.217669 12275 916 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 336\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-07-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-527\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 463292cf-1973-4442-9218-42f0a65e8262 2019-07-30 20:31:36.855504 12276 699 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.46.7 463292cf-1973-4442-9218-42f0a65e8262 2019-07-30 20:31:36.882162 12277 916 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 e6aca563-c00e-4792-9d79-5d9047c9f19f 2019-07-30 20:32:49.091349 12278 1247 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 336\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 916\ncardnumber: 8346\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-527\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-527 189.186.46.7 e6aca563-c00e-4792-9d79-5d9047c9f19f 2019-07-30 20:32:49.11144 12305 230 Product \N \N 4 User \N update ---\nsku:\n- VES-230\n- VES-PRM-640\ncategory_id:\n- 12\n- 18\n 3 El producto VES-230 fue modificado. 189.186.46.7 509d1775-4d3f-4998-b3bb-4b25f816f1ad 2019-07-31 00:12:09.571662 12279 917 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 336\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-07-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-528\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 63d36a49-d53b-4205-bbdf-b7065ebff2b0 2019-07-30 20:47:22.55455 12280 704 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.46.7 63d36a49-d53b-4205-bbdf-b7065ebff2b0 2019-07-30 20:47:22.591281 12281 917 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 c3724ac9-468a-4826-8778-2f27e118698a 2019-07-30 20:47:26.598881 12282 1248 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 336\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 917\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-528\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.649E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-528 189.186.46.7 c3724ac9-468a-4826-8778-2f27e118698a 2019-07-30 20:47:26.626833 12283 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-30 17:30:23.510702000 Z\n- &1 2019-07-30 19:00:40.689560000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-30 22:07:00.483000023 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094753\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 414\n- 415\n 830 \N 189.186.46.7 76c2f11e-225b-442e-aa74-791570c83090 2019-07-30 22:07:00.489597 12284 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vQyWo1GX4WZtzfTcyCnE\n- TqFvAEb2LK4YQh6dsnbT\n 831 \N 189.186.46.7 76c2f11e-225b-442e-aa74-791570c83090 2019-07-30 22:07:00.504523 12285 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-30 19:00:40.689560000 Z\n- &1 2019-07-30 22:07:00.483000000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-30 22:30:14.929725011 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094753\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094753\n mask_addr: 4294967295\nsign_in_count:\n- 415\n- 416\n 832 \N 189.186.43.225 b6ef1f65-bbdf-4474-a53f-e725b40bd915 2019-07-30 22:30:14.940508 12286 4 User \N \N 4 User \N update ---\nunique_session_id:\n- TqFvAEb2LK4YQh6dsnbT\n- dmZLRmZyYdg-ohJDoYzh\n 833 \N 189.186.43.225 b6ef1f65-bbdf-4474-a53f-e725b40bd915 2019-07-30 22:30:14.960193 12287 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-30 22:07:00.483000000 Z\n- &1 2019-07-30 22:30:14.929725000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-30 23:02:27.567437270 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094753\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094753\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 416\n- 417\n 834 \N 189.186.46.7 7cbaa1df-c38f-4b9e-92f7-78d0b763fa13 2019-07-30 23:02:27.574873 12288 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dmZLRmZyYdg-ohJDoYzh\n- zp34scjH-Q7JPFnPvYp5\n 835 \N 189.186.46.7 7cbaa1df-c38f-4b9e-92f7-78d0b763fa13 2019-07-30 23:02:27.590583 12289 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-28 16:04:53.802020000 Z\n- &1 2019-07-30 15:58:53.780313000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-30 23:16:41.888512593 Z\nsign_in_count:\n- 546\n- 547\n 1094 \N 189.186.46.7 7fd7c734-6579-4c4a-8cd1-0db1de1b8ffe 2019-07-30 23:16:41.897399 12290 3 User \N \N 3 User \N update ---\nunique_session_id:\n- yo7pBJ9D4mk7DYAr35DF\n- 48x66v7egTLAjUaTexe4\n 1095 \N 189.186.46.7 7fd7c734-6579-4c4a-8cd1-0db1de1b8ffe 2019-07-30 23:16:41.919079 12291 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-30 22:30:14.929725000 Z\n- &1 2019-07-30 23:02:27.567437000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-30 23:17:25.506484153 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094753\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 417\n- 418\n 836 \N 189.186.46.7 0072bcae-8d60-4173-8998-d229f7cf1555 2019-07-30 23:17:25.514375 12292 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zp34scjH-Q7JPFnPvYp5\n- BzkWc5iySCtCfku6uneH\n 837 \N 189.186.46.7 0072bcae-8d60-4173-8998-d229f7cf1555 2019-07-30 23:17:25.52829 12293 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-30 23:02:27.567437000 Z\n- &1 2019-07-30 23:17:25.506484000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-30 23:18:44.933608113 Z\nsign_in_count:\n- 418\n- 419\n 838 \N 189.186.46.7 37bb158e-c267-4e19-8d40-ad0cfb221c9d 2019-07-30 23:18:44.939216 12294 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BzkWc5iySCtCfku6uneH\n- vixxNoTDPFh_dVxwUmJy\n 839 \N 189.186.46.7 37bb158e-c267-4e19-8d40-ad0cfb221c9d 2019-07-30 23:18:44.954036 12295 3 Promotion \N \N 4 User \N create ---\nstart_date: 2019-07-30\nend_date: 2019-09-30\npercent: !ruby/object:BigDecimal 18:0.5E2\nproduct_id: 232\ncategory_id: \nuser_id: \nstatus: 1\nsubcategory_id: \n 1 \N 189.186.46.7 3cd19f0a-afa5-4e62-9dc1-f60c059c4bc5 2019-07-31 00:05:46.202644 12296 18 Category \N \N 4 User \N create ---\ncategory: PROMOCION\ndescription: DESCUENTO\nstatus: 1\nparent_id: 12\n 1 La línea de producto PROMOCION fue creada. 189.186.46.7 be904157-db04-4c14-9833-f3a0ea631ae5 2019-07-31 00:08:21.19474 12297 222 Product \N \N 4 User \N update ---\nsku:\n- VES-222\n- VES-PRM-640\ncategory_id:\n- 12\n- 18\n 3 El producto VES-222 fue modificado. 189.186.46.7 50771b8d-53b7-4ec4-9968-bc86c158f4b7 2019-07-31 00:09:09.546846 12298 212 Product \N \N 4 User \N update ---\nsku:\n- VES-212\n- VES-PRM-640\ncategory_id:\n- 12\n- 18\n 3 El producto VES-212 fue modificado. 189.186.46.7 e9b17345-b419-43b2-acad-c48005634d19 2019-07-31 00:09:27.817276 12299 232 Product \N \N 4 User \N update ---\nsku:\n- VES-232\n- VES-PRM-640\ncategory_id:\n- 12\n- 18\n 3 El producto VES-232 fue modificado. 189.186.46.7 066dc2dd-077f-426a-904d-572db4c7db8a 2019-07-31 00:09:59.877017 12300 233 Product \N \N 4 User \N update ---\nsku:\n- VES-233\n- VES-PRM-640\ncategory_id:\n- 12\n- 18\n 3 El producto VES-233 fue modificado. 189.186.46.7 6edfad24-6de8-4e3a-bf17-faacd86f3139 2019-07-31 00:10:22.869471 12301 214 Product \N \N 4 User \N update ---\nsku:\n- VES-214\n- VES-PRM-640\ncategory_id:\n- 12\n- 18\n 3 El producto VES-214 fue modificado. 189.186.46.7 5daa498a-cb07-42c7-9285-6352e1907b0f 2019-07-31 00:11:04.591306 12302 229 Product \N \N 4 User \N update ---\nsku:\n- VES-229\n- VES-PRM-640\ncategory_id:\n- 12\n- 18\n 3 El producto VES-229 fue modificado. 189.186.46.7 b107f459-4bf2-49cf-aa51-38c5547b8d91 2019-07-31 00:11:19.837687 12303 217 Product \N \N 4 User \N update ---\nsku:\n- VES-217\n- VES-PRM-640\ncategory_id:\n- 12\n- 18\n 3 El producto VES-217 fue modificado. 189.186.46.7 fdd83ef9-707b-4aa7-8dbc-634dc92c18c3 2019-07-31 00:11:36.896801 12304 214 Product \N \N 4 User \N update --- {}\n 4 El producto VES-PRM-640 fue modificado. 189.186.46.7 43f71da7-0868-452f-9ea2-8a3f5170b521 2019-07-31 00:11:54.150375 47518 3600 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.20.144 ec94e36a-0f08-45fe-b4d2-a2288e6d2336 2020-12-04 21:14:39.746873 12306 226 Product \N \N 4 User \N update ---\nsku:\n- VES-226\n- VES-PRM-640\ncategory_id:\n- 12\n- 18\n 3 El producto VES-226 fue modificado. 189.186.46.7 df26d9c8-dece-4922-9ff1-dcef682b4877 2019-07-31 00:12:25.699662 12307 224 Product \N \N 4 User \N update ---\nsku:\n- VES-224\n- VES-PRM-640\ncategory_id:\n- 12\n- 18\n 3 El producto VES-224 fue modificado. 189.186.46.7 d0e5fa22-b860-40a9-8011-bad9353337e1 2019-07-31 00:12:51.314206 12308 210 Product \N \N 4 User \N update ---\nsku:\n- VES-210\n- VES-PRM-640\ncategory_id:\n- 12\n- 18\n 3 El producto VES-210 fue modificado. 189.186.46.7 1f6b655f-90ee-48a0-8c77-e5ccd6dc693b 2019-07-31 00:13:18.865669 12309 235 Product \N \N 4 User \N update ---\nsku:\n- VES-235\n- VES-PRM-640\ncategory_id:\n- 12\n- 18\n 3 El producto VES-235 fue modificado. 189.186.46.7 95a82095-3f50-48d8-984f-9b48b0df1ccf 2019-07-31 00:13:33.786203 12310 225 Product \N \N 4 User \N update ---\nsku:\n- VES-225\n- VES-PRM-640\ncategory_id:\n- 12\n- 18\n 3 El producto VES-225 fue modificado. 189.186.46.7 2de57077-a631-4220-b549-547b1550575a 2019-07-31 00:14:18.438103 12311 215 Product \N \N 4 User \N update ---\nsku:\n- VES-215\n- VES-PRM-640\ncategory_id:\n- 12\n- 18\n 3 El producto VES-215 fue modificado. 189.186.46.7 d786156b-ee1e-48d4-9411-bb34fef5f439 2019-07-31 00:14:36.87734 12312 216 Product \N \N 4 User \N update ---\nsku:\n- VES-216\n- VES-PRM-640\ncategory_id:\n- 12\n- 18\n 3 El producto VES-216 fue modificado. 189.186.46.7 f167ed92-7a72-4609-9d43-22f8cc671c73 2019-07-31 00:15:02.51359 12313 223 Product \N \N 4 User \N update ---\nsku:\n- VES-223\n- VES-PRM-640\ncategory_id:\n- 12\n- 18\n 3 El producto VES-223 fue modificado. 189.186.46.7 a80ad6cd-f105-4e2f-992d-7f8dda07174a 2019-07-31 00:15:19.176909 12314 231 Product \N \N 4 User \N update ---\nsku:\n- VES-231\n- VES-PRM-640\ncategory_id:\n- 12\n- 18\n 3 El producto VES-231 fue modificado. 189.186.46.7 5a471900-e4a9-41cd-9348-5feb6564fca5 2019-07-31 00:16:00.368862 12315 4 Promotion \N \N 4 User \N create ---\nstart_date: 2019-07-30\nend_date: 2019-08-31\npercent: !ruby/object:BigDecimal 18:0.5E2\nproduct_id: \ncategory_id: 12\nuser_id: \nstatus: 1\nsubcategory_id: 18\n 1 \N 189.186.46.7 90c80818-9ec0-4590-8d11-7ef94545f224 2019-07-31 00:18:36.620927 12316 19 Category \N \N 4 User \N create ---\ncategory: PROMOCION\ndescription: PROMOCION ULTIMAS PIEZAS\nstatus: 1\nparent_id: 2\n 1 La línea de producto PROMOCION fue creada. 189.186.46.7 937762d9-b39b-4772-b284-6506913e71eb 2019-07-31 00:19:23.9337 12317 20 Category \N \N 4 User \N create ---\ncategory: PROMOCION\ndescription: ''\nstatus: 1\nparent_id: 7\n 1 La línea de producto PROMOCION fue creada. 189.186.46.7 692516fd-9e88-4b4f-b6d6-e916c3e7d448 2019-07-31 00:19:50.040398 12318 21 Category \N \N 4 User \N create ---\ncategory: PROMOCION\ndescription: ''\nstatus: 1\nparent_id: 8\n 1 La línea de producto PROMOCION fue creada. 189.186.46.7 f287dd2d-cd58-405b-a6ca-d8305dc6b675 2019-07-31 00:20:04.250425 12319 22 Category \N \N 4 User \N create ---\ncategory: PROMOCION\ndescription: ''\nstatus: 1\nparent_id: 11\n 1 La línea de producto PROMOCION fue creada. 189.186.46.7 f102a54f-9583-41fd-8024-e7247dde970e 2019-07-31 00:20:24.026376 12320 11 Product \N \N 4 User \N update ---\nsku:\n- SHO-11\n- SHO-PRM-640\ncategory_id:\n- 2\n- 19\n 3 El producto SHO-11 fue modificado. 189.186.46.7 f75fa9d4-0a17-4fc0-b8a6-9495da30e8cc 2019-07-31 00:21:11.96473 12321 197 Product \N \N 4 User \N update ---\nsku:\n- FAL-197\n- FAL-PRM-640\ncategory_id:\n- 11\n- 22\n 3 El producto FAL-197 fue modificado. 189.186.46.7 0d98ccb2-3a9d-4b1a-b770-6be683e2e461 2019-07-31 00:21:28.086996 12322 175 Product \N \N 4 User \N update ---\nsku:\n- PAN-175\n- PAN-PRM-640\ncategory_id:\n- 8\n- 21\n 3 El producto PAN-175 fue modificado. 189.186.46.7 886c5163-6f91-47e0-925a-1599c522a0f6 2019-07-31 00:21:51.980283 12323 173 Product \N \N 4 User \N update ---\nsku:\n- PAN-173\n- PAN-PRM-640\ncategory_id:\n- 8\n- 21\n 3 El producto PAN-173 fue modificado. 189.186.46.7 d2cd0d9a-c9eb-4db7-9c78-1af577d64255 2019-07-31 00:22:20.265201 12324 175 Product \N \N 4 User \N update --- {}\n 4 El producto PAN-PRM-640 fue modificado. 189.186.46.7 312a8cda-d634-4207-a43b-e239b0f86548 2019-07-31 00:22:58.730098 12325 5 Promotion \N \N 4 User \N create ---\nstart_date: 2019-07-30\nend_date: 2019-09-30\npercent: !ruby/object:BigDecimal 18:0.5E2\nproduct_id: \ncategory_id: 8\nuser_id: \nstatus: 1\nsubcategory_id: 21\n 1 \N 189.186.46.7 2905788d-25ee-423e-bc08-981c53a94bc2 2019-07-31 00:24:44.206915 12326 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-30 23:17:25.506484000 Z\n- &1 2019-07-30 23:18:44.933608000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-31 00:32:06.889855558 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094753\n mask_addr: 4294967295\nsign_in_count:\n- 419\n- 420\n 840 \N 189.186.43.225 f5e4a288-3a75-4807-94b9-3958f20feb85 2019-07-31 00:32:06.897167 12327 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vixxNoTDPFh_dVxwUmJy\n- V4u1ZAY5FBGEC8NV_xFe\n 841 \N 189.186.43.225 f5e4a288-3a75-4807-94b9-3958f20feb85 2019-07-31 00:32:06.912014 12328 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-30 23:18:44.933608000 Z\n- &1 2019-07-31 00:32:06.889855000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-31 00:32:48.715682046 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094753\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094753\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 420\n- 421\n 842 \N 189.186.46.7 5246fc40-5367-4f92-b23a-cdfe6bbb9f1e 2019-07-31 00:32:48.724334 12329 4 User \N \N 4 User \N update ---\nunique_session_id:\n- V4u1ZAY5FBGEC8NV_xFe\n- ZuY-xzqjfzz9GDXP7yfc\n 843 \N 189.186.46.7 5246fc40-5367-4f92-b23a-cdfe6bbb9f1e 2019-07-31 00:32:48.742436 12330 106 Product \N \N 4 User \N update ---\nsku:\n- BLU-106\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-106 fue modificado. 189.186.46.7 d87ed308-4b1c-403e-b40d-b728835cf987 2019-07-31 00:36:55.077625 12331 118 Product \N \N 4 User \N update ---\nsku:\n- BLU-118\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-118 fue modificado. 189.186.46.7 6f2f9490-0f05-4579-858a-9dec004dbc69 2019-07-31 00:37:17.551512 12332 536 Product \N \N 4 User \N update ---\nsku:\n- BLU-536\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-536 fue modificado. 189.186.46.7 b31a3967-b345-4061-a55c-003ae4db13e1 2019-07-31 00:37:36.344925 12333 89 Product \N \N 4 User \N update ---\nsku:\n- BLU-89\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-89 fue modificado. 189.186.46.7 efbb8fd6-9240-4bf4-9e66-8cca5aafe575 2019-07-31 00:37:58.617074 12334 115 Product \N \N 4 User \N update ---\nsku:\n- BLU-115\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-115 fue modificado. 189.186.46.7 cd16858b-3322-4e28-9015-f8e703491a91 2019-07-31 00:38:19.699733 12335 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-27 01:16:17.950133000 Z\n- &1 2019-07-29 20:05:38.116151000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-31 00:41:15.959254613 Z\nsign_in_count:\n- 118\n- 119\n 238 \N 189.186.46.7 a4214836-a7f9-4ff6-9528-e2a036e1b6e9 2019-07-31 00:41:15.964985 12336 10 User \N \N 10 User \N update ---\nunique_session_id:\n- nvs-1XicTrr_jyq1xG_g\n- zxU8GYrfa7j84yWoSDxi\n 239 \N 189.186.46.7 a4214836-a7f9-4ff6-9528-e2a036e1b6e9 2019-07-31 00:41:15.979521 20272 762 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '762'\n is_parent: false\n sku: VES-762\n name: VST-0055\n description: "SANJOY VESTIDO ROSA CON PERLAS ST-SJ-18251\\r\\n"\n price_base: '330.0'\n price_sale: '839.0'\n img_product: PHOTO-2019-10-15-21-54-33.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000762'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-11 05:23:59.181166'\n updated_at: &12 2019-11-05 20:30:15.942116579 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '762'\n sku: VES-762\n name: VST-0055\n description: "SANJOY VESTIDO ROSA CON PERLAS ST-SJ-18251\\r\\n"\n price_base: '330.00'\n price_sale: '839.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-11 05:23:59.181166'\n updated_at: '2019-10-11 05:23:59.218779'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000762'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '762'\n type: *3\n value: 762\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-762\n type: *7\n value: VES-762\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0055\n type: *8\n value: VST-0055\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "SANJOY VESTIDO ROSA CON PERLAS ST-SJ-18251\\r\\n"\n type: *6\n value: "SANJOY VESTIDO ROSA CON PERLAS ST-SJ-18251\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '330.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.33E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '839.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.839E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-10-15-21-54-33.jpg\n type: *2\n value: PHOTO-2019-10-15-21-54-33.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000762'\n type: *2\n value: '0000762'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-11 05:23:59.181166'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-10-15-21-54-33.jpg\n 3 El producto VES-762 fue modificado. 187.149.74.215 f8631366-9e25-423d-8f07-7c0aa8edeba6 2019-11-05 20:30:15.985308 12337 918 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 335\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-07-30\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-388\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 3ee25a2a-22af-4c3b-a19d-14f46487f5f1 2019-07-31 00:41:53.627919 12338 598 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.46.7 3ee25a2a-22af-4c3b-a19d-14f46487f5f1 2019-07-31 00:41:53.654478 12339 918 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 de8a4518-da91-4bb9-85b1-dd99d05b643e 2019-07-31 00:41:59.633692 12340 1249 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 335\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 918\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-388\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-388 189.186.46.7 de8a4518-da91-4bb9-85b1-dd99d05b643e 2019-07-31 00:41:59.655124 12341 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-31 00:32:06.889855000 Z\n- &1 2019-07-31 00:32:48.715682000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-31 00:45:12.994615686 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094753\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 421\n- 422\n 844 \N 189.186.46.7 7349a235-15f5-4ffa-aa78-6af7c1293bd5 2019-07-31 00:45:13.002315 12342 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZuY-xzqjfzz9GDXP7yfc\n- xW9zPGfk2WpdxouzXEZR\n 845 \N 189.186.46.7 7349a235-15f5-4ffa-aa78-6af7c1293bd5 2019-07-31 00:45:13.02833 12343 111 Product \N \N 4 User \N update ---\nsku:\n- BLU-111\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-111 fue modificado. 189.186.46.7 ecb629d0-2889-4df6-b10a-2b511993a102 2019-07-31 00:45:52.485915 12344 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-30 00:14:39.744074000 Z\n- &1 2019-07-30 16:25:22.777307000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-31 00:46:09.626286280 Z\nsign_in_count:\n- 243\n- 244\n 491 \N 189.186.46.7 a4f80a1c-0f7d-4d3b-b3a0-c1722a4d39ad 2019-07-31 00:46:09.633261 12345 2 User \N \N 2 User \N update ---\nunique_session_id:\n- sV-19hr843R63dUwdvrc\n- j6t17V1z5_515VPAzscq\n 492 \N 189.186.46.7 a4f80a1c-0f7d-4d3b-b3a0-c1722a4d39ad 2019-07-31 00:46:09.65128 12346 241 Product \N \N 4 User \N update ---\nsku:\n- VES-241\n- VES-PRM-640\ncategory_id:\n- 12\n- 18\n 3 El producto VES-241 fue modificado. 189.186.46.7 03e2a624-56b2-4bf9-9331-d34d955065d2 2019-07-31 00:49:11.233127 12347 196 Product \N \N 4 User \N update ---\nsku:\n- FAL-196\n- FAL-PRM-640\ncategory_id:\n- 11\n- 22\n 3 El producto FAL-196 fue modificado. 189.186.46.7 be1ab68c-de91-443e-9c29-e8dbe680f94e 2019-07-31 00:49:34.013675 12348 119 Product \N \N 4 User \N update ---\nsku:\n- BLU-119\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-119 fue modificado. 189.186.46.7 fc30745f-9ad5-4e14-a95c-14e90e0fab7d 2019-07-31 00:49:53.731632 12349 566 Product \N \N 4 User \N update ---\nsku:\n- BLU-566\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-566 fue modificado. 189.186.46.7 006b819b-1df9-4d2b-8304-9e15980fe2d2 2019-07-31 00:50:28.375681 12350 64 Product \N \N 4 User \N update ---\nsku:\n- BLU-64\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-64 fue modificado. 189.186.46.7 ba46c3ae-c1d2-42b3-be7d-9fa6846058e8 2019-07-31 00:50:42.887293 12351 66 Product \N \N 4 User \N update ---\nsku:\n- BLU-66\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-66 fue modificado. 189.186.46.7 8f064f14-aa54-4d72-8dd0-900a966ffdcd 2019-07-31 00:51:00.584551 12352 169 Product \N \N 4 User \N update ---\nsku:\n- PAN-169\n- PAN-PRM-640\ncategory_id:\n- 8\n- 21\n 3 El producto PAN-169 fue modificado. 189.186.46.7 a94e614c-3877-48fa-94ae-fe4c98a4bcc7 2019-07-31 00:52:13.259281 12353 168 Product \N \N 4 User \N update ---\nsku:\n- PAN-168\n- PAN-PRM-640\ncategory_id:\n- 8\n- 21\n 3 El producto PAN-168 fue modificado. 189.186.46.7 15369d49-e04d-4b7b-a3d8-af6f93ff2a36 2019-07-31 00:53:01.159429 12354 174 Product \N \N 4 User \N update ---\nsku:\n- PAN-174\n- PAN-PRM-640\ncategory_id:\n- 8\n- 21\n 3 El producto PAN-174 fue modificado. 189.186.46.7 f04046e4-14f9-4655-bb4f-4fc8c81f99ea 2019-07-31 00:53:37.428789 12355 70 Product \N \N 4 User \N update ---\nsku:\n- BLU-70\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-70 fue modificado. 189.186.46.7 a1fc4fd8-4b05-482a-acc5-c54d37bd9389 2019-07-31 00:55:52.463532 12356 98 Product \N \N 4 User \N update ---\nsku:\n- BLU-98\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-98 fue modificado. 189.186.46.7 031ab2e0-0d4a-48fb-9538-10bdaa8c9aca 2019-07-31 00:56:53.368438 12357 67 Product \N \N 4 User \N update ---\nsku:\n- BLU-67\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-67 fue modificado. 189.186.46.7 58c68ba5-8be3-47a5-b704-c18037993c63 2019-07-31 00:58:25.043002 12358 299 Product \N \N 4 User \N update ---\nsku:\n- BLU-299\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-299 fue modificado. 189.186.46.7 fc7880d1-b452-4f11-8d95-b7b9675cef97 2019-07-31 00:58:48.72262 12359 289 Product \N \N 4 User \N update ---\nsku:\n- BLU-289\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-289 fue modificado. 189.186.46.7 4729dffe-5114-46f9-9ff7-c3329d8b5159 2019-07-31 00:59:48.154285 12360 102 Product \N \N 4 User \N update ---\nsku:\n- BLU-102\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-102 fue modificado. 189.186.46.7 4226f2f7-7a55-48aa-9327-7ed3c978038a 2019-07-31 01:00:29.901127 12361 287 Product \N \N 4 User \N update ---\nsku:\n- BLU-287\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-287 fue modificado. 189.186.46.7 6516c66c-ba44-4daf-9563-747f70330b77 2019-07-31 01:00:49.301897 12362 86 Product \N \N 4 User \N update ---\nsku:\n- BLU-86\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-86 fue modificado. 189.186.46.7 d745771c-32d3-4e91-87e8-6095297a43e3 2019-07-31 01:01:34.109321 12363 99 Product \N \N 4 User \N update ---\nsku:\n- BLU-99\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-99 fue modificado. 189.186.46.7 da1f7a92-44d4-4ee1-9f12-04b75223a945 2019-07-31 01:01:50.608515 12364 75 Product \N \N 4 User \N update ---\nsku:\n- BLU-75\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-75 fue modificado. 189.186.46.7 8375838f-b599-43c4-8e09-1157b34680c8 2019-07-31 01:02:46.45695 12365 116 Product \N \N 4 User \N update ---\nsku:\n- BLU-116\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-116 fue modificado. 189.186.46.7 869e4968-0390-4d58-b392-93da2a56d20f 2019-07-31 01:03:22.147173 12366 121 Product \N \N 4 User \N update ---\nsku:\n- BLU-121\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-121 fue modificado. 189.186.46.7 d1d7631b-9df7-4799-ab3a-f05cedb0a3fe 2019-07-31 01:04:08.234686 12367 87 Product \N \N 4 User \N update ---\nsku:\n- BLU-87\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-87 fue modificado. 189.186.46.7 a21f8506-544b-47ac-ac4e-f33f369129c4 2019-07-31 01:04:28.61696 20273 755 Product \N \N 4 User \N update ---\ndescription:\n- APEACH VESTIDO NEGRO DE LENTEJUELAS ST-ND11375\n- APEACH VESTIDO NEGRO DE LENTEJUELAS DORADAS ST-ND11375\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '755'\n is_parent: false\n sku: VES-755\n name: VST-0054\n description: APEACH VESTIDO NEGRO DE LENTEJUELAS DORADAS ST-ND11375\n price_base: '420.0'\n price_sale: '1129.0'\n img_product: PHOTO-2019-10-15-21-52-22__1_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000755'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-10 21:27:12.071446'\n updated_at: &12 2019-11-05 20:31:27.486122327 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '755'\n sku: VES-755\n name: VST-0054\n description: APEACH VESTIDO NEGRO DE LENTEJUELAS ST-ND11375\n price_base: '420.00'\n price_sale: '1129.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-10 21:27:12.071446'\n updated_at: '2019-10-10 21:27:12.10349'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000755'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '755'\n type: *3\n value: 755\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-755\n type: *7\n value: VES-755\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0054\n type: *8\n value: VST-0054\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: APEACH VESTIDO NEGRO DE LENTEJUELAS DORADAS ST-ND11375\n type: *6\n value: APEACH VESTIDO NEGRO DE LENTEJUELAS DORADAS ST-ND11375\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '420.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.42E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1129.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1129E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-10-15-21-52-22__1_.jpg\n type: *2\n value: PHOTO-2019-10-15-21-52-22__1_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000755'\n type: *2\n value: '0000755'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-10 21:27:12.071446'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-10-15-21-52-22__1_.jpg\n 3 El producto VES-755 fue modificado. 187.149.74.215 f983a8fb-4b4d-4565-903b-1d7fd04a5c28 2019-11-05 20:31:27.526052 12368 110 Product \N \N 4 User \N update ---\nsku:\n- BLU-110\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-110 fue modificado. 189.186.46.7 a3c6f01f-b8dd-4fd5-9f7e-92d5d8a82641 2019-07-31 01:05:23.503898 12369 94 Product \N \N 4 User \N update ---\nsku:\n- BLU-94\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-94 fue modificado. 189.186.46.7 4f1c8330-42bb-48e5-ab30-71f694468c16 2019-07-31 01:05:51.685496 12370 126 Product \N \N 4 User \N update ---\nsku:\n- BLU-126\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-126 fue modificado. 189.186.46.7 fe987c33-f36c-4b8e-b4f9-87ea8249af62 2019-07-31 01:06:47.10952 12371 120 Product \N \N 4 User \N update ---\nsku:\n- BLU-120\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-120 fue modificado. 189.186.46.7 fd2f8510-0439-4c91-bdbe-caab1388294f 2019-07-31 01:07:03.840493 12372 128 Product \N \N 4 User \N update ---\nsku:\n- BLU-128\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-128 fue modificado. 189.186.46.7 5abc9572-fb7d-4d42-9499-3886cbb16b90 2019-07-31 01:07:55.03631 12373 112 Product \N \N 4 User \N update ---\nsku:\n- BLU-112\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-112 fue modificado. 189.186.46.7 14766f8b-b2ad-4380-8976-0bc73f77c27e 2019-07-31 01:08:19.745001 12374 117 Product \N \N 4 User \N update ---\nsku:\n- BLU-117\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-117 fue modificado. 189.186.46.7 1dc31cbc-80d1-428e-b497-06eabc6d3cb5 2019-07-31 01:09:21.358673 12375 65 Product \N \N 4 User \N update ---\nsku:\n- BLU-65\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-65 fue modificado. 189.186.46.7 98d82126-6739-452e-9368-bac725072705 2019-07-31 01:09:39.856442 12376 132 Product \N \N 4 User \N update ---\nsku:\n- BLU-132\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-132 fue modificado. 189.186.46.7 90827e7d-99a5-4515-a1bd-30398cd8a694 2019-07-31 01:11:57.932852 12377 100 Product \N \N 4 User \N update ---\nsku:\n- BLU-100\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-100 fue modificado. 189.186.46.7 99e88809-8b6f-4a91-b289-1c0d2f757fcc 2019-07-31 01:12:12.555304 12378 6 Promotion \N \N 4 User \N create ---\nstart_date: 2019-07-30\nend_date: 2019-09-30\npercent: !ruby/object:BigDecimal 18:0.1E1\nproduct_id: \ncategory_id: 7\nuser_id: \nstatus: 1\nsubcategory_id: 20\n 1 \N 189.186.46.7 72b9e425-2479-4b38-bfbf-d993eac043b8 2019-07-31 01:14:04.428945 12379 6 Promotion \N \N 4 User \N destroy ---\nstart_date: 2019-07-30\nend_date: 2019-09-30\npercent: !ruby/object:BigDecimal 18:0.1E1\nproduct_id: \ncategory_id: 7\nuser_id: \nstatus: 1\nsubcategory_id: 20\n 2 Descuento eliminado correctamente 189.186.46.7 bd5ec46e-4d88-4597-9cb3-f04825b36846 2019-07-31 01:14:10.808432 12380 7 Promotion \N \N 4 User \N create ---\nstart_date: 2019-07-30\nend_date: 2019-09-30\npercent: !ruby/object:BigDecimal 18:0.5E2\nproduct_id: \ncategory_id: 7\nuser_id: \nstatus: 1\nsubcategory_id: 20\n 1 \N 189.186.46.7 a349b03b-c84a-4557-abf0-b6bf81240ee0 2019-07-31 01:14:29.402521 12381 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-07-29 23:17:32.073184000 Z\n- &1 2019-07-30 01:55:42.149090000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-31 01:14:49.016302884 Z\nsign_in_count:\n- 70\n- 71\n 142 \N 189.186.46.7 aa7b2af3-1cea-4de3-9602-7a057cc00671 2019-07-31 01:14:49.022447 12382 9 User \N \N 9 User \N update ---\nunique_session_id:\n- hLNkBa19xGoZhKd2383o\n- 2qzuvJFYUsnny_usuFFe\n 143 \N 189.186.46.7 aa7b2af3-1cea-4de3-9602-7a057cc00671 2019-07-31 01:14:49.036297 12383 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-31 00:32:48.715682000 Z\n- &1 2019-07-31 00:45:12.994615000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-31 01:21:12.954515425 Z\nsign_in_count:\n- 422\n- 423\n 846 \N 189.186.46.7 c5171709-2d13-4f43-8908-a22bfeb12641 2019-07-31 01:21:12.960324 12384 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xW9zPGfk2WpdxouzXEZR\n- mCxA1ejCMSHWmuF6H6RJ\n 847 \N 189.186.46.7 c5171709-2d13-4f43-8908-a22bfeb12641 2019-07-31 01:21:12.974535 12385 96 Product \N \N 4 User \N update ---\nsku:\n- BLU-96\n- BLU-PRM-640\ncategory_id:\n- 7\n- 20\n 3 El producto BLU-96 fue modificado. 189.186.46.7 67cc20ca-2945-4621-80f6-2bdb5d25417d 2019-07-31 01:21:28.149708 12386 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-29 20:05:38.116151000 Z\n- &1 2019-07-31 00:41:15.959254000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-31 01:58:11.589581947 Z\nsign_in_count:\n- 119\n- 120\n 240 \N 189.186.46.7 e2a889ad-129b-427b-b699-caa6d6d7940f 2019-07-31 01:58:11.600957 12387 10 User \N \N 10 User \N update ---\nunique_session_id:\n- zxU8GYrfa7j84yWoSDxi\n- UoH1kAzgUrbLZ2KuwQNX\n 241 \N 189.186.46.7 e2a889ad-129b-427b-b699-caa6d6d7940f 2019-07-31 01:58:11.622421 12388 333 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 336\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1948E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1268E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1268E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.46.7 82008322-6e7a-4d41-b3c7-c69750f9a90d 2019-07-31 02:00:41.406769 12389 336 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.46.7 82008322-6e7a-4d41-b3c7-c69750f9a90d 2019-07-31 02:00:41.421877 12390 334 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 335\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.1268E4\namount_out: !ruby/object:BigDecimal 18:0.2E3\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.493E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1693E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.46.7 4a711295-73f4-4e57-8e81-984eed25f9fc 2019-07-31 02:00:51.530052 12391 335 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.46.7 4a711295-73f4-4e57-8e81-984eed25f9fc 2019-07-31 02:00:51.548648 12392 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-31 00:45:12.994615000 Z\n- &1 2019-07-31 01:21:12.954515000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-31 02:10:02.599741471 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094753\n mask_addr: 4294967295\nsign_in_count:\n- 423\n- 424\n 848 \N 189.186.43.225 0894234c-c2a8-4454-9855-c7df7b01d8cd 2019-07-31 02:10:02.608135 12393 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mCxA1ejCMSHWmuF6H6RJ\n- Kr4asja2Jzxs85sudnXB\n 849 \N 189.186.43.225 0894234c-c2a8-4454-9855-c7df7b01d8cd 2019-07-31 02:10:02.629317 12394 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-30 15:58:53.780313000 Z\n- &1 2019-07-30 23:16:41.888512000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-31 16:00:23.804614505 Z\nsign_in_count:\n- 547\n- 548\n 1096 \N 189.186.46.7 5a5b89d2-35ed-4d80-af2d-749a4653272e 2019-07-31 16:00:23.83618 12395 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 48x66v7egTLAjUaTexe4\n- _3k6GQPxVrc4WU-AcqH2\n 1097 \N 189.186.46.7 5a5b89d2-35ed-4d80-af2d-749a4653272e 2019-07-31 16:00:23.85809 12396 337 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.495E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 495.0 189.186.46.7 7357e732-8185-434f-973a-1af753d9ac82 2019-07-31 16:04:48.285228 20274 805 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '805'\n is_parent: false\n sku: VES-805\n name: VST-0060\n description: APEACH ST-YD31049 NEGRO CON HEBILLA DE BRILLOS\n price_base: '310.0'\n price_sale: '789.0'\n img_product: PHOTO-2019-10-15-21-52-22.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000805'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-14 19:32:52.018589'\n updated_at: &12 2019-11-05 20:34:37.192009494 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '805'\n sku: VES-805\n name: VST-0060\n description: APEACH ST-YD31049 NEGRO CON HEBILLA DE BRILLOS\n price_base: '310.00'\n price_sale: '789.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-14 19:32:52.018589'\n updated_at: '2019-10-14 19:32:52.056284'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000805'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '805'\n type: *3\n value: 805\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-805\n type: *7\n value: VES-805\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0060\n type: *8\n value: VST-0060\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: APEACH ST-YD31049 NEGRO CON HEBILLA DE BRILLOS\n type: *6\n value: APEACH ST-YD31049 NEGRO CON HEBILLA DE BRILLOS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '310.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.31E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '789.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.789E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-10-15-21-52-22.jpg\n type: *2\n value: PHOTO-2019-10-15-21-52-22.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000805'\n type: *2\n value: '0000805'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-14 19:32:52.018589'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-10-15-21-52-22.jpg\n 3 El producto VES-805 fue modificado. 187.149.74.215 81cce1df-1b11-40d1-965f-e7987516ac69 2019-11-05 20:34:37.22982 12397 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-30 16:25:22.777307000 Z\n- &1 2019-07-31 00:46:09.626286000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-31 16:27:44.759304322 Z\nsign_in_count:\n- 244\n- 245\n 493 \N 189.186.46.7 66eb36f5-9b87-4196-9833-8c5bf861fb40 2019-07-31 16:27:44.788346 12398 2 User \N \N 2 User \N update ---\nunique_session_id:\n- j6t17V1z5_515VPAzscq\n- YFinatzBHfSyd4bjHy5r\n 494 \N 189.186.46.7 66eb36f5-9b87-4196-9833-8c5bf861fb40 2019-07-31 16:27:44.809561 12399 338 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1268E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1268.0 189.186.46.7 4fa47e78-99c4-4cba-bc88-33aa36bd7fe7 2019-07-31 16:28:37.149149 12400 1250 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 338\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.838E3\nmove_type: '1'\nsale_id: 889\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.838E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-507 189.186.46.7 f052f679-d34b-4e37-9cb2-8a21b93e1bc9 2019-07-31 18:56:35.723745 12401 889 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.46.7 e78d531e-7285-4a22-b90a-3d0cce01729a 2019-07-31 18:56:37.429952 12402 1251 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 282\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 817\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAMANTHA\n 1 \N 189.186.46.7 3d226ec6-b9bb-4998-893e-04688798bf27 2019-07-31 19:46:15.311996 12403 817 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.46.7 3d226ec6-b9bb-4998-893e-04688798bf27 2019-07-31 19:46:15.339222 12404 836 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.46.7 3d226ec6-b9bb-4998-893e-04688798bf27 2019-07-31 19:46:15.36954 12405 1251 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 282\n- 338\n 2 movimiento de efectivo por venta con folio PV2-V-357 189.186.46.7 3d226ec6-b9bb-4998-893e-04688798bf27 2019-07-31 19:46:15.387698 12406 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-07-19 21:16:03.083120000 Z\n- &1 2019-07-23 18:35:19.595936000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-31 20:43:54.647825624 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 63\n- 64\n 128 \N 189.186.46.7 d6696d5c-bd9d-4c4e-b796-79c43f1bea54 2019-07-31 20:43:54.658929 12407 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 1MLHX6rvbqLn8puRFxmY\n- rpF6Axzy4chk5XUCdiwo\n 129 \N 189.186.46.7 d6696d5c-bd9d-4c4e-b796-79c43f1bea54 2019-07-31 20:43:54.675641 12408 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-30 23:16:41.888512000 Z\n- &1 2019-07-31 16:00:23.804614000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-07-31 23:21:20.192346003 Z\nsign_in_count:\n- 548\n- 549\n 1098 \N 189.186.46.7 8413c85e-7868-41b5-bc52-0e371e77e438 2019-07-31 23:21:20.198189 12409 3 User \N \N 3 User \N update ---\nunique_session_id:\n- _3k6GQPxVrc4WU-AcqH2\n- mscvrpBBXvDoykMMcWj-\n 1099 \N 189.186.46.7 8413c85e-7868-41b5-bc52-0e371e77e438 2019-07-31 23:21:20.21179 12410 919 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 337\namount: !ruby/object:BigDecimal 18:0.62845E3\ntax: !ruby/object:BigDecimal 18:0.10055E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2019-07-31\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-389\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 f99a9109-c090-43e3-83f9-510fd73a4995 2019-07-31 23:22:28.533849 12411 752 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.46.7 f99a9109-c090-43e3-83f9-510fd73a4995 2019-07-31 23:22:28.563974 12412 919 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 79117d50-b45b-47c3-aa12-a8c135e74058 2019-07-31 23:22:42.777461 12413 1252 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 337\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.729E3\nmove_type: '1'\nsale_id: 919\ncardnumber: 8715\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-389\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-389 189.186.46.7 79117d50-b45b-47c3-aa12-a8c135e74058 2019-07-31 23:22:42.807198 12414 142 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 338\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: comida\nexpense_date: 2019-07-31\nexpense_code: PV1-E-116\n 1 Egreso por 50.0 registrado 189.186.46.7 d33d76e0-e391-418c-bd92-4c0faaa11152 2019-08-01 00:12:24.093454 12415 1253 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 338\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 142\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.46.7 d33d76e0-e391-418c-bd92-4c0faaa11152 2019-08-01 00:12:24.127713 12416 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-31 01:21:12.954515000 Z\n- &1 2019-07-31 02:10:02.599741000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-01 00:56:27.553310150 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094753\n mask_addr: 4294967295\nsign_in_count:\n- 424\n- 425\n 850 \N 189.186.43.225 e7374f51-2cba-4a41-ba70-537049dd3074 2019-08-01 00:56:27.588309 12417 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Kr4asja2Jzxs85sudnXB\n- pBDBYvs7TcZgd6ZoMcp-\n 851 \N 189.186.43.225 e7374f51-2cba-4a41-ba70-537049dd3074 2019-08-01 00:56:27.614693 12418 920 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 338\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-07-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-529\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 5aa163d6-16f8-47a0-9cdc-00a4c79ba6ac 2019-08-01 01:22:13.076131 12419 488 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.46.7 5aa163d6-16f8-47a0-9cdc-00a4c79ba6ac 2019-08-01 01:22:13.132952 12420 920 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-529 cancelada. 189.186.46.7 f554977a-9623-4763-a4b7-0b11a53ef080 2019-08-01 01:23:32.21671 12421 488 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 189.186.46.7 f554977a-9623-4763-a4b7-0b11a53ef080 2019-08-01 01:23:32.25739 12422 921 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 338\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-07-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-530\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 85e27a22-ac69-49b3-98b3-7a454f01f120 2019-08-01 01:25:14.644127 12423 488 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 189.186.46.7 85e27a22-ac69-49b3-98b3-7a454f01f120 2019-08-01 01:25:14.70621 12424 921 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 aaadb50c-45b8-412f-a2c7-a2bbe9065e8b 2019-08-01 01:25:35.086031 12425 1254 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 338\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 921\ncardnumber: 4863\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-530\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-530 189.186.46.7 aaadb50c-45b8-412f-a2c7-a2bbe9065e8b 2019-08-01 01:25:35.117117 12426 922 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 337\namount: !ruby/object:BigDecimal 18:0.57672E3\ntax: !ruby/object:BigDecimal 18:0.9228E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-07-31\nsaletype: 1\nseller_id: 2\nsale_code: PV2-V-390\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 005f960d-b688-456d-8243-81c353a51f34 2019-08-01 01:35:47.214343 12427 678 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.46.7 005f960d-b688-456d-8243-81c353a51f34 2019-08-01 01:35:47.245799 12428 922 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 17ecb252-ac24-427a-bb49-65739b6d143e 2019-08-01 01:35:53.191486 12429 1255 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 337\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.669E3\nmove_type: '1'\nsale_id: 922\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-390\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-390 189.186.46.7 17ecb252-ac24-427a-bb49-65739b6d143e 2019-08-01 01:35:53.229223 12430 335 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 338\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2737E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1056E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2056E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.46.7 859debf6-7358-498b-98c4-71841df15d9f 2019-08-01 01:43:25.333378 12431 338 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.46.7 859debf6-7358-498b-98c4-71841df15d9f 2019-08-01 01:43:25.349967 12432 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-31 16:00:23.804614000 Z\n- &1 2019-07-31 23:21:20.192346000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-01 01:45:20.367346949 Z\nsign_in_count:\n- 549\n- 550\n 1100 \N 189.186.46.7 cdac72ea-07b9-4162-be94-6a93349b5272 2019-08-01 01:45:20.373447 12433 3 User \N \N 3 User \N update ---\nunique_session_id:\n- mscvrpBBXvDoykMMcWj-\n- Es3zKxWR37jycX8m59G8\n 1101 \N 189.186.46.7 cdac72ea-07b9-4162-be94-6a93349b5272 2019-08-01 01:45:20.394309 12434 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-31 00:46:09.626286000 Z\n- &1 2019-07-31 16:27:44.759304000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-01 01:45:41.550147980 Z\nsign_in_count:\n- 245\n- 246\n 495 \N 189.186.46.7 497ddfd1-ef75-4ad4-97c7-6dddbc7d1d66 2019-08-01 01:45:41.555998 12435 2 User \N \N 2 User \N update ---\nunique_session_id:\n- YFinatzBHfSyd4bjHy5r\n- iv77eDYzVQF-MexxQ5wJ\n 496 \N 189.186.46.7 497ddfd1-ef75-4ad4-97c7-6dddbc7d1d66 2019-08-01 01:45:41.570979 12436 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-07-31 23:21:20.192346000 Z\n- &1 2019-08-01 01:45:20.367346000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-01 01:56:49.226105241 Z\nsign_in_count:\n- 550\n- 551\n 1102 \N 189.186.46.7 2d76b19f-676e-4da4-b1b7-b03fd57ed3d1 2019-08-01 01:56:49.236892 12437 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Es3zKxWR37jycX8m59G8\n- sgtxus-USUP4tX2YPatg\n 1103 \N 189.186.46.7 2d76b19f-676e-4da4-b1b7-b03fd57ed3d1 2019-08-01 01:56:49.261176 12438 336 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 337\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1398E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.4E3\ncash_fund: !ruby/object:BigDecimal 18:0.764E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1164E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.46.7 37824efb-0af0-46a6-b197-9d0ab211259e 2019-08-01 01:59:33.113918 12439 337 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.46.7 37824efb-0af0-46a6-b197-9d0ab211259e 2019-08-01 01:59:33.154726 12440 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-07-31 02:10:02.599741000 Z\n- &1 2019-08-01 00:56:27.553310000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-01 03:44:35.814746977 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094753\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934268\n mask_addr: 4294967295\nsign_in_count:\n- 425\n- 426\n 852 \N 200.68.135.60 24128d3b-d65e-4213-9d45-3aa1abcfb277 2019-08-01 03:44:35.845985 12441 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pBDBYvs7TcZgd6ZoMcp-\n- oy9zRufNZxJLW_sgth-c\n 853 \N 200.68.135.60 24128d3b-d65e-4213-9d45-3aa1abcfb277 2019-08-01 03:44:35.869545 12442 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-01 01:45:20.367346000 Z\n- &1 2019-08-01 01:56:49.226105000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-01 15:58:24.374505110 Z\nsign_in_count:\n- 551\n- 552\n 1104 \N 189.186.46.7 2d60948a-ca1f-4e7d-8f10-e621f46bba4a 2019-08-01 15:58:24.407551 12443 3 User \N \N 3 User \N update ---\nunique_session_id:\n- sgtxus-USUP4tX2YPatg\n- ysmCneL4dRAaeFpjVy4w\n 1105 \N 189.186.46.7 2d60948a-ca1f-4e7d-8f10-e621f46bba4a 2019-08-01 15:58:24.430526 12444 339 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.764E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 764.0 189.186.46.7 dfd8fe25-0a57-4529-a121-dcc6aa05388b 2019-08-01 16:00:36.293927 12445 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-07-31 16:27:44.759304000 Z\n- &1 2019-08-01 01:45:41.550147000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-01 16:19:58.832599895 Z\nsign_in_count:\n- 246\n- 247\n 497 \N 189.186.46.7 e6e0de61-a72f-4ab3-86e1-d2824744b2bf 2019-08-01 16:19:58.865204 12446 2 User \N \N 2 User \N update ---\nunique_session_id:\n- iv77eDYzVQF-MexxQ5wJ\n- byx9eMS3rDhxQrzgVDSb\n 498 \N 189.186.46.7 e6e0de61-a72f-4ab3-86e1-d2824744b2bf 2019-08-01 16:19:58.88728 12447 340 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1056E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1056.0 189.186.46.7 f686c644-2dbe-4320-9d9e-186e726bed05 2019-08-01 16:20:59.219195 12448 923 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 339\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-08-01\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-391\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 30dc9410-787c-4176-9530-b395797149e7 2019-08-01 17:46:57.932233 12449 725 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.46.7 30dc9410-787c-4176-9530-b395797149e7 2019-08-01 17:46:57.964281 12450 923 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.46.7 f073a224-0510-4296-b12d-dd754f258dc4 2019-08-01 17:48:06.934727 12451 1256 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 339\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 923\ncardnumber: 5099\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-391\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-391 189.186.46.7 f073a224-0510-4296-b12d-dd754f258dc4 2019-08-01 17:48:06.958259 12452 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-01 01:45:41.550147000 Z\n- &1 2019-08-01 16:19:58.832599000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-01 21:05:05.412567425 Z\nsign_in_count:\n- 247\n- 248\n 499 \N 189.186.46.7 86130656-e357-499f-9dc4-09eb7114a41d 2019-08-01 21:05:05.418112 12453 2 User \N \N 2 User \N update ---\nunique_session_id:\n- byx9eMS3rDhxQrzgVDSb\n- qffQgjdU2HnkzpRAzoC9\n 500 \N 189.186.46.7 86130656-e357-499f-9dc4-09eb7114a41d 2019-08-01 21:05:05.430714 12454 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-01 16:19:58.832599000 Z\n- &1 2019-08-01 21:05:05.412567000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-01 21:05:31.555994987 Z\nsign_in_count:\n- 248\n- 249\n 501 \N 189.186.46.7 bcfd1beb-1d22-431b-a6c9-d2a238d3c30a 2019-08-01 21:05:31.563161 12455 2 User \N \N 2 User \N update ---\nunique_session_id:\n- qffQgjdU2HnkzpRAzoC9\n- 6zARsH5yV58E6WkWRprD\n 502 \N 189.186.46.7 bcfd1beb-1d22-431b-a6c9-d2a238d3c30a 2019-08-01 21:05:31.576735 12456 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-01 00:56:27.553310000 Z\n- &1 2019-08-01 03:44:35.814746000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-01 23:11:57.336274387 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094753\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934268\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934268\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\nsign_in_count:\n- 426\n- 427\n 854 \N 189.186.46.7 25f2b896-c66c-48a8-8c28-6542cc62bf9d 2019-08-01 23:11:57.344827 12457 4 User \N \N 4 User \N update ---\nunique_session_id:\n- oy9zRufNZxJLW_sgth-c\n- bp_UVzm5Y89S8sEgaB6i\n 855 \N 189.186.46.7 25f2b896-c66c-48a8-8c28-6542cc62bf9d 2019-08-01 23:11:57.361099 12458 1257 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 340\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 908\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-522 189.186.46.7 af0d148f-aced-4ffb-90ef-c7ef90ddb3d8 2019-08-01 23:26:02.338364 12459 908 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.46.7 557f3313-bb08-4ce9-9532-b2f4464cef75 2019-08-01 23:26:04.012133 12460 151 Customer \N \N 2 User \N create ---\nnick_name: CITLALY VALLE\nphone: "(667) 190-1308"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CITLALY VALLE fue registrado. 189.186.46.7 c64b86ba-ad30-42b4-92af-dc6e02051037 2019-08-01 23:52:21.672871 12461 924 Sale \N \N 2 User \N create ---\ncustomer_id: 151\nuser_id: 2\nopen_cash_register_id: 340\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-08-01\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-531\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 f4a461a9-9e84-4b5b-b7d7-44550cca7f94 2019-08-01 23:52:36.25776 12462 266 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.46.7 f4a461a9-9e84-4b5b-b7d7-44550cca7f94 2019-08-01 23:52:36.286486 12463 924 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-531 cancelada. 189.186.46.7 ad7c03f4-13d0-45ee-a603-787411d88f31 2019-08-01 23:52:45.996929 12464 266 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 189.186.46.7 ad7c03f4-13d0-45ee-a603-787411d88f31 2019-08-01 23:52:46.029165 12465 925 Sale \N \N 2 User \N create ---\ncustomer_id: 151\nuser_id: 2\nopen_cash_register_id: 340\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-08-01\nsaletype: 2\nseller_id: 8\nsale_code: PV1-V-532\nexpiration_date: 2019-09-05\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.46.7 f05d992a-f55a-4683-b389-2e6fdc8352fb 2019-08-01 23:53:09.3954 12466 266 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 189.186.46.7 f05d992a-f55a-4683-b389-2e6fdc8352fb 2019-08-01 23:53:09.424252 12467 1258 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 340\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 925\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-532\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-532 189.186.46.7 8df314fe-e11e-4218-a0bf-d766f35dd126 2019-08-01 23:53:16.251611 12468 925 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.46.7 ce61cf75-ccfd-4652-b577-6b146f6cdd48 2019-08-01 23:53:17.589634 12469 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-01 01:56:49.226105000 Z\n- &1 2019-08-01 15:58:24.374505000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-01 23:54:46.934345751 Z\nsign_in_count:\n- 552\n- 553\n 1106 \N 189.186.46.7 8eae49eb-55e1-4ecd-8772-0651f5ea3091 2019-08-01 23:54:46.941183 12470 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ysmCneL4dRAaeFpjVy4w\n- zcwx-bhSH6vyc4reZC_a\n 1107 \N 189.186.46.7 8eae49eb-55e1-4ecd-8772-0651f5ea3091 2019-08-01 23:54:46.961945 12471 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-01 21:05:05.412567000 Z\n- &1 2019-08-01 21:05:31.555994000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-02 00:15:14.168245006 Z\nsign_in_count:\n- 249\n- 250\n 503 \N 189.186.46.7 5f63c098-1c49-4d6e-a452-890521ca8084 2019-08-02 00:15:14.174582 12472 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 6zARsH5yV58E6WkWRprD\n- a6aXjMRbssYtFLq9zzse\n 504 \N 189.186.46.7 5f63c098-1c49-4d6e-a452-890521ca8084 2019-08-02 00:15:14.187969 12473 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-01 15:58:24.374505000 Z\n- &1 2019-08-01 23:54:46.934345000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-02 01:05:55.694095569 Z\nsign_in_count:\n- 553\n- 554\n 1108 \N 189.186.46.7 df7d4f7e-c598-4deb-a1d6-914eca875585 2019-08-02 01:05:55.702366 12474 3 User \N \N 3 User \N update ---\nunique_session_id:\n- zcwx-bhSH6vyc4reZC_a\n- FaD8oHsA7hHsdnr8MU4N\n 1109 \N 189.186.46.7 df7d4f7e-c598-4deb-a1d6-914eca875585 2019-08-02 01:05:55.721747 12475 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-01 21:05:31.555994000 Z\n- &1 2019-08-02 00:15:14.168245000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-02 01:06:56.210497656 Z\nsign_in_count:\n- 250\n- 251\n 505 \N 189.186.46.7 7f963a7c-246b-42c3-8a1a-581b4e0e8cc6 2019-08-02 01:06:56.21793 12476 2 User \N \N 2 User \N update ---\nunique_session_id:\n- a6aXjMRbssYtFLq9zzse\n- TfE8Q5JFzmQpbkPse9fz\n 506 \N 189.186.46.7 7f963a7c-246b-42c3-8a1a-581b4e0e8cc6 2019-08-02 01:06:56.233004 12477 707 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.46.7 4e59dd0e-fb21-487a-8aaf-52a815d68e60 2019-08-02 01:56:41.470406 12478 89 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-08-01\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.46.7 9be5a1ce-54aa-48c2-a4d8-d982d4504c54 2019-08-02 01:56:47.127748 12479 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-01 23:54:46.934345000 Z\n- &1 2019-08-02 01:05:55.694095000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-02 02:00:08.454132842 Z\nsign_in_count:\n- 554\n- 555\n 1110 \N 189.186.46.7 af055304-1c99-471e-8ffb-0fe6b1c7f7c0 2019-08-02 02:00:08.459717 12480 3 User \N \N 3 User \N update ---\nunique_session_id:\n- FaD8oHsA7hHsdnr8MU4N\n- L5jiEpyXKmXmAcKx-1vQ\n 1111 \N 189.186.46.7 af055304-1c99-471e-8ffb-0fe6b1c7f7c0 2019-08-02 02:00:08.474291 12481 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-31 00:41:15.959254000 Z\n- &1 2019-07-31 01:58:11.589581000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-02 02:03:39.069769603 Z\nsign_in_count:\n- 120\n- 121\n 242 \N 189.186.46.7 7c79a1e6-d256-4d87-9ab5-4b656fa584be 2019-08-02 02:03:39.075904 12482 10 User \N \N 10 User \N update ---\nunique_session_id:\n- UoH1kAzgUrbLZ2KuwQNX\n- ykzbumcY-dPkskSgUEdz\n 243 \N 189.186.46.7 7c79a1e6-d256-4d87-9ab5-4b656fa584be 2019-08-02 02:03:39.090297 12483 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-27 01:22:10.803886000 Z\n- &1 2019-07-28 20:54:10.144327000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-02 02:03:46.519020257 Z\nsign_in_count:\n- 263\n- 264\n 528 \N 189.186.46.7 835ba77d-b749-4104-a82b-be4ddf14e449 2019-08-02 02:03:46.530785 12484 12 User \N \N 12 User \N update ---\nunique_session_id:\n- MMrqgxZKxvVG5Gnxise_\n- dxizuzLick5SZsa_pwC1\n 529 \N 189.186.46.7 835ba77d-b749-4104-a82b-be4ddf14e449 2019-08-02 02:03:46.563631 12485 143 Expense \N \N 12 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 340\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: ''\nexpense_date: 2019-08-01\nexpense_code: PV1-E-117\n 1 Egreso por 50.0 registrado 189.186.46.7 ece9716c-28cf-469e-857e-2a798fc99a1d 2019-08-02 02:03:58.066991 12486 1259 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 340\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 143\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.46.7 ece9716c-28cf-469e-857e-2a798fc99a1d 2019-08-02 02:03:58.085998 12487 337 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 340\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.1299E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.805E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2305E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.46.7 5765bef3-87df-404f-96bb-1cc8c0baa16b 2019-08-02 02:04:21.597623 12488 340 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.46.7 5765bef3-87df-404f-96bb-1cc8c0baa16b 2019-08-02 02:04:21.660029 12489 338 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 339\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.999E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.764E3\nphysical_cash: !ruby/object:BigDecimal 18:0.764E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.46.7 1da52461-29e4-48a4-b81a-b5f720ad7223 2019-08-02 02:04:24.002463 12490 339 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.46.7 1da52461-29e4-48a4-b81a-b5f720ad7223 2019-08-02 02:04:24.05891 12491 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-02 00:15:14.168245000 Z\n- &1 2019-08-02 01:06:56.210497000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-02 15:59:18.247177813 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183091942\n mask_addr: 4294967295\nsign_in_count:\n- 251\n- 252\n 507 \N 189.186.32.230 e857ba8a-b83d-4164-9d1c-9fda44d1fc22 2019-08-02 15:59:18.276132 12492 2 User \N \N 2 User \N update ---\nunique_session_id:\n- TfE8Q5JFzmQpbkPse9fz\n- A_JNEMYmeSg_6AVRxqqV\n 508 \N 189.186.32.230 e857ba8a-b83d-4164-9d1c-9fda44d1fc22 2019-08-02 15:59:18.297502 12493 341 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.805E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 805.0 189.186.32.230 66ece1b2-bfac-400c-928e-925f4eb518dc 2019-08-02 16:02:16.033589 12494 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-02 01:05:55.694095000 Z\n- &1 2019-08-02 02:00:08.454132000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-02 16:10:46.453792665 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183091942\n mask_addr: 4294967295\nsign_in_count:\n- 555\n- 556\n 1112 \N 189.186.32.230 b296238c-ea84-48c4-85ed-491b728d2c55 2019-08-02 16:10:46.463703 12495 3 User \N \N 3 User \N update ---\nunique_session_id:\n- L5jiEpyXKmXmAcKx-1vQ\n- SPcJRdqGy2xueyPpFcND\n 1113 \N 189.186.32.230 b296238c-ea84-48c4-85ed-491b728d2c55 2019-08-02 16:10:46.483688 12496 342 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.764E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 764.0 189.186.32.230 2770d006-f6a6-484c-b4d8-54329aaee66b 2019-08-02 16:11:08.917063 48071 3656 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 053ea428-ac71-4a2d-b923-79a846e5dfcb 2020-12-11 21:32:11.480769 12497 1260 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 341\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 875\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-498 189.186.32.230 991751a5-2449-4662-b335-4e5574a7f423 2019-08-02 18:08:04.728429 12498 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-01 03:44:35.814746000 Z\n- &1 2019-08-01 23:11:57.336274000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-02 18:17:58.341214625 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934268\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094213\n mask_addr: 4294967295\nsign_in_count:\n- 427\n- 428\n 856 \N 189.186.41.197 0255ad0b-bdd4-4784-bd86-c3dd86e7a81e 2019-08-02 18:17:58.349878 12499 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bp_UVzm5Y89S8sEgaB6i\n- "-mD9yYddEbsUk4Z8wd6g"\n 857 \N 189.186.41.197 0255ad0b-bdd4-4784-bd86-c3dd86e7a81e 2019-08-02 18:17:58.367958 12500 1261 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 280\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 808\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAMANTHA\n 1 \N 189.186.32.230 7e47127e-a3ec-478e-9704-883c90e34d67 2019-08-02 18:31:07.73307 12501 808 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.32.230 7e47127e-a3ec-478e-9704-883c90e34d67 2019-08-02 18:31:07.756459 12502 1261 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 280\n- 341\n 2 movimiento de efectivo por venta con folio PV1-V-457 189.186.32.230 7e47127e-a3ec-478e-9704-883c90e34d67 2019-08-02 18:31:07.770979 12503 89 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-02\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.32.230 8a0c3ce1-b908-4c43-9952-7b681838d75b 2019-08-02 21:27:56.459973 12504 717 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 2 \N 189.186.32.230 8a0c3ce1-b908-4c43-9952-7b681838d75b 2019-08-02 21:27:56.486565 12505 144 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 341\nquantity: !ruby/object:BigDecimal 18:0.628E3\nstatus: 1\nobservations: sueldo Rocío\nexpense_date: 2019-08-02\nexpense_code: PV1-E-118\n 1 Egreso por 628.0 registrado 189.186.32.230 e7adb150-c6af-4089-a026-80328969c00e 2019-08-02 22:02:15.092435 12506 1262 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 341\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.628E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 144\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.32.230 e7adb150-c6af-4089-a026-80328969c00e 2019-08-02 22:02:15.116189 12507 1263 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 182\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.32.230 f0f360ec-eb4f-4212-8a78-387d9d5b857a 2019-08-02 22:05:41.028276 12508 1263 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 49\n- 341\n 2 movimiento de efectivo por venta con folio PV1-V-104 189.186.32.230 f0f360ec-eb4f-4212-8a78-387d9d5b857a 2019-08-02 22:05:41.062883 12509 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-01 23:11:57.336274000 Z\n- &1 2019-08-02 18:17:58.341214000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-02 22:09:54.037133567 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094213\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094213\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183091942\n mask_addr: 4294967295\nsign_in_count:\n- 428\n- 429\n 858 \N 189.186.32.230 7246ce8a-c931-4158-abec-0c1096c53640 2019-08-02 22:09:54.044267 12510 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-mD9yYddEbsUk4Z8wd6g"\n- _V7AwEyWyCoNDTyF5yny\n 859 \N 189.186.32.230 7246ce8a-c931-4158-abec-0c1096c53640 2019-08-02 22:09:54.060569 12511 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-07-31 01:58:11.589581000 Z\n- &1 2019-08-02 02:03:39.069769000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-02 22:23:34.377969636 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183091942\n mask_addr: 4294967295\nsign_in_count:\n- 121\n- 122\n 244 \N 189.186.32.230 1e4438e1-dca4-4059-9ad3-d4391c61fbc4 2019-08-02 22:23:34.385403 12512 10 User \N \N 10 User \N update ---\nunique_session_id:\n- ykzbumcY-dPkskSgUEdz\n- BmqaAYx6yxiFh_X7GyhD\n 245 \N 189.186.32.230 1e4438e1-dca4-4059-9ad3-d4391c61fbc4 2019-08-02 22:23:34.400033 12513 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-02 02:00:08.454132000 Z\n- &1 2019-08-02 16:10:46.453792000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-02 22:24:05.571129903 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183091942\n mask_addr: 4294967295\nsign_in_count:\n- 556\n- 557\n 1114 \N 189.186.32.230 59dd19c9-4e99-4b1f-8da4-7d3a5e4510ca 2019-08-02 22:24:05.57746 12514 3 User \N \N 3 User \N update ---\nunique_session_id:\n- SPcJRdqGy2xueyPpFcND\n- 8uSyuhykGyKdEy_8fb7s\n 1115 \N 189.186.32.230 59dd19c9-4e99-4b1f-8da4-7d3a5e4510ca 2019-08-02 22:24:05.591431 12515 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-02 18:17:58.341214000 Z\n- &1 2019-08-02 22:09:54.037133000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-02 23:39:02.794424893 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094213\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183091942\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183091942\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094213\n mask_addr: 4294967295\nsign_in_count:\n- 429\n- 430\n 860 \N 189.186.41.197 81ccfcdb-4159-43fb-b28b-64a80317d2e4 2019-08-02 23:39:02.801552 12516 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _V7AwEyWyCoNDTyF5yny\n- rs97gdA8677oyd5uyWWW\n 861 \N 189.186.41.197 81ccfcdb-4159-43fb-b28b-64a80317d2e4 2019-08-02 23:39:02.815602 12517 926 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 341\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-08-02\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-533\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.32.230 ea406f0a-221a-4925-bf0f-a1c9cce37bec 2019-08-03 00:25:19.525201 12518 744 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.32.230 ea406f0a-221a-4925-bf0f-a1c9cce37bec 2019-08-03 00:25:19.562247 12519 926 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.32.230 96a536c4-3763-462c-9b21-1d981883d1b2 2019-08-03 00:25:25.180629 12520 1264 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 341\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 926\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-533\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-533 189.186.32.230 96a536c4-3763-462c-9b21-1d981883d1b2 2019-08-03 00:25:25.206756 12521 654 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.32.230 3a144e33-edc6-4985-a52d-01b237ecce62 2019-08-03 00:35:48.54225 12522 90 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-08-02\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.32.230 dec5c11c-18b4-4c1b-a696-f8f028765179 2019-08-03 00:35:54.782671 12523 927 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 341\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-08-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-534\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.32.230 9531784c-4f54-45e8-be6d-59a3ce23ec25 2019-08-03 00:40:55.61234 12524 748 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.32.230 9531784c-4f54-45e8-be6d-59a3ce23ec25 2019-08-03 00:40:55.643654 12525 927 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.32.230 c726c6b6-54fb-4ada-981b-7412885faedd 2019-08-03 00:41:54.949653 12526 1265 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 341\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 927\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-534\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEVOLUCION\n 1 movimiento de efectivo por venta con folio PV1-V-534 189.186.32.230 c726c6b6-54fb-4ada-981b-7412885faedd 2019-08-03 00:41:54.983614 12527 1265 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 341\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 927\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-534\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEVOLUCION\n 2 \N 189.186.32.230 137361ff-b047-4260-864c-666e60171218 2019-08-03 00:44:26.658738 12528 1266 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 341\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 927\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-534\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEVOLUCION\n 1 movimiento de efectivo por venta con folio PV1-V-534 189.186.32.230 3d3755d6-9a7f-4eeb-9ae9-9e8d5bf9288f 2019-08-03 00:44:29.481954 12529 628 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.32.230 14c57bfd-1bea-45af-9e41-76f23f37defc 2019-08-03 00:51:33.042896 12530 365 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.28E2\n- !ruby/object:BigDecimal 18:0.3E2\n 18 \N 189.186.32.230 14c57bfd-1bea-45af-9e41-76f23f37defc 2019-08-03 00:51:33.11065 12531 1267 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8E3\nmove_type: '1'\nsale_id: 172\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.32.230 0846240b-4c6c-44c8-a59e-17ee7ba916e1 2019-08-03 01:46:06.082977 12532 1267 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 49\n- 341\n 2 movimiento de efectivo por venta con folio PV1-V-96 189.186.32.230 0846240b-4c6c-44c8-a59e-17ee7ba916e1 2019-08-03 01:46:06.110127 12533 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-02 16:10:46.453792000 Z\n- &1 2019-08-02 22:24:05.571129000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-03 01:47:03.223292285 Z\nsign_in_count:\n- 557\n- 558\n 1116 \N 189.186.32.230 94d6e25b-53ec-4d30-9d61-31a4df6f98e1 2019-08-03 01:47:03.231063 12534 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 8uSyuhykGyKdEy_8fb7s\n- Ey4Pb-Bca7snEh3AGs6S\n 1117 \N 189.186.32.230 94d6e25b-53ec-4d30-9d61-31a4df6f98e1 2019-08-03 01:47:03.246093 12535 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-07-28 20:54:10.144327000 Z\n- &1 2019-08-02 02:03:46.519020000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-03 01:47:30.122810584 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183091942\n mask_addr: 4294967295\nsign_in_count:\n- 264\n- 265\n 530 \N 189.186.32.230 3c51d28a-0f16-421b-bda8-bd89bd68f30c 2019-08-03 01:47:30.133107 12536 12 User \N \N 12 User \N update ---\nunique_session_id:\n- dxizuzLick5SZsa_pwC1\n- 6iu9qq-UTHuwxLo5VF8R\n 531 \N 189.186.32.230 3c51d28a-0f16-421b-bda8-bd89bd68f30c 2019-08-03 01:47:30.154329 12537 145 Expense \N \N 12 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 341\nquantity: !ruby/object:BigDecimal 18:0.8E3\nstatus: 1\nobservations: ''\nexpense_date: 2019-08-02\nexpense_code: PV1-E-119\n 1 Egreso por 800.0 registrado 189.186.32.230 a230fe0e-c5a7-402e-a6cc-4cd3abf5cffa 2019-08-03 01:47:49.390502 12538 1268 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 341\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 145\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.32.230 a230fe0e-c5a7-402e-a6cc-4cd3abf5cffa 2019-08-03 01:47:49.419237 12539 145 Expense \N \N 12 User \N update ---\nstatus:\n- active\n- 0\n 2 Egreso PV1-E-119 cancelado. 189.186.32.230 ccea892f-2bdd-4df0-83bb-cfe235b49635 2019-08-03 01:47:55.948808 12540 1268 CashRegistersMove \N \N 12 User \N destroy ---\nopen_cash_register_id: 341\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 145\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.32.230 ccea892f-2bdd-4df0-83bb-cfe235b49635 2019-08-03 01:47:55.975101 12541 146 Expense \N \N 12 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 341\nquantity: !ruby/object:BigDecimal 18:0.8E3\nstatus: 1\nobservations: SUELDO ANABELLY\nexpense_date: 2019-08-02\nexpense_code: PV1-E-120\n 1 Egreso por 800.0 registrado 189.186.32.230 6f4ff951-87a7-489b-8a75-6f672be47f9a 2019-08-03 01:48:15.286847 12542 1269 CashRegistersMove \N \N 12 User \N create ---\nopen_cash_register_id: 341\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 146\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.32.230 6f4ff951-87a7-489b-8a75-6f672be47f9a 2019-08-03 01:48:15.3078 12543 339 CashOut \N \N 12 User \N create ---\nopen_cash_register_id: 341\nuser_id: 12\namount_in: !ruby/object:BigDecimal 18:0.4098E4\namount_out: !ruby/object:BigDecimal 18:0.1428E4\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.976E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1476E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.32.230 370cd539-6bbf-4470-89cd-d0e8af7882d4 2019-08-03 01:56:53.295187 12544 341 OpenCashRegister \N \N 12 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.32.230 370cd539-6bbf-4470-89cd-d0e8af7882d4 2019-08-03 01:56:53.314476 12545 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-02 01:06:56.210497000 Z\n- &1 2019-08-02 15:59:18.247177000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-03 01:58:07.088388412 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183091942\n mask_addr: 4294967295\nsign_in_count:\n- 252\n- 253\n 509 \N 189.186.32.230 0ed40209-41bf-4668-b505-40ced2a02034 2019-08-03 01:58:07.096646 12546 2 User \N \N 2 User \N update ---\nunique_session_id:\n- A_JNEMYmeSg_6AVRxqqV\n- h6cYhgsXedsQV5yAKyBb\n 510 \N 189.186.32.230 0ed40209-41bf-4668-b505-40ced2a02034 2019-08-03 01:58:07.112745 12547 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-02 22:24:05.571129000 Z\n- &1 2019-08-03 01:47:03.223292000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-03 01:58:45.200680984 Z\nsign_in_count:\n- 558\n- 559\n 1118 \N 189.186.32.230 95e171ae-1a82-4f6c-b032-2cf572d891fe 2019-08-03 01:58:45.209401 12548 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Ey4Pb-Bca7snEh3AGs6S\n- _4arBWXUDX1HzcQuEW_9\n 1119 \N 189.186.32.230 95e171ae-1a82-4f6c-b032-2cf572d891fe 2019-08-03 01:58:45.231379 12549 147 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 342\nquantity: !ruby/object:BigDecimal 18:0.7E3\nstatus: 1\nobservations: SUELDO YARETZI $700\nexpense_date: 2019-08-02\nexpense_code: PV2-E-27\n 1 Egreso por 700.0 registrado 189.186.32.230 6acf004b-52b4-46e9-b61f-d4985c6e1f2a 2019-08-03 01:59:32.750393 12550 1270 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 342\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 147\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.32.230 6acf004b-52b4-46e9-b61f-d4985c6e1f2a 2019-08-03 01:59:32.781906 12551 340 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 342\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.7E3\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.568E3\nphysical_cash: !ruby/object:BigDecimal 18:0.568E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.32.230 5f9a86ae-b9af-4c83-ae58-170b3570185c 2019-08-03 02:01:54.672931 12552 342 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.32.230 5f9a86ae-b9af-4c83-ae58-170b3570185c 2019-08-03 02:01:54.693495 12553 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-03 01:47:03.223292000 Z\n- &1 2019-08-03 01:58:45.200680000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-03 16:05:58.709621749 Z\nsign_in_count:\n- 559\n- 560\n 1120 \N 189.186.32.230 63584ee4-3b1c-4142-99cb-472eb45013f7 2019-08-03 16:05:58.739556 12554 3 User \N \N 3 User \N update ---\nunique_session_id:\n- _4arBWXUDX1HzcQuEW_9\n- 2Rp4KVUBsp_xEamxadvB\n 1121 \N 189.186.32.230 63584ee4-3b1c-4142-99cb-472eb45013f7 2019-08-03 16:05:58.763493 12555 343 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.518E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 518.0 189.186.32.230 81e0d121-8fe1-4c2e-8c4b-e4a9c739a0ed 2019-08-03 16:07:17.875022 12556 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-02 15:59:18.247177000 Z\n- &1 2019-08-03 01:58:07.088388000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-03 16:31:14.699461740 Z\nsign_in_count:\n- 253\n- 254\n 511 \N 189.186.32.230 b8838577-388a-4fdf-8f6a-94eda1436124 2019-08-03 16:31:14.741494 12557 2 User \N \N 2 User \N update ---\nunique_session_id:\n- h6cYhgsXedsQV5yAKyBb\n- rxz5FWsxx1dJxydk8Fzs\n 512 \N 189.186.32.230 b8838577-388a-4fdf-8f6a-94eda1436124 2019-08-03 16:31:14.767395 12558 344 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.976E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 976.0 189.186.32.230 53b86329-92cb-473e-993b-edde1bcc7bc4 2019-08-03 16:31:58.795841 12559 928 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 344\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-08-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-535\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.32.230 0dabccc1-ece0-4d32-98a1-de2d924a1b45 2019-08-03 17:01:48.427515 12560 748 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.32.230 0dabccc1-ece0-4d32-98a1-de2d924a1b45 2019-08-03 17:01:48.478053 12561 928 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.32.230 aa7e13fc-9f41-49cd-8ac5-f6183ac22150 2019-08-03 17:01:56.549182 12562 1271 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 344\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 928\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-535\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-535 189.186.32.230 aa7e13fc-9f41-49cd-8ac5-f6183ac22150 2019-08-03 17:01:56.572439 12563 1271 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 344\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 928\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-535\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.32.230 1f147085-ecb0-49ee-affc-9f09998bfe51 2019-08-03 17:02:03.419129 12564 1272 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 344\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 928\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-535\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-535 189.186.32.230 89a8e738-6290-437b-b17f-dd331c611d0b 2019-08-03 17:02:14.928669 12565 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-02 22:09:54.037133000 Z\n- &1 2019-08-02 23:39:02.794424000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-03 18:02:35.495085668 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183091942\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094213\n mask_addr: 4294967295\nsign_in_count:\n- 430\n- 431\n 862 \N 189.186.41.197 a317ae28-3261-46c4-a6c3-78aef7c2edfd 2019-08-03 18:02:35.50312 12566 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rs97gdA8677oyd5uyWWW\n- kLerEy337XysvPswkaWu\n 863 \N 189.186.41.197 a317ae28-3261-46c4-a6c3-78aef7c2edfd 2019-08-03 18:02:35.523779 12567 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-07-23 18:35:19.595936000 Z\n- &1 2019-07-31 20:43:54.647825000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-03 18:37:48.656704682 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 755383394\n mask_addr: 4294967295\nsign_in_count:\n- 64\n- 65\n 130 \N 45.6.60.98 a1079036-8540-428a-9a78-9290710d24b3 2019-08-03 18:37:48.664231 12568 1 User \N \N 1 User \N update ---\nunique_session_id:\n- rpF6Axzy4chk5XUCdiwo\n- APKrqRznx8zPzsvzTK3E\n 131 \N 45.6.60.98 a1079036-8540-428a-9a78-9290710d24b3 2019-08-03 18:37:48.677834 12569 929 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 343\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-08-03\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-392\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.32.230 d30bd8d9-f2fb-4b19-8a68-8ed5976919c2 2019-08-03 18:38:44.383917 12570 751 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.32.230 d30bd8d9-f2fb-4b19-8a68-8ed5976919c2 2019-08-03 18:38:44.436752 12571 929 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.32.230 513fe377-1bd2-40f2-8806-d88d170a5240 2019-08-03 18:39:25.871106 12572 1273 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 343\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 929\ncardnumber: 8714\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-392\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-392 189.186.32.230 513fe377-1bd2-40f2-8806-d88d170a5240 2019-08-03 18:39:25.893889 12573 930 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 344\namount: !ruby/object:BigDecimal 18:0.127E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.127E4\nstatus: 0\ndate_sale: 2019-08-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-536\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.32.230 56d756bb-e3e9-4603-aee0-093d7815dfd0 2019-08-03 19:07:40.506857 12574 747 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.32.230 56d756bb-e3e9-4603-aee0-093d7815dfd0 2019-08-03 19:07:40.547164 12575 930 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.32.230 7cc19fa5-a385-4c1f-a51b-cff933cca801 2019-08-03 19:07:53.788321 12576 1274 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 344\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.127E4\nmove_type: '1'\nsale_id: 930\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-536\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.127E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-536 189.186.32.230 7cc19fa5-a385-4c1f-a51b-cff933cca801 2019-08-03 19:07:53.810588 12577 17 User \N \N 1 User \N create ---\nuserid: a\nfirst_name: ''\nlast_name: ''\nusertype: G\nemail: a@a.com\nencrypted_password: "$2a$10$IY6du/WkrUap9bx1dQDpAOnDrRqZ4mYmhSbYdK9dM4D5a1Lfre.Hm"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 3\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 45.6.60.98 c3ac4760-783b-4c2a-a85f-5e7cfa2a297d 2019-08-03 19:13:01.240156 12578 3 Pointsale \N \N 1 User \N create ---\nname: SUO Comercial\naddress: 'Doctor Mora #1725, La compañia '\nnotes: ''\nstatus: 1\nprefix: PV3\nimg_pointsale_file_name: \nimg_pointsale_content_type: \nimg_pointsale_file_size: \nimg_pointsale_updated_at: \nticket_footer: ''\nimg_pointsale: \nhaggle_percent: !ruby/object:BigDecimal 18:0.0\nfederal_taxpayer_registration: UIOS851003XXX\nbusiness_name: SUO BOUTIQUE\ntax_regime: 601\npostal_code: 80060\n 1 El punto de venta SUO Comercial fue creado. 45.6.60.98 c3ac4760-783b-4c2a-a85f-5e7cfa2a297d 2019-08-03 19:13:01.256297 12579 3 Pointsale \N \N 1 User \N update ---\nnotes:\n- ''\n- "Doctor Mora #1725 \\r\\nCENTRO C.P 80060\\r\\nCULIACAN, SIN\\r\\nTEL.6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: S.BYSUO\\r\\nINSTAGRAM: S BY SUO "\nticket_footer:\n- ''\n- "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO CAMBIOS NI DEVOLUCIONES EN PROMOCIONES\n Y APARTADOS\\r\\n* NO SE REGRESA EFECTIVO POR NINGÚN MOTIVO\\r\\n*NO SE ACEPTA MERCANCÍA\n EN MAL ESTADO Y SIN ETIQUETA "\nhaggle_percent:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E3\n 2 \N 187.243.251.78 aff14f6e-0c66-413a-934f-dab5384a9906 2019-08-03 19:14:38.335335 12580 1275 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 343\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.389E3\nmove_type: '1'\nsale_id: 787\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-343 189.186.32.230 f1deebae-ae36-4e43-b529-e074c970e1bd 2019-08-04 00:12:46.628016 12581 787 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.32.230 7fd65a86-591b-4038-8749-70af4c4d300b 2019-08-04 00:12:52.320524 12582 931 Sale \N \N 3 User \N create ---\ncustomer_id: 134\nuser_id: 3\nopen_cash_register_id: 343\namount: !ruby/object:BigDecimal 18:0.449E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2245E3\ntotal: !ruby/object:BigDecimal 18:0.2245E3\nstatus: 0\ndate_sale: 2019-08-03\nsaletype: 2\nseller_id: 11\nsale_code: PV2-V-393\nexpiration_date: 2019-09-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.32.230 8cfdaaae-a221-4b07-a0e8-e067e61a012d 2019-08-04 00:18:36.9572 12583 722 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.32.230 8cfdaaae-a221-4b07-a0e8-e067e61a012d 2019-08-04 00:18:36.99594 12584 1276 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 343\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 931\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-393\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-393 189.186.32.230 302df9f1-ee7c-43e1-9f39-13ad11bbb112 2019-08-04 00:18:47.934284 12585 931 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-393 cancelada. 189.186.32.230 028cd2ad-1ce5-4e61-b621-82a7c710123d 2019-08-04 00:18:58.132153 12586 722 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.32.230 028cd2ad-1ce5-4e61-b621-82a7c710123d 2019-08-04 00:18:58.15475 12587 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-02 23:39:02.794424000 Z\n- &1 2019-08-03 18:02:35.495085000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-04 00:39:04.357573395 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094213\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093960\n mask_addr: 4294967295\nsign_in_count:\n- 431\n- 432\n 864 \N 189.186.40.200 b04466fa-7a3e-448f-94cc-91890c883ab4 2019-08-04 00:39:04.365178 12588 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kLerEy337XysvPswkaWu\n- JsZJ4tBtA1nTSzxkmHZE\n 865 \N 189.186.40.200 b04466fa-7a3e-448f-94cc-91890c883ab4 2019-08-04 00:39:04.381731 12589 7 Promotion \N \N 4 User \N destroy ---\nstart_date: 2019-07-30\nend_date: 2019-09-30\npercent: !ruby/object:BigDecimal 18:0.5E2\nproduct_id: \ncategory_id: 7\nuser_id: \nstatus: 1\nsubcategory_id: 20\n 2 Descuento eliminado correctamente 189.186.40.200 ff1950dc-a7a2-461a-ac72-58306e99bf49 2019-08-04 00:39:26.708463 12590 5 Promotion \N \N 4 User \N destroy ---\nstart_date: 2019-07-30\nend_date: 2019-09-30\npercent: !ruby/object:BigDecimal 18:0.5E2\nproduct_id: \ncategory_id: 8\nuser_id: \nstatus: 1\nsubcategory_id: 21\n 2 Descuento eliminado correctamente 189.186.40.200 d08047dd-0633-4285-95fe-1b3c0563ed94 2019-08-04 00:39:31.053888 12591 4 Promotion \N \N 4 User \N destroy ---\nstart_date: 2019-07-30\nend_date: 2019-08-31\npercent: !ruby/object:BigDecimal 18:0.5E2\nproduct_id: \ncategory_id: 12\nuser_id: \nstatus: 1\nsubcategory_id: 18\n 2 Descuento eliminado correctamente 189.186.40.200 62039abb-8334-4290-a9a5-b8e03fb88a4f 2019-08-04 00:39:34.881091 12592 3 Promotion \N \N 4 User \N destroy ---\nstart_date: 2019-07-30\nend_date: 2019-09-30\npercent: !ruby/object:BigDecimal 18:0.5E2\nproduct_id: 232\ncategory_id: \nuser_id: \nstatus: 1\nsubcategory_id: \n 2 Descuento eliminado correctamente 189.186.40.200 736d625b-e7ee-43d0-8edb-83fc1e801a73 2019-08-04 00:43:03.447418 12593 2 Promotion \N \N 4 User \N destroy ---\nstart_date: 2019-07-29\nend_date: 2019-08-31\npercent: !ruby/object:BigDecimal 18:0.5E2\nproduct_id: 639\ncategory_id: \nuser_id: \nstatus: 1\nsubcategory_id: \n 2 Descuento eliminado correctamente 189.186.40.200 b2b942c1-a987-4402-b9da-f9908a44f5b1 2019-08-04 00:43:07.61541 12594 932 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 344\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-08-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-537\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.32.230 e9081b0c-9425-4ca9-8c93-b63cba6db3ab 2019-08-04 00:56:42.292491 12595 642 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.32.230 e9081b0c-9425-4ca9-8c93-b63cba6db3ab 2019-08-04 00:56:42.319909 12596 932 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.32.230 9df9bf89-d459-42e4-ac32-4920c5ee9bb6 2019-08-04 01:01:03.32225 12597 1277 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 344\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 932\ncardnumber: 2047\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-537\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-537 189.186.32.230 9df9bf89-d459-42e4-ac32-4920c5ee9bb6 2019-08-04 01:01:03.354771 12598 933 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 344\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-08-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-538\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.32.230 8801c22d-3724-47f7-b15f-a62f184fd2ed 2019-08-04 01:03:00.524653 12599 155 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 189.186.32.230 8801c22d-3724-47f7-b15f-a62f184fd2ed 2019-08-04 01:03:00.57057 12600 933 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.32.230 0b8519db-8e15-4bd1-91b6-b0b1a64dd00c 2019-08-04 01:03:40.326577 12601 1278 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 344\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 933\ncardnumber: 2349\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-538\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-538 189.186.32.230 0b8519db-8e15-4bd1-91b6-b0b1a64dd00c 2019-08-04 01:03:40.35905 12602 934 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 343\namount: !ruby/object:BigDecimal 18:0.829E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.829E3\nstatus: 0\ndate_sale: 2019-08-03\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-394\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.32.230 ea488abb-218b-4fce-a11f-7417c80fd4e3 2019-08-04 01:05:17.25201 12603 757 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.32.230 ea488abb-218b-4fce-a11f-7417c80fd4e3 2019-08-04 01:05:17.3003 12604 934 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.32.230 26e549bb-2d0e-45be-bb92-691f54715ba2 2019-08-04 01:05:56.807594 12605 1279 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 343\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.829E3\nmove_type: '1'\nsale_id: 934\ncardnumber: 2047\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-394\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-394 189.186.32.230 26e549bb-2d0e-45be-bb92-691f54715ba2 2019-08-04 01:05:56.853153 12606 148 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 344\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: Comida\nexpense_date: 2019-08-03\nexpense_code: PV1-E-121\n 1 Egreso por 50.0 registrado 189.186.32.230 2bae774e-03c3-4e42-8a5a-ddec5b8a490d 2019-08-04 01:07:29.840757 12607 1280 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 344\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 148\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.32.230 2bae774e-03c3-4e42-8a5a-ddec5b8a490d 2019-08-04 01:07:29.871813 12608 935 Sale \N \N 3 User \N create ---\ncustomer_id: 134\nuser_id: 3\nopen_cash_register_id: 343\namount: !ruby/object:BigDecimal 18:0.449E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.449E3\nstatus: 0\ndate_sale: 2019-08-03\nsaletype: 2\nseller_id: 9\nsale_code: PV2-V-395\nexpiration_date: 2019-09-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.32.230 b3916343-1f80-4b03-8faa-ddfa0e1cdc6e 2019-08-04 01:11:08.735007 12609 722 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.32.230 b3916343-1f80-4b03-8faa-ddfa0e1cdc6e 2019-08-04 01:11:08.766447 12610 1281 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 343\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 935\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-395\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-395 189.186.32.230 4eac4d93-ffea-46eb-abcd-706df9c17527 2019-08-04 01:11:18.035962 12611 935 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.32.230 2732dfd0-7115-4dae-962d-f8db8497ee3d 2019-08-04 01:11:25.010894 12612 936 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 343\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-08-03\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-396\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.32.230 220109e1-aa03-43ec-a4e6-78a4050010a5 2019-08-04 01:15:18.441959 12613 651 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 189.186.32.230 220109e1-aa03-43ec-a4e6-78a4050010a5 2019-08-04 01:15:18.484704 12614 936 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.32.230 9082006d-e78e-4fd0-a3d7-98f0f947f4ae 2019-08-04 01:15:43.879453 12615 1282 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 343\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.489E3\nmove_type: '1'\nsale_id: 936\ncardnumber: 2047\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-396\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-396 189.186.32.230 9082006d-e78e-4fd0-a3d7-98f0f947f4ae 2019-08-04 01:15:43.917289 12616 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-03 18:02:35.495085000 Z\n- &1 2019-08-04 00:39:04.357573000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-04 01:43:37.042033073 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094213\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093960\n mask_addr: 4294967295\nsign_in_count:\n- 432\n- 433\n 866 \N 189.186.40.200 6ff29375-eec6-4ff1-8a6c-d93759dfe748 2019-08-04 01:43:37.056374 12617 4 User \N \N 4 User \N update ---\nunique_session_id:\n- JsZJ4tBtA1nTSzxkmHZE\n- RskkQyEQfV_Lx9fJzsVy\n 867 \N 189.186.40.200 6ff29375-eec6-4ff1-8a6c-d93759dfe748 2019-08-04 01:43:37.088002 12618 149 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 343\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: 'YARETZI '\nexpense_date: 2019-08-03\nexpense_code: PV2-E-28\n 1 Egreso por 50.0 registrado 189.186.32.230 3ec20778-1fc7-4d80-ab74-93b095ce3968 2019-08-04 01:45:27.956105 12619 1283 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 343\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 149\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.32.230 3ec20778-1fc7-4d80-ab74-93b095ce3968 2019-08-04 01:45:27.988668 12620 341 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 343\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.2556E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.4E3\ncash_fund: !ruby/object:BigDecimal 18:0.607E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1007E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.32.230 0ae8ae18-f763-422e-9cac-dcc341400025 2019-08-04 01:47:01.824565 12621 343 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.32.230 0ae8ae18-f763-422e-9cac-dcc341400025 2019-08-04 01:47:01.8397 12622 342 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 344\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4167E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.22E4\ncash_fund: !ruby/object:BigDecimal 18:0.995E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3195E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.32.230 822e66d7-5cb2-48bd-8f27-b6da252d802a 2019-08-04 01:52:02.861823 12623 344 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.32.230 822e66d7-5cb2-48bd-8f27-b6da252d802a 2019-08-04 01:52:02.884524 12624 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-03 01:58:45.200680000 Z\n- &1 2019-08-03 16:05:58.709621000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-04 16:03:23.242177322 Z\nsign_in_count:\n- 560\n- 561\n 1122 \N 189.186.32.230 6e58158f-7ea8-4e7b-818f-32f34f777603 2019-08-04 16:03:23.289542 12625 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 2Rp4KVUBsp_xEamxadvB\n- zk3t_shHfE7f8sKJyJcy\n 1123 \N 189.186.32.230 6e58158f-7ea8-4e7b-818f-32f34f777603 2019-08-04 16:03:23.320222 12626 345 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.607E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 607.0 189.186.32.230 8ed81066-8147-438a-b8e2-732089ba6f2d 2019-08-04 16:03:38.942039 12627 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-04 00:39:04.357573000 Z\n- &1 2019-08-04 01:43:37.042033000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-04 18:44:05.606608199 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093960\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934289\n mask_addr: 4294967295\nsign_in_count:\n- 433\n- 434\n 868 \N 200.68.135.81 7644fd7e-1d3a-44ee-93f5-83029c854eac 2019-08-04 18:44:05.636568 12628 4 User \N \N 4 User \N update ---\nunique_session_id:\n- RskkQyEQfV_Lx9fJzsVy\n- CkmGcLpgzY_9kVNpoztz\n 869 \N 200.68.135.81 7644fd7e-1d3a-44ee-93f5-83029c854eac 2019-08-04 18:44:05.660227 12629 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-04 01:43:37.042033000 Z\n- &1 2019-08-04 18:44:05.606608000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-04 19:28:06.043691264 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093960\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934289\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934289\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938115\n mask_addr: 4294967295\nsign_in_count:\n- 434\n- 435\n 870 \N 200.68.150.67 96635e9a-ef1b-4b17-b919-45d5227ab6e6 2019-08-04 19:28:06.051427 12630 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CkmGcLpgzY_9kVNpoztz\n- pz2FUmHx7bB18bkfWjb6\n 871 \N 200.68.150.67 96635e9a-ef1b-4b17-b919-45d5227ab6e6 2019-08-04 19:28:06.068098 12631 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-04 18:44:05.606608000 Z\n- &1 2019-08-04 19:28:06.043691000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-04 19:51:11.687703034 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934289\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938115\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938115\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934289\n mask_addr: 4294967295\nsign_in_count:\n- 435\n- 436\n 872 \N 200.68.135.81 6374008e-9afd-4d4d-8f68-c85d8c89704c 2019-08-04 19:51:11.702942 12632 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pz2FUmHx7bB18bkfWjb6\n- ZMvsGS2ekQxmQkqSzsm2\n 873 \N 200.68.135.81 6374008e-9afd-4d4d-8f68-c85d8c89704c 2019-08-04 19:51:11.725346 12633 343 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 345\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.607E3\nphysical_cash: !ruby/object:BigDecimal 18:0.607E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.32.230 de73e627-1145-4e47-a6ea-5adbf166bf83 2019-08-04 20:54:45.84299 12634 345 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.32.230 de73e627-1145-4e47-a6ea-5adbf166bf83 2019-08-04 20:54:45.856041 12635 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-03 16:05:58.709621000 Z\n- &1 2019-08-04 16:03:23.242177000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-04 20:55:41.291360767 Z\nsign_in_count:\n- 561\n- 562\n 1124 \N 189.186.32.230 9aaf93e7-842d-4fe0-a200-145a940b6225 2019-08-04 20:55:41.296698 12636 3 User \N \N 3 User \N update ---\nunique_session_id:\n- zk3t_shHfE7f8sKJyJcy\n- 1MDKNoyEpeJwjNAkL2MG\n 1125 \N 189.186.32.230 9aaf93e7-842d-4fe0-a200-145a940b6225 2019-08-04 20:55:41.309279 12637 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-04 16:03:23.242177000 Z\n- &1 2019-08-04 20:55:41.291360000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-04 20:56:34.323875281 Z\nsign_in_count:\n- 562\n- 563\n 1126 \N 189.186.32.230 216b6707-f080-4e6d-8eca-3e3d8597b0aa 2019-08-04 20:56:34.331802 12638 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 1MDKNoyEpeJwjNAkL2MG\n- JDCpzvBZfcfQ7Md6p47D\n 1127 \N 189.186.32.230 216b6707-f080-4e6d-8eca-3e3d8597b0aa 2019-08-04 20:56:34.345125 12639 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-04 19:28:06.043691000 Z\n- &1 2019-08-04 19:51:11.687703000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-05 00:46:53.718046267 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938115\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934289\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934289\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934310\n mask_addr: 4294967295\nsign_in_count:\n- 436\n- 437\n 874 \N 200.68.135.102 f9142205-152e-4045-b78e-c705b328ab72 2019-08-05 00:46:53.728021 12640 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZMvsGS2ekQxmQkqSzsm2\n- zrSYRbzEytiz446LJhEf\n 875 \N 200.68.135.102 f9142205-152e-4045-b78e-c705b328ab72 2019-08-05 00:46:53.747067 12641 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-03 01:58:07.088388000 Z\n- &1 2019-08-03 16:31:14.699461000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-05 15:59:58.275635983 Z\nsign_in_count:\n- 254\n- 255\n 513 \N 189.186.32.230 91b918aa-a5c9-4318-8539-b97a87ccf621 2019-08-05 15:59:58.305134 12642 2 User \N \N 2 User \N update ---\nunique_session_id:\n- rxz5FWsxx1dJxydk8Fzs\n- 3USqV4Zy3xsN_YyZL4wm\n 514 \N 189.186.32.230 91b918aa-a5c9-4318-8539-b97a87ccf621 2019-08-05 15:59:58.326814 12643 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-04 20:55:41.291360000 Z\n- &1 2019-08-04 20:56:34.323875000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-05 16:05:59.306913948 Z\nsign_in_count:\n- 563\n- 564\n 1128 \N 189.186.32.230 9dda58d0-dd88-4fd2-bc71-6373ff31163c 2019-08-05 16:05:59.313177 12644 3 User \N \N 3 User \N update ---\nunique_session_id:\n- JDCpzvBZfcfQ7Md6p47D\n- rxPbXTTy6MuTroGAK9v-\n 1129 \N 189.186.32.230 9dda58d0-dd88-4fd2-bc71-6373ff31163c 2019-08-05 16:05:59.329326 12645 346 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.607E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 607.0 189.186.32.230 f73a34cd-b0ce-461f-8ae8-1192beb1faa5 2019-08-05 16:07:43.198744 12646 347 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.995E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 995.0 189.186.32.230 6ab61268-9863-4e3c-a652-5da8ca64299c 2019-08-05 16:09:17.398494 12647 937 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 347\namount: !ruby/object:BigDecimal 18:0.46452E3\ntax: !ruby/object:BigDecimal 18:0.3448E2\ndiscount: !ruby/object:BigDecimal 18:0.249E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2019-08-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-539\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.32.230 b56ff778-a4f8-4606-b6d2-0eb3f5da098a 2019-08-05 16:26:26.256311 12648 72 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.32.230 b56ff778-a4f8-4606-b6d2-0eb3f5da098a 2019-08-05 16:26:26.295522 12649 937 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.32.230 a90228ab-ad59-41c5-9982-ba8c4bcc0ac9 2019-08-05 16:26:30.9257 12650 1284 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 347\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 937\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-539\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-539 189.186.32.230 a90228ab-ad59-41c5-9982-ba8c4bcc0ac9 2019-08-05 16:26:30.963472 12673 3 User \N \N 3 User \N update ---\nunique_session_id:\n- rxPbXTTy6MuTroGAK9v-\n- ywuzWCqvFp9YApziJESb\n 1131 \N 189.186.14.199 a519d44b-0885-424a-aa90-8e4dc6a30a63 2019-08-06 16:06:18.381381 20275 882 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '882'\n is_parent: false\n sku: VES-882\n name: VST-0063\n description: "VESTIDO CQ&CQ TINTO ST-9388DK\\r\\n"\n price_base: '500.0'\n price_sale: '1299.0'\n img_product: PHOTO-2019-10-15-21-54-28__2_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000882'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-29 01:42:02.394369'\n updated_at: &12 2019-11-05 20:35:25.956724142 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '882'\n sku: VES-882\n name: VST-0063\n description: "VESTIDO CQ&CQ TINTO ST-9388DK\\r\\n"\n price_base: '500.00'\n price_sale: '1299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-29 01:42:02.394369'\n updated_at: '2019-10-29 01:42:02.437188'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000882'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '882'\n type: *3\n value: 882\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-882\n type: *7\n value: VES-882\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0063\n type: *8\n value: VST-0063\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "VESTIDO CQ&CQ TINTO ST-9388DK\\r\\n"\n type: *6\n value: "VESTIDO CQ&CQ TINTO ST-9388DK\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '500.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.5E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1299E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-10-15-21-54-28__2_.jpg\n type: *2\n value: PHOTO-2019-10-15-21-54-28__2_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000882'\n type: *2\n value: '0000882'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-29 01:42:02.394369'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-10-15-21-54-28__2_.jpg\n 3 El producto VES-882 fue modificado. 187.149.74.215 012fcc6d-af56-4b1c-bd64-256cd56843ad 2019-11-05 20:35:26.007176 12651 938 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 347\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-08-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-540\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.32.230 349502a2-6d32-4eca-8ca7-0e344c4d2706 2019-08-05 23:27:16.748154 12652 180 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.32.230 349502a2-6d32-4eca-8ca7-0e344c4d2706 2019-08-05 23:27:16.787505 12653 938 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-540 cancelada. 189.186.32.230 9ee31d03-bc7f-4264-a218-88f5c9aad353 2019-08-05 23:30:33.764922 12654 180 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.32.230 9ee31d03-bc7f-4264-a218-88f5c9aad353 2019-08-05 23:30:33.827218 12655 939 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 347\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-08-05\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-541\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.32.230 ff8aec8d-8d1c-4249-a1bb-a699519f68f1 2019-08-05 23:31:10.621923 12656 180 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.32.230 ff8aec8d-8d1c-4249-a1bb-a699519f68f1 2019-08-05 23:31:10.649853 12657 939 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.32.230 7435e69a-be26-4a4b-9a46-7ee560c05ad9 2019-08-05 23:31:40.159362 12658 1285 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 347\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 939\ncardnumber: 3082\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-541\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-541 189.186.32.230 7435e69a-be26-4a4b-9a46-7ee560c05ad9 2019-08-05 23:31:40.18746 12659 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-04 19:51:11.687703000 Z\n- &1 2019-08-05 00:46:53.718046000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-06 01:04:29.521235419 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934289\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934310\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934310\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093960\n mask_addr: 4294967295\nsign_in_count:\n- 437\n- 438\n 876 \N 189.186.40.200 5b5ef6bc-829b-4042-a8b0-a93a07ed2163 2019-08-06 01:04:29.530852 12660 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zrSYRbzEytiz446LJhEf\n- QKSr2qt1VZRah-1zxdBo\n 877 \N 189.186.40.200 5b5ef6bc-829b-4042-a8b0-a93a07ed2163 2019-08-06 01:04:29.550903 12661 940 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 347\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-08-05\nsaletype: 1\nseller_id: 8\nsale_code: PV1-V-542\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.32.230 2cf2bb7d-650f-4b78-bd27-1115c1ef8ade 2019-08-06 01:05:19.904857 12662 702 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.32.230 2cf2bb7d-650f-4b78-bd27-1115c1ef8ade 2019-08-06 01:05:19.936948 12663 940 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.32.230 bad20c0c-2500-44d0-8c69-4b37ba82b560 2019-08-06 01:05:57.726346 12664 1286 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 347\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.35E3\nmove_type: '1'\nsale_id: 940\ncardnumber: 5225\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-542\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-542 189.186.32.230 bad20c0c-2500-44d0-8c69-4b37ba82b560 2019-08-06 01:05:57.760044 12665 1287 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 347\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.349E3\nmove_type: '1'\nsale_id: 940\ncardnumber: 4880\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-542\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-542 189.186.32.230 ee5511b3-2bbd-4278-8c90-47bf18b854f7 2019-08-06 01:06:35.235387 12666 344 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 347\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2248E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.745E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1245E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.32.230 50587168-e61b-4c47-bdc9-4ba248417459 2019-08-06 01:57:32.518742 12667 347 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.32.230 50587168-e61b-4c47-bdc9-4ba248417459 2019-08-06 01:57:32.534985 12668 345 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 346\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.607E3\nphysical_cash: !ruby/object:BigDecimal 18:0.607E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.32.230 a8fde63b-7824-45ab-91e6-988998598af4 2019-08-06 02:00:04.056698 12669 346 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.32.230 a8fde63b-7824-45ab-91e6-988998598af4 2019-08-06 02:00:04.074068 12670 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-05 00:46:53.718046000 Z\n- &1 2019-08-06 01:04:29.521235000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-06 02:02:16.412051597 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934310\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093960\n mask_addr: 4294967295\nsign_in_count:\n- 438\n- 439\n 878 \N 189.186.40.200 198db524-c3b7-4a93-b63e-c405aa807cf2 2019-08-06 02:02:16.422088 12671 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QKSr2qt1VZRah-1zxdBo\n- W9LRBQTsF1-SbTvjY-s2\n 879 \N 189.186.40.200 198db524-c3b7-4a93-b63e-c405aa807cf2 2019-08-06 02:02:16.445485 12672 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-04 20:56:34.323875000 Z\n- &1 2019-08-05 16:05:59.306913000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-06 16:06:18.330054066 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183091942\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183087303\n mask_addr: 4294967295\nsign_in_count:\n- 564\n- 565\n 1130 \N 189.186.14.199 a519d44b-0885-424a-aa90-8e4dc6a30a63 2019-08-06 16:06:18.359686 12674 348 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.607E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 607.0 189.186.14.199 baa33dab-571b-4051-a8bf-e2641d6f0642 2019-08-06 16:06:30.627909 12675 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-03 16:31:14.699461000 Z\n- &1 2019-08-05 15:59:58.275635000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-06 16:06:43.418302133 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183091942\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183087303\n mask_addr: 4294967295\nsign_in_count:\n- 255\n- 256\n 515 \N 189.186.14.199 e43e0196-1b21-4d0f-9e63-a6c4a437a551 2019-08-06 16:06:43.425175 12676 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 3USqV4Zy3xsN_YyZL4wm\n- jSFmiGYVfUNy3iJdiUWu\n 516 \N 189.186.14.199 e43e0196-1b21-4d0f-9e63-a6c4a437a551 2019-08-06 16:06:43.440288 12677 349 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.745E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 745.0 189.186.14.199 9461dbb4-d497-4dcb-b3c1-92f085304676 2019-08-06 16:07:15.126197 12678 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-05 15:59:58.275635000 Z\n- &1 2019-08-06 16:06:43.418302000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-06 19:18:18.908601454 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183091942\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183087303\n mask_addr: 4294967295\nsign_in_count:\n- 256\n- 257\n 517 \N 189.186.14.199 60ef8e4f-84cf-4781-958f-9ab9010b79a5 2019-08-06 19:18:18.919257 12679 2 User \N \N 2 User \N update ---\nunique_session_id:\n- jSFmiGYVfUNy3iJdiUWu\n- Ez38kW1pU6MVAhZvMWzC\n 518 \N 189.186.14.199 60ef8e4f-84cf-4781-958f-9ab9010b79a5 2019-08-06 19:18:18.93876 12680 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-06 16:06:43.418302000 Z\n- &1 2019-08-06 19:18:18.908601000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-06 20:01:14.228786904 Z\nsign_in_count:\n- 257\n- 258\n 519 \N 189.186.14.199 8eccd99e-424d-4e57-858b-7407aeca220f 2019-08-06 20:01:14.234613 12681 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Ez38kW1pU6MVAhZvMWzC\n- 6A9-ZGJyLkfXKhBNCQ8g\n 520 \N 189.186.14.199 8eccd99e-424d-4e57-858b-7407aeca220f 2019-08-06 20:01:14.248655 12682 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-05 16:05:59.306913000 Z\n- &1 2019-08-06 16:06:18.330054000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-06 20:03:46.583988788 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183091942\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183087303\n mask_addr: 4294967295\nsign_in_count:\n- 565\n- 566\n 1132 \N 189.186.14.199 a8bf7c00-ce6b-42a3-a3b0-4a4f9d912677 2019-08-06 20:03:46.591355 12683 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ywuzWCqvFp9YApziJESb\n- kWRjBk4VWNC1XrgrrXBJ\n 1133 \N 189.186.14.199 a8bf7c00-ce6b-42a3-a3b0-4a4f9d912677 2019-08-06 20:03:46.60786 12684 941 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 348\namount: !ruby/object:BigDecimal 18:0.55948E3\ntax: !ruby/object:BigDecimal 18:0.8952E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-08-06\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-397\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.14.199 8e4e2c97-22ea-4fff-bfaf-abf84d2b66cd 2019-08-06 20:04:16.175624 12685 724 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 189.186.14.199 8e4e2c97-22ea-4fff-bfaf-abf84d2b66cd 2019-08-06 20:04:16.204722 12686 941 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.14.199 893a2f5b-4b33-4378-9e7e-f668bdd88ef4 2019-08-06 20:04:52.857197 12687 1288 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 348\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 941\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-397\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.649E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-397 189.186.14.199 893a2f5b-4b33-4378-9e7e-f668bdd88ef4 2019-08-06 20:04:52.909073 12688 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-06 16:06:18.330054000 Z\n- &1 2019-08-06 20:03:46.583988000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-06 21:32:29.415786289 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183087303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\nsign_in_count:\n- 566\n- 567\n 1134 \N 187.149.99.246 3082996e-000c-4683-8ad8-6481c1353400 2019-08-06 21:32:29.446122 12689 3 User \N \N 3 User \N update ---\nunique_session_id:\n- kWRjBk4VWNC1XrgrrXBJ\n- a6n73US3QxsvRB9Zcmu1\n 1135 \N 187.149.99.246 3082996e-000c-4683-8ad8-6481c1353400 2019-08-06 21:32:29.469288 12690 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-06 01:04:29.521235000 Z\n- &1 2019-08-06 02:02:16.412051000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-07 00:04:31.652815743 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093960\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085416\n mask_addr: 4294967295\nsign_in_count:\n- 439\n- 440\n 880 \N 189.186.7.104 408ae8a1-bf36-45e0-84d8-a7319443da83 2019-08-07 00:04:31.660485 12691 4 User \N \N 4 User \N update ---\nunique_session_id:\n- W9LRBQTsF1-SbTvjY-s2\n- eQHPTUC1CGzjQQjLU2Tm\n 881 \N 189.186.7.104 408ae8a1-bf36-45e0-84d8-a7319443da83 2019-08-07 00:04:31.678 12692 346 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 348\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.649E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.8E3\ncash_fund: !ruby/object:BigDecimal 18:0.456E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1256E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.99.246 41313ae9-16d6-4b68-919b-116fa9cdf572 2019-08-07 01:54:00.80408 12693 348 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.99.246 41313ae9-16d6-4b68-919b-116fa9cdf572 2019-08-07 01:54:00.820237 12694 347 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 349\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.745E3\nphysical_cash: !ruby/object:BigDecimal 18:0.745E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.99.246 5b271e3c-6744-42b6-aeb7-da852087f483 2019-08-07 01:56:08.002075 12695 349 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.99.246 5b271e3c-6744-42b6-aeb7-da852087f483 2019-08-07 01:56:08.013971 12696 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-06 19:18:18.908601000 Z\n- &1 2019-08-06 20:01:14.228786000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-07 15:57:28.768747636 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183087303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\nsign_in_count:\n- 258\n- 259\n 521 \N 187.149.99.246 6ec758ca-2e17-49f1-98a7-c887ef664be6 2019-08-07 15:57:28.803374 12697 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 6A9-ZGJyLkfXKhBNCQ8g\n- 1N-KKHGreiBsQT18qQ4M\n 522 \N 187.149.99.246 6ec758ca-2e17-49f1-98a7-c887ef664be6 2019-08-07 15:57:28.827974 12698 350 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.745E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 745.0 187.149.99.246 8f1b6066-63ff-434c-a106-ee7d2d645619 2019-08-07 16:00:17.534094 12699 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-06 20:03:46.583988000 Z\n- &1 2019-08-06 21:32:29.415786000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-07 16:00:38.891259707 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183087303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\nsign_in_count:\n- 567\n- 568\n 1136 \N 187.149.99.246 48c7b3d7-0440-4c57-a915-56ece296f5d2 2019-08-07 16:00:38.899875 12700 3 User \N \N 3 User \N update ---\nunique_session_id:\n- a6n73US3QxsvRB9Zcmu1\n- BzU_HEzZF3x1aTJwKdHf\n 1137 \N 187.149.99.246 48c7b3d7-0440-4c57-a915-56ece296f5d2 2019-08-07 16:00:38.918937 12701 351 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.456E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 456.0 187.149.99.246 cb99d268-97c8-4d14-89a3-db0d6713b12b 2019-08-07 16:01:56.598419 12702 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-06 20:01:14.228786000 Z\n- &1 2019-08-07 15:57:28.768747000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-07 19:37:57.548268798 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183087303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\nsign_in_count:\n- 259\n- 260\n 523 \N 187.149.99.246 1ce7c6d3-2bf7-44a7-a713-d94aa449cd94 2019-08-07 19:37:57.55514 12703 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 1N-KKHGreiBsQT18qQ4M\n- cCAgcxNNEQz2RxNaVXwZ\n 524 \N 187.149.99.246 1ce7c6d3-2bf7-44a7-a713-d94aa449cd94 2019-08-07 19:37:57.569663 12704 150 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 351\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: "yaretzi\\r\\n"\nexpense_date: 2019-08-07\nexpense_code: PV2-E-29\n 1 Egreso por 50.0 registrado 187.149.99.246 8b89e4de-7ab3-46c6-9cb2-02d6aaa346ae 2019-08-07 20:27:50.418965 12705 1289 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 351\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 150\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.99.246 8b89e4de-7ab3-46c6-9cb2-02d6aaa346ae 2019-08-07 20:27:50.491063 12706 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-06 02:02:16.412051000 Z\n- &1 2019-08-07 00:04:31.652815000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-07 23:27:28.226240215 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093960\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085416\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085416\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\nsign_in_count:\n- 440\n- 441\n 882 \N 187.149.99.246 c0b5bda6-204b-4ff4-8e39-b4c7bd862cf0 2019-08-07 23:27:28.233998 12707 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eQHPTUC1CGzjQQjLU2Tm\n- vSpyenL9RR2xiVzRRFLa\n 883 \N 187.149.99.246 c0b5bda6-204b-4ff4-8e39-b4c7bd862cf0 2019-08-07 23:27:28.252284 12708 12 User \N \N 12 User \N update ---\nlast_sign_in_at:\n- 2019-08-02 02:03:46.519020000 Z\n- &1 2019-08-03 01:47:30.122810000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-07 23:53:56.468434427 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183091942\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183091942\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\nsign_in_count:\n- 265\n- 266\n 532 \N 187.149.99.246 439940e8-e843-4ecc-96db-b65e2a83ed1e 2019-08-07 23:53:56.476112 12709 12 User \N \N 12 User \N update ---\nunique_session_id:\n- 6iu9qq-UTHuwxLo5VF8R\n- v_jjrfxFncaSPmEpenP8\n 533 \N 187.149.99.246 439940e8-e843-4ecc-96db-b65e2a83ed1e 2019-08-07 23:53:56.491248 12710 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-06 21:32:29.415786000 Z\n- &1 2019-08-07 16:00:38.891259000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-07 23:54:31.855868528 Z\nsign_in_count:\n- 568\n- 569\n 1138 \N 187.149.99.246 b96fd7eb-a09f-42b2-89c0-da8a3c9d4d44 2019-08-07 23:54:31.861926 12711 3 User \N \N 3 User \N update ---\nunique_session_id:\n- BzU_HEzZF3x1aTJwKdHf\n- 8AicHtBtrxJK7Sj3HsxM\n 1139 \N 187.149.99.246 b96fd7eb-a09f-42b2-89c0-da8a3c9d4d44 2019-08-07 23:54:31.877293 12712 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-07 16:00:38.891259000 Z\n- &1 2019-08-07 23:54:31.855868000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-07 23:55:47.947325788 Z\nsign_in_count:\n- 569\n- 570\n 1140 \N 187.149.99.246 8c0e9b37-10f2-4692-b45a-e81a8e4e1c0a 2019-08-07 23:55:47.954319 12713 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 8AicHtBtrxJK7Sj3HsxM\n- opKyhsxTbar6x6gCcrXq\n 1141 \N 187.149.99.246 8c0e9b37-10f2-4692-b45a-e81a8e4e1c0a 2019-08-07 23:55:47.968686 12714 152 Customer \N \N 3 User \N create ---\nnick_name: RUBI LARA\nphone: "(667) 419-1750"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente RUBI LARA fue registrado. 187.149.99.246 34c00805-4071-4d24-b2cb-aca143cdf25f 2019-08-07 23:56:39.276949 12715 942 Sale \N \N 3 User \N create ---\ncustomer_id: 152\nuser_id: 3\nopen_cash_register_id: 351\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-08-07\nsaletype: 2\nseller_id: 2\nsale_code: PV2-V-398\nexpiration_date: 2019-09-11\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.99.246 623f3515-55d7-44fe-995f-c62921a1e945 2019-08-07 23:56:50.949117 12716 559 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.99.246 623f3515-55d7-44fe-995f-c62921a1e945 2019-08-07 23:56:50.978104 12717 1290 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 351\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 942\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-398\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-398 187.149.99.246 173c2dd7-aa7d-4be4-9224-b521e434044b 2019-08-07 23:57:30.118747 12718 942 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.99.246 bb06320c-a9b8-40fd-93ad-ec0f203ed3e5 2019-08-07 23:57:36.491888 12762 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-08 16:08:16.649166000 Z\n- &1 2019-08-09 16:07:07.895791000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-09 16:07:54.673185383 Z\nsign_in_count:\n- 262\n- 263\n 529 \N 187.149.99.246 3a835a90-48fe-46aa-8d24-c7894e4d1271 2019-08-09 16:07:54.679623 12719 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-07-30 01:55:42.149090000 Z\n- &1 2019-07-31 01:14:49.016302000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-08 00:11:05.462668191 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\nsign_in_count:\n- 71\n- 72\n 144 \N 187.149.99.246 d947ef3f-f50e-418a-8d82-0adaabada088 2019-08-08 00:11:05.490838 12720 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 2qzuvJFYUsnny_usuFFe\n- tcuwm8DMdQrqUeGrxAqr\n 145 \N 187.149.99.246 d947ef3f-f50e-418a-8d82-0adaabada088 2019-08-08 00:11:05.512741 12721 153 Customer \N \N 9 User \N create ---\nnick_name: RUBI\nphone: "(667) 419-1750"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente RUBI fue registrado. 187.149.99.246 cdf8b8ca-7f25-434d-91ee-2060043648cb 2019-08-08 00:11:37.501342 12722 943 Sale \N \N 9 User \N create ---\ncustomer_id: 153\nuser_id: 9\nopen_cash_register_id: 350\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-08-07\nsaletype: 2\nseller_id: 8\nsale_code: PV1-V-543\nexpiration_date: 2019-09-11\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.99.246 f6cfa4a0-1169-4ffc-83c6-0ef3ba45a470 2019-08-08 00:12:02.566413 12723 664 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.99.246 f6cfa4a0-1169-4ffc-83c6-0ef3ba45a470 2019-08-08 00:12:02.597168 12724 1291 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 350\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.18E3\nmove_type: '1'\nsale_id: 943\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-543\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.18E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-543 187.149.99.246 eaa679fa-cb36-4817-8191-c9b4f3fed498 2019-08-08 00:12:11.916818 12725 943 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.99.246 fde88c18-fdc8-4051-9216-dadad640c493 2019-08-08 00:12:23.870891 12726 348 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 351\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.2E3\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.606E3\nphysical_cash: !ruby/object:BigDecimal 18:0.606E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.99.246 c726fae0-ed51-45a5-8ffb-7050b3f06e05 2019-08-08 01:57:21.046211 12727 351 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.99.246 c726fae0-ed51-45a5-8ffb-7050b3f06e05 2019-08-08 01:57:21.061665 12728 349 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 350\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.18E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.925E3\nphysical_cash: !ruby/object:BigDecimal 18:0.925E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.99.246 c3ac0add-0099-439d-9026-06983ce84ba6 2019-08-08 01:58:45.452114 12729 350 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.99.246 c3ac0add-0099-439d-9026-06983ce84ba6 2019-08-08 01:58:45.466087 12730 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-07 15:57:28.768747000 Z\n- &1 2019-08-07 19:37:57.548268000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-08 16:08:16.649166752 Z\nsign_in_count:\n- 260\n- 261\n 525 \N 187.149.99.246 86d69967-649b-4499-8c4e-47d5d8e9de79 2019-08-08 16:08:16.69061 12731 2 User \N \N 2 User \N update ---\nunique_session_id:\n- cCAgcxNNEQz2RxNaVXwZ\n- bcWSZk1zwHxYhEKn3jUj\n 526 \N 187.149.99.246 86d69967-649b-4499-8c4e-47d5d8e9de79 2019-08-08 16:08:16.719554 12732 352 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.925E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 925.0 187.149.99.246 a574b3a7-7050-44d2-8c35-ca09fa0be051 2019-08-08 16:08:35.71757 12733 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-08-02 02:03:39.069769000 Z\n- &1 2019-08-02 22:23:34.377969000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-08 16:52:14.809811391 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183091942\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183091942\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\nsign_in_count:\n- 122\n- 123\n 246 \N 187.149.99.246 862593cc-f38a-4e46-be10-a56d6c8a37fe 2019-08-08 16:52:14.858332 12734 10 User \N \N 10 User \N update ---\nunique_session_id:\n- BmqaAYx6yxiFh_X7GyhD\n- e__Wu1fDC3MCbbHTC4tz\n 247 \N 187.149.99.246 862593cc-f38a-4e46-be10-a56d6c8a37fe 2019-08-08 16:52:14.885424 12735 353 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.606E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 606.0 187.149.99.246 147ec79a-7811-40c2-9835-986251aa7630 2019-08-08 16:52:33.795619 12736 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-07 00:04:31.652815000 Z\n- &1 2019-08-07 23:27:28.226240000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-08 19:25:53.411393795 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085416\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085416\n mask_addr: 4294967295\nsign_in_count:\n- 441\n- 442\n 884 \N 189.186.7.104 27871b0b-7359-49e3-abaf-74ed54a87ba6 2019-08-08 19:25:53.419134 12737 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vSpyenL9RR2xiVzRRFLa\n- "-w7y6Rjaro3-znbXazFg"\n 885 \N 189.186.7.104 27871b0b-7359-49e3-abaf-74ed54a87ba6 2019-08-08 19:25:53.436691 12738 944 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 352\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-08-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-544\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.99.246 49060851-d792-42a0-9319-b8d0328550ca 2019-08-08 21:02:07.3379 12739 740 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.99.246 49060851-d792-42a0-9319-b8d0328550ca 2019-08-08 21:02:07.376979 12740 944 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.99.246 bf763507-f29e-4a48-ba1f-f95ed751d194 2019-08-08 21:06:44.308386 12763 2 User \N \N 2 User \N update ---\nunique_session_id:\n- QzCyu48VDzcz2rz62_Vs\n- 94ykBKP4vddsjgdsTDdz\n 530 \N 187.149.99.246 3a835a90-48fe-46aa-8d24-c7894e4d1271 2019-08-09 16:07:54.694107 48227 3679 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 ad254cbb-2414-4372-b3eb-208e37d14b28 2020-12-13 01:03:57.813377 12741 1292 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 352\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.569E3\nmove_type: '1'\nsale_id: 944\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-544\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.569E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-544 187.149.99.246 bf763507-f29e-4a48-ba1f-f95ed751d194 2019-08-08 21:06:44.334661 12742 151 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 352\nquantity: !ruby/object:BigDecimal 18:0.37E3\nstatus: 1\nobservations: SUELDO ANABELLY\nexpense_date: 2019-08-08\nexpense_code: PV1-E-122\n 1 Egreso por 370.0 registrado 187.149.99.246 e63deac3-f230-4be4-bb39-a15e04f662cc 2019-08-08 21:18:42.995549 12743 1293 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 352\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.37E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 151\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.99.246 e63deac3-f230-4be4-bb39-a15e04f662cc 2019-08-08 21:18:43.02098 12744 154 Customer \N \N 2 User \N create ---\nnick_name: LETICIA ZAZUETA\nphone: "(667) 484-6122"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LETICIA ZAZUETA fue registrado. 187.149.99.246 c5496aee-43a1-4f33-ba1b-dc077ea0d6a2 2019-08-08 21:54:11.077099 12745 945 Sale \N \N 2 User \N create ---\ncustomer_id: 154\nuser_id: 2\nopen_cash_register_id: 352\namount: !ruby/object:BigDecimal 18:0.1568E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1568E4\nstatus: 0\ndate_sale: 2019-08-08\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-545\nexpiration_date: 2019-09-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.99.246 188af12f-6514-4aa5-95ad-9a9f6c4db129 2019-08-08 21:54:39.014922 12746 702 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.99.246 188af12f-6514-4aa5-95ad-9a9f6c4db129 2019-08-08 21:54:39.045088 12747 746 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.99.246 188af12f-6514-4aa5-95ad-9a9f6c4db129 2019-08-08 21:54:39.07413 12748 1294 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 352\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.314E3\nmove_type: '1'\nsale_id: 945\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-545\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.314E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-545 187.149.99.246 b4f06f07-a3fa-47bf-9ba6-3f6fe864e444 2019-08-08 21:55:05.777141 12749 945 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.99.246 98828e74-8580-49f5-87d6-d07f39a33be0 2019-08-08 21:55:07.116806 12750 1295 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 352\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 901\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-517 187.149.99.246 23bd4ce8-c7b4-44a4-a267-a16c6c8f8f3e 2019-08-09 00:19:35.062532 12751 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-07 23:27:28.226240000 Z\n- &1 2019-08-08 19:25:53.411393000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-09 01:29:03.640615784 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085416\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085416\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938253\n mask_addr: 4294967295\nsign_in_count:\n- 442\n- 443\n 886 \N 200.68.150.205 a70f5c32-c850-42be-b849-07f0b6828925 2019-08-09 01:29:03.655233 12752 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-w7y6Rjaro3-znbXazFg"\n- eiD9hxcyYyZkyo5Q3z9K\n 887 \N 200.68.150.205 a70f5c32-c850-42be-b849-07f0b6828925 2019-08-09 01:29:03.684372 12753 1296 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 352\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 870\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-494 187.149.99.246 bd609109-fc1b-4708-a3ed-9c1a8e4879be 2019-08-09 01:31:23.158182 12754 350 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 353\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.606E3\nphysical_cash: !ruby/object:BigDecimal 18:0.606E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.99.246 62c29a59-e0fc-4d4b-858a-624309a8a012 2019-08-09 01:34:24.839584 12755 353 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.99.246 62c29a59-e0fc-4d4b-858a-624309a8a012 2019-08-09 01:34:24.860236 12756 351 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 352\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1583E4\namount_out: !ruby/object:BigDecimal 18:0.37E3\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.638E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2138E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.99.246 dfdcb4fa-cddf-408b-a22f-42eb04ab1df6 2019-08-09 01:37:04.817481 12757 352 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.99.246 dfdcb4fa-cddf-408b-a22f-42eb04ab1df6 2019-08-09 01:37:04.832157 12758 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-07 23:54:31.855868000 Z\n- &1 2019-08-07 23:55:47.947325000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-09 16:05:45.291241332 Z\nsign_in_count:\n- 570\n- 571\n 1142 \N 187.149.99.246 28662cf9-32ce-4616-ab87-9dd888a3f428 2019-08-09 16:05:45.325106 12759 3 User \N \N 3 User \N update ---\nunique_session_id:\n- opKyhsxTbar6x6gCcrXq\n- rG1nqgtjd442EKgmh65y\n 1143 \N 187.149.99.246 28662cf9-32ce-4616-ab87-9dd888a3f428 2019-08-09 16:05:45.351936 12760 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-07 19:37:57.548268000 Z\n- &1 2019-08-08 16:08:16.649166000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-09 16:07:07.895791390 Z\nsign_in_count:\n- 261\n- 262\n 527 \N 187.149.99.246 7f13fc6c-5cab-4441-a3fb-47ee171ca073 2019-08-09 16:07:07.903006 12761 2 User \N \N 2 User \N update ---\nunique_session_id:\n- bcWSZk1zwHxYhEKn3jUj\n- QzCyu48VDzcz2rz62_Vs\n 528 \N 187.149.99.246 7f13fc6c-5cab-4441-a3fb-47ee171ca073 2019-08-09 16:07:07.917294 12764 354 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.606E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 606.0 187.149.99.246 6cbe222f-f20d-4d10-a847-8eb9c3b849d3 2019-08-09 16:08:21.457335 12765 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-09 16:07:07.895791000 Z\n- &1 2019-08-09 16:07:54.673185000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-09 16:15:29.947517385 Z\nsign_in_count:\n- 263\n- 264\n 531 \N 187.149.99.246 e3bbda54-eaa7-4491-aaf2-9f6848b18ed0 2019-08-09 16:15:29.955225 12766 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 94ykBKP4vddsjgdsTDdz\n- RiKMyb878SL5Jpd6uJ-B\n 532 \N 187.149.99.246 e3bbda54-eaa7-4491-aaf2-9f6848b18ed0 2019-08-09 16:15:29.970743 12767 355 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.638E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 638.0 187.149.99.246 ea263012-9ffd-476b-af53-35d70be646ca 2019-08-09 16:15:40.268211 12768 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-08 19:25:53.411393000 Z\n- &1 2019-08-09 01:29:03.640615000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-09 17:53:31.321001274 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085416\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938253\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938253\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933960\n mask_addr: 4294967295\nsign_in_count:\n- 443\n- 444\n 888 \N 200.68.134.8 cd8efb71-9b39-4b98-b535-0ded26ab2cce 2019-08-09 17:53:31.342053 12769 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eiD9hxcyYyZkyo5Q3z9K\n- LHxWq7tyLk3R5jqxaAzx\n 889 \N 200.68.134.8 cd8efb71-9b39-4b98-b535-0ded26ab2cce 2019-08-09 17:53:31.363517 12770 946 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 354\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-08-09\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-399\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.99.246 e2651d27-d4b5-435e-b67b-d38f6e0aa1d2 2019-08-09 19:00:33.465616 12771 559 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.99.246 e2651d27-d4b5-435e-b67b-d38f6e0aa1d2 2019-08-09 19:00:33.505309 12772 946 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.99.246 02051f51-2af0-4c85-a390-a263638cbdea 2019-08-09 19:01:34.266509 12773 1297 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 354\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 946\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-399\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-399 187.149.99.246 02051f51-2af0-4c85-a390-a263638cbdea 2019-08-09 19:01:34.323767 12774 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-09 01:29:03.640615000 Z\n- &1 2019-08-09 17:53:31.321001000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-09 20:18:33.825874780 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938253\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933960\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933960\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085416\n mask_addr: 4294967295\nsign_in_count:\n- 444\n- 445\n 890 \N 189.186.7.104 faf991fd-f046-4b87-950e-5d1efe08d45f 2019-08-09 20:18:33.836677 12775 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LHxWq7tyLk3R5jqxaAzx\n- WcaX6tLQ5d2y9UjxVfcx\n 891 \N 189.186.7.104 faf991fd-f046-4b87-950e-5d1efe08d45f 2019-08-09 20:18:33.869732 12776 1298 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 354\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 942\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-398 187.149.99.246 48c142a3-7fc4-4714-82cc-25e27936ce6d 2019-08-09 22:01:25.525878 12777 942 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.99.246 8367f37d-c3bc-4fcb-a5c0-54060abe4810 2019-08-09 22:01:29.426844 12778 1299 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 355\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.419E3\nmove_type: '1'\nsale_id: 943\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.419E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-543 187.149.99.246 25d9d219-f0f0-4d85-84e3-33f06ee91d8f 2019-08-09 22:02:59.230046 12779 943 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.99.246 462dc577-507f-4b8e-b599-06ebed6d0d5b 2019-08-09 22:03:00.859903 12780 947 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 355\namount: !ruby/object:BigDecimal 18:0.2268E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2268E4\nstatus: 0\ndate_sale: 2019-08-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-546\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.99.246 e0bba31c-965f-485c-8423-63350e2db506 2019-08-10 00:29:33.16611 12781 449 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.99.246 e0bba31c-965f-485c-8423-63350e2db506 2019-08-10 00:29:33.203163 12782 709 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.99.246 e0bba31c-965f-485c-8423-63350e2db506 2019-08-10 00:29:33.232625 12783 947 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.99.246 378492de-7a80-47f5-b6ed-9681e0c231c5 2019-08-10 00:30:10.831329 12784 1300 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 355\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.2268E4\nmove_type: '1'\nsale_id: 947\ncardnumber: 6827\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-546\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-546 187.149.99.246 378492de-7a80-47f5-b6ed-9681e0c231c5 2019-08-10 00:30:10.859244 12785 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-07 23:55:47.947325000 Z\n- &1 2019-08-09 16:05:45.291241000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-10 01:14:21.770939259 Z\nsign_in_count:\n- 571\n- 572\n 1144 \N 187.149.99.246 28d9099e-2b46-4a9e-9667-6801f0a2b147 2019-08-10 01:14:21.777447 20276 751 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '751'\n is_parent: false\n sku: VES-751\n name: VST-0053\n description: APEACH GABARDINA COLOR ROSA PALO ST-NJ60062\n price_base: '430.0'\n price_sale: '1099.0'\n img_product: IMG_3040.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000751'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-10 20:59:46.038586'\n updated_at: &12 2019-11-05 20:40:39.495833664 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '751'\n sku: VES-751\n name: VST-0053\n description: APEACH GABARDINA COLOR ROSA PALO ST-NJ60062\n price_base: '430.00'\n price_sale: '1099.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-10 20:59:46.038586'\n updated_at: '2019-10-10 20:59:46.073113'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000751'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '751'\n type: *3\n value: 751\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-751\n type: *7\n value: VES-751\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0053\n type: *8\n value: VST-0053\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: APEACH GABARDINA COLOR ROSA PALO ST-NJ60062\n type: *6\n value: APEACH GABARDINA COLOR ROSA PALO ST-NJ60062\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '430.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.43E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1099.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1099E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_3040.JPG\n type: *2\n value: IMG_3040.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000751'\n type: *2\n value: '0000751'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-10 20:59:46.038586'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_3040.JPG\n 3 El producto VES-751 fue modificado. 187.149.74.215 c7592be4-97f2-42df-ab16-86ae517b7a85 2019-11-05 20:40:39.536374 12786 3 User \N \N 3 User \N update ---\nunique_session_id:\n- rG1nqgtjd442EKgmh65y\n- qKh6c8ziW18Qhw133kWZ\n 1145 \N 187.149.99.246 28d9099e-2b46-4a9e-9667-6801f0a2b147 2019-08-10 01:14:21.793192 12787 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-09 16:05:45.291241000 Z\n- &1 2019-08-10 01:14:21.770939000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-10 01:16:07.780081600 Z\nsign_in_count:\n- 572\n- 573\n 1146 \N 187.149.99.246 cae7842c-d264-4d18-8f34-be01a230833b 2019-08-10 01:16:07.787038 12788 3 User \N \N 3 User \N update ---\nunique_session_id:\n- qKh6c8ziW18Qhw133kWZ\n- yz6_WrUtKnYZs_q9FUbh\n 1147 \N 187.149.99.246 cae7842c-d264-4d18-8f34-be01a230833b 2019-08-10 01:16:07.803122 12789 152 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 354\nquantity: !ruby/object:BigDecimal 18:0.85E3\nstatus: 1\nobservations: SUELDO YARETZI\nexpense_date: 2019-08-09\nexpense_code: PV2-E-30\n 1 Egreso por 850.0 registrado 187.149.99.246 a5b6fb0a-7012-41f0-a64a-572ead4cfc74 2019-08-10 01:17:16.070597 12790 1301 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 354\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.85E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 152\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.99.246 a5b6fb0a-7012-41f0-a64a-572ead4cfc74 2019-08-10 01:17:16.0992 12791 153 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 355\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: COMIDA\nexpense_date: 2019-08-09\nexpense_code: PV1-E-123\n 1 Egreso por 50.0 registrado 187.149.99.246 66ce0eff-f988-4a22-8f63-8ab9e1e544c1 2019-08-10 01:27:28.490049 12792 1302 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 355\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 153\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.99.246 66ce0eff-f988-4a22-8f63-8ab9e1e544c1 2019-08-10 01:27:28.517656 12793 352 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 354\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.998E3\namount_out: !ruby/object:BigDecimal 18:0.85E3\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.754E3\nphysical_cash: !ruby/object:BigDecimal 18:0.754E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.99.246 a3717d0e-d1e0-4b0a-94a3-e2a1ba56525a 2019-08-10 01:29:00.201348 12794 354 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.99.246 a3717d0e-d1e0-4b0a-94a3-e2a1ba56525a 2019-08-10 01:29:00.216226 12795 353 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 355\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2687E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1007E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1007E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.99.246 a154f987-8d18-4a7b-ae6a-544d15e424fa 2019-08-10 01:32:32.094987 12796 355 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.99.246 a154f987-8d18-4a7b-ae6a-544d15e424fa 2019-08-10 01:32:32.110412 12797 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-10 01:14:21.770939000 Z\n- &1 2019-08-10 01:16:07.780081000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-10 16:05:36.325936929 Z\nsign_in_count:\n- 573\n- 574\n 1148 \N 187.149.99.246 299822d8-6be9-4759-8c7d-532296f7ccb0 2019-08-10 16:05:36.35595 12798 3 User \N \N 3 User \N update ---\nunique_session_id:\n- yz6_WrUtKnYZs_q9FUbh\n- y-9hgCKYPCLWbxuGGExM\n 1149 \N 187.149.99.246 299822d8-6be9-4759-8c7d-532296f7ccb0 2019-08-10 16:05:36.378745 12799 356 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.754E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 754.0 187.149.99.246 b59e9a51-88d8-4081-8499-8c8c68f0183f 2019-08-10 16:05:48.510634 12800 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-09 17:53:31.321001000 Z\n- &1 2019-08-09 20:18:33.825874000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-10 18:50:04.950366763 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933960\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085416\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085416\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938373\n mask_addr: 4294967295\nsign_in_count:\n- 445\n- 446\n 892 \N 200.68.151.69 ee3ddc1e-c39c-486d-b677-7f62d362c541 2019-08-10 18:50:04.971552 12801 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WcaX6tLQ5d2y9UjxVfcx\n- MDKnpm1yKwurMtjjXZgy\n 893 \N 200.68.151.69 ee3ddc1e-c39c-486d-b677-7f62d362c541 2019-08-10 18:50:04.993224 12802 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-09 16:07:54.673185000 Z\n- &1 2019-08-09 16:15:29.947517000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-10 19:37:38.099984187 Z\nsign_in_count:\n- 264\n- 265\n 533 \N 187.149.99.246 89695421-573a-4315-b37e-b3dcbaedee57 2019-08-10 19:37:38.105442 12803 2 User \N \N 2 User \N update ---\nunique_session_id:\n- RiKMyb878SL5Jpd6uJ-B\n- SDF7dryFR_vG38psyseS\n 534 \N 187.149.99.246 89695421-573a-4315-b37e-b3dcbaedee57 2019-08-10 19:37:38.118854 12804 357 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1007E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1007.0 187.149.99.246 af8a5898-4d07-4f30-b136-4c2e0dbdd84c 2019-08-10 19:38:05.324164 12805 1303 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 357\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 875\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-498 187.149.99.246 a26c8c55-afd4-4815-ac63-ceaa719fac55 2019-08-10 19:40:18.797724 12806 948 Sale \N \N 2 User \N create ---\ncustomer_id: 144\nuser_id: 2\nopen_cash_register_id: 357\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-08-10\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-547\nexpiration_date: 2019-09-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.99.246 6e8f194c-a139-4a55-801b-24bb45d9c1ce 2019-08-10 19:47:29.421247 12807 746 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.99.246 6e8f194c-a139-4a55-801b-24bb45d9c1ce 2019-08-10 19:47:29.454209 12831 155 Customer \N \N 2 User \N create ---\nnick_name: ABIGAIL TERRAZAS\nphone: "(667) 452-0902"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ABIGAIL TERRAZAS fue registrado. 187.149.99.246 cd7feffa-07bb-49ae-a24a-fdb7166309ee 2019-08-11 01:02:29.87969 12808 1304 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 357\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 948\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-547\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-547 187.149.99.246 390605fb-b94c-4009-b271-40e6454b4f8c 2019-08-10 19:50:35.77575 12809 948 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.99.246 30874f3b-f03e-405e-a5e6-aa493547a889 2019-08-10 19:50:37.930819 12810 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-09 16:15:29.947517000 Z\n- &1 2019-08-10 19:37:38.099984000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-10 20:50:59.240893241 Z\nsign_in_count:\n- 265\n- 266\n 535 \N 187.149.99.246 9e8da377-4ed6-43be-9af0-e7336a12b8a8 2019-08-10 20:50:59.246391 12811 2 User \N \N 2 User \N update ---\nunique_session_id:\n- SDF7dryFR_vG38psyseS\n- k9o7v2qs6sRXN2uatQP6\n 536 \N 187.149.99.246 9e8da377-4ed6-43be-9af0-e7336a12b8a8 2019-08-10 20:50:59.259247 12812 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-10 19:37:38.099984000 Z\n- &1 2019-08-10 20:50:59.240893000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-10 21:15:12.732505864 Z\nsign_in_count:\n- 266\n- 267\n 537 \N 187.149.99.246 867b6cf2-bffc-4813-bc83-b319936790f4 2019-08-10 21:15:12.737944 12813 2 User \N \N 2 User \N update ---\nunique_session_id:\n- k9o7v2qs6sRXN2uatQP6\n- 2vi9TykS4-dTdppG3zFV\n 538 \N 187.149.99.246 867b6cf2-bffc-4813-bc83-b319936790f4 2019-08-10 21:15:12.750878 12814 154 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 357\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: COMIDA\nexpense_date: 2019-08-10\nexpense_code: PV1-E-124\n 1 Egreso por 50.0 registrado 187.149.99.246 2396ed72-ed60-4fa1-a0a8-a22f318d5b71 2019-08-10 21:15:30.250508 12815 1305 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 357\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 154\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.99.246 2396ed72-ed60-4fa1-a0a8-a22f318d5b71 2019-08-10 21:15:30.271556 12816 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-07-31 01:14:49.016302000 Z\n- &1 2019-08-08 00:11:05.462668000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-10 22:37:44.157158668 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\nsign_in_count:\n- 72\n- 73\n 146 \N 187.149.99.246 4d11b35e-3461-49ec-ad79-348aa16002b3 2019-08-10 22:37:44.167485 12817 9 User \N \N 9 User \N update ---\nunique_session_id:\n- tcuwm8DMdQrqUeGrxAqr\n- 9GCtPpCd5fm_ayLvoEV6\n 147 \N 187.149.99.246 4d11b35e-3461-49ec-ad79-348aa16002b3 2019-08-10 22:37:44.191219 12818 1306 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.18E4\nmove_type: '1'\nsale_id: 172\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CREDITO SAM\n 1 \N 187.149.99.246 34f0dff1-9680-460e-b2c1-9267a502637c 2019-08-10 22:38:52.496033 12819 172 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.99.246 34f0dff1-9680-460e-b2c1-9267a502637c 2019-08-10 22:38:52.518961 12820 1306 CashRegistersMove \N \N 9 User \N update ---\nopen_cash_register_id:\n- 49\n- 357\n 2 movimiento de efectivo por venta con folio PV1-V-96 187.149.99.246 34f0dff1-9680-460e-b2c1-9267a502637c 2019-08-10 22:38:52.544677 12821 1307 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 182\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CREDITO SAM\n 1 \N 187.149.99.246 8595c9b3-f032-4e63-9777-7f9ce61a51b0 2019-08-10 22:39:52.778339 12822 1307 CashRegistersMove \N \N 9 User \N update ---\nopen_cash_register_id:\n- 49\n- 357\n 2 movimiento de efectivo por venta con folio PV1-V-104 187.149.99.246 8595c9b3-f032-4e63-9777-7f9ce61a51b0 2019-08-10 22:39:52.815834 12823 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-10 20:50:59.240893000 Z\n- &1 2019-08-10 21:15:12.732505000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-10 23:01:16.250080862 Z\nsign_in_count:\n- 267\n- 268\n 539 \N 187.149.99.246 32220d8f-6fba-403a-a5ef-9133c00bd8fc 2019-08-10 23:01:16.256397 12824 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 2vi9TykS4-dTdppG3zFV\n- Vtn5TPYvzGMtPKYduVsi\n 540 \N 187.149.99.246 32220d8f-6fba-403a-a5ef-9133c00bd8fc 2019-08-10 23:01:16.270175 12825 949 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 357\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-08-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-548\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.99.246 51d0cde4-f8b4-4a1f-8e0d-1355f85964c2 2019-08-10 23:12:19.647257 12826 617 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.99.246 51d0cde4-f8b4-4a1f-8e0d-1355f85964c2 2019-08-10 23:12:19.684535 12827 949 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.99.246 92c8ffe6-adeb-48a0-87b1-0b178307fbcc 2019-08-10 23:12:29.577216 12828 1308 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 357\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 949\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-548\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-548 187.149.99.246 92c8ffe6-adeb-48a0-87b1-0b178307fbcc 2019-08-10 23:12:29.60282 12829 155 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 357\nquantity: !ruby/object:BigDecimal 18:0.749E3\nstatus: 1\nobservations: "$521 ANABELLY $228 SUELDO ROCIO"\nexpense_date: 2019-08-10\nexpense_code: PV1-E-125\n 1 Egreso por 749.0 registrado 187.149.99.246 45122061-d8f7-4994-9d94-cc450252eb80 2019-08-10 23:19:08.121747 12830 1309 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 357\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.749E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 155\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.99.246 45122061-d8f7-4994-9d94-cc450252eb80 2019-08-10 23:19:08.155872 12855 212 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.99.246 1dc63750-3452-4332-a9cc-38526a01eb31 2019-08-11 16:35:30.98332 12832 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-09 20:18:33.825874000 Z\n- &1 2019-08-10 18:50:04.950366000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-11 01:02:31.164129577 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085416\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938373\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938373\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946101\n mask_addr: 4294967295\nsign_in_count:\n- 446\n- 447\n 894 \N 200.68.181.117 5d8fc361-c28e-4015-853f-648d2183d05a 2019-08-11 01:02:31.173305 12833 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MDKnpm1yKwurMtjjXZgy\n- C7Rt7zAexvzFyvSp_9fT\n 895 \N 200.68.181.117 5d8fc361-c28e-4015-853f-648d2183d05a 2019-08-11 01:02:31.191978 12834 950 Sale \N \N 2 User \N create ---\ncustomer_id: 155\nuser_id: 2\nopen_cash_register_id: 357\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-08-10\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-549\nexpiration_date: 2019-09-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.99.246 344d7069-f682-4f57-9132-a8e6203e37b0 2019-08-11 01:03:21.355191 12835 643 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.99.246 344d7069-f682-4f57-9132-a8e6203e37b0 2019-08-11 01:03:21.404229 12836 1310 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 357\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 950\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-549\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-549 187.149.99.246 2abed108-5ef6-4777-b88a-2f844f69fa86 2019-08-11 01:03:28.459664 12837 950 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.99.246 a1306e07-7e3f-4872-8969-015cc2c07bf4 2019-08-11 01:03:32.840097 12838 951 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 357\namount: !ruby/object:BigDecimal 18:0.63103E3\ntax: !ruby/object:BigDecimal 18:0.10096E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.73199E3\nstatus: 0\ndate_sale: 2019-08-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-550\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.99.246 811e7bb8-a2a7-4d05-a111-fb822c6eba45 2019-08-11 01:07:00.933104 12839 696 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.99.246 811e7bb8-a2a7-4d05-a111-fb822c6eba45 2019-08-11 01:07:00.974506 12840 951 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.99.246 db998f21-34ce-405a-86b7-3e9cc4e741f2 2019-08-11 01:08:11.1706 12841 1311 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 357\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.732E3\nmove_type: '1'\nsale_id: 951\ncardnumber: 5294\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-550\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-550 187.149.99.246 db998f21-34ce-405a-86b7-3e9cc4e741f2 2019-08-11 01:08:11.20889 12842 354 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 357\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4681E4\namount_out: !ruby/object:BigDecimal 18:0.799E3\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.14E4\ncash_fund: !ruby/object:BigDecimal 18:0.657E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2057E4\nobservations: SE MODIFICO POR QUE SE METIO 100 PESOS MAS AL FONDO\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.99.246 d987f541-9b4d-4daf-9d94-89f7371dc7af 2019-08-11 01:58:01.049376 12843 357 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.99.246 d987f541-9b4d-4daf-9d94-89f7371dc7af 2019-08-11 01:58:01.073746 12844 355 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 356\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.754E3\nphysical_cash: !ruby/object:BigDecimal 18:0.754E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.99.246 5f140530-d38b-4ef6-bcbb-04566b58a183 2019-08-11 01:58:07.460312 12845 356 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.99.246 5f140530-d38b-4ef6-bcbb-04566b58a183 2019-08-11 01:58:07.51072 12846 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-10 21:15:12.732505000 Z\n- &1 2019-08-10 23:01:16.250080000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-11 16:16:16.127399402 Z\nsign_in_count:\n- 268\n- 269\n 541 \N 187.149.99.246 eeacbf6f-a080-432e-86fc-c2f9957ee3ef 2019-08-11 16:16:16.156594 12847 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Vtn5TPYvzGMtPKYduVsi\n- 5iUhuvZE6UDEFa79N-io\n 542 \N 187.149.99.246 eeacbf6f-a080-432e-86fc-c2f9957ee3ef 2019-08-11 16:16:16.184681 12848 358 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.657E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 657.0 187.149.99.246 59b5830e-03c6-4954-9c70-79a066e1d660 2019-08-11 16:16:40.689239 12849 952 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 358\namount: !ruby/object:BigDecimal 18:0.79045E3\ntax: !ruby/object:BigDecimal 18:0.5855E2\ndiscount: !ruby/object:BigDecimal 18:0.4245E3\ntotal: !ruby/object:BigDecimal 18:0.4245E3\nstatus: 0\ndate_sale: 2019-08-11\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-551\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.99.246 25a488fa-886f-4667-a509-5f7aba070e62 2019-08-11 16:31:36.194408 12850 212 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.99.246 25a488fa-886f-4667-a509-5f7aba070e62 2019-08-11 16:31:36.230998 12851 952 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-551 cancelada. 187.149.99.246 44b1e456-98d2-48bb-9326-b66075a07114 2019-08-11 16:31:41.028022 12852 212 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.99.246 44b1e456-98d2-48bb-9326-b66075a07114 2019-08-11 16:31:41.087775 12853 953 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 358\namount: !ruby/object:BigDecimal 18:0.217314E4\ntax: !ruby/object:BigDecimal 18:0.22386E3\ndiscount: !ruby/object:BigDecimal 18:0.774E3\ntotal: !ruby/object:BigDecimal 18:0.1623E4\nstatus: 0\ndate_sale: 2019-08-11\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-552\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.99.246 1dc63750-3452-4332-a9cc-38526a01eb31 2019-08-11 16:35:30.900978 12854 108 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.99.246 1dc63750-3452-4332-a9cc-38526a01eb31 2019-08-11 16:35:30.94542 12856 97 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.99.246 1dc63750-3452-4332-a9cc-38526a01eb31 2019-08-11 16:35:31.019586 12857 953 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.99.246 11a72e3e-3af8-4bb0-b4f4-8649bb0a3e01 2019-08-11 16:36:14.592802 12858 1312 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 358\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1623E4\nmove_type: '1'\nsale_id: 953\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-552\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.377E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-552 187.149.99.246 11a72e3e-3af8-4bb0-b4f4-8649bb0a3e01 2019-08-11 16:36:14.624299 12859 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-10 18:50:04.950366000 Z\n- &1 2019-08-11 01:02:31.164129000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-11 18:38:15.674742302 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938373\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946101\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946101\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085416\n mask_addr: 4294967295\nsign_in_count:\n- 447\n- 448\n 896 \N 189.186.7.104 228b2df3-b914-4287-8c49-ef2455289201 2019-08-11 18:38:15.704463 12860 4 User \N \N 4 User \N update ---\nunique_session_id:\n- C7Rt7zAexvzFyvSp_9fT\n- j4FsWYzZeDBr6xmy37et\n 897 \N 189.186.7.104 228b2df3-b914-4287-8c49-ef2455289201 2019-08-11 18:38:15.728322 12861 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-11 01:02:31.164129000 Z\n- &1 2019-08-11 18:38:15.674742000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-11 19:31:47.737629866 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946101\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085416\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085416\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938116\n mask_addr: 4294967295\nsign_in_count:\n- 448\n- 449\n 898 \N 200.68.150.68 a932008d-8718-4bad-a44c-5f0d175d0f90 2019-08-11 19:31:47.744855 12862 4 User \N \N 4 User \N update ---\nunique_session_id:\n- j4FsWYzZeDBr6xmy37et\n- xMivU64Sb3iALxhvkS87\n 899 \N 200.68.150.68 a932008d-8718-4bad-a44c-5f0d175d0f90 2019-08-11 19:31:47.76068 12863 356 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 358\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1623E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.78E3\nphysical_cash: !ruby/object:BigDecimal 18:0.228E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.99.246 16fbc0c7-3d97-4457-abc0-2bd37c17c1ff 2019-08-11 20:57:58.22214 12864 358 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.99.246 16fbc0c7-3d97-4457-abc0-2bd37c17c1ff 2019-08-11 20:57:58.237731 12865 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-10 23:01:16.250080000 Z\n- &1 2019-08-11 16:16:16.127399000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-12 16:00:04.544243559 Z\nsign_in_count:\n- 269\n- 270\n 543 \N 187.149.99.246 48df2acd-9039-4b20-9b73-b2c6d94b549c 2019-08-12 16:00:04.572861 12866 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 5iUhuvZE6UDEFa79N-io\n- EFBwzcoRJUtVHuCA2xsw\n 544 \N 187.149.99.246 48df2acd-9039-4b20-9b73-b2c6d94b549c 2019-08-12 16:00:04.596733 12867 359 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.78E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 780.0 187.149.99.246 45a6faa2-0d9d-486d-8693-2c9f2145059d 2019-08-12 16:02:30.673501 12868 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-10 01:16:07.780081000 Z\n- &1 2019-08-10 16:05:36.325936000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-12 16:07:47.416830046 Z\nsign_in_count:\n- 574\n- 575\n 1150 \N 187.149.99.246 c1e84167-3096-4d0d-8ac7-34c60f655f56 2019-08-12 16:07:47.425186 12869 3 User \N \N 3 User \N update ---\nunique_session_id:\n- y-9hgCKYPCLWbxuGGExM\n- DZhvfEgftBzUiRELc7LS\n 1151 \N 187.149.99.246 c1e84167-3096-4d0d-8ac7-34c60f655f56 2019-08-12 16:07:47.445081 12870 360 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.754E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 754.0 187.149.99.246 750210a4-10f4-47dd-a5d6-816540a93083 2019-08-12 16:11:19.25594 12871 954 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 360\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-08-12\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-400\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.99.246 d2e544f4-0be0-4633-953f-c8024acb0512 2019-08-12 20:15:51.523665 12872 717 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 187.149.99.246 d2e544f4-0be0-4633-953f-c8024acb0512 2019-08-12 20:15:51.551742 12873 954 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.99.246 f6c902a0-d942-4d34-92e4-2088afc3f182 2019-08-12 20:16:40.293431 12874 1313 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 360\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 954\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-400\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-400 187.149.99.246 f6c902a0-d942-4d34-92e4-2088afc3f182 2019-08-12 20:16:40.328906 12875 1314 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 359\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 868\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-493 187.149.99.246 3f21440f-9a16-4f0b-93df-5ac433466ed2 2019-08-12 23:52:47.986329 12876 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-11 18:38:15.674742000 Z\n- &1 2019-08-11 19:31:47.737629000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-13 00:44:56.984480344 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085416\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938116\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938116\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938085\n mask_addr: 4294967295\nsign_in_count:\n- 449\n- 450\n 900 \N 200.68.150.37 cb9c77c9-043e-4aa1-8c3b-d271e287df4b 2019-08-13 00:44:56.993998 12877 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xMivU64Sb3iALxhvkS87\n- A91wtsmTyZ1vyZ7T5ASB\n 901 \N 200.68.150.37 cb9c77c9-043e-4aa1-8c3b-d271e287df4b 2019-08-13 00:44:57.012667 12878 357 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 360\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.549E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.803E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1303E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.99.246 98b6648a-7cca-4b45-bb6d-169fe0399400 2019-08-13 01:01:32.56366 12879 360 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.99.246 98b6648a-7cca-4b45-bb6d-169fe0399400 2019-08-13 01:01:32.579307 12880 358 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 359\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.25E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.103E4\nphysical_cash: !ruby/object:BigDecimal 18:0.103E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.99.246 b2931692-aaf8-40c4-8905-fe274f3bcf2d 2019-08-13 01:06:18.273088 12881 359 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.99.246 b2931692-aaf8-40c4-8905-fe274f3bcf2d 2019-08-13 01:06:18.286123 12882 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-10 16:05:36.325936000 Z\n- &1 2019-08-12 16:07:47.416830000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-13 16:05:08.595497012 Z\nsign_in_count:\n- 575\n- 576\n 1152 \N 187.149.99.246 08d44721-4322-4aef-a6eb-9a8942441252 2019-08-13 16:05:08.624806 12883 3 User \N \N 3 User \N update ---\nunique_session_id:\n- DZhvfEgftBzUiRELc7LS\n- yibkk5QxypjfTgYxZss5\n 1153 \N 187.149.99.246 08d44721-4322-4aef-a6eb-9a8942441252 2019-08-13 16:05:08.650017 12884 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-11 16:16:16.127399000 Z\n- &1 2019-08-12 16:00:04.544243000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-13 17:19:52.577463765 Z\nsign_in_count:\n- 270\n- 271\n 545 \N 187.149.99.246 e241cefb-33e1-441a-b605-5ac7d9de288e 2019-08-13 17:19:52.583114 12885 2 User \N \N 2 User \N update ---\nunique_session_id:\n- EFBwzcoRJUtVHuCA2xsw\n- pg_k83zzySQTQVyqSw-8\n 546 \N 187.149.99.246 e241cefb-33e1-441a-b605-5ac7d9de288e 2019-08-13 17:19:52.600049 12886 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-12 16:00:04.544243000 Z\n- &1 2019-08-13 17:19:52.577463000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-13 17:19:52.731247053 Z\nsign_in_count:\n- 271\n- 272\n 547 \N 187.149.99.246 58385242-d9fc-4a89-9daa-ea1c57e6d1d9 2019-08-13 17:19:52.736702 12887 2 User \N \N 2 User \N update ---\nunique_session_id:\n- pg_k83zzySQTQVyqSw-8\n- "-VBYC-V_a8d8__2zw8zJ"\n 548 \N 187.149.99.246 58385242-d9fc-4a89-9daa-ea1c57e6d1d9 2019-08-13 17:19:52.750422 12888 361 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.103E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1030.0 187.149.99.246 f7001a48-944d-4339-b929-17332b5b86bd 2019-08-13 17:42:22.601104 12889 955 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 361\namount: !ruby/object:BigDecimal 18:0.228359E4\ntax: !ruby/object:BigDecimal 18:0.5241E2\ndiscount: !ruby/object:BigDecimal 18:0.99E2\ntotal: !ruby/object:BigDecimal 18:0.2237E4\nstatus: 0\ndate_sale: 2019-08-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-553\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.99.246 087287d8-54ad-4555-99fd-78d78ddf3c01 2019-08-13 19:03:10.037436 12890 618 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.99.246 087287d8-54ad-4555-99fd-78d78ddf3c01 2019-08-13 19:03:10.065361 12891 664 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.99.246 087287d8-54ad-4555-99fd-78d78ddf3c01 2019-08-13 19:03:10.096398 12892 739 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.99.246 087287d8-54ad-4555-99fd-78d78ddf3c01 2019-08-13 19:03:10.120324 12893 190 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.99.246 087287d8-54ad-4555-99fd-78d78ddf3c01 2019-08-13 19:03:10.143625 12894 955 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.99.246 7ca556ae-76f1-459f-b6a1-44c9f6dd769b 2019-08-13 19:04:08.131668 12895 1315 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 361\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 955\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-553\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-553 187.149.99.246 7ca556ae-76f1-459f-b6a1-44c9f6dd769b 2019-08-13 19:04:08.169914 12896 1316 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 361\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.2037E4\nmove_type: '1'\nsale_id: 955\ncardnumber: 7964\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-553\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-553 187.149.99.246 d205e1f2-8038-437a-8b36-e18ae43e24b8 2019-08-13 19:04:43.05468 12897 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-11 19:31:47.737629000 Z\n- &1 2019-08-13 00:44:56.984480000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-13 20:24:02.262791709 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938116\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938085\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938085\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085416\n mask_addr: 4294967295\nsign_in_count:\n- 450\n- 451\n 902 \N 189.186.7.104 e06623bc-0bde-4e3a-8e6a-972885d9b540 2019-08-13 20:24:02.273878 12898 4 User \N \N 4 User \N update ---\nunique_session_id:\n- A91wtsmTyZ1vyZ7T5ASB\n- hefqPjpaBTxy3ayiYWx-\n 903 \N 189.186.7.104 e06623bc-0bde-4e3a-8e6a-972885d9b540 2019-08-13 20:24:02.295328 12899 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-13 17:19:52.577463000 Z\n- &1 2019-08-13 17:19:52.731247000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-14 00:14:49.787090877 Z\nsign_in_count:\n- 272\n- 273\n 549 \N 187.149.99.246 af6c94fd-cbe6-41f8-84f1-5a642121e53c 2019-08-14 00:14:49.795468 12900 2 User \N \N 2 User \N update ---\nunique_session_id:\n- "-VBYC-V_a8d8__2zw8zJ"\n- Qg66o-_xcmwU9zeiSGSE\n 550 \N 187.149.99.246 af6c94fd-cbe6-41f8-84f1-5a642121e53c 2019-08-14 00:14:49.816234 12901 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-13 17:19:52.731247000 Z\n- &1 2019-08-14 00:14:49.787090000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-14 00:54:46.443012530 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\nsign_in_count:\n- 273\n- 274\n 551 \N 187.149.55.171 78ba56bb-fdd3-4084-bf34-2e1229149555 2019-08-14 00:54:46.44954 12902 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Qg66o-_xcmwU9zeiSGSE\n- b8uxekuhQweBxhrByU1A\n 552 \N 187.149.55.171 78ba56bb-fdd3-4084-bf34-2e1229149555 2019-08-14 00:54:46.463963 12903 359 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 361\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2237E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 16\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.73E3\nphysical_cash: !ruby/object:BigDecimal 18:0.123E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.55.171 ca2c48fe-88fb-4339-b695-941caec6774f 2019-08-14 00:56:50.858754 12904 361 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 ca2c48fe-88fb-4339-b695-941caec6774f 2019-08-14 00:56:50.875419 12905 362 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.803E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 803.0 187.149.55.171 4024c9f1-c751-4102-9244-182bda2a2704 2019-08-14 00:59:23.718268 12906 956 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 362\namount: !ruby/object:BigDecimal 18:0.829E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.829E3\nstatus: 0\ndate_sale: 2019-08-13\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-401\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 2682490f-76e4-4b95-8e18-c510c2b26017 2019-08-14 01:04:17.4372 12907 757 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.55.171 2682490f-76e4-4b95-8e18-c510c2b26017 2019-08-14 01:04:17.475419 12908 956 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 6190425a-1e7c-4931-8a27-fa6ab9a12ddd 2019-08-14 01:05:22.607887 12909 1317 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 362\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.829E3\nmove_type: '1'\nsale_id: 956\ncardnumber: 7790\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-401\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-401 187.149.55.171 6190425a-1e7c-4931-8a27-fa6ab9a12ddd 2019-08-14 01:05:22.629645 12910 360 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 362\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.829E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.803E3\nphysical_cash: !ruby/object:BigDecimal 18:0.803E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.55.171 f038d4b9-2a20-4271-bc55-07ef9d8b792e 2019-08-14 01:08:15.927145 12911 362 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 f038d4b9-2a20-4271-bc55-07ef9d8b792e 2019-08-14 01:08:15.940151 12912 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-13 00:44:56.984480000 Z\n- &1 2019-08-13 20:24:02.262791000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-14 01:19:29.363710307 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938085\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085416\n mask_addr: 4294967295\nsign_in_count:\n- 451\n- 452\n 904 \N 189.186.7.104 ec6827d6-5aed-4837-9168-c3b856489988 2019-08-14 01:19:29.377493 12913 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hefqPjpaBTxy3ayiYWx-\n- gncfDAFuoWpWkU58k4Cf\n 905 \N 189.186.7.104 ec6827d6-5aed-4837-9168-c3b856489988 2019-08-14 01:19:29.400761 12914 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-12 16:07:47.416830000 Z\n- &1 2019-08-13 16:05:08.595497000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-14 16:11:09.774211420 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\nsign_in_count:\n- 576\n- 577\n 1154 \N 187.149.55.171 d570f029-3f7a-4583-8ef4-449df3f7e8c3 2019-08-14 16:11:09.806341 12915 3 User \N \N 3 User \N update ---\nunique_session_id:\n- yibkk5QxypjfTgYxZss5\n- sA9SbJpeU1EmeSfgZzZx\n 1155 \N 187.149.55.171 d570f029-3f7a-4583-8ef4-449df3f7e8c3 2019-08-14 16:11:09.832306 12916 363 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.803E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 803.0 187.149.55.171 7bbf009c-d006-41cf-bdc6-b5fe181986ef 2019-08-14 16:11:19.523582 12917 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-14 00:14:49.787090000 Z\n- &1 2019-08-14 00:54:46.443012000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-14 16:19:11.933148536 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\nsign_in_count:\n- 274\n- 275\n 553 \N 187.149.55.171 d9b621d8-17a9-4f82-8f92-814b681803df 2019-08-14 16:19:11.940158 12918 2 User \N \N 2 User \N update ---\nunique_session_id:\n- b8uxekuhQweBxhrByU1A\n- qpkPxJcCsUJPJR8noKXg\n 554 \N 187.149.55.171 d9b621d8-17a9-4f82-8f92-814b681803df 2019-08-14 16:19:11.956247 12919 364 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.73E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 730.0 187.149.55.171 566150e6-fffb-4caf-9604-23241b184e6f 2019-08-14 16:41:13.605014 12920 957 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 363\namount: !ruby/object:BigDecimal 18:0.163707E4\ntax: !ruby/object:BigDecimal 18:0.26193E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2019-08-14\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-402\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 5e44a167-80cd-468b-8ba6-2be0ee4a4611 2019-08-14 18:14:38.883453 12921 385 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.55.171 5e44a167-80cd-468b-8ba6-2be0ee4a4611 2019-08-14 18:14:38.930539 12922 957 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 7839f0fb-66f1-4a79-9057-532f32f17bb9 2019-08-14 18:14:54.650968 12923 1318 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 363\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 957\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-402\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-402 187.149.55.171 7839f0fb-66f1-4a79-9057-532f32f17bb9 2019-08-14 18:14:54.679084 12924 1319 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 363\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 957\ncardnumber: 8553\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-402\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-402 187.149.55.171 7e289d41-03fe-4e0e-99ff-fb6d25b3d0c3 2019-08-14 18:15:13.338179 12925 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-13 16:05:08.595497000 Z\n- &1 2019-08-14 16:11:09.774211000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-14 18:45:37.689370852 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\nsign_in_count:\n- 577\n- 578\n 1156 \N 187.149.55.171 c4a24616-496c-4b85-b394-111c961c519f 2019-08-14 18:45:37.719789 12926 3 User \N \N 3 User \N update ---\nunique_session_id:\n- sA9SbJpeU1EmeSfgZzZx\n- amRx6sYp6VqkPamyrVrY\n 1157 \N 187.149.55.171 c4a24616-496c-4b85-b394-111c961c519f 2019-08-14 18:45:37.742683 12927 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-14 16:11:09.774211000 Z\n- &1 2019-08-14 18:45:37.689370000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-14 20:49:23.252661136 Z\nsign_in_count:\n- 578\n- 579\n 1158 \N 187.149.55.171 20272451-6f02-4453-b41a-8292c7c83392 2019-08-14 20:49:23.25849 12928 3 User \N \N 3 User \N update ---\nunique_session_id:\n- amRx6sYp6VqkPamyrVrY\n- UcLaD-cu4s5R9xUXQhhX\n 1159 \N 187.149.55.171 20272451-6f02-4453-b41a-8292c7c83392 2019-08-14 20:49:23.272477 12929 958 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 363\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-08-14\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-403\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 7862dbfa-8318-465d-b1ee-3f33864cd94d 2019-08-14 20:50:05.811921 12930 719 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.55.171 7862dbfa-8318-465d-b1ee-3f33864cd94d 2019-08-14 20:50:05.847701 12931 958 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 94c5f8cd-eaa1-42ec-a9c9-f75ec204eb9a 2019-08-14 20:50:24.418456 12932 1320 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 363\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 958\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-403\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-403 187.149.55.171 94c5f8cd-eaa1-42ec-a9c9-f75ec204eb9a 2019-08-14 20:50:24.458409 12933 959 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 363\namount: !ruby/object:BigDecimal 18:0.99052E3\ntax: !ruby/object:BigDecimal 18:0.15848E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1149E4\nstatus: 0\ndate_sale: 2019-08-14\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-404\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 c472254b-0723-4490-acc1-3dc60cc50839 2019-08-14 21:12:43.913388 12934 750 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.55.171 c472254b-0723-4490-acc1-3dc60cc50839 2019-08-14 21:12:43.962579 12935 959 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 c39a6079-4f61-4577-b82e-eb24569c62a2 2019-08-14 21:15:57.790613 12936 1321 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 363\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1149E4\nmove_type: '1'\nsale_id: 959\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-404\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-404 187.149.55.171 c39a6079-4f61-4577-b82e-eb24569c62a2 2019-08-14 21:15:57.820177 12937 960 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 363\namount: !ruby/object:BigDecimal 18:0.449E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.449E3\nstatus: 0\ndate_sale: 2019-08-14\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-405\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 6bcd0267-64ea-401c-a355-02a7953cce35 2019-08-14 22:24:57.209129 12938 722 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.55.171 6bcd0267-64ea-401c-a355-02a7953cce35 2019-08-14 22:24:57.243264 12939 960 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 f85e6276-64d3-49d7-a5b2-b3ca07c4325b 2019-08-14 22:25:01.744922 12940 1322 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 363\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.449E3\nmove_type: '1'\nsale_id: 960\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-405\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-405 187.149.55.171 f85e6276-64d3-49d7-a5b2-b3ca07c4325b 2019-08-14 22:25:01.771278 12941 961 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 364\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-08-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-554\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 7e3371cb-f048-45bc-a1d5-caf9c8751b8b 2019-08-14 22:32:35.899023 12942 744 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.55.171 7e3371cb-f048-45bc-a1d5-caf9c8751b8b 2019-08-14 22:32:36.016158 12943 961 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 09c04a23-f042-4283-8edc-0ff23a7a9476 2019-08-14 22:34:08.347824 12944 1323 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 364\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 961\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-554\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-554 187.149.55.171 09c04a23-f042-4283-8edc-0ff23a7a9476 2019-08-14 22:34:08.374026 12945 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-14 00:54:46.443012000 Z\n- &1 2019-08-14 16:19:11.933148000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-14 22:46:31.645472788 Z\nsign_in_count:\n- 275\n- 276\n 555 \N 187.149.55.171 8755012f-330f-42a7-b8ce-a10e670c29e4 2019-08-14 22:46:31.653166 12946 2 User \N \N 2 User \N update ---\nunique_session_id:\n- qpkPxJcCsUJPJR8noKXg\n- 6LHziHC-4_5xR3JbZeNP\n 556 \N 187.149.55.171 8755012f-330f-42a7-b8ce-a10e670c29e4 2019-08-14 22:46:31.668165 12947 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-14 16:19:11.933148000 Z\n- &1 2019-08-14 22:46:31.645472000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-14 22:50:36.329813836 Z\nsign_in_count:\n- 276\n- 277\n 557 \N 187.149.55.171 e4570172-01a7-4c7d-b200-f96e0deaf4ea 2019-08-14 22:50:36.335929 12948 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 6LHziHC-4_5xR3JbZeNP\n- xcEqqqR1x1X9AgvQE8iE\n 558 \N 187.149.55.171 e4570172-01a7-4c7d-b200-f96e0deaf4ea 2019-08-14 22:50:36.350839 12949 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-14 18:45:37.689370000 Z\n- &1 2019-08-14 20:49:23.252661000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-14 23:04:27.285945249 Z\nsign_in_count:\n- 579\n- 580\n 1160 \N 187.149.55.171 365ba64e-23e2-46a5-be59-96207d96bae2 2019-08-14 23:04:27.295689 12950 3 User \N \N 3 User \N update ---\nunique_session_id:\n- UcLaD-cu4s5R9xUXQhhX\n- T85uCbGznxxafSVFPxpZ\n 1161 \N 187.149.55.171 365ba64e-23e2-46a5-be59-96207d96bae2 2019-08-14 23:04:27.319317 12951 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-14 20:49:23.252661000 Z\n- &1 2019-08-14 23:04:27.285945000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-15 00:58:34.264759426 Z\nsign_in_count:\n- 580\n- 581\n 1162 \N 187.149.55.171 6368b72d-11dc-46b0-93f2-9730800b622a 2019-08-15 00:58:34.271484 12952 3 User \N \N 3 User \N update ---\nunique_session_id:\n- T85uCbGznxxafSVFPxpZ\n- 8s_2sCMfgd2jAbGxxLbL\n 1163 \N 187.149.55.171 6368b72d-11dc-46b0-93f2-9730800b622a 2019-08-15 00:58:34.483753 12953 361 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 363\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.4596E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.37E4\ncash_fund: !ruby/object:BigDecimal 18:0.699E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4399E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.55.171 b80752c2-b3b5-435d-b35f-a2ff1f583b92 2019-08-15 01:01:47.752558 12954 363 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 b80752c2-b3b5-435d-b35f-a2ff1f583b92 2019-08-15 01:01:47.7731 12955 362 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 364\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.699E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 16\nreceived_cash: !ruby/object:BigDecimal 18:0.9E3\ncash_fund: !ruby/object:BigDecimal 18:0.779E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1679E4\nobservations: SE VENDIO $250 DE UN BLAZER QUE NO ESTABA EN EL SISTEMA\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.55.171 7178ff00-a13d-4742-8983-e2df140d7319 2019-08-15 01:13:46.611172 12956 364 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 7178ff00-a13d-4742-8983-e2df140d7319 2019-08-15 01:13:46.630775 12957 363 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 364\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.699E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 16\nreceived_cash: !ruby/object:BigDecimal 18:0.9E3\ncash_fund: !ruby/object:BigDecimal 18:0.779E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1679E4\nobservations: SE VENDIO $250 DE UN BLAZER QUE NO ESTABA EN EL SISTEMA\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.55.171 15351803-79f3-4969-9880-0f84df41be6a 2019-08-15 01:13:46.727401 12958 364 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 364\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.699E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 16\nreceived_cash: !ruby/object:BigDecimal 18:0.9E3\ncash_fund: !ruby/object:BigDecimal 18:0.779E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1679E4\nobservations: SE VENDIO $250 DE UN BLAZER QUE NO ESTABA EN EL SISTEMA\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.55.171 b6b5f2c9-e991-4344-8f7d-54e069dc9472 2019-08-15 01:13:46.807008 12959 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-13 20:24:02.262791000 Z\n- &1 2019-08-14 01:19:29.363710000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-15 01:20:13.185466956 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085416\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933976\n mask_addr: 4294967295\nsign_in_count:\n- 452\n- 453\n 906 \N 200.68.134.24 4465e397-5c93-4edf-bad0-cf10f0a438cd 2019-08-15 01:20:13.193435 12960 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gncfDAFuoWpWkU58k4Cf\n- Y4mcyau-xSJoFTgKmQtG\n 907 \N 200.68.134.24 4465e397-5c93-4edf-bad0-cf10f0a438cd 2019-08-15 01:20:13.208278 12961 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-14 23:04:27.285945000 Z\n- &1 2019-08-15 00:58:34.264759000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-15 16:14:19.000956251 Z\nsign_in_count:\n- 581\n- 582\n 1164 \N 187.149.55.171 cf82368c-a250-4752-b9ec-27b0f53e4196 2019-08-15 16:14:19.032397 12962 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 8s_2sCMfgd2jAbGxxLbL\n- pk93KosPcXmszAzH6MRC\n 1165 \N 187.149.55.171 cf82368c-a250-4752-b9ec-27b0f53e4196 2019-08-15 16:14:19.063894 12963 365 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.699E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 699.0 187.149.55.171 f88d19c6-0925-4621-bc2b-6542b2c4f6f3 2019-08-15 16:14:31.701712 12964 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-14 22:46:31.645472000 Z\n- &1 2019-08-14 22:50:36.329813000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-15 17:13:28.152219728 Z\nsign_in_count:\n- 277\n- 278\n 559 \N 187.149.55.171 890348ee-b15b-43f5-a407-b2ef8b5022e5 2019-08-15 17:13:28.183067 12965 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xcEqqqR1x1X9AgvQE8iE\n- GgcT_LBdh71QDa3NxeS5\n 560 \N 187.149.55.171 890348ee-b15b-43f5-a407-b2ef8b5022e5 2019-08-15 17:13:28.204136 12966 366 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.779E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 779.0 187.149.55.171 be5c2310-3438-4f85-a08c-32b278e9f24d 2019-08-15 17:13:47.02265 12967 962 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 366\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.139E3\ntotal: !ruby/object:BigDecimal 18:0.56E3\nstatus: 0\ndate_sale: 2019-08-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-555\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 967334b6-b0c0-4773-8e28-ab2fe9aad7cf 2019-08-15 18:40:30.979309 12968 527 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.55.171 967334b6-b0c0-4773-8e28-ab2fe9aad7cf 2019-08-15 18:40:31.022366 12969 962 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 dfd9b202-5191-42c6-ada4-a725448151cb 2019-08-15 18:40:42.194834 12970 1324 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 366\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.56E3\nmove_type: '1'\nsale_id: 962\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-555\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.56E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-555 187.149.55.171 dfd9b202-5191-42c6-ada4-a725448151cb 2019-08-15 18:40:42.223395 12971 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-15 00:58:34.264759000 Z\n- &1 2019-08-15 16:14:19.000956000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-15 18:41:24.784233918 Z\nsign_in_count:\n- 582\n- 583\n 1166 \N 187.149.55.171 bcf9be9c-7492-432d-9115-d5afcd229621 2019-08-15 18:41:24.791408 12972 3 User \N \N 3 User \N update ---\nunique_session_id:\n- pk93KosPcXmszAzH6MRC\n- dxwQ_hgEWk-tdHQZqxmc\n 1167 \N 187.149.55.171 bcf9be9c-7492-432d-9115-d5afcd229621 2019-08-15 18:41:24.807584 12973 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-15 16:14:19.000956000 Z\n- &1 2019-08-15 18:41:24.784233000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-15 18:47:19.269782765 Z\nsign_in_count:\n- 583\n- 584\n 1168 \N 187.149.55.171 e73c2b72-0610-426a-b751-02d630e66af1 2019-08-15 18:47:19.282028 12974 3 User \N \N 3 User \N update ---\nunique_session_id:\n- dxwQ_hgEWk-tdHQZqxmc\n- TgZPVrdQg-YB3h-CAzCL\n 1169 \N 187.149.55.171 e73c2b72-0610-426a-b751-02d630e66af1 2019-08-15 18:47:19.301368 12975 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-14 01:19:29.363710000 Z\n- &1 2019-08-15 01:20:13.185466000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-15 19:56:19.614499769 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085416\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933976\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933976\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138155\n mask_addr: 4294967295\nsign_in_count:\n- 453\n- 454\n 908 \N 189.186.213.107 72988dc6-c02f-4afc-a567-a7f437307f34 2019-08-15 19:56:19.624329 12976 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Y4mcyau-xSJoFTgKmQtG\n- LZDx3cywCASjew-NFefw\n 909 \N 189.186.213.107 72988dc6-c02f-4afc-a567-a7f437307f34 2019-08-15 19:56:19.642921 12977 963 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 366\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-08-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-556\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 fa050490-00e6-4e35-b888-203cb159011f 2019-08-15 20:40:13.553857 12978 507 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.55.171 fa050490-00e6-4e35-b888-203cb159011f 2019-08-15 20:40:13.581132 12979 963 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 169b63cd-e7dc-4f5f-889b-23cdb6de7a6c 2019-08-15 20:41:09.082914 12980 1325 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 366\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 963\ncardnumber: 8108\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-556\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-556 187.149.55.171 169b63cd-e7dc-4f5f-889b-23cdb6de7a6c 2019-08-15 20:41:09.103444 12981 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-14 22:50:36.329813000 Z\n- &1 2019-08-15 17:13:28.152219000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-15 22:52:54.563292871 Z\nsign_in_count:\n- 278\n- 279\n 561 \N 187.149.55.171 b2a22740-a573-4b09-a57e-5dca5fe8bb08 2019-08-15 22:52:54.569494 12982 2 User \N \N 2 User \N update ---\nunique_session_id:\n- GgcT_LBdh71QDa3NxeS5\n- "-yL4J2ByNwx4eCGW9WxU"\n 562 \N 187.149.55.171 b2a22740-a573-4b09-a57e-5dca5fe8bb08 2019-08-15 22:52:54.583497 12983 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-15 01:20:13.185466000 Z\n- &1 2019-08-15 19:56:19.614499000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-16 00:28:44.880042717 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933976\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138155\n mask_addr: 4294967295\nsign_in_count:\n- 454\n- 455\n 910 \N 189.186.213.107 24357432-3200-446a-a188-e3658df31f90 2019-08-16 00:28:44.887263 12984 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LZDx3cywCASjew-NFefw\n- qB6_91W8CHFRnsm3bTPu\n 911 \N 189.186.213.107 24357432-3200-446a-a188-e3658df31f90 2019-08-16 00:28:44.903723 12985 156 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 365\nquantity: !ruby/object:BigDecimal 18:0.2E3\nstatus: 1\nobservations: yaretzi\nexpense_date: 2019-08-15\nexpense_code: PV2-E-31\n 1 Egreso por 200.0 registrado 187.149.55.171 9a0803c9-0b74-4dc8-bf99-fdba2380d125 2019-08-16 00:55:38.207183 12986 1326 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 365\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 156\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.55.171 9a0803c9-0b74-4dc8-bf99-fdba2380d125 2019-08-16 00:55:38.239004 12987 365 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 365\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.2E3\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.5E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.55.171 0aaba86e-451a-415b-84ba-37088ed383d6 2019-08-16 00:55:58.479475 12988 365 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 0aaba86e-451a-415b-84ba-37088ed383d6 2019-08-16 00:55:58.496879 12989 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-15 17:13:28.152219000 Z\n- &1 2019-08-15 22:52:54.563292000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-16 01:03:33.696997916 Z\nsign_in_count:\n- 279\n- 280\n 563 \N 187.149.55.171 b0e08898-b11e-4c11-b2cc-b171ddf4333f 2019-08-16 01:03:33.707226 12990 2 User \N \N 2 User \N update ---\nunique_session_id:\n- "-yL4J2ByNwx4eCGW9WxU"\n- DyCi6DS4X6xHeakhyu-4\n 564 \N 187.149.55.171 b0e08898-b11e-4c11-b2cc-b171ddf4333f 2019-08-16 01:03:33.731484 12991 157 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 366\nquantity: !ruby/object:BigDecimal 18:0.1E4\nstatus: 1\nobservations: sueldo yaretzi\nexpense_date: 2019-08-15\nexpense_code: PV1-E-126\n 1 Egreso por 1000.0 registrado 187.149.55.171 1e46d626-c74d-479b-a387-4813db4d4ac3 2019-08-16 01:04:01.893292 12992 1327 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 366\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 157\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.55.171 1e46d626-c74d-479b-a387-4813db4d4ac3 2019-08-16 01:04:01.953662 12993 366 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 366\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1059E4\namount_out: !ruby/object:BigDecimal 18:0.1E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.339E3\nphysical_cash: !ruby/object:BigDecimal 18:0.339E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.55.171 4bd6f3ff-5c12-4eb8-9001-7a1133406b01 2019-08-16 01:07:36.292215 12994 366 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 4bd6f3ff-5c12-4eb8-9001-7a1133406b01 2019-08-16 01:07:36.310898 13041 967 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 8758b324-08b9-4d44-8233-96fd3e54c00f 2019-08-17 21:02:19.033559 12995 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-15 22:52:54.563292000 Z\n- &1 2019-08-16 01:03:33.696997000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-16 16:12:47.654473755 Z\nsign_in_count:\n- 280\n- 281\n 565 \N 187.149.55.171 1825a13d-7912-4207-81ce-e73394e768f6 2019-08-16 16:12:47.68553 12996 2 User \N \N 2 User \N update ---\nunique_session_id:\n- DyCi6DS4X6xHeakhyu-4\n- Hs72zzSXJysyMmqzx3kb\n 566 \N 187.149.55.171 1825a13d-7912-4207-81ce-e73394e768f6 2019-08-16 16:12:47.709859 12997 367 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.339E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 339.0 187.149.55.171 4b098aff-5d7f-4b90-baa7-6d6ee951a2ac 2019-08-16 16:13:26.233837 12998 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-15 18:41:24.784233000 Z\n- &1 2019-08-15 18:47:19.269782000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-16 19:00:15.251810275 Z\nsign_in_count:\n- 584\n- 585\n 1170 \N 187.149.55.171 e6b21947-e1e1-4f77-8bad-e45eb08e7a9d 2019-08-16 19:00:15.261499 12999 3 User \N \N 3 User \N update ---\nunique_session_id:\n- TgZPVrdQg-YB3h-CAzCL\n- 3Yx7VRdMwz_RJDEHYzyC\n 1171 \N 187.149.55.171 e6b21947-e1e1-4f77-8bad-e45eb08e7a9d 2019-08-16 19:00:15.280612 13000 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-15 19:56:19.614499000 Z\n- &1 2019-08-16 00:28:44.880042000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-16 19:07:10.164616812 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138155\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933998\n mask_addr: 4294967295\nsign_in_count:\n- 455\n- 456\n 912 \N 200.68.134.46 2207b708-4e68-4db7-9535-7de8a4604b1d 2019-08-16 19:07:10.173084 13001 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qB6_91W8CHFRnsm3bTPu\n- ayy9PKtFKSSH7sUAg_t2\n 913 \N 200.68.134.46 2207b708-4e68-4db7-9535-7de8a4604b1d 2019-08-16 19:07:10.189842 13002 964 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 367\namount: !ruby/object:BigDecimal 18:0.669E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-08-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-557\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 3f9965c9-b3bf-481d-be65-6fc755974cb1 2019-08-16 20:01:27.888984 13003 708 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.55.171 3f9965c9-b3bf-481d-be65-6fc755974cb1 2019-08-16 20:01:27.956445 13004 964 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 9cf82c38-ccce-46af-8bd2-7bb598f1dba4 2019-08-16 20:05:27.962577 13005 1328 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 367\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.669E3\nmove_type: '1'\nsale_id: 964\ncardnumber: 9112\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-557\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-557 187.149.55.171 9cf82c38-ccce-46af-8bd2-7bb598f1dba4 2019-08-16 20:05:27.985156 13006 965 Sale \N \N 2 User \N create ---\ncustomer_id: 122\nuser_id: 2\nopen_cash_register_id: 367\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-08-16\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-558\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 63920a07-85e1-4e35-8906-a9e782df708b 2019-08-16 20:50:49.215199 13007 711 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.55.171 63920a07-85e1-4e35-8906-a9e782df708b 2019-08-16 20:50:49.256842 13008 1329 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 303\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 836\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.55.171 1fd96faa-ab91-4fbd-8860-e3ed82de1a30 2019-08-16 20:51:45.569882 13009 1329 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 303\n- 367\n 2 movimiento de efectivo por venta con folio PV1-V-474 187.149.55.171 1fd96faa-ab91-4fbd-8860-e3ed82de1a30 2019-08-16 20:51:45.597597 13010 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-16 00:28:44.880042000 Z\n- &1 2019-08-16 19:07:10.164616000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-16 23:31:41.790163821 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138155\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933998\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933998\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946417\n mask_addr: 4294967295\nsign_in_count:\n- 456\n- 457\n 914 \N 200.68.182.177 55902e96-f96f-45e6-bbbf-5d8f57fd5cb0 2019-08-16 23:31:41.799062 13011 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ayy9PKtFKSSH7sUAg_t2\n- jqgsAqfR2ywzjWsy1HYW\n 915 \N 200.68.182.177 55902e96-f96f-45e6-bbbf-5d8f57fd5cb0 2019-08-16 23:31:41.815976 13012 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-16 19:07:10.164616000 Z\n- &1 2019-08-16 23:31:41.790163000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-17 00:35:17.905734848 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933998\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946417\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946417\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\nsign_in_count:\n- 457\n- 458\n 916 \N 187.149.55.171 06b2cb6b-7a0c-4320-b82f-0c7324380b5b 2019-08-17 00:35:17.913612 13013 4 User \N \N 4 User \N update ---\nunique_session_id:\n- jqgsAqfR2ywzjWsy1HYW\n- bLpSsWvXbks-KRw-1hzv\n 917 \N 187.149.55.171 06b2cb6b-7a0c-4320-b82f-0c7324380b5b 2019-08-17 00:35:17.929386 13014 966 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 367\namount: !ruby/object:BigDecimal 18:0.94503E3\ntax: !ruby/object:BigDecimal 18:0.7296E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.101799E4\nstatus: 0\ndate_sale: 2019-08-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-559\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 ea98257a-cced-493a-90a9-787a637a3cb5 2019-08-17 01:03:35.897141 13015 636 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 187.149.55.171 ea98257a-cced-493a-90a9-787a637a3cb5 2019-08-17 01:03:35.929303 13016 198 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.55.171 ea98257a-cced-493a-90a9-787a637a3cb5 2019-08-17 01:03:35.960406 13017 966 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 5121823d-3480-4ee3-a8bb-182257b4a6e1 2019-08-17 01:03:45.374338 13065 970 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 13a96bc8-203e-474a-a68d-955ceec11b1e 2019-08-17 22:38:53.114441 13018 1330 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 367\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.101799E4\nmove_type: '1'\nsale_id: 966\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-559\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.101799E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-559 187.149.55.171 5121823d-3480-4ee3-a8bb-182257b4a6e1 2019-08-17 01:03:45.408129 13019 158 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 367\nquantity: !ruby/object:BigDecimal 18:0.16E3\nstatus: 1\nobservations: LABIAL VENDIDO CON TARJETA\nexpense_date: 2019-08-16\nexpense_code: PV1-E-127\n 1 Egreso por 160.0 registrado 187.149.55.171 9b23107f-7920-469f-acd3-19fe33891bf2 2019-08-17 01:08:44.677644 13020 1331 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 367\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.16E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 158\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.55.171 9b23107f-7920-469f-acd3-19fe33891bf2 2019-08-17 01:08:44.701351 13021 367 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 367\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.203699E4\namount_out: !ruby/object:BigDecimal 18:0.16E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.547E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1547E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.55.171 1f2fa7ee-7ae8-477d-a990-303f13fc3ee9 2019-08-17 01:17:43.730488 13022 367 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 1f2fa7ee-7ae8-477d-a990-303f13fc3ee9 2019-08-17 01:17:43.776156 13023 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-15 18:47:19.269782000 Z\n- &1 2019-08-16 19:00:15.251810000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-17 01:32:19.441055850 Z\nsign_in_count:\n- 585\n- 586\n 1172 \N 187.149.55.171 2ab241aa-6173-42e4-8a30-50f92d04f6d7 2019-08-17 01:32:19.479964 13024 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 3Yx7VRdMwz_RJDEHYzyC\n- wqu_wz9J_8x22qsMhz6r\n 1173 \N 187.149.55.171 2ab241aa-6173-42e4-8a30-50f92d04f6d7 2019-08-17 01:32:19.508666 13025 368 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.5E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 500.0 187.149.55.171 8b0caa38-5572-444c-9c45-c4d63538dfd6 2019-08-17 01:33:06.337323 13026 159 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 368\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: ''\nexpense_date: 2019-08-16\nexpense_code: PV2-E-32\n 1 Egreso por 50.0 registrado 187.149.55.171 e34804b6-6911-40e5-9514-dbcbcbb8d18d 2019-08-17 01:33:27.444479 13027 11 Purchase \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 e34804b6-6911-40e5-9514-dbcbcbb8d18d 2019-08-17 01:33:27.461667 13028 1332 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 368\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: 11\nexpense_id: 159\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.55.171 e34804b6-6911-40e5-9514-dbcbcbb8d18d 2019-08-17 01:33:27.51276 13029 368 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 368\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.45E3\nphysical_cash: !ruby/object:BigDecimal 18:0.45E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.55.171 975db9ca-8620-4eb0-813d-ae5784e239a9 2019-08-17 01:33:49.773424 13030 368 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 975db9ca-8620-4eb0-813d-ae5784e239a9 2019-08-17 01:33:49.790738 13031 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-16 19:00:15.251810000 Z\n- &1 2019-08-17 01:32:19.441055000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-17 16:13:06.601486395 Z\nsign_in_count:\n- 586\n- 587\n 1174 \N 187.149.55.171 7b383d7e-1ead-4361-8410-5a995311d1d5 2019-08-17 16:13:06.631641 13032 3 User \N \N 3 User \N update ---\nunique_session_id:\n- wqu_wz9J_8x22qsMhz6r\n- _H1YBxtVzHxHqigpc7Li\n 1175 \N 187.149.55.171 7b383d7e-1ead-4361-8410-5a995311d1d5 2019-08-17 16:13:06.655798 13033 369 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.45E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 450.0 187.149.55.171 e33d08f1-205f-4581-8c0b-5c0930274ed5 2019-08-17 16:13:17.37301 13034 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-16 23:31:41.790163000 Z\n- &1 2019-08-17 00:35:17.905734000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-17 19:06:14.104980810 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946417\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946182\n mask_addr: 4294967295\nsign_in_count:\n- 458\n- 459\n 918 \N 200.68.181.198 32cfcfe2-8c29-4881-860d-0c21063d54de 2019-08-17 19:06:14.136974 13035 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bLpSsWvXbks-KRw-1hzv\n- Ukpb3oMnY_dfa7XsnnYn\n 919 \N 200.68.181.198 32cfcfe2-8c29-4881-860d-0c21063d54de 2019-08-17 19:06:14.160962 13036 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-16 01:03:33.696997000 Z\n- &1 2019-08-16 16:12:47.654473000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-17 21:01:30.315078913 Z\nsign_in_count:\n- 281\n- 282\n 567 \N 187.149.55.171 82566bb5-52de-44a1-baa4-5c197324ec4c 2019-08-17 21:01:30.32044 13037 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Hs72zzSXJysyMmqzx3kb\n- VXmSF26eSDSjNa28bauX\n 568 \N 187.149.55.171 82566bb5-52de-44a1-baa4-5c197324ec4c 2019-08-17 21:01:30.333885 13038 370 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.547E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 547.0 187.149.55.171 33dc314f-4a42-43f0-9b87-03d1b74254d2 2019-08-17 21:01:43.104411 13039 967 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 370\namount: !ruby/object:BigDecimal 18:0.38072E3\ntax: !ruby/object:BigDecimal 18:0.2828E2\ndiscount: !ruby/object:BigDecimal 18:0.204E3\ntotal: !ruby/object:BigDecimal 18:0.205E3\nstatus: 0\ndate_sale: 2019-08-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-560\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 1e984af9-8f07-4533-aa3f-0708257a6599 2019-08-17 21:02:14.334833 13040 63 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.55.171 1e984af9-8f07-4533-aa3f-0708257a6599 2019-08-17 21:02:14.370149 13042 1333 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 370\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.205E3\nmove_type: '1'\nsale_id: 967\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-560\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.205E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-560 187.149.55.171 8758b324-08b9-4d44-8233-96fd3e54c00f 2019-08-17 21:02:19.055992 13043 968 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 370\namount: !ruby/object:BigDecimal 18:0.1358E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1358E4\nstatus: 0\ndate_sale: 2019-08-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-561\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 34e06154-0a3f-4c8d-99f6-62ff5b733a04 2019-08-17 21:16:33.7594 13044 744 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.55.171 34e06154-0a3f-4c8d-99f6-62ff5b733a04 2019-08-17 21:16:33.805049 13045 700 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.55.171 34e06154-0a3f-4c8d-99f6-62ff5b733a04 2019-08-17 21:16:33.853751 13046 968 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 e0cb4555-5938-4239-a9cb-05d857aff99b 2019-08-17 21:19:09.3137 13047 1334 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 370\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1358E4\nmove_type: '1'\nsale_id: 968\ncardnumber: 7198\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-561\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-561 187.149.55.171 e0cb4555-5938-4239-a9cb-05d857aff99b 2019-08-17 21:19:09.345164 13048 160 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 370\nquantity: !ruby/object:BigDecimal 18:0.29E3\nstatus: 1\nobservations: ARETES VENDIDOS CON TARJETA\nexpense_date: 2019-08-17\nexpense_code: PV1-E-128\n 1 Egreso por 290.0 registrado 187.149.55.171 8a94b64b-9993-42f2-b0eb-7d588a66634d 2019-08-17 21:30:51.713941 13049 1335 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 370\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.29E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 160\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.55.171 8a94b64b-9993-42f2-b0eb-7d588a66634d 2019-08-17 21:30:51.736838 13050 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-17 00:35:17.905734000 Z\n- &1 2019-08-17 19:06:14.104980000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-17 21:42:49.798332866 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946182\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946182\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933957\n mask_addr: 4294967295\nsign_in_count:\n- 459\n- 460\n 920 \N 200.68.134.5 a9e92c5a-9db0-4725-8c6d-e4bb6fd454e4 2019-08-17 21:42:49.806598 13051 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Ukpb3oMnY_dfa7XsnnYn\n- KTKEzpjT5DZH52ks_xPn\n 921 \N 200.68.134.5 a9e92c5a-9db0-4725-8c6d-e4bb6fd454e4 2019-08-17 21:42:49.822427 13052 969 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 370\namount: !ruby/object:BigDecimal 18:0.118538E4\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1268E4\nstatus: 0\ndate_sale: 2019-08-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-562\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 10356a18-e13f-44d6-a588-763de54dbdd2 2019-08-17 22:08:17.650987 13053 153 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.55.171 10356a18-e13f-44d6-a588-763de54dbdd2 2019-08-17 22:08:17.683785 13054 708 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.55.171 10356a18-e13f-44d6-a588-763de54dbdd2 2019-08-17 22:08:17.708327 13055 969 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 ea707caf-108a-44fd-ac1a-8e5ad3055e8a 2019-08-17 22:10:13.907596 13056 1336 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 370\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1268E4\nmove_type: '1'\nsale_id: 969\ncardnumber: 820\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-562\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-562 187.149.55.171 ea707caf-108a-44fd-ac1a-8e5ad3055e8a 2019-08-17 22:10:13.928523 13057 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-16 16:12:47.654473000 Z\n- &1 2019-08-17 21:01:30.315078000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-17 22:13:38.874297360 Z\nsign_in_count:\n- 282\n- 283\n 569 \N 187.149.55.171 e444c459-60e1-4511-be8f-046ef8da1849 2019-08-17 22:13:38.881423 13058 2 User \N \N 2 User \N update ---\nunique_session_id:\n- VXmSF26eSDSjNa28bauX\n- 443XEPcJMLh7EyY28t8G\n 570 \N 187.149.55.171 e444c459-60e1-4511-be8f-046ef8da1849 2019-08-17 22:13:38.894525 13059 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-17 21:01:30.315078000 Z\n- &1 2019-08-17 22:13:38.874297000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-17 22:13:39.409944143 Z\nsign_in_count:\n- 283\n- 284\n 571 \N 187.149.55.171 9a2fca28-77ca-41c0-b5a8-09231c0992d1 2019-08-17 22:13:39.415862 13060 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 443XEPcJMLh7EyY28t8G\n- zdPFDBRmLuSxVvatRj5H\n 572 \N 187.149.55.171 9a2fca28-77ca-41c0-b5a8-09231c0992d1 2019-08-17 22:13:39.429254 13061 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-17 22:13:38.874297000 Z\n- &1 2019-08-17 22:13:39.409944000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-17 22:35:39.761667228 Z\nsign_in_count:\n- 284\n- 285\n 573 \N 187.149.55.171 f1480aa3-69bc-4a36-85e3-b0767be4bbee 2019-08-17 22:35:39.767125 13062 2 User \N \N 2 User \N update ---\nunique_session_id:\n- zdPFDBRmLuSxVvatRj5H\n- EtYYe7D-V4RvoUjDqaB5\n 574 \N 187.149.55.171 f1480aa3-69bc-4a36-85e3-b0767be4bbee 2019-08-17 22:35:39.780598 13063 970 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 370\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-08-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-563\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 1efc873b-a2d1-400f-9c5c-f81e424a07f8 2019-08-17 22:38:11.869465 13064 51 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.55.171 1efc873b-a2d1-400f-9c5c-f81e424a07f8 2019-08-17 22:38:11.898983 13066 1337 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 370\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 970\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-563\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: vale por devolucion\ncheck_number: '0000'\ncustomer_account: '0000'\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-563 187.149.55.171 13a96bc8-203e-474a-a68d-955ceec11b1e 2019-08-17 22:38:53.138601 13067 1338 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 370\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 970\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-563\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-563 187.149.55.171 be6d62cd-a8ea-431b-b50a-81708a3b6f1c 2019-08-17 22:40:03.124704 13068 161 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 370\nquantity: !ruby/object:BigDecimal 18:0.928E3\nstatus: 1\nobservations: Sueldo Rocio\nexpense_date: 2019-08-17\nexpense_code: PV1-E-129\n 1 Egreso por 928.0 registrado 187.149.55.171 da4227f4-829c-4355-8a2d-911fd8187bfb 2019-08-17 22:57:24.334373 13069 1339 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 370\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.928E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 161\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.55.171 da4227f4-829c-4355-8a2d-911fd8187bfb 2019-08-17 22:57:24.370854 13070 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-08-08 00:11:05.462668000 Z\n- &1 2019-08-10 22:37:44.157158000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-17 23:36:38.128287937 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138155\n mask_addr: 4294967295\nsign_in_count:\n- 73\n- 74\n 148 \N 189.186.213.107 11acb927-1dcc-4f38-b606-83437025617b 2019-08-17 23:36:38.135203 13071 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 9GCtPpCd5fm_ayLvoEV6\n- ashcrjcb1KyWD6xM7nwj\n 149 \N 189.186.213.107 11acb927-1dcc-4f38-b606-83437025617b 2019-08-17 23:36:38.150673 13072 1340 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 182\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.213.107 9f93614a-6162-4f20-95b5-8542b325c67f 2019-08-17 23:38:26.51758 13073 1340 CashRegistersMove \N \N 9 User \N update ---\nopen_cash_register_id:\n- 49\n- 370\n 2 movimiento de efectivo por venta con folio PV1-V-104 189.186.213.107 9f93614a-6162-4f20-95b5-8542b325c67f 2019-08-17 23:38:26.541512 13074 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-17 19:06:14.104980000 Z\n- &1 2019-08-17 21:42:49.798332000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-18 00:06:26.518731973 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946182\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933957\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933957\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138155\n mask_addr: 4294967295\nsign_in_count:\n- 460\n- 461\n 922 \N 189.186.213.107 b8c09b7d-cebe-45c5-be87-3b0bc4daae26 2019-08-18 00:06:26.527781 13075 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KTKEzpjT5DZH52ks_xPn\n- ht3b5vK6FsTyChZtvTye\n 923 \N 189.186.213.107 b8c09b7d-cebe-45c5-be87-3b0bc4daae26 2019-08-18 00:06:26.544681 13076 162 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 369\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: yaretzi\nexpense_date: 2019-08-17\nexpense_code: PV2-E-33\n 1 Egreso por 50.0 registrado 187.149.55.171 4e66067f-71b4-418e-a590-bd60786670ab 2019-08-18 01:02:38.003494 13077 1341 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 369\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 162\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.55.171 4e66067f-71b4-418e-a590-bd60786670ab 2019-08-18 01:02:38.031042 13078 369 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 369\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 13\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.4E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.55.171 bdd99a34-2fb6-4bc8-8cf7-975052237e25 2019-08-18 01:03:45.829738 13079 369 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 bdd99a34-2fb6-4bc8-8cf7-975052237e25 2019-08-18 01:03:45.851059 13080 640 Product \N \N 4 User \N create ---\nsku: JUM-640\nname: V-0070\ndescription: JUMPER OLIVO BRILLOS\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 1\nproduct_service_key: '01010101'\n 1 El producto JUM-640 fue creado. 189.186.213.107 bc68de60-25d6-4549-b389-4d25dd57f18f 2019-08-18 01:25:00.675584 13081 640 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000640'\n 2 \N 189.186.213.107 bc68de60-25d6-4549-b389-4d25dd57f18f 2019-08-18 01:25:00.723205 13082 115 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-4\namount: !ruby/object:BigDecimal 18:0.37475E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.37475E4\nobservations: ''\npurchase_date: 2019-08-17\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-4 por $ 3747.5 MXN creada. 189.186.213.107 155e522a-1329-48c9-93a8-7f14e1709b6e 2019-08-18 01:25:29.422873 13083 163 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 370\nquantity: !ruby/object:BigDecimal 18:0.4E3\nstatus: 1\nobservations: 'sueldo rocio eran $1328 '\nexpense_date: 2019-08-17\nexpense_code: PV1-E-130\n 1 Egreso por 400.0 registrado 187.149.55.171 05e658f8-2ec3-4b28-9bd3-4d33f948ab39 2019-08-18 01:28:39.506172 13084 1342 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 370\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 163\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.55.171 05e658f8-2ec3-4b28-9bd3-4d33f948ab39 2019-08-18 01:28:39.533127 13085 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-17 21:42:49.798332000 Z\n- &1 2019-08-18 00:06:26.518731000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-18 01:29:02.004344511 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933957\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138155\n mask_addr: 4294967295\nsign_in_count:\n- 461\n- 462\n 924 \N 189.186.213.107 ee375f0a-08ba-4a30-8d30-e2cd09f3e07a 2019-08-18 01:29:02.012638 13086 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ht3b5vK6FsTyChZtvTye\n- pkEP7gv_imrxiFP6jQTE\n 925 \N 189.186.213.107 ee375f0a-08ba-4a30-8d30-e2cd09f3e07a 2019-08-18 01:29:02.028829 13087 370 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 370\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.453E4\namount_out: !ruby/object:BigDecimal 18:0.1618E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.633E3\nphysical_cash: !ruby/object:BigDecimal 18:0.633E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.55.171 e2bb49d0-64df-4548-aaa0-3c9331947bc7 2019-08-18 01:43:40.65358 13088 370 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 e2bb49d0-64df-4548-aaa0-3c9331947bc7 2019-08-18 01:43:40.667845 13089 5 User \N \N 5 User \N update ---\nlast_sign_in_at:\n- 2019-05-26 23:29:22.861727000 Z\n- &1 2019-05-26 23:36:53.283438000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-18 02:58:48.593869376 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3187423707\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3187429166\n mask_addr: 4294967295\nsign_in_count:\n- 24\n- 25\n 50 \N 189.252.79.46 ae89c8a3-2daa-4979-b3b9-c0933099e579 2019-08-18 02:58:48.601729 13090 5 User \N \N 5 User \N update ---\nunique_session_id:\n- 4fxTdWf3mktzAQegJ_eQ\n- GYeEsfUBcdx7svbyyDD5\n 51 \N 189.252.79.46 ae89c8a3-2daa-4979-b3b9-c0933099e579 2019-08-18 02:58:48.617188 13091 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-17 22:13:39.409944000 Z\n- &1 2019-08-17 22:35:39.761667000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-18 16:05:16.377745155 Z\nsign_in_count:\n- 285\n- 286\n 575 \N 187.149.55.171 680b419f-57a0-4f3b-ae73-d2f95c9b9d8a 2019-08-18 16:05:16.405868 13092 2 User \N \N 2 User \N update ---\nunique_session_id:\n- EtYYe7D-V4RvoUjDqaB5\n- qjJKa7vz8ZoFsCm8eE5f\n 576 \N 187.149.55.171 680b419f-57a0-4f3b-ae73-d2f95c9b9d8a 2019-08-18 16:05:16.428849 13093 371 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.633E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 633.0 187.149.55.171 a068653d-481b-475a-aea2-e97071bd5562 2019-08-18 16:06:07.560034 13094 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-18 00:06:26.518731000 Z\n- &1 2019-08-18 01:29:02.004344000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-18 19:10:09.293481787 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138155\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933957\n mask_addr: 4294967295\nsign_in_count:\n- 462\n- 463\n 926 \N 200.68.134.5 852cd2b4-5805-455f-bf43-79dabe449e53 2019-08-18 19:10:09.299984 13095 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pkEP7gv_imrxiFP6jQTE\n- 8xYTqHCSMLw21-xmt62D\n 927 \N 200.68.134.5 852cd2b4-5805-455f-bf43-79dabe449e53 2019-08-18 19:10:09.315035 13096 971 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 371\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-08-18\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-564\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 ff844360-1e2a-49c2-9371-8243b3d24bc9 2019-08-18 19:16:41.923873 13097 748 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.55.171 ff844360-1e2a-49c2-9371-8243b3d24bc9 2019-08-18 19:16:41.957122 13098 971 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 43d06b16-2f95-43f0-941d-ef8e2ee07c92 2019-08-18 19:17:54.699346 13099 1343 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 371\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 971\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-564\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-564 187.149.55.171 43d06b16-2f95-43f0-941d-ef8e2ee07c92 2019-08-18 19:17:54.722802 13100 641 Product \N \N 5 User \N create ---\nsku: VES-PRM-641\nname: prueba\ndescription: prueba\nprice_base: !ruby/object:BigDecimal 18:0.1E3\nprice_sale: !ruby/object:BigDecimal 18:0.2E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 18\nproduct_service_key: '01010101'\n 1 El producto VES-PRM-641 fue creado. 189.252.79.46 11ea65bd-b13d-476b-8e32-c669f1a39eea 2019-08-18 20:33:51.319189 13101 641 Product \N \N 5 User \N update ---\nbarcode:\n- ''\n- '0000641'\n 2 \N 189.252.79.46 11ea65bd-b13d-476b-8e32-c669f1a39eea 2019-08-18 20:33:51.353789 13102 764 AvailableProduct \N \N 5 User \N create ---\nproduct_id: 641\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.252.79.46 11ea65bd-b13d-476b-8e32-c669f1a39eea 2019-08-18 20:33:51.38445 13103 641 Product \N \N 5 User \N update ---\nstatus:\n- active\n- 0\n 3 El producto prueba fue eliminado. 189.252.79.46 0f0ef35b-746d-43e7-8466-a92027cea22a 2019-08-18 20:36:28.805192 13104 371 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 371\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.999E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.632E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1632E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.55.171 c2e61bda-4c20-42a5-9935-b4280fed33ce 2019-08-18 21:01:09.181744 13105 371 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 c2e61bda-4c20-42a5-9935-b4280fed33ce 2019-08-18 21:01:09.207522 13106 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-18 01:29:02.004344000 Z\n- &1 2019-08-18 19:10:09.293481000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-18 21:08:16.875231266 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138155\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933957\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933957\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138155\n mask_addr: 4294967295\nsign_in_count:\n- 463\n- 464\n 928 \N 189.186.213.107 772d8578-33ce-4111-9089-42fc6b95ee4d 2019-08-18 21:08:16.884325 13107 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8xYTqHCSMLw21-xmt62D\n- yHvzYrtUcgbAbgm9kT41\n 929 \N 189.186.213.107 772d8578-33ce-4111-9089-42fc6b95ee4d 2019-08-18 21:08:16.900385 13110 20 Category \N \N 4 User \N update ---\nparent_id:\n- 7\n- 0\n 3 La línea de producto PROMOCION fue modificada. 189.186.213.107 8d5cd231-51d5-4771-9346-30a2dc6e4788 2019-08-18 21:14:10.739125 13111 18 Category \N \N 4 User \N update ---\nparent_id:\n- 12\n- 0\n 3 La línea de producto PROMOCION fue modificada. 189.186.213.107 be2f60b6-6b95-4ddf-8b34-857cdae32584 2019-08-18 21:14:32.697122 13112 230 Product \N \N 4 User \N update ---\nsku:\n- VES-PRM-640\n- VES-642\ncategory_id:\n- 18\n- 12\n 4 El producto VES-PRM-640 fue modificado. 189.186.213.107 5b8916cb-8c9c-4b5a-a76c-8e610b28f6aa 2019-08-18 21:15:09.768605 13113 19 Category \N \N 4 User \N update ---\nparent_id:\n- 2\n- 0\n 2 La línea de producto PROMOCION fue modificada. 189.186.213.107 ca766f7d-0cee-4a1f-9a3c-340ea45dab16 2019-08-18 21:16:50.699932 13114 21 Category \N \N 4 User \N update ---\nparent_id:\n- 8\n- 0\n 2 La línea de producto PROMOCION fue modificada. 189.186.213.107 67a4fd92-2cb6-42e6-a49f-b99fb06ac283 2019-08-18 21:17:29.555145 13115 22 Category \N \N 4 User \N update ---\nparent_id:\n- 11\n- 0\n 2 La línea de producto PROMOCION fue modificada. 189.186.213.107 086c369e-dbcf-4223-9ccf-e81425c64a95 2019-08-18 21:17:44.490752 13116 11 Product \N \N 4 User \N update ---\nsku:\n- SHO-PRM-640\n- JUM-642\ncategory_id:\n- 19\n- 1\n 4 El producto SHO-PRM-640 fue modificado. 189.186.213.107 59ae5647-3710-4b2f-bffc-9d24958786ea 2019-08-18 21:19:37.049085 13117 19 Category \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 3 La línea de producto PROMOCION fue eliminada. 189.186.213.107 8256c0c2-6816-4c41-9042-a15f30b77421 2019-08-18 21:20:12.472142 13118 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-18 19:10:09.293481000 Z\n- &1 2019-08-18 21:08:16.875231000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-18 21:56:20.268611344 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933957\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138155\n mask_addr: 4294967295\nsign_in_count:\n- 464\n- 465\n 930 \N 189.186.213.107 1ee0b999-14ba-491b-987a-0bb63ff52bac 2019-08-18 21:56:20.294506 13119 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yHvzYrtUcgbAbgm9kT41\n- yUuLU2dzgD6YvSZHRhMM\n 931 \N 189.186.213.107 1ee0b999-14ba-491b-987a-0bb63ff52bac 2019-08-18 21:56:20.31406 13120 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-18 21:08:16.875231000 Z\n- &1 2019-08-18 21:56:20.268611000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-18 21:56:20.786060955 Z\nsign_in_count:\n- 465\n- 466\n 932 \N 189.186.213.107 6781578d-4aa3-440d-a06c-33727ab9346b 2019-08-18 21:56:20.791679 13121 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yUuLU2dzgD6YvSZHRhMM\n- 1hoCo9RX754WTHixpBJy\n 933 \N 189.186.213.107 6781578d-4aa3-440d-a06c-33727ab9346b 2019-08-18 21:56:20.806418 13122 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-18 21:56:20.268611000 Z\n- &1 2019-08-18 21:56:20.786060000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-18 22:16:38.829678131 Z\nsign_in_count:\n- 466\n- 467\n 934 \N 189.186.213.107 dc47c552-fe9e-4880-a6d1-f3cb5880a59a 2019-08-18 22:16:38.835245 13123 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1hoCo9RX754WTHixpBJy\n- M49XjyFk2x7uM7qkNSu7\n 935 \N 189.186.213.107 dc47c552-fe9e-4880-a6d1-f3cb5880a59a 2019-08-18 22:16:38.848916 13124 173 Product \N \N 4 User \N update ---\nsku:\n- PAN-PRM-640\n- BLU-642\ncategory_id:\n- 21\n- 7\n 4 El producto PAN-PRM-640 fue modificado. 189.186.213.107 3fcbba74-188e-4135-bdb2-91530a66cc3b 2019-08-18 22:17:14.611259 13125 175 Product \N \N 4 User \N update ---\nsku:\n- PAN-PRM-640\n- VES-642\ncategory_id:\n- 21\n- 12\n 5 El producto PAN-PRM-640 fue modificado. 189.186.213.107 13c50d03-fa96-4858-851e-b6e7c37c8200 2019-08-18 22:18:24.310325 13126 169 Product \N \N 4 User \N update ---\nsku:\n- PAN-PRM-640\n- VES-642\ncategory_id:\n- 21\n- 12\n 4 El producto PAN-PRM-640 fue modificado. 189.186.213.107 66f2abad-6199-49d6-b04b-540d5d9f410e 2019-08-18 22:19:16.74196 13127 168 Product \N \N 4 User \N update ---\nsku:\n- PAN-PRM-640\n- PAL-642\ncategory_id:\n- 21\n- 9\n 4 El producto PAN-PRM-640 fue modificado. 189.186.213.107 913fb089-4e3a-4eb0-9947-bde8e56707f5 2019-08-18 22:19:43.411262 13128 174 Product \N \N 4 User \N update ---\nsku:\n- PAN-PRM-640\n- PAL-642\ncategory_id:\n- 21\n- 9\n 4 El producto PAN-PRM-640 fue modificado. 189.186.213.107 49ef9e89-9789-4e0d-b9f2-9b0ef6dd99b5 2019-08-18 22:20:27.367926 13129 214 Product \N \N 4 User \N update ---\nsku:\n- VES-PRM-640\n- VES-642\ncategory_id:\n- 18\n- 12\n 5 El producto VES-PRM-640 fue modificado. 189.186.213.107 b910517e-c47b-493e-9d68-717c2486acbc 2019-08-18 22:21:08.499668 13130 21 Category \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 3 La línea de producto PROMOCION fue eliminada. 189.186.213.107 d0cc903d-e761-43d9-a43c-60c78dab59ed 2019-08-18 22:21:19.37667 13131 196 Product \N \N 4 User \N update ---\nsku:\n- FAL-PRM-640\n- FAL-642\ncategory_id:\n- 22\n- 11\n 4 El producto FAL-PRM-640 fue modificado. 189.186.213.107 0a03ebcf-07cc-4b1c-9e52-2f1d31585f3b 2019-08-18 22:23:15.220596 13132 197 Product \N \N 4 User \N update ---\nsku:\n- FAL-PRM-640\n- JUM-642\ncategory_id:\n- 22\n- 1\n 4 El producto FAL-PRM-640 fue modificado. 189.186.213.107 f113aadb-c70e-4d80-913f-99f6983e326c 2019-08-18 22:23:42.239599 13133 22 Category \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 3 La línea de producto PROMOCION fue eliminada. 189.186.213.107 e9204367-2327-4838-92a3-65dcc3cb506d 2019-08-18 22:23:57.429425 13134 20 Category \N \N 4 User \N update ---\nstatus:\n- inactive\n- 1\n 4 \N 189.186.213.107 d59c0984-33aa-42e0-8790-5ccd699a7419 2019-08-18 22:46:12.10316 13135 18 Category \N \N 4 User \N update ---\nstatus:\n- inactive\n- 1\n 4 \N 189.186.213.107 023701f0-e691-49ff-b4a2-8a3cea145fe5 2019-08-18 22:46:17.680862 13136 642 Product \N \N 4 User \N create ---\nsku: BLU-642\nname: S-0019\ndescription: BLAZER NEGRO\nprice_base: !ruby/object:BigDecimal 18:0.4395E3\nprice_sale: !ruby/object:BigDecimal 18:0.879E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-642 fue creado. 189.186.213.107 37271709-3c71-4d12-85fb-0ee5131f7925 2019-08-18 23:25:16.54961 13137 642 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000642'\n 2 \N 189.186.213.107 37271709-3c71-4d12-85fb-0ee5131f7925 2019-08-18 23:25:16.583493 13138 643 Product \N \N 4 User \N create ---\nsku: BLU-643\nname: B-0097\ndescription: EVENT NEGRA DE TIRANTE CON MANGA\nprice_base: !ruby/object:BigDecimal 18:0.2495E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-643 fue creado. 189.186.213.107 000ae973-9721-4476-ba8d-f551da22ab19 2019-08-18 23:31:40.570139 13139 643 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000643'\n 2 \N 189.186.213.107 000ae973-9721-4476-ba8d-f551da22ab19 2019-08-18 23:31:40.611016 20277 797 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '797'\n is_parent: false\n sku: VES-797\n name: VST-0059\n description: APEACH NEGRO CON PERLAS\n price_base: '460.0'\n price_sale: '1199.0'\n img_product: IMG_3046.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000797'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-13 16:47:12.367325'\n updated_at: &12 2019-11-05 20:41:27.900986261 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '797'\n sku: VES-797\n name: VST-0059\n description: APEACH NEGRO CON PERLAS\n price_base: '460.00'\n price_sale: '1199.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-13 16:47:12.367325'\n updated_at: '2019-10-13 16:47:12.39922'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000797'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '797'\n type: *3\n value: 797\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-797\n type: *7\n value: VES-797\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0059\n type: *8\n value: VST-0059\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: APEACH NEGRO CON PERLAS\n type: *6\n value: APEACH NEGRO CON PERLAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '460.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.46E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1199.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1199E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_3046.JPG\n type: *2\n value: IMG_3046.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000797'\n type: *2\n value: '0000797'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-13 16:47:12.367325'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_3046.JPG\n 3 El producto VES-797 fue modificado. 187.149.74.215 fb5b51f1-c504-46f0-a089-4888729d8e62 2019-11-05 20:41:27.941085 13140 765 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 643\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.213.107 000ae973-9721-4476-ba8d-f551da22ab19 2019-08-18 23:31:40.651219 13141 644 Product \N \N 4 User \N create ---\nsku: BLU-644\nname: BLU-0069\ndescription: DAYG NEGRA CON DORADO\nprice_base: !ruby/object:BigDecimal 18:0.21E3\nprice_sale: !ruby/object:BigDecimal 18:0.42E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-644 fue creado. 189.186.213.107 47b6d6d4-ba49-4124-b787-c4ee9fd2e824 2019-08-18 23:33:45.258828 13142 644 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000644'\n 2 \N 189.186.213.107 47b6d6d4-ba49-4124-b787-c4ee9fd2e824 2019-08-18 23:33:45.290841 13143 766 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 644\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.213.107 47b6d6d4-ba49-4124-b787-c4ee9fd2e824 2019-08-18 23:33:45.32394 13144 645 Product \N \N 4 User \N create ---\nsku: BLU-645\nname: B-0099\ndescription: APEACH BLUSA NEGRA ENCAJE BRILLOS\nprice_base: !ruby/object:BigDecimal 18:0.2845E3\nprice_sale: !ruby/object:BigDecimal 18:0.569E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-645 fue creado. 189.186.213.107 b450febc-319d-4b9b-b699-47ff9712e847 2019-08-18 23:36:05.125971 13145 645 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000645'\n 2 \N 189.186.213.107 b450febc-319d-4b9b-b699-47ff9712e847 2019-08-18 23:36:05.192458 13146 767 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 645\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.213.107 b450febc-319d-4b9b-b699-47ff9712e847 2019-08-18 23:36:05.253938 13147 646 Product \N \N 4 User \N create ---\nsku: VES-646\nname: V-0065\ndescription: 'LATISTE GRIS BRILLOS '\nprice_base: !ruby/object:BigDecimal 18:0.7745E3\nprice_sale: !ruby/object:BigDecimal 18:0.1549E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-646 fue creado. 189.186.213.107 3fe74f72-6b7d-4dec-9da4-19229a5e1818 2019-08-18 23:39:05.445709 13148 646 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000646'\n 2 \N 189.186.213.107 3fe74f72-6b7d-4dec-9da4-19229a5e1818 2019-08-18 23:39:05.485299 13149 768 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 646\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.213.107 3fe74f72-6b7d-4dec-9da4-19229a5e1818 2019-08-18 23:39:05.524797 13150 647 Product \N \N 4 User \N create ---\nsku: VES-647\nname: VES-0038\ndescription: LETTE NEGRO Y TINTO LENTEJUELA DORADA\nprice_base: !ruby/object:BigDecimal 18:0.4845E3\nprice_sale: !ruby/object:BigDecimal 18:0.969E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-647 fue creado. 189.186.213.107 4eec930e-7453-48c0-9325-3a427345739e 2019-08-18 23:41:02.088325 13151 647 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000647'\n 2 \N 189.186.213.107 4eec930e-7453-48c0-9325-3a427345739e 2019-08-18 23:41:02.129136 13152 769 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 647\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.213.107 4eec930e-7453-48c0-9325-3a427345739e 2019-08-18 23:41:02.166334 13153 648 Product \N \N 4 User \N create ---\nsku: VES-648\nname: VE-00051\ndescription: NEGRO CON PLATEADO SHE + SKY\nprice_base: !ruby/object:BigDecimal 18:0.4145E3\nprice_sale: !ruby/object:BigDecimal 18:0.829E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-648 fue creado. 189.186.213.107 b2cbdc5d-d0d5-466d-be3c-8e60a59eb12d 2019-08-18 23:43:39.270086 13154 648 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000648'\n 2 \N 189.186.213.107 b2cbdc5d-d0d5-466d-be3c-8e60a59eb12d 2019-08-18 23:43:39.29795 13155 770 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 648\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.213.107 b2cbdc5d-d0d5-466d-be3c-8e60a59eb12d 2019-08-18 23:43:39.325824 13156 649 Product \N \N 4 User \N create ---\nsku: BLU-649\nname: B-0094\ndescription: BLUSA LENJETULA AZUL REY\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-649 fue creado. 189.186.213.107 9ada1a59-9f69-4707-853c-ab0aa9aac2be 2019-08-18 23:44:45.808521 13157 649 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000649'\n 2 \N 189.186.213.107 9ada1a59-9f69-4707-853c-ab0aa9aac2be 2019-08-18 23:44:45.841757 13158 771 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 649\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.213.107 9ada1a59-9f69-4707-853c-ab0aa9aac2be 2019-08-18 23:44:45.876379 13230 730 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.213.107 3469eb0d-3046-42d7-afd7-e1204913efa2 2019-08-19 01:00:01.844251 50278 3945 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.57.245 13d2cc63-8bb4-4f0b-b9d8-0cea8f7c4f83 2020-12-28 23:45:33.073736 13159 650 Product \N \N 4 User \N create ---\nsku: JUM-650\nname: V-0066\ndescription: JUMPER BALBOA CON LENTEJEULA ROSA\nprice_base: !ruby/object:BigDecimal 18:0.5995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 1\nproduct_service_key: '01010101'\n 1 El producto JUM-650 fue creado. 189.186.213.107 fb51080c-f19a-43b4-995a-78a7b980ac8c 2019-08-18 23:46:36.731252 13160 650 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000650'\n 2 \N 189.186.213.107 fb51080c-f19a-43b4-995a-78a7b980ac8c 2019-08-18 23:46:36.766086 13161 772 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 650\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.213.107 fb51080c-f19a-43b4-995a-78a7b980ac8c 2019-08-18 23:46:36.804103 13162 651 Product \N \N 4 User \N create ---\nsku: JUM-651\nname: V-0077\ndescription: JUMPER NEGRO LENTEJUELA DORADA\nprice_base: !ruby/object:BigDecimal 18:0.5995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 1\nproduct_service_key: '01010101'\n 1 El producto JUM-651 fue creado. 189.186.213.107 a985ada6-9f32-43d6-bce2-6114d993fb40 2019-08-18 23:47:20.417777 13163 651 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000651'\n 2 \N 189.186.213.107 a985ada6-9f32-43d6-bce2-6114d993fb40 2019-08-18 23:47:20.449584 13164 773 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 651\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.213.107 a985ada6-9f32-43d6-bce2-6114d993fb40 2019-08-18 23:47:20.493337 13165 116 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-1\namount: !ruby/object:BigDecimal 18:0.8726E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.8726E4\nobservations: ''\npurchase_date: 2019-08-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-1 por $ 8726.0 MXN creada. 189.186.213.107 09303c8f-8a80-461d-83c2-803c0d6cd155 2019-08-18 23:48:07.431524 13166 774 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 642\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.213.107 09303c8f-8a80-461d-83c2-803c0d6cd155 2019-08-18 23:48:07.463949 13167 765 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.213.107 09303c8f-8a80-461d-83c2-803c0d6cd155 2019-08-18 23:48:07.504303 13168 766 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.213.107 09303c8f-8a80-461d-83c2-803c0d6cd155 2019-08-18 23:48:07.535671 13169 767 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.213.107 09303c8f-8a80-461d-83c2-803c0d6cd155 2019-08-18 23:48:07.561368 13170 768 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.213.107 09303c8f-8a80-461d-83c2-803c0d6cd155 2019-08-18 23:48:07.587151 13171 769 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.213.107 09303c8f-8a80-461d-83c2-803c0d6cd155 2019-08-18 23:48:07.618781 13172 770 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.213.107 09303c8f-8a80-461d-83c2-803c0d6cd155 2019-08-18 23:48:07.649572 13173 771 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.213.107 09303c8f-8a80-461d-83c2-803c0d6cd155 2019-08-18 23:48:07.68273 13174 772 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.213.107 09303c8f-8a80-461d-83c2-803c0d6cd155 2019-08-18 23:48:07.723951 13175 773 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.213.107 09303c8f-8a80-461d-83c2-803c0d6cd155 2019-08-18 23:48:07.755168 13176 652 Product \N \N 4 User \N create ---\nsku: BOL-652\nname: CAN-001\ndescription: "CANGURERA GUESS \\r\\nNEGRO RAYADO Y ROSA"\nprice_base: !ruby/object:BigDecimal 18:0.66E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-652 fue creado. 189.186.213.107 9bef1d06-9b7c-4a89-96bd-cf3e3ae808c2 2019-08-19 00:03:42.904127 13177 652 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000652'\n 2 \N 189.186.213.107 9bef1d06-9b7c-4a89-96bd-cf3e3ae808c2 2019-08-19 00:03:42.951057 13178 775 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 652\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.213.107 9bef1d06-9b7c-4a89-96bd-cf3e3ae808c2 2019-08-19 00:03:42.997466 13179 653 Product \N \N 4 User \N create ---\nsku: BOL-653\nname: CAN-0002\ndescription: "CANGURERA LISA GRANDE\\r\\nNEGRA Y ROSA "\nprice_base: !ruby/object:BigDecimal 18:0.858E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-653 fue creado. 189.186.213.107 0ca129ab-b737-42e1-aaab-75a39d5cc050 2019-08-19 00:05:27.429374 13180 653 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000653'\n 2 \N 189.186.213.107 0ca129ab-b737-42e1-aaab-75a39d5cc050 2019-08-19 00:05:27.47641 13181 776 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 653\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.213.107 0ca129ab-b737-42e1-aaab-75a39d5cc050 2019-08-19 00:05:27.523587 13231 445 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.213.107 30c79a13-1d72-4ada-8d52-972e33ffb5e6 2019-08-19 01:00:13.029343 13182 654 Product \N \N 4 User \N create ---\nsku: BOL-654\nname: CAN-0003\ndescription: FLORES Y LOGO GUESS\nprice_base: !ruby/object:BigDecimal 18:0.549E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-654 fue creado. 189.186.213.107 ace4d806-7c81-4b59-b109-299d48397001 2019-08-19 00:06:58.171442 13183 654 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000654'\n 2 \N 189.186.213.107 ace4d806-7c81-4b59-b109-299d48397001 2019-08-19 00:06:58.217832 13184 777 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 654\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.213.107 ace4d806-7c81-4b59-b109-299d48397001 2019-08-19 00:06:58.264405 13185 117 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-2\namount: !ruby/object:BigDecimal 18:0.7521E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.7521E4\nobservations: ''\npurchase_date: 2019-08-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-2 por $ 7521.0 MXN creada. 189.186.213.107 fba66585-870d-404e-8c6c-74740a8dbca7 2019-08-19 00:07:06.548093 13186 775 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.213.107 fba66585-870d-404e-8c6c-74740a8dbca7 2019-08-19 00:07:06.584199 13187 776 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.213.107 fba66585-870d-404e-8c6c-74740a8dbca7 2019-08-19 00:07:06.622305 13188 777 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.213.107 fba66585-870d-404e-8c6c-74740a8dbca7 2019-08-19 00:07:06.658513 13189 775 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.213.107 adf30649-53da-4b40-8465-1b7c44fdaeab 2019-08-19 00:07:56.539162 13190 776 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.213.107 6499cd65-5d3d-4b7a-88f2-6c84294f6c99 2019-08-19 00:08:04.726317 13191 91 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2019-08-18\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.213.107 4e3d165d-b7d8-4d38-9b8f-66ff32e658c2 2019-08-19 00:08:09.027448 13192 367 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.153E3\n- !ruby/object:BigDecimal 18:0.152E3\n 9 \N 189.186.213.107 ac0eeec4-a939-4142-a567-8af5576210d1 2019-08-19 00:09:49.048769 13193 367 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.152E3\n- !ruby/object:BigDecimal 18:0.15E3\n 10 \N 189.186.213.107 282420b7-6ec0-448d-ada9-14dfd6c1cb05 2019-08-19 00:09:52.737365 13194 367 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E3\n- !ruby/object:BigDecimal 18:0.118E3\n 11 \N 189.186.213.107 1b03beb5-ac46-4c91-823b-68e707d4dd80 2019-08-19 00:09:54.253901 13195 92 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-08-18\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.213.107 34334765-e0be-43a0-a0bd-08c0e89bdd33 2019-08-19 00:09:56.198154 13196 367 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.118E3\n- !ruby/object:BigDecimal 18:0.117E3\n 12 \N 189.186.213.107 c71e8334-a5fc-4b1c-a29f-673668c6723f 2019-08-19 00:11:18.997336 13197 367 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.117E3\n- !ruby/object:BigDecimal 18:0.76E2\n 13 \N 189.186.213.107 0cd39cc3-a6dd-4442-955a-91254da876b0 2019-08-19 00:11:26.324242 13198 93 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-08-18\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.213.107 9578f117-c577-43d5-b716-26ea1b9a30cf 2019-08-19 00:11:28.212807 13199 367 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.76E2\n- !ruby/object:BigDecimal 18:0.75E2\n 14 \N 189.186.213.107 f2688104-3ba0-41a6-abbb-eae181ac91d0 2019-08-19 00:11:47.879948 13200 367 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.75E2\n- !ruby/object:BigDecimal 18:0.4E2\n 15 \N 189.186.213.107 467bb55a-1a57-4ad4-a183-96bd90fdbcf9 2019-08-19 00:11:55.052003 13201 94 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-08-18\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de S BY SUO a Almacen central creado. 189.186.213.107 5af81689-6f03-4fb7-954c-14e4aafbc727 2019-08-19 00:11:56.751153 13202 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-18 21:56:20.786060000 Z\n- &1 2019-08-18 22:16:38.829678000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-19 00:30:51.665356183 Z\nsign_in_count:\n- 467\n- 468\n 936 \N 189.186.213.107 0b937008-9f12-4d74-8889-ff53b9716119 2019-08-19 00:30:51.672621 13203 4 User \N \N 4 User \N update ---\nunique_session_id:\n- M49XjyFk2x7uM7qkNSu7\n- qzGkV7DFpBnR1LDkrSri\n 937 \N 189.186.213.107 0b937008-9f12-4d74-8889-ff53b9716119 2019-08-19 00:30:51.689177 13204 655 Product \N \N 4 User \N create ---\nsku: BOL-655\nname: BRAI677\ndescription: MOCHILA NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: BRAI677.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-655 fue creado. 189.186.213.107 1de91745-7d86-4f34-8c44-2f0df67883b1 2019-08-19 00:37:35.25112 13205 655 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000655'\n 2 \N 189.186.213.107 1de91745-7d86-4f34-8c44-2f0df67883b1 2019-08-19 00:37:35.281594 13206 778 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 655\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.213.107 1de91745-7d86-4f34-8c44-2f0df67883b1 2019-08-19 00:37:35.310126 13232 95 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-08-18\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.213.107 74de56d7-ecd2-4d96-a65b-8182964f6058 2019-08-19 01:00:27.851874 13207 656 Product \N \N 4 User \N create ---\nsku: BOL-656\nname: GIRL763\ndescription: NEGRA CON MOÑO AMARILLO\nprice_base: !ruby/object:BigDecimal 18:0.9495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: descarga__1_.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-656 fue creado. 189.186.213.107 d9e8444a-70fb-4f64-8842-09f755f38931 2019-08-19 00:42:31.287753 13208 656 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000656'\n 2 \N 189.186.213.107 d9e8444a-70fb-4f64-8842-09f755f38931 2019-08-19 00:42:31.321703 13209 779 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 656\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.213.107 d9e8444a-70fb-4f64-8842-09f755f38931 2019-08-19 00:42:31.351109 13210 657 Product \N \N 4 User \N create ---\nsku: BOL-657\nname: OKAN113\ndescription: BOLSO PEQUEÑO CON DETALLES TURQUESA\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: OKAN.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-657 fue creado. 189.186.213.107 0953ce53-74e1-4a30-a3db-c3a111875fb4 2019-08-19 00:45:32.158332 13211 657 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000657'\n 2 \N 189.186.213.107 0953ce53-74e1-4a30-a3db-c3a111875fb4 2019-08-19 00:45:32.189434 13212 780 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 657\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.213.107 0953ce53-74e1-4a30-a3db-c3a111875fb4 2019-08-19 00:45:32.216568 13213 658 Product \N \N 4 User \N create ---\nsku: BOL-658\nname: TERP744\ndescription: MOCHILA NEGRA CON MASCADA\nprice_base: !ruby/object:BigDecimal 18:0.9995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1999E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: TERP.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-658 fue creado. 189.186.213.107 a2b5357a-111a-4d4b-a2d8-06948312f06f 2019-08-19 00:47:31.971137 13214 658 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000658'\n 2 \N 189.186.213.107 a2b5357a-111a-4d4b-a2d8-06948312f06f 2019-08-19 00:47:32.00701 13215 781 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 658\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.213.107 a2b5357a-111a-4d4b-a2d8-06948312f06f 2019-08-19 00:47:32.047862 13216 659 Product \N \N 4 User \N create ---\nsku: BOL-659\nname: ERIO488\ndescription: MOCHILA DORADA\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ERIO.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-659 fue creado. 189.186.213.107 85ef5572-2c60-438d-8d81-ff0fe59cf431 2019-08-19 00:51:05.100359 13217 659 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000659'\n 2 \N 189.186.213.107 85ef5572-2c60-438d-8d81-ff0fe59cf431 2019-08-19 00:51:05.146311 13218 782 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 659\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.213.107 85ef5572-2c60-438d-8d81-ff0fe59cf431 2019-08-19 00:51:05.195137 13219 660 Product \N \N 4 User \N create ---\nsku: BOL-660\nname: ROTH652\ndescription: BOLSO NEGRO\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ROTH.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-660 fue creado. 189.186.213.107 1c3fad07-cddb-48f1-aeaf-9534fc46dd89 2019-08-19 00:52:54.523988 13220 660 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000660'\n 2 \N 189.186.213.107 1c3fad07-cddb-48f1-aeaf-9534fc46dd89 2019-08-19 00:52:54.568687 13221 783 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 660\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.213.107 1c3fad07-cddb-48f1-aeaf-9534fc46dd89 2019-08-19 00:52:54.603543 13222 118 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-3\namount: !ruby/object:BigDecimal 18:0.5247E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.5247E4\nobservations: ''\npurchase_date: 2019-08-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-3 por $ 5247.0 MXN creada. 189.186.213.107 03d1a03f-efb4-4cb6-babc-18eae85609ff 2019-08-19 00:53:56.560764 13223 778 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.213.107 03d1a03f-efb4-4cb6-babc-18eae85609ff 2019-08-19 00:53:56.587693 13224 779 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.213.107 03d1a03f-efb4-4cb6-babc-18eae85609ff 2019-08-19 00:53:56.619912 13225 780 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.213.107 03d1a03f-efb4-4cb6-babc-18eae85609ff 2019-08-19 00:53:56.648506 13226 781 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.213.107 03d1a03f-efb4-4cb6-babc-18eae85609ff 2019-08-19 00:53:56.676351 13227 782 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.213.107 03d1a03f-efb4-4cb6-babc-18eae85609ff 2019-08-19 00:53:56.70337 13228 783 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.213.107 03d1a03f-efb4-4cb6-babc-18eae85609ff 2019-08-19 00:53:56.732827 13233 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-17 22:35:39.761667000 Z\n- &1 2019-08-18 16:05:16.377745000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-19 16:14:04.504194923 Z\nsign_in_count:\n- 286\n- 287\n 577 \N 187.149.55.171 f122209a-734f-422d-9ad7-7669b2cf7d1f 2019-08-19 16:14:04.551284 13234 2 User \N \N 2 User \N update ---\nunique_session_id:\n- qjJKa7vz8ZoFsCm8eE5f\n- SesYMz-zo1izjPyvF7tx\n 578 \N 187.149.55.171 f122209a-734f-422d-9ad7-7669b2cf7d1f 2019-08-19 16:14:04.58683 13235 372 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.632E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 632.0 187.149.55.171 7c0db0bc-675a-49f6-8b46-54e513512745 2019-08-19 16:14:30.256732 13236 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-17 01:32:19.441055000 Z\n- &1 2019-08-17 16:13:06.601486000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-19 17:29:13.004194061 Z\nsign_in_count:\n- 587\n- 588\n 1176 \N 187.149.55.171 622cc93f-d04d-4129-9c1b-f891c802fb70 2019-08-19 17:29:13.009908 13237 3 User \N \N 3 User \N update ---\nunique_session_id:\n- _H1YBxtVzHxHqigpc7Li\n- 1UcJtsNpE4XWTqm5gzoF\n 1177 \N 187.149.55.171 622cc93f-d04d-4129-9c1b-f891c802fb70 2019-08-19 17:29:13.024561 13238 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-08-10 22:37:44.157158000 Z\n- &1 2019-08-17 23:36:38.128287000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-19 18:01:15.221765385 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138155\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138155\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\nsign_in_count:\n- 74\n- 75\n 150 \N 187.149.55.171 238c811d-03ef-434c-b88d-87d46c1ee66e 2019-08-19 18:01:15.230413 13239 9 User \N \N 9 User \N update ---\nunique_session_id:\n- ashcrjcb1KyWD6xM7nwj\n- eSaoTLRv_xwtgJvcqqev\n 151 \N 187.149.55.171 238c811d-03ef-434c-b88d-87d46c1ee66e 2019-08-19 18:01:15.246527 13240 156 Customer \N \N 9 User \N create ---\nnick_name: BLANCA BODYS\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BLANCA BODYS fue registrado. 187.149.55.171 ed9e5bc9-02fe-4332-a580-d917ea9e516e 2019-08-19 18:03:20.88896 13241 972 Sale \N \N 9 User \N create ---\ncustomer_id: 156\nuser_id: 9\nopen_cash_register_id: 372\namount: !ruby/object:BigDecimal 18:0.49052E3\ntax: !ruby/object:BigDecimal 18:0.7848E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-08-19\nsaletype: 2\nseller_id: 3\nsale_code: PV1-V-565\nexpiration_date: 2019-09-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 77d1af01-efa1-490e-95b9-c869a119a9fb 2019-08-19 18:04:33.950337 13242 12 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.55.171 77d1af01-efa1-490e-95b9-c869a119a9fb 2019-08-19 18:04:33.990947 13243 1344 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 372\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 972\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-565\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-565 187.149.55.171 6d540930-eebe-4193-bffd-99411d6c6bd5 2019-08-19 18:04:52.778029 13244 972 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.55.171 9aac8728-3ae0-4dae-9d73-0c1f6c8105a9 2019-08-19 18:04:56.661089 13245 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-17 16:13:06.601486000 Z\n- &1 2019-08-19 17:29:13.004194000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-19 18:05:24.395950736 Z\nsign_in_count:\n- 588\n- 589\n 1178 \N 187.149.55.171 f51ed0a9-d4a0-4793-8c8b-8e2273defffc 2019-08-19 18:05:24.401975 13246 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 1UcJtsNpE4XWTqm5gzoF\n- 9Bm3-gThyJkKbyWksFGM\n 1179 \N 187.149.55.171 f51ed0a9-d4a0-4793-8c8b-8e2273defffc 2019-08-19 18:05:24.416228 13247 373 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.4E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 400.0 187.149.55.171 5b617fc5-d201-4bad-b5d9-739f59a27660 2019-08-19 18:05:41.077338 13248 973 Sale \N \N 3 User \N create ---\ncustomer_id: 156\nuser_id: 3\nopen_cash_register_id: 373\namount: !ruby/object:BigDecimal 18:0.61724E3\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2019-08-19\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-406\nexpiration_date: 2019-09-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 b30202d6-d0c1-44a6-ad36-6babd8de8101 2019-08-19 18:06:19.651414 13249 365 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E2\n- !ruby/object:BigDecimal 18:0.28E2\n 19 \N 187.149.55.171 b30202d6-d0c1-44a6-ad36-6babd8de8101 2019-08-19 18:06:19.677641 13250 1345 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 373\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 973\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-406\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-406 187.149.55.171 ec345c3f-be86-421a-8cdb-c353ebd03d59 2019-08-19 18:06:28.0005 13251 973 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.55.171 c1671f10-1422-4088-9d2f-e81ee0a50366 2019-08-19 18:06:30.357638 13252 974 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 372\namount: !ruby/object:BigDecimal 18:0.63103E3\ntax: !ruby/object:BigDecimal 18:0.10096E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.73199E3\nstatus: 0\ndate_sale: 2019-08-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-565\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 7558793f-3de6-49c8-a814-ac4c5f3f23ba 2019-08-19 18:44:50.255122 13253 696 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.55.171 7558793f-3de6-49c8-a814-ac4c5f3f23ba 2019-08-19 18:44:50.286144 13254 974 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 5d50e6aa-d2b8-400c-a209-b6eb7fce07ad 2019-08-19 18:45:32.671091 13255 1346 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 372\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.732E3\nmove_type: '1'\nsale_id: 974\ncardnumber: 6976\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-565\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-565 187.149.55.171 5d50e6aa-d2b8-400c-a209-b6eb7fce07ad 2019-08-19 18:45:32.692726 20278 840 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '840'\n is_parent: false\n sku: VES-840\n name: VST-0061\n description: LATISTE ST-CD2232 ENCAJE NEGRO\n price_base: '760.0'\n price_sale: '1899.0'\n img_product: IMG_3288.PNG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000840'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-20 16:42:53.562854'\n updated_at: &12 2019-11-05 20:43:26.599410779 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '840'\n sku: VES-840\n name: VST-0061\n description: LATISTE ST-CD2232 ENCAJE NEGRO\n price_base: '760.00'\n price_sale: '1899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-20 16:42:53.562854'\n updated_at: '2019-10-20 16:42:53.601699'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000840'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '840'\n type: *3\n value: 840\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-840\n type: *7\n value: VES-840\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0061\n type: *8\n value: VST-0061\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: LATISTE ST-CD2232 ENCAJE NEGRO\n type: *6\n value: LATISTE ST-CD2232 ENCAJE NEGRO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '760.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.76E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1899E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_3288.PNG\n type: *2\n value: IMG_3288.PNG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000840'\n type: *2\n value: '0000840'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-20 16:42:53.562854'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_3288.PNG\n 3 El producto VES-840 fue modificado. 187.149.74.215 b50c701d-60dd-4b3f-a9a6-6df15f5d4e6e 2019-11-05 20:43:26.671501 13256 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-18 22:16:38.829678000 Z\n- &1 2019-08-19 00:30:51.665356000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-19 19:50:14.053902823 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138155\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\nsign_in_count:\n- 468\n- 469\n 938 \N 187.149.55.171 366d57cb-2ee6-404a-9ee5-d55a6d1687a7 2019-08-19 19:50:14.061843 13257 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qzGkV7DFpBnR1LDkrSri\n- L9jQhFxPEU_4JC4VaTvi\n 939 \N 187.149.55.171 366d57cb-2ee6-404a-9ee5-d55a6d1687a7 2019-08-19 19:50:14.080072 13258 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-19 00:30:51.665356000 Z\n- &1 2019-08-19 19:50:14.053902000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-19 21:20:28.324085988 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138155\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946466\n mask_addr: 4294967295\nsign_in_count:\n- 469\n- 470\n 940 \N 200.68.182.226 7110cb16-9c6a-4d40-a638-10d07e235e8e 2019-08-19 21:20:28.333559 13259 4 User \N \N 4 User \N update ---\nunique_session_id:\n- L9jQhFxPEU_4JC4VaTvi\n- AqJPUkHGYWC35s5o6bBX\n 941 \N 200.68.182.226 7110cb16-9c6a-4d40-a638-10d07e235e8e 2019-08-19 21:20:28.350823 13260 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-19 17:29:13.004194000 Z\n- &1 2019-08-19 18:05:24.395950000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-20 00:47:22.899536956 Z\nsign_in_count:\n- 589\n- 590\n 1180 \N 187.149.55.171 f283623b-6dda-4f9a-83fd-9035cb37558c 2019-08-20 00:47:22.916073 13261 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 9Bm3-gThyJkKbyWksFGM\n- 9-y1UAprC9CW_fVFvehY\n 1181 \N 187.149.55.171 f283623b-6dda-4f9a-83fd-9035cb37558c 2019-08-20 00:47:22.943039 13262 975 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 373\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-08-19\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-407\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 7fc03e7f-4a07-4fb5-a118-a7a9d791746c 2019-08-20 00:51:52.227297 13263 725 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.55.171 7fc03e7f-4a07-4fb5-a118-a7a9d791746c 2019-08-20 00:51:52.280001 13264 975 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 4375860a-fe79-420f-ac5a-0eb670cde70f 2019-08-20 00:51:59.441968 13265 1347 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 373\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 975\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-407\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-407 187.149.55.171 4375860a-fe79-420f-ac5a-0eb670cde70f 2019-08-20 00:51:59.472237 13266 164 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 373\nquantity: !ruby/object:BigDecimal 18:0.2E3\nstatus: 1\nobservations: ''\nexpense_date: 2019-08-19\nexpense_code: PV2-E-34\n 1 Egreso por 200.0 registrado 187.149.55.171 f9d8f793-c3ba-4586-8ef2-9c030a64ca2b 2019-08-20 00:55:30.391607 13267 1348 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 373\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 164\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.55.171 f9d8f793-c3ba-4586-8ef2-9c030a64ca2b 2019-08-20 00:55:30.417617 13268 372 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 373\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1249E4\namount_out: !ruby/object:BigDecimal 18:0.2E3\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.225E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1225E4\nobservations: 200 DE PAQUETERIA\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.55.171 13a85a03-524b-463f-8ddd-e881c6e12f23 2019-08-20 00:58:04.949611 13269 373 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 13a85a03-524b-463f-8ddd-e881c6e12f23 2019-08-20 00:58:04.964895 13270 373 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 372\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.982E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.632E3\nphysical_cash: !ruby/object:BigDecimal 18:0.632E3\nobservations: FUE TRANSFERENCIA LA VENTA DE BLANCA BODYS\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.55.171 013196f8-b8ee-488c-a635-6abee0fe253e 2019-08-20 01:14:44.279084 13271 372 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 013196f8-b8ee-488c-a635-6abee0fe253e 2019-08-20 01:14:44.30132 13272 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-19 18:05:24.395950000 Z\n- &1 2019-08-20 00:47:22.899536000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-20 16:20:37.642933903 Z\nsign_in_count:\n- 590\n- 591\n 1182 \N 187.149.55.171 cc7e5ee3-d965-47ed-a76a-7fa2db22dd67 2019-08-20 16:20:37.673946 13273 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 9-y1UAprC9CW_fVFvehY\n- YB3zFsb9Eu6tcKpH3czx\n 1183 \N 187.149.55.171 cc7e5ee3-d965-47ed-a76a-7fa2db22dd67 2019-08-20 16:20:37.695855 13274 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-18 16:05:16.377745000 Z\n- &1 2019-08-19 16:14:04.504194000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-20 16:28:20.642276364 Z\nsign_in_count:\n- 287\n- 288\n 579 \N 187.149.55.171 a47aa612-bbb2-4568-b95b-2437f9068e3b 2019-08-20 16:28:20.648685 13275 2 User \N \N 2 User \N update ---\nunique_session_id:\n- SesYMz-zo1izjPyvF7tx\n- YsQYG3YPArwjD9p2Qjzo\n 580 \N 187.149.55.171 a47aa612-bbb2-4568-b95b-2437f9068e3b 2019-08-20 16:28:20.662398 13276 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-20 00:47:22.899536000 Z\n- &1 2019-08-20 16:20:37.642933000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-20 16:28:57.692620236 Z\nsign_in_count:\n- 591\n- 592\n 1184 \N 187.149.55.171 b5ff47eb-55df-450f-9dc4-a65b09ee1959 2019-08-20 16:28:57.699246 13277 3 User \N \N 3 User \N update ---\nunique_session_id:\n- YB3zFsb9Eu6tcKpH3czx\n- PBtgE-dtdbuFV2bzTRjf\n 1185 \N 187.149.55.171 b5ff47eb-55df-450f-9dc4-a65b09ee1959 2019-08-20 16:28:57.716282 13278 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-19 19:50:14.053902000 Z\n- &1 2019-08-19 21:20:28.324085000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-20 19:04:48.444532451 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946466\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946466\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946486\n mask_addr: 4294967295\nsign_in_count:\n- 470\n- 471\n 942 \N 200.68.182.246 021fcd07-4f35-4f61-b5e8-adf1b5261b32 2019-08-20 19:04:48.452854 13279 4 User \N \N 4 User \N update ---\nunique_session_id:\n- AqJPUkHGYWC35s5o6bBX\n- iefAyFfbVwdgS8jhan7z\n 943 \N 200.68.182.246 021fcd07-4f35-4f61-b5e8-adf1b5261b32 2019-08-20 19:04:48.468488 13280 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-19 21:20:28.324085000 Z\n- &1 2019-08-20 19:04:48.444532000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-20 21:38:49.114681011 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946466\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946486\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946486\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\nsign_in_count:\n- 471\n- 472\n 944 \N 187.149.55.171 0097728b-0ad6-4a9c-8a31-62a9ecba3cf5 2019-08-20 21:38:49.123043 13281 4 User \N \N 4 User \N update ---\nunique_session_id:\n- iefAyFfbVwdgS8jhan7z\n- Vi-6y1_yDAyqJRxqQzeu\n 945 \N 187.149.55.171 0097728b-0ad6-4a9c-8a31-62a9ecba3cf5 2019-08-20 21:38:49.140458 13282 661 Product \N \N 4 User \N create ---\nsku: VES-661\nname: VST-0037\ndescription: VESTIDO LOVESONG COLOR MOSTAZA\nprice_base: !ruby/object:BigDecimal 18:0.26E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-661 fue creado. 187.149.55.171 356ee14b-8769-4c69-9bdb-e8c26c008d1c 2019-08-20 21:40:25.493555 13283 661 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000661'\n 2 \N 187.149.55.171 356ee14b-8769-4c69-9bdb-e8c26c008d1c 2019-08-20 21:40:25.525523 13284 662 Product \N \N 4 User \N create ---\nsku: BLU-662\nname: BLS-0054\ndescription: TOP LOVESONG ENCAJE NEGRO Y DORADO\nprice_base: !ruby/object:BigDecimal 18:0.27E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-662 fue creado. 187.149.55.171 402368b6-30d7-42b6-8557-79df261ef12d 2019-08-20 21:43:34.039971 13285 662 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000662'\n 2 \N 187.149.55.171 402368b6-30d7-42b6-8557-79df261ef12d 2019-08-20 21:43:34.068428 13286 663 Product \N \N 4 User \N create ---\nsku: BLU-663\nname: BLS-0056\ndescription: BLUSA LOVESONG NEGRA Y BLANCA\nprice_base: !ruby/object:BigDecimal 18:0.275E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-663 fue creado. 187.149.55.171 bb85eb30-b7ec-4283-8bc1-c1ee53d7c91b 2019-08-20 21:44:59.525283 13287 663 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000663'\n 2 \N 187.149.55.171 bb85eb30-b7ec-4283-8bc1-c1ee53d7c91b 2019-08-20 21:44:59.559326 13288 664 Product \N \N 4 User \N create ---\nsku: BLU-664\nname: BLS-0057\ndescription: BLUSA LOVESONG CON OLANES EN LOS BRAZOS MAGENTTA Y DORADO\nprice_base: !ruby/object:BigDecimal 18:0.275E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-664 fue creado. 187.149.55.171 76f8a831-cf62-4ec5-bbf2-e5052ae39903 2019-08-20 21:46:16.424215 13289 664 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000664'\n 2 \N 187.149.55.171 76f8a831-cf62-4ec5-bbf2-e5052ae39903 2019-08-20 21:46:16.454216 13290 119 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-5\namount: !ruby/object:BigDecimal 18:0.1635E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1635E5\nobservations: ''\npurchase_date: 2019-08-20\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-5 por $ 16350.0 MXN creada. 187.149.55.171 d42449dd-e190-43e8-8dac-7aba7d77e776 2019-08-20 21:46:50.979371 13291 665 Product \N \N 4 User \N create ---\nsku: BLU-665\nname: BLS-0057\ndescription: BLUSA MUY MUY MM0778 BLANCA CON ENCAJE EN LAS MANGAS\nprice_base: !ruby/object:BigDecimal 18:0.17E3\nprice_sale: !ruby/object:BigDecimal 18:0.469E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-665 fue creado. 187.149.55.171 3f3c76d3-a971-4270-8378-c5ebedcb0568 2019-08-20 21:53:24.342935 13292 665 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000665'\n 2 \N 187.149.55.171 3f3c76d3-a971-4270-8378-c5ebedcb0568 2019-08-20 21:53:24.370902 13293 120 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-6\namount: !ruby/object:BigDecimal 18:0.204E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.204E4\nobservations: ''\npurchase_date: 2019-08-20\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-6 por $ 2040.0 MXN creada. 187.149.55.171 228e7db9-697d-480a-95d8-6d6290fa9e16 2019-08-20 21:53:31.052188 13294 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-20 19:04:48.444532000 Z\n- &1 2019-08-20 21:38:49.114681000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-20 22:30:00.937239866 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946486\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\nsign_in_count:\n- 472\n- 473\n 946 \N 187.149.55.171 3d9ee9a9-f39a-40ed-8276-52f3ef439ac4 2019-08-20 22:30:00.944128 13295 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Vi-6y1_yDAyqJRxqQzeu\n- 5sx9VNouJeCyasYa48rs\n 947 \N 187.149.55.171 3d9ee9a9-f39a-40ed-8276-52f3ef439ac4 2019-08-20 22:30:00.95918 13296 665 Product \N \N 4 User \N update ---\nname:\n- BLS-0057\n- BLS-0058\n 3 El producto BLU-665 fue modificado. 187.149.55.171 d69d7802-79bf-4326-841c-7422ad10aa24 2019-08-20 22:34:04.654361 13297 96 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-08-20\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.55.171 10bb0b7a-3468-4d93-9f79-834cd395eedb 2019-08-20 22:34:48.601624 13320 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2uAEmCsym-2yDQcZu1pQ\n- E1nQ12zkdusssnNygfu6\n 951 \N 200.68.151.35 0e4d5b0b-644a-46d3-8b22-61d619a111a3 2019-08-21 18:16:40.573561 13452 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FYTyyMqxBbHYWDsxL8sx\n- QGTtNDMzx6y8PiuxDaCW\n 959 \N 189.186.53.136 8135cb54-ae8f-4f7e-b334-394d393d9e75 2019-08-22 06:42:16.209587 13298 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-20 21:38:49.114681000 Z\n- &1 2019-08-20 22:30:00.937239000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-21 00:17:17.105864047 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938439\n mask_addr: 4294967295\nsign_in_count:\n- 473\n- 474\n 948 \N 200.68.151.135 8dfb4033-2260-4a21-b0e5-0ade99345349 2019-08-21 00:17:17.113275 13299 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5sx9VNouJeCyasYa48rs\n- 2uAEmCsym-2yDQcZu1pQ\n 949 \N 200.68.151.135 8dfb4033-2260-4a21-b0e5-0ade99345349 2019-08-21 00:17:17.132546 13300 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-08-02 22:23:34.377969000 Z\n- &1 2019-08-08 16:52:14.809811000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-21 00:25:09.722434358 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183091942\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\nsign_in_count:\n- 123\n- 124\n 248 \N 187.149.55.171 9c6fa4fc-d862-4ded-a6ac-b298a68a73dc 2019-08-21 00:25:09.730766 13301 10 User \N \N 10 User \N update ---\nunique_session_id:\n- e__Wu1fDC3MCbbHTC4tz\n- j7S4yGbaZtYrUyw5PfZT\n 249 \N 187.149.55.171 9c6fa4fc-d862-4ded-a6ac-b298a68a73dc 2019-08-21 00:25:09.748657 13302 374 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.225E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 225.0 187.149.55.171 e8331575-5b7c-460c-9780-dabac96bc9ea 2019-08-21 00:25:13.611962 13303 976 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 374\namount: !ruby/object:BigDecimal 18:0.54216E3\ntax: !ruby/object:BigDecimal 18:0.7684E2\ndiscount: !ruby/object:BigDecimal 18:0.619E2\ntotal: !ruby/object:BigDecimal 18:0.5571E3\nstatus: 0\ndate_sale: 2019-08-20\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-408\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 d039b36f-6229-4723-aed9-cfb4d2036779 2019-08-21 00:26:49.040188 13304 330 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 16 \N 187.149.55.171 d039b36f-6229-4723-aed9-cfb4d2036779 2019-08-21 00:26:49.074232 13305 976 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 5cdf240c-1b66-4e32-ae22-b81cf625d4a4 2019-08-21 00:27:28.149736 13306 1349 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 374\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5571E3\nmove_type: '1'\nsale_id: 976\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-408\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.429E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-408 187.149.55.171 5cdf240c-1b66-4e32-ae22-b81cf625d4a4 2019-08-21 00:27:28.173163 13307 374 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 374\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.5571E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.783E3\nphysical_cash: !ruby/object:BigDecimal 18:0.783E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.55.171 1776dc45-9eca-4281-ac75-6371276e384b 2019-08-21 01:03:50.61762 13308 374 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 1776dc45-9eca-4281-ac75-6371276e384b 2019-08-21 01:03:50.642457 13309 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-19 16:14:04.504194000 Z\n- &1 2019-08-20 16:28:20.642276000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-21 16:01:24.783810458 Z\nsign_in_count:\n- 288\n- 289\n 581 \N 187.149.55.171 9b2bb498-726e-47ad-9c7e-e42560eeee06 2019-08-21 16:01:24.815682 13310 2 User \N \N 2 User \N update ---\nunique_session_id:\n- YsQYG3YPArwjD9p2Qjzo\n- X4W3TqwJ32rYxwrPs4ag\n 582 \N 187.149.55.171 9b2bb498-726e-47ad-9c7e-e42560eeee06 2019-08-21 16:01:24.839659 13311 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-20 16:20:37.642933000 Z\n- &1 2019-08-20 16:28:57.692620000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-21 16:05:15.479877549 Z\nsign_in_count:\n- 592\n- 593\n 1186 \N 187.149.55.171 3929ddd8-aac9-4a94-907a-2fc1fccf821e 2019-08-21 16:05:15.486011 13312 3 User \N \N 3 User \N update ---\nunique_session_id:\n- PBtgE-dtdbuFV2bzTRjf\n- oRD4TdtLRv8K36phG9eM\n 1187 \N 187.149.55.171 3929ddd8-aac9-4a94-907a-2fc1fccf821e 2019-08-21 16:05:15.500092 13313 375 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.632E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 632.0 187.149.55.171 a9207e99-6bb5-4e50-ac6c-07034085b277 2019-08-21 16:14:55.589045 13314 376 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.783E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 783.0 187.149.55.171 6a4c2fa4-e8ab-43ac-8edb-81e75d057f55 2019-08-21 17:55:52.797469 13315 977 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 376\namount: !ruby/object:BigDecimal 18:0.829E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.829E3\nstatus: 0\ndate_sale: 2019-08-21\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-409\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 d4267d08-8c6d-4bc3-aae1-1e7a1c6fd9cf 2019-08-21 17:59:43.568968 13316 757 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.55.171 d4267d08-8c6d-4bc3-aae1-1e7a1c6fd9cf 2019-08-21 17:59:43.608311 13317 977 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 e508c9bc-ddbb-4f3a-b8dc-f10689e0daf2 2019-08-21 18:00:35.099753 13318 1350 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 376\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.829E3\nmove_type: '1'\nsale_id: 977\ncardnumber: 2957\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-409\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-409 187.149.55.171 e508c9bc-ddbb-4f3a-b8dc-f10689e0daf2 2019-08-21 18:00:35.12779 13319 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-20 22:30:00.937239000 Z\n- &1 2019-08-21 00:17:17.105864000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-21 18:16:40.548946900 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938439\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938439\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938339\n mask_addr: 4294967295\nsign_in_count:\n- 474\n- 475\n 950 \N 200.68.151.35 0e4d5b0b-644a-46d3-8b22-61d619a111a3 2019-08-21 18:16:40.557356 13601 987 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.55.171 989e6a38-de96-4e1b-8d52-18e20afc0e03 2019-08-23 23:57:29.977051 13321 978 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 375\namount: !ruby/object:BigDecimal 18:0.45603E3\ntax: !ruby/object:BigDecimal 18:0.7296E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.52899E3\nstatus: 0\ndate_sale: 2019-08-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-567\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 f62b3818-a9d2-4b42-8826-82f200a29d32 2019-08-21 20:10:13.170455 13322 2 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.55.171 f62b3818-a9d2-4b42-8826-82f200a29d32 2019-08-21 20:10:13.199745 13323 978 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 8f586a67-d092-4b6a-b7b9-92db62b016d4 2019-08-21 20:10:26.282577 13324 1351 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 375\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.52899E3\nmove_type: '1'\nsale_id: 978\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-567\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.52899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-567 187.149.55.171 8f586a67-d092-4b6a-b7b9-92db62b016d4 2019-08-21 20:10:26.305173 13325 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-21 00:17:17.105864000 Z\n- &1 2019-08-21 18:16:40.548946000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-21 21:56:40.107095951 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938439\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938339\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938339\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938106\n mask_addr: 4294967295\nsign_in_count:\n- 475\n- 476\n 952 \N 200.68.150.58 b87d21eb-8ec4-4fca-97c6-7862fec7425d 2019-08-21 21:56:40.116194 13326 4 User \N \N 4 User \N update ---\nunique_session_id:\n- E1nQ12zkdusssnNygfu6\n- FZgoAu8EryX6pybaqRCN\n 953 \N 200.68.150.58 b87d21eb-8ec4-4fca-97c6-7862fec7425d 2019-08-21 21:56:40.133821 13327 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-08-08 16:52:14.809811000 Z\n- &1 2019-08-21 00:25:09.722434000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-21 22:12:02.054313646 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129846\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097224\n mask_addr: 4294967295\nsign_in_count:\n- 124\n- 125\n 250 \N 189.186.53.136 a8de4775-e367-4f1f-9d0e-6fdc9d7ecd20 2019-08-21 22:12:02.062181 13328 10 User \N \N 10 User \N update ---\nunique_session_id:\n- j7S4yGbaZtYrUyw5PfZT\n- jQNBP4oKrx4QNw22sd7r\n 251 \N 189.186.53.136 a8de4775-e367-4f1f-9d0e-6fdc9d7ecd20 2019-08-21 22:12:02.077975 13329 1352 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 375\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.249E3\nmove_type: '1'\nsale_id: 901\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.249E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-517 187.149.55.171 a6ac883e-9ba3-4ca3-bf84-67341e1ab6dc 2019-08-21 23:18:29.262592 13330 901 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.55.171 f73c65c9-9ded-4b4d-9148-5720ad67dd4c 2019-08-21 23:18:30.695545 13331 666 Product \N \N 2 User \N create ---\nsku: VES-666\nname: VST-0038\ndescription: VESTIDO FLOREADO A.PEACH ST. ND11379\nprice_base: !ruby/object:BigDecimal 18:0.33E3\nprice_sale: !ruby/object:BigDecimal 18:0.869E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-666 fue creado. 187.149.55.171 7137e98b-7693-4142-8a0f-81a922ebc7b5 2019-08-21 23:38:42.249746 13332 666 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000666'\n 2 \N 187.149.55.171 7137e98b-7693-4142-8a0f-81a922ebc7b5 2019-08-21 23:38:42.295239 13333 784 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 666\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 7137e98b-7693-4142-8a0f-81a922ebc7b5 2019-08-21 23:38:42.334962 13334 121 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-73\namount: !ruby/object:BigDecimal 18:0.198E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.198E4\nobservations: ''\npurchase_date: 2019-08-21\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-73 por $ 1980.0 MXN creada. 187.149.55.171 14a10a8e-702c-4ceb-80da-5fbdfdd7a765 2019-08-21 23:38:48.761664 13335 784 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.55.171 14a10a8e-702c-4ceb-80da-5fbdfdd7a765 2019-08-21 23:38:48.785495 13336 979 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 375\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-08-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-568\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 616f5185-86cf-4fcb-a374-5ca22677df9e 2019-08-21 23:39:42.883253 13337 784 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.55.171 616f5185-86cf-4fcb-a374-5ca22677df9e 2019-08-21 23:39:42.916105 13338 979 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 f159ebf7-0525-4d24-8f3a-8a448bba4a69 2019-08-21 23:39:48.788216 13339 1353 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 375\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.869E3\nmove_type: '1'\nsale_id: 979\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-568\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.869E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-568 187.149.55.171 f159ebf7-0525-4d24-8f3a-8a448bba4a69 2019-08-21 23:39:48.810968 13381 980 Sale \N \N 2 User \N create ---\ncustomer_id: 137\nuser_id: 2\nopen_cash_register_id: 375\namount: !ruby/object:BigDecimal 18:0.579E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.579E3\nstatus: 0\ndate_sale: 2019-08-21\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-569\nexpiration_date: 2019-09-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 78032df6-8a7b-4c41-a98b-148576ea9775 2019-08-22 01:18:36.578279 50345 3951 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 487c342c-4963-4538-8d84-6f4fb6a03bb3 2020-12-29 19:23:13.01417 13340 667 Product \N \N 2 User \N create ---\nsku: BLU-667\nname: BLS-0054\ndescription: "TOP LOVESONG DE ENCAJE NEGRO Y DORADO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.26E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-667 fue creado. 187.149.55.171 74bd1811-ce23-46a7-a032-06e943e67a22 2019-08-22 00:22:47.467878 13341 667 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000667'\n 2 \N 187.149.55.171 74bd1811-ce23-46a7-a032-06e943e67a22 2019-08-22 00:22:47.506603 13342 785 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 667\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 74bd1811-ce23-46a7-a032-06e943e67a22 2019-08-22 00:22:47.541155 13343 668 Product \N \N 2 User \N create ---\nsku: BLU-668\nname: BLS-0059\ndescription: "BRALETTE DE ENCAJE ST.LB20 LB18\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.8E2\nprice_sale: !ruby/object:BigDecimal 18:0.299E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-668 fue creado. 187.149.55.171 3715d17d-a639-41b0-924e-cd6f78c22b73 2019-08-22 00:25:24.950056 13344 668 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000668'\n 2 \N 187.149.55.171 3715d17d-a639-41b0-924e-cd6f78c22b73 2019-08-22 00:25:24.98923 13345 786 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 668\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 3715d17d-a639-41b0-924e-cd6f78c22b73 2019-08-22 00:25:25.033217 13346 669 Product \N \N 2 User \N create ---\nsku: BLU-669\nname: BLS-0060\ndescription: "PLAYERA DE BUGS SISTER ST.LD136\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.15E3\nprice_sale: !ruby/object:BigDecimal 18:0.419E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-669 fue creado. 187.149.55.171 50091d1b-6864-4ec0-9893-b4f6766e69c6 2019-08-22 00:26:33.260958 13347 669 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000669'\n 2 \N 187.149.55.171 50091d1b-6864-4ec0-9893-b4f6766e69c6 2019-08-22 00:26:33.292481 13348 787 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 669\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 50091d1b-6864-4ec0-9893-b4f6766e69c6 2019-08-22 00:26:33.321207 13349 670 Product \N \N 2 User \N create ---\nsku: BLU-670\nname: BLS-0061\ndescription: "PANTIBLUSA NEGRA BUGAMBILIA ST. 5546BW\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.25E3\nprice_sale: !ruby/object:BigDecimal 18:0.639E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-670 fue creado. 187.149.55.171 0aaa1487-4cac-4814-8331-bb42ee0f0f48 2019-08-22 00:27:16.498579 13350 670 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000670'\n 2 \N 187.149.55.171 0aaa1487-4cac-4814-8331-bb42ee0f0f48 2019-08-22 00:27:16.530634 13351 788 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 670\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 0aaa1487-4cac-4814-8331-bb42ee0f0f48 2019-08-22 00:27:16.566889 13352 671 Product \N \N 2 User \N create ---\nsku: BLU-671\nname: BLS-0066\ndescription: "BLUSON RAYADO BLUE B AZUL MARINO ST. T6022\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.29E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-671 fue creado. 187.149.55.171 e3b96419-22ab-4f30-92d8-272f22eaf0b2 2019-08-22 00:30:26.166677 13353 671 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000671'\n 2 \N 187.149.55.171 e3b96419-22ab-4f30-92d8-272f22eaf0b2 2019-08-22 00:30:26.195983 13354 789 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 671\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 e3b96419-22ab-4f30-92d8-272f22eaf0b2 2019-08-22 00:30:26.227184 13355 122 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-74\namount: !ruby/object:BigDecimal 18:0.1524E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1524E5\nobservations: ''\npurchase_date: 2019-08-21\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-74 por $ 15240.0 MXN creada. 187.149.55.171 07474a52-fa53-4ed6-a517-a67ee324b181 2019-08-22 00:31:25.361388 13356 789 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.55.171 07474a52-fa53-4ed6-a517-a67ee324b181 2019-08-22 00:31:25.38786 13357 786 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E2\n 2 \N 187.149.55.171 07474a52-fa53-4ed6-a517-a67ee324b181 2019-08-22 00:31:25.417809 13358 787 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.18E2\n 2 \N 187.149.55.171 07474a52-fa53-4ed6-a517-a67ee324b181 2019-08-22 00:31:25.446491 13359 788 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.24E2\n 2 \N 187.149.55.171 07474a52-fa53-4ed6-a517-a67ee324b181 2019-08-22 00:31:25.471756 13382 633 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 187.149.55.171 78032df6-8a7b-4c41-a98b-148576ea9775 2019-08-22 01:18:36.61771 13453 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-20 16:28:57.692620000 Z\n- &1 2019-08-21 16:05:15.479877000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 15:13:40.319729870 Z\nsign_in_count:\n- 593\n- 594\n 1188 \N 187.149.55.171 85a1461c-6e37-4fa1-a14c-5b4bed1fe5ac 2019-08-22 15:13:40.363416 13360 672 Product \N \N 2 User \N create ---\nsku: FAL-672\nname: FLD-0011\ndescription: "FALDA DE PATOLES SANJOY ST. 16710\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.27E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-672 fue creado. 187.149.55.171 c8457e1b-3556-4968-a93d-5428af090393 2019-08-22 00:33:52.049473 13361 672 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000672'\n 2 \N 187.149.55.171 c8457e1b-3556-4968-a93d-5428af090393 2019-08-22 00:33:52.086848 13362 790 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 672\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 c8457e1b-3556-4968-a93d-5428af090393 2019-08-22 00:33:52.13005 13363 673 Product \N \N 2 User \N create ---\nsku: FAL-673\nname: FLD-0013\ndescription: "FALDA DE PATOLES LOVE MUYMUY ST. 0787\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.28E3\nprice_sale: !ruby/object:BigDecimal 18:0.56E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-673 fue creado. 187.149.55.171 81852c6b-8835-4c0a-b628-1fef9de4f94d 2019-08-22 00:48:24.509183 13364 673 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000673'\n 2 \N 187.149.55.171 81852c6b-8835-4c0a-b628-1fef9de4f94d 2019-08-22 00:48:24.545985 13365 791 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 673\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 81852c6b-8835-4c0a-b628-1fef9de4f94d 2019-08-22 00:48:24.59136 13366 123 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-75\namount: !ruby/object:BigDecimal 18:0.142605E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.142605E5\nobservations: ''\npurchase_date: 2019-08-21\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-75 por $ 14260.5 MXN creada. 187.149.55.171 84288ddf-d416-4c0f-94cc-d760e21efe20 2019-08-22 00:48:36.098737 13367 744 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.18E2\n 9 \N 187.149.55.171 84288ddf-d416-4c0f-94cc-d760e21efe20 2019-08-22 00:48:36.123369 13368 790 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.18E2\n 2 \N 187.149.55.171 84288ddf-d416-4c0f-94cc-d760e21efe20 2019-08-22 00:48:36.149641 13369 791 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.18E2\n 2 \N 187.149.55.171 84288ddf-d416-4c0f-94cc-d760e21efe20 2019-08-22 00:48:36.179344 13370 674 Product \N \N 2 User \N create ---\nsku: VES-674\nname: VST-0042\ndescription: "VESTIDO DORADO TEJIDO APEACH ST. 21356\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.32E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-674 fue creado. 187.149.55.171 899b9460-9c1b-4e98-ac00-af38b3b974de 2019-08-22 01:05:19.498521 13371 674 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000674'\n 2 \N 187.149.55.171 899b9460-9c1b-4e98-ac00-af38b3b974de 2019-08-22 01:05:19.53667 13372 792 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 674\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 899b9460-9c1b-4e98-ac00-af38b3b974de 2019-08-22 01:05:19.572534 13373 675 Product \N \N 2 User \N create ---\nsku: VES-675\nname: VST-0045\ndescription: "VESTIDO FLORAL DAYLIGHT ST. D47574\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.29E3\nprice_sale: !ruby/object:BigDecimal 18:0.849E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-675 fue creado. 187.149.55.171 2a9e4828-cc29-4df6-8709-eca43dcb769a 2019-08-22 01:06:51.527745 13374 675 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000675'\n 2 \N 187.149.55.171 2a9e4828-cc29-4df6-8709-eca43dcb769a 2019-08-22 01:06:51.584981 13375 793 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 675\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 2a9e4828-cc29-4df6-8709-eca43dcb769a 2019-08-22 01:06:51.633027 13376 124 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-76\namount: !ruby/object:BigDecimal 18:0.54E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.54E4\nobservations: ''\npurchase_date: 2019-08-21\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-76 por $ 5400.0 MXN creada. 187.149.55.171 682a2785-8149-4c7c-9548-2a5aaefb95a8 2019-08-22 01:07:07.091559 13377 792 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.55.171 682a2785-8149-4c7c-9548-2a5aaefb95a8 2019-08-22 01:07:07.132818 13378 793 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.12E2\n 2 \N 187.149.55.171 682a2785-8149-4c7c-9548-2a5aaefb95a8 2019-08-22 01:07:07.173405 13379 1354 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 375\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 801\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-451 187.149.55.171 009ebacc-9fc6-49b6-98f4-6502556092ef 2019-08-22 01:13:36.588073 13380 801 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.55.171 eb5a4107-cece-4478-9c2b-f92395409230 2019-08-22 01:13:42.465634 13406 678 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000678'\n 2 \N 189.186.53.136 fba686ff-85f5-4236-83b5-6b9a58258a82 2019-08-22 03:31:46.6963 52657 4191 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.110.86 c2030029-83cb-4efc-ba17-6b756749469d 2021-03-02 00:30:14.812778 13383 1355 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 375\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 980\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-569\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-569 187.149.55.171 23d846df-a96a-443c-8f0d-51f9b8f0f0ba 2019-08-22 01:18:44.575918 13384 980 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.55.171 cf7e872a-5155-4d2f-985a-38d19bde3288 2019-08-22 01:18:47.96671 13385 375 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 375\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.264599E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.778E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3278E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.55.171 dc332eae-0602-433e-b2ca-dc8551967f50 2019-08-22 01:24:21.276315 13386 375 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 dc332eae-0602-433e-b2ca-dc8551967f50 2019-08-22 01:24:21.295778 13387 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-21 18:16:40.548946000 Z\n- &1 2019-08-21 21:56:40.107095000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 01:39:29.707873154 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938339\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938106\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938106\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934033\n mask_addr: 4294967295\nsign_in_count:\n- 476\n- 477\n 954 \N 200.68.134.81 923be51b-315f-42c7-ab83-bc2981ab0535 2019-08-22 01:39:29.71617 13388 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FZgoAu8EryX6pybaqRCN\n- syEoBzME61MaZymWAn_p\n 955 \N 200.68.134.81 923be51b-315f-42c7-ab83-bc2981ab0535 2019-08-22 01:39:29.752434 13389 376 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 376\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.829E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.283E3\nphysical_cash: !ruby/object:BigDecimal 18:0.783E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.55.171 016289a2-0b83-45ac-8505-38f71627d0c3 2019-08-22 01:41:46.145218 13390 376 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 016289a2-0b83-45ac-8505-38f71627d0c3 2019-08-22 01:41:46.158958 13391 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-21 21:56:40.107095000 Z\n- &1 2019-08-22 01:39:29.707873000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 02:31:48.131970916 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938106\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934033\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934033\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097224\n mask_addr: 4294967295\nsign_in_count:\n- 477\n- 478\n 956 \N 189.186.53.136 a5e2c3e3-165a-4f2f-9506-7c7c0f6ae728 2019-08-22 02:31:48.162893 13392 4 User \N \N 4 User \N update ---\nunique_session_id:\n- syEoBzME61MaZymWAn_p\n- FYTyyMqxBbHYWDsxL8sx\n 957 \N 189.186.53.136 a5e2c3e3-165a-4f2f-9506-7c7c0f6ae728 2019-08-22 02:31:48.19089 13393 666 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '666'\n is_parent: false\n sku: VES-666\n name: VST-0038\n description: VESTIDO FLOREADO A.PEACH ST. ND11379\n price_base: '330.0'\n price_sale: '869.0'\n img_product: F862B415-40C8-46CC-BFE4-828460FA0362_2394_.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000666'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-21 23:38:42.234655'\n updated_at: &12 2019-08-22 02:47:43.461153434 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '666'\n sku: VES-666\n name: VST-0038\n description: VESTIDO FLOREADO A.PEACH ST. ND11379\n price_base: '330.00'\n price_sale: '869.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-21 23:38:42.234655'\n updated_at: '2019-08-21 23:38:42.290642'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000666'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '666'\n type: *3\n value: 666\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-666\n type: *7\n value: VES-666\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0038\n type: *8\n value: VST-0038\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO FLOREADO A.PEACH ST. ND11379\n type: *6\n value: VESTIDO FLOREADO A.PEACH ST. ND11379\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '330.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.33E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '869.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.869E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: F862B415-40C8-46CC-BFE4-828460FA0362_2394_.JPG\n type: *2\n value: F862B415-40C8-46CC-BFE4-828460FA0362_2394_.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000666'\n type: *2\n value: '0000666'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-21 23:38:42.234655'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- F862B415-40C8-46CC-BFE4-828460FA0362_2394_.JPG\n 3 El producto VES-666 fue modificado. 189.186.53.136 b70830ab-8692-4260-8dc5-6f28a75879fc 2019-08-22 02:47:43.506048 13394 671 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '671'\n is_parent: false\n sku: BLU-671\n name: BLS-0066\n description: "BLUSON RAYADO BLUE B AZUL MARINO ST. T6022\\r\\n"\n price_base: '290.0'\n price_sale: '799.0'\n img_product: file-18_2397_.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000671'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-22 00:30:26.152903'\n updated_at: &12 2019-08-22 02:52:56.777315664 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '671'\n sku: BLU-671\n name: BLS-0066\n description: "BLUSON RAYADO BLUE B AZUL MARINO ST. T6022\\r\\n"\n price_base: '290.00'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-22 00:30:26.152903'\n updated_at: '2019-08-22 00:30:26.192953'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000671'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '671'\n type: *3\n value: 671\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-671\n type: *7\n value: BLU-671\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0066\n type: *8\n value: BLS-0066\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "BLUSON RAYADO BLUE B AZUL MARINO ST. T6022\\r\\n"\n type: *6\n value: "BLUSON RAYADO BLUE B AZUL MARINO ST. T6022\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '290.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.29E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: file-18_2397_.jpeg\n type: *2\n value: file-18_2397_.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000671'\n type: *2\n value: '0000671'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-22 00:30:26.152903'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- file-18_2397_.jpeg\n 3 El producto BLU-671 fue modificado. 189.186.53.136 4678ab94-4dd5-49c4-8d70-b2ab9b8bbb50 2019-08-22 02:52:56.822699 13395 668 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '668'\n is_parent: false\n sku: BLU-668\n name: BLS-0059\n description: "BRALETTE DE ENCAJE ST.LB20 LB18\\r\\n"\n price_base: '80.0'\n price_sale: '299.0'\n img_product: 5C16C34B-4810-4EB9-B1CD-CFE81E2B0093_2398_.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000668'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-22 00:25:24.931574'\n updated_at: &12 2019-08-22 02:56:27.246315273 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '668'\n sku: BLU-668\n name: BLS-0059\n description: "BRALETTE DE ENCAJE ST.LB20 LB18\\r\\n"\n price_base: '80.00'\n price_sale: '299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-22 00:25:24.931574'\n updated_at: '2019-08-22 00:25:24.985994'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000668'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '668'\n type: *3\n value: 668\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-668\n type: *7\n value: BLU-668\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0059\n type: *8\n value: BLS-0059\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "BRALETTE DE ENCAJE ST.LB20 LB18\\r\\n"\n type: *6\n value: "BRALETTE DE ENCAJE ST.LB20 LB18\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '80.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.299E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 5C16C34B-4810-4EB9-B1CD-CFE81E2B0093_2398_.JPG\n type: *2\n value: 5C16C34B-4810-4EB9-B1CD-CFE81E2B0093_2398_.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000668'\n type: *2\n value: '0000668'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-22 00:25:24.931574'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 5C16C34B-4810-4EB9-B1CD-CFE81E2B0093_2398_.JPG\n 3 El producto BLU-668 fue modificado. 189.186.53.136 4822279d-9464-4029-b2cd-fc11fb470617 2019-08-22 02:56:27.311427 13396 669 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '669'\n is_parent: false\n sku: BLU-669\n name: BLS-0060\n description: "PLAYERA DE BUGS SISTER ST.LD136\\r\\n"\n price_base: '150.0'\n price_sale: '419.0'\n img_product: A21E2BD4-28D9-45CB-A0AB-DDA5DB984833_2400_.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000669'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-22 00:26:33.245466'\n updated_at: &12 2019-08-22 03:01:15.614291535 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '669'\n sku: BLU-669\n name: BLS-0060\n description: "PLAYERA DE BUGS SISTER ST.LD136\\r\\n"\n price_base: '150.00'\n price_sale: '419.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-22 00:26:33.245466'\n updated_at: '2019-08-22 00:26:33.289483'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000669'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '669'\n type: *3\n value: 669\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-669\n type: *7\n value: BLU-669\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0060\n type: *8\n value: BLS-0060\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "PLAYERA DE BUGS SISTER ST.LD136\\r\\n"\n type: *6\n value: "PLAYERA DE BUGS SISTER ST.LD136\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '150.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.15E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '419.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.419E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: A21E2BD4-28D9-45CB-A0AB-DDA5DB984833_2400_.JPG\n type: *2\n value: A21E2BD4-28D9-45CB-A0AB-DDA5DB984833_2400_.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000669'\n type: *2\n value: '0000669'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-22 00:26:33.245466'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- A21E2BD4-28D9-45CB-A0AB-DDA5DB984833_2400_.JPG\n 3 El producto BLU-669 fue modificado. 189.186.53.136 9ad3b125-9793-4a0a-ac61-fd2457facd6e 2019-08-22 03:01:15.662187 13397 670 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '670'\n is_parent: false\n sku: BLU-670\n name: BLS-0061\n description: "PANTIBLUSA NEGRA BUGAMBILIA ST. 5546BW\\r\\n"\n price_base: '250.0'\n price_sale: '639.0'\n img_product: 9D82A334-02E7-4F73-8638-0440A899F4EF_2404_.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000670'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-22 00:27:16.48415'\n updated_at: &12 2019-08-22 03:08:00.422629000 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '670'\n sku: BLU-670\n name: BLS-0061\n description: "PANTIBLUSA NEGRA BUGAMBILIA ST. 5546BW\\r\\n"\n price_base: '250.00'\n price_sale: '639.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-22 00:27:16.48415'\n updated_at: '2019-08-22 00:27:16.527732'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000670'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '670'\n type: *3\n value: 670\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-670\n type: *7\n value: BLU-670\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0061\n type: *8\n value: BLS-0061\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "PANTIBLUSA NEGRA BUGAMBILIA ST. 5546BW\\r\\n"\n type: *6\n value: "PANTIBLUSA NEGRA BUGAMBILIA ST. 5546BW\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '250.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.25E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '639.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.639E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 9D82A334-02E7-4F73-8638-0440A899F4EF_2404_.JPG\n type: *2\n value: 9D82A334-02E7-4F73-8638-0440A899F4EF_2404_.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000670'\n type: *2\n value: '0000670'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-22 00:27:16.48415'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 9D82A334-02E7-4F73-8638-0440A899F4EF_2404_.JPG\n 3 El producto BLU-670 fue modificado. 189.186.53.136 13bb3a29-4f1e-4fe2-ad70-5a0bd9878bad 2019-08-22 03:08:00.468048 13398 672 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '672'\n is_parent: false\n sku: FAL-672\n name: FLD-0011\n description: "FALDA DE PATOLES SANJOY ST. 16710\\r\\n"\n price_base: '270.0'\n price_sale: '699.0'\n img_product: 26D5B639-FFDF-4ABD-AFBA-F62B2D7C6A2D_2416_.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000672'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-22 00:33:52.033005'\n updated_at: &12 2019-08-22 03:13:08.717319217 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '672'\n sku: FAL-672\n name: FLD-0011\n description: "FALDA DE PATOLES SANJOY ST. 16710\\r\\n"\n price_base: '270.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-22 00:33:52.033005'\n updated_at: '2019-08-22 00:33:52.083551'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000672'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '672'\n type: *3\n value: 672\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-672\n type: *7\n value: FAL-672\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0011\n type: *8\n value: FLD-0011\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "FALDA DE PATOLES SANJOY ST. 16710\\r\\n"\n type: *6\n value: "FALDA DE PATOLES SANJOY ST. 16710\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '270.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.27E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 26D5B639-FFDF-4ABD-AFBA-F62B2D7C6A2D_2416_.JPG\n type: *2\n value: 26D5B639-FFDF-4ABD-AFBA-F62B2D7C6A2D_2416_.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000672'\n type: *2\n value: '0000672'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-22 00:33:52.033005'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 26D5B639-FFDF-4ABD-AFBA-F62B2D7C6A2D_2416_.JPG\n 3 El producto FAL-672 fue modificado. 189.186.53.136 a3f17840-d315-4b35-a391-c76e33e1c006 2019-08-22 03:13:08.775129 13399 674 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '674'\n is_parent: false\n sku: VES-674\n name: VST-0042\n description: "VESTIDO DORADO TEJIDO APEACH ST. 21356\\r\\n"\n price_base: '320.0'\n price_sale: '999.0'\n img_product: 313D99AC-72C5-4D56-A778-1BF5E0F00BD5_2390_.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000674'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-22 01:05:19.476652'\n updated_at: &12 2019-08-22 03:15:01.419937050 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '674'\n sku: VES-674\n name: VST-0042\n description: "VESTIDO DORADO TEJIDO APEACH ST. 21356\\r\\n"\n price_base: '320.00'\n price_sale: '999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-22 01:05:19.476652'\n updated_at: '2019-08-22 01:05:19.533498'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000674'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '674'\n type: *3\n value: 674\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-674\n type: *7\n value: VES-674\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0042\n type: *8\n value: VST-0042\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "VESTIDO DORADO TEJIDO APEACH ST. 21356\\r\\n"\n type: *6\n value: "VESTIDO DORADO TEJIDO APEACH ST. 21356\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '320.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.32E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 313D99AC-72C5-4D56-A778-1BF5E0F00BD5_2390_.JPG\n type: *2\n value: 313D99AC-72C5-4D56-A778-1BF5E0F00BD5_2390_.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000674'\n type: *2\n value: '0000674'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-22 01:05:19.476652'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 313D99AC-72C5-4D56-A778-1BF5E0F00BD5_2390_.JPG\n 3 El producto VES-674 fue modificado. 189.186.53.136 0269b0da-d619-4c62-8faf-3b6293424fc1 2019-08-22 03:15:01.462527 13400 675 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '675'\n is_parent: false\n sku: VES-675\n name: VST-0045\n description: "VESTIDO FLORAL DAYLIGHT ST. D47574\\r\\n"\n price_base: '290.0'\n price_sale: '849.0'\n img_product: 4E00E300-77C9-4AD5-843C-C2FF5341AF67_2418_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000675'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-22 01:06:51.497873'\n updated_at: &12 2019-08-22 03:18:59.392867521 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '675'\n sku: VES-675\n name: VST-0045\n description: "VESTIDO FLORAL DAYLIGHT ST. D47574\\r\\n"\n price_base: '290.00'\n price_sale: '849.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-22 01:06:51.497873'\n updated_at: '2019-08-22 01:06:51.579771'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000675'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '675'\n type: *3\n value: 675\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-675\n type: *7\n value: VES-675\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0045\n type: *8\n value: VST-0045\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "VESTIDO FLORAL DAYLIGHT ST. D47574\\r\\n"\n type: *6\n value: "VESTIDO FLORAL DAYLIGHT ST. D47574\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '290.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.29E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '849.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.849E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 4E00E300-77C9-4AD5-843C-C2FF5341AF67_2418_.jpg\n type: *2\n value: 4E00E300-77C9-4AD5-843C-C2FF5341AF67_2418_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000675'\n type: *2\n value: '0000675'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-22 01:06:51.497873'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 4E00E300-77C9-4AD5-843C-C2FF5341AF67_2418_.jpg\n 3 El producto VES-675 fue modificado. 189.186.53.136 6af5ae5d-89e7-4102-bc1e-c44b5abff11f 2019-08-22 03:18:59.436127 13401 676 Product \N \N 4 User \N create ---\nsku: VES-676\nname: VST-0046\ndescription: VESTIDO APECH NEGRO A CUADROS TIPO GABARDINA YJ-50201\nprice_base: !ruby/object:BigDecimal 18:0.455E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-676 fue creado. 189.186.53.136 03d4fd82-f836-41eb-87b7-39d6195a5217 2019-08-22 03:24:48.464377 13402 676 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000676'\n 2 \N 189.186.53.136 03d4fd82-f836-41eb-87b7-39d6195a5217 2019-08-22 03:24:48.521182 13403 677 Product \N \N 4 User \N create ---\nsku: BLU-677\nname: BLS-0062\ndescription: BLUSA CAMPESINA DE GASA CQBYCQ 9157TW\nprice_base: !ruby/object:BigDecimal 18:0.35E3\nprice_sale: !ruby/object:BigDecimal 18:0.7E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: C53D81FD-1608-42BB-8B31-3D48CE6ACE59_2406_.JPG\ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-677 fue creado. 189.186.53.136 e17a8e2b-6cc1-4110-a9b1-9d88764abae1 2019-08-22 03:28:24.497803 13404 677 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000677'\n 2 \N 189.186.53.136 e17a8e2b-6cc1-4110-a9b1-9d88764abae1 2019-08-22 03:28:24.540476 13405 678 Product \N \N 4 User \N create ---\nsku: VES-678\nname: VST-0042\ndescription: VESTIDO DE ENCAJE CON BOLITAS 8652DK CQBYCQ\nprice_base: !ruby/object:BigDecimal 18:0.44E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 04D6C9AC-9D8C-4078-A03D-9D77B1DBA85A_2410_.JPG\ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-678 fue creado. 189.186.53.136 fba686ff-85f5-4236-83b5-6b9a58258a82 2019-08-22 03:31:46.659228 13407 679 Product \N \N 4 User \N create ---\nsku: VES-679\nname: VST-0043\ndescription: VESTIDO NEGRO MOÑO 9021DK CQBYCQ\nprice_base: !ruby/object:BigDecimal 18:0.43E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 2D3A0557-A77E-4D3A-8D8D-AD769528EF27_2408_.JPG\ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-679 fue creado. 189.186.53.136 d5d8e577-a18e-4b11-8365-3c668c5280ca 2019-08-22 03:33:39.72436 13408 679 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000679'\n 2 \N 189.186.53.136 d5d8e577-a18e-4b11-8365-3c668c5280ca 2019-08-22 03:33:39.759927 13409 125 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-7\namount: !ruby/object:BigDecimal 18:0.1005E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1005E5\nobservations: ''\npurchase_date: 2019-08-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-7 por $ 10050.0 MXN creada. 189.186.53.136 5b7fdecc-f5c2-43f1-9cb6-24e422b04ecc 2019-08-22 03:35:13.106679 13410 680 Product \N \N 4 User \N create ---\nsku: PAN-680\nname: PNT-0011\ndescription: LEGGINS NEGRO DL20123 SANJOY\nprice_base: !ruby/object:BigDecimal 18:0.16E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-680 fue creado. 189.186.53.136 f556c1b8-9192-4320-85b4-469a59364036 2019-08-22 03:39:07.82569 13411 680 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000680'\n 2 \N 189.186.53.136 f556c1b8-9192-4320-85b4-469a59364036 2019-08-22 03:39:07.853833 13412 681 Product \N \N 4 User \N create ---\nsku: BLU-681\nname: BLS-0063\ndescription: TOP METALICO DORADO Y PLATEADO GE1452S SANJOY\nprice_base: !ruby/object:BigDecimal 18:0.31E3\nprice_sale: !ruby/object:BigDecimal 18:0.759E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 2E376ED0-2055-4522-9967-1F6BCA240D1F_2414_.JPG\ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-681 fue creado. 189.186.53.136 891e68fa-e65c-47ca-882d-c662971be3f8 2019-08-22 03:40:37.744364 13413 681 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000681'\n 2 \N 189.186.53.136 891e68fa-e65c-47ca-882d-c662971be3f8 2019-08-22 03:40:37.791274 13414 682 Product \N \N 4 User \N create ---\nsku: FAL-682\nname: FLD-0013\ndescription: FALDA NEGRA DE TUL G1101\nprice_base: !ruby/object:BigDecimal 18:0.24E3\nprice_sale: !ruby/object:BigDecimal 18:0.649E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 6D9C3775-EB56-4CE0-868D-BCD4A3D880D5_2402__-_copia.JPG\ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-682 fue creado. 189.186.53.136 7630b5bf-0afc-4914-af54-c90e9cef75ec 2019-08-22 03:42:25.457507 13415 682 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000682'\n 2 \N 189.186.53.136 7630b5bf-0afc-4914-af54-c90e9cef75ec 2019-08-22 03:42:25.486684 13416 683 Product \N \N 4 User \N create ---\nsku: PAN-683\nname: PNT-0012\ndescription: PANTALON NEGRO 52127P MILK&HONEY\nprice_base: !ruby/object:BigDecimal 18:0.179E3\nprice_sale: !ruby/object:BigDecimal 18:0.569E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-683 fue creado. 189.186.53.136 33c01c54-0a49-45e1-a4b1-0deb9b71578e 2019-08-22 03:43:35.441326 13417 683 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000683'\n 2 \N 189.186.53.136 33c01c54-0a49-45e1-a4b1-0deb9b71578e 2019-08-22 03:43:35.477483 13418 126 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-8\namount: !ruby/object:BigDecimal 18:0.5099E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.5099E4\nobservations: ''\npurchase_date: 2019-08-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-8 por $ 5099.0 MXN creada. 189.186.53.136 80a4618a-c634-4623-8461-73d8408463a9 2019-08-22 03:44:25.799914 13419 684 Product \N \N 4 User \N create ---\nsku: VES-684\nname: VST-0047\ndescription: VESTIDO LATISTE NEGRO CON CINTO\nprice_base: !ruby/object:BigDecimal 18:0.56E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: PHOTO-2019-08-21-22-08-26_2420_.jpg\ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-684 fue creado. 189.186.53.136 edde489b-8de4-4aff-a300-b57d61dbe70f 2019-08-22 04:15:26.905085 13420 684 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000684'\n 2 \N 189.186.53.136 edde489b-8de4-4aff-a300-b57d61dbe70f 2019-08-22 04:15:26.937855 13421 794 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 684\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.53.136 edde489b-8de4-4aff-a300-b57d61dbe70f 2019-08-22 04:15:26.96951 13422 127 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-40\namount: !ruby/object:BigDecimal 18:0.56E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.56E3\nobservations: ''\npurchase_date: 2019-08-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-40 por $ 560.0 MXN creada. 189.186.53.136 79f1c82f-e84a-4674-8eee-b8799b54801e 2019-08-22 04:15:40.937324 13423 794 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.53.136 79f1c82f-e84a-4674-8eee-b8799b54801e 2019-08-22 04:15:40.960755 13424 661 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '661'\n is_parent: false\n sku: VES-661\n name: VST-0037\n description: VESTIDO LOVESONG COLOR MOSTAZA\n price_base: '260.0'\n price_sale: '599.0'\n img_product: 26CAF2F8-FAF2-4467-8611-D477DEF24069_2436_.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000661'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-20 21:40:25.478389'\n updated_at: &12 2019-08-22 04:23:11.601670515 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '661'\n sku: VES-661\n name: VST-0037\n description: VESTIDO LOVESONG COLOR MOSTAZA\n price_base: '260.00'\n price_sale: '599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-20 21:40:25.478389'\n updated_at: '2019-08-20 21:40:25.522492'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000661'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '661'\n type: *3\n value: 661\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-661\n type: *7\n value: VES-661\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0037\n type: *8\n value: VST-0037\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO LOVESONG COLOR MOSTAZA\n type: *6\n value: VESTIDO LOVESONG COLOR MOSTAZA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '260.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.26E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.599E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 26CAF2F8-FAF2-4467-8611-D477DEF24069_2436_.JPG\n type: *2\n value: 26CAF2F8-FAF2-4467-8611-D477DEF24069_2436_.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000661'\n type: *2\n value: '0000661'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-20 21:40:25.478389'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 26CAF2F8-FAF2-4467-8611-D477DEF24069_2436_.JPG\n 3 El producto VES-661 fue modificado. 189.186.53.136 23be2d4b-9072-47c7-8f4a-45867d53bba3 2019-08-22 04:23:11.678448 13425 662 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '662'\n is_parent: false\n sku: BLU-662\n name: BLS-0054\n description: TOP LOVESONG ENCAJE NEGRO Y DORADO\n price_base: '270.0'\n price_sale: '699.0'\n img_product: PHOTO-2019-08-12-12-53-15_2432_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000662'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-20 21:43:34.027865'\n updated_at: &12 2019-08-22 04:24:07.732160355 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '662'\n sku: BLU-662\n name: BLS-0054\n description: TOP LOVESONG ENCAJE NEGRO Y DORADO\n price_base: '270.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-20 21:43:34.027865'\n updated_at: '2019-08-20 21:43:34.065348'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000662'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '662'\n type: *3\n value: 662\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-662\n type: *7\n value: BLU-662\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0054\n type: *8\n value: BLS-0054\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: TOP LOVESONG ENCAJE NEGRO Y DORADO\n type: *6\n value: TOP LOVESONG ENCAJE NEGRO Y DORADO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '270.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.27E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-08-12-12-53-15_2432_.jpg\n type: *2\n value: PHOTO-2019-08-12-12-53-15_2432_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000662'\n type: *2\n value: '0000662'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-20 21:43:34.027865'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-08-12-12-53-15_2432_.jpg\n 3 El producto BLU-662 fue modificado. 189.186.53.136 4aa9b615-e504-4d88-b2e1-82122e052cd9 2019-08-22 04:24:07.791174 13426 664 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '664'\n is_parent: false\n sku: BLU-664\n name: BLS-0057\n description: BLUSA LOVESONG CON OLANES EN LOS BRAZOS MAGENTTA Y DORADO\n price_base: '275.0'\n price_sale: '699.0'\n img_product: PHOTO-2019-08-12-12-53-14_2424_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000664'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-20 21:46:16.411256'\n updated_at: &12 2019-08-22 04:25:19.129332019 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '664'\n sku: BLU-664\n name: BLS-0057\n description: BLUSA LOVESONG CON OLANES EN LOS BRAZOS MAGENTTA Y DORADO\n price_base: '275.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-20 21:46:16.411256'\n updated_at: '2019-08-20 21:46:16.451052'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000664'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '664'\n type: *3\n value: 664\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-664\n type: *7\n value: BLU-664\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0057\n type: *8\n value: BLS-0057\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA LOVESONG CON OLANES EN LOS BRAZOS MAGENTTA\n Y DORADO\n type: *6\n value: BLUSA LOVESONG CON OLANES EN LOS BRAZOS MAGENTTA Y DORADO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '275.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.275E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-08-12-12-53-14_2424_.jpg\n type: *2\n value: PHOTO-2019-08-12-12-53-14_2424_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000664'\n type: *2\n value: '0000664'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-20 21:46:16.411256'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-08-12-12-53-14_2424_.jpg\n 3 El producto BLU-664 fue modificado. 189.186.53.136 1566073d-a33f-4384-a8c8-effdf37f61d4 2019-08-22 04:25:19.17262 13430 685 Product \N \N 4 User \N create ---\nsku: BLU-685\nname: BLS-0067\ndescription: BLUSA MOSTAZA 54219T MILK&HONEY\nprice_base: !ruby/object:BigDecimal 18:0.155E3\nprice_sale: !ruby/object:BigDecimal 18:0.399E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 00C3F485-54A1-4151-BE09-838EC1FAB4B8_2444_.JPG\ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-685 fue creado. 189.186.53.136 e8678593-1b82-450a-b4a0-1021af9a0fe8 2019-08-22 04:48:23.346747 13431 685 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000685'\n 2 \N 189.186.53.136 e8678593-1b82-450a-b4a0-1021af9a0fe8 2019-08-22 04:48:23.379852 13432 795 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 685\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.53.136 e8678593-1b82-450a-b4a0-1021af9a0fe8 2019-08-22 04:48:23.413082 13433 128 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-4\namount: !ruby/object:BigDecimal 18:0.93E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.93E3\nobservations: ''\npurchase_date: 2019-08-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-4 por $ 930.0 MXN creada. 189.186.53.136 2b51853b-dc32-45e0-b7bb-03d9b881a0a0 2019-08-22 04:48:57.851362 13434 795 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.53.136 2b51853b-dc32-45e0-b7bb-03d9b881a0a0 2019-08-22 04:48:57.874003 13435 686 Product \N \N 4 User \N create ---\nsku: VES-686\nname: VST-0044\ndescription: VESTIDO BLUE S NEGRO D92175\nprice_base: !ruby/object:BigDecimal 18:0.27E3\nprice_sale: !ruby/object:BigDecimal 18:0.649E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: D28FC7AA-D4D9-4A98-A158-0A439BA12F14_2446_.JPG\ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-686 fue creado. 189.186.53.136 60923a76-bde8-4bd2-8525-2c58f370e6dc 2019-08-22 04:54:05.989587 13436 686 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000686'\n 2 \N 189.186.53.136 60923a76-bde8-4bd2-8525-2c58f370e6dc 2019-08-22 04:54:06.020429 13437 687 Product \N \N 4 User \N create ---\nsku: VES-687\nname: VST-0050\ndescription: VESTIDO CORTE SIRENA COLOR TINTO B92152\nprice_base: !ruby/object:BigDecimal 18:0.26E3\nprice_sale: !ruby/object:BigDecimal 18:0.649E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 797BFDD8-4212-4DF0-8974-E3C96AE99F2C_2448_.JPG\ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-687 fue creado. 189.186.53.136 a4d8d288-424f-415f-b2aa-7a9cb5bdf912 2019-08-22 04:56:20.748011 13438 687 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000687'\n 2 \N 189.186.53.136 a4d8d288-424f-415f-b2aa-7a9cb5bdf912 2019-08-22 04:56:20.777465 13439 688 Product \N \N 4 User \N create ---\nsku: BLU-688\nname: BLS-0067\ndescription: PANTI MULTICOLOR /BLANCO B92152\nprice_base: !ruby/object:BigDecimal 18:0.26E3\nprice_sale: !ruby/object:BigDecimal 18:0.649E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 697DAB7C-E10C-47CB-B8DC-4FABA5FA8A78_2450_.JPG\ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-688 fue creado. 189.186.53.136 047f7cee-6247-4ab3-a248-ce5b48e5cf71 2019-08-22 04:58:07.856478 13440 688 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000688'\n 2 \N 189.186.53.136 047f7cee-6247-4ab3-a248-ce5b48e5cf71 2019-08-22 04:58:07.899338 13441 129 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-9\namount: !ruby/object:BigDecimal 18:0.474E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.474E4\nobservations: ''\npurchase_date: 2019-08-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-9 por $ 4740.0 MXN creada. 189.186.53.136 2a9d089a-368d-4d10-882e-7c68c2c97a19 2019-08-22 04:58:31.382888 13442 788 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.24E2\n- !ruby/object:BigDecimal 18:0.23E2\n 3 \N 189.186.53.136 30c76f5e-8455-4679-af8d-b4b30888be81 2019-08-22 05:00:34.97991 13443 788 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.23E2\n- !ruby/object:BigDecimal 18:0.18E2\n 4 \N 189.186.53.136 4890b2bd-f084-4b87-a4de-94695a956c8a 2019-08-22 05:00:39.176937 13444 790 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.18E2\n- !ruby/object:BigDecimal 18:0.17E2\n 3 \N 189.186.53.136 4c8f74bd-8945-4adb-9bc5-1e1aaa11ed43 2019-08-22 05:02:45.281597 13445 790 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.17E2\n- !ruby/object:BigDecimal 18:0.12E2\n 4 \N 189.186.53.136 ed85a5ba-268e-42ec-8de7-b65d9925b59d 2019-08-22 05:02:51.923095 13446 97 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-08-21\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.53.136 4b56d88d-541f-450d-91e6-6f56573b838d 2019-08-22 05:04:06.216765 13447 98 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-08-21\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 189.186.53.136 7f7097d6-1b74-446e-adf1-5ef40efd7eda 2019-08-22 05:08:30.415862 13448 676 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '676'\n is_parent: false\n sku: VES-676\n name: VST-0046\n description: VESTIDO APECH NEGRO A CUADROS TIPO GABARDINA YJ-50201\n price_base: '455.0'\n price_sale: '1299.0'\n img_product: 7F06422E-A3E0-482A-8FDC-DF4632DD3D1D_2388_.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000676'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-22 03:24:48.444418'\n updated_at: &12 2019-08-22 05:11:50.969313935 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '676'\n sku: VES-676\n name: VST-0046\n description: VESTIDO APECH NEGRO A CUADROS TIPO GABARDINA YJ-50201\n price_base: '455.00'\n price_sale: '1299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-22 03:24:48.444418'\n updated_at: '2019-08-22 03:24:48.516859'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000676'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '676'\n type: *3\n value: 676\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-676\n type: *7\n value: VES-676\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0046\n type: *8\n value: VST-0046\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO APECH NEGRO A CUADROS TIPO GABARDINA YJ-50201\n type: *6\n value: VESTIDO APECH NEGRO A CUADROS TIPO GABARDINA YJ-50201\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '455.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.455E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1299E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 7F06422E-A3E0-482A-8FDC-DF4632DD3D1D_2388_.JPG\n type: *2\n value: 7F06422E-A3E0-482A-8FDC-DF4632DD3D1D_2388_.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000676'\n type: *2\n value: '0000676'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-22 03:24:48.444418'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 7F06422E-A3E0-482A-8FDC-DF4632DD3D1D_2388_.JPG\n 3 El producto VES-676 fue modificado. 189.186.53.136 5b4ade02-6af6-447f-8740-ad32f1d2ee9d 2019-08-22 05:11:51.011896 13449 676 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '676'\n is_parent: false\n sku: VES-676\n name: VST-0046\n description: VESTIDO APECH NEGRO A CUADROS TIPO GABARDINA YJ-50201\n price_base: '455.0'\n price_sale: '1299.0'\n img_product: 7F06422E-A3E0-482A-8FDC-DF4632DD3D1D_2388_.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000676'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-22 03:24:48.444418'\n updated_at: &12 2019-08-22 05:11:56.302757818 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '676'\n sku: VES-676\n name: VST-0046\n description: VESTIDO APECH NEGRO A CUADROS TIPO GABARDINA YJ-50201\n price_base: '455.00'\n price_sale: '1299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-22 03:24:48.444418'\n updated_at: '2019-08-22 05:11:50.969313'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000676'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: 7F06422E-A3E0-482A-8FDC-DF4632DD3D1D_2388_.JPG\n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '676'\n type: *3\n value: 676\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-676\n type: *7\n value: VES-676\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0046\n type: *8\n value: VST-0046\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO APECH NEGRO A CUADROS TIPO GABARDINA YJ-50201\n type: *6\n value: VESTIDO APECH NEGRO A CUADROS TIPO GABARDINA YJ-50201\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '455.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.455E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1299E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 7F06422E-A3E0-482A-8FDC-DF4632DD3D1D_2388_.JPG\n type: *2\n value: 7F06422E-A3E0-482A-8FDC-DF4632DD3D1D_2388_.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000676'\n type: *2\n value: '0000676'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-22 03:24:48.444418'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/7F06422E-A3E0-482A-8FDC-DF4632DD3D1D_2388_.JPG"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader53686700\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_7F06422E-A3E0-482A-8FDC-DF4632DD3D1D_2388_.JPG"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader53682440\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_7F06422E-A3E0-482A-8FDC-DF4632DD3D1D_2388_.JPG"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader53669080\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_7F06422E-A3E0-482A-8FDC-DF4632DD3D1D_2388_.JPG"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- 7F06422E-A3E0-482A-8FDC-DF4632DD3D1D_2388_.JPG\n 4 El producto VES-676 fue modificado. 189.186.53.136 8375719f-942b-4b42-970b-f13b185ca401 2019-08-22 05:11:56.368053 13450 99 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-08-21\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.53.136 ce0a8dd6-7741-4259-9088-79ea4c7d6d99 2019-08-22 05:17:58.301311 13451 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 01:39:29.707873000 Z\n- &1 2019-08-22 02:31:48.131970000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 06:42:16.185649276 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934033\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097224\n mask_addr: 4294967295\nsign_in_count:\n- 478\n- 479\n 958 \N 189.186.53.136 8135cb54-ae8f-4f7e-b334-394d393d9e75 2019-08-22 06:42:16.192538 13454 3 User \N \N 3 User \N update ---\nunique_session_id:\n- oRD4TdtLRv8K36phG9eM\n- SHDy9xucLxv6CEuD-JmA\n 1189 \N 187.149.55.171 85a1461c-6e37-4fa1-a14c-5b4bed1fe5ac 2019-08-22 15:13:40.3975 13455 91 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-22\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.55.171 98b688c4-ff93-4f6e-8897-9f933b05c941 2019-08-22 15:14:09.803024 13456 796 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 653\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 98b688c4-ff93-4f6e-8897-9f933b05c941 2019-08-22 15:14:09.857104 13457 797 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 652\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 98b688c4-ff93-4f6e-8897-9f933b05c941 2019-08-22 15:14:09.899858 13458 98 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-22\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.55.171 bfe5fab1-2086-455a-81b2-dc2bf0d780a8 2019-08-22 15:14:17.715301 13459 798 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 681\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 bfe5fab1-2086-455a-81b2-dc2bf0d780a8 2019-08-22 15:14:17.744325 13460 799 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 683\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 bfe5fab1-2086-455a-81b2-dc2bf0d780a8 2019-08-22 15:14:17.774253 13461 800 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 664\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 bfe5fab1-2086-455a-81b2-dc2bf0d780a8 2019-08-22 15:14:17.803745 13462 801 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 686\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 bfe5fab1-2086-455a-81b2-dc2bf0d780a8 2019-08-22 15:14:17.83246 13463 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 02:31:48.131970000 Z\n- &1 2019-08-22 06:42:16.185649000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 15:14:51.372621857 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097224\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\nsign_in_count:\n- 479\n- 480\n 960 \N 187.149.55.171 43d15544-70e9-41b9-962b-622c09d3239f 2019-08-22 15:14:51.383123 13464 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QGTtNDMzx6y8PiuxDaCW\n- D92sKwWrC2BfkJ1ArDtp\n 961 \N 187.149.55.171 43d15544-70e9-41b9-962b-622c09d3239f 2019-08-22 15:14:51.404469 13465 799 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 2 \N 187.149.55.171 c277f1c7-a334-41b1-8746-4d8343e6dc3a 2019-08-22 15:19:44.176891 13466 799 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 187.149.55.171 1668d6f4-bd4f-4fa6-8c6a-793b0e552788 2019-08-22 15:19:46.796981 13467 100 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-08-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.55.171 68c8cba2-c869-439e-8886-6745c30e472b 2019-08-22 15:19:48.739886 13468 788 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.18E2\n- !ruby/object:BigDecimal 18:0.17E2\n 5 \N 187.149.55.171 0867eba4-bb05-4918-9162-1c3cf4757aaf 2019-08-22 15:21:53.976996 13469 788 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.17E2\n- !ruby/object:BigDecimal 18:0.12E2\n 6 \N 187.149.55.171 74174235-77cb-4e6f-a181-c5ab610428a5 2019-08-22 15:21:56.472109 13470 101 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-08-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.55.171 fa0580ad-715f-4399-b9ea-4bc6fa94f97a 2019-08-22 15:21:57.060909 13471 788 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 7 \N 187.149.55.171 c87a46af-2b9a-4170-aa36-602cebfeefd0 2019-08-22 15:22:21.629956 13472 788 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 187.149.55.171 4f81de44-aa20-4741-acc3-ca976c5a9269 2019-08-22 15:22:25.30933 13473 102 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-08-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.55.171 4f9f9e02-ef1b-4215-a432-99f48b7c4fd6 2019-08-22 15:22:26.456403 13474 790 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.18E2\n- !ruby/object:BigDecimal 18:0.17E2\n 5 \N 187.149.55.171 64ddc2e7-d4c0-43e2-91fc-d29393cef4a2 2019-08-22 15:24:22.564435 13475 790 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.17E2\n- !ruby/object:BigDecimal 18:0.12E2\n 6 \N 187.149.55.171 bf49ab09-5fc5-441c-827b-2b86414587c2 2019-08-22 15:24:29.600151 13476 103 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-08-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.55.171 b655cf16-ff4e-40ff-b003-af56852da38a 2019-08-22 15:24:39.605865 13477 790 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 7 \N 187.149.55.171 39bc2601-a4cc-406a-b2e7-1bb1afe74356 2019-08-22 15:24:59.684417 13478 790 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.55.171 0042f972-9bf2-410a-a014-39964bfca26c 2019-08-22 15:25:03.53084 13479 104 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-08-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.55.171 e511e3aa-407f-4cc8-8f42-e25f5860144e 2019-08-22 15:25:04.675803 13480 682 Product \N \N 4 User \N update ---\nname:\n- FLD-0013\n- FLD-0014\ndescription:\n- FALDA NEGRA DE TUL G1101\n- " SISTER FASHION FALDA NEGRA DE TUL G1101"\n 3 El producto FAL-682 fue modificado. 187.149.55.171 4da971bf-1a36-4f17-a129-9169711cd735 2019-08-22 15:27:14.012884 20279 872 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '872'\n is_parent: false\n sku: BLU-872\n name: BLS-0092\n description: "Blusa negra con moños JELOUSE TOMATO ST-AT1861\\r\\n"\n price_base: '275.0'\n price_sale: '739.0'\n img_product: PHOTO-2019-10-15-21-54-24.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000872'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-29 01:29:14.807464'\n updated_at: &12 2019-11-05 20:44:23.231618618 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '872'\n sku: BLU-872\n name: BLS-0092\n description: "Blusa negra con moños JELOUSE TOMATO ST-AT1861\\r\\n"\n price_base: '275.00'\n price_sale: '739.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-29 01:29:14.807464'\n updated_at: '2019-10-29 01:29:14.847205'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000872'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '872'\n type: *3\n value: 872\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-872\n type: *7\n value: BLU-872\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0092\n type: *8\n value: BLS-0092\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "Blusa negra con moños JELOUSE TOMATO ST-AT1861\\r\\n"\n type: *6\n value: "Blusa negra con moños JELOUSE TOMATO ST-AT1861\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '275.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.275E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '739.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.739E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-10-15-21-54-24.jpg\n type: *2\n value: PHOTO-2019-10-15-21-54-24.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000872'\n type: *2\n value: '0000872'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-29 01:29:14.807464'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-10-15-21-54-24.jpg\n 3 El producto BLU-872 fue modificado. 187.149.74.215 a52d1664-28b1-4f62-94ea-156bfedf27b1 2019-11-05 20:44:23.273089 13481 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-21 16:05:15.479877000 Z\n- &1 2019-08-22 15:13:40.319729000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 15:28:24.719364782 Z\nsign_in_count:\n- 594\n- 595\n 1190 \N 187.149.55.171 4053ca1d-555e-47d1-90dd-e5291775afa8 2019-08-22 15:28:24.726502 13482 3 User \N \N 3 User \N update ---\nunique_session_id:\n- SHDy9xucLxv6CEuD-JmA\n- GAffKzNkx-Roz7QfJP8F\n 1191 \N 187.149.55.171 4053ca1d-555e-47d1-90dd-e5291775afa8 2019-08-22 15:28:24.742308 13483 103 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-22\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.55.171 df16cd02-7083-46cc-bdad-d77256828c54 2019-08-22 15:28:49.880383 13484 802 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 672\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 df16cd02-7083-46cc-bdad-d77256828c54 2019-08-22 15:28:49.916113 13485 101 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-22\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.55.171 a799ef85-baa4-48c6-863f-19cbedb7e0f8 2019-08-22 15:28:58.910991 13486 803 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 670\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 a799ef85-baa4-48c6-863f-19cbedb7e0f8 2019-08-22 15:28:58.946678 13487 97 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-22\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.55.171 e8a03a11-00cf-420f-bc75-1eb44ec1da43 2019-08-22 15:29:06.710132 13488 803 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.12E2\n 2 \N 187.149.55.171 e8a03a11-00cf-420f-bc75-1eb44ec1da43 2019-08-22 15:29:06.740236 13489 804 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 682\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 e8a03a11-00cf-420f-bc75-1eb44ec1da43 2019-08-22 15:29:06.780336 13490 802 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.12E2\n 2 \N 187.149.55.171 e8a03a11-00cf-420f-bc75-1eb44ec1da43 2019-08-22 15:29:06.822484 13491 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 06:42:16.185649000 Z\n- &1 2019-08-22 15:14:51.372621000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 15:29:48.754176680 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097224\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\nsign_in_count:\n- 480\n- 481\n 962 \N 187.149.55.171 bc65c25a-c7c2-48d0-b9a2-08aba5eec4a3 2019-08-22 15:29:48.764955 13492 4 User \N \N 4 User \N update ---\nunique_session_id:\n- D92sKwWrC2BfkJ1ArDtp\n- 3BM_hahh5hA1iB-3hmK7\n 963 \N 187.149.55.171 bc65c25a-c7c2-48d0-b9a2-08aba5eec4a3 2019-08-22 15:29:48.789151 13493 786 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E2\n- !ruby/object:BigDecimal 18:0.59E2\n 3 \N 187.149.55.171 a026800d-7a6f-4847-847f-29d86f568eff 2019-08-22 15:39:15.202519 13494 786 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.59E2\n- !ruby/object:BigDecimal 18:0.45E2\n 4 \N 187.149.55.171 bd3d94e6-2135-4728-afcf-80f94bdbbd26 2019-08-22 15:39:19.076059 13495 105 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-08-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.55.171 ad2bb2fb-33de-460b-b15d-a093dbd0bf1b 2019-08-22 15:39:20.945891 13496 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 15:13:40.319729000 Z\n- &1 2019-08-22 15:28:24.719364000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 15:39:43.650260297 Z\nsign_in_count:\n- 595\n- 596\n 1192 \N 187.149.55.171 6cd28fe8-dafd-4f53-8048-9d1b010b48b6 2019-08-22 15:39:43.656451 13497 3 User \N \N 3 User \N update ---\nunique_session_id:\n- GAffKzNkx-Roz7QfJP8F\n- yrZcXxFMwkyKg42PxwBF\n 1193 \N 187.149.55.171 6cd28fe8-dafd-4f53-8048-9d1b010b48b6 2019-08-22 15:39:43.671974 13498 105 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-22\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.55.171 286810ad-31b3-4186-9f5c-600bd3b31660 2019-08-22 15:39:52.121805 13499 805 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 668\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.15E2\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 286810ad-31b3-4186-9f5c-600bd3b31660 2019-08-22 15:39:52.153555 13500 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 15:14:51.372621000 Z\n- &1 2019-08-22 15:29:48.754176000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 15:40:08.144114754 Z\nsign_in_count:\n- 481\n- 482\n 964 \N 187.149.55.171 3e814f28-e2c1-4190-b451-3e5f14600da1 2019-08-22 15:40:08.150254 13501 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3BM_hahh5hA1iB-3hmK7\n- WBtj74634cxKK3sVYjA6\n 965 \N 187.149.55.171 3e814f28-e2c1-4190-b451-3e5f14600da1 2019-08-22 15:40:08.164456 13502 744 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.36E2\n- !ruby/object:BigDecimal 18:0.35E2\n 10 \N 187.149.55.171 80deffe2-b224-4b17-9187-edc39e41fe59 2019-08-22 16:35:44.114378 13503 744 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.35E2\n- !ruby/object:BigDecimal 18:0.24E2\n 11 \N 187.149.55.171 0f439874-0ec3-4307-95da-29c7c8a85e02 2019-08-22 16:35:47.981511 13504 106 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-08-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.55.171 e4245230-7e2a-4c24-b31f-cca660b742fb 2019-08-22 16:35:48.884245 13505 744 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.24E2\n- !ruby/object:BigDecimal 18:0.23E2\n 12 \N 187.149.55.171 edc5c404-5cfe-4d36-846c-79bb2333419e 2019-08-22 16:36:04.946938 13506 744 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.23E2\n- !ruby/object:BigDecimal 18:0.6E1\n 13 \N 187.149.55.171 23bb5863-7df0-4873-b5fb-84ede91a3231 2019-08-22 16:36:08.110334 13507 107 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-08-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.55.171 08993174-4652-4cc1-8830-fa625102b409 2019-08-22 16:36:12.005721 13508 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 15:28:24.719364000 Z\n- &1 2019-08-22 15:39:43.650260000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 16:36:46.830558165 Z\nsign_in_count:\n- 596\n- 597\n 1194 \N 187.149.55.171 7738c1ca-7d17-40e5-97d6-f05462199c81 2019-08-22 16:36:46.836405 13509 3 User \N \N 3 User \N update ---\nunique_session_id:\n- yrZcXxFMwkyKg42PxwBF\n- gxb1ZGmBr8sQ1kXtxsnC\n 1195 \N 187.149.55.171 7738c1ca-7d17-40e5-97d6-f05462199c81 2019-08-22 16:36:46.849926 13510 106 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-22\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.55.171 e261d14e-410d-49ed-945c-06cfee8bdf46 2019-08-22 16:36:57.44346 13511 806 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 623\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.12E2\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 e261d14e-410d-49ed-945c-06cfee8bdf46 2019-08-22 16:36:57.471521 13512 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 15:29:48.754176000 Z\n- &1 2019-08-22 15:40:08.144114000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 16:37:15.645200146 Z\nsign_in_count:\n- 482\n- 483\n 966 \N 187.149.55.171 afadd144-b41b-4ad4-9afb-d351981d07d7 2019-08-22 16:37:15.650834 13513 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WBtj74634cxKK3sVYjA6\n- kAxrM5_f6UHQFQzv-xum\n 967 \N 187.149.55.171 afadd144-b41b-4ad4-9afb-d351981d07d7 2019-08-22 16:37:15.663603 13514 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-08-17 23:36:38.128287000 Z\n- &1 2019-08-19 18:01:15.221765000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 17:11:02.207840699 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138155\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\nsign_in_count:\n- 75\n- 76\n 152 \N 187.149.55.171 579c93e0-34ad-4bb9-9b67-a3f60b5c3e35 2019-08-22 17:11:02.217478 13515 9 User \N \N 9 User \N update ---\nunique_session_id:\n- eSaoTLRv_xwtgJvcqqev\n- a3oscy-6zqkaS822AcCo\n 153 \N 187.149.55.171 579c93e0-34ad-4bb9-9b67-a3f60b5c3e35 2019-08-22 17:11:02.235689 13516 377 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.778E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 778.0 187.149.55.171 ef62de58-23e1-4fb1-a8c9-10d9efd3833a 2019-08-22 17:11:05.437789 13517 981 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 377\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-08-22\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-570\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 6b3ce27b-4e15-40a8-a3e5-b8b606f0ed33 2019-08-22 17:11:30.816074 13518 792 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 3 \N 187.149.55.171 6b3ce27b-4e15-40a8-a3e5-b8b606f0ed33 2019-08-22 17:11:30.849608 13519 981 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 ca29efe4-9cd7-4932-b7fe-a3fa31ad088c 2019-08-22 17:11:37.194312 13520 1356 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 377\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 981\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-570\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-570 187.149.55.171 ca29efe4-9cd7-4932-b7fe-a3fa31ad088c 2019-08-22 17:11:37.222638 13521 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-20 16:28:20.642276000 Z\n- &1 2019-08-21 16:01:24.783810000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 18:06:13.556521959 Z\nsign_in_count:\n- 289\n- 290\n 583 \N 187.149.55.171 cd9b40a8-1d79-49a0-90f7-232956dbe569 2019-08-22 18:06:13.567996 13522 2 User \N \N 2 User \N update ---\nunique_session_id:\n- X4W3TqwJ32rYxwrPs4ag\n- sLYVGufyB6Z_4PUYKJiQ\n 584 \N 187.149.55.171 cd9b40a8-1d79-49a0-90f7-232956dbe569 2019-08-22 18:06:13.588361 13523 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 15:40:08.144114000 Z\n- &1 2019-08-22 16:37:15.645200000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 18:29:19.005266060 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938252\n mask_addr: 4294967295\nsign_in_count:\n- 483\n- 484\n 968 \N 200.68.150.204 7acff912-1080-409f-a908-9c88e122ede4 2019-08-22 18:29:19.044555 13524 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kAxrM5_f6UHQFQzv-xum\n- uSz1KyMD2u7xSyrmnZS6\n 969 \N 200.68.150.204 7acff912-1080-409f-a908-9c88e122ede4 2019-08-22 18:29:19.073325 13525 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-07-31 20:43:54.647825000 Z\n- &1 2019-08-03 18:37:48.656704000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 20:23:36.005112791 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 755383394\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 755383394\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\nsign_in_count:\n- 65\n- 66\n 132 \N 187.149.55.171 056a8f2e-3562-4739-b8ff-742d3150018d 2019-08-22 20:23:36.015045 13526 1 User \N \N 1 User \N update ---\nunique_session_id:\n- APKrqRznx8zPzsvzTK3E\n- JAJey7WB2ERsvaXCFhnS\n 133 \N 187.149.55.171 056a8f2e-3562-4739-b8ff-742d3150018d 2019-08-22 20:23:36.033365 13527 982 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 377\namount: !ruby/object:BigDecimal 18:0.639E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.639E3\nstatus: 0\ndate_sale: 2019-08-22\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-571\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 a0995896-cda5-44ce-917f-378decff2964 2019-08-22 21:43:36.54585 13528 788 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 187.149.55.171 a0995896-cda5-44ce-917f-378decff2964 2019-08-22 21:43:36.59066 13529 982 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 b14c3bb2-aa8f-4280-968c-b4733705bf59 2019-08-22 21:43:46.964205 13530 1357 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 377\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.639E3\nmove_type: '1'\nsale_id: 982\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-571\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.61E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-571 187.149.55.171 b14c3bb2-aa8f-4280-968c-b4733705bf59 2019-08-22 21:43:46.989824 13531 983 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 377\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-08-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-572\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 0991fdd4-1c1a-4638-9a14-dd06374de9b7 2019-08-22 22:34:25.666534 13532 743 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.55.171 0991fdd4-1c1a-4638-9a14-dd06374de9b7 2019-08-22 22:34:25.699473 13533 983 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 3e3a87a1-996c-437b-a2f3-555441a466e6 2019-08-22 22:34:32.737626 13534 1358 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 377\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.489E3\nmove_type: '1'\nsale_id: 983\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-572\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.489E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-572 187.149.55.171 3e3a87a1-996c-437b-a2f3-555441a466e6 2019-08-22 22:34:32.777522 13535 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-21 16:01:24.783810000 Z\n- &1 2019-08-22 18:06:13.556521000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 22:41:02.764780277 Z\nsign_in_count:\n- 290\n- 291\n 585 \N 187.149.55.171 e5959e9b-9a73-4838-9e3f-872e12ed344b 2019-08-22 22:41:02.770352 13536 2 User \N \N 2 User \N update ---\nunique_session_id:\n- sLYVGufyB6Z_4PUYKJiQ\n- uwT6rxoVLEYLeP4Lg7rQ\n 586 \N 187.149.55.171 e5959e9b-9a73-4838-9e3f-872e12ed344b 2019-08-22 22:41:02.785097 13537 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 15:39:43.650260000 Z\n- &1 2019-08-22 16:36:46.830558000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 22:43:27.824864193 Z\nsign_in_count:\n- 597\n- 598\n 1196 \N 187.149.55.171 697f14ce-d7a3-483e-83cf-676e03efb1fe 2019-08-22 22:43:27.832379 13538 3 User \N \N 3 User \N update ---\nunique_session_id:\n- gxb1ZGmBr8sQ1kXtxsnC\n- xVUvhBuLiDCzoj_m_SJY\n 1197 \N 187.149.55.171 697f14ce-d7a3-483e-83cf-676e03efb1fe 2019-08-22 22:43:27.851259 13539 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 18:06:13.556521000 Z\n- &1 2019-08-22 22:41:02.764780000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 22:57:33.553946560 Z\nsign_in_count:\n- 291\n- 292\n 587 \N 187.149.55.171 f441e067-6c71-421b-b893-bb40a9061f9d 2019-08-22 22:57:33.562465 13540 2 User \N \N 2 User \N update ---\nunique_session_id:\n- uwT6rxoVLEYLeP4Lg7rQ\n- dx4vivS4z9iXKJT3b4nx\n 588 \N 187.149.55.171 f441e067-6c71-421b-b893-bb40a9061f9d 2019-08-22 22:57:33.579612 13541 982 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-571 cancelada. 187.149.55.171 70aefa29-e4e5-49ad-80bc-41f6870ab69a 2019-08-22 22:57:45.478325 13542 1357 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 377\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.639E3\nmove_type: '1'\nsale_id: 982\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-571\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.61E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.55.171 70aefa29-e4e5-49ad-80bc-41f6870ab69a 2019-08-22 22:57:45.50099 13543 788 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 10 \N 187.149.55.171 70aefa29-e4e5-49ad-80bc-41f6870ab69a 2019-08-22 22:57:45.528744 13544 378 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.283E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 283.0 187.149.55.171 5dcbc22d-3e24-47b3-b3ec-ce5d2ec27ca3 2019-08-22 22:59:03.220707 13545 984 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 378\namount: !ruby/object:BigDecimal 18:0.639E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.639E3\nstatus: 0\ndate_sale: 2019-08-22\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-410\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 75b8aac1-ebbf-42df-921a-a7bb6aa61f0c 2019-08-22 22:59:21.964034 13546 803 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.55.171 75b8aac1-ebbf-42df-921a-a7bb6aa61f0c 2019-08-22 22:59:21.996327 13547 984 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 cf7f79e7-2e6c-4250-ac7b-d39c4fbf9530 2019-08-22 22:59:26.473253 13548 1359 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 378\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.639E3\nmove_type: '1'\nsale_id: 984\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-410\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.61E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-410 187.149.55.171 cf7f79e7-2e6c-4250-ac7b-d39c4fbf9530 2019-08-22 22:59:26.495951 13549 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 22:41:02.764780000 Z\n- &1 2019-08-22 22:57:33.553946000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 23:08:37.147553547 Z\nsign_in_count:\n- 292\n- 293\n 589 \N 187.149.55.171 a28881b0-f19c-431e-a956-ca73773a49fb 2019-08-22 23:08:37.154105 13550 2 User \N \N 2 User \N update ---\nunique_session_id:\n- dx4vivS4z9iXKJT3b4nx\n- ysB3oFsab_zgk8iLdmv3\n 590 \N 187.149.55.171 a28881b0-f19c-431e-a956-ca73773a49fb 2019-08-22 23:08:37.169576 13551 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-08-03 18:37:48.656704000 Z\n- &1 2019-08-22 20:23:36.005112000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 23:09:55.131995258 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 755383394\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\nsign_in_count:\n- 66\n- 67\n 134 \N 187.149.55.171 5d8c0246-20c9-4640-9f25-6b81e5e9e1f2 2019-08-22 23:09:55.144131 13552 1 User \N \N 1 User \N update ---\nunique_session_id:\n- JAJey7WB2ERsvaXCFhnS\n- bzGkwrJ-2yJn6BDx7ftS\n 135 \N 187.149.55.171 5d8c0246-20c9-4640-9f25-6b81e5e9e1f2 2019-08-22 23:09:55.165028 13553 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 16:37:15.645200000 Z\n- &1 2019-08-22 18:29:19.005266000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-22 23:10:39.269471537 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938252\n mask_addr: 4294967295\nsign_in_count:\n- 484\n- 485\n 970 \N 200.68.150.204 041a6456-2b8c-408e-8ef7-03479715c275 2019-08-22 23:10:39.276144 13554 4 User \N \N 4 User \N update ---\nunique_session_id:\n- uSz1KyMD2u7xSyrmnZS6\n- V_sF1LvUymimwjmzYtby\n 971 \N 200.68.150.204 041a6456-2b8c-408e-8ef7-03479715c275 2019-08-22 23:10:39.292134 13555 92 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-22\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.55.171 a546e8c9-d252-46af-bfaa-8fad8e4248d6 2019-08-22 23:11:28.720134 13556 807 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 369\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.35E2\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 a546e8c9-d252-46af-bfaa-8fad8e4248d6 2019-08-22 23:11:28.745721 13702 3 User \N \N 3 User \N update ---\nunique_session_id:\n- CAV3KWbjAhttqcbxgUd_\n- iHrZdgsUpdt1qDZ-eizm\n 1205 \N 187.149.55.171 ebdf6499-8149-4ce1-89cb-162855ef1e06 2019-08-25 00:57:54.017333 13557 96 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-22\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.55.171 865ac6d1-b3af-48a6-a690-24fdbb9500ab 2019-08-22 23:12:24.988831 13558 808 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 662\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 865ac6d1-b3af-48a6-a690-24fdbb9500ab 2019-08-22 23:12:25.026216 13559 809 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 663\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 865ac6d1-b3af-48a6-a690-24fdbb9500ab 2019-08-22 23:12:25.050267 13560 810 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 664\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 865ac6d1-b3af-48a6-a690-24fdbb9500ab 2019-08-22 23:12:25.075245 13561 811 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 665\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 865ac6d1-b3af-48a6-a690-24fdbb9500ab 2019-08-22 23:12:25.100023 13562 165 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 377\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: 2 garrafones de agua\nexpense_date: 2019-08-22\nexpense_code: PV1-E-131\n 1 Egreso por 50.0 registrado 187.149.55.171 89f2dd94-0661-40ef-80db-cea587fd62e5 2019-08-23 00:48:24.573714 13563 1360 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 377\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 165\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.55.171 89f2dd94-0661-40ef-80db-cea587fd62e5 2019-08-23 00:48:24.599735 13564 377 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 377\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1488E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.716E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2216E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.55.171 c57a7d93-689d-45cb-9abd-bf181a4a6d6e 2019-08-23 00:49:29.953746 13565 377 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 c57a7d93-689d-45cb-9abd-bf181a4a6d6e 2019-08-23 00:49:29.969679 13566 378 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 378\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.639E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.422E3\nphysical_cash: !ruby/object:BigDecimal 18:0.922E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.55.171 b23e3235-8aa0-45f6-9d45-d526fa790732 2019-08-23 00:55:00.2821 13567 378 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 b23e3235-8aa0-45f6-9d45-d526fa790732 2019-08-23 00:55:00.296711 13568 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 18:29:19.005266000 Z\n- &1 2019-08-22 23:10:39.269471000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-23 02:11:52.946981486 Z\nsign_in_count:\n- 485\n- 486\n 972 \N 200.68.150.204 7a98ecf4-d556-4435-bf18-3c1d71d75037 2019-08-23 02:11:52.964178 13569 4 User \N \N 4 User \N update ---\nunique_session_id:\n- V_sF1LvUymimwjmzYtby\n- szLZAN5_Css2GTge5SYP\n 973 \N 200.68.150.204 7a98ecf4-d556-4435-bf18-3c1d71d75037 2019-08-23 02:11:52.991072 13570 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 16:36:46.830558000 Z\n- &1 2019-08-22 22:43:27.824864000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-23 16:15:15.567676144 Z\nsign_in_count:\n- 598\n- 599\n 1198 \N 187.149.55.171 001f9ac7-2d69-4dec-91dc-22192f949b5a 2019-08-23 16:15:15.617858 13571 3 User \N \N 3 User \N update ---\nunique_session_id:\n- xVUvhBuLiDCzoj_m_SJY\n- rCfFQz-zX695MTznJQou\n 1199 \N 187.149.55.171 001f9ac7-2d69-4dec-91dc-22192f949b5a 2019-08-23 16:15:15.650893 13572 379 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.42E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 420.0 187.149.55.171 7045da32-bd21-43cb-a58f-bb7f0d045cd8 2019-08-23 16:16:02.169159 13573 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 22:57:33.553946000 Z\n- &1 2019-08-22 23:08:37.147553000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-23 16:16:18.181829827 Z\nsign_in_count:\n- 293\n- 294\n 591 \N 187.149.55.171 330264da-3d73-49ea-a88c-af4a8fec5ca6 2019-08-23 16:16:18.188641 13574 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ysB3oFsab_zgk8iLdmv3\n- zTHwmymfHf57iuJm7Txq\n 592 \N 187.149.55.171 330264da-3d73-49ea-a88c-af4a8fec5ca6 2019-08-23 16:16:18.204292 13575 380 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.716E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 716.0 187.149.55.171 0d9b8360-a5e1-4b5a-a966-96837168575b 2019-08-23 16:16:57.57421 13576 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 23:10:39.269471000 Z\n- &1 2019-08-23 02:11:52.946981000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-23 18:33:10.237173080 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938252\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938154\n mask_addr: 4294967295\nsign_in_count:\n- 486\n- 487\n 974 \N 200.68.150.106 086c1482-290e-49d2-8d14-b902848ab88e 2019-08-23 18:33:10.245163 13577 4 User \N \N 4 User \N update ---\nunique_session_id:\n- szLZAN5_Css2GTge5SYP\n- F8U6zBQJbagyrV6aHxKG\n 975 \N 200.68.150.106 086c1482-290e-49d2-8d14-b902848ab88e 2019-08-23 18:33:10.262621 13578 157 Customer \N \N 3 User \N create ---\nnick_name: CINTHIA LIZBETH SALAZAR URIARTE\nphone: "(669) 772-9438"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CINTHIA LIZBETH SALAZAR URIARTE fue registrado. 187.149.55.171 1a168569-ef90-4772-9c47-125449de4775 2019-08-23 18:35:14.153622 13579 985 Sale \N \N 3 User \N create ---\ncustomer_id: 157\nuser_id: 3\nopen_cash_register_id: 379\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2019-08-23\nsaletype: 2\nseller_id: 9\nsale_code: PV2-V-411\nexpiration_date: 2019-09-27\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 ab181ce0-d81d-46af-a40c-a8b98be529d8 2019-08-23 18:35:25.785552 13580 796 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.55.171 ab181ce0-d81d-46af-a40c-a8b98be529d8 2019-08-23 18:35:25.817218 13581 1361 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 379\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 985\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-411\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-411 187.149.55.171 c834501e-db42-4d92-80b0-1eec585eb3fe 2019-08-23 18:35:49.037479 13582 985 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.55.171 4d96882a-19bd-4f15-8384-80b56c181583 2019-08-23 18:35:50.934352 13583 985 Sale \N \N 3 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV2-V-411 cancelada. 187.149.55.171 4f356f5b-6e5a-44b2-9788-17dab3053134 2019-08-23 18:36:53.988423 13584 1361 CashRegistersMove \N \N 3 User \N destroy ---\nopen_cash_register_id: 379\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 985\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-411\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.55.171 4f356f5b-6e5a-44b2-9788-17dab3053134 2019-08-23 18:36:54.00932 13585 796 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.55.171 4f356f5b-6e5a-44b2-9788-17dab3053134 2019-08-23 18:36:54.036147 13586 986 Sale \N \N 3 User \N create ---\ncustomer_id: 157\nuser_id: 3\nopen_cash_register_id: 379\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2019-08-23\nsaletype: 2\nseller_id: 11\nsale_code: PV2-V-412\nexpiration_date: 2019-09-27\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 97382281-a35b-48de-bd61-709fc5566d61 2019-08-23 18:37:21.594698 13587 796 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.55.171 97382281-a35b-48de-bd61-709fc5566d61 2019-08-23 18:37:21.621952 13588 1362 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 379\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 986\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-412\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-412 187.149.55.171 2bffe32b-b751-4ebd-b40c-6be5f97d52a3 2019-08-23 18:37:29.072228 13589 986 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.55.171 1696d6b1-8138-423d-9d97-c7508a6f186e 2019-08-23 18:38:00.810503 13590 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-23 02:11:52.946981000 Z\n- &1 2019-08-23 18:33:10.237173000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-23 19:56:29.156827945 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938252\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938154\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938154\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946304\n mask_addr: 4294967295\nsign_in_count:\n- 487\n- 488\n 976 \N 200.68.182.64 c7f0fa66-2d00-4312-8038-fdc488b95081 2019-08-23 19:56:29.165871 13591 4 User \N \N 4 User \N update ---\nunique_session_id:\n- F8U6zBQJbagyrV6aHxKG\n- mrEsss312DEhy9Ywe1J8\n 977 \N 200.68.182.64 c7f0fa66-2d00-4312-8038-fdc488b95081 2019-08-23 19:56:29.182602 13592 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-23 18:33:10.237173000 Z\n- &1 2019-08-23 19:56:29.156827000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-23 21:10:55.866975772 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938154\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946304\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946304\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938154\n mask_addr: 4294967295\nsign_in_count:\n- 488\n- 489\n 978 \N 200.68.150.106 80be2090-b1a5-45c0-b774-7c60aff0a578 2019-08-23 21:10:55.875643 13593 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mrEsss312DEhy9Ywe1J8\n- XyhHrFwLE4hVssQaMFXf\n 979 \N 200.68.150.106 80be2090-b1a5-45c0-b774-7c60aff0a578 2019-08-23 21:10:55.898283 13594 166 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 379\nquantity: !ruby/object:BigDecimal 18:0.5E3\nstatus: 1\nobservations: YARETZI\nexpense_date: 2019-08-23\nexpense_code: PV2-E-35\n 1 Egreso por 500.0 registrado 187.149.55.171 beab8b3b-bf6f-4418-a35d-e85ee8bd1f9a 2019-08-23 22:11:01.533106 13595 1363 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 379\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 166\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.55.171 beab8b3b-bf6f-4418-a35d-e85ee8bd1f9a 2019-08-23 22:11:01.552384 13596 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-23 19:56:29.156827000 Z\n- &1 2019-08-23 21:10:55.866975000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-23 22:44:06.098562329 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946304\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938154\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938154\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938255\n mask_addr: 4294967295\nsign_in_count:\n- 489\n- 490\n 980 \N 200.68.150.207 a310619c-0112-421f-b3cb-b553c3e436cd 2019-08-23 22:44:06.10853 13597 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XyhHrFwLE4hVssQaMFXf\n- 8x8h47CU_Ysj-gK_ScRg\n 981 \N 200.68.150.207 a310619c-0112-421f-b3cb-b553c3e436cd 2019-08-23 22:44:06.126157 13598 987 Sale \N \N 2 User \N create ---\ncustomer_id: 21\nuser_id: 2\nopen_cash_register_id: 380\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-08-23\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-573\nexpiration_date: 2019-09-27\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 e3cc53a3-8f85-44b4-9e9f-c2bdb7ee0920 2019-08-23 23:57:16.670595 13599 701 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.55.171 e3cc53a3-8f85-44b4-9e9f-c2bdb7ee0920 2019-08-23 23:57:16.695422 13600 1364 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 380\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 987\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-573\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-573 187.149.55.171 ebfa02d1-6d06-4243-a3b5-6335da72329c 2019-08-23 23:57:25.891218 13602 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-23 21:10:55.866975000 Z\n- &1 2019-08-23 22:44:06.098562000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-24 00:16:58.499453072 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938154\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938255\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938255\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145882\n mask_addr: 4294967295\nsign_in_count:\n- 490\n- 491\n 982 \N 189.186.243.154 02d667f7-a3d7-4ca2-a7f0-03a072272a1c 2019-08-24 00:16:58.507303 13603 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8x8h47CU_Ysj-gK_ScRg\n- rWsyUm7NHNsRJJh92aq-\n 983 \N 189.186.243.154 02d667f7-a3d7-4ca2-a7f0-03a072272a1c 2019-08-24 00:16:58.523057 13604 167 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 380\nquantity: !ruby/object:BigDecimal 18:0.35E3\nstatus: 1\nobservations: DIFERENCIA DE SUELDO YARETZI\nexpense_date: 2019-08-23\nexpense_code: PV1-E-132\n 1 Egreso por 350.0 registrado 187.149.55.171 1f44ebc6-612c-4021-9f60-79e7c73aae03 2019-08-24 00:33:32.612351 13605 1365 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 380\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 167\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.55.171 1f44ebc6-612c-4021-9f60-79e7c73aae03 2019-08-24 00:33:32.632873 13606 1366 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 182\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.55.171 60235165-d96b-483f-a351-e0cfa28bed5d 2019-08-24 00:38:12.934895 13607 1366 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 49\n- 380\n 2 movimiento de efectivo por venta con folio PV1-V-104 187.149.55.171 60235165-d96b-483f-a351-e0cfa28bed5d 2019-08-24 00:38:12.958204 13608 379 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 380\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.7E3\namount_out: !ruby/object:BigDecimal 18:0.35E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.566E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1066E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.55.171 ed0d2ff4-95d6-40bd-896b-d906dccf4d64 2019-08-24 00:51:53.110371 13609 380 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 ed0d2ff4-95d6-40bd-896b-d906dccf4d64 2019-08-24 00:51:53.125048 13610 380 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 379\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.5E3\namount_out: !ruby/object:BigDecimal 18:0.5E3\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.42E3\nphysical_cash: !ruby/object:BigDecimal 18:0.42E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.55.171 82c9f6f9-253a-44be-a29f-591b83afd0b0 2019-08-24 00:52:57.149125 13611 379 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 82c9f6f9-253a-44be-a29f-591b83afd0b0 2019-08-24 00:52:57.164736 13612 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-23 22:44:06.098562000 Z\n- &1 2019-08-24 00:16:58.499453000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-24 02:04:05.405050404 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938255\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145882\n mask_addr: 4294967295\nsign_in_count:\n- 491\n- 492\n 984 \N 189.186.243.154 d00ea0b6-708a-4a56-beea-714b290d3024 2019-08-24 02:04:05.419063 13613 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rWsyUm7NHNsRJJh92aq-\n- _VHqsgAmY9GuxdBjae-7\n 985 \N 189.186.243.154 d00ea0b6-708a-4a56-beea-714b290d3024 2019-08-24 02:04:05.445618 13614 18 User \N \N 4 User \N create ---\nuserid: SAMANTHACOMERCIAL\nfirst_name: SAMNATHA\nlast_name: URCISICHI OSUNA\nusertype: G\nemail: daniurci@hotmail.com\nencrypted_password: "$2a$10$l.IqDkInaSTt6q8S6ghtmeTQVZvpH/kaCm9O6c/.s/dJVYVy05flK"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 3\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.186.243.154 7252ed09-5cfb-47d8-9513-00b2e03354bd 2019-08-24 02:19:55.563701 13615 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-08-24 02:20:07.776375058 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183145882\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183145882\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 189.186.243.154 f7730771-c559-4161-bf57-ca59ba97da67 2019-08-24 02:20:07.790968 13616 18 User \N \N 18 User \N update ---\nunique_session_id:\n- \n- EiifwAtGjLmAjRQy8Hwv\n 3 \N 189.186.243.154 f7730771-c559-4161-bf57-ca59ba97da67 2019-08-24 02:20:07.81557 13617 107 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-23\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.243.154 31b82de2-4aa4-4216-a84b-8ca75f5f88dd 2019-08-24 02:20:37.790633 13618 812 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 623\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.18E2\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.243.154 31b82de2-4aa4-4216-a84b-8ca75f5f88dd 2019-08-24 02:20:37.819066 13619 104 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-23\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.243.154 2d5c408b-7c87-45f0-a851-febe93cf24c5 2019-08-24 02:20:48.00655 13620 813 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 672\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.9E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.243.154 2d5c408b-7c87-45f0-a851-febe93cf24c5 2019-08-24 02:20:48.038071 13621 102 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-23\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.243.154 7bc54ea1-20f7-43fc-ad2f-e7724dd6a1a3 2019-08-24 02:21:20.571802 13622 814 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 670\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.243.154 7bc54ea1-20f7-43fc-ad2f-e7724dd6a1a3 2019-08-24 02:21:20.609712 13623 100 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-23\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.243.154 c1c878e4-f295-493a-a960-aa73080c599d 2019-08-24 02:21:35.763648 13624 815 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 683\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.243.154 c1c878e4-f295-493a-a960-aa73080c599d 2019-08-24 02:21:35.79704 13625 95 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-23\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.243.154 3fe52ff6-215a-4f99-9166-787c2b780712 2019-08-24 02:21:47.768129 13626 816 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 613\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.243.154 3fe52ff6-215a-4f99-9166-787c2b780712 2019-08-24 02:21:47.794762 13627 817 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 446\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.243.154 3fe52ff6-215a-4f99-9166-787c2b780712 2019-08-24 02:21:47.817784 13628 93 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-23\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.243.154 957da686-0ffe-4110-a6c7-73553ebbdf2c 2019-08-24 02:22:00.447498 13629 818 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 369\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.42E2\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.243.154 957da686-0ffe-4110-a6c7-73553ebbdf2c 2019-08-24 02:22:00.472245 13630 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-24 00:16:58.499453000 Z\n- &1 2019-08-24 02:04:05.405050000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-24 02:24:56.590320533 Z\nsign_in_count:\n- 492\n- 493\n 986 \N 189.186.243.154 f57a33b7-99b3-4f6c-ac1e-09c97bc10582 2019-08-24 02:24:56.597499 13631 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _VHqsgAmY9GuxdBjae-7\n- fLsyC3zAVDUef2eJVsRS\n 987 \N 189.186.243.154 f57a33b7-99b3-4f6c-ac1e-09c97bc10582 2019-08-24 02:24:56.61448 13632 784 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 4 \N 189.186.243.154 4cf7e6b4-9100-46cc-9103-8a852d95d591 2019-08-24 02:34:25.731785 13633 108 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-08-23\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.243.154 a62deb85-405c-40ea-8b66-739522d3da71 2019-08-24 02:34:31.652009 13634 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-24 02:04:05.405050000 Z\n- &1 2019-08-24 02:24:56.590320000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-24 03:28:53.153827686 Z\nsign_in_count:\n- 493\n- 494\n 988 \N 189.186.243.154 82d2e302-4b05-4fce-99e7-891b54a2705a 2019-08-24 03:28:53.160803 13635 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fLsyC3zAVDUef2eJVsRS\n- 6EKAkvdXghCr52z8MJEH\n 989 \N 189.186.243.154 82d2e302-4b05-4fce-99e7-891b54a2705a 2019-08-24 03:28:53.178671 13636 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-24 02:24:56.590320000 Z\n- &1 2019-08-24 03:28:53.153827000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-24 04:06:15.938791830 Z\nsign_in_count:\n- 494\n- 495\n 990 \N 189.186.243.154 4904dd79-239d-4a3d-ade5-0b366c42f9af 2019-08-24 04:06:15.944517 13637 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6EKAkvdXghCr52z8MJEH\n- QnuRxxc-PMTzR_zmmMz-\n 991 \N 189.186.243.154 4904dd79-239d-4a3d-ade5-0b366c42f9af 2019-08-24 04:06:15.958801 13638 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-24 03:28:53.153827000 Z\n- &1 2019-08-24 04:06:15.938791000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-24 04:17:02.246123502 Z\nsign_in_count:\n- 495\n- 496\n 992 \N 189.186.243.154 91b98ff2-5c19-434f-ad1c-257078fce233 2019-08-24 04:17:02.252172 13639 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QnuRxxc-PMTzR_zmmMz-\n- FL5KvKjQkjhyqFusxtk_\n 993 \N 189.186.243.154 91b98ff2-5c19-434f-ad1c-257078fce233 2019-08-24 04:17:02.265372 13640 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-24 04:06:15.938791000 Z\n- &1 2019-08-24 04:17:02.246123000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-24 05:17:04.509741261 Z\nsign_in_count:\n- 496\n- 497\n 994 \N 189.186.243.154 a05442d3-fa79-43d9-a0a2-ac72f2bac49a 2019-08-24 05:17:04.515689 13641 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FL5KvKjQkjhyqFusxtk_\n- R6ioxFZCAj3izyycfSqw\n 995 \N 189.186.243.154 a05442d3-fa79-43d9-a0a2-ac72f2bac49a 2019-08-24 05:17:04.528844 13642 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-24 04:17:02.246123000 Z\n- &1 2019-08-24 05:17:04.509741000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-24 06:36:05.709986579 Z\nsign_in_count:\n- 497\n- 498\n 996 \N 189.186.243.154 e15df849-0574-4eb7-a531-c76801d8180e 2019-08-24 06:36:05.715737 13643 4 User \N \N 4 User \N update ---\nunique_session_id:\n- R6ioxFZCAj3izyycfSqw\n- tuKuu4yrqNtypeWVyXSg\n 997 \N 189.186.243.154 e15df849-0574-4eb7-a531-c76801d8180e 2019-08-24 06:36:05.729506 13644 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-24 05:17:04.509741000 Z\n- &1 2019-08-24 06:36:05.709986000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-24 07:03:07.872596600 Z\nsign_in_count:\n- 498\n- 499\n 998 \N 189.186.243.154 28903854-ff66-4869-aa79-e9651d235692 2019-08-24 07:03:07.878449 13645 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tuKuu4yrqNtypeWVyXSg\n- yXM_CYJqoRSL9hag3GxV\n 999 \N 189.186.243.154 28903854-ff66-4869-aa79-e9651d235692 2019-08-24 07:03:07.891762 13646 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 23:08:37.147553000 Z\n- &1 2019-08-23 16:16:18.181829000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-24 15:58:43.024155503 Z\nsign_in_count:\n- 294\n- 295\n 593 \N 187.149.55.171 f94d43ca-df4e-47d6-8b85-f42d4fe54ae5 2019-08-24 15:58:43.062475 13647 2 User \N \N 2 User \N update ---\nunique_session_id:\n- zTHwmymfHf57iuJm7Txq\n- roH1GnnRtQeqxx5GbJyM\n 594 \N 187.149.55.171 f94d43ca-df4e-47d6-8b85-f42d4fe54ae5 2019-08-24 15:58:43.090231 13648 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 22:43:27.824864000 Z\n- &1 2019-08-23 16:15:15.567676000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-24 16:04:58.923999287 Z\nsign_in_count:\n- 599\n- 600\n 1200 \N 187.149.55.171 aff8aa07-b5ae-4a4a-91f0-80ea5f9662e0 2019-08-24 16:04:58.929983 13649 3 User \N \N 3 User \N update ---\nunique_session_id:\n- rCfFQz-zX695MTznJQou\n- "-jN9so8wCyR_wjcXRyaG"\n 1201 \N 187.149.55.171 aff8aa07-b5ae-4a4a-91f0-80ea5f9662e0 2019-08-24 16:04:58.945726 13650 381 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.42E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 420.0 187.149.55.171 08890a6a-0836-45ae-a62d-3ab8dcccaff2 2019-08-24 16:06:38.196798 13651 382 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.566E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 566.0 187.149.55.171 f45895ec-90d3-483f-a8cd-ae5d9af3a232 2019-08-24 16:14:20.245496 13652 988 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 381\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-08-24\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-413\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 5f636266-7994-46da-b792-6348cb0e4cf9 2019-08-24 16:43:21.847859 13653 694 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.55.171 5f636266-7994-46da-b792-6348cb0e4cf9 2019-08-24 16:43:21.88999 13654 988 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 f17a62db-cc9d-4508-8eec-3f320335eb6b 2019-08-24 16:43:45.410008 13655 1367 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 381\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 988\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-413\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.13E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-413 187.149.55.171 f17a62db-cc9d-4508-8eec-3f320335eb6b 2019-08-24 16:43:45.429978 13656 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 20:23:36.005112000 Z\n- &1 2019-08-22 23:09:55.131995000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-24 17:09:29.265229255 Z\nsign_in_count:\n- 67\n- 68\n 136 \N 187.149.55.171 b65a65f6-6d6e-44b9-91d5-878e307da3ab 2019-08-24 17:09:29.291675 13657 1 User \N \N 1 User \N update ---\nunique_session_id:\n- bzGkwrJ-2yJn6BDx7ftS\n- PacG5hdDR6YMMgHXGfex\n 137 \N 187.149.55.171 b65a65f6-6d6e-44b9-91d5-878e307da3ab 2019-08-24 17:09:29.314923 13658 989 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 381\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-08-24\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-414\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 505fb97f-173b-4b8d-bcae-4e29cb5ff7c4 2019-08-24 17:28:47.234437 13659 294 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.55.171 505fb97f-173b-4b8d-bcae-4e29cb5ff7c4 2019-08-24 17:28:47.264838 13660 989 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 4ab64e7a-e24d-47f3-b0e5-07b071d26994 2019-08-24 17:28:51.558091 13661 1368 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 381\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 989\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-414\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-414 187.149.55.171 4ab64e7a-e24d-47f3-b0e5-07b071d26994 2019-08-24 17:28:51.579714 13662 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-24 06:36:05.709986000 Z\n- &1 2019-08-24 07:03:07.872596000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-24 20:01:37.799498532 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145882\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938497\n mask_addr: 4294967295\nsign_in_count:\n- 499\n- 500\n 1000 \N 200.68.151.193 e1deef51-d332-4e21-9fe9-8614641e8f41 2019-08-24 20:01:37.828699 13663 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yXM_CYJqoRSL9hag3GxV\n- _uTxUYjL2uzyozGqP4qj\n 1001 \N 200.68.151.193 e1deef51-d332-4e21-9fe9-8614641e8f41 2019-08-24 20:01:37.852195 13664 1369 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 382\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.649E3\nmove_type: '1'\nsale_id: 950\ncardnumber: 8669\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-549 187.149.55.171 f4999657-e21a-4ca2-81ff-009e56ba841f 2019-08-24 20:15:49.945514 13665 950 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.55.171 fe2154f9-1180-4629-bc9f-06b2124c0d8d 2019-08-24 20:15:56.70108 13666 569 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.55.171 125f1d74-7215-4104-a4ab-fc233ea62038 2019-08-24 21:08:23.917352 13667 569 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.55.171 3ef8c8bc-d9df-4236-85b8-44b881360174 2019-08-24 21:08:31.371129 13668 152 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.55.171 200b203d-a274-44af-98e8-67d34e4539b1 2019-08-24 21:08:37.657446 13669 149 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 13 \N 187.149.55.171 058e6ec9-242d-41fd-af61-6b65b342c20e 2019-08-24 21:09:02.879827 13670 149 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 14 \N 187.149.55.171 47cc36f4-3b43-4150-aa5e-f7c2f8f41e16 2019-08-24 21:09:07.475658 13671 133 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.55.171 a76bbd49-234d-41f5-95f0-1410623d4ed4 2019-08-24 21:09:24.060107 13672 133 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.55.171 ee43533d-a6cb-4d5c-ae0f-e8a652c6c5d3 2019-08-24 21:09:30.633978 13673 109 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-08-24\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.55.171 ecef73a0-12d0-42d8-a055-c8e190423d2f 2019-08-24 21:09:33.102233 13674 1370 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 382\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.498E3\nmove_type: '1'\nsale_id: 870\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.498E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-494 187.149.55.171 b5dbf025-013c-4268-b5dc-7b7a72255a38 2019-08-24 22:36:38.61286 13675 870 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.55.171 7714c89a-4ede-4fcf-847b-3aea29a7d26e 2019-08-24 22:36:39.679054 13701 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-24 16:04:58.923999000 Z\n- &1 2019-08-25 00:48:53.582413000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-25 00:57:53.988921849 Z\nsign_in_count:\n- 601\n- 602\n 1204 \N 187.149.55.171 ebdf6499-8149-4ce1-89cb-162855ef1e06 2019-08-25 00:57:53.996652 13703 993 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 195cab23-a974-4c32-8810-75190e13a912 2019-08-25 00:57:59.161545 13676 990 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 381\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2019-08-24\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-415\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 56015a6e-59d6-4df5-9d83-b8adb123f4ce 2019-08-24 23:46:57.328052 13677 367 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E2\n- !ruby/object:BigDecimal 18:0.39E2\n 16 \N 187.149.55.171 56015a6e-59d6-4df5-9d83-b8adb123f4ce 2019-08-24 23:46:57.359852 13678 990 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 88b4a3a7-7de6-4f14-8605-1a227af0b917 2019-08-24 23:47:03.433304 13679 1371 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 381\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 990\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-415\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-415 187.149.55.171 88b4a3a7-7de6-4f14-8605-1a227af0b917 2019-08-24 23:47:03.456229 13680 991 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 381\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2019-08-24\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-416\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 295c310f-bb37-4b17-8335-404d01cc1774 2019-08-24 23:50:19.969737 13681 367 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.39E2\n- !ruby/object:BigDecimal 18:0.38E2\n 17 \N 187.149.55.171 295c310f-bb37-4b17-8335-404d01cc1774 2019-08-24 23:50:19.999123 13682 991 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 55062cfc-6d2e-45aa-b3eb-25d94c75eaca 2019-08-24 23:50:23.781711 13683 1372 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 381\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 991\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-416\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E2\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-416 187.149.55.171 55062cfc-6d2e-45aa-b3eb-25d94c75eaca 2019-08-24 23:50:23.804863 13684 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-23 16:15:15.567676000 Z\n- &1 2019-08-24 16:04:58.923999000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-25 00:48:53.582413713 Z\nsign_in_count:\n- 600\n- 601\n 1202 \N 187.149.55.171 9658e95a-c009-4a5f-92c6-bd26651badb9 2019-08-25 00:48:53.591711 13685 3 User \N \N 3 User \N update ---\nunique_session_id:\n- "-jN9so8wCyR_wjcXRyaG"\n- CAV3KWbjAhttqcbxgUd_\n 1203 \N 187.149.55.171 9658e95a-c009-4a5f-92c6-bd26651badb9 2019-08-25 00:48:53.611358 13686 109 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-24\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.55.171 0b99f39f-2b5f-4ca7-985a-fa21a7b6846c 2019-08-25 00:50:12.140289 13687 320 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.55.171 0b99f39f-2b5f-4ca7-985a-fa21a7b6846c 2019-08-25 00:50:12.165008 13688 819 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 154\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 0b99f39f-2b5f-4ca7-985a-fa21a7b6846c 2019-08-25 00:50:12.18979 13689 434 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.55.171 0b99f39f-2b5f-4ca7-985a-fa21a7b6846c 2019-08-25 00:50:12.211777 13690 820 AvailableProduct \N \N 3 User \N create ---\nproduct_id: 135\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.55.171 0b99f39f-2b5f-4ca7-985a-fa21a7b6846c 2019-08-25 00:50:12.233274 13691 819 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.55.171 1c2f27e0-e6da-487b-bef2-29c8a178001e 2019-08-25 00:50:23.640223 13692 110 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-08-24\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.55.171 3988ab79-607e-4274-a803-a90d80da87af 2019-08-25 00:50:27.510423 13693 110 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-24\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.55.171 83e087e8-e3b5-435f-b3df-a29eaeeb674f 2019-08-25 00:50:42.66362 13694 152 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.55.171 83e087e8-e3b5-435f-b3df-a29eaeeb674f 2019-08-25 00:50:42.680503 13695 992 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 382\namount: !ruby/object:BigDecimal 18:0.42155E3\ntax: !ruby/object:BigDecimal 18:0.6745E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-08-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-574\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 c0980ff1-4712-4509-823a-067f5e0f2a54 2019-08-25 00:50:57.085395 13696 152 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.55.171 c0980ff1-4712-4509-823a-067f5e0f2a54 2019-08-25 00:50:57.112381 13697 992 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-574 cancelada. 187.149.55.171 a53aaaba-e81d-420f-bacb-47a395187d22 2019-08-25 00:56:10.448529 13698 152 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.55.171 a53aaaba-e81d-420f-bacb-47a395187d22 2019-08-25 00:56:10.47992 13699 993 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 382\namount: !ruby/object:BigDecimal 18:0.42155E3\ntax: !ruby/object:BigDecimal 18:0.6745E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-08-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-575\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 6b00ce20-ad63-41e2-8017-03d83fa0d110 2019-08-25 00:56:38.506543 13700 152 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.55.171 6b00ce20-ad63-41e2-8017-03d83fa0d110 2019-08-25 00:56:38.538591 13900 113 Customer \N \N 2 User \N update ---\nstatus:\n- active\n- 0\n 2 \N 187.149.51.82 b416b4aa-3172-48cc-8071-573e568d317f 2019-08-29 17:31:28.495579 13704 1373 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 382\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.489E3\nmove_type: '1'\nsale_id: 993\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-575\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.489E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-575 187.149.55.171 195cab23-a974-4c32-8810-75190e13a912 2019-08-25 00:57:59.183938 13705 381 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 381\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.1896E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.18E4\ncash_fund: !ruby/object:BigDecimal 18:0.516E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2316E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.55.171 69388adb-ea8e-4bb8-abbc-48a41e12b57d 2019-08-25 01:05:17.895863 13706 381 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 69388adb-ea8e-4bb8-abbc-48a41e12b57d 2019-08-25 01:05:17.912853 13707 382 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 382\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1636E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.553E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1553E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.55.171 de494623-d938-4bf0-884c-1caab58d28db 2019-08-25 01:10:40.903648 13708 382 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 de494623-d938-4bf0-884c-1caab58d28db 2019-08-25 01:10:40.916758 13709 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-24 07:03:07.872596000 Z\n- &1 2019-08-24 20:01:37.799498000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-25 02:12:15.074218499 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145882\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938497\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938497\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946450\n mask_addr: 4294967295\nsign_in_count:\n- 500\n- 501\n 1002 \N 200.68.182.210 ffb41339-cf05-4fc9-93e4-8b1e00c7d0d7 2019-08-25 02:12:15.090312 13710 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _uTxUYjL2uzyozGqP4qj\n- _Vjsy3SiXt4BvWdytzDy\n 1003 \N 200.68.182.210 ffb41339-cf05-4fc9-93e4-8b1e00c7d0d7 2019-08-25 02:12:15.116291 13711 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-24 20:01:37.799498000 Z\n- &1 2019-08-25 02:12:15.074218000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-25 19:08:35.940747969 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938497\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946450\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946450\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145882\n mask_addr: 4294967295\nsign_in_count:\n- 501\n- 502\n 1004 \N 189.186.243.154 a430b533-89cb-4b84-85f6-6188dcd735e7 2019-08-25 19:08:35.973697 13712 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _Vjsy3SiXt4BvWdytzDy\n- yTvWAXjuzPtsABWvRbjo\n 1005 \N 189.186.243.154 a430b533-89cb-4b84-85f6-6188dcd735e7 2019-08-25 19:08:35.997691 13713 688 Product \N \N 4 User \N update ---\nname:\n- BLS-0067\n- BLS-0068\n 3 El producto BLU-688 fue modificado. 189.186.243.154 d5fc2e64-3c04-4132-82fa-2aa8d8b06abc 2019-08-25 19:10:17.414027 13714 678 Product \N \N 4 User \N update ---\nname:\n- VST-0042\n- VST-0041\n 3 El producto VES-678 fue modificado. 189.186.243.154 a30488ff-a915-490a-a0aa-249fb7f9d683 2019-08-25 19:22:44.112187 13715 787 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.18E2\n- !ruby/object:BigDecimal 18:0.17E2\n 3 \N 189.186.243.154 ef889716-1452-4efb-bc7a-7093fea72660 2019-08-25 19:27:56.37329 13716 787 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.17E2\n- !ruby/object:BigDecimal 18:0.9E1\n 4 \N 189.186.243.154 e9e8088c-05fc-45b7-bdce-cb87925a9700 2019-08-25 19:28:06.160023 13717 792 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 4 \N 189.186.243.154 24a95e4f-9417-4d34-b0ee-1cfb20736039 2019-08-25 19:28:22.105023 13718 792 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.243.154 391474b6-23b6-4786-9ff2-2ef5ee2c0b11 2019-08-25 19:28:26.39874 13719 793 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 3 \N 189.186.243.154 1f423722-e345-43cb-ab3f-81e06a5e9dc6 2019-08-25 19:28:41.474449 13720 793 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.243.154 310a6f7c-5ef2-415c-aca0-8bdf16c56182 2019-08-25 19:28:51.162248 13721 792 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.243.154 486af01e-0e66-447f-b097-74b8a07f5862 2019-08-25 19:29:21.92758 13722 792 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 189.186.243.154 5678c4f1-3ce7-493f-a19c-db66c4ab7586 2019-08-25 19:29:46.092147 13723 791 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.18E2\n- !ruby/object:BigDecimal 18:0.17E2\n 3 \N 189.186.243.154 72bdd2b3-de3f-4d89-82c4-1866dd089149 2019-08-25 19:30:38.32801 13724 791 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.17E2\n- !ruby/object:BigDecimal 18:0.9E1\n 4 \N 189.186.243.154 ff5af384-6751-49ac-b6f2-9f73484a31eb 2019-08-25 19:30:54.084329 13725 808 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.243.154 9a6e49e9-9047-4c14-8ca8-38c2652c18a7 2019-08-25 19:31:24.936533 13726 808 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.243.154 8a63b48e-cb8b-433f-a5a4-e266fbc825ec 2019-08-25 19:31:52.438686 13727 809 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.243.154 afce7728-209b-4d71-a915-8a433970403f 2019-08-25 19:32:10.704178 13728 810 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.243.154 ae4a1a4a-d723-4168-af35-1123cda6e415 2019-08-25 19:32:38.251018 13729 809 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.243.154 e6c52921-d343-4dd8-b2ee-3f80000fa0dc 2019-08-25 19:32:49.091191 13730 810 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.243.154 7704fd22-758d-40d2-899c-e788ad874258 2019-08-25 19:32:51.236021 13901 112 Customer \N \N 2 User \N update ---\nstatus:\n- active\n- 0\n 2 \N 187.149.51.82 ddafb23b-bf12-4777-a127-8db0edb909ec 2019-08-29 17:34:06.360331 13731 811 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.243.154 67a40d6b-f56b-4d46-b64f-d57775ed5ef4 2019-08-25 19:33:07.330976 13732 811 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.243.154 56d7d926-68ef-40b7-b374-07f6d0d10e78 2019-08-25 19:33:21.411692 13733 111 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-08-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.243.154 ee5b60e7-f8b0-411f-b778-f69e3e9fb3fe 2019-08-25 19:33:50.445196 13734 112 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-08-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.243.154 cc359b1b-9256-4190-9be7-65f9254dc11c 2019-08-25 19:43:18.459737 13735 18 User \N \N 18 User \N update ---\ncurrent_sign_in_at:\n- 2019-08-24 02:20:07.776375000 Z\n- 2019-08-25 19:43:40.655429702 Z\nsign_in_count:\n- 1\n- 2\n 4 \N 189.186.243.154 14f74594-dae7-4c32-8c77-27847d23f03e 2019-08-25 19:43:40.661121 13736 18 User \N \N 18 User \N update ---\nunique_session_id:\n- EiifwAtGjLmAjRQy8Hwv\n- ZjiBd8ALySGzu2ebA6vZ\n 5 \N 189.186.243.154 14f74594-dae7-4c32-8c77-27847d23f03e 2019-08-25 19:43:40.67337 13737 112 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-25\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.243.154 20551c4d-b64b-4f2e-b476-85bc97b9b92a 2019-08-25 19:43:57.860816 13738 821 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 679\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.243.154 20551c4d-b64b-4f2e-b476-85bc97b9b92a 2019-08-25 19:43:57.890785 13739 822 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 681\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.243.154 20551c4d-b64b-4f2e-b476-85bc97b9b92a 2019-08-25 19:43:57.934215 13740 823 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 661\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.243.154 20551c4d-b64b-4f2e-b476-85bc97b9b92a 2019-08-25 19:43:57.955856 13741 824 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 665\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.243.154 20551c4d-b64b-4f2e-b476-85bc97b9b92a 2019-08-25 19:43:57.975794 13742 825 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 687\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.243.154 20551c4d-b64b-4f2e-b476-85bc97b9b92a 2019-08-25 19:43:57.995444 13743 826 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 663\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.243.154 20551c4d-b64b-4f2e-b476-85bc97b9b92a 2019-08-25 19:43:58.015719 13744 111 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-25\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.243.154 6da6de53-678c-4a95-aa31-7d38d9bdee64 2019-08-25 19:44:05.536921 13745 827 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 669\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.9E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.243.154 6da6de53-678c-4a95-aa31-7d38d9bdee64 2019-08-25 19:44:05.55584 13746 828 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 674\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.243.154 6da6de53-678c-4a95-aa31-7d38d9bdee64 2019-08-25 19:44:05.577928 13747 829 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 675\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.243.154 6da6de53-678c-4a95-aa31-7d38d9bdee64 2019-08-25 19:44:05.599581 13748 830 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 673\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.9E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.243.154 6da6de53-678c-4a95-aa31-7d38d9bdee64 2019-08-25 19:44:05.618818 13749 108 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-25\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.243.154 5e1da62e-3072-407e-8ff2-0ab3e4be8078 2019-08-25 19:44:14.942787 13750 831 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 666\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.243.154 5e1da62e-3072-407e-8ff2-0ab3e4be8078 2019-08-25 19:44:14.962323 13751 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-25 02:12:15.074218000 Z\n- &1 2019-08-25 19:08:35.940747000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-25 19:44:41.962160321 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946450\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145882\n mask_addr: 4294967295\nsign_in_count:\n- 502\n- 503\n 1006 \N 189.186.243.154 309b93c7-726b-4713-9fc5-5bea51125ba3 2019-08-25 19:44:41.968659 13752 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yTvWAXjuzPtsABWvRbjo\n- 7aABqyyzB5Vxxfkc4B4G\n 1007 \N 189.186.243.154 309b93c7-726b-4713-9fc5-5bea51125ba3 2019-08-25 19:44:41.985362 13753 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-25 19:08:35.940747000 Z\n- &1 2019-08-25 19:44:41.962160000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-25 21:08:09.946807337 Z\nsign_in_count:\n- 503\n- 504\n 1008 \N 189.186.243.154 2a2e98ad-10f9-4aa2-abd8-91e6a34fc8eb 2019-08-25 21:08:09.952457 13754 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7aABqyyzB5Vxxfkc4B4G\n- Cfpki8xPc5kpmq8R6Yni\n 1009 \N 189.186.243.154 2a2e98ad-10f9-4aa2-abd8-91e6a34fc8eb 2019-08-25 21:08:09.965509 13755 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-25 19:44:41.962160000 Z\n- &1 2019-08-25 21:08:09.946807000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-25 21:28:43.291986193 Z\nsign_in_count:\n- 504\n- 505\n 1010 \N 189.186.243.154 b6e0493f-dc06-4a86-929b-f4036bd27dfa 2019-08-25 21:28:43.297662 13902 111 Customer \N \N 2 User \N update ---\nstatus:\n- active\n- 0\n 2 \N 187.149.51.82 82560d4c-064c-404d-9302-ae9070650924 2019-08-29 17:34:20.892682 13756 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Cfpki8xPc5kpmq8R6Yni\n- 4fGcoMLUKyUa8DAoYLKF\n 1011 \N 189.186.243.154 b6e0493f-dc06-4a86-929b-f4036bd27dfa 2019-08-25 21:28:43.311417 13757 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-25 00:48:53.582413000 Z\n- &1 2019-08-25 00:57:53.988921000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-26 16:03:59.602277472 Z\nsign_in_count:\n- 602\n- 603\n 1206 \N 187.149.55.171 003eda2a-bd16-4f0f-925a-cfe4e0d131e3 2019-08-26 16:03:59.637111 13758 3 User \N \N 3 User \N update ---\nunique_session_id:\n- iHrZdgsUpdt1qDZ-eizm\n- hB5Sp6i-zNi3xJyeAhxo\n 1207 \N 187.149.55.171 003eda2a-bd16-4f0f-925a-cfe4e0d131e3 2019-08-26 16:03:59.664905 13759 383 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.516E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 516.0 187.149.55.171 ed74a1b9-82ab-4fef-9209-29a7f76430ca 2019-08-26 17:13:07.793849 13760 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-25 21:08:09.946807000 Z\n- &1 2019-08-25 21:28:43.291986000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-26 18:00:18.265759981 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145882\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946273\n mask_addr: 4294967295\nsign_in_count:\n- 505\n- 506\n 1012 \N 200.68.182.33 afde7a66-7fe2-48e3-b10b-179d9267d771 2019-08-26 18:00:18.272074 13761 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4fGcoMLUKyUa8DAoYLKF\n- 8yt_iRCX6U-my6xzvxvK\n 1013 \N 200.68.182.33 afde7a66-7fe2-48e3-b10b-179d9267d771 2019-08-26 18:00:18.289514 13762 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-23 16:16:18.181829000 Z\n- &1 2019-08-24 15:58:43.024155000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-26 18:18:03.283004776 Z\nsign_in_count:\n- 295\n- 296\n 595 \N 187.149.55.171 8a23ef59-83b5-4230-8c40-593a4d920f1f 2019-08-26 18:18:03.290415 13763 2 User \N \N 2 User \N update ---\nunique_session_id:\n- roH1GnnRtQeqxx5GbJyM\n- SNds_FBKzWgDCpWyS4in\n 596 \N 187.149.55.171 8a23ef59-83b5-4230-8c40-593a4d920f1f 2019-08-26 18:18:03.30312 13764 384 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.553E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 553.0 187.149.55.171 31077af3-be09-47a9-b5b4-597a3acce7b7 2019-08-26 18:18:37.181845 13765 994 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 384\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-08-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-576\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.55.171 cef30e25-bc55-4ffa-b3cb-f338609dd337 2019-08-26 18:38:41.172031 13766 809 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.55.171 cef30e25-bc55-4ffa-b3cb-f338609dd337 2019-08-26 18:38:41.207789 13767 994 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.55.171 e5de54a9-94d3-4f44-a227-a24132cfb425 2019-08-26 18:39:06.171146 13768 1374 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 384\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 994\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-576\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-576 187.149.55.171 e5de54a9-94d3-4f44-a227-a24132cfb425 2019-08-26 18:39:06.194114 13769 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-25 21:28:43.291986000 Z\n- &1 2019-08-26 18:00:18.265759000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-26 18:49:27.860157730 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145882\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946273\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946273\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145882\n mask_addr: 4294967295\nsign_in_count:\n- 506\n- 507\n 1014 \N 189.186.243.154 240aa77c-36ae-4994-a4a8-3b2e37ba31c5 2019-08-26 18:49:27.867156 13770 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8yt_iRCX6U-my6xzvxvK\n- U6xrRrNa-44XW5NeTzYR\n 1015 \N 189.186.243.154 240aa77c-36ae-4994-a4a8-3b2e37ba31c5 2019-08-26 18:49:27.8811 13771 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-26 18:00:18.265759000 Z\n- &1 2019-08-26 18:49:27.860157000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-26 19:09:39.864763180 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946273\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145882\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145882\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938265\n mask_addr: 4294967295\nsign_in_count:\n- 507\n- 508\n 1016 \N 200.68.150.217 484a5d1a-1a25-4f5d-a67d-f523d0c2dab0 2019-08-26 19:09:39.872045 13772 4 User \N \N 4 User \N update ---\nunique_session_id:\n- U6xrRrNa-44XW5NeTzYR\n- pG8CArFsWKxDvMzpxyKC\n 1017 \N 200.68.150.217 484a5d1a-1a25-4f5d-a67d-f523d0c2dab0 2019-08-26 19:09:39.886814 13773 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-26 18:49:27.860157000 Z\n- &1 2019-08-26 19:09:39.864763000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-27 00:40:08.025038240 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145882\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938265\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938265\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934394\n mask_addr: 4294967295\nsign_in_count:\n- 508\n- 509\n 1018 \N 200.68.135.186 26ccf05d-ada5-4c30-a891-da3119fd7080 2019-08-27 00:40:08.059365 13774 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pG8CArFsWKxDvMzpxyKC\n- oFFSt1LNDTq7FatwgXuJ\n 1019 \N 200.68.135.186 26ccf05d-ada5-4c30-a891-da3119fd7080 2019-08-27 00:40:08.078851 13775 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-25 00:57:53.988921000 Z\n- &1 2019-08-26 16:03:59.602277000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-27 00:54:01.181693359 Z\nsign_in_count:\n- 603\n- 604\n 1208 \N 187.149.55.171 c18e16bf-94cd-44f1-b9f1-f3bd2397aca9 2019-08-27 00:54:01.186749 13776 3 User \N \N 3 User \N update ---\nunique_session_id:\n- hB5Sp6i-zNi3xJyeAhxo\n- HUbJ8K_1uQrUH5ffKuzx\n 1209 \N 187.149.55.171 c18e16bf-94cd-44f1-b9f1-f3bd2397aca9 2019-08-27 00:54:01.198836 13777 383 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 383\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.516E3\nphysical_cash: !ruby/object:BigDecimal 18:0.516E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.55.171 e9bff97a-57b3-4902-ae7c-1b4688d2ba4f 2019-08-27 00:54:42.661053 13778 383 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 e9bff97a-57b3-4902-ae7c-1b4688d2ba4f 2019-08-27 00:54:42.674489 20280 760 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '760'\n is_parent: false\n sku: BLU-760\n name: BLS-0081\n description: "APEACH LENTEJUELAS\\r\\n"\n price_base: '290.0'\n price_sale: '729.0'\n img_product: IMG_3045.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000760'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-11 03:05:31.017362'\n updated_at: &12 2019-11-05 20:45:02.687552093 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '760'\n sku: BLU-760\n name: BLS-0081\n description: "APEACH LENTEJUELAS\\r\\n"\n price_base: '290.00'\n price_sale: '729.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-11 03:05:31.017362'\n updated_at: '2019-10-15 17:40:30.93984'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000760'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '760'\n type: *3\n value: 760\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-760\n type: *7\n value: BLU-760\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0081\n type: *8\n value: BLS-0081\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "APEACH LENTEJUELAS\\r\\n"\n type: *6\n value: "APEACH LENTEJUELAS\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '290.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.29E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '729.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.729E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_3045.JPG\n type: *2\n value: IMG_3045.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000760'\n type: *2\n value: '0000760'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-11 03:05:31.017362'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_3045.JPG\n 4 El producto BLU-760 fue modificado. 187.149.74.215 d323df1f-037e-4310-856b-d3555fd71616 2019-11-05 20:45:02.741041 13779 384 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 384\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.699E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.752E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1252E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.55.171 8fde76ca-742c-4b18-a83b-5c97711fb18a 2019-08-27 00:55:36.903537 13780 384 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.55.171 8fde76ca-742c-4b18-a83b-5c97711fb18a 2019-08-27 00:55:36.935828 13781 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-26 16:03:59.602277000 Z\n- &1 2019-08-27 00:54:01.181693000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-27 16:22:30.276589885 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129872\n mask_addr: 4294967295\nsign_in_count:\n- 604\n- 605\n 1210 \N 187.149.100.16 4134f0a3-b1db-4126-8a9d-80d5c7157f29 2019-08-27 16:22:30.314877 13782 3 User \N \N 3 User \N update ---\nunique_session_id:\n- HUbJ8K_1uQrUH5ffKuzx\n- r4X9xzneXbrdDoyLB-sP\n 1211 \N 187.149.100.16 4134f0a3-b1db-4126-8a9d-80d5c7157f29 2019-08-27 16:22:30.35017 13783 385 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.516E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 516.0 187.149.100.16 af30826f-f8ea-41ca-8d3d-d5610eb24a03 2019-08-27 16:22:40.837596 13784 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-24 15:58:43.024155000 Z\n- &1 2019-08-26 18:18:03.283004000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-27 16:56:45.593637813 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129872\n mask_addr: 4294967295\nsign_in_count:\n- 296\n- 297\n 597 \N 187.149.100.16 04ecd4de-ccbb-4667-bc08-ae9ebd4ee905 2019-08-27 16:56:45.600254 13785 2 User \N \N 2 User \N update ---\nunique_session_id:\n- SNds_FBKzWgDCpWyS4in\n- gx7mfjDrmZqforEbN5hQ\n 598 \N 187.149.100.16 04ecd4de-ccbb-4667-bc08-ae9ebd4ee905 2019-08-27 16:56:45.614679 13786 386 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.752E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 752.0 187.149.100.16 a1ad4887-20d9-4bd4-9da6-cb49e4dd8563 2019-08-27 16:59:27.467634 13787 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-26 19:09:39.864763000 Z\n- &1 2019-08-27 00:40:08.025038000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-27 18:02:47.414396406 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938265\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934394\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934394\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938506\n mask_addr: 4294967295\nsign_in_count:\n- 509\n- 510\n 1020 \N 200.68.151.202 160c35a9-f060-4918-b221-548fa7932cd0 2019-08-27 18:02:47.421366 13788 4 User \N \N 4 User \N update ---\nunique_session_id:\n- oFFSt1LNDTq7FatwgXuJ\n- 8xJkBCk7w6DyzygVhhpK\n 1021 \N 200.68.151.202 160c35a9-f060-4918-b221-548fa7932cd0 2019-08-27 18:02:47.436188 13789 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-27 00:40:08.025038000 Z\n- &1 2019-08-27 18:02:47.414396000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-27 19:56:27.054256603 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934394\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938506\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938506\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934091\n mask_addr: 4294967295\nsign_in_count:\n- 510\n- 511\n 1022 \N 200.68.134.139 00ef9b03-f3ac-4aa9-a8e8-a510dd15a555 2019-08-27 19:56:27.062102 13790 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8xJkBCk7w6DyzygVhhpK\n- QtRixyBxjEugWgk_w25U\n 1023 \N 200.68.134.139 00ef9b03-f3ac-4aa9-a8e8-a510dd15a555 2019-08-27 19:56:27.079547 13791 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-27 00:54:01.181693000 Z\n- &1 2019-08-27 16:22:30.276589000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-27 20:02:46.210701209 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129872\n mask_addr: 4294967295\nsign_in_count:\n- 605\n- 606\n 1212 \N 187.149.100.16 d62f3111-b8ab-40d9-986b-fb9dcfbc2297 2019-08-27 20:02:46.218167 13792 3 User \N \N 3 User \N update ---\nunique_session_id:\n- r4X9xzneXbrdDoyLB-sP\n- Lsxzd6Suqv5Nx1Mkd9Zy\n 1213 \N 187.149.100.16 d62f3111-b8ab-40d9-986b-fb9dcfbc2297 2019-08-27 20:02:46.234235 13793 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-27 16:22:30.276589000 Z\n- &1 2019-08-27 20:02:46.210701000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-27 22:05:37.246057156 Z\nsign_in_count:\n- 606\n- 607\n 1214 \N 187.149.100.16 5a00a52a-13f1-48cd-a568-83f4a53b7bdd 2019-08-27 22:05:37.252415 13794 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Lsxzd6Suqv5Nx1Mkd9Zy\n- bmVX7jXxBXRr79ArfsD2\n 1215 \N 187.149.100.16 5a00a52a-13f1-48cd-a568-83f4a53b7bdd 2019-08-27 22:05:37.266531 13795 168 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 385\nquantity: !ruby/object:BigDecimal 18:0.1E3\nstatus: 1\nobservations: YARETZI\nexpense_date: 2019-08-27\nexpense_code: PV2-E-36\n 1 Egreso por 100.0 registrado 187.149.100.16 f058ee36-dc2f-48d3-9d1d-5df75eb60d97 2019-08-27 22:05:56.527242 13796 1375 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 385\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 168\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.100.16 f058ee36-dc2f-48d3-9d1d-5df75eb60d97 2019-08-27 22:05:56.569637 13797 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-27 20:02:46.210701000 Z\n- &1 2019-08-27 22:05:37.246057000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-28 00:17:28.140964352 Z\nsign_in_count:\n- 607\n- 608\n 1216 \N 187.149.100.16 66241a10-6503-40fd-85b0-2940b7f75c57 2019-08-28 00:17:28.148856 13798 3 User \N \N 3 User \N update ---\nunique_session_id:\n- bmVX7jXxBXRr79ArfsD2\n- ftgMcJWFPvUedRP5_mST\n 1217 \N 187.149.100.16 66241a10-6503-40fd-85b0-2940b7f75c57 2019-08-28 00:17:28.166879 13799 749 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.100.16 4e15ef5d-49cc-44a3-a1ff-d54621deb589 2019-08-28 00:19:02.615877 13800 749 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.100.16 1f8fe9d5-a1bf-49f8-96ef-4c0fd8909561 2019-08-28 00:19:05.685601 13801 726 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.100.16 3221e61d-bc6b-4b1f-b742-b0a9afbf4bbb 2019-08-28 00:19:34.025831 13802 726 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.100.16 f6c52272-707d-4718-94e9-8837ddae9345 2019-08-28 00:19:37.060188 20281 796 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '796'\n is_parent: false\n sku: CON-796\n name: CJT-0003\n description: CONJUNTOS SANJOY PLATEADO Y NEGRO\n price_base: '460.0'\n price_sale: '1199.0'\n img_product: PHOTO-2019-10-15-21-54-32__6_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '10'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000796'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-13 16:44:02.635239'\n updated_at: &12 2019-11-05 20:46:05.414133150 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '796'\n sku: CON-796\n name: CJT-0003\n description: CONJUNTOS SANJOY PLATEADO Y NEGRO\n price_base: '460.00'\n price_sale: '1199.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-13 16:44:02.635239'\n updated_at: '2019-10-13 16:44:02.679268'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000796'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '10'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '796'\n type: *3\n value: 796\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CON-796\n type: *7\n value: CON-796\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CJT-0003\n type: *8\n value: CJT-0003\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CONJUNTOS SANJOY PLATEADO Y NEGRO\n type: *6\n value: CONJUNTOS SANJOY PLATEADO Y NEGRO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '460.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.46E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1199.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1199E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-10-15-21-54-32__6_.jpg\n type: *2\n value: PHOTO-2019-10-15-21-54-32__6_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '10'\n type: *3\n value: 10\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000796'\n type: *2\n value: '0000796'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-13 16:44:02.635239'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-10-15-21-54-32__6_.jpg\n 3 El producto CON-796 fue modificado. 187.149.74.215 698b8f4b-1a9e-4b0a-9d50-66358d1c79bf 2019-11-05 20:46:05.454804 13803 113 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-08-27\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.100.16 e0b3a6eb-f523-46f6-b18d-dd7f881dea9a 2019-08-28 00:20:07.219633 13804 113 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-27\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.100.16 fad6bff8-2b34-4061-a239-05342a4f4f7c 2019-08-28 00:20:41.425792 13805 832 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 607\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.100.16 fad6bff8-2b34-4061-a239-05342a4f4f7c 2019-08-28 00:20:41.447677 13806 833 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 628\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.100.16 fad6bff8-2b34-4061-a239-05342a4f4f7c 2019-08-28 00:20:41.480386 13807 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-27 18:02:47.414396000 Z\n- &1 2019-08-27 19:56:27.054256000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-28 00:28:13.316621530 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938506\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934091\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934091\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946139\n mask_addr: 4294967295\nsign_in_count:\n- 511\n- 512\n 1024 \N 200.68.181.155 fb62befc-bb9b-462d-9444-914a4d727ab0 2019-08-28 00:28:13.324248 13808 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QtRixyBxjEugWgk_w25U\n- xHLg1rvy1Brzn8T1vS4F\n 1025 \N 200.68.181.155 fb62befc-bb9b-462d-9444-914a4d727ab0 2019-08-28 00:28:13.339043 13809 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-27 22:05:37.246057000 Z\n- &1 2019-08-28 00:17:28.140964000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-28 00:32:39.195277236 Z\nsign_in_count:\n- 608\n- 609\n 1218 \N 187.149.100.16 dc693ee4-e22a-4973-90b0-308684e429af 2019-08-28 00:32:39.201588 13810 3 User \N \N 3 User \N update ---\nunique_session_id:\n- ftgMcJWFPvUedRP5_mST\n- hyTRpagRDgDRxsbMYb1R\n 1219 \N 187.149.100.16 dc693ee4-e22a-4973-90b0-308684e429af 2019-08-28 00:32:39.21704 13811 385 CashOut \N \N 3 User \N create ---\nopen_cash_register_id: 385\nuser_id: 3\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.1E3\nreceived_by_id: 13\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.416E3\nphysical_cash: !ruby/object:BigDecimal 18:0.416E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.100.16 0d8bf11d-eb18-4ab5-8933-61f1eed7a138 2019-08-28 00:33:15.331243 13812 385 OpenCashRegister \N \N 3 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.100.16 0d8bf11d-eb18-4ab5-8933-61f1eed7a138 2019-08-28 00:33:15.34407 13813 386 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 386\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.752E3\nphysical_cash: !ruby/object:BigDecimal 18:0.752E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.100.16 357e8275-95ac-48ba-99b6-b571faf3c9a5 2019-08-28 00:53:39.228415 13814 386 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.100.16 357e8275-95ac-48ba-99b6-b571faf3c9a5 2019-08-28 00:53:39.241841 13815 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-08-24 02:20:07.776375000 Z\n- &1 2019-08-25 19:43:40.655429000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-28 03:51:35.103777740 Z\nsign_in_count:\n- 2\n- 3\n 6 \N 189.186.243.154 b456da21-d999-421f-aa94-9ee2f801cf8a 2019-08-28 03:51:35.121841 13816 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ZjiBd8ALySGzu2ebA6vZ\n- foT2GDhYnVDkEUKnwfJK\n 7 \N 189.186.243.154 b456da21-d999-421f-aa94-9ee2f801cf8a 2019-08-28 03:51:35.143937 13817 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-27 19:56:27.054256000 Z\n- &1 2019-08-28 00:28:13.316621000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-28 03:52:35.584968827 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934091\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946139\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946139\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145882\n mask_addr: 4294967295\nsign_in_count:\n- 512\n- 513\n 1026 \N 189.186.243.154 85b029aa-2401-4cb5-9dcc-b8f4e9ddaf35 2019-08-28 03:52:35.592645 13818 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xHLg1rvy1Brzn8T1vS4F\n- tmyoy4qRYjp3BHguQvCy\n 1027 \N 189.186.243.154 85b029aa-2401-4cb5-9dcc-b8f4e9ddaf35 2019-08-28 03:52:35.609167 13819 786 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.45E2\n- !ruby/object:BigDecimal 18:0.44E2\n 5 \N 189.186.243.154 a30c20e6-425d-47d4-aec7-644e4044ab75 2019-08-28 03:56:30.627901 13820 808 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 4 \N 189.186.243.154 3e7f1530-5f88-45a4-868c-6cc612eaec35 2019-08-28 03:57:04.168219 13821 786 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.44E2\n- !ruby/object:BigDecimal 18:0.45E2\n 6 \N 189.186.243.154 fe92910d-9c04-49e1-8760-28052bed355c 2019-08-28 03:57:07.458182 13822 808 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.243.154 fcbba0c1-ed8f-4b23-a28e-2956a899f3af 2019-08-28 03:57:12.321004 13823 786 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.45E2\n- !ruby/object:BigDecimal 18:0.44E2\n 7 \N 189.186.243.154 213e61c9-f838-4d9f-894c-f8bc70dbd8a0 2019-08-28 03:57:24.635151 13824 786 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.44E2\n- !ruby/object:BigDecimal 18:0.15E2\n 8 \N 189.186.243.154 529fce84-fba8-41b9-a31b-1299ec284323 2019-08-28 03:57:39.876706 13825 114 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-08-27\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.243.154 b3289c48-a894-4068-82dc-5e0fb48b0a4f 2019-08-28 03:57:44.864531 13826 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-08-25 19:43:40.655429000 Z\n- &1 2019-08-28 03:51:35.103777000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-28 03:57:55.199301728 Z\nsign_in_count:\n- 3\n- 4\n 8 \N 189.186.243.154 6598f488-08de-46ca-8815-e43df118a877 2019-08-28 03:57:55.204556 13827 18 User \N \N 18 User \N update ---\nunique_session_id:\n- foT2GDhYnVDkEUKnwfJK\n- GMyxc7QcsorjTJvKdkzm\n 9 \N 189.186.243.154 6598f488-08de-46ca-8815-e43df118a877 2019-08-28 03:57:55.215657 13828 114 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-27\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.243.154 33b4d1cd-d305-4b5a-9a5b-465b733c2d31 2019-08-28 03:58:08.967007 13829 834 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 668\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E2\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.243.154 33b4d1cd-d305-4b5a-9a5b-465b733c2d31 2019-08-28 03:58:08.985633 13830 835 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 662\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.243.154 33b4d1cd-d305-4b5a-9a5b-465b733c2d31 2019-08-28 03:58:09.006911 13831 387 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.664E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 664.0 189.186.243.154 0e8d9bbb-f0c0-4ddf-9ac8-130f0e97a64d 2019-08-28 03:58:25.800294 13832 19 User \N \N 18 User \N create ---\nuserid: DANIELA\nfirst_name: DANIELA\nlast_name: URCISICHI\nusertype: C\nemail: daniurci7@hgmail.com\nencrypted_password: "$2a$10$.ptPagXRTvb8eFm1djd8mORkEAIgStSEn9TvZBTgNCETMQtElTnaq"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 3\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.186.243.154 43b66f1e-8370-4779-9315-96e24a77241b 2019-08-28 04:01:05.340052 13833 12 Seller \N \N 18 User \N create ---\npointsale_id: 3\nname: DANIELA\nlast_name: URCISICHI\nstatus: 1\n 1 El vendedor DANIELA URCISICHI fue registrado. 189.186.243.154 293e01b6-de19-407e-83b2-1b5a1d120f7b 2019-08-28 04:01:43.190542 13834 995 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 387\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-08-27\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-1\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.243.154 2ec65386-1581-4a2f-af53-5f050ca131fb 2019-08-28 04:02:24.050652 13835 835 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.243.154 2ec65386-1581-4a2f-af53-5f050ca131fb 2019-08-28 04:02:24.075935 13836 995 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.243.154 4a311956-4a50-4e5f-a98c-5ad57042ff33 2019-08-28 04:02:30.592378 13837 1376 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 387\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 995\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1 189.186.243.154 4a311956-4a50-4e5f-a98c-5ad57042ff33 2019-08-28 04:02:30.613644 13838 387 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 387\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.699E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1363E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1363E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.243.154 975de6b0-61b6-4836-8329-95a6a4bd0f7e 2019-08-28 04:03:51.719665 13839 387 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.243.154 975de6b0-61b6-4836-8329-95a6a4bd0f7e 2019-08-28 04:03:51.732564 13840 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-28 00:28:13.316621000 Z\n- &1 2019-08-28 03:52:35.584968000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-28 05:05:08.686460760 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946139\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145882\n mask_addr: 4294967295\nsign_in_count:\n- 513\n- 514\n 1028 \N 189.186.243.154 528b60f3-d29d-4775-bcc3-a5d8e0b472bf 2019-08-28 05:05:08.693082 13841 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tmyoy4qRYjp3BHguQvCy\n- QBZ_WNYfv6n1utrjsvCn\n 1029 \N 189.186.243.154 528b60f3-d29d-4775-bcc3-a5d8e0b472bf 2019-08-28 05:05:08.707244 13842 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-28 00:17:28.140964000 Z\n- &1 2019-08-28 00:32:39.195277000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-28 16:00:35.644625548 Z\nsign_in_count:\n- 609\n- 610\n 1220 \N 187.149.100.16 fea80abe-2cdb-4647-aac9-ecb432c9075b 2019-08-28 16:00:35.673304 13843 3 User \N \N 3 User \N update ---\nunique_session_id:\n- hyTRpagRDgDRxsbMYb1R\n- pkAL-jZSz4sbx43w15ce\n 1221 \N 187.149.100.16 fea80abe-2cdb-4647-aac9-ecb432c9075b 2019-08-28 16:00:35.694822 13844 388 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.416E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 416.0 187.149.100.16 4fce6b29-37f8-4097-9d09-c342e6d2bb68 2019-08-28 16:01:15.263272 13845 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-26 18:18:03.283004000 Z\n- &1 2019-08-27 16:56:45.593637000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-28 16:03:02.536817751 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129872\n mask_addr: 4294967295\nsign_in_count:\n- 297\n- 298\n 599 \N 187.149.100.16 f1316644-df57-449f-9313-18d020fca4f4 2019-08-28 16:03:02.544293 13846 2 User \N \N 2 User \N update ---\nunique_session_id:\n- gx7mfjDrmZqforEbN5hQ\n- Dx8jXL-_MAxcwmKch3dR\n 600 \N 187.149.100.16 f1316644-df57-449f-9313-18d020fca4f4 2019-08-28 16:03:02.561332 13847 389 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.752E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 752.0 187.149.100.16 f0323387-7dc8-463b-ae02-2c2f0aadf789 2019-08-28 16:03:19.215998 13848 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-28 03:52:35.584968000 Z\n- &1 2019-08-28 05:05:08.686460000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-28 20:37:50.033439633 Z\nsign_in_count:\n- 514\n- 515\n 1030 \N 189.186.243.154 8913eb13-6ebc-4139-8953-19cc0c0a77c6 2019-08-28 20:37:50.042064 13849 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QBZ_WNYfv6n1utrjsvCn\n- AYywbDaYjyN5WDkxN3pL\n 1031 \N 189.186.243.154 8913eb13-6ebc-4139-8953-19cc0c0a77c6 2019-08-28 20:37:50.061346 13850 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-08-21 00:25:09.722434000 Z\n- &1 2019-08-21 22:12:02.054313000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-29 00:08:10.351432643 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097224\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097224\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129872\n mask_addr: 4294967295\nsign_in_count:\n- 125\n- 126\n 252 \N 187.149.100.16 15fafcf3-ec57-406a-b9c5-b97d05f77bcc 2019-08-29 00:08:10.359081 13851 10 User \N \N 10 User \N update ---\nunique_session_id:\n- jQNBP4oKrx4QNw22sd7r\n- rayHYYoLE9Pq4tVJDrDm\n 253 \N 187.149.100.16 15fafcf3-ec57-406a-b9c5-b97d05f77bcc 2019-08-29 00:08:10.373972 13852 996 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 388\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2019-08-28\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-417\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.100.16 04a2ee99-a0fa-48ba-a050-ffa72ecaa6a1 2019-08-29 00:12:00.337973 13853 806 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 2 \N 187.149.100.16 04a2ee99-a0fa-48ba-a050-ffa72ecaa6a1 2019-08-29 00:12:00.370883 13854 800 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.100.16 04a2ee99-a0fa-48ba-a050-ffa72ecaa6a1 2019-08-29 00:12:00.408813 13855 996 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.100.16 d3939321-ab4a-44ea-baba-6724220ff04c 2019-08-29 00:12:24.02159 13856 1377 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 388\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1398E4\nmove_type: '1'\nsale_id: 996\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-417\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-417 187.149.100.16 d3939321-ab4a-44ea-baba-6724220ff04c 2019-08-29 00:12:24.05525 13857 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-28 05:05:08.686460000 Z\n- &1 2019-08-28 20:37:50.033439000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-29 00:22:20.618327992 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145882\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129872\n mask_addr: 4294967295\nsign_in_count:\n- 515\n- 516\n 1032 \N 187.149.100.16 0962d6db-0a64-4410-9818-847bfe8c59be 2019-08-29 00:22:20.62462 13858 4 User \N \N 4 User \N update ---\nunique_session_id:\n- AYywbDaYjyN5WDkxN3pL\n- hy2E93PKtZV25JyZZMRG\n 1033 \N 187.149.100.16 0962d6db-0a64-4410-9818-847bfe8c59be 2019-08-29 00:22:20.637588 13859 388 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 388\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.1398E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.1088E4\ncash_fund: !ruby/object:BigDecimal 18:0.726E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1814E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.100.16 db380bcf-0a20-46ea-bb53-0ff11df639bb 2019-08-29 00:57:05.456036 13860 388 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.100.16 db380bcf-0a20-46ea-bb53-0ff11df639bb 2019-08-29 00:57:05.468745 13861 389 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 389\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.752E3\nphysical_cash: !ruby/object:BigDecimal 18:0.752E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.100.16 cbce2f41-dfc4-4993-93e4-53eb96985aa1 2019-08-29 00:58:07.112963 13862 389 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.100.16 cbce2f41-dfc4-4993-93e4-53eb96985aa1 2019-08-29 00:58:07.125965 13863 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-28 20:37:50.033439000 Z\n- &1 2019-08-29 00:22:20.618327000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-29 14:30:28.469153227 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145882\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129872\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129872\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\nsign_in_count:\n- 516\n- 517\n 1034 \N 189.186.200.88 7e03ee5c-5291-4e8b-8674-918f43b424cf 2019-08-29 14:30:28.503004 13864 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hy2E93PKtZV25JyZZMRG\n- 4sVGXLYaJspnZsG17hzP\n 1035 \N 189.186.200.88 7e03ee5c-5291-4e8b-8674-918f43b424cf 2019-08-29 14:30:28.537784 13865 115 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-08-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.200.88 8442584e-8b22-4f2e-97e7-01c3696214ff 2019-08-29 14:35:00.492608 13866 116 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-08-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.200.88 20fa9f76-6ea6-422f-99be-16353ec927ad 2019-08-29 14:35:30.448273 13867 804 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 2 \N 189.186.200.88 97b824c9-ed1d-4ae1-bfcb-3283aa92dafc 2019-08-29 14:36:57.737195 13868 804 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.200.88 d0afcfcb-f5c8-47fa-a205-c64ca8e80950 2019-08-29 14:37:02.41552 13869 117 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-08-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.200.88 0fd4c0f1-684a-493f-8efd-4ba765841c68 2019-08-29 14:37:06.285575 13870 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-08-28 03:51:35.103777000 Z\n- &1 2019-08-28 03:57:55.199301000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-29 14:37:22.187077173 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145882\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\nsign_in_count:\n- 4\n- 5\n 10 \N 189.186.200.88 bbb57e4c-dc43-4d41-9c68-e1d0a95ea244 2019-08-29 14:37:22.193894 13871 18 User \N \N 18 User \N update ---\nunique_session_id:\n- GMyxc7QcsorjTJvKdkzm\n- ZEeP1TXHryvDsQDgDvAE\n 11 \N 189.186.200.88 bbb57e4c-dc43-4d41-9c68-e1d0a95ea244 2019-08-29 14:37:22.209063 13872 115 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-29\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.200.88 5476de8f-5341-410a-a213-04595a5daf46 2019-08-29 14:37:39.578925 13873 836 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 664\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 5476de8f-5341-410a-a213-04595a5daf46 2019-08-29 14:37:39.600171 13874 116 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-29\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.200.88 047fb17e-348b-4b23-a37b-d7af70793bef 2019-08-29 14:37:49.543584 13928 256 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.71.28 18cab365-d2cc-4b81-a9bf-50b42dcdee3b 2019-08-29 22:15:14.202831 13875 837 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 678\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 047fb17e-348b-4b23-a37b-d7af70793bef 2019-08-29 14:37:49.566393 13876 117 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-29\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.200.88 8e499102-70d3-4d82-866e-2fb2b429d97b 2019-08-29 14:37:56.994742 13877 838 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 682\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 8e499102-70d3-4d82-866e-2fb2b429d97b 2019-08-29 14:37:57.01869 13878 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-29 00:22:20.618327000 Z\n- &1 2019-08-29 14:30:28.469153000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-29 14:38:11.189643143 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129872\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\nsign_in_count:\n- 517\n- 518\n 1036 \N 189.186.200.88 fa35e503-d1fc-4ee3-a28d-059c21453954 2019-08-29 14:38:11.196752 13879 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4sVGXLYaJspnZsG17hzP\n- jeD98Bc9gyVSc-xM2VMw\n 1037 \N 189.186.200.88 fa35e503-d1fc-4ee3-a28d-059c21453954 2019-08-29 14:38:11.215612 13880 118 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-08-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.200.88 59404188-1812-4d24-b7d5-8713de22002c 2019-08-29 14:44:09.47101 13881 487 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.108E3\n- !ruby/object:BigDecimal 18:0.107E3\n 12 \N 189.186.200.88 a24cc0b6-a545-462d-b1f7-9df3628b5ad7 2019-08-29 14:46:19.040086 13882 487 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.107E3\n- !ruby/object:BigDecimal 18:0.72E2\n 13 \N 189.186.200.88 bd1459e4-250f-47f1-89c6-e9798b21f4ae 2019-08-29 14:46:23.526654 13883 119 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-08-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.200.88 0ae163b7-8955-444e-a119-9d39d8a27471 2019-08-29 14:46:28.007804 13884 487 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.72E2\n- !ruby/object:BigDecimal 18:0.71E2\n 14 \N 189.186.200.88 8ceb260d-7f82-44f2-afb1-454bd99dfa15 2019-08-29 14:46:52.563721 13885 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-08-28 03:57:55.199301000 Z\n- &1 2019-08-29 14:37:22.187077000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-29 14:47:35.519592482 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145882\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\nsign_in_count:\n- 5\n- 6\n 12 \N 189.186.200.88 9c7ca6e7-6e6f-4fe5-be5e-a040e964428d 2019-08-29 14:47:35.526231 13886 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ZEeP1TXHryvDsQDgDvAE\n- 3PCHLa6bBRAqYmh2waNh\n 13 \N 189.186.200.88 9c7ca6e7-6e6f-4fe5-be5e-a040e964428d 2019-08-29 14:47:35.540478 13887 118 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-29\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.200.88 6d2c356a-9d03-44ea-ac6d-cad521013944 2019-08-29 14:47:49.557873 13888 839 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 680\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 6d2c356a-9d03-44ea-ac6d-cad521013944 2019-08-29 14:47:49.583672 13889 119 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-29\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.200.88 cdd065ff-3a5a-4272-80a8-531862080bc4 2019-08-29 14:47:58.849827 13890 840 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 476\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.36E2\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 cdd065ff-3a5a-4272-80a8-531862080bc4 2019-08-29 14:47:58.871822 13891 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-29 14:30:28.469153000 Z\n- &1 2019-08-29 14:38:11.189643000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-29 14:48:19.260073834 Z\nsign_in_count:\n- 518\n- 519\n 1038 \N 189.186.200.88 94943d5b-eb88-4a76-a5fb-69f8cc897427 2019-08-29 14:48:19.266001 13892 4 User \N \N 4 User \N update ---\nunique_session_id:\n- jeD98Bc9gyVSc-xM2VMw\n- snAogWkS44Ba6L93iYrZ\n 1039 \N 189.186.200.88 94943d5b-eb88-4a76-a5fb-69f8cc897427 2019-08-29 14:48:19.29382 13893 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-28 00:32:39.195277000 Z\n- &1 2019-08-28 16:00:35.644625000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-29 16:09:35.621373025 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129872\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117394\n mask_addr: 4294967295\nsign_in_count:\n- 610\n- 611\n 1222 \N 187.149.51.82 db5a058d-7ec7-4ddc-82d9-24469c56334d 2019-08-29 16:09:35.629169 13894 3 User \N \N 3 User \N update ---\nunique_session_id:\n- pkAL-jZSz4sbx43w15ce\n- BPxek_yX9zyxSREVXbGz\n 1223 \N 187.149.51.82 db5a058d-7ec7-4ddc-82d9-24469c56334d 2019-08-29 16:09:35.644755 13895 390 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.726E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 726.0 187.149.51.82 7e224cd2-dd9d-4091-926c-5787cacd43cc 2019-08-29 16:10:51.063245 13896 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-27 16:56:45.593637000 Z\n- &1 2019-08-28 16:03:02.536817000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-29 16:15:49.437355019 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129872\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117394\n mask_addr: 4294967295\nsign_in_count:\n- 298\n- 299\n 601 \N 187.149.51.82 5b2216ba-4b79-4c5c-9f3f-6de5b37f23d2 2019-08-29 16:15:49.444836 13897 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Dx8jXL-_MAxcwmKch3dR\n- 1sQBenWthZ5vrei81MkM\n 602 \N 187.149.51.82 5b2216ba-4b79-4c5c-9f3f-6de5b37f23d2 2019-08-29 16:15:49.465841 13898 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-29 14:38:11.189643000 Z\n- &1 2019-08-29 14:48:19.260073000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-29 17:30:59.109351488 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946384\n mask_addr: 4294967295\nsign_in_count:\n- 519\n- 520\n 1040 \N 200.68.182.144 777cfa49-ea93-4033-b947-fec5f1186bce 2019-08-29 17:30:59.115842 13899 4 User \N \N 4 User \N update ---\nunique_session_id:\n- snAogWkS44Ba6L93iYrZ\n- RVJfg8brbDsqfwxqKnCY\n 1041 \N 200.68.182.144 777cfa49-ea93-4033-b947-fec5f1186bce 2019-08-29 17:30:59.129929 13903 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-28 16:00:35.644625000 Z\n- &1 2019-08-29 16:09:35.621373000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-29 17:54:37.921690871 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129872\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117394\n mask_addr: 4294967295\nsign_in_count:\n- 611\n- 612\n 1224 \N 187.149.51.82 6228714a-fdb8-42a2-9629-1b8f4695d455 2019-08-29 17:54:37.928388 13904 3 User \N \N 3 User \N update ---\nunique_session_id:\n- BPxek_yX9zyxSREVXbGz\n- h-nzpb69EyGC1CUugs5x\n 1225 \N 187.149.51.82 6228714a-fdb8-42a2-9629-1b8f4695d455 2019-08-29 17:54:37.947007 13905 90 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-29\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.51.82 50af414f-f4f7-4529-8263-9cd619efa547 2019-08-29 18:15:06.063556 13906 647 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 187.149.51.82 50af414f-f4f7-4529-8263-9cd619efa547 2019-08-29 18:15:06.082872 13907 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-29 16:09:35.621373000 Z\n- &1 2019-08-29 17:54:37.921690000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-29 18:21:10.495556580 Z\nsign_in_count:\n- 612\n- 613\n 1226 \N 187.149.51.82 3457c6de-d479-4c68-9b1a-1057fcd827bc 2019-08-29 18:21:10.502555 13908 3 User \N \N 3 User \N update ---\nunique_session_id:\n- h-nzpb69EyGC1CUugs5x\n- Np8ynvxNRKFpBYN3_iGc\n 1227 \N 187.149.51.82 3457c6de-d479-4c68-9b1a-1057fcd827bc 2019-08-29 18:21:10.515827 13909 1378 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 390\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 986\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-412 187.149.51.82 91a3a631-cb95-4348-93a1-c0c22d5ab23c 2019-08-29 18:21:30.338539 13910 391 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.752E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 752.0 187.149.51.82 c2080c01-a736-4920-8858-e6bfb282c880 2019-08-29 18:23:18.598525 13911 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-29 17:54:37.921690000 Z\n- &1 2019-08-29 18:21:10.495556000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-29 20:10:24.900685715 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117394\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\nsign_in_count:\n- 613\n- 614\n 1228 \N 187.149.71.28 78ab8ec3-ddff-4918-9548-bfa31ba82af9 2019-08-29 20:10:24.935024 13912 3 User \N \N 3 User \N update ---\nunique_session_id:\n- Np8ynvxNRKFpBYN3_iGc\n- zxPd9GF5yBFXHnv9zqzn\n 1229 \N 187.149.71.28 78ab8ec3-ddff-4918-9548-bfa31ba82af9 2019-08-29 20:10:24.960664 13913 169 Expense \N \N 3 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 390\nquantity: !ruby/object:BigDecimal 18:0.2E3\nstatus: 1\nobservations: PAGO DE CORTE DE LUZ\nexpense_date: 2019-08-29\nexpense_code: PV2-E-37\n 1 Egreso por 200.0 registrado 187.149.71.28 f73b83c3-9863-473a-bce9-ee2f3c9bb600 2019-08-29 20:10:52.200607 13914 1379 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 390\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 169\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.71.28 f73b83c3-9863-473a-bce9-ee2f3c9bb600 2019-08-29 20:10:52.230244 13915 689 Product \N \N 2 User \N create ---\nsku: BOL-689\nname: ERIO487\ndescription: MOCHILA NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170558067'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-689 fue creado. 187.149.71.28 a2ef688b-9af3-415e-92d9-f57410366f1b 2019-08-29 22:08:49.287546 13916 841 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 689\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.71.28 a2ef688b-9af3-415e-92d9-f57410366f1b 2019-08-29 22:08:49.342975 13917 130 Purchase \N \N 2 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-77\namount: !ruby/object:BigDecimal 18:0.7995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.7995E3\nobservations: ''\npurchase_date: 2019-08-29\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-77 por $ 799.5 MXN creada. 187.149.71.28 e8643cec-30c0-4af6-8640-3d04bf8cedbb 2019-08-29 22:09:20.747852 13918 841 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.71.28 e8643cec-30c0-4af6-8640-3d04bf8cedbb 2019-08-29 22:09:20.772955 13919 591 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.71.28 ea450e6d-8449-4cd1-9574-27df7bd04ddf 2019-08-29 22:10:49.561705 13920 263 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.71.28 aa37947e-fbd2-411d-859a-664fdb8ae50e 2019-08-29 22:11:18.126987 13921 263 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.71.28 cb3f7a81-2c5d-404b-add0-c325bae2da0c 2019-08-29 22:11:22.316653 13922 269 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.71.28 9c5ec5f4-03ed-46cc-8f31-0c038237106a 2019-08-29 22:11:54.078943 13923 266 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.71.28 38633145-383d-47d1-91be-51c2102d1f33 2019-08-29 22:14:34.87527 13924 266 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 187.149.71.28 2276dfac-4cda-4398-9e6a-f5d3c4ed0fd2 2019-08-29 22:14:39.499065 13925 268 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 11 \N 187.149.71.28 eeab1666-3eb6-4aa0-a981-119312146598 2019-08-29 22:14:51.297832 13926 268 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 187.149.71.28 7320e830-d69d-4e7b-85b9-16ca09a3ebdc 2019-08-29 22:14:55.772043 13927 256 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.71.28 c0a56449-51e2-4821-9f5a-193865d01725 2019-08-29 22:15:07.789118 13929 496 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 4 \N 187.149.71.28 e07ea991-dfd7-4b85-8fa4-fb4cfa558e08 2019-08-29 22:15:37.05116 13930 496 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.71.28 a1e5d9aa-f857-4f04-a0cb-f2409adb523e 2019-08-29 22:15:52.075143 13931 271 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 2 \N 187.149.71.28 600d3fa7-602d-4c95-8265-01b1ee29d0d6 2019-08-29 22:16:52.57388 13932 271 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 187.149.71.28 2a479aca-dea0-4f20-b9ca-4b960e0a51dd 2019-08-29 22:17:14.354628 13933 260 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.71.28 74e3af5b-ef7b-48ff-b9ec-0f447323bc4e 2019-08-29 22:17:29.17414 13934 260 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.71.28 a85893b9-4064-487d-a414-122e9e7e0c53 2019-08-29 22:17:32.636552 13935 259 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.71.28 2b2669b5-8695-441d-bb98-f4f0b5d3bb60 2019-08-29 22:17:49.803243 13936 262 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 187.149.71.28 77e789d2-3eac-4100-bd0d-0c174e49eb79 2019-08-29 22:18:12.956048 13937 262 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.71.28 77ba6506-ed90-4704-ad1e-ee470c420e2e 2019-08-29 22:18:19.666469 13938 272 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 187.149.71.28 cc0d54d2-c429-4a75-937d-8dd3ae3dbcad 2019-08-29 22:18:47.414468 13939 272 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.71.28 37a765b5-b8c0-4c09-9411-d220eeebdcee 2019-08-29 22:18:57.672243 13940 257 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.71.28 e36debdc-a325-4ec6-a4c8-b02668823adc 2019-08-29 22:26:03.893324 13941 257 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.71.28 34f14718-f4f1-4098-b71a-83b30b488cf6 2019-08-29 22:27:08.300246 13942 267 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.24E2\n- !ruby/object:BigDecimal 18:0.23E2\n 2 \N 187.149.71.28 cbdc79e8-7297-42f7-b5df-e99f7bd2643c 2019-08-29 22:31:36.314086 13943 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-29 14:48:19.260073000 Z\n- &1 2019-08-29 17:30:59.109351000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-29 22:40:39.714803203 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946384\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946384\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938258\n mask_addr: 4294967295\nsign_in_count:\n- 520\n- 521\n 1042 \N 200.68.150.210 3bcc322e-0047-4551-94f5-e346ae33794a 2019-08-29 22:40:39.726827 13944 4 User \N \N 4 User \N update ---\nunique_session_id:\n- RVJfg8brbDsqfwxqKnCY\n- UsGFnUAXx_PyZf4NifDg\n 1043 \N 200.68.150.210 3bcc322e-0047-4551-94f5-e346ae33794a 2019-08-29 22:40:39.749055 13945 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-29 17:30:59.109351000 Z\n- &1 2019-08-29 22:40:39.714803000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-29 23:05:23.933706091 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946384\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938258\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938258\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938101\n mask_addr: 4294967295\nsign_in_count:\n- 521\n- 522\n 1044 \N 200.68.150.53 72c858a9-0ee2-41f9-8cb3-d50fae4e4b18 2019-08-29 23:05:23.941178 13946 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UsGFnUAXx_PyZf4NifDg\n- WZsgGnzBqyqF4AAxaCXi\n 1045 \N 200.68.150.53 72c858a9-0ee2-41f9-8cb3-d50fae4e4b18 2019-08-29 23:05:23.955926 13947 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-08-21 22:12:02.054313000 Z\n- &1 2019-08-29 00:08:10.351432000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-29 23:08:40.292354529 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097224\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129872\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129872\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938101\n mask_addr: 4294967295\nsign_in_count:\n- 126\n- 127\n 254 \N 200.68.150.53 bab204cc-8ead-46bd-ac20-10a53dd824ce 2019-08-29 23:08:40.300777 13948 10 User \N \N 10 User \N update ---\nunique_session_id:\n- rayHYYoLE9Pq4tVJDrDm\n- mAN-Quk8P1XQvx6WRXSh\n 255 \N 200.68.150.53 bab204cc-8ead-46bd-ac20-10a53dd824ce 2019-08-29 23:08:40.314565 13949 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-29 22:40:39.714803000 Z\n- &1 2019-08-29 23:05:23.933706000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-29 23:44:35.843917335 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938258\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938101\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938101\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\nsign_in_count:\n- 522\n- 523\n 1046 \N 187.149.71.28 54b3568e-ebef-4757-b790-62f00d1877f7 2019-08-29 23:44:35.850701 13950 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WZsgGnzBqyqF4AAxaCXi\n- MkacSqMQp4ayVkgsnSz4\n 1047 \N 187.149.71.28 54b3568e-ebef-4757-b790-62f00d1877f7 2019-08-29 23:44:35.866176 13951 267 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.23E2\n- !ruby/object:BigDecimal 18:0.14E2\n 3 \N 187.149.71.28 3742704e-d876-4e08-95d3-4b7a26d6c1da 2019-08-29 23:45:28.25727 13952 120 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-08-29\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.71.28 5b92ad9b-7ff3-4f93-b0f8-178eb144158d 2019-08-29 23:47:31.95044 13953 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-08-29 00:08:10.351432000 Z\n- &1 2019-08-29 23:08:40.292354000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-30 00:10:54.729479624 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129872\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938101\n mask_addr: 4294967295\nsign_in_count:\n- 127\n- 128\n 256 \N 200.68.150.53 0b55fec2-b011-44ce-b608-77de288ca2d9 2019-08-30 00:10:54.736315 13954 10 User \N \N 10 User \N update ---\nunique_session_id:\n- mAN-Quk8P1XQvx6WRXSh\n- yKoqsFKu5z_ifoz6nAta\n 257 \N 200.68.150.53 0b55fec2-b011-44ce-b608-77de288ca2d9 2019-08-30 00:10:54.749969 14157 394 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.200.88 036dfcef-4ad1-47b8-98fd-01f0db9c2190 2019-08-31 05:30:53.268356 13955 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-29 23:05:23.933706000 Z\n- &1 2019-08-29 23:44:35.843917000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-30 00:13:37.579716798 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938101\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938101\n mask_addr: 4294967295\nsign_in_count:\n- 523\n- 524\n 1048 \N 200.68.150.53 2873bc0a-feea-43cd-82d9-c40402e884df 2019-08-30 00:13:37.587399 13956 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MkacSqMQp4ayVkgsnSz4\n- 6Am3Y9dAArCu3K9p17XN\n 1049 \N 200.68.150.53 2873bc0a-feea-43cd-82d9-c40402e884df 2019-08-30 00:13:37.603766 13957 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-29 18:21:10.495556000 Z\n- &1 2019-08-29 20:10:24.900685000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-30 00:15:32.820725260 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117394\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938101\n mask_addr: 4294967295\nsign_in_count:\n- 614\n- 615\n 1230 \N 200.68.150.53 6cf2885c-0666-467d-98bf-ae6b5e46cdda 2019-08-30 00:15:32.83201 13958 3 User \N \N 3 User \N update ---\nunique_session_id:\n- zxPd9GF5yBFXHnv9zqzn\n- q6hHyJ257gSyzrqXxh4x\n 1231 \N 200.68.150.53 6cf2885c-0666-467d-98bf-ae6b5e46cdda 2019-08-30 00:15:32.853789 13959 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-08-29 23:08:40.292354000 Z\n- &1 2019-08-30 00:10:54.729479000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-30 00:28:21.195803839 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938101\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\nsign_in_count:\n- 128\n- 129\n 258 \N 187.149.71.28 c16acd0f-f3bb-4737-9f54-50d5aaf84d5f 2019-08-30 00:28:21.20299 13960 10 User \N \N 10 User \N update ---\nunique_session_id:\n- yKoqsFKu5z_ifoz6nAta\n- S_2yL4Pu--LBjdDUA3Gj\n 259 \N 187.149.71.28 c16acd0f-f3bb-4737-9f54-50d5aaf84d5f 2019-08-30 00:28:21.217231 13961 568 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.71.28 ec122771-e267-464a-9ec4-5fba8ffa6ad2 2019-08-30 01:06:01.799247 13962 121 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-08-29\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.71.28 2a8aeb35-eb39-47c2-a444-7987a4b12a73 2019-08-30 01:06:03.274131 13963 121 Transfer \N \N 10 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 10\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-29\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.71.28 5affb6bb-789c-4b6c-b69c-99ce1e756026 2019-08-30 01:06:24.771535 13964 325 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.71.28 5affb6bb-789c-4b6c-b69c-99ce1e756026 2019-08-30 01:06:24.789416 13965 997 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 390\namount: !ruby/object:BigDecimal 18:0.107055E4\ntax: !ruby/object:BigDecimal 18:0.6745E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1138E4\nstatus: 0\ndate_sale: 2019-08-29\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-418\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.71.28 0b979978-4736-4545-9196-99cc9b80af4b 2019-08-30 01:07:28.813153 13966 325 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.71.28 0b979978-4736-4545-9196-99cc9b80af4b 2019-08-30 01:07:28.841949 13967 804 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.71.28 0b979978-4736-4545-9196-99cc9b80af4b 2019-08-30 01:07:28.867914 13968 390 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 391\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 16\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.752E3\nphysical_cash: !ruby/object:BigDecimal 18:0.752E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.71.28 b022c774-606b-4679-873f-3b3f594c47d4 2019-08-30 01:07:46.624105 13969 391 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.71.28 b022c774-606b-4679-873f-3b3f594c47d4 2019-08-30 01:07:46.638351 13970 997 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.71.28 969df87b-2b5c-4932-98b9-2ca09aba2530 2019-08-30 01:07:49.207477 13971 1380 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 390\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1138E4\nmove_type: '1'\nsale_id: 997\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-418\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.115E4\nchange: !ruby/object:BigDecimal 18:0.12E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-418 187.149.71.28 969df87b-2b5c-4932-98b9-2ca09aba2530 2019-08-30 01:07:49.267339 13972 391 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 390\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.1638E4\namount_out: !ruby/object:BigDecimal 18:0.2E3\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.165E4\ncash_fund: !ruby/object:BigDecimal 18:0.514E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2164E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.71.28 fd7df210-25c4-4a01-abd7-ddb5e1a5484d 2019-08-30 01:16:49.12566 13973 390 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.71.28 fd7df210-25c4-4a01-abd7-ddb5e1a5484d 2019-08-30 01:16:49.137679 13974 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-29 23:44:35.843917000 Z\n- &1 2019-08-30 00:13:37.579716000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-30 03:04:07.416806772 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938101\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938101\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\nsign_in_count:\n- 524\n- 525\n 1050 \N 189.186.200.88 0b131b1b-f08d-437a-b0d0-ca76d87cc680 2019-08-30 03:04:07.448469 13975 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6Am3Y9dAArCu3K9p17XN\n- 3Lpvm4zo2_gvMnt3_msR\n 1051 \N 189.186.200.88 0b131b1b-f08d-437a-b0d0-ca76d87cc680 2019-08-30 03:04:07.474752 13976 12 User \N \N 4 User \N update ---\nstatus:\n- active\n- 2\n 534 El usuario ANABELLY GAXIOLA fue desactivado. 189.186.200.88 039daca4-8d5a-4ef0-a41f-4190ddb4e8d0 2019-08-30 03:04:35.670332 13977 13 User \N \N 4 User \N update --- {}\n 2 Usuario YARETZI ha sido modificado. 189.186.200.88 d3c419cf-1d3d-4b4c-aaeb-1f77b01ecaaf 2019-08-30 03:07:52.866956 13978 13 User \N \N 4 User \N update --- {}\n 3 Usuario YARETZI ha sido modificado. 189.186.200.88 56772088-8e22-45bd-86d0-56ff11ce908f 2019-08-30 03:09:04.947904 13979 20 User \N \N 4 User \N create ---\nuserid: YARETZINAJAR\nfirst_name: YARETZI\nlast_name: NAJAR\nusertype: C\nemail: yaretzinajar121@hotmail.com\nencrypted_password: "$2a$10$8Po5bWo.pwpB5OsF9FyCNOrYHP8/kr7sXHz6gqA3LZXzf27/YxnHi"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 2\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.186.200.88 6512507a-81e5-4d36-a20a-dfab9cda01a2 2019-08-30 03:09:58.375615 13980 690 Product \N \N 4 User \N create ---\nsku: PAN-690\nname: PNT-00124\ndescription: PANTALON NEGRO VALENTINE STP9824\nprice_base: !ruby/object:BigDecimal 18:0.29E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-690 fue creado. 189.186.200.88 4f8aa38c-33d1-4b97-95fc-4aa60ef593b6 2019-08-30 03:18:58.078377 13981 690 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000690'\n 2 \N 189.186.200.88 4f8aa38c-33d1-4b97-95fc-4aa60ef593b6 2019-08-30 03:18:58.123959 13982 690 Product \N \N 4 User \N update ---\nname:\n- PNT-00124\n- PNT-0013\n 3 El producto PAN-690 fue modificado. 189.186.200.88 df455196-7f71-4a0d-8bb0-630c3dff2207 2019-08-30 03:26:01.81461 13983 691 Product \N \N 4 User \N create ---\nsku: PAL-691\nname: PLZ-0012\ndescription: PALAZO VALENTINE NEGRO JP15082\nprice_base: !ruby/object:BigDecimal 18:0.49E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 9\nproduct_service_key: '01010101'\n 1 El producto PAL-691 fue creado. 189.186.200.88 aab24c8d-3ea5-45a9-be8a-01b84a49ebe1 2019-08-30 03:28:02.26538 13984 691 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000691'\n 2 \N 189.186.200.88 aab24c8d-3ea5-45a9-be8a-01b84a49ebe1 2019-08-30 03:28:02.292944 13985 692 Product \N \N 4 User \N create ---\nsku: PAL-692\nname: PLZ-0013\ndescription: PALAZO VALENTINE VERDE ST-15033\nprice_base: !ruby/object:BigDecimal 18:0.49E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 9\nproduct_service_key: '01010101'\n 1 El producto PAL-692 fue creado. 189.186.200.88 c1ad8d06-538a-4727-80c5-91ed4e7a534f 2019-08-30 03:30:54.77702 13986 692 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000692'\n 2 \N 189.186.200.88 c1ad8d06-538a-4727-80c5-91ed4e7a534f 2019-08-30 03:30:54.813669 13987 693 Product \N \N 4 User \N create ---\nsku: PAN-693\nname: PNT-0014\ndescription: "PANTALON VALENTINE NEGRO ST7188\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.31E3\nprice_sale: !ruby/object:BigDecimal 18:0.789E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-693 fue creado. 189.186.200.88 b99e8033-8350-4b24-9938-c7c1a614d7e8 2019-08-30 03:34:54.77102 13988 693 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000693'\n 2 \N 189.186.200.88 b99e8033-8350-4b24-9938-c7c1a614d7e8 2019-08-30 03:34:54.798905 13989 694 Product \N \N 4 User \N create ---\nsku: PAN-694\nname: PNT-0015\ndescription: PANTALON ROSA PALO VALENTINE P15026\nprice_base: !ruby/object:BigDecimal 18:0.31E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-694 fue creado. 189.186.200.88 353a6239-92b4-43a9-9993-5e2016ef4f60 2019-08-30 03:37:28.323876 13990 694 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000694'\n 2 \N 189.186.200.88 353a6239-92b4-43a9-9993-5e2016ef4f60 2019-08-30 03:37:28.351934 13991 695 Product \N \N 4 User \N create ---\nsku: PAL-695\nname: PLZ-0014\ndescription: "PALAZZO VALENTINE ST 10373 COLOR MAUVE\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.49E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 9\nproduct_service_key: '01010101'\n 1 El producto PAL-695 fue creado. 189.186.200.88 d779e2dc-2683-4cdf-97e7-000200895952 2019-08-30 03:41:20.819983 13992 695 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000695'\n 2 \N 189.186.200.88 d779e2dc-2683-4cdf-97e7-000200895952 2019-08-30 03:41:20.853439 13993 696 Product \N \N 4 User \N create ---\nsku: BLU-696\nname: BLS-0068\ndescription: "PANTIBLUSA VALENTINE ST 10423\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.27E3\nprice_sale: !ruby/object:BigDecimal 18:0.625E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-696 fue creado. 189.186.200.88 10b8e2b8-02ed-4c60-b264-9e9a72c6c958 2019-08-30 03:43:13.193787 13994 696 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000696'\n 2 \N 189.186.200.88 10b8e2b8-02ed-4c60-b264-9e9a72c6c958 2019-08-30 03:43:13.219837 13995 697 Product \N \N 4 User \N create ---\nsku: PAN-697\nname: PNT-0016\ndescription: "PANTALON VALENTINE SST 8079 NEGRO Y MAUVE\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.28E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-697 fue creado. 189.186.200.88 42e92cd0-11b7-42d1-b83c-633368b8c3b7 2019-08-30 03:45:34.904538 13996 697 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000697'\n 2 \N 189.186.200.88 42e92cd0-11b7-42d1-b83c-633368b8c3b7 2019-08-30 03:45:34.928925 14159 20 User \N \N 20 User \N update ---\nunique_session_id:\n- Yy67Su8xhnB-9n3qznr6\n- p5nkMwmTjmxrYD4DMrLT\n 5 \N 187.149.80.118 cf46adf8-07c0-4815-ad82-2dd4c7094359 2019-08-31 16:10:32.629477 13997 698 Product \N \N 4 User \N create ---\nsku: BLU-698\nname: BLS-0069\ndescription: "BLUSA BLANCA VALENTINE ST10358\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.33E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-698 fue creado. 189.186.200.88 5bf329bb-4b08-4f92-bd3c-97cb3d050c8b 2019-08-30 03:47:48.613019 13998 698 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000698'\n 2 \N 189.186.200.88 5bf329bb-4b08-4f92-bd3c-97cb3d050c8b 2019-08-30 03:47:48.640103 13999 131 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-10\namount: !ruby/object:BigDecimal 18:0.1956E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1956E5\nobservations: ''\npurchase_date: 2019-08-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-10 por $ 19560.0 MXN creada. 189.186.200.88 0aba33a8-cef0-49d4-8d34-317e7afc36df 2019-08-30 03:48:07.567091 14000 699 Product \N \N 4 User \N create ---\nsku: VES-699\nname: VST-0039\ndescription: "LATISTE COLORES CORTO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.56E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-699 fue creado. 189.186.200.88 54416530-9509-4ba4-8ef1-c700c4d4ecfb 2019-08-30 04:36:30.063151 14001 699 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000699'\n 2 \N 189.186.200.88 54416530-9509-4ba4-8ef1-c700c4d4ecfb 2019-08-30 04:36:30.091228 14002 700 Product \N \N 4 User \N create ---\nsku: VES-700\nname: VST-0048\ndescription: "LATISTE NEEGRO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.54E3\nprice_sale: !ruby/object:BigDecimal 18:0.1345E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: PHOTO-2019-08-29-20-59-01_2467_.jpg\ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-700 fue creado. 189.186.200.88 adee7731-f331-4e12-a192-6b4a42a2717b 2019-08-30 04:39:49.297422 14003 700 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000700'\n 2 \N 189.186.200.88 adee7731-f331-4e12-a192-6b4a42a2717b 2019-08-30 04:39:49.326306 14004 701 Product \N \N 4 User \N create ---\nsku: VES-701\nname: VST-0049\ndescription: LATISTE COLORES LARGO\nprice_base: !ruby/object:BigDecimal 18:0.65E3\nprice_sale: !ruby/object:BigDecimal 18:0.1549E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: PHOTO-2019-08-29-20-59-01_2469_.jpg\ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-701 fue creado. 189.186.200.88 50e9efc2-15a5-4e92-8890-3efca66d9695 2019-08-30 04:41:07.46031 14005 701 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000701'\n 2 \N 189.186.200.88 50e9efc2-15a5-4e92-8890-3efca66d9695 2019-08-30 04:41:07.488285 14006 702 Product \N \N 4 User \N create ---\nsku: JUM-702\nname: JMP-0003\ndescription: "LATISTE FLORES \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.79E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 1\nproduct_service_key: '01010101'\n 1 El producto JUM-702 fue creado. 189.186.200.88 3a33a111-66b3-4c17-8ad7-207e7d1ce1f2 2019-08-30 04:45:03.364003 14007 702 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000702'\n 2 \N 189.186.200.88 3a33a111-66b3-4c17-8ad7-207e7d1ce1f2 2019-08-30 04:45:03.400943 14008 132 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-11\namount: !ruby/object:BigDecimal 18:0.1524E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1524E5\nobservations: ''\npurchase_date: 2019-08-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-11 por $ 15240.0 MXN creada. 189.186.200.88 54ecc1c9-cb22-4f38-9a22-311e958011df 2019-08-30 04:45:25.196156 14009 699 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '699'\n is_parent: false\n sku: VES-699\n name: VST-0039\n description: "LATISTE COLORES CORTO\\r\\n"\n price_base: '560.0'\n price_sale: '1399.0'\n img_product: PHOTO-2019-08-29-20-59-02_2471_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000699'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-30 04:36:30.050945'\n updated_at: &12 2019-08-30 04:45:59.911472024 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '699'\n sku: VES-699\n name: VST-0039\n description: "LATISTE COLORES CORTO\\r\\n"\n price_base: '560.00'\n price_sale: '1399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-30 04:36:30.050945'\n updated_at: '2019-08-30 04:36:30.088453'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000699'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '699'\n type: *3\n value: 699\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-699\n type: *7\n value: VES-699\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0039\n type: *8\n value: VST-0039\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "LATISTE COLORES CORTO\\r\\n"\n type: *6\n value: "LATISTE COLORES CORTO\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '560.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.56E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1399E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-08-29-20-59-02_2471_.jpg\n type: *2\n value: PHOTO-2019-08-29-20-59-02_2471_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000699'\n type: *2\n value: '0000699'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-30 04:36:30.050945'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-08-29-20-59-02_2471_.jpg\n 3 El producto VES-699 fue modificado. 189.186.200.88 ad258bb2-7b12-4917-bbf3-18c7ced1d88b 2019-08-30 04:45:59.955688 14010 487 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.71E2\n- !ruby/object:BigDecimal 18:0.72E2\n 15 \N 189.186.200.88 db8224f4-a489-4b1e-a9c9-7cf047eb73bd 2019-08-30 04:49:03.430019 14011 122 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-08-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 189.186.200.88 73902cdc-1073-44dd-9fba-c9049b73036b 2019-08-30 04:52:42.582727 14012 123 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-08-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.200.88 ab70c4f9-3bd2-4b40-8ddb-e7652340df20 2019-08-30 04:54:07.947801 14013 124 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-08-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.200.88 f6c7feec-44dd-4e07-8c33-38e52bad06a1 2019-08-30 04:56:43.368095 14014 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-08-29 14:37:22.187077000 Z\n- &1 2019-08-29 14:47:35.519592000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-30 05:03:19.196055733 Z\nsign_in_count:\n- 6\n- 7\n 14 \N 189.186.200.88 2aca192f-5049-4524-9926-d27da21b600c 2019-08-30 05:03:19.20142 14015 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 3PCHLa6bBRAqYmh2waNh\n- MDPhDSLyGmp9-m2ceoTp\n 15 \N 189.186.200.88 2aca192f-5049-4524-9926-d27da21b600c 2019-08-30 05:03:19.213998 14016 120 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-29\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.200.88 087e645e-bf4a-4f36-a207-01a2c2b5c597 2019-08-30 05:03:35.236896 14017 842 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 547\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 087e645e-bf4a-4f36-a207-01a2c2b5c597 2019-08-30 05:03:35.269298 14018 843 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 265\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 087e645e-bf4a-4f36-a207-01a2c2b5c597 2019-08-30 05:03:35.297964 14019 844 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 271\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 087e645e-bf4a-4f36-a207-01a2c2b5c597 2019-08-30 05:03:35.325242 14020 845 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 268\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 087e645e-bf4a-4f36-a207-01a2c2b5c597 2019-08-30 05:03:35.351452 14021 846 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 270\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 087e645e-bf4a-4f36-a207-01a2c2b5c597 2019-08-30 05:03:35.383208 14022 847 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 258\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 087e645e-bf4a-4f36-a207-01a2c2b5c597 2019-08-30 05:03:35.413279 14023 848 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 484\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.12E2\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 087e645e-bf4a-4f36-a207-01a2c2b5c597 2019-08-30 05:03:35.439059 14024 849 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 273\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 087e645e-bf4a-4f36-a207-01a2c2b5c597 2019-08-30 05:03:35.462347 14025 850 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 262\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 087e645e-bf4a-4f36-a207-01a2c2b5c597 2019-08-30 05:03:35.484901 14026 851 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 261\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 087e645e-bf4a-4f36-a207-01a2c2b5c597 2019-08-30 05:03:35.50789 14027 852 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 264\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 087e645e-bf4a-4f36-a207-01a2c2b5c597 2019-08-30 05:03:35.529524 14028 853 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 274\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 087e645e-bf4a-4f36-a207-01a2c2b5c597 2019-08-30 05:03:35.552115 14029 854 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 259\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 087e645e-bf4a-4f36-a207-01a2c2b5c597 2019-08-30 05:03:35.57365 14030 855 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 269\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E2\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 087e645e-bf4a-4f36-a207-01a2c2b5c597 2019-08-30 05:03:35.597298 14031 124 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-29\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.200.88 e27ef597-f657-4364-a3fb-1fb0618d03c1 2019-08-30 05:03:43.686733 14032 856 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 698\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 e27ef597-f657-4364-a3fb-1fb0618d03c1 2019-08-30 05:03:43.705704 14033 857 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 701\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 e27ef597-f657-4364-a3fb-1fb0618d03c1 2019-08-30 05:03:43.725201 14034 858 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 702\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 e27ef597-f657-4364-a3fb-1fb0618d03c1 2019-08-30 05:03:43.744773 14035 859 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 697\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 e27ef597-f657-4364-a3fb-1fb0618d03c1 2019-08-30 05:03:43.765368 14036 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-08-30 00:10:54.729479000 Z\n- &1 2019-08-30 00:28:21.195803000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-30 05:04:02.939592424 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938101\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\nsign_in_count:\n- 129\n- 130\n 260 \N 189.186.200.88 0cb0dbc6-9764-4785-bc6f-27c9bc2550e4 2019-08-30 05:04:02.94721 14037 10 User \N \N 10 User \N update ---\nunique_session_id:\n- S_2yL4Pu--LBjdDUA3Gj\n- PV3vgbxx4gkaj7mrdHFe\n 261 \N 189.186.200.88 0cb0dbc6-9764-4785-bc6f-27c9bc2550e4 2019-08-30 05:04:02.961991 14038 122 Transfer \N \N 10 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 10\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-29\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 189.186.200.88 2af9c8a1-ffe3-4814-9e9c-b98e5840e7a1 2019-08-30 05:04:31.48293 14039 860 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 693\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 2af9c8a1-ffe3-4814-9e9c-b98e5840e7a1 2019-08-30 05:04:31.510353 14040 861 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 694\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 2af9c8a1-ffe3-4814-9e9c-b98e5840e7a1 2019-08-30 05:04:31.536012 14041 862 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 699\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 2af9c8a1-ffe3-4814-9e9c-b98e5840e7a1 2019-08-30 05:04:31.563158 14042 863 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 700\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 2af9c8a1-ffe3-4814-9e9c-b98e5840e7a1 2019-08-30 05:04:31.590471 14043 864 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 696\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 2af9c8a1-ffe3-4814-9e9c-b98e5840e7a1 2019-08-30 05:04:31.618805 14044 865 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 695\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 2af9c8a1-ffe3-4814-9e9c-b98e5840e7a1 2019-08-30 05:04:31.639574 14045 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-08-19 18:01:15.221765000 Z\n- &1 2019-08-22 17:11:02.207840000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-30 05:04:52.788199185 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\nsign_in_count:\n- 76\n- 77\n 154 \N 189.186.200.88 62c10247-9ca1-4beb-8800-8a479c9ee683 2019-08-30 05:04:52.795024 14046 9 User \N \N 9 User \N update ---\nunique_session_id:\n- a3oscy-6zqkaS822AcCo\n- d_F-QkLmzkH9hbdSUADg\n 155 \N 189.186.200.88 62c10247-9ca1-4beb-8800-8a479c9ee683 2019-08-30 05:04:52.809178 14047 123 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-29\n 2 Se dio entrada a traspaso de Almacen central a SUO 189.186.200.88 e045c25f-511d-4ffe-b474-4427c3f8e1bf 2019-08-30 05:05:08.264439 14048 866 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 692\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 e045c25f-511d-4ffe-b474-4427c3f8e1bf 2019-08-30 05:05:08.283695 14049 867 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 691\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 e045c25f-511d-4ffe-b474-4427c3f8e1bf 2019-08-30 05:05:08.304034 14050 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-30 00:13:37.579716000 Z\n- &1 2019-08-30 03:04:07.416806000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-30 05:05:42.048869650 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938101\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\nsign_in_count:\n- 525\n- 526\n 1052 \N 189.186.200.88 9cb2fe80-8382-4662-8fb0-3b350af08f9a 2019-08-30 05:05:42.057405 14051 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3Lpvm4zo2_gvMnt3_msR\n- bYjCg7wDXb4veyFgs3gE\n 1053 \N 189.186.200.88 9cb2fe80-8382-4662-8fb0-3b350af08f9a 2019-08-30 05:05:42.076914 14052 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-30 03:04:07.416806000 Z\n- &1 2019-08-30 05:05:42.048869000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-30 05:24:04.493639829 Z\nsign_in_count:\n- 526\n- 527\n 1054 \N 189.186.200.88 f5d11b2e-4708-4ceb-8087-1106dd14f0ae 2019-08-30 05:24:04.499175 14053 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bYjCg7wDXb4veyFgs3gE\n- HUa2-BmsTWHxc_qaVQnJ\n 1055 \N 189.186.200.88 f5d11b2e-4708-4ceb-8087-1106dd14f0ae 2019-08-30 05:24:04.511463 14054 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-30 05:05:42.048869000 Z\n- &1 2019-08-30 05:24:04.493639000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-30 15:14:38.090757207 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938114\n mask_addr: 4294967295\nsign_in_count:\n- 527\n- 528\n 1056 \N 200.68.150.66 9968134e-d560-4c2d-b869-22a2f7c000ab 2019-08-30 15:14:38.130144 14055 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HUa2-BmsTWHxc_qaVQnJ\n- LyhB7NgRkwYsRYNQ37kS\n 1057 \N 200.68.150.66 9968134e-d560-4c2d-b869-22a2f7c000ab 2019-08-30 15:14:38.158982 14056 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 17:11:02.207840000 Z\n- &1 2019-08-30 05:04:52.788199000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-30 15:16:05.404820681 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938114\n mask_addr: 4294967295\nsign_in_count:\n- 77\n- 78\n 156 \N 200.68.150.66 fe707e1c-2a9b-4107-b23b-01011cb5fd65 2019-08-30 15:16:05.412722 14057 9 User \N \N 9 User \N update ---\nunique_session_id:\n- d_F-QkLmzkH9hbdSUADg\n- cCX76yNu1Lz6_QvPuRmf\n 157 \N 200.68.150.66 fe707e1c-2a9b-4107-b23b-01011cb5fd65 2019-08-30 15:16:05.428113 14058 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-29 20:10:24.900685000 Z\n- &1 2019-08-30 00:15:32.820725000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-30 16:18:20.737500729 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938101\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938101\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\nsign_in_count:\n- 615\n- 616\n 1232 \N 187.149.71.28 9f5e8bb0-9f1e-44ed-baa6-b5107047ede5 2019-08-30 16:18:20.792447 14059 3 User \N \N 3 User \N update ---\nunique_session_id:\n- q6hHyJ257gSyzrqXxh4x\n- i9adtf8cxCmRxtoamxgL\n 1233 \N 187.149.71.28 9f5e8bb0-9f1e-44ed-baa6-b5107047ede5 2019-08-30 16:18:20.812016 14060 392 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.52E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 520.0 187.149.71.28 a860e919-b5c2-472a-8264-66349671ad8e 2019-08-30 16:20:53.603075 14061 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-28 16:03:02.536817000 Z\n- &1 2019-08-29 16:15:49.437355000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-30 17:04:11.863608594 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147129872\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117394\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117394\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\nsign_in_count:\n- 299\n- 300\n 603 \N 187.149.71.28 88e1ee24-7555-459a-a3f3-0cabe7d2af3f 2019-08-30 17:04:11.877868 14062 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 1sQBenWthZ5vrei81MkM\n- ciu71_TTXsgpt3xEyH5T\n 604 \N 187.149.71.28 88e1ee24-7555-459a-a3f3-0cabe7d2af3f 2019-08-30 17:04:11.900247 14226 756 AvailableProduct \N \N 20 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 187.149.80.118 9e8aceb4-89b8-449a-9001-f8dbfd64b4a8 2019-08-31 21:57:39.331296 14063 393 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.752E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 752.0 187.149.71.28 9bc6daa6-7cb2-4593-ad93-9dcaed939f90 2019-08-30 17:04:38.146176 14064 998 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 393\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-08-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-577\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.71.28 89f474a8-9eb9-439b-b5bb-e400febb93cd 2019-08-30 17:04:54.623179 14065 784 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 5 \N 187.149.71.28 89f474a8-9eb9-439b-b5bb-e400febb93cd 2019-08-30 17:04:54.657407 14066 998 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.71.28 ef187234-ee8a-4f25-a3b1-f999ceaffa7f 2019-08-30 17:05:53.790322 14067 1381 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 393\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.869E3\nmove_type: '1'\nsale_id: 998\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-577\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.869E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-577 187.149.71.28 ef187234-ee8a-4f25-a3b1-f999ceaffa7f 2019-08-30 17:05:53.814724 14068 1382 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 393\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 875\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.399E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-498 187.149.71.28 1dabd74f-b187-4062-8386-3d61c7a84ac3 2019-08-30 17:18:17.089543 14069 875 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.71.28 cbc68282-34f6-4411-840c-c410f6b7fd06 2019-08-30 17:18:24.554084 14070 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-30 00:15:32.820725000 Z\n- &1 2019-08-30 16:18:20.737500000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-30 18:08:21.325909858 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938101\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\nsign_in_count:\n- 616\n- 617\n 1234 \N 187.149.71.28 dec3c26e-d6d7-4075-9918-3db713c403a5 2019-08-30 18:08:21.336501 14071 3 User \N \N 3 User \N update ---\nunique_session_id:\n- i9adtf8cxCmRxtoamxgL\n- TNdDQri54Dt4sB5Qgx1W\n 1235 \N 187.149.71.28 dec3c26e-d6d7-4075-9918-3db713c403a5 2019-08-30 18:08:21.356634 14072 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-08-22 23:09:55.131995000 Z\n- &1 2019-08-24 17:09:29.265229000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-30 18:09:16.342682459 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\nsign_in_count:\n- 68\n- 69\n 138 \N 187.149.71.28 eeb8efba-64b8-4bd4-b578-fc3060736aae 2019-08-30 18:09:16.350116 14073 1 User \N \N 1 User \N update ---\nunique_session_id:\n- PacG5hdDR6YMMgHXGfex\n- 3fPU_KRwVywsBvxj1w-M\n 139 \N 187.149.71.28 eeb8efba-64b8-4bd4-b578-fc3060736aae 2019-08-30 18:09:16.366065 14074 20 User \N \N 20 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-08-30 19:07:37.479658677 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 187.149.71.28 aa74da2e-fe4a-4025-97b2-9b55ede1568a 2019-08-30 19:07:37.491455 14075 20 User \N \N 20 User \N update ---\nunique_session_id:\n- \n- Yy67Su8xhnB-9n3qznr6\n 3 \N 187.149.71.28 aa74da2e-fe4a-4025-97b2-9b55ede1568a 2019-08-30 19:07:37.513099 14076 1383 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 48\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 171\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.71.28 88e09496-1fa2-4855-b590-294481c43f88 2019-08-30 20:21:32.953785 14077 1383 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 48\n- 393\n 2 movimiento de efectivo por venta con folio PV2-V-74 187.149.71.28 88e09496-1fa2-4855-b590-294481c43f88 2019-08-30 20:21:32.992122 14078 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-30 05:24:04.493639000 Z\n- &1 2019-08-30 15:14:38.090757000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-30 21:23:21.639136578 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938114\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938114\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946184\n mask_addr: 4294967295\nsign_in_count:\n- 528\n- 529\n 1058 \N 200.68.181.200 14780a5b-fa69-4e09-8cdf-9d3f4abbbeae 2019-08-30 21:23:21.648802 14079 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LyhB7NgRkwYsRYNQ37kS\n- zuS_MfZYCg-JUFdsR48c\n 1059 \N 200.68.181.200 14780a5b-fa69-4e09-8cdf-9d3f4abbbeae 2019-08-30 21:23:21.670605 14080 999 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 393\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-08-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-578\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.80.118 6f2cbe4d-bf2b-4420-b193-835de0cca25b 2019-08-30 22:41:06.708143 14081 527 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.80.118 6f2cbe4d-bf2b-4420-b193-835de0cca25b 2019-08-30 22:41:06.73726 14082 999 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.80.118 f36ef7c9-aca8-4238-a013-e86cc92f94c5 2019-08-30 22:41:12.47185 14083 1384 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 393\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 999\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-578\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-578 187.149.80.118 f36ef7c9-aca8-4238-a013-e86cc92f94c5 2019-08-30 22:41:12.501044 14084 170 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 393\nquantity: !ruby/object:BigDecimal 18:0.62E3\nstatus: 1\nobservations: sueldo Yaretzi $720-$100 que se adelanto\nexpense_date: 2019-08-30\nexpense_code: PV1-E-133\n 1 Egreso por 620.0 registrado 187.149.80.118 ee7f53f3-c74c-4103-b172-87c1a3df205a 2019-08-30 22:49:30.845809 14085 1385 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 393\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.62E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 170\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.80.118 ee7f53f3-c74c-4103-b172-87c1a3df205a 2019-08-30 22:49:30.909264 14086 171 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 393\nquantity: !ruby/object:BigDecimal 18:0.15E4\nstatus: 1\nobservations: 'SAMANTHA '\nexpense_date: 2019-08-30\nexpense_code: PV1-E-134\n 1 Egreso por 1500.0 registrado 187.149.80.118 48e046f9-f08f-4435-aff0-8801c19cf64d 2019-08-30 23:32:42.688945 14087 1386 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 393\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 171\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.80.118 48e046f9-f08f-4435-aff0-8801c19cf64d 2019-08-30 23:32:42.712236 14088 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-08-30 00:28:21.195803000 Z\n- &1 2019-08-30 05:04:02.939592000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-30 23:38:01.678147212 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124854\n mask_addr: 4294967295\nsign_in_count:\n- 130\n- 131\n 262 \N 187.149.80.118 ba55fa9f-240d-440b-88ec-1af6884c6793 2019-08-30 23:38:01.694149 14089 10 User \N \N 10 User \N update ---\nunique_session_id:\n- PV3vgbxx4gkaj7mrdHFe\n- 3b3Y6Ui8nNjfuMB-eUbY\n 263 \N 187.149.80.118 ba55fa9f-240d-440b-88ec-1af6884c6793 2019-08-30 23:38:01.721169 14090 1000 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 392\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2019-08-30\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-419\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.80.118 d0e65b16-132f-4d9b-b9d0-4bdbb437fa7a 2019-08-30 23:41:59.263088 14091 800 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.80.118 d0e65b16-132f-4d9b-b9d0-4bdbb437fa7a 2019-08-30 23:41:59.303023 14092 806 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 3 \N 187.149.80.118 d0e65b16-132f-4d9b-b9d0-4bdbb437fa7a 2019-08-30 23:41:59.330634 14093 1000 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.80.118 ab8c2be1-1383-4f26-b1a3-cb8f123191ce 2019-08-30 23:42:48.104231 14094 1387 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 392\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1398E4\nmove_type: '1'\nsale_id: 1000\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-419\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.102E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-419 187.149.80.118 ab8c2be1-1383-4f26-b1a3-cb8f123191ce 2019-08-30 23:42:48.131286 14095 392 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 393\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2467E4\namount_out: !ruby/object:BigDecimal 18:0.212E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1099E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1099E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.80.118 ac86f5a4-0d58-4c54-ba83-43df8d64a689 2019-08-31 00:56:13.438269 14096 393 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.80.118 ac86f5a4-0d58-4c54-ba83-43df8d64a689 2019-08-31 00:56:13.459788 14097 393 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 392\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.1398E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.415E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1915E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.80.118 00bc2ce6-b5ec-4dc7-a8db-23794130ba18 2019-08-31 00:58:03.762972 14098 392 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.80.118 00bc2ce6-b5ec-4dc7-a8db-23794130ba18 2019-08-31 00:58:03.778078 14099 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-08-29 14:47:35.519592000 Z\n- &1 2019-08-30 05:03:19.196055000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-31 03:43:09.814146784 Z\nsign_in_count:\n- 7\n- 8\n 16 \N 189.186.200.88 12b7ee2a-9cdc-4d3e-9af2-3f5bb4a73c48 2019-08-31 03:43:09.823941 14100 18 User \N \N 18 User \N update ---\nunique_session_id:\n- MDPhDSLyGmp9-m2ceoTp\n- v8vaLrjzLiY_h2-KUWMC\n 17 \N 189.186.200.88 12b7ee2a-9cdc-4d3e-9af2-3f5bb4a73c48 2019-08-31 03:43:09.868232 14101 394 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1363E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1363.0 189.186.200.88 ca7d869a-8a82-4f47-a991-d34e9a19713e 2019-08-31 03:43:26.701156 14102 158 Customer \N \N 18 User \N create ---\nnick_name: BRENDA\nphone: "(667) 427-7570"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BRENDA fue registrado. 189.186.200.88 e2bb9f02-9088-4f5f-bda7-a244a4526dfb 2019-08-31 03:44:12.697363 14103 1001 Sale \N \N 18 User \N create ---\ncustomer_id: 158\nuser_id: 18\nopen_cash_register_id: 394\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2019-08-30\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-2\nexpiration_date: 2019-10-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.200.88 206fb07e-b2fc-42b3-8a0e-897dba4869ce 2019-08-31 03:44:55.924872 14104 835 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.200.88 206fb07e-b2fc-42b3-8a0e-897dba4869ce 2019-08-31 03:44:55.955854 14105 1388 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 394\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1001\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-2\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-2 189.186.200.88 5aba3173-d3b4-4706-a480-3da6c2f8ea4c 2019-08-31 03:45:07.58358 14106 1001 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.200.88 66a12698-8de3-4df8-b765-1269f5790a69 2019-08-31 03:45:39.701374 14107 159 Customer \N \N 18 User \N create ---\nnick_name: JAZMIN CEBREROS\nphone: "(667) 189-9615"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JAZMIN CEBREROS fue registrado. 189.186.200.88 67c0c7c6-d503-4a42-a062-ce036d0c4000 2019-08-31 03:46:21.798673 14108 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-30 15:14:38.090757000 Z\n- &1 2019-08-30 21:23:21.639136000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-31 03:47:46.584188131 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938114\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946184\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946184\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\nsign_in_count:\n- 529\n- 530\n 1060 \N 189.186.200.88 f6b34c38-5b45-4d99-8840-0c3660ff1aa0 2019-08-31 03:47:46.591704 14109 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zuS_MfZYCg-JUFdsR48c\n- X8NZUeorSCj-GZWnJ7bn\n 1061 \N 189.186.200.88 f6b34c38-5b45-4d99-8840-0c3660ff1aa0 2019-08-31 03:47:46.6107 14110 862 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 2 \N 189.186.200.88 4811d0e9-ae83-4475-8fd1-5a1f5613c54e 2019-08-31 03:48:42.010628 14111 862 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.200.88 5d385e28-d1b2-42a5-9cd5-bdabcd63663f 2019-08-31 03:48:45.450893 14112 125 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-08-30\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.200.88 9b52b954-db24-4c62-881d-220dce23a248 2019-08-31 03:48:48.309865 14113 863 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 2 \N 189.186.200.88 43dc5ab8-4e67-4fec-8912-a1202f5aeb9f 2019-08-31 03:50:01.324005 14114 863 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.200.88 6e9af681-ca4e-46ac-9a3c-6478793d34fb 2019-08-31 03:50:06.094248 14115 126 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-08-30\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.200.88 3904b571-3044-4e77-94de-0a0a1908acad 2019-08-31 03:50:07.063049 14116 127 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-08-30\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 189.186.200.88 6f323e79-38e2-4f68-9c6b-a73512cb2e3a 2019-08-31 03:51:46.455043 14117 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-08-30 05:03:19.196055000 Z\n- &1 2019-08-31 03:43:09.814146000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-31 03:52:09.255288879 Z\nsign_in_count:\n- 8\n- 9\n 18 \N 189.186.200.88 f483aabf-a6ca-48bb-85b8-e90632d1b7d0 2019-08-31 03:52:09.260821 14118 18 User \N \N 18 User \N update ---\nunique_session_id:\n- v8vaLrjzLiY_h2-KUWMC\n- UTToPrXUZ5zoYJ6663cm\n 19 \N 189.186.200.88 f483aabf-a6ca-48bb-85b8-e90632d1b7d0 2019-08-31 03:52:09.274915 14119 125 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-30\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.200.88 3bcdd935-6841-40c5-afba-ad22c2f8b070 2019-08-31 03:52:19.910006 14120 868 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 699\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 3bcdd935-6841-40c5-afba-ad22c2f8b070 2019-08-31 03:52:19.933369 14121 126 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-30\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.200.88 67093e33-6c88-44e0-8788-ba05e0bc7713 2019-08-31 03:52:29.072419 14122 869 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 700\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 67093e33-6c88-44e0-8788-ba05e0bc7713 2019-08-31 03:52:29.09348 14123 1002 Sale \N \N 18 User \N create ---\ncustomer_id: 159\nuser_id: 18\nopen_cash_register_id: 394\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-08-30\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-3\nexpiration_date: 2019-10-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.200.88 0e86ffd5-33f5-4dbb-b90d-c360231db6c0 2019-08-31 03:53:28.05848 14124 868 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.200.88 0e86ffd5-33f5-4dbb-b90d-c360231db6c0 2019-08-31 03:53:28.08967 14125 1389 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 394\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1002\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-3\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-3 189.186.200.88 3516bd94-b7e8-4963-8b3b-53a867ab0dd8 2019-08-31 03:53:38.332862 14126 1002 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.200.88 88f2e06a-04a8-4ae1-8d70-8e65f74afc11 2019-08-31 03:53:49.221505 14127 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-30 21:23:21.639136000 Z\n- &1 2019-08-31 03:47:46.584188000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-31 04:00:56.169448395 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946184\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\nsign_in_count:\n- 530\n- 531\n 1062 \N 189.186.200.88 81d8da90-73dc-40bc-aeb5-e5d4a99ae193 2019-08-31 04:00:56.178595 14128 4 User \N \N 4 User \N update ---\nunique_session_id:\n- X8NZUeorSCj-GZWnJ7bn\n- "-oqTKLNtzxxMdumT8ZHd"\n 1063 \N 189.186.200.88 81d8da90-73dc-40bc-aeb5-e5d4a99ae193 2019-08-31 04:00:56.199545 14129 128 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-08-30\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.200.88 c6bb3f20-fefb-406e-b697-6518702977c5 2019-08-31 04:16:57.199553 14158 20 User \N \N 20 User \N update ---\ncurrent_sign_in_at:\n- 2019-08-30 19:07:37.479658000 Z\n- 2019-08-31 16:10:32.575863107 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124854\n mask_addr: 4294967295\nsign_in_count:\n- 1\n- 2\n 4 \N 187.149.80.118 cf46adf8-07c0-4815-ad82-2dd4c7094359 2019-08-31 16:10:32.605033 14130 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-08-30 05:04:02.939592000 Z\n- &1 2019-08-30 23:38:01.678147000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-31 04:20:12.009827417 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124854\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124854\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\nsign_in_count:\n- 131\n- 132\n 264 \N 189.186.200.88 88a327cf-f0d5-4018-9646-e3a12ae538df 2019-08-31 04:20:12.01764 14131 10 User \N \N 10 User \N update ---\nunique_session_id:\n- 3b3Y6Ui8nNjfuMB-eUbY\n- KWRauzJDj2z_CorQ1E32\n 265 \N 189.186.200.88 88a327cf-f0d5-4018-9646-e3a12ae538df 2019-08-31 04:20:12.033225 14132 127 Transfer \N \N 10 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 10\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-30\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 189.186.200.88 ac65a23c-acad-4dac-b7a4-0510f75d2175 2019-08-31 04:20:35.041276 14133 870 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 677\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 ac65a23c-acad-4dac-b7a4-0510f75d2175 2019-08-31 04:20:35.062489 14134 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 03:43:09.814146000 Z\n- &1 2019-08-31 03:52:09.255288000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-31 04:20:48.961351206 Z\nsign_in_count:\n- 9\n- 10\n 20 \N 189.186.200.88 d8a753c7-031c-46b4-aac2-74d0f246ac82 2019-08-31 04:20:48.96693 14135 18 User \N \N 18 User \N update ---\nunique_session_id:\n- UTToPrXUZ5zoYJ6663cm\n- EhhurrNp9mzY7HWZUHu_\n 21 \N 189.186.200.88 d8a753c7-031c-46b4-aac2-74d0f246ac82 2019-08-31 04:20:48.978908 14136 128 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-30\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.200.88 79c98b1e-61e6-4331-9bd1-d80c4a85e456 2019-08-31 04:21:11.821698 14137 871 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 688\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 79c98b1e-61e6-4331-9bd1-d80c4a85e456 2019-08-31 04:21:11.849973 14138 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 03:47:46.584188000 Z\n- &1 2019-08-31 04:00:56.169448000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-31 04:21:55.150488182 Z\nsign_in_count:\n- 531\n- 532\n 1064 \N 189.186.200.88 abe7272b-78ab-4343-9eb2-793a4cfdb450 2019-08-31 04:21:55.156257 14139 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-oqTKLNtzxxMdumT8ZHd"\n- zx3s8_XzmW-mmb5zro5p\n 1065 \N 189.186.200.88 abe7272b-78ab-4343-9eb2-793a4cfdb450 2019-08-31 04:21:55.169583 14140 677 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.7E3\n- !ruby/object:BigDecimal 18:0.699E3\n 3 El producto BLU-677 fue modificado. 189.186.200.88 2fa7c179-e09b-473b-8250-48b34675c8e2 2019-08-31 04:26:14.046169 14141 129 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-08-30\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.200.88 def000af-a960-4e0b-bcd3-48f22deeb1cd 2019-08-31 04:58:41.336891 14142 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-08-30 05:04:52.788199000 Z\n- &1 2019-08-30 15:16:05.404820000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-31 05:00:00.195840340 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938114\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938114\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\nsign_in_count:\n- 78\n- 79\n 158 \N 189.186.200.88 1e2d8f63-1b52-4383-bbfc-ca0b29fe1260 2019-08-31 05:00:00.205677 14143 9 User \N \N 9 User \N update ---\nunique_session_id:\n- cCX76yNu1Lz6_QvPuRmf\n- LZkWJiVuP6yN3BzpPaUv\n 159 \N 189.186.200.88 1e2d8f63-1b52-4383-bbfc-ca0b29fe1260 2019-08-31 05:00:00.224536 14144 129 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-30\n 2 Se dio entrada a traspaso de Almacen central a SUO 189.186.200.88 0690696f-4b44-4c8e-9c49-3a689f3283f6 2019-08-31 05:01:05.133174 14145 872 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 690\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.200.88 0690696f-4b44-4c8e-9c49-3a689f3283f6 2019-08-31 05:01:05.156047 14146 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 04:00:56.169448000 Z\n- &1 2019-08-31 04:21:55.150488000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-31 05:02:29.887838743 Z\nsign_in_count:\n- 532\n- 533\n 1066 \N 189.186.200.88 3eb73e7e-a7ef-4890-9e8b-2041033d9d4c 2019-08-31 05:02:29.893345 14147 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zx3s8_XzmW-mmb5zro5p\n- KcRS4ra3EShGvQT7JS_p\n 1067 \N 189.186.200.88 3eb73e7e-a7ef-4890-9e8b-2041033d9d4c 2019-08-31 05:02:29.90652 14148 691 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '691'\n is_parent: false\n sku: PAL-691\n name: PLZ-0012\n description: PALAZO VALENTINE NEGRO JP15082\n price_base: '490.0'\n price_sale: '1299.0'\n img_product: PHOTO-2019-08-12-23-19-47_2546_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '9'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000691'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-30 03:28:02.251451'\n updated_at: &12 2019-08-31 05:09:22.567105351 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '691'\n sku: PAL-691\n name: PLZ-0012\n description: PALAZO VALENTINE NEGRO JP15082\n price_base: '490.00'\n price_sale: '1299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-30 03:28:02.251451'\n updated_at: '2019-08-30 03:28:02.290281'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000691'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '9'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '691'\n type: *3\n value: 691\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAL-691\n type: *7\n value: PAL-691\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PLZ-0012\n type: *8\n value: PLZ-0012\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PALAZO VALENTINE NEGRO JP15082\n type: *6\n value: PALAZO VALENTINE NEGRO JP15082\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '490.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.49E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1299E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-08-12-23-19-47_2546_.jpg\n type: *2\n value: PHOTO-2019-08-12-23-19-47_2546_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '9'\n type: *3\n value: 9\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000691'\n type: *2\n value: '0000691'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-30 03:28:02.251451'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-08-12-23-19-47_2546_.jpg\n 3 El producto PAL-691 fue modificado. 189.186.200.88 a6fe81ea-2b52-4791-b7ac-35c992dfc77c 2019-08-31 05:09:22.617166 14149 691 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '691'\n is_parent: false\n sku: PAL-691\n name: PLZ-0012\n description: PALAZO VALENTINE NEGRO JP15082\n price_base: '490.0'\n price_sale: '1299.0'\n img_product: PHOTO-2019-08-12-23-19-47_2546_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '9'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000691'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-30 03:28:02.251451'\n updated_at: &12 2019-08-31 05:09:31.437516060 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '691'\n sku: PAL-691\n name: PLZ-0012\n description: PALAZO VALENTINE NEGRO JP15082\n price_base: '490.00'\n price_sale: '1299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-30 03:28:02.251451'\n updated_at: '2019-08-31 05:09:22.567105'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000691'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: PHOTO-2019-08-12-23-19-47_2546_.jpg\n category_id: '9'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '691'\n type: *3\n value: 691\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAL-691\n type: *7\n value: PAL-691\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PLZ-0012\n type: *8\n value: PLZ-0012\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PALAZO VALENTINE NEGRO JP15082\n type: *6\n value: PALAZO VALENTINE NEGRO JP15082\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '490.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.49E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1299E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-08-12-23-19-47_2546_.jpg\n type: *2\n value: PHOTO-2019-08-12-23-19-47_2546_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '9'\n type: *3\n value: 9\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000691'\n type: *2\n value: '0000691'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-30 03:28:02.251451'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/PHOTO-2019-08-12-23-19-47_2546_.jpg"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader51707100\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_PHOTO-2019-08-12-23-19-47_2546_.jpg"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader51700900\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_PHOTO-2019-08-12-23-19-47_2546_.jpg"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader51687660\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_PHOTO-2019-08-12-23-19-47_2546_.jpg"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- PHOTO-2019-08-12-23-19-47_2546_.jpg\n 4 El producto PAL-691 fue modificado. 189.186.200.88 87dd85fd-fe18-454e-8908-33f550522d58 2019-08-31 05:09:31.490257 14150 692 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '692'\n is_parent: false\n sku: PAL-692\n name: PLZ-0013\n description: PALAZO VALENTINE VERDE ST-15033\n price_base: '490.0'\n price_sale: '1299.0'\n img_product: PHOTO-2019-08-12-23-19-48_2548_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '9'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000692'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-30 03:30:54.764622'\n updated_at: &12 2019-08-31 05:12:18.734956721 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '692'\n sku: PAL-692\n name: PLZ-0013\n description: PALAZO VALENTINE VERDE ST-15033\n price_base: '490.00'\n price_sale: '1299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-30 03:30:54.764622'\n updated_at: '2019-08-30 03:30:54.809547'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000692'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '9'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '692'\n type: *3\n value: 692\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAL-692\n type: *7\n value: PAL-692\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PLZ-0013\n type: *8\n value: PLZ-0013\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PALAZO VALENTINE VERDE ST-15033\n type: *6\n value: PALAZO VALENTINE VERDE ST-15033\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '490.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.49E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1299E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-08-12-23-19-48_2548_.jpg\n type: *2\n value: PHOTO-2019-08-12-23-19-48_2548_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '9'\n type: *3\n value: 9\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000692'\n type: *2\n value: '0000692'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-30 03:30:54.764622'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-08-12-23-19-48_2548_.jpg\n 3 El producto PAL-692 fue modificado. 189.186.200.88 38d40771-8194-4c8b-97fc-ec0f1918bbd5 2019-08-31 05:12:18.775518 14151 695 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '695'\n is_parent: false\n sku: PAL-695\n name: PLZ-0014\n description: "PALAZZO VALENTINE ST 10373 COLOR MAUVE\\r\\n"\n price_base: '490.0'\n price_sale: '1299.0'\n img_product: PHOTO-2019-08-12-23-19-49_2552_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '9'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000695'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-30 03:41:20.801413'\n updated_at: &12 2019-08-31 05:14:19.638683810 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '695'\n sku: PAL-695\n name: PLZ-0014\n description: "PALAZZO VALENTINE ST 10373 COLOR MAUVE\\r\\n"\n price_base: '490.00'\n price_sale: '1299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-30 03:41:20.801413'\n updated_at: '2019-08-30 03:41:20.850626'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000695'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '9'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '695'\n type: *3\n value: 695\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAL-695\n type: *7\n value: PAL-695\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PLZ-0014\n type: *8\n value: PLZ-0014\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "PALAZZO VALENTINE ST 10373 COLOR MAUVE\\r\\n"\n type: *6\n value: "PALAZZO VALENTINE ST 10373 COLOR MAUVE\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '490.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.49E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1299E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-08-12-23-19-49_2552_.jpg\n type: *2\n value: PHOTO-2019-08-12-23-19-49_2552_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '9'\n type: *3\n value: 9\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000695'\n type: *2\n value: '0000695'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-30 03:41:20.801413'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-08-12-23-19-49_2552_.jpg\n 3 El producto PAL-695 fue modificado. 189.186.200.88 71a96194-31dd-47cb-b23a-8de88d042924 2019-08-31 05:14:19.685892 14152 696 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '696'\n is_parent: false\n sku: BLU-696\n name: BLS-0068\n description: "PANTIBLUSA VALENTINE ST 10423\\r\\n"\n price_base: '270.0'\n price_sale: '625.0'\n img_product: PHOTO-2019-08-13-11-16-31_2542_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000696'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-30 03:43:13.182069'\n updated_at: &12 2019-08-31 05:15:26.593599837 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '696'\n sku: BLU-696\n name: BLS-0068\n description: "PANTIBLUSA VALENTINE ST 10423\\r\\n"\n price_base: '270.00'\n price_sale: '625.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-30 03:43:13.182069'\n updated_at: '2019-08-30 03:43:13.217268'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000696'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '696'\n type: *3\n value: 696\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-696\n type: *7\n value: BLU-696\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0068\n type: *8\n value: BLS-0068\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "PANTIBLUSA VALENTINE ST 10423\\r\\n"\n type: *6\n value: "PANTIBLUSA VALENTINE ST 10423\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '270.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.27E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '625.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.625E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-08-13-11-16-31_2542_.jpg\n type: *2\n value: PHOTO-2019-08-13-11-16-31_2542_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000696'\n type: *2\n value: '0000696'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-30 03:43:13.182069'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-08-13-11-16-31_2542_.jpg\n 3 El producto BLU-696 fue modificado. 189.186.200.88 3eda2a06-c641-401d-98af-505600792cfb 2019-08-31 05:15:26.634746 14153 698 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '698'\n is_parent: false\n sku: BLU-698\n name: BLS-0069\n description: "BLUSA BLANCA VALENTINE ST10358\\r\\n"\n price_base: '330.0'\n price_sale: '799.0'\n img_product: PHOTO-2019-08-13-11-32-16_2560_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000698'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-30 03:47:48.601059'\n updated_at: &12 2019-08-31 05:16:00.242235310 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '698'\n sku: BLU-698\n name: BLS-0069\n description: "BLUSA BLANCA VALENTINE ST10358\\r\\n"\n price_base: '330.00'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-30 03:47:48.601059'\n updated_at: '2019-08-30 03:47:48.637424'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000698'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '698'\n type: *3\n value: 698\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-698\n type: *7\n value: BLU-698\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0069\n type: *8\n value: BLS-0069\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "BLUSA BLANCA VALENTINE ST10358\\r\\n"\n type: *6\n value: "BLUSA BLANCA VALENTINE ST10358\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '330.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.33E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-08-13-11-32-16_2560_.jpg\n type: *2\n value: PHOTO-2019-08-13-11-32-16_2560_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000698'\n type: *2\n value: '0000698'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-30 03:47:48.601059'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-08-13-11-32-16_2560_.jpg\n 3 El producto BLU-698 fue modificado. 189.186.200.88 dd91e142-7649-4f2d-b1bd-2f4c159b5c98 2019-08-31 05:16:00.281676 14154 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 03:52:09.255288000 Z\n- &1 2019-08-31 04:20:48.961351000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-31 05:28:17.841822790 Z\nsign_in_count:\n- 10\n- 11\n 22 \N 189.186.200.88 607f1d94-700a-4cf3-98b8-a9ff9e198b22 2019-08-31 05:28:17.847703 14155 18 User \N \N 18 User \N update ---\nunique_session_id:\n- EhhurrNp9mzY7HWZUHu_\n- HZZAewZMfrKr5kS1_PYW\n 23 \N 189.186.200.88 607f1d94-700a-4cf3-98b8-a9ff9e198b22 2019-08-31 05:28:17.860645 14156 394 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 394\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.6E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.13E4\ncash_fund: !ruby/object:BigDecimal 18:0.663E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1963E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.200.88 036dfcef-4ad1-47b8-98fd-01f0db9c2190 2019-08-31 05:30:53.252092 14160 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-29 16:15:49.437355000 Z\n- &1 2019-08-30 17:04:11.863608000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-31 16:45:02.936154621 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117394\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124854\n mask_addr: 4294967295\nsign_in_count:\n- 300\n- 301\n 605 \N 187.149.80.118 d96a81df-b185-4f00-8934-35045aa38838 2019-08-31 16:45:02.94386 14161 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ciu71_TTXsgpt3xEyH5T\n- XBTwHsgBsQVyUJxazJ9o\n 606 \N 187.149.80.118 d96a81df-b185-4f00-8934-35045aa38838 2019-08-31 16:45:02.962931 14162 395 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1099E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1099.0 187.149.80.118 2e45bffb-8b64-49dc-b2f1-ee73f430af6e 2019-08-31 16:45:16.633918 14163 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-30 16:18:20.737500000 Z\n- &1 2019-08-30 18:08:21.325909000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-31 16:52:49.159550789 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124854\n mask_addr: 4294967295\nsign_in_count:\n- 617\n- 618\n 1236 \N 187.149.80.118 d51435aa-25b7-4f44-85c9-69a442cbcef3 2019-08-31 16:52:49.187394 14164 3 User \N \N 3 User \N update ---\nunique_session_id:\n- TNdDQri54Dt4sB5Qgx1W\n- s6qRMsMT933-sA593zPn\n 1237 \N 187.149.80.118 d51435aa-25b7-4f44-85c9-69a442cbcef3 2019-08-31 16:52:49.209475 14165 396 OpenCashRegister \N \N 3 User \N create ---\ncash_register_id: 2\nuser_id: 3\ninitial_cash: !ruby/object:BigDecimal 18:0.415E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 415.0 187.149.80.118 6ea6ec4f-ada8-4ce2-8fd9-15d13c7835d1 2019-08-31 16:53:27.19457 14166 1003 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 396\namount: !ruby/object:BigDecimal 18:0.619E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.619E3\nstatus: 0\ndate_sale: 2019-08-31\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-420\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.80.118 6b9c756b-ab13-407c-a0e6-028bfc61ba1d 2019-08-31 16:53:44.037303 14167 759 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.80.118 6b9c756b-ab13-407c-a0e6-028bfc61ba1d 2019-08-31 16:53:44.06531 14168 1004 Sale \N \N 20 User \N create ---\ncustomer_id: 1\nuser_id: 20\nopen_cash_register_id: 396\namount: !ruby/object:BigDecimal 18:0.8448E2\ntax: !ruby/object:BigDecimal 18:0.1352E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.98E2\nstatus: 0\ndate_sale: 2019-08-31\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-421\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.80.118 bd1ee732-7d8e-4ce2-8c00-8015bdb70322 2019-08-31 16:54:53.537439 14169 367 AvailableProduct \N \N 20 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.38E2\n- !ruby/object:BigDecimal 18:0.36E2\n 18 \N 187.149.80.118 bd1ee732-7d8e-4ce2-8c00-8015bdb70322 2019-08-31 16:54:53.579193 14170 1004 Sale \N \N 20 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.80.118 a887dd41-3b73-4e9d-905c-a230e2682adf 2019-08-31 16:55:02.808835 14171 1390 CashRegistersMove \N \N 20 User \N create ---\nopen_cash_register_id: 396\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.98E2\nmove_type: '1'\nsale_id: 1004\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-421\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.98E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-421 187.149.80.118 a887dd41-3b73-4e9d-905c-a230e2682adf 2019-08-31 16:55:02.847104 14172 1005 Sale \N \N 20 User \N create ---\ncustomer_id: 1\nuser_id: 20\nopen_cash_register_id: 396\namount: !ruby/object:BigDecimal 18:0.619E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.619E3\nstatus: 0\ndate_sale: 2019-08-31\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-422\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.80.118 34abc1fa-caed-4275-8906-13ebf1600458 2019-08-31 17:03:16.177803 14173 759 AvailableProduct \N \N 20 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.80.118 34abc1fa-caed-4275-8906-13ebf1600458 2019-08-31 17:03:16.222308 14174 1005 Sale \N \N 20 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.80.118 db6cd857-d633-4313-8f5b-8be36b6b2819 2019-08-31 17:03:27.362089 14175 1391 CashRegistersMove \N \N 20 User \N create ---\nopen_cash_register_id: 396\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.619E3\nmove_type: '1'\nsale_id: 1005\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-422\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.62E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-422 187.149.80.118 db6cd857-d633-4313-8f5b-8be36b6b2819 2019-08-31 17:03:27.394341 14176 1391 CashRegistersMove \N \N 20 User \N destroy ---\nopen_cash_register_id: 396\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.619E3\nmove_type: '1'\nsale_id: 1005\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-422\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.62E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.80.118 eda5a9e9-1432-44c1-a90a-5f9d4dd8e59a 2019-08-31 17:03:32.317885 14177 1005 Sale \N \N 20 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-422 cancelada. 187.149.80.118 903abc43-3666-4e02-946c-4b65b77f1962 2019-08-31 17:03:51.61176 14178 759 AvailableProduct \N \N 20 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.80.118 903abc43-3666-4e02-946c-4b65b77f1962 2019-08-31 17:03:51.635948 14179 1006 Sale \N \N 20 User \N create ---\ncustomer_id: 1\nuser_id: 20\nopen_cash_register_id: 396\namount: !ruby/object:BigDecimal 18:0.619E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.619E3\nstatus: 0\ndate_sale: 2019-08-31\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-423\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.80.118 e52e16c7-f347-4210-9cef-c2fe54c5cb12 2019-08-31 17:04:08.196236 14180 759 AvailableProduct \N \N 20 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.80.118 e52e16c7-f347-4210-9cef-c2fe54c5cb12 2019-08-31 17:04:08.229497 14181 1006 Sale \N \N 20 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.80.118 8a34e8f3-6dad-4323-8765-1fb951b677aa 2019-08-31 17:04:12.707735 14269 1014 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.64 5db752de-69c6-4ccb-880a-fff72b069413 2019-09-01 03:09:39.09325 14182 1392 CashRegistersMove \N \N 20 User \N create ---\nopen_cash_register_id: 396\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.619E3\nmove_type: '1'\nsale_id: 1006\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-423\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.619E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-423 187.149.80.118 8a34e8f3-6dad-4323-8765-1fb951b677aa 2019-08-31 17:04:12.735013 14183 1003 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-420 cancelada. 187.149.80.118 aabbda4c-6d67-41e6-ac99-3b12100d4e44 2019-08-31 17:05:21.963271 14184 759 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 187.149.80.118 aabbda4c-6d67-41e6-ac99-3b12100d4e44 2019-08-31 17:05:21.986085 14185 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-30 17:04:11.863608000 Z\n- &1 2019-08-31 16:45:02.936154000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-31 17:09:22.450425456 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124854\n mask_addr: 4294967295\nsign_in_count:\n- 301\n- 302\n 607 \N 187.149.80.118 2f0dff4d-7e61-47ec-9551-a3e031589f32 2019-08-31 17:09:22.458128 14186 2 User \N \N 2 User \N update ---\nunique_session_id:\n- XBTwHsgBsQVyUJxazJ9o\n- 3U52PS-kMpF6_Sg6Daum\n 608 \N 187.149.80.118 2f0dff4d-7e61-47ec-9551-a3e031589f32 2019-08-31 17:09:22.472811 14187 172 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 395\nquantity: !ruby/object:BigDecimal 18:0.2E2\nstatus: 1\nobservations: debía Daniela a fondo\nexpense_date: 2019-08-31\nexpense_code: PV1-E-135\n 1 Egreso por 20.0 registrado 187.149.80.118 7212be24-ab8e-4116-aa2f-0ef366e2769e 2019-08-31 17:10:10.16928 14188 1393 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 395\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 172\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.80.118 7212be24-ab8e-4116-aa2f-0ef366e2769e 2019-08-31 17:10:10.209901 14189 1007 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 395\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-08-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-579\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.80.118 a575b081-a7ea-435c-a35f-f2f5b1f07c96 2019-08-31 18:04:29.343397 14190 792 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 187.149.80.118 a575b081-a7ea-435c-a35f-f2f5b1f07c96 2019-08-31 18:04:29.37223 14191 1007 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.80.118 d9703b37-4b87-4d96-a9af-d5822b27bbc3 2019-08-31 18:04:33.938892 14192 1394 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 395\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 1007\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-579\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-579 187.149.80.118 d9703b37-4b87-4d96-a9af-d5822b27bbc3 2019-08-31 18:04:33.958922 14193 1008 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 395\namount: !ruby/object:BigDecimal 18:0.1098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1098E4\nstatus: 0\ndate_sale: 2019-08-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-580\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.80.118 ac804886-ada0-461c-9b6b-28d28f9f0196 2019-08-31 18:54:46.632417 14194 786 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 9 \N 187.149.80.118 ac804886-ada0-461c-9b6b-28d28f9f0196 2019-08-31 18:54:46.663765 14195 637 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.80.118 ac804886-ada0-461c-9b6b-28d28f9f0196 2019-08-31 18:54:46.710965 14196 1008 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.80.118 ce91b029-2abd-4230-a975-42dfdc6732c8 2019-08-31 18:56:00.48994 14197 1395 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 395\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1098E4\nmove_type: '1'\nsale_id: 1008\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-580\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1098E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-580 187.149.80.118 ce91b029-2abd-4230-a975-42dfdc6732c8 2019-08-31 18:56:00.513123 14198 810 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.80.118 67fd97ea-240b-4efb-9089-f3a3e8a593ee 2019-08-31 20:36:32.724662 14199 130 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-08-31\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.80.118 3abb847b-6d5b-467d-8497-f8a14d38738e 2019-08-31 20:36:39.383633 14200 1009 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 395\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-08-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-581\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.80.118 b332dab7-81b1-493f-9ec1-63d817b4697a 2019-08-31 20:58:03.189792 14201 867 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.80.118 b332dab7-81b1-493f-9ec1-63d817b4697a 2019-08-31 20:58:03.219032 14202 1009 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.80.118 2c957bb2-dbdf-4003-87f8-441af7deb752 2019-08-31 20:58:44.314406 14203 1396 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 395\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 1009\ncardnumber: 77\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-581\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-581 187.149.80.118 2c957bb2-dbdf-4003-87f8-441af7deb752 2019-08-31 20:58:44.334694 14367 744 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 15 \N 187.149.63.76 1524d9ef-53ac-4376-b370-8a5233ba5e30 2019-09-02 17:33:19.270477 14204 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 04:21:55.150488000 Z\n- &1 2019-08-31 05:02:29.887838000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-31 21:08:34.406998816 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946288\n mask_addr: 4294967295\nsign_in_count:\n- 533\n- 534\n 1068 \N 200.68.182.48 9b4549f9-9c4a-439d-9321-4f4127402b89 2019-08-31 21:08:34.416207 14205 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KcRS4ra3EShGvQT7JS_p\n- qPLmCLo93sYCVQ11j9qy\n 1069 \N 200.68.182.48 9b4549f9-9c4a-439d-9321-4f4127402b89 2019-08-31 21:08:34.433582 14206 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-30 18:08:21.325909000 Z\n- &1 2019-08-31 16:52:49.159550000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-31 21:17:17.704153550 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124854\n mask_addr: 4294967295\nsign_in_count:\n- 618\n- 619\n 1238 \N 187.149.80.118 75663326-cd74-4950-b54d-062d83660cfc 2019-08-31 21:17:17.713188 14207 3 User \N \N 3 User \N update ---\nunique_session_id:\n- s6qRMsMT933-sA593zPn\n- omMm8oyXKLyXUZhUsPRG\n 1239 \N 187.149.80.118 75663326-cd74-4950-b54d-062d83660cfc 2019-08-31 21:17:17.731794 14208 693 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.80.118 c3fb3080-3838-4b63-a701-0a8c20c21c2c 2019-08-31 21:17:39.024747 14209 131 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-08-31\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.80.118 d8cda375-ae57-4474-ad94-67bd77a6eb04 2019-08-31 21:17:42.555833 14210 131 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-31\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.80.118 cd50cae4-f39e-4e6a-9253-38beca152d49 2019-08-31 21:18:24.203559 14211 601 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 13 \N 187.149.80.118 cd50cae4-f39e-4e6a-9253-38beca152d49 2019-08-31 21:18:24.223272 14212 1010 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 395\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2019-08-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-582\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.80.118 082cd134-07a6-4d40-bce5-b6b082fd38b8 2019-08-31 21:19:23.993625 14213 601 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 14 \N 187.149.80.118 082cd134-07a6-4d40-bce5-b6b082fd38b8 2019-08-31 21:19:24.024936 14214 1010 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.80.118 f6e4ff4f-0a64-44a3-a0a1-a6de4e785e1f 2019-08-31 21:20:03.777878 14215 1397 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 395\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 1010\ncardnumber: 9156\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-582\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-582 187.149.80.118 f6e4ff4f-0a64-44a3-a0a1-a6de4e785e1f 2019-08-31 21:20:03.798331 14216 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-08-24 17:09:29.265229000 Z\n- &1 2019-08-30 18:09:16.342682000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-31 21:23:44.885980460 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124854\n mask_addr: 4294967295\nsign_in_count:\n- 69\n- 70\n 140 \N 187.149.80.118 1cd166c3-5c95-490d-b5cf-3569b719bd9c 2019-08-31 21:23:44.893516 14217 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 3fPU_KRwVywsBvxj1w-M\n- MNtEWGXqKfwgTwcx_nof\n 141 \N 187.149.80.118 1cd166c3-5c95-490d-b5cf-3569b719bd9c 2019-08-31 21:23:44.910582 14218 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-08-30 18:09:16.342682000 Z\n- &1 2019-08-31 21:23:44.885980000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-31 21:45:05.986302636 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124854\n mask_addr: 4294967295\nsign_in_count:\n- 70\n- 71\n 142 \N 187.149.80.118 d53e51a4-528c-40f7-b700-72697e8c0a70 2019-08-31 21:45:06.001164 14219 1 User \N \N 1 User \N update ---\nunique_session_id:\n- MNtEWGXqKfwgTwcx_nof\n- yzrJbp3Mx8y-BmGAnSU3\n 143 \N 187.149.80.118 d53e51a4-528c-40f7-b700-72697e8c0a70 2019-08-31 21:45:06.071241 14220 160 Customer \N \N 20 User \N create ---\nnick_name: MARIA ISABEL VARGAS\nphone: "(667) 165-9253"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIA ISABEL VARGAS fue registrado. 187.149.80.118 8c7409fd-afe8-41ab-8e5a-13ba2980178f 2019-08-31 21:56:36.713761 14221 1011 Sale \N \N 20 User \N create ---\ncustomer_id: 160\nuser_id: 20\nopen_cash_register_id: 396\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-08-31\nsaletype: 2\nseller_id: 9\nsale_code: PV2-V-424\nexpiration_date: 2019-10-05\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.80.118 d9ee6626-8dec-4ba7-a430-7b551ec37c91 2019-08-31 21:57:08.059304 14222 756 AvailableProduct \N \N 20 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.80.118 d9ee6626-8dec-4ba7-a430-7b551ec37c91 2019-08-31 21:57:08.083537 14223 1398 CashRegistersMove \N \N 20 User \N create ---\nopen_cash_register_id: \npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.18E3\nmove_type: '1'\nsale_id: 1011\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-424\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.2E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-424 187.149.80.118 86cc32bd-2bd0-46f1-8b51-03e183b0653d 2019-08-31 21:57:19.592223 14224 1398 CashRegistersMove \N \N 20 User \N destroy ---\nopen_cash_register_id: \npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.18E3\nmove_type: '1'\nsale_id: 1011\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-424\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.2E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.80.118 48d53f29-4b8b-49fc-a6e1-3b954940c9eb 2019-08-31 21:57:24.453915 14225 1011 Sale \N \N 20 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-424 cancelada. 187.149.80.118 9e8aceb4-89b8-449a-9001-f8dbfd64b4a8 2019-08-31 21:57:39.304898 14227 1012 Sale \N \N 20 User \N create ---\ncustomer_id: 160\nuser_id: 20\nopen_cash_register_id: 396\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-08-31\nsaletype: 2\nseller_id: 9\nsale_code: PV2-V-425\nexpiration_date: 2019-10-05\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.80.118 31d05173-3700-4a09-92dc-891b48f29066 2019-08-31 21:58:00.575555 14228 756 AvailableProduct \N \N 20 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.80.118 31d05173-3700-4a09-92dc-891b48f29066 2019-08-31 21:58:00.602013 14229 1399 CashRegistersMove \N \N 20 User \N create ---\nopen_cash_register_id: \npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1012\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-425\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-425 187.149.80.118 74118a02-5cd2-4813-937f-f160d9014969 2019-08-31 21:58:06.578382 14230 1012 Sale \N \N 20 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.80.118 3434b2e6-1431-42f1-9715-b1855868e06c 2019-08-31 21:58:07.962685 14231 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 05:02:29.887838000 Z\n- &1 2019-08-31 21:08:34.406998000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-31 22:25:58.880323085 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946288\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946288\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938216\n mask_addr: 4294967295\nsign_in_count:\n- 534\n- 535\n 1070 \N 200.68.150.168 65ec2cb2-fe04-4564-9e92-36cdd82bf0fb 2019-08-31 22:25:58.899841 14232 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qPLmCLo93sYCVQ11j9qy\n- x7LDbB52bG3txQ7DMjBj\n 1071 \N 200.68.150.168 65ec2cb2-fe04-4564-9e92-36cdd82bf0fb 2019-08-31 22:25:58.919975 14233 1013 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 395\namount: !ruby/object:BigDecimal 18:0.127E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.127E4\nstatus: 0\ndate_sale: 2019-08-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-583\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.80.118 31cd2723-def4-43e9-b323-706c74da3bdd 2019-08-31 22:54:04.289612 14234 747 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.80.118 31cd2723-def4-43e9-b323-706c74da3bdd 2019-08-31 22:54:04.343311 14235 1013 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.80.118 c95dda9f-0277-4af9-bbdb-0631d9a987f7 2019-08-31 22:54:25.403635 14236 1400 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 395\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.127E4\nmove_type: '1'\nsale_id: 1013\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-583\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.127E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-583 187.149.80.118 c95dda9f-0277-4af9-bbdb-0631d9a987f7 2019-08-31 22:54:25.425779 14237 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 21:23:44.885980000 Z\n- &1 2019-08-31 21:45:05.986302000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-31 23:01:42.826242612 Z\nsign_in_count:\n- 71\n- 72\n 144 \N 187.149.80.118 1eed0d65-71cb-425c-8125-0d2a75b4a49a 2019-08-31 23:01:42.832402 14238 1 User \N \N 1 User \N update ---\nunique_session_id:\n- yzrJbp3Mx8y-BmGAnSU3\n- 98TgCQmVUMHNLJE1auEW\n 145 \N 187.149.80.118 1eed0d65-71cb-425c-8125-0d2a75b4a49a 2019-08-31 23:01:42.845685 14239 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 21:08:34.406998000 Z\n- &1 2019-08-31 22:25:58.880323000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-08-31 23:04:01.625584400 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946288\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938216\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946288\n mask_addr: 4294967295\nsign_in_count:\n- 535\n- 536\n 1072 \N 200.68.182.48 ce405a7c-f337-4750-a098-b5cfd2727aad 2019-08-31 23:04:01.635265 14240 4 User \N \N 4 User \N update ---\nunique_session_id:\n- x7LDbB52bG3txQ7DMjBj\n- ykU8kpy7MWLtdkqVNG_U\n 1073 \N 200.68.182.48 ce405a7c-f337-4750-a098-b5cfd2727aad 2019-08-31 23:04:01.652245 14241 1401 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 395\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 925\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-532 187.149.80.118 83f07b9e-e591-40b0-b272-a3d62f390f55 2019-08-31 23:31:12.054726 14242 925 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.80.118 ea8038d5-9b24-4023-84f5-d4e24972d348 2019-08-31 23:31:13.135496 14243 395 CashOut \N \N 20 User \N create ---\nopen_cash_register_id: 396\nuser_id: 20\namount_in: !ruby/object:BigDecimal 18:0.717E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.9E3\ncash_fund: !ruby/object:BigDecimal 18:0.4455E3\nphysical_cash: !ruby/object:BigDecimal 18:0.13455E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.80.118 8be88a25-9bf0-4ed4-9fba-b73cb5527fd1 2019-09-01 00:57:37.960812 14244 396 OpenCashRegister \N \N 20 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.80.118 8be88a25-9bf0-4ed4-9fba-b73cb5527fd1 2019-09-01 00:57:37.979082 14245 173 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 395\nquantity: !ruby/object:BigDecimal 18:0.1132E4\nstatus: 1\nobservations: ''\nexpense_date: 2019-08-31\nexpense_code: PV1-E-136\n 1 Egreso por 1132.0 registrado 187.149.80.118 dbc1809d-0a56-4359-b84e-3308b284f0dc 2019-09-01 01:15:55.64374 14246 1402 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 395\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1132E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 173\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.80.118 dbc1809d-0a56-4359-b84e-3308b284f0dc 2019-09-01 01:15:55.666993 14247 173 Expense \N \N 2 User \N update ---\nstatus:\n- active\n- 0\n 2 Egreso PV1-E-136 cancelado. 187.149.80.118 40709532-5187-4682-921e-7595353b583f 2019-09-01 01:16:06.529142 14340 162 Customer \N \N 20 User \N create ---\nnick_name: TANIA VILLA\nphone: "(671) 980-756_"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente TANIA VILLA fue registrado. 187.149.63.76 d5bd85b0-d8c4-45e4-90fd-73829ec455d2 2019-09-01 19:47:06.875091 14248 1402 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 395\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1132E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 173\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.80.118 40709532-5187-4682-921e-7595353b583f 2019-09-01 01:16:06.556895 14249 174 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 395\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nstatus: 1\nobservations: sueldo rocio\nexpense_date: 2019-08-31\nexpense_code: PV1-E-137\n 1 Egreso por 1328.0 registrado 187.149.80.118 354055f4-54c1-49aa-a90a-f9e76e8d99dc 2019-09-01 01:16:44.213982 14250 1403 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 395\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 174\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.80.118 354055f4-54c1-49aa-a90a-f9e76e8d99dc 2019-09-01 01:16:44.243671 14251 1404 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 182\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.80.118 bd2f45ee-e41c-415a-bae6-f37cdc1de0cb 2019-09-01 01:17:55.287445 14252 1404 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 49\n- 395\n 2 movimiento de efectivo por venta con folio PV1-V-104 187.149.80.118 bd2f45ee-e41c-415a-bae6-f37cdc1de0cb 2019-09-01 01:17:55.314646 14253 396 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 395\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.7364E4\namount_out: !ruby/object:BigDecimal 18:0.1348E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.36E4\ncash_fund: !ruby/object:BigDecimal 18:0.717E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4317E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.80.118 59abef82-068e-4539-9eab-6b66aecdac38 2019-09-01 01:22:26.785257 14254 395 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.80.118 59abef82-068e-4539-9eab-6b66aecdac38 2019-09-01 01:22:26.803595 14255 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 04:20:48.961351000 Z\n- &1 2019-08-31 05:28:17.841822000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-01 03:04:28.434347198 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093568\n mask_addr: 4294967295\nsign_in_count:\n- 11\n- 12\n 24 \N 189.186.39.64 033650d5-3fc8-4876-873b-7a8d085924b1 2019-09-01 03:04:28.45138 14256 18 User \N \N 18 User \N update ---\nunique_session_id:\n- HZZAewZMfrKr5kS1_PYW\n- 8jCnTqZFFxbyct_7uFf-\n 25 \N 189.186.39.64 033650d5-3fc8-4876-873b-7a8d085924b1 2019-09-01 03:04:28.472105 14257 397 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.663E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 663.0 189.186.39.64 a5dac1b0-f6bb-4942-a3d3-95950d44a998 2019-09-01 03:04:45.242348 14258 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 22:25:58.880323000 Z\n- &1 2019-08-31 23:04:01.625584000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-01 03:05:42.085922430 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946288\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946288\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093568\n mask_addr: 4294967295\nsign_in_count:\n- 536\n- 537\n 1074 \N 189.186.39.64 7f9b46e7-925d-44fd-a4da-8361a06385fe 2019-09-01 03:05:42.093818 14259 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ykU8kpy7MWLtdkqVNG_U\n- ey2xXxW2Em81TXqHs6yi\n 1075 \N 189.186.39.64 7f9b46e7-925d-44fd-a4da-8361a06385fe 2019-09-01 03:05:42.114082 14260 703 Product \N \N 4 User \N create ---\nsku: BOL-703\nname: EIRO487\ndescription: MOCHILA NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-703 fue creado. 189.186.39.64 c9282560-4e79-4c9e-8b85-b1f8450135c9 2019-09-01 03:07:33.052157 14261 703 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000703'\n 2 \N 189.186.39.64 c9282560-4e79-4c9e-8b85-b1f8450135c9 2019-09-01 03:07:33.086112 14262 873 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 703\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.39.64 c9282560-4e79-4c9e-8b85-b1f8450135c9 2019-09-01 03:07:33.117717 14263 133 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-5\namount: !ruby/object:BigDecimal 18:0.7995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.7995E3\nobservations: ''\npurchase_date: 2019-08-31\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-5 por $ 799.5 MXN creada. 189.186.39.64 aacaabc6-956c-4916-a4e6-882a72bd9077 2019-09-01 03:07:50.425505 14264 873 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.39.64 aacaabc6-956c-4916-a4e6-882a72bd9077 2019-09-01 03:07:50.456907 14265 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 05:28:17.841822000 Z\n- &1 2019-09-01 03:04:28.434347000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-01 03:09:03.515163648 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093568\n mask_addr: 4294967295\nsign_in_count:\n- 12\n- 13\n 26 \N 189.186.39.64 5c81d429-94ee-44eb-a659-e1b8bb79c325 2019-09-01 03:09:03.524448 14266 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 8jCnTqZFFxbyct_7uFf-\n- Wgppxdam1azjfGwtHL-W\n 27 \N 189.186.39.64 5c81d429-94ee-44eb-a659-e1b8bb79c325 2019-09-01 03:09:03.544357 14267 1014 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 397\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-08-31\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-4\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.64 ddcdd597-7afa-416b-82cf-9e1d9e701d57 2019-09-01 03:09:34.201167 14268 873 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.39.64 ddcdd597-7afa-416b-82cf-9e1d9e701d57 2019-09-01 03:09:34.231599 14270 1405 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 397\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 1014\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-4\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-4 189.186.39.64 5db752de-69c6-4ccb-880a-fff72b069413 2019-09-01 03:09:39.115935 14271 1015 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 397\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-08-31\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-5\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.64 992a2f79-b1f5-49f6-ac79-df02d1c5d466 2019-09-01 03:10:23.205207 14272 835 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.39.64 992a2f79-b1f5-49f6-ac79-df02d1c5d466 2019-09-01 03:10:23.251939 14273 1015 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.64 f672c2d3-e77e-4662-bfb5-f8f6376063c1 2019-09-01 03:10:27.968072 14274 1406 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 397\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1015\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-5\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-5 189.186.39.64 f672c2d3-e77e-4662-bfb5-f8f6376063c1 2019-09-01 03:10:28.031876 14275 1016 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 397\namount: !ruby/object:BigDecimal 18:0.92248E3\ntax: !ruby/object:BigDecimal 18:0.1352E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.936E3\nstatus: 0\ndate_sale: 2019-08-31\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-6\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.64 65c255e2-f0f8-4639-8438-9e3a66a3f2a3 2019-09-01 03:11:10.175756 14276 818 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.42E2\n- !ruby/object:BigDecimal 18:0.4E2\n 2 \N 189.186.39.64 65c255e2-f0f8-4639-8438-9e3a66a3f2a3 2019-09-01 03:11:10.211018 14277 827 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.7E1\n 2 \N 189.186.39.64 65c255e2-f0f8-4639-8438-9e3a66a3f2a3 2019-09-01 03:11:10.248116 14278 1016 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.64 023e7a25-481f-4f79-8400-16234a066cfc 2019-09-01 03:11:20.929041 14279 1407 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 397\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.936E3\nmove_type: '1'\nsale_id: 1016\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-6\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.936E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-6 189.186.39.64 023e7a25-481f-4f79-8400-16234a066cfc 2019-09-01 03:11:20.957616 14280 161 Customer \N \N 18 User \N create ---\nnick_name: MAMA DE PAOLA\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MAMA DE PAOLA fue registrado. 189.186.39.64 3f65a4a8-f83a-443f-a322-02cbde6fb35b 2019-09-01 03:11:48.479544 14281 161 Customer \N \N 18 User \N update ---\ncredit:\n- false\n- true\n 2 El cliente MAMA DE PAOLA fue registrado. 189.186.39.64 6275992d-3ab4-4aac-a880-03a078df77f7 2019-09-01 03:12:33.412086 14282 161 Customer \N \N 18 User \N update ---\ncredit_limit:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E4\n 3 El cliente MAMA DE PAOLA fue registrado. 189.186.39.64 88a0e1b7-a746-455d-8b40-2717da17b328 2019-09-01 03:15:00.814067 14283 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 23:04:01.625584000 Z\n- &1 2019-09-01 03:05:42.085922000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-01 03:15:57.694147742 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946288\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093568\n mask_addr: 4294967295\nsign_in_count:\n- 537\n- 538\n 1076 \N 189.186.39.64 6960929d-c1e7-42bb-8248-70df1797e907 2019-09-01 03:15:57.703928 14284 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ey2xXxW2Em81TXqHs6yi\n- EXsan9QMsstKbCcj9-3E\n 1077 \N 189.186.39.64 6960929d-c1e7-42bb-8248-70df1797e907 2019-09-01 03:15:57.72744 14285 441 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.39.64 26795703-8156-4080-baec-db636440ec7d 2019-09-01 03:16:25.544931 14286 132 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-08-31\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.39.64 a004be0c-fd29-4498-a4c8-cdc39d53fb5c 2019-09-01 03:16:27.098653 14287 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-01 03:04:28.434347000 Z\n- &1 2019-09-01 03:09:03.515163000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-01 03:16:41.417742325 Z\nsign_in_count:\n- 13\n- 14\n 28 \N 189.186.39.64 35672bb4-24a9-49b3-8514-1ef45a06c410 2019-09-01 03:16:41.423028 14288 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Wgppxdam1azjfGwtHL-W\n- V-h8swo4wRqfGEr7rACu\n 29 \N 189.186.39.64 35672bb4-24a9-49b3-8514-1ef45a06c410 2019-09-01 03:16:41.435134 14289 132 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-08-31\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.39.64 fe70ceea-e7be-4d49-8870-d37c58e89ce0 2019-09-01 03:17:21.510796 14290 874 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 441\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.39.64 fe70ceea-e7be-4d49-8870-d37c58e89ce0 2019-09-01 03:17:21.544407 14291 1017 Sale \N \N 18 User \N create ---\ncustomer_id: 161\nuser_id: 18\nopen_cash_register_id: 397\namount: !ruby/object:BigDecimal 18:0.146466E4\ntax: !ruby/object:BigDecimal 18:0.23435E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.169901E4\nstatus: 0\ndate_sale: 2019-08-31\nsaletype: 0\nseller_id: 12\nsale_code: PV3-V-7\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.64 e27b1034-e18a-42fe-8f7d-4276fe4e9cfc 2019-09-01 03:17:53.559646 14292 874 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.39.64 e27b1034-e18a-42fe-8f7d-4276fe4e9cfc 2019-09-01 03:17:53.588347 14366 743 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.63.76 1524d9ef-53ac-4376-b370-8a5233ba5e30 2019-09-02 17:33:19.244021 14293 1408 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 397\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 1017\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.39.64 00b64a99-3836-4f98-a09e-0064569caecf 2019-09-01 03:19:39.568084 14294 1017 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.39.64 00b64a99-3836-4f98-a09e-0064569caecf 2019-09-01 03:19:39.629186 14295 1408 CashRegistersMove \N \N 18 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV3-V-7 189.186.39.64 00b64a99-3836-4f98-a09e-0064569caecf 2019-09-01 03:19:39.650687 14296 1018 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 397\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-08-31\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-8\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.64 b724dbea-171e-48c9-a870-0e4dabcdf5a7 2019-09-01 03:20:09.322346 14297 835 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.39.64 b724dbea-171e-48c9-a870-0e4dabcdf5a7 2019-09-01 03:20:09.351478 14298 1018 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.64 46d1a122-2525-4da3-b49e-60a29df77261 2019-09-01 03:20:13.63666 14299 1409 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 397\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1018\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-8\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-8 189.186.39.64 46d1a122-2525-4da3-b49e-60a29df77261 2019-09-01 03:20:13.666757 14300 1019 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 397\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-08-31\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-9\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.64 e9680fed-49e6-462e-b3c8-de23a1081095 2019-09-01 03:20:42.014441 14301 828 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.39.64 e9680fed-49e6-462e-b3c8-de23a1081095 2019-09-01 03:20:42.050319 14302 1019 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.39.64 1597fa93-ceb6-48b3-a28b-4d2d750398a1 2019-09-01 03:20:47.140761 14303 1410 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 397\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 1019\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-9\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-9 189.186.39.64 1597fa93-ceb6-48b3-a28b-4d2d750398a1 2019-09-01 03:20:47.165169 14304 704 Product \N \N 18 User \N create ---\nsku: COL-704\nname: CO-001\ndescription: COLLARES MARGENTA\nprice_base: !ruby/object:BigDecimal 18:0.1745E3\nprice_sale: !ruby/object:BigDecimal 18:0.349E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-704 fue creado. 189.186.39.64 76354c1e-b33d-496e-a5fc-869c88579269 2019-09-01 03:22:58.798178 14305 704 Product \N \N 18 User \N update ---\nbarcode:\n- ''\n- '0000704'\n 2 \N 189.186.39.64 76354c1e-b33d-496e-a5fc-869c88579269 2019-09-01 03:22:58.83039 14306 875 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 704\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.39.64 76354c1e-b33d-496e-a5fc-869c88579269 2019-09-01 03:22:58.862625 14307 705 Product \N \N 18 User \N create ---\nsku: COL-705\nname: ARE-001\ndescription: ARETES VARIOS\nprice_base: !ruby/object:BigDecimal 18:0.1245E3\nprice_sale: !ruby/object:BigDecimal 18:0.249E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-705 fue creado. 189.186.39.64 6582e77e-7498-49ca-b9b1-ec3265def226 2019-09-01 03:24:26.297848 14308 705 Product \N \N 18 User \N update ---\nbarcode:\n- ''\n- '0000705'\n 2 \N 189.186.39.64 6582e77e-7498-49ca-b9b1-ec3265def226 2019-09-01 03:24:26.339376 14309 876 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 705\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.39.64 6582e77e-7498-49ca-b9b1-ec3265def226 2019-09-01 03:24:26.373715 14310 134 Purchase \N \N 18 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-6\namount: !ruby/object:BigDecimal 18:0.2541E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2541E4\nobservations: ''\npurchase_date: 2019-08-31\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-6 por $ 2541.0 MXN creada. 189.186.39.64 e00c3bbb-d78d-42a8-bf54-d49cd601a467 2019-09-01 03:24:38.59553 14311 875 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.39.64 e00c3bbb-d78d-42a8-bf54-d49cd601a467 2019-09-01 03:24:38.66244 14312 876 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.12E2\n 2 \N 189.186.39.64 e00c3bbb-d78d-42a8-bf54-d49cd601a467 2019-09-01 03:24:38.816687 14313 1020 Sale \N \N 18 User \N create ---\ncustomer_id: 159\nuser_id: 18\nopen_cash_register_id: 397\namount: !ruby/object:BigDecimal 18:0.349E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.349E3\nstatus: 0\ndate_sale: 2019-08-31\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-10\nexpiration_date: 2019-10-05\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.39.64 bffce687-be44-4976-99dd-2682b1616083 2019-09-01 03:25:32.112306 14314 875 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.39.64 bffce687-be44-4976-99dd-2682b1616083 2019-09-01 03:25:32.150003 14315 1411 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 397\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E2\nmove_type: '1'\nsale_id: 1020\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-10\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-10 189.186.39.64 4328bd69-7b4d-4931-af06-f24ffae965d7 2019-09-01 03:25:39.009726 14316 1020 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.39.64 cde168a3-f144-44e1-987b-a68e60d2ba42 2019-09-01 03:25:40.827125 14317 397 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 397\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.5402E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.54E4\ncash_fund: !ruby/object:BigDecimal 18:0.665E3\nphysical_cash: !ruby/object:BigDecimal 18:0.6065E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.39.64 4964faef-9293-42a6-81a9-5df836bcc018 2019-09-01 03:28:08.134067 14318 397 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.39.64 4964faef-9293-42a6-81a9-5df836bcc018 2019-09-01 03:28:08.148139 14319 20 User \N \N 20 User \N update ---\nlast_sign_in_at:\n- 2019-08-30 19:07:37.479658000 Z\n- &1 2019-08-31 16:10:32.575863000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-01 16:30:08.276918242 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124854\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124854\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 2\n- 3\n 6 \N 187.149.63.76 f1f529b4-0634-4c71-a6e7-1550cd58d25b 2019-09-01 16:30:08.318598 14320 20 User \N \N 20 User \N update ---\nunique_session_id:\n- p5nkMwmTjmxrYD4DMrLT\n- 3YYFyJ7-1JSaE8qr8NmM\n 7 \N 187.149.63.76 f1f529b4-0634-4c71-a6e7-1550cd58d25b 2019-09-01 16:30:08.345756 14321 20 User \N \N 20 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 16:10:32.575863000 Z\n- &1 2019-09-01 16:30:08.276918000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-01 16:31:23.213193905 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124854\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 3\n- 4\n 8 \N 187.149.63.76 2c3367ad-4bbb-472f-a7b4-442a0fe79263 2019-09-01 16:31:23.219786 14322 20 User \N \N 20 User \N update ---\nunique_session_id:\n- 3YYFyJ7-1JSaE8qr8NmM\n- bFwCMjeWGjRnXWC9KBqH\n 9 \N 187.149.63.76 2c3367ad-4bbb-472f-a7b4-442a0fe79263 2019-09-01 16:31:23.232685 14323 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 16:45:02.936154000 Z\n- &1 2019-08-31 17:09:22.450425000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-01 16:34:47.149804122 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124854\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 302\n- 303\n 609 \N 187.149.63.76 c6881c7c-321b-4105-9ce6-9ed3fe633992 2019-09-01 16:34:47.156092 14324 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 3U52PS-kMpF6_Sg6Daum\n- qAsPgx7xrcKUXA2JHCSs\n 610 \N 187.149.63.76 c6881c7c-321b-4105-9ce6-9ed3fe633992 2019-09-01 16:34:47.17151 14325 20 User \N \N 20 User \N update ---\nlast_sign_in_at:\n- 2019-09-01 16:30:08.276918000 Z\n- &1 2019-09-01 16:31:23.213193000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-01 16:35:43.217620698 Z\nsign_in_count:\n- 4\n- 5\n 10 \N 187.149.63.76 451a7690-f529-4cda-bb23-1a7d8b414d08 2019-09-01 16:35:43.223491 14326 20 User \N \N 20 User \N update ---\nunique_session_id:\n- bFwCMjeWGjRnXWC9KBqH\n- nAmseU8kCT84RhNXEEH8\n 11 \N 187.149.63.76 451a7690-f529-4cda-bb23-1a7d8b414d08 2019-09-01 16:35:43.236557 14327 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 17:09:22.450425000 Z\n- &1 2019-09-01 16:34:47.149804000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-01 16:36:16.044330684 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124854\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 303\n- 304\n 611 \N 187.149.63.76 48fe3414-f308-4c61-83e7-50fe3ee3e2c8 2019-09-01 16:36:16.050768 14328 2 User \N \N 2 User \N update ---\nunique_session_id:\n- qAsPgx7xrcKUXA2JHCSs\n- g7GT1y7g7ke2qxsAKJBg\n 612 \N 187.149.63.76 48fe3414-f308-4c61-83e7-50fe3ee3e2c8 2019-09-01 16:36:16.0637 14329 398 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.717E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 717.0 187.149.63.76 8e60fc8e-d711-4e91-8143-bf0d94e86d24 2019-09-01 16:37:01.103208 14330 808 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 187.149.63.76 3f085726-18b5-4784-af3c-24252235db94 2019-09-01 17:31:19.849892 14331 808 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.63.76 b3e04326-8d51-4710-8f33-0106ba97f51a 2019-09-01 17:31:27.650127 14332 133 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-09-01\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.63.76 c43cacc3-7978-4745-afbe-619e7d7b91c0 2019-09-01 17:32:22.287935 14333 20 User \N \N 20 User \N update ---\nlast_sign_in_at:\n- 2019-09-01 16:31:23.213193000 Z\n- &1 2019-09-01 16:35:43.217620000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-01 18:20:54.683541399 Z\nsign_in_count:\n- 5\n- 6\n 12 \N 187.149.63.76 885788ab-f07f-4718-94f1-27e9f0cf81c8 2019-09-01 18:20:54.69529 14334 20 User \N \N 20 User \N update ---\nunique_session_id:\n- nAmseU8kCT84RhNXEEH8\n- PtqCys7xVGfxU4-o5gx7\n 13 \N 187.149.63.76 885788ab-f07f-4718-94f1-27e9f0cf81c8 2019-09-01 18:20:54.74389 14335 399 OpenCashRegister \N \N 20 User \N create ---\ncash_register_id: 2\nuser_id: 20\ninitial_cash: !ruby/object:BigDecimal 18:0.4455E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 445.5 187.149.63.76 27a960f8-90b7-43d2-b95f-6530fec29e6e 2019-09-01 18:20:59.077053 14336 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-01 03:05:42.085922000 Z\n- &1 2019-09-01 03:15:57.694147000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-01 18:23:24.716149077 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093568\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143328\n mask_addr: 4294967295\nsign_in_count:\n- 538\n- 539\n 1078 \N 189.186.233.160 0627210b-6df2-4a74-8c73-a956fb2ca2f9 2019-09-01 18:23:24.72629 14337 4 User \N \N 4 User \N update ---\nunique_session_id:\n- EXsan9QMsstKbCcj9-3E\n- _g2xk-szE8xrySMJooxN\n 1079 \N 189.186.233.160 0627210b-6df2-4a74-8c73-a956fb2ca2f9 2019-09-01 18:23:24.750798 14338 20 User \N \N 20 User \N update ---\nlast_sign_in_at:\n- 2019-09-01 16:35:43.217620000 Z\n- &1 2019-09-01 18:20:54.683541000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-01 19:46:31.103512579 Z\nsign_in_count:\n- 6\n- 7\n 14 \N 187.149.63.76 16ea0487-de96-450b-a97a-870523b195f4 2019-09-01 19:46:31.11631 14339 20 User \N \N 20 User \N update ---\nunique_session_id:\n- PtqCys7xVGfxU4-o5gx7\n- YszyLrvobguQYGzC-Ah-\n 15 \N 187.149.63.76 16ea0487-de96-450b-a97a-870523b195f4 2019-09-01 19:46:31.138262 14341 1021 Sale \N \N 20 User \N create ---\ncustomer_id: 162\nuser_id: 20\nopen_cash_register_id: 399\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-01\nsaletype: 2\nseller_id: 9\nsale_code: PV2-V-426\nexpiration_date: 2019-10-06\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 17d6e186-db5d-427a-9c57-dcb1445d4f43 2019-09-01 19:47:22.676229 14342 806 AvailableProduct \N \N 20 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 4 \N 187.149.63.76 17d6e186-db5d-427a-9c57-dcb1445d4f43 2019-09-01 19:47:22.705485 14343 1412 CashRegistersMove \N \N 20 User \N create ---\nopen_cash_register_id: 399\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.21E3\nmove_type: '1'\nsale_id: 1021\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-426\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.21E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-426 187.149.63.76 39aea58b-806d-49ad-8aad-92bbeeb108f6 2019-09-01 19:47:31.300855 14344 1021 Sale \N \N 20 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.63.76 87e4f04b-b5bc-4559-87f7-546e4f69afb4 2019-09-01 19:47:35.870037 14345 20 User \N \N 20 User \N update ---\nlast_sign_in_at:\n- 2019-09-01 18:20:54.683541000 Z\n- &1 2019-09-01 19:46:31.103512000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-01 19:48:30.826012969 Z\nsign_in_count:\n- 7\n- 8\n 16 \N 187.149.63.76 3d44f098-a8e0-4a4d-b640-f0a18ad71ae3 2019-09-01 19:48:30.832564 14346 20 User \N \N 20 User \N update ---\nunique_session_id:\n- YszyLrvobguQYGzC-Ah-\n- XVBzDyLJH8Eu1QdxYmzL\n 17 \N 187.149.63.76 3d44f098-a8e0-4a4d-b640-f0a18ad71ae3 2019-09-01 19:48:30.844502 14347 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-01 03:15:57.694147000 Z\n- &1 2019-09-01 18:23:24.716149000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-01 20:03:30.317961857 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093568\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143328\n mask_addr: 4294967295\nsign_in_count:\n- 539\n- 540\n 1080 \N 189.186.233.160 34f189e0-0bf9-4005-a4c3-5b81eb91e0b9 2019-09-01 20:03:30.327018 14348 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _g2xk-szE8xrySMJooxN\n- K4kVwfBiHytDLLHNp5yH\n 1081 \N 189.186.233.160 34f189e0-0bf9-4005-a4c3-5b81eb91e0b9 2019-09-01 20:03:30.343925 14349 20 User \N \N 20 User \N update ---\nlast_sign_in_at:\n- 2019-09-01 19:46:31.103512000 Z\n- &1 2019-09-01 19:48:30.826012000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-01 20:52:27.666461693 Z\nsign_in_count:\n- 8\n- 9\n 18 \N 187.149.63.76 6ee006ac-9d07-49d3-9175-fbd3672388c1 2019-09-01 20:52:27.697593 14350 20 User \N \N 20 User \N update ---\nunique_session_id:\n- XVBzDyLJH8Eu1QdxYmzL\n- Nr1P1ZPs6zRhz9tzmNy_\n 19 \N 187.149.63.76 6ee006ac-9d07-49d3-9175-fbd3672388c1 2019-09-01 20:52:27.717862 14351 398 CashOut \N \N 20 User \N create ---\nopen_cash_register_id: 399\nuser_id: 20\namount_in: !ruby/object:BigDecimal 18:0.21E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.21E3\ncash_fund: !ruby/object:BigDecimal 18:0.4455E3\nphysical_cash: !ruby/object:BigDecimal 18:0.6555E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.63.76 13123f4f-5d93-422a-bb02-0d386b6edd8c 2019-09-01 20:53:28.72449 14352 399 OpenCashRegister \N \N 20 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 13123f4f-5d93-422a-bb02-0d386b6edd8c 2019-09-01 20:53:28.739325 14353 399 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 398\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.717E3\nphysical_cash: !ruby/object:BigDecimal 18:0.717E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.63.76 95758608-bdff-443f-a668-4d528fc9a395 2019-09-01 20:55:53.643109 14354 398 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 95758608-bdff-443f-a668-4d528fc9a395 2019-09-01 20:55:53.661331 14355 20 User \N \N 20 User \N update ---\nlast_sign_in_at:\n- 2019-09-01 19:48:30.826012000 Z\n- &1 2019-09-01 20:52:27.666461000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-02 16:10:04.794235603 Z\nsign_in_count:\n- 9\n- 10\n 20 \N 187.149.63.76 4e36ec8a-ce3e-4c16-a917-02907c483e44 2019-09-02 16:10:04.838003 14356 20 User \N \N 20 User \N update ---\nunique_session_id:\n- Nr1P1ZPs6zRhz9tzmNy_\n- dqWgdoFwfkx7ZEoUg5t_\n 21 \N 187.149.63.76 4e36ec8a-ce3e-4c16-a917-02907c483e44 2019-09-02 16:10:04.865568 14357 400 OpenCashRegister \N \N 20 User \N create ---\ncash_register_id: 2\nuser_id: 20\ninitial_cash: !ruby/object:BigDecimal 18:0.4455E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 445.5 187.149.63.76 4394507d-867a-481c-91c2-d65be312af40 2019-09-02 16:10:14.470158 14358 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-01 16:34:47.149804000 Z\n- &1 2019-09-01 16:36:16.044330000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-02 16:21:04.411242529 Z\nsign_in_count:\n- 304\n- 305\n 613 \N 187.149.63.76 aec98768-9cb4-4448-be92-2249ad6507e3 2019-09-02 16:21:04.418658 14359 2 User \N \N 2 User \N update ---\nunique_session_id:\n- g7GT1y7g7ke2qxsAKJBg\n- _hJqHygf3rg8XyMNrSZY\n 614 \N 187.149.63.76 aec98768-9cb4-4448-be92-2249ad6507e3 2019-09-02 16:21:04.436993 14360 401 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.717E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 717.0 187.149.63.76 99cd8499-d06b-4892-adee-0626facf00b8 2019-09-02 16:21:26.260627 14361 806 AvailableProduct \N \N 20 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 5 \N 187.149.63.76 2981de8a-1b6a-469d-ae90-861e0905c6f6 2019-09-02 17:24:25.476548 14362 134 Transfer \N \N 20 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-09-02\nuser_id: 20\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.63.76 25f606a0-253b-4759-9f7c-1a2147636d70 2019-09-02 17:24:46.305449 14363 134 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-02\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.63.76 faaff0f7-97d6-481e-82bf-d90d7307919a 2019-09-02 17:26:14.587871 14364 744 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 14 \N 187.149.63.76 faaff0f7-97d6-481e-82bf-d90d7307919a 2019-09-02 17:26:14.603958 14365 1022 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 401\namount: !ruby/object:BigDecimal 18:0.240665E4\ntax: !ruby/object:BigDecimal 18:0.9035E2\ndiscount: !ruby/object:BigDecimal 18:0.654E3\ntotal: !ruby/object:BigDecimal 18:0.1843E4\nstatus: 0\ndate_sale: 2019-09-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-584\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 1524d9ef-53ac-4376-b370-8a5233ba5e30 2019-09-02 17:33:19.199714 14368 85 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.63.76 1524d9ef-53ac-4376-b370-8a5233ba5e30 2019-09-02 17:33:19.297774 14369 109 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 187.149.63.76 1524d9ef-53ac-4376-b370-8a5233ba5e30 2019-09-02 17:33:19.326468 14370 1022 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 b051e882-4b25-4694-8b76-f59168501c51 2019-09-02 17:33:26.668817 14371 1413 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 401\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.45E3\nmove_type: '1'\nsale_id: 1022\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-584\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.45E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-584 187.149.63.76 b051e882-4b25-4694-8b76-f59168501c51 2019-09-02 17:33:26.690846 14372 1414 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 401\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1393E4\nmove_type: '1'\nsale_id: 1022\ncardnumber: 614\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-584\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-584 187.149.63.76 0d30ffda-8ef9-41e9-bbc0-59d88e10ea3b 2019-09-02 17:33:51.077382 14373 163 Customer \N \N 2 User \N create ---\nnick_name: CARLOTA REYES\nphone: "(667) 484-8074"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CARLOTA REYES fue registrado. 187.149.63.76 200b7cf9-2d95-4902-8e18-8b809d33912c 2019-09-02 17:38:58.58531 14374 1023 Sale \N \N 2 User \N create ---\ncustomer_id: 163\nuser_id: 2\nopen_cash_register_id: 401\namount: !ruby/object:BigDecimal 18:0.669E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-09-02\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-585\nexpiration_date: 2019-10-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 b6e0a083-97bf-4306-ad46-79abb57fb7f6 2019-09-02 17:39:12.844136 14375 708 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.63.76 b6e0a083-97bf-4306-ad46-79abb57fb7f6 2019-09-02 17:39:12.879755 14376 1415 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 401\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1023\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-585\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-585 187.149.63.76 84a0baf5-36ed-4090-8af9-c4a66ca3b1a0 2019-09-02 17:39:18.528697 14377 1023 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.63.76 c043d6b5-3c21-4675-aa0b-315f2fefabbb 2019-09-02 17:39:25.053143 14378 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-01 18:23:24.716149000 Z\n- &1 2019-09-01 20:03:30.317961000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-02 18:51:28.577609635 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143328\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114468\n mask_addr: 4294967295\nsign_in_count:\n- 540\n- 541\n 1082 \N 187.149.39.228 208f858d-4581-41b8-b417-56e25df3e54a 2019-09-02 18:51:28.588535 14379 4 User \N \N 4 User \N update ---\nunique_session_id:\n- K4kVwfBiHytDLLHNp5yH\n- MuuQzLkQyVPt66-v9ARb\n 1083 \N 187.149.39.228 208f858d-4581-41b8-b417-56e25df3e54a 2019-09-02 18:51:28.608646 14380 11 ProductsReturn \N \N 2 User \N create ---\nsale_id: 1008\nuser_id: 2\nreturn_code: PV1-D-6\npointsale_id: 1\nnew_amount: !ruby/object:BigDecimal 18:0.799E3\nreturned_amount: !ruby/object:BigDecimal 18:0.799E3\ndifference_amount: !ruby/object:BigDecimal 18:0.0\nis_money_returned: false\n 1 devolución PV1-D-6 creada. 187.149.63.76 16cadeb7-6aab-446e-a1aa-9e1a191b7155 2019-09-02 19:11:46.754823 14381 637 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.63.76 16cadeb7-6aab-446e-a1aa-9e1a191b7155 2019-09-02 19:11:46.789048 14382 872 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.63.76 16cadeb7-6aab-446e-a1aa-9e1a191b7155 2019-09-02 19:11:46.821062 14383 1416 CashRegistersMove \N \N 20 User \N create ---\nopen_cash_register_id: 400\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.489E3\nmove_type: '1'\nsale_id: 1021\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-426 187.149.63.76 3fa52b10-1051-4613-9347-7725abbca285 2019-09-02 19:35:50.662749 14384 1021 Sale \N \N 20 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.63.76 5b3656fd-4455-419d-9016-1d08e311893f 2019-09-02 19:35:54.912829 14385 866 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.63.76 3147d057-6716-4cd9-be72-fa65b0899409 2019-09-02 22:00:58.047293 14386 866 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.63.76 d6cd4166-9407-4c5f-9214-782d04de2e68 2019-09-02 22:01:00.877444 14387 135 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-09-02\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.63.76 a2b99ed0-c6ec-4b9a-b1e9-464575abf0fd 2019-09-02 22:01:02.086984 14388 135 Transfer \N \N 20 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 20\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-02\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.63.76 a1d26ab2-53af-45ed-8d11-a0e06aa5d4a4 2019-09-02 22:20:28.083579 14389 877 AvailableProduct \N \N 20 User \N create ---\nproduct_id: 692\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 a1d26ab2-53af-45ed-8d11-a0e06aa5d4a4 2019-09-02 22:20:28.108378 14390 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 16:52:49.159550000 Z\n- &1 2019-08-31 21:17:17.704153000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-02 22:33:52.498007983 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124854\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 619\n- 620\n 1240 \N 187.149.63.76 055fa32b-3680-4137-bcbf-29023d1fe808 2019-09-02 22:33:52.50565 14391 3 User \N \N 3 User \N update ---\nunique_session_id:\n- omMm8oyXKLyXUZhUsPRG\n- 1-KBUWUpoBAx-K4bqHvh\n 1241 \N 187.149.63.76 055fa32b-3680-4137-bcbf-29023d1fe808 2019-09-02 22:33:52.523115 14392 1024 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 400\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-09-02\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-427\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 acd15187-9fd6-4ae2-9441-d8e0637c9d50 2019-09-02 22:34:20.1934 14393 717 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.63.76 acd15187-9fd6-4ae2-9441-d8e0637c9d50 2019-09-02 22:34:20.233418 14394 1024 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 dea96efa-fb4f-4124-8b14-a73a5d2e07dd 2019-09-02 22:34:24.635978 14395 1417 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 400\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.549E3\nmove_type: '1'\nsale_id: 1024\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-427\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-427 187.149.63.76 dea96efa-fb4f-4124-8b14-a73a5d2e07dd 2019-09-02 22:34:24.660431 14396 130 Transfer \N \N 3 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 3\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-02\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.63.76 884b16b1-6a07-4108-a922-d8091fda6fb7 2019-09-02 22:36:43.322118 14397 800 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.63.76 884b16b1-6a07-4108-a922-d8091fda6fb7 2019-09-02 22:36:43.345918 14398 717 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.63.76 61c963da-cd9e-4f7c-96e3-49c591e271d6 2019-09-02 22:37:58.469747 14399 717 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.63.76 d67d1fe5-61fb-430c-ba6a-20707a49747f 2019-09-02 22:38:02.417665 14400 136 Transfer \N \N 3 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-09-02\nuser_id: 3\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.63.76 a9567d2a-5c40-412f-a30f-1bf676220025 2019-09-02 22:38:08.704639 14401 136 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-02\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.63.76 598f75aa-e7b6-4f10-86c3-1f5aa192714e 2019-09-02 22:38:39.519726 14402 707 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 12 \N 187.149.63.76 598f75aa-e7b6-4f10-86c3-1f5aa192714e 2019-09-02 22:38:39.543148 14403 1025 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 401\namount: !ruby/object:BigDecimal 18:0.2797E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2797E4\nstatus: 0\ndate_sale: 2019-09-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-586\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 95be2287-3fec-4d63-aa10-c5ae51f9e662 2019-09-03 00:11:20.632731 14404 703 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.63.76 95be2287-3fec-4d63-aa10-c5ae51f9e662 2019-09-03 00:11:20.665709 14405 872 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.63.76 95be2287-3fec-4d63-aa10-c5ae51f9e662 2019-09-03 00:11:20.697406 14406 810 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.63.76 95be2287-3fec-4d63-aa10-c5ae51f9e662 2019-09-03 00:11:20.72442 14407 1025 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 cddf3364-dfc7-4d4d-99bf-4a6d0f4264d1 2019-09-03 00:11:28.205678 14408 1418 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 401\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2797E4\nmove_type: '1'\nsale_id: 1025\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-586\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2797E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-586 187.149.63.76 cddf3364-dfc7-4d4d-99bf-4a6d0f4264d1 2019-09-03 00:11:28.235792 14409 1026 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 401\namount: !ruby/object:BigDecimal 18:0.679E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.679E3\nstatus: 0\ndate_sale: 2019-09-02\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-587\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 8e080057-bd86-4551-be48-67fbcaa2200c 2019-09-03 00:18:04.306801 14410 705 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.63.76 8e080057-bd86-4551-be48-67fbcaa2200c 2019-09-03 00:18:04.333004 14411 1026 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 68941c22-ca3f-486c-a93e-0cdae1c7a65d 2019-09-03 00:18:08.781231 14412 1419 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 401\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.679E3\nmove_type: '1'\nsale_id: 1026\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-587\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.679E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-587 187.149.63.76 68941c22-ca3f-486c-a93e-0cdae1c7a65d 2019-09-03 00:18:08.802217 14413 1027 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 401\namount: !ruby/object:BigDecimal 18:0.579E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.579E3\nstatus: 0\ndate_sale: 2019-09-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-588\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 f8c98368-465d-4156-8a01-15037c7de14e 2019-09-03 00:20:28.294617 14414 633 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 187.149.63.76 f8c98368-465d-4156-8a01-15037c7de14e 2019-09-03 00:20:28.319336 14415 1027 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 74badcb3-7c22-4c19-b5fe-5c39f1e1d002 2019-09-03 00:20:33.509825 14468 44 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.58.97 f7313c04-4741-4b59-b420-9867eaf1c1fd 2019-09-03 18:52:41.637297 14469 51 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.58.97 2ffdf478-5a2e-4088-8d0c-3d97cd166a8b 2019-09-03 18:52:56.453147 14416 1420 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 401\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.579E3\nmove_type: '1'\nsale_id: 1027\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-588\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.579E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-588 187.149.63.76 74badcb3-7c22-4c19-b5fe-5c39f1e1d002 2019-09-03 00:20:33.531302 14417 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-01 03:09:03.515163000 Z\n- &1 2019-09-01 03:16:41.417742000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 00:42:05.258811208 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093568\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103514\n mask_addr: 4294967295\nsign_in_count:\n- 14\n- 15\n 30 \N 189.186.78.26 9bf59fe5-23de-4b89-83a0-84db97afc04e 2019-09-03 00:42:05.270865 14418 18 User \N \N 18 User \N update ---\nunique_session_id:\n- V-h8swo4wRqfGEr7rACu\n- nVDQBL_DERA3aRhqhqv9\n 31 \N 189.186.78.26 9bf59fe5-23de-4b89-83a0-84db97afc04e 2019-09-03 00:42:05.289991 14419 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-08-30 23:38:01.678147000 Z\n- &1 2019-08-31 04:20:12.009827000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 01:05:54.686327266 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124854\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 132\n- 133\n 266 \N 187.149.63.76 eefab132-d22d-4f78-b948-97d330af6bf5 2019-09-03 01:05:54.696456 14420 10 User \N \N 10 User \N update ---\nunique_session_id:\n- KWRauzJDj2z_CorQ1E32\n- 1_f7Rz2gVRaPsM_shKU4\n 267 \N 187.149.63.76 eefab132-d22d-4f78-b948-97d330af6bf5 2019-09-03 01:05:54.71574 14421 133 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-02\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.78.26 b92c6129-8d83-4f03-8424-843ef3b1eb2e 2019-09-03 01:06:05.404155 14422 835 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.7E1\n 6 \N 189.186.78.26 b92c6129-8d83-4f03-8424-843ef3b1eb2e 2019-09-03 01:06:05.427059 14423 835 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 189.186.78.26 ef9905f1-d164-4ed4-a5f9-8c48dd1a1e38 2019-09-03 01:06:31.946682 14424 835 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 189.186.78.26 892e1e01-bd11-458f-8b98-5ef38f1775ce 2019-09-03 01:06:34.634807 14425 137 Transfer \N \N 18 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-09-02\nuser_id: 18\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.78.26 73fbe211-9dbe-4f05-9962-b43c092780fb 2019-09-03 01:06:35.699794 14426 400 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 400\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.1038E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.9835E3\nphysical_cash: !ruby/object:BigDecimal 18:0.14835E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.63.76 a13befb0-ef30-4b41-8269-03bd84ac73e9 2019-09-03 01:31:54.417384 14427 400 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 a13befb0-ef30-4b41-8269-03bd84ac73e9 2019-09-03 01:31:54.439767 14428 401 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 401\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6098E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.45E4\ncash_fund: !ruby/object:BigDecimal 18:0.922E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5422E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.63.76 cefd7eec-17a3-4487-a7ac-5d9ac5df8467 2019-09-03 01:40:09.973095 14429 401 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 cefd7eec-17a3-4487-a7ac-5d9ac5df8467 2019-09-03 01:40:09.986893 14430 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-01 20:03:30.317961000 Z\n- &1 2019-09-02 18:51:28.577609000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 02:07:50.534229199 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143328\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114468\n mask_addr: 4294967295\nsign_in_count:\n- 541\n- 542\n 1084 \N 187.149.39.228 eb2812e4-73c9-4531-b567-90fac6ac8f35 2019-09-03 02:07:50.543152 14431 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MuuQzLkQyVPt66-v9ARb\n- FtPxpf5nK3JGu3XSAUes\n 1085 \N 187.149.39.228 eb2812e4-73c9-4531-b567-90fac6ac8f35 2019-09-03 02:07:50.563498 14432 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-02 18:51:28.577609000 Z\n- &1 2019-09-03 02:07:50.534229000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 03:14:00.943213352 Z\nsign_in_count:\n- 542\n- 543\n 1086 \N 187.149.39.228 8d151f08-d319-4076-a35b-a0b26269f490 2019-09-03 03:14:00.949248 14433 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FtPxpf5nK3JGu3XSAUes\n- y-Eh1niTZr9dynWe3XxX\n 1087 \N 187.149.39.228 8d151f08-d319-4076-a35b-a0b26269f490 2019-09-03 03:14:00.963996 14434 20 User \N \N 20 User \N update ---\nlast_sign_in_at:\n- 2019-09-01 20:52:27.666461000 Z\n- &1 2019-09-02 16:10:04.794235000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 16:11:38.586713278 Z\nsign_in_count:\n- 10\n- 11\n 22 \N 187.149.63.76 18cf2fb8-908c-4d2c-b61d-016cb7e16c82 2019-09-03 16:11:38.619277 14435 20 User \N \N 20 User \N update ---\nunique_session_id:\n- dqWgdoFwfkx7ZEoUg5t_\n- pJSsMz_XEs4H_-xzykzr\n 23 \N 187.149.63.76 18cf2fb8-908c-4d2c-b61d-016cb7e16c82 2019-09-03 16:11:38.639469 14436 402 OpenCashRegister \N \N 20 User \N create ---\ncash_register_id: 2\nuser_id: 20\ninitial_cash: !ruby/object:BigDecimal 18:0.9835E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 983.5 187.149.63.76 0d9b579c-0d2a-496f-aaa5-c38ece8fc6cf 2019-09-03 16:17:16.838812 14437 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-01 16:36:16.044330000 Z\n- &1 2019-09-02 16:21:04.411242000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 16:29:10.822352855 Z\nsign_in_count:\n- 305\n- 306\n 615 \N 187.149.63.76 dc72f7a9-d6df-4cc8-89e6-544fe8f30eb9 2019-09-03 16:29:10.828114 14438 2 User \N \N 2 User \N update ---\nunique_session_id:\n- _hJqHygf3rg8XyMNrSZY\n- bNSi1P9xh69chs9zuZF-\n 616 \N 187.149.63.76 dc72f7a9-d6df-4cc8-89e6-544fe8f30eb9 2019-09-03 16:29:10.847837 14439 403 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.922E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 922.0 187.149.63.76 5bbf56db-7390-4e6a-a08f-5f23c93ad5c0 2019-09-03 16:53:42.567843 14470 499 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.58.97 3b438fce-608b-4435-8938-97bcb8141435 2019-09-03 18:53:03.32442 14440 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-01 03:16:41.417742000 Z\n- &1 2019-09-03 00:42:05.258811000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 17:35:32.756882378 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093568\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103514\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103514\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\nsign_in_count:\n- 15\n- 16\n 32 \N 189.186.58.97 e0ef065d-544f-4459-be80-11ee6ccbbc6f 2019-09-03 17:35:32.785175 14441 18 User \N \N 18 User \N update ---\nunique_session_id:\n- nVDQBL_DERA3aRhqhqv9\n- V6og9QZYr4syUcigQ4GA\n 33 \N 189.186.58.97 e0ef065d-544f-4459-be80-11ee6ccbbc6f 2019-09-03 17:35:32.805478 14442 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 02:07:50.534229000 Z\n- &1 2019-09-03 03:14:00.943213000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 17:36:20.185995532 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114468\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\nsign_in_count:\n- 543\n- 544\n 1088 \N 189.186.58.97 7a24189f-005c-4dc9-a06d-ec413923315b 2019-09-03 17:36:20.206257 14443 4 User \N \N 4 User \N update ---\nunique_session_id:\n- y-Eh1niTZr9dynWe3XxX\n- Bmp_hGbMH7va3sx_2-m2\n 1089 \N 189.186.58.97 7a24189f-005c-4dc9-a06d-ec413923315b 2019-09-03 17:36:20.219805 14444 345 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 0353384d-ec6b-4a93-acdb-d1dee02e2044 2019-09-03 18:43:03.751133 14445 364 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 22eabced-955d-421c-a683-fab1a7b290c3 2019-09-03 18:43:10.082468 14446 348 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 28472253-8751-47bd-8b7e-356ac1f71cc5 2019-09-03 18:43:19.478252 14447 349 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 485f9732-3313-4b60-b2b8-ad3ccfbc6912 2019-09-03 18:43:28.138736 14448 350 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.58.97 52d660eb-c1c9-4696-9078-20157eefb5d5 2019-09-03 18:43:40.014723 14449 351 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 6179f492-81ce-4902-9914-c58cd34a5d84 2019-09-03 18:43:47.223584 14450 363 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 40c6b931-4227-4193-862f-1e4e49bf9056 2019-09-03 18:44:12.454787 14451 353 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 1bc1d7ff-cbe4-4469-99d6-3f093c5f140d 2019-09-03 18:44:20.008 14452 357 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 d226bb02-4c86-4a11-bb54-d17f20786321 2019-09-03 18:44:29.199826 14453 362 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 7bf3f0c9-0b92-4f58-84bb-7dc7f055cb1d 2019-09-03 18:44:39.926292 14454 346 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.58.97 8af90a50-f48e-40ce-ab7f-1bb89f958def 2019-09-03 18:44:49.306899 14455 350 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.58.97 8b9a872f-2552-4943-a6a9-7612779733d9 2019-09-03 18:45:05.562434 14456 346 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.58.97 f17a80e4-fe98-40ae-837a-5dbf1160671b 2019-09-03 18:45:17.547964 14457 138 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.58.97 3d9ec3eb-e9bb-4fac-be53-d589c0bf2449 2019-09-03 18:45:21.700647 14458 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 03:14:00.943213000 Z\n- &1 2019-09-03 17:36:20.185995000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 18:48:39.907731772 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114468\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934454\n mask_addr: 4294967295\nsign_in_count:\n- 544\n- 545\n 1090 \N 200.68.135.246 2813aa17-5421-4fad-9848-aa86d24bffd1 2019-09-03 18:48:39.916601 14459 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Bmp_hGbMH7va3sx_2-m2\n- ekdEyzgcNr-_tyqDzyLZ\n 1091 \N 200.68.135.246 2813aa17-5421-4fad-9848-aa86d24bffd1 2019-09-03 18:48:39.931891 14460 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 17:36:20.185995000 Z\n- &1 2019-09-03 18:48:39.907731000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 18:49:25.359439756 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934454\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934454\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\nsign_in_count:\n- 545\n- 546\n 1092 \N 189.186.58.97 f0b4d29c-7461-4c87-96ba-a8536841d535 2019-09-03 18:49:25.370971 14461 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ekdEyzgcNr-_tyqDzyLZ\n- a1MdaNiBEV5Z6MNxsWu7\n 1093 \N 189.186.58.97 f0b4d29c-7461-4c87-96ba-a8536841d535 2019-09-03 18:49:25.393092 14462 443 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.58.97 6fe30476-5033-48f2-bfca-8857aa247989 2019-09-03 18:51:52.836432 14463 443 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.58.97 36eacf2d-80ef-4404-a59c-f7cc6c957821 2019-09-03 18:51:54.889534 14464 53 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.58.97 3aceb1c7-d7ba-42c8-8d0d-aa7efb7233cd 2019-09-03 18:52:09.611442 14465 473 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.58.97 2fae2580-c6c2-4271-86e1-ee3e2f2485eb 2019-09-03 18:52:18.781918 14466 440 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.58.97 f9c1b983-b6de-4988-9155-2644106d49fc 2019-09-03 18:52:27.666545 14467 43 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 16bf58e7-fc2c-422a-beeb-d0217d64201b 2019-09-03 18:52:35.859857 14471 586 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.58.97 d971682e-3f00-4349-902b-5760da7bbd3c 2019-09-03 18:53:10.768802 14472 587 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.58.97 567def66-e6c3-4347-a8a6-97922fd6d6ed 2019-09-03 18:53:19.190867 14473 451 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.58.97 29a1c9db-bfc1-4a16-b7b1-d0075b78525e 2019-09-03 18:53:28.739399 14474 453 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.58.97 657821fc-0ae8-43d1-9a42-e1e7fe6c9b9f 2019-09-03 18:53:37.985366 14475 45 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 0a4f70aa-357d-4072-8d27-c19d575f8251 2019-09-03 18:53:47.606525 14476 52 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 195814f8-eef7-47b3-a98f-a5b3e40bea89 2019-09-03 18:54:00.230076 14477 566 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.58.97 e30093ff-2289-4d7d-adc2-07752645d1d0 2019-09-03 18:54:10.372205 14478 520 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.58.97 d4319c4f-b78d-4bea-9d7b-610a83860b91 2019-09-03 18:54:15.116158 14479 49 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.58.97 a73ea149-b9bb-4801-b395-ca39bd7b97eb 2019-09-03 18:54:29.406742 14480 504 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.58.97 233ae21e-112d-422c-a778-31a39444fb08 2019-09-03 18:54:39.651774 14481 498 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.58.97 b8cd49b2-234b-49d1-be50-a25dc0c976f4 2019-09-03 18:54:51.011057 14482 44 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.58.97 857c6089-eb9e-4102-887f-04ffe2fe76d6 2019-09-03 18:55:00.877744 14483 520 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.58.97 9bbebb3e-2053-4574-93ce-95df562cf89d 2019-09-03 18:55:11.497644 14484 139 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.58.97 cf83b59b-feb5-47b3-83b4-8207dbe9bfed 2019-09-03 18:56:24.754402 14485 706 Product \N \N 4 User \N create ---\nsku: BOL-706\nname: BOUN140MULTME\ndescription: estampado del logo Cloe tiene todo lo que necesitas para armar tu juego\n perfecto\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: BOUN140_MULT.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-706 fue creado. 189.186.58.97 83f2562d-07e1-49ad-a542-8a77515bc7f9 2019-09-03 19:02:09.558756 14486 706 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000706'\n 2 \N 189.186.58.97 83f2562d-07e1-49ad-a542-8a77515bc7f9 2019-09-03 19:02:09.609614 14487 878 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 706\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 83f2562d-07e1-49ad-a542-8a77515bc7f9 2019-09-03 19:02:09.636348 14488 707 Product \N \N 4 User \N create ---\nsku: BOL-707\nname: 3BLCO19123\ndescription: MOCHILA CLOE COLOR ROSA\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 19123.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-707 fue creado. 189.186.58.97 fde0afc0-cfc7-42fd-b8df-26e77a39226d 2019-09-03 19:09:38.591807 14489 707 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000707'\n 2 \N 189.186.58.97 fde0afc0-cfc7-42fd-b8df-26e77a39226d 2019-09-03 19:09:38.623823 14490 879 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 707\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 fde0afc0-cfc7-42fd-b8df-26e77a39226d 2019-09-03 19:09:38.652419 14491 708 Product \N \N 4 User \N create ---\nsku: BOL-708\nname: 1BLCO19019\ndescription: 'MOCHILA CLOE NEGRA '\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-708 fue creado. 189.186.58.97 ee1c9270-aa9f-4d80-a9ba-58dea6368969 2019-09-03 19:24:06.99547 14492 708 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000708'\n 2 \N 189.186.58.97 ee1c9270-aa9f-4d80-a9ba-58dea6368969 2019-09-03 19:24:07.023082 14493 880 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 708\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 ee1c9270-aa9f-4d80-a9ba-58dea6368969 2019-09-03 19:24:07.050915 14494 709 Product \N \N 4 User \N create ---\nsku: BOL-709\nname: OZAI1890\ndescription: Aplicación decorativa de mascada en tapa. Asa adicional ajustable y removible.\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: OZAI890_NEGR_1_90x130.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-709 fue creado. 189.186.58.97 02d7393e-0a24-40a6-bf1a-d5e6bbfed7b7 2019-09-03 19:26:02.849783 14495 709 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000709'\n 2 \N 189.186.58.97 02d7393e-0a24-40a6-bf1a-d5e6bbfed7b7 2019-09-03 19:26:02.883086 14496 881 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 709\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 02d7393e-0a24-40a6-bf1a-d5e6bbfed7b7 2019-09-03 19:26:02.911329 14497 135 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-7\namount: !ruby/object:BigDecimal 18:0.3148E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3148E4\nobservations: ''\npurchase_date: 2019-09-03\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-7 por $ 3148.0 MXN creada. 189.186.58.97 a3950abc-5dc7-4daf-b81f-aaef000f9509 2019-09-03 19:26:06.093333 14498 878 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.58.97 a3950abc-5dc7-4daf-b81f-aaef000f9509 2019-09-03 19:26:06.122003 14499 879 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.58.97 a3950abc-5dc7-4daf-b81f-aaef000f9509 2019-09-03 19:26:06.172002 14500 880 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.58.97 a3950abc-5dc7-4daf-b81f-aaef000f9509 2019-09-03 19:26:06.195722 14501 881 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.58.97 a3950abc-5dc7-4daf-b81f-aaef000f9509 2019-09-03 19:26:06.222453 14502 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 00:42:05.258811000 Z\n- &1 2019-09-03 17:35:32.756882000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 19:26:22.713170638 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103514\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\nsign_in_count:\n- 16\n- 17\n 34 \N 189.186.58.97 4cafbfc7-f656-4d03-be79-e72aea5db1a1 2019-09-03 19:26:22.719884 14503 18 User \N \N 18 User \N update ---\nunique_session_id:\n- V6og9QZYr4syUcigQ4GA\n- kF6gaT2FjNVP-v-GA6Wf\n 35 \N 189.186.58.97 4cafbfc7-f656-4d03-be79-e72aea5db1a1 2019-09-03 19:26:22.737441 14504 139 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.58.97 4c96cfed-2e4e-4774-953d-309f44d392d9 2019-09-03 19:26:33.680845 14505 882 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 445\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 4c96cfed-2e4e-4774-953d-309f44d392d9 2019-09-03 19:26:33.704314 14506 883 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 55\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 4c96cfed-2e4e-4774-953d-309f44d392d9 2019-09-03 19:26:33.730308 14507 884 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 473\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 4c96cfed-2e4e-4774-953d-309f44d392d9 2019-09-03 19:26:33.755432 14508 885 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 440\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 4c96cfed-2e4e-4774-953d-309f44d392d9 2019-09-03 19:26:33.776087 14509 886 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 45\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 4c96cfed-2e4e-4774-953d-309f44d392d9 2019-09-03 19:26:33.796025 14510 887 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 53\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 4c96cfed-2e4e-4774-953d-309f44d392d9 2019-09-03 19:26:33.816329 14511 888 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 487\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 4c96cfed-2e4e-4774-953d-309f44d392d9 2019-09-03 19:26:33.838704 14512 889 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 544\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 4c96cfed-2e4e-4774-953d-309f44d392d9 2019-09-03 19:26:33.865853 14513 890 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 545\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 4c96cfed-2e4e-4774-953d-309f44d392d9 2019-09-03 19:26:33.895566 14514 891 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 451\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 4c96cfed-2e4e-4774-953d-309f44d392d9 2019-09-03 19:26:33.91673 14515 892 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 453\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 4c96cfed-2e4e-4774-953d-309f44d392d9 2019-09-03 19:26:33.937893 14516 893 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 47\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 4c96cfed-2e4e-4774-953d-309f44d392d9 2019-09-03 19:26:33.959693 14517 894 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 54\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 4c96cfed-2e4e-4774-953d-309f44d392d9 2019-09-03 19:26:33.981396 14518 895 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 530\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 4c96cfed-2e4e-4774-953d-309f44d392d9 2019-09-03 19:26:34.003993 14519 896 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 51\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 4c96cfed-2e4e-4774-953d-309f44d392d9 2019-09-03 19:26:34.026665 14573 465 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.58.97 f2b67e58-3c37-468d-bc87-1926556cad63 2019-09-03 20:45:32.39044 14520 897 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 492\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 4c96cfed-2e4e-4774-953d-309f44d392d9 2019-09-03 19:26:34.053833 14521 898 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 486\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 4c96cfed-2e4e-4774-953d-309f44d392d9 2019-09-03 19:26:34.077464 14522 899 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 46\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 4c96cfed-2e4e-4774-953d-309f44d392d9 2019-09-03 19:26:34.100051 14523 900 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 495\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 4c96cfed-2e4e-4774-953d-309f44d392d9 2019-09-03 19:26:34.125933 14524 138 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.58.97 23a8e990-942d-4cba-b1f8-934c6614da46 2019-09-03 19:26:39.602191 14525 901 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 347\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 23a8e990-942d-4cba-b1f8-934c6614da46 2019-09-03 19:26:39.627789 14526 902 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 366\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 23a8e990-942d-4cba-b1f8-934c6614da46 2019-09-03 19:26:39.649349 14527 903 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 350\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 23a8e990-942d-4cba-b1f8-934c6614da46 2019-09-03 19:26:39.669468 14528 904 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 351\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 23a8e990-942d-4cba-b1f8-934c6614da46 2019-09-03 19:26:39.690127 14529 905 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 353\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 23a8e990-942d-4cba-b1f8-934c6614da46 2019-09-03 19:26:39.7098 14530 906 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 365\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 23a8e990-942d-4cba-b1f8-934c6614da46 2019-09-03 19:26:39.730372 14531 907 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 355\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 23a8e990-942d-4cba-b1f8-934c6614da46 2019-09-03 19:26:39.749952 14532 908 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 359\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 23a8e990-942d-4cba-b1f8-934c6614da46 2019-09-03 19:26:39.769171 14533 909 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 364\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 23a8e990-942d-4cba-b1f8-934c6614da46 2019-09-03 19:26:39.788215 14534 910 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 352\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 23a8e990-942d-4cba-b1f8-934c6614da46 2019-09-03 19:26:39.807443 14535 911 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 348\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 23a8e990-942d-4cba-b1f8-934c6614da46 2019-09-03 19:26:39.828941 14536 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-02 16:21:04.411242000 Z\n- &1 2019-09-03 16:29:10.822352000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 19:38:06.165697663 Z\nsign_in_count:\n- 306\n- 307\n 617 \N 187.149.63.76 4773f287-bf1b-44a9-8d0c-0541e6875a26 2019-09-03 19:38:06.195328 14537 2 User \N \N 2 User \N update ---\nunique_session_id:\n- bNSi1P9xh69chs9zuZF-\n- Tw5FNJfFGu8B_Zc-BfAm\n 618 \N 187.149.63.76 4773f287-bf1b-44a9-8d0c-0541e6875a26 2019-09-03 19:38:06.218202 14538 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 18:48:39.907731000 Z\n- &1 2019-09-03 18:49:25.359439000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 19:38:15.484063344 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934454\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\nsign_in_count:\n- 546\n- 547\n 1094 \N 189.186.58.97 cd0550b8-752f-4efe-9fdd-27adbc9f639c 2019-09-03 19:38:15.490582 14539 4 User \N \N 4 User \N update ---\nunique_session_id:\n- a1MdaNiBEV5Z6MNxsWu7\n- kzxcJR6dW_t_ysxmsyz1\n 1095 \N 189.186.58.97 cd0550b8-752f-4efe-9fdd-27adbc9f639c 2019-09-03 19:38:15.504299 14540 3 User \N \N 3 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 21:17:17.704153000 Z\n- &1 2019-09-02 22:33:52.498007000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 20:08:21.353113191 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124854\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 620\n- 621\n 1242 \N 187.149.63.76 4f767f30-59e8-49f2-be10-afc6ac07d373 2019-09-03 20:08:21.383819 14541 3 User \N \N 3 User \N update ---\nunique_session_id:\n- 1-KBUWUpoBAx-K4bqHvh\n- 5GxZbW83YDkrd1AyAjGY\n 1243 \N 187.149.63.76 4f767f30-59e8-49f2-be10-afc6ac07d373 2019-09-03 20:08:21.412355 14542 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 16:29:10.822352000 Z\n- &1 2019-09-03 19:38:06.165697000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 20:10:25.499601347 Z\nsign_in_count:\n- 307\n- 308\n 619 \N 187.149.63.76 49b98c6a-964b-4262-9ccd-04daba5f6d94 2019-09-03 20:10:25.505854 14543 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Tw5FNJfFGu8B_Zc-BfAm\n- sh828LMy-Ez8cRgGRQ_M\n 620 \N 187.149.63.76 49b98c6a-964b-4262-9ccd-04daba5f6d94 2019-09-03 20:10:25.525074 20282 880 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '880'\n is_parent: false\n sku: CON-880\n name: CJT-0004\n description: "Conjunto BLUE S lentejuelas plata ST-92270\\r\\n"\n price_base: '380.0'\n price_sale: '999.0'\n img_product: PHOTO-2019-10-15-21-54-32.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '10'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000880'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-29 01:38:11.77605'\n updated_at: &12 2019-11-05 20:46:35.543075716 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '880'\n sku: CON-880\n name: CJT-0004\n description: "Conjunto BLUE S lentejuelas plata ST-92270\\r\\n"\n price_base: '380.00'\n price_sale: '999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-29 01:38:11.77605'\n updated_at: '2019-10-29 01:38:11.814423'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000880'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '10'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '880'\n type: *3\n value: 880\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CON-880\n type: *7\n value: CON-880\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CJT-0004\n type: *8\n value: CJT-0004\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "Conjunto BLUE S lentejuelas plata ST-92270\\r\\n"\n type: *6\n value: "Conjunto BLUE S lentejuelas plata ST-92270\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '380.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.38E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-10-15-21-54-32.jpg\n type: *2\n value: PHOTO-2019-10-15-21-54-32.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '10'\n type: *3\n value: 10\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000880'\n type: *2\n value: '0000880'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-29 01:38:11.77605'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-10-15-21-54-32.jpg\n 3 El producto CON-880 fue modificado. 187.149.74.215 44bfa187-40ce-4e03-a0e9-7688cdbf3da0 2019-11-05 20:46:35.593442 14544 1028 Sale \N \N 3 User \N create ---\ncustomer_id: 1\nuser_id: 3\nopen_cash_register_id: 402\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-09-03\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-428\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 40bcedb8-eb4a-42ee-87ca-6441e623de37 2019-09-03 20:14:46.216011 14545 753 AvailableProduct \N \N 3 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.63.76 40bcedb8-eb4a-42ee-87ca-6441e623de37 2019-09-03 20:14:46.245688 14546 1028 Sale \N \N 3 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 ebbba64c-287f-46b5-98c7-9e1d074a85a8 2019-09-03 20:15:04.288059 14547 1421 CashRegistersMove \N \N 3 User \N create ---\nopen_cash_register_id: 402\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.479E3\nmove_type: '1'\nsale_id: 1028\ncardnumber: 3276\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-428\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-428 187.149.63.76 ebbba64c-287f-46b5-98c7-9e1d074a85a8 2019-09-03 20:15:04.312507 14548 1029 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 403\namount: !ruby/object:BigDecimal 18:0.1197E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1197E4\nstatus: 0\ndate_sale: 2019-09-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-589\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 170fa389-b6ae-46ae-b805-68784d1b3608 2019-09-03 20:16:12.62401 14549 786 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.12E2\n 10 \N 187.149.63.76 170fa389-b6ae-46ae-b805-68784d1b3608 2019-09-03 20:16:12.652771 14550 536 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.63.76 170fa389-b6ae-46ae-b805-68784d1b3608 2019-09-03 20:16:12.677263 14551 1029 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 65ab6aff-9dfb-4958-903f-fa5e33b7f8b7 2019-09-03 20:17:31.017465 14552 1422 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 403\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1197E4\nmove_type: '1'\nsale_id: 1029\ncardnumber: 3276\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-589\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-589 187.149.63.76 65ab6aff-9dfb-4958-903f-fa5e33b7f8b7 2019-09-03 20:17:31.038465 14553 333 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.58.97 f29e922e-4eb8-4063-990a-b1bfd1cb58ca 2019-09-03 20:37:13.643864 14554 333 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.58.97 4f4668fc-e9c3-4625-a464-738397cb5d6f 2019-09-03 20:37:16.497659 14555 335 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.58.97 c5d8a545-1a6c-4c81-9b51-91ff5a7aba89 2019-09-03 20:38:32.101954 14556 337 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 a09ab0c6-53d3-4d72-a1f1-21e457538f63 2019-09-03 20:38:42.480198 14557 336 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 ac5f311a-15d2-4bfa-b718-ba1b8568906c 2019-09-03 20:39:06.044518 14558 331 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.58.97 c20f3e60-8245-4561-a30c-a0fbea1066a5 2019-09-03 20:41:19.992545 14559 331 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.58.97 d17a8e0e-b193-42d6-9730-95cc073a4d62 2019-09-03 20:41:23.071526 14560 140 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.58.97 6aa1d6e3-bbdb-4559-95f0-99e3553b121f 2019-09-03 20:42:13.114663 14561 463 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.58.97 7d37aa16-1eb2-4329-aa40-02b1aef175cf 2019-09-03 20:42:50.175777 14562 463 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.58.97 08684b08-3225-4762-ace0-c48241a46349 2019-09-03 20:42:55.541397 14563 141 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.58.97 8485bd26-e5a0-420e-862c-68953c5ba4d4 2019-09-03 20:42:56.058207 14564 37 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 e60ef288-dafc-4af7-a72c-a5072ceb907f 2019-09-03 20:43:47.956246 14565 466 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.58.97 86ed836c-cfc9-44f0-9d51-8a90ac5b8e6f 2019-09-03 20:43:53.576547 14566 467 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.58.97 977aa1ae-6854-41d6-8f58-4924c162309a 2019-09-03 20:43:59.940165 14567 29 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.58.97 9ada20b6-e060-4eae-9787-0c0f2b3fa555 2019-09-03 20:44:08.544862 14568 732 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.58.97 d178b453-ef3d-4518-aa77-e4f191028842 2019-09-03 20:44:17.675312 14569 31 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.58.97 283a90b3-5915-460e-8c62-d2e86d6a8312 2019-09-03 20:44:25.17342 14570 34 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 e1227748-c077-48b3-a3ce-c0b3c03091a7 2019-09-03 20:44:45.38179 14571 33 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 6e5e7bc1-ba70-4f57-919d-f6b06630a0cb 2019-09-03 20:45:06.729973 14572 36 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 a7d9bc24-09d9-43ed-8a8d-4c5d612ecac4 2019-09-03 20:45:15.036791 14574 38 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 bd46ee43-f048-47a0-bdf0-03da21db134a 2019-09-03 20:45:39.138567 14575 30 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.58.97 20687c65-351a-4ef6-b7b9-4a5008f33fcb 2019-09-03 20:45:46.396544 14576 32 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.58.97 f797ce3d-3da8-4389-89b8-18981f24d120 2019-09-03 20:45:58.060413 14577 29 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.58.97 494c4d52-5a3a-4dba-9390-47e4beda72b0 2019-09-03 20:46:02.968137 14578 142 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.58.97 5c44642c-362c-4680-baf1-aa259be40ae0 2019-09-03 20:47:30.848473 14579 31 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.58.97 d36aef19-6c86-4cef-836e-8abb961e90fa 2019-09-03 20:48:23.747866 14580 35 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 3465b99b-8e8a-4f24-905b-c931df710140 2019-09-03 20:48:36.499496 14581 32 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.58.97 89cd4244-c410-45a0-9582-81b71eb23bf2 2019-09-03 20:48:49.651496 14582 143 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.58.97 44ad05e5-02fe-4fa9-aaed-1243bca8e372 2019-09-03 20:48:51.58936 14583 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 17:35:32.756882000 Z\n- &1 2019-09-03 19:26:22.713170000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 20:48:59.745888426 Z\nsign_in_count:\n- 17\n- 18\n 36 \N 189.186.58.97 cdab6bed-d669-4f30-83d0-9222c7326a93 2019-09-03 20:48:59.753385 14584 18 User \N \N 18 User \N update ---\nunique_session_id:\n- kF6gaT2FjNVP-v-GA6Wf\n- k7NfZrgD5Ld4AtJwsTdK\n 37 \N 189.186.58.97 cdab6bed-d669-4f30-83d0-9222c7326a93 2019-09-03 20:48:59.770412 14585 143 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.58.97 815d5a87-94b7-48e3-a17a-cf46b8ee035b 2019-09-03 20:53:31.259374 14586 912 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 33\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 815d5a87-94b7-48e3-a17a-cf46b8ee035b 2019-09-03 20:53:31.279813 14587 913 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 37\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 815d5a87-94b7-48e3-a17a-cf46b8ee035b 2019-09-03 20:53:31.300354 14588 914 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 34\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 815d5a87-94b7-48e3-a17a-cf46b8ee035b 2019-09-03 20:53:31.322662 14589 142 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.58.97 efcfb7eb-60b1-4bd0-b938-1eab5eea84c9 2019-09-03 20:53:43.875337 14590 915 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 39\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 efcfb7eb-60b1-4bd0-b938-1eab5eea84c9 2019-09-03 20:53:43.898415 14591 916 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 466\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 efcfb7eb-60b1-4bd0-b938-1eab5eea84c9 2019-09-03 20:53:43.926301 14592 917 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 467\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 efcfb7eb-60b1-4bd0-b938-1eab5eea84c9 2019-09-03 20:53:43.94994 14593 918 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 615\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 efcfb7eb-60b1-4bd0-b938-1eab5eea84c9 2019-09-03 20:53:43.972911 14594 912 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.58.97 efcfb7eb-60b1-4bd0-b938-1eab5eea84c9 2019-09-03 20:53:43.991142 14595 919 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 36\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 efcfb7eb-60b1-4bd0-b938-1eab5eea84c9 2019-09-03 20:53:44.011473 14596 920 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 35\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 efcfb7eb-60b1-4bd0-b938-1eab5eea84c9 2019-09-03 20:53:44.033085 14597 921 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 38\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 efcfb7eb-60b1-4bd0-b938-1eab5eea84c9 2019-09-03 20:53:44.055643 14598 922 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 465\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 efcfb7eb-60b1-4bd0-b938-1eab5eea84c9 2019-09-03 20:53:44.076748 14599 923 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 40\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 efcfb7eb-60b1-4bd0-b938-1eab5eea84c9 2019-09-03 20:53:44.098291 14600 924 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 32\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 efcfb7eb-60b1-4bd0-b938-1eab5eea84c9 2019-09-03 20:53:44.123476 14601 914 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.58.97 efcfb7eb-60b1-4bd0-b938-1eab5eea84c9 2019-09-03 20:53:44.143626 14602 925 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 31\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 efcfb7eb-60b1-4bd0-b938-1eab5eea84c9 2019-09-03 20:53:44.170444 14603 141 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.58.97 d3f0028d-d05f-4851-a30a-e3412f8590d6 2019-09-03 20:53:50.486978 14604 926 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 463\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 d3f0028d-d05f-4851-a30a-e3412f8590d6 2019-09-03 20:53:50.507944 14605 140 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.58.97 90bedbc2-c939-4de9-ae9b-3ae2de0bb017 2019-09-03 20:53:56.904495 14606 927 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 335\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 90bedbc2-c939-4de9-ae9b-3ae2de0bb017 2019-09-03 20:53:56.930267 14607 928 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 337\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 90bedbc2-c939-4de9-ae9b-3ae2de0bb017 2019-09-03 20:53:56.954863 14608 929 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 339\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 90bedbc2-c939-4de9-ae9b-3ae2de0bb017 2019-09-03 20:53:56.975921 14609 930 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 338\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 90bedbc2-c939-4de9-ae9b-3ae2de0bb017 2019-09-03 20:53:57.003409 14610 931 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 333\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 90bedbc2-c939-4de9-ae9b-3ae2de0bb017 2019-09-03 20:53:57.027649 14611 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 18:49:25.359439000 Z\n- &1 2019-09-03 19:38:15.484063000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 21:01:48.666619937 Z\nsign_in_count:\n- 547\n- 548\n 1096 \N 189.186.58.97 210fcc81-777f-4d8e-8e03-176c88ccbb40 2019-09-03 21:01:48.673367 14612 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kzxcJR6dW_t_ysxmsyz1\n- 5yWWLAq_qbbZNcY9RzSh\n 1097 \N 189.186.58.97 210fcc81-777f-4d8e-8e03-176c88ccbb40 2019-09-03 21:01:48.687277 14613 468 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.58.97 f47088fb-2196-442b-b9b6-91890e8d31e4 2019-09-03 21:02:24.316412 14614 583 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.58.97 7294bbbd-3ac8-4593-993a-f2fa39881838 2019-09-03 21:02:37.442283 14615 582 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.58.97 03f100dd-0985-46f2-ab94-6f2d6787ccfb 2019-09-03 21:02:50.710678 14616 468 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.58.97 10ed0fbd-c0c7-427b-97c2-72fca8267648 2019-09-03 21:02:57.164297 14617 583 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.58.97 88129887-deed-445b-bcf6-7f38e7f7feb9 2019-09-03 21:02:58.01386 14618 582 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.58.97 2a30bcc6-a0d3-40b6-9b2c-4dd82b7fd596 2019-09-03 21:02:59.178164 14619 144 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.58.97 2da3dbc4-049f-42dd-868b-4ff7b8e4da08 2019-09-03 21:03:05.182372 14620 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 19:26:22.713170000 Z\n- &1 2019-09-03 20:48:59.745888000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 21:03:16.119478074 Z\nsign_in_count:\n- 18\n- 19\n 38 \N 189.186.58.97 21a8418e-7bcf-4ede-ab17-83ffe83a3127 2019-09-03 21:03:16.126656 14621 18 User \N \N 18 User \N update ---\nunique_session_id:\n- k7NfZrgD5Ld4AtJwsTdK\n- fzhst4GCt2s_WQfbmoLC\n 39 \N 189.186.58.97 21a8418e-7bcf-4ede-ab17-83ffe83a3127 2019-09-03 21:03:16.141225 14622 144 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.58.97 2610cc3a-38d2-499f-bedb-b1e98995fa64 2019-09-03 21:03:23.718746 14623 932 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 468\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 2610cc3a-38d2-499f-bedb-b1e98995fa64 2019-09-03 21:03:23.742891 14624 933 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 541\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 2610cc3a-38d2-499f-bedb-b1e98995fa64 2019-09-03 21:03:23.77421 14625 934 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 540\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 2610cc3a-38d2-499f-bedb-b1e98995fa64 2019-09-03 21:03:23.808401 14626 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 19:38:15.484063000 Z\n- &1 2019-09-03 21:01:48.666619000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 21:04:08.199932014 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938070\n mask_addr: 4294967295\nsign_in_count:\n- 548\n- 549\n 1098 \N 200.68.150.22 375321f0-febc-4490-a1f1-b5ea539251af 2019-09-03 21:04:08.206699 14627 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5yWWLAq_qbbZNcY9RzSh\n- QznPY1DUi3c4pGYSZaPi\n 1099 \N 200.68.150.22 375321f0-febc-4490-a1f1-b5ea539251af 2019-09-03 21:04:08.221782 14628 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 21:01:48.666619000 Z\n- &1 2019-09-03 21:04:08.199932000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 21:04:33.877223351 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938070\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938070\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\nsign_in_count:\n- 549\n- 550\n 1100 \N 189.186.58.97 db7b690b-75ab-4020-9355-22c87cebb5fc 2019-09-03 21:04:33.885283 14629 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QznPY1DUi3c4pGYSZaPi\n- n63sVdRtsqPbDzbrjzau\n 1101 \N 189.186.58.97 db7b690b-75ab-4020-9355-22c87cebb5fc 2019-09-03 21:04:33.90208 14630 56 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 714c7a51-c0d6-42d6-9462-fabd2dd0f007 2019-09-03 21:05:19.884207 14631 145 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.58.97 8d92c014-5648-477f-b117-3f5ee783882e 2019-09-03 21:05:21.987753 14632 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 20:48:59.745888000 Z\n- &1 2019-09-03 21:03:16.119478000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 21:06:06.099819463 Z\nsign_in_count:\n- 19\n- 20\n 40 \N 189.186.58.97 facc2416-1622-47dd-9889-9497eeab3595 2019-09-03 21:06:06.105357 14633 18 User \N \N 18 User \N update ---\nunique_session_id:\n- fzhst4GCt2s_WQfbmoLC\n- NwGhtrx6rw-xV62vzBgb\n 41 \N 189.186.58.97 facc2416-1622-47dd-9889-9497eeab3595 2019-09-03 21:06:06.117324 14634 175 Expense \N \N 20 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 402\nquantity: !ruby/object:BigDecimal 18:0.1E3\nstatus: 1\nobservations: yaretzi\nexpense_date: 2019-09-03\nexpense_code: PV2-E-38\n 1 Egreso por 100.0 registrado 187.149.63.76 360bf731-6d17-4a11-badd-8287f53d3476 2019-09-03 21:50:47.081716 14635 1423 CashRegistersMove \N \N 20 User \N create ---\nopen_cash_register_id: 402\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 175\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.63.76 360bf731-6d17-4a11-badd-8287f53d3476 2019-09-03 21:50:47.105192 14636 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 21:04:08.199932000 Z\n- &1 2019-09-03 21:04:33.877223000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 22:30:32.836502628 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938070\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\nsign_in_count:\n- 550\n- 551\n 1102 \N 189.186.58.97 1c425974-f6bc-4be9-84df-6931ddddc585 2019-09-03 22:30:32.844693 14637 4 User \N \N 4 User \N update ---\nunique_session_id:\n- n63sVdRtsqPbDzbrjzau\n- VZGPD6BGmNgEzPjZNqox\n 1103 \N 189.186.58.97 1c425974-f6bc-4be9-84df-6931ddddc585 2019-09-03 22:30:32.8596 14638 1 PosConfig \N \N 4 User \N update --- {}\n 8 Se actualizaron los parámetros generales 189.186.58.97 c5f08eec-2d73-4602-8edb-95bc08ee95c9 2019-09-03 22:31:36.857399 14639 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 21:03:16.119478000 Z\n- &1 2019-09-03 21:06:06.099819000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 22:31:45.968367501 Z\nsign_in_count:\n- 20\n- 21\n 42 \N 189.186.58.97 f004a96c-2374-4cd8-9584-a5c335c210bc 2019-09-03 22:31:45.973858 14640 18 User \N \N 18 User \N update ---\nunique_session_id:\n- NwGhtrx6rw-xV62vzBgb\n- 7x66J3s26KH9HfgYZctw\n 43 \N 189.186.58.97 f004a96c-2374-4cd8-9584-a5c335c210bc 2019-09-03 22:31:45.987413 14641 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 21:04:33.877223000 Z\n- &1 2019-09-03 22:30:32.836502000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 22:32:29.601368335 Z\nsign_in_count:\n- 551\n- 552\n 1104 \N 189.186.58.97 a1867c2f-0d51-4a01-9c9c-c1b5d1609a2d 2019-09-03 22:32:29.606841 14642 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VZGPD6BGmNgEzPjZNqox\n- LDDYqayupEQ7yWhLoTYZ\n 1105 \N 189.186.58.97 a1867c2f-0d51-4a01-9c9c-c1b5d1609a2d 2019-09-03 22:32:29.619538 14643 3 User \N \N 4 User \N update ---\nstatus:\n- active\n- 2\n 1244 El usuario ANABELLY fue desactivado. 189.186.58.97 7d0c7164-e6be-4a72-942d-902f07620019 2019-09-03 22:34:04.763145 14644 8 User \N \N 4 User \N update ---\nstatus:\n- inactive\n- 1\n 3 El usuario SAMANTHABYSUO fue activado. 189.186.58.97 8a3492db-9eb6-4dde-8761-09ffa5a7921c 2019-09-03 22:34:40.805339 14645 10 User \N \N 4 User \N update ---\nstatus:\n- active\n- 2\n 268 El usuario SAMANTHASBYSUO fue desactivado. 189.186.58.97 f98ada15-210b-4bcf-b93c-d8416edcc4f3 2019-09-03 22:34:58.062557 14646 1424 CashRegistersMove \N \N 20 User \N create ---\nopen_cash_register_id: 280\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 808\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '142568798758'\n 1 \N 187.149.63.76 7d077177-dc2a-401b-9cd1-ad9a84624037 2019-09-03 22:35:42.085649 14647 1424 CashRegistersMove \N \N 20 User \N update ---\nopen_cash_register_id:\n- 280\n- 402\n 2 movimiento de efectivo por venta con folio PV1-V-457 187.149.63.76 7d077177-dc2a-401b-9cd1-ad9a84624037 2019-09-03 22:35:42.111796 14648 1 PosConfig \N \N 4 User \N update ---\nticket_img:\n- !ruby/object:ImageUploader\n model: &13 !ruby/object:PosConfig\n raw_attributes:\n id: '1'\n cancel_partial_payment: '35'\n refund_sale: '15'\n days_cancel_sale: '15'\n days_cancel_purchase: '100'\n tax_percent: '16.0'\n time_zone: Chihuahua\n gain_margin: '100.0'\n ticket_description: "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN, SIN\n \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n reserve_sale_percent: '20.0'\n days_cancel_reserved: '35'\n commission_percent: '1'\n ticket_footer: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN ETIQUETA\n O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img: IMG_0981.JPG\n haggle_in_sale_percent: '20'\n enable_haggle: 'true'\n add_iva_to_pre_sales: 'false'\n created_at: '2019-01-28 18:10:20.808419'\n updated_at: &10 2019-09-03 22:36:46.347162448 Z\n ticket_img_file_name: \n ticket_img_content_type: \n ticket_img_file_size: \n ticket_img_updated_at: \n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n cancel_partial_payment: *1\n refund_sale: *1\n days_cancel_sale: *1\n days_cancel_purchase: *1\n tax_percent: &2 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n time_zone: &6 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n gain_margin: *2\n created_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n updated_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n ticket_description: &7 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n days_cancel_reserved: *1\n reserve_sale_percent: &8 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n commission_percent: *1\n ticket_footer: &4 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n ticket_img_file_name: *4\n ticket_img_content_type: *4\n ticket_img_file_size: *1\n ticket_img_updated_at: &12 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n haggle_in_sale_percent: *1\n ticket_img: *4\n enable_haggle: &5 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n add_iva_to_pre_sales: *5\n values:\n id: '1'\n cancel_partial_payment: '35'\n refund_sale: '15'\n days_cancel_sale: '15'\n days_cancel_purchase: '100'\n tax_percent: '16.0'\n time_zone: Chihuahua\n gain_margin: '100.0'\n created_at: '2019-01-28 18:10:20.808419'\n updated_at: '2019-05-14 19:51:57.731121'\n ticket_description: "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN,\n SIN \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n days_cancel_reserved: '35'\n reserve_sale_percent: '20.00'\n commission_percent: '1'\n ticket_footer: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN\n DEVOLUCIONES EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA,\n SIN ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img_file_name: \n ticket_img_content_type: \n ticket_img_file_size: \n ticket_img_updated_at: \n haggle_in_sale_percent: '20'\n ticket_img: Sin_título.png\n enable_haggle: t\n add_iva_to_pre_sales: f\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1'\n type: *1\n value: 1\n cancel_partial_payment: !ruby/object:ActiveRecord::Attribute::FromUser\n name: cancel_partial_payment\n value_before_type_cast: '35'\n type: *1\n value: 35\n refund_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: refund_sale\n value_before_type_cast: '15'\n type: *1\n value: 15\n days_cancel_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_sale\n value_before_type_cast: '15'\n type: *1\n value: 15\n days_cancel_purchase: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_purchase\n value_before_type_cast: '100'\n type: *1\n value: 100\n tax_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: tax_percent\n value_before_type_cast: '16.0'\n type: *2\n value: !ruby/object:BigDecimal 18:0.16E2\n time_zone: !ruby/object:ActiveRecord::Attribute::FromUser\n name: time_zone\n value_before_type_cast: Chihuahua\n type: *6\n value: Chihuahua\n gain_margin: !ruby/object:ActiveRecord::Attribute::FromUser\n name: gain_margin\n value_before_type_cast: '100.0'\n type: *2\n value: !ruby/object:BigDecimal 18:0.1E3\n ticket_description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_description\n value_before_type_cast: "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN,\n SIN \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n type: *7\n value: "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN, SIN \\r\\nTEL.\n 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n reserve_sale_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: reserve_sale_percent\n value_before_type_cast: '20.0'\n type: *8\n value: !ruby/object:BigDecimal 18:0.2E2\n days_cancel_reserved: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_reserved\n value_before_type_cast: '35'\n type: *1\n value: 35\n commission_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: commission_percent\n value_before_type_cast: '1'\n type: *1\n value: 1\n ticket_footer: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_footer\n value_before_type_cast: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n*\n NO APLICAN DEVOLUCIONES EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA\n MERCANCÍA DAÑADA, SIN ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN\n VIGENCIA 30 DÍAS "\n type: *4\n value: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN\n ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_img\n value_before_type_cast: IMG_0981.JPG\n type: *4\n value: IMG_0981.JPG\n haggle_in_sale_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: haggle_in_sale_percent\n value_before_type_cast: '20'\n type: *1\n value: 20\n enable_haggle: !ruby/object:ActiveRecord::Attribute::FromUser\n name: enable_haggle\n value_before_type_cast: 'true'\n type: *5\n value: true\n add_iva_to_pre_sales: !ruby/object:ActiveRecord::Attribute::FromUser\n name: add_iva_to_pre_sales\n value_before_type_cast: 'false'\n type: *5\n value: false\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-01-28 18:10:20.808419'\n type: *9\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *10\n type: *11\n value: *10\n ticket_img_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_file_name\n value_before_type_cast: \n type: *4\n ticket_img_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_content_type\n value_before_type_cast: \n type: *4\n ticket_img_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_file_size\n value_before_type_cast: \n type: *1\n ticket_img_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_updated_at\n value_before_type_cast: \n type: *12\n new_record: false\n mounted_as: :ticket_img\n storage: &14 !ruby/object:CarrierWave::Storage::File\n uploader: &15 !ruby/object:ImageUploader\n model: *13\n mounted_as: :ticket_img\n storage: *14\n file: &19 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/Sin_título.png"\n original_filename: \n content_type: \n versions: &20\n :thumb: &16 !ruby/object:ImageUploader::Uploader65070720\n model: *13\n mounted_as: :ticket_img\n parent_version: *15\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *16\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_Sin_título.png"\n original_filename: \n content_type: \n versions: {}\n :medium: &17 !ruby/object:ImageUploader::Uploader65057060\n model: *13\n mounted_as: :ticket_img\n parent_version: *15\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_Sin_título.png"\n original_filename: \n content_type: \n versions: {}\n :small: &18 !ruby/object:ImageUploader::Uploader65052820\n model: *13\n mounted_as: :ticket_img\n parent_version: *15\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_Sin_título.png"\n original_filename: \n content_type: \n versions: {}\n file: *19\n versions: *20\n- IMG_0981.JPG\n 9 Se actualizaron los parámetros generales 189.186.58.97 61851895-e0b4-4250-b40e-ae2a5162c35a 2019-09-03 22:36:46.407374 14649 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 21:06:06.099819000 Z\n- &1 2019-09-03 22:31:45.968367000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 22:36:57.689182289 Z\nsign_in_count:\n- 21\n- 22\n 44 \N 189.186.58.97 dd08b66f-9290-434b-b970-57450f0fc802 2019-09-03 22:36:57.695098 14650 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 7x66J3s26KH9HfgYZctw\n- 3oGgLY4fxBsyQPDZYXhr\n 45 \N 189.186.58.97 dd08b66f-9290-434b-b970-57450f0fc802 2019-09-03 22:36:57.708672 14651 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 22:30:32.836502000 Z\n- &1 2019-09-03 22:32:29.601368000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 22:38:15.510559867 Z\nsign_in_count:\n- 552\n- 553\n 1106 \N 189.186.58.97 d37c98d1-6d76-40df-a763-fc526b8fba3e 2019-09-03 22:38:15.516745 14652 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LDDYqayupEQ7yWhLoTYZ\n- 7Fi4WW-XeMVFsfAPQq48\n 1107 \N 189.186.58.97 d37c98d1-6d76-40df-a763-fc526b8fba3e 2019-09-03 22:38:15.533441 14653 1 PosConfig \N \N 4 User \N update --- {}\n 10 Se actualizaron los parámetros generales 189.186.58.97 e731379d-3300-4653-891d-f38523ae66f2 2019-09-03 22:38:51.430476 14654 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 22:32:29.601368000 Z\n- &1 2019-09-03 22:38:15.510559000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 22:42:20.585488342 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 553\n- 554\n 1108 \N 187.149.63.76 20f8bea0-fee4-41d7-aea4-2b0ba1532d39 2019-09-03 22:42:20.59218 14655 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7Fi4WW-XeMVFsfAPQq48\n- ftvrEgTctu7F1EEbh_tj\n 1109 \N 187.149.63.76 20f8bea0-fee4-41d7-aea4-2b0ba1532d39 2019-09-03 22:42:20.607143 14656 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 22:31:45.968367000 Z\n- &1 2019-09-03 22:36:57.689182000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 22:53:12.634920225 Z\nsign_in_count:\n- 22\n- 23\n 46 \N 189.186.58.97 86210155-5e3a-4832-9ea1-e32b4a862280 2019-09-03 22:53:12.641165 14657 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 3oGgLY4fxBsyQPDZYXhr\n- NpbCjVxEL8MAsqKTbQDa\n 47 \N 189.186.58.97 86210155-5e3a-4832-9ea1-e32b4a862280 2019-09-03 22:53:12.656 14658 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 22:38:15.510559000 Z\n- &1 2019-09-03 22:42:20.585488000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 22:55:46.211327339 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\nsign_in_count:\n- 554\n- 555\n 1110 \N 189.186.58.97 95130286-23ee-41ec-8e12-32c40a441c77 2019-09-03 22:55:46.218646 14659 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ftvrEgTctu7F1EEbh_tj\n- 1QxayEEVawjKcXZkofoB\n 1111 \N 189.186.58.97 95130286-23ee-41ec-8e12-32c40a441c77 2019-09-03 22:55:46.234907 14660 1 PosConfig \N \N 4 User \N update ---\nticket_img:\n- !ruby/object:ImageUploader\n model: &13 !ruby/object:PosConfig\n raw_attributes:\n id: '1'\n cancel_partial_payment: '35'\n refund_sale: '15'\n days_cancel_sale: '15'\n days_cancel_purchase: '100'\n tax_percent: '16.0'\n time_zone: Chihuahua\n gain_margin: '100.0'\n ticket_description: "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN, SIN\n \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n reserve_sale_percent: '20.0'\n days_cancel_reserved: '35'\n commission_percent: '1'\n ticket_footer: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN ETIQUETA\n O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img: Sin_título.png\n haggle_in_sale_percent: '20'\n enable_haggle: 'true'\n add_iva_to_pre_sales: 'false'\n created_at: '2019-01-28 18:10:20.808419'\n updated_at: &10 2019-09-03 22:56:04.284977485 Z\n ticket_img_file_name: \n ticket_img_content_type: \n ticket_img_file_size: \n ticket_img_updated_at: \n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n cancel_partial_payment: *1\n refund_sale: *1\n days_cancel_sale: *1\n days_cancel_purchase: *1\n tax_percent: &2 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n time_zone: &6 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n gain_margin: *2\n created_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n updated_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n ticket_description: &7 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n days_cancel_reserved: *1\n reserve_sale_percent: &8 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n commission_percent: *1\n ticket_footer: &4 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n ticket_img_file_name: *4\n ticket_img_content_type: *4\n ticket_img_file_size: *1\n ticket_img_updated_at: &12 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n haggle_in_sale_percent: *1\n ticket_img: *4\n enable_haggle: &5 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n add_iva_to_pre_sales: *5\n values:\n id: '1'\n cancel_partial_payment: '35'\n refund_sale: '15'\n days_cancel_sale: '15'\n days_cancel_purchase: '100'\n tax_percent: '16.0'\n time_zone: Chihuahua\n gain_margin: '100.0'\n created_at: '2019-01-28 18:10:20.808419'\n updated_at: '2019-09-03 22:36:46.347162'\n ticket_description: "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN,\n SIN \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n days_cancel_reserved: '35'\n reserve_sale_percent: '20.00'\n commission_percent: '1'\n ticket_footer: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN\n DEVOLUCIONES EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA,\n SIN ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img_file_name: \n ticket_img_content_type: \n ticket_img_file_size: \n ticket_img_updated_at: \n haggle_in_sale_percent: '20'\n ticket_img: IMG_0981.JPG\n enable_haggle: t\n add_iva_to_pre_sales: f\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1'\n type: *1\n value: 1\n cancel_partial_payment: !ruby/object:ActiveRecord::Attribute::FromUser\n name: cancel_partial_payment\n value_before_type_cast: '35'\n type: *1\n value: 35\n refund_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: refund_sale\n value_before_type_cast: '15'\n type: *1\n value: 15\n days_cancel_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_sale\n value_before_type_cast: '15'\n type: *1\n value: 15\n days_cancel_purchase: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_purchase\n value_before_type_cast: '100'\n type: *1\n value: 100\n tax_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: tax_percent\n value_before_type_cast: '16.0'\n type: *2\n value: !ruby/object:BigDecimal 18:0.16E2\n time_zone: !ruby/object:ActiveRecord::Attribute::FromUser\n name: time_zone\n value_before_type_cast: Chihuahua\n type: *6\n value: Chihuahua\n gain_margin: !ruby/object:ActiveRecord::Attribute::FromUser\n name: gain_margin\n value_before_type_cast: '100.0'\n type: *2\n value: !ruby/object:BigDecimal 18:0.1E3\n ticket_description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_description\n value_before_type_cast: "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN,\n SIN \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n type: *7\n value: "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN, SIN \\r\\nTEL.\n 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n reserve_sale_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: reserve_sale_percent\n value_before_type_cast: '20.0'\n type: *8\n value: !ruby/object:BigDecimal 18:0.2E2\n days_cancel_reserved: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_reserved\n value_before_type_cast: '35'\n type: *1\n value: 35\n commission_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: commission_percent\n value_before_type_cast: '1'\n type: *1\n value: 1\n ticket_footer: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_footer\n value_before_type_cast: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n*\n NO APLICAN DEVOLUCIONES EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA\n MERCANCÍA DAÑADA, SIN ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN\n VIGENCIA 30 DÍAS "\n type: *4\n value: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN\n ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_img\n value_before_type_cast: Sin_título.png\n type: *4\n value: Sin_título.png\n haggle_in_sale_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: haggle_in_sale_percent\n value_before_type_cast: '20'\n type: *1\n value: 20\n enable_haggle: !ruby/object:ActiveRecord::Attribute::FromUser\n name: enable_haggle\n value_before_type_cast: 'true'\n type: *5\n value: true\n add_iva_to_pre_sales: !ruby/object:ActiveRecord::Attribute::FromUser\n name: add_iva_to_pre_sales\n value_before_type_cast: 'false'\n type: *5\n value: false\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-01-28 18:10:20.808419'\n type: *9\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *10\n type: *11\n value: *10\n ticket_img_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_file_name\n value_before_type_cast: \n type: *4\n ticket_img_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_content_type\n value_before_type_cast: \n type: *4\n ticket_img_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_file_size\n value_before_type_cast: \n type: *1\n ticket_img_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_updated_at\n value_before_type_cast: \n type: *12\n new_record: false\n mounted_as: :ticket_img\n storage: &14 !ruby/object:CarrierWave::Storage::File\n uploader: &15 !ruby/object:ImageUploader\n model: *13\n mounted_as: :ticket_img\n storage: *14\n file: &19 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/IMG_0981.JPG"\n original_filename: \n content_type: \n versions: &20\n :thumb: &16 !ruby/object:ImageUploader::Uploader65070720\n model: *13\n mounted_as: :ticket_img\n parent_version: *15\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *16\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_IMG_0981.JPG"\n original_filename: \n content_type: \n versions: {}\n :medium: &17 !ruby/object:ImageUploader::Uploader65057060\n model: *13\n mounted_as: :ticket_img\n parent_version: *15\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_IMG_0981.JPG"\n original_filename: \n content_type: \n versions: {}\n :small: &18 !ruby/object:ImageUploader::Uploader65052820\n model: *13\n mounted_as: :ticket_img\n parent_version: *15\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_IMG_0981.JPG"\n original_filename: \n content_type: \n versions: {}\n file: *19\n versions: *20\n- Sin_título.png\n 11 Se actualizaron los parámetros generales 189.186.58.97 f9da0b0a-0e82-400e-82a6-eb4a967d2945 2019-09-03 22:56:04.330227 14661 19 User \N \N 4 User \N update --- {}\n 2 Usuario DANIELA ha sido modificado. 189.186.58.97 dca94d65-1876-4a36-85ad-962bfdf59722 2019-09-03 22:56:33.38219 14662 21 User \N \N 4 User \N create ---\nuserid: DANIELACAMPINA\nfirst_name: 'DANIELA '\nlast_name: URCISICHI OSUNA\nusertype: G\nemail: sherlyu@hotmail.com\nencrypted_password: "$2a$10$7CkR8bzYbYhpDfSR4OkKees61EUBkovQkzpHWuB3VnwnjqGP9CYxa"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 3\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.186.58.97 d11232b9-9879-4f4c-9b5b-a1fea15646d2 2019-09-03 22:57:52.843199 14663 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-09-03 22:58:02.185982904 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 189.186.58.97 67b34184-44ac-4838-be1e-2217dd5606fd 2019-09-03 22:58:02.195591 14664 21 User \N \N 21 User \N update ---\nunique_session_id:\n- \n- SswGY9kTMkva89sS6W1F\n 3 \N 189.186.58.97 67b34184-44ac-4838-be1e-2217dd5606fd 2019-09-03 22:58:02.215156 14665 21 User \N \N 21 User \N update ---\ncurrent_sign_in_at:\n- 2019-09-03 22:58:02.185982000 Z\n- 2019-09-03 23:21:02.857677776 Z\nsign_in_count:\n- 1\n- 2\n 4 \N 189.186.58.97 f0f26d9e-a6a0-4aa8-a208-735ac999ef15 2019-09-03 23:21:02.863009 14666 21 User \N \N 21 User \N update ---\nunique_session_id:\n- SswGY9kTMkva89sS6W1F\n- 7c4oWPJ4df8uuHrNxFez\n 5 \N 189.186.58.97 f0f26d9e-a6a0-4aa8-a208-735ac999ef15 2019-09-03 23:21:02.875933 14667 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 22:42:20.585488000 Z\n- &1 2019-09-03 22:55:46.211327000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 23:30:24.069643017 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\nsign_in_count:\n- 555\n- 556\n 1112 \N 189.186.58.97 c540216e-73a3-497f-95e2-742bff0b5fb4 2019-09-03 23:30:24.096237 14668 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1QxayEEVawjKcXZkofoB\n- LUvQ42F6yucZwXuMP8kX\n 1113 \N 189.186.58.97 c540216e-73a3-497f-95e2-742bff0b5fb4 2019-09-03 23:30:24.119388 14669 39 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.58.97 4f65b21b-a2b7-4634-90b0-c16b24935ac0 2019-09-03 23:30:48.869244 14670 39 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.58.97 3b50461f-d751-4c52-b129-bc77d5769f53 2019-09-03 23:30:52.952055 14671 146 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.58.97 c84a413c-bed7-480d-b4de-b7a79247bbb4 2019-09-03 23:30:53.759884 14672 386 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.58.97 a5fab3b5-9fa4-4473-84ea-a4b3ecc146d7 2019-09-03 23:31:12.599305 14673 386 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.58.97 547108ea-fa39-40d0-a7f6-40d4fbba54fb 2019-09-03 23:31:18.119537 14674 385 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.58.97 b8684a47-a70f-466a-9c3b-a1e808545474 2019-09-03 23:31:28.374792 14675 147 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.58.97 7d245113-1dcc-42ae-ac7b-eb317de888f9 2019-09-03 23:32:45.731117 14676 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 22:58:02.185982000 Z\n- &1 2019-09-03 23:21:02.857677000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 23:32:54.212476989 Z\nsign_in_count:\n- 2\n- 3\n 6 \N 189.186.58.97 f3e1157d-d654-4252-8bee-5da38be37297 2019-09-03 23:32:54.219881 14677 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 7c4oWPJ4df8uuHrNxFez\n- NSZSHyCdwE6KwavrRNkX\n 7 \N 189.186.58.97 f3e1157d-d654-4252-8bee-5da38be37297 2019-09-03 23:32:54.232127 14678 147 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.58.97 a5f67d86-8441-4e33-a4c9-675e477537c5 2019-09-03 23:33:05.295417 14679 935 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 388\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 a5f67d86-8441-4e33-a4c9-675e477537c5 2019-09-03 23:33:05.318253 14680 936 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 387\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 a5f67d86-8441-4e33-a4c9-675e477537c5 2019-09-03 23:33:05.359655 14681 146 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.58.97 356116c9-9018-4647-bcda-c532249086fc 2019-09-03 23:33:13.15507 14682 937 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 41\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.7E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 356116c9-9018-4647-bcda-c532249086fc 2019-09-03 23:33:13.190773 14683 145 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.58.97 eccab83f-cfb3-48e8-8653-360fcab17c14 2019-09-03 23:33:18.731825 14684 938 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 58\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 eccab83f-cfb3-48e8-8653-360fcab17c14 2019-09-03 23:33:18.753465 14685 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 22:55:46.211327000 Z\n- &1 2019-09-03 23:30:24.069643000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 23:37:03.939920268 Z\nsign_in_count:\n- 556\n- 557\n 1114 \N 189.186.58.97 383e90e2-7cc6-4e58-8772-b6dcc405fd49 2019-09-03 23:37:03.946118 14686 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LUvQ42F6yucZwXuMP8kX\n- 8HGX_p4VHs25_xhzj83A\n 1115 \N 189.186.58.97 383e90e2-7cc6-4e58-8772-b6dcc405fd49 2019-09-03 23:37:03.968618 14687 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 23:21:02.857677000 Z\n- &1 2019-09-03 23:32:54.212476000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 23:38:24.658775855 Z\nsign_in_count:\n- 3\n- 4\n 8 \N 189.186.58.97 b90a543e-9528-4ea0-95b1-824e7aa64fd2 2019-09-03 23:38:24.664797 14688 21 User \N \N 21 User \N update ---\nunique_session_id:\n- NSZSHyCdwE6KwavrRNkX\n- nViY_hh8NvAuDNnHZG1n\n 9 \N 189.186.58.97 b90a543e-9528-4ea0-95b1-824e7aa64fd2 2019-09-03 23:38:24.677927 14689 136 Purchase \N \N 21 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-8\namount: !ruby/object:BigDecimal 18:0.13293E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.13293E5\nobservations: ''\npurchase_date: 2019-09-03\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-8 por $ 13293.0 MXN creada. 189.186.58.97 52a2285c-829d-44e2-a252-397d64cbe0ea 2019-09-03 23:39:56.538731 14690 935 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.14E2\n 2 \N 189.186.58.97 52a2285c-829d-44e2-a252-397d64cbe0ea 2019-09-03 23:39:56.571307 14691 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 23:30:24.069643000 Z\n- &1 2019-09-03 23:37:03.939920000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 23:40:21.389584196 Z\nsign_in_count:\n- 557\n- 558\n 1116 \N 189.186.58.97 24a33808-821d-424b-8355-6c9c387faca7 2019-09-03 23:40:21.395074 14692 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8HGX_p4VHs25_xhzj83A\n- wwqsoqsmwag_TesCTxzU\n 1117 \N 189.186.58.97 24a33808-821d-424b-8355-6c9c387faca7 2019-09-03 23:40:21.408464 14693 388 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.1899E4\n- !ruby/object:BigDecimal 18:0.2299E4\n 3 El producto LEN-388 fue modificado. 189.186.58.97 948ede31-034a-4a37-8fa2-c271df038213 2019-09-03 23:41:05.064219 14694 41 Product \N \N 4 User \N update ---\nname:\n- L-0001\n- LENTES\n 3 El producto LEN-41 fue modificado. 189.186.58.97 0621ba86-9c59-404b-9083-e836720d8db8 2019-09-03 23:41:52.526879 14695 368 Product \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 3 El producto BODYS VICTORIA fue eliminado. 189.186.58.97 1a0ef34b-5c2c-462e-a9d7-905ed00f308a 2019-09-03 23:44:56.182663 14696 137 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-9\namount: !ruby/object:BigDecimal 18:0.58368E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.58368E4\nobservations: ''\npurchase_date: 2019-09-03\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-9 por $ 5836.8 MXN creada. 189.186.58.97 b8a95b17-915e-4d08-946e-10310382e3b1 2019-09-03 23:45:39.589487 14697 939 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 367\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.38E2\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 b8a95b17-915e-4d08-946e-10310382e3b1 2019-09-03 23:45:39.614429 14698 367 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.36E2\n- !ruby/object:BigDecimal 18:0.35E2\n 19 \N 189.186.58.97 01b138ba-2bfe-403f-928c-ac16117510ba 2019-09-03 23:46:32.211328 14699 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 23:32:54.212476000 Z\n- &1 2019-09-03 23:38:24.658775000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 23:49:40.746939986 Z\nsign_in_count:\n- 4\n- 5\n 10 \N 189.186.58.97 f95dd519-c538-458d-a616-1dc7757e79a4 2019-09-03 23:49:40.752608 14700 21 User \N \N 21 User \N update ---\nunique_session_id:\n- nViY_hh8NvAuDNnHZG1n\n- QmbhZ_5hkx7reXa_i8ny\n 11 \N 189.186.58.97 f95dd519-c538-458d-a616-1dc7757e79a4 2019-09-03 23:49:40.765502 14701 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 23:37:03.939920000 Z\n- &1 2019-09-03 23:40:21.389584000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 23:50:10.050026336 Z\nsign_in_count:\n- 558\n- 559\n 1118 \N 189.186.58.97 8e691c63-4e9c-4bc0-a73d-141248a1e5a9 2019-09-03 23:50:10.056161 14702 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wwqsoqsmwag_TesCTxzU\n- vDG36LmkubF5WzSXizq1\n 1119 \N 189.186.58.97 8e691c63-4e9c-4bc0-a73d-141248a1e5a9 2019-09-03 23:50:10.07004 14703 22 User \N \N 4 User \N create ---\nuserid: ALMACENSUO\nfirst_name: DANIELA\nlast_name: URCISICHI\nusertype: S\nemail: daniurci@gmail.com\nencrypted_password: "$2a$10$JelVm2iuW28G7qTb2rWlre8PnHZ4Hf7/zVfnNZpYNwQ3VgLDvywuS"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: \nunique_session_id: \nstatus: 1\nwarehouse_id: 1\n 1 \N 189.186.58.97 df5e98b7-9622-45eb-9731-4274e71f1462 2019-09-03 23:53:23.240074 14704 22 User \N \N 22 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-09-03 23:53:38.440887913 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 189.186.58.97 2966d592-e28b-4a88-8967-30905d0f243f 2019-09-03 23:53:38.447419 14705 22 User \N \N 22 User \N update ---\nunique_session_id:\n- \n- QdGi3zhaPaYSuUynBdcD\n 3 \N 189.186.58.97 2966d592-e28b-4a88-8967-30905d0f243f 2019-09-03 23:53:38.460547 14706 94 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de S BY SUO a Almacen central 189.186.58.97 78bc9967-e505-46e2-873e-c36ea27b1621 2019-09-03 23:53:50.800204 14707 148 Transfer \N \N 22 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 22\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.58.97 4b15ea67-af95-4653-880d-df7ceb25f7cd 2019-09-03 23:54:09.793215 14737 368 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.58.97 836bdd3d-8c6d-42ea-8946-e7547b8f99f4 2019-09-04 00:08:57.493468 14708 149 Transfer \N \N 22 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 22\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.58.97 d52baea7-6210-4a71-a23e-652288ee9cb8 2019-09-03 23:54:47.762251 14709 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 23:38:24.658775000 Z\n- &1 2019-09-03 23:49:40.746939000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-03 23:55:01.611621168 Z\nsign_in_count:\n- 5\n- 6\n 12 \N 189.186.58.97 24a7c62a-f710-461b-bc2f-8414e5027618 2019-09-03 23:55:01.618416 14710 21 User \N \N 21 User \N update ---\nunique_session_id:\n- QmbhZ_5hkx7reXa_i8ny\n- XVZ84UhzuvdSSsKxyPMp\n 13 \N 189.186.58.97 24a7c62a-f710-461b-bc2f-8414e5027618 2019-09-03 23:55:01.632769 14711 148 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.58.97 1b03dd65-9b8e-4375-9743-68f6a9efe652 2019-09-03 23:55:52.738123 14712 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E2\n- !ruby/object:BigDecimal 18:0.76E2\n 3 \N 189.186.58.97 1b03dd65-9b8e-4375-9743-68f6a9efe652 2019-09-03 23:55:52.754372 14713 149 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.58.97 4f5eef59-ea69-4a95-a0d7-175f807fcbcb 2019-09-03 23:55:57.071525 14714 940 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 640\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 4f5eef59-ea69-4a95-a0d7-175f807fcbcb 2019-09-03 23:55:57.0993 14715 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-09-03 23:56:32.314160258 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 4 \N 187.149.63.76 2387a8f2-b301-401d-be74-961d18f5ae8c 2019-09-03 23:56:32.320932 14716 8 User \N \N 8 User \N update ---\nunique_session_id:\n- \n- 4D4kbZskxxdU-DTh1MR2\n 5 \N 187.149.63.76 2387a8f2-b301-401d-be74-961d18f5ae8c 2019-09-03 23:56:32.335422 14717 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 23:40:21.389584000 Z\n- &1 2019-09-03 23:50:10.050026000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-04 00:01:25.167700577 Z\nsign_in_count:\n- 559\n- 560\n 1120 \N 189.186.58.97 2855cf15-7a2a-496f-9700-8f7297163b8e 2019-09-04 00:01:25.173719 14718 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vDG36LmkubF5WzSXizq1\n- pmz-fayyWfGgBr7oTqiw\n 1121 \N 189.186.58.97 2855cf15-7a2a-496f-9700-8f7297163b8e 2019-09-04 00:01:25.186719 14719 367 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.35E2\n- !ruby/object:BigDecimal 18:0.36E2\n 20 \N 189.186.58.97 0e139972-5f1b-482b-ab49-bce403383b1b 2019-09-04 00:05:12.709154 14720 372 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.58.97 907d9c01-c60a-4546-92d0-9379858ad6b1 2019-09-04 00:05:18.967865 14721 376 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 42806591-cfd1-41e6-b2aa-18172a328e45 2019-09-04 00:05:28.024382 14722 373 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 189.186.58.97 24cc7dd2-ae53-4893-a72c-88d47e5b9e60 2019-09-04 00:05:46.649101 14723 374 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.58.97 ab755402-0395-4bb5-b9cb-30bf9f4feadf 2019-09-04 00:05:58.826715 14724 371 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 1a1b0522-2527-4bac-8730-e5a485433a0f 2019-09-04 00:06:06.973693 14725 375 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.58.97 b2957116-c492-4c4c-97dd-44a79632126a 2019-09-04 00:06:17.506442 14726 369 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 8ca7c312-6885-42d0-b5be-d11c9dc4f71c 2019-09-04 00:06:42.430204 14727 164 Customer \N \N 8 User \N create ---\nnick_name: ANGELICA GUERRERO\nphone: "(667) 223-3719"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.4E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANGELICA GUERRERO fue registrado. 187.149.63.76 e4e5af3d-d6b0-4c14-85e3-4f67d51a5d15 2019-09-04 00:06:52.8628 14728 372 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.58.97 8d6cbe54-37d8-4c5f-844a-080c2d7b9d0f 2019-09-04 00:06:57.954879 14729 373 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.58.97 566ca622-33f3-467a-862e-265a6de72af4 2019-09-04 00:07:04.441137 14730 374 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.58.97 4905ca95-f203-4ee1-b99d-3ff2bfad6330 2019-09-04 00:07:06.556648 14731 375 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.58.97 713ad769-2ede-4186-b93f-aa4515ccba6e 2019-09-04 00:07:08.911046 14732 1030 Sale \N \N 8 User \N create ---\ncustomer_id: 164\nuser_id: 8\nopen_cash_register_id: 402\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2019-09-03\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-429\nexpiration_date: 2019-10-08\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 28459a54-73a7-4535-b1c6-ccf98683ad21 2019-09-04 00:07:13.961458 14733 794 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.63.76 28459a54-73a7-4535-b1c6-ccf98683ad21 2019-09-04 00:07:13.991046 14734 1425 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 402\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1030\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-429\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-429 187.149.63.76 5669d6ef-b18f-406b-9832-e23d1199a7f0 2019-09-04 00:07:25.438394 14735 1030 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.63.76 0a1feddb-9d64-4f78-9139-eb7324798728 2019-09-04 00:07:28.523316 14736 368 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.58.97 bb1f985f-4c02-45d5-ba7e-dacf8713149c 2019-09-04 00:08:53.29793 14738 150 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.58.97 10c11e01-7ed4-4140-a098-28f9e4b0ca61 2019-09-04 00:09:09.215614 14739 27 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 0c9e9ec5-3e6f-4c70-930b-ded50a14aef4 2019-09-04 00:10:25.86254 14740 25 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 76e729b1-281f-4970-8016-959db54df50a 2019-09-04 00:10:35.039525 14741 19 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 d96d36b1-cfc3-4463-a176-c9752f16e8db 2019-09-04 00:10:40.470021 14742 24 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 029963af-ef12-4072-871d-5b98f5b7a7f6 2019-09-04 00:10:51.776819 14743 28 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 e8ce8d3b-80a7-40e1-8af7-f438a55b08b8 2019-09-04 00:11:03.14511 14744 20 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.58.97 91981036-8dc0-4fa4-b2b8-412fe31e2dd1 2019-09-04 00:11:09.779363 14745 26 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 f1460166-e167-4dc4-8764-8f2ffe610218 2019-09-04 00:11:15.609692 14746 20 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.58.97 87ef6270-2f1a-44a2-83ca-02b69ba59e89 2019-09-04 00:11:28.185233 14747 151 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.58.97 cda2fc97-c0e2-4770-a264-faabb34225ca 2019-09-04 00:12:28.282088 14748 21 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 6ac4fce0-267c-485d-816c-e9d34946bc81 2019-09-04 00:13:05.784342 14749 22 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 1cf8cb77-b452-4f0e-88ea-4e35afd3230a 2019-09-04 00:13:09.335286 14750 152 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.58.97 49001f5a-0fef-45f0-84dd-e49bf39db9c6 2019-09-04 00:13:11.037653 14751 352 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 11b199ef-fa3e-4942-952a-cd630cfd440a 2019-09-04 00:14:41.129011 14752 355 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 cf49c182-338b-4db1-af7f-a42cf9916747 2019-09-04 00:14:48.29553 14753 361 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 6930a832-32b4-46b7-b265-e45ba81a47c7 2019-09-04 00:14:54.603389 14754 153 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de S BY SUO a Almacen central creado. 189.186.58.97 92bea975-d3e7-4d08-b4ee-b25926cd4489 2019-09-04 00:14:57.774586 14755 359 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 90e56279-bcb4-4609-9802-fbfcbec2fdbf 2019-09-04 00:16:32.422504 14756 154 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de S BY SUO a Almacen central creado. 189.186.58.97 08b63ba4-da3d-4a5b-9f31-bfe2a9806f95 2019-09-04 00:16:35.16311 14757 500 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.58.97 ecd6561f-c211-4e3f-a11d-6c1f32818d0c 2019-09-04 00:17:21.036291 14758 500 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.58.97 3152d210-2672-4d47-b87a-8ef6615114ef 2019-09-04 00:17:25.706261 14759 155 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.58.97 50e5d872-860c-45ef-a280-95c5694303ab 2019-09-04 00:17:27.096797 14760 572 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.58.97 df7fa0aa-2bca-4632-afe3-8bf7a11c1636 2019-09-04 00:20:01.318443 14761 572 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.58.97 f5305248-c29c-46be-b15c-9d7899aaa9a4 2019-09-04 00:20:08.088187 14762 579 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 4 \N 189.186.58.97 38e8b325-eb2f-439e-ac8f-5e6ca534c23f 2019-09-04 00:21:23.49812 14763 579 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.58.97 0a34ae1f-74b9-451b-b181-e99bf4e61e4e 2019-09-04 00:21:26.524239 14764 548 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.58.97 c203f527-a884-4b46-934b-0c9c814be226 2019-09-04 00:23:22.374646 14765 548 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.58.97 87b1d645-fca8-40b8-80d1-db24e6db00b3 2019-09-04 00:23:26.527643 14766 564 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.58.97 e05b8506-40c6-47d9-a690-6a5178fac558 2019-09-04 00:26:40.457933 14767 564 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.58.97 302dd656-dcc3-467e-ade8-59a46b2adb79 2019-09-04 00:26:43.209401 14768 565 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.58.97 6ff42d85-1e82-42b6-a554-8271a073c060 2019-09-04 00:28:25.834041 14769 565 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.58.97 e89a074a-4a47-4060-aa75-22410b5085b6 2019-09-04 00:28:28.391024 14770 156 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.58.97 59ac6e32-d1df-449b-9c28-39847440534a 2019-09-04 00:28:53.925141 14771 142 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.58.97 9f1efc95-4631-490d-a293-bfde5d00f03b 2019-09-04 00:29:42.982226 14772 142 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.58.97 1b87d0bd-d6aa-4337-a206-1ab6f978359a 2019-09-04 00:29:45.906251 14773 518 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.58.97 c814da79-7199-4744-8218-2a519ef11f53 2019-09-04 00:30:34.98557 14774 518 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.58.97 ee7f92d0-4b07-4fd7-b159-93ceecaf9e21 2019-09-04 00:30:38.642124 14775 538 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.58.97 845ca68c-3ab2-4c07-abc6-aa7d31cb3e40 2019-09-04 00:31:15.032702 14776 538 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.58.97 1167c5ef-af7b-4def-b21d-497d1ceda6cb 2019-09-04 00:31:18.105548 14777 656 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.58.97 b1d6a2bf-64c6-4952-89ef-313a3c575e2a 2019-09-04 00:31:43.729127 14778 656 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.58.97 8c36fbb1-f30e-4238-b56d-d0c50c69b1ae 2019-09-04 00:31:46.731171 14779 647 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 189.186.58.97 3f71df29-0988-41c4-983b-ad1899593c7f 2019-09-04 00:32:52.689181 14780 647 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.58.97 7c7f8f27-3c5a-4ca0-8b39-65460c7f2c9b 2019-09-04 00:32:55.770338 14781 202 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.58.97 40d4e481-3c25-4d25-98c8-552d94c22f2b 2019-09-04 00:33:34.665721 14782 202 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.58.97 f284d0ac-d593-41fc-a549-8b5d01bde140 2019-09-04 00:33:37.587766 14783 698 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.58.97 04b1537d-5fc6-447c-b392-f4e67b8a030f 2019-09-04 00:33:53.539745 14784 698 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.58.97 0e03a043-02d7-487a-8f33-e12d94905371 2019-09-04 00:33:56.89882 14785 216 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 189.186.58.97 e65aca28-994a-470f-aa01-42a79f76d70c 2019-09-04 00:34:53.414508 14786 216 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.58.97 686e6c07-e4a0-4dc7-8e4d-0cf71d568d49 2019-09-04 00:34:58.896536 14787 253 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.58.97 c4981640-4c8f-496d-a422-3e72c876055d 2019-09-04 00:35:50.407306 14788 253 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.58.97 39802ff5-aa82-4b76-beaf-21ee907e5f3d 2019-09-04 00:35:54.777576 14789 168 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 189.186.58.97 dc9d412e-a870-4839-8a32-e192456b636d 2019-09-04 00:36:07.470606 14790 168 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.58.97 3bae01d3-7ec0-4eda-ad1a-fbc7bf8a50c6 2019-09-04 00:36:11.507884 14791 157 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.58.97 7e0ff5a1-b482-4c7a-86a7-f6e2757c83a9 2019-09-04 00:36:39.734371 14792 557 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.58.97 3bd20560-0293-464c-8fc8-7435b06728fe 2019-09-04 00:37:49.435504 14793 557 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.58.97 4a9dfa63-e6ef-46ac-a926-14ef67041a0d 2019-09-04 00:38:03.052227 14794 560 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.58.97 aa5316f5-900b-4b64-84ef-b07f3ac23cda 2019-09-04 00:38:20.675001 14795 560 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.58.97 751fc810-d0e6-4d11-842b-b68651f3a123 2019-09-04 00:38:23.818722 14796 317 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.58.97 857b87a5-3ff0-4d51-8695-8b9aae7a1645 2019-09-04 00:38:43.226807 14797 317 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.58.97 58c16f3f-505c-4203-9f1c-f5c894050250 2019-09-04 00:38:46.216506 14798 716 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.58.97 13669b92-dc61-4c7e-83c9-5702a6e7a411 2019-09-04 00:39:01.753901 14799 716 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.58.97 588e7615-3f46-46eb-a863-f489d83b6c46 2019-09-04 00:39:04.894254 14800 158 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.58.97 ff79fb63-5d06-4987-91c1-8a397835e31b 2019-09-04 00:39:47.048193 14801 636 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 189.186.58.97 6f87253f-175f-465e-80bd-0286e6d2d2e3 2019-09-04 00:40:10.447507 14802 636 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.58.97 f0eacf03-0bac-450a-8592-3441fbdb14eb 2019-09-04 00:40:14.918224 14878 670 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.58.97 fc4227bf-7f40-46d1-b96a-59ddba2eed6c 2019-09-04 01:02:48.831213 14803 159 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.58.97 1226657d-6621-460d-ac5d-8b36b809ead8 2019-09-04 00:40:15.704054 14804 3 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 6 \N 189.186.58.97 d5a10e59-1ec6-45ff-b9a4-aa331dbd0045 2019-09-04 00:41:19.442599 14805 7 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 189.186.58.97 9366f321-cc80-4823-ade2-1ab45c4b6cf3 2019-09-04 00:41:51.770008 14806 3 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.58.97 8acc83f7-f309-4a7e-a891-b1bc20ca994c 2019-09-04 00:42:23.784121 14807 7 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.58.97 e590c3d1-637e-4d25-967d-14d4f9ab1cd5 2019-09-04 00:42:24.569882 14808 160 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.58.97 57285802-484a-45b8-8306-0d9f67094258 2019-09-04 00:42:25.496241 14809 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 23:50:10.050026000 Z\n- &1 2019-09-04 00:01:25.167700000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-04 00:43:04.543528227 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 560\n- 561\n 1122 \N 187.149.63.76 c162e1db-8012-4961-bae1-99cc0362ceef 2019-09-04 00:43:04.550381 14810 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pmz-fayyWfGgBr7oTqiw\n- izw8dxGmBreasS5Dv2Cy\n 1123 \N 187.149.63.76 c162e1db-8012-4961-bae1-99cc0362ceef 2019-09-04 00:43:04.565202 14811 402 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 403\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1197E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.922E3\nphysical_cash: !ruby/object:BigDecimal 18:0.922E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.63.76 a7ace4a2-8cce-4532-8720-02cb8e1da5e5 2019-09-04 00:50:04.928407 14812 403 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 a7ace4a2-8cce-4532-8720-02cb8e1da5e5 2019-09-04 00:50:04.942382 14813 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 23:49:40.746939000 Z\n- &1 2019-09-03 23:55:01.611621000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-04 00:51:10.361756516 Z\nsign_in_count:\n- 6\n- 7\n 14 \N 189.186.58.97 03787372-34c2-46e5-b6ad-8003fb4b9340 2019-09-04 00:51:10.367969 14814 21 User \N \N 21 User \N update ---\nunique_session_id:\n- XVZ84UhzuvdSSsKxyPMp\n- jwS7jSwNWPDLWsiPmjsA\n 15 \N 189.186.58.97 03787372-34c2-46e5-b6ad-8003fb4b9340 2019-09-04 00:51:10.382334 14815 150 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.58.97 d881598e-2396-4974-915b-d440d7e5dba4 2019-09-04 00:51:26.582228 14816 941 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 378\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 d881598e-2396-4974-915b-d440d7e5dba4 2019-09-04 00:51:26.604485 14817 942 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 373\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 d881598e-2396-4974-915b-d440d7e5dba4 2019-09-04 00:51:26.627193 14818 943 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 371\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 d881598e-2396-4974-915b-d440d7e5dba4 2019-09-04 00:51:26.648225 14819 944 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 374\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 d881598e-2396-4974-915b-d440d7e5dba4 2019-09-04 00:51:26.669273 14820 945 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 375\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 d881598e-2396-4974-915b-d440d7e5dba4 2019-09-04 00:51:26.693739 14821 946 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 376\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 d881598e-2396-4974-915b-d440d7e5dba4 2019-09-04 00:51:26.716282 14822 947 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 377\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 d881598e-2396-4974-915b-d440d7e5dba4 2019-09-04 00:51:26.740029 14823 948 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 370\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 d881598e-2396-4974-915b-d440d7e5dba4 2019-09-04 00:51:26.762346 14824 160 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.58.97 37514dd6-e81c-4d90-81ee-5c7dad1ad53c 2019-09-04 00:51:32.650574 14825 949 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 9\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.9E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 37514dd6-e81c-4d90-81ee-5c7dad1ad53c 2019-09-04 00:51:32.670529 14826 950 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 5\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.9E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 37514dd6-e81c-4d90-81ee-5c7dad1ad53c 2019-09-04 00:51:32.692055 14827 159 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.58.97 00b586c6-3325-44cb-be1d-ad271c897354 2019-09-04 00:51:37.496751 14879 604 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.58.97 b370472f-9e9c-454a-8f82-933e23d24bc0 2019-09-04 01:03:20.394903 14828 951 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 570\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 00b586c6-3325-44cb-be1d-ad271c897354 2019-09-04 00:51:37.515298 14829 156 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.58.97 31b31653-b283-4093-9416-2cf75d4215e9 2019-09-04 00:51:43.284877 14830 952 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 531\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 31b31653-b283-4093-9416-2cf75d4215e9 2019-09-04 00:51:43.307733 14831 953 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 60\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.9E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 31b31653-b283-4093-9416-2cf75d4215e9 2019-09-04 00:51:43.330795 14832 954 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 499\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 31b31653-b283-4093-9416-2cf75d4215e9 2019-09-04 00:51:43.353097 14833 955 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 528\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 31b31653-b283-4093-9416-2cf75d4215e9 2019-09-04 00:51:43.378579 14834 956 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 529\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 31b31653-b283-4093-9416-2cf75d4215e9 2019-09-04 00:51:43.402619 14835 151 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.58.97 9406bdda-bc2d-42e7-91f1-599c9ec77a2a 2019-09-04 00:51:56.131778 14836 957 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 28\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 9406bdda-bc2d-42e7-91f1-599c9ec77a2a 2019-09-04 00:51:56.152631 14837 958 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 22\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 9406bdda-bc2d-42e7-91f1-599c9ec77a2a 2019-09-04 00:51:56.173781 14838 959 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 30\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 9406bdda-bc2d-42e7-91f1-599c9ec77a2a 2019-09-04 00:51:56.194698 14839 960 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 26\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 9406bdda-bc2d-42e7-91f1-599c9ec77a2a 2019-09-04 00:51:56.221259 14840 961 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 21\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 9406bdda-bc2d-42e7-91f1-599c9ec77a2a 2019-09-04 00:51:56.241825 14841 962 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 27\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 9406bdda-bc2d-42e7-91f1-599c9ec77a2a 2019-09-04 00:51:56.263246 14842 963 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 29\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 9406bdda-bc2d-42e7-91f1-599c9ec77a2a 2019-09-04 00:51:56.287765 14843 152 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.58.97 0bda7e5a-77d2-41ba-aa8a-71ea82daeaa3 2019-09-04 00:52:02.110735 14844 964 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 24\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 0bda7e5a-77d2-41ba-aa8a-71ea82daeaa3 2019-09-04 00:52:02.132834 14845 965 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 23\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 0bda7e5a-77d2-41ba-aa8a-71ea82daeaa3 2019-09-04 00:52:02.156062 14846 155 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.58.97 5a892b76-f556-4cce-aa63-23445baaceb2 2019-09-04 00:52:10.582701 14847 966 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 488\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 5a892b76-f556-4cce-aa63-23445baaceb2 2019-09-04 00:52:10.610799 14848 158 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.58.97 445dfc10-d24d-4dff-8a43-d12dac440ff7 2019-09-04 00:52:31.839176 14849 967 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 521\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 445dfc10-d24d-4dff-8a43-d12dac440ff7 2019-09-04 00:52:31.861542 14850 968 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 524\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 445dfc10-d24d-4dff-8a43-d12dac440ff7 2019-09-04 00:52:31.882685 14851 969 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 319\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 445dfc10-d24d-4dff-8a43-d12dac440ff7 2019-09-04 00:52:31.904749 14852 970 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 501\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 445dfc10-d24d-4dff-8a43-d12dac440ff7 2019-09-04 00:52:31.927774 14853 157 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.58.97 c2b1465d-6d0c-48dc-a2fc-736cd5b563ca 2019-09-04 00:52:56.621806 14854 971 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 144\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 c2b1465d-6d0c-48dc-a2fc-736cd5b563ca 2019-09-04 00:52:56.64513 14855 972 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 434\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 c2b1465d-6d0c-48dc-a2fc-736cd5b563ca 2019-09-04 00:52:56.672632 14856 973 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 511\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 c2b1465d-6d0c-48dc-a2fc-736cd5b563ca 2019-09-04 00:52:56.698712 14857 974 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 519\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 c2b1465d-6d0c-48dc-a2fc-736cd5b563ca 2019-09-04 00:52:56.721519 14858 975 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 581\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 c2b1465d-6d0c-48dc-a2fc-736cd5b563ca 2019-09-04 00:52:56.742221 14859 976 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 204\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 c2b1465d-6d0c-48dc-a2fc-736cd5b563ca 2019-09-04 00:52:56.76615 14860 977 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 591\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 c2b1465d-6d0c-48dc-a2fc-736cd5b563ca 2019-09-04 00:52:56.789792 14861 978 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 218\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 c2b1465d-6d0c-48dc-a2fc-736cd5b563ca 2019-09-04 00:52:56.811812 14862 979 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 255\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 c2b1465d-6d0c-48dc-a2fc-736cd5b563ca 2019-09-04 00:52:56.834794 14863 980 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 170\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 c2b1465d-6d0c-48dc-a2fc-736cd5b563ca 2019-09-04 00:52:56.866964 14864 8 User \N \N 8 User \N update ---\ncurrent_sign_in_at:\n- 2019-09-03 23:56:32.314160000 Z\n- 2019-09-04 00:54:51.125854230 Z\nsign_in_count:\n- 1\n- 2\n 6 \N 187.149.63.76 c9a123d3-fe80-4aa7-9131-451cebe548b9 2019-09-04 00:54:51.131456 14865 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 4D4kbZskxxdU-DTh1MR2\n- 1X_9wk8Jsgtp-LNX-UEp\n 7 \N 187.149.63.76 c9a123d3-fe80-4aa7-9131-451cebe548b9 2019-09-04 00:54:51.144884 14866 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-04 00:01:25.167700000 Z\n- &1 2019-09-04 00:43:04.543528000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-04 00:55:59.725285817 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\nsign_in_count:\n- 561\n- 562\n 1124 \N 189.186.58.97 37dc239a-cf1d-4302-acbf-07f61eb1e301 2019-09-04 00:55:59.732772 14867 4 User \N \N 4 User \N update ---\nunique_session_id:\n- izw8dxGmBreasS5Dv2Cy\n- QKBGyYmbDqRjF8tepqo8\n 1125 \N 189.186.58.97 37dc239a-cf1d-4302-acbf-07f61eb1e301 2019-09-04 00:55:59.749164 14868 666 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.58.97 552cd161-6df9-49d3-951b-9f0be2122014 2019-09-04 00:56:44.807015 14869 666 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.58.97 25323725-b516-4b30-ab75-909bedb1a79a 2019-09-04 00:57:04.913176 14870 669 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.58.97 c80cdbd5-f2b7-4be1-9678-b943d8dc0de3 2019-09-04 01:00:29.596815 14871 669 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.58.97 3a0664b6-aa3d-47ac-b94b-f2cd568e394a 2019-09-04 01:00:32.375265 14872 161 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.58.97 8c5cf4e6-0262-4054-bc30-989fa890dd4c 2019-09-04 01:00:33.626399 14873 403 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 402\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.1979E4\namount_out: !ruby/object:BigDecimal 18:0.1E3\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.8835E3\nphysical_cash: !ruby/object:BigDecimal 18:0.13835E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.63.76 0bf7db57-e44f-447d-9a25-606cc1204d11 2019-09-04 01:01:01.316031 14874 402 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 0bf7db57-e44f-447d-9a25-606cc1204d11 2019-09-04 01:01:01.330476 14875 251 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.58.97 6981350d-8945-4e1f-aef2-f2cb4eda8a12 2019-09-04 01:01:25.184827 14876 251 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.58.97 f72a633a-9a48-4c3c-8e36-2075ac7b3641 2019-09-04 01:01:28.911001 14877 670 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.58.97 a1639460-628e-4fdf-9a05-c41d4ee7faf0 2019-09-04 01:02:46.164213 14880 604 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.58.97 c8085ae9-2ae3-44f6-9837-387dc2c6691f 2019-09-04 01:03:23.641521 14881 150 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 189.186.58.97 2d5c1ba0-eb26-4084-899e-129cf5527332 2019-09-04 01:03:58.622803 14882 150 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.58.97 7b1eaa73-ea71-46fb-acc5-3ce9cf1d4dd3 2019-09-04 01:04:01.467189 14883 162 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-09-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.58.97 08cf0f66-c80b-4c05-a5f8-be1862adedad 2019-09-04 01:04:04.601463 14884 22 User \N \N 22 User \N update ---\ncurrent_sign_in_at:\n- 2019-09-03 23:53:38.440887000 Z\n- 2019-09-04 01:07:45.879372261 Z\nsign_in_count:\n- 1\n- 2\n 4 \N 189.186.58.97 a162f36e-70d1-417a-a861-c248db1b79d1 2019-09-04 01:07:45.884717 14885 22 User \N \N 22 User \N update ---\nunique_session_id:\n- QdGi3zhaPaYSuUynBdcD\n- sop35r3k1TagSCLNb6wp\n 5 \N 189.186.58.97 a162f36e-70d1-417a-a861-c248db1b79d1 2019-09-04 01:07:45.901179 14886 154 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de S BY SUO a Almacen central 189.186.58.97 2c9f57f3-94a3-4d0f-956b-428863c5d154 2019-09-04 01:08:02.50147 14887 153 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de S BY SUO a Almacen central 189.186.58.97 0ffaa711-821a-4d37-8c3b-5e4fa7a96002 2019-09-04 01:08:07.224052 14888 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 23:55:01.611621000 Z\n- &1 2019-09-04 00:51:10.361756000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-04 01:08:18.093099934 Z\nsign_in_count:\n- 7\n- 8\n 16 \N 189.186.58.97 9c8e6958-1482-4526-b68c-f00e1ca77447 2019-09-04 01:08:18.101779 14889 21 User \N \N 21 User \N update ---\nunique_session_id:\n- jwS7jSwNWPDLWsiPmjsA\n- BJLpzQL8MFLzXqSA72P2\n 17 \N 189.186.58.97 9c8e6958-1482-4526-b68c-f00e1ca77447 2019-09-04 01:08:18.116318 14890 161 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.58.97 657ad2e1-7e2a-4a26-930e-9ccfe3a8f8c0 2019-09-04 01:08:26.776797 14891 981 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 247\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 657ad2e1-7e2a-4a26-930e-9ccfe3a8f8c0 2019-09-04 01:08:26.800232 14892 982 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 586\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 657ad2e1-7e2a-4a26-930e-9ccfe3a8f8c0 2019-09-04 01:08:26.82716 14893 162 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-03\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.58.97 6212c0b5-ba99-432f-b64f-ca2fad986bca 2019-09-04 01:08:33.06531 14894 983 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 152\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 6212c0b5-ba99-432f-b64f-ca2fad986bca 2019-09-04 01:08:33.086412 14895 984 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 551\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 6212c0b5-ba99-432f-b64f-ca2fad986bca 2019-09-04 01:08:33.109909 14896 985 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 395\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 6212c0b5-ba99-432f-b64f-ca2fad986bca 2019-09-04 01:08:33.132476 14897 986 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 253\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 6212c0b5-ba99-432f-b64f-ca2fad986bca 2019-09-04 01:08:33.153463 14898 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-04 00:43:04.543528000 Z\n- &1 2019-09-04 00:55:59.725285000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-04 01:14:30.943570820 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\nsign_in_count:\n- 562\n- 563\n 1126 \N 189.186.58.97 e2fe3b1d-ac98-4c9d-9f50-5ab85bfae5ea 2019-09-04 01:14:30.951044 14899 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QKBGyYmbDqRjF8tepqo8\n- xTwQbz2YyuFPBkswvKky\n 1127 \N 189.186.58.97 e2fe3b1d-ac98-4c9d-9f50-5ab85bfae5ea 2019-09-04 01:14:30.967455 14900 445 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '445'\n is_parent: false\n sku: BOL-445\n name: AMIK227\n description: BACK PACK CLOE\n price_base: '999.5'\n price_sale: '1999.0'\n img_product: AMIK227.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000445'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-07 01:30:38.527523'\n updated_at: &12 2019-09-04 01:17:38.272957099 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '445'\n sku: BOL-445\n name: AMIK227\n description: BACK PACK CLOE\n price_base: '999.50'\n price_sale: '1999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-07 01:30:38.527523'\n updated_at: '2019-02-07 01:30:38.59888'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000445'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '445'\n type: *3\n value: 445\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-445\n type: *7\n value: BOL-445\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: AMIK227\n type: *8\n value: AMIK227\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BACK PACK CLOE\n type: *6\n value: BACK PACK CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '999.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.9995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1999E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: AMIK227.jpg\n type: *2\n value: AMIK227.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000445'\n type: *2\n value: '0000445'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-07 01:30:38.527523'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- AMIK227.jpg\n 3 El producto BOL-445 fue modificado. 189.186.58.97 fa94a268-7c63-4dd7-b7eb-98f17241d005 2019-09-04 01:17:38.318384 14901 263 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '263'\n is_parent: false\n sku: ZAP-263\n name: AMDI620\n description: SANDALIA CLOE\n price_base: '799.5'\n price_sale: '1599.0'\n img_product: AMDI.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '13'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000263'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862841'\n updated_at: &12 2019-09-04 01:18:40.568914631 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '263'\n sku: ZAP-263\n name: AMDI620\n description: SANDALIA CLOE\n price_base: '799.50'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862841'\n updated_at: '2019-02-04 09:10:12.260982'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000263'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '13'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '263'\n type: *3\n value: 263\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ZAP-263\n type: *7\n value: ZAP-263\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: AMDI620\n type: *8\n value: AMDI620\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: SANDALIA CLOE\n type: *6\n value: SANDALIA CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '799.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: AMDI.jpg\n type: *2\n value: AMDI.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '13'\n type: *3\n value: 13\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000263'\n type: *2\n value: '0000263'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862841'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- AMDI.jpg\n 3 El producto ZAP-263 fue modificado. 189.186.58.97 aa515533-0550-4996-866f-9056b3346f32 2019-09-04 01:18:40.619036 14902 55 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '55'\n is_parent: false\n sku: BOL-55\n name: DHOT186\n description: BOLSA CLOE\n price_base: '849.5'\n price_sale: '1699.0'\n img_product: satchel-en-charol-con-colgante-de-flecos-cloe-mujer-D_NQ_NP_720938-MLM30065620106_042019-F.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000055'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862633'\n updated_at: &12 2019-09-04 01:29:05.506870351 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '55'\n sku: BOL-55\n name: DHOT186\n description: BOLSA CLOE\n price_base: '849.50'\n price_sale: '1699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862633'\n updated_at: '2019-02-04 09:10:16.557898'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000055'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '55'\n type: *3\n value: 55\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-55\n type: *7\n value: BOL-55\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DHOT186\n type: *8\n value: DHOT186\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE\n type: *6\n value: BOLSA CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '849.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1699E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: satchel-en-charol-con-colgante-de-flecos-cloe-mujer-D_NQ_NP_720938-MLM30065620106_042019-F.jpg\n type: *2\n value: satchel-en-charol-con-colgante-de-flecos-cloe-mujer-D_NQ_NP_720938-MLM30065620106_042019-F.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000055'\n type: *2\n value: '0000055'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862633'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- satchel-en-charol-con-colgante-de-flecos-cloe-mujer-D_NQ_NP_720938-MLM30065620106_042019-F.jpg\n 3 El producto BOL-55 fue modificado. 189.186.58.97 dae188eb-ad29-441c-9160-faf544966b60 2019-09-04 01:29:05.553647 14903 468 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '468'\n is_parent: false\n sku: BOL-468\n name: DOGA599\n description: PORTA LAPTOP CLOE\n price_base: '949.5'\n price_sale: '1899.0'\n img_product: DOGA599_MORA_1_90x130.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000468'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-11 18:48:34.626621'\n updated_at: &12 2019-09-04 01:31:23.938399320 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '468'\n sku: BOL-468\n name: DOGA599\n description: PORTA LAPTOP CLOE\n price_base: '949.50'\n price_sale: '1899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-11 18:48:34.626621'\n updated_at: '2019-02-11 18:48:34.68425'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000468'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '468'\n type: *3\n value: 468\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-468\n type: *7\n value: BOL-468\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DOGA599\n type: *8\n value: DOGA599\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PORTA LAPTOP CLOE\n type: *6\n value: PORTA LAPTOP CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '949.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.9495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1899E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DOGA599_MORA_1_90x130.jpg\n type: *2\n value: DOGA599_MORA_1_90x130.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000468'\n type: *2\n value: '0000468'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-11 18:48:34.626621'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- DOGA599_MORA_1_90x130.jpg\n 3 El producto BOL-468 fue modificado. 189.186.58.97 db2a1081-5af6-40d4-8ef7-adac374ea37b 2019-09-04 01:31:23.983032 14904 32 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '32'\n is_parent: false\n sku: CAR-32\n name: XEKP767\n description: CARTERA CLOE\n price_base: '349.5'\n price_sale: '699.0'\n img_product: XEKP767.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000032'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.86261'\n updated_at: &12 2019-09-04 01:36:07.159342336 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '32'\n sku: CAR-32\n name: XEKP767\n description: CARTERA CLOE\n price_base: '349.50'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.86261'\n updated_at: '2019-02-04 09:10:22.498589'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000032'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '32'\n type: *3\n value: 32\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-32\n type: *7\n value: CAR-32\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: XEKP767\n type: *8\n value: XEKP767\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA CLOE\n type: *6\n value: CARTERA CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '349.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: XEKP767.png\n type: *2\n value: XEKP767.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000032'\n type: *2\n value: '0000032'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.86261'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- XEKP767.png\n 3 El producto CAR-32 fue modificado. 189.186.58.97 6703bce0-14a0-447d-bc88-21119ca8f418 2019-09-04 01:36:07.220475 14905 40 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '40'\n is_parent: false\n sku: CAR-40\n name: SUND277\n description: CARTERA CLOE\n price_base: '399.5'\n price_sale: '799.0'\n img_product: 32547648_1680602455322358_8136561812784021504_n.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000040'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862618'\n updated_at: &12 2019-09-04 01:39:29.900128598 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '40'\n sku: CAR-40\n name: SUND277\n description: CARTERA CLOE\n price_base: '399.50'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862618'\n updated_at: '2019-02-04 09:10:20.479855'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000040'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '40'\n type: *3\n value: 40\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-40\n type: *7\n value: CAR-40\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: SUND277\n type: *8\n value: SUND277\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA CLOE\n type: *6\n value: CARTERA CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '399.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 32547648_1680602455322358_8136561812784021504_n.jpg\n type: *2\n value: 32547648_1680602455322358_8136561812784021504_n.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000040'\n type: *2\n value: '0000040'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862618'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 32547648_1680602455322358_8136561812784021504_n.jpg\n 3 El producto CAR-40 fue modificado. 189.186.58.97 8254001c-1697-416f-b8f6-ca74d0d9febf 2019-09-04 01:39:29.944114 14906 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-04 00:51:10.361756000 Z\n- &1 2019-09-04 01:08:18.093099000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-04 01:51:57.109525522 Z\nsign_in_count:\n- 8\n- 9\n 18 \N 189.186.58.97 7931b2ad-b571-407c-ae6a-69cdbf5ac4ec 2019-09-04 01:51:57.116886 14907 21 User \N \N 21 User \N update ---\nunique_session_id:\n- BJLpzQL8MFLzXqSA72P2\n- yxudiq3pYN1baGL3urzd\n 19 \N 189.186.58.97 7931b2ad-b571-407c-ae6a-69cdbf5ac4ec 2019-09-04 01:51:57.130108 14908 404 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.665E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 665.0 189.186.58.97 f98f2e22-cc7d-43da-9249-62cf3fc3a1fd 2019-09-04 02:00:09.735015 14909 404 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 404\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1165E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1165E4\nobservations: 'SE AGREGA AL FONDO $500.00 '\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.58.97 7f292678-0fdb-40a9-a1d2-c6a8e949a911 2019-09-04 02:01:05.706888 14910 404 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.58.97 7f292678-0fdb-40a9-a1d2-c6a8e949a911 2019-09-04 02:01:05.72264 14911 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 19:38:06.165697000 Z\n- &1 2019-09-03 20:10:25.499601000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-04 15:53:37.652493038 Z\nsign_in_count:\n- 308\n- 309\n 621 \N 187.149.63.76 07a8332f-bfa2-4dcc-94ee-3a09ef68fa04 2019-09-04 15:53:37.681385 14912 2 User \N \N 2 User \N update ---\nunique_session_id:\n- sh828LMy-Ez8cRgGRQ_M\n- "-1ACoK9asxGr-2U-rfte"\n 622 \N 187.149.63.76 07a8332f-bfa2-4dcc-94ee-3a09ef68fa04 2019-09-04 15:53:37.704942 14913 610 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.63.76 5c0d7240-f288-4ace-b7ac-8ef01c1c954c 2019-09-04 16:18:29.855607 14914 610 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.63.76 1c1e781d-2939-4f64-b2d3-fea41f10e54b 2019-09-04 16:18:33.824118 14915 163 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-09-04\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.63.76 ebd17946-bf4a-46fb-b8fc-15f10e62e2fc 2019-09-04 16:19:31.324752 14916 697 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 187.149.63.76 cf2145ea-a33e-4689-a54e-c41c9428c6ba 2019-09-04 16:27:52.184403 14917 164 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-09-04\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.63.76 796a804e-f5e7-406e-beaf-069406a94dd8 2019-09-04 16:27:55.092869 14918 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 23:56:32.314160000 Z\n- &1 2019-09-04 00:54:51.125854000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-04 16:36:37.118927962 Z\nsign_in_count:\n- 2\n- 3\n 8 \N 187.149.63.76 4647a846-15b0-4947-b8e0-855da3e67e9c 2019-09-04 16:36:37.127964 14919 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 1X_9wk8Jsgtp-LNX-UEp\n- 8CnH1JJ4itQ-n_6muLS1\n 9 \N 187.149.63.76 4647a846-15b0-4947-b8e0-855da3e67e9c 2019-09-04 16:36:37.146268 14920 163 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-04\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.63.76 f0442d7c-cea2-423c-9626-933dcb2a8021 2019-09-04 16:37:23.32555 14921 987 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 557\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 f0442d7c-cea2-423c-9626-933dcb2a8021 2019-09-04 16:37:23.348205 14922 719 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.63.76 ab95ae38-436b-4fdb-9041-79d954a23828 2019-09-04 17:05:15.870933 14923 719 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.63.76 fd88ba4e-ef82-4fd6-9420-7e462f740bcc 2019-09-04 17:05:21.133054 14924 165 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-09-04\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.63.76 144e2f17-f956-411c-aa96-c7baa8621c2a 2019-09-04 17:05:22.73318 14925 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-04 01:08:18.093099000 Z\n- &1 2019-09-04 01:51:57.109525000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-04 17:06:34.105311567 Z\nsign_in_count:\n- 9\n- 10\n 20 \N 189.186.58.97 f9cad62e-b917-4b78-8a0c-95176042c166 2019-09-04 17:06:34.110784 14926 21 User \N \N 21 User \N update ---\nunique_session_id:\n- yxudiq3pYN1baGL3urzd\n- _xPsMuJRAr2oqWAFkeFU\n 21 \N 189.186.58.97 f9cad62e-b917-4b78-8a0c-95176042c166 2019-09-04 17:06:34.123 14927 165 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-04\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.58.97 483666f5-db5d-47fc-a024-2ec8ec9e5776 2019-09-04 17:06:44.487806 14928 988 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 590\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.58.97 483666f5-db5d-47fc-a024-2ec8ec9e5776 2019-09-04 17:06:44.508303 14929 164 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-04\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.58.97 9ca1d12e-203b-46d5-a2a9-141a66319946 2019-09-04 17:06:50.947157 14930 988 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.58.97 9ca1d12e-203b-46d5-a2a9-141a66319946 2019-09-04 17:06:50.965703 14931 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-04 00:55:59.725285000 Z\n- &1 2019-09-04 01:14:30.943570000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-04 17:46:19.511059522 Z\nsign_in_count:\n- 563\n- 564\n 1128 \N 189.186.58.97 5674aa25-49d7-494b-b04f-0df2b47142d9 2019-09-04 17:46:19.528907 14932 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xTwQbz2YyuFPBkswvKky\n- U2mnCGW4Nq5tC7TE7yxF\n 1129 \N 189.186.58.97 5674aa25-49d7-494b-b04f-0df2b47142d9 2019-09-04 17:46:19.546653 14933 491 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.58.97 855bbf4b-0490-4748-b7d2-b10bf3a20c70 2019-09-04 17:47:01.88532 14934 581 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.58.97 185e45a2-3643-497a-bb38-02e143620e7e 2019-09-04 17:47:11.717979 14935 504 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.58.97 b6fdc66b-689f-4380-b65f-9e4d90b8d6cf 2019-09-04 17:47:34.241353 14936 498 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.58.97 f913b8bb-c751-4d5c-a748-5a1eeeb8a722 2019-09-04 17:47:43.045174 14937 166 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-09-04\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO a Almacen central creado. 189.186.58.97 54a2e0fe-15d1-4349-bfbc-35d482c3bc82 2019-09-04 17:48:13.745416 14938 84 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-04\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.63.76 2901c5af-0cd3-449f-8daf-0c9d1e50441a 2019-09-04 18:03:02.863419 14939 989 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 526\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 2901c5af-0cd3-449f-8daf-0c9d1e50441a 2019-09-04 18:03:02.899868 14940 405 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.922E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 922.0 187.149.63.76 572f9ae6-8348-43ce-8f5b-2c0a72aec09c 2019-09-04 18:20:56.080642 14941 406 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.8835E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 883.5 187.149.63.76 52a6fe81-c916-49cf-9acc-f75281c36d4e 2019-09-04 18:43:15.19006 14942 1426 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 303\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 836\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '12'\n 1 \N 187.149.63.76 b2143d51-60e5-4c6b-afbf-0bf2293fe6dd 2019-09-04 18:45:19.683904 14943 1426 CashRegistersMove \N \N 8 User \N update ---\nopen_cash_register_id:\n- 303\n- 406\n 2 movimiento de efectivo por venta con folio PV1-V-474 187.149.63.76 b2143d51-60e5-4c6b-afbf-0bf2293fe6dd 2019-09-04 18:45:19.712311 14944 589 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.58.97 0c715cf3-c0bb-431c-95f6-5dadeb08efa3 2019-09-04 19:16:31.454488 14945 167 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-09-04\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO a Almacen central creado. 189.186.58.97 9c5d6423-ee9d-4422-8360-5c6ca96c9385 2019-09-04 19:16:34.006476 14946 520 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.58.97 a03d9630-2093-4422-9a30-70449e9aca4e 2019-09-04 19:31:13.941047 14947 168 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-09-04\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO a Almacen central creado. 189.186.58.97 8a70a25f-348a-4f51-b83f-70bac63f3df5 2019-09-04 19:31:21.723619 14948 449 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '449'\n is_parent: false\n sku: BOL-449\n name: KAMO792\n description: BOLSO CLOE ROJO Y MARINO\n price_base: '849.5'\n price_sale: '1699.0'\n img_product: kamo.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000449'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-08 18:11:38.188242'\n updated_at: &12 2019-09-04 19:33:25.379229042 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '449'\n sku: BOL-449\n name: KAMO792\n description: BOLSO CLOE ROJO Y MARINO\n price_base: '849.50'\n price_sale: '1699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-08 18:11:38.188242'\n updated_at: '2019-02-08 18:11:38.255414'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000449'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '449'\n type: *3\n value: 449\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-449\n type: *7\n value: BOL-449\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: KAMO792\n type: *8\n value: KAMO792\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO CLOE ROJO Y MARINO\n type: *6\n value: BOLSO CLOE ROJO Y MARINO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '849.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1699E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: kamo.jpg\n type: *2\n value: kamo.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000449'\n type: *2\n value: '0000449'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-08 18:11:38.188242'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- kamo.jpg\n 3 El producto BOL-449 fue modificado. 189.186.58.97 97d77774-490f-4a52-bd61-111b0eb93dd9 2019-09-04 19:33:25.421344 14949 439 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '439'\n is_parent: false\n sku: BOL-436\n name: SIGR575\n description: BOLSO CLOE NEGRO\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: sirg575.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000439'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-06 00:56:47.583251'\n updated_at: &12 2019-09-04 19:36:31.330254584 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '439'\n sku: BOL-436\n name: SIGR575\n description: BOLSO CLOE NEGRO\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-06 00:56:47.583251'\n updated_at: '2019-02-06 00:56:47.654947'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000439'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '439'\n type: *3\n value: 439\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-436\n type: *7\n value: BOL-436\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: SIGR575\n type: *8\n value: SIGR575\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO CLOE NEGRO\n type: *6\n value: BOLSO CLOE NEGRO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: sirg575.jpg\n type: *2\n value: sirg575.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000439'\n type: *2\n value: '0000439'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-06 00:56:47.583251'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- sirg575.jpg\n 3 El producto BOL-436 fue modificado. 189.186.58.97 652fe9e4-79e0-4175-bee0-93a7ec172207 2019-09-04 19:36:31.372729 14950 42 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '42'\n is_parent: false\n sku: BOL-42\n name: VAUR895\n description: BOLSA CLOE\n price_base: '599.5'\n price_sale: '1199.0'\n img_product: vaur895.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000042'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.86262'\n updated_at: &12 2019-09-04 19:37:29.001616519 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '42'\n sku: BOL-42\n name: VAUR895\n description: BOLSA CLOE\n price_base: '599.50'\n price_sale: '1199.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.86262'\n updated_at: '2019-02-04 09:10:21.558469'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000042'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '42'\n type: *3\n value: 42\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-42\n type: *7\n value: BOL-42\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VAUR895\n type: *8\n value: VAUR895\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE\n type: *6\n value: BOLSA CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '599.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.5995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1199.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1199E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: vaur895.jpg\n type: *2\n value: vaur895.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000042'\n type: *2\n value: '0000042'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.86262'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- vaur895.jpg\n 3 El producto BOL-42 fue modificado. 189.186.58.97 37c00af6-bfe4-432b-b2b0-56f4c206a192 2019-09-04 19:37:29.043386 14951 689 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '689'\n is_parent: false\n sku: BOL-689\n name: ERIO487\n description: MOCHILA NEGRA\n price_base: '799.5'\n price_sale: '1599.0'\n img_product: ERIO487_NEGR_1_300x435.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170558067'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-29 22:08:49.271364'\n updated_at: &12 2019-09-04 19:39:07.519812782 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '689'\n sku: BOL-689\n name: ERIO487\n description: MOCHILA NEGRA\n price_base: '799.50'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-29 22:08:49.271364'\n updated_at: '2019-08-29 22:08:49.271364'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170558067'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '689'\n type: *3\n value: 689\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-689\n type: *7\n value: BOL-689\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ERIO487\n type: *8\n value: ERIO487\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCHILA NEGRA\n type: *6\n value: MOCHILA NEGRA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '799.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: ERIO487_NEGR_1_300x435.jpg\n type: *2\n value: ERIO487_NEGR_1_300x435.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170558067'\n type: *2\n value: '7509170558067'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-29 22:08:49.271364'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- ERIO487_NEGR_1_300x435.jpg\n 2 El producto BOL-689 fue modificado. 189.186.58.97 d34bb467-7323-43e3-aab6-1828f46bfadd 2019-09-04 19:39:07.585353 14952 40 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.58.97 6f8566ec-b88c-406f-8e42-b3a2ac0f058b 2019-09-04 19:44:47.023887 14953 169 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-09-04\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.58.97 60b395fd-30eb-4125-b565-b9e9f1de3308 2019-09-04 19:44:50.175743 14954 45 Product \N \N 4 User \N update ---\ndescription:\n- BOLSA CLOE\n- BOLSA CLOE color Rosa\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '45'\n is_parent: false\n sku: BOL-45\n name: INDE164\n description: BOLSA CLOE color Rosa\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: PHOTO-2019-09-04-13-48-43.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000045'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862623'\n updated_at: &12 2019-09-04 19:53:45.330789251 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '45'\n sku: BOL-45\n name: INDE164\n description: BOLSA CLOE\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862623'\n updated_at: '2019-02-04 09:10:17.522035'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000045'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '45'\n type: *3\n value: 45\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-45\n type: *7\n value: BOL-45\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: INDE164\n type: *8\n value: INDE164\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE color Rosa\n type: *6\n value: BOLSA CLOE color Rosa\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-09-04-13-48-43.jpg\n type: *2\n value: PHOTO-2019-09-04-13-48-43.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000045'\n type: *2\n value: '0000045'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862623'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-09-04-13-48-43.jpg\n 3 El producto BOL-45 fue modificado. 189.186.58.97 14f1acd8-ebab-44e6-9278-539148cbef29 2019-09-04 19:53:45.375878 14955 46 Product \N \N 4 User \N update ---\ndescription:\n- BOLSA CLOE\n- mochila Colo Azul y Rosa\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '46'\n is_parent: false\n sku: BOL-46\n name: INDE165\n description: mochila Colo Azul y Rosa\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: PHOTO-2019-09-04-13-47-59.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000046'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862624'\n updated_at: &12 2019-09-04 19:54:15.082086361 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '46'\n sku: BOL-46\n name: INDE165\n description: BOLSA CLOE\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862624'\n updated_at: '2019-02-04 09:10:17.548191'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000046'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '46'\n type: *3\n value: 46\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-46\n type: *7\n value: BOL-46\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: INDE165\n type: *8\n value: INDE165\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: mochila Colo Azul y Rosa\n type: *6\n value: mochila Colo Azul y Rosa\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-09-04-13-47-59.jpg\n type: *2\n value: PHOTO-2019-09-04-13-47-59.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000046'\n type: *2\n value: '0000046'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862624'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-09-04-13-47-59.jpg\n 3 El producto BOL-46 fue modificado. 189.186.58.97 22f4a79f-0d1b-4931-902b-2a82dd0083ea 2019-09-04 19:54:15.145761 14956 49 Product \N \N 4 User \N update ---\ndescription:\n- BOLSA CLOE\n- BOLSA CLOE negra\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '49'\n is_parent: false\n sku: BOL-49\n name: OZET948\n description: BOLSA CLOE negra\n price_base: '799.5'\n price_sale: '1599.0'\n img_product: PHOTO-2019-09-04-13-38-52.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000049'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862627'\n updated_at: &12 2019-09-04 19:54:48.376546166 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '49'\n sku: BOL-49\n name: OZET948\n description: BOLSA CLOE\n price_base: '799.50'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862627'\n updated_at: '2019-02-04 09:10:18.676542'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000049'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '49'\n type: *3\n value: 49\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-49\n type: *7\n value: BOL-49\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: OZET948\n type: *8\n value: OZET948\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE negra\n type: *6\n value: BOLSA CLOE negra\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '799.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-09-04-13-38-52.jpg\n type: *2\n value: PHOTO-2019-09-04-13-38-52.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000049'\n type: *2\n value: '0000049'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862627'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-09-04-13-38-52.jpg\n 3 El producto BOL-49 fue modificado. 189.186.58.97 5900ea8d-fbab-41b8-a06b-7483b8f3237f 2019-09-04 19:54:48.42884 14957 56 Product \N \N 4 User \N update ---\ndescription:\n- BOLSA CLOE\n- BOLSA CLOE NEGRA\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '56'\n is_parent: false\n sku: BOL-56\n name: AROT925\n description: BOLSA CLOE NEGRA\n price_base: '999.5'\n price_sale: '1999.0'\n img_product: PHOTO-2019-09-04-13-38-52.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000056'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862634'\n updated_at: &12 2019-09-04 19:55:21.594776309 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '56'\n sku: BOL-56\n name: AROT925\n description: BOLSA CLOE\n price_base: '999.50'\n price_sale: '1999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862634'\n updated_at: '2019-02-04 09:10:12.488988'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000056'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '56'\n type: *3\n value: 56\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-56\n type: *7\n value: BOL-56\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: AROT925\n type: *8\n value: AROT925\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE NEGRA\n type: *6\n value: BOLSA CLOE NEGRA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '999.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.9995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1999E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-09-04-13-38-52.jpg\n type: *2\n value: PHOTO-2019-09-04-13-38-52.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000056'\n type: *2\n value: '0000056'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862634'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-09-04-13-38-52.jpg\n 3 El producto BOL-56 fue modificado. 189.186.58.97 dc8c471a-2e3e-45f3-8e0a-5dc7349a01a8 2019-09-04 19:55:21.63664 14958 49 Product \N \N 4 User \N update ---\ndescription:\n- BOLSA CLOE negra\n- BOLSA CLOE marron con ponpon\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '49'\n is_parent: false\n sku: BOL-49\n name: OZET948\n description: BOLSA CLOE marron con ponpon\n price_base: '799.5'\n price_sale: '1599.0'\n img_product: PHOTO-2019-09-04-13-40-28.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000049'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862627'\n updated_at: &12 2019-09-04 19:55:48.238740779 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '49'\n sku: BOL-49\n name: OZET948\n description: BOLSA CLOE negra\n price_base: '799.50'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862627'\n updated_at: '2019-09-04 19:54:48.376546'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000049'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: PHOTO-2019-09-04-13-38-52.jpg\n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '49'\n type: *3\n value: 49\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-49\n type: *7\n value: BOL-49\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: OZET948\n type: *8\n value: OZET948\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE marron con ponpon\n type: *6\n value: BOLSA CLOE marron con ponpon\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '799.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-09-04-13-40-28.jpg\n type: *2\n value: PHOTO-2019-09-04-13-40-28.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000049'\n type: *2\n value: '0000049'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862627'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/PHOTO-2019-09-04-13-38-52.jpg"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader64227900\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_PHOTO-2019-09-04-13-38-52.jpg"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader64214920\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_PHOTO-2019-09-04-13-38-52.jpg"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader64210060\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_PHOTO-2019-09-04-13-38-52.jpg"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- PHOTO-2019-09-04-13-40-28.jpg\n 4 El producto BOL-49 fue modificado. 189.186.58.97 26ed7c50-7db4-4cb8-9e69-f03ff8cf0119 2019-09-04 19:55:48.289509 14959 56 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '56'\n is_parent: false\n sku: BOL-56\n name: AROT925\n description: BOLSA CLOE NEGRA\n price_base: '999.5'\n price_sale: '1999.0'\n img_product: PHOTO-2019-09-04-13-38-52.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000056'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862634'\n updated_at: &12 2019-09-04 19:56:34.392666293 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '56'\n sku: BOL-56\n name: AROT925\n description: BOLSA CLOE NEGRA\n price_base: '999.50'\n price_sale: '1999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862634'\n updated_at: '2019-09-04 19:55:21.594776'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000056'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: PHOTO-2019-09-04-13-38-52.jpg\n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '56'\n type: *3\n value: 56\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-56\n type: *7\n value: BOL-56\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: AROT925\n type: *8\n value: AROT925\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE NEGRA\n type: *6\n value: BOLSA CLOE NEGRA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '999.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.9995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1999E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-09-04-13-38-52.jpg\n type: *2\n value: PHOTO-2019-09-04-13-38-52.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000056'\n type: *2\n value: '0000056'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862634'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/PHOTO-2019-09-04-13-38-52.jpg"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader64227900\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_PHOTO-2019-09-04-13-38-52.jpg"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader64214920\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_PHOTO-2019-09-04-13-38-52.jpg"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader64210060\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_PHOTO-2019-09-04-13-38-52.jpg"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- PHOTO-2019-09-04-13-38-52.jpg\n 4 El producto BOL-56 fue modificado. 189.186.58.97 2cf07c94-67a9-4205-952d-c3f46e2b2016 2019-09-04 19:56:34.4399 14960 469 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '469'\n is_parent: false\n sku: BOL-469\n name: CANGURERA GUESS\n description: CANGURERA GUESS\n price_base: '599.5'\n price_sale: '1199.0'\n img_product: PHOTO-2019-05-23-14-37-21.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000469'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-11 19:00:00.296544'\n updated_at: &12 2019-09-04 19:59:20.743061683 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '469'\n sku: BOL-469\n name: CANGURERA GUESS\n description: CANGURERA GUESS\n price_base: '599.50'\n price_sale: '1199.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-11 19:00:00.296544'\n updated_at: '2019-02-11 19:00:00.346623'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000469'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '469'\n type: *3\n value: 469\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-469\n type: *7\n value: BOL-469\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CANGURERA GUESS\n type: *8\n value: CANGURERA GUESS\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CANGURERA GUESS\n type: *6\n value: CANGURERA GUESS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '599.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.5995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1199.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1199E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-05-23-14-37-21.jpg\n type: *2\n value: PHOTO-2019-05-23-14-37-21.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000469'\n type: *2\n value: '0000469'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-11 19:00:00.296544'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-05-23-14-37-21.jpg\n 3 El producto BOL-469 fue modificado. 189.186.58.97 cfb696d0-e4ae-4b60-aa43-13f78d983b64 2019-09-04 19:59:20.783776 14961 530 Product \N \N 4 User \N update ---\ndescription:\n- BOLSA CLOE\n- 'BOLSA CLOE CHICA '\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '530'\n is_parent: false\n sku: BOL-530\n name: OHIP173\n description: 'BOLSA CLOE CHICA '\n price_base: '749.5'\n price_sale: '1499.0'\n img_product: OPIH273.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000530'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-03-28 23:02:31.647849'\n updated_at: &12 2019-09-04 20:03:06.005205925 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '530'\n sku: BOL-530\n name: OHIP173\n description: BOLSA CLOE\n price_base: '749.50'\n price_sale: '1499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-03-28 23:02:31.647849'\n updated_at: '2019-03-28 23:02:31.709483'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000530'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '530'\n type: *3\n value: 530\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-530\n type: *7\n value: BOL-530\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: OHIP173\n type: *8\n value: OHIP173\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'BOLSA CLOE CHICA '\n type: *6\n value: 'BOLSA CLOE CHICA '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '749.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1499E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: OPIH273.jpg\n type: *2\n value: OPIH273.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000530'\n type: *2\n value: '0000530'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-03-28 23:02:31.647849'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- OPIH273.jpg\n 3 El producto BOL-530 fue modificado. 189.186.58.97 7d27e1b1-88ac-4fb8-be5d-bfecd6741b86 2019-09-04 20:03:06.059687 14962 495 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '495'\n is_parent: false\n sku: BOL-495\n name: OHIP174\n description: BOLSA CLOE\n price_base: '849.5'\n price_sale: '1699.0'\n img_product: ohip.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000495'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-03-11 21:07:39.027679'\n updated_at: &12 2019-09-04 20:03:25.518405770 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '495'\n sku: BOL-495\n name: OHIP174\n description: BOLSA CLOE\n price_base: '849.50'\n price_sale: '1699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-03-11 21:07:39.027679'\n updated_at: '2019-03-11 21:07:39.094833'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000495'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '495'\n type: *3\n value: 495\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-495\n type: *7\n value: BOL-495\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: OHIP174\n type: *8\n value: OHIP174\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE\n type: *6\n value: BOLSA CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '849.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1699E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: ohip.jpg\n type: *2\n value: ohip.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000495'\n type: *2\n value: '0000495'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-03-11 21:07:39.027679'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- ohip.jpg\n 3 El producto BOL-495 fue modificado. 189.186.58.97 34e720c9-02fc-4be1-b79c-479f48b6806e 2019-09-04 20:03:25.577414 14963 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-04 01:14:30.943570000 Z\n- &1 2019-09-04 17:46:19.511059000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-04 20:20:52.574570445 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 564\n- 565\n 1130 \N 187.149.63.76 fa442a49-8620-4f9f-a74b-6b9ffc64a900 2019-09-04 20:20:52.581981 14964 4 User \N \N 4 User \N update ---\nunique_session_id:\n- U2mnCGW4Nq5tC7TE7yxF\n- vS5H6Qd4xx8Cv38FBzN2\n 1131 \N 187.149.63.76 fa442a49-8620-4f9f-a74b-6b9ffc64a900 2019-09-04 20:20:52.596246 14965 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-04 17:46:19.511059000 Z\n- &1 2019-09-04 20:20:52.574570000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-04 20:47:56.674593028 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129259\n mask_addr: 4294967295\nsign_in_count:\n- 565\n- 566\n 1132 \N 189.186.178.171 a30f11a3-4f41-4df3-9475-045225ebb2e7 2019-09-04 20:47:56.69434 14966 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vS5H6Qd4xx8Cv38FBzN2\n- u7qhtaQ_eKW5yU9YYSbB\n 1133 \N 189.186.178.171 a30f11a3-4f41-4df3-9475-045225ebb2e7 2019-09-04 20:47:56.718449 15069 911 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.178.171 2d2a559c-43d4-42b1-81c0-c294325bc535 2019-09-05 18:03:46.184528 14967 165 Customer \N \N 2 User \N create ---\nnick_name: LUCERO AGUILAR\nphone: "(667) 995-0863"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LUCERO AGUILAR fue registrado. 187.149.63.76 21abaa56-5daa-45bd-aa70-1e5b408caa37 2019-09-04 20:57:59.837282 14968 1031 Sale \N \N 2 User \N create ---\ncustomer_id: 165\nuser_id: 2\nopen_cash_register_id: 405\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-09-04\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-590\nexpiration_date: 2019-10-09\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 b763b58f-e394-4e68-970e-8b6d24e2a6e6 2019-09-04 20:58:12.020943 14969 784 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 6 \N 187.149.63.76 b763b58f-e394-4e68-970e-8b6d24e2a6e6 2019-09-04 20:58:12.056659 14970 1427 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 405\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 1031\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-590\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-590 187.149.63.76 a742bec7-715a-4ca3-b80f-7a87f89b88d4 2019-09-04 20:58:19.293331 14971 1031 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.63.76 5c267dac-db8b-48a4-993e-b03d57f6e4e5 2019-09-04 20:58:21.30998 14972 635 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '635'\n is_parent: false\n sku: BLU-635\n name: BLX-0029\n description: 'M2 BLUSA ROSA DE TIRANTE '\n price_base: '237.5'\n price_sale: '569.0'\n img_product: IMG_2426.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000635'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-23 19:31:39.008349'\n updated_at: &12 2019-09-04 21:04:10.029079834 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '635'\n sku: BLU-635\n name: BLX-0029\n description: 'M2 BLUSA ROSA DE TIRANTE '\n price_base: '237.50'\n price_sale: '569.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-23 19:31:39.008349'\n updated_at: '2019-07-23 19:31:39.068924'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000635'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '635'\n type: *3\n value: 635\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-635\n type: *7\n value: BLU-635\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLX-0029\n type: *8\n value: BLX-0029\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'M2 BLUSA ROSA DE TIRANTE '\n type: *6\n value: 'M2 BLUSA ROSA DE TIRANTE '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '237.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2375E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '569.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.569E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_2426.jpg\n type: *2\n value: IMG_2426.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000635'\n type: *2\n value: '0000635'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-23 19:31:39.008349'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_2426.jpg\n 4 El producto BLU-635 fue modificado. 189.186.178.171 cb92e457-5fb2-44d3-89f5-5c073142bdd0 2019-09-04 21:04:10.071469 14973 610 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '610'\n is_parent: false\n sku: BLU-610\n name: BLU-0073\n description: PANTIBLUSA COLOR NEGRO DE ENCAJE VALENTAINE\n price_base: '310.0'\n price_sale: '649.0'\n img_product: PHOTO-2019-09-04-14-44-29.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000610'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-16 00:42:32.141936'\n updated_at: &12 2019-09-04 21:05:32.307238277 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '610'\n sku: BLU-610\n name: BLU-0073\n description: PANTIBLUSA COLOR NEGRO DE ENCAJE VALENTAINE\n price_base: '310.00'\n price_sale: '649.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-16 00:42:32.141936'\n updated_at: '2019-07-24 00:03:26.607575'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000610'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: file1-9.jpeg\n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '610'\n type: *3\n value: 610\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-610\n type: *7\n value: BLU-610\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLU-0073\n type: *8\n value: BLU-0073\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTIBLUSA COLOR NEGRO DE ENCAJE VALENTAINE\n type: *6\n value: PANTIBLUSA COLOR NEGRO DE ENCAJE VALENTAINE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '310.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.31E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '649.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.649E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-09-04-14-44-29.jpg\n type: *2\n value: PHOTO-2019-09-04-14-44-29.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000610'\n type: *2\n value: '0000610'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-16 00:42:32.141936'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/file1-9.jpeg"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader64193840\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_file1-9.jpeg"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader64181440\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_file1-9.jpeg"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader64177240\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_file1-9.jpeg"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- PHOTO-2019-09-04-14-44-29.jpg\n 6 El producto BLU-610 fue modificado. 189.186.178.171 de95e72d-8a8c-4185-a50b-1fcaa245f7b8 2019-09-04 21:05:32.357293 14974 687 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '687'\n is_parent: false\n sku: VES-687\n name: VST-0050\n description: VESTIDO CORTE SIRENA COLOR TINTO B92152\n price_base: '260.0'\n price_sale: '649.0'\n img_product: PHOTO-2019-08-13-13-20-32.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000687'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-22 04:56:20.735664'\n updated_at: &12 2019-09-04 21:13:34.726625276 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '687'\n sku: VES-687\n name: VST-0050\n description: VESTIDO CORTE SIRENA COLOR TINTO B92152\n price_base: '260.00'\n price_sale: '649.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-22 04:56:20.735664'\n updated_at: '2019-08-22 04:56:20.774532'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000687'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: 797BFDD8-4212-4DF0-8974-E3C96AE99F2C_2448_.JPG\n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '687'\n type: *3\n value: 687\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-687\n type: *7\n value: VES-687\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0050\n type: *8\n value: VST-0050\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO CORTE SIRENA COLOR TINTO B92152\n type: *6\n value: VESTIDO CORTE SIRENA COLOR TINTO B92152\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '260.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.26E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '649.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.649E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-08-13-13-20-32.jpg\n type: *2\n value: PHOTO-2019-08-13-13-20-32.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000687'\n type: *2\n value: '0000687'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-22 04:56:20.735664'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/797BFDD8-4212-4DF0-8974-E3C96AE99F2C_2448_.JPG"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader64193840\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_797BFDD8-4212-4DF0-8974-E3C96AE99F2C_2448_.JPG"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader64181440\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_797BFDD8-4212-4DF0-8974-E3C96AE99F2C_2448_.JPG"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader64177240\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_797BFDD8-4212-4DF0-8974-E3C96AE99F2C_2448_.JPG"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- PHOTO-2019-08-13-13-20-32.jpg\n 3 El producto VES-687 fue modificado. 189.186.178.171 02777331-dd1c-4c57-84ca-2a90d63e9c0f 2019-09-04 21:13:34.781377 14975 686 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '686'\n is_parent: false\n sku: VES-686\n name: VST-0044\n description: VESTIDO BLUE S NEGRO D92175\n price_base: '270.0'\n price_sale: '649.0'\n img_product: PHOTO-2019-08-13-13-20-33.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000686'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-22 04:54:05.977059'\n updated_at: &12 2019-09-04 21:14:20.740129580 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '686'\n sku: VES-686\n name: VST-0044\n description: VESTIDO BLUE S NEGRO D92175\n price_base: '270.00'\n price_sale: '649.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-22 04:54:05.977059'\n updated_at: '2019-08-22 04:54:06.017544'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000686'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: D28FC7AA-D4D9-4A98-A158-0A439BA12F14_2446_.JPG\n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '686'\n type: *3\n value: 686\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-686\n type: *7\n value: VES-686\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0044\n type: *8\n value: VST-0044\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO BLUE S NEGRO D92175\n type: *6\n value: VESTIDO BLUE S NEGRO D92175\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '270.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.27E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '649.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.649E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-08-13-13-20-33.jpg\n type: *2\n value: PHOTO-2019-08-13-13-20-33.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000686'\n type: *2\n value: '0000686'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-22 04:54:05.977059'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/D28FC7AA-D4D9-4A98-A158-0A439BA12F14_2446_.JPG"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader64193840\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_D28FC7AA-D4D9-4A98-A158-0A439BA12F14_2446_.JPG"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader64181440\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_D28FC7AA-D4D9-4A98-A158-0A439BA12F14_2446_.JPG"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader64177240\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_D28FC7AA-D4D9-4A98-A158-0A439BA12F14_2446_.JPG"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- PHOTO-2019-08-13-13-20-33.jpg\n 3 El producto VES-686 fue modificado. 189.186.178.171 65651121-b3b8-40e2-aebc-51767e3fd9df 2019-09-04 21:14:20.788156 14976 551 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '551'\n is_parent: false\n sku: VES-551\n name: VST-0022\n description: VESTIDO LATISTE NUDE CON ROSAS ROJAS ST.LD51140A\n price_base: '799.5'\n price_sale: '1599.0'\n img_product: 451f4571-0b09-4f33-af19-391784842581.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000551'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-05-04 18:01:44.009782'\n updated_at: &12 2019-09-04 21:15:37.739332090 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '551'\n sku: VES-551\n name: VST-0022\n description: VESTIDO LATISTE NUDE CON ROSAS ROJAS ST.LD51140A\n price_base: '799.50'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-05-04 18:01:44.009782'\n updated_at: '2019-05-04 18:01:44.052366'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000551'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '551'\n type: *3\n value: 551\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-551\n type: *7\n value: VES-551\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0022\n type: *8\n value: VST-0022\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO LATISTE NUDE CON ROSAS ROJAS ST.LD51140A\n type: *6\n value: VESTIDO LATISTE NUDE CON ROSAS ROJAS ST.LD51140A\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '799.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 451f4571-0b09-4f33-af19-391784842581.JPG\n type: *2\n value: 451f4571-0b09-4f33-af19-391784842581.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000551'\n type: *2\n value: '0000551'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-05-04 18:01:44.009782'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 451f4571-0b09-4f33-af19-391784842581.JPG\n 3 El producto VES-551 fue modificado. 189.186.178.171 6642f4d3-9964-4e30-957c-30f3d867bad3 2019-09-04 21:15:37.781985 14977 550 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '550'\n is_parent: false\n sku: VES-550\n name: VST-0021\n description: VESTIDO LATISTE AQUA ST.LD51068B\n price_base: '734.5'\n price_sale: '1469.0'\n img_product: IMG_2428.PNG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000550'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-05-04 17:56:07.823792'\n updated_at: &12 2019-09-04 21:17:37.208844690 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '550'\n sku: VES-550\n name: VST-0021\n description: VESTIDO LATISTE AQUA ST.LD51068B\n price_base: '734.50'\n price_sale: '1469.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-05-04 17:56:07.823792'\n updated_at: '2019-05-04 17:56:07.862287'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000550'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '550'\n type: *3\n value: 550\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-550\n type: *7\n value: VES-550\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0021\n type: *8\n value: VST-0021\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO LATISTE AQUA ST.LD51068B\n type: *6\n value: VESTIDO LATISTE AQUA ST.LD51068B\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '734.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7345E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1469.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1469E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_2428.PNG\n type: *2\n value: IMG_2428.PNG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000550'\n type: *2\n value: '0000550'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-05-04 17:56:07.823792'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_2428.PNG\n 3 El producto VES-550 fue modificado. 189.186.178.171 17db2af7-5900-4088-8050-aae8e452cf7e 2019-09-04 21:17:37.254232 14978 746 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.63.76 39d25dad-6eec-4738-be97-14b27f018462 2019-09-04 21:44:27.499267 14979 746 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.63.76 fa4d9f57-4217-4184-a4a3-ffda57d96999 2019-09-04 21:44:30.733113 14980 170 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-09-04\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.63.76 80f8b19d-313f-4d81-aae8-f38c1bf85cd2 2019-09-04 21:44:33.035273 14981 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-04 00:54:51.125854000 Z\n- &1 2019-09-04 16:36:37.118927000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-04 22:21:11.174460699 Z\nsign_in_count:\n- 3\n- 4\n 10 \N 187.149.63.76 c73e2a19-69c3-4660-a819-8b534b4fbfdb 2019-09-04 22:21:11.196827 14982 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 8CnH1JJ4itQ-n_6muLS1\n- iQBaLJMmBp6iH_QXuU45\n 11 \N 187.149.63.76 c73e2a19-69c3-4660-a819-8b534b4fbfdb 2019-09-04 22:21:11.215738 14983 751 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.63.76 f9027548-b00b-4b1f-a303-499e8a35f87d 2019-09-04 22:27:34.08756 14984 751 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.63.76 5984fa66-6a38-4208-9d82-00a06de0d869 2019-09-04 22:27:37.643898 14985 723 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.63.76 af24e003-9cd0-4544-b964-96a139b695f7 2019-09-04 22:27:54.306065 14986 723 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.63.76 a5546b58-b36b-4665-b909-fa02294ec937 2019-09-04 22:27:57.678959 14987 727 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.63.76 aebe4d62-8be1-4393-a2fa-45ddda318f1c 2019-09-04 22:28:05.934686 14988 727 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.63.76 ad80ef3b-b29c-4754-ad88-1f4023752060 2019-09-04 22:28:09.591375 14989 171 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-09-04\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.63.76 944243b9-45c5-46b1-9a79-33d8ba0b3e64 2019-09-04 22:28:11.612425 14990 1032 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 406\namount: !ruby/object:BigDecimal 18:0.1338E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.78E2\ntotal: !ruby/object:BigDecimal 18:0.126E4\nstatus: 0\ndate_sale: 2019-09-04\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-430\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 b1159357-ec88-40a2-a4cb-e961f37431a8 2019-09-04 22:49:05.389912 14991 754 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.63.76 b1159357-ec88-40a2-a4cb-e961f37431a8 2019-09-04 22:49:05.418419 14992 759 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 187.149.63.76 b1159357-ec88-40a2-a4cb-e961f37431a8 2019-09-04 22:49:05.449348 14993 1032 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 e8498262-9153-4d59-918c-9540db10425d 2019-09-04 22:49:13.976896 14994 1428 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 406\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.106E4\nmove_type: '1'\nsale_id: 1032\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-430\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.106E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-430 187.149.63.76 e8498262-9153-4d59-918c-9540db10425d 2019-09-04 22:49:14.005535 15094 320 AvailableProduct \N \N 20 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.63.76 870acc35-83d3-4866-abdc-92421fda0046 2019-09-06 17:04:01.94663 14995 1429 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 406\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 1032\ncardnumber: 1111\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-430\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-430 187.149.63.76 8a86f736-a50d-427d-823d-8e3a67434a8b 2019-09-04 22:49:40.350369 14996 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-04 20:20:52.574570000 Z\n- &1 2019-09-04 20:47:56.674593000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-04 23:02:48.951441786 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129259\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129259\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 566\n- 567\n 1134 \N 187.149.63.76 3a2a020e-1226-4efd-9ad4-e7a29e30b1d6 2019-09-04 23:02:48.971004 14997 4 User \N \N 4 User \N update ---\nunique_session_id:\n- u7qhtaQ_eKW5yU9YYSbB\n- s4Rguh61ya3TZLxJYvts\n 1135 \N 187.149.63.76 3a2a020e-1226-4efd-9ad4-e7a29e30b1d6 2019-09-04 23:02:48.997383 14998 138 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-78\namount: !ruby/object:BigDecimal 18:0.82099E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.82099E3\nobservations: ''\npurchase_date: 2019-09-04\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-78 por $ 820.99 MXN creada. 187.149.63.76 c603cb51-935e-4acc-bc32-b783c5b0a538 2019-09-04 23:21:39.02669 14999 606 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 187.149.63.76 c603cb51-935e-4acc-bc32-b783c5b0a538 2019-09-04 23:21:39.051309 15000 179 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.63.76 c603cb51-935e-4acc-bc32-b783c5b0a538 2019-09-04 23:21:39.083759 15001 137 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-04\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.63.76 cc1b11d7-ee00-4bea-9387-ec866eb2c98f 2019-09-04 23:22:42.197509 15002 808 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.63.76 cc1b11d7-ee00-4bea-9387-ec866eb2c98f 2019-09-04 23:22:42.214729 15003 171 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-04\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.63.76 4625caee-b7d3-439c-ba3f-402716f2d57c 2019-09-04 23:22:58.821832 15004 990 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 605\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 4625caee-b7d3-439c-ba3f-402716f2d57c 2019-09-04 23:22:58.854491 15005 991 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 609\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 4625caee-b7d3-439c-ba3f-402716f2d57c 2019-09-04 23:22:58.880072 15006 992 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 630\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 4625caee-b7d3-439c-ba3f-402716f2d57c 2019-09-04 23:22:58.905512 15007 162 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 187.149.63.76 b072e1b5-f475-4a30-a554-a365d480c82e 2019-09-04 23:23:20.907867 15008 162 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.63.76 f354845e-6a5b-4b21-899f-75995eae9a2a 2019-09-04 23:23:23.640428 15009 174 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 187.149.63.76 4d1bd36e-6fb6-4e22-84d2-d4a1f313bb69 2019-09-04 23:23:31.363778 15010 174 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.63.76 73926d06-0706-425f-8dcb-b0dadcbb1802 2019-09-04 23:23:34.020869 15011 172 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-09-04\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.63.76 a160cd93-b058-45dc-9df0-50251ba52eda 2019-09-04 23:23:36.40701 15012 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-04 16:36:37.118927000 Z\n- &1 2019-09-04 22:21:11.174460000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-05 00:13:00.946587115 Z\nsign_in_count:\n- 4\n- 5\n 12 \N 187.149.63.76 0aca5bf0-6c54-46e6-9995-97b029dc120f 2019-09-05 00:13:00.952515 15013 8 User \N \N 8 User \N update ---\nunique_session_id:\n- iQBaLJMmBp6iH_QXuU45\n- scUgipzQAmpi4YWjUD8H\n 13 \N 187.149.63.76 0aca5bf0-6c54-46e6-9995-97b029dc120f 2019-09-05 00:13:00.966491 15014 405 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 406\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.166E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.9435E3\nphysical_cash: !ruby/object:BigDecimal 18:0.19435E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.63.76 1685aca2-f037-41ab-b288-35c2d096c1ef 2019-09-05 00:15:08.610698 15015 406 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 1685aca2-f037-41ab-b288-35c2d096c1ef 2019-09-05 00:15:08.624174 15016 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 20:10:25.499601000 Z\n- &1 2019-09-04 15:53:37.652493000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-05 01:01:58.109920420 Z\nsign_in_count:\n- 309\n- 310\n 623 \N 187.149.63.76 76e21526-f5ca-4a12-84d5-dbf76ae803c8 2019-09-05 01:01:58.1307 15017 2 User \N \N 2 User \N update ---\nunique_session_id:\n- "-1ACoK9asxGr-2U-rfte"\n- isd2v8ZsxQriAvJbYY4J\n 624 \N 187.149.63.76 76e21526-f5ca-4a12-84d5-dbf76ae803c8 2019-09-05 01:01:58.173666 15018 406 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 405\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.25E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 16\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1172E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1172E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.63.76 100c7d16-a6cf-4b30-80b7-23c083ab61d7 2019-09-05 01:06:10.974806 15019 405 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 100c7d16-a6cf-4b30-80b7-23c083ab61d7 2019-09-05 01:06:10.990578 15200 1046 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.161.108 c6a1bc5f-dd61-4d6b-9335-b88859ba7fb5 2019-09-07 17:29:05.884382 15020 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-04 20:47:56.674593000 Z\n- &1 2019-09-04 23:02:48.951441000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-05 03:20:26.681452763 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129259\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097607\n mask_addr: 4294967295\nsign_in_count:\n- 567\n- 568\n 1136 \N 189.186.55.7 ccb6d885-7acb-42ae-92f8-7e2f1490ab16 2019-09-05 03:20:26.69501 15021 4 User \N \N 4 User \N update ---\nunique_session_id:\n- s4Rguh61ya3TZLxJYvts\n- vtmar1myqZuWtszYMhjo\n 1137 \N 189.186.55.7 ccb6d885-7acb-42ae-92f8-7e2f1490ab16 2019-09-05 03:20:26.72145 15022 710 Product \N \N 4 User \N create ---\nsku: VES-710\nname: VST-0050\ndescription: MUYMUY COLOR NEGRO PLIZADO\nprice_base: !ruby/object:BigDecimal 18:0.401E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: PHOTO-2019-09-04-20-50-05_2616___2_.jpg\ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-710 fue creado. 189.186.55.7 dd9d911d-b3cd-4ce8-84fa-4ec0f1b95e72 2019-09-05 03:25:44.159811 15023 710 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000710'\n 2 \N 189.186.55.7 dd9d911d-b3cd-4ce8-84fa-4ec0f1b95e72 2019-09-05 03:25:44.200087 15024 139 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-12\namount: !ruby/object:BigDecimal 18:0.4812E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4812E4\nobservations: ''\npurchase_date: 2019-09-04\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-12 por $ 4812.0 MXN creada. 189.186.55.7 26aa341b-531d-4dca-a03f-abc643d2b9b9 2019-09-05 03:26:22.003901 15025 702 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '702'\n is_parent: false\n sku: JUM-702\n name: JMP-0003\n description: "LATISTE FLORES \\r\\n"\n price_base: '790.0'\n price_sale: '1599.0'\n img_product: PHOTO-2019-08-29-23-13-00_2495_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '1'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000702'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-30 04:45:03.347803'\n updated_at: &12 2019-09-05 03:26:52.203146041 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '702'\n sku: JUM-702\n name: JMP-0003\n description: "LATISTE FLORES \\r\\n"\n price_base: '790.00'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-30 04:45:03.347803'\n updated_at: '2019-08-30 04:45:03.397491'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000702'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '1'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '702'\n type: *3\n value: 702\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: JUM-702\n type: *7\n value: JUM-702\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: JMP-0003\n type: *8\n value: JMP-0003\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "LATISTE FLORES \\r\\n"\n type: *6\n value: "LATISTE FLORES \\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '790.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.79E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-08-29-23-13-00_2495_.jpg\n type: *2\n value: PHOTO-2019-08-29-23-13-00_2495_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '1'\n type: *3\n value: 1\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000702'\n type: *2\n value: '0000702'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-30 04:45:03.347803'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-08-29-23-13-00_2495_.jpg\n 3 El producto JUM-702 fue modificado. 189.186.55.7 12196a32-4528-4ef5-98d2-cfc02e26af30 2019-09-05 03:26:52.246141 15026 710 Product \N \N 4 User \N update ---\nname:\n- VST-0050\n- VST-0051\n 3 El producto VES-710 fue modificado. 189.186.55.7 2783ae5b-c3f9-43d3-b5c1-e1cf7671e1ce 2019-09-05 03:27:54.980237 15027 173 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-09-04\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 189.186.55.7 be5c76af-1e89-4a38-b519-b9595c4bab7d 2019-09-05 03:29:25.697144 15028 174 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-09-04\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.55.7 99f3650c-210b-4124-8c77-6740b182f81d 2019-09-05 03:29:45.507111 15029 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 22:36:57.689182000 Z\n- &1 2019-09-03 22:53:12.634920000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-05 03:30:18.636430696 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097607\n mask_addr: 4294967295\nsign_in_count:\n- 23\n- 24\n 48 \N 189.186.55.7 0da66d65-4843-4eef-b066-c9979bf1d7fe 2019-09-05 03:30:18.6428 15030 18 User \N \N 18 User \N update ---\nunique_session_id:\n- NpbCjVxEL8MAsqKTbQDa\n- ucHeX3Xzs_pxs4KFghoe\n 49 \N 189.186.55.7 0da66d65-4843-4eef-b066-c9979bf1d7fe 2019-09-05 03:30:18.656336 15031 174 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-04\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.55.7 6a6426d8-da12-48d8-8511-690f2e2c8e23 2019-09-05 03:30:31.021613 15032 993 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 710\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.55.7 6a6426d8-da12-48d8-8511-690f2e2c8e23 2019-09-05 03:30:31.053323 15033 169 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-04\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.55.7 5d18d806-6863-46e0-9fc5-17fd1bac4c3f 2019-09-05 03:30:37.09326 15034 994 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 42\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.55.7 5d18d806-6863-46e0-9fc5-17fd1bac4c3f 2019-09-05 03:30:37.115767 15035 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-04 23:02:48.951441000 Z\n- &1 2019-09-05 03:20:26.681452000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-05 03:30:53.315307416 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097607\n mask_addr: 4294967295\nsign_in_count:\n- 568\n- 569\n 1138 \N 189.186.55.7 e4ac31a3-88a6-46ab-bbd5-baaeeb923ab7 2019-09-05 03:30:53.323023 15036 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vtmar1myqZuWtszYMhjo\n- 6AtyekWLmxxF6Qa7HAcq\n 1139 \N 189.186.55.7 e4ac31a3-88a6-46ab-bbd5-baaeeb923ab7 2019-09-05 03:30:53.339808 15037 8 User \N \N 4 User \N update --- {}\n 14 Usuario SAMANTHABYSUO ha sido modificado. 189.186.55.7 9f3942ff-201d-49d0-9d3c-be00ee6c58d2 2019-09-05 03:31:42.458419 15038 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-05 03:20:26.681452000 Z\n- &1 2019-09-05 03:30:53.315307000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-05 03:31:54.459939274 Z\nsign_in_count:\n- 569\n- 570\n 1140 \N 189.186.55.7 5d03ba93-b612-48a6-8c82-91d0ca16c99f 2019-09-05 03:31:54.468666 15039 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6AtyekWLmxxF6Qa7HAcq\n- LxjVNjNRziWhXNswJsiV\n 1141 \N 189.186.55.7 5d03ba93-b612-48a6-8c82-91d0ca16c99f 2019-09-05 03:31:54.483419 15040 10 User \N \N 4 User \N update ---\nstatus:\n- inactive\n- 1\n 269 El usuario SAMANTHASBYSUO fue activado. 189.186.55.7 0ac101d1-8ae2-4f55-aa13-63299890590c 2019-09-05 03:32:26.085078 15041 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 04:20:12.009827000 Z\n- &1 2019-09-03 01:05:54.686327000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-05 03:32:53.848778795 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097607\n mask_addr: 4294967295\nsign_in_count:\n- 133\n- 134\n 270 \N 189.186.55.7 ef2073c5-0476-4292-bb90-77d3dabdcb5c 2019-09-05 03:32:53.856384 15042 10 User \N \N 10 User \N update ---\nunique_session_id:\n- 1_f7Rz2gVRaPsM_shKU4\n- PnY4B3spq6zUEQd9Qzhb\n 271 \N 189.186.55.7 ef2073c5-0476-4292-bb90-77d3dabdcb5c 2019-09-05 03:32:53.871684 15043 173 Transfer \N \N 10 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 10\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-04\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 189.186.55.7 6afef138-f7d0-4fe9-8cf1-558d19e420c4 2019-09-05 03:33:02.586971 15044 995 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 710\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.55.7 6afef138-f7d0-4fe9-8cf1-558d19e420c4 2019-09-05 03:33:02.608475 15045 172 Transfer \N \N 10 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 10\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-04\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.55.7 fd3bdc37-5157-4582-9f27-144ac2a82744 2019-09-05 03:33:07.561183 15046 996 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 176\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.55.7 fd3bdc37-5157-4582-9f27-144ac2a82744 2019-09-05 03:33:07.5909 15047 997 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 164\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.55.7 fd3bdc37-5157-4582-9f27-144ac2a82744 2019-09-05 03:33:07.618481 15048 170 Transfer \N \N 10 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 10\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-04\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.55.7 03432453-323b-4bac-8665-535589007547 2019-09-05 03:33:14.099993 15049 998 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 625\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.55.7 03432453-323b-4bac-8665-535589007547 2019-09-05 03:33:14.121229 15050 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-05 03:30:53.315307000 Z\n- &1 2019-09-05 03:31:54.459939000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-05 04:25:11.579553668 Z\nsign_in_count:\n- 570\n- 571\n 1142 \N 189.186.55.7 3281697c-3223-46e1-b7a1-5e7451d9b7ad 2019-09-05 04:25:11.58497 15051 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LxjVNjNRziWhXNswJsiV\n- yB2-918gGxY-AmCA4m_C\n 1143 \N 189.186.55.7 3281697c-3223-46e1-b7a1-5e7451d9b7ad 2019-09-05 04:25:11.596995 15052 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-05 03:31:54.459939000 Z\n- &1 2019-09-05 04:25:11.579553000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-05 05:09:36.215293296 Z\nsign_in_count:\n- 571\n- 572\n 1144 \N 189.186.55.7 80fb9266-4366-45d2-bef3-792ff8ea138b 2019-09-05 05:09:36.220855 15053 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yB2-918gGxY-AmCA4m_C\n- z2LA9x2JoVtxxKx2z4sM\n 1145 \N 189.186.55.7 80fb9266-4366-45d2-bef3-792ff8ea138b 2019-09-05 05:09:36.237843 15054 20 User \N \N 20 User \N update ---\nlast_sign_in_at:\n- 2019-09-02 16:10:04.794235000 Z\n- &1 2019-09-03 16:11:38.586713000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-05 16:08:40.593895251 Z\nsign_in_count:\n- 11\n- 12\n 24 \N 187.149.63.76 3e3f6a06-30b3-4d4e-b8da-73eb563d16e0 2019-09-05 16:08:40.622409 15055 20 User \N \N 20 User \N update ---\nunique_session_id:\n- pJSsMz_XEs4H_-xzykzr\n- SFR4uRxbXT72ZZgHaBra\n 25 \N 187.149.63.76 3e3f6a06-30b3-4d4e-b8da-73eb563d16e0 2019-09-05 16:08:40.64132 15056 407 OpenCashRegister \N \N 20 User \N create ---\ncash_register_id: 2\nuser_id: 20\ninitial_cash: !ruby/object:BigDecimal 18:0.9435E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 943.5 187.149.63.76 14a573b6-f457-4500-8b92-591c7ab65fae 2019-09-05 16:09:55.840278 15057 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-04 15:53:37.652493000 Z\n- &1 2019-09-05 01:01:58.109920000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-05 16:35:49.708792878 Z\nsign_in_count:\n- 310\n- 311\n 625 \N 187.149.63.76 2e89dd2e-0127-472e-bd49-a119869d177c 2019-09-05 16:35:49.714264 15058 2 User \N \N 2 User \N update ---\nunique_session_id:\n- isd2v8ZsxQriAvJbYY4J\n- evCVqyBXpeChwyG4Lxb8\n 626 \N 187.149.63.76 2e89dd2e-0127-472e-bd49-a119869d177c 2019-09-05 16:35:49.727425 15059 408 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1172E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1172.0 187.149.63.76 b49cab6a-b03a-47fb-8ef6-5ee27c2eb06a 2019-09-05 16:57:26.320968 15060 1033 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 408\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-09-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-591\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 bddbb864-8e31-4a30-b1e0-9685779f29e9 2019-09-05 16:58:23.181637 15061 841 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.63.76 bddbb864-8e31-4a30-b1e0-9685779f29e9 2019-09-05 16:58:23.210111 15062 1033 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 20900453-e62d-4811-8fee-2516fe1911e1 2019-09-05 16:59:24.138751 15063 1430 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 408\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 1033\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-591\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: QW4E\ncustomer_account: UNIVALE\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-591 187.149.63.76 20900453-e62d-4811-8fee-2516fe1911e1 2019-09-05 16:59:24.163332 15064 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-04 01:51:57.109525000 Z\n- &1 2019-09-04 17:06:34.105311000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-05 18:02:44.474109225 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129259\n mask_addr: 4294967295\nsign_in_count:\n- 10\n- 11\n 22 \N 189.186.178.171 4b6c2c7c-ed69-4516-acb4-f4c2ac395c49 2019-09-05 18:02:44.482231 15065 21 User \N \N 21 User \N update ---\nunique_session_id:\n- _xPsMuJRAr2oqWAFkeFU\n- 8As9narNa4qQar4y-GYx\n 23 \N 189.186.178.171 4b6c2c7c-ed69-4516-acb4-f4c2ac395c49 2019-09-05 18:02:44.497672 15066 409 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1165E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1165.0 189.186.178.171 97c042ea-2ee6-4e5b-b352-0a4ceb85f189 2019-09-05 18:03:06.24531 15067 166 Customer \N \N 21 User \N create ---\nnick_name: BRENDA ALICIA\nphone: "(667) 143-3981"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BRENDA ALICIA fue registrado. 189.186.178.171 ff117f3d-16aa-4b9a-8baa-fe6c903d5bcd 2019-09-05 18:03:33.302881 15068 1034 Sale \N \N 21 User \N create ---\ncustomer_id: 166\nuser_id: 21\nopen_cash_register_id: 409\namount: !ruby/object:BigDecimal 18:0.129224E4\ntax: !ruby/object:BigDecimal 18:0.20676E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2019-09-05\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-11\nexpiration_date: 2019-10-10\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.178.171 2d2a559c-43d4-42b1-81c0-c294325bc535 2019-09-05 18:03:46.15522 15070 1431 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 409\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 1034\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-11\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-11 189.186.178.171 53395204-0727-43d0-a8ae-902b726b1916 2019-09-05 18:03:57.776547 15071 1034 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.178.171 24e4fca9-fccd-498b-8eb1-c2d539edf6de 2019-09-05 18:03:58.972748 15072 1035 Sale \N \N 20 User \N create ---\ncustomer_id: 1\nuser_id: 20\nopen_cash_register_id: 407\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-05\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-431\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 b24f2406-303b-474c-8553-a4cfd3c519a1 2019-09-05 20:35:44.398268 15073 800 AvailableProduct \N \N 20 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.63.76 b24f2406-303b-474c-8553-a4cfd3c519a1 2019-09-05 20:35:44.425213 15074 1035 Sale \N \N 20 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 57d32d9a-df73-4204-bd95-006171c380ee 2019-09-05 20:36:12.590927 15075 1432 CashRegistersMove \N \N 20 User \N create ---\nopen_cash_register_id: 407\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1035\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-431\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-431 187.149.63.76 57d32d9a-df73-4204-bd95-006171c380ee 2019-09-05 20:36:12.61197 15076 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-05 04:25:11.579553000 Z\n- &1 2019-09-05 05:09:36.215293000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-05 20:53:55.601136102 Z\nsign_in_count:\n- 572\n- 573\n 1146 \N 189.186.55.7 c8e15033-e360-479b-9d17-d9971fa281d3 2019-09-05 20:53:55.641889 15077 4 User \N \N 4 User \N update ---\nunique_session_id:\n- z2LA9x2JoVtxxKx2z4sM\n- Ho1uRG99a34vS_rsKVu2\n 1147 \N 189.186.55.7 c8e15033-e360-479b-9d17-d9971fa281d3 2019-09-05 20:53:55.662697 15078 1036 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 408\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-592\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 74a862e3-0d53-40bb-a532-78f510a65b36 2019-09-06 00:24:27.598781 15079 744 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 16 \N 187.149.63.76 74a862e3-0d53-40bb-a532-78f510a65b36 2019-09-06 00:24:27.641016 15080 1036 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 b616200e-26fe-4646-861b-02294a204e05 2019-09-06 00:24:44.406915 15081 1433 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 408\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1036\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-592\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-592 187.149.63.76 b616200e-26fe-4646-861b-02294a204e05 2019-09-06 00:24:44.43744 15082 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-05 05:09:36.215293000 Z\n- &1 2019-09-05 20:53:55.601136000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-06 00:40:49.534933304 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097607\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 573\n- 574\n 1148 \N 187.149.63.76 55c75c4c-763b-4eef-b733-2c7ed9d5a6d8 2019-09-06 00:40:49.542602 15083 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Ho1uRG99a34vS_rsKVu2\n- yX_Gzyc6VbiC2yxh5vXu\n 1149 \N 187.149.63.76 55c75c4c-763b-4eef-b733-2c7ed9d5a6d8 2019-09-06 00:40:49.559255 15084 407 CashOut \N \N 20 User \N create ---\nopen_cash_register_id: 407\nuser_id: 20\namount_in: !ruby/object:BigDecimal 18:0.699E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.9425E3\nphysical_cash: !ruby/object:BigDecimal 18:0.16425E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.63.76 86c81fb9-735c-47dd-a27a-3059ddebe5a6 2019-09-06 00:58:18.151894 15085 407 OpenCashRegister \N \N 20 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 86c81fb9-735c-47dd-a27a-3059ddebe5a6 2019-09-06 00:58:18.165332 15086 408 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 408\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2298E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.871E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1871E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.63.76 cc22ce00-b544-4919-992b-1ef9da6bff1e 2019-09-06 00:58:41.760023 15087 408 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 cc22ce00-b544-4919-992b-1ef9da6bff1e 2019-09-06 00:58:41.791877 15088 20 User \N \N 20 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 16:11:38.586713000 Z\n- &1 2019-09-05 16:08:40.593895000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-06 16:11:41.693840225 Z\nsign_in_count:\n- 12\n- 13\n 26 \N 187.149.63.76 5d245a4e-347a-4275-acb5-9520b69c5a58 2019-09-06 16:11:41.729558 15089 20 User \N \N 20 User \N update ---\nunique_session_id:\n- SFR4uRxbXT72ZZgHaBra\n- VGS6zbQKWbHu_wj8vv36\n 27 \N 187.149.63.76 5d245a4e-347a-4275-acb5-9520b69c5a58 2019-09-06 16:11:41.754341 15090 410 OpenCashRegister \N \N 20 User \N create ---\ncash_register_id: 2\nuser_id: 20\ninitial_cash: !ruby/object:BigDecimal 18:0.9425E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 942.5 187.149.63.76 13c9f0b6-8157-4b9d-bd2c-7bea23d0870d 2019-09-06 16:12:03.819484 15091 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-05 01:01:58.109920000 Z\n- &1 2019-09-05 16:35:49.708792000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-06 16:59:42.854488171 Z\nsign_in_count:\n- 311\n- 312\n 627 \N 187.149.63.76 cabeac56-f729-41f6-95ef-2111c6c88440 2019-09-06 16:59:42.861949 15092 2 User \N \N 2 User \N update ---\nunique_session_id:\n- evCVqyBXpeChwyG4Lxb8\n- SsjQQNTU8xaXFi7wyzfo\n 628 \N 187.149.63.76 cabeac56-f729-41f6-95ef-2111c6c88440 2019-09-06 16:59:42.87949 15093 411 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.871E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 871.0 187.149.63.76 417e5c07-0d7d-4388-9ede-731a1446d119 2019-09-06 17:00:21.889253 15095 175 Transfer \N \N 20 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-09-06\nuser_id: 20\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.63.76 5d7b6f22-0a37-4f80-9472-58c45536a219 2019-09-06 17:04:06.189909 15096 175 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-06\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.63.76 a87c1fe6-56de-44c7-b906-d00b0497d3da 2019-09-06 17:13:18.076946 15097 569 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.63.76 a87c1fe6-56de-44c7-b906-d00b0497d3da 2019-09-06 17:13:18.104915 15098 1037 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 411\namount: !ruby/object:BigDecimal 18:0.82586E3\ntax: !ruby/object:BigDecimal 18:0.13214E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.958E3\nstatus: 0\ndate_sale: 2019-09-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-593\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 02fc249d-3b97-48a8-b5ab-114c074eb1fa 2019-09-06 17:14:48.899208 15099 629 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.63.76 02fc249d-3b97-48a8-b5ab-114c074eb1fa 2019-09-06 17:14:48.93229 15100 569 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.63.76 02fc249d-3b97-48a8-b5ab-114c074eb1fa 2019-09-06 17:14:48.961482 15101 1037 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 1059271a-f526-4b3b-926a-b18194929c95 2019-09-06 17:15:17.095098 15102 1434 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 411\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.958E3\nmove_type: '1'\nsale_id: 1037\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-593\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: QWEQ\ncustomer_account: UNIVALE\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-593 187.149.63.76 1059271a-f526-4b3b-926a-b18194929c95 2019-09-06 17:15:17.13288 15103 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-05 20:53:55.601136000 Z\n- &1 2019-09-06 00:40:49.534933000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-06 19:04:16.708730562 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097607\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\nsign_in_count:\n- 574\n- 575\n 1150 \N 189.186.161.108 fa3fb3e5-382f-46b9-96e1-a9b40ce75f84 2019-09-06 19:04:16.731041 15104 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yX_Gzyc6VbiC2yxh5vXu\n- 6NQJcpCbt7F_myWHqphQ\n 1151 \N 189.186.161.108 fa3fb3e5-382f-46b9-96e1-a9b40ce75f84 2019-09-06 19:04:16.753665 15105 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-06 00:40:49.534933000 Z\n- &1 2019-09-06 19:04:16.708730000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-06 19:21:03.163063853 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097607\n mask_addr: 4294967295\nsign_in_count:\n- 575\n- 576\n 1152 \N 189.186.55.7 f563d9ed-9dc5-4452-b2c0-55ec971044df 2019-09-06 19:21:03.17255 15106 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6NQJcpCbt7F_myWHqphQ\n- En1SjRaC4G7QyqstsJAz\n 1153 \N 189.186.55.7 f563d9ed-9dc5-4452-b2c0-55ec971044df 2019-09-06 19:21:03.191692 15107 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-06 19:04:16.708730000 Z\n- &1 2019-09-06 19:21:03.163063000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-06 19:36:02.945524625 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097607\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097607\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\nsign_in_count:\n- 576\n- 577\n 1154 \N 189.186.161.108 acd6e534-36ac-40b3-8eb0-6423c02feadf 2019-09-06 19:36:02.953239 15108 4 User \N \N 4 User \N update ---\nunique_session_id:\n- En1SjRaC4G7QyqstsJAz\n- unW_6zAYKyU1zZthDPpM\n 1155 \N 189.186.161.108 acd6e534-36ac-40b3-8eb0-6423c02feadf 2019-09-06 19:36:02.970316 15109 176 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 411\nquantity: !ruby/object:BigDecimal 18:0.1E4\nstatus: 1\nobservations: ROCIO\nexpense_date: 2019-09-06\nexpense_code: PV1-E-138\n 1 Egreso por 1000.0 registrado 187.149.63.76 a6a43e95-cf72-4d9f-9221-1e6324cbc248 2019-09-06 20:05:55.254392 15110 1435 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 411\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 176\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.63.76 a6a43e95-cf72-4d9f-9221-1e6324cbc248 2019-09-06 20:05:55.286828 15111 1436 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 182\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.63.76 13354f8f-1dae-455f-a505-dbb5f197a597 2019-09-06 20:06:18.60224 15112 1436 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 49\n- 411\n 2 movimiento de efectivo por venta con folio PV1-V-104 187.149.63.76 13354f8f-1dae-455f-a505-dbb5f197a597 2019-09-06 20:06:18.626745 15113 1038 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 411\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-09-06\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-594\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 e1cf197f-f042-4c5f-9b27-75c9abc57f07 2019-09-06 20:17:20.895925 15114 689 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.63.76 e1cf197f-f042-4c5f-9b27-75c9abc57f07 2019-09-06 20:17:20.930177 15115 1038 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 812afa84-e01a-4e09-b8e9-6d04b7090e36 2019-09-06 20:17:42.495916 15248 1053 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 3a548568-23f3-4bd3-83a1-af9daa192875 2019-09-08 00:06:47.562431 15462 700 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.63.76 01f1e9c7-7eb8-4dc6-9fbd-be1aff05a997 2019-09-11 17:31:40.870067 15116 1437 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 411\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 1038\ncardnumber: 4294\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-594\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-594 187.149.63.76 812afa84-e01a-4e09-b8e9-6d04b7090e36 2019-09-06 20:17:42.526395 15117 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-06 19:21:03.163063000 Z\n- &1 2019-09-06 19:36:02.945524000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-06 20:47:18.019888814 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097607\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097607\n mask_addr: 4294967295\nsign_in_count:\n- 577\n- 578\n 1156 \N 189.186.55.7 c6f5685c-db59-4d07-be2f-18b316b33ad3 2019-09-06 20:47:18.029776 15118 4 User \N \N 4 User \N update ---\nunique_session_id:\n- unW_6zAYKyU1zZthDPpM\n- smrif7eRkaZu1ry68PZy\n 1157 \N 189.186.55.7 c6f5685c-db59-4d07-be2f-18b316b33ad3 2019-09-06 20:47:18.049001 15119 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-06 19:36:02.945524000 Z\n- &1 2019-09-06 20:47:18.019888000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-06 21:38:16.263491264 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097607\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097607\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\nsign_in_count:\n- 578\n- 579\n 1158 \N 189.186.161.108 322ab741-7871-4195-9f62-603aa72a2559 2019-09-06 21:38:16.27426 15120 4 User \N \N 4 User \N update ---\nunique_session_id:\n- smrif7eRkaZu1ry68PZy\n- UdEio5cByFGUfevLEAoG\n 1159 \N 189.186.161.108 322ab741-7871-4195-9f62-603aa72a2559 2019-09-06 21:38:16.294143 15121 1039 Sale \N \N 20 User \N create ---\ncustomer_id: 1\nuser_id: 20\nopen_cash_register_id: 410\namount: !ruby/object:BigDecimal 18:0.86121E3\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-09-06\nsaletype: 1\nseller_id: 9\nsale_code: PV2-V-432\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 32288f91-ba04-43ae-a9f6-2cddc430e747 2019-09-06 22:04:53.328928 15122 431 AvailableProduct \N \N 20 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.63.76 32288f91-ba04-43ae-a9f6-2cddc430e747 2019-09-06 22:04:53.374967 15123 1039 Sale \N \N 20 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 1b6444c4-67b4-4bd4-96da-ef4e255370a2 2019-09-06 22:05:32.565235 15124 1438 CashRegistersMove \N \N 20 User \N create ---\nopen_cash_register_id: 410\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 1039\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-432\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-432 187.149.63.76 1b6444c4-67b4-4bd4-96da-ef4e255370a2 2019-09-06 22:05:32.588429 15125 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-06 20:47:18.019888000 Z\n- &1 2019-09-06 21:38:16.263491000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-06 22:33:30.821166268 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097607\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 579\n- 580\n 1160 \N 187.149.63.76 827052d1-5e5e-4da6-9e50-883b18372d7c 2019-09-06 22:33:30.829215 15126 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UdEio5cByFGUfevLEAoG\n- g2EohZZQ7byUwjh6zgB6\n 1161 \N 187.149.63.76 827052d1-5e5e-4da6-9e50-883b18372d7c 2019-09-06 22:33:30.845123 15127 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-04 22:21:11.174460000 Z\n- &1 2019-09-05 00:13:00.946587000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-06 23:17:29.535298175 Z\nsign_in_count:\n- 5\n- 6\n 15 \N 187.149.63.76 65c1e53a-47d5-4d11-998b-14d41efa6b09 2019-09-06 23:17:29.542048 15128 8 User \N \N 8 User \N update ---\nunique_session_id:\n- scUgipzQAmpi4YWjUD8H\n- 1Bqbe1Niv5sVtchFjVyk\n 16 \N 187.149.63.76 65c1e53a-47d5-4d11-998b-14d41efa6b09 2019-09-06 23:17:29.556231 15129 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-05 00:13:00.946587000 Z\n- &1 2019-09-06 23:17:29.535298000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-06 23:32:28.754355980 Z\nsign_in_count:\n- 6\n- 7\n 17 \N 187.149.63.76 cf49151c-26ca-4fbc-9181-dccb2fa9d57a 2019-09-06 23:32:28.760373 15130 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 1Bqbe1Niv5sVtchFjVyk\n- pP-xF15hos4cQTMSdt8-\n 18 \N 187.149.63.76 cf49151c-26ca-4fbc-9181-dccb2fa9d57a 2019-09-06 23:32:28.786765 15131 1040 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 410\namount: !ruby/object:BigDecimal 18:0.8534E2\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9899E2\nstatus: 0\ndate_sale: 2019-09-06\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-433\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 f22c86ad-c8a1-41ec-881b-15f663bc0a28 2019-09-06 23:33:00.902373 15132 487 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.72E2\n- !ruby/object:BigDecimal 18:0.71E2\n 16 \N 187.149.63.76 f22c86ad-c8a1-41ec-881b-15f663bc0a28 2019-09-06 23:33:00.931225 15133 1040 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 32d46bc5-c744-4582-a483-77961806f2c5 2019-09-06 23:33:14.84913 15134 1439 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 410\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.9899E2\nmove_type: '1'\nsale_id: 1040\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-433\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9899E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-433 187.149.63.76 32d46bc5-c744-4582-a483-77961806f2c5 2019-09-06 23:33:14.887805 15135 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-06 21:38:16.263491000 Z\n- &1 2019-09-06 22:33:30.821166000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 00:18:38.440874796 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\nsign_in_count:\n- 580\n- 581\n 1162 \N 189.186.161.108 383a7c85-7bd9-4e7a-8698-8241214549f8 2019-09-07 00:18:38.471896 15136 4 User \N \N 4 User \N update ---\nunique_session_id:\n- g2EohZZQ7byUwjh6zgB6\n- fskt6LgGscyLeFF_Wxs3\n 1163 \N 189.186.161.108 383a7c85-7bd9-4e7a-8698-8241214549f8 2019-09-07 00:18:38.495598 15137 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-04 17:06:34.105311000 Z\n- &1 2019-09-05 18:02:44.474109000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 00:24:54.658764811 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129259\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129259\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\nsign_in_count:\n- 11\n- 12\n 24 \N 189.186.161.108 82aa4ef8-e11e-454e-8bf8-d3c11d0afd77 2019-09-07 00:24:54.665925 15138 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 8As9narNa4qQar4y-GYx\n- 5RMy3EGwo-3AkC7W4VAN\n 25 \N 189.186.161.108 82aa4ef8-e11e-454e-8bf8-d3c11d0afd77 2019-09-07 00:24:54.680152 15139 1041 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 409\namount: !ruby/object:BigDecimal 18:0.1549E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1549E4\nstatus: 0\ndate_sale: 2019-09-06\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-12\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.161.108 2f9e06b7-41ac-4682-8c83-7f282d1c85f4 2019-09-07 00:25:31.742784 15140 857 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.161.108 2f9e06b7-41ac-4682-8c83-7f282d1c85f4 2019-09-07 00:25:31.776826 15141 1041 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.161.108 452210e4-6140-4f91-a009-b54f70ee17aa 2019-09-07 00:26:31.341103 15142 1440 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 409\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1549E4\nmove_type: '1'\nsale_id: 1041\ncardnumber: 5536\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-12\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-12 189.186.161.108 452210e4-6140-4f91-a009-b54f70ee17aa 2019-09-07 00:26:31.373955 15143 1042 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 409\namount: !ruby/object:BigDecimal 18:0.299E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.299E3\nstatus: 0\ndate_sale: 2019-09-06\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-13\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.161.108 ab6cdab6-1e69-4fb5-b18a-86e9ff49ad36 2019-09-07 00:29:18.269695 15144 834 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E2\n- !ruby/object:BigDecimal 18:0.29E2\n 2 \N 189.186.161.108 ab6cdab6-1e69-4fb5-b18a-86e9ff49ad36 2019-09-07 00:29:18.303569 15145 1042 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.161.108 a744e1fc-be6d-4d9a-9215-7aaed8d672bc 2019-09-07 00:29:47.648691 15146 1441 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 409\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.299E3\nmove_type: '1'\nsale_id: 1042\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-13\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.299E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-13 189.186.161.108 a744e1fc-be6d-4d9a-9215-7aaed8d672bc 2019-09-07 00:29:47.677208 15147 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-06 22:33:30.821166000 Z\n- &1 2019-09-07 00:18:38.440874000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 00:37:31.227753537 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 581\n- 582\n 1164 \N 187.149.63.76 7d2a0013-101a-4cd4-bb74-e8a1e1fbeaa5 2019-09-07 00:37:31.235026 15148 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fskt6LgGscyLeFF_Wxs3\n- rpjxsGJ9U26fPTpFHMU8\n 1165 \N 187.149.63.76 7d2a0013-101a-4cd4-bb74-e8a1e1fbeaa5 2019-09-07 00:37:31.250025 15149 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-08-30 15:16:05.404820000 Z\n- &1 2019-08-31 05:00:00.195840000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 01:05:16.990678236 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938114\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 79\n- 80\n 160 \N 187.149.63.76 e332405b-c304-4961-804d-e686bd52abaf 2019-09-07 01:05:17.001416 15150 9 User \N \N 9 User \N update ---\nunique_session_id:\n- LZkWJiVuP6yN3BzpPaUv\n- sH5sFfELxq9wUL2jyM8k\n 161 \N 187.149.63.76 e332405b-c304-4961-804d-e686bd52abaf 2019-09-07 01:05:17.022482 15151 409 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 411\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.1757E4\namount_out: !ruby/object:BigDecimal 18:0.1E4\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.171E3\nphysical_cash: !ruby/object:BigDecimal 18:0.171E3\nobservations: FALTANTE $50\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.63.76 89064772-db25-4767-83c1-b17d64d431ec 2019-09-07 01:10:06.111108 15152 411 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 89064772-db25-4767-83c1-b17d64d431ec 2019-09-07 01:10:06.125423 15153 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-06 23:17:29.535298000 Z\n- &1 2019-09-06 23:32:28.754355000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 01:13:15.569305975 Z\nsign_in_count:\n- 7\n- 8\n 19 \N 187.149.63.76 7bf1536f-8a23-48fc-9a81-cb57e1a8a01f 2019-09-07 01:13:15.576269 15154 8 User \N \N 8 User \N update ---\nunique_session_id:\n- pP-xF15hos4cQTMSdt8-\n- TxyUvNhbs6zHV5N17kaS\n 20 \N 187.149.63.76 7bf1536f-8a23-48fc-9a81-cb57e1a8a01f 2019-09-07 01:13:15.593405 15155 177 Expense \N \N 8 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 410\nquantity: !ruby/object:BigDecimal 18:0.85E3\nstatus: 1\nobservations: ''\nexpense_date: 2019-09-06\nexpense_code: PV2-E-39\n 1 Egreso por 850.0 registrado 187.149.63.76 eb658b3a-9c1f-441d-8f55-756c66e2b440 2019-09-07 01:16:38.114286 15156 1442 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 410\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.85E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 177\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.63.76 eb658b3a-9c1f-441d-8f55-756c66e2b440 2019-09-07 01:16:38.141173 15463 700 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.63.76 20a398cf-6d6a-46cb-aaa8-7819491d2447 2019-09-11 17:31:47.860835 15464 700 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 187.149.63.76 e331a1e8-cc44-4006-8ec4-be685bfc1022 2019-09-11 17:31:57.618071 15157 410 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 410\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.109799E4\namount_out: !ruby/object:BigDecimal 18:0.85E3\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.7045E3\nphysical_cash: !ruby/object:BigDecimal 18:0.12045E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.63.76 972276c9-91a3-4305-b7a9-6c5b35656444 2019-09-07 01:19:58.791515 15158 410 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 972276c9-91a3-4305-b7a9-6c5b35656444 2019-09-07 01:19:58.80624 15159 178 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 409\nquantity: !ruby/object:BigDecimal 18:0.816E3\nstatus: 1\nobservations: 'Daniela $812 e Impreseiones $4 '\nexpense_date: 2019-09-06\nexpense_code: PV3-E-1\n 1 Egreso por 816.0 registrado 189.186.161.108 6c40cc74-bd2f-45c5-b197-c6ed6e16e48b 2019-09-07 01:51:03.745791 15160 1443 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 409\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.816E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 178\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.161.108 6c40cc74-bd2f-45c5-b197-c6ed6e16e48b 2019-09-07 01:51:03.77667 15161 411 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 409\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.2248E4\namount_out: !ruby/object:BigDecimal 18:0.816E3\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1048E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1048E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.161.108 24a3a525-26ee-4870-a781-9c359b68ac33 2019-09-07 01:51:44.250971 15162 409 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.161.108 24a3a525-26ee-4870-a781-9c359b68ac33 2019-09-07 01:51:44.266263 15163 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 00:18:38.440874000 Z\n- &1 2019-09-07 00:37:31.227753000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 03:35:18.240809539 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\nsign_in_count:\n- 582\n- 583\n 1166 \N 189.186.2.140 0004ac9d-2c09-411b-bd43-d731bb4e51a7 2019-09-07 03:35:18.270629 15164 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rpjxsGJ9U26fPTpFHMU8\n- waCABsS49XzzMBmUM3GB\n 1167 \N 189.186.2.140 0004ac9d-2c09-411b-bd43-d731bb4e51a7 2019-09-07 03:35:18.296077 15165 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 00:37:31.227753000 Z\n- &1 2019-09-07 03:35:18.240809000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 04:08:37.525034315 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934004\n mask_addr: 4294967295\nsign_in_count:\n- 583\n- 584\n 1168 \N 200.68.134.52 432933f6-7f64-46ab-928f-4e76224dbe5f 2019-09-07 04:08:37.534116 15166 4 User \N \N 4 User \N update ---\nunique_session_id:\n- waCABsS49XzzMBmUM3GB\n- Skd_Rj9ZkyYaDs-3XEjA\n 1169 \N 200.68.134.52 432933f6-7f64-46ab-928f-4e76224dbe5f 2019-09-07 04:08:37.556385 15167 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 03:35:18.240809000 Z\n- &1 2019-09-07 04:08:37.525034000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 05:41:27.383685784 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934004\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934004\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\nsign_in_count:\n- 584\n- 585\n 1170 \N 189.186.2.140 001c1643-5a9c-4bcf-9121-2f5d25074490 2019-09-07 05:41:27.393664 15168 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Skd_Rj9ZkyYaDs-3XEjA\n- PKWKMxymdqwBJ8P5eqs4\n 1171 \N 189.186.2.140 001c1643-5a9c-4bcf-9121-2f5d25074490 2019-09-07 05:41:27.415106 15169 687 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.649E3\n- !ruby/object:BigDecimal 18:0.699E3\n 4 El producto VES-687 fue modificado. 189.186.2.140 c3fa9b2f-b119-48fd-977e-4ba8f7649db8 2019-09-07 05:42:02.315217 15170 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 05:00:00.195840000 Z\n- &1 2019-09-07 01:05:16.990678000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 16:12:26.466657368 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183134808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 80\n- 81\n 162 \N 187.149.63.76 a9145123-7f4b-462e-bf2d-ecd60e8bbae8 2019-09-07 16:12:26.503678 15171 9 User \N \N 9 User \N update ---\nunique_session_id:\n- sH5sFfELxq9wUL2jyM8k\n- 5xuyyGKH8W6yGGXmyHs7\n 163 \N 187.149.63.76 a9145123-7f4b-462e-bf2d-ecd60e8bbae8 2019-09-07 16:12:26.527758 15172 412 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.171E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 171.0 187.149.63.76 7daad7ce-6630-497a-81c6-3bd6b804d228 2019-09-07 16:12:38.545701 15173 167 Customer \N \N 9 User \N create ---\nnick_name: LETICIA ZAZUETA\nphone: "(667) 583-1424"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.4E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LETICIA ZAZUETA fue registrado. 187.149.63.76 5e870002-8a33-4efe-891f-d2281d1fd957 2019-09-07 16:14:24.234846 15174 1043 Sale \N \N 9 User \N create ---\ncustomer_id: 167\nuser_id: 9\nopen_cash_register_id: 412\namount: !ruby/object:BigDecimal 18:0.669E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-09-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-595\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 f4ff7f8f-21c5-4e92-bac2-7876b0418373 2019-09-07 16:14:45.860479 15175 708 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.63.76 f4ff7f8f-21c5-4e92-bac2-7876b0418373 2019-09-07 16:14:45.892475 15176 1043 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-595 cancelada. 187.149.63.76 7ef48a37-1bfe-42e0-9b33-215ea0919674 2019-09-07 16:14:52.284568 15177 708 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.63.76 7ef48a37-1bfe-42e0-9b33-215ea0919674 2019-09-07 16:14:52.312334 15465 700 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.63.76 9893eb09-16ee-499b-b127-d2a976e3dac7 2019-09-11 17:32:08.65793 15466 179 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.63.76 8a7a2ab0-6476-40e3-80f9-f9813e1dc676 2019-09-11 17:32:26.788034 15178 1044 Sale \N \N 9 User \N create ---\ncustomer_id: 167\nuser_id: 9\nopen_cash_register_id: 412\namount: !ruby/object:BigDecimal 18:0.669E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-09-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-596\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 edd73f27-e3cd-4b90-878c-5cdb46461262 2019-09-07 16:15:46.013508 15179 708 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.63.76 edd73f27-e3cd-4b90-878c-5cdb46461262 2019-09-07 16:15:46.037974 15180 1044 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-596 cancelada. 187.149.63.76 f26aaad8-ac42-4c26-a5a3-8ff0d8582c14 2019-09-07 16:15:58.28555 15181 708 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 187.149.63.76 f26aaad8-ac42-4c26-a5a3-8ff0d8582c14 2019-09-07 16:15:58.306855 15182 1045 Sale \N \N 9 User \N create ---\ncustomer_id: 167\nuser_id: 9\nopen_cash_register_id: 412\namount: !ruby/object:BigDecimal 18:0.669E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-09-07\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-597\nexpiration_date: 2019-10-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 2fd211d1-95e8-4741-99c5-e46695c70058 2019-09-07 16:16:25.245173 15183 708 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.63.76 2fd211d1-95e8-4741-99c5-e46695c70058 2019-09-07 16:16:25.268843 15184 1444 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 412\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.134E3\nmove_type: '1'\nsale_id: 1045\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-597\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.134E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-597 187.149.63.76 f8b5fed4-9434-4081-927f-3907fca42663 2019-09-07 16:16:32.156976 15185 1045 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.63.76 288ab014-5e18-4701-82fc-32f29b0a4d83 2019-09-07 16:16:34.821162 15186 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-06 23:32:28.754355000 Z\n- &1 2019-09-07 01:13:15.569305000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 16:33:52.598617002 Z\nsign_in_count:\n- 8\n- 9\n 21 \N 187.149.63.76 522b580d-b9ee-4fa6-bdee-30f6efbe1700 2019-09-07 16:33:52.604929 15187 8 User \N \N 8 User \N update ---\nunique_session_id:\n- TxyUvNhbs6zHV5N17kaS\n- mCTcPzjo1j3Cvs1qTFgs\n 22 \N 187.149.63.76 522b580d-b9ee-4fa6-bdee-30f6efbe1700 2019-09-07 16:33:52.619419 15188 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 04:08:37.525034000 Z\n- &1 2019-09-07 05:41:27.383685000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 16:45:14.018453946 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934004\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 585\n- 586\n 1172 \N 187.149.63.76 aceee24f-6371-46bd-bb1f-3af56233be7b 2019-09-07 16:45:14.027077 15189 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PKWKMxymdqwBJ8P5eqs4\n- K6z5GeWf-PdxKdQks5z9\n 1173 \N 187.149.63.76 aceee24f-6371-46bd-bb1f-3af56233be7b 2019-09-07 16:45:14.042041 15190 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 01:05:16.990678000 Z\n- &1 2019-09-07 16:12:26.466657000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 16:47:31.765142881 Z\nsign_in_count:\n- 81\n- 82\n 164 \N 187.149.63.76 1e80b9d2-77b5-417d-abba-9807594d091c 2019-09-07 16:47:31.770458 15191 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 5xuyyGKH8W6yGGXmyHs7\n- dgAExURK4DoVtzQs52wC\n 165 \N 187.149.63.76 1e80b9d2-77b5-417d-abba-9807594d091c 2019-09-07 16:47:31.78162 15192 1445 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 412\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.366E3\nmove_type: '1'\nsale_id: 945\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.366E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-545 187.149.63.76 b2e25c97-ca57-4f13-a12d-e3714bd75a52 2019-09-07 16:49:18.993946 15193 1446 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 412\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 1045\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-597 187.149.63.76 7ad41740-9f28-4e25-922b-4e7623422952 2019-09-07 16:57:22.132216 15194 1447 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 412\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 948\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-547 187.149.63.76 aa203473-b248-4c62-bb9b-e8a6d7200e5b 2019-09-07 16:58:14.01117 15195 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-05 18:02:44.474109000 Z\n- &1 2019-09-07 00:24:54.658764000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 17:24:57.460294463 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129259\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\nsign_in_count:\n- 12\n- 13\n 26 \N 189.186.161.108 ca38a238-df19-424d-a083-189b5df2e92d 2019-09-07 17:24:57.4669 15196 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 5RMy3EGwo-3AkC7W4VAN\n- fN_G4CZnbThj2AUvWLTQ\n 27 \N 189.186.161.108 ca38a238-df19-424d-a083-189b5df2e92d 2019-09-07 17:24:57.481428 15197 413 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1048E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1048.0 189.186.161.108 1f4c415f-3fcf-4057-90b5-afddcfb454d6 2019-09-07 17:28:31.263832 15198 1046 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 413\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-09-07\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-14\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.161.108 cc52f633-8012-484b-baac-7db146efd13a 2019-09-07 17:29:00.373408 15199 828 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.161.108 cc52f633-8012-484b-baac-7db146efd13a 2019-09-07 17:29:00.415233 15201 1448 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 413\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 1046\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-14\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-14 189.186.161.108 c6a1bc5f-dd61-4d6b-9335-b88859ba7fb5 2019-09-07 17:29:05.919513 15202 1047 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 413\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-07\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-15\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.161.108 ef7c5605-ef34-4323-8c30-77be2ace2384 2019-09-07 17:30:06.013599 15203 835 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 189.186.161.108 ef7c5605-ef34-4323-8c30-77be2ace2384 2019-09-07 17:30:06.041507 15204 1047 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.161.108 5f761227-67ab-4e62-8cb4-6e0a565316af 2019-09-07 17:30:11.625865 15205 1449 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 413\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1047\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-15\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-15 189.186.161.108 5f761227-67ab-4e62-8cb4-6e0a565316af 2019-09-07 17:30:11.649039 15206 1048 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 412\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-09-07\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-598\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 9e2027ba-28ae-4ecd-a396-495fbd07d96c 2019-09-07 18:34:05.721807 15207 697 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.63.76 9e2027ba-28ae-4ecd-a396-495fbd07d96c 2019-09-07 18:34:05.746867 15208 1048 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 4d62e926-8e20-4926-b7de-867419282026 2019-09-07 18:34:13.959392 15209 1450 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 412\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 1048\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-598\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-598 187.149.63.76 4d62e926-8e20-4926-b7de-867419282026 2019-09-07 18:34:13.979051 15210 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 16:12:26.466657000 Z\n- &1 2019-09-07 16:47:31.765142000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 18:49:33.619082702 Z\nsign_in_count:\n- 82\n- 83\n 166 \N 187.149.63.76 14049760-dc60-4a3a-ae89-9f54d52c6e26 2019-09-07 18:49:33.626692 15211 9 User \N \N 9 User \N update ---\nunique_session_id:\n- dgAExURK4DoVtzQs52wC\n- _-PTCzcyrsasaS8s4g2z\n 167 \N 187.149.63.76 14049760-dc60-4a3a-ae89-9f54d52c6e26 2019-09-07 18:49:33.640726 15212 1049 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 412\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-07\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-599\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 483e0ce4-675e-462f-97de-55111129b2dd 2019-09-07 18:49:49.710804 15213 744 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 17 \N 187.149.63.76 483e0ce4-675e-462f-97de-55111129b2dd 2019-09-07 18:49:49.735159 15214 1049 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 1f13f3c3-5da6-43d3-ad8d-98457622f5b9 2019-09-07 18:49:56.677868 15215 1451 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 412\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1049\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-599\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-599 187.149.63.76 1f13f3c3-5da6-43d3-ad8d-98457622f5b9 2019-09-07 18:49:56.704739 15216 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 05:41:27.383685000 Z\n- &1 2019-09-07 16:45:14.018453000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 19:03:02.122036591 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 586\n- 587\n 1174 \N 187.149.63.76 5ce3d2e8-f43e-4e94-a355-5881f8f236fa 2019-09-07 19:03:02.147686 15217 4 User \N \N 4 User \N update ---\nunique_session_id:\n- K6z5GeWf-PdxKdQks5z9\n- Lpcx6JNwnk64z1utWFcg\n 1175 \N 187.149.63.76 5ce3d2e8-f43e-4e94-a355-5881f8f236fa 2019-09-07 19:03:02.168596 15218 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 16:47:31.765142000 Z\n- &1 2019-09-07 18:49:33.619082000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 19:03:29.717134872 Z\nsign_in_count:\n- 83\n- 84\n 168 \N 187.149.63.76 d1ab3590-9c85-4c1f-9181-a61991ef7ffc 2019-09-07 19:03:29.723295 15219 9 User \N \N 9 User \N update ---\nunique_session_id:\n- _-PTCzcyrsasaS8s4g2z\n- Zfuxsscz9P2tCpTJeVBK\n 169 \N 187.149.63.76 d1ab3590-9c85-4c1f-9181-a61991ef7ffc 2019-09-07 19:03:29.749817 15220 1050 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 413\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2019-09-07\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-16\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.161.108 c8ab27ce-81c9-4e6e-81b8-ec3c33b593a7 2019-09-07 19:38:41.290009 15221 813 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.7E1\n 2 \N 189.186.161.108 c8ab27ce-81c9-4e6e-81b8-ec3c33b593a7 2019-09-07 19:38:41.325393 15222 1050 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.161.108 30a5ba5f-0f89-4602-832a-ea24fb19da05 2019-09-07 19:39:28.257774 15467 179 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.63.76 8eaba771-89c6-4fdd-9b1b-ea0525a4ad86 2019-09-11 17:32:29.406893 15223 1452 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 413\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1398E4\nmove_type: '1'\nsale_id: 1050\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-16\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.102E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-16 189.186.161.108 30a5ba5f-0f89-4602-832a-ea24fb19da05 2019-09-07 19:39:28.279092 15224 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 18:49:33.619082000 Z\n- &1 2019-09-07 19:03:29.717134000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 20:11:59.083986869 Z\nsign_in_count:\n- 84\n- 85\n 170 \N 187.149.63.76 fa0890eb-3c05-4431-8386-f3e3e8768621 2019-09-07 20:11:59.111558 15225 9 User \N \N 9 User \N update ---\nunique_session_id:\n- Zfuxsscz9P2tCpTJeVBK\n- GqyEZjLcR6yYrvo4syco\n 171 \N 187.149.63.76 fa0890eb-3c05-4431-8386-f3e3e8768621 2019-09-07 20:11:59.132498 15226 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 16:45:14.018453000 Z\n- &1 2019-09-07 19:03:02.122036000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 20:50:16.280976745 Z\nsign_in_count:\n- 587\n- 588\n 1176 \N 187.149.63.76 388a781b-c7b8-4414-bd6b-297a253c2426 2019-09-07 20:50:16.298999 15227 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Lpcx6JNwnk64z1utWFcg\n- zB7zz6TNA3G9w76ADCcs\n 1177 \N 187.149.63.76 388a781b-c7b8-4414-bd6b-297a253c2426 2019-09-07 20:50:16.311713 15228 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 01:13:15.569305000 Z\n- &1 2019-09-07 16:33:52.598617000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 22:34:57.002167606 Z\nsign_in_count:\n- 9\n- 10\n 23 \N 187.149.63.76 0bd456e7-4084-4f5e-a1d8-ed92d05a205a 2019-09-07 22:34:57.007542 15229 8 User \N \N 8 User \N update ---\nunique_session_id:\n- mCTcPzjo1j3Cvs1qTFgs\n- UmhyFx6n-Efb5MbPkrzM\n 24 \N 187.149.63.76 0bd456e7-4084-4f5e-a1d8-ed92d05a205a 2019-09-07 22:34:57.031451 15230 414 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.7045E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 704.5 187.149.63.76 5d6a53cd-54da-4240-b8dc-e1e091fc81d6 2019-09-07 22:51:22.118725 15231 1051 Sale \N \N 8 User \N create ---\ncustomer_id: 134\nuser_id: 8\nopen_cash_register_id: 414\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-07\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-434\nexpiration_date: 2019-10-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 314357ff-90d4-4ac5-bea8-3c06f8424631 2019-09-07 22:53:00.682131 15232 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 6 \N 187.149.63.76 314357ff-90d4-4ac5-bea8-3c06f8424631 2019-09-07 22:53:00.712472 15233 1453 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 414\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.14E3\nmove_type: '1'\nsale_id: 1051\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-434\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.6E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-434 187.149.63.76 977e8472-bdd4-488e-8121-c8741edd179c 2019-09-07 22:53:14.057331 15234 1051 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.63.76 db54561e-8479-4d76-95e4-ab81ad538cc4 2019-09-07 22:53:19.438476 15235 1052 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 412\namount: !ruby/object:BigDecimal 18:0.669E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-09-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-600\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 655864f4-a2ec-46df-90b0-16bea4c7c1b3 2019-09-07 22:53:24.398862 15236 525 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.63.76 655864f4-a2ec-46df-90b0-16bea4c7c1b3 2019-09-07 22:53:24.428355 15237 1052 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 8c100854-4f57-4cc6-b3dc-23e38e0ff025 2019-09-07 22:53:28.739612 15238 1454 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 412\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.669E3\nmove_type: '1'\nsale_id: 1052\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-600\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.669E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-600 187.149.63.76 8c100854-4f57-4cc6-b3dc-23e38e0ff025 2019-09-07 22:53:28.761845 15239 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 19:03:02.122036000 Z\n- &1 2019-09-07 20:50:16.280976000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 23:33:38.991941070 Z\nsign_in_count:\n- 588\n- 589\n 1178 \N 187.149.63.76 07534711-1dc9-4359-a47a-b75af0d7da6b 2019-09-07 23:33:38.997427 15240 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zB7zz6TNA3G9w76ADCcs\n- PnyHYGVULq1KUxzehZzw\n 1179 \N 187.149.63.76 07534711-1dc9-4359-a47a-b75af0d7da6b 2019-09-07 23:33:39.010194 15241 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 20:50:16.280976000 Z\n- &1 2019-09-07 23:33:38.991941000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-07 23:48:48.140186557 Z\nsign_in_count:\n- 589\n- 590\n 1180 \N 187.149.63.76 ddf67056-da22-454e-8b39-66f76ef0aec2 2019-09-07 23:48:48.146245 15242 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PnyHYGVULq1KUxzehZzw\n- 3t4d8-pw_Vf3qyHN_3ix\n 1181 \N 187.149.63.76 ddf67056-da22-454e-8b39-66f76ef0aec2 2019-09-07 23:48:48.159706 15243 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 16:33:52.598617000 Z\n- &1 2019-09-07 22:34:57.002167000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-08 00:04:03.280135462 Z\nsign_in_count:\n- 10\n- 11\n 25 \N 187.149.63.76 98545146-29a9-48ee-844c-87a664ab3eb1 2019-09-08 00:04:03.288119 15244 8 User \N \N 8 User \N update ---\nunique_session_id:\n- UmhyFx6n-Efb5MbPkrzM\n- tYrjxLypoQ7ZuebsDBAb\n 26 \N 187.149.63.76 98545146-29a9-48ee-844c-87a664ab3eb1 2019-09-08 00:04:03.303059 15245 1053 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 414\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2019-09-07\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-435\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 e6904eb4-8755-492a-aef8-f3da3b0d6e20 2019-09-08 00:06:28.053539 15246 800 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.63.76 e6904eb4-8755-492a-aef8-f3da3b0d6e20 2019-09-08 00:06:28.08472 15247 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 187.149.63.76 e6904eb4-8755-492a-aef8-f3da3b0d6e20 2019-09-08 00:06:28.11166 15249 1455 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 414\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1398E4\nmove_type: '1'\nsale_id: 1053\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-435\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.102E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-435 187.149.63.76 3a548568-23f3-4bd3-83a1-af9daa192875 2019-09-08 00:06:47.583222 15250 810 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.63.76 b1305c33-e29e-4ee2-ae2f-619180193960 2019-09-08 00:13:54.743852 15251 176 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-09-07\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.63.76 7a16e19f-75fe-4025-80e3-27726941bbc3 2019-09-08 00:13:58.025171 15252 1456 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 412\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.349E3\nmove_type: '1'\nsale_id: 987\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.151E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-573 187.149.63.76 a51775ea-9710-44bf-b67c-1f661364645b 2019-09-08 00:23:46.361037 15253 987 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.63.76 0a7ad733-04a4-4a20-b581-25f2858433e5 2019-09-08 00:23:47.709167 15254 176 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-07\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.63.76 3138832d-642e-46c4-8910-dd4c085522fc 2019-09-08 00:24:52.27761 15255 800 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 187.149.63.76 3138832d-642e-46c4-8910-dd4c085522fc 2019-09-08 00:24:52.294829 15256 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 23:33:38.991941000 Z\n- &1 2019-09-07 23:48:48.140186000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-08 00:33:13.299049652 Z\nsign_in_count:\n- 590\n- 591\n 1182 \N 187.149.63.76 72705bb9-59a7-49f3-b58c-3e1a1c502a8b 2019-09-08 00:33:13.307605 15257 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3t4d8-pw_Vf3qyHN_3ix\n- PyfMm7N7p4-cHdK3186-\n 1183 \N 187.149.63.76 72705bb9-59a7-49f3-b58c-3e1a1c502a8b 2019-09-08 00:33:13.325106 15258 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 23:48:48.140186000 Z\n- &1 2019-09-08 00:33:13.299049000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-08 00:42:33.695502700 Z\nsign_in_count:\n- 591\n- 592\n 1184 \N 187.149.63.76 a08cd33b-a4d5-4293-acc7-4ec2621c7678 2019-09-08 00:42:33.701108 15259 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PyfMm7N7p4-cHdK3186-\n- eM9-u89CcEJd5Ee4zMZx\n 1185 \N 187.149.63.76 a08cd33b-a4d5-4293-acc7-4ec2621c7678 2019-09-08 00:42:33.714083 15260 412 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 412\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.3416E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.2824E4\ncash_fund: !ruby/object:BigDecimal 18:0.763E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3587E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.63.76 0d04d1b3-7d8e-4ea8-889b-05d955b29442 2019-09-08 01:05:59.492009 15261 412 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 0d04d1b3-7d8e-4ea8-889b-05d955b29442 2019-09-08 01:05:59.509993 15262 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 22:34:57.002167000 Z\n- &1 2019-09-08 00:04:03.280135000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-08 01:08:05.372515374 Z\nsign_in_count:\n- 11\n- 12\n 27 \N 187.149.63.76 741a976c-6a26-4823-80d6-4e2e7db77858 2019-09-08 01:08:05.378326 15263 8 User \N \N 8 User \N update ---\nunique_session_id:\n- tYrjxLypoQ7ZuebsDBAb\n- g7x3NroxvTyW7sYYs7UK\n 28 \N 187.149.63.76 741a976c-6a26-4823-80d6-4e2e7db77858 2019-09-08 01:08:05.391049 15264 413 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 414\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.1538E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.13395E4\ncash_fund: !ruby/object:BigDecimal 18:0.903E3\nphysical_cash: !ruby/object:BigDecimal 18:0.22425E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.63.76 b73ea5a2-e88c-4709-9ebb-085cc3482606 2019-09-08 01:12:35.236492 15265 414 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 b73ea5a2-e88c-4709-9ebb-085cc3482606 2019-09-08 01:12:35.250991 15266 414 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 413\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.3096E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.1117E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4117E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.161.108 d1cb537c-b59b-48d3-87ff-a7aec6cbd3d2 2019-09-08 02:10:42.095513 15267 413 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.161.108 d1cb537c-b59b-48d3-87ff-a7aec6cbd3d2 2019-09-08 02:10:42.109108 15268 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-05 16:35:49.708792000 Z\n- &1 2019-09-06 16:59:42.854488000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-09 16:09:03.758147538 Z\nsign_in_count:\n- 312\n- 313\n 629 \N 187.149.63.76 d6088ef8-e876-4b26-a8e9-bd491df2c127 2019-09-09 16:09:03.784897 15269 2 User \N \N 2 User \N update ---\nunique_session_id:\n- SsjQQNTU8xaXFi7wyzfo\n- Qy_HtUzqwpae3X_SqveN\n 630 \N 187.149.63.76 d6088ef8-e876-4b26-a8e9-bd491df2c127 2019-09-09 16:09:03.806238 15270 415 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.763E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 763.0 187.149.63.76 005dc5fb-22b8-4b0d-ae7d-35a6390f96c2 2019-09-09 16:14:12.49139 15271 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-08 00:33:13.299049000 Z\n- &1 2019-09-08 00:42:33.695502000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-09 16:38:12.350378275 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\nsign_in_count:\n- 592\n- 593\n 1186 \N 189.186.161.108 56652355-56d0-497b-a8da-1d699c92ad52 2019-09-09 16:38:12.358418 15272 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eM9-u89CcEJd5Ee4zMZx\n- gDm6KauUH4mXyGr6NnUw\n 1187 \N 189.186.161.108 56652355-56d0-497b-a8da-1d699c92ad52 2019-09-09 16:38:12.380804 15468 179 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.63.76 c861c9b0-ccf1-441d-bef9-5a3ea2158990 2019-09-11 17:32:33.537475 15469 179 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.63.76 d657d62c-dbd5-4057-9cd0-2e25bf4c4215 2019-09-11 17:32:37.80198 15273 23 User \N \N 4 User \N create ---\nuserid: MARICRUZ\nfirst_name: MARICRUZ\nlast_name: BUSTAMANTE MEZA\nusertype: G\nemail: lesliamb@hotmail.com\nencrypted_password: "$2a$10$OoCltfLWbK0oh14BbpuVAOY8isdDsBYxu1/CD6jGtS62.Iztu7lZ2"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 3\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.186.161.108 ca5251b1-e764-4a99-b045-843e1e865f9e 2019-09-09 16:42:10.613737 15274 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-09-09 16:46:03.265052998 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 189.186.161.108 68186549-f283-43e6-8dad-476568c865b6 2019-09-09 16:46:03.271882 15275 23 User \N \N 23 User \N update ---\nunique_session_id:\n- \n- uawcRGkxgzmTHqFyq2o3\n 3 \N 189.186.161.108 68186549-f283-43e6-8dad-476568c865b6 2019-09-09 16:46:03.286188 15276 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 01:05:54.686327000 Z\n- &1 2019-09-05 03:32:53.848778000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-09 17:26:09.925144698 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097607\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097607\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 134\n- 135\n 272 \N 187.149.63.76 987605ce-3ce6-4e44-a488-5a659a74369f 2019-09-09 17:26:09.933423 15277 10 User \N \N 10 User \N update ---\nunique_session_id:\n- PnY4B3spq6zUEQd9Qzhb\n- Bs7F5vd93gUbWubqgsGq\n 273 \N 187.149.63.76 987605ce-3ce6-4e44-a488-5a659a74369f 2019-09-09 17:26:09.950012 15278 416 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.903E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 903.0 187.149.63.76 9c2f185a-2d72-45dd-a1ec-34b72d0161c7 2019-09-09 17:26:16.593399 15279 417 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1117E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1117.0 189.186.161.108 878984ed-41b9-48e4-9eb7-1c0517aea2a6 2019-09-09 17:38:38.419978 15280 1054 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 417\namount: !ruby/object:BigDecimal 18:0.969E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.149E3\ntotal: !ruby/object:BigDecimal 18:0.82E3\nstatus: 0\ndate_sale: 2019-09-09\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-17\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.161.108 4b66e02b-b42f-4ebd-8f43-98ca719bac67 2019-09-09 17:40:19.820958 15281 769 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.161.108 4b66e02b-b42f-4ebd-8f43-98ca719bac67 2019-09-09 17:40:19.860601 15282 1054 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.161.108 1c4d9022-522b-4ae9-9378-2abd4515fafc 2019-09-09 17:40:57.175887 15283 1457 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 417\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.82E3\nmove_type: '1'\nsale_id: 1054\ncardnumber: 1111\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-17\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-17 189.186.161.108 1c4d9022-522b-4ae9-9378-2abd4515fafc 2019-09-09 17:40:57.199711 15284 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-08 00:42:33.695502000 Z\n- &1 2019-09-09 16:38:12.350378000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-09 18:09:46.991711750 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\nsign_in_count:\n- 593\n- 594\n 1188 \N 189.186.161.108 1e38e665-32ce-47e0-9095-8d8a95d85b0a 2019-09-09 18:09:46.998594 15285 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gDm6KauUH4mXyGr6NnUw\n- tqtpzMrg1cDKQozquHLF\n 1189 \N 189.186.161.108 1e38e665-32ce-47e0-9095-8d8a95d85b0a 2019-09-09 18:09:47.012454 15286 13 User \N \N 4 User \N update ---\nstatus:\n- active\n- 2\n 4 El usuario YARETZI fue desactivado. 189.186.161.108 f1c38e9a-8bcf-4ac7-a659-b0592b45b1a2 2019-09-09 18:12:31.286501 15287 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-09 16:38:12.350378000 Z\n- &1 2019-09-09 18:09:46.991711000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-09 18:15:12.127361649 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 594\n- 595\n 1190 \N 187.149.63.76 69c6cc21-884c-4554-9d0e-693c5ef52f49 2019-09-09 18:15:12.133497 15288 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tqtpzMrg1cDKQozquHLF\n- WgTdqhY2TJzmHeexN3Vq\n 1191 \N 187.149.63.76 69c6cc21-884c-4554-9d0e-693c5ef52f49 2019-09-09 18:15:12.146249 15289 13 Seller \N \N 4 User \N create ---\npointsale_id: 3\nname: MARICRUZ\nlast_name: BUSTAMANTE\nstatus: 1\n 1 El vendedor MARICRUZ BUSTAMANTE fue registrado. 187.149.63.76 0195c975-3aca-45dd-8d60-f278fd64cef0 2019-09-09 18:15:48.027012 15290 23 User \N \N 23 User \N update ---\ncurrent_sign_in_at:\n- 2019-09-09 16:46:03.265052000 Z\n- 2019-09-09 18:27:45.574458165 Z\nsign_in_count:\n- 1\n- 2\n 4 \N 189.186.161.108 8c244158-bf53-4b46-a0c9-ea03e529083b 2019-09-09 18:27:45.582251 15291 23 User \N \N 23 User \N update ---\nunique_session_id:\n- uawcRGkxgzmTHqFyq2o3\n- dCt32pNxsC73acCxbUJu\n 5 \N 189.186.161.108 8c244158-bf53-4b46-a0c9-ea03e529083b 2019-09-09 18:27:45.598959 15292 168 Customer \N \N 2 User \N create ---\nnick_name: MARITZA LOPEZ\nphone: "(667) 581-3266"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARITZA LOPEZ fue registrado. 187.149.63.76 683a5299-be6c-446a-91e9-f4bce048742b 2019-09-09 20:46:17.722246 15293 1055 Sale \N \N 2 User \N create ---\ncustomer_id: 168\nuser_id: 2\nopen_cash_register_id: 415\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-601\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 8bff72ce-cadb-428f-b3ff-2c248bad80aa 2019-09-09 20:46:40.276528 15294 808 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.63.76 8bff72ce-cadb-428f-b3ff-2c248bad80aa 2019-09-09 20:46:40.303701 15295 1055 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 3386c8d6-50dc-4990-ba2b-be7668ec2c02 2019-09-09 20:46:44.906934 15470 745 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.63.76 352d59f6-cf5d-4339-b552-11af62998d28 2019-09-11 17:36:32.501659 15296 1458 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 415\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1055\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-601\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-601 187.149.63.76 3386c8d6-50dc-4990-ba2b-be7668ec2c02 2019-09-09 20:46:44.930292 15297 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-09-05 03:32:53.848778000 Z\n- &1 2019-09-09 17:26:09.925144000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-09 21:07:26.011848938 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097607\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 135\n- 136\n 274 \N 187.149.63.76 f00638e4-cb3b-490e-92a9-081545a47265 2019-09-09 21:07:26.018245 15298 10 User \N \N 10 User \N update ---\nunique_session_id:\n- Bs7F5vd93gUbWubqgsGq\n- PcD_x8Ts9aeJACsTSYtW\n 275 \N 187.149.63.76 f00638e4-cb3b-490e-92a9-081545a47265 2019-09-09 21:07:26.032959 15299 1056 Sale \N \N 10 User \N create ---\ncustomer_id: 122\nuser_id: 10\nopen_cash_register_id: 416\namount: !ruby/object:BigDecimal 18:0.449E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.449E3\nstatus: 0\ndate_sale: 2019-09-09\nsaletype: 0\nseller_id: 4\nsale_code: PV2-V-436\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 541ded34-bf5a-450f-9db6-0644f4ff3d44 2019-09-09 21:08:03.707354 15300 722 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.63.76 541ded34-bf5a-450f-9db6-0644f4ff3d44 2019-09-09 21:08:03.735343 15301 835 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 189.186.161.108 edb724e6-1e22-4b43-9fd2-cdf0c1c3a744 2019-09-09 21:13:51.804731 15302 177 Transfer \N \N 23 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-09-09\nuser_id: 23\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.161.108 deb06961-4f73-4806-a931-73628f4e46e1 2019-09-09 21:13:58.326072 15303 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-09 18:09:46.991711000 Z\n- &1 2019-09-09 18:15:12.127361000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-09 23:23:30.516439937 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938243\n mask_addr: 4294967295\nsign_in_count:\n- 595\n- 596\n 1192 \N 200.68.150.195 1d47a23d-956c-4ae2-b06a-e81c23233d0d 2019-09-09 23:23:30.523881 15304 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WgTdqhY2TJzmHeexN3Vq\n- BsY5Njb236P3pRcYaNxs\n 1193 \N 200.68.150.195 1d47a23d-956c-4ae2-b06a-e81c23233d0d 2019-09-09 23:23:30.53989 15305 1057 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 417\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-09-09\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-18\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.161.108 0ceabc78-a001-4990-8caf-aee28049760f 2019-09-09 23:36:24.113936 15306 824 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.161.108 0ceabc78-a001-4990-8caf-aee28049760f 2019-09-09 23:36:24.140673 15307 1057 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.161.108 c0c17b9c-a06f-44cd-8e41-2c4cf46399f5 2019-09-09 23:36:35.26245 15308 1459 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 417\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 1057\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-18\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-18 189.186.161.108 c0c17b9c-a06f-44cd-8e41-2c4cf46399f5 2019-09-09 23:36:35.287908 15309 1058 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 417\namount: !ruby/object:BigDecimal 18:0.299E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.299E3\nstatus: 0\ndate_sale: 2019-09-09\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-19\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.161.108 2996e405-a9bd-49e6-9167-e528ecd1389a 2019-09-10 00:36:41.00428 15310 834 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.29E2\n- !ruby/object:BigDecimal 18:0.28E2\n 3 \N 189.186.161.108 2996e405-a9bd-49e6-9167-e528ecd1389a 2019-09-10 00:36:41.048085 15311 1058 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-19 cancelada. 189.186.161.108 7236e43d-50ae-400f-8d82-093d22879c3f 2019-09-10 00:39:01.866192 15312 834 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.28E2\n- !ruby/object:BigDecimal 18:0.29E2\n 4 \N 189.186.161.108 7236e43d-50ae-400f-8d82-093d22879c3f 2019-09-10 00:39:01.891992 15313 1059 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 417\namount: !ruby/object:BigDecimal 18:0.73248E3\ntax: !ruby/object:BigDecimal 18:0.1352E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.746E3\nstatus: 0\ndate_sale: 2019-09-09\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-20\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.161.108 7d633412-4133-494f-9328-536b7336656f 2019-09-10 00:44:43.54884 15314 834 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.29E2\n- !ruby/object:BigDecimal 18:0.28E2\n 5 \N 189.186.161.108 7d633412-4133-494f-9328-536b7336656f 2019-09-10 00:44:43.580235 15315 818 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.76E2\n- !ruby/object:BigDecimal 18:0.74E2\n 4 \N 189.186.161.108 7d633412-4133-494f-9328-536b7336656f 2019-09-10 00:44:43.608169 15316 875 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.161.108 7d633412-4133-494f-9328-536b7336656f 2019-09-10 00:44:43.646124 15317 1059 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.161.108 345f1261-47a2-4f11-a6f9-951f1cd45963 2019-09-10 00:44:50.469476 15428 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-10 19:45:48.462215000 Z\n- &1 2019-09-11 00:44:45.547992000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-11 01:59:52.217492073 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183130269\n mask_addr: 4294967295\nsign_in_count:\n- 603\n- 604\n 1208 \N 189.186.182.157 441e0456-17c3-448b-bb35-40f9c9c22645 2019-09-11 01:59:52.226175 15318 1460 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 417\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.746E3\nmove_type: '1'\nsale_id: 1059\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-20\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.54E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-20 189.186.161.108 345f1261-47a2-4f11-a6f9-951f1cd45963 2019-09-10 00:44:50.501935 15319 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-09 18:15:12.127361000 Z\n- &1 2019-09-09 23:23:30.516439000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-10 00:53:36.375116481 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938243\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 596\n- 597\n 1194 \N 187.149.63.76 f1500e28-2eef-4cf2-b113-0f9c36518701 2019-09-10 00:53:36.384189 15320 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BsY5Njb236P3pRcYaNxs\n- bpAsi9XcbP9SmvbegZUN\n 1195 \N 187.149.63.76 f1500e28-2eef-4cf2-b113-0f9c36518701 2019-09-10 00:53:36.401885 15321 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 22:53:12.634920000 Z\n- &1 2019-09-05 03:30:18.636430000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-10 00:57:08.815570914 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097607\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097607\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\nsign_in_count:\n- 24\n- 25\n 50 \N 189.186.161.108 f6411257-6d2d-4f1a-9241-29381723adc8 2019-09-10 00:57:08.822813 15322 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ucHeX3Xzs_pxs4KFghoe\n- Tyq6ftwdSrDCdNznCa2c\n 51 \N 189.186.161.108 f6411257-6d2d-4f1a-9241-29381723adc8 2019-09-10 00:57:08.842795 15323 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-09 23:23:30.516439000 Z\n- &1 2019-09-10 00:53:36.375116000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-10 00:58:09.191784662 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938243\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\nsign_in_count:\n- 597\n- 598\n 1196 \N 189.186.161.108 55bd6fb5-e1a3-45bb-a209-13ecc1ea14e1 2019-09-10 00:58:09.198931 15324 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bpAsi9XcbP9SmvbegZUN\n- TrRnEqXb-xs1mJV7FHDx\n 1197 \N 189.186.161.108 55bd6fb5-e1a3-45bb-a209-13ecc1ea14e1 2019-09-10 00:58:09.21599 15325 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-09-09 17:26:09.925144000 Z\n- &1 2019-09-09 21:07:26.011848000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-10 00:59:37.550358808 Z\nsign_in_count:\n- 136\n- 137\n 276 \N 187.149.63.76 a0c06f81-25c4-4b6e-8586-d093ed0f1053 2019-09-10 00:59:37.556636 15326 10 User \N \N 10 User \N update ---\nunique_session_id:\n- PcD_x8Ts9aeJACsTSYtW\n- zzYZ1r-Pf6ZiCC8DXqZc\n 277 \N 187.149.63.76 a0c06f81-25c4-4b6e-8586-d093ed0f1053 2019-09-10 00:59:37.571813 15327 179 Expense \N \N 10 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 416\nquantity: !ruby/object:BigDecimal 18:0.2E2\nstatus: 1\nobservations: RECARGA DE CEL DE SUO\nexpense_date: 2019-09-09\nexpense_code: PV2-E-40\n 1 Egreso por 20.0 registrado 187.149.63.76 5f294db0-dc02-4de4-ac66-55af6050cd7c 2019-09-10 01:03:23.508788 15328 1461 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 416\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 179\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.63.76 5f294db0-dc02-4de4-ac66-55af6050cd7c 2019-09-10 01:03:23.541745 15329 415 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 416\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.2E2\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.944E3\nphysical_cash: !ruby/object:BigDecimal 18:0.944E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.63.76 5cc0e433-d2a1-469d-9ed5-9c35e879f397 2019-09-10 01:05:29.540217 15330 416 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 5cc0e433-d2a1-469d-9ed5-9c35e879f397 2019-09-10 01:05:29.558241 15331 416 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 415\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.699E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.762E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1462E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.63.76 646d97d3-fe7f-4130-9970-bc85a1a0d2cf 2019-09-10 01:08:37.694925 15332 415 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 646d97d3-fe7f-4130-9970-bc85a1a0d2cf 2019-09-10 01:08:37.709419 15333 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-05 03:30:18.636430000 Z\n- &1 2019-09-10 00:57:08.815570000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-10 01:27:14.014672862 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097607\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\nsign_in_count:\n- 25\n- 26\n 52 \N 189.186.161.108 4d1f90a4-4778-4ea1-93fc-eba7e65d9475 2019-09-10 01:27:14.022686 15334 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Tyq6ftwdSrDCdNznCa2c\n- GJ9RgP7PeNWQjpLCkQGd\n 53 \N 189.186.161.108 4d1f90a4-4778-4ea1-93fc-eba7e65d9475 2019-09-10 01:27:14.042323 15335 169 Customer \N \N 18 User \N create ---\nnick_name: NORMA DE OSUNA\nphone: "(667) 230-0648"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente NORMA DE OSUNA fue registrado. 189.186.161.108 5fe9d5e8-45a4-4bdb-96dc-8872987b9fdc 2019-09-10 01:29:41.650813 15336 1060 Sale \N \N 18 User \N create ---\ncustomer_id: 169\nuser_id: 18\nopen_cash_register_id: 417\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-09\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-21\nexpiration_date: 2019-10-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.161.108 5bab4f5f-73cd-4769-aa02-d359c56d60b0 2019-09-10 01:29:59.937389 15337 812 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.18E2\n- !ruby/object:BigDecimal 18:0.17E2\n 2 \N 189.186.161.108 5bab4f5f-73cd-4769-aa02-d359c56d60b0 2019-09-10 01:29:59.964273 15429 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kCpD-xbY4xYHu_iT3-aM\n- xSv1TusQnqnBPu8XhFzR\n 1209 \N 189.186.182.157 441e0456-17c3-448b-bb35-40f9c9c22645 2019-09-11 01:59:52.244207 15338 1462 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 417\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.14E3\nmove_type: '1'\nsale_id: 1060\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-21\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.6E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-21 189.186.161.108 0778a682-08a5-4f1f-981f-38c90ae23b56 2019-09-10 01:30:13.425247 15339 1462 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 417\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.14E3\nmove_type: '1'\nsale_id: 1060\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-21\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.6E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.161.108 664198ab-0db7-4f39-a527-5ae38d3901a7 2019-09-10 01:30:17.476976 15340 1463 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 417\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1060\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-21\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-21 189.186.161.108 401909f0-d435-499c-800c-003d02325d1a 2019-09-10 01:30:29.526301 15341 1060 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.161.108 705a4d4a-7a3d-43af-86e3-2101f642af15 2019-09-10 01:30:31.486537 15342 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-10 00:53:36.375116000 Z\n- &1 2019-09-10 00:58:09.191784000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-10 01:51:27.207107624 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\nsign_in_count:\n- 598\n- 599\n 1198 \N 189.186.161.108 e76c7ca0-238a-499c-85f6-8cadc5b30943 2019-09-10 01:51:27.214528 15343 4 User \N \N 4 User \N update ---\nunique_session_id:\n- TrRnEqXb-xs1mJV7FHDx\n- xTk4BmWe5YUoUiV_qyL2\n 1199 \N 189.186.161.108 e76c7ca0-238a-499c-85f6-8cadc5b30943 2019-09-10 01:51:27.232333 15344 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-10 00:57:08.815570000 Z\n- &1 2019-09-10 01:27:14.014672000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-10 02:27:07.070232895 Z\nsign_in_count:\n- 26\n- 27\n 54 \N 189.186.161.108 41f2fc3e-e6b3-410f-9a46-91f16763b5e6 2019-09-10 02:27:07.081475 15345 18 User \N \N 18 User \N update ---\nunique_session_id:\n- GJ9RgP7PeNWQjpLCkQGd\n- MsJpxFr98zv7CKDP2j8F\n 55 \N 189.186.161.108 41f2fc3e-e6b3-410f-9a46-91f16763b5e6 2019-09-10 02:27:07.101132 15346 170 Customer \N \N 18 User \N create ---\nnick_name: VERONICA GARCIA\nphone: "(667) 244-4452"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente VERONICA GARCIA fue registrado. 189.186.161.108 19d12934-0c4e-49e3-b5d6-c9ad024b709f 2019-09-10 02:27:38.641473 15347 1061 Sale \N \N 18 User \N create ---\ncustomer_id: 170\nuser_id: 18\nopen_cash_register_id: 417\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-09-09\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-22\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.161.108 dfcbf230-6b0d-496e-8c56-6646aa9461fa 2019-09-10 02:28:00.995224 15348 856 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.161.108 dfcbf230-6b0d-496e-8c56-6646aa9461fa 2019-09-10 02:28:01.022066 15349 1061 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-22 cancelada. 189.186.161.108 a3e2cb57-bfc9-401a-866b-8706592abf50 2019-09-10 02:28:18.79187 15350 856 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.161.108 a3e2cb57-bfc9-401a-866b-8706592abf50 2019-09-10 02:28:18.819494 15351 1062 Sale \N \N 18 User \N create ---\ncustomer_id: 170\nuser_id: 18\nopen_cash_register_id: 417\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-09-09\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-23\nexpiration_date: 2019-10-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.161.108 85e16c27-540b-4357-b827-d0eb97a9e48f 2019-09-10 02:28:40.604904 15352 856 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.161.108 85e16c27-540b-4357-b827-d0eb97a9e48f 2019-09-10 02:28:40.632024 15353 1464 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 417\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1062\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-23\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-23 189.186.161.108 dffc104a-24f1-43d5-8e82-1a0fad955a8b 2019-09-10 02:28:56.020491 15354 1062 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.161.108 42db7f7a-b749-4826-a16c-1113d40f9f5a 2019-09-10 02:28:58.682198 15355 1063 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 417\namount: !ruby/object:BigDecimal 18:0.161869E4\ntax: !ruby/object:BigDecimal 18:0.2731E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1646E4\nstatus: 0\ndate_sale: 2019-09-09\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-24\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.161.108 1da94041-176f-4ff7-b1e4-ebd7fc04bdb8 2019-09-10 02:51:52.041784 15356 815 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 2 \N 189.186.161.108 1da94041-176f-4ff7-b1e4-ebd7fc04bdb8 2019-09-10 02:51:52.069934 15357 774 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.161.108 1da94041-176f-4ff7-b1e4-ebd7fc04bdb8 2019-09-10 02:51:52.093936 15358 840 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.36E2\n- !ruby/object:BigDecimal 18:0.34E2\n 2 \N 189.186.161.108 1da94041-176f-4ff7-b1e4-ebd7fc04bdb8 2019-09-10 02:51:52.116122 15359 1063 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.161.108 8b968687-8ca9-4dc3-8dc2-e7599c3f3026 2019-09-10 02:52:01.884834 15430 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-11 00:44:45.547992000 Z\n- &1 2019-09-11 01:59:52.217492000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-11 04:10:23.758839304 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183130269\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\nsign_in_count:\n- 604\n- 605\n 1210 \N 189.186.2.140 474e211d-6e98-4ac6-9987-abb5fd8a2f24 2019-09-11 04:10:23.768305 15360 1465 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 417\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1646E4\nmove_type: '1'\nsale_id: 1063\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-24\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.354E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-24 189.186.161.108 8b968687-8ca9-4dc3-8dc2-e7599c3f3026 2019-09-10 02:52:01.90623 15361 417 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 417\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.4081E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.3444E4\ncash_fund: !ruby/object:BigDecimal 18:0.934E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4378E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.161.108 89895b00-a2c0-4e02-a754-ad2bf6764d30 2019-09-10 03:10:59.667827 15362 417 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.161.108 89895b00-a2c0-4e02-a754-ad2bf6764d30 2019-09-10 03:10:59.687564 15363 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-10 01:27:14.014672000 Z\n- &1 2019-09-10 02:27:07.070232000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-10 04:42:25.566572782 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\nsign_in_count:\n- 27\n- 28\n 56 \N 189.186.2.140 b298a267-5467-4341-bce0-a4fd45639038 2019-09-10 04:42:25.575062 15364 18 User \N \N 18 User \N update ---\nunique_session_id:\n- MsJpxFr98zv7CKDP2j8F\n- xe1agvzmCpy8DR56TGjS\n 57 \N 189.186.2.140 b298a267-5467-4341-bce0-a4fd45639038 2019-09-10 04:42:25.58915 15365 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-06 16:59:42.854488000 Z\n- &1 2019-09-09 16:09:03.758147000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-10 16:19:52.015352407 Z\nsign_in_count:\n- 313\n- 314\n 631 \N 187.149.63.76 4b911103-a7e4-4702-b5c0-485c881dfa8f 2019-09-10 16:19:52.055489 15366 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Qy_HtUzqwpae3X_SqveN\n- K6-ycWCYLyMPhGPyHfkR\n 632 \N 187.149.63.76 4b911103-a7e4-4702-b5c0-485c881dfa8f 2019-09-10 16:19:52.087332 15367 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-10 00:58:09.191784000 Z\n- &1 2019-09-10 01:51:27.207107000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-10 16:43:09.871502191 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 599\n- 600\n 1200 \N 187.149.63.76 9b6baac4-7a05-4533-9afe-bba321542ae2 2019-09-10 16:43:09.87883 15368 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xTk4BmWe5YUoUiV_qyL2\n- sJ37BDkF45scp4yNGcPV\n 1201 \N 187.149.63.76 9b6baac4-7a05-4533-9afe-bba321542ae2 2019-09-10 16:43:09.895021 15369 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-10 02:27:07.070232000 Z\n- &1 2019-09-10 04:42:25.566572000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-10 17:04:36.980168564 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183130269\n mask_addr: 4294967295\nsign_in_count:\n- 28\n- 29\n 58 \N 189.186.182.157 b86ffd6c-3bfc-4ad8-b286-c3ba940d6905 2019-09-10 17:04:37.013711 15370 18 User \N \N 18 User \N update ---\nunique_session_id:\n- xe1agvzmCpy8DR56TGjS\n- xvawaXX5m-gR9TEeUyiX\n 59 \N 189.186.182.157 b86ffd6c-3bfc-4ad8-b286-c3ba940d6905 2019-09-10 17:04:37.037352 15371 14 Seller \N \N 4 User \N create ---\npointsale_id: 3\nname: SAMANTHA\nlast_name: URCISICHI\nstatus: 1\n 1 El vendedor SAMANTHA URCISICHI fue registrado. 187.149.63.76 5c1fe38a-8505-4031-9078-afd90a13ad0e 2019-09-10 17:06:32.420257 15372 18 User \N \N 4 User \N update ---\nfirst_name:\n- SAMNATHA\n- SAMANTHA\n 60 Usuario SAMANTHACOMERCIAL ha sido modificado. 187.149.63.76 5c7fb206-7a2d-464b-a186-15da84f82241 2019-09-10 17:07:23.85467 15373 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-10 04:42:25.566572000 Z\n- &1 2019-09-10 17:04:36.980168000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-10 17:08:30.557349211 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183130269\n mask_addr: 4294967295\nsign_in_count:\n- 29\n- 30\n 61 \N 189.186.182.157 0b14c4f1-853b-4b4f-b82b-d07df1d5e26f 2019-09-10 17:08:30.566995 15374 18 User \N \N 18 User \N update ---\nunique_session_id:\n- xvawaXX5m-gR9TEeUyiX\n- o6U_HtZzXx8R1B31ix15\n 62 \N 189.186.182.157 0b14c4f1-853b-4b4f-b82b-d07df1d5e26f 2019-09-10 17:08:30.586831 15375 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-10 17:04:36.980168000 Z\n- &1 2019-09-10 17:08:30.557349000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-10 17:17:18.023486886 Z\nsign_in_count:\n- 30\n- 31\n 63 \N 189.186.182.157 c08903ce-6694-4359-8a09-1b689a546fee 2019-09-10 17:17:18.029276 15376 18 User \N \N 18 User \N update ---\nunique_session_id:\n- o6U_HtZzXx8R1B31ix15\n- WVSrt-DU6sJJ2rVhhUNN\n 64 \N 189.186.182.157 c08903ce-6694-4359-8a09-1b689a546fee 2019-09-10 17:17:18.041923 15377 418 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.934E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 934.0 189.186.182.157 70c0677c-fd3e-464c-9b39-c7a3cb733308 2019-09-10 17:18:04.143915 15378 1064 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 418\namount: !ruby/object:BigDecimal 18:0.84397E3\ntax: !ruby/object:BigDecimal 18:0.13504E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.97901E3\nstatus: 0\ndate_sale: 2019-09-10\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-25\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.182.157 35801fa9-5e07-477f-a839-00869406202d 2019-09-10 17:18:57.45534 15379 972 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.182.157 35801fa9-5e07-477f-a839-00869406202d 2019-09-10 17:18:57.48395 15380 1064 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.182.157 84bf2591-310e-425a-97fb-4e962f715880 2019-09-10 17:19:02.94067 15381 1466 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 418\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.97901E3\nmove_type: '1'\nsale_id: 1064\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-25\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.2099E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-25 189.186.182.157 84bf2591-310e-425a-97fb-4e962f715880 2019-09-10 17:19:02.970793 15431 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xSv1TusQnqnBPu8XhFzR\n- jxxeQ4GrC4b7ZfQgQf_X\n 1211 \N 189.186.2.140 474e211d-6e98-4ac6-9987-abb5fd8a2f24 2019-09-11 04:10:23.784215 15471 745 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.63.76 44997213-eb75-4261-b8cb-d52e25976e8f 2019-09-11 17:36:40.606501 15382 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-10 01:51:27.207107000 Z\n- &1 2019-09-10 16:43:09.871502000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-10 17:29:30.861825556 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183130269\n mask_addr: 4294967295\nsign_in_count:\n- 600\n- 601\n 1202 \N 189.186.182.157 46cda8ae-c20f-446d-a218-8d47cab42d0f 2019-09-10 17:29:30.873204 15383 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sJ37BDkF45scp4yNGcPV\n- fBQeg8aYFrT2wW_J-9XX\n 1203 \N 189.186.182.157 46cda8ae-c20f-446d-a218-8d47cab42d0f 2019-09-10 17:29:30.894143 15384 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-09 16:46:03.265052000 Z\n- &1 2019-09-09 18:27:45.574458000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-10 18:05:52.165520243 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183130269\n mask_addr: 4294967295\nsign_in_count:\n- 2\n- 3\n 6 \N 189.186.182.157 1668037e-fde1-438e-a227-69afd34ff9c6 2019-09-10 18:05:52.172952 15385 23 User \N \N 23 User \N update ---\nunique_session_id:\n- dCt32pNxsC73acCxbUJu\n- D3jT_yZMJ5vzf8LyzQVD\n 7 \N 189.186.182.157 1668037e-fde1-438e-a227-69afd34ff9c6 2019-09-10 18:05:52.187381 15386 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-09-09 21:07:26.011848000 Z\n- &1 2019-09-10 00:59:37.550358000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-10 18:29:33.424399888 Z\nsign_in_count:\n- 137\n- 138\n 278 \N 187.149.63.76 f6f8d19a-72d1-4747-a1d0-7222b1d930a9 2019-09-10 18:29:33.430307 15387 10 User \N \N 10 User \N update ---\nunique_session_id:\n- zzYZ1r-Pf6ZiCC8DXqZc\n- hyTjyCcnGqoUoPBBMz7E\n 279 \N 187.149.63.76 f6f8d19a-72d1-4747-a1d0-7222b1d930a9 2019-09-10 18:29:33.447731 15388 419 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.944E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 944.0 187.149.63.76 3da85bd8-4f41-4a42-9263-d227eed0df2f 2019-09-10 18:29:36.90718 15389 1467 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 419\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 986\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-412 187.149.63.76 5336cb55-932d-4ea2-bfa4-3f8389753d0e 2019-09-10 18:30:07.706244 15390 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-10 16:43:09.871502000 Z\n- &1 2019-09-10 17:29:30.861825000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-10 19:45:48.462215779 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183130269\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183130269\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\nsign_in_count:\n- 601\n- 602\n 1204 \N 189.186.2.140 85d438a9-cb81-478c-a074-b42e43683ef0 2019-09-10 19:45:48.470461 15391 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fBQeg8aYFrT2wW_J-9XX\n- gBJEsdcWzmCbn2yLedjE\n 1205 \N 189.186.2.140 85d438a9-cb81-478c-a074-b42e43683ef0 2019-09-10 19:45:48.487271 15392 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 21:45:05.986302000 Z\n- &1 2019-08-31 23:01:42.826242000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-10 21:41:53.241541339 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124854\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 72\n- 73\n 146 \N 187.149.63.76 ab623c5f-d115-4ce0-a0d4-01580cf79ad2 2019-09-10 21:41:53.250014 15393 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 98TgCQmVUMHNLJE1auEW\n- To_s3r4e9PZMeeroVwj9\n 147 \N 187.149.63.76 ab623c5f-d115-4ce0-a0d4-01580cf79ad2 2019-09-10 21:41:53.266424 15394 726 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 187.149.63.76 8a8a52a6-3a6d-480b-a10e-c4ebcfc73643 2019-09-10 21:48:00.178697 15395 202 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.63.76 8a8a52a6-3a6d-480b-a10e-c4ebcfc73643 2019-09-10 21:48:00.200528 15396 202 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.63.76 bccc5df9-c7f7-4082-92c5-9a3b7079a90d 2019-09-10 21:48:03.645616 15397 783 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.182.157 a824f4c2-3382-4334-b896-b07736a89538 2019-09-10 22:17:28.98204 15398 178 Transfer \N \N 23 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-09-10\nuser_id: 23\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.182.157 26783c07-a672-4bc1-885e-e0a9aabc5bc0 2019-09-10 22:17:38.27389 15399 178 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-10\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.63.76 85931b5b-471e-4849-b6ab-ca34396df547 2019-09-10 22:20:47.831255 15400 999 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 660\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 85931b5b-471e-4849-b6ab-ca34396df547 2019-09-10 22:20:47.849905 15401 177 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-10\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.63.76 609a11cc-7c32-4d95-99b2-39f5b69e2424 2019-09-10 22:20:56.298945 15402 808 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 187.149.63.76 609a11cc-7c32-4d95-99b2-39f5b69e2424 2019-09-10 22:20:56.316028 15403 420 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.762E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 762.0 187.149.63.76 118de006-e79a-460b-91aa-4d06ef4e4eb6 2019-09-10 22:21:19.778245 15404 1065 Sale \N \N 2 User \N create ---\ncustomer_id: 62\nuser_id: 2\nopen_cash_register_id: 420\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-09-10\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-602\nexpiration_date: 2019-10-15\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 1b8325c4-0f1f-403d-8d03-bc8fceaf1b79 2019-09-10 22:22:16.499594 15405 999 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.63.76 1b8325c4-0f1f-403d-8d03-bc8fceaf1b79 2019-09-10 22:22:16.524246 15406 1468 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 420\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1065\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-602\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-602 187.149.63.76 8a7e1e39-b803-48c3-a77d-8860592bdfc8 2019-09-10 22:22:32.715554 15407 1065 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.63.76 87d33b8a-2101-4006-ac91-fb7aa69ba51a 2019-09-10 22:22:35.291213 15408 12 ProductsReturn \N \N 10 User \N create ---\nsale_id: 1032\nuser_id: 10\nreturn_code: PV2-D-6\npointsale_id: 2\nnew_amount: !ruby/object:BigDecimal 18:0.799E3\nreturned_amount: !ruby/object:BigDecimal 18:0.719E3\ndifference_amount: !ruby/object:BigDecimal 18:0.8E2\nis_money_returned: false\n 1 devolución PV2-D-6 creada. 187.149.63.76 ecd4cc94-78bd-4748-8e0b-8ce164e023f5 2019-09-10 22:35:09.218242 15409 754 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 187.149.63.76 ecd4cc94-78bd-4748-8e0b-8ce164e023f5 2019-09-10 22:35:09.246293 15410 755 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.63.76 ecd4cc94-78bd-4748-8e0b-8ce164e023f5 2019-09-10 22:35:09.270734 15411 1469 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 419\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8E2\nmove_type: '1'\nsale_id: 1032\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.12E3\nproducts_return_id: 12\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV2-D-6 187.149.63.76 704a19c2-748e-45f3-9748-9b2827650701 2019-09-10 22:35:40.154669 15412 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-08-31 23:01:42.826242000 Z\n- &1 2019-09-10 21:41:53.241541000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-10 22:43:52.034083242 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124854\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 73\n- 74\n 148 \N 187.149.63.76 51db70b1-b4a2-4569-8f34-fb1307599b53 2019-09-10 22:43:52.040787 15413 1 User \N \N 1 User \N update ---\nunique_session_id:\n- To_s3r4e9PZMeeroVwj9\n- MUZxoeWxR4Fiik7pykxU\n 149 \N 187.149.63.76 51db70b1-b4a2-4569-8f34-fb1307599b53 2019-09-10 22:43:52.054415 15414 1470 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 419\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 935\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SBD\n 1 movimiento de efectivo por venta con folio PV2-V-395 187.149.63.76 e43d8da6-ed5b-4ff2-9258-17e7e8471159 2019-09-10 23:06:45.321116 15415 935 Sale \N \N 10 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.63.76 09d861bc-9121-42ac-9fb7-2704939ad654 2019-09-10 23:06:49.223058 15416 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-10 17:29:30.861825000 Z\n- &1 2019-09-10 19:45:48.462215000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-11 00:44:45.547992986 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183130269\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183130269\n mask_addr: 4294967295\nsign_in_count:\n- 602\n- 603\n 1206 \N 189.186.182.157 daf4994a-1d82-4c88-81ce-d8648c2392a6 2019-09-11 00:44:45.560237 15417 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gBJEsdcWzmCbn2yLedjE\n- kCpD-xbY4xYHu_iT3-aM\n 1207 \N 189.186.182.157 daf4994a-1d82-4c88-81ce-d8648c2392a6 2019-09-11 00:44:45.586321 15418 180 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 420\nquantity: !ruby/object:BigDecimal 18:0.1E2\nstatus: 1\nobservations: cooperacion a señora rara\nexpense_date: 2019-09-10\nexpense_code: PV1-E-139\n 1 Egreso por 10.0 registrado 187.149.63.76 3ea9120c-2159-4863-9b79-439c334bfac4 2019-09-11 01:12:06.186286 15419 1471 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 420\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 180\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.63.76 3ea9120c-2159-4863-9b79-439c334bfac4 2019-09-11 01:12:06.219938 15420 418 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 420\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5E3\namount_out: !ruby/object:BigDecimal 18:0.1E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.752E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1252E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.63.76 beb2608c-9e8e-4ac8-976d-21842379b03a 2019-09-11 01:12:51.777266 15421 420 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 beb2608c-9e8e-4ac8-976d-21842379b03a 2019-09-11 01:12:51.791047 15422 419 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 419\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.879E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.1024E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1524E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.63.76 0692accc-a491-4a7a-a3f9-895d5854415e 2019-09-11 01:37:22.72305 15423 419 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 0692accc-a491-4a7a-a3f9-895d5854415e 2019-09-11 01:37:22.739705 15424 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-10 17:08:30.557349000 Z\n- &1 2019-09-10 17:17:18.023486000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-11 01:51:12.519826856 Z\nsign_in_count:\n- 31\n- 32\n 65 \N 189.186.182.157 cdeaa39e-3765-41e4-b9e0-0f17235d446f 2019-09-11 01:51:12.539206 15425 18 User \N \N 18 User \N update ---\nunique_session_id:\n- WVSrt-DU6sJJ2rVhhUNN\n- 4dxitQT_ov9qopaCS96R\n 66 \N 189.186.182.157 cdeaa39e-3765-41e4-b9e0-0f17235d446f 2019-09-11 01:51:12.560053 15426 420 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 418\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.97901E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.693E3\ncash_fund: !ruby/object:BigDecimal 18:0.122001E4\nphysical_cash: !ruby/object:BigDecimal 18:0.191301E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.182.157 a8f2a3a4-a6da-41ef-a512-cee1c2a6c0ba 2019-09-11 01:59:24.307725 15427 418 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.182.157 a8f2a3a4-a6da-41ef-a512-cee1c2a6c0ba 2019-09-11 01:59:24.324602 15432 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-11 01:59:52.217492000 Z\n- &1 2019-09-11 04:10:23.758839000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-11 15:50:22.319948050 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183130269\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 605\n- 606\n 1212 \N 187.149.63.76 f0372404-90c9-468e-b331-9586c93faadd 2019-09-11 15:50:22.357329 15433 4 User \N \N 4 User \N update ---\nunique_session_id:\n- jxxeQ4GrC4b7ZfQgQf_X\n- UMJMsxddBjrKtqx6xBrm\n 1213 \N 187.149.63.76 f0372404-90c9-468e-b331-9586c93faadd 2019-09-11 15:50:22.389581 15434 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-08 00:04:03.280135000 Z\n- &1 2019-09-08 01:08:05.372515000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-11 17:07:08.542305367 Z\nsign_in_count:\n- 12\n- 13\n 29 \N 187.149.63.76 a8fd0e76-9f02-4c8f-aeae-a6607f1bac49 2019-09-11 17:07:08.550689 15435 8 User \N \N 8 User \N update ---\nunique_session_id:\n- g7x3NroxvTyW7sYYs7UK\n- 6zfqx7QkV2WG-q_DHy5p\n 30 \N 187.149.63.76 a8fd0e76-9f02-4c8f-aeae-a6607f1bac49 2019-09-11 17:07:08.568118 15436 421 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.1024E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1024.0 187.149.63.76 b2c8d82f-9c39-4907-a27f-71d12e2abbb1 2019-09-11 17:07:27.960836 15437 1066 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 421\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2997E3\ntotal: !ruby/object:BigDecimal 18:0.6993E3\nstatus: 0\ndate_sale: 2019-09-11\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-437\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 ad6612a4-ced5-4ddd-af03-ac58700d3edf 2019-09-11 17:08:12.388245 15438 503 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.63.76 ad6612a4-ced5-4ddd-af03-ac58700d3edf 2019-09-11 17:08:12.421306 15439 1066 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 701e9472-01ed-435d-8b04-58bd6d825a6f 2019-09-11 17:08:41.546958 15440 1472 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 421\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6993E3\nmove_type: '1'\nsale_id: 1066\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-437\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.1007E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-437 187.149.63.76 701e9472-01ed-435d-8b04-58bd6d825a6f 2019-09-11 17:08:41.58594 15441 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-09 16:09:03.758147000 Z\n- &1 2019-09-10 16:19:52.015352000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-11 17:24:07.759378954 Z\nsign_in_count:\n- 314\n- 315\n 633 \N 187.149.63.76 c35bcb84-69ae-4023-a967-b4a654dcb919 2019-09-11 17:24:07.766126 15442 2 User \N \N 2 User \N update ---\nunique_session_id:\n- K6-ycWCYLyMPhGPyHfkR\n- wCGKRbQqEJFNKegM8yDc\n 634 \N 187.149.63.76 c35bcb84-69ae-4023-a967-b4a654dcb919 2019-09-11 17:24:07.780885 15443 58 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 5 \N 187.149.63.76 646d73a1-3d3c-430c-958e-63ef77839a95 2019-09-11 17:26:30.951547 15444 58 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 187.149.63.76 d399748a-3949-4fb3-acbf-eb34a9d52790 2019-09-11 17:26:37.842422 15445 810 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.63.76 965c942b-3c46-4e12-8e06-997eddd9443f 2019-09-11 17:26:55.13241 15446 810 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.63.76 16a76db0-3400-4b37-9c92-fc1834579f1d 2019-09-11 17:27:10.339474 15447 534 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.63.76 a09f77f1-fef3-4c20-9a00-248a03d264ae 2019-09-11 17:27:24.711564 15448 534 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.63.76 4d603de2-af42-438a-86fa-8f43fac1c479 2019-09-11 17:27:28.825267 15449 147 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.63.76 b472b338-513f-4d1f-949e-d02e75d7469b 2019-09-11 17:27:59.010679 15450 147 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.63.76 a7f1de3d-c008-45cf-ba3e-9773b0c18e11 2019-09-11 17:28:14.584329 15451 668 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.63.76 1569c1a1-4a68-428b-a6ee-30b6604a0832 2019-09-11 17:28:44.315616 15452 668 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.63.76 2938bb2f-7ef1-402b-bfb4-09f012193bb8 2019-09-11 17:29:03.662795 15453 553 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.63.76 37323c4f-f672-459c-b19a-5f0688833e2c 2019-09-11 17:29:28.491899 15454 553 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.63.76 99edf685-05f5-454a-bd14-13bd8396a649 2019-09-11 17:29:31.596492 15455 695 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.63.76 8fd4b1eb-42ad-4321-84c1-7dea277311be 2019-09-11 17:30:10.821083 15456 695 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.63.76 f22d940f-7c49-4ddf-a163-14368bd97a34 2019-09-11 17:30:13.877842 15457 60 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.63.76 12560190-0c1f-44c4-b95b-5de0a40db02f 2019-09-11 17:30:35.309611 15458 60 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.63.76 76cf2243-d6bc-4ca5-bce2-161d2799e050 2019-09-11 17:30:40.224846 15459 740 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.63.76 661fc81a-4724-4714-aa2b-1cdc06457c43 2019-09-11 17:31:15.851969 15460 740 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.63.76 6c4a771d-8797-4f40-ac0e-0fb90d12762b 2019-09-11 17:31:19.96037 15461 700 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.63.76 1c42f650-e66f-4683-9878-010f92c1c887 2019-09-11 17:31:38.115492 15472 179 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-09-11\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.63.76 f2a04bcb-ab0b-407d-aff2-438f9d678247 2019-09-11 17:36:41.518529 15473 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-11 04:10:23.758839000 Z\n- &1 2019-09-11 15:50:22.319948000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-11 17:39:17.652349198 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 606\n- 607\n 1214 \N 187.149.63.76 02a1b31b-3616-465a-bc7b-49c4d6626553 2019-09-11 17:39:17.663466 15474 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UMJMsxddBjrKtqx6xBrm\n- hY9e3pp9x7fpZ-sttjkB\n 1215 \N 187.149.63.76 02a1b31b-3616-465a-bc7b-49c4d6626553 2019-09-11 17:39:17.683643 15475 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-08 01:08:05.372515000 Z\n- &1 2019-09-11 17:07:08.542305000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-11 17:39:56.458719894 Z\nsign_in_count:\n- 13\n- 14\n 31 \N 187.149.63.76 e0d1214c-9623-4a10-8d8c-c25d0ddec592 2019-09-11 17:39:56.464429 15476 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 6zfqx7QkV2WG-q_DHy5p\n- 2_xuxmzBdiJLyqWvVxZs\n 32 \N 187.149.63.76 e0d1214c-9623-4a10-8d8c-c25d0ddec592 2019-09-11 17:39:56.478001 15477 1067 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 421\namount: !ruby/object:BigDecimal 18:0.52293E3\ntax: !ruby/object:BigDecimal 18:0.6607E2\ndiscount: !ruby/object:BigDecimal 18:0.11E3\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-09-11\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-438\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 0f012e00-f688-4d4a-84b1-103983f5a71d 2019-09-11 17:45:02.144025 15478 292 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 187.149.63.76 0f012e00-f688-4d4a-84b1-103983f5a71d 2019-09-11 17:45:02.171487 15479 1067 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 0cf188e3-3f18-4952-b192-a634d8922b5d 2019-09-11 17:45:17.150511 15480 1473 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 421\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.479E3\nmove_type: '1'\nsale_id: 1067\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-438\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.48E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-438 187.149.63.76 0cf188e3-3f18-4952-b192-a634d8922b5d 2019-09-11 17:45:17.179043 15481 179 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-11\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.63.76 65616640-1380-4194-9f8c-bda67e8d5c69 2019-09-11 17:48:39.020687 15482 1000 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 507\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 65616640-1380-4194-9f8c-bda67e8d5c69 2019-09-11 17:48:39.044229 15483 579 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.63.76 65616640-1380-4194-9f8c-bda67e8d5c69 2019-09-11 17:48:39.06581 15484 1001 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 624\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 65616640-1380-4194-9f8c-bda67e8d5c69 2019-09-11 17:48:39.093984 15485 517 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 187.149.63.76 65616640-1380-4194-9f8c-bda67e8d5c69 2019-09-11 17:48:39.131162 15486 1002 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 593\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 65616640-1380-4194-9f8c-bda67e8d5c69 2019-09-11 17:48:39.155962 15487 1003 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 619\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 65616640-1380-4194-9f8c-bda67e8d5c69 2019-09-11 17:48:39.183631 15488 1004 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 62\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 65616640-1380-4194-9f8c-bda67e8d5c69 2019-09-11 17:48:39.21067 15489 573 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.63.76 65616640-1380-4194-9f8c-bda67e8d5c69 2019-09-11 17:48:39.237523 15490 550 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.63.76 65616640-1380-4194-9f8c-bda67e8d5c69 2019-09-11 17:48:39.262795 15491 1005 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 149\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 65616640-1380-4194-9f8c-bda67e8d5c69 2019-09-11 17:48:39.293342 15492 800 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.63.76 4625b3f2-360c-4df0-93fe-829f4b416d86 2019-09-11 17:49:19.816666 15493 180 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-09-11\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.63.76 b4c6793b-6a94-45a4-8211-220a615d7974 2019-09-11 17:49:22.870275 15494 576 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.63.76 d9e30e41-f3fc-4ed8-b053-276f4c42a99d 2019-09-11 18:15:39.505695 15495 576 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.63.76 b9f3be42-26a0-48f8-a511-0589777f2865 2019-09-11 18:15:42.993285 15496 485 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.63.76 b1174cca-e4b7-430a-b92c-412f17d631f3 2019-09-11 18:16:02.257939 15497 485 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.63.76 d247b27a-884a-46d6-9c89-d4a49857d8da 2019-09-11 18:16:05.314229 15595 421 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 9c72ebf5-52ad-484d-bc56-ef8e76eb1087 2019-09-12 01:14:43.532806 15498 181 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-09-11\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.63.76 6b56f0ea-d249-42a4-8227-c1c6c50572c6 2019-09-11 18:16:14.187879 15499 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 187.149.63.76 63a9fc13-de21-4260-9071-b8c61ba99ee4 2019-09-11 18:20:39.603513 15500 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 187.149.63.76 d8f4dab3-8685-4aac-a0ce-1c56a8e52c95 2019-09-11 18:20:43.082606 15501 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 187.149.63.76 e23fee12-1e38-40b4-a6c2-9e508d1e71cc 2019-09-11 18:20:54.567176 15502 182 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-09-11\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.63.76 be73d934-296e-432c-8dda-48e3120ccbdc 2019-09-11 18:21:00.914044 15503 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-11 15:50:22.319948000 Z\n- &1 2019-09-11 17:39:17.652349000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-11 18:21:29.192245031 Z\nsign_in_count:\n- 607\n- 608\n 1216 \N 187.149.63.76 b6358c81-ee60-4795-bbbb-d6f1047a2875 2019-09-11 18:21:29.201482 15504 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hY9e3pp9x7fpZ-sttjkB\n- NiLSAS-eJ9_6BRNbZKTy\n 1217 \N 187.149.63.76 b6358c81-ee60-4795-bbbb-d6f1047a2875 2019-09-11 18:21:29.219379 15505 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-11 17:07:08.542305000 Z\n- &1 2019-09-11 17:39:56.458719000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-11 18:24:14.563387682 Z\nsign_in_count:\n- 14\n- 15\n 33 \N 187.149.63.76 670ac9df-549d-4313-905c-75fb17f2ad43 2019-09-11 18:24:14.569103 15506 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 2_xuxmzBdiJLyqWvVxZs\n- 2ussXyFCqxPec3hEzitu\n 34 \N 187.149.63.76 670ac9df-549d-4313-905c-75fb17f2ad43 2019-09-11 18:24:14.582653 15507 650 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.63.76 e47b4dd7-31a5-43ad-94dc-394803648dfc 2019-09-11 18:24:42.418968 15508 183 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-09-11\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.63.76 57fd3a50-f45a-4bfa-82ba-640c8e6083cd 2019-09-11 18:24:43.955226 15509 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-10 17:17:18.023486000 Z\n- &1 2019-09-11 01:51:12.519826000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-11 18:25:47.613787806 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183130269\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\nsign_in_count:\n- 32\n- 33\n 67 \N 189.186.105.115 bead8bd5-1c64-4b41-a637-ca4ef80156be 2019-09-11 18:25:47.621392 15510 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 4dxitQT_ov9qopaCS96R\n- z89rjH8x5NcstHGbUe7Y\n 68 \N 189.186.105.115 bead8bd5-1c64-4b41-a637-ca4ef80156be 2019-09-11 18:25:47.641148 15511 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-11 17:39:17.652349000 Z\n- &1 2019-09-11 18:21:29.192245000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-11 18:25:59.347136668 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\nsign_in_count:\n- 608\n- 609\n 1218 \N 189.186.105.115 b796c17d-2b29-4b06-a511-302e782d24c0 2019-09-11 18:25:59.354068 15512 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NiLSAS-eJ9_6BRNbZKTy\n- U_rEnSSDrB4Xq5ykGwTz\n 1219 \N 189.186.105.115 b796c17d-2b29-4b06-a511-302e782d24c0 2019-09-11 18:25:59.368083 15513 652 Product \N \N 4 User \N update ---\nname:\n- CAN-001\n- CAN-0003\n 3 El producto BOL-652 fue modificado. 189.186.105.115 3efe4578-8bbb-48aa-8d47-a5839dc7d5d0 2019-09-11 18:40:14.048138 15514 180 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-11\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.63.76 615adcf4-81b8-4a78-93f7-d2abdb567fd2 2019-09-11 19:51:54.321053 15515 810 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 187.149.63.76 615adcf4-81b8-4a78-93f7-d2abdb567fd2 2019-09-11 19:51:54.347401 15516 181 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-11\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.63.76 1a8f7766-33b4-448d-8efe-717077339ccb 2019-09-11 19:52:02.84071 15517 136 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.63.76 1a8f7766-33b4-448d-8efe-717077339ccb 2019-09-11 19:52:02.864416 15518 1006 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 535\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 1a8f7766-33b4-448d-8efe-717077339ccb 2019-09-11 19:52:02.88822 15519 182 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-11\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.63.76 a19e32a8-ab93-4036-8303-25b694207a5d 2019-09-11 19:52:12.27483 15520 744 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.7E1\n 18 \N 187.149.63.76 a19e32a8-ab93-4036-8303-25b694207a5d 2019-09-11 19:52:12.296766 15521 183 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-11\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.63.76 8dbe7555-533c-4231-8a76-e90dddb84553 2019-09-11 19:52:20.921199 15522 634 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.63.76 8dbe7555-533c-4231-8a76-e90dddb84553 2019-09-11 19:52:20.941067 15523 711 Product \N \N 2 User \N create ---\nsku: VES-711\nname: ves-0046\ndescription: vestido rojo abierto espalda\nprice_base: !ruby/object:BigDecimal 18:0.3516E3\nprice_sale: !ruby/object:BigDecimal 18:0.879E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-711 fue creado. 187.149.63.76 e7139fb0-3b48-405b-a642-c890ba9eeb3f 2019-09-11 19:56:50.246662 15524 711 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000711'\n 2 \N 187.149.63.76 e7139fb0-3b48-405b-a642-c890ba9eeb3f 2019-09-11 19:56:50.292301 15641 786 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 11 \N 187.149.63.76 d41be09e-5de3-4d6a-8ce4-404585268ad8 2019-09-13 00:10:26.146618 15525 1007 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 711\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 e7139fb0-3b48-405b-a642-c890ba9eeb3f 2019-09-11 19:56:50.325132 15526 140 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-79\namount: !ruby/object:BigDecimal 18:0.1758E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1758E4\nobservations: ''\npurchase_date: 2019-09-11\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-79 por $ 1758.0 MXN creada. 187.149.63.76 cca613fe-7036-4ffb-9350-5ca63612a2e5 2019-09-11 19:57:13.921095 15527 1007 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.63.76 cca613fe-7036-4ffb-9350-5ca63612a2e5 2019-09-11 19:57:13.955259 15528 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-09 18:27:45.574458000 Z\n- &1 2019-09-10 18:05:52.165520000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-11 19:58:29.463708586 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183130269\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183130269\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\nsign_in_count:\n- 3\n- 4\n 8 \N 189.186.105.115 0bafac81-a7cd-462f-a64f-e6f4aae22914 2019-09-11 19:58:29.471851 15529 23 User \N \N 23 User \N update ---\nunique_session_id:\n- D3jT_yZMJ5vzf8LyzQVD\n- E6Nrg9m6yodibdzR6Gi2\n 9 \N 189.186.105.115 0bafac81-a7cd-462f-a64f-e6f4aae22914 2019-09-11 19:58:29.488941 15530 1007 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.63.76 b43521f5-b964-4a99-bda3-6a9db16d9784 2019-09-11 19:59:40.039716 15531 1007 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.63.76 184b8ebb-0508-4a6f-aff7-4f38a1dcd41b 2019-09-11 19:59:43.019648 15532 184 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-09-11\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.63.76 f7d30d0b-3db5-4968-8d21-8707567aaf4d 2019-09-11 19:59:46.268189 15533 415 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.63.76 83edd902-f5d3-4fc2-a081-765523e5d109 2019-09-11 20:05:54.963845 15534 415 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.63.76 aa7a2c59-eac4-48f9-9bb4-9834fb4ad7af 2019-09-11 20:05:58.340314 15535 185 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-09-11\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.63.76 b14d3b16-e789-4a79-a386-dbafe4761e03 2019-09-11 20:05:59.220055 15536 715 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.63.76 4b772df8-3b59-4031-980a-77d608f7e94d 2019-09-11 20:06:26.780183 15537 715 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.63.76 7264a015-6fc8-4250-a2f8-6fa1f0b874b1 2019-09-11 20:06:31.187735 15538 186 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-09-11\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.63.76 2509fae0-1f3f-47d2-ada8-cb33873f2b33 2019-09-11 20:06:32.324424 15539 1068 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 421\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-09-11\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-439\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 af448e21-d61d-485c-a52a-ee7bb2ae037a 2019-09-11 20:25:43.947754 15540 598 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.63.76 af448e21-d61d-485c-a52a-ee7bb2ae037a 2019-09-11 20:25:43.975856 15541 1068 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 c4d6fa3a-97d4-4b50-8846-22f68253a57c 2019-09-11 20:26:05.332932 15542 1474 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 421\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 1068\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-439\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-439 187.149.63.76 c4d6fa3a-97d4-4b50-8846-22f68253a57c 2019-09-11 20:26:05.354823 15543 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-11 18:21:29.192245000 Z\n- &1 2019-09-11 18:25:59.347136000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-11 20:29:16.598743612 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 609\n- 610\n 1220 \N 187.149.63.76 dadf4e1f-48bd-4cf0-bf2e-aa4f6e8dd20e 2019-09-11 20:29:16.606775 15544 4 User \N \N 4 User \N update ---\nunique_session_id:\n- U_rEnSSDrB4Xq5ykGwTz\n- 6gYFqtcG1FDq2UXF_sRr\n 1221 \N 187.149.63.76 dadf4e1f-48bd-4cf0-bf2e-aa4f6e8dd20e 2019-09-11 20:29:16.624071 15545 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-11 18:25:59.347136000 Z\n- &1 2019-09-11 20:29:16.598743000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-11 20:29:45.767045264 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 610\n- 611\n 1222 \N 187.149.63.76 08dd064b-3a47-4fab-8875-61fb9c7490ec 2019-09-11 20:29:45.77362 15546 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6gYFqtcG1FDq2UXF_sRr\n- 5xqByiDTKdH8FvViYVdv\n 1223 \N 187.149.63.76 08dd064b-3a47-4fab-8875-61fb9c7490ec 2019-09-11 20:29:45.789409 15547 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-11 17:39:56.458719000 Z\n- &1 2019-09-11 18:24:14.563387000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-11 20:30:27.790372033 Z\nsign_in_count:\n- 15\n- 16\n 35 \N 187.149.63.76 9b98fd03-0c8b-48e2-adb6-7b4aa315dd7e 2019-09-11 20:30:27.796321 15548 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 2ussXyFCqxPec3hEzitu\n- as-mifFJwuLfttaouGrC\n 36 \N 187.149.63.76 9b98fd03-0c8b-48e2-adb6-7b4aa315dd7e 2019-09-11 20:30:27.808177 15642 1074 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 47e1520e-6e10-4f9d-b7a1-9de30428dfa5 2019-09-13 00:10:31.766763 15549 422 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.752E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 752.0 187.149.63.76 47f792a0-2daf-4e3b-969b-acf415eaebc1 2019-09-11 21:04:14.583405 15550 788 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 11 \N 187.149.63.76 683ac8ca-db87-4b1c-9a4c-719dbf9d3513 2019-09-11 22:10:36.401497 15551 187 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-09-11\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.63.76 fddf637a-a09a-4d25-9f0e-4cb22b537f45 2019-09-11 22:10:42.794466 15552 186 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-11\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.63.76 7cbe4eba-62db-4a4e-9d04-b45249d83da0 2019-09-11 22:10:56.556037 15553 522 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 187.149.63.76 7cbe4eba-62db-4a4e-9d04-b45249d83da0 2019-09-11 22:10:56.581001 15554 185 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-11\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.63.76 c57a4f64-2ba7-437b-8cce-24c1c85dbfe5 2019-09-11 22:11:05.064549 15555 1008 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 417\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 c57a4f64-2ba7-437b-8cce-24c1c85dbfe5 2019-09-11 22:11:05.09653 15556 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-11 20:29:16.598743000 Z\n- &1 2019-09-11 20:29:45.767045000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-11 22:42:59.773083227 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\nsign_in_count:\n- 611\n- 612\n 1224 \N 189.186.2.140 2bc8767b-1b22-4b4b-8670-b9c1fe8b2e48 2019-09-11 22:42:59.780837 15557 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5xqByiDTKdH8FvViYVdv\n- 1zeToNyyg39svHRmLsPr\n 1225 \N 189.186.2.140 2bc8767b-1b22-4b4b-8670-b9c1fe8b2e48 2019-09-11 22:42:59.795244 15558 181 Expense \N \N 8 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 421\nquantity: !ruby/object:BigDecimal 18:0.52E3\nstatus: 1\nobservations: COMPRA DE DETECTORES DE HUMO $260.00 CADA UNO\nexpense_date: 2019-09-11\nexpense_code: PV2-E-41\n 1 Egreso por 520.0 registrado 187.149.63.76 6129f1f1-9c54-4c8b-b005-16dee97ecd36 2019-09-11 23:49:16.524817 15559 13 Purchase \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 6129f1f1-9c54-4c8b-b005-16dee97ecd36 2019-09-11 23:49:16.546469 15560 1475 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 421\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.52E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: 13\nexpense_id: 181\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.63.76 6129f1f1-9c54-4c8b-b005-16dee97ecd36 2019-09-11 23:49:16.586937 15561 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-11 20:29:45.767045000 Z\n- &1 2019-09-11 22:42:59.773083000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-12 00:22:58.797487147 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 612\n- 613\n 1226 \N 187.149.63.76 75181308-d543-40fe-9b89-25c1b3a89b5d 2019-09-12 00:22:58.804509 15562 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1zeToNyyg39svHRmLsPr\n- xnsDz7AxegUwtUfmd834\n 1227 \N 187.149.63.76 75181308-d543-40fe-9b89-25c1b3a89b5d 2019-09-12 00:22:58.819531 15563 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-11 18:24:14.563387000 Z\n- &1 2019-09-11 20:30:27.790372000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-12 00:29:25.742676017 Z\nsign_in_count:\n- 16\n- 17\n 37 \N 187.149.63.76 f3fdf8b2-72a1-4ef7-9fb5-c255fc1f464d 2019-09-12 00:29:25.748264 15564 8 User \N \N 8 User \N update ---\nunique_session_id:\n- as-mifFJwuLfttaouGrC\n- TxC7yrA635Jk1rPrrWJH\n 38 \N 187.149.63.76 f3fdf8b2-72a1-4ef7-9fb5-c255fc1f464d 2019-09-12 00:29:25.760186 15565 171 Customer \N \N 8 User \N create ---\nnick_name: JOQZD ACAPULCO\nphone: "(667) 771-0101"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JOQZD ACAPULCO fue registrado. 187.149.63.76 ba75072b-1f72-412f-a9d2-45382719059b 2019-09-12 00:31:36.844983 15566 172 Customer \N \N 8 User \N create ---\nnick_name: JOQZD ACAPULCO\nphone: "(667) 771-0101"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JOQZD ACAPULCO fue registrado. 187.149.63.76 3caac8d0-1fb1-4ddd-aa5b-463816676aea 2019-09-12 00:31:53.479981 15567 173 Customer \N \N 8 User \N create ---\nnick_name: JOQZD ACAPULCO\nphone: "(667) 771-0101"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JOQZD ACAPULCO fue registrado. 187.149.63.76 e5a8f315-828b-4b27-b256-00cee3fa7959 2019-09-12 00:32:15.656357 15568 1069 Sale \N \N 8 User \N create ---\ncustomer_id: 173\nuser_id: 8\nopen_cash_register_id: 421\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-11\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-440\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 c03d1374-f79d-4cb3-ba8c-e1b84c8f0d3e 2019-09-12 00:32:43.775697 15569 596 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.63.76 c03d1374-f79d-4cb3-ba8c-e1b84c8f0d3e 2019-09-12 00:32:43.810334 15570 1069 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 0596fbc3-d249-4605-ab88-ab652c85c17b 2019-09-12 00:32:50.609605 15571 1476 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 421\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 1069\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-440\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-440 187.149.63.76 0596fbc3-d249-4605-ab88-ab652c85c17b 2019-09-12 00:32:50.633803 15572 1069 Sale \N \N 8 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-440 cancelada. 187.149.63.76 01e32eff-5240-4cdb-88bd-8e1bee656962 2019-09-12 00:33:03.963708 20283 752 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '752'\n is_parent: false\n sku: CON-752\n name: CJT-0002\n description: CONJUNTO APEACH NEGRO BRILLOSO ST-7494\n price_base: '450.0'\n price_sale: '1129.0'\n img_product: IMG_3049.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '10'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000752'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-10 21:10:47.844767'\n updated_at: &12 2019-11-05 20:47:46.968927073 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '752'\n sku: CON-752\n name: CJT-0002\n description: CONJUNTO APEACH NEGRO BRILLOSO ST-7494\n price_base: '450.00'\n price_sale: '1129.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-10 21:10:47.844767'\n updated_at: '2019-10-10 21:32:37.867124'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000752'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '10'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '752'\n type: *3\n value: 752\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CON-752\n type: *7\n value: CON-752\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CJT-0002\n type: *8\n value: CJT-0002\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CONJUNTO APEACH NEGRO BRILLOSO ST-7494\n type: *6\n value: CONJUNTO APEACH NEGRO BRILLOSO ST-7494\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '450.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.45E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1129.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1129E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_3049.JPG\n type: *2\n value: IMG_3049.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '10'\n type: *3\n value: 10\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000752'\n type: *2\n value: '0000752'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-10 21:10:47.844767'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_3049.JPG\n 4 El producto CON-752 fue modificado. 187.149.74.215 5286b5ec-ec99-4276-9645-38e8236494ac 2019-11-05 20:47:47.007826 15573 1476 CashRegistersMove \N \N 8 User \N destroy ---\nopen_cash_register_id: 421\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1069\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-440\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.63.76 01e32eff-5240-4cdb-88bd-8e1bee656962 2019-09-12 00:33:03.985485 15574 596 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.63.76 01e32eff-5240-4cdb-88bd-8e1bee656962 2019-09-12 00:33:04.010317 15575 1070 Sale \N \N 8 User \N create ---\ncustomer_id: 172\nuser_id: 8\nopen_cash_register_id: 421\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-11\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-441\nexpiration_date: 2019-10-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 6a354438-23f7-4a53-a3fa-4afeb2e674c4 2019-09-12 00:33:25.506878 15576 596 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.63.76 6a354438-23f7-4a53-a3fa-4afeb2e674c4 2019-09-12 00:33:25.725245 15577 1477 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 421\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1070\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-441\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-441 187.149.63.76 a9b5300f-5bab-43e3-88b5-4e21aeb27ee4 2019-09-12 00:33:33.537663 15578 1070 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.63.76 8a49be75-aa0f-4cca-abfe-4773336b9f25 2019-09-12 00:33:35.580286 15579 421 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 422\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.752E3\nphysical_cash: !ruby/object:BigDecimal 18:0.752E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.63.76 9934bf6b-5da5-4556-9678-2188da1ebcb6 2019-09-12 00:58:32.123715 15580 422 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 9934bf6b-5da5-4556-9678-2188da1ebcb6 2019-09-12 00:58:32.141676 15581 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-11 22:42:59.773083000 Z\n- &1 2019-09-12 00:22:58.797487000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-12 01:02:24.287713345 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\nsign_in_count:\n- 613\n- 614\n 1228 \N 189.186.105.115 531b5604-7363-48be-9481-e1ca75bcc546 2019-09-12 01:02:24.2965 15582 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xnsDz7AxegUwtUfmd834\n- KJmPMxzhFTKR_bSggzfk\n 1229 \N 189.186.105.115 531b5604-7363-48be-9481-e1ca75bcc546 2019-09-12 01:02:24.314326 15583 661 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.599E3\n- !ruby/object:BigDecimal 18:0.699E3\n 4 El producto VES-661 fue modificado. 189.186.105.115 84baddb6-54e1-4536-a77b-2a3295020e67 2019-09-12 01:07:12.032635 15584 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-12 00:22:58.797487000 Z\n- &1 2019-09-12 01:02:24.287713000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-12 01:10:15.419420263 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\nsign_in_count:\n- 614\n- 615\n 1230 \N 189.186.105.115 dc4e0b3f-b9d0-402b-84ce-37331908167f 2019-09-12 01:10:15.425781 15585 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KJmPMxzhFTKR_bSggzfk\n- 4_dwW_4UEPx8QyearmQ8\n 1231 \N 189.186.105.115 dc4e0b3f-b9d0-402b-84ce-37331908167f 2019-09-12 01:10:15.441072 15586 21 User \N \N 4 User \N update --- {}\n 28 Usuario DANIELACAMPINA ha sido modificado. 189.186.105.115 ca85f447-ea26-4efd-ab5a-79750d257e79 2019-09-12 01:11:18.184107 15587 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 00:24:54.658764000 Z\n- &1 2019-09-07 17:24:57.460294000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-12 01:12:15.421106091 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\nsign_in_count:\n- 13\n- 14\n 29 \N 189.186.105.115 3dc367e2-6de3-47e3-bf7f-545dd4223aa6 2019-09-12 01:12:15.431228 15588 21 User \N \N 21 User \N update ---\nunique_session_id:\n- fN_G4CZnbThj2AUvWLTQ\n- fsrN_N9x9Zr9UyMfBAxc\n 30 \N 189.186.105.115 3dc367e2-6de3-47e3-bf7f-545dd4223aa6 2019-09-12 01:12:15.447475 15589 423 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.122001E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1220.01 189.186.105.115 5431f9d4-c225-4cd9-b3b3-ccc46bacac93 2019-09-12 01:12:31.109629 15590 1071 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 423\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-11\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-26\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.105.115 4f92b827-8319-40c2-91a4-7d67aec4bb2a 2019-09-12 01:12:53.996154 15591 823 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.105.115 4f92b827-8319-40c2-91a4-7d67aec4bb2a 2019-09-12 01:12:54.03361 15592 1071 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.105.115 ee94810f-c642-486e-bb97-44110e4ed752 2019-09-12 01:13:01.803231 15593 1478 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 423\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1071\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-26\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-26 189.186.105.115 ee94810f-c642-486e-bb97-44110e4ed752 2019-09-12 01:13:01.828096 15594 422 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 421\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.19473E4\namount_out: !ruby/object:BigDecimal 18:0.52E3\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.16E4\ncash_fund: !ruby/object:BigDecimal 27:0.8513000000000002E3\nphysical_cash: !ruby/object:BigDecimal 18:0.24513E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.63.76 9c72ebf5-52ad-484d-bc56-ef8e76eb1087 2019-09-12 01:14:43.517333 15596 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-12 01:02:24.287713000 Z\n- &1 2019-09-12 01:10:15.419420000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-12 01:24:05.065583186 Z\nsign_in_count:\n- 615\n- 616\n 1232 \N 189.186.105.115 8702b534-a6d8-44f1-b1d1-e2a3bf21fc4a 2019-09-12 01:24:05.073501 15597 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4_dwW_4UEPx8QyearmQ8\n- _bUAqjo_sZFy2aHFLMD3\n 1233 \N 189.186.105.115 8702b534-a6d8-44f1-b1d1-e2a3bf21fc4a 2019-09-12 01:24:05.094105 15598 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-12 01:10:15.419420000 Z\n- &1 2019-09-12 01:24:05.065583000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-12 01:35:40.390483254 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\nsign_in_count:\n- 616\n- 617\n 1234 \N 189.186.2.140 ac8b3ee7-5fa9-472d-8f46-f25d16458e26 2019-09-12 01:35:40.398264 15599 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _bUAqjo_sZFy2aHFLMD3\n- j1LsAwMWdDm6snCDyXta\n 1235 \N 189.186.2.140 ac8b3ee7-5fa9-472d-8f46-f25d16458e26 2019-09-12 01:35:40.421046 15600 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-12 01:24:05.065583000 Z\n- &1 2019-09-12 01:35:40.390483000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-12 01:37:58.842002971 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\nsign_in_count:\n- 617\n- 618\n 1236 \N 189.186.105.115 054455f1-6e50-4b07-bbe1-fc6a9452b4b8 2019-09-12 01:37:58.850401 15601 4 User \N \N 4 User \N update ---\nunique_session_id:\n- j1LsAwMWdDm6snCDyXta\n- rCPU_xWqQDXqXawyC5kM\n 1237 \N 189.186.105.115 054455f1-6e50-4b07-bbe1-fc6a9452b4b8 2019-09-12 01:37:58.872231 15602 661 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.699E3\n- !ruby/object:BigDecimal 18:0.599E3\n 5 El producto VES-661 fue modificado. 189.186.105.115 04c008fc-ed38-4724-b978-96dc90e9c51b 2019-09-12 01:51:17.979982 15603 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 17:24:57.460294000 Z\n- &1 2019-09-12 01:12:15.421106000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-12 01:51:45.110566000 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\nsign_in_count:\n- 14\n- 15\n 31 \N 189.186.105.115 fad55cc7-9e1f-4e50-ae32-88de9e0297db 2019-09-12 01:51:45.116919 15604 21 User \N \N 21 User \N update ---\nunique_session_id:\n- fsrN_N9x9Zr9UyMfBAxc\n- MR4FLcvKzs3zxun3fsgQ\n 32 \N 189.186.105.115 fad55cc7-9e1f-4e50-ae32-88de9e0297db 2019-09-12 01:51:45.130567 15605 1071 Sale \N \N 21 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-26 cancelada. 189.186.105.115 3454fc40-370a-4d82-a263-02190d5d9cdb 2019-09-12 01:51:58.130561 15606 1478 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 423\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1071\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-26\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.105.115 3454fc40-370a-4d82-a263-02190d5d9cdb 2019-09-12 01:51:58.153944 15607 823 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.105.115 3454fc40-370a-4d82-a263-02190d5d9cdb 2019-09-12 01:51:58.182807 15608 1072 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 423\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-09-11\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-27\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.105.115 e67f9929-f17a-4332-b6f1-daba09b6b5e9 2019-09-12 01:52:13.577722 15609 823 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.105.115 e67f9929-f17a-4332-b6f1-daba09b6b5e9 2019-09-12 01:52:13.624299 15610 1072 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.105.115 5bbaa2b5-c783-4141-a3e9-4081a26e1d55 2019-09-12 01:52:19.599865 15611 1479 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 423\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 1072\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-27\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-27 189.186.105.115 5bbaa2b5-c783-4141-a3e9-4081a26e1d55 2019-09-12 01:52:19.624833 15612 182 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 423\nquantity: !ruby/object:BigDecimal 18:0.1E3\nstatus: 1\nobservations: REFORZAMIENTO DEL SILLON $100.00\nexpense_date: 2019-09-11\nexpense_code: PV3-E-2\n 1 Egreso por 100.0 registrado 189.186.105.115 99a262b1-2df3-4369-b2e5-3a995434175e 2019-09-12 01:53:15.780379 15613 1480 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 423\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 182\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.105.115 99a262b1-2df3-4369-b2e5-3a995434175e 2019-09-12 01:53:15.804398 15614 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-12 01:35:40.390483000 Z\n- &1 2019-09-12 01:37:58.842002000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-12 02:05:10.885619822 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\nsign_in_count:\n- 618\n- 619\n 1238 \N 189.186.2.140 906f123b-c1e6-4810-95d4-d6a3f95d507e 2019-09-12 02:05:10.893806 15615 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rCPU_xWqQDXqXawyC5kM\n- D2gci5d4zCNun7-MvBPd\n 1239 \N 189.186.2.140 906f123b-c1e6-4810-95d4-d6a3f95d507e 2019-09-12 02:05:10.919493 15616 423 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 423\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.599E3\namount_out: !ruby/object:BigDecimal 18:0.1E3\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.6E3\ncash_fund: !ruby/object:BigDecimal 18:0.1119E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1719E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.105.115 a7c774b5-f5ea-4e22-aebe-a2ddee6eb986 2019-09-12 02:07:37.544315 15617 423 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.105.115 a7c774b5-f5ea-4e22-aebe-a2ddee6eb986 2019-09-12 02:07:37.562822 15618 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-12 01:37:58.842002000 Z\n- &1 2019-09-12 02:05:10.885619000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-12 17:01:19.315700575 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938099\n mask_addr: 4294967295\nsign_in_count:\n- 619\n- 620\n 1240 \N 200.68.150.51 babcf174-68f8-43db-9643-7c6fb93ca30c 2019-09-12 17:01:19.344367 15619 4 User \N \N 4 User \N update ---\nunique_session_id:\n- D2gci5d4zCNun7-MvBPd\n- 1EnhV23yAF8FA4ZfbNw2\n 1241 \N 200.68.150.51 babcf174-68f8-43db-9643-7c6fb93ca30c 2019-09-12 17:01:19.369287 15620 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-12 02:05:10.885619000 Z\n- &1 2019-09-12 17:01:19.315700000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-12 18:24:47.661552309 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938099\n mask_addr: 4294967295\nsign_in_count:\n- 620\n- 621\n 1242 \N 200.68.150.51 b4e6c580-a241-4a6c-8ba9-8a6dfff6b72d 2019-09-12 18:24:47.668073 15621 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1EnhV23yAF8FA4ZfbNw2\n- _vfYrGgDexBzzpzsa4zy\n 1243 \N 200.68.150.51 b4e6c580-a241-4a6c-8ba9-8a6dfff6b72d 2019-09-12 18:24:47.682295 15622 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-11 20:30:27.790372000 Z\n- &1 2019-09-12 00:29:25.742676000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-12 20:06:11.248829528 Z\nsign_in_count:\n- 17\n- 18\n 39 \N 187.149.63.76 1623fe46-bc28-4623-97c4-e2340aabb88f 2019-09-12 20:06:11.25416 15623 8 User \N \N 8 User \N update ---\nunique_session_id:\n- TxC7yrA635Jk1rPrrWJH\n- ic-n-ja63Hb3rBqR1w5M\n 40 \N 187.149.63.76 1623fe46-bc28-4623-97c4-e2340aabb88f 2019-09-12 20:06:11.266183 15624 424 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.8513E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 851.3 187.149.63.76 aeceb7df-70bf-4bba-ac3b-f85c791e5e6d 2019-09-12 20:06:31.503517 15625 1073 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 424\namount: !ruby/object:BigDecimal 18:0.99052E3\ntax: !ruby/object:BigDecimal 18:0.15848E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1149E4\nstatus: 0\ndate_sale: 2019-09-12\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-442\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 2977b9bd-6744-4929-8459-c5342986ddbe 2019-09-12 20:06:45.673486 15626 750 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.63.76 2977b9bd-6744-4929-8459-c5342986ddbe 2019-09-12 20:06:45.702804 15627 1073 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 4525fc8a-c090-47df-9317-2abb5e76da7f 2019-09-12 20:07:05.039084 15628 1481 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 424\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1149E4\nmove_type: '1'\nsale_id: 1073\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-442\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.115E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-442 187.149.63.76 4525fc8a-c090-47df-9317-2abb5e76da7f 2019-09-12 20:07:05.061811 15629 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-10 18:05:52.165520000 Z\n- &1 2019-09-11 19:58:29.463708000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-12 20:25:09.021860917 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183130269\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183100233\n mask_addr: 4294967295\nsign_in_count:\n- 4\n- 5\n 10 \N 189.186.65.73 1c4c3cce-28b7-41ee-bc5d-ee6b1f870cd7 2019-09-12 20:25:09.029994 15630 23 User \N \N 23 User \N update ---\nunique_session_id:\n- E6Nrg9m6yodibdzR6Gi2\n- CaaVm2YXSHDRywJtVJgz\n 11 \N 189.186.65.73 1c4c3cce-28b7-41ee-bc5d-ee6b1f870cd7 2019-09-12 20:25:09.060494 15631 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-12 17:01:19.315700000 Z\n- &1 2019-09-12 18:24:47.661552000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-12 20:33:35.918797806 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938099\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 621\n- 622\n 1244 \N 187.149.63.76 c0587f54-e92b-4fec-9c6e-00c1ef3a2e5b 2019-09-12 20:33:35.925386 15632 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _vfYrGgDexBzzpzsa4zy\n- 1gZUz9NJTL2FNjksq56g\n 1245 \N 187.149.63.76 c0587f54-e92b-4fec-9c6e-00c1ef3a2e5b 2019-09-12 20:33:35.944543 15633 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-10 16:19:52.015352000 Z\n- &1 2019-09-11 17:24:07.759378000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-12 22:19:25.939501915 Z\nsign_in_count:\n- 315\n- 316\n 635 \N 187.149.63.76 132461b0-837c-4751-90ff-530ce78ffc1b 2019-09-12 22:19:25.965762 15634 2 User \N \N 2 User \N update ---\nunique_session_id:\n- wCGKRbQqEJFNKegM8yDc\n- 4LmCkjejoUuatK6j3caG\n 636 \N 187.149.63.76 132461b0-837c-4751-90ff-530ce78ffc1b 2019-09-12 22:19:25.98484 15635 425 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.752E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 752.0 187.149.63.76 2d6164af-0626-4195-a060-fe5915a44118 2019-09-12 22:19:39.284051 15636 1482 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 425\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 868\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-493 187.149.63.76 d758b00a-9972-481c-b239-7301fdc79a38 2019-09-12 23:33:48.500739 15637 868 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.63.76 545f685d-0994-4a2c-8723-292bf05762b9 2019-09-12 23:33:50.704075 15638 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-09-10 21:41:53.241541000 Z\n- &1 2019-09-10 22:43:52.034083000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-12 23:43:40.173057429 Z\nsign_in_count:\n- 74\n- 75\n 150 \N 187.149.63.76 6ec2f786-3f39-4f32-8f8a-24347016434b 2019-09-12 23:43:40.179872 15639 1 User \N \N 1 User \N update ---\nunique_session_id:\n- MUZxoeWxR4Fiik7pykxU\n- fKPWzvjrPPTFSUbWhn84\n 151 \N 187.149.63.76 6ec2f786-3f39-4f32-8f8a-24347016434b 2019-09-12 23:43:40.192707 15640 1074 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 425\namount: !ruby/object:BigDecimal 18:0.299E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.299E3\nstatus: 0\ndate_sale: 2019-09-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-603\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 d41be09e-5de3-4d6a-8ce4-404585268ad8 2019-09-13 00:10:26.107452 15643 1483 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 425\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.299E3\nmove_type: '1'\nsale_id: 1074\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-603\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.299E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-603 187.149.63.76 47e1520e-6e10-4f9d-b7a1-9de30428dfa5 2019-09-13 00:10:31.79348 15644 183 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 425\nquantity: !ruby/object:BigDecimal 18:0.7E3\nstatus: 1\nobservations: adelanto rocio\nexpense_date: 2019-09-12\nexpense_code: PV1-E-140\n 1 Egreso por 700.0 registrado 187.149.63.76 d838c0c7-191e-463d-b3a7-edff09ed2be3 2019-09-13 00:12:14.111416 15645 1484 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 425\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 183\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.63.76 d838c0c7-191e-463d-b3a7-edff09ed2be3 2019-09-13 00:12:14.136709 15646 1075 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 425\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-09-12\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-604\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 dca0b696-2254-44b9-b6ce-99511508aa8c 2019-09-13 00:37:42.389006 15647 739 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.63.76 dca0b696-2254-44b9-b6ce-99511508aa8c 2019-09-13 00:37:42.413385 15648 1075 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 52a9e456-c1fb-41f9-80e3-5d75e7614e42 2019-09-13 00:37:47.434808 15649 1485 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 425\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.569E3\nmove_type: '1'\nsale_id: 1075\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-604\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.131E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-604 187.149.63.76 52a9e456-c1fb-41f9-80e3-5d75e7614e42 2019-09-13 00:37:47.454641 15650 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-12 00:29:25.742676000 Z\n- &1 2019-09-12 20:06:11.248829000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-13 01:02:34.052464181 Z\nsign_in_count:\n- 18\n- 19\n 41 \N 187.149.63.76 0e88fb18-75dc-4796-9ec6-928e2acd5fb1 2019-09-13 01:02:34.058131 15651 8 User \N \N 8 User \N update ---\nunique_session_id:\n- ic-n-ja63Hb3rBqR1w5M\n- gLefXoQbfgbmZCKo5xKG\n 42 \N 187.149.63.76 0e88fb18-75dc-4796-9ec6-928e2acd5fb1 2019-09-13 01:02:34.071902 15652 424 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 424\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.1149E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.10003E4\nphysical_cash: !ruby/object:BigDecimal 18:0.20003E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.63.76 683dc781-129c-44c4-b65a-f6042e71cc80 2019-09-13 01:04:14.042179 15653 424 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 683dc781-129c-44c4-b65a-f6042e71cc80 2019-09-13 01:04:14.05709 15654 426 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1119E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1119.0 189.186.65.73 d6f8d604-5cf4-4d94-b89c-2346c061d46f 2019-09-13 01:08:45.821718 15655 174 Customer \N \N 23 User \N create ---\nnick_name: MARICELA BANORTE\nphone: ''\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.5E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARICELA BANORTE fue registrado. 189.186.65.73 41992b8a-a813-4198-b776-304154baf530 2019-09-13 01:09:59.951855 15656 1076 Sale \N \N 23 User \N create ---\ncustomer_id: 174\nuser_id: 23\nopen_cash_register_id: 426\namount: !ruby/object:BigDecimal 18:0.3498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3498E4\nstatus: 0\ndate_sale: 2019-09-12\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-28\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.65.73 7f02df74-ab00-4e91-a1cb-cd7fc515ea4f 2019-09-13 01:10:28.391055 15657 775 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.65.73 7f02df74-ab00-4e91-a1cb-cd7fc515ea4f 2019-09-13 01:10:28.423499 15658 779 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.65.73 7f02df74-ab00-4e91-a1cb-cd7fc515ea4f 2019-09-13 01:10:28.457697 15659 1076 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-28 cancelada. 189.186.65.73 d5e4a677-de97-4e3a-a0b1-2c5d80fa5e96 2019-09-13 01:11:14.200462 15660 779 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.65.73 d5e4a677-de97-4e3a-a0b1-2c5d80fa5e96 2019-09-13 01:11:14.228118 15661 775 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.65.73 d5e4a677-de97-4e3a-a0b1-2c5d80fa5e96 2019-09-13 01:11:14.250096 15662 1077 Sale \N \N 23 User \N create ---\ncustomer_id: 20\nuser_id: 23\nopen_cash_register_id: 426\namount: !ruby/object:BigDecimal 18:0.3498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3498E4\nstatus: 0\ndate_sale: 2019-09-12\nsaletype: 0\nseller_id: 12\nsale_code: PV3-V-29\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.65.73 70752b1f-7263-4154-ad94-e2d79d8555b5 2019-09-13 01:12:01.437747 15663 779 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.65.73 70752b1f-7263-4154-ad94-e2d79d8555b5 2019-09-13 01:12:01.4659 15664 775 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.65.73 70752b1f-7263-4154-ad94-e2d79d8555b5 2019-09-13 01:12:01.491701 15665 1486 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 426\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.498E3\nmove_type: '1'\nsale_id: 1077\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.498E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.65.73 f986be49-667c-4249-b17c-7e3409879a4b 2019-09-13 01:14:50.110961 15666 1077 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.65.73 f986be49-667c-4249-b17c-7e3409879a4b 2019-09-13 01:14:50.15669 15667 1486 CashRegistersMove \N \N 23 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV3-V-29 189.186.65.73 f986be49-667c-4249-b17c-7e3409879a4b 2019-09-13 01:14:50.169822 15668 1078 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 425\namount: !ruby/object:BigDecimal 18:0.37141E3\ntax: !ruby/object:BigDecimal 18:0.2759E2\ndiscount: !ruby/object:BigDecimal 18:0.199E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2019-09-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-605\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 acaa05d3-a392-4e14-ab58-fb8093920067 2019-09-13 01:15:00.054059 15669 98 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.63.76 acaa05d3-a392-4e14-ab58-fb8093920067 2019-09-13 01:15:00.081949 15670 1078 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 0fba08d1-b8ba-4539-9f91-d550e2b3b138 2019-09-13 01:15:05.159 15671 1487 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 425\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 1078\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-605\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-605 187.149.63.76 0fba08d1-b8ba-4539-9f91-d550e2b3b138 2019-09-13 01:15:05.178503 15672 425 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 425\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1767E4\namount_out: !ruby/object:BigDecimal 18:0.7E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.1119E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1819E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.63.76 1cdf71e4-2c47-4af3-9d69-55be6693eb40 2019-09-13 01:30:16.973247 15673 425 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 1cdf71e4-2c47-4af3-9d69-55be6693eb40 2019-09-13 01:30:16.98779 15674 1488 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 426\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E2\nmove_type: '1'\nsale_id: 1077\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.65.73 877bbb3c-5a23-4f80-a747-e384e7985be0 2019-09-13 02:02:37.572519 15675 1488 CashRegistersMove \N \N 23 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV3-V-29 189.186.65.73 877bbb3c-5a23-4f80-a747-e384e7985be0 2019-09-13 02:02:37.595817 15676 426 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 426\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.508E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.1127E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1627E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.65.73 71a165d9-2bc6-4c57-a8b7-a90432ad23fe 2019-09-13 02:03:40.324152 15677 426 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.65.73 71a165d9-2bc6-4c57-a8b7-a90432ad23fe 2019-09-13 02:03:40.338778 15678 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-12 18:24:47.661552000 Z\n- &1 2019-09-12 20:33:35.918797000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-13 02:11:16.508934444 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938099\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\nsign_in_count:\n- 622\n- 623\n 1246 \N 189.186.2.140 a9b443af-9839-40f7-86b8-8cbc9bd8a591 2019-09-13 02:11:16.517412 15679 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1gZUz9NJTL2FNjksq56g\n- eNbKwCJVFafPWUv94oaL\n 1247 \N 189.186.2.140 a9b443af-9839-40f7-86b8-8cbc9bd8a591 2019-09-13 02:11:16.539375 15680 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-12 20:06:11.248829000 Z\n- &1 2019-09-13 01:02:34.052464000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-13 15:57:13.896820137 Z\nsign_in_count:\n- 19\n- 20\n 43 \N 187.149.63.76 cd7993ca-afee-4f89-85d6-d3608970dbcf 2019-09-13 15:57:13.924951 15681 8 User \N \N 8 User \N update ---\nunique_session_id:\n- gLefXoQbfgbmZCKo5xKG\n- ozkMsufCJE49KqzE8F35\n 44 \N 187.149.63.76 cd7993ca-afee-4f89-85d6-d3608970dbcf 2019-09-13 15:57:13.946185 15682 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-13 01:02:34.052464000 Z\n- &1 2019-09-13 15:57:13.896820000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-13 18:25:23.762013465 Z\nsign_in_count:\n- 20\n- 21\n 45 \N 187.149.63.76 b7a6fa2c-5ce0-48aa-9f38-fe24a3655f49 2019-09-13 18:25:23.767207 15683 8 User \N \N 8 User \N update ---\nunique_session_id:\n- ozkMsufCJE49KqzE8F35\n- 9zpyGFNutj4UYmEvM79x\n 46 \N 187.149.63.76 b7a6fa2c-5ce0-48aa-9f38-fe24a3655f49 2019-09-13 18:25:23.78008 15684 427 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.10003E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1000.3 187.149.63.76 529cbb4e-111d-4eb2-8092-0ca5cd1ae6fc 2019-09-13 18:25:40.872331 15685 1079 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 427\namount: !ruby/object:BigDecimal 18:0.100486E4\ntax: !ruby/object:BigDecimal 18:0.8414E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1089E4\nstatus: 0\ndate_sale: 2019-09-13\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-443\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 6a25f28f-ac15-46a2-a032-115436a8907c 2019-09-13 18:29:22.226324 15686 513 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.63.76 6a25f28f-ac15-46a2-a032-115436a8907c 2019-09-13 18:29:22.258881 15687 753 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.63.76 6a25f28f-ac15-46a2-a032-115436a8907c 2019-09-13 18:29:22.292077 15688 1079 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 ae50dd75-3735-45f0-adb6-4746b0dbff9a 2019-09-13 18:29:33.317702 15689 1489 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 427\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.61E3\nmove_type: '1'\nsale_id: 1079\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-443\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.61E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-443 187.149.63.76 ae50dd75-3735-45f0-adb6-4746b0dbff9a 2019-09-13 18:29:33.339207 15761 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Pb3zhwrmzduH9yu4wzLR\n- LywszuswNDNyjv4sApiZ\n 1253 \N 189.186.2.140 d2956bb1-8490-4caa-9986-e234fc037e8e 2019-09-14 02:27:37.483661 15690 1490 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 427\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.479E3\nmove_type: '1'\nsale_id: 1079\ncardnumber: 1111\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-443\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-443 187.149.63.76 86013445-9128-49be-b594-865b3e5c1c53 2019-09-13 18:29:49.702363 15691 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-12 01:12:15.421106000 Z\n- &1 2019-09-12 01:51:45.110566000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-13 19:05:42.145813005 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120793\n mask_addr: 4294967295\nsign_in_count:\n- 15\n- 16\n 33 \N 189.186.145.153 b814e43e-5cdb-4030-a8c3-e6463f627a37 2019-09-13 19:05:42.153149 15692 21 User \N \N 21 User \N update ---\nunique_session_id:\n- MR4FLcvKzs3zxun3fsgQ\n- Kx5wB1BMNbErdUjB5UDq\n 34 \N 189.186.145.153 b814e43e-5cdb-4030-a8c3-e6463f627a37 2019-09-13 19:05:42.167598 15693 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-13 15:57:13.896820000 Z\n- &1 2019-09-13 18:25:23.762013000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-13 19:13:35.094413225 Z\nsign_in_count:\n- 21\n- 22\n 47 \N 187.149.63.76 e890e6b1-8f8b-4ae9-a2f6-15378e391f93 2019-09-13 19:13:35.100723 15694 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 9zpyGFNutj4UYmEvM79x\n- sPYiBusUgJyw_ygk8rR4\n 48 \N 187.149.63.76 e890e6b1-8f8b-4ae9-a2f6-15378e391f93 2019-09-13 19:13:35.114197 15695 1491 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 303\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 836\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1234'\n 1 \N 187.149.63.76 3e8a2220-5915-4f34-92e6-07aa9f4c4dd2 2019-09-13 19:14:16.631382 15696 1491 CashRegistersMove \N \N 8 User \N update ---\nopen_cash_register_id:\n- 303\n- 427\n 2 movimiento de efectivo por venta con folio PV1-V-474 187.149.63.76 3e8a2220-5915-4f34-92e6-07aa9f4c4dd2 2019-09-13 19:14:16.654986 15697 1080 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 427\namount: !ruby/object:BigDecimal 18:0.675E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.675E3\nstatus: 0\ndate_sale: 2019-09-13\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-444\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 cbc0642e-8a72-445e-bd0d-9f4b0f2536f3 2019-09-13 19:27:45.585054 15698 490 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 187.149.63.76 cbc0642e-8a72-445e-bd0d-9f4b0f2536f3 2019-09-13 19:27:45.624239 15699 1080 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 785abf6b-2b72-4f1f-a956-60dcf2de5d04 2019-09-13 19:28:22.358432 15700 1492 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 427\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.675E3\nmove_type: '1'\nsale_id: 1080\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-444\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.675E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-444 187.149.63.76 785abf6b-2b72-4f1f-a956-60dcf2de5d04 2019-09-13 19:28:22.384492 15701 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-12 20:33:35.918797000 Z\n- &1 2019-09-13 02:11:16.508934000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-13 20:01:26.636824244 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 623\n- 624\n 1248 \N 187.149.63.76 38c768fc-b67a-41b9-85c4-ef9d97ff3404 2019-09-13 20:01:26.655005 15702 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eNbKwCJVFafPWUv94oaL\n- QLQz-5xw2WkFoYFrzgKh\n 1249 \N 187.149.63.76 38c768fc-b67a-41b9-85c4-ef9d97ff3404 2019-09-13 20:01:26.673539 15703 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-11 17:24:07.759378000 Z\n- &1 2019-09-12 22:19:25.939501000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-13 20:18:54.770863208 Z\nsign_in_count:\n- 316\n- 317\n 637 \N 187.149.63.76 49d7b524-f3a9-4804-8caf-c0b1f4051423 2019-09-13 20:18:54.777666 15704 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 4LmCkjejoUuatK6j3caG\n- 7AX1EeWHzpsbSX5civ87\n 638 \N 187.149.63.76 49d7b524-f3a9-4804-8caf-c0b1f4051423 2019-09-13 20:18:54.794015 15705 428 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1119E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1119.0 187.149.63.76 91cc9f3c-bf92-4703-b88d-8e3893229301 2019-09-13 20:20:34.906075 15706 1081 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 428\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-09-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-606\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 5ccab178-24a1-4558-a51e-ef50dd0fab9e 2019-09-13 20:21:49.807399 15707 703 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.63.76 5ccab178-24a1-4558-a51e-ef50dd0fab9e 2019-09-13 20:21:49.831088 15708 1081 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 edea9109-ff4f-4802-9d66-8bb130dbb71c 2019-09-13 20:22:13.464882 15709 1493 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 428\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 1081\ncardnumber: 7338\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-606\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-606 187.149.63.76 edea9109-ff4f-4802-9d66-8bb130dbb71c 2019-09-13 20:22:13.484868 15710 1082 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 428\namount: !ruby/object:BigDecimal 18:0.579E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.579E3\nstatus: 0\ndate_sale: 2019-09-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-607\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 58423fc8-3bf5-4a56-a662-e710ceb8bd29 2019-09-13 20:52:58.058569 15711 633 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.63.76 58423fc8-3bf5-4a56-a662-e710ceb8bd29 2019-09-13 20:52:58.108454 15712 1082 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 f5421cd7-4220-4dc2-bd10-8b790812a4ac 2019-09-13 20:53:13.191302 15713 1494 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 428\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.579E3\nmove_type: '1'\nsale_id: 1082\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-607\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.579E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-607 187.149.63.76 f5421cd7-4220-4dc2-bd10-8b790812a4ac 2019-09-13 20:53:13.212563 15714 1083 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 428\namount: !ruby/object:BigDecimal 18:0.60417E3\ntax: !ruby/object:BigDecimal 18:0.4483E2\ndiscount: !ruby/object:BigDecimal 18:0.324E3\ntotal: !ruby/object:BigDecimal 18:0.325E3\nstatus: 0\ndate_sale: 2019-09-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-608\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 349dd2b5-f55c-4b18-b2ed-2f36d071ecea 2019-09-13 20:58:44.083694 15715 113 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.63.76 349dd2b5-f55c-4b18-b2ed-2f36d071ecea 2019-09-13 20:58:44.117547 15716 1083 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 7748fa74-8106-4e0f-8823-210c19358517 2019-09-13 20:58:51.663269 15717 1495 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 428\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.325E3\nmove_type: '1'\nsale_id: 1083\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-608\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.325E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-608 187.149.63.76 7748fa74-8106-4e0f-8823-210c19358517 2019-09-13 20:58:51.69044 15718 1084 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 428\namount: !ruby/object:BigDecimal 18:0.679E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.679E3\nstatus: 0\ndate_sale: 2019-09-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-609\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 041303cd-f42b-4efc-9eac-1e52d2afc5f3 2019-09-13 21:34:38.245014 15719 705 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.63.76 041303cd-f42b-4efc-9eac-1e52d2afc5f3 2019-09-13 21:34:38.272408 15720 1084 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 e136e9b3-ba7a-459f-b8fa-3158d1a9af15 2019-09-13 21:35:02.438737 15721 1496 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 428\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.679E3\nmove_type: '1'\nsale_id: 1084\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-609\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.679E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-609 187.149.63.76 e136e9b3-ba7a-459f-b8fa-3158d1a9af15 2019-09-13 21:35:02.46699 15722 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-13 18:25:23.762013000 Z\n- &1 2019-09-13 19:13:35.094413000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-13 21:53:59.901513295 Z\nsign_in_count:\n- 22\n- 23\n 49 \N 187.149.63.76 7105ee32-2574-47d0-b1e5-2cce96c14170 2019-09-13 21:53:59.90889 15723 8 User \N \N 8 User \N update ---\nunique_session_id:\n- sPYiBusUgJyw_ygk8rR4\n- vfrQ_jtMdt423x66T3nY\n 50 \N 187.149.63.76 7105ee32-2574-47d0-b1e5-2cce96c14170 2019-09-13 21:53:59.919982 15724 743 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.63.76 a3612ff8-1e27-4715-bf77-73fb18594ba6 2019-09-13 21:54:20.539839 15725 188 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-09-13\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.63.76 babafd7b-ea6a-4f32-b7fc-f5708b7d8e91 2019-09-13 21:54:23.261503 15726 187 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-13\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.63.76 156c0e4b-08e9-4035-96cd-961bf0aa62ca 2019-09-13 21:54:34.867172 15727 803 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 187.149.63.76 156c0e4b-08e9-4035-96cd-961bf0aa62ca 2019-09-13 21:54:34.885899 15728 188 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-13\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.63.76 a4f8f0aa-3396-4375-8ba6-a6f666bd4b32 2019-09-13 21:54:41.498794 15729 1009 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 622\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 a4f8f0aa-3396-4375-8ba6-a6f666bd4b32 2019-09-13 21:54:41.520845 15730 184 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-13\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.63.76 40f974da-4f34-44ba-bf07-7d6dcc4a6fcc 2019-09-13 21:54:47.738146 15731 1010 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 711\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 40f974da-4f34-44ba-bf07-7d6dcc4a6fcc 2019-09-13 21:54:47.763619 15732 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-09-10 22:43:52.034083000 Z\n- &1 2019-09-12 23:43:40.173057000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-13 21:58:51.275847336 Z\nsign_in_count:\n- 75\n- 76\n 152 \N 187.149.63.76 b028c226-b37a-488b-afea-351a34e855d4 2019-09-13 21:58:51.282489 15733 1 User \N \N 1 User \N update ---\nunique_session_id:\n- fKPWzvjrPPTFSUbWhn84\n- vTKmQjFzT1rmx5n7QQxz\n 153 \N 187.149.63.76 b028c226-b37a-488b-afea-351a34e855d4 2019-09-13 21:58:51.297292 15734 1085 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 427\namount: !ruby/object:BigDecimal 18:0.1188E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1188E4\nstatus: 0\ndate_sale: 2019-09-13\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-445\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 152b13bd-0e63-4b87-b2a9-190a722ae5d3 2019-09-13 22:05:50.751465 15735 1009 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.63.76 152b13bd-0e63-4b87-b2a9-190a722ae5d3 2019-09-13 22:05:50.777953 15736 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 187.149.63.76 152b13bd-0e63-4b87-b2a9-190a722ae5d3 2019-09-13 22:05:50.800843 15737 1085 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 ef2f7562-8184-4bff-b76c-b8747c6d1891 2019-09-13 22:07:14.128271 15738 1497 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 427\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1188E4\nmove_type: '1'\nsale_id: 1085\ncardnumber: 1111\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-445\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-445 187.149.63.76 ef2f7562-8184-4bff-b76c-b8747c6d1891 2019-09-13 22:07:14.155382 15739 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-13 02:11:16.508934000 Z\n- &1 2019-09-13 20:01:26.636824000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-13 22:12:19.606635527 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 624\n- 625\n 1250 \N 187.149.63.76 7aab57e1-4861-41ff-8d66-5db6b9e448be 2019-09-13 22:12:19.613844 15740 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QLQz-5xw2WkFoYFrzgKh\n- Pb3zhwrmzduH9yu4wzLR\n 1251 \N 187.149.63.76 7aab57e1-4861-41ff-8d66-5db6b9e448be 2019-09-13 22:12:19.629728 15741 184 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 428\nquantity: !ruby/object:BigDecimal 18:0.44E3\nstatus: 1\nobservations: aretes y labial pagado con tarjeta\nexpense_date: 2019-09-13\nexpense_code: PV1-E-141\n 1 Egreso por 440.0 registrado 187.149.63.76 0775196c-8dcb-44ae-b487-4fc1c83faac4 2019-09-13 22:26:02.402546 15742 1498 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 428\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.44E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 184\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.63.76 0775196c-8dcb-44ae-b487-4fc1c83faac4 2019-09-13 22:26:02.422979 15743 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-13 19:13:35.094413000 Z\n- &1 2019-09-13 21:53:59.901513000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-14 01:36:16.307807085 Z\nsign_in_count:\n- 23\n- 24\n 51 \N 187.149.63.76 f0f98be6-5cc4-47c1-bb40-30ba06817985 2019-09-14 01:36:16.314629 15744 8 User \N \N 8 User \N update ---\nunique_session_id:\n- vfrQ_jtMdt423x66T3nY\n- Uz8Uh2-6B_ZX59RR49zr\n 52 \N 187.149.63.76 f0f98be6-5cc4-47c1-bb40-30ba06817985 2019-09-14 01:36:16.33103 15745 427 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 427\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.3352E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 27:0.10853000000000002E4\nphysical_cash: !ruby/object:BigDecimal 18:0.22853E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.63.76 cfda2996-e9d9-41db-a4d2-63bdc734f247 2019-09-14 01:39:50.634287 15746 427 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 cfda2996-e9d9-41db-a4d2-63bdc734f247 2019-09-14 01:39:50.649199 15747 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-13 21:53:59.901513000 Z\n- &1 2019-09-14 01:36:16.307807000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-14 01:46:52.035269619 Z\nsign_in_count:\n- 24\n- 25\n 53 \N 187.149.63.76 030ef85f-7b8d-4a8f-8237-0ead8ebef1e6 2019-09-14 01:46:52.042644 15748 8 User \N \N 8 User \N update ---\nunique_session_id:\n- Uz8Uh2-6B_ZX59RR49zr\n- V63gsCCJF7QFjsxSFxo_\n 54 \N 187.149.63.76 030ef85f-7b8d-4a8f-8237-0ead8ebef1e6 2019-09-14 01:46:52.057377 15749 429 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.10853E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1085.3 187.149.63.76 d7e94ada-3036-4366-b549-e8f8d142b553 2019-09-14 01:56:48.835486 15750 1086 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 429\namount: !ruby/object:BigDecimal 18:0.625E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.625E3\nstatus: 0\ndate_sale: 2019-09-13\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-446\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 546bca4c-33e9-4f89-8881-69a54f1cd84c 2019-09-14 01:57:09.7063 15751 864 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.63.76 546bca4c-33e9-4f89-8881-69a54f1cd84c 2019-09-14 01:57:09.741088 15752 1086 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 8334295f-683c-4e1e-816a-abb003950299 2019-09-14 01:57:48.59736 15753 1499 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 429\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.625E3\nmove_type: '1'\nsale_id: 1086\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-446\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.625E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-446 187.149.63.76 8334295f-683c-4e1e-816a-abb003950299 2019-09-14 01:57:48.619918 15754 428 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 429\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.625E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.625E3\ncash_fund: !ruby/object:BigDecimal 18:0.10853E4\nphysical_cash: !ruby/object:BigDecimal 18:0.17103E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.63.76 bf5478a9-79be-47d1-84b4-afe7d28657b3 2019-09-14 01:59:36.212268 15755 429 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 bf5478a9-79be-47d1-84b4-afe7d28657b3 2019-09-14 01:59:36.227385 15756 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-12 22:19:25.939501000 Z\n- &1 2019-09-13 20:18:54.770863000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-14 02:00:37.101615434 Z\nsign_in_count:\n- 317\n- 318\n 639 \N 187.149.63.76 afc734de-da84-4b9b-bc1e-d03c499c049b 2019-09-14 02:00:37.110073 15757 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 7AX1EeWHzpsbSX5civ87\n- kcsK6Q1yzb9mjnvSywS1\n 640 \N 187.149.63.76 afc734de-da84-4b9b-bc1e-d03c499c049b 2019-09-14 02:00:37.127419 15758 429 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 428\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2882E4\namount_out: !ruby/object:BigDecimal 18:0.44E3\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.762E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2262E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.63.76 c9c71185-29af-4a6e-a893-b7ac38ab2535 2019-09-14 02:05:15.030675 15759 428 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 c9c71185-29af-4a6e-a893-b7ac38ab2535 2019-09-14 02:05:15.05003 15760 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-13 20:01:26.636824000 Z\n- &1 2019-09-13 22:12:19.606635000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-14 02:27:37.429687474 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\nsign_in_count:\n- 625\n- 626\n 1252 \N 189.186.2.140 d2956bb1-8490-4caa-9986-e234fc037e8e 2019-09-14 02:27:37.459378 15762 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-13 20:18:54.770863000 Z\n- &1 2019-09-14 02:00:37.101615000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-14 16:24:14.848949752 Z\nsign_in_count:\n- 318\n- 319\n 641 \N 187.149.63.76 4462d36c-2f37-4d8d-adcf-27d9713a59d5 2019-09-14 16:24:14.87557 15763 2 User \N \N 2 User \N update ---\nunique_session_id:\n- kcsK6Q1yzb9mjnvSywS1\n- Z54RrsaqcXZe-mRfTFUX\n 642 \N 187.149.63.76 4462d36c-2f37-4d8d-adcf-27d9713a59d5 2019-09-14 16:24:14.895513 15764 430 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.762E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 762.0 187.149.63.76 19512d1a-f728-446c-8f88-94141b29cb75 2019-09-14 16:24:49.443934 15765 1087 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 430\namount: !ruby/object:BigDecimal 18:0.112972E4\ntax: !ruby/object:BigDecimal 18:0.4828E2\ndiscount: !ruby/object:BigDecimal 18:0.279E3\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-09-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-610\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 6035449e-4ce6-47d6-a694-b52182b03b7b 2019-09-14 16:27:07.987618 15766 707 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 13 \N 187.149.63.76 6035449e-4ce6-47d6-a694-b52182b03b7b 2019-09-14 16:27:08.016175 15767 81 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.63.76 6035449e-4ce6-47d6-a694-b52182b03b7b 2019-09-14 16:27:08.048833 15768 1087 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 af66d4e3-b254-4533-9be5-0815e09a756c 2019-09-14 16:27:14.263692 15769 1500 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 430\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 1087\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-610\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-610 187.149.63.76 af66d4e3-b254-4533-9be5-0815e09a756c 2019-09-14 16:27:14.283832 15770 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-12 01:51:45.110566000 Z\n- &1 2019-09-13 19:05:42.145813000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-14 16:45:00.909735254 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120793\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120793\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099001\n mask_addr: 4294967295\nsign_in_count:\n- 16\n- 17\n 35 \N 189.186.60.121 c14ceeb7-627e-4d69-b02a-43addb4db4d3 2019-09-14 16:45:00.917169 15771 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Kx5wB1BMNbErdUjB5UDq\n- uzHXLFLsfuohy41Npy9w\n 36 \N 189.186.60.121 c14ceeb7-627e-4d69-b02a-43addb4db4d3 2019-09-14 16:45:00.931057 15772 431 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1127E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1127.0 189.186.60.121 d75cbd4f-3e42-47f7-8543-45275b9d4830 2019-09-14 16:59:01.051969 15773 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-11 19:58:29.463708000 Z\n- &1 2019-09-12 20:25:09.021860000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-14 17:35:32.541972622 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183100233\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183100233\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099001\n mask_addr: 4294967295\nsign_in_count:\n- 5\n- 6\n 12 \N 189.186.60.121 142f7e3e-06f5-491a-9f7d-11995c9e33cf 2019-09-14 17:35:32.563234 15774 23 User \N \N 23 User \N update ---\nunique_session_id:\n- CaaVm2YXSHDRywJtVJgz\n- mxy5B9nNEzePSaGLLXCq\n 13 \N 189.186.60.121 142f7e3e-06f5-491a-9f7d-11995c9e33cf 2019-09-14 17:35:32.581243 15775 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-09-10 00:59:37.550358000 Z\n- &1 2019-09-10 18:29:33.424399000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-14 17:37:51.279662413 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\nsign_in_count:\n- 138\n- 139\n 280 \N 189.186.2.140 66846dd5-5442-4fc4-9cd8-78b5a69d5b19 2019-09-14 17:37:51.286039 15776 10 User \N \N 10 User \N update ---\nunique_session_id:\n- hyTjyCcnGqoUoPBBMz7E\n- xMNxrNsTnS4uh53u8Wnw\n 281 \N 189.186.2.140 66846dd5-5442-4fc4-9cd8-78b5a69d5b19 2019-09-14 17:37:51.299599 15777 432 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.10853E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1085.3 189.186.2.140 373d2e3d-d5f6-42e9-8315-cbbd4581bba4 2019-09-14 17:37:54.597141 15778 175 Customer \N \N 23 User \N create ---\nnick_name: LOURDES AISPURO\nphone: "(667) 413-5666"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LOURDES AISPURO fue registrado. 189.186.60.121 39a55a61-33e1-4095-8bf6-12fa64375de3 2019-09-14 17:39:40.136957 15779 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-11 01:51:12.519826000 Z\n- &1 2019-09-11 18:25:47.613787000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-14 17:41:05.416488563 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183130269\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\nsign_in_count:\n- 33\n- 34\n 69 \N 189.186.2.140 c13bd3e4-5395-4256-ad14-0387f794a866 2019-09-14 17:41:05.4235 15780 18 User \N \N 18 User \N update ---\nunique_session_id:\n- z89rjH8x5NcstHGbUe7Y\n- 7ExPQ7rxL4zrNLv9WDyD\n 70 \N 189.186.2.140 c13bd3e4-5395-4256-ad14-0387f794a866 2019-09-14 17:41:05.437929 15781 1088 Sale \N \N 18 User \N create ---\ncustomer_id: 56\nuser_id: 18\nopen_cash_register_id: 431\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-09-14\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-30\nexpiration_date: 2019-10-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.2.140 bab565d3-b720-4313-9bb1-8ff73d5e5b4a 2019-09-14 17:43:48.829883 15782 981 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.2.140 bab565d3-b720-4313-9bb1-8ff73d5e5b4a 2019-09-14 17:43:48.858933 15783 1088 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-30 cancelada. 189.186.2.140 71185615-1148-4533-9647-40487fb45e53 2019-09-14 17:44:35.579423 15784 981 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.2.140 71185615-1148-4533-9647-40487fb45e53 2019-09-14 17:44:35.600627 15785 1089 Sale \N \N 23 User \N create ---\ncustomer_id: 175\nuser_id: 23\nopen_cash_register_id: 431\namount: !ruby/object:BigDecimal 18:0.1987E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1987E4\nstatus: 0\ndate_sale: 2019-09-14\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-31\nexpiration_date: 2019-10-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.60.121 6422c67b-cfe6-469a-a5fe-b83fc5a28a7d 2019-09-14 17:55:49.555398 15786 812 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.17E2\n- !ruby/object:BigDecimal 18:0.16E2\n 3 \N 189.186.60.121 6422c67b-cfe6-469a-a5fe-b83fc5a28a7d 2019-09-14 17:55:49.587486 15787 838 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.60.121 6422c67b-cfe6-469a-a5fe-b83fc5a28a7d 2019-09-14 17:55:49.614852 15788 814 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 2 \N 189.186.60.121 6422c67b-cfe6-469a-a5fe-b83fc5a28a7d 2019-09-14 17:55:49.641235 15789 1501 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 431\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 1089\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-31\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-31 189.186.60.121 f10dabe8-9e40-4bc3-b53d-b4d44c435d11 2019-09-14 17:56:41.231569 15790 1089 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.60.121 02a385fe-557e-4092-93d3-86e1334bf68e 2019-09-14 17:57:28.214551 15791 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-14 01:36:16.307807000 Z\n- &1 2019-09-14 01:46:52.035269000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-14 18:01:51.267406260 Z\nsign_in_count:\n- 25\n- 26\n 55 \N 187.149.63.76 fcbf4e57-be8c-458a-bb3a-046a7889327a 2019-09-14 18:01:51.272954 15792 8 User \N \N 8 User \N update ---\nunique_session_id:\n- V63gsCCJF7QFjsxSFxo_\n- eByirtQVEkv66jum1H2C\n 56 \N 187.149.63.76 fcbf4e57-be8c-458a-bb3a-046a7889327a 2019-09-14 18:01:51.284802 15793 1502 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 432\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 986\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.299E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-412 187.149.63.76 6fd3155e-abb8-4027-adda-7a04b17d1033 2019-09-14 18:02:31.031592 15794 986 Sale \N \N 8 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.63.76 41847036-45eb-415e-b73b-9113e644718c 2019-09-14 18:02:33.7461 15795 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-13 22:12:19.606635000 Z\n- &1 2019-09-14 02:27:37.429687000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-14 18:27:25.028177317 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 626\n- 627\n 1254 \N 187.149.63.76 cbef6ed1-6c00-40bc-ae2f-e6970f9e1afc 2019-09-14 18:27:25.038323 15796 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LywszuswNDNyjv4sApiZ\n- VnjoRDpQkdcz9rsfDoT2\n 1255 \N 187.149.63.76 cbef6ed1-6c00-40bc-ae2f-e6970f9e1afc 2019-09-14 18:27:25.054184 15797 1090 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 430\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-09-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-611\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 c2c62eac-0599-4498-a40e-00036332abd3 2019-09-14 18:29:41.625464 15798 710 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.63.76 c2c62eac-0599-4498-a40e-00036332abd3 2019-09-14 18:29:41.654655 15799 1090 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 e78dd473-3327-4d83-9cf8-be5e7993fcf6 2019-09-14 18:29:47.76611 15800 1503 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 430\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 1090\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-611\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-611 187.149.63.76 e78dd473-3327-4d83-9cf8-be5e7993fcf6 2019-09-14 18:29:47.78829 15801 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-14 02:27:37.429687000 Z\n- &1 2019-09-14 18:27:25.028177000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-14 18:49:37.455874309 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 627\n- 628\n 1256 \N 187.149.63.76 aeadfe8e-1d1a-470f-8d00-5176870ca1f6 2019-09-14 18:49:37.463117 15802 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VnjoRDpQkdcz9rsfDoT2\n- VcsYPAiS2M6K81_5V-Dy\n 1257 \N 187.149.63.76 aeadfe8e-1d1a-470f-8d00-5176870ca1f6 2019-09-14 18:49:37.476669 15803 1091 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 430\namount: !ruby/object:BigDecimal 18:0.1738E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1738E4\nstatus: 0\ndate_sale: 2019-09-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-612\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 8b372522-0803-45d4-a62e-1e5df974b9f7 2019-09-14 19:05:55.730132 15804 697 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.63.76 8b372522-0803-45d4-a62e-1e5df974b9f7 2019-09-14 19:05:55.755426 15805 788 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 12 \N 187.149.63.76 8b372522-0803-45d4-a62e-1e5df974b9f7 2019-09-14 19:05:55.779026 15806 1091 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 f9ec6b7b-abfe-4914-a9f3-4efdae3e7263 2019-09-14 19:06:04.558896 15807 1504 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 430\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1738E4\nmove_type: '1'\nsale_id: 1091\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-612\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1738E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-612 187.149.63.76 f9ec6b7b-abfe-4914-a9f3-4efdae3e7263 2019-09-14 19:06:04.58405 15808 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-09-12 23:43:40.173057000 Z\n- &1 2019-09-13 21:58:51.275847000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-14 19:09:25.341825712 Z\nsign_in_count:\n- 76\n- 77\n 154 \N 187.149.63.76 2c2dcf8c-b8b0-4b05-8f49-1520922e95a3 2019-09-14 19:09:25.347308 15809 1 User \N \N 1 User \N update ---\nunique_session_id:\n- vTKmQjFzT1rmx5n7QQxz\n- SFt2tpMVtp23JsySBrXy\n 155 \N 187.149.63.76 2c2dcf8c-b8b0-4b05-8f49-1520922e95a3 2019-09-14 19:09:25.359426 15810 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-14 18:27:25.028177000 Z\n- &1 2019-09-14 18:49:37.455874000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-14 19:39:48.523637993 Z\nsign_in_count:\n- 628\n- 629\n 1258 \N 187.149.63.76 aaf42d4d-5c9d-46b7-8242-944887622543 2019-09-14 19:39:48.531685 15811 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VcsYPAiS2M6K81_5V-Dy\n- QQMBb9jCnzsLz8DnXyF3\n 1259 \N 187.149.63.76 aaf42d4d-5c9d-46b7-8242-944887622543 2019-09-14 19:39:48.548624 15812 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-14 01:46:52.035269000 Z\n- &1 2019-09-14 18:01:51.267406000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-14 19:40:18.971212416 Z\nsign_in_count:\n- 26\n- 27\n 57 \N 187.149.63.76 5d237230-ee22-4321-bdab-a597097f26f3 2019-09-14 19:40:18.978882 15813 8 User \N \N 8 User \N update ---\nunique_session_id:\n- eByirtQVEkv66jum1H2C\n- eLyhKTV-TBzLRevubD8V\n 58 \N 187.149.63.76 5d237230-ee22-4321-bdab-a597097f26f3 2019-09-14 19:40:18.994827 15814 1092 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 432\namount: !ruby/object:BigDecimal 18:0.639E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.639E3\nstatus: 0\ndate_sale: 2019-09-14\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-447\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 e5547d33-23f6-4910-9f34-0f7554f79e94 2019-09-14 19:40:40.128302 15815 803 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.63.76 e5547d33-23f6-4910-9f34-0f7554f79e94 2019-09-14 19:40:40.155635 15816 1092 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 ec302971-a3b8-4666-82f1-be41fdb919db 2019-09-14 19:40:49.436883 15817 1505 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 432\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.639E3\nmove_type: '1'\nsale_id: 1092\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-447\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.361E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-447 187.149.63.76 ec302971-a3b8-4666-82f1-be41fdb919db 2019-09-14 19:40:49.457795 15818 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-14 18:49:37.455874000 Z\n- &1 2019-09-14 19:39:48.523637000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-14 20:04:01.455509555 Z\nsign_in_count:\n- 629\n- 630\n 1260 \N 187.149.63.76 59efbd9f-5fc4-43e8-8915-b08f7bb7fd39 2019-09-14 20:04:01.461518 15819 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QQMBb9jCnzsLz8DnXyF3\n- ZTgrxP66F9xV7WR_iXjZ\n 1261 \N 187.149.63.76 59efbd9f-5fc4-43e8-8915-b08f7bb7fd39 2019-09-14 20:04:01.476936 15820 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-14 19:39:48.523637000 Z\n- &1 2019-09-14 20:04:01.455509000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-14 20:04:01.970163229 Z\nsign_in_count:\n- 630\n- 631\n 1262 \N 187.149.63.76 bc295792-4dfb-411f-b40e-85dd79380d89 2019-09-14 20:04:01.975241 15821 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZTgrxP66F9xV7WR_iXjZ\n- 4JR-scPKydqbmeQzvoxe\n 1263 \N 187.149.63.76 bc295792-4dfb-411f-b40e-85dd79380d89 2019-09-14 20:04:01.987695 15822 1506 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 48\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 171\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.63.76 860350e9-4fec-42d4-b55a-9158db7481d6 2019-09-14 20:11:39.44456 15823 1506 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 48\n- 430\n 2 movimiento de efectivo por venta con folio PV2-V-74 187.149.63.76 860350e9-4fec-42d4-b55a-9158db7481d6 2019-09-14 20:11:39.467031 15824 1093 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 432\namount: !ruby/object:BigDecimal 18:0.1987E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1987E4\nstatus: 0\ndate_sale: 2019-09-14\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-448\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 4931924c-8b2f-47cd-b2a2-3f7c9fe87b00 2019-09-14 20:25:06.86182 15825 803 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.63.76 4931924c-8b2f-47cd-b2a2-3f7c9fe87b00 2019-09-14 20:25:06.88752 15826 718 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.63.76 4931924c-8b2f-47cd-b2a2-3f7c9fe87b00 2019-09-14 20:25:06.910343 15827 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 187.149.63.76 4931924c-8b2f-47cd-b2a2-3f7c9fe87b00 2019-09-14 20:25:06.932478 15828 1093 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 8b38ccb8-3571-4464-98db-f4da936501fc 2019-09-14 20:25:16.129656 15829 1507 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 432\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1987E4\nmove_type: '1'\nsale_id: 1093\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-448\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.13E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-448 187.149.63.76 8b38ccb8-3571-4464-98db-f4da936501fc 2019-09-14 20:25:16.156445 15830 1508 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 430\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.619E3\nmove_type: '1'\nsale_id: 1031\ncardnumber: 39\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-590 187.149.63.76 adb309c4-eff0-4948-9ded-73cdff704ec9 2019-09-14 20:33:12.580231 15831 1031 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.63.76 f882dd37-4720-4cd2-b965-b6780b4dfa13 2019-09-14 20:33:15.905232 15832 1094 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 430\namount: !ruby/object:BigDecimal 18:0.1249E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1249E4\nstatus: 0\ndate_sale: 2019-09-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-613\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 64356dfb-ca80-421c-89b0-70269823ae18 2019-09-14 20:38:12.230075 15833 639 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.63.76 64356dfb-ca80-421c-89b0-70269823ae18 2019-09-14 20:38:12.257216 15834 1094 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 bd005679-9384-4e13-92fc-7aa9f4521a9e 2019-09-14 20:39:01.206361 15835 1509 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 430\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1249E4\nmove_type: '1'\nsale_id: 1094\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-613\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1249E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-613 187.149.63.76 bd005679-9384-4e13-92fc-7aa9f4521a9e 2019-09-14 20:39:01.225855 15836 24 User \N \N 4 User \N create ---\nuserid: ROCIOBYSUO\nfirst_name: ROCIO\nlast_name: GUEVARA\nusertype: C\nemail: fjfll@hotmail.com\nencrypted_password: "$2a$10$iwJ6Qayj9s7i72WewoyxnO7ibvyELqfem35Xjorl1P1yjR7n/upL6"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 2\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 187.149.63.76 897347cb-3593-4aa7-b07d-9f8834e3143d 2019-09-14 20:45:29.397516 15837 788 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 13 \N 187.149.63.76 35868af9-81e5-4b83-828f-4c83f7e0fa7f 2019-09-14 20:50:24.825344 15838 791 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 5 \N 187.149.63.76 72d4d735-f446-4a51-b5b3-0ec7407e2f62 2019-09-14 20:50:41.509869 15839 791 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 187.149.63.76 39bf4bd6-b5df-4ed2-be61-63a40a379b26 2019-09-14 20:50:45.064025 15840 189 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-09-14\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.63.76 81aa5561-60d2-4eb1-aabe-11df574a5646 2019-09-14 20:50:46.145475 15841 185 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 430\nquantity: !ruby/object:BigDecimal 18:0.528E3\nstatus: 1\nobservations: sueldo Rocio\nexpense_date: 2019-09-14\nexpense_code: PV1-E-142\n 1 Egreso por 528.0 registrado 187.149.63.76 b391bdc3-0a7c-4412-a369-59141b37366a 2019-09-14 20:57:24.527466 15842 1510 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 430\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.528E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 185\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.63.76 b391bdc3-0a7c-4412-a369-59141b37366a 2019-09-14 20:57:24.548285 15843 189 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-14\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.63.76 04d20b1f-f7e5-42f3-9c32-58bbfeac7b91 2019-09-14 20:59:12.513229 15844 1011 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 673\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 04d20b1f-f7e5-42f3-9c32-58bbfeac7b91 2019-09-14 20:59:12.53317 15845 803 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 187.149.63.76 04d20b1f-f7e5-42f3-9c32-58bbfeac7b91 2019-09-14 20:59:12.550481 15846 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-09-13 21:58:51.275847000 Z\n- &1 2019-09-14 19:09:25.341825000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-14 21:07:02.299869651 Z\nsign_in_count:\n- 77\n- 78\n 156 \N 187.149.63.76 1048c3c4-0834-4c23-b084-d26d77b6045a 2019-09-14 21:07:02.308365 15847 1 User \N \N 1 User \N update ---\nunique_session_id:\n- SFt2tpMVtp23JsySBrXy\n- ay-3E3xBP9eCeUN8rmvz\n 157 \N 187.149.63.76 1048c3c4-0834-4c23-b084-d26d77b6045a 2019-09-14 21:07:02.326163 15848 1511 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 49\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.459E3\nmove_type: '1'\nsale_id: 182\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.459E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.63.76 9e4358bb-677a-405c-a28d-5416b36e476a 2019-09-14 21:12:40.447006 15849 182 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.63.76 9e4358bb-677a-405c-a28d-5416b36e476a 2019-09-14 21:12:40.472043 15850 1511 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 49\n- 430\n 2 movimiento de efectivo por venta con folio PV1-V-104 187.149.63.76 9e4358bb-677a-405c-a28d-5416b36e476a 2019-09-14 21:12:40.496192 15851 798 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.63.76 acf5b7e1-f719-46b2-93f6-6e8e56917b5d 2019-09-14 21:16:59.738976 15852 798 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.63.76 455e308b-d729-451a-8217-2e0a2cc5bc4b 2019-09-14 21:17:02.992435 15853 190 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-09-14\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.63.76 4281e2bb-feb1-4b7f-92bc-a27150f551c8 2019-09-14 21:17:03.399536 15854 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-14 20:04:01.455509000 Z\n- &1 2019-09-14 20:04:01.970163000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-14 21:20:26.022425207 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946446\n mask_addr: 4294967295\nsign_in_count:\n- 631\n- 632\n 1264 \N 200.68.182.206 a1b59dd5-7532-4491-85da-8ca7cb8c727d 2019-09-14 21:20:26.029879 15855 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4JR-scPKydqbmeQzvoxe\n- bdyys3Q-9CaqYNPqyWLj\n 1265 \N 200.68.182.206 a1b59dd5-7532-4491-85da-8ca7cb8c727d 2019-09-14 21:20:26.044912 15856 190 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-14\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.63.76 1178d8e9-4297-4b5d-84bf-5d96bb5d77ca 2019-09-14 21:20:29.510212 15857 1012 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 681\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 1178d8e9-4297-4b5d-84bf-5d96bb5d77ca 2019-09-14 21:20:29.53075 15879 868 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.60.121 c1ab5085-7081-43a1-a405-992d85435c2e 2019-09-15 00:01:14.892357 15858 13 ProductsReturn \N \N 2 User \N create ---\nsale_id: 1052\nuser_id: 2\nreturn_code: PV1-D-7\npointsale_id: 1\nnew_amount: !ruby/object:BigDecimal 18:0.699E3\nreturned_amount: !ruby/object:BigDecimal 18:0.669E3\ndifference_amount: !ruby/object:BigDecimal 18:0.3E2\nis_money_returned: false\n 1 devolución PV1-D-7 creada. 187.149.63.76 e301d47f-fcec-40f2-a7ae-31a0f8d26e49 2019-09-14 21:24:49.144891 15859 525 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.63.76 e301d47f-fcec-40f2-a7ae-31a0f8d26e49 2019-09-14 21:24:49.177777 15860 744 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 19 \N 187.149.63.76 e301d47f-fcec-40f2-a7ae-31a0f8d26e49 2019-09-14 21:24:49.208359 15861 1512 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 430\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E2\nmove_type: '1'\nsale_id: 1052\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 13\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV1-D-7 187.149.63.76 b73199a0-babb-4f89-9c68-4f7b7b60c1e8 2019-09-14 21:24:54.387677 15862 1095 Sale \N \N 2 User \N create ---\ncustomer_id: 36\nuser_id: 2\nopen_cash_register_id: 430\namount: !ruby/object:BigDecimal 18:0.759E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2019-09-14\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-614\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 4f2b4c47-0d51-47f0-8527-cb5a3b89acf6 2019-09-14 21:51:16.090363 15863 1012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.63.76 4f2b4c47-0d51-47f0-8527-cb5a3b89acf6 2019-09-14 21:51:16.119555 15864 1096 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 431\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-09-14\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-32\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.60.121 f4d75abb-c06b-490e-9418-078c3072a4bb 2019-09-14 22:26:29.447248 15865 858 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.60.121 f4d75abb-c06b-490e-9418-078c3072a4bb 2019-09-14 22:26:29.473597 15866 1096 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.60.121 d7e8fc8e-4ee8-4657-a193-ab6c2a4cb0c6 2019-09-14 22:26:36.443912 15867 1513 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 431\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 1096\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-32\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.401E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-32 189.186.60.121 d7e8fc8e-4ee8-4657-a193-ab6c2a4cb0c6 2019-09-14 22:26:36.465155 15868 1097 Sale \N \N 8 User \N create ---\ncustomer_id: 134\nuser_id: 8\nopen_cash_register_id: 432\namount: !ruby/object:BigDecimal 18:0.958E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.958E3\nstatus: 0\ndate_sale: 2019-09-14\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-449\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 a3e362f0-1d0b-49d1-bced-2e641b39541f 2019-09-14 22:40:05.278336 15869 753 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.63.76 a3e362f0-1d0b-49d1-bced-2e641b39541f 2019-09-14 22:40:05.303555 15870 1097 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-449 cancelada. 187.149.63.76 e264a61b-7eec-4039-8dd7-00c440fab9c5 2019-09-14 22:40:10.259042 15871 753 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.63.76 e264a61b-7eec-4039-8dd7-00c440fab9c5 2019-09-14 22:40:10.282429 15872 1098 Sale \N \N 8 User \N create ---\ncustomer_id: 134\nuser_id: 8\nopen_cash_register_id: 432\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-09-14\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-450\nexpiration_date: 2019-10-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 8ae14a64-bbbd-4620-bd71-9bb795ba6a63 2019-09-14 22:40:33.334485 15873 753 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.63.76 8ae14a64-bbbd-4620-bd71-9bb795ba6a63 2019-09-14 22:40:33.359588 15874 1514 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 432\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 1098\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-450\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-450 187.149.63.76 86f8d3e3-8d62-45c9-a0d9-a3741bda4e9e 2019-09-14 22:40:40.486008 15875 1098 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.63.76 03e5476b-cc58-4cb4-97dd-8c04b81e469d 2019-09-14 22:40:41.910903 15876 1515 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 432\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1098\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-450 187.149.63.76 eb902855-5509-4278-a4f7-c2eb45fe8d8e 2019-09-14 22:41:22.394701 15877 1516 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 432\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E1\nmove_type: '1'\nsale_id: 1098\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E1\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-450 187.149.63.76 135195de-2f1d-49b2-8829-ce2f8cc3a0d1 2019-09-14 22:41:39.237889 15878 1099 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 431\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-09-14\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-33\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.60.121 c1ab5085-7081-43a1-a405-992d85435c2e 2019-09-15 00:01:14.862068 15881 1517 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 431\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 1099\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-33\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-33 189.186.60.121 bf497a4d-4fa6-42e6-9a67-f056b01c92fd 2019-09-15 00:01:22.752475 15882 1100 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 432\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-09-14\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-451\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 48385e0f-c44c-4c52-b073-16f528880093 2019-09-15 00:27:08.196848 15883 877 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.63.76 48385e0f-c44c-4c52-b073-16f528880093 2019-09-15 00:27:08.233106 15884 1100 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 4943e76d-2c2a-4ee1-8ec7-c8a7106abb41 2019-09-15 00:27:13.907438 15885 1518 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 432\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 1100\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-451\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.13E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-451 187.149.63.76 4943e76d-2c2a-4ee1-8ec7-c8a7106abb41 2019-09-15 00:27:13.927665 15886 1518 CashRegistersMove \N \N 8 User \N destroy ---\nopen_cash_register_id: 432\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 1100\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-451\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.13E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.63.76 063a3509-ead3-4f2e-8321-a9f2251767b9 2019-09-15 00:27:17.339196 15887 1519 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 432\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 1100\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-451\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-451 187.149.63.76 73db3f92-1feb-415a-aa5c-ccf319741d60 2019-09-15 00:27:23.157111 15888 1101 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 432\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-09-14\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-452\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 05ca49ab-d98b-4b19-9c76-93455852523e 2019-09-15 00:34:50.069166 15889 652 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.63.76 05ca49ab-d98b-4b19-9c76-93455852523e 2019-09-15 00:34:50.09834 15890 1101 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-452 cancelada. 187.149.63.76 3e845469-9cfc-4447-905c-601a280a6154 2019-09-15 00:35:59.378536 15891 652 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.63.76 3e845469-9cfc-4447-905c-601a280a6154 2019-09-15 00:35:59.399955 15892 1101 Sale \N \N 8 User \N update --- {}\n 3 Venta PV2-V-452 cancelada. 187.149.63.76 8ec25366-9610-4d3d-91f6-75b71bd54cbb 2019-09-15 00:36:01.256501 15893 652 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.63.76 8ec25366-9610-4d3d-91f6-75b71bd54cbb 2019-09-15 00:36:01.274551 15894 1102 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 432\namount: !ruby/object:BigDecimal 18:0.2498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2498E4\nstatus: 0\ndate_sale: 2019-09-14\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-453\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 eab7fc93-9501-4366-83b9-70799a090900 2019-09-15 00:36:31.707261 15895 877 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.63.76 eab7fc93-9501-4366-83b9-70799a090900 2019-09-15 00:36:31.734482 15896 652 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.63.76 eab7fc93-9501-4366-83b9-70799a090900 2019-09-15 00:36:31.757175 15897 1102 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 80e55f4c-49af-4f36-ac27-c79ee6fba9db 2019-09-15 00:36:51.712967 15898 1520 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 432\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2498E4\nmove_type: '1'\nsale_id: 1102\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-453\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.26E4\nchange: !ruby/object:BigDecimal 18:0.102E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-453 187.149.63.76 80e55f4c-49af-4f36-ac27-c79ee6fba9db 2019-09-15 00:36:51.732416 15899 1103 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 432\namount: !ruby/object:BigDecimal 18:0.639E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.639E3\nstatus: 0\ndate_sale: 2019-09-14\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-454\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 f894a53a-a757-4902-b68b-bdea5b8f151e 2019-09-15 00:42:27.778418 15900 803 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 187.149.63.76 f894a53a-a757-4902-b68b-bdea5b8f151e 2019-09-15 00:42:27.819317 15901 1103 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 271e7730-7a28-4acf-9187-3f1a4d15c3a0 2019-09-15 00:43:38.434383 15902 1521 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 432\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.639E3\nmove_type: '1'\nsale_id: 1103\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-454\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.65E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-454 187.149.63.76 271e7730-7a28-4acf-9187-3f1a4d15c3a0 2019-09-15 00:43:38.464962 15903 430 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 430\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6693E4\namount_out: !ruby/object:BigDecimal 18:0.528E3\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.525E4\ncash_fund: !ruby/object:BigDecimal 18:0.1058E4\nphysical_cash: !ruby/object:BigDecimal 18:0.6308E4\nobservations: "$5000 ENTREGUE A SAM $250 ARETES PAGADOS CON TARJETA"\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.63.76 a22bfccd-3ddf-47cf-a547-5a420b7f0d9e 2019-09-15 01:16:59.979688 15904 430 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 a22bfccd-3ddf-47cf-a547-5a420b7f0d9e 2019-09-15 01:16:59.994566 15905 431 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 432\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.7512E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.75E4\ncash_fund: !ruby/object:BigDecimal 18:0.1096E4\nphysical_cash: !ruby/object:BigDecimal 18:0.8596E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.63.76 79babcde-075d-45be-b9a5-59a5e9550643 2019-09-15 01:31:50.378127 15906 432 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 79babcde-075d-45be-b9a5-59a5e9550643 2019-09-15 01:31:50.392308 15907 432 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 431\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.3598E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.37E4\ncash_fund: !ruby/object:BigDecimal 18:0.1025E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4725E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.60.121 e1467087-065c-4c91-bdd4-c497d348e30e 2019-09-15 02:07:36.38994 15908 431 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.60.121 e1467087-065c-4c91-bdd4-c497d348e30e 2019-09-15 02:07:36.410476 15909 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-12 20:25:09.021860000 Z\n- &1 2019-09-14 17:35:32.541972000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-15 16:05:18.216659829 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183100233\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099001\n mask_addr: 4294967295\nsign_in_count:\n- 6\n- 7\n 14 \N 189.186.60.121 dc8f21c0-b6cc-4e57-af05-40212d0e8ff1 2019-09-15 16:05:18.24573 15910 23 User \N \N 23 User \N update ---\nunique_session_id:\n- mxy5B9nNEzePSaGLLXCq\n- LTeiuM3nSdyhegwT5ocA\n 15 \N 189.186.60.121 dc8f21c0-b6cc-4e57-af05-40212d0e8ff1 2019-09-15 16:05:18.268037 15911 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 19:03:29.717134000 Z\n- &1 2019-09-07 20:11:59.083986000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-15 16:17:04.133694785 Z\nsign_in_count:\n- 85\n- 86\n 172 \N 187.149.63.76 abdfd57f-a1f3-40be-bdb2-45290c286c1b 2019-09-15 16:17:04.1398 15912 9 User \N \N 9 User \N update ---\nunique_session_id:\n- GqyEZjLcR6yYrvo4syco\n- J6NBbEETyfyTt4UBqgFq\n 173 \N 187.149.63.76 abdfd57f-a1f3-40be-bdb2-45290c286c1b 2019-09-15 16:17:04.152666 15913 433 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.1058E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1058.0 187.149.63.76 de7b934d-1034-4e8b-a6d7-0233b18e99cf 2019-09-15 16:17:21.044359 15914 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-14 20:04:01.970163000 Z\n- &1 2019-09-14 21:20:26.022425000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-15 17:08:48.827143506 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946446\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946446\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104401\n mask_addr: 4294967295\nsign_in_count:\n- 632\n- 633\n 1266 \N 187.149.0.145 5044a4b3-5b61-4207-9ac1-1c7307f2e154 2019-09-15 17:08:48.8344 15915 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bdyys3Q-9CaqYNPqyWLj\n- M3UbbWeCKFR_M5P2MCGc\n 1267 \N 187.149.0.145 5044a4b3-5b61-4207-9ac1-1c7307f2e154 2019-09-15 17:08:48.850219 15916 1104 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 433\namount: !ruby/object:BigDecimal 18:0.679E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.679E3\nstatus: 0\ndate_sale: 2019-09-15\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-615\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 12b049bd-aaae-4f51-9774-20e9681c7880 2019-09-15 17:13:47.601526 15917 705 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.63.76 12b049bd-aaae-4f51-9774-20e9681c7880 2019-09-15 17:13:47.631187 15918 1104 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 a1be9614-a66c-45ba-ae7a-ae1a2fbcc028 2019-09-15 17:14:44.351274 15919 1522 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 433\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.679E3\nmove_type: '1'\nsale_id: 1104\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-615\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-615 187.149.63.76 a1be9614-a66c-45ba-ae7a-ae1a2fbcc028 2019-09-15 17:14:44.379616 15920 434 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1025E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1025.0 189.186.60.121 f83abad7-b9de-40b9-8255-7e1377b7261a 2019-09-15 18:55:29.893438 15921 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-09-10 18:29:33.424399000 Z\n- &1 2019-09-14 17:37:51.279662000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-15 19:15:02.728460027 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 139\n- 140\n 282 \N 187.149.63.76 6ebe00e5-51e5-45d5-bfa1-247a5a0a852b 2019-09-15 19:15:02.735848 15922 10 User \N \N 10 User \N update ---\nunique_session_id:\n- xMNxrNsTnS4uh53u8Wnw\n- Mqz3_rS59iWSyX3YxkUx\n 283 \N 187.149.63.76 6ebe00e5-51e5-45d5-bfa1-247a5a0a852b 2019-09-15 19:15:02.749176 15923 435 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.1096E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1096.0 187.149.63.76 c20912ff-a2f9-4437-8f88-ed6e8611c293 2019-09-15 19:17:18.863308 15924 1105 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 435\namount: !ruby/object:BigDecimal 18:0.625E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.625E3\nstatus: 0\ndate_sale: 2019-09-15\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-455\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.63.76 c3b8f02c-3066-4bc7-913d-4fd1ec33f50a 2019-09-15 19:17:59.435842 15925 864 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.63.76 c3b8f02c-3066-4bc7-913d-4fd1ec33f50a 2019-09-15 19:17:59.463268 15926 1105 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.63.76 a74e877f-264c-4023-8b19-845c9cfe0f8d 2019-09-15 19:19:28.97553 15927 1523 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 435\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.625E3\nmove_type: '1'\nsale_id: 1105\ncardnumber: 7872\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-455\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-455 187.149.63.76 a74e877f-264c-4023-8b19-845c9cfe0f8d 2019-09-15 19:19:28.994585 15928 433 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 433\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.679E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.1037E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1737E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.63.76 11158e1c-5721-4afa-8778-af57397d9f87 2019-09-15 20:59:39.585318 15929 433 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 11158e1c-5721-4afa-8778-af57397d9f87 2019-09-15 20:59:39.602723 15930 434 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 435\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.625E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1096E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1096E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.63.76 3953b63f-1f76-4a6b-aa27-fcdf5c79bb11 2019-09-15 21:10:53.454556 15931 435 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 3953b63f-1f76-4a6b-aa27-fcdf5c79bb11 2019-09-15 21:10:53.467714 15932 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-14 17:35:32.541972000 Z\n- &1 2019-09-15 16:05:18.216659000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-16 17:39:06.177722389 Z\nsign_in_count:\n- 7\n- 8\n 16 \N 189.186.60.121 b404de04-f301-44c4-87d3-9bcf4c2a39d2 2019-09-16 17:39:06.22292 15933 23 User \N \N 23 User \N update ---\nunique_session_id:\n- LTeiuM3nSdyhegwT5ocA\n- mTkswvQ-6h-oRK54q3CG\n 17 \N 189.186.60.121 b404de04-f301-44c4-87d3-9bcf4c2a39d2 2019-09-16 17:39:06.24874 15934 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-14 21:20:26.022425000 Z\n- &1 2019-09-15 17:08:48.827143000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-16 18:02:31.424589506 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946446\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104401\n mask_addr: 4294967295\nsign_in_count:\n- 633\n- 634\n 1268 \N 187.149.0.145 e98e3a3b-a4c9-4359-b6a0-c2dba7841de1 2019-09-16 18:02:31.430743 15935 4 User \N \N 4 User \N update ---\nunique_session_id:\n- M3UbbWeCKFR_M5P2MCGc\n- kZvcHXygQHCPCCz8yb4n\n 1269 \N 187.149.0.145 e98e3a3b-a4c9-4359-b6a0-c2dba7841de1 2019-09-16 18:02:31.446582 15936 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-14 02:00:37.101615000 Z\n- &1 2019-09-14 16:24:14.848949000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-16 19:29:00.924837476 Z\nsign_in_count:\n- 319\n- 320\n 643 \N 187.149.63.76 75b9f7d3-162a-4b97-9cba-7ef98eb646a9 2019-09-16 19:29:00.932545 15937 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Z54RrsaqcXZe-mRfTFUX\n- qkzGfN4eLgEt-69CxWL-\n 644 \N 187.149.63.76 75b9f7d3-162a-4b97-9cba-7ef98eb646a9 2019-09-16 19:29:00.947454 15938 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-15 16:05:18.216659000 Z\n- &1 2019-09-16 17:39:06.177722000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-17 16:07:55.151302928 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099001\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183125034\n mask_addr: 4294967295\nsign_in_count:\n- 8\n- 9\n 18 \N 189.186.162.42 6cf82fac-1cad-4007-80d0-ac41d74a4d43 2019-09-17 16:07:55.182637 15939 23 User \N \N 23 User \N update ---\nunique_session_id:\n- mTkswvQ-6h-oRK54q3CG\n- HHw9FqFqcgiDsHxEYTdp\n 19 \N 189.186.162.42 6cf82fac-1cad-4007-80d0-ac41d74a4d43 2019-09-17 16:07:55.204094 15940 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-15 17:08:48.827143000 Z\n- &1 2019-09-16 18:02:31.424589000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-17 17:32:38.549900158 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104401\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183125034\n mask_addr: 4294967295\nsign_in_count:\n- 634\n- 635\n 1270 \N 189.186.162.42 171b4757-b6f8-4cc0-815c-1b4672de0621 2019-09-17 17:32:38.559998 15941 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kZvcHXygQHCPCCz8yb4n\n- ma92sxsBKCQ-r1yxXfRW\n 1271 \N 189.186.162.42 171b4757-b6f8-4cc0-815c-1b4672de0621 2019-09-17 17:32:38.58022 15942 812 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.15E2\n 4 \N 189.186.162.42 228244bd-c637-4911-9a03-95fce8b90563 2019-09-17 17:47:29.481423 15943 812 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.12E2\n 5 \N 189.186.162.42 0e8abc4f-0095-45c0-b74a-066a5ab46014 2019-09-17 17:48:15.803332 15944 191 Transfer \N \N 23 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-09-17\nuser_id: 23\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.162.42 cb9ae2b8-0ac5-4cfe-9305-90c0d3bbb6ee 2019-09-17 17:48:18.291846 15945 812 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 6 \N 189.186.162.42 25dc8249-f5de-4773-ab09-28a76b3380db 2019-09-17 17:48:34.595465 15946 831 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.162.42 34ea291e-8dcf-439e-8d38-cbfc05296778 2019-09-17 17:48:57.896217 15947 831 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.162.42 10852383-1acc-41c1-8ace-25d55a4060a9 2019-09-17 17:49:04.648272 15948 192 Transfer \N \N 23 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2019-09-17\nuser_id: 23\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.162.42 43be919e-d732-45f0-a950-efdbbb750470 2019-09-17 17:49:05.752408 15949 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-14 16:24:14.848949000 Z\n- &1 2019-09-16 19:29:00.924837000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-17 18:04:42.583047315 Z\nsign_in_count:\n- 320\n- 321\n 645 \N 187.149.63.76 d6b69ffc-b624-424a-a3f2-0bfbb9ca9f8a 2019-09-17 18:04:42.588971 15950 2 User \N \N 2 User \N update ---\nunique_session_id:\n- qkzGfN4eLgEt-69CxWL-\n- 2q__zZNfEbY2RAsrsGp8\n 646 \N 187.149.63.76 d6b69ffc-b624-424a-a3f2-0bfbb9ca9f8a 2019-09-17 18:04:42.60419 15977 827 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.162.42 34b689a7-5a60-4c64-ae94-789b8560bc1f 2019-09-17 19:55:05.877648 15951 1524 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 111\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.16E4\nmove_type: '1'\nsale_id: 324\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.63.76 d172242e-88c0-4288-91c1-a5a19c2574f0 2019-09-17 18:06:02.219971 15952 324 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.63.76 d172242e-88c0-4288-91c1-a5a19c2574f0 2019-09-17 18:06:02.243191 15953 522 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.63.76 d172242e-88c0-4288-91c1-a5a19c2574f0 2019-09-17 18:06:02.26524 15954 1524 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 111\n- \n 2 movimiento de efectivo por venta con folio PV1-V-174 187.149.63.76 d172242e-88c0-4288-91c1-a5a19c2574f0 2019-09-17 18:06:02.277292 15955 436 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1037E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1037.0 187.149.63.76 861d471d-b6d4-4f41-a917-d8b19aab29d0 2019-09-17 18:16:16.892096 15956 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-16 18:02:31.424589000 Z\n- &1 2019-09-17 17:32:38.549900000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-17 19:48:02.437471279 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104401\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183125034\n mask_addr: 4294967295\nsign_in_count:\n- 635\n- 636\n 1272 \N 189.186.162.42 79ec9417-d80a-413b-b3b7-22e6f4345259 2019-09-17 19:48:02.456361 15957 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ma92sxsBKCQ-r1yxXfRW\n- MJx4ZPW24Ai1dDZwWoXb\n 1273 \N 189.186.162.42 79ec9417-d80a-413b-b3b7-22e6f4345259 2019-09-17 19:48:02.476638 15958 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-11 18:25:47.613787000 Z\n- &1 2019-09-14 17:41:05.416488000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-17 19:48:19.193909067 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183110515\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183125034\n mask_addr: 4294967295\nsign_in_count:\n- 34\n- 35\n 71 \N 189.186.162.42 dde1c6bb-a9ba-4548-9636-f8c24bd6a3ca 2019-09-17 19:48:19.200807 15959 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 7ExPQ7rxL4zrNLv9WDyD\n- eCVjgnKYsc3DQMdPUsqo\n 72 \N 189.186.162.42 dde1c6bb-a9ba-4548-9636-f8c24bd6a3ca 2019-09-17 19:48:19.21564 15960 1106 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 434\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-17\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-34\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.162.42 8923a858-936b-415a-9504-7cb5ea612b30 2019-09-17 19:48:42.355862 15961 813 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.162.42 8923a858-936b-415a-9504-7cb5ea612b30 2019-09-17 19:48:42.392054 15962 1106 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.162.42 0ee453fd-64b3-4cba-ace3-7202ca8b7fd5 2019-09-17 19:48:58.992617 15963 1525 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 434\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1106\ncardnumber: 1111\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-34\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-34 189.186.162.42 0ee453fd-64b3-4cba-ace3-7202ca8b7fd5 2019-09-17 19:48:59.016323 15964 1107 Sale \N \N 18 User \N create ---\ncustomer_id: 3\nuser_id: 18\nopen_cash_register_id: 434\namount: !ruby/object:BigDecimal 18:0.2317E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2317E4\nstatus: 0\ndate_sale: 2019-09-17\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-35\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.162.42 c834dbb0-355f-4769-850e-a38e785f0a95 2019-09-17 19:53:00.153246 15965 830 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 189.186.162.42 c834dbb0-355f-4769-850e-a38e785f0a95 2019-09-17 19:53:00.178607 15966 827 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.162.42 c834dbb0-355f-4769-850e-a38e785f0a95 2019-09-17 19:53:00.201782 15967 814 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 3 \N 189.186.162.42 c834dbb0-355f-4769-850e-a38e785f0a95 2019-09-17 19:53:00.223028 15968 812 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 7 \N 189.186.162.42 c834dbb0-355f-4769-850e-a38e785f0a95 2019-09-17 19:53:00.245405 15969 1107 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-35 cancelada. 189.186.162.42 1dc51db5-763e-4d4a-b96e-e82e5c56d653 2019-09-17 19:53:19.624499 15970 812 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.11E2\n 8 \N 189.186.162.42 1dc51db5-763e-4d4a-b96e-e82e5c56d653 2019-09-17 19:53:19.646486 15971 814 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.11E2\n 4 \N 189.186.162.42 1dc51db5-763e-4d4a-b96e-e82e5c56d653 2019-09-17 19:53:19.66637 15972 827 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 4 \N 189.186.162.42 1dc51db5-763e-4d4a-b96e-e82e5c56d653 2019-09-17 19:53:19.685403 15973 830 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.9E1\n 3 \N 189.186.162.42 1dc51db5-763e-4d4a-b96e-e82e5c56d653 2019-09-17 19:53:19.705135 15974 1108 Sale \N \N 18 User \N create ---\ncustomer_id: 3\nuser_id: 18\nopen_cash_register_id: 434\namount: !ruby/object:BigDecimal 18:0.2317E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2317E4\nstatus: 0\ndate_sale: 2019-09-17\nsaletype: 0\nseller_id: 13\nsale_code: PV3-V-36\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.162.42 34b689a7-5a60-4c64-ae94-789b8560bc1f 2019-09-17 19:55:05.79604 15975 812 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 9 \N 189.186.162.42 34b689a7-5a60-4c64-ae94-789b8560bc1f 2019-09-17 19:55:05.832198 15976 814 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 5 \N 189.186.162.42 34b689a7-5a60-4c64-ae94-789b8560bc1f 2019-09-17 19:55:05.855581 24037 673 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 f811e09d-3b9f-4a03-8dda-daee8f09ca84 2019-12-16 01:04:00.848332 15978 830 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 4 \N 189.186.162.42 34b689a7-5a60-4c64-ae94-789b8560bc1f 2019-09-17 19:55:05.900251 15979 1526 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 397\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1017\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.162.42 865764ad-8d4c-4593-85ab-b3d90773d52a 2019-09-17 19:59:58.482726 15980 1526 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 397\n- 434\n 2 movimiento de efectivo por venta con folio PV3-V-7 189.186.162.42 865764ad-8d4c-4593-85ab-b3d90773d52a 2019-09-17 19:59:58.527541 15981 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-16 17:39:06.177722000 Z\n- &1 2019-09-17 16:07:55.151302000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-17 20:11:59.109195851 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099001\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183125034\n mask_addr: 4294967295\nsign_in_count:\n- 9\n- 10\n 20 \N 189.186.162.42 7d02ef83-a75e-4b60-bd31-3cbad1fa3806 2019-09-17 20:11:59.118517 15982 23 User \N \N 23 User \N update ---\nunique_session_id:\n- HHw9FqFqcgiDsHxEYTdp\n- Sy_XL4GNZi6sBC-yqHxE\n 21 \N 189.186.162.42 7d02ef83-a75e-4b60-bd31-3cbad1fa3806 2019-09-17 20:11:59.135305 15983 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-17 17:32:38.549900000 Z\n- &1 2019-09-17 19:48:02.437471000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-17 21:37:25.857752061 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183125034\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938217\n mask_addr: 4294967295\nsign_in_count:\n- 636\n- 637\n 1274 \N 200.68.150.169 4efdad3b-9ce2-4379-beb2-e153039f0769 2019-09-17 21:37:25.865078 15984 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MJx4ZPW24Ai1dDZwWoXb\n- Qy15WeYkzNdRCsvKVJoo\n 1275 \N 200.68.150.169 4efdad3b-9ce2-4379-beb2-e153039f0769 2019-09-17 21:37:25.882043 15985 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-09-14 17:37:51.279662000 Z\n- &1 2019-09-15 19:15:02.728460000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-17 22:42:40.842778778 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 140\n- 141\n 284 \N 187.149.63.76 a57f48f6-5e59-41eb-aad2-b2b9e012419f 2019-09-17 22:42:40.850464 15986 10 User \N \N 10 User \N update ---\nunique_session_id:\n- Mqz3_rS59iWSyX3YxkUx\n- ECCXQfAkAEhxhnDvszgv\n 285 \N 187.149.63.76 a57f48f6-5e59-41eb-aad2-b2b9e012419f 2019-09-17 22:42:40.865807 15987 437 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.1096E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1096.0 187.149.63.76 a5900240-d32e-49da-9494-0a01fb1747c5 2019-09-17 22:42:48.044246 15988 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-17 19:48:02.437471000 Z\n- &1 2019-09-17 21:37:25.857752000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-17 22:43:16.762162215 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183125034\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938217\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938217\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\nsign_in_count:\n- 637\n- 638\n 1276 \N 187.149.63.76 6086dcbe-8aae-46aa-b962-9f7a36ea71af 2019-09-17 22:43:16.770663 15989 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Qy15WeYkzNdRCsvKVJoo\n- V5V2fqhw7_HBDyfVMzSY\n 1277 \N 187.149.63.76 6086dcbe-8aae-46aa-b962-9f7a36ea71af 2019-09-17 22:43:16.786104 15990 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-09-15 19:15:02.728460000 Z\n- &1 2019-09-17 22:42:40.842778000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-17 22:51:55.614778102 Z\nsign_in_count:\n- 141\n- 142\n 286 \N 187.149.63.76 c75d6106-bac9-4514-b2aa-f5e89abccd9b 2019-09-17 22:51:55.620569 15991 10 User \N \N 10 User \N update ---\nunique_session_id:\n- ECCXQfAkAEhxhnDvszgv\n- xpiUzS9QrtvN3XGXtDtf\n 287 \N 187.149.63.76 c75d6106-bac9-4514-b2aa-f5e89abccd9b 2019-09-17 22:51:55.634569 15992 192 Transfer \N \N 10 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 10\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-17\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.63.76 ab2640b7-f298-4cd5-b5f0-2293b15320d1 2019-09-17 22:52:19.823458 15993 1013 AvailableProduct \N \N 10 User \N create ---\nproduct_id: 666\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.63.76 ab2640b7-f298-4cd5-b5f0-2293b15320d1 2019-09-17 22:52:19.846186 15994 806 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 13 \N 187.149.63.76 ab2640b7-f298-4cd5-b5f0-2293b15320d1 2019-09-17 22:52:19.864903 15995 1013 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.63.76 005a43bf-4367-40e9-b8e8-cfbba2f3a426 2019-09-17 22:53:06.585354 15996 1013 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.63.76 b25a3d81-73eb-4abc-bcba-2ba7051997d6 2019-09-17 22:53:09.399197 15997 193 Transfer \N \N 10 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-09-17\nuser_id: 10\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.63.76 364f42a6-deae-4f21-8028-b6d144d17a29 2019-09-17 22:53:10.558746 15998 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-09-07 20:11:59.083986000 Z\n- &1 2019-09-15 16:17:04.133694000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-17 22:53:26.806706525 Z\nsign_in_count:\n- 86\n- 87\n 174 \N 187.149.63.76 50e79b76-5d4d-46ff-92a1-b9de81a1db85 2019-09-17 22:53:26.812325 15999 9 User \N \N 9 User \N update ---\nunique_session_id:\n- J6NBbEETyfyTt4UBqgFq\n- zuJoyb_zpZ5X8P-DNgxR\n 175 \N 187.149.63.76 50e79b76-5d4d-46ff-92a1-b9de81a1db85 2019-09-17 22:53:26.82435 16000 193 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-17\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.63.76 2ac00118-6f00-452e-bf86-faf6eb8b304a 2019-09-17 22:53:36.339444 16001 784 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.9E1\n 7 \N 187.149.63.76 2ac00118-6f00-452e-bf86-faf6eb8b304a 2019-09-17 22:53:36.355086 16002 191 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-17\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.63.76 171157cc-8cea-44c1-8ee1-02b9db788d56 2019-09-17 22:53:44.34434 16003 744 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.1E2\n 20 \N 187.149.63.76 171157cc-8cea-44c1-8ee1-02b9db788d56 2019-09-17 22:53:44.361886 16004 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-17 21:37:25.857752000 Z\n- &1 2019-09-17 22:43:16.762162000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-17 23:03:37.404006451 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938217\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084166\n mask_addr: 4294967295\nsign_in_count:\n- 638\n- 639\n 1278 \N 189.186.2.134 6294d27e-e1a8-46bc-9e77-8e66cb1e2559 2019-09-17 23:03:37.411796 16005 4 User \N \N 4 User \N update ---\nunique_session_id:\n- V5V2fqhw7_HBDyfVMzSY\n- 3zQ-GUJMTGDq4siKdrYY\n 1279 \N 189.186.2.134 6294d27e-e1a8-46bc-9e77-8e66cb1e2559 2019-09-17 23:03:37.429728 16006 435 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 434\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.1199E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.1025E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1525E4\nobservations: los 500 pesos se los llebo samantha\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.162.42 c1cb1151-a590-4dbd-8807-abf48dab471b 2019-09-18 01:06:34.222173 16007 434 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.162.42 c1cb1151-a590-4dbd-8807-abf48dab471b 2019-09-18 01:06:34.239099 16008 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-16 19:29:00.924837000 Z\n- &1 2019-09-17 18:04:42.583047000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-18 01:22:46.865361810 Z\nsign_in_count:\n- 321\n- 322\n 647 \N 187.149.63.76 0aced11b-9249-4f39-b774-30d3c0299d39 2019-09-18 01:22:46.871666 16009 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 2q__zZNfEbY2RAsrsGp8\n- HBtQo5V7Wobt8MPn7tKn\n 648 \N 187.149.63.76 0aced11b-9249-4f39-b774-30d3c0299d39 2019-09-18 01:22:46.888044 16010 1527 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 174\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.16E4\nmove_type: '1'\nsale_id: 522\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.63.76 fd86a351-55ae-4cc4-9b9b-f6ce1c1240da 2019-09-18 01:24:25.427036 16011 522 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.63.76 fd86a351-55ae-4cc4-9b9b-f6ce1c1240da 2019-09-18 01:24:25.452703 16012 1108 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.63.76 fd86a351-55ae-4cc4-9b9b-f6ce1c1240da 2019-09-18 01:24:25.473608 16013 1527 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 174\n- 436\n 2 movimiento de efectivo por venta con folio PV1-V-289 187.149.63.76 fd86a351-55ae-4cc4-9b9b-f6ce1c1240da 2019-09-18 01:24:25.485638 16014 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-09-14 19:09:25.341825000 Z\n- &1 2019-09-14 21:07:02.299869000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-18 01:28:13.319937080 Z\nsign_in_count:\n- 78\n- 79\n 158 \N 187.149.63.76 b417b874-768c-4d8f-9786-2be5bd20f1b6 2019-09-18 01:28:13.325729 16015 1 User \N \N 1 User \N update ---\nunique_session_id:\n- ay-3E3xBP9eCeUN8rmvz\n- FoUKn_s_y3CVnfdj2eeX\n 159 \N 187.149.63.76 b417b874-768c-4d8f-9786-2be5bd20f1b6 2019-09-18 01:28:13.339135 16016 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-17 18:04:42.583047000 Z\n- &1 2019-09-18 01:22:46.865361000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-18 01:33:19.465291710 Z\nsign_in_count:\n- 322\n- 323\n 649 \N 187.149.63.76 5abe321a-b4b0-4466-b56c-72c49a5f9949 2019-09-18 01:33:19.472712 16017 2 User \N \N 2 User \N update ---\nunique_session_id:\n- HBtQo5V7Wobt8MPn7tKn\n- X573Suuq4_HZDfPKtvtG\n 650 \N 187.149.63.76 5abe321a-b4b0-4466-b56c-72c49a5f9949 2019-09-18 01:33:19.489563 16018 436 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 436\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.16E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.19E4\ncash_fund: !ruby/object:BigDecimal 18:0.737E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2637E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.63.76 b0c04e49-b032-4128-ae8a-12e93c979024 2019-09-18 01:47:32.288363 16019 436 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.63.76 b0c04e49-b032-4128-ae8a-12e93c979024 2019-09-18 01:47:32.31055 16020 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-17 22:43:16.762162000 Z\n- &1 2019-09-17 23:03:37.404006000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-18 02:53:15.116172246 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084166\n mask_addr: 4294967295\nsign_in_count:\n- 639\n- 640\n 1280 \N 189.186.2.134 25258fc9-8b2e-46a4-a5aa-38a70f038afc 2019-09-18 02:53:15.153427 16021 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3zQ-GUJMTGDq4siKdrYY\n- gm45MDkCiiPdFcasNBSj\n 1281 \N 189.186.2.134 25258fc9-8b2e-46a4-a5aa-38a70f038afc 2019-09-18 02:53:15.18392 16022 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-17 16:07:55.151302000 Z\n- &1 2019-09-17 20:11:59.109195000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-18 15:59:18.876724733 Z\nsign_in_count:\n- 10\n- 11\n 22 \N 189.186.162.42 2a814b57-3c73-4f58-ba0c-767634ec9191 2019-09-18 15:59:18.907427 16023 23 User \N \N 23 User \N update ---\nunique_session_id:\n- Sy_XL4GNZi6sBC-yqHxE\n- k-KscoyW54qVy9-WSnRx\n 23 \N 189.186.162.42 2a814b57-3c73-4f58-ba0c-767634ec9191 2019-09-18 15:59:18.928105 16024 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-18 01:22:46.865361000 Z\n- &1 2019-09-18 01:33:19.465291000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-18 16:03:12.760814507 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\nsign_in_count:\n- 323\n- 324\n 651 \N 187.149.46.177 30fffc8c-24ef-405a-980e-38ad9e2f1a86 2019-09-18 16:03:12.767632 16025 2 User \N \N 2 User \N update ---\nunique_session_id:\n- X573Suuq4_HZDfPKtvtG\n- NnFqnGpfktGfBcrVSbog\n 652 \N 187.149.46.177 30fffc8c-24ef-405a-980e-38ad9e2f1a86 2019-09-18 16:03:12.787387 16026 438 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.737E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 737.0 187.149.46.177 6cd807ab-473a-4a9c-85b9-bb892ed329c8 2019-09-18 16:03:49.020917 16027 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-17 23:03:37.404006000 Z\n- &1 2019-09-18 02:53:15.116172000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-18 17:02:54.886123159 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084166\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\nsign_in_count:\n- 640\n- 641\n 1282 \N 187.149.46.177 e4dbefbb-d42e-4943-9b57-b697a4896a0e 2019-09-18 17:02:54.894189 16028 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gm45MDkCiiPdFcasNBSj\n- w2fVkTzBeyieQEBDVDUr\n 1283 \N 187.149.46.177 e4dbefbb-d42e-4943-9b57-b697a4896a0e 2019-09-18 17:02:54.911878 16050 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ExySf91HPVMUh_FscMLF\n- sgzKUyZsy9WLm9KTCHM8\n 1291 \N 200.68.151.108 d421f898-e535-4d69-8d9e-4509a6680514 2019-09-18 19:41:51.341555 16029 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-09-17 22:42:40.842778000 Z\n- &1 2019-09-17 22:51:55.614778000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-18 17:23:18.610472039 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\nsign_in_count:\n- 142\n- 143\n 288 \N 187.149.46.177 fbc2f87a-df78-4c50-935b-35ab10bd29a9 2019-09-18 17:23:18.616725 16030 10 User \N \N 10 User \N update ---\nunique_session_id:\n- xpiUzS9QrtvN3XGXtDtf\n- svwLiyzJXw3o9neWepnn\n 289 \N 187.149.46.177 fbc2f87a-df78-4c50-935b-35ab10bd29a9 2019-09-18 17:23:18.630274 16031 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-18 02:53:15.116172000 Z\n- &1 2019-09-18 17:02:54.886123000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-18 17:24:02.636519586 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084166\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\nsign_in_count:\n- 641\n- 642\n 1284 \N 187.149.46.177 802a2a62-22db-4f7e-aa35-12c6ec8eba25 2019-09-18 17:24:02.643481 16032 4 User \N \N 4 User \N update ---\nunique_session_id:\n- w2fVkTzBeyieQEBDVDUr\n- s9mKbMx_AfY5Lcf-LTjy\n 1285 \N 187.149.46.177 802a2a62-22db-4f7e-aa35-12c6ec8eba25 2019-09-18 17:24:02.659881 16033 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-18 17:02:54.886123000 Z\n- &1 2019-09-18 17:24:02.636519000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-18 17:50:37.676460956 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084166\n mask_addr: 4294967295\nsign_in_count:\n- 642\n- 643\n 1286 \N 189.186.2.134 60a7e48b-649e-4324-bcb2-4624da8766cc 2019-09-18 17:50:37.685932 16034 4 User \N \N 4 User \N update ---\nunique_session_id:\n- s9mKbMx_AfY5Lcf-LTjy\n- zL-cpxfAy-_PDu-7yUyy\n 1287 \N 189.186.2.134 60a7e48b-649e-4324-bcb2-4624da8766cc 2019-09-18 17:50:37.704403 16035 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-18 17:24:02.636519000 Z\n- &1 2019-09-18 17:50:37.676460000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-18 17:50:47.843917920 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084166\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084166\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\nsign_in_count:\n- 643\n- 644\n 1288 \N 187.149.46.177 a8eb2215-63b7-4736-9868-3b901f281d46 2019-09-18 17:50:47.85216 16036 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zL-cpxfAy-_PDu-7yUyy\n- ExySf91HPVMUh_FscMLF\n 1289 \N 187.149.46.177 a8eb2215-63b7-4736-9868-3b901f281d46 2019-09-18 17:50:47.87272 16037 1109 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 438\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2019-09-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-616\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.177 32d3413f-1ea9-4a2c-91cb-9c23bae6d8a8 2019-09-18 18:12:22.146018 16038 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.35E2\n- !ruby/object:BigDecimal 18:0.34E2\n 2 \N 187.149.46.177 32d3413f-1ea9-4a2c-91cb-9c23bae6d8a8 2019-09-18 18:12:22.183057 16039 1109 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.46.177 4f8b22b2-cb18-42ae-a355-155a46e320e1 2019-09-18 18:24:34.28135 16040 1528 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 438\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49E2\nmove_type: '1'\nsale_id: 1109\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-616\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-616 187.149.46.177 4f8b22b2-cb18-42ae-a355-155a46e320e1 2019-09-18 18:24:34.309351 16041 1110 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 438\namount: !ruby/object:BigDecimal 18:0.62314E3\ntax: !ruby/object:BigDecimal 18:0.7586E2\ndiscount: !ruby/object:BigDecimal 18:0.149E3\ntotal: !ruby/object:BigDecimal 18:0.55E3\nstatus: 0\ndate_sale: 2019-09-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-617\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.177 74e4a784-e5b2-4197-b2c4-d1896761c15b 2019-09-18 18:36:51.262401 16042 58 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 187.149.46.177 74e4a784-e5b2-4197-b2c4-d1896761c15b 2019-09-18 18:36:51.293734 16043 1110 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.46.177 79267ce2-bb68-4af1-af6b-7d9fbd942e47 2019-09-18 18:36:57.193735 16044 1529 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 438\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.55E3\nmove_type: '1'\nsale_id: 1110\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-617\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.55E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-617 187.149.46.177 79267ce2-bb68-4af1-af6b-7d9fbd942e47 2019-09-18 18:36:57.213632 16045 1111 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 438\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-09-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-618\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.177 306b6ee0-a32b-49b6-9372-f7b70929ffad 2019-09-18 19:25:02.455998 16046 867 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.46.177 306b6ee0-a32b-49b6-9372-f7b70929ffad 2019-09-18 19:25:02.485386 16047 1111 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.46.177 3e31964f-e86d-4cc8-97ea-77af7f0cbb5e 2019-09-18 19:27:14.136079 16048 1530 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 438\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 1111\ncardnumber: 4395\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-618\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-618 187.149.46.177 3e31964f-e86d-4cc8-97ea-77af7f0cbb5e 2019-09-18 19:27:14.161424 16049 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-18 17:50:37.676460000 Z\n- &1 2019-09-18 17:50:47.843917000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-18 19:41:51.316735542 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084166\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938412\n mask_addr: 4294967295\nsign_in_count:\n- 644\n- 645\n 1290 \N 200.68.151.108 d421f898-e535-4d69-8d9e-4509a6680514 2019-09-18 19:41:51.324662 16051 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-18 17:50:47.843917000 Z\n- &1 2019-09-18 19:41:51.316735000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-18 19:42:37.359587680 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938412\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938412\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\nsign_in_count:\n- 645\n- 646\n 1292 \N 187.149.46.177 4719bf71-2785-40db-81e5-f75afd925819 2019-09-18 19:42:37.373131 16052 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sgzKUyZsy9WLm9KTCHM8\n- Vz7sdGJzxEocynWctAyd\n 1293 \N 187.149.46.177 4719bf71-2785-40db-81e5-f75afd925819 2019-09-18 19:42:37.39954 16053 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-18 19:41:51.316735000 Z\n- &1 2019-09-18 19:42:37.359587000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-18 22:15:10.094901842 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938412\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084166\n mask_addr: 4294967295\nsign_in_count:\n- 646\n- 647\n 1294 \N 189.186.2.134 6268a105-48ad-4eba-86ed-498eaf04f7eb 2019-09-18 22:15:10.103381 16054 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Vz7sdGJzxEocynWctAyd\n- zQScgTJxojQReGZKyxy6\n 1295 \N 189.186.2.134 6268a105-48ad-4eba-86ed-498eaf04f7eb 2019-09-18 22:15:10.120962 16055 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-18 19:42:37.359587000 Z\n- &1 2019-09-18 22:15:10.094901000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-18 22:16:42.131651262 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084166\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084166\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\nsign_in_count:\n- 647\n- 648\n 1296 \N 187.149.46.177 45c07c0a-fe0a-4ed5-acfa-3db305f31bdf 2019-09-18 22:16:42.140169 16056 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zQScgTJxojQReGZKyxy6\n- c4ZuyoCDgvjyUdPLshGE\n 1297 \N 187.149.46.177 45c07c0a-fe0a-4ed5-acfa-3db305f31bdf 2019-09-18 22:16:42.155946 16057 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-17 20:11:59.109195000 Z\n- &1 2019-09-18 15:59:18.876724000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-18 22:17:25.125458503 Z\nsign_in_count:\n- 11\n- 12\n 24 \N 189.186.162.42 99a85130-425a-441a-ae15-38d31d10d705 2019-09-18 22:17:25.131324 16058 23 User \N \N 23 User \N update ---\nunique_session_id:\n- k-KscoyW54qVy9-WSnRx\n- "-cwsNc7DEd62V5qGFqyq"\n 25 \N 189.186.162.42 99a85130-425a-441a-ae15-38d31d10d705 2019-09-18 22:17:25.144397 16059 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-18 15:59:18.876724000 Z\n- &1 2019-09-18 22:17:25.125458000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-18 22:17:25.296534718 Z\nsign_in_count:\n- 12\n- 13\n 26 \N 189.186.162.42 23f2e93b-3fef-40e8-8eb1-24e1c601e219 2019-09-18 22:17:25.303133 16060 23 User \N \N 23 User \N update ---\nunique_session_id:\n- "-cwsNc7DEd62V5qGFqyq"\n- S8G1Ef2UUkYqwJCc6gX-\n 27 \N 189.186.162.42 23f2e93b-3fef-40e8-8eb1-24e1c601e219 2019-09-18 22:17:25.315997 16061 439 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1025E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1025.0 189.186.162.42 59034bd0-9588-43e0-a881-04d8438f1eb4 2019-09-18 22:18:45.451226 16062 1112 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 438\namount: !ruby/object:BigDecimal 18:0.759E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2019-09-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-619\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.177 a48470db-b3e1-4274-b4cd-969faed9fd64 2019-09-18 23:32:44.531575 16063 1012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.46.177 a48470db-b3e1-4274-b4cd-969faed9fd64 2019-09-18 23:32:44.561487 16064 1112 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.46.177 27e1b555-b525-43a4-80f2-543b6bc58130 2019-09-18 23:32:49.696904 16065 1531 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 438\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.759E3\nmove_type: '1'\nsale_id: 1112\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-619\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.759E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-619 187.149.46.177 27e1b555-b525-43a4-80f2-543b6bc58130 2019-09-18 23:32:49.717133 16066 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-09-14 21:07:02.299869000 Z\n- &1 2019-09-18 01:28:13.319937000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-18 23:37:11.456455223 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\nsign_in_count:\n- 79\n- 80\n 160 \N 187.149.46.177 67a280dd-5687-439a-bf5e-d4f028720900 2019-09-18 23:37:11.463514 16067 1 User \N \N 1 User \N update ---\nunique_session_id:\n- FoUKn_s_y3CVnfdj2eeX\n- xvA8oyiW_SE8odHj1ZUT\n 161 \N 187.149.46.177 67a280dd-5687-439a-bf5e-d4f028720900 2019-09-18 23:37:11.478193 16068 1113 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 438\namount: !ruby/object:BigDecimal 18:0.449E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.449E3\nstatus: 0\ndate_sale: 2019-09-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-620\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.177 71d44e74-38f1-450b-b505-0a891a6aaeda 2019-09-19 00:40:35.440466 16069 741 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.46.177 71d44e74-38f1-450b-b505-0a891a6aaeda 2019-09-19 00:40:35.50687 16070 1113 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.46.177 22c94101-a0e9-4781-8d0c-89887f5eef0e 2019-09-19 00:40:47.563359 16071 1532 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 438\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.449E3\nmove_type: '1'\nsale_id: 1113\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-620\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.449E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-620 187.149.46.177 22c94101-a0e9-4781-8d0c-89887f5eef0e 2019-09-19 00:40:47.58998 16072 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-09-18 01:28:13.319937000 Z\n- &1 2019-09-18 23:37:11.456455000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-19 00:44:17.460348586 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\nsign_in_count:\n- 80\n- 81\n 162 \N 187.149.46.177 423df20f-703f-41f0-88c4-5bb3e3a886d7 2019-09-19 00:44:17.468896 16073 1 User \N \N 1 User \N update ---\nunique_session_id:\n- xvA8oyiW_SE8odHj1ZUT\n- EurxzisAjrofRk8myajT\n 163 \N 187.149.46.177 423df20f-703f-41f0-88c4-5bb3e3a886d7 2019-09-19 00:44:17.487978 16074 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-18 22:15:10.094901000 Z\n- &1 2019-09-18 22:16:42.131651000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-19 01:00:46.216095367 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084166\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183125034\n mask_addr: 4294967295\nsign_in_count:\n- 648\n- 649\n 1298 \N 189.186.162.42 3e0f24c0-cda4-494e-8919-ac4730aebfb0 2019-09-19 01:00:46.227452 16075 4 User \N \N 4 User \N update ---\nunique_session_id:\n- c4ZuyoCDgvjyUdPLshGE\n- DpYWTsrHoVvv1S_JwcMA\n 1299 \N 189.186.162.42 3e0f24c0-cda4-494e-8919-ac4730aebfb0 2019-09-19 01:00:46.248302 16076 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-18 22:16:42.131651000 Z\n- &1 2019-09-19 01:00:46.216095000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-19 01:05:10.613738539 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183125034\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183125034\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\nsign_in_count:\n- 649\n- 650\n 1300 \N 187.149.46.177 63ab4b74-ce7a-4d17-b77f-f18059a67007 2019-09-19 01:05:10.623413 16077 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DpYWTsrHoVvv1S_JwcMA\n- R1ZXuxAS8Qx_Jw4sHtos\n 1301 \N 187.149.46.177 63ab4b74-ce7a-4d17-b77f-f18059a67007 2019-09-19 01:05:10.646839 16078 437 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 438\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3106E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.14E4\ncash_fund: !ruby/object:BigDecimal 18:0.1144E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2544E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.46.177 89dedc2c-c121-49a4-b3f9-1cf772d8e890 2019-09-19 01:27:56.332043 16079 438 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.46.177 89dedc2c-c121-49a4-b3f9-1cf772d8e890 2019-09-19 01:27:56.347411 16080 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-09-17 22:51:55.614778000 Z\n- &1 2019-09-18 17:23:18.610472000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-19 01:30:35.716459904 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\nsign_in_count:\n- 143\n- 144\n 290 \N 187.149.46.177 1ab4d9b8-46cf-443d-a9ce-add6da44eeb1 2019-09-19 01:30:35.725282 16081 10 User \N \N 10 User \N update ---\nunique_session_id:\n- svwLiyzJXw3o9neWepnn\n- d8VG9aisMsDPFJs8EUAz\n 291 \N 187.149.46.177 1ab4d9b8-46cf-443d-a9ce-add6da44eeb1 2019-09-19 01:30:35.742697 16082 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-19 01:00:46.216095000 Z\n- &1 2019-09-19 01:05:10.613738000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-19 01:30:58.491323865 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183125034\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183125034\n mask_addr: 4294967295\nsign_in_count:\n- 650\n- 651\n 1302 \N 189.186.162.42 9c577295-c7fc-44be-a19d-c1a4e27fbcfe 2019-09-19 01:30:58.500042 16083 4 User \N \N 4 User \N update ---\nunique_session_id:\n- R1ZXuxAS8Qx_Jw4sHtos\n- rzf7gB38_duY-2FRD5AS\n 1303 \N 189.186.162.42 9c577295-c7fc-44be-a19d-c1a4e27fbcfe 2019-09-19 01:30:58.518894 16084 438 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 437\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1096E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1096E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.46.177 54e20bcb-9264-4a15-9a18-250d9ce1dffc 2019-09-19 01:31:45.975999 16085 437 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.46.177 54e20bcb-9264-4a15-9a18-250d9ce1dffc 2019-09-19 01:31:45.993514 16086 439 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 439\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1025E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1025E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.162.42 cfede4b4-1fdd-4b0f-8c1c-435e3b20dc4c 2019-09-19 01:51:30.363033 16087 439 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.162.42 cfede4b4-1fdd-4b0f-8c1c-435e3b20dc4c 2019-09-19 01:51:30.377148 16088 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-18 01:33:19.465291000 Z\n- &1 2019-09-18 16:03:12.760814000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-19 15:55:26.842002336 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\nsign_in_count:\n- 324\n- 325\n 653 \N 187.149.46.177 890722db-8ca6-408a-be84-cbb44834df1c 2019-09-19 15:55:26.876311 16089 2 User \N \N 2 User \N update ---\nunique_session_id:\n- NnFqnGpfktGfBcrVSbog\n- 7LVzSy_HieZHG_Cwb-AD\n 654 \N 187.149.46.177 890722db-8ca6-408a-be84-cbb44834df1c 2019-09-19 15:55:26.902733 16090 440 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1144E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1144.0 187.149.46.177 7433c415-9294-41e7-959d-909d13f9440e 2019-09-19 15:56:18.168499 16091 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-14 18:01:51.267406000 Z\n- &1 2019-09-14 19:40:18.971212000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-19 16:16:06.224993634 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\nsign_in_count:\n- 27\n- 28\n 59 \N 187.149.46.177 c35bb647-9a33-4d89-bdd0-8823fb4cbe9c 2019-09-19 16:16:06.232807 16092 8 User \N \N 8 User \N update ---\nunique_session_id:\n- eLyhKTV-TBzLRevubD8V\n- Sf2P5tt-jug-ANMy3W2t\n 60 \N 187.149.46.177 c35bb647-9a33-4d89-bdd0-8823fb4cbe9c 2019-09-19 16:16:06.250565 16093 441 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.1096E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1096.0 187.149.46.177 4fcfc00d-2ab5-486d-87b8-55c065221f04 2019-09-19 16:18:58.030828 16094 176 Customer \N \N 8 User \N create ---\nnick_name: CITLALI ROJAS\nphone: "(669) 286-0633"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CITLALI ROJAS fue registrado. 187.149.46.177 3cc61714-db8b-4396-a628-6dc817be168c 2019-09-19 16:24:50.980549 16095 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-14 19:40:18.971212000 Z\n- &1 2019-09-19 16:16:06.224993000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-19 16:28:56.687073858 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\nsign_in_count:\n- 28\n- 29\n 61 \N 187.149.46.177 16bf6842-22f7-4b79-b31d-fe2df2c17fb5 2019-09-19 16:28:56.693755 16096 8 User \N \N 8 User \N update ---\nunique_session_id:\n- Sf2P5tt-jug-ANMy3W2t\n- Bw4a9jN2noqoRjfCrJBM\n 62 \N 187.149.46.177 16bf6842-22f7-4b79-b31d-fe2df2c17fb5 2019-09-19 16:28:56.707361 16097 1114 Sale \N \N 8 User \N create ---\ncustomer_id: 176\nuser_id: 8\nopen_cash_register_id: 441\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2E3\ntotal: !ruby/object:BigDecimal 18:0.1198E4\nstatus: 0\ndate_sale: 2019-09-19\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-456\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.177 6a4c90f5-3bf4-4f1d-a916-a849dcb29bc3 2019-09-19 16:29:15.797435 16098 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 14 \N 187.149.46.177 6a4c90f5-3bf4-4f1d-a916-a849dcb29bc3 2019-09-19 16:29:15.832135 16099 800 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.46.177 6a4c90f5-3bf4-4f1d-a916-a849dcb29bc3 2019-09-19 16:29:15.870087 16100 1114 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-456 cancelada. 187.149.46.177 0084eb0d-25cd-4d74-b2f4-e173ba1d97a1 2019-09-19 16:29:23.27424 16101 800 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 187.149.46.177 0084eb0d-25cd-4d74-b2f4-e173ba1d97a1 2019-09-19 16:29:23.301102 16102 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 15 \N 187.149.46.177 0084eb0d-25cd-4d74-b2f4-e173ba1d97a1 2019-09-19 16:29:23.324 16103 1115 Sale \N \N 8 User \N create ---\ncustomer_id: 176\nuser_id: 8\nopen_cash_register_id: 441\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2E3\ntotal: !ruby/object:BigDecimal 18:0.1198E4\nstatus: 0\ndate_sale: 2019-09-19\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-457\nexpiration_date: 2019-10-24\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.177 44382b2a-f664-4e0d-904e-39f0228d07f8 2019-09-19 16:30:13.186204 16104 800 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 187.149.46.177 44382b2a-f664-4e0d-904e-39f0228d07f8 2019-09-19 16:30:13.223438 16105 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 16 \N 187.149.46.177 44382b2a-f664-4e0d-904e-39f0228d07f8 2019-09-19 16:30:13.255684 16106 1533 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 441\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 1115\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-457\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-457 187.149.46.177 c1c067cb-d08c-49a8-a2c7-29dac0dd3666 2019-09-19 16:30:34.99555 16107 1115 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.46.177 d87b908e-f542-48a9-9ae5-2ae36abc6671 2019-09-19 16:30:41.82666 16108 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-19 01:05:10.613738000 Z\n- &1 2019-09-19 01:30:58.491323000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-19 17:05:20.665475022 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183125034\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183125034\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\nsign_in_count:\n- 651\n- 652\n 1304 \N 187.149.46.177 fe94550b-d22e-4f1b-932d-7fd78a507555 2019-09-19 17:05:20.67524 16109 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rzf7gB38_duY-2FRD5AS\n- 76y_JM89vUsk3r2Fr8VH\n 1305 \N 187.149.46.177 fe94550b-d22e-4f1b-932d-7fd78a507555 2019-09-19 17:05:20.699235 16110 1116 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 440\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-09-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-621\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.177 f962fb37-8673-4c36-989e-9374691b1559 2019-09-19 21:02:26.395182 16111 867 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.46.177 f962fb37-8673-4c36-989e-9374691b1559 2019-09-19 21:02:26.421182 16112 1116 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.46.177 383aaa9a-42ad-40b5-834f-ffb8644ed482 2019-09-19 21:02:30.976817 16113 1534 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 440\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 1116\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-621\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-621 187.149.46.177 383aaa9a-42ad-40b5-834f-ffb8644ed482 2019-09-19 21:02:31.003876 16114 1117 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 440\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-622\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.177 8512ba0c-924b-45f1-8363-0b68f3116106 2019-09-19 21:05:27.277313 16115 744 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 21 \N 187.149.46.177 8512ba0c-924b-45f1-8363-0b68f3116106 2019-09-19 21:05:27.300458 16116 1117 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.46.177 d844cad5-8b94-4d8b-bea9-71378472dcce 2019-09-19 21:05:32.867319 16117 1535 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 440\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1117\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-622\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-622 187.149.46.177 d844cad5-8b94-4d8b-bea9-71378472dcce 2019-09-19 21:05:32.887877 16163 789 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.44.182 4d713fae-ff9f-47ad-a666-85ccea3ab33a 2019-09-20 17:28:46.021178 16118 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-13 19:05:42.145813000 Z\n- &1 2019-09-14 16:45:00.909735000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-19 22:50:05.227526676 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120793\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099001\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099001\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121888\n mask_addr: 4294967295\nsign_in_count:\n- 17\n- 18\n 37 \N 189.186.149.224 59f8ffa0-25c6-4039-a5a5-1bc6e4622ec5 2019-09-19 22:50:05.235174 16119 21 User \N \N 21 User \N update ---\nunique_session_id:\n- uzHXLFLsfuohy41Npy9w\n- D9-3tyCy-d3Gscx4QhzJ\n 38 \N 189.186.149.224 59f8ffa0-25c6-4039-a5a5-1bc6e4622ec5 2019-09-19 22:50:05.250035 16120 442 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1025E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1025.0 189.186.149.224 4c3ab7dc-c71a-4080-a3cd-8e8ce8d7d602 2019-09-19 22:52:36.290239 16121 177 Customer \N \N 21 User \N create ---\nnick_name: OLGA GARCIA\nphone: "(667) 747-3553"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente OLGA GARCIA fue registrado. 189.186.149.224 2580ce6b-f371-4333-a7f2-2b8984056b54 2019-09-19 23:01:28.389588 16122 1118 Sale \N \N 21 User \N create ---\ncustomer_id: 177\nuser_id: 21\nopen_cash_register_id: 442\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-19\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-37\nexpiration_date: 2019-10-24\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.149.224 1e35980f-e7e7-4e96-a024-05f6d2df053b 2019-09-19 23:01:44.350475 16123 812 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 10 \N 189.186.149.224 1e35980f-e7e7-4e96-a024-05f6d2df053b 2019-09-19 23:01:44.374738 16124 1536 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 442\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1118\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-37\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-37 189.186.149.224 8c8654e4-5762-44ba-89c4-064e47741f04 2019-09-19 23:01:56.186304 16125 1118 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.149.224 4aad19ad-df70-480c-977e-9299f1523d14 2019-09-19 23:01:59.203713 16126 744 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 22 \N 187.149.46.177 bfa94bc9-996d-4bac-aab1-07e12c2c7b13 2019-09-19 23:49:56.978874 16127 194 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-09-19\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.46.177 d64293fd-ba70-49a7-8a41-7b38d48caa27 2019-09-19 23:50:01.40533 16128 186 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 440\nquantity: !ruby/object:BigDecimal 18:0.5E3\nstatus: 1\nobservations: adelanto Rocio\nexpense_date: 2019-09-19\nexpense_code: PV1-E-143\n 1 Egreso por 500.0 registrado 187.149.44.182 d990694d-3f4e-4bd9-b8d4-fd01621c8c7e 2019-09-20 00:53:50.324413 16129 1537 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 440\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 186\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.44.182 d990694d-3f4e-4bd9-b8d4-fd01621c8c7e 2019-09-20 00:53:50.343538 16130 440 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 440\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1998E4\namount_out: !ruby/object:BigDecimal 18:0.5E3\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.1142E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2642E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 f140ab0a-72e7-4b65-876f-d27814505607 2019-09-20 00:54:47.789629 16131 440 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 f140ab0a-72e7-4b65-876f-d27814505607 2019-09-20 00:54:47.802121 16132 441 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 442\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.2E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1225E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1225E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.149.224 524281c9-3726-4745-a272-aa328f71cd02 2019-09-20 01:13:14.555644 16133 442 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.149.224 524281c9-3726-4745-a272-aa328f71cd02 2019-09-20 01:13:14.572714 16134 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-18 22:17:25.125458000 Z\n- &1 2019-09-18 22:17:25.296534000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-20 16:27:16.406179520 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183125034\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105953\n mask_addr: 4294967295\nsign_in_count:\n- 13\n- 14\n 28 \N 189.186.87.161 5def2be5-2350-4b47-bf03-26260fe84803 2019-09-20 16:27:16.457908 16135 23 User \N \N 23 User \N update ---\nunique_session_id:\n- S8G1Ef2UUkYqwJCc6gX-\n- pcgCffPTqJF-MzxRz4U9\n 29 \N 189.186.87.161 5def2be5-2350-4b47-bf03-26260fe84803 2019-09-20 16:27:16.478483 16136 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-09-15 16:17:04.133694000 Z\n- &1 2019-09-17 22:53:26.806706000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-20 16:32:45.753322404 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 87\n- 88\n 176 \N 187.149.44.182 645590c5-df99-4a3c-8b11-1a33cfc715b6 2019-09-20 16:32:45.761484 16137 9 User \N \N 9 User \N update ---\nunique_session_id:\n- zuJoyb_zpZ5X8P-DNgxR\n- ZkyCz2rsqp9_GUmMu8tg\n 177 \N 187.149.44.182 645590c5-df99-4a3c-8b11-1a33cfc715b6 2019-09-20 16:32:45.780669 16138 443 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.1142E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1142.0 187.149.44.182 a80bb846-da0c-4043-8915-76c890b49a0a 2019-09-20 16:33:37.064784 16164 196 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-09-20\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.44.182 e486039c-67cf-444c-a860-07c246fb07bb 2019-09-20 17:28:47.296053 16139 1119 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 443\namount: !ruby/object:BigDecimal 18:0.639E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.639E3\nstatus: 0\ndate_sale: 2019-09-20\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-623\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 e9d9b03f-64e9-48f5-a3ba-c520ca7f2752 2019-09-20 16:34:40.882006 16140 788 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 14 \N 187.149.44.182 e9d9b03f-64e9-48f5-a3ba-c520ca7f2752 2019-09-20 16:34:40.927428 16141 1119 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 228962e5-773d-4574-817d-c876b7faf853 2019-09-20 16:34:45.821791 16142 1538 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 443\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.639E3\nmove_type: '1'\nsale_id: 1119\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-623\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.61E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-623 187.149.44.182 228962e5-773d-4574-817d-c876b7faf853 2019-09-20 16:34:45.850292 16143 444 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1225E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1225.0 189.186.87.161 15844df8-604e-4be5-b22e-b750886d00f0 2019-09-20 16:56:26.641623 16144 1120 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 444\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-20\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-38\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.87.161 bb5047ae-5ba6-4b35-9ecb-03876ad3ce7e 2019-09-20 16:57:24.213078 16145 812 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 11 \N 189.186.87.161 bb5047ae-5ba6-4b35-9ecb-03876ad3ce7e 2019-09-20 16:57:24.250886 16146 1120 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.87.161 495eef4d-926a-4a64-85f6-6ecaef170207 2019-09-20 16:57:33.665426 16147 1539 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 444\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1120\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-38\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-38 189.186.87.161 495eef4d-926a-4a64-85f6-6ecaef170207 2019-09-20 16:57:33.68804 16148 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-19 01:30:58.491323000 Z\n- &1 2019-09-19 17:05:20.665475000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-20 17:09:08.895261344 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183125034\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 652\n- 653\n 1306 \N 187.149.44.182 78a2cc9d-5ced-491a-9572-c0f3e0e92828 2019-09-20 17:09:08.906828 16149 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 76y_JM89vUsk3r2Fr8VH\n- 8rSTexxg_3yMKvyQXSyh\n 1307 \N 187.149.44.182 78a2cc9d-5ced-491a-9572-c0f3e0e92828 2019-09-20 17:09:08.931482 16150 15 Seller \N \N 4 User \N create ---\npointsale_id: 2\nname: DANIELA\nlast_name: URCISICHI\nstatus: 1\n 1 El vendedor DANIELA URCISICHI fue registrado. 187.149.44.182 4fbe51cc-405a-460d-b30d-abd6a390f435 2019-09-20 17:10:27.041185 16151 16 Seller \N \N 4 User \N create ---\npointsale_id: 1\nname: DANIELA\nlast_name: URCISICHI\nstatus: 1\n 1 El vendedor DANIELA URCISICHI fue registrado. 187.149.44.182 2d269b66-3e79-4dca-99ef-64f3d3f0488a 2019-09-20 17:10:50.678614 16152 25 User \N \N 4 User \N create ---\nuserid: DANIELASUO\nfirst_name: DANIELA\nlast_name: URCISICHI\nusertype: G\nemail: daniurci7@hotmail.com\nencrypted_password: "$2a$10$0yLvO4FfwGydXUOo1k4Feev8COT3J1SPzadbkYcIZd/OqtTKoN.Y6"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 1\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 187.149.44.182 65b489c7-2205-4f3c-ba9d-50f32edb878d 2019-09-20 17:12:42.932962 16153 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-09-20 17:13:17.876221264 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 187.149.44.182 cd34a8e2-7aaa-43d3-8324-33b8d865b6bc 2019-09-20 17:13:17.882673 16154 25 User \N \N 25 User \N update ---\nunique_session_id:\n- \n- QT8GcbJKJE4HpfheJZY-\n 3 \N 187.149.44.182 cd34a8e2-7aaa-43d3-8324-33b8d865b6bc 2019-09-20 17:13:17.899381 16155 863 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.44.182 e8696382-e6a2-427e-a180-f86bcf8e7c0c 2019-09-20 17:27:30.283388 16156 863 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.44.182 e459d2f6-dbed-4113-808f-adc65d55f755 2019-09-20 17:27:35.071853 16157 195 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-09-20\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.44.182 29bcce00-dfd7-40e5-8207-2516963378c7 2019-09-20 17:27:37.221914 16158 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-09-17 22:53:26.806706000 Z\n- &1 2019-09-20 16:32:45.753322000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-20 17:27:55.602571524 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120460\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 88\n- 89\n 178 \N 187.149.44.182 e6b0a199-4474-4680-aeb3-55970136ddae 2019-09-20 17:27:55.612552 16159 9 User \N \N 9 User \N update ---\nunique_session_id:\n- ZkyCz2rsqp9_GUmMu8tg\n- zbbQuYy9Zs5vnMwub8Vd\n 179 \N 187.149.44.182 e6b0a199-4474-4680-aeb3-55970136ddae 2019-09-20 17:27:55.631217 16160 789 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.44.182 232fa34d-3e6e-47a4-aef8-13a1e794d765 2019-09-20 17:28:24.625475 16161 536 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.44.182 e3763b5e-89c0-4938-8a6e-274dee350b85 2019-09-20 17:28:39.777178 16162 536 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.44.182 8a7fe1ab-6881-4110-a71a-8bdf03c897ca 2019-09-20 17:28:43.639917 16165 195 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-20\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.44.182 e9828672-942c-4335-8ea3-b3f494bc0704 2019-09-20 17:28:58.282254 16166 1014 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 700\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 e9828672-942c-4335-8ea3-b3f494bc0704 2019-09-20 17:28:58.309958 16167 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-19 16:16:06.224993000 Z\n- &1 2019-09-19 16:28:56.687073000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-20 17:29:23.377700818 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 29\n- 30\n 63 \N 187.149.44.182 9baffe7d-a763-4230-a76c-d5dc197e2e14 2019-09-20 17:29:23.384198 16168 8 User \N \N 8 User \N update ---\nunique_session_id:\n- Bw4a9jN2noqoRjfCrJBM\n- rwh_fH8cXNLJ7MMcsSsA\n 64 \N 187.149.44.182 9baffe7d-a763-4230-a76c-d5dc197e2e14 2019-09-20 17:29:23.396983 16169 196 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-20\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.44.182 57bdd595-b980-418d-9136-099ddf4353d1 2019-09-20 17:29:32.726221 16170 1015 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 671\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 57bdd595-b980-418d-9136-099ddf4353d1 2019-09-20 17:29:32.745992 16171 1016 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 509\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 57bdd595-b980-418d-9136-099ddf4353d1 2019-09-20 17:29:32.766131 16172 757 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.44.182 49a70c7c-dee8-4604-ba77-03ee245ad065 2019-09-20 17:38:56.536089 16173 757 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.44.182 d89e45ee-3080-41cb-ac1b-040f4f2164c9 2019-09-20 17:39:52.958609 16174 197 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-09-20\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.44.182 94027468-0202-4f1b-ad4c-0d6e245701fe 2019-09-20 17:39:53.904185 16175 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-18 16:03:12.760814000 Z\n- &1 2019-09-19 15:55:26.842002000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-20 18:57:26.412816854 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 325\n- 326\n 655 \N 187.149.44.182 a76411a0-9682-42d6-ada4-73ff5ca7f410 2019-09-20 18:57:26.422271 16176 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 7LVzSy_HieZHG_Cwb-AD\n- QeLEoimoP5VneXXCMu-y\n 656 \N 187.149.44.182 a76411a0-9682-42d6-ada4-73ff5ca7f410 2019-09-20 18:57:26.441948 16177 1121 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 441\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-09-20\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-458\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 7f7d5410-c505-4610-b218-d19760066fb8 2019-09-20 19:56:24.733906 16178 718 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.44.182 7f7d5410-c505-4610-b218-d19760066fb8 2019-09-20 19:56:24.760465 16179 1121 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 74b12255-a0e0-45ca-b6f2-79978061a4c6 2019-09-20 19:56:33.258831 16180 1540 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 441\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.649E3\nmove_type: '1'\nsale_id: 1121\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-458\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.351E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-458 187.149.44.182 74b12255-a0e0-45ca-b6f2-79978061a4c6 2019-09-20 19:56:33.277689 16181 1122 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 443\namount: !ruby/object:BigDecimal 18:0.1598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1598E4\nstatus: 0\ndate_sale: 2019-09-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-624\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 8d6248d9-cdaf-48a9-9280-9450c321402c 2019-09-20 20:59:58.263479 16182 872 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.44.182 8d6248d9-cdaf-48a9-9280-9450c321402c 2019-09-20 20:59:58.306621 16183 637 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.44.182 8d6248d9-cdaf-48a9-9280-9450c321402c 2019-09-20 20:59:58.338514 16184 1122 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 87eefc86-47a9-4428-bcba-55175c1f40e1 2019-09-20 21:02:54.389385 16185 1541 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 443\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1598E4\nmove_type: '1'\nsale_id: 1122\ncardnumber: 4213\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-624\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-624 187.149.44.182 87eefc86-47a9-4428-bcba-55175c1f40e1 2019-09-20 21:02:54.416886 16186 322 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.44.182 7bd522cf-3475-4512-89aa-d84426cdfc7b 2019-09-20 22:22:02.109138 16187 597 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.44.182 5ffedb63-f82b-4132-a3d3-83519e205e07 2019-09-20 22:22:20.430927 16188 597 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.44.182 c4cfe5c1-193d-4f65-83ce-b23490d7306c 2019-09-20 22:22:26.364388 16189 597 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.44.182 c1e3bfb3-5cbb-4de0-9290-a10f9068eb9b 2019-09-20 22:22:34.800914 24539 683 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 a4139269-23bb-4668-a732-52028f096814 2019-12-20 03:03:50.927432 16190 597 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.44.182 c69783be-1e1b-4d36-b236-c27332d59b7c 2019-09-20 22:22:38.421767 16191 1005 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.44.182 8a4596bd-104b-44f6-b91c-613a290e6df1 2019-09-20 22:22:50.168312 16192 1005 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.44.182 eb093195-0806-4173-b41c-e9f3bb96a1f4 2019-09-20 22:23:04.339288 16193 1005 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.44.182 a4eb4aea-b064-4542-be64-a07d6b9094b8 2019-09-20 22:23:06.578423 16194 198 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-09-20\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.44.182 ec0aa86b-07b8-42d3-ad7e-ee77bf2a0867 2019-09-20 22:23:10.156174 16195 1123 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 444\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-09-20\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-39\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.87.161 eb2db333-9226-4dd8-953a-065ae49829c6 2019-09-20 22:34:18.658594 16196 859 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.87.161 eb2db333-9226-4dd8-953a-065ae49829c6 2019-09-20 22:34:18.683859 16197 1123 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.87.161 fe33141f-059f-43b0-8881-b1c317caa621 2019-09-20 22:35:13.680597 16198 1542 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 444\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 1123\ncardnumber: 7782\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-39\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-39 189.186.87.161 fe33141f-059f-43b0-8881-b1c317caa621 2019-09-20 22:35:13.700367 16199 787 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 5 \N 187.149.44.182 4d2f5cb0-58b4-4ce7-be2b-46370bdeb80d 2019-09-20 22:37:05.811704 16200 787 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.44.182 bdebc56c-c7df-447f-b9a3-613f8a7cb40a 2019-09-20 22:37:09.107053 16201 58 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.44.182 d6e55f50-5621-4796-a170-decdd8f459f2 2019-09-20 22:37:35.042086 16202 58 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.44.182 4f0da397-4bcb-4d26-b596-e2ba10ff9aef 2019-09-20 22:37:38.792935 16203 199 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-09-20\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.44.182 c9c43684-66bf-4bce-ac80-b60650676b38 2019-09-20 22:38:14.234422 16204 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-09-18 23:37:11.456455000 Z\n- &1 2019-09-19 00:44:17.460348000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-20 22:38:48.607512583 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 81\n- 82\n 164 \N 187.149.44.182 2dd6c31d-c6fa-4c68-8ff4-98e484a102a0 2019-09-20 22:38:48.615274 16205 1 User \N \N 1 User \N update ---\nunique_session_id:\n- EurxzisAjrofRk8myajT\n- vNF9xNBmPxHXBcszA4As\n 165 \N 187.149.44.182 2dd6c31d-c6fa-4c68-8ff4-98e484a102a0 2019-09-20 22:38:48.627898 16206 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-19 17:05:20.665475000 Z\n- &1 2019-09-20 17:09:08.895261000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-20 23:10:21.057658566 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 653\n- 654\n 1308 \N 187.149.44.182 72f1307d-8eae-424b-81dd-788a6c0f7662 2019-09-20 23:10:21.064376 16207 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8rSTexxg_3yMKvyQXSyh\n- 1zk-bGGrLRvc3dSgof-a\n 1309 \N 187.149.44.182 72f1307d-8eae-424b-81dd-788a6c0f7662 2019-09-20 23:10:21.079031 16208 712 Product \N \N 4 User \N create ---\nsku: FAL-712\nname: F-0022\ndescription: FALDA NEGRA PLIZADA CON LETEJUELA SKY&BLUE\nprice_base: !ruby/object:BigDecimal 18:0.4995E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-712 fue creado. 187.149.44.182 14f01d23-aaca-42f9-b9dd-11e797b2ea78 2019-09-20 23:17:42.288857 16209 712 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000712'\n 2 \N 187.149.44.182 14f01d23-aaca-42f9-b9dd-11e797b2ea78 2019-09-20 23:17:42.324111 16210 1017 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 712\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 14f01d23-aaca-42f9-b9dd-11e797b2ea78 2019-09-20 23:17:42.353733 16211 141 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-41\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nobservations: ''\npurchase_date: 2019-09-20\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-41 por $ 999.0 MXN creada. 187.149.44.182 f4eea854-ca01-4a81-bcd7-057ce4050e50 2019-09-20 23:17:54.759582 16212 1017 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.44.182 f4eea854-ca01-4a81-bcd7-057ce4050e50 2019-09-20 23:17:54.781924 16213 712 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '712'\n is_parent: false\n sku: FAL-712\n name: F-0022\n description: FALDA NEGRA PLIZADA CON LETEJUELA SKY&BLUE\n price_base: '499.5'\n price_sale: '999.0'\n img_product: IMG_0283.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000712'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-09-20 23:17:42.275835'\n updated_at: &12 2019-09-20 23:19:54.711898569 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '712'\n sku: FAL-712\n name: F-0022\n description: FALDA NEGRA PLIZADA CON LETEJUELA SKY&BLUE\n price_base: '499.50'\n price_sale: '999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-09-20 23:17:42.275835'\n updated_at: '2019-09-20 23:17:42.321169'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000712'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '712'\n type: *3\n value: 712\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-712\n type: *7\n value: FAL-712\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: F-0022\n type: *8\n value: F-0022\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA NEGRA PLIZADA CON LETEJUELA SKY&BLUE\n type: *6\n value: FALDA NEGRA PLIZADA CON LETEJUELA SKY&BLUE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '499.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_0283.jpg\n type: *2\n value: IMG_0283.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000712'\n type: *2\n value: '0000712'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-09-20 23:17:42.275835'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_0283.jpg\n 3 El producto FAL-712 fue modificado. 187.149.44.182 4b02a229-9c86-4bf4-830c-d4fe0b580fb7 2019-09-20 23:19:54.778486 16214 198 Transfer \N \N 23 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 23\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-20\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.87.161 2dd94419-e468-440f-bb80-206c149a950f 2019-09-21 00:04:06.876723 16261 1 User \N \N 1 User \N update ---\nunique_session_id:\n- vNF9xNBmPxHXBcszA4As\n- WVzQQ1R21JKx_5JxFkSo\n 167 \N 187.149.44.182 ee631a9d-be9f-43a8-934a-4b483331d373 2019-09-21 18:34:47.042443 16215 1018 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 324\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.87.161 2dd94419-e468-440f-bb80-206c149a950f 2019-09-21 00:04:06.903229 16216 1019 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 146\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.87.161 2dd94419-e468-440f-bb80-206c149a950f 2019-09-21 00:04:06.926344 16217 1020 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 149\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.87.161 2dd94419-e468-440f-bb80-206c149a950f 2019-09-21 00:04:06.949546 16218 194 Transfer \N \N 23 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 23\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-20\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.87.161 8fcde0c7-89aa-443f-b517-03d67bf4e9d0 2019-09-21 00:04:18.040696 16219 812 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.9E1\n 12 \N 189.186.87.161 8fcde0c7-89aa-443f-b517-03d67bf4e9d0 2019-09-21 00:04:18.060453 16220 836 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 2 \N 189.186.87.161 9b5a1e7b-c3ea-48c8-9b9f-7f68a52703d1 2019-09-21 00:04:56.018658 16221 836 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 3 \N 189.186.87.161 a2fc6568-c2fb-4e90-8e24-6df2d8fb5600 2019-09-21 00:05:06.706375 16222 812 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 13 \N 189.186.87.161 9750a9bc-83c1-4753-8427-dbc520ae458d 2019-09-21 00:05:34.42195 16223 812 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.6E1\n 14 \N 189.186.87.161 3c1e449b-7072-46fe-b134-0b91a3e51876 2019-09-21 00:05:37.901941 16224 200 Transfer \N \N 23 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2019-09-20\nuser_id: 23\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.87.161 79742ac9-1bf4-489f-b0b1-bfb06ee986cd 2019-09-21 00:05:41.175105 16225 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-09-18 17:23:18.610472000 Z\n- &1 2019-09-19 01:30:35.716459000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-21 00:50:36.872823656 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 144\n- 145\n 292 \N 187.149.44.182 dccd5050-c6da-4100-925a-b6d21724c25e 2019-09-21 00:50:36.879406 16226 10 User \N \N 10 User \N update ---\nunique_session_id:\n- d8VG9aisMsDPFJs8EUAz\n- Lxo2A2VDYys916-bZgws\n 293 \N 187.149.44.182 dccd5050-c6da-4100-925a-b6d21724c25e 2019-09-21 00:50:36.892791 16227 1124 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 441\namount: !ruby/object:BigDecimal 18:0.1169E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1169E4\nstatus: 0\ndate_sale: 2019-09-20\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-459\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 52b48945-8450-44ff-94ab-33aa0ae26ac6 2019-09-21 00:51:10.371975 16228 653 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.44.182 52b48945-8450-44ff-94ab-33aa0ae26ac6 2019-09-21 00:51:10.401246 16229 1124 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 92be92a7-1cb7-44bb-bf6f-17f7bdd0c3ad 2019-09-21 00:51:16.884829 16230 1543 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 441\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1169E4\nmove_type: '1'\nsale_id: 1124\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-459\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.331E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-459 187.149.44.182 92be92a7-1cb7-44bb-bf6f-17f7bdd0c3ad 2019-09-21 00:51:16.905749 16231 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-20 17:09:08.895261000 Z\n- &1 2019-09-20 23:10:21.057658000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-21 00:55:32.134853205 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946390\n mask_addr: 4294967295\nsign_in_count:\n- 654\n- 655\n 1310 \N 200.68.182.150 7c6c1c2e-8cbf-4b23-b988-7e6febeff4bb 2019-09-21 00:55:32.141648 16232 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1zk-bGGrLRvc3dSgof-a\n- mjHPsTmQ9eWEJrbfC73z\n 1311 \N 200.68.182.150 7c6c1c2e-8cbf-4b23-b988-7e6febeff4bb 2019-09-21 00:55:32.157057 16233 442 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 443\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2237E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.781E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1781E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 a1b723a0-758a-4f7d-be46-3bcf83d411d7 2019-09-21 01:25:13.415202 16234 443 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 a1b723a0-758a-4f7d-be46-3bcf83d411d7 2019-09-21 01:25:13.43252 16235 443 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 441\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.2218E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.363E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3363E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.44.182 71b9b70f-960d-4cd7-a27c-c4a6251d9f1b 2019-09-21 01:30:14.598813 16236 441 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 71b9b70f-960d-4cd7-a27c-c4a6251d9f1b 2019-09-21 01:30:14.614982 16237 444 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 444\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.1498E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.525E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1225E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.87.161 7c99e18a-b804-4400-b0d8-4243ec32f3a0 2019-09-21 02:00:08.023891 16238 444 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.87.161 7c99e18a-b804-4400-b0d8-4243ec32f3a0 2019-09-21 02:00:08.037076 16373 1134 Sale \N \N 25 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-631 cancelada. 187.149.44.182 0f127321-1892-451b-a397-da40238085b4 2019-09-22 20:30:04.953185 16239 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-19 16:28:56.687073000 Z\n- &1 2019-09-20 17:29:23.377700000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-21 17:40:05.221697519 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 30\n- 31\n 65 \N 187.149.44.182 4b4a21fd-e7bc-4896-b11c-823f4f6f7f9d 2019-09-21 17:40:05.250549 16240 8 User \N \N 8 User \N update ---\nunique_session_id:\n- rwh_fH8cXNLJ7MMcsSsA\n- zJhuc5ymuckEsKwsMNsX\n 66 \N 187.149.44.182 4b4a21fd-e7bc-4896-b11c-823f4f6f7f9d 2019-09-21 17:40:05.271257 16241 445 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.463E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 463.0 187.149.44.182 4c50e66e-d2d3-42c1-8ce8-72d125ab8679 2019-09-21 17:40:25.112676 16242 1125 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 445\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-21\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-460\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 b965fdd4-0cd7-4545-af97-05439232e932 2019-09-21 17:44:07.496846 16243 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 17 \N 187.149.44.182 b965fdd4-0cd7-4545-af97-05439232e932 2019-09-21 17:44:07.534404 16244 1125 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 538e909a-5170-4bf0-a06c-acaee2e98587 2019-09-21 17:44:18.276373 16245 1544 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 445\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1125\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-460\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-460 187.149.44.182 538e909a-5170-4bf0-a06c-acaee2e98587 2019-09-21 17:44:18.299247 16246 25 User \N \N 25 User \N update ---\ncurrent_sign_in_at:\n- 2019-09-20 17:13:17.876221000 Z\n- 2019-09-21 17:44:47.152861582 Z\nsign_in_count:\n- 1\n- 2\n 4 \N 187.149.44.182 7585deb9-db3a-44b8-bd8b-b306eb901cac 2019-09-21 17:44:47.159282 16247 25 User \N \N 25 User \N update ---\nunique_session_id:\n- QT8GcbJKJE4HpfheJZY-\n- tZ1CrrxApmLK_CrH14g9\n 5 \N 187.149.44.182 7585deb9-db3a-44b8-bd8b-b306eb901cac 2019-09-21 17:44:47.171229 16248 446 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.781E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 781.0 187.149.44.182 cd714b44-1984-47cc-9a5b-c565b708031c 2019-09-21 17:45:01.495156 16249 1126 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 446\namount: !ruby/object:BigDecimal 18:0.639E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.639E3\nstatus: 0\ndate_sale: 2019-09-21\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-625\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 908cc5e0-1a4d-4554-b885-a7d86cfd2f65 2019-09-21 17:45:11.8933 16250 788 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 15 \N 187.149.44.182 908cc5e0-1a4d-4554-b885-a7d86cfd2f65 2019-09-21 17:45:11.929816 16251 1126 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 b7c4db65-aae1-48dc-9f71-6170f4eb7735 2019-09-21 17:45:17.210229 16252 1545 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 446\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.639E3\nmove_type: '1'\nsale_id: 1126\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-625\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.639E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-625 187.149.44.182 b7c4db65-aae1-48dc-9f71-6170f4eb7735 2019-09-21 17:45:17.239445 16253 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-19 15:55:26.842002000 Z\n- &1 2019-09-20 18:57:26.412816000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-21 18:27:09.685529743 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 326\n- 327\n 657 \N 187.149.44.182 b0004e91-67f6-4d6e-b0cc-239ccee11c36 2019-09-21 18:27:09.69213 16254 2 User \N \N 2 User \N update ---\nunique_session_id:\n- QeLEoimoP5VneXXCMu-y\n- LvddMsNFt3f_TLEcNWxx\n 658 \N 187.149.44.182 b0004e91-67f6-4d6e-b0cc-239ccee11c36 2019-09-21 18:27:09.706832 16255 1546 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 446\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 948\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-547 187.149.44.182 7d4524a7-3535-43a4-b4bd-4430090309b6 2019-09-21 18:27:54.703623 16256 1127 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 446\namount: !ruby/object:BigDecimal 18:0.17069E3\ntax: !ruby/object:BigDecimal 18:0.2731E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.198E3\nstatus: 0\ndate_sale: 2019-09-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-626\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 15453c0e-d833-4816-94ec-56ee64211034 2019-09-21 18:30:04.453996 16257 486 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.19E2\n- !ruby/object:BigDecimal 18:0.17E2\n 13 \N 187.149.44.182 15453c0e-d833-4816-94ec-56ee64211034 2019-09-21 18:30:04.484437 16258 1127 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 c7c1ab34-7358-4c00-8bb4-9c3577878422 2019-09-21 18:30:39.978929 16259 1547 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 446\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.198E3\nmove_type: '1'\nsale_id: 1127\ncardnumber: 4284\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-626\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-626 187.149.44.182 c7c1ab34-7358-4c00-8bb4-9c3577878422 2019-09-21 18:30:39.9992 16260 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-09-19 00:44:17.460348000 Z\n- &1 2019-09-20 22:38:48.607512000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-21 18:34:47.017367725 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 82\n- 83\n 166 \N 187.149.44.182 ee631a9d-be9f-43a8-934a-4b483331d373 2019-09-21 18:34:47.026646 16262 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-20 23:10:21.057658000 Z\n- &1 2019-09-21 00:55:32.134853000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-21 19:17:19.138335128 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946390\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946390\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105577\n mask_addr: 4294967295\nsign_in_count:\n- 655\n- 656\n 1312 \N 189.186.86.41 51f8b5f5-db9f-4278-8c4e-d869a0777c5c 2019-09-21 19:17:19.146284 16263 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mjHPsTmQ9eWEJrbfC73z\n- DR8ycyjzH_SodzqN38NW\n 1313 \N 189.186.86.41 51f8b5f5-db9f-4278-8c4e-d869a0777c5c 2019-09-21 19:17:19.163186 16264 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-18 22:17:25.296534000 Z\n- &1 2019-09-20 16:27:16.406179000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-21 19:22:58.787027547 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183125034\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105953\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105953\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105577\n mask_addr: 4294967295\nsign_in_count:\n- 14\n- 15\n 30 \N 189.186.86.41 9cbf1adb-6a38-42f6-ab24-dfd8e038e360 2019-09-21 19:22:58.794434 16265 23 User \N \N 23 User \N update ---\nunique_session_id:\n- pcgCffPTqJF-MzxRz4U9\n- M3tLKovv2Ex9Qnai1ujX\n 31 \N 189.186.86.41 9cbf1adb-6a38-42f6-ab24-dfd8e038e360 2019-09-21 19:22:58.808372 16266 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-21 00:55:32.134853000 Z\n- &1 2019-09-21 19:17:19.138335000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-21 19:39:32.048041526 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946390\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105577\n mask_addr: 4294967295\nsign_in_count:\n- 656\n- 657\n 1314 \N 189.186.86.41 0dc27d93-59e7-4901-81f0-49d0dc9cd98c 2019-09-21 19:39:32.056376 16267 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DR8ycyjzH_SodzqN38NW\n- yiSug5xYPPtzjb7qFcf-\n 1315 \N 189.186.86.41 0dc27d93-59e7-4901-81f0-49d0dc9cd98c 2019-09-21 19:39:32.072699 16268 447 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1225E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1225.0 189.186.86.41 dfe7677c-559e-41b9-975d-48f54be46ca8 2019-09-21 20:01:15.761233 16269 187 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 446\nquantity: !ruby/object:BigDecimal 18:0.738E3\nstatus: 1\nobservations: sueldo Rocío\nexpense_date: 2019-09-21\nexpense_code: PV1-E-144\n 1 Egreso por 738.0 registrado 187.149.44.182 84b89376-4de6-4488-ad1e-5bbeba9b4f90 2019-09-21 20:09:55.074632 16270 1548 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 446\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.738E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 187\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.44.182 84b89376-4de6-4488-ad1e-5bbeba9b4f90 2019-09-21 20:09:55.110001 16271 1549 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 48\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 180\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.44.182 019eef52-a218-46e4-83ac-7aacaa55b701 2019-09-21 20:10:19.857774 16272 1549 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 48\n- 446\n 2 movimiento de efectivo por venta con folio PV2-V-76 187.149.44.182 019eef52-a218-46e4-83ac-7aacaa55b701 2019-09-21 20:10:19.881893 16273 1550 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 447\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 1002\ncardnumber: 1111\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-3 189.186.86.41 f50f2db9-58a3-449a-88d2-b42611f607ca 2019-09-21 20:12:50.059982 16274 1002 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.86.41 dd253752-fb37-48b7-a928-1079982e371f 2019-09-21 20:13:02.822373 16275 1551 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 447\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.279E3\nmove_type: '1'\nsale_id: 1020\ncardnumber: 1111\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-10 189.186.86.41 0f5eda83-ed30-495e-a8a9-de6bcf37c9d0 2019-09-21 20:13:59.375868 16276 1020 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.86.41 5e68e26e-c96f-4c58-bee5-e7ced07674d5 2019-09-21 20:14:01.307908 16277 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-21 19:17:19.138335000 Z\n- &1 2019-09-21 19:39:32.048041000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-21 20:32:29.209943793 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105577\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 657\n- 658\n 1316 \N 187.149.44.182 cef34ae5-dc8a-464e-a59d-184380f3b0af 2019-09-21 20:32:29.218109 16278 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yiSug5xYPPtzjb7qFcf-\n- r2BKx7DGwQzXwznzsXM1\n 1317 \N 187.149.44.182 cef34ae5-dc8a-464e-a59d-184380f3b0af 2019-09-21 20:32:29.241111 16279 870 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.44.182 a92331f2-f441-4813-89d0-c21fc10b2609 2019-09-21 20:33:23.406919 16280 201 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-09-21\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.44.182 bbcfe1e7-ee81-4220-be6a-7fdecde13677 2019-09-21 20:33:25.046246 16281 713 Product \N \N 4 User \N create ---\nsku: BLU-713\nname: BLS-0070\ndescription: CARDIGAN BLANCO VALENTINE ST.JK10291\nprice_base: !ruby/object:BigDecimal 18:0.3E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_2751.jpg\ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-713 fue creado. 187.149.44.182 99a86564-14bb-4e5f-a5f2-c260073ddf13 2019-09-21 20:40:11.170445 16282 713 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000713'\n 2 \N 187.149.44.182 99a86564-14bb-4e5f-a5f2-c260073ddf13 2019-09-21 20:40:11.203689 16283 714 Product \N \N 4 User \N create ---\nsku: BLU-714\nname: BLS-0071\ndescription: CARDIGAN NEGRO RALLADO VALENTINE ST.JK10134\nprice_base: !ruby/object:BigDecimal 18:0.349E3\nprice_sale: !ruby/object:BigDecimal 18:0.839E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_2497.JPG\ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-714 fue creado. 187.149.44.182 828c6c11-3577-4cbc-a57e-a4e6c94d89a3 2019-09-21 20:42:44.234012 16284 714 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000714'\n 2 \N 187.149.44.182 828c6c11-3577-4cbc-a57e-a4e6c94d89a3 2019-09-21 20:42:44.277745 16285 715 Product \N \N 4 User \N create ---\nsku: BLU-715\nname: BLS-0072\ndescription: CARDIGAN NEGRO CON LENTEJUELAS VALENTINE ST.\nprice_base: !ruby/object:BigDecimal 18:0.36E3\nprice_sale: !ruby/object:BigDecimal 18:0.969E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_2503.JPG\ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-715 fue creado. 187.149.44.182 c6469f81-ac6c-4ad2-9192-7564f9609c92 2019-09-21 20:43:46.114442 16286 715 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000715'\n 2 \N 187.149.44.182 c6469f81-ac6c-4ad2-9192-7564f9609c92 2019-09-21 20:43:46.143112 16287 142 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-13\namount: !ruby/object:BigDecimal 18:0.6054E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6054E4\nobservations: ''\npurchase_date: 2019-09-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-13 por $ 6054.0 MXN creada. 187.149.44.182 f2b2cdeb-47f6-4bb4-9c2f-b100ab3f83ae 2019-09-21 20:43:58.885131 16288 202 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-09-21\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.44.182 a2fbd65d-1993-44af-bfba-16c30cbfcc79 2019-09-21 20:44:35.21179 16289 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-20 17:29:23.377700000 Z\n- &1 2019-09-21 17:40:05.221697000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-21 20:44:58.757063099 Z\nsign_in_count:\n- 31\n- 32\n 67 \N 187.149.44.182 e52d516b-37f0-4a9e-8266-81a2e1f33bd8 2019-09-21 20:44:58.762516 16290 8 User \N \N 8 User \N update ---\nunique_session_id:\n- zJhuc5ymuckEsKwsMNsX\n- eHY-GyyMxdxCxepMj9UZ\n 68 \N 187.149.44.182 e52d516b-37f0-4a9e-8266-81a2e1f33bd8 2019-09-21 20:44:58.775175 16291 199 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-21\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.44.182 b821a946-fc1f-4b15-a85c-90ad3cc5cd18 2019-09-21 20:45:29.041349 16292 579 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.8E1\n 7 \N 187.149.44.182 b821a946-fc1f-4b15-a85c-90ad3cc5cd18 2019-09-21 20:45:29.060687 16293 1021 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 669\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.9E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 b821a946-fc1f-4b15-a85c-90ad3cc5cd18 2019-09-21 20:45:29.082953 16294 200 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-21\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.44.182 b55d3764-783b-4005-9a8e-c6eb863973bd 2019-09-21 20:45:37.991132 16295 800 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.4E1\n 12 \N 187.149.44.182 b55d3764-783b-4005-9a8e-c6eb863973bd 2019-09-21 20:45:38.012057 16296 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 18 \N 187.149.44.182 b55d3764-783b-4005-9a8e-c6eb863973bd 2019-09-21 20:45:38.03144 16297 201 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-21\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.44.182 cfc99402-85cf-481a-ad63-ba7ae392a398 2019-09-21 20:59:21.394709 16298 1022 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 677\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 cfc99402-85cf-481a-ad63-ba7ae392a398 2019-09-21 20:59:21.414142 16299 202 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-21\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.44.182 d0ec70fc-0d70-431e-89c6-fafd7a68d049 2019-09-21 20:59:29.98469 16300 1023 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 713\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 d0ec70fc-0d70-431e-89c6-fafd7a68d049 2019-09-21 20:59:30.025262 16301 1024 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 714\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 d0ec70fc-0d70-431e-89c6-fafd7a68d049 2019-09-21 20:59:30.046828 16302 197 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-21\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.44.182 17ef0a13-a101-4941-8573-f6ba18037422 2019-09-21 21:03:35.035837 16303 1025 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 636\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 17ef0a13-a101-4941-8573-f6ba18037422 2019-09-21 21:03:35.055679 16304 870 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.44.182 3f8dc163-07f2-456c-978b-bf768dcc4fe0 2019-09-21 21:05:15.123153 16305 870 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.44.182 0e6e3cc6-1959-4d08-a1e0-5f4166f151f3 2019-09-21 21:05:18.327465 16306 203 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-09-21\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.44.182 1d744467-6c97-458e-8e77-057720b83236 2019-09-21 21:05:18.496178 16554 1118 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV3-V-37 cancelada. 189.186.149.170 ddc61409-0f89-4bf0-b991-3098d61cd865 2019-09-26 22:41:11.560248 16307 1128 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 446\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-09-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-627\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 276fb831-0d96-4b70-8f0d-5cf1983f64dc 2019-09-21 22:31:20.641687 16308 792 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.44.182 276fb831-0d96-4b70-8f0d-5cf1983f64dc 2019-09-21 22:31:20.67182 16309 1128 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 ee1507cb-410c-4668-8447-e1ec4951c2ad 2019-09-21 22:32:18.986784 16310 1552 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 446\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 1128\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-627\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-627 187.149.44.182 ee1507cb-410c-4668-8447-e1ec4951c2ad 2019-09-21 22:32:19.008889 16311 1129 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 446\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-628\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 7e20d7c0-08cb-4038-8afb-eeceaa4509a7 2019-09-21 22:34:15.552237 16312 1022 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.44.182 7e20d7c0-08cb-4038-8afb-eeceaa4509a7 2019-09-21 22:34:15.581118 16313 1129 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 8848ea97-0119-4fd9-af4f-8044645a60a4 2019-09-21 22:34:44.801195 16314 1553 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 446\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1129\ncardnumber: 456\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-628\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-628 187.149.44.182 8848ea97-0119-4fd9-af4f-8044645a60a4 2019-09-21 22:34:44.826077 16315 178 Customer \N \N 8 User \N create ---\nnick_name: CINDY OVALLES\nphone: "(667) 726-6182"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CINDY OVALLES fue registrado. 187.149.44.182 222e63a0-29fc-415e-ab89-f882a595938d 2019-09-21 22:38:37.386405 16316 1130 Sale \N \N 8 User \N create ---\ncustomer_id: 178\nuser_id: 8\nopen_cash_register_id: 445\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-09-21\nsaletype: 2\nseller_id: 11\nsale_code: PV2-V-461\nexpiration_date: 2019-10-26\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 634f243a-de27-423c-9661-46ae77c7678f 2019-09-21 22:39:05.892285 16317 995 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.44.182 634f243a-de27-423c-9661-46ae77c7678f 2019-09-21 22:39:05.919761 16318 1554 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 445\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 1130\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-461\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-461 187.149.44.182 68726257-b77d-4ed1-bf5b-8d568bd15fd8 2019-09-21 22:39:19.535483 16319 1130 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.44.182 835df799-4972-43e3-9b39-33616f951fcd 2019-09-21 22:39:24.000365 16320 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-20 16:27:16.406179000 Z\n- &1 2019-09-21 19:22:58.787027000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-21 22:55:28.134631812 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105953\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105577\n mask_addr: 4294967295\nsign_in_count:\n- 15\n- 16\n 32 \N 189.186.86.41 04183ff4-c50b-4b17-8416-4927af282909 2019-09-21 22:55:28.147483 16321 23 User \N \N 23 User \N update ---\nunique_session_id:\n- M3tLKovv2Ex9Qnai1ujX\n- eo2XUc5YNeTN282M-Ed1\n 33 \N 189.186.86.41 04183ff4-c50b-4b17-8416-4927af282909 2019-09-21 22:55:28.16712 16322 1131 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 446\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-09-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-629\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 799e9ffd-f41d-4e61-9e5d-c2366ac564f8 2019-09-21 23:15:25.450481 16323 704 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.44.182 799e9ffd-f41d-4e61-9e5d-c2366ac564f8 2019-09-21 23:15:25.477898 16324 1131 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 88bf716b-6342-4e2d-bf16-097d1861d56f 2019-09-21 23:16:10.3925 16325 1555 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 446\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 1131\ncardnumber: 2899\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-629\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-629 187.149.44.182 88bf716b-6342-4e2d-bf16-097d1861d56f 2019-09-21 23:16:10.412117 16326 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-09-20 22:38:48.607512000 Z\n- &1 2019-09-21 18:34:47.017367000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-21 23:54:14.808557078 Z\nsign_in_count:\n- 83\n- 84\n 168 \N 187.149.44.182 556b987a-1689-4e67-94ff-969764e5bb11 2019-09-21 23:54:14.815471 16327 1 User \N \N 1 User \N update ---\nunique_session_id:\n- WVzQQ1R21JKx_5JxFkSo\n- z9v7_Axa9HugX_FHy321\n 169 \N 187.149.44.182 556b987a-1689-4e67-94ff-969764e5bb11 2019-09-21 23:54:14.829689 16328 203 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-21\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.44.182 6ad95859-e19a-43b0-ab69-e225a53bb75e 2019-09-21 23:54:51.661525 16329 1022 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.44.182 6ad95859-e19a-43b0-ab69-e225a53bb75e 2019-09-21 23:54:51.681309 16330 1132 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 446\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.174E3\ntotal: !ruby/object:BigDecimal 18:0.525E3\nstatus: 0\ndate_sale: 2019-09-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-630\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 d7b5cdfe-80e2-4b1b-ad02-bb72acdc6155 2019-09-22 00:00:02.299802 16331 1022 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.44.182 d7b5cdfe-80e2-4b1b-ad02-bb72acdc6155 2019-09-22 00:00:02.333565 16332 1132 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 8e65c349-e08a-447e-a0f2-8a55152bb686 2019-09-22 00:05:18.259974 16333 1556 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 446\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.525E3\nmove_type: '1'\nsale_id: 1132\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-630\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: 0000MD8W\ncustomer_account: 0000MD8W\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-630 187.149.44.182 8e65c349-e08a-447e-a0f2-8a55152bb686 2019-09-22 00:05:18.279751 16334 1133 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 445\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-09-21\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-462\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 50a781f5-8c38-4e44-b8a8-5cd68c8b907a 2019-09-22 00:44:35.345191 16335 995 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.44.182 50a781f5-8c38-4e44-b8a8-5cd68c8b907a 2019-09-22 00:44:35.388733 16336 1133 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 4e6801f8-2d65-4c23-8c93-61fd68ccfd7a 2019-09-22 00:44:44.986533 16337 1557 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 445\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 1133\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-462\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-462 187.149.44.182 4e6801f8-2d65-4c23-8c93-61fd68ccfd7a 2019-09-22 00:44:45.026358 16338 188 Expense \N \N 8 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 445\nquantity: !ruby/object:BigDecimal 18:0.8E2\nstatus: 1\nobservations: Comida Daniela\nexpense_date: 2019-09-21\nexpense_code: PV2-E-42\n 1 Egreso por 80.0 registrado 187.149.44.182 2e422d03-9f7f-4975-b8c4-e28fcc3b6bfb 2019-09-22 01:19:10.845922 16339 12 Purchase \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 2e422d03-9f7f-4975-b8c4-e28fcc3b6bfb 2019-09-22 01:19:10.860964 16340 1558 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 445\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: 12\nexpense_id: 188\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.44.182 2e422d03-9f7f-4975-b8c4-e28fcc3b6bfb 2019-09-22 01:19:10.881294 16341 189 Expense \N \N 8 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 445\nquantity: !ruby/object:BigDecimal 18:0.15E4\nstatus: 1\nobservations: semana Daneila\nexpense_date: 2019-09-21\nexpense_code: PV2-E-43\n 1 Egreso por 1500.0 registrado 187.149.44.182 43b24999-198d-4a2f-86c1-4c1ae7e9bca8 2019-09-22 01:22:47.304228 16342 1559 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 445\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 189\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.44.182 43b24999-198d-4a2f-86c1-4c1ae7e9bca8 2019-09-22 01:22:47.343753 16343 445 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 446\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4209E4\namount_out: !ruby/object:BigDecimal 18:0.738E3\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.14E4\ncash_fund: !ruby/object:BigDecimal 18:0.781E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2181E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 05f33bfc-57ca-44ae-9962-80edef93507f 2019-09-22 01:28:26.460562 16344 446 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 05f33bfc-57ca-44ae-9962-80edef93507f 2019-09-22 01:28:26.474704 16345 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-21 19:39:32.048041000 Z\n- &1 2019-09-21 20:32:29.209943000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-22 01:29:35.249341115 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105577\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\nsign_in_count:\n- 658\n- 659\n 1318 \N 189.186.7.207 d1e64d00-d7f7-456e-9abc-25692feb2c8b 2019-09-22 01:29:35.257072 16346 4 User \N \N 4 User \N update ---\nunique_session_id:\n- r2BKx7DGwQzXwznzsXM1\n- 1mv9FUFZdNReyJRKUiwZ\n 1319 \N 189.186.7.207 d1e64d00-d7f7-456e-9abc-25692feb2c8b 2019-09-22 01:29:35.277636 16347 446 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 445\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.2298E4\namount_out: !ruby/object:BigDecimal 18:0.158E4\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.6E3\ncash_fund: !ruby/object:BigDecimal 18:0.686E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1286E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.44.182 80c0774e-868a-4fbe-b6d4-9838637df188 2019-09-22 01:30:04.610103 16348 445 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 80c0774e-868a-4fbe-b6d4-9838637df188 2019-09-22 01:30:04.621938 16349 447 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 447\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.1378E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1225E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1225E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.86.41 b1c7ca8c-70fc-4a2f-b787-e508c16c8b2a 2019-09-22 01:59:00.24833 16350 447 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.86.41 b1c7ca8c-70fc-4a2f-b787-e508c16c8b2a 2019-09-22 01:59:00.26011 16558 812 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 16 \N 189.186.149.170 be82de75-958d-4726-af83-cac5941b2151 2019-09-26 22:42:52.936067 16351 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-21 19:22:58.787027000 Z\n- &1 2019-09-21 22:55:28.134631000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-22 17:31:27.542952800 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105577\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183130006\n mask_addr: 4294967295\nsign_in_count:\n- 16\n- 17\n 34 \N 189.186.181.150 b083c43e-b9c9-4220-b249-3cf1b3743efd 2019-09-22 17:31:27.588979 16352 23 User \N \N 23 User \N update ---\nunique_session_id:\n- eo2XUc5YNeTN282M-Ed1\n- zk-d7ebxp4Ft9P6YJ43X\n 35 \N 189.186.181.150 b083c43e-b9c9-4220-b249-3cf1b3743efd 2019-09-22 17:31:27.6145 16353 448 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1225E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1225.0 189.186.181.150 9f4a7aa5-efef-40c0-835f-d2f1265da73d 2019-09-22 17:31:55.432321 16354 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-21 20:32:29.209943000 Z\n- &1 2019-09-22 01:29:35.249341000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-22 18:48:13.803106253 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946213\n mask_addr: 4294967295\nsign_in_count:\n- 659\n- 660\n 1320 \N 200.68.181.229 0c6bb286-9d6c-4633-a8a1-165f899c2052 2019-09-22 18:48:13.814014 16355 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1mv9FUFZdNReyJRKUiwZ\n- D7Nr9iqshUSwGBb9HxK8\n 1321 \N 200.68.181.229 0c6bb286-9d6c-4633-a8a1-165f899c2052 2019-09-22 18:48:13.83542 16356 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-09-20 17:13:17.876221000 Z\n- &1 2019-09-21 17:44:47.152861000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-22 19:23:13.577917273 Z\nsign_in_count:\n- 2\n- 3\n 6 \N 187.149.44.182 8ee88764-a6db-4a32-8b0a-382fa87fd6d2 2019-09-22 19:23:13.587675 16357 25 User \N \N 25 User \N update ---\nunique_session_id:\n- tZ1CrrxApmLK_CrH14g9\n- 2G3rG-AjnWoJd9hTcya1\n 7 \N 187.149.44.182 8ee88764-a6db-4a32-8b0a-382fa87fd6d2 2019-09-22 19:23:13.60342 16358 449 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.781E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 781.0 187.149.44.182 9c3f52f9-90ad-4ecd-8bae-874d796b86ec 2019-09-22 19:57:56.545532 16359 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-22 01:29:35.249341000 Z\n- &1 2019-09-22 18:48:13.803106000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-22 20:05:05.887652021 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946213\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946213\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\nsign_in_count:\n- 660\n- 661\n 1322 \N 189.186.7.207 a0a0f528-9bd0-495c-8a9a-236eecfb57e2 2019-09-22 20:05:05.895721 16360 4 User \N \N 4 User \N update ---\nunique_session_id:\n- D7Nr9iqshUSwGBb9HxK8\n- vjq3yXfAyNZrMAz9z-6s\n 1323 \N 189.186.7.207 a0a0f528-9bd0-495c-8a9a-236eecfb57e2 2019-09-22 20:05:05.914243 16361 1134 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 449\namount: !ruby/object:BigDecimal 18:0.137845E4\ntax: !ruby/object:BigDecimal 18:0.22055E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-09-22\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-631\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 85ad4a52-f0c3-429d-bd70-828747ce119e 2019-09-22 20:17:52.908456 16362 271 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.44.182 85ad4a52-f0c3-429d-bd70-828747ce119e 2019-09-22 20:17:52.935709 16363 1134 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 22835c50-bd92-467f-8710-91e45a1dd12f 2019-09-22 20:18:03.978815 16364 1560 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 449\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 1134\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-631\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-631 187.149.44.182 22835c50-bd92-467f-8710-91e45a1dd12f 2019-09-22 20:18:04.004396 16365 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-14 16:45:00.909735000 Z\n- &1 2019-09-19 22:50:05.227526000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-22 20:19:15.507225371 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099001\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121888\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121888\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 18\n- 19\n 39 \N 187.149.44.182 e8d78cc5-fbe9-403d-87c1-736ac8e6e9b0 2019-09-22 20:19:15.514311 16366 21 User \N \N 21 User \N update ---\nunique_session_id:\n- D9-3tyCy-d3Gscx4QhzJ\n- Z7C9AVhrw6sMyMxzLyB-\n 40 \N 187.149.44.182 e8d78cc5-fbe9-403d-87c1-736ac8e6e9b0 2019-09-22 20:19:15.528174 16367 1135 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 448\namount: !ruby/object:BigDecimal 18:0.137845E4\ntax: !ruby/object:BigDecimal 18:0.22055E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-09-22\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-40\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 b3df1498-ec71-4e97-a815-1f9d2634b190 2019-09-22 20:19:42.908393 16368 849 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.44.182 b3df1498-ec71-4e97-a815-1f9d2634b190 2019-09-22 20:19:42.934496 16369 1135 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 d29e6096-07d2-4d4a-9b05-5981f1e946e6 2019-09-22 20:19:47.266621 16370 1561 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 448\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 1135\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-40\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-40 187.149.44.182 d29e6096-07d2-4d4a-9b05-5981f1e946e6 2019-09-22 20:19:47.289183 16371 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-09-21 17:44:47.152861000 Z\n- &1 2019-09-22 19:23:13.577917000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-22 20:22:25.521163804 Z\nsign_in_count:\n- 3\n- 4\n 8 \N 187.149.44.182 8fb27a32-cf5c-4485-95e2-f2025e14e240 2019-09-22 20:22:25.527019 16372 25 User \N \N 25 User \N update ---\nunique_session_id:\n- 2G3rG-AjnWoJd9hTcya1\n- _znx3xh1NjsUinBSSQLk\n 9 \N 187.149.44.182 8fb27a32-cf5c-4485-95e2-f2025e14e240 2019-09-22 20:22:25.553856 16374 1560 CashRegistersMove \N \N 25 User \N destroy ---\nopen_cash_register_id: 449\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 1134\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-631\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.44.182 0f127321-1892-451b-a397-da40238085b4 2019-09-22 20:30:04.97784 16375 271 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.44.182 0f127321-1892-451b-a397-da40238085b4 2019-09-22 20:30:05.007347 16376 448 CashOut \N \N 25 User \N create ---\nopen_cash_register_id: 449\nuser_id: 25\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.781E3\nphysical_cash: !ruby/object:BigDecimal 18:0.781E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 1163f45c-4a07-4c3f-b586-2e9e2490f886 2019-09-22 21:02:47.730355 16377 449 OpenCashRegister \N \N 25 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 1163f45c-4a07-4c3f-b586-2e9e2490f886 2019-09-22 21:02:47.747354 16378 449 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 448\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.1599E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.1599E4\ncash_fund: !ruby/object:BigDecimal 18:0.1225E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2824E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.181.150 a505df0e-6212-4f41-b812-a85a7a1f1dd0 2019-09-22 21:59:33.425783 16379 448 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.181.150 a505df0e-6212-4f41-b812-a85a7a1f1dd0 2019-09-22 21:59:33.437982 16380 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-22 18:48:13.803106000 Z\n- &1 2019-09-22 20:05:05.887652000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-23 14:57:52.673861902 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946213\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\nsign_in_count:\n- 661\n- 662\n 1324 \N 189.186.7.207 0b033e0f-69a1-48b6-90b2-381bb1a98bc2 2019-09-23 14:57:52.70269 16381 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vjq3yXfAyNZrMAz9z-6s\n- Cwvt1K-s6xByVtRNW7zc\n 1325 \N 189.186.7.207 0b033e0f-69a1-48b6-90b2-381bb1a98bc2 2019-09-23 14:57:52.726775 16382 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-20 18:57:26.412816000 Z\n- &1 2019-09-21 18:27:09.685529000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-23 16:06:48.557256956 Z\nsign_in_count:\n- 327\n- 328\n 659 \N 187.149.44.182 488c24c8-56b0-45d5-ac0d-0c62ed1037b3 2019-09-23 16:06:48.579251 16383 2 User \N \N 2 User \N update ---\nunique_session_id:\n- LvddMsNFt3f_TLEcNWxx\n- vhUF8WL6tRWDvd3k9bSs\n 660 \N 187.149.44.182 488c24c8-56b0-45d5-ac0d-0c62ed1037b3 2019-09-23 16:06:48.593968 16384 450 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.781E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 781.0 187.149.44.182 163166cb-9c07-45a3-8ea7-13d904d77817 2019-09-23 16:09:14.334846 16385 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-21 17:40:05.221697000 Z\n- &1 2019-09-21 20:44:58.757063000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-23 16:17:53.652721010 Z\nsign_in_count:\n- 32\n- 33\n 69 \N 187.149.44.182 4fb213e0-8967-4d91-8081-823aa8b71494 2019-09-23 16:17:53.659492 16386 8 User \N \N 8 User \N update ---\nunique_session_id:\n- eHY-GyyMxdxCxepMj9UZ\n- Uy3hc6VMzAMWFLHxxeUL\n 70 \N 187.149.44.182 4fb213e0-8967-4d91-8081-823aa8b71494 2019-09-23 16:17:53.672626 16387 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-09-20 16:32:45.753322000 Z\n- &1 2019-09-20 17:27:55.602571000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-23 16:19:02.397931218 Z\nsign_in_count:\n- 89\n- 90\n 180 \N 187.149.44.182 2395d53d-ac82-4cf3-b957-8f440053e61d 2019-09-23 16:19:02.405036 16388 9 User \N \N 9 User \N update ---\nunique_session_id:\n- zbbQuYy9Zs5vnMwub8Vd\n- 8PCNnayzfXJJiU6nQPdC\n 181 \N 187.149.44.182 2395d53d-ac82-4cf3-b957-8f440053e61d 2019-09-23 16:19:02.421917 16389 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-14 17:41:05.416488000 Z\n- &1 2019-09-17 19:48:19.193909000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-23 16:19:29.027227317 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084172\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183125034\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183125034\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 35\n- 36\n 73 \N 187.149.44.182 f06332d3-d50c-4042-bd46-654817e4ebe6 2019-09-23 16:19:29.036387 16390 18 User \N \N 18 User \N update ---\nunique_session_id:\n- eCVjgnKYsc3DQMdPUsqo\n- bdmadqCkhg4sVpF8tCqP\n 74 \N 187.149.44.182 f06332d3-d50c-4042-bd46-654817e4ebe6 2019-09-23 16:19:29.053269 16391 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-22 20:05:05.887652000 Z\n- &1 2019-09-23 14:57:52.673861000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-23 16:25:24.138693599 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 662\n- 663\n 1326 \N 187.149.44.182 f86ce3ee-1a4a-4951-a7d2-bfe69beba84c 2019-09-23 16:25:24.146844 16392 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Cwvt1K-s6xByVtRNW7zc\n- 4TFVzyqspGXWvT5W1hzq\n 1327 \N 187.149.44.182 f86ce3ee-1a4a-4951-a7d2-bfe69beba84c 2019-09-23 16:25:24.166347 16393 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-21 20:44:58.757063000 Z\n- &1 2019-09-23 16:17:53.652721000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-23 17:40:55.444892683 Z\nsign_in_count:\n- 33\n- 34\n 71 \N 187.149.44.182 62c9d542-9587-41c3-9d6a-370fcf8afeac 2019-09-23 17:40:55.450524 16394 8 User \N \N 8 User \N update ---\nunique_session_id:\n- Uy3hc6VMzAMWFLHxxeUL\n- 5susy65YuDKjeU2JUTZL\n 72 \N 187.149.44.182 62c9d542-9587-41c3-9d6a-370fcf8afeac 2019-09-23 17:40:55.463912 16395 451 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.686E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 686.0 187.149.44.182 1762a690-1bcd-4880-a035-92ce6f368f83 2019-09-23 17:50:14.097065 16396 1136 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 451\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-09-23\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-463\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 a5678ea9-7099-4545-a41f-0aa9c00bbd34 2019-09-23 17:52:25.324204 16397 877 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.44.182 a5678ea9-7099-4545-a41f-0aa9c00bbd34 2019-09-23 17:52:25.354466 16398 1136 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 c444962a-6f77-452c-93d3-b1b19102ebdc 2019-09-23 17:52:35.958221 16399 1562 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 451\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 1136\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-463\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-463 187.149.44.182 c444962a-6f77-452c-93d3-b1b19102ebdc 2019-09-23 17:52:35.980724 16400 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-23 14:57:52.673861000 Z\n- &1 2019-09-23 16:25:24.138693000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-23 18:57:14.773743186 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 663\n- 664\n 1328 \N 187.149.44.182 d096cc7a-ddc9-4c2b-a7b8-16784501ac33 2019-09-23 18:57:14.780427 16401 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4TFVzyqspGXWvT5W1hzq\n- zn1zM2Na7z9VzyKC7oCf\n 1329 \N 187.149.44.182 d096cc7a-ddc9-4c2b-a7b8-16784501ac33 2019-09-23 18:57:14.795774 16402 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-19 22:50:05.227526000 Z\n- &1 2019-09-22 20:19:15.507225000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-23 20:14:23.253257364 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121888\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114208\n mask_addr: 4294967295\nsign_in_count:\n- 19\n- 20\n 41 \N 189.186.119.224 c03eaf62-c064-4582-905c-0500431a2b73 2019-09-23 20:14:23.282308 16403 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Z7C9AVhrw6sMyMxzLyB-\n- 1H2_qie56GdztBFyG9EB\n 42 \N 189.186.119.224 c03eaf62-c064-4582-905c-0500431a2b73 2019-09-23 20:14:23.305494 16404 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-09-20 17:27:55.602571000 Z\n- &1 2019-09-23 16:19:02.397931000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-23 20:44:27.558707692 Z\nsign_in_count:\n- 90\n- 91\n 182 \N 187.149.44.182 1224461f-468d-43e4-a2fc-4e8aafa0e20c 2019-09-23 20:44:27.564107 16405 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 8PCNnayzfXJJiU6nQPdC\n- BfPBDWMBSZrfxQvZsa-P\n 183 \N 187.149.44.182 1224461f-468d-43e4-a2fc-4e8aafa0e20c 2019-09-23 20:44:27.577061 16406 811 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.44.182 82cfa0f1-f88d-4cfd-885b-33e52e2d2e3a 2019-09-23 20:45:58.656354 16407 204 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-09-23\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.44.182 e345b040-772c-49d1-8421-5d57ecb00030 2019-09-23 20:46:00.781941 16408 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-23 16:17:53.652721000 Z\n- &1 2019-09-23 17:40:55.444892000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-23 20:46:17.161266775 Z\nsign_in_count:\n- 34\n- 35\n 73 \N 187.149.44.182 7c833857-a297-43ca-9c98-772f734dd568 2019-09-23 20:46:17.166757 16409 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 5susy65YuDKjeU2JUTZL\n- gG-BC-DyYTomRo6_t13s\n 74 \N 187.149.44.182 7c833857-a297-43ca-9c98-772f734dd568 2019-09-23 20:46:17.179272 16410 204 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-23\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.44.182 1b1df88b-b188-47f9-a708-4731ac7fab37 2019-09-23 20:47:24.903649 16411 1026 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 665\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 1b1df88b-b188-47f9-a708-4731ac7fab37 2019-09-23 20:47:24.933964 16412 1137 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 451\namount: !ruby/object:BigDecimal 18:0.1029E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1029E4\nstatus: 0\ndate_sale: 2019-09-23\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-464\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 8e971353-f106-431d-98bd-9ad493fc50fc 2019-09-23 20:47:49.486681 16413 1011 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.44.182 8e971353-f106-431d-98bd-9ad493fc50fc 2019-09-23 20:47:49.525169 16414 1026 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.44.182 8e971353-f106-431d-98bd-9ad493fc50fc 2019-09-23 20:47:49.559965 16415 1137 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 ab3e074b-4757-4269-9131-7c97bd30af67 2019-09-23 20:51:48.325628 16416 1563 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 451\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1029E4\nmove_type: '1'\nsale_id: 1137\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-464\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1029E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-464 187.149.44.182 ab3e074b-4757-4269-9131-7c97bd30af67 2019-09-23 20:51:48.361136 16417 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-23 16:25:24.138693000 Z\n- &1 2019-09-23 18:57:14.773743000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-23 21:39:46.408029581 Z\nsign_in_count:\n- 664\n- 665\n 1330 \N 187.149.44.182 3d87bcf0-1b73-4b51-b425-33765733a2e9 2019-09-23 21:39:46.416763 16418 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zn1zM2Na7z9VzyKC7oCf\n- PJxCdjsisxKzv-kQeUzo\n 1331 \N 187.149.44.182 3d87bcf0-1b73-4b51-b425-33765733a2e9 2019-09-23 21:39:46.438566 16419 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-23 18:57:14.773743000 Z\n- &1 2019-09-23 21:39:46.408029000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-23 23:51:01.265194720 Z\nsign_in_count:\n- 665\n- 666\n 1332 \N 187.149.44.182 45b47927-905a-4849-bf19-e6b7a343dc42 2019-09-23 23:51:01.271536 16420 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PJxCdjsisxKzv-kQeUzo\n- XPbfo2TyDxNynom9duX-\n 1333 \N 187.149.44.182 45b47927-905a-4849-bf19-e6b7a343dc42 2019-09-23 23:51:01.286326 16421 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-23 17:40:55.444892000 Z\n- &1 2019-09-23 20:46:17.161266000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-24 00:00:58.464544135 Z\nsign_in_count:\n- 35\n- 36\n 75 \N 187.149.44.182 da97c2d2-65db-4d48-bab3-73fb24c1b9c4 2019-09-24 00:00:58.472061 16422 8 User \N \N 8 User \N update ---\nunique_session_id:\n- gG-BC-DyYTomRo6_t13s\n- yCo-YojbLNYsepskTrUu\n 76 \N 187.149.44.182 da97c2d2-65db-4d48-bab3-73fb24c1b9c4 2019-09-24 00:00:58.490506 16559 1153 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-43 cancelada. 189.186.149.170 c0577229-3b99-4f68-b7aa-7965719ce0a0 2019-09-26 22:43:00.37111 16991 812 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 21 \N 187.149.44.182 935207fe-0949-4c3d-a762-a4fc933e5b55 2019-10-03 20:20:41.523231 16423 1564 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 451\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1030\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-429 187.149.44.182 e343396c-c097-47e5-99dd-2d4a3a49161e 2019-09-24 00:02:07.491474 16424 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-23 21:39:46.408029000 Z\n- &1 2019-09-23 23:51:01.265194000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-24 00:10:10.929582582 Z\nsign_in_count:\n- 666\n- 667\n 1334 \N 187.149.44.182 e37adfb1-1439-487a-aa64-c587dddab217 2019-09-24 00:10:10.934834 16425 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XPbfo2TyDxNynom9duX-\n- zybwLztnZjmvyGEmdKzU\n 1335 \N 187.149.44.182 e37adfb1-1439-487a-aa64-c587dddab217 2019-09-24 00:10:10.947302 16426 1138 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 451\namount: !ruby/object:BigDecimal 18:0.897E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.897E3\nstatus: 0\ndate_sale: 2019-09-23\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-465\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 0eee8355-7aed-419e-bf8b-a084d02fe8a3 2019-09-24 00:42:23.852466 16427 805 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.12E2\n 2 \N 187.149.44.182 0eee8355-7aed-419e-bf8b-a084d02fe8a3 2019-09-24 00:42:23.879184 16428 1138 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 6383bbfd-15fb-4a31-87cd-b67f807d293a 2019-09-24 00:42:29.944894 16429 1565 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 451\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.897E3\nmove_type: '1'\nsale_id: 1138\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-465\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.103E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-465 187.149.44.182 6383bbfd-15fb-4a31-87cd-b67f807d293a 2019-09-24 00:42:29.972837 16430 1139 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 451\namount: !ruby/object:BigDecimal 18:0.639E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.639E3\nstatus: 0\ndate_sale: 2019-09-23\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-466\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 d7a2715f-7336-4986-a7d0-7299d062ac8b 2019-09-24 00:58:23.754252 16431 803 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 187.149.44.182 d7a2715f-7336-4986-a7d0-7299d062ac8b 2019-09-24 00:58:23.784884 16432 1139 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 ab7aab3b-9ea0-4038-9a8e-cae52c4b5034 2019-09-24 01:03:59.275972 16433 1566 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 451\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.639E3\nmove_type: '1'\nsale_id: 1139\ncardnumber: 1233\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-466\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-466 187.149.44.182 ab7aab3b-9ea0-4038-9a8e-cae52c4b5034 2019-09-24 01:03:59.300872 16434 179 Customer \N \N 8 User \N create ---\nnick_name: JULISSA MARQUEZ\nphone: "(667) 143-4380"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JULISSA MARQUEZ fue registrado. 187.149.44.182 5489ee74-8cac-40bf-91df-fe4a3028ea56 2019-09-24 01:06:20.069784 16435 1140 Sale \N \N 8 User \N create ---\ncustomer_id: 179\nuser_id: 8\nopen_cash_register_id: 451\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-23\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-467\nexpiration_date: 2019-10-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 d8da377e-429e-4a88-911e-e84c589a01d8 2019-09-24 01:06:33.761796 16436 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 19 \N 187.149.44.182 d8da377e-429e-4a88-911e-e84c589a01d8 2019-09-24 01:06:33.787462 16437 1567 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 451\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1140\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-467\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-467 187.149.44.182 0bfac61e-7fac-4a38-aa0b-f28435e36462 2019-09-24 01:06:56.528736 16438 1140 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.44.182 96cf0996-bb6e-40ac-960c-e491babfac72 2019-09-24 01:06:58.540545 16439 1568 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 451\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.199E3\nmove_type: '1'\nsale_id: 1140\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.199E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-467 187.149.44.182 0968f0ef-a441-4a88-8330-814363f2e6c1 2019-09-24 01:07:52.324911 16440 1140 Sale \N \N 8 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.44.182 169d3bf3-1a25-4a79-972f-e003c1198a49 2019-09-24 01:07:53.697424 16441 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-21 18:27:09.685529000 Z\n- &1 2019-09-23 16:06:48.557256000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-24 01:30:43.033646069 Z\nsign_in_count:\n- 328\n- 329\n 661 \N 187.149.44.182 d8957981-ba77-41be-8004-a7c3c01a7458 2019-09-24 01:30:43.047064 16442 2 User \N \N 2 User \N update ---\nunique_session_id:\n- vhUF8WL6tRWDvd3k9bSs\n- LnWRBLXtmz7w9wX8-ZvC\n 662 \N 187.149.44.182 d8957981-ba77-41be-8004-a7c3c01a7458 2019-09-24 01:30:43.071061 16443 450 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 450\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.781E3\nphysical_cash: !ruby/object:BigDecimal 18:0.781E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 85a30a20-4cbc-4bdd-a3d6-1ad430c2beeb 2019-09-24 01:31:52.699769 16444 450 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 85a30a20-4cbc-4bdd-a3d6-1ad430c2beeb 2019-09-24 01:31:52.715758 26851 486 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '486'\n is_parent: false\n sku: BOL-486\n name: UXDI214\n description: BOLSO CLOE\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: WIN_20200107_13_36_35_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000486'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-22 19:25:21.797768'\n updated_at: &12 2020-01-07 20:41:26.464551409 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '486'\n sku: BOL-486\n name: UXDI214\n description: BOLSO CLOE\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-22 19:25:21.797768'\n updated_at: '2019-02-22 19:25:21.865046'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000486'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '486'\n type: *3\n value: 486\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-486\n type: *7\n value: BOL-486\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: UXDI214\n type: *8\n value: UXDI214\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO CLOE\n type: *6\n value: BOLSO CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20200107_13_36_35_Pro.jpg\n type: *2\n value: WIN_20200107_13_36_35_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000486'\n type: *2\n value: '0000486'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-22 19:25:21.797768'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20200107_13_36_35_Pro.jpg\n 3 El producto BOL-486 fue modificado. 189.186.117.149 75f3d331-4749-42ce-a573-512b21306970 2020-01-07 20:41:26.505456 16445 451 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 451\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.5063E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.374E4\ncash_fund: !ruby/object:BigDecimal 18:0.137E4\nphysical_cash: !ruby/object:BigDecimal 18:0.511E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.44.182 84771c33-8dee-428b-a304-d1f65c64354c 2019-09-24 01:36:53.610707 16446 451 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 84771c33-8dee-428b-a304-d1f65c64354c 2019-09-24 01:36:53.650629 16447 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-23 23:51:01.265194000 Z\n- &1 2019-09-24 00:10:10.929582000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-24 01:38:23.639462151 Z\nsign_in_count:\n- 667\n- 668\n 1336 \N 187.149.44.182 1969de40-a3be-4e1c-ae30-ce7bc985cb16 2019-09-24 01:38:23.646064 16448 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zybwLztnZjmvyGEmdKzU\n- ssFHfb2zskMy7oAXZEE5\n 1337 \N 187.149.44.182 1969de40-a3be-4e1c-ae30-ce7bc985cb16 2019-09-24 01:38:23.662642 16449 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-21 22:55:28.134631000 Z\n- &1 2019-09-22 17:31:27.542952000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-24 16:07:45.073603222 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105577\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183130006\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183130006\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098522\n mask_addr: 4294967295\nsign_in_count:\n- 17\n- 18\n 36 \N 189.186.58.154 f76b55de-b839-457a-8066-ab5cf997b5a5 2019-09-24 16:07:45.106936 16450 23 User \N \N 23 User \N update ---\nunique_session_id:\n- zk-d7ebxp4Ft9P6YJ43X\n- 2is5jfNDn8j3wCeCMdAq\n 37 \N 189.186.58.154 f76b55de-b839-457a-8066-ab5cf997b5a5 2019-09-24 16:07:45.146142 16451 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-09-21 18:34:47.017367000 Z\n- &1 2019-09-21 23:54:14.808557000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-24 18:26:46.108413163 Z\nsign_in_count:\n- 84\n- 85\n 170 \N 187.149.44.182 c18dde41-5f29-4d4b-8d06-1c477552af48 2019-09-24 18:26:46.115813 16452 1 User \N \N 1 User \N update ---\nunique_session_id:\n- z9v7_Axa9HugX_FHy321\n- UQpvTxPBqwDzrVNVPMs6\n 171 \N 187.149.44.182 c18dde41-5f29-4d4b-8d06-1c477552af48 2019-09-24 18:26:46.130378 16453 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-23 16:06:48.557256000 Z\n- &1 2019-09-24 01:30:43.033646000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-24 18:29:40.565823564 Z\nsign_in_count:\n- 329\n- 330\n 663 \N 187.149.44.182 e250fe69-1110-4f39-af04-882d83979b87 2019-09-24 18:29:40.571257 16454 2 User \N \N 2 User \N update ---\nunique_session_id:\n- LnWRBLXtmz7w9wX8-ZvC\n- "-e4DLzuQ6D2y-TAoSRuv"\n 664 \N 187.149.44.182 e250fe69-1110-4f39-af04-882d83979b87 2019-09-24 18:29:40.584369 16455 452 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.781E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 781.0 187.149.44.182 b7d8adb8-8af9-468c-b456-faf83f1c3883 2019-09-24 18:32:40.056298 16456 180 Customer \N \N 2 User \N create ---\nnick_name: ANA LUISA CORONEL\nphone: "(667) 162-9300"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANA LUISA CORONEL fue registrado. 187.149.44.182 fd85c1d5-2a88-49ab-84fd-0193f00e43e9 2019-09-24 19:03:26.778633 16457 1141 Sale \N \N 2 User \N create ---\ncustomer_id: 180\nuser_id: 2\nopen_cash_register_id: 452\namount: !ruby/object:BigDecimal 18:0.156021E4\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1698E4\nstatus: 0\ndate_sale: 2019-09-24\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-632\nexpiration_date: 2019-10-29\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 9fce6832-6ce8-42ac-beaf-7d60aa59a1dd 2019-09-24 19:04:57.954636 16458 744 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 23 \N 187.149.44.182 9fce6832-6ce8-42ac-beaf-7d60aa59a1dd 2019-09-24 19:04:57.985609 16459 185 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.44.182 9fce6832-6ce8-42ac-beaf-7d60aa59a1dd 2019-09-24 19:04:58.019877 16460 1569 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 452\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 1141\ncardnumber: 6498\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-632\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-632 187.149.44.182 c72ced07-ba7f-4cec-a160-a88b60d5bad0 2019-09-24 19:07:12.467471 16461 1141 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.44.182 12958772-1074-49fa-9242-9b32b85f01c7 2019-09-24 19:07:20.781963 16462 1142 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 452\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-633\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 fb6e8917-3677-491d-aa45-3bc10a3edc53 2019-09-24 19:09:17.101375 16463 744 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 24 \N 187.149.44.182 fb6e8917-3677-491d-aa45-3bc10a3edc53 2019-09-24 19:09:17.125051 16464 1142 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 ba031077-bda3-4578-a796-b7e35cc2351f 2019-09-24 19:09:32.179396 16465 1570 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 452\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1142\ncardnumber: 6498\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-633\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-633 187.149.44.182 ba031077-bda3-4578-a796-b7e35cc2351f 2019-09-24 19:09:32.199334 16466 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-24 00:10:10.929582000 Z\n- &1 2019-09-24 01:38:23.639462000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-24 19:55:53.786227437 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\nsign_in_count:\n- 668\n- 669\n 1338 \N 189.186.7.207 101a0712-6c26-470c-bd07-78c5e0ed4a5a 2019-09-24 19:55:53.793282 16467 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ssFHfb2zskMy7oAXZEE5\n- sQPoe2gdtq-PPYH5mquh\n 1339 \N 189.186.7.207 101a0712-6c26-470c-bd07-78c5e0ed4a5a 2019-09-24 19:55:53.80982 16560 812 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 17 \N 189.186.149.170 c0577229-3b99-4f68-b7aa-7965719ce0a0 2019-09-26 22:43:00.393168 16468 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-24 01:38:23.639462000 Z\n- &1 2019-09-24 19:55:53.786227000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-24 20:11:39.597239311 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 669\n- 670\n 1340 \N 187.149.44.182 05b81753-4010-4401-8ea6-4f52bf1c22fa 2019-09-24 20:11:39.604802 16469 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sQPoe2gdtq-PPYH5mquh\n- trjCWtmsGLviSLt7rBay\n 1341 \N 187.149.44.182 05b81753-4010-4401-8ea6-4f52bf1c22fa 2019-09-24 20:11:39.619326 16470 806 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 20 \N 187.149.44.182 1046b4b0-2f33-4977-b4bc-4b0853ce74a3 2019-09-24 20:12:10.431562 16471 205 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-09-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.44.182 1663f9bb-e142-4642-8ac5-a837930391f3 2019-09-24 20:12:12.907117 16472 205 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-24\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.44.182 09a2ab66-8180-4bca-b146-0bab1c114a4e 2019-09-24 20:26:15.559071 16473 744 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 25 \N 187.149.44.182 09a2ab66-8180-4bca-b146-0bab1c114a4e 2019-09-24 20:26:15.575347 16474 453 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1225E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1225.0 189.186.58.154 72164dbf-f556-4ddb-8e8f-d8332e273199 2019-09-24 22:15:03.958895 16475 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-24 19:55:53.786227000 Z\n- &1 2019-09-24 20:11:39.597239000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-24 23:22:58.772094690 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934436\n mask_addr: 4294967295\nsign_in_count:\n- 670\n- 671\n 1342 \N 200.68.135.228 524f8f12-fc6f-47b4-84f5-16fe1fd3c4e5 2019-09-24 23:22:58.801962 16476 4 User \N \N 4 User \N update ---\nunique_session_id:\n- trjCWtmsGLviSLt7rBay\n- qZG2fhiQ1McEhFfkkNRy\n 1343 \N 200.68.135.228 524f8f12-fc6f-47b4-84f5-16fe1fd3c4e5 2019-09-24 23:22:58.8304 16477 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-09-19 01:30:35.716459000 Z\n- &1 2019-09-21 00:50:36.872823000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-25 01:13:53.573037662 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116209\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 145\n- 146\n 294 \N 187.149.44.182 7b177425-1cfb-4336-aa61-1c3c13801dd7 2019-09-25 01:13:53.579069 16478 10 User \N \N 10 User \N update ---\nunique_session_id:\n- Lxo2A2VDYys916-bZgws\n- Urjp4RoZ7GjpW7sLaT6s\n 295 \N 187.149.44.182 7b177425-1cfb-4336-aa61-1c3c13801dd7 2019-09-25 01:13:53.606758 16479 454 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.137E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1370.0 187.149.44.182 e49ec89d-0293-4828-a084-70095d624500 2019-09-25 01:21:46.255589 16480 1143 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 454\namount: !ruby/object:BigDecimal 18:0.619E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.15475E3\ntotal: !ruby/object:BigDecimal 18:0.46425E3\nstatus: 0\ndate_sale: 2019-09-24\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-468\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 8788a51e-3a3a-48d1-92a6-4cfc3572dba0 2019-09-25 01:22:50.392937 16481 759 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 187.149.44.182 8788a51e-3a3a-48d1-92a6-4cfc3572dba0 2019-09-25 01:22:50.419865 16482 1143 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 840442a3-35a7-4495-a3ab-36187125d03e 2019-09-25 01:25:14.387553 16483 1571 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 454\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.46425E3\nmove_type: '1'\nsale_id: 1143\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-468\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: 0000KQ10\ncustomer_account: 0000KQ10\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-468 187.149.44.182 840442a3-35a7-4495-a3ab-36187125d03e 2019-09-25 01:25:14.40867 16484 1144 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 452\namount: !ruby/object:BigDecimal 18:0.16108E4\ntax: !ruby/object:BigDecimal 18:0.18621E3\ndiscount: !ruby/object:BigDecimal 18:0.447E3\ntotal: !ruby/object:BigDecimal 18:0.135001E4\nstatus: 0\ndate_sale: 2019-09-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-634\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 ab14f2ae-4a4e-4983-a0a1-93e2e281741c 2019-09-25 01:27:39.501718 16485 486 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.17E2\n- !ruby/object:BigDecimal 18:0.16E2\n 14 \N 187.149.44.182 ab14f2ae-4a4e-4983-a0a1-93e2e281741c 2019-09-25 01:27:39.528514 16486 680 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.44.182 ab14f2ae-4a4e-4983-a0a1-93e2e281741c 2019-09-25 01:27:39.553726 16487 833 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.44.182 ab14f2ae-4a4e-4983-a0a1-93e2e281741c 2019-09-25 01:27:39.576766 16488 1144 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 1c607446-52c2-4919-9ab3-513f8274df01 2019-09-25 01:28:27.342694 16489 1572 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 452\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.135001E4\nmove_type: '1'\nsale_id: 1144\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-634\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: 0000KQ1O\ncustomer_account: UNIVALE\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-634 187.149.44.182 1c607446-52c2-4919-9ab3-513f8274df01 2019-09-25 01:28:27.363552 16555 1581 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 456\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '0'\nsale_id: 1118\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.149.170 ddc61409-0f89-4bf0-b991-3098d61cd865 2019-09-26 22:41:11.595478 16490 452 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 452\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.239901E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.781E3\nphysical_cash: !ruby/object:BigDecimal 18:0.781E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 cff9a7a4-69c2-47e0-9286-5909a8232da3 2019-09-25 01:30:40.090367 16491 452 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 cff9a7a4-69c2-47e0-9286-5909a8232da3 2019-09-25 01:30:40.104727 16492 453 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 454\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.46425E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.2E2\ncash_fund: !ruby/object:BigDecimal 18:0.135E4\nphysical_cash: !ruby/object:BigDecimal 18:0.137E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.44.182 80b1bb74-c021-43a2-a243-0e068d3af82b 2019-09-25 01:34:53.085725 16493 454 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 80b1bb74-c021-43a2-a243-0e068d3af82b 2019-09-25 01:34:53.098524 16494 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-24 01:30:43.033646000 Z\n- &1 2019-09-24 18:29:40.565823000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-25 15:57:32.071149521 Z\nsign_in_count:\n- 330\n- 331\n 665 \N 187.149.44.182 9a367250-faa9-4138-8233-5bc6b860ef7b 2019-09-25 15:57:32.102748 16495 2 User \N \N 2 User \N update ---\nunique_session_id:\n- "-e4DLzuQ6D2y-TAoSRuv"\n- zhnFxhCjsbSayy4hc-sj\n 666 \N 187.149.44.182 9a367250-faa9-4138-8233-5bc6b860ef7b 2019-09-25 15:57:32.123201 16496 455 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.781E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 781.0 187.149.44.182 ba80f5b9-64be-4b3d-850d-17b7ac077fb6 2019-09-25 16:27:41.248485 16497 1145 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 455\namount: !ruby/object:BigDecimal 18:0.57672E3\ntax: !ruby/object:BigDecimal 18:0.9228E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2019-09-25\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-635\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 edeb227d-a3ec-473b-bc67-ca843bca87fc 2019-09-25 16:28:43.450514 16498 80 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.44.182 edeb227d-a3ec-473b-bc67-ca843bca87fc 2019-09-25 16:28:43.478311 16499 1145 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 98928f97-5452-4e98-a5d1-16afdcb9f574 2019-09-25 16:28:53.356569 16500 1573 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 455\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.669E3\nmove_type: '1'\nsale_id: 1145\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-635\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.669E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-635 187.149.44.182 98928f97-5452-4e98-a5d1-16afdcb9f574 2019-09-25 16:28:53.376958 16501 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-24 20:11:39.597239000 Z\n- &1 2019-09-24 23:22:58.772094000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-25 20:42:23.100534473 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934436\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934436\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934361\n mask_addr: 4294967295\nsign_in_count:\n- 671\n- 672\n 1344 \N 200.68.135.153 1b73c9c7-c162-4897-989a-d1744cc3dddc 2019-09-25 20:42:23.14846 16502 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qZG2fhiQ1McEhFfkkNRy\n- zVyVzVHzLnXMwmH1gAEV\n 1345 \N 200.68.135.153 1b73c9c7-c162-4897-989a-d1744cc3dddc 2019-09-25 20:42:23.186974 16503 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-22 17:31:27.542952000 Z\n- &1 2019-09-24 16:07:45.073603000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-25 21:27:58.855275764 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183130006\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098522\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098522\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120690\n mask_addr: 4294967295\nsign_in_count:\n- 18\n- 19\n 38 \N 189.186.145.50 a21542f6-0b35-4ef3-aa09-8a17645998c8 2019-09-25 21:27:58.863144 16504 23 User \N \N 23 User \N update ---\nunique_session_id:\n- 2is5jfNDn8j3wCeCMdAq\n- x2kGpiq4qE9SdssUneah\n 39 \N 189.186.145.50 a21542f6-0b35-4ef3-aa09-8a17645998c8 2019-09-25 21:27:58.878868 16505 1146 Sale \N \N 2 User \N create ---\ncustomer_id: 144\nuser_id: 2\nopen_cash_register_id: 455\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-09-25\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-636\nexpiration_date: 2019-10-30\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 1795f050-6638-40b3-a212-b43c58801aba 2019-09-25 22:58:31.636752 16506 710 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.44.182 1795f050-6638-40b3-a212-b43c58801aba 2019-09-25 22:58:31.676389 16507 1574 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 455\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1146\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-636\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-636 187.149.44.182 c62c0699-ba55-4cba-90d2-df5ffd5c4d26 2019-09-25 22:58:53.912306 16508 1146 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.44.182 c5c6bd5b-5d0b-4aef-95e6-641e10cc8d2c 2019-09-25 22:58:56.624546 16509 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-24 23:22:58.772094000 Z\n- &1 2019-09-25 20:42:23.100534000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-25 23:05:32.731398767 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934436\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934361\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934361\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 672\n- 673\n 1346 \N 187.149.44.182 b83d23bc-f4ea-4c53-b74c-abf1394c1d1a 2019-09-25 23:05:32.739665 16510 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zVyVzVHzLnXMwmH1gAEV\n- BAxC8FuadeucfFYNeGoq\n 1347 \N 187.149.44.182 b83d23bc-f4ea-4c53-b74c-abf1394c1d1a 2019-09-25 23:05:32.754837 16556 812 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 15 \N 189.186.149.170 ddc61409-0f89-4bf0-b991-3098d61cd865 2019-09-26 22:41:11.62772 16511 454 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 455\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.969E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.75E3\nphysical_cash: !ruby/object:BigDecimal 18:0.175E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 1ddb3d4a-3e4f-4eb2-b291-5aa91c31aa04 2019-09-26 01:24:50.097304 16512 455 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 1ddb3d4a-3e4f-4eb2-b291-5aa91c31aa04 2019-09-26 01:24:50.11617 16513 455 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 453\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1225E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1225E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.149.170 c2e8bb7f-3ac1-4f21-8c0b-3ff7e220b6c8 2019-09-26 01:52:46.289202 16514 453 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.149.170 c2e8bb7f-3ac1-4f21-8c0b-3ff7e220b6c8 2019-09-26 01:52:46.301279 16515 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-25 20:42:23.100534000 Z\n- &1 2019-09-25 23:05:32.731398000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-26 01:53:53.702214215 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934361\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121834\n mask_addr: 4294967295\nsign_in_count:\n- 673\n- 674\n 1348 \N 189.186.149.170 49af9acf-2a8a-4aac-a523-1e2b3e6eaf6b 2019-09-26 01:53:53.711239 16516 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BAxC8FuadeucfFYNeGoq\n- CkEwBzYTXjzx_a2iw2wv\n 1349 \N 189.186.149.170 49af9acf-2a8a-4aac-a523-1e2b3e6eaf6b 2019-09-26 01:53:53.728765 16517 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-24 16:07:45.073603000 Z\n- &1 2019-09-25 21:27:58.855275000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-26 16:02:31.713272587 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098522\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120690\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120690\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121834\n mask_addr: 4294967295\nsign_in_count:\n- 19\n- 20\n 40 \N 189.186.149.170 03ea08c8-ca8d-4df6-8ef3-031aea61ef57 2019-09-26 16:02:31.743924 16518 23 User \N \N 23 User \N update ---\nunique_session_id:\n- x2kGpiq4qE9SdssUneah\n- JbPJRdBzA1x12LV8CvMz\n 41 \N 189.186.149.170 03ea08c8-ca8d-4df6-8ef3-031aea61ef57 2019-09-26 16:02:31.772717 16519 456 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1225E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1225.0 189.186.149.170 9c232525-eae5-421f-8b4b-6b7309f1331e 2019-09-26 16:03:10.220017 16520 1147 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 456\namount: !ruby/object:BigDecimal 18:0.299E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.299E3\nstatus: 0\ndate_sale: 2019-09-26\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-41\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.149.170 d7e6676d-485e-4140-a605-2a95685af85d 2019-09-26 16:28:44.576537 16521 834 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.28E2\n- !ruby/object:BigDecimal 18:0.27E2\n 6 \N 189.186.149.170 d7e6676d-485e-4140-a605-2a95685af85d 2019-09-26 16:28:44.624078 16522 1147 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.149.170 aca66d14-aaa0-4a1b-b2e7-a5f993f442f7 2019-09-26 16:29:47.802424 16523 1575 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 456\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 1147\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-41\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-41 189.186.149.170 aca66d14-aaa0-4a1b-b2e7-a5f993f442f7 2019-09-26 16:29:47.822569 16524 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-24 18:29:40.565823000 Z\n- &1 2019-09-25 15:57:32.071149000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-26 16:51:14.293252830 Z\nsign_in_count:\n- 331\n- 332\n 667 \N 187.149.44.182 ab762425-883f-4d52-892c-77310c3ce157 2019-09-26 16:51:14.322828 16525 2 User \N \N 2 User \N update ---\nunique_session_id:\n- zhnFxhCjsbSayy4hc-sj\n- BZmXB8hVrKpkXV1MMnc1\n 668 \N 187.149.44.182 ab762425-883f-4d52-892c-77310c3ce157 2019-09-26 16:51:14.342409 16526 457 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.75E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 750.0 187.149.44.182 342044db-3a10-4c4d-9d01-dfe36e41a90a 2019-09-26 16:53:30.496328 16527 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-09-21 00:50:36.872823000 Z\n- &1 2019-09-25 01:13:53.573037000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-26 18:29:29.042579359 Z\nsign_in_count:\n- 146\n- 147\n 296 \N 187.149.44.182 a5c9c779-02fe-4551-af58-a11e910a8bb3 2019-09-26 18:29:29.048648 16528 10 User \N \N 10 User \N update ---\nunique_session_id:\n- Urjp4RoZ7GjpW7sLaT6s\n- W7TuoxN6SoSPJ-_Pz8zP\n 297 \N 187.149.44.182 a5c9c779-02fe-4551-af58-a11e910a8bb3 2019-09-26 18:29:29.062778 16529 458 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.135E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1350.0 187.149.44.182 3f1b351e-46f7-41aa-ac29-1a2f012734e8 2019-09-26 18:29:38.346916 16530 1148 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 458\namount: !ruby/object:BigDecimal 18:0.1469E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1469E4\nstatus: 0\ndate_sale: 2019-09-26\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-469\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 a2f85ffd-f475-4105-b510-6756091e2b07 2019-09-26 18:30:04.136377 16531 692 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.44.182 a2f85ffd-f475-4105-b510-6756091e2b07 2019-09-26 18:30:04.165516 16532 1148 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 09165cce-f1e6-4b9c-aa0f-6458ffa28452 2019-09-26 18:30:24.356542 16557 1153 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 456\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-26\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-43\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.149.170 be82de75-958d-4726-af83-cac5941b2151 2019-09-26 22:42:52.904836 16533 1576 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 458\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1469E4\nmove_type: '1'\nsale_id: 1148\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-469\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-469 187.149.44.182 09165cce-f1e6-4b9c-aa0f-6458ffa28452 2019-09-26 18:30:24.377163 16534 1149 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 457\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-09-26\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-637\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 d26d154a-5168-461d-889d-f37470c1175c 2019-09-26 19:07:16.533244 16535 600 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.44.182 d26d154a-5168-461d-889d-f37470c1175c 2019-09-26 19:07:16.562014 16536 1149 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 30ae2d51-46ec-44e8-af08-076c395fbd7e 2019-09-26 19:07:34.939382 16537 1577 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 457\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 1149\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-637\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-637 187.149.44.182 30ae2d51-46ec-44e8-af08-076c395fbd7e 2019-09-26 19:07:34.96606 16538 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-25 23:05:32.731398000 Z\n- &1 2019-09-26 01:53:53.702214000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-26 19:10:31.653844572 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121834\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\nsign_in_count:\n- 674\n- 675\n 1350 \N 189.186.7.207 a8e660f5-6577-4872-a336-ff59cf03b7a1 2019-09-26 19:10:31.661781 16539 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CkEwBzYTXjzx_a2iw2wv\n- NQBjrK9swE7z5zCsxdW_\n 1351 \N 189.186.7.207 a8e660f5-6577-4872-a336-ff59cf03b7a1 2019-09-26 19:10:31.688646 16540 1150 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 456\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.48E2\ntotal: !ruby/object:BigDecimal 18:0.751E3\nstatus: 0\ndate_sale: 2019-09-26\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-42\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.149.170 46f62c28-3eb3-4023-a492-af8a33597645 2019-09-26 19:37:10.704039 16541 956 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.149.170 46f62c28-3eb3-4023-a492-af8a33597645 2019-09-26 19:37:10.729213 16542 1150 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.149.170 c0301220-3772-4ea9-8829-ac7fd6f955d9 2019-09-26 19:37:16.272168 16543 1578 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 456\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.751E3\nmove_type: '1'\nsale_id: 1150\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-42\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.249E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-42 189.186.149.170 c0301220-3772-4ea9-8829-ac7fd6f955d9 2019-09-26 19:37:16.300969 16544 1151 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 457\namount: !ruby/object:BigDecimal 18:0.127E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.127E4\nstatus: 0\ndate_sale: 2019-09-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-638\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 ebdf74e0-30ec-483e-a306-9a7ca06b2626 2019-09-26 20:40:30.19798 16545 747 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.44.182 ebdf74e0-30ec-483e-a306-9a7ca06b2626 2019-09-26 20:40:30.294834 16546 1151 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 2a98762d-b715-44b9-ba93-b949a609cfa5 2019-09-26 20:41:56.392491 16547 1579 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 457\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.127E4\nmove_type: '1'\nsale_id: 1151\ncardnumber: 3214\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-638\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-638 187.149.44.182 2a98762d-b715-44b9-ba93-b949a609cfa5 2019-09-26 20:41:56.424129 16548 1152 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 457\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-09-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-639\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 4e8cab8b-fc99-4b15-919e-fdcc109c789e 2019-09-26 21:29:50.847024 16549 710 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.44.182 4e8cab8b-fc99-4b15-919e-fdcc109c789e 2019-09-26 21:29:50.870831 16550 1152 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 152a4091-028b-4ec3-bc5e-d05c2f32a9bb 2019-09-26 21:31:19.614692 16551 1580 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 457\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 1152\ncardnumber: 2517\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-639\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-639 187.149.44.182 152a4091-028b-4ec3-bc5e-d05c2f32a9bb 2019-09-26 21:31:19.647869 16552 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-09-21 23:54:14.808557000 Z\n- &1 2019-09-24 18:26:46.108413000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-26 21:38:45.874223536 Z\nsign_in_count:\n- 85\n- 86\n 172 \N 187.149.44.182 2e2661cb-03c2-4486-9222-9e6ece5946dd 2019-09-26 21:38:45.880808 16553 1 User \N \N 1 User \N update ---\nunique_session_id:\n- UQpvTxPBqwDzrVNVPMs6\n- Q-v5urxf_WFcActhpcr-\n 173 \N 187.149.44.182 2e2661cb-03c2-4486-9222-9e6ece5946dd 2019-09-26 21:38:45.892937 16561 1154 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 456\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.199E3\ntotal: !ruby/object:BigDecimal 18:0.5E3\nstatus: 0\ndate_sale: 2019-09-26\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-44\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.149.170 bbcba5b5-6f59-4ef4-ae01-5dd2aadfed5d 2019-09-26 22:45:09.191651 16562 812 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 18 \N 189.186.149.170 bbcba5b5-6f59-4ef4-ae01-5dd2aadfed5d 2019-09-26 22:45:09.217703 16563 1154 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.149.170 fd4fcc49-157d-4d6f-9ae8-fc64d15da639 2019-09-26 22:46:57.983492 16564 1582 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 456\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 1154\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-44\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-44 189.186.149.170 fd4fcc49-157d-4d6f-9ae8-fc64d15da639 2019-09-26 22:46:58.010159 16565 1582 CashRegistersMove \N \N 23 User \N destroy ---\nopen_cash_register_id: 456\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1154\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-44\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.149.170 43de4ef6-2817-4931-a2ac-bf559cacaaa8 2019-09-26 22:47:03.898137 16566 1154 Sale \N \N 23 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-44 cancelada. 189.186.149.170 c8412dd6-ded4-4ce9-beb4-1de806f00479 2019-09-26 22:52:55.144404 16567 812 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 19 \N 189.186.149.170 c8412dd6-ded4-4ce9-beb4-1de806f00479 2019-09-26 22:52:55.166103 16568 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-26 01:53:53.702214000 Z\n- &1 2019-09-26 19:10:31.653844000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-26 23:03:02.682765057 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 675\n- 676\n 1352 \N 187.149.44.182 7c4cb255-db7c-40f4-aed4-63f554381782 2019-09-26 23:03:02.710968 16569 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NQBjrK9swE7z5zCsxdW_\n- GByH7mSXyPkYswSmRpS1\n 1353 \N 187.149.44.182 7c4cb255-db7c-40f4-aed4-63f554381782 2019-09-26 23:03:02.734599 16570 716 Product \N \N 4 User \N create ---\nsku: BOL-716\nname: 1BLCI19288\ndescription: MOCHILA CLOE DE PELUCHE\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170766134'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-716 fue creado. 187.149.44.182 91e3ebd2-c089-40eb-b2f2-7a094bd84e68 2019-09-26 23:05:41.185233 16571 1027 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 716\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 91e3ebd2-c089-40eb-b2f2-7a094bd84e68 2019-09-26 23:05:41.240273 16572 717 Product \N \N 4 User \N create ---\nsku: BOL-717\nname: 1BLCI1929\ndescription: BOLSA CON CADENA DORADA Y MASCADA\nprice_base: !ruby/object:BigDecimal 18:0.10495E4\nprice_sale: !ruby/object:BigDecimal 18:0.2099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170766172'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-717 fue creado. 187.149.44.182 96b38c5d-9ed7-437d-b24a-522ef9e39250 2019-09-26 23:07:45.144343 16573 1028 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 717\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 96b38c5d-9ed7-437d-b24a-522ef9e39250 2019-09-26 23:07:45.180268 16574 718 Product \N \N 4 User \N create ---\nsku: BOL-718\nname: 1BLCI19279\ndescription: 'MOCHILA NEGRA '\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170765830'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-718 fue creado. 187.149.44.182 c191e402-1dfa-4ef7-872d-00905ceaf200 2019-09-26 23:10:45.214784 16575 1029 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 718\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 c191e402-1dfa-4ef7-872d-00905ceaf200 2019-09-26 23:10:45.251021 16576 719 Product \N \N 4 User \N create ---\nsku: BOL-719\nname: BLCI19278\ndescription: BOLSA NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170765809'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-719 fue creado. 187.149.44.182 37fad33b-7f77-423e-90fb-060127969bcc 2019-09-26 23:12:23.550022 16577 1030 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 719\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 37fad33b-7f77-423e-90fb-060127969bcc 2019-09-26 23:12:23.586902 16601 1033 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.44.182 e0d2568a-f0f7-413b-9175-29c64d87c19c 2019-09-26 23:23:56.852748 16602 1028 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.44.182 1d3c3fd5-4204-4a22-a920-b81a46354415 2019-09-26 23:24:50.042538 16578 720 Product \N \N 4 User \N create ---\nsku: BOL-720\nname: 2BLCO19104\ndescription: 'BOLSA DE TELA '\nprice_base: !ruby/object:BigDecimal 18:0.9995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1999E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170754490'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-720 fue creado. 187.149.44.182 389722f1-aada-4d5d-9ad1-6ed51df5c5af 2019-09-26 23:13:32.126822 16579 1031 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 720\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 389722f1-aada-4d5d-9ad1-6ed51df5c5af 2019-09-26 23:13:32.172665 16580 721 Product \N \N 4 User \N create ---\nsku: BOL-721\nname: 1BLCO19026\ndescription: BOLSA NEGRA CON PONPON\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170751550'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-721 fue creado. 187.149.44.182 eaf39f26-818d-4581-8839-ffb2843c76da 2019-09-26 23:15:58.514535 16581 1032 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 721\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 eaf39f26-818d-4581-8839-ffb2843c76da 2019-09-26 23:15:58.560555 16582 722 Product \N \N 4 User \N create ---\nsku: BOL-722\nname: 1BCL119289\ndescription: CANGURERA CLOE COLOR NEGRA Y MULTICOLOR\nprice_base: !ruby/object:BigDecimal 18:0.9495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170766158'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-722 fue creado. 187.149.44.182 12808b64-b232-4a94-8844-fa8a62eab04e 2019-09-26 23:17:29.801261 16583 1033 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 722\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 12808b64-b232-4a94-8844-fa8a62eab04e 2019-09-26 23:17:29.834929 16584 723 Product \N \N 4 User \N create ---\nsku: BOL-723\nname: 1BLCI19284\ndescription: MOCHILA CAFE CON ANIMAL PRINT\nprice_base: !ruby/object:BigDecimal 18:0.9995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1999E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170766004'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-723 fue creado. 187.149.44.182 0ebd414b-da16-4d5a-9d14-f7cd1a01d457 2019-09-26 23:19:17.780937 16585 1034 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 723\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 0ebd414b-da16-4d5a-9d14-f7cd1a01d457 2019-09-26 23:19:17.816639 16586 143 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-80\namount: !ruby/object:BigDecimal 18:0.140425E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.140425E5\nobservations: ''\npurchase_date: 2019-09-26\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-80 por $ 14042.5 MXN creada. 187.149.44.182 9f202f99-6e4e-4551-ac72-d6b3d958f857 2019-09-26 23:19:39.052245 16587 1027 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.44.182 9f202f99-6e4e-4551-ac72-d6b3d958f857 2019-09-26 23:19:39.074966 16588 1028 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.44.182 9f202f99-6e4e-4551-ac72-d6b3d958f857 2019-09-26 23:19:39.106559 16589 1029 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.44.182 9f202f99-6e4e-4551-ac72-d6b3d958f857 2019-09-26 23:19:39.129197 16590 1030 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.44.182 9f202f99-6e4e-4551-ac72-d6b3d958f857 2019-09-26 23:19:39.151104 16591 1031 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.44.182 9f202f99-6e4e-4551-ac72-d6b3d958f857 2019-09-26 23:19:39.172027 16592 1032 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.44.182 9f202f99-6e4e-4551-ac72-d6b3d958f857 2019-09-26 23:19:39.194401 16593 1033 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.44.182 9f202f99-6e4e-4551-ac72-d6b3d958f857 2019-09-26 23:19:39.216009 16594 1034 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.44.182 9f202f99-6e4e-4551-ac72-d6b3d958f857 2019-09-26 23:19:39.237492 16595 873 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.44.182 bc06b2cb-ff44-429b-baee-d4509b1baf73 2019-09-26 23:22:16.64681 16596 880 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.44.182 a38c9ef1-5bbc-4f02-8f12-2236fdb4ca70 2019-09-26 23:22:31.723085 16597 206 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-09-26\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.44.182 a3b48e45-19d6-46ed-9a20-d2e0d7f48950 2019-09-26 23:22:33.453728 16598 1033 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.44.182 27673b9c-eb95-4cc2-9f2b-29fda98fcb59 2019-09-26 23:23:40.953448 16599 1033 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.44.182 18a22ce0-b7a7-4c22-85e3-5af77321837d 2019-09-26 23:23:51.270568 16600 1033 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.44.182 696a3ed1-20d5-4a3d-8f58-9339caca9ab3 2019-09-26 23:23:51.884887 16603 207 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-09-26\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.44.182 3800de00-4932-4c88-ba6f-2fe1795ddd78 2019-09-26 23:24:53.669054 16604 1155 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 456\namount: !ruby/object:BigDecimal 18:0.639E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.639E3\nstatus: 0\ndate_sale: 2019-09-26\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-45\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.149.170 a3513610-8cd0-490e-a29e-5242600cc393 2019-09-26 23:29:30.643469 16605 814 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 6 \N 189.186.149.170 a3513610-8cd0-490e-a29e-5242600cc393 2019-09-26 23:29:30.680708 16606 1155 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.149.170 8f55c2fb-d626-4254-bc1f-6e734c6714b2 2019-09-26 23:30:48.229659 16607 1583 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 456\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.639E3\nmove_type: '1'\nsale_id: 1155\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-45\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-45 189.186.149.170 8f55c2fb-d626-4254-bc1f-6e734c6714b2 2019-09-26 23:30:48.251828 16608 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-09-22 19:23:13.577917000 Z\n- &1 2019-09-22 20:22:25.521163000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-26 23:55:58.460070998 Z\nsign_in_count:\n- 4\n- 5\n 10 \N 187.149.44.182 4a24bd34-1572-482b-8158-c66aff0ed65e 2019-09-26 23:55:58.478274 16609 25 User \N \N 25 User \N update ---\nunique_session_id:\n- _znx3xh1NjsUinBSSQLk\n- oPKN9JyWfDVUjy5uBNBS\n 11 \N 187.149.44.182 4a24bd34-1572-482b-8158-c66aff0ed65e 2019-09-26 23:55:58.494315 16610 1156 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 457\namount: !ruby/object:BigDecimal 18:0.127E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.127E4\nstatus: 0\ndate_sale: 2019-09-26\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-640\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 13cbc076-ed8b-4376-84a1-049201328beb 2019-09-26 23:56:30.897781 16611 747 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.44.182 13cbc076-ed8b-4376-84a1-049201328beb 2019-09-26 23:56:30.932973 16612 1156 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 4bfb974f-358f-497e-941d-ddc3f8323328 2019-09-26 23:57:16.112355 16613 1584 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 457\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.127E4\nmove_type: '1'\nsale_id: 1156\ncardnumber: 2560\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-640\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-640 187.149.44.182 4bfb974f-358f-497e-941d-ddc3f8323328 2019-09-26 23:57:16.140548 16614 1157 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 456\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.199E3\ntotal: !ruby/object:BigDecimal 18:0.5E3\nstatus: 0\ndate_sale: 2019-09-26\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-46\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.149.170 6daa0e30-90b1-4c22-bac6-458a138427b6 2019-09-27 00:21:27.506533 16615 812 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 20 \N 189.186.149.170 6daa0e30-90b1-4c22-bac6-458a138427b6 2019-09-27 00:21:27.54038 16616 1157 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.149.170 a3efa011-0a1d-4a33-8b49-33d35d7a6f7d 2019-09-27 00:21:59.442634 16617 1585 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 456\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 1157\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-46\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '123'\n 1 movimiento de efectivo por venta con folio PV3-V-46 189.186.149.170 a3efa011-0a1d-4a33-8b49-33d35d7a6f7d 2019-09-27 00:21:59.480191 16618 1586 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 456\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 1157\ncardnumber: 1111\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-46\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '123'\n 1 movimiento de efectivo por venta con folio PV3-V-46 189.186.149.170 c1235b30-3bc5-428d-b19c-14b85258e89e 2019-09-27 00:22:10.830652 16619 1158 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 457\namount: !ruby/object:BigDecimal 18:0.127E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.127E4\nstatus: 0\ndate_sale: 2019-09-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-641\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 4dbbe5c7-2c3f-4047-a01a-c050020d81e6 2019-09-27 00:22:34.663568 16620 747 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.44.182 4dbbe5c7-2c3f-4047-a01a-c050020d81e6 2019-09-27 00:22:34.703618 16621 1158 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 58c37698-e5e6-4f23-a0ee-ca1676217cf7 2019-09-27 00:25:09.763169 16622 1587 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 457\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.127E4\nmove_type: '1'\nsale_id: 1158\ncardnumber: 7044\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-641\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-641 187.149.44.182 58c37698-e5e6-4f23-a0ee-ca1676217cf7 2019-09-27 00:25:09.783582 16623 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-26 19:10:31.653844000 Z\n- &1 2019-09-26 23:03:02.682765000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-27 00:40:17.152234525 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 676\n- 677\n 1354 \N 187.149.44.182 e6408fd9-f2d1-417d-949f-9f2188db54cd 2019-09-27 00:40:17.159658 16624 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GByH7mSXyPkYswSmRpS1\n- HgJ1Vhm7XMAos8KrvJ3A\n 1355 \N 187.149.44.182 e6408fd9-f2d1-417d-949f-9f2188db54cd 2019-09-27 00:40:17.174046 16625 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-26 23:03:02.682765000 Z\n- &1 2019-09-27 00:40:17.152234000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-27 00:47:31.405560976 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121834\n mask_addr: 4294967295\nsign_in_count:\n- 677\n- 678\n 1356 \N 189.186.149.170 5f53e5ac-7038-4cdc-b7d0-9ef789430268 2019-09-27 00:47:31.412637 16626 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HgJ1Vhm7XMAos8KrvJ3A\n- P92dV3W4JgGDeHLRZpsK\n 1357 \N 189.186.149.170 5f53e5ac-7038-4cdc-b7d0-9ef789430268 2019-09-27 00:47:31.42917 16627 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-17 19:48:19.193909000 Z\n- &1 2019-09-23 16:19:29.027227000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-27 00:55:03.564476255 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183125034\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121834\n mask_addr: 4294967295\nsign_in_count:\n- 36\n- 37\n 75 \N 189.186.149.170 b69e1595-6118-4e1c-9dbf-a2ebb321c991 2019-09-27 00:55:03.57209 16628 18 User \N \N 18 User \N update ---\nunique_session_id:\n- bdmadqCkhg4sVpF8tCqP\n- WdUTV16v5nuWgFcLxHn3\n 76 \N 189.186.149.170 b69e1595-6118-4e1c-9dbf-a2ebb321c991 2019-09-27 00:55:03.587739 16629 1588 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 456\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E4\nmove_type: '1'\nsale_id: 1001\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-2 189.186.149.170 666f0130-d843-4300-a61e-86bf78d260fd 2019-09-27 01:11:11.384854 16630 1001 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.149.170 b9e358f1-b1eb-4357-8d0d-47881d51bec3 2019-09-27 01:11:14.363662 16631 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-27 00:40:17.152234000 Z\n- &1 2019-09-27 00:47:31.405560000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-27 01:23:48.324250128 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121834\n mask_addr: 4294967295\nsign_in_count:\n- 678\n- 679\n 1358 \N 189.186.149.170 00c684b1-baa4-45c7-a016-bae04495ed45 2019-09-27 01:23:48.331207 16632 4 User \N \N 4 User \N update ---\nunique_session_id:\n- P92dV3W4JgGDeHLRZpsK\n- HjudTDmz82aHP6uEHyyg\n 1359 \N 189.186.149.170 00c684b1-baa4-45c7-a016-bae04495ed45 2019-09-27 01:23:48.349223 16633 456 CashOut \N \N 25 User \N create ---\nopen_cash_register_id: 457\nuser_id: 25\namount_in: !ruby/object:BigDecimal 18:0.6108E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.849E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1849E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 b59c6e69-ac9a-4a12-b2cf-a9d104113265 2019-09-27 01:28:40.817498 16634 457 OpenCashRegister \N \N 25 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 b59c6e69-ac9a-4a12-b2cf-a9d104113265 2019-09-27 01:28:40.831768 16635 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-23 20:46:17.161266000 Z\n- &1 2019-09-24 00:00:58.464544000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-27 01:33:28.045527298 Z\nsign_in_count:\n- 36\n- 37\n 77 \N 187.149.44.182 21f50886-799d-41e7-8fae-d3ae80fced61 2019-09-27 01:33:28.050684 16636 8 User \N \N 8 User \N update ---\nunique_session_id:\n- yCo-YojbLNYsepskTrUu\n- cDUeTtsAFBMrbWXVaH_N\n 78 \N 187.149.44.182 21f50886-799d-41e7-8fae-d3ae80fced61 2019-09-27 01:33:28.061789 16637 457 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 458\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.1469E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.132E4\nphysical_cash: !ruby/object:BigDecimal 18:0.282E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.44.182 a13c4527-172b-42cd-bda5-de3422c0332a 2019-09-27 01:39:03.445451 16638 458 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 a13c4527-172b-42cd-bda5-de3422c0332a 2019-09-27 01:39:03.457483 16639 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-23 16:19:29.027227000 Z\n- &1 2019-09-27 00:55:03.564476000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-27 01:53:19.243174955 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121834\n mask_addr: 4294967295\nsign_in_count:\n- 37\n- 38\n 77 \N 189.186.149.170 9c883f8a-0882-4498-afc8-21207977e202 2019-09-27 01:53:19.275135 16640 18 User \N \N 18 User \N update ---\nunique_session_id:\n- WdUTV16v5nuWgFcLxHn3\n- u7w-b2XxM4a_f7uwAu4s\n 78 \N 189.186.149.170 9c883f8a-0882-4498-afc8-21207977e202 2019-09-27 01:53:19.294053 16641 458 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 456\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.3389E4\namount_out: !ruby/object:BigDecimal 18:0.2E3\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.22E4\ncash_fund: !ruby/object:BigDecimal 18:0.1177E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3377E4\nobservations: SE SACO MAL UN APARTADO DE BRENDA, QUEDO A FAVOR 102 PERO SI SE LE DIO\n EL CAMBIO BIEN\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.149.170 2e0869c3-f8fb-45c4-ae9b-a421f1ca9a8a 2019-09-27 02:03:12.591117 16642 456 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.149.170 2e0869c3-f8fb-45c4-ae9b-a421f1ca9a8a 2019-09-27 02:03:12.604661 16643 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-27 00:47:31.405560000 Z\n- &1 2019-09-27 01:23:48.324250000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-27 06:15:40.202011431 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\nsign_in_count:\n- 679\n- 680\n 1360 \N 189.186.7.207 e654910a-8f3c-4185-8750-3aa2b1aa17d8 2019-09-27 06:15:40.211892 16644 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HjudTDmz82aHP6uEHyyg\n- xHctoNhJPB4BVsqWP3ta\n 1361 \N 189.186.7.207 e654910a-8f3c-4185-8750-3aa2b1aa17d8 2019-09-27 06:15:40.232202 16645 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-25 21:27:58.855275000 Z\n- &1 2019-09-26 16:02:31.713272000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-27 16:13:18.586451981 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120690\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121834\n mask_addr: 4294967295\nsign_in_count:\n- 20\n- 21\n 42 \N 189.186.149.170 7332ab3e-d83e-40ac-ac53-7dea06ee4f33 2019-09-27 16:13:18.624465 16646 23 User \N \N 23 User \N update ---\nunique_session_id:\n- JbPJRdBzA1x12LV8CvMz\n- NX4eC9jxxCuRkjUKfLGL\n 43 \N 189.186.149.170 7332ab3e-d83e-40ac-ac53-7dea06ee4f33 2019-09-27 16:13:18.649121 17012 1641 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 426\n- 474\n 2 movimiento de efectivo por venta con folio PV3-V-29 187.149.44.182 c60cd6f9-f991-49d5-891d-df6d0de384f1 2019-10-04 00:15:54.23948 16647 459 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1177E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1177.0 189.186.149.170 5b69eb4a-365a-4bc0-b568-3674d3953abb 2019-09-27 16:14:04.461777 16648 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-27 01:23:48.324250000 Z\n- &1 2019-09-27 06:15:40.202011000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-27 17:10:34.542530829 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 680\n- 681\n 1362 \N 187.149.44.182 b230e2a3-f497-4f24-be9d-f4557cea0a38 2019-09-27 17:10:34.550248 16649 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xHctoNhJPB4BVsqWP3ta\n- M3TgQMWmdAoox6_UH4LD\n 1363 \N 187.149.44.182 b230e2a3-f497-4f24-be9d-f4557cea0a38 2019-09-27 17:10:34.569523 16650 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-24 00:00:58.464544000 Z\n- &1 2019-09-27 01:33:28.045527000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-27 17:11:01.585714437 Z\nsign_in_count:\n- 37\n- 38\n 79 \N 187.149.44.182 9111b4d7-81e5-4732-ba42-fbe9942ca28d 2019-09-27 17:11:01.593042 16651 8 User \N \N 8 User \N update ---\nunique_session_id:\n- cDUeTtsAFBMrbWXVaH_N\n- b6-YcsUPYineaEyvNeS_\n 80 \N 187.149.44.182 9111b4d7-81e5-4732-ba42-fbe9942ca28d 2019-09-27 17:11:01.609484 16652 460 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.132E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1320.0 187.149.44.182 161808a7-2e08-431e-891d-08caafda574d 2019-09-27 17:11:42.141442 16653 1159 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 460\namount: !ruby/object:BigDecimal 18:0.55948E3\ntax: !ruby/object:BigDecimal 18:0.8952E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-09-27\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-470\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 f9e194fe-dedc-4567-aed9-5c047e86ed45 2019-09-27 17:12:58.566571 16654 724 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 187.149.44.182 f9e194fe-dedc-4567-aed9-5c047e86ed45 2019-09-27 17:12:58.599137 16655 1159 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 20a8e7c9-441d-4fda-9dca-744b09c205ac 2019-09-27 17:13:09.963887 16656 1589 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 460\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 1159\ncardnumber: 1111\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-470\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-470 187.149.44.182 20a8e7c9-441d-4fda-9dca-744b09c205ac 2019-09-27 17:13:09.987411 16657 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-25 15:57:32.071149000 Z\n- &1 2019-09-26 16:51:14.293252000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-27 17:32:33.440330846 Z\nsign_in_count:\n- 332\n- 333\n 669 \N 187.149.44.182 a0868e50-52c0-4239-b4ff-1507b9acdc6d 2019-09-27 17:32:33.445807 16658 2 User \N \N 2 User \N update ---\nunique_session_id:\n- BZmXB8hVrKpkXV1MMnc1\n- TTEk1s6k-U1y5Ec2esSX\n 670 \N 187.149.44.182 a0868e50-52c0-4239-b4ff-1507b9acdc6d 2019-09-27 17:32:33.459052 16659 461 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.849E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 849.0 187.149.44.182 aa0721e5-e5f4-4e21-8190-2d3316e4f0e3 2019-09-27 17:33:01.411641 16660 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-09-23 16:19:02.397931000 Z\n- &1 2019-09-23 20:44:27.558707000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-27 19:13:01.453015423 Z\nsign_in_count:\n- 91\n- 92\n 184 \N 187.149.44.182 4ffa4a3a-752a-43b5-8ea9-38610150e0ca 2019-09-27 19:13:01.462404 16661 9 User \N \N 9 User \N update ---\nunique_session_id:\n- BfPBDWMBSZrfxQvZsa-P\n- 9fDxgDfdu9sEjC5ga2vq\n 185 \N 187.149.44.182 4ffa4a3a-752a-43b5-8ea9-38610150e0ca 2019-09-27 19:13:01.479533 16662 743 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.44.182 4be0b92c-97ff-43cd-8c1b-81815da11dff 2019-09-27 19:20:32.825581 16663 208 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-09-27\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.44.182 3eae3c45-361c-4f44-b148-c480a6836459 2019-09-27 19:20:36.291542 16664 208 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-27\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.44.182 81b61609-cb80-477a-92cf-1cb2064485c2 2019-09-27 19:26:15.157254 16665 1009 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.44.182 81b61609-cb80-477a-92cf-1cb2064485c2 2019-09-27 19:26:15.178152 16666 1160 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 460\namount: !ruby/object:BigDecimal 18:0.269445E4\ntax: !ruby/object:BigDecimal 18:0.8055E2\ndiscount: !ruby/object:BigDecimal 18:0.584E3\ntotal: !ruby/object:BigDecimal 18:0.2191E4\nstatus: 0\ndate_sale: 2019-09-27\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-471\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 ef5d79ac-a059-4aaa-86ad-16679e12a8a8 2019-09-27 19:52:59.019233 16667 1000 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.44.182 ef5d79ac-a059-4aaa-86ad-16679e12a8a8 2019-09-27 19:52:59.059952 16668 803 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 187.149.44.182 ef5d79ac-a059-4aaa-86ad-16679e12a8a8 2019-09-27 19:52:59.096875 16669 1009 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.44.182 ef5d79ac-a059-4aaa-86ad-16679e12a8a8 2019-09-27 19:52:59.128362 16670 733 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.44.182 ef5d79ac-a059-4aaa-86ad-16679e12a8a8 2019-09-27 19:52:59.157987 16671 678 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.44.182 ef5d79ac-a059-4aaa-86ad-16679e12a8a8 2019-09-27 19:52:59.185758 16780 193 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 462\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nstatus: 1\nobservations: sueldo Rocio\nexpense_date: 2019-09-28\nexpense_code: PV1-E-147\n 1 Egreso por 1328.0 registrado 187.149.44.182 d8bf5fd2-c83f-4946-8962-6da2a4ec3805 2019-09-28 23:37:38.948948 16672 1161 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 459\namount: !ruby/object:BigDecimal 18:0.1348E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1348E4\nstatus: 0\ndate_sale: 2019-09-27\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-47\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.149.170 2840925e-6e6e-4f4e-a18b-e985c99c652d 2019-09-27 19:54:13.815582 16673 838 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.149.170 2840925e-6e6e-4f4e-a18b-e985c99c652d 2019-09-27 19:54:13.849114 16674 836 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 4 \N 189.186.149.170 2840925e-6e6e-4f4e-a18b-e985c99c652d 2019-09-27 19:54:13.875888 16675 1161 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.149.170 09008107-7fbc-4d6b-b8a8-db5cc2468284 2019-09-27 19:54:22.311189 16676 1590 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 459\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1348E4\nmove_type: '1'\nsale_id: 1161\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-47\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.152E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-47 189.186.149.170 09008107-7fbc-4d6b-b8a8-db5cc2468284 2019-09-27 19:54:22.332617 16677 1160 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 3b981d5d-5aae-44a5-8f53-7b93cd53d118 2019-09-27 19:55:30.842448 16678 1591 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 460\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.2191E4\nmove_type: '1'\nsale_id: 1160\ncardnumber: 1111\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-471\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-471 187.149.44.182 3b981d5d-5aae-44a5-8f53-7b93cd53d118 2019-09-27 19:55:30.863753 16679 811 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.44.182 214171d4-a3d8-4605-9dd7-1b86fc12b150 2019-09-27 19:57:10.348602 16680 209 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-09-27\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.44.182 27ea83d6-da0b-464a-a976-546c88fc8aba 2019-09-27 19:57:15.173872 16681 209 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-27\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.44.182 d6efae7b-d5a0-4c96-b0fd-c73f32aa7bdf 2019-09-27 19:57:34.838549 16682 1026 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.44.182 d6efae7b-d5a0-4c96-b0fd-c73f32aa7bdf 2019-09-27 19:57:34.858883 16683 181 Customer \N \N 8 User \N create ---\nnick_name: ANGELICA HERNANDEZ\nphone: "(667) 477-4303"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANGELICA HERNANDEZ fue registrado. 187.149.44.182 d0fe15a3-64f3-4bd5-b2fc-f7dc6d5cdbc1 2019-09-27 19:58:03.999285 16684 1162 Sale \N \N 8 User \N create ---\ncustomer_id: 181\nuser_id: 8\nopen_cash_register_id: 460\namount: !ruby/object:BigDecimal 18:0.1867E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1867E4\nstatus: 0\ndate_sale: 2019-09-27\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-472\nexpiration_date: 2019-11-01\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 5e416e3e-a1fd-497d-9248-283fab7c038b 2019-09-27 19:59:09.209759 16685 800 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 13 \N 187.149.44.182 5e416e3e-a1fd-497d-9248-283fab7c038b 2019-09-27 19:59:09.250595 16686 1026 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.44.182 5e416e3e-a1fd-497d-9248-283fab7c038b 2019-09-27 19:59:09.295648 16687 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 21 \N 187.149.44.182 5e416e3e-a1fd-497d-9248-283fab7c038b 2019-09-27 19:59:09.334827 16688 1592 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 460\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1162\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-472\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-472 187.149.44.182 b3cf34c3-24b8-493c-ab15-9e9e6577aaf7 2019-09-27 20:02:11.103856 16689 1162 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-472 cancelada. 187.149.44.182 24ecc44d-79d6-4edd-bdc7-04bc2851806f 2019-09-27 20:02:35.643271 16690 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 22 \N 187.149.44.182 24ecc44d-79d6-4edd-bdc7-04bc2851806f 2019-09-27 20:02:35.667466 16691 1026 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.44.182 24ecc44d-79d6-4edd-bdc7-04bc2851806f 2019-09-27 20:02:35.699282 16692 800 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 14 \N 187.149.44.182 24ecc44d-79d6-4edd-bdc7-04bc2851806f 2019-09-27 20:02:35.732156 16693 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-27 06:15:40.202011000 Z\n- &1 2019-09-27 17:10:34.542530000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-27 20:36:39.379979390 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 681\n- 682\n 1364 \N 187.149.44.182 9a0da836-2b9c-46fc-9d75-b882f899be6d 2019-09-27 20:36:39.38673 16694 4 User \N \N 4 User \N update ---\nunique_session_id:\n- M3TgQMWmdAoox6_UH4LD\n- d6cC9r8kRMyQ7wyPDpT4\n 1365 \N 187.149.44.182 9a0da836-2b9c-46fc-9d75-b882f899be6d 2019-09-27 20:36:39.402286 16695 182 Customer \N \N 2 User \N create ---\nnick_name: ANAHI MORENO\nphone: "(667) 185-6765"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANAHI MORENO fue registrado. 187.149.44.182 d2bbc5dd-2432-4051-beca-260387488580 2019-09-27 20:55:32.393889 16827 466 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 cdd166d7-aae8-4bd4-bd6d-3e00c4923994 2019-09-30 20:14:49.366982 17057 8 User \N \N 8 User \N update ---\nunique_session_id:\n- jTxMjugRy-1N1bfDSK6Y\n- PBEQqsbeDR5SZbayhMrk\n 96 \N 187.149.44.182 e6e4e4ce-8b3b-4522-873f-8c2ba6c92442 2019-10-04 22:23:35.519674 16696 1163 Sale \N \N 2 User \N create ---\ncustomer_id: 182\nuser_id: 2\nopen_cash_register_id: 461\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-09-27\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-642\nexpiration_date: 2019-11-01\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 aa26d1b4-5a6c-4c63-8c58-c1da22d108f4 2019-09-27 20:55:48.640314 16697 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 28 \N 187.149.44.182 aa26d1b4-5a6c-4c63-8c58-c1da22d108f4 2019-09-27 20:55:48.663984 16698 1593 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 461\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1163\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-642\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-642 187.149.44.182 27a26a53-50bc-43ad-945d-84d93fd70c48 2019-09-27 20:56:13.829919 16699 1163 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.44.182 fb3f01e1-a99d-4eeb-a81b-774735e43c24 2019-09-27 20:56:15.136638 16700 1 PosConfig \N \N 4 User \N update ---\nreserve_sale_percent:\n- !ruby/object:BigDecimal 18:0.2E2\n- !ruby/object:BigDecimal 18:0.1E2\n 12 Se actualizaron los parámetros generales 187.149.44.182 039874c8-d8d7-4334-8446-babf30e930cc 2019-09-27 21:37:55.995381 16701 1164 Sale \N \N 8 User \N create ---\ncustomer_id: 181\nuser_id: 8\nopen_cash_register_id: 460\namount: !ruby/object:BigDecimal 18:0.1867E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1867E4\nstatus: 0\ndate_sale: 2019-09-27\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-473\nexpiration_date: 2019-11-01\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 b00b9301-364d-4a3a-b5e4-5d33869de292 2019-09-27 21:39:14.031507 16702 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 23 \N 187.149.44.182 b00b9301-364d-4a3a-b5e4-5d33869de292 2019-09-27 21:39:14.058832 16703 1026 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.44.182 b00b9301-364d-4a3a-b5e4-5d33869de292 2019-09-27 21:39:14.081902 16704 800 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 15 \N 187.149.44.182 b00b9301-364d-4a3a-b5e4-5d33869de292 2019-09-27 21:39:14.103836 16705 1594 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 460\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.187E3\nmove_type: '1'\nsale_id: 1164\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-473\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.13E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-473 187.149.44.182 0a498a74-9b96-4dcd-88fa-1ce05cd1e2c8 2019-09-27 21:39:21.375843 16706 1594 CashRegistersMove \N \N 8 User \N destroy ---\nopen_cash_register_id: 460\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.187E3\nmove_type: '1'\nsale_id: 1164\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-473\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.13E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.44.182 405237f9-3c29-4ad9-94a9-aceffb4a4e5e 2019-09-27 21:39:24.650498 16707 1595 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 460\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1164\ncardnumber: 1111\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-473\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-473 187.149.44.182 6625419f-6ed7-48e1-882e-2dd5d246da92 2019-09-27 21:39:36.249339 16708 1164 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.44.182 3a399a43-d414-4d78-b054-bff04516da40 2019-09-27 21:39:38.171112 16709 1165 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 460\namount: !ruby/object:BigDecimal 18:0.419E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.419E3\nstatus: 0\ndate_sale: 2019-09-27\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-474\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 08cd87bb-40bf-4a5c-bfc1-e899910f2f99 2019-09-27 23:02:12.704196 16710 1021 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 187.149.44.182 08cd87bb-40bf-4a5c-bfc1-e899910f2f99 2019-09-27 23:02:12.747165 16711 1165 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 9b22dbaa-588b-4787-a12f-8164cfb53b40 2019-09-27 23:02:20.451134 16712 1596 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 460\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.419E3\nmove_type: '1'\nsale_id: 1165\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-474\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.81E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-474 187.149.44.182 9b22dbaa-588b-4787-a12f-8164cfb53b40 2019-09-27 23:02:20.47255 16713 1597 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 460\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1070\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1234'\n 1 movimiento de efectivo por venta con folio PV2-V-441 187.149.44.182 e8d36e56-fb3e-4f38-bd1f-81a9ebda5b34 2019-09-27 23:46:06.507775 16714 1598 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 459\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 1060\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-21 189.186.149.170 196d89dd-466a-45e3-85e0-7d5fc6ff06ac 2019-09-27 23:46:26.477059 16715 1060 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.149.170 19924c87-c36d-4afa-bb0e-9008e533c372 2019-09-27 23:46:28.721282 16716 183 Customer \N \N 23 User \N create ---\nnick_name: ANA AISPURO\nphone: "(667) 582-6173"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANA AISPURO fue registrado. 189.186.149.170 5aef4369-da12-4cb7-b60d-aae0a8facf79 2019-09-28 00:14:54.545944 16717 1166 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 460\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2019-09-27\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-475\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 9ebd3f6f-974c-4b88-bb63-f0d91da5ed7e 2019-09-28 00:36:48.842542 16718 860 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.44.182 9ebd3f6f-974c-4b88-bb63-f0d91da5ed7e 2019-09-28 00:36:48.874901 16719 1166 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 871cfcd8-e43a-4c52-bd03-18b5f3221d6e 2019-09-28 00:37:49.802516 16720 1599 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 460\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.789E3\nmove_type: '1'\nsale_id: 1166\ncardnumber: 1233\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-475\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-475 187.149.44.182 871cfcd8-e43a-4c52-bd03-18b5f3221d6e 2019-09-28 00:37:49.827908 16721 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-22 20:19:15.507225000 Z\n- &1 2019-09-23 20:14:23.253257000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-28 00:45:41.636512970 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114208\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114208\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\nsign_in_count:\n- 20\n- 21\n 43 \N 189.186.7.207 020c1e53-5187-4b08-a74c-435bef986045 2019-09-28 00:45:41.648539 16722 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 1H2_qie56GdztBFyG9EB\n- T4-Ws6c_o_ZzVs8E4Cz5\n 44 \N 189.186.7.207 020c1e53-5187-4b08-a74c-435bef986045 2019-09-28 00:45:41.666952 16723 207 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-09-27\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.7.207 3d58acc8-ab9e-484e-a020-f3b61d25f3a2 2019-09-28 00:46:15.109388 16724 1035 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 717\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.7.207 3d58acc8-ab9e-484e-a020-f3b61d25f3a2 2019-09-28 00:46:15.136297 16725 1036 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 722\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.7.207 3d58acc8-ab9e-484e-a020-f3b61d25f3a2 2019-09-28 00:46:15.164158 16726 1167 Sale \N \N 23 User \N create ---\ncustomer_id: 183\nuser_id: 23\nopen_cash_register_id: 459\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2019-09-27\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-48\nexpiration_date: 2019-11-01\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.149.170 e52d23bb-4733-46e1-9344-3f6b2b39b996 2019-09-28 00:55:47.907033 16727 1035 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.149.170 e52d23bb-4733-46e1-9344-3f6b2b39b996 2019-09-28 00:55:47.946788 16728 1600 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 459\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.65E3\nmove_type: '1'\nsale_id: 1167\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-48\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.65E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-48 189.186.149.170 45af4a76-1ddd-4e69-8e32-6eec2177eedd 2019-09-28 00:56:12.031862 16729 1600 CashRegistersMove \N \N 23 User \N destroy ---\nopen_cash_register_id: 459\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.65E3\nmove_type: '1'\nsale_id: 1167\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-48\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.65E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.149.170 bf0e0fb6-c9ab-4e8b-8769-a5d7ad64ebc5 2019-09-28 00:56:16.613584 16730 1167 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-48 cancelada. 189.186.149.170 b516be98-b908-46c3-9dcb-157317e61fc9 2019-09-28 00:57:12.384648 16731 1035 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.149.170 b516be98-b908-46c3-9dcb-157317e61fc9 2019-09-28 00:57:12.420984 16732 1168 Sale \N \N 23 User \N create ---\ncustomer_id: 183\nuser_id: 23\nopen_cash_register_id: 459\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2019-09-27\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-49\nexpiration_date: 2019-11-01\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.149.170 2f15e011-739d-42f6-9f50-57695daaa4a9 2019-09-28 00:59:10.078465 16733 1035 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.149.170 2f15e011-739d-42f6-9f50-57695daaa4a9 2019-09-28 00:59:10.108869 16734 1601 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 459\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 1168\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-49\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-49 189.186.149.170 f6001a97-9427-4a87-b24b-022c219e21f8 2019-09-28 00:59:30.860747 16735 1602 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 459\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '1'\nsale_id: 1168\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-49\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-49 189.186.149.170 c7e79c3a-f597-4a6b-8230-4e0fee22301d 2019-09-28 00:59:54.713106 16736 1168 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.149.170 1c303614-93b1-4fdb-b6c1-6dd15eebd553 2019-09-28 01:00:05.087212 16828 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-28 16:25:00.738714000 Z\n- &1 2019-09-30 16:13:38.820411000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-01 16:14:31.357786984 Z\nsign_in_count:\n- 335\n- 336\n 675 \N 187.149.44.182 7ca010d9-444a-4104-aac5-e63eb180fe96 2019-10-01 16:14:31.401109 16737 1169 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 461\namount: !ruby/object:BigDecimal 18:0.127E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.127E4\nstatus: 0\ndate_sale: 2019-09-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-643\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 d1f56bb5-4450-4bdb-98f8-7efef2d975f2 2019-09-28 01:32:34.367437 16738 747 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.44.182 d1f56bb5-4450-4bdb-98f8-7efef2d975f2 2019-09-28 01:32:34.404225 16739 1169 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 0cbb2e3e-4f27-4c2d-9263-bfee012aaadf 2019-09-28 01:33:38.911622 16740 1603 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 461\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.127E4\nmove_type: '1'\nsale_id: 1169\ncardnumber: 8694\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-643\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-643 187.149.44.182 0cbb2e3e-4f27-4c2d-9263-bfee012aaadf 2019-09-28 01:33:38.939231 16741 190 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 461\nquantity: !ruby/object:BigDecimal 18:0.25E2\nstatus: 1\nobservations: AGUA\nexpense_date: 2019-09-27\nexpense_code: PV1-E-145\n 1 Egreso por 25.0 registrado 187.149.44.182 2903fb83-8b55-4b58-a0ab-055b1008bf92 2019-09-28 01:37:39.33578 16742 1604 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 461\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 190\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.44.182 2903fb83-8b55-4b58-a0ab-055b1008bf92 2019-09-28 01:37:39.360742 16743 459 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 461\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.147E4\namount_out: !ruby/object:BigDecimal 18:0.25E2\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.744E3\nphysical_cash: !ruby/object:BigDecimal 18:0.744E3\nobservations: SE SACO 280 DE ARETES PAGADOS CON TARJETA\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 f1374513-4b53-4574-b1d5-de95d1cd99d1 2019-09-28 01:43:20.074277 16744 461 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 f1374513-4b53-4574-b1d5-de95d1cd99d1 2019-09-28 01:43:20.09059 16745 460 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 459\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.2497E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.1074E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3074E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.149.170 a137397f-ac7c-4ab5-a9fd-8987c55c2f08 2019-09-28 01:57:43.043842 16746 459 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.149.170 a137397f-ac7c-4ab5-a9fd-8987c55c2f08 2019-09-28 01:57:43.057924 16747 461 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 460\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.4448E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.1039E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1739E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.44.182 04c2458b-4dd3-41f4-b2eb-e3a4e6f8d604 2019-09-28 01:59:16.86345 16748 460 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 04c2458b-4dd3-41f4-b2eb-e3a4e6f8d604 2019-09-28 01:59:16.879223 16749 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-26 16:02:31.713272000 Z\n- &1 2019-09-27 16:13:18.586451000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-28 16:03:47.889184388 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117034\n mask_addr: 4294967295\nsign_in_count:\n- 21\n- 22\n 44 \N 189.186.130.234 18b371b9-5e88-4cfe-9ba2-d2eb08f9cd98 2019-09-28 16:03:47.925537 16750 23 User \N \N 23 User \N update ---\nunique_session_id:\n- NX4eC9jxxCuRkjUKfLGL\n- cYAMTkzWWMeRuqr_ZTWz\n 45 \N 189.186.130.234 18b371b9-5e88-4cfe-9ba2-d2eb08f9cd98 2019-09-28 16:03:47.95155 16751 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-26 16:51:14.293252000 Z\n- &1 2019-09-27 17:32:33.440330000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-28 16:25:00.738714753 Z\nsign_in_count:\n- 333\n- 334\n 671 \N 187.149.44.182 c1e3960d-7883-4008-b6a0-a33b0f84412a 2019-09-28 16:25:00.744685 16752 2 User \N \N 2 User \N update ---\nunique_session_id:\n- TTEk1s6k-U1y5Ec2esSX\n- 8rtKXQDKxPLyZJ51sVoh\n 672 \N 187.149.44.182 c1e3960d-7883-4008-b6a0-a33b0f84412a 2019-09-28 16:25:00.760916 16753 462 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.744E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 744.0 187.149.44.182 9f0fb944-c10e-4883-ba05-1c186ce92385 2019-09-28 16:26:33.375703 16754 1605 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 462\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.888E3\nmove_type: '1'\nsale_id: 945\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.888E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-545 187.149.44.182 c149e2dc-0b2d-41f4-a8ad-a6edabc9fc0a 2019-09-28 16:26:52.901485 16755 945 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.44.182 37fea7e6-3628-4191-a5a9-12d79d1a0d37 2019-09-28 16:26:54.741408 16756 1606 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 462\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 1045\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-597 187.149.44.182 7141e6ae-38aa-4dff-b161-98ee5bca746b 2019-09-28 16:29:14.597142 16757 463 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1074E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1074.0 189.186.130.234 e3f4e778-d999-4f75-8fe9-ba426f04915d 2019-09-28 16:40:43.637288 16829 2 User \N \N 2 User \N update ---\nunique_session_id:\n- QGL8eWsyqXQ4mqvg75xg\n- psnEUhEczZET5phj8fHV\n 676 \N 187.149.44.182 7ca010d9-444a-4104-aac5-e63eb180fe96 2019-10-01 16:14:31.427615 17133 691 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.44.182 96ceadf3-76fb-4c0c-a00b-004c881d5aa6 2019-10-05 17:10:33.545404 16758 1607 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 463\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1387E4\nmove_type: '1'\nsale_id: 1089\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.139E4\nchange: !ruby/object:BigDecimal 18:0.3E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-31 189.186.130.234 f83ddbf2-3189-49e4-9383-f3590ddfce64 2019-09-28 16:41:35.735731 16759 1089 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.130.234 116618bc-ae8e-4657-b047-bfa776823de3 2019-09-28 16:41:39.092604 16760 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-27 17:10:34.542530000 Z\n- &1 2019-09-27 20:36:39.379979000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-28 17:00:12.417002225 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\nsign_in_count:\n- 682\n- 683\n 1366 \N 189.186.7.207 6802c473-5e74-4fa0-9cf1-b5e45fc265a1 2019-09-28 17:00:12.424863 16761 4 User \N \N 4 User \N update ---\nunique_session_id:\n- d6cC9r8kRMyQ7wyPDpT4\n- gJAxgqy6YycBFciKN9Xd\n 1367 \N 189.186.7.207 6802c473-5e74-4fa0-9cf1-b5e45fc265a1 2019-09-28 17:00:12.462912 16762 1170 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 463\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-09-28\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-50\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.234 aca975e1-9fb0-4a51-968e-c24a44796d66 2019-09-28 18:11:01.360093 16763 871 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.130.234 aca975e1-9fb0-4a51-968e-c24a44796d66 2019-09-28 18:11:01.388274 16764 1170 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.130.234 a94c0c35-1f05-421f-95fc-f2b1da0f61ac 2019-09-28 18:11:17.524202 16765 1608 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 463\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 1170\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-50\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-50 189.186.130.234 a94c0c35-1f05-421f-95fc-f2b1da0f61ac 2019-09-28 18:11:17.551976 16766 1171 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 462\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-09-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-644\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 f80adc21-b402-4495-a2a7-fd0e6f2c4b7e 2019-09-28 20:05:02.466369 16767 707 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 14 \N 187.149.44.182 f80adc21-b402-4495-a2a7-fd0e6f2c4b7e 2019-09-28 20:05:02.498778 16768 1171 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 5c9d1ce6-c982-4d18-a6ee-384678418934 2019-09-28 20:05:13.951589 16769 1609 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 462\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.549E3\nmove_type: '1'\nsale_id: 1171\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-644\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-644 187.149.44.182 5c9d1ce6-c982-4d18-a6ee-384678418934 2019-09-28 20:05:13.973375 16770 191 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 462\nquantity: !ruby/object:BigDecimal 18:0.25E2\nstatus: 1\nobservations: AGUA\nexpense_date: 2019-09-28\nexpense_code: PV1-E-146\n 1 Egreso por 25.0 registrado 187.149.44.182 3336622c-8f98-4ea7-855b-9f92c169e9a1 2019-09-28 20:07:37.569051 16771 1610 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 462\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 191\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.44.182 3336622c-8f98-4ea7-855b-9f92c169e9a1 2019-09-28 20:07:37.596104 16772 192 Expense \N \N 23 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 463\nquantity: !ruby/object:BigDecimal 18:0.12E4\nstatus: 1\nobservations: NOMINA MARICRUZ\nexpense_date: 2019-09-28\nexpense_code: PV3-E-3\n 1 Egreso por 1200.0 registrado 189.186.130.234 67fa645b-8670-4107-9b88-af01aa004be2 2019-09-28 20:15:32.165343 16773 1611 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 463\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 192\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.130.234 67fa645b-8670-4107-9b88-af01aa004be2 2019-09-28 20:15:32.186714 16774 1172 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 462\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-09-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-645\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 9dbd0525-bf04-4735-9a51-70dcfe062ac3 2019-09-28 22:29:34.654582 16775 811 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.44.182 9dbd0525-bf04-4735-9a51-70dcfe062ac3 2019-09-28 22:29:34.68363 16776 1172 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 f17fe3e0-2d2b-4b46-9ee3-aad108859455 2019-09-28 22:29:43.117409 16777 1612 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 462\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 1172\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-645\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.469E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-645 187.149.44.182 f17fe3e0-2d2b-4b46-9ee3-aad108859455 2019-09-28 22:29:43.141725 16778 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-09-24 18:26:46.108413000 Z\n- &1 2019-09-26 21:38:45.874223000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-28 22:37:59.026703802 Z\nsign_in_count:\n- 86\n- 87\n 174 \N 187.149.44.182 8ac60f13-88a7-4fda-9ecf-05068c73109d 2019-09-28 22:37:59.032923 16779 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Q-v5urxf_WFcActhpcr-\n- t-v1hQx1oP5_pGJyTsHd\n 175 \N 187.149.44.182 8ac60f13-88a7-4fda-9ecf-05068c73109d 2019-09-28 22:37:59.045178 16781 1613 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 462\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 193\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.44.182 d8bf5fd2-c83f-4946-8962-6da2a4ec3805 2019-09-28 23:37:38.966516 16782 1614 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 48\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 180\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.44.182 38398f18-cf08-4419-b820-cfeba5558c27 2019-09-28 23:38:03.102587 16783 1614 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 48\n- 462\n 2 movimiento de efectivo por venta con folio PV2-V-76 187.149.44.182 38398f18-cf08-4419-b820-cfeba5558c27 2019-09-28 23:38:03.136544 16784 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-09-25 01:13:53.573037000 Z\n- &1 2019-09-26 18:29:29.042579000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-29 01:35:51.174871199 Z\nsign_in_count:\n- 147\n- 148\n 298 \N 187.149.44.182 8d7577ac-7400-4fba-8ae2-641258c07acd 2019-09-29 01:35:51.181898 16785 10 User \N \N 10 User \N update ---\nunique_session_id:\n- W7TuoxN6SoSPJ-_Pz8zP\n- rvcCy_skeoyRJnzjaVQ_\n 299 \N 187.149.44.182 8d7577ac-7400-4fba-8ae2-641258c07acd 2019-09-29 01:35:51.221433 16786 464 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.1039E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1039.0 187.149.44.182 7ddea0ea-ae97-4503-8c5e-e176e90b15d1 2019-09-29 01:35:59.220495 16787 462 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 464\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1039E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1039E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.44.182 50ca22d1-ee6b-4026-8c95-66bd75307dab 2019-09-29 01:36:27.110575 16788 464 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 50ca22d1-ee6b-4026-8c95-66bd75307dab 2019-09-29 01:36:27.127398 16789 463 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 462\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2356E4\namount_out: !ruby/object:BigDecimal 18:0.1353E4\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.747E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1747E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 55181b7e-9466-4886-98ff-543a01ae5712 2019-09-29 01:43:52.095208 16790 462 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 55181b7e-9466-4886-98ff-543a01ae5712 2019-09-29 01:43:52.11548 16791 464 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 463\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.2036E4\namount_out: !ruby/object:BigDecimal 18:0.12E4\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.2E3\ncash_fund: !ruby/object:BigDecimal 18:0.1056E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1256E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.130.234 12236b80-d4da-4191-bb30-617045a6bf3e 2019-09-29 02:00:31.812876 16792 463 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.130.234 12236b80-d4da-4191-bb30-617045a6bf3e 2019-09-29 02:00:31.825761 16793 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-27 20:36:39.379979000 Z\n- &1 2019-09-28 17:00:12.417002000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-29 07:09:01.207300731 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\nsign_in_count:\n- 683\n- 684\n 1368 \N 189.186.7.207 4aa9a0e1-89a1-4d8f-8068-d6ff6d28db2d 2019-09-29 07:09:01.241843 16794 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gJAxgqy6YycBFciKN9Xd\n- B7Tf9xY_LnNxJd_fToym\n 1369 \N 189.186.7.207 4aa9a0e1-89a1-4d8f-8068-d6ff6d28db2d 2019-09-29 07:09:01.269487 16795 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-27 16:13:18.586451000 Z\n- &1 2019-09-28 16:03:47.889184000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-29 16:16:51.670248070 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117034\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117034\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112680\n mask_addr: 4294967295\nsign_in_count:\n- 22\n- 23\n 46 \N 189.186.113.232 0fad2af7-7267-4022-92bd-ea4242ad65e5 2019-09-29 16:16:51.707921 16796 23 User \N \N 23 User \N update ---\nunique_session_id:\n- cYAMTkzWWMeRuqr_ZTWz\n- xpRdNCZhs5spQAA55pXm\n 47 \N 189.186.113.232 0fad2af7-7267-4022-92bd-ea4242ad65e5 2019-09-29 16:16:51.735038 16797 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-09-22 20:22:25.521163000 Z\n- &1 2019-09-26 23:55:58.460070000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-29 18:09:23.291879733 Z\nsign_in_count:\n- 5\n- 6\n 12 \N 187.149.44.182 30f2883e-bd98-4e34-b618-6043f8548557 2019-09-29 18:09:23.297503 16798 25 User \N \N 25 User \N update ---\nunique_session_id:\n- oPKN9JyWfDVUjy5uBNBS\n- LKLy84sqkpK5XqAY5Vqh\n 13 \N 187.149.44.182 30f2883e-bd98-4e34-b618-6043f8548557 2019-09-29 18:09:23.309333 16799 465 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.747E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 747.0 187.149.44.182 074fc908-e61b-45ae-8f61-2ae8891722a6 2019-09-29 18:10:01.741994 16800 1173 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 465\namount: !ruby/object:BigDecimal 18:0.70434E3\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.71799E3\nstatus: 0\ndate_sale: 2019-09-29\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-646\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 f3f2db85-11e8-4838-bdd0-8d2817318a2c 2019-09-29 18:18:28.139673 16801 742 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.44.182 f3f2db85-11e8-4838-bdd0-8d2817318a2c 2019-09-29 18:18:28.170504 16802 486 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.15E2\n 15 \N 187.149.44.182 f3f2db85-11e8-4838-bdd0-8d2817318a2c 2019-09-29 18:18:28.203672 16803 1173 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 8c40b487-1ec8-4cb7-a0f3-fcb04f9fb853 2019-09-29 18:19:23.155824 16830 467 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.831E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 831.0 187.149.44.182 a8417218-a074-46e2-8cf8-d8d8b47dbac9 2019-10-01 16:17:45.945001 16804 1615 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 465\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.71799E3\nmove_type: '1'\nsale_id: 1173\ncardnumber: 1794\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-646\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-646 187.149.44.182 8c40b487-1ec8-4cb7-a0f3-fcb04f9fb853 2019-09-29 18:19:23.177474 16805 465 CashOut \N \N 25 User \N create ---\nopen_cash_register_id: 465\nuser_id: 25\namount_in: !ruby/object:BigDecimal 18:0.71799E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.747E3\nphysical_cash: !ruby/object:BigDecimal 18:0.747E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 2a39e6e8-1a1c-4f0d-9010-57a1cf00ab93 2019-09-29 21:00:36.382912 16806 465 OpenCashRegister \N \N 25 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 2a39e6e8-1a1c-4f0d-9010-57a1cf00ab93 2019-09-29 21:00:36.399895 16807 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-27 01:33:28.045527000 Z\n- &1 2019-09-27 17:11:01.585714000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-30 15:53:41.707712905 Z\nsign_in_count:\n- 38\n- 39\n 81 \N 187.149.44.182 d16a4829-ca66-4648-bb46-524d2ae91116 2019-09-30 15:53:41.738337 16808 8 User \N \N 8 User \N update ---\nunique_session_id:\n- b6-YcsUPYineaEyvNeS_\n- P5ccSAp9_eAYuJam_Doj\n 82 \N 187.149.44.182 d16a4829-ca66-4648-bb46-524d2ae91116 2019-09-30 15:53:41.758924 16809 1616 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 12\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 67\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1234'\n 1 \N 187.149.44.182 10b8fcdd-b0d0-4a56-8236-1c89574a1e78 2019-09-30 15:54:48.429084 16810 67 Sale \N \N 8 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.44.182 10b8fcdd-b0d0-4a56-8236-1c89574a1e78 2019-09-30 15:54:48.451087 16811 1616 CashRegistersMove \N \N 8 User \N update ---\nopen_cash_register_id:\n- 12\n- \n 2 movimiento de efectivo por venta con folio PV1-V-37 187.149.44.182 10b8fcdd-b0d0-4a56-8236-1c89574a1e78 2019-09-30 15:54:48.466616 16812 1617 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 303\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 836\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '123'\n 1 \N 187.149.44.182 845da0bd-b12b-4ce6-b746-f1878fb626e7 2019-09-30 16:03:12.898473 16813 1617 CashRegistersMove \N \N 8 User \N update ---\nopen_cash_register_id:\n- 303\n- \n 2 movimiento de efectivo por venta con folio PV1-V-474 187.149.44.182 845da0bd-b12b-4ce6-b746-f1878fb626e7 2019-09-30 16:03:12.921464 16814 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-27 17:32:33.440330000 Z\n- &1 2019-09-28 16:25:00.738714000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-09-30 16:13:38.820411754 Z\nsign_in_count:\n- 334\n- 335\n 673 \N 187.149.44.182 30390d2c-7eb3-42e8-9da9-2a23479b65ea 2019-09-30 16:13:38.826615 16815 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 8rtKXQDKxPLyZJ51sVoh\n- QGL8eWsyqXQ4mqvg75xg\n 674 \N 187.149.44.182 30390d2c-7eb3-42e8-9da9-2a23479b65ea 2019-09-30 16:13:38.841436 16816 466 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.747E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 747.0 187.149.44.182 6a4c1381-08d0-4113-9b5c-1b3d34fa1923 2019-09-30 16:13:56.072276 16817 1618 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 466\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.285E3\nmove_type: '1'\nsale_id: 1045\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.285E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-597 187.149.44.182 1b63654f-41a9-4c64-aa9e-8886378ef661 2019-09-30 16:15:00.217742 16818 1045 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.44.182 c9143e05-33cf-4413-9afd-68e826290f13 2019-09-30 16:15:01.230877 16819 1619 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 48\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 168\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1234'\n 1 \N 187.149.44.182 e89ff3ce-1e62-415b-9569-55d4a4af4f57 2019-09-30 16:30:45.153436 16820 168 Sale \N \N 8 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.44.182 e89ff3ce-1e62-415b-9569-55d4a4af4f57 2019-09-30 16:30:45.175066 16821 1619 CashRegistersMove \N \N 8 User \N update ---\nopen_cash_register_id:\n- 48\n- \n 2 movimiento de efectivo por venta con folio PV2-V-73 187.149.44.182 e89ff3ce-1e62-415b-9569-55d4a4af4f57 2019-09-30 16:30:45.191655 16822 1174 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 466\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-09-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-647\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 0813ba46-9b28-43bf-83d2-5e02dbb794f8 2019-09-30 19:02:26.212834 16823 808 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.44.182 0813ba46-9b28-43bf-83d2-5e02dbb794f8 2019-09-30 19:02:26.242925 16824 1174 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 a5ac0dde-037a-4f80-b768-04194d631026 2019-09-30 19:03:00.34722 16825 1620 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 466\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1174\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-647\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-647 187.149.44.182 a5ac0dde-037a-4f80-b768-04194d631026 2019-09-30 19:03:00.371949 16826 466 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 466\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.984E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.9E3\ncash_fund: !ruby/object:BigDecimal 18:0.831E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1731E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 cdd166d7-aae8-4bd4-bd6d-3e00c4923994 2019-09-30 20:14:49.353205 16831 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-27 17:11:01.585714000 Z\n- &1 2019-09-30 15:53:41.707712000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-01 16:42:38.882566310 Z\nsign_in_count:\n- 39\n- 40\n 83 \N 187.149.44.182 8d870ae7-27da-4293-b050-fec95ac1765e 2019-10-01 16:42:38.890265 16832 8 User \N \N 8 User \N update ---\nunique_session_id:\n- P5ccSAp9_eAYuJam_Doj\n- H4K1DuDLbwxayKqvxNm3\n 84 \N 187.149.44.182 8d870ae7-27da-4293-b050-fec95ac1765e 2019-10-01 16:42:38.904686 16833 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-28 17:00:12.417002000 Z\n- &1 2019-09-29 07:09:01.207300000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-01 16:44:51.919870545 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 684\n- 685\n 1370 \N 187.149.44.182 bd4d9aa8-c6e9-424a-82cf-ed864b2088c6 2019-10-01 16:44:51.927255 16834 4 User \N \N 4 User \N update ---\nunique_session_id:\n- B7Tf9xY_LnNxJd_fToym\n- nHn-8TFoYH9JxHsbBoce\n 1371 \N 187.149.44.182 bd4d9aa8-c6e9-424a-82cf-ed864b2088c6 2019-10-01 16:44:51.944835 16835 1175 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 467\namount: !ruby/object:BigDecimal 18:0.128455E4\ntax: !ruby/object:BigDecimal 18:0.4345E2\ndiscount: !ruby/object:BigDecimal 18:0.314E3\ntotal: !ruby/object:BigDecimal 18:0.1014E4\nstatus: 0\ndate_sale: 2019-10-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-648\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 dc399fbb-fc7b-43f0-9b43-98b9208dd52e 2019-10-01 17:18:58.77897 16836 790 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.44.182 dc399fbb-fc7b-43f0-9b43-98b9208dd52e 2019-10-01 17:18:58.817116 16837 109 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.44.182 dc399fbb-fc7b-43f0-9b43-98b9208dd52e 2019-10-01 17:18:58.85515 16838 1175 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 53c6b72b-1fad-4946-aef6-16dca4f0cc10 2019-10-01 17:19:15.78048 16839 1621 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 467\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1014E4\nmove_type: '1'\nsale_id: 1175\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-648\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1014E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-648 187.149.44.182 53c6b72b-1fad-4946-aef6-16dca4f0cc10 2019-10-01 17:19:15.832918 16840 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-09-30 15:53:41.707712000 Z\n- &1 2019-10-01 16:42:38.882566000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-01 20:22:47.437245620 Z\nsign_in_count:\n- 40\n- 41\n 85 \N 187.149.44.182 6c187cf1-13c8-4a21-b4f7-4adbf0abb612 2019-10-01 20:22:47.455461 16841 8 User \N \N 8 User \N update ---\nunique_session_id:\n- H4K1DuDLbwxayKqvxNm3\n- SMFmpewyn4BPVXnrcbAW\n 86 \N 187.149.44.182 6c187cf1-13c8-4a21-b4f7-4adbf0abb612 2019-10-01 20:22:47.472561 16842 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-09-26 18:29:29.042579000 Z\n- &1 2019-09-29 01:35:51.174871000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-01 20:24:38.027715687 Z\nsign_in_count:\n- 148\n- 149\n 300 \N 187.149.44.182 3971b41c-da02-4958-8524-99aa1ba5c09b 2019-10-01 20:24:38.032979 16843 10 User \N \N 10 User \N update ---\nunique_session_id:\n- rvcCy_skeoyRJnzjaVQ_\n- Fa7i_y8d9iJLemKsn1VT\n 301 \N 187.149.44.182 3971b41c-da02-4958-8524-99aa1ba5c09b 2019-10-01 20:24:38.046133 16844 468 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.1039E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1039.0 187.149.44.182 5664531c-6a35-49a1-a30b-aafd95092376 2019-10-01 20:24:57.595629 16845 1622 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 468\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1667E4\nmove_type: '1'\nsale_id: 1164\ncardnumber: 5519\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-473 187.149.44.182 efa2053e-1af5-4206-ab34-b810e6031ef9 2019-10-01 20:26:26.882018 16846 1164 Sale \N \N 10 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.44.182 0bae6f59-6082-42c8-ad35-a3005c219bee 2019-10-01 20:26:28.404422 16847 1623 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 48\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 171\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.44.182 bed82577-0ac4-4454-aa4a-0c358a4c5239 2019-10-01 21:09:53.886926 16848 171 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.44.182 bed82577-0ac4-4454-aa4a-0c358a4c5239 2019-10-01 21:09:53.941851 16849 383 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 bed82577-0ac4-4454-aa4a-0c358a4c5239 2019-10-01 21:09:53.956738 16850 1623 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 48\n- 467\n 2 movimiento de efectivo por venta con folio PV2-V-74 187.149.44.182 bed82577-0ac4-4454-aa4a-0c358a4c5239 2019-10-01 21:09:53.97022 16851 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-09-29 07:09:01.207300000 Z\n- &1 2019-10-01 16:44:51.919870000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-01 21:18:57.774389873 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938502\n mask_addr: 4294967295\nsign_in_count:\n- 685\n- 686\n 1372 \N 200.68.151.198 091eae6c-5386-498b-9d7b-bb8d2a704676 2019-10-01 21:18:57.784068 16852 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nHn-8TFoYH9JxHsbBoce\n- GLhPTzgpF8nCrztysFjB\n 1373 \N 200.68.151.198 091eae6c-5386-498b-9d7b-bb8d2a704676 2019-10-01 21:18:57.802157 16853 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-01 16:44:51.919870000 Z\n- &1 2019-10-01 21:18:57.774389000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-01 21:54:14.553387074 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938502\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938502\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 686\n- 687\n 1374 \N 187.149.44.182 3250510f-32a4-4474-8edb-f352969eb79d 2019-10-01 21:54:14.56025 16854 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GLhPTzgpF8nCrztysFjB\n- Yox5Lehm4hyeLzyDBWg_\n 1375 \N 187.149.44.182 3250510f-32a4-4474-8edb-f352969eb79d 2019-10-01 21:54:14.574757 17134 645 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.44.182 3b5cb6eb-f13c-4087-9753-0d43a97d0890 2019-10-05 17:19:51.335999 16855 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-28 16:03:47.889184000 Z\n- &1 2019-09-29 16:16:51.670248000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-01 22:32:23.140655789 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117034\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112680\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112680\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183127708\n mask_addr: 4294967295\nsign_in_count:\n- 23\n- 24\n 48 \N 189.186.172.156 9c8a760d-a0c8-4ba6-a5c9-36f7652f79a3 2019-10-01 22:32:23.148931 16856 23 User \N \N 23 User \N update ---\nunique_session_id:\n- xpRdNCZhs5spQAA55pXm\n- xfxNoxU4kPDU2yB3h-w5\n 49 \N 189.186.172.156 9c8a760d-a0c8-4ba6-a5c9-36f7652f79a3 2019-10-01 22:32:23.163837 16857 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-01 21:18:57.774389000 Z\n- &1 2019-10-01 21:54:14.553387000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-02 00:04:29.884516831 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938502\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938502\n mask_addr: 4294967295\nsign_in_count:\n- 687\n- 688\n 1376 \N 200.68.151.198 bb514b56-3ca6-428b-8b8d-762e778c34c6 2019-10-02 00:04:29.891707 16858 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Yox5Lehm4hyeLzyDBWg_\n- NkiPi7UMJLrPTGiw9SJK\n 1377 \N 200.68.151.198 bb514b56-3ca6-428b-8b8d-762e778c34c6 2019-10-02 00:04:29.932675 16859 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-01 21:54:14.553387000 Z\n- &1 2019-10-02 00:04:29.884516000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-02 00:45:29.654813019 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938502\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938502\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183127708\n mask_addr: 4294967295\nsign_in_count:\n- 688\n- 689\n 1378 \N 189.186.172.156 685a6b87-a7b8-4568-ba86-b36b1300a27f 2019-10-02 00:45:29.666198 16860 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NkiPi7UMJLrPTGiw9SJK\n- 5yaj2sGMeZ8Cr9DHp2YP\n 1379 \N 189.186.172.156 685a6b87-a7b8-4568-ba86-b36b1300a27f 2019-10-02 00:45:29.687547 16861 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-09-29 01:35:51.174871000 Z\n- &1 2019-10-01 20:24:38.027715000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-02 00:53:51.997500714 Z\nsign_in_count:\n- 149\n- 150\n 302 \N 187.149.44.182 80b04db7-6796-4fa4-ba39-955510aafeba 2019-10-02 00:53:52.00303 16862 10 User \N \N 10 User \N update ---\nunique_session_id:\n- Fa7i_y8d9iJLemKsn1VT\n- zJc2tdkqUuiiA9eZwBoj\n 303 \N 187.149.44.182 80b04db7-6796-4fa4-ba39-955510aafeba 2019-10-02 00:53:52.015119 16863 1176 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 468\namount: !ruby/object:BigDecimal 18:0.25776E3\ntax: !ruby/object:BigDecimal 18:0.4124E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.299E3\nstatus: 0\ndate_sale: 2019-10-01\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-476\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 ad78dcb3-faa2-4005-9da2-8e9e089202af 2019-10-02 00:54:16.045331 16864 340 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.44.182 ad78dcb3-faa2-4005-9da2-8e9e089202af 2019-10-02 00:54:16.072889 16865 1176 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 28e00a47-2fcf-4a5c-8b02-2794e22279a2 2019-10-02 00:54:22.711964 16866 1624 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 468\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 1176\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-476\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-476 187.149.44.182 28e00a47-2fcf-4a5c-8b02-2794e22279a2 2019-10-02 00:54:22.734122 16867 744 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 26 \N 187.149.44.182 6961de42-cbad-4991-8295-4076712de669 2019-10-02 01:22:33.509539 16868 744 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 27 \N 187.149.44.182 f8f356f6-c40f-4060-aa3a-7ac03ce5d993 2019-10-02 01:23:43.98243 16869 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-01 16:42:38.882566000 Z\n- &1 2019-10-01 20:22:47.437245000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-02 01:24:23.636151485 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183127708\n mask_addr: 4294967295\nsign_in_count:\n- 41\n- 42\n 87 \N 189.186.172.156 5e75035b-2b18-4112-a878-30461e2a9915 2019-10-02 01:24:23.644076 16870 8 User \N \N 8 User \N update ---\nunique_session_id:\n- SMFmpewyn4BPVXnrcbAW\n- q7aUzomL6dEBkvALtXFy\n 88 \N 189.186.172.156 5e75035b-2b18-4112-a878-30461e2a9915 2019-10-02 01:24:23.658999 16871 184 Customer \N \N 8 User \N create ---\nnick_name: AMAIRANI CORRALES\nphone: "(667) 355-3824"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente AMAIRANI CORRALES fue registrado. 189.186.172.156 2006d6e2-760c-4245-bc26-6d765ff854f7 2019-10-02 01:25:08.532948 16872 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-02 00:04:29.884516000 Z\n- &1 2019-10-02 00:45:29.654813000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-02 01:27:20.558542419 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938502\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183127708\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183127708\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 689\n- 690\n 1380 \N 187.149.44.182 56f6d3c7-8642-42b0-be68-72fa8e4f69e1 2019-10-02 01:27:20.567279 16873 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5yaj2sGMeZ8Cr9DHp2YP\n- FEYD_jszxJTSRNP2BvUM\n 1381 \N 187.149.44.182 56f6d3c7-8642-42b0-be68-72fa8e4f69e1 2019-10-02 01:27:20.585031 16874 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-27 00:55:03.564476000 Z\n- &1 2019-09-27 01:53:19.243174000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-02 01:27:23.880895627 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183127708\n mask_addr: 4294967295\nsign_in_count:\n- 38\n- 39\n 79 \N 189.186.172.156 64e4777a-f1e1-49ea-85e0-406df61d0af4 2019-10-02 01:27:23.888692 16875 18 User \N \N 18 User \N update ---\nunique_session_id:\n- u7w-b2XxM4a_f7uwAu4s\n- _5miXzzemy3-JiXrimxm\n 80 \N 189.186.172.156 64e4777a-f1e1-49ea-85e0-406df61d0af4 2019-10-02 01:27:23.902479 16876 469 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1056E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1056.0 189.186.172.156 283314a8-fc1a-4006-b4a1-2faf96026731 2019-10-02 01:27:37.513059 16877 467 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 467\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2014E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.18E4\ncash_fund: !ruby/object:BigDecimal 18:0.1045E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2845E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 3107487a-45ab-44b5-a5a2-e1a0cdc314be 2019-10-02 01:27:39.739621 16878 467 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 3107487a-45ab-44b5-a5a2-e1a0cdc314be 2019-10-02 01:27:39.765519 16879 185 Customer \N \N 18 User \N create ---\nnick_name: AMAIRANI CORRALES\nphone: "(667) 151-6744"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente AMAIRANI CORRALES fue registrado. 189.186.172.156 a1c86f2d-9068-4370-8d6d-75106b7a59a9 2019-10-02 01:28:01.829443 16880 1177 Sale \N \N 18 User \N create ---\ncustomer_id: 185\nuser_id: 18\nopen_cash_register_id: 469\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2019-10-01\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-51\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.172.156 1f54d291-2926-4aa0-b85e-2c15201ad142 2019-10-02 01:29:56.603323 16881 1036 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.172.156 1f54d291-2926-4aa0-b85e-2c15201ad142 2019-10-02 01:29:56.629899 16882 1177 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-51 cancelada. 189.186.172.156 29243f67-e389-43f1-8640-0285ff4cb510 2019-10-02 01:30:24.254128 16883 1036 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.172.156 29243f67-e389-43f1-8640-0285ff4cb510 2019-10-02 01:30:24.287042 16884 1178 Sale \N \N 18 User \N create ---\ncustomer_id: 185\nuser_id: 18\nopen_cash_register_id: 469\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2019-10-01\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-52\nexpiration_date: 2019-11-05\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.172.156 f01617e3-e230-4659-8d86-d4442f1ab30d 2019-10-02 01:31:06.70211 16885 1036 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.172.156 f01617e3-e230-4659-8d86-d4442f1ab30d 2019-10-02 01:31:06.728643 16886 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-10-01 20:24:38.027715000 Z\n- &1 2019-10-02 00:53:51.997500000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-02 01:31:17.250622457 Z\nsign_in_count:\n- 150\n- 151\n 304 \N 187.149.44.182 7ebcd6ae-4b4e-4729-b382-bce5f5c20fc0 2019-10-02 01:31:17.257016 16887 10 User \N \N 10 User \N update ---\nunique_session_id:\n- zJc2tdkqUuiiA9eZwBoj\n- rWkfLpcTBk1ZMzLxNb8s\n 305 \N 187.149.44.182 7ebcd6ae-4b4e-4729-b382-bce5f5c20fc0 2019-10-02 01:31:17.272 16888 1625 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 469\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.65E3\nmove_type: '1'\nsale_id: 1178\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-52\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.65E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-52 189.186.172.156 9ebf35f7-f46a-48d3-b4e8-a7cc3d436229 2019-10-02 01:31:24.238671 16889 1178 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.172.156 b8fc7c2d-8a0a-4289-abfb-c87ccb6e4e2d 2019-10-02 01:31:26.432288 16890 468 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 468\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.1966E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.838E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1338E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.44.182 3016407d-d754-483e-8931-c1452663a6f0 2019-10-02 01:33:02.957028 16891 468 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 3016407d-d754-483e-8931-c1452663a6f0 2019-10-02 01:33:02.977252 16892 469 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 469\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.65E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.1206E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1706E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.172.156 40136bf0-6338-4dd8-83ed-a16bae4b17d5 2019-10-02 02:02:48.16088 16893 469 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.172.156 40136bf0-6338-4dd8-83ed-a16bae4b17d5 2019-10-02 02:02:48.176737 16894 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-09-29 16:16:51.670248000 Z\n- &1 2019-10-01 22:32:23.140655000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-02 16:08:20.457826129 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112680\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183127708\n mask_addr: 4294967295\nsign_in_count:\n- 24\n- 25\n 50 \N 189.186.172.156 870b6945-eecf-4a70-a852-4e37f2d12764 2019-10-02 16:08:20.48678 16895 23 User \N \N 23 User \N update ---\nunique_session_id:\n- xfxNoxU4kPDU2yB3h-w5\n- 8ZGER-Rc2hGJGYuppd2k\n 51 \N 189.186.172.156 870b6945-eecf-4a70-a852-4e37f2d12764 2019-10-02 16:08:20.508202 16896 470 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1206E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1206.0 189.186.172.156 8aee8532-dad3-466c-a005-8ce0caa3a321 2019-10-02 16:09:37.739326 16897 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-09-30 16:13:38.820411000 Z\n- &1 2019-10-01 16:14:31.357786000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-02 16:29:26.530580705 Z\nsign_in_count:\n- 336\n- 337\n 677 \N 187.149.44.182 d6c23772-b45b-4ca7-8f49-3d19e717b452 2019-10-02 16:29:26.572757 16898 2 User \N \N 2 User \N update ---\nunique_session_id:\n- psnEUhEczZET5phj8fHV\n- 45KBKXujBYURsoWbiX8x\n 678 \N 187.149.44.182 d6c23772-b45b-4ca7-8f49-3d19e717b452 2019-10-02 16:29:26.595742 16899 471 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1045E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1045.0 187.149.44.182 4afa569a-c379-4a84-8862-23aaf3df3d73 2019-10-02 16:29:39.184046 16900 186 Customer \N \N 23 User \N create ---\nnick_name: ALICIA ZEPEDA\nphone: "(667) 131-3179"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ALICIA ZEPEDA fue registrado. 189.186.172.156 cb5eae07-1e30-4e66-aa14-44610cadffdd 2019-10-02 18:42:04.101215 16901 1179 Sale \N \N 23 User \N create ---\ncustomer_id: 186\nuser_id: 23\nopen_cash_register_id: 470\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-10-02\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-53\nexpiration_date: 2019-11-06\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.172.156 1f5ad60c-1557-4537-b10d-e4618c4b244f 2019-10-02 18:43:00.760119 16902 858 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.172.156 1f5ad60c-1557-4537-b10d-e4618c4b244f 2019-10-02 18:43:00.786827 16903 1626 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 470\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 1179\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-53\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-53 189.186.172.156 0a3ed477-7634-4071-85be-68a2dbda1deb 2019-10-02 18:43:17.642578 16904 1179 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.172.156 935ecf91-1802-40dc-a884-6841afdef3a2 2019-10-02 18:43:39.41829 16905 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-02 00:45:29.654813000 Z\n- &1 2019-10-02 01:27:20.558542000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-02 19:16:47.922207534 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183127708\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938263\n mask_addr: 4294967295\nsign_in_count:\n- 690\n- 691\n 1382 \N 200.68.150.215 4b2ee1f7-b37c-4f50-bf0b-5050a225e6c6 2019-10-02 19:16:47.956806 16906 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FEYD_jszxJTSRNP2BvUM\n- NxkeyEyrAnm4CU3v6NYD\n 1383 \N 200.68.150.215 4b2ee1f7-b37c-4f50-bf0b-5050a225e6c6 2019-10-02 19:16:47.978524 16907 187 Customer \N \N 2 User \N create ---\nnick_name: GRACIELA VALDEZ\nphone: "(667) 477-0253"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente GRACIELA VALDEZ fue registrado. 187.149.44.182 2f86ed7c-50a5-4048-8ac7-d635892ea3e1 2019-10-02 20:08:29.980377 16908 1180 Sale \N \N 2 User \N create ---\ncustomer_id: 187\nuser_id: 2\nopen_cash_register_id: 471\namount: !ruby/object:BigDecimal 18:0.1999E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1999E4\nstatus: 0\ndate_sale: 2019-10-02\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-649\nexpiration_date: 2019-11-06\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 2fd78c20-3e88-4abb-9324-47ece479d17c 2019-10-02 20:09:19.688853 16909 1034 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.44.182 2fd78c20-3e88-4abb-9324-47ece479d17c 2019-10-02 20:09:19.716236 16910 1627 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 471\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1180\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-649\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-649 187.149.44.182 3d53365e-cee3-4db1-8538-de5cf4287b7a 2019-10-02 20:09:31.138019 16911 1180 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.44.182 eb09ea7d-6ef6-4b31-ada5-a082f780e5e4 2019-10-02 20:09:32.55815 16912 188 Customer \N \N 2 User \N create ---\nnick_name: CLAUDIA PATRICIA CORTEZ\nphone: "(667) 748-6345"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CLAUDIA PATRICIA CORTEZ fue registrado. 187.149.44.182 4fa879e5-1983-4f38-a897-ce77eff9af35 2019-10-02 21:43:35.48618 16913 1181 Sale \N \N 2 User \N create ---\ncustomer_id: 188\nuser_id: 2\nopen_cash_register_id: 471\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-10-02\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-650\nexpiration_date: 2019-11-06\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 9803b882-eb54-4ece-8892-400fb7eebec6 2019-10-02 21:43:49.292099 16914 710 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.44.182 9803b882-eb54-4ece-8892-400fb7eebec6 2019-10-02 21:43:49.327848 16915 1628 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 471\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8E3\nmove_type: '1'\nsale_id: 1181\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-650\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-650 187.149.44.182 ab28fd54-63a3-4c2b-93fa-242ad4ff8b73 2019-10-02 21:44:07.354339 16916 1181 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.44.182 a4906936-8f6b-48ac-a756-1600797902a8 2019-10-02 21:44:09.129573 16917 1629 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 471\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.369E3\nmove_type: '1'\nsale_id: 948\ncardnumber: 3295\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-547 187.149.44.182 df785d11-1a85-4a4f-bced-fb6e49b1a894 2019-10-02 22:14:37.498937 16918 948 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.44.182 2e77eda0-0339-4ad7-af10-42424450c985 2019-10-02 22:14:39.004877 16919 1630 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 471\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1146\ncardnumber: 3295\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-636 187.149.44.182 7695dd98-129f-43d4-9e7c-d3a83ff713c2 2019-10-02 22:15:44.052031 16920 1146 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.44.182 07b3e740-bb37-4b70-9b90-8f9ce1082001 2019-10-02 22:15:46.788793 16944 1037 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 708\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 7de86cfe-a59a-41d4-b7e4-de63c9bf53cf 2019-10-03 00:55:34.593071 16921 1182 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 471\namount: !ruby/object:BigDecimal 18:0.125662E4\ntax: !ruby/object:BigDecimal 18:0.4138E2\ndiscount: !ruby/object:BigDecimal 18:0.299E3\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-10-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-651\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 099805f4-725f-4833-81d9-2c2d45bb35f0 2019-10-02 22:50:01.573346 16922 9 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.44.182 099805f4-725f-4833-81d9-2c2d45bb35f0 2019-10-02 22:50:01.600022 16923 808 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 187.149.44.182 099805f4-725f-4833-81d9-2c2d45bb35f0 2019-10-02 22:50:01.622503 16924 1182 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 a8e9ffe1-05b4-427c-b0f0-21c9ffc406f6 2019-10-02 22:50:08.854776 16925 1631 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 471\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 1182\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-651\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-651 187.149.44.182 a8e9ffe1-05b4-427c-b0f0-21c9ffc406f6 2019-10-02 22:50:08.883247 16926 472 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.838E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 838.0 187.149.44.182 277a4310-436f-4f8b-a3c1-d274361d726a 2019-10-02 22:58:35.103885 16927 189 Customer \N \N 23 User \N create ---\nnick_name: FLOR AGUIRRE\nphone: "(667) 227-5853"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.7E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente FLOR AGUIRRE fue registrado. 189.186.172.156 66e1b3ab-f355-4d48-a974-fbfc6aca1705 2019-10-02 23:39:44.818758 16928 1183 Sale \N \N 23 User \N create ---\ncustomer_id: 189\nuser_id: 23\nopen_cash_register_id: 470\namount: !ruby/object:BigDecimal 18:0.137845E4\ntax: !ruby/object:BigDecimal 18:0.22055E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-10-02\nsaletype: 0\nseller_id: 13\nsale_code: PV3-V-54\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.172.156 bcf101ac-a6eb-4315-a173-401692d7c81f 2019-10-02 23:44:03.129129 16929 885 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.172.156 bcf101ac-a6eb-4315-a173-401692d7c81f 2019-10-02 23:44:03.161795 16930 1632 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 470\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1183\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.172.156 fdf252b7-f1f2-4af6-963f-b67d137aea82 2019-10-02 23:47:40.280086 16931 1183 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.172.156 fdf252b7-f1f2-4af6-963f-b67d137aea82 2019-10-02 23:47:40.298541 16932 1632 CashRegistersMove \N \N 23 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV3-V-54 189.186.172.156 fdf252b7-f1f2-4af6-963f-b67d137aea82 2019-10-02 23:47:40.307155 16933 1184 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 471\namount: !ruby/object:BigDecimal 18:0.1549E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1549E4\nstatus: 0\ndate_sale: 2019-10-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-652\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 79a7fe82-e905-41c2-88c0-16d14b14a9ff 2019-10-03 00:22:02.751658 16934 832 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.44.182 79a7fe82-e905-41c2-88c0-16d14b14a9ff 2019-10-03 00:22:02.775447 16935 1184 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 92ba7f99-7fc8-4928-bb8b-d0bd784d8f33 2019-10-03 00:22:42.989748 16936 1633 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 471\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1549E4\nmove_type: '1'\nsale_id: 1184\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-652\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1549E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-652 187.149.44.182 92ba7f99-7fc8-4928-bb8b-d0bd784d8f33 2019-10-03 00:22:43.009856 16937 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-09-26 21:38:45.874223000 Z\n- &1 2019-09-28 22:37:59.026703000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-03 00:26:03.960812915 Z\nsign_in_count:\n- 87\n- 88\n 176 \N 187.149.44.182 b2410bad-e9c0-4988-ba53-7bfb65e05e23 2019-10-03 00:26:03.967351 16938 1 User \N \N 1 User \N update ---\nunique_session_id:\n- t-v1hQx1oP5_pGJyTsHd\n- kVmC8QEPxt-McLVQQxrG\n 177 \N 187.149.44.182 b2410bad-e9c0-4988-ba53-7bfb65e05e23 2019-10-03 00:26:03.979782 16939 880 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.172.156 049e18e1-1000-4984-90f7-018e608d7374 2019-10-03 00:49:53.945355 16940 210 Transfer \N \N 23 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-10-02\nuser_id: 23\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.172.156 7bd26d62-1e1b-4c68-bb4a-d7ae0544cc33 2019-10-03 00:49:57.464754 16941 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-02 01:27:20.558542000 Z\n- &1 2019-10-02 19:16:47.922207000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-03 00:53:58.123283761 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938263\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938263\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183127708\n mask_addr: 4294967295\nsign_in_count:\n- 691\n- 692\n 1384 \N 189.186.172.156 7f63fa53-fb4b-480b-98f0-cea32b56c197 2019-10-03 00:53:58.131149 16942 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NxkeyEyrAnm4CU3v6NYD\n- x8pXiTehWR_Pmthkufit\n 1385 \N 189.186.172.156 7f63fa53-fb4b-480b-98f0-cea32b56c197 2019-10-03 00:53:58.149875 16943 206 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-02\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.44.182 7de86cfe-a59a-41d4-b7e4-de63c9bf53cf 2019-10-03 00:55:34.569449 17135 645 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.44.182 b2e483c3-c679-479b-81bf-70e911cd6b75 2019-10-05 17:19:56.384328 16945 1038 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 703\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 7de86cfe-a59a-41d4-b7e4-de63c9bf53cf 2019-10-03 00:55:34.613119 16946 210 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-02\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.44.182 e6623e5d-3e36-4502-b0af-fab5636eb8d8 2019-10-03 00:55:45.534884 16947 1037 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.44.182 e6623e5d-3e36-4502-b0af-fab5636eb8d8 2019-10-03 00:55:45.556358 16948 1185 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 471\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.374E3\ntotal: !ruby/object:BigDecimal 18:0.1125E4\nstatus: 0\ndate_sale: 2019-10-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-653\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 55491b06-b0d1-4e17-aae6-14ce817516fa 2019-10-03 01:04:07.780409 16949 1037 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.44.182 55491b06-b0d1-4e17-aae6-14ce817516fa 2019-10-03 01:04:07.813728 16950 1185 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 61822923-89fb-43de-b4da-94e8e8599c3e 2019-10-03 01:04:54.800252 16951 1634 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 471\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.1125E4\nmove_type: '1'\nsale_id: 1185\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-653\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: univale\ncheck_number: '0000'\ncustomer_account: univale\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-653 187.149.44.182 61822923-89fb-43de-b4da-94e8e8599c3e 2019-10-03 01:04:54.823624 16952 470 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 471\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6241E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.4E4\ncash_fund: !ruby/object:BigDecimal 18:0.893E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4893E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 07f1d7f3-e75f-4c5e-96b0-68e000a19c63 2019-10-03 01:31:42.467386 16953 471 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 07f1d7f3-e75f-4c5e-96b0-68e000a19c63 2019-10-03 01:31:42.481827 16954 471 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 472\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.838E3\nphysical_cash: !ruby/object:BigDecimal 18:0.838E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.44.182 3e655dd0-4afc-4d24-b8a4-9d927b9a19a1 2019-10-03 01:38:57.906444 16955 472 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 3e655dd0-4afc-4d24-b8a4-9d927b9a19a1 2019-10-03 01:38:57.922093 16956 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-09-27 01:53:19.243174000 Z\n- &1 2019-10-02 01:27:23.880895000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-03 01:55:31.639642398 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183127708\n mask_addr: 4294967295\nsign_in_count:\n- 39\n- 40\n 81 \N 189.186.172.156 885be49a-9c12-4fa8-98e6-7383d51529f2 2019-10-03 01:55:31.668358 16957 18 User \N \N 18 User \N update ---\nunique_session_id:\n- _5miXzzemy3-JiXrimxm\n- hfd8qF5yZdEsyKk6k28G\n 82 \N 189.186.172.156 885be49a-9c12-4fa8-98e6-7383d51529f2 2019-10-03 01:55:31.688742 16958 472 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 470\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.7E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.1206E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1906E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.172.156 8b011945-f76c-473d-9595-ea3321eeed4f 2019-10-03 01:58:20.803391 16959 470 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.172.156 8b011945-f76c-473d-9595-ea3321eeed4f 2019-10-03 01:58:20.831857 16960 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-01 16:14:31.357786000 Z\n- &1 2019-10-02 16:29:26.530580000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-03 15:56:47.419951455 Z\nsign_in_count:\n- 337\n- 338\n 679 \N 187.149.44.182 008716d6-31c6-4a2d-acac-1d2449a24bdf 2019-10-03 15:56:47.455134 16961 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 45KBKXujBYURsoWbiX8x\n- H_LW74Myfwr76sZoB_Kk\n 680 \N 187.149.44.182 008716d6-31c6-4a2d-acac-1d2449a24bdf 2019-10-03 15:56:47.480175 16962 473 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.893E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 893.0 187.149.44.182 b665f9af-ec0d-4696-a3f5-ae8506327e62 2019-10-03 15:57:12.117918 16963 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-01 22:32:23.140655000 Z\n- &1 2019-10-02 16:08:20.457826000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-03 16:14:07.394418571 Z\nsign_in_count:\n- 25\n- 26\n 52 \N 189.186.172.156 ab1b9390-8538-483e-99aa-05a647a1a2c5 2019-10-03 16:14:07.401226 16964 23 User \N \N 23 User \N update ---\nunique_session_id:\n- 8ZGER-Rc2hGJGYuppd2k\n- g_asxeTrg3wW-Fxkx9ey\n 53 \N 189.186.172.156 ab1b9390-8538-483e-99aa-05a647a1a2c5 2019-10-03 16:14:07.415914 16965 474 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1206E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1206.0 189.186.172.156 e445ec87-7dce-4ca7-8b01-0ec8b42109f3 2019-10-03 16:14:46.580881 16966 1635 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 474\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 1034\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-11 189.186.172.156 b73f33b8-3934-4a46-9153-120fe241cdd4 2019-10-03 17:27:20.139869 16967 1034 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.172.156 e287c9ec-5e7b-4925-a260-1f412bcb7b59 2019-10-03 17:27:22.740967 16990 212 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-03\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 187.149.44.182 935207fe-0949-4c3d-a762-a4fc933e5b55 2019-10-03 20:20:41.50722 30339 850 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.108.109 b2285be4-4541-450c-96b0-a07d0a78181a 2020-02-26 02:31:29.844035 16968 1636 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 473\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 1163\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-642 187.149.44.182 75408e8c-53e6-42f6-8e57-4fec1e8bd615 2019-10-03 18:47:58.221156 16969 1163 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.44.182 8c2a236c-5680-468b-8fb0-fb9d8db6cfff 2019-10-03 18:47:59.400436 16970 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-02 19:16:47.922207000 Z\n- &1 2019-10-03 00:53:58.123283000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-03 19:18:05.719606544 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938263\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183127708\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183127708\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 692\n- 693\n 1386 \N 187.149.44.182 49496210-9a63-4162-a706-d9851827bd38 2019-10-03 19:18:05.729563 16971 4 User \N \N 4 User \N update ---\nunique_session_id:\n- x8pXiTehWR_Pmthkufit\n- YpAKNJVSdFsSaUem_zK2\n 1387 \N 187.149.44.182 49496210-9a63-4162-a706-d9851827bd38 2019-10-03 19:18:05.755692 16972 1186 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 473\namount: !ruby/object:BigDecimal 18:0.619E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.619E3\nstatus: 0\ndate_sale: 2019-10-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-654\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 d2c6a906-b994-4fac-80c8-10b1a65c1946 2019-10-03 20:13:18.871611 16973 742 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.44.182 d2c6a906-b994-4fac-80c8-10b1a65c1946 2019-10-03 20:13:18.905999 16974 1186 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 79f0c12c-87cc-4e05-8ac2-089450107e62 2019-10-03 20:13:23.67779 16975 1637 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 473\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.619E3\nmove_type: '1'\nsale_id: 1186\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-654\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.619E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-654 187.149.44.182 79f0c12c-87cc-4e05-8ac2-089450107e62 2019-10-03 20:13:23.708265 16976 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-03 00:53:58.123283000 Z\n- &1 2019-10-03 19:18:05.719606000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-03 20:13:28.035588089 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183127708\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\nsign_in_count:\n- 693\n- 694\n 1388 \N 189.186.248.67 6bf8edea-4aa1-43b8-b21f-041bed340fc3 2019-10-03 20:13:28.045896 16977 4 User \N \N 4 User \N update ---\nunique_session_id:\n- YpAKNJVSdFsSaUem_zK2\n- vecGxkAG9dH6abTGbi9S\n 1389 \N 189.186.248.67 6bf8edea-4aa1-43b8-b21f-041bed340fc3 2019-10-03 20:13:28.066516 16978 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-03 19:18:05.719606000 Z\n- &1 2019-10-03 20:13:28.035588000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-03 20:18:04.674946891 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 694\n- 695\n 1390 \N 187.149.44.182 c4eb7914-167f-4fcd-b9ba-194c01d4d46e 2019-10-03 20:18:04.68367 16979 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vecGxkAG9dH6abTGbi9S\n- KN4jxbgKd7fz4Hk4myZF\n 1391 \N 187.149.44.182 c4eb7914-167f-4fcd-b9ba-194c01d4d46e 2019-10-03 20:18:04.700044 16980 211 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-10-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 187.149.44.182 bf4a8d40-a314-4f63-a10e-1fcd00f320f5 2019-10-03 20:18:47.865372 16981 744 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 28 \N 187.149.44.182 34cf12cf-e7f7-430b-a97c-04c5918896c3 2019-10-03 20:19:24.576245 16982 212 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-10-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.44.182 bbee219c-a021-48db-ad13-60426a9eb5ad 2019-10-03 20:19:26.487357 16983 744 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 29 \N 187.149.44.182 e389da9e-ce0f-42b5-ae38-e81720bddeab 2019-10-03 20:19:45.336903 16984 744 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 30 \N 187.149.44.182 2efdea7c-17e9-4405-bf94-860c9f3c536f 2019-10-03 20:19:48.402402 16985 213 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-10-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.44.182 248b59f8-e39d-4177-a86c-1c4e0885038a 2019-10-03 20:19:48.935945 16986 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-23 20:14:23.253257000 Z\n- &1 2019-09-28 00:45:41.636512000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-03 20:20:14.807923470 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114208\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 21\n- 22\n 45 \N 187.149.44.182 81ec662c-a318-4704-b1d7-39a1aedd9163 2019-10-03 20:20:14.817647 16987 21 User \N \N 21 User \N update ---\nunique_session_id:\n- T4-Ws6c_o_ZzVs8E4Cz5\n- DpyQNayVJs5eN79Aih-u\n 46 \N 187.149.44.182 81ec662c-a318-4704-b1d7-39a1aedd9163 2019-10-03 20:20:14.834341 16988 211 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-03\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 187.149.44.182 bcf93c9f-a405-4ddd-84b4-4c8ed9d6d16b 2019-10-03 20:20:34.703376 16989 940 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.44.182 bcf93c9f-a405-4ddd-84b4-4c8ed9d6d16b 2019-10-03 20:20:34.720463 16992 190 Customer \N \N 2 User \N create ---\nnick_name: karmen daniela osuna landeros\nphone: "(667) 294-2133"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente karmen daniela osuna landeros fue registrado. 187.149.44.182 0cb6e4e5-930c-495c-8fba-231dfc7b4b73 2019-10-03 22:59:33.80252 16993 1187 Sale \N \N 2 User \N create ---\ncustomer_id: 190\nuser_id: 2\nopen_cash_register_id: 473\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-10-03\nsaletype: 2\nseller_id: 16\nsale_code: PV1-V-655\nexpiration_date: 2019-11-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 1dae3c40-ed06-4f0f-bf92-9297f6de40c5 2019-10-03 23:00:02.270941 16994 784 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 8 \N 187.149.44.182 1dae3c40-ed06-4f0f-bf92-9297f6de40c5 2019-10-03 23:00:02.316551 16995 1638 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 473\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 1187\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-655\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-655 187.149.44.182 ae38f702-d6aa-478d-af53-14f4d547b95f 2019-10-03 23:00:24.457661 16996 1187 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.44.182 35951b88-147e-421c-bc21-6fefa7224f1d 2019-10-03 23:00:25.560125 16997 190 Customer \N \N 2 User \N update ---\nnick_name:\n- karmen daniela osuna landeros\n- carmen daniela osuna landeros\n 2 El cliente carmen daniela osuna landeros fue registrado. 187.149.44.182 6a866204-b081-4167-8f4e-18fb50fc97b8 2019-10-03 23:53:10.04736 16998 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-03 20:13:28.035588000 Z\n- &1 2019-10-03 20:18:04.674946000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-04 00:04:57.128824585 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\nsign_in_count:\n- 695\n- 696\n 1392 \N 189.186.248.67 4117bbd3-fbdb-468f-a71b-1d93481981c8 2019-10-04 00:04:57.137451 16999 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KN4jxbgKd7fz4Hk4myZF\n- 6oCMxwRzF86sPxJWNcZ9\n 1393 \N 189.186.248.67 4117bbd3-fbdb-468f-a71b-1d93481981c8 2019-10-04 00:04:57.15558 17000 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-01 20:22:47.437245000 Z\n- &1 2019-10-02 01:24:23.636151000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-04 00:12:15.696793929 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183127708\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183127708\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 42\n- 43\n 89 \N 187.149.44.182 e14fedec-1e7d-4660-a16e-16da56598ae2 2019-10-04 00:12:15.703765 17001 8 User \N \N 8 User \N update ---\nunique_session_id:\n- q7aUzomL6dEBkvALtXFy\n- "-UxoJD4sZFZn1dUzabj1"\n 90 \N 187.149.44.182 e14fedec-1e7d-4660-a16e-16da56598ae2 2019-10-04 00:12:15.717793 17002 475 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.838E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 838.0 187.149.44.182 0462ace1-6c9d-4ab5-8365-e84227b27c0b 2019-10-04 00:12:30.715239 17003 1188 Sale \N \N 8 User \N create ---\ncustomer_id: 144\nuser_id: 8\nopen_cash_register_id: 475\namount: !ruby/object:BigDecimal 18:0.103448E4\ntax: !ruby/object:BigDecimal 18:0.16552E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.12E4\nstatus: 0\ndate_sale: 2019-10-03\nsaletype: 2\nseller_id: 11\nsale_code: PV2-V-477\nexpiration_date: 2019-11-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 5bed19aa-5496-42ad-af1c-c74481def99f 2019-10-04 00:13:05.470222 17004 546 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 187.149.44.182 5bed19aa-5496-42ad-af1c-c74481def99f 2019-10-04 00:13:05.496096 17005 1639 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 475\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E3\nmove_type: '1'\nsale_id: 1188\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-477\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.13E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-477 187.149.44.182 c8b2da09-b1ec-43ff-aa25-64c63b353188 2019-10-04 00:13:11.369544 17006 1639 CashRegistersMove \N \N 8 User \N destroy ---\nopen_cash_register_id: 475\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E3\nmove_type: '1'\nsale_id: 1188\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-477\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.13E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.44.182 af69caec-74cc-47cf-92d1-d045ddf68bb1 2019-10-04 00:13:18.553774 17007 1640 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 475\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 1188\ncardnumber: 3295\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-477\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-477 187.149.44.182 8e1aa702-b355-4693-97a6-c73166c9d652 2019-10-04 00:13:46.922053 17008 1188 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.44.182 b90a1619-0dcf-48a3-9eba-1d6f2d892594 2019-10-04 00:13:50.146621 17009 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-09-28 00:45:41.636512000 Z\n- &1 2019-10-03 20:20:14.807923000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-04 00:14:58.865772467 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085519\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 22\n- 23\n 47 \N 187.149.44.182 98921f54-08c6-41fa-a794-52924fb97143 2019-10-04 00:14:58.874377 17010 21 User \N \N 21 User \N update ---\nunique_session_id:\n- DpyQNayVJs5eN79Aih-u\n- WNZSPdDNYscw-2J_r4Tj\n 48 \N 187.149.44.182 98921f54-08c6-41fa-a794-52924fb97143 2019-10-04 00:14:58.890572 17011 1641 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 426\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1077\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1234'\n 1 \N 187.149.44.182 c60cd6f9-f991-49d5-891d-df6d0de384f1 2019-10-04 00:15:54.215508 17013 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-02 16:08:20.457826000 Z\n- &1 2019-10-03 16:14:07.394418000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-04 00:50:26.770379247 Z\nsign_in_count:\n- 26\n- 27\n 54 \N 189.186.172.156 e14e64ac-d49e-4250-8991-6f6e943b5692 2019-10-04 00:50:26.780298 17014 23 User \N \N 23 User \N update ---\nunique_session_id:\n- g_asxeTrg3wW-Fxkx9ey\n- dVDyXxiH4t4vh5qR17gT\n 55 \N 189.186.172.156 e14e64ac-d49e-4250-8991-6f6e943b5692 2019-10-04 00:50:26.799521 17015 1189 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 474\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-10-03\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-55\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.172.156 00d87a01-c96e-4d5f-8fdd-78b23a6a1efc 2019-10-04 01:02:32.510877 17016 815 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 3 \N 189.186.172.156 00d87a01-c96e-4d5f-8fdd-78b23a6a1efc 2019-10-04 01:02:32.539318 17017 1189 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.172.156 bd572010-5f20-4bc3-854a-cac02ca1d011 2019-10-04 01:03:17.372869 17018 1642 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 474\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.569E3\nmove_type: '1'\nsale_id: 1189\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-55\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-55 189.186.172.156 bd572010-5f20-4bc3-854a-cac02ca1d011 2019-10-04 01:03:17.397267 17019 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-03 16:14:07.394418000 Z\n- &1 2019-10-04 00:50:26.770379000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-04 01:25:37.965668005 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183127708\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183100535\n mask_addr: 4294967295\nsign_in_count:\n- 27\n- 28\n 56 \N 189.186.66.119 dd27b3ba-b0e2-45c9-a900-755d39e4a515 2019-10-04 01:25:37.974101 17020 23 User \N \N 23 User \N update ---\nunique_session_id:\n- dVDyXxiH4t4vh5qR17gT\n- 7gjDxRoqwghN7aGcSpw8\n 57 \N 189.186.66.119 dd27b3ba-b0e2-45c9-a900-755d39e4a515 2019-10-04 01:25:37.994355 17021 1190 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 473\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-10-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-656\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 14e18776-0766-44c6-ba7d-4a126f9d6b07 2019-10-04 01:28:52.599656 17022 699 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.44.182 14e18776-0766-44c6-ba7d-4a126f9d6b07 2019-10-04 01:28:52.626949 17023 1190 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 584bab09-2a81-4a6c-943e-df19affabca0 2019-10-04 01:29:44.979056 17024 1643 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 473\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 1190\ncardnumber: 6403\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-656\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-656 187.149.44.182 584bab09-2a81-4a6c-943e-df19affabca0 2019-10-04 01:29:45.005414 17025 473 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 473\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2717E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.11E4\ncash_fund: !ruby/object:BigDecimal 18:0.1211E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2311E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 731d009c-e918-4336-b17c-86d44ea5df30 2019-10-04 01:32:34.022491 17026 473 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 731d009c-e918-4336-b17c-86d44ea5df30 2019-10-04 01:32:34.037071 17027 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-02 01:24:23.636151000 Z\n- &1 2019-10-04 00:12:15.696793000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-04 01:33:47.427867591 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183127708\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 43\n- 44\n 91 \N 187.149.44.182 2c7023c8-cba2-46bb-8b8d-2b6d03a7cc8a 2019-10-04 01:33:47.434461 17028 8 User \N \N 8 User \N update ---\nunique_session_id:\n- "-UxoJD4sZFZn1dUzabj1"\n- zC_EsFV6EuWTEeaKrrDD\n 92 \N 187.149.44.182 2c7023c8-cba2-46bb-8b8d-2b6d03a7cc8a 2019-10-04 01:33:47.447798 17029 474 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 475\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.25E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.838E3\nphysical_cash: !ruby/object:BigDecimal 18:0.838E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.44.182 ac37952e-a4b3-4eef-9332-d8f2b6a84c82 2019-10-04 01:34:53.769928 17030 475 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 ac37952e-a4b3-4eef-9332-d8f2b6a84c82 2019-10-04 01:34:53.782301 17031 475 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 474\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.2168E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.11E4\ncash_fund: !ruby/object:BigDecimal 18:0.1205E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2305E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.66.119 75b3bc3a-b404-43f3-9461-dd8c1c016ee4 2019-10-04 02:00:05.490899 17032 474 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.66.119 75b3bc3a-b404-43f3-9461-dd8c1c016ee4 2019-10-04 02:00:05.50664 17033 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-04 00:50:26.770379000 Z\n- &1 2019-10-04 01:25:37.965668000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-04 16:04:33.705066326 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183127708\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183100535\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183100535\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183128707\n mask_addr: 4294967295\nsign_in_count:\n- 28\n- 29\n 58 \N 189.186.176.131 808e9057-fc59-44b8-ba44-86606007625c 2019-10-04 16:04:33.741374 17034 23 User \N \N 23 User \N update ---\nunique_session_id:\n- 7gjDxRoqwghN7aGcSpw8\n- Bdx-Y6C6BztdNfAEqssj\n 59 \N 189.186.176.131 808e9057-fc59-44b8-ba44-86606007625c 2019-10-04 16:04:33.768042 17136 711 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.44.182 a8fc1d42-a0f7-4972-9556-d58014c24800 2019-10-05 17:20:26.619339 17035 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-02 16:29:26.530580000 Z\n- &1 2019-10-03 15:56:47.419951000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-04 16:57:50.321395117 Z\nsign_in_count:\n- 338\n- 339\n 681 \N 187.149.44.182 db603c14-371e-4722-a76a-8b616b3bdbc1 2019-10-04 16:57:50.329756 17036 2 User \N \N 2 User \N update ---\nunique_session_id:\n- H_LW74Myfwr76sZoB_Kk\n- 4YeLfmYsqzhFFCRXqXWt\n 682 \N 187.149.44.182 db603c14-371e-4722-a76a-8b616b3bdbc1 2019-10-04 16:57:50.347088 17037 476 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1205E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1205.0 189.186.176.131 d444b43e-99a4-477a-a466-963a82db3f8f 2019-10-04 17:02:14.99936 17038 1191 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 476\namount: !ruby/object:BigDecimal 18:0.829E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.829E3\nstatus: 0\ndate_sale: 2019-10-04\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-56\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.176.131 daf6ac5e-9c08-4fd0-ae8d-349d9d4b410f 2019-10-04 17:09:32.779727 17039 770 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.176.131 daf6ac5e-9c08-4fd0-ae8d-349d9d4b410f 2019-10-04 17:09:32.808997 17040 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-04 00:12:15.696793000 Z\n- &1 2019-10-04 01:33:47.427867000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-04 17:09:48.527976322 Z\nsign_in_count:\n- 44\n- 45\n 93 \N 187.149.44.182 d0c89f04-534e-437f-aca9-dee931d72f95 2019-10-04 17:09:48.533453 17041 8 User \N \N 8 User \N update ---\nunique_session_id:\n- zC_EsFV6EuWTEeaKrrDD\n- jTxMjugRy-1N1bfDSK6Y\n 94 \N 187.149.44.182 d0c89f04-534e-437f-aca9-dee931d72f95 2019-10-04 17:09:48.54638 17042 1644 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 280\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 808\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '142568798758'\n 1 \N 187.149.44.182 14fcf0fb-8121-4420-b183-f4ab61d8ef64 2019-10-04 17:11:11.495367 17043 1644 CashRegistersMove \N \N 8 User \N update ---\nopen_cash_register_id:\n- 280\n- \n 2 movimiento de efectivo por venta con folio PV1-V-457 187.149.44.182 14fcf0fb-8121-4420-b183-f4ab61d8ef64 2019-10-04 17:11:11.519334 17044 1191 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.176.131 155cdb0a-a1da-4daa-beb4-a7810d51ddfd 2019-10-04 17:19:52.855532 17045 1645 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 476\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.829E3\nmove_type: '1'\nsale_id: 1191\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-56\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-56 189.186.176.131 155cdb0a-a1da-4daa-beb4-a7810d51ddfd 2019-10-04 17:19:52.877205 17046 477 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1211E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1211.0 187.149.44.182 b4cc40c9-3510-4454-9ce8-33d06c1954a5 2019-10-04 18:46:57.317359 17047 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-03 20:18:04.674946000 Z\n- &1 2019-10-04 00:04:57.128824000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-04 20:03:32.180880174 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 696\n- 697\n 1394 \N 187.149.44.182 89d57be0-b87b-446a-8718-6433a0b13a2d 2019-10-04 20:03:32.200352 17048 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6oCMxwRzF86sPxJWNcZ9\n- azguUBMM2kE3cDMN4Wej\n 1395 \N 187.149.44.182 89d57be0-b87b-446a-8718-6433a0b13a2d 2019-10-04 20:03:32.221669 17049 1192 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 476\namount: !ruby/object:BigDecimal 18:0.1548E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1548E4\nstatus: 0\ndate_sale: 2019-10-04\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-57\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.176.131 a67f8bab-0509-4603-94cd-ddf1d4ef71ce 2019-10-04 22:06:19.621213 17050 837 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.176.131 a67f8bab-0509-4603-94cd-ddf1d4ef71ce 2019-10-04 22:06:19.649132 17051 876 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 3 \N 189.186.176.131 a67f8bab-0509-4603-94cd-ddf1d4ef71ce 2019-10-04 22:06:19.68104 17052 1192 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.176.131 d5dcf513-8b60-4339-8e71-4fecc199daaf 2019-10-04 22:07:10.710964 17053 1646 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 476\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.15E4\nmove_type: '1'\nsale_id: 1192\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-57\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-57 189.186.176.131 d5dcf513-8b60-4339-8e71-4fecc199daaf 2019-10-04 22:07:10.733037 17054 1647 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 476\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.48E2\nmove_type: '1'\nsale_id: 1192\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-57\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.48E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-57 189.186.176.131 39b40708-abb3-4e08-9f7d-0afa907e851d 2019-10-04 22:07:23.153503 17055 1648 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 476\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1168\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-49 189.186.176.131 c1474b0b-3409-433a-801c-3e753aefd73b 2019-10-04 22:19:28.558351 17056 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-04 01:33:47.427867000 Z\n- &1 2019-10-04 17:09:48.527976000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-04 22:23:35.500149648 Z\nsign_in_count:\n- 45\n- 46\n 95 \N 187.149.44.182 e6e4e4ce-8b3b-4522-873f-8c2ba6c92442 2019-10-04 22:23:35.506714 17058 478 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.838E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 838.0 187.149.44.182 9de17229-c598-4b9e-baa9-1171956b81a8 2019-10-04 22:23:50.668552 17059 1193 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 478\namount: !ruby/object:BigDecimal 18:0.988E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.988E3\nstatus: 0\ndate_sale: 2019-10-04\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-478\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 8e014ae3-27ab-47de-b3a6-a1eff967a307 2019-10-04 22:24:57.843368 17060 1021 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 3 \N 187.149.44.182 8e014ae3-27ab-47de-b3a6-a1eff967a307 2019-10-04 22:24:57.879999 17061 1003 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.44.182 8e014ae3-27ab-47de-b3a6-a1eff967a307 2019-10-04 22:24:57.924491 17062 1193 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 0bb25d14-b798-4386-8c23-d218b4a686b8 2019-10-04 22:25:14.495096 17063 1649 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 478\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.988E3\nmove_type: '1'\nsale_id: 1193\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-478\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.112E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-478 187.149.44.182 0bb25d14-b798-4386-8c23-d218b4a686b8 2019-10-04 22:25:14.514598 17064 213 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-04\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.44.182 c0eb8e13-a1a3-4c67-8f1a-599762f3e787 2019-10-04 22:28:28.509008 17065 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 24 \N 187.149.44.182 c0eb8e13-a1a3-4c67-8f1a-599762f3e787 2019-10-04 22:28:28.527422 17066 213 Transfer \N \N 8 User \N update --- {}\n 3 Se dio entrada a traspaso de SUO a S BY SUO 187.149.44.182 e1e42446-adbb-4b0a-b78c-ae7899aabf72 2019-10-04 22:28:28.699931 17067 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.12E2\n 25 \N 187.149.44.182 e1e42446-adbb-4b0a-b78c-ae7899aabf72 2019-10-04 22:28:28.714209 17068 1194 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 478\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-10-04\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-479\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 3461fcd9-c737-4471-936e-262ef54bf59c 2019-10-04 22:28:50.906117 17069 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 26 \N 187.149.44.182 3461fcd9-c737-4471-936e-262ef54bf59c 2019-10-04 22:28:50.935881 17070 1194 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 13c9c1e7-13e9-446f-882f-c43c20a8e45b 2019-10-04 22:30:14.519425 17071 1650 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 478\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 1194\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-479\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-479 187.149.44.182 13c9c1e7-13e9-446f-882f-c43c20a8e45b 2019-10-04 22:30:14.538293 17072 1651 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 478\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.199E3\nmove_type: '1'\nsale_id: 1194\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-479\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.199E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-479 187.149.44.182 7e69243c-35cc-467f-9d4e-0bf7b8558953 2019-10-04 22:30:29.128178 17073 1652 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 478\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1194\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-479\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.199E3\nchange: !ruby/object:BigDecimal 18:0.199E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-479 187.149.44.182 f4448189-49a9-447f-8e04-3ef676708591 2019-10-04 22:30:29.243399 17074 725 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.44.182 19a5d2db-0c88-4766-98f5-1213df5281d2 2019-10-04 22:53:01.880288 17075 725 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.44.182 d9ec86d2-c45e-4ac7-ac5b-c11f28b11573 2019-10-04 22:53:06.215588 17076 214 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-10-04\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.44.182 ba31655e-8c39-469d-9a9a-122edd689681 2019-10-04 22:53:07.523517 17077 865 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.44.182 2d7ba077-6435-412b-99ad-735c4f489749 2019-10-04 22:53:53.733332 17078 865 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.44.182 fb401a9b-74ec-4cee-9322-52c1d76ee159 2019-10-04 22:53:56.697735 17079 215 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-10-04\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.44.182 9659d983-b279-436f-bfdc-640afb2d6b18 2019-10-04 22:53:57.578778 17080 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-04 00:04:57.128824000 Z\n- &1 2019-10-04 20:03:32.180880000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-04 23:05:47.953239783 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 697\n- 698\n 1396 \N 187.149.44.182 eb39470b-3144-4275-a6d4-475e606f6db9 2019-10-04 23:05:47.95995 17081 4 User \N \N 4 User \N update ---\nunique_session_id:\n- azguUBMM2kE3cDMN4Wej\n- zWLiJNvmsqUxwuH72es5\n 1397 \N 187.149.44.182 eb39470b-3144-4275-a6d4-475e606f6db9 2019-10-04 23:05:47.975724 17082 1195 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 478\namount: !ruby/object:BigDecimal 18:0.86121E3\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-10-04\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-480\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 717674d6-73b7-4891-8c4f-5698b45f3e48 2019-10-04 23:35:26.949414 17083 431 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 187.149.44.182 717674d6-73b7-4891-8c4f-5698b45f3e48 2019-10-04 23:35:26.974182 17084 1195 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 d5152623-74b4-437f-9668-6da219773865 2019-10-04 23:36:15.83283 17085 1653 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 478\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 1195\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-480\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-480 187.149.44.182 d5152623-74b4-437f-9668-6da219773865 2019-10-04 23:36:15.853274 17086 1196 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 478\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-10-04\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-481\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 603df745-de30-4590-9ff4-da2ae0f9354d 2019-10-04 23:46:59.634578 17087 314 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.44.182 603df745-de30-4590-9ff4-da2ae0f9354d 2019-10-04 23:46:59.663981 17088 1196 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 cae264c4-3cd3-48da-921e-c81c1cd44cab 2019-10-04 23:47:35.835715 17089 1654 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 478\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 1196\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-481\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-481 187.149.44.182 cae264c4-3cd3-48da-921e-c81c1cd44cab 2019-10-04 23:47:35.854691 17090 1197 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 478\namount: !ruby/object:BigDecimal 18:0.198338E4\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2066E4\nstatus: 0\ndate_sale: 2019-10-04\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-482\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 adfa94f9-a016-4831-bf94-cbcae8ee38b7 2019-10-04 23:49:26.722502 17091 1016 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.44.182 adfa94f9-a016-4831-bf94-cbcae8ee38b7 2019-10-04 23:49:26.754908 17092 1021 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 187.149.44.182 adfa94f9-a016-4831-bf94-cbcae8ee38b7 2019-10-04 23:49:26.776552 17093 408 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.44.182 adfa94f9-a016-4831-bf94-cbcae8ee38b7 2019-10-04 23:49:26.798637 17094 722 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.44.182 adfa94f9-a016-4831-bf94-cbcae8ee38b7 2019-10-04 23:49:26.820377 17095 1197 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 84f67cc1-7c6a-4c3e-ab33-381ef8ed2850 2019-10-04 23:49:40.984913 17096 1655 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 478\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2066E4\nmove_type: '1'\nsale_id: 1197\ncardnumber: 1111\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-482\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-482 187.149.44.182 84f67cc1-7c6a-4c3e-ab33-381ef8ed2850 2019-10-04 23:49:41.004121 17097 1198 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 476\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-10-04\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-58\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.176.131 7c778455-d24f-4e84-bb9d-603007de4613 2019-10-05 00:52:09.459248 17098 949 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 189.186.176.131 7c778455-d24f-4e84-bb9d-603007de4613 2019-10-05 00:52:09.488615 17099 1198 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.176.131 f9b477d5-0505-427d-89d0-1cdf5c5e3a90 2019-10-05 00:52:28.062402 17100 1656 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 476\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1198\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-58\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-58 189.186.176.131 f9b477d5-0505-427d-89d0-1cdf5c5e3a90 2019-10-05 00:52:28.083871 17101 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-03 15:56:47.419951000 Z\n- &1 2019-10-04 16:57:50.321395000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-05 01:17:05.230404142 Z\nsign_in_count:\n- 339\n- 340\n 683 \N 187.149.44.182 8ead6f04-a8da-4e52-914a-4775721c3077 2019-10-05 01:17:05.237281 17102 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 4YeLfmYsqzhFFCRXqXWt\n- s7VjvFdH9XykmzoFcRT5\n 684 \N 187.149.44.182 8ead6f04-a8da-4e52-914a-4775721c3077 2019-10-05 01:17:05.252097 17103 476 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 477\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1211E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1211E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 b872dc9a-7651-44ce-8c4f-e736a6c14dbe 2019-10-05 01:18:20.349124 17104 477 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 b872dc9a-7651-44ce-8c4f-e736a6c14dbe 2019-10-05 01:18:20.36237 17137 711 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.44.182 48f7c5c3-c4c8-45ca-8c94-d8ef166cf8ca 2019-10-05 17:20:33.163969 17105 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-09-28 22:37:59.026703000 Z\n- &1 2019-10-03 00:26:03.960812000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-05 01:19:11.260970747 Z\nsign_in_count:\n- 88\n- 89\n 178 \N 187.149.44.182 d76da7e9-557f-4bb0-9e60-5f3832e541a8 2019-10-05 01:19:11.267386 17106 1 User \N \N 1 User \N update ---\nunique_session_id:\n- kVmC8QEPxt-McLVQQxrG\n- fYk5tbqyHfsNtFeFv1iP\n 179 \N 187.149.44.182 d76da7e9-557f-4bb0-9e60-5f3832e541a8 2019-10-05 01:19:11.281247 17107 477 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 478\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.5551E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.2783E4\ncash_fund: !ruby/object:BigDecimal 18:0.104E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3823E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.44.182 32f0944a-c4b0-4dea-9347-32c48fd7cfa7 2019-10-05 01:31:14.166626 17108 478 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 32f0944a-c4b0-4dea-9347-32c48fd7cfa7 2019-10-05 01:31:14.183023 17109 1199 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 476\namount: !ruby/object:BigDecimal 18:0.249E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.249E3\nstatus: 0\ndate_sale: 2019-10-04\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-59\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.176.131 e75188fc-fd2d-4a77-a80e-6f2bf15c7326 2019-10-05 01:55:26.022676 17110 876 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 4 \N 189.186.176.131 e75188fc-fd2d-4a77-a80e-6f2bf15c7326 2019-10-05 01:55:26.053176 17111 1199 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.176.131 83589a56-2ddb-4fe1-b4c2-0438bedba74b 2019-10-05 01:55:54.277813 17112 1657 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 476\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.249E3\nmove_type: '1'\nsale_id: 1199\ncardnumber: 7059\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-59\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-59 189.186.176.131 83589a56-2ddb-4fe1-b4c2-0438bedba74b 2019-10-05 01:55:54.303717 17113 478 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 476\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.3825E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.1253E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2453E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.176.131 e7cd4839-c2c0-4d7d-934c-3d0232153e66 2019-10-05 02:09:16.390848 17114 476 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.176.131 e7cd4839-c2c0-4d7d-934c-3d0232153e66 2019-10-05 02:09:16.409697 17115 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-04 01:25:37.965668000 Z\n- &1 2019-10-04 16:04:33.705066000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-05 16:07:12.411805256 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183100535\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183128707\n mask_addr: 4294967295\nsign_in_count:\n- 29\n- 30\n 60 \N 189.186.176.131 06847e17-ff3d-456b-a80b-a5af81e13f41 2019-10-05 16:07:12.442579 17116 23 User \N \N 23 User \N update ---\nunique_session_id:\n- Bdx-Y6C6BztdNfAEqssj\n- sSwbtY8iTFH6x6sdx5hF\n 61 \N 189.186.176.131 06847e17-ff3d-456b-a80b-a5af81e13f41 2019-10-05 16:07:12.467563 17117 479 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1253E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1253.0 189.186.176.131 7b6edccc-e988-43d1-9826-69574539d569 2019-10-05 16:09:45.199789 17118 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-09-26 23:55:58.460070000 Z\n- &1 2019-09-29 18:09:23.291879000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-05 16:49:05.180819156 Z\nsign_in_count:\n- 6\n- 7\n 14 \N 187.149.44.182 59ee51ff-745e-4b4a-9ffa-751005b718c5 2019-10-05 16:49:05.198181 17119 25 User \N \N 25 User \N update ---\nunique_session_id:\n- LKLy84sqkpK5XqAY5Vqh\n- H5aaZ_F3YkdtvhFTyWDr\n 15 \N 187.149.44.182 59ee51ff-745e-4b4a-9ffa-751005b718c5 2019-10-05 16:49:05.214872 17120 1006 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.44.182 7d8846dc-07f2-4642-a140-804e857e660c 2019-10-05 16:49:49.628956 17121 1006 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.44.182 198b99f5-82d4-46b0-8ed4-3e506635582d 2019-10-05 16:49:52.399539 17122 139 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.44.182 4a5917c2-eb4c-4726-ad27-15b9c88e820d 2019-10-05 16:50:30.462638 17123 139 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.44.182 40dead28-7cc7-47bb-ae9d-f7552633d2c1 2019-10-05 16:50:34.622663 17124 219 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 187.149.44.182 8189fc08-e924-4eaf-b63f-6e82b9cc2240 2019-10-05 16:52:38.233868 17125 219 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.44.182 22da19a6-1a90-439b-a94d-08d95496544d 2019-10-05 16:52:42.396908 17126 525 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.44.182 d4f7005f-e170-464e-b4b7-cf657888aa82 2019-10-05 16:53:13.786152 17127 525 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.44.182 a00c232e-bb75-4551-9cba-2f43234afc00 2019-10-05 16:53:16.895519 17128 156 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.44.182 85594b7f-955d-4571-a301-2e5a7fed9cee 2019-10-05 16:58:14.538331 17129 156 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.44.182 d68c250b-18e4-4756-807d-0f168a56c600 2019-10-05 16:58:19.084032 17130 188 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.44.182 54d8cbcf-3e58-4dc0-a7f0-7912a1bbfc9f 2019-10-05 17:10:16.47248 17131 188 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.44.182 f314dc63-84f3-4f85-9dba-84117cf14f37 2019-10-05 17:10:19.821032 17132 691 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.44.182 da4016cb-81bc-4775-8b86-ecd27541b5a0 2019-10-05 17:10:29.514217 30846 860 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 aa462f7c-48fc-413d-b0be-4e3029cf6179 2020-03-01 02:37:25.435633 17138 19 User \N \N 19 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-10-05 17:26:12.012230306 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 3 \N 187.149.44.182 cd71da75-1cb7-4b27-b5e9-39d0abdd12d8 2019-10-05 17:26:12.019332 17139 19 User \N \N 19 User \N update ---\nunique_session_id:\n- \n- wNh3TrVXsVsW2VvWZA8x\n 4 \N 187.149.44.182 cd71da75-1cb7-4b27-b5e9-39d0abdd12d8 2019-10-05 17:26:12.052224 17140 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-04 20:03:32.180880000 Z\n- &1 2019-10-04 23:05:47.953239000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-05 17:26:30.731640295 Z\nsign_in_count:\n- 698\n- 699\n 1398 \N 187.149.44.182 8498adaa-3a21-42ad-a805-37f53073e6b6 2019-10-05 17:26:30.737241 17141 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zWLiJNvmsqUxwuH72es5\n- u1En-gcEC9_TWCbExsFz\n 1399 \N 187.149.44.182 8498adaa-3a21-42ad-a805-37f53073e6b6 2019-10-05 17:26:30.751656 17142 724 Product \N \N 4 User \N create ---\nsku: FAL-724\nname: F-0014\ndescription: FALDA BLUE B LENTEJUELAS DE COLORES Y PLATEADAS\nprice_base: !ruby/object:BigDecimal 18:0.3445E3\nprice_sale: !ruby/object:BigDecimal 18:0.689E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-724 fue creado. 187.149.44.182 0f17d1dd-4740-421e-93c3-60563940f800 2019-10-05 17:34:42.3011 17143 724 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000724'\n 2 \N 187.149.44.182 0f17d1dd-4740-421e-93c3-60563940f800 2019-10-05 17:34:42.353584 17144 1039 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 724\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 0f17d1dd-4740-421e-93c3-60563940f800 2019-10-05 17:34:42.381259 17145 725 Product \N \N 4 User \N create ---\nsku: FAL-725\nname: F-0025\ndescription: "FALDA THINKABLE GAMUSA COLOR CAFÉ \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.2645E3\nprice_sale: !ruby/object:BigDecimal 18:0.529E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 1\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-725 fue creado. 187.149.44.182 98ad7f0f-af6d-47d5-bd4e-704fc0504f65 2019-10-05 17:35:28.011868 17146 725 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000725'\n 2 \N 187.149.44.182 98ad7f0f-af6d-47d5-bd4e-704fc0504f65 2019-10-05 17:35:28.03744 17147 1040 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 725\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 98ad7f0f-af6d-47d5-bd4e-704fc0504f65 2019-10-05 17:35:28.064113 17148 726 Product \N \N 4 User \N create ---\nsku: FAL-726\nname: FAL-0011\ndescription: FALDA LOLA LENTEJUELA\nprice_base: !ruby/object:BigDecimal 18:0.2645E3\nprice_sale: !ruby/object:BigDecimal 18:0.529E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-726 fue creado. 187.149.44.182 1bfcda6e-01f3-4550-a45f-41fa2ce731d0 2019-10-05 17:36:07.448655 17149 726 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000726'\n 2 \N 187.149.44.182 1bfcda6e-01f3-4550-a45f-41fa2ce731d0 2019-10-05 17:36:07.474627 17150 1041 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 726\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 1bfcda6e-01f3-4550-a45f-41fa2ce731d0 2019-10-05 17:36:07.511146 17151 727 Product \N \N 4 User \N create ---\nsku: FAL-727\nname: F-0017\ndescription: "FALDA DO+BE GAMUZA ROSA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3495E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-727 fue creado. 187.149.44.182 bcbfbd18-44da-4ef6-9ac6-1e83a2ad3097 2019-10-05 17:37:00.607151 17152 727 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000727'\n 2 \N 187.149.44.182 bcbfbd18-44da-4ef6-9ac6-1e83a2ad3097 2019-10-05 17:37:00.63133 17153 1042 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 727\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 bcbfbd18-44da-4ef6-9ac6-1e83a2ad3097 2019-10-05 17:37:00.657852 17154 144 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-42\namount: !ruby/object:BigDecimal 18:0.2601E4\ntax: !ruby/object:BigDecimal 18:0.4232E2\ntotal: !ruby/object:BigDecimal 18:0.264332E4\nobservations: ''\npurchase_date: 2019-10-05\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-42 por $ 2643.32 MXN creada. 187.149.44.182 021f73c8-2684-44bc-a989-84868336980e 2019-10-05 17:37:06.654807 17155 1039 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.44.182 021f73c8-2684-44bc-a989-84868336980e 2019-10-05 17:37:06.674525 17156 1040 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.44.182 021f73c8-2684-44bc-a989-84868336980e 2019-10-05 17:37:06.703846 17157 1041 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.44.182 021f73c8-2684-44bc-a989-84868336980e 2019-10-05 17:37:06.72479 17158 1042 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.44.182 021f73c8-2684-44bc-a989-84868336980e 2019-10-05 17:37:06.745194 17159 5 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 187.149.44.182 d64df934-96c6-413c-a711-30042e949d30 2019-10-05 17:52:23.08282 17160 5 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.44.182 053f6d98-7393-4298-b7ea-158ee6a41f89 2019-10-05 17:52:37.405778 32005 1082 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1082'\n is_parent: false\n sku: ACC-1082\n name: DIA-0061\n description: DIADEMAS PERLAS Y PIEDRA ROSA Y NEGRA\n price_base: '66.0'\n price_sale: '139.0'\n img_product: DIA61.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001082'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-01 02:24:36.664497'\n updated_at: &12 2020-03-16 21:02:41.984785540 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1082'\n sku: ACC-1082\n name: DIA-0061\n description: DIADEMAS PERLAS Y PIEDRA ROSA Y NEGRA\n price_base: '66.00'\n price_sale: '139.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-01 02:24:36.664497'\n updated_at: '2020-03-01 02:24:36.727758'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001082'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1082'\n type: *3\n value: 1082\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1082\n type: *7\n value: ACC-1082\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0061\n type: *8\n value: DIA-0061\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMAS PERLAS Y PIEDRA ROSA Y NEGRA\n type: *6\n value: DIADEMAS PERLAS Y PIEDRA ROSA Y NEGRA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '66.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.66E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '139.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.139E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DIA61.jpg\n type: *2\n value: DIA61.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001082'\n type: *2\n value: '0001082'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-01 02:24:36.664497'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- DIA61.jpg\n 3 El producto ACC-1082 fue modificado. 189.186.145.62 352527fe-b16b-4a47-a597-96872e6fdab8 2020-03-16 21:02:42.028317 17161 184 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.44.182 eda9189c-b48e-4ac3-b322-0f7424a076b5 2019-10-05 17:53:57.883588 17162 184 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.44.182 d7e27975-a098-4315-bf75-7a9d4c2c6baa 2019-10-05 17:54:01.599639 17163 216 Transfer \N \N 25 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-10-05\nuser_id: 25\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO a Almacen central creado. 187.149.44.182 75e54bf4-04fb-4e74-b68f-1e86573e3ac3 2019-10-05 18:01:51.579101 17164 680 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.44.182 33f9d9dd-3637-4524-8f5f-b6a810911240 2019-10-05 18:02:20.158988 17165 680 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.44.182 b203da34-1ed9-4889-bb88-7d06193a1e7a 2019-10-05 18:02:28.190882 17166 6 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.44.182 07fd08e4-3da4-4cac-8822-79b7e76a6fd4 2019-10-05 18:04:10.042275 17167 151 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.44.182 5578abeb-4d5f-4131-9ca5-61493f0d65e0 2019-10-05 18:04:20.190602 17168 687 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.44.182 3f438444-0007-45f5-b02e-fcdefa07dff9 2019-10-05 18:04:33.805753 17169 687 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.44.182 191da02b-e553-4ffa-9a99-a26a37da8a69 2019-10-05 18:04:45.90666 17170 87 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.44.182 0cc5926f-ee65-46aa-b3fe-664ea31c4a0e 2019-10-05 18:05:05.026766 17171 87 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.44.182 6822c92d-33a0-4404-9fc3-d4958deaadad 2019-10-05 18:05:14.474341 17172 218 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.44.182 8f8b0a05-c5e0-4e31-9fd3-9b3a50805a9e 2019-10-05 18:05:26.597301 17173 570 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.44.182 5e336af1-a7fb-466a-a005-e070914d2896 2019-10-05 18:05:41.320405 17174 570 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.44.182 0215a7ae-9d1b-4eb4-b729-1befb5f9124e 2019-10-05 18:05:44.453669 17175 671 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.44.182 9b0a8463-8d78-4a66-9ba7-ef8191c0b332 2019-10-05 18:07:02.789948 17176 671 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.44.182 ebf16001-16ef-446c-a3d1-dff890680c48 2019-10-05 18:07:10.346712 17177 143 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.44.182 4053b1d8-1dbb-46b0-932a-3624dcc2f7de 2019-10-05 18:07:17.019451 17178 90 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.44.182 b3142e59-1566-42af-8489-8726cc0fe62d 2019-10-05 18:08:20.48749 17179 90 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.44.182 5fcab767-bab0-48d5-9440-837e5fa004ed 2019-10-05 18:08:24.217008 17180 107 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.44.182 4fdfed75-233e-4ceb-9496-07b01a0909d8 2019-10-05 18:08:36.364939 17181 107 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.44.182 875bbe9c-bd05-4303-8369-404257686a3d 2019-10-05 18:08:40.773012 17182 221 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 187.149.44.182 50b169ee-4ae5-41c5-bf8c-d8bd72e4a62b 2019-10-05 18:09:02.704254 17183 221 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.44.182 09a4af11-2933-4098-b709-6299f7e4bec7 2019-10-05 18:09:06.480939 17184 217 Transfer \N \N 25 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-10-05\nuser_id: 25\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.44.182 f5ac0494-00be-4aa7-9f52-9a3bf6266c40 2019-10-05 18:20:24.980845 17185 202 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.44.182 a99e9d9b-b5d7-46f4-8763-966da2588a6a 2019-10-05 18:28:31.0976 17186 202 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.44.182 a02169c6-3f7d-47f2-b64d-aa01448dc3f9 2019-10-05 18:32:16.944231 17187 218 Transfer \N \N 25 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-10-05\nuser_id: 25\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.44.182 7908399b-9cdf-4281-91a7-c86bbdfce732 2019-10-05 18:32:17.77196 17188 531 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.44.182 486f50bb-5337-4eda-bf4e-0433f3056f7a 2019-10-05 18:32:37.267537 17189 219 Transfer \N \N 25 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-10-05\nuser_id: 25\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.44.182 9e4de835-ba09-4653-bc01-059b00f44801 2019-10-05 18:32:39.772766 17190 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-04 16:57:50.321395000 Z\n- &1 2019-10-05 01:17:05.230404000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-05 18:34:31.692332907 Z\nsign_in_count:\n- 340\n- 341\n 685 \N 187.149.44.182 cdde2a66-60d3-4f97-9208-e40410808714 2019-10-05 18:34:31.698102 17191 2 User \N \N 2 User \N update ---\nunique_session_id:\n- s7VjvFdH9XykmzoFcRT5\n- P24pXXKovKeUHBsRS_Pg\n 686 \N 187.149.44.182 cdde2a66-60d3-4f97-9208-e40410808714 2019-10-05 18:34:31.710216 17192 480 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1211E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1211.0 187.149.44.182 879fac03-a185-4d9c-a946-9ffab2366f6b 2019-10-05 18:34:46.782203 17193 220 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-10-05\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.44.182 55874b4a-caf0-4659-9570-0158c6b2acd7 2019-10-05 18:35:18.612273 17194 605 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.44.182 2f66ea80-53de-4f48-b75c-35477cf7d0b9 2019-10-05 19:04:06.895006 17195 743 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.44.182 e3a35b40-6195-4db3-8864-0b2ef6cfe003 2019-10-05 19:04:14.463734 17196 743 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.44.182 29367734-1923-4c10-b222-e4a4f3f3e907 2019-10-05 19:04:19.319816 17197 704 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.44.182 af7edbd3-e62c-40f3-af7e-3de872c15b11 2019-10-05 19:04:30.837391 17198 704 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.44.182 84fdfe02-6c28-406e-adcf-bb3a4d4a8878 2019-10-05 19:04:34.862675 17199 221 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-10-05\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.44.182 4f7d2ea7-dfe5-4bd9-8815-ce5e20e2a62a 2019-10-05 19:04:42.377471 17200 214 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-05\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.44.182 cef95b23-e4a8-4527-8e45-13e99959591f 2019-10-05 19:05:11.974067 17201 1043 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 608\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 cef95b23-e4a8-4527-8e45-13e99959591f 2019-10-05 19:05:11.992368 17202 215 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-05\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.44.182 2222ff89-5922-43dd-a0ac-bcf6a6d9dd91 2019-10-05 19:05:19.851407 17203 1044 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 695\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 2222ff89-5922-43dd-a0ac-bcf6a6d9dd91 2019-10-05 19:05:19.872727 17204 220 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-05\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.44.182 1f208c5e-7245-43bb-8582-9001378d7b66 2019-10-05 19:05:31.320898 17205 1045 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 676\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 1f208c5e-7245-43bb-8582-9001378d7b66 2019-10-05 19:05:31.342098 17206 1046 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 715\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 1f208c5e-7245-43bb-8582-9001378d7b66 2019-10-05 19:05:31.361402 17207 728 Product \N \N 4 User \N create ---\nsku: FAL-728\nname: F-0027\ndescription: "FALDA CQ&CQ NEGRA TERCIOPELO \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3995E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-728 fue creado. 187.149.44.182 bd885cf9-15a7-433b-8857-65ce6210490d 2019-10-05 19:07:34.954446 17208 728 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000728'\n 2 \N 187.149.44.182 bd885cf9-15a7-433b-8857-65ce6210490d 2019-10-05 19:07:34.98092 17209 1047 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 728\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 bd885cf9-15a7-433b-8857-65ce6210490d 2019-10-05 19:07:35.006869 17210 145 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-43\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nobservations: ''\npurchase_date: 2019-10-05\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-43 por $ 799.0 MXN creada. 187.149.44.182 ef34826c-b534-4760-8704-585d2b4bc1f3 2019-10-05 19:15:22.030558 17211 1047 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.44.182 ef34826c-b534-4760-8704-585d2b4bc1f3 2019-10-05 19:15:22.052943 17212 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-04 17:09:48.527976000 Z\n- &1 2019-10-04 22:23:35.500149000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-05 20:41:42.964731296 Z\nsign_in_count:\n- 46\n- 47\n 97 \N 187.149.44.182 56929a85-8eba-4588-89c8-6516663ae180 2019-10-05 20:41:42.993328 17213 8 User \N \N 8 User \N update ---\nunique_session_id:\n- PBEQqsbeDR5SZbayhMrk\n- HY23DdA_QYtB-STy-cyC\n 98 \N 187.149.44.182 56929a85-8eba-4588-89c8-6516663ae180 2019-10-05 20:41:43.013465 17214 481 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.104E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1040.0 187.149.44.182 591e75e1-5416-47f9-aa94-c1a5dccfb694 2019-10-05 20:42:56.967416 17215 1200 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 481\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-10-05\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-483\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 691300ef-ca48-41c1-a254-8abd5089cfc4 2019-10-05 20:43:50.016504 17216 801 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.44.182 691300ef-ca48-41c1-a254-8abd5089cfc4 2019-10-05 20:43:50.044094 17217 1200 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 c4319b66-cd63-4440-8d27-f050579be923 2019-10-05 20:44:10.71985 17244 655 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.44.182 41646839-46c4-440b-b8c2-8cd10aaab63d 2019-10-05 21:35:32.055568 17218 1658 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 481\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 1200\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-483\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-483 187.149.44.182 c4319b66-cd63-4440-8d27-f050579be923 2019-10-05 20:44:10.74294 17219 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-04 23:05:47.953239000 Z\n- &1 2019-10-05 17:26:30.731640000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-05 20:49:41.383013513 Z\nsign_in_count:\n- 699\n- 700\n 1400 \N 187.149.44.182 9ff6ce1b-568e-490f-9c42-4418d98ee734 2019-10-05 20:49:41.388491 17220 4 User \N \N 4 User \N update ---\nunique_session_id:\n- u1En-gcEC9_TWCbExsFz\n- Ri1A4ZC7WKzggPe3ZN7W\n 1401 \N 187.149.44.182 9ff6ce1b-568e-490f-9c42-4418d98ee734 2019-10-05 20:49:41.401765 17221 221 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-05\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.44.182 11942bf8-a451-4249-a566-c5dbfb78e858 2019-10-05 21:04:51.596378 17222 718 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 187.149.44.182 11942bf8-a451-4249-a566-c5dbfb78e858 2019-10-05 21:04:51.626058 17223 1009 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.44.182 11942bf8-a451-4249-a566-c5dbfb78e858 2019-10-05 21:04:51.643696 17224 1048 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 552\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 11942bf8-a451-4249-a566-c5dbfb78e858 2019-10-05 21:04:51.664538 17225 219 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-05\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.44.182 241dcdf3-b293-46e0-8909-ad857a2e61d4 2019-10-05 21:04:57.808247 17226 1049 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 504\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 241dcdf3-b293-46e0-8909-ad857a2e61d4 2019-10-05 21:04:57.827204 17227 217 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-05\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.44.182 b82ec8aa-986e-4631-a861-812092271bb7 2019-10-05 21:05:08.85151 17228 1050 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 223\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 b82ec8aa-986e-4631-a861-812092271bb7 2019-10-05 21:05:08.873929 17229 1051 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 109\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 b82ec8aa-986e-4631-a861-812092271bb7 2019-10-05 21:05:08.893921 17230 543 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.44.182 b82ec8aa-986e-4631-a861-812092271bb7 2019-10-05 21:05:08.911681 17231 544 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.44.182 b82ec8aa-986e-4631-a861-812092271bb7 2019-10-05 21:05:08.928182 17232 433 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.44.182 b82ec8aa-986e-4631-a861-812092271bb7 2019-10-05 21:05:08.944495 17233 425 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.44.182 b82ec8aa-986e-4631-a861-812092271bb7 2019-10-05 21:05:08.960378 17234 1052 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 220\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 b82ec8aa-986e-4631-a861-812092271bb7 2019-10-05 21:05:08.979036 17235 1053 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 89\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 b82ec8aa-986e-4631-a861-812092271bb7 2019-10-05 21:05:08.997917 17236 318 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.44.182 b82ec8aa-986e-4631-a861-812092271bb7 2019-10-05 21:05:09.013884 17237 1054 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 153\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 b82ec8aa-986e-4631-a861-812092271bb7 2019-10-05 21:05:09.032317 17238 678 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.44.182 b82ec8aa-986e-4631-a861-812092271bb7 2019-10-05 21:05:09.04813 17239 396 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 187.149.44.182 b82ec8aa-986e-4631-a861-812092271bb7 2019-10-05 21:05:09.063944 17240 1201 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 481\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2019-10-05\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-484\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 eb3c653b-c481-4626-a6f3-77fff1c8f476 2019-10-05 21:09:22.001547 17241 1009 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.44.182 eb3c653b-c481-4626-a6f3-77fff1c8f476 2019-10-05 21:09:22.032404 17242 1201 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 f2a4fd98-a8bf-4bfe-9fc4-70c9244482a8 2019-10-05 21:09:43.329371 17243 1659 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 481\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.489E3\nmove_type: '1'\nsale_id: 1201\ncardnumber: 6963\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-484\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-484 187.149.44.182 f2a4fd98-a8bf-4bfe-9fc4-70c9244482a8 2019-10-05 21:09:43.358549 32006 1064 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1064'\n is_parent: false\n sku: ACC-1064\n name: DIA-0055\n description: DIADEMA ROSA PIEDRAS\n price_base: '247.0'\n price_sale: '494.0'\n img_product: DIA55.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001064'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-01 01:52:47.281658'\n updated_at: &12 2020-03-16 21:03:22.132978783 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1064'\n sku: ACC-1064\n name: DIA-0055\n description: DIADEMA ROSA PIEDRAS\n price_base: '247.00'\n price_sale: '494.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-01 01:52:47.281658'\n updated_at: '2020-03-01 01:52:47.326282'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001064'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1064'\n type: *3\n value: 1064\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1064\n type: *7\n value: ACC-1064\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0055\n type: *8\n value: DIA-0055\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMA ROSA PIEDRAS\n type: *6\n value: DIADEMA ROSA PIEDRAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '247.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.247E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '494.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.494E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DIA55.jpg\n type: *2\n value: DIA55.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001064'\n type: *2\n value: '0001064'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-01 01:52:47.281658'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- DIA55.jpg\n 3 El producto ACC-1064 fue modificado. 189.186.145.62 a9eae866-8738-4255-ae4d-fc63dd8e8f31 2020-03-16 21:03:22.186032 17245 655 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.44.182 6fdb3ed8-eb96-484b-84fa-2c23cc56c6d2 2019-10-05 21:35:36.195605 17246 655 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.44.182 23bb37e4-4cef-4c3b-a923-296c2f472763 2019-10-05 21:35:41.158 17247 655 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.44.182 cb1f5987-6c82-4f8f-b9de-9b83b680f48f 2019-10-05 21:35:43.891339 17248 758 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.44.182 7ca07006-42d7-40c4-96ce-7200ed1e8330 2019-10-05 21:37:52.687911 17249 758 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.44.182 39a55875-f440-4c77-97a6-73085ec8130e 2019-10-05 21:37:58.170644 17250 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-05 17:26:30.731640000 Z\n- &1 2019-10-05 20:49:41.383013000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-05 21:52:33.843260851 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934378\n mask_addr: 4294967295\nsign_in_count:\n- 700\n- 701\n 1402 \N 200.68.135.170 9ecffd43-fa74-4cf2-8bf4-e65356c7c884 2019-10-05 21:52:33.852093 17251 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Ri1A4ZC7WKzggPe3ZN7W\n- 4rEtyvQwCeA3WQzKtt3b\n 1403 \N 200.68.135.170 9ecffd43-fa74-4cf2-8bf4-e65356c7c884 2019-10-05 21:52:33.869069 17252 1202 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 481\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2019-10-05\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-485\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 ba971efa-6f5f-4ca3-8f8f-0040f3e7c61b 2019-10-05 22:11:32.548215 17253 860 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.44.182 ba971efa-6f5f-4ca3-8f8f-0040f3e7c61b 2019-10-05 22:11:32.575305 17254 1202 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 5d9c2902-d694-4b07-ad90-80e73d90b376 2019-10-05 22:12:13.102388 17255 1660 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 481\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.789E3\nmove_type: '1'\nsale_id: 1202\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-485\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.211E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-485 187.149.44.182 5d9c2902-d694-4b07-ad90-80e73d90b376 2019-10-05 22:12:13.12424 17256 1203 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 480\namount: !ruby/object:BigDecimal 18:0.94741E3\ntax: !ruby/object:BigDecimal 18:0.15159E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-10-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-657\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 7b8abaf1-564c-46ad-a910-974d0ff1aeb6 2019-10-05 22:22:02.797278 17257 833 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.44.182 7b8abaf1-564c-46ad-a910-974d0ff1aeb6 2019-10-05 22:22:02.829822 17258 1203 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 0022fdc6-4151-4cc8-9441-5d288b767c72 2019-10-05 22:22:20.973809 17259 1661 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 480\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 1203\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-657\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-657 187.149.44.182 0022fdc6-4151-4cc8-9441-5d288b767c72 2019-10-05 22:22:20.996477 17260 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-10-03 00:26:03.960812000 Z\n- &1 2019-10-05 01:19:11.260970000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-05 22:54:46.197051071 Z\nsign_in_count:\n- 89\n- 90\n 180 \N 187.149.44.182 9d01dafb-3bb3-4af8-85e2-379114e037e1 2019-10-05 22:54:46.205526 17261 1 User \N \N 1 User \N update ---\nunique_session_id:\n- fYk5tbqyHfsNtFeFv1iP\n- egdeE6--y6eAxk4xy5Hp\n 181 \N 187.149.44.182 9d01dafb-3bb3-4af8-85e2-379114e037e1 2019-10-05 22:54:46.221304 17262 194 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 480\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nstatus: 1\nobservations: sueldo rocio\nexpense_date: 2019-10-05\nexpense_code: PV1-E-148\n 1 Egreso por 1328.0 registrado 187.149.44.182 0ab629b4-983d-4eae-95af-45fbdafb044a 2019-10-05 23:10:25.169256 17263 1662 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 480\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 194\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.44.182 0ab629b4-983d-4eae-95af-45fbdafb044a 2019-10-05 23:10:25.1976 17264 1663 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 48\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 180\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.44.182 2978b392-3e53-49cc-b6f4-06c748a0b76d 2019-10-05 23:10:50.442328 17265 1663 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 48\n- 480\n 2 movimiento de efectivo por venta con folio PV2-V-76 187.149.44.182 2978b392-3e53-49cc-b6f4-06c748a0b76d 2019-10-05 23:10:50.463476 17266 191 Customer \N \N 2 User \N create ---\nnick_name: MARCELA NUÑEZ\nphone: "(667) 451-8176"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARCELA NUÑEZ fue registrado. 187.149.44.182 1a5cff1a-84cf-4543-a7b3-1c30309f2941 2019-10-05 23:17:56.81363 17267 1204 Sale \N \N 2 User \N create ---\ncustomer_id: 191\nuser_id: 2\nopen_cash_register_id: 480\namount: !ruby/object:BigDecimal 18:0.104469E4\ntax: !ruby/object:BigDecimal 18:0.6331E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1108E4\nstatus: 0\ndate_sale: 2019-10-05\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-658\nexpiration_date: 2019-11-09\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 9cf338cc-1844-4eba-91ea-c971b7b39898 2019-10-05 23:18:22.827018 17268 122 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.44.182 9cf338cc-1844-4eba-91ea-c971b7b39898 2019-10-05 23:18:22.850821 17269 701 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.44.182 9cf338cc-1844-4eba-91ea-c971b7b39898 2019-10-05 23:18:22.872767 17270 1664 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 480\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 1204\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-658\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-658 187.149.44.182 b8d920f5-0efc-45b6-8181-811e47b1dcbf 2019-10-05 23:18:29.593567 17271 1204 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.44.182 23f894c9-1dd7-4fab-a95f-0e20a8b074fc 2019-10-05 23:18:32.690763 17272 729 Product \N \N 2 User \N create ---\nsku: FAL-729\nname: F-0026\ndescription: 'FALDA DE GAMUZA CON OLAN NEGRA CQBYCQ '\nprice_base: !ruby/object:BigDecimal 18:0.3E3\nprice_sale: !ruby/object:BigDecimal 18:0.769E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-729 fue creado. 187.149.44.182 f7b6d26b-0474-4e5f-8b90-aca5b1c06bb5 2019-10-05 23:52:43.788349 17273 729 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000729'\n 2 \N 187.149.44.182 f7b6d26b-0474-4e5f-8b90-aca5b1c06bb5 2019-10-05 23:52:43.819256 17274 1055 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 729\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 f7b6d26b-0474-4e5f-8b90-aca5b1c06bb5 2019-10-05 23:52:43.848256 17275 192 Customer \N \N 23 User \N create ---\nnick_name: LUPITA MARTINEZ\nphone: "(667) 308-1810"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LUPITA MARTINEZ fue registrado. 189.186.176.131 985dab7d-8db1-46f9-864f-50401cd845e3 2019-10-05 23:52:47.812341 17276 1665 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 480\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 1065\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-602 187.149.44.182 655e656b-dd19-4ad7-9ee0-3086d290c563 2019-10-05 23:54:10.578354 17277 1065 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.44.182 09218c6b-0239-4878-9638-edec5dc032cd 2019-10-05 23:54:11.690711 17278 1205 Sale \N \N 2 User \N create ---\ncustomer_id: 62\nuser_id: 2\nopen_cash_register_id: 480\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2019-10-05\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-659\nexpiration_date: 2019-11-09\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 e90d321c-7c7f-4dd5-9203-9a41d803d684 2019-10-05 23:55:48.564528 17279 1037 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.44.182 e90d321c-7c7f-4dd5-9203-9a41d803d684 2019-10-05 23:55:48.591439 17280 1666 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 480\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 1205\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-659\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-659 187.149.44.182 0632db7b-8dc3-44f4-836d-1f787b780cd1 2019-10-05 23:56:00.203585 17281 1205 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.44.182 7ed797ef-fe36-490b-8d84-bc329c6b46e1 2019-10-05 23:56:20.951068 17282 862 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.44.182 a72e66f1-11e3-4966-9065-d8dcfc8e28a5 2019-10-05 23:57:32.772787 17283 862 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.44.182 8b943443-c6ef-4110-b071-640678dad377 2019-10-05 23:57:38.534271 17284 1206 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 479\namount: !ruby/object:BigDecimal 18:0.759E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2019-10-05\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-60\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.176.131 c63aae35-0575-4dc8-af8a-ccfc90776930 2019-10-05 23:59:00.074666 17285 822 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.176.131 c63aae35-0575-4dc8-af8a-ccfc90776930 2019-10-05 23:59:00.103439 17286 1206 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.176.131 d2443668-dc9c-4732-b82c-b43cd776ad7b 2019-10-05 23:59:04.184183 17287 1667 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 479\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.759E3\nmove_type: '1'\nsale_id: 1206\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-60\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.241E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-60 189.186.176.131 d2443668-dc9c-4732-b82c-b43cd776ad7b 2019-10-05 23:59:04.209741 17288 730 Product \N \N 2 User \N create ---\nsku: SHO-730\nname: F-0031\ndescription: SHORT A CUADROS JEALOUS TOMATO\nprice_base: !ruby/object:BigDecimal 18:0.28E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 2\nproduct_service_key: '01010101'\n 1 El producto SHO-730 fue creado. 187.149.44.182 a4c036eb-55df-4c75-8814-65fe95fdff6d 2019-10-05 23:59:52.281864 17289 730 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000730'\n 2 \N 187.149.44.182 a4c036eb-55df-4c75-8814-65fe95fdff6d 2019-10-05 23:59:52.310214 17290 1056 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 730\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 a4c036eb-55df-4c75-8814-65fe95fdff6d 2019-10-05 23:59:52.339412 17291 146 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-81\namount: !ruby/object:BigDecimal 18:0.146E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.146E4\nobservations: ''\npurchase_date: 2019-10-05\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-81 por $ 1460.0 MXN creada. 187.149.44.182 9cefd98a-283e-4f1a-a10c-9cd4817dc997 2019-10-06 00:02:28.671077 17292 1055 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.44.182 9cefd98a-283e-4f1a-a10c-9cd4817dc997 2019-10-06 00:02:28.69403 17293 1056 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.44.182 9cefd98a-283e-4f1a-a10c-9cd4817dc997 2019-10-06 00:02:28.715905 17294 1207 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 480\namount: !ruby/object:BigDecimal 18:0.1468E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1468E4\nstatus: 0\ndate_sale: 2019-10-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-660\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 d22d02fb-5088-4d8d-908d-c17b9748ac13 2019-10-06 00:03:09.64962 17295 1055 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.44.182 d22d02fb-5088-4d8d-908d-c17b9748ac13 2019-10-06 00:03:09.674396 17296 1056 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.44.182 d22d02fb-5088-4d8d-908d-c17b9748ac13 2019-10-06 00:03:09.695622 17297 1207 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 51b49b12-1dd7-4270-86f5-521aa3f01d8d 2019-10-06 00:03:35.883893 17298 1668 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 480\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1468E4\nmove_type: '1'\nsale_id: 1207\ncardnumber: 2102\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-660\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-660 187.149.44.182 51b49b12-1dd7-4270-86f5-521aa3f01d8d 2019-10-06 00:03:35.905775 17299 752 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.44.182 95315b33-cfc2-40da-88a5-d74f1ea09ed2 2019-10-06 00:07:58.551835 17300 752 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.44.182 55574ca8-a79d-4851-b26d-fef1279a4997 2019-10-06 00:08:01.426955 17301 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-05 20:49:41.383013000 Z\n- &1 2019-10-05 21:52:33.843260000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-06 00:09:43.115901688 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934378\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934378\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 701\n- 702\n 1404 \N 187.149.44.182 ffb7aaf2-263d-42fc-ab8c-0eae05605192 2019-10-06 00:09:43.122852 17302 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4rEtyvQwCeA3WQzKtt3b\n- 8FnTNg2_AJYiw24axxFB\n 1405 \N 187.149.44.182 ffb7aaf2-263d-42fc-ab8c-0eae05605192 2019-10-06 00:09:43.137762 17303 399 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 187.149.44.182 83ba4178-9d6a-4434-9e1c-e0ea25fb95a2 2019-10-06 00:09:58.859484 17304 399 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.44.182 2cb04175-a57c-4948-bc51-e7fe25d9ff7a 2019-10-06 00:10:17.029518 17305 679 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.44.182 5aa597a7-95d3-4dbf-8abe-27d04af8241d 2019-10-06 00:10:53.918683 17306 679 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.44.182 87459796-9b17-4089-b556-7dc509c85ac5 2019-10-06 00:11:02.610915 17307 482 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.44.182 903e4dfe-5033-4baf-8e31-c85d98de1264 2019-10-06 00:11:18.455565 17308 482 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.44.182 9ac89561-8a48-4cb5-a6b6-4542023c4c16 2019-10-06 00:11:22.138887 17309 406 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 3 \N 187.149.44.182 e38803bf-984c-4523-ac38-d19b1c7d64f1 2019-10-06 00:11:43.802563 17310 406 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.44.182 98831b6f-1689-41a0-8987-f3f77d3f150f 2019-10-06 00:11:47.419959 17311 595 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 187.149.44.182 39a36c37-24a1-4128-b582-c6c380b87e38 2019-10-06 00:12:02.619539 17312 595 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.44.182 c95c7792-4d45-4e13-ba52-92af278a1e5c 2019-10-06 00:12:09.726738 17313 593 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 8 \N 187.149.44.182 ff37c98a-a079-4886-a838-78efed6bbbf9 2019-10-06 00:12:19.81393 17314 593 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.44.182 cf15cfb8-243d-4f3f-be7c-e1206b8bf5d0 2019-10-06 00:12:24.025598 17315 512 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.44.182 83e8d30f-f19d-4cfc-bd18-156bdd3745e2 2019-10-06 00:12:34.14489 17316 512 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.44.182 ef9b941a-8691-4355-9706-5d2c673b468e 2019-10-06 00:12:37.763622 17317 222 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-10-05\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de S BY SUO a Almacen central creado. 187.149.44.182 cce91213-29f0-4c55-adce-f9300fe6dd8a 2019-10-06 00:12:40.443745 17341 479 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 481\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.1927E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.1109E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1809E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.44.182 a81c8e7d-828f-4108-8049-a1042ad0eb70 2019-10-06 01:31:12.197399 17318 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-05 21:52:33.843260000 Z\n- &1 2019-10-06 00:09:43.115901000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-06 00:12:56.308983002 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934378\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938478\n mask_addr: 4294967295\nsign_in_count:\n- 702\n- 703\n 1406 \N 200.68.151.174 dfa458da-d621-4597-a00a-bf644a33be16 2019-10-06 00:12:56.316347 17319 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8FnTNg2_AJYiw24axxFB\n- bjQeFaW8_RaZs_HAbtzE\n 1407 \N 200.68.151.174 dfa458da-d621-4597-a00a-bf644a33be16 2019-10-06 00:12:56.33092 17320 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-06 00:09:43.115901000 Z\n- &1 2019-10-06 00:12:56.308983000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-06 00:14:34.861050916 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938478\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938478\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 703\n- 704\n 1408 \N 187.149.44.182 9d8cb82f-40db-430c-a709-e25764cabdd8 2019-10-06 00:14:34.868325 17321 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bjQeFaW8_RaZs_HAbtzE\n- gAs-ktjV5YxuGSCxdo1q\n 1409 \N 187.149.44.182 9d8cb82f-40db-430c-a709-e25764cabdd8 2019-10-06 00:14:34.882565 17322 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-10-05 01:19:11.260970000 Z\n- &1 2019-10-05 22:54:46.197051000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-06 00:14:37.501860929 Z\nsign_in_count:\n- 90\n- 91\n 182 \N 187.149.44.182 7cd72faa-3aaf-477f-ba5c-c6b326749d44 2019-10-06 00:14:37.513256 17323 1 User \N \N 1 User \N update ---\nunique_session_id:\n- egdeE6--y6eAxk4xy5Hp\n- Ds3iHM_y73NwkwGNA_HR\n 183 \N 187.149.44.182 7cd72faa-3aaf-477f-ba5c-c6b326749d44 2019-10-06 00:14:37.53577 17324 1039 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 3 \N 187.149.44.182 16a6b433-2a2e-4535-9624-8fccacae4af6 2019-10-06 00:15:09.246915 17325 1039 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.44.182 22257e80-be38-4818-b997-7015866c130b 2019-10-06 00:15:11.953161 17326 223 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-10-05\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.44.182 c147d6d6-2466-4173-b425-54f79e6f0253 2019-10-06 00:15:13.811273 17327 857 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.44.182 54596713-b250-453c-b645-6731137c2ea6 2019-10-06 00:16:06.801149 17328 857 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.44.182 d8821363-3790-42e5-8183-30b16a774248 2019-10-06 00:16:09.87666 17329 224 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-10-05\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.44.182 4b7fe673-4c73-4261-89a9-bc2ebc1fe917 2019-10-06 00:16:10.709771 17330 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-06 00:12:56.308983000 Z\n- &1 2019-10-06 00:14:34.861050000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-06 00:45:52.891015274 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938478\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\nsign_in_count:\n- 704\n- 705\n 1410 \N 189.186.248.67 42562db9-4baa-412b-9a4f-275559cc9039 2019-10-06 00:45:52.906527 17331 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gAs-ktjV5YxuGSCxdo1q\n- sYbgTe6iNnFgzzbL5hGD\n 1411 \N 189.186.248.67 42562db9-4baa-412b-9a4f-275559cc9039 2019-10-06 00:45:52.933331 17332 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-06 00:14:34.861050000 Z\n- &1 2019-10-06 00:45:52.891015000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-06 01:08:22.759166168 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 705\n- 706\n 1412 \N 187.149.44.182 c2ffc622-5250-40c7-b6e0-c7d485fc43bb 2019-10-06 01:08:22.771801 17333 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sYbgTe6iNnFgzzbL5hGD\n- BPqzgRysim7p9182DpWk\n 1413 \N 187.149.44.182 c2ffc622-5250-40c7-b6e0-c7d485fc43bb 2019-10-06 01:08:22.798646 17334 717 Product \N \N 4 User \N update ---\nname:\n- 1BLCI1929\n- 1BLCI19290\n 2 El producto BOL-717 fue modificado. 187.149.44.182 4ca38170-095c-48fa-a504-04b006210574 2019-10-06 01:11:06.648713 17335 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-06 00:45:52.891015000 Z\n- &1 2019-10-06 01:08:22.759166000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-06 01:13:12.157040650 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\nsign_in_count:\n- 706\n- 707\n 1414 \N 189.186.248.67 7f420d65-bf7c-463a-8b10-363f718de107 2019-10-06 01:13:12.166255 17336 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BPqzgRysim7p9182DpWk\n- _tmG5xxCYTEvHpk-HTMF\n 1415 \N 189.186.248.67 7f420d65-bf7c-463a-8b10-363f718de107 2019-10-06 01:13:12.187095 17337 1208 Sale \N \N 23 User \N create ---\ncustomer_id: 192\nuser_id: 23\nopen_cash_register_id: 479\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2019-10-05\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-61\nexpiration_date: 2019-11-09\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.176.131 7189d55c-189c-403e-a3ca-3789bc06e1e5 2019-10-06 01:15:14.413002 17338 1035 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.176.131 7189d55c-189c-403e-a3ca-3789bc06e1e5 2019-10-06 01:15:14.443007 17339 1669 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 479\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 1208\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-61\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-61 189.186.176.131 d57e0d26-5b93-441a-bd48-b084a2548f8b 2019-10-06 01:15:36.380104 17340 1208 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.176.131 6d3225ec-edf8-45f2-a285-a9b86d84b1ee 2019-10-06 01:15:41.962301 17343 480 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 480\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4766E4\namount_out: !ruby/object:BigDecimal 18:0.1328E4\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.24E4\ncash_fund: !ruby/object:BigDecimal 18:0.781E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3181E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 c0d29b1d-2991-4937-b37b-186304f095b1 2019-10-06 01:38:08.713359 17344 480 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 c0d29b1d-2991-4937-b37b-186304f095b1 2019-10-06 01:38:08.728624 17345 481 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 479\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.1759E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1012E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2012E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.176.131 0fc56bd1-2050-45eb-9831-485a8099fb09 2019-10-06 02:01:12.593176 17346 479 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.176.131 0fc56bd1-2050-45eb-9831-485a8099fb09 2019-10-06 02:01:12.608419 17347 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-04 16:04:33.705066000 Z\n- &1 2019-10-05 16:07:12.411805000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-06 16:12:41.417794381 Z\nsign_in_count:\n- 30\n- 31\n 62 \N 189.186.176.131 054ed90c-1d0f-4796-8097-e5badac9730d 2019-10-06 16:12:41.449234 17348 23 User \N \N 23 User \N update ---\nunique_session_id:\n- sSwbtY8iTFH6x6sdx5hF\n- nCv_XcwTiaWLDp27LkmR\n 63 \N 189.186.176.131 054ed90c-1d0f-4796-8097-e5badac9730d 2019-10-06 16:12:41.470431 17349 482 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1012E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1012.0 189.186.176.131 da9c9c4c-1381-4ff3-a6f7-48bc25be7160 2019-10-06 16:12:57.560977 17350 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-09-29 18:09:23.291879000 Z\n- &1 2019-10-05 16:49:05.180819000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-06 16:28:55.769224400 Z\nsign_in_count:\n- 7\n- 8\n 16 \N 187.149.44.182 8b47a7d6-383a-40e8-aa77-29f527066503 2019-10-06 16:28:55.79657 17351 25 User \N \N 25 User \N update ---\nunique_session_id:\n- H5aaZ_F3YkdtvhFTyWDr\n- KPLXfxnegqPPcEsaQVZx\n 17 \N 187.149.44.182 8b47a7d6-383a-40e8-aa77-29f527066503 2019-10-06 16:28:55.814415 17352 483 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.781E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 781.0 187.149.44.182 9f809ea9-02bc-4628-b061-2cec9366d1bc 2019-10-06 16:29:06.54137 17353 1209 Sale \N \N 25 User \N create ---\ncustomer_id: 191\nuser_id: 25\nopen_cash_register_id: 483\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-10-06\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-661\nexpiration_date: 2019-11-10\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 4cd37ce4-0214-4d22-9e08-1ad9b1116dcb 2019-10-06 16:29:35.390963 17354 155 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 187.149.44.182 4cd37ce4-0214-4d22-9e08-1ad9b1116dcb 2019-10-06 16:29:35.415918 17355 1670 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 483\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1209\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-661\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-661 187.149.44.182 5f301d86-1ed7-446c-8e4b-690ca3fc116b 2019-10-06 16:29:42.12807 17356 1209 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.44.182 d6db2554-4bd8-4e2a-ad46-3b6fe41d2037 2019-10-06 16:29:46.603077 17357 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-06 01:08:22.759166000 Z\n- &1 2019-10-06 01:13:12.157040000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-06 16:59:48.185622295 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938083\n mask_addr: 4294967295\nsign_in_count:\n- 707\n- 708\n 1416 \N 200.68.150.35 b7a6cae2-317e-45d0-96b5-e915e6f9826d 2019-10-06 16:59:48.192978 17358 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _tmG5xxCYTEvHpk-HTMF\n- xU9E1LECwx44iLxFwapy\n 1417 \N 200.68.150.35 b7a6cae2-317e-45d0-96b5-e915e6f9826d 2019-10-06 16:59:48.208549 17359 1210 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 482\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-10-06\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-62\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.176.131 e8741d11-d035-4962-b076-fdee2d7ced08 2019-10-06 18:29:42.568388 17360 837 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.176.131 e8741d11-d035-4962-b076-fdee2d7ced08 2019-10-06 18:29:42.596571 17361 1210 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.176.131 83e036c6-8bb4-4425-8d9a-f6ccf1f96627 2019-10-06 18:29:52.572554 17362 1671 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 482\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 1210\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-62\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-62 189.186.176.131 83e036c6-8bb4-4425-8d9a-f6ccf1f96627 2019-10-06 18:29:52.596215 17363 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-04 22:23:35.500149000 Z\n- &1 2019-10-05 20:41:42.964731000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-06 19:02:28.383184000 Z\nsign_in_count:\n- 47\n- 48\n 99 \N 187.149.44.182 35f182ed-f1c6-4feb-a7d7-8238f1fb184a 2019-10-06 19:02:28.400276 17364 8 User \N \N 8 User \N update ---\nunique_session_id:\n- HY23DdA_QYtB-STy-cyC\n- _2w4KoXkGQa7zMqttSxP\n 100 \N 187.149.44.182 35f182ed-f1c6-4feb-a7d7-8238f1fb184a 2019-10-06 19:02:28.41645 17365 484 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.1109E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1109.0 187.149.44.182 12b95f24-75b9-4b3f-8f5d-b88700251a7f 2019-10-06 19:02:46.475213 17389 1001 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.44.182 f2394ee9-db8c-46f8-a483-9b63bd38dc05 2019-10-07 16:15:30.284844 17366 1672 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 484\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1130\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.8E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-461 187.149.44.182 ed8f424b-c535-44ee-a101-32f030a1cd7a 2019-10-06 19:03:26.81223 17367 1673 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 484\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 1130\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-461 187.149.44.182 d9ee3594-4df3-44ac-a9eb-bee15198893d 2019-10-06 19:03:45.430875 17368 1130 Sale \N \N 8 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.44.182 7b97def6-f353-47c4-89ca-edaa740c5bc9 2019-10-06 19:03:46.62071 17369 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-10-05 16:49:05.180819000 Z\n- &1 2019-10-06 16:28:55.769224000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-06 19:35:35.462058201 Z\nsign_in_count:\n- 8\n- 9\n 18 \N 187.149.44.182 30785e20-dd09-4a68-bbd8-111387e423ec 2019-10-06 19:35:35.467584 17370 25 User \N \N 25 User \N update ---\nunique_session_id:\n- KPLXfxnegqPPcEsaQVZx\n- xPS-TGcXH5TQwQxHypGd\n 19 \N 187.149.44.182 30785e20-dd09-4a68-bbd8-111387e423ec 2019-10-06 19:35:35.479095 17371 482 CashOut \N \N 25 User \N create ---\nopen_cash_register_id: 483\nuser_id: 25\namount_in: !ruby/object:BigDecimal 18:0.3E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.3E3\ncash_fund: !ruby/object:BigDecimal 18:0.781E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1081E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 7f2f2a8b-9ba6-4aa8-a45d-87a452e86527 2019-10-06 20:47:15.955834 17372 483 OpenCashRegister \N \N 25 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 7f2f2a8b-9ba6-4aa8-a45d-87a452e86527 2019-10-06 20:47:15.967657 17373 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-10-02 00:53:51.997500000 Z\n- &1 2019-10-02 01:31:17.250622000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-06 20:47:56.349268251 Z\nsign_in_count:\n- 151\n- 152\n 306 \N 187.149.44.182 8fb8ddcf-4a91-4d30-8686-e46a9c2ebd7e 2019-10-06 20:47:56.354777 17374 10 User \N \N 10 User \N update ---\nunique_session_id:\n- rWkfLpcTBk1ZMzLxNb8s\n- gp7Zepz_aREbrKJW8SSZ\n 307 \N 187.149.44.182 8fb8ddcf-4a91-4d30-8686-e46a9c2ebd7e 2019-10-06 20:47:56.366184 17375 483 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 484\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.799E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.8E3\ncash_fund: !ruby/object:BigDecimal 18:0.1108E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1908E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.44.182 48b5bb94-0c0a-4595-b9e9-d05d0db64d6f 2019-10-06 20:49:02.234256 17376 484 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 48b5bb94-0c0a-4595-b9e9-d05d0db64d6f 2019-10-06 20:49:02.246182 17377 195 Expense \N \N 23 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 482\nquantity: !ruby/object:BigDecimal 18:0.12E4\nstatus: 1\nobservations: NOMINA MARICRUZ\nexpense_date: 2019-10-06\nexpense_code: PV3-E-4\n 1 Egreso por 1200.0 registrado 189.186.176.131 7406296c-f722-4fab-99b2-a998fdc63b78 2019-10-06 21:06:38.862515 17378 1674 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 482\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 195\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.176.131 7406296c-f722-4fab-99b2-a998fdc63b78 2019-10-06 21:06:38.89314 17379 484 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 482\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.1299E4\namount_out: !ruby/object:BigDecimal 18:0.12E4\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.1E3\ncash_fund: !ruby/object:BigDecimal 18:0.1011E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1111E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.176.131 788d48e4-626e-49b4-8d16-edae5f3a2b0b 2019-10-06 22:02:24.777966 17380 482 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.176.131 788d48e4-626e-49b4-8d16-edae5f3a2b0b 2019-10-06 22:02:24.790203 17381 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-05 01:17:05.230404000 Z\n- &1 2019-10-05 18:34:31.692332000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-07 16:11:24.281084409 Z\nsign_in_count:\n- 341\n- 342\n 687 \N 187.149.44.182 c499c76d-8127-4b87-8649-befe889c2153 2019-10-07 16:11:24.316506 17382 2 User \N \N 2 User \N update ---\nunique_session_id:\n- P24pXXKovKeUHBsRS_Pg\n- QdqP4KRrA1zULqLc69D-\n 688 \N 187.149.44.182 c499c76d-8127-4b87-8649-befe889c2153 2019-10-07 16:11:24.3417 17383 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-05 20:41:42.964731000 Z\n- &1 2019-10-06 19:02:28.383184000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-07 16:12:14.142179402 Z\nsign_in_count:\n- 48\n- 49\n 101 \N 187.149.44.182 2284544b-7eee-475f-bb49-9c3945d22cc4 2019-10-07 16:12:14.147715 17384 8 User \N \N 8 User \N update ---\nunique_session_id:\n- _2w4KoXkGQa7zMqttSxP\n- sYkyC6o4T3fW4B3fxTRK\n 102 \N 187.149.44.182 2284544b-7eee-475f-bb49-9c3945d22cc4 2019-10-07 16:12:14.180036 17385 485 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.1108E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1108.0 187.149.44.182 0c83253e-574b-43b9-9c17-73955aca08ed 2019-10-07 16:12:31.030447 17386 193 Customer \N \N 8 User \N create ---\nnick_name: MARIA MARTINEZ\nphone: "(667) 254-0381"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIA MARTINEZ fue registrado. 187.149.44.182 bd2cce78-35bb-4418-a7eb-78ee7f0edf7b 2019-10-07 16:13:09.526457 17387 486 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.781E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 781.0 187.149.44.182 095a5e4e-d04d-4bc3-8470-17a70af77b30 2019-10-07 16:14:45.973238 17388 1211 Sale \N \N 8 User \N create ---\ncustomer_id: 193\nuser_id: 8\nopen_cash_register_id: 485\namount: !ruby/object:BigDecimal 18:0.1518E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1518E4\nstatus: 0\ndate_sale: 2019-10-07\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-486\nexpiration_date: 2019-11-11\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 f2394ee9-db8c-46f8-a483-9b63bd38dc05 2019-10-07 16:15:30.256135 32007 1047 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1047'\n is_parent: false\n sku: ACC-1047\n name: DIA-0050\n description: DIADEMA BOLITAS GAZA\n price_base: '58.0'\n price_sale: '139.0'\n img_product: DIA50.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001047'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-01 01:12:14.568675'\n updated_at: &12 2020-03-16 21:03:57.966826410 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1047'\n sku: ACC-1047\n name: DIA-0050\n description: DIADEMA BOLITAS GAZA\n price_base: '58.00'\n price_sale: '139.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-01 01:12:14.568675'\n updated_at: '2020-03-01 01:12:14.609619'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001047'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1047'\n type: *3\n value: 1047\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1047\n type: *7\n value: ACC-1047\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0050\n type: *8\n value: DIA-0050\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMA BOLITAS GAZA\n type: *6\n value: DIADEMA BOLITAS GAZA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '58.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.58E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '139.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.139E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DIA50.jpg\n type: *2\n value: DIA50.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001047'\n type: *2\n value: '0001047'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-01 01:12:14.568675'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- DIA50.jpg\n 3 El producto ACC-1047 fue modificado. 189.186.145.62 07291d24-dc19-477f-887e-de03bb513c71 2020-03-16 21:03:58.011716 17390 1021 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.44.182 f2394ee9-db8c-46f8-a483-9b63bd38dc05 2019-10-07 16:15:30.316898 17391 1675 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 485\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.18E3\nmove_type: '1'\nsale_id: 1211\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-486\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.18E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-486 187.149.44.182 6731688e-9b68-4d93-b25d-05afab9fb165 2019-10-07 16:15:38.146722 17392 1211 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.44.182 4bf34370-84fb-4f52-a8a3-7ab068eb2849 2019-10-07 16:15:42.358766 17393 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-05 16:07:12.411805000 Z\n- &1 2019-10-06 16:12:41.417794000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-07 16:19:24.750133907 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183128707\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123996\n mask_addr: 4294967295\nsign_in_count:\n- 31\n- 32\n 64 \N 189.186.158.28 85304f27-3bc2-4c47-a648-0414871222ef 2019-10-07 16:19:24.759031 17394 23 User \N \N 23 User \N update ---\nunique_session_id:\n- nCv_XcwTiaWLDp27LkmR\n- yUZCENBtHi92VdYPWfRB\n 65 \N 189.186.158.28 85304f27-3bc2-4c47-a648-0414871222ef 2019-10-07 16:19:24.77573 17395 487 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1011E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1011.0 189.186.158.28 503a4d4b-93f0-42dc-910d-797fa949bf09 2019-10-07 16:19:49.075323 17396 1676 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 486\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 1023\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.469E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-585 187.149.44.182 d65005b7-af28-4d59-ac7b-d3a1034695aa 2019-10-07 16:21:52.567225 17397 1023 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.44.182 93bb7c21-a248-42f4-baea-2337de89d7d7 2019-10-07 16:21:54.006593 17398 1677 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 486\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.45E3\nmove_type: '1'\nsale_id: 1204\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.45E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-658 187.149.44.182 1ad08867-8a29-466d-9bb8-42c8abda7ff6 2019-10-07 18:09:19.621468 17399 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-10-03 20:20:14.807923000 Z\n- &1 2019-10-04 00:14:58.865772000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-07 18:27:17.012476872 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\nsign_in_count:\n- 23\n- 24\n 49 \N 189.186.248.67 207ce307-e420-44e6-acba-87d884bf2912 2019-10-07 18:27:17.019809 17400 21 User \N \N 21 User \N update ---\nunique_session_id:\n- WNZSPdDNYscw-2J_r4Tj\n- C1FTfyHGesJESQGHgHX2\n 50 \N 189.186.248.67 207ce307-e420-44e6-acba-87d884bf2912 2019-10-07 18:27:17.033383 17401 731 Product \N \N 2 User \N create ---\nsku: BLU-731\nname: BL-0026\ndescription: 'BLUSA CQ MOSTAZA CON PLUMAS '\nprice_base: !ruby/object:BigDecimal 18:0.27E3\nprice_sale: !ruby/object:BigDecimal 18:0.679E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-731 fue creado. 187.149.44.182 5b3ef383-2227-4ef6-a89c-3db9b493558f 2019-10-07 19:11:43.358516 17402 731 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000731'\n 2 \N 187.149.44.182 5b3ef383-2227-4ef6-a89c-3db9b493558f 2019-10-07 19:11:43.392423 17403 1057 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 731\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 5b3ef383-2227-4ef6-a89c-3db9b493558f 2019-10-07 19:11:43.420639 17404 224 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-07\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.44.182 1cff63b1-b77e-4157-883c-ed7dda4d8b0d 2019-10-07 19:58:03.424616 17405 1058 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 701\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 1cff63b1-b77e-4157-883c-ed7dda4d8b0d 2019-10-07 19:58:03.451742 17406 732 Product \N \N 2 User \N create ---\nsku: BLU-732\nname: BL-0027\ndescription: "PANTIBLUSA LETTE NEGRA DE TERCIOPELO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.2E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-732 fue creado. 187.149.44.182 d0ec7d4f-cd9e-43b5-92b4-ce36ae3055c7 2019-10-07 20:09:43.610025 17407 732 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000732'\n 2 \N 187.149.44.182 d0ec7d4f-cd9e-43b5-92b4-ce36ae3055c7 2019-10-07 20:09:43.63964 17408 1059 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 732\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 d0ec7d4f-cd9e-43b5-92b4-ce36ae3055c7 2019-10-07 20:09:43.675914 17409 733 Product \N \N 2 User \N create ---\nsku: BLU-733\nname: S-0012\ndescription: "SUETER BALBOA VERDE CON PERLAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.235E3\nprice_sale: !ruby/object:BigDecimal 18:0.589E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-733 fue creado. 187.149.44.182 528cf972-5323-47ab-93b0-056ab5f5036b 2019-10-07 20:12:11.643827 17410 733 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000733'\n 2 \N 187.149.44.182 528cf972-5323-47ab-93b0-056ab5f5036b 2019-10-07 20:12:11.668415 17411 1060 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 733\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 528cf972-5323-47ab-93b0-056ab5f5036b 2019-10-07 20:12:11.692854 17412 734 Product \N \N 2 User \N create ---\nsku: BLU-734\nname: B-00844\ndescription: "BLUSA TIPO SUETER LATISTE GRIS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.335E3\nprice_sale: !ruby/object:BigDecimal 18:0.849E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-734 fue creado. 187.149.44.182 1ea728ee-a276-4f50-bfc2-c39cf99c6f72 2019-10-07 20:14:12.578447 17413 734 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000734'\n 2 \N 187.149.44.182 1ea728ee-a276-4f50-bfc2-c39cf99c6f72 2019-10-07 20:14:12.603949 17414 1061 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 734\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 1ea728ee-a276-4f50-bfc2-c39cf99c6f72 2019-10-07 20:14:12.629804 17415 735 Product \N \N 2 User \N create ---\nsku: BLU-735\nname: B-0102\ndescription: "BLUSA VOILA BLANCA MANGA CON OLANES\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.305E3\nprice_sale: !ruby/object:BigDecimal 18:0.769E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-735 fue creado. 187.149.44.182 4d0b0042-9fd3-45b9-9849-4d6b9bd69f90 2019-10-07 20:15:58.563756 17416 735 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000735'\n 2 \N 187.149.44.182 4d0b0042-9fd3-45b9-9849-4d6b9bd69f90 2019-10-07 20:15:58.602032 17417 1062 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 735\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 4d0b0042-9fd3-45b9-9849-4d6b9bd69f90 2019-10-07 20:15:58.626668 17418 736 Product \N \N 2 User \N create ---\nsku: BLU-736\nname: BLU-0041\ndescription: "BLUSA GLOW PASSION VERDE CON FLORES\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.171E3\nprice_sale: !ruby/object:BigDecimal 18:0.429E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-736 fue creado. 187.149.44.182 5c82c867-79a5-4562-bbf7-b25d87ea9813 2019-10-07 20:17:54.308795 17419 736 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000736'\n 2 \N 187.149.44.182 5c82c867-79a5-4562-bbf7-b25d87ea9813 2019-10-07 20:17:54.332072 17420 1063 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 736\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 5c82c867-79a5-4562-bbf7-b25d87ea9813 2019-10-07 20:17:54.355642 17421 147 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-82\namount: !ruby/object:BigDecimal 18:0.365E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.365E4\nobservations: ''\npurchase_date: 2019-10-07\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-82 por $ 3650.0 MXN creada. 187.149.44.182 7e0c8b56-9436-4536-be8e-782896b27550 2019-10-07 20:18:12.482837 17422 1057 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.44.182 7e0c8b56-9436-4536-be8e-782896b27550 2019-10-07 20:18:12.523648 17423 1059 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.44.182 7e0c8b56-9436-4536-be8e-782896b27550 2019-10-07 20:18:12.547905 17424 1060 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.44.182 7e0c8b56-9436-4536-be8e-782896b27550 2019-10-07 20:18:12.56938 17425 1061 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.44.182 7e0c8b56-9436-4536-be8e-782896b27550 2019-10-07 20:18:12.589815 17426 1062 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.44.182 7e0c8b56-9436-4536-be8e-782896b27550 2019-10-07 20:18:12.610138 17427 1063 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.44.182 7e0c8b56-9436-4536-be8e-782896b27550 2019-10-07 20:18:12.630224 17428 223 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-07\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.44.182 213f9641-c984-4464-a7e1-46dd9d6b0057 2019-10-07 20:19:09.060532 17429 1064 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 724\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 213f9641-c984-4464-a7e1-46dd9d6b0057 2019-10-07 20:19:09.0839 17430 1065 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 631\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 213f9641-c984-4464-a7e1-46dd9d6b0057 2019-10-07 20:19:09.109238 17431 1066 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 699\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 213f9641-c984-4464-a7e1-46dd9d6b0057 2019-10-07 20:19:09.132899 17432 737 Product \N \N 2 User \N create ---\nsku: VES-737\nname: VE-0048\ndescription: "VESTIDO CQ TINTO Y NEGRO DE TERCIOPELO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.379E3\nprice_sale: !ruby/object:BigDecimal 18:0.949E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-737 fue creado. 187.149.44.182 7b9d66c7-18f8-407b-b066-5686500d7e3a 2019-10-07 20:21:21.897607 17433 737 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000737'\n 2 \N 187.149.44.182 7b9d66c7-18f8-407b-b066-5686500d7e3a 2019-10-07 20:21:21.922428 17434 1067 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 737\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 7b9d66c7-18f8-407b-b066-5686500d7e3a 2019-10-07 20:21:21.947642 17435 738 Product \N \N 2 User \N create ---\nsku: VES-738\nname: VES-0033\ndescription: "VESTIDO OLIVE TREE NEGRO CON FLORES DE TERCIOPELO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.337E3\nprice_sale: !ruby/object:BigDecimal 18:0.849E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-738 fue creado. 187.149.44.182 c237e2f8-7156-4467-9726-f031cc5ec5f0 2019-10-07 20:24:07.3743 17436 738 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000738'\n 2 \N 187.149.44.182 c237e2f8-7156-4467-9726-f031cc5ec5f0 2019-10-07 20:24:07.401962 17437 1068 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 738\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 c237e2f8-7156-4467-9726-f031cc5ec5f0 2019-10-07 20:24:07.429534 17438 739 Product \N \N 2 User \N create ---\nsku: VES-739\nname: VES-0045\ndescription: "VESTIDO SANJOY ROJO CON OLAN EN MAGA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.359E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-739 fue creado. 187.149.44.182 ab3fe571-8f42-4103-9cac-bb2e89941148 2019-10-07 20:26:09.204367 17439 739 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000739'\n 2 \N 187.149.44.182 ab3fe571-8f42-4103-9cac-bb2e89941148 2019-10-07 20:26:09.243807 17440 1069 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 739\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 ab3fe571-8f42-4103-9cac-bb2e89941148 2019-10-07 20:26:09.266581 17441 740 Product \N \N 2 User \N create ---\nsku: VES-740\nname: VES-0009\ndescription: "VESTIDO OLIVE TREE TINTO DE ENCAJE\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.347E3\nprice_sale: !ruby/object:BigDecimal 18:0.869E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-740 fue creado. 187.149.44.182 0242cf9a-b8db-481f-9f21-917b05250a65 2019-10-07 20:27:58.480768 17442 740 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000740'\n 2 \N 187.149.44.182 0242cf9a-b8db-481f-9f21-917b05250a65 2019-10-07 20:27:58.50991 17443 1070 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 740\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 0242cf9a-b8db-481f-9f21-917b05250a65 2019-10-07 20:27:58.535379 17444 741 Product \N \N 2 User \N create ---\nsku: VES-741\nname: VES-0041\ndescription: "VESTIDO GLARE DE TIRANTE TINTO Y TERCIOPELO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.319E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-741 fue creado. 187.149.44.182 811e3026-fac3-4567-8619-053fc4006062 2019-10-07 20:30:03.953073 17445 741 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000741'\n 2 \N 187.149.44.182 811e3026-fac3-4567-8619-053fc4006062 2019-10-07 20:30:03.975729 17446 1071 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 741\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 811e3026-fac3-4567-8619-053fc4006062 2019-10-07 20:30:03.999928 17447 742 Product \N \N 2 User \N create ---\nsku: VES-742\nname: BL-0038\ndescription: "VESTIDO JEALOUS TOMATO DE TIRANTE TINTO CON LENTEJUELA \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.359E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-742 fue creado. 187.149.44.182 0496891b-fc4e-4be1-affd-a2443d1325af 2019-10-07 20:32:14.865728 17448 742 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000742'\n 2 \N 187.149.44.182 0496891b-fc4e-4be1-affd-a2443d1325af 2019-10-07 20:32:14.895456 17449 1072 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 742\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 0496891b-fc4e-4be1-affd-a2443d1325af 2019-10-07 20:32:14.920224 17450 743 Product \N \N 2 User \N create ---\nsku: VES-743\nname: V-0068\ndescription: "VESTIDO LATISTE DE UNA MANGA DE LENTEJUELA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.379E3\nprice_sale: !ruby/object:BigDecimal 18:0.949E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-743 fue creado. 187.149.44.182 937f62d7-a8b6-4591-b556-3842fc551039 2019-10-07 20:34:51.950914 17451 743 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000743'\n 2 \N 187.149.44.182 937f62d7-a8b6-4591-b556-3842fc551039 2019-10-07 20:34:51.977135 17452 1073 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 743\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 937f62d7-a8b6-4591-b556-3842fc551039 2019-10-07 20:34:52.002873 17473 1069 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.44.182 afed681c-1c97-4483-81e2-8786ce51885e 2019-10-07 20:44:42.434504 17453 744 Product \N \N 2 User \N create ---\nsku: VES-744\nname: VE-0055\ndescription: "VESTIDO BLUE S ROSA DE LENTEJUELA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.48E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-744 fue creado. 187.149.44.182 590721f8-54f4-4803-badb-b300aa702382 2019-10-07 20:37:05.434586 17454 744 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000744'\n 2 \N 187.149.44.182 590721f8-54f4-4803-badb-b300aa702382 2019-10-07 20:37:05.460827 17455 1074 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 744\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 590721f8-54f4-4803-badb-b300aa702382 2019-10-07 20:37:05.488211 17456 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-06 01:13:12.157040000 Z\n- &1 2019-10-06 16:59:48.185622000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-07 20:37:49.758404201 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938083\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938083\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\nsign_in_count:\n- 708\n- 709\n 1418 \N 189.186.248.67 60e104ec-b0a2-4ddd-b115-9f7e31686f66 2019-10-07 20:37:49.766589 17457 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xU9E1LECwx44iLxFwapy\n- eMVQNs4EonyYJsanRTf5\n 1419 \N 189.186.248.67 60e104ec-b0a2-4ddd-b115-9f7e31686f66 2019-10-07 20:37:49.782048 17458 745 Product \N \N 2 User \N create ---\nsku: VES-745\nname: VE-0056\ndescription: "VESTIDO CQ ROSA DE PANA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.32E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-745 fue creado. 187.149.44.182 29f045ca-1cea-4528-a308-fc11b083c0af 2019-10-07 20:38:02.934454 17459 745 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000745'\n 2 \N 187.149.44.182 29f045ca-1cea-4528-a308-fc11b083c0af 2019-10-07 20:38:02.958963 17460 1075 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 745\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 29f045ca-1cea-4528-a308-fc11b083c0af 2019-10-07 20:38:02.982754 17461 746 Product \N \N 2 User \N create ---\nsku: VES-746\nname: VES-0036\ndescription: "VESTIDO OLIVE TREE ROSA DE TERCIOPELO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.29E3\nprice_sale: !ruby/object:BigDecimal 18:0.849E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-746 fue creado. 187.149.44.182 9ec93c6b-d859-43a6-a5ec-4192d0f894ae 2019-10-07 20:41:44.75863 17462 746 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000746'\n 2 \N 187.149.44.182 9ec93c6b-d859-43a6-a5ec-4192d0f894ae 2019-10-07 20:41:44.783381 17463 1076 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 746\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 9ec93c6b-d859-43a6-a5ec-4192d0f894ae 2019-10-07 20:41:44.807936 17464 747 Product \N \N 2 User \N create ---\nsku: VES-747\nname: VE-0041\ndescription: "VESTIDO BLUE S DORADO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.29E3\nprice_sale: !ruby/object:BigDecimal 18:0.849E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-747 fue creado. 187.149.44.182 50d69c6b-93cf-493b-9446-6c89f22e95e5 2019-10-07 20:42:44.829264 17465 747 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000747'\n 2 \N 187.149.44.182 50d69c6b-93cf-493b-9446-6c89f22e95e5 2019-10-07 20:42:44.852616 17466 1077 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 747\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 50d69c6b-93cf-493b-9446-6c89f22e95e5 2019-10-07 20:42:44.875616 17467 748 Product \N \N 2 User \N create ---\nsku: VES-748\nname: V-0074\ndescription: "VESTIDO EVENT VERDE MANGA LARGA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.359E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-748 fue creado. 187.149.44.182 a3495dc3-1ca6-4b48-beac-6dabfb08023f 2019-10-07 20:43:39.213968 17468 748 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0000748'\n 2 \N 187.149.44.182 a3495dc3-1ca6-4b48-beac-6dabfb08023f 2019-10-07 20:43:39.239522 17469 1078 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 748\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 a3495dc3-1ca6-4b48-beac-6dabfb08023f 2019-10-07 20:43:39.26487 17470 148 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-83\namount: !ruby/object:BigDecimal 18:0.8887E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.8887E4\nobservations: ''\npurchase_date: 2019-10-07\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-83 por $ 8887.0 MXN creada. 187.149.44.182 afed681c-1c97-4483-81e2-8786ce51885e 2019-10-07 20:44:42.375391 17471 1067 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.44.182 afed681c-1c97-4483-81e2-8786ce51885e 2019-10-07 20:44:42.394671 17472 1068 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.44.182 afed681c-1c97-4483-81e2-8786ce51885e 2019-10-07 20:44:42.414803 17499 485 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 6eb80286-4bc7-43f1-aad7-c079f786f925 2019-10-08 01:12:44.899292 17474 1070 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.44.182 afed681c-1c97-4483-81e2-8786ce51885e 2019-10-07 20:44:42.454451 17475 1071 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.44.182 afed681c-1c97-4483-81e2-8786ce51885e 2019-10-07 20:44:42.475294 17476 1072 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.44.182 afed681c-1c97-4483-81e2-8786ce51885e 2019-10-07 20:44:42.495543 17477 1073 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.44.182 afed681c-1c97-4483-81e2-8786ce51885e 2019-10-07 20:44:42.515983 17478 1074 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.44.182 afed681c-1c97-4483-81e2-8786ce51885e 2019-10-07 20:44:42.539445 17479 1075 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.44.182 afed681c-1c97-4483-81e2-8786ce51885e 2019-10-07 20:44:42.559144 17480 1076 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.44.182 afed681c-1c97-4483-81e2-8786ce51885e 2019-10-07 20:44:42.579173 17481 1077 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.44.182 afed681c-1c97-4483-81e2-8786ce51885e 2019-10-07 20:44:42.598764 17482 1078 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.44.182 afed681c-1c97-4483-81e2-8786ce51885e 2019-10-07 20:44:42.618609 17483 194 Customer \N \N 23 User \N create ---\nnick_name: GLADIS URIAS\nphone: "(667) 145-4548"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente GLADIS URIAS fue registrado. 189.186.158.28 ffdbf98c-83b6-4e2e-912c-5629f6304336 2019-10-07 22:23:03.434998 17484 1033 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.44.182 03412c03-6e39-49d4-b0d0-3022af44ce28 2019-10-07 22:29:41.138036 17485 225 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-10-07\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.44.182 625d1b65-df69-444d-b6f6-00f44e5aa121 2019-10-07 22:29:43.685243 17486 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-06 16:59:48.185622000 Z\n- &1 2019-10-07 20:37:49.758404000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-07 22:30:59.985974975 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938083\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 709\n- 710\n 1420 \N 187.149.44.182 dfa22afc-e859-4dca-a8d6-a4771e413eb0 2019-10-07 22:30:59.993803 17487 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eMVQNs4EonyYJsanRTf5\n- hPgUZJN4TGzaaMRq1xcU\n 1421 \N 187.149.44.182 dfa22afc-e859-4dca-a8d6-a4771e413eb0 2019-10-07 22:31:00.015068 17488 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-07 20:37:49.758404000 Z\n- &1 2019-10-07 22:30:59.985974000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-07 23:09:35.824743805 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\nsign_in_count:\n- 710\n- 711\n 1422 \N 189.186.248.67 c3a40e25-f9e2-4f50-afb7-8caa5fc2d1a0 2019-10-07 23:09:35.832135 17489 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hPgUZJN4TGzaaMRq1xcU\n- 1wLsJ6Azv-1nodpRcueo\n 1423 \N 189.186.248.67 c3a40e25-f9e2-4f50-afb7-8caa5fc2d1a0 2019-10-07 23:09:35.847077 17490 1212 Sale \N \N 23 User \N create ---\ncustomer_id: 194\nuser_id: 23\nopen_cash_register_id: 487\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-10-07\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-63\nexpiration_date: 2019-11-11\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.158.28 22b94922-8512-4f22-9c93-3d4a5507b2c9 2019-10-07 23:10:52.387515 17491 775 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.158.28 22b94922-8512-4f22-9c93-3d4a5507b2c9 2019-10-07 23:10:52.428209 17492 1678 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 487\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 1212\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-63\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-63 189.186.158.28 7c8829f6-35aa-4d6d-a616-9b1896932819 2019-10-07 23:11:22.92527 17493 1212 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.158.28 2d7c0e4b-64f8-4be1-a8b9-f3b5937995a2 2019-10-07 23:11:28.475029 17494 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-07 22:30:59.985974000 Z\n- &1 2019-10-07 23:09:35.824743000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-08 00:22:20.415722364 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 711\n- 712\n 1424 \N 187.149.44.182 a807847b-6d90-4019-8af6-d8a006797d3b 2019-10-08 00:22:20.423206 17495 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1wLsJ6Azv-1nodpRcueo\n- riVGd2d62zjx36qushs-\n 1425 \N 187.149.44.182 a807847b-6d90-4019-8af6-d8a006797d3b 2019-10-08 00:22:20.437922 17496 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-06 19:02:28.383184000 Z\n- &1 2019-10-07 16:12:14.142179000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-08 01:08:55.525278406 Z\nsign_in_count:\n- 49\n- 50\n 103 \N 187.149.44.182 e55d3335-56b8-4a5c-ab1d-f0cb957cc828 2019-10-08 01:08:55.536243 17497 8 User \N \N 8 User \N update ---\nunique_session_id:\n- sYkyC6o4T3fW4B3fxTRK\n- C1zxrKKC9wjEkQbeVzGF\n 104 \N 187.149.44.182 e55d3335-56b8-4a5c-ab1d-f0cb957cc828 2019-10-08 01:08:55.555465 17498 485 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 485\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.18E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1288E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1288E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.44.182 6eb80286-4bc7-43f1-aad7-c079f786f925 2019-10-08 01:12:44.880743 17500 486 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 486\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.919E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.7E3\nphysical_cash: !ruby/object:BigDecimal 18:0.17E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 36573166-9f56-404b-b3d5-43a4e358e392 2019-10-08 01:29:20.453275 17501 486 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 36573166-9f56-404b-b3d5-43a4e358e392 2019-10-08 01:29:20.472934 17502 487 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 487\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.35E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1011E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1011E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.158.28 91ed1fc1-bda6-47b6-ab32-1ab83b3bc359 2019-10-08 01:59:58.60962 17503 487 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.158.28 91ed1fc1-bda6-47b6-ab32-1ab83b3bc359 2019-10-08 01:59:58.624967 17504 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-07 23:09:35.824743000 Z\n- &1 2019-10-08 00:22:20.415722000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-08 06:00:12.260670824 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\nsign_in_count:\n- 712\n- 713\n 1426 \N 189.186.248.67 72c44735-b92d-42f8-9ef9-9eb763f9e0c9 2019-10-08 06:00:12.273141 17505 4 User \N \N 4 User \N update ---\nunique_session_id:\n- riVGd2d62zjx36qushs-\n- sPZoRyW9My6Jh5wD-VpL\n 1427 \N 189.186.248.67 72c44735-b92d-42f8-9ef9-9eb763f9e0c9 2019-10-08 06:00:12.295168 17506 749 Product \N \N 4 User \N create ---\nsku: VES-749\nname: VST-0052\ndescription: LABANGA VESTIDO PLATEADO\nprice_base: !ruby/object:BigDecimal 18:0.2E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-749 fue creado. 189.186.248.67 de5f973b-2924-440a-b361-e3d9453b21c7 2019-10-08 06:01:33.319161 17507 749 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000749'\n 2 \N 189.186.248.67 de5f973b-2924-440a-b361-e3d9453b21c7 2019-10-08 06:01:33.349389 17508 1079 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 749\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.248.67 de5f973b-2924-440a-b361-e3d9453b21c7 2019-10-08 06:01:33.385184 17509 149 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-44\namount: !ruby/object:BigDecimal 18:0.12E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.12E4\nobservations: ''\npurchase_date: 2019-10-08\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-44 por $ 1200.0 MXN creada. 189.186.248.67 fb7eaf43-26c3-4b5f-a849-006df0ee05aa 2019-10-08 06:01:51.684927 17510 1079 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.248.67 fb7eaf43-26c3-4b5f-a849-006df0ee05aa 2019-10-08 06:01:51.706429 17511 749 Product \N \N 4 User \N update --- {}\n 3 El producto VES-749 fue modificado. 189.186.248.67 e6df935c-8ae1-47b2-9605-f6ca7d35cd08 2019-10-08 06:02:35.749827 17512 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-10-04 00:14:58.865772000 Z\n- &1 2019-10-07 18:27:17.012476000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-08 06:03:36.991663462 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\nsign_in_count:\n- 24\n- 25\n 51 \N 189.186.248.67 0cff966d-eb52-4098-b999-b7edce7c219f 2019-10-08 06:03:36.998326 17513 21 User \N \N 21 User \N update ---\nunique_session_id:\n- C1FTfyHGesJESQGHgHX2\n- DzkbMbXNAT5bSyBXmBzJ\n 52 \N 189.186.248.67 0cff966d-eb52-4098-b999-b7edce7c219f 2019-10-08 06:03:37.011382 17514 1045 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 2 \N 189.186.248.67 4487e7c0-626a-483e-9e37-c80d2fca826c 2019-10-08 06:07:28.586837 17515 1045 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.248.67 aac96dac-8e3c-4dcc-b732-acd13bd06758 2019-10-08 06:07:31.513287 17516 226 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-10-08\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.248.67 c8f87386-e56d-4910-814f-2c7474336b19 2019-10-08 06:07:34.136453 17517 218 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-08\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.248.67 666ddade-32bb-4c80-9601-fd5fa5f51087 2019-10-08 06:08:01.184717 17518 976 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.248.67 666ddade-32bb-4c80-9601-fd5fa5f51087 2019-10-08 06:08:01.20279 17519 226 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-08\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.248.67 ca054b9b-6405-470e-996b-4b8e3075ab75 2019-10-08 06:08:12.691099 17520 1080 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 676\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.248.67 ca054b9b-6405-470e-996b-4b8e3075ab75 2019-10-08 06:08:12.710479 17521 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-05 18:34:31.692332000 Z\n- &1 2019-10-07 16:11:24.281084000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-08 15:54:42.969731471 Z\nsign_in_count:\n- 342\n- 343\n 689 \N 187.149.44.182 ff64fee4-c05f-453b-8462-4f7ca8e71ced 2019-10-08 15:54:43.003068 17522 2 User \N \N 2 User \N update ---\nunique_session_id:\n- QdqP4KRrA1zULqLc69D-\n- xUBX6PyVQAVCakpQpm2S\n 690 \N 187.149.44.182 ff64fee4-c05f-453b-8462-4f7ca8e71ced 2019-10-08 15:54:43.026758 17523 488 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.7E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 700.0 187.149.44.182 091514a6-a40d-45d7-b9e3-d18c36fd583f 2019-10-08 15:55:10.958023 17572 1081 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.44.182 5f475e4f-afc2-41fc-89b3-c9c73b9168dc 2019-10-09 20:00:20.995098 17524 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-06 16:12:41.417794000 Z\n- &1 2019-10-07 16:19:24.750133000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-08 16:09:44.214375281 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183128707\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123996\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112696\n mask_addr: 4294967295\nsign_in_count:\n- 32\n- 33\n 66 \N 189.186.113.248 e5ded821-be82-4f27-ae51-45361345a1c0 2019-10-08 16:09:44.222389 17525 23 User \N \N 23 User \N update ---\nunique_session_id:\n- yUZCENBtHi92VdYPWfRB\n- 2jxiPjoyg_2XFT1heNxk\n 67 \N 189.186.113.248 e5ded821-be82-4f27-ae51-45361345a1c0 2019-10-08 16:09:44.238037 17526 489 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1011E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1011.0 189.186.113.248 8c518432-2096-4408-89f1-b3249cec4fc4 2019-10-08 16:10:11.837363 17527 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-07 16:12:14.142179000 Z\n- &1 2019-10-08 01:08:55.525278000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-08 17:16:58.815691775 Z\nsign_in_count:\n- 50\n- 51\n 105 \N 187.149.44.182 d42f952a-8eb5-47dc-9173-27f0a5991e54 2019-10-08 17:16:58.849389 17528 8 User \N \N 8 User \N update ---\nunique_session_id:\n- C1zxrKKC9wjEkQbeVzGF\n- YxUddzjLsKoxu2FYjzmi\n 106 \N 187.149.44.182 d42f952a-8eb5-47dc-9173-27f0a5991e54 2019-10-08 17:16:58.871387 17529 490 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.1288E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1288.0 187.149.44.182 88de668c-3745-41e6-b8ed-07c8bc042073 2019-10-08 17:17:12.755422 17530 1679 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 490\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.199E3\nmove_type: '1'\nsale_id: 1070\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1234'\n 1 movimiento de efectivo por venta con folio PV2-V-441 187.149.44.182 d55a8d34-e348-4700-bec8-e93bedc9ce38 2019-10-08 17:18:23.925645 17531 1070 Sale \N \N 8 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.44.182 caf88d30-858c-4ce3-8fb7-dc511161850b 2019-10-08 17:18:28.838246 17532 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-08 00:22:20.415722000 Z\n- &1 2019-10-08 06:00:12.260670000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-08 19:40:30.321150252 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\nsign_in_count:\n- 713\n- 714\n 1428 \N 189.186.248.67 e3264826-d53f-403c-ba06-0522e8c41182 2019-10-08 19:40:30.364333 17533 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sPZoRyW9My6Jh5wD-VpL\n- uQWxdMxvsFSuBuJHjGxn\n 1429 \N 189.186.248.67 e3264826-d53f-403c-ba06-0522e8c41182 2019-10-08 19:40:30.387063 17534 1213 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 489\namount: !ruby/object:BigDecimal 18:0.34124E3\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.348E3\nstatus: 0\ndate_sale: 2019-10-08\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-64\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.248 88e1fd1f-702f-4c90-a60e-d52e21100191 2019-10-08 22:18:33.469291 17535 834 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.27E2\n- !ruby/object:BigDecimal 18:0.26E2\n 7 \N 189.186.113.248 88e1fd1f-702f-4c90-a60e-d52e21100191 2019-10-08 22:18:33.500852 17536 818 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.74E2\n- !ruby/object:BigDecimal 18:0.73E2\n 5 \N 189.186.113.248 88e1fd1f-702f-4c90-a60e-d52e21100191 2019-10-08 22:18:33.537205 17537 1213 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-64 cancelada. 189.186.113.248 cb72466a-3dd7-4123-a646-89c5c14750a7 2019-10-08 22:23:22.316015 17538 818 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.73E2\n- !ruby/object:BigDecimal 18:0.74E2\n 6 \N 189.186.113.248 cb72466a-3dd7-4123-a646-89c5c14750a7 2019-10-08 22:23:22.340348 17539 834 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.26E2\n- !ruby/object:BigDecimal 18:0.27E2\n 8 \N 189.186.113.248 cb72466a-3dd7-4123-a646-89c5c14750a7 2019-10-08 22:23:22.359268 17540 1214 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 489\namount: !ruby/object:BigDecimal 18:0.34124E3\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.348E3\nstatus: 0\ndate_sale: 2019-10-08\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-65\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.248 e5b11b30-3db7-467f-99a2-ee4bcdd4335a 2019-10-08 22:25:26.76411 17541 818 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.74E2\n- !ruby/object:BigDecimal 18:0.73E2\n 7 \N 189.186.113.248 e5b11b30-3db7-467f-99a2-ee4bcdd4335a 2019-10-08 22:25:26.800509 17542 834 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.27E2\n- !ruby/object:BigDecimal 18:0.26E2\n 9 \N 189.186.113.248 e5b11b30-3db7-467f-99a2-ee4bcdd4335a 2019-10-08 22:25:26.821706 17543 1214 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.248 bf0540c4-b384-426a-87dc-367e288ae255 2019-10-08 22:25:34.284614 17544 1680 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 489\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.348E3\nmove_type: '1'\nsale_id: 1214\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-65\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.152E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-65 189.186.113.248 bf0540c4-b384-426a-87dc-367e288ae255 2019-10-08 22:25:34.304325 17545 195 Customer \N \N 23 User \N create ---\nnick_name: DULCE ALVARADO\nphone: "(667) 410-2970"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DULCE ALVARADO fue registrado. 189.186.113.248 222f466b-8e76-4a5e-a642-462f8d575f72 2019-10-08 23:16:00.37342 17546 1215 Sale \N \N 23 User \N create ---\ncustomer_id: 195\nuser_id: 23\nopen_cash_register_id: 489\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-10-08\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-66\nexpiration_date: 2019-11-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.248 0f6d534c-8c18-45b9-8696-e6a7823a8046 2019-10-08 23:16:18.019944 17547 918 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.113.248 0f6d534c-8c18-45b9-8696-e6a7823a8046 2019-10-08 23:16:18.055923 17548 1681 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 489\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1215\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-66\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-66 189.186.113.248 07777177-36ea-4d1e-8a43-ab2238191135 2019-10-08 23:16:44.001455 17549 1215 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.113.248 62838fa8-3c10-4655-8569-a845da1711a2 2019-10-08 23:16:45.760764 17550 488 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 489\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.648E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.1159E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1659E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.113.248 7923d3da-fddd-4764-a6bf-8e19b45c3aa7 2019-10-09 00:56:15.546388 17551 489 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.113.248 7923d3da-fddd-4764-a6bf-8e19b45c3aa7 2019-10-09 00:56:15.565838 17552 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-08 06:00:12.260670000 Z\n- &1 2019-10-08 19:40:30.321150000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-09 01:21:16.965508025 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946368\n mask_addr: 4294967295\nsign_in_count:\n- 714\n- 715\n 1430 \N 200.68.182.128 88801191-3430-447a-b4a2-933afe2f9b71 2019-10-09 01:21:16.976095 17553 4 User \N \N 4 User \N update ---\nunique_session_id:\n- uQWxdMxvsFSuBuJHjGxn\n- M7HYpSA1as2gb8SphXhX\n 1431 \N 200.68.182.128 88801191-3430-447a-b4a2-933afe2f9b71 2019-10-09 01:21:16.99592 17554 489 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 488\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.7E3\nphysical_cash: !ruby/object:BigDecimal 18:0.7E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 ba1b761d-5627-484d-a0d9-3a4a0f18476d 2019-10-09 01:27:44.522705 17555 488 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 ba1b761d-5627-484d-a0d9-3a4a0f18476d 2019-10-09 01:27:44.538467 17556 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-07 16:19:24.750133000 Z\n- &1 2019-10-08 16:09:44.214375000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-09 16:08:31.575608457 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112696\n mask_addr: 4294967295\nsign_in_count:\n- 33\n- 34\n 68 \N 189.186.113.248 8ce34ba0-4b49-46fd-a67d-3f26d28879d3 2019-10-09 16:08:31.615134 17557 23 User \N \N 23 User \N update ---\nunique_session_id:\n- 2jxiPjoyg_2XFT1heNxk\n- og9szxye4s-ew28BzrTS\n 69 \N 189.186.113.248 8ce34ba0-4b49-46fd-a67d-3f26d28879d3 2019-10-09 16:08:31.639657 17558 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-07 16:11:24.281084000 Z\n- &1 2019-10-08 15:54:42.969731000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-09 16:15:42.261437411 Z\nsign_in_count:\n- 343\n- 344\n 691 \N 187.149.44.182 50fe3e8f-5d5e-4130-8a8a-06b44274db07 2019-10-09 16:15:42.269226 17559 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xUBX6PyVQAVCakpQpm2S\n- Hpr7wD2-9J8wdhzM3nxe\n 692 \N 187.149.44.182 50fe3e8f-5d5e-4130-8a8a-06b44274db07 2019-10-09 16:15:42.285033 17560 491 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.7E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 700.0 187.149.44.182 f3f1def4-1e28-4082-a8b8-536aa7bd5610 2019-10-09 16:18:56.769025 17561 492 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1159E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1159.0 189.186.113.248 083797a1-4afa-4a32-bce8-30b2b7bf7844 2019-10-09 16:53:30.99204 17562 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-10-02 01:31:17.250622000 Z\n- &1 2019-10-06 20:47:56.349268000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-09 17:02:36.797048684 Z\nsign_in_count:\n- 152\n- 153\n 308 \N 187.149.44.182 d66dfe07-94b1-44f6-a56f-e7ad4846f23e 2019-10-09 17:02:36.80325 17563 10 User \N \N 10 User \N update ---\nunique_session_id:\n- gp7Zepz_aREbrKJW8SSZ\n- Eu44dedyALWzW3pyzEYg\n 309 \N 187.149.44.182 d66dfe07-94b1-44f6-a56f-e7ad4846f23e 2019-10-09 17:02:36.817568 17564 1682 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 490\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 1030\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-429 187.149.44.182 088d6d5c-1c97-4b92-a901-5bfe10cb8172 2019-10-09 17:03:13.084464 17565 1030 Sale \N \N 10 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.44.182 45859c97-3e80-47c8-b4bb-af62cd4475c6 2019-10-09 17:03:52.908224 17566 754 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.44.182 a308406d-cbe3-4139-bb35-d9a7e84904f4 2019-10-09 19:59:15.699624 17567 754 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.44.182 494a47ac-1719-4c9c-90bd-06e138b8a020 2019-10-09 19:59:19.000214 17568 227 Transfer \N \N 10 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-10-09\nuser_id: 10\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.44.182 ce4b06c1-0e35-4732-8a06-bdd951dfd9d9 2019-10-09 19:59:19.176678 17569 227 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-09\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.44.182 6466a1ba-e144-43c2-8e0a-8cb822c8bf8e 2019-10-09 19:59:47.464313 17570 1081 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 633\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 6466a1ba-e144-43c2-8e0a-8cb822c8bf8e 2019-10-09 19:59:47.489883 17571 1216 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 491\namount: !ruby/object:BigDecimal 18:0.80434E3\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.81799E3\nstatus: 0\ndate_sale: 2019-10-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-662\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 5f475e4f-afc2-41fc-89b3-c9c73b9168dc 2019-10-09 20:00:20.963613 17573 486 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 16 \N 187.149.44.182 5f475e4f-afc2-41fc-89b3-c9c73b9168dc 2019-10-09 20:00:21.02268 17574 1216 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 a3c6d84a-c6d5-4cd3-a8d2-796e7b747a7c 2019-10-09 20:00:41.106926 17575 1683 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 491\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.81799E3\nmove_type: '1'\nsale_id: 1216\ncardnumber: 4462\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-662\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-662 187.149.44.182 a3c6d84a-c6d5-4cd3-a8d2-796e7b747a7c 2019-10-09 20:00:41.14109 17576 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-08 19:40:30.321150000 Z\n- &1 2019-10-09 01:21:16.965508000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-09 20:08:08.115978081 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946368\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946368\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\nsign_in_count:\n- 715\n- 716\n 1432 \N 189.186.248.67 ae268ef5-ee54-4234-a365-2b14f3d6e63c 2019-10-09 20:08:08.125004 17577 4 User \N \N 4 User \N update ---\nunique_session_id:\n- M7HYpSA1as2gb8SphXhX\n- ADmz8_kc4NS4dJq6x2Qq\n 1433 \N 189.186.248.67 ae268ef5-ee54-4234-a365-2b14f3d6e63c 2019-10-09 20:08:08.141865 17578 1217 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 490\namount: !ruby/object:BigDecimal 18:0.99052E3\ntax: !ruby/object:BigDecimal 18:0.15848E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1149E4\nstatus: 0\ndate_sale: 2019-10-09\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-487\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 bf49ed23-aab1-445b-bf7a-f4d2db840d3b 2019-10-09 20:22:41.03366 17579 750 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.44.182 bf49ed23-aab1-445b-bf7a-f4d2db840d3b 2019-10-09 20:22:41.057405 17580 1217 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 3fd6f24f-9eaa-418c-90af-05aa9435a17a 2019-10-09 20:23:09.452909 17581 1684 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 490\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1149E4\nmove_type: '1'\nsale_id: 1217\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-487\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-487 187.149.44.182 3fd6f24f-9eaa-418c-90af-05aa9435a17a 2019-10-09 20:23:09.473142 17582 1218 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 492\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-10-09\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-67\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.248 6eb4f7b8-6c6c-476c-aa8f-f027b536e4d2 2019-10-09 20:43:04.648477 17583 775 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.113.248 6eb4f7b8-6c6c-476c-aa8f-f027b536e4d2 2019-10-09 20:43:04.692637 17584 1218 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.248 8b4eafe1-f56e-4353-b954-8d514a6f5cce 2019-10-09 20:43:41.859291 17585 1685 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 492\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 1218\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-67\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-67 189.186.113.248 8b4eafe1-f56e-4353-b954-8d514a6f5cce 2019-10-09 20:43:41.886617 17586 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-09 01:21:16.965508000 Z\n- &1 2019-10-09 20:08:08.115978000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-09 23:10:14.575294909 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946368\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\nsign_in_count:\n- 716\n- 717\n 1434 \N 189.186.248.67 e57172a2-2bf7-44b2-9f6d-0bb07c87092b 2019-10-09 23:10:14.586952 17587 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ADmz8_kc4NS4dJq6x2Qq\n- fxh5NMHKvtrPye3GZTwZ\n 1435 \N 189.186.248.67 e57172a2-2bf7-44b2-9f6d-0bb07c87092b 2019-10-09 23:10:14.607158 17588 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-09 20:08:08.115978000 Z\n- &1 2019-10-09 23:10:14.575294000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-10 01:52:07.659906879 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 717\n- 718\n 1436 \N 187.149.44.182 0f363ee7-e61e-40e5-9b82-0549b5d46702 2019-10-10 01:52:07.667145 17589 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fxh5NMHKvtrPye3GZTwZ\n- 7WAs66KMD_8FQxT6tRiJ\n 1437 \N 187.149.44.182 0f363ee7-e61e-40e5-9b82-0549b5d46702 2019-10-10 01:52:07.687491 17590 490 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 490\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.1847E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.17E4\ncash_fund: !ruby/object:BigDecimal 18:0.1236E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2936E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.44.182 be1d7191-75d5-45f3-93b3-634f7dd1f2ef 2019-10-10 01:54:36.046144 17591 490 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 be1d7191-75d5-45f3-93b3-634f7dd1f2ef 2019-10-10 01:54:36.077839 17592 491 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 491\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.81799E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.7E3\nphysical_cash: !ruby/object:BigDecimal 18:0.7E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.44.182 87bec248-9615-45d8-a9ca-56f9c094cc29 2019-10-10 01:58:00.130448 17593 491 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.44.182 87bec248-9615-45d8-a9ca-56f9c094cc29 2019-10-10 01:58:00.143239 17619 1220 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.44.182 bed7c879-a34a-4c2b-bff1-0dd94fdc9a39 2019-10-10 18:44:08.986986 17707 1093 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.248.67 a77db4f3-2a37-4540-8ea3-f2c2055328b7 2019-10-11 03:06:24.236004 17594 492 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 492\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.1599E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.16E4\ncash_fund: !ruby/object:BigDecimal 18:0.1158E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2758E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.113.248 6f19c03c-f77b-488b-86b4-386c2fecc107 2019-10-10 02:00:07.19714 17595 492 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.113.248 6f19c03c-f77b-488b-86b4-386c2fecc107 2019-10-10 02:00:07.209022 17596 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-08 16:09:44.214375000 Z\n- &1 2019-10-09 16:08:31.575608000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-10 16:17:43.320310681 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112696\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\nsign_in_count:\n- 34\n- 35\n 70 \N 189.186.178.86 746b12cf-92ee-4797-bc3a-eea0c4d48180 2019-10-10 16:17:43.361919 17597 23 User \N \N 23 User \N update ---\nunique_session_id:\n- og9szxye4s-ew28BzrTS\n- PZ3ZVKzdL7QsjzNjrX6m\n 71 \N 189.186.178.86 746b12cf-92ee-4797-bc3a-eea0c4d48180 2019-10-10 16:17:43.389937 17598 493 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1158E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1158.0 189.186.178.86 53c4feb7-39b2-440a-88ca-ddcaa0e0ec80 2019-10-10 16:18:04.706512 17599 196 Customer \N \N 23 User \N create ---\nnick_name: DANIELA CASTRO\nphone: "(667) 755-4198"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DANIELA CASTRO fue registrado. 189.186.178.86 a5ff741e-4050-4056-ad5b-ca0f434dd47d 2019-10-10 16:36:19.430233 17600 1219 Sale \N \N 23 User \N create ---\ncustomer_id: 196\nuser_id: 23\nopen_cash_register_id: 493\namount: !ruby/object:BigDecimal 18:0.103362E4\ntax: !ruby/object:BigDecimal 18:0.16538E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-10-10\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-68\nexpiration_date: 2019-11-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.178.86 a61b1515-3ebe-47f4-8d33-99ea1dbd1a50 2019-10-10 16:37:04.839737 17601 846 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.178.86 a61b1515-3ebe-47f4-8d33-99ea1dbd1a50 2019-10-10 16:37:04.881141 17602 1686 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 493\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1219\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-68\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-68 189.186.178.86 fc5fee3d-a3b6-4138-8a15-7b0dd4c68702 2019-10-10 16:37:20.400781 17603 1219 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.178.86 7cd2ec0d-02fb-4c49-ae75-e0ed80afc313 2019-10-10 16:37:39.140513 17604 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-10-02 01:27:23.880895000 Z\n- &1 2019-10-03 01:55:31.639642000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-10 18:38:08.530107390 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183127708\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\nsign_in_count:\n- 40\n- 41\n 83 \N 187.149.44.182 87025890-d9f1-4287-a3ae-330f0e2c7e2c 2019-10-10 18:38:08.566133 17605 18 User \N \N 18 User \N update ---\nunique_session_id:\n- hfd8qF5yZdEsyKk6k28G\n- aJ-PyEUSpJPh6GjRSqVa\n 84 \N 187.149.44.182 87025890-d9f1-4287-a3ae-330f0e2c7e2c 2019-10-10 18:38:08.589847 17606 814 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 7 \N 187.149.44.182 4125e3c4-2b67-4d65-b35c-7d1ccbd088c5 2019-10-10 18:41:59.687898 17607 814 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 187.149.44.182 5f29ff72-7aec-465d-9e9e-38d99a6d5810 2019-10-10 18:42:04.581453 17608 228 Transfer \N \N 18 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2019-10-10\nuser_id: 18\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 187.149.44.182 fd3cc8c3-dc9a-4877-8610-5632e01f321c 2019-10-10 18:42:08.919719 17609 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-08 01:08:55.525278000 Z\n- &1 2019-10-08 17:16:58.815691000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-10 18:42:26.424750137 Z\nsign_in_count:\n- 51\n- 52\n 107 \N 187.149.44.182 161a7c75-f099-48fb-91a5-e7e55e8db1ca 2019-10-10 18:42:26.430372 17610 8 User \N \N 8 User \N update ---\nunique_session_id:\n- YxUddzjLsKoxu2FYjzmi\n- 3hx91EYeGmy-Jtb6HHF3\n 108 \N 187.149.44.182 161a7c75-f099-48fb-91a5-e7e55e8db1ca 2019-10-10 18:42:26.443153 17611 228 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-10\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.44.182 72af46f5-b8ba-4e06-bbd2-95a9ab7e840c 2019-10-10 18:42:44.307577 17612 803 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.6E1\n 11 \N 187.149.44.182 72af46f5-b8ba-4e06-bbd2-95a9ab7e840c 2019-10-10 18:42:44.324114 17613 225 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-10\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.44.182 61dfce3d-6140-4f11-a7a3-fa4819dcae4b 2019-10-10 18:42:51.669609 17614 1082 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 722\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.44.182 61dfce3d-6140-4f11-a7a3-fa4819dcae4b 2019-10-10 18:42:51.688132 17615 494 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.1236E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1236.0 187.149.44.182 d1d2575a-4f60-4f06-9c2c-4c44b96f8597 2019-10-10 18:43:01.825334 17616 1220 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 494\namount: !ruby/object:BigDecimal 18:0.1328E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1328E4\nstatus: 0\ndate_sale: 2019-10-10\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-488\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.44.182 8281337b-ce5a-458a-9683-8d1d544cb562 2019-10-10 18:43:29.283329 17617 803 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 12 \N 187.149.44.182 8281337b-ce5a-458a-9683-8d1d544cb562 2019-10-10 18:43:29.310303 17618 1039 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.44.182 8281337b-ce5a-458a-9683-8d1d544cb562 2019-10-10 18:43:29.330333 17620 1687 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 494\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nmove_type: '1'\nsale_id: 1220\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-488\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.172E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-488 187.149.44.182 bed7c879-a34a-4c2b-bff1-0dd94fdc9a39 2019-10-10 18:44:09.008589 17621 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-09 23:10:14.575294000 Z\n- &1 2019-10-10 01:52:07.659906000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-10 20:44:35.074463310 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\nsign_in_count:\n- 718\n- 719\n 1438 \N 187.149.47.175 ddb771d2-6aa7-419b-823f-4628eb0507cd 2019-10-10 20:44:35.088933 17622 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7WAs66KMD_8FQxT6tRiJ\n- tLy8wPKDFNAVk31uSsms\n 1439 \N 187.149.47.175 ddb771d2-6aa7-419b-823f-4628eb0507cd 2019-10-10 20:44:35.113082 17623 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-10 01:52:07.659906000 Z\n- &1 2019-10-10 20:44:35.074463000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-10 20:47:22.215839771 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\nsign_in_count:\n- 719\n- 720\n 1440 \N 189.186.248.67 35ffd621-27ff-4e07-8e94-8b37d2f9e88d 2019-10-10 20:47:22.224697 17624 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tLy8wPKDFNAVk31uSsms\n- "-ySSdXPHEinYCFQy_zgu"\n 1441 \N 189.186.248.67 35ffd621-27ff-4e07-8e94-8b37d2f9e88d 2019-10-10 20:47:22.241408 17625 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-10 20:44:35.074463000 Z\n- &1 2019-10-10 20:47:22.215839000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-10 20:54:00.162835852 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\nsign_in_count:\n- 720\n- 721\n 1442 \N 187.149.47.175 bab5632b-5129-4578-8272-285218ce51dd 2019-10-10 20:54:00.17143 17626 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-ySSdXPHEinYCFQy_zgu"\n- azRKdTyKDL4NuPoJVo8w\n 1443 \N 187.149.47.175 bab5632b-5129-4578-8272-285218ce51dd 2019-10-10 20:54:00.187981 17627 750 Product \N \N 4 User \N create ---\nsku: BLU-750\nname: BLS-0071\ndescription: BLUSA NEGRA APEACH CON BRILLOS ST-CT7506\nprice_base: !ruby/object:BigDecimal 18:0.28E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-750 fue creado. 187.149.47.175 66ebfe02-dbfb-42fd-88e6-737ddbfa5cb9 2019-10-10 20:57:15.226308 17628 750 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000750'\n 2 \N 187.149.47.175 66ebfe02-dbfb-42fd-88e6-737ddbfa5cb9 2019-10-10 20:57:15.257632 17629 1083 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 750\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.47.175 66ebfe02-dbfb-42fd-88e6-737ddbfa5cb9 2019-10-10 20:57:15.287714 17630 751 Product \N \N 4 User \N create ---\nsku: VES-751\nname: VST-0053\ndescription: APEACH GABARDINA COLOR ROSA PALO ST-NJ60062\nprice_base: !ruby/object:BigDecimal 18:0.43E3\nprice_sale: !ruby/object:BigDecimal 18:0.1099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-751 fue creado. 187.149.47.175 311fac66-9d9f-4e61-a16b-7ae6e6de6395 2019-10-10 20:59:46.049924 17631 751 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000751'\n 2 \N 187.149.47.175 311fac66-9d9f-4e61-a16b-7ae6e6de6395 2019-10-10 20:59:46.075595 17632 1084 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 751\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.47.175 311fac66-9d9f-4e61-a16b-7ae6e6de6395 2019-10-10 20:59:46.102254 17633 752 Product \N \N 4 User \N create ---\nsku: CON-752\nname: CJT-0002\ndescription: CONJUNTO APEACH NEGRO BRILLOSO ST-YT5152\nprice_base: !ruby/object:BigDecimal 18:0.45E3\nprice_sale: !ruby/object:BigDecimal 18:0.1129E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 10\nproduct_service_key: '01010101'\n 1 El producto CON-752 fue creado. 187.149.47.175 6e605a9b-d8be-46b2-89e4-cf5443699312 2019-10-10 21:10:47.856494 17634 752 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000752'\n 2 \N 187.149.47.175 6e605a9b-d8be-46b2-89e4-cf5443699312 2019-10-10 21:10:47.881518 17635 1085 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 752\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.47.175 6e605a9b-d8be-46b2-89e4-cf5443699312 2019-10-10 21:10:47.906892 17636 753 Product \N \N 4 User \N create ---\nsku: BLU-753\nname: BLS-0072\ndescription: BLUSA APAECH COLOR TINTA CON LENTEJUELA ST-YT6162\nprice_base: !ruby/object:BigDecimal 18:0.29E3\nprice_sale: !ruby/object:BigDecimal 18:0.729E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-753 fue creado. 187.149.47.175 03cd2860-9232-4c33-a5fd-e178af9fe8e9 2019-10-10 21:20:54.143807 17637 753 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000753'\n 2 \N 187.149.47.175 03cd2860-9232-4c33-a5fd-e178af9fe8e9 2019-10-10 21:20:54.170348 17638 1086 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 753\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.47.175 03cd2860-9232-4c33-a5fd-e178af9fe8e9 2019-10-10 21:20:54.198466 17639 754 Product \N \N 4 User \N create ---\nsku: BLU-754\nname: BLS-0073\ndescription: BLUSA APAECH NEGRA CON LENTEJUELAS Y BOTONES ST-NT1644\nprice_base: !ruby/object:BigDecimal 18:0.33E3\nprice_sale: !ruby/object:BigDecimal 18:0.825E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-754 fue creado. 187.149.47.175 908a9098-c880-4d0f-aa10-bcb5fe45a6e4 2019-10-10 21:26:27.003027 17640 754 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000754'\n 2 \N 187.149.47.175 908a9098-c880-4d0f-aa10-bcb5fe45a6e4 2019-10-10 21:26:27.027358 17641 1087 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 754\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.47.175 908a9098-c880-4d0f-aa10-bcb5fe45a6e4 2019-10-10 21:26:27.052138 17642 755 Product \N \N 4 User \N create ---\nsku: VES-755\nname: VST-0054\ndescription: APEACH VESTIDO NEGRO DE LENTEJUELAS ST-ND11375\nprice_base: !ruby/object:BigDecimal 18:0.42E3\nprice_sale: !ruby/object:BigDecimal 18:0.1129E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-755 fue creado. 187.149.47.175 20bd0674-d252-4cf0-a2d2-68e86e63dc2c 2019-10-10 21:27:12.082485 17643 755 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000755'\n 2 \N 187.149.47.175 20bd0674-d252-4cf0-a2d2-68e86e63dc2c 2019-10-10 21:27:12.106796 17644 1088 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 755\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.47.175 20bd0674-d252-4cf0-a2d2-68e86e63dc2c 2019-10-10 21:27:12.130814 17645 150 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-45\namount: !ruby/object:BigDecimal 18:0.132E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.132E5\nobservations: ''\npurchase_date: 2019-10-10\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-45 por $ 13200.0 MXN creada. 187.149.47.175 2912948a-0c56-4668-8043-8243a0187566 2019-10-10 21:27:53.152535 17646 1083 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.47.175 2912948a-0c56-4668-8043-8243a0187566 2019-10-10 21:27:53.17184 17647 1084 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.47.175 2912948a-0c56-4668-8043-8243a0187566 2019-10-10 21:27:53.191699 17648 1085 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.47.175 2912948a-0c56-4668-8043-8243a0187566 2019-10-10 21:27:53.21067 17649 1086 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.47.175 2912948a-0c56-4668-8043-8243a0187566 2019-10-10 21:27:53.229375 17650 1087 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.47.175 2912948a-0c56-4668-8043-8243a0187566 2019-10-10 21:27:53.250445 17651 1088 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.47.175 2912948a-0c56-4668-8043-8243a0187566 2019-10-10 21:27:53.269836 17652 1087 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.47.175 fbe7f1d0-45a1-44a5-822c-854814cf5940 2019-10-10 21:30:05.511289 17653 1087 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.47.175 9c4f9f99-67b7-43da-99e3-07a7a4d7e109 2019-10-10 21:30:09.441566 17654 229 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-10-10\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.47.175 dbd1d6c1-4a04-48d7-9344-3b1bb8e5754b 2019-10-10 21:30:09.962973 17655 752 Product \N \N 4 User \N update ---\ndescription:\n- CONJUNTO APEACH NEGRO BRILLOSO ST-YT5152\n- CONJUNTO APEACH NEGRO BRILLOSO ST-7494\n 3 El producto CON-752 fue modificado. 187.149.47.175 802f72ee-6f2e-4f77-a52b-bdb6dc4558c4 2019-10-10 21:32:37.870013 17656 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-08 15:54:42.969731000 Z\n- &1 2019-10-09 16:15:42.261437000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-10 21:34:00.025338834 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\nsign_in_count:\n- 344\n- 345\n 693 \N 187.149.47.175 42fefa5a-7a8d-4412-ba85-a5cc3a29cac2 2019-10-10 21:34:00.03221 17657 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Hpr7wD2-9J8wdhzM3nxe\n- ReJbs78RAQ61r-MoP9LY\n 694 \N 187.149.47.175 42fefa5a-7a8d-4412-ba85-a5cc3a29cac2 2019-10-10 21:34:00.046591 17658 495 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.7E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 700.0 187.149.47.175 7f66fcc8-24f7-43d8-8527-db12321f350e 2019-10-10 21:34:21.438482 17659 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-10-06 20:47:56.349268000 Z\n- &1 2019-10-09 17:02:36.797048000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-10 23:22:45.804539441 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\nsign_in_count:\n- 153\n- 154\n 310 \N 187.149.47.175 8e374066-8f69-49d5-9bae-1ef4abcd15a7 2019-10-10 23:22:45.817973 17660 10 User \N \N 10 User \N update ---\nunique_session_id:\n- Eu44dedyALWzW3pyzEYg\n- mL8rxByS74VaDgq21V16\n 311 \N 187.149.47.175 8e374066-8f69-49d5-9bae-1ef4abcd15a7 2019-10-10 23:22:45.84229 17661 1221 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 494\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2019-10-10\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-489\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.47.175 270d6114-ef95-4469-a8c5-7da90bb54c6a 2019-10-10 23:23:58.765861 17662 860 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.47.175 270d6114-ef95-4469-a8c5-7da90bb54c6a 2019-10-10 23:23:58.793483 17663 1221 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.47.175 72836f32-3bbf-45c8-847d-b9011c6fa253 2019-10-10 23:24:06.02743 17664 1688 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 494\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.789E3\nmove_type: '1'\nsale_id: 1221\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-489\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-489 187.149.47.175 72836f32-3bbf-45c8-847d-b9011c6fa253 2019-10-10 23:24:06.048176 17665 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-10 20:47:22.215839000 Z\n- &1 2019-10-10 20:54:00.162835000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-10 23:37:49.113998620 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\nsign_in_count:\n- 721\n- 722\n 1444 \N 189.186.248.67 b9d4173b-b436-4b35-92ff-a16517b9465f 2019-10-10 23:37:49.142728 17666 4 User \N \N 4 User \N update ---\nunique_session_id:\n- azRKdTyKDL4NuPoJVo8w\n- rY6eznKxSUdo-FZJX8mU\n 1445 \N 189.186.248.67 b9d4173b-b436-4b35-92ff-a16517b9465f 2019-10-10 23:37:49.165463 17667 1222 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 495\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2019-10-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-663\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.47.175 12465327-ce8f-4ece-9453-043822a331e9 2019-10-11 00:34:14.733576 17668 989 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.47.175 12465327-ce8f-4ece-9453-043822a331e9 2019-10-11 00:34:14.762506 17669 1222 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.47.175 b2e19878-10b6-40e2-a0c9-8e807c6ffcab 2019-10-11 00:34:19.076515 17670 1689 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 495\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 1222\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-663\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-663 187.149.47.175 b2e19878-10b6-40e2-a0c9-8e807c6ffcab 2019-10-11 00:34:19.098441 17671 1690 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 495\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 1181\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.399E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-650 187.149.47.175 32449ab9-cf38-4ed1-9951-e5d3bc4d3aad 2019-10-11 00:41:57.4078 17672 1181 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.47.175 72f4035e-1fd0-4168-ac60-20dbcc81fd3f 2019-10-11 00:41:58.964901 17673 493 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 495\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.999E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.699E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1699E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.47.175 69ce7677-b16d-42bd-a3ef-2a78192bcaf4 2019-10-11 01:24:48.247087 17674 495 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.47.175 69ce7677-b16d-42bd-a3ef-2a78192bcaf4 2019-10-11 01:24:48.26172 17675 1223 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 494\namount: !ruby/object:BigDecimal 18:0.1129E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.8E2\ntotal: !ruby/object:BigDecimal 18:0.1049E4\nstatus: 0\ndate_sale: 2019-10-10\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-490\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.47.175 d5025905-1456-40cb-b92e-52f18262c9a6 2019-10-11 01:57:13.089932 17676 1085 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.47.175 d5025905-1456-40cb-b92e-52f18262c9a6 2019-10-11 01:57:13.118558 17677 1223 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.47.175 a3dcc4dc-c5ac-4ff6-8fc3-d3e3bc4aeb02 2019-10-11 01:57:19.390733 17678 1691 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 494\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1049E4\nmove_type: '1'\nsale_id: 1223\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-490\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1049E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-490 187.149.47.175 a3dcc4dc-c5ac-4ff6-8fc3-d3e3bc4aeb02 2019-10-11 01:57:19.412772 17679 494 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 493\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.3E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.3E3\ncash_fund: !ruby/object:BigDecimal 18:0.1158E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1458E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.178.86 b085b11a-32fe-4365-81bd-ec4504e3cab8 2019-10-11 01:58:46.319521 17680 493 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.178.86 b085b11a-32fe-4365-81bd-ec4504e3cab8 2019-10-11 01:58:46.333144 17681 495 CashOut \N \N 10 User \N create ---\nopen_cash_register_id: 494\nuser_id: 10\namount_in: !ruby/object:BigDecimal 18:0.3166E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.31E4\ncash_fund: !ruby/object:BigDecimal 18:0.1302E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4402E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.47.175 1c704eb5-b6e1-4be8-90cb-b9a8e863858d 2019-10-11 02:03:11.516325 17682 494 OpenCashRegister \N \N 10 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.47.175 1c704eb5-b6e1-4be8-90cb-b9a8e863858d 2019-10-11 02:03:11.529986 17683 496 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.1302E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1302.0 187.149.47.175 0f9e350b-fe28-472a-9abc-7618cbc390b8 2019-10-11 02:03:25.37902 17705 1090 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.12E2\n 2 \N 189.186.248.67 dbdd484a-c5a4-46b7-b81f-e13460f7f1e6 2019-10-11 03:05:38.817835 17706 1091 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.12E2\n 2 \N 189.186.248.67 dbdd484a-c5a4-46b7-b81f-e13460f7f1e6 2019-10-11 03:05:38.838991 17684 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-10 20:54:00.162835000 Z\n- &1 2019-10-10 23:37:49.113998000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 02:49:33.507728496 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\nsign_in_count:\n- 722\n- 723\n 1446 \N 189.186.248.67 5775efe7-a5a3-4620-8351-a4a331484423 2019-10-11 02:49:33.51954 17685 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rY6eznKxSUdo-FZJX8mU\n- xB-BU2aimYKP7PvGz-NS\n 1447 \N 189.186.248.67 5775efe7-a5a3-4620-8351-a4a331484423 2019-10-11 02:49:33.542278 17686 756 Product \N \N 4 User \N create ---\nsku: VES-756\nname: VST-0056\ndescription: "JEALOUS TOMATE COLOR NEGRO CUADROS DORADOS ST-JD6704\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.47E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-756 fue creado. 189.186.248.67 21bced75-4ef9-43d9-9d5f-d2f269c67cb2 2019-10-11 02:55:51.239313 17687 756 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000756'\n 2 \N 189.186.248.67 21bced75-4ef9-43d9-9d5f-d2f269c67cb2 2019-10-11 02:55:51.276533 17688 1089 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 756\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.248.67 21bced75-4ef9-43d9-9d5f-d2f269c67cb2 2019-10-11 02:55:51.310413 17689 757 Product \N \N 4 User \N create ---\nsku: BLU-757\nname: BLS-0078\ndescription: "BLUSA JEULOUS TOMATO MAGENTA DE PIEL ST-JT-8536\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.31E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-757 fue creado. 189.186.248.67 edd57796-ec0a-4f61-87ef-c7fa476adfd0 2019-10-11 02:57:35.476832 17690 757 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000757'\n 2 \N 189.186.248.67 edd57796-ec0a-4f61-87ef-c7fa476adfd0 2019-10-11 02:57:35.507994 17691 1090 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 757\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.248.67 edd57796-ec0a-4f61-87ef-c7fa476adfd0 2019-10-11 02:57:35.539385 17692 758 Product \N \N 4 User \N create ---\nsku: BLU-758\nname: BLS-0080\ndescription: "BLUSA JEALOUS TOMATO HOT PINK VICTORIA SECRET ST-JT8715\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.28E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-758 fue creado. 189.186.248.67 e29c13f1-82d8-4259-9f71-8cc084c6d558 2019-10-11 02:59:08.567446 17693 758 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000758'\n 2 \N 189.186.248.67 e29c13f1-82d8-4259-9f71-8cc084c6d558 2019-10-11 02:59:08.591547 17694 1091 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 758\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.248.67 e29c13f1-82d8-4259-9f71-8cc084c6d558 2019-10-11 02:59:08.616156 17695 759 Product \N \N 4 User \N create ---\nsku: BLU-759\nname: BLS-0076\ndescription: "PANTIBLUSA JEALOUS TOMATO COLOR NEGRA Y PLATEADA ST-JT8710\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.295E3\nprice_sale: !ruby/object:BigDecimal 18:0.759E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-759 fue creado. 189.186.248.67 b47514c1-5dbc-424b-86d0-a25c7a0690c2 2019-10-11 03:00:34.558665 17696 759 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000759'\n 2 \N 189.186.248.67 b47514c1-5dbc-424b-86d0-a25c7a0690c2 2019-10-11 03:00:34.583155 17697 1092 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 759\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.248.67 b47514c1-5dbc-424b-86d0-a25c7a0690c2 2019-10-11 03:00:34.611345 17698 760 Product \N \N 4 User \N create ---\nsku: BLU-760\nname: BLS-0081\ndescription: "APEACH LENTEJUELAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.299E4\nprice_sale: !ruby/object:BigDecimal 18:0.729E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-760 fue creado. 189.186.248.67 3ca5e318-0e61-43b9-aee3-7b2e693991d7 2019-10-11 03:05:31.031103 17699 760 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000760'\n 2 \N 189.186.248.67 3ca5e318-0e61-43b9-aee3-7b2e693991d7 2019-10-11 03:05:31.059165 17700 1093 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 760\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.248.67 3ca5e318-0e61-43b9-aee3-7b2e693991d7 2019-10-11 03:05:31.087858 17701 151 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-46\namount: !ruby/object:BigDecimal 18:0.2961E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2961E5\nobservations: ''\npurchase_date: 2019-10-10\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-46 por $ 29610.0 MXN creada. 189.186.248.67 dbdd484a-c5a4-46b7-b81f-e13460f7f1e6 2019-10-11 03:05:38.712757 17702 1092 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.248.67 dbdd484a-c5a4-46b7-b81f-e13460f7f1e6 2019-10-11 03:05:38.744144 17703 1093 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.248.67 dbdd484a-c5a4-46b7-b81f-e13460f7f1e6 2019-10-11 03:05:38.77465 17704 1089 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.248.67 dbdd484a-c5a4-46b7-b81f-e13460f7f1e6 2019-10-11 03:05:38.797121 17708 1091 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 3 \N 189.186.248.67 8b51bfe7-2b44-4495-a11f-4a89a8341a5d 2019-10-11 03:06:44.054686 17709 1093 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.248.67 390069b3-10cf-4222-977d-aa72786cb634 2019-10-11 03:07:24.038729 17710 1091 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.248.67 ecca5381-017a-42d8-91f7-4f97cb1bc430 2019-10-11 03:07:27.614873 17711 230 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-10-10\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.248.67 15c44815-dad7-4129-bad0-2d7db8cc9608 2019-10-11 03:07:28.913265 17712 1091 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.248.67 8be976ab-7b81-4ce5-8b23-d507568b3acb 2019-10-11 03:07:55.418412 17713 1090 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 3 \N 189.186.248.67 9cab5412-ca5e-4828-aa72-38dd149312dc 2019-10-11 03:08:19.507411 17714 1091 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.248.67 7fb7616e-d253-41da-aba6-366ad1581f45 2019-10-11 03:08:25.529036 17715 1090 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.248.67 2c8944ae-b103-4514-9656-8e2eab9e4718 2019-10-11 03:08:28.02094 17716 231 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-10-10\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.248.67 5bba0807-250e-4c67-ab65-f25defb8b476 2019-10-11 03:08:47.153178 17717 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-10-07 18:27:17.012476000 Z\n- &1 2019-10-08 06:03:36.991663000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 03:09:45.778964387 Z\nsign_in_count:\n- 25\n- 26\n 53 \N 189.186.248.67 7f0f3514-e90e-4b2e-8f15-cee96ce912e1 2019-10-11 03:09:45.784392 17718 21 User \N \N 21 User \N update ---\nunique_session_id:\n- DzkbMbXNAT5bSyBXmBzJ\n- EEZyY7Xz5xucbGBJENxv\n 54 \N 189.186.248.67 7f0f3514-e90e-4b2e-8f15-cee96ce912e1 2019-10-11 03:09:45.80351 17719 231 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-10\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.248.67 dcfc6cbe-a9fe-4ec3-a7dd-3135956ed436 2019-10-11 03:10:08.048104 17720 1094 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 757\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.248.67 dcfc6cbe-a9fe-4ec3-a7dd-3135956ed436 2019-10-11 03:10:08.067435 17721 1095 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 758\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.248.67 dcfc6cbe-a9fe-4ec3-a7dd-3135956ed436 2019-10-11 03:10:08.086605 17722 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-10-06 16:28:55.769224000 Z\n- &1 2019-10-06 19:35:35.462058000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 03:10:21.570594980 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\nsign_in_count:\n- 9\n- 10\n 20 \N 189.186.248.67 c472611a-7dd1-4298-9a47-a7d6bb42dee8 2019-10-11 03:10:21.577514 17723 25 User \N \N 25 User \N update ---\nunique_session_id:\n- xPS-TGcXH5TQwQxHypGd\n- nsVygvXZHoeExKaY7owW\n 21 \N 189.186.248.67 c472611a-7dd1-4298-9a47-a7d6bb42dee8 2019-10-11 03:10:21.593812 17724 230 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-10\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.248.67 d29359cd-ec75-4536-a5f6-af9d4126d5f8 2019-10-11 03:10:40.981688 17725 1096 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 758\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.248.67 d29359cd-ec75-4536-a5f6-af9d4126d5f8 2019-10-11 03:10:41.000388 17726 1097 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 760\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.248.67 d29359cd-ec75-4536-a5f6-af9d4126d5f8 2019-10-11 03:10:41.018835 17727 229 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-10\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.248.67 c3366762-e173-4e06-a1c6-a3aac0ce8c90 2019-10-11 03:10:50.312985 17728 1098 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 754\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.248.67 c3366762-e173-4e06-a1c6-a3aac0ce8c90 2019-10-11 03:10:50.330913 17729 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-10 23:37:49.113998000 Z\n- &1 2019-10-11 02:49:33.507728000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 03:11:09.108443389 Z\nsign_in_count:\n- 723\n- 724\n 1448 \N 189.186.248.67 f88f7f32-fc77-4b07-ac32-c08cbcd5ee7a 2019-10-11 03:11:09.114291 17730 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xB-BU2aimYKP7PvGz-NS\n- grsN-UQzWnoP97__sTfQ\n 1449 \N 189.186.248.67 f88f7f32-fc77-4b07-ac32-c08cbcd5ee7a 2019-10-11 03:11:09.127982 17731 756 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '756'\n is_parent: false\n sku: VES-756\n name: VST-0056\n description: "JEALOUS TOMATE COLOR NEGRO CUADROS DORADOS ST-JD6704\\r\\n"\n price_base: '470.0'\n price_sale: '1199.0'\n img_product: IMG_2956_2856_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000756'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-11 02:55:51.22508'\n updated_at: &12 2019-10-11 04:24:24.434195544 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '756'\n sku: VES-756\n name: VST-0056\n description: "JEALOUS TOMATE COLOR NEGRO CUADROS DORADOS ST-JD6704\\r\\n"\n price_base: '470.00'\n price_sale: '1199.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-11 02:55:51.22508'\n updated_at: '2019-10-11 02:55:51.272818'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000756'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '756'\n type: *3\n value: 756\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-756\n type: *7\n value: VES-756\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0056\n type: *8\n value: VST-0056\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "JEALOUS TOMATE COLOR NEGRO CUADROS DORADOS ST-JD6704\\r\\n"\n type: *6\n value: "JEALOUS TOMATE COLOR NEGRO CUADROS DORADOS ST-JD6704\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '470.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.47E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1199.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1199E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_2956_2856_.jpg\n type: *2\n value: IMG_2956_2856_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000756'\n type: *2\n value: '0000756'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-11 02:55:51.22508'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_2956_2856_.jpg\n 3 El producto VES-756 fue modificado. 189.186.248.67 e2bf42bc-9d91-463e-ad60-423b977fea88 2019-10-11 04:24:24.473566 17732 750 Product \N \N 4 User \N update ---\nname:\n- BLS-0071\n- BLS-0082\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '750'\n is_parent: false\n sku: BLU-750\n name: BLS-0082\n description: BLUSA NEGRA APEACH CON BRILLOS ST-CT7506\n price_base: '280.0'\n price_sale: '699.0'\n img_product: IMG_2959_2865_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000750'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-10 20:57:15.21305'\n updated_at: &12 2019-10-11 04:34:59.386163116 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '750'\n sku: BLU-750\n name: BLS-0071\n description: BLUSA NEGRA APEACH CON BRILLOS ST-CT7506\n price_base: '280.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-10 20:57:15.21305'\n updated_at: '2019-10-10 20:57:15.254758'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000750'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '750'\n type: *3\n value: 750\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-750\n type: *7\n value: BLU-750\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0082\n type: *8\n value: BLS-0082\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA NEGRA APEACH CON BRILLOS ST-CT7506\n type: *6\n value: BLUSA NEGRA APEACH CON BRILLOS ST-CT7506\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '280.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.28E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_2959_2865_.jpg\n type: *2\n value: IMG_2959_2865_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000750'\n type: *2\n value: '0000750'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-10 20:57:15.21305'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_2959_2865_.jpg\n 3 El producto BLU-750 fue modificado. 189.186.248.67 d360c712-97b7-49ef-9d04-d7fd07d28c2c 2019-10-11 04:34:59.425987 17733 753 Product \N \N 4 User \N update ---\nname:\n- BLS-0072\n- BLS-0083\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '753'\n is_parent: false\n sku: BLU-753\n name: BLS-0083\n description: BLUSA APAECH COLOR TINTA CON LENTEJUELA ST-YT6162\n price_base: '290.0'\n price_sale: '729.0'\n img_product: IMG_2961_2869_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000753'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-10 21:20:54.132485'\n updated_at: &12 2019-10-11 04:37:59.488023080 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '753'\n sku: BLU-753\n name: BLS-0072\n description: BLUSA APAECH COLOR TINTA CON LENTEJUELA ST-YT6162\n price_base: '290.00'\n price_sale: '729.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-10 21:20:54.132485'\n updated_at: '2019-10-10 21:20:54.167284'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000753'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '753'\n type: *3\n value: 753\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-753\n type: *7\n value: BLU-753\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0083\n type: *8\n value: BLS-0083\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA APAECH COLOR TINTA CON LENTEJUELA ST-YT6162\n type: *6\n value: BLUSA APAECH COLOR TINTA CON LENTEJUELA ST-YT6162\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '290.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.29E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '729.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.729E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_2961_2869_.jpg\n type: *2\n value: IMG_2961_2869_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000753'\n type: *2\n value: '0000753'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-10 21:20:54.132485'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_2961_2869_.jpg\n 3 El producto BLU-753 fue modificado. 189.186.248.67 e766e4e4-3e6c-4988-baef-6d569fbe3e29 2019-10-11 04:37:59.527764 17734 759 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '759'\n is_parent: false\n sku: BLU-759\n name: BLS-0076\n description: "PANTIBLUSA JEALOUS TOMATO COLOR NEGRA Y PLATEADA ST-JT8710\\r\\n"\n price_base: '295.0'\n price_sale: '759.0'\n img_product: IMG_2953_2850_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000759'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-11 03:00:34.547552'\n updated_at: &12 2019-10-11 04:42:41.496218819 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '759'\n sku: BLU-759\n name: BLS-0076\n description: "PANTIBLUSA JEALOUS TOMATO COLOR NEGRA Y PLATEADA ST-JT8710\\r\\n"\n price_base: '295.00'\n price_sale: '759.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-11 03:00:34.547552'\n updated_at: '2019-10-11 03:00:34.580827'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000759'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '759'\n type: *3\n value: 759\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-759\n type: *7\n value: BLU-759\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0076\n type: *8\n value: BLS-0076\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "PANTIBLUSA JEALOUS TOMATO COLOR NEGRA Y PLATEADA\n ST-JT8710\\r\\n"\n type: *6\n value: "PANTIBLUSA JEALOUS TOMATO COLOR NEGRA Y PLATEADA ST-JT8710\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '295.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.295E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '759.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.759E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_2953_2850_.jpg\n type: *2\n value: IMG_2953_2850_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000759'\n type: *2\n value: '0000759'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-11 03:00:34.547552'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_2953_2850_.jpg\n 3 El producto BLU-759 fue modificado. 189.186.248.67 be164792-f8a5-44d2-bb91-97c4ab09af9a 2019-10-11 04:42:41.535459 17735 757 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '757'\n is_parent: false\n sku: BLU-757\n name: BLS-0078\n description: "BLUSA JEULOUS TOMATO MAGENTA DE PIEL ST-JT-8536\\r\\n"\n price_base: '310.0'\n price_sale: '799.0'\n img_product: IMG_2955_2854_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000757'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-11 02:57:35.461249'\n updated_at: &12 2019-10-11 04:44:48.771088678 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '757'\n sku: BLU-757\n name: BLS-0078\n description: "BLUSA JEULOUS TOMATO MAGENTA DE PIEL ST-JT-8536\\r\\n"\n price_base: '310.00'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-11 02:57:35.461249'\n updated_at: '2019-10-11 02:57:35.504952'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000757'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '757'\n type: *3\n value: 757\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-757\n type: *7\n value: BLU-757\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0078\n type: *8\n value: BLS-0078\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "BLUSA JEULOUS TOMATO MAGENTA DE PIEL ST-JT-8536\\r\\n"\n type: *6\n value: "BLUSA JEULOUS TOMATO MAGENTA DE PIEL ST-JT-8536\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '310.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.31E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_2955_2854_.jpg\n type: *2\n value: IMG_2955_2854_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000757'\n type: *2\n value: '0000757'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-11 02:57:35.461249'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_2955_2854_.jpg\n 3 El producto BLU-757 fue modificado. 189.186.248.67 4a24235f-c456-44bf-9ad8-1a84499f2a00 2019-10-11 04:44:48.822359 17736 758 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '758'\n is_parent: false\n sku: BLU-758\n name: BLS-0080\n description: "BLUSA JEALOUS TOMATO HOT PINK VICTORIA SECRET ST-JT8715\\r\\n"\n price_base: '280.0'\n price_sale: '699.0'\n img_product: IMG_2954_2852_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000758'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-11 02:59:08.540953'\n updated_at: &12 2019-10-11 04:47:46.503665067 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '758'\n sku: BLU-758\n name: BLS-0080\n description: "BLUSA JEALOUS TOMATO HOT PINK VICTORIA SECRET ST-JT8715\\r\\n"\n price_base: '280.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-11 02:59:08.540953'\n updated_at: '2019-10-11 02:59:08.589125'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000758'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '758'\n type: *3\n value: 758\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-758\n type: *7\n value: BLU-758\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0080\n type: *8\n value: BLS-0080\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "BLUSA JEALOUS TOMATO HOT PINK VICTORIA SECRET\n ST-JT8715\\r\\n"\n type: *6\n value: "BLUSA JEALOUS TOMATO HOT PINK VICTORIA SECRET ST-JT8715\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '280.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.28E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_2954_2852_.jpg\n type: *2\n value: IMG_2954_2852_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000758'\n type: *2\n value: '0000758'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-11 02:59:08.540953'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_2954_2852_.jpg\n 3 El producto BLU-758 fue modificado. 189.186.248.67 25bc67ce-fa2c-4ae3-b444-2eda7a7162fa 2019-10-11 04:47:46.551741 17760 25 User \N \N 25 User \N update ---\nunique_session_id:\n- nsVygvXZHoeExKaY7owW\n- Za4E1vz1S72w-N9sgQ-N\n 23 \N 189.186.248.67 06f57505-5dab-4ae0-939f-2950c57681b1 2019-10-11 05:29:12.142627 17737 761 Product \N \N 4 User \N create ---\nsku: BLU-761\nname: BLS-0074\ndescription: "BLUSA NYLON BLANCA Y NEGRA ST-T-997\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.17E3\nprice_sale: !ruby/object:BigDecimal 18:0.459E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-761 fue creado. 189.186.248.67 822fe573-e86d-4927-9d1a-7b0a8029399a 2019-10-11 05:22:03.324536 17738 761 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000761'\n 2 \N 189.186.248.67 822fe573-e86d-4927-9d1a-7b0a8029399a 2019-10-11 05:22:03.353125 17739 1099 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 761\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.248.67 822fe573-e86d-4927-9d1a-7b0a8029399a 2019-10-11 05:22:03.38284 17740 762 Product \N \N 4 User \N create ---\nsku: VES-762\nname: VST-0055\ndescription: "SANJOY VESTIDO ROSA CON PERLAS ST-SJ-18251\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.33E3\nprice_sale: !ruby/object:BigDecimal 18:0.839E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-762 fue creado. 189.186.248.67 419cdb35-31f4-49f8-b559-5ab95ab5a21c 2019-10-11 05:23:59.192645 17741 762 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000762'\n 2 \N 189.186.248.67 419cdb35-31f4-49f8-b559-5ab95ab5a21c 2019-10-11 05:23:59.221271 17742 1100 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 762\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.248.67 419cdb35-31f4-49f8-b559-5ab95ab5a21c 2019-10-11 05:23:59.245175 17743 763 Product \N \N 4 User \N create ---\nsku: VES-763\nname: VST-0057\ndescription: "LATISTE LENTEJUELAS AZUL\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.76E3\nprice_sale: !ruby/object:BigDecimal 18:0.1899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-763 fue creado. 189.186.248.67 3881639e-b4fd-4e69-bb58-788ecd5647bf 2019-10-11 05:25:21.084814 17744 763 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000763'\n 2 \N 189.186.248.67 3881639e-b4fd-4e69-bb58-788ecd5647bf 2019-10-11 05:25:21.109159 17745 1101 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 763\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.248.67 3881639e-b4fd-4e69-bb58-788ecd5647bf 2019-10-11 05:25:21.133619 17746 764 Product \N \N 4 User \N create ---\nsku: VES-764\nname: VST-0058\ndescription: LATISTE LENTEJUELA MORADA\nprice_base: !ruby/object:BigDecimal 18:0.76E3\nprice_sale: !ruby/object:BigDecimal 18:0.1899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_2957_2861_.jpg\ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-764 fue creado. 189.186.248.67 cac30512-67ca-4076-ab35-88a52ad09d05 2019-10-11 05:26:40.506843 17747 764 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000764'\n 2 \N 189.186.248.67 cac30512-67ca-4076-ab35-88a52ad09d05 2019-10-11 05:26:40.534614 17748 1102 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 764\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.248.67 cac30512-67ca-4076-ab35-88a52ad09d05 2019-10-11 05:26:40.559058 17749 152 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-47\namount: !ruby/object:BigDecimal 18:0.1314E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1314E5\nobservations: ''\npurchase_date: 2019-10-10\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-47 por $ 13140.0 MXN creada. 189.186.248.67 16f5c18c-6ae4-400c-8511-0a2057d2789d 2019-10-11 05:27:03.45575 17750 1099 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.12E2\n 2 \N 189.186.248.67 16f5c18c-6ae4-400c-8511-0a2057d2789d 2019-10-11 05:27:03.475657 17751 1100 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.248.67 16f5c18c-6ae4-400c-8511-0a2057d2789d 2019-10-11 05:27:03.496377 17752 1101 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.248.67 16f5c18c-6ae4-400c-8511-0a2057d2789d 2019-10-11 05:27:03.517436 17753 1102 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.248.67 16f5c18c-6ae4-400c-8511-0a2057d2789d 2019-10-11 05:27:03.537441 17754 1101 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.248.67 8885be09-7b76-41be-afb5-3f48b39c7656 2019-10-11 05:27:52.459345 17755 1102 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.248.67 3f51f99b-fbe3-46a2-a4fc-26fedb648d5f 2019-10-11 05:28:06.288112 17756 1101 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.248.67 b50634f0-ac09-41bf-bc43-f07cec93fe1b 2019-10-11 05:28:09.712424 17757 1102 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.248.67 5c64e0cc-5510-4d7a-86cb-30968c622e2f 2019-10-11 05:28:12.427509 17758 232 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-10-10\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.248.67 7dc3864d-6cd3-43c0-82fd-19abcc41fd92 2019-10-11 05:28:49.254311 17759 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-10-06 19:35:35.462058000 Z\n- &1 2019-10-11 03:10:21.570594000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 05:29:12.122464207 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\nsign_in_count:\n- 10\n- 11\n 22 \N 189.186.248.67 06f57505-5dab-4ae0-939f-2950c57681b1 2019-10-11 05:29:12.129577 17761 232 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-10\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.248.67 f2b596f4-5b67-4d85-a344-d6ab832de016 2019-10-11 05:29:26.447011 17762 1103 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 764\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.248.67 f2b596f4-5b67-4d85-a344-d6ab832de016 2019-10-11 05:29:26.479942 17763 1104 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 763\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.248.67 f2b596f4-5b67-4d85-a344-d6ab832de016 2019-10-11 05:29:26.499042 17764 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 02:49:33.507728000 Z\n- &1 2019-10-11 03:11:09.108443000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 05:29:46.648796549 Z\nsign_in_count:\n- 724\n- 725\n 1450 \N 189.186.248.67 6a259358-1c07-4428-afaa-3f7e30cda5ec 2019-10-11 05:29:46.654485 17765 4 User \N \N 4 User \N update ---\nunique_session_id:\n- grsN-UQzWnoP97__sTfQ\n- uxZBwGLQKhi266Q-xqkn\n 1451 \N 189.186.248.67 6a259358-1c07-4428-afaa-3f7e30cda5ec 2019-10-11 05:29:46.669019 17766 1099 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 3 \N 189.186.248.67 2ac45504-f383-4d8d-ab45-145d13963a75 2019-10-11 05:40:53.684113 17767 1099 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.248.67 84fea838-b215-41c8-bded-09cefc318853 2019-10-11 05:40:57.842925 17768 233 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-10-10\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.248.67 1e306ec8-2c24-4841-af76-f1cf349a4e09 2019-10-11 05:40:58.795469 17769 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 03:10:21.570594000 Z\n- &1 2019-10-11 05:29:12.122464000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 05:41:16.014411328 Z\nsign_in_count:\n- 11\n- 12\n 24 \N 189.186.248.67 b7e6acc9-85f6-4c68-a124-16a2c42e4fc8 2019-10-11 05:41:16.019974 17770 25 User \N \N 25 User \N update ---\nunique_session_id:\n- Za4E1vz1S72w-N9sgQ-N\n- Jb9rghSYP-7J-zNL2F_-\n 25 \N 189.186.248.67 b7e6acc9-85f6-4c68-a124-16a2c42e4fc8 2019-10-11 05:41:16.031625 17771 233 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-10\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.248.67 79ed97f8-023f-4da1-b96b-340f69588c7f 2019-10-11 05:41:28.63192 17772 1105 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 761\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.248.67 79ed97f8-023f-4da1-b96b-340f69588c7f 2019-10-11 05:41:28.651569 17773 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 03:11:09.108443000 Z\n- &1 2019-10-11 05:29:46.648796000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 05:41:47.756274259 Z\nsign_in_count:\n- 725\n- 726\n 1452 \N 189.186.248.67 20d31615-9985-4cea-a38f-7455cbfe0268 2019-10-11 05:41:47.761862 17774 4 User \N \N 4 User \N update ---\nunique_session_id:\n- uxZBwGLQKhi266Q-xqkn\n- Pvztkk_89GQPBKizfZNi\n 1453 \N 189.186.248.67 20d31615-9985-4cea-a38f-7455cbfe0268 2019-10-11 05:41:47.776179 17775 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-09 16:15:42.261437000 Z\n- &1 2019-10-10 21:34:00.025338000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 16:18:37.234736881 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\nsign_in_count:\n- 345\n- 346\n 695 \N 187.149.47.175 7bcf7601-3d52-4a5d-b26f-6cceebcd5784 2019-10-11 16:18:37.272609 17776 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ReJbs78RAQ61r-MoP9LY\n- Pqdvz8Kr76ohg9J1KYzB\n 696 \N 187.149.47.175 7bcf7601-3d52-4a5d-b26f-6cceebcd5784 2019-10-11 16:18:37.306461 17777 497 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.699E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 699.0 187.149.47.175 f92687f6-3c18-4ab1-a7f3-5933c5346c7c 2019-10-11 16:19:05.108101 17778 790 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.47.175 0b768526-fed4-4cbd-b935-f735b5b8f01c 2019-10-11 16:20:03.056899 17779 790 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.47.175 20c44d96-3b6d-4159-bf23-d8326e26dd90 2019-10-11 16:20:05.913834 17780 707 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 15 \N 187.149.47.175 c6e5cf54-4eef-43b5-8661-bf5d6309ed5b 2019-10-11 16:20:17.908873 17781 707 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 16 \N 187.149.47.175 98a3701d-bad9-4a49-85c5-07c85340246d 2019-10-11 16:20:21.090901 17782 811 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.47.175 781647e3-502f-438f-ae0e-932660cc00c3 2019-10-11 16:20:32.632647 17783 811 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.47.175 28840b45-c9f8-4070-b845-234332369e0d 2019-10-11 16:20:36.000164 17784 741 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.47.175 d10d749d-89f2-44eb-9080-1955f2193362 2019-10-11 16:20:48.9603 17785 741 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.47.175 5e01393f-4f01-47ad-b0e7-5b1fbc763af8 2019-10-11 16:20:53.292739 17786 234 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-10-11\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.47.175 ddb1f3e0-5cd6-411b-a2ac-5ebe4718ef69 2019-10-11 16:21:23.337065 17787 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-10-08 06:03:36.991663000 Z\n- &1 2019-10-11 03:09:45.778964000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 17:24:25.581997015 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\nsign_in_count:\n- 26\n- 27\n 55 \N 189.186.178.86 8f22ccf3-ba8d-4a02-8572-1c905e91157c 2019-10-11 17:24:25.591992 17788 21 User \N \N 21 User \N update ---\nunique_session_id:\n- EEZyY7Xz5xucbGBJENxv\n- ax1Mq5w5pyTtzwHxYPEc\n 56 \N 189.186.178.86 8f22ccf3-ba8d-4a02-8572-1c905e91157c 2019-10-11 17:24:25.607602 17811 509 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.17E2\n- !ruby/object:BigDecimal 18:0.16E2\n 6 \N 187.149.47.175 bc331c5a-4daa-4329-aad3-d72bec0fedf0 2019-10-11 18:07:47.359738 17789 498 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1158E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1158.0 189.186.178.86 3e69aa08-f2d8-4c56-9c2a-bf6e9df076ef 2019-10-11 17:24:39.354629 17790 1224 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 498\namount: !ruby/object:BigDecimal 18:0.419E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.419E3\nstatus: 0\ndate_sale: 2019-10-11\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-69\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.178.86 bdb484b8-baaa-4d4e-ad46-186775a5ea7e 2019-10-11 17:25:38.530916 17791 827 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.178.86 bdb484b8-baaa-4d4e-ad46-186775a5ea7e 2019-10-11 17:25:38.565641 17792 1224 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.178.86 08c0936c-3173-4a41-96f9-b0e3d17d38ca 2019-10-11 17:25:48.628685 17793 1692 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 498\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.419E3\nmove_type: '1'\nsale_id: 1224\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-69\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.81E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-69 189.186.178.86 08c0936c-3173-4a41-96f9-b0e3d17d38ca 2019-10-11 17:25:48.649917 17794 1225 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 497\namount: !ruby/object:BigDecimal 18:0.75689E3\ntax: !ruby/object:BigDecimal 18:0.1211E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.87799E3\nstatus: 0\ndate_sale: 2019-10-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-664\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.47.175 3e343a50-861d-4cf9-ace1-909dd07d8b59 2019-10-11 17:48:17.678234 17795 120 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.47.175 3e343a50-861d-4cf9-ace1-909dd07d8b59 2019-10-11 17:48:17.714492 17796 486 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 17 \N 187.149.47.175 3e343a50-861d-4cf9-ace1-909dd07d8b59 2019-10-11 17:48:17.737035 17797 1225 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.47.175 9b3da011-198a-481d-a371-361c314909cd 2019-10-11 17:50:37.581211 17798 1693 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 497\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.87799E3\nmove_type: '1'\nsale_id: 1225\ncardnumber: 7639\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-664\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-664 187.149.47.175 9b3da011-198a-481d-a371-361c314909cd 2019-10-11 17:50:37.608221 17799 1226 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 497\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2019-10-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-665\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.47.175 154364fd-acdf-487f-8f24-2043bd648c19 2019-10-11 17:56:21.797262 17800 1103 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.47.175 154364fd-acdf-487f-8f24-2043bd648c19 2019-10-11 17:56:21.82555 17801 1226 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.47.175 6c579214-0f03-4e51-8f20-cb2f45215b3f 2019-10-11 17:56:45.566659 17802 1694 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 497\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1899E4\nmove_type: '1'\nsale_id: 1226\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-665\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAMANTHA\n 1 movimiento de efectivo por venta con folio PV1-V-665 187.149.47.175 6c579214-0f03-4e51-8f20-cb2f45215b3f 2019-10-11 17:56:45.587023 17803 1227 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 498\namount: !ruby/object:BigDecimal 18:0.168434E4\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.169799E4\nstatus: 0\ndate_sale: 2019-10-11\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-70\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.178.86 aa3e0083-0dea-4fd4-a9e9-7c5904eefc74 2019-10-11 18:01:25.098237 17804 858 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.178.86 aa3e0083-0dea-4fd4-a9e9-7c5904eefc74 2019-10-11 18:01:25.12296 17805 840 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.34E2\n- !ruby/object:BigDecimal 18:0.33E2\n 3 \N 189.186.178.86 aa3e0083-0dea-4fd4-a9e9-7c5904eefc74 2019-10-11 18:01:25.144409 17806 1227 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.178.86 a79b0e52-6f44-4b0b-bfde-343975eb3e07 2019-10-11 18:02:36.204132 17807 1695 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 498\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.169799E4\nmove_type: '1'\nsale_id: 1227\ncardnumber: 9125\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-70\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-70 189.186.178.86 a79b0e52-6f44-4b0b-bfde-343975eb3e07 2019-10-11 18:02:36.227131 17808 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-08 17:16:58.815691000 Z\n- &1 2019-10-10 18:42:26.424750000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 18:06:29.759597287 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\nsign_in_count:\n- 52\n- 53\n 109 \N 187.149.47.175 e630f5b9-8258-4536-b74b-ac64e6796064 2019-10-11 18:06:29.765819 17809 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 3hx91EYeGmy-Jtb6HHF3\n- DeznkNz3zPyf4yEKqJXa\n 110 \N 187.149.47.175 e630f5b9-8258-4536-b74b-ac64e6796064 2019-10-11 18:06:29.77889 17810 1228 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 496\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2697E3\ntotal: !ruby/object:BigDecimal 18:0.6293E3\nstatus: 0\ndate_sale: 2019-10-11\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-491\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.47.175 bc331c5a-4daa-4329-aad3-d72bec0fedf0 2019-10-11 18:07:47.321468 17812 1228 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.47.175 a52c2cad-aded-4885-afd3-4f17da105698 2019-10-11 18:08:20.364908 17813 1696 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 496\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.6293E3\nmove_type: '1'\nsale_id: 1228\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-491\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-491 187.149.47.175 a52c2cad-aded-4885-afd3-4f17da105698 2019-10-11 18:08:20.386519 17814 1229 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 496\namount: !ruby/object:BigDecimal 18:0.72186E3\ntax: !ruby/object:BigDecimal 18:0.7715E2\ndiscount: !ruby/object:BigDecimal 18:0.2397E3\ntotal: !ruby/object:BigDecimal 18:0.55931E3\nstatus: 0\ndate_sale: 2019-10-11\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-492\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.47.175 98620803-c23c-40e8-85ce-beacb8a1eb2e 2019-10-11 18:16:34.104882 17815 544 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.47.175 98620803-c23c-40e8-85ce-beacb8a1eb2e 2019-10-11 18:16:34.129397 17816 1229 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.47.175 a770aada-11e9-4ec8-82f4-491c70b90da1 2019-10-11 18:16:46.542368 17817 1697 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 496\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.55931E3\nmove_type: '1'\nsale_id: 1229\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-492\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.55931E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-492 187.149.47.175 a770aada-11e9-4ec8-82f4-491c70b90da1 2019-10-11 18:16:46.560646 17818 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 05:29:46.648796000 Z\n- &1 2019-10-11 05:41:47.756274000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 18:18:55.895887034 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\nsign_in_count:\n- 726\n- 727\n 1454 \N 189.186.178.86 211886ec-6815-4238-a9ce-94d09de3db1a 2019-10-11 18:18:55.902261 17819 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Pvztkk_89GQPBKizfZNi\n- FVNjZ7ehKp44Gh7mpEZY\n 1455 \N 189.186.178.86 211886ec-6815-4238-a9ce-94d09de3db1a 2019-10-11 18:18:55.91821 17820 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 05:41:47.756274000 Z\n- &1 2019-10-11 18:18:55.895887000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 18:23:40.887164741 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\nsign_in_count:\n- 727\n- 728\n 1456 \N 187.149.47.175 c5defbc3-e2a6-4adf-83e5-1c56c9572b4c 2019-10-11 18:23:40.895097 17821 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FVNjZ7ehKp44Gh7mpEZY\n- xLGjHvGQPa1FdeqMqsPj\n 1457 \N 187.149.47.175 c5defbc3-e2a6-4adf-83e5-1c56c9572b4c 2019-10-11 18:23:40.911569 17822 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 18:18:55.895887000 Z\n- &1 2019-10-11 18:23:40.887164000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 18:37:49.328408684 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\nsign_in_count:\n- 728\n- 729\n 1458 \N 187.149.47.175 e02ae7b3-7669-45ce-a946-65864fc4b706 2019-10-11 18:37:49.33629 17823 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xLGjHvGQPa1FdeqMqsPj\n- B8HNF3sf21Gk6tNB6M5K\n 1459 \N 187.149.47.175 e02ae7b3-7669-45ce-a946-65864fc4b706 2019-10-11 18:37:49.351714 17824 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 18:23:40.887164000 Z\n- &1 2019-10-11 18:37:49.328408000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 19:04:04.034839571 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\nsign_in_count:\n- 729\n- 730\n 1460 \N 189.186.178.86 c258e9bf-4f6a-4b6d-96dc-938d8d8bd83a 2019-10-11 19:04:04.042159 17825 4 User \N \N 4 User \N update ---\nunique_session_id:\n- B8HNF3sf21Gk6tNB6M5K\n- u-J2GgNHWYhsWfCjC5t2\n 1461 \N 189.186.178.86 c258e9bf-4f6a-4b6d-96dc-938d8d8bd83a 2019-10-11 19:04:04.064108 17826 765 Product \N \N 4 User \N create ---\nsku: BLU-765\nname: CHA-0007\ndescription: "CHAMARRA MICHEL GAMUZA COLOR BAIGE\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3345E3\nprice_sale: !ruby/object:BigDecimal 18:0.669E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-765 fue creado. 189.186.178.86 10a2f928-2b91-4d92-a2ca-d56db976ebb0 2019-10-11 19:04:50.479793 17827 765 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000765'\n 2 \N 189.186.178.86 10a2f928-2b91-4d92-a2ca-d56db976ebb0 2019-10-11 19:04:50.516287 17828 1106 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 765\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.178.86 10a2f928-2b91-4d92-a2ca-d56db976ebb0 2019-10-11 19:04:50.543704 17829 766 Product \N \N 4 User \N create ---\nsku: BLU-766\nname: CHA-0008\ndescription: "CHAMARRA NYLON DE LENTEJUELA NEGRA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-766 fue creado. 189.186.178.86 4534dc51-4485-4e89-a72e-c6ca85d749a9 2019-10-11 19:05:32.920707 17830 766 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000766'\n 2 \N 189.186.178.86 4534dc51-4485-4e89-a72e-c6ca85d749a9 2019-10-11 19:05:32.946341 17831 1107 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 766\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.178.86 4534dc51-4485-4e89-a72e-c6ca85d749a9 2019-10-11 19:05:32.971699 17851 773 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000773'\n 2 \N 189.186.178.86 eeb0465f-bd4c-4965-8d41-d1b13a984eb1 2019-10-11 19:11:25.37526 17852 1114 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 773\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.178.86 eeb0465f-bd4c-4965-8d41-d1b13a984eb1 2019-10-11 19:11:25.398525 17832 767 Product \N \N 4 User \N create ---\nsku: BLU-767\nname: S-0009\ndescription: "CHAMARRA ROMPEVEINTO MUY MUYAMARILLA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3445E3\nprice_sale: !ruby/object:BigDecimal 18:0.689E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-767 fue creado. 189.186.178.86 564bcbd5-494c-47e6-98b0-dc5dbb1ef1c3 2019-10-11 19:06:12.505836 17833 767 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000767'\n 2 \N 189.186.178.86 564bcbd5-494c-47e6-98b0-dc5dbb1ef1c3 2019-10-11 19:06:12.532184 17834 1108 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 767\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.178.86 564bcbd5-494c-47e6-98b0-dc5dbb1ef1c3 2019-10-11 19:06:12.56126 17835 768 Product \N \N 4 User \N create ---\nsku: BLU-768\nname: S-0008\ndescription: "CHAMARRA MUYMUY LENTEJUELA COM ESTRELLA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3995E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-768 fue creado. 189.186.178.86 304a4f9c-1b24-4a8c-a428-9868e81d238b 2019-10-11 19:07:19.331723 17836 768 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000768'\n 2 \N 189.186.178.86 304a4f9c-1b24-4a8c-a428-9868e81d238b 2019-10-11 19:07:19.356834 17837 1109 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 768\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.178.86 304a4f9c-1b24-4a8c-a428-9868e81d238b 2019-10-11 19:07:19.386079 17838 769 Product \N \N 4 User \N create ---\nsku: BLU-769\nname: CHA-0001\ndescription: "CAMARRA DE PIEL COMME\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6175E3\nprice_sale: !ruby/object:BigDecimal 18:0.1235E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-769 fue creado. 189.186.178.86 2995a2bb-8d19-4c5d-9339-99e8e9bdb6e7 2019-10-11 19:08:10.458213 17839 769 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000769'\n 2 \N 189.186.178.86 2995a2bb-8d19-4c5d-9339-99e8e9bdb6e7 2019-10-11 19:08:10.483254 17840 1110 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 769\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.178.86 2995a2bb-8d19-4c5d-9339-99e8e9bdb6e7 2019-10-11 19:08:10.51078 17841 770 Product \N \N 4 User \N create ---\nsku: BLU-770\nname: S-0016\ndescription: "CHAMARRA MUYMUY LENJEJUELA PLATA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-770 fue creado. 189.186.178.86 3b9006e2-fd74-4fdd-9b90-4f5f0b4a17d4 2019-10-11 19:08:49.283312 17842 770 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000770'\n 2 \N 189.186.178.86 3b9006e2-fd74-4fdd-9b90-4f5f0b4a17d4 2019-10-11 19:08:49.310214 17843 1111 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 770\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.178.86 3b9006e2-fd74-4fdd-9b90-4f5f0b4a17d4 2019-10-11 19:08:49.334134 17844 771 Product \N \N 4 User \N create ---\nsku: BLU-771\nname: B-0005\ndescription: "CHALECO NYLON BLANCO ANGORA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3495E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-771 fue creado. 189.186.178.86 04e3bfe3-f2c8-40e1-8614-7bcb6d4f8f88 2019-10-11 19:09:42.176626 17845 771 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000771'\n 2 \N 189.186.178.86 04e3bfe3-f2c8-40e1-8614-7bcb6d4f8f88 2019-10-11 19:09:42.202618 17846 1112 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 771\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.178.86 04e3bfe3-f2c8-40e1-8614-7bcb6d4f8f88 2019-10-11 19:09:42.227471 17847 772 Product \N \N 4 User \N create ---\nsku: BLU-772\nname: B-0105\ndescription: "BLUSA SHE + SKY BLANCA \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3495E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-772 fue creado. 189.186.178.86 2a3fc342-bc0b-423f-9566-26c4dda61e35 2019-10-11 19:10:20.600102 17848 772 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000772'\n 2 \N 189.186.178.86 2a3fc342-bc0b-423f-9566-26c4dda61e35 2019-10-11 19:10:20.62332 17849 1113 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 772\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.178.86 2a3fc342-bc0b-423f-9566-26c4dda61e35 2019-10-11 19:10:20.646679 17850 773 Product \N \N 4 User \N create ---\nsku: BLU-773\nname: B-0109\ndescription: "PANTIBLUSA BLUE S AZUL REY DE TRECIOPELO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.2395E3\nprice_sale: !ruby/object:BigDecimal 18:0.479E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-773 fue creado. 189.186.178.86 eeb0465f-bd4c-4965-8d41-d1b13a984eb1 2019-10-11 19:11:25.351707 17853 774 Product \N \N 4 User \N create ---\nsku: VES-774\nname: V-0069\ndescription: "VESTIDO LATISTE ROJO DE LENTEJUELA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-774 fue creado. 189.186.178.86 15546ee0-7308-4704-b8f2-dfda283d54a5 2019-10-11 19:12:08.9585 17854 774 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000774'\n 2 \N 189.186.178.86 15546ee0-7308-4704-b8f2-dfda283d54a5 2019-10-11 19:12:08.988447 17855 1115 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 774\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.178.86 15546ee0-7308-4704-b8f2-dfda283d54a5 2019-10-11 19:12:09.018953 17856 775 Product \N \N 4 User \N create ---\nsku: JUM-775\nname: VE-0053\ndescription: "JUMPER BLUE B NEGRO LENTEJUELA GOTA DORADA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6745E3\nprice_sale: !ruby/object:BigDecimal 18:0.1349E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 1\nproduct_service_key: '01010101'\n 1 El producto JUM-775 fue creado. 189.186.178.86 a9efcd16-9367-4f47-b156-f772ecd58f52 2019-10-11 19:13:04.718063 17857 775 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000775'\n 2 \N 189.186.178.86 a9efcd16-9367-4f47-b156-f772ecd58f52 2019-10-11 19:13:04.74287 17858 1116 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 775\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.178.86 a9efcd16-9367-4f47-b156-f772ecd58f52 2019-10-11 19:13:04.770312 17859 776 Product \N \N 4 User \N create ---\nsku: VES-776\nname: V-0072\ndescription: "VESTIDO LATISTE LENTEJUELA NEGRO,DORADO Y ROJO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-776 fue creado. 189.186.178.86 1223200e-40a0-40c2-9443-9419b607010e 2019-10-11 19:13:58.334125 17860 776 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000776'\n 2 \N 189.186.178.86 1223200e-40a0-40c2-9443-9419b607010e 2019-10-11 19:13:58.37138 17861 1117 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 776\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.178.86 1223200e-40a0-40c2-9443-9419b607010e 2019-10-11 19:13:58.394702 17862 777 Product \N \N 4 User \N create ---\nsku: VES-777\nname: V-0071\ndescription: "VESTIDO LATISTE NEGRO BRILLOS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-777 fue creado. 189.186.178.86 d2826422-48f1-4560-9152-c7b3b352f61d 2019-10-11 19:14:46.220283 17863 777 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000777'\n 2 \N 189.186.178.86 d2826422-48f1-4560-9152-c7b3b352f61d 2019-10-11 19:14:46.243976 17864 1118 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 777\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.178.86 d2826422-48f1-4560-9152-c7b3b352f61d 2019-10-11 19:14:46.267054 17865 778 Product \N \N 4 User \N create ---\nsku: VES-778\nname: V-0064\ndescription: "VESTIDO LATISTE LENTEJUELA NEGRO Y DORADO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-778 fue creado. 189.186.178.86 7ba7efc7-ce87-4dd0-b660-c20f496283b4 2019-10-11 19:15:30.062345 17866 778 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000778'\n 2 \N 189.186.178.86 7ba7efc7-ce87-4dd0-b660-c20f496283b4 2019-10-11 19:15:30.087109 17867 1119 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 778\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.178.86 7ba7efc7-ce87-4dd0-b660-c20f496283b4 2019-10-11 19:15:30.110531 17868 779 Product \N \N 4 User \N create ---\nsku: VES-779\nname: VES-0039\ndescription: "VESTIDO GLARE NEGRO CON PLATEADO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-779 fue creado. 189.186.178.86 57f8b21c-355f-4963-929e-d853d1b3be3d 2019-10-11 19:16:32.124387 17869 779 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000779'\n 2 \N 189.186.178.86 57f8b21c-355f-4963-929e-d853d1b3be3d 2019-10-11 19:16:32.148143 17870 1120 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 779\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.178.86 57f8b21c-355f-4963-929e-d853d1b3be3d 2019-10-11 19:16:32.171521 17897 782 Product \N \N 4 User \N create ---\nsku: SHO-782\nname: SHO-0021\ndescription: SHORT DE PIEL DORADO Y NEGRO\nprice_base: !ruby/object:BigDecimal 18:0.21E3\nprice_sale: !ruby/object:BigDecimal 18:0.569E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 2\nproduct_service_key: '01010101'\n 1 El producto SHO-782 fue creado. 187.149.47.175 e4d83189-98a0-4523-bb3a-4515373f02b8 2019-10-11 19:56:35.58393 17871 780 Product \N \N 4 User \N create ---\nsku: JUM-780\nname: VE-0045\ndescription: "JUMPER APEACH LENTEUELA DORADA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 1\nproduct_service_key: '01010101'\n 1 El producto JUM-780 fue creado. 189.186.178.86 cc13588e-487a-4f13-af49-2a68fc78a7e2 2019-10-11 19:17:10.022854 17872 780 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000780'\n 2 \N 189.186.178.86 cc13588e-487a-4f13-af49-2a68fc78a7e2 2019-10-11 19:17:10.048442 17873 1121 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 780\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.178.86 cc13588e-487a-4f13-af49-2a68fc78a7e2 2019-10-11 19:17:10.074603 17874 781 Product \N \N 4 User \N create ---\nsku: FAL-781\nname: F-0016\ndescription: "FALDA ATHINA LENTEJUELAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4945E3\nprice_sale: !ruby/object:BigDecimal 18:0.989E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-781 fue creado. 189.186.178.86 d145ce28-3df2-42ce-9c23-8529692a36ae 2019-10-11 19:17:55.997175 17875 781 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000781'\n 2 \N 189.186.178.86 d145ce28-3df2-42ce-9c23-8529692a36ae 2019-10-11 19:17:56.022639 17876 1122 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 781\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.178.86 d145ce28-3df2-42ce-9c23-8529692a36ae 2019-10-11 19:17:56.046626 17877 153 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-10\namount: !ruby/object:BigDecimal 18:0.28238E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.28238E5\nobservations: ''\npurchase_date: 2019-10-11\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-10 por $ 28238.0 MXN creada. 189.186.178.86 133e7de3-5f7b-4360-8ea1-85fe973f88c3 2019-10-11 19:18:09.332684 17878 1106 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.178.86 133e7de3-5f7b-4360-8ea1-85fe973f88c3 2019-10-11 19:18:09.355919 17879 1107 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.178.86 133e7de3-5f7b-4360-8ea1-85fe973f88c3 2019-10-11 19:18:09.380421 17880 1109 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.178.86 133e7de3-5f7b-4360-8ea1-85fe973f88c3 2019-10-11 19:18:09.403057 17881 1108 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.178.86 133e7de3-5f7b-4360-8ea1-85fe973f88c3 2019-10-11 19:18:09.423232 17882 1110 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.178.86 133e7de3-5f7b-4360-8ea1-85fe973f88c3 2019-10-11 19:18:09.445264 17883 1111 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.178.86 133e7de3-5f7b-4360-8ea1-85fe973f88c3 2019-10-11 19:18:09.470353 17884 1112 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.178.86 133e7de3-5f7b-4360-8ea1-85fe973f88c3 2019-10-11 19:18:09.497278 17885 1113 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.178.86 133e7de3-5f7b-4360-8ea1-85fe973f88c3 2019-10-11 19:18:09.520599 17886 1114 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.178.86 133e7de3-5f7b-4360-8ea1-85fe973f88c3 2019-10-11 19:18:09.54339 17887 1115 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.178.86 133e7de3-5f7b-4360-8ea1-85fe973f88c3 2019-10-11 19:18:09.567322 17888 1116 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.178.86 133e7de3-5f7b-4360-8ea1-85fe973f88c3 2019-10-11 19:18:09.793978 17889 1117 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.178.86 133e7de3-5f7b-4360-8ea1-85fe973f88c3 2019-10-11 19:18:09.816697 17890 1118 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.178.86 133e7de3-5f7b-4360-8ea1-85fe973f88c3 2019-10-11 19:18:09.837756 17891 1119 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.178.86 133e7de3-5f7b-4360-8ea1-85fe973f88c3 2019-10-11 19:18:09.857319 17892 1120 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.178.86 133e7de3-5f7b-4360-8ea1-85fe973f88c3 2019-10-11 19:18:09.876601 17893 1121 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.178.86 133e7de3-5f7b-4360-8ea1-85fe973f88c3 2019-10-11 19:18:09.895945 17894 1122 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.178.86 133e7de3-5f7b-4360-8ea1-85fe973f88c3 2019-10-11 19:18:09.915438 17895 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 18:37:49.328408000 Z\n- &1 2019-10-11 19:04:04.034839000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 19:52:54.134602172 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\nsign_in_count:\n- 730\n- 731\n 1462 \N 187.149.47.175 94a3abd7-9d2e-4ff6-8e03-f21b620eae95 2019-10-11 19:52:54.142241 17896 4 User \N \N 4 User \N update ---\nunique_session_id:\n- u-J2GgNHWYhsWfCjC5t2\n- nCxQ-GEmJ_sAYjaqcz4A\n 1463 \N 187.149.47.175 94a3abd7-9d2e-4ff6-8e03-f21b620eae95 2019-10-11 19:52:54.160185 17898 782 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000782'\n 2 \N 187.149.47.175 e4d83189-98a0-4523-bb3a-4515373f02b8 2019-10-11 19:56:35.61061 18272 25 User \N \N 25 User \N update ---\nunique_session_id:\n- mAduQrmm4-NJrfD3iFws\n- 2yRb5tPajHuvCUaU1uZK\n 37 \N 187.149.73.66 d3fa004c-3f80-4dad-8f33-8d792027edea 2019-10-14 19:13:24.373975 17899 154 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-14\namount: !ruby/object:BigDecimal 18:0.252E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.252E4\nobservations: ''\npurchase_date: 2019-10-11\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-14 por $ 2520.0 MXN creada. 187.149.47.175 317e2741-8007-4b25-8642-2f0b450bc0cf 2019-10-11 19:56:56.757152 17900 1230 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 496\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.269E3\ntotal: !ruby/object:BigDecimal 18:0.123E4\nstatus: 0\ndate_sale: 2019-10-11\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-493\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.47.175 97e0ae15-7a78-4f9c-86f2-52204b795f64 2019-10-11 20:01:43.273552 17901 693 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.47.175 97e0ae15-7a78-4f9c-86f2-52204b795f64 2019-10-11 20:01:43.29937 17902 1230 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.47.175 eb406181-01ef-4dca-b404-b1ff72d1c69f 2019-10-11 20:01:49.686007 17903 1698 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 496\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.123E4\nmove_type: '1'\nsale_id: 1230\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-493\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.123E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-493 187.149.47.175 eb406181-01ef-4dca-b404-b1ff72d1c69f 2019-10-11 20:01:49.705047 17904 617 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.47.175 68f2faef-4c6d-491f-a296-042a57411cb8 2019-10-11 20:15:20.974836 17905 617 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.47.175 3de9d0ed-7f35-4c24-afc5-701282c6d3d9 2019-10-11 20:15:24.339555 17906 15 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.47.175 713d6d6b-19c1-4339-8d51-82bf6cf8c7b0 2019-10-11 20:15:39.722993 17907 15 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.47.175 8c9e4286-7fa7-48c2-a17f-6f701894c784 2019-10-11 20:15:44.570559 17908 12 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.47.175 d7851da5-faac-4c57-95af-e78b37190d7a 2019-10-11 20:16:00.195974 17909 12 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.47.175 6894dc3d-606c-4559-a895-6053bfe8557d 2019-10-11 20:16:03.397101 17910 748 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.47.175 4b7bd299-c182-4fc5-8995-a1c57b93934c 2019-10-11 20:16:46.827803 17911 748 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.47.175 52b61d3b-68ae-45c2-a194-d3f1a61c4c7c 2019-10-11 20:16:51.082702 17912 784 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 9 \N 187.149.47.175 5f13f1df-c5c3-4c0c-83aa-0c23a9022c79 2019-10-11 20:17:03.06811 17913 784 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.47.175 1af41e5c-a14c-43b3-b41e-c43cc5ae24ba 2019-10-11 20:17:07.125689 17914 784 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.47.175 e40e4428-d710-48c3-a923-cab891b603a8 2019-10-11 20:17:37.120734 17915 522 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.47.175 ac559803-95d2-4192-a2af-d3c885b1ed38 2019-10-11 20:17:57.822038 17916 522 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.47.175 01c69b9c-1df1-4472-bace-25f536faf69e 2019-10-11 20:18:02.571303 17917 235 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-10-11\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO a Almacen central creado. 187.149.47.175 eb3efc00-608f-47a2-8e82-f332f3cb6d55 2019-10-11 20:19:32.035376 17918 236 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-10-11\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 187.149.47.175 04e33c08-9da1-485c-a178-bc0bc6f40b5c 2019-10-11 20:34:32.299084 17919 237 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-10-11\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 187.149.47.175 fe08995d-02fa-4041-b3bf-286db5a4afc4 2019-10-11 20:35:11.400843 17920 410 Product \N \N 4 User \N update ---\nstatus:\n- active\n- 2\n 3 El producto SHO-0021 fue desactivado. 187.149.47.175 256ce934-d675-4431-b0c9-1b81fd39ebef 2019-10-11 20:36:31.803507 17921 410 Product \N \N 4 User \N update ---\nstatus:\n- inactive\n- 0\n 4 El producto SHO-0021 fue eliminado. 187.149.47.175 b280816a-dcf1-4399-8da7-0612cf65a0bc 2019-10-11 20:36:49.254783 17922 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 19:04:04.034839000 Z\n- &1 2019-10-11 19:52:54.134602000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 20:37:58.510250041 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\nsign_in_count:\n- 731\n- 732\n 1464 \N 187.149.47.175 63f3d95c-c362-4c25-ab47-3ab00545f5b5 2019-10-11 20:37:58.516558 17923 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nCxQ-GEmJ_sAYjaqcz4A\n- auF5-ts9hcc5KxqDPnpy\n 1465 \N 187.149.47.175 63f3d95c-c362-4c25-ab47-3ab00545f5b5 2019-10-11 20:37:58.530726 17924 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 05:29:12.122464000 Z\n- &1 2019-10-11 05:41:16.014411000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 20:57:35.790052847 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\nsign_in_count:\n- 12\n- 13\n 26 \N 189.186.178.86 db7f8068-dd10-4484-b2b5-7770e3e2d2e2 2019-10-11 20:57:35.797021 17925 25 User \N \N 25 User \N update ---\nunique_session_id:\n- Jb9rghSYP-7J-zNL2F_-\n- M8Y2t1fd52eGrMsQV8gz\n 27 \N 189.186.178.86 db7f8068-dd10-4484-b2b5-7770e3e2d2e2 2019-10-11 20:57:35.810187 18273 245 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-14\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.73.66 c49ba66b-5ecc-4805-86b8-2776123ea17e 2019-10-14 19:14:00.515708 17926 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 19:52:54.134602000 Z\n- &1 2019-10-11 20:37:58.510250000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 20:58:06.391530535 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\nsign_in_count:\n- 732\n- 733\n 1466 \N 189.186.178.86 23e3397e-917f-4ab9-b7e9-aea31d899b52 2019-10-11 20:58:06.397964 17927 4 User \N \N 4 User \N update ---\nunique_session_id:\n- auF5-ts9hcc5KxqDPnpy\n- 6feqYYTMS_HDyS_FMGXe\n 1467 \N 189.186.178.86 23e3397e-917f-4ab9-b7e9-aea31d899b52 2019-10-11 20:58:06.412516 17928 954 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.178.86 918df750-b2d5-455b-aa61-10db1d0c6501 2019-10-11 20:59:16.037477 17929 954 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.178.86 1f89e937-d348-4f4d-96ed-9fcba1851582 2019-10-11 20:59:19.94036 17930 238 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-10-11\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.178.86 b12b1d87-2762-4aab-a7af-01df71f5e691 2019-10-11 20:59:20.84559 17931 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 20:37:58.510250000 Z\n- &1 2019-10-11 20:58:06.391530000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 21:07:45.902237193 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\nsign_in_count:\n- 733\n- 734\n 1468 \N 187.149.47.175 ba2d0050-36f3-4b22-b573-6324a4d3b783 2019-10-11 21:07:45.912632 17932 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6feqYYTMS_HDyS_FMGXe\n- bhRamHLCtSETvXy5uTsp\n 1469 \N 187.149.47.175 ba2d0050-36f3-4b22-b573-6324a4d3b783 2019-10-11 21:07:45.92885 17933 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-10 18:42:26.424750000 Z\n- &1 2019-10-11 18:06:29.759597000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 21:09:20.806715771 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\nsign_in_count:\n- 53\n- 54\n 111 \N 187.149.47.175 ba89bcf4-446d-4120-b892-18fc34709a9b 2019-10-11 21:09:20.813211 17934 8 User \N \N 8 User \N update ---\nunique_session_id:\n- DeznkNz3zPyf4yEKqJXa\n- faWxLSyoE__1-sAwa_RF\n 112 \N 187.149.47.175 ba89bcf4-446d-4120-b892-18fc34709a9b 2019-10-11 21:09:20.825545 17935 236 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-11\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.47.175 23393858-7e0a-407a-819c-aec464be9398 2019-10-11 21:10:25.919575 17936 1123 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 782\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.47.175 23393858-7e0a-407a-819c-aec464be9398 2019-10-11 21:10:25.94629 17937 234 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-11\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.47.175 438dd92d-52bf-4c1f-9e1e-cbd644af2e23 2019-10-11 21:10:34.238948 17938 1026 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.47.175 438dd92d-52bf-4c1f-9e1e-cbd644af2e23 2019-10-11 21:10:34.257518 17939 717 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.47.175 438dd92d-52bf-4c1f-9e1e-cbd644af2e23 2019-10-11 21:10:34.277322 17940 802 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.8E1\n 3 \N 187.149.47.175 438dd92d-52bf-4c1f-9e1e-cbd644af2e23 2019-10-11 21:10:34.301866 17941 1124 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 620\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.47.175 438dd92d-52bf-4c1f-9e1e-cbd644af2e23 2019-10-11 21:10:34.330765 17942 1231 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 496\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-10-11\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-494\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.47.175 fe0535fb-1f15-4fa9-bf80-0c9d37e92dac 2019-10-11 21:10:53.413701 17943 1123 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.47.175 fe0535fb-1f15-4fa9-bf80-0c9d37e92dac 2019-10-11 21:10:53.437203 17944 1231 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.47.175 1dee5f6e-f20d-48bf-8504-e3ff8c6a684f 2019-10-11 21:11:05.332591 17945 1699 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 496\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.569E3\nmove_type: '1'\nsale_id: 1231\ncardnumber: 1232\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-494\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-494 187.149.47.175 1dee5f6e-f20d-48bf-8504-e3ff8c6a684f 2019-10-11 21:11:05.350587 17946 783 Product \N \N 8 User \N create ---\nsku: BLU-783\nname: CHA-0001\ndescription: SUDADERA BRILLOS WILD\nprice_base: !ruby/object:BigDecimal 18:0.34E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-783 fue creado. 187.149.47.175 8c136c08-3a08-4c9a-9ec7-d98b1f795958 2019-10-11 21:20:23.096181 17947 783 Product \N \N 8 User \N update ---\nbarcode:\n- ''\n- '0000783'\n 2 \N 187.149.47.175 8c136c08-3a08-4c9a-9ec7-d98b1f795958 2019-10-11 21:20:23.122522 17948 1125 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 783\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.47.175 8c136c08-3a08-4c9a-9ec7-d98b1f795958 2019-10-11 21:20:23.149332 17993 197 Customer \N \N 8 User \N create ---\nnick_name: ALMA ROSA RUIZ\nphone: "(667) 712-6338"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ALMA ROSA RUIZ fue registrado. 187.149.47.175 281488d1-3e94-415d-8c76-38b951125e5a 2019-10-12 00:12:34.396602 17949 155 Purchase \N \N 8 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-48\namount: !ruby/object:BigDecimal 18:0.204E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.204E4\nobservations: ''\npurchase_date: 2019-10-11\nuser_id: '8'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-48 por $ 2040.0 MXN creada. 187.149.47.175 d6df96c3-5d6e-40b2-8c54-6031e2ed981b 2019-10-11 21:20:32.546125 17950 1125 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.47.175 d6df96c3-5d6e-40b2-8c54-6031e2ed981b 2019-10-11 21:20:32.566399 17951 783 Product \N \N 4 User \N update ---\nname:\n- CHA-0001\n- CHA-01\n 3 El producto BLU-783 fue modificado. 187.149.47.175 25ad4390-513c-4747-b408-ae259a6c0f91 2019-10-11 21:22:32.313188 17952 784 Product \N \N 4 User \N create ---\nsku: PAN-784\nname: PANX-0006\ndescription: LEGGINS PIEL NEGRO APEACH\nprice_base: !ruby/object:BigDecimal 18:0.26E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-784 fue creado. 187.149.47.175 015cee35-781a-4d2f-995b-1c6219d81ec6 2019-10-11 21:26:16.884746 17953 784 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000784'\n 2 \N 187.149.47.175 015cee35-781a-4d2f-995b-1c6219d81ec6 2019-10-11 21:26:16.90863 17954 1126 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 784\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.47.175 015cee35-781a-4d2f-995b-1c6219d81ec6 2019-10-11 21:26:16.932457 17955 156 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-49\namount: !ruby/object:BigDecimal 18:0.156E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.156E4\nobservations: ''\npurchase_date: 2019-10-11\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-49 por $ 1560.0 MXN creada. 187.149.47.175 3e6293ab-0720-45c6-af1e-8b240fa8ac2c 2019-10-11 21:26:24.212451 17956 1126 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.47.175 3e6293ab-0720-45c6-af1e-8b240fa8ac2c 2019-10-11 21:26:24.232047 17957 782 Product \N \N 4 User \N update ---\ndescription:\n- SHORT DE PIEL DORADO Y NEGRO\n- SHORT DE PIEL PLATA Y MORADO\n 3 El producto SHO-782 fue modificado. 187.149.47.175 fa5f2459-3128-4c3b-9111-3ccfa6381a99 2019-10-11 21:32:17.441531 17958 785 Product \N \N 4 User \N create ---\nsku: SHO-785\nname: SHO-0022\ndescription: SHORT PIEL NEGRO Y DORADO DUCHEES\nprice_base: !ruby/object:BigDecimal 18:0.2242E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 2\nproduct_service_key: '01010101'\n 1 El producto SHO-785 fue creado. 187.149.47.175 91e83707-5c11-40bf-93b1-215388b18c13 2019-10-11 22:03:44.770611 17959 785 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000785'\n 2 \N 187.149.47.175 91e83707-5c11-40bf-93b1-215388b18c13 2019-10-11 22:03:44.796681 17960 785 Product \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 3 El producto SHO-0022 fue eliminado. 187.149.47.175 0796cbf7-72fc-4d93-868d-2566251effb2 2019-10-11 22:06:36.592569 17961 786 Product \N \N 4 User \N create ---\nsku: SHO-786\nname: SHO-0022\ndescription: SHORT DE PIEL DORADO Y NEGRO DUCHEES\nprice_base: !ruby/object:BigDecimal 18:0.2242E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 2\nproduct_service_key: '01010101'\n 1 El producto SHO-786 fue creado. 187.149.47.175 657701a9-159c-49ac-ba20-feb0ccfebabe 2019-10-11 22:07:36.526774 17962 786 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000786'\n 2 \N 187.149.47.175 657701a9-159c-49ac-ba20-feb0ccfebabe 2019-10-11 22:07:36.559719 17963 157 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-15\namount: !ruby/object:BigDecimal 18:0.26904E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.26904E4\nobservations: ''\npurchase_date: 2019-10-11\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-15 por $ 2690.4 MXN creada. 187.149.47.175 fda5d524-8b10-4aef-abc1-b657f561fe6b 2019-10-11 22:07:47.173487 17964 239 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-10-11\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 187.149.47.175 b9f99a05-e52f-4593-a6d2-e0b2a6d5f248 2019-10-11 22:08:20.367048 17965 240 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-10-11\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 187.149.47.175 0dadb60e-7e29-4523-af58-bc375e666154 2019-10-11 22:08:42.125544 17966 239 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-11\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.47.175 b34026e4-83c1-4fb8-ad8b-fc8358a4698c 2019-10-11 22:09:07.669141 17967 1127 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 786\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.47.175 b34026e4-83c1-4fb8-ad8b-fc8358a4698c 2019-10-11 22:09:07.688072 17968 1231 Sale \N \N 8 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-494 cancelada. 187.149.47.175 318eb87b-1da0-49f4-a60a-151d65dcc99d 2019-10-11 22:09:23.596035 17969 1699 CashRegistersMove \N \N 8 User \N destroy ---\nopen_cash_register_id: 496\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.569E3\nmove_type: '1'\nsale_id: 1231\ncardnumber: 1232\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-494\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.47.175 318eb87b-1da0-49f4-a60a-151d65dcc99d 2019-10-11 22:09:23.61668 17970 1123 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 187.149.47.175 318eb87b-1da0-49f4-a60a-151d65dcc99d 2019-10-11 22:09:23.643141 18058 791 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000791'\n 2 \N 189.186.99.222 22309a8b-372c-4afc-a915-c5dde2560bdc 2019-10-12 20:21:26.090514 17971 1232 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 496\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-10-11\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-495\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.47.175 f9dbd6d5-b493-4539-b21a-64a776399fe1 2019-10-11 22:09:48.893411 17972 1127 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.47.175 f9dbd6d5-b493-4539-b21a-64a776399fe1 2019-10-11 22:09:48.917286 17973 1232 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.47.175 f7c325f9-40fd-42f6-ae4f-b222b5735484 2019-10-11 22:09:59.057651 17974 1700 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 496\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 1232\ncardnumber: 1236\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-495\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-495 187.149.47.175 f7c325f9-40fd-42f6-ae4f-b222b5735484 2019-10-11 22:09:59.075735 17975 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-10-03 01:55:31.639642000 Z\n- &1 2019-10-10 18:38:08.530107000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 22:12:22.232010095 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183127708\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\nsign_in_count:\n- 41\n- 42\n 85 \N 187.149.47.175 a4e848a0-e486-4143-82ea-dccf6a5b614a 2019-10-11 22:12:22.23937 17976 18 User \N \N 18 User \N update ---\nunique_session_id:\n- aJ-PyEUSpJPh6GjRSqVa\n- wKFfuxy9Kz8Zw9zzKxZ3\n 86 \N 187.149.47.175 a4e848a0-e486-4143-82ea-dccf6a5b614a 2019-10-11 22:12:22.254776 17977 240 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-11\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 187.149.47.175 dd00c349-c61a-4dcf-a8c3-f16aab235af3 2019-10-11 22:13:24.202375 17978 1128 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 786\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.47.175 dd00c349-c61a-4dcf-a8c3-f16aab235af3 2019-10-11 22:13:24.22115 17979 237 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-11\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 187.149.47.175 846e000e-b6f5-4d89-8808-9d9fd857418c 2019-10-11 22:13:34.042187 17980 1129 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 782\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.47.175 846e000e-b6f5-4d89-8808-9d9fd857418c 2019-10-11 22:13:34.06185 17981 1233 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 497\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-10-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-666\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.47.175 f25beba9-2396-48f9-b276-930a97869f8a 2019-10-11 22:30:57.332877 17982 701 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.47.175 f25beba9-2396-48f9-b276-930a97869f8a 2019-10-11 22:30:57.358253 17983 1233 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.47.175 a905574f-06c3-4576-af0a-22fc33ddf0cd 2019-10-11 22:31:33.060725 17984 1701 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 497\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 1233\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-666\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.649E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-666 187.149.47.175 a905574f-06c3-4576-af0a-22fc33ddf0cd 2019-10-11 22:31:33.079992 17985 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-10-05 22:54:46.197051000 Z\n- &1 2019-10-06 00:14:37.501860000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-11 23:09:24.890551322 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\nsign_in_count:\n- 91\n- 92\n 184 \N 187.149.47.175 9ac5e75e-b263-4338-ac8c-4a173838c6d2 2019-10-11 23:09:24.904377 17986 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Ds3iHM_y73NwkwGNA_HR\n- DykWgycpWMZRqepL29d7\n 185 \N 187.149.47.175 9ac5e75e-b263-4338-ac8c-4a173838c6d2 2019-10-11 23:09:24.927508 17987 1234 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 497\namount: !ruby/object:BigDecimal 18:0.1549E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1549E4\nstatus: 0\ndate_sale: 2019-10-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-667\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.47.175 0832c256-3cca-43e1-9daf-39503f51ba57 2019-10-11 23:29:16.475114 17988 1058 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.47.175 0832c256-3cca-43e1-9daf-39503f51ba57 2019-10-11 23:29:16.503163 17989 1234 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.47.175 523bb136-7b9e-404c-938f-fe6689092666 2019-10-11 23:29:28.014253 17990 1702 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 497\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1549E4\nmove_type: '1'\nsale_id: 1234\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-667\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1549E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-667 187.149.47.175 523bb136-7b9e-404c-938f-fe6689092666 2019-10-11 23:29:28.034302 17991 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 18:06:29.759597000 Z\n- &1 2019-10-11 21:09:20.806715000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-12 00:11:24.940253191 Z\nsign_in_count:\n- 54\n- 55\n 113 \N 187.149.47.175 1140e25f-19ca-4062-9a65-70590a5978a1 2019-10-12 00:11:24.947856 17992 8 User \N \N 8 User \N update ---\nunique_session_id:\n- faWxLSyoE__1-sAwa_RF\n- KxFa-ZkGk_aC44MxVAUk\n 114 \N 187.149.47.175 1140e25f-19ca-4062-9a65-70590a5978a1 2019-10-12 00:11:24.966862 18172 1145 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.73.66 4ddd254e-37a3-4c85-a2f2-b43a00d91f24 2019-10-13 17:11:35.995718 17994 1235 Sale \N \N 8 User \N create ---\ncustomer_id: 197\nuser_id: 8\nopen_cash_register_id: 496\namount: !ruby/object:BigDecimal 18:0.1498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1498E4\nstatus: 0\ndate_sale: 2019-10-11\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-496\nexpiration_date: 2019-11-15\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.47.175 bbf03b6a-cd71-4e94-8ace-0a8710ba6845 2019-10-12 00:13:00.035687 17995 1083 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.47.175 bbf03b6a-cd71-4e94-8ace-0a8710ba6845 2019-10-12 00:13:00.059619 17996 1125 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.47.175 bbf03b6a-cd71-4e94-8ace-0a8710ba6845 2019-10-12 00:13:00.081337 17997 1703 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 496\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 1235\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-496\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.25E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-496 187.149.47.175 5b1567ca-4469-4a7a-86a8-93710b8795bb 2019-10-12 00:13:07.716351 17998 1703 CashRegistersMove \N \N 8 User \N destroy ---\nopen_cash_register_id: 496\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 1235\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-496\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.25E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.47.175 4e86c52f-f13f-4112-a1b7-b5202a072fcd 2019-10-12 00:13:12.559913 17999 1704 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 496\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 1235\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-496\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-496 187.149.47.175 acf6f61c-fa2f-412e-bf34-a677d57d7603 2019-10-12 00:13:20.435937 18000 1235 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.47.175 041fd097-4462-4061-bbc5-0c9a816f0597 2019-10-12 00:13:22.149208 18001 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 20:58:06.391530000 Z\n- &1 2019-10-11 21:07:45.902237000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-12 01:01:36.997826909 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\nsign_in_count:\n- 734\n- 735\n 1470 \N 187.149.47.175 a6a0fc50-ba8e-4b2f-a2d9-d9f00f4794d7 2019-10-12 01:01:37.006275 18002 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bhRamHLCtSETvXy5uTsp\n- 25JscqN9PSJshN7FJt9-\n 1471 \N 187.149.47.175 a6a0fc50-ba8e-4b2f-a2d9-d9f00f4794d7 2019-10-12 01:01:37.025052 18003 196 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 497\nquantity: !ruby/object:BigDecimal 18:0.1E3\nstatus: 1\nobservations: kiko\nexpense_date: 2019-10-11\nexpense_code: PV1-E-149\n 1 Egreso por 100.0 registrado 187.149.47.175 7032fe8f-7705-44db-ada8-683b6051523e 2019-10-12 01:19:48.864516 18004 1705 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 497\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 196\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.47.175 7032fe8f-7705-44db-ada8-683b6051523e 2019-10-12 01:19:48.889713 18005 496 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 497\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.497499E4\namount_out: !ruby/object:BigDecimal 18:0.1E3\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.21E4\ncash_fund: !ruby/object:BigDecimal 18:0.697E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2797E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.47.175 06c2e4f9-b451-432b-87e0-97e1fc6fddf7 2019-10-12 01:24:04.216324 18006 497 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.47.175 06c2e4f9-b451-432b-87e0-97e1fc6fddf7 2019-10-12 01:24:04.234511 18007 497 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 496\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.341761E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.213E4\ncash_fund: !ruby/object:BigDecimal 18:0.136131E4\nphysical_cash: !ruby/object:BigDecimal 18:0.349131E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.47.175 fbe18a8b-93d2-4849-a83d-36a2aac7f98b 2019-10-12 01:39:44.977816 18008 496 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.47.175 fbe18a8b-93d2-4849-a83d-36a2aac7f98b 2019-10-12 01:39:44.993222 18009 498 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 498\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.211699E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.1055E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1555E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.178.86 1fe3ba0d-a2d6-4684-9fe3-b689906d0b9b 2019-10-12 02:09:16.228841 18010 498 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.178.86 1fe3ba0d-a2d6-4684-9fe3-b689906d0b9b 2019-10-12 02:09:16.246581 18011 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 21:07:45.902237000 Z\n- &1 2019-10-12 01:01:36.997826000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-12 02:36:03.721588535 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\nsign_in_count:\n- 735\n- 736\n 1472 \N 189.186.52.209 a6dd73b3-63a7-44ec-944d-192b1b3a7239 2019-10-12 02:36:03.753642 18012 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 25JscqN9PSJshN7FJt9-\n- tbb9LcLYfG8WSeuLZ1rm\n 1473 \N 189.186.52.209 a6dd73b3-63a7-44ec-944d-192b1b3a7239 2019-10-12 02:36:03.780381 18013 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-10-12 15:42:39.914537266 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 187.149.73.66 66ce3b7b-1222-418f-ab35-e61887e8304e 2019-10-12 15:42:39.950457 18014 24 User \N \N 24 User \N update ---\nunique_session_id:\n- \n- F9xv8D6HpY9orEieeKJh\n 3 \N 187.149.73.66 66ce3b7b-1222-418f-ab35-e61887e8304e 2019-10-12 15:42:39.973928 18173 1145 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.73.66 ccccbb40-3233-45db-aa89-187fff1e7ab7 2019-10-13 17:11:48.504136 18015 499 OpenCashRegister \N \N 24 User \N create ---\ncash_register_id: 2\nuser_id: 24\ninitial_cash: !ruby/object:BigDecimal 18:0.136131E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1361.31 187.149.73.66 cb2c23d2-ffff-4d3a-998b-35b253856bcf 2019-10-12 15:42:45.738199 18016 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 21:09:20.806715000 Z\n- &1 2019-10-12 00:11:24.940253000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-12 17:02:48.296624412 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\nsign_in_count:\n- 55\n- 56\n 115 \N 189.186.99.222 636e43d5-c1f9-4b2d-a0d8-84e675dda174 2019-10-12 17:02:48.306263 18017 8 User \N \N 8 User \N update ---\nunique_session_id:\n- KxFa-ZkGk_aC44MxVAUk\n- "-z-ZhKSSoScuvUzaxJZH"\n 116 \N 189.186.99.222 636e43d5-c1f9-4b2d-a0d8-84e675dda174 2019-10-12 17:02:48.323436 18018 17 Seller \N \N 8 User \N create ---\npointsale_id: 2\nname: 'MARICRUZ '\nlast_name: BUSTAMANTE\nstatus: 1\n 1 El vendedor MARICRUZ BUSTAMANTE fue registrado. 189.186.99.222 bf521ac7-e036-4993-be9e-3a9c7dff3a9a 2019-10-12 17:03:18.702633 18019 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-12 01:01:36.997826000 Z\n- &1 2019-10-12 02:36:03.721588000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-12 18:28:49.323538134 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\nsign_in_count:\n- 736\n- 737\n 1474 \N 189.186.99.222 3ece830e-1871-4b6e-8c2d-77b5746c9bed 2019-10-12 18:28:49.334734 18020 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tbb9LcLYfG8WSeuLZ1rm\n- UaRLeyqJkeXTn7yzp_QM\n 1475 \N 189.186.99.222 3ece830e-1871-4b6e-8c2d-77b5746c9bed 2019-10-12 18:28:49.354988 18021 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-12 02:36:03.721588000 Z\n- &1 2019-10-12 18:28:49.323538000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-12 18:31:46.629239031 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\nsign_in_count:\n- 737\n- 738\n 1476 \N 189.186.52.209 acd76dfd-08f2-447a-bdb3-1109115cf99a 2019-10-12 18:31:46.639411 18022 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UaRLeyqJkeXTn7yzp_QM\n- gf51F75pRYe32xFyrQVQ\n 1477 \N 189.186.52.209 acd76dfd-08f2-447a-bdb3-1109115cf99a 2019-10-12 18:31:46.656452 18023 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-12 18:28:49.323538000 Z\n- &1 2019-10-12 18:31:46.629239000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-12 18:42:10.852669152 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\nsign_in_count:\n- 738\n- 739\n 1478 \N 189.186.99.222 2c94f3fe-1101-4453-9dab-502502f347d5 2019-10-12 18:42:10.86161 18024 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gf51F75pRYe32xFyrQVQ\n- DL63Rxu3BFTcXQ1W9Q1z\n 1479 \N 189.186.99.222 2c94f3fe-1101-4453-9dab-502502f347d5 2019-10-12 18:42:10.879762 18025 787 Product \N \N 4 User \N create ---\nsku: BLU-787\nname: BLS-0077\ndescription: BLUSA DECO RAYADA COLORES TIERRA\nprice_base: !ruby/object:BigDecimal 18:0.27E3\nprice_sale: !ruby/object:BigDecimal 18:0.649E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-787 fue creado. 189.186.99.222 afefd289-7e2d-4e47-be2f-8826965d674d 2019-10-12 18:42:55.643837 18026 787 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000787'\n 2 \N 189.186.99.222 afefd289-7e2d-4e47-be2f-8826965d674d 2019-10-12 18:42:55.673097 18027 1130 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 787\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.99.222 afefd289-7e2d-4e47-be2f-8826965d674d 2019-10-12 18:42:55.706806 18028 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 03:09:45.778964000 Z\n- &1 2019-10-11 17:24:25.581997000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-12 18:44:49.880189728 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\nsign_in_count:\n- 27\n- 28\n 57 \N 189.186.99.222 15f55802-8c4f-40e2-bb41-70d4c3a78b3f 2019-10-12 18:44:49.888292 18029 21 User \N \N 21 User \N update ---\nunique_session_id:\n- ax1Mq5w5pyTtzwHxYPEc\n- MUm8D7vpojdg_7BzuyHQ\n 58 \N 189.186.99.222 15f55802-8c4f-40e2-bb41-70d4c3a78b3f 2019-10-12 18:44:49.902725 18030 158 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-50\namount: !ruby/object:BigDecimal 18:0.162E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.162E4\nobservations: ''\npurchase_date: 2019-10-12\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-50 por $ 1620.0 MXN creada. 189.186.99.222 ee1dd9f9-f005-4480-ad31-cc83270008a8 2019-10-12 18:50:25.408705 18031 1130 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.99.222 ee1dd9f9-f005-4480-ad31-cc83270008a8 2019-10-12 18:50:25.43046 18032 1102 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.99.222 53a5140c-e02d-4fab-9267-cc3654ab4ce2 2019-10-12 18:52:17.458048 18033 1102 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.99.222 000beb60-95b3-4093-b309-333dfd16b611 2019-10-12 18:52:20.365838 18034 241 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-10-12\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.99.222 394c2572-f49b-4238-83ac-f76b8b7a8d4b 2019-10-12 18:52:21.430678 18035 241 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-12\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.99.222 ffe0f477-d410-427c-9016-710671eae807 2019-10-12 18:53:19.439751 18036 1131 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 764\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.99.222 ffe0f477-d410-427c-9016-710671eae807 2019-10-12 18:53:19.462039 18037 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-10 21:34:00.025338000 Z\n- &1 2019-10-11 16:18:37.234736000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-12 19:34:45.379730447 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\nsign_in_count:\n- 346\n- 347\n 697 \N 187.149.73.66 a4df7aa0-fbf5-4d43-a402-76a4d0b0ca24 2019-10-12 19:34:45.406287 18038 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Pqdvz8Kr76ohg9J1KYzB\n- s3Yv5ceFuDtXdMuhSp5c\n 698 \N 187.149.73.66 a4df7aa0-fbf5-4d43-a402-76a4d0b0ca24 2019-10-12 19:34:45.425554 18039 500 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.697E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 697.0 187.149.73.66 76a4b186-907a-462a-bedf-5373e122e4d2 2019-10-12 19:38:06.234673 18040 1236 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 500\namount: !ruby/object:BigDecimal 18:0.55762E3\ntax: !ruby/object:BigDecimal 18:0.4138E2\ndiscount: !ruby/object:BigDecimal 18:0.299E3\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2019-10-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-668\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.73.66 95f7b3e6-f4fa-43c5-a69e-74104155c237 2019-10-12 19:38:38.303394 18041 194 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.73.66 95f7b3e6-f4fa-43c5-a69e-74104155c237 2019-10-12 19:38:38.330559 18042 1236 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.73.66 31d2d678-dfb5-471c-b7c4-3b5bd335e863 2019-10-12 19:38:44.248279 18043 1706 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 500\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 1236\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-668\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-668 187.149.73.66 31d2d678-dfb5-471c-b7c4-3b5bd335e863 2019-10-12 19:38:44.269 18044 788 Product \N \N 4 User \N create ---\nsku: FAL-788\nname: FLD-0012\ndescription: DUCH'ESS FALDA NEGRA DE PIEL CON SIERRES\nprice_base: !ruby/object:BigDecimal 18:0.224E3\nprice_sale: !ruby/object:BigDecimal 18:0.589E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-788 fue creado. 189.186.99.222 6538cca0-d6f0-45f8-a4f8-905240b63fbe 2019-10-12 20:14:17.077403 18045 788 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000788'\n 2 \N 189.186.99.222 6538cca0-d6f0-45f8-a4f8-905240b63fbe 2019-10-12 20:14:17.107483 18046 1132 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 788\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.99.222 6538cca0-d6f0-45f8-a4f8-905240b63fbe 2019-10-12 20:14:17.135185 18047 789 Product \N \N 4 User \N create ---\nsku: FAL-789\nname: FLD-0015\ndescription: 2W FALDA PIEL SINTETICA CON CHINO AMARILLA Y NEGRA ST-IS0107\nprice_base: !ruby/object:BigDecimal 18:0.224E3\nprice_sale: !ruby/object:BigDecimal 18:0.549E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-789 fue creado. 189.186.99.222 a351a9da-7cb3-4d86-a6e3-126ce530f562 2019-10-12 20:14:57.727239 18048 789 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000789'\n 2 \N 189.186.99.222 a351a9da-7cb3-4d86-a6e3-126ce530f562 2019-10-12 20:14:57.752041 18049 1133 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 789\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.99.222 a351a9da-7cb3-4d86-a6e3-126ce530f562 2019-10-12 20:14:57.777642 18050 790 Product \N \N 4 User \N create ---\nsku: FAL-790\nname: FLD-0016\ndescription: NYLON 3/4 DE PIEL DORADA Y NEGRA ST-49012\nprice_base: !ruby/object:BigDecimal 18:0.33E3\nprice_sale: !ruby/object:BigDecimal 18:0.829E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-790 fue creado. 189.186.99.222 75cc5686-87d7-44f5-8640-4047ebf3c1cf 2019-10-12 20:16:24.665896 18051 790 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000790'\n 2 \N 189.186.99.222 75cc5686-87d7-44f5-8640-4047ebf3c1cf 2019-10-12 20:16:24.690402 18052 1134 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 790\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.99.222 75cc5686-87d7-44f5-8640-4047ebf3c1cf 2019-10-12 20:16:24.715155 18053 159 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-11\namount: !ruby/object:BigDecimal 18:0.9336E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9336E4\nobservations: ''\npurchase_date: 2019-10-12\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-11 por $ 9336.0 MXN creada. 189.186.99.222 eb016322-3dba-4df9-a8c5-66af6769d47f 2019-10-12 20:17:07.211956 18054 1132 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.12E2\n 2 \N 189.186.99.222 eb016322-3dba-4df9-a8c5-66af6769d47f 2019-10-12 20:17:07.232772 18055 1133 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.12E2\n 2 \N 189.186.99.222 eb016322-3dba-4df9-a8c5-66af6769d47f 2019-10-12 20:17:07.253602 18056 1134 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.12E2\n 2 \N 189.186.99.222 eb016322-3dba-4df9-a8c5-66af6769d47f 2019-10-12 20:17:07.273697 18057 791 Product \N \N 4 User \N create ---\nsku: FAL-791\nname: FLD-0017\ndescription: NYLOC CAFE SERPIENTE ST-S976\nprice_base: !ruby/object:BigDecimal 18:0.17E3\nprice_sale: !ruby/object:BigDecimal 18:0.569E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-791 fue creado. 189.186.99.222 22309a8b-372c-4afc-a915-c5dde2560bdc 2019-10-12 20:21:26.06514 18059 1135 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 791\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.99.222 22309a8b-372c-4afc-a915-c5dde2560bdc 2019-10-12 20:21:26.114744 18060 792 Product \N \N 4 User \N create ---\nsku: PAN-792\nname: PNT-0018\ndescription: PANTALON PLATA FASHION ZONE ST-FZP-0008\nprice_base: !ruby/object:BigDecimal 18:0.295E3\nprice_sale: !ruby/object:BigDecimal 18:0.769E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-792 fue creado. 189.186.99.222 659371b6-18b0-4123-9c28-853b38f9f587 2019-10-12 20:29:15.278221 18061 792 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000792'\n 2 \N 189.186.99.222 659371b6-18b0-4123-9c28-853b38f9f587 2019-10-12 20:29:15.302358 18062 1136 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 792\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.99.222 659371b6-18b0-4123-9c28-853b38f9f587 2019-10-12 20:29:15.326295 18063 793 Product \N \N 4 User \N create ---\nsku: PAN-793\nname: PTN-0019\ndescription: PANTALON DUCHÉSS NEGRO PIEL ST-IP0147\nprice_base: !ruby/object:BigDecimal 18:0.26E3\nprice_sale: !ruby/object:BigDecimal 18:0.749E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-793 fue creado. 189.186.99.222 aed29d69-5195-473e-b4c9-d7fbfcace691 2019-10-12 20:30:02.057356 18064 793 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000793'\n 2 \N 189.186.99.222 aed29d69-5195-473e-b4c9-d7fbfcace691 2019-10-12 20:30:02.080941 18065 1137 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 793\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.99.222 aed29d69-5195-473e-b4c9-d7fbfcace691 2019-10-12 20:30:02.105308 18066 160 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-12\namount: !ruby/object:BigDecimal 18:0.537E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.537E4\nobservations: ''\npurchase_date: 2019-10-12\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-12 por $ 5370.0 MXN creada. 189.186.99.222 bb48c88c-1f54-41f5-8ff0-802b93b4d9a1 2019-10-12 20:34:48.938924 18067 1135 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.12E2\n 2 \N 189.186.99.222 bb48c88c-1f54-41f5-8ff0-802b93b4d9a1 2019-10-12 20:34:48.959385 18068 1136 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.99.222 bb48c88c-1f54-41f5-8ff0-802b93b4d9a1 2019-10-12 20:34:48.98031 18069 1137 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.99.222 bb48c88c-1f54-41f5-8ff0-802b93b4d9a1 2019-10-12 20:34:49.000489 18070 1132 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 3 \N 189.186.99.222 4566fbb8-d0e6-4ba2-9f2e-5d1075edc955 2019-10-12 20:42:43.552241 18071 1132 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.99.222 7192a9f5-b402-49f5-889a-4d035d791bbd 2019-10-12 20:42:47.482046 18072 1133 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 3 \N 189.186.99.222 9ec4d7aa-3362-4489-8bf2-a375f85cae40 2019-10-12 20:43:02.617207 18073 1133 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.99.222 7fd5c126-57a8-4621-b9ed-0435fd43cf4c 2019-10-12 20:43:05.677088 18074 242 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2019-10-12\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.99.222 d3d8a655-6977-4ca6-ad1a-19467ec820e0 2019-10-12 20:43:31.283369 18075 1134 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 3 \N 189.186.99.222 09d19ad9-e9d8-4ea8-a94d-05c165efcf03 2019-10-12 20:43:57.886152 18076 1134 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.99.222 8528d1b5-38ee-4ee1-a595-64f00d5bf265 2019-10-12 20:44:00.88514 18077 1135 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 3 \N 189.186.99.222 cbc58f9b-c92f-41fc-9b55-33dbf04b0b29 2019-10-12 20:44:07.544186 18078 1135 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.99.222 ff816c6a-a02f-464d-a818-98e3479d7138 2019-10-12 20:44:10.487195 18079 243 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-10-12\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.99.222 a8440409-6977-4860-b393-50dd22af82dd 2019-10-12 20:44:13.00012 18080 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-12 00:11:24.940253000 Z\n- &1 2019-10-12 17:02:48.296624000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-12 20:45:29.764065204 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\nsign_in_count:\n- 56\n- 57\n 117 \N 189.186.99.222 4dc4be53-9da6-4267-ac9c-5049f5e7c575 2019-10-12 20:45:29.770628 18081 8 User \N \N 8 User \N update ---\nunique_session_id:\n- "-z-ZhKSSoScuvUzaxJZH"\n- a-UVR6Bv-gRybvXDBC3V\n 118 \N 189.186.99.222 4dc4be53-9da6-4267-ac9c-5049f5e7c575 2019-10-12 20:45:29.784156 18082 242 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-12\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 189.186.99.222 3d3c3c22-5c49-4c41-b823-b8c48205e8f0 2019-10-12 20:45:51.079122 18083 1138 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 789\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.99.222 3d3c3c22-5c49-4c41-b823-b8c48205e8f0 2019-10-12 20:45:51.098732 18198 717 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '717'\n is_parent: false\n sku: BOL-717\n name: 1BLCI19290\n description: BOLSA CON CADENA DORADA Y MASCADA\n price_base: '1049.5'\n price_sale: '2099.0'\n img_product: BBRO290_MULT_1_300x435.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170766172'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-09-26 23:07:45.133189'\n updated_at: &12 2019-10-13 20:16:02.297957262 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '717'\n sku: BOL-717\n name: 1BLCI19290\n description: BOLSA CON CADENA DORADA Y MASCADA\n price_base: '1049.50'\n price_sale: '2099.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-09-26 23:07:45.133189'\n updated_at: '2019-10-06 01:11:06.644067'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170766172'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '717'\n type: *3\n value: 717\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-717\n type: *7\n value: BOL-717\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCI19290\n type: *8\n value: 1BLCI19290\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CON CADENA DORADA Y MASCADA\n type: *6\n value: BOLSA CON CADENA DORADA Y MASCADA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '1049.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.10495E4\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '2099.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2099E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BBRO290_MULT_1_300x435.jpg\n type: *2\n value: BBRO290_MULT_1_300x435.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170766172'\n type: *2\n value: '7509170766172'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-09-26 23:07:45.133189'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BBRO290_MULT_1_300x435.jpg\n 3 El producto BOL-717 fue modificado. 187.149.73.66 fd43b4f8-59e5-4cb5-9a61-319fadf629a2 2019-10-13 20:16:02.338305 18084 1139 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 788\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.99.222 3d3c3c22-5c49-4c41-b823-b8c48205e8f0 2019-10-12 20:45:51.11862 18085 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 05:41:16.014411000 Z\n- &1 2019-10-11 20:57:35.790052000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-12 21:08:48.819915357 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\nsign_in_count:\n- 13\n- 14\n 28 \N 189.186.99.222 a9750ffc-fead-414d-a645-10ba798ce96a 2019-10-12 21:08:48.828046 18086 25 User \N \N 25 User \N update ---\nunique_session_id:\n- M8Y2t1fd52eGrMsQV8gz\n- xxPwbLJoqz3Zga_4avM7\n 29 \N 189.186.99.222 a9750ffc-fead-414d-a645-10ba798ce96a 2019-10-12 21:08:48.846296 18087 243 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-12\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.99.222 c230cb79-047e-48d7-ad3d-63fe2abb232b 2019-10-12 21:09:02.26399 18088 1140 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 791\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.99.222 c230cb79-047e-48d7-ad3d-63fe2abb232b 2019-10-12 21:09:02.384037 18089 1141 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 790\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.99.222 c230cb79-047e-48d7-ad3d-63fe2abb232b 2019-10-12 21:09:02.594614 18090 1237 Sale \N \N 2 User \N create ---\ncustomer_id: 180\nuser_id: 2\nopen_cash_register_id: 500\namount: !ruby/object:BigDecimal 18:0.8181E3\ntax: !ruby/object:BigDecimal 18:0.1309E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.949E3\nstatus: 0\ndate_sale: 2019-10-12\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-669\nexpiration_date: 2019-11-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.73.66 2c25a646-84d6-4b88-9eac-6dbf8647f8c1 2019-10-12 21:40:32.413042 18091 252 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.73.66 2c25a646-84d6-4b88-9eac-6dbf8647f8c1 2019-10-12 21:40:32.440227 18092 1707 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 500\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1237\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-669\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-669 187.149.73.66 f692b4e2-6960-4993-8ec7-5ea9d8b1bd27 2019-10-12 21:40:49.101669 18093 1707 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 500\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1237\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-669\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.73.66 aa54e2f2-7ce6-48ff-bd3d-2abead0b8937 2019-10-12 21:40:59.482671 18094 1708 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 500\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.301E3\nmove_type: '1'\nsale_id: 1237\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-669\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.301E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-669 187.149.73.66 73b5e286-03eb-46e2-a7ac-1dcdafe7f936 2019-10-12 21:41:34.985101 18095 1237 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.73.66 73bcfafc-e658-4834-a7eb-485990e0453b 2019-10-12 21:41:37.928552 18096 1238 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 499\namount: !ruby/object:BigDecimal 18:0.459E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.459E3\nstatus: 0\ndate_sale: 2019-10-12\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-497\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.73.66 292dea20-14ff-4bb8-845c-fc2627a215ee 2019-10-12 22:04:43.744487 18097 1099 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.73.66 292dea20-14ff-4bb8-845c-fc2627a215ee 2019-10-12 22:04:43.773993 18098 1238 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.73.66 2b7493f0-da2d-4899-8d1c-a4acb32717e6 2019-10-12 22:04:52.719853 18099 1709 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 499\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.459E3\nmove_type: '1'\nsale_id: 1238\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-497\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.46E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-497 187.149.73.66 2b7493f0-da2d-4899-8d1c-a4acb32717e6 2019-10-12 22:04:52.739229 18100 1710 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 499\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.328E3\nmove_type: '1'\nsale_id: 1098\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.172E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-450 187.149.73.66 90ba2eee-e070-4b16-ae78-6618f1ed5c77 2019-10-12 22:59:39.14185 18101 1098 Sale \N \N 24 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.73.66 4c693332-6bb4-4f2a-a409-e17a67fd123b 2019-10-12 22:59:42.256394 18102 1239 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 499\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-10-12\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-498\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.73.66 68ea3095-f003-428b-a220-86e613a1adf7 2019-10-12 23:02:29.987108 18103 665 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.73.66 68ea3095-f003-428b-a220-86e613a1adf7 2019-10-12 23:02:30.024032 18104 1239 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.73.66 3d7e2c01-fe42-40b4-a67d-8efda79c32b6 2019-10-12 23:02:39.924027 18105 1711 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 499\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 1239\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-498\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.401E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-498 187.149.73.66 3d7e2c01-fe42-40b4-a67d-8efda79c32b6 2019-10-12 23:02:39.943101 18106 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-12 18:31:46.629239000 Z\n- &1 2019-10-12 18:42:10.852669000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-12 23:45:31.369419953 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946233\n mask_addr: 4294967295\nsign_in_count:\n- 739\n- 740\n 1480 \N 200.68.181.249 8b9c77ba-bf1d-41c9-9dfe-dce87ab80fe5 2019-10-12 23:45:31.38667 18107 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DL63Rxu3BFTcXQ1W9Q1z\n- ZoHWYF9DxAbjcqRWtTzR\n 1481 \N 200.68.181.249 8b9c77ba-bf1d-41c9-9dfe-dce87ab80fe5 2019-10-12 23:45:31.411363 18108 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-12 18:42:10.852669000 Z\n- &1 2019-10-12 23:45:31.369419000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-13 00:59:58.270046910 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946233\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946233\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\nsign_in_count:\n- 740\n- 741\n 1482 \N 189.186.99.222 383618bc-2761-4e6d-987b-b5751ccb0aea 2019-10-13 00:59:58.28099 18109 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZoHWYF9DxAbjcqRWtTzR\n- kXTsffo-6iP3ygqATh9K\n 1483 \N 189.186.99.222 383618bc-2761-4e6d-987b-b5751ccb0aea 2019-10-13 00:59:58.302813 18110 793 Product \N \N 4 User \N update ---\nname:\n- PTN-0019\n- PNT-0019\n 3 El producto PAN-793 fue modificado. 189.186.99.222 57e051ea-4b17-4e7c-958e-59b32784bbc3 2019-10-13 01:11:34.29946 18111 197 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 500\nquantity: !ruby/object:BigDecimal 18:0.1168E4\nstatus: 1\nobservations: sueldo Rocio\nexpense_date: 2019-10-12\nexpense_code: PV1-E-150\n 1 Egreso por 1168.0 registrado 187.149.73.66 ec650dd8-d350-47ea-9e3b-2a43ea6491a2 2019-10-13 01:16:11.560497 18112 1712 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 500\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1168E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 197\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.73.66 ec650dd8-d350-47ea-9e3b-2a43ea6491a2 2019-10-13 01:16:11.582275 18113 1713 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 48\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 180\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.73.66 fc6ff777-fd2f-4b78-8b25-fb2fc89840b3 2019-10-13 01:16:35.472889 18114 180 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.73.66 fc6ff777-fd2f-4b78-8b25-fb2fc89840b3 2019-10-13 01:16:35.492943 18115 381 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.73.66 fc6ff777-fd2f-4b78-8b25-fb2fc89840b3 2019-10-13 01:16:35.513484 18116 1713 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 48\n- 500\n 2 movimiento de efectivo por venta con folio PV2-V-76 187.149.73.66 fc6ff777-fd2f-4b78-8b25-fb2fc89840b3 2019-10-13 01:16:35.525152 18117 499 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 500\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.901E3\namount_out: !ruby/object:BigDecimal 18:0.1168E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.43E3\nphysical_cash: !ruby/object:BigDecimal 18:0.43E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.73.66 f04c2b1f-6482-4eab-9122-463f2f06f92e 2019-10-13 01:23:43.958936 18118 500 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.73.66 f04c2b1f-6482-4eab-9122-463f2f06f92e 2019-10-13 01:23:43.973168 18119 500 CashOut \N \N 24 User \N create ---\nopen_cash_register_id: 499\nuser_id: 24\namount_in: !ruby/object:BigDecimal 18:0.2386E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.2386E4\ncash_fund: !ruby/object:BigDecimal 18:0.1308E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3694E4\nobservations: EL FONDO QUE APARECE EN SISTEMA NO COINCIDE EN LO QUE HAY EN CAJA.....FALTAN\n 53 PESOS\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.73.66 79b8f6cd-9600-423b-b814-8de8cedb2c8a 2019-10-13 01:26:17.122744 18120 499 OpenCashRegister \N \N 24 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.73.66 79b8f6cd-9600-423b-b814-8de8cedb2c8a 2019-10-13 01:26:17.137139 18121 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-12 23:45:31.369419000 Z\n- &1 2019-10-13 00:59:58.270046000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-13 01:57:37.158717260 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946233\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\nsign_in_count:\n- 741\n- 742\n 1484 \N 189.186.52.209 d516b4a4-af8e-457c-b5ed-34d2237283aa 2019-10-13 01:57:37.172094 18122 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kXTsffo-6iP3ygqATh9K\n- oAhc5mJ6gqe9dzXV3xDp\n 1485 \N 189.186.52.209 d516b4a4-af8e-457c-b5ed-34d2237283aa 2019-10-13 01:57:37.195882 18123 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 17:24:25.581997000 Z\n- &1 2019-10-12 18:44:49.880189000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-13 02:02:19.397869636 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\nsign_in_count:\n- 28\n- 29\n 59 \N 189.186.99.222 c0dee12c-143b-4879-a65d-e09b22c458e9 2019-10-13 02:02:19.405628 18124 21 User \N \N 21 User \N update ---\nunique_session_id:\n- MUm8D7vpojdg_7BzuyHQ\n- c9PrVPzC9ZKRQtyALiZt\n 60 \N 189.186.99.222 c0dee12c-143b-4879-a65d-e09b22c458e9 2019-10-13 02:02:19.419758 18125 501 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1055E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1055.0 189.186.99.222 e2909fb9-ce58-49f6-88c6-4bad4cced80a 2019-10-13 02:10:26.806209 18199 720 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '720'\n is_parent: false\n sku: BOL-720\n name: 2BLCO19104\n description: 'BOLSA DE TELA '\n price_base: '999.5'\n price_sale: '1999.0'\n img_product: BLUN104_NEGR_1_300x435.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170754490'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-09-26 23:13:32.115196'\n updated_at: &12 2019-10-13 20:17:15.083802593 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '720'\n sku: BOL-720\n name: 2BLCO19104\n description: 'BOLSA DE TELA '\n price_base: '999.50'\n price_sale: '1999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-09-26 23:13:32.115196'\n updated_at: '2019-09-26 23:13:32.115196'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170754490'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '720'\n type: *3\n value: 720\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-720\n type: *7\n value: BOL-720\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 2BLCO19104\n type: *8\n value: 2BLCO19104\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'BOLSA DE TELA '\n type: *6\n value: 'BOLSA DE TELA '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '999.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.9995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1999E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BLUN104_NEGR_1_300x435.jpg\n type: *2\n value: BLUN104_NEGR_1_300x435.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170754490'\n type: *2\n value: '7509170754490'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-09-26 23:13:32.115196'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BLUN104_NEGR_1_300x435.jpg\n 2 El producto BOL-720 fue modificado. 187.149.73.66 4df4f42c-6011-41e6-a96b-49f1897235c2 2019-10-13 20:17:15.125693 18126 1240 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 501\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-10-12\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-71\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.99.222 49f287c9-1484-4a6c-ab3d-15bff6fff115 2019-10-13 02:11:10.842862 18127 821 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.99.222 49f287c9-1484-4a6c-ab3d-15bff6fff115 2019-10-13 02:11:10.87538 18128 1240 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.99.222 6a187ec3-8f00-4f22-ad9a-e5af7f12f67b 2019-10-13 02:11:51.645627 18129 1714 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 501\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 1240\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-71\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-71 189.186.99.222 6a187ec3-8f00-4f22-ad9a-e5af7f12f67b 2019-10-13 02:11:51.670786 18130 501 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 501\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1199E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.1054E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2254E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.99.222 f4a2e481-ab5e-470a-b714-965423c8634c 2019-10-13 02:41:36.497832 18131 501 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.99.222 f4a2e481-ab5e-470a-b714-965423c8634c 2019-10-13 02:41:36.515262 18132 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-09 16:08:31.575608000 Z\n- &1 2019-10-10 16:17:43.320310000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-13 16:13:58.150917036 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112696\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\nsign_in_count:\n- 35\n- 36\n 72 \N 189.186.99.222 4f58b2ec-6065-44a4-ad4c-f90b250a064c 2019-10-13 16:13:58.18865 18133 23 User \N \N 23 User \N update ---\nunique_session_id:\n- PZ3ZVKzdL7QsjzNjrX6m\n- okJ8fDn2Ykm8VAvaz_sG\n 73 \N 189.186.99.222 4f58b2ec-6065-44a4-ad4c-f90b250a064c 2019-10-13 16:13:58.213412 18134 502 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1054E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1054.0 189.186.99.222 64d90e44-5eba-43e2-af62-7f1b9aa31041 2019-10-13 16:15:48.278349 18135 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-13 00:59:58.270046000 Z\n- &1 2019-10-13 01:57:37.158717000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-13 16:36:25.128451368 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\nsign_in_count:\n- 742\n- 743\n 1486 \N 187.149.73.66 519c85a7-86f8-4379-b424-2dd69198baf6 2019-10-13 16:36:25.158409 18136 4 User \N \N 4 User \N update ---\nunique_session_id:\n- oAhc5mJ6gqe9dzXV3xDp\n- yWgQAHff6bNyfzSrVVjR\n 1487 \N 187.149.73.66 519c85a7-86f8-4379-b424-2dd69198baf6 2019-10-13 16:36:25.182168 18137 794 Product \N \N 4 User \N create ---\nsku: BLU-794\nname: BLS-0077\ndescription: BLUSA DECO RAYADA COLORES TIERRA\nprice_base: !ruby/object:BigDecimal 18:0.27E3\nprice_sale: !ruby/object:BigDecimal 18:0.649E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-794 fue creado. 187.149.73.66 374ccdad-3661-4d98-afe0-f55d3dd1d462 2019-10-13 16:40:35.951772 18138 794 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000794'\n 2 \N 187.149.73.66 374ccdad-3661-4d98-afe0-f55d3dd1d462 2019-10-13 16:40:35.982185 18139 1142 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 794\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.73.66 374ccdad-3661-4d98-afe0-f55d3dd1d462 2019-10-13 16:40:36.021597 18140 795 Product \N \N 4 User \N create ---\nsku: BLU-795\nname: BLS-0082\ndescription: BLUSA WILD CAT VERDE CON PLATEADO\nprice_base: !ruby/object:BigDecimal 18:0.19E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-795 fue creado. 187.149.73.66 84b73c97-1c95-4e44-be5d-0b78aae4e0e7 2019-10-13 16:42:29.392757 18141 795 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000795'\n 2 \N 187.149.73.66 84b73c97-1c95-4e44-be5d-0b78aae4e0e7 2019-10-13 16:42:29.417126 18142 1143 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 795\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.73.66 84b73c97-1c95-4e44-be5d-0b78aae4e0e7 2019-10-13 16:42:29.44062 18143 796 Product \N \N 4 User \N create ---\nsku: CON-796\nname: CJT-0003\ndescription: CONJUNTOS SANJOY PLATEADO Y NEGRO\nprice_base: !ruby/object:BigDecimal 18:0.46E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 10\nproduct_service_key: '01010101'\n 1 El producto CON-796 fue creado. 187.149.73.66 46c64ecf-93b6-41cb-89bd-77745aa2a9e3 2019-10-13 16:44:02.645913 18144 796 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000796'\n 2 \N 187.149.73.66 46c64ecf-93b6-41cb-89bd-77745aa2a9e3 2019-10-13 16:44:02.681673 18145 1144 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 796\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.73.66 46c64ecf-93b6-41cb-89bd-77745aa2a9e3 2019-10-13 16:44:02.705114 18200 719 Product \N \N 4 User \N update ---\nname:\n- BLCI19278\n- 1BLCI19278\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '719'\n is_parent: false\n sku: BOL-719\n name: 1BLCI19278\n description: BOLSA NEGRA\n price_base: '749.5'\n price_sale: '1499.0'\n img_product: BSAL278_NEGR_1_300x435.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170765809'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-09-26 23:12:23.538367'\n updated_at: &12 2019-10-13 20:20:15.091023718 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '719'\n sku: BOL-719\n name: BLCI19278\n description: BOLSA NEGRA\n price_base: '749.50'\n price_sale: '1499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-09-26 23:12:23.538367'\n updated_at: '2019-09-26 23:12:23.538367'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170765809'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '719'\n type: *3\n value: 719\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-719\n type: *7\n value: BOL-719\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCI19278\n type: *8\n value: 1BLCI19278\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA NEGRA\n type: *6\n value: BOLSA NEGRA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '749.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1499E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BSAL278_NEGR_1_300x435.jpg\n type: *2\n value: BSAL278_NEGR_1_300x435.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170765809'\n type: *2\n value: '7509170765809'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-09-26 23:12:23.538367'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BSAL278_NEGR_1_300x435.jpg\n 2 El producto BOL-719 fue modificado. 187.149.73.66 1edd928f-2c22-48dd-8e6b-9a0cdeb13624 2019-10-13 20:20:15.129946 18146 797 Product \N \N 4 User \N create ---\nsku: VES-797\nname: VST-0059\ndescription: APEACH NEGRO CON PERLAS\nprice_base: !ruby/object:BigDecimal 18:0.46E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-797 fue creado. 187.149.73.66 504a8670-54c2-4a04-a064-282990b2c0bd 2019-10-13 16:47:12.377725 18147 797 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000797'\n 2 \N 187.149.73.66 504a8670-54c2-4a04-a064-282990b2c0bd 2019-10-13 16:47:12.401619 18148 1145 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 797\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.73.66 504a8670-54c2-4a04-a064-282990b2c0bd 2019-10-13 16:47:12.425684 18149 798 Product \N \N 4 User \N create ---\nsku: BLU-798\nname: BLS-0083\ndescription: BLUSA CLOTHING NEGRA OLANES EN AS MANGAS\nprice_base: !ruby/object:BigDecimal 18:0.16E3\nprice_sale: !ruby/object:BigDecimal 18:0.469E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-798 fue creado. 187.149.73.66 0cc2768d-07f2-43c2-9257-aa0c59d93965 2019-10-13 16:52:24.081512 18150 798 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000798'\n 2 \N 187.149.73.66 0cc2768d-07f2-43c2-9257-aa0c59d93965 2019-10-13 16:52:24.105391 18151 1146 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 798\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.73.66 0cc2768d-07f2-43c2-9257-aa0c59d93965 2019-10-13 16:52:24.129506 18152 161 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-51\namount: !ruby/object:BigDecimal 18:0.12E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.12E5\nobservations: ''\npurchase_date: 2019-10-13\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-51 por $ 12000.0 MXN creada. 187.149.73.66 1ceb3c9d-d521-49b1-8631-6897bcf6ba15 2019-10-13 16:52:29.816299 18153 1142 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.73.66 1ceb3c9d-d521-49b1-8631-6897bcf6ba15 2019-10-13 16:52:29.836633 18154 1143 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.73.66 1ceb3c9d-d521-49b1-8631-6897bcf6ba15 2019-10-13 16:52:29.8662 18155 1144 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.12E2\n 2 \N 187.149.73.66 1ceb3c9d-d521-49b1-8631-6897bcf6ba15 2019-10-13 16:52:29.888717 18156 1145 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.73.66 1ceb3c9d-d521-49b1-8631-6897bcf6ba15 2019-10-13 16:52:29.908176 18157 1146 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.73.66 1ceb3c9d-d521-49b1-8631-6897bcf6ba15 2019-10-13 16:52:29.92765 18158 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-12 17:02:48.296624000 Z\n- &1 2019-10-12 20:45:29.764065000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-13 16:58:49.762536598 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\nsign_in_count:\n- 57\n- 58\n 119 \N 187.149.73.66 ef58dba6-a45b-42f8-bcfc-9ddd665c014f 2019-10-13 16:58:49.773243 18159 8 User \N \N 8 User \N update ---\nunique_session_id:\n- a-UVR6Bv-gRybvXDBC3V\n- sgeE2KD3PsbsKDfps58m\n 120 \N 187.149.73.66 ef58dba6-a45b-42f8-bcfc-9ddd665c014f 2019-10-13 16:58:49.790929 18160 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-12 20:45:29.764065000 Z\n- &1 2019-10-13 16:58:49.762536000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-13 16:58:49.926540976 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\nsign_in_count:\n- 58\n- 59\n 121 \N 187.149.73.66 cacb9d60-c7c7-4e3c-9dd8-7bdc49fd85fe 2019-10-13 16:58:49.934538 18161 8 User \N \N 8 User \N update ---\nunique_session_id:\n- sgeE2KD3PsbsKDfps58m\n- 8oEjPTLxbxtXHqZfuvn-\n 122 \N 187.149.73.66 cacb9d60-c7c7-4e3c-9dd8-7bdc49fd85fe 2019-10-13 16:58:49.95046 18162 503 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.1308E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1308.0 187.149.73.66 f9510cdd-afd7-4080-b9f8-ff202d959ab2 2019-10-13 16:59:41.331292 18163 1715 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 503\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.339E3\nmove_type: '1'\nsale_id: 1211\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.339E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-486 187.149.73.66 dd5f3835-e5f1-4350-ad74-43821c47c1c3 2019-10-13 17:00:07.286891 18164 798 Product \N \N 4 User \N update ---\nname:\n- BLS-0083\n- BLS-0085\n 3 El producto BLU-798 fue modificado. 187.149.73.66 58ea210a-463c-4c21-9e8b-a6e373df10f4 2019-10-13 17:08:39.832374 18165 795 Product \N \N 4 User \N update ---\nname:\n- BLS-0082\n- BLS-0084\n 3 El producto BLU-795 fue modificado. 187.149.73.66 50bb39ff-1bb3-41c9-b8d2-0eb4aa47feb2 2019-10-13 17:09:04.257605 18166 1143 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.73.66 e5001d61-1df9-47ff-a2e6-10424f05e068 2019-10-13 17:09:32.231757 18167 1146 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.73.66 9546c066-6cc2-4209-b4de-2ed078f26b77 2019-10-13 17:09:41.409526 18168 1143 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.73.66 7a7b94e5-12e2-453b-8baf-53ee8e3a915c 2019-10-13 17:09:44.647088 18169 1146 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.73.66 76276d76-c53c-4d60-b101-0bc46da19e8f 2019-10-13 17:09:45.696547 18170 1144 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 3 \N 187.149.73.66 2c2a1718-3929-4e67-afa3-1ec17dfa55e6 2019-10-13 17:10:19.438468 18171 1144 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 187.149.73.66 f4df608a-f7ad-4f69-a5b5-15290138b699 2019-10-13 17:10:44.436998 18174 244 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-10-13\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.73.66 4b2833ac-c887-4149-b0d6-a7ee1298f4f3 2019-10-13 17:11:53.034419 18175 1144 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.73.66 ea1a945c-a247-41b5-a1ec-b02d696a8ceb 2019-10-13 17:15:08.866443 18176 1144 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.73.66 374df86c-e119-4bd6-b63d-aad04344018a 2019-10-13 17:15:11.598281 18177 245 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-10-13\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.73.66 445763a5-680a-4935-b7c5-430b8009c413 2019-10-13 17:15:12.534979 18178 1093 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.73.66 b5f68d38-8ca6-41b0-8110-c54ea8931ad5 2019-10-13 17:20:05.805585 18179 1093 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.73.66 05fbdd55-ae7e-43d9-bf35-e54c3f6cbd3e 2019-10-13 17:20:08.446911 18180 246 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-10-13\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.73.66 8964ac39-b16d-4f1c-a7f1-0433cf6ddfa0 2019-10-13 17:20:09.487799 18181 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 20:57:35.790052000 Z\n- &1 2019-10-12 21:08:48.819915000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-13 17:39:02.986733092 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\nsign_in_count:\n- 14\n- 15\n 30 \N 187.149.73.66 a63a55fb-03e8-460f-bfbd-52c774c3eeb8 2019-10-13 17:39:02.99484 18182 25 User \N \N 25 User \N update ---\nunique_session_id:\n- xxPwbLJoqz3Zga_4avM7\n- GB--7_8TViYxPmC-g_q1\n 31 \N 187.149.73.66 a63a55fb-03e8-460f-bfbd-52c774c3eeb8 2019-10-13 17:39:03.009 18183 504 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.43E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 430.0 187.149.73.66 ae06c20d-7d35-423f-b030-fee8fff46ec3 2019-10-13 17:39:38.148314 18184 1716 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 504\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1209\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-661 187.149.73.66 88a663ac-3215-4df4-b750-285a0fad82ca 2019-10-13 17:40:01.76313 18185 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-13 01:57:37.158717000 Z\n- &1 2019-10-13 16:36:25.128451000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-13 18:10:47.221030295 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\nsign_in_count:\n- 743\n- 744\n 1488 \N 187.149.73.66 8693aad9-960e-4037-8949-cc1c688af1a3 2019-10-13 18:10:47.229413 18186 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yWgQAHff6bNyfzSrVVjR\n- Fgf3LMxiSxNoL7xPZAz5\n 1489 \N 187.149.73.66 8693aad9-960e-4037-8949-cc1c688af1a3 2019-10-13 18:10:47.250099 18187 794 Product \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 3 El producto BLS-0077 fue eliminado. 187.149.73.66 a30c242d-d730-4df3-9061-0b59a94e26ba 2019-10-13 18:36:02.661578 18188 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-13 16:36:25.128451000 Z\n- &1 2019-10-13 18:10:47.221030000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-13 19:24:19.752281086 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\nsign_in_count:\n- 744\n- 745\n 1490 \N 189.186.52.209 76950375-8c61-4954-aaf7-eb814d2678a0 2019-10-13 19:24:19.768651 18189 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Fgf3LMxiSxNoL7xPZAz5\n- QvvmjVCTAVU4x2QqC6LX\n 1491 \N 189.186.52.209 76950375-8c61-4954-aaf7-eb814d2678a0 2019-10-13 19:24:19.79193 18190 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-13 18:10:47.221030000 Z\n- &1 2019-10-13 19:24:19.752281000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-13 20:06:12.248436016 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\nsign_in_count:\n- 745\n- 746\n 1492 \N 187.149.73.66 778f6a5b-03be-4d31-b046-3824fc69d193 2019-10-13 20:06:12.256952 18191 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QvvmjVCTAVU4x2QqC6LX\n- yTvrvVmy2Qbjv1V369y4\n 1493 \N 187.149.73.66 778f6a5b-03be-4d31-b046-3824fc69d193 2019-10-13 20:06:12.274451 18192 721 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '721'\n is_parent: false\n sku: BOL-721\n name: 1BLCO19026\n description: BOLSA NEGRA CON PONPON\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: BLUN026_NEGR_1_300x435.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170751550'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-09-26 23:15:58.499651'\n updated_at: &12 2019-10-13 20:07:02.536955040 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '721'\n sku: BOL-721\n name: 1BLCO19026\n description: BOLSA NEGRA CON PONPON\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-09-26 23:15:58.499651'\n updated_at: '2019-09-26 23:15:58.499651'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170751550'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '721'\n type: *3\n value: 721\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-721\n type: *7\n value: BOL-721\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCO19026\n type: *8\n value: 1BLCO19026\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA NEGRA CON PONPON\n type: *6\n value: BOLSA NEGRA CON PONPON\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BLUN026_NEGR_1_300x435.jpg\n type: *2\n value: BLUN026_NEGR_1_300x435.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170751550'\n type: *2\n value: '7509170751550'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-09-26 23:15:58.499651'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BLUN026_NEGR_1_300x435.jpg\n 2 El producto BOL-721 fue modificado. 187.149.73.66 f17a4028-1304-4daf-8f31-7cdbc9997221 2019-10-13 20:07:02.607813 18193 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-10-12 21:08:48.819915000 Z\n- &1 2019-10-13 17:39:02.986733000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-13 20:13:46.226796236 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\nsign_in_count:\n- 15\n- 16\n 32 \N 187.149.73.66 0b7463af-656c-400d-b584-8256534ac256 2019-10-13 20:13:46.233291 18194 25 User \N \N 25 User \N update ---\nunique_session_id:\n- GB--7_8TViYxPmC-g_q1\n- sy8s2RcsyPye6GSU7Ef2\n 33 \N 187.149.73.66 0b7463af-656c-400d-b584-8256534ac256 2019-10-13 20:13:46.245976 18195 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-13 19:24:19.752281000 Z\n- &1 2019-10-13 20:06:12.248436000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-13 20:14:19.628179427 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\nsign_in_count:\n- 746\n- 747\n 1494 \N 187.149.73.66 02a6916a-91fe-4f0b-8c80-72766dba1ce3 2019-10-13 20:14:19.63545 18196 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yTvrvVmy2Qbjv1V369y4\n- dPmRsEBz2dkcJ1hXkbGC\n 1495 \N 187.149.73.66 02a6916a-91fe-4f0b-8c80-72766dba1ce3 2019-10-13 20:14:19.650574 18197 722 Product \N \N 4 User \N update ---\ndescription:\n- CANGURERA CLOE COLOR NEGRA Y MULTICOLOR\n- CANGURERA CLOE COLOR ROJA, NEGRA Y MULTICOLOR\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '722'\n is_parent: false\n sku: BOL-722\n name: 1BCL119289\n description: CANGURERA CLOE COLOR ROJA, NEGRA Y MULTICOLOR\n price_base: '949.5'\n price_sale: '1899.0'\n img_product: BCAO289_ROJO_1_300x435.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170766158'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-09-26 23:17:29.790533'\n updated_at: &12 2019-10-13 20:15:04.249969599 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '722'\n sku: BOL-722\n name: 1BCL119289\n description: CANGURERA CLOE COLOR NEGRA Y MULTICOLOR\n price_base: '949.50'\n price_sale: '1899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-09-26 23:17:29.790533'\n updated_at: '2019-09-26 23:17:29.790533'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170766158'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '722'\n type: *3\n value: 722\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-722\n type: *7\n value: BOL-722\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BCL119289\n type: *8\n value: 1BCL119289\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CANGURERA CLOE COLOR ROJA, NEGRA Y MULTICOLOR\n type: *6\n value: CANGURERA CLOE COLOR ROJA, NEGRA Y MULTICOLOR\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '949.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.9495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1899E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BCAO289_ROJO_1_300x435.jpg\n type: *2\n value: BCAO289_ROJO_1_300x435.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170766158'\n type: *2\n value: '7509170766158'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-09-26 23:17:29.790533'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BCAO289_ROJO_1_300x435.jpg\n 2 El producto BOL-722 fue modificado. 187.149.73.66 32c74065-5de2-4a31-b418-0b9feffb8f04 2019-10-13 20:15:04.289592 18203 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-13 20:06:12.248436000 Z\n- &1 2019-10-13 20:14:19.628179000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-13 20:40:21.462968221 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\nsign_in_count:\n- 747\n- 748\n 1496 \N 189.186.52.209 9846b507-f51b-485f-9c84-16f81166ad0f 2019-10-13 20:40:21.469497 18204 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dPmRsEBz2dkcJ1hXkbGC\n- KWJ7NZszS-V8g9fss8mX\n 1497 \N 189.186.52.209 9846b507-f51b-485f-9c84-16f81166ad0f 2019-10-13 20:40:21.484968 18205 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-10-13 17:39:02.986733000 Z\n- &1 2019-10-13 20:13:46.226796000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-13 21:03:11.537388706 Z\nsign_in_count:\n- 16\n- 17\n 34 \N 187.149.73.66 8e8eb6f9-a7e3-458c-b3f9-6cb027fb71ac 2019-10-13 21:03:11.543815 18206 25 User \N \N 25 User \N update ---\nunique_session_id:\n- sy8s2RcsyPye6GSU7Ef2\n- mAduQrmm4-NJrfD3iFws\n 35 \N 187.149.73.66 8e8eb6f9-a7e3-458c-b3f9-6cb027fb71ac 2019-10-13 21:03:11.556352 18207 502 CashOut \N \N 25 User \N create ---\nopen_cash_register_id: 504\nuser_id: 25\namount_in: !ruby/object:BigDecimal 18:0.5E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.93E3\nphysical_cash: !ruby/object:BigDecimal 18:0.93E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.73.66 41454a2f-351e-4e1d-9704-ad3643fbe75c 2019-10-13 21:05:46.230938 18208 504 OpenCashRegister \N \N 25 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.73.66 41454a2f-351e-4e1d-9704-ad3643fbe75c 2019-10-13 21:05:46.243132 18209 503 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 503\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.339E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.1147E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1647E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.73.66 3c38c108-c6d2-4459-8066-a9eac5b1b440 2019-10-13 21:24:26.994626 18210 503 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.73.66 3c38c108-c6d2-4459-8066-a9eac5b1b440 2019-10-13 21:24:27.010515 18211 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-10 16:17:43.320310000 Z\n- &1 2019-10-13 16:13:58.150917000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-14 16:06:54.762014071 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129174\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115417\n mask_addr: 4294967295\nsign_in_count:\n- 36\n- 37\n 74 \N 189.186.124.153 7c69c49c-5492-47b0-a046-efcc822f08df 2019-10-14 16:06:54.783282 18212 23 User \N \N 23 User \N update ---\nunique_session_id:\n- okJ8fDn2Ykm8VAvaz_sG\n- 4JyRwWTLzF3yW2QAsC_r\n 75 \N 189.186.124.153 7c69c49c-5492-47b0-a046-efcc822f08df 2019-10-14 16:06:54.820451 18213 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 16:18:37.234736000 Z\n- &1 2019-10-12 19:34:45.379730000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-14 16:32:53.952419948 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\nsign_in_count:\n- 347\n- 348\n 699 \N 187.149.73.66 a50c9710-3f26-4351-b06e-2c6decd28bc2 2019-10-14 16:32:53.959203 18214 2 User \N \N 2 User \N update ---\nunique_session_id:\n- s3Yv5ceFuDtXdMuhSp5c\n- AgKRGzqbDMnj9-8pzSc4\n 700 \N 187.149.73.66 a50c9710-3f26-4351-b06e-2c6decd28bc2 2019-10-14 16:32:53.97444 18215 505 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.93E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 930.0 187.149.73.66 49f21d0b-03b1-445e-b2fa-cb7ad218d515 2019-10-14 16:33:31.919916 18216 1717 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 434\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.65E3\nmove_type: '1'\nsale_id: 1108\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.65E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.73.66 2340df33-33c9-4f61-885f-294b9700880b 2019-10-14 16:34:10.145928 18217 1717 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 434\n- 505\n 2 movimiento de efectivo por venta con folio PV3-V-36 187.149.73.66 2340df33-33c9-4f61-885f-294b9700880b 2019-10-14 16:34:10.175018 18218 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-13 16:58:49.762536000 Z\n- &1 2019-10-13 16:58:49.926540000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-14 17:06:17.523353579 Z\nsign_in_count:\n- 59\n- 60\n 123 \N 187.149.73.66 864a73fd-f1fb-4669-b1b8-5b30a4f63030 2019-10-14 17:06:17.529216 18219 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 8oEjPTLxbxtXHqZfuvn-\n- JVr1sW41c83ExJ3s-Yi3\n 124 \N 187.149.73.66 864a73fd-f1fb-4669-b1b8-5b30a4f63030 2019-10-14 17:06:17.541919 18220 506 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.1147E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1147.0 187.149.73.66 e6c62f87-2ea2-49b4-a339-dd4e85ad3766 2019-10-14 18:13:21.232986 18221 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-13 20:14:19.628179000 Z\n- &1 2019-10-13 20:40:21.462968000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-14 18:21:11.677282070 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\nsign_in_count:\n- 748\n- 749\n 1498 \N 187.149.73.66 a7ef8dd5-dad7-4787-b9ad-9db2bd8c7efd 2019-10-14 18:21:11.684313 18222 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KWJ7NZszS-V8g9fss8mX\n- Pbnog2zzDE-e9nGEdRWx\n 1499 \N 187.149.73.66 a7ef8dd5-dad7-4787-b9ad-9db2bd8c7efd 2019-10-14 18:21:11.699056 18223 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-13 16:58:49.926540000 Z\n- &1 2019-10-14 17:06:17.523353000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-14 18:23:41.688892219 Z\nsign_in_count:\n- 60\n- 61\n 125 \N 187.149.73.66 15061969-0dff-4019-b281-8449b2471c69 2019-10-14 18:23:41.694291 18224 8 User \N \N 8 User \N update ---\nunique_session_id:\n- JVr1sW41c83ExJ3s-Yi3\n- sByZySuxRbFFAk6nRbxQ\n 126 \N 187.149.73.66 15061969-0dff-4019-b281-8449b2471c69 2019-10-14 18:23:41.706153 18225 198 Customer \N \N 8 User \N create ---\nnick_name: ANTONIA QUINTERO\nphone: "(667) 349-3494"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANTONIA QUINTERO fue registrado. 187.149.73.66 7fce5fb3-bc98-48bc-81fe-504702690cac 2019-10-14 18:31:26.401502 18362 1086 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.42.159 392f26ac-129a-403f-958e-acc2d7ff08bf 2019-10-15 17:46:12.161511 18226 1241 Sale \N \N 8 User \N create ---\ncustomer_id: 198\nuser_id: 8\nopen_cash_register_id: 506\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-10-14\nsaletype: 2\nseller_id: 15\nsale_code: PV2-V-499\nexpiration_date: 2019-11-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.73.66 45b59a1e-7355-4146-942a-68dcf9b98822 2019-10-14 18:31:58.672772 18227 579 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 8 \N 187.149.73.66 45b59a1e-7355-4146-942a-68dcf9b98822 2019-10-14 18:31:58.699721 18228 1718 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 506\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1241\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-499\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-499 187.149.73.66 3424b3d0-5945-4055-9857-cec22edfa59b 2019-10-14 18:32:05.637258 18229 1241 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.73.66 c30b3aad-bfa5-42b9-98f9-01496ba71763 2019-10-14 18:32:11.402816 18230 799 Product \N \N 4 User \N create ---\nsku: BLU-799\nname: BLS-0075\ndescription: "BLUSA CLOTHING NEGRA ST-2869\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.17E3\nprice_sale: !ruby/object:BigDecimal 18:0.459E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-799 fue creado. 187.149.73.66 14bd13dd-6f64-4662-9c6e-6436ae59a053 2019-10-14 18:44:45.732093 18231 799 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000799'\n 2 \N 187.149.73.66 14bd13dd-6f64-4662-9c6e-6436ae59a053 2019-10-14 18:44:45.760831 18232 1147 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 799\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.73.66 14bd13dd-6f64-4662-9c6e-6436ae59a053 2019-10-14 18:44:45.790118 18233 1242 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 506\namount: !ruby/object:BigDecimal 18:0.1188E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1188E4\nstatus: 0\ndate_sale: 2019-10-14\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-500\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.73.66 8b7a61f1-f624-4c83-8245-26a02a938cb3 2019-10-14 18:47:21.009224 18234 1139 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.73.66 8b7a61f1-f624-4c83-8245-26a02a938cb3 2019-10-14 18:47:21.039797 18235 559 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.73.66 8b7a61f1-f624-4c83-8245-26a02a938cb3 2019-10-14 18:47:21.070629 18236 1242 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.73.66 6ee5d1eb-6509-41ca-b418-06d544a2d02d 2019-10-14 18:48:23.40336 18237 1719 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 506\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 1242\ncardnumber: 5412\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-500\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-500 187.149.73.66 6ee5d1eb-6509-41ca-b418-06d544a2d02d 2019-10-14 18:48:23.422733 18238 1720 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 506\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.688E3\nmove_type: '1'\nsale_id: 1242\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-500\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.12E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-500 187.149.73.66 179b7a60-fb58-42ee-b995-65e1f63e2dbe 2019-10-14 18:48:52.914712 18239 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-10-09 17:02:36.797048000 Z\n- &1 2019-10-10 23:22:45.804539000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-14 18:49:32.011866717 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\nsign_in_count:\n- 154\n- 155\n 312 \N 187.149.73.66 50254ade-184a-482e-931a-1f9fb5c9797a 2019-10-14 18:49:32.019815 18240 10 User \N \N 10 User \N update ---\nunique_session_id:\n- mL8rxByS74VaDgq21V16\n- y33oQxHyCwtCnhsb4hqD\n 313 \N 187.149.73.66 50254ade-184a-482e-931a-1f9fb5c9797a 2019-10-14 18:49:32.033841 18241 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-13 20:40:21.462968000 Z\n- &1 2019-10-14 18:21:11.677282000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-14 18:51:49.165005514 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\nsign_in_count:\n- 749\n- 750\n 1500 \N 187.149.73.66 4e39b63b-1f9b-414c-a410-d6caa9cc8152 2019-10-14 18:51:49.171601 18242 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Pbnog2zzDE-e9nGEdRWx\n- tFm4iPH3KaqztNVc7ysb\n 1501 \N 187.149.73.66 4e39b63b-1f9b-414c-a410-d6caa9cc8152 2019-10-14 18:51:49.188821 18243 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-14 18:21:11.677282000 Z\n- &1 2019-10-14 18:51:49.165005000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-14 18:51:50.255408764 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\nsign_in_count:\n- 750\n- 751\n 1502 \N 189.186.52.209 ca2fe881-ca15-4984-b352-4934ab04cea5 2019-10-14 18:51:50.26235 18244 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tFm4iPH3KaqztNVc7ysb\n- 5RQYPAzCzS-pRiEhKxft\n 1503 \N 189.186.52.209 ca2fe881-ca15-4984-b352-4934ab04cea5 2019-10-14 18:51:50.279113 18245 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-14 18:51:49.165005000 Z\n- &1 2019-10-14 18:51:50.255408000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-14 18:52:04.063610409 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\nsign_in_count:\n- 751\n- 752\n 1504 \N 187.149.73.66 40b885b8-67d7-4f6e-9c85-a30acd9fae96 2019-10-14 18:52:04.070604 18246 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5RQYPAzCzS-pRiEhKxft\n- kv6h7pR2LGzuxxjQyJ49\n 1505 \N 187.149.73.66 40b885b8-67d7-4f6e-9c85-a30acd9fae96 2019-10-14 18:52:04.084259 18247 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-14 17:06:17.523353000 Z\n- &1 2019-10-14 18:23:41.688892000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-14 19:03:48.048867988 Z\nsign_in_count:\n- 61\n- 62\n 127 \N 187.149.73.66 46dbc1a4-b5de-4b4b-9402-224cdefc836f 2019-10-14 19:03:48.053986 18248 8 User \N \N 8 User \N update ---\nunique_session_id:\n- sByZySuxRbFFAk6nRbxQ\n- U49kh-pj_ymHVCDwTTyM\n 128 \N 187.149.73.66 46dbc1a4-b5de-4b4b-9402-224cdefc836f 2019-10-14 19:03:48.065002 18249 800 Product \N \N 4 User \N create ---\nsku: BLU-800\nname: BLS-0089\ndescription: BLUSA CLOTHING NRGRA ST-2867\nprice_base: !ruby/object:BigDecimal 18:0.17E3\nprice_sale: !ruby/object:BigDecimal 18:0.469E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-800 fue creado. 187.149.73.66 d45ded4a-aa98-4647-bf7d-18d5c31c8c26 2019-10-14 19:06:07.183593 18250 800 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000800'\n 2 \N 187.149.73.66 d45ded4a-aa98-4647-bf7d-18d5c31c8c26 2019-10-14 19:06:07.20862 18251 1148 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 800\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.73.66 d45ded4a-aa98-4647-bf7d-18d5c31c8c26 2019-10-14 19:06:07.233569 18252 801 Product \N \N 4 User \N create ---\nsku: BLU-801\nname: BLS-0085\ndescription: BLUSA CLOTHING NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.17E3\nprice_sale: !ruby/object:BigDecimal 18:0.469E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-801 fue creado. 187.149.73.66 95b65d0e-2dfc-498c-b12d-4d7655c16fa8 2019-10-14 19:06:52.170523 18253 801 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000801'\n 2 \N 187.149.73.66 95b65d0e-2dfc-498c-b12d-4d7655c16fa8 2019-10-14 19:06:52.205698 18254 1149 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 801\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.73.66 95b65d0e-2dfc-498c-b12d-4d7655c16fa8 2019-10-14 19:06:52.234117 18255 162 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-52\namount: !ruby/object:BigDecimal 18:0.221E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.221E4\nobservations: ''\npurchase_date: 2019-10-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-52 por $ 2210.0 MXN creada. 187.149.73.66 c809bfaf-f340-41d1-9359-6bfbc62ea367 2019-10-14 19:06:56.080185 18256 1147 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.73.66 c809bfaf-f340-41d1-9359-6bfbc62ea367 2019-10-14 19:06:56.100609 18257 1148 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.73.66 c809bfaf-f340-41d1-9359-6bfbc62ea367 2019-10-14 19:06:56.122095 18258 1149 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.73.66 c809bfaf-f340-41d1-9359-6bfbc62ea367 2019-10-14 19:06:56.142413 18259 1149 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.73.66 003d80db-5740-42a3-b9c3-80cae4fb2076 2019-10-14 19:08:20.772699 18260 798 Product \N \N 4 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.16E3\n- !ruby/object:BigDecimal 18:0.17E3\n 4 El producto BLU-798 fue modificado. 187.149.73.66 3331dbd3-6f81-4dca-9617-6690f3a301d0 2019-10-14 19:09:36.376034 18261 801 Product \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 3 El producto BLS-0085 fue eliminado. 187.149.73.66 f6bfb35e-0569-4a05-b718-7a6fd50ed3ef 2019-10-14 19:09:52.919812 18262 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-10-12 18:44:49.880189000 Z\n- &1 2019-10-13 02:02:19.397869000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-14 19:11:01.713968617 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\nsign_in_count:\n- 29\n- 30\n 61 \N 187.149.73.66 6ded9582-6296-433d-8cf6-17e5d550fdfb 2019-10-14 19:11:01.720698 18263 21 User \N \N 21 User \N update ---\nunique_session_id:\n- c9PrVPzC9ZKRQtyALiZt\n- QTde2m-V2bsNXsuUmcsQ\n 62 \N 187.149.73.66 6ded9582-6296-433d-8cf6-17e5d550fdfb 2019-10-14 19:11:01.733268 18264 244 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-14\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 187.149.73.66 28e1fef1-c1a8-4c32-abd2-64bc79cc6b55 2019-10-14 19:11:18.159116 18265 1150 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 797\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.73.66 28e1fef1-c1a8-4c32-abd2-64bc79cc6b55 2019-10-14 19:11:18.179507 18266 1151 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 796\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.73.66 28e1fef1-c1a8-4c32-abd2-64bc79cc6b55 2019-10-14 19:11:18.203084 18267 1152 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 798\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.73.66 28e1fef1-c1a8-4c32-abd2-64bc79cc6b55 2019-10-14 19:11:18.223698 18268 1153 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 795\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.73.66 28e1fef1-c1a8-4c32-abd2-64bc79cc6b55 2019-10-14 19:11:18.244568 18269 246 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-14\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 187.149.73.66 d754314e-a292-4387-9af2-42147b86ec76 2019-10-14 19:11:25.792182 18270 1154 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 760\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.73.66 d754314e-a292-4387-9af2-42147b86ec76 2019-10-14 19:11:25.811113 18271 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-10-13 20:13:46.226796000 Z\n- &1 2019-10-13 21:03:11.537388000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-14 19:13:24.356911919 Z\nsign_in_count:\n- 17\n- 18\n 36 \N 187.149.73.66 d3fa004c-3f80-4dad-8f33-8d792027edea 2019-10-14 19:13:24.362408 18274 1155 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 796\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.73.66 c49ba66b-5ecc-4805-86b8-2776123ea17e 2019-10-14 19:14:00.538374 18275 1149 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.73.66 d604ebbf-d292-44f8-b344-29b8d17183de 2019-10-14 19:14:56.621647 18276 1148 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.73.66 84555cc4-ae94-47c1-9b6c-da0e42369cca 2019-10-14 19:15:09.013853 18277 1148 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.73.66 03ac4b78-d9b7-493f-95a8-09f31752749c 2019-10-14 19:15:11.628004 18278 247 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-10-14\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.73.66 ce0361ed-950c-4d3b-a1b1-e9fc8fd2d1ce 2019-10-14 19:15:12.211776 18279 247 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-14\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.73.66 ef37823f-a37f-45b6-99d9-c82ac442679c 2019-10-14 19:17:17.309978 18280 1156 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 800\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.73.66 ef37823f-a37f-45b6-99d9-c82ac442679c 2019-10-14 19:17:17.333942 18281 802 Product \N \N 4 User \N create ---\nsku: BLU-802\nname: BLS-0086\ndescription: BLUSA FASHION ZONE LA BLANCA CON COLA ST-FZT06\nprice_base: !ruby/object:BigDecimal 18:0.35E3\nprice_sale: !ruby/object:BigDecimal 18:0.869E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-802 fue creado. 187.149.73.66 9493995b-abb4-4e9e-b722-46060b97fa03 2019-10-14 19:19:24.616884 18282 802 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000802'\n 2 \N 187.149.73.66 9493995b-abb4-4e9e-b722-46060b97fa03 2019-10-14 19:19:24.643909 18283 1157 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 802\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.73.66 9493995b-abb4-4e9e-b722-46060b97fa03 2019-10-14 19:19:24.66874 18284 803 Product \N \N 4 User \N create ---\nsku: BLU-803\nname: BLS-0087\ndescription: BLUSA FASHION ZONE LA MOZTAZA ST-FZT0025\nprice_base: !ruby/object:BigDecimal 18:0.245E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-803 fue creado. 187.149.73.66 8b6b3843-ce87-4b8d-afd2-d549b8b3582a 2019-10-14 19:19:52.396478 18285 803 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000803'\n 2 \N 187.149.73.66 8b6b3843-ce87-4b8d-afd2-d549b8b3582a 2019-10-14 19:19:52.43834 18286 1158 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 803\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.73.66 8b6b3843-ce87-4b8d-afd2-d549b8b3582a 2019-10-14 19:19:52.461654 18287 804 Product \N \N 4 User \N create ---\nsku: BLU-804\nname: BLS-0089\ndescription: PANTIBLUSA FASHION ZONE LA PLATA ST-FZB0013\nprice_base: !ruby/object:BigDecimal 18:0.239E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-804 fue creado. 187.149.73.66 c02839cf-4c14-4de5-9d68-5ebb531c7db4 2019-10-14 19:20:26.987322 18288 804 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000804'\n 2 \N 187.149.73.66 c02839cf-4c14-4de5-9d68-5ebb531c7db4 2019-10-14 19:20:27.012267 18289 1159 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 804\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.73.66 c02839cf-4c14-4de5-9d68-5ebb531c7db4 2019-10-14 19:20:27.037137 18290 163 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-84\namount: !ruby/object:BigDecimal 18:0.5004E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.5004E4\nobservations: ''\npurchase_date: 2019-10-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-84 por $ 5004.0 MXN creada. 187.149.73.66 b2d5a983-f6c5-4607-9163-a49ef784034f 2019-10-14 19:20:32.820722 18291 1157 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.73.66 b2d5a983-f6c5-4607-9163-a49ef784034f 2019-10-14 19:20:32.844281 18292 1158 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.73.66 b2d5a983-f6c5-4607-9163-a49ef784034f 2019-10-14 19:20:32.868604 18293 1159 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.73.66 b2d5a983-f6c5-4607-9163-a49ef784034f 2019-10-14 19:20:32.893372 18294 805 Product \N \N 4 User \N create ---\nsku: VES-805\nname: VST-0060\ndescription: APEACH ST-YD31049 NEGRO CON HEBILLA DE BRILLOS\nprice_base: !ruby/object:BigDecimal 18:0.31E3\nprice_sale: !ruby/object:BigDecimal 18:0.789E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-805 fue creado. 187.149.73.66 e4758cf9-0701-4bab-a48a-f39aa926947b 2019-10-14 19:32:52.031633 18295 805 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000805'\n 2 \N 187.149.73.66 e4758cf9-0701-4bab-a48a-f39aa926947b 2019-10-14 19:32:52.058818 18296 1160 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 805\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.73.66 e4758cf9-0701-4bab-a48a-f39aa926947b 2019-10-14 19:32:52.08567 18297 806 Product \N \N 4 User \N create ---\nsku: PAN-806\nname: PNT-0020\ndescription: PANTALON APEACH BRILLOS NEGRO ST-YP82820\nprice_base: !ruby/object:BigDecimal 18:0.25E3\nprice_sale: !ruby/object:BigDecimal 18:0.689E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_2961_2869_.jpg\ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-806 fue creado. 187.149.73.66 2eb0cbe9-84ad-45f2-bd24-f8958810eaf2 2019-10-14 19:35:34.537164 18298 806 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000806'\n 2 \N 187.149.73.66 2eb0cbe9-84ad-45f2-bd24-f8958810eaf2 2019-10-14 19:35:34.564769 18299 1161 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 806\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.73.66 2eb0cbe9-84ad-45f2-bd24-f8958810eaf2 2019-10-14 19:35:34.590703 18300 164 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-85\namount: !ruby/object:BigDecimal 18:0.336E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.336E4\nobservations: ''\npurchase_date: 2019-10-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-85 por $ 3360.0 MXN creada. 187.149.73.66 a0b58fcc-d93a-4dbd-a001-9c8c5ecb3ebf 2019-10-14 19:36:48.838486 18301 1160 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.73.66 a0b58fcc-d93a-4dbd-a001-9c8c5ecb3ebf 2019-10-14 19:36:48.862046 18302 1161 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.73.66 a0b58fcc-d93a-4dbd-a001-9c8c5ecb3ebf 2019-10-14 19:36:48.88422 18303 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-14 18:51:50.255408000 Z\n- &1 2019-10-14 18:52:04.063610000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-14 20:29:01.173611556 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\nsign_in_count:\n- 752\n- 753\n 1506 \N 189.186.52.209 201b3f45-7435-4edb-b3c3-d48cfb1caba3 2019-10-14 20:29:01.181212 18304 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kv6h7pR2LGzuxxjQyJ49\n- _3-Bf9QMdEAxVGnc8Mg4\n 1507 \N 189.186.52.209 201b3f45-7435-4edb-b3c3-d48cfb1caba3 2019-10-14 20:29:01.195999 18305 199 Customer \N \N 23 User \N create ---\nnick_name: ELIZABET NUÑEZ\nphone: "(667) 253-8816"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ELIZABET NUÑEZ fue registrado. 189.186.124.153 de24ea9b-3d64-48cb-8c1d-097e7f14ab87 2019-10-14 20:46:07.471462 18306 1243 Sale \N \N 23 User \N create ---\ncustomer_id: 199\nuser_id: 23\nopen_cash_register_id: 502\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2019-10-14\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-72\nexpiration_date: 2019-11-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.124.153 8b52d8c0-1d3d-4f8c-a1de-4e367d03fbce 2019-10-14 20:47:29.82573 18307 1036 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.124.153 8b52d8c0-1d3d-4f8c-a1de-4e367d03fbce 2019-10-14 20:47:29.849316 18308 1721 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 502\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 1243\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-72\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-72 189.186.124.153 20507675-e016-4870-9639-adc452810805 2019-10-14 20:52:04.144817 18309 1721 CashRegistersMove \N \N 23 User \N destroy ---\nopen_cash_register_id: 502\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 1243\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-72\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.124.153 2df2265b-9ae0-4e85-9595-68ec2489c177 2019-10-14 20:52:20.249389 18310 1722 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 502\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 1243\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-72\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-72 189.186.124.153 29c3390e-2496-43bf-9dc1-89766e836c49 2019-10-14 20:53:23.149577 18311 1243 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.124.153 8ee46f9c-9ff9-44c0-8028-c09dc3d7e6e5 2019-10-14 20:53:26.210055 18312 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-14 18:23:41.688892000 Z\n- &1 2019-10-14 19:03:48.048867000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-14 23:49:02.406858577 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 62\n- 63\n 129 \N 187.149.42.159 7a095ba9-11cb-43b3-8bef-9567dac2fbd8 2019-10-14 23:49:02.414116 18313 8 User \N \N 8 User \N update ---\nunique_session_id:\n- U49kh-pj_ymHVCDwTTyM\n- _5tdf49_Ve43Q5RpC3s8\n 130 \N 187.149.42.159 7a095ba9-11cb-43b3-8bef-9567dac2fbd8 2019-10-14 23:49:02.428723 18314 1244 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 506\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-10-14\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-501\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 8e72cb25-784e-43c7-9934-f333baff2eee 2019-10-14 23:49:29.241763 18315 1127 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.42.159 8e72cb25-784e-43c7-9934-f333baff2eee 2019-10-14 23:49:29.266617 18316 1244 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 ac182af8-a2aa-4276-a63f-55debd294c7d 2019-10-14 23:49:35.027929 18340 507 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.58E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 580.0 187.149.42.159 67ca5636-d4f9-49c3-ad04-96c14ade53ff 2019-10-15 16:08:45.518118 18317 1723 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 506\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 1244\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-501\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-501 187.149.42.159 ac182af8-a2aa-4276-a63f-55debd294c7d 2019-10-14 23:49:35.048284 18318 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-14 18:52:04.063610000 Z\n- &1 2019-10-14 20:29:01.173611000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-15 00:26:00.709554175 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\nsign_in_count:\n- 753\n- 754\n 1508 \N 189.186.52.209 aff3fecd-9774-43f2-b916-4bdcbaad077e 2019-10-15 00:26:00.742296 18319 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _3-Bf9QMdEAxVGnc8Mg4\n- 1faFnvCw-umwyahLsXjx\n 1509 \N 189.186.52.209 aff3fecd-9774-43f2-b916-4bdcbaad077e 2019-10-15 00:26:00.766564 18320 198 Expense \N \N 23 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 502\nquantity: !ruby/object:BigDecimal 18:0.4E3\nstatus: 1\nobservations: 400 NOMINA MARICRUZ\nexpense_date: 2019-10-14\nexpense_code: PV3-E-5\n 1 Egreso por 400.0 registrado 189.186.124.153 59ad841c-1534-4e5b-880b-82eb44417a10 2019-10-15 00:50:23.235542 18321 1724 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 502\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 198\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.124.153 59ad841c-1534-4e5b-880b-82eb44417a10 2019-10-15 00:50:23.258536 18322 504 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 502\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.1E4\namount_out: !ruby/object:BigDecimal 18:0.4E3\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.654E3\nphysical_cash: !ruby/object:BigDecimal 18:0.654E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.124.153 a3f14ab3-da4c-4ed3-80e4-1df03a35afa4 2019-10-15 00:59:40.540491 18323 502 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.124.153 a3f14ab3-da4c-4ed3-80e4-1df03a35afa4 2019-10-15 00:59:40.556392 18324 505 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 506\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.1987E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.1134E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2634E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.42.159 f987e31c-04bf-4046-aefd-495abcdba2df 2019-10-15 01:12:53.826088 18325 506 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 f987e31c-04bf-4046-aefd-495abcdba2df 2019-10-15 01:12:53.843578 18326 506 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 505\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.65E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.58E3\nphysical_cash: !ruby/object:BigDecimal 18:0.158E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.159 b99c8ea3-3c42-4303-af7e-4f35b1b09da0 2019-10-15 01:17:02.274835 18327 505 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 b99c8ea3-3c42-4303-af7e-4f35b1b09da0 2019-10-15 01:17:02.288674 18328 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-14 20:29:01.173611000 Z\n- &1 2019-10-15 00:26:00.709554000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-15 03:09:35.245065201 Z\nsign_in_count:\n- 754\n- 755\n 1510 \N 189.186.52.209 ccfa4b17-3961-4c71-ad43-371ad662d084 2019-10-15 03:09:35.25579 18329 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1faFnvCw-umwyahLsXjx\n- SvCaxt4VpT_2XPUR98zB\n 1511 \N 189.186.52.209 ccfa4b17-3961-4c71-ad43-371ad662d084 2019-10-15 03:09:35.276074 18330 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-15 00:26:00.709554000 Z\n- &1 2019-10-15 03:09:35.245065000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-15 03:24:27.849041437 Z\nsign_in_count:\n- 755\n- 756\n 1512 \N 189.186.52.209 bc2cdbf5-c48b-4de4-bfff-7a981096e8e0 2019-10-15 03:24:27.855279 18331 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SvCaxt4VpT_2XPUR98zB\n- Boyp32_FmmkaCxztW8oz\n 1513 \N 189.186.52.209 bc2cdbf5-c48b-4de4-bfff-7a981096e8e0 2019-10-15 03:24:27.868993 18332 800 Product \N \N 4 User \N update ---\nname:\n- BLS-0089\n- BLS-0088\n 3 El producto BLU-800 fue modificado. 189.186.52.209 088df748-6eac-4a7b-b592-c763bcc02d85 2019-10-15 05:26:42.489357 18333 807 Product \N \N 4 User \N create ---\nsku: SHO-807\nname: SHO-0023\ndescription: "2W (ST-P1505) SHORT CUADROS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.2E3\nprice_sale: !ruby/object:BigDecimal 18:0.549E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 2\nproduct_service_key: '01010101'\n 1 El producto SHO-807 fue creado. 189.186.52.209 8bc0715f-7c38-4df5-a700-5ac3efb4cc0b 2019-10-15 05:30:28.562704 18334 807 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000807'\n 2 \N 189.186.52.209 8bc0715f-7c38-4df5-a700-5ac3efb4cc0b 2019-10-15 05:30:28.594169 18335 1162 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 807\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.52.209 8bc0715f-7c38-4df5-a700-5ac3efb4cc0b 2019-10-15 05:30:28.626453 18336 165 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-53\namount: !ruby/object:BigDecimal 18:0.12E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.12E4\nobservations: ''\npurchase_date: 2019-10-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-53 por $ 1200.0 MXN creada. 189.186.52.209 f5c8985f-08ba-466e-8240-61ed271d46b6 2019-10-15 05:30:41.18993 18337 1162 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.52.209 f5c8985f-08ba-466e-8240-61ed271d46b6 2019-10-15 05:30:41.21409 18338 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-12 19:34:45.379730000 Z\n- &1 2019-10-14 16:32:53.952419000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-15 16:07:07.808078156 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 348\n- 349\n 701 \N 187.149.42.159 5e2fc05e-5208-46d1-8bd0-074022c8df58 2019-10-15 16:07:07.835402 18339 2 User \N \N 2 User \N update ---\nunique_session_id:\n- AgKRGzqbDMnj9-8pzSc4\n- PqBD1xWxm3BqaLfbzoze\n 702 \N 187.149.42.159 5e2fc05e-5208-46d1-8bd0-074022c8df58 2019-10-15 16:07:07.856811 18341 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-15 03:09:35.245065000 Z\n- &1 2019-10-15 03:24:27.849041000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-15 16:51:24.899952743 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 756\n- 757\n 1514 \N 187.149.42.159 a7efc559-8b09-4e69-b4e9-420548289034 2019-10-15 16:51:24.906007 18342 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Boyp32_FmmkaCxztW8oz\n- uC98ziUyammg5RMeuAyL\n 1515 \N 187.149.42.159 a7efc559-8b09-4e69-b4e9-420548289034 2019-10-15 16:51:24.919958 18343 1245 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 507\namount: !ruby/object:BigDecimal 18:0.829E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.829E3\nstatus: 0\ndate_sale: 2019-10-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-670\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 3eeeeb64-1bc6-4333-9603-281f8db0af3d 2019-10-15 16:52:20.444274 18344 1141 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.42.159 3eeeeb64-1bc6-4333-9603-281f8db0af3d 2019-10-15 16:52:20.471291 18345 1245 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 cb640b65-0c2e-4127-8fab-9e883d8afd71 2019-10-15 16:52:25.308308 18346 1725 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 507\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.829E3\nmove_type: '1'\nsale_id: 1245\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-670\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.829E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-670 187.149.42.159 cb640b65-0c2e-4127-8fab-9e883d8afd71 2019-10-15 16:52:25.328548 18347 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-15 03:24:27.849041000 Z\n- &1 2019-10-15 16:51:24.899952000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-15 17:08:20.657465890 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109369\n mask_addr: 4294967295\nsign_in_count:\n- 757\n- 758\n 1516 \N 189.186.100.249 90b4b75e-aa07-4a28-ac68-54a6badd8447 2019-10-15 17:08:20.665104 18348 4 User \N \N 4 User \N update ---\nunique_session_id:\n- uC98ziUyammg5RMeuAyL\n- 5zkejDyaCiuU1D69nxaH\n 1517 \N 189.186.100.249 90b4b75e-aa07-4a28-ac68-54a6badd8447 2019-10-15 17:08:20.681162 18349 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-15 16:51:24.899952000 Z\n- &1 2019-10-15 17:08:20.657465000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-15 17:10:18.347584318 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109369\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109369\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 758\n- 759\n 1518 \N 187.149.42.159 4f4798ec-d901-4bbb-8f33-d9faf0841692 2019-10-15 17:10:18.354869 18350 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5zkejDyaCiuU1D69nxaH\n- T9Vh2ueggCN-2r1xvAKG\n 1519 \N 187.149.42.159 4f4798ec-d901-4bbb-8f33-d9faf0841692 2019-10-15 17:10:18.369379 18351 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-14 19:03:48.048867000 Z\n- &1 2019-10-14 23:49:02.406858000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-15 17:34:09.239068503 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 63\n- 64\n 131 \N 187.149.42.159 4e626559-a09a-477a-88e7-efef0f39a17b 2019-10-15 17:34:09.246075 18352 8 User \N \N 8 User \N update ---\nunique_session_id:\n- _5tdf49_Ve43Q5RpC3s8\n- es1FQNGJSDtr_EQGvW78\n 132 \N 187.149.42.159 4e626559-a09a-477a-88e7-efef0f39a17b 2019-10-15 17:34:09.259746 18353 508 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.1134E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1134.0 187.149.42.159 883cdcab-1560-4e31-ae11-18ecbd43102a 2019-10-15 17:34:29.86667 18354 1246 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 508\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-10-15\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-502\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 94dec557-f57b-4543-a83e-0c49c813bd33 2019-10-15 17:34:43.824443 18355 1084 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.42.159 94dec557-f57b-4543-a83e-0c49c813bd33 2019-10-15 17:34:43.851013 18356 1246 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 bf5babde-18b0-4d15-a8ce-1fe785dbd80b 2019-10-15 17:35:48.257171 18357 1726 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 508\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 1246\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-502\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-502 187.149.42.159 bf5babde-18b0-4d15-a8ce-1fe785dbd80b 2019-10-15 17:35:48.276182 18358 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-15 17:08:20.657465000 Z\n- &1 2019-10-15 17:10:18.347584000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-15 17:40:08.903919186 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109369\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109369\n mask_addr: 4294967295\nsign_in_count:\n- 759\n- 760\n 1520 \N 189.186.100.249 17541f23-f8aa-43ee-8ca4-eb27de9c382d 2019-10-15 17:40:08.912488 18359 4 User \N \N 4 User \N update ---\nunique_session_id:\n- T9Vh2ueggCN-2r1xvAKG\n- Khxm33xJM2wpkkSL9YW2\n 1521 \N 189.186.100.249 17541f23-f8aa-43ee-8ca4-eb27de9c382d 2019-10-15 17:40:08.929429 18360 760 Product \N \N 4 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.299E4\n- !ruby/object:BigDecimal 18:0.29E3\n 3 El producto BLU-760 fue modificado. 189.186.100.249 1adeb912-a974-4f03-aae9-ebb1816e06e3 2019-10-15 17:40:30.946792 18361 1247 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 508\namount: !ruby/object:BigDecimal 18:0.1368E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1368E4\nstatus: 0\ndate_sale: 2019-10-15\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-503\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 392f26ac-129a-403f-958e-acc2d7ff08bf 2019-10-15 17:46:12.136474 18363 803 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 13 \N 187.149.42.159 392f26ac-129a-403f-958e-acc2d7ff08bf 2019-10-15 17:46:12.183058 18364 539 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '539'\n is_parent: false\n sku: BOL-539\n name: BIXA573\n description: BACKPACK CLOE\n price_base: '849.5'\n price_sale: '1699.0'\n img_product: BIXA573.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000539'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-04-16 19:23:44.756796'\n updated_at: &12 2019-10-15 17:46:31.047363618 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '539'\n sku: BOL-539\n name: BIXA573\n description: BACKPACK CLOE\n price_base: '849.50'\n price_sale: '1699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-04-16 19:23:44.756796'\n updated_at: '2019-04-16 19:23:44.798884'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000539'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '539'\n type: *3\n value: 539\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-539\n type: *7\n value: BOL-539\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BIXA573\n type: *8\n value: BIXA573\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BACKPACK CLOE\n type: *6\n value: BACKPACK CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '849.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1699E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BIXA573.jpg\n type: *2\n value: BIXA573.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000539'\n type: *2\n value: '0000539'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-04-16 19:23:44.756796'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BIXA573.jpg\n 3 El producto BOL-539 fue modificado. 189.186.100.249 cf28c868-1f83-4951-839e-768790ee2bdb 2019-10-15 17:46:31.086945 18365 1247 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 d76ffa55-a5b1-4bcd-aa17-dca943dc4a8e 2019-10-15 17:46:59.297485 18366 1727 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 508\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 1247\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-503\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-503 187.149.42.159 d76ffa55-a5b1-4bcd-aa17-dca943dc4a8e 2019-10-15 17:46:59.317003 18367 1728 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 508\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.368E3\nmove_type: '1'\nsale_id: 1247\ncardnumber: 4103\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-503\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-503 187.149.42.159 f377a99c-201e-4b76-b2db-53da6d54ee18 2019-10-15 17:47:14.866123 18368 581 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.100.249 6e79f3d1-9082-46b6-a7e5-efc47a9d4c41 2019-10-15 17:56:08.009206 18369 248 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-10-15\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.100.249 488bce39-a7be-4dd1-9a85-3f01f63302e3 2019-10-15 17:56:52.769533 18370 480 Product \N \N 4 User \N update ---\ndescription:\n- BOLSO CLOE\n- BOLSO CLOE negra\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '480'\n is_parent: false\n sku: BOL-480\n name: BIXA572\n description: BOLSO CLOE negra\n price_base: '799.5'\n price_sale: '1599.0'\n img_product: bixa572.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000480'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-13 23:46:26.880789'\n updated_at: &12 2019-10-15 17:58:06.019953168 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '480'\n sku: BOL-480\n name: BIXA572\n description: BOLSO CLOE\n price_base: '799.50'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-13 23:46:26.880789'\n updated_at: '2019-02-13 23:46:26.937614'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000480'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '480'\n type: *3\n value: 480\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-480\n type: *7\n value: BOL-480\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BIXA572\n type: *8\n value: BIXA572\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO CLOE negra\n type: *6\n value: BOLSO CLOE negra\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '799.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: bixa572.jpg\n type: *2\n value: bixa572.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000480'\n type: *2\n value: '0000480'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-13 23:46:26.880789'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- bixa572.jpg\n 3 El producto BOL-480 fue modificado. 189.186.100.249 74cddc18-065c-4b46-8ccf-7974bc2ce647 2019-10-15 17:58:06.060109 18371 904 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.100.249 231abf71-64f5-4ca5-a7d7-e938ab03006a 2019-10-15 18:09:13.436188 18372 904 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.100.249 9b60d7ba-1b0d-41a1-a375-cae9236ed00b 2019-10-15 18:09:19.144819 18373 249 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-10-15\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO Comercial a Almacen central creado. 189.186.100.249 35fd0d46-bcff-498b-9a07-33e48998eb48 2019-10-15 18:10:14.383804 18374 897 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.100.249 f1c96544-1f58-4514-88cd-74ec0f36e440 2019-10-15 18:15:01.165985 18375 898 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.100.249 6e260d72-a971-4116-aa8a-3dd476210c58 2019-10-15 18:15:18.987293 18376 250 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-10-15\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO Comercial a Almacen central creado. 189.186.100.249 f8737657-efd4-4ed9-b1a8-206bdaf7a401 2019-10-15 18:15:21.089816 18377 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-15 17:10:18.347584000 Z\n- &1 2019-10-15 17:40:08.903919000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-15 18:37:21.415825945 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109369\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109369\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 760\n- 761\n 1522 \N 187.149.42.159 963d725b-c480-4a5f-b94d-8835f2ffaf52 2019-10-15 18:37:21.424041 18378 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Khxm33xJM2wpkkSL9YW2\n- 5b2bXpDrPxR3KaWVsmbw\n 1523 \N 187.149.42.159 963d725b-c480-4a5f-b94d-8835f2ffaf52 2019-10-15 18:37:21.442572 18379 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-15 17:40:08.903919000 Z\n- &1 2019-10-15 18:37:21.415825000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-15 18:38:47.799715001 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109369\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109369\n mask_addr: 4294967295\nsign_in_count:\n- 761\n- 762\n 1524 \N 189.186.100.249 b87aed27-8da3-439e-9a6d-d868bb8b734b 2019-10-15 18:38:47.806958 18380 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5b2bXpDrPxR3KaWVsmbw\n- pNst66VmpKqew4x1VVZ8\n 1525 \N 189.186.100.249 b87aed27-8da3-439e-9a6d-d868bb8b734b 2019-10-15 18:38:47.82132 18381 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-15 18:37:21.415825000 Z\n- &1 2019-10-15 18:38:47.799715000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-15 19:54:21.228245998 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109369\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109369\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 762\n- 763\n 1526 \N 187.149.42.159 3464d44a-b065-48ed-9ea7-e6e6ca623901 2019-10-15 19:54:21.242225 18382 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pNst66VmpKqew4x1VVZ8\n- URhnyB99RnqLRFSzZM_k\n 1527 \N 187.149.42.159 3464d44a-b065-48ed-9ea7-e6e6ca623901 2019-10-15 19:54:21.264337 18383 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-15 18:38:47.799715000 Z\n- &1 2019-10-15 19:54:21.228245000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-15 19:54:21.401895732 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109369\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 763\n- 764\n 1528 \N 187.149.42.159 8b1be425-75c1-4534-b082-1dc1d3fd304b 2019-10-15 19:54:21.410638 18384 4 User \N \N 4 User \N update ---\nunique_session_id:\n- URhnyB99RnqLRFSzZM_k\n- izL8WWsrc9NL-TUzmBVa\n 1529 \N 187.149.42.159 8b1be425-75c1-4534-b082-1dc1d3fd304b 2019-10-15 19:54:21.428382 18385 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-14 23:49:02.406858000 Z\n- &1 2019-10-15 17:34:09.239068000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-15 21:10:27.966092771 Z\nsign_in_count:\n- 64\n- 65\n 133 \N 187.149.42.159 e585c1a7-4976-47fc-9658-abd371984ebc 2019-10-15 21:10:27.973011 18386 8 User \N \N 8 User \N update ---\nunique_session_id:\n- es1FQNGJSDtr_EQGvW78\n- bN6hPvJ2MXZVxFS8ULej\n 134 \N 187.149.42.159 e585c1a7-4976-47fc-9658-abd371984ebc 2019-10-15 21:10:27.987453 18387 1248 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 508\namount: !ruby/object:BigDecimal 18:0.419E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.419E3\nstatus: 0\ndate_sale: 2019-10-15\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-504\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 df2ba78b-6d6f-4982-99f4-a2d7504b0312 2019-10-15 21:11:33.723611 18388 1021 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.42.159 df2ba78b-6d6f-4982-99f4-a2d7504b0312 2019-10-15 21:11:33.74857 18389 1248 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-504 cancelada. 187.149.42.159 f50658fe-594d-4a30-9c13-71dc195d4ff6 2019-10-15 21:12:17.980146 18390 1021 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 187.149.42.159 f50658fe-594d-4a30-9c13-71dc195d4ff6 2019-10-15 21:12:18.003449 18391 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-15 19:54:21.228245000 Z\n- &1 2019-10-15 19:54:21.401895000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-15 21:22:10.887218711 Z\nsign_in_count:\n- 764\n- 765\n 1530 \N 187.149.42.159 e81e1805-b7d7-499a-9de1-8f31859a1664 2019-10-15 21:22:10.893651 18392 4 User \N \N 4 User \N update ---\nunique_session_id:\n- izL8WWsrc9NL-TUzmBVa\n- "-U3XBxcz713MGjorvS7_"\n 1531 \N 187.149.42.159 e81e1805-b7d7-499a-9de1-8f31859a1664 2019-10-15 21:22:10.908305 18393 1249 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 507\namount: !ruby/object:BigDecimal 18:0.46452E3\ntax: !ruby/object:BigDecimal 18:0.3448E2\ndiscount: !ruby/object:BigDecimal 18:0.249E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2019-10-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-671\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 706c9001-1a64-4ec7-ba6a-3b237a09a45d 2019-10-15 21:44:24.98027 18394 73 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.42.159 706c9001-1a64-4ec7-ba6a-3b237a09a45d 2019-10-15 21:44:25.017358 18395 1249 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 37b6197f-02b0-4ef7-a120-d85e2d0dea8e 2019-10-15 21:44:29.895094 18396 1729 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 507\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 1249\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-671\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-671 187.149.42.159 37b6197f-02b0-4ef7-a120-d85e2d0dea8e 2019-10-15 21:44:29.917917 18397 1730 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 507\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.99E2\nmove_type: '1'\nsale_id: 1209\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.99E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-661 187.149.42.159 4cc8efac-7a88-4306-9cd1-ab6df5a5ff44 2019-10-15 23:03:21.413591 18398 1209 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.42.159 7d590329-4e50-4482-8be5-dc993efd4fd6 2019-10-15 23:03:22.603097 18399 1731 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 507\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.258E3\nmove_type: '1'\nsale_id: 1204\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.258E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-658 187.149.42.159 1d4d05e8-0b97-4c40-a659-f1c5a378eac9 2019-10-15 23:04:11.525038 18400 1204 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.42.159 4c88f5ce-04b8-4a9b-a2b9-f9f9a9a84c18 2019-10-15 23:04:14.286843 18401 1250 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 508\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2019-10-15\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-505\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 19035e77-1a12-49e7-b6f8-ff8a565387d0 2019-10-15 23:11:25.636182 18402 794 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.42.159 19035e77-1a12-49e7-b6f8-ff8a565387d0 2019-10-15 23:11:25.66224 18403 1250 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 48d80335-7338-43aa-8ab5-493ce23579e6 2019-10-15 23:11:34.948011 18404 1732 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 508\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 1250\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-505\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-505 187.149.42.159 48d80335-7338-43aa-8ab5-493ce23579e6 2019-10-15 23:11:34.969785 18405 1251 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 508\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-10-15\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-506\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 77eecee7-a551-4473-94d8-d4fc9791fde9 2019-10-15 23:19:35.30774 18406 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 27 \N 187.149.42.159 77eecee7-a551-4473-94d8-d4fc9791fde9 2019-10-15 23:19:35.341229 18407 1251 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 1f1e7556-f4ae-4336-a635-4c75ec3a0387 2019-10-15 23:19:39.921881 18408 1733 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 508\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1251\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-506\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-506 187.149.42.159 1f1e7556-f4ae-4336-a635-4c75ec3a0387 2019-10-15 23:19:39.941144 18472 1187 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.42.159 0db5817d-9f51-4cb0-bb38-f473255d5998 2019-10-16 23:30:20.375361 18919 1197 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.42.159 acf3ce78-5286-49ed-9875-5da3dcb26dd9 2019-10-21 18:21:24.715278 18409 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-15 19:54:21.401895000 Z\n- &1 2019-10-15 21:22:10.887218000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-15 23:32:57.930095272 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109369\n mask_addr: 4294967295\nsign_in_count:\n- 765\n- 766\n 1532 \N 189.186.100.249 cb1a721b-6c71-402e-b39b-16021409d2fc 2019-10-15 23:32:57.937936 18410 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-U3XBxcz713MGjorvS7_"\n- o8MFWxCgB-3AYzGaMUkv\n 1533 \N 189.186.100.249 cb1a721b-6c71-402e-b39b-16021409d2fc 2019-10-15 23:32:57.95451 18411 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-15 21:22:10.887218000 Z\n- &1 2019-10-15 23:32:57.930095000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-16 00:03:03.250710037 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109369\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109369\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 766\n- 767\n 1534 \N 187.149.42.159 7c306bf7-a584-4d40-87e8-217d35084c36 2019-10-16 00:03:03.259391 18412 4 User \N \N 4 User \N update ---\nunique_session_id:\n- o8MFWxCgB-3AYzGaMUkv\n- bCfDBgNhfiT_fhfs6Jm9\n 1535 \N 187.149.42.159 7c306bf7-a584-4d40-87e8-217d35084c36 2019-10-16 00:03:03.277139 18413 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-15 23:32:57.930095000 Z\n- &1 2019-10-16 00:03:03.250710000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-16 00:22:32.905791497 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109369\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109369\n mask_addr: 4294967295\nsign_in_count:\n- 767\n- 768\n 1536 \N 189.186.100.249 96f8f307-c2d8-4f27-9f4f-59ed9558cb78 2019-10-16 00:22:32.914805 18414 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bCfDBgNhfiT_fhfs6Jm9\n- cuZ6TVG34pwpXGJF3s9c\n 1537 \N 189.186.100.249 96f8f307-c2d8-4f27-9f4f-59ed9558cb78 2019-10-16 00:22:32.93174 18415 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-16 00:03:03.250710000 Z\n- &1 2019-10-16 00:22:32.905791000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-16 00:32:53.031190704 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109369\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109369\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 768\n- 769\n 1538 \N 187.149.42.159 47682db5-3c22-4992-8198-ab0825d4e765 2019-10-16 00:32:53.038975 18416 4 User \N \N 4 User \N update ---\nunique_session_id:\n- cuZ6TVG34pwpXGJF3s9c\n- _sp8jzcpShLYzKCJ9KHF\n 1539 \N 187.149.42.159 47682db5-3c22-4992-8198-ab0825d4e765 2019-10-16 00:32:53.054898 18417 507 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 508\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.4665E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.3187E4\ncash_fund: !ruby/object:BigDecimal 18:0.1145E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4332E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.42.159 4e3b763b-5e4c-4f34-a6c4-2272db4d9790 2019-10-16 00:47:43.395405 18418 508 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 4e3b763b-5e4c-4f34-a6c4-2272db4d9790 2019-10-16 00:47:43.409797 18419 508 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 507\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1436E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.516E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2016E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.159 13c654ce-59d7-4d46-80bc-f37056ff7821 2019-10-16 01:20:25.684118 18420 507 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 13c654ce-59d7-4d46-80bc-f37056ff7821 2019-10-16 01:20:25.703361 18421 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-16 00:22:32.905791000 Z\n- &1 2019-10-16 00:32:53.031190000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-16 02:13:02.304609304 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109369\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\nsign_in_count:\n- 769\n- 770\n 1540 \N 189.186.52.209 dc881973-87b9-43b1-b575-d6c20a0d51ed 2019-10-16 02:13:02.316999 18422 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _sp8jzcpShLYzKCJ9KHF\n- s5MCJbf_rMcxF6CUBtpr\n 1541 \N 189.186.52.209 dc881973-87b9-43b1-b575-d6c20a0d51ed 2019-10-16 02:13:02.337939 18423 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-10-13 02:02:19.397869000 Z\n- &1 2019-10-14 19:11:01.713968000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-16 03:56:23.305616789 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934091\n mask_addr: 4294967295\nsign_in_count:\n- 30\n- 31\n 63 \N 200.68.134.139 c851d861-83ce-451a-946c-304882ee7c5c 2019-10-16 03:56:23.317972 18424 21 User \N \N 21 User \N update ---\nunique_session_id:\n- QTde2m-V2bsNXsuUmcsQ\n- XjHxbSuQEF1vDoVNbdgj\n 64 \N 200.68.134.139 c851d861-83ce-451a-946c-304882ee7c5c 2019-10-16 03:56:23.336713 18425 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-14 16:32:53.952419000 Z\n- &1 2019-10-15 16:07:07.808078000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-16 16:12:47.822033683 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 349\n- 350\n 703 \N 187.149.42.159 ee9b5e64-0822-4973-80d0-454a90d03ecd 2019-10-16 16:12:47.857834 18426 2 User \N \N 2 User \N update ---\nunique_session_id:\n- PqBD1xWxm3BqaLfbzoze\n- bXxysJueHhB1oYAg_95S\n 704 \N 187.149.42.159 ee9b5e64-0822-4973-80d0-454a90d03ecd 2019-10-16 16:12:47.884695 18427 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-13 16:13:58.150917000 Z\n- &1 2019-10-14 16:06:54.762014000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-16 16:13:34.631751749 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109086\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115417\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115417\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183126652\n mask_addr: 4294967295\nsign_in_count:\n- 37\n- 38\n 76 \N 189.186.168.124 9b1a235d-669d-4dcd-b066-c009d5da268e 2019-10-16 16:13:34.668072 18428 23 User \N \N 23 User \N update ---\nunique_session_id:\n- 4JyRwWTLzF3yW2QAsC_r\n- xHx-zbmPhufrS4iQwmgn\n 77 \N 189.186.168.124 9b1a235d-669d-4dcd-b066-c009d5da268e 2019-10-16 16:13:34.688815 18429 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-14 16:06:54.762014000 Z\n- &1 2019-10-16 16:13:34.631751000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-16 16:13:34.823534055 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115417\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183126652\n mask_addr: 4294967295\nsign_in_count:\n- 38\n- 39\n 78 \N 189.186.168.124 d5c9cdad-627d-4141-8a1a-62cab20539a4 2019-10-16 16:13:34.831382 18430 23 User \N \N 23 User \N update ---\nunique_session_id:\n- xHx-zbmPhufrS4iQwmgn\n- TaTLGPzscbLo55ptQzCp\n 79 \N 189.186.168.124 d5c9cdad-627d-4141-8a1a-62cab20539a4 2019-10-16 16:13:34.846631 18431 509 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.654E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 654.0 189.186.168.124 5778deb4-9949-437a-8226-6ad6a6199fb5 2019-10-16 16:14:21.030816 18432 510 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.516E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 516.0 187.149.42.159 5f1900a9-e4ef-444a-aec3-73a00ec3d454 2019-10-16 16:21:48.28937 18433 1252 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 510\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-10-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-672\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 dfb035f9-891a-40b1-b394-15b9966e6e10 2019-10-16 16:44:05.090667 18434 1140 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.42.159 dfb035f9-891a-40b1-b394-15b9966e6e10 2019-10-16 16:44:05.119084 18435 1252 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 8cff1a63-941f-4a24-996f-18c25d9d753c 2019-10-16 16:45:13.032409 18436 1734 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 510\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.569E3\nmove_type: '1'\nsale_id: 1252\ncardnumber: 4662\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-672\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-672 187.149.42.159 8cff1a63-941f-4a24-996f-18c25d9d753c 2019-10-16 16:45:13.053903 18437 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-16 00:32:53.031190000 Z\n- &1 2019-10-16 02:13:02.304609000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-16 17:25:19.274399030 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 770\n- 771\n 1542 \N 187.149.42.159 db7f8cfa-f2d9-45e2-bc7e-b5ab566c0fe3 2019-10-16 17:25:19.308299 18438 4 User \N \N 4 User \N update ---\nunique_session_id:\n- s5MCJbf_rMcxF6CUBtpr\n- bK5zvUcyES6xFs1-A4ZR\n 1543 \N 187.149.42.159 db7f8cfa-f2d9-45e2-bc7e-b5ab566c0fe3 2019-10-16 17:25:19.332948 18439 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-15 17:34:09.239068000 Z\n- &1 2019-10-15 21:10:27.966092000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-16 18:25:20.832517297 Z\nsign_in_count:\n- 65\n- 66\n 135 \N 187.149.42.159 b5e15c66-ba52-41cf-b1fd-4096ed03b857 2019-10-16 18:25:20.840048 18440 8 User \N \N 8 User \N update ---\nunique_session_id:\n- bN6hPvJ2MXZVxFS8ULej\n- Yy_MMWtdB-zsZr9pUf_7\n 136 \N 187.149.42.159 b5e15c66-ba52-41cf-b1fd-4096ed03b857 2019-10-16 18:25:20.854095 18441 200 Customer \N \N 2 User \N create ---\nnick_name: DIANA ISABEL FLORES\nphone: "(667) 581-7063"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DIANA ISABEL FLORES fue registrado. 187.149.42.159 8df7948a-1d46-4474-8f66-500b5aa5307b 2019-10-16 18:49:45.205477 18442 1253 Sale \N \N 2 User \N create ---\ncustomer_id: 200\nuser_id: 2\nopen_cash_register_id: 510\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2019-10-16\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-673\nexpiration_date: 2019-11-20\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 7e655699-2450-4da3-bc68-0a4e612f1d24 2019-10-16 18:50:00.173067 18443 1097 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.42.159 7e655699-2450-4da3-bc68-0a4e612f1d24 2019-10-16 18:50:00.213557 18444 1735 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 510\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.229E3\nmove_type: '1'\nsale_id: 1253\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-673\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.229E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-673 187.149.42.159 a70d483e-5390-4315-83d4-5bffa47546aa 2019-10-16 18:50:38.887474 18445 1253 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.159 e8d898b6-491f-434e-bc22-2ace537ca9b7 2019-10-16 18:50:43.292056 18446 201 Customer \N \N 23 User \N create ---\nnick_name: ESMERALDA ESTRADA\nphone: "(667) 463-4247"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ESMERALDA ESTRADA fue registrado. 189.186.168.124 cd61cd93-f958-4a1e-bf82-0fe5f934b82e 2019-10-16 19:42:54.842201 18447 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-16 02:13:02.304609000 Z\n- &1 2019-10-16 17:25:19.274399000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-16 19:51:14.155706340 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 771\n- 772\n 1544 \N 187.149.42.159 7390c360-7e3e-4078-9e46-d24fc7851250 2019-10-16 19:51:14.164089 18448 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bK5zvUcyES6xFs1-A4ZR\n- R6H6hy9XXUg1S8jCTdXU\n 1545 \N 187.149.42.159 7390c360-7e3e-4078-9e46-d24fc7851250 2019-10-16 19:51:14.182211 18449 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-16 17:25:19.274399000 Z\n- &1 2019-10-16 19:51:14.155706000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-16 19:53:39.865200568 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\nsign_in_count:\n- 772\n- 773\n 1546 \N 189.186.52.209 b007c54d-5096-491d-8fa8-c9a6ef5d4965 2019-10-16 19:53:39.871934 18450 4 User \N \N 4 User \N update ---\nunique_session_id:\n- R6H6hy9XXUg1S8jCTdXU\n- n-EzhFE2iyFU1HuAM91z\n 1547 \N 189.186.52.209 b007c54d-5096-491d-8fa8-c9a6ef5d4965 2019-10-16 19:53:39.887265 18623 822 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000822'\n 2 \N 187.149.42.159 58d25fb3-9367-4ce3-b71e-3d236b63c288 2019-10-19 19:58:52.333901 18451 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-16 19:51:14.155706000 Z\n- &1 2019-10-16 19:53:39.865200000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-16 19:55:38.388939365 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 773\n- 774\n 1548 \N 187.149.42.159 2141f9b6-ff09-4f3e-b52c-724c49dbb8bb 2019-10-16 19:55:38.396171 18452 4 User \N \N 4 User \N update ---\nunique_session_id:\n- n-EzhFE2iyFU1HuAM91z\n- 27ZXic5xNg5So6yj8TYM\n 1549 \N 187.149.42.159 2141f9b6-ff09-4f3e-b52c-724c49dbb8bb 2019-10-16 19:55:38.411133 18453 808 Product \N \N 4 User \N create ---\nsku: VES-808\nname: VE-0052\ndescription: VESTIDO LATISTE NEGRO CON LENTEJUELA VERDE\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-808 fue creado. 187.149.42.159 de57e831-1e68-492c-940d-ca920bce7fa0 2019-10-16 19:58:41.292097 18454 808 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000808'\n 2 \N 187.149.42.159 de57e831-1e68-492c-940d-ca920bce7fa0 2019-10-16 19:58:41.324901 18455 1163 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 808\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 de57e831-1e68-492c-940d-ca920bce7fa0 2019-10-16 19:58:41.354154 18456 166 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-13\namount: !ruby/object:BigDecimal 18:0.3398E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3398E4\nobservations: ''\npurchase_date: 2019-10-16\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-13 por $ 3398.0 MXN creada. 187.149.42.159 bc9f47be-c85d-4485-b290-7430978d965d 2019-10-16 19:58:45.695662 18457 1163 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.42.159 bc9f47be-c85d-4485-b290-7430978d965d 2019-10-16 19:58:45.716233 18458 1254 Sale \N \N 23 User \N create ---\ncustomer_id: 201\nuser_id: 23\nopen_cash_register_id: 509\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2019-10-16\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-73\nexpiration_date: 2019-11-20\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.168.124 52e3cf70-b88b-4dd2-9575-0fb824988bcc 2019-10-16 20:01:29.905752 18459 1163 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.168.124 52e3cf70-b88b-4dd2-9575-0fb824988bcc 2019-10-16 20:01:29.93362 18460 1736 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 509\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1254\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-73\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-73 189.186.168.124 7d9dbbb4-4792-4213-bdbc-c15a1826282c 2019-10-16 20:01:39.694026 18461 1254 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.168.124 e11b67a5-6eac-48e1-9658-9a72e0751a1b 2019-10-16 20:01:41.258898 18462 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-16 19:53:39.865200000 Z\n- &1 2019-10-16 19:55:38.388939000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-16 21:39:29.279694915 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\nsign_in_count:\n- 774\n- 775\n 1550 \N 189.186.52.209 325fc0c9-b6e1-43c7-868d-4e4e4e32172a 2019-10-16 21:39:29.306529 18463 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 27ZXic5xNg5So6yj8TYM\n- UFJta6NxLFEdYwyC5Z8X\n 1551 \N 189.186.52.209 325fc0c9-b6e1-43c7-868d-4e4e4e32172a 2019-10-16 21:39:29.329658 18464 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-15 21:10:27.966092000 Z\n- &1 2019-10-16 18:25:20.832517000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-16 21:54:39.291624479 Z\nsign_in_count:\n- 66\n- 67\n 137 \N 187.149.42.159 3ffd2794-bd28-487c-a088-58c32f50a19b 2019-10-16 21:54:39.299743 18465 8 User \N \N 8 User \N update ---\nunique_session_id:\n- Yy_MMWtdB-zsZr9pUf_7\n- xgRYVNUVzw5yeykszzt8\n 138 \N 187.149.42.159 3ffd2794-bd28-487c-a088-58c32f50a19b 2019-10-16 21:54:39.316102 18466 511 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.1145E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1145.0 187.149.42.159 beba3496-b336-46a4-a44a-9ecde03a3a62 2019-10-16 22:33:34.821946 18467 1255 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 511\namount: !ruby/object:BigDecimal 18:0.589E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2019-10-16\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-507\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 19b540d7-6cd8-4592-b857-0731d55541a1 2019-10-16 22:34:08.893479 18468 1139 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.42.159 19b540d7-6cd8-4592-b857-0731d55541a1 2019-10-16 22:34:08.922499 18469 1255 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 99619bb5-7e70-4e97-9db3-0bbc6507363d 2019-10-16 22:34:45.228712 18470 1737 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 511\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.589E3\nmove_type: '1'\nsale_id: 1255\ncardnumber: 7859\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-507\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-507 187.149.42.159 99619bb5-7e70-4e97-9db3-0bbc6507363d 2019-10-16 22:34:45.253792 18471 1738 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 510\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.619E3\nmove_type: '1'\nsale_id: 1187\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.619E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-655 187.149.42.159 883067e8-2c04-491d-91d9-cc10c632bc0e 2019-10-16 23:30:17.177108 18473 1256 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 509\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2019-10-16\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-74\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.168.124 437fea12-02d7-4a77-b7ea-bac234fdf3ba 2019-10-17 01:11:31.707184 18474 826 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 2 \N 189.186.168.124 437fea12-02d7-4a77-b7ea-bac234fdf3ba 2019-10-17 01:11:31.750206 18475 836 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 5 \N 189.186.168.124 437fea12-02d7-4a77-b7ea-bac234fdf3ba 2019-10-17 01:11:31.783405 18476 1256 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.168.124 c3254eed-d80e-46bf-8e12-3d056d04d346 2019-10-17 01:11:59.37622 18477 1739 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 509\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.13925E5\nmove_type: '1'\nsale_id: 1256\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-74\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-74 189.186.168.124 c3254eed-d80e-46bf-8e12-3d056d04d346 2019-10-17 01:11:59.398903 18478 1739 CashRegistersMove \N \N 23 User \N destroy ---\nopen_cash_register_id: 509\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.13925E5\nmove_type: '1'\nsale_id: 1256\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-74\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.168.124 0aaae591-b300-4a9c-8a0a-ec87d8933501 2019-10-17 01:12:04.961945 18479 1740 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 509\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1398E4\nmove_type: '1'\nsale_id: 1256\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-74\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-74 189.186.168.124 2569f139-a6e3-4b44-aba8-ff820bcf620b 2019-10-17 01:12:19.122734 18480 509 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 509\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.1898E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.654E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1154E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.168.124 5cc08bd5-f8da-49e3-872f-f26a08f058af 2019-10-17 01:15:20.655485 18481 509 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.168.124 5cc08bd5-f8da-49e3-872f-f26a08f058af 2019-10-17 01:15:20.671954 18482 510 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 510\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1417E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.4E3\ncash_fund: !ruby/object:BigDecimal 18:0.964E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1364E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.159 001413cb-6696-42c2-b284-227523b822d5 2019-10-17 01:26:52.596232 18483 510 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 001413cb-6696-42c2-b284-227523b822d5 2019-10-17 01:26:52.61124 18484 511 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 511\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.589E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1145E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1145E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.42.159 fedc6860-b293-427a-bcb3-0197d931c1f5 2019-10-17 01:34:22.249944 18485 511 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 fedc6860-b293-427a-bcb3-0197d931c1f5 2019-10-17 01:34:22.265559 18486 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-16 16:13:34.631751000 Z\n- &1 2019-10-16 16:13:34.823534000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-17 16:11:18.019446829 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183126652\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183100092\n mask_addr: 4294967295\nsign_in_count:\n- 39\n- 40\n 80 \N 189.186.64.188 57a7c7a3-fe60-4890-879f-bd88dac3b5a5 2019-10-17 16:11:18.055814 18487 23 User \N \N 23 User \N update ---\nunique_session_id:\n- TaTLGPzscbLo55ptQzCp\n- bP8B7E6e-x17EoVDeTQp\n 81 \N 189.186.64.188 57a7c7a3-fe60-4890-879f-bd88dac3b5a5 2019-10-17 16:11:18.079699 18488 512 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.654E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 654.0 189.186.64.188 23db4ca8-8070-41e3-a619-6c4ad8e6b058 2019-10-17 16:11:51.616533 18489 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-10-13 21:03:11.537388000 Z\n- &1 2019-10-14 19:13:24.356911000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-17 16:30:36.374670373 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 18\n- 19\n 38 \N 187.149.42.159 91838ec7-36cd-4168-81ff-4b76b4ebb3be 2019-10-17 16:30:36.382526 18490 25 User \N \N 25 User \N update ---\nunique_session_id:\n- 2yRb5tPajHuvCUaU1uZK\n- RtavqQRarNDgdYEhfxBr\n 39 \N 187.149.42.159 91838ec7-36cd-4168-81ff-4b76b4ebb3be 2019-10-17 16:30:36.397368 18491 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-10-10 23:22:45.804539000 Z\n- &1 2019-10-14 18:49:32.011866000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-17 16:47:03.856014413 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 155\n- 156\n 314 \N 187.149.42.159 0a850a55-3bd4-4d4c-acbb-67e828d35983 2019-10-17 16:47:03.864402 18492 10 User \N \N 10 User \N update ---\nunique_session_id:\n- y33oQxHyCwtCnhsb4hqD\n- spom12XaJrFK8JiAXrfA\n 315 \N 187.149.42.159 0a850a55-3bd4-4d4c-acbb-67e828d35983 2019-10-17 16:47:03.881151 18493 513 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.1145E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1145.0 187.149.42.159 d8716d21-5e26-4ac2-9efe-96a6c188eb60 2019-10-17 16:47:07.091182 18920 1203 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.42.159 82fdc827-6c1a-4a14-b8ce-fbbf3e7edf7a 2019-10-21 18:21:38.748897 18494 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-10-14 19:11:01.713968000 Z\n- &1 2019-10-16 03:56:23.305616000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-17 16:52:08.002545117 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934091\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934091\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 31\n- 32\n 65 \N 187.149.42.159 6df15c75-5f03-4e47-8d9b-b5696bea6e40 2019-10-17 16:52:08.010197 18495 21 User \N \N 21 User \N update ---\nunique_session_id:\n- XjHxbSuQEF1vDoVNbdgj\n- _Zz7yQtKWwKEUFAUfv4e\n 66 \N 187.149.42.159 6df15c75-5f03-4e47-8d9b-b5696bea6e40 2019-10-17 16:52:08.024093 18496 1741 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 426\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1077\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '142568798758'\n 1 \N 187.149.42.159 5f66da92-b67c-4ff8-89f0-d785372613c5 2019-10-17 16:53:25.962499 18497 1741 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 426\n- 512\n 2 movimiento de efectivo por venta con folio PV3-V-29 187.149.42.159 5f66da92-b67c-4ff8-89f0-d785372613c5 2019-10-17 16:53:25.985614 18498 1742 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 470\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 1183\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '142568798758'\n 1 \N 187.149.42.159 bbe982f0-8885-4c3b-acf6-abc1ddc2681a 2019-10-17 16:53:48.257735 18499 1742 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 470\n- 512\n 2 movimiento de efectivo por venta con folio PV3-V-54 187.149.42.159 bbe982f0-8885-4c3b-acf6-abc1ddc2681a 2019-10-17 16:53:48.282318 18500 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-16 19:55:38.388939000 Z\n- &1 2019-10-16 21:39:29.279694000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-17 17:00:08.388879984 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 775\n- 776\n 1552 \N 187.149.42.159 d6ed57de-d3eb-43c9-b850-1c4b31841b1c 2019-10-17 17:00:08.396211 18501 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UFJta6NxLFEdYwyC5Z8X\n- w8M4oxuLWb_zMu4cT93L\n 1553 \N 187.149.42.159 d6ed57de-d3eb-43c9-b850-1c4b31841b1c 2019-10-17 17:00:08.412323 18502 23 Category \N \N 4 User \N create ---\ncategory: REGALO\ndescription: EMPAQUES DE REGALO\nstatus: 1\nparent_id: 0\n 1 La línea de producto REGALO fue creada. 187.149.42.159 7a354202-7957-41bc-afac-b1f2ba6d9021 2019-10-17 17:02:12.708822 18503 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-16 21:39:29.279694000 Z\n- &1 2019-10-17 17:00:08.388879000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-17 17:08:48.715810333 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934332\n mask_addr: 4294967295\nsign_in_count:\n- 776\n- 777\n 1554 \N 200.68.135.124 f1678ef2-2000-49ee-ad4d-c78a08cf5a89 2019-10-17 17:08:48.723461 18504 4 User \N \N 4 User \N update ---\nunique_session_id:\n- w8M4oxuLWb_zMu4cT93L\n- Nh5GXYwyFKiSZyxQkbMD\n 1555 \N 200.68.135.124 f1678ef2-2000-49ee-ad4d-c78a08cf5a89 2019-10-17 17:08:48.737621 18505 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-16 18:25:20.832517000 Z\n- &1 2019-10-16 21:54:39.291624000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-17 17:10:40.934100007 Z\nsign_in_count:\n- 67\n- 68\n 139 \N 187.149.42.159 0a8ac75e-0908-4d5c-9fab-6351a23dc87f 2019-10-17 17:10:40.939363 18506 8 User \N \N 8 User \N update ---\nunique_session_id:\n- xgRYVNUVzw5yeykszzt8\n- dpdSE9Ai8ZCXUwgtneSF\n 140 \N 187.149.42.159 0a8ac75e-0908-4d5c-9fab-6351a23dc87f 2019-10-17 17:10:40.951126 18507 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-15 16:07:07.808078000 Z\n- &1 2019-10-16 16:12:47.822033000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-17 17:12:43.454362401 Z\nsign_in_count:\n- 350\n- 351\n 705 \N 187.149.42.159 3cc59acc-e3bf-4750-8df2-ddba0d2cdb64 2019-10-17 17:12:43.460333 18508 2 User \N \N 2 User \N update ---\nunique_session_id:\n- bXxysJueHhB1oYAg_95S\n- wTfQVTaeYs9NwQHaHTYg\n 706 \N 187.149.42.159 3cc59acc-e3bf-4750-8df2-ddba0d2cdb64 2019-10-17 17:12:43.473246 18509 514 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.964E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 964.0 187.149.42.159 a8e17114-59ff-4b98-a560-3af6c4524088 2019-10-17 17:13:00.597263 18510 1257 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 514\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2019-10-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-674\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 bfd21539-0148-43e8-9f56-dbaa5884ce73 2019-10-17 17:13:21.079883 18511 1097 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.42.159 bfd21539-0148-43e8-9f56-dbaa5884ce73 2019-10-17 17:13:21.107628 18512 1257 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 89e14d80-7c04-45e3-bfab-6ba351e3f7ad 2019-10-17 17:13:27.220903 18513 1743 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 514\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.729E3\nmove_type: '1'\nsale_id: 1257\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-674\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.729E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-674 187.149.42.159 89e14d80-7c04-45e3-bfab-6ba351e3f7ad 2019-10-17 17:13:27.241338 18514 1258 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 512\namount: !ruby/object:BigDecimal 18:0.829E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.829E3\nstatus: 0\ndate_sale: 2019-10-17\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-75\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.64.188 e5cb0411-3af3-4319-b4eb-bb1d5f3a59ce 2019-10-17 17:28:05.508194 18515 1134 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.64.188 e5cb0411-3af3-4319-b4eb-bb1d5f3a59ce 2019-10-17 17:28:05.532963 18516 1258 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.64.188 975c27a3-49d2-4088-b61a-ac7c331b0bf3 2019-10-17 17:28:19.764738 18517 1744 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 512\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.829E3\nmove_type: '1'\nsale_id: 1258\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-75\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.71E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-75 189.186.64.188 975c27a3-49d2-4088-b61a-ac7c331b0bf3 2019-10-17 17:28:19.78537 18518 1259 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 512\namount: !ruby/object:BigDecimal 18:0.3098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3098E4\nstatus: 0\ndate_sale: 2019-10-17\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-76\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.64.188 954924ce-c6c2-4bbe-ba23-7e1bdcd9b1ab 2019-10-17 17:31:39.50873 18519 848 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 2 \N 189.186.64.188 954924ce-c6c2-4bbe-ba23-7e1bdcd9b1ab 2019-10-17 17:31:39.535911 18520 1035 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.64.188 954924ce-c6c2-4bbe-ba23-7e1bdcd9b1ab 2019-10-17 17:31:39.561035 18521 1259 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.64.188 e1d97d37-2135-49f5-8eed-229dae529762 2019-10-17 17:31:49.83408 18522 1745 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 512\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3098E4\nmove_type: '1'\nsale_id: 1259\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-76\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.31E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-76 189.186.64.188 e1d97d37-2135-49f5-8eed-229dae529762 2019-10-17 17:31:49.862618 18523 1746 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 513\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 973\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '142568798758'\n 1 movimiento de efectivo por venta con folio PV2-V-406 187.149.42.159 55da74ea-0070-4a01-b113-6f8cc2b9802e 2019-10-17 17:41:11.827509 18524 973 Sale \N \N 8 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.42.159 92434726-c439-46fd-b999-13e0e6caae80 2019-10-17 17:41:13.809732 18525 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-10-14 19:13:24.356911000 Z\n- &1 2019-10-17 16:30:36.374670000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-17 17:41:34.083365139 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 19\n- 20\n 40 \N 187.149.42.159 73aa15ce-c7e2-4f7f-a31a-b5d6b3bf453d 2019-10-17 17:41:34.090399 18526 25 User \N \N 25 User \N update ---\nunique_session_id:\n- RtavqQRarNDgdYEhfxBr\n- EmPiZ9vjzdKLe4QeUuQL\n 41 \N 187.149.42.159 73aa15ce-c7e2-4f7f-a31a-b5d6b3bf453d 2019-10-17 17:41:34.102829 18527 1747 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 514\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.319E3\nmove_type: '1'\nsale_id: 972\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '142568798758'\n 1 movimiento de efectivo por venta con folio PV1-V-565 187.149.42.159 2aee211a-89d6-457a-a5e4-74c78900990e 2019-10-17 17:42:01.02571 18528 972 Sale \N \N 25 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.42.159 60116bfe-9be7-4f18-939d-33ff18243cb2 2019-10-17 17:42:03.3067 18529 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-16 21:54:39.291624000 Z\n- &1 2019-10-17 17:10:40.934100000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-17 17:48:45.379329875 Z\nsign_in_count:\n- 68\n- 69\n 141 \N 187.149.42.159 a9e5fd9c-5ac3-4896-9aae-cf53d984d6de 2019-10-17 17:48:45.385329 18530 8 User \N \N 8 User \N update ---\nunique_session_id:\n- dpdSE9Ai8ZCXUwgtneSF\n- kFmwaJS2FaGDKjNBj1oz\n 142 \N 187.149.42.159 a9e5fd9c-5ac3-4896-9aae-cf53d984d6de 2019-10-17 17:48:45.397702 18531 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-17 17:00:08.388879000 Z\n- &1 2019-10-17 17:08:48.715810000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-17 21:07:33.710477564 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934332\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934332\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 777\n- 778\n 1556 \N 187.149.42.159 4172984b-d6e0-43e6-b4e8-e61d2976dc66 2019-10-17 21:07:33.719432 18532 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Nh5GXYwyFKiSZyxQkbMD\n- aFjNsbVSK-sJy8ByUv39\n 1557 \N 187.149.42.159 4172984b-d6e0-43e6-b4e8-e61d2976dc66 2019-10-17 21:07:33.738605 18533 969 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.42.159 5a901761-42d6-40c0-a791-b22786a39382 2019-10-17 21:07:53.734764 18534 969 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.42.159 b0646da5-bc05-41e1-b9e0-e45067b57130 2019-10-17 21:08:00.108537 18535 823 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.42.159 c5859a45-ff94-4447-832b-27c100f12853 2019-10-17 21:08:38.00497 18536 823 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.42.159 ef7e2c38-3ef8-4287-8a0d-ce552ff7fdd1 2019-10-17 21:08:42.01837 18537 825 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.42.159 3f09655c-7e3f-45b2-ad04-49e06a4ef3c9 2019-10-17 21:09:29.221157 18538 825 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.42.159 ff170cbe-d810-4a14-aebb-ff46059d0fda 2019-10-17 21:09:34.244851 18539 251 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2019-10-17\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 187.149.42.159 9260d234-f06b-4bd5-9bd2-fcd513b53e27 2019-10-17 21:09:36.819886 18540 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-17 17:10:40.934100000 Z\n- &1 2019-10-17 17:48:45.379329000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-17 21:09:54.849122627 Z\nsign_in_count:\n- 69\n- 70\n 143 \N 187.149.42.159 8389bd6a-a05e-4da3-bb7b-f1a9727c4622 2019-10-17 21:09:54.856372 18541 8 User \N \N 8 User \N update ---\nunique_session_id:\n- kFmwaJS2FaGDKjNBj1oz\n- J92x6RXtiQrt9dbWeYRy\n 144 \N 187.149.42.159 8389bd6a-a05e-4da3-bb7b-f1a9727c4622 2019-10-17 21:09:54.870678 18542 1748 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 513\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.798E3\nmove_type: '1'\nsale_id: 1115\ncardnumber: 9980\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-457 187.149.42.159 391ce9b4-7964-4124-b81a-d326a277af39 2019-10-17 21:10:53.475874 18543 1115 Sale \N \N 8 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.42.159 e2dbb8d1-7708-4b5e-b6e5-64b1f8e8ac27 2019-10-17 21:10:54.9691 18544 512 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 512\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.4827E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.39E4\ncash_fund: !ruby/object:BigDecimal 18:0.681E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4581E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.64.188 de26e33a-ef57-42ca-98f5-8fa145605ccd 2019-10-17 22:47:15.287249 18545 512 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.64.188 de26e33a-ef57-42ca-98f5-8fa145605ccd 2019-10-17 22:47:15.320074 18546 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-16 16:13:34.823534000 Z\n- &1 2019-10-17 16:11:18.019446000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-19 16:10:16.556223738 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183126652\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183100092\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183100092\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183108660\n mask_addr: 4294967295\nsign_in_count:\n- 40\n- 41\n 82 \N 189.186.98.52 e6abba59-2272-4e8f-8a79-067dcfb3845f 2019-10-19 16:10:16.593397 18547 23 User \N \N 23 User \N update ---\nunique_session_id:\n- bP8B7E6e-x17EoVDeTQp\n- XcjndRryNtL9Y45ATdiF\n 83 \N 189.186.98.52 e6abba59-2272-4e8f-8a79-067dcfb3845f 2019-10-19 16:10:16.618465 18548 515 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.681E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 681.0 189.186.98.52 d6a53ff8-f81e-458c-afcd-23d90a9d6968 2019-10-19 16:10:40.73433 18549 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-16 16:12:47.822033000 Z\n- &1 2019-10-17 17:12:43.454362000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-19 16:22:52.898196644 Z\nsign_in_count:\n- 351\n- 352\n 707 \N 187.149.42.159 e17086d0-dfd0-452d-a3c7-3b82d22caa22 2019-10-19 16:22:52.92504 18550 2 User \N \N 2 User \N update ---\nunique_session_id:\n- wTfQVTaeYs9NwQHaHTYg\n- VDGf6vQAabqx6Ayy8yoW\n 708 \N 187.149.42.159 e17086d0-dfd0-452d-a3c7-3b82d22caa22 2019-10-19 16:22:52.944939 18551 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-17 17:48:45.379329000 Z\n- &1 2019-10-17 21:09:54.849122000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-19 16:31:59.346580881 Z\nsign_in_count:\n- 70\n- 71\n 145 \N 187.149.42.159 2897cdb7-8fdd-42e2-8be6-c600e0257fd3 2019-10-19 16:31:59.352414 18552 8 User \N \N 8 User \N update ---\nunique_session_id:\n- J92x6RXtiQrt9dbWeYRy\n- fosyuKjzQJojn3GJXTsz\n 146 \N 187.149.42.159 2897cdb7-8fdd-42e2-8be6-c600e0257fd3 2019-10-19 16:31:59.364474 18553 513 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 513\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.1148E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1145E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1145E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.42.159 d788d6f1-2f84-4cd2-9339-25320616201e 2019-10-19 16:32:38.38309 18554 513 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 d788d6f1-2f84-4cd2-9339-25320616201e 2019-10-19 16:32:38.396807 18555 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-17 17:08:48.715810000 Z\n- &1 2019-10-17 21:07:33.710477000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-19 17:17:37.235980268 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934332\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 778\n- 779\n 1558 \N 187.149.42.159 804a633e-d07b-4467-96c5-5e7587dbd18c 2019-10-19 17:17:37.264708 18556 4 User \N \N 4 User \N update ---\nunique_session_id:\n- aFjNsbVSK-sJy8ByUv39\n- z67_q4nyNCv6WTpkHfD7\n 1559 \N 187.149.42.159 804a633e-d07b-4467-96c5-5e7587dbd18c 2019-10-19 17:17:37.288429 18557 1260 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 515\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-10-19\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-77\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.98.52 9f3c5075-ec0a-4b54-8c92-a9989834ee4a 2019-10-19 17:18:55.898478 18558 813 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.98.52 9f3c5075-ec0a-4b54-8c92-a9989834ee4a 2019-10-19 17:18:55.935146 18559 1260 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.98.52 242d31ff-2be3-48be-9374-6fcc77a1738d 2019-10-19 17:19:00.375173 18560 1749 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 515\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1260\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-77\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-77 189.186.98.52 242d31ff-2be3-48be-9374-6fcc77a1738d 2019-10-19 17:19:00.396885 18561 26 User \N \N 4 User \N create ---\nuserid: DANIELASBYSUO\nfirst_name: DANIELA\nlast_name: URCISICHI OSUNA\nusertype: G\nemail: dani_urci7@hotmail.com\nencrypted_password: "$2a$10$.Jl/hhUSL7LmsixL5IaNneOuAxMukVkufHSD7wJ2DEy1NZiWT2lpy"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 2\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 187.149.42.159 e9319a40-7c8f-4b57-9722-350997811f68 2019-10-19 17:19:45.31374 18562 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-10-19 17:20:06.426747949 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 187.149.42.159 92f873e9-1be9-40a7-9823-e9a1abf07fd1 2019-10-19 17:20:06.433425 18563 26 User \N \N 26 User \N update ---\nunique_session_id:\n- \n- 8yR4yWwfeF-g5xHnRkSH\n 3 \N 187.149.42.159 92f873e9-1be9-40a7-9823-e9a1abf07fd1 2019-10-19 17:20:06.447172 18624 1178 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 822\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 58d25fb3-9367-4ce3-b71e-3d236b63c288 2019-10-19 19:58:52.357028 18564 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-17 21:07:33.710477000 Z\n- &1 2019-10-19 17:17:37.235980000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-19 17:37:27.808314816 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\nsign_in_count:\n- 779\n- 780\n 1560 \N 189.186.52.209 3ad539de-9989-4ef1-83f5-9c9c3396a5c7 2019-10-19 17:37:27.815676 18565 4 User \N \N 4 User \N update ---\nunique_session_id:\n- z67_q4nyNCv6WTpkHfD7\n- v79s4apHPxV61ZYs4fqf\n 1561 \N 189.186.52.209 3ad539de-9989-4ef1-83f5-9c9c3396a5c7 2019-10-19 17:37:27.831454 18566 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-19 17:17:37.235980000 Z\n- &1 2019-10-19 17:37:27.808314000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-19 17:58:09.201786608 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 780\n- 781\n 1562 \N 187.149.42.159 53cfe16b-e4d9-4ed5-8d99-121089518632 2019-10-19 17:58:09.209158 18567 4 User \N \N 4 User \N update ---\nunique_session_id:\n- v79s4apHPxV61ZYs4fqf\n- VULjD4vmekDWtxGhAt_-\n 1563 \N 187.149.42.159 53cfe16b-e4d9-4ed5-8d99-121089518632 2019-10-19 17:58:09.234802 18568 809 Product \N \N 4 User \N create ---\nsku: JUM-809\nname: V-0073\ndescription: JUMPER BLUE S NEGRO CON PLATEADO EN EL CUELLO\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 1\nproduct_service_key: '01010101'\n 1 El producto JUM-809 fue creado. 187.149.42.159 d5542aa5-a7f6-46c2-b0f5-d68160c31fd7 2019-10-19 18:05:18.076776 18569 809 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000809'\n 2 \N 187.149.42.159 d5542aa5-a7f6-46c2-b0f5-d68160c31fd7 2019-10-19 18:05:18.121699 18570 1164 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 809\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 d5542aa5-a7f6-46c2-b0f5-d68160c31fd7 2019-10-19 18:05:18.155322 18571 810 Product \N \N 4 User \N create ---\nsku: VES-810\nname: VE-0058\ndescription: VESTIDO VALENTINE NEGRO CON DORADO\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-810 fue creado. 187.149.42.159 1e409b7d-a4d7-4cf9-9183-a08eefa9beb2 2019-10-19 18:06:52.044515 18572 810 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000810'\n 2 \N 187.149.42.159 1e409b7d-a4d7-4cf9-9183-a08eefa9beb2 2019-10-19 18:06:52.070285 18573 1165 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 810\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 1e409b7d-a4d7-4cf9-9183-a08eefa9beb2 2019-10-19 18:06:52.09572 18574 167 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-54\namount: !ruby/object:BigDecimal 18:0.3447E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3447E4\nobservations: ''\npurchase_date: 2019-10-19\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-54 por $ 3447.0 MXN creada. 187.149.42.159 4d400eb4-773a-4386-a594-3db9cecf0b2a 2019-10-19 18:06:56.893587 18575 1165 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.42.159 4d400eb4-773a-4386-a594-3db9cecf0b2a 2019-10-19 18:06:56.913271 18576 1164 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.42.159 4d400eb4-773a-4386-a594-3db9cecf0b2a 2019-10-19 18:06:56.934051 18577 1123 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.42.159 a672bc9a-2651-426a-8e3e-3618d935684c 2019-10-19 18:49:53.056344 18578 1123 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.42.159 92ab6763-9c94-44dc-b203-02b5f8121ba2 2019-10-19 18:49:55.839226 18579 252 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-10-19\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.42.159 f535cbb4-3688-4daf-aa50-2dca2d284465 2019-10-19 18:50:01.715685 18580 252 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-19\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.42.159 fff450aa-3a95-4b85-92fa-914b93bd5816 2019-10-19 18:51:52.691024 18581 1166 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 782\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 fff450aa-3a95-4b85-92fa-914b93bd5816 2019-10-19 18:51:52.71082 18582 1261 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 514\namount: !ruby/object:BigDecimal 18:0.1538E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1538E4\nstatus: 0\ndate_sale: 2019-10-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-675\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 cfde58c3-bd83-493e-a38d-9ed6afb8bd5d 2019-10-19 18:52:39.86286 18583 1166 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.42.159 cfde58c3-bd83-493e-a38d-9ed6afb8bd5d 2019-10-19 18:52:39.886158 18584 1046 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.42.159 cfde58c3-bd83-493e-a38d-9ed6afb8bd5d 2019-10-19 18:52:39.906577 18585 1261 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 65e3b018-6ad1-4ff1-9d63-2cbf186f7f78 2019-10-19 18:52:48.108996 18691 747 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.42.159 bda2ea54-f501-4ca8-95dc-bf1766a825b2 2019-10-19 22:26:09.131251 18692 784 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 187.149.42.159 bda2ea54-f501-4ca8-95dc-bf1766a825b2 2019-10-19 22:26:09.15784 18586 1750 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 514\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1538E4\nmove_type: '1'\nsale_id: 1261\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-675\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1538E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-675 187.149.42.159 65e3b018-6ad1-4ff1-9d63-2cbf186f7f78 2019-10-19 18:52:48.136047 18587 811 Product \N \N 4 User \N create ---\nsku: COL-811\nname: ARE-0002\ndescription: ARETE DE LUNA Y ESTRELLA CON PERLA\nprice_base: !ruby/object:BigDecimal 18:0.9945E2\nprice_sale: !ruby/object:BigDecimal 18:0.249E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-811 fue creado. 187.149.42.159 cf274786-06ad-4e32-bb78-4b07d8c593f0 2019-10-19 18:57:00.837698 18588 811 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000811'\n 2 \N 187.149.42.159 cf274786-06ad-4e32-bb78-4b07d8c593f0 2019-10-19 18:57:00.863608 18589 1167 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 811\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 cf274786-06ad-4e32-bb78-4b07d8c593f0 2019-10-19 18:57:00.887681 18590 812 Product \N \N 4 User \N create ---\nsku: COL-812\nname: ARE-0003\ndescription: ARETE DE LUNA CON PERLITAS\nprice_base: !ruby/object:BigDecimal 18:0.128E3\nprice_sale: !ruby/object:BigDecimal 18:0.32E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3105.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-812 fue creado. 187.149.42.159 e9f8ff71-06e7-4d59-9452-80b59c24ae33 2019-10-19 19:00:33.058902 18591 812 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000812'\n 2 \N 187.149.42.159 e9f8ff71-06e7-4d59-9452-80b59c24ae33 2019-10-19 19:00:33.086107 18592 1168 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 812\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 e9f8ff71-06e7-4d59-9452-80b59c24ae33 2019-10-19 19:00:33.122005 18593 1751 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 514\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 1180\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-649 187.149.42.159 71991a97-d5e7-42fe-b971-6e5d8650bed0 2019-10-19 19:01:42.430819 18594 1180 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.42.159 77aa1b94-faf9-4978-a481-2f3e4e436656 2019-10-19 19:01:43.627964 18595 813 Product \N \N 4 User \N create ---\nsku: COL-813\nname: ARE-0004\ndescription: ARETE ESTRELLA Y LUNA DORADO CON BRILLOS\nprice_base: !ruby/object:BigDecimal 18:0.1E3\nprice_sale: !ruby/object:BigDecimal 18:0.249E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3106.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-813 fue creado. 187.149.42.159 6e960b53-6288-4791-85c4-89c99c10a7bb 2019-10-19 19:02:00.776461 18596 813 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000813'\n 2 \N 187.149.42.159 6e960b53-6288-4791-85c4-89c99c10a7bb 2019-10-19 19:02:00.805915 18597 1169 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 813\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 6e960b53-6288-4791-85c4-89c99c10a7bb 2019-10-19 19:02:00.829888 18598 814 Product \N \N 4 User \N create ---\nsku: COL-814\nname: ARE-0005\ndescription: ARETE DE LUNA CON ESTRELLAS PLATEADAS\nprice_base: !ruby/object:BigDecimal 18:0.82E2\nprice_sale: !ruby/object:BigDecimal 18:0.209E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3107.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-814 fue creado. 187.149.42.159 9d5f47d3-19ae-43a2-9413-87ab28356dd1 2019-10-19 19:05:29.626291 18599 814 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000814'\n 2 \N 187.149.42.159 9d5f47d3-19ae-43a2-9413-87ab28356dd1 2019-10-19 19:05:29.681095 18600 1170 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 814\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 9d5f47d3-19ae-43a2-9413-87ab28356dd1 2019-10-19 19:05:29.73193 18601 815 Product \N \N 4 User \N create ---\nsku: COL-815\nname: ARE-0006\ndescription: ARETE PLATEADO Y DORADO DE ESTRELLA\nprice_base: !ruby/object:BigDecimal 18:0.92E2\nprice_sale: !ruby/object:BigDecimal 18:0.229E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-815 fue creado. 187.149.42.159 c433e6f8-4dda-4096-bdf1-65ce4290c628 2019-10-19 19:07:58.621012 18602 815 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000815'\n 2 \N 187.149.42.159 c433e6f8-4dda-4096-bdf1-65ce4290c628 2019-10-19 19:07:58.682719 18603 1171 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 815\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 c433e6f8-4dda-4096-bdf1-65ce4290c628 2019-10-19 19:07:58.77178 18693 1155 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.42.159 bda2ea54-f501-4ca8-95dc-bf1766a825b2 2019-10-19 22:26:09.17534 18739 1192 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 836\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 7cfea8fc-9e12-41e1-997c-a40094f815af 2019-10-20 00:10:28.290675 18604 816 Product \N \N 4 User \N create ---\nsku: COL-816\nname: ARE-0007\ndescription: ARETES DE DOS ESTRELLAS DORADO\nprice_base: !ruby/object:BigDecimal 18:0.5E2\nprice_sale: !ruby/object:BigDecimal 18:0.125E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3109.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-816 fue creado. 187.149.42.159 38a8748b-16b8-4237-bbaf-3e00115a9af9 2019-10-19 19:14:45.99285 18605 816 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000816'\n 2 \N 187.149.42.159 38a8748b-16b8-4237-bbaf-3e00115a9af9 2019-10-19 19:14:46.02163 18606 1172 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 816\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 38a8748b-16b8-4237-bbaf-3e00115a9af9 2019-10-19 19:14:46.047001 18607 817 Product \N \N 4 User \N create ---\nsku: COL-817\nname: ARE-0008\ndescription: 'ARETE GRIS CON PLATEADO '\nprice_base: !ruby/object:BigDecimal 18:0.12E2\nprice_sale: !ruby/object:BigDecimal 18:0.99E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3110.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-817 fue creado. 187.149.42.159 41273fe9-6801-403c-b409-7628aebbf4c3 2019-10-19 19:33:00.89943 18608 817 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000817'\n 2 \N 187.149.42.159 41273fe9-6801-403c-b409-7628aebbf4c3 2019-10-19 19:33:00.928865 18609 1173 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 817\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 41273fe9-6801-403c-b409-7628aebbf4c3 2019-10-19 19:33:00.960144 18610 818 Product \N \N 4 User \N create ---\nsku: COL-818\nname: ARE-0009\ndescription: ARETE PIEDRA NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.12E2\nprice_sale: !ruby/object:BigDecimal 18:0.99E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3111.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-818 fue creado. 187.149.42.159 b1b5bb63-2068-4132-9ef8-4810e2f3a127 2019-10-19 19:40:13.567343 18611 818 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000818'\n 2 \N 187.149.42.159 b1b5bb63-2068-4132-9ef8-4810e2f3a127 2019-10-19 19:40:13.593276 18612 1174 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 818\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 b1b5bb63-2068-4132-9ef8-4810e2f3a127 2019-10-19 19:40:13.617783 18613 819 Product \N \N 4 User \N create ---\nsku: COL-819\nname: ARE-0010\ndescription: 'ARETES DE BRILLOS PLATEADOS '\nprice_base: !ruby/object:BigDecimal 18:0.12E2\nprice_sale: !ruby/object:BigDecimal 18:0.99E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3112.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-819 fue creado. 187.149.42.159 e62d7ca7-b99c-40dd-872f-cc199608f9a8 2019-10-19 19:47:05.356919 18614 819 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000819'\n 2 \N 187.149.42.159 e62d7ca7-b99c-40dd-872f-cc199608f9a8 2019-10-19 19:47:05.385782 18615 1175 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 819\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 e62d7ca7-b99c-40dd-872f-cc199608f9a8 2019-10-19 19:47:05.411959 18616 820 Product \N \N 4 User \N create ---\nsku: COL-820\nname: ARE-0011\ndescription: ARETES DE CORAZON DORADO\nprice_base: !ruby/object:BigDecimal 18:0.42E2\nprice_sale: !ruby/object:BigDecimal 18:0.129E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3113.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-820 fue creado. 187.149.42.159 7a2a9029-4e45-4475-87e2-30ff819e791d 2019-10-19 19:51:13.690598 18617 820 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000820'\n 2 \N 187.149.42.159 7a2a9029-4e45-4475-87e2-30ff819e791d 2019-10-19 19:51:13.717949 18618 1176 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 820\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 7a2a9029-4e45-4475-87e2-30ff819e791d 2019-10-19 19:51:13.741919 18619 821 Product \N \N 4 User \N create ---\nsku: COL-821\nname: ARE-0012\ndescription: ARETE DORADO CON PIEDRA AZUL\nprice_base: !ruby/object:BigDecimal 18:0.46E2\nprice_sale: !ruby/object:BigDecimal 18:0.199E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3114.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-821 fue creado. 187.149.42.159 6f195c73-a736-4247-a5b9-99a75af22faa 2019-10-19 19:56:35.607481 18620 821 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000821'\n 2 \N 187.149.42.159 6f195c73-a736-4247-a5b9-99a75af22faa 2019-10-19 19:56:35.644399 18621 1177 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 821\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 6f195c73-a736-4247-a5b9-99a75af22faa 2019-10-19 19:56:35.675351 18622 822 Product \N \N 4 User \N create ---\nsku: COL-822\nname: ARE-0013\ndescription: ARETE CUADRADO PIEDRA NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.41E2\nprice_sale: !ruby/object:BigDecimal 18:0.169E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3115.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-822 fue creado. 187.149.42.159 58d25fb3-9367-4ce3-b71e-3d236b63c288 2019-10-19 19:58:52.308096 18625 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-19 17:37:27.808314000 Z\n- &1 2019-10-19 17:58:09.201786000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-19 20:01:44.643867936 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\nsign_in_count:\n- 781\n- 782\n 1564 \N 189.186.52.209 9e6e6ee7-dd39-4117-8279-3a3e573640ce 2019-10-19 20:01:44.652469 18626 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VULjD4vmekDWtxGhAt_-\n- Fs1SVuCfefPj7FMwn8Dz\n 1565 \N 189.186.52.209 9e6e6ee7-dd39-4117-8279-3a3e573640ce 2019-10-19 20:01:44.668448 18627 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-19 17:58:09.201786000 Z\n- &1 2019-10-19 20:01:44.643867000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-19 20:37:43.222808353 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 782\n- 783\n 1566 \N 187.149.42.159 ae3cb73a-2283-4cc8-987e-fafc030d3a18 2019-10-19 20:37:43.229532 18628 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Fs1SVuCfefPj7FMwn8Dz\n- iVZemrXKDD6VLU148tDy\n 1567 \N 187.149.42.159 ae3cb73a-2283-4cc8-987e-fafc030d3a18 2019-10-19 20:37:43.243386 18629 168 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-14\namount: !ruby/object:BigDecimal 18:0.71645E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.71645E3\nobservations: ''\npurchase_date: 2019-10-19\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-14 por $ 716.45 MXN creada. 187.149.42.159 1d09c875-fb36-4ff6-92d3-35782f5764b4 2019-10-19 20:38:07.190665 18630 1167 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 1d09c875-fb36-4ff6-92d3-35782f5764b4 2019-10-19 20:38:07.211378 18631 1168 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 1d09c875-fb36-4ff6-92d3-35782f5764b4 2019-10-19 20:38:07.241902 18632 1169 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 1d09c875-fb36-4ff6-92d3-35782f5764b4 2019-10-19 20:38:07.26241 18633 1170 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 1d09c875-fb36-4ff6-92d3-35782f5764b4 2019-10-19 20:38:07.283495 18634 1171 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 1d09c875-fb36-4ff6-92d3-35782f5764b4 2019-10-19 20:38:07.303924 18635 1172 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 1d09c875-fb36-4ff6-92d3-35782f5764b4 2019-10-19 20:38:07.324621 18636 1173 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 1d09c875-fb36-4ff6-92d3-35782f5764b4 2019-10-19 20:38:07.343928 18637 1174 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 1d09c875-fb36-4ff6-92d3-35782f5764b4 2019-10-19 20:38:07.363834 18638 1175 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 1d09c875-fb36-4ff6-92d3-35782f5764b4 2019-10-19 20:38:07.38307 18639 1176 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 1d09c875-fb36-4ff6-92d3-35782f5764b4 2019-10-19 20:38:07.403612 18640 1177 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 1d09c875-fb36-4ff6-92d3-35782f5764b4 2019-10-19 20:38:07.426323 18641 1178 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 1d09c875-fb36-4ff6-92d3-35782f5764b4 2019-10-19 20:38:07.4453 18642 823 Product \N \N 4 User \N create ---\nsku: COL-823\nname: ARE-0015\ndescription: ARETE PLATEADO LARGO DE HOJA\nprice_base: !ruby/object:BigDecimal 18:0.112E3\nprice_sale: !ruby/object:BigDecimal 18:0.32E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3118.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-823 fue creado. 187.149.42.159 5cabab46-7b49-479a-b9dd-ed8225393301 2019-10-19 20:39:27.259922 18643 823 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000823'\n 2 \N 187.149.42.159 5cabab46-7b49-479a-b9dd-ed8225393301 2019-10-19 20:39:27.28545 18644 1179 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 823\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 5cabab46-7b49-479a-b9dd-ed8225393301 2019-10-19 20:39:27.310444 18645 824 Product \N \N 4 User \N create ---\nsku: COL-824\nname: ARE-0016\ndescription: ARETE COLOR GRIS OBSCURO\nprice_base: !ruby/object:BigDecimal 18:0.38E2\nprice_sale: !ruby/object:BigDecimal 18:0.17E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3121.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-824 fue creado. 187.149.42.159 5b8db80c-c19f-41e5-a0a9-d14058c0b1ca 2019-10-19 20:41:33.856083 18646 824 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000824'\n 2 \N 187.149.42.159 5b8db80c-c19f-41e5-a0a9-d14058c0b1ca 2019-10-19 20:41:33.89212 18647 1180 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 824\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 5b8db80c-c19f-41e5-a0a9-d14058c0b1ca 2019-10-19 20:41:33.916621 18648 26 User \N \N 26 User \N update ---\ncurrent_sign_in_at:\n- 2019-10-19 17:20:06.426747000 Z\n- 2019-10-19 20:45:07.824765023 Z\nsign_in_count:\n- 1\n- 2\n 4 \N 187.149.42.159 5c9a6e4a-39a2-4d13-9fb6-d4f4cfb64dac 2019-10-19 20:45:07.829932 18649 26 User \N \N 26 User \N update ---\nunique_session_id:\n- 8yR4yWwfeF-g5xHnRkSH\n- XyyfEghRqQ81JV2FvEnD\n 5 \N 187.149.42.159 5c9a6e4a-39a2-4d13-9fb6-d4f4cfb64dac 2019-10-19 20:45:07.840621 18763 1268 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.159 ba7e464e-515d-4bb5-9d72-b4e62b9b023d 2019-10-20 00:54:15.903238 18650 825 Product \N \N 4 User \N create ---\nsku: COL-825\nname: ARE-0014\ndescription: ARETE DE PIEDRA ROSA\nprice_base: !ruby/object:BigDecimal 18:0.5E2\nprice_sale: !ruby/object:BigDecimal 18:0.23E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3117__1_.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-825 fue creado. 187.149.42.159 a2f8edd5-b2ca-494b-ac7c-d760e5a8be58 2019-10-19 20:48:05.636398 18651 825 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000825'\n 2 \N 187.149.42.159 a2f8edd5-b2ca-494b-ac7c-d760e5a8be58 2019-10-19 20:48:05.664762 18652 1181 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 825\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 a2f8edd5-b2ca-494b-ac7c-d760e5a8be58 2019-10-19 20:48:05.690273 18653 826 Product \N \N 4 User \N create ---\nsku: COL-826\nname: ARE-0016\ndescription: ARETE DE PIEDRAS DE COLORES\nprice_base: !ruby/object:BigDecimal 18:0.61E2\nprice_sale: !ruby/object:BigDecimal 18:0.21E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3119__1_.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-826 fue creado. 187.149.42.159 86553065-d9a9-4c8a-84da-841939481c44 2019-10-19 20:49:59.563268 18654 826 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000826'\n 2 \N 187.149.42.159 86553065-d9a9-4c8a-84da-841939481c44 2019-10-19 20:49:59.592345 18655 1182 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 826\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 86553065-d9a9-4c8a-84da-841939481c44 2019-10-19 20:49:59.618277 18656 827 Product \N \N 4 User \N create ---\nsku: COL-827\nname: ARE-0018\ndescription: ARETE PIEDRA BLANCA\nprice_base: !ruby/object:BigDecimal 18:0.38E2\nprice_sale: !ruby/object:BigDecimal 18:0.17E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3122.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-827 fue creado. 187.149.42.159 fa03c784-770f-4253-96d3-ac8349102e38 2019-10-19 20:57:42.11852 18657 827 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000827'\n 2 \N 187.149.42.159 fa03c784-770f-4253-96d3-ac8349102e38 2019-10-19 20:57:42.145336 18658 1183 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 827\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 fa03c784-770f-4253-96d3-ac8349102e38 2019-10-19 20:57:42.170301 18659 516 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.1145E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1145.0 187.149.42.159 ae60b60d-c81a-4955-855b-58f97a3e35c4 2019-10-19 21:00:26.892768 18660 1262 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 516\namount: !ruby/object:BigDecimal 18:0.2328E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2328E4\nstatus: 0\ndate_sale: 2019-10-19\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-508\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 ccb7e552-d5e8-4a07-a93a-624433a6ec45 2019-10-19 21:02:15.308967 18661 1085 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.42.159 ccb7e552-d5e8-4a07-a93a-624433a6ec45 2019-10-19 21:02:15.333044 18662 995 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.42.159 ccb7e552-d5e8-4a07-a93a-624433a6ec45 2019-10-19 21:02:15.354502 18663 1262 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 a23f855f-4be4-4c06-8668-f3ceb4cc2518 2019-10-19 21:05:04.606478 18664 1752 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 516\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2328E4\nmove_type: '1'\nsale_id: 1262\ncardnumber: 68\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-508\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-508 187.149.42.159 a23f855f-4be4-4c06-8668-f3ceb4cc2518 2019-10-19 21:05:04.626 18665 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-19 20:01:44.643867000 Z\n- &1 2019-10-19 20:37:43.222808000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-19 21:13:49.850235277 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934271\n mask_addr: 4294967295\nsign_in_count:\n- 783\n- 784\n 1568 \N 200.68.135.63 df39f0fa-73eb-4112-b658-f3bf0a2b32ee 2019-10-19 21:13:49.857228 18666 4 User \N \N 4 User \N update ---\nunique_session_id:\n- iVZemrXKDD6VLU148tDy\n- DjLzqnswotfGTekBg_qg\n 1569 \N 200.68.135.63 df39f0fa-73eb-4112-b658-f3bf0a2b32ee 2019-10-19 21:13:49.871225 18667 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-19 20:37:43.222808000 Z\n- &1 2019-10-19 21:13:49.850235000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-19 21:44:36.720685738 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934271\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934271\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 784\n- 785\n 1570 \N 187.149.42.159 69cb565b-5f97-43a8-b9a1-b22fd1d2ad75 2019-10-19 21:44:36.728219 18668 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DjLzqnswotfGTekBg_qg\n- WZMjyrsQYTisLfibZRzu\n 1571 \N 187.149.42.159 69cb565b-5f97-43a8-b9a1-b22fd1d2ad75 2019-10-19 21:44:36.747921 18694 1754 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 514\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.798E3\nmove_type: '1'\nsale_id: 1013\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.798E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 14\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV1-D-8 187.149.42.159 00464985-df36-4045-bb6d-738671651718 2019-10-19 22:26:14.843139 18669 828 Product \N \N 4 User \N create ---\nsku: COL-828\nname: ARE-0019\ndescription: ARETE REDONDO DE ZIRCONIA\nprice_base: !ruby/object:BigDecimal 18:0.49E2\nprice_sale: !ruby/object:BigDecimal 18:0.18E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3123.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-828 fue creado. 187.149.42.159 11d9194a-2afd-48e9-8f98-5cef75425d52 2019-10-19 21:46:43.965692 18670 828 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000828'\n 2 \N 187.149.42.159 11d9194a-2afd-48e9-8f98-5cef75425d52 2019-10-19 21:46:43.991608 18671 1184 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 828\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 11d9194a-2afd-48e9-8f98-5cef75425d52 2019-10-19 21:46:44.015614 18672 829 Product \N \N 4 User \N create ---\nsku: COL-829\nname: ARE-0020\ndescription: ARETE DE PLATEADO CUADRADO\nprice_base: !ruby/object:BigDecimal 18:0.41E2\nprice_sale: !ruby/object:BigDecimal 18:0.18E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3124.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-829 fue creado. 187.149.42.159 fcf34b4e-9d6a-4272-85ef-baa010e525d4 2019-10-19 21:49:15.663768 18673 829 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000829'\n 2 \N 187.149.42.159 fcf34b4e-9d6a-4272-85ef-baa010e525d4 2019-10-19 21:49:15.690561 18674 1185 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 829\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 fcf34b4e-9d6a-4272-85ef-baa010e525d4 2019-10-19 21:49:15.715473 18675 830 Product \N \N 4 User \N create ---\nsku: COL-830\nname: ARE-0021\ndescription: ARETE DE CORAZON PLATEADO Y DORADO\nprice_base: !ruby/object:BigDecimal 18:0.41E2\nprice_sale: !ruby/object:BigDecimal 18:0.18E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3125.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-830 fue creado. 187.149.42.159 eefa887f-9495-4c4f-a777-10f937a00082 2019-10-19 21:56:42.551505 18676 830 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000830'\n 2 \N 187.149.42.159 eefa887f-9495-4c4f-a777-10f937a00082 2019-10-19 21:56:42.577526 18677 1186 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 830\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 eefa887f-9495-4c4f-a777-10f937a00082 2019-10-19 21:56:42.602428 18678 1263 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 516\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-10-19\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-509\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 d60b50b7-be2c-43e3-ae71-a0e3628603b0 2019-10-19 22:06:17.218298 18679 1084 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.42.159 d60b50b7-be2c-43e3-ae71-a0e3628603b0 2019-10-19 22:06:17.250642 18680 1263 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-509 cancelada. 187.149.42.159 f6980a9c-e7e1-491a-ad4a-92077f07214c 2019-10-19 22:08:20.441885 18681 1084 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.42.159 f6980a9c-e7e1-491a-ad4a-92077f07214c 2019-10-19 22:08:20.46645 18682 1264 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 516\namount: !ruby/object:BigDecimal 18:0.4597E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4597E4\nstatus: 0\ndate_sale: 2019-10-19\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-510\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 b063cb9c-db2d-4635-85a0-741cf01c6b4a 2019-10-19 22:09:47.699719 18683 1084 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.42.159 b063cb9c-db2d-4635-85a0-741cf01c6b4a 2019-10-19 22:09:47.727193 18684 797 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.42.159 b063cb9c-db2d-4635-85a0-741cf01c6b4a 2019-10-19 22:09:47.750589 18685 1082 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.42.159 b063cb9c-db2d-4635-85a0-741cf01c6b4a 2019-10-19 22:09:47.773114 18686 1264 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 a06d23ce-f126-433e-b6fc-f7ae40009960 2019-10-19 22:10:02.947546 18687 1753 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 516\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.4597E4\nmove_type: '1'\nsale_id: 1264\ncardnumber: 68\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-510\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-510 187.149.42.159 a06d23ce-f126-433e-b6fc-f7ae40009960 2019-10-19 22:10:02.96877 18688 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-19 21:13:49.850235000 Z\n- &1 2019-10-19 21:44:36.720685000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-19 22:18:15.568047548 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934271\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934271\n mask_addr: 4294967295\nsign_in_count:\n- 785\n- 786\n 1572 \N 200.68.135.63 5bc736a4-41f2-48df-96d5-f1636e5eaf92 2019-10-19 22:18:15.575521 18689 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WZMjyrsQYTisLfibZRzu\n- V2EbxscF3FEJpjR4ZfSs\n 1573 \N 200.68.135.63 5bc736a4-41f2-48df-96d5-f1636e5eaf92 2019-10-19 22:18:15.591412 18690 14 ProductsReturn \N \N 2 User \N create ---\nsale_id: 1013\nuser_id: 2\nreturn_code: PV1-D-8\npointsale_id: 1\nnew_amount: !ruby/object:BigDecimal 18:0.2068E4\nreturned_amount: !ruby/object:BigDecimal 18:0.127E4\ndifference_amount: !ruby/object:BigDecimal 18:0.798E3\nis_money_returned: false\n 1 devolución PV1-D-8 creada. 187.149.42.159 bda2ea54-f501-4ca8-95dc-bf1766a825b2 2019-10-19 22:26:09.105008 18695 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-19 21:44:36.720685000 Z\n- &1 2019-10-19 22:18:15.568047000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-19 22:51:58.865027796 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934271\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934271\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 786\n- 787\n 1574 \N 187.149.42.159 1d83311e-8da6-4446-b7dd-93456b6d3e84 2019-10-19 22:51:58.874433 18696 4 User \N \N 4 User \N update ---\nunique_session_id:\n- V2EbxscF3FEJpjR4ZfSs\n- DezxA7SMFUziux1ZguTx\n 1575 \N 187.149.42.159 1d83311e-8da6-4446-b7dd-93456b6d3e84 2019-10-19 22:51:58.890187 18697 831 Product \N \N 4 User \N create ---\nsku: COL-831\nname: ARE-0022\ndescription: ATERETES DE CORAZON Y PIEDRA\nprice_base: !ruby/object:BigDecimal 18:0.74E2\nprice_sale: !ruby/object:BigDecimal 18:0.32E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3126.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-831 fue creado. 187.149.42.159 8831a46c-fbde-46d4-9709-1b09052561df 2019-10-19 22:53:14.096245 18698 831 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000831'\n 2 \N 187.149.42.159 8831a46c-fbde-46d4-9709-1b09052561df 2019-10-19 22:53:14.123918 18699 1187 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 831\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 8831a46c-fbde-46d4-9709-1b09052561df 2019-10-19 22:53:14.147909 18700 832 Product \N \N 4 User \N create ---\nsku: COL-832\nname: ARE-0023\ndescription: ATERES DE CORAZON Y PIEDRA ROSA\nprice_base: !ruby/object:BigDecimal 18:0.157E3\nprice_sale: !ruby/object:BigDecimal 18:0.36E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3127__1_.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-832 fue creado. 187.149.42.159 f4e1968b-a002-41db-8b98-daab185791a0 2019-10-19 22:55:26.577249 18701 832 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000832'\n 2 \N 187.149.42.159 f4e1968b-a002-41db-8b98-daab185791a0 2019-10-19 22:55:26.601942 18702 1188 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 832\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 f4e1968b-a002-41db-8b98-daab185791a0 2019-10-19 22:55:26.625116 18703 169 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-15\namount: !ruby/object:BigDecimal 18:0.661E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.661E3\nobservations: ''\npurchase_date: 2019-10-19\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-15 por $ 661.0 MXN creada. 187.149.42.159 8f956b9f-d042-41c3-8985-3587c569361e 2019-10-19 22:56:00.580388 18704 1179 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 8f956b9f-d042-41c3-8985-3587c569361e 2019-10-19 22:56:00.60244 18705 1180 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 8f956b9f-d042-41c3-8985-3587c569361e 2019-10-19 22:56:00.62631 18706 1181 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 8f956b9f-d042-41c3-8985-3587c569361e 2019-10-19 22:56:00.646411 18707 1182 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 8f956b9f-d042-41c3-8985-3587c569361e 2019-10-19 22:56:00.665923 18708 1183 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 8f956b9f-d042-41c3-8985-3587c569361e 2019-10-19 22:56:00.686697 18709 1184 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 8f956b9f-d042-41c3-8985-3587c569361e 2019-10-19 22:56:00.707909 18710 1185 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 8f956b9f-d042-41c3-8985-3587c569361e 2019-10-19 22:56:00.7327 18711 1186 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 8f956b9f-d042-41c3-8985-3587c569361e 2019-10-19 22:56:00.758373 18712 1187 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 8f956b9f-d042-41c3-8985-3587c569361e 2019-10-19 22:56:00.78339 18713 1188 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 8f956b9f-d042-41c3-8985-3587c569361e 2019-10-19 22:56:00.808111 18714 202 Customer \N \N 23 User \N create ---\nnick_name: ORIANDI ZAZUETA\nphone: "(667) 322-0013"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ORIANDI ZAZUETA fue registrado. 189.186.98.52 ef7dcf8d-4412-4748-b808-8c072545e56c 2019-10-19 23:15:50.12462 18715 1265 Sale \N \N 23 User \N create ---\ncustomer_id: 202\nuser_id: 23\nopen_cash_register_id: 515\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2019-10-19\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-78\nexpiration_date: 2019-11-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.98.52 059b96a7-50a9-4848-a23d-1c0a6c4810a0 2019-10-19 23:16:12.214671 18716 1035 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.98.52 059b96a7-50a9-4848-a23d-1c0a6c4810a0 2019-10-19 23:16:12.238237 18717 1755 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 515\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1265\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-78\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-78 189.186.98.52 3e349272-199d-46f1-982a-ef1dbad4f03e 2019-10-19 23:16:22.795215 18718 1265 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.98.52 b83b80d6-0004-4c1b-af86-3fc4b54ef467 2019-10-19 23:16:25.343432 18719 1266 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 515\namount: !ruby/object:BigDecimal 18:0.155086E4\ntax: !ruby/object:BigDecimal 18:0.24814E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2019-10-19\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-79\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.98.52 ea3e5454-a10b-4cd8-aa7d-9120dad40249 2019-10-19 23:27:06.873945 18720 902 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.98.52 ea3e5454-a10b-4cd8-aa7d-9120dad40249 2019-10-19 23:27:06.898699 18721 1266 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.98.52 3e59f292-32c4-4b98-9ac5-e112579c7027 2019-10-19 23:27:11.121867 18722 1756 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 515\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 1266\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-79\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-79 189.186.98.52 3e59f292-32c4-4b98-9ac5-e112579c7027 2019-10-19 23:27:11.141385 18723 203 Customer \N \N 23 User \N create ---\nnick_name: ISABEL ABITIA\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ISABEL ABITIA fue registrado. 189.186.98.52 d1e81894-4ae0-42ea-9f83-12d6f5a0ef28 2019-10-19 23:44:44.945987 18724 1267 Sale \N \N 23 User \N create ---\ncustomer_id: 203\nuser_id: 23\nopen_cash_register_id: 515\namount: !ruby/object:BigDecimal 18:0.137845E4\ntax: !ruby/object:BigDecimal 18:0.22055E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-10-19\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-80\nexpiration_date: 2019-11-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.98.52 e09c32ec-b3fe-4988-90f8-0ad0291e0dec 2019-10-19 23:46:38.871002 18725 849 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.98.52 e09c32ec-b3fe-4988-90f8-0ad0291e0dec 2019-10-19 23:46:38.897216 18726 1757 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 515\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1267\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-80\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-80 189.186.98.52 93de02e8-ac41-401d-b185-aa8cb0ddb018 2019-10-19 23:47:54.618918 18727 1267 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.98.52 6290cfde-2573-45d8-a2d9-14bb95b01e7e 2019-10-19 23:47:56.717839 18728 833 Product \N \N 4 User \N create ---\nsku: COL-833\nname: CO-0002\ndescription: COLLAR DE CORAZON NEGRO Y PLATEADO\nprice_base: !ruby/object:BigDecimal 18:0.33E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-833 fue creado. 187.149.42.159 a1828e4c-a51d-47d9-b012-3a1e298db0f0 2019-10-20 00:01:32.941284 18729 833 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000833'\n 2 \N 187.149.42.159 a1828e4c-a51d-47d9-b012-3a1e298db0f0 2019-10-20 00:01:32.965393 18730 1189 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 833\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 a1828e4c-a51d-47d9-b012-3a1e298db0f0 2019-10-20 00:01:32.994867 18731 834 Product \N \N 4 User \N create ---\nsku: COL-834\nname: CO-0003\ndescription: COLLAR CORAZON NEGRO DORADO\nprice_base: !ruby/object:BigDecimal 18:0.56E2\nprice_sale: !ruby/object:BigDecimal 18:0.169E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3143.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-834 fue creado. 187.149.42.159 3dfd5e74-265b-4051-9a0b-3c722c85b443 2019-10-20 00:02:44.647447 18732 834 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000834'\n 2 \N 187.149.42.159 3dfd5e74-265b-4051-9a0b-3c722c85b443 2019-10-20 00:02:44.674332 18733 1190 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 834\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 3dfd5e74-265b-4051-9a0b-3c722c85b443 2019-10-20 00:02:44.698222 18734 835 Product \N \N 4 User \N create ---\nsku: COL-835\nname: CO-0004\ndescription: COLLAR COLOR ORO ROSADO DIJE CE CORAZON\nprice_base: !ruby/object:BigDecimal 18:0.86E2\nprice_sale: !ruby/object:BigDecimal 18:0.229E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3134.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-835 fue creado. 187.149.42.159 d2dd9e9e-7f69-418e-8645-163320b5f331 2019-10-20 00:08:47.389878 18735 835 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000835'\n 2 \N 187.149.42.159 d2dd9e9e-7f69-418e-8645-163320b5f331 2019-10-20 00:08:47.42274 18736 1191 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 835\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 d2dd9e9e-7f69-418e-8645-163320b5f331 2019-10-20 00:08:47.458451 18737 836 Product \N \N 4 User \N create ---\nsku: COL-836\nname: CO-0005\ndescription: COLLAR ORO ROSADO CON DIJE DE CORAZON\nprice_base: !ruby/object:BigDecimal 18:0.99E2\nprice_sale: !ruby/object:BigDecimal 18:0.249E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3136.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-836 fue creado. 187.149.42.159 7cfea8fc-9e12-41e1-997c-a40094f815af 2019-10-20 00:10:28.240448 18738 836 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000836'\n 2 \N 187.149.42.159 7cfea8fc-9e12-41e1-997c-a40094f815af 2019-10-20 00:10:28.2672 18740 837 Product \N \N 4 User \N create ---\nsku: COL-837\nname: CO-0006\ndescription: COLLAR ORO ROSADO DIJE DE DOS CORAZONES\nprice_base: !ruby/object:BigDecimal 18:0.86E2\nprice_sale: !ruby/object:BigDecimal 18:0.239E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3138.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-837 fue creado. 187.149.42.159 65bf1345-60f6-48fe-9ca3-6c7f34096036 2019-10-20 00:14:05.992699 18741 837 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000837'\n 2 \N 187.149.42.159 65bf1345-60f6-48fe-9ca3-6c7f34096036 2019-10-20 00:14:06.025221 18742 1193 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 837\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 65bf1345-60f6-48fe-9ca3-6c7f34096036 2019-10-20 00:14:06.05108 18743 838 Product \N \N 4 User \N create ---\nsku: COL-838\nname: CO-0007\ndescription: COLLAR COLOR PLATA DIJE DE TREBOL\nprice_base: !ruby/object:BigDecimal 18:0.86E2\nprice_sale: !ruby/object:BigDecimal 18:0.239E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3139.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-838 fue creado. 187.149.42.159 2befd2f3-38f4-4777-b278-1a8c0350e3a9 2019-10-20 00:16:17.342852 18744 838 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000838'\n 2 \N 187.149.42.159 2befd2f3-38f4-4777-b278-1a8c0350e3a9 2019-10-20 00:16:17.369576 18745 1194 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 838\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 2befd2f3-38f4-4777-b278-1a8c0350e3a9 2019-10-20 00:16:17.400748 18746 837 Product \N \N 4 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.86E2\n- !ruby/object:BigDecimal 27:0.67E2\n 3 El producto COL-837 fue modificado. 187.149.42.159 9baa22af-652c-472e-b5bd-97023dfeb14f 2019-10-20 00:16:25.349253 18747 837 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.239E3\n- !ruby/object:BigDecimal 27:0.199E3\n 4 \N 187.149.42.159 20253427-ea2e-4457-abd9-1379702e4b70 2019-10-20 00:16:31.805246 18748 839 Product \N \N 4 User \N create ---\nsku: COL-839\nname: CO-0008\ndescription: COLLAR PLATA CON DIJE DE CORONA\nprice_base: !ruby/object:BigDecimal 18:0.78E2\nprice_sale: !ruby/object:BigDecimal 18:0.199E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3141.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-839 fue creado. 187.149.42.159 6a544090-0824-4faa-bafc-586ec6bf622a 2019-10-20 00:22:04.751882 18749 839 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000839'\n 2 \N 187.149.42.159 6a544090-0824-4faa-bafc-586ec6bf622a 2019-10-20 00:22:04.777222 18750 1195 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 839\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 6a544090-0824-4faa-bafc-586ec6bf622a 2019-10-20 00:22:04.801115 18751 170 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-16\namount: !ruby/object:BigDecimal 18:0.505E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.505E3\nobservations: ''\npurchase_date: 2019-10-19\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-16 por $ 505.0 MXN creada. 187.149.42.159 a3be191b-dfcf-4277-9341-91a1210661b0 2019-10-20 00:22:09.499808 18752 1189 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 a3be191b-dfcf-4277-9341-91a1210661b0 2019-10-20 00:22:09.521022 18753 1190 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 a3be191b-dfcf-4277-9341-91a1210661b0 2019-10-20 00:22:09.541199 18754 1191 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 a3be191b-dfcf-4277-9341-91a1210661b0 2019-10-20 00:22:09.561289 18755 1192 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 a3be191b-dfcf-4277-9341-91a1210661b0 2019-10-20 00:22:09.581754 18756 1194 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 a3be191b-dfcf-4277-9341-91a1210661b0 2019-10-20 00:22:09.602242 18757 1193 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 a3be191b-dfcf-4277-9341-91a1210661b0 2019-10-20 00:22:09.622058 18758 1195 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 a3be191b-dfcf-4277-9341-91a1210661b0 2019-10-20 00:22:09.641889 18759 204 Customer \N \N 2 User \N create ---\nnick_name: 'LOURDES DUARTE '\nphone: "(667) 404-5869"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LOURDES DUARTE fue registrado. 187.149.42.159 e48ed7ea-dec0-4081-901e-fff56303cf2d 2019-10-20 00:53:27.454106 18760 1268 Sale \N \N 2 User \N create ---\ncustomer_id: 204\nuser_id: 2\nopen_cash_register_id: 514\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-10-19\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-676\nexpiration_date: 2019-11-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 481e2317-637c-4fec-a25d-97e3bf757b90 2019-10-20 00:53:54.748643 18761 703 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.42.159 481e2317-637c-4fec-a25d-97e3bf757b90 2019-10-20 00:53:54.788445 18762 1758 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 514\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1268\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-676\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-676 187.149.42.159 c18e5921-b0ed-4b49-bd5a-1bf3a4b173c5 2019-10-20 00:54:12.442968 18764 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-19 22:18:15.568047000 Z\n- &1 2019-10-19 22:51:58.865027000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-20 00:54:24.040377860 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934271\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\nsign_in_count:\n- 787\n- 788\n 1576 \N 189.186.52.209 a5bbbb7a-0142-4e87-820a-a77b56aaa9a4 2019-10-20 00:54:24.068101 18765 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DezxA7SMFUziux1ZguTx\n- xRh_7uW5jxwPvBQrBM3Z\n 1577 \N 189.186.52.209 a5bbbb7a-0142-4e87-820a-a77b56aaa9a4 2019-10-20 00:54:24.085636 18766 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-10-19 17:20:06.426747000 Z\n- &1 2019-10-19 20:45:07.824765000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-20 00:56:57.457457396 Z\nsign_in_count:\n- 2\n- 3\n 6 \N 187.149.42.159 764e2e93-c3d5-4127-9c6e-2ec0fe0b48bc 2019-10-20 00:56:57.463917 18767 26 User \N \N 26 User \N update ---\nunique_session_id:\n- XyyfEghRqQ81JV2FvEnD\n- XPvx-BBs7jsx_-8DAbzH\n 7 \N 187.149.42.159 764e2e93-c3d5-4127-9c6e-2ec0fe0b48bc 2019-10-20 00:56:57.475839 18768 205 Customer \N \N 26 User \N create ---\nnick_name: SORAYA\nphone: "(667) 424-2480"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente SORAYA fue registrado. 187.149.42.159 ace9a186-6c3d-4d37-9457-cb1b710c7526 2019-10-20 00:58:06.761728 18769 1269 Sale \N \N 26 User \N create ---\ncustomer_id: 205\nuser_id: 26\nopen_cash_register_id: 516\namount: !ruby/object:BigDecimal 18:0.299E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.299E3\nstatus: 0\ndate_sale: 2019-10-19\nsaletype: 2\nseller_id: 15\nsale_code: PV2-V-511\nexpiration_date: 2019-11-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 ba682e28-ef14-4af1-962e-18fbc25b3e7f 2019-10-20 00:58:22.666992 18770 805 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 3 \N 187.149.42.159 ba682e28-ef14-4af1-962e-18fbc25b3e7f 2019-10-20 00:58:22.693583 18771 1759 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 516\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E2\nmove_type: '1'\nsale_id: 1269\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-511\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E2\nchange: !ruby/object:BigDecimal 18:0.2E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-511 187.149.42.159 b958e13c-86a3-4989-a0d6-4f3aaeeac6d2 2019-10-20 00:58:29.557122 18772 1269 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.159 e543f998-afd7-4881-a977-5e6e7bae0e2b 2019-10-20 00:58:47.671204 18773 1760 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 516\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E2\nmove_type: '1'\nsale_id: 1269\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-511 187.149.42.159 f8b07400-dca9-4e5d-9a27-93576f8a398d 2019-10-20 00:59:37.900349 18774 1270 Sale \N \N 26 User \N create ---\ncustomer_id: 205\nuser_id: 26\nopen_cash_register_id: 516\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-10-19\nsaletype: 2\nseller_id: 15\nsale_code: PV2-V-512\nexpiration_date: 2019-11-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 34c7d20c-5b42-47c2-bb00-814929ed83c7 2019-10-20 01:18:53.066742 18775 1083 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.42.159 34c7d20c-5b42-47c2-bb00-814929ed83c7 2019-10-20 01:18:53.091402 18776 514 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 514\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5083E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.46E4\ncash_fund: !ruby/object:BigDecimal 18:0.1128E4\nphysical_cash: !ruby/object:BigDecimal 18:0.5728E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.159 5e7feec4-d20e-4cde-bb13-6fbc7b2b72f7 2019-10-20 01:19:49.626078 18777 514 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 5e7feec4-d20e-4cde-bb13-6fbc7b2b72f7 2019-10-20 01:19:49.638454 18778 1761 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 516\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.14E3\nmove_type: '1'\nsale_id: 1270\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-512\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.14E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-512 187.149.42.159 1007cbab-4216-4fcc-805f-971429f01dae 2019-10-20 01:21:58.984011 18779 1270 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.159 38d39c1a-a9bd-4be5-9b45-9894d688e325 2019-10-20 01:22:00.436043 18780 1762 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 516\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.59E2\nmove_type: '1'\nsale_id: 1270\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.59E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-512 187.149.42.159 d5ab6198-9ce8-41e0-87b3-92510797879a 2019-10-20 01:25:28.37016 18781 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-10-19 20:45:07.824765000 Z\n- &1 2019-10-20 00:56:57.457457000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-20 01:34:27.040135104 Z\nsign_in_count:\n- 3\n- 4\n 8 \N 187.149.42.159 36f8307d-cb05-468a-980b-a0c9d6cf6ea1 2019-10-20 01:34:27.051954 18782 26 User \N \N 26 User \N update ---\nunique_session_id:\n- XPvx-BBs7jsx_-8DAbzH\n- 7Wr4JYUETPvv9d6zp8Ns\n 9 \N 187.149.42.159 36f8307d-cb05-468a-980b-a0c9d6cf6ea1 2019-10-20 01:34:27.072113 18783 199 Expense \N \N 26 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 516\nquantity: !ruby/object:BigDecimal 18:0.1E3\nstatus: 1\nobservations: ''\nexpense_date: 2019-10-19\nexpense_code: PV2-E-44\n 1 Egreso por 100.0 registrado 187.149.42.159 4abf9749-685c-4641-9052-b76321367688 2019-10-20 01:39:46.100594 18784 14 Purchase \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 4abf9749-685c-4641-9052-b76321367688 2019-10-20 01:39:46.113806 18848 1773 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 434\n- 519\n 2 movimiento de efectivo por venta con folio PV3-V-36 187.149.42.159 797859f0-d897-47f9-acbe-1c88cf7154dd 2019-10-21 17:01:45.509082 32008 1033 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1033'\n is_parent: false\n sku: ACC-1033\n name: DIA-0042\n description: DIADEMA FLORES CON PERLAS\n price_base: '57.18'\n price_sale: '129.0'\n img_product: DIA42.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001033'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-01 00:16:05.603357'\n updated_at: &12 2020-03-16 21:05:36.313010591 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1033'\n sku: ACC-1033\n name: DIA-0042\n description: DIADEMA FLORES CON PERLAS\n price_base: '57.18'\n price_sale: '129.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-01 00:16:05.603357'\n updated_at: '2020-03-01 00:16:05.666989'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001033'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1033'\n type: *3\n value: 1033\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1033\n type: *7\n value: ACC-1033\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0042\n type: *8\n value: DIA-0042\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMA FLORES CON PERLAS\n type: *6\n value: DIADEMA FLORES CON PERLAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '57.18'\n type: *1\n value: !ruby/object:BigDecimal 18:0.5718E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '129.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.129E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DIA42.jpg\n type: *2\n value: DIA42.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001033'\n type: *2\n value: '0001033'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-01 00:16:05.603357'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- DIA42.jpg\n 3 El producto ACC-1033 fue modificado. 189.186.145.62 9fae2627-a5b9-4c49-a1c4-8c4fccfd7a11 2020-03-16 21:05:36.357826 18785 1763 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 516\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: 14\nexpense_id: 199\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.42.159 4abf9749-685c-4641-9052-b76321367688 2019-10-20 01:39:46.132415 18786 515 CashOut \N \N 26 User \N create ---\nopen_cash_register_id: 516\nuser_id: 26\namount_in: !ruby/object:BigDecimal 18:0.7174E4\namount_out: !ruby/object:BigDecimal 18:0.1E3\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1294E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1294E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.42.159 e4c28d24-73ab-4795-9435-b89495e5eda7 2019-10-20 01:42:00.635488 18787 516 OpenCashRegister \N \N 26 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 e4c28d24-73ab-4795-9435-b89495e5eda7 2019-10-20 01:42:00.649153 18788 516 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 515\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.3298E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.33E4\ncash_fund: !ruby/object:BigDecimal 18:0.679E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3979E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.98.52 6865e49d-3ebc-49fb-8daf-6c664c5369a4 2019-10-20 01:57:07.794243 18789 515 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.98.52 6865e49d-3ebc-49fb-8daf-6c664c5369a4 2019-10-20 01:57:07.806728 18790 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-19 22:51:58.865027000 Z\n- &1 2019-10-20 00:54:24.040377000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-20 02:06:02.037350223 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\nsign_in_count:\n- 788\n- 789\n 1578 \N 189.186.52.209 5aece0ab-455b-4a1d-bbf2-016d8709ea8e 2019-10-20 02:06:02.047747 18791 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xRh_7uW5jxwPvBQrBM3Z\n- SZCTzTDPK3pKrR-JY6LR\n 1579 \N 189.186.52.209 5aece0ab-455b-4a1d-bbf2-016d8709ea8e 2019-10-20 02:06:02.068051 18792 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-20 00:54:24.040377000 Z\n- &1 2019-10-20 02:06:02.037350000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-20 02:07:40.867693096 Z\nsign_in_count:\n- 789\n- 790\n 1580 \N 189.186.52.209 d6aa5919-3b49-41b3-92f2-c84d501b7d09 2019-10-20 02:07:40.874657 18793 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SZCTzTDPK3pKrR-JY6LR\n- nk1DdT3USurQ6SD7sqQF\n 1581 \N 189.186.52.209 d6aa5919-3b49-41b3-92f2-c84d501b7d09 2019-10-20 02:07:40.888435 18794 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-17 16:11:18.019446000 Z\n- &1 2019-10-19 16:10:16.556223000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-20 16:12:07.436329965 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183100092\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183108660\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183108660\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121639\n mask_addr: 4294967295\nsign_in_count:\n- 41\n- 42\n 84 \N 189.186.148.231 38157da0-5d76-48ce-a6e0-e05ed97bb668 2019-10-20 16:12:07.468327 18795 23 User \N \N 23 User \N update ---\nunique_session_id:\n- XcjndRryNtL9Y45ATdiF\n- BoMc1iYKC53mtVqbCxN7\n 85 \N 189.186.148.231 38157da0-5d76-48ce-a6e0-e05ed97bb668 2019-10-20 16:12:07.490965 18796 517 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.679E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 679.0 189.186.148.231 08ccb0f1-5e5a-47ed-a0c0-c8bcb9f2453f 2019-10-20 16:12:22.746116 18797 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-20 02:06:02.037350000 Z\n- &1 2019-10-20 02:07:40.867693000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-20 16:38:47.040958010 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 790\n- 791\n 1582 \N 187.149.42.159 6b7bf7b0-5cf2-4046-a255-88d6a175ae7f 2019-10-20 16:38:47.047664 18798 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nk1DdT3USurQ6SD7sqQF\n- "-oes-P94Rsxq9RcXp-nv"\n 1583 \N 187.149.42.159 6b7bf7b0-5cf2-4046-a255-88d6a175ae7f 2019-10-20 16:38:47.062902 18799 840 Product \N \N 4 User \N create ---\nsku: VES-840\nname: VST-0061\ndescription: LATISTE ST-CD2232 ENCAJE NEGRO\nprice_base: !ruby/object:BigDecimal 18:0.76E3\nprice_sale: !ruby/object:BigDecimal 18:0.1899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-840 fue creado. 187.149.42.159 0e93a898-77fa-41f1-9b32-aec07ede8844 2019-10-20 16:42:53.57496 18800 840 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000840'\n 2 \N 187.149.42.159 0e93a898-77fa-41f1-9b32-aec07ede8844 2019-10-20 16:42:53.604277 18801 1196 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 840\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 0e93a898-77fa-41f1-9b32-aec07ede8844 2019-10-20 16:42:53.639421 18802 171 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-86\namount: !ruby/object:BigDecimal 18:0.456E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.456E4\nobservations: ''\npurchase_date: 2019-10-20\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-86 por $ 4560.0 MXN creada. 187.149.42.159 5a0fc493-3d35-439d-9818-2be7ce5d52b2 2019-10-20 16:42:59.714989 18803 1196 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.42.159 5a0fc493-3d35-439d-9818-2be7ce5d52b2 2019-10-20 16:42:59.744088 18804 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-10-17 16:30:36.374670000 Z\n- &1 2019-10-17 17:41:34.083365000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-20 16:44:10.556715584 Z\nsign_in_count:\n- 20\n- 21\n 42 \N 187.149.42.159 4b292ef6-2816-4d6f-bb82-ca853e00fd17 2019-10-20 16:44:10.562044 18805 25 User \N \N 25 User \N update ---\nunique_session_id:\n- EmPiZ9vjzdKLe4QeUuQL\n- DLr9myJrJkCkf1kztjyN\n 43 \N 187.149.42.159 4b292ef6-2816-4d6f-bb82-ca853e00fd17 2019-10-20 16:44:10.572929 18806 518 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.1128E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1128.0 187.149.42.159 97b62147-cf92-4691-9851-ca7c46dab14f 2019-10-20 16:44:25.699624 18917 1207 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.42.159 9af9da4c-cd74-4ebd-b380-9457c5312fde 2019-10-21 18:21:13.149421 18807 1764 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 136\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 381\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.42.159 4bcc788b-46a1-4494-958b-85cd3771a3d9 2019-10-20 16:44:53.74564 18808 1764 CashRegistersMove \N \N 25 User \N update ---\nopen_cash_register_id:\n- 136\n- 518\n 2 movimiento de efectivo por venta con folio PV1-V-200 187.149.42.159 4bcc788b-46a1-4494-958b-85cd3771a3d9 2019-10-20 16:44:53.767794 18809 1271 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 518\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2019-10-20\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-677\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 a9c70384-a6c8-49b1-8d5b-ab763ee5d547 2019-10-20 16:53:39.733677 18810 1196 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.42.159 a9c70384-a6c8-49b1-8d5b-ab763ee5d547 2019-10-20 16:53:39.759755 18811 1271 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 a4e55396-0cad-4f45-aad7-78b1ef7c0acb 2019-10-20 16:54:21.7566 18812 1765 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 518\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1899E4\nmove_type: '1'\nsale_id: 1271\ncardnumber: 2980\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-677\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-677 187.149.42.159 a4e55396-0cad-4f45-aad7-78b1ef7c0acb 2019-10-20 16:54:21.777426 18813 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-20 02:07:40.867693000 Z\n- &1 2019-10-20 16:38:47.040958000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-20 17:01:55.911111830 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097041\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938455\n mask_addr: 4294967295\nsign_in_count:\n- 791\n- 792\n 1584 \N 200.68.151.151 f483a25a-52fd-401a-baed-20b4aef5a590 2019-10-20 17:01:55.918002 18814 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-oes-P94Rsxq9RcXp-nv"\n- Jx7yn-EszTFfBPcUznHo\n 1585 \N 200.68.151.151 f483a25a-52fd-401a-baed-20b4aef5a590 2019-10-20 17:01:55.933086 18815 1272 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 518\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-10-20\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-678\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 731b0ba0-3341-4651-9cb5-90a289e19501 2019-10-20 17:05:11.846442 18816 1044 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.42.159 731b0ba0-3341-4651-9cb5-90a289e19501 2019-10-20 17:05:11.872334 18817 1272 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 cf815751-1788-4a6c-9969-c34360e9530c 2019-10-20 17:05:38.277051 18818 1766 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 518\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 1272\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-678\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.13E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-678 187.149.42.159 cf815751-1788-4a6c-9969-c34360e9530c 2019-10-20 17:05:38.29598 18819 1767 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 518\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 877\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-500 187.149.42.159 37ab5b78-5003-491e-99af-a77dee4c7eea 2019-10-20 17:07:43.994321 18820 1768 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 518\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.379E3\nmove_type: '1'\nsale_id: 980\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.121E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-569 187.149.42.159 2296aab4-23e2-4de0-b968-33f771556a90 2019-10-20 20:41:40.09374 18821 980 Sale \N \N 25 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.42.159 0fca28d1-d6be-4e73-a3a6-3365928a3793 2019-10-20 20:41:47.780411 18822 517 CashOut \N \N 25 User \N create ---\nopen_cash_register_id: 518\nuser_id: 25\namount_in: !ruby/object:BigDecimal 18:0.4377E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.24E4\ncash_fund: !ruby/object:BigDecimal 18:0.1206E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3606E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.159 e2ad4220-b7a1-4753-9bad-6a641db1d3ca 2019-10-20 21:06:06.182852 18823 518 OpenCashRegister \N \N 25 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 e2ad4220-b7a1-4753-9bad-6a641db1d3ca 2019-10-20 21:06:06.195428 18824 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-19 16:10:16.556223000 Z\n- &1 2019-10-20 16:12:07.436329000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-21 16:08:14.404213847 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183108660\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121639\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121639\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183119602\n mask_addr: 4294967295\nsign_in_count:\n- 42\n- 43\n 86 \N 189.186.140.242 6c717467-9a95-4a35-be7e-cd8a13d7af40 2019-10-21 16:08:14.435363 18825 23 User \N \N 23 User \N update ---\nunique_session_id:\n- BoMc1iYKC53mtVqbCxN7\n- 1YbBrxP4KwhUSiBP81rc\n 87 \N 189.186.140.242 6c717467-9a95-4a35-be7e-cd8a13d7af40 2019-10-21 16:08:14.458124 18826 206 Customer \N \N 23 User \N create ---\nnick_name: MARIBEL CARRANZA\nphone: "(667) 424-2037"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIBEL CARRANZA fue registrado. 189.186.140.242 02934920-c2a0-4216-91c0-29340d6017b2 2019-10-21 16:11:20.669504 32009 1032 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1032'\n is_parent: false\n sku: ACC-1032\n name: DIA-0041\n description: DIADEMA 3 FLORES CON PIEDRAS\n price_base: '122.0'\n price_sale: '299.0'\n img_product: DIA.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001032'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-01 00:07:53.243211'\n updated_at: &12 2020-03-16 21:07:01.863380378 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1032'\n sku: ACC-1032\n name: DIA-0041\n description: DIADEMA 3 FLORES CON PIEDRAS\n price_base: '122.00'\n price_sale: '299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-01 00:07:53.243211'\n updated_at: '2020-03-01 00:07:53.281299'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001032'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1032'\n type: *3\n value: 1032\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1032\n type: *7\n value: ACC-1032\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0041\n type: *8\n value: DIA-0041\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMA 3 FLORES CON PIEDRAS\n type: *6\n value: DIADEMA 3 FLORES CON PIEDRAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '122.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.122E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.299E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DIA.jpg\n type: *2\n value: DIA.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001032'\n type: *2\n value: '0001032'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-01 00:07:53.243211'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- DIA.jpg\n 3 El producto ACC-1032 fue modificado. 189.186.145.62 7162f5f5-4a5f-4a26-8fc5-50feb0c876a9 2020-03-16 21:07:01.911717 18827 1273 Sale \N \N 23 User \N create ---\ncustomer_id: 206\nuser_id: 23\nopen_cash_register_id: 517\namount: !ruby/object:BigDecimal 18:0.396379E4\ntax: !ruby/object:BigDecimal 18:0.63421E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4598E4\nstatus: 0\ndate_sale: 2019-10-21\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-81\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.140.242 df4722a7-e3e3-4d78-819f-6a208fa975c6 2019-10-21 16:11:54.664947 18828 935 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.12E2\n 3 \N 189.186.140.242 df4722a7-e3e3-4d78-819f-6a208fa975c6 2019-10-21 16:11:54.693088 18829 1273 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.140.242 cf73dc02-3543-401d-b813-bf40c18b03dd 2019-10-21 16:12:06.937492 18830 1769 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 517\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E4\nmove_type: '1'\nsale_id: 1273\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-81\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-81 189.186.140.242 cf73dc02-3543-401d-b813-bf40c18b03dd 2019-10-21 16:12:06.960531 18831 1769 CashRegistersMove \N \N 23 User \N destroy ---\nopen_cash_register_id: 517\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E4\nmove_type: '1'\nsale_id: 1273\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-81\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.140.242 3aa14bee-8637-4972-9159-7ed19611a880 2019-10-21 16:12:14.050476 18832 1770 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 517\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E4\nmove_type: '1'\nsale_id: 1273\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-81\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-81 189.186.140.242 b61a9061-3099-49db-b58f-f8aaf46b5dbb 2019-10-21 16:12:21.944973 18833 1273 Sale \N \N 23 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-81 cancelada. 189.186.140.242 85a0285c-a1b1-463f-a0b2-9752e18eaaab 2019-10-21 16:12:36.109252 18834 1770 CashRegistersMove \N \N 23 User \N destroy ---\nopen_cash_register_id: 517\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E4\nmove_type: '1'\nsale_id: 1273\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-81\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.140.242 85a0285c-a1b1-463f-a0b2-9752e18eaaab 2019-10-21 16:12:36.1295 18835 935 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.14E2\n 4 \N 189.186.140.242 85a0285c-a1b1-463f-a0b2-9752e18eaaab 2019-10-21 16:12:36.151585 18836 1274 Sale \N \N 23 User \N create ---\ncustomer_id: 206\nuser_id: 23\nopen_cash_register_id: 517\namount: !ruby/object:BigDecimal 18:0.396379E4\ntax: !ruby/object:BigDecimal 18:0.63421E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4598E4\nstatus: 0\ndate_sale: 2019-10-21\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-82\nexpiration_date: 2019-11-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.140.242 82c6a7be-5152-4a0c-a439-c7017b5198b0 2019-10-21 16:12:59.075595 18837 935 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.12E2\n 5 \N 189.186.140.242 82c6a7be-5152-4a0c-a439-c7017b5198b0 2019-10-21 16:12:59.101722 18838 1771 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 517\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E4\nmove_type: '1'\nsale_id: 1274\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-82\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-82 189.186.140.242 a520c158-61c6-4456-9b38-bc60bdbac977 2019-10-21 16:13:07.492551 18839 1274 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.140.242 e70d0c6b-c0d2-4b0d-a2a5-f67ea1dcbe3b 2019-10-21 16:13:08.981669 18840 1275 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 517\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-10-21\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-83\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.140.242 8889cab0-15a7-4e32-8b51-9f1fb5ba22b2 2019-10-21 16:18:11.015108 18841 1153 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.140.242 8889cab0-15a7-4e32-8b51-9f1fb5ba22b2 2019-10-21 16:18:11.041869 18842 1275 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.140.242 119d494d-ec5b-4e88-8f77-d220867369ae 2019-10-21 16:18:18.841596 18843 1772 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 517\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 1275\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-83\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-83 189.186.140.242 119d494d-ec5b-4e88-8f77-d220867369ae 2019-10-21 16:18:18.86148 18844 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-17 17:12:43.454362000 Z\n- &1 2019-10-19 16:22:52.898196000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-21 16:35:25.634852459 Z\nsign_in_count:\n- 352\n- 353\n 709 \N 187.149.42.159 f89d04f8-e3dc-4e2c-afb2-a7db35793034 2019-10-21 16:35:25.660788 18845 2 User \N \N 2 User \N update ---\nunique_session_id:\n- VDGf6vQAabqx6Ayy8yoW\n- WtNZLr1kZiRg91_Xo9C7\n 710 \N 187.149.42.159 f89d04f8-e3dc-4e2c-afb2-a7db35793034 2019-10-21 16:35:25.680101 18846 519 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1206E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1206.0 187.149.42.159 c7581fdc-2524-40b7-aa75-5175ad2a2d8e 2019-10-21 16:39:04.039792 18847 1773 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 434\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1108\ncardnumber: 8730\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.42.159 797859f0-d897-47f9-acbe-1c88cf7154dd 2019-10-21 17:01:45.483848 18849 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-20 16:38:47.040958000 Z\n- &1 2019-10-20 17:01:55.911111000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-21 17:17:16.930960386 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938455\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938455\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 792\n- 793\n 1586 \N 187.149.42.159 7b0675bc-730e-4f73-80d0-8757d054541b 2019-10-21 17:17:16.937666 18850 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Jx7yn-EszTFfBPcUznHo\n- BvyqQQzsj7LJ_sb7axV7\n 1587 \N 187.149.42.159 7b0675bc-730e-4f73-80d0-8757d054541b 2019-10-21 17:17:16.953815 18851 841 Product \N \N 4 User \N create ---\nsku: COL-841\nname: DIA-0001\ndescription: DIADEMA NEGRA Y ROSA CON FLORES DE CRISTAL\nprice_base: !ruby/object:BigDecimal 18:0.68E2\nprice_sale: !ruby/object:BigDecimal 18:0.179E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3175__2_.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-841 fue creado. 187.149.42.159 dcfaeed3-7a72-4c77-a72c-4ad88773ad90 2019-10-21 17:19:52.345046 18852 841 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000841'\n 2 \N 187.149.42.159 dcfaeed3-7a72-4c77-a72c-4ad88773ad90 2019-10-21 17:19:52.375456 18853 1197 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 841\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 dcfaeed3-7a72-4c77-a72c-4ad88773ad90 2019-10-21 17:19:52.40874 18854 842 Product \N \N 4 User \N create ---\nsku: COL-842\nname: DIA-0002\ndescription: DIADEMA NEGRA PIEDRAS ROJA Y ROSA\nprice_base: !ruby/object:BigDecimal 18:0.48E2\nprice_sale: !ruby/object:BigDecimal 18:0.129E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3176.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-842 fue creado. 187.149.42.159 145e1842-beb7-48f0-8ecd-abd9c75b0aa7 2019-10-21 17:21:04.437873 18855 842 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000842'\n 2 \N 187.149.42.159 145e1842-beb7-48f0-8ecd-abd9c75b0aa7 2019-10-21 17:21:04.463552 18856 1198 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 842\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 145e1842-beb7-48f0-8ecd-abd9c75b0aa7 2019-10-21 17:21:04.486884 18857 843 Product \N \N 4 User \N create ---\nsku: COL-843\nname: DIA-0003\ndescription: DIADEMA DORADA Y PLATEADA CON PERLAS\nprice_base: !ruby/object:BigDecimal 18:0.32E2\nprice_sale: !ruby/object:BigDecimal 18:0.99E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3184.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-843 fue creado. 187.149.42.159 abd0aa14-a1f3-400c-8dcc-2f34a48accca 2019-10-21 17:22:12.726716 18858 843 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000843'\n 2 \N 187.149.42.159 abd0aa14-a1f3-400c-8dcc-2f34a48accca 2019-10-21 17:22:12.752321 18859 1199 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 843\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 abd0aa14-a1f3-400c-8dcc-2f34a48accca 2019-10-21 17:22:12.776039 18860 844 Product \N \N 4 User \N create ---\nsku: COL-844\nname: DIA-0004\ndescription: DIADEMA NEGRA CON PERLA Y PIEDRAS\nprice_base: !ruby/object:BigDecimal 18:0.161E3\nprice_sale: !ruby/object:BigDecimal 18:0.299E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3177.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-844 fue creado. 187.149.42.159 82c6a66e-c2bd-4f2d-a114-6df5b2ca3610 2019-10-21 17:23:24.506367 18861 844 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000844'\n 2 \N 187.149.42.159 82c6a66e-c2bd-4f2d-a114-6df5b2ca3610 2019-10-21 17:23:24.535581 18862 1200 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 844\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 82c6a66e-c2bd-4f2d-a114-6df5b2ca3610 2019-10-21 17:23:24.559512 18863 845 Product \N \N 4 User \N create ---\nsku: COL-845\nname: DIA-005\ndescription: DIADEMA NEGRA Y PLATEADA CON DORADO EN LA ORILLA\nprice_base: !ruby/object:BigDecimal 18:0.48E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3180.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-845 fue creado. 187.149.42.159 828895ed-96c3-4844-9687-d90374ff1e51 2019-10-21 17:25:20.584356 18864 845 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000845'\n 2 \N 187.149.42.159 828895ed-96c3-4844-9687-d90374ff1e51 2019-10-21 17:25:20.609983 18865 1201 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 845\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 828895ed-96c3-4844-9687-d90374ff1e51 2019-10-21 17:25:20.63421 18866 846 Product \N \N 4 User \N create ---\nsku: COL-846\nname: DIA-0006\ndescription: DIADEMA PLATA CON PERLAS Y PIEDRAS\nprice_base: !ruby/object:BigDecimal 18:0.26E2\nprice_sale: !ruby/object:BigDecimal 18:0.75E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3185.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-846 fue creado. 187.149.42.159 e25b803c-94cf-404f-9e54-16f38e88dea9 2019-10-21 17:28:31.384892 18867 846 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000846'\n 2 \N 187.149.42.159 e25b803c-94cf-404f-9e54-16f38e88dea9 2019-10-21 17:28:31.411689 18868 1202 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 846\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 e25b803c-94cf-404f-9e54-16f38e88dea9 2019-10-21 17:28:31.440293 18869 847 Product \N \N 4 User \N create ---\nsku: COL-847\nname: DIA-0007\ndescription: 'DIADEMA COLOR PLOMO '\nprice_base: !ruby/object:BigDecimal 18:0.28E2\nprice_sale: !ruby/object:BigDecimal 18:0.75E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3179.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-847 fue creado. 187.149.42.159 8c89f7d6-6cd0-4968-bdcc-c5bb292c0e4a 2019-10-21 17:29:26.10936 18870 847 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000847'\n 2 \N 187.149.42.159 8c89f7d6-6cd0-4968-bdcc-c5bb292c0e4a 2019-10-21 17:29:26.148283 18871 1203 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 847\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 8c89f7d6-6cd0-4968-bdcc-c5bb292c0e4a 2019-10-21 17:29:26.172439 18872 848 Product \N \N 4 User \N create ---\nsku: COL-848\nname: DIA-0008\ndescription: DIADEMA NEGRA CON PIERDA PLATEADAS\nprice_base: !ruby/object:BigDecimal 18:0.23E2\nprice_sale: !ruby/object:BigDecimal 18:0.75E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3181.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-848 fue creado. 187.149.42.159 1aaa94d5-22b1-4b18-b13c-61c1c4998382 2019-10-21 17:30:34.366603 18873 848 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000848'\n 2 \N 187.149.42.159 1aaa94d5-22b1-4b18-b13c-61c1c4998382 2019-10-21 17:30:34.394365 18874 1204 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 848\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 1aaa94d5-22b1-4b18-b13c-61c1c4998382 2019-10-21 17:30:34.423995 18875 849 Product \N \N 4 User \N create ---\nsku: COL-849\nname: DIA-0009\ndescription: DIADEMA DOBLE CON PERLAS PERLAS\nprice_base: !ruby/object:BigDecimal 18:0.37E2\nprice_sale: !ruby/object:BigDecimal 18:0.99E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3178.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-849 fue creado. 187.149.42.159 47a27298-dd99-4807-9ba1-b150d171c309 2019-10-21 17:31:34.825424 18876 849 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000849'\n 2 \N 187.149.42.159 47a27298-dd99-4807-9ba1-b150d171c309 2019-10-21 17:31:34.850624 18877 1205 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 849\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 47a27298-dd99-4807-9ba1-b150d171c309 2019-10-21 17:31:34.875375 18878 850 Product \N \N 4 User \N create ---\nsku: COL-850\nname: DIA-0010\ndescription: DIADEMA NEGRA CON PERLAS\nprice_base: !ruby/object:BigDecimal 18:0.71E2\nprice_sale: !ruby/object:BigDecimal 18:0.169E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3183.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-850 fue creado. 187.149.42.159 d0e48ded-9b18-4669-a2e6-1797910d307d 2019-10-21 17:32:16.606447 18879 850 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000850'\n 2 \N 187.149.42.159 d0e48ded-9b18-4669-a2e6-1797910d307d 2019-10-21 17:32:16.631796 18880 1206 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 850\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 d0e48ded-9b18-4669-a2e6-1797910d307d 2019-10-21 17:32:16.65509 18881 851 Product \N \N 4 User \N create ---\nsku: COL-851\nname: DIA-0011\ndescription: DIADEMA NEGRA Y AZUL CON PERLAS\nprice_base: !ruby/object:BigDecimal 18:0.38E2\nprice_sale: !ruby/object:BigDecimal 18:0.99E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3182.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-851 fue creado. 187.149.42.159 b0c321cd-6357-4f2d-b8cd-a5298318b062 2019-10-21 17:33:56.534234 18882 851 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000851'\n 2 \N 187.149.42.159 b0c321cd-6357-4f2d-b8cd-a5298318b062 2019-10-21 17:33:56.565133 18883 1207 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 851\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 b0c321cd-6357-4f2d-b8cd-a5298318b062 2019-10-21 17:33:56.596355 18884 849 Product \N \N 4 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.37E2\n- !ruby/object:BigDecimal 27:0.29E2\n 3 El producto COL-849 fue modificado. 187.149.42.159 1a1a6d32-a386-448f-bd69-f324f387c7a2 2019-10-21 17:34:17.689675 18885 849 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.99E2\n- !ruby/object:BigDecimal 27:0.75E2\n 4 \N 187.149.42.159 ec4a7568-a753-425f-9b21-4cd86117c1e3 2019-10-21 17:34:29.313595 18886 852 Product \N \N 4 User \N create ---\nsku: COL-852\nname: DIA-0012\ndescription: DIADEMA PLATEADA\nprice_base: !ruby/object:BigDecimal 18:0.23E2\nprice_sale: !ruby/object:BigDecimal 18:0.65E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3186.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-852 fue creado. 187.149.42.159 64030af2-27d8-4a2a-9e05-75cd6f76ebb5 2019-10-21 17:35:20.988493 18887 852 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000852'\n 2 \N 187.149.42.159 64030af2-27d8-4a2a-9e05-75cd6f76ebb5 2019-10-21 17:35:21.016395 18918 1201 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.42.159 fc816e34-5628-4a0a-bab6-9134c243bfbd 2019-10-21 18:21:16.228467 18888 1208 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 852\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 64030af2-27d8-4a2a-9e05-75cd6f76ebb5 2019-10-21 17:35:21.044465 18889 853 Product \N \N 4 User \N create ---\nsku: COL-853\nname: DIA-0013\ndescription: LIGAS DE TELA DE COLORES\nprice_base: !ruby/object:BigDecimal 18:0.13E2\nprice_sale: !ruby/object:BigDecimal 18:0.49E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto COL-853 fue creado. 187.149.42.159 bbb1049f-ff06-4244-9e23-9f9d305e0eea 2019-10-21 17:36:03.907006 18890 853 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000853'\n 2 \N 187.149.42.159 bbb1049f-ff06-4244-9e23-9f9d305e0eea 2019-10-21 17:36:03.929896 18891 1209 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 853\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 bbb1049f-ff06-4244-9e23-9f9d305e0eea 2019-10-21 17:36:03.951714 18892 172 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-87\namount: !ruby/object:BigDecimal 18:0.823E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.823E3\nobservations: ''\npurchase_date: 2019-10-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-87 por $ 823.0 MXN creada. 187.149.42.159 ee0118e2-9828-4bbf-95b0-cff81c700471 2019-10-21 17:36:27.000501 18893 1197 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.42.159 ee0118e2-9828-4bbf-95b0-cff81c700471 2019-10-21 17:36:27.020486 18894 1198 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 ee0118e2-9828-4bbf-95b0-cff81c700471 2019-10-21 17:36:27.050883 18895 1199 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.42.159 ee0118e2-9828-4bbf-95b0-cff81c700471 2019-10-21 17:36:27.072688 18896 1200 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 ee0118e2-9828-4bbf-95b0-cff81c700471 2019-10-21 17:36:27.092705 18897 1201 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.42.159 ee0118e2-9828-4bbf-95b0-cff81c700471 2019-10-21 17:36:27.112395 18898 1202 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 ee0118e2-9828-4bbf-95b0-cff81c700471 2019-10-21 17:36:27.1345 18899 1203 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 ee0118e2-9828-4bbf-95b0-cff81c700471 2019-10-21 17:36:27.155305 18900 1204 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 ee0118e2-9828-4bbf-95b0-cff81c700471 2019-10-21 17:36:27.175372 18901 1206 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 ee0118e2-9828-4bbf-95b0-cff81c700471 2019-10-21 17:36:27.195657 18902 1207 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.42.159 ee0118e2-9828-4bbf-95b0-cff81c700471 2019-10-21 17:36:27.215833 18903 1205 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.42.159 ee0118e2-9828-4bbf-95b0-cff81c700471 2019-10-21 17:36:27.236099 18904 1208 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 ee0118e2-9828-4bbf-95b0-cff81c700471 2019-10-21 17:36:27.257189 18905 1209 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.159 ee0118e2-9828-4bbf-95b0-cff81c700471 2019-10-21 17:36:27.277519 18906 17 Category \N \N 4 User \N update ---\ncategory:\n- COLLARES\n- ACCESORIOS\n 2 La línea de producto ACCESORIOS fue modificada. 187.149.42.159 e4ddfc39-240c-497e-8328-bc81cd3da0f9 2019-10-21 17:36:53.357439 18907 1276 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 519\namount: !ruby/object:BigDecimal 18:0.70434E3\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.71799E3\nstatus: 0\ndate_sale: 2019-10-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-679\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 fed9a32d-e286-4b95-b409-d21ef8a08490 2019-10-21 17:39:18.923332 18908 486 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 18 \N 187.149.42.159 fed9a32d-e286-4b95-b409-d21ef8a08490 2019-10-21 17:39:18.962752 18909 742 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.42.159 fed9a32d-e286-4b95-b409-d21ef8a08490 2019-10-21 17:39:18.986043 18910 1276 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 669a1163-0d18-465e-b246-5aa76e458824 2019-10-21 17:39:41.786754 18911 1774 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 519\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.71799E3\nmove_type: '1'\nsale_id: 1276\ncardnumber: 2809\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-679\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-679 187.149.42.159 669a1163-0d18-465e-b246-5aa76e458824 2019-10-21 17:39:41.806583 18912 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-10-17 17:41:34.083365000 Z\n- &1 2019-10-20 16:44:10.556715000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-21 17:42:17.308948078 Z\nsign_in_count:\n- 21\n- 22\n 44 \N 187.149.42.159 03000a03-ab32-4160-a1f7-f541b677525a 2019-10-21 17:42:17.314853 18913 25 User \N \N 25 User \N update ---\nunique_session_id:\n- DLr9myJrJkCkf1kztjyN\n- QekzB3W5N1BWmvdx2zxT\n 45 \N 187.149.42.159 03000a03-ab32-4160-a1f7-f541b677525a 2019-10-21 17:42:17.325777 18914 845 Product \N \N 4 User \N update ---\nname:\n- DIA-005\n- DIA-0005\n 3 El producto COL-845 fue modificado. 187.149.42.159 d92bd1d6-1e41-4851-9d98-797a693d3911 2019-10-21 18:04:38.848523 18915 1033 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.42.159 f26f2d8c-5248-4b01-9983-e7cf18b1d99c 2019-10-21 18:20:30.934071 18916 1205 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.42.159 f8d0b4f1-301c-46c7-9b3a-76ddba70b7ea 2019-10-21 18:21:09.680903 18921 1206 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.42.159 784979f7-5b0d-49fd-aad1-c40087fa7d07 2019-10-21 18:21:44.381641 18922 1199 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.42.159 6b86f972-7244-426d-8131-c0a301ef0733 2019-10-21 18:21:47.924905 18923 253 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-10-21\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.42.159 c8e4b12d-d5db-4a40-91f2-c5dce2a282e7 2019-10-21 18:21:54.63131 18924 238 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-21\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.42.159 843fb8b4-6de6-4e61-8177-be6c5fb69d81 2019-10-21 18:24:10.975146 18925 526 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 18 \N 187.149.42.159 843fb8b4-6de6-4e61-8177-be6c5fb69d81 2019-10-21 18:24:10.997146 18926 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-20 17:01:55.911111000 Z\n- &1 2019-10-21 17:17:16.930960000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-21 18:55:34.101459865 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938455\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111853\n mask_addr: 4294967295\nsign_in_count:\n- 793\n- 794\n 1588 \N 187.149.29.173 2135a317-0f92-4b20-ac89-9b15839e8b61 2019-10-21 18:55:34.10942 18927 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BvyqQQzsj7LJ_sb7axV7\n- Quni4nT91Rc-2_v4mKoD\n 1589 \N 187.149.29.173 2135a317-0f92-4b20-ac89-9b15839e8b61 2019-10-21 18:55:34.124377 18928 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-21 17:17:16.930960000 Z\n- &1 2019-10-21 18:55:34.101459000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-21 19:05:18.203441624 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111853\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111853\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 794\n- 795\n 1590 \N 187.149.42.159 c9c24e08-0741-4a4d-9607-920645ce384e 2019-10-21 19:05:18.21114 18929 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Quni4nT91Rc-2_v4mKoD\n- tP14Ax4opWfdkyWdSXDe\n 1591 \N 187.149.42.159 c9c24e08-0741-4a4d-9607-920645ce384e 2019-10-21 19:05:18.227101 18930 207 Customer \N \N 23 User \N create ---\nnick_name: ANGELICA PEREZ\nphone: "(647) 124-6607"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANGELICA PEREZ fue registrado. 189.186.140.242 7991c823-fda6-447c-8f04-8f8e7ddb06ce 2019-10-21 20:20:27.756564 18931 1277 Sale \N \N 23 User \N create ---\ncustomer_id: 207\nuser_id: 23\nopen_cash_register_id: 517\namount: !ruby/object:BigDecimal 18:0.1198E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1198E4\nstatus: 0\ndate_sale: 2019-10-21\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-84\nexpiration_date: 2019-11-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.140.242 dc005aa0-fc2a-45d8-83fa-1d2bff5d25a0 2019-10-21 20:21:29.433421 18932 1128 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.140.242 dc005aa0-fc2a-45d8-83fa-1d2bff5d25a0 2019-10-21 20:21:29.457317 18933 1775 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 517\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1277\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-84\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-84 189.186.140.242 a7b9572d-b453-4a68-9e97-568b0edced48 2019-10-21 20:21:41.128403 18934 1277 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.140.242 8f8ced27-5450-45a3-8a3f-78676fbf8fee 2019-10-21 20:21:42.595274 18935 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-10-20 00:56:57.457457000 Z\n- &1 2019-10-20 01:34:27.040135000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-21 20:41:50.432432138 Z\nsign_in_count:\n- 4\n- 5\n 10 \N 187.149.42.159 c75416bd-6ba7-4132-8748-331fb0c9c1fa 2019-10-21 20:41:50.438699 18936 26 User \N \N 26 User \N update ---\nunique_session_id:\n- 7Wr4JYUETPvv9d6zp8Ns\n- CBhqzwkXtd5xCy5h_LR6\n 11 \N 187.149.42.159 c75416bd-6ba7-4132-8748-331fb0c9c1fa 2019-10-21 20:41:50.462198 18937 520 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.1294E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1294.0 187.149.42.159 ec26e8e4-aad5-48df-a716-8611aaeb833e 2019-10-21 20:50:45.054152 18938 253 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-21\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.42.159 f48b0476-a1b0-4a92-b46e-400bcc932ee5 2019-10-21 20:54:54.793516 18939 1210 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 843\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 f48b0476-a1b0-4a92-b46e-400bcc932ee5 2019-10-21 20:54:54.814758 18940 1211 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 850\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 f48b0476-a1b0-4a92-b46e-400bcc932ee5 2019-10-21 20:54:54.8355 18941 1212 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 847\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 f48b0476-a1b0-4a92-b46e-400bcc932ee5 2019-10-21 20:54:54.856085 18942 1213 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 841\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 f48b0476-a1b0-4a92-b46e-400bcc932ee5 2019-10-21 20:54:54.881775 18943 1214 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 845\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 f48b0476-a1b0-4a92-b46e-400bcc932ee5 2019-10-21 20:54:54.908743 18968 701 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.42.159 c973ae91-17fa-4528-a83c-4c98292165a5 2019-10-21 23:16:32.256885 18944 1215 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 851\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 f48b0476-a1b0-4a92-b46e-400bcc932ee5 2019-10-21 20:54:54.931617 18945 1216 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 849\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 f48b0476-a1b0-4a92-b46e-400bcc932ee5 2019-10-21 20:54:54.953289 18946 1082 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.42.159 f48b0476-a1b0-4a92-b46e-400bcc932ee5 2019-10-21 20:54:54.971042 18947 251 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-21\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.42.159 dbc1497d-d483-4b7f-9235-a21b2ff9ae6b 2019-10-21 20:55:22.359519 18948 1217 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 687\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 dbc1497d-d483-4b7f-9235-a21b2ff9ae6b 2019-10-21 20:55:22.381513 18949 1218 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 661\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 dbc1497d-d483-4b7f-9235-a21b2ff9ae6b 2019-10-21 20:55:22.400983 18950 317 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.42.159 dbc1497d-d483-4b7f-9235-a21b2ff9ae6b 2019-10-21 20:55:22.416532 18951 281 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 187.149.42.159 12057649-8dd7-4ba1-bb9c-5328f310ba29 2019-10-21 21:06:08.343343 18952 281 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.42.159 4f35bd62-98b9-4126-82a6-ba11365e49f4 2019-10-21 21:06:14.289895 18953 254 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-10-21\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.42.159 610733fe-85da-46a9-a5cd-b869233b4c92 2019-10-21 21:06:15.36532 18954 1278 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 520\namount: !ruby/object:BigDecimal 18:0.299E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.299E3\nstatus: 0\ndate_sale: 2019-10-21\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-513\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 d411e502-bbaa-4280-aa5a-99ff9c4dacba 2019-10-21 21:34:19.280932 18955 805 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 4 \N 187.149.42.159 d411e502-bbaa-4280-aa5a-99ff9c4dacba 2019-10-21 21:34:19.308123 18956 1278 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 d8ad286e-bb41-421b-995e-7bed5f2b20ec 2019-10-21 21:34:26.627729 18957 1776 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 520\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 1278\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-513\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-513 187.149.42.159 d8ad286e-bb41-421b-995e-7bed5f2b20ec 2019-10-21 21:34:26.648176 18958 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-21 18:55:34.101459000 Z\n- &1 2019-10-21 19:05:18.203441000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-21 21:55:47.355444076 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111853\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 795\n- 796\n 1592 \N 187.149.42.159 fa5acb7e-2554-45a0-93c5-22ebb3ea8cac 2019-10-21 21:55:47.36484 18959 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tP14Ax4opWfdkyWdSXDe\n- DxELg8sta5BDHaQQzA3v\n 1593 \N 187.149.42.159 fa5acb7e-2554-45a0-93c5-22ebb3ea8cac 2019-10-21 21:55:47.381188 18960 1279 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 520\namount: !ruby/object:BigDecimal 18:0.928E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.232E3\ntotal: !ruby/object:BigDecimal 18:0.696E3\nstatus: 0\ndate_sale: 2019-10-21\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-514\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 d811eef2-3684-4247-bc34-7737d092e93a 2019-10-21 21:59:48.994425 18961 753 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.42.159 d811eef2-3684-4247-bc34-7737d092e93a 2019-10-21 21:59:49.032424 18962 722 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.42.159 d811eef2-3684-4247-bc34-7737d092e93a 2019-10-21 21:59:49.070149 18963 1279 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 de804f64-5ff4-430c-9aaf-1fd91dbd87c4 2019-10-21 22:00:35.507073 18964 1777 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 520\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.696E3\nmove_type: '1'\nsale_id: 1279\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-514\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: RG13\ncustomer_account: UNIVALE\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-514 187.149.42.159 de804f64-5ff4-430c-9aaf-1fd91dbd87c4 2019-10-21 22:00:35.538588 18965 24 User \N \N 24 User \N update ---\ncurrent_sign_in_at:\n- 2019-10-12 15:42:39.914537000 Z\n- 2019-10-21 22:16:17.155060131 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 1\n- 2\n 4 \N 187.149.42.159 dfda45be-74c2-4916-9b08-e978186dd2d7 2019-10-21 22:16:17.161804 18966 24 User \N \N 24 User \N update ---\nunique_session_id:\n- F9xv8D6HpY9orEieeKJh\n- McwsxydsyKaX-ohFRUHz\n 5 \N 187.149.42.159 dfda45be-74c2-4916-9b08-e978186dd2d7 2019-10-21 22:16:17.180194 18967 1280 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 519\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-10-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-680\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 c973ae91-17fa-4528-a83c-4c98292165a5 2019-10-21 23:16:32.212275 18970 1778 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 519\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 1280\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-680\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.649E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-680 187.149.42.159 6ac24c18-711a-409a-9f26-8bf7b87df00c 2019-10-21 23:16:37.202363 18971 18 Seller \N \N 2 User \N create ---\npointsale_id: 1\nname: KEYLA\nlast_name: LIZARRAGA\nstatus: 1\n 1 El vendedor KEYLA LIZARRAGA fue registrado. 187.149.42.159 5ee2febd-a03c-4c37-b201-d20a1fa08b49 2019-10-21 23:55:05.632331 18972 208 Customer \N \N 2 User \N create ---\nnick_name: OLIVIA MARGARITA ALVAREZ\nphone: "(667) 756-6418"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente OLIVIA MARGARITA ALVAREZ fue registrado. 187.149.42.159 66405e60-0f65-4faa-81b3-80b5593a6d1e 2019-10-21 23:56:02.858698 18973 1281 Sale \N \N 2 User \N create ---\ncustomer_id: 208\nuser_id: 2\nopen_cash_register_id: 519\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-10-21\nsaletype: 2\nseller_id: 18\nsale_code: PV1-V-681\nexpiration_date: 2019-11-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 8d227fb6-8ba6-40c8-a9e3-ac9c6a0ecf19 2019-10-21 23:56:48.582748 18974 1166 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.42.159 8d227fb6-8ba6-40c8-a9e3-ac9c6a0ecf19 2019-10-21 23:56:48.607749 18975 1779 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 519\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.17E3\nmove_type: '1'\nsale_id: 1281\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-681\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.17E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-681 187.149.42.159 7fabc60c-733b-42ac-8851-4a3abb05954e 2019-10-21 23:57:01.909086 18976 1281 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.159 20e128b7-9311-4950-8b42-77ebd8fca9bf 2019-10-21 23:57:06.10475 18977 19 Seller \N \N 26 User \N create ---\npointsale_id: 2\nname: KEYLA\nlast_name: LIZARRAGA\nstatus: 1\n 1 El vendedor KEYLA LIZARRAGA fue registrado. 187.149.42.159 ed29f433-a0b0-4692-b8ee-b56e84b6832c 2019-10-22 00:16:59.141525 18978 171 Product \N \N 4 User \N update ---\nsku:\n- PAN-171\n- PAL-854\ncategory_id:\n- 8\n- 9\n 3 El producto PAN-171 fue modificado. 187.149.42.159 41bcea99-7928-4ef9-9884-d8ab1b90d71a 2019-10-22 00:28:58.459576 18979 172 Product \N \N 4 User \N update ---\nsku:\n- PAN-172\n- PAL-854\ncategory_id:\n- 8\n- 9\n 3 El producto PAN-172 fue modificado. 187.149.42.159 4bda670c-7667-420b-825d-386a21dac4b5 2019-10-22 00:29:18.726911 18980 169 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.42.159 5dffcb41-8435-4967-a62d-1885e39c6efc 2019-10-22 00:30:26.449691 18981 169 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.42.159 6e4fb6b2-0cb9-4dbf-8101-ae8dd9e95431 2019-10-22 00:30:28.7982 18982 170 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.42.159 6164bdda-2429-42de-af99-5314397280eb 2019-10-22 00:30:34.139044 18983 170 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.42.159 1ed1fc8b-3cdc-47b6-9253-d0f06c45eaff 2019-10-22 00:30:37.562398 18984 255 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-10-21\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.42.159 5c735d50-06a4-4b5d-9275-cc36306be338 2019-10-22 00:30:38.18917 18985 255 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-21\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.42.159 fd8f9817-de2d-4742-b698-ce9eccdfb50b 2019-10-22 00:30:52.132408 18986 1219 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 172\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 fd8f9817-de2d-4742-b698-ce9eccdfb50b 2019-10-22 00:30:52.151523 18987 1220 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 171\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 fd8f9817-de2d-4742-b698-ce9eccdfb50b 2019-10-22 00:30:52.171808 18988 255 Transfer \N \N 26 User \N update --- {}\n 3 Se dio entrada a traspaso de SUO a S BY SUO 187.149.42.159 a53d1631-ef83-449c-8d17-41a38ecb2bfb 2019-10-22 00:30:52.818615 18989 1219 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.42.159 a53d1631-ef83-449c-8d17-41a38ecb2bfb 2019-10-22 00:30:52.860232 18990 1220 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.42.159 a53d1631-ef83-449c-8d17-41a38ecb2bfb 2019-10-22 00:30:52.909976 18991 223 Product \N \N 4 User \N update ---\nsku:\n- VES-PRM-640\n- VES-854\ncategory_id:\n- 18\n- 12\n 4 El producto VES-PRM-640 fue modificado. 187.149.42.159 344a9fd4-b70d-45dd-a7b4-de0cab5b82e9 2019-10-22 01:08:03.948437 18992 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-21 19:05:18.203441000 Z\n- &1 2019-10-21 21:55:47.355444000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-22 01:32:25.299995354 Z\nsign_in_count:\n- 796\n- 797\n 1594 \N 187.149.42.159 29ecb0e6-84ba-47d5-96ab-457772649545 2019-10-22 01:32:25.30891 18993 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DxELg8sta5BDHaQQzA3v\n- PbM59z3hHUfrXquSsdTS\n 1595 \N 187.149.42.159 29ecb0e6-84ba-47d5-96ab-457772649545 2019-10-22 01:32:25.331062 18994 839 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.42.159 6841207d-4368-467d-8285-b69603c58ab9 2019-10-22 01:35:31.752775 18995 839 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.42.159 35ad1a05-8a99-411f-938d-308e58ec6535 2019-10-22 01:35:36.611022 18996 256 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2019-10-21\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 187.149.42.159 93af6d9d-d9ee-4793-b47c-5daa6f3fd4a4 2019-10-22 01:35:37.019303 19062 2 User \N \N 2 User \N update ---\nunique_session_id:\n- M8yuyr1ZgPAKgjBr677W\n- wRQRsb-AuDnRTYiMcmtm\n 714 \N 187.149.42.159 ee1364c0-d337-4874-99ad-477113cf63bf 2019-10-23 16:44:28.956844 18997 256 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-21\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.42.159 6c82737c-13c7-45d3-b2f9-3707b6a3e23e 2019-10-22 01:35:57.038019 18998 1221 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 680\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.159 6c82737c-13c7-45d3-b2f9-3707b6a3e23e 2019-10-22 01:35:57.057939 18999 200 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 519\nquantity: !ruby/object:BigDecimal 18:0.4E3\nstatus: 1\nobservations: MANIQUI\nexpense_date: 2019-10-21\nexpense_code: PV1-E-151\n 1 Egreso por 400.0 registrado 187.149.42.159 0c466cfe-91a0-4413-8fd1-bb007626d3bb 2019-10-22 01:37:10.71469 19000 1780 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 519\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 200\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.42.159 0c466cfe-91a0-4413-8fd1-bb007626d3bb 2019-10-22 01:37:10.737957 19001 27 User \N \N 4 User \N create ---\nuserid: KEYLA\nfirst_name: KEYLA\nlast_name: LIZARRAGA\nusertype: G\nemail: kglv.2001@gmail.com\nencrypted_password: "$2a$10$GpowxArd8aE8x0yzQXtXMOlbL/hM67k2BQTtakK7j1WT/SeDLyq8K"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 2\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 187.149.42.159 f2c9459a-e3e2-418d-8a74-48f6608e8f10 2019-10-22 01:38:05.751243 19002 518 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 519\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.203699E4\namount_out: !ruby/object:BigDecimal 18:0.4E3\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.1125E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1625E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.159 d44f62bb-7845-4e08-a605-76a5e3d13a18 2019-10-22 01:39:05.076886 19003 519 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 d44f62bb-7845-4e08-a605-76a5e3d13a18 2019-10-22 01:39:05.089666 19004 519 CashOut \N \N 26 User \N create ---\nopen_cash_register_id: 520\nuser_id: 26\namount_in: !ruby/object:BigDecimal 18:0.995E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.1062E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1562E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.42.159 7be9c8a9-b956-4130-8cb8-412333dc858e 2019-10-22 01:47:36.835907 19005 520 OpenCashRegister \N \N 26 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 7be9c8a9-b956-4130-8cb8-412333dc858e 2019-10-22 01:47:36.861776 19006 520 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 517\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.2799E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.28E4\ncash_fund: !ruby/object:BigDecimal 18:0.678E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3478E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.140.242 8a3da19b-d927-4ffe-9261-234b575b08c6 2019-10-22 01:56:43.557597 19007 517 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.140.242 8a3da19b-d927-4ffe-9261-234b575b08c6 2019-10-22 01:56:43.57476 19008 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-20 16:12:07.436329000 Z\n- &1 2019-10-21 16:08:14.404213000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-22 16:08:07.987051822 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121639\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183119602\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183119602\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113167\n mask_addr: 4294967295\nsign_in_count:\n- 43\n- 44\n 88 \N 189.186.115.207 fad4f547-07e1-4963-a583-dd4f6d3b17d9 2019-10-22 16:08:08.024881 19009 23 User \N \N 23 User \N update ---\nunique_session_id:\n- 1YbBrxP4KwhUSiBP81rc\n- D_CFmveUkWX_LdxCyvxN\n 89 \N 189.186.115.207 fad4f547-07e1-4963-a583-dd4f6d3b17d9 2019-10-22 16:08:08.054168 19010 521 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.678E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 678.0 189.186.115.207 d1bbac25-67d4-4e09-abfa-deaeca576a0b 2019-10-22 16:08:30.996069 19011 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-19 16:22:52.898196000 Z\n- &1 2019-10-21 16:35:25.634852000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-22 16:09:09.160846657 Z\nsign_in_count:\n- 353\n- 354\n 711 \N 187.149.42.159 b009569b-3bec-4c93-8ed1-3f8107685a92 2019-10-22 16:09:09.166847 19012 2 User \N \N 2 User \N update ---\nunique_session_id:\n- WtNZLr1kZiRg91_Xo9C7\n- M8yuyr1ZgPAKgjBr677W\n 712 \N 187.149.42.159 b009569b-3bec-4c93-8ed1-3f8107685a92 2019-10-22 16:09:09.182587 19013 522 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1125E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1125.0 187.149.42.159 bf6bd2d9-b0a4-4ccd-80ae-a08030cbb8f3 2019-10-22 16:09:28.268948 19014 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-10-22 17:05:21.762964886 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 187.149.42.159 0a2fd726-0207-46f8-9e3d-7b9d69c0161f 2019-10-22 17:05:21.770419 19015 27 User \N \N 27 User \N update ---\nunique_session_id:\n- \n- 1yyJVDsu4w2KkamXiYdx\n 3 \N 187.149.42.159 0a2fd726-0207-46f8-9e3d-7b9d69c0161f 2019-10-22 17:05:21.784056 19016 523 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1062E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1062.0 187.149.42.159 d4d06824-9916-465f-a777-2465686e21f9 2019-10-22 17:34:58.319828 19017 1781 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 397\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1017\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.42.159 6e0a729c-0e6e-47c7-b47b-2f699bc61ed2 2019-10-22 17:48:11.025677 19018 1781 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 397\n- 522\n 2 movimiento de efectivo por venta con folio PV3-V-7 187.149.42.159 6e0a729c-0e6e-47c7-b47b-2f699bc61ed2 2019-10-22 17:48:11.04849 19019 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-21 21:55:47.355444000 Z\n- &1 2019-10-22 01:32:25.299995000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-22 21:01:01.514669922 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946075\n mask_addr: 4294967295\nsign_in_count:\n- 797\n- 798\n 1596 \N 200.68.181.91 709a3f10-e526-46e8-9f72-a1c640985ed4 2019-10-22 21:01:01.543269 19020 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PbM59z3hHUfrXquSsdTS\n- z3QjSRTdzPDMbum8UgBp\n 1597 \N 200.68.181.91 709a3f10-e526-46e8-9f72-a1c640985ed4 2019-10-22 21:01:01.571479 19021 1282 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 523\namount: !ruby/object:BigDecimal 18:0.449E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.449E3\nstatus: 0\ndate_sale: 2019-10-22\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-515\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 1e643d1f-5bc2-4980-a9c2-3a38f77db952 2019-10-22 21:57:18.711262 19022 722 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.42.159 1e643d1f-5bc2-4980-a9c2-3a38f77db952 2019-10-22 21:57:18.739015 19023 1282 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 95c7d6d2-bc9d-4b66-835c-681c029cabbd 2019-10-22 21:57:29.45205 19024 1782 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 523\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.449E3\nmove_type: '1'\nsale_id: 1282\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-515\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-515 187.149.42.159 95c7d6d2-bc9d-4b66-835c-681c029cabbd 2019-10-22 21:57:29.478428 19025 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-10-06 00:14:37.501860000 Z\n- &1 2019-10-11 23:09:24.890551000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-22 22:55:33.692848583 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 92\n- 93\n 186 \N 187.149.42.159 e1bd5348-6bf4-43b6-9950-87fc86990f65 2019-10-22 22:55:33.701513 19026 1 User \N \N 1 User \N update ---\nunique_session_id:\n- DykWgycpWMZRqepL29d7\n- 93UduF5bvYairNXA46KY\n 187 \N 187.149.42.159 e1bd5348-6bf4-43b6-9950-87fc86990f65 2019-10-22 22:55:33.716934 19027 1283 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 523\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-10-22\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-516\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 74814d90-fbf0-4706-98a2-6f0c72acdeb8 2019-10-22 23:04:28.678793 19028 1083 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.42.159 74814d90-fbf0-4706-98a2-6f0c72acdeb8 2019-10-22 23:04:28.703948 19029 1283 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 148acec3-3ae0-454f-8e49-ee31416e8a42 2019-10-22 23:04:40.288259 19030 1783 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 523\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1283\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-516\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-516 187.149.42.159 148acec3-3ae0-454f-8e49-ee31416e8a42 2019-10-22 23:04:40.307658 19031 209 Customer \N \N 2 User \N create ---\nnick_name: KITZYA PEIRO SAINZ\nphone: "(667) 331-8251"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KITZYA PEIRO SAINZ fue registrado. 187.149.42.159 9bbe4fe4-ada4-4969-81c3-a283e6657786 2019-10-22 23:40:45.710377 19032 1284 Sale \N \N 2 User \N create ---\ncustomer_id: 209\nuser_id: 2\nopen_cash_register_id: 522\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2019-10-22\nsaletype: 2\nseller_id: 18\nsale_code: PV1-V-682\nexpiration_date: 2019-11-26\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 5da33549-4ac8-4e26-baab-2f83f9222f65 2019-10-22 23:41:08.197309 19033 1097 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.42.159 5da33549-4ac8-4e26-baab-2f83f9222f65 2019-10-22 23:41:08.2312 19034 1784 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 522\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1284\ncardnumber: 8608\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-682\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-682 187.149.42.159 e3c3d372-9304-4f6c-a7b9-e036e8d3f1df 2019-10-22 23:41:55.361223 19035 1784 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 522\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1284\ncardnumber: 8608\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-682\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.42.159 dc882180-5045-4a38-9020-c1e863800ca9 2019-10-22 23:42:05.901575 19036 1785 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 522\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1284\ncardnumber: 8608\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-682\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-682 187.149.42.159 6bce78fb-bc90-44fb-95cd-943b5b4b643a 2019-10-22 23:42:23.629037 19037 1284 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.159 3e2d0eb2-a304-4351-aba3-5eb82b956b9f 2019-10-22 23:42:25.713129 19038 1284 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV1-V-682 cancelada. 187.149.42.159 adbd94b6-6328-45ff-87e5-120d4d8e9979 2019-10-22 23:44:28.607834 19039 1097 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.42.159 adbd94b6-6328-45ff-87e5-120d4d8e9979 2019-10-22 23:44:28.633401 19131 521 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.177.17 aa5c33be-f6e4-4ad4-8a68-800f1932d708 2019-10-24 02:00:27.123253 19040 1285 Sale \N \N 2 User \N create ---\ncustomer_id: 209\nuser_id: 2\nopen_cash_register_id: 522\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2019-10-22\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-683\nexpiration_date: 2019-11-26\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 699d9004-dd68-44e0-859b-56efe75e93e8 2019-10-22 23:45:23.03321 19041 1097 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.42.159 699d9004-dd68-44e0-859b-56efe75e93e8 2019-10-22 23:45:23.056708 19042 1786 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 522\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1285\ncardnumber: 8608\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-683\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-683 187.149.42.159 075d10d7-5185-449b-8cc3-e418692a04cc 2019-10-22 23:45:43.158768 19043 1285 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.159 e092a296-a2a2-43b5-8f1c-9e1960a414b8 2019-10-22 23:45:45.387375 19044 1286 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 523\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-10-22\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-517\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 9f174530-5a1b-48dd-a090-b524109c6450 2019-10-23 00:26:10.086885 19045 1130 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.42.159 9f174530-5a1b-48dd-a090-b524109c6450 2019-10-23 00:26:10.118096 19046 1286 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 cb8dd5e1-8de8-4737-a2ac-0efcf2e4cc97 2019-10-23 00:26:19.941519 19047 1787 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 523\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.649E3\nmove_type: '1'\nsale_id: 1286\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-517\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.351E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-517 187.149.42.159 cb8dd5e1-8de8-4737-a2ac-0efcf2e4cc97 2019-10-23 00:26:19.963449 19048 521 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 522\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.11E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.1125E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1625E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.159 a9f6cc51-8b19-412a-a460-73e12b89d089 2019-10-23 01:17:37.336073 19049 522 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 a9f6cc51-8b19-412a-a460-73e12b89d089 2019-10-23 01:17:37.353852 19050 522 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 523\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.1797E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.859E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2859E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.42.159 dc517ecc-87c1-4046-8534-79c77d251bda 2019-10-23 01:25:20.049119 19051 523 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 dc517ecc-87c1-4046-8534-79c77d251bda 2019-10-23 01:25:20.062859 19052 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-22 01:32:25.299995000 Z\n- &1 2019-10-22 21:01:01.514669000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-23 02:00:23.974953494 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938474\n mask_addr: 4294967295\nsign_in_count:\n- 798\n- 799\n 1598 \N 200.68.151.170 a78cbb2e-bf03-4f07-9b14-3f311a1e022e 2019-10-23 02:00:24.012828 19053 4 User \N \N 4 User \N update ---\nunique_session_id:\n- z3QjSRTdzPDMbum8UgBp\n- Y3TSy_a1Bcsdoz9KvoFd\n 1599 \N 200.68.151.170 a78cbb2e-bf03-4f07-9b14-3f311a1e022e 2019-10-23 02:00:24.043108 19054 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-22 21:01:01.514669000 Z\n- &1 2019-10-23 02:00:23.974953000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-23 02:29:52.105763172 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938474\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938474\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111853\n mask_addr: 4294967295\nsign_in_count:\n- 799\n- 800\n 1600 \N 187.149.29.173 1ac9bdba-155f-4a58-9088-7a56a986dece 2019-10-23 02:29:52.116229 19055 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Y3TSy_a1Bcsdoz9KvoFd\n- d5t3f9NJ7qC8oxwY5RZz\n 1601 \N 187.149.29.173 1ac9bdba-155f-4a58-9088-7a56a986dece 2019-10-23 02:29:52.13776 19056 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-21 16:08:14.404213000 Z\n- &1 2019-10-22 16:08:07.987051000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-23 16:10:37.471088088 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183119602\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113167\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183128849\n mask_addr: 4294967295\nsign_in_count:\n- 44\n- 45\n 90 \N 189.186.177.17 92d7bca5-ae88-4407-b1c6-308894e52669 2019-10-23 16:10:37.510984 19057 23 User \N \N 23 User \N update ---\nunique_session_id:\n- D_CFmveUkWX_LdxCyvxN\n- P_esDX64xYCmCxuTzrz4\n 91 \N 189.186.177.17 92d7bca5-ae88-4407-b1c6-308894e52669 2019-10-23 16:10:37.535421 19058 27 User \N \N 27 User \N update ---\ncurrent_sign_in_at:\n- 2019-10-22 17:05:21.762964000 Z\n- 2019-10-23 16:30:57.701553316 Z\nsign_in_count:\n- 1\n- 2\n 4 \N 187.149.42.159 36a65a14-9d97-473b-a62d-ccc6bf8070f0 2019-10-23 16:30:57.708843 19059 27 User \N \N 27 User \N update ---\nunique_session_id:\n- 1yyJVDsu4w2KkamXiYdx\n- WW_7xeHFtNG2BwJGj1Kn\n 5 \N 187.149.42.159 36a65a14-9d97-473b-a62d-ccc6bf8070f0 2019-10-23 16:30:57.724084 19060 524 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.859E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 859.0 187.149.42.159 a0374ef8-46a4-4648-a168-d43e941888af 2019-10-23 16:43:53.611107 19061 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-21 16:35:25.634852000 Z\n- &1 2019-10-22 16:09:09.160846000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-23 16:44:28.937610494 Z\nsign_in_count:\n- 354\n- 355\n 713 \N 187.149.42.159 ee1364c0-d337-4874-99ad-477113cf63bf 2019-10-23 16:44:28.943088 19063 525 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1125E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1125.0 187.149.42.159 51eeb0f2-cefa-4122-9245-e91c6d347239 2019-10-23 16:57:09.363834 19064 1287 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 525\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-10-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-684\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 1d15c289-826e-43f3-80ce-81b7191f2b2e 2019-10-23 17:40:04.500757 19065 1155 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.42.159 1d15c289-826e-43f3-80ce-81b7191f2b2e 2019-10-23 17:40:04.530091 19066 1287 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 8b8c7f0c-9cc7-49b0-a1ea-3aa0a6a5d194 2019-10-23 17:40:08.960786 19067 1788 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 525\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 1287\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-684\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-684 187.149.42.159 8b8c7f0c-9cc7-49b0-a1ea-3aa0a6a5d194 2019-10-23 17:40:08.982792 19068 1288 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 525\namount: !ruby/object:BigDecimal 18:0.49E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2019-10-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-685\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 de34d284-4f05-4068-a7d9-a893b7ac08d6 2019-10-23 17:40:58.959617 19069 1209 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.42.159 de34d284-4f05-4068-a7d9-a893b7ac08d6 2019-10-23 17:40:58.983443 19070 1288 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 bc55a5b9-f067-4ab1-bf84-baa2c0ca2eb9 2019-10-23 17:41:04.557769 19071 1789 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 525\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49E2\nmove_type: '1'\nsale_id: 1288\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-685\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-685 187.149.42.159 bc55a5b9-f067-4ab1-bf84-baa2c0ca2eb9 2019-10-23 17:41:04.575928 19072 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 23:09:24.890551000 Z\n- &1 2019-10-22 22:55:33.692848000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-23 17:43:23.483547169 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 93\n- 94\n 188 \N 187.149.42.159 4e67e17f-bb5c-41dc-9224-6bd25541604b 2019-10-23 17:43:23.490415 19073 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 93UduF5bvYairNXA46KY\n- kcmsbyGkxpPvCxP17FZD\n 189 \N 187.149.42.159 4e67e17f-bb5c-41dc-9224-6bd25541604b 2019-10-23 17:43:23.504329 19074 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-10-22 17:05:21.762964000 Z\n- &1 2019-10-23 16:30:57.701553000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-23 18:48:19.321009629 Z\nsign_in_count:\n- 2\n- 3\n 6 \N 187.149.42.159 da627434-4a6b-4dd0-b8e8-c60c4440ebf9 2019-10-23 18:48:19.32661 19075 27 User \N \N 27 User \N update ---\nunique_session_id:\n- WW_7xeHFtNG2BwJGj1Kn\n- sZtGA7PiKyuzLcsVTURY\n 7 \N 187.149.42.159 da627434-4a6b-4dd0-b8e8-c60c4440ebf9 2019-10-23 18:48:19.338772 19076 1289 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 524\namount: !ruby/object:BigDecimal 18:0.1129E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1129E4\nstatus: 0\ndate_sale: 2019-10-23\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-518\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 8799f319-b8f5-4763-9721-d4611ac512ba 2019-10-23 18:49:05.475554 19077 1088 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.42.159 8799f319-b8f5-4763-9721-d4611ac512ba 2019-10-23 18:49:05.500311 19078 1289 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 e74b6b86-ce99-4487-b4fb-e31725595c10 2019-10-23 18:49:16.1191 19079 1790 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 524\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1129E4\nmove_type: '1'\nsale_id: 1289\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-518\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.371E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-518 187.149.42.159 e74b6b86-ce99-4487-b4fb-e31725595c10 2019-10-23 18:49:16.137415 19080 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-10-12 15:42:39.914537000 Z\n- &1 2019-10-21 22:16:17.155060000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-23 19:22:04.655151741 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 2\n- 3\n 6 \N 187.149.42.159 dee531b2-f4db-40d7-82f6-2fcdb590a3b2 2019-10-23 19:22:04.663449 19081 24 User \N \N 24 User \N update ---\nunique_session_id:\n- McwsxydsyKaX-ohFRUHz\n- YtuxuTa1tyuo7h-xgqZL\n 7 \N 187.149.42.159 dee531b2-f4db-40d7-82f6-2fcdb590a3b2 2019-10-23 19:22:04.677136 19082 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-22 16:09:09.160846000 Z\n- &1 2019-10-23 16:44:28.937610000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-23 19:22:32.267186619 Z\nsign_in_count:\n- 355\n- 356\n 715 \N 187.149.42.159 d2d20ca2-c9aa-412b-bd39-66f64d58731f 2019-10-23 19:22:32.273333 19083 2 User \N \N 2 User \N update ---\nunique_session_id:\n- wRQRsb-AuDnRTYiMcmtm\n- x7sMRsq5uSaSJcbPNfqW\n 716 \N 187.149.42.159 d2d20ca2-c9aa-412b-bd39-66f64d58731f 2019-10-23 19:22:32.286075 19084 1791 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 521\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.199E3\nmove_type: '1'\nsale_id: 1179\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-53 189.186.177.17 79a23e5d-dab4-493d-99ef-66c16ecdcde8 2019-10-23 19:43:54.484181 19247 1235 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.93.117 f4740a24-5fa8-44d8-9335-a5d9f27d4955 2019-10-25 17:24:01.044453 19085 1792 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 521\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 1179\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-53 189.186.177.17 4df18a22-006a-4186-b0ac-fc075d6a9bd2 2019-10-23 19:44:13.734794 19086 1179 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.177.17 51783081-bf8e-4ffa-909d-71c2ae389582 2019-10-23 19:44:18.068496 19087 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-10-21 22:16:17.155060000 Z\n- &1 2019-10-23 19:22:04.655151000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-23 20:37:28.428662807 Z\nsign_in_count:\n- 3\n- 4\n 8 \N 187.149.42.159 5b0870bd-3091-4239-a481-902c89d12707 2019-10-23 20:37:28.43744 19088 24 User \N \N 24 User \N update ---\nunique_session_id:\n- YtuxuTa1tyuo7h-xgqZL\n- 6bex_RT-2kdswb1qw9uB\n 9 \N 187.149.42.159 5b0870bd-3091-4239-a481-902c89d12707 2019-10-23 20:37:28.452053 19089 1793 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 524\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.95E3\nmove_type: '1'\nsale_id: 1188\ncardnumber: 3295\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-477 187.149.42.159 99fb380d-2770-4192-a69c-6373cc33f717 2019-10-23 20:38:38.042439 19090 1188 Sale \N \N 24 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.42.159 8e3b8da4-e64e-492e-bc05-e94e000c2968 2019-10-23 20:38:40.63048 19091 210 Customer \N \N 23 User \N create ---\nnick_name: DLADIS LEON\nphone: "(667) 311-8389"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DLADIS LEON fue registrado. 189.186.177.17 dcc4ac7b-22bb-4073-9afc-756d7028d12e 2019-10-23 23:15:18.232364 19092 1290 Sale \N \N 23 User \N create ---\ncustomer_id: 210\nuser_id: 23\nopen_cash_register_id: 521\namount: !ruby/object:BigDecimal 18:0.137845E4\ntax: !ruby/object:BigDecimal 18:0.22055E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-10-23\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-85\nexpiration_date: 2019-11-27\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.177.17 bcb1683f-40ad-4ee5-a858-3061a09b39fa 2019-10-23 23:15:34.576906 19093 849 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.177.17 bcb1683f-40ad-4ee5-a858-3061a09b39fa 2019-10-23 23:15:34.606577 19094 1794 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 521\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1290\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-85\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-85 189.186.177.17 73fba7d8-9c62-4840-a3e4-5a20e6a80fac 2019-10-23 23:15:42.869522 19095 1290 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.177.17 761256dd-6a12-49e8-84ae-900e60204d87 2019-10-23 23:15:43.923258 19096 211 Customer \N \N 23 User \N create ---\nnick_name: ROCIO GONZALEZ\nphone: "(667) 798-8503"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ROCIO GONZALEZ fue registrado. 189.186.177.17 54f44070-2fd4-41dc-b8f8-3a64f0526ac0 2019-10-23 23:32:47.288509 19097 1291 Sale \N \N 23 User \N create ---\ncustomer_id: 211\nuser_id: 23\nopen_cash_register_id: 521\namount: !ruby/object:BigDecimal 18:0.293017E4\ntax: !ruby/object:BigDecimal 18:0.46883E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3399E4\nstatus: 0\ndate_sale: 2019-10-23\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-86\nexpiration_date: 2019-11-27\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.177.17 f60e2064-11dc-4dd1-b659-048853fedecb 2019-10-23 23:33:15.922572 19098 962 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.177.17 f60e2064-11dc-4dd1-b659-048853fedecb 2019-10-23 23:33:15.962574 19099 1795 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 521\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E4\nmove_type: '1'\nsale_id: 1291\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-86\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-86 189.186.177.17 00425f2b-1e86-486b-a856-1aa2bd3d0060 2019-10-23 23:33:25.786709 19100 1291 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.177.17 a7eb0f74-c417-4900-876d-657e14adceb6 2019-10-23 23:33:26.738239 19101 1292 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 525\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2019-10-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-686\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 fc803970-1fa9-49fb-95ef-38eba6c5bddb 2019-10-23 23:37:04.556043 19102 1160 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.42.159 fc803970-1fa9-49fb-95ef-38eba6c5bddb 2019-10-23 23:37:04.582779 19103 1292 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 95766bce-56e7-4069-abbf-641849304d5a 2019-10-23 23:37:11.508125 19104 1796 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 525\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.789E3\nmove_type: '1'\nsale_id: 1292\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-686\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.789E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-686 187.149.42.159 95766bce-56e7-4069-abbf-641849304d5a 2019-10-23 23:37:11.528034 19105 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-10-23 19:22:04.655151000 Z\n- &1 2019-10-23 20:37:28.428662000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-23 23:46:15.786429781 Z\nsign_in_count:\n- 4\n- 5\n 10 \N 187.149.42.159 8e6a0aac-f6dc-4cd2-b831-a8892d4be861 2019-10-23 23:46:15.79294 19106 24 User \N \N 24 User \N update ---\nunique_session_id:\n- 6bex_RT-2kdswb1qw9uB\n- tcyPBJHQoL5NGxxscvtg\n 11 \N 187.149.42.159 8e6a0aac-f6dc-4cd2-b831-a8892d4be861 2019-10-23 23:46:15.807966 19107 1156 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.42.159 e30da92e-0ad8-4461-a66c-e2415199a465 2019-10-23 23:52:27.016647 19108 257 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-10-23\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.42.159 882a51d3-1ba4-4a24-85aa-505381c30af1 2019-10-23 23:52:31.165552 19109 257 Transfer \N \N 24 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 24\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-23\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.42.159 85932902-e827-4df3-b7d5-28d031f1356a 2019-10-23 23:52:50.823067 19110 1148 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.42.159 85932902-e827-4df3-b7d5-28d031f1356a 2019-10-23 23:52:50.838488 19111 15 ProductsReturn \N \N 24 User \N create ---\nsale_id: 1279\nuser_id: 24\nreturn_code: PV2-D-7\npointsale_id: 2\nnew_amount: !ruby/object:BigDecimal 18:0.35175E3\nreturned_amount: !ruby/object:BigDecimal 18:0.35925E3\ndifference_amount: !ruby/object:BigDecimal 18:0.0\nis_money_returned: false\n 1 devolución PV2-D-7 creada. 187.149.42.159 3a147562-8c66-4715-a4ce-588e74ae4c9b 2019-10-23 23:59:23.85864 19112 753 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 187.149.42.159 3a147562-8c66-4715-a4ce-588e74ae4c9b 2019-10-23 23:59:23.885719 19113 1148 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.42.159 3a147562-8c66-4715-a4ce-588e74ae4c9b 2019-10-23 23:59:23.912551 19114 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-10-22 22:55:33.692848000 Z\n- &1 2019-10-23 17:43:23.483547000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-24 00:00:21.869204657 Z\nsign_in_count:\n- 94\n- 95\n 190 \N 187.149.42.159 c448ea86-ef38-4f93-ada3-44f5a4772ed4 2019-10-24 00:00:21.875058 19115 1 User \N \N 1 User \N update ---\nunique_session_id:\n- kcmsbyGkxpPvCxP17FZD\n- d7sqjX3zpmNzpf2aKykb\n 191 \N 187.149.42.159 c448ea86-ef38-4f93-ada3-44f5a4772ed4 2019-10-24 00:00:21.887363 19116 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-10-23 16:30:57.701553000 Z\n- &1 2019-10-23 18:48:19.321009000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-24 00:20:25.270132163 Z\nsign_in_count:\n- 3\n- 4\n 8 \N 187.149.42.159 e4afdb2d-281a-443f-9499-4fab9634b944 2019-10-24 00:20:25.276739 19117 27 User \N \N 27 User \N update ---\nunique_session_id:\n- sZtGA7PiKyuzLcsVTURY\n- NKs3jR8dta57tErshAgS\n 9 \N 187.149.42.159 e4afdb2d-281a-443f-9499-4fab9634b944 2019-10-24 00:20:25.288952 19118 1293 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 524\namount: !ruby/object:BigDecimal 18:0.30172E3\ntax: !ruby/object:BigDecimal 18:0.4828E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2019-10-23\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-519\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 03764d07-8f04-4cec-8086-6caab60a9888 2019-10-24 00:22:29.274505 19119 365 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.48E2\n- !ruby/object:BigDecimal 18:0.47E2\n 20 \N 187.149.42.159 03764d07-8f04-4cec-8086-6caab60a9888 2019-10-24 00:22:29.311017 19120 1293 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 79902174-587c-4f5c-b3d3-5aeebaca13aa 2019-10-24 00:23:09.081267 19121 1797 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 524\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.35E3\nmove_type: '1'\nsale_id: 1293\ncardnumber: 680\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-519\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-519 187.149.42.159 79902174-587c-4f5c-b3d3-5aeebaca13aa 2019-10-24 00:23:09.102078 19122 201 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 525\nquantity: !ruby/object:BigDecimal 18:0.35E2\nstatus: 1\nobservations: "$25 agua $10 cooperacion a señor indigente"\nexpense_date: 2019-10-23\nexpense_code: PV1-E-152\n 1 Egreso por 35.0 registrado 187.149.42.159 2408242d-02ac-4350-9c23-6e269cb5f6f0 2019-10-24 01:12:20.970366 19123 1798 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 525\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.35E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 201\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.42.159 2408242d-02ac-4350-9c23-6e269cb5f6f0 2019-10-24 01:12:21.025837 19124 523 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 525\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2037E4\namount_out: !ruby/object:BigDecimal 18:0.35E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.1127E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3127E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.159 b1bad085-0e8e-40d0-b771-07fe546a1025 2019-10-24 01:25:54.752249 19125 525 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 b1bad085-0e8e-40d0-b771-07fe546a1025 2019-10-24 01:25:54.77613 19126 524 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 525\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2037E4\namount_out: !ruby/object:BigDecimal 18:0.35E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.1127E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3127E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.159 c521d28e-8c93-4ff5-bfa1-6197ee90bb28 2019-10-24 01:25:54.861762 19127 525 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 525\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2037E4\namount_out: !ruby/object:BigDecimal 18:0.35E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.1127E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3127E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.159 9ec40b5d-01ae-4487-b207-34a5120672d9 2019-10-24 01:25:54.980331 19128 526 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 524\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2429E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.988E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1988E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.42.159 8c76b93e-3503-4796-b4d7-a3807ead67a5 2019-10-24 01:37:05.155426 19129 524 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 8c76b93e-3503-4796-b4d7-a3807ead67a5 2019-10-24 01:37:05.169368 19130 527 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 521\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.3199E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.22E4\ncash_fund: !ruby/object:BigDecimal 18:0.677E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2877E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.177.17 aa5c33be-f6e4-4ad4-8a68-800f1932d708 2019-10-24 02:00:27.106112 19132 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-23 02:00:23.974953000 Z\n- &1 2019-10-23 02:29:52.105763000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-24 06:36:59.530207535 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938474\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111853\n mask_addr: 4294967295\nsign_in_count:\n- 800\n- 801\n 1602 \N 187.149.29.173 dc8295d3-08e1-40d0-9fd4-59c6a55ee26b 2019-10-24 06:36:59.544647 19133 4 User \N \N 4 User \N update ---\nunique_session_id:\n- d5t3f9NJ7qC8oxwY5RZz\n- xqAidNfyYs_y6surV1Bx\n 1603 \N 187.149.29.173 dc8295d3-08e1-40d0-9fd4-59c6a55ee26b 2019-10-24 06:36:59.567336 19134 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-22 16:08:07.987051000 Z\n- &1 2019-10-23 16:10:37.471088000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-24 16:13:21.235126458 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183128849\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183128849\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\nsign_in_count:\n- 45\n- 46\n 92 \N 189.186.93.117 1afdf13b-2f26-4b29-9262-232f50aa787b 2019-10-24 16:13:21.26264 19135 23 User \N \N 23 User \N update ---\nunique_session_id:\n- P_esDX64xYCmCxuTzrz4\n- G9-y82u2pnCsz-oPhi_v\n 93 \N 189.186.93.117 1afdf13b-2f26-4b29-9262-232f50aa787b 2019-10-24 16:13:21.285243 19136 526 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.677E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 677.0 189.186.93.117 64851730-4661-4ce1-8972-ea736b033b27 2019-10-24 16:13:39.636542 19137 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-10-23 20:37:28.428662000 Z\n- &1 2019-10-23 23:46:15.786429000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-24 18:15:09.643076241 Z\nsign_in_count:\n- 5\n- 6\n 12 \N 187.149.42.159 80600de5-81b5-4ed8-a82e-94d6b34c5fda 2019-10-24 18:15:09.682611 19138 24 User \N \N 24 User \N update ---\nunique_session_id:\n- tcyPBJHQoL5NGxxscvtg\n- FJbQFS-y9SfCz_Evv-Xk\n 13 \N 187.149.42.159 80600de5-81b5-4ed8-a82e-94d6b34c5fda 2019-10-24 18:15:09.702604 19139 527 OpenCashRegister \N \N 24 User \N create ---\ncash_register_id: 2\nuser_id: 24\ninitial_cash: !ruby/object:BigDecimal 18:0.988E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 988.0 187.149.42.159 7d0ff04e-4480-447e-8f56-06e283072464 2019-10-24 18:15:13.86064 19140 212 Customer \N \N 24 User \N create ---\nnick_name: PAULINA ARAIZA\nphone: "(667) 428-3040"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente PAULINA ARAIZA fue registrado. 187.149.42.159 0389e89f-351a-41a2-9d2a-33464a9229de 2019-10-24 18:16:42.85877 19141 1294 Sale \N \N 24 User \N create ---\ncustomer_id: 212\nuser_id: 24\nopen_cash_register_id: 527\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-10-24\nsaletype: 2\nseller_id: 11\nsale_code: PV2-V-520\nexpiration_date: 2019-11-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 ac5e35aa-eb86-45a5-bf9c-209f5dba90d7 2019-10-24 18:17:12.891794 19142 1084 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.42.159 ac5e35aa-eb86-45a5-bf9c-209f5dba90d7 2019-10-24 18:17:12.919101 19143 1799 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 527\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1294\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-520\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-520 187.149.42.159 32d5f6f5-f0b4-4007-b8ac-95da83ddec71 2019-10-24 18:17:19.937882 19144 1294 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.159 bd5adf07-adb6-461c-a10b-4c120a9fde9f 2019-10-24 18:17:23.279304 19145 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-23 16:44:28.937610000 Z\n- &1 2019-10-23 19:22:32.267186000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-24 18:19:33.960586256 Z\nsign_in_count:\n- 356\n- 357\n 717 \N 187.149.42.159 35a79a3a-49c7-4afc-9e9f-a8baabffb08c 2019-10-24 18:19:33.965908 19146 2 User \N \N 2 User \N update ---\nunique_session_id:\n- x7sMRsq5uSaSJcbPNfqW\n- yqB3KpvVNRjGvnxtmZPB\n 718 \N 187.149.42.159 35a79a3a-49c7-4afc-9e9f-a8baabffb08c 2019-10-24 18:19:33.978686 19147 528 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1127E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1127.0 187.149.42.159 c7b585fe-bfdd-4364-bb4b-559b485d88cd 2019-10-24 18:19:49.747868 19148 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-10-20 01:34:27.040135000 Z\n- &1 2019-10-21 20:41:50.432432000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-24 19:33:19.246274129 Z\nsign_in_count:\n- 5\n- 6\n 12 \N 187.149.42.159 3a2974c4-022a-4cca-982d-1bb1b644835d 2019-10-24 19:33:19.252025 19149 26 User \N \N 26 User \N update ---\nunique_session_id:\n- CBhqzwkXtd5xCy5h_LR6\n- xtLYEgxJEL7RV_91NxXJ\n 13 \N 187.149.42.159 3a2974c4-022a-4cca-982d-1bb1b644835d 2019-10-24 19:33:19.263376 19150 1295 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 527\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-10-24\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-521\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 2e65d781-76cf-48ec-8ae6-c34248191f2b 2019-10-24 19:34:15.029107 19151 806 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 28 \N 187.149.42.159 2e65d781-76cf-48ec-8ae6-c34248191f2b 2019-10-24 19:34:15.053326 19152 1295 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 f67c54ec-3e96-4df0-a1ce-6aa02d344c3d 2019-10-24 19:34:50.075384 19153 1800 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 527\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1295\ncardnumber: 2298\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-521\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-521 187.149.42.159 f67c54ec-3e96-4df0-a1ce-6aa02d344c3d 2019-10-24 19:34:50.095505 19154 213 Customer \N \N 26 User \N create ---\nnick_name: BEATRIZ ROCHA\nphone: "(667) 191-0696"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BEATRIZ ROCHA fue registrado. 187.149.42.159 0280b17c-16e1-475c-a044-7f2f9e46a750 2019-10-24 20:29:03.987067 19248 1236 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.93.117 f4740a24-5fa8-44d8-9335-a5d9f27d4955 2019-10-25 17:24:01.06935 19155 1296 Sale \N \N 26 User \N create ---\ncustomer_id: 213\nuser_id: 26\nopen_cash_register_id: 527\namount: !ruby/object:BigDecimal 18:0.1857E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1857E4\nstatus: 0\ndate_sale: 2019-10-24\nsaletype: 2\nseller_id: 15\nsale_code: PV2-V-522\nexpiration_date: 2019-11-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 134bd138-8d40-4f9e-aee2-fd9535940ff1 2019-10-24 20:29:35.394679 19156 1147 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.42.159 134bd138-8d40-4f9e-aee2-fd9535940ff1 2019-10-24 20:29:35.427872 19157 1083 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.42.159 134bd138-8d40-4f9e-aee2-fd9535940ff1 2019-10-24 20:29:35.456477 19158 1079 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.42.159 134bd138-8d40-4f9e-aee2-fd9535940ff1 2019-10-24 20:29:35.478023 19159 1801 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 527\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1296\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-522\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-522 187.149.42.159 fbaf166f-5906-45fe-905b-316f9f1289c6 2019-10-24 20:30:00.526597 19160 1296 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.159 9bb13ed4-d50d-4603-bfd2-db77c63f6013 2019-10-24 20:30:08.314946 19161 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-10-23 23:46:15.786429000 Z\n- &1 2019-10-24 18:15:09.643076000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-24 21:24:21.811643449 Z\nsign_in_count:\n- 6\n- 7\n 14 \N 187.149.42.159 bbd8ef9e-f519-40fa-afa6-cc49e81ed763 2019-10-24 21:24:21.839327 19162 24 User \N \N 24 User \N update ---\nunique_session_id:\n- FJbQFS-y9SfCz_Evv-Xk\n- _vsC6vbaxmxRwc4daTzS\n 15 \N 187.149.42.159 bbd8ef9e-f519-40fa-afa6-cc49e81ed763 2019-10-24 21:24:21.856838 19163 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-10-23 18:48:19.321009000 Z\n- &1 2019-10-24 00:20:25.270132000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-24 23:07:01.960345410 Z\nsign_in_count:\n- 4\n- 5\n 10 \N 187.149.42.159 adbd91e5-e4db-4f72-9c03-d3e7e93f087a 2019-10-24 23:07:01.967204 19164 27 User \N \N 27 User \N update ---\nunique_session_id:\n- NKs3jR8dta57tErshAgS\n- MzwuQsSzzSF8bBxMqzfG\n 11 \N 187.149.42.159 adbd91e5-e4db-4f72-9c03-d3e7e93f087a 2019-10-24 23:07:01.982508 19165 1297 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 526\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-10-24\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-87\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.93.117 a32d1361-df1f-4def-afe8-21f1d1fae3eb 2019-10-25 00:14:52.423133 19166 836 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 6 \N 189.186.93.117 a32d1361-df1f-4def-afe8-21f1d1fae3eb 2019-10-25 00:14:52.45026 19167 1297 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.93.117 239d1bee-6eaf-4aec-9a9b-c912ce871311 2019-10-25 00:15:02.450879 19168 1802 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 526\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 1297\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-87\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-87 189.186.93.117 239d1bee-6eaf-4aec-9a9b-c912ce871311 2019-10-25 00:15:02.471479 19169 1803 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 526\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.399E3\nmove_type: '1'\nsale_id: 1297\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-87\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-87 189.186.93.117 a71f236b-ba62-4e4f-9b3b-7c5cf3a7e590 2019-10-25 00:15:46.626326 19170 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-23 02:29:52.105763000 Z\n- &1 2019-10-24 06:36:59.530207000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-25 01:19:11.895251135 Z\nsign_in_count:\n- 801\n- 802\n 1604 \N 187.149.29.173 dc4b4c9d-db2b-4417-b28b-2aad018be733 2019-10-25 01:19:11.906023 19171 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xqAidNfyYs_y6surV1Bx\n- JTcLLPUCdHQZS53kWtLp\n 1605 \N 187.149.29.173 dc4b4c9d-db2b-4417-b28b-2aad018be733 2019-10-25 01:19:11.926172 19172 1804 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 526\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1178\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-52 189.186.93.117 e748aa25-8327-44ed-a741-532572bb03f2 2019-10-25 01:20:36.700107 19173 1805 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 527\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.559E3\nmove_type: '1'\nsale_id: 1051\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.559E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-434 187.149.42.159 ca69d9d4-7261-4021-8537-a0c2977ce43d 2019-10-25 01:24:05.263754 19174 1051 Sale \N \N 26 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.42.159 e64ca071-d68a-4ee9-b91f-fe87832dbb08 2019-10-25 01:24:07.067258 19175 528 CashOut \N \N 26 User \N create ---\nopen_cash_register_id: 527\nuser_id: 26\namount_in: !ruby/object:BigDecimal 18:0.1958E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.14E4\ncash_fund: !ruby/object:BigDecimal 18:0.847E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2247E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.42.159 c0443e79-ed1c-4cce-b3fa-1873b292f41e 2019-10-25 01:31:58.891598 19176 527 OpenCashRegister \N \N 26 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 c0443e79-ed1c-4cce-b3fa-1873b292f41e 2019-10-25 01:31:58.908005 19203 248 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-25\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.93.117 1b143aee-a6f7-422f-8421-e59829ef7d71 2019-10-25 16:42:57.720801 32010 1077 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1077'\n is_parent: false\n sku: ACC-1077\n name: DIA-0059\n description: DIADEMA MOÑO Y BOLITAS\n price_base: '47.0'\n price_sale: '99.0'\n img_product: DIA59.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001077'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-01 02:15:29.760853'\n updated_at: &12 2020-03-16 21:09:37.178456711 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1077'\n sku: ACC-1077\n name: DIA-0059\n description: DIADEMA MOÑO Y BOLITAS\n price_base: '47.00'\n price_sale: '99.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-01 02:15:29.760853'\n updated_at: '2020-03-01 02:15:29.805097'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001077'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1077'\n type: *3\n value: 1077\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1077\n type: *7\n value: ACC-1077\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0059\n type: *8\n value: DIA-0059\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMA MOÑO Y BOLITAS\n type: *6\n value: DIADEMA MOÑO Y BOLITAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '47.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.47E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '99.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.99E2\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DIA59.jpg\n type: *2\n value: DIA59.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001077'\n type: *2\n value: '0001077'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-01 02:15:29.760853'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- DIA59.jpg\n 3 El producto ACC-1077 fue modificado. 189.186.145.62 32c5aa51-85ea-40a4-9d21-e1fdf8723468 2020-03-16 21:09:37.254768 19177 529 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 526\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.1199E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1478E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1478E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.93.117 8b94ef98-db74-4052-9d30-0ac7d7ebd145 2019-10-25 02:11:35.393393 19178 526 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.93.117 8b94ef98-db74-4052-9d30-0ac7d7ebd145 2019-10-25 02:11:35.411073 19179 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-10-24 00:20:25.270132000 Z\n- &1 2019-10-24 23:07:01.960345000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-25 16:30:57.897937571 Z\nsign_in_count:\n- 5\n- 6\n 12 \N 187.149.42.159 271bb0f1-07ec-4c2c-af6c-adeb7ce20458 2019-10-25 16:30:57.935206 19180 27 User \N \N 27 User \N update ---\nunique_session_id:\n- MzwuQsSzzSF8bBxMqzfG\n- pAGtEBmaZoz2NkxSsJE4\n 13 \N 187.149.42.159 271bb0f1-07ec-4c2c-af6c-adeb7ce20458 2019-10-25 16:30:57.955934 19181 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-24 06:36:59.530207000 Z\n- &1 2019-10-25 01:19:11.895251000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-25 16:31:04.529441492 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111853\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\nsign_in_count:\n- 802\n- 803\n 1606 \N 189.186.93.117 159b8379-ce2f-4688-87fb-117899d5d993 2019-10-25 16:31:04.53583 19182 4 User \N \N 4 User \N update ---\nunique_session_id:\n- JTcLLPUCdHQZS53kWtLp\n- UPAWoSP_zXMPN7_aZrJN\n 1607 \N 189.186.93.117 159b8379-ce2f-4688-87fb-117899d5d993 2019-10-25 16:31:04.551995 19183 624 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.93.117 cac36245-b2b9-4d29-93f0-d7e36891a95a 2019-10-25 16:32:47.488062 19184 624 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.93.117 4ac79dd0-96fa-41f9-99ea-e7422d17dd7f 2019-10-25 16:32:50.3083 19185 284 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.93.117 960aa5fd-51d8-4aca-bf20-634a76317469 2019-10-25 16:35:36.847229 19186 284 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.93.117 cc3afeb5-30a8-4b96-8548-2aac853a9567 2019-10-25 16:35:40.217044 19187 298 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.93.117 ba3eb5cd-9597-4310-8ef1-abb37cd11c6f 2019-10-25 16:36:24.733004 19188 298 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.93.117 715be246-4fc7-49fc-a71e-bb8a81a1ab79 2019-10-25 16:36:27.69432 19189 258 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-10-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.93.117 ddd97a6d-c5f8-400e-a756-2de0a5d653f8 2019-10-25 16:37:29.587764 19190 551 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.93.117 65cb1c50-8dbd-491e-872d-b39a16f0ea64 2019-10-25 16:39:30.064721 19191 551 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.93.117 1fc948d0-4030-4f0c-a8d9-f13731a8680f 2019-10-25 16:41:45.539543 19192 259 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-10-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.93.117 0c0ce807-63b0-4c03-aa2c-ad08076e7f2b 2019-10-25 16:41:46.524553 19193 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-10-16 03:56:23.305616000 Z\n- &1 2019-10-17 16:52:08.002545000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-25 16:42:23.555203921 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934091\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\nsign_in_count:\n- 32\n- 33\n 67 \N 189.186.93.117 a2a91d74-ed15-40ac-b878-eb82d99d22ba 2019-10-25 16:42:23.562315 19194 21 User \N \N 21 User \N update ---\nunique_session_id:\n- _Zz7yQtKWwKEUFAUfv4e\n- n1x8b7BqBKV5to2rHc1P\n 68 \N 189.186.93.117 a2a91d74-ed15-40ac-b878-eb82d99d22ba 2019-10-25 16:42:23.576842 19195 259 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-25\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.93.117 7cef7eda-e0a2-4ee4-8fc8-1afe229728be 2019-10-25 16:42:36.043198 19196 1222 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 189\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.93.117 7cef7eda-e0a2-4ee4-8fc8-1afe229728be 2019-10-25 16:42:36.067664 19197 258 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-25\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.93.117 6865abc7-1c7d-46c7-8a8b-077bb185c636 2019-10-25 16:42:43.342994 19198 1223 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 300\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.93.117 6865abc7-1c7d-46c7-8a8b-077bb185c636 2019-10-25 16:42:43.364075 19199 1224 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 286\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.93.117 6865abc7-1c7d-46c7-8a8b-077bb185c636 2019-10-25 16:42:43.385159 19200 1225 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 559\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.93.117 6865abc7-1c7d-46c7-8a8b-077bb185c636 2019-10-25 16:42:43.407925 19201 254 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-25\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.93.117 56da2292-04c0-4cb1-a616-61cedcf79606 2019-10-25 16:42:52.151188 19202 1226 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 283\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.93.117 56da2292-04c0-4cb1-a616-61cedcf79606 2019-10-25 16:42:52.17042 32035 2365 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.238 26e5f051-dd61-4dae-86a4-dc5e901d79e0 2020-03-16 21:59:36.436635 19204 1227 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 539\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.93.117 1b143aee-a6f7-422f-8421-e59829ef7d71 2019-10-25 16:42:57.741009 19205 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-25 01:19:11.895251000 Z\n- &1 2019-10-25 16:31:04.529441000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-25 16:49:46.689764463 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111853\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\nsign_in_count:\n- 803\n- 804\n 1608 \N 189.186.93.117 e0f1a948-d177-462e-9d28-f4e55e92fc96 2019-10-25 16:49:46.698508 19206 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UPAWoSP_zXMPN7_aZrJN\n- dSNxiLVstgPNGKMjrkbe\n 1609 \N 189.186.93.117 e0f1a948-d177-462e-9d28-f4e55e92fc96 2019-10-25 16:49:46.71393 19207 529 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.847E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 847.0 187.149.42.159 3463b6d2-28b2-4185-8753-9d02a6840eeb 2019-10-25 16:49:57.630693 19208 24 Category \N \N 4 User \N create ---\ncategory: CHAMARRAS\ndescription: CHAMARRAS, ABRIGOS, SUETER\nstatus: 1\nparent_id: 0\n 1 La línea de producto CHAMARRAS fue creada. 189.186.93.117 7a7da5e3-2524-46ca-ac10-7b0f9045f4d9 2019-10-25 17:14:18.831559 19209 854 Product \N \N 4 User \N create ---\nsku: CHA-854\nname: CH-0010\ndescription: "ABRIGO NEGRO CQ&CQ \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.9495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3240.jpg\ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-854 fue creado. 189.186.93.117 cc323944-b67b-417c-88a3-f81da78590f6 2019-10-25 17:15:15.310657 19210 854 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000854'\n 2 \N 189.186.93.117 cc323944-b67b-417c-88a3-f81da78590f6 2019-10-25 17:15:15.364194 19211 1228 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 854\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.93.117 cc323944-b67b-417c-88a3-f81da78590f6 2019-10-25 17:15:15.393077 19212 855 Product \N \N 4 User \N create ---\nsku: CHA-855\nname: V-0047\ndescription: "GABARDINA TINTA CQ&CQ\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.9295E3\nprice_sale: !ruby/object:BigDecimal 18:0.1859E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3241.jpg\ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-855 fue creado. 189.186.93.117 74f45f36-31df-4f7e-9ae5-7fb82dfd3418 2019-10-25 17:16:04.998735 19213 855 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000855'\n 2 \N 189.186.93.117 74f45f36-31df-4f7e-9ae5-7fb82dfd3418 2019-10-25 17:16:05.063921 19214 1229 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 855\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.93.117 74f45f36-31df-4f7e-9ae5-7fb82dfd3418 2019-10-25 17:16:05.089481 19215 856 Product \N \N 4 User \N create ---\nsku: CHA-856\nname: S-0023\ndescription: "CHAMARRA ROJA LA COALITION\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3242.jpg\ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-856 fue creado. 189.186.93.117 ad802a94-c581-4e58-81ef-7070d212fe03 2019-10-25 17:16:54.228922 19216 856 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000856'\n 2 \N 189.186.93.117 ad802a94-c581-4e58-81ef-7070d212fe03 2019-10-25 17:16:54.256387 19217 1230 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 856\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.93.117 ad802a94-c581-4e58-81ef-7070d212fe03 2019-10-25 17:16:54.283097 19218 857 Product \N \N 4 User \N create ---\nsku: CHA-857\nname: S-0020\ndescription: "CHAMARRA TINTA LA COALITION PELUCHE GRIS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3243.jpg\ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-857 fue creado. 189.186.93.117 4129b2b1-5201-46ae-a11a-85a63c241a20 2019-10-25 17:17:53.010679 19219 857 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000857'\n 2 \N 189.186.93.117 4129b2b1-5201-46ae-a11a-85a63c241a20 2019-10-25 17:17:53.037465 19220 1231 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 857\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.93.117 4129b2b1-5201-46ae-a11a-85a63c241a20 2019-10-25 17:17:53.062732 19221 858 Product \N \N 4 User \N create ---\nsku: CHA-858\nname: S-0021\ndescription: "CHAMARRA TINTA LA COALITION PELUCHE TINTO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3244.jpg\ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-858 fue creado. 189.186.93.117 fbd329ea-9d0c-46f0-99e4-22b54c15e3a7 2019-10-25 17:18:33.751923 19222 858 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000858'\n 2 \N 189.186.93.117 fbd329ea-9d0c-46f0-99e4-22b54c15e3a7 2019-10-25 17:18:33.780988 19223 1232 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 858\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.93.117 fbd329ea-9d0c-46f0-99e4-22b54c15e3a7 2019-10-25 17:18:33.806152 19246 1234 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.93.117 f4740a24-5fa8-44d8-9335-a5d9f27d4955 2019-10-25 17:24:01.017262 19224 859 Product \N \N 4 User \N create ---\nsku: CHA-859\nname: S-0022\ndescription: "CAMARRA BLANCA LA COALITION PELUCHE GRIS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3248.jpg\ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-859 fue creado. 189.186.93.117 30626abd-1d81-4b4c-bef3-359c111333f5 2019-10-25 17:19:21.854133 19225 859 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000859'\n 2 \N 189.186.93.117 30626abd-1d81-4b4c-bef3-359c111333f5 2019-10-25 17:19:21.881018 19226 1233 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 859\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.93.117 30626abd-1d81-4b4c-bef3-359c111333f5 2019-10-25 17:19:21.90629 19227 860 Product \N \N 4 User \N create ---\nsku: CHA-860\nname: S-0001\ndescription: "SUETER THINKABLE BEIGE C/ CORALY VERDE\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3645E3\nprice_sale: !ruby/object:BigDecimal 18:0.729E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3245.jpg\ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-860 fue creado. 189.186.93.117 c08ac8dd-23dc-4c9c-854c-1233928181fa 2019-10-25 17:20:21.011199 19228 860 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000860'\n 2 \N 189.186.93.117 c08ac8dd-23dc-4c9c-854c-1233928181fa 2019-10-25 17:20:21.037571 19229 1234 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 860\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.93.117 c08ac8dd-23dc-4c9c-854c-1233928181fa 2019-10-25 17:20:21.060953 19230 861 Product \N \N 4 User \N create ---\nsku: CHA-861\nname: S-0014\ndescription: "SUETER THINKABLENEGRO CON PLATEADO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4145E3\nprice_sale: !ruby/object:BigDecimal 18:0.829E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3246.jpg\ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-861 fue creado. 189.186.93.117 951b5679-9a48-4480-bd2e-38b320e54961 2019-10-25 17:21:08.00148 19231 861 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000861'\n 2 \N 189.186.93.117 951b5679-9a48-4480-bd2e-38b320e54961 2019-10-25 17:21:08.027991 19232 1235 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 861\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.93.117 951b5679-9a48-4480-bd2e-38b320e54961 2019-10-25 17:21:08.052633 19233 862 Product \N \N 4 User \N create ---\nsku: SHO-862\nname: SHO-0020\ndescription: "SHORT DO+BE COLOR TINTO DE PIEL\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3995E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_3247.jpg\ncategory_id: 2\nproduct_service_key: '01010101'\n 1 El producto SHO-862 fue creado. 189.186.93.117 62591d60-bb9f-48b1-921b-4c48be9fa967 2019-10-25 17:22:31.071565 19234 862 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000862'\n 2 \N 189.186.93.117 62591d60-bb9f-48b1-921b-4c48be9fa967 2019-10-25 17:22:31.100237 19235 1236 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 862\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.93.117 62591d60-bb9f-48b1-921b-4c48be9fa967 2019-10-25 17:22:31.127244 19236 863 Product \N \N 4 User \N create ---\nsku: VES-863\nname: V-0062\ndescription: VESTIDO BUGAMBILIA DAYLIGTH UNA MANGA CON OLAN\nprice_base: !ruby/object:BigDecimal 18:0.4995E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-863 fue creado. 189.186.93.117 cc4983b8-fd67-42fb-97e4-c06b596c26d4 2019-10-25 17:23:55.141055 19237 863 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000863'\n 2 \N 189.186.93.117 cc4983b8-fd67-42fb-97e4-c06b596c26d4 2019-10-25 17:23:55.168052 19238 1237 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 863\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.93.117 cc4983b8-fd67-42fb-97e4-c06b596c26d4 2019-10-25 17:23:55.195039 19239 173 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-17\namount: !ruby/object:BigDecimal 18:0.14973E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.14973E5\nobservations: ''\npurchase_date: 2019-10-25\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-17 por $ 14973.0 MXN creada. 189.186.93.117 f4740a24-5fa8-44d8-9335-a5d9f27d4955 2019-10-25 17:24:00.827294 19240 1228 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.93.117 f4740a24-5fa8-44d8-9335-a5d9f27d4955 2019-10-25 17:24:00.853682 19241 1229 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.93.117 f4740a24-5fa8-44d8-9335-a5d9f27d4955 2019-10-25 17:24:00.880356 19242 1230 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.93.117 f4740a24-5fa8-44d8-9335-a5d9f27d4955 2019-10-25 17:24:00.906609 19243 1231 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.93.117 f4740a24-5fa8-44d8-9335-a5d9f27d4955 2019-10-25 17:24:00.93287 19244 1232 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.93.117 f4740a24-5fa8-44d8-9335-a5d9f27d4955 2019-10-25 17:24:00.960258 19245 1233 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.93.117 f4740a24-5fa8-44d8-9335-a5d9f27d4955 2019-10-25 17:24:00.985127 19249 1237 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.93.117 f4740a24-5fa8-44d8-9335-a5d9f27d4955 2019-10-25 17:24:01.094441 19250 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-25 16:31:04.529441000 Z\n- &1 2019-10-25 16:49:46.689764000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-25 18:09:26.721720318 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934290\n mask_addr: 4294967295\nsign_in_count:\n- 804\n- 805\n 1610 \N 200.68.135.82 f869d2ac-67e7-4caa-bc0c-46c8891088b4 2019-10-25 18:09:26.729589 19251 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dSNxiLVstgPNGKMjrkbe\n- zi3qaNyshpKQTXbB7PAp\n 1611 \N 200.68.135.82 f869d2ac-67e7-4caa-bc0c-46c8891088b4 2019-10-25 18:09:26.74538 19252 1298 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 529\namount: !ruby/object:BigDecimal 18:0.1129E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1129E4\nstatus: 0\ndate_sale: 2019-10-25\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-523\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 2a8d9bde-36a9-463d-9f6f-e23a51978c3f 2019-10-25 18:22:41.400843 19253 1088 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.42.159 2a8d9bde-36a9-463d-9f6f-e23a51978c3f 2019-10-25 18:22:41.429217 19254 1298 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 3ad5aa90-1a03-45df-907a-1d8224114c4b 2019-10-25 18:23:32.649286 19255 1806 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 529\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1129E4\nmove_type: '1'\nsale_id: 1298\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-523\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.71E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-523 187.149.42.159 3ad5aa90-1a03-45df-907a-1d8224114c4b 2019-10-25 18:23:32.673338 19256 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-23 19:22:32.267186000 Z\n- &1 2019-10-24 18:19:33.960586000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-25 21:14:56.899993552 Z\nsign_in_count:\n- 357\n- 358\n 719 \N 187.149.42.159 3e78b767-f3b4-4c93-8259-295ee6724887 2019-10-25 21:14:56.921257 19257 2 User \N \N 2 User \N update ---\nunique_session_id:\n- yqB3KpvVNRjGvnxtmZPB\n- 9RGJcVRkvcVYKWLyzfG4\n 720 \N 187.149.42.159 3e78b767-f3b4-4c93-8259-295ee6724887 2019-10-25 21:14:56.938909 19258 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-10-24 18:15:09.643076000 Z\n- &1 2019-10-24 21:24:21.811643000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-25 21:19:46.092821161 Z\nsign_in_count:\n- 7\n- 8\n 16 \N 187.149.42.159 fa241e8e-b338-4f91-9fba-09c54dc94055 2019-10-25 21:19:46.098067 19259 24 User \N \N 24 User \N update ---\nunique_session_id:\n- _vsC6vbaxmxRwc4daTzS\n- 1VKe1PW76n5rdSxzGLzS\n 17 \N 187.149.42.159 fa241e8e-b338-4f91-9fba-09c54dc94055 2019-10-25 21:19:46.109548 19260 1299 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 529\namount: !ruby/object:BigDecimal 18:0.759E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2019-10-25\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-524\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 b9d4b5ea-be8f-4877-aea5-911deff35439 2019-10-25 21:20:24.456817 19261 1092 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.42.159 b9d4b5ea-be8f-4877-aea5-911deff35439 2019-10-25 21:20:24.489646 19262 1299 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 c7820f4d-d56f-40a4-a2eb-bb80cdfa4e24 2019-10-25 21:20:30.706059 19263 1807 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 529\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.759E3\nmove_type: '1'\nsale_id: 1299\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-524\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.759E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-524 187.149.42.159 c7820f4d-d56f-40a4-a2eb-bb80cdfa4e24 2019-10-25 21:20:30.73493 19264 1300 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 528\namount: !ruby/object:BigDecimal 18:0.689E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.689E3\nstatus: 0\ndate_sale: 2019-10-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-687\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 1b008984-b6a8-4e03-9491-603a9ba7eba9 2019-10-25 21:22:28.810554 19265 1064 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.42.159 1b008984-b6a8-4e03-9491-603a9ba7eba9 2019-10-25 21:22:28.847421 19266 1300 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 cdf5f6e9-1a5a-47ea-8a71-f6d69fd1b58d 2019-10-25 21:22:33.731772 19267 1808 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 528\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.689E3\nmove_type: '1'\nsale_id: 1300\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-687\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.689E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-687 187.149.42.159 cdf5f6e9-1a5a-47ea-8a71-f6d69fd1b58d 2019-10-25 21:22:33.750668 19268 1301 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 528\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-10-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-688\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 958396bb-dca0-465b-b0de-8f5aca84ee90 2019-10-25 21:29:19.393089 19269 809 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.42.159 958396bb-dca0-465b-b0de-8f5aca84ee90 2019-10-25 21:29:19.416483 19270 1301 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 fb3cd998-d8ef-424d-9286-f99faa5a5304 2019-10-25 21:29:24.257473 19271 1809 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 528\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1301\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-688\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-688 187.149.42.159 fb3cd998-d8ef-424d-9286-f99faa5a5304 2019-10-25 21:29:24.276604 32124 2374 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.145.62 aab29eee-3bd2-40c9-ab93-e22cc1b9b1d3 2020-03-18 00:14:01.332372 19272 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-25 16:49:46.689764000 Z\n- &1 2019-10-25 18:09:26.721720000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-25 21:35:37.753548417 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934290\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934290\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\nsign_in_count:\n- 805\n- 806\n 1612 \N 189.186.93.117 0aad2b4c-ed1d-45b7-91b2-5272131ca420 2019-10-25 21:35:37.760762 19273 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zi3qaNyshpKQTXbB7PAp\n- UpFjWE2F9Cub_vWTpL9F\n 1613 \N 189.186.93.117 0aad2b4c-ed1d-45b7-91b2-5272131ca420 2019-10-25 21:35:37.778599 19274 835 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 189.186.93.117 832112e3-3106-4554-96f9-4f63113b9997 2019-10-25 21:36:37.905822 19275 835 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 189.186.93.117 0271e038-cc57-4e9f-a9e9-509869b28b29 2019-10-25 21:36:41.118436 19276 260 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-10-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.93.117 87b18db0-41b8-453f-8f1e-5c6d76073eca 2019-10-25 21:36:42.377512 19277 260 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-25\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.42.159 01d5a1c3-bfcf-422f-a52d-681008045936 2019-10-25 21:38:48.122301 19278 808 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 13 \N 187.149.42.159 01d5a1c3-bfcf-422f-a52d-681008045936 2019-10-25 21:38:48.139135 19279 1302 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 528\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-10-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-689\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 a4e6d366-9fa9-4db4-b84e-43821a176f59 2019-10-25 21:40:04.85546 19280 808 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 14 \N 187.149.42.159 a4e6d366-9fa9-4db4-b84e-43821a176f59 2019-10-25 21:40:04.88007 19281 1302 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 3f019d9f-887d-4adc-b32e-9425f5e33fb2 2019-10-25 21:40:25.506753 19282 1810 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 528\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1302\ncardnumber: 8559\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-689\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-689 187.149.42.159 3f019d9f-887d-4adc-b32e-9425f5e33fb2 2019-10-25 21:40:25.529684 19283 1303 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 528\namount: !ruby/object:BigDecimal 18:0.179E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.179E3\nstatus: 0\ndate_sale: 2019-10-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-690\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 d6330646-1c7d-4012-a24f-0998cf10f5a6 2019-10-25 21:46:44.074469 19284 1197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.42.159 d6330646-1c7d-4012-a24f-0998cf10f5a6 2019-10-25 21:46:44.100842 19285 1303 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 0b25d4a3-ed87-40fc-84ee-07cf19a4bfe2 2019-10-25 21:47:50.564398 19286 1811 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 528\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.179E3\nmove_type: '1'\nsale_id: 1303\ncardnumber: 8292\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-690\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-690 187.149.42.159 0b25d4a3-ed87-40fc-84ee-07cf19a4bfe2 2019-10-25 21:47:50.583159 19287 214 Customer \N \N 2 User \N create ---\nnick_name: ESTEPHANIA FIGUEROA\nphone: "(668) 822-2266"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ESTEPHANIA FIGUEROA fue registrado. 187.149.42.159 434d2ee7-2307-401f-8e70-0eff33fa4402 2019-10-25 21:50:15.243146 19288 1304 Sale \N \N 2 User \N create ---\ncustomer_id: 214\nuser_id: 2\nopen_cash_register_id: 528\namount: !ruby/object:BigDecimal 18:0.299E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.299E3\nstatus: 0\ndate_sale: 2019-10-25\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-691\nexpiration_date: 2019-11-29\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 e9ad500c-b369-4c39-aa22-3dfc598119ff 2019-10-25 21:50:32.186339 19289 1200 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.42.159 e9ad500c-b369-4c39-aa22-3dfc598119ff 2019-10-25 21:50:32.211211 19290 1812 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 528\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 1304\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-691\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-691 187.149.42.159 a5cdc74f-3b02-403a-b8a1-cb1862a91ab5 2019-10-25 21:50:46.734025 19291 1304 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.159 f141d3e7-c4af-47d4-8d67-8214c872159f 2019-10-25 21:50:50.397097 19292 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-25 18:09:26.721720000 Z\n- &1 2019-10-25 21:35:37.753548000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-25 21:56:25.983233464 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934290\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934290\n mask_addr: 4294967295\nsign_in_count:\n- 806\n- 807\n 1614 \N 200.68.135.82 eadedcf9-8d32-4d27-aa2f-6c18f43f6d98 2019-10-25 21:56:25.995336 19293 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UpFjWE2F9Cub_vWTpL9F\n- HSAbQ-mdgsyTznjrwTyy\n 1615 \N 200.68.135.82 eadedcf9-8d32-4d27-aa2f-6c18f43f6d98 2019-10-25 21:56:26.018753 19315 1064 AvailableProduct \N \N 2 User \N update ---\nprice_sale:\n- \n- !ruby/object:BigDecimal 18:0.599E3\n 3 \N 187.149.42.159 8529a05f-ea4c-4e1d-aec0-350996bc58a2 2019-10-26 01:37:19.795274 19294 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-10-17 16:52:08.002545000 Z\n- &1 2019-10-25 16:42:23.555203000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-25 21:57:05.330371480 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\nsign_in_count:\n- 33\n- 34\n 69 \N 189.186.93.117 eee732b9-1b52-405b-b54a-4af1006072be 2019-10-25 21:57:05.337185 19295 21 User \N \N 21 User \N update ---\nunique_session_id:\n- n1x8b7BqBKV5to2rHc1P\n- viq4CNdpjFAcmMgRuvj9\n 70 \N 189.186.93.117 eee732b9-1b52-405b-b54a-4af1006072be 2019-10-25 21:57:05.350199 19296 530 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1478E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1478.0 189.186.93.117 4ce0fa12-52d7-4f6f-bab6-95f45eb12d4e 2019-10-25 21:57:14.075031 19297 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-10-23 17:43:23.483547000 Z\n- &1 2019-10-24 00:00:21.869204000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-25 21:57:16.228738393 Z\nsign_in_count:\n- 95\n- 96\n 192 \N 187.149.42.159 6be52d99-3ce6-453b-ada8-98975cd59b97 2019-10-25 21:57:16.234461 19298 1 User \N \N 1 User \N update ---\nunique_session_id:\n- d7sqjX3zpmNzpf2aKykb\n- 4bofpquz3PgQy7x6HHpW\n 193 \N 187.149.42.159 6be52d99-3ce6-453b-ada8-98975cd59b97 2019-10-25 21:57:16.246092 19299 1813 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 530\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.449E3\nmove_type: '1'\nsale_id: 1168\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.449E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-49 189.186.93.117 ca230bb1-d747-4b61-b1c6-bea79edc1cfe 2019-10-25 21:57:42.80187 19300 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-25 21:35:37.753548000 Z\n- &1 2019-10-25 21:56:25.983233000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-26 00:22:37.062844289 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934290\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934290\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946256\n mask_addr: 4294967295\nsign_in_count:\n- 807\n- 808\n 1616 \N 200.68.182.16 e9c31992-920f-4780-937e-bbd7ef74d7a9 2019-10-26 00:22:37.072086 19301 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HSAbQ-mdgsyTznjrwTyy\n- H2zLhxZbbkpgRLFAqR3Q\n 1617 \N 200.68.182.16 e9c31992-920f-4780-937e-bbd7ef74d7a9 2019-10-26 00:22:37.095817 19302 215 Customer \N \N 2 User \N create ---\nnick_name: ROCIO VALLES\nphone: "(667) 209-7494"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ROCIO VALLES fue registrado. 187.149.42.159 b40b16a7-c6b4-4874-bf52-b785098a0180 2019-10-26 00:28:07.517246 19303 1305 Sale \N \N 2 User \N create ---\ncustomer_id: 215\nuser_id: 2\nopen_cash_register_id: 528\namount: !ruby/object:BigDecimal 18:0.839E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.839E3\nstatus: 0\ndate_sale: 2019-10-25\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-692\nexpiration_date: 2019-11-29\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 8d3d63fd-5011-4d29-a4d9-6cd6dc02fbae 2019-10-26 00:29:09.31176 19304 1024 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.42.159 8d3d63fd-5011-4d29-a4d9-6cd6dc02fbae 2019-10-26 00:29:09.340875 19305 1814 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 528\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1305\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-692\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-692 187.149.42.159 f9eac987-e20f-435e-b0ea-67f021c6db32 2019-10-26 00:29:18.475007 19306 1305 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.159 4c84d9d9-b464-40a7-a833-568aa37a047e 2019-10-26 00:29:21.034195 19307 1815 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 528\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.199E3\nmove_type: '1'\nsale_id: 1304\ncardnumber: 8292\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-691 187.149.42.159 4b0dce7d-f4ca-4a21-a593-987461103d83 2019-10-26 00:38:03.648746 19308 1304 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.42.159 510c529d-3372-4553-8875-4dc57b6a958c 2019-10-26 00:38:24.091645 19309 1306 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 530\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-10-25\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-88\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.93.117 0fa2d03f-d0a6-49ea-a52e-99f97a6c4b2c 2019-10-26 01:02:15.93875 19310 975 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.93.117 0fa2d03f-d0a6-49ea-a52e-99f97a6c4b2c 2019-10-26 01:02:15.973247 19311 1306 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.93.117 ee4de1d3-6b38-4821-a23d-bda2aeb443b7 2019-10-26 01:02:21.43463 19312 1816 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 530\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 1306\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-88\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-88 189.186.93.117 ee4de1d3-6b38-4821-a23d-bda2aeb443b7 2019-10-26 01:02:21.455471 19313 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-25 21:56:25.983233000 Z\n- &1 2019-10-26 00:22:37.062844000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-26 01:13:35.975327456 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934290\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946256\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946256\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111853\n mask_addr: 4294967295\nsign_in_count:\n- 808\n- 809\n 1618 \N 187.149.29.173 24816188-fe0d-44ea-a1fe-77cbdef70951 2019-10-26 01:13:36.008276 19314 4 User \N \N 4 User \N update ---\nunique_session_id:\n- H2zLhxZbbkpgRLFAqR3Q\n- Sspt3zV6y7Szparxsy-H\n 1619 \N 187.149.29.173 24816188-fe0d-44ea-a1fe-77cbdef70951 2019-10-26 01:13:36.038451 19317 1808 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 528\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.689E3\nmove_type: '1'\nsale_id: 1300\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-687\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.689E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.42.159 6ea49299-5dc0-480b-8362-279d2ada5967 2019-10-26 01:37:44.511317 19318 1064 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.42.159 6ea49299-5dc0-480b-8362-279d2ada5967 2019-10-26 01:37:44.545971 19319 1307 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 528\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-10-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-693\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 7ad58166-575f-45a5-a7c7-03d782004931 2019-10-26 01:37:59.941193 19320 1064 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.42.159 7ad58166-575f-45a5-a7c7-03d782004931 2019-10-26 01:37:59.968374 19321 1307 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 dfbed13e-a4c7-4fe7-97af-3c7c2070dcfa 2019-10-26 01:38:04.330834 19322 1817 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 528\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 1307\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-693\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-693 187.149.42.159 dfbed13e-a4c7-4fe7-97af-3c7c2070dcfa 2019-10-26 01:38:04.351277 19323 530 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 528\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2675E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.1225E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2725E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.159 956c8c51-401b-4e4f-a903-24f5cbe48f8c 2019-10-26 01:45:20.713933 19324 528 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 956c8c51-401b-4e4f-a903-24f5cbe48f8c 2019-10-26 01:45:20.728963 19325 531 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 529\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.1888E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.2026E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2726E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.42.159 f2def719-ef5d-4f6f-91cc-2185f9c3a2d7 2019-10-26 01:49:26.207622 19326 529 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 f2def719-ef5d-4f6f-91cc-2185f9c3a2d7 2019-10-26 01:49:26.221052 19327 532 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 530\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1848E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.1324E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3324E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.93.117 f5b748d6-d563-4e11-ba40-d7504395de95 2019-10-26 02:01:42.865988 19328 530 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.93.117 f5b748d6-d563-4e11-ba40-d7504395de95 2019-10-26 02:01:42.881342 19329 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-26 00:22:37.062844000 Z\n- &1 2019-10-26 01:13:35.975327000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-26 02:28:33.723888449 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946256\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111853\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111853\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946256\n mask_addr: 4294967295\nsign_in_count:\n- 809\n- 810\n 1620 \N 200.68.182.16 57abfa43-3977-4855-a840-5e27e15dd8b6 2019-10-26 02:28:33.758553 19330 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Sspt3zV6y7Szparxsy-H\n- Uk5DNoK5LpGf6okXG5zu\n 1621 \N 200.68.182.16 57abfa43-3977-4855-a840-5e27e15dd8b6 2019-10-26 02:28:33.786105 19331 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-23 16:10:37.471088000 Z\n- &1 2019-10-24 16:13:21.235126000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-26 16:01:56.438622720 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183128849\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\nsign_in_count:\n- 46\n- 47\n 94 \N 189.186.93.117 4bc0372c-9b2e-498b-9794-15b1289a899b 2019-10-26 16:01:56.466418 19332 23 User \N \N 23 User \N update ---\nunique_session_id:\n- G9-y82u2pnCsz-oPhi_v\n- UjghwxhFqLMz469nRp_L\n 95 \N 189.186.93.117 4bc0372c-9b2e-498b-9794-15b1289a899b 2019-10-26 16:01:56.485534 19333 531 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1324E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1324.0 189.186.93.117 c9ec70aa-11bf-4b74-a9c8-a93f5acb88f7 2019-10-26 16:03:23.580231 19334 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-26 01:13:35.975327000 Z\n- &1 2019-10-26 02:28:33.723888000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-26 17:02:48.383239370 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111853\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946256\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946256\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\nsign_in_count:\n- 810\n- 811\n 1622 \N 187.149.42.159 da1bc2c6-b1ee-46c3-878e-1aa506a9c465 2019-10-26 17:02:48.400746 19335 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Uk5DNoK5LpGf6okXG5zu\n- 2nBFYHxsXh8bZEALbjE8\n 1623 \N 187.149.42.159 da1bc2c6-b1ee-46c3-878e-1aa506a9c465 2019-10-26 17:02:48.425417 19336 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-24 18:19:33.960586000 Z\n- &1 2019-10-25 21:14:56.899993000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-26 17:14:56.504735597 Z\nsign_in_count:\n- 358\n- 359\n 721 \N 187.149.42.159 97acb9b6-db32-4012-83f7-ceab07aa3826 2019-10-26 17:14:56.510181 19337 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 9RGJcVRkvcVYKWLyzfG4\n- VeQ5sKHG1ZdbdGbqPXS6\n 722 \N 187.149.42.159 97acb9b6-db32-4012-83f7-ceab07aa3826 2019-10-26 17:14:56.523845 19338 532 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1225E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1225.0 187.149.42.159 e28e8870-cb85-4e39-bd9f-7bb65b3bc226 2019-10-26 17:31:17.594463 19339 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-10-20 16:44:10.556715000 Z\n- &1 2019-10-21 17:42:17.308948000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-26 19:23:40.727413744 Z\nsign_in_count:\n- 22\n- 23\n 46 \N 187.149.42.159 63f09658-ca2c-4802-98f7-276f042530b8 2019-10-26 19:23:40.733233 19340 25 User \N \N 25 User \N update ---\nunique_session_id:\n- QekzB3W5N1BWmvdx2zxT\n- uoyE_cAVRa7JQXxbJPw5\n 47 \N 187.149.42.159 63f09658-ca2c-4802-98f7-276f042530b8 2019-10-26 19:23:40.74591 19341 1308 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 532\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-10-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-694\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 93404d56-f399-462f-b3f1-665b4f10c8ea 2019-10-26 19:24:26.090557 19342 632 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.42.159 93404d56-f399-462f-b3f1-665b4f10c8ea 2019-10-26 19:24:26.12101 19343 1308 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 31ae8a3d-9e6b-44d6-8e08-c4fbbad4515b 2019-10-26 19:24:32.596821 19344 1818 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 532\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 1308\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-694\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-694 187.149.42.159 31ae8a3d-9e6b-44d6-8e08-c4fbbad4515b 2019-10-26 19:24:32.620665 19345 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-10-24 23:07:01.960345000 Z\n- &1 2019-10-25 16:30:57.897937000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-26 19:42:04.500097989 Z\nsign_in_count:\n- 6\n- 7\n 14 \N 187.149.42.159 432d9e48-594c-490c-8ca8-e3fc225e3815 2019-10-26 19:42:04.505422 19346 27 User \N \N 27 User \N update ---\nunique_session_id:\n- pAGtEBmaZoz2NkxSsJE4\n- pRLmQsnmkjAv2LjQ7QGA\n 15 \N 187.149.42.159 432d9e48-594c-490c-8ca8-e3fc225e3815 2019-10-26 19:42:04.516443 19347 533 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.2026E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 2026.0 187.149.42.159 8dcf983b-fec4-407e-8a33-dc529f89f34f 2019-10-26 20:02:32.148074 19348 202 Expense \N \N 27 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 533\nquantity: !ruby/object:BigDecimal 18:0.97E3\nstatus: 1\nobservations: 'SUELDO KEYLA '\nexpense_date: 2019-10-26\nexpense_code: PV2-E-45\n 1 Egreso por 970.0 registrado 187.149.42.159 976241dd-4d90-43ea-a09c-b931747dd3a1 2019-10-26 20:03:22.750961 19349 1819 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 533\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.97E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 202\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.42.159 976241dd-4d90-43ea-a09c-b931747dd3a1 2019-10-26 20:03:22.769566 19350 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-26 02:28:33.723888000 Z\n- &1 2019-10-26 17:02:48.383239000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-26 20:09:43.429962025 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946256\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938323\n mask_addr: 4294967295\nsign_in_count:\n- 811\n- 812\n 1624 \N 200.68.151.19 239f5476-63d8-4203-a418-d4a4a87d9c67 2019-10-26 20:09:43.437526 19351 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2nBFYHxsXh8bZEALbjE8\n- ZzMsFtD_hTECnVc_nx71\n 1625 \N 200.68.151.19 239f5476-63d8-4203-a418-d4a4a87d9c67 2019-10-26 20:09:43.453744 19352 203 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 532\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nstatus: 1\nobservations: sueldo rocio\nexpense_date: 2019-10-26\nexpense_code: PV1-E-153\n 1 Egreso por 1328.0 registrado 187.149.42.159 7ab3c58a-9429-4841-a6d4-970caab86cc7 2019-10-26 21:55:44.061456 19353 1820 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 532\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 203\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.42.159 7ab3c58a-9429-4841-a6d4-970caab86cc7 2019-10-26 21:55:44.09383 19354 1821 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 531\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.75E3\nmove_type: '1'\nsale_id: 1178\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.75E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-52 189.186.93.117 4411ac3f-7d4a-47b0-89ee-effe9b82654d 2019-10-26 21:59:26.332895 19355 1178 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.93.117 086d2570-a3da-46f7-bcf1-a4ada27a4c02 2019-10-26 21:59:33.659719 19356 1822 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 136\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 381\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.42.159 8a3d9167-9261-4d16-a476-22ed87cca2a8 2019-10-26 22:08:49.079095 19357 381 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.42.159 8a3d9167-9261-4d16-a476-22ed87cca2a8 2019-10-26 22:08:49.1144 19358 1095 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.159 8a3d9167-9261-4d16-a476-22ed87cca2a8 2019-10-26 22:08:49.133855 19359 1822 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 136\n- 532\n 2 movimiento de efectivo por venta con folio PV1-V-200 187.149.42.159 8a3d9167-9261-4d16-a476-22ed87cca2a8 2019-10-26 22:08:49.144413 19360 1309 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 531\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-10-26\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-89\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.93.117 5ba75584-3b45-4d82-9046-77329ab97e64 2019-10-26 22:21:57.421649 19361 1133 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.93.117 5ba75584-3b45-4d82-9046-77329ab97e64 2019-10-26 22:21:57.446488 19363 1823 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 531\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 1309\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-89\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.55E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-89 189.186.93.117 5230e208-d6fb-4966-89eb-a110d384399d 2019-10-26 22:22:01.775379 19364 1824 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 531\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1243\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-72 189.186.93.117 f5789515-74bf-4f44-8fbf-678a6ec65bb2 2019-10-26 22:32:20.394661 19365 1243 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.93.117 a9e6ebcd-d7bc-40ca-8e90-bb8a01ea0b49 2019-10-26 22:32:21.980221 19366 1310 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 532\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2019-10-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-695\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 f7e3ef68-2145-44ee-965e-0dbddfd9ca05 2019-10-26 23:03:31.6119 19367 1157 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.42.159 f7e3ef68-2145-44ee-965e-0dbddfd9ca05 2019-10-26 23:03:31.644631 19368 1310 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 59206e47-238b-45a1-86b6-1a862cca76f2 2019-10-26 23:05:15.307894 19369 1825 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 532\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.869E3\nmove_type: '1'\nsale_id: 1310\ncardnumber: 9847\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-695\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-695 187.149.42.159 59206e47-238b-45a1-86b6-1a862cca76f2 2019-10-26 23:05:15.330776 19370 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-26 17:02:48.383239000 Z\n- &1 2019-10-26 20:09:43.429962000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-27 00:11:28.372233049 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938323\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938323\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111853\n mask_addr: 4294967295\nsign_in_count:\n- 812\n- 813\n 1626 \N 187.149.29.173 557fd0f6-9fdd-4957-af74-ead9e4fe34eb 2019-10-27 00:11:28.38192 19371 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZzMsFtD_hTECnVc_nx71\n- umhL9rJG9xvPDMzQCYgs\n 1627 \N 187.149.29.173 557fd0f6-9fdd-4957-af74-ead9e4fe34eb 2019-10-27 00:11:28.397872 19372 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-26 20:09:43.429962000 Z\n- &1 2019-10-27 00:11:28.372233000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-27 00:11:28.657254963 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938323\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111853\n mask_addr: 4294967295\nsign_in_count:\n- 813\n- 814\n 1628 \N 187.149.29.173 356e823e-df9a-4c54-b994-81fe1d485e0f 2019-10-27 00:11:28.663602 19373 4 User \N \N 4 User \N update ---\nunique_session_id:\n- umhL9rJG9xvPDMzQCYgs\n- nHX9GmMGiskozEdK2Nyx\n 1629 \N 187.149.29.173 356e823e-df9a-4c54-b994-81fe1d485e0f 2019-10-27 00:11:28.67736 19374 216 Customer \N \N 2 User \N create ---\nnick_name: carmen rojo\nphone: "(667) 208-8520"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente carmen rojo fue registrado. 187.149.42.159 54a98e69-455a-4918-a56e-0dd8d4d66c22 2019-10-27 00:29:46.640899 19375 1311 Sale \N \N 2 User \N create ---\ncustomer_id: 216\nuser_id: 2\nopen_cash_register_id: 532\namount: !ruby/object:BigDecimal 18:0.1518E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1518E4\nstatus: 0\ndate_sale: 2019-10-26\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-696\nexpiration_date: 2019-11-30\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 bce6db97-e677-4ad5-957c-6918ab67b85d 2019-10-27 00:36:10.733695 19376 1160 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.42.159 bce6db97-e677-4ad5-957c-6918ab67b85d 2019-10-27 00:36:10.768339 19377 1097 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.42.159 bce6db97-e677-4ad5-957c-6918ab67b85d 2019-10-27 00:36:10.795747 19378 1826 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 532\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 1311\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-696\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-696 187.149.42.159 d4c4e31e-6815-44c4-b0ee-52ac6503e6ee 2019-10-27 00:36:18.99324 19379 1311 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.159 ad26bb67-4360-4f5d-9b4d-0f0b94df2378 2019-10-27 00:36:27.430609 19380 1312 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 532\namount: !ruby/object:BigDecimal 18:0.99E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.99E2\nstatus: 0\ndate_sale: 2019-10-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-697\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 4fed814d-6850-4193-9011-8ce2447b79d0 2019-10-27 00:38:28.297838 19381 1207 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.42.159 4fed814d-6850-4193-9011-8ce2447b79d0 2019-10-27 00:38:28.322361 19382 1312 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 ed437468-7c9f-4e87-b9e2-a77b5b3f1410 2019-10-27 00:38:40.93656 19383 1827 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 532\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.99E2\nmove_type: '1'\nsale_id: 1312\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-697\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.99E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-697 187.149.42.159 ed437468-7c9f-4e87-b9e2-a77b5b3f1410 2019-10-27 00:38:40.958455 19384 1828 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 531\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1168\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.1E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-49 189.186.93.117 6c4c26dc-fa4a-4834-b915-14e89fb71bc5 2019-10-27 00:39:30.258575 19385 1168 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.93.117 b72766dc-05b0-4de8-870c-f072a4b2a535 2019-10-27 00:39:31.878789 19386 533 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 533\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.97E3\nreceived_by_id: 27\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1056E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1056E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.42.159 d673192c-8b7b-4494-917a-231a0f381eee 2019-10-27 01:32:28.778379 19387 533 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 d673192c-8b7b-4494-917a-231a0f381eee 2019-10-27 01:32:28.799539 19388 534 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 532\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2667E4\namount_out: !ruby/object:BigDecimal 18:0.1328E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.695E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1695E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.159 8f1e5006-98ad-4439-9a8f-8eb001a8d86f 2019-10-27 01:46:01.346131 19389 532 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 8f1e5006-98ad-4439-9a8f-8eb001a8d86f 2019-10-27 01:46:01.363568 19390 535 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 531\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.2698E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.27E4\ncash_fund: !ruby/object:BigDecimal 18:0.1322E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4022E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.93.117 483b63d8-0384-48ac-a2ce-0e3c3be7274f 2019-10-27 01:56:59.221184 19391 531 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.93.117 483b63d8-0384-48ac-a2ce-0e3c3be7274f 2019-10-27 01:56:59.255625 19392 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-24 16:13:21.235126000 Z\n- &1 2019-10-26 16:01:56.438622000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-27 17:05:25.612448746 Z\nsign_in_count:\n- 47\n- 48\n 96 \N 189.186.93.117 4167d3a1-d15d-4012-be98-97abe939e25c 2019-10-27 17:05:25.641952 19393 23 User \N \N 23 User \N update ---\nunique_session_id:\n- UjghwxhFqLMz469nRp_L\n- xjGjbRfRdtNSTtLqEjNc\n 97 \N 189.186.93.117 4167d3a1-d15d-4012-be98-97abe939e25c 2019-10-27 17:05:25.661291 19394 534 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1322E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1322.0 189.186.93.117 87995e96-064d-4382-9e63-bca7d552e59e 2019-10-27 17:05:46.35056 19395 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-10-21 17:42:17.308948000 Z\n- &1 2019-10-26 19:23:40.727413000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-27 19:27:49.658375301 Z\nsign_in_count:\n- 23\n- 24\n 48 \N 187.149.42.159 ca7d1673-d2dc-45cb-bbc9-3dcde38716db 2019-10-27 19:27:49.677772 19396 25 User \N \N 25 User \N update ---\nunique_session_id:\n- uoyE_cAVRa7JQXxbJPw5\n- DheJjDu8_m7891iytjjv\n 49 \N 187.149.42.159 ca7d1673-d2dc-45cb-bbc9-3dcde38716db 2019-10-27 19:27:49.698676 19397 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-10-21 20:41:50.432432000 Z\n- &1 2019-10-24 19:33:19.246274000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-27 19:39:27.146614408 Z\nsign_in_count:\n- 6\n- 7\n 14 \N 187.149.42.159 733c8aea-74df-45bc-a050-0b3b4f9eb3f2 2019-10-27 19:39:27.152128 19398 26 User \N \N 26 User \N update ---\nunique_session_id:\n- xtLYEgxJEL7RV_91NxXJ\n- Kqkfrro8M5WTEN-g9zJz\n 15 \N 187.149.42.159 733c8aea-74df-45bc-a050-0b3b4f9eb3f2 2019-10-27 19:39:27.163188 19399 535 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.1056E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1056.0 187.149.42.159 a9f878e1-fbb9-4cad-a332-869caf572148 2019-10-27 19:39:48.838794 19400 1313 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 535\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2019-10-27\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-525\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 2b205a11-6f49-4776-a43b-ec0af0495a19 2019-10-27 19:40:16.430403 19401 367 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.36E2\n- !ruby/object:BigDecimal 18:0.35E2\n 21 \N 187.149.42.159 2b205a11-6f49-4776-a43b-ec0af0495a19 2019-10-27 19:40:16.471236 19402 1313 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 f8621853-43b8-4c6c-bf8b-7f5b38032186 2019-10-27 19:40:21.206736 19403 1829 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 535\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 1313\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-525\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E2\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-525 187.149.42.159 f8621853-43b8-4c6c-bf8b-7f5b38032186 2019-10-27 19:40:21.231989 19404 1314 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 535\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-10-27\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-526\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 2a6404cc-9646-455a-a95e-1df9ae8b4b57 2019-10-27 19:44:28.698237 19405 804 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.42.159 2a6404cc-9646-455a-a95e-1df9ae8b4b57 2019-10-27 19:44:28.724246 19406 1314 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 48c5eedc-25de-407e-9050-55fce7ae0bdb 2019-10-27 19:45:08.900825 19407 1830 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 535\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.649E3\nmove_type: '1'\nsale_id: 1314\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-526\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.65E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-526 187.149.42.159 48c5eedc-25de-407e-9050-55fce7ae0bdb 2019-10-27 19:45:08.926614 19408 1315 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 535\namount: !ruby/object:BigDecimal 18:0.69224E3\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.675E3\nstatus: 0\ndate_sale: 2019-10-27\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-527\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 6b134c92-d133-482b-b77f-ae221686cc81 2019-10-27 19:47:36.595605 19409 1212 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.42.159 6b134c92-d133-482b-b77f-ae221686cc81 2019-10-27 19:47:36.619079 19410 365 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.47E2\n- !ruby/object:BigDecimal 18:0.45E2\n 21 \N 187.149.42.159 6b134c92-d133-482b-b77f-ae221686cc81 2019-10-27 19:47:36.642652 19411 1315 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 24d2cc71-1d43-44d4-88f4-799ecac4445b 2019-10-27 19:47:44.546502 19412 1831 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 535\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.675E3\nmove_type: '1'\nsale_id: 1315\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-527\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.25E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-527 187.149.42.159 24d2cc71-1d43-44d4-88f4-799ecac4445b 2019-10-27 19:47:44.566191 19413 1316 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 535\namount: !ruby/object:BigDecimal 18:0.839E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.839E3\nstatus: 0\ndate_sale: 2019-10-27\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-528\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 86b8086e-fb07-4d97-b440-6b75cc7c52ad 2019-10-27 20:07:41.659951 19414 1100 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.42.159 86b8086e-fb07-4d97-b440-6b75cc7c52ad 2019-10-27 20:07:41.686514 19415 1316 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 995abf3b-dda9-45fa-b704-e3aaafbab9aa 2019-10-27 20:08:00.209434 19416 1832 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 535\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.839E3\nmove_type: '1'\nsale_id: 1316\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-528\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.61E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-528 187.149.42.159 995abf3b-dda9-45fa-b704-e3aaafbab9aa 2019-10-27 20:08:00.23421 19417 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-10-24 19:33:19.246274000 Z\n- &1 2019-10-27 19:39:27.146614000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-27 20:39:06.698635185 Z\nsign_in_count:\n- 7\n- 8\n 16 \N 187.149.42.159 02d466b5-d741-46ed-b5dd-954aac773c5f 2019-10-27 20:39:06.724086 19418 26 User \N \N 26 User \N update ---\nunique_session_id:\n- Kqkfrro8M5WTEN-g9zJz\n- _Kt2x5z4FHQXUZB-nhPB\n 17 \N 187.149.42.159 02d466b5-d741-46ed-b5dd-954aac773c5f 2019-10-27 20:39:06.74223 19419 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-27 00:11:28.372233000 Z\n- &1 2019-10-27 00:11:28.657254000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-27 20:39:15.819831667 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111853\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938515\n mask_addr: 4294967295\nsign_in_count:\n- 814\n- 815\n 1630 \N 200.68.151.211 125333fc-1fbd-4f0c-81e1-3a4dfe0a0259 2019-10-27 20:39:15.826183 19420 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nHX9GmMGiskozEdK2Nyx\n- _o_jF1AyRxFGX2UUYYCs\n 1631 \N 200.68.151.211 125333fc-1fbd-4f0c-81e1-3a4dfe0a0259 2019-10-27 20:39:15.842007 19421 1317 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 535\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2019-10-27\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-529\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 89e363ad-4e59-4580-b12e-e897962afd92 2019-10-27 20:39:30.395548 19422 860 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.42.159 89e363ad-4e59-4580-b12e-e897962afd92 2019-10-27 20:39:30.4247 19423 1317 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 73aea43e-6b7c-4b09-af59-11cafbee21fa 2019-10-27 20:39:34.242351 19424 1833 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 535\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.789E3\nmove_type: '1'\nsale_id: 1317\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-529\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-529 187.149.42.159 73aea43e-6b7c-4b09-af59-11cafbee21fa 2019-10-27 20:39:34.263029 19425 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-10-27 19:39:27.146614000 Z\n- &1 2019-10-27 20:39:06.698635000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-27 22:02:32.994714578 Z\nsign_in_count:\n- 8\n- 9\n 18 \N 187.149.42.159 dd210d50-d053-4190-b468-5d4997cc3c41 2019-10-27 22:02:33.024667 19426 26 User \N \N 26 User \N update ---\nunique_session_id:\n- _Kt2x5z4FHQXUZB-nhPB\n- LWC6T_cHsZ5BGu8iQ3Tk\n 19 \N 187.149.42.159 dd210d50-d053-4190-b468-5d4997cc3c41 2019-10-27 22:02:33.044032 19427 536 CashOut \N \N 26 User \N create ---\nopen_cash_register_id: 535\nuser_id: 26\namount_in: !ruby/object:BigDecimal 18:0.3001E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.1057E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4057E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.42.159 624514b1-2fa5-4893-8a4f-585890252a36 2019-10-27 22:09:22.368541 19428 535 OpenCashRegister \N \N 26 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.159 624514b1-2fa5-4893-8a4f-585890252a36 2019-10-27 22:09:22.382772 19429 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-27 00:11:28.657254000 Z\n- &1 2019-10-27 20:39:15.819831000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-28 02:24:45.036451522 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111853\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938515\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938515\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938099\n mask_addr: 4294967295\nsign_in_count:\n- 815\n- 816\n 1632 \N 200.68.150.51 677f2ccb-4dd5-4977-ba61-ec418f1f3416 2019-10-28 02:24:45.060904 19430 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _o_jF1AyRxFGX2UUYYCs\n- FLF9Bbzpr8jJ3GKgcyCi\n 1633 \N 200.68.150.51 677f2ccb-4dd5-4977-ba61-ec418f1f3416 2019-10-28 02:24:45.087507 19431 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-27 20:39:15.819831000 Z\n- &1 2019-10-28 02:24:45.036451000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-28 02:25:24.723149778 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938515\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938099\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938099\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938055\n mask_addr: 4294967295\nsign_in_count:\n- 816\n- 817\n 1634 \N 200.68.150.7 68e09ea6-8fab-4906-a6c8-c0a54b8a99a0 2019-10-28 02:25:24.73066 19432 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FLF9Bbzpr8jJ3GKgcyCi\n- ryWkTFz5zy6mN6trLYt1\n 1635 \N 200.68.150.7 68e09ea6-8fab-4906-a6c8-c0a54b8a99a0 2019-10-28 02:25:24.748488 19433 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-10-25 16:30:57.897937000 Z\n- &1 2019-10-26 19:42:04.500097000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-28 17:12:05.946813313 Z\nsign_in_count:\n- 7\n- 8\n 16 \N 187.149.42.159 713fcc28-9f47-4e75-91cd-59ec29250b58 2019-10-28 17:12:05.982022 19434 27 User \N \N 27 User \N update ---\nunique_session_id:\n- pRLmQsnmkjAv2LjQ7QGA\n- LsYa5jJarXuELF__qAM_\n 17 \N 187.149.42.159 713fcc28-9f47-4e75-91cd-59ec29250b58 2019-10-28 17:12:06.004222 19435 536 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1057E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1057.0 187.149.42.159 47a1a8b8-6078-47d9-b014-3593794a5219 2019-10-28 17:26:32.236757 19436 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-28 02:24:45.036451000 Z\n- &1 2019-10-28 02:25:24.723149000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-28 18:19:19.344438345 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938099\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938055\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938055\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\nsign_in_count:\n- 817\n- 818\n 1636 \N 189.186.93.117 8d3b5683-e091-4a19-912d-8a5326463a6b 2019-10-28 18:19:19.354013 19437 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ryWkTFz5zy6mN6trLYt1\n- gHGx8tSxYEcsfwRzQaMb\n 1637 \N 189.186.93.117 8d3b5683-e091-4a19-912d-8a5326463a6b 2019-10-28 18:19:19.381027 19438 864 Product \N \N 4 User \N create ---\nsku: BOL-864\nname: 1BLCI19304\ndescription: CANGURERA CHICA NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.5995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170766578'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: BCAL304_NEGR_1_828x1200.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-864 fue creado. 189.186.93.117 cf52aaf8-edd5-4775-9682-c3e60dbf0b8b 2019-10-28 18:23:44.947251 19439 174 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: \npurchase_code: CEN-C-16\namount: !ruby/object:BigDecimal 18:0.29975E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.29975E4\nobservations: ''\npurchase_date: 2019-10-28\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-16 por $ 2997.5 MXN creada. 189.186.93.117 140ad373-f673-4580-9b50-1f9679284c47 2019-10-28 18:23:51.997835 19440 261 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-10-28\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 189.186.93.117 b34181d5-492c-45bb-97a2-ef3087f9ffd7 2019-10-28 18:24:20.326261 19441 262 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-10-28\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.93.117 4f407475-a2dd-4246-ae4d-c6acd2aaffe1 2019-10-28 18:24:41.964782 19442 263 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-10-28\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.93.117 1ab50a37-d255-41d7-b779-a9a27695e851 2019-10-28 18:25:06.688685 19443 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-10-26 19:23:40.727413000 Z\n- &1 2019-10-27 19:27:49.658375000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-28 18:25:43.731052011 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\nsign_in_count:\n- 24\n- 25\n 50 \N 189.186.93.117 77bee0b2-6d19-4cae-8039-bec669160d5a 2019-10-28 18:25:43.739081 19444 25 User \N \N 25 User \N update ---\nunique_session_id:\n- DheJjDu8_m7891iytjjv\n- vrsBszDycjysv5x7omBq\n 51 \N 189.186.93.117 77bee0b2-6d19-4cae-8039-bec669160d5a 2019-10-28 18:25:43.754947 19445 262 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-28\n 2 Se dio entrada a traspaso de Almacen central a SUO 189.186.93.117 c192f134-6972-46a8-9a9e-79a1ee7b972c 2019-10-28 18:25:54.300923 19446 1238 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 864\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.93.117 c192f134-6972-46a8-9a9e-79a1ee7b972c 2019-10-28 18:25:54.324442 19447 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-10-27 20:39:06.698635000 Z\n- &1 2019-10-27 22:02:32.994714000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-28 18:26:07.912176226 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\nsign_in_count:\n- 9\n- 10\n 20 \N 189.186.93.117 bf0af9dc-8313-4c00-bb7a-6f2626c003be 2019-10-28 18:26:07.918854 19448 26 User \N \N 26 User \N update ---\nunique_session_id:\n- LWC6T_cHsZ5BGu8iQ3Tk\n- vcrd1BqB4J1nLNxBFjgs\n 21 \N 189.186.93.117 bf0af9dc-8313-4c00-bb7a-6f2626c003be 2019-10-28 18:26:07.933318 19449 261 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-28\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 189.186.93.117 1f6dbafa-690d-4c6b-be2c-ed97691592f8 2019-10-28 18:26:20.172201 19450 1239 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 864\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.93.117 1f6dbafa-690d-4c6b-be2c-ed97691592f8 2019-10-28 18:26:20.193157 19451 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-10-25 16:42:23.555203000 Z\n- &1 2019-10-25 21:57:05.330371000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-28 18:26:55.713117028 Z\nsign_in_count:\n- 34\n- 35\n 71 \N 189.186.93.117 98c83b03-780e-4878-9617-c88bc17fb0c9 2019-10-28 18:26:55.718802 19452 21 User \N \N 21 User \N update ---\nunique_session_id:\n- viq4CNdpjFAcmMgRuvj9\n- "--yQwG4_9Rgmi9hooDEx"\n 72 \N 189.186.93.117 98c83b03-780e-4878-9617-c88bc17fb0c9 2019-10-28 18:26:55.733118 19453 263 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-28\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.93.117 f7c77d03-0fbf-4108-bf1a-b9e09d6d07b6 2019-10-28 18:27:05.506436 19454 1240 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 864\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.93.117 f7c77d03-0fbf-4108-bf1a-b9e09d6d07b6 2019-10-28 18:27:05.535215 19455 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-25 21:14:56.899993000 Z\n- &1 2019-10-26 17:14:56.504735000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-28 18:46:16.777608472 Z\nsign_in_count:\n- 359\n- 360\n 723 \N 187.149.42.159 9c4a76a7-7913-48cc-9bb7-65f27dee25bf 2019-10-28 18:46:16.786846 19456 2 User \N \N 2 User \N update ---\nunique_session_id:\n- VeQ5sKHG1ZdbdGbqPXS6\n- pf7cjcxs83mWx9qt7UxP\n 724 \N 187.149.42.159 9c4a76a7-7913-48cc-9bb7-65f27dee25bf 2019-10-28 18:46:16.804774 19457 537 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.695E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 695.0 187.149.42.159 ad84feaf-4f59-4b94-a431-ebc315a7ccd7 2019-10-28 18:46:32.961839 19458 1318 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 537\namount: !ruby/object:BigDecimal 18:0.137845E4\ntax: !ruby/object:BigDecimal 18:0.22055E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-10-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-698\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.159 0d5677af-b5d0-49c8-8996-f58de982bb40 2019-10-28 18:47:17.998607 19459 271 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.42.159 0d5677af-b5d0-49c8-8996-f58de982bb40 2019-10-28 18:47:18.032129 19460 1318 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.159 484416c9-e379-4a99-bd05-7ae1655eb3a3 2019-10-28 18:47:22.675976 19461 1834 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 537\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 1318\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-698\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-698 187.149.42.159 484416c9-e379-4a99-bd05-7ae1655eb3a3 2019-10-28 18:47:22.700334 19462 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-10-26 19:42:04.500097000 Z\n- &1 2019-10-28 17:12:05.946813000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-28 20:06:23.148466630 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\nsign_in_count:\n- 8\n- 9\n 18 \N 187.149.45.220 f104f512-d00b-4d08-b524-7d67b0777a97 2019-10-28 20:06:23.159221 19463 27 User \N \N 27 User \N update ---\nunique_session_id:\n- LsYa5jJarXuELF__qAM_\n- JW1GGJV_jxSFxry-AmyU\n 19 \N 187.149.45.220 f104f512-d00b-4d08-b524-7d67b0777a97 2019-10-28 20:06:23.177548 19464 1319 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 536\namount: !ruby/object:BigDecimal 18:0.1548E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1548E4\nstatus: 0\ndate_sale: 2019-10-28\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-530\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.45.220 6b845fe3-0378-4173-9ec0-a65dd3d051e6 2019-10-28 20:44:53.763281 19465 860 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.45.220 6b845fe3-0378-4173-9ec0-a65dd3d051e6 2019-10-28 20:44:53.795225 19466 1092 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.45.220 6b845fe3-0378-4173-9ec0-a65dd3d051e6 2019-10-28 20:44:53.821224 19467 1319 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.45.220 e3c1d657-609a-45a8-854a-372f0f2695e5 2019-10-28 20:45:50.47743 19468 1835 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 536\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1548E4\nmove_type: '1'\nsale_id: 1319\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-530\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.17E4\nchange: !ruby/object:BigDecimal 18:0.152E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-530 187.149.45.220 e3c1d657-609a-45a8-854a-372f0f2695e5 2019-10-28 20:45:50.553733 19469 1320 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 537\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-10-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-699\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.45.220 33c7ad3e-6d7a-4070-ba61-6a13c0d5a3bc 2019-10-28 21:01:33.573094 19470 1155 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.45.220 33c7ad3e-6d7a-4070-ba61-6a13c0d5a3bc 2019-10-28 21:01:33.603276 19471 1320 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.45.220 33c18ee3-f6c9-48b4-9c51-2b18fa4bc575 2019-10-28 21:02:08.470199 19472 1836 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 537\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 1320\ncardnumber: 243\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-699\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-699 187.149.45.220 33c18ee3-f6c9-48b4-9c51-2b18fa4bc575 2019-10-28 21:02:08.499433 19473 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-28 02:25:24.723149000 Z\n- &1 2019-10-28 18:19:19.344438000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-28 21:05:40.510487600 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938055\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\nsign_in_count:\n- 818\n- 819\n 1638 \N 189.186.180.166 a558f566-06c2-4ab0-99dd-8758342b0f1e 2019-10-28 21:05:40.518754 19474 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gHGx8tSxYEcsfwRzQaMb\n- ncv4iN5_Hoc6MbWpA_UX\n 1639 \N 189.186.180.166 a558f566-06c2-4ab0-99dd-8758342b0f1e 2019-10-28 21:05:40.537991 19475 769 Product \N \N 4 User \N update ---\nsku:\n- BLU-769\n- CHA-865\ncategory_id:\n- 7\n- 24\n 3 El producto BLU-769 fue modificado. 189.186.180.166 e1413de9-f8f1-4770-80ea-dc973a8aebc8 2019-10-28 21:33:20.90428 19476 765 Product \N \N 4 User \N update ---\nsku:\n- BLU-765\n- CHA-865\ncategory_id:\n- 7\n- 24\n 3 El producto BLU-765 fue modificado. 189.186.180.166 de776421-2632-4177-9e9c-aa1c1eb8f53b 2019-10-28 21:33:34.49711 19477 766 Product \N \N 4 User \N update ---\nsku:\n- BLU-766\n- CHA-865\ncategory_id:\n- 7\n- 24\n 3 El producto BLU-766 fue modificado. 189.186.180.166 960077cb-d2e0-4abe-a49f-44e10480313e 2019-10-28 21:33:48.951754 19478 783 Product \N \N 4 User \N update ---\nsku:\n- BLU-783\n- CHA-865\ncategory_id:\n- 7\n- 24\n 4 El producto BLU-783 fue modificado. 189.186.180.166 7e30306e-ab70-43ce-bbd7-313fdf382a59 2019-10-28 21:34:03.196429 19479 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-28 18:19:19.344438000 Z\n- &1 2019-10-28 21:05:40.510487000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-28 21:59:48.524672874 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946025\n mask_addr: 4294967295\nsign_in_count:\n- 819\n- 820\n 1640 \N 200.68.181.41 3780b4e3-ae62-48db-9363-64f7b04adea2 2019-10-28 21:59:48.531879 19480 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ncv4iN5_Hoc6MbWpA_UX\n- HrsT9HwsdAyEZRM7r2ze\n 1641 \N 200.68.181.41 3780b4e3-ae62-48db-9363-64f7b04adea2 2019-10-28 21:59:48.547246 19481 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-10-25 21:57:05.330371000 Z\n- &1 2019-10-28 18:26:55.713117000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-28 22:39:30.167901003 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\nsign_in_count:\n- 35\n- 36\n 73 \N 189.186.180.166 d8e2eae5-a7dd-44aa-8cd4-82109144dc43 2019-10-28 22:39:30.175108 19482 21 User \N \N 21 User \N update ---\nunique_session_id:\n- "--yQwG4_9Rgmi9hooDEx"\n- vfMXUJzP47cH795CwMQs\n 74 \N 189.186.180.166 d8e2eae5-a7dd-44aa-8cd4-82109144dc43 2019-10-28 22:39:30.200285 19483 1321 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 534\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-10-28\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-90\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.180.166 201c30dc-58b1-4dd5-91e2-96f324bed56b 2019-10-28 22:39:58.455104 19484 887 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.180.166 201c30dc-58b1-4dd5-91e2-96f324bed56b 2019-10-28 22:39:58.484488 19485 1321 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.180.166 58631f05-6685-45b2-8f49-ba6514fbe10f 2019-10-28 22:40:43.392362 19486 1837 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 534\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 1321\ncardnumber: 1293\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-90\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-90 189.186.180.166 58631f05-6685-45b2-8f49-ba6514fbe10f 2019-10-28 22:40:43.415061 19487 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-28 21:05:40.510487000 Z\n- &1 2019-10-28 21:59:48.524672000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-28 22:44:26.046479087 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946025\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946025\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\nsign_in_count:\n- 820\n- 821\n 1642 \N 189.186.180.166 96c14a73-0ad8-441e-a9ac-39c48e800746 2019-10-28 22:44:26.054185 19488 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HrsT9HwsdAyEZRM7r2ze\n- VnLXjjTr7j6zQWe_Cx-5\n 1643 \N 189.186.180.166 96c14a73-0ad8-441e-a9ac-39c48e800746 2019-10-28 22:44:26.072804 19489 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-28 21:59:48.524672000 Z\n- &1 2019-10-28 22:44:26.046479000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-28 22:54:41.638737530 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946025\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938055\n mask_addr: 4294967295\nsign_in_count:\n- 821\n- 822\n 1644 \N 200.68.150.7 cca53b94-11f3-4908-bc7e-d5f83875be2f 2019-10-28 22:54:41.647155 19490 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VnLXjjTr7j6zQWe_Cx-5\n- AoRjK-4BuSNdSdr6RAYs\n 1645 \N 200.68.150.7 cca53b94-11f3-4908-bc7e-d5f83875be2f 2019-10-28 22:54:41.664157 19491 1838 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 536\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1211\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-486 187.149.45.220 1a2fb6bf-696d-4726-8bfa-e8fd00468d9f 2019-10-28 23:04:22.040056 19492 1839 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 536\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1241\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-499 187.149.45.220 a3921244-0c97-4505-ad56-b892a377223b 2019-10-28 23:09:01.253523 19493 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-28 22:44:26.046479000 Z\n- &1 2019-10-28 22:54:41.638737000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-29 00:03:10.027122593 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938055\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938055\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\nsign_in_count:\n- 822\n- 823\n 1646 \N 189.186.180.166 ae6cbbdc-b333-4a4d-8840-0f63ad463541 2019-10-29 00:03:10.035362 19494 4 User \N \N 4 User \N update ---\nunique_session_id:\n- AoRjK-4BuSNdSdr6RAYs\n- usxLtyiJnF9tp7eiFmiZ\n 1647 \N 189.186.180.166 ae6cbbdc-b333-4a4d-8840-0f63ad463541 2019-10-29 00:03:10.052325 19495 1254 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV3-V-73 cancelada. 189.186.180.166 fa95166f-bb11-4c61-8fb5-fe249d2ba9a4 2019-10-29 00:55:49.341238 19617 267 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-10-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.180.166 dac4b45a-2346-4266-87d7-531a62ac865a 2019-10-30 01:22:18.583149 19496 1840 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 534\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '0'\nsale_id: 1254\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.180.166 fa95166f-bb11-4c61-8fb5-fe249d2ba9a4 2019-10-29 00:55:49.374596 19497 1163 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.180.166 fa95166f-bb11-4c61-8fb5-fe249d2ba9a4 2019-10-29 00:55:49.403291 19498 1322 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 534\namount: !ruby/object:BigDecimal 18:0.47124E3\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.478E3\nstatus: 0\ndate_sale: 2019-10-28\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-91\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.180.166 d39cad8a-135c-4e11-a8ca-8b75c9df64da 2019-10-29 00:56:42.625044 19499 876 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 5 \N 189.186.180.166 d39cad8a-135c-4e11-a8ca-8b75c9df64da 2019-10-29 00:56:42.648122 19500 1186 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.180.166 d39cad8a-135c-4e11-a8ca-8b75c9df64da 2019-10-29 00:56:42.668113 19501 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.73E2\n- !ruby/object:BigDecimal 18:0.72E2\n 8 \N 189.186.180.166 d39cad8a-135c-4e11-a8ca-8b75c9df64da 2019-10-29 00:56:42.688036 19502 1322 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.180.166 8145c897-0410-4b89-b05f-4460f8b9a3c5 2019-10-29 00:57:00.438192 19503 1841 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 534\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.478E3\nmove_type: '1'\nsale_id: 1322\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-91\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CAMBIO\n 1 movimiento de efectivo por venta con folio PV3-V-91 189.186.180.166 8145c897-0410-4b89-b05f-4460f8b9a3c5 2019-10-29 00:57:00.45796 19504 865 Product \N \N 4 User \N create ---\nsku: PAL-865\nname: PLZ-0015\ndescription: "VALENTINE PALAZZO NEGRO CON BRILLOS plata ST-J15526\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.53E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 9\nproduct_service_key: '01010101'\n 1 El producto PAL-865 fue creado. 189.186.180.166 4f5811f0-7c50-4085-88c2-602aeb765c9f 2019-10-29 01:23:05.701626 19505 865 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000865'\n 2 \N 189.186.180.166 4f5811f0-7c50-4085-88c2-602aeb765c9f 2019-10-29 01:23:05.732269 19506 866 Product \N \N 4 User \N create ---\nsku: PAL-866\nname: PLZ-0016\ndescription: "VALENTINE palazzo cuello v plata ST-Jp10972\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.51E3\nprice_sale: !ruby/object:BigDecimal 18:0.1349E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 9\nproduct_service_key: '01010101'\n 1 El producto PAL-866 fue creado. 189.186.180.166 36a6d763-cd23-4620-9943-a972bdbe85c7 2019-10-29 01:23:51.431461 19507 866 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000866'\n 2 \N 189.186.180.166 36a6d763-cd23-4620-9943-a972bdbe85c7 2019-10-29 01:23:51.457963 19508 217 Customer \N \N 27 User \N create ---\nnick_name: ARACELI VALDEZ\nphone: "(667) 215-7254"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ARACELI VALDEZ fue registrado. 187.149.45.220 92a8ac2f-e4e6-4fcb-a8cb-479440d2b284 2019-10-29 01:23:59.273251 19509 867 Product \N \N 4 User \N create ---\nsku: PAL-867\nname: PLZ-0017\ndescription: "VALENTINE PALAZO NEGRO ST-Jo15304\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.47E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 9\nproduct_service_key: '01010101'\n 1 El producto PAL-867 fue creado. 189.186.180.166 26a23740-e056-4fec-abb1-74dd6ce550ac 2019-10-29 01:24:34.179816 19510 867 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000867'\n 2 \N 189.186.180.166 26a23740-e056-4fec-abb1-74dd6ce550ac 2019-10-29 01:24:34.222042 19511 1323 Sale \N \N 27 User \N create ---\ncustomer_id: 217\nuser_id: 27\nopen_cash_register_id: 536\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-10-28\nsaletype: 2\nseller_id: 19\nsale_code: PV2-V-531\nexpiration_date: 2019-12-02\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.45.220 04710512-22ff-478b-93f7-f384b1abd739 2019-10-29 01:24:34.28549 19512 1083 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.45.220 04710512-22ff-478b-93f7-f384b1abd739 2019-10-29 01:24:34.310689 19513 1842 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 536\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 1323\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-531\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-531 187.149.45.220 5409be23-1a24-4beb-ace5-161893e21568 2019-10-29 01:24:40.720063 19514 1323 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.45.220 0a35df46-704a-4be2-a359-789e781332e4 2019-10-29 01:24:42.217627 19515 868 Product \N \N 4 User \N create ---\nsku: PAL-868\nname: PLZ-0018\ndescription: "VALENTINE PALAZO NEGRO CON VERDE ST-Jp8394 \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.57E3\nprice_sale: !ruby/object:BigDecimal 18:0.1429E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 9\nproduct_service_key: '01010101'\n 1 El producto PAL-868 fue creado. 189.186.180.166 fa2c558e-548a-4352-adb4-7b7e4a450679 2019-10-29 01:25:10.579661 19517 869 Product \N \N 4 User \N create ---\nsku: PAL-869\nname: PLZ-019\ndescription: "PALAZZO VALENTINE TINTO ST- JP11008 Tinto \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.53E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 9\nproduct_service_key: '01010101'\n 1 El producto PAL-869 fue creado. 189.186.180.166 2445afa5-e008-4c7a-9647-0f9454d39a84 2019-10-29 01:25:56.867086 19518 869 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000869'\n 2 \N 189.186.180.166 2445afa5-e008-4c7a-9647-0f9454d39a84 2019-10-29 01:25:56.892284 19519 175 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-17\namount: !ruby/object:BigDecimal 18:0.1566E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1566E5\nobservations: ''\npurchase_date: 2019-10-28\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-17 por $ 15660.0 MXN creada. 189.186.180.166 85f57a3f-e66e-49b7-8817-ff333267745b 2019-10-29 01:26:04.343056 19520 870 Product \N \N 4 User \N create ---\nsku: BLU-870\nname: BLS-0090\ndescription: "Blusa Silver MUYMUY ST-MM0780 \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.155E3\nprice_sale: !ruby/object:BigDecimal 18:0.449E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-870 fue creado. 189.186.180.166 8f22a7f8-ab29-4c68-a060-21ff07b644a8 2019-10-29 01:27:32.991056 19521 870 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000870'\n 2 \N 189.186.180.166 8f22a7f8-ab29-4c68-a060-21ff07b644a8 2019-10-29 01:27:33.020913 19522 871 Product \N \N 4 User \N create ---\nsku: BLU-871\nname: BLS-0091\ndescription: "BLUSA MUYMUYY ST-MM0867 COLOR NEGRO, DORADO Y PLATA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.21E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-871 fue creado. 189.186.180.166 93d2ce95-5203-4c3e-816a-0ae03f377b3a 2019-10-29 01:28:32.665977 19523 871 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000871'\n 2 \N 189.186.180.166 93d2ce95-5203-4c3e-816a-0ae03f377b3a 2019-10-29 01:28:32.692744 19524 872 Product \N \N 4 User \N create ---\nsku: BLU-872\nname: BLS-0092\ndescription: "Blusa negra con moños JELOUSE TOMATO ST-AT1861\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.275E3\nprice_sale: !ruby/object:BigDecimal 18:0.739E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-872 fue creado. 189.186.180.166 ef3fa041-aabe-4c38-a829-8163964bd3cb 2019-10-29 01:29:14.822596 19525 872 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000872'\n 2 \N 189.186.180.166 ef3fa041-aabe-4c38-a829-8163964bd3cb 2019-10-29 01:29:14.850103 19526 873 Product \N \N 4 User \N create ---\nsku: BLU-873\nname: BLS-0093\ndescription: "Blusa negra flores JELOUSE TOMATO ST-AT1862\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.28E3\nprice_sale: !ruby/object:BigDecimal 18:0.729E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-873 fue creado. 189.186.180.166 74d9ad4e-f2b9-4194-851c-3a963248798e 2019-10-29 01:30:07.931466 19527 873 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000873'\n 2 \N 189.186.180.166 74d9ad4e-f2b9-4194-851c-3a963248798e 2019-10-29 01:30:07.958072 19528 874 Product \N \N 4 User \N create ---\nsku: BLU-874\nname: BLS-0094\ndescription: "BLUSA VALENTINE ST-9326 roja y negra\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.29E3\nprice_sale: !ruby/object:BigDecimal 18:0.759E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-874 fue creado. 189.186.180.166 f8ad9bb1-6235-449c-a7e7-ffed336e9cb4 2019-10-29 01:30:57.662905 19529 874 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000874'\n 2 \N 189.186.180.166 f8ad9bb1-6235-449c-a7e7-ffed336e9cb4 2019-10-29 01:30:57.688057 19530 875 Product \N \N 4 User \N create ---\nsku: BLU-875\nname: BLS-0095\ndescription: "PANTIBLUSA CQCQ NUDE PEACH Y NEGRA ST 8972BW\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.24E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-875 fue creado. 189.186.180.166 2e979cd3-c6c9-4e18-bd3d-45d2328473dd 2019-10-29 01:32:03.089163 19531 875 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000875'\n 2 \N 189.186.180.166 2e979cd3-c6c9-4e18-bd3d-45d2328473dd 2019-10-29 01:32:03.11456 19532 876 Product \N \N 4 User \N create ---\nsku: BLU-876\nname: BLS-0096\ndescription: "BLUSA CQ&CQ NEGRA ST-9297\\r\\n"\nprice_base: \nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: true\nprice_base_dollars: !ruby/object:BigDecimal 18:0.36E3\nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-876 fue creado. 189.186.180.166 5ca18b58-d962-4195-b1e2-e0e96e40f6df 2019-10-29 01:33:20.877772 19533 876 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000876'\n 2 \N 189.186.180.166 5ca18b58-d962-4195-b1e2-e0e96e40f6df 2019-10-29 01:33:20.905349 19618 869 Product \N \N 4 User \N update ---\nname:\n- PLZ-019\n- PLZ-0019\n 3 El producto PAL-869 fue modificado. 189.186.180.166 a1968340-6c80-4f74-a89e-f6f46fbca728 2019-10-30 01:24:14.759128 20056 1136 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.130.34 d539d49d-a486-4b02-8ae4-41ebbff22e4f 2019-11-03 18:29:55.454259 19534 877 Product \N \N 4 User \N create ---\nsku: BLU-877\nname: BLS-0097\ndescription: "BLUSA CQ&CQ NEGRA Y DORADA ST-9319TW\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-877 fue creado. 189.186.180.166 c7c73470-546b-45f1-990e-a363bc9f241e 2019-10-29 01:34:24.367121 19535 877 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000877'\n 2 \N 189.186.180.166 c7c73470-546b-45f1-990e-a363bc9f241e 2019-10-29 01:34:24.393449 19536 878 Product \N \N 4 User \N create ---\nsku: BLU-878\nname: BLS-0098\ndescription: "BLUSA VQ&CQ NEGRA ST-9498TW\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.44E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-878 fue creado. 189.186.180.166 9e95b4c7-05f8-4721-8ff6-32ff226c61e6 2019-10-29 01:35:13.081918 19537 878 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000878'\n 2 \N 189.186.180.166 9e95b4c7-05f8-4721-8ff6-32ff226c61e6 2019-10-29 01:35:13.109018 19538 879 Product \N \N 4 User \N create ---\nsku: BLU-879\nname: BLS-0099\ndescription: "BLUSA CQCQ DORADA ST-9557\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.53E3\nprice_sale: !ruby/object:BigDecimal 18:0.156E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-879 fue creado. 189.186.180.166 c7520733-74f4-4f30-aafb-fda2078d6aa8 2019-10-29 01:36:08.169507 19539 879 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000879'\n 2 \N 189.186.180.166 c7520733-74f4-4f30-aafb-fda2078d6aa8 2019-10-29 01:36:08.197973 19540 876 Product \N \N 4 User \N update ---\nprice_base:\n- \n- !ruby/object:BigDecimal 27:0.36E3\nprice_base_dollars:\n- !ruby/object:BigDecimal 18:0.36E3\n- \n 3 El producto BLU-876 fue modificado. 189.186.180.166 b48e9a52-cde6-4fed-85ee-92a920e19671 2019-10-29 01:36:40.710789 19541 176 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-18\namount: !ruby/object:BigDecimal 18:0.2886E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2886E5\nobservations: ''\npurchase_date: 2019-10-28\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-18 por $ 28860.0 MXN creada. 189.186.180.166 87d7b13f-ce21-410e-9b0f-4cc5f1b0c526 2019-10-29 01:36:49.055113 19542 880 Product \N \N 4 User \N create ---\nsku: CON-880\nname: CJT-0004\ndescription: "Conjunto BLUE S lentejuelas plata ST-92270\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.38E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 10\nproduct_service_key: '01010101'\n 1 El producto CON-880 fue creado. 189.186.180.166 b5bbbc1b-0d1a-483b-a98a-6aa0b14385df 2019-10-29 01:38:11.789107 19543 880 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000880'\n 2 \N 189.186.180.166 b5bbbc1b-0d1a-483b-a98a-6aa0b14385df 2019-10-29 01:38:11.817041 19544 177 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-19\namount: !ruby/object:BigDecimal 18:0.38E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.38E3\nobservations: ''\npurchase_date: 2019-10-28\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-19 por $ 380.0 MXN creada. 189.186.180.166 986e651e-4716-4d01-889e-6a1cb4197c32 2019-10-29 01:38:15.486372 19545 881 Product \N \N 4 User \N create ---\nsku: VES-881\nname: VST-0062\ndescription: "VESTIDO CQ&CQ LT GLOD ST-9370DW\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.52E3\nprice_sale: !ruby/object:BigDecimal 18:0.1349E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-881 fue creado. 189.186.180.166 e4ebe6a6-e254-41d1-bd2f-b0e32c866f41 2019-10-29 01:41:18.574387 19546 881 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000881'\n 2 \N 189.186.180.166 e4ebe6a6-e254-41d1-bd2f-b0e32c866f41 2019-10-29 01:41:18.601093 19547 882 Product \N \N 4 User \N create ---\nsku: VES-882\nname: VST-0063\ndescription: "VESTIDO CQ&CQ TINTO ST-9388DK\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-882 fue creado. 189.186.180.166 ac657c93-f5c4-4ab6-8bb8-724b02157ea3 2019-10-29 01:42:02.408835 19548 882 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000882'\n 2 \N 189.186.180.166 ac657c93-f5c4-4ab6-8bb8-724b02157ea3 2019-10-29 01:42:02.440858 19549 178 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-20\namount: !ruby/object:BigDecimal 18:0.612E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.612E4\nobservations: ''\npurchase_date: 2019-10-28\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-20 por $ 6120.0 MXN creada. 189.186.180.166 3a282612-500f-4eb7-b744-27799befb460 2019-10-29 01:42:07.885611 19550 883 Product \N \N 4 User \N create ---\nsku: PAN-883\nname: PNT-0021\ndescription: "Pantalón doradoJELOUSE TOMATO ST-JP5189 \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.415E3\nprice_sale: !ruby/object:BigDecimal 18:0.1049E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-883 fue creado. 189.186.180.166 325bc977-3ddf-4364-a16d-5dc56b121c74 2019-10-29 01:43:28.166254 19551 883 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000883'\n 2 \N 189.186.180.166 325bc977-3ddf-4364-a16d-5dc56b121c74 2019-10-29 01:43:28.194363 19552 884 Product \N \N 4 User \N create ---\nsku: FAL-884\nname: FLD-0019\ndescription: "Faldas piel $195 $549\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.195E3\nprice_sale: !ruby/object:BigDecimal 18:0.549E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-884 fue creado. 189.186.180.166 d72963be-0ab7-4be3-bdfc-d65ee9134c20 2019-10-29 01:44:35.242669 19553 884 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000884'\n 2 \N 189.186.180.166 d72963be-0ab7-4be3-bdfc-d65ee9134c20 2019-10-29 01:44:35.269681 19554 885 Product \N \N 4 User \N create ---\nsku: FAL-885\nname: FLD-0020\ndescription: "Falda Patiles \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.26E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-885 fue creado. 189.186.180.166 a6b71d36-1bc1-4ee8-802a-eccb72674ac2 2019-10-29 01:45:22.079492 19555 885 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000885'\n 2 \N 189.186.180.166 a6b71d36-1bc1-4ee8-802a-eccb72674ac2 2019-10-29 01:45:22.103522 19556 179 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-21\namount: !ruby/object:BigDecimal 18:0.522E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.522E4\nobservations: ''\npurchase_date: 2019-10-28\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-21 por $ 5220.0 MXN creada. 189.186.180.166 e3d80673-6391-4753-9256-b401b40e8a94 2019-10-29 01:45:27.660136 19557 537 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 537\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2798E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.794E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2294E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.45.220 9b43be32-219d-4113-aaef-154d67c8d73a 2019-10-29 02:40:15.078657 19558 537 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.45.220 9b43be32-219d-4113-aaef-154d67c8d73a 2019-10-29 02:40:15.092385 19559 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-28 22:54:41.638737000 Z\n- &1 2019-10-29 00:03:10.027122000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-29 02:53:37.002199141 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938055\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938055\n mask_addr: 4294967295\nsign_in_count:\n- 823\n- 824\n 1648 \N 200.68.150.7 376f98a8-0aa8-43f2-9c4e-5693307d3b41 2019-10-29 02:53:37.013156 19560 4 User \N \N 4 User \N update ---\nunique_session_id:\n- usxLtyiJnF9tp7eiFmiZ\n- fsGBnd7BdEP1Cy6wSWee\n 1649 \N 200.68.150.7 376f98a8-0aa8-43f2-9c4e-5693307d3b41 2019-10-29 02:53:37.037892 19561 538 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 536\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2398E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.955E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3455E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.45.220 81036170-7f83-41e2-81d9-f5f4d9c53e9e 2019-10-29 03:03:20.949969 19562 536 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.45.220 81036170-7f83-41e2-81d9-f5f4d9c53e9e 2019-10-29 03:03:20.962071 19563 539 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 534\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1777E4\namount_out: !ruby/object:BigDecimal 18:0.5E3\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1322E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1322E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.180.166 0d62f702-4e9b-4a93-aceb-8db6f8917c71 2019-10-29 03:03:41.250443 19564 534 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.180.166 0d62f702-4e9b-4a93-aceb-8db6f8917c71 2019-10-29 03:03:41.264009 19565 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-29 00:03:10.027122000 Z\n- &1 2019-10-29 02:53:37.002199000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-29 06:18:15.917814672 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938055\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938055\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\nsign_in_count:\n- 824\n- 825\n 1650 \N 189.186.204.250 b716f2af-932f-4895-b3bc-072ee5148a13 2019-10-29 06:18:15.954211 19566 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fsGBnd7BdEP1Cy6wSWee\n- wGgUmYV1c3qaNsersUBf\n 1651 \N 189.186.204.250 b716f2af-932f-4895-b3bc-072ee5148a13 2019-10-29 06:18:15.983127 19567 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-26 16:01:56.438622000 Z\n- &1 2019-10-27 17:05:25.612448000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-29 17:15:40.571768639 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\nsign_in_count:\n- 48\n- 49\n 98 \N 189.186.180.166 862fc32e-84d5-4f2e-aa93-ad8065904f28 2019-10-29 17:15:40.604838 19568 23 User \N \N 23 User \N update ---\nunique_session_id:\n- xjGjbRfRdtNSTtLqEjNc\n- Suig7t7idM8EvNAkeCVW\n 99 \N 189.186.180.166 862fc32e-84d5-4f2e-aa93-ad8065904f28 2019-10-29 17:15:40.625717 19569 538 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1322E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1322.0 189.186.180.166 4afb6d80-310e-407b-a3bf-d338dff271d9 2019-10-29 17:16:15.824239 19570 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-26 17:14:56.504735000 Z\n- &1 2019-10-28 18:46:16.777608000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-29 17:56:59.388828999 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\nsign_in_count:\n- 360\n- 361\n 725 \N 187.149.45.220 e34ad124-e7c6-4610-8186-917c9c63659b 2019-10-29 17:56:59.421995 19571 2 User \N \N 2 User \N update ---\nunique_session_id:\n- pf7cjcxs83mWx9qt7UxP\n- fhhs-JQyCn7GpkPgHyyn\n 726 \N 187.149.45.220 e34ad124-e7c6-4610-8186-917c9c63659b 2019-10-29 17:56:59.446041 20057 74 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.74.215 72b7eacd-c0cd-4dba-ab18-f0dba6d2e387 2019-11-03 18:30:22.128328 19572 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-29 02:53:37.002199000 Z\n- &1 2019-10-29 06:18:15.917814000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-29 18:31:31.434618319 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938055\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\nsign_in_count:\n- 825\n- 826\n 1652 \N 187.149.45.220 f28825b6-12ba-41fd-996b-b69d0176184e 2019-10-29 18:31:31.444429 19573 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wGgUmYV1c3qaNsersUBf\n- mhyU8rbxUn_eDKCgmMLj\n 1653 \N 187.149.45.220 f28825b6-12ba-41fd-996b-b69d0176184e 2019-10-29 18:31:31.462739 19574 264 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-10-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.45.220 f049bfbe-edc0-428d-9f86-e41727f9e98c 2019-10-29 18:33:42.749234 19575 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-28 18:46:16.777608000 Z\n- &1 2019-10-29 17:56:59.388828000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-29 18:34:21.655755426 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\nsign_in_count:\n- 361\n- 362\n 727 \N 187.149.45.220 e02eaeae-2da6-4a91-a96d-8bd8508b75f9 2019-10-29 18:34:21.662157 19576 2 User \N \N 2 User \N update ---\nunique_session_id:\n- fhhs-JQyCn7GpkPgHyyn\n- 6h3d5SEduRSC3_fgjv4Y\n 728 \N 187.149.45.220 e02eaeae-2da6-4a91-a96d-8bd8508b75f9 2019-10-29 18:34:21.677314 19577 264 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-29\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.45.220 f08587fc-b20e-41a0-9a30-3431987dec89 2019-10-29 18:34:40.498686 19578 1241 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 871\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.9E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.45.220 f08587fc-b20e-41a0-9a30-3431987dec89 2019-10-29 18:34:40.520854 19579 1242 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 872\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.45.220 f08587fc-b20e-41a0-9a30-3431987dec89 2019-10-29 18:34:40.552492 19580 539 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.794E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 794.0 187.149.45.220 b0fa2d9d-4bc1-47ca-adfa-c05b3c01b31e 2019-10-29 18:35:01.487608 19581 218 Customer \N \N 2 User \N create ---\nnick_name: FLOR ARAGON\nphone: "(667) 221-2372"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente FLOR ARAGON fue registrado. 187.149.45.220 9c7ea4c8-3212-4bc6-a689-9cbe0759ed0f 2019-10-29 18:36:17.434513 19582 1324 Sale \N \N 2 User \N create ---\ncustomer_id: 218\nuser_id: 2\nopen_cash_register_id: 539\namount: !ruby/object:BigDecimal 18:0.1338E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1338E4\nstatus: 0\ndate_sale: 2019-10-29\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-700\nexpiration_date: 2019-12-03\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.45.220 4a233532-286f-415b-9e88-697dd41658a1 2019-10-29 18:36:55.524478 19583 1241 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 187.149.45.220 4a233532-286f-415b-9e88-697dd41658a1 2019-10-29 18:36:55.550784 19584 1242 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.45.220 4a233532-286f-415b-9e88-697dd41658a1 2019-10-29 18:36:55.574007 19585 1843 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 539\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1324\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-700\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-700 187.149.45.220 9aaf6cc8-f1c2-4d58-b09c-5bee91a9f6fd 2019-10-29 18:38:21.32669 19586 1324 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.45.220 f3eb0691-4f12-4ab1-b615-e3f8c3b2b32c 2019-10-29 18:38:25.582568 19587 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-10-27 22:02:32.994714000 Z\n- &1 2019-10-28 18:26:07.912176000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-29 18:55:33.945537218 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\nsign_in_count:\n- 10\n- 11\n 22 \N 187.149.45.220 c3aaa330-c7d3-4bcd-a1a5-5bc9c19b4536 2019-10-29 18:55:33.955103 19588 26 User \N \N 26 User \N update ---\nunique_session_id:\n- vcrd1BqB4J1nLNxBFjgs\n- woxSryxVWayV3P5W85sk\n 23 \N 187.149.45.220 c3aaa330-c7d3-4bcd-a1a5-5bc9c19b4536 2019-10-29 18:55:33.969671 19589 540 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.955E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 955.0 187.149.45.220 c7c60723-6e76-4c1a-a416-2b7d4579d231 2019-10-29 19:34:29.938494 19590 1325 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 540\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-10-29\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-532\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.45.220 ae243973-18d9-4200-b390-4b18e575a8ff 2019-10-29 19:35:42.638704 19591 1126 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.45.220 ae243973-18d9-4200-b390-4b18e575a8ff 2019-10-29 19:35:42.670627 19592 1325 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.45.220 a8951895-9781-431a-b49b-1e27bfe27922 2019-10-29 19:35:55.527285 19593 1844 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 540\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 1325\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-532\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-532 187.149.45.220 a8951895-9781-431a-b49b-1e27bfe27922 2019-10-29 19:35:55.552084 19594 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-29 06:18:15.917814000 Z\n- &1 2019-10-29 18:31:31.434618000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-29 19:47:32.617476820 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\nsign_in_count:\n- 826\n- 827\n 1654 \N 187.149.45.220 c4b39142-7298-43dc-b265-d0520a2b4ba3 2019-10-29 19:47:32.624902 19595 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mhyU8rbxUn_eDKCgmMLj\n- BYx7Ki9yhtx_BWZ8L1Q5\n 1655 \N 187.149.45.220 c4b39142-7298-43dc-b265-d0520a2b4ba3 2019-10-29 19:47:32.645501 19596 706 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.45.220 12ebaa9c-b3ab-4023-b417-ec4deaca6d26 2019-10-29 19:48:12.07717 19597 706 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.45.220 13dd3bd1-3c9e-44b2-b794-efdc1432d9bf 2019-10-29 19:48:33.773215 19598 265 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-10-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO a Almacen central creado. 187.149.45.220 e54f1220-f3c3-4567-b0e0-9e18b0d8ee8d 2019-10-29 19:48:34.382119 19599 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-10-24 21:24:21.811643000 Z\n- &1 2019-10-25 21:19:46.092821000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-29 20:32:59.270637083 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\nsign_in_count:\n- 8\n- 9\n 18 \N 187.149.45.220 439c2561-c61b-4505-b814-b2939b27ed9e 2019-10-29 20:32:59.281026 19600 24 User \N \N 24 User \N update ---\nunique_session_id:\n- 1VKe1PW76n5rdSxzGLzS\n- LNc8uN5Egxk1fxu5ACF6\n 19 \N 187.149.45.220 439c2561-c61b-4505-b814-b2939b27ed9e 2019-10-29 20:32:59.297748 19601 1326 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 540\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-10-29\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-533\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.45.220 520b99ec-ca35-408d-9559-8ed1a5ed5cf4 2019-10-29 20:34:46.427125 19602 800 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 16 \N 187.149.45.220 520b99ec-ca35-408d-9559-8ed1a5ed5cf4 2019-10-29 20:34:46.462274 19603 1326 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.45.220 01b8d064-d8c4-4049-9b65-48b6e7f2c2d1 2019-10-29 20:35:20.338098 19604 1845 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 540\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1326\ncardnumber: 3793\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-533\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-533 187.149.45.220 01b8d064-d8c4-4049-9b65-48b6e7f2c2d1 2019-10-29 20:35:20.358499 19605 219 Customer \N \N 2 User \N create ---\nnick_name: MARIA DELFINA MOLINA\nphone: "(667) 334-3645"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIA DELFINA MOLINA fue registrado. 187.149.45.220 b73cf19a-1991-43bd-bb7c-b2c39acaa7ce 2019-10-29 20:57:19.906233 19606 1327 Sale \N \N 2 User \N create ---\ncustomer_id: 219\nuser_id: 2\nopen_cash_register_id: 539\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-10-29\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-701\nexpiration_date: 2019-12-03\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.45.220 f9c29984-3ce9-4e6d-8254-07d3bdeb1b73 2019-10-29 20:57:47.290622 19607 1241 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 3 \N 187.149.45.220 f9c29984-3ce9-4e6d-8254-07d3bdeb1b73 2019-10-29 20:57:47.321352 19608 1846 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 539\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1327\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-701\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-701 187.149.45.220 a2116c15-caac-41a0-ac9b-3b27df3a7d29 2019-10-29 20:57:53.368465 19609 1327 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.45.220 a3d1e0f2-4ff4-4e87-8d59-fb81878877bf 2019-10-29 20:57:54.471474 19610 1328 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 539\namount: !ruby/object:BigDecimal 18:0.99E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.99E2\nstatus: 0\ndate_sale: 2019-10-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-702\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.45.220 20083dac-583d-4b88-8e79-575869f0ad00 2019-10-29 20:58:36.667769 19611 1199 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.45.220 20083dac-583d-4b88-8e79-575869f0ad00 2019-10-29 20:58:36.690745 19612 1328 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.45.220 9dd9b050-b26d-4a32-bd24-af5975a3fad8 2019-10-29 20:58:44.046249 19613 1847 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 539\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.99E2\nmove_type: '1'\nsale_id: 1328\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-702\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.99E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-702 187.149.45.220 9dd9b050-b26d-4a32-bd24-af5975a3fad8 2019-10-29 20:58:44.066534 19614 266 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-10-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.45.220 1e1ab61f-8702-4650-ae58-9859d7cef8c9 2019-10-29 21:03:25.729004 19615 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-29 18:31:31.434618000 Z\n- &1 2019-10-29 19:47:32.617476000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-30 01:07:34.368609086 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\nsign_in_count:\n- 827\n- 828\n 1656 \N 189.186.180.166 d663bd9b-51c5-4524-bbe8-285ff473fdaf 2019-10-30 01:07:34.381022 19616 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BYx7Ki9yhtx_BWZ8L1Q5\n- rT8ye_3yFsixx7MvMzuh\n 1657 \N 189.186.180.166 d663bd9b-51c5-4524-bbe8-285ff473fdaf 2019-10-30 01:07:34.40235 19619 268 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-10-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 189.186.180.166 99e2aeac-1618-4cc6-9ce1-6aed5ba3952f 2019-10-30 01:26:29.177696 19620 1125 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 4 \N 189.186.180.166 18856be0-c963-4715-9d60-af1f05697d20 2019-10-30 01:29:25.755542 19621 1125 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.180.166 484876cd-1aa2-4125-a1b5-568b0c3bc586 2019-10-30 01:29:29.068819 19622 269 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-10-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.180.166 4356a7bd-0912-46b2-94b4-290b3a07b403 2019-10-30 01:29:32.951067 19623 886 Product \N \N 4 User \N create ---\nsku: CHA-886\nname: CHA-0002\ndescription: "Sueter lentejuelas JELOUSE TOMATO ST-ASW1115 \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.395E3\nprice_sale: !ruby/object:BigDecimal 18:0.989E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-886 fue creado. 189.186.180.166 87e48c14-d79e-4808-a581-210e604c8a47 2019-10-30 01:30:38.016174 19624 886 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000886'\n 2 \N 189.186.180.166 87e48c14-d79e-4808-a581-210e604c8a47 2019-10-30 01:30:38.061337 19625 887 Product \N \N 4 User \N create ---\nsku: CHA-887\nname: CHA-0003\ndescription: "Sacos JELOUSE TOMATO ST-JT2311 COLOR IVORY Y NEGRO \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.395E3\nprice_sale: !ruby/object:BigDecimal 18:0.1099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-887 fue creado. 189.186.180.166 59755555-bc62-43ad-9d93-dad08e52ba00 2019-10-30 01:31:24.430885 19626 887 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000887'\n 2 \N 189.186.180.166 59755555-bc62-43ad-9d93-dad08e52ba00 2019-10-30 01:31:24.467478 19627 888 Product \N \N 4 User \N create ---\nsku: CHA-888\nname: CHA-0004\ndescription: "Saco rosa JELOUSE TOMATO ST-JJ2323 \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.475E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-888 fue creado. 189.186.180.166 ce0d08a2-3ec5-40bb-80a7-c29ab7852596 2019-10-30 01:35:23.822849 19628 888 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000888'\n 2 \N 189.186.180.166 ce0d08a2-3ec5-40bb-80a7-c29ab7852596 2019-10-30 01:35:23.853409 19629 889 Product \N \N 4 User \N create ---\nsku: CHA-889\nname: CHA-0005\ndescription: "Suéter Balboa amarillo y blanco \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3E3\nprice_sale: !ruby/object:BigDecimal 18:0.789E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-889 fue creado. 189.186.180.166 0b22681a-70f6-48d0-b197-d22214dfd559 2019-10-30 01:36:17.969851 19630 889 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000889'\n 2 \N 189.186.180.166 0b22681a-70f6-48d0-b197-d22214dfd559 2019-10-30 01:36:17.997868 19631 890 Product \N \N 4 User \N create ---\nsku: CHA-890\nname: CHA-0006\ndescription: "Suéter Balboa negro \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.24E3\nprice_sale: !ruby/object:BigDecimal 18:0.629E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-890 fue creado. 189.186.180.166 2f70d9e6-c68c-45a1-86e1-914e819d53a8 2019-10-30 01:39:33.891726 19632 890 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000890'\n 2 \N 189.186.180.166 2f70d9e6-c68c-45a1-86e1-914e819d53a8 2019-10-30 01:39:33.927454 19633 891 Product \N \N 4 User \N create ---\nsku: CHA-891\nname: CHA-0009\ndescription: "Suéter BALBOA mostaza y blanco corazones\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3E3\nprice_sale: !ruby/object:BigDecimal 18:0.749E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-891 fue creado. 189.186.180.166 02c06565-7f49-4f4d-871d-e02315946f65 2019-10-30 01:40:25.247545 19634 891 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000891'\n 2 \N 189.186.180.166 02c06565-7f49-4f4d-871d-e02315946f65 2019-10-30 01:40:25.277272 19635 892 Product \N \N 4 User \N create ---\nsku: CHA-892\nname: CHA-0010\ndescription: "Suéter Balboa rosa \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.31E3\nprice_sale: !ruby/object:BigDecimal 18:0.779E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-892 fue creado. 189.186.180.166 4d52ef4b-fe69-4885-b6df-ea3b5062af24 2019-10-30 01:43:22.354339 19636 892 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000892'\n 2 \N 189.186.180.166 4d52ef4b-fe69-4885-b6df-ea3b5062af24 2019-10-30 01:43:22.386309 19719 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-30 03:56:52.215953000 Z\n- &1 2019-10-30 15:06:37.469982000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-30 15:06:41.189156385 Z\nsign_in_count:\n- 832\n- 833\n 1666 \N 189.186.204.250 8d736cdc-c360-41c9-98ad-ac18a492e0bb 2019-10-30 15:06:41.194595 19720 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SR8ezDbwHwEdaNfx5rL-\n- _avoLYtDsRFySvfzRAa7\n 1667 \N 189.186.204.250 8d736cdc-c360-41c9-98ad-ac18a492e0bb 2019-10-30 15:06:41.208819 19637 893 Product \N \N 4 User \N create ---\nsku: CHA-893\nname: CHA-0011\ndescription: "Beige blanco gris \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.26E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-893 fue creado. 189.186.180.166 7184f744-e639-471d-b8a3-2b889980ae04 2019-10-30 01:44:14.709696 19638 893 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000893'\n 2 \N 189.186.180.166 7184f744-e639-471d-b8a3-2b889980ae04 2019-10-30 01:44:14.738462 19639 894 Product \N \N 4 User \N create ---\nsku: CHA-894\nname: CHA-0012\ndescription: "LA COLATION NEGRO ST-DCJ101B\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.608E3\nprice_sale: !ruby/object:BigDecimal 18:0.1549E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-894 fue creado. 189.186.180.166 3f918bef-1343-4af0-905b-c08ce643a27e 2019-10-30 01:47:46.273956 19640 894 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000894'\n 2 \N 189.186.180.166 3f918bef-1343-4af0-905b-c08ce643a27e 2019-10-30 01:47:46.306021 19641 895 Product \N \N 4 User \N create ---\nsku: CHA-895\nname: CHA-0013\ndescription: "LA COLATION NEGRO Y BLUSH ST-DCJ107B\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.646E3\nprice_sale: !ruby/object:BigDecimal 18:0.1629E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-895 fue creado. 189.186.180.166 1e71c92c-912b-4756-88e8-0f4c59d20998 2019-10-30 01:48:58.430529 19642 895 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000895'\n 2 \N 189.186.180.166 1e71c92c-912b-4756-88e8-0f4c59d20998 2019-10-30 01:48:58.456665 19643 896 Product \N \N 4 User \N create ---\nsku: CHA-896\nname: CHA-0014\ndescription: "LA COLATION DORADO Y ROSA ST-dcj3009\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.665E3\nprice_sale: !ruby/object:BigDecimal 18:0.1669E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-896 fue creado. 189.186.180.166 e6178935-9657-414b-b920-1e44d48b7f32 2019-10-30 01:50:03.517634 19644 896 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000896'\n 2 \N 189.186.180.166 e6178935-9657-414b-b920-1e44d48b7f32 2019-10-30 01:50:03.561295 19645 897 Product \N \N 4 User \N create ---\nsku: CHA-897\nname: CHA-0015\ndescription: "LA COLATION ROSA Y GUNMETAL\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.665E3\nprice_sale: !ruby/object:BigDecimal 18:0.1669E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-897 fue creado. 189.186.180.166 d737530c-056e-48ff-a28a-4bc205d461c2 2019-10-30 01:50:53.600209 19646 897 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000897'\n 2 \N 189.186.180.166 d737530c-056e-48ff-a28a-4bc205d461c2 2019-10-30 01:50:53.627933 19647 898 Product \N \N 4 User \N create ---\nsku: CHA-898\nname: CHA-0016\ndescription: "LA COLATION NEGRO ST-DCJ3027\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.57E3\nprice_sale: !ruby/object:BigDecimal 18:0.1469E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-898 fue creado. 189.186.180.166 829b51c6-9c20-4bd7-8bca-477264cdd7a8 2019-10-30 01:51:42.353398 19648 898 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000898'\n 2 \N 189.186.180.166 829b51c6-9c20-4bd7-8bca-477264cdd7a8 2019-10-30 01:51:42.37847 19649 899 Product \N \N 4 User \N create ---\nsku: CHA-899\nname: CHA-0017\ndescription: "LA COLATION NEGRO ST-DFJ3023\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.649E3\nprice_sale: !ruby/object:BigDecimal 18:0.1629E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-899 fue creado. 189.186.180.166 fc6cdf5f-7841-473d-a40b-26e2217eadba 2019-10-30 01:52:41.788102 19650 899 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000899'\n 2 \N 189.186.180.166 fc6cdf5f-7841-473d-a40b-26e2217eadba 2019-10-30 01:52:41.835203 19651 900 Product \N \N 4 User \N create ---\nsku: CHA-900\nname: CHA-0018\ndescription: "M2 CHAMARRA PINK ST-1410\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.43E3\nprice_sale: !ruby/object:BigDecimal 18:0.1099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-900 fue creado. 189.186.180.166 a92be797-a59f-42d0-9e89-89e668e0ae64 2019-10-30 01:53:28.574597 19652 900 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000900'\n 2 \N 189.186.180.166 a92be797-a59f-42d0-9e89-89e668e0ae64 2019-10-30 01:53:28.602777 19653 901 Product \N \N 4 User \N create ---\nsku: CHA-901\nname: CHA-0019\ndescription: "M2 CHAMARRA DEMIN ST-1401\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.55E3\nprice_sale: !ruby/object:BigDecimal 18:0.1359E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-901 fue creado. 189.186.180.166 94ab7079-0645-498d-a06a-53448f0eb6ad 2019-10-30 01:54:26.823325 19654 901 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000901'\n 2 \N 189.186.180.166 94ab7079-0645-498d-a06a-53448f0eb6ad 2019-10-30 01:54:26.849686 19655 902 Product \N \N 4 User \N create ---\nsku: CHA-902\nname: CHA-0020\ndescription: "ABRIGO JELOUSE TOMATO DE COLORES ST-JJ2322\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.66E3\nprice_sale: !ruby/object:BigDecimal 18:0.1769E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-902 fue creado. 189.186.180.166 581bfba8-98c2-480a-ae13-2383677586f4 2019-10-30 01:55:37.933073 19656 902 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000902'\n 2 \N 189.186.180.166 581bfba8-98c2-480a-ae13-2383677586f4 2019-10-30 01:55:37.961069 19657 180 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-22\namount: !ruby/object:BigDecimal 18:0.84084E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.84084E5\nobservations: ''\npurchase_date: 2019-10-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-22 por $ 84084.0 MXN creada. 189.186.180.166 a5e074fc-c55d-4ccc-b11a-8b3c7c9e762f 2019-10-30 01:55:45.923231 19658 270 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-10-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.180.166 5ac33262-480e-4076-9677-089e2936832e 2019-10-30 01:59:10.094825 19659 269 Transfer \N \N 23 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 23\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-29\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.180.166 d2f426b8-aba2-4cfb-9c46-f80b272d0b27 2019-10-30 02:01:56.840934 19660 1243 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 783\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.180.166 d2f426b8-aba2-4cfb-9c46-f80b272d0b27 2019-10-30 02:01:56.869483 19661 271 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-10-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 189.186.180.166 ea625c33-304d-45ab-a5de-31e815088a66 2019-10-30 02:04:33.500854 19662 272 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-10-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 189.186.180.166 45c6d29e-53b7-4d0e-b02a-2cf224e9a3c8 2019-10-30 02:05:16.308481 19663 763 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '763'\n is_parent: false\n sku: VES-763\n name: VST-0057\n description: "LATISTE LENTEJUELAS AZUL\\r\\n"\n price_base: '760.0'\n price_sale: '1899.0'\n img_product: PHOTO-2019-10-15-21-54-23.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000763'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-11 05:25:21.073525'\n updated_at: &12 2019-10-30 02:08:40.385541775 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '763'\n sku: VES-763\n name: VST-0057\n description: "LATISTE LENTEJUELAS AZUL\\r\\n"\n price_base: '760.00'\n price_sale: '1899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-11 05:25:21.073525'\n updated_at: '2019-10-11 05:25:21.106643'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000763'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '763'\n type: *3\n value: 763\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-763\n type: *7\n value: VES-763\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0057\n type: *8\n value: VST-0057\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "LATISTE LENTEJUELAS AZUL\\r\\n"\n type: *6\n value: "LATISTE LENTEJUELAS AZUL\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '760.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.76E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1899E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-10-15-21-54-23.jpg\n type: *2\n value: PHOTO-2019-10-15-21-54-23.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000763'\n type: *2\n value: '0000763'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-11 05:25:21.073525'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-10-15-21-54-23.jpg\n 3 El producto VES-763 fue modificado. 189.186.180.166 ac8c68cd-89fa-4f09-8ef6-8ee773b58440 2019-10-30 02:08:40.452152 19664 875 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '875'\n is_parent: false\n sku: BLU-875\n name: BLS-0095\n description: "PANTIBLUSA CQCQ NUDE PEACH Y NEGRA ST 8972BW\\r\\n"\n price_base: '240.0'\n price_sale: '599.0'\n img_product: PHOTO-2019-10-15-21-54-30.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000875'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-29 01:32:03.077166'\n updated_at: &12 2019-10-30 02:09:59.678217371 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '875'\n sku: BLU-875\n name: BLS-0095\n description: "PANTIBLUSA CQCQ NUDE PEACH Y NEGRA ST 8972BW\\r\\n"\n price_base: '240.00'\n price_sale: '599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-29 01:32:03.077166'\n updated_at: '2019-10-29 01:32:03.111998'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000875'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '875'\n type: *3\n value: 875\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-875\n type: *7\n value: BLU-875\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0095\n type: *8\n value: BLS-0095\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "PANTIBLUSA CQCQ NUDE PEACH Y NEGRA ST 8972BW\\r\\n"\n type: *6\n value: "PANTIBLUSA CQCQ NUDE PEACH Y NEGRA ST 8972BW\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '240.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.24E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.599E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-10-15-21-54-30.jpg\n type: *2\n value: PHOTO-2019-10-15-21-54-30.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000875'\n type: *2\n value: '0000875'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-29 01:32:03.077166'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-10-15-21-54-30.jpg\n 3 El producto BLU-875 fue modificado. 189.186.180.166 6bdf9b64-a3de-47b1-94ac-6c09440d65e4 2019-10-30 02:09:59.729904 19665 881 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '881'\n is_parent: false\n sku: VES-881\n name: VST-0062\n description: "VESTIDO CQ&CQ LT GLOD ST-9370DW\\r\\n"\n price_base: '520.0'\n price_sale: '1349.0'\n img_product: PHOTO-2019-10-15-21-54-25.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000881'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-29 01:41:18.562008'\n updated_at: &12 2019-10-30 02:17:15.053141762 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '881'\n sku: VES-881\n name: VST-0062\n description: "VESTIDO CQ&CQ LT GLOD ST-9370DW\\r\\n"\n price_base: '520.00'\n price_sale: '1349.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-29 01:41:18.562008'\n updated_at: '2019-10-29 01:41:18.598602'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000881'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '881'\n type: *3\n value: 881\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-881\n type: *7\n value: VES-881\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0062\n type: *8\n value: VST-0062\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "VESTIDO CQ&CQ LT GLOD ST-9370DW\\r\\n"\n type: *6\n value: "VESTIDO CQ&CQ LT GLOD ST-9370DW\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '520.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.52E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1349.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1349E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-10-15-21-54-25.jpg\n type: *2\n value: PHOTO-2019-10-15-21-54-25.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000881'\n type: *2\n value: '0000881'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-29 01:41:18.562008'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-10-15-21-54-25.jpg\n 3 El producto VES-881 fue modificado. 189.186.180.166 ebd41170-b2c3-4138-9329-d649ecd91fb4 2019-10-30 02:17:15.111341 19666 266 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-29\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.45.220 f2275582-fa31-4ef7-9754-b74eed5bdc22 2019-10-30 02:29:31.333865 19667 1244 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 875\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.45.220 f2275582-fa31-4ef7-9754-b74eed5bdc22 2019-10-30 02:29:31.357281 19668 267 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-29\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.45.220 5fa6ba49-976d-43e0-bd80-94979f73f923 2019-10-30 02:29:43.310569 19669 1245 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 866\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.45.220 5fa6ba49-976d-43e0-bd80-94979f73f923 2019-10-30 02:29:43.330848 19670 270 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-29\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.45.220 e481a8d6-fd37-4c26-ac09-eab0ad34cd11 2019-10-30 02:30:08.486244 19671 1246 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 886\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.45.220 e481a8d6-fd37-4c26-ac09-eab0ad34cd11 2019-10-30 02:30:08.506853 19672 1247 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 896\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.45.220 e481a8d6-fd37-4c26-ac09-eab0ad34cd11 2019-10-30 02:30:08.528826 19673 1248 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 899\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.45.220 e481a8d6-fd37-4c26-ac09-eab0ad34cd11 2019-10-30 02:30:08.556036 19674 1249 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 902\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.45.220 e481a8d6-fd37-4c26-ac09-eab0ad34cd11 2019-10-30 02:30:08.583062 19675 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-29 19:47:32.617476000 Z\n- &1 2019-10-30 01:07:34.368609000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-30 02:32:43.205161100 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946275\n mask_addr: 4294967295\nsign_in_count:\n- 828\n- 829\n 1658 \N 200.68.182.35 e95c091d-1a86-4586-b08a-1be2298b326f 2019-10-30 02:32:43.21414 19676 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rT8ye_3yFsixx7MvMzuh\n- EjyWMiyaiCJDAKzCTv4h\n 1659 \N 200.68.182.35 e95c091d-1a86-4586-b08a-1be2298b326f 2019-10-30 02:32:43.233372 19721 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-29 17:56:59.388828000 Z\n- &1 2019-10-29 18:34:21.655755000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-30 17:12:16.355488431 Z\nsign_in_count:\n- 362\n- 363\n 729 \N 187.149.45.220 cea4ff60-b860-4452-a73b-8b58020d005a 2019-10-30 17:12:16.364985 19722 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 6h3d5SEduRSC3_fgjv4Y\n- X_Vp9_EYXAwxcrf1uT__\n 730 \N 187.149.45.220 cea4ff60-b860-4452-a73b-8b58020d005a 2019-10-30 17:12:16.383174 19677 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-30 01:07:34.368609000 Z\n- &1 2019-10-30 02:32:43.205161000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-30 02:33:23.738926611 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946275\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946275\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\nsign_in_count:\n- 829\n- 830\n 1660 \N 189.186.180.166 5c013ebc-86bd-499e-b820-fbb419ebbf32 2019-10-30 02:33:23.748335 19678 4 User \N \N 4 User \N update ---\nunique_session_id:\n- EjyWMiyaiCJDAKzCTv4h\n- 4gR1KjjSLeDbS23DcUGj\n 1661 \N 189.186.180.166 5c013ebc-86bd-499e-b820-fbb419ebbf32 2019-10-30 02:33:23.766978 19679 903 Product \N \N 4 User \N create ---\nsku: CHA-903\nname: CHA-0021\ndescription: "SACO JELOUSE TOMATO NEGRO CON BLANCO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.44E3\nprice_sale: !ruby/object:BigDecimal 18:0.1099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-903 fue creado. 189.186.180.166 39612432-04aa-48c8-bb96-3bc047fa2583 2019-10-30 02:34:17.703609 19680 903 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000903'\n 2 \N 189.186.180.166 39612432-04aa-48c8-bb96-3bc047fa2583 2019-10-30 02:34:17.74026 19681 904 Product \N \N 4 User \N create ---\nsku: CHA-904\nname: CHA-0022\ndescription: "SUETER DE COLORES LELIS ST-4883\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.32E3\nprice_sale: !ruby/object:BigDecimal 18:0.789E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-904 fue creado. 189.186.180.166 5ce7b9a9-10e1-4137-96cd-84c79a595556 2019-10-30 02:35:09.531498 19682 904 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000904'\n 2 \N 189.186.180.166 5ce7b9a9-10e1-4137-96cd-84c79a595556 2019-10-30 02:35:09.564955 19683 181 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-23\namount: !ruby/object:BigDecimal 18:0.456E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.456E4\nobservations: ''\npurchase_date: 2019-10-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-23 por $ 4560.0 MXN creada. 189.186.180.166 4cd229c0-ab03-4f71-a56a-041e79348d06 2019-10-30 02:35:16.669234 19684 273 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-10-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.180.166 da0e0f1a-5ccf-497d-815e-1677b991798b 2019-10-30 02:35:49.541995 19685 274 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-10-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 189.186.180.166 6f06ce0d-faf5-4795-9584-c6a88addbc0f 2019-10-30 02:36:15.447527 19686 1329 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 539\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-10-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-703\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.45.220 8ef46322-537b-4dfb-8383-628e2b0dcef1 2019-10-30 02:36:32.294877 19687 1244 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.45.220 8ef46322-537b-4dfb-8383-628e2b0dcef1 2019-10-30 02:36:32.321158 19688 1329 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.45.220 19047406-ed24-40ae-9564-8e3b60190873 2019-10-30 02:36:37.62279 19689 1848 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 539\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 1329\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-703\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-703 187.149.45.220 19047406-ed24-40ae-9564-8e3b60190873 2019-10-30 02:36:37.644558 19690 540 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 539\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1198E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.992E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1992E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.45.220 d26518b6-71d3-4428-b443-ab972b9b54da 2019-10-30 02:58:15.282479 19691 539 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.45.220 d26518b6-71d3-4428-b443-ab972b9b54da 2019-10-30 02:58:15.297635 19692 541 CashOut \N \N 26 User \N create ---\nopen_cash_register_id: 540\nuser_id: 26\namount_in: !ruby/object:BigDecimal 18:0.1298E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.64E3\nphysical_cash: !ruby/object:BigDecimal 18:0.164E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.45.220 0cb0b144-cc7a-402d-831d-5f1d80fad2f0 2019-10-30 03:02:04.694412 19693 540 OpenCashRegister \N \N 26 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.45.220 0cb0b144-cc7a-402d-831d-5f1d80fad2f0 2019-10-30 03:02:04.709072 19694 542 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 538\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1322E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1322E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.180.166 90c0d518-6285-433c-9826-c46209027257 2019-10-30 03:03:23.29196 19695 538 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.180.166 90c0d518-6285-433c-9826-c46209027257 2019-10-30 03:03:23.30774 19723 541 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.992E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 992.0 187.149.45.220 0dcbdc7d-2910-4e0a-8dda-8131450f8bf7 2019-10-30 17:12:53.772762 20088 299 Product \N \N 4 User \N update ---\nsku:\n- BLU-PRM-640\n- BLU-909\ncategory_id:\n- 20\n- 7\n 4 El producto BLU-PRM-640 fue modificado. 187.149.74.215 69074e96-1f85-46d6-a483-c83f317f5576 2019-11-03 19:21:03.734543 19696 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-30 02:32:43.205161000 Z\n- &1 2019-10-30 02:33:23.738926000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-30 03:56:52.215953697 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946275\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\nsign_in_count:\n- 830\n- 831\n 1662 \N 189.186.204.250 5e397586-6cc9-421b-9215-d55d5e2159be 2019-10-30 03:56:52.233094 19697 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4gR1KjjSLeDbS23DcUGj\n- Bnj9JsrtxCPwnCxTvfJN\n 1663 \N 189.186.204.250 5e397586-6cc9-421b-9215-d55d5e2159be 2019-10-30 03:56:52.260111 19698 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-10-28 18:26:07.912176000 Z\n- &1 2019-10-29 18:55:33.945537000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-30 04:04:01.508413273 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\nsign_in_count:\n- 11\n- 12\n 24 \N 189.186.204.250 e3674f6e-fab5-4378-abb3-efc1129abe24 2019-10-30 04:04:01.516353 19699 26 User \N \N 26 User \N update ---\nunique_session_id:\n- woxSryxVWayV3P5W85sk\n- zNNxfSe9QyJgB3oQfyz1\n 25 \N 189.186.204.250 e3674f6e-fab5-4378-abb3-efc1129abe24 2019-10-30 04:04:01.532622 19700 274 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-29\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 189.186.204.250 cb7d6f05-52b3-4cb0-9c9c-fac8059caff5 2019-10-30 04:04:19.255835 19701 1250 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 903\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.204.250 cb7d6f05-52b3-4cb0-9c9c-fac8059caff5 2019-10-30 04:04:19.282081 19702 272 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-29\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 189.186.204.250 12cec4e8-5001-4a34-b577-779c42ea0184 2019-10-30 04:04:34.752198 19703 1251 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 900\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.204.250 12cec4e8-5001-4a34-b577-779c42ea0184 2019-10-30 04:04:34.77045 19704 271 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-29\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 189.186.204.250 4ea65656-c85d-443a-8e3e-d63d2b530dbe 2019-10-30 04:04:48.035793 19705 1252 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 891\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.9E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.204.250 4ea65656-c85d-443a-8e3e-d63d2b530dbe 2019-10-30 04:04:48.058018 19706 268 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-29\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 189.186.204.250 4d9924f9-3957-4f07-b6e2-f5ef0e8d97dc 2019-10-30 04:05:05.136717 19707 1253 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 875\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.204.250 4d9924f9-3957-4f07-b6e2-f5ef0e8d97dc 2019-10-30 04:05:05.158965 19708 1254 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 874\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.204.250 4d9924f9-3957-4f07-b6e2-f5ef0e8d97dc 2019-10-30 04:05:05.182211 19709 1255 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 873\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.204.250 4d9924f9-3957-4f07-b6e2-f5ef0e8d97dc 2019-10-30 04:05:05.203794 19710 1256 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 869\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.204.250 4d9924f9-3957-4f07-b6e2-f5ef0e8d97dc 2019-10-30 04:05:05.227856 19711 275 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-10-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 189.186.204.250 1f8d13cb-ed04-4d91-bc52-c415831184b4 2019-10-30 04:22:08.141598 19712 275 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-29\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 189.186.204.250 0983e537-3774-4cee-93ff-19526d4e430c 2019-10-30 04:22:44.326884 19713 1257 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 898\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.204.250 0983e537-3774-4cee-93ff-19526d4e430c 2019-10-30 04:22:44.346471 19714 1258 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 897\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.204.250 0983e537-3774-4cee-93ff-19526d4e430c 2019-10-30 04:22:44.366761 19715 1259 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 901\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.204.250 0983e537-3774-4cee-93ff-19526d4e430c 2019-10-30 04:22:44.387329 19716 1253 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.204.250 0983e537-3774-4cee-93ff-19526d4e430c 2019-10-30 04:22:44.403736 19717 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-30 02:33:23.738926000 Z\n- &1 2019-10-30 03:56:52.215953000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-30 15:06:37.469982124 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\nsign_in_count:\n- 831\n- 832\n 1664 \N 189.186.204.250 43bc04c2-7c6f-4746-886f-8aaa7f1f1f3d 2019-10-30 15:06:37.507519 19718 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Bnj9JsrtxCPwnCxTvfJN\n- SR8ezDbwHwEdaNfx5rL-\n 1665 \N 189.186.204.250 43bc04c2-7c6f-4746-886f-8aaa7f1f1f3d 2019-10-30 15:06:37.532968 19724 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-27 17:05:25.612448000 Z\n- &1 2019-10-29 17:15:40.571768000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-30 17:15:56.854538240 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\nsign_in_count:\n- 49\n- 50\n 100 \N 189.186.180.166 e4b04fff-a9d6-4a57-93aa-bbf45297d3ed 2019-10-30 17:15:56.864831 19725 23 User \N \N 23 User \N update ---\nunique_session_id:\n- Suig7t7idM8EvNAkeCVW\n- 6ehg1sAFkyRvmQaoi_kz\n 101 \N 189.186.180.166 e4b04fff-a9d6-4a57-93aa-bbf45297d3ed 2019-10-30 17:15:56.884733 19726 542 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1322E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1322.0 189.186.180.166 06c9caee-5015-422d-8733-39f1c9e4788b 2019-10-30 17:16:26.238442 19727 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-10-29 18:55:33.945537000 Z\n- &1 2019-10-30 04:04:01.508413000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-30 17:27:40.914342721 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\nsign_in_count:\n- 12\n- 13\n 26 \N 187.149.45.220 3992e3e9-c3ee-43aa-ac86-cd950e9f403d 2019-10-30 17:27:40.923093 19728 26 User \N \N 26 User \N update ---\nunique_session_id:\n- zNNxfSe9QyJgB3oQfyz1\n- EVbXsFKDiXyhVz3CnLiD\n 27 \N 187.149.45.220 3992e3e9-c3ee-43aa-ac86-cd950e9f403d 2019-10-30 17:27:40.938735 19729 720 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.45.220 658fe78f-27f2-49e6-a2c4-a4cca2a47593 2019-10-30 17:28:50.450402 19730 720 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.45.220 63efcb19-7b08-4567-87e6-8d5ab0faf68e 2019-10-30 17:28:57.625571 19731 276 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-10-30\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de S BY SUO a Almacen central creado. 187.149.45.220 ad80c99a-5b69-4f15-99f0-32c5e778edad 2019-10-30 17:28:58.293696 19732 674 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.45.220 088b9dce-1dbb-4f3a-a223-bb4d4dad95d9 2019-10-30 17:34:28.967516 19733 476 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.45.220 61fe8b70-6dda-4ea8-b88c-e504f48aa020 2019-10-30 17:36:11.400117 19734 476 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.45.220 31c6ee4c-2bb2-4df2-966a-d47078fbd0c6 2019-10-30 17:36:15.697539 19735 477 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.45.220 18558815-bf02-4ff5-8f8f-796d0905c206 2019-10-30 17:39:35.332263 19736 721 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.45.220 1dc66e42-e025-433e-b46e-801821cb37c7 2019-10-30 17:40:25.577408 19737 721 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.45.220 fd2139b4-01a7-43f9-951d-df3f36e04b5f 2019-10-30 17:40:28.331193 19738 494 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.45.220 309cbcb9-27b8-48c0-8930-6523178869f0 2019-10-30 17:46:14.661565 19739 683 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.45.220 9eaba51c-c2f4-4ea5-a4a6-84a615cc330a 2019-10-30 17:47:20.033011 19740 683 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.45.220 687520ae-b756-4f1a-a9ff-30a3e0397081 2019-10-30 17:47:26.431734 19741 277 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-10-30\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de S BY SUO a Almacen central creado. 187.149.45.220 fa24b64f-483c-48a1-ae89-0ad3bb8605cd 2019-10-30 17:57:53.753839 19742 220 Customer \N \N 2 User \N create ---\nnick_name: MARVILLA ARELLANO CANISALES\nphone: "(667) 293-8690"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARVILLA ARELLANO CANISALES fue registrado. 187.149.45.220 f06936d6-10c1-4e24-824d-b33b1f88c0a0 2019-10-30 18:30:57.582955 19743 1330 Sale \N \N 2 User \N create ---\ncustomer_id: 220\nuser_id: 2\nopen_cash_register_id: 541\namount: !ruby/object:BigDecimal 18:0.928E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.928E3\nstatus: 0\ndate_sale: 2019-10-30\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-704\nexpiration_date: 2019-12-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.45.220 2b9b9a89-19ed-4f4c-a143-d5c2cee03e58 2019-10-30 18:32:29.321159 19744 1105 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.45.220 2b9b9a89-19ed-4f4c-a143-d5c2cee03e58 2019-10-30 18:32:29.366266 19745 1156 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.45.220 2b9b9a89-19ed-4f4c-a143-d5c2cee03e58 2019-10-30 18:32:29.398302 19746 1849 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 541\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1330\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-704\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-704 187.149.45.220 b1bfa72b-d26f-4619-a0b3-c902cc9491d5 2019-10-30 18:32:37.905616 19747 1849 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 541\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1330\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-704\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.45.220 123debfe-21b3-4ad0-a5b9-9ea2b7fa6a80 2019-10-30 18:33:07.119987 19875 545 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 fed3e397-3a0e-4ef0-a3e1-f684d09a2ee8 2019-11-01 02:59:28.37186 20089 117 Product \N \N 4 User \N update ---\nsku:\n- BLU-PRM-640\n- BLU-909\ncategory_id:\n- 20\n- 7\n 4 El producto BLU-PRM-640 fue modificado. 187.149.74.215 51abf1a0-78fc-4faa-b411-173ccbd9e0e5 2019-11-03 19:21:38.395869 19748 1850 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 541\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.228E3\nmove_type: '1'\nsale_id: 1330\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-704\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.228E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-704 187.149.45.220 f7aaa205-77d8-4e85-bb06-282b92b0fc4b 2019-10-30 18:33:21.788128 19749 1330 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.45.220 737dc63e-545b-4733-82e6-37761756c1bb 2019-10-30 18:33:23.211179 19750 543 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.54E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 540.0 187.149.45.220 e87d6061-ca39-40f5-afb0-857133794f5c 2019-10-30 18:52:14.462626 19751 1331 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 543\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-10-30\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-534\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.45.220 372afecb-3865-42de-94f4-e93cfdcc5c26 2019-10-30 21:10:50.743832 19752 806 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 29 \N 187.149.45.220 372afecb-3865-42de-94f4-e93cfdcc5c26 2019-10-30 21:10:50.771375 19753 1331 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.45.220 b3c93afc-3ca4-41ce-9edb-ced956edcf80 2019-10-30 21:10:55.867814 19754 1851 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 543\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1331\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-534\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-534 187.149.45.220 b3c93afc-3ca4-41ce-9edb-ced956edcf80 2019-10-30 21:10:55.887445 19755 497 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 187.149.45.220 bcf4240b-6c2d-4d5f-ab65-dcf95f558e7d 2019-10-30 21:37:26.701588 19756 278 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-10-30\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de S BY SUO a Almacen central creado. 187.149.45.220 fdbdd924-c132-495d-92f1-5681ef61b9e5 2019-10-30 21:45:11.888446 19757 399 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.45.220 4acdcaba-701d-4532-8af2-6888168f8905 2019-10-30 21:45:30.349394 19758 399 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.45.220 cb23c30c-2291-4e64-a933-1072362a2837 2019-10-30 21:45:33.515497 19759 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-10-28 17:12:05.946813000 Z\n- &1 2019-10-28 20:06:23.148466000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-30 22:28:15.650270483 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\nsign_in_count:\n- 9\n- 10\n 20 \N 187.149.45.220 685c05c7-ad5e-449b-9f55-1d86989f4c97 2019-10-30 22:28:15.657954 19760 27 User \N \N 27 User \N update ---\nunique_session_id:\n- JW1GGJV_jxSFxry-AmyU\n- zatgyEMuMxAZbMd9rzzd\n 21 \N 187.149.45.220 685c05c7-ad5e-449b-9f55-1d86989f4c97 2019-10-30 22:28:15.671716 19761 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-10-24 00:00:21.869204000 Z\n- &1 2019-10-25 21:57:16.228738000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-30 23:43:49.056557907 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\nsign_in_count:\n- 96\n- 97\n 194 \N 187.149.45.220 1d794d6a-7e4d-44e3-9a05-aae9fba2585e 2019-10-30 23:43:49.063283 19762 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 4bofpquz3PgQy7x6HHpW\n- q-Ca9P1pkuyxt8Fa_52c\n 195 \N 187.149.45.220 1d794d6a-7e4d-44e3-9a05-aae9fba2585e 2019-10-30 23:43:49.07748 19763 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-30 15:06:37.469982000 Z\n- &1 2019-10-30 15:06:41.189156000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-31 01:18:07.536472964 Z\nsign_in_count:\n- 833\n- 834\n 1668 \N 189.186.204.250 dfbf56f0-4347-49f5-ac5a-e5eb71d053de 2019-10-31 01:18:07.570249 19764 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _avoLYtDsRFySvfzRAa7\n- 3NTpuMpsFDxztKBVWzHk\n 1669 \N 189.186.204.250 dfbf56f0-4347-49f5-ac5a-e5eb71d053de 2019-10-31 01:18:07.595335 19765 1332 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 542\namount: !ruby/object:BigDecimal 18:0.589E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2019-10-30\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-92\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.180.166 6dc5c04e-c36e-4fe0-85db-d050e0f1fcdc 2019-10-31 01:27:27.13207 19766 1132 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.180.166 6dc5c04e-c36e-4fe0-85db-d050e0f1fcdc 2019-10-31 01:27:27.213327 19767 1332 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.180.166 066c472c-0fa9-4a54-b389-b6790fb36c68 2019-10-31 01:28:19.273005 19768 1852 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 542\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.589E3\nmove_type: '1'\nsale_id: 1332\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-92\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.589E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-92 189.186.180.166 066c472c-0fa9-4a54-b389-b6790fb36c68 2019-10-31 01:28:19.294412 19769 1333 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 543\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-10-30\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-535\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.45.220 f4276e71-3b5a-4800-ad2e-8128bf60789c 2019-10-31 02:15:51.0141 19770 1083 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.45.220 f4276e71-3b5a-4800-ad2e-8128bf60789c 2019-10-31 02:15:51.047524 19771 1333 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.45.220 3d6908d7-db74-4c7f-8011-3978259e7fbb 2019-10-31 02:16:17.554785 19961 905 Product \N \N 26 User \N update ---\nbarcode:\n- ''\n- '0000905'\n 2 \N 187.149.74.215 912f0c95-411c-4361-a842-24cac4055459 2019-11-02 21:25:21.826552 19772 1853 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 543\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1333\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-535\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-535 187.149.45.220 3d6908d7-db74-4c7f-8011-3978259e7fbb 2019-10-31 02:16:17.593574 19773 1334 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 543\namount: !ruby/object:BigDecimal 18:0.75E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.75E2\nstatus: 0\ndate_sale: 2019-10-30\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-536\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.45.220 c55d8961-ca71-4c05-9a05-eeeec7f17923 2019-10-31 02:18:09.122065 19774 1216 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.45.220 c55d8961-ca71-4c05-9a05-eeeec7f17923 2019-10-31 02:18:09.160701 19775 1334 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.45.220 5133caf2-64de-44b7-95d3-b02d8bae8078 2019-10-31 02:18:50.177046 19776 1854 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 543\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.75E2\nmove_type: '1'\nsale_id: 1334\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-536\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.125E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-536 187.149.45.220 5133caf2-64de-44b7-95d3-b02d8bae8078 2019-10-31 02:18:50.207048 19777 543 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 543\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.1473E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1023E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2023E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.45.220 94c5164b-2a49-43ec-b85f-a39c762c2688 2019-10-31 03:00:43.748091 19778 543 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.45.220 94c5164b-2a49-43ec-b85f-a39c762c2688 2019-10-31 03:00:43.761901 19779 544 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 541\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.228E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.4E3\ncash_fund: !ruby/object:BigDecimal 18:0.82E3\nphysical_cash: !ruby/object:BigDecimal 18:0.122E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.45.220 87c278a5-6672-4972-b48c-7e33ccf616ec 2019-10-31 03:02:06.497693 19780 541 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.45.220 87c278a5-6672-4972-b48c-7e33ccf616ec 2019-10-31 03:02:06.509741 19781 204 Expense \N \N 23 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 542\nquantity: !ruby/object:BigDecimal 18:0.16E3\nstatus: 1\nobservations: ENVIO $100 A GUERRERO Y 60 DE PAQUETE\nexpense_date: 2019-10-30\nexpense_code: PV3-E-6\n 1 Egreso por 160.0 registrado 189.186.180.166 479da8f0-b862-4efa-b65a-76efffc31fad 2019-10-31 03:10:06.794061 19782 1855 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 542\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.16E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 204\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.180.166 479da8f0-b862-4efa-b65a-76efffc31fad 2019-10-31 03:10:06.813418 19783 545 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 542\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.589E3\namount_out: !ruby/object:BigDecimal 18:0.16E3\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.1051E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1751E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.180.166 9b8f023b-4fee-41b3-a3f5-d67fff66ad19 2019-10-31 03:16:11.809016 19784 542 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.180.166 9b8f023b-4fee-41b3-a3f5-d67fff66ad19 2019-10-31 03:16:11.821695 19785 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-30 15:06:41.189156000 Z\n- &1 2019-10-31 01:18:07.536472000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-31 16:34:26.666665540 Z\nsign_in_count:\n- 834\n- 835\n 1670 \N 189.186.204.250 2af59b08-99f0-44d1-878b-629aa71be76f 2019-10-31 16:34:26.699792 19786 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3NTpuMpsFDxztKBVWzHk\n- KkE5wT7KgEvuyMwGd5jF\n 1671 \N 189.186.204.250 2af59b08-99f0-44d1-878b-629aa71be76f 2019-10-31 16:34:26.726454 19787 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-10-27 19:27:49.658375000 Z\n- &1 2019-10-28 18:25:43.731052000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-31 16:40:26.139001289 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\nsign_in_count:\n- 25\n- 26\n 52 \N 189.186.204.250 48b86099-203f-4ebe-b11e-12433ddbc6f4 2019-10-31 16:40:26.146532 19788 25 User \N \N 25 User \N update ---\nunique_session_id:\n- vrsBszDycjysv5x7omBq\n- pioV2FsP9jbFZ8oFkaYM\n 53 \N 189.186.204.250 48b86099-203f-4ebe-b11e-12433ddbc6f4 2019-10-31 16:40:26.1625 19789 273 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-10-31\n 2 Se dio entrada a traspaso de Almacen central a SUO 189.186.204.250 5109116b-c7df-4864-add6-9b220c53b194 2019-10-31 16:40:42.223102 19790 1260 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 904\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.204.250 5109116b-c7df-4864-add6-9b220c53b194 2019-10-31 16:40:42.251923 19791 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-29 17:15:40.571768000 Z\n- &1 2019-10-30 17:15:56.854538000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-31 17:11:20.349626528 Z\nsign_in_count:\n- 50\n- 51\n 102 \N 189.186.180.166 0d49ea3f-76bb-4c4a-9f23-f195381104d5 2019-10-31 17:11:20.355229 19792 23 User \N \N 23 User \N update ---\nunique_session_id:\n- 6ehg1sAFkyRvmQaoi_kz\n- TydhBy1ZJH_sRA3eSTqy\n 103 \N 189.186.180.166 0d49ea3f-76bb-4c4a-9f23-f195381104d5 2019-10-31 17:11:20.373437 19793 544 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1051E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1051.0 189.186.180.166 445261e8-e09b-4125-9f89-7b208c1c1e2e 2019-10-31 17:12:25.401872 19794 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-10-30 04:04:01.508413000 Z\n- &1 2019-10-30 17:27:40.914342000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-31 18:38:29.728275856 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121354\n mask_addr: 4294967295\nsign_in_count:\n- 13\n- 14\n 28 \N 187.149.66.202 a01e4f00-88f7-40a1-861f-d510695d49d6 2019-10-31 18:38:29.741658 19795 26 User \N \N 26 User \N update ---\nunique_session_id:\n- EVbXsFKDiXyhVz3CnLiD\n- 67cCPkrPK72M8N5pwtgx\n 29 \N 187.149.66.202 a01e4f00-88f7-40a1-861f-d510695d49d6 2019-10-31 18:38:29.760281 19796 545 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.1023E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1023.0 187.149.66.202 0084b0a7-4e80-4e27-9d39-77cdc2f6860b 2019-10-31 18:39:29.439961 19797 1856 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 545\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1241\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.3E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-499 187.149.66.202 b8b29197-0766-4dd4-a721-18ac6811d162 2019-10-31 18:41:43.578659 19798 1857 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 545\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 1241\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-499 187.149.66.202 6a4bcbfd-dd60-4404-8646-38f2542f7e29 2019-10-31 18:41:59.374002 19799 1858 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 545\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 1241\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-499 187.149.66.202 d1b0a3ca-cdc4-4906-a2b1-2104925ac60f 2019-10-31 18:41:59.4433 19800 1857 CashRegistersMove \N \N 26 User \N destroy ---\nopen_cash_register_id: 545\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 1241\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.66.202 db180a03-22ba-4b0a-ad5f-459a11d2799b 2019-10-31 18:42:05.947959 19801 1856 CashRegistersMove \N \N 26 User \N destroy ---\nopen_cash_register_id: 545\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1241\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.3E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.66.202 cc47e38e-2dac-46fe-90ef-d9561e0ec397 2019-10-31 18:42:12.484316 19802 1241 Sale \N \N 26 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.66.202 88b8e8a7-a97c-4783-ad57-8bb300e0415f 2019-10-31 18:42:14.58501 19803 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-29 18:34:21.655755000 Z\n- &1 2019-10-30 17:12:16.355488000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-31 20:04:56.158591034 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121354\n mask_addr: 4294967295\nsign_in_count:\n- 363\n- 364\n 731 \N 187.149.66.202 dafa3bfb-3a81-4fd6-b697-db2b21df1424 2019-10-31 20:04:56.16504 19804 2 User \N \N 2 User \N update ---\nunique_session_id:\n- X_Vp9_EYXAwxcrf1uT__\n- UDy7xt2FgikyMfxzU4Ud\n 732 \N 187.149.66.202 dafa3bfb-3a81-4fd6-b697-db2b21df1424 2019-10-31 20:04:56.179232 19805 546 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.82E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 820.0 187.149.66.202 b93de877-36ab-4174-b82e-362c872dcd98 2019-10-31 20:05:36.800206 19806 221 Customer \N \N 2 User \N create ---\nnick_name: RITA NUÑEZ\nphone: "(667) 191-7801"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente RITA NUÑEZ fue registrado. 187.149.66.202 67ef5789-5f62-4859-9c9a-05c6995e2b64 2019-10-31 20:06:50.511384 19807 1335 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 546\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-10-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-705\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.202 2434d29e-c916-46b2-b88c-038923cb24bc 2019-10-31 20:07:55.295719 19808 1140 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.66.202 2434d29e-c916-46b2-b88c-038923cb24bc 2019-10-31 20:07:55.335902 19809 1335 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.202 45ab9c97-28a8-41cf-912e-8ff04d7ba7ca 2019-10-31 20:08:13.032893 19810 1859 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 546\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.569E3\nmove_type: '1'\nsale_id: 1335\ncardnumber: 5154\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-705\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-705 187.149.66.202 45ab9c97-28a8-41cf-912e-8ff04d7ba7ca 2019-10-31 20:08:13.056367 19811 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-31 01:18:07.536472000 Z\n- &1 2019-10-31 16:34:26.666665000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-31 20:12:22.792670278 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946170\n mask_addr: 4294967295\nsign_in_count:\n- 835\n- 836\n 1672 \N 200.68.181.186 55c4ca80-427b-456f-b39c-e3700e4a37ea 2019-10-31 20:12:22.801596 19812 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KkE5wT7KgEvuyMwGd5jF\n- UJ7yeJCsvfBSA3-ELXBs\n 1673 \N 200.68.181.186 55c4ca80-427b-456f-b39c-e3700e4a37ea 2019-10-31 20:12:22.819941 19962 1261 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 905\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 912f0c95-411c-4361-a842-24cac4055459 2019-11-02 21:25:21.865013 19813 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-31 16:34:26.666665000 Z\n- &1 2019-10-31 20:12:22.792670000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-31 21:23:09.512110407 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946170\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946170\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121354\n mask_addr: 4294967295\nsign_in_count:\n- 836\n- 837\n 1674 \N 187.149.66.202 f5900188-d52c-49f2-8e92-60280c048560 2019-10-31 21:23:09.520869 19814 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UJ7yeJCsvfBSA3-ELXBs\n- gBnwexKuBzvdqebhi-Jf\n 1675 \N 187.149.66.202 f5900188-d52c-49f2-8e92-60280c048560 2019-10-31 21:23:09.539154 19815 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-10-30 17:27:40.914342000 Z\n- &1 2019-10-31 18:38:29.728275000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-31 21:25:59.122822623 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121354\n mask_addr: 4294967295\nsign_in_count:\n- 14\n- 15\n 30 \N 187.149.66.202 0aba971a-9edf-4ebf-b49e-e74511a986c2 2019-10-31 21:25:59.130332 19816 26 User \N \N 26 User \N update ---\nunique_session_id:\n- 67cCPkrPK72M8N5pwtgx\n- XF7ngeJQgZNG3RwxzmHo\n 31 \N 187.149.66.202 0aba971a-9edf-4ebf-b49e-e74511a986c2 2019-10-31 21:25:59.143367 19817 1336 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 546\namount: !ruby/object:BigDecimal 18:0.2388E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2388E4\nstatus: 0\ndate_sale: 2019-10-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-706\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.202 aa4e14ba-d64e-48ca-859a-b7bb64c005d8 2019-10-31 21:26:33.379344 19818 1066 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.66.202 aa4e14ba-d64e-48ca-859a-b7bb64c005d8 2019-10-31 21:26:33.419025 19819 1246 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.66.202 aa4e14ba-d64e-48ca-859a-b7bb64c005d8 2019-10-31 21:26:33.447932 19820 1336 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.202 98ff1570-a3fd-4fd5-94d3-00b215e1df31 2019-10-31 21:26:39.459227 19821 1860 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 546\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2388E4\nmove_type: '1'\nsale_id: 1336\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-706\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2388E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-706 187.149.66.202 98ff1570-a3fd-4fd5-94d3-00b215e1df31 2019-10-31 21:26:39.480391 19822 1861 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 546\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 1327\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.399E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-701 187.149.66.202 dbd2be71-047a-4aae-a6d1-7e8377381e3e 2019-10-31 21:33:28.554337 19823 1327 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.66.202 0229d1c7-8d41-4dc1-9c58-f36d14a87463 2019-10-31 21:33:34.030942 19824 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-10-25 21:19:46.092821000 Z\n- &1 2019-10-29 20:32:59.270637000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-31 21:41:38.770546015 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121354\n mask_addr: 4294967295\nsign_in_count:\n- 9\n- 10\n 20 \N 187.149.66.202 3024d43b-bbd9-48ff-9f62-d1ae97ef8e03 2019-10-31 21:41:38.779618 19825 24 User \N \N 24 User \N update ---\nunique_session_id:\n- LNc8uN5Egxk1fxu5ACF6\n- hZu2hUp5erRz7Juzu9HG\n 21 \N 187.149.66.202 3024d43b-bbd9-48ff-9f62-d1ae97ef8e03 2019-10-31 21:41:38.799152 19826 1337 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 545\namount: !ruby/object:BigDecimal 18:0.169E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.169E3\nstatus: 0\ndate_sale: 2019-10-31\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-537\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.202 158d9390-d3bf-461f-a2a2-b8d539aefada 2019-10-31 21:42:37.023312 19827 1211 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.66.202 158d9390-d3bf-461f-a2a2-b8d539aefada 2019-10-31 21:42:37.053238 19828 1337 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.202 1663a261-a366-4f46-8968-b02a92912e19 2019-10-31 21:42:43.83527 19829 1862 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 545\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.169E3\nmove_type: '1'\nsale_id: 1337\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-537\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.169E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-537 187.149.66.202 1663a261-a366-4f46-8968-b02a92912e19 2019-10-31 21:42:43.867034 19830 1338 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 545\namount: !ruby/object:BigDecimal 18:0.119E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.119E3\nstatus: 0\ndate_sale: 2019-10-31\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-538\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.202 f2417edc-74fc-46a4-ac99-8626810aef22 2019-10-31 21:45:19.225982 19831 1214 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.66.202 f2417edc-74fc-46a4-ac99-8626810aef22 2019-10-31 21:45:19.25058 19832 1338 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.202 6566c6af-d118-4dc7-9e8b-fdb213334536 2019-10-31 21:45:35.591841 19833 1863 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 545\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.119E3\nmove_type: '1'\nsale_id: 1338\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-538\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.119E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-538 187.149.66.202 6566c6af-d118-4dc7-9e8b-fdb213334536 2019-10-31 21:45:35.616424 20090 69 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 187.149.74.215 569b6159-3a07-4338-ba4d-d9d6fd5cd3b8 2019-11-03 19:23:11.74271 19834 1339 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 546\namount: !ruby/object:BigDecimal 18:0.119E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.119E3\nstatus: 0\ndate_sale: 2019-10-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-707\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.202 b7aad316-a360-4ae1-bf91-ae794dd524c7 2019-10-31 21:46:32.476128 19835 1201 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.66.202 b7aad316-a360-4ae1-bf91-ae794dd524c7 2019-10-31 21:46:32.503517 19836 1339 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.202 9aff9cfe-be88-45ce-b925-bbc7e81e70f0 2019-10-31 21:46:38.113191 19837 1864 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 546\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.119E3\nmove_type: '1'\nsale_id: 1339\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-707\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.119E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-707 187.149.66.202 9aff9cfe-be88-45ce-b925-bbc7e81e70f0 2019-10-31 21:46:38.134562 19838 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-31 20:12:22.792670000 Z\n- &1 2019-10-31 21:23:09.512110000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-31 22:01:58.288259114 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946170\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121354\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121354\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938117\n mask_addr: 4294967295\nsign_in_count:\n- 837\n- 838\n 1676 \N 200.68.150.69 1fa68d8e-2afb-436d-b26e-156443f4f646 2019-10-31 22:01:58.297453 19839 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gBnwexKuBzvdqebhi-Jf\n- B84LeqysZRAGhSKjnxzM\n 1677 \N 200.68.150.69 1fa68d8e-2afb-436d-b26e-156443f4f646 2019-10-31 22:01:58.316352 19840 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-31 21:23:09.512110000 Z\n- &1 2019-10-31 22:01:58.288259000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-31 22:02:33.727641451 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121354\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938117\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938117\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946307\n mask_addr: 4294967295\nsign_in_count:\n- 838\n- 839\n 1678 \N 200.68.182.67 af33e8f6-8331-42e4-a8e7-545c34a25816 2019-10-31 22:02:33.735719 19841 4 User \N \N 4 User \N update ---\nunique_session_id:\n- B84LeqysZRAGhSKjnxzM\n- Pyx1YJmdvjTCouGzfYW8\n 1679 \N 200.68.182.67 af33e8f6-8331-42e4-a8e7-545c34a25816 2019-10-31 22:02:33.751209 19842 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-31 22:01:58.288259000 Z\n- &1 2019-10-31 22:02:33.727641000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-31 22:17:07.699689825 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938117\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946307\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946307\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938524\n mask_addr: 4294967295\nsign_in_count:\n- 839\n- 840\n 1680 \N 200.68.151.220 6440c3f5-a683-4364-aaac-32a44c2ec60b 2019-10-31 22:17:07.7084 19843 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Pyx1YJmdvjTCouGzfYW8\n- GwNrpSBMwbh-eY55yLSC\n 1681 \N 200.68.151.220 6440c3f5-a683-4364-aaac-32a44c2ec60b 2019-10-31 22:17:07.724985 19844 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-10-25 21:57:16.228738000 Z\n- &1 2019-10-30 23:43:49.056557000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-10-31 22:22:58.847493671 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121354\n mask_addr: 4294967295\nsign_in_count:\n- 97\n- 98\n 196 \N 187.149.66.202 c0ca07ac-699a-47cb-b04c-c749eb89d090 2019-10-31 22:22:58.855326 19845 1 User \N \N 1 User \N update ---\nunique_session_id:\n- q-Ca9P1pkuyxt8Fa_52c\n- iSQYMwD-z6DjYQNjymPc\n 197 \N 187.149.66.202 c0ca07ac-699a-47cb-b04c-c749eb89d090 2019-10-31 22:22:58.870091 19846 1340 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 545\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-10-31\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-539\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.202 8cb58fce-ea4e-4802-a33e-2b55d08ce298 2019-10-31 22:28:35.63423 19847 1256 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.66.202 8cb58fce-ea4e-4802-a33e-2b55d08ce298 2019-10-31 22:28:35.660683 19848 1340 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.202 20e24236-27b7-4409-a024-35b23cd0d80d 2019-10-31 22:28:57.012058 19849 1865 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 545\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 1340\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-539\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-539 187.149.66.202 20e24236-27b7-4409-a024-35b23cd0d80d 2019-10-31 22:28:57.033306 19850 1341 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 544\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2019-10-31\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-93\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.180.166 13d9efa0-6d5c-406f-af5c-ed72d290bb2a 2019-10-31 22:34:56.715806 19851 818 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.72E2\n- !ruby/object:BigDecimal 18:0.71E2\n 9 \N 189.186.180.166 13d9efa0-6d5c-406f-af5c-ed72d290bb2a 2019-10-31 22:34:56.743628 19852 1341 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.180.166 a728e960-6980-46f1-9ae5-bfe9ef59c042 2019-10-31 22:35:04.409513 19853 1866 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 544\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 1341\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-93\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-93 189.186.180.166 a728e960-6980-46f1-9ae5-bfe9ef59c042 2019-10-31 22:35:04.438138 19854 1342 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 544\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-10-31\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-94\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.180.166 a2adc693-af37-451f-a4a5-90ecac19a196 2019-10-31 22:51:20.10827 19855 1153 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.180.166 a2adc693-af37-451f-a4a5-90ecac19a196 2019-10-31 22:51:20.13567 19856 1342 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.180.166 8e9002af-c80a-4c09-aa15-49577afd92cc 2019-10-31 22:51:24.296814 19857 1867 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 544\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 1342\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-94\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-94 189.186.180.166 8e9002af-c80a-4c09-aa15-49577afd92cc 2019-10-31 22:51:24.32707 19858 1343 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 546\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2019-10-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-708\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.202 07fe9eb6-6267-48bd-aa3a-020d75432ced 2019-10-31 23:35:57.508789 19859 1028 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.66.202 07fe9eb6-6267-48bd-aa3a-020d75432ced 2019-10-31 23:35:57.540027 19860 1343 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.202 f0ab1b8a-8286-4a7b-867b-9954ca58baba 2019-10-31 23:36:44.436555 19861 1868 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 546\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2099E4\nmove_type: '1'\nsale_id: 1343\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-708\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-708 187.149.66.202 f0ab1b8a-8286-4a7b-867b-9954ca58baba 2019-10-31 23:36:44.460555 19862 1869 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 546\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 1281\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-681 187.149.74.215 ef9e8e01-dde0-4d3e-ac88-12f0022df8eb 2019-11-01 00:29:13.835009 19863 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-10-28 20:06:23.148466000 Z\n- &1 2019-10-30 22:28:15.650270000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-01 01:23:21.224802281 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 10\n- 11\n 22 \N 187.149.74.215 21606102-4c85-41d5-8bd7-9c449e294d0a 2019-11-01 01:23:21.249978 19864 27 User \N \N 27 User \N update ---\nunique_session_id:\n- zatgyEMuMxAZbMd9rzzd\n- t6yDa6RjwpvzJF6kVSA6\n 23 \N 187.149.74.215 21606102-4c85-41d5-8bd7-9c449e294d0a 2019-11-01 01:23:21.271989 19865 1344 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 545\namount: !ruby/object:BigDecimal 18:0.1358E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1358E4\nstatus: 0\ndate_sale: 2019-10-31\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-540\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 14718000-df4a-4318-97b8-eaf303b035c9 2019-11-01 01:24:52.282079 19866 1002 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.74.215 14718000-df4a-4318-97b8-eaf303b035c9 2019-11-01 01:24:52.31827 19867 806 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 30 \N 187.149.74.215 14718000-df4a-4318-97b8-eaf303b035c9 2019-11-01 01:24:52.375894 19868 1344 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 8ee91e64-02b2-4ad7-b471-a617af760768 2019-11-01 01:25:34.615029 19869 1870 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 545\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1358E4\nmove_type: '1'\nsale_id: 1344\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-540\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.136E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-540 187.149.74.215 8ee91e64-02b2-4ad7-b471-a617af760768 2019-11-01 01:25:34.645299 19870 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-31 22:02:33.727641000 Z\n- &1 2019-10-31 22:17:07.699689000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-01 01:53:32.826328966 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946307\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938524\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938524\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946307\n mask_addr: 4294967295\nsign_in_count:\n- 840\n- 841\n 1682 \N 200.68.182.67 2c1dcca3-0fcd-4407-ab0e-8cab90ea907b 2019-11-01 01:53:32.863414 19871 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GwNrpSBMwbh-eY55yLSC\n- 64Py_vDUs5SydyXcsGhR\n 1683 \N 200.68.182.67 2c1dcca3-0fcd-4407-ab0e-8cab90ea907b 2019-11-01 01:53:32.898181 19872 546 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 546\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5724E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E4\ncash_fund: !ruby/object:BigDecimal 18:0.975E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5975E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.74.215 f35b80d3-6aef-4e1d-9f59-1e49e791a74e 2019-11-01 02:48:13.552305 19873 546 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 f35b80d3-6aef-4e1d-9f59-1e49e791a74e 2019-11-01 02:48:13.565725 19874 547 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 545\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.3344E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.32E4\ncash_fund: !ruby/object:BigDecimal 18:0.1157E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4357E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.74.215 fed3e397-3a0e-4ef0-a3e1-f684d09a2ee8 2019-11-01 02:59:28.340514 19876 548 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 544\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.548E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.1099E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1599E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.180.166 1526b41f-4349-4e39-9df1-33f744404fbc 2019-11-01 03:06:26.561712 19877 544 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.180.166 1526b41f-4349-4e39-9df1-33f744404fbc 2019-11-01 03:06:26.761674 19878 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-30 17:15:56.854538000 Z\n- &1 2019-10-31 17:11:20.349626000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-01 17:08:29.320930182 Z\nsign_in_count:\n- 51\n- 52\n 104 \N 189.186.180.166 478c4199-5119-4642-9df4-2c7233bed0ee 2019-11-01 17:08:29.352182 19879 23 User \N \N 23 User \N update ---\nunique_session_id:\n- TydhBy1ZJH_sRA3eSTqy\n- dq5sH4qisyqy6Y-iB1P3\n 105 \N 189.186.180.166 478c4199-5119-4642-9df4-2c7233bed0ee 2019-11-01 17:08:29.373283 19880 547 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1099E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1099.0 189.186.180.166 dd8571be-25fe-4d11-b5b6-27578c6b61c8 2019-11-01 17:09:11.211462 19881 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-10-30 22:28:15.650270000 Z\n- &1 2019-11-01 01:23:21.224802000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-01 17:35:33.707533896 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 11\n- 12\n 24 \N 187.149.74.215 3a44ee77-e98b-4bb6-8925-a865c537b77d 2019-11-01 17:35:33.734961 19882 27 User \N \N 27 User \N update ---\nunique_session_id:\n- t6yDa6RjwpvzJF6kVSA6\n- ZDx2m_v3QsjRCALr51X-\n 25 \N 187.149.74.215 3a44ee77-e98b-4bb6-8925-a865c537b77d 2019-11-01 17:35:33.753704 19883 548 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1157E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1157.0 187.149.74.215 38dc0f4a-db70-416f-881f-f2fa563eff28 2019-11-01 17:37:58.247154 19884 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-10-28 18:25:43.731052000 Z\n- &1 2019-10-31 16:40:26.139001000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-01 18:38:45.888194460 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 26\n- 27\n 54 \N 187.149.74.215 6d96a6d2-d45c-4f11-bd44-413c5e28fd81 2019-11-01 18:38:45.909978 19885 25 User \N \N 25 User \N update ---\nunique_session_id:\n- pioV2FsP9jbFZ8oFkaYM\n- NbYxuDjdAduKtKLyFbsa\n 55 \N 187.149.74.215 6d96a6d2-d45c-4f11-bd44-413c5e28fd81 2019-11-01 18:38:45.924476 19886 549 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.975E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 975.0 187.149.74.215 7636f299-939d-4e75-aff6-b2bb494af173 2019-11-01 18:59:42.011018 19887 222 Customer \N \N 25 User \N create ---\nnick_name: MARIA DEL ROSARIO RODRIGUEZ\nphone: "(667) 268-5599"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIA DEL ROSARIO RODRIGUEZ fue registrado. 187.149.74.215 a2ae82a1-9da3-4564-991f-6a24381292d2 2019-11-01 19:00:15.354467 19888 1345 Sale \N \N 25 User \N create ---\ncustomer_id: 222\nuser_id: 25\nopen_cash_register_id: 549\namount: !ruby/object:BigDecimal 18:0.1338E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1338E4\nstatus: 0\ndate_sale: 2019-11-01\nsaletype: 2\nseller_id: 16\nsale_code: PV1-V-709\nexpiration_date: 2019-12-06\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 23b0395d-6d5e-4b24-91ef-2b0779565f73 2019-11-01 19:00:37.164528 19889 701 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.74.215 23b0395d-6d5e-4b24-91ef-2b0779565f73 2019-11-01 19:00:37.194267 19890 1161 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.74.215 23b0395d-6d5e-4b24-91ef-2b0779565f73 2019-11-01 19:00:37.226591 19891 1871 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 549\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1345\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-709\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-709 187.149.74.215 f50cb419-adbb-4b8b-b097-978ff4f2f8aa 2019-11-01 19:00:45.918932 19892 1345 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.74.215 248892d8-873a-4dee-8e9a-8ef382b59e2f 2019-11-01 19:00:49.215915 19893 1872 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 549\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1348E4\nmove_type: '1'\nsale_id: 1141\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1348E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-632 187.149.74.215 aad86355-d6ac-46ca-80c8-390758933294 2019-11-01 19:57:46.139101 19894 1141 Sale \N \N 25 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.74.215 c8014a50-a9c4-41b9-bbc2-114077c34942 2019-11-01 19:57:47.237312 19895 1873 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 549\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1648E4\nmove_type: '1'\nsale_id: 1237\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.648E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-669 187.149.74.215 957cb73b-201a-48fa-a0ac-a7265a181efa 2019-11-01 19:58:34.723802 19896 1873 CashRegistersMove \N \N 25 User \N destroy ---\nopen_cash_register_id: 549\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1648E4\nmove_type: '1'\nsale_id: 1237\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.648E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.74.215 0aed9977-b0df-404d-bffe-c3442e804e36 2019-11-01 19:58:37.877363 20091 69 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.74.215 80877454-2cbe-4296-8a24-40c04ea3a6a6 2019-11-03 19:23:14.669507 19897 1874 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 549\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.648E3\nmove_type: '1'\nsale_id: 1237\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.648E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-669 187.149.74.215 c8813c00-44bc-4146-bf60-b1e29e722d25 2019-11-01 19:58:48.955982 19898 1237 Sale \N \N 25 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.74.215 f42ca0e0-2e11-4036-b2ab-57e215999787 2019-11-01 19:58:50.835751 19899 1346 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 547\namount: !ruby/object:BigDecimal 18:0.133503E4\ntax: !ruby/object:BigDecimal 18:0.19296E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.152799E4\nstatus: 0\ndate_sale: 2019-11-01\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-95\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.180.166 1e03005c-29cb-4a45-8cdd-e6a81c03ec62 2019-11-01 20:34:14.277766 19900 938 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.180.166 1e03005c-29cb-4a45-8cdd-e6a81c03ec62 2019-11-01 20:34:14.303614 19901 1176 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.180.166 1e03005c-29cb-4a45-8cdd-e6a81c03ec62 2019-11-01 20:34:14.326484 19902 1346 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.180.166 7288a08f-5649-47fe-a305-0c98af9c2739 2019-11-01 20:35:34.910775 19903 1875 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 547\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1528E4\nmove_type: '1'\nsale_id: 1346\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-95\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-95 189.186.180.166 7288a08f-5649-47fe-a305-0c98af9c2739 2019-11-01 20:35:34.934415 19904 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-30 17:12:16.355488000 Z\n- &1 2019-10-31 20:04:56.158591000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-01 21:21:16.995717655 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121354\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121354\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 364\n- 365\n 733 \N 187.149.74.215 d53953a6-9957-4919-a166-82ab5c2f7956 2019-11-01 21:21:17.003283 19905 2 User \N \N 2 User \N update ---\nunique_session_id:\n- UDy7xt2FgikyMfxzU4Ud\n- efS7rVFVfpWRzbqgG6T2\n 734 \N 187.149.74.215 d53953a6-9957-4919-a166-82ab5c2f7956 2019-11-01 21:21:17.019087 19906 1876 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 549\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 1324\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-700 187.149.74.215 14c6b41b-4bef-4570-bcf4-b43230fae767 2019-11-01 21:23:59.995904 19907 1347 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 549\namount: !ruby/object:BigDecimal 18:0.1288E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1288E4\nstatus: 0\ndate_sale: 2019-11-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-710\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 43680486-f0dd-493a-ab71-94520a371aa3 2019-11-02 00:43:44.903446 19908 1244 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.74.215 43680486-f0dd-493a-ab71-94520a371aa3 2019-11-02 00:43:44.937283 19909 1161 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.74.215 43680486-f0dd-493a-ab71-94520a371aa3 2019-11-02 00:43:44.970141 19910 1347 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 11238435-93c7-401d-986e-0e9203a70adb 2019-11-02 00:43:49.659268 19911 1877 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 549\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1288E4\nmove_type: '1'\nsale_id: 1347\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-710\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1288E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-710 187.149.74.215 11238435-93c7-401d-986e-0e9203a70adb 2019-11-02 00:43:49.682799 19912 1348 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 547\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-11-01\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-96\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.180.166 0b911dd6-23ca-441d-bd56-c78b2d687e9f 2019-11-02 00:53:35.994855 19913 1020 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.180.166 0b911dd6-23ca-441d-bd56-c78b2d687e9f 2019-11-02 00:53:36.028445 19914 1348 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.180.166 b1c5d983-fa4e-4ab7-a923-094b0290bac7 2019-11-02 00:53:40.316838 19915 1878 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 547\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 1348\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-96\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-96 189.186.180.166 b1c5d983-fa4e-4ab7-a923-094b0290bac7 2019-11-02 00:53:40.359082 19916 1349 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 548\namount: !ruby/object:BigDecimal 18:0.839E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.839E3\nstatus: 0\ndate_sale: 2019-11-01\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-541\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 6cd2aae6-bfc1-41cc-96a7-a1c25f0d5c94 2019-11-02 01:10:38.362108 19917 1100 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.74.215 6cd2aae6-bfc1-41cc-96a7-a1c25f0d5c94 2019-11-02 01:10:38.397084 19918 1349 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 155b122b-27b4-4329-bcc9-b776a3790f2a 2019-11-02 01:11:32.746362 19919 1879 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 548\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.839E3\nmove_type: '1'\nsale_id: 1349\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-541\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.61E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-541 187.149.74.215 155b122b-27b4-4329-bcc9-b776a3790f2a 2019-11-02 01:11:32.783357 19920 1350 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 549\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-11-01\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-711\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 ccd58423-debe-41ee-9dcd-080cfaf96759 2019-11-02 01:34:11.904529 19921 1029 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.74.215 ccd58423-debe-41ee-9dcd-080cfaf96759 2019-11-02 01:34:11.945087 19922 1350 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 8d4d70d7-5af9-49df-b461-a95228524a24 2019-11-02 01:34:27.964367 19923 1880 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 549\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 1350\ncardnumber: 440\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-711\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-711 187.149.74.215 8d4d70d7-5af9-49df-b461-a95228524a24 2019-11-02 01:34:28.003825 19924 1351 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 548\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-11-01\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-542\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 fdb3dd4f-144e-4c98-b62f-e00c81dd5d93 2019-11-02 01:36:36.891485 19925 1127 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.74.215 fdb3dd4f-144e-4c98-b62f-e00c81dd5d93 2019-11-02 01:36:36.922285 19926 1352 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 547\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-11-01\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-97\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.180.166 76bae6cb-53cb-4de6-8284-aa9d10a2f32a 2019-11-02 01:40:05.214116 19927 1153 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.180.166 76bae6cb-53cb-4de6-8284-aa9d10a2f32a 2019-11-02 01:40:05.243685 19928 1352 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.180.166 9c8aa5ae-2d2b-44a6-9888-0187c482bed8 2019-11-02 01:40:41.788759 19929 1881 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 547\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 1352\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-97\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-97 189.186.180.166 9c8aa5ae-2d2b-44a6-9888-0187c482bed8 2019-11-02 01:40:41.809247 19930 1351 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 3d8b7397-6f2a-4edb-bf9d-e141a9834a04 2019-11-02 01:44:56.505208 19931 1882 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 548\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 1351\ncardnumber: 440\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-542\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-542 187.149.74.215 3d8b7397-6f2a-4edb-bf9d-e141a9834a04 2019-11-02 01:44:56.530099 19932 223 Customer \N \N 23 User \N create ---\nnick_name: LETICIA EREDIA\nphone: "(667) 224-8008"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LETICIA EREDIA fue registrado. 189.186.180.166 d5f9cb64-ec72-4318-a912-c27d8c02f377 2019-11-02 02:02:20.59222 19933 1353 Sale \N \N 23 User \N create ---\ncustomer_id: 223\nuser_id: 23\nopen_cash_register_id: 547\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-11-01\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-98\nexpiration_date: 2019-12-06\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.180.166 240f77e0-5f9e-4719-840d-533895ab0e62 2019-11-02 02:02:49.853899 19934 775 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.180.166 240f77e0-5f9e-4719-840d-533895ab0e62 2019-11-02 02:02:49.886952 19935 1883 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 547\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1353\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-98\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-98 189.186.180.166 5a529d23-23ff-48a6-a46c-86713d8305e1 2019-11-02 02:02:58.747123 19936 1353 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.180.166 855de2f0-6f0a-4046-9987-be280fe36769 2019-11-02 02:03:01.126983 19937 549 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 549\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5683E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.4E4\ncash_fund: !ruby/object:BigDecimal 18:0.1059E4\nphysical_cash: !ruby/object:BigDecimal 18:0.5059E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.74.215 e07b08ce-f0f9-4f07-b6c8-3ecee5b6a3f2 2019-11-02 02:48:01.398217 19938 549 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 e07b08ce-f0f9-4f07-b6c8-3ecee5b6a3f2 2019-11-02 02:48:01.415801 20035 279 Transfer \N \N 25 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-11-03\nuser_id: 25\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO a Almacen central creado. 187.149.74.215 b7120c3f-4c20-47ec-aaf1-f7191a1450a6 2019-11-03 18:09:35.516144 19939 550 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 547\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.2996E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.1067E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2567E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.180.166 bb74c54f-fba8-4485-b92b-7f1c68010354 2019-11-02 02:55:47.075408 19940 547 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.180.166 bb74c54f-fba8-4485-b92b-7f1c68010354 2019-11-02 02:55:47.103234 19941 551 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 548\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.1438E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.785E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2285E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.74.215 9c2acc9b-5522-450b-9df6-2e3224ec37e5 2019-11-02 03:01:27.301999 19942 548 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 9c2acc9b-5522-450b-9df6-2e3224ec37e5 2019-11-02 03:01:27.31756 19943 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-10-31 22:17:07.699689000 Z\n- &1 2019-11-01 01:53:32.826328000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-02 03:19:25.803684952 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938524\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946307\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946307\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\nsign_in_count:\n- 841\n- 842\n 1684 \N 189.186.204.250 49365caf-8a70-455b-baed-753c9ed3aa7b 2019-11-02 03:19:25.813271 19944 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 64Py_vDUs5SydyXcsGhR\n- GYh_mAVa5bU1shm_1xvD\n 1685 \N 189.186.204.250 49365caf-8a70-455b-baed-753c9ed3aa7b 2019-11-02 03:19:25.830823 19945 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-10-31 17:11:20.349626000 Z\n- &1 2019-11-01 17:08:29.320930000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-02 17:04:38.788733161 Z\nsign_in_count:\n- 52\n- 53\n 106 \N 189.186.180.166 9db5a440-9118-4b41-b63c-411bf0031ebb 2019-11-02 17:04:38.823829 19946 23 User \N \N 23 User \N update ---\nunique_session_id:\n- dq5sH4qisyqy6Y-iB1P3\n- x8-K5jxZAKGwZvVooMzc\n 107 \N 189.186.180.166 9db5a440-9118-4b41-b63c-411bf0031ebb 2019-11-02 17:04:38.846511 19947 550 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1067E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1067.0 189.186.180.166 ac80ef68-e6bd-4d89-915a-c9d4563147b8 2019-11-02 17:05:35.891368 19948 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-10-31 18:38:29.728275000 Z\n- &1 2019-10-31 21:25:59.122822000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-02 18:21:21.111888064 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121354\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 15\n- 16\n 32 \N 187.149.74.215 78f5e38e-6973-432c-8468-56bed6b2ef51 2019-11-02 18:21:21.139475 19949 26 User \N \N 26 User \N update ---\nunique_session_id:\n- XF7ngeJQgZNG3RwxzmHo\n- bgbExKCRrUeTxQv3o8cw\n 33 \N 187.149.74.215 78f5e38e-6973-432c-8468-56bed6b2ef51 2019-11-02 18:21:21.159076 19950 551 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.785E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 785.0 187.149.74.215 acef5ade-9a45-4dbf-9c4d-01707b98e069 2019-11-02 19:54:47.259864 19951 1354 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 551\namount: !ruby/object:BigDecimal 18:0.839E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.839E3\nstatus: 0\ndate_sale: 2019-11-02\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-543\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 3816b6f6-aa80-468f-a8ba-ca14e0712f98 2019-11-02 19:55:02.342242 19952 1100 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.74.215 3816b6f6-aa80-468f-a8ba-ca14e0712f98 2019-11-02 19:55:02.370967 19953 1354 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 acd09740-43ba-440c-9ae9-af057c193399 2019-11-02 19:55:10.467683 19954 1884 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 551\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.839E3\nmove_type: '1'\nsale_id: 1354\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-543\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.161E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-543 187.149.74.215 acd09740-43ba-440c-9ae9-af057c193399 2019-11-02 19:55:10.489575 19955 1355 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 551\namount: !ruby/object:BigDecimal 18:0.1358E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1358E4\nstatus: 0\ndate_sale: 2019-11-02\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-544\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 15a6cca5-4696-41a1-867c-02d7d474d9fd 2019-11-02 20:45:41.133757 19956 1254 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.74.215 15a6cca5-4696-41a1-867c-02d7d474d9fd 2019-11-02 20:45:41.170968 19957 1126 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.74.215 15a6cca5-4696-41a1-867c-02d7d474d9fd 2019-11-02 20:45:41.214339 19958 1355 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 e073695d-d5e8-4487-9d45-a30064e17960 2019-11-02 20:46:39.562332 19959 1885 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 551\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1358E4\nmove_type: '1'\nsale_id: 1355\ncardnumber: 2216\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-544\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-544 187.149.74.215 e073695d-d5e8-4487-9d45-a30064e17960 2019-11-02 20:46:39.593878 19960 905 Product \N \N 26 User \N create ---\nsku: REG-905\nname: BOL-0001\ndescription: BOLSA DE REGALO DIPACK GIGANTE\nprice_base: !ruby/object:BigDecimal 18:0.28E2\nprice_sale: !ruby/object:BigDecimal 18:0.12E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 23\nproduct_service_key: '01010101'\n 1 El producto REG-905 fue creado. 187.149.74.215 912f0c95-411c-4361-a842-24cac4055459 2019-11-02 21:25:21.780809 19963 906 Product \N \N 26 User \N create ---\nsku: REG-906\nname: BOL-0002\ndescription: BOLSA GRANDE JUMBO\nprice_base: !ruby/object:BigDecimal 18:0.22E2\nprice_sale: !ruby/object:BigDecimal 18:0.88E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 23\nproduct_service_key: '01010101'\n 1 El producto REG-906 fue creado. 187.149.74.215 1af7bc77-556b-423d-b66d-afc044b244e9 2019-11-02 21:25:58.378429 19964 906 Product \N \N 26 User \N update ---\nbarcode:\n- ''\n- '0000906'\n 2 \N 187.149.74.215 1af7bc77-556b-423d-b66d-afc044b244e9 2019-11-02 21:25:58.403638 19965 1262 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 906\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 1af7bc77-556b-423d-b66d-afc044b244e9 2019-11-02 21:25:58.428109 19966 907 Product \N \N 26 User \N create ---\nsku: REG-907\nname: BOL-0003\ndescription: BOLSA DE REGALO MEDIANA\nprice_base: !ruby/object:BigDecimal 18:0.12E2\nprice_sale: !ruby/object:BigDecimal 18:0.6E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 23\nproduct_service_key: '01010101'\n 1 El producto REG-907 fue creado. 187.149.74.215 0caf18ff-95bf-4ae4-b6ff-d6439e2b0034 2019-11-02 21:26:31.68583 19967 907 Product \N \N 26 User \N update ---\nbarcode:\n- ''\n- '0000907'\n 2 \N 187.149.74.215 0caf18ff-95bf-4ae4-b6ff-d6439e2b0034 2019-11-02 21:26:31.711163 19968 1263 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 907\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 0caf18ff-95bf-4ae4-b6ff-d6439e2b0034 2019-11-02 21:26:31.736878 19969 182 Purchase \N \N 26 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-55\namount: !ruby/object:BigDecimal 18:0.158E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.158E3\nobservations: ''\npurchase_date: 2019-11-02\nuser_id: '26'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-55 por $ 158.0 MXN creada. 187.149.74.215 bc915e08-72ae-4d2f-850e-6fdc86136f12 2019-11-02 21:26:46.864059 19970 1261 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.74.215 bc915e08-72ae-4d2f-850e-6fdc86136f12 2019-11-02 21:26:46.889805 19971 1262 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.74.215 bc915e08-72ae-4d2f-850e-6fdc86136f12 2019-11-02 21:26:46.922575 19972 1263 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.74.215 bc915e08-72ae-4d2f-850e-6fdc86136f12 2019-11-02 21:26:46.947972 19973 908 Product \N \N 26 User \N create ---\nsku: REG-908\nname: BOL-0004\ndescription: BOLSA DE REGALO CHICA\nprice_base: !ruby/object:BigDecimal 18:0.7E1\nprice_sale: !ruby/object:BigDecimal 18:0.4E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 23\nproduct_service_key: '01010101'\n 1 El producto REG-908 fue creado. 187.149.74.215 b30c50b0-1eed-4ae3-b2b8-2cc0249e0891 2019-11-02 21:27:40.599968 19974 908 Product \N \N 26 User \N update ---\nbarcode:\n- ''\n- '0000908'\n 2 \N 187.149.74.215 b30c50b0-1eed-4ae3-b2b8-2cc0249e0891 2019-11-02 21:27:40.628341 19975 1264 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 908\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 b30c50b0-1eed-4ae3-b2b8-2cc0249e0891 2019-11-02 21:27:40.659692 19976 183 Purchase \N \N 26 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-56\namount: !ruby/object:BigDecimal 18:0.14E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.14E2\nobservations: ''\npurchase_date: 2019-11-02\nuser_id: '26'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-56 por $ 14.0 MXN creada. 187.149.74.215 ccd38184-5742-4918-b33b-85439ca06e93 2019-11-02 21:27:49.919654 19977 1264 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.74.215 ccd38184-5742-4918-b33b-85439ca06e93 2019-11-02 21:27:49.939285 19978 1356 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 551\namount: !ruby/object:BigDecimal 18:0.12E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.12E3\nstatus: 0\ndate_sale: 2019-11-02\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-545\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 e01ebb21-e3ef-458f-918d-82e433cd0803 2019-11-02 21:28:13.357878 19979 1261 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.74.215 e01ebb21-e3ef-458f-918d-82e433cd0803 2019-11-02 21:28:13.384288 19980 1356 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 18603838-dbad-407c-a6f8-eb2716731a8b 2019-11-02 21:28:18.95576 19981 1886 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 551\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.12E3\nmove_type: '1'\nsale_id: 1356\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-545\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-545 187.149.74.215 18603838-dbad-407c-a6f8-eb2716731a8b 2019-11-02 21:28:18.97666 19982 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-01 01:53:32.826328000 Z\n- &1 2019-11-02 03:19:25.803684000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-02 21:38:30.842075777 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946307\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 842\n- 843\n 1686 \N 187.149.74.215 b729cc07-64db-4738-9177-f608e896fe20 2019-11-02 21:38:30.854018 19983 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GYh_mAVa5bU1shm_1xvD\n- zsXTeX4LkkECuG-XcjD_\n 1687 \N 187.149.74.215 b729cc07-64db-4738-9177-f608e896fe20 2019-11-02 21:38:30.877109 20055 1360 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-101 cancelada. 189.186.130.34 d539d49d-a486-4b02-8ae4-41ebbff22e4f 2019-11-03 18:29:55.432543 19984 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-10-31 20:04:56.158591000 Z\n- &1 2019-11-01 21:21:16.995717000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-02 22:23:38.852850845 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121354\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 365\n- 366\n 735 \N 187.149.74.215 69550338-5700-4bfb-b74f-c961be74c9c5 2019-11-02 22:23:38.859722 19985 2 User \N \N 2 User \N update ---\nunique_session_id:\n- efS7rVFVfpWRzbqgG6T2\n- NR56qUb_2wQTYdD_N2xo\n 736 \N 187.149.74.215 69550338-5700-4bfb-b74f-c961be74c9c5 2019-11-02 22:23:38.877211 19986 552 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1059E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1059.0 187.149.74.215 93f453f5-351f-4065-ace0-599358c85616 2019-11-02 22:24:00.238003 19987 1887 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 552\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 1205\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-659 187.149.74.215 6b720b31-a37a-4294-9f87-7b5e858320ac 2019-11-02 22:24:30.062791 19988 1205 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.74.215 2d59ae6f-3dde-4889-a1d5-ddac0ddf2d8e 2019-11-02 22:24:31.382705 19989 1888 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 552\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1253\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-673 187.149.74.215 81c81c1e-7e85-4755-9b1e-7aff85bd0746 2019-11-02 22:25:21.078364 19990 1253 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.74.215 21466b50-f58c-499d-b786-6e52bfe374de 2019-11-02 22:25:23.30336 19991 205 Expense \N \N 26 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 551\nquantity: !ruby/object:BigDecimal 18:0.9E3\nstatus: 1\nobservations: SUELDO KEYLA\nexpense_date: 2019-11-02\nexpense_code: PV2-E-46\n 1 Egreso por 900.0 registrado 187.149.74.215 6882ba46-df55-4de6-808d-78df96911653 2019-11-02 22:57:05.641277 19992 1889 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 551\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.9E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 205\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.74.215 6882ba46-df55-4de6-808d-78df96911653 2019-11-02 22:57:05.663363 19993 1890 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 430\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1095\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.74.215 6a08c841-ed3d-4749-b78e-9f178457860c 2019-11-02 23:02:30.683746 19994 1890 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 430\n- 552\n 2 movimiento de efectivo por venta con folio PV1-V-614 187.149.74.215 6a08c841-ed3d-4749-b78e-9f178457860c 2019-11-02 23:02:30.716652 19995 206 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 552\nquantity: !ruby/object:BigDecimal 18:0.928E3\nstatus: 1\nobservations: sueldo Rocio\nexpense_date: 2019-11-02\nexpense_code: PV1-E-154\n 1 Egreso por 928.0 registrado 187.149.74.215 b9aef47f-5bed-436c-abef-469b53e0e591 2019-11-02 23:05:10.17052 19996 1891 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 552\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.928E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 206\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.74.215 b9aef47f-5bed-436c-abef-469b53e0e591 2019-11-02 23:05:10.195123 19997 552 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 552\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1799E4\namount_out: !ruby/object:BigDecimal 18:0.928E3\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.43E3\nphysical_cash: !ruby/object:BigDecimal 18:0.193E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.74.215 04260516-edc0-4fd7-8575-d175a99c3061 2019-11-02 23:06:57.360808 19998 552 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 04260516-edc0-4fd7-8575-d175a99c3061 2019-11-02 23:06:57.379127 19999 553 CashOut \N \N 26 User \N create ---\nopen_cash_register_id: 551\nuser_id: 26\namount_in: !ruby/object:BigDecimal 18:0.2317E4\namount_out: !ruby/object:BigDecimal 18:0.9E3\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.844E3\nphysical_cash: !ruby/object:BigDecimal 18:0.844E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.74.215 14db02fd-ae93-406c-a4dd-783636f94542 2019-11-02 23:10:40.737258 20000 551 OpenCashRegister \N \N 26 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 14db02fd-ae93-406c-a4dd-783636f94542 2019-11-02 23:10:40.749043 20001 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-02 03:19:25.803684000 Z\n- &1 2019-11-02 21:38:30.842075000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-03 00:26:13.349467906 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\nsign_in_count:\n- 843\n- 844\n 1688 \N 189.186.204.250 cca6c858-dd79-489a-b0d7-8b751645ee5e 2019-11-03 00:26:13.363205 20002 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zsXTeX4LkkECuG-XcjD_\n- ekxfzRVsPjKybA5Bxy3s\n 1689 \N 189.186.204.250 cca6c858-dd79-489a-b0d7-8b751645ee5e 2019-11-03 00:26:13.387586 20003 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-10-31 16:40:26.139001000 Z\n- &1 2019-11-01 18:38:45.888194000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-03 17:03:16.376374381 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 27\n- 28\n 56 \N 187.149.74.215 66e3ae80-287b-4e30-9b5f-dd9a97268f46 2019-11-03 17:03:16.411033 20004 25 User \N \N 25 User \N update ---\nunique_session_id:\n- NbYxuDjdAduKtKLyFbsa\n- hHjMXuoyi2yx9tisxy9N\n 57 \N 187.149.74.215 66e3ae80-287b-4e30-9b5f-dd9a97268f46 2019-11-03 17:03:16.43779 20005 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-10-31 21:25:59.122822000 Z\n- &1 2019-11-02 18:21:21.111888000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-03 17:28:18.082600045 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121354\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 16\n- 17\n 34 \N 187.149.74.215 a5605733-0cbc-4008-ac5a-0b3cef940e0d 2019-11-03 17:28:18.089885 20006 26 User \N \N 26 User \N update ---\nunique_session_id:\n- bgbExKCRrUeTxQv3o8cw\n- EocR-cGXr9butkp5ycQe\n 35 \N 187.149.74.215 a5605733-0cbc-4008-ac5a-0b3cef940e0d 2019-11-03 17:28:18.103957 20007 553 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.555E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 555.0 187.149.74.215 1fbcee70-09cc-4dfa-9a7f-2f657d972c48 2019-11-03 17:31:46.110584 20008 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-01 01:23:21.224802000 Z\n- &1 2019-11-01 17:35:33.707533000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-03 17:37:23.523180962 Z\nsign_in_count:\n- 12\n- 13\n 26 \N 187.149.74.215 c2b93583-ccbd-42de-8005-79aa3adb4009 2019-11-03 17:37:23.529499 20009 27 User \N \N 27 User \N update ---\nunique_session_id:\n- ZDx2m_v3QsjRCALr51X-\n- nXu2egh4oxTxuU9EKgsd\n 27 \N 187.149.74.215 c2b93583-ccbd-42de-8005-79aa3adb4009 2019-11-03 17:37:23.546571 20010 224 Customer \N \N 27 User \N create ---\nnick_name: ANGELICA\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANGELICA fue registrado. 187.149.74.215 9e655ac1-352f-4717-9b89-f60abf9c95aa 2019-11-03 17:40:13.358995 20011 225 Customer \N \N 27 User \N create ---\nnick_name: ANGELICA\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANGELICA fue registrado. 187.149.74.215 cb486870-e0a8-429d-b977-168ac4124232 2019-11-03 17:40:17.265464 20012 1357 Sale \N \N 27 User \N create ---\ncustomer_id: 225\nuser_id: 27\nopen_cash_register_id: 553\namount: !ruby/object:BigDecimal 18:0.589E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2019-11-03\nsaletype: 2\nseller_id: 19\nsale_code: PV2-V-546\nexpiration_date: 2019-12-08\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 5a31e74d-6eb1-4a60-a139-4f6c9e4e88d6 2019-11-03 17:41:29.761198 20013 1139 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.74.215 5a31e74d-6eb1-4a60-a139-4f6c9e4e88d6 2019-11-03 17:41:29.8052 20014 1892 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 553\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1357\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-546\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-546 187.149.74.215 509eabb8-9052-4906-8e8c-d0f83577a1eb 2019-11-03 17:41:49.544263 20015 1357 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.74.215 d4e1d8c8-9e05-498e-bf80-1a19eb100d8b 2019-11-03 17:41:59.08063 20016 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-11-01 18:38:45.888194000 Z\n- &1 2019-11-03 17:03:16.376374000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-03 17:44:01.323636169 Z\nsign_in_count:\n- 28\n- 29\n 58 \N 187.149.74.215 58bd5218-dcdd-4b5d-aa35-01ead2f819e5 2019-11-03 17:44:01.329183 20017 25 User \N \N 25 User \N update ---\nunique_session_id:\n- hHjMXuoyi2yx9tisxy9N\n- XL2AsFYzFg-bt2QsXLCM\n 59 \N 187.149.74.215 58bd5218-dcdd-4b5d-aa35-01ead2f819e5 2019-11-03 17:44:01.340948 20018 208 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 187.149.74.215 b64e6c1c-ca32-4ba3-9170-3c762764b71f 2019-11-03 17:46:19.740005 20019 208 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.74.215 b1c5df59-6b30-4420-8222-3f5b79d3cde9 2019-11-03 17:46:35.711764 20020 217 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.74.215 47b5dc43-9ae5-4d6c-962d-3ab787893ff2 2019-11-03 17:47:14.554102 20021 217 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.74.215 054774ac-7297-4f29-8ce0-ab7d99736ea5 2019-11-03 17:47:49.949991 20022 244 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.74.215 fd7e6912-8c94-44a4-8fd0-dff3f861951c 2019-11-03 17:49:14.931765 20023 244 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.74.215 8d5abfe9-9c89-43ac-85db-e617cd176e7e 2019-11-03 17:49:35.798557 20024 204 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.74.215 fcaefe06-9030-474b-a9f3-fb4a59f2d161 2019-11-03 17:52:02.297317 20025 204 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.74.215 0e9497a0-e3c4-4454-a39d-8ee8a7dbba1f 2019-11-03 17:52:27.175135 20026 210 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.74.215 03fd6e74-4c64-44f5-8225-e6ab077186dc 2019-11-03 17:55:05.537297 20027 233 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.74.215 6098d40d-c2ce-45ce-bb3f-6d1f54510e98 2019-11-03 17:56:14.17184 20028 215 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 187.149.74.215 dd42a0bd-bec3-4c37-a154-d5a2d5d52510 2019-11-03 17:57:58.504934 20029 215 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.74.215 18040f46-bac8-463c-b923-7ce93f93c27b 2019-11-03 17:58:21.187715 20030 229 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 187.149.74.215 03195e37-4e46-4df4-89b0-2f2c98ec8618 2019-11-03 18:00:30.647241 20031 229 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.74.215 a420a020-87f7-45d6-9fff-0e0646934768 2019-11-03 18:01:00.966311 20032 231 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.74.215 71f70ac0-b605-4200-b14c-d4f98e9831af 2019-11-03 18:02:46.069697 20033 206 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 187.149.74.215 f10de0a1-fd42-44c8-9b71-931d059e3bf8 2019-11-03 18:03:04.264257 20034 206 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.74.215 db33ed81-9598-4956-8b1f-2d318fef5d37 2019-11-03 18:08:42.660636 20036 1358 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 550\namount: !ruby/object:BigDecimal 18:0.99E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.99E2\nstatus: 0\ndate_sale: 2019-11-03\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-99\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 2c3b0ad7-352d-452e-b5c5-9dfe66156a9b 2019-11-03 18:23:11.556 20037 1174 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.130.34 2c3b0ad7-352d-452e-b5c5-9dfe66156a9b 2019-11-03 18:23:11.580826 20038 1358 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.130.34 e8ccf026-9682-4a34-82df-38fe320fcd25 2019-11-03 18:23:35.635505 20039 1893 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 550\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.99E2\nmove_type: '1'\nsale_id: 1358\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-99\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-99 189.186.130.34 e8ccf026-9682-4a34-82df-38fe320fcd25 2019-11-03 18:23:35.662925 20040 1894 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 550\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1358\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-99\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.1E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-99 189.186.130.34 8c976b91-2733-4f63-af6d-854bd384436d 2019-11-03 18:23:35.806089 20041 1895 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 550\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1358\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-99\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.1E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-99 189.186.130.34 db9b0c71-4481-49a2-99c9-bd7f7620040b 2019-11-03 18:23:35.946811 20042 1895 CashRegistersMove \N \N 23 User \N destroy ---\nopen_cash_register_id: 550\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1358\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-99\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.1E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.130.34 c42d2b5b-29ca-46ea-97f6-ff7b06c592ab 2019-11-03 18:23:39.274349 20043 1894 CashRegistersMove \N \N 23 User \N destroy ---\nopen_cash_register_id: 550\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1358\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-99\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.1E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.130.34 0652617e-9adc-4338-94fd-acf4256f031a 2019-11-03 18:23:39.9506 20044 1359 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 550\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-11-03\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-100\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 fd09d1d2-849a-41ae-9d50-bb06f052cf93 2019-11-03 18:25:06.885388 20045 1153 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.130.34 fd09d1d2-849a-41ae-9d50-bb06f052cf93 2019-11-03 18:25:06.917988 20046 1359 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.130.34 cd1522a4-7f36-4dd3-bef7-7e19b72d44a3 2019-11-03 18:25:11.605439 20047 1896 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 550\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 1359\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-100\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-100 189.186.130.34 cd1522a4-7f36-4dd3-bef7-7e19b72d44a3 2019-11-03 18:25:11.624698 20048 226 Customer \N \N 23 User \N create ---\nnick_name: LOLIS QUIROZ\nphone: "(667) 154-4305"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LOLIS QUIROZ fue registrado. 189.186.130.34 a555633c-7801-4e2f-b8a5-1ba31a12f660 2019-11-03 18:26:08.308309 20049 1360 Sale \N \N 23 User \N create ---\ncustomer_id: 226\nuser_id: 23\nopen_cash_register_id: 550\namount: !ruby/object:BigDecimal 18:0.769E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.769E3\nstatus: 0\ndate_sale: 2019-11-03\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-101\nexpiration_date: 2019-12-08\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 2aafa40d-8893-4ce8-ac78-668bb4fa409f 2019-11-03 18:26:42.519286 20050 1136 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.130.34 2aafa40d-8893-4ce8-ac78-668bb4fa409f 2019-11-03 18:26:42.542262 20051 1897 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 550\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1360\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-101\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-101 189.186.130.34 09f6973a-1803-4271-9311-8efc0e25ec4d 2019-11-03 18:26:53.857581 20052 1897 CashRegistersMove \N \N 23 User \N destroy ---\nopen_cash_register_id: 550\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1360\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-101\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.130.34 882dc35b-9f1c-4a5c-b2b0-03c515d1b64e 2019-11-03 18:27:08.183631 20053 111 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.74.215 8f243684-147e-420c-8c66-13999e02649a 2019-11-03 18:28:55.114728 20054 111 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.74.215 6d92bf2c-fa71-4d25-b3d2-56b661df1734 2019-11-03 18:28:58.969226 20058 1361 Sale \N \N 23 User \N create ---\ncustomer_id: 226\nuser_id: 23\nopen_cash_register_id: 550\namount: !ruby/object:BigDecimal 18:0.769E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.769E3\nstatus: 0\ndate_sale: 2019-11-03\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-102\nexpiration_date: 2019-12-08\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 a7654eb8-5195-432f-9906-f3cb0cc13455 2019-11-03 18:30:49.538081 20059 1136 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.130.34 a7654eb8-5195-432f-9906-f3cb0cc13455 2019-11-03 18:30:49.562324 20060 1898 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 550\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1361\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-102\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-102 189.186.130.34 b8cff65e-a4e4-4173-9919-6a9f1cef5210 2019-11-03 18:30:59.26254 20061 1361 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.130.34 cef81f0c-a020-4bbb-be6c-cf32cdd57100 2019-11-03 18:31:01.071621 20062 65 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.74.215 dc86fb02-0bb8-4941-a848-3a6357ef6f1c 2019-11-03 18:32:11.619181 20063 65 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.74.215 62209ba7-5115-4c8e-9a3b-ec045c2fb2b6 2019-11-03 18:32:28.22721 20064 280 Transfer \N \N 25 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-11-03\nuser_id: 25\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO a Almacen central creado. 187.149.74.215 98ef263b-857d-445f-8140-c3dc2999f5cc 2019-11-03 18:36:24.647783 20065 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-02 21:38:30.842075000 Z\n- &1 2019-11-03 00:26:13.349467000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-03 18:37:31.247589112 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 844\n- 845\n 1690 \N 187.149.74.215 524ab266-abd4-40ea-9c4e-428630368935 2019-11-03 18:37:31.255304 20066 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ekxfzRVsPjKybA5Bxy3s\n- tFxy3yprF2fYUB9okphp\n 1691 \N 187.149.74.215 524ab266-abd4-40ea-9c4e-428630368935 2019-11-03 18:37:31.272289 20067 211 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.74.215 97b459da-03c4-42cb-9f8d-1f9e576aecc1 2019-11-03 18:42:04.857125 20068 211 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.74.215 f90f327e-858d-4cd1-9774-c4b7c6dd6daf 2019-11-03 18:42:08.045165 20069 675 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.74.215 30ee0b38-d6c5-4ecd-bf8d-3272a753e5bb 2019-11-03 18:42:14.968448 20070 675 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.74.215 b2439377-93b8-4193-a6d3-cfb2bd0e5b0b 2019-11-03 18:42:18.73448 20071 92 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.74.215 0835f3ce-d418-41de-ad77-d1f352be5721 2019-11-03 18:42:31.070315 20072 130 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.74.215 2dbd308b-a864-4dc6-9b25-4f316cac2d48 2019-11-03 18:42:42.763767 20073 130 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.74.215 6f3d2878-eff5-4872-974b-426c11e1d3cf 2019-11-03 18:42:49.46699 20074 62 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 187.149.74.215 50d8d3bb-22c1-4728-ad18-8f79dd51a226 2019-11-03 18:44:30.639811 20075 64 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 1 \N 187.149.74.215 528fee65-5fc3-4564-af34-946059f2c58f 2019-11-03 18:47:46.565661 20076 64 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.74.215 c523fe6d-43ea-4eed-a6f4-baa1073406f9 2019-11-03 18:48:55.195676 20077 62 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.74.215 066d83a3-c523-490d-a4b9-9ec99d5e2657 2019-11-03 18:48:59.046413 20078 62 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.74.215 3526dae5-8230-4672-bb25-589ebabba2e8 2019-11-03 18:49:28.607871 20079 64 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.11E2\n 3 \N 187.149.74.215 fed04001-b14f-4e7f-b321-2d62bc440363 2019-11-03 18:49:30.141166 20080 67 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 187.149.74.215 44ea08cb-cb34-4338-b654-1917e8f38110 2019-11-03 18:49:40.861719 20081 67 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.74.215 44828830-eb5f-406f-8702-ac77dd951ab2 2019-11-03 18:50:02.680827 20082 281 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-11-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO a Almacen central creado. 187.149.74.215 315a78e8-4468-4177-b578-c76b28d2b807 2019-11-03 18:50:06.549933 20083 64 Product \N \N 4 User \N update ---\nsku:\n- BLU-PRM-640\n- BLU-909\ncategory_id:\n- 20\n- 7\n 4 El producto BLU-PRM-640 fue modificado. 187.149.74.215 24afb227-d8b0-488a-823c-1a90e4dcfbac 2019-11-03 18:52:54.641762 20084 66 Product \N \N 4 User \N update ---\nsku:\n- BLU-PRM-640\n- BLU-909\ncategory_id:\n- 20\n- 7\n 4 El producto BLU-PRM-640 fue modificado. 187.149.74.215 3ed2ef31-ad93-4aa0-bac1-94e264bb30e7 2019-11-03 18:59:11.174585 20085 128 Product \N \N 4 User \N update ---\nsku:\n- BLU-PRM-640\n- BLU-909\ncategory_id:\n- 20\n- 7\n 4 El producto BLU-PRM-640 fue modificado. 187.149.74.215 2ce78439-08a4-4c98-aba4-63bdae54cb40 2019-11-03 19:09:30.865669 20086 119 Product \N \N 4 User \N update ---\nsku:\n- BLU-PRM-640\n- BLU-909\ncategory_id:\n- 20\n- 7\n 4 El producto BLU-PRM-640 fue modificado. 187.149.74.215 6ec27ecc-53e6-4e63-8ae0-7cad66fd7d02 2019-11-03 19:20:27.85882 20087 287 Product \N \N 4 User \N update ---\nsku:\n- BLU-PRM-640\n- BLU-909\ncategory_id:\n- 20\n- 7\n 4 El producto BLU-PRM-640 fue modificado. 187.149.74.215 f6403797-a77d-4e41-bb08-a644479bede4 2019-11-03 19:20:46.742758 20092 62 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.74.215 5e3dd48c-d564-439d-af57-2635a8e2453f 2019-11-03 19:23:47.593767 20093 62 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.74.215 352aab57-a735-4b42-95e0-9f95eb39f2e7 2019-11-03 19:23:51.225977 20094 67 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.74.215 109d238a-d147-41c4-b8f9-4f1b7c55cd36 2019-11-03 19:24:03.609372 20095 67 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.74.215 e581f680-87c6-458a-87da-27ad81e8de8c 2019-11-03 19:24:25.8732 20096 67 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.74.215 55f219f5-993d-4fc3-ab39-9558f2c094b3 2019-11-03 19:24:44.165758 20097 67 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.74.215 2483629b-bfd4-4953-becc-c34e9d4f622e 2019-11-03 19:24:51.57155 20098 115 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.74.215 1770d67b-1668-4b63-8194-93d4fdd14e21 2019-11-03 19:25:26.13294 20099 88 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 187.149.74.215 adda0d7b-6e95-4521-a24d-a8712f568e6b 2019-11-03 19:25:33.322371 20100 88 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.74.215 68ff00d4-bcd4-4196-aea6-176a2de1348d 2019-11-03 19:25:36.485732 20101 126 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.74.215 10fb36bb-dbed-4c33-94c6-2cddf3e5b26f 2019-11-03 19:25:53.140916 20102 117 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 187.149.74.215 8a81c8ac-6458-43f9-be9c-ceecfade938a 2019-11-03 19:26:08.466801 20103 628 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.74.215 9820a8ad-9965-4723-ae4c-789470785d3d 2019-11-03 19:26:43.264024 20104 628 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.74.215 4b580a3f-a831-4862-88d8-4e4b37044599 2019-11-03 19:26:47.255807 20105 627 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.74.215 e4f17d23-7cc2-40ab-8f1f-5a575316bd3d 2019-11-03 19:26:56.98619 20106 66 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 187.149.74.215 61d902d5-c899-4553-afd9-de1d90b42476 2019-11-03 19:27:21.255158 20107 66 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.74.215 59a19e27-556d-4cdb-9052-e22fc1516c4b 2019-11-03 19:27:25.783441 20108 282 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-11-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO a Almacen central creado. 187.149.74.215 401558bb-cf5f-4788-9e60-fa1392fcac40 2019-11-03 19:28:07.222777 20109 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-03 00:26:13.349467000 Z\n- &1 2019-11-03 18:37:31.247589000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-03 19:32:33.856946960 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 845\n- 846\n 1692 \N 187.149.74.215 fad4494b-c3fd-43b2-b8a7-3eb0af96dd4b 2019-11-03 19:32:33.866522 20110 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tFxy3yprF2fYUB9okphp\n- Uyy1S22Q9g3gCXZFQvNy\n 1693 \N 187.149.74.215 fad4494b-c3fd-43b2-b8a7-3eb0af96dd4b 2019-11-03 19:32:33.888105 20111 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-03 18:37:31.247589000 Z\n- &1 2019-11-03 19:32:33.856946000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-03 19:33:37.050151196 Z\nsign_in_count:\n- 846\n- 847\n 1694 \N 187.149.74.215 08cf8a63-5337-4268-9d7a-4aecbc69c5f6 2019-11-03 19:33:37.056227 20112 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Uyy1S22Q9g3gCXZFQvNy\n- TEXJbvbTosLN44dsX76V\n 1695 \N 187.149.74.215 08cf8a63-5337-4268-9d7a-4aecbc69c5f6 2019-11-03 19:33:37.068992 20113 22 User \N \N 22 User \N update ---\nlast_sign_in_at:\n- 2019-09-03 23:53:38.440887000 Z\n- &1 2019-09-04 01:07:45.879372000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-03 19:40:54.498646055 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 2\n- 3\n 6 \N 187.149.74.215 dd269fbc-068e-464f-9832-f8d137a75888 2019-11-03 19:40:54.505484 20114 22 User \N \N 22 User \N update ---\nunique_session_id:\n- sop35r3k1TagSCLNb6wp\n- 1KAMZc1uN6GsJ1fWeQKT\n 7 \N 187.149.74.215 dd269fbc-068e-464f-9832-f8d137a75888 2019-11-03 19:40:54.519752 20115 166 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-03\n 2 Se dio entrada a traspaso de SUO a Almacen central 187.149.74.215 7ddcbe38-1170-4236-b8a3-553057e677a2 2019-11-03 19:41:06.613649 20116 282 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-03\n 2 Se dio entrada a traspaso de SUO a Almacen central 187.149.74.215 07429175-a14a-4246-87bd-7fd63baf3f02 2019-11-03 19:41:13.410494 20117 281 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-03\n 2 Se dio entrada a traspaso de SUO a Almacen central 187.149.74.215 241bea94-7b8c-4f73-8764-f9a446d25405 2019-11-03 19:41:20.51731 20118 280 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-03\n 2 Se dio entrada a traspaso de SUO a Almacen central 187.149.74.215 63e54e81-7176-4eb2-b3ae-a4f4fdb5b871 2019-11-03 19:41:27.826194 20119 279 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-03\n 2 Se dio entrada a traspaso de SUO a Almacen central 187.149.74.215 91e02414-8a75-4667-95a8-23d4fd05fe5d 2019-11-03 19:41:41.711271 20120 278 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-03\n 2 Se dio entrada a traspaso de S BY SUO a Almacen central 187.149.74.215 109b002e-faf1-4159-a836-a6ca9de6abac 2019-11-03 19:41:52.313557 20121 277 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-03\n 2 Se dio entrada a traspaso de S BY SUO a Almacen central 187.149.74.215 9ab9ea73-9512-4fd5-9d01-01c14d1c9ac9 2019-11-03 19:42:01.151852 20122 276 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-03\n 2 Se dio entrada a traspaso de S BY SUO a Almacen central 187.149.74.215 631cc13f-804f-4532-b03c-c65b2a2521f5 2019-11-03 19:42:12.005567 20123 250 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-03\n 2 Se dio entrada a traspaso de SUO Comercial a Almacen central 187.149.74.215 6607d07e-c806-46b8-8794-7b05be835de0 2019-11-03 19:42:22.573014 20124 249 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-03\n 2 Se dio entrada a traspaso de SUO Comercial a Almacen central 187.149.74.215 ae0e599f-8b6a-4de7-8a27-d7cd36d2b80c 2019-11-03 19:42:31.086373 20125 222 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-03\n 2 Se dio entrada a traspaso de S BY SUO a Almacen central 187.149.74.215 5b328048-aa19-47c3-b8a5-69c7415be922 2019-11-03 19:42:43.292684 20126 168 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-03\n 2 Se dio entrada a traspaso de SUO a Almacen central 187.149.74.215 212e160e-7385-4754-89c3-62e47493d6bc 2019-11-03 19:43:11.446625 20127 167 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-03\n 2 Se dio entrada a traspaso de SUO a Almacen central 187.149.74.215 05ebd5d8-9cab-4215-85dc-c3c64e20a324 2019-11-03 19:43:24.212621 20128 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-03 19:32:33.856946000 Z\n- &1 2019-11-03 19:33:37.050151000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-03 19:43:56.849090937 Z\nsign_in_count:\n- 847\n- 848\n 1696 \N 187.149.74.215 e7a110ba-b267-405c-9dcb-314c7c5252c6 2019-11-03 19:43:56.854714 20129 4 User \N \N 4 User \N update ---\nunique_session_id:\n- TEXJbvbTosLN44dsX76V\n- KkwA38W6GccapbRB1Z7V\n 1697 \N 187.149.74.215 e7a110ba-b267-405c-9dcb-314c7c5252c6 2019-11-03 19:43:56.867483 20130 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-03 19:33:37.050151000 Z\n- &1 2019-11-03 19:43:56.849090000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-03 20:23:52.462669389 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\nsign_in_count:\n- 848\n- 849\n 1698 \N 189.186.204.250 3ed16fdb-6df8-4b0b-acba-77ec94751df7 2019-11-03 20:23:52.472729 20131 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KkwA38W6GccapbRB1Z7V\n- VQNZg-ZDoi4BUQJ8fErU\n 1699 \N 189.186.204.250 3ed16fdb-6df8-4b0b-acba-77ec94751df7 2019-11-03 20:23:52.495106 20132 554 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 553\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.3E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 27\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.855E3\nphysical_cash: !ruby/object:BigDecimal 18:0.855E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.74.215 0189b375-d6ec-4d8c-b7ee-d9e2652aed31 2019-11-03 22:08:33.200499 20133 553 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 0189b375-d6ec-4d8c-b7ee-d9e2652aed31 2019-11-03 22:08:33.21868 20134 1362 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 550\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-11-03\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-103\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 352a7144-50f9-4416-a5b1-75bd9e2c5b21 2019-11-03 22:28:48.443602 20135 1153 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.130.34 352a7144-50f9-4416-a5b1-75bd9e2c5b21 2019-11-03 22:28:48.488251 20136 1362 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.130.34 a47d5f20-9715-4e17-81d0-f313f5e83411 2019-11-03 22:29:00.245166 20137 1899 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 550\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 1362\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-103\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-103 189.186.130.34 a47d5f20-9715-4e17-81d0-f313f5e83411 2019-11-03 22:29:00.265791 20138 207 Expense \N \N 23 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 550\nquantity: !ruby/object:BigDecimal 18:0.38E3\nstatus: 1\nobservations: SUELDO MARICRUZ\nexpense_date: 2019-11-03\nexpense_code: PV3-E-7\n 1 Egreso por 380.0 registrado 189.186.130.34 1e937906-f478-4f10-9a61-441275702663 2019-11-03 22:52:09.470191 20139 1900 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 550\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.38E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 207\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.130.34 1e937906-f478-4f10-9a61-441275702663 2019-11-03 22:52:09.492566 20140 555 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 550\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.1597E4\namount_out: !ruby/object:BigDecimal 18:0.38E3\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.784E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2284E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.130.34 6b53dd51-d865-4558-bc8b-d23bb499d3f1 2019-11-03 22:55:43.401593 20141 550 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.130.34 6b53dd51-d865-4558-bc8b-d23bb499d3f1 2019-11-03 22:55:43.427076 20142 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-01 17:35:33.707533000 Z\n- &1 2019-11-03 17:37:23.523180000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-04 17:06:08.590965218 Z\nsign_in_count:\n- 13\n- 14\n 28 \N 187.149.74.215 c8445577-6f43-44e2-850f-9acc401c43b9 2019-11-04 17:06:08.633316 20143 27 User \N \N 27 User \N update ---\nunique_session_id:\n- nXu2egh4oxTxuU9EKgsd\n- SYWsH1ey1E9_66z-oUXz\n 29 \N 187.149.74.215 c8445577-6f43-44e2-850f-9acc401c43b9 2019-11-04 17:06:08.656921 20144 554 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.855E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 855.0 187.149.74.215 6cf3d60c-9538-49bb-8c4d-9522d6b822ce 2019-11-04 17:12:51.160695 20168 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-01 21:21:16.995717000 Z\n- &1 2019-11-02 22:23:38.852850000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-04 19:33:45.941841188 Z\nsign_in_count:\n- 366\n- 367\n 737 \N 187.149.74.215 282db980-d052-4aca-90ef-eda86c1bd3a5 2019-11-04 19:33:45.948266 20169 2 User \N \N 2 User \N update ---\nunique_session_id:\n- NR56qUb_2wQTYdD_N2xo\n- Byp2pZUQSvz3htNHH5Hv\n 738 \N 187.149.74.215 282db980-d052-4aca-90ef-eda86c1bd3a5 2019-11-04 19:33:45.968242 20145 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-10-28 18:26:55.713117000 Z\n- &1 2019-10-28 22:39:30.167901000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-04 17:38:30.811814320 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107445\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\nsign_in_count:\n- 36\n- 37\n 75 \N 189.186.130.34 9e16f257-4ec1-45c6-8539-1481b0a1daa0 2019-11-04 17:38:30.819519 20146 21 User \N \N 21 User \N update ---\nunique_session_id:\n- vfMXUJzP47cH795CwMQs\n- m3RmQAWCuBuG5B8x23Ca\n 76 \N 189.186.130.34 9e16f257-4ec1-45c6-8539-1481b0a1daa0 2019-11-04 17:38:30.834927 20147 555 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.784E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 784.0 189.186.130.34 ad3e20c8-9e8b-4f63-97e1-882ec78e3171 2019-11-04 17:45:52.768256 20148 1901 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 426\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1077\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '41119'\n 1 \N 189.186.130.34 40095ff8-fe4c-4dbe-8a6a-76eb714d8860 2019-11-04 17:46:42.929783 20149 1901 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 426\n- 555\n 2 movimiento de efectivo por venta con folio PV3-V-29 189.186.130.34 40095ff8-fe4c-4dbe-8a6a-76eb714d8860 2019-11-04 17:46:42.953361 20150 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-03 19:43:56.849090000 Z\n- &1 2019-11-03 20:23:52.462669000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-04 19:00:34.477726295 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\nsign_in_count:\n- 849\n- 850\n 1700 \N 189.186.130.34 0d52513c-eae4-46cb-b991-1a89d7e71afc 2019-11-04 19:00:34.486809 20151 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VQNZg-ZDoi4BUQJ8fErU\n- o-nhfKy39zFkKYjPem1C\n 1701 \N 189.186.130.34 0d52513c-eae4-46cb-b991-1a89d7e71afc 2019-11-04 19:00:34.506773 20152 283 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-11-04\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.130.34 7cf4cf45-957b-46bc-9920-2a4cbd97e3db 2019-11-04 19:06:05.850751 20153 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-10-28 22:39:30.167901000 Z\n- &1 2019-11-04 17:38:30.811814000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-04 19:06:49.829536580 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\nsign_in_count:\n- 37\n- 38\n 77 \N 189.186.130.34 3351b1c9-ee53-46ac-a40b-6e43ee0f04ae 2019-11-04 19:06:49.836117 20154 21 User \N \N 21 User \N update ---\nunique_session_id:\n- m3RmQAWCuBuG5B8x23Ca\n- yrfoFyKGRsmPnByRuZF-\n 78 \N 189.186.130.34 3351b1c9-ee53-46ac-a40b-6e43ee0f04ae 2019-11-04 19:06:49.84981 20155 283 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-04\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.130.34 75bafa1b-da32-4edc-b075-c08da0fa67d9 2019-11-04 19:07:10.830095 20156 1265 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 874\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 75bafa1b-da32-4edc-b075-c08da0fa67d9 2019-11-04 19:07:10.859255 20157 1266 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 873\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 75bafa1b-da32-4edc-b075-c08da0fa67d9 2019-11-04 19:07:10.890002 20158 1267 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 897\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 75bafa1b-da32-4edc-b075-c08da0fa67d9 2019-11-04 19:07:10.91007 20159 1268 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 896\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 75bafa1b-da32-4edc-b075-c08da0fa67d9 2019-11-04 19:07:10.935693 20160 1269 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 888\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 75bafa1b-da32-4edc-b075-c08da0fa67d9 2019-11-04 19:07:10.96416 20161 1270 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 886\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 75bafa1b-da32-4edc-b075-c08da0fa67d9 2019-11-04 19:07:10.988108 20162 1271 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 891\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.9E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 75bafa1b-da32-4edc-b075-c08da0fa67d9 2019-11-04 19:07:11.008148 20163 1125 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 6 \N 189.186.130.34 912ec00c-32c5-4ca3-b48b-5f6311567805 2019-11-04 19:08:49.938066 20164 1125 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 189.186.130.34 161738b6-0378-4c2a-b5e0-060530b0b155 2019-11-04 19:08:52.982169 20165 284 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-11-04\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.130.34 25126933-dba6-4505-b5eb-628229f59040 2019-11-04 19:08:54.02283 20166 284 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-04\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.130.34 8602d84d-7da3-4e77-9bd5-98b3fb01e4d1 2019-11-04 19:09:23.968841 20167 1243 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.11E2\n 2 \N 189.186.130.34 8602d84d-7da3-4e77-9bd5-98b3fb01e4d1 2019-11-04 19:09:23.986557 32692 1120 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001120'\n 2 \N 177.228.110.211 5851d97d-6899-4561-abd7-c42d33e0bce8 2020-04-30 22:33:00.814109 20170 556 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.43E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 430.0 187.149.74.215 7e0b4805-c326-41b2-ba62-28c28d00c8af 2019-11-04 19:34:15.695011 20171 1363 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 556\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2019-11-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-712\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 51bc9fec-f643-4ae7-a2ef-6597e03080e1 2019-11-04 19:35:00.862024 20172 1196 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.74.215 51bc9fec-f643-4ae7-a2ef-6597e03080e1 2019-11-04 19:35:00.894454 20173 1363 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 f4d4fd0d-7ef1-4d7e-ae6a-34b070442f70 2019-11-04 19:35:09.581877 20174 1902 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 556\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1899E4\nmove_type: '1'\nsale_id: 1363\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-712\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1899E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-712 187.149.74.215 f4d4fd0d-7ef1-4d7e-ae6a-34b070442f70 2019-11-04 19:35:09.61037 20175 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-03 20:23:52.462669000 Z\n- &1 2019-11-04 19:00:34.477726000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-04 20:09:14.437150861 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135994\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183144447\n mask_addr: 4294967295\nsign_in_count:\n- 850\n- 851\n 1702 \N 189.186.237.255 b2bd89e2-825b-4f1a-889b-63bc2a05dc5b 2019-11-04 20:09:14.477237 20176 4 User \N \N 4 User \N update ---\nunique_session_id:\n- o-nhfKy39zFkKYjPem1C\n- mJQSAea1X8S4Yv2UUJgh\n 1703 \N 189.186.237.255 b2bd89e2-825b-4f1a-889b-63bc2a05dc5b 2019-11-04 20:09:14.495659 20177 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-04 19:00:34.477726000 Z\n- &1 2019-11-04 20:09:14.437150000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-04 20:11:01.835420673 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183144447\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183144447\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\nsign_in_count:\n- 851\n- 852\n 1704 \N 189.186.130.34 d43be01d-555b-4805-bc07-b0df1a2f24c6 2019-11-04 20:11:01.84334 20178 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mJQSAea1X8S4Yv2UUJgh\n- S3wPMUYiyEdJFv7jqZFh\n 1705 \N 189.186.130.34 d43be01d-555b-4805-bc07-b0df1a2f24c6 2019-11-04 20:11:01.85841 20179 227 Customer \N \N 2 User \N create ---\nnick_name: BRENDA JAZMINA CABANILLAS\nphone: "(667) 100-8158"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BRENDA JAZMINA CABANILLAS fue registrado. 187.149.74.215 9545c7b8-3e7e-464f-b61d-a0d8732d9ecf 2019-11-04 21:40:08.881194 20180 1364 Sale \N \N 2 User \N create ---\ncustomer_id: 227\nuser_id: 2\nopen_cash_register_id: 556\namount: !ruby/object:BigDecimal 18:0.969E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.969E3\nstatus: 0\ndate_sale: 2019-11-04\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-713\nexpiration_date: 2019-12-09\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 2d0b2d8f-9903-4121-b857-84c8786714a5 2019-11-04 21:54:43.226009 20181 1046 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.74.215 2d0b2d8f-9903-4121-b857-84c8786714a5 2019-11-04 21:54:43.252151 20182 1903 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 556\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1364\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-713\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-713 187.149.74.215 2d8c4749-7ab6-413c-be38-cb88a8d04935 2019-11-04 21:55:07.848836 20183 1364 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.74.215 b60e155c-0d93-420a-8fb9-85696d53ceb3 2019-11-04 21:55:09.766305 20184 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-11-04 17:38:30.811814000 Z\n- &1 2019-11-04 19:06:49.829536000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-05 00:59:04.664951005 Z\nsign_in_count:\n- 38\n- 39\n 79 \N 189.186.130.34 99333779-f5ef-4198-a90a-e34383476064 2019-11-05 00:59:04.680864 20185 21 User \N \N 21 User \N update ---\nunique_session_id:\n- yrfoFyKGRsmPnByRuZF-\n- AYxSnW8EX8Ev_5RDk14z\n 80 \N 189.186.130.34 99333779-f5ef-4198-a90a-e34383476064 2019-11-05 00:59:04.707463 20186 1365 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 555\namount: !ruby/object:BigDecimal 18:0.2498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2498E4\nstatus: 0\ndate_sale: 2019-11-04\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-104\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 4a9a7a2b-45b1-4033-ae46-09aa9b80fa08 2019-11-05 01:06:10.92365 20187 776 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.130.34 4a9a7a2b-45b1-4033-ae46-09aa9b80fa08 2019-11-05 01:06:10.966668 20188 826 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 3 \N 189.186.130.34 4a9a7a2b-45b1-4033-ae46-09aa9b80fa08 2019-11-05 01:06:10.99923 20189 1365 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.130.34 7cd69fe1-5f7a-48a0-bfa7-4a4952efd3b7 2019-11-05 01:06:25.16426 20190 1904 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 555\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 1365\ncardnumber: 8322\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-104\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-104 189.186.130.34 7cd69fe1-5f7a-48a0-bfa7-4a4952efd3b7 2019-11-05 01:06:25.189798 20235 286 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-05\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.74.215 c11f4897-4771-47f3-8bcc-829713e5bc91 2019-11-05 19:41:08.501499 20191 1905 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 555\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1498E4\nmove_type: '1'\nsale_id: 1365\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-104\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1498E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-104 189.186.130.34 4746ee2d-c937-436f-a3ab-aa48a1544688 2019-11-05 01:06:34.550433 20192 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-04 20:09:14.437150000 Z\n- &1 2019-11-04 20:11:01.835420000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-05 01:11:20.275572267 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183144447\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183144447\n mask_addr: 4294967295\nsign_in_count:\n- 852\n- 853\n 1706 \N 189.186.237.255 7936b310-fc31-402f-970c-9091cfc2b895 2019-11-05 01:11:20.290033 20193 4 User \N \N 4 User \N update ---\nunique_session_id:\n- S3wPMUYiyEdJFv7jqZFh\n- BBiXj87ry7LA4ejzySXJ\n 1707 \N 189.186.237.255 7936b310-fc31-402f-970c-9091cfc2b895 2019-11-05 01:11:20.317362 20194 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-02 18:21:21.111888000 Z\n- &1 2019-11-03 17:28:18.082600000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-05 01:27:44.540016406 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\nsign_in_count:\n- 17\n- 18\n 36 \N 189.186.130.34 c7f3f8c9-c6a4-4181-a2d8-cf11448a3837 2019-11-05 01:27:44.552822 20195 26 User \N \N 26 User \N update ---\nunique_session_id:\n- EocR-cGXr9butkp5ycQe\n- ywyyio85sFS5MTv-yAbH\n 37 \N 189.186.130.34 c7f3f8c9-c6a4-4181-a2d8-cf11448a3837 2019-11-05 01:27:44.573905 20196 228 Customer \N \N 21 User \N create ---\nnick_name: ARMIDA MEDINA\nphone: "(667) 419-7728"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ARMIDA MEDINA fue registrado. 189.186.130.34 130abf1a-88b3-4322-8cd2-98eed4856b98 2019-11-05 01:41:25.583285 20197 1366 Sale \N \N 21 User \N create ---\ncustomer_id: 228\nuser_id: 21\nopen_cash_register_id: 555\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-11-04\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-105\nexpiration_date: 2019-12-09\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 fc86546d-0b4a-4fce-94aa-54d191b1e630 2019-11-05 01:41:41.94248 20198 1115 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.130.34 fc86546d-0b4a-4fce-94aa-54d191b1e630 2019-11-05 01:41:41.971864 20199 1906 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 555\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1366\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-105\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-105 189.186.130.34 3111df5b-9dc2-4adf-9f29-a5a2cbd7551a 2019-11-05 01:41:49.160362 20200 1366 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.130.34 65632966-ad78-49fc-a820-c66f09be7d4e 2019-11-05 01:41:53.379224 20201 1367 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 556\namount: !ruby/object:BigDecimal 18:0.949E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.199E3\ntotal: !ruby/object:BigDecimal 18:0.75E3\nstatus: 0\ndate_sale: 2019-11-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-714\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 07312c15-cfe1-44c1-b66f-7d13278e7a5a 2019-11-05 01:59:08.024436 20202 1073 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.74.215 07312c15-cfe1-44c1-b66f-7d13278e7a5a 2019-11-05 01:59:08.058243 20203 1367 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 23493e7d-f906-40fd-885e-d4065b491318 2019-11-05 01:59:12.935881 20204 1907 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 556\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.75E3\nmove_type: '1'\nsale_id: 1367\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-714\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.75E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-714 187.149.74.215 23493e7d-f906-40fd-885e-d4065b491318 2019-11-05 01:59:12.957595 20205 556 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 556\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3149E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.27E4\ncash_fund: !ruby/object:BigDecimal 18:0.879E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3579E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.74.215 f3a4abc5-5752-4413-b092-a94917a91ba1 2019-11-05 02:32:41.046636 20206 556 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 f3a4abc5-5752-4413-b092-a94917a91ba1 2019-11-05 02:32:41.060817 20207 557 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 554\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 27\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.855E3\nphysical_cash: !ruby/object:BigDecimal 18:0.855E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.74.215 d580bdf7-035e-4f80-83ee-25bdd395126d 2019-11-05 02:50:40.662821 20208 554 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 d580bdf7-035e-4f80-83ee-25bdd395126d 2019-11-05 02:50:40.676293 20209 1368 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 555\namount: !ruby/object:BigDecimal 18:0.99E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.99E2\nstatus: 0\ndate_sale: 2019-11-04\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-106\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 60fef2b6-f64a-4662-b760-df6b1c97e9d7 2019-11-05 03:06:44.272646 20210 1175 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.130.34 60fef2b6-f64a-4662-b760-df6b1c97e9d7 2019-11-05 03:06:44.333013 20211 1368 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.130.34 6c133ffd-bb4e-4f27-b7d4-d3eb673bca00 2019-11-05 03:06:49.146755 20265 890 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '890'\n is_parent: false\n sku: CHA-890\n name: CHA-0006\n description: "Suéter Balboa negro \\r\\n"\n price_base: '240.0'\n price_sale: '629.0'\n img_product: PHOTO-2019-11-04-14-14-10.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000890'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-30 01:39:33.875143'\n updated_at: &12 2019-11-05 20:15:06.967268525 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '890'\n sku: CHA-890\n name: CHA-0006\n description: "Suéter Balboa negro \\r\\n"\n price_base: '240.00'\n price_sale: '629.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-30 01:39:33.875143'\n updated_at: '2019-10-30 01:39:33.924545'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000890'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '890'\n type: *3\n value: 890\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-890\n type: *7\n value: CHA-890\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0006\n type: *8\n value: CHA-0006\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "Suéter Balboa negro \\r\\n"\n type: *6\n value: "Suéter Balboa negro \\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '240.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.24E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '629.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.629E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-11-04-14-14-10.jpg\n type: *2\n value: PHOTO-2019-11-04-14-14-10.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000890'\n type: *2\n value: '0000890'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-30 01:39:33.875143'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-11-04-14-14-10.jpg\n 3 El producto CHA-890 fue modificado. 187.149.74.215 692cc146-8f1d-437b-86cb-b1bef8345133 2019-11-05 20:15:07.021741 20212 1908 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 555\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.99E2\nmove_type: '1'\nsale_id: 1368\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-106\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-106 189.186.130.34 6c133ffd-bb4e-4f27-b7d4-d3eb673bca00 2019-11-05 03:06:49.16856 20213 558 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 555\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.3397E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.17E4\ncash_fund: !ruby/object:BigDecimal 18:0.981E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2681E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.130.34 1ae9bdae-01d5-4e7b-981f-e2c216731ba2 2019-11-05 03:14:04.004272 20214 555 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.130.34 1ae9bdae-01d5-4e7b-981f-e2c216731ba2 2019-11-05 03:14:04.016655 20215 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-01 17:08:29.320930000 Z\n- &1 2019-11-02 17:04:38.788733000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-05 17:18:07.955922024 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\nsign_in_count:\n- 53\n- 54\n 108 \N 189.186.130.34 f30c69fe-1963-4c5c-819a-c0a62e51a22c 2019-11-05 17:18:07.996417 20216 23 User \N \N 23 User \N update ---\nunique_session_id:\n- x8-K5jxZAKGwZvVooMzc\n- kpK7TEdbwjqs-B8j6Qjf\n 109 \N 189.186.130.34 f30c69fe-1963-4c5c-819a-c0a62e51a22c 2019-11-05 17:18:08.025394 20217 557 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.981E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 981.0 189.186.130.34 20307b71-410f-4d44-b658-92b504413b93 2019-11-05 17:49:58.910983 20218 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-04 20:11:01.835420000 Z\n- &1 2019-11-05 01:11:20.275572000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-05 19:20:12.443085987 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183144447\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183144447\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 853\n- 854\n 1708 \N 187.149.74.215 972950ff-a7bd-4bcf-aaa7-e1290aa60ca8 2019-11-05 19:20:12.455157 20219 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BBiXj87ry7LA4ejzySXJ\n- VaVwMvdaYdYa9o3F4z14\n 1709 \N 187.149.74.215 972950ff-a7bd-4bcf-aaa7-e1290aa60ca8 2019-11-05 19:20:12.478619 20220 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-02 22:23:38.852850000 Z\n- &1 2019-11-04 19:33:45.941841000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-05 19:23:27.933038199 Z\nsign_in_count:\n- 367\n- 368\n 739 \N 187.149.74.215 d1321b1c-6c15-4932-8569-80d12b2954db 2019-11-05 19:23:27.938517 20221 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Byp2pZUQSvz3htNHH5Hv\n- jP3wJiBxgUxumJ2PEgQJ\n 740 \N 187.149.74.215 d1321b1c-6c15-4932-8569-80d12b2954db 2019-11-05 19:23:27.951689 20222 558 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.879E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 879.0 187.149.74.215 21c05212-183c-4297-bab5-2e01d48f4ff2 2019-11-05 19:23:42.598531 20223 1369 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 558\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-11-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-715\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 e1a8d53c-7b3f-482f-bed4-e0e8514bbd15 2019-11-05 19:23:54.68973 20224 1244 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.74.215 e1a8d53c-7b3f-482f-bed4-e0e8514bbd15 2019-11-05 19:23:54.719099 20225 1369 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 5d41fcf5-e9bc-4629-949a-42718e8d55d2 2019-11-05 19:24:13.318815 20226 1909 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 558\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 1369\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-715\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-715 187.149.74.215 5d41fcf5-e9bc-4629-949a-42718e8d55d2 2019-11-05 19:24:13.351028 20227 285 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-11-05\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.74.215 1650de6b-c519-4449-aa5c-7a5807c3bc0f 2019-11-05 19:29:42.278199 20228 1251 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.74.215 6171a0f7-a26d-4d36-9f11-94a9df1eb61e 2019-11-05 19:30:49.082365 20229 1251 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.74.215 b25e3095-e645-4ae1-8452-702a573226a1 2019-11-05 19:30:52.379212 20230 286 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-11-05\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.74.215 577cc0a6-5f73-4299-bc4d-816c704ddc36 2019-11-05 19:30:53.519946 20231 287 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-11-05\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 187.149.74.215 fc3ee159-13c0-4b75-a69c-9e4d8a019f39 2019-11-05 19:32:01.55022 20232 288 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-11-05\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 187.149.74.215 8e56dcf4-a8e4-4759-b8ae-000aaf1a98eb 2019-11-05 19:38:26.200536 20233 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-11-03 17:03:16.376374000 Z\n- &1 2019-11-03 17:44:01.323636000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-05 19:40:56.607686244 Z\nsign_in_count:\n- 29\n- 30\n 60 \N 187.149.74.215 a7f8792c-cc91-4cfc-856e-6c0f44751c65 2019-11-05 19:40:56.61364 20234 25 User \N \N 25 User \N update ---\nunique_session_id:\n- XL2AsFYzFg-bt2QsXLCM\n- seMfTuTuWJG7D1JmXn2E\n 61 \N 187.149.74.215 a7f8792c-cc91-4cfc-856e-6c0f44751c65 2019-11-05 19:40:56.639329 20236 1272 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 900\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 c11f4897-4771-47f3-8bcc-829713e5bc91 2019-11-05 19:41:08.528334 20237 285 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-05\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.74.215 387b74af-bd18-4d08-8226-39066aab4cfd 2019-11-05 19:41:19.068284 20238 1273 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 895\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 387b74af-bd18-4d08-8226-39066aab4cfd 2019-11-05 19:41:19.089508 20239 1274 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 892\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 387b74af-bd18-4d08-8226-39066aab4cfd 2019-11-05 19:41:19.110956 20240 1275 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 889\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 387b74af-bd18-4d08-8226-39066aab4cfd 2019-11-05 19:41:19.134355 20241 1276 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 897\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 387b74af-bd18-4d08-8226-39066aab4cfd 2019-11-05 19:41:19.155259 20242 1277 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 868\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 387b74af-bd18-4d08-8226-39066aab4cfd 2019-11-05 19:41:19.175281 20243 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-03 17:28:18.082600000 Z\n- &1 2019-11-05 01:27:44.540016000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-05 19:42:50.269812265 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 18\n- 19\n 38 \N 187.149.74.215 3a597abc-897d-4829-9aaf-9cffaf7d1441 2019-11-05 19:42:50.277394 20244 26 User \N \N 26 User \N update ---\nunique_session_id:\n- ywyyio85sFS5MTv-yAbH\n- HRz4ynzjjNDr_rStm4o1\n 39 \N 187.149.74.215 3a597abc-897d-4829-9aaf-9cffaf7d1441 2019-11-05 19:42:50.291987 20245 288 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-05\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.74.215 441f6ba9-87b1-4f42-9422-9100e66220ca 2019-11-05 19:43:39.401512 20246 1278 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 867\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 441f6ba9-87b1-4f42-9422-9100e66220ca 2019-11-05 19:43:39.420934 20247 1279 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 894\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 441f6ba9-87b1-4f42-9422-9100e66220ca 2019-11-05 19:43:39.440977 20248 1280 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 896\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 441f6ba9-87b1-4f42-9422-9100e66220ca 2019-11-05 19:43:39.460322 20249 1281 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 893\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.9E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 441f6ba9-87b1-4f42-9422-9100e66220ca 2019-11-05 19:43:39.481171 20250 287 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-05\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.74.215 88112f32-fca9-4d47-a6fd-e2c8431d4d32 2019-11-05 19:43:48.019315 20251 1282 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 889\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 88112f32-fca9-4d47-a6fd-e2c8431d4d32 2019-11-05 19:43:48.037876 20252 869 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '869'\n is_parent: false\n sku: PAL-869\n name: PLZ-0019\n description: "PALAZZO VALENTINE TINTO ST- JP11008 Tinto \\r\\n"\n price_base: '530.0'\n price_sale: '1399.0'\n img_product: PHOTO-2019-11-04-14-14-08.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '9'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000869'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-29 01:25:56.855703'\n updated_at: &12 2019-11-05 19:56:51.376673654 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '869'\n sku: PAL-869\n name: PLZ-0019\n description: "PALAZZO VALENTINE TINTO ST- JP11008 Tinto \\r\\n"\n price_base: '530.00'\n price_sale: '1399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-29 01:25:56.855703'\n updated_at: '2019-10-30 01:24:14.754594'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000869'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '9'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '869'\n type: *3\n value: 869\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAL-869\n type: *7\n value: PAL-869\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PLZ-0019\n type: *8\n value: PLZ-0019\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "PALAZZO VALENTINE TINTO ST- JP11008 Tinto \\r\\n"\n type: *6\n value: "PALAZZO VALENTINE TINTO ST- JP11008 Tinto \\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '530.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.53E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1399E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-11-04-14-14-08.jpg\n type: *2\n value: PHOTO-2019-11-04-14-14-08.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '9'\n type: *3\n value: 9\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000869'\n type: *2\n value: '0000869'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-29 01:25:56.855703'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-11-04-14-14-08.jpg\n 4 El producto PAL-869 fue modificado. 187.149.74.215 5f2bab22-638a-4910-ba79-603054dee3e9 2019-11-05 19:56:51.42486 20253 867 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '867'\n is_parent: false\n sku: PAL-867\n name: PLZ-0017\n description: "VALENTINE PALAZO NEGRO ST-Jo15304\\r\\n"\n price_base: '470.0'\n price_sale: '1299.0'\n img_product: PHOTO-2019-11-04-14-14-12__1_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '9'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000867'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-29 01:24:34.16828'\n updated_at: &12 2019-11-05 19:59:04.817270960 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '867'\n sku: PAL-867\n name: PLZ-0017\n description: "VALENTINE PALAZO NEGRO ST-Jo15304\\r\\n"\n price_base: '470.00'\n price_sale: '1299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-29 01:24:34.16828'\n updated_at: '2019-10-29 01:24:34.219647'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000867'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '9'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '867'\n type: *3\n value: 867\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAL-867\n type: *7\n value: PAL-867\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PLZ-0017\n type: *8\n value: PLZ-0017\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "VALENTINE PALAZO NEGRO ST-Jo15304\\r\\n"\n type: *6\n value: "VALENTINE PALAZO NEGRO ST-Jo15304\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '470.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.47E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1299E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-11-04-14-14-12__1_.jpg\n type: *2\n value: PHOTO-2019-11-04-14-14-12__1_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '9'\n type: *3\n value: 9\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000867'\n type: *2\n value: '0000867'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-29 01:24:34.16828'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-11-04-14-14-12__1_.jpg\n 3 El producto PAL-867 fue modificado. 187.149.74.215 209e0343-5381-4967-8d14-56bc76a42077 2019-11-05 19:59:04.863394 20254 895 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '895'\n is_parent: false\n sku: CHA-895\n name: CHA-0013\n description: "LA COLATION NEGRO Y BLUSH ST-DCJ107B\\r\\n"\n price_base: '646.0'\n price_sale: '1629.0'\n img_product: PHOTO-2019-11-04-14-14-12.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000895'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-30 01:48:58.417653'\n updated_at: &12 2019-11-05 20:00:22.768507639 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '895'\n sku: CHA-895\n name: CHA-0013\n description: "LA COLATION NEGRO Y BLUSH ST-DCJ107B\\r\\n"\n price_base: '646.00'\n price_sale: '1629.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-30 01:48:58.417653'\n updated_at: '2019-10-30 01:48:58.454125'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000895'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '895'\n type: *3\n value: 895\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-895\n type: *7\n value: CHA-895\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0013\n type: *8\n value: CHA-0013\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "LA COLATION NEGRO Y BLUSH ST-DCJ107B\\r\\n"\n type: *6\n value: "LA COLATION NEGRO Y BLUSH ST-DCJ107B\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '646.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.646E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1629.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1629E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-11-04-14-14-12.jpg\n type: *2\n value: PHOTO-2019-11-04-14-14-12.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000895'\n type: *2\n value: '0000895'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-30 01:48:58.417653'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-11-04-14-14-12.jpg\n 3 El producto CHA-895 fue modificado. 187.149.74.215 488f7999-cc56-43eb-a08b-875cb1de3f9a 2019-11-05 20:00:22.811167 20255 901 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '901'\n is_parent: false\n sku: CHA-901\n name: CHA-0019\n description: "M2 CHAMARRA DEMIN ST-1401\\r\\n"\n price_base: '550.0'\n price_sale: '1359.0'\n img_product: PHOTO-2019-11-04-14-14-13__1_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000901'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-30 01:54:26.812042'\n updated_at: &12 2019-11-05 20:00:54.959481249 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '901'\n sku: CHA-901\n name: CHA-0019\n description: "M2 CHAMARRA DEMIN ST-1401\\r\\n"\n price_base: '550.00'\n price_sale: '1359.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-30 01:54:26.812042'\n updated_at: '2019-10-30 01:54:26.847042'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000901'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '901'\n type: *3\n value: 901\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-901\n type: *7\n value: CHA-901\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0019\n type: *8\n value: CHA-0019\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "M2 CHAMARRA DEMIN ST-1401\\r\\n"\n type: *6\n value: "M2 CHAMARRA DEMIN ST-1401\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '550.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.55E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1359.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1359E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-11-04-14-14-13__1_.jpg\n type: *2\n value: PHOTO-2019-11-04-14-14-13__1_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000901'\n type: *2\n value: '0000901'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-30 01:54:26.812042'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-11-04-14-14-13__1_.jpg\n 3 El producto CHA-901 fue modificado. 187.149.74.215 374f350e-0b97-429f-a477-17a73c7222eb 2019-11-05 20:00:55.024752 20256 900 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '900'\n is_parent: false\n sku: CHA-900\n name: CHA-0018\n description: "M2 CHAMARRA PINK ST-1410\\r\\n"\n price_base: '430.0'\n price_sale: '1099.0'\n img_product: PHOTO-2019-11-04-14-14-13.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000900'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-30 01:53:28.562074'\n updated_at: &12 2019-11-05 20:01:31.120714746 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '900'\n sku: CHA-900\n name: CHA-0018\n description: "M2 CHAMARRA PINK ST-1410\\r\\n"\n price_base: '430.00'\n price_sale: '1099.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-30 01:53:28.562074'\n updated_at: '2019-10-30 01:53:28.599752'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000900'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '900'\n type: *3\n value: 900\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-900\n type: *7\n value: CHA-900\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0018\n type: *8\n value: CHA-0018\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "M2 CHAMARRA PINK ST-1410\\r\\n"\n type: *6\n value: "M2 CHAMARRA PINK ST-1410\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '430.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.43E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1099.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1099E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-11-04-14-14-13.jpg\n type: *2\n value: PHOTO-2019-11-04-14-14-13.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000900'\n type: *2\n value: '0000900'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-30 01:53:28.562074'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-11-04-14-14-13.jpg\n 3 El producto CHA-900 fue modificado. 187.149.74.215 a3d1f1f8-8aab-4173-8601-d96c90ad0948 2019-11-05 20:01:31.179543 20257 899 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '899'\n is_parent: false\n sku: CHA-899\n name: CHA-0017\n description: "LA COLATION NEGRO ST-DFJ3023\\r\\n"\n price_base: '649.0'\n price_sale: '1629.0'\n img_product: PHOTO-2019-11-04-14-14-11.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000899'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-30 01:52:41.775952'\n updated_at: &12 2019-11-05 20:02:04.665282435 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '899'\n sku: CHA-899\n name: CHA-0017\n description: "LA COLATION NEGRO ST-DFJ3023\\r\\n"\n price_base: '649.00'\n price_sale: '1629.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-30 01:52:41.775952'\n updated_at: '2019-10-30 01:52:41.832531'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000899'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '899'\n type: *3\n value: 899\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-899\n type: *7\n value: CHA-899\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0017\n type: *8\n value: CHA-0017\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "LA COLATION NEGRO ST-DFJ3023\\r\\n"\n type: *6\n value: "LA COLATION NEGRO ST-DFJ3023\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '649.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.649E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1629.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1629E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-11-04-14-14-11.jpg\n type: *2\n value: PHOTO-2019-11-04-14-14-11.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000899'\n type: *2\n value: '0000899'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-30 01:52:41.775952'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-11-04-14-14-11.jpg\n 3 El producto CHA-899 fue modificado. 187.149.74.215 3510c6b8-8987-4e63-b1e9-f2d27d3c8169 2019-11-05 20:02:04.711555 20258 897 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '897'\n is_parent: false\n sku: CHA-897\n name: CHA-0015\n description: "LA COLATION ROSA Y GUNMETAL\\r\\n"\n price_base: '665.0'\n price_sale: '1669.0'\n img_product: PHOTO-2019-11-04-14-14-11__1_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000897'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-30 01:50:53.587581'\n updated_at: &12 2019-11-05 20:03:05.868683881 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '897'\n sku: CHA-897\n name: CHA-0015\n description: "LA COLATION ROSA Y GUNMETAL\\r\\n"\n price_base: '665.00'\n price_sale: '1669.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-30 01:50:53.587581'\n updated_at: '2019-10-30 01:50:53.624925'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000897'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '897'\n type: *3\n value: 897\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-897\n type: *7\n value: CHA-897\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0015\n type: *8\n value: CHA-0015\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "LA COLATION ROSA Y GUNMETAL\\r\\n"\n type: *6\n value: "LA COLATION ROSA Y GUNMETAL\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '665.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.665E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1669.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1669E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-11-04-14-14-11__1_.jpg\n type: *2\n value: PHOTO-2019-11-04-14-14-11__1_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000897'\n type: *2\n value: '0000897'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-30 01:50:53.587581'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-11-04-14-14-11__1_.jpg\n 3 El producto CHA-897 fue modificado. 187.149.74.215 79c42364-6671-4a4e-90ff-d57765202b49 2019-11-05 20:03:05.909928 20259 896 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '896'\n is_parent: false\n sku: CHA-896\n name: CHA-0014\n description: "LA COLATION DORADO Y ROSA ST-dcj3009\\r\\n"\n price_base: '665.0'\n price_sale: '1669.0'\n img_product: PHOTO-2019-11-04-14-14-10__2_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000896'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-30 01:50:03.497625'\n updated_at: &12 2019-11-05 20:04:09.083425745 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '896'\n sku: CHA-896\n name: CHA-0014\n description: "LA COLATION DORADO Y ROSA ST-dcj3009\\r\\n"\n price_base: '665.00'\n price_sale: '1669.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-30 01:50:03.497625'\n updated_at: '2019-10-30 01:50:03.556134'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000896'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '896'\n type: *3\n value: 896\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-896\n type: *7\n value: CHA-896\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0014\n type: *8\n value: CHA-0014\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "LA COLATION DORADO Y ROSA ST-dcj3009\\r\\n"\n type: *6\n value: "LA COLATION DORADO Y ROSA ST-dcj3009\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '665.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.665E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1669.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1669E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-11-04-14-14-10__2_.jpg\n type: *2\n value: PHOTO-2019-11-04-14-14-10__2_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000896'\n type: *2\n value: '0000896'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-30 01:50:03.497625'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-11-04-14-14-10__2_.jpg\n 3 El producto CHA-896 fue modificado. 187.149.74.215 028029ca-0078-40a0-8c50-69ab5b800d9d 2019-11-05 20:04:09.128911 20260 889 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '889'\n is_parent: false\n sku: CHA-889\n name: CHA-0005\n description: "Suéter Balboa amarillo y blanco \\r\\n"\n price_base: '300.0'\n price_sale: '789.0'\n img_product: PHOTO-2019-11-04-14-14-09__1_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000889'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-30 01:36:17.952478'\n updated_at: &12 2019-11-05 20:05:43.056542301 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '889'\n sku: CHA-889\n name: CHA-0005\n description: "Suéter Balboa amarillo y blanco \\r\\n"\n price_base: '300.00'\n price_sale: '789.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-30 01:36:17.952478'\n updated_at: '2019-10-30 01:36:17.994947'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000889'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '889'\n type: *3\n value: 889\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-889\n type: *7\n value: CHA-889\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0005\n type: *8\n value: CHA-0005\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "Suéter Balboa amarillo y blanco \\r\\n"\n type: *6\n value: "Suéter Balboa amarillo y blanco \\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '300.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '789.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.789E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-11-04-14-14-09__1_.jpg\n type: *2\n value: PHOTO-2019-11-04-14-14-09__1_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000889'\n type: *2\n value: '0000889'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-30 01:36:17.952478'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-11-04-14-14-09__1_.jpg\n 3 El producto CHA-889 fue modificado. 187.149.74.215 52be4834-3ee7-4c8a-8519-29fb2673355e 2019-11-05 20:05:43.096813 20261 894 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '894'\n is_parent: false\n sku: CHA-894\n name: CHA-0012\n description: "LA COLATION NEGRO ST-DCJ101B\\r\\n"\n price_base: '608.0'\n price_sale: '1549.0'\n img_product: PHOTO-2019-11-04-14-14-08__2_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000894'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-30 01:47:46.253695'\n updated_at: &12 2019-11-05 20:06:55.859449286 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '894'\n sku: CHA-894\n name: CHA-0012\n description: "LA COLATION NEGRO ST-DCJ101B\\r\\n"\n price_base: '608.00'\n price_sale: '1549.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-30 01:47:46.253695'\n updated_at: '2019-10-30 01:47:46.302937'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000894'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '894'\n type: *3\n value: 894\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-894\n type: *7\n value: CHA-894\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0012\n type: *8\n value: CHA-0012\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "LA COLATION NEGRO ST-DCJ101B\\r\\n"\n type: *6\n value: "LA COLATION NEGRO ST-DCJ101B\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '608.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.608E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1549.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1549E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-11-04-14-14-08__2_.jpg\n type: *2\n value: PHOTO-2019-11-04-14-14-08__2_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000894'\n type: *2\n value: '0000894'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-30 01:47:46.253695'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-11-04-14-14-08__2_.jpg\n 3 El producto CHA-894 fue modificado. 187.149.74.215 78ada390-b79b-4018-8cf1-eed71c9c72c4 2019-11-05 20:06:55.904255 20262 871 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '871'\n is_parent: false\n sku: BLU-871\n name: BLS-0091\n description: "BLUSA MUYMUYY ST-MM0867 COLOR NEGRO, DORADO Y PLATA\\r\\n"\n price_base: '210.0'\n price_sale: '599.0'\n img_product: PHOTO-2019-11-04-14-14-07__3_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000871'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-29 01:28:32.653619'\n updated_at: &12 2019-11-05 20:07:37.322047491 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '871'\n sku: BLU-871\n name: BLS-0091\n description: "BLUSA MUYMUYY ST-MM0867 COLOR NEGRO, DORADO Y PLATA\\r\\n"\n price_base: '210.00'\n price_sale: '599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-29 01:28:32.653619'\n updated_at: '2019-10-29 01:28:32.690205'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000871'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '871'\n type: *3\n value: 871\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-871\n type: *7\n value: BLU-871\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0091\n type: *8\n value: BLS-0091\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "BLUSA MUYMUYY ST-MM0867 COLOR NEGRO, DORADO Y\n PLATA\\r\\n"\n type: *6\n value: "BLUSA MUYMUYY ST-MM0867 COLOR NEGRO, DORADO Y PLATA\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '210.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.21E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.599E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-11-04-14-14-07__3_.jpg\n type: *2\n value: PHOTO-2019-11-04-14-14-07__3_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000871'\n type: *2\n value: '0000871'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-29 01:28:32.653619'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-11-04-14-14-07__3_.jpg\n 3 El producto BLU-871 fue modificado. 187.149.74.215 1b661d20-b46a-406e-846f-719f005349c8 2019-11-05 20:07:37.365033 20263 874 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '874'\n is_parent: false\n sku: BLU-874\n name: BLS-0094\n description: "BLUSA VALENTINE ST-9326 roja y negra\\r\\n"\n price_base: '290.0'\n price_sale: '759.0'\n img_product: PHOTO-2019-11-04-14-14-12__2_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000874'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-29 01:30:57.650759'\n updated_at: &12 2019-11-05 20:08:28.631721916 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '874'\n sku: BLU-874\n name: BLS-0094\n description: "BLUSA VALENTINE ST-9326 roja y negra\\r\\n"\n price_base: '290.00'\n price_sale: '759.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-29 01:30:57.650759'\n updated_at: '2019-10-29 01:30:57.685604'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000874'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '874'\n type: *3\n value: 874\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-874\n type: *7\n value: BLU-874\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0094\n type: *8\n value: BLS-0094\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "BLUSA VALENTINE ST-9326 roja y negra\\r\\n"\n type: *6\n value: "BLUSA VALENTINE ST-9326 roja y negra\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '290.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.29E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '759.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.759E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-11-04-14-14-12__2_.jpg\n type: *2\n value: PHOTO-2019-11-04-14-14-12__2_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000874'\n type: *2\n value: '0000874'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-29 01:30:57.650759'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-11-04-14-14-12__2_.jpg\n 3 El producto BLU-874 fue modificado. 187.149.74.215 839def57-fca0-4ff3-aa9f-8f47128297c2 2019-11-05 20:08:28.674159 20264 898 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '898'\n is_parent: false\n sku: CHA-898\n name: CHA-0016\n description: "LA COLATION NEGRO ST-DCJ3027\\r\\n"\n price_base: '570.0'\n price_sale: '1469.0'\n img_product: PHOTO-2019-11-04-14-14-09__3_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000898'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-30 01:51:42.340192'\n updated_at: &12 2019-11-05 20:10:25.687184034 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '898'\n sku: CHA-898\n name: CHA-0016\n description: "LA COLATION NEGRO ST-DCJ3027\\r\\n"\n price_base: '570.00'\n price_sale: '1469.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-30 01:51:42.340192'\n updated_at: '2019-10-30 01:51:42.375944'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000898'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '898'\n type: *3\n value: 898\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-898\n type: *7\n value: CHA-898\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0016\n type: *8\n value: CHA-0016\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "LA COLATION NEGRO ST-DCJ3027\\r\\n"\n type: *6\n value: "LA COLATION NEGRO ST-DCJ3027\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '570.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.57E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1469.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1469E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-11-04-14-14-09__3_.jpg\n type: *2\n value: PHOTO-2019-11-04-14-14-09__3_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000898'\n type: *2\n value: '0000898'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-30 01:51:42.340192'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-11-04-14-14-09__3_.jpg\n 3 El producto CHA-898 fue modificado. 187.149.74.215 656ff27c-3ece-4cb5-bd96-1cc3713a8786 2019-11-05 20:10:25.745112 20284 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-05 01:11:20.275572000 Z\n- &1 2019-11-05 19:20:12.443085000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-05 21:08:19.805251767 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183144447\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938245\n mask_addr: 4294967295\nsign_in_count:\n- 854\n- 855\n 1710 \N 200.68.150.197 08878025-91fe-41b3-87fe-5fb74204eaf1 2019-11-05 21:08:19.813474 20285 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VaVwMvdaYdYa9o3F4z14\n- E8FzNLhzqsXRTJ5goM4-\n 1711 \N 200.68.150.197 08878025-91fe-41b3-87fe-5fb74204eaf1 2019-11-05 21:08:19.831267 20286 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-05 19:20:12.443085000 Z\n- &1 2019-11-05 21:08:19.805251000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-05 23:20:41.460991478 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938245\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096836\n mask_addr: 4294967295\nsign_in_count:\n- 855\n- 856\n 1712 \N 189.186.52.4 f70106f4-4e09-441a-b766-4294fbcc0100 2019-11-05 23:20:41.471618 20287 4 User \N \N 4 User \N update ---\nunique_session_id:\n- E8FzNLhzqsXRTJ5goM4-\n- f2U-oGtyeFhfDZx_x1gM\n 1713 \N 189.186.52.4 f70106f4-4e09-441a-b766-4294fbcc0100 2019-11-05 23:20:41.49424 20288 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-05 01:27:44.540016000 Z\n- &1 2019-11-05 19:42:50.269812000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-06 00:01:45.371390444 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 19\n- 20\n 40 \N 187.149.74.215 ba4bd74c-0360-42e9-b3ee-c338a38b2878 2019-11-06 00:01:45.380549 20289 26 User \N \N 26 User \N update ---\nunique_session_id:\n- HRz4ynzjjNDr_rStm4o1\n- nHpci7GAax--mzJqmya-\n 41 \N 187.149.74.215 ba4bd74c-0360-42e9-b3ee-c338a38b2878 2019-11-06 00:01:45.398081 20290 399 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.74.215 55cd14ca-a2ea-4583-9831-f0fedce126dd 2019-11-06 00:09:30.935492 20291 490 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 187.149.74.215 15bbadeb-b557-402f-a872-95a1f105dd5b 2019-11-06 00:12:10.936981 20292 490 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.74.215 139a66dc-bf8e-40d0-a020-e142e1e9c185 2019-11-06 00:12:19.696211 20293 575 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.74.215 c3bbca3b-5026-4061-9d56-4a37adfd2fb9 2019-11-06 00:13:38.512116 20294 313 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.74.215 bf941397-3b6f-4a5b-8bbf-f2fb958ed119 2019-11-06 00:14:58.218897 20295 313 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.74.215 84ba09de-68d4-467a-9cdc-ddb93b6c04ac 2019-11-06 00:15:27.039911 20296 291 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 187.149.74.215 2aa35f3a-9c86-4981-b4b6-919c0ff77180 2019-11-06 00:16:25.180296 20297 291 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.74.215 8ea72688-6bee-479f-b9ca-4acb79aed8fe 2019-11-06 00:16:27.978921 20298 756 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.74.215 b2a21514-d62f-43f7-95f7-0d5611e19eed 2019-11-06 00:27:57.480613 20299 756 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.74.215 39f4f8ef-62d4-441c-a33a-88b99179d0d1 2019-11-06 00:28:45.564823 20300 1053 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.74.215 7d8fc2e4-93b8-4a38-9c8e-8b28e5f5c18d 2019-11-06 00:31:06.229978 20301 1053 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.74.215 671389a8-2f5c-4543-92d8-f9e94255eef2 2019-11-06 00:31:09.618913 20302 513 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.74.215 207cdc94-6d28-4bc8-8a26-0a888a9f1fe7 2019-11-06 00:35:53.595468 20303 513 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.74.215 2c852aae-9dbe-45c8-ab10-01d750fb0952 2019-11-06 00:36:10.915856 20304 1010 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.74.215 688a797b-0c71-4541-81a6-68847e745981 2019-11-06 00:39:58.005778 20305 1010 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.74.215 a26d575d-3b3f-4676-9a07-6ea4f86e1455 2019-11-06 00:40:06.787201 20306 289 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-11-05\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de S BY SUO a Almacen central creado. 187.149.74.215 ad22570f-584a-4342-bae1-050b3dfc5a0b 2019-11-06 01:08:32.450283 20307 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-05 19:42:50.269812000 Z\n- &1 2019-11-06 00:01:45.371390000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-06 01:19:48.100726806 Z\nsign_in_count:\n- 20\n- 21\n 42 \N 187.149.74.215 ccb18b4a-b5ef-4d44-94d3-ed53808d2cef 2019-11-06 01:19:48.115587 20308 26 User \N \N 26 User \N update ---\nunique_session_id:\n- nHpci7GAax--mzJqmya-\n- beMbavBNxR-RPx4Mr9mi\n 43 \N 187.149.74.215 ccb18b4a-b5ef-4d44-94d3-ed53808d2cef 2019-11-06 01:19:48.167554 20309 559 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.855E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 855.0 187.149.74.215 6329e22a-33ce-4bbf-8593-3a2439d5bacb 2019-11-06 01:19:59.489909 20310 229 Customer \N \N 26 User \N create ---\nnick_name: VANIA VALENZUELA\nphone: "(667) 409-3914"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente VANIA VALENZUELA fue registrado. 187.149.74.215 06af97ea-515d-41b0-a26d-4540d9427f34 2019-11-06 01:20:31.467888 20334 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-02 17:04:38.788733000 Z\n- &1 2019-11-05 17:18:07.955922000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-06 17:21:02.170908155 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183129766\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\nsign_in_count:\n- 54\n- 55\n 110 \N 189.186.130.34 9f3766c1-3a2a-42d3-9225-b46092685ee2 2019-11-06 17:21:02.210542 20311 1370 Sale \N \N 26 User \N create ---\ncustomer_id: 229\nuser_id: 26\nopen_cash_register_id: 559\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-11-05\nsaletype: 2\nseller_id: 19\nsale_code: PV2-V-547\nexpiration_date: 2019-12-10\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 231d06a2-d3b0-4b54-9a60-be2481bcce1d 2019-11-06 01:21:00.615547 20312 1278 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.74.215 231d06a2-d3b0-4b54-9a60-be2481bcce1d 2019-11-06 01:21:00.64679 20313 1910 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 559\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 1370\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-547\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-547 187.149.74.215 7cfe233d-a73a-4874-b5e7-786e3b39db77 2019-11-06 01:21:09.764174 20314 1370 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.74.215 f6f3b0ad-ce5d-408a-9956-904bc3f933dc 2019-11-06 01:21:13.644651 20315 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-05 21:08:19.805251000 Z\n- &1 2019-11-05 23:20:41.460991000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-06 01:25:25.127664271 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096836\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096836\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 856\n- 857\n 1714 \N 187.149.74.215 24affbb5-ccba-4f19-bfa0-a4160b69afcf 2019-11-06 01:25:25.137092 20316 4 User \N \N 4 User \N update ---\nunique_session_id:\n- f2U-oGtyeFhfDZx_x1gM\n- 9Krjs3xQ2w5EZN8nccgg\n 1715 \N 187.149.74.215 24affbb5-ccba-4f19-bfa0-a4160b69afcf 2019-11-06 01:25:25.159166 20317 290 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-11-05\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.74.215 e269ff69-a2ed-4877-9a47-3bbfeecd8bc8 2019-11-06 01:29:27.210639 20318 290 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-05\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.74.215 969adba7-f8dc-4e49-841d-0d1970f6d894 2019-11-06 01:30:53.874626 20319 1283 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 887\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 969adba7-f8dc-4e49-841d-0d1970f6d894 2019-11-06 01:30:53.908806 20320 1284 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 885\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 969adba7-f8dc-4e49-841d-0d1970f6d894 2019-11-06 01:30:53.942676 20321 455 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.74.215 1a59b787-f9e6-4e24-a1be-c1052b0d4005 2019-11-06 01:57:17.125647 20322 456 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.74.215 9adf02ff-2c63-45ff-a156-8d7f1158094b 2019-11-06 01:57:29.764337 20323 456 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.74.215 62e72f88-6d0b-44cd-aae5-402f57f7940f 2019-11-06 01:57:32.459927 20324 460 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.74.215 c53e20f2-70c9-4821-9f1e-51a81685354f 2019-11-06 01:57:59.932787 20325 291 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-11-05\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.74.215 421132eb-2486-4441-a094-8355c9f83e50 2019-11-06 01:58:14.049012 20326 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-06 00:01:45.371390000 Z\n- &1 2019-11-06 01:19:48.100726000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-06 02:07:26.914155944 Z\nsign_in_count:\n- 21\n- 22\n 44 \N 187.149.74.215 a1f5f52d-d61a-4ad8-ba37-803f610f9778 2019-11-06 02:07:26.926206 20327 26 User \N \N 26 User \N update ---\nunique_session_id:\n- beMbavBNxR-RPx4Mr9mi\n- AystcPTsYyg-v-zxumKA\n 45 \N 187.149.74.215 a1f5f52d-d61a-4ad8-ba37-803f610f9778 2019-11-06 02:07:26.945429 20328 559 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 558\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.599E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.478E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1478E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.74.215 d2e7ce6c-be64-4e04-9448-e178ffd9aac3 2019-11-06 02:44:37.815072 20329 558 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 d2e7ce6c-be64-4e04-9448-e178ffd9aac3 2019-11-06 02:44:37.829202 20330 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-05 23:20:41.460991000 Z\n- &1 2019-11-06 01:25:25.127664000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-06 02:47:05.696593953 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096836\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096836\n mask_addr: 4294967295\nsign_in_count:\n- 857\n- 858\n 1716 \N 189.186.52.4 2822b1bf-09df-4ad1-a7a6-6b32766901a3 2019-11-06 02:47:05.704626 20331 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9Krjs3xQ2w5EZN8nccgg\n- tfyzBA5P1Ke-Q5_NfeYK\n 1717 \N 189.186.52.4 2822b1bf-09df-4ad1-a7a6-6b32766901a3 2019-11-06 02:47:05.722924 20332 560 CashOut \N \N 26 User \N create ---\nopen_cash_register_id: 559\nuser_id: 26\namount_in: !ruby/object:BigDecimal 18:0.25E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1096E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1096E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.74.215 e6a35bc3-6663-49dc-ab73-275378a3ba87 2019-11-06 02:58:44.743471 20333 559 OpenCashRegister \N \N 26 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 e6a35bc3-6663-49dc-ab73-275378a3ba87 2019-11-06 02:58:44.758205 20335 23 User \N \N 23 User \N update ---\nunique_session_id:\n- kpK7TEdbwjqs-B8j6Qjf\n- K6ktnTrKNBxyChKxioCn\n 111 \N 189.186.130.34 9f3766c1-3a2a-42d3-9225-b46092685ee2 2019-11-06 17:21:02.237415 20336 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-06 01:19:48.100726000 Z\n- &1 2019-11-06 02:07:26.914155000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-06 17:37:20.802185675 Z\nsign_in_count:\n- 22\n- 23\n 46 \N 187.149.74.215 95eecad0-a08a-439b-8253-ff6e9c8df86e 2019-11-06 17:37:20.810487 20337 26 User \N \N 26 User \N update ---\nunique_session_id:\n- AystcPTsYyg-v-zxumKA\n- 9aiYXQvkjaEpV-W2kasC\n 47 \N 187.149.74.215 95eecad0-a08a-439b-8253-ff6e9c8df86e 2019-11-06 17:37:20.825192 20338 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-10-29 20:32:59.270637000 Z\n- &1 2019-10-31 21:41:38.770546000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-06 17:44:03.754219905 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121354\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121354\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 10\n- 11\n 22 \N 187.149.74.215 e2a9972a-ad2b-4a2a-8b0a-47b5b74eff2c 2019-11-06 17:44:03.762184 20339 24 User \N \N 24 User \N update ---\nunique_session_id:\n- hZu2hUp5erRz7Juzu9HG\n- oAoHZVFhxQYB57BDjsfJ\n 23 \N 187.149.74.215 e2a9972a-ad2b-4a2a-8b0a-47b5b74eff2c 2019-11-06 17:44:03.777496 20340 560 OpenCashRegister \N \N 24 User \N create ---\ncash_register_id: 2\nuser_id: 24\ninitial_cash: !ruby/object:BigDecimal 18:0.1096E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1096.0 187.149.74.215 a70be85b-32c5-4b03-953f-e921fcac8c3e 2019-11-06 17:44:09.356165 20341 230 Customer \N \N 24 User \N create ---\nnick_name: MERCEDES JIMENEZ\nphone: "(667) 230-6600"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MERCEDES JIMENEZ fue registrado. 187.149.74.215 974fb6c4-99db-45c5-acbb-c290c973dc36 2019-11-06 17:45:01.845377 20342 1371 Sale \N \N 24 User \N create ---\ncustomer_id: 230\nuser_id: 24\nopen_cash_register_id: 560\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-11-06\nsaletype: 2\nseller_id: 11\nsale_code: PV2-V-548\nexpiration_date: 2019-12-11\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 cfbb99ab-3112-477b-821e-2fd4ff813dcd 2019-11-06 17:45:25.213734 20343 718 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.74.215 cfbb99ab-3112-477b-821e-2fd4ff813dcd 2019-11-06 17:45:25.24392 20344 1911 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 560\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1371\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-548\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-548 187.149.74.215 92d136d7-fbaa-414b-a66b-726bccba55fc 2019-11-06 17:45:36.259778 20345 1371 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.74.215 e24df3c9-9146-4b12-b686-d77d7d518d4b 2019-11-06 17:45:38.993414 20346 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-06 01:25:25.127664000 Z\n- &1 2019-11-06 02:47:05.696593000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-06 17:45:53.767783939 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096836\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096836\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 858\n- 859\n 1718 \N 187.149.74.215 94cf9ca8-79a1-4c20-9c17-9aa17391c59d 2019-11-06 17:45:53.776012 20347 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tfyzBA5P1Ke-Q5_NfeYK\n- MbeDKxp-ixAz6Czz6FhC\n 1719 \N 187.149.74.215 94cf9ca8-79a1-4c20-9c17-9aa17391c59d 2019-11-06 17:45:53.811189 20348 909 Product \N \N 4 User \N create ---\nsku: BOL-909\nname: 1BLCI19325\ndescription: Bolso tipo cruzado en material liso, construcción estructurada, herraje\n en acabado brillante al costado, asa larga removible y ajustable adicional.\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170767230'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: BCRL325_NEGR_1_300x435.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-909 fue creado. 187.149.74.215 6dd3f870-9488-4471-9578-65ea20b04aeb 2019-11-06 17:50:18.811841 20349 1285 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 909\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 6dd3f870-9488-4471-9578-65ea20b04aeb 2019-11-06 17:50:18.855993 20350 184 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-88\namount: !ruby/object:BigDecimal 18:0.7995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.7995E3\nobservations: ''\npurchase_date: 2019-11-06\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-88 por $ 799.5 MXN creada. 187.149.74.215 b5ddda11-085a-4b72-93ce-4e826958829c 2019-11-06 17:50:24.158402 20351 1285 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.74.215 b5ddda11-085a-4b72-93ce-4e826958829c 2019-11-06 17:50:24.18226 20352 292 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-11-06\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 187.149.74.215 1f675afa-0f77-44b0-b7af-f8a5840cd5f9 2019-11-06 18:15:50.031345 20353 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-11-04 19:06:49.829536000 Z\n- &1 2019-11-05 00:59:04.664951000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-06 18:19:03.611870511 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 39\n- 40\n 81 \N 187.149.74.215 bed8a929-67a1-4f29-a872-5d103fc50ef3 2019-11-06 18:19:03.618632 20354 21 User \N \N 21 User \N update ---\nunique_session_id:\n- AYxSnW8EX8Ev_5RDk14z\n- wVZzyiiBty76b7Lhdy3W\n 82 \N 187.149.74.215 bed8a929-67a1-4f29-a872-5d103fc50ef3 2019-11-06 18:19:03.632263 20355 292 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-06\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 187.149.74.215 f99af28e-9611-4ad8-978f-20c1e31914dd 2019-11-06 18:21:13.898603 20356 1286 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 893\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 f99af28e-9611-4ad8-978f-20c1e31914dd 2019-11-06 18:21:13.921404 20357 293 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-11-06\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 187.149.74.215 9cc78b27-a454-4f8b-9fb8-8909abbb70ef 2019-11-06 18:21:35.52583 20358 293 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-06\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 187.149.74.215 b28d8744-579d-41aa-b56b-715522ebf2f4 2019-11-06 18:23:14.966518 20359 1286 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.9E1\n 2 \N 187.149.74.215 b28d8744-579d-41aa-b56b-715522ebf2f4 2019-11-06 18:23:14.983931 20360 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-06 02:47:05.696593000 Z\n- &1 2019-11-06 17:45:53.767783000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-06 18:31:03.303281702 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096836\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 859\n- 860\n 1720 \N 187.149.74.215 0686ecf3-0afe-42d4-95cb-3a805fcdd057 2019-11-06 18:31:03.310783 20361 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MbeDKxp-ixAz6Czz6FhC\n- x-FhW1xVkp_YKVBhrE11\n 1721 \N 187.149.74.215 0686ecf3-0afe-42d4-95cb-3a805fcdd057 2019-11-06 18:31:03.332649 20362 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-04 19:33:45.941841000 Z\n- &1 2019-11-05 19:23:27.933038000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-06 18:43:26.471700187 Z\nsign_in_count:\n- 368\n- 369\n 741 \N 187.149.74.215 73e8be55-2d0d-4537-a631-74886808c732 2019-11-06 18:43:26.482313 20363 2 User \N \N 2 User \N update ---\nunique_session_id:\n- jP3wJiBxgUxumJ2PEgQJ\n- N_zFgvmswdRqxS-byp2z\n 742 \N 187.149.74.215 73e8be55-2d0d-4537-a631-74886808c732 2019-11-06 18:43:26.506406 20364 561 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.478E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 478.0 187.149.74.215 1398a522-79b1-47e3-b51c-04f81bc66572 2019-11-06 18:43:51.415986 20365 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-06 02:07:26.914155000 Z\n- &1 2019-11-06 17:37:20.802185000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-06 18:59:40.984640370 Z\nsign_in_count:\n- 23\n- 24\n 48 \N 187.149.74.215 7f121f09-83e1-47bb-b628-fb8a9bcc5176 2019-11-06 18:59:40.991385 20366 26 User \N \N 26 User \N update ---\nunique_session_id:\n- 9aiYXQvkjaEpV-W2kasC\n- sST5LVA5Ur4aGc2p99Gk\n 49 \N 187.149.74.215 7f121f09-83e1-47bb-b628-fb8a9bcc5176 2019-11-06 18:59:41.004914 20367 1372 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 560\namount: !ruby/object:BigDecimal 18:0.3006E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3006E4\nstatus: 0\ndate_sale: 2019-11-06\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-549\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 60f2b8ca-c34f-424a-af9a-987471d6355b 2019-11-06 19:01:08.911766 20368 1139 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.74.215 60f2b8ca-c34f-424a-af9a-987471d6355b 2019-11-06 19:01:08.948215 20369 1099 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.74.215 60f2b8ca-c34f-424a-af9a-987471d6355b 2019-11-06 19:01:08.979681 20370 559 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.74.215 60f2b8ca-c34f-424a-af9a-987471d6355b 2019-11-06 19:01:09.024722 20371 1259 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.74.215 60f2b8ca-c34f-424a-af9a-987471d6355b 2019-11-06 19:01:09.048991 20372 1372 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 f75ad6b5-f876-4583-a7a1-2c335c85cbbe 2019-11-06 19:01:33.205212 20373 1912 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 560\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3006E4\nmove_type: '1'\nsale_id: 1372\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-549\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3006E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-549 187.149.74.215 f75ad6b5-f876-4583-a7a1-2c335c85cbbe 2019-11-06 19:01:33.225785 20374 1373 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 557\namount: !ruby/object:BigDecimal 18:0.2398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2398E4\nstatus: 0\ndate_sale: 2019-11-06\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-107\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 aa985e0e-c4c2-44eb-a3fd-18f9768011cc 2019-11-06 19:04:42.50602 20375 1269 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.130.34 aa985e0e-c4c2-44eb-a3fd-18f9768011cc 2019-11-06 19:04:42.530301 20376 1151 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.130.34 aa985e0e-c4c2-44eb-a3fd-18f9768011cc 2019-11-06 19:04:42.551159 20377 1373 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.130.34 0f76c46f-28a8-4c57-a7de-edccd33c443d 2019-11-06 19:04:53.508853 20378 1913 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 557\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2398E4\nmove_type: '1'\nsale_id: 1373\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-107\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.24E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-107 189.186.130.34 0f76c46f-28a8-4c57-a7de-edccd33c443d 2019-11-06 19:04:53.538411 20379 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-06 17:45:53.767783000 Z\n- &1 2019-11-06 18:31:03.303281000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-06 19:08:24.025393412 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147128429\n mask_addr: 4294967295\nsign_in_count:\n- 860\n- 861\n 1722 \N 187.149.94.109 f9c1d7dd-989a-4bc7-99e6-1dba978e5e4e 2019-11-06 19:08:24.032948 20380 4 User \N \N 4 User \N update ---\nunique_session_id:\n- x-FhW1xVkp_YKVBhrE11\n- 7aUCd8HBCiKjm_UWyMWi\n 1723 \N 187.149.94.109 f9c1d7dd-989a-4bc7-99e6-1dba978e5e4e 2019-11-06 19:08:24.049186 20402 1376 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 560\namount: !ruby/object:BigDecimal 18:0.639E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.639E3\nstatus: 0\ndate_sale: 2019-11-06\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-551\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 675a1258-767a-4827-9773-bc49bf1a24fd 2019-11-06 23:17:32.840724 20381 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-10-30 23:43:49.056557000 Z\n- &1 2019-10-31 22:22:58.847493000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-06 19:31:22.385495230 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115996\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121354\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121354\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 98\n- 99\n 198 \N 187.149.74.215 db6bab24-3725-432b-b5e4-07ed64828dff 2019-11-06 19:31:22.394843 20382 1 User \N \N 1 User \N update ---\nunique_session_id:\n- iSQYMwD-z6DjYQNjymPc\n- Yt7JoAZ6m2Kej-RTsA_D\n 199 \N 187.149.74.215 db6bab24-3725-432b-b5e4-07ed64828dff 2019-11-06 19:31:22.412797 20383 1374 Sale \N \N 26 User \N create ---\ncustomer_id: 191\nuser_id: 26\nopen_cash_register_id: 560\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-11-06\nsaletype: 2\nseller_id: 15\nsale_code: PV2-V-550\nexpiration_date: 2019-12-11\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 94f36151-5bc0-41cb-8c4b-64f2bb9bacad 2019-11-06 19:51:30.03558 20384 1017 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.74.215 94f36151-5bc0-41cb-8c4b-64f2bb9bacad 2019-11-06 19:51:30.071312 20385 1914 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 560\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1374\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-550\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-550 187.149.74.215 dcb55838-791d-4d33-b4ee-f54038cb70b5 2019-11-06 19:51:37.06448 20386 1374 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.74.215 c183dbc7-e952-4b5c-87a3-896226a01ac0 2019-11-06 19:51:39.335561 20387 750 Sale \N \N 1 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 187.149.74.215 2b441769-3f41-481f-9f0c-1445cc16af90 2019-11-06 21:58:09.543986 20388 610 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.74.215 2b441769-3f41-481f-9f0c-1445cc16af90 2019-11-06 21:58:09.567425 20389 231 Customer \N \N 2 User \N create ---\nnick_name: ERIKA GOMEZ CAMACHO\nphone: "(667) 711-7635"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ERIKA GOMEZ CAMACHO fue registrado. 187.149.74.215 383d859b-30c5-4571-92ab-bd674b078a53 2019-11-06 21:59:24.993231 20390 1375 Sale \N \N 2 User \N create ---\ncustomer_id: 231\nuser_id: 2\nopen_cash_register_id: 561\namount: !ruby/object:BigDecimal 18:0.829E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.829E3\nstatus: 0\ndate_sale: 2019-11-06\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-716\nexpiration_date: 2019-12-11\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 a3796fc7-fec0-4cab-a3c9-9492fd1e0559 2019-11-06 22:00:05.288097 20391 1141 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.74.215 a3796fc7-fec0-4cab-a3c9-9492fd1e0559 2019-11-06 22:00:05.314509 20392 1915 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 561\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1375\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-716\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-716 187.149.74.215 da60fe62-8c85-4f74-8b69-8cd9ab22170b 2019-11-06 22:00:30.512515 20393 1375 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.74.215 590ec0c6-f578-4b49-a060-153719833bf1 2019-11-06 22:00:31.460257 20394 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-06 18:31:03.303281000 Z\n- &1 2019-11-06 19:08:24.025393000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-06 22:27:52.476912921 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147128429\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147128429\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946321\n mask_addr: 4294967295\nsign_in_count:\n- 861\n- 862\n 1724 \N 200.68.182.81 5331e782-ddcd-456c-9a67-6a752555992b 2019-11-06 22:27:52.48736 20395 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7aUCd8HBCiKjm_UWyMWi\n- E1a5cYHngRL8dewNxXzE\n 1725 \N 200.68.182.81 5331e782-ddcd-456c-9a67-6a752555992b 2019-11-06 22:27:52.504479 20396 1916 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 470\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 1183\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '0000'\n 1 \N 189.186.130.34 7ca814f9-1b18-4cef-8143-9ff9fc6f8278 2019-11-06 22:41:52.452462 20397 1916 CashRegistersMove \N \N 23 User \N update ---\nopen_cash_register_id:\n- 470\n- \n 2 movimiento de efectivo por venta con folio PV3-V-54 189.186.130.34 7ca814f9-1b18-4cef-8143-9ff9fc6f8278 2019-11-06 22:41:52.477682 20398 1917 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 280\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.8E3\nmove_type: '1'\nsale_id: 808\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CREDITO SAM\n 1 \N 187.149.74.215 a6f19a3f-eab4-41b6-b821-41320c2f6273 2019-11-06 22:51:00.662668 20399 1917 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 280\n- 561\n 2 movimiento de efectivo por venta con folio PV1-V-457 187.149.74.215 a6f19a3f-eab4-41b6-b821-41320c2f6273 2019-11-06 22:51:00.685823 20400 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-10-31 21:41:38.770546000 Z\n- &1 2019-11-06 17:44:03.754219000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-06 23:17:09.289636796 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121354\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 11\n- 12\n 24 \N 187.149.74.215 c9950e3a-5d52-4480-a86e-b4d4f2e79a44 2019-11-06 23:17:09.296118 20401 24 User \N \N 24 User \N update ---\nunique_session_id:\n- oAoHZVFhxQYB57BDjsfJ\n- SjDF2r9VVz91NLVWg8hU\n 25 \N 187.149.74.215 c9950e3a-5d52-4480-a86e-b4d4f2e79a44 2019-11-06 23:17:09.308964 20403 803 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 14 \N 187.149.74.215 675a1258-767a-4827-9773-bc49bf1a24fd 2019-11-06 23:17:32.864055 20404 1376 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 d1b7d0ea-88c3-4532-a507-311718d042c7 2019-11-06 23:17:51.208881 20405 1918 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 560\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.639E3\nmove_type: '1'\nsale_id: 1376\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-551\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.639E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-551 187.149.74.215 d1b7d0ea-88c3-4532-a507-311718d042c7 2019-11-06 23:17:51.227477 20406 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-06 19:08:24.025393000 Z\n- &1 2019-11-06 22:27:52.476912000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-06 23:20:10.536670502 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147128429\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946321\n mask_addr: 4294967295\nsign_in_count:\n- 862\n- 863\n 1726 \N 200.68.182.81 e10ccc1f-fd36-4e96-b78f-1d553f804677 2019-11-06 23:20:10.545993 20407 4 User \N \N 4 User \N update ---\nunique_session_id:\n- E1a5cYHngRL8dewNxXzE\n- 8s5YkoJjE4-RFB_SSuPs\n 1727 \N 200.68.182.81 e10ccc1f-fd36-4e96-b78f-1d553f804677 2019-11-06 23:20:10.562189 20408 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-06 22:27:52.476912000 Z\n- &1 2019-11-06 23:20:10.536670000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-06 23:45:16.733702402 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946321\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084906\n mask_addr: 4294967295\nsign_in_count:\n- 863\n- 864\n 1728 \N 189.186.5.106 55bf16b7-8ab8-46b0-b36f-752ce5050ccd 2019-11-06 23:45:16.741712 20409 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8s5YkoJjE4-RFB_SSuPs\n- xzXFKk4GP7-2bQ-xocp-\n 1729 \N 189.186.5.106 55bf16b7-8ab8-46b0-b36f-752ce5050ccd 2019-11-06 23:45:16.756454 20410 1377 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 557\namount: !ruby/object:BigDecimal 18:0.30172E3\ntax: !ruby/object:BigDecimal 18:0.4828E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2019-11-06\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-108\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 55589f76-dff3-43b9-afd3-93af038fd247 2019-11-07 02:12:41.171355 20411 939 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.38E2\n- !ruby/object:BigDecimal 18:0.37E2\n 2 \N 189.186.130.34 55589f76-dff3-43b9-afd3-93af038fd247 2019-11-07 02:12:41.202548 20412 1377 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.130.34 913c42bd-206f-4cd1-9ee4-7a7987c200ce 2019-11-07 02:12:52.638421 20413 1919 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 557\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 1377\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-108\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.15E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-108 189.186.130.34 913c42bd-206f-4cd1-9ee4-7a7987c200ce 2019-11-07 02:12:52.659839 20414 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-06 23:20:10.536670000 Z\n- &1 2019-11-06 23:45:16.733702000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-07 02:48:01.622032800 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946321\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084906\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084906\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934387\n mask_addr: 4294967295\nsign_in_count:\n- 864\n- 865\n 1730 \N 200.68.135.179 2cab8222-f202-439c-b2ee-e3cdcfb793d1 2019-11-07 02:48:01.62988 20415 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xzXFKk4GP7-2bQ-xocp-\n- oeUxyUbfzPZtzJsMSFsP\n 1731 \N 200.68.135.179 2cab8222-f202-439c-b2ee-e3cdcfb793d1 2019-11-07 02:48:01.648007 20416 561 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 561\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.678E3\nphysical_cash: !ruby/object:BigDecimal 18:0.678E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.74.215 eecf7dd5-d161-4211-aa89-068a158c28f7 2019-11-07 02:49:38.546881 20417 561 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 eecf7dd5-d161-4211-aa89-068a158c28f7 2019-11-07 02:49:38.559261 20418 562 CashOut \N \N 26 User \N create ---\nopen_cash_register_id: 560\nuser_id: 26\namount_in: !ruby/object:BigDecimal 18:0.4045E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.41E4\ncash_fund: !ruby/object:BigDecimal 18:0.1041E4\nphysical_cash: !ruby/object:BigDecimal 18:0.5141E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.74.215 f94418a1-435a-416c-975d-2a082f32454d 2019-11-07 03:01:17.373927 20419 560 OpenCashRegister \N \N 26 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 f94418a1-435a-416c-975d-2a082f32454d 2019-11-07 03:01:17.386397 20420 563 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 557\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.2748E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.729E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3729E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.130.34 21062eeb-7717-4988-8a6a-9828687ffa1a 2019-11-07 03:06:29.330289 20421 557 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.130.34 21062eeb-7717-4988-8a6a-9828687ffa1a 2019-11-07 03:06:29.345864 20422 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-06 23:45:16.733702000 Z\n- &1 2019-11-07 02:48:01.622032000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-07 15:35:07.161495275 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084906\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934387\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934387\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084906\n mask_addr: 4294967295\nsign_in_count:\n- 865\n- 866\n 1732 \N 189.186.5.106 94000f87-45df-4e36-b636-8141da309c56 2019-11-07 15:35:07.197401 20423 4 User \N \N 4 User \N update ---\nunique_session_id:\n- oeUxyUbfzPZtzJsMSFsP\n- H7HyXLUY9y1pSuNmqh4Q\n 1733 \N 189.186.5.106 94000f87-45df-4e36-b636-8141da309c56 2019-11-07 15:35:07.227976 20424 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-05 17:18:07.955922000 Z\n- &1 2019-11-06 17:21:02.170908000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-07 17:08:38.632105229 Z\nsign_in_count:\n- 55\n- 56\n 112 \N 189.186.130.34 b22f3a1e-072a-4fb7-b361-5825a5ce5958 2019-11-07 17:08:38.642243 20425 23 User \N \N 23 User \N update ---\nunique_session_id:\n- K6ktnTrKNBxyChKxioCn\n- NktoJphAspD7Mxj6gyLS\n 113 \N 189.186.130.34 b22f3a1e-072a-4fb7-b361-5825a5ce5958 2019-11-07 17:08:38.658907 20450 1193 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.74.215 ff986852-f506-446e-910e-9ddd556f2ec5 2019-11-07 19:54:29.086907 20426 562 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.729E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 729.0 189.186.130.34 249b72b9-116d-45f2-838b-c73dea63c64d 2019-11-07 17:09:47.14862 20427 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-06 17:37:20.802185000 Z\n- &1 2019-11-06 18:59:40.984640000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-07 17:33:27.417137526 Z\nsign_in_count:\n- 24\n- 25\n 50 \N 187.149.74.215 945ebf6e-2dee-4587-a2d1-3a1447bca961 2019-11-07 17:33:27.455138 20428 26 User \N \N 26 User \N update ---\nunique_session_id:\n- sST5LVA5Ur4aGc2p99Gk\n- yByYxyzZE2UQN65de_AU\n 51 \N 187.149.74.215 945ebf6e-2dee-4587-a2d1-3a1447bca961 2019-11-07 17:33:27.479063 20429 563 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.1041E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1041.0 187.149.74.215 0acf1edf-292d-4c9e-ae0f-fcdd75641116 2019-11-07 17:33:49.710132 20430 1378 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 563\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-11-07\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-552\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 42b7c1b1-db58-4cca-84b8-96b51e2e87db 2019-11-07 17:34:03.376658 20431 1079 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.74.215 42b7c1b1-db58-4cca-84b8-96b51e2e87db 2019-11-07 17:34:03.405145 20432 1378 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 fc6c9021-c1e2-40ee-88fb-e4da4794a995 2019-11-07 17:34:18.551902 20433 1920 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 563\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1378\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-552\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-552 187.149.74.215 fc6c9021-c1e2-40ee-88fb-e4da4794a995 2019-11-07 17:34:18.57531 20434 1379 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 563\namount: !ruby/object:BigDecimal 18:0.529E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.529E3\nstatus: 0\ndate_sale: 2019-11-07\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-553\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 b0f90ed0-ed75-4113-918c-958fd7ea30e5 2019-11-07 18:45:26.116479 20435 1041 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.74.215 b0f90ed0-ed75-4113-918c-958fd7ea30e5 2019-11-07 18:45:26.151303 20436 1379 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 f0b76a9c-469b-44be-a552-e676b9982010 2019-11-07 18:45:36.046132 20437 1921 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 563\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.529E3\nmove_type: '1'\nsale_id: 1379\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-553\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.171E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-553 187.149.74.215 f0b76a9c-469b-44be-a552-e676b9982010 2019-11-07 18:45:36.068456 20438 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-07 02:48:01.622032000 Z\n- &1 2019-11-07 15:35:07.161495000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-07 18:52:59.080038714 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934387\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084906\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084906\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 866\n- 867\n 1734 \N 187.149.74.215 e0f02efc-f2c8-4df5-9fae-570a97bab607 2019-11-07 18:52:59.096354 20439 4 User \N \N 4 User \N update ---\nunique_session_id:\n- H7HyXLUY9y1pSuNmqh4Q\n- xstZAawM51oP47m22aSv\n 1735 \N 187.149.74.215 e0f02efc-f2c8-4df5-9fae-570a97bab607 2019-11-07 18:52:59.123449 20440 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-07 15:35:07.161495000 Z\n- &1 2019-11-07 18:52:59.080038000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-07 19:19:28.298196913 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084906\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084906\n mask_addr: 4294967295\nsign_in_count:\n- 867\n- 868\n 1736 \N 189.186.5.106 9df298f6-ff50-455c-a03e-895ef24ff1da 2019-11-07 19:19:28.309374 20441 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xstZAawM51oP47m22aSv\n- nMutUgvrbgkffyAbby2a\n 1737 \N 189.186.5.106 9df298f6-ff50-455c-a03e-895ef24ff1da 2019-11-07 19:19:28.332556 20442 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-07 18:52:59.080038000 Z\n- &1 2019-11-07 19:19:28.298196000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-07 19:40:24.316942201 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084906\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084906\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 868\n- 869\n 1738 \N 187.149.74.215 af655239-1d69-4be7-bce9-6402cd35b5be 2019-11-07 19:40:24.325304 20443 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nMutUgvrbgkffyAbby2a\n- c-yH4j2QUF5JL-hh5wqj\n 1739 \N 187.149.74.215 af655239-1d69-4be7-bce9-6402cd35b5be 2019-11-07 19:40:24.343497 20444 1189 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.74.215 5d1f3728-cb46-416e-bd0c-07abc22abf21 2019-11-07 19:53:20.299771 20445 1190 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.74.215 a27dd436-074e-4563-8924-2981118f6e37 2019-11-07 19:53:28.990477 20446 1191 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.74.215 aecf168e-0415-462e-a5ce-5a309cabfd55 2019-11-07 19:53:36.78857 20447 1194 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.74.215 e7f950c4-fe3a-490b-bf79-0d6a0df58291 2019-11-07 19:54:02.712026 20448 1195 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.74.215 1010b82a-1b61-4b5c-9143-d0b2840f9758 2019-11-07 19:54:08.75871 20449 1192 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.74.215 8e239a75-7fed-4179-ab9b-9332b326e5da 2019-11-07 19:54:19.173614 20451 294 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-11-07\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.74.215 44a3551c-a55c-406f-889b-828b6c9ed608 2019-11-07 19:54:37.437885 20452 1922 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 563\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1211\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-486 187.149.74.215 46440cfa-97ae-4bae-8ded-5792b4be2bb5 2019-11-07 20:32:48.571288 20453 1211 Sale \N \N 26 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.74.215 9d2f0bc6-f424-4df4-822c-e3aea5750934 2019-11-07 20:33:04.294386 20454 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-07 19:19:28.298196000 Z\n- &1 2019-11-07 19:40:24.316942000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-07 21:47:09.872346593 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084906\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934267\n mask_addr: 4294967295\nsign_in_count:\n- 869\n- 870\n 1740 \N 200.68.135.59 23dca991-da42-454a-aedd-1ef155a492a0 2019-11-07 21:47:09.882165 20455 4 User \N \N 4 User \N update ---\nunique_session_id:\n- c-yH4j2QUF5JL-hh5wqj\n- g1ma9nyw5YT3SKx-DCic\n 1741 \N 200.68.135.59 23dca991-da42-454a-aedd-1ef155a492a0 2019-11-07 21:47:09.901409 20456 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-11-06 17:44:03.754219000 Z\n- &1 2019-11-06 23:17:09.289636000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-07 22:49:18.925799265 Z\nsign_in_count:\n- 12\n- 13\n 26 \N 187.149.74.215 0eb39115-a122-40a3-9ac9-f4f8774bce5d 2019-11-07 22:49:18.940675 20457 24 User \N \N 24 User \N update ---\nunique_session_id:\n- SjDF2r9VVz91NLVWg8hU\n- pmnLwWUjYkSKxqyMRx84\n 27 \N 187.149.74.215 0eb39115-a122-40a3-9ac9-f4f8774bce5d 2019-11-07 22:49:18.964753 20458 1923 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 562\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 1290\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.401E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-85 189.186.130.34 d278f536-1f0b-4d14-aced-9583b0464314 2019-11-07 23:34:28.576995 20459 1290 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.130.34 95ccc24f-47ed-4302-b264-6a3f3f6b6831 2019-11-07 23:34:32.768225 20460 1380 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 562\namount: !ruby/object:BigDecimal 18:0.125E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.125E3\nstatus: 0\ndate_sale: 2019-11-07\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-109\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 8805fc3f-6718-4f5c-8fb2-0d6e85c3ff4b 2019-11-07 23:38:24.678243 20461 1172 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.130.34 8805fc3f-6718-4f5c-8fb2-0d6e85c3ff4b 2019-11-07 23:38:24.704311 20462 1380 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.130.34 31487415-2dde-4aa2-9227-8a0a9873787e 2019-11-07 23:38:53.332 20463 1924 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 562\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.125E3\nmove_type: '1'\nsale_id: 1380\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-109\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.375E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-109 189.186.130.34 31487415-2dde-4aa2-9227-8a0a9873787e 2019-11-07 23:38:53.353804 20464 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-05 19:23:27.933038000 Z\n- &1 2019-11-06 18:43:26.471700000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-07 23:43:46.514574471 Z\nsign_in_count:\n- 369\n- 370\n 743 \N 187.149.74.215 a9ef736f-93ff-4e26-9d8b-8d9d52fde1f4 2019-11-07 23:43:46.524106 20465 2 User \N \N 2 User \N update ---\nunique_session_id:\n- N_zFgvmswdRqxS-byp2z\n- tS1UbeEp1zq81xdLgb5-\n 744 \N 187.149.74.215 a9ef736f-93ff-4e26-9d8b-8d9d52fde1f4 2019-11-07 23:43:46.543615 20466 564 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.678E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 678.0 187.149.74.215 d4b37658-a76c-4ba3-a9f9-b4d1eca17d77 2019-11-07 23:44:01.090491 20467 1381 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 563\namount: !ruby/object:BigDecimal 18:0.1108E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1108E4\nstatus: 0\ndate_sale: 2019-11-07\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-554\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 83ea0c95-f139-41b7-bd5c-12a3674a5b70 2019-11-08 00:25:59.77287 20468 1147 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.74.215 83ea0c95-f139-41b7-bd5c-12a3674a5b70 2019-11-08 00:25:59.801334 20469 718 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.74.215 83ea0c95-f139-41b7-bd5c-12a3674a5b70 2019-11-08 00:25:59.825981 20470 1381 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 7efe560d-9fa5-455b-8365-ee4e8212910a 2019-11-08 00:26:06.796312 20471 1925 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 563\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1108E4\nmove_type: '1'\nsale_id: 1381\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-554\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1108E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-554 187.149.74.215 7efe560d-9fa5-455b-8365-ee4e8212910a 2019-11-08 00:26:06.815862 20472 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-07 19:40:24.316942000 Z\n- &1 2019-11-07 21:47:09.872346000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-08 00:42:55.332757234 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934267\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934267\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 870\n- 871\n 1742 \N 187.149.74.215 de5cae32-f47b-4ff6-954a-0156ea5d46ee 2019-11-08 00:42:55.348683 20473 4 User \N \N 4 User \N update ---\nunique_session_id:\n- g1ma9nyw5YT3SKx-DCic\n- ThB2ySo6srdU89kSx-_B\n 1743 \N 187.149.74.215 de5cae32-f47b-4ff6-954a-0156ea5d46ee 2019-11-08 00:42:55.379698 20474 1012 Sale \N \N 26 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 187.149.74.215 901453bf-ef15-4f8f-bdc7-626ae397381e 2019-11-08 01:03:51.855698 20475 756 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.74.215 901453bf-ef15-4f8f-bdc7-626ae397381e 2019-11-08 01:03:51.888443 20476 564 CashOut \N \N 26 User \N create ---\nopen_cash_register_id: 563\nuser_id: 26\namount_in: !ruby/object:BigDecimal 18:0.3035E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.34E4\ncash_fund: !ruby/object:BigDecimal 18:0.676E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4076E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.74.215 4ea337f4-79f1-4bb3-85a2-32a4e956e59f 2019-11-08 01:59:21.175955 20477 563 OpenCashRegister \N \N 26 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 4ea337f4-79f1-4bb3-85a2-32a4e956e59f 2019-11-08 01:59:21.195453 20478 565 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 564\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.678E3\nphysical_cash: !ruby/object:BigDecimal 18:0.678E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.74.215 10121d52-5b2f-4abd-ad7f-172324a1e896 2019-11-08 02:11:13.818435 20479 564 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 10121d52-5b2f-4abd-ad7f-172324a1e896 2019-11-08 02:11:13.837258 20480 566 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 562\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.1224E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.753E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1953E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.130.34 6b9264fb-87c0-4780-a0f9-1df10f0f64e9 2019-11-08 02:53:46.426612 20481 562 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.130.34 6b9264fb-87c0-4780-a0f9-1df10f0f64e9 2019-11-08 02:53:46.441105 20482 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-03 17:37:23.523180000 Z\n- &1 2019-11-04 17:06:08.590965000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-08 18:01:06.098692435 Z\nsign_in_count:\n- 14\n- 15\n 30 \N 187.149.74.215 68a490f5-a32f-4d5e-86ec-6e5de52a41bd 2019-11-08 18:01:06.135267 20483 27 User \N \N 27 User \N update ---\nunique_session_id:\n- SYWsH1ey1E9_66z-oUXz\n- 2wVpJK9A_qW8XBa3cU9F\n 31 \N 187.149.74.215 68a490f5-a32f-4d5e-86ec-6e5de52a41bd 2019-11-08 18:01:06.157122 20484 565 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.676E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 676.0 187.149.74.215 34b3d23f-b774-4dfe-8ee3-17fd7c6f68a5 2019-11-08 18:02:51.04246 20485 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-06 18:43:26.471700000 Z\n- &1 2019-11-07 23:43:46.514574000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-08 18:14:21.696774056 Z\nsign_in_count:\n- 370\n- 371\n 745 \N 187.149.74.215 59ab96bb-c564-43b6-9565-f846d9669249 2019-11-08 18:14:21.702422 20486 2 User \N \N 2 User \N update ---\nunique_session_id:\n- tS1UbeEp1zq81xdLgb5-\n- B3yEs2Hnz9ztyax2uoZb\n 746 \N 187.149.74.215 59ab96bb-c564-43b6-9565-f846d9669249 2019-11-08 18:14:21.71672 20487 566 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.678E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 678.0 187.149.74.215 7e84a179-eea1-491e-8876-4c64ae01818f 2019-11-08 18:17:36.896927 20488 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-06 17:21:02.170908000 Z\n- &1 2019-11-07 17:08:38.632105000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-08 18:25:55.373327661 Z\nsign_in_count:\n- 56\n- 57\n 114 \N 189.186.130.34 85f5bc5f-8bb4-48e1-8e32-c5ba46272d71 2019-11-08 18:25:55.38232 20489 23 User \N \N 23 User \N update ---\nunique_session_id:\n- NktoJphAspD7Mxj6gyLS\n- hT4bwHby5GdP8AjqzD1S\n 115 \N 189.186.130.34 85f5bc5f-8bb4-48e1-8e32-c5ba46272d71 2019-11-08 18:25:55.398501 20490 567 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.753E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 753.0 189.186.130.34 9750dc9c-ff1f-4a1a-bacc-30403ae4ea4d 2019-11-08 18:27:38.044636 20491 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-07 21:47:09.872346000 Z\n- &1 2019-11-08 00:42:55.332757000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-08 18:38:49.404443753 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934267\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107351\n mask_addr: 4294967295\nsign_in_count:\n- 871\n- 872\n 1744 \N 187.149.12.23 5cb9c3a4-96c1-4faf-ac33-fa4b0eda180a 2019-11-08 18:38:49.411464 20492 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ThB2ySo6srdU89kSx-_B\n- 5wkVsbYsKcJMiB587zyW\n 1745 \N 187.149.12.23 5cb9c3a4-96c1-4faf-ac33-fa4b0eda180a 2019-11-08 18:38:49.428526 20493 232 Customer \N \N 23 User \N create ---\nnick_name: ELIZABET ALVAREZ\nphone: "(667) 195-1310"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ELIZABET ALVAREZ fue registrado. 189.186.130.34 e271ef24-69ac-4178-b32f-1286e89fb1a9 2019-11-08 19:34:43.848359 20494 1382 Sale \N \N 23 User \N create ---\ncustomer_id: 232\nuser_id: 23\nopen_cash_register_id: 567\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-11-08\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-110\nexpiration_date: 2019-12-13\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 89ade6b9-07ee-4106-a1ac-670e4adab295 2019-11-08 19:35:23.135286 20495 1240 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.130.34 89ade6b9-07ee-4106-a1ac-670e4adab295 2019-11-08 19:35:23.164149 20496 1926 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 567\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1382\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-110\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-110 189.186.130.34 71624c59-0b95-4928-8af2-0ac46fc3ab01 2019-11-08 19:35:45.123673 20497 1382 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.130.34 0f52ef38-5b7e-431f-9298-a42bbd880fb1 2019-11-08 19:35:49.073587 20498 1383 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 566\namount: !ruby/object:BigDecimal 18:0.299E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.299E3\nstatus: 0\ndate_sale: 2019-11-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-717\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 037fe95f-0b2f-42b0-9a08-18f3281f03fc 2019-11-08 21:26:32.340218 20499 786 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 12 \N 187.149.74.215 037fe95f-0b2f-42b0-9a08-18f3281f03fc 2019-11-08 21:26:32.374115 20500 1383 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 35d4586f-023b-474d-8f5e-feb74368ee70 2019-11-08 21:27:26.238034 20501 1927 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 566\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.299E3\nmove_type: '1'\nsale_id: 1383\ncardnumber: 9241\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-717\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-717 187.149.74.215 35d4586f-023b-474d-8f5e-feb74368ee70 2019-11-08 21:27:26.266197 20502 1927 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 566\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 1383\ncardnumber: 9241\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-717\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.74.215 6a74f1a8-586f-406c-ac41-49f55d0b35f3 2019-11-08 21:28:38.345414 20503 1928 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 566\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.299E3\nmove_type: '1'\nsale_id: 1383\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-717\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.299E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-717 187.149.74.215 1721e4b7-f49f-4abf-b96e-2d99b8e873f4 2019-11-08 21:29:07.442527 20504 1384 Sale \N \N 2 User \N create ---\ncustomer_id: 122\nuser_id: 2\nopen_cash_register_id: 566\namount: !ruby/object:BigDecimal 18:0.1298E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1298E4\nstatus: 0\ndate_sale: 2019-11-08\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-718\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 d6404fc3-8602-4d4d-a499-1e250e5f7dd6 2019-11-08 21:52:52.469606 20505 1244 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.74.215 d6404fc3-8602-4d4d-a499-1e250e5f7dd6 2019-11-08 21:52:52.496353 20506 809 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.74.215 d6404fc3-8602-4d4d-a499-1e250e5f7dd6 2019-11-08 21:52:52.519275 20507 1929 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 567\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1899E4\nmove_type: '1'\nsale_id: 1291\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.191E4\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-86 189.186.130.34 598b149a-d7a1-42f0-8676-c6279b993494 2019-11-09 00:11:48.303039 20508 1291 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.130.34 5630b6ca-ec62-4e9b-a2e8-3597f1fd4130 2019-11-09 00:11:54.291332 20509 1385 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 565\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.849E3\nstatus: 0\ndate_sale: 2019-11-08\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-555\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 009dbecf-d5fd-44d8-9acc-076731acb717 2019-11-09 01:12:58.143122 20510 556 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.74.215 009dbecf-d5fd-44d8-9acc-076731acb717 2019-11-09 01:12:58.177682 20511 1385 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 6b222efc-fe07-4a39-b970-5dcc3367a863 2019-11-09 01:13:20.876255 20512 1930 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 565\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.849E3\nmove_type: '1'\nsale_id: 1385\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-555\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.151E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-555 187.149.74.215 6b222efc-fe07-4a39-b970-5dcc3367a863 2019-11-09 01:13:20.903003 20513 1931 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 567\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1366\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-105 189.186.130.34 8eb8c56d-c7c0-4759-bb08-de299635fe2b 2019-11-09 01:24:31.887099 20514 1386 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 566\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2019-11-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-719\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 4ab73316-5ee7-4648-a127-01bca4c6aea9 2019-11-09 01:44:36.304297 20515 1160 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.74.215 4ab73316-5ee7-4648-a127-01bca4c6aea9 2019-11-09 01:44:36.397355 20516 1386 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 65ff21a9-fc46-4574-8540-84e9d238705e 2019-11-09 01:44:51.139504 20517 1932 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 566\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.789E3\nmove_type: '1'\nsale_id: 1386\ncardnumber: 4598\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-719\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-719 187.149.74.215 65ff21a9-fc46-4574-8540-84e9d238705e 2019-11-09 01:44:51.160786 20541 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sa1eY4qvgdchAmwcynCF\n- GDebkppvwrxtAR-i4n_E\n 1749 \N 200.68.135.36 9b57f5d3-2a70-4360-a7a0-578abf14b8bf 2019-11-09 18:52:42.612149 20518 567 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 566\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1088E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.977E3\nphysical_cash: !ruby/object:BigDecimal 18:0.977E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.74.215 22659da8-7e01-445d-8edd-ba879cab0141 2019-11-09 02:35:22.401197 20519 566 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 22659da8-7e01-445d-8edd-ba879cab0141 2019-11-09 02:35:22.416665 20520 568 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 567\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.2699E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.27E4\ncash_fund: !ruby/object:BigDecimal 18:0.752E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3452E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.130.34 38c2e11a-f0ea-4567-a3f5-f5a62be736cb 2019-11-09 02:55:52.600939 20521 567 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.130.34 38c2e11a-f0ea-4567-a3f5-f5a62be736cb 2019-11-09 02:55:52.612875 20522 569 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 565\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.849E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.525E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1525E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.74.215 27083fb7-b887-49af-b026-248311ec6f78 2019-11-09 02:57:04.626873 20523 565 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 27083fb7-b887-49af-b026-248311ec6f78 2019-11-09 02:57:04.642849 20524 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-08 00:42:55.332757000 Z\n- &1 2019-11-08 18:38:49.404443000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-09 04:04:53.208527509 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107351\n mask_addr: 4294967295\nsign_in_count:\n- 872\n- 873\n 1746 \N 187.149.12.23 a2a1870f-bdff-4089-8e04-457cecbf1204 2019-11-09 04:04:53.219333 20525 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5wkVsbYsKcJMiB587zyW\n- sa1eY4qvgdchAmwcynCF\n 1747 \N 187.149.12.23 a2a1870f-bdff-4089-8e04-457cecbf1204 2019-11-09 04:04:53.237886 20526 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-06 18:59:40.984640000 Z\n- &1 2019-11-07 17:33:27.417137000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-09 17:26:44.511724677 Z\nsign_in_count:\n- 25\n- 26\n 52 \N 187.149.74.215 e40b9ada-4880-4097-9a36-ec35ccb2ddcd 2019-11-09 17:26:44.545103 20527 26 User \N \N 26 User \N update ---\nunique_session_id:\n- yByYxyzZE2UQN65de_AU\n- jzQ6Go8S97gCia9oK-sc\n 53 \N 187.149.74.215 e40b9ada-4880-4097-9a36-ec35ccb2ddcd 2019-11-09 17:26:44.567184 20528 568 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.525E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 525.0 187.149.74.215 8a5c5f27-4572-4078-be2a-668f57420a25 2019-11-09 17:27:26.673696 20529 1387 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 568\namount: !ruby/object:BigDecimal 18:0.1359E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1359E4\nstatus: 0\ndate_sale: 2019-11-09\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-556\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 b113fe5e-9575-4d8b-99f6-1b3b30c25f48 2019-11-09 17:28:37.635299 20530 1259 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.74.215 b113fe5e-9575-4d8b-99f6-1b3b30c25f48 2019-11-09 17:28:37.662625 20531 1387 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 fd3016e3-757a-452e-adfd-ed05758d20e2 2019-11-09 17:28:46.994224 20532 1933 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 568\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1359E4\nmove_type: '1'\nsale_id: 1387\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-556\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1359E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-556 187.149.74.215 fd3016e3-757a-452e-adfd-ed05758d20e2 2019-11-09 17:28:47.01441 20533 1388 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 568\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-11-09\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-557\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 bbe63e7a-389a-41a6-b86c-53489b319d3f 2019-11-09 17:29:16.529508 20534 1162 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.74.215 bbe63e7a-389a-41a6-b86c-53489b319d3f 2019-11-09 17:29:16.553968 20535 1388 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 ddeb6eec-59b2-40f6-947f-d4b37665fb45 2019-11-09 17:30:12.916734 20536 1934 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 568\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 1388\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-557\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.55E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-557 187.149.74.215 ddeb6eec-59b2-40f6-947f-d4b37665fb45 2019-11-09 17:30:12.937442 20537 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-07 17:08:38.632105000 Z\n- &1 2019-11-08 18:25:55.373327000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-09 18:10:28.515834199 Z\nsign_in_count:\n- 57\n- 58\n 116 \N 189.186.130.34 a06764f6-36cb-47de-a770-6e0ba0d3f7c3 2019-11-09 18:10:28.521562 20538 23 User \N \N 23 User \N update ---\nunique_session_id:\n- hT4bwHby5GdP8AjqzD1S\n- q8BwsDfxbpa2rixVMsuH\n 117 \N 189.186.130.34 a06764f6-36cb-47de-a770-6e0ba0d3f7c3 2019-11-09 18:10:28.533738 20539 569 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.752E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 752.0 189.186.130.34 1c951837-23c7-430b-9f4e-c5c6e82925f4 2019-11-09 18:10:53.271977 20540 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-08 18:38:49.404443000 Z\n- &1 2019-11-09 04:04:53.208527000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-09 18:52:42.555711947 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107351\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934244\n mask_addr: 4294967295\nsign_in_count:\n- 873\n- 874\n 1748 \N 200.68.135.36 9b57f5d3-2a70-4360-a7a0-578abf14b8bf 2019-11-09 18:52:42.587435 20542 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-09 04:04:53.208527000 Z\n- &1 2019-11-09 18:52:42.555711000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-09 18:58:30.613531702 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107351\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934244\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934244\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 874\n- 875\n 1750 \N 187.149.74.215 0a4bc624-bf6f-45ec-9bf5-6bd7a0e10ee3 2019-11-09 18:58:30.620142 20543 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GDebkppvwrxtAR-i4n_E\n- QdybpvaPgM3V6bh48sGj\n 1751 \N 187.149.74.215 0a4bc624-bf6f-45ec-9bf5-6bd7a0e10ee3 2019-11-09 18:58:30.634612 20544 185 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-24\namount: !ruby/object:BigDecimal 18:0.19E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.19E4\nobservations: ''\npurchase_date: 2019-11-09\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-24 por $ 1900.0 MXN creada. 187.149.74.215 d347761b-c88f-4263-95b7-b443aba04528 2019-11-09 18:59:47.01536 20545 295 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-11-09\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.74.215 da16a34b-b90c-4270-86e2-76ffcfdc369c 2019-11-09 19:02:30.650153 20546 910 Product \N \N 4 User \N create ---\nsku: VES-910\nname: VST-0064\ndescription: VESTIDO APEACH LENJEULA DORADA\nprice_base: !ruby/object:BigDecimal 18:0.29E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: PHOTO-2019-10-15-21-54-23__1_.jpg\ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-910 fue creado. 187.149.74.215 b5a6e282-b0b7-464d-825d-77314a954af8 2019-11-09 19:15:25.066291 20547 910 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000910'\n 2 \N 187.149.74.215 b5a6e282-b0b7-464d-825d-77314a954af8 2019-11-09 19:15:25.099043 20548 911 Product \N \N 4 User \N create ---\nsku: BLU-911\nname: BLS-0100\ndescription: BLUSA APEACH CON DORADO ST-CT7469\nprice_base: !ruby/object:BigDecimal 18:0.29E3\nprice_sale: !ruby/object:BigDecimal 18:0.749E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-911 fue creado. 187.149.74.215 013a1fc1-e8e1-4db1-8b52-3766cfbc3609 2019-11-09 19:17:14.867886 20549 911 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000911'\n 2 \N 187.149.74.215 013a1fc1-e8e1-4db1-8b52-3766cfbc3609 2019-11-09 19:17:14.895658 20550 186 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-25\namount: !ruby/object:BigDecimal 18:0.58E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.58E3\nobservations: ''\npurchase_date: 2019-11-09\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-25 por $ 580.0 MXN creada. 187.149.74.215 dfba50eb-c5c7-4b33-9492-cc1c82c2d8a1 2019-11-09 19:17:17.202506 20551 187 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-26\namount: !ruby/object:BigDecimal 18:0.29E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.29E4\nobservations: ''\npurchase_date: 2019-11-09\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-26 por $ 2900.0 MXN creada. 187.149.74.215 657bf683-d9f8-4101-9723-8e12199251de 2019-11-09 19:18:32.447247 20552 296 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-11-09\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.74.215 0e5c6853-c8f4-4453-9ba6-50c3ade7cf0b 2019-11-09 19:18:53.499701 20553 297 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-11-09\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 187.149.74.215 e77138c7-122d-40a8-a2c2-19ef1538a1d5 2019-11-09 19:19:43.177222 20554 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-07 17:33:27.417137000 Z\n- &1 2019-11-09 17:26:44.511724000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-09 19:21:04.209814886 Z\nsign_in_count:\n- 26\n- 27\n 54 \N 187.149.74.215 99f668de-3bd3-459f-ad11-6f5866e4aaba 2019-11-09 19:21:04.215059 20555 26 User \N \N 26 User \N update ---\nunique_session_id:\n- jzQ6Go8S97gCia9oK-sc\n- kQ6wB4x-pnvUzZ5Ky4CG\n 55 \N 187.149.74.215 99f668de-3bd3-459f-ad11-6f5866e4aaba 2019-11-09 19:21:04.226616 20556 297 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-09\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.74.215 ea3ed1d0-dbf1-41df-a14c-d54f7be63129 2019-11-09 19:21:15.146889 20557 1287 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 884\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 ea3ed1d0-dbf1-41df-a14c-d54f7be63129 2019-11-09 19:21:15.167345 20558 1288 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 910\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 ea3ed1d0-dbf1-41df-a14c-d54f7be63129 2019-11-09 19:21:15.186671 20559 1289 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 882\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 ea3ed1d0-dbf1-41df-a14c-d54f7be63129 2019-11-09 19:21:15.204999 20560 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-09 18:52:42.555711000 Z\n- &1 2019-11-09 18:58:30.613531000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-09 19:22:43.208422170 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934244\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 875\n- 876\n 1752 \N 187.149.74.215 ba9464fa-a6ff-40ee-88d6-08569682e626 2019-11-09 19:22:43.214723 20561 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QdybpvaPgM3V6bh48sGj\n- aUTLhVsLCRQ_PskLMRAu\n 1753 \N 187.149.74.215 ba9464fa-a6ff-40ee-88d6-08569682e626 2019-11-09 19:22:43.228357 20562 870 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '870'\n is_parent: false\n sku: BLU-870\n name: BLS-0090\n description: "Blusa Silver MUYMUY ST-MM0780 \\r\\n"\n price_base: '155.0'\n price_sale: '449.0'\n img_product: PHOTO-2019-11-04-14-14-07.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000870'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-29 01:27:32.978688'\n updated_at: &12 2019-11-09 19:23:16.490085461 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '870'\n sku: BLU-870\n name: BLS-0090\n description: "Blusa Silver MUYMUY ST-MM0780 \\r\\n"\n price_base: '155.00'\n price_sale: '449.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-29 01:27:32.978688'\n updated_at: '2019-10-29 01:27:33.017469'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000870'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '870'\n type: *3\n value: 870\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-870\n type: *7\n value: BLU-870\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0090\n type: *8\n value: BLS-0090\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "Blusa Silver MUYMUY ST-MM0780 \\r\\n"\n type: *6\n value: "Blusa Silver MUYMUY ST-MM0780 \\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '155.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.155E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '449.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.449E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-11-04-14-14-07.jpg\n type: *2\n value: PHOTO-2019-11-04-14-14-07.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000870'\n type: *2\n value: '0000870'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-29 01:27:32.978688'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-11-04-14-14-07.jpg\n 3 El producto BLU-870 fue modificado. 187.149.74.215 b1e29163-dc98-4076-889a-5af02685a8ba 2019-11-09 19:23:16.53546 20563 911 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '911'\n is_parent: false\n sku: BLU-911\n name: BLS-0100\n description: BLUSA APEACH CON DORADO ST-CT7469\n price_base: '290.0'\n price_sale: '749.0'\n img_product: PHOTO-2019-11-09-12-06-05.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000911'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-11-09 19:17:14.854547'\n updated_at: &12 2019-11-09 19:28:56.496755144 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '911'\n sku: BLU-911\n name: BLS-0100\n description: BLUSA APEACH CON DORADO ST-CT7469\n price_base: '290.00'\n price_sale: '749.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-11-09 19:17:14.854547'\n updated_at: '2019-11-09 19:17:14.892907'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000911'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '911'\n type: *3\n value: 911\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-911\n type: *7\n value: BLU-911\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0100\n type: *8\n value: BLS-0100\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA APEACH CON DORADO ST-CT7469\n type: *6\n value: BLUSA APEACH CON DORADO ST-CT7469\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '290.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.29E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '749.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.749E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-11-09-12-06-05.jpg\n type: *2\n value: PHOTO-2019-11-09-12-06-05.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000911'\n type: *2\n value: '0000911'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-11-09 19:17:14.854547'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-11-09-12-06-05.jpg\n 3 El producto BLU-911 fue modificado. 187.149.74.215 09afaafd-2d20-413e-8917-84d4133eb151 2019-11-09 19:28:56.556861 20564 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-09 17:26:44.511724000 Z\n- &1 2019-11-09 19:21:04.209814000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-09 19:29:38.900684901 Z\nsign_in_count:\n- 27\n- 28\n 56 \N 187.149.74.215 b43d49ff-adfc-4368-aee4-6446fc0c36df 2019-11-09 19:29:38.906338 20565 26 User \N \N 26 User \N update ---\nunique_session_id:\n- kQ6wB4x-pnvUzZ5Ky4CG\n- cZLtymHXzxaN2kbP6g2f\n 57 \N 187.149.74.215 b43d49ff-adfc-4368-aee4-6446fc0c36df 2019-11-09 19:29:38.918372 20566 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-07 23:43:46.514574000 Z\n- &1 2019-11-08 18:14:21.696774000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-09 19:32:32.711118728 Z\nsign_in_count:\n- 371\n- 372\n 747 \N 187.149.74.215 b4053f79-9e5b-4b0d-8e0b-c3d72aa7eb40 2019-11-09 19:32:32.717254 20567 2 User \N \N 2 User \N update ---\nunique_session_id:\n- B3yEs2Hnz9ztyax2uoZb\n- EPiZUBjsRSt8FRTjsx3E\n 748 \N 187.149.74.215 b4053f79-9e5b-4b0d-8e0b-c3d72aa7eb40 2019-11-09 19:32:32.729562 20568 570 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.977E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 977.0 187.149.74.215 6277d617-3fdb-4549-80fb-81f43e45c3f5 2019-11-09 19:32:53.893345 20569 1389 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 570\namount: !ruby/object:BigDecimal 18:0.1438E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1438E4\nstatus: 0\ndate_sale: 2019-11-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-720\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 5dc77141-d37b-4a92-a2dc-8e624c801e56 2019-11-09 19:35:47.274394 20570 1157 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.74.215 5dc77141-d37b-4a92-a2dc-8e624c801e56 2019-11-09 19:35:47.30382 20571 1166 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 4 \N 187.149.74.215 5dc77141-d37b-4a92-a2dc-8e624c801e56 2019-11-09 19:35:47.330784 20572 1389 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 4834b752-cda2-4940-bc10-991c142aa908 2019-11-09 19:36:04.314004 20573 1935 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 570\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1438E4\nmove_type: '1'\nsale_id: 1389\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-720\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1438E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-720 187.149.74.215 4834b752-cda2-4940-bc10-991c142aa908 2019-11-09 19:36:04.336986 20574 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-09 18:58:30.613531000 Z\n- &1 2019-11-09 19:22:43.208422000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-09 19:43:25.932713103 Z\nsign_in_count:\n- 876\n- 877\n 1754 \N 187.149.74.215 d1b9f35b-1766-4236-9cc6-0d64bf2c892c 2019-11-09 19:43:25.938617 20575 4 User \N \N 4 User \N update ---\nunique_session_id:\n- aUTLhVsLCRQ_PskLMRAu\n- Es-9dZsTUU77edtcBuH-\n 1755 \N 187.149.74.215 d1b9f35b-1766-4236-9cc6-0d64bf2c892c 2019-11-09 19:43:25.951678 20576 884 Product \N \N 4 User \N update ---\ndescription:\n- "Faldas piel $195 $549\\r\\n"\n- Faldas piel ST-0865\n 3 El producto FAL-884 fue modificado. 187.149.74.215 36900615-1791-40b6-b193-1093c0d0a01b 2019-11-09 19:58:23.72117 20577 884 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '884'\n is_parent: false\n sku: FAL-884\n name: FLD-0019\n description: Faldas piel ST-0865\n price_base: '195.0'\n price_sale: '549.0'\n img_product: PHOTO-2019-11-04-14-14-06.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000884'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-29 01:44:35.229984'\n updated_at: &12 2019-11-09 20:08:22.506891312 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '884'\n sku: FAL-884\n name: FLD-0019\n description: Faldas piel ST-0865\n price_base: '195.00'\n price_sale: '549.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-29 01:44:35.229984'\n updated_at: '2019-11-09 19:58:23.718066'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000884'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '884'\n type: *3\n value: 884\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-884\n type: *7\n value: FAL-884\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0019\n type: *8\n value: FLD-0019\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: Faldas piel ST-0865\n type: *6\n value: Faldas piel ST-0865\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '195.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.195E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '549.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.549E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-11-04-14-14-06.jpg\n type: *2\n value: PHOTO-2019-11-04-14-14-06.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000884'\n type: *2\n value: '0000884'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-29 01:44:35.229984'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-11-04-14-14-06.jpg\n 4 El producto FAL-884 fue modificado. 187.149.74.215 b126558c-2e60-42d3-b545-b8bf979b4975 2019-11-09 20:08:22.545307 20578 1390 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 570\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-11-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-721\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 34f1663a-fa23-4053-b3ba-c675c452af93 2019-11-09 21:06:52.318356 20579 1044 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.74.215 34f1663a-fa23-4053-b3ba-c675c452af93 2019-11-09 21:06:52.344907 20580 1390 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 6f074751-668d-42af-abe2-45cc53dacdb2 2019-11-09 21:06:56.846895 20581 1936 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 570\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 1390\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-721\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-721 187.149.74.215 6f074751-668d-42af-abe2-45cc53dacdb2 2019-11-09 21:06:56.869077 20582 208 Expense \N \N 26 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 568\nquantity: !ruby/object:BigDecimal 18:0.7E3\nstatus: 1\nobservations: SEMANA DE KEYLA\nexpense_date: 2019-11-09\nexpense_code: PV2-E-47\n 1 Egreso por 700.0 registrado 187.149.74.215 45c22383-8c62-4d92-959d-3415d8d95b10 2019-11-09 21:14:08.909852 20583 1937 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 568\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 208\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.74.215 45c22383-8c62-4d92-959d-3415d8d95b10 2019-11-09 21:14:08.930249 20584 294 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-09\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.74.215 4ba82f6b-d2d5-47aa-9958-4a92c2387f38 2019-11-09 21:27:47.217054 20585 1290 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 833\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 4ba82f6b-d2d5-47aa-9958-4a92c2387f38 2019-11-09 21:27:47.243053 20586 1291 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 834\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 4ba82f6b-d2d5-47aa-9958-4a92c2387f38 2019-11-09 21:27:47.272352 20587 1292 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 835\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 4ba82f6b-d2d5-47aa-9958-4a92c2387f38 2019-11-09 21:27:47.30132 20588 1293 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 838\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 4ba82f6b-d2d5-47aa-9958-4a92c2387f38 2019-11-09 21:27:47.322628 20589 1294 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 839\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 4ba82f6b-d2d5-47aa-9958-4a92c2387f38 2019-11-09 21:27:47.343103 20590 1295 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 836\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 4ba82f6b-d2d5-47aa-9958-4a92c2387f38 2019-11-09 21:27:47.365032 20591 1296 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 837\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 4ba82f6b-d2d5-47aa-9958-4a92c2387f38 2019-11-09 21:27:47.387901 20592 295 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-09\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.74.215 06462550-d14d-4ecb-bc4f-e5e9fa391812 2019-11-09 21:27:59.934637 20593 1297 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 877\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 06462550-d14d-4ecb-bc4f-e5e9fa391812 2019-11-09 21:27:59.956109 20594 1298 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 870\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 06462550-d14d-4ecb-bc4f-e5e9fa391812 2019-11-09 21:27:59.978022 20595 1299 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 880\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 06462550-d14d-4ecb-bc4f-e5e9fa391812 2019-11-09 21:27:59.997473 20596 296 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-09\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.74.215 df7667bb-1ad9-4668-85da-b6a3a1bc8d9a 2019-11-09 21:28:06.999804 20597 1300 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 911\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 df7667bb-1ad9-4668-85da-b6a3a1bc8d9a 2019-11-09 21:28:07.02234 20598 209 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 570\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nstatus: 1\nobservations: sueldo Rocio\nexpense_date: 2019-11-09\nexpense_code: PV1-E-155\n 1 Egreso por 1328.0 registrado 187.149.74.215 cf8daf0d-4154-4d56-b551-6b5881daa5ec 2019-11-09 23:00:44.3243 20599 1938 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 570\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 209\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.74.215 cf8daf0d-4154-4d56-b551-6b5881daa5ec 2019-11-09 23:00:44.345401 20600 1939 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 430\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1095\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.74.215 ac9f2dba-9ffa-4cee-92c4-49144aaddb36 2019-11-09 23:01:12.226522 20601 1939 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 430\n- 570\n 2 movimiento de efectivo por venta con folio PV1-V-614 187.149.74.215 ac9f2dba-9ffa-4cee-92c4-49144aaddb36 2019-11-09 23:01:12.250133 20602 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-09 19:22:43.208422000 Z\n- &1 2019-11-09 19:43:25.932713000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-09 23:47:36.986583295 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945707\n mask_addr: 4294967295\nsign_in_count:\n- 877\n- 878\n 1756 \N 200.68.179.235 4d9150e7-8efa-49fc-9ef0-43116f1a0ec3 2019-11-09 23:47:36.994678 20603 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Es-9dZsTUU77edtcBuH-\n- xVUruV7552yJU6csx5WY\n 1757 \N 200.68.179.235 4d9150e7-8efa-49fc-9ef0-43116f1a0ec3 2019-11-09 23:47:37.017217 20604 1391 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 570\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-11-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-722\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 bd3859f1-83cc-4927-8cc8-bb28fe904030 2019-11-10 00:33:17.426453 20605 1284 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.74.215 bd3859f1-83cc-4927-8cc8-bb28fe904030 2019-11-10 00:33:17.455285 20606 1391 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 2c2737f6-0ddd-4077-aaf1-b822d23015a8 2019-11-10 00:33:24.379189 20607 1940 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 570\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1391\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-722\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-722 187.149.74.215 2c2737f6-0ddd-4077-aaf1-b822d23015a8 2019-11-10 00:33:24.402967 20608 233 Customer \N \N 2 User \N create ---\nnick_name: LUCERO MEDINA\nphone: "(667) 470-5667"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LUCERO MEDINA fue registrado. 187.149.74.215 783ee5c5-9e6f-4e75-b979-485da71d020a 2019-11-10 01:59:28.436341 20609 1392 Sale \N \N 2 User \N create ---\ncustomer_id: 233\nuser_id: 2\nopen_cash_register_id: 570\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2019-11-09\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-723\nexpiration_date: 2019-12-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 c6bac55d-69d3-43b1-b586-de281c6fdb03 2019-11-10 02:03:38.81906 20610 1033 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.74.215 c6bac55d-69d3-43b1-b586-de281c6fdb03 2019-11-10 02:03:38.845974 32749 991 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '991'\n is_parent: false\n sku: FAL-991\n name: FLD-0025\n description: FALDA DE PATOLES COLORES TABA S63\n price_base: '219.16'\n price_sale: '699.0'\n img_product: 123.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000991'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 01:22:27.230312'\n updated_at: &12 2020-05-03 00:23:09.580559865 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '991'\n sku: FAL-991\n name: FLD-0025\n description: FALDA DE PATOLES COLORES TABA S63\n price_base: '219.16'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 01:22:27.230312'\n updated_at: '2020-02-19 01:22:27.269486'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000991'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '991'\n type: *3\n value: 991\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-991\n type: *7\n value: FAL-991\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0025\n type: *8\n value: FLD-0025\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA DE PATOLES COLORES TABA S63\n type: *6\n value: FALDA DE PATOLES COLORES TABA S63\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '219.16'\n type: *1\n value: !ruby/object:BigDecimal 18:0.21916E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 123.png\n type: *2\n value: 123.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000991'\n type: *2\n value: '0000991'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 01:22:27.230312'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 123.png\n 3 El producto FAL-991 fue modificado. 189.186.240.251 5a5bff7d-456c-4216-a043-ed68b46499a1 2020-05-03 00:23:09.620893 20611 1941 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 570\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1392\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-723\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-723 187.149.74.215 109736b3-9199-43de-867c-28468906026c 2019-11-10 02:03:44.86973 20612 1392 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.74.215 4869fd7f-b1ee-47c6-9f88-61675862a9f8 2019-11-10 02:03:48.884926 20613 1393 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 568\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-11-09\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-558\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 e75c3b81-b654-4558-be78-40a89721045c 2019-11-10 02:18:58.411725 20614 1288 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.74.215 e75c3b81-b654-4558-be78-40a89721045c 2019-11-10 02:18:58.448284 20615 1393 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 df001533-5a0d-4852-8559-cec2f74269f2 2019-11-10 02:19:32.065249 20616 1942 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 568\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1393\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-558\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-558 187.149.74.215 df001533-5a0d-4852-8559-cec2f74269f2 2019-11-10 02:19:32.097215 20617 570 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 570\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4036E4\namount_out: !ruby/object:BigDecimal 18:0.1328E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.281E4\ncash_fund: !ruby/object:BigDecimal 18:0.875E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3685E4\nobservations: RETIRE $2500, $310 SON DE UNOS ARETES COBRADOS CON LA TERMINAL\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.74.215 b9ecd34f-2ed2-47f7-9e44-6c3fbf68ffb0 2019-11-10 02:52:47.138629 20618 570 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 b9ecd34f-2ed2-47f7-9e44-6c3fbf68ffb0 2019-11-10 02:52:47.154078 20619 571 CashOut \N \N 26 User \N create ---\nopen_cash_register_id: 568\nuser_id: 26\namount_in: !ruby/object:BigDecimal 18:0.2807E4\namount_out: !ruby/object:BigDecimal 18:0.7E3\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.632E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2632E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.74.215 d8f128d8-db1b-4e0f-a052-3a3c08119e25 2019-11-10 03:01:46.974047 20620 568 OpenCashRegister \N \N 26 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 d8f128d8-db1b-4e0f-a052-3a3c08119e25 2019-11-10 03:01:46.988262 20621 210 Expense \N \N 23 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 569\nquantity: !ruby/object:BigDecimal 18:0.4E2\nstatus: 1\nobservations: SEMANA MARICRUZ\nexpense_date: 2019-11-09\nexpense_code: PV3-E-8\n 1 Egreso por 40.0 registrado 189.186.130.34 f4ebcdef-dbfe-4f61-9148-993d93f2be6c 2019-11-10 03:06:01.304498 20622 1943 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 569\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 210\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.130.34 f4ebcdef-dbfe-4f61-9148-993d93f2be6c 2019-11-10 03:06:01.332463 20623 572 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 569\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.4E2\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.712E3\nphysical_cash: !ruby/object:BigDecimal 18:0.712E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.130.34 2314e19e-0a98-4f1e-b481-3a91ce409a3d 2019-11-10 03:08:05.217427 20624 569 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.130.34 2314e19e-0a98-4f1e-b481-3a91ce409a3d 2019-11-10 03:08:05.241811 20625 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-09 19:43:25.932713000 Z\n- &1 2019-11-09 23:47:36.986583000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-10 03:48:05.160988142 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945707\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945707\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107351\n mask_addr: 4294967295\nsign_in_count:\n- 878\n- 879\n 1758 \N 187.149.12.23 02937e40-4999-4426-af2b-134515b7f219 2019-11-10 03:48:05.175698 20626 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xVUruV7552yJU6csx5WY\n- u_R8TtF82ouQTgLK7iQn\n 1759 \N 187.149.12.23 02937e40-4999-4426-af2b-134515b7f219 2019-11-10 03:48:05.206303 20627 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-11-03 17:44:01.323636000 Z\n- &1 2019-11-05 19:40:56.607686000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-10 17:10:07.175077642 Z\nsign_in_count:\n- 30\n- 31\n 62 \N 187.149.74.215 2efeb73e-0634-46ae-891f-9312b3195c14 2019-11-10 17:10:07.209996 20628 25 User \N \N 25 User \N update ---\nunique_session_id:\n- seMfTuTuWJG7D1JmXn2E\n- _v_xQhCk3LHroCMR3qbN\n 63 \N 187.149.74.215 2efeb73e-0634-46ae-891f-9312b3195c14 2019-11-10 17:10:07.232859 20629 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-08 18:25:55.373327000 Z\n- &1 2019-11-09 18:10:28.515834000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-10 17:15:13.738910117 Z\nsign_in_count:\n- 58\n- 59\n 118 \N 189.186.130.34 4a1aec92-968c-4313-8180-2fb231a9aa61 2019-11-10 17:15:13.746055 20630 23 User \N \N 23 User \N update ---\nunique_session_id:\n- q8BwsDfxbpa2rixVMsuH\n- PEwqzT9GSHNSeD9_oeto\n 119 \N 189.186.130.34 4a1aec92-968c-4313-8180-2fb231a9aa61 2019-11-10 17:15:13.778259 20631 571 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.712E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 712.0 189.186.130.34 53c5cd48-a1f4-48ea-ad8e-363f502db4f7 2019-11-10 17:16:03.070165 20632 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-09 19:21:04.209814000 Z\n- &1 2019-11-09 19:29:38.900684000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-10 17:36:50.221819126 Z\nsign_in_count:\n- 28\n- 29\n 58 \N 187.149.74.215 6690a775-cb09-430f-91d0-67195b30dae0 2019-11-10 17:36:50.227179 20633 26 User \N \N 26 User \N update ---\nunique_session_id:\n- cZLtymHXzxaN2kbP6g2f\n- jtRWj5iovVRpEi3gM5SR\n 59 \N 187.149.74.215 6690a775-cb09-430f-91d0-67195b30dae0 2019-11-10 17:36:50.238618 20634 572 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.632E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 632.0 187.149.74.215 6afe939f-1678-4c7a-8d73-3c19f01b62fb 2019-11-10 17:38:17.78554 20635 1394 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 572\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-11-10\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-559\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 e67fac1d-0ed0-483b-99b6-51d552724961 2019-11-10 17:38:30.955536 20636 1054 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.74.215 e67fac1d-0ed0-483b-99b6-51d552724961 2019-11-10 17:38:30.988383 20637 1394 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 33fad8cb-cc2f-472a-bfa8-3322e0d9127a 2019-11-10 17:38:34.943498 20638 1944 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 572\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 1394\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-559\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-559 187.149.74.215 33fad8cb-cc2f-472a-bfa8-3322e0d9127a 2019-11-10 17:38:34.964487 20639 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-09 23:47:36.986583000 Z\n- &1 2019-11-10 03:48:05.160988000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-10 18:30:01.800258172 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945707\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107351\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107351\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 879\n- 880\n 1760 \N 187.149.74.215 09b8c2ae-e0e8-4f6a-bed3-05b1dde617c1 2019-11-10 18:30:01.807568 20640 4 User \N \N 4 User \N update ---\nunique_session_id:\n- u_R8TtF82ouQTgLK7iQn\n- qQ4cr64y1EHLoEbVjuyK\n 1761 \N 187.149.74.215 09b8c2ae-e0e8-4f6a-bed3-05b1dde617c1 2019-11-10 18:30:01.82397 20641 912 Product \N \N 4 User \N create ---\nsku: BOL-912\nname: 1BLCI19306\ndescription: "Material semi texturizado con acabado glossy y técnica de abullonado\n con construcción semi suave. Logo icónico en acabado brillante con técnica de esmaltado\n a tono. Asas traseras ajustables.\\r\\n\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170766615'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: BBAL306_NEGR_1_300x435.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-912 fue creado. 187.149.74.215 831a60ba-24a3-4c99-a04e-bbc60b046cdb 2019-11-10 18:33:19.799016 20642 188 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: \npurchase_code: CEN-C-27\namount: !ruby/object:BigDecimal 18:0.19238E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.19238E5\nobservations: ''\npurchase_date: 2019-11-10\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-27 por $ 19238.0 MXN creada. 187.149.74.215 1f5cf74a-a872-4df6-bb15-af2251d700c6 2019-11-10 18:58:20.35937 20643 189 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: \npurchase_code: CEN-C-28\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nobservations: ''\npurchase_date: 2019-11-10\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-28 por $ 1599.0 MXN creada. 187.149.74.215 579efa47-6ac0-43ee-a2fe-641bc584f951 2019-11-10 18:59:23.413749 20644 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-10 03:48:05.160988000 Z\n- &1 2019-11-10 18:30:01.800258000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-10 19:40:06.725184157 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107351\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938188\n mask_addr: 4294967295\nsign_in_count:\n- 880\n- 881\n 1762 \N 200.68.150.140 e3474776-8dba-4bb9-aedc-b14ce0afb7a2 2019-11-10 19:40:06.732607 20645 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qQ4cr64y1EHLoEbVjuyK\n- vzypNFYcKYjkYUwFE6ke\n 1763 \N 200.68.150.140 e3474776-8dba-4bb9-aedc-b14ce0afb7a2 2019-11-10 19:40:06.748235 20646 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-10 18:30:01.800258000 Z\n- &1 2019-11-10 19:40:06.725184000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-10 21:03:51.527167012 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938188\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938188\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107351\n mask_addr: 4294967295\nsign_in_count:\n- 881\n- 882\n 1764 \N 187.149.12.23 10e315fe-ada4-4676-af04-f5990177ebd6 2019-11-10 21:03:51.547145 20647 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vzypNFYcKYjkYUwFE6ke\n- VqcLDF8eYNgKB6QLnRuZ\n 1765 \N 187.149.12.23 10e315fe-ada4-4676-af04-f5990177ebd6 2019-11-10 21:03:51.57115 20648 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-10 19:40:06.725184000 Z\n- &1 2019-11-10 21:03:51.527167000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-10 21:17:00.570088444 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938188\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107351\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107351\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 882\n- 883\n 1766 \N 187.149.74.215 7b1ed7f9-ef70-4004-b5db-e2ebd66d785e 2019-11-10 21:17:00.577778 20649 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VqcLDF8eYNgKB6QLnRuZ\n- ZsDX3xv3YbyzcCYa7vyT\n 1767 \N 187.149.74.215 7b1ed7f9-ef70-4004-b5db-e2ebd66d785e 2019-11-10 21:17:00.594199 20650 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-11-05 19:40:56.607686000 Z\n- &1 2019-11-10 17:10:07.175077000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-10 22:05:47.854389044 Z\nsign_in_count:\n- 31\n- 32\n 64 \N 187.149.74.215 f7cf57bf-9d0d-407f-859c-2257508421fc 2019-11-10 22:05:47.860713 20651 25 User \N \N 25 User \N update ---\nunique_session_id:\n- _v_xQhCk3LHroCMR3qbN\n- t7JHiyYvknA7xKJ9BbHA\n 65 \N 187.149.74.215 f7cf57bf-9d0d-407f-859c-2257508421fc 2019-11-10 22:05:47.874073 20652 573 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.875E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 875.0 187.149.74.215 bd03cdc6-addc-4ba0-be05-ad395ac82fa3 2019-11-10 22:06:18.992361 20653 1395 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 573\namount: !ruby/object:BigDecimal 18:0.3247E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3247E4\nstatus: 0\ndate_sale: 2019-11-10\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-724\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 4bed4d33-bd86-4bcd-9972-3ed90cf3b2e6 2019-11-10 22:06:51.417287 20654 1066 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.74.215 4bed4d33-bd86-4bcd-9972-3ed90cf3b2e6 2019-11-10 22:06:51.450571 20655 1058 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.74.215 4bed4d33-bd86-4bcd-9972-3ed90cf3b2e6 2019-11-10 22:06:51.492871 20656 786 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 13 \N 187.149.74.215 4bed4d33-bd86-4bcd-9972-3ed90cf3b2e6 2019-11-10 22:06:51.521306 20657 1395 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 2086f5ec-e965-4780-94a5-49f69341ee0a 2019-11-10 22:09:04.658135 20658 1945 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 573\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3247E4\nmove_type: '1'\nsale_id: 1395\ncardnumber: 2120\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-724\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-724 187.149.74.215 2086f5ec-e965-4780-94a5-49f69341ee0a 2019-11-10 22:09:04.683414 20659 1396 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 573\namount: !ruby/object:BigDecimal 18:0.719E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.59E2\ntotal: !ruby/object:BigDecimal 18:0.66E3\nstatus: 0\ndate_sale: 2019-11-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-725\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 44b2e928-2619-4e6f-8b54-148a7b80aa0d 2019-11-10 22:17:05.7772 20660 1081 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.74.215 44b2e928-2619-4e6f-8b54-148a7b80aa0d 2019-11-10 22:17:05.812228 20661 1396 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 c96aea36-0fcc-4023-b06b-576275f99ec1 2019-11-10 22:17:13.558694 20662 1946 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 573\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.66E3\nmove_type: '1'\nsale_id: 1396\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-725\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.66E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-725 187.149.74.215 c96aea36-0fcc-4023-b06b-576275f99ec1 2019-11-10 22:17:13.57901 20663 1946 CashRegistersMove \N \N 25 User \N destroy ---\nopen_cash_register_id: 573\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.66E3\nmove_type: '1'\nsale_id: 1396\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-725\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.66E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.74.215 6bb93b72-15f0-4209-9611-0c769d42fe4c 2019-11-10 22:17:18.087283 20664 1947 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 573\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.66E3\nmove_type: '1'\nsale_id: 1396\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-725\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DESCUEN\n 1 movimiento de efectivo por venta con folio PV1-V-725 187.149.74.215 5ceb944d-7100-4fbe-9f46-77dadb4f500a 2019-11-10 22:17:46.252 20665 573 CashOut \N \N 25 User \N create ---\nopen_cash_register_id: 573\nuser_id: 25\namount_in: !ruby/object:BigDecimal 18:0.3907E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.855E3\nphysical_cash: !ruby/object:BigDecimal 18:0.855E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.74.215 1ac9c7cd-e1a8-4787-aca9-16417481f5f6 2019-11-10 22:20:33.605474 20666 573 OpenCashRegister \N \N 25 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 1ac9c7cd-e1a8-4787-aca9-16417481f5f6 2019-11-10 22:20:33.617223 20667 574 CashOut \N \N 26 User \N create ---\nopen_cash_register_id: 572\nuser_id: 26\namount_in: !ruby/object:BigDecimal 18:0.499E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.639E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1139E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.74.215 c88a4995-8383-430f-8bf6-612d4354a2d0 2019-11-10 22:28:25.241608 20668 572 OpenCashRegister \N \N 26 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 c88a4995-8383-430f-8bf6-612d4354a2d0 2019-11-10 22:28:25.256378 20669 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-10 21:03:51.527167000 Z\n- &1 2019-11-10 21:17:00.570088000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-10 23:18:34.732527563 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107351\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938508\n mask_addr: 4294967295\nsign_in_count:\n- 883\n- 884\n 1768 \N 200.68.151.204 8954aeb2-7bfd-4411-9784-70e73894e531 2019-11-10 23:18:34.763939 20670 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZsDX3xv3YbyzcCYa7vyT\n- of71jU9z7aDDQERGpHSa\n 1769 \N 200.68.151.204 8954aeb2-7bfd-4411-9784-70e73894e531 2019-11-10 23:18:34.789634 20671 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-10 21:17:00.570088000 Z\n- &1 2019-11-10 23:18:34.732527000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-11 03:22:16.794681621 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938508\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938508\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107351\n mask_addr: 4294967295\nsign_in_count:\n- 884\n- 885\n 1770 \N 187.149.12.23 7a2afccc-3010-41ee-9e2a-d185fd12963b 2019-11-11 03:22:16.807335 20672 4 User \N \N 4 User \N update ---\nunique_session_id:\n- of71jU9z7aDDQERGpHSa\n- tP13o2sThnYxVUJr93yL\n 1771 \N 187.149.12.23 7a2afccc-3010-41ee-9e2a-d185fd12963b 2019-11-11 03:22:16.831209 20673 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-04 17:06:08.590965000 Z\n- &1 2019-11-08 18:01:06.098692000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-11 17:14:06.772247852 Z\nsign_in_count:\n- 15\n- 16\n 32 \N 187.149.74.215 da4465e0-d64f-4fa7-b2db-978e21b8dde1 2019-11-11 17:14:06.813481 20674 27 User \N \N 27 User \N update ---\nunique_session_id:\n- 2wVpJK9A_qW8XBa3cU9F\n- _4x9TKxuyiBUzkrsZAeQ\n 33 \N 187.149.74.215 da4465e0-d64f-4fa7-b2db-978e21b8dde1 2019-11-11 17:14:06.840481 20675 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-08 18:14:21.696774000 Z\n- &1 2019-11-09 19:32:32.711118000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-11 17:16:23.670060494 Z\nsign_in_count:\n- 372\n- 373\n 749 \N 187.149.74.215 ad6e7fb7-6bf9-4140-aa1d-1faece221c85 2019-11-11 17:16:23.675759 20676 2 User \N \N 2 User \N update ---\nunique_session_id:\n- EPiZUBjsRSt8FRTjsx3E\n- PXyMSScnHHTBfxYpBzUp\n 750 \N 187.149.74.215 ad6e7fb7-6bf9-4140-aa1d-1faece221c85 2019-11-11 17:16:23.691062 20677 574 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.855E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 855.0 187.149.74.215 97ed9487-056d-43b9-b625-9e19712d73f7 2019-11-11 17:17:02.637031 20678 575 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.639E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 639.0 187.149.74.215 4b8a640b-d73b-4d74-9650-56c068dfb0f6 2019-11-11 17:17:14.697863 20679 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-11-05 00:59:04.664951000 Z\n- &1 2019-11-06 18:19:03.611870000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-11 18:15:57.271313729 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\nsign_in_count:\n- 40\n- 41\n 83 \N 189.186.130.34 72848741-2d6b-4384-9854-c2c24bc5cac3 2019-11-11 18:15:57.278871 20680 21 User \N \N 21 User \N update ---\nunique_session_id:\n- wVZzyiiBty76b7Lhdy3W\n- niSxMHEGLiHGMw69dHL4\n 84 \N 189.186.130.34 72848741-2d6b-4384-9854-c2c24bc5cac3 2019-11-11 18:15:57.293963 20681 234 Customer \N \N 21 User \N create ---\nnick_name: DIANA MEDINA\nphone: "(667) 359-6954"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DIANA MEDINA fue registrado. 189.186.130.34 0fe59f05-9d39-474a-b7af-fd080c1129be 2019-11-11 18:16:55.771597 20682 1397 Sale \N \N 21 User \N create ---\ncustomer_id: 234\nuser_id: 21\nopen_cash_register_id: 571\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-11-11\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-111\nexpiration_date: 2019-12-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 59d413d6-1c44-420b-998b-41fd5c83d95e 2019-11-11 18:17:10.941417 20683 1269 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.130.34 59d413d6-1c44-420b-998b-41fd5c83d95e 2019-11-11 18:17:10.968676 20684 1948 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 571\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1397\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-111\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-111 189.186.130.34 fda00065-37df-4023-a936-7cb24c070133 2019-11-11 18:17:25.592194 20685 1397 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.130.34 06e8ee79-5122-4221-a6b2-8f58979fa0c0 2019-11-11 18:17:26.751603 20686 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-11-06 23:17:09.289636000 Z\n- &1 2019-11-07 22:49:18.925799000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-11 18:32:19.444649187 Z\nsign_in_count:\n- 13\n- 14\n 28 \N 187.149.74.215 c1207c9a-7569-4c2e-bfd1-63918d1f0d57 2019-11-11 18:32:19.464049 20687 24 User \N \N 24 User \N update ---\nunique_session_id:\n- pmnLwWUjYkSKxqyMRx84\n- mbVDgQZ_ag7cuH-HqcX7\n 29 \N 187.149.74.215 c1207c9a-7569-4c2e-bfd1-63918d1f0d57 2019-11-11 18:32:19.479652 20688 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-10-31 22:22:58.847493000 Z\n- &1 2019-11-06 19:31:22.385495000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-11 18:33:19.118534446 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121354\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 99\n- 100\n 200 \N 187.149.74.215 23fac59d-b0a4-4aa3-8b77-2173d9bffd34 2019-11-11 18:33:19.12495 20689 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Yt7JoAZ6m2Kej-RTsA_D\n- 2RszdQkV3tXTZayTGj7X\n 201 \N 187.149.74.215 23fac59d-b0a4-4aa3-8b77-2173d9bffd34 2019-11-11 18:33:19.138492 20690 1949 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 434\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.71799E3\nmove_type: '1'\nsale_id: 1108\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.71799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.74.215 add7549f-7aad-451c-bb76-13468fcf4064 2019-11-11 18:59:21.751203 20691 1108 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.74.215 add7549f-7aad-451c-bb76-13468fcf4064 2019-11-11 18:59:21.779703 20692 1949 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 434\n- 574\n 2 movimiento de efectivo por venta con folio PV3-V-36 187.149.74.215 add7549f-7aad-451c-bb76-13468fcf4064 2019-11-11 18:59:21.796493 20693 1950 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 574\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.438E3\nmove_type: '1'\nsale_id: 1324\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.438E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-700 187.149.74.215 1609354b-2ca4-4a86-baa0-7aece755aae7 2019-11-11 19:22:51.226194 20694 1324 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.74.215 dca05074-f790-4592-982f-53fc7fff07e8 2019-11-11 19:22:54.055621 20695 1398 Sale \N \N 2 User \N create ---\ncustomer_id: 148\nuser_id: 2\nopen_cash_register_id: 574\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2019-11-11\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-726\nexpiration_date: 2019-12-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 e7dc8d13-77b3-44df-add3-c15da5fa2e02 2019-11-11 20:29:07.630113 20696 1097 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.74.215 e7dc8d13-77b3-44df-add3-c15da5fa2e02 2019-11-11 20:29:07.66461 20740 299 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-11\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.74.215 42f61d67-0060-42b3-8643-3560be3e3e31 2019-11-12 02:35:01.853787 20697 1951 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 574\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.229E3\nmove_type: '1'\nsale_id: 1398\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-726\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.229E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-726 187.149.74.215 1cde105a-046d-4e8f-9c70-926ef298c0e1 2019-11-11 20:29:25.301587 20698 1398 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.74.215 50f5e439-141e-4ba8-868b-17d0c43288c0 2019-11-11 20:29:27.129241 20699 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-10 23:18:34.732527000 Z\n- &1 2019-11-11 03:22:16.794681000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-11 20:39:56.539885477 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938508\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107351\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107351\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938131\n mask_addr: 4294967295\nsign_in_count:\n- 885\n- 886\n 1772 \N 200.68.150.83 b41470ef-df0e-4974-a705-154107bd7545 2019-11-11 20:39:56.547789 20700 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tP13o2sThnYxVUJr93yL\n- icudEtPzxDr9zKkoyz76\n 1773 \N 200.68.150.83 b41470ef-df0e-4974-a705-154107bd7545 2019-11-11 20:39:56.565318 20701 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-11 03:22:16.794681000 Z\n- &1 2019-11-11 20:39:56.539885000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-11 21:40:08.195676951 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107351\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938131\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938131\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\nsign_in_count:\n- 886\n- 887\n 1774 \N 189.186.130.34 4e200192-ea70-409a-8247-d00d6c77b1df 2019-11-11 21:40:08.204124 20702 4 User \N \N 4 User \N update ---\nunique_session_id:\n- icudEtPzxDr9zKkoyz76\n- H72zup7oGfx75PyHxH_V\n 1775 \N 189.186.130.34 4e200192-ea70-409a-8247-d00d6c77b1df 2019-11-11 21:40:08.226737 20703 298 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-11-11\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.130.34 fb8c1060-1c57-4f23-8093-5a4cb6c27149 2019-11-11 21:40:59.236693 20704 298 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-11\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.74.215 70acc5ea-6cb6-42df-a024-35cf4ff264ee 2019-11-11 21:41:15.09167 20705 1301 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 883\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 70acc5ea-6cb6-42df-a024-35cf4ff264ee 2019-11-11 21:41:15.114101 20706 235 Customer \N \N 2 User \N create ---\nnick_name: GRIEGA BELTRAN\nphone: "(667) 210-5884"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente GRIEGA BELTRAN fue registrado. 187.149.74.215 b28790f7-4cdf-4f65-8dc3-623eb8b32439 2019-11-11 21:43:44.639418 20707 1399 Sale \N \N 2 User \N create ---\ncustomer_id: 235\nuser_id: 2\nopen_cash_register_id: 574\namount: !ruby/object:BigDecimal 18:0.1049E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1049E4\nstatus: 0\ndate_sale: 2019-11-11\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-727\nexpiration_date: 2019-12-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 1d6d0142-9c3e-4325-a4c4-359b2381acc8 2019-11-11 21:43:54.991801 20708 1301 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.74.215 1d6d0142-9c3e-4325-a4c4-359b2381acc8 2019-11-11 21:43:55.027071 20709 1952 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 574\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1399\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-727\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-727 187.149.74.215 a914ecb4-c2ab-49ca-9676-f0c24750a6f4 2019-11-11 21:44:03.609829 20710 1952 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 574\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1399\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-727\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.74.215 6f598a8c-76ff-4897-b938-6629721fbbe1 2019-11-11 21:44:18.972735 20711 1953 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 574\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1399\ncardnumber: 7136\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-727\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-727 187.149.74.215 b63676a0-082c-44be-b7ef-94d8f35bb756 2019-11-11 21:45:52.144847 20712 1399 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.74.215 6b60502d-2d63-47da-ba74-8d7bb4453a04 2019-11-11 21:45:54.088277 20713 1400 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 575\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2019-11-11\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-560\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 eb8edb9f-f7a6-4bfd-a29b-731e3fab4a4a 2019-11-11 22:16:38.061761 20714 1282 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.74.215 eb8edb9f-f7a6-4bfd-a29b-731e3fab4a4a 2019-11-11 22:16:38.088425 20715 1400 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-560 cancelada. 187.149.74.215 d528e393-55e4-4d80-8d1e-7a6f10289385 2019-11-11 22:16:47.788145 20716 1282 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 187.149.74.215 d528e393-55e4-4d80-8d1e-7a6f10289385 2019-11-11 22:16:47.812956 20741 1302 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 784\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 42f61d67-0060-42b3-8643-3560be3e3e31 2019-11-12 02:35:01.87589 20717 1401 Sale \N \N 2 User \N create ---\ncustomer_id: 213\nuser_id: 2\nopen_cash_register_id: 574\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2019-11-11\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-728\nexpiration_date: 2019-12-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 f37e9c38-a091-47bc-b06e-de1c31159309 2019-11-11 22:41:39.926768 20718 1275 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.74.215 f37e9c38-a091-47bc-b06e-de1c31159309 2019-11-11 22:41:39.956878 20719 1954 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 574\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1401\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-728\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-728 187.149.74.215 987987e6-c394-4307-bb66-e70c7e0358ee 2019-11-11 22:41:46.079223 20720 1401 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.74.215 92946310-f65c-4009-8923-30923a0b1cec 2019-11-11 22:41:48.116435 20721 236 Customer \N \N 2 User \N create ---\nnick_name: MARTHA HIGUERA\nphone: "(667) 547-9961"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARTHA HIGUERA fue registrado. 187.149.74.215 00241102-5901-4cf9-b5f7-1026abe0127e 2019-11-11 22:46:18.071255 20722 1402 Sale \N \N 2 User \N create ---\ncustomer_id: 236\nuser_id: 2\nopen_cash_register_id: 574\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2019-11-11\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-729\nexpiration_date: 2019-12-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 393f57f6-a65f-4d73-8b37-a9a7e44dac5f 2019-11-11 22:46:55.21508 20723 1103 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.74.215 393f57f6-a65f-4d73-8b37-a9a7e44dac5f 2019-11-11 22:46:55.243493 20724 1955 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 574\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 1402\ncardnumber: 9121\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-729\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-729 187.149.74.215 047161e0-0c87-4fc3-8139-ccaa5fa29772 2019-11-11 22:47:45.425673 20725 1402 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.74.215 9261a715-43fa-476a-afd6-d79811ff20a2 2019-11-11 22:47:47.449159 20726 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-11-06 19:31:22.385495000 Z\n- &1 2019-11-11 18:33:19.118534000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-11 23:00:08.557697424 Z\nsign_in_count:\n- 100\n- 101\n 202 \N 187.149.74.215 c8b81147-dc7d-422f-86ed-bb6d4e1e2441 2019-11-11 23:00:08.563485 20727 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 2RszdQkV3tXTZayTGj7X\n- 6w5csw8cQoAZMZrrXb45\n 203 \N 187.149.74.215 c8b81147-dc7d-422f-86ed-bb6d4e1e2441 2019-11-11 23:00:08.577613 20728 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-09 19:32:32.711118000 Z\n- &1 2019-11-11 17:16:23.670060000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-11 23:37:35.682242909 Z\nsign_in_count:\n- 373\n- 374\n 751 \N 187.149.74.215 826b35a2-ebde-465e-9bba-ee85c0b637aa 2019-11-11 23:37:35.688242 20729 2 User \N \N 2 User \N update ---\nunique_session_id:\n- PXyMSScnHHTBfxYpBzUp\n- 2WyQ2JdaviTDRKLCJEgu\n 752 \N 187.149.74.215 826b35a2-ebde-465e-9bba-ee85c0b637aa 2019-11-11 23:37:35.702349 20730 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-11 20:39:56.539885000 Z\n- &1 2019-11-11 21:40:08.195676000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-12 00:39:35.571605162 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938131\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934252\n mask_addr: 4294967295\nsign_in_count:\n- 887\n- 888\n 1776 \N 200.68.135.44 6e57f4f0-8633-4199-af89-ad5c51243cb3 2019-11-12 00:39:35.586235 20731 4 User \N \N 4 User \N update ---\nunique_session_id:\n- H72zup7oGfx75PyHxH_V\n- AgUq1tDNHLsvdDtSWkeC\n 1777 \N 200.68.135.44 6e57f4f0-8633-4199-af89-ad5c51243cb3 2019-11-12 00:39:35.613123 20732 1403 Sale \N \N 27 User \N create ---\ncustomer_id: 213\nuser_id: 27\nopen_cash_register_id: 575\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2019-11-11\nsaletype: 2\nseller_id: 19\nsale_code: PV2-V-561\nexpiration_date: 2019-12-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 6726813a-a3f0-4925-a803-1bb8a562e00d 2019-11-12 01:02:13.991468 20733 1282 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.74.215 6726813a-a3f0-4925-a803-1bb8a562e00d 2019-11-12 01:02:14.023884 20734 1956 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 575\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1403\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-561\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-561 187.149.74.215 987f6120-66ff-49f7-8d30-32b23b804c22 2019-11-12 01:02:26.233562 20735 1403 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.74.215 4f93d9e2-e091-4c9a-9146-9e21d851b68a 2019-11-12 01:02:29.735001 20736 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-11-07 22:49:18.925799000 Z\n- &1 2019-11-11 18:32:19.444649000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-12 02:33:20.938444274 Z\nsign_in_count:\n- 14\n- 15\n 30 \N 187.149.74.215 54d841c1-a775-44cf-a8db-d9b00a08f1d3 2019-11-12 02:33:20.97127 20737 24 User \N \N 24 User \N update ---\nunique_session_id:\n- mbVDgQZ_ag7cuH-HqcX7\n- Ey1Rx3n1gVUkdS9eNDGR\n 31 \N 187.149.74.215 54d841c1-a775-44cf-a8db-d9b00a08f1d3 2019-11-12 02:33:20.994626 20738 1126 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.74.215 252185a2-a367-416e-b434-4beb24d71d57 2019-11-12 02:33:46.480008 20739 299 Transfer \N \N 24 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-11-11\nuser_id: 24\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.74.215 de5530cc-16cf-4484-87f1-0268f7e76c36 2019-11-12 02:33:50.469152 20810 23 User \N \N 23 User \N update ---\nunique_session_id:\n- eQvnWhAuJ4a1jCnb62MQ\n- U-Q6-LysMspsKQxx3-TM\n 123 \N 189.186.130.34 956fadfe-c3f4-45b3-86c8-6608f970e9cb 2019-11-13 17:00:19.602295 20742 1404 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 574\namount: !ruby/object:BigDecimal 18:0.1598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3995E3\ntotal: !ruby/object:BigDecimal 18:0.11985E4\nstatus: 0\ndate_sale: 2019-11-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-730\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 a825d339-5e16-4ff4-869a-1e9d9a1c4296 2019-11-12 02:44:59.976548 20743 1302 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.74.215 a825d339-5e16-4ff4-869a-1e9d9a1c4296 2019-11-12 02:45:00.002706 20744 1299 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.74.215 a825d339-5e16-4ff4-869a-1e9d9a1c4296 2019-11-12 02:45:00.031975 20745 1404 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 9b5f1924-5459-4055-82af-6f168fb9bf2b 2019-11-12 02:45:27.025294 20746 1957 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 574\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.11985E4\nmove_type: '1'\nsale_id: 1404\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-730\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: RS6C\ncustomer_account: UNIVALE\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-730 187.149.74.215 9b5f1924-5459-4055-82af-6f168fb9bf2b 2019-11-12 02:45:27.047268 20747 575 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 574\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.338349E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.16E4\ncash_fund: !ruby/object:BigDecimal 18:0.84E3\nphysical_cash: !ruby/object:BigDecimal 18:0.244E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.74.215 51a778ff-9418-4cbc-af42-545d49ef0066 2019-11-12 02:55:57.210176 20748 574 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 51a778ff-9418-4cbc-af42-545d49ef0066 2019-11-12 02:55:57.227254 20749 576 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 575\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.839E3\nphysical_cash: !ruby/object:BigDecimal 18:0.839E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.74.215 f8fe608a-d02f-4281-9a28-ce2be4073c0f 2019-11-12 03:00:09.05897 20750 575 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 f8fe608a-d02f-4281-9a28-ce2be4073c0f 2019-11-12 03:00:09.073226 20751 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-11-06 18:19:03.611870000 Z\n- &1 2019-11-11 18:15:57.271313000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-12 03:04:49.850243277 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\nsign_in_count:\n- 41\n- 42\n 85 \N 189.186.130.34 d000ef87-19ba-49c9-9ffc-c650dfeb5fff 2019-11-12 03:04:49.860669 20752 21 User \N \N 21 User \N update ---\nunique_session_id:\n- niSxMHEGLiHGMw69dHL4\n- ayxd91jBeMNBkvM9s5d6\n 86 \N 189.186.130.34 d000ef87-19ba-49c9-9ffc-c650dfeb5fff 2019-11-12 03:04:49.875891 20753 211 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 571\nquantity: !ruby/object:BigDecimal 18:0.8E2\nstatus: 1\nobservations: IMPRESIONES\nexpense_date: 2019-11-11\nexpense_code: PV3-E-9\n 1 Egreso por 80.0 registrado 189.186.130.34 a78c1771-8c96-4725-986f-9bafad48ca03 2019-11-12 03:06:18.328531 20754 1958 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 571\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 211\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.130.34 a78c1771-8c96-4725-986f-9bafad48ca03 2019-11-12 03:06:18.363264 20755 577 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 571\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.5E3\namount_out: !ruby/object:BigDecimal 18:0.8E2\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1132E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1132E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.130.34 9a592754-adeb-4c52-8c99-3786c4427216 2019-11-12 03:07:19.823155 20756 571 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.130.34 9a592754-adeb-4c52-8c99-3786c4427216 2019-11-12 03:07:19.836702 20757 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-09 18:10:28.515834000 Z\n- &1 2019-11-10 17:15:13.738910000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-12 16:58:05.430148912 Z\nsign_in_count:\n- 59\n- 60\n 120 \N 189.186.130.34 5f5ac2b1-1e3a-4480-abf8-1430d8e73e30 2019-11-12 16:58:05.463397 20758 23 User \N \N 23 User \N update ---\nunique_session_id:\n- PEwqzT9GSHNSeD9_oeto\n- eQvnWhAuJ4a1jCnb62MQ\n 121 \N 189.186.130.34 5f5ac2b1-1e3a-4480-abf8-1430d8e73e30 2019-11-12 16:58:05.488409 20759 576 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1132E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1132.0 189.186.130.34 dc0ec030-0432-4869-97e7-4de5cc11028a 2019-11-12 16:58:33.723111 20760 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-11 21:40:08.195676000 Z\n- &1 2019-11-12 00:39:35.571605000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-12 19:35:28.931252536 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934252\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934252\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 888\n- 889\n 1778 \N 187.149.74.215 ef096239-df14-430c-bda1-5c37bf8983aa 2019-11-12 19:35:28.945247 20761 4 User \N \N 4 User \N update ---\nunique_session_id:\n- AgUq1tDNHLsvdDtSWkeC\n- cHoV2P4frHS_qoSiXkxS\n 1779 \N 187.149.74.215 ef096239-df14-430c-bda1-5c37bf8983aa 2019-11-12 19:35:28.972566 20762 877 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '877'\n is_parent: false\n sku: BLU-877\n name: BLS-0097\n description: "BLUSA CQ&CQ NEGRA Y DORADA ST-9319TW\\r\\n"\n price_base: '400.0'\n price_sale: '899.0'\n img_product: PHOTO-2019-10-15-21-54-28__1_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000877'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-29 01:34:24.355394'\n updated_at: &12 2019-11-12 19:46:57.354145624 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '877'\n sku: BLU-877\n name: BLS-0097\n description: "BLUSA CQ&CQ NEGRA Y DORADA ST-9319TW\\r\\n"\n price_base: '400.00'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-29 01:34:24.355394'\n updated_at: '2019-10-29 01:34:24.390919'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000877'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '877'\n type: *3\n value: 877\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-877\n type: *7\n value: BLU-877\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0097\n type: *8\n value: BLS-0097\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "BLUSA CQ&CQ NEGRA Y DORADA ST-9319TW\\r\\n"\n type: *6\n value: "BLUSA CQ&CQ NEGRA Y DORADA ST-9319TW\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '400.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-10-15-21-54-28__1_.jpg\n type: *2\n value: PHOTO-2019-10-15-21-54-28__1_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000877'\n type: *2\n value: '0000877'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-29 01:34:24.355394'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-10-15-21-54-28__1_.jpg\n 3 El producto BLU-877 fue modificado. 187.149.74.215 8134b143-ba61-4c2c-bdd0-dc9da0239aef 2019-11-12 19:46:57.39622 20763 1959 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 576\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1382\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-110 189.186.130.34 e1ba8a2b-d73c-4e1c-a662-fc4bc06a0fb2 2019-11-12 20:17:43.280756 20764 1382 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.130.34 4f6d8bb3-79da-46ff-8602-b1ad3e8e4b5c 2019-11-12 20:18:05.030154 20830 918 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000918'\n 2 \N 187.149.74.215 6b562d53-766d-4d39-8e52-197bc8aa10ea 2019-11-13 18:25:32.08015 20765 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-12 00:39:35.571605000 Z\n- &1 2019-11-12 19:35:28.931252000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-12 20:25:07.136208915 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934252\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147110819\n mask_addr: 4294967295\nsign_in_count:\n- 889\n- 890\n 1780 \N 187.149.25.163 6f5298c0-65cd-4849-a914-ad0d329124eb 2019-11-12 20:25:07.17999 20766 4 User \N \N 4 User \N update ---\nunique_session_id:\n- cHoV2P4frHS_qoSiXkxS\n- z5GWVyn-DR1uwu4jXiqM\n 1781 \N 187.149.25.163 6f5298c0-65cd-4849-a914-ad0d329124eb 2019-11-12 20:25:07.206677 20767 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-11 17:16:23.670060000 Z\n- &1 2019-11-11 23:37:35.682242000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-12 20:29:58.569715934 Z\nsign_in_count:\n- 374\n- 375\n 753 \N 187.149.74.215 59f74c70-32ba-4fda-a01c-d76ccf658c2f 2019-11-12 20:29:58.57682 20768 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 2WyQ2JdaviTDRKLCJEgu\n- 8Q6wyccrYH2iDeJzuFfe\n 754 \N 187.149.74.215 59f74c70-32ba-4fda-a01c-d76ccf658c2f 2019-11-12 20:29:58.598358 20769 577 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.84E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 840.0 187.149.74.215 03aff0c6-3a76-41ff-98c7-a2493bc10f04 2019-11-12 20:30:12.528474 20770 1405 Sale \N \N 2 User \N create ---\ncustomer_id: 191\nuser_id: 2\nopen_cash_register_id: 577\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-11-12\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-731\nexpiration_date: 2019-12-17\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 c9291056-9d37-4a1b-ab45-e57a1887ab2d 2019-11-12 20:32:28.324028 20771 1156 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.74.215 c9291056-9d37-4a1b-ab45-e57a1887ab2d 2019-11-12 20:32:28.357246 20772 1960 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 577\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1405\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-731\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-731 187.149.74.215 08942c7f-2813-4093-80ec-8e8e134ce749 2019-11-12 20:32:34.401333 20773 1405 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.74.215 05d7064f-7ed2-4f27-b659-fc6c4702c792 2019-11-12 20:32:35.576148 20774 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-11-10 17:10:07.175077000 Z\n- &1 2019-11-10 22:05:47.854389000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-12 21:15:11.789857064 Z\nsign_in_count:\n- 32\n- 33\n 66 \N 187.149.74.215 0373df1e-b157-4cc3-a848-ff1348a18703 2019-11-12 21:15:11.799608 20775 25 User \N \N 25 User \N update ---\nunique_session_id:\n- t7JHiyYvknA7xKJ9BbHA\n- AT4j7M1qaFS9q_kC9_y3\n 67 \N 187.149.74.215 0373df1e-b157-4cc3-a848-ff1348a18703 2019-11-12 21:15:11.81826 20776 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-09 19:29:38.900684000 Z\n- &1 2019-11-10 17:36:50.221819000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-12 23:45:40.299961555 Z\nsign_in_count:\n- 29\n- 30\n 60 \N 187.149.74.215 b801e887-dee0-41f6-a088-38687dbbae6b 2019-11-12 23:45:40.306512 20777 26 User \N \N 26 User \N update ---\nunique_session_id:\n- jtRWj5iovVRpEi3gM5SR\n- uzjnHyqAZjvmY8VkY-Vv\n 61 \N 187.149.74.215 b801e887-dee0-41f6-a088-38687dbbae6b 2019-11-12 23:45:40.319928 20778 1406 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 577\namount: !ruby/object:BigDecimal 18:0.598E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.598E3\nstatus: 0\ndate_sale: 2019-11-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-732\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 0d5388ab-a73b-4842-8942-9a5d08a0fea7 2019-11-12 23:46:27.631144 20779 786 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.7E1\n 14 \N 187.149.74.215 0d5388ab-a73b-4842-8942-9a5d08a0fea7 2019-11-12 23:46:27.663574 20780 1406 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 80916c24-7ab6-4562-b9b7-7425b67c2511 2019-11-12 23:46:43.453339 20781 1961 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 577\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.598E3\nmove_type: '1'\nsale_id: 1406\ncardnumber: 8047\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-732\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-732 187.149.74.215 80916c24-7ab6-4562-b9b7-7425b67c2511 2019-11-12 23:46:43.473376 20782 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-12 19:35:28.931252000 Z\n- &1 2019-11-12 20:25:07.136208000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-12 23:54:02.993684356 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147110819\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147110819\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938288\n mask_addr: 4294967295\nsign_in_count:\n- 890\n- 891\n 1782 \N 200.68.150.240 f048e54a-4f8d-4c0b-b4e3-a2ef06784be3 2019-11-12 23:54:03.004683 20783 4 User \N \N 4 User \N update ---\nunique_session_id:\n- z5GWVyn-DR1uwu4jXiqM\n- WpYhHRDihE_Y2vJ827X8\n 1783 \N 200.68.150.240 f048e54a-4f8d-4c0b-b4e3-a2ef06784be3 2019-11-12 23:54:03.029961 20784 1407 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 576\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-11-12\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-112\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 9570fa8b-9e75-40de-b590-ab707ca34b08 2019-11-13 01:07:30.589495 20785 1094 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.130.34 9570fa8b-9e75-40de-b590-ab707ca34b08 2019-11-13 01:07:30.626129 20786 1407 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.130.34 9605e5a4-1336-4cf1-baba-6531ad5fd20e 2019-11-13 01:07:49.234146 20787 1962 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 576\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 1407\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-112\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-112 189.186.130.34 9605e5a4-1336-4cf1-baba-6531ad5fd20e 2019-11-13 01:07:49.258436 20788 1408 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 577\namount: !ruby/object:BigDecimal 18:0.779E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.779E3\nstatus: 0\ndate_sale: 2019-11-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-733\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 5a85b260-f7bd-4858-8dc9-30875d63a1b2 2019-11-13 01:35:49.430357 20789 1274 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.74.215 5a85b260-f7bd-4858-8dc9-30875d63a1b2 2019-11-13 01:35:49.458896 20790 1408 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 f006b3b4-4cec-49cb-9b1c-18f4dc082b7e 2019-11-13 01:35:53.546883 20791 1963 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 577\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.779E3\nmove_type: '1'\nsale_id: 1408\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-733\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.779E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-733 187.149.74.215 f006b3b4-4cec-49cb-9b1c-18f4dc082b7e 2019-11-13 01:35:53.567639 20792 1409 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 577\namount: !ruby/object:BigDecimal 18:0.1658E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1658E4\nstatus: 0\ndate_sale: 2019-11-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-734\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 7f956a14-2d77-4935-b6bc-8b93e27fabe8 2019-11-13 01:58:29.165898 20793 1141 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.74.215 7f956a14-2d77-4935-b6bc-8b93e27fabe8 2019-11-13 01:58:29.199259 20794 1409 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 1ff80dd6-7ba5-4eca-92ac-961f609eb66a 2019-11-13 01:59:38.874606 20795 1964 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 577\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1658E4\nmove_type: '1'\nsale_id: 1409\ncardnumber: 5497\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-734\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-734 187.149.74.215 1ff80dd6-7ba5-4eca-92ac-961f609eb66a 2019-11-13 01:59:38.897579 20796 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-12 20:25:07.136208000 Z\n- &1 2019-11-12 23:54:02.993684000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-13 02:38:55.445098048 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147110819\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938288\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938288\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934287\n mask_addr: 4294967295\nsign_in_count:\n- 891\n- 892\n 1784 \N 200.68.135.79 f209129d-fea9-470e-a8cf-8528362ec471 2019-11-13 02:38:55.457646 20797 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WpYhHRDihE_Y2vJ827X8\n- Xuh69W6ad1jtYmJfVhpj\n 1785 \N 200.68.135.79 f209129d-fea9-470e-a8cf-8528362ec471 2019-11-13 02:38:55.481613 20798 578 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.839E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 839.0 187.149.74.215 a255adf5-86af-48ee-acee-65be9137a47c 2019-11-13 02:45:47.215488 20799 1410 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 578\namount: !ruby/object:BigDecimal 18:0.459E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.459E3\nstatus: 0\ndate_sale: 2019-11-12\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-562\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 7a41c7eb-7dca-4bd9-ba9a-b4a665196d1b 2019-11-13 02:46:11.763208 20800 1147 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.74.215 7a41c7eb-7dca-4bd9-ba9a-b4a665196d1b 2019-11-13 02:46:11.788381 20801 1410 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 e56a7ee4-9bc8-4d0b-a692-effbfff61482 2019-11-13 02:46:21.639541 20802 1965 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 578\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.459E3\nmove_type: '1'\nsale_id: 1410\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-562\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.41E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-562 187.149.74.215 e56a7ee4-9bc8-4d0b-a692-effbfff61482 2019-11-13 02:46:21.659763 20803 578 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 577\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3235E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.9E3\ncash_fund: !ruby/object:BigDecimal 18:0.919E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1819E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.74.215 dd202c4d-8cf4-474d-a41e-430a27a5525f 2019-11-13 02:51:13.10265 20804 577 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 dd202c4d-8cf4-474d-a41e-430a27a5525f 2019-11-13 02:51:13.1142 20805 579 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 576\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.1698E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.8E3\ncash_fund: !ruby/object:BigDecimal 18:0.1131E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1931E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.130.34 e951d13a-a90d-4b26-881c-8faaa5f1f837 2019-11-13 02:53:48.226008 20806 576 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.130.34 e951d13a-a90d-4b26-881c-8faaa5f1f837 2019-11-13 02:53:48.240344 20807 580 CashOut \N \N 26 User \N create ---\nopen_cash_register_id: 578\nuser_id: 26\namount_in: !ruby/object:BigDecimal 18:0.459E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.794E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1294E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.74.215 5f3f1f82-db40-49af-a385-b885c9f748bf 2019-11-13 02:57:41.305615 20808 578 OpenCashRegister \N \N 26 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 5f3f1f82-db40-49af-a385-b885c9f748bf 2019-11-13 02:57:41.318105 20809 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-10 17:15:13.738910000 Z\n- &1 2019-11-12 16:58:05.430148000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-13 17:00:19.540596321 Z\nsign_in_count:\n- 60\n- 61\n 122 \N 189.186.130.34 956fadfe-c3f4-45b3-86c8-6608f970e9cb 2019-11-13 17:00:19.577785 20811 579 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1131E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1131.0 189.186.130.34 e2686917-e4c2-40ef-9190-7c8c27457f3f 2019-11-13 17:00:46.860196 20812 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-11 23:37:35.682242000 Z\n- &1 2019-11-12 20:29:58.569715000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-13 17:09:42.471529791 Z\nsign_in_count:\n- 375\n- 376\n 755 \N 187.149.74.215 7e012092-f4b9-402a-a108-a74c3f72f6e0 2019-11-13 17:09:42.500469 20813 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 8Q6wyccrYH2iDeJzuFfe\n- a-jjsNiZBYsmjxCHyyFv\n 756 \N 187.149.74.215 7e012092-f4b9-402a-a108-a74c3f72f6e0 2019-11-13 17:09:42.526209 20814 580 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.919E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 919.0 187.149.74.215 2755e25c-b54e-4562-b379-1831445bc7c6 2019-11-13 17:10:15.629099 20815 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-12 23:54:02.993684000 Z\n- &1 2019-11-13 02:38:55.445098000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-13 17:52:31.771119432 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938288\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934287\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934287\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 892\n- 893\n 1786 \N 187.149.74.215 86d0fc30-5930-47ff-a851-70bc21df4960 2019-11-13 17:52:31.80415 20816 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Xuh69W6ad1jtYmJfVhpj\n- tWECHLxBsN-zre4s_F7E\n 1787 \N 187.149.74.215 86d0fc30-5930-47ff-a851-70bc21df4960 2019-11-13 17:52:31.836405 20817 913 Product \N \N 4 User \N create ---\nsku: ACC-913\nname: DIA-0014\ndescription: DIADEMA CON PIEDRAS COLOR ROSA, MOSTAZA, NEGRA Y ROJA CON ACABADOS DORADOS\nprice_base: !ruby/object:BigDecimal 18:0.9664E2\nprice_sale: !ruby/object:BigDecimal 18:0.239E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0014.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-913 fue creado. 187.149.74.215 e85a708c-0899-48ec-bd6a-e57faf67a837 2019-11-13 18:08:39.073629 20818 913 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000913'\n 2 \N 187.149.74.215 e85a708c-0899-48ec-bd6a-e57faf67a837 2019-11-13 18:08:39.109357 20819 914 Product \N \N 4 User \N create ---\nsku: ACC-914\nname: DIA-0015\ndescription: DIADEMA DE ENCAJE NEGRA Y MOSTAZA CON MOÑO\nprice_base: !ruby/object:BigDecimal 18:0.4979E2\nprice_sale: !ruby/object:BigDecimal 18:0.129E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0015.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-914 fue creado. 187.149.74.215 79a96b0f-b52b-4e2d-af11-a473e2c1e655 2019-11-13 18:18:27.349486 20820 914 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000914'\n 2 \N 187.149.74.215 79a96b0f-b52b-4e2d-af11-a473e2c1e655 2019-11-13 18:18:27.377737 20821 915 Product \N \N 4 User \N create ---\nsku: ACC-915\nname: DIA-0016\ndescription: 'DIADEMA DE PIEDRAS ROSA Y ROJA '\nprice_base: !ruby/object:BigDecimal 18:0.1534E3\nprice_sale: !ruby/object:BigDecimal 18:0.31E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0016.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-915 fue creado. 187.149.74.215 1901dc29-3450-4b6b-956a-33f23d3e9887 2019-11-13 18:20:12.860282 20822 915 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000915'\n 2 \N 187.149.74.215 1901dc29-3450-4b6b-956a-33f23d3e9887 2019-11-13 18:20:12.887762 20823 1966 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 579\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.898E3\nmove_type: '1'\nsale_id: 1277\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-84 189.186.130.34 b01c7535-168d-424b-acd2-c0f5e6e55a26 2019-11-13 18:21:31.281647 20824 1277 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.130.34 fc623772-b907-4232-9d71-f66741dd9db3 2019-11-13 18:21:32.84764 20825 916 Product \N \N 4 User \N create ---\nsku: ACC-916\nname: DIA-0017\ndescription: DIADEMA DE PERLAS BLANCA Y DORADA\nprice_base: !ruby/object:BigDecimal 18:0.44E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0017.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-916 fue creado. 187.149.74.215 0ca13791-ea5e-4ceb-8823-566d318f9a8b 2019-11-13 18:21:39.323567 20826 916 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000916'\n 2 \N 187.149.74.215 0ca13791-ea5e-4ceb-8823-566d318f9a8b 2019-11-13 18:21:39.364684 20827 917 Product \N \N 4 User \N create ---\nsku: ACC-917\nname: DIA-0018\ndescription: DIADEMA DE GAMUZA NEGRA Y ROSA CPN PIEDRAS\nprice_base: !ruby/object:BigDecimal 18:0.5369E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0018.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-917 fue creado. 187.149.74.215 e402b456-2d4a-43ae-82af-55cb3da7cba7 2019-11-13 18:23:12.692834 20828 917 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000917'\n 2 \N 187.149.74.215 e402b456-2d4a-43ae-82af-55cb3da7cba7 2019-11-13 18:23:12.72384 20829 918 Product \N \N 4 User \N create ---\nsku: ACC-918\nname: DIA-0019\ndescription: DIADEMA NEGRA CON PIEDRAS DE COLORES\nprice_base: !ruby/object:BigDecimal 18:0.5369E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0019.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-918 fue creado. 187.149.74.215 6b562d53-766d-4d39-8e52-197bc8aa10ea 2019-11-13 18:25:32.052986 20831 919 Product \N \N 4 User \N create ---\nsku: ACC-919\nname: DIA-0020\ndescription: DIADEMA ROSA, GRIS Y AZUL CON PLATEADO\nprice_base: !ruby/object:BigDecimal 18:0.4098E2\nprice_sale: !ruby/object:BigDecimal 18:0.115E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0020.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-919 fue creado. 187.149.74.215 4c353c5a-0331-4513-aded-07c90425b6a6 2019-11-13 18:26:59.731627 20832 919 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000919'\n 2 \N 187.149.74.215 4c353c5a-0331-4513-aded-07c90425b6a6 2019-11-13 18:26:59.761407 20833 920 Product \N \N 4 User \N create ---\nsku: ACC-920\nname: DIA-0021\ndescription: DIADEMA NEGRA Y BLANCA CON PERLA TORNASOL\nprice_base: !ruby/object:BigDecimal 18:0.4549E2\nprice_sale: !ruby/object:BigDecimal 18:0.129E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0021.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-920 fue creado. 187.149.74.215 f32072a2-5b74-403d-8c8f-a23912fc371b 2019-11-13 18:28:57.011113 20834 920 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000920'\n 2 \N 187.149.74.215 f32072a2-5b74-403d-8c8f-a23912fc371b 2019-11-13 18:28:57.037753 20835 921 Product \N \N 4 User \N create ---\nsku: ACC-921\nname: DIA-0022\ndescription: DIADEMA NEGRA, ROSA Y VERDE CON PIEDRAS\nprice_base: !ruby/object:BigDecimal 18:0.5747E2\nprice_sale: !ruby/object:BigDecimal 18:0.149E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0022.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-921 fue creado. 187.149.74.215 84a66205-afdf-4d9c-897d-79cdf025cf75 2019-11-13 18:30:46.548297 20836 921 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000921'\n 2 \N 187.149.74.215 84a66205-afdf-4d9c-897d-79cdf025cf75 2019-11-13 18:30:46.583978 20837 922 Product \N \N 4 User \N create ---\nsku: ACC-922\nname: DIA-0023\ndescription: DIADEMA NEGRA CON FLORRD NEGRAS Y DORADAS\nprice_base: !ruby/object:BigDecimal 18:0.5747E2\nprice_sale: !ruby/object:BigDecimal 18:0.149E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0023.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-922 fue creado. 187.149.74.215 438a9f6d-b1f4-411f-bc34-bb6f37529044 2019-11-13 18:35:05.628848 20838 922 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000922'\n 2 \N 187.149.74.215 438a9f6d-b1f4-411f-bc34-bb6f37529044 2019-11-13 18:35:05.658549 20839 923 Product \N \N 4 User \N create ---\nsku: ACC-923\nname: DIA-0024\ndescription: DIADEMA NEGRA CON DIAMANTES\nprice_base: !ruby/object:BigDecimal 18:0.1766E3\nprice_sale: !ruby/object:BigDecimal 18:0.369E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0024.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-923 fue creado. 187.149.74.215 ef884d1a-0021-4439-994c-a6e0f86b6947 2019-11-13 18:36:41.781337 20840 923 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000923'\n 2 \N 187.149.74.215 ef884d1a-0021-4439-994c-a6e0f86b6947 2019-11-13 18:36:41.813543 20841 924 Product \N \N 4 User \N create ---\nsku: ACC-924\nname: DIA-0025\ndescription: DIADEMA NEGRA Y DORADA CON DETALLES DORADOS Y PERLAS\nprice_base: !ruby/object:BigDecimal 18:0.4703E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0025.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-924 fue creado. 187.149.74.215 c787c481-af05-457d-b914-0c1908d83f98 2019-11-13 18:38:19.849258 20842 924 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000924'\n 2 \N 187.149.74.215 c787c481-af05-457d-b914-0c1908d83f98 2019-11-13 18:38:19.875415 20843 925 Product \N \N 4 User \N create ---\nsku: ACC-925\nname: DIA-0026\ndescription: DIADEMA PLATEADA Y DORADA CON DIAMANTES\nprice_base: !ruby/object:BigDecimal 18:0.13552E3\nprice_sale: !ruby/object:BigDecimal 18:0.369E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0026.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-925 fue creado. 187.149.74.215 9410a833-5a17-437f-b668-b736c9695053 2019-11-13 18:39:51.685831 20844 925 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000925'\n 2 \N 187.149.74.215 9410a833-5a17-437f-b668-b736c9695053 2019-11-13 18:39:51.724333 20845 926 Product \N \N 4 User \N create ---\nsku: ACC-926\nname: DIA-0027\ndescription: DIADEMA NEGRA, ROSA Y MOSTAZA CON PERLAS\nprice_base: !ruby/object:BigDecimal 18:0.3753E2\nprice_sale: !ruby/object:BigDecimal 18:0.99E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0027.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-926 fue creado. 187.149.74.215 13b00932-3dfe-4ff2-af88-5ed4c9567f15 2019-11-13 18:41:08.218499 20846 926 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000926'\n 2 \N 187.149.74.215 13b00932-3dfe-4ff2-af88-5ed4c9567f15 2019-11-13 18:41:08.246458 20847 927 Product \N \N 4 User \N create ---\nsku: ACC-927\nname: DIA-0028\ndescription: DIADEMA NEGRA, MOSTAZA, VERDE, NEGRA, GRIS Y CAFE CON PERLAS\nprice_base: !ruby/object:BigDecimal 18:0.372E2\nprice_sale: !ruby/object:BigDecimal 18:0.149E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0028.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-927 fue creado. 187.149.74.215 d86123c9-f9e2-40d4-a47f-44e9dc2c4c15 2019-11-13 18:44:03.939477 20848 927 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000927'\n 2 \N 187.149.74.215 d86123c9-f9e2-40d4-a47f-44e9dc2c4c15 2019-11-13 18:44:03.972122 20849 928 Product \N \N 4 User \N create ---\nsku: ACC-928\nname: DIA-0029\ndescription: DIADEMA CON LENTEJUELAS BLANCA, NEGRA, ROSA Y AZUL\nprice_base: !ruby/object:BigDecimal 18:0.4364E2\nprice_sale: !ruby/object:BigDecimal 18:0.149E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0029.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-928 fue creado. 187.149.74.215 2780617d-372b-475d-898a-63dc926d461b 2019-11-13 18:45:39.973421 20850 928 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000928'\n 2 \N 187.149.74.215 2780617d-372b-475d-898a-63dc926d461b 2019-11-13 18:45:40.006339 20851 929 Product \N \N 4 User \N create ---\nsku: ACC-929\nname: DIA-0030\ndescription: DIADEMA NEGRA Y PLATA DE ENCAJE U PIEDRAS\nprice_base: !ruby/object:BigDecimal 18:0.3472E2\nprice_sale: !ruby/object:BigDecimal 18:0.99E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0030.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-929 fue creado. 187.149.74.215 559b3875-220a-45c2-b8a0-8afbd71d3a33 2019-11-13 18:47:13.466531 20852 929 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000929'\n 2 \N 187.149.74.215 559b3875-220a-45c2-b8a0-8afbd71d3a33 2019-11-13 18:47:13.500808 20853 930 Product \N \N 4 User \N create ---\nsku: ACC-930\nname: DIA-0031\ndescription: DIADEMA ROSA,NEGRA Y MOSTAZA\nprice_base: !ruby/object:BigDecimal 18:0.5253E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-031.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-930 fue creado. 187.149.74.215 1db26410-4c25-4b43-b2cd-ce099457caae 2019-11-13 18:49:53.134693 20854 930 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000930'\n 2 \N 187.149.74.215 1db26410-4c25-4b43-b2cd-ce099457caae 2019-11-13 18:49:53.163162 20855 931 Product \N \N 4 User \N create ---\nsku: ACC-931\nname: DIA-0032\ndescription: DIADEMA DE LENTEJUELA DORADA Y COBRE\nprice_base: !ruby/object:BigDecimal 18:0.5289E2\nprice_sale: !ruby/object:BigDecimal 18:0.145E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0032.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-931 fue creado. 187.149.74.215 94fd3091-ba8a-4d3a-b7c6-bb5e5cf1ae31 2019-11-13 18:51:28.597328 20856 931 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000931'\n 2 \N 187.149.74.215 94fd3091-ba8a-4d3a-b7c6-bb5e5cf1ae31 2019-11-13 18:51:28.624711 20857 932 Product \N \N 4 User \N create ---\nsku: ACC-932\nname: DIA-0033\ndescription: DIADEMA NEGRA CON PIEDRAS Y PERLA\nprice_base: !ruby/object:BigDecimal 18:0.7727E2\nprice_sale: !ruby/object:BigDecimal 18:0.199E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0033.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-932 fue creado. 187.149.74.215 e1c57d0f-ed78-4663-b43d-b02412bf4ef6 2019-11-13 18:54:02.906891 20858 932 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000932'\n 2 \N 187.149.74.215 e1c57d0f-ed78-4663-b43d-b02412bf4ef6 2019-11-13 18:54:02.944815 20859 933 Product \N \N 4 User \N create ---\nsku: ACC-933\nname: DIA-0034\ndescription: DIADEMA CON FLORES DE PIEDRA ROSA, NEGRA Y TINTA\nprice_base: !ruby/object:BigDecimal 18:0.5656E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0034.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-933 fue creado. 187.149.74.215 ad436eca-4a45-4ea1-b1cb-cf6923599198 2019-11-13 18:55:33.096409 20860 933 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000933'\n 2 \N 187.149.74.215 ad436eca-4a45-4ea1-b1cb-cf6923599198 2019-11-13 18:55:33.12453 20861 934 Product \N \N 4 User \N create ---\nsku: ACC-934\nname: DIA-0035\ndescription: 'DIADEMA NEGRA, VERDE Y DORADA '\nprice_base: !ruby/object:BigDecimal 18:0.5656E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0035.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-934 fue creado. 187.149.74.215 987744fd-5e4d-4d2c-a9ca-4fe5c4193a9b 2019-11-13 18:57:42.47132 20862 934 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000934'\n 2 \N 187.149.74.215 987744fd-5e4d-4d2c-a9ca-4fe5c4193a9b 2019-11-13 18:57:42.49957 20863 935 Product \N \N 4 User \N create ---\nsku: ACC-935\nname: DIA-0036\ndescription: DIADEMA ROSA Y NEGRA CON RAYADO\nprice_base: !ruby/object:BigDecimal 18:0.3225E2\nprice_sale: !ruby/object:BigDecimal 18:0.99E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0036.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-935 fue creado. 187.149.74.215 20ac2847-dd40-4464-8c28-c2c6ee15bff5 2019-11-13 18:59:53.628969 20864 935 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000935'\n 2 \N 187.149.74.215 20ac2847-dd40-4464-8c28-c2c6ee15bff5 2019-11-13 18:59:53.655619 20865 936 Product \N \N 4 User \N create ---\nsku: ACC-936\nname: DIA-0037\ndescription: DIADEMA CON MOÑO ROSA, TINTO Y NEGRO\nprice_base: !ruby/object:BigDecimal 18:0.287E2\nprice_sale: !ruby/object:BigDecimal 18:0.85E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0037.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-936 fue creado. 187.149.74.215 0b5f3a23-56cb-47a1-8f94-fb5bf766e4fe 2019-11-13 19:01:45.549287 20866 936 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000936'\n 2 \N 187.149.74.215 0b5f3a23-56cb-47a1-8f94-fb5bf766e4fe 2019-11-13 19:01:45.579541 20867 937 Product \N \N 4 User \N create ---\nsku: ACC-937\nname: DIA-0038\ndescription: DIADEMA DE CANUTILLO DORADO Y NEGRO\nprice_base: !ruby/object:BigDecimal 18:0.14502E3\nprice_sale: !ruby/object:BigDecimal 18:0.369E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0038.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-937 fue creado. 187.149.74.215 7e4d4a16-786b-417c-9df0-1513ab9eca90 2019-11-13 19:02:57.731457 20868 937 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000937'\n 2 \N 187.149.74.215 7e4d4a16-786b-417c-9df0-1513ab9eca90 2019-11-13 19:02:57.764813 20869 938 Product \N \N 4 User \N create ---\nsku: ACC-938\nname: DIA-0039\ndescription: DIADEMA DE MEZCLILLA CON PERLAS\nprice_base: !ruby/object:BigDecimal 18:0.4354E2\nprice_sale: !ruby/object:BigDecimal 18:0.149E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0039.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-938 fue creado. 187.149.74.215 e976a484-d623-46a5-b460-5f3ba2be34e9 2019-11-13 19:05:50.250725 20870 938 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000938'\n 2 \N 187.149.74.215 e976a484-d623-46a5-b460-5f3ba2be34e9 2019-11-13 19:05:50.277408 20871 939 Product \N \N 4 User \N create ---\nsku: ACC-939\nname: DIA-0040\ndescription: DIADEMA COM PIEDRAS NEGRAS Y GRISES\nprice_base: !ruby/object:BigDecimal 18:0.14954E3\nprice_sale: !ruby/object:BigDecimal 18:0.389E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0040.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-939 fue creado. 187.149.74.215 24f007c2-d159-4399-88bd-bca09d1d6359 2019-11-13 19:07:22.881238 20872 939 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000939'\n 2 \N 187.149.74.215 24f007c2-d159-4399-88bd-bca09d1d6359 2019-11-13 19:07:22.910205 20873 1411 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 580\namount: !ruby/object:BigDecimal 18:0.203334E4\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.204699E4\nstatus: 0\ndate_sale: 2019-11-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-735\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 11c9b83e-e71f-4716-afdd-dccbad6ec6df 2019-11-13 19:07:37.381016 20874 1301 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.74.215 11c9b83e-e71f-4716-afdd-dccbad6ec6df 2019-11-13 19:07:37.421843 20875 1297 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.74.215 11c9b83e-e71f-4716-afdd-dccbad6ec6df 2019-11-13 19:07:37.46607 20876 486 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 19 \N 187.149.74.215 11c9b83e-e71f-4716-afdd-dccbad6ec6df 2019-11-13 19:07:37.500234 20877 1411 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 fee375a7-8b79-4db7-bed7-0fd6cbc10d67 2019-11-13 19:08:00.749155 20878 1967 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 580\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.204699E4\nmove_type: '1'\nsale_id: 1411\ncardnumber: 923\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-735\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-735 187.149.74.215 fee375a7-8b79-4db7-bed7-0fd6cbc10d67 2019-11-13 19:08:00.77895 20879 1412 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 580\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2019-11-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-736\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 4cbf6e09-13b3-4587-a9f6-8a5dc17a6526 2019-11-13 19:09:45.962528 20880 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.34E2\n- !ruby/object:BigDecimal 18:0.33E2\n 3 \N 187.149.74.215 4cbf6e09-13b3-4587-a9f6-8a5dc17a6526 2019-11-13 19:09:45.988331 20881 1412 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 21cf5fa6-ace8-476e-b19d-5f86c6bd7563 2019-11-13 19:09:50.360344 20882 1968 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 580\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49E2\nmove_type: '1'\nsale_id: 1412\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-736\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-736 187.149.74.215 21cf5fa6-ace8-476e-b19d-5f86c6bd7563 2019-11-13 19:09:50.381511 20883 940 Product \N \N 4 User \N create ---\nsku: ACC-940\nname: DIA-0040\ndescription: DIADEMA NEGRA CON PIEDRAS DE COLORES\nprice_base: !ruby/object:BigDecimal 18:0.14954E3\nprice_sale: !ruby/object:BigDecimal 18:0.389E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0040.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-940 fue creado. 187.149.74.215 b9c4058b-0bb2-4d4d-b7c2-5c4b6e9372d3 2019-11-13 19:11:56.57998 20884 940 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000940'\n 2 \N 187.149.74.215 b9c4058b-0bb2-4d4d-b7c2-5c4b6e9372d3 2019-11-13 19:11:56.610682 20885 941 Product \N \N 4 User \N create ---\nsku: ACC-941\nname: DIA-0041\ndescription: DIADEMA CON PIEDRAS DE COLORES\nprice_base: !ruby/object:BigDecimal 18:0.10438E3\nprice_sale: !ruby/object:BigDecimal 18:0.259E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0041.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-941 fue creado. 187.149.74.215 d200da34-b4f5-40e7-9273-f4e628765e90 2019-11-13 19:14:20.287527 20886 941 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000941'\n 2 \N 187.149.74.215 d200da34-b4f5-40e7-9273-f4e628765e90 2019-11-13 19:14:20.316413 21072 26 User \N \N 26 User \N update ---\nunique_session_id:\n- dw2rswiZ2v5i1KtumdLQ\n- CLtUjJGLZPREeA5AD6F9\n 67 \N 187.149.74.215 da060499-e7e5-4d96-98e1-be5b2f586932 2019-11-14 18:33:55.45331 20887 942 Product \N \N 4 User \N create ---\nsku: ACC-942\nname: DIA-0042\ndescription: Diamante de cristal de moda diamante flor diadema retro señoras super\n flash diadema lateral ancha\nprice_base: !ruby/object:BigDecimal 18:0.9213E2\nprice_sale: !ruby/object:BigDecimal 18:0.189E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0042.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-942 fue creado. 187.149.74.215 d225f50f-52de-49ab-b3c2-afa43925336e 2019-11-13 19:15:33.910536 20888 942 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000942'\n 2 \N 187.149.74.215 d225f50f-52de-49ab-b3c2-afa43925336e 2019-11-13 19:15:33.94271 20889 943 Product \N \N 4 User \N create ---\nsku: ACC-943\nname: DIA-0043\ndescription: Diadema de cristal señoras taladro de cristal rhinestone super flash\n queen corona diadema\nprice_base: !ruby/object:BigDecimal 18:0.145E3\nprice_sale: !ruby/object:BigDecimal 18:0.389E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA-0043.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-943 fue creado. 187.149.74.215 1de7bcd2-c928-4165-b384-d13268cc0063 2019-11-13 19:17:33.845485 20890 943 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000943'\n 2 \N 187.149.74.215 1de7bcd2-c928-4165-b384-d13268cc0063 2019-11-13 19:17:33.881205 20891 190 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-29\namount: !ruby/object:BigDecimal 18:0.315542E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.315542E4\nobservations: ''\npurchase_date: 2019-11-13\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-29 por $ 3155.42 MXN creada. 187.149.74.215 89ec427d-da95-4b31-b896-7035d734677c 2019-11-13 19:17:41.547688 20892 939 Product \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 3 El producto DIA-0040 fue eliminado. 187.149.74.215 a3123fe4-2a27-4038-bcad-bc58cbb9cd55 2019-11-13 19:18:13.841884 20893 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-10 17:36:50.221819000 Z\n- &1 2019-11-12 23:45:40.299961000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-13 19:32:35.763282369 Z\nsign_in_count:\n- 30\n- 31\n 62 \N 187.149.74.215 7fe038a1-7c98-49b6-a52f-3b3981199767 2019-11-13 19:32:35.768894 20894 26 User \N \N 26 User \N update ---\nunique_session_id:\n- uzjnHyqAZjvmY8VkY-Vv\n- J9_v-hgyokwTRqgskzmd\n 63 \N 187.149.74.215 7fe038a1-7c98-49b6-a52f-3b3981199767 2019-11-13 19:32:35.781476 20895 300 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-11-13\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.74.215 39011b9b-eb91-44a3-91b2-2d1a353d411d 2019-11-13 19:44:20.226761 20896 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-11-10 22:05:47.854389000 Z\n- &1 2019-11-12 21:15:11.789857000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-13 19:44:54.958474362 Z\nsign_in_count:\n- 33\n- 34\n 68 \N 187.149.74.215 a4e8d159-49ba-490a-a575-3eabfbb42754 2019-11-13 19:44:54.963939 20897 25 User \N \N 25 User \N update ---\nunique_session_id:\n- AT4j7M1qaFS9q_kC9_y3\n- ykso-tYzvS4nHBgKQMDx\n 69 \N 187.149.74.215 a4e8d159-49ba-490a-a575-3eabfbb42754 2019-11-13 19:44:54.975269 20898 300 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-13\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.208173 20899 1303 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 940\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.23313 20900 1304 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 937\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.254706 20901 1305 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 935\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.273845 20902 1306 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 934\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.293891 20903 1307 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 933\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.332068 20904 1308 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 932\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.35527 20905 1309 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 929\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.382032 20906 1310 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 928\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.402475 20907 1311 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 927\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.421281 20908 1312 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 926\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.438893 20909 1313 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 925\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.456646 20910 1314 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 924\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.47515 20911 1315 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 923\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.493969 20912 1316 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 922\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.512206 20913 1317 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 920\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.530153 20914 1318 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 919\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.548319 20915 1319 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 918\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.567913 20916 1320 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 917\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.587251 20917 1321 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 915\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.607698 20918 1322 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 916\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.626909 20919 1323 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 913\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 81d5cf4e-e5cb-402e-9fb8-704b894c42e3 2019-11-13 19:45:13.644734 20920 1304 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.74.215 d8945858-b692-4cb7-a9ca-e00787b9be76 2019-11-13 20:00:29.616155 20921 301 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-11-13\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.74.215 cfcf1e82-0ac5-4124-a333-a8decba0fa43 2019-11-13 20:00:32.20346 20922 1969 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 579\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1219\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-68 189.186.130.34 435466b6-4fe0-46a4-8762-672040d98a22 2019-11-13 20:12:56.637827 20923 1219 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.130.34 cc366b7d-3f61-483b-a7b1-83eb9204d4ea 2019-11-13 20:12:58.35691 20924 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-11-11 18:33:19.118534000 Z\n- &1 2019-11-11 23:00:08.557697000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-13 20:30:03.003859307 Z\nsign_in_count:\n- 101\n- 102\n 204 \N 187.149.74.215 05c68c01-b653-468a-9848-00842f944bcb 2019-11-13 20:30:03.009982 20925 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 6w5csw8cQoAZMZrrXb45\n- UtWzknTodvW4uQ7ZDLhj\n 205 \N 187.149.74.215 05c68c01-b653-468a-9848-00842f944bcb 2019-11-13 20:30:03.023215 20926 302 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-11-13\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 187.149.74.215 195515c8-96dd-47f2-94f4-c8dd55fe6a8d 2019-11-13 20:46:03.91631 20927 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-12 23:45:40.299961000 Z\n- &1 2019-11-13 19:32:35.763282000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-13 20:46:39.179080308 Z\nsign_in_count:\n- 31\n- 32\n 64 \N 187.149.74.215 a53e5d94-76b0-4e30-ace7-46739cacdf4f 2019-11-13 20:46:39.184697 20928 26 User \N \N 26 User \N update ---\nunique_session_id:\n- J9_v-hgyokwTRqgskzmd\n- dw2rswiZ2v5i1KtumdLQ\n 65 \N 187.149.74.215 a53e5d94-76b0-4e30-ace7-46739cacdf4f 2019-11-13 20:46:39.199955 20929 302 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-13\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.74.215 5bc94b0f-9a32-475a-9f3e-6ee8a3427652 2019-11-13 20:47:26.675633 20930 1324 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 943\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 5bc94b0f-9a32-475a-9f3e-6ee8a3427652 2019-11-13 20:47:26.698384 20931 1325 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 942\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 5bc94b0f-9a32-475a-9f3e-6ee8a3427652 2019-11-13 20:47:26.72053 20932 1326 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 940\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 5bc94b0f-9a32-475a-9f3e-6ee8a3427652 2019-11-13 20:47:26.762169 20933 1327 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 938\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 5bc94b0f-9a32-475a-9f3e-6ee8a3427652 2019-11-13 20:47:26.783267 21141 718 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.50.168 36dc3220-042d-4016-a792-6d39ca2e86c8 2019-11-15 17:38:55.265819 20934 1328 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 936\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 5bc94b0f-9a32-475a-9f3e-6ee8a3427652 2019-11-13 20:47:26.80508 20935 1329 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 935\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 5bc94b0f-9a32-475a-9f3e-6ee8a3427652 2019-11-13 20:47:26.826035 20936 1330 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 934\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 5bc94b0f-9a32-475a-9f3e-6ee8a3427652 2019-11-13 20:47:26.84743 20937 1331 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 929\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 5bc94b0f-9a32-475a-9f3e-6ee8a3427652 2019-11-13 20:47:26.868023 20938 1332 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 928\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 5bc94b0f-9a32-475a-9f3e-6ee8a3427652 2019-11-13 20:47:26.8892 20939 1333 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 927\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 5bc94b0f-9a32-475a-9f3e-6ee8a3427652 2019-11-13 20:47:26.912533 20940 1334 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 926\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 5bc94b0f-9a32-475a-9f3e-6ee8a3427652 2019-11-13 20:47:26.935115 20941 1335 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 925\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 5bc94b0f-9a32-475a-9f3e-6ee8a3427652 2019-11-13 20:47:26.957607 20942 1336 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 922\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 5bc94b0f-9a32-475a-9f3e-6ee8a3427652 2019-11-13 20:47:26.98026 20943 1337 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 920\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 5bc94b0f-9a32-475a-9f3e-6ee8a3427652 2019-11-13 20:47:27.002095 20944 1338 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 919\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 5bc94b0f-9a32-475a-9f3e-6ee8a3427652 2019-11-13 20:47:27.023084 20945 1339 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 917\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 5bc94b0f-9a32-475a-9f3e-6ee8a3427652 2019-11-13 20:47:27.04373 20946 1340 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 915\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 5bc94b0f-9a32-475a-9f3e-6ee8a3427652 2019-11-13 20:47:27.065967 20947 1341 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 914\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 5bc94b0f-9a32-475a-9f3e-6ee8a3427652 2019-11-13 20:47:27.089075 20948 1342 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 913\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 5bc94b0f-9a32-475a-9f3e-6ee8a3427652 2019-11-13 20:47:27.109996 20949 301 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-13\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.74.215 4830cb2c-26a8-4659-96d3-3c8c85bf5698 2019-11-13 20:47:39.013431 20950 1343 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 937\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 4830cb2c-26a8-4659-96d3-3c8c85bf5698 2019-11-13 20:47:39.043668 20951 1970 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 579\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2598E4\nmove_type: '1'\nsale_id: 1274\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.27E4\nchange: !ruby/object:BigDecimal 18:0.102E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-82 189.186.130.34 022acc68-96ac-4695-8532-ed13a033347f 2019-11-13 20:53:24.862149 20952 1274 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.130.34 e88179e0-04e2-4fd9-8844-1055921a736f 2019-11-13 20:53:26.22912 20953 1413 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 580\namount: !ruby/object:BigDecimal 18:0.214E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.214E3\nstatus: 0\ndate_sale: 2019-11-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-737\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 29345262-3f69-4af1-9f93-e23522adf954 2019-11-13 21:19:48.089477 20954 1305 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.74.215 29345262-3f69-4af1-9f93-e23522adf954 2019-11-13 21:19:48.120753 20955 1318 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.74.215 29345262-3f69-4af1-9f93-e23522adf954 2019-11-13 21:19:48.151248 20956 1413 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 f024a4c3-35c9-41b5-b5da-75630223a1e1 2019-11-13 21:20:00.357635 21022 1355 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 930\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 2685d453-ea5d-4c27-9d85-2c7f7164336f 2019-11-14 00:55:55.926 20957 1971 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 580\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.214E3\nmove_type: '1'\nsale_id: 1413\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-737\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.214E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-737 187.149.74.215 f024a4c3-35c9-41b5-b5da-75630223a1e1 2019-11-13 21:20:00.383474 20958 191 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-30\namount: !ruby/object:BigDecimal 18:0.4703E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4703E2\nobservations: ''\npurchase_date: 2019-11-13\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-30 por $ 47.03 MXN creada. 187.149.74.215 bcc04a95-f169-4ce4-a59c-322e718e29cf 2019-11-13 21:26:33.087989 20959 192 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-31\namount: !ruby/object:BigDecimal 18:0.44E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.44E2\nobservations: ''\npurchase_date: 2019-11-13\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-31 por $ 44.0 MXN creada. 187.149.74.215 17b03011-ee91-46e5-b8a9-204e19a8652e 2019-11-13 21:28:01.702419 20960 303 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-11-13\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 187.149.74.215 a7ef51e5-fe3d-4453-947e-881e08c1c3f0 2019-11-13 21:28:22.356093 20961 303 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-13\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.74.215 415be5ab-3931-4c17-a555-da3a5516203f 2019-11-13 21:28:57.92883 20962 1344 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 916\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 415be5ab-3931-4c17-a555-da3a5516203f 2019-11-13 21:28:57.95687 20963 1345 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 924\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.74.215 415be5ab-3931-4c17-a555-da3a5516203f 2019-11-13 21:28:57.987642 20964 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-13 02:38:55.445098000 Z\n- &1 2019-11-13 17:52:31.771119000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-13 21:48:44.323160265 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934287\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946335\n mask_addr: 4294967295\nsign_in_count:\n- 893\n- 894\n 1788 \N 200.68.182.95 233d045e-51bd-453a-86d1-a0692feb3b91 2019-11-13 21:48:44.333134 20965 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tWECHLxBsN-zre4s_F7E\n- AbChDn9xyeoZfGp8qjYD\n 1789 \N 200.68.182.95 233d045e-51bd-453a-86d1-a0692feb3b91 2019-11-13 21:48:44.35428 20966 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-08 18:01:06.098692000 Z\n- &1 2019-11-11 17:14:06.772247000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-13 21:59:31.139424147 Z\nsign_in_count:\n- 16\n- 17\n 34 \N 187.149.74.215 5b82c858-7be2-4f8d-aeca-03caf43b6c1a 2019-11-13 21:59:31.167575 20967 27 User \N \N 27 User \N update ---\nunique_session_id:\n- _4x9TKxuyiBUzkrsZAeQ\n- sJhhH-fCdbE27fNY4tbL\n 35 \N 187.149.74.215 5b82c858-7be2-4f8d-aeca-03caf43b6c1a 2019-11-13 21:59:31.18699 20968 1414 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 580\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-11-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-738\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 619130d4-b356-4837-8758-b6ce89c0897b 2019-11-13 22:19:20.244956 20969 1075 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.74.215 619130d4-b356-4837-8758-b6ce89c0897b 2019-11-13 22:19:20.289433 20970 1414 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 64195294-7574-4d4d-ba76-041e6653c255 2019-11-13 22:19:24.315955 20971 1972 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 580\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 1414\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-738\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-738 187.149.74.215 64195294-7574-4d4d-ba76-041e6653c255 2019-11-13 22:19:24.337257 20972 237 Customer \N \N 2 User \N create ---\nnick_name: FABIOLA LANDAVERDE\nphone: "(667) 431-4476"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente FABIOLA LANDAVERDE fue registrado. 187.149.74.215 6bea8d55-fc7a-4b9e-ae89-33b5ec4200cc 2019-11-13 22:30:19.699762 20973 1415 Sale \N \N 2 User \N create ---\ncustomer_id: 237\nuser_id: 2\nopen_cash_register_id: 580\namount: !ruby/object:BigDecimal 18:0.31E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.31E3\nstatus: 0\ndate_sale: 2019-11-13\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-739\nexpiration_date: 2019-12-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 b328cf5d-d3c0-4e01-9861-2a2c893e8a01 2019-11-13 22:30:41.296432 20974 1321 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.74.215 b328cf5d-d3c0-4e01-9861-2a2c893e8a01 2019-11-13 22:30:41.321967 20975 1973 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 580\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1415\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-739\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-739 187.149.74.215 d89d6a5d-3180-4cad-9eb6-a4102596c1a8 2019-11-13 22:30:49.590266 20976 1415 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.74.215 0253e1dd-cb1a-418d-9c5b-30c2f161d001 2019-11-13 22:30:53.232225 21023 1356 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 928\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 2685d453-ea5d-4c27-9d85-2c7f7164336f 2019-11-14 00:55:55.945818 20977 1974 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 580\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.629E3\nmove_type: '1'\nsale_id: 1375\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.629E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-716 187.149.74.215 c1d98770-e14d-48be-a048-9448b509462c 2019-11-13 22:32:28.377513 20978 1375 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.74.215 de41ecfe-5b44-4f3c-b966-6bfb9e8dee90 2019-11-13 22:32:29.417332 20979 1126 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.74.215 3442ab41-0a33-4e77-9594-c67b10c1f1ab 2019-11-13 22:36:14.860812 20980 304 Transfer \N \N 1 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-11-13\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.74.215 978a0b59-6fab-40eb-a501-5e258c769de1 2019-11-13 22:36:19.244462 20981 304 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-13\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.74.215 e9423e2c-0da8-4a54-b6a8-5d8f5182e8de 2019-11-13 22:36:47.879682 20982 1302 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.74.215 e9423e2c-0da8-4a54-b6a8-5d8f5182e8de 2019-11-13 22:36:47.896471 20983 1416 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 580\namount: !ruby/object:BigDecimal 18:0.2367E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2367E4\nstatus: 0\ndate_sale: 2019-11-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-740\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 9831db1e-1267-4a09-a4ed-806edccffeea 2019-11-13 22:38:01.23981 20984 1246 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.74.215 9831db1e-1267-4a09-a4ed-806edccffeea 2019-11-13 22:38:01.263757 20985 1302 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.74.215 9831db1e-1267-4a09-a4ed-806edccffeea 2019-11-13 22:38:01.284357 20986 1274 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.74.215 9831db1e-1267-4a09-a4ed-806edccffeea 2019-11-13 22:38:01.304721 20987 1416 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 71a677ef-b1e0-4a95-a7f7-bb05019d478c 2019-11-13 22:39:44.686522 20988 1975 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 580\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.2367E4\nmove_type: '1'\nsale_id: 1416\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-740\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: RT8N\ncustomer_account: '6378'\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-740 187.149.74.215 71a677ef-b1e0-4a95-a7f7-bb05019d478c 2019-11-13 22:39:44.705569 20989 1417 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 580\namount: !ruby/object:BigDecimal 18:0.2276E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2276E4\nstatus: 0\ndate_sale: 2019-11-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-741\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 44f6fd75-3662-4df2-b3a6-d1368475bf82 2019-11-13 22:43:01.56482 20990 1246 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.74.215 44f6fd75-3662-4df2-b3a6-d1368475bf82 2019-11-13 22:43:01.593794 20991 1260 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.74.215 44f6fd75-3662-4df2-b3a6-d1368475bf82 2019-11-13 22:43:01.614656 20992 1304 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.74.215 44f6fd75-3662-4df2-b3a6-d1368475bf82 2019-11-13 22:43:01.634709 20993 1317 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.74.215 44f6fd75-3662-4df2-b3a6-d1368475bf82 2019-11-13 22:43:01.654785 20994 1417 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 071df1c1-c9b9-45b0-8c74-5f7160723a01 2019-11-13 22:47:41.895117 20995 1976 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 580\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.2276E4\nmove_type: '1'\nsale_id: 1417\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-741\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: RT8U\ncustomer_account: '8761'\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-741 187.149.74.215 071df1c1-c9b9-45b0-8c74-5f7160723a01 2019-11-13 22:47:41.914632 20996 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-13 17:52:31.771119000 Z\n- &1 2019-11-13 21:48:44.323160000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-13 23:39:56.357188345 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946335\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946335\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143083\n mask_addr: 4294967295\nsign_in_count:\n- 894\n- 895\n 1790 \N 189.186.232.171 8f9a84b4-04c1-4832-b737-585038719aaf 2019-11-13 23:39:56.364753 20997 4 User \N \N 4 User \N update ---\nunique_session_id:\n- AbChDn9xyeoZfGp8qjYD\n- szxNnqQC3Uo9byEFwQvz\n 1791 \N 189.186.232.171 8f9a84b4-04c1-4832-b737-585038719aaf 2019-11-13 23:39:56.382475 20998 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-11-12 21:15:11.789857000 Z\n- &1 2019-11-13 19:44:54.958474000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 00:08:39.285679405 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143083\n mask_addr: 4294967295\nsign_in_count:\n- 34\n- 35\n 70 \N 189.186.232.171 fb3cf558-7b11-42d7-8308-ddde7e30e3e4 2019-11-14 00:08:39.292457 20999 25 User \N \N 25 User \N update ---\nunique_session_id:\n- ykso-tYzvS4nHBgKQMDx\n- MryqGVC2RxMoeupHYsmA\n 71 \N 189.186.232.171 fb3cf558-7b11-42d7-8308-ddde7e30e3e4 2019-11-14 00:08:39.306842 21024 1357 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 927\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 2685d453-ea5d-4c27-9d85-2c7f7164336f 2019-11-14 00:55:55.966035 21142 1425 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.50.168 f2d60fe7-7902-42ac-b965-88057bfdfdfc 2019-11-15 17:39:13.426378 21000 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-13 21:48:44.323160000 Z\n- &1 2019-11-13 23:39:56.357188000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 00:20:46.450433778 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946335\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143083\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143083\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946335\n mask_addr: 4294967295\nsign_in_count:\n- 895\n- 896\n 1792 \N 200.68.182.95 98f2de1a-4c33-41f2-b951-c1f850bb3e95 2019-11-14 00:20:46.459312 21001 4 User \N \N 4 User \N update ---\nunique_session_id:\n- szxNnqQC3Uo9byEFwQvz\n- JBz_2AHNKWptsMNKss-e\n 1793 \N 200.68.182.95 98f2de1a-4c33-41f2-b951-c1f850bb3e95 2019-11-14 00:20:46.479053 21002 581 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.794E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 794.0 187.149.74.215 485d7717-368c-4bbe-95d5-9766f82703a9 2019-11-14 00:33:37.230543 21003 1418 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 581\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-11-13\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-563\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 951febce-b4fc-46e6-80f4-5d5ba778ed6d 2019-11-14 00:34:23.683594 21004 1281 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 187.149.74.215 951febce-b4fc-46e6-80f4-5d5ba778ed6d 2019-11-14 00:34:23.729739 21005 1418 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 44a4a1f2-45c8-4ed9-af53-b6765bb3d401 2019-11-14 00:34:34.061916 21006 1977 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 581\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1418\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-563\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-563 187.149.74.215 44a4a1f2-45c8-4ed9-af53-b6765bb3d401 2019-11-14 00:34:34.082119 21007 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-13 23:39:56.357188000 Z\n- &1 2019-11-14 00:20:46.450433000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 00:48:11.455503487 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143083\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946335\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946335\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\nsign_in_count:\n- 896\n- 897\n 1794 \N 189.186.130.34 f4485353-6df5-4a2a-b6cb-dc969781e998 2019-11-14 00:48:11.469129 21008 4 User \N \N 4 User \N update ---\nunique_session_id:\n- JBz_2AHNKWptsMNKss-e\n- Bz4nDzysxMLCjkECkUq2\n 1795 \N 189.186.130.34 f4485353-6df5-4a2a-b6cb-dc969781e998 2019-11-14 00:48:11.496099 21009 305 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-11-13\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.130.34 dd133e7e-ec63-4a06-aed8-815c79468078 2019-11-14 00:54:23.341995 21010 193 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-18\namount: !ruby/object:BigDecimal 18:0.4703E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4703E2\nobservations: ''\npurchase_date: 2019-11-13\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-18 por $ 47.03 MXN creada. 189.186.130.34 0cbf6503-10d0-457a-b302-379178c24e86 2019-11-14 00:55:25.382335 21011 1346 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 924\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 0cbf6503-10d0-457a-b302-379178c24e86 2019-11-14 00:55:25.407464 21012 291 Transfer \N \N 23 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 23\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-13\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.130.34 df7bc16a-f736-47ac-b9a6-daec31bde85e 2019-11-14 00:55:46.41627 21013 1347 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 455\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 df7bc16a-f736-47ac-b9a6-daec31bde85e 2019-11-14 00:55:46.437485 21014 1348 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 456\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 df7bc16a-f736-47ac-b9a6-daec31bde85e 2019-11-14 00:55:46.4585 21015 1349 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 460\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 df7bc16a-f736-47ac-b9a6-daec31bde85e 2019-11-14 00:55:46.48087 21016 305 Transfer \N \N 23 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 23\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-13\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.130.34 2685d453-ea5d-4c27-9d85-2c7f7164336f 2019-11-14 00:55:55.778171 21017 1350 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 933\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 2685d453-ea5d-4c27-9d85-2c7f7164336f 2019-11-14 00:55:55.797875 21018 1351 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 942\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 2685d453-ea5d-4c27-9d85-2c7f7164336f 2019-11-14 00:55:55.81883 21019 1352 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 936\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 2685d453-ea5d-4c27-9d85-2c7f7164336f 2019-11-14 00:55:55.843843 21020 1353 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 932\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 2685d453-ea5d-4c27-9d85-2c7f7164336f 2019-11-14 00:55:55.869462 21021 1354 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 931\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 2685d453-ea5d-4c27-9d85-2c7f7164336f 2019-11-14 00:55:55.891164 21025 1358 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 921\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 2685d453-ea5d-4c27-9d85-2c7f7164336f 2019-11-14 00:55:55.985744 21026 1359 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 919\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 2685d453-ea5d-4c27-9d85-2c7f7164336f 2019-11-14 00:55:56.006942 21027 1360 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 914\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 2685d453-ea5d-4c27-9d85-2c7f7164336f 2019-11-14 00:55:56.02734 21028 1361 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 913\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.130.34 2685d453-ea5d-4c27-9d85-2c7f7164336f 2019-11-14 00:55:56.047163 21029 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 00:20:46.450433000 Z\n- &1 2019-11-14 00:48:11.455503000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 01:00:15.881165377 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946335\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\nsign_in_count:\n- 897\n- 898\n 1796 \N 189.186.130.34 bf0c8639-c0c5-4a8d-a703-1c8d586969f1 2019-11-14 01:00:15.892687 21030 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Bz4nDzysxMLCjkECkUq2\n- ih7ipFxytwvus9jMshxj\n 1797 \N 189.186.130.34 bf0c8639-c0c5-4a8d-a703-1c8d586969f1 2019-11-14 01:00:15.914385 21031 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 00:48:11.455503000 Z\n- &1 2019-11-14 01:00:15.881165000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 01:37:29.904162750 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946335\n mask_addr: 4294967295\nsign_in_count:\n- 898\n- 899\n 1798 \N 200.68.182.95 4d53e114-9eb9-4374-a20c-2c410b0ff51b 2019-11-14 01:37:29.919299 21032 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ih7ipFxytwvus9jMshxj\n- hgWHCzQpd_uCRvyzne5t\n 1799 \N 200.68.182.95 4d53e114-9eb9-4374-a20c-2c410b0ff51b 2019-11-14 01:37:29.950362 21033 581 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 580\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.878099E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.101E4\nphysical_cash: !ruby/object:BigDecimal 18:0.301E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.74.215 4222bbb1-eba1-4ec4-99eb-f9dc50d948f7 2019-11-14 02:53:53.856285 21034 580 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 4222bbb1-eba1-4ec4-99eb-f9dc50d948f7 2019-11-14 02:53:53.870867 21035 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-11-11 18:15:57.271313000 Z\n- &1 2019-11-12 03:04:49.850243000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 03:00:49.627267629 Z\nsign_in_count:\n- 42\n- 43\n 87 \N 189.186.130.34 15d3a4b8-f074-405d-9e36-92cf82dbd15b 2019-11-14 03:00:49.634389 21036 21 User \N \N 21 User \N update ---\nunique_session_id:\n- ayxd91jBeMNBkvM9s5d6\n- 6KRZBMuxEANJiK5xchA2\n 88 \N 189.186.130.34 15d3a4b8-f074-405d-9e36-92cf82dbd15b 2019-11-14 03:00:49.648052 21037 582 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 581\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.699E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.493E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1493E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.74.215 959198c0-926c-4f84-8075-494a14208473 2019-11-14 03:00:52.474203 21038 581 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.74.215 959198c0-926c-4f84-8075-494a14208473 2019-11-14 03:00:52.48642 21039 238 Customer \N \N 21 User \N create ---\nnick_name: CARMEN AISPURO\nphone: "(667) 349-4125"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CARMEN AISPURO fue registrado. 189.186.130.34 2dee5146-e07e-4cf4-922c-fb2cfe705bb6 2019-11-14 03:01:48.626745 21040 1419 Sale \N \N 21 User \N create ---\ncustomer_id: 238\nuser_id: 21\nopen_cash_register_id: 579\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-11-13\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-113\nexpiration_date: 2019-12-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 68afad5c-5116-4f7b-a269-51b55b25fdec 2019-11-14 03:02:05.570929 21041 988 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.130.34 68afad5c-5116-4f7b-a269-51b55b25fdec 2019-11-14 03:02:05.601342 21042 1978 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 579\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 1419\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-113\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-113 189.186.130.34 5295a710-76bb-4559-9f84-d3a2cb01eebe 2019-11-14 03:02:16.214663 21043 1419 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.130.34 a0712503-e1c2-4813-a8bc-977d8e468054 2019-11-14 03:02:17.181248 21044 1420 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 579\namount: !ruby/object:BigDecimal 18:0.149E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.149E3\nstatus: 0\ndate_sale: 2019-11-13\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-114\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 9f85fd9a-6802-4db3-aeaf-704c7fb503a6 2019-11-14 03:02:46.021906 21045 1357 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.130.34 9f85fd9a-6802-4db3-aeaf-704c7fb503a6 2019-11-14 03:02:46.050564 21046 1420 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.130.34 36dcb2e8-d0cf-4eee-9e1a-9a6b3bc39cdc 2019-11-14 03:02:51.747176 21047 1979 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 579\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.149E3\nmove_type: '1'\nsale_id: 1420\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-114\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.149E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-114 189.186.130.34 36dcb2e8-d0cf-4eee-9e1a-9a6b3bc39cdc 2019-11-14 03:02:51.768934 21048 1979 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 579\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.149E3\nmove_type: '1'\nsale_id: 1420\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-114\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.149E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.130.34 2461c1a7-5d67-4867-93ab-cdf9d126c16a 2019-11-14 03:02:58.223026 21049 1980 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 579\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.149E3\nmove_type: '1'\nsale_id: 1420\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-114\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-114 189.186.130.34 1ff6706a-eeec-4cc9-b12f-289c67a883db 2019-11-14 03:03:03.168995 21050 212 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 579\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: COMPRA DE COSTURERO\nexpense_date: 2019-11-13\nexpense_code: PV3-E-10\n 1 Egreso por 50.0 registrado 189.186.130.34 41be1e8d-4353-4c69-9064-62c65a30e803 2019-11-14 03:16:02.335321 21051 1981 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 579\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 212\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.130.34 41be1e8d-4353-4c69-9064-62c65a30e803 2019-11-14 03:16:02.35502 21052 583 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 579\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.4944E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.5E4\ncash_fund: !ruby/object:BigDecimal 18:0.1025E4\nphysical_cash: !ruby/object:BigDecimal 18:0.6025E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.130.34 455d7d97-cabc-45ef-9a46-9b67dcff4c95 2019-11-14 03:18:34.464253 21053 579 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.130.34 455d7d97-cabc-45ef-9a46-9b67dcff4c95 2019-11-14 03:18:34.478131 21054 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-12 16:58:05.430148000 Z\n- &1 2019-11-13 17:00:19.540596000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 17:11:12.248905211 Z\nsign_in_count:\n- 61\n- 62\n 124 \N 189.186.130.34 f7d5d102-c39e-45db-bd78-c7827f600e96 2019-11-14 17:11:12.278874 21055 23 User \N \N 23 User \N update ---\nunique_session_id:\n- U-Q6-LysMspsKQxx3-TM\n- CxZWG7dC9VSiQydLjwxB\n 125 \N 189.186.130.34 f7d5d102-c39e-45db-bd78-c7827f600e96 2019-11-14 17:11:12.298589 21056 582 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1025E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1025.0 189.186.130.34 2fd1fac3-2f7a-49e7-8ef2-6de6520622ad 2019-11-14 17:12:45.920974 21057 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-11-12 03:04:49.850243000 Z\n- &1 2019-11-14 03:00:49.627267000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 17:23:26.283995444 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 43\n- 44\n 89 \N 187.149.74.215 9b2d15aa-b587-446c-8feb-386774145cf5 2019-11-14 17:23:26.29131 21058 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 6KRZBMuxEANJiK5xchA2\n- 8XZLuozoWSJioixmb4YP\n 90 \N 187.149.74.215 9b2d15aa-b587-446c-8feb-386774145cf5 2019-11-14 17:23:26.307371 21059 826 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 4 \N 187.149.74.215 81a84f9c-5a28-4124-8a77-30b29bdf1ab8 2019-11-14 17:25:43.176205 21060 871 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.74.215 db3ca57a-823a-4363-943d-0c162b6945c5 2019-11-14 17:25:56.907612 21061 826 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.1E2\n 5 \N 187.149.74.215 f0629f63-22a1-49bd-90a8-6a2d4cfd8855 2019-11-14 17:26:00.311187 21062 871 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.74.215 a602d031-3a29-4fe9-b7c4-e6999bab967a 2019-11-14 17:26:05.746256 21063 306 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-11-14\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.74.215 7922e823-83d3-4c67-888f-dcecb2ca880c 2019-11-14 17:26:15.028255 21064 826 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 6 \N 187.149.74.215 28eae5c1-a2e7-4667-b41b-56a367f5cbab 2019-11-14 17:26:37.247578 21065 826 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 187.149.74.215 9e503417-1fa2-4c04-989f-0b0f6ae71ef6 2019-11-14 17:26:40.454919 21066 858 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.74.215 9bcc1169-d665-47e5-90e8-beeb5a22d263 2019-11-14 17:26:54.843066 21067 858 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.74.215 501efdec-004c-4d61-be73-fd494a8faf0c 2019-11-14 17:26:57.713867 21068 307 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2019-11-14\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 187.149.74.215 2ec620ef-87e3-4fb5-a2ba-bf4df6838e18 2019-11-14 17:26:58.386864 21069 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 01:00:15.881165000 Z\n- &1 2019-11-14 01:37:29.904162000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 18:22:02.397576321 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946335\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946335\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 899\n- 900\n 1800 \N 187.149.74.215 8afc75ec-e6d7-43b2-8c2c-da956154283e 2019-11-14 18:22:02.415316 21070 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hgWHCzQpd_uCRvyzne5t\n- mDMc92MUWjdiKmCdGAoU\n 1801 \N 187.149.74.215 8afc75ec-e6d7-43b2-8c2c-da956154283e 2019-11-14 18:22:02.446143 21071 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-13 19:32:35.763282000 Z\n- &1 2019-11-13 20:46:39.179080000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 18:33:55.421635664 Z\nsign_in_count:\n- 32\n- 33\n 66 \N 187.149.74.215 da060499-e7e5-4d96-98e1-be5b2f586932 2019-11-14 18:33:55.43239 21073 583 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.493E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 493.0 187.149.74.215 ac13f6c6-16df-48b2-bdc8-80183a0fb3de 2019-11-14 18:34:15.523088 21074 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 01:37:29.904162000 Z\n- &1 2019-11-14 18:22:02.397576000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 18:48:23.067403853 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946335\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934407\n mask_addr: 4294967295\nsign_in_count:\n- 900\n- 901\n 1802 \N 200.68.135.199 359dbb0c-7136-4ea4-9137-60c05ab3182b 2019-11-14 18:48:23.075292 21075 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mDMc92MUWjdiKmCdGAoU\n- bzxx8J54U7SX2kyngMXZ\n 1803 \N 200.68.135.199 359dbb0c-7136-4ea4-9137-60c05ab3182b 2019-11-14 18:48:23.091382 21076 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 18:22:02.397576000 Z\n- &1 2019-11-14 18:48:23.067403000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 19:26:35.477363939 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934407\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934407\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\nsign_in_count:\n- 901\n- 902\n 1804 \N 187.149.39.79 60ca906b-1367-404d-b0a4-1413425bcf8a 2019-11-14 19:26:35.486023 21077 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bzxx8J54U7SX2kyngMXZ\n- 16KHQyQ8zY3qxQb_PvKV\n 1805 \N 187.149.39.79 60ca906b-1367-404d-b0a4-1413425bcf8a 2019-11-14 19:26:35.504279 21078 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-11-13 19:44:54.958474000 Z\n- &1 2019-11-14 00:08:39.285679000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 19:36:06.598448560 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143083\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143083\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 35\n- 36\n 72 \N 187.149.74.215 4993909f-7793-420c-8cca-fb4be6c21bc6 2019-11-14 19:36:06.606832 21079 25 User \N \N 25 User \N update ---\nunique_session_id:\n- MryqGVC2RxMoeupHYsmA\n- meCopYo4eY1PLtAW4g8S\n 73 \N 187.149.74.215 4993909f-7793-420c-8cca-fb4be6c21bc6 2019-11-14 19:36:06.621709 21080 584 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.101E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1010.0 187.149.74.215 f9445b09-3e13-4d57-b609-d492fe406d11 2019-11-14 19:36:21.592125 21081 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-13 20:46:39.179080000 Z\n- &1 2019-11-14 18:33:55.421635000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 19:36:58.445104566 Z\nsign_in_count:\n- 33\n- 34\n 68 \N 187.149.74.215 56cc9eb9-bda6-44af-95bd-36b1d7ca5d27 2019-11-14 19:36:58.451101 21082 26 User \N \N 26 User \N update ---\nunique_session_id:\n- CLtUjJGLZPREeA5AD6F9\n- rC8_n8AmfPBtySgUcRM-\n 69 \N 187.149.74.215 56cc9eb9-bda6-44af-95bd-36b1d7ca5d27 2019-11-14 19:36:58.462987 21083 1982 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 583\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1294\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-520 187.149.74.215 b1e6c4ae-843e-4670-9bfb-6b30557715c0 2019-11-14 19:38:27.838016 21084 1294 Sale \N \N 26 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.74.215 fc38f3fb-a372-4409-b2f5-9054f7d90119 2019-11-14 19:38:43.372948 21085 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 18:48:23.067403000 Z\n- &1 2019-11-14 19:26:35.477363000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 19:57:39.409383524 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934407\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 902\n- 903\n 1806 \N 187.149.74.215 eb65f1df-208f-423f-88e8-580ee7ca6427 2019-11-14 19:57:39.420665 21086 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 16KHQyQ8zY3qxQb_PvKV\n- 7qgWcSRstkUtKZ1pfxaG\n 1807 \N 187.149.74.215 eb65f1df-208f-423f-88e8-580ee7ca6427 2019-11-14 19:57:39.444467 21087 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-12 20:29:58.569715000 Z\n- &1 2019-11-13 17:09:42.471529000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 20:07:38.088432042 Z\nsign_in_count:\n- 376\n- 377\n 757 \N 187.149.74.215 4c1248a0-33a3-45a0-9281-ddc8c0f6db37 2019-11-14 20:07:38.095658 21088 2 User \N \N 2 User \N update ---\nunique_session_id:\n- a-jjsNiZBYsmjxCHyyFv\n- iHJBx2P-2sj1c3Pz461B\n 758 \N 187.149.74.215 4c1248a0-33a3-45a0-9281-ddc8c0f6db37 2019-11-14 20:07:38.111306 21089 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 19:26:35.477363000 Z\n- &1 2019-11-14 19:57:39.409383000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 20:39:57.363166420 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934407\n mask_addr: 4294967295\nsign_in_count:\n- 903\n- 904\n 1808 \N 200.68.135.199 78ec7098-7739-43fa-8faa-1f065013fa2d 2019-11-14 20:39:57.374012 21090 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7qgWcSRstkUtKZ1pfxaG\n- Z54xty1vSV7RmvY76-zx\n 1809 \N 200.68.135.199 78ec7098-7739-43fa-8faa-1f065013fa2d 2019-11-14 20:39:57.394086 21091 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 19:57:39.409383000 Z\n- &1 2019-11-14 20:39:57.363166000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 21:04:51.336388942 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934407\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934407\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\nsign_in_count:\n- 904\n- 905\n 1810 \N 187.149.74.215 7c0f7890-b4a7-408d-b13e-5cc553e98a97 2019-11-14 21:04:51.345227 21092 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Z54xty1vSV7RmvY76-zx\n- sP33XfyxC9YsSGQL62w8\n 1811 \N 187.149.74.215 7c0f7890-b4a7-408d-b13e-5cc553e98a97 2019-11-14 21:04:51.362173 21293 1324 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.64.72 970c8a73-060d-404d-9235-ed2a988402c8 2019-11-16 20:35:33.645407 21294 1329 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.64.72 3bba29b6-781d-4827-9fba-ba82007c7c4e 2019-11-16 20:36:11.829607 21093 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 20:39:57.363166000 Z\n- &1 2019-11-14 21:04:51.336388000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 21:22:34.842526006 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934407\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934407\n mask_addr: 4294967295\nsign_in_count:\n- 905\n- 906\n 1812 \N 200.68.135.199 d7f00f7b-9a79-4eba-93fd-06f849dde900 2019-11-14 21:22:34.850718 21094 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sP33XfyxC9YsSGQL62w8\n- iwoxzEsJekWkg1ovj82A\n 1813 \N 200.68.135.199 d7f00f7b-9a79-4eba-93fd-06f849dde900 2019-11-14 21:22:34.867369 21095 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-11 17:14:06.772247000 Z\n- &1 2019-11-13 21:59:31.139424000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 21:45:16.763474705 Z\nsign_in_count:\n- 17\n- 18\n 36 \N 187.149.74.215 57a7462d-85d1-4c50-a8f4-18eda5512382 2019-11-14 21:45:16.771793 21096 27 User \N \N 27 User \N update ---\nunique_session_id:\n- sJhhH-fCdbE27fNY4tbL\n- yJvU4hbMbva2HzitjkvF\n 37 \N 187.149.74.215 57a7462d-85d1-4c50-a8f4-18eda5512382 2019-11-14 21:45:16.789273 21097 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-11-11 18:32:19.444649000 Z\n- &1 2019-11-12 02:33:20.938444000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 22:15:07.554740530 Z\nsign_in_count:\n- 15\n- 16\n 32 \N 187.149.74.215 184fe6b9-807c-46d7-b908-e55507b309a5 2019-11-14 22:15:07.563239 21098 24 User \N \N 24 User \N update ---\nunique_session_id:\n- Ey1Rx3n1gVUkdS9eNDGR\n- S1iJUMey-kWbMidFwYqx\n 33 \N 187.149.74.215 184fe6b9-807c-46d7-b908-e55507b309a5 2019-11-14 22:15:07.582372 21099 16 ProductsReturn \N \N 24 User \N create ---\nsale_id: 1393\nuser_id: 24\nreturn_code: PV2-D-8\npointsale_id: 2\nnew_amount: !ruby/object:BigDecimal 18:0.958E3\nreturned_amount: !ruby/object:BigDecimal 18:0.899E3\ndifference_amount: !ruby/object:BigDecimal 18:0.59E2\nis_money_returned: false\n 1 devolución PV2-D-8 creada. 187.149.74.215 1bb861ea-7df3-469e-ab57-1f32d1f7c4c4 2019-11-14 22:17:48.48777 21100 1288 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 187.149.74.215 1bb861ea-7df3-469e-ab57-1f32d1f7c4c4 2019-11-14 22:17:48.515768 21101 1221 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.74.215 1bb861ea-7df3-469e-ab57-1f32d1f7c4c4 2019-11-14 22:17:48.543798 21102 1099 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.74.215 1bb861ea-7df3-469e-ab57-1f32d1f7c4c4 2019-11-14 22:17:48.568032 21103 1983 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 583\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.59E2\nmove_type: '1'\nsale_id: 1393\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.59E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 16\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV2-D-8 187.149.74.215 764c7869-0a32-47ba-8cbe-7ed2fbad8a8e 2019-11-14 22:17:54.658558 21104 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-13 21:59:31.139424000 Z\n- &1 2019-11-14 21:45:16.763474000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-14 22:48:40.144493153 Z\nsign_in_count:\n- 18\n- 19\n 38 \N 187.149.74.215 7cfaba08-8a2d-476e-8d0d-f2c8fb639d32 2019-11-14 22:48:40.170296 21105 27 User \N \N 27 User \N update ---\nunique_session_id:\n- yJvU4hbMbva2HzitjkvF\n- iA449GrM-qCvLGL3JuA8\n 39 \N 187.149.74.215 7cfaba08-8a2d-476e-8d0d-f2c8fb639d32 2019-11-14 22:48:40.190061 21106 1421 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 583\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-11-14\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-564\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 96c3c0b4-fd4d-4c0c-bf45-4185076ea875 2019-11-14 22:53:09.297895 21107 1281 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 3 \N 187.149.74.215 96c3c0b4-fd4d-4c0c-bf45-4185076ea875 2019-11-14 22:53:09.331918 21108 1421 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 2fea77b0-e5de-4e18-83e3-b8542e2d2d68 2019-11-14 22:53:43.343173 21109 1984 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 583\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1421\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-564\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-564 187.149.74.215 2fea77b0-e5de-4e18-83e3-b8542e2d2d68 2019-11-14 22:53:43.366512 21110 1422 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 583\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2019-11-14\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-565\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 67d634cc-b27c-4fe6-89c3-104a3f5f69e3 2019-11-14 23:09:45.057827 21111 860 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.74.215 67d634cc-b27c-4fe6-89c3-104a3f5f69e3 2019-11-14 23:09:45.090056 21112 1422 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-565 cancelada. 187.149.74.215 5e7eab1f-3a50-4b6d-9310-b81ff1cc0ccf 2019-11-14 23:10:36.33477 21113 860 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.74.215 5e7eab1f-3a50-4b6d-9310-b81ff1cc0ccf 2019-11-14 23:10:36.359376 21114 1422 Sale \N \N 27 User \N update --- {}\n 3 Venta PV2-V-565 cancelada. 187.149.74.215 1392babd-b845-4e1d-b28f-015062da3ee1 2019-11-14 23:10:42.022535 21115 860 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.74.215 1392babd-b845-4e1d-b28f-015062da3ee1 2019-11-14 23:10:42.041092 21116 1423 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 583\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2019-11-14\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-566\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.74.215 571a9994-b8cc-4844-b565-664397c3119d 2019-11-14 23:11:50.44425 21117 860 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.74.215 571a9994-b8cc-4844-b565-664397c3119d 2019-11-14 23:11:50.47127 21118 1423 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.74.215 efd28a2b-d860-438c-8401-810e3c344dcc 2019-11-14 23:12:06.526321 21119 1985 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 583\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.789E3\nmove_type: '1'\nsale_id: 1423\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-566\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.211E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-566 187.149.74.215 efd28a2b-d860-438c-8401-810e3c344dcc 2019-11-14 23:12:06.56122 21120 1424 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 582\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-11-14\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-115\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 930c3fa5-1e88-489d-bb3f-e9fc3b1fa571 2019-11-15 01:47:59.287583 21121 815 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 4 \N 189.186.130.34 930c3fa5-1e88-489d-bb3f-e9fc3b1fa571 2019-11-15 01:47:59.318251 21122 1424 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.130.34 cc5f0983-c8ee-428e-9bc9-17d8475a92f5 2019-11-15 01:48:57.436186 21123 1986 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 582\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.569E3\nmove_type: '1'\nsale_id: 1424\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-115\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.431E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-115 189.186.130.34 cc5f0983-c8ee-428e-9bc9-17d8475a92f5 2019-11-15 01:48:57.456758 21124 1987 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 582\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1419\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-113 189.186.130.34 aabbb0b2-84a5-40f5-8fd5-bcc631c109ce 2019-11-15 01:51:41.848027 21125 1419 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.130.34 93910f5b-d99d-452b-8145-980ad90ed910 2019-11-15 01:51:45.034052 21126 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 21:04:51.336388000 Z\n- &1 2019-11-14 21:22:34.842526000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-15 02:37:07.532996777 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934407\n mask_addr: 4294967295\nsign_in_count:\n- 906\n- 907\n 1814 \N 200.68.135.199 9b829615-801b-4553-ac70-95ff342c7ac8 2019-11-15 02:37:07.544478 21127 4 User \N \N 4 User \N update ---\nunique_session_id:\n- iwoxzEsJekWkg1ovj82A\n- UExzTnzEfAZUAzVZYP_G\n 1815 \N 200.68.135.199 9b829615-801b-4553-ac70-95ff342c7ac8 2019-11-15 02:37:07.575148 21128 584 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 582\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.1268E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.13E4\ncash_fund: !ruby/object:BigDecimal 18:0.993E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2293E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.130.34 fd5c4538-45f9-4d58-9d47-9bcdb38c1c31 2019-11-15 02:54:28.019795 21129 582 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.130.34 fd5c4538-45f9-4d58-9d47-9bcdb38c1c31 2019-11-15 02:54:28.038669 21130 585 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 584\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.101E4\nphysical_cash: !ruby/object:BigDecimal 18:0.101E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.50.168 42b8e506-7cea-4759-81db-79cd783524df 2019-11-15 02:58:43.607667 21131 584 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.50.168 42b8e506-7cea-4759-81db-79cd783524df 2019-11-15 02:58:43.620047 21132 586 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 583\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2446E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.431E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2931E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.50.168 8a44b990-c01c-4681-af5f-74ddbf50fdc6 2019-11-15 03:03:50.124285 21133 583 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.50.168 8a44b990-c01c-4681-af5f-74ddbf50fdc6 2019-11-15 03:03:50.138285 21134 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-13 17:00:19.540596000 Z\n- &1 2019-11-14 17:11:12.248905000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-15 17:02:04.504174975 Z\nsign_in_count:\n- 62\n- 63\n 126 \N 189.186.130.34 88b12d51-32e8-405d-824d-bfc4ca8537bb 2019-11-15 17:02:04.538952 21135 23 User \N \N 23 User \N update ---\nunique_session_id:\n- CxZWG7dC9VSiQydLjwxB\n- knztondjHV1QvnjvzqEG\n 127 \N 189.186.130.34 88b12d51-32e8-405d-824d-bfc4ca8537bb 2019-11-15 17:02:04.562353 21136 585 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.993E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 993.0 189.186.130.34 96fcda07-721b-452e-8462-bc6a3c797d38 2019-11-15 17:03:08.773084 21137 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 21:45:16.763474000 Z\n- &1 2019-11-14 22:48:40.144493000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-15 17:29:44.601712817 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117224\n mask_addr: 4294967295\nsign_in_count:\n- 19\n- 20\n 40 \N 187.149.50.168 3c088809-dcec-4344-a3bd-cbfa572a8002 2019-11-15 17:29:44.630959 21138 27 User \N \N 27 User \N update ---\nunique_session_id:\n- iA449GrM-qCvLGL3JuA8\n- UFcXXgSSjeG8sjDfBDPP\n 41 \N 187.149.50.168 3c088809-dcec-4344-a3bd-cbfa572a8002 2019-11-15 17:29:44.651537 21139 586 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.431E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 431.0 187.149.50.168 be00fcf4-6740-4db9-bf90-70365f01c3f4 2019-11-15 17:31:31.379139 21140 1425 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 586\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-11-15\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-567\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.50.168 36dc3220-042d-4016-a792-6d39ca2e86c8 2019-11-15 17:38:55.218286 21143 1988 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 586\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.649E3\nmove_type: '1'\nsale_id: 1425\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-567\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-567 187.149.50.168 f2d60fe7-7902-42ac-b965-88057bfdfdfc 2019-11-15 17:39:13.450036 21144 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-13 17:09:42.471529000 Z\n- &1 2019-11-14 20:07:38.088432000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-15 17:43:55.420076408 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117224\n mask_addr: 4294967295\nsign_in_count:\n- 377\n- 378\n 759 \N 187.149.50.168 c1408f80-3324-4ebc-97db-5e52fcfbcce5 2019-11-15 17:43:55.436212 21145 2 User \N \N 2 User \N update ---\nunique_session_id:\n- iHJBx2P-2sj1c3Pz461B\n- yYgyo4w4xzCSabuNs7k5\n 760 \N 187.149.50.168 c1408f80-3324-4ebc-97db-5e52fcfbcce5 2019-11-15 17:43:55.462112 21146 587 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.101E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1010.0 187.149.50.168 7d1ff9d9-3d1e-43ad-aa35-a7985b0645c2 2019-11-15 17:44:38.871654 21147 1426 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 587\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-11-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-742\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.50.168 7f2ea839-124e-4fcc-8137-4fad1935c6b4 2019-11-15 17:46:25.082317 21148 1156 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.50.168 7f2ea839-124e-4fcc-8137-4fad1935c6b4 2019-11-15 17:46:25.111615 21149 1426 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.50.168 a44cb0f1-53d2-4db7-98fe-ff8a6494caf2 2019-11-15 17:46:28.853738 21150 1989 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 587\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 1426\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-742\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.469E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-742 187.149.50.168 a44cb0f1-53d2-4db7-98fe-ff8a6494caf2 2019-11-15 17:46:28.884009 21151 1427 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 586\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-11-15\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-568\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.50.168 36756ba8-64c8-4be1-b787-5f35c88882db 2019-11-15 17:56:44.827331 21152 1278 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.50.168 36756ba8-64c8-4be1-b787-5f35c88882db 2019-11-15 17:56:44.866584 21153 1427 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.50.168 932f26cd-c565-4d24-91e6-c23368f5fc04 2019-11-15 17:57:22.228004 21154 1990 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 586\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 1427\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-568\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-568 187.149.50.168 932f26cd-c565-4d24-91e6-c23368f5fc04 2019-11-15 17:57:22.248084 21155 194 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-89\namount: !ruby/object:BigDecimal 18:0.102E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.102E4\nobservations: ''\npurchase_date: 2019-11-15\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-89 por $ 1020.0 MXN creada. 187.149.50.168 17a355ba-8ae3-4062-8946-2cb6275e6141 2019-11-15 17:58:01.580397 21156 1156 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.8E1\n 6 \N 187.149.50.168 17a355ba-8ae3-4062-8946-2cb6275e6141 2019-11-15 17:58:01.603719 21157 1428 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 587\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-11-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-743\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.50.168 965da45d-08e2-4a95-b738-3747e5434783 2019-11-15 18:52:27.783921 21158 792 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.50.168 965da45d-08e2-4a95-b738-3747e5434783 2019-11-15 18:52:27.830407 21159 1429 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 585\namount: !ruby/object:BigDecimal 18:0.759E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2019-11-15\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-116\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 54af09fa-5b16-46a1-8cc5-6d186abccc25 2019-11-15 18:52:55.821369 21160 1265 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.130.34 54af09fa-5b16-46a1-8cc5-6d186abccc25 2019-11-15 18:52:55.849302 21161 1428 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.50.168 978d7e95-de09-48e9-999b-55e57b1cb59f 2019-11-15 18:52:58.010618 21162 1991 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 587\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 1428\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-743\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-743 187.149.50.168 978d7e95-de09-48e9-999b-55e57b1cb59f 2019-11-15 18:52:58.033242 21163 1429 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.130.34 65863162-e132-47ce-90f3-dbbb6e1f005f 2019-11-15 18:53:05.217189 21295 1328 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.64.72 5b4432db-ae63-41c7-b021-93079cc8dbc3 2019-11-16 20:36:21.159335 21164 1992 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 585\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.759E3\nmove_type: '1'\nsale_id: 1429\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-116\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.76E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-116 189.186.130.34 65863162-e132-47ce-90f3-dbbb6e1f005f 2019-11-15 18:53:05.237538 21165 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-11-11 23:00:08.557697000 Z\n- &1 2019-11-13 20:30:03.003859000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-15 19:05:15.672373369 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117224\n mask_addr: 4294967295\nsign_in_count:\n- 102\n- 103\n 206 \N 187.149.50.168 b1053a7f-9e30-406c-b2e1-92944a75ca08 2019-11-15 19:05:15.67849 21166 1 User \N \N 1 User \N update ---\nunique_session_id:\n- UtWzknTodvW4uQ7ZDLhj\n- kyr9zyWdzoA_Y16hDEwk\n 207 \N 187.149.50.168 b1053a7f-9e30-406c-b2e1-92944a75ca08 2019-11-15 19:05:15.691337 21167 1430 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 587\namount: !ruby/object:BigDecimal 18:0.139E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.139E3\nstatus: 0\ndate_sale: 2019-11-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-744\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.50.168 c9ccea21-2570-4f23-8e04-92e5d6a65419 2019-11-15 19:31:15.916993 21168 1319 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.50.168 c9ccea21-2570-4f23-8e04-92e5d6a65419 2019-11-15 19:31:15.940814 21169 1430 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.50.168 5f9f9317-c713-440a-8434-822477148ce6 2019-11-15 19:32:03.489706 21170 1993 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 587\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.139E3\nmove_type: '1'\nsale_id: 1430\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-744\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.139E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-744 187.149.50.168 5f9f9317-c713-440a-8434-822477148ce6 2019-11-15 19:32:03.5113 21171 1431 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 587\namount: !ruby/object:BigDecimal 18:0.199E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.199E3\nstatus: 0\ndate_sale: 2019-11-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-745\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.50.168 3e757d53-7d7e-46a1-a799-8ac4246a0405 2019-11-15 20:28:46.955756 21172 1308 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.50.168 3e757d53-7d7e-46a1-a799-8ac4246a0405 2019-11-15 20:28:46.98114 21173 1431 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.50.168 f668df19-8b71-481f-aa6e-713a97a65506 2019-11-15 20:29:25.354121 21174 1994 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 587\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.199E3\nmove_type: '1'\nsale_id: 1431\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-745\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.199E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-745 187.149.50.168 f668df19-8b71-481f-aa6e-713a97a65506 2019-11-15 20:29:25.383207 21175 239 Customer \N \N 2 User \N create ---\nnick_name: BLANCA FLOR GONZALEZ\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BLANCA FLOR GONZALEZ fue registrado. 187.149.50.168 be5bfa25-bc85-4566-931b-d3b50697b92b 2019-11-15 20:33:26.975291 21176 1432 Sale \N \N 2 User \N create ---\ncustomer_id: 239\nuser_id: 2\nopen_cash_register_id: 587\namount: !ruby/object:BigDecimal 18:0.989E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.989E3\nstatus: 0\ndate_sale: 2019-11-15\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-746\nexpiration_date: 2019-12-20\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.50.168 f42f711b-554f-4e5a-b131-c6d2e1a78596 2019-11-15 20:34:05.047903 21177 1246 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.50.168 f42f711b-554f-4e5a-b131-c6d2e1a78596 2019-11-15 20:34:05.074721 21178 1995 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 587\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1432\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-746\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-746 187.149.50.168 88822f56-a7c3-47da-9aca-08201ef0b585 2019-11-15 20:34:13.645636 21179 1432 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.50.168 1b0e58c8-978d-41a8-beea-70b66accf12a 2019-11-15 20:34:40.809278 21180 239 Customer \N \N 2 User \N update ---\nphone:\n- ''\n- "(667) 417-0491"\n 2 El cliente BLANCA FLOR GONZALEZ fue registrado. 187.149.50.168 e18f56ee-f583-4081-a280-c64b0e014665 2019-11-15 20:37:27.608674 21181 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 21:22:34.842526000 Z\n- &1 2019-11-15 02:37:07.532996000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-15 22:35:54.254779472 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934407\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938279\n mask_addr: 4294967295\nsign_in_count:\n- 907\n- 908\n 1816 \N 200.68.150.231 1b4c283b-7417-450d-b8f7-761f2d9fbf3b 2019-11-15 22:35:54.261224 21182 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UExzTnzEfAZUAzVZYP_G\n- d6sSPkTyCxny3xe7p5Ng\n 1817 \N 200.68.150.231 1b4c283b-7417-450d-b8f7-761f2d9fbf3b 2019-11-15 22:35:54.277682 21183 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-15 02:37:07.532996000 Z\n- &1 2019-11-15 22:35:54.254779000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-15 22:36:04.676828759 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934407\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938279\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938279\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\nsign_in_count:\n- 908\n- 909\n 1818 \N 187.149.39.79 b1fb4ba4-8df8-4b72-94c7-0602c54207a0 2019-11-15 22:36:04.684595 21184 4 User \N \N 4 User \N update ---\nunique_session_id:\n- d6sSPkTyCxny3xe7p5Ng\n- Pfxnm2Px5FX1zCq8zGtY\n 1819 \N 187.149.39.79 b1fb4ba4-8df8-4b72-94c7-0602c54207a0 2019-11-15 22:36:04.701722 37475 1003 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.51.195 190267de-a95d-4ef9-8a6f-d404feb38706 2020-08-14 23:39:38.247609 21185 1433 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 586\namount: !ruby/object:BigDecimal 18:0.459E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.459E3\nstatus: 0\ndate_sale: 2019-11-15\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-569\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.50.168 8faf95e1-01aa-477b-8758-f956d7c322a7 2019-11-15 22:57:43.257275 21186 1147 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.50.168 8faf95e1-01aa-477b-8758-f956d7c322a7 2019-11-15 22:57:43.286832 21187 1433 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.50.168 c463d817-8c32-4c68-9812-cd177114ee0d 2019-11-15 22:58:14.905696 21188 1996 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 586\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.459E3\nmove_type: '1'\nsale_id: 1433\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-569\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.41E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-569 187.149.50.168 c463d817-8c32-4c68-9812-cd177114ee0d 2019-11-15 22:58:14.930251 21189 1434 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 585\namount: !ruby/object:BigDecimal 18:0.139E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.139E3\nstatus: 0\ndate_sale: 2019-11-15\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-117\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 416ee34b-faa6-43b5-9745-38d6ff46a9bc 2019-11-15 23:38:47.075865 21190 1350 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.130.34 416ee34b-faa6-43b5-9745-38d6ff46a9bc 2019-11-15 23:38:47.103874 21191 1434 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.130.34 a8ec8a58-38e4-4642-aab0-f789b71152c3 2019-11-15 23:38:53.526573 21192 1997 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 585\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.139E3\nmove_type: '1'\nsale_id: 1434\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-117\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.61E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-117 189.186.130.34 a8ec8a58-38e4-4642-aab0-f789b71152c3 2019-11-15 23:38:53.547858 21193 1998 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 587\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.249E3\nmove_type: '1'\nsale_id: 1281\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.249E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-681 187.149.50.168 0311c504-5646-4b02-8056-d8d7db09525c 2019-11-15 23:57:17.098552 21194 1281 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.50.168 36ea65ed-778d-405c-9290-277ec1dab2b8 2019-11-15 23:57:23.25072 21195 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-15 22:35:54.254779000 Z\n- &1 2019-11-15 22:36:04.676828000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 00:27:31.232941952 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938279\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938279\n mask_addr: 4294967295\nsign_in_count:\n- 909\n- 910\n 1820 \N 200.68.150.231 cebde7c9-6968-4536-a13a-9c26bb6e085e 2019-11-16 00:27:31.241945 21196 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Pfxnm2Px5FX1zCq8zGtY\n- VVPrZKiJQdqQ_8rJmzRS\n 1821 \N 200.68.150.231 cebde7c9-6968-4536-a13a-9c26bb6e085e 2019-11-16 00:27:31.260243 21197 1435 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 585\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-11-15\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-118\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 04fa943a-c050-4af5-b2a5-b85a32ffdf3b 2019-11-16 00:35:41.034384 21198 920 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.130.34 04fa943a-c050-4af5-b2a5-b85a32ffdf3b 2019-11-16 00:35:41.063403 21199 1435 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.130.34 7afc8ea7-1030-4b78-99b1-097649c09862 2019-11-16 00:36:13.703372 21200 1999 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 585\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1435\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-118\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-118 189.186.130.34 7afc8ea7-1030-4b78-99b1-097649c09862 2019-11-16 00:36:13.723962 21201 213 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 587\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: AGUA\nexpense_date: 2019-11-15\nexpense_code: PV1-E-156\n 1 Egreso por 50.0 registrado 187.149.50.168 0993be31-d308-4299-8e45-cc2fb46eec3c 2019-11-16 00:53:43.326024 21202 2000 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 587\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 213\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.50.168 0993be31-d308-4299-8e45-cc2fb46eec3c 2019-11-16 00:53:43.351117 21203 214 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 587\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nstatus: 1\nobservations: SUELDO ROCIO\nexpense_date: 2019-11-15\nexpense_code: PV1-E-157\n 1 Egreso por 1328.0 registrado 187.149.50.168 8de6e6bd-c6ed-43b3-9ab2-e977815ddb59 2019-11-16 00:54:35.718712 21204 2001 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 587\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 214\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.50.168 8de6e6bd-c6ed-43b3-9ab2-e977815ddb59 2019-11-16 00:54:35.737903 21296 1338 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.64.72 da034a48-df75-45e1-bcd8-d845e826d173 2019-11-16 20:36:34.691092 21205 2002 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 430\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1095\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.50.168 4aa42a7b-4d83-4ad0-9287-43b6435b1c65 2019-11-16 00:55:49.860041 21206 1095 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.50.168 4aa42a7b-4d83-4ad0-9287-43b6435b1c65 2019-11-16 00:55:49.884004 21207 2002 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 430\n- 587\n 2 movimiento de efectivo por venta con folio PV1-V-614 187.149.50.168 4aa42a7b-4d83-4ad0-9287-43b6435b1c65 2019-11-16 00:55:49.901913 21208 1436 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 585\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2019-11-15\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-119\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 d0b8b187-fee7-4df3-9895-e91adbbb6f3c 2019-11-16 01:10:01.449125 21209 1163 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.130.34 d0b8b187-fee7-4df3-9895-e91adbbb6f3c 2019-11-16 01:10:01.482822 21210 1436 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-119 cancelada. 189.186.130.34 0138737f-3d7f-4b5f-a49c-9c580820d0a5 2019-11-16 01:10:46.553013 21211 1163 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.130.34 0138737f-3d7f-4b5f-a49c-9c580820d0a5 2019-11-16 01:10:46.579149 21212 1437 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 585\namount: !ruby/object:BigDecimal 18:0.2498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2498E4\nstatus: 0\ndate_sale: 2019-11-15\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-120\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 cddb5464-f7d5-429f-a9ee-fbadeb3a08b6 2019-11-16 01:11:03.865811 21213 1163 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.130.34 cddb5464-f7d5-429f-a9ee-fbadeb3a08b6 2019-11-16 01:11:03.900803 21214 859 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.130.34 cddb5464-f7d5-429f-a9ee-fbadeb3a08b6 2019-11-16 01:11:03.924691 21215 1437 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.130.34 5f4e21c4-a1a4-42f1-800f-ca60d1f1f78b 2019-11-16 01:11:53.610213 21216 2003 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 585\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2498E4\nmove_type: '1'\nsale_id: 1437\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-120\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-120 189.186.130.34 5f4e21c4-a1a4-42f1-800f-ca60d1f1f78b 2019-11-16 01:11:53.632693 21217 1438 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 585\namount: !ruby/object:BigDecimal 18:0.788E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.788E3\nstatus: 0\ndate_sale: 2019-11-15\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-121\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 96222e41-c666-4318-97dc-b688cc70f032 2019-11-16 01:14:09.741329 21218 1132 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.130.34 96222e41-c666-4318-97dc-b688cc70f032 2019-11-16 01:14:09.768365 21219 1353 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.130.34 96222e41-c666-4318-97dc-b688cc70f032 2019-11-16 01:14:09.792678 21220 1438 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.130.34 1f6ff7c8-c0a1-4040-82e4-0ac4126d3d78 2019-11-16 01:14:13.981108 21221 2004 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 585\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.788E3\nmove_type: '1'\nsale_id: 1438\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-121\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.212E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-121 189.186.130.34 1f6ff7c8-c0a1-4040-82e4-0ac4126d3d78 2019-11-16 01:14:14.011866 21222 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-15 22:36:04.676828000 Z\n- &1 2019-11-16 00:27:31.232941000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 01:20:37.743614509 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938279\n mask_addr: 4294967295\nsign_in_count:\n- 910\n- 911\n 1822 \N 200.68.150.231 9ae6f70b-bb6a-4a93-b501-08b981953342 2019-11-16 01:20:37.752925 21223 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VVPrZKiJQdqQ_8rJmzRS\n- z1dVxfXosFf5UuywohiF\n 1823 \N 200.68.150.231 9ae6f70b-bb6a-4a93-b501-08b981953342 2019-11-16 01:20:37.770652 21224 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 00:27:31.232941000 Z\n- &1 2019-11-16 01:20:37.743614000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 01:26:10.125501790 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938279\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\nsign_in_count:\n- 911\n- 912\n 1824 \N 187.149.39.79 12e08fb2-f25a-445f-875e-7c425aff5be1 2019-11-16 01:26:10.13395 21225 4 User \N \N 4 User \N update ---\nunique_session_id:\n- z1dVxfXosFf5UuywohiF\n- a_1ftzQabRaUvS_jjk7y\n 1825 \N 187.149.39.79 12e08fb2-f25a-445f-875e-7c425aff5be1 2019-11-16 01:26:10.154452 21226 195 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-19\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nobservations: ''\npurchase_date: 2019-11-15\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-19 por $ 1599.0 MXN creada. 187.149.39.79 f525fa24-8329-4953-a110-365d303b657f 2019-11-16 01:28:17.501228 21227 1362 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 909\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.39.79 f525fa24-8329-4953-a110-365d303b657f 2019-11-16 01:28:17.531412 21297 1338 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.64.72 a2a63bf6-268b-4e08-b95c-cf98fbec3d98 2019-11-16 20:36:39.293103 21228 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 01:20:37.743614000 Z\n- &1 2019-11-16 01:26:10.125501000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 01:29:25.415890175 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938279\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938279\n mask_addr: 4294967295\nsign_in_count:\n- 912\n- 913\n 1826 \N 200.68.150.231 c08895fd-bd26-4a51-9c5a-e64d97b31b92 2019-11-16 01:29:25.427701 21229 4 User \N \N 4 User \N update ---\nunique_session_id:\n- a_1ftzQabRaUvS_jjk7y\n- R6qK3XKhd-bFyy1-yNjB\n 1827 \N 200.68.150.231 c08895fd-bd26-4a51-9c5a-e64d97b31b92 2019-11-16 01:29:25.452376 21230 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 01:26:10.125501000 Z\n- &1 2019-11-16 01:29:25.415890000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 01:29:32.218194163 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938279\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938279\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\nsign_in_count:\n- 913\n- 914\n 1828 \N 187.149.39.79 4e886c1d-8d33-4f49-9a42-3f3421aba06d 2019-11-16 01:29:32.225988 21231 4 User \N \N 4 User \N update ---\nunique_session_id:\n- R6qK3XKhd-bFyy1-yNjB\n- HQaY77xRyPk-AQU7sSUp\n 1829 \N 187.149.39.79 4e886c1d-8d33-4f49-9a42-3f3421aba06d 2019-11-16 01:29:32.243313 21232 1439 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 585\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-11-15\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-122\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 b13c6078-7e6e-47dd-bff7-b43cdaa9d20c 2019-11-16 01:30:51.036219 21233 1362 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.130.34 b13c6078-7e6e-47dd-bff7-b43cdaa9d20c 2019-11-16 01:30:51.072397 21234 1439 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.130.34 906fc87a-20f6-41fe-b35c-a605e052bfe6 2019-11-16 01:30:55.906791 21235 2005 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 585\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 1439\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-122\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-122 189.186.130.34 906fc87a-20f6-41fe-b35c-a605e052bfe6 2019-11-16 01:30:55.93001 21236 196 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: \npurchase_code: CEN-C-32\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nobservations: ''\npurchase_date: 2019-11-15\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-32 por $ 1599.0 MXN creada. 187.149.39.79 90e117e5-ee09-498b-9ca1-699841fca0d3 2019-11-16 01:32:29.684509 21237 196 Purchase \N \N 4 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Compra CEN-C-32 cancelada. 187.149.39.79 76035a61-97b4-452c-a5d7-4ac00d081059 2019-11-16 01:36:05.090158 21238 1440 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 586\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-11-15\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-570\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.86.81 1ad82041-8c5d-4af6-adba-20dd359f69ac 2019-11-16 01:37:11.99815 21239 1287 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.86.81 1ad82041-8c5d-4af6-adba-20dd359f69ac 2019-11-16 01:37:12.026021 21240 1440 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.86.81 a7fe7a90-6dbf-41c4-90e2-919fdf7c59af 2019-11-16 01:37:54.150627 21241 2006 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 586\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 1440\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-570\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-570 187.149.86.81 a7fe7a90-6dbf-41c4-90e2-919fdf7c59af 2019-11-16 01:37:54.173657 21242 1441 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 586\namount: !ruby/object:BigDecimal 18:0.1358E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1358E4\nstatus: 0\ndate_sale: 2019-11-15\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-571\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.86.81 ab1b4cd4-4ce3-451b-8584-b2abee074b17 2019-11-16 01:39:04.67339 21243 1253 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.86.81 ab1b4cd4-4ce3-451b-8584-b2abee074b17 2019-11-16 01:39:04.700507 21244 1092 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.86.81 ab1b4cd4-4ce3-451b-8584-b2abee074b17 2019-11-16 01:39:04.723929 21245 1441 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.86.81 dd4bc6d3-6e9d-4242-9121-1f12780f4b0b 2019-11-16 01:40:08.648159 21246 2007 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 586\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1358E4\nmove_type: '1'\nsale_id: 1441\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-571\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.136E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-571 187.149.86.81 dd4bc6d3-6e9d-4242-9121-1f12780f4b0b 2019-11-16 01:40:08.681507 21247 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 01:29:25.415890000 Z\n- &1 2019-11-16 01:29:32.218194000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 01:41:06.670349068 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938279\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938279\n mask_addr: 4294967295\nsign_in_count:\n- 914\n- 915\n 1830 \N 200.68.150.231 be3db82f-730d-40b2-889c-8bd712b807f5 2019-11-16 01:41:06.681274 21248 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HQaY77xRyPk-AQU7sSUp\n- GNKFAuSx2csdnPeVVQRD\n 1831 \N 200.68.150.231 be3db82f-730d-40b2-889c-8bd712b807f5 2019-11-16 01:41:06.701943 21249 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 01:29:32.218194000 Z\n- &1 2019-11-16 01:41:06.670349000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 01:46:02.050382650 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938279\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938279\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\nsign_in_count:\n- 915\n- 916\n 1832 \N 187.149.39.79 7a81711a-40c0-45ed-a87d-3b527752136e 2019-11-16 01:46:02.067043 21250 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GNKFAuSx2csdnPeVVQRD\n- CGtNaK2Q4mh9AnujkYGf\n 1833 \N 187.149.39.79 7a81711a-40c0-45ed-a87d-3b527752136e 2019-11-16 01:46:02.098859 21251 197 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: \npurchase_code: CEN-C-33\namount: !ruby/object:BigDecimal 18:0.191385E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.191385E5\nobservations: ''\npurchase_date: 2019-11-15\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-33 por $ 19138.5 MXN creada. 187.149.39.79 14d12bba-8da6-40dc-9af6-17ed573d9f25 2019-11-16 01:46:58.976772 21252 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 01:41:06.670349000 Z\n- &1 2019-11-16 01:46:02.050382000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 01:56:43.191771688 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938279\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938279\n mask_addr: 4294967295\nsign_in_count:\n- 916\n- 917\n 1834 \N 200.68.150.231 c6dcbef1-0916-485e-922d-b0ecc372d6d1 2019-11-16 01:56:43.207272 21253 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CGtNaK2Q4mh9AnujkYGf\n- nxqp_SsTPFXXyRweKeM5\n 1835 \N 200.68.150.231 c6dcbef1-0916-485e-922d-b0ecc372d6d1 2019-11-16 01:56:43.23594 21254 1442 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 586\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-11-15\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-572\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.86.81 a39e0fed-2005-452f-8ae6-bf7c489791ea 2019-11-16 02:14:13.473962 21255 652 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.86.81 a39e0fed-2005-452f-8ae6-bf7c489791ea 2019-11-16 02:14:13.511787 21256 1442 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.86.81 e8007ba3-5cbf-4f88-9508-848086fefa9c 2019-11-16 02:15:04.358311 21257 2008 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 586\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 1442\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-572\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-572 187.149.86.81 e8007ba3-5cbf-4f88-9508-848086fefa9c 2019-11-16 02:15:04.380187 21258 1443 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 585\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2019-11-15\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-123\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 1bb02cdd-0630-4858-b285-ed3315efb962 2019-11-16 02:27:43.99939 21259 1266 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.130.34 1bb02cdd-0630-4858-b285-ed3315efb962 2019-11-16 02:27:44.043021 21260 1443 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.130.34 650d83b4-eafb-4d24-ad21-6e37f3d5909d 2019-11-16 02:28:27.088848 21261 2009 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 585\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.729E3\nmove_type: '1'\nsale_id: 1443\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-123\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.75E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-123 189.186.130.34 650d83b4-eafb-4d24-ad21-6e37f3d5909d 2019-11-16 02:28:27.11846 21262 1444 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 585\namount: !ruby/object:BigDecimal 18:0.115E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.115E3\nstatus: 0\ndate_sale: 2019-11-15\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-124\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.130.34 52a95360-9d71-4135-ba18-7ddbad6cf345 2019-11-16 02:32:29.192311 21263 1359 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.130.34 52a95360-9d71-4135-ba18-7ddbad6cf345 2019-11-16 02:32:29.231836 21264 1444 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.130.34 c38130f6-c2f4-4890-9d0e-75b083c995ca 2019-11-16 02:32:35.570293 21265 2010 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 585\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.115E3\nmove_type: '1'\nsale_id: 1444\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-124\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E3\nchange: !ruby/object:BigDecimal 18:0.5E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-124 189.186.130.34 c38130f6-c2f4-4890-9d0e-75b083c995ca 2019-11-16 02:32:35.590758 21266 587 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 587\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2455E4\namount_out: !ruby/object:BigDecimal 18:0.1378E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.887E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2087E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.86.81 e30cb60b-0f99-4f3a-a1c7-efeb685c2c1d 2019-11-16 02:51:43.002192 21267 587 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.86.81 e30cb60b-0f99-4f3a-a1c7-efeb685c2c1d 2019-11-16 02:51:43.030646 21268 588 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 585\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.7526E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.75E4\ncash_fund: !ruby/object:BigDecimal 18:0.1019E4\nphysical_cash: !ruby/object:BigDecimal 18:0.8519E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.130.34 18eea33e-8297-4ef4-be53-b008cda1680c 2019-11-16 02:53:44.110327 21269 585 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.130.34 18eea33e-8297-4ef4-be53-b008cda1680c 2019-11-16 02:53:44.12815 21270 589 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 586\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.5513E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.45E4\ncash_fund: !ruby/object:BigDecimal 18:0.1444E4\nphysical_cash: !ruby/object:BigDecimal 18:0.5944E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.86.81 fbe96d09-6f46-44be-a64d-47b63bc2519d 2019-11-16 02:58:43.568951 21271 586 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.86.81 fbe96d09-6f46-44be-a64d-47b63bc2519d 2019-11-16 02:58:43.586095 21272 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 01:46:02.050382000 Z\n- &1 2019-11-16 01:56:43.191771000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 03:52:55.036794773 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938279\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938279\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\nsign_in_count:\n- 917\n- 918\n 1836 \N 187.149.39.79 888235ad-6d9f-43e1-8753-14d9563885f8 2019-11-16 03:52:55.046129 21273 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nxqp_SsTPFXXyRweKeM5\n- s6Tv2uozxymRhs5XnRss\n 1837 \N 187.149.39.79 888235ad-6d9f-43e1-8753-14d9563885f8 2019-11-16 03:52:55.065548 21274 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 01:56:43.191771000 Z\n- &1 2019-11-16 03:52:55.036794000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 03:52:55.686908520 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938279\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\nsign_in_count:\n- 918\n- 919\n 1838 \N 187.149.39.79 b92a9194-9189-47ef-a3a9-6b5dfbce956a 2019-11-16 03:52:55.693882 21275 4 User \N \N 4 User \N update ---\nunique_session_id:\n- s6Tv2uozxymRhs5XnRss\n- XNBmjekSAV6TExz8RBuH\n 1839 \N 187.149.39.79 b92a9194-9189-47ef-a3a9-6b5dfbce956a 2019-11-16 03:52:55.70787 21276 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 17:11:12.248905000 Z\n- &1 2019-11-15 17:02:04.504174000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 17:02:11.168208092 Z\nsign_in_count:\n- 63\n- 64\n 128 \N 189.186.130.34 94a6ceff-3e2b-4540-890c-54163933cf38 2019-11-16 17:02:11.202878 21277 23 User \N \N 23 User \N update ---\nunique_session_id:\n- knztondjHV1QvnjvzqEG\n- y6m7yuMF4HrgW8Zf4mn9\n 129 \N 189.186.130.34 94a6ceff-3e2b-4540-890c-54163933cf38 2019-11-16 17:02:11.22701 21278 588 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1019E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1019.0 189.186.130.34 0f02cc7d-61b4-45e1-9a9d-364ae2a78c1c 2019-11-16 17:02:59.340447 21279 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 20:07:38.088432000 Z\n- &1 2019-11-15 17:43:55.420076000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 17:18:25.524901938 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117224\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117224\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\nsign_in_count:\n- 378\n- 379\n 761 \N 187.149.64.72 49275ba8-a405-4a37-bca8-cb14bda4203b 2019-11-16 17:18:25.545356 21280 2 User \N \N 2 User \N update ---\nunique_session_id:\n- yYgyo4w4xzCSabuNs7k5\n- S9byexxhgUJYmaA5tyZR\n 762 \N 187.149.64.72 49275ba8-a405-4a37-bca8-cb14bda4203b 2019-11-16 17:18:25.562468 21281 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-11-13 20:30:03.003859000 Z\n- &1 2019-11-15 19:05:15.672373000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 17:20:03.752517986 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117224\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117224\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\nsign_in_count:\n- 103\n- 104\n 208 \N 187.149.64.72 6f6b3d9f-3651-4a02-a6d8-18623d98e047 2019-11-16 17:20:03.759882 21282 1 User \N \N 1 User \N update ---\nunique_session_id:\n- kyr9zyWdzoA_Y16hDEwk\n- M1CSygKJCy6jnchHmmMx\n 209 \N 187.149.64.72 6f6b3d9f-3651-4a02-a6d8-18623d98e047 2019-11-16 17:20:03.774142 21283 589 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.887E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 887.0 187.149.64.72 f692b7d5-d25f-4ef6-9029-12e1a6c96851 2019-11-16 17:20:52.143391 21284 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 03:52:55.036794000 Z\n- &1 2019-11-16 03:52:55.686908000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 17:32:11.611267210 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\nsign_in_count:\n- 919\n- 920\n 1840 \N 187.149.64.72 408b99b4-2cfe-41a6-8073-ec58c1d1c5e6 2019-11-16 17:32:11.618149 21285 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XNBmjekSAV6TExz8RBuH\n- gqEtVxrHqLE7fanaySy5\n 1841 \N 187.149.64.72 408b99b4-2cfe-41a6-8073-ec58c1d1c5e6 2019-11-16 17:32:11.634193 21286 2011 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 588\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.269E3\nmove_type: '1'\nsale_id: 1361\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.231E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-102 189.186.130.34 ce37cd74-4dd2-4de8-99b9-7763084e8311 2019-11-16 18:50:38.16792 21287 1361 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.130.34 b57c6acd-1e7a-496f-8e64-bea8b9cf771f 2019-11-16 18:50:39.521018 21288 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 18:33:55.421635000 Z\n- &1 2019-11-14 19:36:58.445104000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 19:53:07.393482193 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\nsign_in_count:\n- 34\n- 35\n 70 \N 187.149.64.72 b3d3becf-01fa-4ba6-9daf-0de7cc26d998 2019-11-16 19:53:07.414754 21289 26 User \N \N 26 User \N update ---\nunique_session_id:\n- rC8_n8AmfPBtySgUcRM-\n- ZNgD2MP1Q9SEDsycYTbz\n 71 \N 187.149.64.72 b3d3becf-01fa-4ba6-9daf-0de7cc26d998 2019-11-16 19:53:07.435848 21290 590 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.1444E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1444.0 187.149.64.72 44cde9b9-5091-4cd0-b174-8129d7e14bf7 2019-11-16 20:05:03.736389 21291 1330 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.64.72 dec378df-b40a-436a-8440-503197feafdf 2019-11-16 20:35:06.299206 21292 1330 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.64.72 c68179b1-83db-47e5-90d9-cfd37e9a07e2 2019-11-16 20:35:09.505002 21298 1328 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.64.72 765a9c80-652a-4a35-82c0-76de9d3e63be 2019-11-16 20:36:41.210111 21299 1339 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.64.72 2e343e85-696b-46be-9c73-43a95eb6319e 2019-11-16 20:36:55.168451 21300 308 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-11-16\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.64.72 0aadf19f-cbe5-4c17-9e3d-75aac02b902e 2019-11-16 20:36:58.096632 21301 1445 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 589\namount: !ruby/object:BigDecimal 18:0.689E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.689E3\nstatus: 0\ndate_sale: 2019-11-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-747\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 9db4f0c6-697b-4af6-b1c1-e71c64796943 2019-11-16 20:41:49.865244 21302 1161 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.64.72 9db4f0c6-697b-4af6-b1c1-e71c64796943 2019-11-16 20:41:49.892651 21303 1445 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.64.72 5b869662-c70a-4400-9650-7aebc190b160 2019-11-16 20:41:54.476032 21304 2012 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 589\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.689E3\nmove_type: '1'\nsale_id: 1445\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-747\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.689E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-747 187.149.64.72 5b869662-c70a-4400-9650-7aebc190b160 2019-11-16 20:41:54.498059 21305 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-11-12 02:33:20.938444000 Z\n- &1 2019-11-14 22:15:07.554740000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 20:44:10.475718262 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\nsign_in_count:\n- 16\n- 17\n 34 \N 187.149.64.72 205698d1-1598-4585-a2be-1e3c65af69c8 2019-11-16 20:44:10.483157 21306 24 User \N \N 24 User \N update ---\nunique_session_id:\n- S1iJUMey-kWbMidFwYqx\n- 1xwYyHSubixckyPb-vzc\n 35 \N 187.149.64.72 205698d1-1598-4585-a2be-1e3c65af69c8 2019-11-16 20:44:10.503149 21307 1446 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 590\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-11-16\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-573\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 7e75b427-59f8-4946-840a-4654d71c70f3 2019-11-16 20:44:43.935452 21308 800 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 17 \N 187.149.64.72 7e75b427-59f8-4946-840a-4654d71c70f3 2019-11-16 20:44:43.960624 21309 1446 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.64.72 34c37333-d06e-4d8a-8d23-4ffffb4c385b 2019-11-16 20:45:07.172094 21310 2013 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 590\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1446\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-573\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-573 187.149.64.72 34c37333-d06e-4d8a-8d23-4ffffb4c385b 2019-11-16 20:45:07.192414 21311 1447 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 590\namount: !ruby/object:BigDecimal 18:0.189E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.189E3\nstatus: 0\ndate_sale: 2019-11-16\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-574\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 d26594d3-6298-4e23-9316-2e1c08ba673a 2019-11-16 21:03:39.926694 21312 1325 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.64.72 d26594d3-6298-4e23-9316-2e1c08ba673a 2019-11-16 21:03:39.965735 21313 1447 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.64.72 d41f267d-1e0f-4314-bd54-ebfb8ea8edb2 2019-11-16 21:03:46.244954 21314 2014 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 590\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.189E3\nmove_type: '1'\nsale_id: 1447\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-574\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-574 187.149.64.72 d41f267d-1e0f-4314-bd54-ebfb8ea8edb2 2019-11-16 21:03:46.266932 21315 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 22:48:40.144493000 Z\n- &1 2019-11-15 17:29:44.601712000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 21:05:49.275662339 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117224\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117224\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\nsign_in_count:\n- 20\n- 21\n 42 \N 187.149.64.72 9ccf772d-f00b-4760-af92-61a699c5e47b 2019-11-16 21:05:49.287569 21316 27 User \N \N 27 User \N update ---\nunique_session_id:\n- UFcXXgSSjeG8sjDfBDPP\n- gnd6wnDVLY2U_U6LAhkC\n 43 \N 187.149.64.72 9ccf772d-f00b-4760-af92-61a699c5e47b 2019-11-16 21:05:49.309379 21317 1448 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 590\namount: !ruby/object:BigDecimal 18:0.2157E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2157E4\nstatus: 0\ndate_sale: 2019-11-16\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-575\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 4c40963b-6f03-41a4-9909-cfd8b4f20aec 2019-11-16 21:08:20.137934 21318 1254 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.64.72 4c40963b-6f03-41a4-9909-cfd8b4f20aec 2019-11-16 21:08:20.167034 21319 802 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 187.149.64.72 4c40963b-6f03-41a4-9909-cfd8b4f20aec 2019-11-16 21:08:20.190429 21320 1448 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.64.72 f5c30f7a-1b6a-4361-b937-75559073d49a 2019-11-16 21:09:44.394098 21321 2015 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 590\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2157E4\nmove_type: '1'\nsale_id: 1448\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-575\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.22E4\nchange: !ruby/object:BigDecimal 18:0.43E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-575 187.149.64.72 f5c30f7a-1b6a-4361-b937-75559073d49a 2019-11-16 21:09:44.415081 21322 1449 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 590\namount: !ruby/object:BigDecimal 18:0.8534E2\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9899E2\nstatus: 0\ndate_sale: 2019-11-16\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-576\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 ef2f5770-383c-4976-84ba-6b004f15fcca 2019-11-16 21:24:26.358144 21323 487 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 17 \N 187.149.64.72 ef2f5770-383c-4976-84ba-6b004f15fcca 2019-11-16 21:24:26.384229 21324 1449 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.64.72 60b45bb3-c86c-41cf-8fc4-837c797c32ba 2019-11-16 21:24:34.035093 21325 2016 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 590\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.9899E2\nmove_type: '1'\nsale_id: 1449\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-576\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.101E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-576 187.149.64.72 60b45bb3-c86c-41cf-8fc4-837c797c32ba 2019-11-16 21:24:34.06733 21326 1450 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 588\namount: !ruby/object:BigDecimal 18:0.165017E4\ntax: !ruby/object:BigDecimal 18:0.14883E3\ndiscount: !ruby/object:BigDecimal 18:0.72E3\ntotal: !ruby/object:BigDecimal 18:0.1079E4\nstatus: 0\ndate_sale: 2019-11-16\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-125\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 d479b0be-bb68-4cea-959f-cfbe564b59b1 2019-11-16 21:46:09.221147 21327 899 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.111.139 d479b0be-bb68-4cea-959f-cfbe564b59b1 2019-11-16 21:46:09.246546 21328 1450 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 55d2ada9-a652-434e-8732-3197f1b12dcd 2019-11-16 21:46:22.844004 21329 2017 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 588\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1079E4\nmove_type: '1'\nsale_id: 1450\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-125\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-125 189.186.111.139 55d2ada9-a652-434e-8732-3197f1b12dcd 2019-11-16 21:46:22.883916 21330 1451 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 588\namount: !ruby/object:BigDecimal 18:0.119E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.119E3\nstatus: 0\ndate_sale: 2019-11-16\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-126\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 aeb23927-a1bf-42e4-95ba-34ff5f2bb525 2019-11-16 21:46:55.546252 21331 1346 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.111.139 aeb23927-a1bf-42e4-95ba-34ff5f2bb525 2019-11-16 21:46:55.570984 21332 1451 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 f32a12ad-1232-4d9d-ba21-16af46caf1c0 2019-11-16 21:46:59.352803 21333 2018 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 588\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.119E3\nmove_type: '1'\nsale_id: 1451\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-126\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-126 189.186.111.139 f32a12ad-1232-4d9d-ba21-16af46caf1c0 2019-11-16 21:46:59.377989 21334 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-15 17:43:55.420076000 Z\n- &1 2019-11-16 17:18:25.524901000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 22:29:35.204623113 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117224\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\nsign_in_count:\n- 379\n- 380\n 763 \N 187.149.64.72 41db1813-bb0c-4849-ae74-1f2f9a03714b 2019-11-16 22:29:35.21278 21335 2 User \N \N 2 User \N update ---\nunique_session_id:\n- S9byexxhgUJYmaA5tyZR\n- jw4uEvd3sjZWCnsrzk8Y\n 764 \N 187.149.64.72 41db1813-bb0c-4849-ae74-1f2f9a03714b 2019-11-16 22:29:35.229761 21336 1452 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 589\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2019-11-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-748\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 8eea2232-514e-43b3-b471-aa744ba16ea6 2019-11-16 22:29:54.239296 21337 1160 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.64.72 8eea2232-514e-43b3-b471-aa744ba16ea6 2019-11-16 22:29:54.263596 21338 1452 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.64.72 e7e13dbd-9821-4e60-8844-e0541f62d0f0 2019-11-16 22:29:58.487281 21339 2019 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 589\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.789E3\nmove_type: '1'\nsale_id: 1452\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-748\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.789E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-748 187.149.64.72 e7e13dbd-9821-4e60-8844-e0541f62d0f0 2019-11-16 22:29:58.512877 21340 1453 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 589\namount: !ruby/object:BigDecimal 18:0.204E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.204E3\nstatus: 0\ndate_sale: 2019-11-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-749\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 f43b7346-e8bf-48e8-9b05-4e864c198556 2019-11-16 22:48:56.675324 21341 1208 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.64.72 f43b7346-e8bf-48e8-9b05-4e864c198556 2019-11-16 22:48:56.7011 21342 1306 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.64.72 f43b7346-e8bf-48e8-9b05-4e864c198556 2019-11-16 22:48:56.722908 21343 1453 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.64.72 42b9f5e0-a15a-4ef9-a9f0-d0b18de704cd 2019-11-16 22:49:26.39868 21344 2020 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 589\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.204E3\nmove_type: '1'\nsale_id: 1453\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-749\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.204E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-749 187.149.64.72 42b9f5e0-a15a-4ef9-a9f0-d0b18de704cd 2019-11-16 22:49:26.419066 21345 240 Customer \N \N 2 User \N create ---\nnick_name: JOHENDRI RAMIREZ\nphone: "(667) 182-4457"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JOHENDRI RAMIREZ fue registrado. 187.149.64.72 937150fa-06f5-4852-986f-b7d46bb6645e 2019-11-16 22:58:40.923044 21346 1454 Sale \N \N 2 User \N create ---\ncustomer_id: 240\nuser_id: 2\nopen_cash_register_id: 589\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-11-16\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-750\nexpiration_date: 2019-12-21\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 f437ed23-9b8d-422c-a4f6-5478db5b5b5f 2019-11-16 22:59:22.201589 21347 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.64.72 f437ed23-9b8d-422c-a4f6-5478db5b5b5f 2019-11-16 22:59:22.226371 21348 2021 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 589\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 1454\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-750\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-750 187.149.64.72 63b62360-d1ba-4dc7-8e9c-d2cd64c2d717 2019-11-16 22:59:45.077266 21349 1454 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.64.72 b02db8bb-9c77-4592-ad24-47c4bc8a2bfa 2019-11-16 22:59:47.524767 21350 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 03:52:55.686908000 Z\n- &1 2019-11-16 17:32:11.611267000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 23:19:17.348143821 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147114319\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946256\n mask_addr: 4294967295\nsign_in_count:\n- 920\n- 921\n 1842 \N 200.68.182.16 747f0141-d02e-4ecf-9607-99aa779d9c79 2019-11-16 23:19:17.355697 21351 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gqEtVxrHqLE7fanaySy5\n- krjWy4qDxQJRJsziLhZW\n 1843 \N 200.68.182.16 747f0141-d02e-4ecf-9607-99aa779d9c79 2019-11-16 23:19:17.371962 21352 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 17:32:11.611267000 Z\n- &1 2019-11-16 23:19:17.348143000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 23:21:24.066134264 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946256\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946256\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946189\n mask_addr: 4294967295\nsign_in_count:\n- 921\n- 922\n 1844 \N 200.68.181.205 703a146c-98bc-4be7-aa17-ffeed06ca8a0 2019-11-16 23:21:24.073443 21353 4 User \N \N 4 User \N update ---\nunique_session_id:\n- krjWy4qDxQJRJsziLhZW\n- "-msoVGvgzuqMzXw4WoYt"\n 1845 \N 200.68.181.205 703a146c-98bc-4be7-aa17-ffeed06ca8a0 2019-11-16 23:21:24.08851 21354 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 23:19:17.348143000 Z\n- &1 2019-11-16 23:21:24.066134000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-16 23:21:57.777785057 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946256\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946189\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946189\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946256\n mask_addr: 4294967295\nsign_in_count:\n- 922\n- 923\n 1846 \N 200.68.182.16 1e5fecf9-4e0b-4340-9098-985cd7cf5bd4 2019-11-16 23:21:57.785404 21355 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-msoVGvgzuqMzXw4WoYt"\n- szW15KhHHxjUgR_VfsGD\n 1847 \N 200.68.182.16 1e5fecf9-4e0b-4340-9098-985cd7cf5bd4 2019-11-16 23:21:57.80043 21356 1455 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 589\namount: !ruby/object:BigDecimal 18:0.1288E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1288E4\nstatus: 0\ndate_sale: 2019-11-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-751\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 aa6e2159-8088-4c93-8f30-90be966ea9fb 2019-11-17 00:34:08.935409 21357 1244 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.64.72 aa6e2159-8088-4c93-8f30-90be966ea9fb 2019-11-17 00:34:08.962941 21358 1161 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.64.72 aa6e2159-8088-4c93-8f30-90be966ea9fb 2019-11-17 00:34:08.985841 21359 1455 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.64.72 6c878875-9931-4b0d-aedb-11a608507be7 2019-11-17 00:34:18.352331 21360 2022 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 589\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1288E4\nmove_type: '1'\nsale_id: 1455\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-751\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1288E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-751 187.149.64.72 6c878875-9931-4b0d-aedb-11a608507be7 2019-11-17 00:34:18.371996 21361 1456 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 589\namount: !ruby/object:BigDecimal 18:0.1429E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1429E4\nstatus: 0\ndate_sale: 2019-11-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-752\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 28aeea70-ea0b-4f69-93d2-fff5cd9f42ef 2019-11-17 01:10:14.166217 21362 1277 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.64.72 28aeea70-ea0b-4f69-93d2-fff5cd9f42ef 2019-11-17 01:10:14.200329 21363 1456 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.64.72 10613ab2-b7b9-40d4-ba07-a8317c2791c7 2019-11-17 01:10:52.223092 21364 2023 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 589\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1429E4\nmove_type: '1'\nsale_id: 1456\ncardnumber: 3107\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-752\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-752 187.149.64.72 10613ab2-b7b9-40d4-ba07-a8317c2791c7 2019-11-17 01:10:52.244689 21365 1457 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 588\namount: !ruby/object:BigDecimal 18:0.284144E4\ntax: !ruby/object:BigDecimal 18:0.25655E3\ndiscount: !ruby/object:BigDecimal 18:0.1238E4\ntotal: !ruby/object:BigDecimal 18:0.185999E4\nstatus: 0\ndate_sale: 2019-11-16\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-127\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 8309f08b-2ff6-4e3b-be23-dbe04a7b7874 2019-11-17 01:13:05.996044 21366 845 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.111.139 8309f08b-2ff6-4e3b-be23-dbe04a7b7874 2019-11-17 01:13:06.026464 21367 903 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.111.139 8309f08b-2ff6-4e3b-be23-dbe04a7b7874 2019-11-17 01:13:06.051822 21368 1457 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 1807e63c-8bb4-409d-b7a6-6006f3377335 2019-11-17 01:13:15.493041 21369 2024 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 588\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.185999E4\nmove_type: '1'\nsale_id: 1457\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-127\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.14001E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-127 189.186.111.139 1807e63c-8bb4-409d-b7a6-6006f3377335 2019-11-17 01:13:15.516206 21370 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 19:36:58.445104000 Z\n- &1 2019-11-16 19:53:07.393482000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-17 01:30:19.426042405 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 35\n- 36\n 72 \N 189.186.111.139 a376356e-396b-469c-b890-285acc0dce9f 2019-11-17 01:30:19.436552 21371 26 User \N \N 26 User \N update ---\nunique_session_id:\n- ZNgD2MP1Q9SEDsycYTbz\n- 7EmfKNQi42xiejCVoNrp\n 73 \N 189.186.111.139 a376356e-396b-469c-b890-285acc0dce9f 2019-11-17 01:30:19.454843 21372 1458 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 588\namount: !ruby/object:BigDecimal 18:0.1448E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1448E4\nstatus: 0\ndate_sale: 2019-11-16\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-128\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 440b2fa1-84d3-4ebf-8438-929cb8c55936 2019-11-17 02:09:02.73293 21373 1107 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.111.139 440b2fa1-84d3-4ebf-8438-929cb8c55936 2019-11-17 02:09:02.761053 21374 1357 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.111.139 440b2fa1-84d3-4ebf-8438-929cb8c55936 2019-11-17 02:09:02.784236 21375 215 Expense \N \N 27 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 590\nquantity: !ruby/object:BigDecimal 18:0.9E3\nstatus: 1\nobservations: SUELDO KEYLA\nexpense_date: 2019-11-16\nexpense_code: PV2-E-48\n 1 Egreso por 900.0 registrado 187.149.64.72 d0c1771f-8777-453d-be16-aae531536a70 2019-11-17 02:09:48.955139 21376 2025 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 590\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.9E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 215\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.64.72 d0c1771f-8777-453d-be16-aae531536a70 2019-11-17 02:09:48.975797 21377 1458 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 26bb3e94-1691-45c0-8697-d7a9edeec6ba 2019-11-17 02:10:03.358978 21378 2026 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 588\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1448E4\nmove_type: '1'\nsale_id: 1458\ncardnumber: 6668\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-128\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-128 189.186.111.139 26bb3e94-1691-45c0-8697-d7a9edeec6ba 2019-11-17 02:10:03.380112 21379 590 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 589\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4799E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.35E4\ncash_fund: !ruby/object:BigDecimal 18:0.757E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4257E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.64.72 b7b4c499-eea0-4e47-82f6-c53d5bd5c1a4 2019-11-17 02:47:23.641492 21380 589 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.64.72 b7b4c499-eea0-4e47-82f6-c53d5bd5c1a4 2019-11-17 02:47:23.655006 21381 591 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 590\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.314399E4\namount_out: !ruby/object:BigDecimal 18:0.9E3\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 27:0.11879899999999998E4\nphysical_cash: !ruby/object:BigDecimal 18:0.368799E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.64.72 2a3c9a54-5db6-4505-9eee-5c8346d98404 2019-11-17 02:56:51.814088 21382 590 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.64.72 2a3c9a54-5db6-4505-9eee-5c8346d98404 2019-11-17 02:56:51.830698 21383 216 Expense \N \N 23 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 588\nquantity: !ruby/object:BigDecimal 18:0.528E3\nstatus: 1\nobservations: SUELDO MARICRUZ\nexpense_date: 2019-11-16\nexpense_code: PV3-E-11\n 1 Egreso por 528.0 registrado 189.186.111.139 f7f91a8e-8e1a-417c-b2f1-0cd306727db6 2019-11-17 02:57:20.906116 21384 2027 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 588\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.528E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 216\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.111.139 f7f91a8e-8e1a-417c-b2f1-0cd306727db6 2019-11-17 02:57:20.925649 21385 217 Expense \N \N 23 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 588\nquantity: !ruby/object:BigDecimal 18:0.508E3\nstatus: 1\nobservations: PAGO DEL TELEFONO\nexpense_date: 2019-11-16\nexpense_code: PV3-E-12\n 1 Egreso por 508.0 registrado 189.186.111.139 f163d351-8ea8-4481-b112-4284b58ade2d 2019-11-17 02:57:43.038608 21386 2028 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 588\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.508E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 217\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.111.139 f163d351-8ea8-4481-b112-4284b58ade2d 2019-11-17 02:57:43.05683 21387 592 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 588\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.477499E4\namount_out: !ruby/object:BigDecimal 18:0.1036E4\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.809E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3309E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 c922760c-1cc7-4a1f-96c4-292914b21707 2019-11-17 03:02:38.006401 21388 588 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 c922760c-1cc7-4a1f-96c4-292914b21707 2019-11-17 03:02:38.018823 21389 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 23:21:24.066134000 Z\n- &1 2019-11-16 23:21:57.777785000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-17 04:25:46.143121017 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946189\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946256\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946256\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183136291\n mask_addr: 4294967295\nsign_in_count:\n- 923\n- 924\n 1848 \N 189.186.206.35 f140962a-b8f5-4ca6-b85c-acd13f4641ac 2019-11-17 04:25:46.153458 21390 4 User \N \N 4 User \N update ---\nunique_session_id:\n- szW15KhHHxjUgR_VfsGD\n- bDgnX2eDHod2zntfh7DJ\n 1849 \N 189.186.206.35 f140962a-b8f5-4ca6-b85c-acd13f4641ac 2019-11-17 04:25:46.173981 21391 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 23:21:57.777785000 Z\n- &1 2019-11-17 04:25:46.143121000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-17 06:58:44.773283263 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946256\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183136291\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183136291\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945660\n mask_addr: 4294967295\nsign_in_count:\n- 924\n- 925\n 1850 \N 200.68.179.188 5adb2345-5ded-4d55-a3c0-93b31b1746ff 2019-11-17 06:58:44.785835 21392 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bDgnX2eDHod2zntfh7DJ\n- Ybyuar7F94qGQyuSjuXN\n 1851 \N 200.68.179.188 5adb2345-5ded-4d55-a3c0-93b31b1746ff 2019-11-17 06:58:44.847141 21393 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-15 17:02:04.504174000 Z\n- &1 2019-11-16 17:02:11.168208000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-17 16:59:54.844289287 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 64\n- 65\n 130 \N 189.186.111.139 8ef0b758-84d8-41a0-b804-23b525f05daf 2019-11-17 16:59:54.879835 21394 23 User \N \N 23 User \N update ---\nunique_session_id:\n- y6m7yuMF4HrgW8Zf4mn9\n- AzLr522tB_9hAiJFdnon\n 131 \N 189.186.111.139 8ef0b758-84d8-41a0-b804-23b525f05daf 2019-11-17 16:59:54.904479 21395 591 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.809E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 809.0 189.186.111.139 a6ca475f-8e4b-45dc-8fde-67a048dc337b 2019-11-17 17:00:50.863421 21396 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-15 17:29:44.601712000 Z\n- &1 2019-11-16 21:05:49.275662000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-17 17:19:31.154332513 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117224\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\nsign_in_count:\n- 21\n- 22\n 44 \N 187.149.64.72 a538b9be-3416-4699-a05b-b42eb60d8169 2019-11-17 17:19:31.162263 21397 27 User \N \N 27 User \N update ---\nunique_session_id:\n- gnd6wnDVLY2U_U6LAhkC\n- KaYcs_YL9UcUVAsQHonM\n 45 \N 187.149.64.72 a538b9be-3416-4699-a05b-b42eb60d8169 2019-11-17 17:19:31.176321 21398 592 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.118799E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1187.99 187.149.64.72 6afec040-8f90-4ecb-8aac-ec313fa50934 2019-11-17 17:20:31.586143 21399 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 00:08:39.285679000 Z\n- &1 2019-11-14 19:36:06.598448000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-17 17:26:39.749108146 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143083\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\nsign_in_count:\n- 36\n- 37\n 74 \N 187.149.64.72 d8928242-ca93-4931-bea3-18d49621772b 2019-11-17 17:26:39.756734 21400 25 User \N \N 25 User \N update ---\nunique_session_id:\n- meCopYo4eY1PLtAW4g8S\n- s8S5dz_3RRyiwkWnrjJr\n 75 \N 187.149.64.72 d8928242-ca93-4931-bea3-18d49621772b 2019-11-17 17:26:39.771157 21401 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-17 04:25:46.143121000 Z\n- &1 2019-11-17 06:58:44.773283000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-17 17:50:02.867458560 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183136291\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945660\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945660\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\nsign_in_count:\n- 925\n- 926\n 1852 \N 187.149.64.72 eea6a032-f75e-4583-94d9-05af85f9d4bd 2019-11-17 17:50:02.876144 21402 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Ybyuar7F94qGQyuSjuXN\n- nUXNXbAiLfXaF8Uozxdu\n 1853 \N 187.149.64.72 eea6a032-f75e-4583-94d9-05af85f9d4bd 2019-11-17 17:50:02.89693 21403 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-17 06:58:44.773283000 Z\n- &1 2019-11-17 17:50:02.867458000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-17 18:30:57.916806040 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945660\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945660\n mask_addr: 4294967295\nsign_in_count:\n- 926\n- 927\n 1854 \N 200.68.179.188 0207a6a5-4b5b-4fb7-bc3b-ea405c0bd87c 2019-11-17 18:30:57.924997 21404 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nUXNXbAiLfXaF8Uozxdu\n- xexstksHy8HSoLYfB5-q\n 1855 \N 200.68.179.188 0207a6a5-4b5b-4fb7-bc3b-ea405c0bd87c 2019-11-17 18:30:57.943153 38179 1017 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.90.81 37d99b51-7870-4da8-b588-22f94df311db 2020-08-22 00:32:18.897553 21405 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-17 17:50:02.867458000 Z\n- &1 2019-11-17 18:30:57.916806000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-17 18:34:51.244022571 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945660\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945660\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\nsign_in_count:\n- 927\n- 928\n 1856 \N 187.149.64.72 8acc9984-8992-4404-8e6b-767d52ce4f8b 2019-11-17 18:34:51.25199 21406 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xexstksHy8HSoLYfB5-q\n- BXgrbBjKUhzqZ8C-ErRX\n 1857 \N 187.149.64.72 8acc9984-8992-4404-8e6b-767d52ce4f8b 2019-11-17 18:34:51.268581 21407 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-17 18:30:57.916806000 Z\n- &1 2019-11-17 18:34:51.244022000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-17 19:29:55.135033771 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945660\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945660\n mask_addr: 4294967295\nsign_in_count:\n- 928\n- 929\n 1858 \N 200.68.179.188 52b683a5-d4d5-41a7-9162-f8e1cb43e4bf 2019-11-17 19:29:55.146263 21408 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BXgrbBjKUhzqZ8C-ErRX\n- W7c7cV169gy2CHWdzu5z\n 1859 \N 200.68.179.188 52b683a5-d4d5-41a7-9162-f8e1cb43e4bf 2019-11-17 19:29:55.200803 21409 1459 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 592\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.131E3\ntotal: !ruby/object:BigDecimal 18:0.738E3\nstatus: 0\ndate_sale: 2019-11-17\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-577\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 25388884-3982-4073-83c2-38774f27ce91 2019-11-17 20:02:08.251854 21410 998 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.64.72 25388884-3982-4073-83c2-38774f27ce91 2019-11-17 20:02:08.282077 21411 1459 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.64.72 8029f611-7dd4-4201-9427-43067c0f1f5c 2019-11-17 20:02:18.515416 21412 2029 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 592\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.738E3\nmove_type: '1'\nsale_id: 1459\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-577\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.75E3\nchange: !ruby/object:BigDecimal 18:0.12E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-577 187.149.64.72 8029f611-7dd4-4201-9427-43067c0f1f5c 2019-11-17 20:02:18.538836 21413 1460 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 592\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.83E2\ntotal: !ruby/object:BigDecimal 18:0.466E3\nstatus: 0\ndate_sale: 2019-11-17\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-578\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 473b7b66-5885-4423-9a31-e0d2541d1b15 2019-11-17 20:04:54.537518 21414 1138 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.64.72 473b7b66-5885-4423-9a31-e0d2541d1b15 2019-11-17 20:04:54.564148 21415 1460 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.64.72 866c18bf-3344-4504-9b50-e73ea34a82fe 2019-11-17 20:05:17.510421 21416 2030 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 592\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.466E3\nmove_type: '1'\nsale_id: 1460\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-578\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.34E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-578 187.149.64.72 866c18bf-3344-4504-9b50-e73ea34a82fe 2019-11-17 20:05:17.531883 21417 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-17 18:34:51.244022000 Z\n- &1 2019-11-17 19:29:55.135033000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-17 20:30:56.822853450 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945660\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945660\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\nsign_in_count:\n- 929\n- 930\n 1860 \N 187.149.64.72 ee7534e3-671a-44fe-a4d4-1d9ce00ca1ec 2019-11-17 20:30:56.831083 21418 4 User \N \N 4 User \N update ---\nunique_session_id:\n- W7c7cV169gy2CHWdzu5z\n- zursn959xgyCvd9Esyc2\n 1861 \N 187.149.64.72 ee7534e3-671a-44fe-a4d4-1d9ce00ca1ec 2019-11-17 20:30:56.84933 21419 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-17 19:29:55.135033000 Z\n- &1 2019-11-17 20:30:56.822853000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-17 21:10:20.937317156 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945660\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945764\n mask_addr: 4294967295\nsign_in_count:\n- 930\n- 931\n 1862 \N 200.68.180.36 c4a4022f-bec3-456d-a6f1-a9997794ba4f 2019-11-17 21:10:20.949204 21420 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zursn959xgyCvd9Esyc2\n- 1d66s1xsUjsYbEXGWNLv\n 1863 \N 200.68.180.36 c4a4022f-bec3-456d-a6f1-a9997794ba4f 2019-11-17 21:10:20.970897 21421 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-17 20:30:56.822853000 Z\n- &1 2019-11-17 21:10:20.937317000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-17 21:17:12.627033624 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945764\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945764\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\nsign_in_count:\n- 931\n- 932\n 1864 \N 187.149.64.72 0a261ca2-2824-461a-855e-6208826067ea 2019-11-17 21:17:12.63493 21422 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1d66s1xsUjsYbEXGWNLv\n- TRXZzwaEeUHJBgYsj4Ca\n 1865 \N 187.149.64.72 0a261ca2-2824-461a-855e-6208826067ea 2019-11-17 21:17:12.650833 21423 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-17 21:10:20.937317000 Z\n- &1 2019-11-17 21:17:12.627033000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-17 22:03:20.692913277 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945764\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\nsign_in_count:\n- 932\n- 933\n 1866 \N 187.149.64.72 caa9ec9f-7217-4606-942e-f4693d2f1ca9 2019-11-17 22:03:20.702803 21424 4 User \N \N 4 User \N update ---\nunique_session_id:\n- TRXZzwaEeUHJBgYsj4Ca\n- zypwvzs_Asiw35amHTJM\n 1867 \N 187.149.64.72 caa9ec9f-7217-4606-942e-f4693d2f1ca9 2019-11-17 22:03:20.723784 21425 593 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 592\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.1204E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1391E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2391E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.64.72 dacd5761-6dd9-42c4-b706-e4b8e7a2d903 2019-11-17 22:04:59.479769 21426 592 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.64.72 dacd5761-6dd9-42c4-b706-e4b8e7a2d903 2019-11-17 22:04:59.492968 21427 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 19:36:06.598448000 Z\n- &1 2019-11-17 17:26:39.749108000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-17 22:09:14.733529875 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\nsign_in_count:\n- 37\n- 38\n 76 \N 187.149.64.72 a03b86e7-fd97-483a-94c0-7ba76632e645 2019-11-17 22:09:14.741466 21428 25 User \N \N 25 User \N update ---\nunique_session_id:\n- s8S5dz_3RRyiwkWnrjJr\n- XPaTp1UPKREtus7DNcwx\n 77 \N 187.149.64.72 a03b86e7-fd97-483a-94c0-7ba76632e645 2019-11-17 22:09:14.75763 21429 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 19:53:07.393482000 Z\n- &1 2019-11-17 01:30:19.426042000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-17 22:16:00.507060872 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\nsign_in_count:\n- 36\n- 37\n 74 \N 187.149.64.72 29a0a175-2168-431d-944e-b3982c7bd5d0 2019-11-17 22:16:00.515363 21430 26 User \N \N 26 User \N update ---\nunique_session_id:\n- 7EmfKNQi42xiejCVoNrp\n- 5C1CyyXVo5hiXyCpfYN_\n 75 \N 187.149.64.72 29a0a175-2168-431d-944e-b3982c7bd5d0 2019-11-17 22:16:00.531491 21431 593 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.1391E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1391.0 187.149.64.72 83380813-0123-4d97-a090-c04d0ba10479 2019-11-17 22:16:22.1011 21432 241 Customer \N \N 26 User \N create ---\nnick_name: JUANITA CEBALLOS\nphone: "(667) 726-9030"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JUANITA CEBALLOS fue registrado. 187.149.64.72 bcfd4be1-0c09-489e-9d6b-e38e86e595aa 2019-11-17 22:16:51.183063 21433 1461 Sale \N \N 26 User \N create ---\ncustomer_id: 241\nuser_id: 26\nopen_cash_register_id: 593\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2019-11-17\nsaletype: 2\nseller_id: 15\nsale_code: PV2-V-579\nexpiration_date: 2019-12-22\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 46b4d4a1-3984-4e31-aade-35d8cc24c7cf 2019-11-17 22:17:12.064423 21434 728 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.64.72 46b4d4a1-3984-4e31-aade-35d8cc24c7cf 2019-11-17 22:17:12.092959 21435 2031 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 593\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1461\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-579\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-579 187.149.64.72 c7e441eb-31c7-490a-a59b-91763aaef7a6 2019-11-17 22:17:19.489262 21436 1461 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-579 cancelada. 187.149.64.72 491e2deb-4371-4d85-bd4d-5afd4ad948c4 2019-11-17 22:17:30.231518 21437 728 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 187.149.64.72 491e2deb-4371-4d85-bd4d-5afd4ad948c4 2019-11-17 22:17:30.253361 21438 1462 Sale \N \N 26 User \N create ---\ncustomer_id: 241\nuser_id: 26\nopen_cash_register_id: 593\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-11-17\nsaletype: 2\nseller_id: 15\nsale_code: PV2-V-580\nexpiration_date: 2019-12-22\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 8ff06c09-0dc1-40ff-a7b5-718d40d4b22e 2019-11-17 22:17:55.898064 21439 728 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.64.72 8ff06c09-0dc1-40ff-a7b5-718d40d4b22e 2019-11-17 22:17:55.922437 21440 2032 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 593\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1462\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-580\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-580 187.149.64.72 93a8e60b-e19f-4468-919d-d471dc8e2fc4 2019-11-17 22:18:09.050258 21441 1462 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.64.72 b4f94376-ea87-4d8f-b6a5-a606e49ba630 2019-11-17 22:18:10.490154 21442 594 CashOut \N \N 26 User \N create ---\nopen_cash_register_id: 593\nuser_id: 26\namount_in: !ruby/object:BigDecimal 18:0.2E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.2E3\ncash_fund: !ruby/object:BigDecimal 18:0.1391E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1591E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.64.72 194f8318-a2a9-4e5b-83e9-43d86ef5580c 2019-11-17 22:24:25.264137 21443 593 OpenCashRegister \N \N 26 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.64.72 194f8318-a2a9-4e5b-83e9-43d86ef5580c 2019-11-17 22:24:25.277852 21444 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-17 21:17:12.627033000 Z\n- &1 2019-11-17 22:03:20.692913000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-17 22:35:18.893545639 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945764\n mask_addr: 4294967295\nsign_in_count:\n- 933\n- 934\n 1868 \N 200.68.180.36 4ed39dc6-a845-4aad-ad5f-bc54fb311f7a 2019-11-17 22:35:18.901928 21445 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zypwvzs_Asiw35amHTJM\n- DiUJ22gK-SGzcJECzpY6\n 1869 \N 200.68.180.36 4ed39dc6-a845-4aad-ad5f-bc54fb311f7a 2019-11-17 22:35:18.942184 21468 1464 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 596\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.84E2\ntotal: !ruby/object:BigDecimal 18:0.485E3\nstatus: 0\ndate_sale: 2019-11-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-753\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 88a1f390-bd2b-4abc-b9a8-4fe068ef6532 2019-11-18 19:03:21.333738 21446 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-17 22:03:20.692913000 Z\n- &1 2019-11-17 22:35:18.893545000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-18 01:04:51.744739751 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945764\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945764\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946109\n mask_addr: 4294967295\nsign_in_count:\n- 934\n- 935\n 1870 \N 200.68.181.125 503a76c0-6047-4540-9323-ddc9c9b08a26 2019-11-18 01:04:51.759122 21447 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DiUJ22gK-SGzcJECzpY6\n- Pcq9sY9QQzyW6L4dz3zT\n 1871 \N 200.68.181.125 503a76c0-6047-4540-9323-ddc9c9b08a26 2019-11-18 01:04:51.785543 21448 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 21:05:49.275662000 Z\n- &1 2019-11-17 17:19:31.154332000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-18 17:07:23.860731279 Z\nsign_in_count:\n- 22\n- 23\n 46 \N 187.149.64.72 31ca1e7c-7410-46c4-b1e8-39741b7e9f43 2019-11-18 17:07:23.898211 21449 27 User \N \N 27 User \N update ---\nunique_session_id:\n- KaYcs_YL9UcUVAsQHonM\n- PQvyCFFRYBSrNYG6x5uy\n 47 \N 187.149.64.72 31ca1e7c-7410-46c4-b1e8-39741b7e9f43 2019-11-18 17:07:23.921897 21450 594 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1391E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1391.0 187.149.64.72 e203a5a6-6453-4d5a-b0ee-5cd45432d569 2019-11-18 17:08:38.471486 21451 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 17:18:25.524901000 Z\n- &1 2019-11-16 22:29:35.204623000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-18 18:00:13.755348494 Z\nsign_in_count:\n- 380\n- 381\n 765 \N 187.149.64.72 5ad7ad00-6854-4c31-b6ee-22c6cbf5d849 2019-11-18 18:00:13.783187 21452 2 User \N \N 2 User \N update ---\nunique_session_id:\n- jw4uEvd3sjZWCnsrzk8Y\n- PR4XBswxf1zfkzvgb7HS\n 766 \N 187.149.64.72 5ad7ad00-6854-4c31-b6ee-22c6cbf5d849 2019-11-18 18:00:13.804842 21453 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-17 22:35:18.893545000 Z\n- &1 2019-11-18 01:04:51.744739000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-18 18:27:42.096393312 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945764\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946109\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946109\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934423\n mask_addr: 4294967295\nsign_in_count:\n- 935\n- 936\n 1872 \N 200.68.135.215 b9caf0b4-d0ab-42f7-acac-c26e18bd3e3f 2019-11-18 18:27:42.104001 21454 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Pcq9sY9QQzyW6L4dz3zT\n- DsdNCY4R996HzAMNWqzm\n 1873 \N 200.68.135.215 b9caf0b4-d0ab-42f7-acac-c26e18bd3e3f 2019-11-18 18:27:42.121716 21455 595 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 591\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.809E3\nphysical_cash: !ruby/object:BigDecimal 18:0.809E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 d4844f7a-1871-4e71-8848-0d3ace68e4ae 2019-11-18 18:30:24.795142 21456 591 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 d4844f7a-1871-4e71-8848-0d3ace68e4ae 2019-11-18 18:30:24.812794 21457 595 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.809E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 809.0 189.186.111.139 e8f64cba-61f2-4102-8801-f2cc7ec77829 2019-11-18 18:30:41.406973 21458 242 Customer \N \N 23 User \N create ---\nnick_name: GLADYS URIAS\nphone: "(667) 145-4548"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente GLADYS URIAS fue registrado. 189.186.111.139 907f0408-b0fd-466f-b85a-9ec44def5944 2019-11-18 18:31:16.654646 21459 1463 Sale \N \N 23 User \N create ---\ncustomer_id: 242\nuser_id: 23\nopen_cash_register_id: 595\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2019-11-18\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-129\nexpiration_date: 2019-12-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 e97d8db1-e179-4221-9e97-ebd864d024b8 2019-11-18 18:31:40.177234 21460 1035 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.111.139 e97d8db1-e179-4221-9e97-ebd864d024b8 2019-11-18 18:31:40.204145 21461 2033 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 595\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.21E3\nmove_type: '1'\nsale_id: 1463\ncardnumber: 8054\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-129\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-129 189.186.111.139 5514ebd9-f89e-4530-bc9d-62e874537dbb 2019-11-18 18:32:34.263883 21462 1463 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.111.139 ba39a7bc-3843-4fe1-84ad-f564481849b8 2019-11-18 18:32:38.600136 21463 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 03:00:49.627267000 Z\n- &1 2019-11-14 17:23:26.283995000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-18 18:40:56.398388693 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 44\n- 45\n 91 \N 189.186.111.139 86442bbe-40b3-413a-9c4d-fffd1f773c34 2019-11-18 18:40:56.405589 21464 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 8XZLuozoWSJioixmb4YP\n- kRp3TM3DDzyuLyxRu4zx\n 92 \N 189.186.111.139 86442bbe-40b3-413a-9c4d-fffd1f773c34 2019-11-18 18:40:56.421112 21465 596 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.757E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 757.0 187.149.64.72 108afacb-5a55-422f-835c-d3e6e6984db0 2019-11-18 18:50:54.140856 21466 2034 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 596\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.789E3\nmove_type: '1'\nsale_id: 1432\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.789E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-746 187.149.64.72 a4a4ad3b-22fb-4702-9aef-4f0aa19e57ae 2019-11-18 19:02:02.807857 21467 1432 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.64.72 bb4d1479-a370-47fc-a403-521c4687ed59 2019-11-18 19:02:05.556282 21469 1166 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 5 \N 187.149.64.72 88a1f390-bd2b-4abc-b9a8-4fe068ef6532 2019-11-18 19:03:21.357761 21470 1464 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.64.72 4f00fb81-cfaa-4759-85e0-32e7d0bc7edb 2019-11-18 19:03:33.392225 21471 2035 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 596\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.485E3\nmove_type: '1'\nsale_id: 1464\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-753\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.485E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-753 187.149.64.72 4f00fb81-cfaa-4759-85e0-32e7d0bc7edb 2019-11-18 19:03:33.411601 21472 1465 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 596\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.165E3\ntotal: !ruby/object:BigDecimal 18:0.934E3\nstatus: 0\ndate_sale: 2019-11-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-754\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 c1afe8a5-2511-4def-828f-3a3e0323b6d2 2019-11-18 19:07:21.187968 21473 1272 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.64.72 c1afe8a5-2511-4def-828f-3a3e0323b6d2 2019-11-18 19:07:21.212803 21474 1465 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.64.72 5b7d3730-aa27-423a-af90-c5fb3cb657fa 2019-11-18 19:07:26.172733 21475 2036 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 596\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.934E3\nmove_type: '1'\nsale_id: 1465\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-754\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.934E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-754 187.149.64.72 5b7d3730-aa27-423a-af90-c5fb3cb657fa 2019-11-18 19:07:26.192908 21476 1466 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 596\namount: !ruby/object:BigDecimal 18:0.142938E4\ntax: !ruby/object:BigDecimal 18:0.5862E2\ndiscount: !ruby/object:BigDecimal 18:0.221E3\ntotal: !ruby/object:BigDecimal 18:0.1267E4\nstatus: 0\ndate_sale: 2019-11-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-755\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 85bd9650-6bef-4fa4-81c7-5485df96da1f 2019-11-18 19:17:13.499439 21477 184 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.64.72 85bd9650-6bef-4fa4-81c7-5485df96da1f 2019-11-18 19:17:13.52857 21478 1246 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.64.72 85bd9650-6bef-4fa4-81c7-5485df96da1f 2019-11-18 19:17:13.552796 21479 1466 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.64.72 79246fb2-570c-41f0-a0fb-b610ff293a13 2019-11-18 19:17:18.594092 21480 2037 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 596\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1267E4\nmove_type: '1'\nsale_id: 1466\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-755\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1267E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-755 187.149.64.72 79246fb2-570c-41f0-a0fb-b610ff293a13 2019-11-18 19:17:18.615123 21481 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-11-15 19:05:15.672373000 Z\n- &1 2019-11-16 17:20:03.752517000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-18 19:24:00.698796697 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117224\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\nsign_in_count:\n- 104\n- 105\n 210 \N 187.149.64.72 65fb0502-745c-4f4a-a095-66064333e9be 2019-11-18 19:24:00.706947 21482 1 User \N \N 1 User \N update ---\nunique_session_id:\n- M1CSygKJCy6jnchHmmMx\n- uhYb1yBYGWPPx7ymK6aA\n 211 \N 187.149.64.72 65fb0502-745c-4f4a-a095-66064333e9be 2019-11-18 19:24:00.720493 21483 1467 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 596\namount: !ruby/object:BigDecimal 18:0.75E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.75E2\nstatus: 0\ndate_sale: 2019-11-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-756\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 37e08879-3b35-4e7f-8e91-a7764fdc4742 2019-11-18 19:35:04.696517 21484 1204 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.64.72 37e08879-3b35-4e7f-8e91-a7764fdc4742 2019-11-18 19:35:04.722382 21485 1467 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.64.72 0947c97d-6006-4c4e-811a-a4b3dd00ed18 2019-11-18 19:35:27.182076 21486 2038 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 596\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.75E2\nmove_type: '1'\nsale_id: 1467\ncardnumber: 4698\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-756\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-756 187.149.64.72 0947c97d-6006-4c4e-811a-a4b3dd00ed18 2019-11-18 19:35:27.202843 21487 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-18 01:04:51.744739000 Z\n- &1 2019-11-18 18:27:42.096393000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-18 22:06:42.139686910 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946109\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934423\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934423\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 936\n- 937\n 1874 \N 189.186.111.139 311b242e-5eea-4684-a1a3-d7495b20b5aa 2019-11-18 22:06:42.147122 21488 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DsdNCY4R996HzAMNWqzm\n- wC6FfwnzyJivSKdu3kkQ\n 1875 \N 189.186.111.139 311b242e-5eea-4684-a1a3-d7495b20b5aa 2019-11-18 22:06:42.163508 21489 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 22:29:35.204623000 Z\n- &1 2019-11-18 18:00:13.755348000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-18 22:21:38.128521594 Z\nsign_in_count:\n- 381\n- 382\n 767 \N 187.149.64.72 6bf76dd3-db13-4411-ba2f-11a47a2488f1 2019-11-18 22:21:38.134266 21490 2 User \N \N 2 User \N update ---\nunique_session_id:\n- PR4XBswxf1zfkzvgb7HS\n- naXQmDCwyTQfsQ57yuTN\n 768 \N 187.149.64.72 6bf76dd3-db13-4411-ba2f-11a47a2488f1 2019-11-18 22:21:38.146856 21556 4 User \N \N 4 User \N update ---\nunique_session_id:\n- EW_uBrqcWe8tvAwNPkMy\n- G2hSUCsJQpXxxhFMXK3q\n 1887 \N 201.148.78.69 40e70f16-ad4f-4893-8e71-a59ab78afd70 2019-11-19 22:43:14.027997 21491 1468 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 596\namount: !ruby/object:BigDecimal 18:0.1317E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.117E3\ntotal: !ruby/object:BigDecimal 18:0.12E4\nstatus: 0\ndate_sale: 2019-11-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-757\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 f8f8224a-f3f8-43de-85e2-e854c4e44ad3 2019-11-18 22:22:02.981285 21492 1275 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.64.72 f8f8224a-f3f8-43de-85e2-e854c4e44ad3 2019-11-18 22:22:03.008001 21493 1303 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.64.72 f8f8224a-f3f8-43de-85e2-e854c4e44ad3 2019-11-18 22:22:03.03184 21494 1320 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.64.72 f8f8224a-f3f8-43de-85e2-e854c4e44ad3 2019-11-18 22:22:03.054371 21495 1468 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.64.72 1bb24ce3-5243-4303-9026-d2034a6181c7 2019-11-18 22:22:10.309542 21496 2039 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 596\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.12E4\nmove_type: '1'\nsale_id: 1468\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-757\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-757 187.149.64.72 1bb24ce3-5243-4303-9026-d2034a6181c7 2019-11-18 22:22:10.329591 21497 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 17:20:03.752517000 Z\n- &1 2019-11-18 19:24:00.698796000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-18 22:26:12.309450453 Z\nsign_in_count:\n- 105\n- 106\n 212 \N 187.149.64.72 ab41159b-5c6f-495a-9de2-f31da4b49794 2019-11-18 22:26:12.314971 21498 1 User \N \N 1 User \N update ---\nunique_session_id:\n- uhYb1yBYGWPPx7ymK6aA\n- D9sBAYGF16YbGLZk3ouE\n 213 \N 187.149.64.72 ab41159b-5c6f-495a-9de2-f31da4b49794 2019-11-18 22:26:12.326998 21499 1469 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 596\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.284E3\ntotal: !ruby/object:BigDecimal 18:0.1615E4\nstatus: 0\ndate_sale: 2019-11-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-758\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 66dd6ad4-9d0f-4ad9-97e8-454e2b2f40da 2019-11-18 22:27:41.575699 21500 1103 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.64.72 66dd6ad4-9d0f-4ad9-97e8-454e2b2f40da 2019-11-18 22:27:41.602981 21501 1469 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.64.72 ad66569b-1656-4ae6-bdf7-6a8e7e0e29ae 2019-11-18 22:29:34.605335 21502 2040 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 596\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1615E4\nmove_type: '1'\nsale_id: 1469\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-758\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1615E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-758 187.149.64.72 ad66569b-1656-4ae6-bdf7-6a8e7e0e29ae 2019-11-18 22:29:34.625532 21503 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-18 18:27:42.096393000 Z\n- &1 2019-11-18 22:06:42.139686000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-18 23:03:22.662026204 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934423\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938472\n mask_addr: 4294967295\nsign_in_count:\n- 937\n- 938\n 1876 \N 200.68.151.168 19597bc4-612f-49e8-9410-1e868752fa9d 2019-11-18 23:03:22.67289 21504 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wC6FfwnzyJivSKdu3kkQ\n- vxgaeCMuAhAc7XAwVRUA\n 1877 \N 200.68.151.168 19597bc4-612f-49e8-9410-1e868752fa9d 2019-11-18 23:03:22.692204 21505 596 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 596\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6365E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.6E4\ncash_fund: !ruby/object:BigDecimal 18:0.1047E4\nphysical_cash: !ruby/object:BigDecimal 18:0.7047E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.64.72 4dc5781a-555c-45fd-b17d-f7d9fa3db458 2019-11-18 23:18:52.669059 21506 596 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.64.72 4dc5781a-555c-45fd-b17d-f7d9fa3db458 2019-11-18 23:18:52.680511 21507 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-18 22:06:42.139686000 Z\n- &1 2019-11-18 23:03:22.662026000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-18 23:35:44.820428963 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938472\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938472\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 938\n- 939\n 1878 \N 189.186.111.139 46c95e65-9925-4a4e-865d-e6433c0637a2 2019-11-18 23:35:44.828378 21508 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vxgaeCMuAhAc7XAwVRUA\n- c5McAML62nDqA7aUgTAx\n 1879 \N 189.186.111.139 46c95e65-9925-4a4e-865d-e6433c0637a2 2019-11-18 23:35:44.845517 21509 198 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-20\namount: !ruby/object:BigDecimal 18:0.126E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.126E4\nobservations: ''\npurchase_date: 2019-11-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-20 por $ 1260.0 MXN creada. 189.186.111.139 e9446af0-0b1a-4c66-afad-f870acbe1e29 2019-11-18 23:39:46.365923 21510 1363 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 871\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.111.139 e9446af0-0b1a-4c66-afad-f870acbe1e29 2019-11-18 23:39:46.391568 21511 944 Product \N \N 4 User \N create ---\nsku: VES-944\nname: VST-0065\ndescription: "VESTIDO LATISTE DORADO CON NEGRO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.82E3\nprice_sale: !ruby/object:BigDecimal 18:0.1989E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-944 fue creado. 189.186.111.139 ff160052-a15d-4497-af10-5e87e1d87b14 2019-11-18 23:50:00.635829 21512 944 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000944'\n 2 \N 189.186.111.139 ff160052-a15d-4497-af10-5e87e1d87b14 2019-11-18 23:50:00.669427 21513 945 Product \N \N 4 User \N create ---\nsku: CHA-945\nname: CHA-0023\ndescription: "GABARDINA CQBYCQ \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.92E3\nprice_sale: !ruby/object:BigDecimal 18:0.2299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-945 fue creado. 189.186.111.139 ac4098ed-2f9c-47a7-8961-0eb7066eab8f 2019-11-18 23:57:48.30154 21514 945 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000945'\n 2 \N 189.186.111.139 ac4098ed-2f9c-47a7-8961-0eb7066eab8f 2019-11-18 23:57:48.328243 21515 199 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-34\namount: !ruby/object:BigDecimal 18:0.177E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.177E5\nobservations: ''\npurchase_date: 2019-11-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-34 por $ 17700.0 MXN creada. 189.186.111.139 6d1ba8a1-922f-4c0f-9b14-e73e6e0ddfe3 2019-11-18 23:57:53.492453 21516 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-18 23:03:22.662026000 Z\n- &1 2019-11-18 23:35:44.820428000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-19 01:27:20.211011017 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938472\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938472\n mask_addr: 4294967295\nsign_in_count:\n- 939\n- 940\n 1880 \N 200.68.151.168 a7e57801-c8a1-4fa5-9106-5c73ed9b9b10 2019-11-19 01:27:20.226648 21517 4 User \N \N 4 User \N update ---\nunique_session_id:\n- c5McAML62nDqA7aUgTAx\n- tWAGEy5gyWq_Z1DE_7zs\n 1881 \N 200.68.151.168 a7e57801-c8a1-4fa5-9106-5c73ed9b9b10 2019-11-19 01:27:20.257628 21518 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 17:23:26.283995000 Z\n- &1 2019-11-18 18:40:56.398388000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-19 02:48:44.935485996 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 45\n- 46\n 93 \N 189.186.111.139 e5d2cac7-1601-4c3c-9b41-5a83b3c56b28 2019-11-19 02:48:44.946726 21519 21 User \N \N 21 User \N update ---\nunique_session_id:\n- kRp3TM3DDzyuLyxRu4zx\n- ALzCNb_DdpbU6kWEFtr7\n 94 \N 189.186.111.139 e5d2cac7-1601-4c3c-9b41-5a83b3c56b28 2019-11-19 02:48:44.964791 21520 1470 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 595\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.10485E3\ntotal: !ruby/object:BigDecimal 18:0.59415E3\nstatus: 0\ndate_sale: 2019-11-18\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-130\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 a9f5f273-175d-406b-bbd4-37771e612181 2019-11-19 02:50:26.28935 21521 1286 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 3 \N 189.186.111.139 a9f5f273-175d-406b-bbd4-37771e612181 2019-11-19 02:50:26.314825 21522 1470 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 0d8d6dbd-ee43-43ae-8769-9e343ab21190 2019-11-19 02:50:43.803873 21523 2041 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 595\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.59415E3\nmove_type: '1'\nsale_id: 1470\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-130\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.585E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-130 189.186.111.139 0d8d6dbd-ee43-43ae-8769-9e343ab21190 2019-11-19 02:50:43.823973 21524 218 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 595\nquantity: !ruby/object:BigDecimal 18:0.1E2\nstatus: 1\nobservations: AYUDA\nexpense_date: 2019-11-18\nexpense_code: PV3-E-13\n 1 Egreso por 10.0 registrado 189.186.111.139 5af53c7f-dc0d-42ad-a760-ab5d4e9b92b4 2019-11-19 03:06:13.949921 21525 2042 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 595\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 218\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.111.139 5af53c7f-dc0d-42ad-a760-ab5d4e9b92b4 2019-11-19 03:06:13.970895 21526 597 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 595\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.80415E3\namount_out: !ruby/object:BigDecimal 18:0.1E2\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.891E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1391E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 78733976-6bd6-4b78-9d94-4c5864ba496e 2019-11-19 03:07:44.603689 21527 595 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 78733976-6bd6-4b78-9d94-4c5864ba496e 2019-11-19 03:07:44.615011 21528 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 17:02:11.168208000 Z\n- &1 2019-11-17 16:59:54.844289000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-19 16:58:52.037051802 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116834\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 65\n- 66\n 132 \N 189.186.111.139 35d13818-dc74-439a-8333-61af4a3b7b85 2019-11-19 16:58:52.06712 21529 23 User \N \N 23 User \N update ---\nunique_session_id:\n- AzLr522tB_9hAiJFdnon\n- LxQMSstFKaCdxyryazmy\n 133 \N 189.186.111.139 35d13818-dc74-439a-8333-61af4a3b7b85 2019-11-19 16:58:52.088525 21530 597 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.891E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 891.0 189.186.111.139 02de82a7-3d62-4cc6-9fa2-8e47d6c0694b 2019-11-19 17:00:44.540709 21531 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-18 18:00:13.755348000 Z\n- &1 2019-11-18 22:21:38.128521000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-19 18:56:53.026135681 Z\nsign_in_count:\n- 382\n- 383\n 769 \N 187.149.64.72 e193ff3a-7f07-4c06-9765-33b5fd334ee1 2019-11-19 18:56:53.031542 21532 2 User \N \N 2 User \N update ---\nunique_session_id:\n- naXQmDCwyTQfsQ57yuTN\n- ybxChojPnNjq-3WxbbwT\n 770 \N 187.149.64.72 e193ff3a-7f07-4c06-9765-33b5fd334ee1 2019-11-19 18:56:53.045684 21533 598 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1047E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1047.0 187.149.64.72 efa07ea0-4141-41a1-a8ef-e203ee96f608 2019-11-19 18:57:11.68988 21903 1 User \N \N 1 User \N update ---\nunique_session_id:\n- rVJteWpJ_zMvVszsB-3q\n- xHiLtUL9QLPqrQRsZPDV\n 227 \N 187.149.58.33 c5187a0d-175e-4d25-8462-b6d668187586 2019-11-23 19:57:59.526957 21534 2043 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 598\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1345\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-709 187.149.64.72 bbc072ed-137f-4b9b-8ec6-5c9d9f1b0d7e 2019-11-19 18:58:09.327998 21535 1471 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 598\namount: !ruby/object:BigDecimal 18:0.149E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.149E3\nstatus: 0\ndate_sale: 2019-11-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-759\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 be4b8d67-6f05-4330-b9f9-58da4da49eca 2019-11-19 19:00:09.840434 21536 1310 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.64.72 be4b8d67-6f05-4330-b9f9-58da4da49eca 2019-11-19 19:00:09.868282 21537 1471 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.64.72 94c40eed-531f-4bc4-b519-1a8a44c73548 2019-11-19 19:00:21.569863 21538 2044 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 598\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.149E3\nmove_type: '1'\nsale_id: 1471\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-759\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.135E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-759 187.149.64.72 94c40eed-531f-4bc4-b519-1a8a44c73548 2019-11-19 19:00:21.588716 21539 1471 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-759 cancelada. 187.149.64.72 8c6f371f-776a-443c-821e-3725ac8768cb 2019-11-19 19:08:58.916495 21540 2044 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 598\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.149E3\nmove_type: '1'\nsale_id: 1471\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-759\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.135E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.64.72 8c6f371f-776a-443c-821e-3725ac8768cb 2019-11-19 19:08:58.941466 21541 1310 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.64.72 8c6f371f-776a-443c-821e-3725ac8768cb 2019-11-19 19:08:58.966831 21542 1472 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 598\namount: !ruby/object:BigDecimal 18:0.218E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.218E3\nstatus: 0\ndate_sale: 2019-11-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-760\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.64.72 56ee122b-16ad-40af-9744-529dd66c2997 2019-11-19 19:10:08.654259 21543 1322 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.64.72 56ee122b-16ad-40af-9744-529dd66c2997 2019-11-19 19:10:08.678931 21544 1309 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.64.72 56ee122b-16ad-40af-9744-529dd66c2997 2019-11-19 19:10:08.699501 21545 1472 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.64.72 8e6016ae-934d-41ae-ae8a-1470260ee955 2019-11-19 19:10:21.141968 21546 2045 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 598\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.218E3\nmove_type: '1'\nsale_id: 1472\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-760\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.218E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-760 187.149.64.72 8e6016ae-934d-41ae-ae8a-1470260ee955 2019-11-19 19:10:21.161798 21547 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-18 23:35:44.820428000 Z\n- &1 2019-11-19 01:27:20.211011000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-19 21:44:08.542173395 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938472\n mask_addr: 4294967295\nsign_in_count:\n- 940\n- 941\n 1882 \N 200.68.151.168 f8cfffb9-cdce-4764-a2a9-96476d0ac770 2019-11-19 21:44:08.559876 21548 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tWAGEy5gyWq_Z1DE_7zs\n- NsXXyhyym9C5yQbDo9SE\n 1883 \N 200.68.151.168 f8cfffb9-cdce-4764-a2a9-96476d0ac770 2019-11-19 21:44:08.580129 21549 1473 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 597\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-11-19\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-131\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 09b13b3c-9371-4489-a4ac-b8003b886d35 2019-11-19 22:21:02.568857 21550 1243 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.111.139 09b13b3c-9371-4489-a4ac-b8003b886d35 2019-11-19 22:21:02.610589 21551 1473 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 9ba4179c-45bd-4c9e-b863-6a7b5993a5f2 2019-11-19 22:21:11.112693 21552 2046 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 597\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 1473\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-131\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-131 189.186.111.139 9ba4179c-45bd-4c9e-b863-6a7b5993a5f2 2019-11-19 22:21:11.134222 21553 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-19 01:27:20.211011000 Z\n- &1 2019-11-19 21:44:08.542173000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-19 22:33:54.008400579 Z\nsign_in_count:\n- 941\n- 942\n 1884 \N 200.68.151.168 4e92a177-a8fb-4289-803b-e9f5d0859038 2019-11-19 22:33:54.035217 21554 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NsXXyhyym9C5yQbDo9SE\n- EW_uBrqcWe8tvAwNPkMy\n 1885 \N 200.68.151.168 4e92a177-a8fb-4289-803b-e9f5d0859038 2019-11-19 22:33:54.055763 21555 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-19 21:44:08.542173000 Z\n- &1 2019-11-19 22:33:54.008400000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-19 22:43:14.007365613 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938472\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3381939781\n mask_addr: 4294967295\nsign_in_count:\n- 942\n- 943\n 1886 \N 201.148.78.69 40e70f16-ad4f-4893-8e71-a59ab78afd70 2019-11-19 22:43:14.013609 21557 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-19 22:33:54.008400000 Z\n- &1 2019-11-19 22:43:14.007365000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-19 22:55:53.303633893 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938472\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3381939781\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3381939781\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938472\n mask_addr: 4294967295\nsign_in_count:\n- 943\n- 944\n 1888 \N 200.68.151.168 4e6a3215-485a-4d93-82fe-3912e7c452ab 2019-11-19 22:55:53.310799 21558 4 User \N \N 4 User \N update ---\nunique_session_id:\n- G2hSUCsJQpXxxhFMXK3q\n- bQJ4guqT-aW7ttM__Ufy\n 1889 \N 200.68.151.168 4e6a3215-485a-4d93-82fe-3912e7c452ab 2019-11-19 22:55:53.326728 21559 2047 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 594\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.1357E4\nmove_type: '1'\nsale_id: 1296\ncardnumber: 772\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-522 187.149.105.134 4ee783ba-938e-4260-8464-9956fd4d62d0 2019-11-19 23:44:00.039245 21560 2048 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 594\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.1357E4\nmove_type: '1'\nsale_id: 1296\ncardnumber: 772\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-522 187.149.105.134 457f4d2e-ceb8-47d2-945b-22d77ccc715a 2019-11-19 23:44:00.130737 21561 2047 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 594\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.1357E4\nmove_type: '1'\nsale_id: 1296\ncardnumber: 772\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.105.134 f8ebedbf-6bf6-4a90-837a-b34dacd02429 2019-11-19 23:44:03.316709 21562 1296 Sale \N \N 27 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.105.134 69f4c87f-7e96-4207-a310-385d1e4ba479 2019-11-19 23:44:05.396161 21563 2049 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 594\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.589E3\nmove_type: '1'\nsale_id: 1403\ncardnumber: 772\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-561 187.149.105.134 3b77681e-0dfa-4fef-a977-c3a03eda6c19 2019-11-19 23:45:17.843641 21564 1403 Sale \N \N 27 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.105.134 0aaa0bc4-6982-4638-a49b-e2a4398ed156 2019-11-19 23:45:22.435008 21565 2050 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 598\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.589E3\nmove_type: '1'\nsale_id: 1401\ncardnumber: 772\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-728 187.149.105.134 37dc2b16-87e4-4141-8fd1-d835406776eb 2019-11-19 23:47:14.816962 21566 1401 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.105.134 74364861-1bce-43ce-8636-b051a5942736 2019-11-19 23:47:17.905319 21567 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-19 22:43:14.007365000 Z\n- &1 2019-11-19 22:55:53.303633000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-19 23:57:37.542695116 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3381939781\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938472\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938472\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3381939781\n mask_addr: 4294967295\nsign_in_count:\n- 944\n- 945\n 1890 \N 201.148.78.69 bcd7de97-f8ba-4c65-a637-dbe01f08e006 2019-11-19 23:57:37.551153 21568 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bQJ4guqT-aW7ttM__Ufy\n- bmxJy_ZycmUDiLsfuarc\n 1891 \N 201.148.78.69 bcd7de97-f8ba-4c65-a637-dbe01f08e006 2019-11-19 23:57:37.567943 21569 2051 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 594\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1235\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-496 187.149.105.134 2017789f-ae98-4225-81f4-96fd30d430a2 2019-11-20 00:39:43.289588 21570 598 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 598\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1307E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.765E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1765E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.84.21 b326935f-0487-4c36-910f-e74ac48edf4d 2019-11-20 02:50:02.180505 21571 598 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.84.21 b326935f-0487-4c36-910f-e74ac48edf4d 2019-11-20 02:50:02.19965 21572 599 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 597\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.799E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.8E3\ncash_fund: !ruby/object:BigDecimal 18:0.89E3\nphysical_cash: !ruby/object:BigDecimal 18:0.169E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 356f46e1-5daf-43e8-8cc0-491ab35f1fbf 2019-11-20 02:52:54.745429 21573 597 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 356f46e1-5daf-43e8-8cc0-491ab35f1fbf 2019-11-20 02:52:54.758411 21574 600 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 594\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2446E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.9E3\ncash_fund: !ruby/object:BigDecimal 18:0.991E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1891E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.84.21 71750650-13bb-4158-a301-83b3d52e2f1c 2019-11-20 02:57:30.292128 21575 594 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.84.21 71750650-13bb-4158-a301-83b3d52e2f1c 2019-11-20 02:57:30.304746 21621 1364 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 936\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 3381ad61-2f1c-4fea-b33b-bf68ff86c20b 2019-11-20 20:29:59.183992 21576 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-19 22:55:53.303633000 Z\n- &1 2019-11-19 23:57:37.542695000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-20 03:48:21.520881994 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938472\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3381939781\n mask_addr: 4294967295\nsign_in_count:\n- 945\n- 946\n 1892 \N 201.148.78.69 a0fc4715-031c-47da-abcd-fa1bc1079685 2019-11-20 03:48:21.530624 21577 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bmxJy_ZycmUDiLsfuarc\n- gusUFvRxuHRjzUMXtyjU\n 1893 \N 201.148.78.69 a0fc4715-031c-47da-abcd-fa1bc1079685 2019-11-20 03:48:21.549632 21578 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-17 16:59:54.844289000 Z\n- &1 2019-11-19 16:58:52.037051000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-20 17:03:03.253852976 Z\nsign_in_count:\n- 66\n- 67\n 134 \N 189.186.111.139 005e3986-2e04-45b6-9c56-820817cb68cb 2019-11-20 17:03:03.290675 21579 23 User \N \N 23 User \N update ---\nunique_session_id:\n- LxQMSstFKaCdxyryazmy\n- LnxTZx94__tFg3GTP8tQ\n 135 \N 189.186.111.139 005e3986-2e04-45b6-9c56-820817cb68cb 2019-11-20 17:03:03.314916 21580 599 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.89E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 890.0 189.186.111.139 d7399562-c65c-4e2b-81e4-7e1f7a458961 2019-11-20 17:03:43.178888 21581 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-17 01:30:19.426042000 Z\n- &1 2019-11-17 22:16:00.507060000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-20 18:38:48.247120836 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 37\n- 38\n 76 \N 187.149.58.33 22987409-d5e3-4fb4-ba16-b72971e057c9 2019-11-20 18:38:48.283995 21582 26 User \N \N 26 User \N update ---\nunique_session_id:\n- 5C1CyyXVo5hiXyCpfYN_\n- aZPmJuXG7pFeG61QB7xC\n 77 \N 187.149.58.33 22987409-d5e3-4fb4-ba16-b72971e057c9 2019-11-20 18:38:48.310376 21583 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-19 23:57:37.542695000 Z\n- &1 2019-11-20 03:48:21.520881000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-20 19:27:34.298653708 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3381939781\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 946\n- 947\n 1894 \N 187.149.58.33 652fd237-fa7f-462a-9d20-1ffd29f13a66 2019-11-20 19:27:34.308219 21584 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gusUFvRxuHRjzUMXtyjU\n- M_C8_ySg-zMyD78zYn-p\n 1895 \N 187.149.58.33 652fd237-fa7f-462a-9d20-1ffd29f13a66 2019-11-20 19:27:34.330735 21585 1136 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.58.33 bac0ab56-6c67-4c26-b2b0-998f742166a2 2019-11-20 19:29:08.70451 21586 1136 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.58.33 eeb59ce8-cf53-4df6-86b6-fdd66dd97d06 2019-11-20 19:29:11.587867 21587 1137 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.58.33 0d47aea8-d4a3-48f6-8138-17295987766d 2019-11-20 19:29:20.159719 21588 1137 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 0850ca2a-22e0-4414-bad1-c4807fdaa93d 2019-11-20 19:29:22.40327 21589 821 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 1638bdf6-92f4-4573-9e46-08a00d60d34d 2019-11-20 19:29:40.145811 21590 821 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.58.33 c3193235-18df-4032-9f1f-10d6df62ddcd 2019-11-20 19:29:43.399728 21591 837 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 461403f6-b1dc-436b-b756-7fbf83249c77 2019-11-20 19:29:52.911412 21592 859 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 23603d9c-f787-419e-8fce-ff1fbe8beb3b 2019-11-20 19:30:24.202135 21593 859 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.58.33 b260dc62-249c-423e-8f61-f60c7d7c0016 2019-11-20 19:30:33.407894 21594 859 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.58.33 c9d22adb-6536-4a79-a36d-63b106649e0b 2019-11-20 19:33:00.26769 21595 859 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.58.33 7e55e8b9-b3cb-45fe-908e-81730d808212 2019-11-20 19:34:37.534173 21596 309 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-11-20\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.58.33 c36c9b13-de5e-4ec9-8746-dd3202f2cfae 2019-11-20 19:34:40.145453 21597 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-18 22:21:38.128521000 Z\n- &1 2019-11-19 18:56:53.026135000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-20 19:40:24.544507418 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 383\n- 384\n 771 \N 187.149.58.33 c5b1a5a6-ba64-4bcc-b9c5-6b7feaaa48c6 2019-11-20 19:40:24.55208 21598 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ybxChojPnNjq-3WxbbwT\n- mvfSoiJgD58m6DPWpjBe\n 772 \N 187.149.58.33 c5b1a5a6-ba64-4bcc-b9c5-6b7feaaa48c6 2019-11-20 19:40:24.566961 21599 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-20 03:48:21.520881000 Z\n- &1 2019-11-20 19:27:34.298653000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-20 19:43:44.994391879 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3381939781\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3381939781\n mask_addr: 4294967295\nsign_in_count:\n- 947\n- 948\n 1896 \N 201.148.78.69 e0c7172c-2741-4b54-a30d-da5b0715a9a2 2019-11-20 19:43:45.00287 21600 4 User \N \N 4 User \N update ---\nunique_session_id:\n- M_C8_ySg-zMyD78zYn-p\n- "-_4HVe_DJHz-43xjBxrB"\n 1897 \N 201.148.78.69 e0c7172c-2741-4b54-a30d-da5b0715a9a2 2019-11-20 19:43:45.030915 21622 1318 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.58.33 3381ad61-2f1c-4fea-b33b-bf68ff86c20b 2019-11-20 20:29:59.201171 21623 1305 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.58.33 3381ad61-2f1c-4fea-b33b-bf68ff86c20b 2019-11-20 20:29:59.218328 21601 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-20 19:27:34.298653000 Z\n- &1 2019-11-20 19:43:44.994391000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-20 19:45:06.826079993 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3381939781\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3381939781\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 948\n- 949\n 1898 \N 187.149.58.33 efee6ae7-f1d3-4b87-95dc-7f9404bbd6a9 2019-11-20 19:45:06.833403 21602 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-_4HVe_DJHz-43xjBxrB"\n- EswRyxPxfYc6L8rjwjex\n 1899 \N 187.149.58.33 efee6ae7-f1d3-4b87-95dc-7f9404bbd6a9 2019-11-20 19:45:06.84909 21603 885 Product \N \N 4 User \N update ---\nname:\n- FLD-0020\n- FLD-0018\ndescription:\n- "Falda Patiles \\r\\n"\n- "NYLON LARGA CON CHINOS ST-48057\\r\\n"\nprice_base:\n- !ruby/object:BigDecimal 18:0.26E3\n- !ruby/object:BigDecimal 18:0.36E3\nprice_sale:\n- !ruby/object:BigDecimal 18:0.699E3\n- !ruby/object:BigDecimal 18:0.899E3\n 3 El producto FAL-885 fue modificado. 187.149.58.33 b0fb4796-0d2a-4efb-8a63-4b8be9da427b 2019-11-20 20:10:42.370356 21604 946 Product \N \N 4 User \N create ---\nsku: BLU-946\nname: BLS-0103\ndescription: "BLUSA DE TERCIOPELO NEGRA Y VIOLETA ST-9402TK\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3E3\nprice_sale: !ruby/object:BigDecimal 18:0.749E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: PHOTO-2019-11-18-17-13-25.jpg\ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-946 fue creado. 187.149.58.33 331dbaa9-309d-4617-b4b2-b8fa95349dd3 2019-11-20 20:24:26.533693 21605 946 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000946'\n 2 \N 187.149.58.33 331dbaa9-309d-4617-b4b2-b8fa95349dd3 2019-11-20 20:24:26.568558 21606 947 Product \N \N 4 User \N create ---\nsku: BLU-947\nname: BLS-0104\ndescription: "BLUSA TERCIOPELA NEGRA ST-9298\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.36E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: PHOTO-2019-11-18-17-13-24.jpg\ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-947 fue creado. 187.149.58.33 c270c811-ee56-4b98-acaf-bb2383dc9241 2019-11-20 20:25:13.455181 21607 947 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000947'\n 2 \N 187.149.58.33 c270c811-ee56-4b98-acaf-bb2383dc9241 2019-11-20 20:25:13.480457 21608 948 Product \N \N 4 User \N create ---\nsku: BLU-948\nname: BLS-0105\ndescription: "BLUSA TERCIOPELO NEGRA ST-9503\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.36E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: PHOTO-2019-11-18-17-13-25__1_.jpg\ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-948 fue creado. 187.149.58.33 d99d4f1f-7221-4e45-9d6c-a79a922880d9 2019-11-20 20:25:55.749392 21609 948 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000948'\n 2 \N 187.149.58.33 d99d4f1f-7221-4e45-9d6c-a79a922880d9 2019-11-20 20:25:55.775649 21610 200 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-35\namount: !ruby/object:BigDecimal 18:0.792E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.792E4\nobservations: ''\npurchase_date: 2019-11-20\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-35 por $ 7920.0 MXN creada. 187.149.58.33 5199cf20-a328-4e30-96b8-48b9b6b26f06 2019-11-20 20:26:00.30368 21611 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-11-14 22:15:07.554740000 Z\n- &1 2019-11-16 20:44:10.475718000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-20 20:29:10.787135935 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 17\n- 18\n 36 \N 187.149.58.33 bdf0cdec-d231-485c-985e-7c39446b3ce8 2019-11-20 20:29:10.794615 21612 24 User \N \N 24 User \N update ---\nunique_session_id:\n- 1xwYyHSubixckyPb-vzc\n- RdDy2mzmw_uMYymxkBkg\n 37 \N 187.149.58.33 bdf0cdec-d231-485c-985e-7c39446b3ce8 2019-11-20 20:29:10.808081 21613 949 Product \N \N 4 User \N create ---\nsku: BLU-949\nname: BLS-0101\ndescription: "BLUSA MUYMUY ST-99095 COLOR NGREA, TINTA Y VERDE\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.2E3\nprice_sale: !ruby/object:BigDecimal 18:0.549E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-949 fue creado. 187.149.58.33 3a03eab1-fee6-4815-8611-89658099bb34 2019-11-20 20:29:12.367025 21614 949 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000949'\n 2 \N 187.149.58.33 3a03eab1-fee6-4815-8611-89658099bb34 2019-11-20 20:29:12.391415 21615 600 OpenCashRegister \N \N 24 User \N create ---\ncash_register_id: 2\nuser_id: 24\ninitial_cash: !ruby/object:BigDecimal 18:0.991E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 991.0 187.149.58.33 e0a2a56d-8362-444a-8ad2-ff3bb932816f 2019-11-20 20:29:15.339806 21616 1279 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.58.33 07de6f5b-b7a8-4379-8ba7-2507bc9b65a2 2019-11-20 20:29:37.486685 21617 1279 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.58.33 e9b29aa7-57be-410d-8967-1cee00592357 2019-11-20 20:29:42.19535 21618 310 Transfer \N \N 24 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-11-20\nuser_id: 24\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.58.33 6b24769d-db56-4db6-8fbc-2530c792f063 2019-11-20 20:29:43.584732 21619 308 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-20\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.58.33 3381ad61-2f1c-4fea-b33b-bf68ff86c20b 2019-11-20 20:29:59.14639 21620 1320 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.58.33 3381ad61-2f1c-4fea-b33b-bf68ff86c20b 2019-11-20 20:29:59.163204 21624 1365 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 943\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 3381ad61-2f1c-4fea-b33b-bf68ff86c20b 2019-11-20 20:29:59.238442 21625 1306 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.58.33 3381ad61-2f1c-4fea-b33b-bf68ff86c20b 2019-11-20 20:29:59.255728 21626 950 Product \N \N 4 User \N create ---\nsku: BLU-950\nname: BLS-0102\ndescription: "BLUSA APEACH NEGRA Y CLAY ST-JT3319\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.28E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: PHOTO-2019-11-04-14-14-07__2_.jpg\ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-950 fue creado. 187.149.58.33 b7d54f40-acba-4bff-ae75-a31e00f29ba0 2019-11-20 20:30:16.970266 21627 950 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000950'\n 2 \N 187.149.58.33 b7d54f40-acba-4bff-ae75-a31e00f29ba0 2019-11-20 20:30:17.005857 21628 310 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-20\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.58.33 8627a7cd-4878-4d9d-82d1-77a14afbf3bc 2019-11-20 20:30:19.346149 21629 1366 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 894\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 8627a7cd-4878-4d9d-82d1-77a14afbf3bc 2019-11-20 20:30:19.36419 21630 201 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-36\namount: !ruby/object:BigDecimal 18:0.696E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.696E4\nobservations: ''\npurchase_date: 2019-11-20\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-36 por $ 6960.0 MXN creada. 187.149.58.33 d6eaf46a-1c82-485a-8aa5-63bbdcb618a7 2019-11-20 20:30:21.75671 21631 601 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.765E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 765.0 187.149.58.33 679a5d41-1796-469e-bee7-52086698b895 2019-11-20 20:30:41.706253 21632 311 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-11-20\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.58.33 f42a33b5-dd0c-4d8d-bcb0-bf42ad4cb3bb 2019-11-20 20:32:01.643837 21633 1474 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 601\namount: !ruby/object:BigDecimal 18:0.1549E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1549E4\nstatus: 0\ndate_sale: 2019-11-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-761\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 8b5e9cda-7739-440a-9e34-c14df1e8462c 2019-11-20 20:32:12.808864 21634 1366 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.58.33 8b5e9cda-7739-440a-9e34-c14df1e8462c 2019-11-20 20:32:12.833586 21635 1474 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 dd42a2c0-de87-4342-a3d0-7acce425ae97 2019-11-20 20:32:19.413577 21636 2052 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 601\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1549E4\nmove_type: '1'\nsale_id: 1474\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-761\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1549E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-761 187.149.58.33 dd42a2c0-de87-4342-a3d0-7acce425ae97 2019-11-20 20:32:19.435055 21637 945 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '945'\n is_parent: false\n sku: CHA-945\n name: CHA-0023\n description: "GABARDINA CQBYCQ \\r\\n"\n price_base: '920.0'\n price_sale: '2299.0'\n img_product: PHOTO-2019-11-18-17-13-24__1_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000945'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-11-18 23:57:48.290263'\n updated_at: &12 2019-11-20 20:32:55.626140674 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '945'\n sku: CHA-945\n name: CHA-0023\n description: "GABARDINA CQBYCQ \\r\\n"\n price_base: '920.00'\n price_sale: '2299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-11-18 23:57:48.290263'\n updated_at: '2019-11-18 23:57:48.325622'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000945'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '945'\n type: *3\n value: 945\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-945\n type: *7\n value: CHA-945\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0023\n type: *8\n value: CHA-0023\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "GABARDINA CQBYCQ \\r\\n"\n type: *6\n value: "GABARDINA CQBYCQ \\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '920.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.92E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '2299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2299E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-11-18-17-13-24__1_.jpg\n type: *2\n value: PHOTO-2019-11-18-17-13-24__1_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000945'\n type: *2\n value: '0000945'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-11-18 23:57:48.290263'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-11-18-17-13-24__1_.jpg\n 3 El producto CHA-945 fue modificado. 187.149.58.33 fde04d6f-ebc1-4ead-abe4-86339914fceb 2019-11-20 20:32:55.665932 21638 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-11-17 17:26:39.749108000 Z\n- &1 2019-11-17 22:09:14.733529000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-20 20:33:26.046174664 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 38\n- 39\n 78 \N 187.149.58.33 52b999a7-34ef-4805-a475-1c560cba03a1 2019-11-20 20:33:26.053167 21639 25 User \N \N 25 User \N update ---\nunique_session_id:\n- XPaTp1UPKREtus7DNcwx\n- bMr-bJ5KTTsuC2t9snHT\n 79 \N 187.149.58.33 52b999a7-34ef-4805-a475-1c560cba03a1 2019-11-20 20:33:26.066953 21640 311 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-20\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.58.33 8b62019d-3894-410f-9e3a-5a5579cd87aa 2019-11-20 20:34:20.350512 21641 1367 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 865\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 8b62019d-3894-410f-9e3a-5a5579cd87aa 2019-11-20 20:34:20.370777 21642 1368 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 947\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 8b62019d-3894-410f-9e3a-5a5579cd87aa 2019-11-20 20:34:20.391321 21643 1369 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 946\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 8b62019d-3894-410f-9e3a-5a5579cd87aa 2019-11-20 20:34:20.431686 21644 1370 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 945\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 8b62019d-3894-410f-9e3a-5a5579cd87aa 2019-11-20 20:34:20.451403 21645 1371 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 950\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 8b62019d-3894-410f-9e3a-5a5579cd87aa 2019-11-20 20:34:20.471362 21646 243 Customer \N \N 2 User \N create ---\nnick_name: ESMERALDA URIARTE\nphone: "(667) 199-4096"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ESMERALDA URIARTE fue registrado. 187.149.58.33 bcfe90f7-e620-4d62-97a2-48603ea8038b 2019-11-20 20:44:30.464999 21647 1475 Sale \N \N 2 User \N create ---\ncustomer_id: 243\nuser_id: 2\nopen_cash_register_id: 601\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-11-20\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-762\nexpiration_date: 2019-12-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 00deccf2-aff1-4d54-93cb-f2e5433c40d0 2019-11-20 20:45:17.449863 21648 1368 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 00deccf2-aff1-4d54-93cb-f2e5433c40d0 2019-11-20 20:45:17.474478 21649 2053 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 601\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 1475\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-762\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-762 187.149.58.33 50213933-e86b-47e3-a891-5c60ab6164ca 2019-11-20 20:45:30.962156 21650 1475 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 9a9e11b9-7b81-445c-a2e8-428a37d5af6b 2019-11-20 20:45:32.633309 21651 202 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-57\namount: !ruby/object:BigDecimal 18:0.174E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.174E4\nobservations: ''\npurchase_date: 2019-11-20\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-57 por $ 1740.0 MXN creada. 187.149.58.33 60aaa559-8b2a-4833-bc2c-1b9ac6833fa0 2019-11-20 20:48:26.333876 21652 1372 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 911\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 60aaa559-8b2a-4833-bc2c-1b9ac6833fa0 2019-11-20 20:48:26.357839 21653 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-17 22:16:00.507060000 Z\n- &1 2019-11-20 18:38:48.247120000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-20 20:50:23.146053668 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 38\n- 39\n 78 \N 187.149.58.33 99fc59f8-dc46-4ec7-8d71-5657d7553101 2019-11-20 20:50:23.152785 21654 26 User \N \N 26 User \N update ---\nunique_session_id:\n- aZPmJuXG7pFeG61QB7xC\n- vJv1UZirgbeL3Tpoei_P\n 79 \N 187.149.58.33 99fc59f8-dc46-4ec7-8d71-5657d7553101 2019-11-20 20:50:23.166299 21655 312 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-11-20\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 187.149.58.33 f8079b68-10bb-40d7-bda4-ecc9634c83ba 2019-11-20 20:52:11.039927 21656 951 Product \N \N 4 User \N create ---\nsku: FAL-951\nname: FLD-0020\ndescription: FALDA PATOLES MUYMUY NEGRA ST-MM0875\nprice_base: !ruby/object:BigDecimal 18:0.26E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-951 fue creado. 187.149.58.33 aff113f0-0c7c-4140-9ade-085b712c2c57 2019-11-20 20:54:35.2926 21657 951 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000951'\n 2 \N 187.149.58.33 aff113f0-0c7c-4140-9ade-085b712c2c57 2019-11-20 20:54:35.34696 21658 1373 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 951\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 aff113f0-0c7c-4140-9ade-085b712c2c57 2019-11-20 20:54:35.400129 21659 203 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-58\namount: !ruby/object:BigDecimal 18:0.156E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.156E4\nobservations: ''\npurchase_date: 2019-11-20\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-58 por $ 1560.0 MXN creada. 187.149.58.33 73d7a4d8-fdff-40f4-94bc-d1676fbe6520 2019-11-20 20:54:43.177556 21660 1373 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.58.33 73d7a4d8-fdff-40f4-94bc-d1676fbe6520 2019-11-20 20:54:43.1971 21661 313 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-11-20\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.58.33 1b063709-be55-474d-b8a1-a71f87b679a4 2019-11-20 21:02:48.154312 21662 312 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-20\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.58.33 68c112e5-38b6-40c3-9864-ff32ccf94bf0 2019-11-20 21:04:17.64627 21663 1374 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 949\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.9E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 68c112e5-38b6-40c3-9864-ff32ccf94bf0 2019-11-20 21:04:17.665004 21664 1375 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 948\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 68c112e5-38b6-40c3-9864-ff32ccf94bf0 2019-11-20 21:04:17.685041 21665 1376 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 950\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 68c112e5-38b6-40c3-9864-ff32ccf94bf0 2019-11-20 21:04:17.706047 21666 1377 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 895\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 68c112e5-38b6-40c3-9864-ff32ccf94bf0 2019-11-20 21:04:17.725983 21667 307 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-20\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.58.33 97a94848-ed8e-4e1d-bc8a-e3daced9cab5 2019-11-20 21:04:29.80135 21668 1378 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 702\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 97a94848-ed8e-4e1d-bc8a-e3daced9cab5 2019-11-20 21:04:29.838053 21669 1379 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 663\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 97a94848-ed8e-4e1d-bc8a-e3daced9cab5 2019-11-20 21:04:29.872465 21670 307 Transfer \N \N 26 User \N update --- {}\n 3 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.58.33 103b43a0-c77e-4649-84d1-d7574d297b81 2019-11-20 21:04:29.930328 21671 1378 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.58.33 103b43a0-c77e-4649-84d1-d7574d297b81 2019-11-20 21:04:29.961295 21672 1379 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.1E2\n 2 \N 187.149.58.33 103b43a0-c77e-4649-84d1-d7574d297b81 2019-11-20 21:04:29.989589 21673 309 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-20\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.58.33 6a105ba5-0dc0-42ba-b818-c8cff8c7bb7a 2019-11-20 21:18:21.13887 21674 1380 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 697\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 6a105ba5-0dc0-42ba-b818-c8cff8c7bb7a 2019-11-20 21:18:21.160891 21675 1381 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 678\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 6a105ba5-0dc0-42ba-b818-c8cff8c7bb7a 2019-11-20 21:18:21.182672 21676 1382 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 679\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 6a105ba5-0dc0-42ba-b818-c8cff8c7bb7a 2019-11-20 21:18:21.203851 21677 1383 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 793\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 6a105ba5-0dc0-42ba-b818-c8cff8c7bb7a 2019-11-20 21:18:21.224855 21678 1384 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 792\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 6a105ba5-0dc0-42ba-b818-c8cff8c7bb7a 2019-11-20 21:18:21.246451 21679 306 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-20\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.58.33 5e28db7d-5e97-48eb-a7b6-776460e9a8cc 2019-11-20 21:19:16.860256 21680 1385 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 688\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 5e28db7d-5e97-48eb-a7b6-776460e9a8cc 2019-11-20 21:19:16.882559 21681 313 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-20\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.58.33 924c8ed3-910a-4ff9-a289-96afde51c269 2019-11-20 21:22:19.61858 21682 1386 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 890\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 924c8ed3-910a-4ff9-a289-96afde51c269 2019-11-20 21:22:19.639016 21683 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-11-17 22:09:14.733529000 Z\n- &1 2019-11-20 20:33:26.046174000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-20 21:30:18.824328697 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 39\n- 40\n 80 \N 187.149.58.33 944f4dcb-0b6a-46b8-88c6-92cec4155977 2019-11-20 21:30:18.832587 21684 25 User \N \N 25 User \N update ---\nunique_session_id:\n- bMr-bJ5KTTsuC2t9snHT\n- 8kooDuTHXk9UcnsqW-UH\n 81 \N 187.149.58.33 944f4dcb-0b6a-46b8-88c6-92cec4155977 2019-11-20 21:30:18.850595 21685 1476 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 601\namount: !ruby/object:BigDecimal 18:0.1629E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1629E4\nstatus: 0\ndate_sale: 2019-11-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-763\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 7089dd05-b31a-43bb-86f7-ab3a283bd662 2019-11-20 22:01:53.713498 21686 1273 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.58.33 7089dd05-b31a-43bb-86f7-ab3a283bd662 2019-11-20 22:01:53.739302 21687 1476 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 7a33abd1-88f5-4feb-bd6d-602e371a78bd 2019-11-20 22:02:13.925297 21688 2054 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 601\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1629E4\nmove_type: '1'\nsale_id: 1476\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-763\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1629E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-763 187.149.58.33 7a33abd1-88f5-4feb-bd6d-602e371a78bd 2019-11-20 22:02:13.94559 21689 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-20 19:43:44.994391000 Z\n- &1 2019-11-20 19:45:06.826079000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-20 22:06:48.073344377 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3381939781\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3381939781\n mask_addr: 4294967295\nsign_in_count:\n- 949\n- 950\n 1900 \N 201.148.78.69 1e49058e-daca-4287-bafd-855bbdf09f23 2019-11-20 22:06:48.080728 21690 4 User \N \N 4 User \N update ---\nunique_session_id:\n- EswRyxPxfYc6L8rjwjex\n- _-H1hP1RbxzzmwjQzxhv\n 1901 \N 201.148.78.69 1e49058e-daca-4287-bafd-855bbdf09f23 2019-11-20 22:06:48.098585 21691 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-11-18 19:24:00.698796000 Z\n- &1 2019-11-18 22:26:12.309450000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-20 22:24:05.180860251 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 106\n- 107\n 214 \N 187.149.58.33 dda641da-5f89-4231-a40f-2deb5bd9953e 2019-11-20 22:24:05.187864 21692 1 User \N \N 1 User \N update ---\nunique_session_id:\n- D9sBAYGF16YbGLZk3ouE\n- s1ECvyfGZg2nBbSysBf1\n 215 \N 187.149.58.33 dda641da-5f89-4231-a40f-2deb5bd9953e 2019-11-20 22:24:05.201523 21693 1477 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 601\namount: !ruby/object:BigDecimal 18:0.459E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.459E3\nstatus: 0\ndate_sale: 2019-11-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-764\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 0bd55780-8f59-4416-8328-ff043cf6e2da 2019-11-21 01:53:04.221081 21694 1105 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 0bd55780-8f59-4416-8328-ff043cf6e2da 2019-11-21 01:53:04.251645 21695 1477 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 4995c1dc-7d01-4bfc-83a1-f9e2e63ae7ad 2019-11-21 01:53:35.901575 21696 2055 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 601\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.459E3\nmove_type: '1'\nsale_id: 1477\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-764\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.459E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-764 187.149.58.33 4995c1dc-7d01-4bfc-83a1-f9e2e63ae7ad 2019-11-21 01:53:35.925648 21697 601 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 601\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3887E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.4E4\ncash_fund: !ruby/object:BigDecimal 18:0.652E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4652E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 f7785bf9-9a51-4dd0-94fa-bf6460d75645 2019-11-21 02:45:58.135212 21698 601 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 f7785bf9-9a51-4dd0-94fa-bf6460d75645 2019-11-21 02:45:58.154061 21699 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-20 18:38:48.247120000 Z\n- &1 2019-11-20 20:50:23.146053000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-21 03:00:26.992990674 Z\nsign_in_count:\n- 39\n- 40\n 80 \N 187.149.58.33 f3b69fb1-aac1-4cf5-b4f2-8167e597a283 2019-11-21 03:00:27.019935 21700 26 User \N \N 26 User \N update ---\nunique_session_id:\n- vJv1UZirgbeL3Tpoei_P\n- wg479PT6ypUWBRvNhvCT\n 81 \N 187.149.58.33 f3b69fb1-aac1-4cf5-b4f2-8167e597a283 2019-11-21 03:00:27.038483 21701 602 CashOut \N \N 26 User \N create ---\nopen_cash_register_id: 600\nuser_id: 26\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.991E3\nphysical_cash: !ruby/object:BigDecimal 18:0.991E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 ca458b44-5ab9-4f96-8d61-caf2c8ab018e 2019-11-21 03:02:25.893865 21702 600 OpenCashRegister \N \N 26 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 ca458b44-5ab9-4f96-8d61-caf2c8ab018e 2019-11-21 03:02:25.907183 21703 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-19 16:58:52.037051000 Z\n- &1 2019-11-20 17:03:03.253852000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-21 17:03:54.792285114 Z\nsign_in_count:\n- 67\n- 68\n 136 \N 189.186.111.139 393b12a3-ec32-479f-adba-929bc443a234 2019-11-21 17:03:54.828509 21704 23 User \N \N 23 User \N update ---\nunique_session_id:\n- LnxTZx94__tFg3GTP8tQ\n- fk2mCZLMnvyvJ1oQSLM-\n 137 \N 189.186.111.139 393b12a3-ec32-479f-adba-929bc443a234 2019-11-21 17:03:54.857634 21705 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-20 19:45:06.826079000 Z\n- &1 2019-11-20 22:06:48.073344000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-21 17:21:16.395780595 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3381939781\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3381939781\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 950\n- 951\n 1902 \N 187.149.58.33 fcaf0cf5-649a-4233-9302-0ec8559e7a23 2019-11-21 17:21:16.404271 21706 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _-H1hP1RbxzzmwjQzxhv\n- X6nHThpnKn3_pbktW83j\n 1903 \N 187.149.58.33 fcaf0cf5-649a-4233-9302-0ec8559e7a23 2019-11-21 17:21:16.423825 21707 314 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-11-21\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 187.149.58.33 13179d46-86f2-4a4f-aa8f-aab332ddf361 2019-11-21 18:04:19.708913 21708 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-11-18 18:40:56.398388000 Z\n- &1 2019-11-19 02:48:44.935485000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-21 18:05:15.562834782 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 46\n- 47\n 95 \N 187.149.58.33 3d72a020-7a18-4223-b1d5-fc5b722f18cc 2019-11-21 18:05:15.570313 21709 21 User \N \N 21 User \N update ---\nunique_session_id:\n- ALzCNb_DdpbU6kWEFtr7\n- txTpAJMjwSUxu5qxZ52f\n 96 \N 187.149.58.33 3d72a020-7a18-4223-b1d5-fc5b722f18cc 2019-11-21 18:05:15.584527 21710 314 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-21\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 187.149.58.33 fc933e64-5af6-4eba-8165-17de37b47145 2019-11-21 18:06:48.8375 21711 1387 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 945\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 fc933e64-5af6-4eba-8165-17de37b47145 2019-11-21 18:06:48.861282 21712 1388 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 898\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 fc933e64-5af6-4eba-8165-17de37b47145 2019-11-21 18:06:48.891609 21713 1267 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 187.149.58.33 fc933e64-5af6-4eba-8165-17de37b47145 2019-11-21 18:06:48.909216 21714 1268 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 187.149.58.33 fc933e64-5af6-4eba-8165-17de37b47145 2019-11-21 18:06:48.926558 21715 1389 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 895\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.8E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 fc933e64-5af6-4eba-8165-17de37b47145 2019-11-21 18:06:48.948216 21716 1390 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 894\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 fc933e64-5af6-4eba-8165-17de37b47145 2019-11-21 18:06:48.971075 21717 1391 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 892\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 fc933e64-5af6-4eba-8165-17de37b47145 2019-11-21 18:06:48.993015 21718 1392 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 889\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 fc933e64-5af6-4eba-8165-17de37b47145 2019-11-21 18:06:49.013974 21719 1392 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.58.33 9eb89894-b517-4ecb-b909-5f1d70a0d4fb 2019-11-21 18:07:59.349376 21720 1392 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.58.33 f7618fb8-75ee-4776-9262-638da6ae7b43 2019-11-21 18:08:11.802796 21721 315 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-11-21\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 187.149.58.33 0e6c3ada-e29f-4f17-9aee-ecdbfe5ba24e 2019-11-21 18:08:30.729862 21722 316 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-11-21\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 187.149.58.33 691ca4b9-9ec9-49fa-8028-869a3f7ca618 2019-11-21 18:08:57.707672 21723 944 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '944'\n is_parent: false\n sku: VES-944\n name: VST-0065\n description: "VESTIDO LATISTE DORADO CON NEGRO\\r\\n"\n price_base: '820.0'\n price_sale: '1989.0'\n img_product: PHOTO-2019-11-04-14-14-08__1_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000944'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-11-18 23:50:00.622458'\n updated_at: &12 2019-11-21 18:10:07.776891419 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '944'\n sku: VES-944\n name: VST-0065\n description: "VESTIDO LATISTE DORADO CON NEGRO\\r\\n"\n price_base: '820.00'\n price_sale: '1989.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-11-18 23:50:00.622458'\n updated_at: '2019-11-18 23:50:00.666458'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000944'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '944'\n type: *3\n value: 944\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-944\n type: *7\n value: VES-944\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0065\n type: *8\n value: VST-0065\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "VESTIDO LATISTE DORADO CON NEGRO\\r\\n"\n type: *6\n value: "VESTIDO LATISTE DORADO CON NEGRO\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '820.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.82E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1989.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1989E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2019-11-04-14-14-08__1_.jpg\n type: *2\n value: PHOTO-2019-11-04-14-14-08__1_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000944'\n type: *2\n value: '0000944'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-11-18 23:50:00.622458'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2019-11-04-14-14-08__1_.jpg\n 3 El producto VES-944 fue modificado. 187.149.58.33 da830c1e-1e98-46f3-acbc-6a5ca980de45 2019-11-21 18:10:07.820449 21724 316 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-21\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 187.149.58.33 046cb877-e294-42dc-9227-c1cb8da523bc 2019-11-21 18:10:16.608311 21725 1393 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 944\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 046cb877-e294-42dc-9227-c1cb8da523bc 2019-11-21 18:10:16.627915 21726 315 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-21\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 187.149.58.33 039144b3-8cc7-4f82-9095-e9d5a2944f08 2019-11-21 18:10:44.809466 21727 1391 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.58.33 039144b3-8cc7-4f82-9095-e9d5a2944f08 2019-11-21 18:10:44.825955 21728 317 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-11-21\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 187.149.58.33 225745c8-3434-4c1b-be21-98e17cd3e450 2019-11-21 18:12:53.230613 21729 317 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-21\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 187.149.58.33 afb891f2-217e-483d-93f7-7b612a5e3854 2019-11-21 18:13:28.116365 21730 1394 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 877\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 afb891f2-217e-483d-93f7-7b612a5e3854 2019-11-21 18:13:28.13831 21731 1395 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 911\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 afb891f2-217e-483d-93f7-7b612a5e3854 2019-11-21 18:13:28.160386 21732 1396 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 949\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.9E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 afb891f2-217e-483d-93f7-7b612a5e3854 2019-11-21 18:13:28.181717 21733 1397 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 946\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 afb891f2-217e-483d-93f7-7b612a5e3854 2019-11-21 18:13:28.203166 21734 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-11-18 22:26:12.309450000 Z\n- &1 2019-11-20 22:24:05.180860000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-21 19:25:16.698826258 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 107\n- 108\n 216 \N 187.149.58.33 12291fc6-2266-46fb-a829-ba7615d068be 2019-11-21 19:25:16.711587 21735 1 User \N \N 1 User \N update ---\nunique_session_id:\n- s1ECvyfGZg2nBbSysBf1\n- B_8ZRzvihQHUkDL2zZBj\n 217 \N 187.149.58.33 12291fc6-2266-46fb-a829-ba7615d068be 2019-11-21 19:25:16.736827 21736 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-19 18:56:53.026135000 Z\n- &1 2019-11-20 19:40:24.544507000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-21 19:26:10.586710466 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 384\n- 385\n 773 \N 187.149.58.33 c9bc920f-3606-4c30-93b6-1956d97d303f 2019-11-21 19:26:10.593482 21737 2 User \N \N 2 User \N update ---\nunique_session_id:\n- mvfSoiJgD58m6DPWpjBe\n- J5VHLtQQZxTuAXXvVS5x\n 774 \N 187.149.58.33 c9bc920f-3606-4c30-93b6-1956d97d303f 2019-11-21 19:26:10.608596 21738 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-20 22:06:48.073344000 Z\n- &1 2019-11-21 17:21:16.395780000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-21 19:31:09.800469835 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3381939781\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 951\n- 952\n 1904 \N 187.149.58.33 ca7b558c-9a94-4938-b41b-d83cd2186454 2019-11-21 19:31:09.808926 21739 4 User \N \N 4 User \N update ---\nunique_session_id:\n- X6nHThpnKn3_pbktW83j\n- Ed9NNrmDi7Y7uuBM7QZz\n 1905 \N 187.149.58.33 ca7b558c-9a94-4938-b41b-d83cd2186454 2019-11-21 19:31:09.847129 21740 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-11-16 20:44:10.475718000 Z\n- &1 2019-11-20 20:29:10.787135000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-21 19:40:48.468685277 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 18\n- 19\n 38 \N 187.149.58.33 ab3cb12a-9f15-492a-b8a1-41b185f8530a 2019-11-21 19:40:48.47697 21741 24 User \N \N 24 User \N update ---\nunique_session_id:\n- RdDy2mzmw_uMYymxkBkg\n- 2t6ndE3jVCzFBceYvzG7\n 39 \N 187.149.58.33 ab3cb12a-9f15-492a-b8a1-41b185f8530a 2019-11-21 19:40:48.492379 21742 602 OpenCashRegister \N \N 24 User \N create ---\ncash_register_id: 2\nuser_id: 24\ninitial_cash: !ruby/object:BigDecimal 18:0.991E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 991.0 187.149.58.33 e71400c5-d2d6-485d-b933-a3c10b781503 2019-11-21 19:40:54.81486 21743 2056 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 602\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.349E3\nmove_type: '1'\nsale_id: 1323\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.349E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-531 187.149.58.33 618607c9-5192-46cb-a07d-2c80e362b59d 2019-11-21 19:41:28.041909 21744 1323 Sale \N \N 24 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 9e56bf31-9fa5-49eb-b3e6-cc09c709d66f 2019-11-21 19:41:35.447996 21745 603 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.652E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 652.0 187.149.58.33 35466edf-590a-4533-bec0-27e902507196 2019-11-21 19:49:19.606278 21746 244 Customer \N \N 2 User \N create ---\nnick_name: CAROLINA DIAZ\nphone: "(627) 144-3160"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CAROLINA DIAZ fue registrado. 187.149.58.33 7b6333ed-9622-4a3c-873a-27d5c3278741 2019-11-21 19:50:34.230214 21747 1478 Sale \N \N 2 User \N create ---\ncustomer_id: 244\nuser_id: 2\nopen_cash_register_id: 603\namount: !ruby/object:BigDecimal 18:0.1549E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1549E4\nstatus: 0\ndate_sale: 2019-11-21\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-765\nexpiration_date: 2019-12-26\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 e3adbe67-5c2f-4c38-8a5b-7886d1bf0394 2019-11-21 19:51:05.525575 21748 1366 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.58.33 e3adbe67-5c2f-4c38-8a5b-7886d1bf0394 2019-11-21 19:51:05.55298 21749 2057 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 603\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1478\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-765\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-765 187.149.58.33 bf75f3a1-4265-4fa5-b711-d1e258fd912d 2019-11-21 19:51:26.79277 21750 1478 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 64178e75-7c6d-4774-bb5c-b3688b35405c 2019-11-21 19:51:28.74783 21751 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-11-20 22:24:05.180860000 Z\n- &1 2019-11-21 19:25:16.698826000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-21 19:52:33.850796545 Z\nsign_in_count:\n- 108\n- 109\n 218 \N 187.149.58.33 1d728676-a630-4ef5-be95-c6856c37153d 2019-11-21 19:52:33.856736 21752 1 User \N \N 1 User \N update ---\nunique_session_id:\n- B_8ZRzvihQHUkDL2zZBj\n- 4GRJPJ1-ggN7Faestxno\n 219 \N 187.149.58.33 1d728676-a630-4ef5-be95-c6856c37153d 2019-11-21 19:52:33.869816 21753 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-17 17:19:31.154332000 Z\n- &1 2019-11-18 17:07:23.860731000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-21 21:32:29.888660287 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 23\n- 24\n 48 \N 187.149.58.33 6c91e44e-d7b8-4977-9abb-a8a459cacf87 2019-11-21 21:32:29.901072 21754 27 User \N \N 27 User \N update ---\nunique_session_id:\n- PQvyCFFRYBSrNYG6x5uy\n- dvq_xZ7GyJN3JmbcdZwy\n 49 \N 187.149.58.33 6c91e44e-d7b8-4977-9abb-a8a459cacf87 2019-11-21 21:32:29.91953 21755 1479 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 602\namount: !ruby/object:BigDecimal 18:0.16124E3\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.168E3\nstatus: 0\ndate_sale: 2019-11-21\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-581\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 86f98edf-a2f5-494b-9698-2c87168486f9 2019-11-21 23:11:15.90267 21756 1344 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.58.33 86f98edf-a2f5-494b-9698-2c87168486f9 2019-11-21 23:11:15.92858 21757 367 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.35E2\n- !ruby/object:BigDecimal 18:0.34E2\n 22 \N 187.149.58.33 86f98edf-a2f5-494b-9698-2c87168486f9 2019-11-21 23:11:15.951228 21758 1479 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 86e57405-c276-445d-9c03-0fc556ae6823 2019-11-21 23:11:20.016029 21759 2058 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 602\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.168E3\nmove_type: '1'\nsale_id: 1479\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-581\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.32E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-581 187.149.58.33 86e57405-c276-445d-9c03-0fc556ae6823 2019-11-21 23:11:20.040811 21760 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-11-20 20:29:10.787135000 Z\n- &1 2019-11-21 19:40:48.468685000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-21 23:44:25.464328596 Z\nsign_in_count:\n- 19\n- 20\n 40 \N 187.149.58.33 5149236e-12b9-4a13-9145-37a9efa20af9 2019-11-21 23:44:25.492453 21761 24 User \N \N 24 User \N update ---\nunique_session_id:\n- 2t6ndE3jVCzFBceYvzG7\n- sZML4szsXg-ACsxN2cry\n 41 \N 187.149.58.33 5149236e-12b9-4a13-9145-37a9efa20af9 2019-11-21 23:44:25.50902 21762 1125 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 187.149.58.33 16ca5e22-360e-448d-866c-2d0f6d2b2734 2019-11-21 23:45:14.109817 21763 1250 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 7c96a081-e8c6-4e37-9cf2-d7d1704ccafc 2019-11-21 23:45:33.982623 21764 318 Transfer \N \N 24 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-11-21\nuser_id: 24\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.58.33 724e82ba-74b1-4983-a205-fa4008862e40 2019-11-21 23:45:37.426042 21765 318 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-21\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.58.33 ec3e7e3d-c7ce-43bb-9ecc-0c4d3f7c7f1a 2019-11-21 23:46:21.208073 21813 24 User \N \N 24 User \N update ---\nunique_session_id:\n- ysuWC3nZhu38Kjc8bLvX\n- C-RWgMS-rPMDfEw_2CuG\n 45 \N 187.149.58.33 9b5af7bb-74ca-4ec4-a92b-0f3f40a9f825 2019-11-22 17:34:58.259892 21766 1398 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 783\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 ec3e7e3d-c7ce-43bb-9ecc-0c4d3f7c7f1a 2019-11-21 23:46:21.228314 21767 1399 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 903\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 ec3e7e3d-c7ce-43bb-9ecc-0c4d3f7c7f1a 2019-11-21 23:46:21.255841 21768 1480 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 603\namount: !ruby/object:BigDecimal 18:0.3997E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3997E4\nstatus: 0\ndate_sale: 2019-11-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-766\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 747140d4-1e6c-4e95-8447-48d86e594456 2019-11-21 23:48:23.780462 21769 1028 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.58.33 747140d4-1e6c-4e95-8447-48d86e594456 2019-11-21 23:48:23.813256 21770 1398 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.58.33 747140d4-1e6c-4e95-8447-48d86e594456 2019-11-21 23:48:23.839047 21771 1399 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.58.33 747140d4-1e6c-4e95-8447-48d86e594456 2019-11-21 23:48:23.862845 21772 1480 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 61ce14a9-2516-4123-be2d-02d41f3d41aa 2019-11-21 23:49:08.466099 21773 2059 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 603\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.3997E4\nmove_type: '1'\nsale_id: 1480\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-766\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: 0000RNNF\ncustomer_account: '0992077451818'\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-766 187.149.58.33 61ce14a9-2516-4123-be2d-02d41f3d41aa 2019-11-21 23:49:08.490059 21774 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-11-21 19:25:16.698826000 Z\n- &1 2019-11-21 19:52:33.850796000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-21 23:57:00.601166138 Z\nsign_in_count:\n- 109\n- 110\n 220 \N 187.149.58.33 881908f5-0282-4423-82df-179666bdf4b2 2019-11-21 23:57:00.607173 21775 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 4GRJPJ1-ggN7Faestxno\n- kk1JosQhgtxdDjbsGJaz\n 221 \N 187.149.58.33 881908f5-0282-4423-82df-179666bdf4b2 2019-11-21 23:57:00.620504 21776 1481 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 602\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2019-11-21\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-582\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 68d51e5a-8aed-4d02-af2b-cf0ad124b522 2019-11-22 00:38:05.854286 21777 860 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.58.33 68d51e5a-8aed-4d02-af2b-cf0ad124b522 2019-11-22 00:38:05.884355 21778 1481 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 9bd2c15d-ffd4-4b9a-9312-83d88aa41a83 2019-11-22 00:39:07.233575 21779 2060 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 602\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.789E3\nmove_type: '1'\nsale_id: 1481\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-582\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-582 187.149.58.33 9bd2c15d-ffd4-4b9a-9312-83d88aa41a83 2019-11-22 00:39:07.254928 21780 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-11-21 19:40:48.468685000 Z\n- &1 2019-11-21 23:44:25.464328000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-22 01:05:45.355152658 Z\nsign_in_count:\n- 20\n- 21\n 42 \N 187.149.58.33 65763231-96ff-4353-acba-2ccbbd0ad7db 2019-11-22 01:05:45.381387 21781 24 User \N \N 24 User \N update ---\nunique_session_id:\n- sZML4szsXg-ACsxN2cry\n- ysuWC3nZhu38Kjc8bLvX\n 43 \N 187.149.58.33 65763231-96ff-4353-acba-2ccbbd0ad7db 2019-11-22 01:05:45.404065 21782 1482 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 602\namount: !ruby/object:BigDecimal 18:0.1538E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1538E4\nstatus: 0\ndate_sale: 2019-11-21\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-583\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 6dff5428-f7d3-496d-8bdf-25787f4db516 2019-11-22 01:19:33.846961 21783 1288 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.58.33 6dff5428-f7d3-496d-8bdf-25787f4db516 2019-11-22 01:19:33.877922 21784 803 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 15 \N 187.149.58.33 6dff5428-f7d3-496d-8bdf-25787f4db516 2019-11-22 01:19:33.912062 21785 1482 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 23b7b85d-6e93-4f2f-8fd9-f912f07d82af 2019-11-22 01:23:49.536033 21786 2061 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 602\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.1538E4\nmove_type: '1'\nsale_id: 1482\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-583\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: RYGT\ncustomer_account: '1011065781960'\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-583 187.149.58.33 23b7b85d-6e93-4f2f-8fd9-f912f07d82af 2019-11-22 01:23:49.56583 21787 2062 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 599\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 1366\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-105 189.186.111.139 1e1b474a-30ef-4b83-bf1a-72a13fca4bee 2019-11-22 01:25:11.392753 21788 1366 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.111.139 97b81c03-4e3e-4a96-bcc1-f1cc4ba79dfe 2019-11-22 01:25:12.591385 21836 1487 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 8a96d09c-c1a8-465e-a917-71f3411cbac9 2019-11-22 21:27:32.793086 21991 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LTwSgzpoiArp-NSc8zwu\n- _nssgS439CkhzsSh4wwE\n 1925 \N 187.149.58.33 128ed909-b1ae-4911-8574-78fc8db1b4b5 2019-11-24 17:21:03.222013 21789 2063 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 603\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 1364\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.469E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-713 187.149.58.33 c9fa36c1-28fb-4cc8-ae99-5ccc35619357 2019-11-22 02:28:03.361863 21790 1364 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 1e4d1302-744e-41ec-bd86-a1f76339b11e 2019-11-22 02:28:07.100313 21791 1483 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 602\namount: !ruby/object:BigDecimal 18:0.625E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.625E3\nstatus: 0\ndate_sale: 2019-11-21\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-583\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 33e56ab7-3d58-4b87-84a4-ad5d56006f4b 2019-11-22 02:28:13.128918 21792 864 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 33e56ab7-3d58-4b87-84a4-ad5d56006f4b 2019-11-22 02:28:13.153471 21793 1483 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 51f21306-e734-4c9d-b1dd-590912993c63 2019-11-22 02:28:57.727018 21794 2064 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 602\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.625E3\nmove_type: '1'\nsale_id: 1483\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-583\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.625E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-583 187.149.58.33 51f21306-e734-4c9d-b1dd-590912993c63 2019-11-22 02:28:57.748691 21795 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-11-21 19:52:33.850796000 Z\n- &1 2019-11-21 23:57:00.601166000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-22 02:39:14.228079933 Z\nsign_in_count:\n- 110\n- 111\n 222 \N 187.149.58.33 aec65b99-ade3-4826-b35e-bd91a1957e9f 2019-11-22 02:39:14.234365 21796 1 User \N \N 1 User \N update ---\nunique_session_id:\n- kk1JosQhgtxdDjbsGJaz\n- _CpEzHEaBssMrz57xxW1\n 223 \N 187.149.58.33 aec65b99-ade3-4826-b35e-bd91a1957e9f 2019-11-22 02:39:14.248403 21797 603 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 603\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4966E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.921E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1621E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 7616cf26-09ce-43a3-8323-47aafd1140ed 2019-11-22 02:48:04.146885 21798 603 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 7616cf26-09ce-43a3-8323-47aafd1140ed 2019-11-22 02:48:04.16223 21799 604 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 599\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.399E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.4E3\ncash_fund: !ruby/object:BigDecimal 18:0.889E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1289E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 0aa24bf5-bcf9-473e-a650-b145befc9e90 2019-11-22 02:51:21.975183 21800 599 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 0aa24bf5-bcf9-473e-a650-b145befc9e90 2019-11-22 02:51:21.987849 21801 605 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 602\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.3469E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.1422E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2922E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 1bbce3bb-b4d1-4cc1-be36-076dd46ea18d 2019-11-22 02:56:55.062041 21802 602 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 1bbce3bb-b4d1-4cc1-be36-076dd46ea18d 2019-11-22 02:56:55.075695 21803 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-21 17:21:16.395780000 Z\n- &1 2019-11-21 19:31:09.800469000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-22 06:24:08.302854924 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\nsign_in_count:\n- 952\n- 953\n 1906 \N 187.149.27.48 a06f55c1-dd9d-4502-85a8-dd8662fb5410 2019-11-22 06:24:08.35908 21804 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Ed9NNrmDi7Y7uuBM7QZz\n- N72_63Bc8LmSDPyobw2W\n 1907 \N 187.149.27.48 a06f55c1-dd9d-4502-85a8-dd8662fb5410 2019-11-22 06:24:08.391858 21805 604 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1422E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1422.0 187.149.58.33 f02f6456-a9a6-4b34-a06f-68b43f87afbd 2019-11-22 17:05:39.465654 21806 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-20 17:03:03.253852000 Z\n- &1 2019-11-21 17:03:54.792285000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-22 17:30:02.400494731 Z\nsign_in_count:\n- 68\n- 69\n 138 \N 189.186.111.139 737d94d6-09dc-4bac-bf77-c255962c0d23 2019-11-22 17:30:02.442519 21807 23 User \N \N 23 User \N update ---\nunique_session_id:\n- fk2mCZLMnvyvJ1oQSLM-\n- yprvf7q1PYeN1E6PF1Gq\n 139 \N 189.186.111.139 737d94d6-09dc-4bac-bf77-c255962c0d23 2019-11-22 17:30:02.472621 21808 605 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.889E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 889.0 189.186.111.139 2023db4a-c130-45b0-bae8-68aab5ba3fb1 2019-11-22 17:30:16.71084 21809 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-20 19:40:24.544507000 Z\n- &1 2019-11-21 19:26:10.586710000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-22 17:33:52.938499427 Z\nsign_in_count:\n- 385\n- 386\n 775 \N 187.149.58.33 1f47cfff-7bdf-4708-97e5-a05ca465ded9 2019-11-22 17:33:52.944717 21810 2 User \N \N 2 User \N update ---\nunique_session_id:\n- J5VHLtQQZxTuAXXvVS5x\n- 6sPvm9cXw69irWmQZ2jx\n 776 \N 187.149.58.33 1f47cfff-7bdf-4708-97e5-a05ca465ded9 2019-11-22 17:33:52.962012 21811 606 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.921E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 921.0 187.149.58.33 40d8e1e2-6d9c-4c35-9154-7b536bcceb75 2019-11-22 17:34:18.292269 21812 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-11-21 23:44:25.464328000 Z\n- &1 2019-11-22 01:05:45.355152000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-22 17:34:58.240035128 Z\nsign_in_count:\n- 21\n- 22\n 44 \N 187.149.58.33 9b5af7bb-74ca-4ec4-a92b-0f3f40a9f825 2019-11-22 17:34:58.246501 41036 1074 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.40 d9598466-feaf-4eb1-a7b2-3bf0fd181774 2020-09-23 00:06:15.58359 21814 2065 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 604\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.449E3\nmove_type: '1'\nsale_id: 1371\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.449E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-548 187.149.58.33 4b114bc6-7fec-4eab-831f-8433a70b1b6a 2019-11-22 17:36:35.261486 21815 1371 Sale \N \N 24 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 2a18ad9c-d3a7-4a68-9812-3db02d7cfaca 2019-11-22 17:36:36.410473 21816 1484 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 606\namount: !ruby/object:BigDecimal 18:0.58555E3\ntax: !ruby/object:BigDecimal 18:0.4345E2\ndiscount: !ruby/object:BigDecimal 18:0.314E3\ntotal: !ruby/object:BigDecimal 18:0.315E3\nstatus: 0\ndate_sale: 2019-11-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-767\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 f9c2cf8f-4a22-472d-b50b-70f5b16f20b1 2019-11-22 17:41:27.313142 21817 690 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.58.33 f9c2cf8f-4a22-472d-b50b-70f5b16f20b1 2019-11-22 17:41:27.343378 21818 1484 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 b73b5075-b93a-41cb-8b17-a07f278c8d4f 2019-11-22 17:41:33.56715 21819 2066 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 606\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.315E3\nmove_type: '1'\nsale_id: 1484\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-767\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.315E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-767 187.149.58.33 b73b5075-b93a-41cb-8b17-a07f278c8d4f 2019-11-22 17:41:33.589633 21820 1485 Sale \N \N 2 User \N create ---\ncustomer_id: 167\nuser_id: 2\nopen_cash_register_id: 606\namount: !ruby/object:BigDecimal 18:0.969E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.969E3\nstatus: 0\ndate_sale: 2019-11-22\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-768\nexpiration_date: 2019-12-27\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 52c42c10-6838-4462-8206-f7570c9bce88 2019-11-22 17:50:55.129321 21821 1046 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 52c42c10-6838-4462-8206-f7570c9bce88 2019-11-22 17:50:55.16476 21822 2067 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 606\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1485\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-768\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-768 187.149.58.33 7943ad57-c959-4baa-828a-53348fb2eaff 2019-11-22 17:51:01.775668 21823 1485 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 1927cd44-7282-4eb0-b2ea-71479e4ae7e3 2019-11-22 17:51:04.12982 21824 1486 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 606\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-11-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-769\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 ff21896b-a418-4fb6-8a20-cb6e60e09f70 2019-11-22 18:50:30.08695 21825 1368 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 ff21896b-a418-4fb6-8a20-cb6e60e09f70 2019-11-22 18:50:30.121514 21826 1486 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 6843fd9e-a403-45e2-90b2-d989d8413f9c 2019-11-22 18:50:39.380921 21827 2068 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 606\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 1486\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-769\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-769 187.149.58.33 6843fd9e-a403-45e2-90b2-d989d8413f9c 2019-11-22 18:50:39.406877 21828 2069 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 606\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 1402\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-729 187.149.58.33 72f7e6b9-1e2d-4c89-8869-ce52483615a7 2019-11-22 20:43:50.718626 21829 1402 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 65a3305f-c44c-4dac-b3b8-4a6dd335bce5 2019-11-22 20:43:51.858032 21830 2070 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 606\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1398\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-726 187.149.58.33 02fe7eca-56a5-46ec-ad85-3de27cd47fe7 2019-11-22 20:45:30.033924 21831 1398 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 6f655986-6ae5-496d-998f-b133373961ec 2019-11-22 20:45:31.719765 21832 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-11-21 23:57:00.601166000 Z\n- &1 2019-11-22 02:39:14.228079000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-22 20:50:50.200312063 Z\nsign_in_count:\n- 111\n- 112\n 224 \N 187.149.58.33 339a5365-f547-446c-b842-6af16198dd37 2019-11-22 20:50:50.207556 21833 1 User \N \N 1 User \N update ---\nunique_session_id:\n- _CpEzHEaBssMrz57xxW1\n- rVJteWpJ_zMvVszsB-3q\n 225 \N 187.149.58.33 339a5365-f547-446c-b842-6af16198dd37 2019-11-22 20:50:50.222945 21834 1487 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 606\namount: !ruby/object:BigDecimal 18:0.1349E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1349E4\nstatus: 0\ndate_sale: 2019-11-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-770\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 121748b0-ac75-4e6c-ba8f-795cd9e8fe8b 2019-11-22 21:26:31.159324 21835 1245 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 121748b0-ac75-4e6c-ba8f-795cd9e8fe8b 2019-11-22 21:26:31.198993 21837 2071 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 606\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1349E4\nmove_type: '1'\nsale_id: 1487\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-770\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1349E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-770 187.149.58.33 8a96d09c-c1a8-465e-a917-71f3411cbac9 2019-11-22 21:27:32.819602 21838 2071 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 606\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1349E4\nmove_type: '1'\nsale_id: 1487\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-770\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1349E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.58.33 159dc3dc-50cc-4e97-867e-a608a6eb32ae 2019-11-22 21:27:35.969287 21839 2072 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 606\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1349E4\nmove_type: '1'\nsale_id: 1487\ncardnumber: 1975\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-770\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-770 187.149.58.33 9a532664-1670-47d7-a317-0b1fcc4a663e 2019-11-22 21:27:56.783187 21840 245 Customer \N \N 2 User \N create ---\nnick_name: 'ALMA LETICIA CARDENAS VALDEZ '\nphone: "(667) 473-1992"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ALMA LETICIA CARDENAS VALDEZ fue registrado. 187.149.58.33 e7be1e9f-848c-4ef2-a566-da9c7144ec04 2019-11-23 01:00:34.450225 21841 1488 Sale \N \N 2 User \N create ---\ncustomer_id: 245\nuser_id: 2\nopen_cash_register_id: 606\namount: !ruby/object:BigDecimal 18:0.1429E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1429E4\nstatus: 0\ndate_sale: 2019-11-22\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-771\nexpiration_date: 2019-12-27\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 ba42c940-0dc0-4933-8d52-b78505898dbb 2019-11-23 01:00:44.850575 21842 1277 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 ba42c940-0dc0-4933-8d52-b78505898dbb 2019-11-23 01:00:44.892014 21843 2073 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 606\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 1488\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-771\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-771 187.149.58.33 18ac8bc4-f086-496f-84b1-1089ddf313bb 2019-11-23 01:00:50.771823 21844 1488 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 c4e83876-3e71-4505-ac71-febc70bd5d1d 2019-11-23 01:00:51.842516 21845 2074 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 606\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.429E3\nmove_type: '1'\nsale_id: 1285\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.429E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-683 187.149.58.33 09812a68-2af6-428b-98df-d268720e187f 2019-11-23 01:05:11.158015 21846 1285 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 fec03193-ff33-4bfc-961f-fead0ef8420d 2019-11-23 01:05:12.703047 21847 1489 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 606\namount: !ruby/object:BigDecimal 18:0.459E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.459E3\nstatus: 0\ndate_sale: 2019-11-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-772\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 aa7d120c-0ee8-4623-86f5-4fa718666d45 2019-11-23 02:08:02.741673 21848 1105 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 aa7d120c-0ee8-4623-86f5-4fa718666d45 2019-11-23 02:08:02.777615 21849 1489 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 e0c0e5e8-84d1-43dd-bef5-34350cc2f9ab 2019-11-23 02:08:37.000828 21850 2075 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 606\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.459E3\nmove_type: '1'\nsale_id: 1489\ncardnumber: 2929\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-772\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-772 187.149.58.33 e0c0e5e8-84d1-43dd-bef5-34350cc2f9ab 2019-11-23 02:08:37.03088 21851 606 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 606\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.625E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.46E4\ncash_fund: !ruby/object:BigDecimal 18:0.763E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5363E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 cd856de5-f6c9-402f-856c-2bf8159b7fc9 2019-11-23 02:35:39.395194 21852 606 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 cd856de5-f6c9-402f-856c-2bf8159b7fc9 2019-11-23 02:35:39.413131 21853 607 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 604\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.449E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.9E3\ncash_fund: !ruby/object:BigDecimal 18:0.971E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1871E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 a0bc5e45-1a6a-4acf-9c1a-f6c24e2f99c6 2019-11-23 02:55:24.757169 21854 604 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 a0bc5e45-1a6a-4acf-9c1a-f6c24e2f99c6 2019-11-23 02:55:24.775741 21855 608 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 605\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.929E3\nphysical_cash: !ruby/object:BigDecimal 18:0.929E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 52140ae4-c496-4091-97cb-a528adc8fdce 2019-11-23 03:33:11.936536 21856 605 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 52140ae4-c496-4091-97cb-a528adc8fdce 2019-11-23 03:33:11.952431 44676 1499 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1499'\n is_parent: false\n sku: BLU-1499\n name: BLS-0154\n description: PLAYERA CON PERLAS ROSA Y NEGRA MUYMUY\n price_base: '187.0'\n price_sale: '489.0'\n img_product: B76FFE25-AD34-4DA6-9784-49D9C89C346B.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001499'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 20:51:28.124644'\n updated_at: &12 2020-11-03 21:21:11.432381669 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1499'\n sku: BLU-1499\n name: BLS-0154\n description: PLAYERA CON PERLAS ROSA Y NEGRA MUYMUY\n price_base: '187.00'\n price_sale: '489.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 20:51:28.124644'\n updated_at: '2020-11-03 20:51:28.160205'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001499'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1499'\n type: *3\n value: 1499\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1499\n type: *7\n value: BLU-1499\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0154\n type: *8\n value: BLS-0154\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PLAYERA CON PERLAS ROSA Y NEGRA MUYMUY\n type: *6\n value: PLAYERA CON PERLAS ROSA Y NEGRA MUYMUY\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '187.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.187E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '489.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.489E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: B76FFE25-AD34-4DA6-9784-49D9C89C346B.jpeg\n type: *2\n value: B76FFE25-AD34-4DA6-9784-49D9C89C346B.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001499'\n type: *2\n value: '0001499'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 20:51:28.124644'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- B76FFE25-AD34-4DA6-9784-49D9C89C346B.jpeg\n 3 El producto BLU-1499 fue modificado. 187.149.136.226 c19e7a0a-44fb-4aba-8a1f-f6dc8322617f 2020-11-03 21:21:11.483172 21857 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-21 19:31:09.800469000 Z\n- &1 2019-11-22 06:24:08.302854000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-23 04:32:53.751156403 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\nsign_in_count:\n- 953\n- 954\n 1908 \N 187.149.27.48 cea0c5a5-3519-46e0-bfa1-d24c140b56b8 2019-11-23 04:32:53.762555 21858 4 User \N \N 4 User \N update ---\nunique_session_id:\n- N72_63Bc8LmSDPyobw2W\n- FDJ1j9b3KN6EL4Hqncwb\n 1909 \N 187.149.27.48 cea0c5a5-3519-46e0-bfa1-d24c140b56b8 2019-11-23 04:32:53.786101 21859 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-22 06:24:08.302854000 Z\n- &1 2019-11-23 04:32:53.751156000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-23 07:40:26.803940086 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946138\n mask_addr: 4294967295\nsign_in_count:\n- 954\n- 955\n 1910 \N 200.68.181.154 2ed30315-bcef-4362-8791-12093c2a84d8 2019-11-23 07:40:26.819826 21860 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FDJ1j9b3KN6EL4Hqncwb\n- kjwiaRyUPRUVmJnenWwd\n 1911 \N 200.68.181.154 2ed30315-bcef-4362-8791-12093c2a84d8 2019-11-23 07:40:26.847683 21861 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-21 17:03:54.792285000 Z\n- &1 2019-11-22 17:30:02.400494000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-23 17:05:18.452341345 Z\nsign_in_count:\n- 69\n- 70\n 140 \N 189.186.111.139 5dc072a3-4367-45ba-8595-b8da26179c86 2019-11-23 17:05:18.498591 21862 23 User \N \N 23 User \N update ---\nunique_session_id:\n- yprvf7q1PYeN1E6PF1Gq\n- 8g3-Hocd8EK4EyyCYmMb\n 141 \N 189.186.111.139 5dc072a3-4367-45ba-8595-b8da26179c86 2019-11-23 17:05:18.533068 21863 607 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.929E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 929.0 189.186.111.139 97b15638-2529-4970-950e-7215ac73fa23 2019-11-23 17:05:38.946784 21864 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-23 04:32:53.751156000 Z\n- &1 2019-11-23 07:40:26.803940000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-23 17:08:57.505098050 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946138\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946138\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 955\n- 956\n 1912 \N 187.149.58.33 05c63db1-b438-4f3b-86d1-d4bdba4c363f 2019-11-23 17:08:57.527997 21865 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kjwiaRyUPRUVmJnenWwd\n- gzgo8n-kafsKG8CGUwk8\n 1913 \N 187.149.58.33 05c63db1-b438-4f3b-86d1-d4bdba4c363f 2019-11-23 17:08:57.550312 21866 836 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 187.149.58.33 dade66a2-909b-4767-8c1f-742566888e93 2019-11-23 17:09:22.245561 21867 836 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.58.33 f812bdce-5ca5-4076-a429-7cf12fa19ab2 2019-11-23 17:09:31.019066 21868 319 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2019-11-23\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 187.149.58.33 d6bd30db-1ba5-49c1-8741-9698caa7bf08 2019-11-23 17:09:32.48686 21869 1270 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 ea73fcfe-daa0-4ef0-9162-0f38dcbb5a2e 2019-11-23 17:10:00.836365 21870 1154 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 f280ac96-f37a-4cef-8ac0-cb23d01aea64 2019-11-23 17:10:07.420291 21871 1270 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.58.33 74157418-7296-450e-959e-7d9c3d21bd32 2019-11-23 17:10:10.330028 21872 1154 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.58.33 ff6d78ad-6dfd-404b-ade1-4929cc7e7c55 2019-11-23 17:10:11.907637 21873 320 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-11-23\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.58.33 1bc5945f-ed8b-4f24-aaf2-fdd181cc4793 2019-11-23 17:10:12.381485 21874 952 Product \N \N 4 User \N create ---\nsku: BOL-952\nname: 1BLCI19315\ndescription: Bolso circular tipo cruzado en material tipo croco, construcción estructurada,\n cadena decorativa con logos de metal, asa larga adicional removible y ajustable\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170766912'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-952 fue creado. 187.149.58.33 3b408cbd-e6fe-40b0-a20b-7b53515b061c 2019-11-23 17:24:38.80538 21875 204 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: \npurchase_code: CEN-C-37\namount: !ruby/object:BigDecimal 18:0.42475E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.42475E4\nobservations: ''\npurchase_date: 2019-11-23\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-37 por $ 4247.5 MXN creada. 187.149.58.33 0b2b9d39-49bb-4ec6-b779-e566bfb54f1f 2019-11-23 17:25:17.912248 21876 321 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-11-23\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.58.33 7c4d37b8-a378-41fc-847d-9f9cc965f917 2019-11-23 17:25:53.728972 21877 952 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '952'\n is_parent: false\n sku: BOL-952\n name: 1BLCI19315\n description: Bolso circular tipo cruzado en material tipo croco, construcción\n estructurada, cadena decorativa con logos de metal, asa larga adicional removible\n y ajustable\n price_base: '849.5'\n price_sale: '1699.0'\n img_product: BCRL315_NEGR_1_828x1200.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170766912'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-11-23 17:24:38.784472'\n updated_at: &12 2019-11-23 17:26:26.199987964 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '952'\n sku: BOL-952\n name: 1BLCI19315\n description: Bolso circular tipo cruzado en material tipo croco, construcción\n estructurada, cadena decorativa con logos de metal, asa larga adicional\n removible y ajustable\n price_base: '849.50'\n price_sale: '1699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-11-23 17:24:38.784472'\n updated_at: '2019-11-23 17:24:38.784472'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170766912'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '952'\n type: *3\n value: 952\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-952\n type: *7\n value: BOL-952\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCI19315\n type: *8\n value: 1BLCI19315\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: Bolso circular tipo cruzado en material tipo croco,\n construcción estructurada, cadena decorativa con logos de metal, asa\n larga adicional removible y ajustable\n type: *6\n value: Bolso circular tipo cruzado en material tipo croco, construcción\n estructurada, cadena decorativa con logos de metal, asa larga adicional\n removible y ajustable\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '849.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1699E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BCRL315_NEGR_1_828x1200.jpg\n type: *2\n value: BCRL315_NEGR_1_828x1200.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170766912'\n type: *2\n value: '7509170766912'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-11-23 17:24:38.784472'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BCRL315_NEGR_1_828x1200.jpg\n 2 El producto BOL-952 fue modificado. 187.149.58.33 b896c195-2a40-42d3-835d-62cf098bb56c 2019-11-23 17:26:26.26428 21878 322 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-11-23\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.58.33 121866c6-0f0d-490e-b48f-9658481a5f57 2019-11-23 17:27:04.277755 21879 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-20 20:50:23.146053000 Z\n- &1 2019-11-21 03:00:26.992990000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-23 17:55:54.523678576 Z\nsign_in_count:\n- 40\n- 41\n 82 \N 187.149.58.33 7a65ca37-cae7-442b-b5b8-afbb4bc15922 2019-11-23 17:55:54.53149 21880 26 User \N \N 26 User \N update ---\nunique_session_id:\n- wg479PT6ypUWBRvNhvCT\n- s5vz13ZneGszVXSzZXrf\n 83 \N 187.149.58.33 7a65ca37-cae7-442b-b5b8-afbb4bc15922 2019-11-23 17:55:54.548446 21881 608 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.971E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 971.0 187.149.58.33 593b17ac-38f8-460b-accd-7c844abbbffc 2019-11-23 17:58:10.731104 21882 1490 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 608\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2019-11-23\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-585\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 8a80f28c-82b2-4c2a-bd66-39e37e1e9e85 2019-11-23 17:58:26.701508 21883 1086 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.58.33 8a80f28c-82b2-4c2a-bd66-39e37e1e9e85 2019-11-23 17:58:26.740049 21884 1490 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 26e13319-f9e4-4ace-b36c-b7e36804e9ea 2019-11-23 17:58:47.235134 21885 2076 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 608\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.729E3\nmove_type: '1'\nsale_id: 1490\ncardnumber: 2199\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-585\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-585 187.149.58.33 26e13319-f9e4-4ace-b36c-b7e36804e9ea 2019-11-23 17:58:47.274435 21886 1491 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 608\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-11-23\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-586\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 d57d4cf5-83c1-4ab9-981b-2be12e8d7112 2019-11-23 18:20:57.593299 21887 1278 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 d57d4cf5-83c1-4ab9-981b-2be12e8d7112 2019-11-23 18:20:57.625819 21888 1491 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 7cf7fae5-2368-4665-a902-30af7f59eb89 2019-11-23 18:21:26.873535 21889 2077 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 608\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 1491\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-586\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-586 187.149.58.33 7cf7fae5-2368-4665-a902-30af7f59eb89 2019-11-23 18:21:26.905974 21890 1492 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 608\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-11-23\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-587\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 7a77af3b-df8f-41bc-8dde-40b284347e55 2019-11-23 19:33:09.520422 21891 718 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.58.33 7a77af3b-df8f-41bc-8dde-40b284347e55 2019-11-23 19:33:09.568968 21892 1492 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 1ddeaaa0-eb57-46ef-bab0-bcabffe7d28e 2019-11-23 19:33:36.886356 21893 2078 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 608\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.649E3\nmove_type: '1'\nsale_id: 1492\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-587\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-587 187.149.58.33 1ddeaaa0-eb57-46ef-bab0-bcabffe7d28e 2019-11-23 19:33:36.912462 21894 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-21 19:26:10.586710000 Z\n- &1 2019-11-22 17:33:52.938499000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-23 19:49:52.586934749 Z\nsign_in_count:\n- 386\n- 387\n 777 \N 187.149.58.33 8149aed4-f409-49d1-bf33-021a0e88934a 2019-11-23 19:49:52.594905 21895 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 6sPvm9cXw69irWmQZ2jx\n- Qoi1s4o-KMb-pDAY-muu\n 778 \N 187.149.58.33 8149aed4-f409-49d1-bf33-021a0e88934a 2019-11-23 19:49:52.612149 21896 609 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.763E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 763.0 187.149.58.33 d94f928e-7ebd-4a5c-914e-04f4bad227b7 2019-11-23 19:50:35.573311 21897 1493 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 609\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-11-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-773\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 ca360d3d-0411-44e9-b6c3-baba475d9dad 2019-11-23 19:51:09.797158 21898 1299 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 ca360d3d-0411-44e9-b6c3-baba475d9dad 2019-11-23 19:51:09.832827 21899 1493 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 09a762ff-1075-432b-be58-2269d7bac577 2019-11-23 19:51:46.169048 21900 2079 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 609\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 1493\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-773\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-773 187.149.58.33 09a762ff-1075-432b-be58-2269d7bac577 2019-11-23 19:51:46.198366 21901 2080 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 609\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 1493\ncardnumber: 3719\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-773\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-773 187.149.58.33 619ff401-5718-451a-ab99-4efa0b6b95f1 2019-11-23 19:52:41.667447 21902 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-11-22 02:39:14.228079000 Z\n- &1 2019-11-22 20:50:50.200312000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-23 19:57:59.497167032 Z\nsign_in_count:\n- 112\n- 113\n 226 \N 187.149.58.33 c5187a0d-175e-4d25-8462-b6d668187586 2019-11-23 19:57:59.506311 21904 1494 Sale \N \N 26 User \N create ---\ncustomer_id: 36\nuser_id: 26\nopen_cash_register_id: 608\namount: !ruby/object:BigDecimal 18:0.1298E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1298E4\nstatus: 0\ndate_sale: 2019-11-23\nsaletype: 0\nseller_id: 15\nsale_code: PV2-V-588\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 0b365aac-b20e-4a42-82a0-11202e295103 2019-11-23 20:21:33.680902 21905 1252 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 187.149.58.33 0b365aac-b20e-4a42-82a0-11202e295103 2019-11-23 20:21:33.714635 21906 1138 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 0b365aac-b20e-4a42-82a0-11202e295103 2019-11-23 20:21:33.742809 21907 322 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-23\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.58.33 4299a137-7e7f-4b88-b334-1f5fad9294da 2019-11-23 20:55:13.449477 21908 1028 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.58.33 4299a137-7e7f-4b88-b334-1f5fad9294da 2019-11-23 20:55:13.475426 21909 321 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-23\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.58.33 74eeff14-071e-4ba0-b970-c95fd1709ad7 2019-11-23 20:55:21.935825 21910 1400 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 952\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 74eeff14-071e-4ba0-b970-c95fd1709ad7 2019-11-23 20:55:21.959869 21911 320 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-23\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.58.33 0676eb28-12ce-4416-a9ce-0090f079049a 2019-11-23 20:55:35.427732 21912 1097 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.7E1\n 9 \N 187.149.58.33 0676eb28-12ce-4416-a9ce-0090f079049a 2019-11-23 20:55:35.4494 21913 1246 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.7E1\n 7 \N 187.149.58.33 0676eb28-12ce-4416-a9ce-0090f079049a 2019-11-23 20:55:35.471398 21914 2081 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 608\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.298E3\nmove_type: '1'\nsale_id: 1494\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.298E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 382d0f63-9276-43f0-ab5d-509f8e5a9d74 2019-11-23 20:57:08.808851 21915 1494 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 382d0f63-9276-43f0-ab5d-509f8e5a9d74 2019-11-23 20:57:08.832921 21916 2081 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 608\n- 609\n 2 movimiento de efectivo por venta con folio PV2-V-588 187.149.58.33 382d0f63-9276-43f0-ab5d-509f8e5a9d74 2019-11-23 20:57:08.848404 21917 1495 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 607\namount: !ruby/object:BigDecimal 18:0.18E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.18E3\nstatus: 0\ndate_sale: 2019-11-23\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-132\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 76a3fe59-5688-4865-a205-05b27afaac1d 2019-11-23 21:03:40.176255 21918 1185 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.111.139 76a3fe59-5688-4865-a205-05b27afaac1d 2019-11-23 21:03:40.204843 21919 1495 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 e651978b-dc51-425e-a2e8-da948c7ed6b1 2019-11-23 21:04:22.715886 21920 2082 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 607\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.18E3\nmove_type: '1'\nsale_id: 1495\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-132\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.2E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-132 189.186.111.139 e651978b-dc51-425e-a2e8-da948c7ed6b1 2019-11-23 21:04:22.738526 21921 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-23 07:40:26.803940000 Z\n- &1 2019-11-23 17:08:57.505098000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-23 21:09:23.715066749 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946138\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938389\n mask_addr: 4294967295\nsign_in_count:\n- 956\n- 957\n 1914 \N 200.68.151.85 1557527b-ce14-4599-9947-c2e91cf31ac6 2019-11-23 21:09:23.726282 21922 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gzgo8n-kafsKG8CGUwk8\n- 3LKgQHGj3hRjAAjQ3HeY\n 1915 \N 200.68.151.85 1557527b-ce14-4599-9947-c2e91cf31ac6 2019-11-23 21:09:23.748022 21923 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-18 17:07:23.860731000 Z\n- &1 2019-11-21 21:32:29.888660000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-23 21:29:39.929737681 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120712\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 24\n- 25\n 50 \N 187.149.58.33 123a9fff-2faa-49fb-a54e-743caf0a6b7a 2019-11-23 21:29:39.939024 21924 27 User \N \N 27 User \N update ---\nunique_session_id:\n- dvq_xZ7GyJN3JmbcdZwy\n- _yfumz4Vnqz32y-Qr6cy\n 51 \N 187.149.58.33 123a9fff-2faa-49fb-a54e-743caf0a6b7a 2019-11-23 21:29:39.972337 21925 1496 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 607\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-11-23\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-133\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 7023782b-66c7-41be-8bde-96044e66c4fc 2019-11-23 21:54:14.282627 21926 1396 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 189.186.111.139 7023782b-66c7-41be-8bde-96044e66c4fc 2019-11-23 21:54:14.311538 21927 1496 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 46c26b8f-8388-45f7-b1cf-fd2b9a4e1398 2019-11-23 21:54:17.954034 22036 1 User \N \N 1 User \N update ---\nunique_session_id:\n- xHiLtUL9QLPqrQRsZPDV\n- Nzi98s293kZhP-VsY-hR\n 229 \N 187.149.58.33 86041666-d3da-41c1-afe8-ec2f021f806b 2019-11-25 21:25:37.748021 21928 2083 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 607\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 1496\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-133\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.55E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-133 189.186.111.139 46c26b8f-8388-45f7-b1cf-fd2b9a4e1398 2019-11-23 21:54:17.985312 21929 1497 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 607\namount: !ruby/object:BigDecimal 18:0.338E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.338E3\nstatus: 0\ndate_sale: 2019-11-23\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-134\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 299f419b-7289-4307-b6fe-85f7cd8722f7 2019-11-23 22:07:33.098688 21930 1351 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.111.139 299f419b-7289-4307-b6fe-85f7cd8722f7 2019-11-23 22:07:33.158397 21931 1358 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.111.139 299f419b-7289-4307-b6fe-85f7cd8722f7 2019-11-23 22:07:33.210912 21932 1497 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 97e6ff60-9f68-483c-b3f6-d6151b819f16 2019-11-23 22:07:36.967504 21933 2084 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 607\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.338E3\nmove_type: '1'\nsale_id: 1497\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-134\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.62E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-134 189.186.111.139 97e6ff60-9f68-483c-b3f6-d6151b819f16 2019-11-23 22:07:36.9992 21934 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-23 17:08:57.505098000 Z\n- &1 2019-11-23 21:09:23.715066000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-23 22:22:58.873033273 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938389\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938389\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\nsign_in_count:\n- 957\n- 958\n 1916 \N 187.149.27.48 fd19d069-aa44-4f1b-b0cd-2bfc3e5c5bab 2019-11-23 22:22:58.881849 21935 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3LKgQHGj3hRjAAjQ3HeY\n- J33iZFxRzSKEWzyUZSzg\n 1917 \N 187.149.27.48 fd19d069-aa44-4f1b-b0cd-2bfc3e5c5bab 2019-11-23 22:22:58.907393 21936 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-23 21:09:23.715066000 Z\n- &1 2019-11-23 22:22:58.873033000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-23 22:22:59.220422286 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938389\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\nsign_in_count:\n- 958\n- 959\n 1918 \N 187.149.27.48 2736e852-735c-4be6-929d-66b67ba20806 2019-11-23 22:22:59.227159 21937 4 User \N \N 4 User \N update ---\nunique_session_id:\n- J33iZFxRzSKEWzyUZSzg\n- inx9grAqkaJfb3yPuzy2\n 1919 \N 187.149.27.48 2736e852-735c-4be6-929d-66b67ba20806 2019-11-23 22:22:59.242532 21938 205 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-21\namount: !ruby/object:BigDecimal 18:0.144E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.144E4\nobservations: ''\npurchase_date: 2019-11-23\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-21 por $ 1440.0 MXN creada. 187.149.27.48 eda9ffc3-aecc-41cc-8dcb-df26fb4d7988 2019-11-23 22:26:41.186693 21939 1401 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 890\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.27.48 eda9ffc3-aecc-41cc-8dcb-df26fb4d7988 2019-11-23 22:26:41.217015 21940 1498 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 607\namount: !ruby/object:BigDecimal 18:0.629E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.629E3\nstatus: 0\ndate_sale: 2019-11-23\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-135\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 fa588bc7-bdac-4547-81e5-4a2eaf3b164b 2019-11-23 22:28:36.07575 21941 1401 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.111.139 fa588bc7-bdac-4547-81e5-4a2eaf3b164b 2019-11-23 22:28:36.102792 21942 1498 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 981634cc-f830-48b0-a9e9-98bdd7c53878 2019-11-23 22:28:44.905631 21943 2085 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 607\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.629E3\nmove_type: '1'\nsale_id: 1498\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-135\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.71E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-135 189.186.111.139 981634cc-f830-48b0-a9e9-98bdd7c53878 2019-11-23 22:28:44.934777 21944 1499 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 609\namount: !ruby/object:BigDecimal 18:0.149E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.149E3\nstatus: 0\ndate_sale: 2019-11-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-774\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 2f46f137-8850-4de3-bd5d-1d2b85abfb5a 2019-11-23 22:30:39.878812 21945 1310 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.58.33 2f46f137-8850-4de3-bd5d-1d2b85abfb5a 2019-11-23 22:30:39.917932 21946 1499 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 9f47caf1-465b-437e-a302-ae2ca69a5e0f 2019-11-23 22:30:46.601632 21947 2086 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 609\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.149E3\nmove_type: '1'\nsale_id: 1499\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-774\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.149E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-774 187.149.58.33 9f47caf1-465b-437e-a302-ae2ca69a5e0f 2019-11-23 22:30:46.623595 21948 219 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 609\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nstatus: 1\nobservations: ''\nexpense_date: 2019-11-23\nexpense_code: PV1-E-158\n 1 Egreso por 1328.0 registrado 187.149.58.33 d787184e-0dbd-4c96-b39b-f7bfbff82d20 2019-11-23 23:23:06.35784 21949 2087 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 609\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 219\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 d787184e-0dbd-4c96-b39b-f7bfbff82d20 2019-11-23 23:23:06.380475 21950 2088 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 608\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1270\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.5E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-512 187.149.58.33 67697a6c-be83-4f82-bfae-92f8490b53e8 2019-11-24 00:08:10.229109 21951 2089 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 608\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1270\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-512 187.149.58.33 a9bd88fa-1325-4d5f-aa35-5051f490e552 2019-11-24 00:08:49.961656 21952 1270 Sale \N \N 27 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 d416e40c-f18c-4ae9-be41-6b5ce305d55f 2019-11-24 00:08:58.777961 21953 2090 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 608\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 1269\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-511 187.149.58.33 9271b7b5-afc0-49fc-98da-4f766488ef90 2019-11-24 00:11:13.003089 21954 2091 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 607\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 1267\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-80 189.186.111.139 28a50b9b-43db-4271-b70b-293de53214d5 2019-11-24 00:13:27.146978 21955 1267 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.111.139 71bca63d-c51d-480b-9577-6e33f2553df0 2019-11-24 00:13:28.643987 21956 1500 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 608\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-11-23\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-589\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 be3c0911-34b9-429b-b23e-d28064d497a4 2019-11-24 00:28:29.428828 21957 1374 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 187.149.58.33 be3c0911-34b9-429b-b23e-d28064d497a4 2019-11-24 00:28:29.46791 21958 1500 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 17834f9e-7f57-4a70-8801-678a2aa9bda2 2019-11-24 00:28:36.673184 21959 2092 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 608\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 1500\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-589\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-589 187.149.58.33 17834f9e-7f57-4a70-8801-678a2aa9bda2 2019-11-24 00:28:36.704401 21960 1501 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 609\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-11-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-775\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 f4632631-03a2-4ce5-8592-257f834f81e2 2019-11-24 00:59:09.553718 21961 1272 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 f4632631-03a2-4ce5-8592-257f834f81e2 2019-11-24 00:59:09.626819 21962 1501 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 099ba93e-d587-443d-a31a-889232cf61ec 2019-11-24 00:59:14.133134 21963 2093 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 609\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 1501\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-775\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-775 187.149.58.33 099ba93e-d587-443d-a31a-889232cf61ec 2019-11-24 00:59:14.158025 21964 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-23 22:22:58.873033000 Z\n- &1 2019-11-23 22:22:59.220422000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-24 00:59:24.790744457 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946015\n mask_addr: 4294967295\nsign_in_count:\n- 959\n- 960\n 1920 \N 200.68.181.31 da01f6c1-71be-4764-a802-6b8978b3594e 2019-11-24 00:59:24.802213 21965 4 User \N \N 4 User \N update ---\nunique_session_id:\n- inx9grAqkaJfb3yPuzy2\n- wJxy3rFyU3pqH9NS6Qig\n 1921 \N 200.68.181.31 da01f6c1-71be-4764-a802-6b8978b3594e 2019-11-24 00:59:24.826181 21966 220 Expense \N \N 27 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 608\nquantity: !ruby/object:BigDecimal 18:0.104E4\nstatus: 1\nobservations: SUELDO KEYLA\nexpense_date: 2019-11-23\nexpense_code: PV2-E-49\n 1 Egreso por 1040.0 registrado 187.149.58.33 0601d50d-1ba0-4d22-986a-8582de1dfd79 2019-11-24 01:46:36.729536 21967 2094 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 608\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.104E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 220\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 0601d50d-1ba0-4d22-986a-8582de1dfd79 2019-11-24 01:46:36.772611 21968 221 Expense \N \N 23 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 607\nquantity: !ruby/object:BigDecimal 18:0.53E3\nstatus: 1\nobservations: SUELDO MARICRUZ $528, COPIAS $2\nexpense_date: 2019-11-23\nexpense_code: PV3-E-14\n 1 Egreso por 530.0 registrado 189.186.111.139 22f6c761-72ce-40bc-b941-d95f31a0944b 2019-11-24 02:36:27.203202 21969 2095 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 607\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.53E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 221\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.111.139 22f6c761-72ce-40bc-b941-d95f31a0944b 2019-11-24 02:36:27.231135 21970 1502 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 608\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2019-11-23\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-590\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 224e8fe1-b4ab-4667-bc71-d3b12ab24ddd 2019-11-24 02:56:16.949888 21971 367 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.34E2\n- !ruby/object:BigDecimal 18:0.33E2\n 23 \N 187.149.58.33 224e8fe1-b4ab-4667-bc71-d3b12ab24ddd 2019-11-24 02:56:17.010258 21972 1502 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 764eb85a-5cff-4d6a-8ca0-bb46b506b145 2019-11-24 02:56:22.305777 21973 2096 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 608\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 1502\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-590\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.451E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-590 187.149.58.33 764eb85a-5cff-4d6a-8ca0-bb46b506b145 2019-11-24 02:56:22.368287 21974 609 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 607\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.2995E4\namount_out: !ruby/object:BigDecimal 18:0.53E3\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.794E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3294E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 a124624a-1e2e-476f-96d8-c4fa8aed19b2 2019-11-24 02:58:05.798394 21975 607 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 a124624a-1e2e-476f-96d8-c4fa8aed19b2 2019-11-24 02:58:05.820219 21976 610 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 608\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.3875E4\namount_out: !ruby/object:BigDecimal 18:0.104E4\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.2077E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3077E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 85f6ade8-6475-4651-9bfc-4b86f590de0a 2019-11-24 02:58:19.107529 21977 608 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 85f6ade8-6475-4651-9bfc-4b86f590de0a 2019-11-24 02:58:19.142247 21978 611 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 608\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.3875E4\namount_out: !ruby/object:BigDecimal 18:0.104E4\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.2077E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3077E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 5cbfeb07-9356-4d89-9590-9db01570025f 2019-11-24 02:58:19.233311 21979 608 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 3 \N 187.149.58.33 5cbfeb07-9356-4d89-9590-9db01570025f 2019-11-24 02:58:19.258967 21980 612 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 609\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2545E4\namount_out: !ruby/object:BigDecimal 18:0.1328E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.6E3\ncash_fund: !ruby/object:BigDecimal 18:0.88E3\nphysical_cash: !ruby/object:BigDecimal 18:0.148E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 62abe856-4673-43ca-865d-fe9e9d0c6944 2019-11-24 03:07:22.294633 21981 609 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 62abe856-4673-43ca-865d-fe9e9d0c6944 2019-11-24 03:07:22.309563 21982 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-23 22:22:59.220422000 Z\n- &1 2019-11-24 00:59:24.790744000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-24 06:17:33.814806058 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946015\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946015\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\nsign_in_count:\n- 960\n- 961\n 1922 \N 187.149.27.48 f9b0cc80-2d52-4fbe-97f3-ce72bd26286d 2019-11-24 06:17:33.83141 21983 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wJxy3rFyU3pqH9NS6Qig\n- LTwSgzpoiArp-NSc8zwu\n 1923 \N 187.149.27.48 f9b0cc80-2d52-4fbe-97f3-ce72bd26286d 2019-11-24 06:17:33.863119 21984 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-22 17:30:02.400494000 Z\n- &1 2019-11-23 17:05:18.452341000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-24 17:02:11.188901993 Z\nsign_in_count:\n- 70\n- 71\n 142 \N 189.186.111.139 0a037005-825d-4c31-9ea9-3b56a7b5c76a 2019-11-24 17:02:11.227611 21985 23 User \N \N 23 User \N update ---\nunique_session_id:\n- 8g3-Hocd8EK4EyyCYmMb\n- cg5osU4xuWBnJCuyVFwQ\n 143 \N 189.186.111.139 0a037005-825d-4c31-9ea9-3b56a7b5c76a 2019-11-24 17:02:11.254698 21986 610 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.794E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 794.0 189.186.111.139 9b3f0ee5-dae6-4201-982c-7e163bd6786b 2019-11-24 17:02:53.018626 21987 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-21 21:32:29.888660000 Z\n- &1 2019-11-23 21:29:39.929737000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-24 17:03:12.565303258 Z\nsign_in_count:\n- 25\n- 26\n 52 \N 187.149.58.33 c6499682-0423-4f12-ad1e-d682e88c350b 2019-11-24 17:03:12.571184 21988 27 User \N \N 27 User \N update ---\nunique_session_id:\n- _yfumz4Vnqz32y-Qr6cy\n- HyzAiz-vFzVNvYnSfh_2\n 53 \N 187.149.58.33 c6499682-0423-4f12-ad1e-d682e88c350b 2019-11-24 17:03:12.584795 21989 611 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.2077E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 2077.0 187.149.58.33 9390a4d7-00e9-43e5-8c2d-7954de3b54d2 2019-11-24 17:03:50.396645 21990 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-24 00:59:24.790744000 Z\n- &1 2019-11-24 06:17:33.814806000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-24 17:21:03.179545243 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946015\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 961\n- 962\n 1924 \N 187.149.58.33 128ed909-b1ae-4911-8574-78fc8db1b4b5 2019-11-24 17:21:03.191534 21992 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-24 06:17:33.814806000 Z\n- &1 2019-11-24 17:21:03.179545000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-24 19:05:46.241698099 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\nsign_in_count:\n- 962\n- 963\n 1926 \N 187.149.27.48 933827da-9847-49c9-9535-1ccae010d3c3 2019-11-24 19:05:46.250914 21993 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _nssgS439CkhzsSh4wwE\n- y3c9Z73iAh-Gyx6bj1QS\n 1927 \N 187.149.27.48 933827da-9847-49c9-9535-1ccae010d3c3 2019-11-24 19:05:46.27137 21994 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-11-20 20:33:26.046174000 Z\n- &1 2019-11-20 21:30:18.824328000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-24 19:21:20.129795977 Z\nsign_in_count:\n- 40\n- 41\n 82 \N 187.149.58.33 68c2aba2-84a7-41ac-a5b2-e84d9d9f83a1 2019-11-24 19:21:20.135518 21995 25 User \N \N 25 User \N update ---\nunique_session_id:\n- 8kooDuTHXk9UcnsqW-UH\n- _KsC-gg1yi54A_zBJ9Ap\n 83 \N 187.149.58.33 68c2aba2-84a7-41ac-a5b2-e84d9d9f83a1 2019-11-24 19:21:20.149184 21996 612 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.88E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 880.0 187.149.58.33 e4124eb1-9c96-4a7d-9829-eb57292c0c9b 2019-11-24 19:21:35.318816 21997 1503 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 612\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-11-24\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-776\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 39d5f0af-75b3-4068-a66a-bbed626ef33a 2019-11-24 19:22:31.333201 21998 1272 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 39d5f0af-75b3-4068-a66a-bbed626ef33a 2019-11-24 19:22:31.380495 21999 1503 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 fbbbf38a-c20d-43c5-8fc1-06a713e32727 2019-11-24 19:23:24.30678 22000 2097 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 612\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 1503\ncardnumber: 9399\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-776\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-776 187.149.58.33 fbbbf38a-c20d-43c5-8fc1-06a713e32727 2019-11-24 19:23:24.33041 22001 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-24 17:21:03.179545000 Z\n- &1 2019-11-24 19:05:46.241698000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-24 19:33:43.502463605 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 963\n- 964\n 1928 \N 187.149.58.33 8de53ae0-9c0c-4de1-a7ae-9af47c000630 2019-11-24 19:33:43.511232 22002 4 User \N \N 4 User \N update ---\nunique_session_id:\n- y3c9Z73iAh-Gyx6bj1QS\n- GSK5eDufe-LPCkoSpzXN\n 1929 \N 187.149.58.33 8de53ae0-9c0c-4de1-a7ae-9af47c000630 2019-11-24 19:33:43.531756 22003 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-24 19:05:46.241698000 Z\n- &1 2019-11-24 19:33:43.502463000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-24 20:07:26.769836964 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945686\n mask_addr: 4294967295\nsign_in_count:\n- 964\n- 965\n 1930 \N 200.68.179.214 bf04c021-05b9-4962-a8bc-ac64a186e46f 2019-11-24 20:07:26.779709 22004 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GSK5eDufe-LPCkoSpzXN\n- 5qv4pS95-_827TgNmXy3\n 1931 \N 200.68.179.214 bf04c021-05b9-4962-a8bc-ac64a186e46f 2019-11-24 20:07:26.800935 22005 613 CashOut \N \N 25 User \N create ---\nopen_cash_register_id: 612\nuser_id: 25\namount_in: !ruby/object:BigDecimal 18:0.1099E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.88E3\nphysical_cash: !ruby/object:BigDecimal 18:0.88E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 136524eb-e66b-4ace-b2ae-38a4cc452914 2019-11-24 21:59:15.710502 22006 612 OpenCashRegister \N \N 25 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 136524eb-e66b-4ace-b2ae-38a4cc452914 2019-11-24 21:59:15.723803 22007 614 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 611\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1077E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2077E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 ab119833-2e36-451e-863b-b6df82519cdc 2019-11-24 22:05:05.82674 22008 611 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 ab119833-2e36-451e-863b-b6df82519cdc 2019-11-24 22:05:05.847996 22009 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-24 19:33:43.502463000 Z\n- &1 2019-11-24 20:07:26.769836000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-24 23:04:07.338643412 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945686\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945686\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946128\n mask_addr: 4294967295\nsign_in_count:\n- 965\n- 966\n 1932 \N 200.68.181.144 cd49fe2d-81a2-4411-bf3e-f67705f8699e 2019-11-24 23:04:07.347566 22010 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5qv4pS95-_827TgNmXy3\n- aDWCqsdmjXaEsAJeqNGD\n 1933 \N 200.68.181.144 cd49fe2d-81a2-4411-bf3e-f67705f8699e 2019-11-24 23:04:07.366445 22011 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-22 17:33:52.938499000 Z\n- &1 2019-11-23 19:49:52.586934000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-25 17:14:44.111206957 Z\nsign_in_count:\n- 387\n- 388\n 779 \N 187.149.58.33 ccb04c43-b31b-4b8b-9fc0-32bea167f405 2019-11-25 17:14:44.15475 22012 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Qoi1s4o-KMb-pDAY-muu\n- bqBSnnsa2jF8CWtDHqnU\n 780 \N 187.149.58.33 ccb04c43-b31b-4b8b-9fc0-32bea167f405 2019-11-25 17:14:44.184927 22013 613 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.88E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 880.0 187.149.58.33 1efbce59-9854-4204-92b4-f15723e215cc 2019-11-25 17:15:03.205393 22014 2098 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 613\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 1330\ncardnumber: 5044\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-704 187.149.58.33 d666715c-c5f7-487e-96ec-1847ea433175 2019-11-25 17:16:00.708839 22015 1330 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 a6ca259c-b209-482d-87f8-10e9c66867c7 2019-11-25 17:16:02.344249 22016 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-23 21:29:39.929737000 Z\n- &1 2019-11-24 17:03:12.565303000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-25 17:26:59.387905812 Z\nsign_in_count:\n- 26\n- 27\n 54 \N 187.149.58.33 50725a8f-8d1c-423d-918a-e210e3d4dc00 2019-11-25 17:26:59.393868 22017 27 User \N \N 27 User \N update ---\nunique_session_id:\n- HyzAiz-vFzVNvYnSfh_2\n- FyjPaSXGkLzdZh8EFmVY\n 55 \N 187.149.58.33 50725a8f-8d1c-423d-918a-e210e3d4dc00 2019-11-25 17:26:59.407092 22018 614 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1077E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1077.0 187.149.58.33 1c88a894-1f13-4998-b6f1-d7dfdb9d1499 2019-11-25 17:28:21.447862 22019 1504 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 614\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-11-25\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-591\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 4504813e-cfb5-40a5-a87d-cdb9986c2dda 2019-11-25 18:54:02.201996 22020 804 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.58.33 4504813e-cfb5-40a5-a87d-cdb9986c2dda 2019-11-25 18:54:02.239612 22021 1504 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 c0cd7323-f4c7-4de9-a972-31436569250b 2019-11-25 18:54:32.6461 22022 2099 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 614\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.649E3\nmove_type: '1'\nsale_id: 1504\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-591\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-591 187.149.58.33 c0cd7323-f4c7-4de9-a972-31436569250b 2019-11-25 18:54:32.671009 22023 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-24 20:07:26.769836000 Z\n- &1 2019-11-24 23:04:07.338643000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-25 19:25:15.140758367 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945686\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946128\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946128\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934316\n mask_addr: 4294967295\nsign_in_count:\n- 966\n- 967\n 1934 \N 200.68.135.108 2df122a2-521b-4d0f-a2b4-59e9298d8a6c 2019-11-25 19:25:15.151573 22024 4 User \N \N 4 User \N update ---\nunique_session_id:\n- aDWCqsdmjXaEsAJeqNGD\n- KejLDeob4y8cL6GYVkcT\n 1935 \N 200.68.135.108 2df122a2-521b-4d0f-a2b4-59e9298d8a6c 2019-11-25 19:25:15.187781 22025 1505 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 613\namount: !ruby/object:BigDecimal 18:0.149E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.149E3\nstatus: 0\ndate_sale: 2019-11-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-777\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 b400b2ac-b16d-4f79-bc40-d01a41fc2b7b 2019-11-25 19:42:47.794218 22026 1316 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.58.33 b400b2ac-b16d-4f79-bc40-d01a41fc2b7b 2019-11-25 19:42:47.829737 22027 1505 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 a533d02f-2e05-4088-91a1-65f3ef49b17f 2019-11-25 19:42:53.781302 22028 2100 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 613\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.149E3\nmove_type: '1'\nsale_id: 1505\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-777\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.149E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-777 187.149.58.33 a533d02f-2e05-4088-91a1-65f3ef49b17f 2019-11-25 19:42:53.81256 22029 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-23 17:05:18.452341000 Z\n- &1 2019-11-24 17:02:11.188901000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-25 20:05:48.935678086 Z\nsign_in_count:\n- 71\n- 72\n 144 \N 189.186.111.139 758416ff-d5e1-44fb-addc-5c1617106e02 2019-11-25 20:05:48.955113 22030 23 User \N \N 23 User \N update ---\nunique_session_id:\n- cg5osU4xuWBnJCuyVFwQ\n- QJNMV7z_k3A71di691nx\n 145 \N 189.186.111.139 758416ff-d5e1-44fb-addc-5c1617106e02 2019-11-25 20:05:48.988453 22031 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-24 23:04:07.338643000 Z\n- &1 2019-11-25 19:25:15.140758000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-25 21:04:17.452372753 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946128\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934316\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\nsign_in_count:\n- 967\n- 968\n 1936 \N 187.149.27.48 c073a744-e79f-4d4a-8eec-9c92840cbf2f 2019-11-25 21:04:17.460598 22032 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KejLDeob4y8cL6GYVkcT\n- x5NF_AmAivriv321rZze\n 1937 \N 187.149.27.48 c073a744-e79f-4d4a-8eec-9c92840cbf2f 2019-11-25 21:04:17.480421 22033 222 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 613\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: "2 GARRAFONES DE AGUA\\r\\n"\nexpense_date: 2019-11-25\nexpense_code: PV1-E-159\n 1 Egreso por 50.0 registrado 187.149.58.33 ab1c192e-14b6-43c4-8b43-247d10db9f45 2019-11-25 21:24:04.47532 22034 2101 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 613\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 222\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 ab1c192e-14b6-43c4-8b43-247d10db9f45 2019-11-25 21:24:04.507308 22035 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-11-22 20:50:50.200312000 Z\n- &1 2019-11-23 19:57:59.497167000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-25 21:25:37.725439701 Z\nsign_in_count:\n- 113\n- 114\n 228 \N 187.149.58.33 86041666-d3da-41c1-afe8-ec2f021f806b 2019-11-25 21:25:37.731393 22121 959 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000959'\n 2 \N 187.149.58.33 12cb0da0-8f14-45df-a188-e934c7244731 2019-11-26 22:42:59.293972 22037 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-25 19:25:15.140758000 Z\n- &1 2019-11-25 21:04:17.452372000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-25 22:24:57.904267100 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934316\n mask_addr: 4294967295\nsign_in_count:\n- 968\n- 969\n 1938 \N 200.68.135.108 d0979c4b-1a71-43e0-a443-21c8b92d3137 2019-11-25 22:24:57.912938 22038 4 User \N \N 4 User \N update ---\nunique_session_id:\n- x5NF_AmAivriv321rZze\n- RX3J-nsdPccPiqo9ST51\n 1939 \N 200.68.135.108 d0979c4b-1a71-43e0-a443-21c8b92d3137 2019-11-25 22:24:57.934119 22039 1506 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 613\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-11-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-778\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 959b12a2-ee06-491c-b857-cb560b86b4d8 2019-11-25 22:56:36.990875 22040 1299 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 959b12a2-ee06-491c-b857-cb560b86b4d8 2019-11-25 22:56:37.027334 22041 1506 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 03e233f1-9357-4daa-9b97-2ac21ad69618 2019-11-25 22:57:16.82489 22042 2102 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 613\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 1506\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-778\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-778 187.149.58.33 03e233f1-9357-4daa-9b97-2ac21ad69618 2019-11-25 22:57:16.856385 22043 1507 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 614\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-11-25\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-592\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 bff088da-bdd6-4cc6-b397-fb7a303e896a 2019-11-26 00:10:49.42663 22044 1289 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 bff088da-bdd6-4cc6-b397-fb7a303e896a 2019-11-26 00:10:49.469369 22045 1507 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 63f7bb56-d0ba-4628-905c-c834d5588f64 2019-11-26 00:12:51.763806 22046 2103 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 614\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 1507\ncardnumber: 7674\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-592\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-592 187.149.58.33 63f7bb56-d0ba-4628-905c-c834d5588f64 2019-11-26 00:12:51.790977 22047 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-25 21:04:17.452372000 Z\n- &1 2019-11-25 22:24:57.904267000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-26 01:26:20.108380933 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934316\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 969\n- 970\n 1940 \N 189.186.111.139 e31fe8ca-0b0a-4052-bfb5-ed01a8c1ec0e 2019-11-26 01:26:20.126144 22048 4 User \N \N 4 User \N update ---\nunique_session_id:\n- RX3J-nsdPccPiqo9ST51\n- 2VkZ1sksqmmmmHcyx6AM\n 1941 \N 189.186.111.139 e31fe8ca-0b0a-4052-bfb5-ed01a8c1ec0e 2019-11-26 01:26:20.155499 22049 953 Product \N \N 4 User \N create ---\nsku: BOL-953\nname: 1BCLI19316\ndescription: BOLSA NEGRA CLOE CON CADENAS\nprice_base: !ruby/object:BigDecimal 18:0.10495E4\nprice_sale: !ruby/object:BigDecimal 18:0.2099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170766950'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-953 fue creado. 189.186.111.139 075aad60-dc62-4e08-8a83-86e9671dc0df 2019-11-26 01:28:31.390268 22050 206 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: \npurchase_code: CEN-C-38\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nobservations: ''\npurchase_date: 2019-11-25\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-38 por $ 2099.0 MXN creada. 189.186.111.139 adc8bcda-a1df-4862-ab20-62ecae12338e 2019-11-26 01:28:41.373744 22051 323 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-11-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.111.139 90ada0f3-a88c-47b5-b513-fec950338e72 2019-11-26 01:32:27.677129 22052 323 Transfer \N \N 23 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 23\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-25\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.111.139 d374edb9-14f4-4a88-9637-428cbc31aa5f 2019-11-26 01:32:46.007224 22053 1402 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 953\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.111.139 d374edb9-14f4-4a88-9637-428cbc31aa5f 2019-11-26 01:32:46.039765 22054 1403 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 952\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.111.139 d374edb9-14f4-4a88-9637-428cbc31aa5f 2019-11-26 01:32:46.075242 22055 953 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '953'\n is_parent: false\n sku: BOL-953\n name: 1BCLI19316\n description: BOLSA NEGRA CLOE CON CADENAS\n price_base: '1049.5'\n price_sale: '2099.0'\n img_product: BSAL316_PLAT_1_828x1200.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170766950'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-11-26 01:28:31.371143'\n updated_at: &12 2019-11-26 01:45:01.195175666 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '953'\n sku: BOL-953\n name: 1BCLI19316\n description: BOLSA NEGRA CLOE CON CADENAS\n price_base: '1049.50'\n price_sale: '2099.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-11-26 01:28:31.371143'\n updated_at: '2019-11-26 01:28:31.371143'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170766950'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '953'\n type: *3\n value: 953\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-953\n type: *7\n value: BOL-953\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BCLI19316\n type: *8\n value: 1BCLI19316\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA NEGRA CLOE CON CADENAS\n type: *6\n value: BOLSA NEGRA CLOE CON CADENAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '1049.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.10495E4\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '2099.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2099E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BSAL316_PLAT_1_828x1200.jpg\n type: *2\n value: BSAL316_PLAT_1_828x1200.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170766950'\n type: *2\n value: '7509170766950'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-11-26 01:28:31.371143'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BSAL316_PLAT_1_828x1200.jpg\n 2 El producto BOL-953 fue modificado. 189.186.111.139 dc082f8d-25f5-4e09-9703-995609718cfd 2019-11-26 01:45:01.246686 22056 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-25 22:24:57.904267000 Z\n- &1 2019-11-26 01:26:20.108380000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-26 01:45:17.453519486 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934316\n mask_addr: 4294967295\nsign_in_count:\n- 970\n- 971\n 1942 \N 200.68.135.108 805f4b45-89df-4a6c-96aa-9a3b3f6c2cba 2019-11-26 01:45:17.463561 22057 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2VkZ1sksqmmmmHcyx6AM\n- zTfpe5ZA5ZFWTx356CtX\n 1943 \N 200.68.135.108 805f4b45-89df-4a6c-96aa-9a3b3f6c2cba 2019-11-26 01:45:17.487218 22058 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-26 01:26:20.108380000 Z\n- &1 2019-11-26 01:45:17.453519000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-26 02:04:32.865359286 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934316\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 971\n- 972\n 1944 \N 189.186.111.139 592a99e2-a770-4a99-a85f-063627311580 2019-11-26 02:04:32.887535 22059 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zTfpe5ZA5ZFWTx356CtX\n- sFGxK6PRuRVisW7YpgNF\n 1945 \N 189.186.111.139 592a99e2-a770-4a99-a85f-063627311580 2019-11-26 02:04:32.924413 22060 324 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-11-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.111.139 78d944bd-4df8-41bd-a9a3-07d18f2cde96 2019-11-26 02:13:40.261406 22061 324 Transfer \N \N 23 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 23\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-25\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.111.139 cc2e2327-7bf7-45cd-83bd-b20612c4b79c 2019-11-26 02:16:47.41987 22062 1404 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 361\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.111.139 cc2e2327-7bf7-45cd-83bd-b20612c4b79c 2019-11-26 02:16:47.444323 22063 1405 AvailableProduct \N \N 23 User \N create ---\nproduct_id: 354\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.111.139 cc2e2327-7bf7-45cd-83bd-b20612c4b79c 2019-11-26 02:16:47.467959 22064 615 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 613\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1848E4\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.978E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1978E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 e365b106-bc8c-4df3-9171-21b54daac903 2019-11-26 02:39:07.994713 22065 613 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 e365b106-bc8c-4df3-9171-21b54daac903 2019-11-26 02:39:08.012706 22066 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-11-22 01:05:45.355152000 Z\n- &1 2019-11-22 17:34:58.240035000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-26 02:49:25.369700823 Z\nsign_in_count:\n- 22\n- 23\n 46 \N 187.149.58.33 77a9793d-c312-4b4f-bd14-2087d8b1930c 2019-11-26 02:49:25.377778 22067 24 User \N \N 24 User \N update ---\nunique_session_id:\n- C-RWgMS-rPMDfEw_2CuG\n- q1pffcTLqLyHTHbrfppa\n 47 \N 187.149.58.33 77a9793d-c312-4b4f-bd14-2087d8b1930c 2019-11-26 02:49:25.395354 22068 616 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 614\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.1948E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.726E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1726E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 08b1aa52-f8ba-47aa-8de9-8c9d5fd604fe 2019-11-26 03:01:01.386555 22069 614 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 08b1aa52-f8ba-47aa-8de9-8c9d5fd604fe 2019-11-26 03:01:01.40225 22070 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-26 01:45:17.453519000 Z\n- &1 2019-11-26 02:04:32.865359000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-26 03:06:26.857788307 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945494\n mask_addr: 4294967295\nsign_in_count:\n- 972\n- 973\n 1946 \N 200.68.179.22 fbe63c5e-9064-4d76-b26a-fd90d0563fed 2019-11-26 03:06:26.869812 22071 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sFGxK6PRuRVisW7YpgNF\n- sbLGDbyjtthz_E33MfTF\n 1947 \N 200.68.179.22 fbe63c5e-9064-4d76-b26a-fd90d0563fed 2019-11-26 03:06:26.896735 22072 617 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 610\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.794E3\nphysical_cash: !ruby/object:BigDecimal 18:0.794E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 2fd38afe-70ea-4021-8170-b41543093000 2019-11-26 03:14:51.507913 22073 610 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 2fd38afe-70ea-4021-8170-b41543093000 2019-11-26 03:14:51.525753 22074 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-24 17:02:11.188901000 Z\n- &1 2019-11-25 20:05:48.935678000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-26 16:59:16.997668117 Z\nsign_in_count:\n- 72\n- 73\n 146 \N 189.186.111.139 4040f067-8fb5-462e-8ec5-2380f4a08019 2019-11-26 16:59:17.040484 22075 23 User \N \N 23 User \N update ---\nunique_session_id:\n- QJNMV7z_k3A71di691nx\n- 2wod92bck6gnPEkjZVxs\n 147 \N 189.186.111.139 4040f067-8fb5-462e-8ec5-2380f4a08019 2019-11-26 16:59:17.074053 22076 615 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.794E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 794.0 189.186.111.139 fd916c6e-a748-45f2-a14b-85039fdfff33 2019-11-26 16:59:48.304388 22077 246 Customer \N \N 23 User \N create ---\nnick_name: FERNANDA CORRALES\nphone: "(667) 151-6744"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente FERNANDA CORRALES fue registrado. 189.186.111.139 f68db6d2-25af-4439-80e0-655e850f3238 2019-11-26 18:45:49.342646 22078 1508 Sale \N \N 23 User \N create ---\ncustomer_id: 246\nuser_id: 23\nopen_cash_register_id: 615\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2019-11-26\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-136\nexpiration_date: 2019-12-31\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 ff0c1841-92a0-4a88-88a8-d6834c3070d3 2019-11-26 18:46:16.218862 22079 1035 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.111.139 ff0c1841-92a0-4a88-88a8-d6834c3070d3 2019-11-26 18:46:16.262837 44677 1500 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1500'\n is_parent: false\n sku: CHA-1500\n name: CHA-0025\n description: SUETER NEGRO CON LENTEJUELA VERDE M2\n price_base: '220.0'\n price_sale: '689.0'\n img_product: 61EF1A36-A57C-4F1B-8AB1-E45C6FBD3C41.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001500'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 20:55:13.189601'\n updated_at: &12 2020-11-03 21:21:50.819159314 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1500'\n sku: CHA-1500\n name: CHA-0025\n description: SUETER NEGRO CON LENTEJUELA VERDE M2\n price_base: '220.00'\n price_sale: '689.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 20:55:13.189601'\n updated_at: '2020-11-03 20:55:13.224496'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001500'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1500'\n type: *3\n value: 1500\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-1500\n type: *7\n value: CHA-1500\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0025\n type: *8\n value: CHA-0025\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: SUETER NEGRO CON LENTEJUELA VERDE M2\n type: *6\n value: SUETER NEGRO CON LENTEJUELA VERDE M2\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '220.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.22E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '689.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.689E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 61EF1A36-A57C-4F1B-8AB1-E45C6FBD3C41.jpeg\n type: *2\n value: 61EF1A36-A57C-4F1B-8AB1-E45C6FBD3C41.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001500'\n type: *2\n value: '0001500'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 20:55:13.189601'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 61EF1A36-A57C-4F1B-8AB1-E45C6FBD3C41.jpeg\n 3 El producto CHA-1500 fue modificado. 187.149.136.226 d9377e37-2365-4fbe-95b7-1ea654ff6370 2020-11-03 21:21:50.865537 22080 2104 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 615\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1508\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-136\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-136 189.186.111.139 1bb42607-2d44-43b6-bd63-4dc98194c21c 2019-11-26 18:46:55.197218 22081 1508 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.111.139 4c4a8294-ed39-4f2e-a195-e27496bf59e3 2019-11-26 18:46:56.898011 22082 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-26 02:04:32.865359000 Z\n- &1 2019-11-26 03:06:26.857788000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-26 18:47:11.320767413 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945494\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945494\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\nsign_in_count:\n- 973\n- 974\n 1948 \N 187.149.27.48 ede47348-4785-4b48-bea3-adb57fc99cd7 2019-11-26 18:47:11.330975 22083 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sbLGDbyjtthz_E33MfTF\n- CxH_PRyqsqCFSzsWH7RY\n 1949 \N 187.149.27.48 ede47348-4785-4b48-bea3-adb57fc99cd7 2019-11-26 18:47:11.357269 22084 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-23 19:49:52.586934000 Z\n- &1 2019-11-25 17:14:44.111206000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-26 20:37:06.935859795 Z\nsign_in_count:\n- 388\n- 389\n 781 \N 187.149.58.33 6a6e844f-77b2-433b-8285-1921ae20a038 2019-11-26 20:37:06.948273 22085 2 User \N \N 2 User \N update ---\nunique_session_id:\n- bqBSnnsa2jF8CWtDHqnU\n- z_x-8rmx4q6-Uo5dC9yH\n 782 \N 187.149.58.33 6a6e844f-77b2-433b-8285-1921ae20a038 2019-11-26 20:37:06.972949 22086 616 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.978E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 978.0 187.149.58.33 32ef5518-2c68-4ba9-ab22-58c9f525b5a2 2019-11-26 20:37:25.707195 22087 1509 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 616\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-11-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-779\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 1211d4f9-955e-40a4-b663-bd8dc349ccde 2019-11-26 20:41:29.244804 22088 1371 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 1211d4f9-955e-40a4-b663-bd8dc349ccde 2019-11-26 20:41:29.283062 22089 1509 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 4cd67d27-fd14-4ca7-bdfa-2fb3a9c394c7 2019-11-26 20:41:33.735188 22090 2105 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 616\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1509\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-779\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-779 187.149.58.33 4cd67d27-fd14-4ca7-bdfa-2fb3a9c394c7 2019-11-26 20:41:33.765855 22091 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-26 03:06:26.857788000 Z\n- &1 2019-11-26 18:47:11.320767000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-26 21:24:45.058306676 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945494\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 974\n- 975\n 1950 \N 187.149.58.33 0c2e0e1a-9524-4c97-821b-63391b63b0ad 2019-11-26 21:24:45.100205 22092 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CxH_PRyqsqCFSzsWH7RY\n- q4NaRy1zeZ87Nkx3Qw22\n 1951 \N 187.149.58.33 0c2e0e1a-9524-4c97-821b-63391b63b0ad 2019-11-26 21:24:45.132627 22093 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-21 03:00:26.992990000 Z\n- &1 2019-11-23 17:55:54.523678000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-26 21:39:15.855002069 Z\nsign_in_count:\n- 41\n- 42\n 84 \N 187.149.58.33 1b3e6c2f-84b0-40c7-9aeb-486b58184aad 2019-11-26 21:39:15.861218 22094 26 User \N \N 26 User \N update ---\nunique_session_id:\n- s5vz13ZneGszVXSzZXrf\n- rwbKB4Qmt4Gvvu1g31st\n 85 \N 187.149.58.33 1b3e6c2f-84b0-40c7-9aeb-486b58184aad 2019-11-26 21:39:15.875016 22095 617 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.726E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 726.0 187.149.58.33 2874ca46-c76c-42ea-ae59-c72a243a6082 2019-11-26 21:39:58.97182 22096 1510 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 617\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-11-26\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-593\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 00d46ac9-0ae2-4452-8c7a-8350c3042c30 2019-11-26 21:40:17.65198 22097 806 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 31 \N 187.149.58.33 00d46ac9-0ae2-4452-8c7a-8350c3042c30 2019-11-26 21:40:17.681447 22098 1510 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 074ca941-18ed-498e-827b-44ddd857aadf 2019-11-26 21:41:39.843161 22099 2106 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 617\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1510\ncardnumber: 1834\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-593\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-593 187.149.58.33 074ca941-18ed-498e-827b-44ddd857aadf 2019-11-26 21:41:39.870253 22100 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-26 18:47:11.320767000 Z\n- &1 2019-11-26 21:24:45.058306000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-26 21:43:10.936423411 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 975\n- 976\n 1952 \N 187.149.58.33 caa9e3eb-65e5-47a2-9ab1-99dee81f8a27 2019-11-26 21:43:10.943308 22101 4 User \N \N 4 User \N update ---\nunique_session_id:\n- q4NaRy1zeZ87Nkx3Qw22\n- 5so18pKvm3LEdyxLmPgj\n 1953 \N 187.149.58.33 caa9e3eb-65e5-47a2-9ab1-99dee81f8a27 2019-11-26 21:43:10.960422 22143 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5so18pKvm3LEdyxLmPgj\n- eDd2W_y2pg2ybCmZznBn\n 1955 \N 187.149.58.33 5fdf6ebd-8d2d-4429-b9b8-c2f221599f95 2019-11-26 23:01:10.48115 22102 1511 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 616\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-11-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-780\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 62a13eb2-9b5f-4154-8980-385579eb0707 2019-11-26 22:22:39.70047 22103 1382 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.58.33 62a13eb2-9b5f-4154-8980-385579eb0707 2019-11-26 22:22:39.739723 22104 1511 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 8b19942f-0943-4eb3-85df-09480aea10db 2019-11-26 22:24:50.688408 22105 2107 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 616\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 1511\ncardnumber: 8691\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-780\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-780 187.149.58.33 8b19942f-0943-4eb3-85df-09480aea10db 2019-11-26 22:24:50.71708 22106 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-11-23 19:57:59.497167000 Z\n- &1 2019-11-25 21:25:37.725439000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-26 22:27:34.298194394 Z\nsign_in_count:\n- 114\n- 115\n 230 \N 187.149.58.33 ac235532-c3dc-47c7-9a65-2d6ccb3d9c9e 2019-11-26 22:27:34.306692 22107 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Nzi98s293kZhP-VsY-hR\n- nvGUEA6Gzd4jnVdFzUSh\n 231 \N 187.149.58.33 ac235532-c3dc-47c7-9a65-2d6ccb3d9c9e 2019-11-26 22:27:34.326341 22108 954 Product \N \N 4 User \N create ---\nsku: FAL-954\nname: FLD-0021\ndescription: "FALDA PATOLES DE PIEL MUY MUY ST-S92291 NEGRA, TINTA, CAMEL, OLIVO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.48E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-954 fue creado. 187.149.58.33 6c75d54f-fbca-4b16-87f5-a5217594c1a7 2019-11-26 22:30:54.623484 22109 954 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000954'\n 2 \N 187.149.58.33 6c75d54f-fbca-4b16-87f5-a5217594c1a7 2019-11-26 22:30:54.675558 22110 955 Product \N \N 4 User \N create ---\nsku: VES-955\nname: VST-0066\ndescription: "VESTIDO MAGENTA BLUE S ST-D92415\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-955 fue creado. 187.149.58.33 45ce4643-ad04-4cfb-8553-9f0deadd9dcc 2019-11-26 22:34:15.118648 22111 955 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000955'\n 2 \N 187.149.58.33 45ce4643-ad04-4cfb-8553-9f0deadd9dcc 2019-11-26 22:34:15.146724 22112 956 Product \N \N 4 User \N create ---\nsku: VES-956\nname: VST-0067\ndescription: "VESTIDO MAVUE BLUE S ST-D92357\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.35E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-956 fue creado. 187.149.58.33 6bed345d-e0ad-45cd-b3d7-0766b523c846 2019-11-26 22:34:59.917891 22113 956 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000956'\n 2 \N 187.149.58.33 6bed345d-e0ad-45cd-b3d7-0766b523c846 2019-11-26 22:34:59.951433 22114 957 Product \N \N 4 User \N create ---\nsku: VES-957\nname: VST-0068\ndescription: "VESTIDO DORADO BLUE S ST-D92404\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.57E3\nprice_sale: !ruby/object:BigDecimal 18:0.1449E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-957 fue creado. 187.149.58.33 4da58f31-1f44-4540-9b3a-258aa9cf2103 2019-11-26 22:35:44.194448 22115 957 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000957'\n 2 \N 187.149.58.33 4da58f31-1f44-4540-9b3a-258aa9cf2103 2019-11-26 22:35:44.234783 22116 207 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-39\namount: !ruby/object:BigDecimal 18:0.1944E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1944E5\nobservations: ''\npurchase_date: 2019-11-26\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-39 por $ 19440.0 MXN creada. 187.149.58.33 5294bc32-a693-49f7-b48a-d3856974bd66 2019-11-26 22:35:49.59017 22117 954 Product \N \N 4 User \N update ---\ndescription:\n- "FALDA PATOLES DE PIEL MUY MUY ST-S92291 NEGRA, TINTA, CAMEL, OLIVO\\r\\n"\n- "FALDA PATOLES DE PIEL BLUE S \\r\\nST-S92291 NEGRA, TINTA, CAMEL, OLIVO\\r\\n"\n 3 El producto FAL-954 fue modificado. 187.149.58.33 cb6764f5-4c53-43fd-8a6c-b83177b03046 2019-11-26 22:36:18.389272 22118 958 Product \N \N 4 User \N create ---\nsku: SHO-958\nname: SHO-0024\ndescription: "SHORT FALDA NEGRA DE PIEL CON REMACHES MUYMUY ST-1476\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3E3\nprice_sale: !ruby/object:BigDecimal 18:0.749E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 2\nproduct_service_key: '01010101'\n 1 El producto SHO-958 fue creado. 187.149.58.33 b421fcf6-9904-4908-bf6e-08ebe35e5502 2019-11-26 22:39:03.478045 22119 958 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000958'\n 2 \N 187.149.58.33 b421fcf6-9904-4908-bf6e-08ebe35e5502 2019-11-26 22:39:03.518559 22120 959 Product \N \N 4 User \N create ---\nsku: PAN-959\nname: PNT-0022\ndescription: "PANTALON STRECH NEGRO MUYMUY ST-1473\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.35E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-959 fue creado. 187.149.58.33 12cb0da0-8f14-45df-a188-e934c7244731 2019-11-26 22:42:59.254249 22122 960 Product \N \N 4 User \N create ---\nsku: PAN-960\nname: PNT-0023\ndescription: "PANTALON NEGRO CON BRILLOS NEGROS MUYMUY ST-1480\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.35E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-960 fue creado. 187.149.58.33 ede98376-be0d-4b27-97d8-5f3b82162e9a 2019-11-26 22:43:47.744003 22123 960 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000960'\n 2 \N 187.149.58.33 ede98376-be0d-4b27-97d8-5f3b82162e9a 2019-11-26 22:43:47.783959 22124 961 Product \N \N 4 User \N create ---\nsku: PAN-961\nname: PNT-0024\ndescription: "PANTALON NEGRO CON BRILLOS PLATEADOS MUYMUY ST-1470\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.52E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-961 fue creado. 187.149.58.33 979a1407-7a6e-4c9e-a268-be7308ebf492 2019-11-26 22:44:32.258945 22125 961 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000961'\n 2 \N 187.149.58.33 979a1407-7a6e-4c9e-a268-be7308ebf492 2019-11-26 22:44:32.298516 22126 208 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-40\namount: !ruby/object:BigDecimal 18:0.1092E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1092E5\nobservations: ''\npurchase_date: 2019-11-26\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-40 por $ 10920.0 MXN creada. 187.149.58.33 284a55bf-e9f0-4ae8-bb79-9bec32de4516 2019-11-26 22:44:39.45331 22127 962 Product \N \N 4 User \N create ---\nsku: CHA-962\nname: CHA-0024\ndescription: "SACO NEGRO CON ENCAJE SANJOY\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.34E3\nprice_sale: !ruby/object:BigDecimal 18:0.849E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-962 fue creado. 187.149.58.33 982fd3a7-3798-4130-b39f-5bf52bf363d5 2019-11-26 22:46:49.317968 22128 962 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000962'\n 2 \N 187.149.58.33 982fd3a7-3798-4130-b39f-5bf52bf363d5 2019-11-26 22:46:49.352316 22129 963 Product \N \N 4 User \N create ---\nsku: FAL-963\nname: FLD-0022\ndescription: "FALDA ROJA SANJOY\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.38E3\nprice_sale: !ruby/object:BigDecimal 18:0.949E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-963 fue creado. 187.149.58.33 4728f454-a897-41c8-98f6-48b35893a107 2019-11-26 22:48:21.103926 22130 963 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000963'\n 2 \N 187.149.58.33 4728f454-a897-41c8-98f6-48b35893a107 2019-11-26 22:48:21.136302 22131 209 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-41\namount: !ruby/object:BigDecimal 18:0.432E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.432E4\nobservations: ''\npurchase_date: 2019-11-26\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-41 por $ 4320.0 MXN creada. 187.149.58.33 d610ac18-46b8-4cdf-8444-608ad14c8cde 2019-11-26 22:48:26.182169 22132 325 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-11-26\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.58.33 306e8bbe-6dd9-4812-9134-efcc08c0ce53 2019-11-26 22:51:01.093109 22133 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-11-20 21:30:18.824328000 Z\n- &1 2019-11-24 19:21:20.129795000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-26 22:51:26.763619012 Z\nsign_in_count:\n- 41\n- 42\n 84 \N 187.149.58.33 2dc6d924-3428-4995-b4bc-327c3e7ccfed 2019-11-26 22:51:26.769912 22134 25 User \N \N 25 User \N update ---\nunique_session_id:\n- _KsC-gg1yi54A_zBJ9Ap\n- cymfUschBg2M_e3Sx5Mh\n 85 \N 187.149.58.33 2dc6d924-3428-4995-b4bc-327c3e7ccfed 2019-11-26 22:51:26.784412 22135 325 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-26\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.58.33 3e7e5a1d-e538-4f2a-ad5a-0dd1e0bda0a3 2019-11-26 22:51:39.740618 22136 1406 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 958\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 3e7e5a1d-e538-4f2a-ad5a-0dd1e0bda0a3 2019-11-26 22:51:39.764504 22137 1407 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 962\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 3e7e5a1d-e538-4f2a-ad5a-0dd1e0bda0a3 2019-11-26 22:51:39.78848 22138 1408 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 957\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 3e7e5a1d-e538-4f2a-ad5a-0dd1e0bda0a3 2019-11-26 22:51:39.81932 22139 1409 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 961\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 3e7e5a1d-e538-4f2a-ad5a-0dd1e0bda0a3 2019-11-26 22:51:39.847894 22140 1410 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 963\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 3e7e5a1d-e538-4f2a-ad5a-0dd1e0bda0a3 2019-11-26 22:51:39.870557 22141 1411 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 954\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.12E2\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 3e7e5a1d-e538-4f2a-ad5a-0dd1e0bda0a3 2019-11-26 22:51:39.892835 22142 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-26 21:24:45.058306000 Z\n- &1 2019-11-26 21:43:10.936423000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-26 23:01:10.449795752 Z\nsign_in_count:\n- 976\n- 977\n 1954 \N 187.149.58.33 5fdf6ebd-8d2d-4429-b9b8-c2f221599f95 2019-11-26 23:01:10.458349 22144 1244 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.58.33 3eda6590-5ae3-43ab-85e2-d540ad61d32c 2019-11-26 23:12:53.361308 22145 610 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.58.33 9a89e395-5746-4e2d-93bb-b3711d977117 2019-11-26 23:12:59.940168 22146 326 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-11-26\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.58.33 6c10843b-445a-4c3c-9196-27caab675202 2019-11-26 23:13:06.651502 22147 327 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-11-26\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 187.149.58.33 1b532975-9d97-4116-8ed3-a33040b26370 2019-11-26 23:15:17.937681 22148 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-23 17:55:54.523678000 Z\n- &1 2019-11-26 21:39:15.855002000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-26 23:15:55.540959606 Z\nsign_in_count:\n- 42\n- 43\n 86 \N 187.149.58.33 f438f29c-2301-463a-bb53-c2c03ab51db8 2019-11-26 23:15:55.549467 22149 26 User \N \N 26 User \N update ---\nunique_session_id:\n- rwbKB4Qmt4Gvvu1g31st\n- SxDcSRtJHE55J42twvxX\n 87 \N 187.149.58.33 f438f29c-2301-463a-bb53-c2c03ab51db8 2019-11-26 23:15:55.567393 22150 319 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-26\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.58.33 6cafb396-af5b-46a4-a29b-bd9a5b2e01ee 2019-11-26 23:16:18.966032 22151 800 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.5E1\n 18 \N 187.149.58.33 6cafb396-af5b-46a4-a29b-bd9a5b2e01ee 2019-11-26 23:16:18.985725 22152 326 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-26\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.58.33 78e0557f-4d50-4e1d-8d2f-d9971d56e274 2019-11-26 23:16:27.340178 22153 987 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.58.33 78e0557f-4d50-4e1d-8d2f-d9971d56e274 2019-11-26 23:16:27.358615 22154 1253 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 187.149.58.33 78e0557f-4d50-4e1d-8d2f-d9971d56e274 2019-11-26 23:16:27.379438 22155 327 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-26\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.58.33 14ce5ae4-6277-42aa-a5b1-78948ef6dda4 2019-11-26 23:16:41.45018 22156 1412 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 954\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.12E2\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 14ce5ae4-6277-42aa-a5b1-78948ef6dda4 2019-11-26 23:16:41.474097 22157 1413 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 960\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 14ce5ae4-6277-42aa-a5b1-78948ef6dda4 2019-11-26 23:16:41.501168 22158 1414 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 959\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 14ce5ae4-6277-42aa-a5b1-78948ef6dda4 2019-11-26 23:16:41.526308 22159 1415 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 956\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 14ce5ae4-6277-42aa-a5b1-78948ef6dda4 2019-11-26 23:16:41.551314 22160 1416 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 955\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 14ce5ae4-6277-42aa-a5b1-78948ef6dda4 2019-11-26 23:16:41.575932 22161 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-26 21:39:15.855002000 Z\n- &1 2019-11-26 23:15:55.540959000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-26 23:35:07.965714223 Z\nsign_in_count:\n- 43\n- 44\n 88 \N 187.149.58.33 809eb632-4fdf-4985-85b0-daf46f54c349 2019-11-26 23:35:07.971456 22162 26 User \N \N 26 User \N update ---\nunique_session_id:\n- SxDcSRtJHE55J42twvxX\n- E2wB2stxQHzLX78LaVzs\n 89 \N 187.149.58.33 809eb632-4fdf-4985-85b0-daf46f54c349 2019-11-26 23:35:07.98484 22163 1512 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 615\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-11-26\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-137\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 351f7131-396e-48b9-acd7-e35c91368f43 2019-11-26 23:37:04.767205 22164 1396 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 3 \N 189.186.111.139 351f7131-396e-48b9-acd7-e35c91368f43 2019-11-26 23:37:04.799921 22165 247 Customer \N \N 26 User \N create ---\nnick_name: VIANEY\nphone: "(667) 790-7326"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente VIANEY fue registrado. 187.149.58.33 4fc2989c-ade7-42f1-aac2-2fb00ef57833 2019-11-26 23:37:21.327507 22166 1512 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 e77d807d-4ef3-435f-a785-9f363c307ee4 2019-11-26 23:37:33.724653 22167 2108 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 615\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 1512\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-137\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.55E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-137 189.186.111.139 e77d807d-4ef3-435f-a785-9f363c307ee4 2019-11-26 23:37:33.770208 22168 1513 Sale \N \N 26 User \N create ---\ncustomer_id: 247\nuser_id: 26\nopen_cash_register_id: 617\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-11-26\nsaletype: 2\nseller_id: 15\nsale_code: PV2-V-594\nexpiration_date: 2019-12-31\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 64593be6-46b3-4ab9-98a2-f4bba60862b1 2019-11-26 23:37:42.83504 22169 1288 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.58.33 64593be6-46b3-4ab9-98a2-f4bba60862b1 2019-11-26 23:37:42.867135 22170 2109 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 617\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1513\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-594\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-594 187.149.58.33 96a316a1-f949-4b62-9263-39bfcd4327f0 2019-11-26 23:37:49.188542 22171 1513 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 a1a11d87-7e4e-4f38-84d0-ed9bdcfd7acf 2019-11-26 23:37:50.376363 22172 1514 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 616\namount: !ruby/object:BigDecimal 18:0.2498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2498E4\nstatus: 0\ndate_sale: 2019-11-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-781\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 05b1feb5-90df-48da-b3ce-1b26c7698591 2019-11-26 23:42:18.199741 22173 1409 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 05b1feb5-90df-48da-b3ce-1b26c7698591 2019-11-26 23:42:18.236049 22174 1411 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 2 \N 187.149.58.33 05b1feb5-90df-48da-b3ce-1b26c7698591 2019-11-26 23:42:18.266788 22175 1514 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 31bb79a6-4d8b-4a68-96da-5ae8ac7a3777 2019-11-26 23:43:23.371867 22176 2110 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 616\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2498E4\nmove_type: '1'\nsale_id: 1514\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-781\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2498E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-781 187.149.58.33 31bb79a6-4d8b-4a68-96da-5ae8ac7a3777 2019-11-26 23:43:23.393021 22177 2111 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 616\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1118E4\nmove_type: '1'\nsale_id: 1311\ncardnumber: 3982\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-696 187.149.58.33 c573c109-9877-42ac-8792-96f5a6b9eefa 2019-11-27 00:11:01.797525 22178 1311 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 97a718ac-96f5-4e81-bc1c-3da01dee987a 2019-11-27 00:11:03.53626 22179 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-26 21:43:10.936423000 Z\n- &1 2019-11-26 23:01:10.449795000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-27 00:23:33.149211618 Z\nsign_in_count:\n- 977\n- 978\n 1956 \N 187.149.58.33 0e1ebea9-fe12-4e23-8f19-9c068775078b 2019-11-27 00:23:33.155276 22180 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eDd2W_y2pg2ybCmZznBn\n- ZdEnHqemRHavjyAc8VTw\n 1957 \N 187.149.58.33 0e1ebea9-fe12-4e23-8f19-9c068775078b 2019-11-27 00:23:33.170725 22181 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-11-22 17:34:58.240035000 Z\n- &1 2019-11-26 02:49:25.369700000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-27 01:29:15.888253319 Z\nsign_in_count:\n- 23\n- 24\n 48 \N 187.149.58.33 7cbd4d22-b21d-425f-b2ed-903860dab8af 2019-11-27 01:29:15.899021 22182 24 User \N \N 24 User \N update ---\nunique_session_id:\n- q1pffcTLqLyHTHbrfppa\n- 6qCoySsLXByxHPTcdFBD\n 49 \N 187.149.58.33 7cbd4d22-b21d-425f-b2ed-903860dab8af 2019-11-27 01:29:15.919789 22183 1515 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 617\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-11-26\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-595\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 8a608e9d-2628-4855-9260-c3846dc85dd9 2019-11-27 01:29:40.795468 22184 396 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 187.149.58.33 8a608e9d-2628-4855-9260-c3846dc85dd9 2019-11-27 01:29:40.840054 22185 1515 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 0181fd21-bc3b-43f8-9fbc-f4d2f2de5314 2019-11-27 01:30:00.882165 22186 2112 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 617\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 1515\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-595\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-595 187.149.58.33 0181fd21-bc3b-43f8-9fbc-f4d2f2de5314 2019-11-27 01:30:00.914278 22187 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-26 23:01:10.449795000 Z\n- &1 2019-11-27 00:23:33.149211000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-27 01:38:44.157286980 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\nsign_in_count:\n- 978\n- 979\n 1958 \N 187.149.27.48 66ee27f3-f429-4cdd-a97e-94439e90e4c5 2019-11-27 01:38:44.168057 22188 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZdEnHqemRHavjyAc8VTw\n- er4UPisNcEvXoPxwaZsu\n 1959 \N 187.149.27.48 66ee27f3-f429-4cdd-a97e-94439e90e4c5 2019-11-27 01:38:44.194476 22189 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-27 00:23:33.149211000 Z\n- &1 2019-11-27 01:38:44.157286000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-27 02:21:36.433114083 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\nsign_in_count:\n- 979\n- 980\n 1960 \N 187.149.27.48 5d601a44-655f-4ac0-b5f5-6c9c37c062f5 2019-11-27 02:21:36.450672 22190 4 User \N \N 4 User \N update ---\nunique_session_id:\n- er4UPisNcEvXoPxwaZsu\n- yKxPzssFDxkAx7ask4vy\n 1961 \N 187.149.27.48 5d601a44-655f-4ac0-b5f5-6c9c37c062f5 2019-11-27 02:21:36.484847 22191 1516 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 616\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-11-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-782\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 0c8fe6d3-6e40-4b08-b603-23aeed87bda8 2019-11-27 02:37:51.954304 22192 1284 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 0c8fe6d3-6e40-4b08-b603-23aeed87bda8 2019-11-27 02:37:51.994441 22193 1516 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 77009f6d-a341-409d-9bc4-65d896d63b4c 2019-11-27 02:38:55.322088 22194 2113 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 616\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 1516\ncardnumber: 673\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-782\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-782 187.149.58.33 77009f6d-a341-409d-9bc4-65d896d63b4c 2019-11-27 02:38:55.354918 22195 223 Expense \N \N 26 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 617\nquantity: !ruby/object:BigDecimal 18:0.541E3\nstatus: 1\nobservations: PAGO DE CFE\nexpense_date: 2019-11-26\nexpense_code: PV2-E-50\n 1 Egreso por 541.0 registrado 187.149.58.33 e6144c41-90f8-4342-b72a-b3e1eb8377c2 2019-11-27 02:45:54.630177 22196 2114 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 617\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.541E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 223\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 e6144c41-90f8-4342-b72a-b3e1eb8377c2 2019-11-27 02:45:54.652461 22197 224 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 616\nquantity: !ruby/object:BigDecimal 18:0.15E4\nstatus: 1\nobservations: LUZ CFE\nexpense_date: 2019-11-26\nexpense_code: PV1-E-160\n 1 Egreso por 1500.0 registrado 187.149.58.33 812f5b62-be72-48e8-a808-b7f7791dc6ed 2019-11-27 02:46:03.080501 22198 2115 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 616\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 224\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 812f5b62-be72-48e8-a808-b7f7791dc6ed 2019-11-27 02:46:03.106988 22199 618 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 616\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6413E4\namount_out: !ruby/object:BigDecimal 18:0.15E4\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.675E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2675E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 465066ea-8153-41bd-8fc6-d7a3b8bb5060 2019-11-27 02:48:23.561915 22200 616 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 465066ea-8153-41bd-8fc6-d7a3b8bb5060 2019-11-27 02:48:23.577177 22201 619 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 615\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.1049E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.843E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1843E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 cfab0d73-ae4c-447c-96ce-6e190e99fd1f 2019-11-27 02:59:05.55763 22202 615 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 cfab0d73-ae4c-447c-96ce-6e190e99fd1f 2019-11-27 02:59:05.57969 22203 620 CashOut \N \N 26 User \N create ---\nopen_cash_register_id: 617\nuser_id: 26\namount_in: !ruby/object:BigDecimal 18:0.1798E4\namount_out: !ruby/object:BigDecimal 18:0.541E3\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.798E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1298E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 a0e923cd-5f06-41cf-8c52-b93e14e85da0 2019-11-27 03:13:33.200302 22204 617 OpenCashRegister \N \N 26 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 a0e923cd-5f06-41cf-8c52-b93e14e85da0 2019-11-27 03:13:33.220867 22205 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-24 17:03:12.565303000 Z\n- &1 2019-11-25 17:26:59.387905000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-27 17:08:10.672174016 Z\nsign_in_count:\n- 27\n- 28\n 56 \N 187.149.58.33 87401c36-4268-45aa-8d4a-ffd65a692313 2019-11-27 17:08:10.726499 22206 27 User \N \N 27 User \N update ---\nunique_session_id:\n- FyjPaSXGkLzdZh8EFmVY\n- N6sGtiLFEyaEt1qwBNGm\n 57 \N 187.149.58.33 87401c36-4268-45aa-8d4a-ffd65a692313 2019-11-27 17:08:10.762374 22207 618 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.798E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 798.0 187.149.58.33 397506fa-9959-442a-8f0c-946d6a0319ea 2019-11-27 17:09:27.174279 22208 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-25 17:14:44.111206000 Z\n- &1 2019-11-26 20:37:06.935859000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-27 17:14:55.326806817 Z\nsign_in_count:\n- 389\n- 390\n 783 \N 187.149.58.33 a7c1133f-bf58-47b0-a1ea-6d207b6dfa20 2019-11-27 17:14:55.337141 22209 2 User \N \N 2 User \N update ---\nunique_session_id:\n- z_x-8rmx4q6-Uo5dC9yH\n- gRZ5PxbuEUEHPU2vnh1p\n 784 \N 187.149.58.33 a7c1133f-bf58-47b0-a1ea-6d207b6dfa20 2019-11-27 17:14:55.357744 22210 619 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.675E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 675.0 187.149.58.33 41e91e57-aa76-4477-a87b-13dc8538eb68 2019-11-27 17:35:16.982706 22211 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-27 01:38:44.157286000 Z\n- &1 2019-11-27 02:21:36.433114000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-27 19:30:18.185490831 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 980\n- 981\n 1962 \N 189.186.111.139 999f4854-b842-4d0b-9af7-05639c3fae0e 2019-11-27 19:30:18.220035 22212 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yKxPzssFDxkAx7ask4vy\n- rDfvvSx14nSd-7E3Pc5b\n 1963 \N 189.186.111.139 999f4854-b842-4d0b-9af7-05639c3fae0e 2019-11-27 19:30:18.245018 22213 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-27 02:21:36.433114000 Z\n- &1 2019-11-27 19:30:18.185490000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-27 20:20:12.450740631 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\nsign_in_count:\n- 981\n- 982\n 1964 \N 187.149.27.48 ad6de609-b8ca-41a9-962e-b96e664f4260 2019-11-27 20:20:12.458724 22214 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rDfvvSx14nSd-7E3Pc5b\n- xEZtHCBptQe3iRZt4NX6\n 1965 \N 187.149.27.48 ad6de609-b8ca-41a9-962e-b96e664f4260 2019-11-27 20:20:12.477679 22215 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-27 19:30:18.185490000 Z\n- &1 2019-11-27 20:20:12.450740000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-27 20:20:12.777923643 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\nsign_in_count:\n- 982\n- 983\n 1966 \N 187.149.27.48 db58bd86-620f-42eb-895e-25f861249d79 2019-11-27 20:20:12.784739 22216 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xEZtHCBptQe3iRZt4NX6\n- 7WmAonJVLbroTE7ACzDK\n 1967 \N 187.149.27.48 db58bd86-620f-42eb-895e-25f861249d79 2019-11-27 20:20:12.803702 22217 1517 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 618\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-11-27\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-596\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 13b8fedd-8043-4056-9995-31c64134314e 2019-11-27 20:52:49.929123 22218 1416 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 13b8fedd-8043-4056-9995-31c64134314e 2019-11-27 20:52:49.98198 22219 1517 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 9d30fe8f-41f9-4470-8130-75d26fdd4b5d 2019-11-27 20:53:32.353659 22220 2116 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 618\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 1517\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-596\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-596 187.149.58.33 9d30fe8f-41f9-4470-8130-75d26fdd4b5d 2019-11-27 20:53:32.379479 22221 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-27 20:20:12.450740000 Z\n- &1 2019-11-27 20:20:12.777923000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-27 21:08:52.155319803 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 983\n- 984\n 1968 \N 189.186.111.139 4fdd0a96-7231-40a0-ad49-1efb5c203d3e 2019-11-27 21:08:52.168823 22222 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7WmAonJVLbroTE7ACzDK\n- zscf_UeZzyLYNveG1jny\n 1969 \N 189.186.111.139 4fdd0a96-7231-40a0-ad49-1efb5c203d3e 2019-11-27 21:08:52.194751 22223 328 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-11-27\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.111.139 d5e56f7b-27d3-40f7-aa07-572b72848157 2019-11-27 21:18:21.074329 22224 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-11-19 02:48:44.935485000 Z\n- &1 2019-11-21 18:05:15.562834000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-27 22:13:09.864433229 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 47\n- 48\n 97 \N 189.186.111.139 60ae14bc-cfa7-4468-b679-de4082431983 2019-11-27 22:13:09.880135 22225 21 User \N \N 21 User \N update ---\nunique_session_id:\n- txTpAJMjwSUxu5qxZ52f\n- Bim7H-Pa4mE_eeZ98jao\n 98 \N 189.186.111.139 60ae14bc-cfa7-4468-b679-de4082431983 2019-11-27 22:13:09.90646 22226 620 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.843E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 843.0 189.186.111.139 f10cc26e-74aa-42d0-a117-5c11803e08f1 2019-11-27 22:13:23.510016 22227 1518 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 620\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-11-27\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-138\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 1e401149-bb78-4ff6-9753-317b2fb74607 2019-11-27 22:13:41.964717 22228 1230 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.111.139 1e401149-bb78-4ff6-9753-317b2fb74607 2019-11-27 22:13:42.004385 22229 1518 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 99f791f6-1e14-4fdf-8b77-ab60b7a690c2 2019-11-27 22:14:13.329788 22230 2117 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 620\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 1518\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-138\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-138 189.186.111.139 99f791f6-1e14-4fdf-8b77-ab60b7a690c2 2019-11-27 22:14:13.378387 22231 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-27 20:20:12.777923000 Z\n- &1 2019-11-27 21:08:52.155319000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-27 22:45:10.815372105 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\nsign_in_count:\n- 984\n- 985\n 1970 \N 187.149.27.48 a97c1da4-9c5c-45f2-8709-ee452525f045 2019-11-27 22:45:10.826064 22232 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zscf_UeZzyLYNveG1jny\n- WyGso_g8EFEVhqaAJssJ\n 1971 \N 187.149.27.48 a97c1da4-9c5c-45f2-8709-ee452525f045 2019-11-27 22:45:10.849515 22233 1519 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 618\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2019-11-27\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-597\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 4c167fb7-7055-4c96-86d4-834a23538a83 2019-11-27 23:05:52.627545 22234 367 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.33E2\n- !ruby/object:BigDecimal 18:0.32E2\n 24 \N 187.149.58.33 4c167fb7-7055-4c96-86d4-834a23538a83 2019-11-27 23:05:52.670243 22235 1519 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 0679c732-aca8-4801-a917-69343597f3f1 2019-11-27 23:06:02.408135 22236 2118 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 618\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 1519\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-597\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-597 187.149.58.33 0679c732-aca8-4801-a917-69343597f3f1 2019-11-27 23:06:02.433975 22304 1097 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 10 \N 187.149.58.33 24098b39-41f5-4bf6-888c-cfb6bfa7fc62 2019-11-28 20:52:11.172846 22237 17 ProductsReturn \N \N 2 User \N create ---\nsale_id: 1480\nuser_id: 2\nreturn_code: PV1-D-9\npointsale_id: 1\nnew_amount: !ruby/object:BigDecimal 18:0.699E3\nreturned_amount: !ruby/object:BigDecimal 18:0.799E3\ndifference_amount: !ruby/object:BigDecimal 18:0.0\nis_money_returned: false\n 1 devolución PV1-D-9 creada. 187.149.58.33 0cde5aef-2aab-43aa-b9d1-a5a6e6faeccd 2019-11-27 23:39:33.554245 22238 1398 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.58.33 0cde5aef-2aab-43aa-b9d1-a5a6e6faeccd 2019-11-27 23:39:33.589129 22239 1371 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 0cde5aef-2aab-43aa-b9d1-a5a6e6faeccd 2019-11-27 23:39:33.622751 22240 1398 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.58.33 349e1678-d39d-4ed5-8c14-2276a1d1897b 2019-11-27 23:47:34.414478 22241 329 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-11-27\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.58.33 c2ca419d-458e-4a2d-8870-c8d5cdff54f4 2019-11-27 23:47:37.087019 22242 1062 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.111.139 5733b09c-fc23-497b-8b72-99e5905e9327 2019-11-27 23:54:00.212661 22243 856 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.111.139 5733b09c-fc23-497b-8b72-99e5905e9327 2019-11-27 23:54:00.247579 22244 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-27 21:08:52.155319000 Z\n- &1 2019-11-27 22:45:10.815372000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-28 00:33:33.585780495 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 985\n- 986\n 1972 \N 189.186.111.139 7d3d7829-9728-4f56-99ff-1df62dcc5105 2019-11-28 00:33:33.59631 22245 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WyGso_g8EFEVhqaAJssJ\n- 1NHn-N_gR4mZbxnNrK52\n 1973 \N 189.186.111.139 7d3d7829-9728-4f56-99ff-1df62dcc5105 2019-11-28 00:33:33.624962 22246 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-27 22:45:10.815372000 Z\n- &1 2019-11-28 00:33:33.585780000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-28 01:42:53.632866790 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\nsign_in_count:\n- 986\n- 987\n 1974 \N 187.149.27.48 00095a43-41f1-48ab-818a-fc1594d752a2 2019-11-28 01:42:53.65543 22247 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1NHn-N_gR4mZbxnNrK52\n- wzjYtR9DfH7MMmyGzsXB\n 1975 \N 187.149.27.48 00095a43-41f1-48ab-818a-fc1594d752a2 2019-11-28 01:42:53.693179 22248 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-11-26 02:49:25.369700000 Z\n- &1 2019-11-27 01:29:15.888253000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-28 02:02:00.439542978 Z\nsign_in_count:\n- 24\n- 25\n 50 \N 187.149.58.33 40eb261e-f250-40e9-92d5-3401cb38a788 2019-11-28 02:02:00.452659 22249 24 User \N \N 24 User \N update ---\nunique_session_id:\n- 6qCoySsLXByxHPTcdFBD\n- tng86Fsq3Ttji_MAxD-b\n 51 \N 187.149.58.33 40eb261e-f250-40e9-92d5-3401cb38a788 2019-11-28 02:02:00.472761 22250 1520 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 618\namount: !ruby/object:BigDecimal 18:0.1498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1498E4\nstatus: 0\ndate_sale: 2019-11-27\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-598\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 bf4735f6-15fa-488b-967d-ecc8f83be030 2019-11-28 02:11:00.563717 22251 1253 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.58.33 bf4735f6-15fa-488b-967d-ecc8f83be030 2019-11-28 02:11:00.600851 22252 1414 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 bf4735f6-15fa-488b-967d-ecc8f83be030 2019-11-28 02:11:00.630106 22253 1520 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 d7385ef6-f21a-499a-93f6-834c0a4ff238 2019-11-28 02:11:41.18136 22254 2119 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 618\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.1498E4\nmove_type: '1'\nsale_id: 1520\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-598\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: S30D\ncustomer_account: '1218084899075'\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-598 187.149.58.33 d7385ef6-f21a-499a-93f6-834c0a4ff238 2019-11-28 02:11:41.221626 22255 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-11-25 21:25:37.725439000 Z\n- &1 2019-11-26 22:27:34.298194000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-28 02:17:10.598375305 Z\nsign_in_count:\n- 115\n- 116\n 232 \N 187.149.58.33 a50c91eb-d5b6-4ee8-be68-5c969faae3d4 2019-11-28 02:17:10.607147 22256 1 User \N \N 1 User \N update ---\nunique_session_id:\n- nvGUEA6Gzd4jnVdFzUSh\n- vZaBsc3WdEtzVsUf_1ux\n 233 \N 187.149.58.33 a50c91eb-d5b6-4ee8-be68-5c969faae3d4 2019-11-28 02:17:10.625169 22257 621 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 619\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.675E3\nphysical_cash: !ruby/object:BigDecimal 18:0.675E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 1d00d19a-3425-4d29-959b-21e814020f78 2019-11-28 02:45:33.328691 22258 619 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 1d00d19a-3425-4d29-959b-21e814020f78 2019-11-28 02:45:33.346578 22259 2120 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 620\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1353\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.11E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-98 189.186.111.139 c1ee8069-77c0-40ae-899a-477e6dbb802a 2019-11-28 02:51:09.940541 22350 1527 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 0810eb82-6b2c-4241-ae54-520f604998ad 2019-11-29 19:27:25.506925 22399 1066 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 f1f1ecf4-3339-45e4-9718-ecc6d30f945f 2019-11-30 01:10:02.660535 22260 2121 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 620\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 1353\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-98 189.186.111.139 844a6fa7-f066-4de7-b300-48c8c5948034 2019-11-28 02:51:45.053758 22261 2120 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 620\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1353\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.11E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.111.139 cd4a14c0-9eb1-4440-9771-87aecb3c7c46 2019-11-28 02:51:48.904053 22262 1353 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.111.139 ceabaf30-9bb7-455e-bbc0-ec4bd06d0b3a 2019-11-28 02:51:50.707234 22263 622 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 618\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2546E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.846E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1846E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 17f0bfa0-9c11-4026-a485-f026aee74e45 2019-11-28 02:55:30.993773 22264 618 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 17f0bfa0-9c11-4026-a485-f026aee74e45 2019-11-28 02:55:31.01792 22265 623 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 618\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2546E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.846E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1846E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 d6f07770-a500-485b-90df-de592eb44342 2019-11-28 02:55:31.332836 22266 624 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 620\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.2198E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.541E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3041E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 2e0aad0a-adf1-4a74-8f2f-1b8678ef4d04 2019-11-28 03:02:48.975315 22267 620 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 2e0aad0a-adf1-4a74-8f2f-1b8678ef4d04 2019-11-28 03:02:48.991785 22268 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-28 00:33:33.585780000 Z\n- &1 2019-11-28 01:42:53.632866000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-28 03:51:08.960448074 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\nsign_in_count:\n- 987\n- 988\n 1976 \N 187.149.27.48 fcac5634-3636-4d9d-882b-3052875db8ca 2019-11-28 03:51:09.00562 22269 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wzjYtR9DfH7MMmyGzsXB\n- HokRyr1Nx6N7s1LxCcqS\n 1977 \N 187.149.27.48 fcac5634-3636-4d9d-882b-3052875db8ca 2019-11-28 03:51:09.039732 22270 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-25 20:05:48.935678000 Z\n- &1 2019-11-26 16:59:16.997668000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-28 16:57:38.963959554 Z\nsign_in_count:\n- 73\n- 74\n 148 \N 189.186.111.139 ab1b00a6-ee56-418d-9c97-52f02334c848 2019-11-28 16:57:39.017108 22271 23 User \N \N 23 User \N update ---\nunique_session_id:\n- 2wod92bck6gnPEkjZVxs\n- vHtts_GQN1sjYhWg2Zei\n 149 \N 189.186.111.139 ab1b00a6-ee56-418d-9c97-52f02334c848 2019-11-28 16:57:39.053767 22272 621 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.541E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 541.0 189.186.111.139 47d016c9-d616-402d-8894-a835f678da45 2019-11-28 16:59:04.294517 22273 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-25 17:26:59.387905000 Z\n- &1 2019-11-27 17:08:10.672174000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-28 17:16:58.894265420 Z\nsign_in_count:\n- 28\n- 29\n 58 \N 187.149.58.33 d0dca6c3-0053-4960-85d5-0c8e25570e56 2019-11-28 17:16:58.901431 22274 27 User \N \N 27 User \N update ---\nunique_session_id:\n- N6sGtiLFEyaEt1qwBNGm\n- XxeFr4AzNNDm66gRxpGa\n 59 \N 187.149.58.33 d0dca6c3-0053-4960-85d5-0c8e25570e56 2019-11-28 17:16:58.919753 22275 622 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.846E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 846.0 187.149.58.33 c0eec4c4-0f5c-4b92-a0e9-db64f48d1903 2019-11-28 17:17:34.632113 22276 2122 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 622\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1357\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.4E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-546 187.149.58.33 b6c3091a-4457-46b8-8b9e-c6f2eca4bb2d 2019-11-28 17:32:25.943809 22277 2123 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 622\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.289E3\nmove_type: '1'\nsale_id: 1357\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.111E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-546 187.149.58.33 fb2ae23b-39ba-45d9-ae11-ce8895ef25dc 2019-11-28 17:32:43.404965 22278 1357 Sale \N \N 27 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 729909a3-bd74-4199-9f07-2c92fd2cf967 2019-11-28 17:32:50.534655 22279 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-26 20:37:06.935859000 Z\n- &1 2019-11-27 17:14:55.326806000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-28 18:02:20.905428013 Z\nsign_in_count:\n- 390\n- 391\n 785 \N 187.149.58.33 a50379ae-f1f8-4516-a9fd-3e0f5ce8615a 2019-11-28 18:02:20.917091 22280 2 User \N \N 2 User \N update ---\nunique_session_id:\n- gRZ5PxbuEUEHPU2vnh1p\n- yyqn8UAWFu5qsvTifaEK\n 786 \N 187.149.58.33 a50379ae-f1f8-4516-a9fd-3e0f5ce8615a 2019-11-28 18:02:20.941769 22281 623 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.675E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 675.0 187.149.58.33 725a2a6c-a9d1-4784-83b6-4736b7c5a476 2019-11-28 18:02:36.56538 22397 1 User \N \N 1 User \N update ---\nunique_session_id:\n- iJaEdob_UHyMJ1xky2Yj\n- fjL-R1aopp9ATg8CSsS1\n 237 \N 187.149.58.33 fe2a399c-3cbb-4cc0-8c69-9b7121f6402f 2019-11-30 00:40:17.670357 22282 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-11-21 18:05:15.562834000 Z\n- &1 2019-11-27 22:13:09.864433000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-28 20:04:44.541511093 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\nsign_in_count:\n- 48\n- 49\n 99 \N 187.149.27.48 67298150-abc9-4703-84f1-d810aa898260 2019-11-28 20:04:44.571695 22283 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Bim7H-Pa4mE_eeZ98jao\n- JVjYrpwPDQk5agB2jha1\n 100 \N 187.149.27.48 67298150-abc9-4703-84f1-d810aa898260 2019-11-28 20:04:44.603236 22284 18 ProductsReturn \N \N 23 User \N create ---\nsale_id: 1518\nuser_id: 23\nreturn_code: PV3-D-1\npointsale_id: 3\nnew_amount: !ruby/object:BigDecimal 18:0.169901E4\nreturned_amount: !ruby/object:BigDecimal 18:0.1099E4\ndifference_amount: !ruby/object:BigDecimal 18:0.60001E3\nis_money_returned: false\n 1 devolución PV3-D-1 creada. 189.186.111.139 48f3ce15-4dea-4971-9eff-2b575bda439f 2019-11-28 20:09:09.221181 22285 1230 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.111.139 48f3ce15-4dea-4971-9eff-2b575bda439f 2019-11-28 20:09:09.262587 22286 905 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.111.139 48f3ce15-4dea-4971-9eff-2b575bda439f 2019-11-28 20:09:09.29349 22287 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-28 01:42:53.632866000 Z\n- &1 2019-11-28 03:51:08.960448000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-28 20:09:25.890969317 Z\nsign_in_count:\n- 988\n- 989\n 1978 \N 187.149.27.48 800bc4cf-ba64-43ae-a602-08e5ea4f0e48 2019-11-28 20:09:25.897853 22288 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HokRyr1Nx6N7s1LxCcqS\n- v9tXsXkxdgL4wE1DysKD\n 1979 \N 187.149.27.48 800bc4cf-ba64-43ae-a602-08e5ea4f0e48 2019-11-28 20:09:25.915793 22289 2124 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 621\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 1518\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 18\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV3-D-1 189.186.111.139 f19c5f11-64b3-4663-add0-817381b6812d 2019-11-28 20:09:28.20275 22290 2125 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 621\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 1518\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 18\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV3-D-1 189.186.111.139 b363cd32-9d0e-4526-8016-427e25320210 2019-11-28 20:09:49.696197 22291 330 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-11-28\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 187.149.27.48 de3748d2-c2fa-4e0c-8d24-70cb70ad8d8f 2019-11-28 20:11:05.698507 22292 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-11-27 22:13:09.864433000 Z\n- &1 2019-11-28 20:04:44.541511000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-28 20:11:50.574580360 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\nsign_in_count:\n- 49\n- 50\n 101 \N 187.149.27.48 13b165d0-bed4-4ab4-b82e-d4fc11dd11a5 2019-11-28 20:11:50.583818 22293 21 User \N \N 21 User \N update ---\nunique_session_id:\n- JVjYrpwPDQk5agB2jha1\n- xA-phjFiZRmtHEyvPheu\n 102 \N 187.149.27.48 13b165d0-bed4-4ab4-b82e-d4fc11dd11a5 2019-11-28 20:11:50.605293 22294 328 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-28\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 187.149.27.48 ad1704da-4ab5-47fb-80bc-f67b2e2b98e8 2019-11-28 20:12:27.836912 22295 1417 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 887\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.27.48 ad1704da-4ab5-47fb-80bc-f67b2e2b98e8 2019-11-28 20:12:27.860917 22296 330 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-28\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 187.149.27.48 b38f3557-b49c-4f2c-97f8-954c888fed01 2019-11-28 20:12:33.955615 22297 1035 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 187.149.27.48 b38f3557-b49c-4f2c-97f8-954c888fed01 2019-11-28 20:12:33.973381 22298 1521 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 623\namount: !ruby/object:BigDecimal 18:0.149E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.149E3\nstatus: 0\ndate_sale: 2019-11-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-783\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 ef0a24f0-c6d2-4f2a-a720-a90ab61b9425 2019-11-28 20:42:03.769664 22299 1310 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.58.33 ef0a24f0-c6d2-4f2a-a720-a90ab61b9425 2019-11-28 20:42:03.801774 22300 1521 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 f96aa900-bccc-44dd-be14-395b3bef0f43 2019-11-28 20:42:09.099306 22301 2126 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 623\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.149E3\nmove_type: '1'\nsale_id: 1521\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-783\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.149E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-783 187.149.58.33 f96aa900-bccc-44dd-be14-395b3bef0f43 2019-11-28 20:42:09.130309 22302 248 Customer \N \N 2 User \N create ---\nnick_name: yamileth sanches\nphone: "(667) 227-9006"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente yamileth sanches fue registrado. 187.149.58.33 bb892c00-69f6-4305-98a1-d91edc2af2c7 2019-11-28 20:51:39.507146 22303 1522 Sale \N \N 2 User \N create ---\ncustomer_id: 248\nuser_id: 2\nopen_cash_register_id: 623\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2019-11-28\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-784\nexpiration_date: 2020-01-02\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 24098b39-41f5-4bf6-888c-cfb6bfa7fc62 2019-11-28 20:52:11.111231 22305 2127 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 623\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1522\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-784\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-784 187.149.58.33 ffb0e3b0-e5f3-410b-8248-5c9cacf540e3 2019-11-28 20:52:24.981676 22306 1522 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 ca31f8cf-78e7-4f5c-85bf-be6bad4863a2 2019-11-28 20:52:28.757293 22307 1523 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 622\namount: !ruby/object:BigDecimal 18:0.759E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2019-11-28\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-599\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 0b1089ec-d9fd-47d8-b97a-5bda75fa4be9 2019-11-28 22:44:34.190637 22308 1254 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 0b1089ec-d9fd-47d8-b97a-5bda75fa4be9 2019-11-28 22:44:34.217605 22309 1523 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 23eeeb7f-c7b5-4f87-b931-4228865596c1 2019-11-28 22:44:54.735698 22310 2128 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 622\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.759E3\nmove_type: '1'\nsale_id: 1523\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-599\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.241E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-599 187.149.58.33 23eeeb7f-c7b5-4f87-b931-4228865596c1 2019-11-28 22:44:54.760452 22311 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-11-28 20:04:44.541511000 Z\n- &1 2019-11-28 20:11:50.574580000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-28 23:01:18.713157176 Z\nsign_in_count:\n- 50\n- 51\n 103 \N 187.149.27.48 e9d4160c-3b03-4b95-8e1b-4a05cdd3c750 2019-11-28 23:01:18.719995 22312 21 User \N \N 21 User \N update ---\nunique_session_id:\n- xA-phjFiZRmtHEyvPheu\n- 7aWPw5sFYF_eE_zzBoFc\n 104 \N 187.149.27.48 e9d4160c-3b03-4b95-8e1b-4a05cdd3c750 2019-11-28 23:01:18.732503 22313 2129 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 622\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 1513\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-594 187.149.58.33 e845ffa4-2935-4253-acfa-e0b5af0bf4e7 2019-11-28 23:32:45.635357 22314 1513 Sale \N \N 27 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 3c6e21cd-bf2c-4252-b43c-fd7ecc9da92c 2019-11-28 23:32:47.537784 22315 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-11-27 01:29:15.888253000 Z\n- &1 2019-11-28 02:02:00.439542000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-29 01:55:05.642673281 Z\nsign_in_count:\n- 25\n- 26\n 52 \N 187.149.58.33 7d9f2897-1c11-4647-b286-a095be616bec 2019-11-29 01:55:05.672768 22316 24 User \N \N 24 User \N update ---\nunique_session_id:\n- tng86Fsq3Ttji_MAxD-b\n- 87MbzV3gbcSGz1JVXV-a\n 53 \N 187.149.58.33 7d9f2897-1c11-4647-b286-a095be616bec 2019-11-29 01:55:05.702387 22317 1524 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 622\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-11-28\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-600\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 6aaa64e1-c37f-4e1b-b2c2-8299697b6301 2019-11-29 01:57:34.311162 22318 1414 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 6aaa64e1-c37f-4e1b-b2c2-8299697b6301 2019-11-29 01:57:34.346879 22319 1524 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 32869b1f-27eb-4314-9bb6-6696796a8169 2019-11-29 01:57:38.570948 22320 2130 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 622\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 1524\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-600\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-600 187.149.58.33 32869b1f-27eb-4314-9bb6-6696796a8169 2019-11-29 01:57:38.611383 22321 1525 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 623\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-11-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-785\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 44299a9f-629b-41ef-b03c-c9153b5602c2 2019-11-29 01:58:59.413003 22322 1369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 44299a9f-629b-41ef-b03c-c9153b5602c2 2019-11-29 01:58:59.442158 22323 1525 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 e06b6cc5-c669-4e41-aae1-e40832564802 2019-11-29 01:59:51.33022 22324 2131 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 623\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 1525\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-785\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.749E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-785 187.149.58.33 e06b6cc5-c669-4e41-aae1-e40832564802 2019-11-29 01:59:51.366024 22325 1526 Sale \N \N 2 User \N create ---\ncustomer_id: 215\nuser_id: 2\nopen_cash_register_id: 623\namount: !ruby/object:BigDecimal 18:0.1549E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1549E4\nstatus: 0\ndate_sale: 2019-11-28\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-786\nexpiration_date: 2020-01-02\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 fa6b8102-82f1-4843-9cb1-223d8f3a7413 2019-11-29 02:02:58.194492 22326 1366 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.58.33 fa6b8102-82f1-4843-9cb1-223d8f3a7413 2019-11-29 02:02:58.226413 22400 1534 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 11c2d005-cff2-4f99-9fd7-bd772929b29c 2019-11-30 01:10:38.994363 22327 2132 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 623\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1526\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-786\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-786 187.149.58.33 06e28b6b-8d85-4518-b27f-64fd2ffdc6fe 2019-11-29 02:03:08.59248 22328 1526 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 a17160cd-0a83-48ee-a802-745bf89d1964 2019-11-29 02:03:09.836401 22329 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-28 03:51:08.960448000 Z\n- &1 2019-11-28 20:09:25.890969000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-29 02:09:08.955389203 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\nsign_in_count:\n- 989\n- 990\n 1980 \N 189.186.221.72 e5bd2457-a0e5-4f7e-b1e3-8bb607317942 2019-11-29 02:09:08.965976 22330 4 User \N \N 4 User \N update ---\nunique_session_id:\n- v9tXsXkxdgL4wE1DysKD\n- fhPytr6NjVqWeDmH-pW1\n 1981 \N 189.186.221.72 e5bd2457-a0e5-4f7e-b1e3-8bb607317942 2019-11-29 02:09:08.989122 22331 625 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 623\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1598E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.773E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2273E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 244f7e25-6828-4544-9d7c-64896a010a57 2019-11-29 02:44:46.962518 22332 623 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 244f7e25-6828-4544-9d7c-64896a010a57 2019-11-29 02:44:46.987628 22333 626 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 622\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2346E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.2192E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3192E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 787dbd76-2338-49ad-b338-d8db454abdcd 2019-11-29 02:53:11.74836 22334 622 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 787dbd76-2338-49ad-b338-d8db454abdcd 2019-11-29 02:53:11.768742 22335 627 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 621\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.12E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.6E3\ncash_fund: !ruby/object:BigDecimal 18:0.541E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1141E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 d650c801-a917-45fa-a1c0-cb8e2a0593ff 2019-11-29 02:56:21.43992 22336 621 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 d650c801-a917-45fa-a1c0-cb8e2a0593ff 2019-11-29 02:56:21.453138 22337 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-28 20:09:25.890969000 Z\n- &1 2019-11-29 02:09:08.955389000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-29 04:18:46.791428698 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\nsign_in_count:\n- 990\n- 991\n 1982 \N 189.186.221.72 01861cd1-398d-42b6-bf32-291595f9c003 2019-11-29 04:18:46.80217 22338 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fhPytr6NjVqWeDmH-pW1\n- sk4uKqsTrxSqw-yYR-Af\n 1983 \N 189.186.221.72 01861cd1-398d-42b6-bf32-291595f9c003 2019-11-29 04:18:46.827503 22339 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-26 16:59:16.997668000 Z\n- &1 2019-11-28 16:57:38.963959000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-29 17:02:21.747374033 Z\nsign_in_count:\n- 74\n- 75\n 150 \N 189.186.111.139 ab5789ae-b0f6-48ea-a265-3bf7150359f2 2019-11-29 17:02:21.788944 22340 23 User \N \N 23 User \N update ---\nunique_session_id:\n- vHtts_GQN1sjYhWg2Zei\n- svyWTAhH-EySjLAmsjN5\n 151 \N 189.186.111.139 ab5789ae-b0f6-48ea-a265-3bf7150359f2 2019-11-29 17:02:21.820425 22341 624 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.541E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 541.0 189.186.111.139 6854a63f-278d-42b6-bbc0-0dd5aa696d2d 2019-11-29 17:02:40.450317 22342 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-29 02:09:08.955389000 Z\n- &1 2019-11-29 04:18:46.791428000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-29 17:56:26.380965080 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 991\n- 992\n 1984 \N 187.149.58.33 a0d5f75b-996e-4a95-9f16-13544f1eb841 2019-11-29 17:56:26.412189 22343 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sk4uKqsTrxSqw-yYR-Af\n- CsXejsiDsWqXkJhjS5i6\n 1985 \N 187.149.58.33 a0d5f75b-996e-4a95-9f16-13544f1eb841 2019-11-29 17:56:26.4382 22344 1 PosConfig \N \N 4 User \N update ---\nticket_footer:\n- "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES EN PROMOCIONES\n Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN ETIQUETA O MAL ESTADO \\r\\n*\n LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n- "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES EN PROMOCIONES\n Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN ETIQUETA O MAL ESTADO \\r\\n*\n LOS APARTADOS TIENEN VIGENCIA 5 DÍAS "\n 13 Se actualizaron los parámetros generales 187.149.58.33 09a35f2a-af44-4fec-a921-b9b70a5b52f7 2019-11-29 17:56:56.148794 22345 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-26 23:15:55.540959000 Z\n- &1 2019-11-26 23:35:07.965714000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-29 19:21:58.055922171 Z\nsign_in_count:\n- 44\n- 45\n 90 \N 187.149.58.33 7b25eb04-c44a-49bb-915e-b3f395a5538e 2019-11-29 19:21:58.063969 22346 26 User \N \N 26 User \N update ---\nunique_session_id:\n- E2wB2stxQHzLX78LaVzs\n- cNMJ4zNoxqPaNS8kVHVs\n 91 \N 187.149.58.33 7b25eb04-c44a-49bb-915e-b3f395a5538e 2019-11-29 19:21:58.080457 22347 625 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.2192E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 2192.0 187.149.58.33 dac588d4-f3c1-46ac-b94a-af3e71410c4f 2019-11-29 19:22:31.273501 22348 1527 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 625\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-11-29\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-601\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 b21a4848-610a-4ffe-9361-e0b9024c1e0e 2019-11-29 19:23:32.902528 22349 1001 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 b21a4848-610a-4ffe-9361-e0b9024c1e0e 2019-11-29 19:23:32.946131 22351 2133 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 625\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 1527\ncardnumber: 6679\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-601\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-601 187.149.58.33 0810eb82-6b2c-4241-ae54-520f604998ad 2019-11-29 19:27:25.534115 22352 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-29 04:18:46.791428000 Z\n- &1 2019-11-29 17:56:26.380965000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-29 19:27:52.025900163 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\nsign_in_count:\n- 992\n- 993\n 1986 \N 189.186.221.72 7b3fab45-211d-43af-8619-85b14a05ded9 2019-11-29 19:27:52.038601 22353 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CsXejsiDsWqXkJhjS5i6\n- fjqfXUUuUdRB4h6nH9Jt\n 1987 \N 189.186.221.72 7b3fab45-211d-43af-8619-85b14a05ded9 2019-11-29 19:27:52.066757 22354 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-27 17:08:10.672174000 Z\n- &1 2019-11-28 17:16:58.894265000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-29 21:07:22.125303503 Z\nsign_in_count:\n- 29\n- 30\n 60 \N 187.149.58.33 a9d3670d-b805-49b0-986e-86897e8034e3 2019-11-29 21:07:22.131755 22355 27 User \N \N 27 User \N update ---\nunique_session_id:\n- XxeFr4AzNNDm66gRxpGa\n- _6bZVzCyh-srdyT1z9-4\n 61 \N 187.149.58.33 a9d3670d-b805-49b0-986e-86897e8034e3 2019-11-29 21:07:22.146491 22356 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-27 17:14:55.326806000 Z\n- &1 2019-11-28 18:02:20.905428000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-29 22:03:02.107813259 Z\nsign_in_count:\n- 391\n- 392\n 787 \N 187.149.58.33 3b5a2f52-3868-4592-90e9-cac97d238d44 2019-11-29 22:03:02.114424 22357 2 User \N \N 2 User \N update ---\nunique_session_id:\n- yyqn8UAWFu5qsvTifaEK\n- gJ6fDKUSN9djpWEnMRcZ\n 788 \N 187.149.58.33 3b5a2f52-3868-4592-90e9-cac97d238d44 2019-11-29 22:03:02.132056 22358 626 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.773E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 773.0 187.149.58.33 93589a20-4c15-4e90-bbec-2f44dfb86b4c 2019-11-29 22:03:30.883963 22359 1528 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 626\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-11-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-787\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 c4c429ac-7ab3-4269-a928-d430375244d8 2019-11-29 22:05:59.669957 22360 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 c4c429ac-7ab3-4269-a928-d430375244d8 2019-11-29 22:05:59.696822 22361 1528 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 a1a40e7a-4110-4790-bff3-749dcc218cfa 2019-11-29 22:06:08.078868 22362 2134 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 626\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 1528\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-787\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.749E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-787 187.149.58.33 a1a40e7a-4110-4790-bff3-749dcc218cfa 2019-11-29 22:06:08.104881 22363 249 Customer \N \N 2 User \N create ---\nnick_name: LUPITA VAZQUEZ\nphone: "(667) 100-7259"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LUPITA VAZQUEZ fue registrado. 187.149.58.33 4febc8fc-a846-41de-b8d4-0eda566b2dd3 2019-11-29 22:09:18.41847 22364 1529 Sale \N \N 2 User \N create ---\ncustomer_id: 249\nuser_id: 2\nopen_cash_register_id: 626\namount: !ruby/object:BigDecimal 18:0.739E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.739E3\nstatus: 0\ndate_sale: 2019-11-29\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-788\nexpiration_date: 2020-01-03\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 bf2a6558-653d-4a79-b5ab-d2132fa0b5c9 2019-11-29 22:10:04.890194 22365 1242 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 bf2a6558-653d-4a79-b5ab-d2132fa0b5c9 2019-11-29 22:10:04.927694 22366 2135 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 626\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1529\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-788\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-788 187.149.58.33 675c7970-13bb-4959-935b-adac71eea090 2019-11-29 22:10:10.109132 22367 1529 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 f52ece2b-ddf1-4419-8d49-733989befa70 2019-11-29 22:10:14.190487 22368 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-11-26 22:27:34.298194000 Z\n- &1 2019-11-28 02:17:10.598375000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-29 22:50:24.358310178 Z\nsign_in_count:\n- 116\n- 117\n 234 \N 187.149.58.33 761fe26a-256e-40b8-bba1-8e15300f0e0b 2019-11-29 22:50:24.366721 22369 1 User \N \N 1 User \N update ---\nunique_session_id:\n- vZaBsc3WdEtzVsUf_1ux\n- iJaEdob_UHyMJ1xky2Yj\n 235 \N 187.149.58.33 761fe26a-256e-40b8-bba1-8e15300f0e0b 2019-11-29 22:50:24.387596 22370 1530 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 625\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-11-29\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-602\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 c8af026c-cd37-4623-9c38-0dfd36357b2d 2019-11-29 23:17:12.384744 22371 1289 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 c8af026c-cd37-4623-9c38-0dfd36357b2d 2019-11-29 23:17:12.428732 22372 1530 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 8b47364f-2c17-4347-b977-43a6a5f1493f 2019-11-29 23:18:22.501666 22398 1534 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 626\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-11-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-791\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 f1f1ecf4-3339-45e4-9718-ecc6d30f945f 2019-11-30 01:10:02.620711 22373 2136 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 625\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1530\ncardnumber: 1394\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-602\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-602 187.149.58.33 8b47364f-2c17-4347-b977-43a6a5f1493f 2019-11-29 23:18:22.531722 22374 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-11-28 02:02:00.439542000 Z\n- &1 2019-11-29 01:55:05.642673000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-29 23:22:31.023256759 Z\nsign_in_count:\n- 26\n- 27\n 54 \N 187.149.58.33 8d4b4e15-e036-49d1-af9d-21126685681d 2019-11-29 23:22:31.029918 22375 24 User \N \N 24 User \N update ---\nunique_session_id:\n- 87MbzV3gbcSGz1JVXV-a\n- CThCsxdCQHjnEwsvuD9z\n 55 \N 187.149.58.33 8d4b4e15-e036-49d1-af9d-21126685681d 2019-11-29 23:22:31.042848 22376 1530 Sale \N \N 27 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-602 cancelada. 187.149.58.33 1290db8a-08b0-4273-8019-bc5ea4c167cb 2019-11-29 23:23:21.85173 22377 2136 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 625\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1530\ncardnumber: 1394\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-602\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.58.33 1290db8a-08b0-4273-8019-bc5ea4c167cb 2019-11-29 23:23:21.877911 22378 1289 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.58.33 1290db8a-08b0-4273-8019-bc5ea4c167cb 2019-11-29 23:23:21.912053 22379 250 Customer \N \N 2 User \N create ---\nnick_name: ERIKA PEREZ AGUILAR\nphone: "(667) 780-5473"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ERIKA PEREZ AGUILAR fue registrado. 187.149.58.33 990333a0-8415-4185-9ece-d9d68f9a61a4 2019-11-29 23:29:18.954788 22380 1531 Sale \N \N 2 User \N create ---\ncustomer_id: 250\nuser_id: 2\nopen_cash_register_id: 626\namount: !ruby/object:BigDecimal 18:0.4055E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4055E4\nstatus: 0\ndate_sale: 2019-11-29\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-789\nexpiration_date: 2020-01-03\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 2538af84-ad89-494b-88a4-578b1eb84a1c 2019-11-29 23:30:10.094469 22381 1365 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.58.33 2538af84-ad89-494b-88a4-578b1eb84a1c 2019-11-29 23:30:10.121215 22382 1368 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 2538af84-ad89-494b-88a4-578b1eb84a1c 2019-11-29 23:30:10.145979 22383 1384 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.58.33 2538af84-ad89-494b-88a4-578b1eb84a1c 2019-11-29 23:30:10.169655 22384 1371 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 2538af84-ad89-494b-88a4-578b1eb84a1c 2019-11-29 23:30:10.195264 22385 1409 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 2538af84-ad89-494b-88a4-578b1eb84a1c 2019-11-29 23:30:10.221551 22386 2137 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 626\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1531\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-789\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-789 187.149.58.33 edc425d6-0fef-4b37-8cb5-465e7cf4acea 2019-11-29 23:30:22.124991 22387 1531 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 5af4032b-ac11-42cd-818b-b7b91917d925 2019-11-29 23:30:23.322529 22388 1532 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 625\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-11-29\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-603\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 5d0ba9c4-defb-4d27-820f-8bb969b6a28b 2019-11-29 23:32:52.119068 22389 1289 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.58.33 5d0ba9c4-defb-4d27-820f-8bb969b6a28b 2019-11-29 23:32:52.148109 22390 1532 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 d6dcb5b1-d2c2-4c7b-acc4-08e81af56a4d 2019-11-29 23:33:14.898297 22391 2138 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 625\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 1532\ncardnumber: 1394\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-603\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-603 187.149.58.33 d6dcb5b1-d2c2-4c7b-acc4-08e81af56a4d 2019-11-29 23:33:14.929916 22392 1533 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 626\namount: !ruby/object:BigDecimal 18:0.449E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.449E3\nstatus: 0\ndate_sale: 2019-11-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-790\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 e936d03a-7789-4ec2-9928-12e923b362bf 2019-11-30 00:38:11.184897 22393 1298 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 e936d03a-7789-4ec2-9928-12e923b362bf 2019-11-30 00:38:11.213197 22394 1533 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 b2524160-6792-4ff3-9451-d31bb8b5fa9f 2019-11-30 00:38:33.625551 22395 2139 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 626\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.449E3\nmove_type: '1'\nsale_id: 1533\ncardnumber: 7556\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-790\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-790 187.149.58.33 b2524160-6792-4ff3-9451-d31bb8b5fa9f 2019-11-30 00:38:33.651627 22396 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-11-28 02:17:10.598375000 Z\n- &1 2019-11-29 22:50:24.358310000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-30 00:40:17.646502706 Z\nsign_in_count:\n- 117\n- 118\n 236 \N 187.149.58.33 fe2a399c-3cbb-4cc0-8c69-9b7121f6402f 2019-11-30 00:40:17.655123 22401 2140 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 626\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 1534\ncardnumber: 8353\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-791\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-791 187.149.58.33 11c2d005-cff2-4f99-9fd7-bd772929b29c 2019-11-30 01:10:39.032052 22402 1535 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 626\namount: !ruby/object:BigDecimal 18:0.119E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.119E3\nstatus: 0\ndate_sale: 2019-11-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-792\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 67abe122-e748-4bd7-a701-c85e03ed6546 2019-11-30 01:52:05.841187 22403 1314 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.58.33 67abe122-e748-4bd7-a701-c85e03ed6546 2019-11-30 01:52:05.872463 22404 1535 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 4f4a690f-8f70-4592-a8a1-b664cab8dcc0 2019-11-30 01:52:17.184906 22405 2141 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 626\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.119E3\nmove_type: '1'\nsale_id: 1535\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-792\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.119E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-792 187.149.58.33 4f4a690f-8f70-4592-a8a1-b664cab8dcc0 2019-11-30 01:52:17.215627 22406 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-29 17:56:26.380965000 Z\n- &1 2019-11-29 19:27:52.025900000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-30 02:37:32.684840795 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946390\n mask_addr: 4294967295\nsign_in_count:\n- 993\n- 994\n 1988 \N 200.68.182.150 2d3627f4-ab57-4878-a24c-22c3feee6081 2019-11-30 02:37:32.700535 22407 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fjqfXUUuUdRB4h6nH9Jt\n- VG4YmPN4LJGyKeEZjEHv\n 1989 \N 200.68.182.150 2d3627f4-ab57-4878-a24c-22c3feee6081 2019-11-30 02:37:32.732712 22408 628 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 626\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3416E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.841E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2341E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 de5cae43-d69b-49cb-8653-06c74eec15e7 2019-11-30 02:59:09.155883 22409 626 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 de5cae43-d69b-49cb-8653-06c74eec15e7 2019-11-30 02:59:09.173588 22410 629 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 625\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2398E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.398E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2398E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 3982cd05-4880-449e-9e6c-e62c24af72e0 2019-11-30 03:00:10.391637 22411 625 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 3982cd05-4880-449e-9e6c-e62c24af72e0 2019-11-30 03:00:10.408684 22412 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-29 19:27:52.025900000 Z\n- &1 2019-11-30 02:37:32.684840000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-30 04:32:53.506705417 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946390\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946390\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\nsign_in_count:\n- 994\n- 995\n 1990 \N 189.186.221.72 ef4881d3-c00a-4f5f-b738-cc2b9af20794 2019-11-30 04:32:53.519431 22413 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VG4YmPN4LJGyKeEZjEHv\n- Db6nEZQFyQb9b-ezD5TK\n 1991 \N 189.186.221.72 ef4881d3-c00a-4f5f-b738-cc2b9af20794 2019-11-30 04:32:53.546769 22414 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-28 16:57:38.963959000 Z\n- &1 2019-11-29 17:02:21.747374000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-30 16:55:16.221779322 Z\nsign_in_count:\n- 75\n- 76\n 152 \N 189.186.111.139 341c8495-2986-4bdb-9ed7-9ff07f046ddb 2019-11-30 16:55:16.258727 22415 23 User \N \N 23 User \N update ---\nunique_session_id:\n- svyWTAhH-EySjLAmsjN5\n- 6eQDae1avGXxSpFJpskM\n 153 \N 189.186.111.139 341c8495-2986-4bdb-9ed7-9ff07f046ddb 2019-11-30 16:55:16.283776 22416 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-26 23:35:07.965714000 Z\n- &1 2019-11-29 19:21:58.055922000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-30 17:07:26.252015641 Z\nsign_in_count:\n- 45\n- 46\n 92 \N 187.149.58.33 2ff84d07-849c-4c55-b5bb-8ddd509831fa 2019-11-30 17:07:26.258233 22417 26 User \N \N 26 User \N update ---\nunique_session_id:\n- cNMJ4zNoxqPaNS8kVHVs\n- P13DsTzysP3h8LzQP3HZ\n 93 \N 187.149.58.33 2ff84d07-849c-4c55-b5bb-8ddd509831fa 2019-11-30 17:07:26.272041 22418 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-30 02:37:32.684840000 Z\n- &1 2019-11-30 04:32:53.506705000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-30 17:24:45.098689031 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946390\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 995\n- 996\n 1992 \N 187.149.58.33 5fa19c10-3d3f-4de5-b0a1-9708e155228c 2019-11-30 17:24:45.106138 22419 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Db6nEZQFyQb9b-ezD5TK\n- F2Rtb34FAuxBHSWzy_kV\n 1993 \N 187.149.58.33 5fa19c10-3d3f-4de5-b0a1-9708e155228c 2019-11-30 17:24:45.127382 22420 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-29 19:21:58.055922000 Z\n- &1 2019-11-30 17:07:26.252015000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-30 17:50:58.236765895 Z\nsign_in_count:\n- 46\n- 47\n 94 \N 187.149.58.33 1caaf405-20df-46aa-92b8-e197067baa90 2019-11-30 17:50:58.242817 22421 26 User \N \N 26 User \N update ---\nunique_session_id:\n- P13DsTzysP3h8LzQP3HZ\n- 6mn_fx45XKV9P9-sfRv3\n 95 \N 187.149.58.33 1caaf405-20df-46aa-92b8-e197067baa90 2019-11-30 17:50:58.257555 22422 627 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.398E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 398.0 187.149.58.33 0f619676-238c-4e35-9bd7-10e568d96e3f 2019-11-30 17:56:51.737188 44678 1501 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1501'\n is_parent: false\n sku: VES-1501\n name: VST-0127\n description: VESTIDO DE GAZA BEIGE THEMOON\n price_base: '440.0'\n price_sale: '1109.0'\n img_product: D832DCA4-1007-40D7-8FCB-3667EB1D2EB7.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001501'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 20:56:21.587893'\n updated_at: &12 2020-11-03 21:22:31.279258888 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1501'\n sku: VES-1501\n name: VST-0127\n description: VESTIDO DE GAZA BEIGE THEMOON\n price_base: '440.00'\n price_sale: '1109.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 20:56:21.587893'\n updated_at: '2020-11-03 20:56:21.625475'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001501'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1501'\n type: *3\n value: 1501\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1501\n type: *7\n value: VES-1501\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0127\n type: *8\n value: VST-0127\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO DE GAZA BEIGE THEMOON\n type: *6\n value: VESTIDO DE GAZA BEIGE THEMOON\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '440.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.44E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1109.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1109E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: D832DCA4-1007-40D7-8FCB-3667EB1D2EB7.jpeg\n type: *2\n value: D832DCA4-1007-40D7-8FCB-3667EB1D2EB7.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001501'\n type: *2\n value: '0001501'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 20:56:21.587893'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- D832DCA4-1007-40D7-8FCB-3667EB1D2EB7.jpeg\n 3 El producto VES-1501 fue modificado. 187.149.136.226 e2b48cbf-0e96-47a3-ab45-6bf38f87bdba 2020-11-03 21:22:31.347266 22423 1536 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 627\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-11-30\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-604\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 b523b05a-6bea-42c6-bd55-fc13924989db 2019-11-30 17:59:49.423571 22424 1250 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 b523b05a-6bea-42c6-bd55-fc13924989db 2019-11-30 17:59:49.466971 22425 1536 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 8cb786bb-727c-4037-bafd-5ad7bbc4ff15 2019-11-30 18:03:27.608152 22426 2142 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 627\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 1536\ncardnumber: 426\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-604\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-604 187.149.58.33 8cb786bb-727c-4037-bafd-5ad7bbc4ff15 2019-11-30 18:03:27.641079 22427 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-28 18:02:20.905428000 Z\n- &1 2019-11-29 22:03:02.107813000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-30 18:19:11.890726899 Z\nsign_in_count:\n- 392\n- 393\n 789 \N 187.149.58.33 57632c95-1600-4c8e-b232-45975c1a1d39 2019-11-30 18:19:11.92544 22428 2 User \N \N 2 User \N update ---\nunique_session_id:\n- gJ6fDKUSN9djpWEnMRcZ\n- n2Hh3ykhfLNe44Z_jcGV\n 790 \N 187.149.58.33 57632c95-1600-4c8e-b232-45975c1a1d39 2019-11-30 18:19:11.955935 22429 628 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.841E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 841.0 187.149.58.33 0539cbf6-5559-4ceb-bb1d-897226958d71 2019-11-30 18:19:40.364941 22430 1537 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 628\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.99E2\ntotal: !ruby/object:BigDecimal 18:0.12E4\nstatus: 0\ndate_sale: 2019-11-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-793\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 fe8d54e3-bc03-4064-8f3f-6baeb6ba90dd 2019-11-30 18:19:57.270145 22431 1045 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.58.33 fe8d54e3-bc03-4064-8f3f-6baeb6ba90dd 2019-11-30 18:19:57.306814 22432 1537 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 de4905da-e69d-4fed-84ac-883468eb0147 2019-11-30 18:20:02.372969 22433 2143 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 628\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.12E4\nmove_type: '1'\nsale_id: 1537\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-793\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-793 187.149.58.33 de4905da-e69d-4fed-84ac-883468eb0147 2019-11-30 18:20:02.397171 22434 329 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-30\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.58.33 0bc6c76c-7cb3-4454-a77b-20c48bc6e87d 2019-11-30 18:31:30.585476 22435 1125 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 187.149.58.33 0bc6c76c-7cb3-4454-a77b-20c48bc6e87d 2019-11-30 18:31:30.60369 22436 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-30 04:32:53.506705000 Z\n- &1 2019-11-30 17:24:45.098689000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-30 18:32:07.248355043 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 996\n- 997\n 1994 \N 187.149.58.33 c0f806bc-e7cd-4a89-84b7-552a070b3184 2019-11-30 18:32:07.256648 22437 4 User \N \N 4 User \N update ---\nunique_session_id:\n- F2Rtb34FAuxBHSWzy_kV\n- 1Thwts5Suh6vCdRtxprm\n 1995 \N 187.149.58.33 c0f806bc-e7cd-4a89-84b7-552a070b3184 2019-11-30 18:32:07.274423 22438 828 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 7637a94b-c386-4cb5-925b-5bdb3a4013aa 2019-11-30 18:32:43.440289 22439 828 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.58.33 2242a74b-32e2-4ef9-a3b9-b5fbc7217da6 2019-11-30 18:32:50.424099 22440 331 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2019-11-30\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 187.149.58.33 1513bdca-9db5-4f94-aeae-e0e9307dc4e3 2019-11-30 18:32:51.466772 22441 856 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 187.149.58.33 5cfbae81-0258-4e2c-8388-2fc310bab55d 2019-11-30 18:33:30.116699 22442 332 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-11-30\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.58.33 5a2d1b94-7164-4cb6-b370-b9491e6f376d 2019-11-30 18:33:31.289463 22443 856 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 187.149.58.33 55dd764a-d30e-40c2-92a0-1aaef9c639e4 2019-11-30 18:33:55.996552 22444 333 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-11-30\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.58.33 e138216b-6b16-4c59-9c20-cb38f2710892 2019-11-30 18:34:00.705956 22445 856 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.58.33 51ec65b2-7f64-4054-a97e-828c992a4834 2019-11-30 18:34:17.009196 22446 334 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-11-30\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.58.33 615cbe4f-d80c-4f25-9385-a1450db17a7a 2019-11-30 18:34:22.138488 22447 331 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-11-30\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.58.33 0401df44-5cd5-485a-8630-d014c59201d5 2019-11-30 18:57:54.240455 22538 138 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 23 \N 187.149.58.33 f1fbc11f-dc67-43bc-aae2-143521bcfa90 2019-12-01 19:57:43.010723 22448 1418 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 674\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 0401df44-5cd5-485a-8630-d014c59201d5 2019-11-30 18:57:54.272513 22449 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-30 17:24:45.098689000 Z\n- &1 2019-11-30 18:32:07.248355000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-30 19:42:49.410427355 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\nsign_in_count:\n- 997\n- 998\n 1996 \N 189.186.221.72 b19a896a-6aa8-4abb-86ee-188e8f3752c8 2019-11-30 19:42:49.41733 22450 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1Thwts5Suh6vCdRtxprm\n- tfWxMCWvtkAL4jvxs5TR\n 1997 \N 189.186.221.72 b19a896a-6aa8-4abb-86ee-188e8f3752c8 2019-11-30 19:42:49.432738 22451 225 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 628\nquantity: !ruby/object:BigDecimal 18:0.2E2\nstatus: 1\nobservations: Navidad a los de la basura\nexpense_date: 2019-11-30\nexpense_code: PV1-E-161\n 1 Egreso por 20.0 registrado 187.149.58.33 e076dc2b-ff07-44fe-a919-9e21bd2f41c4 2019-11-30 19:55:36.9325 22452 2144 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 628\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 225\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 e076dc2b-ff07-44fe-a919-9e21bd2f41c4 2019-11-30 19:55:36.952269 22453 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-28 17:16:58.894265000 Z\n- &1 2019-11-29 21:07:22.125303000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-11-30 20:34:26.368716608 Z\nsign_in_count:\n- 30\n- 31\n 62 \N 187.149.58.33 e48b48fd-6adf-45cc-a4ec-0ad51f7003fc 2019-11-30 20:34:26.374336 22454 27 User \N \N 27 User \N update ---\nunique_session_id:\n- _6bZVzCyh-srdyT1z9-4\n- cG9sPfLT1RYksY1hkJL8\n 63 \N 187.149.58.33 e48b48fd-6adf-45cc-a4ec-0ad51f7003fc 2019-11-30 20:34:26.386289 22455 2145 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 624\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 1265\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-78 189.186.111.139 52c8d9cd-f774-4ee5-a63a-1c5d09334cd8 2019-11-30 20:45:13.800198 22456 1265 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.111.139 6f671c50-ab40-4eb5-bded-f0b7aba0bdd3 2019-11-30 20:45:16.386852 22457 1538 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 627\namount: !ruby/object:BigDecimal 18:0.759E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2019-11-30\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-605\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 d3ef0255-78ee-424b-9608-aeae9da4a7b7 2019-11-30 21:07:40.066928 22458 1092 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.58.33 d3ef0255-78ee-424b-9608-aeae9da4a7b7 2019-11-30 21:07:40.098642 22459 1538 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 776ec5b4-ef87-42d8-9c74-8e38493d62ff 2019-11-30 21:07:45.949621 22460 2146 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 627\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.759E3\nmove_type: '1'\nsale_id: 1538\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-605\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.241E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-605 187.149.58.33 776ec5b4-ef87-42d8-9c74-8e38493d62ff 2019-11-30 21:07:45.972255 22461 1538 Sale \N \N 27 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-605 cancelada. 187.149.58.33 68ae87ff-57f9-458c-85e7-8c14dc919b57 2019-11-30 21:07:54.419939 22462 2146 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 627\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.759E3\nmove_type: '1'\nsale_id: 1538\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-605\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.241E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.58.33 68ae87ff-57f9-458c-85e7-8c14dc919b57 2019-11-30 21:07:54.442024 22463 1092 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.58.33 68ae87ff-57f9-458c-85e7-8c14dc919b57 2019-11-30 21:07:54.467843 22464 1539 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 627\namount: !ruby/object:BigDecimal 18:0.759E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2019-11-30\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-606\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 289af524-8965-47ec-9322-4a7c7d385128 2019-11-30 21:08:17.973534 22465 1092 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.58.33 289af524-8965-47ec-9322-4a7c7d385128 2019-11-30 21:08:17.999879 22466 1539 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 36c6b602-91fc-4e33-aff0-3dab266fa2d7 2019-11-30 21:08:34.486137 22467 2147 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 627\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.759E3\nmove_type: '1'\nsale_id: 1539\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-606\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.241E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-606 187.149.58.33 36c6b602-91fc-4e33-aff0-3dab266fa2d7 2019-11-30 21:08:34.506427 22468 2148 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 627\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1235\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.7E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-496 187.149.58.33 659e34a4-f09a-4ca4-86a5-750ca298a6bb 2019-11-30 21:22:04.17224 22513 227 Expense \N \N 27 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 627\nquantity: !ruby/object:BigDecimal 18:0.88E3\nstatus: 1\nobservations: PAGO DE KEYLA\nexpense_date: 2019-11-30\nexpense_code: PV2-E-51\n 1 Egreso por 880.0 registrado 187.149.58.33 b6bf2bd3-b4fd-43c1-bef4-5eff8305daa9 2019-12-01 02:36:55.304082 22469 2148 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 627\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1235\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.7E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.58.33 7ee34571-ba89-4962-9fbb-c1b26d8a806d 2019-11-30 21:22:11.109808 22470 2149 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 627\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.598E3\nmove_type: '1'\nsale_id: 1235\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-496 187.149.58.33 5ab90b2a-80a6-476f-ba90-47601394fb95 2019-11-30 21:22:50.885211 22471 1235 Sale \N \N 27 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 fd838476-d1c5-402e-be76-fec5a02e1576 2019-11-30 21:22:52.895903 22472 2150 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 628\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.349E3\nmove_type: '1'\nsale_id: 1454\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-750 187.149.58.33 7f2901c4-219b-4b58-af83-b8eb010a2fa1 2019-11-30 21:58:14.09803 22473 1454 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 ce0681f1-1b43-4fc9-99ef-0403241b5b79 2019-11-30 21:58:15.968515 22474 1540 Sale \N \N 23 User \N create ---\ncustomer_id: 34\nuser_id: 23\nopen_cash_register_id: 624\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2019-11-30\nsaletype: 0\nseller_id: 13\nsale_code: PV3-V-139\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 78804b5f-ec05-4aef-a7f3-bf42cb4de82a 2019-11-30 23:33:10.269138 22475 1392 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.111.139 78804b5f-ec05-4aef-a7f3-bf42cb4de82a 2019-11-30 23:33:10.295775 22476 1541 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 624\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2019-11-30\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-140\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 0d59d745-cae6-4b3f-802e-b5d7b2c13cec 2019-11-30 23:34:03.710111 22477 1392 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.111.139 0d59d745-cae6-4b3f-802e-b5d7b2c13cec 2019-11-30 23:34:03.736699 22478 1541 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 afb12cf1-e3a6-4534-9ea5-b297124ee948 2019-11-30 23:34:16.116312 22479 2151 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 624\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.789E3\nmove_type: '1'\nsale_id: 1541\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-140\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-140 189.186.111.139 afb12cf1-e3a6-4534-9ea5-b297124ee948 2019-11-30 23:34:16.14032 22480 1540 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-139 cancelada. 189.186.111.139 f1c9e758-448f-4087-bb01-8a82613ef535 2019-11-30 23:35:22.836876 22481 1392 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.111.139 f1c9e758-448f-4087-bb01-8a82613ef535 2019-11-30 23:35:22.862744 22482 1542 Sale \N \N 23 User \N create ---\ncustomer_id: 34\nuser_id: 23\nopen_cash_register_id: 624\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2019-11-30\nsaletype: 0\nseller_id: 13\nsale_code: PV3-V-141\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 4fc4f585-ce79-4bad-8f1e-57c13fd50a79 2019-11-30 23:49:43.769312 22483 1402 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.111.139 4fc4f585-ce79-4bad-8f1e-57c13fd50a79 2019-11-30 23:49:43.794134 22484 2152 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 624\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1542\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.111.139 ccd1a90c-04d2-4c26-877e-e8d5eaf00f9f 2019-11-30 23:50:33.275977 22485 1542 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.111.139 ccd1a90c-04d2-4c26-877e-e8d5eaf00f9f 2019-11-30 23:50:33.29629 22486 2152 CashRegistersMove \N \N 23 User \N update ---\nopen_cash_register_id:\n- 624\n- \n 2 movimiento de efectivo por venta con folio PV3-V-141 189.186.111.139 ccd1a90c-04d2-4c26-877e-e8d5eaf00f9f 2019-11-30 23:50:33.306765 22487 226 Expense \N \N 23 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 624\nquantity: !ruby/object:BigDecimal 18:0.528E3\nstatus: 1\nobservations: SUELDO MARICRUZ $528\nexpense_date: 2019-11-30\nexpense_code: PV3-E-15\n 1 Egreso por 528.0 registrado 189.186.111.139 1b23d1b0-ea91-401d-9ff6-cba3d89382c9 2019-12-01 00:56:38.247214 22488 2153 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 624\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.528E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 226\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.111.139 1b23d1b0-ea91-401d-9ff6-cba3d89382c9 2019-12-01 00:56:38.26821 22489 2154 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 608\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1494\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 68bbc4d6-552c-474a-b861-415e18480c0a 2019-12-01 01:15:34.30429 22490 2154 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 608\n- 628\n 2 movimiento de efectivo por venta con folio PV2-V-588 187.149.58.33 68bbc4d6-552c-474a-b861-415e18480c0a 2019-12-01 01:15:34.329711 22491 1543 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 627\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-11-30\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-607\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 54483381-3bad-4eca-bacc-22dca68b907b 2019-12-01 01:27:41.566861 22492 1253 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.58.33 54483381-3bad-4eca-bacc-22dca68b907b 2019-12-01 01:27:41.595921 22493 1543 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 2ed15207-60db-49ee-bf27-7cf1f679d78e 2019-12-01 01:29:15.500146 22494 2155 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 627\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 1543\ncardnumber: 3278\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-607\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-607 187.149.58.33 2ed15207-60db-49ee-bf27-7cf1f679d78e 2019-12-01 01:29:15.525202 22495 1544 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 624\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-11-30\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-142\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 102c391c-a3bb-47be-8695-7672bef8c68c 2019-12-01 02:02:25.835307 22496 777 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.111.139 102c391c-a3bb-47be-8695-7672bef8c68c 2019-12-01 02:02:25.867296 22497 1544 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 9f4af4a7-0570-4bd5-81e4-5d69aaa2361b 2019-12-01 02:02:43.533657 22498 2156 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 624\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 1544\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-142\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-142 189.186.111.139 9f4af4a7-0570-4bd5-81e4-5d69aaa2361b 2019-12-01 02:02:43.555889 22499 1545 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 627\namount: !ruby/object:BigDecimal 18:0.659E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.659E3\nstatus: 0\ndate_sale: 2019-11-30\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-608\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 37a619d6-59f5-45c6-80d8-6c0de4e5aa2f 2019-12-01 02:05:09.187787 22500 1002 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.58.33 37a619d6-59f5-45c6-80d8-6c0de4e5aa2f 2019-12-01 02:05:09.217287 22501 1545 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 63a418ef-11e3-4f2b-86d6-15f3fe36d283 2019-12-01 02:06:10.996872 22502 2157 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 627\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.659E3\nmove_type: '1'\nsale_id: 1545\ncardnumber: 6792\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-608\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-608 187.149.58.33 63a418ef-11e3-4f2b-86d6-15f3fe36d283 2019-12-01 02:06:11.017567 22503 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-11-29 01:55:05.642673000 Z\n- &1 2019-11-29 23:22:31.023256000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-01 02:06:49.103564373 Z\nsign_in_count:\n- 27\n- 28\n 56 \N 187.149.58.33 a2d7de9d-f004-47af-8e5a-cf91e09c91aa 2019-12-01 02:06:49.111194 22504 24 User \N \N 24 User \N update ---\nunique_session_id:\n- CThCsxdCQHjnEwsvuD9z\n- p5tDyoDs9GTce4kC_5_Q\n 57 \N 187.149.58.33 a2d7de9d-f004-47af-8e5a-cf91e09c91aa 2019-12-01 02:06:49.12482 22505 1546 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 627\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-11-30\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-609\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 44a8cc7c-6492-401f-8995-7f0d3a4a11c9 2019-12-01 02:13:10.073753 22506 1376 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 44a8cc7c-6492-401f-8995-7f0d3a4a11c9 2019-12-01 02:13:10.120298 22507 1546 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 c86507b3-5bb4-490e-876f-b525e4f03ca3 2019-12-01 02:13:17.798266 22508 2158 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 627\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1546\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-609\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-609 187.149.58.33 c86507b3-5bb4-490e-876f-b525e4f03ca3 2019-12-01 02:13:17.851369 22509 1547 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 628\namount: !ruby/object:BigDecimal 18:0.53279E3\ntax: !ruby/object:BigDecimal 18:0.6621E2\ndiscount: !ruby/object:BigDecimal 18:0.119E3\ntotal: !ruby/object:BigDecimal 18:0.48E3\nstatus: 0\ndate_sale: 2019-11-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-794\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 93c79187-24d2-4f0b-9095-4e330d29909a 2019-12-01 02:13:33.558626 22510 153 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.58.33 93c79187-24d2-4f0b-9095-4e330d29909a 2019-12-01 02:13:33.588205 22511 1547 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 0ca2f7a7-bb19-472a-82ec-a7c9db4fb49f 2019-12-01 02:13:38.353318 22512 2159 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 628\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.48E3\nmove_type: '1'\nsale_id: 1547\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-794\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.48E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-794 187.149.58.33 0ca2f7a7-bb19-472a-82ec-a7c9db4fb49f 2019-12-01 02:13:38.376658 22514 2160 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 627\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.88E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 227\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 b6bf2bd3-b4fd-43c1-bef4-5eff8305daa9 2019-12-01 02:36:55.324354 22515 228 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 628\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nstatus: 1\nobservations: SUELDO ROCIO\nexpense_date: 2019-11-30\nexpense_code: PV1-E-162\n 1 Egreso por 1328.0 registrado 187.149.58.33 118ed600-b982-4095-9f05-dafdc5401df8 2019-12-01 02:37:53.489863 22516 2161 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 628\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 228\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 118ed600-b982-4095-9f05-dafdc5401df8 2019-12-01 02:37:53.511244 22517 630 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 627\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.4413E4\namount_out: !ruby/object:BigDecimal 18:0.88E3\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.574E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1574E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 a89a0101-8d58-4d1e-89a9-599e3411afa5 2019-12-01 02:48:59.417642 22518 627 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 a89a0101-8d58-4d1e-89a9-599e3411afa5 2019-12-01 02:48:59.435472 22519 629 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.574E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 574.0 187.149.58.33 f4e896ed-026e-43b2-8107-ab3780a4db11 2019-12-01 02:49:57.918068 22520 631 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 629\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.574E3\nphysical_cash: !ruby/object:BigDecimal 18:0.574E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 34a911f8-d04f-430d-bfb3-bab59985117a 2019-12-01 03:02:01.141955 22521 629 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 34a911f8-d04f-430d-bfb3-bab59985117a 2019-12-01 03:02:01.324722 22522 632 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 628\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2329E4\namount_out: !ruby/object:BigDecimal 18:0.1348E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.822E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1822E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 a4d18a7a-ae26-4fb6-9c49-c64a09ae3a20 2019-12-01 03:05:06.132245 22523 628 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 a4d18a7a-ae26-4fb6-9c49-c64a09ae3a20 2019-12-01 03:05:06.149274 22524 633 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 624\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.3787E4\namount_out: !ruby/object:BigDecimal 18:0.528E3\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.701E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2201E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 26d4245a-358b-449c-a7e9-f12919399ffd 2019-12-01 03:06:24.781374 22525 624 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 26d4245a-358b-449c-a7e9-f12919399ffd 2019-12-01 03:06:24.7959 22526 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-29 17:02:21.747374000 Z\n- &1 2019-11-30 16:55:16.221779000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-01 17:10:13.354221990 Z\nsign_in_count:\n- 76\n- 77\n 154 \N 189.186.111.139 51877490-ce80-4308-80ad-d632f077a7e6 2019-12-01 17:10:13.384892 22527 23 User \N \N 23 User \N update ---\nunique_session_id:\n- 6eQDae1avGXxSpFJpskM\n- S4mw3bikfoc8qNs61sKt\n 155 \N 189.186.111.139 51877490-ce80-4308-80ad-d632f077a7e6 2019-12-01 17:10:13.405803 22528 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-29 21:07:22.125303000 Z\n- &1 2019-11-30 20:34:26.368716000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-01 17:11:14.952312025 Z\nsign_in_count:\n- 31\n- 32\n 64 \N 187.149.58.33 6ac331c6-625f-44bd-86d5-47d566f7b850 2019-12-01 17:11:14.965751 22529 27 User \N \N 27 User \N update ---\nunique_session_id:\n- cG9sPfLT1RYksY1hkJL8\n- 4-bqnkRMxrTKpUZydYB1\n 65 \N 187.149.58.33 6ac331c6-625f-44bd-86d5-47d566f7b850 2019-12-01 17:11:14.984301 22530 630 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.701E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 701.0 189.186.111.139 fdfbdf71-6994-4696-98d1-b05d18fbc6df 2019-12-01 17:11:21.005024 22531 631 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.574E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 574.0 187.149.58.33 386d915d-6f0d-419a-8a4c-68826dd8a3ae 2019-12-01 17:11:39.7186 22532 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-30 17:07:26.252015000 Z\n- &1 2019-11-30 17:50:58.236765000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-01 17:58:30.120840524 Z\nsign_in_count:\n- 47\n- 48\n 96 \N 187.149.58.33 8402235d-6ed1-44b3-b651-a82a565c9efc 2019-12-01 17:58:30.128386 22533 26 User \N \N 26 User \N update ---\nunique_session_id:\n- 6mn_fx45XKV9P9-sfRv3\n- T94Y1nRA2HW1k-JzmSfF\n 97 \N 187.149.58.33 8402235d-6ed1-44b3-b651-a82a565c9efc 2019-12-01 17:58:30.143423 22534 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-11-24 19:21:20.129795000 Z\n- &1 2019-11-26 22:51:26.763619000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-01 19:11:34.672416225 Z\nsign_in_count:\n- 42\n- 43\n 86 \N 187.149.58.33 c30bfe17-75cc-4cd8-ac7e-18bb6785fc94 2019-12-01 19:11:34.678368 22535 25 User \N \N 25 User \N update ---\nunique_session_id:\n- cymfUschBg2M_e3Sx5Mh\n- yLDee85CJHdZW-rvtNXk\n 87 \N 187.149.58.33 c30bfe17-75cc-4cd8-ac7e-18bb6785fc94 2019-12-01 19:11:34.691282 22536 632 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.822E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 822.0 187.149.58.33 f31597f6-e41c-46fb-8163-1d5f5f835d98 2019-12-01 19:57:27.549153 22537 1548 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 632\namount: !ruby/object:BigDecimal 18:0.55948E3\ntax: !ruby/object:BigDecimal 18:0.8952E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-12-01\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-795\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 f1fbc11f-dc67-43bc-aae2-143521bcfa90 2019-12-01 19:57:42.980194 22540 2162 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 632\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 1548\ncardnumber: 7049\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-795\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-795 187.149.58.33 d70191e8-8ba7-4285-87eb-49354c9c72f7 2019-12-01 19:58:36.149211 22541 1549 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 630\namount: !ruby/object:BigDecimal 18:0.103362E4\ntax: !ruby/object:BigDecimal 18:0.16538E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-12-01\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-143\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 1af9d0ca-c148-4233-93bc-dfc87e0a6cff 2019-12-01 20:58:48.893211 22542 846 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.111.139 1af9d0ca-c148-4233-93bc-dfc87e0a6cff 2019-12-01 20:58:48.932545 22543 1549 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 f13045c4-965c-431a-b0c5-8917abcfcb3a 2019-12-01 20:58:52.943254 22544 2163 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 630\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 1549\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-143\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-143 189.186.111.139 f13045c4-965c-431a-b0c5-8917abcfcb3a 2019-12-01 20:58:52.964477 22545 2164 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 632\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1478\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1049E4\nchange: !ruby/object:BigDecimal 18:0.1049E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-765 187.149.58.33 33ac4b8d-e2f1-4238-a1ae-a4cf0085a6dd 2019-12-01 20:59:33.319122 22546 2164 CashRegistersMove \N \N 25 User \N destroy ---\nopen_cash_register_id: 632\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1478\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1049E4\nchange: !ruby/object:BigDecimal 18:0.1049E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.58.33 46e0826c-c750-4687-8392-dcb0d9035c65 2019-12-01 20:59:36.724369 22547 2165 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 632\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1049E4\nmove_type: '1'\nsale_id: 1478\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1049E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-765 187.149.58.33 c618d336-7b5a-44c2-9723-6cd0ed6ac8d6 2019-12-01 20:59:52.209064 22548 1478 Sale \N \N 25 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 0f2431ae-237b-45ca-a784-b605ae852cb8 2019-12-01 20:59:53.910833 22549 251 Customer \N \N 23 User \N create ---\nnick_name: JOSEFINA PARTIDA\nphone: "(667) 202-7069"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JOSEFINA PARTIDA fue registrado. 189.186.111.139 ec1e9943-ce89-4670-852f-87ae51f72d55 2019-12-01 21:00:14.516999 22550 1550 Sale \N \N 23 User \N create ---\ncustomer_id: 251\nuser_id: 23\nopen_cash_register_id: 630\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2019-12-01\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-144\nexpiration_date: 2020-01-05\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 2e4a32ee-0959-49b8-9fc9-ba5c30537199 2019-12-01 21:00:51.66816 22551 1392 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.111.139 2e4a32ee-0959-49b8-9fc9-ba5c30537199 2019-12-01 21:00:51.695846 22552 2166 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 630\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1550\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-144\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.3E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-144 189.186.111.139 71b0675e-45b4-425e-a652-88992e74c036 2019-12-01 21:01:04.926909 22553 1550 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.111.139 f406fed7-c884-44bd-8f16-dfa292f6fa0e 2019-12-01 21:01:06.390243 22554 634 CashOut \N \N 25 User \N create ---\nopen_cash_register_id: 632\nuser_id: 25\namount_in: !ruby/object:BigDecimal 18:0.1698E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.869E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1869E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 522b89ff-4583-4212-a976-a09593dec53b 2019-12-01 22:02:21.312518 22555 632 OpenCashRegister \N \N 25 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 522b89ff-4583-4212-a976-a09593dec53b 2019-12-01 22:02:21.329305 22556 635 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 631\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 27\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.574E3\nphysical_cash: !ruby/object:BigDecimal 18:0.574E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 bb48a7fe-34b7-432c-841b-154dc24e6176 2019-12-01 22:06:33.471603 22557 631 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 bb48a7fe-34b7-432c-841b-154dc24e6176 2019-12-01 22:06:33.483866 22558 1551 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 630\namount: !ruby/object:BigDecimal 18:0.829E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.829E3\nstatus: 0\ndate_sale: 2019-12-01\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-145\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 00822cc5-4342-40fc-9a91-e28fc90df2b6 2019-12-01 23:03:09.024919 22559 1134 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.111.139 00822cc5-4342-40fc-9a91-e28fc90df2b6 2019-12-01 23:03:09.05319 22561 2167 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 630\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.829E3\nmove_type: '1'\nsale_id: 1551\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-145\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.171E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-145 189.186.111.139 2fd29914-2a5d-4260-b822-447ae7e55f0e 2019-12-01 23:03:38.583467 22562 636 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 630\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.2228E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.429E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2929E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 809e46f4-dd02-4c3e-8cbf-7be28a86e3c2 2019-12-01 23:07:25.814359 22563 630 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 809e46f4-dd02-4c3e-8cbf-7be28a86e3c2 2019-12-01 23:07:25.826504 22564 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-30 18:32:07.248355000 Z\n- &1 2019-11-30 19:42:49.410427000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-02 03:31:14.416280202 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\nsign_in_count:\n- 998\n- 999\n 1998 \N 189.186.221.72 90581495-fce1-401a-8499-51cd7ecdf07f 2019-12-02 03:31:14.430063 22565 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tfWxMCWvtkAL4jvxs5TR\n- oPJgYsPxnZsNyxXLNBjo\n 1999 \N 189.186.221.72 90581495-fce1-401a-8499-51cd7ecdf07f 2019-12-02 03:31:14.456738 22566 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-11-30 16:55:16.221779000 Z\n- &1 2019-12-01 17:10:13.354221000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-02 17:08:30.099957874 Z\nsign_in_count:\n- 77\n- 78\n 156 \N 189.186.111.139 ad7c5495-ff4c-4f0e-bbe0-452a8c058da0 2019-12-02 17:08:30.1366 22567 23 User \N \N 23 User \N update ---\nunique_session_id:\n- S4mw3bikfoc8qNs61sKt\n- Wuez7bs96d2v5V_i533P\n 157 \N 189.186.111.139 ad7c5495-ff4c-4f0e-bbe0-452a8c058da0 2019-12-02 17:08:30.161215 22568 633 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.429E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 429.0 189.186.111.139 e0ab9b4b-c44b-4c91-b517-52a1c6fccb63 2019-12-02 17:08:47.447008 22569 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-11-30 17:50:58.236765000 Z\n- &1 2019-12-01 17:58:30.120840000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-02 17:22:59.116485960 Z\nsign_in_count:\n- 48\n- 49\n 98 \N 187.149.58.33 9f0c6b40-72d7-4ad9-a1de-26d1ad760918 2019-12-02 17:22:59.161541 22570 26 User \N \N 26 User \N update ---\nunique_session_id:\n- T94Y1nRA2HW1k-JzmSfF\n- gsu_zzCdHxr7TSQyBsss\n 99 \N 187.149.58.33 9f0c6b40-72d7-4ad9-a1de-26d1ad760918 2019-12-02 17:22:59.184911 22571 2168 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 633\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1249E4\nmove_type: '1'\nsale_id: 1212\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.251E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-63 189.186.111.139 43175916-a912-453f-ab1b-3c620bb556e8 2019-12-02 18:26:08.639163 22572 1212 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.111.139 70164ff2-34d0-476f-9805-042161bd8580 2019-12-02 18:26:10.309525 22573 634 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.574E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 574.0 187.149.58.33 e3867981-c7db-4edb-a8fa-8b262ff87b81 2019-12-02 18:31:57.857355 22574 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-11-26 22:51:26.763619000 Z\n- &1 2019-12-01 19:11:34.672416000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-02 19:09:21.083723789 Z\nsign_in_count:\n- 43\n- 44\n 88 \N 187.149.58.33 847193a1-800a-4105-8b66-6da1ec75ab3d 2019-12-02 19:09:21.117395 22575 25 User \N \N 25 User \N update ---\nunique_session_id:\n- yLDee85CJHdZW-rvtNXk\n- k7gSb9CfKG3fvtRLeN4z\n 89 \N 187.149.58.33 847193a1-800a-4105-8b66-6da1ec75ab3d 2019-12-02 19:09:21.140325 22576 1552 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 634\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-12-02\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-610\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 c9b6347b-1e4e-4231-9620-d6e335e861f6 2019-12-02 19:41:37.999153 22577 1416 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 c9b6347b-1e4e-4231-9620-d6e335e861f6 2019-12-02 19:41:38.038152 22578 1552 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 31a8a8b4-b0ea-458c-8161-c9067a924795 2019-12-02 19:41:51.560371 22579 2169 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 634\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 1552\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-610\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-610 187.149.58.33 31a8a8b4-b0ea-458c-8161-c9067a924795 2019-12-02 19:41:51.584306 22580 635 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.869E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 869.0 187.149.58.33 e392aab0-c92d-4099-ad72-0309a9d95b06 2019-12-02 19:54:25.029338 22581 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-11-30 20:34:26.368716000 Z\n- &1 2019-12-01 17:11:14.952312000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-02 20:52:23.656808896 Z\nsign_in_count:\n- 32\n- 33\n 66 \N 187.149.58.33 7e979deb-30b5-4c89-a44b-a7c7e2ae1ee0 2019-12-02 20:52:23.667984 22582 27 User \N \N 27 User \N update ---\nunique_session_id:\n- 4-bqnkRMxrTKpUZydYB1\n- cn8VgTWsGxWZgnJ7C98H\n 67 \N 187.149.58.33 7e979deb-30b5-4c89-a44b-a7c7e2ae1ee0 2019-12-02 20:52:23.688519 22583 1553 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 634\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2019-12-02\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-611\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 47cac974-fc6c-496c-acab-355ce49a2b49 2019-12-02 20:52:50.705851 22584 367 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.32E2\n- !ruby/object:BigDecimal 18:0.31E2\n 25 \N 187.149.58.33 47cac974-fc6c-496c-acab-355ce49a2b49 2019-12-02 20:52:50.737497 22586 2170 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 634\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 1553\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-611\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E2\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-611 187.149.58.33 c97feced-b157-43c2-b702-e49ddd7634c3 2019-12-02 20:52:56.869205 22587 2171 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 633\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1397\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-111 189.186.111.139 8053a302-cbc6-4c97-834c-002c9d0c094d 2019-12-02 21:04:47.329072 22588 1397 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.111.139 74bc8851-7971-46ae-bde6-36cb430f5dbe 2019-12-02 21:04:48.65573 22589 1554 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 635\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-12-02\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-796\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 058a449b-c862-41d6-864a-d4367f2204d8 2019-12-02 21:06:27.671485 22590 1155 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.58.33 058a449b-c862-41d6-864a-d4367f2204d8 2019-12-02 21:06:27.706504 22591 1554 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 9f5fa114-cbf7-4023-94d0-659978055764 2019-12-02 21:07:25.965398 22592 2172 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 635\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 1554\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-796\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-796 187.149.58.33 9f5fa114-cbf7-4023-94d0-659978055764 2019-12-02 21:07:25.985618 22593 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-11-30 19:42:49.410427000 Z\n- &1 2019-12-02 03:31:14.416280000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-02 22:37:44.190433417 Z\nsign_in_count:\n- 999\n- 1000\n 2000 \N 189.186.221.72 8658c635-ba69-4a11-bdd2-2150f25e697e 2019-12-02 22:37:44.201889 22594 4 User \N \N 4 User \N update ---\nunique_session_id:\n- oPJgYsPxnZsNyxXLNBjo\n- "-Uow1BmovxGyd-3xxJKg"\n 2001 \N 189.186.221.72 8658c635-ba69-4a11-bdd2-2150f25e697e 2019-12-02 22:37:44.223007 22595 2173 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 635\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1531\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-789 187.149.58.33 d85261e2-a34d-4f71-b606-c7a03887532d 2019-12-02 23:33:29.277962 22596 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-02 03:31:14.416280000 Z\n- &1 2019-12-02 22:37:44.190433000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-02 23:39:37.454589296 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1000\n- 1001\n 2002 \N 187.149.58.33 05df839d-da83-4a91-807f-11fdbbb806f3 2019-12-02 23:39:37.462157 22597 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-Uow1BmovxGyd-3xxJKg"\n- mD5gWjL3tbHBQZ2ybsQn\n 2003 \N 187.149.58.33 05df839d-da83-4a91-807f-11fdbbb806f3 2019-12-02 23:39:37.479064 22598 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-12-01 19:11:34.672416000 Z\n- &1 2019-12-02 19:09:21.083723000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-02 23:40:56.024554122 Z\nsign_in_count:\n- 44\n- 45\n 90 \N 187.149.58.33 fa6ff93d-e36c-4b5d-af13-25188888133c 2019-12-02 23:40:56.03052 22599 25 User \N \N 25 User \N update ---\nunique_session_id:\n- k7gSb9CfKG3fvtRLeN4z\n- zsoxArxBaf6n2G_f__F9\n 91 \N 187.149.58.33 fa6ff93d-e36c-4b5d-af13-25188888133c 2019-12-02 23:40:56.042544 22600 2174 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 635\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 877\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CREDITO SAM\n 1 movimiento de efectivo por venta con folio PV1-V-500 187.149.58.33 fea52e35-ffae-4acb-af6f-bd82c3bca2e0 2019-12-02 23:49:34.380628 22601 877 Sale \N \N 25 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 9af840c4-965b-4b82-96a5-5356604d6a05 2019-12-02 23:49:36.80678 22602 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-02 22:37:44.190433000 Z\n- &1 2019-12-02 23:39:37.454589000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-02 23:51:14.099233099 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\nsign_in_count:\n- 1001\n- 1002\n 2004 \N 189.186.221.72 fd27b8d4-b3fd-40ec-b2ec-bd1b4bb8085b 2019-12-02 23:51:14.107225 22603 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mD5gWjL3tbHBQZ2ybsQn\n- hiVxgiksYGDLja6G7hsR\n 2005 \N 189.186.221.72 fd27b8d4-b3fd-40ec-b2ec-bd1b4bb8085b 2019-12-02 23:51:14.123894 22604 1555 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 633\namount: !ruby/object:BigDecimal 18:0.23E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.23E3\nstatus: 0\ndate_sale: 2019-12-02\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-146\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 a5efbdde-abf0-4f6d-8f08-7f50f4f3a421 2019-12-03 01:34:45.570432 22605 1181 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.111.139 a5efbdde-abf0-4f6d-8f08-7f50f4f3a421 2019-12-03 01:34:45.598496 22606 1555 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 39a22210-e5e4-4199-bd74-e0297060a63c 2019-12-03 01:34:53.488514 22631 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-12-02 23:40:56.024554000 Z\n- &1 2019-12-03 17:19:31.322122000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-03 17:57:27.522380719 Z\nsign_in_count:\n- 46\n- 47\n 94 \N 187.149.58.33 e8d6f1cc-abfe-4781-87ec-0c73a5e75772 2019-12-03 17:57:27.52832 22607 2175 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 633\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.23E3\nmove_type: '1'\nsale_id: 1555\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-146\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.77E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-146 189.186.111.139 39a22210-e5e4-4199-bd74-e0297060a63c 2019-12-03 01:34:53.509305 22608 19 ProductsReturn \N \N 23 User \N create ---\nsale_id: 1458\nuser_id: 23\nreturn_code: PV3-D-2\npointsale_id: 3\nnew_amount: !ruby/object:BigDecimal 18:0.948E3\nreturned_amount: !ruby/object:BigDecimal 18:0.1299E4\ndifference_amount: !ruby/object:BigDecimal 18:0.0\nis_money_returned: false\n 1 devolución PV3-D-2 creada. 189.186.111.139 c20d1522-890b-4eae-8e71-5553923f4099 2019-12-03 02:07:54.933526 22609 1107 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.111.139 c20d1522-890b-4eae-8e71-5553923f4099 2019-12-03 02:07:54.970934 22610 1243 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.111.139 c20d1522-890b-4eae-8e71-5553923f4099 2019-12-03 02:07:55.001309 22611 1358 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.111.139 c20d1522-890b-4eae-8e71-5553923f4099 2019-12-03 02:07:55.029411 22612 637 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 633\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.2178E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.607E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2607E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 676ec652-ea74-4b2e-b08d-fd1762d723a3 2019-12-03 02:55:12.102578 22613 633 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 676ec652-ea74-4b2e-b08d-fd1762d723a3 2019-12-03 02:55:12.117275 22614 638 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 634\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.1048E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.622E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1622E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 e2749856-b8d3-41f3-9b31-6829e10b2ba4 2019-12-03 02:57:58.705307 22615 634 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 e2749856-b8d3-41f3-9b31-6829e10b2ba4 2019-12-03 02:57:58.718927 22616 1556 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 635\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-02\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-797\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 f335b0e2-4755-465a-bfff-88129df1308e 2019-12-03 03:01:12.040517 22617 1297 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 f335b0e2-4755-465a-bfff-88129df1308e 2019-12-03 03:01:12.066271 22618 1556 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 9ed94db9-760f-400c-8ab4-09fc44a5bcb4 2019-12-03 03:02:48.473426 22619 2176 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 635\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 1556\ncardnumber: 8400\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-797\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-797 187.149.58.33 9ed94db9-760f-400c-8ab4-09fc44a5bcb4 2019-12-03 03:02:48.494566 22620 639 CashOut \N \N 25 User \N create ---\nopen_cash_register_id: 635\nuser_id: 25\namount_in: !ruby/object:BigDecimal 18:0.3397E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.18E4\ncash_fund: !ruby/object:BigDecimal 18:0.768E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2568E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 f407d9ec-ad88-43c8-8089-9f23ddfbab9e 2019-12-03 03:07:14.104195 22621 635 OpenCashRegister \N \N 25 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 f407d9ec-ad88-43c8-8089-9f23ddfbab9e 2019-12-03 03:07:14.11766 22622 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-12-01 17:10:13.354221000 Z\n- &1 2019-12-02 17:08:30.099957000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-03 17:11:08.360280658 Z\nsign_in_count:\n- 78\n- 79\n 158 \N 189.186.111.139 72754fa8-ad68-4ffc-83c1-d8e188ed266e 2019-12-03 17:11:08.398043 22623 23 User \N \N 23 User \N update ---\nunique_session_id:\n- Wuez7bs96d2v5V_i533P\n- RrkozvqQcUiKz3pF33GM\n 159 \N 189.186.111.139 72754fa8-ad68-4ffc-83c1-d8e188ed266e 2019-12-03 17:11:08.424399 22624 636 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.607E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 607.0 189.186.111.139 43181a52-b8a5-4bc6-a9bc-092e5f660452 2019-12-03 17:11:28.251501 22625 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-01 17:11:14.952312000 Z\n- &1 2019-12-02 20:52:23.656808000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-03 17:14:49.300866147 Z\nsign_in_count:\n- 33\n- 34\n 68 \N 187.149.58.33 fbc5ebf9-fcb1-4cf1-b71e-bdbe8a2f9eff 2019-12-03 17:14:49.306884 22626 27 User \N \N 27 User \N update ---\nunique_session_id:\n- cn8VgTWsGxWZgnJ7C98H\n- vZRGA9bMYJ1ZC3qFasZs\n 69 \N 187.149.58.33 fbc5ebf9-fcb1-4cf1-b71e-bdbe8a2f9eff 2019-12-03 17:14:49.320645 22627 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-12-02 19:09:21.083723000 Z\n- &1 2019-12-02 23:40:56.024554000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-03 17:19:31.322122574 Z\nsign_in_count:\n- 45\n- 46\n 92 \N 187.149.58.33 1412b76f-ebe7-4e03-b919-181ee73f1be0 2019-12-03 17:19:31.328538 22628 25 User \N \N 25 User \N update ---\nunique_session_id:\n- zsoxArxBaf6n2G_f__F9\n- 3EznysgvcMtsmYoyejxf\n 93 \N 187.149.58.33 1412b76f-ebe7-4e03-b919-181ee73f1be0 2019-12-03 17:19:31.34398 22629 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-02 23:39:37.454589000 Z\n- &1 2019-12-02 23:51:14.099233000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-03 17:50:30.359433371 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1002\n- 1003\n 2006 \N 187.149.58.33 5c133bee-db44-4eeb-b546-f5b369a4d91e 2019-12-03 17:50:30.367539 22630 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hiVxgiksYGDLja6G7hsR\n- mRrdx5hWYhVWdDSA_xf7\n 2007 \N 187.149.58.33 5c133bee-db44-4eeb-b546-f5b369a4d91e 2019-12-03 17:50:30.387079 22632 25 User \N \N 25 User \N update ---\nunique_session_id:\n- 3EznysgvcMtsmYoyejxf\n- _pLFQEVfhdk9GLwSvqQx\n 95 \N 187.149.58.33 e8d6f1cc-abfe-4781-87ec-0c73a5e75772 2019-12-03 17:57:27.541045 22633 637 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.768E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 768.0 187.149.58.33 4a8a903d-0595-45d2-805f-cf079c62b8ee 2019-12-03 17:57:53.939579 22634 252 Customer \N \N 25 User \N create ---\nnick_name: KARLA CASILLA\nphone: "(667) 253-1340"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KARLA CASILLA fue registrado. 187.149.58.33 1469fe97-8466-4f6b-a1e6-4f208e1db53e 2019-12-03 17:58:47.808695 22635 1557 Sale \N \N 25 User \N create ---\ncustomer_id: 252\nuser_id: 25\nopen_cash_register_id: 637\namount: !ruby/object:BigDecimal 18:0.2299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2299E4\nstatus: 0\ndate_sale: 2019-12-03\nsaletype: 2\nseller_id: 16\nsale_code: PV1-V-798\nexpiration_date: 2020-01-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 76a08c28-0460-4776-9f94-0de3ea01fbc7 2019-12-03 17:59:04.923667 22636 1370 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 76a08c28-0460-4776-9f94-0de3ea01fbc7 2019-12-03 17:59:04.957422 22637 2177 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 637\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.65E3\nmove_type: '1'\nsale_id: 1557\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-798\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.65E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-798 187.149.58.33 251d77c3-259d-4217-9fce-9f21c043f6a0 2019-12-03 17:59:16.247115 22638 1557 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 161c70cb-68d1-4db7-b10f-29dcba4eec54 2019-12-03 17:59:18.199997 22639 20 Seller \N \N 25 User \N create ---\npointsale_id: 1\nname: KARLA\nlast_name: BELTRAN\nstatus: 1\n 1 El vendedor KARLA BELTRAN fue registrado. 187.149.58.33 a0041d92-b17b-4c06-a105-a8517e576c6a 2019-12-03 18:20:28.490964 22640 21 Seller \N \N 25 User \N create ---\npointsale_id: 1\nname: KARLA\nlast_name: BELTRAN\nstatus: 1\n 1 El vendedor KARLA BELTRAN fue registrado. 187.149.58.33 8061b7ef-0934-46c9-b6ee-f5a63b144347 2019-12-03 18:20:29.948533 22641 21 Seller \N \N 25 User \N update ---\nstatus:\n- active\n- 0\n 2 El vendedor KARLA BELTRAN fue eliminado. 187.149.58.33 3af997e9-b2a1-4848-9f58-2968d651d202 2019-12-03 18:20:43.156901 22642 638 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.622E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 622.0 187.149.58.33 b864c609-743c-4fc7-bae9-17b27f1970e5 2019-12-03 18:53:49.590387 22643 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-02 23:51:14.099233000 Z\n- &1 2019-12-03 17:50:30.359433000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-03 19:34:17.885483251 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\nsign_in_count:\n- 1003\n- 1004\n 2008 \N 189.186.221.72 9110ee0f-bac2-4247-ada1-70fe8cfabc24 2019-12-03 19:34:17.896568 22644 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mRrdx5hWYhVWdDSA_xf7\n- rCEmWbNssV6srAV_tn8V\n 2009 \N 189.186.221.72 9110ee0f-bac2-4247-ada1-70fe8cfabc24 2019-12-03 19:34:17.921753 22645 2178 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 637\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1345\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-709 187.149.58.33 8c885e42-1e8a-4f90-ba6e-26292689e6f1 2019-12-03 20:00:20.245391 22646 222 Customer \N \N 25 User \N update ---\ncredit:\n- false\n- true\ncredit_limit:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.25E4\ntime_limit:\n- 0\n- 20\n 2 El cliente MARIA DEL ROSARIO RODRIGUEZ fue registrado. 187.149.58.33 99cafe22-d5a0-4bcc-88a6-35e0061d77fe 2019-12-03 20:11:37.761342 22647 1558 Sale \N \N 25 User \N create ---\ncustomer_id: 222\nuser_id: 25\nopen_cash_register_id: 637\namount: !ruby/object:BigDecimal 18:0.2348E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2348E4\nstatus: 0\ndate_sale: 2019-12-03\nsaletype: 0\nseller_id: 20\nsale_code: PV1-V-799\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 e3c4324d-ebb2-4c49-9ee6-69deeafc58f9 2019-12-03 20:12:29.794867 22648 1301 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 e3c4324d-ebb2-4c49-9ee6-69deeafc58f9 2019-12-03 20:12:29.821806 22649 1409 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 e3c4324d-ebb2-4c49-9ee6-69deeafc58f9 2019-12-03 20:12:29.854707 22650 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-03 17:50:30.359433000 Z\n- &1 2019-12-03 19:34:17.885483000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-03 21:22:53.014503674 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1004\n- 1005\n 2010 \N 187.149.58.33 9ca8a88b-5e4f-4c15-b8ef-ef664b3109a6 2019-12-03 21:22:53.02518 22651 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rCEmWbNssV6srAV_tn8V\n- zestuTbUESgqx-bfWd5d\n 2011 \N 187.149.58.33 9ca8a88b-5e4f-4c15-b8ef-ef664b3109a6 2019-12-03 21:22:53.049833 22652 2179 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 638\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.149E3\nmove_type: '1'\nsale_id: 1269\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.351E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-511 187.149.58.33 e3617ce0-7b52-433a-b846-bda8284691ca 2019-12-03 22:46:52.831549 22699 25 User \N \N 25 User \N update ---\nunique_session_id:\n- 2mSscm47CzZntqnnx2_D\n- RknxswBqpBKiNUHTBNkJ\n 103 \N 187.149.58.33 ae2ca095-821f-4681-8a7f-1f9776a35fdd 2019-12-04 20:33:01.017293 22921 21 User \N \N 21 User \N update ---\nunique_session_id:\n- zZAxXLWzbskAb8yvZUaw\n- aPdsesfukE_Zb4VvZL5Z\n 110 \N 187.149.58.33 1d430c43-5ada-4287-b396-bbe902eb9862 2019-12-06 21:28:33.311614 22653 2179 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 638\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.149E3\nmove_type: '1'\nsale_id: 1269\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.351E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.58.33 f8c2fba0-4ae9-4e82-bf8a-1ed5a35560ab 2019-12-03 22:47:05.725651 22654 2180 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 638\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.149E3\nmove_type: '1'\nsale_id: 1269\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.4E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-511 187.149.58.33 ea1dfd08-7148-4ad0-9eb8-fe77c11a56ea 2019-12-03 22:47:55.294748 22655 1269 Sale \N \N 27 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 2f041e8d-f230-4502-9268-c30baf9ed4ae 2019-12-03 22:48:37.341315 22656 1559 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 636\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-12-03\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-147\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 cbfc8120-d785-4c9e-aae2-7f378988c926 2019-12-03 23:25:08.559448 22657 1129 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.111.139 cbfc8120-d785-4c9e-aae2-7f378988c926 2019-12-03 23:25:08.612768 22658 1559 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 cbc290d4-2663-401a-b5ab-6e79630ccad1 2019-12-03 23:25:24.874801 22659 2181 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 636\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.569E3\nmove_type: '1'\nsale_id: 1559\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-147\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.57E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-147 189.186.111.139 cbc290d4-2663-401a-b5ab-6e79630ccad1 2019-12-03 23:25:24.896896 22660 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-12-03 17:19:31.322122000 Z\n- &1 2019-12-03 17:57:27.522380000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-03 23:38:52.713303927 Z\nsign_in_count:\n- 47\n- 48\n 96 \N 187.149.58.33 2f18f9a7-2af8-4ab1-9d07-b6fe9491e5a4 2019-12-03 23:38:52.720358 22661 25 User \N \N 25 User \N update ---\nunique_session_id:\n- _pLFQEVfhdk9GLwSvqQx\n- ZHL4y32i8rBTyt-Gjfdu\n 97 \N 187.149.58.33 2f18f9a7-2af8-4ab1-9d07-b6fe9491e5a4 2019-12-03 23:38:52.733786 22662 1560 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 638\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-03\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-612\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 44013ce4-ddbf-48c5-8aa8-18d328f2dd50 2019-12-04 00:53:16.426048 22663 1415 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 44013ce4-ddbf-48c5-8aa8-18d328f2dd50 2019-12-04 00:53:16.452452 22664 1560 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 d0bd7f6b-c2bb-4d35-ac20-1a7dc685b9dc 2019-12-04 00:54:29.128085 22665 2182 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 638\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 1560\ncardnumber: 2425\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-612\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-612 187.149.58.33 d0bd7f6b-c2bb-4d35-ac20-1a7dc685b9dc 2019-12-04 00:54:29.15066 22666 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-03 19:34:17.885483000 Z\n- &1 2019-12-03 21:22:53.014503000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-04 01:11:52.365534494 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140168\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183136125\n mask_addr: 4294967295\nsign_in_count:\n- 1005\n- 1006\n 2012 \N 189.186.205.125 ddf74441-ac1a-4bba-b08d-6b0e7c58e4ef 2019-12-04 01:11:52.400401 22667 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zestuTbUESgqx-bfWd5d\n- UkY43KY-zi8hxuwfDtgd\n 2013 \N 189.186.205.125 ddf74441-ac1a-4bba-b08d-6b0e7c58e4ef 2019-12-04 01:11:52.436922 22668 2183 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 637\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.829E3\nmove_type: '1'\nsale_id: 1488\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.85E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-771 187.149.58.33 96526388-8656-4dca-a307-8020c5b16d1d 2019-12-04 01:25:57.894224 22669 1488 Sale \N \N 25 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 6ef0228f-8204-47a9-9659-d29f2559d6a8 2019-12-04 01:26:02.354837 22670 229 Expense \N \N 25 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 637\nquantity: !ruby/object:BigDecimal 18:0.25E3\nstatus: 1\nobservations: TRABAJO KIKO\nexpense_date: 2019-12-03\nexpense_code: PV1-E-163\n 1 Egreso por 250.0 registrado 187.149.58.33 920e83b6-37bd-406c-9132-bd12b291a780 2019-12-04 01:59:48.114315 22671 2184 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 637\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 229\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 920e83b6-37bd-406c-9132-bd12b291a780 2019-12-04 01:59:48.139314 22672 640 CashOut \N \N 25 User \N create ---\nopen_cash_register_id: 637\nuser_id: 25\namount_in: !ruby/object:BigDecimal 18:0.1979E4\namount_out: !ruby/object:BigDecimal 18:0.25E3\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.16E4\ncash_fund: !ruby/object:BigDecimal 18:0.897E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2497E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 e25bf35a-0a24-4fd5-9e47-813e385824ce 2019-12-04 02:03:28.663267 22673 637 OpenCashRegister \N \N 25 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 e25bf35a-0a24-4fd5-9e47-813e385824ce 2019-12-04 02:03:28.678366 22674 641 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 638\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.1048E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.771E3\nphysical_cash: !ruby/object:BigDecimal 18:0.771E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 7a885eb1-a60d-4022-a0b1-578024e53e37 2019-12-04 02:13:25.946152 22675 638 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 7a885eb1-a60d-4022-a0b1-578024e53e37 2019-12-04 02:13:25.960514 22676 642 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 636\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.569E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.676E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1176E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 7242b7a6-7b41-4770-9a73-8e5f2fabd2e3 2019-12-04 02:54:53.282411 22677 636 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 7242b7a6-7b41-4770-9a73-8e5f2fabd2e3 2019-12-04 02:54:53.301297 22678 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-12-02 17:08:30.099957000 Z\n- &1 2019-12-03 17:11:08.360280000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-04 17:03:31.772189481 Z\nsign_in_count:\n- 79\n- 80\n 160 \N 189.186.111.139 a8228419-c643-45c0-8e05-aeb63be5631e 2019-12-04 17:03:31.808009 22679 23 User \N \N 23 User \N update ---\nunique_session_id:\n- RrkozvqQcUiKz3pF33GM\n- qG8y9e7V-Rs6zrjA64WZ\n 161 \N 189.186.111.139 a8228419-c643-45c0-8e05-aeb63be5631e 2019-12-04 17:03:31.831739 22680 639 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.676E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 676.0 189.186.111.139 c9edcd05-a74a-4bb6-aa5a-83dc421d8dad 2019-12-04 17:04:24.081603 22681 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-02 20:52:23.656808000 Z\n- &1 2019-12-03 17:14:49.300866000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-04 17:08:56.079993505 Z\nsign_in_count:\n- 34\n- 35\n 70 \N 187.149.58.33 cb1636c6-c3ec-4740-b603-f1803be5cc8d 2019-12-04 17:08:56.085849 22682 27 User \N \N 27 User \N update ---\nunique_session_id:\n- vZRGA9bMYJ1ZC3qFasZs\n- CDTVs5VsW18pE16zgs8Q\n 71 \N 187.149.58.33 cb1636c6-c3ec-4740-b603-f1803be5cc8d 2019-12-04 17:08:56.098953 22683 640 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.771E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 771.0 187.149.58.33 dbd17daf-bba9-4b11-a8ac-b941d611a4bc 2019-12-04 17:09:45.610279 22684 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-12-03 17:57:27.522380000 Z\n- &1 2019-12-03 23:38:52.713303000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-04 17:12:50.564234685 Z\nsign_in_count:\n- 48\n- 49\n 98 \N 187.149.58.33 3e26fd0e-a796-41dd-ba4d-ce69829b98c9 2019-12-04 17:12:50.570695 22685 25 User \N \N 25 User \N update ---\nunique_session_id:\n- ZHL4y32i8rBTyt-Gjfdu\n- eJpgdqvj-3akT4tKEJHP\n 99 \N 187.149.58.33 3e26fd0e-a796-41dd-ba4d-ce69829b98c9 2019-12-04 17:12:50.585891 22686 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-03 21:22:53.014503000 Z\n- &1 2019-12-04 01:11:52.365534000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-04 17:53:43.057054676 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183136125\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183136125\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1006\n- 1007\n 2014 \N 187.149.58.33 6aa741a5-af6d-4090-b59e-674f148e15fd 2019-12-04 17:53:43.069341 22687 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UkY43KY-zi8hxuwfDtgd\n- RseHWVsnoZ4yRrbLTtbx\n 2015 \N 187.149.58.33 6aa741a5-af6d-4090-b59e-674f148e15fd 2019-12-04 17:53:43.093128 22688 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-12-03 23:38:52.713303000 Z\n- &1 2019-12-04 17:12:50.564234000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-04 18:05:02.774893302 Z\nsign_in_count:\n- 49\n- 50\n 100 \N 187.149.58.33 134d8e2f-74ce-41f0-9995-01f89829643a 2019-12-04 18:05:02.783358 22689 25 User \N \N 25 User \N update ---\nunique_session_id:\n- eJpgdqvj-3akT4tKEJHP\n- 2mSscm47CzZntqnnx2_D\n 101 \N 187.149.58.33 134d8e2f-74ce-41f0-9995-01f89829643a 2019-12-04 18:05:02.800899 22690 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-04 01:11:52.365534000 Z\n- &1 2019-12-04 17:53:43.057054000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-04 19:39:03.074811972 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183136125\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1007\n- 1008\n 2016 \N 187.149.58.33 44c11fbf-d4b9-4d82-ae58-319d8929b069 2019-12-04 19:39:03.085966 22691 4 User \N \N 4 User \N update ---\nunique_session_id:\n- RseHWVsnoZ4yRrbLTtbx\n- yL8o9dn3eFfzvXHaNgyg\n 2017 \N 187.149.58.33 44c11fbf-d4b9-4d82-ae58-319d8929b069 2019-12-04 19:39:03.110912 22692 253 Customer \N \N 23 User \N create ---\nnick_name: IRMA GARZON\nphone: "(667) 751-3169"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente IRMA GARZON fue registrado. 189.186.111.139 dfa51502-7c89-4052-b73e-c578859d8a65 2019-12-04 20:06:50.026843 22693 1561 Sale \N \N 23 User \N create ---\ncustomer_id: 253\nuser_id: 23\nopen_cash_register_id: 639\namount: !ruby/object:BigDecimal 18:0.1528E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1528E4\nstatus: 0\ndate_sale: 2019-12-04\nsaletype: 2\nseller_id: 13\nsale_code: PV3-V-148\nexpiration_date: 2020-01-08\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 79b25d97-acf0-48d6-b873-9836bbd55013 2019-12-04 20:07:16.746949 22694 1391 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.111.139 79b25d97-acf0-48d6-b873-9836bbd55013 2019-12-04 20:07:16.791529 22695 1397 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.111.139 79b25d97-acf0-48d6-b873-9836bbd55013 2019-12-04 20:07:16.825552 22696 2185 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 639\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1561\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-148\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-148 189.186.111.139 045bf894-8b72-40a5-879a-af19ed1d85d9 2019-12-04 20:08:01.88564 22697 1561 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.111.139 1247b4cd-6dd8-4688-8410-5faa7fda77bb 2019-12-04 20:08:17.160214 22698 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-12-04 17:12:50.564234000 Z\n- &1 2019-12-04 18:05:02.774893000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-04 20:33:00.968173350 Z\nsign_in_count:\n- 50\n- 51\n 102 \N 187.149.58.33 ae2ca095-821f-4681-8a7f-1f9776a35fdd 2019-12-04 20:33:00.996069 22700 641 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.897E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 897.0 187.149.58.33 cb860d08-e829-434b-a981-fc9cce078f45 2019-12-04 20:33:32.099254 22701 1562 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 641\namount: !ruby/object:BigDecimal 18:0.8534E2\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9899E2\nstatus: 0\ndate_sale: 2019-12-04\nsaletype: 1\nseller_id: 20\nsale_code: PV1-V-800\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 96d9cc3f-1561-413d-89a2-46cbf53b448e 2019-12-04 20:33:59.599958 22702 486 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 20 \N 187.149.58.33 96d9cc3f-1561-413d-89a2-46cbf53b448e 2019-12-04 20:33:59.62908 22703 1562 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 fc2fc8cd-b6f7-4b41-96be-3c634019a42b 2019-12-04 20:34:22.239423 22704 2186 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 641\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.9899E2\nmove_type: '1'\nsale_id: 1562\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-800\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.101E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-800 187.149.58.33 fc2fc8cd-b6f7-4b41-96be-3c634019a42b 2019-12-04 20:34:22.261827 22705 1563 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 641\namount: !ruby/object:BigDecimal 18:0.389E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.389E3\nstatus: 0\ndate_sale: 2019-12-04\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-801\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 8688fcc0-d0d3-4880-80b4-17d4853d9b4c 2019-12-04 20:41:09.117662 22706 1303 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.58.33 8688fcc0-d0d3-4880-80b4-17d4853d9b4c 2019-12-04 20:41:09.145803 22707 1563 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 1209ba85-cedb-469c-8068-b3d404f582a0 2019-12-04 20:41:29.453489 22708 2187 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 641\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.389E3\nmove_type: '1'\nsale_id: 1563\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-801\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-801 187.149.58.33 1209ba85-cedb-469c-8068-b3d404f582a0 2019-12-04 20:41:29.482169 22709 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-04 17:53:43.057054000 Z\n- &1 2019-12-04 19:39:03.074811000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-04 21:02:51.025520775 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147108065\n mask_addr: 4294967295\nsign_in_count:\n- 1008\n- 1009\n 2018 \N 187.149.14.225 401e1929-65e7-4b7a-b743-12d90c8a6f8c 2019-12-04 21:02:51.0338 22710 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yL8o9dn3eFfzvXHaNgyg\n- RzA6zycsg5akja4xd7zk\n 2019 \N 187.149.14.225 401e1929-65e7-4b7a-b743-12d90c8a6f8c 2019-12-04 21:02:51.072423 22711 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-04 19:39:03.074811000 Z\n- &1 2019-12-04 21:02:51.025520000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-04 21:47:29.805050281 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147108065\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147108065\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1009\n- 1010\n 2020 \N 187.149.58.33 eca48407-691c-4c44-81af-1a07eef04b3a 2019-12-04 21:47:29.816563 22712 4 User \N \N 4 User \N update ---\nunique_session_id:\n- RzA6zycsg5akja4xd7zk\n- Noyv9DMKEgYsy5nn78mZ\n 2021 \N 187.149.58.33 eca48407-691c-4c44-81af-1a07eef04b3a 2019-12-04 21:47:29.840792 22713 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-12-04 18:05:02.774893000 Z\n- &1 2019-12-04 20:33:00.968173000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-04 21:48:15.649628493 Z\nsign_in_count:\n- 51\n- 52\n 104 \N 187.149.58.33 00df25f9-417f-4f15-9d46-7266220e0a3d 2019-12-04 21:48:15.655148 22714 25 User \N \N 25 User \N update ---\nunique_session_id:\n- RknxswBqpBKiNUHTBNkJ\n- x2jFRLmFxh6CH2j7d6zo\n 105 \N 187.149.58.33 00df25f9-417f-4f15-9d46-7266220e0a3d 2019-12-04 21:48:15.667363 22715 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-04 21:02:51.025520000 Z\n- &1 2019-12-04 21:47:29.805050000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-04 22:24:38.470638235 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147108065\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945806\n mask_addr: 4294967295\nsign_in_count:\n- 1010\n- 1011\n 2022 \N 200.68.180.78 ac7aa868-dc26-4c6b-8cdf-78100ccbcff0 2019-12-04 22:24:38.4811 22716 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Noyv9DMKEgYsy5nn78mZ\n- PjF4fB8zZNcVNzFiR9dX\n 2023 \N 200.68.180.78 ac7aa868-dc26-4c6b-8cdf-78100ccbcff0 2019-12-04 22:24:38.50532 22717 1564 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 641\namount: !ruby/object:BigDecimal 18:0.136191E4\ntax: !ruby/object:BigDecimal 18:0.7609E2\ndiscount: !ruby/object:BigDecimal 18:0.2157E3\ntotal: !ruby/object:BigDecimal 18:0.12223E4\nstatus: 0\ndate_sale: 2019-12-04\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-802\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 e41dcae6-96c5-423d-8775-743db55cbd80 2019-12-04 22:44:46.920952 22718 1160 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.58.33 e41dcae6-96c5-423d-8775-743db55cbd80 2019-12-04 22:44:46.950259 22719 83 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.58.33 e41dcae6-96c5-423d-8775-743db55cbd80 2019-12-04 22:44:46.975599 22720 1564 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 0b0b6b3d-911c-4605-8256-90d25ebadf62 2019-12-04 22:45:24.043281 22721 2188 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 641\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1564\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-802\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: 000RYK7\ncustomer_account: CLAUDA PAYAN\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-802 187.149.58.33 0b0b6b3d-911c-4605-8256-90d25ebadf62 2019-12-04 22:45:24.063509 22722 2189 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 641\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.12223E4\nmove_type: '1'\nsale_id: 1564\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-802\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: 000RYK7\ncustomer_account: CLAUDA PAYAN\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-802 187.149.58.33 f61c87ee-78c2-4a71-a8f0-f0a6a0bf2138 2019-12-04 22:45:35.747261 22723 332 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-04\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.58.33 ed932246-68d4-46cb-8a80-f078d90a6002 2019-12-04 23:18:00.702164 22724 1419 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 698\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 ed932246-68d4-46cb-8a80-f078d90a6002 2019-12-04 23:18:00.726802 22725 1565 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 641\namount: !ruby/object:BigDecimal 18:0.1098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1098E4\nstatus: 0\ndate_sale: 2019-12-04\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-803\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 e919ab1e-375d-4a5b-99d2-e70f960f2f52 2019-12-04 23:18:24.727958 22726 786 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 15 \N 187.149.58.33 e919ab1e-375d-4a5b-99d2-e70f960f2f52 2019-12-04 23:18:24.756531 22727 1419 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.58.33 e919ab1e-375d-4a5b-99d2-e70f960f2f52 2019-12-04 23:18:24.781339 22728 1565 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 93aa1404-7e1f-4ae5-9a88-b62fd6acd08c 2019-12-04 23:18:43.250127 22729 2190 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 641\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1098E4\nmove_type: '1'\nsale_id: 1565\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-803\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-803 187.149.58.33 93aa1404-7e1f-4ae5-9a88-b62fd6acd08c 2019-12-04 23:18:43.271881 22730 1566 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 641\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-12-04\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-804\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 c2d04f49-49e9-4365-a989-0ab084a3af13 2019-12-04 23:33:40.164291 22731 1411 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 3 \N 187.149.58.33 c2d04f49-49e9-4365-a989-0ab084a3af13 2019-12-04 23:33:40.193837 22732 1566 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 661b7339-5576-438b-9683-db3d106ca508 2019-12-04 23:35:05.658705 22733 2191 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 641\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 1566\ncardnumber: 496\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-804\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-804 187.149.58.33 661b7339-5576-438b-9683-db3d106ca508 2019-12-04 23:35:05.679666 22734 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-04 21:47:29.805050000 Z\n- &1 2019-12-04 22:24:38.470638000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-04 23:48:13.067465352 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945806\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945806\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1011\n- 1012\n 2024 \N 187.149.58.33 004aa033-06c3-452e-a236-5c51cb7562e9 2019-12-04 23:48:13.075775 22735 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PjF4fB8zZNcVNzFiR9dX\n- qAtGbVcWegM1Rhv1Au4d\n 2025 \N 187.149.58.33 004aa033-06c3-452e-a236-5c51cb7562e9 2019-12-04 23:48:13.094733 22736 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-04 22:24:38.470638000 Z\n- &1 2019-12-04 23:48:13.067465000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-05 00:04:57.922758492 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945806\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945806\n mask_addr: 4294967295\nsign_in_count:\n- 1012\n- 1013\n 2026 \N 200.68.180.78 54994859-615a-401f-bf5d-454cf5474603 2019-12-05 00:04:57.930972 22737 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qAtGbVcWegM1Rhv1Au4d\n- Eu8xH5CnTPbVHyzN9K8T\n 2027 \N 200.68.180.78 54994859-615a-401f-bf5d-454cf5474603 2019-12-05 00:04:57.94891 22738 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-12-01 17:58:30.120840000 Z\n- &1 2019-12-02 17:22:59.116485000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-05 00:12:33.816869750 Z\nsign_in_count:\n- 49\n- 50\n 100 \N 187.149.58.33 4d000131-f0ff-4fa5-87b0-cc781381e31b 2019-12-05 00:12:33.822833 22739 26 User \N \N 26 User \N update ---\nunique_session_id:\n- gsu_zzCdHxr7TSQyBsss\n- sCA5u8YaM9_Yar5nFJGU\n 101 \N 187.149.58.33 4d000131-f0ff-4fa5-87b0-cc781381e31b 2019-12-05 00:12:33.83565 22740 2192 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 640\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1462\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.499E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-580 187.149.58.33 3bafe6e4-cd9e-43c5-91dd-0095b7ed82fd 2019-12-05 00:12:52.055534 22741 2193 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 640\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 1462\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-580 187.149.58.33 6268e3a8-97c3-4e59-a5b5-4b00c4490b19 2019-12-05 00:13:06.636836 22742 1462 Sale \N \N 26 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 29ed1d90-eb88-4382-a903-455d8e9ce949 2019-12-05 00:13:08.415658 22743 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-12-04 20:33:00.968173000 Z\n- &1 2019-12-04 21:48:15.649628000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-05 00:18:11.273583620 Z\nsign_in_count:\n- 52\n- 53\n 106 \N 187.149.58.33 2975a9c4-34bf-4925-a2b1-27402dc69965 2019-12-05 00:18:11.279297 22744 25 User \N \N 25 User \N update ---\nunique_session_id:\n- x2jFRLmFxh6CH2j7d6zo\n- 3G4QY4gbzzzhWCUi3NLJ\n 107 \N 187.149.58.33 2975a9c4-34bf-4925-a2b1-27402dc69965 2019-12-05 00:18:11.292264 22745 1567 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 641\namount: !ruby/object:BigDecimal 18:0.1629E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1629E4\nstatus: 0\ndate_sale: 2019-12-04\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-805\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 33c7feca-2f02-4893-b0fc-a7aef72260b1 2019-12-05 00:21:12.706149 22746 1248 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 33c7feca-2f02-4893-b0fc-a7aef72260b1 2019-12-05 00:21:12.731758 22747 1567 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 d73a0ea9-040e-4069-bcc4-5adc5aef9c55 2019-12-05 00:21:50.30564 22748 2194 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 641\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1629E4\nmove_type: '1'\nsale_id: 1567\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-805\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.17E4\nchange: !ruby/object:BigDecimal 18:0.71E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-805 187.149.58.33 d73a0ea9-040e-4069-bcc4-5adc5aef9c55 2019-12-05 00:21:50.330782 22749 1568 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 639\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-12-04\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-149\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 f3ca4f89-b36a-4685-bf7a-ba3be701d48a 2019-12-05 00:30:31.545146 22750 856 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.111.139 f3ca4f89-b36a-4685-bf7a-ba3be701d48a 2019-12-05 00:30:31.569692 22751 1568 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 ec533048-3bf5-4152-b57e-c046cbcd926c 2019-12-05 00:31:11.709202 22752 2195 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 639\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 1568\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-149\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-149 189.186.111.139 ec533048-3bf5-4152-b57e-c046cbcd926c 2019-12-05 00:31:11.730255 22753 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-04 23:48:13.067465000 Z\n- &1 2019-12-05 00:04:57.922758000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-05 00:37:44.114736597 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945806\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945806\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1013\n- 1014\n 2028 \N 187.149.58.33 9262c157-99e4-4cd2-91ef-8777dcebc69c 2019-12-05 00:37:44.144186 22754 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Eu8xH5CnTPbVHyzN9K8T\n- 927jBMhhaBr_QxBZy5fJ\n 2029 \N 187.149.58.33 9262c157-99e4-4cd2-91ef-8777dcebc69c 2019-12-05 00:37:44.174934 22755 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-05 00:04:57.922758000 Z\n- &1 2019-12-05 00:37:44.114736000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-05 00:47:11.372236039 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945806\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945806\n mask_addr: 4294967295\nsign_in_count:\n- 1014\n- 1015\n 2030 \N 200.68.180.78 dc41fe4c-da2c-487c-a9d1-b1a4e3952f33 2019-12-05 00:47:11.382187 22756 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 927jBMhhaBr_QxBZy5fJ\n- W5G-DgVxKB-PDEgb4MKB\n 2031 \N 200.68.180.78 dc41fe4c-da2c-487c-a9d1-b1a4e3952f33 2019-12-05 00:47:11.440388 22757 1569 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 639\namount: !ruby/object:BigDecimal 18:0.1248E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1248E4\nstatus: 0\ndate_sale: 2019-12-04\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-150\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 c64ec7d7-0180-45b5-8165-6d26694ff798 2019-12-05 00:59:37.180278 22758 1286 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 4 \N 189.186.111.139 c64ec7d7-0180-45b5-8165-6d26694ff798 2019-12-05 00:59:37.221223 22759 1396 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.111.139 c64ec7d7-0180-45b5-8165-6d26694ff798 2019-12-05 00:59:37.257899 22760 1569 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 5357966d-6f1d-47f1-aee2-91b32ba2476e 2019-12-05 01:00:23.590679 22761 2196 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 639\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1248E4\nmove_type: '1'\nsale_id: 1569\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-150\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.125E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-150 189.186.111.139 5357966d-6f1d-47f1-aee2-91b32ba2476e 2019-12-05 01:00:23.642105 22762 1570 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 640\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-04\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-613\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 be7a4f79-23b6-49a7-96f7-f7a9267d2c09 2019-12-05 01:28:07.04341 22763 1375 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 be7a4f79-23b6-49a7-96f7-f7a9267d2c09 2019-12-05 01:28:07.073354 22764 1570 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 a0c2b9b2-71f6-4040-bc40-1c2e38a471c6 2019-12-05 01:29:25.247306 22858 1196 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.58.33 0ba3e4fd-b5a4-4700-bf0d-be100c1ed578 2019-12-05 23:49:21.828365 22765 2197 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 640\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 1570\ncardnumber: 7726\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-613\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-613 187.149.58.33 a0c2b9b2-71f6-4040-bc40-1c2e38a471c6 2019-12-05 01:29:25.272398 22766 643 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 639\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.2547E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.724E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1924E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 02b980d5-0400-44b0-8f8c-2f5ef71be229 2019-12-05 02:57:54.569111 22767 639 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 02b980d5-0400-44b0-8f8c-2f5ef71be229 2019-12-05 02:57:54.599088 22768 644 CashOut \N \N 25 User \N create ---\nopen_cash_register_id: 641\nuser_id: 25\namount_in: !ruby/object:BigDecimal 18:0.563629E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.32E4\ncash_fund: !ruby/object:BigDecimal 18:0.911E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4111E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 3e0e5e98-1677-455e-a869-e1fb71aa6c90 2019-12-05 02:59:16.21528 22769 641 OpenCashRegister \N \N 25 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 3e0e5e98-1677-455e-a869-e1fb71aa6c90 2019-12-05 02:59:16.227686 22770 645 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 640\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.1398E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.57E3\nphysical_cash: !ruby/object:BigDecimal 18:0.127E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 cccd3dc7-a11d-4ad3-a818-79e35fdb6a7b 2019-12-05 03:04:57.931945 22771 640 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 cccd3dc7-a11d-4ad3-a818-79e35fdb6a7b 2019-12-05 03:04:57.947774 22772 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-12-03 17:11:08.360280000 Z\n- &1 2019-12-04 17:03:31.772189000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-05 17:03:16.404047198 Z\nsign_in_count:\n- 80\n- 81\n 162 \N 189.186.111.139 c3172d52-3ca0-4751-a742-fd47212a9832 2019-12-05 17:03:16.440654 22773 23 User \N \N 23 User \N update ---\nunique_session_id:\n- qG8y9e7V-Rs6zrjA64WZ\n- HZX7eeVAGjMHALSsmiyL\n 163 \N 189.186.111.139 c3172d52-3ca0-4751-a742-fd47212a9832 2019-12-05 17:03:16.466028 22774 642 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.724E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 724.0 189.186.111.139 5804008a-3470-4309-b8d6-b4bb41e601ab 2019-12-05 17:03:38.17191 22775 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-03 17:14:49.300866000 Z\n- &1 2019-12-04 17:08:56.079993000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-05 17:17:50.394384820 Z\nsign_in_count:\n- 35\n- 36\n 72 \N 187.149.58.33 47c7b582-ea44-4297-941a-30dfbbe291f6 2019-12-05 17:17:50.427382 22776 27 User \N \N 27 User \N update ---\nunique_session_id:\n- CDTVs5VsW18pE16zgs8Q\n- cyjz6CHaH3PJgvmAiNiL\n 73 \N 187.149.58.33 47c7b582-ea44-4297-941a-30dfbbe291f6 2019-12-05 17:17:50.448811 22777 643 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.57E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 570.0 187.149.58.33 33dddb43-47a9-48e8-8a10-cfb30e92258d 2019-12-05 17:18:52.701331 22778 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-05 00:37:44.114736000 Z\n- &1 2019-12-05 00:47:11.372236000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-05 17:43:44.337467347 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945806\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945806\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1015\n- 1016\n 2032 \N 187.149.58.33 346b047b-a167-42fc-bb72-3e98ed00d3e8 2019-12-05 17:43:44.345461 22779 4 User \N \N 4 User \N update ---\nunique_session_id:\n- W5G-DgVxKB-PDEgb4MKB\n- pxDfTzsVS43ySskiNmaX\n 2033 \N 187.149.58.33 346b047b-a167-42fc-bb72-3e98ed00d3e8 2019-12-05 17:43:44.364682 22780 335 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-12-05\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 187.149.58.33 26c9a107-5ae0-436e-af2d-75b3c0c13575 2019-12-05 17:44:44.257824 22781 1297 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 fc8ee5ae-ffa8-4e4d-ae05-7c9f82689b75 2019-12-05 17:45:07.038889 22782 1297 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.58.33 0c15e267-047f-406a-8338-cc5bae14434d 2019-12-05 17:45:36.637912 22783 1394 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 497b417c-d268-4957-98b9-925ff7e2473b 2019-12-05 17:45:48.222141 22784 1394 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.58.33 74d2074a-a461-4910-ad9b-d88d6e12657a 2019-12-05 17:45:50.734057 22785 336 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-12-05\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.58.33 361ce5ca-5cb8-4c4d-bb36-21c8b879d329 2019-12-05 17:45:52.382077 22786 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-11-28 20:11:50.574580000 Z\n- &1 2019-11-28 23:01:18.713157000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-05 17:48:19.914609820 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 51\n- 52\n 105 \N 187.149.58.33 aa146f8c-86df-4a55-9868-917edf43406a 2019-12-05 17:48:19.921708 22787 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 7aWPw5sFYF_eE_zzBoFc\n- nCzbuZSMyeiJRRTJU8Kz\n 106 \N 187.149.58.33 aa146f8c-86df-4a55-9868-917edf43406a 2019-12-05 17:48:19.934572 22788 335 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-05\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 187.149.58.33 2bc9f09a-6400-4467-8d8f-a571134f092e 2019-12-05 17:48:30.751069 22859 1580 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 0403d44f-c736-4196-ab9a-5647efeb65f9 2019-12-05 23:50:13.867439 22789 1420 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 958\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 2bc9f09a-6400-4467-8d8f-a571134f092e 2019-12-05 17:48:30.774557 22790 1035 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.5E1\n 11 \N 187.149.58.33 2bc9f09a-6400-4467-8d8f-a571134f092e 2019-12-05 17:48:30.805936 22791 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-12-04 21:48:15.649628000 Z\n- &1 2019-12-05 00:18:11.273583000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-05 17:48:44.886845518 Z\nsign_in_count:\n- 53\n- 54\n 108 \N 187.149.58.33 7062fd7b-aa26-45b1-861f-3e20319435fa 2019-12-05 17:48:44.892272 22792 25 User \N \N 25 User \N update ---\nunique_session_id:\n- 3G4QY4gbzzzhWCUi3NLJ\n- wLv6mc1xfx48fZNSNzKS\n 109 \N 187.149.58.33 7062fd7b-aa26-45b1-861f-3e20319435fa 2019-12-05 17:48:44.904783 22793 336 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-05\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.58.33 dd7dab29-c416-48e9-8458-40483225f3d9 2019-12-05 17:49:04.245109 22794 1297 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.1E2\n 6 \N 187.149.58.33 dd7dab29-c416-48e9-8458-40483225f3d9 2019-12-05 17:49:04.267244 22795 334 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-05\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.58.33 0e8cdc09-31f3-4b8c-9f4b-0eb9729828ba 2019-12-05 17:49:13.161418 22796 1419 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.58.33 0e8cdc09-31f3-4b8c-9f4b-0eb9729828ba 2019-12-05 17:49:13.185686 22797 333 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-05\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.58.33 079147aa-6746-472d-9973-04b60a10e380 2019-12-05 17:49:20.494148 22798 1419 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.58.33 079147aa-6746-472d-9973-04b60a10e380 2019-12-05 17:49:20.5098 22799 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-11-28 23:01:18.713157000 Z\n- &1 2019-12-05 17:48:19.914609000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-05 17:51:04.814397263 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147111216\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 52\n- 53\n 107 \N 187.149.58.33 f6d3b194-9005-41fe-a9ce-6e751f18d863 2019-12-05 17:51:04.820899 22800 21 User \N \N 21 User \N update ---\nunique_session_id:\n- nCzbuZSMyeiJRRTJU8Kz\n- zZAxXLWzbskAb8yvZUaw\n 108 \N 187.149.58.33 f6d3b194-9005-41fe-a9ce-6e751f18d863 2019-12-05 17:51:04.834939 22801 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-05 00:47:11.372236000 Z\n- &1 2019-12-05 17:43:44.337467000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-05 18:04:02.241865312 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945806\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1016\n- 1017\n 2034 \N 187.149.58.33 ea7b7e9e-4715-436e-83fd-23f72812acba 2019-12-05 18:04:02.248129 22802 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pxDfTzsVS43ySskiNmaX\n- MFfjxYjR5BLV61dM4bD-\n 2035 \N 187.149.58.33 ea7b7e9e-4715-436e-83fd-23f72812acba 2019-12-05 18:04:02.275888 22803 337 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-12-05\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.58.33 45f6a71a-0db4-4bbf-bf4e-b068619d776b 2019-12-05 18:05:49.894157 22804 822 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 2eb9e2a8-7f1e-4fd9-8aa6-e40dca951575 2019-12-05 18:29:58.791155 22805 822 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.58.33 bc0630e9-1360-4a4f-8d2e-e1f913a910e3 2019-12-05 18:30:01.867028 22806 338 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-12-05\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.58.33 7ef76b62-352a-4935-897b-bd88370f33ff 2019-12-05 18:30:03.01996 22807 338 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-05\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.58.33 acdb1993-73f0-4aa9-87af-6ae3bafc3674 2019-12-05 18:30:17.811346 22808 1012 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.9E1\n 4 \N 187.149.58.33 acdb1993-73f0-4aa9-87af-6ae3bafc3674 2019-12-05 18:30:17.828274 22809 337 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-05\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.58.33 dff89cd2-bb41-48e7-a9e1-14bab5e7ca57 2019-12-05 18:30:27.981682 22810 1421 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 912\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 dff89cd2-bb41-48e7-a9e1-14bab5e7ca57 2019-12-05 18:30:28.001031 22811 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-05 17:43:44.337467000 Z\n- &1 2019-12-05 18:04:02.241865000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-05 19:34:36.133658581 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147127177\n mask_addr: 4294967295\nsign_in_count:\n- 1017\n- 1018\n 2036 \N 187.149.89.137 72e204c2-e4b2-418d-a23e-bcb41db67038 2019-12-05 19:34:36.143054 22812 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MFfjxYjR5BLV61dM4bD-\n- Revb_1EWYbh4Vze2KWwF\n 2037 \N 187.149.89.137 72e204c2-e4b2-418d-a23e-bcb41db67038 2019-12-05 19:34:36.167805 22813 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-05 18:04:02.241865000 Z\n- &1 2019-12-05 19:34:36.133658000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-05 19:44:24.540048324 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147127177\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147127177\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1018\n- 1019\n 2038 \N 187.149.58.33 77ca3517-3163-42cd-bf72-624498f6c9a3 2019-12-05 19:44:24.548838 22814 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Revb_1EWYbh4Vze2KWwF\n- BZSud-ovgyrJLaTxbgTb\n 2039 \N 187.149.58.33 77ca3517-3163-42cd-bf72-624498f6c9a3 2019-12-05 19:44:24.594491 44679 1502 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1502'\n is_parent: false\n sku: BLU-1502\n name: BLS-0155\n description: BLUSA TRANSPARENTE NEGRA CON BOTONES DE ESTRELLA THEMOON\n price_base: '308.0'\n price_sale: '799.0'\n img_product: 4F87FCCD-6001-4F3E-838F-4655E67A15DF.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001502'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 20:57:30.831079'\n updated_at: &12 2020-11-03 21:23:01.851848654 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1502'\n sku: BLU-1502\n name: BLS-0155\n description: BLUSA TRANSPARENTE NEGRA CON BOTONES DE ESTRELLA THEMOON\n price_base: '308.00'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 20:57:30.831079'\n updated_at: '2020-11-03 20:57:30.866769'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001502'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1502'\n type: *3\n value: 1502\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1502\n type: *7\n value: BLU-1502\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0155\n type: *8\n value: BLS-0155\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA TRANSPARENTE NEGRA CON BOTONES DE ESTRELLA\n THEMOON\n type: *6\n value: BLUSA TRANSPARENTE NEGRA CON BOTONES DE ESTRELLA THEMOON\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '308.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.308E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 4F87FCCD-6001-4F3E-838F-4655E67A15DF.jpeg\n type: *2\n value: 4F87FCCD-6001-4F3E-838F-4655E67A15DF.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001502'\n type: *2\n value: '0001502'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 20:57:30.831079'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 4F87FCCD-6001-4F3E-838F-4655E67A15DF.jpeg\n 3 El producto BLU-1502 fue modificado. 187.149.136.226 84664373-e3b4-4057-ad28-52ed9d758091 2020-11-03 21:23:01.89934 22815 1571 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 643\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-05\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-614\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 9da82e9b-2b81-4d38-b824-f2ef76638639 2019-12-05 20:30:21.800889 22816 1375 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 9da82e9b-2b81-4d38-b824-f2ef76638639 2019-12-05 20:30:21.829012 22817 1571 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 528c3ca3-365e-42e2-bba5-2d9b2683ccad 2019-12-05 20:31:12.768226 22818 2198 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 643\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 1571\ncardnumber: 9758\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-614\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-614 187.149.58.33 528c3ca3-365e-42e2-bba5-2d9b2683ccad 2019-12-05 20:31:12.791723 22819 2199 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 643\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 1571\ncardnumber: 9758\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-614\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-614 187.149.58.33 7faa8394-3d02-43cf-8dbd-ca0f0a04baa3 2019-12-05 20:31:12.890286 22820 2199 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 643\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1571\ncardnumber: 9758\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-614\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.58.33 a3d6e494-26aa-42f8-a1ff-310a613aa4af 2019-12-05 20:31:18.396429 22821 1572 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 642\namount: !ruby/object:BigDecimal 18:0.1364E4\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1488E4\nstatus: 0\ndate_sale: 2019-12-05\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-151\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 513c7be1-f2a1-4a3d-9259-34540298e2f8 2019-12-05 20:55:29.156061 22822 1223 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.111.139 513c7be1-f2a1-4a3d-9259-34540298e2f8 2019-12-05 20:55:29.18248 22823 1132 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.111.139 513c7be1-f2a1-4a3d-9259-34540298e2f8 2019-12-05 20:55:29.212325 22824 1572 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 d49ebb03-87ba-4ebf-8493-73744913b5c6 2019-12-05 20:56:28.729539 22825 2200 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 642\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1488E4\nmove_type: '1'\nsale_id: 1572\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-151\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-151 189.186.111.139 d49ebb03-87ba-4ebf-8493-73744913b5c6 2019-12-05 20:56:28.75197 22826 644 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.911E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 911.0 187.149.58.33 e0670692-b493-48e9-8651-d30beb7d1191 2019-12-05 21:31:53.741493 22827 1573 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 644\namount: !ruby/object:BigDecimal 18:0.769E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.769E2\ntotal: !ruby/object:BigDecimal 18:0.6921E3\nstatus: 0\ndate_sale: 2019-12-05\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-806\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 24c5dc08-e6ae-4ac9-be00-8a9067bd7c3d 2019-12-05 21:38:53.370324 22828 1062 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.58.33 24c5dc08-e6ae-4ac9-be00-8a9067bd7c3d 2019-12-05 21:38:53.402307 22829 1573 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-806 cancelada. 187.149.58.33 a2f85c83-1ff1-4c83-a8a5-a1a2982c34c9 2019-12-05 21:38:58.986278 22830 1062 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.58.33 a2f85c83-1ff1-4c83-a8a5-a1a2982c34c9 2019-12-05 21:38:59.013378 22831 1574 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 644\namount: !ruby/object:BigDecimal 18:0.769E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.79E2\ntotal: !ruby/object:BigDecimal 18:0.69E3\nstatus: 0\ndate_sale: 2019-12-05\nsaletype: 1\nseller_id: 20\nsale_code: PV1-V-807\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 06d680b7-1d4a-41f2-9799-dd7fb17a39aa 2019-12-05 21:40:15.816844 22832 1062 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.58.33 06d680b7-1d4a-41f2-9799-dd7fb17a39aa 2019-12-05 21:40:15.843214 22833 1574 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 25fff9c6-c6c5-4c7f-913d-ada3bff5f53f 2019-12-05 21:40:20.236613 22834 2201 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 644\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.69E3\nmove_type: '1'\nsale_id: 1574\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-807\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-807 187.149.58.33 25fff9c6-c6c5-4c7f-913d-ada3bff5f53f 2019-12-05 21:40:20.258048 22835 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-05 19:34:36.133658000 Z\n- &1 2019-12-05 19:44:24.540048000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-05 21:40:41.411985617 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147127177\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147127177\n mask_addr: 4294967295\nsign_in_count:\n- 1019\n- 1020\n 2040 \N 187.149.89.137 9c01d24e-7de7-463a-9b8b-0191cf1083b4 2019-12-05 21:40:41.420626 22836 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BZSud-ovgyrJLaTxbgTb\n- qyyZbTCm_xjw125cz9-v\n 2041 \N 187.149.89.137 9c01d24e-7de7-463a-9b8b-0191cf1083b4 2019-12-05 21:40:41.438449 22837 1575 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 643\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-05\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-615\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 5a1c39f7-6a3c-4021-a5ca-c8303a383ad5 2019-12-05 21:54:25.855995 22838 1079 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.58.33 5a1c39f7-6a3c-4021-a5ca-c8303a383ad5 2019-12-05 21:54:25.890592 22839 1575 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 afd62b52-67fc-41de-bda4-38677e1236b5 2019-12-05 21:55:18.948806 22840 2202 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 643\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1575\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-615\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-615 187.149.58.33 afd62b52-67fc-41de-bda4-38677e1236b5 2019-12-05 21:55:18.971074 22841 1576 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 644\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-12-05\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-808\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 1cd89486-0bcc-410f-abb5-cb9da80e3adc 2019-12-05 22:04:34.869324 22842 1241 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 187.149.58.33 1cd89486-0bcc-410f-abb5-cb9da80e3adc 2019-12-05 22:04:34.920865 22843 1576 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 ad0ea544-7cf6-49f4-958b-a5d32d54a09c 2019-12-05 22:05:11.773778 22844 2203 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 644\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 1576\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-808\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: 0000S8O2\ncustomer_account: ANACRI\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-808 187.149.58.33 ad0ea544-7cf6-49f4-958b-a5d32d54a09c 2019-12-05 22:05:11.795904 22845 1577 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 643\namount: !ruby/object:BigDecimal 18:0.1129E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1129E4\nstatus: 0\ndate_sale: 2019-12-05\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-616\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 19d427a8-21fb-4f1f-8d1a-3d4195227bd9 2019-12-05 22:07:23.690961 22846 1088 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.58.33 19d427a8-21fb-4f1f-8d1a-3d4195227bd9 2019-12-05 22:07:23.719789 22847 1577 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 3f7749c6-bd38-4d93-9523-428f878a1136 2019-12-05 22:07:52.758789 22848 2204 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 643\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.1129E4\nmove_type: '1'\nsale_id: 1577\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-616\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: uinivale\ncheck_number: 0000s8o2\ncustomer_account: anacrs\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-616 187.149.58.33 3f7749c6-bd38-4d93-9523-428f878a1136 2019-12-05 22:07:52.779855 22849 1578 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 644\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-05\nsaletype: 1\nseller_id: 20\nsale_code: PV1-V-809\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 ed993ce4-b670-4e7a-b406-be021ce11e13 2019-12-05 22:33:06.611402 22850 1371 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.58.33 ed993ce4-b670-4e7a-b406-be021ce11e13 2019-12-05 22:33:06.637727 22851 1578 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 67006d71-d17d-4da8-903d-059f8212c22f 2019-12-05 22:34:20.847872 22852 2205 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 644\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1578\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-809\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-809 187.149.58.33 67006d71-d17d-4da8-903d-059f8212c22f 2019-12-05 22:34:20.874055 22853 1579 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 642\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2019-12-05\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-152\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 34659d7c-ffff-4770-8c9e-a886452eb5aa 2019-12-05 23:18:05.678899 22854 1392 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.111.139 34659d7c-ffff-4770-8c9e-a886452eb5aa 2019-12-05 23:18:05.707787 22855 1579 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 7eb50c0d-82d3-4397-9741-a4c3613dddb6 2019-12-05 23:18:56.004536 22856 2206 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 642\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.789E3\nmove_type: '1'\nsale_id: 1579\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-152\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-152 189.186.111.139 7eb50c0d-82d3-4397-9741-a4c3613dddb6 2019-12-05 23:18:56.024816 22857 1580 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 644\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2019-12-05\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-810\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 0ba3e4fd-b5a4-4700-bf0d-be100c1ed578 2019-12-05 23:49:21.799242 22860 2207 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 644\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1899E4\nmove_type: '1'\nsale_id: 1580\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-810\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.19E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-810 187.149.58.33 0403d44f-c736-4196-ab9a-5647efeb65f9 2019-12-05 23:50:13.887601 22861 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-05 19:44:24.540048000 Z\n- &1 2019-12-05 21:40:41.411985000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-06 00:02:19.037923539 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147127177\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147127177\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1020\n- 1021\n 2042 \N 187.149.58.33 bfd2f20b-dbb0-4c6d-a902-ee15705c94f3 2019-12-06 00:02:19.047206 22862 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qyyZbTCm_xjw125cz9-v\n- 9rBa4ye1SLbyAdnRYH1E\n 2043 \N 187.149.58.33 bfd2f20b-dbb0-4c6d-a902-ee15705c94f3 2019-12-06 00:02:19.06609 22863 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-05 21:40:41.411985000 Z\n- &1 2019-12-06 00:02:19.037923000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-06 00:06:27.047091276 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147127177\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147127177\n mask_addr: 4294967295\nsign_in_count:\n- 1021\n- 1022\n 2044 \N 187.149.89.137 64acbd92-3f3e-41b9-b248-d5ca3afd9051 2019-12-06 00:06:27.054833 22864 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9rBa4ye1SLbyAdnRYH1E\n- xz2sC1sKry8iBJMDAduw\n 2045 \N 187.149.89.137 64acbd92-3f3e-41b9-b248-d5ca3afd9051 2019-12-06 00:06:27.070671 22865 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-06 00:02:19.037923000 Z\n- &1 2019-12-06 00:06:27.047091000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-06 00:21:58.391901911 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147127177\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147127177\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1022\n- 1023\n 2046 \N 187.149.58.33 23ca843b-8da0-413f-9aaa-7ac28d8a5875 2019-12-06 00:21:58.400465 22866 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xz2sC1sKry8iBJMDAduw\n- bjyxcs4vpq8rDDA4-4Wk\n 2047 \N 187.149.58.33 23ca843b-8da0-413f-9aaa-7ac28d8a5875 2019-12-06 00:21:58.419192 22867 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-06 00:06:27.047091000 Z\n- &1 2019-12-06 00:21:58.391901000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-06 01:20:00.261160064 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147127177\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147127177\n mask_addr: 4294967295\nsign_in_count:\n- 1023\n- 1024\n 2048 \N 187.149.89.137 cf4e5eb2-ea64-4b84-a899-0addfc06bbcd 2019-12-06 01:20:00.274674 22868 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bjyxcs4vpq8rDDA4-4Wk\n- HJ6WWSuXiPaXeSHREJ99\n 2049 \N 187.149.89.137 cf4e5eb2-ea64-4b84-a899-0addfc06bbcd 2019-12-06 01:20:00.301241 22869 1581 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 644\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-12-05\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-811\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 954bdc2b-68fc-483a-bb9d-c09922d866ab 2019-12-06 01:46:17.394838 22870 867 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.58.33 954bdc2b-68fc-483a-bb9d-c09922d866ab 2019-12-06 01:46:17.422895 22871 1581 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 e4e0e7d8-7b9d-4c23-a8b1-a9e36fdf4cf0 2019-12-06 01:49:40.7014 22872 2208 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 644\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 1581\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-811\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-811 187.149.58.33 e4e0e7d8-7b9d-4c23-a8b1-a9e36fdf4cf0 2019-12-06 01:49:40.728465 22873 230 Expense \N \N 25 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 644\nquantity: !ruby/object:BigDecimal 18:0.1E2\nstatus: 1\nobservations: HILOS Y BOTONES\nexpense_date: 2019-12-05\nexpense_code: PV1-E-164\n 1 Egreso por 10.0 registrado 187.149.58.33 908fdff7-b6b1-4b43-b232-e42bf828b192 2019-12-06 02:52:07.739673 22874 4 Purchase \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 908fdff7-b6b1-4b43-b232-e42bf828b192 2019-12-06 02:52:07.754279 22875 2209 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 644\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: 4\nexpense_id: 230\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 908fdff7-b6b1-4b43-b232-e42bf828b192 2019-12-06 02:52:07.772944 22876 646 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 642\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.2277E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.8E3\ncash_fund: !ruby/object:BigDecimal 18:0.713E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1513E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 b165edae-764d-4429-8965-6f91097356ae 2019-12-06 02:52:53.426066 22877 642 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 b165edae-764d-4429-8965-6f91097356ae 2019-12-06 02:52:53.440652 22878 647 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 643\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2727E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.269E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1269E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 9f179a92-d6ff-4ea9-963f-5d4300a36f9f 2019-12-06 03:00:10.873873 22879 643 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 9f179a92-d6ff-4ea9-963f-5d4300a36f9f 2019-12-06 03:00:10.891989 22880 648 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 643\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2727E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.269E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1269E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 785423eb-ad00-49b1-ad72-889d38066ea0 2019-12-06 03:00:10.992135 22881 649 CashOut \N \N 25 User \N create ---\nopen_cash_register_id: 644\nuser_id: 25\namount_in: !ruby/object:BigDecimal 18:0.5186E4\namount_out: !ruby/object:BigDecimal 18:0.1E2\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.44E4\ncash_fund: !ruby/object:BigDecimal 18:0.1088E4\nphysical_cash: !ruby/object:BigDecimal 18:0.5488E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 1e9e7be3-db17-4279-a926-9efcf2b0d72e 2019-12-06 03:00:34.590027 22882 644 OpenCashRegister \N \N 25 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 1e9e7be3-db17-4279-a926-9efcf2b0d72e 2019-12-06 03:00:34.602695 22883 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-06 00:21:58.391901000 Z\n- &1 2019-12-06 01:20:00.261160000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-06 03:12:34.446167010 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147127177\n mask_addr: 4294967295\nsign_in_count:\n- 1024\n- 1025\n 2050 \N 187.149.89.137 a2065a48-c8ce-43af-bbd5-3d3b5bc0c1f5 2019-12-06 03:12:34.458426 22884 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HJ6WWSuXiPaXeSHREJ99\n- XMyk3KMSWX5n1DWDpQ5y\n 2051 \N 187.149.89.137 a2065a48-c8ce-43af-bbd5-3d3b5bc0c1f5 2019-12-06 03:12:34.484928 22885 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-12-04 17:03:31.772189000 Z\n- &1 2019-12-05 17:03:16.404047000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-06 17:02:15.178612961 Z\nsign_in_count:\n- 81\n- 82\n 164 \N 189.186.111.139 461af954-e3ff-4859-913b-d00aabb3eff5 2019-12-06 17:02:15.214692 22886 23 User \N \N 23 User \N update ---\nunique_session_id:\n- HZX7eeVAGjMHALSsmiyL\n- yxiosdfzrA49WFgzkytj\n 165 \N 189.186.111.139 461af954-e3ff-4859-913b-d00aabb3eff5 2019-12-06 17:02:15.238227 22887 645 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.713E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 713.0 189.186.111.139 8be9229e-3320-458b-89e5-6d654e0782f5 2019-12-06 17:02:48.735217 22888 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-04 17:08:56.079993000 Z\n- &1 2019-12-05 17:17:50.394384000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-06 17:10:29.687722391 Z\nsign_in_count:\n- 36\n- 37\n 74 \N 187.149.58.33 3c72e680-44de-4e12-906b-93848e7a9424 2019-12-06 17:10:29.716239 22889 27 User \N \N 27 User \N update ---\nunique_session_id:\n- cyjz6CHaH3PJgvmAiNiL\n- E1bcifDXT--mxqBFeuJE\n 75 \N 187.149.58.33 3c72e680-44de-4e12-906b-93848e7a9424 2019-12-06 17:10:29.736632 22890 646 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.269E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 269.0 187.149.58.33 cf0a1359-69e8-41fa-9d21-64c1f2235f80 2019-12-06 17:11:49.625615 22891 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-06 01:20:00.261160000 Z\n- &1 2019-12-06 03:12:34.446167000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-06 17:23:55.137590761 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147127177\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1025\n- 1026\n 2052 \N 187.149.58.33 9de68f1a-3480-4075-870b-6b545a5b4493 2019-12-06 17:23:55.171047 22892 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XMyk3KMSWX5n1DWDpQ5y\n- PaEox8ymxX-iHsDnRZJP\n 2053 \N 187.149.58.33 9de68f1a-3480-4075-870b-6b545a5b4493 2019-12-06 17:23:55.198626 22893 964 Product \N \N 4 User \N create ---\nsku: BOL-964\nname: 1BLCI19336\ndescription: "Briefcase negro con acordeón\\r\\nEste pequeño briefcase Cloe es todo\n lo que necesitas esta temporada, tiene el tamaño perfecto y la estructura rígida\n que tanto te gusta. Este bolso es una pequeña obra de arte que debe ser tuya."\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170767568'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-964 fue creado. 187.149.58.33 e39d53d5-4a18-48a4-8238-30f31b7da552 2019-12-06 17:36:32.514139 22894 1422 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 964\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 e39d53d5-4a18-48a4-8238-30f31b7da552 2019-12-06 17:36:32.564377 22895 1582 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 646\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-12-06\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-617\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 15cdf579-4a9c-4a18-9f3d-b5271a89aad4 2019-12-06 17:41:42.990054 22896 1165 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.58.33 15cdf579-4a9c-4a18-9f3d-b5271a89aad4 2019-12-06 17:41:43.030639 22897 965 Product \N \N 4 User \N create ---\nsku: BOL-965\nname: 3BLCI19472\ndescription: "Briefcase rosa Y NEGRO de terciopelo\\r\\nBriefcase en terciopelo con\n técnica de capitoneado y construcción semi-rígida. Herraje al frente con detalle\n de material y asa larga de cadena de doble posición."\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170777635'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: BBRT472_ROSA_1_828x1200.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-965 fue creado. 187.149.58.33 0b78d05e-71ff-4bac-b94c-5001098c0778 2019-12-06 17:41:57.708148 22898 1423 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 965\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 0b78d05e-71ff-4bac-b94c-5001098c0778 2019-12-06 17:41:57.753105 22899 1582 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 100f9257-2457-4b0e-9748-1adb811ea354 2019-12-06 17:42:04.726539 22920 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-05 17:48:19.914609000 Z\n- &1 2019-12-05 17:51:04.814397000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-06 21:28:33.291262167 Z\nsign_in_count:\n- 53\n- 54\n 109 \N 187.149.58.33 1d430c43-5ada-4287-b396-bbe902eb9862 2019-12-06 21:28:33.297326 22900 2210 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 646\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 1582\ncardnumber: 1371\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-617\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-617 187.149.58.33 100f9257-2457-4b0e-9748-1adb811ea354 2019-12-06 17:42:04.759574 22901 966 Product \N \N 4 User \N create ---\nsku: BOL-966\nname: 1BLCI19308\ndescription: "Cross Body Cloe 1BLCI193\\r\\nMaterial liso con acabado brillante y técnica\n de abullonado en diagonal. Construcción rígida. Broche con logo de metal al frente."\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170766707'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: BCRL308_TINT_1_300x435.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-966 fue creado. 187.149.58.33 9075e6c0-6b93-44cc-a4b6-7b70022b60ea 2019-12-06 17:48:04.733801 22902 1424 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 966\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 9075e6c0-6b93-44cc-a4b6-7b70022b60ea 2019-12-06 17:48:04.781154 22903 210 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-90\namount: !ruby/object:BigDecimal 18:0.6846E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6846E4\nobservations: ''\npurchase_date: 2019-12-06\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-90 por $ 6846.0 MXN creada. 187.149.58.33 b1a066a6-c655-43d7-8ee8-5232f255073e 2019-12-06 17:54:09.674416 22904 1422 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.58.33 b1a066a6-c655-43d7-8ee8-5232f255073e 2019-12-06 17:54:09.702228 22905 1423 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.58.33 b1a066a6-c655-43d7-8ee8-5232f255073e 2019-12-06 17:54:09.726091 22906 1424 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.58.33 b1a066a6-c655-43d7-8ee8-5232f255073e 2019-12-06 17:54:09.747578 22907 1028 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.58.33 b1a066a6-c655-43d7-8ee8-5232f255073e 2019-12-06 17:54:09.771329 22908 1038 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.58.33 b1a066a6-c655-43d7-8ee8-5232f255073e 2019-12-06 17:54:09.792964 22909 211 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: \npurchase_code: CEN-C-42\namount: !ruby/object:BigDecimal 18:0.10495E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.10495E4\nobservations: ''\npurchase_date: 2019-12-06\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-42 por $ 1049.5 MXN creada. 187.149.58.33 1a0d8299-218d-40b1-8eee-b51bf3060a84 2019-12-06 17:54:57.923924 22910 254 Customer \N \N 27 User \N create ---\nnick_name: BRENDA MARTINEZ ROJO\nphone: "(667) 471-3959"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BRENDA MARTINEZ ROJO fue registrado. 187.149.58.33 6b809636-13a7-4f44-8118-8fa08992022b 2019-12-06 19:46:14.664397 22911 1583 Sale \N \N 27 User \N create ---\ncustomer_id: 254\nuser_id: 27\nopen_cash_register_id: 646\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-12-06\nsaletype: 2\nseller_id: 19\nsale_code: PV2-V-618\nexpiration_date: 2020-01-10\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 e21ad6c3-3403-4cd8-89f6-abf3ae631491 2019-12-06 19:46:36.916011 22912 1289 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.58.33 e21ad6c3-3403-4cd8-89f6-abf3ae631491 2019-12-06 19:46:36.947944 22913 2211 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 646\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.13E3\nmove_type: '1'\nsale_id: 1583\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-618\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.27E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-618 187.149.58.33 b194888d-2c6e-447a-99a5-07310bf9d822 2019-12-06 19:47:01.213498 22914 2211 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 646\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.13E3\nmove_type: '1'\nsale_id: 1583\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-618\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.27E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.58.33 5947760f-7948-4127-9c81-878af3bfa205 2019-12-06 19:47:06.567665 22915 2212 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 646\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 1583\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-618\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-618 187.149.58.33 b81d60be-2d9f-48c6-86ce-5ca9eef3d613 2019-12-06 19:47:17.711586 22916 1583 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 b64c2668-a017-4a45-b124-0b64da8adce5 2019-12-06 19:47:19.257581 22917 964 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '964'\n is_parent: false\n sku: BOL-964\n name: 1BLCI19336\n description: "Briefcase negro con acordeón\\r\\nEste pequeño briefcase Cloe es\n todo lo que necesitas esta temporada, tiene el tamaño perfecto y la estructura\n rígida que tanto te gusta. Este bolso es una pequeña obra de arte que debe\n ser tuya."\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: BBRL336_NEGR_1_300x435.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170767568'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-12-06 17:36:32.500374'\n updated_at: &12 2019-12-06 20:40:14.095413546 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '964'\n sku: BOL-964\n name: 1BLCI19336\n description: "Briefcase negro con acordeón\\r\\nEste pequeño briefcase Cloe\n es todo lo que necesitas esta temporada, tiene el tamaño perfecto y la\n estructura rígida que tanto te gusta. Este bolso es una pequeña obra de\n arte que debe ser tuya."\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-12-06 17:36:32.500374'\n updated_at: '2019-12-06 17:36:32.500374'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170767568'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '964'\n type: *3\n value: 964\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-964\n type: *7\n value: BOL-964\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCI19336\n type: *8\n value: 1BLCI19336\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "Briefcase negro con acordeón\\r\\nEste pequeño\n briefcase Cloe es todo lo que necesitas esta temporada, tiene el tamaño\n perfecto y la estructura rígida que tanto te gusta. Este bolso es una\n pequeña obra de arte que debe ser tuya."\n type: *6\n value: "Briefcase negro con acordeón\\r\\nEste pequeño briefcase Cloe es\n todo lo que necesitas esta temporada, tiene el tamaño perfecto y la\n estructura rígida que tanto te gusta. Este bolso es una pequeña obra\n de arte que debe ser tuya."\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BBRL336_NEGR_1_300x435.jpg\n type: *2\n value: BBRL336_NEGR_1_300x435.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170767568'\n type: *2\n value: '7509170767568'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-12-06 17:36:32.500374'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BBRL336_NEGR_1_300x435.jpg\n 2 El producto BOL-964 fue modificado. 187.149.58.33 48447bff-42ae-4043-b3d7-0e286564c521 2019-12-06 20:40:14.147329 22918 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-06 03:12:34.446167000 Z\n- &1 2019-12-06 17:23:55.137590000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-06 21:24:24.454135509 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147127177\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093373\n mask_addr: 4294967295\nsign_in_count:\n- 1026\n- 1027\n 2054 \N 189.186.38.125 304a2513-ed1b-49dd-aadf-72b9b3774d8b 2019-12-06 21:24:24.464431 22919 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PaEox8ymxX-iHsDnRZJP\n- zU5wx_Ao9VpQiuCByJ5u\n 2055 \N 189.186.38.125 304a2513-ed1b-49dd-aadf-72b9b3774d8b 2019-12-06 21:24:24.488049 22922 2213 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 470\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 1183\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CREDITO SAM\n 1 \N 187.149.58.33 70e6187f-90d2-42c0-b390-a4905bf8316b 2019-12-06 21:29:37.314915 22923 1183 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 70e6187f-90d2-42c0-b390-a4905bf8316b 2019-12-06 21:29:37.341197 22924 2213 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 470\n- 645\n 2 movimiento de efectivo por venta con folio PV3-V-54 187.149.58.33 70e6187f-90d2-42c0-b390-a4905bf8316b 2019-12-06 21:29:37.358246 22925 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-12-05 00:18:11.273583000 Z\n- &1 2019-12-05 17:48:44.886845000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-06 22:24:09.385772027 Z\nsign_in_count:\n- 54\n- 55\n 110 \N 187.149.58.33 83368619-abe5-49e4-96c1-546182f533a8 2019-12-06 22:24:09.396286 22926 25 User \N \N 25 User \N update ---\nunique_session_id:\n- wLv6mc1xfx48fZNSNzKS\n- 18dvZr29ce-5yszr-mma\n 111 \N 187.149.58.33 83368619-abe5-49e4-96c1-546182f533a8 2019-12-06 22:24:09.413786 22927 647 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.1088E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1088.0 187.149.58.33 834c97e1-bedc-49ca-9f11-a9fdd6f3908b 2019-12-06 22:26:06.567393 22928 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-06 17:23:55.137590000 Z\n- &1 2019-12-06 21:24:24.454135000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-06 23:54:24.042137379 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093373\n mask_addr: 4294967295\nsign_in_count:\n- 1027\n- 1028\n 2056 \N 189.186.38.125 203fc574-2754-4f20-8a61-b42f0b9b8997 2019-12-06 23:54:24.078163 22929 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zU5wx_Ao9VpQiuCByJ5u\n- e9G1MQd6v1weFCds3ka5\n 2057 \N 189.186.38.125 203fc574-2754-4f20-8a61-b42f0b9b8997 2019-12-06 23:54:24.102101 22930 1584 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 646\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-12-06\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-619\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 a0b6cc0b-1074-473e-96a7-ebac8ddc3161 2019-12-07 00:05:14.377375 22931 1287 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 a0b6cc0b-1074-473e-96a7-ebac8ddc3161 2019-12-07 00:05:14.410246 22932 1584 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 7c4ff2a9-dab5-4e34-b250-69a002531394 2019-12-07 00:07:01.045378 22933 2214 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 646\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.549E3\nmove_type: '1'\nsale_id: 1584\ncardnumber: 5272\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-619\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-619 187.149.58.33 7c4ff2a9-dab5-4e34-b250-69a002531394 2019-12-07 00:07:01.068734 22934 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-06 21:24:24.454135000 Z\n- &1 2019-12-06 23:54:24.042137000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 00:18:01.180143060 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093373\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1028\n- 1029\n 2058 \N 187.149.58.33 562f913e-8249-4065-b193-eb5759999b86 2019-12-07 00:18:01.209892 22935 4 User \N \N 4 User \N update ---\nunique_session_id:\n- e9G1MQd6v1weFCds3ka5\n- uhdvCq2s-7nwr_VWAzeG\n 2059 \N 187.149.58.33 562f913e-8249-4065-b193-eb5759999b86 2019-12-07 00:18:01.233683 22936 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-06 23:54:24.042137000 Z\n- &1 2019-12-07 00:18:01.180143000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 00:23:39.301025695 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093373\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093373\n mask_addr: 4294967295\nsign_in_count:\n- 1029\n- 1030\n 2060 \N 189.186.38.125 0dc18c85-b093-4da7-890b-9ab36a7957ba 2019-12-07 00:23:39.309192 22937 4 User \N \N 4 User \N update ---\nunique_session_id:\n- uhdvCq2s-7nwr_VWAzeG\n- JN79QxpV82gJy3hHN5xy\n 2061 \N 189.186.38.125 0dc18c85-b093-4da7-890b-9ab36a7957ba 2019-12-07 00:23:39.342852 22938 1585 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 646\namount: !ruby/object:BigDecimal 18:0.299E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.299E3\nstatus: 0\ndate_sale: 2019-12-06\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-620\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 b4e8671e-45c0-46e7-a67a-5017315c70a3 2019-12-07 00:54:55.945393 22939 805 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 5 \N 187.149.58.33 b4e8671e-45c0-46e7-a67a-5017315c70a3 2019-12-07 00:54:55.975822 22940 1585 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 b13d7c12-5310-494b-b0bc-45be518157d3 2019-12-07 00:55:00.181833 22941 2215 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 646\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.299E3\nmove_type: '1'\nsale_id: 1585\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-620\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.299E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-620 187.149.58.33 b13d7c12-5310-494b-b0bc-45be518157d3 2019-12-07 00:55:00.215493 22942 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 00:18:01.180143000 Z\n- &1 2019-12-07 00:23:39.301025000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 01:04:26.179585983 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093373\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093373\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1030\n- 1031\n 2062 \N 187.149.58.33 6aefd46e-a878-4c72-b41a-9a64c4fced47 2019-12-07 01:04:26.190544 22943 4 User \N \N 4 User \N update ---\nunique_session_id:\n- JN79QxpV82gJy3hHN5xy\n- sMPt9QHsi6z2Y4x5Whhq\n 2063 \N 187.149.58.33 6aefd46e-a878-4c72-b41a-9a64c4fced47 2019-12-07 01:04:26.213564 23058 1105 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.58.33 87293ac5-a5bc-4744-b022-a7551c7944ae 2019-12-07 23:39:32.781337 22944 1586 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 646\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-06\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-621\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 2a65d170-de96-44b4-8184-6de78cf2d282 2019-12-07 01:08:45.625289 22945 1373 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.58.33 2a65d170-de96-44b4-8184-6de78cf2d282 2019-12-07 01:08:45.654511 22946 1586 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 999e00d3-ffbe-4e2e-8420-97bf0e7c0518 2019-12-07 01:08:52.211493 22947 2216 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 646\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1586\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-621\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-621 187.149.58.33 999e00d3-ffbe-4e2e-8420-97bf0e7c0518 2019-12-07 01:08:52.235755 22948 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 00:23:39.301025000 Z\n- &1 2019-12-07 01:04:26.179585000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 01:09:22.484117804 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093373\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1031\n- 1032\n 2064 \N 187.149.58.33 a26a1a9a-6e91-4132-a887-bf5085228fd0 2019-12-07 01:09:22.495192 22949 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sMPt9QHsi6z2Y4x5Whhq\n- fqT9Vpvqa77CmePLguW7\n 2065 \N 187.149.58.33 a26a1a9a-6e91-4132-a887-bf5085228fd0 2019-12-07 01:09:22.518891 22950 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-09-23 20:44:27.558707000 Z\n- &1 2019-09-27 19:13:01.453015000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 01:09:48.158799584 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 92\n- 93\n 186 \N 187.149.58.33 8f275aa5-e072-4ce2-a448-56620c162d75 2019-12-07 01:09:48.165833 22951 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 9fDxgDfdu9sEjC5ga2vq\n- zTqDTXnbhWBdktxooEyg\n 187 \N 187.149.58.33 8f275aa5-e072-4ce2-a448-56620c162d75 2019-12-07 01:09:48.180149 22952 1587 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 647\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2019-12-06\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-812\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 89c7369b-ade5-4170-af67-21ee9b67b1f9 2019-12-07 01:10:26.831104 22953 1097 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 11 \N 187.149.58.33 89c7369b-ade5-4170-af67-21ee9b67b1f9 2019-12-07 01:10:26.860267 22954 1587 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 bdf9b2b8-22c7-40cc-bbe0-948297b0a297 2019-12-07 01:10:31.740592 22955 2217 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 647\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.729E3\nmove_type: '1'\nsale_id: 1587\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-812\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.729E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-812 187.149.58.33 bdf9b2b8-22c7-40cc-bbe0-948297b0a297 2019-12-07 01:10:31.761921 22956 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-12-05 17:48:44.886845000 Z\n- &1 2019-12-06 22:24:09.385772000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 01:21:51.398858550 Z\nsign_in_count:\n- 55\n- 56\n 112 \N 187.149.58.33 8b8ed125-1f29-4bcb-8aa9-08630e779669 2019-12-07 01:21:51.410135 22957 25 User \N \N 25 User \N update ---\nunique_session_id:\n- 18dvZr29ce-5yszr-mma\n- q_xFskk61KtpWzpx5TG9\n 113 \N 187.149.58.33 8b8ed125-1f29-4bcb-8aa9-08630e779669 2019-12-07 01:21:51.428628 22958 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 01:04:26.179585000 Z\n- &1 2019-12-07 01:09:22.484117000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 02:21:12.095353581 Z\nsign_in_count:\n- 1032\n- 1033\n 2066 \N 187.149.58.33 89a585fe-b749-4253-ac94-124e4bfd277f 2019-12-07 02:21:12.107773 22959 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fqT9Vpvqa77CmePLguW7\n- 7y7K6f7uxjB2HLpsuWnN\n 2067 \N 187.149.58.33 89a585fe-b749-4253-ac94-124e4bfd277f 2019-12-07 02:21:12.133059 22960 1588 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 647\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-12-06\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-813\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 006f1e34-37de-4a87-8850-179005b8cd94 2019-12-07 02:29:39.279174 22961 1299 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.58.33 006f1e34-37de-4a87-8850-179005b8cd94 2019-12-07 02:29:39.309977 22962 1588 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 9fa3919d-97d4-49b2-a8d6-83c0bfe90618 2019-12-07 02:30:10.153624 22963 2218 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 647\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 1588\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-813\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-813 187.149.58.33 9fa3919d-97d4-49b2-a8d6-83c0bfe90618 2019-12-07 02:30:10.175039 22964 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-05 17:17:50.394384000 Z\n- &1 2019-12-06 17:10:29.687722000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 02:58:19.751112092 Z\nsign_in_count:\n- 37\n- 38\n 76 \N 187.149.58.33 18ec11e0-5fc9-41e5-ae9a-b5fc2e263ef4 2019-12-07 02:58:19.757953 22965 27 User \N \N 27 User \N update ---\nunique_session_id:\n- E1bcifDXT--mxqBFeuJE\n- y1Q49dJf1rsCJtEVKM7d\n 77 \N 187.149.58.33 18ec11e0-5fc9-41e5-ae9a-b5fc2e263ef4 2019-12-07 02:58:19.771695 22966 650 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 646\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.3346E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.467E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1667E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 4639e78c-0986-4f35-931b-8938b054f0cd 2019-12-07 03:02:17.175651 22967 646 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 4639e78c-0986-4f35-931b-8938b054f0cd 2019-12-07 03:02:17.212528 22968 651 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 646\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.3346E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.467E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1667E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 1173c89d-3536-423f-ad3e-5eee2288e617 2019-12-07 03:02:17.314836 22969 652 CashOut \N \N 25 User \N create ---\nopen_cash_register_id: 647\nuser_id: 25\namount_in: !ruby/object:BigDecimal 18:0.1728E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.21E4\ncash_fund: !ruby/object:BigDecimal 18:0.716E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2816E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 d0ffd077-1af5-4351-87d9-03b2c779a0eb 2019-12-07 03:05:55.333885 22970 647 OpenCashRegister \N \N 25 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 d0ffd077-1af5-4351-87d9-03b2c779a0eb 2019-12-07 03:05:55.428042 22971 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 01:09:22.484117000 Z\n- &1 2019-12-07 02:21:12.095353000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 03:13:58.965965487 Z\nsign_in_count:\n- 1033\n- 1034\n 2068 \N 187.149.58.33 fd5ac2b7-0daf-4de6-8555-9adffebd6c96 2019-12-07 03:13:58.977898 22972 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7y7K6f7uxjB2HLpsuWnN\n- Yis_ftEt6XQGrV8ocAbK\n 2069 \N 187.149.58.33 fd5ac2b7-0daf-4de6-8555-9adffebd6c96 2019-12-07 03:13:59.001432 22973 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 02:21:12.095353000 Z\n- &1 2019-12-07 03:13:58.965965000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 05:22:05.709680272 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093373\n mask_addr: 4294967295\nsign_in_count:\n- 1034\n- 1035\n 2070 \N 189.186.38.125 c9ad4da6-11ef-4d43-bf10-28914d4fec99 2019-12-07 05:22:05.722706 22974 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Yis_ftEt6XQGrV8ocAbK\n- 7VmKV3wGWFzTG8z9LCja\n 2071 \N 189.186.38.125 c9ad4da6-11ef-4d43-bf10-28914d4fec99 2019-12-07 05:22:05.750081 22975 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-12-05 17:03:16.404047000 Z\n- &1 2019-12-06 17:02:15.178612000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 16:54:28.923477464 Z\nsign_in_count:\n- 82\n- 83\n 166 \N 189.186.111.139 a66bc0bf-9d78-482f-9184-6c17c0e77f10 2019-12-07 16:54:28.960609 22976 23 User \N \N 23 User \N update ---\nunique_session_id:\n- yxiosdfzrA49WFgzkytj\n- 6_rx1Z5fzLxjGWSaS4ux\n 167 \N 189.186.111.139 a66bc0bf-9d78-482f-9184-6c17c0e77f10 2019-12-07 16:54:28.986476 22977 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-29 22:03:02.107813000 Z\n- &1 2019-11-30 18:19:11.890726000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 17:09:33.885317766 Z\nsign_in_count:\n- 393\n- 394\n 791 \N 187.149.58.33 2c0eb536-80ae-491a-90b4-609869862fd0 2019-12-07 17:09:33.893394 22978 2 User \N \N 2 User \N update ---\nunique_session_id:\n- n2Hh3ykhfLNe44Z_jcGV\n- KEsGfVGabVxzLE-TnBhn\n 792 \N 187.149.58.33 2c0eb536-80ae-491a-90b4-609869862fd0 2019-12-07 17:09:33.910423 22979 648 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.716E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 716.0 187.149.58.33 7e4c3325-7ec8-43b7-be39-a8f83abeb1a5 2019-12-07 17:10:19.057809 22980 2219 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 648\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 1485\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-768 187.149.58.33 4fb810c1-3a0c-44e8-96b8-a8b33b2d9575 2019-12-07 17:12:18.968064 22981 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-12-02 17:22:59.116485000 Z\n- &1 2019-12-05 00:12:33.816869000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 17:45:38.257198369 Z\nsign_in_count:\n- 50\n- 51\n 102 \N 187.149.58.33 a60badce-8698-4a22-9248-8bb23f1540ae 2019-12-07 17:45:38.267173 22982 26 User \N \N 26 User \N update ---\nunique_session_id:\n- sCA5u8YaM9_Yar5nFJGU\n- kkgxQQ1wp47xytpYnZon\n 103 \N 187.149.58.33 a60badce-8698-4a22-9248-8bb23f1540ae 2019-12-07 17:45:38.285525 22983 649 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.467E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 467.0 187.149.58.33 ce873acd-6116-4ed8-a2bb-c222f867b9fc 2019-12-07 18:57:42.828286 22984 1589 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 648\namount: !ruby/object:BigDecimal 18:0.739E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.739E3\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-814\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 099232a7-4435-43cf-bccb-e979ac8e65dd 2019-12-07 19:16:41.99271 22985 1242 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 099232a7-4435-43cf-bccb-e979ac8e65dd 2019-12-07 19:16:42.032313 22986 1589 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 cdd98218-ce19-41c0-ac0b-b2f6b24e895b 2019-12-07 19:17:03.75246 22987 2220 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 648\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.739E3\nmove_type: '1'\nsale_id: 1589\ncardnumber: 9770\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-814\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-814 187.149.58.33 cdd98218-ce19-41c0-ac0b-b2f6b24e895b 2019-12-07 19:17:03.777653 22988 1590 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 645\namount: !ruby/object:BigDecimal 18:0.779E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.779E3\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-153\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 2a65ab53-41f1-4801-abbc-bb6ca5496d39 2019-12-07 19:36:44.361217 22989 1391 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.111.139 2a65ab53-41f1-4801-abbc-bb6ca5496d39 2019-12-07 19:36:44.410512 22990 1590 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 28a3adef-035b-4581-bbc6-546f723949a9 2019-12-07 19:36:59.216009 23012 2225 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 648\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.77E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 231\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 409035be-48b8-4361-9acf-917fdf4fc9f3 2019-12-07 21:17:52.459966 22991 2221 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 645\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.779E3\nmove_type: '1'\nsale_id: 1590\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-153\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-153 189.186.111.139 28a3adef-035b-4581-bbc6-546f723949a9 2019-12-07 19:36:59.241459 22992 1591 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 649\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-622\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 8048e947-94a8-46fb-a372-50654e78615d 2019-12-07 20:10:36.076532 22993 1288 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.58.33 8048e947-94a8-46fb-a372-50654e78615d 2019-12-07 20:10:36.115681 22994 1591 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-622 cancelada. 187.149.58.33 3400aee4-243a-4890-8fd4-f49e62be2473 2019-12-07 20:10:54.811748 22995 1288 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 187.149.58.33 3400aee4-243a-4890-8fd4-f49e62be2473 2019-12-07 20:10:54.850444 22996 1592 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 649\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-623\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 d087945c-6e4b-4f04-a616-622abbba5c97 2019-12-07 20:11:19.919713 22997 1288 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.58.33 d087945c-6e4b-4f04-a616-622abbba5c97 2019-12-07 20:11:19.944955 22998 1592 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 19c3d21b-da25-49c0-8f04-8dca769385ae 2019-12-07 20:11:58.093855 22999 2222 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 649\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 1592\ncardnumber: 3507\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-623\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-623 187.149.58.33 19c3d21b-da25-49c0-8f04-8dca769385ae 2019-12-07 20:11:58.119252 23000 1593 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 645\namount: !ruby/object:BigDecimal 18:0.779E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.779E3\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-154\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 2916df43-90b4-4743-ba23-86b425cd7003 2019-12-07 20:19:43.661098 23001 1391 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.111.139 2916df43-90b4-4743-ba23-86b425cd7003 2019-12-07 20:19:43.704158 23002 1593 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 220edbec-4295-42ef-8c2f-0719fe746983 2019-12-07 20:19:49.280757 23003 2223 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 645\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.779E3\nmove_type: '1'\nsale_id: 1593\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-154\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-154 189.186.111.139 220edbec-4295-42ef-8c2f-0719fe746983 2019-12-07 20:19:49.301341 23004 22 Seller \N \N 26 User \N create ---\npointsale_id: 2\nname: KARLA\nlast_name: BELTRAN\nstatus: 1\n 1 El vendedor KARLA BELTRAN fue registrado. 187.149.58.33 dece028a-aebb-4260-87b5-0fbb6e3990ac 2019-12-07 20:29:49.451798 23005 1594 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 649\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-624\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 8d11c26f-d7e5-489d-b33f-97deb8621014 2019-12-07 20:56:53.525808 23006 1287 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 8d11c26f-d7e5-489d-b33f-97deb8621014 2019-12-07 20:56:53.555355 23007 1594 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 8865cf1f-ad51-4201-9ed1-9152d97d988c 2019-12-07 20:57:16.350117 23008 2224 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 649\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 1594\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-624\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.151E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-624 187.149.58.33 8865cf1f-ad51-4201-9ed1-9152d97d988c 2019-12-07 20:57:16.370444 23009 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 03:13:58.965965000 Z\n- &1 2019-12-07 05:22:05.709680000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 21:17:24.056024993 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093373\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093373\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1035\n- 1036\n 2072 \N 187.149.58.33 b45db1d1-ceee-4e28-8562-547ac6998eda 2019-12-07 21:17:24.081183 23010 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7VmKV3wGWFzTG8z9LCja\n- HJqeo5i4Z2Hzjv7yuZxa\n 2073 \N 187.149.58.33 b45db1d1-ceee-4e28-8562-547ac6998eda 2019-12-07 21:17:24.108179 23011 231 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 648\nquantity: !ruby/object:BigDecimal 18:0.77E2\nstatus: 1\nobservations: 'ferreteria yaqui '\nexpense_date: 2019-12-07\nexpense_code: PV1-E-165\n 1 Egreso por 77.0 registrado 187.149.58.33 409035be-48b8-4361-9acf-917fdf4fc9f3 2019-12-07 21:17:52.438245 23035 1598 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 bf4992f6-140b-48bf-9f20-414e7ee7a482 2019-12-07 23:06:24.321496 23059 1603 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 f6a4c905-6e6b-4b35-bdf6-3357c9604171 2019-12-07 23:40:10.137896 23013 1595 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 649\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-625\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 ea0996a3-1fdb-402c-b8e0-c12ea3aca787 2019-12-07 21:27:57.18024 23014 596 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.58.33 ea0996a3-1fdb-402c-b8e0-c12ea3aca787 2019-12-07 21:27:57.207585 23015 1595 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 52f71523-9423-4ebd-badd-908a2b3ef515 2019-12-07 21:28:28.05662 23016 2226 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 649\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1595\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-625\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-625 187.149.58.33 52f71523-9423-4ebd-badd-908a2b3ef515 2019-12-07 21:28:28.078897 23017 2227 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 648\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.11E3\nmove_type: '1'\nsale_id: 1415\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.11E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-739 187.149.58.33 5034c51e-e14f-4cf3-a54a-8ed382a639d9 2019-12-07 22:01:41.875791 23018 1415 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 785758fb-069e-47ae-9535-61f6360da141 2019-12-07 22:01:46.014474 23019 255 Customer \N \N 2 User \N create ---\nnick_name: DIANA NIEBLA KINDER\nphone: "(667) 130-5131"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DIANA NIEBLA KINDER fue registrado. 187.149.58.33 f4ae7b2e-4ebe-4492-8b60-3771507583d0 2019-12-07 22:07:11.465486 23020 256 Customer \N \N 26 User \N create ---\nnick_name: NUBIA COLLANTES\nphone: "(667) 344-4085"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente NUBIA COLLANTES fue registrado. 187.149.58.33 e343e130-81a2-43d5-b684-1881b6a7a393 2019-12-07 22:07:41.352556 23021 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 05:22:05.709680000 Z\n- &1 2019-12-07 21:17:24.056024000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 22:07:49.931667432 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093373\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945706\n mask_addr: 4294967295\nsign_in_count:\n- 1036\n- 1037\n 2074 \N 200.68.179.234 739fa416-6b79-4d18-b625-8bc5e6c9698b 2019-12-07 22:07:49.941277 23022 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HJqeo5i4Z2Hzjv7yuZxa\n- 2UxSXPWSoT2iTe6qS45o\n 2075 \N 200.68.179.234 739fa416-6b79-4d18-b625-8bc5e6c9698b 2019-12-07 22:07:49.95996 23023 255 Customer \N \N 2 User \N update ---\ncredit:\n- false\n- true\ncredit_limit:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E4\n 2 El cliente DIANA NIEBLA KINDER fue registrado. 187.149.58.33 ce1afc25-6aaf-4b1c-ba89-0bba83b0ed16 2019-12-07 22:07:58.79907 23024 1596 Sale \N \N 26 User \N create ---\ncustomer_id: 256\nuser_id: 26\nopen_cash_register_id: 649\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 2\nseller_id: 15\nsale_code: PV2-V-626\nexpiration_date: 2020-01-11\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 6f9403cd-e8cb-4e6f-b363-a5d7a0f63dc8 2019-12-07 22:08:00.698887 23025 1016 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.58.33 6f9403cd-e8cb-4e6f-b363-a5d7a0f63dc8 2019-12-07 22:08:00.731752 23026 2228 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 649\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 1596\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-626\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-626 187.149.58.33 4da7a30f-8cd1-458e-8a78-d6d0b1021515 2019-12-07 22:08:07.554523 23027 1596 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 be174aba-ffa8-413a-9438-aec1dce81bfa 2019-12-07 22:08:09.275667 23028 1597 Sale \N \N 2 User \N create ---\ncustomer_id: 255\nuser_id: 2\nopen_cash_register_id: 648\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-815\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 ae12b2a2-8afd-451d-a853-66052b9e3bc0 2019-12-07 22:08:32.645489 23029 1284 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 ae12b2a2-8afd-451d-a853-66052b9e3bc0 2019-12-07 22:08:32.670862 23030 2229 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 648\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.45E3\nmove_type: '1'\nsale_id: 1597\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.45E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 158e9fd5-b4e6-4d80-a7af-f02ef88ebad7 2019-12-07 22:09:27.531478 23031 1597 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 158e9fd5-b4e6-4d80-a7af-f02ef88ebad7 2019-12-07 22:09:27.554128 23032 2229 CashRegistersMove \N \N 2 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV1-V-815 187.149.58.33 158e9fd5-b4e6-4d80-a7af-f02ef88ebad7 2019-12-07 22:09:27.565555 23033 1598 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 649\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-627\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 3f76064c-ba43-45fe-b124-ad8adf5a70ae 2019-12-07 23:06:17.388208 23034 1287 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.58.33 3f76064c-ba43-45fe-b124-ad8adf5a70ae 2019-12-07 23:06:17.421313 23036 2230 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 649\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 1598\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-627\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.151E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-627 187.149.58.33 bf4992f6-140b-48bf-9f20-414e7ee7a482 2019-12-07 23:06:24.343358 23037 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-11-29 22:50:24.358310000 Z\n- &1 2019-11-30 00:40:17.646502000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 23:19:05.654762941 Z\nsign_in_count:\n- 118\n- 119\n 238 \N 187.149.58.33 a267ab6a-704a-4136-932f-a8ef3d5bb89d 2019-12-07 23:19:05.674453 23038 1 User \N \N 1 User \N update ---\nunique_session_id:\n- fjL-R1aopp9ATg8CSsS1\n- Hp2xw4Zvyff5FsDkSdsy\n 239 \N 187.149.58.33 a267ab6a-704a-4136-932f-a8ef3d5bb89d 2019-12-07 23:19:05.691806 23039 1599 Sale \N \N 2 User \N create ---\ncustomer_id: 5\nuser_id: 2\nopen_cash_register_id: 648\namount: !ruby/object:BigDecimal 18:0.1478E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1478E4\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-816\nexpiration_date: 2020-01-11\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 c22c7fe0-46a2-4577-b8f1-8ee117e9bd14 2019-12-07 23:23:01.80991 23040 1061 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.58.33 c22c7fe0-46a2-4577-b8f1-8ee117e9bd14 2019-12-07 23:23:01.853448 23041 1386 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 c22c7fe0-46a2-4577-b8f1-8ee117e9bd14 2019-12-07 23:23:01.8975 23042 2231 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 648\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1599\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-816\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-816 187.149.58.33 71ff9329-13b5-4c75-8d30-9f9770e2642b 2019-12-07 23:23:11.888407 23043 1599 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 07560700-1ae2-4171-9ac5-408129edee4c 2019-12-07 23:23:13.789694 23044 1600 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 648\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-817\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 0f6f022a-8676-4396-80aa-fd46ec889ace 2019-12-07 23:24:06.508209 23045 1383 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.58.33 0f6f022a-8676-4396-80aa-fd46ec889ace 2019-12-07 23:24:06.534275 23046 1600 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 a4a3440d-e264-4e6a-8430-a9b194153ff0 2019-12-07 23:24:49.755446 23047 2232 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 648\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 1600\ncardnumber: 8158\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-817\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-817 187.149.58.33 a4a3440d-e264-4e6a-8430-a9b194153ff0 2019-12-07 23:24:49.776562 23048 1601 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 648\namount: !ruby/object:BigDecimal 18:0.15E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.15E3\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-818\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 00a84d14-8cdf-483a-9cb3-a99a762fc7a5 2019-12-07 23:26:36.739512 23049 1202 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.58.33 00a84d14-8cdf-483a-9cb3-a99a762fc7a5 2019-12-07 23:26:36.764187 23050 1205 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.58.33 00a84d14-8cdf-483a-9cb3-a99a762fc7a5 2019-12-07 23:26:36.786121 23051 1601 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 8f288cb4-9d11-4485-a916-9ea9bb1a6e46 2019-12-07 23:26:45.679669 23052 2233 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 648\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.15E3\nmove_type: '1'\nsale_id: 1601\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-818\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-818 187.149.58.33 8f288cb4-9d11-4485-a916-9ea9bb1a6e46 2019-12-07 23:26:45.699107 23053 1602 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 648\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-819\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 0f569c01-860d-4a2b-8bb3-b7d524840c34 2019-12-07 23:32:53.361533 23054 1097 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 12 \N 187.149.58.33 0f569c01-860d-4a2b-8bb3-b7d524840c34 2019-12-07 23:32:53.386719 23055 1602 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 27e53db6-d812-4943-81ad-bb7ed767ea0e 2019-12-07 23:33:02.35006 23056 2234 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 648\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.729E3\nmove_type: '1'\nsale_id: 1602\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-819\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.729E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-819 187.149.58.33 27e53db6-d812-4943-81ad-bb7ed767ea0e 2019-12-07 23:33:02.369968 23057 1603 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 648\namount: !ruby/object:BigDecimal 18:0.459E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.459E3\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 1\nseller_id: 20\nsale_code: PV1-V-820\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 87293ac5-a5bc-4744-b022-a7551c7944ae 2019-12-07 23:39:32.737395 23060 2235 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 648\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.459E3\nmove_type: '1'\nsale_id: 1603\ncardnumber: 1724\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-820\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-820 187.149.58.33 f6a4c905-6e6b-4b35-bdf6-3357c9604171 2019-12-07 23:40:10.160769 23061 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-12-06 22:24:09.385772000 Z\n- &1 2019-12-07 01:21:51.398858000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 23:43:31.209441840 Z\nsign_in_count:\n- 56\n- 57\n 114 \N 187.149.58.33 7cdd5ab2-20d3-434c-9308-e37d3835e0bc 2019-12-07 23:43:31.218879 23062 25 User \N \N 25 User \N update ---\nunique_session_id:\n- q_xFskk61KtpWzpx5TG9\n- DkC12vA8B38ivoGBaoZH\n 115 \N 187.149.58.33 7cdd5ab2-20d3-434c-9308-e37d3835e0bc 2019-12-07 23:43:31.232214 23063 1604 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 649\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 1\nseller_id: 22\nsale_code: PV2-V-628\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 241ee57c-86a9-4aeb-acab-86c089967f1a 2019-12-07 23:44:47.339634 23064 367 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.31E2\n- !ruby/object:BigDecimal 18:0.3E2\n 26 \N 187.149.58.33 241ee57c-86a9-4aeb-acab-86c089967f1a 2019-12-07 23:44:47.364539 23065 1604 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 aeec9514-3036-4934-b767-6759a8dba41d 2019-12-07 23:44:53.384461 23066 2236 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 649\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 1604\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-628\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E2\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-628 187.149.58.33 aeec9514-3036-4934-b767-6759a8dba41d 2019-12-07 23:44:53.40361 23067 1605 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 648\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 1\nseller_id: 20\nsale_code: PV1-V-821\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 f4cecd7b-ad2d-4716-b91d-46be183f72f7 2019-12-07 23:45:00.370649 23068 1367 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 f4cecd7b-ad2d-4716-b91d-46be183f72f7 2019-12-07 23:45:00.401751 23069 1605 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 521008e8-b22e-4758-a8e2-4b518bd62a42 2019-12-07 23:45:08.771865 23070 2237 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 648\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 1605\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-821\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-821 187.149.58.33 521008e8-b22e-4758-a8e2-4b518bd62a42 2019-12-07 23:45:08.791947 23071 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 01:21:51.398858000 Z\n- &1 2019-12-07 23:43:31.209441000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 23:46:20.323771699 Z\nsign_in_count:\n- 57\n- 58\n 116 \N 187.149.58.33 776cdb5f-a5ad-47f6-b8ae-0e2c49f83a7f 2019-12-07 23:46:20.331914 23072 25 User \N \N 25 User \N update ---\nunique_session_id:\n- DkC12vA8B38ivoGBaoZH\n- THvpRyjNsRDQF1ZJzLXh\n 117 \N 187.149.58.33 776cdb5f-a5ad-47f6-b8ae-0e2c49f83a7f 2019-12-07 23:46:20.347692 23073 1606 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 645\namount: !ruby/object:BigDecimal 18:0.73348E3\ntax: !ruby/object:BigDecimal 18:0.1352E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.747E3\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-155\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 509e07ab-6fd2-4d32-bb70-c10c5743dad0 2019-12-07 23:50:36.481528 23074 838 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.111.139 509e07ab-6fd2-4d32-bb70-c10c5743dad0 2019-12-07 23:50:36.505713 23075 818 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.71E2\n- !ruby/object:BigDecimal 18:0.69E2\n 10 \N 189.186.111.139 509e07ab-6fd2-4d32-bb70-c10c5743dad0 2019-12-07 23:50:36.52763 23076 1606 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 57693020-8122-4f9f-82c7-750fd62988f0 2019-12-07 23:51:19.99976 23077 2238 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 645\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.747E3\nmove_type: '1'\nsale_id: 1606\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-155\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-155 189.186.111.139 57693020-8122-4f9f-82c7-750fd62988f0 2019-12-07 23:51:20.02837 23078 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 21:17:24.056024000 Z\n- &1 2019-12-07 22:07:49.931667000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 23:52:20.330900836 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945706\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945706\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1037\n- 1038\n 2076 \N 187.149.58.33 a92c1dbb-b300-4540-b063-c0701ae4fa6a 2019-12-07 23:52:20.343013 23079 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2UxSXPWSoT2iTe6qS45o\n- geHE4vJnLkdyCokpKxVb\n 2077 \N 187.149.58.33 a92c1dbb-b300-4540-b063-c0701ae4fa6a 2019-12-07 23:52:20.364241 23080 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 22:07:49.931667000 Z\n- &1 2019-12-07 23:52:20.330900000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 23:52:39.331157449 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945706\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138502\n mask_addr: 4294967295\nsign_in_count:\n- 1038\n- 1039\n 2078 \N 189.186.214.198 53dad559-652c-48f5-b871-0ff0ac88a0b2 2019-12-07 23:52:39.338291 23081 4 User \N \N 4 User \N update ---\nunique_session_id:\n- geHE4vJnLkdyCokpKxVb\n- XwFiXi67GYqaqED__tss\n 2079 \N 189.186.214.198 53dad559-652c-48f5-b871-0ff0ac88a0b2 2019-12-07 23:52:39.353568 23082 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-12-05 00:12:33.816869000 Z\n- &1 2019-12-07 17:45:38.257198000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-07 23:53:22.701250517 Z\nsign_in_count:\n- 51\n- 52\n 104 \N 187.149.58.33 16b2f3d2-4518-4255-881f-ea3080a994af 2019-12-07 23:53:22.707048 23083 26 User \N \N 26 User \N update ---\nunique_session_id:\n- kkgxQQ1wp47xytpYnZon\n- dtdpiV5q_qJ35tLFy3YB\n 105 \N 187.149.58.33 16b2f3d2-4518-4255-881f-ea3080a994af 2019-12-07 23:53:22.72061 23084 1607 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 648\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 1\nseller_id: 20\nsale_code: PV1-V-821\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 3729c35f-819f-472e-8b30-56f5a864c265 2019-12-07 23:56:41.930151 23085 1382 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.58.33 3729c35f-819f-472e-8b30-56f5a864c265 2019-12-07 23:56:41.956123 23086 1607 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 5ca8bb30-599b-4cf7-b8bc-4871b2775237 2019-12-07 23:57:14.366559 23087 2239 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 648\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 1607\ncardnumber: 9194\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-821\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-821 187.149.58.33 5ca8bb30-599b-4cf7-b8bc-4871b2775237 2019-12-07 23:57:14.38971 23088 1608 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 648\namount: !ruby/object:BigDecimal 18:0.825E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.825E3\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-823\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 94ab9720-7e38-499e-a470-716f3ef1d55c 2019-12-08 00:03:04.410348 23089 1098 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 94ab9720-7e38-499e-a470-716f3ef1d55c 2019-12-08 00:03:04.439533 23090 1608 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 66bb53c9-f456-4ba5-bb36-33e6d1fc82ea 2019-12-08 00:03:42.763251 23091 2240 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 648\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.825E3\nmove_type: '1'\nsale_id: 1608\ncardnumber: 8158\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-823\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-823 187.149.58.33 66bb53c9-f456-4ba5-bb36-33e6d1fc82ea 2019-12-08 00:03:42.786406 23092 1609 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 645\namount: !ruby/object:BigDecimal 18:0.1223E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1223E4\nstatus: 0\ndate_sale: 2019-12-07\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-156\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 86f13138-980a-410f-a501-74776d546896 2019-12-08 01:47:36.211842 23093 848 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 3 \N 189.186.111.139 86f13138-980a-410f-a501-74776d546896 2019-12-08 01:47:36.240415 23094 1352 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.111.139 86f13138-980a-410f-a501-74776d546896 2019-12-08 01:47:36.2644 23095 1355 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.111.139 86f13138-980a-410f-a501-74776d546896 2019-12-08 01:47:36.287817 23096 1609 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 0509b48e-f79a-4bce-8bcc-3a5c9d0dcf95 2019-12-08 01:48:02.187754 23097 2241 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 645\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1223E4\nmove_type: '1'\nsale_id: 1609\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-156\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-156 189.186.111.139 0509b48e-f79a-4bce-8bcc-3a5c9d0dcf95 2019-12-08 01:48:02.235556 23098 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 23:52:20.330900000 Z\n- &1 2019-12-07 23:52:39.331157000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-08 01:49:33.932537600 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138502\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138502\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1039\n- 1040\n 2080 \N 187.149.58.33 855f59c2-a830-44ce-a960-1a785e05df18 2019-12-08 01:49:33.94178 23099 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XwFiXi67GYqaqED__tss\n- VS9aYRbuq8dKsFhoDgHL\n 2081 \N 187.149.58.33 855f59c2-a830-44ce-a960-1a785e05df18 2019-12-08 01:49:33.960963 23100 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-12-06 17:02:15.178612000 Z\n- &1 2019-12-07 16:54:28.923477000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-08 02:38:34.402090989 Z\nsign_in_count:\n- 83\n- 84\n 168 \N 189.186.111.139 1a254217-7074-453f-961b-ece34ec162a8 2019-12-08 02:38:34.411479 23101 23 User \N \N 23 User \N update ---\nunique_session_id:\n- 6_rx1Z5fzLxjGWSaS4ux\n- WxrtG4TqcM_4vRrrKxN3\n 169 \N 189.186.111.139 1a254217-7074-453f-961b-ece34ec162a8 2019-12-08 02:38:34.430356 23102 1027 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.58.33 b07f3471-e0ee-490f-8cca-8da1dd7cbb65 2019-12-08 02:47:37.147278 23103 1031 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.58.33 5ceadf91-1b25-4b28-a7db-ca7ddfcfd291 2019-12-08 02:47:46.070555 23104 339 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-12-07\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.58.33 2e147874-f440-4225-b626-8b28e6f64156 2019-12-08 02:47:49.438355 23105 232 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 648\nquantity: !ruby/object:BigDecimal 18:0.8E3\nstatus: 1\nobservations: sueldo karla paola\nexpense_date: 2019-12-07\nexpense_code: PV1-E-166\n 1 Egreso por 800.0 registrado 187.149.58.33 db917f9a-1a90-429e-b7a3-0c4461268e72 2019-12-08 02:48:40.725685 23216 1616 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 6cbb3bf9-1de2-4e37-81c5-b3f8d88f473d 2019-12-09 21:34:46.204144 23106 2242 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 648\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 232\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 db917f9a-1a90-429e-b7a3-0c4461268e72 2019-12-08 02:48:40.745418 23107 653 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 645\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.4027E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.16E4\ncash_fund: !ruby/object:BigDecimal 18:0.671E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2271E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 610984df-7c46-44f7-9bf6-cbddee35d4c8 2019-12-08 02:58:13.208145 23108 645 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 610984df-7c46-44f7-9bf6-cbddee35d4c8 2019-12-08 02:58:13.221522 23109 233 Expense \N \N 26 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 649\nquantity: !ruby/object:BigDecimal 18:0.113E4\nstatus: 1\nobservations: PAGO SEMANA KEYLA\nexpense_date: 2019-12-07\nexpense_code: PV2-E-52\n 1 Egreso por 1130.0 registrado 187.149.58.33 906fab74-2295-4b33-b135-fbe2a383057b 2019-12-08 02:58:48.614389 23110 2243 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 649\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.113E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 233\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 906fab74-2295-4b33-b135-fbe2a383057b 2019-12-08 02:58:48.633521 23111 654 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 648\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.7459E4\namount_out: !ruby/object:BigDecimal 18:0.877E3\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.547E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3047E4\nobservations: 'había de dinero $3327 y agarre $280 de aretes vendidos con tarjeta '\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 1d115b13-f7e2-4f55-b6fd-4974b1de8591 2019-12-08 03:02:30.886146 23112 648 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 1d115b13-f7e2-4f55-b6fd-4974b1de8591 2019-12-08 03:02:30.898958 23113 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 23:52:39.331157000 Z\n- &1 2019-12-08 01:49:33.932537000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-08 03:04:55.882405979 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138502\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945702\n mask_addr: 4294967295\nsign_in_count:\n- 1040\n- 1041\n 2082 \N 200.68.179.230 709a5ecf-34a1-4d7d-b270-6352afdf7e5e 2019-12-08 03:04:55.890899 23114 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VS9aYRbuq8dKsFhoDgHL\n- kFTscJPmPsWB4bRo5SPw\n 2083 \N 200.68.179.230 709a5ecf-34a1-4d7d-b270-6352afdf7e5e 2019-12-08 03:04:55.909996 23115 655 CashOut \N \N 26 User \N create ---\nopen_cash_register_id: 649\nuser_id: 26\namount_in: !ruby/object:BigDecimal 18:0.2895E4\namount_out: !ruby/object:BigDecimal 18:0.113E4\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.512E3\ncash_fund: !ruby/object:BigDecimal 18:0.821E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1333E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 35c15424-c9b6-45ca-8d27-3e5de2507569 2019-12-08 03:12:03.945508 23116 649 OpenCashRegister \N \N 26 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 35c15424-c9b6-45ca-8d27-3e5de2507569 2019-12-08 03:12:03.957773 23117 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-08 01:49:33.932537000 Z\n- &1 2019-12-08 03:04:55.882405000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-08 05:30:49.797395542 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938358\n mask_addr: 4294967295\nsign_in_count:\n- 1041\n- 1042\n 2084 \N 200.68.151.54 260ac250-c3e8-44b0-959f-43fb2932e3be 2019-12-08 05:30:49.836266 23118 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kFTscJPmPsWB4bRo5SPw\n- zHyztcqw_X4eXmdKLR7m\n 2085 \N 200.68.151.54 260ac250-c3e8-44b0-959f-43fb2932e3be 2019-12-08 05:30:49.867981 23119 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-06 17:10:29.687722000 Z\n- &1 2019-12-07 02:58:19.751112000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-08 17:08:52.684194153 Z\nsign_in_count:\n- 38\n- 39\n 78 \N 187.149.58.33 1807976f-0f9e-42d0-944c-8c750aaab0c5 2019-12-08 17:08:52.718504 23120 27 User \N \N 27 User \N update ---\nunique_session_id:\n- y1Q49dJf1rsCJtEVKM7d\n- pXS67PxgimVSyyouJKox\n 79 \N 187.149.58.33 1807976f-0f9e-42d0-944c-8c750aaab0c5 2019-12-08 17:08:52.742511 23121 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-11-30 18:19:11.890726000 Z\n- &1 2019-12-07 17:09:33.885317000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-08 17:12:16.760811938 Z\nsign_in_count:\n- 394\n- 395\n 793 \N 187.149.58.33 1437548d-7a9f-41c7-bf5f-86df0e119a52 2019-12-08 17:12:16.765985 23122 2 User \N \N 2 User \N update ---\nunique_session_id:\n- KEsGfVGabVxzLE-TnBhn\n- MZQtBw7uSwy8vMoCJ9SH\n 794 \N 187.149.58.33 1437548d-7a9f-41c7-bf5f-86df0e119a52 2019-12-08 17:12:16.783763 23123 650 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.821E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 821.0 187.149.58.33 d18947f0-71f8-4c65-80ec-9c607b180533 2019-12-08 17:13:29.051924 23124 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-08 03:04:55.882405000 Z\n- &1 2019-12-08 05:30:49.797395000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-08 17:47:25.189482245 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938358\n mask_addr: 4294967295\nsign_in_count:\n- 1042\n- 1043\n 2086 \N 200.68.151.54 17a08efe-2a10-4daa-baf8-09c4a833a211 2019-12-08 17:47:25.19617 23125 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zHyztcqw_X4eXmdKLR7m\n- pUzirS57N_XHfj-bhUn8\n 2087 \N 200.68.151.54 17a08efe-2a10-4daa-baf8-09c4a833a211 2019-12-08 17:47:25.213533 23126 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-08 05:30:49.797395000 Z\n- &1 2019-12-08 17:47:25.189482000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-08 17:57:56.539703223 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 1043\n- 1044\n 2088 \N 189.186.111.139 3146aeae-ee7d-41c7-9905-8a14269c94ab 2019-12-08 17:57:56.546788 23127 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pUzirS57N_XHfj-bhUn8\n- yGCUk9fWsasGoym8KVdS\n 2089 \N 189.186.111.139 3146aeae-ee7d-41c7-9905-8a14269c94ab 2019-12-08 17:57:56.563195 23128 212 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-22\namount: !ruby/object:BigDecimal 18:0.81455E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.81455E4\nobservations: ''\npurchase_date: 2019-12-08\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-22 por $ 8145.5 MXN creada. 189.186.111.139 6604b82a-13de-4d55-896a-dc9c9ae05469 2019-12-08 18:02:54.507797 23129 1035 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.7E1\n 12 \N 189.186.111.139 6604b82a-13de-4d55-896a-dc9c9ae05469 2019-12-08 18:02:54.541817 23130 1425 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 965\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.111.139 6604b82a-13de-4d55-896a-dc9c9ae05469 2019-12-08 18:02:54.591938 23131 1426 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 966\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.111.139 6604b82a-13de-4d55-896a-dc9c9ae05469 2019-12-08 18:02:54.61827 23132 782 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.111.139 6604b82a-13de-4d55-896a-dc9c9ae05469 2019-12-08 18:02:54.644535 23133 1402 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.111.139 6604b82a-13de-4d55-896a-dc9c9ae05469 2019-12-08 18:02:54.665508 23134 953 Product \N \N 4 User \N update ---\nname:\n- 1BCLI19316\n- 1BLCI19316\n 3 El producto BOL-953 fue modificado. 189.186.111.139 d9fe295e-e4c5-4067-a823-8460262f30de 2019-12-08 18:03:28.338094 23135 651 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.547E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 547.0 187.149.58.33 7cfd896c-034f-479d-9626-846ecb9ab80e 2019-12-08 18:18:53.459688 23136 1610 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 651\namount: !ruby/object:BigDecimal 18:0.949E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.949E3\nstatus: 0\ndate_sale: 2019-12-08\nsaletype: 1\nseller_id: 20\nsale_code: PV1-V-824\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 f2302c5f-d428-4e66-b0bd-94519c289477 2019-12-08 18:20:01.301993 23137 1410 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 f2302c5f-d428-4e66-b0bd-94519c289477 2019-12-08 18:20:01.332988 23138 1610 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 48288926-bc34-43d1-87c9-6f42385b3bb3 2019-12-08 18:20:20.197496 23139 2244 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 651\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.949E3\nmove_type: '1'\nsale_id: 1610\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-824\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-824 187.149.58.33 48288926-bc34-43d1-87c9-6f42385b3bb3 2019-12-08 18:20:20.220049 23140 1611 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 650\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-12-08\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-629\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 e576fc91-3427-4c26-9c24-68625a1f0e89 2019-12-08 18:39:49.672563 23141 1138 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 e576fc91-3427-4c26-9c24-68625a1f0e89 2019-12-08 18:39:49.697479 23142 1611 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 fce1777d-91bf-473a-8ab2-d58dafa57abb 2019-12-08 18:40:11.22952 23143 2245 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 650\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 1611\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-629\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-629 187.149.58.33 fce1777d-91bf-473a-8ab2-d58dafa57abb 2019-12-08 18:40:11.248232 23144 2245 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 650\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1611\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-629\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.58.33 2a0ec2ea-09bb-46ae-884f-3c85eb755227 2019-12-08 18:40:17.260328 23145 2246 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 650\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 1611\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-629\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-629 187.149.58.33 8c02d9dc-b051-448a-8aca-ccddb771fcbe 2019-12-08 18:40:23.075124 23146 2246 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 650\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1611\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-629\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.58.33 37d2b479-c6cf-4682-825e-67e47cb6e8ce 2019-12-08 18:40:28.719821 23147 2247 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 650\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 1611\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-629\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.55E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-629 187.149.58.33 ea2d7146-bc29-4fbc-be8e-74cf9dc0a6a6 2019-12-08 18:40:51.82655 23259 916 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.111.139 0f724385-ed4d-48ad-a9f0-3c57c1fc80be 2019-12-10 02:31:30.792214 23260 1622 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 034a54b0-1719-44db-9763-340202064ae6 2019-12-10 02:31:42.989799 23148 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-08 17:47:25.189482000 Z\n- &1 2019-12-08 17:57:56.539703000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-08 19:20:52.154445754 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140707\n mask_addr: 4294967295\nsign_in_count:\n- 1044\n- 1045\n 2090 \N 189.186.223.99 7188e0cd-e0b6-4269-a3fd-b7ee3fc3d60b 2019-12-08 19:20:52.182001 23149 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yGCUk9fWsasGoym8KVdS\n- 4TRLBaHCk-MGxGDEdfVk\n 2091 \N 189.186.223.99 7188e0cd-e0b6-4269-a3fd-b7ee3fc3d60b 2019-12-08 19:20:52.207744 23150 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-08 17:57:56.539703000 Z\n- &1 2019-12-08 19:20:52.154445000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-08 21:27:27.914204659 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140707\n mask_addr: 4294967295\nsign_in_count:\n- 1045\n- 1046\n 2092 \N 189.186.223.99 5eff1971-4ba1-4a9b-9568-ce1539f91209 2019-12-08 21:27:27.92141 23151 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4TRLBaHCk-MGxGDEdfVk\n- 17ZJW1N9jLfiY3WzJciR\n 2093 \N 189.186.223.99 5eff1971-4ba1-4a9b-9568-ce1539f91209 2019-12-08 21:27:27.938316 23152 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-11-29 23:22:31.023256000 Z\n- &1 2019-12-01 02:06:49.103564000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-08 21:56:21.472815857 Z\nsign_in_count:\n- 28\n- 29\n 58 \N 187.149.58.33 653c994b-6edc-44fb-852e-6db1e4a62f81 2019-12-08 21:56:21.478166 23153 24 User \N \N 24 User \N update ---\nunique_session_id:\n- p5tDyoDs9GTce4kC_5_Q\n- 8frGmRLQTLS9PgCk4bps\n 59 \N 187.149.58.33 653c994b-6edc-44fb-852e-6db1e4a62f81 2019-12-08 21:56:21.490333 23154 656 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 651\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.949E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.496E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1496E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 8f8d7ab5-b15c-4ffa-abe5-34db600c9c03 2019-12-08 22:02:08.0093 23155 651 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 8f8d7ab5-b15c-4ffa-abe5-34db600c9c03 2019-12-08 22:02:08.022504 23156 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-08 19:20:52.154445000 Z\n- &1 2019-12-08 21:27:27.914204000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-08 22:04:18.358423186 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140707\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 1046\n- 1047\n 2094 \N 189.186.111.139 0f862e05-0e56-4179-8262-3eabf8d7aafe 2019-12-08 22:04:18.365098 23157 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 17ZJW1N9jLfiY3WzJciR\n- 1WcfgkwXz3PTu_Sng88G\n 2095 \N 189.186.111.139 0f862e05-0e56-4179-8262-3eabf8d7aafe 2019-12-08 22:04:18.380924 23158 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-05 17:51:04.814397000 Z\n- &1 2019-12-06 21:28:33.291262000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-08 22:04:51.976670755 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 54\n- 55\n 111 \N 189.186.111.139 c7adff89-afb4-41f1-978b-84a12bc8114a 2019-12-08 22:04:51.98315 23159 21 User \N \N 21 User \N update ---\nunique_session_id:\n- aPdsesfukE_Zb4VvZL5Z\n- J4VHjLhhF_-HxoksEyRB\n 112 \N 189.186.111.139 c7adff89-afb4-41f1-978b-84a12bc8114a 2019-12-08 22:04:51.995981 23160 657 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 650\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.549E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.37E3\nphysical_cash: !ruby/object:BigDecimal 18:0.137E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 6da79eee-97d6-4ab1-9f34-c8c8ad8e818e 2019-12-08 22:06:50.950087 23161 650 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 6da79eee-97d6-4ab1-9f34-c8c8ad8e818e 2019-12-08 22:06:50.963141 23162 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-08 21:27:27.914204000 Z\n- &1 2019-12-08 22:04:18.358423000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-08 22:15:51.058000258 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140707\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140707\n mask_addr: 4294967295\nsign_in_count:\n- 1047\n- 1048\n 2096 \N 189.186.223.99 06e01a98-83b3-4d69-9dbd-2a053e339116 2019-12-08 22:15:51.065159 23163 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1WcfgkwXz3PTu_Sng88G\n- yAC7zHJGhfZ86gcMAxb3\n 2097 \N 189.186.223.99 06e01a98-83b3-4d69-9dbd-2a053e339116 2019-12-08 22:15:51.08134 23164 339 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-08\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.111.139 381eb2b0-33da-4a85-8142-62d4b95b0cad 2019-12-08 23:38:31.901973 23165 1427 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 716\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.111.139 381eb2b0-33da-4a85-8142-62d4b95b0cad 2019-12-08 23:38:31.924549 23166 1428 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 720\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.111.139 381eb2b0-33da-4a85-8142-62d4b95b0cad 2019-12-08 23:38:31.954281 23167 652 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.671E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 671.0 189.186.111.139 0aa820cb-9c75-4ed9-a5d3-8fefce493624 2019-12-09 00:57:28.471189 23168 658 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 652\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.671E3\nphysical_cash: !ruby/object:BigDecimal 18:0.671E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 f544211e-b3b5-41e2-b464-7650cb2e9347 2019-12-09 00:58:22.767542 23169 652 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 f544211e-b3b5-41e2-b464-7650cb2e9347 2019-12-09 00:58:22.784926 23305 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-12-01 02:06:49.103564000 Z\n- &1 2019-12-08 21:56:21.472815000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 18:37:51.707482615 Z\nsign_in_count:\n- 29\n- 30\n 60 \N 187.149.58.33 cfbaaa76-eade-4f62-885a-7dcdf00a4063 2019-12-10 18:37:51.712894 23170 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-08 22:04:18.358423000 Z\n- &1 2019-12-08 22:15:51.058000000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-09 04:17:26.277272796 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140707\n mask_addr: 4294967295\nsign_in_count:\n- 1048\n- 1049\n 2098 \N 189.186.223.99 ba9cbc37-d9a9-4655-8a34-2fb7a0b18efd 2019-12-09 04:17:26.296402 23171 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yAC7zHJGhfZ86gcMAxb3\n- M5S-S4xoVAJ6YaskrBoH\n 2099 \N 189.186.223.99 ba9cbc37-d9a9-4655-8a34-2fb7a0b18efd 2019-12-09 04:17:26.321483 23172 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-08 22:15:51.058000000 Z\n- &1 2019-12-09 04:17:26.277272000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-09 05:50:45.504848245 Z\nsign_in_count:\n- 1049\n- 1050\n 2100 \N 189.186.223.99 ba654a85-90d8-4d5d-9146-5e13afd87075 2019-12-09 05:50:45.512713 23173 4 User \N \N 4 User \N update ---\nunique_session_id:\n- M5S-S4xoVAJ6YaskrBoH\n- nCSQwy8x7h7XNptVetFD\n 2101 \N 189.186.223.99 ba654a85-90d8-4d5d-9146-5e13afd87075 2019-12-09 05:50:45.533197 23174 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-09 04:17:26.277272000 Z\n- &1 2019-12-09 05:50:45.504848000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-09 16:00:23.968178203 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140707\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084596\n mask_addr: 4294967295\nsign_in_count:\n- 1050\n- 1051\n 2102 \N 189.186.4.52 c24317c3-248a-457c-b250-6661cf720a4d 2019-12-09 16:00:24.009857 23175 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nCSQwy8x7h7XNptVetFD\n- qzb_u_X7NGou5VWxTcwq\n 2103 \N 189.186.4.52 c24317c3-248a-457c-b250-6661cf720a4d 2019-12-09 16:00:24.040208 23176 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 17:09:33.885317000 Z\n- &1 2019-12-08 17:12:16.760811000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-09 16:58:07.872079020 Z\nsign_in_count:\n- 395\n- 396\n 795 \N 187.149.58.33 04a4075d-6597-450b-89e9-804b5eb9229b 2019-12-09 16:58:07.881027 23177 2 User \N \N 2 User \N update ---\nunique_session_id:\n- MZQtBw7uSwy8vMoCJ9SH\n- j1zsyGBHyxxmd3vNfFNK\n 796 \N 187.149.58.33 04a4075d-6597-450b-89e9-804b5eb9229b 2019-12-09 16:58:07.899306 23178 653 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.496E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 496.0 187.149.58.33 526b39e2-fbc6-4183-b102-4e644f370f0e 2019-12-09 17:00:14.633339 23179 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 02:58:19.751112000 Z\n- &1 2019-12-08 17:08:52.684194000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-09 17:02:55.163880067 Z\nsign_in_count:\n- 39\n- 40\n 80 \N 187.149.58.33 d61d4773-d927-41a5-a566-8257e556f245 2019-12-09 17:02:55.172108 23180 27 User \N \N 27 User \N update ---\nunique_session_id:\n- pXS67PxgimVSyyouJKox\n- ow5LCdHEBfwsr39ejtxe\n 81 \N 187.149.58.33 d61d4773-d927-41a5-a566-8257e556f245 2019-12-09 17:02:55.191546 23181 654 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.37E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 370.0 187.149.58.33 60ef8e81-7706-4426-b089-1c7326448796 2019-12-09 17:04:42.965391 23182 1612 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 653\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-825\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 eb4fcc2f-b54d-41d9-9d3f-38f160c36a0b 2019-12-09 17:38:02.899141 23183 808 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 15 \N 187.149.58.33 eb4fcc2f-b54d-41d9-9d3f-38f160c36a0b 2019-12-09 17:38:02.934397 23184 1612 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 4c449bf4-326d-4776-a5bc-67be14f6ec53 2019-12-09 17:38:17.363022 23185 2248 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 653\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1612\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-825\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-825 187.149.58.33 4c449bf4-326d-4776-a5bc-67be14f6ec53 2019-12-09 17:38:17.385417 23186 2249 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 654\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1583\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-618 187.149.58.33 06ad48a9-e8fa-4242-8eb7-f6087ca30711 2019-12-09 17:52:54.682202 23187 1583 Sale \N \N 27 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 fe63ef0e-fd6b-41d9-b29f-fcc247375669 2019-12-09 17:52:56.909126 23188 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-06 21:28:33.291262000 Z\n- &1 2019-12-08 22:04:51.976670000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-09 17:58:10.614984998 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 55\n- 56\n 113 \N 189.186.111.139 bf2e41b6-afdc-4876-a1c7-95ba3bd37ec0 2019-12-09 17:58:10.62541 23189 21 User \N \N 21 User \N update ---\nunique_session_id:\n- J4VHjLhhF_-HxoksEyRB\n- j8uVDjyRePpkfZMkkxfS\n 114 \N 189.186.111.139 bf2e41b6-afdc-4876-a1c7-95ba3bd37ec0 2019-12-09 17:58:10.683172 23190 1613 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 653\namount: !ruby/object:BigDecimal 18:0.689E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.689E3\nstatus: 0\ndate_sale: 2019-12-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-826\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 63968ade-2bd9-44c0-8861-56ccdec5879c 2019-12-09 18:04:04.763514 23191 1161 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.58.33 63968ade-2bd9-44c0-8861-56ccdec5879c 2019-12-09 18:04:04.789931 23192 1613 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 d01b8dd4-4111-4610-af5e-4a00b9724b16 2019-12-09 18:04:13.490148 23193 2250 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 653\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.689E3\nmove_type: '1'\nsale_id: 1613\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-826\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.311E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-826 187.149.58.33 d01b8dd4-4111-4610-af5e-4a00b9724b16 2019-12-09 18:04:13.512184 23194 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-09 05:50:45.504848000 Z\n- &1 2019-12-09 16:00:23.968178000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-09 18:52:25.976883977 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140707\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084596\n mask_addr: 4294967295\nsign_in_count:\n- 1051\n- 1052\n 2104 \N 189.186.4.52 a9b80ab4-e032-433f-b1df-3945a6924cc9 2019-12-09 18:52:25.983693 23195 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qzb_u_X7NGou5VWxTcwq\n- 8Szp3LkgKVWzuePFHMBj\n 2105 \N 189.186.4.52 a9b80ab4-e032-433f-b1df-3945a6924cc9 2019-12-09 18:52:25.999789 23196 1614 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 653\namount: !ruby/object:BigDecimal 18:0.137845E4\ntax: !ruby/object:BigDecimal 18:0.22055E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-12-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-827\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 51f1c1f5-7efd-4633-9748-aaa7dedbe735 2019-12-09 18:53:41.135521 23197 271 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.58.33 51f1c1f5-7efd-4633-9748-aaa7dedbe735 2019-12-09 18:53:41.16215 23198 1614 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 30de10b7-52d4-4705-a772-224c139eae55 2019-12-09 18:54:30.33753 23199 2251 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 653\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 1614\ncardnumber: 9757\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-827\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-827 187.149.58.33 30de10b7-52d4-4705-a772-224c139eae55 2019-12-09 18:54:30.357492 23200 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-09 16:00:23.968178000 Z\n- &1 2019-12-09 18:52:25.976883000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-09 19:43:44.236658206 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084596\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 1052\n- 1053\n 2106 \N 189.186.111.139 343ab6d3-e25b-42c2-a606-4d44d888115d 2019-12-09 19:43:44.243818 23201 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8Szp3LkgKVWzuePFHMBj\n- mZaqg3MZeqVzBCvxm4Gx\n 2107 \N 189.186.111.139 343ab6d3-e25b-42c2-a606-4d44d888115d 2019-12-09 19:43:44.260211 23202 20 ProductsReturn \N \N 2 User \N create ---\nsale_id: 1578\nuser_id: 2\nreturn_code: PV1-D-10\npointsale_id: 1\nnew_amount: !ruby/object:BigDecimal 18:0.1599E4\nreturned_amount: !ruby/object:BigDecimal 18:0.699E3\ndifference_amount: !ruby/object:BigDecimal 18:0.9E3\nis_money_returned: false\n 1 devolución PV1-D-10 creada. 187.149.58.33 3509dddf-d68a-4c25-b634-a04212e7086f 2019-12-09 19:55:33.731593 23203 1371 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.58.33 3509dddf-d68a-4c25-b634-a04212e7086f 2019-12-09 19:55:33.765658 23204 1285 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.58.33 3509dddf-d68a-4c25-b634-a04212e7086f 2019-12-09 19:55:33.794868 23205 2252 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 653\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.9E3\nmove_type: '1'\nsale_id: 1578\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E3\nproducts_return_id: 20\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV1-D-10 187.149.58.33 9175a9c6-26c6-4eb8-92c4-c9600e4f30b8 2019-12-09 19:55:51.56544 23206 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-09 18:52:25.976883000 Z\n- &1 2019-12-09 19:43:44.236658000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-09 20:49:22.292831669 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084596\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084596\n mask_addr: 4294967295\nsign_in_count:\n- 1053\n- 1054\n 2108 \N 189.186.4.52 116c71eb-0eb9-4e03-9a9f-269421a7c950 2019-12-09 20:49:22.301868 23207 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mZaqg3MZeqVzBCvxm4Gx\n- 2FCcwV3o5QPz99mLFKFE\n 2109 \N 189.186.4.52 116c71eb-0eb9-4e03-9a9f-269421a7c950 2019-12-09 20:49:22.322637 23208 655 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.671E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 671.0 189.186.111.139 97017916-a176-4808-81c3-bcf8aa5259bd 2019-12-09 20:53:20.678401 23209 1615 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 655\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-12-09\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-157\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 b7efd773-2c1c-48c8-ad28-99d089d75de3 2019-12-09 20:54:42.912401 23210 1397 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.111.139 b7efd773-2c1c-48c8-ad28-99d089d75de3 2019-12-09 20:54:42.941476 23211 1615 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 ca19977e-af36-4f84-ba55-1b806fa7ba3f 2019-12-09 20:55:46.065441 23212 2253 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 655\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 1615\ncardnumber: 5323\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-157\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-157 189.186.111.139 ca19977e-af36-4f84-ba55-1b806fa7ba3f 2019-12-09 20:55:46.086045 23213 1616 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 653\namount: !ruby/object:BigDecimal 18:0.2348E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2348E4\nstatus: 0\ndate_sale: 2019-12-09\nsaletype: 1\nseller_id: 20\nsale_code: PV1-V-828\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 47ef4617-4b3e-46c2-8b02-f06524506877 2019-12-09 21:34:15.398689 23214 1301 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.58.33 47ef4617-4b3e-46c2-8b02-f06524506877 2019-12-09 21:34:15.426174 23215 1409 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.58.33 47ef4617-4b3e-46c2-8b02-f06524506877 2019-12-09 21:34:15.450493 23217 2254 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 653\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2348E4\nmove_type: '1'\nsale_id: 1616\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-828\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2348E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-828 187.149.58.33 6cbb3bf9-1de2-4e37-81c5-b3f8d88f473d 2019-12-09 21:34:46.230096 23218 2255 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 653\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.138E3\nmove_type: '1'\nsale_id: 1345\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.138E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-709 187.149.58.33 55a9d6e9-32b2-4ef5-b0c8-5f520387fbdc 2019-12-09 21:35:47.072372 23219 1345 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 713ef108-bdb7-412c-8094-b23034eca30d 2019-12-09 21:35:48.485334 23220 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-11-30 00:40:17.646502000 Z\n- &1 2019-12-07 23:19:05.654762000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-09 21:38:16.219274308 Z\nsign_in_count:\n- 119\n- 120\n 240 \N 187.149.58.33 d23891f9-72ae-4e2a-9208-57cd14ad138b 2019-12-09 21:38:16.224846 23221 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Hp2xw4Zvyff5FsDkSdsy\n- K2tci3wvDrZfU_UvUC74\n 241 \N 187.149.58.33 d23891f9-72ae-4e2a-9208-57cd14ad138b 2019-12-09 21:38:16.236493 23222 1616 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-828 cancelada. 187.149.58.33 b6236e03-8769-4475-82ff-412f4ebe69f2 2019-12-09 21:42:03.205473 23223 2254 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 653\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2348E4\nmove_type: '1'\nsale_id: 1616\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-828\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2348E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.58.33 b6236e03-8769-4475-82ff-412f4ebe69f2 2019-12-09 21:42:03.226827 23224 1409 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.58.33 b6236e03-8769-4475-82ff-412f4ebe69f2 2019-12-09 21:42:03.251562 23225 1301 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.58.33 b6236e03-8769-4475-82ff-412f4ebe69f2 2019-12-09 21:42:03.273858 23226 2256 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 637\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2348E4\nmove_type: '1'\nsale_id: 1558\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2348E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 0932b4cd-9842-4d7c-841f-bfb38032707d 2019-12-09 21:43:11.600938 23227 1558 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 0932b4cd-9842-4d7c-841f-bfb38032707d 2019-12-09 21:43:11.624664 23228 2256 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 637\n- 653\n 2 movimiento de efectivo por venta con folio PV1-V-799 187.149.58.33 0932b4cd-9842-4d7c-841f-bfb38032707d 2019-12-09 21:43:11.638996 23229 1617 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 655\namount: !ruby/object:BigDecimal 18:0.3698E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3698E4\nstatus: 0\ndate_sale: 2019-12-09\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-158\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 811dc668-d8bc-4aa4-a575-43694acc7bde 2019-12-09 22:41:56.29612 23230 1426 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.111.139 811dc668-d8bc-4aa4-a575-43694acc7bde 2019-12-09 22:41:56.322739 23231 1035 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 13 \N 189.186.111.139 811dc668-d8bc-4aa4-a575-43694acc7bde 2019-12-09 22:41:56.347531 23232 1617 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 de59d320-0cc8-4efd-a419-2182c61a4a65 2019-12-09 22:42:28.579029 23233 2257 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 655\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3698E4\nmove_type: '1'\nsale_id: 1617\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-158\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E4\nchange: !ruby/object:BigDecimal 18:0.302E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-158 189.186.111.139 de59d320-0cc8-4efd-a419-2182c61a4a65 2019-12-09 22:42:28.599307 23234 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-09 19:43:44.236658000 Z\n- &1 2019-12-09 20:49:22.292831000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-09 22:48:16.975744921 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084596\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084596\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 1054\n- 1055\n 2110 \N 189.186.111.139 fa48c4f5-44bf-4075-b3b7-c5d0faf06fd2 2019-12-09 22:48:17.002002 23235 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2FCcwV3o5QPz99mLFKFE\n- jKFeJWV5xzonx8Yw8dKH\n 2111 \N 189.186.111.139 fa48c4f5-44bf-4075-b3b7-c5d0faf06fd2 2019-12-09 22:48:17.024495 23236 1618 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 655\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-12-09\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-159\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 47f10d58-0b40-4d5e-8df9-191b3aeb15a0 2019-12-09 22:52:44.31708 23237 1152 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.111.139 47f10d58-0b40-4d5e-8df9-191b3aeb15a0 2019-12-09 22:52:44.351975 23238 1618 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 efdcd561-f3ce-47b8-99b6-8ca9626743bd 2019-12-09 22:52:50.907117 23280 661 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 655\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.6164E4\namount_out: !ruby/object:BigDecimal 18:0.1415E4\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.41E4\ncash_fund: !ruby/object:BigDecimal 18:0.571E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4671E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 35c411bc-62bd-4cbd-ad5d-f8c62c27f196 2019-12-10 03:16:48.143477 23239 2258 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 655\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 1618\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-159\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-159 189.186.111.139 efdcd561-f3ce-47b8-99b6-8ca9626743bd 2019-12-09 22:52:50.928828 23240 257 Customer \N \N 2 User \N create ---\nnick_name: SILVIA KARELY RUIZ\nphone: "(667) 501-9104"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente SILVIA KARELY RUIZ fue registrado. 187.149.58.33 c84fbb9b-6edc-42fc-a1f0-8e3e0a586242 2019-12-09 23:14:51.946295 23241 1619 Sale \N \N 2 User \N create ---\ncustomer_id: 257\nuser_id: 2\nopen_cash_register_id: 653\namount: !ruby/object:BigDecimal 18:0.679E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.679E3\nstatus: 0\ndate_sale: 2019-12-09\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-829\nexpiration_date: 2020-01-13\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 a133e724-418f-4ed7-9966-c75e239a8181 2019-12-09 23:15:09.095695 23242 705 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.58.33 a133e724-418f-4ed7-9966-c75e239a8181 2019-12-09 23:15:09.123424 23243 2259 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 653\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 1619\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-829\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-829 187.149.58.33 c115c2ea-7130-4ad6-9159-c92836b31ba9 2019-12-09 23:15:16.791898 23244 1619 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 84376208-373e-496b-a889-82e7eb7d477e 2019-12-09 23:15:18.222551 23245 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-09 20:49:22.292831000 Z\n- &1 2019-12-09 22:48:16.975744000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 00:30:35.376882307 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084596\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1055\n- 1056\n 2112 \N 187.149.58.33 aff174f7-d7d6-4054-a110-0b313ff9af01 2019-12-10 00:30:35.383883 23246 4 User \N \N 4 User \N update ---\nunique_session_id:\n- jKFeJWV5xzonx8Yw8dKH\n- U92MM7x6uj4nuqBj2qpw\n 2113 \N 187.149.58.33 aff174f7-d7d6-4054-a110-0b313ff9af01 2019-12-10 00:30:35.399423 23247 1620 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 653\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-830\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 4734e7e2-ffcf-4d9d-98b0-25d17b0af8f4 2019-12-10 01:13:55.425373 23248 1368 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.58.33 4734e7e2-ffcf-4d9d-98b0-25d17b0af8f4 2019-12-10 01:13:55.453958 23249 1620 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 90554b33-eec5-4c6e-893a-d27c49d1eceb 2019-12-10 01:14:02.138889 23250 2260 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 653\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 1620\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-830\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-830 187.149.58.33 90554b33-eec5-4c6e-893a-d27c49d1eceb 2019-12-10 01:14:02.162274 23251 1621 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 654\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-12-09\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-630\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 28359e9e-26a6-4d26-ad6f-4d3fd85c80d0 2019-12-10 01:18:12.02566 23252 1418 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.58.33 28359e9e-26a6-4d26-ad6f-4d3fd85c80d0 2019-12-10 01:18:12.052424 23253 1621 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 9022cfee-ca97-436a-bbf3-651c7bfac534 2019-12-10 01:18:32.90838 23254 2261 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 654\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 1621\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-630\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-630 187.149.58.33 9022cfee-ca97-436a-bbf3-651c7bfac534 2019-12-10 01:18:32.930297 23255 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-09 22:48:16.975744000 Z\n- &1 2019-12-10 00:30:35.376882000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 02:02:18.511367310 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 1056\n- 1057\n 2114 \N 189.186.111.139 f85daf29-561a-4084-b712-407c5e3ed1be 2019-12-10 02:02:18.542982 23256 4 User \N \N 4 User \N update ---\nunique_session_id:\n- U92MM7x6uj4nuqBj2qpw\n- DW28Pk7QxbwV_NpFPdtK\n 2115 \N 189.186.111.139 f85daf29-561a-4084-b712-407c5e3ed1be 2019-12-10 02:02:18.577697 23257 1622 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 655\namount: !ruby/object:BigDecimal 18:0.1248E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1248E4\nstatus: 0\ndate_sale: 2019-12-09\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-160\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 0f724385-ed4d-48ad-a9f0-3c57c1fc80be 2019-12-10 02:31:30.726838 23258 1396 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.111.139 0f724385-ed4d-48ad-a9f0-3c57c1fc80be 2019-12-10 02:31:30.758158 23261 2262 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 655\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1248E4\nmove_type: '1'\nsale_id: 1622\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-160\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.252E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-160 189.186.111.139 034a54b0-1719-44db-9763-340202064ae6 2019-12-10 02:31:43.012322 23262 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 00:30:35.376882000 Z\n- &1 2019-12-10 02:02:18.511367000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 02:32:27.292732892 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084596\n mask_addr: 4294967295\nsign_in_count:\n- 1057\n- 1058\n 2116 \N 189.186.4.52 bd27960d-9273-404f-9afa-e83dba2b18c2 2019-12-10 02:32:27.300117 23263 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DW28Pk7QxbwV_NpFPdtK\n- s-7y7Z3E9ATfkapJXz7y\n 2117 \N 189.186.4.52 bd27960d-9273-404f-9afa-e83dba2b18c2 2019-12-10 02:32:27.318906 23264 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 23:19:05.654762000 Z\n- &1 2019-12-09 21:38:16.219274000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 02:42:14.831124782 Z\nsign_in_count:\n- 120\n- 121\n 242 \N 187.149.58.33 55634cdf-85c0-4522-b4d7-9a22f41581f8 2019-12-10 02:42:14.843455 23265 1 User \N \N 1 User \N update ---\nunique_session_id:\n- K2tci3wvDrZfU_UvUC74\n- sx3yPe6VVoSeEjTPuJwW\n 243 \N 187.149.58.33 55634cdf-85c0-4522-b4d7-9a22f41581f8 2019-12-10 02:42:14.855423 23266 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 02:02:18.511367000 Z\n- &1 2019-12-10 02:32:27.292732000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 02:53:08.037641944 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084596\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084596\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 1058\n- 1059\n 2118 \N 189.186.111.139 252185e6-1b9e-4082-83bf-59b5c93ce143 2019-12-10 02:53:08.044661 23267 4 User \N \N 4 User \N update ---\nunique_session_id:\n- s-7y7Z3E9ATfkapJXz7y\n- 3Cyb4Z58ox2k8QEAGcpX\n 2119 \N 189.186.111.139 252185e6-1b9e-4082-83bf-59b5c93ce143 2019-12-10 02:53:08.06089 23268 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 02:32:27.292732000 Z\n- &1 2019-12-10 02:53:08.037641000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 02:56:34.685838393 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084596\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084596\n mask_addr: 4294967295\nsign_in_count:\n- 1059\n- 1060\n 2120 \N 189.186.4.52 b1f3ad60-1270-4e14-ab41-f823b6d82b13 2019-12-10 02:56:34.694115 23269 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3Cyb4Z58ox2k8QEAGcpX\n- sCEjEB-XS3XyijdGufky\n 2121 \N 189.186.4.52 b1f3ad60-1270-4e14-ab41-f823b6d82b13 2019-12-10 02:56:34.710874 23270 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 02:53:08.037641000 Z\n- &1 2019-12-10 02:56:34.685838000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 02:56:46.986032577 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084596\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084596\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 1060\n- 1061\n 2122 \N 189.186.111.139 ffc9b6a8-ea20-4840-ab97-a469c9c21ff3 2019-12-10 02:56:46.9938 23271 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sCEjEB-XS3XyijdGufky\n- mbPSE3uTPVvqZ3Pzxgsz\n 2123 \N 189.186.111.139 ffc9b6a8-ea20-4840-ab97-a469c9c21ff3 2019-12-10 02:56:47.009456 23272 234 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 655\nquantity: !ruby/object:BigDecimal 18:0.813E3\nstatus: 1\nobservations: SUELDO MARICRUZ\nexpense_date: 2019-12-09\nexpense_code: PV3-E-16\n 1 Egreso por 813.0 registrado 189.186.111.139 07ef1387-a6cf-4ee0-bb82-114e3bb08a1b 2019-12-10 02:59:44.931193 23273 2263 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 655\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.813E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 234\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.111.139 07ef1387-a6cf-4ee0-bb82-114e3bb08a1b 2019-12-10 02:59:44.952658 23274 235 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 655\nquantity: !ruby/object:BigDecimal 18:0.602E3\nstatus: 1\nobservations: PAGO DE LUZ\nexpense_date: 2019-12-09\nexpense_code: PV3-E-17\n 1 Egreso por 602.0 registrado 189.186.111.139 cdf68e07-9be1-4c70-a753-51578c25ee57 2019-12-10 03:00:11.420247 23275 2264 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 655\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.602E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 235\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.111.139 cdf68e07-9be1-4c70-a753-51578c25ee57 2019-12-10 03:00:11.440855 23276 659 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 654\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.1898E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.768E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2268E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 edc26af6-8b78-4b22-bac5-fdf068f8c915 2019-12-10 03:01:29.201777 23277 654 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 edc26af6-8b78-4b22-bac5-fdf068f8c915 2019-12-10 03:01:29.216232 23278 660 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 653\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.7522E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.54E4\ncash_fund: !ruby/object:BigDecimal 18:0.1019E4\nphysical_cash: !ruby/object:BigDecimal 18:0.6419E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 c6bb378c-5149-4509-b6d3-394194b720cd 2019-12-10 03:02:36.197229 23279 653 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 c6bb378c-5149-4509-b6d3-394194b720cd 2019-12-10 03:02:36.212256 23281 655 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 35c411bc-62bd-4cbd-ad5d-f8c62c27f196 2019-12-10 03:16:48.158472 23306 24 User \N \N 24 User \N update ---\nunique_session_id:\n- 8frGmRLQTLS9PgCk4bps\n- m3HWyzL6oCp-o9musPvx\n 61 \N 187.149.58.33 cfbaaa76-eade-4f62-885a-7dcdf00a4063 2019-12-10 18:37:51.724726 23282 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 02:56:34.685838000 Z\n- &1 2019-12-10 02:56:46.986032000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 05:15:42.650663955 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084596\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084596\n mask_addr: 4294967295\nsign_in_count:\n- 1061\n- 1062\n 2124 \N 189.186.4.52 db988152-d503-4a44-8522-63397ac6807b 2019-12-10 05:15:42.686997 23283 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mbPSE3uTPVvqZ3Pzxgsz\n- xny-J-pp37hY59Lbquqs\n 2125 \N 189.186.4.52 db988152-d503-4a44-8522-63397ac6807b 2019-12-10 05:15:42.717065 23284 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 02:56:46.986032000 Z\n- &1 2019-12-10 05:15:42.650663000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 06:42:27.101742136 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084596\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084596\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\nsign_in_count:\n- 1062\n- 1063\n 2126 \N 189.186.211.119 215ed92e-f214-463c-af54-59d22181b4fd 2019-12-10 06:42:27.130412 23285 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xny-J-pp37hY59Lbquqs\n- eHfFxjLzENsnExUx9NZC\n 2127 \N 189.186.211.119 215ed92e-f214-463c-af54-59d22181b4fd 2019-12-10 06:42:27.161556 23286 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 16:54:28.923477000 Z\n- &1 2019-12-08 02:38:34.402090000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 16:56:11.287554306 Z\nsign_in_count:\n- 84\n- 85\n 170 \N 189.186.111.139 7394e167-0bb4-41bd-b087-816725f685de 2019-12-10 16:56:11.325498 23287 23 User \N \N 23 User \N update ---\nunique_session_id:\n- WxrtG4TqcM_4vRrrKxN3\n- w9Vy1AZTmGsxWJPYFzNh\n 171 \N 189.186.111.139 7394e167-0bb4-41bd-b087-816725f685de 2019-12-10 16:56:11.350034 23288 656 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.571E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 571.0 189.186.111.139 e7cf0afa-8a9d-44b0-9753-444f287e3a61 2019-12-10 17:08:35.324699 23289 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-08 17:08:52.684194000 Z\n- &1 2019-12-09 17:02:55.163880000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 17:10:50.940618870 Z\nsign_in_count:\n- 40\n- 41\n 82 \N 187.149.58.33 900eacc9-7742-4d17-92a7-01bf94e0e011 2019-12-10 17:10:50.946765 23290 27 User \N \N 27 User \N update ---\nunique_session_id:\n- ow5LCdHEBfwsr39ejtxe\n- DXMxfKyaymMFypxoGCEH\n 83 \N 187.149.58.33 900eacc9-7742-4d17-92a7-01bf94e0e011 2019-12-10 17:10:50.959625 23291 657 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.768E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 768.0 187.149.58.33 a5346b1a-2c06-46f2-a205-30d742ba75a6 2019-12-10 17:11:25.645936 23292 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 05:15:42.650663000 Z\n- &1 2019-12-10 06:42:27.101742000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 18:18:43.051200668 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084596\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\nsign_in_count:\n- 1063\n- 1064\n 2128 \N 189.186.211.119 28a8c9e3-6755-464c-928e-a0749b72fe60 2019-12-10 18:18:43.058033 23293 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eHfFxjLzENsnExUx9NZC\n- pTNrCRx3cmFrAsUvyMS9\n 2129 \N 189.186.211.119 28a8c9e3-6755-464c-928e-a0749b72fe60 2019-12-10 18:18:43.075924 23294 1623 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 657\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-10\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-631\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 b94df37b-e09c-412e-a4bc-12fed8f6c407 2019-12-10 18:24:18.417268 23295 806 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 32 \N 187.149.58.33 b94df37b-e09c-412e-a4bc-12fed8f6c407 2019-12-10 18:24:18.456598 23296 1623 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 f190caba-0851-4ff1-a2a6-e8317a30f83c 2019-12-10 18:25:03.168197 23297 2265 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 657\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1623\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-631\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-631 187.149.58.33 f190caba-0851-4ff1-a2a6-e8317a30f83c 2019-12-10 18:25:03.190271 23298 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-08 17:12:16.760811000 Z\n- &1 2019-12-09 16:58:07.872079000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 18:32:12.495514728 Z\nsign_in_count:\n- 396\n- 397\n 797 \N 187.149.58.33 7da7ddc8-9bbe-40a2-ba5e-61120cc96b6d 2019-12-10 18:32:12.512397 23299 2 User \N \N 2 User \N update ---\nunique_session_id:\n- j1zsyGBHyxxmd3vNfFNK\n- 2wUttJfyYg_oywdQAsmG\n 798 \N 187.149.58.33 7da7ddc8-9bbe-40a2-ba5e-61120cc96b6d 2019-12-10 18:32:12.530226 23300 1624 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 657\namount: !ruby/object:BigDecimal 18:0.99E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.99E2\nstatus: 0\ndate_sale: 2019-12-10\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-632\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 80e5524d-eaf9-4ff5-a91a-a17bec556064 2019-12-10 18:32:13.387441 23301 1334 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.58.33 80e5524d-eaf9-4ff5-a91a-a17bec556064 2019-12-10 18:32:13.432541 23302 658 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1019E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1019.0 187.149.58.33 79ba856a-e2a4-48e4-a8b6-2eb6994acdcd 2019-12-10 18:32:37.093633 23303 1624 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 cf154dda-4f2d-462e-9641-7d1f87bb9793 2019-12-10 18:33:17.75339 23304 2266 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 657\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.99E2\nmove_type: '1'\nsale_id: 1624\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-632\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-632 187.149.58.33 cf154dda-4f2d-462e-9641-7d1f87bb9793 2019-12-10 18:33:17.775093 23307 1625 Sale \N \N 24 User \N create ---\ncustomer_id: 3\nuser_id: 24\nopen_cash_register_id: 657\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-12-10\nsaletype: 0\nseller_id: 4\nsale_code: PV2-V-633\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 b12350ed-5bc0-4fef-830d-55cb1d22ee5a 2019-12-10 18:38:50.339308 23308 1084 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.58.33 b12350ed-5bc0-4fef-830d-55cb1d22ee5a 2019-12-10 18:38:50.364704 23309 1626 Sale \N \N 2 User \N create ---\ncustomer_id: 3\nuser_id: 2\nopen_cash_register_id: 658\namount: !ruby/object:BigDecimal 18:0.4366E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4366E4\nstatus: 0\ndate_sale: 2019-12-10\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-831\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 11e265df-70a2-4f3e-a52d-a7380b1be0ca 2019-12-10 18:40:09.5312 23310 1371 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.58.33 11e265df-70a2-4f3e-a52d-a7380b1be0ca 2019-12-10 18:40:09.561248 23311 1367 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 11e265df-70a2-4f3e-a52d-a7380b1be0ca 2019-12-10 18:40:09.584366 23312 1140 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 11e265df-70a2-4f3e-a52d-a7380b1be0ca 2019-12-10 18:40:09.607808 23313 1423 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.58.33 11e265df-70a2-4f3e-a52d-a7380b1be0ca 2019-12-10 18:40:09.63166 23314 2267 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 658\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 1626\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 9c11704a-e227-465b-a8bd-2b6d2828315d 2019-12-10 18:41:36.353264 23315 1626 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 9c11704a-e227-465b-a8bd-2b6d2828315d 2019-12-10 18:41:36.376904 23316 2267 CashRegistersMove \N \N 2 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV1-V-831 187.149.58.33 9c11704a-e227-465b-a8bd-2b6d2828315d 2019-12-10 18:41:36.38783 23317 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 06:42:27.101742000 Z\n- &1 2019-12-10 18:18:43.051200000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 18:45:48.707932135 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946402\n mask_addr: 4294967295\nsign_in_count:\n- 1064\n- 1065\n 2130 \N 200.68.182.162 07da34b0-33e8-4027-9cfc-089b12c6e697 2019-12-10 18:45:48.714244 23318 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pTNrCRx3cmFrAsUvyMS9\n- 7m1gx5U9VLxhTpypix_7\n 2131 \N 200.68.182.162 07da34b0-33e8-4027-9cfc-089b12c6e697 2019-12-10 18:45:48.728822 23319 1627 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 657\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-10\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-633\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 61a8626c-a52c-45db-8b4b-7045ab2dc256 2019-12-10 18:56:20.739067 23320 806 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 33 \N 187.149.58.33 61a8626c-a52c-45db-8b4b-7045ab2dc256 2019-12-10 18:56:20.762835 23321 1627 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 780c45de-675d-4961-94f5-cfd277c43f44 2019-12-10 18:57:13.958679 23322 2268 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 657\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1627\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-633\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-633 187.149.58.33 780c45de-675d-4961-94f5-cfd277c43f44 2019-12-10 18:57:13.978144 23323 1628 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 658\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-12-10\nsaletype: 1\nseller_id: 20\nsale_code: PV1-V-832\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 c39d035b-5372-4a85-b5d0-67f2f2920283 2019-12-10 19:02:22.048767 23324 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 c39d035b-5372-4a85-b5d0-67f2f2920283 2019-12-10 19:02:22.084736 23325 1628 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 2b269aae-b953-46d5-b482-c024d590066f 2019-12-10 19:03:01.735284 23326 2269 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 658\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 1628\ncardnumber: 9899\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-832\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-832 187.149.58.33 2b269aae-b953-46d5-b482-c024d590066f 2019-12-10 19:03:01.75588 23327 1629 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 657\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-12-10\nsaletype: 1\nseller_id: 22\nsale_code: PV2-V-634\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 420765f2-a432-4760-94a2-7594fd096cb5 2019-12-10 19:04:04.612261 23328 804 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.58.33 420765f2-a432-4760-94a2-7594fd096cb5 2019-12-10 19:04:04.638625 23329 1629 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 c2ee305f-800d-4b41-bb00-a863b1ab3314 2019-12-10 19:04:15.759415 23371 1634 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 658\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-833\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 00c8e653-ac87-40d0-a626-bf8180faf2b9 2019-12-10 21:17:27.303939 23330 2270 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 657\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 1629\ncardnumber: 9899\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-634\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-634 187.149.58.33 c2ee305f-800d-4b41-bb00-a863b1ab3314 2019-12-10 19:04:15.77961 23331 2271 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 658\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.429E3\nmove_type: '1'\nsale_id: 1619\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.429E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-829 187.149.58.33 0243d7d0-414f-4d54-a534-8c0ecfff0951 2019-12-10 19:06:24.321832 23332 1619 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 42fca78f-5cc6-4237-98ff-c1e6d08c502c 2019-12-10 19:06:29.167259 23333 236 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 658\nquantity: !ruby/object:BigDecimal 18:0.25E2\nstatus: 1\nobservations: "GARRAFON DE AGUA\\r\\n"\nexpense_date: 2019-12-10\nexpense_code: PV1-E-167\n 1 Egreso por 25.0 registrado 187.149.58.33 f460138f-c739-47d8-bd1f-51bc1a5d44a7 2019-12-10 20:26:31.766379 23334 2272 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 658\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 236\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 f460138f-c739-47d8-bd1f-51bc1a5d44a7 2019-12-10 20:26:31.792512 23335 258 Customer \N \N 27 User \N create ---\nnick_name: MARICRUZ FONSECA GARCIA\nphone: "(667) 152-4868"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARICRUZ FONSECA GARCIA fue registrado. 187.149.58.33 0f107f91-6ab1-4017-899e-aba7bfb137b3 2019-12-10 20:42:41.529633 23336 1630 Sale \N \N 27 User \N create ---\ncustomer_id: 258\nuser_id: 27\nopen_cash_register_id: 657\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-12-10\nsaletype: 1\nseller_id: 22\nsale_code: PV2-V-635\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 4f120746-8dee-4724-ae9d-45c11ebfcbf4 2019-12-10 20:43:38.146367 23337 1418 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.58.33 4f120746-8dee-4724-ae9d-45c11ebfcbf4 2019-12-10 20:43:38.171291 23338 1630 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 ce2d00ce-5401-41e7-b29f-928523bc7e5a 2019-12-10 20:43:43.842094 23339 2273 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 657\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 1630\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-635\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-635 187.149.58.33 ce2d00ce-5401-41e7-b29f-928523bc7e5a 2019-12-10 20:43:43.861675 23340 2273 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 657\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1630\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-635\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.58.33 a7295cba-6ce2-42b8-b64e-5d1726eb97db 2019-12-10 20:44:12.99172 23341 2274 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 657\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 1630\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-635\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-635 187.149.58.33 56c239a9-f056-4c74-b335-7d7197cc189a 2019-12-10 20:44:18.631673 23342 1630 Sale \N \N 27 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-635 cancelada. 187.149.58.33 2efabc33-8293-424e-8cc7-62d3f352b44b 2019-12-10 20:44:48.570759 23343 2274 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 657\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1630\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-635\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.58.33 2efabc33-8293-424e-8cc7-62d3f352b44b 2019-12-10 20:44:48.593596 23344 1418 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 2efabc33-8293-424e-8cc7-62d3f352b44b 2019-12-10 20:44:48.617441 23345 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 17:45:38.257198000 Z\n- &1 2019-12-07 23:53:22.701250000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 20:46:32.731622649 Z\nsign_in_count:\n- 52\n- 53\n 106 \N 187.149.58.33 609c9af4-829c-41ac-9ee0-17648b744349 2019-12-10 20:46:32.737572 23346 26 User \N \N 26 User \N update ---\nunique_session_id:\n- dtdpiV5q_qJ35tLFy3YB\n- Y9srPE7ZcJwy4TXQHQUX\n 107 \N 187.149.58.33 609c9af4-829c-41ac-9ee0-17648b744349 2019-12-10 20:46:32.749964 23347 1631 Sale \N \N 26 User \N create ---\ncustomer_id: 258\nuser_id: 26\nopen_cash_register_id: 657\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-12-10\nsaletype: 1\nseller_id: 22\nsale_code: PV2-V-637\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 ce247a33-cacc-4ea8-83ba-def0e99b7369 2019-12-10 20:47:32.316043 23348 1418 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.58.33 ce247a33-cacc-4ea8-83ba-def0e99b7369 2019-12-10 20:47:32.34061 23349 1631 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 57c811d8-b203-40f4-a595-387fd68276f9 2019-12-10 20:47:36.548313 23372 808 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 16 \N 187.149.58.33 00c8e653-ac87-40d0-a626-bf8180faf2b9 2019-12-10 21:17:27.335878 23373 1634 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 140aaa2e-6561-4436-85f7-f56401c43cb4 2019-12-10 21:17:45.762836 23350 2275 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 657\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 1631\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-637\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-637 187.149.58.33 57c811d8-b203-40f4-a595-387fd68276f9 2019-12-10 20:47:36.569057 23351 1631 Sale \N \N 26 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-637 cancelada. 187.149.58.33 a7de7084-e0ae-48bd-839f-5309b720668b 2019-12-10 20:47:46.329968 23352 2275 CashRegistersMove \N \N 26 User \N destroy ---\nopen_cash_register_id: 657\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1631\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-637\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.58.33 a7de7084-e0ae-48bd-839f-5309b720668b 2019-12-10 20:47:46.358182 23353 1418 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.58.33 a7de7084-e0ae-48bd-839f-5309b720668b 2019-12-10 20:47:46.38897 23354 259 Customer \N \N 26 User \N create ---\nnick_name: MARICRUZ FONSECA GARCIA1\nphone: "(667) 152-4868"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.3E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARICRUZ FONSECA GARCIA1 fue registrado. 187.149.58.33 c893ed1b-2e7d-481b-80bf-6d1eabde1951 2019-12-10 20:48:17.843523 23355 1632 Sale \N \N 26 User \N create ---\ncustomer_id: 259\nuser_id: 26\nopen_cash_register_id: 657\namount: !ruby/object:BigDecimal 18:0.2098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2098E4\nstatus: 0\ndate_sale: 2019-12-10\nsaletype: 2\nseller_id: 22\nsale_code: PV2-V-638\nexpiration_date: 2020-01-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 a3b4f1d7-f59a-4331-8a7a-b48c2c14a4a8 2019-12-10 20:48:54.481915 23356 1418 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.58.33 a3b4f1d7-f59a-4331-8a7a-b48c2c14a4a8 2019-12-10 20:48:54.506611 23357 1084 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.58.33 a3b4f1d7-f59a-4331-8a7a-b48c2c14a4a8 2019-12-10 20:48:54.528508 23358 2276 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 657\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.21E3\nmove_type: '1'\nsale_id: 1632\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-638\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.29E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-638 187.149.58.33 9c9afa18-dd88-4231-9189-5743f9f3ca85 2019-12-10 20:48:59.188677 23359 1632 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 a9a0a1dd-cc2d-4989-ac4e-944288877599 2019-12-10 20:49:03.484914 23360 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 18:18:43.051200000 Z\n- &1 2019-12-10 18:45:48.707932000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 20:53:11.807061205 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946402\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946402\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1065\n- 1066\n 2132 \N 187.149.58.33 b6c0a7dd-7c24-4943-9ffe-fe939c5abfaa 2019-12-10 20:53:11.814927 23361 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7m1gx5U9VLxhTpypix_7\n- P-3grHuQwEHEnYFf8n1r\n 2133 \N 187.149.58.33 b6c0a7dd-7c24-4943-9ffe-fe939c5abfaa 2019-12-10 20:53:11.834846 23362 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-10-10 18:38:08.530107000 Z\n- &1 2019-10-11 22:12:22.232010000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 20:53:30.240547223 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 42\n- 43\n 87 \N 187.149.58.33 ddf79945-2288-4e6a-9325-721c71e2335c 2019-12-10 20:53:30.247703 23363 18 User \N \N 18 User \N update ---\nunique_session_id:\n- wKFfuxy9Kz8Zw9zzKxZ3\n- hYfy_V94CydAzWJLRVaj\n 88 \N 187.149.58.33 ddf79945-2288-4e6a-9325-721c71e2335c 2019-12-10 20:53:30.261531 23364 1151 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 5f4b7cc6-e5a7-43a3-9685-0a99125f05ca 2019-12-10 20:54:14.457616 23365 1151 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.58.33 8d16a98e-ecdc-4bc2-b122-7c72a163e114 2019-12-10 20:54:18.160655 23366 340 Transfer \N \N 18 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-12-10\nuser_id: 18\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.58.33 8aec557a-04cf-4db1-a013-727ba4b96e25 2019-12-10 20:55:15.092124 23367 1633 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 657\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-10\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-636\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 c15e84cf-2179-4b80-af53-9701c5109d75 2019-12-10 21:15:58.885755 23368 806 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 34 \N 187.149.58.33 c15e84cf-2179-4b80-af53-9701c5109d75 2019-12-10 21:15:58.912094 23369 1633 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 48fc8188-0463-4971-ad47-709f9725d79d 2019-12-10 21:16:21.126018 23370 2277 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 657\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1633\ncardnumber: 4991\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-636\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-636 187.149.58.33 48fc8188-0463-4971-ad47-709f9725d79d 2019-12-10 21:16:21.1535 23397 22 ProductsReturn \N \N 27 User \N create ---\nsale_id: 1571\nuser_id: 27\nreturn_code: PV2-D-9\npointsale_id: 2\nnew_amount: !ruby/object:BigDecimal 18:0.799E3\nreturned_amount: !ruby/object:BigDecimal 18:0.899E3\ndifference_amount: !ruby/object:BigDecimal 18:0.0\nis_money_returned: false\n 1 devolución PV2-D-9 creada. 187.149.58.33 4302246c-aa3f-41e7-a0e6-7fe5385de10d 2019-12-10 23:12:49.684739 23374 2278 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 658\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1634\ncardnumber: 4991\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-833\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-833 187.149.58.33 140aaa2e-6561-4436-85f7-f56401c43cb4 2019-12-10 21:17:45.782343 23375 21 ProductsReturn \N \N 2 User \N create ---\nsale_id: 1566\nuser_id: 2\nreturn_code: PV1-D-11\npointsale_id: 1\nnew_amount: !ruby/object:BigDecimal 18:0.1629E4\nreturned_amount: !ruby/object:BigDecimal 18:0.1199E4\ndifference_amount: !ruby/object:BigDecimal 18:0.43E3\nis_money_returned: false\n 1 devolución PV1-D-11 creada. 187.149.58.33 55193363-3a50-4f66-91fe-276812e6a212 2019-12-10 21:32:46.446113 23376 1411 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.11E2\n 4 \N 187.149.58.33 55193363-3a50-4f66-91fe-276812e6a212 2019-12-10 21:32:46.471986 23377 1273 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.58.33 55193363-3a50-4f66-91fe-276812e6a212 2019-12-10 21:32:46.498698 23378 2279 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 658\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.43E3\nmove_type: '1'\nsale_id: 1566\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.43E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 21\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV1-D-11 187.149.58.33 c27ed9a6-a8e1-4c65-b07c-fb1c947246e6 2019-12-10 21:33:05.207796 23379 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 18:45:48.707932000 Z\n- &1 2019-12-10 20:53:11.807061000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 21:52:23.902460236 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946402\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1066\n- 1067\n 2134 \N 187.149.58.33 c30aa9e8-575e-4df4-b00a-066f8fea361c 2019-12-10 21:52:23.90895 23380 4 User \N \N 4 User \N update ---\nunique_session_id:\n- P-3grHuQwEHEnYFf8n1r\n- 1QBNUSE1AigBMoJ9SFGs\n 2135 \N 187.149.58.33 c30aa9e8-575e-4df4-b00a-066f8fea361c 2019-12-10 21:52:23.924676 23381 340 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-10\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.58.33 c6c2d0a2-5848-429c-9a87-be5c0d0980d9 2019-12-10 22:00:49.286953 23382 1155 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.7E1\n 6 \N 187.149.58.33 c6c2d0a2-5848-429c-9a87-be5c0d0980d9 2019-12-10 22:00:49.309726 23383 1635 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 656\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-10\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-161\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 bd88cdb0-100a-499d-9c1b-7104255b8f8a 2019-12-10 22:19:08.114174 23384 926 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.111.139 bd88cdb0-100a-499d-9c1b-7104255b8f8a 2019-12-10 22:19:08.140879 23385 1635 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 3b9f289e-cb4e-4bd0-b6fe-bf71125c6917 2019-12-10 22:19:15.70901 23386 2280 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 656\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1635\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-161\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-161 189.186.111.139 3b9f289e-cb4e-4bd0-b6fe-bf71125c6917 2019-12-10 22:19:15.727613 23387 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-09 17:02:55.163880000 Z\n- &1 2019-12-10 17:10:50.940618000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 22:57:55.849452921 Z\nsign_in_count:\n- 41\n- 42\n 84 \N 187.149.58.33 4d57d362-e901-4b1e-807a-984832aad781 2019-12-10 22:57:55.85529 23388 27 User \N \N 27 User \N update ---\nunique_session_id:\n- DXMxfKyaymMFypxoGCEH\n- "-oQHjpUHRHc--LzSotjQ"\n 85 \N 187.149.58.33 4d57d362-e901-4b1e-807a-984832aad781 2019-12-10 22:57:55.867703 23389 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 20:53:11.807061000 Z\n- &1 2019-12-10 21:52:23.902460000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 23:06:22.930146122 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946402\n mask_addr: 4294967295\nsign_in_count:\n- 1067\n- 1068\n 2136 \N 200.68.182.162 e23c6909-c0a9-4081-b632-3a3d18974f14 2019-12-10 23:06:22.936484 23390 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1QBNUSE1AigBMoJ9SFGs\n- HzfzRNz6Wz6rXC-aGKeM\n 2137 \N 200.68.182.162 e23c6909-c0a9-4081-b632-3a3d18974f14 2019-12-10 23:06:22.95148 23391 1380 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.58.33 88f2c2aa-466c-4dd0-9bf2-af7d94d167f1 2019-12-10 23:09:22.141977 23392 341 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-12-10\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.58.33 29a06599-077a-430a-af41-51d445910a30 2019-12-10 23:09:26.050454 23393 341 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-10\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.58.33 8628c23b-5c53-4463-98c0-cf2b79c6abf2 2019-12-10 23:10:09.581491 23394 1429 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 697\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 8628c23b-5c53-4463-98c0-cf2b79c6abf2 2019-12-10 23:10:09.606555 23395 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 17:10:50.940618000 Z\n- &1 2019-12-10 22:57:55.849452000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 23:11:57.651110969 Z\nsign_in_count:\n- 42\n- 43\n 86 \N 187.149.58.33 1bc15f63-196e-4491-96d2-8541ff32e697 2019-12-10 23:11:57.657977 23396 27 User \N \N 27 User \N update ---\nunique_session_id:\n- "-oQHjpUHRHc--LzSotjQ"\n- UsYZWYF8jeeqEWRQEVBy\n 87 \N 187.149.58.33 1bc15f63-196e-4491-96d2-8541ff32e697 2019-12-10 23:11:57.671877 23398 1375 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.58.33 4302246c-aa3f-41e7-a0e6-7fe5385de10d 2019-12-10 23:12:49.70535 23399 1429 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.58.33 4302246c-aa3f-41e7-a0e6-7fe5385de10d 2019-12-10 23:12:49.725742 23400 1372 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 e8eecbe8-f84e-4eb9-8408-17b4b575c51a 2019-12-10 23:15:18.593073 23401 1372 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 b3d7d4ea-56ca-4eb4-92e0-04e5ca6cf292 2019-12-10 23:15:23.996075 23402 1372 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.58.33 be17e59e-6685-44bf-a812-4d6e5bde9fc0 2019-12-10 23:15:26.152696 23403 342 Transfer \N \N 24 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-12-10\nuser_id: 24\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.58.33 7ba36748-16cb-419b-a790-ae2e37f4ca45 2019-12-10 23:15:27.556864 23404 342 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-10\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.58.33 08674cf2-647f-41db-97e2-0adee71f66b7 2019-12-10 23:15:55.313999 23405 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.58.33 08674cf2-647f-41db-97e2-0adee71f66b7 2019-12-10 23:15:55.330295 23406 1636 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 658\namount: !ruby/object:BigDecimal 18:0.888E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.141E3\ntotal: !ruby/object:BigDecimal 18:0.747E3\nstatus: 0\ndate_sale: 2019-12-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-834\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 c7bb1513-057c-4ba2-a7d6-5e41d308a647 2019-12-10 23:27:35.382344 23407 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.58.33 c7bb1513-057c-4ba2-a7d6-5e41d308a647 2019-12-10 23:27:35.40653 23408 1320 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.58.33 c7bb1513-057c-4ba2-a7d6-5e41d308a647 2019-12-10 23:27:35.431162 23409 1636 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 a593860f-2b34-4b69-87a3-bf239c406260 2019-12-10 23:28:12.616085 23410 2281 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 658\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.747E3\nmove_type: '1'\nsale_id: 1636\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-834\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: 0000SBMX\ncustomer_account: '3641119527692'\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-834 187.149.58.33 a593860f-2b34-4b69-87a3-bf239c406260 2019-12-10 23:28:12.635877 23411 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 21:52:23.902460000 Z\n- &1 2019-12-10 23:06:22.930146000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 23:43:18.525526671 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946402\n mask_addr: 4294967295\nsign_in_count:\n- 1068\n- 1069\n 2138 \N 200.68.182.162 a9ae8206-bd21-4435-9164-4e35cffcf0e0 2019-12-10 23:43:18.53203 23412 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HzfzRNz6Wz6rXC-aGKeM\n- 9_A26QkdAEkvz9QqzvKz\n 2139 \N 200.68.182.162 a9ae8206-bd21-4435-9164-4e35cffcf0e0 2019-12-10 23:43:18.547508 23413 1637 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 658\namount: !ruby/object:BigDecimal 18:0.1629E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1629E4\nstatus: 0\ndate_sale: 2019-12-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-835\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 17d3e1fc-154f-4582-b6d0-6674208ef47c 2019-12-10 23:47:05.100307 23414 1248 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 17d3e1fc-154f-4582-b6d0-6674208ef47c 2019-12-10 23:47:05.128296 23415 1637 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 898f28ce-1670-4f7c-8391-8af7426a4cf3 2019-12-10 23:48:34.667041 23416 2282 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 658\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1629E4\nmove_type: '1'\nsale_id: 1637\ncardnumber: 6572\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-835\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-835 187.149.58.33 898f28ce-1670-4f7c-8391-8af7426a4cf3 2019-12-10 23:48:34.687564 23417 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 23:06:22.930146000 Z\n- &1 2019-12-10 23:43:18.525526000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-10 23:59:35.547176716 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946402\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 1069\n- 1070\n 2140 \N 189.186.111.139 b248985e-1804-4de3-9644-55f5469af9ac 2019-12-10 23:59:35.554373 23418 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9_A26QkdAEkvz9QqzvKz\n- jYusnUayvswsy8wgNJRW\n 2141 \N 189.186.111.139 b248985e-1804-4de3-9644-55f5469af9ac 2019-12-10 23:59:35.571166 23419 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 23:43:18.525526000 Z\n- &1 2019-12-10 23:59:35.547176000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-11 00:00:38.391369714 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946402\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946402\n mask_addr: 4294967295\nsign_in_count:\n- 1070\n- 1071\n 2142 \N 200.68.182.162 7d9a5d27-92e1-4e01-8f46-354e8f13fe39 2019-12-11 00:00:38.399936 23420 4 User \N \N 4 User \N update ---\nunique_session_id:\n- jYusnUayvswsy8wgNJRW\n- xzfiAUw4yJP-N1R4QH9n\n 2143 \N 200.68.182.162 7d9a5d27-92e1-4e01-8f46-354e8f13fe39 2019-12-11 00:00:38.415277 23421 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 23:59:35.547176000 Z\n- &1 2019-12-11 00:00:38.391369000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-11 00:04:45.634986407 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946402\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946402\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 1071\n- 1072\n 2144 \N 189.186.111.139 417c5de7-0693-4ace-97fd-db21797eadd9 2019-12-11 00:04:45.642287 23422 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xzfiAUw4yJP-N1R4QH9n\n- 6aqLizMyfzSDbvKzud5a\n 2145 \N 189.186.111.139 417c5de7-0693-4ace-97fd-db21797eadd9 2019-12-11 00:04:45.658231 23423 967 Product \N \N 4 User \N create ---\nsku: BOL-967\nname: 1BLCI19333\ndescription: "Backpack negro con embozado diagonal\\r\\nEl logo de Cloe y líneas diagonales\n le dan un detalle sobrio a este diseño monocromático. Ideal para ser tu accesorio\n del día a día gracias a las mil combinaciones que puedes lograr con él.\\r\\n\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170767476'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: BBAL333_NEGR_1_828x1200.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-967 fue creado. 189.186.111.139 060afb57-bba2-4948-8bea-2d92ef0592b2 2019-12-11 00:05:59.491947 23424 1430 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 967\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.111.139 060afb57-bba2-4948-8bea-2d92ef0592b2 2019-12-11 00:05:59.536654 23425 213 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-23\namount: !ruby/object:BigDecimal 18:0.23985E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.23985E4\nobservations: ''\npurchase_date: 2019-12-10\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-23 por $ 2398.5 MXN creada. 189.186.111.139 0fce44e9-6d6c-4b5b-82f4-e603a59eeb42 2019-12-11 00:06:15.671002 23426 1430 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.111.139 0fce44e9-6d6c-4b5b-82f4-e603a59eeb42 2019-12-11 00:06:15.691973 23427 1431 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 689\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.111.139 0fce44e9-6d6c-4b5b-82f4-e603a59eeb42 2019-12-11 00:06:15.719504 23428 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-11 00:00:38.391369000 Z\n- &1 2019-12-11 00:04:45.634986000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-11 00:12:24.769106553 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946402\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946402\n mask_addr: 4294967295\nsign_in_count:\n- 1072\n- 1073\n 2146 \N 200.68.182.162 3b32cd69-2e89-44b1-a09d-d0dfac932881 2019-12-11 00:12:24.777242 23429 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6aqLizMyfzSDbvKzud5a\n- BJq-hzDrKRdm1Ct9saBi\n 2147 \N 200.68.182.162 3b32cd69-2e89-44b1-a09d-d0dfac932881 2019-12-11 00:12:24.794894 23430 2283 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 303\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.14E4\nmove_type: '1'\nsale_id: 836\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 f0a88b59-8ce2-4853-b98a-25dbddd9b9ab 2019-12-11 00:24:43.122309 23431 836 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 f0a88b59-8ce2-4853-b98a-25dbddd9b9ab 2019-12-11 00:24:43.143895 23432 878 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 f0a88b59-8ce2-4853-b98a-25dbddd9b9ab 2019-12-11 00:24:43.164249 23433 965 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 f0a88b59-8ce2-4853-b98a-25dbddd9b9ab 2019-12-11 00:24:43.183256 23434 1056 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 f0a88b59-8ce2-4853-b98a-25dbddd9b9ab 2019-12-11 00:24:43.202562 23435 2283 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 303\n- 658\n 2 movimiento de efectivo por venta con folio PV1-V-474 187.149.58.33 f0a88b59-8ce2-4853-b98a-25dbddd9b9ab 2019-12-11 00:24:43.21357 23436 1638 Sale \N \N 2 User \N create ---\ncustomer_id: 85\nuser_id: 2\nopen_cash_register_id: 658\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-12-10\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-836\nexpiration_date: 2020-01-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 759eb309-4d66-4905-a608-0b18169362ef 2019-12-11 00:35:14.845619 23437 1299 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.58.33 759eb309-4d66-4905-a608-0b18169362ef 2019-12-11 00:35:14.872821 23438 2284 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 658\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 1638\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-836\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-836 187.149.58.33 c40c5a8b-738a-46e3-8ecc-b8dd9c4ff143 2019-12-11 00:35:34.615715 23439 1638 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 4b9e0f1c-f3ba-43e4-940d-c5a9166b5f6b 2019-12-11 00:35:37.561713 23440 834 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.26E2\n- !ruby/object:BigDecimal 18:0.25E2\n 10 \N 189.186.111.139 50aa3d37-8401-4362-b1f3-cd47aeb66737 2019-12-11 01:00:02.110525 23441 834 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.25E2\n- !ruby/object:BigDecimal 18:0.23E2\n 11 \N 189.186.111.139 60b657f1-3701-467c-b3b5-b5b25ec4a588 2019-12-11 01:00:04.900284 23442 343 Transfer \N \N 23 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2019-12-10\nuser_id: 23\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.111.139 2242e724-e0cf-40dd-9d68-bae1d21e4240 2019-12-11 01:00:27.105067 23443 1639 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 658\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-12-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-837\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 a2880456-986a-48cf-9a6c-4af5de64a6de 2019-12-11 01:52:15.923529 23444 1064 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.58.33 a2880456-986a-48cf-9a6c-4af5de64a6de 2019-12-11 01:52:15.961918 23445 1639 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 05db2d71-3232-4b2a-a931-6c60d071e60c 2019-12-11 01:53:59.157517 23489 1414 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 1d9f8f73-fd7b-4138-aa2b-dc35709c19cf 2019-12-11 20:18:02.953744 23446 2285 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 658\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 1639\ncardnumber: 423\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-837\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-837 187.149.58.33 05db2d71-3232-4b2a-a931-6c60d071e60c 2019-12-11 01:53:59.182198 23447 1640 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 656\namount: !ruby/object:BigDecimal 18:0.589E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2019-12-10\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-162\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 8477e582-8477-4ac7-8eb6-b5ac09b1312a 2019-12-11 01:56:34.07635 23448 1132 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.111.139 8477e582-8477-4ac7-8eb6-b5ac09b1312a 2019-12-11 01:56:34.107146 23449 1640 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 be2e2dfa-e71a-4db7-913d-ecf5f3eb4921 2019-12-11 01:57:08.802588 23450 2286 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 656\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.589E3\nmove_type: '1'\nsale_id: 1640\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-162\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-162 189.186.111.139 be2e2dfa-e71a-4db7-913d-ecf5f3eb4921 2019-12-11 01:57:08.838163 23451 2287 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 658\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 1526\ncardnumber: 4298\npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-786 187.149.58.33 33d583f4-5726-439a-8602-c0d6fbf7217c 2019-12-11 02:00:36.292041 23452 2288 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 658\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 1526\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-786 187.149.58.33 b1b280b5-b290-4932-ac24-ac661f35f04a 2019-12-11 02:01:44.08647 23453 1526 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 30c63270-8305-4121-9a77-660d0df805f3 2019-12-11 02:01:46.878933 23454 2289 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 658\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3055E4\nmove_type: '1'\nsale_id: 1531\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3055E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-789 187.149.58.33 cef72b93-9747-4472-b95a-d8c8d167f9f1 2019-12-11 02:15:24.649724 23455 1531 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 fca8de65-cd4b-4d86-b900-d0d09835dda5 2019-12-11 02:15:27.019941 23456 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-09 21:38:16.219274000 Z\n- &1 2019-12-10 02:42:14.831124000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-11 02:20:05.554062497 Z\nsign_in_count:\n- 121\n- 122\n 244 \N 187.149.58.33 f4c22983-576b-43c9-949b-c68375353d19 2019-12-11 02:20:05.565763 23457 1 User \N \N 1 User \N update ---\nunique_session_id:\n- sx3yPe6VVoSeEjTPuJwW\n- HP-cfzxdVJbeYY_ycMPh\n 245 \N 187.149.58.33 f4c22983-576b-43c9-949b-c68375353d19 2019-12-11 02:20:05.583677 23458 662 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 656\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.1488E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.559E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2059E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 0098c079-7168-4545-a9d8-d911660164ec 2019-12-11 03:01:05.522835 23459 656 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 0098c079-7168-4545-a9d8-d911660164ec 2019-12-11 03:01:05.537234 23460 2290 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 657\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.29E3\nmove_type: '1'\nsale_id: 1632\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.29E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-638 187.149.58.33 8e82065f-a333-41eb-9a61-390679d3a597 2019-12-11 03:03:44.529976 23461 663 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 658\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.12186E5\namount_out: !ruby/object:BigDecimal 18:0.25E2\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.55E4\ncash_fund: !ruby/object:BigDecimal 18:0.857E3\nphysical_cash: !ruby/object:BigDecimal 18:0.6357E4\nobservations: "$1400 se puso en efectivo y era transerencia de Tatiana"\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 190c2539-f321-4c27-8ecc-4f0dab410054 2019-12-11 03:11:47.559769 23462 658 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 190c2539-f321-4c27-8ecc-4f0dab410054 2019-12-11 03:11:47.576514 23463 664 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 657\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.3345E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.22E4\ncash_fund: !ruby/object:BigDecimal 18:0.683E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2883E4\nobservations: SOBRANTE DE $118\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 d9f74531-29ac-4936-a6bf-a164c7ed70a0 2019-12-11 03:12:16.560174 23464 657 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 d9f74531-29ac-4936-a6bf-a164c7ed70a0 2019-12-11 03:12:16.573791 23465 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-12-08 02:38:34.402090000 Z\n- &1 2019-12-10 16:56:11.287554000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-11 16:59:01.096388280 Z\nsign_in_count:\n- 85\n- 86\n 172 \N 189.186.111.139 ad1923ee-693b-485c-bba7-d14e21b90491 2019-12-11 16:59:01.133448 23466 23 User \N \N 23 User \N update ---\nunique_session_id:\n- w9Vy1AZTmGsxWJPYFzNh\n- qCdZhDL8pa1TFdKivNZs\n 173 \N 189.186.111.139 ad1923ee-693b-485c-bba7-d14e21b90491 2019-12-11 16:59:01.157127 23467 659 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.559E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 559.0 189.186.111.139 ac5e135b-089d-4261-a7d1-8f324779b07b 2019-12-11 16:59:29.197644 23468 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 22:57:55.849452000 Z\n- &1 2019-12-10 23:11:57.651110000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-11 17:09:01.567675240 Z\nsign_in_count:\n- 43\n- 44\n 88 \N 187.149.58.33 dd56b8d7-9ab6-4bee-8ba1-b1c2f5e743d7 2019-12-11 17:09:01.594218 23469 27 User \N \N 27 User \N update ---\nunique_session_id:\n- UsYZWYF8jeeqEWRQEVBy\n- iHZ35_yihgPBiGgN_Dbk\n 89 \N 187.149.58.33 dd56b8d7-9ab6-4bee-8ba1-b1c2f5e743d7 2019-12-11 17:09:01.612516 23470 660 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.683E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 683.0 187.149.58.33 cea456cd-687f-4c5f-93aa-771f19013ed8 2019-12-11 17:10:33.388702 23471 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-09 16:58:07.872079000 Z\n- &1 2019-12-10 18:32:12.495514000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-11 17:39:36.490031914 Z\nsign_in_count:\n- 397\n- 398\n 799 \N 187.149.58.33 5ea16bff-0903-40be-b52b-bb8c797d9c8e 2019-12-11 17:39:36.516797 23472 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 2wUttJfyYg_oywdQAsmG\n- ftZMkVzCAUoKcHEfv1FM\n 800 \N 187.149.58.33 5ea16bff-0903-40be-b52b-bb8c797d9c8e 2019-12-11 17:39:36.537004 23473 661 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.857E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 857.0 187.149.58.33 a35c6e96-c611-4c2d-a7f6-46e14b54ce50 2019-12-11 17:40:35.607239 23474 1641 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 661\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.79E2\ntotal: !ruby/object:BigDecimal 18:0.77E3\nstatus: 0\ndate_sale: 2019-12-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-838\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 1f366736-481b-449f-a402-330f185690de 2019-12-11 17:41:24.500098 23475 1077 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.58.33 1f366736-481b-449f-a402-330f185690de 2019-12-11 17:41:24.529744 23476 1641 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 3ce8a62a-cec3-48b9-88ab-42e8362dedb7 2019-12-11 17:42:04.387758 23477 2291 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 661\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.77E3\nmove_type: '1'\nsale_id: 1641\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-838\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.77E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-838 187.149.58.33 3ce8a62a-cec3-48b9-88ab-42e8362dedb7 2019-12-11 17:42:04.418771 23478 1642 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 660\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-12-11\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-640\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 216a2d3a-9fe0-4037-a3aa-824bd69d8353 2019-12-11 17:55:48.618958 23479 877 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.58.33 216a2d3a-9fe0-4037-a3aa-824bd69d8353 2019-12-11 17:55:48.643756 23480 1642 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 f445fcdb-74b2-4ad4-a669-57284c23f26c 2019-12-11 17:56:12.066162 23481 2292 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 660\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1642\ncardnumber: 6218\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-640\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-640 187.149.58.33 f445fcdb-74b2-4ad4-a669-57284c23f26c 2019-12-11 17:56:12.085497 23482 2292 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 660\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1642\ncardnumber: 6218\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-640\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.58.33 fc21e5ed-bbd9-4048-ae49-a45a0a26766e 2019-12-11 17:56:26.894469 23483 2293 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 660\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 1642\ncardnumber: 6218\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-640\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-640 187.149.58.33 105eff1b-d8a4-41e5-b574-f2720f47a416 2019-12-11 17:56:41.680956 23484 1643 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 661\namount: !ruby/object:BigDecimal 18:0.1345E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1345E4\nstatus: 0\ndate_sale: 2019-12-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-839\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 dd48a063-8ece-4abb-933e-c476d4b8adcb 2019-12-11 19:19:17.671615 23485 1014 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 dd48a063-8ece-4abb-933e-c476d4b8adcb 2019-12-11 19:19:17.700899 23486 1643 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 a0be8e84-cf2e-4972-ae52-2b358e925466 2019-12-11 19:19:57.37817 23487 2294 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 661\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1345E4\nmove_type: '1'\nsale_id: 1643\ncardnumber: 6399\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-839\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-839 187.149.58.33 a0be8e84-cf2e-4972-ae52-2b358e925466 2019-12-11 19:19:57.404447 23488 1644 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 660\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-11\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-641\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 1d9f8f73-fd7b-4138-aa2b-dc35709c19cf 2019-12-11 20:18:02.929514 23491 2295 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 660\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1644\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-641\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-641 187.149.58.33 e84eadbd-9d95-4f83-8c4c-92337fd310ae 2019-12-11 20:18:27.566041 23492 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-11 00:04:45.634986000 Z\n- &1 2019-12-11 00:12:24.769106000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-11 20:28:34.430454968 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946402\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946402\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\nsign_in_count:\n- 1073\n- 1074\n 2148 \N 189.186.211.119 2c7762c8-a069-4585-ad37-54af84c16b4b 2019-12-11 20:28:34.459501 23493 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BJq-hzDrKRdm1Ct9saBi\n- znuEhh53T9UsYqh2ekzP\n 2149 \N 189.186.211.119 2c7762c8-a069-4585-ad37-54af84c16b4b 2019-12-11 20:28:34.483219 23494 1645 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 661\namount: !ruby/object:BigDecimal 18:0.629E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.629E3\nstatus: 0\ndate_sale: 2019-12-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-840\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 b0e3e857-a365-4dfc-8873-3c4159adacf4 2019-12-11 20:29:30.762132 23495 1386 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 b0e3e857-a365-4dfc-8873-3c4159adacf4 2019-12-11 20:29:30.790334 23496 1645 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 8df9ab5c-d1bf-4760-abfd-9fbe6a527947 2019-12-11 20:29:54.166327 23497 2296 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 661\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.629E3\nmove_type: '1'\nsale_id: 1645\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-840\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.629E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-840 187.149.58.33 8df9ab5c-d1bf-4760-abfd-9fbe6a527947 2019-12-11 20:29:54.1978 23498 1646 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 660\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-12-11\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-642\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 ee2a10c5-801c-458b-8275-dd7afd3dc9c0 2019-12-11 21:07:27.538087 23499 1418 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.58.33 ee2a10c5-801c-458b-8275-dd7afd3dc9c0 2019-12-11 21:07:27.574041 23500 1646 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-642 cancelada. 187.149.58.33 826aab46-ce69-4f37-a283-5f2ecec7457d 2019-12-11 21:09:57.402676 23501 1418 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.58.33 826aab46-ce69-4f37-a283-5f2ecec7457d 2019-12-11 21:09:57.442346 23502 1647 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 660\namount: !ruby/object:BigDecimal 18:0.1128E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1128E4\nstatus: 0\ndate_sale: 2019-12-11\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-643\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 0f181ef6-5116-4a75-b3e3-81f057534074 2019-12-11 21:11:11.084293 23503 1418 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.58.33 0f181ef6-5116-4a75-b3e3-81f057534074 2019-12-11 21:11:11.1097 23504 1341 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.58.33 0f181ef6-5116-4a75-b3e3-81f057534074 2019-12-11 21:11:11.133258 23505 1647 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 321a7cc9-3e37-47eb-9615-af7a678c2c84 2019-12-11 21:11:51.762461 23506 2297 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 660\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1128E4\nmove_type: '1'\nsale_id: 1647\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-643\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.115E4\nchange: !ruby/object:BigDecimal 18:0.22E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-643 187.149.58.33 321a7cc9-3e37-47eb-9615-af7a678c2c84 2019-12-11 21:11:51.782265 23507 1648 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 660\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-12-11\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-644\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 e87b72bf-5cf5-468d-8eed-936931563737 2019-12-11 22:15:38.724163 23508 1253 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.58.33 e87b72bf-5cf5-468d-8eed-936931563737 2019-12-11 22:15:38.74892 23509 1648 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 713083f3-024f-47c1-a235-1e396e640b1a 2019-12-11 22:16:48.295903 23510 2298 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 660\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 1648\ncardnumber: 7964\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-644\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-644 187.149.58.33 713083f3-024f-47c1-a235-1e396e640b1a 2019-12-11 22:16:48.313832 23511 1649 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 659\namount: !ruby/object:BigDecimal 18:0.2214E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2214E4\nstatus: 0\ndate_sale: 2019-12-11\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-163\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 ceb9792d-a200-4311-8b6f-3d3ed33272d4 2019-12-11 22:26:45.901597 23512 1035 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 14 \N 189.186.111.139 ceb9792d-a200-4311-8b6f-3d3ed33272d4 2019-12-11 22:26:45.927363 23513 1359 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.111.139 ceb9792d-a200-4311-8b6f-3d3ed33272d4 2019-12-11 22:26:45.948397 23514 1649 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 0eec69af-b756-4176-81dd-d0b66cf90980 2019-12-11 22:26:57.342225 23515 2299 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 659\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2214E4\nmove_type: '1'\nsale_id: 1649\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-163\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E4\nchange: !ruby/object:BigDecimal 18:0.286E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-163 189.186.111.139 0eec69af-b756-4176-81dd-d0b66cf90980 2019-12-11 22:26:57.362211 23516 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 02:42:14.831124000 Z\n- &1 2019-12-11 02:20:05.554062000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-11 23:48:11.853803272 Z\nsign_in_count:\n- 122\n- 123\n 246 \N 187.149.58.33 49509c01-a643-471d-b5e1-ee58f9ae169c 2019-12-11 23:48:11.873138 23517 1 User \N \N 1 User \N update ---\nunique_session_id:\n- HP-cfzxdVJbeYY_ycMPh\n- Hg1QaJmh1dsvsRhXiR-y\n 247 \N 187.149.58.33 49509c01-a643-471d-b5e1-ee58f9ae169c 2019-12-11 23:48:11.891328 23518 1650 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 660\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-12-11\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-645\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 e73b2dcd-8405-4562-880a-d577b95dd798 2019-12-12 00:08:06.355248 23519 1418 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.58.33 e73b2dcd-8405-4562-880a-d577b95dd798 2019-12-12 00:08:06.385583 23520 1650 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 a061217c-77dd-45c9-a8f2-9b056c22a3af 2019-12-12 00:08:37.383246 23521 2300 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 660\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 1650\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-645\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-645 187.149.58.33 a061217c-77dd-45c9-a8f2-9b056c22a3af 2019-12-12 00:08:37.404193 23522 1651 Sale \N \N 27 User \N create ---\ncustomer_id: 33\nuser_id: 27\nopen_cash_register_id: 660\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-11\nsaletype: 0\nseller_id: 4\nsale_code: PV2-V-646\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 115fe5c6-f85c-486f-9231-e58df6467fc4 2019-12-12 01:01:52.935315 23523 1281 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 187.149.58.33 115fe5c6-f85c-486f-9231-e58df6467fc4 2019-12-12 01:01:52.963282 23524 1652 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 659\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-12-11\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-164\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 64a0d4fd-5579-42a7-8a61-1e3f56b5fe0e 2019-12-12 01:02:25.55101 23525 859 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 189.186.111.139 64a0d4fd-5579-42a7-8a61-1e3f56b5fe0e 2019-12-12 01:02:25.579186 23526 1652 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 51740636-0e38-4a85-8f8c-a91c5eff1509 2019-12-12 01:02:31.271869 23527 2301 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 659\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 1652\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-164\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-164 189.186.111.139 51740636-0e38-4a85-8f8c-a91c5eff1509 2019-12-12 01:02:31.291859 23528 1653 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 661\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2019-12-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-841\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 12253461-85a8-4c96-b949-52a13a90dc3b 2019-12-12 01:04:12.088546 23529 1097 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 13 \N 187.149.58.33 12253461-85a8-4c96-b949-52a13a90dc3b 2019-12-12 01:04:12.114774 23530 1653 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 17705328-15a6-4b90-8da3-5d57cf49d3d2 2019-12-12 01:04:31.913088 23531 2302 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 661\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.729E3\nmove_type: '1'\nsale_id: 1653\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-841\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.729E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-841 187.149.58.33 17705328-15a6-4b90-8da3-5d57cf49d3d2 2019-12-12 01:04:31.934938 23532 2303 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 660\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1651\ncardnumber: 592\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 a7aaa05e-1364-49f0-8247-7313eebf4b83 2019-12-12 01:04:42.065304 23533 1651 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 a7aaa05e-1364-49f0-8247-7313eebf4b83 2019-12-12 01:04:42.090262 23534 2303 CashRegistersMove \N \N 27 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV2-V-646 187.149.58.33 a7aaa05e-1364-49f0-8247-7313eebf4b83 2019-12-12 01:04:42.101628 23557 663 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.709E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 709.0 187.149.58.33 318a4345-9be8-42ce-9f18-6eaf13033ee9 2019-12-12 17:14:48.208111 23535 1654 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 661\namount: !ruby/object:BigDecimal 18:0.459E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.459E3\nstatus: 0\ndate_sale: 2019-12-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-842\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 295200f4-8850-4b1e-bb74-2c50f6c71ecf 2019-12-12 01:16:02.720088 23536 1105 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.58.33 295200f4-8850-4b1e-bb74-2c50f6c71ecf 2019-12-12 01:16:02.754258 23537 1654 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 36f344da-4ebb-4339-ac76-d094c559ea5a 2019-12-12 01:16:43.101443 23538 2304 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 661\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.459E3\nmove_type: '1'\nsale_id: 1654\ncardnumber: 9275\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-842\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-842 187.149.58.33 36f344da-4ebb-4339-ac76-d094c559ea5a 2019-12-12 01:16:43.125089 23539 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-11 00:12:24.769106000 Z\n- &1 2019-12-11 20:28:34.430454000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-12 02:00:29.571732027 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946402\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 1074\n- 1075\n 2150 \N 189.186.111.139 529816e7-d469-41c3-9949-f4f7723882a8 2019-12-12 02:00:29.586615 23540 4 User \N \N 4 User \N update ---\nunique_session_id:\n- znuEhh53T9UsYqh2ekzP\n- jNkpzGE7P9sgh_6qqZqC\n 2151 \N 189.186.111.139 529816e7-d469-41c3-9949-f4f7723882a8 2019-12-12 02:00:29.612449 23541 2305 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 661\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.55E3\nmove_type: '1'\nsale_id: 1599\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.55E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-816 187.149.58.33 1e88382c-a0c0-49d5-a804-4b43fdb4afed 2019-12-12 02:17:36.337442 23542 665 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 660\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.5124E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.709E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3709E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 f2413c12-aaee-44c6-8345-7a1be2fc0801 2019-12-12 03:02:04.289922 23543 660 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 f2413c12-aaee-44c6-8345-7a1be2fc0801 2019-12-12 03:02:04.304344 23544 666 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 661\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4482E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.1035E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3535E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 3a7bfe46-51a7-40ef-8a8e-f1e21f64bf91 2019-12-12 03:18:31.789935 23545 661 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 3a7bfe46-51a7-40ef-8a8e-f1e21f64bf91 2019-12-12 03:18:31.807543 23546 667 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 659\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.3013E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.1072E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3572E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 3a2a4ffe-a9a3-4e80-9e05-267b97bae411 2019-12-12 03:19:06.046302 23547 659 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 3a2a4ffe-a9a3-4e80-9e05-267b97bae411 2019-12-12 03:19:06.058183 23548 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-11 20:28:34.430454000 Z\n- &1 2019-12-12 02:00:29.571732000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-12 03:21:06.288011543 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 1075\n- 1076\n 2152 \N 189.186.111.139 ec5b5f11-a409-4457-b74e-a731a9b57e24 2019-12-12 03:21:06.309334 23549 4 User \N \N 4 User \N update ---\nunique_session_id:\n- jNkpzGE7P9sgh_6qqZqC\n- xDB7TsHvXhxfjptJmbqu\n 2153 \N 189.186.111.139 ec5b5f11-a409-4457-b74e-a731a9b57e24 2019-12-12 03:21:06.327545 23550 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-12 02:00:29.571732000 Z\n- &1 2019-12-12 03:21:06.288011000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-12 05:47:01.609104082 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\nsign_in_count:\n- 1076\n- 1077\n 2154 \N 189.186.211.119 1d8cd572-da81-48dc-b9fd-88beee1264a9 2019-12-12 05:47:01.622399 23551 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xDB7TsHvXhxfjptJmbqu\n- RBmTUJXzFpYhh2MyV3zE\n 2155 \N 189.186.211.119 1d8cd572-da81-48dc-b9fd-88beee1264a9 2019-12-12 05:47:01.651828 23552 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 16:56:11.287554000 Z\n- &1 2019-12-11 16:59:01.096388000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-12 16:59:29.994208610 Z\nsign_in_count:\n- 86\n- 87\n 174 \N 189.186.111.139 4c868145-1d5e-4bb6-902e-0363677d2a6e 2019-12-12 16:59:30.039831 23553 23 User \N \N 23 User \N update ---\nunique_session_id:\n- qCdZhDL8pa1TFdKivNZs\n- c9-NxURu6qdmQBwQgrnb\n 175 \N 189.186.111.139 4c868145-1d5e-4bb6-902e-0363677d2a6e 2019-12-12 16:59:30.063139 23554 662 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.1072E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1072.0 189.186.111.139 e5a12484-9caf-4f1e-adcc-de11ff373876 2019-12-12 17:01:01.45899 23555 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 23:11:57.651110000 Z\n- &1 2019-12-11 17:09:01.567675000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-12 17:14:10.837842688 Z\nsign_in_count:\n- 44\n- 45\n 90 \N 187.149.58.33 6cf750d8-54b0-4bcb-a006-d08dd00efe57 2019-12-12 17:14:10.865573 23556 27 User \N \N 27 User \N update ---\nunique_session_id:\n- iHZ35_yihgPBiGgN_Dbk\n- Te9k6C-kVfBGWZh98iug\n 91 \N 187.149.58.33 6cf750d8-54b0-4bcb-a006-d08dd00efe57 2019-12-12 17:14:10.883975 23655 1665 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 f64c9bf6-518a-4cad-a904-970a3f18d1d2 2019-12-13 01:13:46.376686 23558 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-12 03:21:06.288011000 Z\n- &1 2019-12-12 05:47:01.609104000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-12 17:50:27.351351937 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\nsign_in_count:\n- 1077\n- 1078\n 2156 \N 189.186.211.119 203d884a-451f-4fe8-a59e-41f466dfa07e 2019-12-12 17:50:27.383047 23559 4 User \N \N 4 User \N update ---\nunique_session_id:\n- RBmTUJXzFpYhh2MyV3zE\n- V89nHQKYUGFPNBEkBkgi\n 2157 \N 189.186.211.119 203d884a-451f-4fe8-a59e-41f466dfa07e 2019-12-12 17:50:27.409425 23560 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-12-08 21:56:21.472815000 Z\n- &1 2019-12-10 18:37:51.707482000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-12 18:32:17.181752796 Z\nsign_in_count:\n- 30\n- 31\n 62 \N 187.149.58.33 8a3af72a-41b2-4218-983a-876d09f02421 2019-12-12 18:32:17.189185 23561 24 User \N \N 24 User \N update ---\nunique_session_id:\n- m3HWyzL6oCp-o9musPvx\n- TFc57Zo_HnCzYHepFjWZ\n 63 \N 187.149.58.33 8a3af72a-41b2-4218-983a-876d09f02421 2019-12-12 18:32:17.202231 23562 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 18:32:12.495514000 Z\n- &1 2019-12-11 17:39:36.490031000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-12 18:37:10.846887014 Z\nsign_in_count:\n- 398\n- 399\n 801 \N 187.149.58.33 252494c9-b3cf-42de-b853-393c54bcff4e 2019-12-12 18:37:10.852957 23563 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ftZMkVzCAUoKcHEfv1FM\n- zFY_ZND8pzrzdBhpY2E4\n 802 \N 187.149.58.33 252494c9-b3cf-42de-b853-393c54bcff4e 2019-12-12 18:37:10.866816 23564 664 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1035E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1035.0 187.149.58.33 83aee1bb-46b2-4f19-a517-dc87223a03f9 2019-12-12 18:37:28.659738 23565 1655 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 664\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-843\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 a45a2310-62aa-45b5-be8d-5922864d1f6f 2019-12-12 18:37:53.381561 23566 809 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.58.33 a45a2310-62aa-45b5-be8d-5922864d1f6f 2019-12-12 18:37:53.413249 23567 1655 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 1087e9d2-e2db-4e49-ac70-6bf346f77187 2019-12-12 18:38:24.093798 23568 2306 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 664\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1655\ncardnumber: 1196\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-843\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-843 187.149.58.33 1087e9d2-e2db-4e49-ac70-6bf346f77187 2019-12-12 18:38:24.114963 23569 1656 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 663\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-12-12\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-647\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 d663cc6d-920f-4a1a-bd72-eca74f3f738f 2019-12-12 18:39:45.682531 23570 1278 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.58.33 d663cc6d-920f-4a1a-bd72-eca74f3f738f 2019-12-12 18:39:45.715254 23571 1656 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 a7546f1c-675d-4fe8-9111-12b0d0006e04 2019-12-12 18:39:55.631799 23572 2307 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 663\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 1656\ncardnumber: 1196\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-647\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-647 187.149.58.33 a7546f1c-675d-4fe8-9111-12b0d0006e04 2019-12-12 18:39:55.655537 23573 1657 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 663\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-12-12\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-647\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 b648afbc-3dc2-456c-aa38-35898f36d28f 2019-12-12 21:02:22.317389 23574 804 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.58.33 b648afbc-3dc2-456c-aa38-35898f36d28f 2019-12-12 21:02:22.351498 23575 1657 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 b74a6208-dd54-4c13-95e6-881f97368dfc 2019-12-12 21:02:34.346165 23576 2308 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 663\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.649E3\nmove_type: '1'\nsale_id: 1657\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-647\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.351E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-647 187.149.58.33 b74a6208-dd54-4c13-95e6-881f97368dfc 2019-12-12 21:02:34.367642 23577 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-12 05:47:01.609104000 Z\n- &1 2019-12-12 17:50:27.351351000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-12 21:41:07.575600767 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1078\n- 1079\n 2158 \N 187.149.58.33 0cc226aa-efc9-4708-aa99-81e031a946f6 2019-12-12 21:41:07.58645 23578 4 User \N \N 4 User \N update ---\nunique_session_id:\n- V89nHQKYUGFPNBEkBkgi\n- rZzYfcJwcCXdrk5sWAQc\n 2159 \N 187.149.58.33 0cc226aa-efc9-4708-aa99-81e031a946f6 2019-12-12 21:41:07.60672 23579 1389 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 2 \N 187.149.58.33 ce7cd6f3-8c5d-423a-b55a-b9b35631ae21 2019-12-12 21:41:43.003785 23580 1389 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 4f7266d8-0945-4c0a-9894-69b6b20c17ef 2019-12-12 21:41:45.83666 23581 344 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-12-12\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.58.33 9165fbb0-c074-4beb-b0bc-d3d0de699152 2019-12-12 21:41:47.860557 23582 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-12 17:50:27.351351000 Z\n- &1 2019-12-12 21:41:07.575600000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-12 21:42:20.184285521 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938434\n mask_addr: 4294967295\nsign_in_count:\n- 1079\n- 1080\n 2160 \N 200.68.151.130 6144661f-57fc-4347-a289-a679c86cfb50 2019-12-12 21:42:20.191456 23583 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rZzYfcJwcCXdrk5sWAQc\n- GXFKqvtfGCLphDihYzSo\n 2161 \N 200.68.151.130 6144661f-57fc-4347-a289-a679c86cfb50 2019-12-12 21:42:20.207753 23584 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-12 21:41:07.575600000 Z\n- &1 2019-12-12 21:42:20.184285000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-12 21:43:18.644972442 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938434\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938434\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1080\n- 1081\n 2162 \N 187.149.58.33 3b18596b-60f6-42c9-a906-ad345cf70fdf 2019-12-12 21:43:18.652512 23585 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GXFKqvtfGCLphDihYzSo\n- W7sqAEjWRqySuT5x9FXU\n 2163 \N 187.149.58.33 3b18596b-60f6-42c9-a906-ad345cf70fdf 2019-12-12 21:43:18.668457 23586 774 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.58.33 524ddc17-4b88-4439-8a07-8b73a2c44913 2019-12-12 21:43:40.365261 23587 774 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.58.33 8b6635ce-fe65-4d78-b095-7e973703c025 2019-12-12 21:43:43.526098 23588 940 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 eb080da4-e7ae-451a-a89f-555a08129190 2019-12-12 21:44:11.726206 23589 940 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.58.33 6632af6c-0773-42e2-bf7c-aa4ee200396b 2019-12-12 21:44:15.447883 23590 1150 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 e70ee059-de5f-4d54-940b-453794196694 2019-12-12 21:44:38.054024 23591 1150 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.58.33 129f416e-9e68-42c0-a712-e21cc05b351a 2019-12-12 21:44:40.790074 23592 1163 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.58.33 22c6b2b6-6c7e-4f60-8bd5-7f126cc4f3ce 2019-12-12 21:44:53.50329 23593 1163 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.58.33 9164047c-7b98-4e68-b237-508bbe291c74 2019-12-12 21:44:57.064183 23594 768 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.58.33 18274b96-b850-42a7-9500-c443a3ca64a7 2019-12-12 21:45:38.780175 23595 345 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-12-12\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.58.33 3aaaa74a-ce3c-48a2-87df-f2e359bbd143 2019-12-12 21:45:42.353728 23596 1265 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 6cddf438-5f76-45b2-8777-9bc8e677cdb2 2019-12-12 21:48:06.403489 23597 1265 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 afd9f8f1-5a15-4ea6-9971-87aff7e54d8d 2019-12-12 21:48:09.101361 23598 814 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 187.149.58.33 6337716f-85bc-43ac-a9b4-46ac4e1ca54e 2019-12-12 21:48:26.398693 23599 814 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 187.149.58.33 2cb6b495-6ad5-4803-bdfc-6975e02259e9 2019-12-12 21:48:31.767554 23600 1134 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.58.33 b8344275-338d-4db6-8e3f-23ad1be143f3 2019-12-12 21:48:49.298595 23601 1134 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.58.33 bc7d14b2-db06-411c-8c5c-893f69ce64a3 2019-12-12 21:48:59.611696 23602 1116 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.58.33 a68fc650-74a3-48cd-9c3d-422c93c23518 2019-12-12 21:49:13.180757 23603 1116 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 a8129fb8-587c-4666-8503-d20fc1799651 2019-12-12 21:49:23.800455 23604 1393 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 a1e0b124-8bf6-453f-9a97-51aa1769a841 2019-12-12 21:49:39.98713 23605 1393 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.58.33 a5799168-4055-46dd-87ba-ec29ea15c9c3 2019-12-12 21:49:42.94496 23606 346 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2019-12-12\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 187.149.58.33 071dff1d-4cb0-4360-a695-0423828431b0 2019-12-12 21:49:44.781904 23607 1407 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 bcb7808e-f25a-4938-8dd5-ea3b48633918 2019-12-12 21:51:14.534887 23608 260 Customer \N \N 27 User \N create ---\nnick_name: ERIKA MONARREZ GARCIA\nphone: "(667) 154-0987"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ERIKA MONARREZ GARCIA fue registrado. 187.149.58.33 d9e49f83-d464-441f-904e-d988b2f2ab49 2019-12-12 21:52:14.136217 23609 1658 Sale \N \N 27 User \N create ---\ncustomer_id: 260\nuser_id: 27\nopen_cash_register_id: 663\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-12-12\nsaletype: 2\nseller_id: 19\nsale_code: PV2-V-649\nexpiration_date: 2020-01-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 87f2a317-fec3-4e01-8d24-25f49778c8fa 2019-12-12 21:52:29.661505 23610 1289 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.58.33 87f2a317-fec3-4e01-8d24-25f49778c8fa 2019-12-12 21:52:29.686894 23611 2309 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 663\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1658\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-649\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.2E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-649 187.149.58.33 89f6d44f-1166-4b17-84de-75b290f87325 2019-12-12 21:52:54.034988 23612 1658 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 5bc5696f-5f41-4900-950b-558a68d57623 2019-12-12 21:52:56.342626 23613 1659 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 664\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.849E3\nstatus: 0\ndate_sale: 2019-12-12\nsaletype: 1\nseller_id: 20\nsale_code: PV1-V-844\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 e45cff7a-ef1c-493d-a42d-277479a39b3d 2019-12-12 21:58:54.774707 23614 1061 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.58.33 e45cff7a-ef1c-493d-a42d-277479a39b3d 2019-12-12 21:58:54.798952 23615 1659 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 3589c618-24c6-4292-886e-d5cb12931d59 2019-12-12 21:59:09.904449 23616 2310 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 664\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.849E3\nmove_type: '1'\nsale_id: 1659\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-844\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.151E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-844 187.149.58.33 3589c618-24c6-4292-886e-d5cb12931d59 2019-12-12 21:59:09.927685 23617 1660 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 664\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-12-12\nsaletype: 1\nseller_id: 20\nsale_code: PV1-V-845\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 2e83863b-5e43-4c02-aa81-ea6b44f4d742 2019-12-12 22:08:33.617635 23618 872 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.58.33 2e83863b-5e43-4c02-aa81-ea6b44f4d742 2019-12-12 22:08:33.64337 23619 1660 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 9028fde7-b8af-4755-83f2-21ad9c118dd7 2019-12-12 22:08:43.92851 23620 2311 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 664\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 1660\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-845\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-845 187.149.58.33 9028fde7-b8af-4755-83f2-21ad9c118dd7 2019-12-12 22:08:43.949319 23621 1661 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 662\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2019-12-12\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-165\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 e5adea2a-22ac-47f3-b3bf-c0067fcf2d04 2019-12-12 22:29:02.385211 23622 1425 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.111.139 e5adea2a-22ac-47f3-b3bf-c0067fcf2d04 2019-12-12 22:29:02.413112 23623 1661 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 461f7ead-2707-430e-98a4-26ab14ea72e4 2019-12-12 22:29:35.042015 23624 2312 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 662\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1699E4\nmove_type: '1'\nsale_id: 1661\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-165\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.18E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-165 189.186.111.139 461f7ead-2707-430e-98a4-26ab14ea72e4 2019-12-12 22:29:35.062039 23625 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-12 21:42:20.184285000 Z\n- &1 2019-12-12 21:43:18.644972000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-12 22:34:34.870311280 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938434\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938434\n mask_addr: 4294967295\nsign_in_count:\n- 1081\n- 1082\n 2164 \N 200.68.151.130 3b7f060e-806a-4d68-a886-8f3ab6225f7a 2019-12-12 22:34:34.878565 23626 4 User \N \N 4 User \N update ---\nunique_session_id:\n- W7sqAEjWRqySuT5x9FXU\n- 8_yhTGq6kjQbUXF2gBYa\n 2165 \N 200.68.151.130 3b7f060e-806a-4d68-a886-8f3ab6225f7a 2019-12-12 22:34:34.897366 23627 261 Customer \N \N 2 User \N create ---\nnick_name: MARBELLA PONCE\nphone: "(667) 414-0287"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARBELLA PONCE fue registrado. 187.149.58.33 b7d170dc-07eb-47bd-85f4-1e73e82b5175 2019-12-12 23:47:46.691164 23628 1662 Sale \N \N 2 User \N create ---\ncustomer_id: 261\nuser_id: 2\nopen_cash_register_id: 664\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-12-12\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-846\nexpiration_date: 2020-01-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 806190f1-1af0-4aff-927d-5b619ca5d8f2 2019-12-12 23:49:09.294913 23629 1409 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.58.33 806190f1-1af0-4aff-927d-5b619ca5d8f2 2019-12-12 23:49:09.322126 23630 2313 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 664\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1662\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-846\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-846 187.149.58.33 a165c405-b574-4d38-a956-b0a27058449c 2019-12-12 23:49:15.825895 23631 1662 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 3db3065a-9414-4c3f-9580-19118bab3a8c 2019-12-12 23:49:22.036616 23632 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-12 21:43:18.644972000 Z\n- &1 2019-12-12 22:34:34.870311000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-13 00:00:53.459550679 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938434\n mask_addr: 4294967295\nsign_in_count:\n- 1082\n- 1083\n 2166 \N 200.68.151.130 7fb362e5-111b-449b-aa77-c7ac8f6b5142 2019-12-13 00:00:53.467644 23633 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8_yhTGq6kjQbUXF2gBYa\n- roBzWdDsRzNUAiUDgPf9\n 2167 \N 200.68.151.130 7fb362e5-111b-449b-aa77-c7ac8f6b5142 2019-12-13 00:00:53.485817 23634 1663 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 663\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-12\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-650\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 90e47ef9-aeef-4ec5-8215-a30b0d56dd5a 2019-12-13 00:04:22.663226 23635 1376 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 90e47ef9-aeef-4ec5-8215-a30b0d56dd5a 2019-12-13 00:04:22.688551 23636 1663 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 60a1bfb9-28a0-40a5-9560-8c7612918865 2019-12-13 00:04:50.857902 23637 2314 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 663\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1663\ncardnumber: 9699\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-650\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-650 187.149.58.33 60a1bfb9-28a0-40a5-9560-8c7612918865 2019-12-13 00:04:50.876899 23638 2315 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 662\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1463\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-129 189.186.111.139 e4bf5a47-f5ea-4d95-9952-d94f0f4d8834 2019-12-13 00:05:27.30696 23639 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-11 02:20:05.554062000 Z\n- &1 2019-12-11 23:48:11.853803000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-13 00:09:06.146655518 Z\nsign_in_count:\n- 123\n- 124\n 248 \N 187.149.58.33 46b401a2-43ed-47d1-af25-a0fabc5e6fd2 2019-12-13 00:09:06.152129 23640 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Hg1QaJmh1dsvsRhXiR-y\n- zSZDaK2839Bjs5-JGapi\n 249 \N 187.149.58.33 46b401a2-43ed-47d1-af25-a0fabc5e6fd2 2019-12-13 00:09:06.163695 23641 344 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-12\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.58.33 13edc674-584f-423b-b3e0-b7f7e966cace 2019-12-13 00:43:02.025641 23642 1273 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 187.149.58.33 13edc674-584f-423b-b3e0-b7f7e966cace 2019-12-13 00:43:02.04489 23643 345 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-12\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.58.33 ff05d0fd-7586-4796-b5eb-5611d8c771ad 2019-12-13 00:47:15.256017 23644 1432 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 646\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 ff05d0fd-7586-4796-b5eb-5611d8c771ad 2019-12-13 00:47:15.2832 23645 1433 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 808\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 ff05d0fd-7586-4796-b5eb-5611d8c771ad 2019-12-13 00:47:15.340868 23646 1434 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 797\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 ff05d0fd-7586-4796-b5eb-5611d8c771ad 2019-12-13 00:47:15.359248 23647 1435 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 640\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 ff05d0fd-7586-4796-b5eb-5611d8c771ad 2019-12-13 00:47:15.377653 23648 1436 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 642\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 ff05d0fd-7586-4796-b5eb-5611d8c771ad 2019-12-13 00:47:15.395937 23649 1664 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 664\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-12-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-847\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 8e7c9760-5ddd-42f4-9360-61104103397d 2019-12-13 00:49:00.448952 23650 1434 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.58.33 8e7c9760-5ddd-42f4-9360-61104103397d 2019-12-13 00:49:00.475039 23651 1664 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 7a73d443-a221-4649-b201-4be4879192ef 2019-12-13 00:49:14.279008 23652 2316 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 664\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 1664\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-847\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-847 187.149.58.33 7a73d443-a221-4649-b201-4be4879192ef 2019-12-13 00:49:14.299327 23653 1665 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 664\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-12-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-848\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 395c8ee0-c1ed-41e0-893a-4432f28260cb 2019-12-13 01:11:31.035209 23654 1409 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.58.33 395c8ee0-c1ed-41e0-893a-4432f28260cb 2019-12-13 01:11:31.063915 23656 2317 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 664\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.12E4\nmove_type: '1'\nsale_id: 1665\ncardnumber: 9703\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-848\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-848 187.149.58.33 f64c9bf6-518a-4cad-a904-970a3f18d1d2 2019-12-13 01:13:46.409823 23657 2318 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 664\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.99E2\nmove_type: '1'\nsale_id: 1665\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-848\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.99E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-848 187.149.58.33 2fa2492c-a085-478f-96de-c17832c28977 2019-12-13 01:14:05.447646 23658 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-12 22:34:34.870311000 Z\n- &1 2019-12-13 00:00:53.459550000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-13 01:19:19.111580280 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938434\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 1083\n- 1084\n 2168 \N 189.186.111.139 c47bee6d-c8db-411f-82a5-77e977d3264d 2019-12-13 01:19:19.123436 23659 4 User \N \N 4 User \N update ---\nunique_session_id:\n- roBzWdDsRzNUAiUDgPf9\n- qctz-kYBcTPDZt6a-zBV\n 2169 \N 189.186.111.139 c47bee6d-c8db-411f-82a5-77e977d3264d 2019-12-13 01:19:19.145157 23660 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-13 00:00:53.459550000 Z\n- &1 2019-12-13 01:19:19.111580000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-13 02:14:52.348603776 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938434\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938434\n mask_addr: 4294967295\nsign_in_count:\n- 1084\n- 1085\n 2170 \N 200.68.151.130 04316cf6-6e96-45ac-a482-e088810a177f 2019-12-13 02:14:52.366766 23661 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qctz-kYBcTPDZt6a-zBV\n- ZmtjyXypvpFzuqQzodV7\n 2171 \N 200.68.151.130 04316cf6-6e96-45ac-a482-e088810a177f 2019-12-13 02:14:52.396198 23662 262 Customer \N \N 23 User \N create ---\nnick_name: JOSE MIGUEL PAEZ\nphone: "(667) 188-8204"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.5E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JOSE MIGUEL PAEZ fue registrado. 189.186.111.139 07d2b678-b9f6-4c03-a574-f01f104e6ed8 2019-12-13 02:56:38.305041 23663 1666 Sale \N \N 23 User \N create ---\ncustomer_id: 262\nuser_id: 23\nopen_cash_register_id: 662\namount: !ruby/object:BigDecimal 18:0.232672E4\ntax: !ruby/object:BigDecimal 18:0.37228E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2699E4\nstatus: 0\ndate_sale: 2019-12-12\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-166\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 f489feca-0168-4739-849c-8ac9a7d19c6d 2019-12-13 02:57:12.674605 23664 963 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.111.139 f489feca-0168-4739-849c-8ac9a7d19c6d 2019-12-13 02:57:12.735776 23665 1666 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-166 cancelada. 189.186.111.139 9c618556-0b67-4709-9993-e3737906751d 2019-12-13 02:57:29.771885 23666 963 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.111.139 9c618556-0b67-4709-9993-e3737906751d 2019-12-13 02:57:29.795458 23667 1667 Sale \N \N 23 User \N create ---\ncustomer_id: 262\nuser_id: 23\nopen_cash_register_id: 662\namount: !ruby/object:BigDecimal 18:0.232672E4\ntax: !ruby/object:BigDecimal 18:0.37228E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2699E4\nstatus: 0\ndate_sale: 2019-12-12\nsaletype: 0\nseller_id: 12\nsale_code: PV3-V-167\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 35e574d8-0ab6-4bd5-9288-89ef7150677c 2019-12-13 02:58:00.803692 23668 963 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.111.139 35e574d8-0ab6-4bd5-9288-89ef7150677c 2019-12-13 02:58:00.82874 23669 668 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 663\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2947E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.9E3\ncash_fund: !ruby/object:BigDecimal 18:0.758E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1658E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 ff0048a9-8f25-48de-ab63-f0cc426d9724 2019-12-13 03:03:49.879784 23670 663 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 ff0048a9-8f25-48de-ab63-f0cc426d9724 2019-12-13 03:03:49.893938 23671 669 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 664\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5145E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.35E4\ncash_fund: !ruby/object:BigDecimal 18:0.781E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4281E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 a5af63f7-71b3-410f-94f5-139e39ff3975 2019-12-13 03:04:44.281313 23672 664 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 a5af63f7-71b3-410f-94f5-139e39ff3975 2019-12-13 03:04:44.296767 23673 670 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 662\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.2199E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.26E4\ncash_fund: !ruby/object:BigDecimal 18:0.671E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3271E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 07cd7dc9-e9a3-4b9f-9506-4934d7e8633e 2019-12-13 03:16:22.486534 23674 662 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 07cd7dc9-e9a3-4b9f-9506-4934d7e8633e 2019-12-13 03:16:22.50081 23675 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-13 01:19:19.111580000 Z\n- &1 2019-12-13 02:14:52.348603000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-13 04:17:41.180292145 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938434\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938434\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\nsign_in_count:\n- 1085\n- 1086\n 2172 \N 189.186.211.119 6a18239d-b41d-42f8-82d6-a0e4c0b2036d 2019-12-13 04:17:41.212448 23676 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZmtjyXypvpFzuqQzodV7\n- WCxN3K8HANiSDuVTqizy\n 2173 \N 189.186.211.119 6a18239d-b41d-42f8-82d6-a0e4c0b2036d 2019-12-13 04:17:41.241068 23677 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-13 02:14:52.348603000 Z\n- &1 2019-12-13 04:17:41.180292000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-13 09:03:37.823640274 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938434\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\nsign_in_count:\n- 1086\n- 1087\n 2174 \N 189.186.211.119 1c5b9b85-a79a-4d93-a4ee-2dce1a346b5f 2019-12-13 09:03:37.832872 23678 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WCxN3K8HANiSDuVTqizy\n- YqcRRPte4zbT-tWxB2N-\n 2175 \N 189.186.211.119 1c5b9b85-a79a-4d93-a4ee-2dce1a346b5f 2019-12-13 09:03:37.854588 23679 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-13 04:17:41.180292000 Z\n- &1 2019-12-13 09:03:37.823640000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-13 15:33:45.972929815 Z\nsign_in_count:\n- 1087\n- 1088\n 2176 \N 189.186.211.119 3090d53a-fef1-4d54-9c6c-266b4c57582a 2019-12-13 15:33:46.010838 23680 4 User \N \N 4 User \N update ---\nunique_session_id:\n- YqcRRPte4zbT-tWxB2N-\n- qzEwiBks2Nd3xcqfy8Wq\n 2177 \N 189.186.211.119 3090d53a-fef1-4d54-9c6c-266b4c57582a 2019-12-13 15:33:46.042395 23681 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-12-11 16:59:01.096388000 Z\n- &1 2019-12-12 16:59:29.994208000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-13 17:09:27.400255455 Z\nsign_in_count:\n- 87\n- 88\n 176 \N 189.186.111.139 f56de103-4975-48ff-b739-f99b3c6e6c3b 2019-12-13 17:09:27.407903 23682 23 User \N \N 23 User \N update ---\nunique_session_id:\n- c9-NxURu6qdmQBwQgrnb\n- fChV5z71uez8qspxtbC-\n 177 \N 189.186.111.139 f56de103-4975-48ff-b739-f99b3c6e6c3b 2019-12-13 17:09:27.422536 23683 665 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.671E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 671.0 189.186.111.139 09ed4812-4298-43ec-b656-51d2b837dbc1 2019-12-13 17:10:46.812949 23684 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-11 17:09:01.567675000 Z\n- &1 2019-12-12 17:14:10.837842000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-13 17:11:32.851792206 Z\nsign_in_count:\n- 45\n- 46\n 92 \N 187.149.58.33 4d7bd91c-a265-4c6b-b812-4e6ec9a4eeac 2019-12-13 17:11:32.857567 23685 27 User \N \N 27 User \N update ---\nunique_session_id:\n- Te9k6C-kVfBGWZh98iug\n- zHzxrtf3f6QVHzAqe2aH\n 93 \N 187.149.58.33 4d7bd91c-a265-4c6b-b812-4e6ec9a4eeac 2019-12-13 17:11:32.869489 23686 666 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.758E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 758.0 187.149.58.33 c28a9599-0fd9-48f0-9166-47b064571bfe 2019-12-13 17:12:07.611343 23687 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-11 17:39:36.490031000 Z\n- &1 2019-12-12 18:37:10.846887000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-13 17:57:53.478464675 Z\nsign_in_count:\n- 399\n- 400\n 803 \N 187.149.58.33 ca72ff1e-9701-4575-b485-4e94d38f21a1 2019-12-13 17:57:53.486049 23688 2 User \N \N 2 User \N update ---\nunique_session_id:\n- zFY_ZND8pzrzdBhpY2E4\n- 94W_6mDfAqyuY5F7rsjg\n 804 \N 187.149.58.33 ca72ff1e-9701-4575-b485-4e94d38f21a1 2019-12-13 17:57:53.501645 23689 667 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.781E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 781.0 187.149.58.33 24682353-873a-44d7-8098-e78e172d1511 2019-12-13 17:58:11.818256 23690 1668 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 667\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-12-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-849\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 fe711e70-3d94-4f3d-9ea6-60c95b4cbde0 2019-12-13 17:59:10.640302 23691 1156 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 7 \N 187.149.58.33 fe711e70-3d94-4f3d-9ea6-60c95b4cbde0 2019-12-13 17:59:10.667592 23692 1668 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 05abd8fb-c1b3-403c-8e4a-8ff0567c5f62 2019-12-13 17:59:20.370349 23693 2319 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 667\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 1668\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-849\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.469E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-849 187.149.58.33 05abd8fb-c1b3-403c-8e4a-8ff0567c5f62 2019-12-13 17:59:20.392913 23694 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-13 09:03:37.823640000 Z\n- &1 2019-12-13 15:33:45.972929000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-13 18:10:47.753162970 Z\nsign_in_count:\n- 1088\n- 1089\n 2178 \N 189.186.211.119 c14d51ce-f2d3-458d-ae3f-b1d72be23353 2019-12-13 18:10:47.758761 23695 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qzEwiBks2Nd3xcqfy8Wq\n- e-Gkf-eMsjW3zp3Fs1s5\n 2179 \N 189.186.211.119 c14d51ce-f2d3-458d-ae3f-b1d72be23353 2019-12-13 18:10:47.772602 23696 1632 Sale \N \N 27 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV2-V-638 cancelada. 187.149.58.33 c00e8d2f-32ef-4116-8f4f-52326b44da99 2019-12-13 19:22:30.124953 23697 1084 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 187.149.58.33 c00e8d2f-32ef-4116-8f4f-52326b44da99 2019-12-13 19:22:30.147406 23698 1418 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 187.149.58.33 c00e8d2f-32ef-4116-8f4f-52326b44da99 2019-12-13 19:22:30.171054 23699 1658 Sale \N \N 27 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV2-V-649 cancelada. 187.149.58.33 5d6e1810-2f99-4b87-96ee-d5c0f6ed9f64 2019-12-13 19:24:31.455569 23700 1289 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.58.33 5d6e1810-2f99-4b87-96ee-d5c0f6ed9f64 2019-12-13 19:24:31.476197 23701 1669 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 666\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-12-13\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-651\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 013c792e-0a0d-47b8-99f7-241d4d02c12d 2019-12-13 19:26:13.965929 23702 1418 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 187.149.58.33 013c792e-0a0d-47b8-99f7-241d4d02c12d 2019-12-13 19:26:13.994445 23703 1669 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 2e741e73-fbc2-4c22-b383-1a1101213c5c 2019-12-13 19:26:18.308639 23745 1676 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 62de55ec-79e5-442b-97ae-6b04180d5b70 2019-12-14 02:11:21.064017 23704 2320 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 666\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 1669\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-651\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-651 187.149.58.33 2e741e73-fbc2-4c22-b383-1a1101213c5c 2019-12-13 19:26:18.330784 23705 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 18:37:51.707482000 Z\n- &1 2019-12-12 18:32:17.181752000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-13 21:37:35.528320646 Z\nsign_in_count:\n- 31\n- 32\n 64 \N 187.149.58.33 5c27dfec-bd3a-4a14-b034-615ea5b896c6 2019-12-13 21:37:35.535321 23706 24 User \N \N 24 User \N update ---\nunique_session_id:\n- TFc57Zo_HnCzYHepFjWZ\n- "-zCgpesThGcyUWtpbi3f"\n 65 \N 187.149.58.33 5c27dfec-bd3a-4a14-b034-615ea5b896c6 2019-12-13 21:37:35.549204 23707 1670 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 666\namount: !ruby/object:BigDecimal 18:0.759E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2019-12-13\nsaletype: 1\nseller_id: 22\nsale_code: PV2-V-652\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 26cb52e9-faa6-436f-9e2f-e9f221ffd2d8 2019-12-13 21:38:21.37414 23708 1092 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.58.33 26cb52e9-faa6-436f-9e2f-e9f221ffd2d8 2019-12-13 21:38:21.399305 23709 1670 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 d43915c8-163e-4d0c-ab9c-ae1dace15bc2 2019-12-13 21:38:36.209229 23710 2321 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 666\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.759E3\nmove_type: '1'\nsale_id: 1670\ncardnumber: 6338\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-652\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-652 187.149.58.33 d43915c8-163e-4d0c-ab9c-ae1dace15bc2 2019-12-13 21:38:36.248557 23711 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-11 23:48:11.853803000 Z\n- &1 2019-12-13 00:09:06.146655000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-13 21:53:56.710115082 Z\nsign_in_count:\n- 124\n- 125\n 250 \N 187.149.58.33 c3e1da31-eb1a-421d-8cc6-aff0e46b581e 2019-12-13 21:53:56.736796 23712 1 User \N \N 1 User \N update ---\nunique_session_id:\n- zSZDaK2839Bjs5-JGapi\n- B4sTyYsd7V381X6TzQDM\n 251 \N 187.149.58.33 c3e1da31-eb1a-421d-8cc6-aff0e46b581e 2019-12-13 21:53:56.75672 23713 1671 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 667\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-12-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-850\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 326c4ada-5e3e-4115-bb70-1f2ef0649a4e 2019-12-13 22:59:56.235961 23714 1382 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.58.33 326c4ada-5e3e-4115-bb70-1f2ef0649a4e 2019-12-13 22:59:56.264841 23715 1671 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 08df3f0b-efd9-4bb3-a489-bf52d9946222 2019-12-13 23:00:07.218104 23716 2322 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 667\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 1671\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-850\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-850 187.149.58.33 08df3f0b-efd9-4bb3-a489-bf52d9946222 2019-12-13 23:00:07.238384 23717 1672 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 667\namount: !ruby/object:BigDecimal 18:0.689E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.689E3\nstatus: 0\ndate_sale: 2019-12-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-851\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 4a623ca8-01c0-4bad-be4c-78e3cb3f1d33 2019-12-13 23:28:56.892329 23718 1161 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.58.33 4a623ca8-01c0-4bad-be4c-78e3cb3f1d33 2019-12-13 23:28:56.918941 23719 1672 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 851f9c80-deba-44d4-9c7b-0ff2f915dac9 2019-12-13 23:29:04.864466 23720 2323 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 667\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.689E3\nmove_type: '1'\nsale_id: 1672\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-851\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.689E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-851 187.149.58.33 851f9c80-deba-44d4-9c7b-0ff2f915dac9 2019-12-13 23:29:04.884913 23721 1673 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 666\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-13\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-653\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 ef8d52fb-7db6-4144-815a-2b4a7db04900 2019-12-14 00:16:03.46024 23722 802 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.58.33 ef8d52fb-7db6-4144-815a-2b4a7db04900 2019-12-14 00:16:03.488295 23723 1673 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 4a17318f-4190-4ff5-9146-f1db1e019972 2019-12-14 00:17:16.083373 23724 2324 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 666\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1673\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-653\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-653 187.149.58.33 4a17318f-4190-4ff5-9146-f1db1e019972 2019-12-14 00:17:16.106303 23746 1677 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 667\namount: !ruby/object:BigDecimal 18:0.138334E4\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.139699E4\nstatus: 0\ndate_sale: 2019-12-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-855\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 15195f03-63f9-4ac6-a89b-5e1d30358170 2019-12-14 02:17:16.338436 23725 2325 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 667\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.529E3\nmove_type: '1'\nsale_id: 1522\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.529E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-784 187.149.58.33 40948955-4389-4657-a6a0-c6c07698e5d6 2019-12-14 00:23:26.864689 23726 1522 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 28ae0abc-e81c-4741-8e29-1d8908eee2d6 2019-12-14 00:23:27.957258 23727 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-13 15:33:45.972929000 Z\n- &1 2019-12-13 18:10:47.753162000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-14 01:15:24.374931561 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938219\n mask_addr: 4294967295\nsign_in_count:\n- 1089\n- 1090\n 2180 \N 200.68.150.171 a079146c-cb10-41a6-a3ed-97081b38c69b 2019-12-14 01:15:24.383871 23728 4 User \N \N 4 User \N update ---\nunique_session_id:\n- e-Gkf-eMsjW3zp3Fs1s5\n- mwSvWBWRray6Kza8YxA4\n 2181 \N 200.68.150.171 a079146c-cb10-41a6-a3ed-97081b38c69b 2019-12-14 01:15:24.407285 23729 2326 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 665\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1561\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.11E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-148 189.186.111.139 78ef1d03-7eae-430e-9fc5-771d1507bf64 2019-12-14 01:24:13.860354 23730 2326 CashRegistersMove \N \N 23 User \N destroy ---\nopen_cash_register_id: 665\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1561\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.11E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.111.139 f5dfb810-8fc0-4ca9-825b-8852eb38be3b 2019-12-14 01:24:28.57713 23731 2327 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 665\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1028E4\nmove_type: '1'\nsale_id: 1561\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.72E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-148 189.186.111.139 a0b8a1b8-3ecf-4067-9ac0-cf0d51fdced7 2019-12-14 01:24:42.038154 23732 1561 Sale \N \N 23 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.111.139 6f22fb42-23d1-4d44-a8d5-e72b7c884343 2019-12-14 01:24:44.367751 23733 1674 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 667\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-12-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-852\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 3788e40e-389e-4a3b-94a3-d2ef88179db8 2019-12-14 01:39:36.384778 23734 1045 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.58.33 3788e40e-389e-4a3b-94a3-d2ef88179db8 2019-12-14 01:39:36.418453 23735 1674 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 89ebbd09-26b0-4302-a088-c168db057751 2019-12-14 01:39:41.413974 23736 2328 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 667\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 1674\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-852\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-852 187.149.58.33 89ebbd09-26b0-4302-a088-c168db057751 2019-12-14 01:39:41.441685 23737 1675 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 667\namount: !ruby/object:BigDecimal 18:0.949E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.949E3\nstatus: 0\ndate_sale: 2019-12-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-853\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 f173fa46-a167-4e0c-a9c5-4dad313b809b 2019-12-14 01:42:47.950176 23738 1410 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 f173fa46-a167-4e0c-a9c5-4dad313b809b 2019-12-14 01:42:47.97546 23739 1675 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 67f7fdc9-2204-43f3-94a0-0a5db33af649 2019-12-14 01:42:55.999208 23740 2329 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 667\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.949E3\nmove_type: '1'\nsale_id: 1675\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-853\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.949E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-853 187.149.58.33 67f7fdc9-2204-43f3-94a0-0a5db33af649 2019-12-14 01:42:56.019406 23741 263 Customer \N \N 2 User \N create ---\nnick_name: FABIOLA VALENZUELA ZAVALA\nphone: "(667) 182-4944"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente FABIOLA VALENZUELA ZAVALA fue registrado. 187.149.58.33 c7f1d7d7-b25c-4554-a381-5797c7ce0374 2019-12-14 02:10:47.636709 23742 1676 Sale \N \N 2 User \N create ---\ncustomer_id: 263\nuser_id: 2\nopen_cash_register_id: 667\namount: !ruby/object:BigDecimal 18:0.239E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.239E3\nstatus: 0\ndate_sale: 2019-12-13\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-854\nexpiration_date: 2020-01-17\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 3eb99bdf-b323-4fe1-b4c5-bae90b7c1b79 2019-12-14 02:11:12.404201 23743 1323 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.58.33 3eb99bdf-b323-4fe1-b4c5-bae90b7c1b79 2019-12-14 02:11:12.431772 23744 2330 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 667\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 1676\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-854\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-854 187.149.58.33 a522d866-2f0e-4a7d-bcc7-095830ac44ad 2019-12-14 02:11:19.24886 23747 486 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 21 \N 187.149.58.33 15195f03-63f9-4ac6-a89b-5e1d30358170 2019-12-14 02:17:16.370654 23748 1166 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 6 \N 187.149.58.33 15195f03-63f9-4ac6-a89b-5e1d30358170 2019-12-14 02:17:16.397417 23749 1097 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 14 \N 187.149.58.33 15195f03-63f9-4ac6-a89b-5e1d30358170 2019-12-14 02:17:16.421567 23750 1677 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 0dd5ed5a-272d-42aa-a9a6-34f832c62c3f 2019-12-14 02:17:30.523525 23751 2331 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 667\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.139699E4\nmove_type: '1'\nsale_id: 1677\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-855\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.139699E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-855 187.149.58.33 0dd5ed5a-272d-42aa-a9a6-34f832c62c3f 2019-12-14 02:17:30.547954 23752 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-13 18:10:47.753162000 Z\n- &1 2019-12-14 01:15:24.374931000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-14 02:20:27.985456916 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938219\n mask_addr: 4294967295\nsign_in_count:\n- 1090\n- 1091\n 2182 \N 200.68.150.171 df8c9465-8783-4d36-b21f-2b77492b7e70 2019-12-14 02:20:27.999562 23753 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mwSvWBWRray6Kza8YxA4\n- 2egmSsj-vnxXLaX1zgx4\n 2183 \N 200.68.150.171 df8c9465-8783-4d36-b21f-2b77492b7e70 2019-12-14 02:20:28.025849 23754 671 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 667\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.663099E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.64E4\ncash_fund: !ruby/object:BigDecimal 18:0.1012E4\nphysical_cash: !ruby/object:BigDecimal 18:0.7412E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 efa55d44-1c76-4507-9c71-340fa35b9d39 2019-12-14 02:55:18.769877 23755 667 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 efa55d44-1c76-4507-9c71-340fa35b9d39 2019-12-14 02:55:18.783599 23756 672 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 665\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.1028E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.699E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1699E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 6330234a-324a-45c7-a6d2-301ef9d480b6 2019-12-14 02:59:58.168037 23757 665 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 6330234a-324a-45c7-a6d2-301ef9d480b6 2019-12-14 02:59:58.180991 23758 673 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 666\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2457E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.11E4\ncash_fund: !ruby/object:BigDecimal 18:0.1356E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2456E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 ab0981ec-e607-45a2-b2f8-22d97c8c8a31 2019-12-14 03:02:10.408945 23759 666 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 ab0981ec-e607-45a2-b2f8-22d97c8c8a31 2019-12-14 03:02:10.42113 23760 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-14 01:15:24.374931000 Z\n- &1 2019-12-14 02:20:27.985456000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-14 05:08:40.641683120 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938219\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945659\n mask_addr: 4294967295\nsign_in_count:\n- 1091\n- 1092\n 2184 \N 200.68.179.187 6c8725cd-af95-43c0-80bf-cac1578fc7d2 2019-12-14 05:08:40.653991 23761 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2egmSsj-vnxXLaX1zgx4\n- Vr8GcSJ3WgN3U_yPAz9x\n 2185 \N 200.68.179.187 6c8725cd-af95-43c0-80bf-cac1578fc7d2 2019-12-14 05:08:40.679238 23762 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-14 02:20:27.985456000 Z\n- &1 2019-12-14 05:08:40.641683000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-14 07:07:04.114621339 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938219\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945659\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945659\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\nsign_in_count:\n- 1092\n- 1093\n 2186 \N 189.186.211.119 eced62f8-92a1-49b4-bfe6-b48dccd34fed 2019-12-14 07:07:04.127455 23763 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Vr8GcSJ3WgN3U_yPAz9x\n- hbHg2N3eBZTYLKtRQqjn\n 2187 \N 189.186.211.119 eced62f8-92a1-49b4-bfe6-b48dccd34fed 2019-12-14 07:07:04.154537 23764 23 User \N \N 23 User \N update ---\nlast_sign_in_at:\n- 2019-12-12 16:59:29.994208000 Z\n- &1 2019-12-13 17:09:27.400255000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-14 16:54:40.272942632 Z\nsign_in_count:\n- 88\n- 89\n 178 \N 189.186.111.139 0ea14772-fd34-43be-a22b-0bfe6dcaeb7a 2019-12-14 16:54:40.309015 23765 23 User \N \N 23 User \N update ---\nunique_session_id:\n- fChV5z71uez8qspxtbC-\n- ZnyNzqKksqPpRFmoP4zA\n 179 \N 189.186.111.139 0ea14772-fd34-43be-a22b-0bfe6dcaeb7a 2019-12-14 16:54:40.332403 23766 668 OpenCashRegister \N \N 23 User \N create ---\ncash_register_id: 3\nuser_id: 23\ninitial_cash: !ruby/object:BigDecimal 18:0.699E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 699.0 189.186.111.139 612f6827-ded2-4706-b5a7-1e093dec8a5d 2019-12-14 16:54:53.663585 23767 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-08 22:04:51.976670000 Z\n- &1 2019-12-09 17:58:10.614984000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-14 17:08:17.614298565 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 56\n- 57\n 115 \N 187.149.58.33 15ecb978-2cc9-422a-9348-2f84c6cf5f12 2019-12-14 17:08:17.64167 23768 21 User \N \N 21 User \N update ---\nunique_session_id:\n- j8uVDjyRePpkfZMkkxfS\n- RJCce9vaq-Et9hsNXDoP\n 116 \N 187.149.58.33 15ecb978-2cc9-422a-9348-2f84c6cf5f12 2019-12-14 17:08:17.661739 23769 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-12 18:37:10.846887000 Z\n- &1 2019-12-13 17:57:53.478464000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-14 17:59:29.761127527 Z\nsign_in_count:\n- 400\n- 401\n 805 \N 187.149.58.33 a398c183-f1b1-4693-8354-67dcec9bef0e 2019-12-14 17:59:29.767033 23770 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 94W_6mDfAqyuY5F7rsjg\n- v1rBSLLDo2hfRe3t_CZw\n 806 \N 187.149.58.33 a398c183-f1b1-4693-8354-67dcec9bef0e 2019-12-14 17:59:29.781275 23794 25 User \N \N 25 User \N update ---\nunique_session_id:\n- THvpRyjNsRDQF1ZJzLXh\n- B52v-4smyYDqztvQZ-Ds\n 119 \N 187.149.58.33 96e2a790-2053-4d31-997a-2da117b2913b 2019-12-14 19:10:41.057787 23771 669 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1012E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1012.0 187.149.58.33 9c416088-089e-464f-8523-c84233eb2fb7 2019-12-14 18:02:27.323993 23772 237 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 669\nquantity: !ruby/object:BigDecimal 18:0.25E2\nstatus: 1\nobservations: garrafon de agua\nexpense_date: 2019-12-14\nexpense_code: PV1-E-168\n 1 Egreso por 25.0 registrado 187.149.58.33 8dcc72b0-db1c-43ff-9327-763fe21ec4c9 2019-12-14 18:26:05.513461 23773 2332 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 669\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 237\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 8dcc72b0-db1c-43ff-9327-763fe21ec4c9 2019-12-14 18:26:05.555586 23774 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-12-12 18:32:17.181752000 Z\n- &1 2019-12-13 21:37:35.528320000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-14 18:58:26.440492557 Z\nsign_in_count:\n- 32\n- 33\n 66 \N 187.149.58.33 bb4b64f4-72db-4f5f-96ca-636e58272fb7 2019-12-14 18:58:26.447322 23775 24 User \N \N 24 User \N update ---\nunique_session_id:\n- "-zCgpesThGcyUWtpbi3f"\n- GfM2V4Drw4WQH5bYwKvw\n 67 \N 187.149.58.33 bb4b64f4-72db-4f5f-96ca-636e58272fb7 2019-12-14 18:58:26.459084 23776 670 OpenCashRegister \N \N 24 User \N create ---\ncash_register_id: 2\nuser_id: 24\ninitial_cash: !ruby/object:BigDecimal 18:0.1356E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1356.0 187.149.58.33 7dfb1589-9086-4030-b95f-bfccd421cb5b 2019-12-14 18:58:31.343235 23777 1678 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 669\namount: !ruby/object:BigDecimal 18:0.739E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.739E3\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 20\nsale_code: PV1-V-856\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 aebbc89a-355b-4f8f-aa59-78da0a22b6ad 2019-12-14 19:01:13.800369 23778 1242 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.58.33 aebbc89a-355b-4f8f-aa59-78da0a22b6ad 2019-12-14 19:01:13.82839 23779 1678 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 5ff8457e-862b-4e2c-92b9-65d0a23efe7f 2019-12-14 19:01:27.640273 23780 2333 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 669\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.739E3\nmove_type: '1'\nsale_id: 1678\ncardnumber: 9747\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-856\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-856 187.149.58.33 5ff8457e-862b-4e2c-92b9-65d0a23efe7f 2019-12-14 19:01:27.66092 23781 1679 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 670\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 22\nsale_code: PV2-V-654\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 fbe9049e-1ad3-480f-aa40-16c81e0c6b98 2019-12-14 19:01:41.251276 23782 802 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.58.33 fbe9049e-1ad3-480f-aa40-16c81e0c6b98 2019-12-14 19:01:41.277955 23783 1679 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 b2bb1f1e-86a6-40f7-81a6-f303d0966629 2019-12-14 19:01:57.427697 23784 2334 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 670\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1679\ncardnumber: 9447\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-654\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-654 187.149.58.33 b2bb1f1e-86a6-40f7-81a6-f303d0966629 2019-12-14 19:01:57.446292 23785 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 23:53:22.701250000 Z\n- &1 2019-12-10 20:46:32.731622000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-14 19:05:12.483845114 Z\nsign_in_count:\n- 53\n- 54\n 108 \N 187.149.58.33 49a60f96-a063-4bad-ade7-6483a9bab8be 2019-12-14 19:05:12.489809 23786 26 User \N \N 26 User \N update ---\nunique_session_id:\n- Y9srPE7ZcJwy4TXQHQUX\n- FQnLKFYa-yansh119QEf\n 109 \N 187.149.58.33 49a60f96-a063-4bad-ade7-6483a9bab8be 2019-12-14 19:05:12.501825 23787 1680 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 670\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-655\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 2f599104-f440-42d8-b140-88e2f5fac6f0 2019-12-14 19:05:57.448963 23788 1218 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.58.33 2f599104-f440-42d8-b140-88e2f5fac6f0 2019-12-14 19:05:57.479746 23789 1680 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 efe565a9-297c-4fd4-a7ae-03795fb008b7 2019-12-14 19:06:14.313181 23790 2335 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 670\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 1680\ncardnumber: 1391\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-655\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-655 187.149.58.33 efe565a9-297c-4fd4-a7ae-03795fb008b7 2019-12-14 19:06:14.337707 23791 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-14 05:08:40.641683000 Z\n- &1 2019-12-14 07:07:04.114621000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-14 19:08:07.022946511 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945659\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1093\n- 1094\n 2188 \N 187.149.58.33 15c1976e-a996-4c96-95b6-e54493b448c5 2019-12-14 19:08:07.030387 23792 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hbHg2N3eBZTYLKtRQqjn\n- XMY4T2EAdiVkns-XswxD\n 2189 \N 187.149.58.33 15c1976e-a996-4c96-95b6-e54493b448c5 2019-12-14 19:08:07.047997 23793 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 23:43:31.209441000 Z\n- &1 2019-12-07 23:46:20.323771000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-14 19:10:41.041083982 Z\nsign_in_count:\n- 58\n- 59\n 118 \N 187.149.58.33 96e2a790-2053-4d31-997a-2da117b2913b 2019-12-14 19:10:41.046454 23795 1681 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 669\namount: !ruby/object:BigDecimal 18:0.739E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.739E3\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-857\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 40e8b748-7e17-4619-bac1-52d40e547653 2019-12-14 19:11:04.330429 23796 1242 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.58.33 40e8b748-7e17-4619-bac1-52d40e547653 2019-12-14 19:11:04.354263 23797 1681 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 c7af6672-db31-4445-a2f8-82e9e3c6e098 2019-12-14 19:11:30.139019 23798 2336 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 669\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.739E3\nmove_type: '1'\nsale_id: 1681\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-857\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: KINDER\n 1 movimiento de efectivo por venta con folio PV1-V-857 187.149.58.33 c7af6672-db31-4445-a2f8-82e9e3c6e098 2019-12-14 19:11:30.16088 23799 1682 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 670\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 22\nsale_code: PV2-V-655\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 7b352919-faa8-4798-9cf5-69b6d536afcf 2019-12-14 19:17:20.114344 23800 1084 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.58.33 7b352919-faa8-4798-9cf5-69b6d536afcf 2019-12-14 19:17:20.139726 23801 1682 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 ad5f95a3-55fe-46fb-9117-cdf12fd79f64 2019-12-14 19:17:48.993696 23802 2337 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 670\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 1682\ncardnumber: 5540\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-655\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-655 187.149.58.33 ad5f95a3-55fe-46fb-9117-cdf12fd79f64 2019-12-14 19:17:49.015436 23803 1683 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 669\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 20\nsale_code: PV1-V-857\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 d620fcca-e291-4255-87e5-25e003d37204 2019-12-14 19:26:46.055779 23804 1044 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 d620fcca-e291-4255-87e5-25e003d37204 2019-12-14 19:26:46.089963 23805 1683 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 3067cbfd-d966-42d1-bba1-90f2730f6344 2019-12-14 19:27:52.485938 23806 2338 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 669\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 1683\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-857\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-857 187.149.58.33 3067cbfd-d966-42d1-bba1-90f2730f6344 2019-12-14 19:27:52.506551 23807 1684 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 670\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-657\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 a49e7760-c9fb-4bef-bc47-b58cf7462aa2 2019-12-14 19:29:26.495149 23808 1375 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.58.33 a49e7760-c9fb-4bef-bc47-b58cf7462aa2 2019-12-14 19:29:26.520453 23809 1684 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 023b6c1c-3163-4c06-8967-4f1f458a94ab 2019-12-14 19:29:46.68421 23810 2339 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 670\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1684\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-657\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-657 187.149.58.33 023b6c1c-3163-4c06-8967-4f1f458a94ab 2019-12-14 19:29:46.705331 23811 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-14 07:07:04.114621000 Z\n- &1 2019-12-14 19:08:07.022946000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-14 19:33:54.322704098 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\nsign_in_count:\n- 1094\n- 1095\n 2190 \N 189.186.211.119 a6d63c80-d43a-4e0b-a029-ed0d8813e752 2019-12-14 19:33:54.330388 23812 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XMY4T2EAdiVkns-XswxD\n- 4Uasz5dA17L6FSJk-7Wz\n 2191 \N 189.186.211.119 a6d63c80-d43a-4e0b-a029-ed0d8813e752 2019-12-14 19:33:54.347284 23813 1685 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 669\namount: !ruby/object:BigDecimal 18:0.64124E3\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.648E3\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-859\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 2cbb2f03-a6c4-47c6-bb55-9371cabc4c59 2019-12-14 19:45:39.756798 23814 1064 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.58.33 2cbb2f03-a6c4-47c6-bb55-9371cabc4c59 2019-12-14 19:45:39.782176 23815 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.33E2\n- !ruby/object:BigDecimal 18:0.32E2\n 4 \N 187.149.58.33 2cbb2f03-a6c4-47c6-bb55-9371cabc4c59 2019-12-14 19:45:39.820411 23816 1685 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 63e5d07a-8d60-47e6-98f6-521ae1bb2eaa 2019-12-14 19:45:44.073763 44680 1503 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1503'\n is_parent: false\n sku: BLU-1503\n name: BLS-0156\n description: BLUSA TIPO CAMISA NEGRA CON FIGURAS EN MANGA THEMOON\n price_base: '528.0'\n price_sale: '999.0'\n img_product: 89A48CCB-299C-412A-ACA7-31AEB53FF9E4.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001503'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 20:58:43.277494'\n updated_at: &12 2020-11-03 21:23:37.653741976 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1503'\n sku: BLU-1503\n name: BLS-0156\n description: BLUSA TIPO CAMISA NEGRA CON FIGURAS EN MANGA THEMOON\n price_base: '528.00'\n price_sale: '999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 20:58:43.277494'\n updated_at: '2020-11-03 20:58:43.31175'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001503'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1503'\n type: *3\n value: 1503\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1503\n type: *7\n value: BLU-1503\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0156\n type: *8\n value: BLS-0156\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA TIPO CAMISA NEGRA CON FIGURAS EN MANGA THEMOON\n type: *6\n value: BLUSA TIPO CAMISA NEGRA CON FIGURAS EN MANGA THEMOON\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '528.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.528E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 89A48CCB-299C-412A-ACA7-31AEB53FF9E4.jpeg\n type: *2\n value: 89A48CCB-299C-412A-ACA7-31AEB53FF9E4.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001503'\n type: *2\n value: '0001503'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 20:58:43.277494'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 89A48CCB-299C-412A-ACA7-31AEB53FF9E4.jpeg\n 3 El producto BLU-1503 fue modificado. 187.149.136.226 ffa45c38-8fc1-45b1-89e2-230a6304ad04 2020-11-03 21:23:37.699587 23817 2340 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 669\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.648E3\nmove_type: '1'\nsale_id: 1685\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-859\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.648E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-859 187.149.58.33 63e5d07a-8d60-47e6-98f6-521ae1bb2eaa 2019-12-14 19:45:44.093522 23818 1686 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 668\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-168\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 8b4b7d2a-7e77-42da-9ecf-61c57f03e483 2019-12-14 20:10:41.571228 23819 1417 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.111.139 8b4b7d2a-7e77-42da-9ecf-61c57f03e483 2019-12-14 20:10:41.596719 23820 1686 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 62d3c6fd-8ab0-4866-9cb0-9c56e8fff854 2019-12-14 20:10:55.638174 23821 2341 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 668\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 1686\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-168\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-168 189.186.111.139 62d3c6fd-8ab0-4866-9cb0-9c56e8fff854 2019-12-14 20:10:55.658361 23822 1687 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 669\namount: !ruby/object:BigDecimal 18:0.779E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.779E3\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 20\nsale_code: PV1-V-860\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 13ba9fda-37f1-42ff-8291-b5f935ea823e 2019-12-14 20:39:50.294369 23823 1274 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.58.33 13ba9fda-37f1-42ff-8291-b5f935ea823e 2019-12-14 20:39:50.322958 23824 1687 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 afeea757-f63a-487c-9a79-e0ec0ebc8702 2019-12-14 20:40:34.907061 23825 2342 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 669\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.779E3\nmove_type: '1'\nsale_id: 1687\ncardnumber: 6094\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-860\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-860 187.149.58.33 afeea757-f63a-487c-9a79-e0ec0ebc8702 2019-12-14 20:40:34.929339 23826 1688 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 669\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 20\nsale_code: PV1-V-861\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 6a535f30-bbfb-488c-8043-fc9d894e18fc 2019-12-14 20:45:47.519666 23827 1045 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.58.33 6a535f30-bbfb-488c-8043-fc9d894e18fc 2019-12-14 20:45:47.545382 23828 1688 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 31a830f3-da34-48f5-89df-cf4edb7604d6 2019-12-14 20:46:39.103235 23829 2343 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 669\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 1688\ncardnumber: 9622\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-861\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-861 187.149.58.33 31a830f3-da34-48f5-89df-cf4edb7604d6 2019-12-14 20:46:39.124945 23830 1689 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 669\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-862\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 096e64f4-1fed-4550-89c6-6c228723d4cc 2019-12-14 21:04:43.281101 23831 1367 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 096e64f4-1fed-4550-89c6-6c228723d4cc 2019-12-14 21:04:43.307134 23832 1689 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 9c4e056b-c6c2-4ff9-87a6-2cf8f7eec9d2 2019-12-14 21:04:52.697873 23833 2344 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 669\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 1689\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-862\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1399E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-862 187.149.58.33 9c4e056b-c6c2-4ff9-87a6-2cf8f7eec9d2 2019-12-14 21:04:52.718634 23834 1690 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 669\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 20\nsale_code: PV1-V-863\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 4fd25876-7f65-449c-b9b8-7df41c610f93 2019-12-14 21:23:58.018039 23835 1371 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.58.33 4fd25876-7f65-449c-b9b8-7df41c610f93 2019-12-14 21:23:58.046228 23836 1690 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 9d55f714-890c-42aa-a740-47d90b8fdd37 2019-12-14 21:24:49.986606 23837 2345 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 669\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1690\ncardnumber: 1365\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-863\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-863 187.149.58.33 9d55f714-890c-42aa-a740-47d90b8fdd37 2019-12-14 21:24:50.007535 23838 346 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-14\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.58.33 4f120357-2d95-4aa7-b365-da1b096e0332 2019-12-14 21:39:05.846939 23839 1437 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 944\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 4f120357-2d95-4aa7-b365-da1b096e0332 2019-12-14 21:39:05.868323 23840 1438 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 775\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 4f120357-2d95-4aa7-b365-da1b096e0332 2019-12-14 21:39:05.888957 23841 1439 AvailableProduct \N \N 26 User \N create ---\nproduct_id: 790\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 4f120357-2d95-4aa7-b365-da1b096e0332 2019-12-14 21:39:05.908674 23842 803 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.4E1\n 16 \N 187.149.58.33 4f120357-2d95-4aa7-b365-da1b096e0332 2019-12-14 21:39:05.927108 23843 1254 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.58.33 4f120357-2d95-4aa7-b365-da1b096e0332 2019-12-14 21:39:05.947591 23844 343 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-14\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.58.33 50ee04f6-6bbf-4d18-afea-2d81dec90f10 2019-12-14 21:39:13.994419 23845 805 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.12E2\n 6 \N 187.149.58.33 50ee04f6-6bbf-4d18-afea-2d81dec90f10 2019-12-14 21:39:14.010433 23846 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-14 19:08:07.022946000 Z\n- &1 2019-12-14 19:33:54.322704000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-14 21:44:00.698058750 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1095\n- 1096\n 2192 \N 187.149.58.33 99f382f0-5701-4345-b98d-122c61b7edc4 2019-12-14 21:44:00.705794 23847 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4Uasz5dA17L6FSJk-7Wz\n- K5Dsn8ZFMdALhpTVL9NW\n 2193 \N 187.149.58.33 99f382f0-5701-4345-b98d-122c61b7edc4 2019-12-14 21:44:00.722718 23848 1691 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 669\namount: !ruby/object:BigDecimal 18:0.2967E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2E3\ntotal: !ruby/object:BigDecimal 18:0.2767E4\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-864\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 460ae2ab-6209-42a3-bce7-ce42d98ea5f3 2019-12-14 22:10:31.30859 23849 1156 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 187.149.58.33 460ae2ab-6209-42a3-bce7-ce42d98ea5f3 2019-12-14 22:10:31.334363 23850 1434 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.58.33 460ae2ab-6209-42a3-bce7-ce42d98ea5f3 2019-12-14 22:10:31.372024 23851 1409 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.58.33 460ae2ab-6209-42a3-bce7-ce42d98ea5f3 2019-12-14 22:10:31.393784 23852 1691 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 347737a2-53dc-47c7-ad91-c89bdf74bd51 2019-12-14 22:10:51.309272 23853 2346 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 669\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2767E4\nmove_type: '1'\nsale_id: 1691\ncardnumber: 7615\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-864\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-864 187.149.58.33 347737a2-53dc-47c7-ad91-c89bdf74bd51 2019-12-14 22:10:51.328316 23854 1692 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 669\namount: !ruby/object:BigDecimal 18:0.8534E2\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9899E2\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-865\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 318ee266-9b32-4991-9ea0-90dcf0f7bf6c 2019-12-14 22:11:48.179837 23855 486 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 22 \N 187.149.58.33 318ee266-9b32-4991-9ea0-90dcf0f7bf6c 2019-12-14 22:11:48.204824 23856 1692 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 bb166c64-ad94-48b5-8ab2-a8fcb6368ce0 2019-12-14 22:12:04.842116 23857 2347 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 669\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.9899E2\nmove_type: '1'\nsale_id: 1692\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-865\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9899E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-865 187.149.58.33 bb166c64-ad94-48b5-8ab2-a8fcb6368ce0 2019-12-14 22:12:04.861932 23858 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-09 17:58:10.614984000 Z\n- &1 2019-12-14 17:08:17.614298000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-14 22:23:53.359336692 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 57\n- 58\n 117 \N 187.149.58.33 0c5e84d4-3970-4cec-b900-56baef0acecb 2019-12-14 22:23:53.366276 23859 21 User \N \N 21 User \N update ---\nunique_session_id:\n- RJCce9vaq-Et9hsNXDoP\n- AxoavBuF5eyL2DUP5z7v\n 118 \N 187.149.58.33 0c5e84d4-3970-4cec-b900-56baef0acecb 2019-12-14 22:23:53.379103 23860 2348 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 662\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 1667\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 37ef5bf1-638b-4711-8c9c-5f718a31b283 2019-12-14 22:24:19.239919 23861 1667 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 37ef5bf1-638b-4711-8c9c-5f718a31b283 2019-12-14 22:24:19.266245 23862 2348 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 662\n- 668\n 2 movimiento de efectivo por venta con folio PV3-V-167 187.149.58.33 37ef5bf1-638b-4711-8c9c-5f718a31b283 2019-12-14 22:24:19.276472 23863 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-14 19:33:54.322704000 Z\n- &1 2019-12-14 21:44:00.698058000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-14 22:26:00.990941983 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1096\n- 1097\n 2194 \N 187.149.58.33 17a7eb0a-76fc-420b-be33-21fc98f1457f 2019-12-14 22:26:00.997829 23864 4 User \N \N 4 User \N update ---\nunique_session_id:\n- K5Dsn8ZFMdALhpTVL9NW\n- CX8BaxqWeC23ZK2eyLsF\n 2195 \N 187.149.58.33 17a7eb0a-76fc-420b-be33-21fc98f1457f 2019-12-14 22:26:01.012615 23865 1693 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 670\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-658\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 ab78d4ff-e78b-4f00-93a8-759445498fa8 2019-12-14 23:18:53.507581 23866 1376 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.58.33 ab78d4ff-e78b-4f00-93a8-759445498fa8 2019-12-14 23:18:53.5322 23867 1693 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 c4be5a50-a11e-49e5-80a4-4312a8001777 2019-12-14 23:19:17.386937 23868 2349 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 670\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1693\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-658\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-658 187.149.58.33 c4be5a50-a11e-49e5-80a4-4312a8001777 2019-12-14 23:19:17.407057 23869 1694 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 670\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-659\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 91009e4e-5a88-4f94-9d02-de3b036aee84 2019-12-14 23:26:02.090062 23870 1287 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.58.33 91009e4e-5a88-4f94-9d02-de3b036aee84 2019-12-14 23:26:02.114363 23871 1694 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 a8a32dc6-2dc9-4a28-a730-776ea02b61ce 2019-12-14 23:26:12.788463 23872 2350 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 670\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 1694\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-659\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-659 187.149.58.33 a8a32dc6-2dc9-4a28-a730-776ea02b61ce 2019-12-14 23:26:12.808143 23873 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-13 00:09:06.146655000 Z\n- &1 2019-12-13 21:53:56.710115000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-14 23:29:29.212895514 Z\nsign_in_count:\n- 125\n- 126\n 252 \N 187.149.58.33 38814167-4481-4f69-9975-baa639de83fa 2019-12-14 23:29:29.21879 23874 1 User \N \N 1 User \N update ---\nunique_session_id:\n- B4sTyYsd7V381X6TzQDM\n- e1Up88Wfarzud7xQN4XM\n 253 \N 187.149.58.33 38814167-4481-4f69-9975-baa639de83fa 2019-12-14 23:29:29.230185 23875 1695 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 670\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-660\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 777cfb20-e19f-4a77-8f4c-7cacfe12d069 2019-12-14 23:45:39.429219 23876 806 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 35 \N 187.149.58.33 777cfb20-e19f-4a77-8f4c-7cacfe12d069 2019-12-14 23:45:39.453692 23877 1695 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 c60e3211-7742-48db-9c0d-01c890bcce4b 2019-12-14 23:46:55.64008 23878 2351 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 670\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1695\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-660\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-660 187.149.58.33 c60e3211-7742-48db-9c0d-01c890bcce4b 2019-12-14 23:46:55.665269 23879 1696 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 669\namount: !ruby/object:BigDecimal 18:0.1349E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1349E4\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-866\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 79d61fef-b67f-40fb-9b01-9303bb47926c 2019-12-15 00:07:23.734185 23880 1245 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 79d61fef-b67f-40fb-9b01-9303bb47926c 2019-12-15 00:07:23.758091 23881 1696 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 5c37283e-8342-45fe-a6c2-cb4ece6b7fa4 2019-12-15 00:07:57.604388 23882 2352 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 669\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1349E4\nmove_type: '1'\nsale_id: 1696\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-866\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1349E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-866 187.149.58.33 5c37283e-8342-45fe-a6c2-cb4ece6b7fa4 2019-12-15 00:07:57.62504 23883 1697 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 668\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-169\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 5e3e1a3c-074a-43c5-8388-7195cc56e452 2019-12-15 00:13:21.610795 23884 1402 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.111.139 5e3e1a3c-074a-43c5-8388-7195cc56e452 2019-12-15 00:13:21.638447 23885 1697 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-169 cancelada. 189.186.111.139 c4f93c9f-33a7-4617-8e2b-77fd9c6cce51 2019-12-15 00:17:48.15929 23886 1402 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.111.139 c4f93c9f-33a7-4617-8e2b-77fd9c6cce51 2019-12-15 00:17:48.180979 23887 1698 Sale \N \N 23 User \N create ---\ncustomer_id: 1\nuser_id: 23\nopen_cash_register_id: 668\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.33584E3\ntotal: !ruby/object:BigDecimal 18:0.176316E4\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 13\nsale_code: PV3-V-170\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 2e284e60-92cc-4dc6-91ec-fd6f9c892c7d 2019-12-15 00:18:46.817685 23888 1402 AvailableProduct \N \N 23 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.111.139 2e284e60-92cc-4dc6-91ec-fd6f9c892c7d 2019-12-15 00:18:46.842668 23889 1698 Sale \N \N 23 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.139 c4f8360a-e2fe-40cd-afa6-2c717562c6fa 2019-12-15 00:19:49.330984 23890 2353 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 668\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.1763E4\nmove_type: '1'\nsale_id: 1698\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-170\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: '1234'\ncustomer_account: '1234'\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-170 189.186.111.139 c4f8360a-e2fe-40cd-afa6-2c717562c6fa 2019-12-15 00:19:49.36515 23891 2354 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 668\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.1763E4\nmove_type: '1'\nsale_id: 1698\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-170\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: '1234'\ncustomer_account: '1234'\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-170 189.186.111.139 478c6bf3-5e0f-4c87-a6db-b958e517064e 2019-12-15 00:20:14.277018 23892 2353 CashRegistersMove \N \N 23 User \N destroy ---\nopen_cash_register_id: 668\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 18:0.1763E4\nmove_type: '1'\nsale_id: 1698\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-170\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: '1234'\ncustomer_account: '1234'\ncustomer_code: ''\n 2 \N 189.186.111.139 5daa1aaa-ebeb-4e22-b1e4-2d7352262bdf 2019-12-15 00:20:19.921822 23893 2355 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 668\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.1763E4\nmove_type: '1'\nsale_id: 1698\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-170\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: '1234'\ncustomer_account: '1234'\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-170 189.186.111.139 7e3425ee-765c-43e2-a03d-32be287b81a0 2019-12-15 00:20:56.036923 23894 2354 CashRegistersMove \N \N 23 User \N destroy ---\nopen_cash_register_id: 668\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 18:0.1763E4\nmove_type: '1'\nsale_id: 1698\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-170\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: '1234'\ncustomer_account: '1234'\ncustomer_code: ''\n 2 \N 189.186.111.139 e5bad6be-b1e3-4ef6-b585-cd3014b7fb5d 2019-12-15 00:20:59.700451 23895 2355 CashRegistersMove \N \N 23 User \N destroy ---\nopen_cash_register_id: 668\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 18:0.1763E4\nmove_type: '1'\nsale_id: 1698\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-170\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: '1234'\ncustomer_account: '1234'\ncustomer_code: ''\n 2 \N 189.186.111.139 9e58fb73-7e81-4035-8eb2-e667eeb52d61 2019-12-15 00:21:30.111702 23896 2356 CashRegistersMove \N \N 23 User \N create ---\nopen_cash_register_id: 668\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.176316E4\nmove_type: '1'\nsale_id: 1698\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-170\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: '1234'\ncustomer_account: '1234'\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-170 189.186.111.139 4b678cf5-e88e-44f2-8ede-4a5cd4583aa8 2019-12-15 00:21:47.267648 23897 1699 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 670\namount: !ruby/object:BigDecimal 18:0.1129E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1129E4\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-661\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 b4e3c53a-f91a-41da-b84b-21d43b67acd1 2019-12-15 00:35:24.653606 23898 1085 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.58.33 b4e3c53a-f91a-41da-b84b-21d43b67acd1 2019-12-15 00:35:24.682504 23899 1699 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 0a612c2b-a313-434d-8a90-d55cf3a91d53 2019-12-15 00:35:41.162394 23900 2357 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 670\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1129E4\nmove_type: '1'\nsale_id: 1699\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-661\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.115E4\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-661 187.149.58.33 0a612c2b-a313-434d-8a90-d55cf3a91d53 2019-12-15 00:35:41.183634 23901 1700 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 669\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-867\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 381f7811-28e7-43cb-81a9-b5942cc348ef 2019-12-15 00:38:36.927169 23902 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.58.33 381f7811-28e7-43cb-81a9-b5942cc348ef 2019-12-15 00:38:36.977588 23903 1700 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 24f10bdc-e87d-4c3c-96c7-f3e84a2d25eb 2019-12-15 00:39:16.160161 44681 1504 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1504'\n is_parent: false\n sku: CHA-1504\n name: CHA-0026\n description: CHAMARRA TIPO SASTRE CON PIEL NEGRA LC\n price_base: '324.5'\n price_sale: '999.0'\n img_product: 5E27C988-B148-4593-B03C-51053B6B12B5.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001504'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 21:04:05.083333'\n updated_at: &12 2020-11-03 21:25:06.979989401 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1504'\n sku: CHA-1504\n name: CHA-0026\n description: CHAMARRA TIPO SASTRE CON PIEL NEGRA LC\n price_base: '324.50'\n price_sale: '999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 21:04:05.083333'\n updated_at: '2020-11-03 21:04:05.1248'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001504'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1504'\n type: *3\n value: 1504\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-1504\n type: *7\n value: CHA-1504\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0026\n type: *8\n value: CHA-0026\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CHAMARRA TIPO SASTRE CON PIEL NEGRA LC\n type: *6\n value: CHAMARRA TIPO SASTRE CON PIEL NEGRA LC\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '324.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3245E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 5E27C988-B148-4593-B03C-51053B6B12B5.jpeg\n type: *2\n value: 5E27C988-B148-4593-B03C-51053B6B12B5.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001504'\n type: *2\n value: '0001504'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 21:04:05.083333'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 5E27C988-B148-4593-B03C-51053B6B12B5.jpeg\n 3 El producto CHA-1504 fue modificado. 187.149.136.226 e749fc2f-068e-4f27-bbf9-81999cb136ce 2020-11-03 21:25:07.02469 23904 2358 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 669\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 1700\ncardnumber: 3694\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-867\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-867 187.149.58.33 24f10bdc-e87d-4c3c-96c7-f3e84a2d25eb 2019-12-15 00:39:16.194386 23905 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-14 21:44:00.698058000 Z\n- &1 2019-12-14 22:26:00.990941000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-15 00:49:44.999571571 Z\nsign_in_count:\n- 1097\n- 1098\n 2196 \N 187.149.58.33 cfbb9c0f-276b-4b18-b911-cf170a7e0bae 2019-12-15 00:49:45.020778 23906 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CX8BaxqWeC23ZK2eyLsF\n- y3kx4RYy2yMokhmPdq3k\n 2197 \N 187.149.58.33 cfbb9c0f-276b-4b18-b911-cf170a7e0bae 2019-12-15 00:49:45.047715 23907 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-14 22:26:00.990941000 Z\n- &1 2019-12-15 00:49:44.999571000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-15 00:50:38.582961053 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946185\n mask_addr: 4294967295\nsign_in_count:\n- 1098\n- 1099\n 2198 \N 200.68.181.201 f4368465-2d2b-42d2-87f6-68dc57e0d404 2019-12-15 00:50:38.591599 23908 4 User \N \N 4 User \N update ---\nunique_session_id:\n- y3kx4RYy2yMokhmPdq3k\n- DcqSNK97xvAqcuyxZA2z\n 2199 \N 200.68.181.201 f4368465-2d2b-42d2-87f6-68dc57e0d404 2019-12-15 00:50:38.611625 23909 1701 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 670\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-662\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 d2462eba-7e64-45a3-bff1-cc1cc6fe4e58 2019-12-15 00:50:56.22885 23910 1287 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.58.33 d2462eba-7e64-45a3-bff1-cc1cc6fe4e58 2019-12-15 00:50:56.258202 23911 1701 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 3251264c-b06f-4712-b34e-2a27d30816b8 2019-12-15 00:57:38.612671 23912 2359 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 670\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.549E3\nmove_type: '1'\nsale_id: 1701\ncardnumber: 4721\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-662\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-662 187.149.58.33 3251264c-b06f-4712-b34e-2a27d30816b8 2019-12-15 00:57:38.646167 23913 1702 Sale \N \N 2 User \N create ---\ncustomer_id: 36\nuser_id: 2\nopen_cash_register_id: 669\namount: !ruby/object:BigDecimal 18:0.969E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.969E3\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-868\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 c55cbc76-f76a-4a91-9441-866aa3adc35f 2019-12-15 01:00:38.328267 23914 1046 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.58.33 c55cbc76-f76a-4a91-9441-866aa3adc35f 2019-12-15 01:00:38.363664 23915 2360 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 608\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.369E3\nmove_type: '1'\nsale_id: 1494\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.369E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 1ffd5c6d-f6e8-45ed-b2ce-519ead796bc2 2019-12-15 01:01:35.650125 23916 2360 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 608\n- 669\n 2 movimiento de efectivo por venta con folio PV2-V-588 187.149.58.33 1ffd5c6d-f6e8-45ed-b2ce-519ead796bc2 2019-12-15 01:01:35.68006 23917 238 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 669\nquantity: !ruby/object:BigDecimal 18:0.9E3\nstatus: 1\nobservations: SUELDO KARLA\nexpense_date: 2019-12-14\nexpense_code: PV1-E-169\n 1 Egreso por 900.0 registrado 187.149.58.33 7c69f1e3-72e5-41a7-bb1e-3a33ae98ec1e 2019-12-15 01:05:49.315814 23918 2361 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 669\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.9E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 238\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 7c69f1e3-72e5-41a7-bb1e-3a33ae98ec1e 2019-12-15 01:05:49.336558 23919 1703 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 670\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-663\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 22dfe52d-a921-46c3-91da-c17b1a47e67a 2019-12-15 01:11:14.6147 23920 1288 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.58.33 22dfe52d-a921-46c3-91da-c17b1a47e67a 2019-12-15 01:11:14.667139 23921 1703 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 0a348261-7827-4205-94e0-dcc507d69fa7 2019-12-15 01:11:36.099286 23922 2362 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 670\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1703\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-663\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-663 187.149.58.33 0a348261-7827-4205-94e0-dcc507d69fa7 2019-12-15 01:11:36.122061 23923 2363 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 670\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1703\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-663\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-663 187.149.58.33 612f7499-3edf-4ee6-8f64-cf6ac681415d 2019-12-15 01:11:41.019775 23944 240 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 669\nquantity: !ruby/object:BigDecimal 18:0.228E3\nstatus: 1\nobservations: dif de sueldo rocio\nexpense_date: 2019-12-14\nexpense_code: PV1-E-170\n 1 Egreso por 228.0 registrado 187.149.58.33 76a965a0-7062-4892-baa6-9c3617aed874 2019-12-15 03:10:31.189427 23924 2364 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 670\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1703\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-663\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-663 187.149.58.33 c7af11d8-bd96-45be-b20f-d1913788e521 2019-12-15 01:11:41.082758 23925 2364 CashRegistersMove \N \N 26 User \N destroy ---\nopen_cash_register_id: 670\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1703\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-663\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.58.33 bf6df852-8a1e-4da9-9f7e-d96add96c261 2019-12-15 01:11:44.561624 23926 2363 CashRegistersMove \N \N 26 User \N destroy ---\nopen_cash_register_id: 670\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1703\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-663\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.58.33 e2e67ed4-116b-4693-8b37-185d957d48c6 2019-12-15 01:11:49.340303 23927 2362 CashRegistersMove \N \N 26 User \N destroy ---\nopen_cash_register_id: 670\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1703\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-663\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.58.33 e457b62c-c554-4482-9b48-b5565447ffe7 2019-12-15 01:11:57.524478 23928 2365 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 670\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1703\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-663\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-663 187.149.58.33 6998cb45-3b77-459b-9aed-5c2faa9756e6 2019-12-15 01:12:11.759336 23929 1704 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 669\namount: !ruby/object:BigDecimal 18:0.113469E4\ntax: !ruby/object:BigDecimal 18:0.6331E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1198E4\nstatus: 0\ndate_sale: 2019-12-14\nsaletype: 1\nseller_id: 20\nsale_code: PV1-V-869\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 a778408b-d8d7-45c4-bb63-f407aadfed9c 2019-12-15 01:15:23.580841 23930 1242 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.58.33 a778408b-d8d7-45c4-bb63-f407aadfed9c 2019-12-15 01:15:23.607798 23931 122 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.58.33 a778408b-d8d7-45c4-bb63-f407aadfed9c 2019-12-15 01:15:23.63007 23932 1704 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 a1a0a490-6151-49fc-8a67-cc9d0cce0be7 2019-12-15 01:16:08.278369 23933 2366 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 669\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1198E4\nmove_type: '1'\nsale_id: 1704\ncardnumber: 2395\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-869\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-869 187.149.58.33 a1a0a490-6151-49fc-8a67-cc9d0cce0be7 2019-12-15 01:16:08.301561 23934 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-13 21:53:56.710115000 Z\n- &1 2019-12-14 23:29:29.212895000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-15 02:27:58.861578790 Z\nsign_in_count:\n- 126\n- 127\n 254 \N 187.149.58.33 8137c340-559f-42ac-9e6a-c4a5959ae357 2019-12-15 02:27:58.867911 23935 1 User \N \N 1 User \N update ---\nunique_session_id:\n- e1Up88Wfarzud7xQN4XM\n- ziq1L8uvbDsmDYxmdnz2\n 255 \N 187.149.58.33 8137c340-559f-42ac-9e6a-c4a5959ae357 2019-12-15 02:27:58.880207 23936 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-15 00:49:44.999571000 Z\n- &1 2019-12-15 00:50:38.582961000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-15 02:51:20.345880468 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946185\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946185\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1099\n- 1100\n 2200 \N 187.149.58.33 7f71d114-8311-40a4-a8d5-db2735cb64b6 2019-12-15 02:51:20.353327 23937 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DcqSNK97xvAqcuyxZA2z\n- a43LnDiQas5CsHoBUyLx\n 2201 \N 187.149.58.33 7f71d114-8311-40a4-a8d5-db2735cb64b6 2019-12-15 02:51:20.370917 23938 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 20:46:32.731622000 Z\n- &1 2019-12-14 19:05:12.483845000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-15 02:54:46.650986149 Z\nsign_in_count:\n- 54\n- 55\n 110 \N 187.149.58.33 0229eefd-2b6e-475b-98d3-81921acbbeda 2019-12-15 02:54:46.656626 23939 26 User \N \N 26 User \N update ---\nunique_session_id:\n- FQnLKFYa-yansh119QEf\n- 5QisLz14cPSfbEV-D_sC\n 111 \N 187.149.58.33 0229eefd-2b6e-475b-98d3-81921acbbeda 2019-12-15 02:54:46.669628 23940 239 Expense \N \N 26 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 670\nquantity: !ruby/object:BigDecimal 18:0.135E4\nstatus: 1\nobservations: PAGO KEYLA\nexpense_date: 2019-12-14\nexpense_code: PV2-E-53\n 1 Egreso por 1350.0 registrado 187.149.58.33 cdc6eaa5-c462-4e58-9c63-10a7725759b9 2019-12-15 02:55:13.935246 23941 2367 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 670\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.135E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 239\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 cdc6eaa5-c462-4e58-9c63-10a7725759b9 2019-12-15 02:55:13.957526 23942 674 CashOut \N \N 26 User \N create ---\nopen_cash_register_id: 670\nuser_id: 26\namount_in: !ruby/object:BigDecimal 18:0.782E4\namount_out: !ruby/object:BigDecimal 18:0.135E4\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.35E4\ncash_fund: !ruby/object:BigDecimal 18:0.808E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4308E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 38cdf9b6-b114-430e-994a-9709c1761f94 2019-12-15 03:03:40.427867 23943 670 OpenCashRegister \N \N 26 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 38cdf9b6-b114-430e-994a-9709c1761f94 2019-12-15 03:03:40.43927 23945 2368 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 669\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.228E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 240\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 76a965a0-7062-4892-baa6-9c3617aed874 2019-12-15 03:10:31.208825 23946 675 CashOut \N \N 23 User \N create ---\nopen_cash_register_id: 668\nuser_id: 23\namount_in: !ruby/object:BigDecimal 18:0.386216E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 23\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.298E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1298E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 195c1cac-d2b2-4aab-9e64-7c8270957e58 2019-12-15 03:13:53.146508 23947 668 OpenCashRegister \N \N 23 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.139 195c1cac-d2b2-4aab-9e64-7c8270957e58 2019-12-15 03:13:53.158083 23948 676 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 669\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1413199E5\namount_out: !ruby/object:BigDecimal 18:0.1153E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.41E4\ncash_fund: !ruby/object:BigDecimal 18:0.922E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5022E4\nobservations: "ENTREGUE A SAMANTHA $3700 MAS $900 DE KARLA \\r\\n$4600 EN TOTAL"\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 3d0b377d-188f-4532-aa61-d4feaaee3751 2019-12-15 03:16:35.70519 23949 669 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 3d0b377d-188f-4532-aa61-d4feaaee3751 2019-12-15 03:16:35.716701 23950 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-15 00:50:38.582961000 Z\n- &1 2019-12-15 02:51:20.345880000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-15 05:18:35.176079761 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946185\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938162\n mask_addr: 4294967295\nsign_in_count:\n- 1100\n- 1101\n 2202 \N 200.68.150.114 b54b28a3-d577-4f96-8d80-637982bfa8b2 2019-12-15 05:18:35.190485 23951 4 User \N \N 4 User \N update ---\nunique_session_id:\n- a43LnDiQas5CsHoBUyLx\n- Kpo8mEW_Cz3P_FSmWNhU\n 2203 \N 200.68.150.114 b54b28a3-d577-4f96-8d80-637982bfa8b2 2019-12-15 05:18:35.217885 23952 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-13 17:57:53.478464000 Z\n- &1 2019-12-14 17:59:29.761127000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-15 17:11:46.111559525 Z\nsign_in_count:\n- 401\n- 402\n 807 \N 187.149.58.33 c72c02d6-b1b7-4844-b838-d8de59f42278 2019-12-15 17:11:46.149463 23953 2 User \N \N 2 User \N update ---\nunique_session_id:\n- v1rBSLLDo2hfRe3t_CZw\n- CaqxcLzq1NaEP25sP8sW\n 808 \N 187.149.58.33 c72c02d6-b1b7-4844-b838-d8de59f42278 2019-12-15 17:11:46.178213 23954 671 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.922E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 922.0 187.149.58.33 4ba7ace2-58c2-4f93-b582-d94ce0886116 2019-12-15 17:13:32.312187 23955 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-14 17:08:17.614298000 Z\n- &1 2019-12-14 22:23:53.359336000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-15 17:24:40.872356579 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 58\n- 59\n 119 \N 189.186.111.139 ac8656b1-cf70-40dc-b841-7f13a03416f9 2019-12-15 17:24:40.880111 23956 21 User \N \N 21 User \N update ---\nunique_session_id:\n- AxoavBuF5eyL2DUP5z7v\n- FnmBsQ-HcuYVQ7GxuyT-\n 120 \N 189.186.111.139 ac8656b1-cf70-40dc-b841-7f13a03416f9 2019-12-15 17:24:40.894552 23957 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-12-14 19:05:12.483845000 Z\n- &1 2019-12-15 02:54:46.650986000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-15 17:41:04.300120242 Z\nsign_in_count:\n- 55\n- 56\n 112 \N 187.149.58.33 0df8abb3-5a08-4feb-b657-137adc647c0c 2019-12-15 17:41:04.306097 23958 26 User \N \N 26 User \N update ---\nunique_session_id:\n- 5QisLz14cPSfbEV-D_sC\n- 2Suzkdz8pgcjydj7kCYM\n 113 \N 187.149.58.33 0df8abb3-5a08-4feb-b657-137adc647c0c 2019-12-15 17:41:04.319293 23959 672 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.808E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 808.0 187.149.58.33 7704b931-a7d0-4c5a-8f40-f10ed6601321 2019-12-15 17:42:20.635961 23960 1705 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 672\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-15\nsaletype: 1\nseller_id: 22\nsale_code: PV2-V-664\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 9e759423-6e2e-4c5d-96b4-700bf0528d68 2019-12-15 18:16:38.319453 23961 1164 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.58.33 9e759423-6e2e-4c5d-96b4-700bf0528d68 2019-12-15 18:16:38.365043 23962 1705 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 c5a4a226-ee01-4e4a-8367-ed3b2b117956 2019-12-15 18:17:14.41595 23963 2369 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 672\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1705\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-664\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-664 187.149.58.33 c5a4a226-ee01-4e4a-8367-ed3b2b117956 2019-12-15 18:17:14.436877 23964 1706 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 671\namount: !ruby/object:BigDecimal 18:0.1998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1998E4\nstatus: 0\ndate_sale: 2019-12-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-870\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 4b73886b-bd7d-4fdc-a539-a4758a36f4ce 2019-12-15 18:51:37.276261 23965 1411 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 5 \N 187.149.58.33 4b73886b-bd7d-4fdc-a539-a4758a36f4ce 2019-12-15 18:51:37.304791 23966 1419 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.58.33 4b73886b-bd7d-4fdc-a539-a4758a36f4ce 2019-12-15 18:51:37.328892 23967 1706 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 49ba6e2e-b321-4305-ae5a-d81aed2108a3 2019-12-15 18:52:10.138672 23989 778 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.111.139 e8d0bcef-1edc-4d08-a874-7fe434f9807b 2019-12-15 19:45:39.023925 23968 2370 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 671\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1998E4\nmove_type: '1'\nsale_id: 1706\ncardnumber: 5720\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-870\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-870 187.149.58.33 49ba6e2e-b321-4305-ae5a-d81aed2108a3 2019-12-15 18:52:10.157614 23969 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-12-15 02:54:46.650986000 Z\n- &1 2019-12-15 17:41:04.300120000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-15 18:55:07.548281761 Z\nsign_in_count:\n- 56\n- 57\n 114 \N 187.149.58.33 a1189ccf-ad3b-454c-b92a-0c745b95bef5 2019-12-15 18:55:07.555572 23970 26 User \N \N 26 User \N update ---\nunique_session_id:\n- 2Suzkdz8pgcjydj7kCYM\n- _ckGs91G6_Ena6Y2jHZB\n 115 \N 187.149.58.33 a1189ccf-ad3b-454c-b92a-0c745b95bef5 2019-12-15 18:55:07.567932 23971 1707 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 672\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-12-15\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-665\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 a210324c-d753-4e80-a589-15532a0cba3e 2019-12-15 18:55:43.207934 23972 755 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.58.33 a210324c-d753-4e80-a589-15532a0cba3e 2019-12-15 18:55:43.234743 23973 1707 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 d993e0a8-fa0e-44ec-ad23-327f260f07d8 2019-12-15 18:56:09.310777 23974 2371 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 672\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 1707\ncardnumber: 4061\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-665\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-665 187.149.58.33 d993e0a8-fa0e-44ec-ad23-327f260f07d8 2019-12-15 18:56:09.329362 23975 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-15 02:51:20.345880000 Z\n- &1 2019-12-15 05:18:35.176079000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-15 19:29:30.424479441 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938162\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938162\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1101\n- 1102\n 2204 \N 187.149.58.33 35cecbe8-f93b-44f8-a8ac-943f7e98b0b3 2019-12-15 19:29:30.432826 23976 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Kpo8mEW_Cz3P_FSmWNhU\n- Y_ua2dZ-mJPRsE144PZS\n 2205 \N 187.149.58.33 35cecbe8-f93b-44f8-a8ac-943f7e98b0b3 2019-12-15 19:29:30.45277 23977 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-15 05:18:35.176079000 Z\n- &1 2019-12-15 19:29:30.424479000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-15 19:39:40.175058854 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938162\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 1102\n- 1103\n 2206 \N 189.186.111.139 39082f73-a60d-4fdc-8086-60e0dac533c3 2019-12-15 19:39:40.182324 23978 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Y_ua2dZ-mJPRsE144PZS\n- UWxQGVyw-NHc6Bx79qjs\n 2207 \N 189.186.111.139 39082f73-a60d-4fdc-8086-60e0dac533c3 2019-12-15 19:39:40.197911 23979 1407 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.111.139 bf69e6f6-3e7b-4332-a1c6-c479463ca3fd 2019-12-15 19:40:05.936204 23980 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-10-14 18:49:32.011866000 Z\n- &1 2019-10-17 16:47:03.856014000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-15 19:40:10.688435435 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 156\n- 157\n 316 \N 187.149.58.33 4f79a8ee-d521-42ff-ba85-4cbdb66cb3de 2019-12-15 19:40:10.695241 23981 10 User \N \N 10 User \N update ---\nunique_session_id:\n- spom12XaJrFK8JiAXrfA\n- 8wp9wpmfuYxNs5ZVzaGt\n 317 \N 187.149.58.33 4f79a8ee-d521-42ff-ba85-4cbdb66cb3de 2019-12-15 19:40:10.7092 23982 1708 Sale \N \N 10 User \N create ---\ncustomer_id: 1\nuser_id: 10\nopen_cash_register_id: 672\namount: !ruby/object:BigDecimal 18:0.389E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.389E3\nstatus: 0\ndate_sale: 2019-12-15\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-666\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 9c1fcbe4-f745-4f8a-a1da-14187e1632f1 2019-12-15 19:42:22.151791 23983 1326 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.58.33 9c1fcbe4-f745-4f8a-a1da-14187e1632f1 2019-12-15 19:42:22.175081 23984 1708 Sale \N \N 10 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 9bff6b78-5df1-432c-9a66-e160765eb427 2019-12-15 19:42:39.349302 23985 2372 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 672\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.389E3\nmove_type: '1'\nsale_id: 1708\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-666\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-666 187.149.58.33 9bff6b78-5df1-432c-9a66-e160765eb427 2019-12-15 19:42:39.368907 23986 673 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.298E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 298.0 189.186.111.139 14ab6248-2602-4fcf-bb28-873b55322d7c 2019-12-15 19:43:54.280814 23987 264 Customer \N \N 21 User \N create ---\nnick_name: FABIOLA RIVAS\nphone: ''\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.2E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente FABIOLA RIVAS fue registrado. 189.186.111.139 bdfbb007-7fe5-459e-841b-e74aceb59e4e 2019-12-15 19:44:26.152608 23988 1709 Sale \N \N 21 User \N create ---\ncustomer_id: 264\nuser_id: 21\nopen_cash_register_id: 673\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2019-12-15\nsaletype: 0\nseller_id: 12\nsale_code: PV3-V-171\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.139 e8d0bcef-1edc-4d08-a874-7fe434f9807b 2019-12-15 19:45:39.000294 23990 2373 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 671\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.539E3\nmove_type: '1'\nsale_id: 1529\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.55E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-788 187.149.58.33 0ce9584b-b1b5-45a6-922b-6e70c64e197a 2019-12-15 19:49:45.146969 23991 1529 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 ca5872aa-b982-4635-9de9-df5cd16c6132 2019-12-15 19:50:06.720747 23992 2374 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 671\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.269E3\nmove_type: '1'\nsale_id: 1405\ncardnumber: 5725\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-731 187.149.58.33 8831cfe2-d5eb-43a8-a051-11bcee2217c3 2019-12-15 20:04:29.978341 23993 1405 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 f2e93797-07aa-4521-9d48-58c7f8238e25 2019-12-15 20:04:41.460696 23994 2375 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 672\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 1374\ncardnumber: 5725\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-550 187.149.58.33 d4b6c405-24d1-4ba3-a041-8cfe8d30208b 2019-12-15 20:32:37.687387 23995 2376 CashRegistersMove \N \N 10 User \N create ---\nopen_cash_register_id: 672\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 1374\ncardnumber: 5725\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-550 187.149.58.33 c241bd97-cdda-480b-9182-01e365a9e1b3 2019-12-15 20:32:37.742496 23996 2376 CashRegistersMove \N \N 10 User \N destroy ---\nopen_cash_register_id: 672\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 1374\ncardnumber: 5725\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.58.33 59f9b300-37c1-4f8c-ad89-27dc339eae33 2019-12-15 20:33:06.839135 23997 1374 Sale \N \N 10 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 eb51138b-54c7-49b2-aaba-ae1dde558a24 2019-12-15 20:33:25.677292 23998 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-12-15 17:41:04.300120000 Z\n- &1 2019-12-15 18:55:07.548281000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-15 20:37:03.152145184 Z\nsign_in_count:\n- 57\n- 58\n 116 \N 187.149.58.33 07c62f8e-25c1-4d3d-a4bf-f25ee6efcc01 2019-12-15 20:37:03.158226 23999 26 User \N \N 26 User \N update ---\nunique_session_id:\n- _ckGs91G6_Ena6Y2jHZB\n- yGEsSNgwJhZAH8iYGhgD\n 117 \N 187.149.58.33 07c62f8e-25c1-4d3d-a4bf-f25ee6efcc01 2019-12-15 20:37:03.17016 24000 2377 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 673\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.589E3\nmove_type: '1'\nsale_id: 1550\ncardnumber: 236\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-144 189.186.111.139 b19a80a2-b5b9-4bac-8483-bdc9d385bc1a 2019-12-15 20:59:09.19561 24001 1550 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.111.139 6b839ca0-fd2d-4334-b653-9ac14b3c30b7 2019-12-15 20:59:10.722029 24002 1208 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.111.139 bf0d7ec3-5576-4e9a-8c5a-4c623801d845 2019-12-15 21:18:50.061798 24003 1035 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 15 \N 189.186.111.139 bf0d7ec3-5576-4e9a-8c5a-4c623801d845 2019-12-15 21:18:50.104635 24004 1215 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.111.139 3e231537-7af8-4437-b8bc-01abffe61c6f 2019-12-15 21:19:14.978393 24005 918 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.111.139 3e231537-7af8-4437-b8bc-01abffe61c6f 2019-12-15 21:19:14.998569 24006 813 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.111.139 92d493a3-c0fd-43bf-b5ce-5cab12b01061 2019-12-15 21:21:31.892466 24007 813 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.111.139 98b29a6d-7d2b-490e-9730-94664db64d80 2019-12-15 21:21:35.113547 24008 838 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.111.139 c1d34ba5-d0ba-40d6-a785-d0dcd1b761e1 2019-12-15 21:21:47.099348 24009 838 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.111.139 8e680e40-3c9d-4a4b-bcc0-ddfd4bb6ee94 2019-12-15 21:21:50.178753 24010 347 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2019-12-15\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.111.139 3f9286d3-7d5f-4075-8907-38af365d4fa6 2019-12-15 21:21:51.619065 24011 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-15 19:29:30.424479000 Z\n- &1 2019-12-15 19:39:40.175058000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-15 22:02:27.518650983 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 1103\n- 1104\n 2208 \N 187.149.58.33 bb33f3c2-6cd7-4971-9f08-5d1b763121ad 2019-12-15 22:02:27.529214 24012 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UWxQGVyw-NHc6Bx79qjs\n- fbsUAdzwx2A5WPxLHxB3\n 2209 \N 187.149.58.33 bb33f3c2-6cd7-4971-9f08-5d1b763121ad 2019-12-15 22:02:27.550547 24013 1710 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 672\namount: !ruby/object:BigDecimal 18:0.3188E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3188E4\nstatus: 0\ndate_sale: 2019-12-15\nsaletype: 1\nseller_id: 22\nsale_code: PV2-V-667\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 39ea1cbb-beda-4849-9d50-263e44f1899d 2019-12-15 22:24:42.240393 24014 1437 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.58.33 39ea1cbb-beda-4849-9d50-263e44f1899d 2019-12-15 22:24:42.265849 24015 1412 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 2 \N 187.149.58.33 39ea1cbb-beda-4849-9d50-263e44f1899d 2019-12-15 22:24:42.287911 24016 1710 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 95afbdc1-2cc3-4f41-965e-7d4528176a6a 2019-12-15 22:24:50.560458 24017 2378 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 672\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3188E4\nmove_type: '1'\nsale_id: 1710\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-667\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3188E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-667 187.149.58.33 95afbdc1-2cc3-4f41-965e-7d4528176a6a 2019-12-15 22:24:50.581202 24018 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-09-27 19:13:01.453015000 Z\n- &1 2019-12-07 01:09:48.158799000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-15 22:25:29.883080961 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\nsign_in_count:\n- 93\n- 94\n 188 \N 187.149.58.33 95a0a773-b438-427e-aee9-c065b821caf2 2019-12-15 22:25:29.890255 24019 9 User \N \N 9 User \N update ---\nunique_session_id:\n- zTqDTXnbhWBdktxooEyg\n- v7QtpipzaHSE4W3GyZD2\n 189 \N 187.149.58.33 95a0a773-b438-427e-aee9-c065b821caf2 2019-12-15 22:25:29.903688 24020 1711 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 671\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-12-15\nsaletype: 1\nseller_id: 20\nsale_code: PV1-V-871\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 1857ec12-a404-4a37-91a9-4fcacf0c00e3 2019-12-15 22:25:52.442385 24021 1156 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 187.149.58.33 1857ec12-a404-4a37-91a9-4fcacf0c00e3 2019-12-15 22:25:52.465945 24022 1711 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 b0d8d6c3-5327-4526-babf-f38f39b82fa1 2019-12-15 22:25:57.395837 24023 2379 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 671\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 1711\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-871\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.469E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-871 187.149.58.33 b0d8d6c3-5327-4526-babf-f38f39b82fa1 2019-12-15 22:25:57.416859 24024 241 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 671\nquantity: !ruby/object:BigDecimal 18:0.3E3\nstatus: 1\nobservations: sueldo Valentina\nexpense_date: 2019-12-15\nexpense_code: PV1-E-171\n 1 Egreso por 300.0 registrado 187.149.58.33 a436c53f-5bf4-4876-bf8b-d70c26854b3d 2019-12-15 23:05:36.255846 24025 2380 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 671\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 241\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 a436c53f-5bf4-4876-bf8b-d70c26854b3d 2019-12-15 23:05:36.275179 24026 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 01:09:48.158799000 Z\n- &1 2019-12-15 22:25:29.883080000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-15 23:08:40.810389005 Z\nsign_in_count:\n- 94\n- 95\n 190 \N 187.149.58.33 ec9eb6b7-afb5-41bf-ac66-c82206a0ae11 2019-12-15 23:08:40.816268 24027 9 User \N \N 9 User \N update ---\nunique_session_id:\n- v7QtpipzaHSE4W3GyZD2\n- Z1rTq3zt277z-fP8BtZ9\n 191 \N 187.149.58.33 ec9eb6b7-afb5-41bf-ac66-c82206a0ae11 2019-12-15 23:08:40.827911 24028 677 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 671\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3275E4\namount_out: !ruby/object:BigDecimal 18:0.3E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.113E4\nphysical_cash: !ruby/object:BigDecimal 18:0.163E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 d565bfd1-5e81-4e2a-a81f-08b6e5f07241 2019-12-15 23:14:38.321461 24029 671 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 d565bfd1-5e81-4e2a-a81f-08b6e5f07241 2019-12-15 23:14:38.333755 24030 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-12-15 18:55:07.548281000 Z\n- &1 2019-12-15 20:37:03.152145000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-15 23:15:51.842750842 Z\nsign_in_count:\n- 58\n- 59\n 118 \N 187.149.58.33 702b3fb3-e016-46a1-aa89-d21d9e705a3c 2019-12-15 23:15:51.848611 24031 26 User \N \N 26 User \N update ---\nunique_session_id:\n- yGEsSNgwJhZAH8iYGhgD\n- 9-1YuCpQ-eL48Eh3Sr9S\n 119 \N 187.149.58.33 702b3fb3-e016-46a1-aa89-d21d9e705a3c 2019-12-15 23:15:51.861245 24032 678 CashOut \N \N 26 User \N create ---\nopen_cash_register_id: 672\nuser_id: 26\namount_in: !ruby/object:BigDecimal 18:0.6074E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.45E4\ncash_fund: !ruby/object:BigDecimal 18:0.395E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4895E4\nobservations: RETIRE $3500 $1000 SE LLEVO SAMANTHA\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 d2a898d7-c5d3-45dd-b7da-aaea5bc97664 2019-12-15 23:26:30.267513 24033 672 OpenCashRegister \N \N 26 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 d2a898d7-c5d3-45dd-b7da-aaea5bc97664 2019-12-15 23:26:30.280418 24034 242 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 673\nquantity: !ruby/object:BigDecimal 18:0.1E3\nstatus: 1\nobservations: COMPRA DE HOJAS OFICIO $30, COMPRA DE COMIDA $70\nexpense_date: 2019-12-15\nexpense_code: PV3-E-18\n 1 Egreso por 100.0 registrado 189.186.111.139 effba5fb-55f1-4008-b57b-e3a2eff07e89 2019-12-16 01:00:38.002518 24035 2381 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 673\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 242\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.111.139 effba5fb-55f1-4008-b57b-e3a2eff07e89 2019-12-16 01:00:38.024374 24036 679 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 673\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.589E3\namount_out: !ruby/object:BigDecimal 18:0.1E3\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.22E3\nphysical_cash: !ruby/object:BigDecimal 18:0.22E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.139 f811e09d-3b9f-4a03-8dda-daee8f09ca84 2019-12-16 01:04:00.833343 24038 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-15 19:39:40.175058000 Z\n- &1 2019-12-15 22:02:27.518650000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-16 01:09:55.535111438 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 1104\n- 1105\n 2210 \N 189.186.111.139 2a4faed6-1759-450c-88e1-51001dc652c2 2019-12-16 01:09:55.54475 24039 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fbsUAdzwx2A5WPxLHxB3\n- Snf961ZxePzzmddzra1w\n 2211 \N 189.186.111.139 2a4faed6-1759-450c-88e1-51001dc652c2 2019-12-16 01:09:55.564484 24040 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-15 22:02:27.518650000 Z\n- &1 2019-12-16 01:09:55.535111000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-16 02:49:53.848047480 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\nsign_in_count:\n- 1105\n- 1106\n 2212 \N 189.186.211.119 cb525818-434b-4340-8b21-ae861eeadc74 2019-12-16 02:49:53.862866 24041 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Snf961ZxePzzmddzra1w\n- 57_5xuLHQahu4EBRqHuz\n 2213 \N 189.186.211.119 cb525818-434b-4340-8b21-ae861eeadc74 2019-12-16 02:49:53.889861 24042 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-12 17:14:10.837842000 Z\n- &1 2019-12-13 17:11:32.851792000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-16 17:18:28.857428417 Z\nsign_in_count:\n- 46\n- 47\n 94 \N 187.149.58.33 d8cf6372-5d1d-49f5-be13-e694824dc5a2 2019-12-16 17:18:28.899909 24043 27 User \N \N 27 User \N update ---\nunique_session_id:\n- zHzxrtf3f6QVHzAqe2aH\n- VjgBA-M25iso2E_UC-4M\n 95 \N 187.149.58.33 d8cf6372-5d1d-49f5-be13-e694824dc5a2 2019-12-16 17:18:28.924431 24044 674 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.395E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 395.0 187.149.58.33 9d81c887-86d4-42ef-8b04-5f4f1593707f 2019-12-16 17:23:59.078908 24045 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-14 17:59:29.761127000 Z\n- &1 2019-12-15 17:11:46.111559000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-16 17:24:57.719795455 Z\nsign_in_count:\n- 402\n- 403\n 809 \N 187.149.58.33 42165a49-9878-4fd1-a20b-a88681f66d70 2019-12-16 17:24:57.726423 24046 2 User \N \N 2 User \N update ---\nunique_session_id:\n- CaqxcLzq1NaEP25sP8sW\n- Q-4gS5JXH6EUm4qRWQz2\n 810 \N 187.149.58.33 42165a49-9878-4fd1-a20b-a88681f66d70 2019-12-16 17:24:57.744229 24047 675 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.113E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1130.0 187.149.58.33 68ef698f-f29f-454a-90e1-0c1be699c928 2019-12-16 18:07:29.069394 24048 1712 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 675\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-12-16\nsaletype: 1\nseller_id: 20\nsale_code: PV1-V-872\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 ba5e1132-5c38-4173-be6d-d10882403650 2019-12-16 18:08:36.997259 24049 1380 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.58.33 ba5e1132-5c38-4173-be6d-d10882403650 2019-12-16 18:08:37.025177 24050 1712 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 bb6d357a-9dbb-43d4-aba9-67a198256916 2019-12-16 18:17:10.441201 24051 2382 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 675\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 1712\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-872\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-872 187.149.58.33 bb6d357a-9dbb-43d4-aba9-67a198256916 2019-12-16 18:17:10.466915 24052 1713 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 674\namount: !ruby/object:BigDecimal 18:0.149E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.149E3\nstatus: 0\ndate_sale: 2019-12-16\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-668\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 e9a3d5f8-ec76-4a6d-ae09-bc0b4658868e 2019-12-16 18:24:47.386573 24053 1336 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.58.33 e9a3d5f8-ec76-4a6d-ae09-bc0b4658868e 2019-12-16 18:24:47.416882 24054 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-16 01:09:55.535111000 Z\n- &1 2019-12-16 02:49:53.848047000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-16 18:24:52.425953894 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\nsign_in_count:\n- 1106\n- 1107\n 2214 \N 189.186.211.119 6cd2fcdf-c7c8-46c3-9e8d-150715aef719 2019-12-16 18:24:52.432602 24055 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 57_5xuLHQahu4EBRqHuz\n- riL_JscuzgEfzoobunyL\n 2215 \N 189.186.211.119 6cd2fcdf-c7c8-46c3-9e8d-150715aef719 2019-12-16 18:24:52.468209 24056 1713 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 82bc6f8b-4405-4492-ac5f-d194c64b6216 2019-12-16 18:25:14.324309 24057 2383 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 674\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.149E3\nmove_type: '1'\nsale_id: 1713\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-668\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-668 187.149.58.33 82bc6f8b-4405-4492-ac5f-d194c64b6216 2019-12-16 18:25:14.343264 24058 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-14 22:23:53.359336000 Z\n- &1 2019-12-15 17:24:40.872356000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-16 21:04:24.611592808 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\nsign_in_count:\n- 59\n- 60\n 121 \N 189.186.111.139 35c4ec1b-4721-4176-a009-15e7a01721eb 2019-12-16 21:04:24.621687 24059 21 User \N \N 21 User \N update ---\nunique_session_id:\n- FnmBsQ-HcuYVQ7GxuyT-\n- QYvnm8gHUbrK1vx3D-7m\n 122 \N 189.186.111.139 35c4ec1b-4721-4176-a009-15e7a01721eb 2019-12-16 21:04:24.636536 24081 1331 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.58.33 9dc19050-4b04-4141-bb4e-decc49165ef4 2019-12-17 00:35:48.269086 24060 676 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.22E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 220.0 189.186.111.139 79d730be-7e3d-4422-9243-cf230500e9de 2019-12-16 21:04:36.907828 24061 1714 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 675\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-12-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-873\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 c0c4b17e-57f2-4c4e-a2df-3ff4af6c0e54 2019-12-16 21:20:20.30063 24062 663 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.58.33 c0c4b17e-57f2-4c4e-a2df-3ff4af6c0e54 2019-12-16 21:20:20.330902 24063 1714 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 3ffd7714-3c74-436e-9bee-5c68a67d128e 2019-12-16 21:20:27.445232 24064 2384 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 675\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 1714\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-873\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-873 187.149.58.33 3ffd7714-3c74-436e-9bee-5c68a67d128e 2019-12-16 21:20:27.480007 24065 2385 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 624\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1542\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.58.33 0cbe8ddc-4844-4683-afa0-9eb1d36367c5 2019-12-16 21:24:00.109165 24066 2385 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 624\n- 675\n 2 movimiento de efectivo por venta con folio PV3-V-141 187.149.58.33 0cbe8ddc-4844-4683-afa0-9eb1d36367c5 2019-12-16 21:24:00.140372 24067 1715 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 674\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-16\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-669\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 05d44ed3-aee1-4f8c-a074-324c029ac854 2019-12-16 22:55:24.58731 24068 1164 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.58.33 05d44ed3-aee1-4f8c-a074-324c029ac854 2019-12-16 22:55:24.614055 24069 1715 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 fd09809a-c2af-45b5-a6b4-4e690bf0dd60 2019-12-16 22:55:36.522387 24070 2386 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 674\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 1715\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-669\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-669 187.149.58.33 fd09809a-c2af-45b5-a6b4-4e690bf0dd60 2019-12-16 22:55:36.545393 24071 2386 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 674\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1715\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-669\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.58.33 5258e627-1808-4389-bdf8-e25356fd3e77 2019-12-16 22:55:40.080933 24072 2387 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 674\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 1715\ncardnumber: 6106\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-669\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-669 187.149.58.33 9db5e2c8-5cc8-4ccb-bafc-4e314fc25079 2019-12-16 22:56:24.733024 24073 1716 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 675\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-12-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-874\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 95b8eb63-fd10-427d-9af4-7120f3eda6e4 2019-12-16 23:18:42.419653 24074 1434 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.58.33 95b8eb63-fd10-427d-9af4-7120f3eda6e4 2019-12-16 23:18:42.445629 24075 1716 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 7fe14cf9-2a04-4e44-a0f9-a66d861f207f 2019-12-16 23:19:23.642871 24076 2388 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 675\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 1716\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-874\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-874 187.149.58.33 7fe14cf9-2a04-4e44-a0f9-a66d861f207f 2019-12-16 23:19:23.661564 24077 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-16 02:49:53.848047000 Z\n- &1 2019-12-16 18:24:52.425953000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-17 00:24:06.859642649 Z\nsign_in_count:\n- 1107\n- 1108\n 2216 \N 189.186.211.119 25c4a8f3-83b4-47a7-af36-5a322ef53f64 2019-12-17 00:24:06.888204 24078 4 User \N \N 4 User \N update ---\nunique_session_id:\n- riL_JscuzgEfzoobunyL\n- v6sxrKzT566ebRHtZ6Hx\n 2217 \N 189.186.211.119 25c4a8f3-83b4-47a7-af36-5a322ef53f64 2019-12-17 00:24:06.911924 24079 1717 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 674\namount: !ruby/object:BigDecimal 18:0.198E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.198E3\nstatus: 0\ndate_sale: 2019-12-16\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-670\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 9dc19050-4b04-4141-bb4e-decc49165ef4 2019-12-17 00:35:48.195423 24080 1215 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.58.33 9dc19050-4b04-4141-bb4e-decc49165ef4 2019-12-17 00:35:48.236358 24083 2389 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 674\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.198E3\nmove_type: '1'\nsale_id: 1717\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-670\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-670 187.149.58.33 59768d02-9a42-449b-bb83-8c51dd7061e6 2019-12-17 00:36:27.174074 24084 1718 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 676\namount: !ruby/object:BigDecimal 18:0.1989E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1989E4\nstatus: 0\ndate_sale: 2019-12-16\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-172\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 756ec443-0d53-4e85-8b12-172da6d927e5 2019-12-17 00:49:54.96683 24085 1393 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.59.52 756ec443-0d53-4e85-8b12-172da6d927e5 2019-12-17 00:49:54.999165 24086 1718 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 96b82471-366b-42cc-825c-35809a675c9e 2019-12-17 00:50:36.521694 24087 2390 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 676\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1989E4\nmove_type: '1'\nsale_id: 1718\ncardnumber: 233\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-172\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-172 189.186.59.52 96b82471-366b-42cc-825c-35809a675c9e 2019-12-17 00:50:36.542073 24088 1719 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 674\namount: !ruby/object:BigDecimal 18:0.358E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.358E3\nstatus: 0\ndate_sale: 2019-12-16\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-671\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 d62ea597-b4a6-4c79-a756-41ecd909d42b 2019-12-17 00:58:29.491423 24089 1345 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.58.33 d62ea597-b4a6-4c79-a756-41ecd909d42b 2019-12-17 00:58:29.532823 24090 1342 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.58.33 d62ea597-b4a6-4c79-a756-41ecd909d42b 2019-12-17 00:58:29.563508 24091 1719 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 3b1d1a4f-f452-4674-aa82-f0fcebff0f73 2019-12-17 00:58:33.735198 24092 2391 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 674\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.358E3\nmove_type: '1'\nsale_id: 1719\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-671\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.142E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-671 187.149.58.33 3b1d1a4f-f452-4674-aa82-f0fcebff0f73 2019-12-17 00:58:33.755815 24093 2392 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 675\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.428E3\nmove_type: '1'\nsale_id: 1599\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.428E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-816 187.149.58.33 486cb7e0-31b8-4063-9fba-6707bf7daa26 2019-12-17 02:19:25.439634 24094 1599 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 cd128e8b-8d06-470c-888b-703d59134b22 2019-12-17 02:19:26.605477 24095 265 Customer \N \N 27 User \N create ---\nnick_name: SANDRA KARELI FRANCO\nphone: "(667) 106-5114"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente SANDRA KARELI FRANCO fue registrado. 187.149.58.33 b0e60bd2-e45c-4c91-942a-2ae1fb9b51cc 2019-12-17 02:23:58.425865 24096 1720 Sale \N \N 27 User \N create ---\ncustomer_id: 265\nuser_id: 27\nopen_cash_register_id: 674\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-16\nsaletype: 2\nseller_id: 19\nsale_code: PV2-V-672\nexpiration_date: 2020-01-20\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 f4b39d97-8692-43c1-83a6-c97829f8115d 2019-12-17 02:24:13.69381 24097 1375 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.58.33 f4b39d97-8692-43c1-83a6-c97829f8115d 2019-12-17 02:24:13.718866 24098 2393 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 674\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1720\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-672\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-672 187.149.58.33 460fd8fb-becb-4ee6-85cd-d2f7bebf73cb 2019-12-17 02:24:20.911845 24099 1720 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 e2996d78-c17b-4bca-9dcd-751c7d45fe72 2019-12-17 02:24:27.547926 24100 2394 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 675\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 1638\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-836 187.149.58.33 507dfd4a-9799-4063-a5e9-7f71751e17a8 2019-12-17 02:30:10.109041 24101 1638 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 59600ec4-b3f6-4a93-9237-31ea57ce05d8 2019-12-17 02:30:11.213724 24102 680 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 675\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4024E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.37E4\ncash_fund: !ruby/object:BigDecimal 18:0.1454E4\nphysical_cash: !ruby/object:BigDecimal 18:0.5154E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 e83f30d3-14f7-40ef-bee0-980ae882bf9b 2019-12-17 02:47:54.425862 24103 675 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 e83f30d3-14f7-40ef-bee0-980ae882bf9b 2019-12-17 02:47:54.443389 24128 79 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 187.149.58.33 fd0d3c8a-8cf6-4e75-ace8-0183720ba299 2019-12-17 18:35:56.217564 24104 681 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 674\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.1804E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.539E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1239E4\nobservations: FALTAN $61 DE FONDO\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 507a58db-ea4b-4e19-9f95-d2b1d6a4f75e 2019-12-17 03:00:30.169324 24105 674 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 507a58db-ea4b-4e19-9f95-d2b1d6a4f75e 2019-12-17 03:00:30.18836 24106 682 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 676\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1989E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1223E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1223E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.59.52 891edd54-9637-4e86-9eed-4510d25a3fcc 2019-12-17 03:07:26.774948 24107 676 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.59.52 891edd54-9637-4e86-9eed-4510d25a3fcc 2019-12-17 03:07:26.786552 24108 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-16 18:24:52.425953000 Z\n- &1 2019-12-17 00:24:06.859642000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-17 16:44:43.031036636 Z\nsign_in_count:\n- 1108\n- 1109\n 2218 \N 189.186.211.119 c2f9a92c-6704-4f66-bec5-aa1429b2f888 2019-12-17 16:44:43.067937 24109 4 User \N \N 4 User \N update ---\nunique_session_id:\n- v6sxrKzT566ebRHtZ6Hx\n- XdkwjPfE4dnBVgsEuWD4\n 2219 \N 189.186.211.119 c2f9a92c-6704-4f66-bec5-aa1429b2f888 2019-12-17 16:44:43.098017 24110 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-15 17:11:46.111559000 Z\n- &1 2019-12-16 17:24:57.719795000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-17 16:51:56.548319769 Z\nsign_in_count:\n- 403\n- 404\n 811 \N 187.149.58.33 c2e6ca54-b16e-4419-badc-18a525e8d16b 2019-12-17 16:51:56.554315 24111 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Q-4gS5JXH6EUm4qRWQz2\n- AxQK5_cMmwhAGYbcsBCa\n 812 \N 187.149.58.33 c2e6ca54-b16e-4419-badc-18a525e8d16b 2019-12-17 16:51:56.567998 24112 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-13 17:11:32.851792000 Z\n- &1 2019-12-16 17:18:28.857428000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-17 17:07:50.654136481 Z\nsign_in_count:\n- 47\n- 48\n 96 \N 187.149.58.33 ab977144-5472-45d9-8405-6e212e0465f8 2019-12-17 17:07:50.659349 24113 27 User \N \N 27 User \N update ---\nunique_session_id:\n- VjgBA-M25iso2E_UC-4M\n- TSZecWuj8FJTzMiYzP1j\n 97 \N 187.149.58.33 ab977144-5472-45d9-8405-6e212e0465f8 2019-12-17 17:07:50.670891 24114 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-16 17:24:57.719795000 Z\n- &1 2019-12-17 16:51:56.548319000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-17 17:08:15.459679835 Z\nsign_in_count:\n- 404\n- 405\n 813 \N 187.149.58.33 a78f344a-bdb9-4dd0-abd1-cb4299225395 2019-12-17 17:08:15.464983 24115 2 User \N \N 2 User \N update ---\nunique_session_id:\n- AxQK5_cMmwhAGYbcsBCa\n- "-5-zZGivYrZHgCpsYfHk"\n 814 \N 187.149.58.33 a78f344a-bdb9-4dd0-abd1-cb4299225395 2019-12-17 17:08:15.477137 24116 677 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1454E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1454.0 187.149.58.33 9b3f9ec4-06cc-48cb-bd50-f149771b788c 2019-12-17 17:08:33.345135 24117 678 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.539E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 539.0 187.149.58.33 a21adea0-022f-4348-a7f4-2d526c77e894 2019-12-17 17:10:17.747095 24118 1721 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 678\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-17\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-673\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 ace5ad67-1041-485f-add3-895f8d800ba6 2019-12-17 17:20:26.398225 24119 1281 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.58.33 ace5ad67-1041-485f-add3-895f8d800ba6 2019-12-17 17:20:26.439284 24120 1721 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 8cd72be7-62e7-409d-8665-2259fdec727f 2019-12-17 17:21:04.97949 24121 2395 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 678\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1721\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-673\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-673 187.149.58.33 8cd72be7-62e7-409d-8665-2259fdec727f 2019-12-17 17:21:04.999236 24122 266 Customer \N \N 27 User \N create ---\nnick_name: WENDY MAYTE GONZALES\nphone: "(667) 453-2125"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente WENDY MAYTE GONZALES fue registrado. 187.149.58.33 c7314035-5f7b-497f-9fac-1620a158c178 2019-12-17 17:31:21.164097 24123 1722 Sale \N \N 27 User \N create ---\ncustomer_id: 266\nuser_id: 27\nopen_cash_register_id: 678\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-17\nsaletype: 2\nseller_id: 19\nsale_code: PV2-V-674\nexpiration_date: 2020-01-21\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 a02bb2ae-43c1-467a-98a4-8fb4404d81ea 2019-12-17 17:31:37.209999 24124 1375 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.58.33 a02bb2ae-43c1-467a-98a4-8fb4404d81ea 2019-12-17 17:31:37.236707 24125 2396 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 678\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1722\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-674\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-674 187.149.58.33 ce785c7f-d385-4658-afab-32ee41aff014 2019-12-17 17:31:55.099562 24126 1722 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.58.33 2e919531-274a-4e4f-a993-f4fc3ed418be 2019-12-17 17:31:56.951859 24127 1723 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 677\namount: !ruby/object:BigDecimal 18:0.53707E3\ntax: !ruby/object:BigDecimal 18:0.6193E2\ndiscount: !ruby/object:BigDecimal 18:0.15E3\ntotal: !ruby/object:BigDecimal 18:0.449E3\nstatus: 0\ndate_sale: 2019-12-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-875\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 fd0d3c8a-8cf6-4e75-ace8-0183720ba299 2019-12-17 18:35:56.177421 24130 2397 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 677\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.449E3\nmove_type: '1'\nsale_id: 1723\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-875\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.449E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-875 187.149.58.33 fdd665ad-5c35-4e4a-882e-c1109aa1e224 2019-12-17 18:36:07.527814 24131 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-15 17:24:40.872356000 Z\n- &1 2019-12-16 21:04:24.611592000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-17 19:52:10.110678956 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 60\n- 61\n 123 \N 189.186.59.52 af11bde0-f4ea-4ef9-bcd7-478916e1de03 2019-12-17 19:52:10.118916 24132 21 User \N \N 21 User \N update ---\nunique_session_id:\n- QYvnm8gHUbrK1vx3D-7m\n- TvbfCrHa1b3nBSYgQtEe\n 124 \N 189.186.59.52 af11bde0-f4ea-4ef9-bcd7-478916e1de03 2019-12-17 19:52:10.133567 24133 1724 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 677\namount: !ruby/object:BigDecimal 18:0.2358E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2358E4\nstatus: 0\ndate_sale: 2019-12-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-876\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 eb5b373c-b947-416c-a9f0-edbd2512bba2 2019-12-17 19:53:01.504751 24134 1097 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 15 \N 187.149.58.33 eb5b373c-b947-416c-a9f0-edbd2512bba2 2019-12-17 19:53:01.531998 24135 1273 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.58.33 eb5b373c-b947-416c-a9f0-edbd2512bba2 2019-12-17 19:53:01.553585 24136 1724 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 81b8bb68-96e7-4f8e-b9e5-30fbcbaa168e 2019-12-17 19:53:31.605238 24137 2398 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 677\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2358E4\nmove_type: '1'\nsale_id: 1724\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-876\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2358E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-876 187.149.58.33 81b8bb68-96e7-4f8e-b9e5-30fbcbaa168e 2019-12-17 19:53:31.625703 24138 679 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.539E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 539.0 189.186.59.52 f029bd33-9e30-4969-a2c2-c4f46d3defe7 2019-12-17 20:07:50.724897 24139 267 Customer \N \N 21 User \N create ---\nnick_name: NANCY\nphone: "(667) 461-0978"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente NANCY fue registrado. 189.186.59.52 ca16d79a-718a-4964-8872-c858fb0e377b 2019-12-17 20:08:22.761961 24140 1725 Sale \N \N 21 User \N create ---\ncustomer_id: 267\nuser_id: 21\nopen_cash_register_id: 679\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-12-17\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-173\nexpiration_date: 2020-01-21\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 1dd927b8-a028-4fab-b7b5-5ab20bfe6d03 2019-12-17 20:08:36.129271 24141 1417 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.59.52 1dd927b8-a028-4fab-b7b5-5ab20bfe6d03 2019-12-17 20:08:36.158003 24142 2399 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 679\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1725\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-173\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-173 189.186.59.52 d6a13c3e-94d3-4aa2-8a4b-5c8960e73fc0 2019-12-17 20:08:45.2449 24143 1725 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.59.52 92d93d0a-fb41-4f01-855a-19d4adf4fbee 2019-12-17 20:08:46.831387 24144 2400 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 673\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1709\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.59.52 8cb8ddd4-4e3c-4bd4-8ab7-5dba3591ff32 2019-12-17 20:09:45.584318 24145 1709 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.59.52 8cb8ddd4-4e3c-4bd4-8ab7-5dba3591ff32 2019-12-17 20:09:45.611227 24146 2400 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 673\n- 679\n 2 movimiento de efectivo por venta con folio PV3-V-171 189.186.59.52 8cb8ddd4-4e3c-4bd4-8ab7-5dba3591ff32 2019-12-17 20:09:45.622729 24147 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-17 00:24:06.859642000 Z\n- &1 2019-12-17 16:44:43.031036000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-17 20:13:02.640701635 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1109\n- 1110\n 2220 \N 189.186.59.52 b0190c84-bb56-4cc3-b266-c9974e6bc265 2019-12-17 20:13:02.646915 24148 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XdkwjPfE4dnBVgsEuWD4\n- 4v6Px4fCY4zy4xceSDiS\n 2221 \N 189.186.59.52 b0190c84-bb56-4cc3-b266-c9974e6bc265 2019-12-17 20:13:02.662957 24149 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-17 16:44:43.031036000 Z\n- &1 2019-12-17 20:13:02.640701000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-17 20:34:00.425972362 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\nsign_in_count:\n- 1110\n- 1111\n 2222 \N 189.186.211.119 6eda1709-9b41-4163-8ee0-4d69a6b190e4 2019-12-17 20:34:00.433881 24150 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4v6Px4fCY4zy4xceSDiS\n- vwjo4Msqp2PBC3JLC-2t\n 2223 \N 189.186.211.119 6eda1709-9b41-4163-8ee0-4d69a6b190e4 2019-12-17 20:34:00.450341 24176 1441 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 874\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 ba706e8e-0f12-4733-8766-70f838966f1c 2019-12-18 00:13:46.702607 24151 1726 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 679\namount: !ruby/object:BigDecimal 18:0.169E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.169E3\nstatus: 0\ndate_sale: 2019-12-17\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-174\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 1307226f-1fd7-4f2d-b883-fb08e07fc5ac 2019-12-17 22:50:21.337054 24152 1178 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.59.52 1307226f-1fd7-4f2d-b883-fb08e07fc5ac 2019-12-17 22:50:21.364254 24153 1726 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 4842baa1-7531-4e36-bc20-1e909c25e029 2019-12-17 22:50:52.306942 24154 2401 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 679\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.169E3\nmove_type: '1'\nsale_id: 1726\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-174\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.331E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-174 189.186.59.52 4842baa1-7531-4e36-bc20-1e909c25e029 2019-12-17 22:50:52.326849 24155 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-17 20:13:02.640701000 Z\n- &1 2019-12-17 20:34:00.425972000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-17 23:15:49.768608652 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1111\n- 1112\n 2224 \N 189.186.59.52 f2bb0970-9aec-436a-9d7d-60956caed501 2019-12-17 23:15:49.787175 24156 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vwjo4Msqp2PBC3JLC-2t\n- ShKSqLdQVcuUTZ1bNqYC\n 2225 \N 189.186.59.52 f2bb0970-9aec-436a-9d7d-60956caed501 2019-12-17 23:15:49.808678 24157 968 Product \N \N 4 User \N create ---\nsku: BOL-968\nname: 1BLCO19037\ndescription: MOCULINA NEGRA COE\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-968 fue creado. 189.186.59.52 66e40a0f-0219-471e-aab6-2661f003a3bf 2019-12-17 23:34:26.623525 24158 968 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000968'\n 2 \N 189.186.59.52 66e40a0f-0219-471e-aab6-2661f003a3bf 2019-12-17 23:34:26.659379 24159 1440 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 968\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.52 66e40a0f-0219-471e-aab6-2661f003a3bf 2019-12-17 23:34:26.688072 24160 864 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.58.33 f3ecdc51-9360-4433-a9d3-d59c5d049d5b 2019-12-17 23:41:19.01836 24161 864 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.58.33 a8994e86-0e4f-4e26-b801-bc57485182dc 2019-12-17 23:41:23.311598 24162 1162 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.58.33 ea097e35-3bdc-4776-8b0b-c7ad3e73face 2019-12-17 23:42:01.025636 24163 1162 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.58.33 c678f85e-ac8c-41fe-b596-e26ab454b51d 2019-12-17 23:42:04.461746 24164 1282 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.58.33 6a748e14-89cc-40de-afd7-75da0fc275a3 2019-12-17 23:42:36.071477 24165 1282 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.58.33 eadfb97b-86e3-4f38-830d-34dd869e6c93 2019-12-17 23:42:39.810314 24166 1373 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.58.33 0518eccd-a074-4bf0-874c-b5f5bf31523b 2019-12-17 23:43:21.048342 24167 1373 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.58.33 c3bb2684-7a1a-4646-b46c-702e19d99088 2019-12-17 23:43:24.801936 24168 1254 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.58.33 88ab3e42-df63-4848-a1b8-a83a0910216a 2019-12-17 23:43:50.196211 24169 1254 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.58.33 98ff7ff0-fb28-4fc1-9f13-4df74c7e55e8 2019-12-17 23:43:53.673368 24170 348 Transfer \N \N 27 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-12-17\nuser_id: 27\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.58.33 1ca2cda1-9e84-41c3-8fd9-8fd8789bba86 2019-12-17 23:43:54.482139 24171 1727 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 679\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-12-17\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-175\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 a27c3303-5372-461f-a139-4961648a4866 2019-12-17 23:54:30.502644 24172 1269 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.59.52 a27c3303-5372-461f-a139-4961648a4866 2019-12-17 23:54:30.530992 24173 1727 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 3034e642-557e-43b8-a7b6-04397a6d4f32 2019-12-17 23:54:55.024234 24174 2402 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 679\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 1727\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-175\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-175 189.186.59.52 3034e642-557e-43b8-a7b6-04397a6d4f32 2019-12-17 23:54:55.04547 24175 348 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-17\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.58.33 ba706e8e-0f12-4733-8766-70f838966f1c 2019-12-18 00:13:46.670118 24177 1442 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 951\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 ba706e8e-0f12-4733-8766-70f838966f1c 2019-12-18 00:13:46.730646 24178 1275 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 187.149.58.33 ba706e8e-0f12-4733-8766-70f838966f1c 2019-12-18 00:13:46.746511 24179 1443 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 807\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 ba706e8e-0f12-4733-8766-70f838966f1c 2019-12-18 00:13:46.765502 24180 1444 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 696\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 ba706e8e-0f12-4733-8766-70f838966f1c 2019-12-18 00:13:46.783973 24181 1140 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.58.33 889470be-4b2e-4050-9ea8-762c166c28de 2019-12-18 00:24:48.283242 24182 1140 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.58.33 f31cf414-4d49-4d0a-a893-8c664654622b 2019-12-18 00:25:04.773087 24183 1140 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.58.33 ea5969fb-5aef-466f-874a-4995495f03a3 2019-12-18 00:25:06.733894 24184 1408 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 d4788205-91de-4ee8-9826-5fefe652eb49 2019-12-18 00:25:35.472914 24185 1408 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.58.33 23088016-50b6-4aa2-991d-76db9c37157d 2019-12-18 00:25:40.914662 24186 1381 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.58.33 90c5f1cf-c16b-41e9-b407-2ceadb768fd8 2019-12-18 00:28:24.908492 24187 1159 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.58.33 f64684f7-07f8-4b4f-8501-d82fbfbe7829 2019-12-18 00:30:18.469404 24188 1159 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.58.33 a9c5a3fe-2389-4850-a613-5df07ca3adcc 2019-12-18 00:30:32.375288 24189 1105 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.58.33 c7015683-351d-482e-96d0-5889ee7aa040 2019-12-18 00:31:08.084893 24190 123 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.58.33 cbc530f9-c6a4-40dc-86ef-d364adee52e3 2019-12-18 00:31:29.519244 24191 1012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 5 \N 187.149.58.33 a701d80e-74a9-44f7-9061-a952b634acd6 2019-12-18 00:32:15.51905 24192 23 ProductsReturn \N \N 27 User \N create ---\nsale_id: 1721\nuser_id: 27\nreturn_code: PV2-D-10\npointsale_id: 2\nnew_amount: !ruby/object:BigDecimal 18:0.799E3\nreturned_amount: !ruby/object:BigDecimal 18:0.699E3\ndifference_amount: !ruby/object:BigDecimal 18:0.1E3\nis_money_returned: false\n 1 devolución PV2-D-10 creada. 187.149.58.33 9c7c18c0-8b19-4dd9-a2ed-48288bd1106d 2019-12-18 00:32:24.504838 24193 1281 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 187.149.58.33 9c7c18c0-8b19-4dd9-a2ed-48288bd1106d 2019-12-18 00:32:24.529621 24194 1125 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 187.149.58.33 9c7c18c0-8b19-4dd9-a2ed-48288bd1106d 2019-12-18 00:32:24.553293 24195 1012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.58.33 38c22649-4677-4b79-967b-76bd22817b58 2019-12-18 00:32:25.712567 24196 2403 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 678\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 1721\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 23\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV2-D-10 187.149.58.33 4c301e75-6e96-4dc6-9e63-da096cb2c220 2019-12-18 00:32:31.268088 24197 1012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.58.33 5464bf6d-267a-4eca-863f-db52741e7765 2019-12-18 00:32:35.328425 24198 1012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 187.149.58.33 d002b7a2-ed07-4792-8ddc-59cb6b0b5d0e 2019-12-18 00:32:40.585055 24199 1444 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.58.33 a989479e-3a5e-4bfb-bd16-8bedf76be211 2019-12-18 00:33:12.11816 24200 1444 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.58.33 ce3d42fa-0d7c-41e4-a622-1a4ac2b8362d 2019-12-18 00:33:42.638115 24201 1298 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 8f7815bc-6cc5-4014-b377-4ebae22c0f96 2019-12-18 00:33:50.005314 24202 1298 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.58.33 57e5c87d-e1e1-46ad-80b9-b2aebefa46dc 2019-12-18 00:33:59.518197 24203 1385 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.58.33 eb68af46-1ab8-4ed8-bf23-aae74cee0b16 2019-12-18 00:34:37.317323 24204 1298 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:-0.1E1\n 5 \N 187.149.58.33 5e5fc23d-d3e8-461a-8c8b-fb27ffd6e8c8 2019-12-18 00:34:40.40608 24205 1385 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.58.33 343a1f80-b98d-44e6-801f-4f2fd587a48d 2019-12-18 00:35:09.408768 24206 1298 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:-0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.58.33 30fb77f7-6cfd-45e9-9f04-29569f0c48f4 2019-12-18 00:35:13.311221 24207 1096 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.58.33 79b1ab85-3775-4b2c-baea-5baf7a6e0cf9 2019-12-18 00:35:55.129318 24208 1096 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.58.33 2f5cdfa8-6a63-4b08-9a04-9416ad228102 2019-12-18 00:35:58.96153 24209 1096 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.58.33 634c9051-97cd-4eba-a755-c35c842271d3 2019-12-18 00:36:02.682749 24210 1096 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.58.33 107f56c3-fa2a-441a-a630-f4669b37d845 2019-12-18 00:36:07.114212 24211 1096 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.58.33 ae3dcf57-a16e-41e7-9f48-237f96056077 2019-12-18 00:36:11.901044 24212 1141 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.58.33 a745395d-cfd1-42c8-8f91-65ddd4e785fc 2019-12-18 00:36:46.102198 24213 1141 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.58.33 372769ad-edb7-4f76-a324-6d53ce5eeaec 2019-12-18 00:36:51.58474 24214 1068 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.58.33 eae7a22c-7bc1-46a2-ad73-67d7c401e646 2019-12-18 00:38:49.070227 24215 1068 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.58.33 3125eb6e-8056-44b8-8950-2b215b2ad545 2019-12-18 00:38:53.050512 24216 1069 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.58.33 25c6fc9b-12d3-4ba4-8d7d-59819f736890 2019-12-18 00:39:19.784319 24217 1069 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.58.33 544bb651-4c14-4677-969b-760a95bd5bbd 2019-12-18 00:39:24.294896 24218 1728 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 679\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-12-17\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-176\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 a0147d09-8372-4e56-a43d-18d44055b198 2019-12-18 00:40:45.125683 24219 1240 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.59.52 a0147d09-8372-4e56-a43d-18d44055b198 2019-12-18 00:40:45.151195 24220 1728 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 8644a8f9-2079-4133-8dd6-e606005dad29 2019-12-18 00:40:58.671373 24221 2404 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 679\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 1728\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-176\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-176 189.186.59.52 8644a8f9-2079-4133-8dd6-e606005dad29 2019-12-18 00:40:58.691157 24222 1058 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.58.33 65b5f131-721b-4095-92dd-6e7a4ca85e62 2019-12-18 00:42:56.836003 24223 1058 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.58.33 dd0e8a18-2109-4b72-aeaf-4def9787480b 2019-12-18 00:43:01.413207 24224 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-17 20:34:00.425972000 Z\n- &1 2019-12-17 23:15:49.768608000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-18 00:47:51.929472930 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938434\n mask_addr: 4294967295\nsign_in_count:\n- 1112\n- 1113\n 2226 \N 200.68.151.130 9f214edc-2f4f-449a-82a5-08ca821f70ab 2019-12-18 00:47:51.940703 24225 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ShKSqLdQVcuUTZ1bNqYC\n- s_1eYHrSxr8QF5LJ5e5r\n 2227 \N 200.68.151.130 9f214edc-2f4f-449a-82a5-08ca821f70ab 2019-12-18 00:47:51.962455 24226 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-17 23:15:49.768608000 Z\n- &1 2019-12-18 00:47:51.929472000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-18 00:50:07.015600884 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938434\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938434\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1113\n- 1114\n 2228 \N 189.186.59.52 3644fcf8-982e-4dbc-82fb-0e194703d3e3 2019-12-18 00:50:07.024222 24227 4 User \N \N 4 User \N update ---\nunique_session_id:\n- s_1eYHrSxr8QF5LJ5e5r\n- gwryFyAC_9oUf39Z8GrM\n 2229 \N 189.186.59.52 3644fcf8-982e-4dbc-82fb-0e194703d3e3 2019-12-18 00:50:07.041463 24228 349 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-12-17\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.58.33 ec8f6969-9972-4815-afdb-95c33092f93e 2019-12-18 00:56:58.970449 24229 1371 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.58.33 27395ec2-192b-4f07-b2f1-0451c6072df8 2019-12-18 01:09:29.63089 24230 1246 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 187.149.58.33 15b9c0a0-7855-40d6-aba8-6c69bcbf2e5e 2019-12-18 01:09:55.203974 24231 1246 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.58.33 2a4f9324-edf8-44dc-b600-9c37b226f5de 2019-12-18 01:10:01.00615 24232 350 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-12-17\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.58.33 e661f428-452a-41b1-9ec8-c5ed7994c4ef 2019-12-18 01:10:09.741047 24233 350 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-17\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.58.33 667b64a0-e41e-45ec-b0bf-f77a27c6e0ea 2019-12-18 01:12:49.659311 24234 1445 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 886\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.7E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 667b64a0-e41e-45ec-b0bf-f77a27c6e0ea 2019-12-18 01:12:49.694111 24235 1376 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.58.33 667b64a0-e41e-45ec-b0bf-f77a27c6e0ea 2019-12-18 01:12:49.719126 24236 350 Transfer \N \N 27 User \N update --- {}\n 3 Se dio entrada a traspaso de SUO a S BY SUO 187.149.58.33 19a790d5-7071-4a52-8144-56a121b6ceed 2019-12-18 01:12:49.767463 24237 1445 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.14E2\n 2 \N 187.149.58.33 19a790d5-7071-4a52-8144-56a121b6ceed 2019-12-18 01:12:49.785498 24238 1376 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 187.149.58.33 19a790d5-7071-4a52-8144-56a121b6ceed 2019-12-18 01:12:49.815706 24239 349 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-17\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.58.33 73fa5fb0-3b7a-47a5-ad29-d3f8190a0dde 2019-12-18 01:13:03.122324 24240 1446 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 701\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 73fa5fb0-3b7a-47a5-ad29-d3f8190a0dde 2019-12-18 01:13:03.145295 24241 1447 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 739\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 73fa5fb0-3b7a-47a5-ad29-d3f8190a0dde 2019-12-18 01:13:03.163983 24242 1448 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 738\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 73fa5fb0-3b7a-47a5-ad29-d3f8190a0dde 2019-12-18 01:13:03.184856 24243 1439 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.58.33 73fa5fb0-3b7a-47a5-ad29-d3f8190a0dde 2019-12-18 01:13:03.204169 24244 1091 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 187.149.58.33 73fa5fb0-3b7a-47a5-ad29-d3f8190a0dde 2019-12-18 01:13:03.223199 24245 1449 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 688\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 73fa5fb0-3b7a-47a5-ad29-d3f8190a0dde 2019-12-18 01:13:03.2424 24246 1450 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 870\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 73fa5fb0-3b7a-47a5-ad29-d3f8190a0dde 2019-12-18 01:13:03.260179 24247 798 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.58.33 73fa5fb0-3b7a-47a5-ad29-d3f8190a0dde 2019-12-18 01:13:03.276133 24248 1451 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 125\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 73fa5fb0-3b7a-47a5-ad29-d3f8190a0dde 2019-12-18 01:13:03.29839 24249 1099 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 187.149.58.33 73fa5fb0-3b7a-47a5-ad29-d3f8190a0dde 2019-12-18 01:13:03.317199 24250 1452 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 804\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 73fa5fb0-3b7a-47a5-ad29-d3f8190a0dde 2019-12-18 01:13:03.337652 24251 1453 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 678\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 73fa5fb0-3b7a-47a5-ad29-d3f8190a0dde 2019-12-18 01:13:03.356917 24252 1454 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 957\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 73fa5fb0-3b7a-47a5-ad29-d3f8190a0dde 2019-12-18 01:13:03.377412 24253 1455 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 791\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.58.33 73fa5fb0-3b7a-47a5-ad29-d3f8190a0dde 2019-12-18 01:13:03.397321 24254 347 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-17\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.58.33 0ece45c2-f347-4915-9518-3ffa6fc6e8b1 2019-12-18 01:13:12.808152 24255 804 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 187.149.58.33 0ece45c2-f347-4915-9518-3ffa6fc6e8b1 2019-12-18 01:13:12.83312 24256 802 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.9E1\n 7 \N 187.149.58.33 0ece45c2-f347-4915-9518-3ffa6fc6e8b1 2019-12-18 01:13:12.857288 24257 347 Transfer \N \N 27 User \N update --- {}\n 3 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.58.33 b76b6e48-7668-406a-b48a-e2bfe9a64a49 2019-12-18 01:13:13.405284 24258 804 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.7E1\n 10 \N 187.149.58.33 b76b6e48-7668-406a-b48a-e2bfe9a64a49 2019-12-18 01:13:13.418267 24259 802 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.14E2\n 8 \N 187.149.58.33 b76b6e48-7668-406a-b48a-e2bfe9a64a49 2019-12-18 01:13:13.442155 24260 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-18 00:47:51.929472000 Z\n- &1 2019-12-18 00:50:07.015600000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-18 01:44:31.960984165 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938434\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938434\n mask_addr: 4294967295\nsign_in_count:\n- 1114\n- 1115\n 2230 \N 200.68.151.130 b8be22d1-a8fc-4f7d-84dd-4a6765074757 2019-12-18 01:44:31.972694 24261 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gwryFyAC_9oUf39Z8GrM\n- 71M5yzzBmq1m3jF2F_Rn\n 2231 \N 200.68.151.130 b8be22d1-a8fc-4f7d-84dd-4a6765074757 2019-12-18 01:44:31.99783 24377 1662 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV1-V-846 cancelada. 187.149.78.168 810385fb-9ea0-4c4a-8dc4-7fdcbb637b1e 2019-12-19 01:17:49.719148 24262 1729 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 677\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-12-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-877\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 356cf329-b2f5-442d-8f75-4d1996cdcc99 2019-12-18 01:58:30.569115 24263 1424 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.58.33 356cf329-b2f5-442d-8f75-4d1996cdcc99 2019-12-18 01:58:30.596366 24264 1729 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 e65224a9-6416-4994-a2bb-d7e472372808 2019-12-18 01:59:22.695866 24265 2405 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 677\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 1729\ncardnumber: 4891\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-877\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-877 187.149.58.33 e65224a9-6416-4994-a2bb-d7e472372808 2019-12-18 01:59:22.719791 24266 2406 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 679\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 1725\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-173 189.186.59.52 e8aa759d-f7ac-4a5b-be9d-181319ef52d6 2019-12-18 02:13:57.510649 24267 1725 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.59.52 949c32be-e2f3-4e9a-a6cc-4da4c3fcb4ec 2019-12-18 02:13:59.644403 24268 633 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.58.33 738b7eb1-a35d-4818-9b4c-712932ef67d6 2019-12-18 02:36:17.723757 24269 633 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.58.33 d383ccc4-c81f-4291-9e55-b67df00b2bd8 2019-12-18 02:36:31.778145 24270 351 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-12-17\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.58.33 4814b083-73f0-4aad-81f4-f5bfcbaf2f7f 2019-12-18 02:36:33.352203 24271 683 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 678\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.999E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.9E3\ncash_fund: !ruby/object:BigDecimal 18:0.638E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1538E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 883f3376-cd91-4382-a704-ba40aee9b1d6 2019-12-18 03:01:13.111032 24272 678 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 883f3376-cd91-4382-a704-ba40aee9b1d6 2019-12-18 03:01:13.129985 24273 684 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 678\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.999E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.9E3\ncash_fund: !ruby/object:BigDecimal 18:0.638E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1538E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.58.33 e0712e9d-7c99-4bbb-9bb9-ddef07438929 2019-12-18 03:01:13.21565 24274 685 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 677\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4406E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.1261E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4261E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.58.33 76889a34-ef5f-4006-8bb3-ffc7fc6c6267 2019-12-18 03:05:04.336936 24275 677 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.58.33 76889a34-ef5f-4006-8bb3-ffc7fc6c6267 2019-12-18 03:05:04.350656 24276 686 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 679\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.4166E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.35E4\ncash_fund: !ruby/object:BigDecimal 18:0.1205E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4705E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.59.52 137d863a-a56e-4c23-8a29-51b131d32f6d 2019-12-18 03:05:56.957801 24277 679 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.59.52 137d863a-a56e-4c23-8a29-51b131d32f6d 2019-12-18 03:05:56.968579 24278 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-17 16:51:56.548319000 Z\n- &1 2019-12-17 17:08:15.459679000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-18 17:10:32.082820937 Z\nsign_in_count:\n- 405\n- 406\n 815 \N 187.149.58.33 4be4724a-55bf-483e-a293-b03b4e3677dc 2019-12-18 17:10:32.113234 24279 2 User \N \N 2 User \N update ---\nunique_session_id:\n- "-5-zZGivYrZHgCpsYfHk"\n- ygB9BaKJT3iZziBKqXdy\n 816 \N 187.149.58.33 4be4724a-55bf-483e-a293-b03b4e3677dc 2019-12-18 17:10:32.135397 24280 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-16 17:18:28.857428000 Z\n- &1 2019-12-17 17:07:50.654136000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-18 17:14:24.322793601 Z\nsign_in_count:\n- 48\n- 49\n 98 \N 187.149.58.33 c152cdc2-4dab-4af9-ad14-36e474481ed6 2019-12-18 17:14:24.328017 24281 27 User \N \N 27 User \N update ---\nunique_session_id:\n- TSZecWuj8FJTzMiYzP1j\n- VmivAfCYCxdBb3y3qgXJ\n 99 \N 187.149.58.33 c152cdc2-4dab-4af9-ad14-36e474481ed6 2019-12-18 17:14:24.339859 24282 680 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1261E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1261.0 187.149.58.33 ae13bb09-0362-4693-a8f2-080465fae2b7 2019-12-18 17:17:03.050674 24283 681 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.638E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 638.0 187.149.58.33 e5a66e43-6921-45e3-a67f-509917d1deb2 2019-12-18 17:17:50.911353 24284 19 User \N \N 19 User \N update ---\ncurrent_sign_in_at:\n- 2019-10-05 17:26:12.012230000 Z\n- 2019-12-18 17:50:01.717444567 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1\n- 2\n 5 \N 189.186.59.52 3e7a3022-6d70-4235-8993-5ea20d017957 2019-12-18 17:50:01.723955 24285 19 User \N \N 19 User \N update ---\nunique_session_id:\n- wNh3TrVXsVsW2VvWZA8x\n- 4V7TUWzjwhdLq4iHzApi\n 6 \N 189.186.59.52 3e7a3022-6d70-4235-8993-5ea20d017957 2019-12-18 17:50:01.741438 24286 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-18 00:50:07.015600000 Z\n- &1 2019-12-18 01:44:31.960984000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-18 19:25:31.841043029 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938434\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938434\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934084\n mask_addr: 4294967295\nsign_in_count:\n- 1115\n- 1116\n 2232 \N 200.68.134.132 9b1c7e7d-8171-4aa9-b4e9-6b02c2805398 2019-12-18 19:25:31.84843 24287 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 71M5yzzBmq1m3jF2F_Rn\n- 8Cx9mDHk_hFWYTz2bWQV\n 2233 \N 200.68.134.132 9b1c7e7d-8171-4aa9-b4e9-6b02c2805398 2019-12-18 19:25:31.866291 24288 682 OpenCashRegister \N \N 19 User \N create ---\ncash_register_id: 3\nuser_id: 19\ninitial_cash: !ruby/object:BigDecimal 18:0.1205E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1205.0 189.186.59.52 4c2ad806-011f-4d04-a93a-e54ba9ed7073 2019-12-18 19:51:23.654707 24289 1730 Sale \N \N 19 User \N create ---\ncustomer_id: 1\nuser_id: 19\nopen_cash_register_id: 682\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-12-18\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-177\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 6603adc7-a186-4cae-95f1-6730fee57bc1 2019-12-18 19:51:35.638526 24290 1137 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.59.52 6603adc7-a186-4cae-95f1-6730fee57bc1 2019-12-18 19:51:35.664191 24291 1730 Sale \N \N 19 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 f82f4903-11e2-4364-bbaa-5890a195d9f1 2019-12-18 19:51:54.721215 24292 2407 CashRegistersMove \N \N 19 User \N create ---\nopen_cash_register_id: 682\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 1730\ncardnumber: 5596\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-177\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-177 189.186.59.52 f82f4903-11e2-4364-bbaa-5890a195d9f1 2019-12-18 19:51:54.743901 24293 1731 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 680\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-12-18\nsaletype: 1\nseller_id: 20\nsale_code: PV1-V-878\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 54bd4950-d756-4a00-a98b-837bbcfa1f53 2019-12-18 20:27:23.375935 24294 1156 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 187.149.58.33 54bd4950-d756-4a00-a98b-837bbcfa1f53 2019-12-18 20:27:23.400668 24295 1731 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 2be72176-bbca-4825-bfad-c0cab9ab3ed1 2019-12-18 20:27:52.894779 24296 2408 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 680\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 1731\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-878\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-878 187.149.58.33 2be72176-bbca-4825-bfad-c0cab9ab3ed1 2019-12-18 20:27:52.914671 24297 1732 Sale \N \N 19 User \N create ---\ncustomer_id: 1\nuser_id: 19\nopen_cash_register_id: 682\namount: !ruby/object:BigDecimal 18:0.579E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.579E3\nstatus: 0\ndate_sale: 2019-12-18\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-178\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 7a1e984d-78b1-4f7b-b4dc-bae09aa4c217 2019-12-18 20:47:47.745223 24298 1225 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.59.52 7a1e984d-78b1-4f7b-b4dc-bae09aa4c217 2019-12-18 20:47:47.772172 24299 1732 Sale \N \N 19 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 c4245076-f94e-4921-87c8-3ecdbc1bbf88 2019-12-18 20:49:14.522265 24300 2409 CashRegistersMove \N \N 19 User \N create ---\nopen_cash_register_id: 682\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.579E3\nmove_type: '1'\nsale_id: 1732\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-178\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.121E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-178 189.186.59.52 c4245076-f94e-4921-87c8-3ecdbc1bbf88 2019-12-18 20:49:14.544506 24301 1128 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.59.52 a4376662-1829-4091-8aa7-2006e05af242 2019-12-18 20:52:59.072735 24302 1128 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.59.52 2882c763-9105-4115-83eb-f0a714f89693 2019-12-18 20:53:03.047126 24303 1128 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.59.52 2a06ca74-f666-400d-a814-610a1f46fce7 2019-12-18 20:53:15.929281 24304 1132 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.59.52 00d988aa-916c-4b32-9da1-60823b209e87 2019-12-18 20:53:26.96376 24305 352 Transfer \N \N 19 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2019-12-18\nuser_id: 19\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.59.52 29a62176-261c-41e3-a2c1-e12dc6a72974 2019-12-18 20:53:29.047237 24306 1733 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 681\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-18\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-675\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 7e3cb7ef-8e49-409e-9dba-c60e84331a60 2019-12-18 20:53:36.323416 24307 1281 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 187.149.58.33 7e3cb7ef-8e49-409e-9dba-c60e84331a60 2019-12-18 20:53:36.348052 24308 1733 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 d66a28f5-2946-4a70-8eb6-e4da449dc08b 2019-12-18 20:54:15.394812 24378 1409 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.78.168 810385fb-9ea0-4c4a-8dc4-7fdcbb637b1e 2019-12-19 01:17:49.746203 24309 2410 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 681\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1733\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-675\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-675 187.149.58.33 d66a28f5-2946-4a70-8eb6-e4da449dc08b 2019-12-18 20:54:15.414146 24310 2411 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 680\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.139E3\nmove_type: '1'\nsale_id: 1676\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-854 187.149.58.33 cb1d5998-872f-4e8f-92b4-60c657111a66 2019-12-18 20:57:10.654018 24311 1676 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.58.33 d7e269ad-57c8-4c16-8ffb-9da2545becb9 2019-12-18 20:57:13.560791 24312 1375 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.58.33 255d5be7-daa6-44f4-9f49-c0282e01a3e8 2019-12-18 21:40:18.368207 24313 1375 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.58.33 7021a5b5-f252-4055-9f65-67ac3b182e6c 2019-12-18 21:40:24.893394 24314 353 Transfer \N \N 27 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-12-18\nuser_id: 27\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.58.33 098dcf03-6ce2-4ee4-9f9b-6d024f0fbeec 2019-12-18 21:40:26.599905 24315 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-18 01:44:31.960984000 Z\n- &1 2019-12-18 19:25:31.841043000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-18 21:55:40.602395054 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938434\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934084\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934084\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\nsign_in_count:\n- 1116\n- 1117\n 2234 \N 189.186.211.119 c9221c45-856b-49a9-b5d5-5eeb65e246f3 2019-12-18 21:55:40.609881 24316 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8Cx9mDHk_hFWYTz2bWQV\n- r6hxNzqn2WR7EqgTk4km\n 2235 \N 189.186.211.119 c9221c45-856b-49a9-b5d5-5eeb65e246f3 2019-12-18 21:55:40.626213 24317 1734 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 681\namount: !ruby/object:BigDecimal 18:0.989E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.989E3\nstatus: 0\ndate_sale: 2019-12-18\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-676\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.58.33 022dae78-c00f-4d81-a94e-84fd2eb494d2 2019-12-18 21:58:26.701249 24318 1445 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 3 \N 187.149.58.33 022dae78-c00f-4d81-a94e-84fd2eb494d2 2019-12-18 21:58:26.726017 24319 1734 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.58.33 bfde8ef2-65ac-479d-84dc-1bba9d1930c8 2019-12-18 21:58:54.87809 24320 2412 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 681\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.989E3\nmove_type: '1'\nsale_id: 1734\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-676\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-676 187.149.58.33 bfde8ef2-65ac-479d-84dc-1bba9d1930c8 2019-12-18 21:58:54.897028 24321 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-16 21:04:24.611592000 Z\n- &1 2019-12-17 19:52:10.110678000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-18 22:40:36.959452015 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112075\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 61\n- 62\n 125 \N 189.186.59.52 f6972812-ce73-4d38-821b-88a8734d2b49 2019-12-18 22:40:36.966299 24322 21 User \N \N 21 User \N update ---\nunique_session_id:\n- TvbfCrHa1b3nBSYgQtEe\n- zMCq88CVtirSjwyW3Szh\n 126 \N 189.186.59.52 f6972812-ce73-4d38-821b-88a8734d2b49 2019-12-18 22:40:36.980434 24323 1152 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.59.52 b48a79a1-bb54-420e-92b7-88919588d745 2019-12-18 22:41:24.657439 24324 1152 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.59.52 78bba610-5d88-453c-bf0a-98d6a4e84957 2019-12-18 22:41:28.507176 24325 354 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2019-12-18\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.59.52 476dd7af-b7c2-40b0-b1a6-6f2ae37c19c5 2019-12-18 22:41:39.141198 24326 1117 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.59.52 7f56bb6b-b7e8-41e0-8808-e18f237ae740 2019-12-18 22:41:53.894582 24327 1117 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.59.52 44c0f15c-9ea6-455d-9d86-e4b494f98958 2019-12-18 22:41:58.312282 24328 1118 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.59.52 f6527f0a-c576-4752-b8e6-b8527ae618c5 2019-12-18 22:42:09.005856 24329 1118 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.59.52 eaef9e0f-ce6f-4b92-90ce-eaf899d34a97 2019-12-18 22:42:12.980892 24330 1080 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.59.52 70a01e05-16d3-475f-a74d-ab84676f8338 2019-12-18 22:42:21.855781 24331 1080 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.59.52 50fb36d2-4906-4c34-8114-1c33294a7efa 2019-12-18 22:42:27.33432 24332 1395 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.59.52 8a79cb2b-54c6-43cf-b9a7-dfe285104675 2019-12-18 22:42:35.329115 24333 1395 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.59.52 efd65765-395c-42c1-8b98-8b9f3c9526e8 2019-12-18 22:42:42.414228 24569 1417 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.7E1\n 4 \N 189.186.59.52 b3f9fe23-0e0c-478e-88ef-33216e45ec10 2019-12-20 17:52:58.784881 24334 355 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-12-18\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.59.52 59dd6611-b2d3-4c1f-9cc7-95790b13d73b 2019-12-18 22:42:44.138962 24335 1735 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 680\namount: !ruby/object:BigDecimal 18:0.2098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2098E4\nstatus: 0\ndate_sale: 2019-12-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-879\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 f477b255-6cc6-48ac-9d75-af655150e7fc 2019-12-18 22:47:56.294174 24336 1411 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 6 \N 187.149.78.168 f477b255-6cc6-48ac-9d75-af655150e7fc 2019-12-18 22:47:56.319949 24337 1368 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.78.168 f477b255-6cc6-48ac-9d75-af655150e7fc 2019-12-18 22:47:56.341609 24338 1735 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 6b1c7419-d51b-4252-94bf-3d457cb8c587 2019-12-18 22:48:08.032872 24339 2413 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 680\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2098E4\nmove_type: '1'\nsale_id: 1735\ncardnumber: 9257\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-879\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-879 187.149.78.168 6b1c7419-d51b-4252-94bf-3d457cb8c587 2019-12-18 22:48:08.05191 24340 2413 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 680\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.2098E4\nmove_type: '1'\nsale_id: 1735\ncardnumber: 9257\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-879\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 4daf98e7-1701-4473-89d9-c3efff1acda4 2019-12-18 22:55:53.228488 24341 2414 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 680\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2098E4\nmove_type: '1'\nsale_id: 1735\ncardnumber: 447\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-879\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-879 187.149.78.168 1a31fdc0-9dd8-464f-b0ed-aabb303b5a4e 2019-12-18 22:56:04.883749 24342 1736 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 681\namount: !ruby/object:BigDecimal 18:0.149E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.149E3\nstatus: 0\ndate_sale: 2019-12-18\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-677\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 9f5622bc-fba3-4df0-b9f2-69877b89cb04 2019-12-18 23:31:47.225033 24343 1327 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.78.168 9f5622bc-fba3-4df0-b9f2-69877b89cb04 2019-12-18 23:31:47.250893 24344 1736 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 3508697e-6c83-438e-81a7-5fc2b5cc8ae0 2019-12-18 23:31:54.422355 24345 2415 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 681\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.149E3\nmove_type: '1'\nsale_id: 1736\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-677\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-677 187.149.78.168 3508697e-6c83-438e-81a7-5fc2b5cc8ae0 2019-12-18 23:31:54.441438 24346 353 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-18\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.78.168 002e09d8-8317-4be5-bde1-4ace759e455c 2019-12-18 23:40:28.586912 24347 1456 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 948\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 002e09d8-8317-4be5-bde1-4ace759e455c 2019-12-18 23:40:28.607869 24348 355 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-18\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.78.168 5aeaca17-d4e0-4bb2-9472-2d400b987251 2019-12-18 23:40:44.233226 24349 1457 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 776\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 5aeaca17-d4e0-4bb2-9472-2d400b987251 2019-12-18 23:40:44.252737 24350 1458 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 777\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 5aeaca17-d4e0-4bb2-9472-2d400b987251 2019-12-18 23:40:44.289296 24351 1045 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 187.149.78.168 5aeaca17-d4e0-4bb2-9472-2d400b987251 2019-12-18 23:40:44.305599 24352 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 187.149.78.168 5aeaca17-d4e0-4bb2-9472-2d400b987251 2019-12-18 23:40:44.321067 24353 1737 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 681\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-12-18\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-678\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 870054b2-172b-411a-b2de-de9fdd504fc6 2019-12-18 23:50:52.649681 24354 1252 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 3 \N 187.149.78.168 870054b2-172b-411a-b2de-de9fdd504fc6 2019-12-18 23:50:52.676175 24355 1737 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 be975504-9846-4b82-ab4c-28309f79deb9 2019-12-18 23:52:34.87804 24567 688 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.951E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 951.0 189.186.59.52 b8bb3e5d-1bf4-4917-8224-f023f4c6fa1d 2019-12-20 17:44:21.107074 24632 1768 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 bb2fe45e-62b6-4103-83a1-6f8bccc450f5 2019-12-21 02:23:06.835136 24356 2416 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 681\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 1737\ncardnumber: 2916\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-678\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-678 187.149.78.168 be975504-9846-4b82-ab4c-28309f79deb9 2019-12-18 23:52:34.896382 24357 1383 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.78.168 e65bbf72-d875-4b25-b955-db4f702d0725 2019-12-18 23:59:38.954211 24358 1383 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.78.168 9d5e48c1-990a-41d2-a3dd-b36c8851daa8 2019-12-18 23:59:44.057752 24359 356 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-12-18\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.78.168 678e844a-ae58-470e-ae12-0122b0ec5690 2019-12-18 23:59:45.69307 24360 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-18 19:25:31.841043000 Z\n- &1 2019-12-18 21:55:40.602395000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-19 00:03:47.170377003 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934084\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1117\n- 1118\n 2236 \N 189.186.59.52 759ce964-260e-4372-9ad0-1707d2ba94d0 2019-12-19 00:03:47.178989 24361 4 User \N \N 4 User \N update ---\nunique_session_id:\n- r6hxNzqn2WR7EqgTk4km\n- dy4ezasLMbtFfpx67Amo\n 2237 \N 189.186.59.52 759ce964-260e-4372-9ad0-1707d2ba94d0 2019-12-19 00:03:47.196894 24362 1738 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 682\namount: !ruby/object:BigDecimal 18:0.579E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.579E3\nstatus: 0\ndate_sale: 2019-12-18\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-179\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 70b2beb9-5bfd-4d43-bd88-dcc2f0497eb5 2019-12-19 00:27:58.173926 24363 1225 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.59.52 70b2beb9-5bfd-4d43-bd88-dcc2f0497eb5 2019-12-19 00:27:58.202223 24364 1738 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 78f5c304-53bb-40d1-b5f8-ad9a1c9463c2 2019-12-19 00:28:44.621921 24365 2417 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 682\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.579E3\nmove_type: '1'\nsale_id: 1738\ncardnumber: 4177\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-179\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-179 189.186.59.52 78f5c304-53bb-40d1-b5f8-ad9a1c9463c2 2019-12-19 00:28:44.644001 24366 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-18 21:55:40.602395000 Z\n- &1 2019-12-19 00:03:47.170377000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-19 00:33:36.744808649 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1118\n- 1119\n 2238 \N 187.149.78.168 8711487a-95b9-46bb-9be7-a4a08d9fa447 2019-12-19 00:33:36.752592 24367 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dy4ezasLMbtFfpx67Amo\n- 7szmGCvdkgJxy_54pQy7\n 2239 \N 187.149.78.168 8711487a-95b9-46bb-9be7-a4a08d9fa447 2019-12-19 00:33:36.769429 24368 1739 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 681\namount: !ruby/object:BigDecimal 18:0.1798E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1798E4\nstatus: 0\ndate_sale: 2019-12-18\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-679\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 fb32bd1f-ff58-45b1-ac87-8c7ffbf82f7c 2019-12-19 00:45:07.618737 24369 1412 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 3 \N 187.149.78.168 fb32bd1f-ff58-45b1-ac87-8c7ffbf82f7c 2019-12-19 00:45:07.651627 24370 1452 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.78.168 fb32bd1f-ff58-45b1-ac87-8c7ffbf82f7c 2019-12-19 00:45:07.68164 24371 1739 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 9242c7b3-c082-46b9-b7ce-d199e5c03cba 2019-12-19 00:45:57.546776 24372 2418 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 681\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1798E4\nmove_type: '1'\nsale_id: 1739\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-679\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-679 187.149.78.168 9242c7b3-c082-46b9-b7ce-d199e5c03cba 2019-12-19 00:45:57.56979 24373 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-19 00:03:47.170377000 Z\n- &1 2019-12-19 00:33:36.744808000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-19 00:55:43.364653788 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1119\n- 1120\n 2240 \N 189.186.59.52 715187b5-e22a-4314-8faf-2df6bbc1039d 2019-12-19 00:55:43.404024 24374 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7szmGCvdkgJxy_54pQy7\n- yf2tFSDQZeLhPPfZwnsN\n 2241 \N 189.186.59.52 715187b5-e22a-4314-8faf-2df6bbc1039d 2019-12-19 00:55:43.431551 24375 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-19 00:33:36.744808000 Z\n- &1 2019-12-19 00:55:43.364653000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-19 01:13:19.846982452 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1120\n- 1121\n 2242 \N 187.149.78.168 374446ba-fb01-438a-a3f1-8d8c2ede40a7 2019-12-19 01:13:19.857632 24376 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yf2tFSDQZeLhPPfZwnsN\n- zQ_3cQU274iYXUfGfPEF\n 2243 \N 187.149.78.168 374446ba-fb01-438a-a3f1-8d8c2ede40a7 2019-12-19 01:13:19.880707 24379 1740 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 680\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-12-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-880\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 ae0738ca-facb-4541-b541-faeeb2038b84 2019-12-19 01:20:38.938668 24380 1409 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.78.168 ae0738ca-facb-4541-b541-faeeb2038b84 2019-12-19 01:20:38.976108 24381 1740 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 a1ea9f37-0b5a-4fe9-b612-8a406144b214 2019-12-19 01:20:43.91742 24382 2419 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 680\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 1740\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-880\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-880 187.149.78.168 a1ea9f37-0b5a-4fe9-b612-8a406144b214 2019-12-19 01:20:43.93902 24383 1741 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 681\namount: !ruby/object:BigDecimal 18:0.1648E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1648E4\nstatus: 0\ndate_sale: 2019-12-18\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-680\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 956fe429-7ac2-4698-a122-4a2515d1b913 2019-12-19 01:25:40.879204 24384 1138 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.78.168 956fe429-7ac2-4698-a122-4a2515d1b913 2019-12-19 01:25:40.910758 24385 1250 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.78.168 956fe429-7ac2-4698-a122-4a2515d1b913 2019-12-19 01:25:40.933442 24386 1741 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 de9565c4-e548-4f87-b29f-c92354021144 2019-12-19 01:25:55.067755 24387 2420 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 681\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1648E4\nmove_type: '1'\nsale_id: 1741\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-680\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-680 187.149.78.168 de9565c4-e548-4f87-b29f-c92354021144 2019-12-19 01:25:55.087798 24388 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-19 00:55:43.364653000 Z\n- &1 2019-12-19 01:13:19.846982000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-19 01:34:03.230713972 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1121\n- 1122\n 2244 \N 189.186.59.52 d3f373e3-0e17-4182-99b8-d71ea876f9b6 2019-12-19 01:34:03.239368 24389 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zQ_3cQU274iYXUfGfPEF\n- RuhznnjzTTto_dxobce9\n 2245 \N 189.186.59.52 d3f373e3-0e17-4182-99b8-d71ea876f9b6 2019-12-19 01:34:03.270879 24390 765 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.669E3\n- !ruby/object:BigDecimal 18:0.699E3\n 4 El producto CHA-865 fue modificado. 189.186.59.52 0e166503-c7dd-45bd-b665-50c571978632 2019-12-19 01:35:48.592626 24391 1742 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 681\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-12-18\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-681\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 e66c1d3b-0b9d-44eb-b46a-8b5591a520e8 2019-12-19 01:44:17.362406 24392 1372 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.78.168 e66c1d3b-0b9d-44eb-b46a-8b5591a520e8 2019-12-19 01:44:17.390349 24393 1742 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 36204631-00fb-4295-84fb-5c82188a2773 2019-12-19 01:45:00.874532 24394 2421 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 681\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 1742\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-681\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-681 187.149.78.168 36204631-00fb-4295-84fb-5c82188a2773 2019-12-19 01:45:00.895744 24395 1743 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 680\namount: !ruby/object:BigDecimal 18:0.2298E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.345E3\ntotal: !ruby/object:BigDecimal 18:0.1953E4\nstatus: 0\ndate_sale: 2019-12-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-881\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 3fd6ac94-26e7-450e-8f43-8c14316334f4 2019-12-19 01:47:22.40163 24396 1297 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 7 \N 187.149.78.168 3fd6ac94-26e7-450e-8f43-8c14316334f4 2019-12-19 01:47:22.430175 24397 1367 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.78.168 3fd6ac94-26e7-450e-8f43-8c14316334f4 2019-12-19 01:47:22.451835 24398 1743 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 be964efd-2d49-42f6-b378-664582a32abe 2019-12-19 01:48:56.604935 24399 2422 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 680\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.1953E4\nmove_type: '1'\nsale_id: 1743\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-881\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: '8865'\ncustomer_account: 0000SK74\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-881 187.149.78.168 be964efd-2d49-42f6-b378-664582a32abe 2019-12-19 01:48:56.625333 24424 2424 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 681\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1068E4\nmove_type: '1'\nsale_id: 1745\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-682\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.32E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-682 187.149.78.168 c4955f16-1e96-4966-8c89-e4692c0a549a 2019-12-19 02:52:46.352363 24400 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-19 01:13:19.846982000 Z\n- &1 2019-12-19 01:34:03.230713000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-19 01:50:04.563865012 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1122\n- 1123\n 2246 \N 187.149.78.168 2b9359ab-1c03-4eb0-8785-df0d90f57b17 2019-12-19 01:50:04.576239 24401 4 User \N \N 4 User \N update ---\nunique_session_id:\n- RuhznnjzTTto_dxobce9\n- J5XeR_iuhnrNQ2iX8y9A\n 2247 \N 187.149.78.168 2b9359ab-1c03-4eb0-8785-df0d90f57b17 2019-12-19 01:50:04.597196 24402 351 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-18\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.78.168 25b76997-c28b-4936-afc1-3647ca23f3a5 2019-12-19 02:03:54.659858 24403 649 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.78.168 25b76997-c28b-4936-afc1-3647ca23f3a5 2019-12-19 02:03:54.677963 24404 352 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-18\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.78.168 71187987-b06f-448d-bf4f-b74258119d35 2019-12-19 02:04:51.625726 24405 1139 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.78.168 71187987-b06f-448d-bf4f-b74258119d35 2019-12-19 02:04:51.642216 24406 1127 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.78.168 71187987-b06f-448d-bf4f-b74258119d35 2019-12-19 02:04:51.680718 24407 354 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-18\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.78.168 d3eeb061-0e5b-4ddb-9f64-4cda3cc6870d 2019-12-19 02:04:59.65802 24408 1146 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.78.168 d3eeb061-0e5b-4ddb-9f64-4cda3cc6870d 2019-12-19 02:04:59.673298 24409 356 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-18\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.78.168 b4119f8e-6cba-4b32-86d3-bd0979afdbd0 2019-12-19 02:05:07.024216 24410 1459 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 793\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 b4119f8e-6cba-4b32-86d3-bd0979afdbd0 2019-12-19 02:05:07.045302 24411 1744 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 682\namount: !ruby/object:BigDecimal 18:0.1868E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1868E4\nstatus: 0\ndate_sale: 2019-12-18\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-180\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 ab68350e-54cd-45fb-a092-58c209f9f0db 2019-12-19 02:33:50.572049 24412 1080 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.59.52 ab68350e-54cd-45fb-a092-58c209f9f0db 2019-12-19 02:33:50.600761 24413 1135 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.59.52 ab68350e-54cd-45fb-a092-58c209f9f0db 2019-12-19 02:33:50.624954 24414 1744 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 642f8e9f-ec68-4ef6-a422-be55d449ee81 2019-12-19 02:34:08.173467 24415 2423 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 682\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1868E4\nmove_type: '1'\nsale_id: 1744\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-180\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.132E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-180 189.186.59.52 642f8e9f-ec68-4ef6-a422-be55d449ee81 2019-12-19 02:34:08.194108 24416 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-19 01:34:03.230713000 Z\n- &1 2019-12-19 01:50:04.563865000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-19 02:36:06.036686781 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1123\n- 1124\n 2248 \N 189.186.59.52 c0417300-d413-494e-a21d-a7d9757b1ada 2019-12-19 02:36:06.044128 24417 4 User \N \N 4 User \N update ---\nunique_session_id:\n- J5XeR_iuhnrNQ2iX8y9A\n- CqzsYrkzC4NcZxUNR1Rm\n 2249 \N 189.186.59.52 c0417300-d413-494e-a21d-a7d9757b1ada 2019-12-19 02:36:06.061391 24418 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-19 01:50:04.563865000 Z\n- &1 2019-12-19 02:36:06.036686000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-19 02:43:59.584082198 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1124\n- 1125\n 2250 \N 187.149.78.168 c3ac8b38-00ea-4835-bec0-77f8af83db12 2019-12-19 02:43:59.592013 24419 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CqzsYrkzC4NcZxUNR1Rm\n- X-LP52W7LYtSc4p5Qund\n 2251 \N 187.149.78.168 c3ac8b38-00ea-4835-bec0-77f8af83db12 2019-12-19 02:43:59.608128 24420 1745 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 681\namount: !ruby/object:BigDecimal 18:0.1068E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1068E4\nstatus: 0\ndate_sale: 2019-12-18\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-682\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 69c44603-e2cd-4cfa-b45e-4ff49b3c1228 2019-12-19 02:51:36.253288 24421 1376 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 187.149.78.168 69c44603-e2cd-4cfa-b45e-4ff49b3c1228 2019-12-19 02:51:36.277396 24422 1343 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.78.168 69c44603-e2cd-4cfa-b45e-4ff49b3c1228 2019-12-19 02:51:36.298187 24423 1745 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 c4955f16-1e96-4966-8c89-e4692c0a549a 2019-12-19 02:52:46.331841 24493 1229 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.59.52 638cb1d8-e95d-4cf7-b4ac-d2198ff71f33 2019-12-19 20:41:20.097908 24425 687 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 680\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5958E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.19E4\ncash_fund: !ruby/object:BigDecimal 18:0.1268E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3168E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.78.168 8cda9938-63b3-4f43-84c2-8de1d5702fb4 2019-12-19 02:53:32.109934 24426 680 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 8cda9938-63b3-4f43-84c2-8de1d5702fb4 2019-12-19 02:53:32.122836 24427 688 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 681\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.7849E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.23E4\ncash_fund: !ruby/object:BigDecimal 18:0.1243E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3543E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.78.168 8c1fedee-91cc-4f18-9927-35cc7debb3cb 2019-12-19 03:02:29.67107 24428 681 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 8c1fedee-91cc-4f18-9927-35cc7debb3cb 2019-12-19 03:02:29.682728 24429 689 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 682\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.3775E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.1152E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3652E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.59.52 bff0f792-d9ba-41ad-bb11-42e460f9203a 2019-12-19 03:09:08.869349 24430 682 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.59.52 bff0f792-d9ba-41ad-bb11-42e460f9203a 2019-12-19 03:09:08.881657 24431 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-19 02:36:06.036686000 Z\n- &1 2019-12-19 02:43:59.584082000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-19 03:16:31.994631153 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945665\n mask_addr: 4294967295\nsign_in_count:\n- 1125\n- 1126\n 2252 \N 200.68.179.193 893f60e6-00b4-44f2-9a08-0f2deb1f6625 2019-12-19 03:16:32.032821 24432 4 User \N \N 4 User \N update ---\nunique_session_id:\n- X-LP52W7LYtSc4p5Qund\n- tNs5b8w-symLZXeCmMGx\n 2253 \N 200.68.179.193 893f60e6-00b4-44f2-9a08-0f2deb1f6625 2019-12-19 03:16:32.05938 24433 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-17 17:07:50.654136000 Z\n- &1 2019-12-18 17:14:24.322793000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-19 17:11:53.287970144 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 49\n- 50\n 100 \N 187.149.78.168 f111438e-3d5b-4260-91c4-320d908fd425 2019-12-19 17:11:53.324392 24434 27 User \N \N 27 User \N update ---\nunique_session_id:\n- VmivAfCYCxdBb3y3qgXJ\n- bkZ2NmQqTEGb-T29HF4r\n 101 \N 187.149.78.168 f111438e-3d5b-4260-91c4-320d908fd425 2019-12-19 17:11:53.348296 24435 683 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1243E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1243.0 187.149.78.168 f60f83c3-29d6-4c5c-a413-0ed192cb8816 2019-12-19 17:16:57.673404 24436 268 Customer \N \N 27 User \N create ---\nnick_name: 'NATHALIA ZAZUETA '\nphone: "(667) 407-1015"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente NATHALIA ZAZUETA fue registrado. 187.149.78.168 fe458ade-4177-4f9b-b0aa-2827e39efdd7 2019-12-19 17:33:51.830273 24437 1746 Sale \N \N 27 User \N create ---\ncustomer_id: 268\nuser_id: 27\nopen_cash_register_id: 683\namount: !ruby/object:BigDecimal 18:0.989E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.989E3\nstatus: 0\ndate_sale: 2019-12-19\nsaletype: 2\nseller_id: 19\nsale_code: PV2-V-683\nexpiration_date: 2020-01-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 a07ccecf-a463-4dd5-85ec-8e599570e06a 2019-12-19 17:34:16.614018 24438 1445 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 4 \N 187.149.78.168 a07ccecf-a463-4dd5-85ec-8e599570e06a 2019-12-19 17:34:16.644004 24439 2425 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 683\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1746\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-683\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-683 187.149.78.168 d0f15eb4-2139-43db-b01c-d326220420e4 2019-12-19 17:34:30.6552 24440 1746 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.78.168 e51a0c46-255c-43bc-8673-de27d90b394b 2019-12-19 17:34:36.544447 24441 2426 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 683\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.489E3\nmove_type: '1'\nsale_id: 1746\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-683 187.149.78.168 2ea913d8-d36a-48df-a415-cdabb9a9596f 2019-12-19 18:13:12.523574 24442 1746 Sale \N \N 27 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.78.168 99683d87-5a51-43db-9f7a-4a866611bb8f 2019-12-19 18:13:16.02929 24443 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-17 17:08:15.459679000 Z\n- &1 2019-12-18 17:10:32.082820000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-19 18:17:44.874717133 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 406\n- 407\n 817 \N 187.149.78.168 cae15d9a-4fe2-4e29-82ff-36c7cf78a715 2019-12-19 18:17:44.881917 24444 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ygB9BaKJT3iZziBKqXdy\n- ZuBd-ZR9PEXoCJpipsWu\n 818 \N 187.149.78.168 cae15d9a-4fe2-4e29-82ff-36c7cf78a715 2019-12-19 18:17:44.896598 24445 684 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1268E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1268.0 187.149.78.168 a1058cac-3834-49ba-9426-148010c5ddee 2019-12-19 18:21:20.646495 24494 1752 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 e6a81f5b-1b27-479f-a316-fc8d5553a94b 2019-12-19 20:42:13.407863 24568 358 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-20\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.59.52 b3f9fe23-0e0c-478e-88ef-33216e45ec10 2019-12-20 17:52:58.76606 24446 1747 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 684\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2019-12-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-882\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 f8925b27-47f2-44b5-8670-c896821b4b1e 2019-12-19 18:22:44.202509 24447 189 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.78.168 f8925b27-47f2-44b5-8670-c896821b4b1e 2019-12-19 18:22:44.225419 24448 1747 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 6814f2f8-73ae-4173-9328-d0aa9c6e597e 2019-12-19 18:23:28.393318 24449 2427 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 684\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 1747\ncardnumber: 9770\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-882\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-882 187.149.78.168 6814f2f8-73ae-4173-9328-d0aa9c6e597e 2019-12-19 18:23:28.410934 24450 2428 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 657\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1625\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 0b39db22-0b3d-46af-ac84-dee2ee617448 2019-12-19 18:32:37.233819 24451 1625 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.78.168 0b39db22-0b3d-46af-ac84-dee2ee617448 2019-12-19 18:32:37.255682 24452 2428 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 657\n- 684\n 2 movimiento de efectivo por venta con folio PV2-V-633 187.149.78.168 0b39db22-0b3d-46af-ac84-dee2ee617448 2019-12-19 18:32:37.26739 24453 1748 Sale \N \N 2 User \N create ---\ncustomer_id: 3\nuser_id: 2\nopen_cash_register_id: 684\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-12-19\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-883\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 ecbab1e0-ea22-4c04-935d-265379ccefc5 2019-12-19 18:34:37.005961 24454 1045 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 187.149.78.168 ecbab1e0-ea22-4c04-935d-265379ccefc5 2019-12-19 18:34:37.032045 24455 28 User \N \N 2 User \N create ---\nuserid: MONTSE\nfirst_name: MONTSERRAT\nlast_name: BARRIOS\nusertype: C\nemail: mbt_1024@hotmail.com\nencrypted_password: "$2a$10$Tfqtu7AmDT5iL3Q7t4LOmeiIjQXdDv2qAgR3qcQtJ6JIMJ5HCN0eK"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 1\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 187.149.78.168 6ac0e0a5-81e6-4004-9d79-98dc186cae51 2019-12-19 18:40:27.106176 24456 28 User \N \N 28 User \N update ---\nlast_sign_in_at:\n- \n- &1 2019-12-19 18:41:34.652803623 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 187.149.78.168 0acf9342-2d81-452e-8929-1673fcfcac1b 2019-12-19 18:41:34.659804 24457 28 User \N \N 28 User \N update ---\nunique_session_id:\n- \n- 7tqzYuz_rAw1M7yyUXNx\n 3 \N 187.149.78.168 0acf9342-2d81-452e-8929-1673fcfcac1b 2019-12-19 18:41:34.673661 24458 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-14 23:29:29.212895000 Z\n- &1 2019-12-15 02:27:58.861578000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-19 18:42:38.316677997 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 127\n- 128\n 256 \N 187.149.78.168 7974bd3f-5d23-45c8-90f6-d3adb2f41d1d 2019-12-19 18:42:38.322947 24459 1 User \N \N 1 User \N update ---\nunique_session_id:\n- ziq1L8uvbDsmDYxmdnz2\n- 57AzJfdZxkNUfDiTFrDr\n 257 \N 187.149.78.168 7974bd3f-5d23-45c8-90f6-d3adb2f41d1d 2019-12-19 18:42:38.335725 24460 28 User \N \N 1 User \N update --- {}\n 4 Usuario MONTSE ha sido modificado. 187.149.78.168 50c246f2-871c-4471-9c17-d276fc4795b1 2019-12-19 18:44:17.522094 24461 14 User \N \N 1 User \N update ---\nstatus:\n- active\n- 2\n 4 El usuario YARETZII fue desactivado. 187.149.78.168 1c31f200-9150-422c-ac6b-063e4fc048c0 2019-12-19 18:44:45.668383 24462 20 User \N \N 1 User \N update ---\nstatus:\n- active\n- 2\n 28 El usuario YARETZINAJAR fue desactivado. 187.149.78.168 5c6bec87-1432-4fbf-a903-5cc73a0f1df2 2019-12-19 18:44:58.552903 24463 2 Seller \N \N 1 User \N update ---\nstatus:\n- active\n- 0\n 2 El vendedor ANABELLY GAXIOLA fue eliminado. 187.149.78.168 ff2b6bd4-2847-4fb6-8cb5-f85f10589f31 2019-12-19 18:49:48.429714 24464 8 Seller \N \N 1 User \N update ---\nstatus:\n- active\n- 0\n 2 El vendedor ANABELLY GAXIOLA fue eliminado. 187.149.78.168 f078425d-b0b1-4b3b-8b47-28a7e6785af0 2019-12-19 18:49:58.207528 24465 9 Seller \N \N 1 User \N update ---\nstatus:\n- active\n- 0\n 2 El vendedor YARETZI NAJAR fue eliminado. 187.149.78.168 c3805e08-d11d-4018-b07b-744de8c7bcf9 2019-12-19 18:50:05.412742 24466 10 Seller \N \N 1 User \N update ---\nname:\n- YARETZI\n- MONTSERRAT\nlast_name:\n- NAJAR\n- BARRIOS\n 3 El vendedor YARETZI NAJAR fue modificado. 187.149.78.168 92ac3ee3-8e76-4191-880a-c1c6bc847734 2019-12-19 18:50:33.884371 24467 17 Seller \N \N 1 User \N update ---\nname:\n- 'MARICRUZ '\n- MONTSERRAT\nlast_name:\n- BUSTAMANTE\n- BARRIOS\n 2 El vendedor MARICRUZ BUSTAMANTE fue modificado. 187.149.78.168 eb2bb011-83a2-4a5f-ab09-c0f2e3ccaf46 2019-12-19 18:51:12.657866 24468 13 Seller \N \N 1 User \N update ---\nstatus:\n- active\n- 0\n 2 El vendedor MARICRUZ BUSTAMANTE fue eliminado. 187.149.78.168 7ceca37b-bb90-487d-850a-e3330996dc15 2019-12-19 18:51:29.728523 24469 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-18 17:10:32.082820000 Z\n- &1 2019-12-19 18:17:44.874717000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-19 18:52:40.474393676 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 407\n- 408\n 819 \N 187.149.78.168 6e002c7a-06ec-41b8-add8-2627379238ef 2019-12-19 18:52:40.481044 24470 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ZuBd-ZR9PEXoCJpipsWu\n- J6CYkbRPJbd5EmFJLX2j\n 820 \N 187.149.78.168 6e002c7a-06ec-41b8-add8-2627379238ef 2019-12-19 18:52:40.495567 24516 1286 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.59.52 1940a403-b48a-4801-8ce4-8b4cc509d524 2019-12-20 01:45:13.83637 24517 1756 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 cef0999f-0f60-4d99-b57e-84512c34c9e4 2019-12-20 01:45:21.60688 24471 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-19 02:43:59.584082000 Z\n- &1 2019-12-19 03:16:31.994631000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-19 19:05:34.988114442 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945665\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945665\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\nsign_in_count:\n- 1126\n- 1127\n 2254 \N 189.186.211.119 bc34a94d-a868-436a-9f25-a8d92f335c59 2019-12-19 19:05:34.99663 24472 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tNs5b8w-symLZXeCmMGx\n- xG5QT3dTzxe3ncEdAFyD\n 2255 \N 189.186.211.119 bc34a94d-a868-436a-9f25-a8d92f335c59 2019-12-19 19:05:35.026171 24473 1749 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 683\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-12-19\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-684\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 30c895a6-77f8-47a4-93d0-c15e03da63c3 2019-12-19 19:45:41.589387 24474 718 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.78.168 30c895a6-77f8-47a4-93d0-c15e03da63c3 2019-12-19 19:45:41.617535 24475 1749 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 5963ecfe-ffec-4881-a663-6ede9fe156ea 2019-12-19 19:46:12.832267 24476 2429 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 683\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.649E3\nmove_type: '1'\nsale_id: 1749\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-684\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-684 187.149.78.168 5963ecfe-ffec-4881-a663-6ede9fe156ea 2019-12-19 19:46:12.853499 24477 1073 AvailableProduct \N \N 2 User \N update ---\nprice_sale:\n- \n- !ruby/object:BigDecimal 18:0.1149E4\n 4 \N 187.149.78.168 f2f372e1-b790-4099-983a-5dd6e9355a21 2019-12-19 19:47:25.600924 24478 1750 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 683\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-12-19\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-685\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 ecc3e27a-980a-4c5e-b75f-139030b94cc1 2019-12-19 19:55:28.582449 24479 1015 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.78.168 ecc3e27a-980a-4c5e-b75f-139030b94cc1 2019-12-19 19:55:28.610073 24480 1750 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 5514b246-fb22-426a-b055-53749a1d3e2e 2019-12-19 19:56:23.538965 24481 2430 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 683\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 1750\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-685\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-685 187.149.78.168 5514b246-fb22-426a-b055-53749a1d3e2e 2019-12-19 19:56:23.558938 24482 1751 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 684\namount: !ruby/object:BigDecimal 18:0.2048E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.32768E3\ntotal: !ruby/object:BigDecimal 18:0.172032E4\nstatus: 0\ndate_sale: 2019-12-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-884\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 186fbdef-2c25-48f2-a502-abf197de5803 2019-12-19 20:20:48.458291 24483 1297 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 8 \N 187.149.78.168 186fbdef-2c25-48f2-a502-abf197de5803 2019-12-19 20:20:48.51293 24484 1073 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.78.168 186fbdef-2c25-48f2-a502-abf197de5803 2019-12-19 20:20:48.543663 24485 1751 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 729afbe4-b41a-49e4-9179-9cc34e95ec2b 2019-12-19 20:21:31.621238 24486 2431 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 684\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.172032E4\nmove_type: '1'\nsale_id: 1751\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-884\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '123'\n 1 movimiento de efectivo por venta con folio PV1-V-884 187.149.78.168 729afbe4-b41a-49e4-9179-9cc34e95ec2b 2019-12-19 20:21:31.645106 24487 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-17 19:52:10.110678000 Z\n- &1 2019-12-18 22:40:36.959452000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-19 20:33:06.318285694 Z\nsign_in_count:\n- 62\n- 63\n 127 \N 189.186.59.52 8004d07f-b8c5-4d6f-9787-2e37cd4b6a45 2019-12-19 20:33:06.325691 24488 21 User \N \N 21 User \N update ---\nunique_session_id:\n- zMCq88CVtirSjwyW3Szh\n- xZacjw2ezhsGxPsshq-G\n 128 \N 189.186.59.52 8004d07f-b8c5-4d6f-9787-2e37cd4b6a45 2019-12-19 20:33:06.337681 24489 685 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1152E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1152.0 189.186.59.52 7e00b4b4-dd70-4cd7-a89e-3eda09a00de9 2019-12-19 20:33:27.378865 24490 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-19 03:16:31.994631000 Z\n- &1 2019-12-19 19:05:34.988114000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-19 20:39:07.342736476 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945665\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1127\n- 1128\n 2256 \N 189.186.59.52 b6c508a7-ca10-4827-98fb-1307c3b49e7d 2019-12-19 20:39:07.349839 24491 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xG5QT3dTzxe3ncEdAFyD\n- fZxCmReR-czjCTXcxCcW\n 2257 \N 189.186.59.52 b6c508a7-ca10-4827-98fb-1307c3b49e7d 2019-12-19 20:39:07.366967 24492 1752 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 685\namount: !ruby/object:BigDecimal 18:0.1859E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1859E4\nstatus: 0\ndate_sale: 2019-12-19\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-181\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 638cb1d8-e95d-4cf7-b4ac-d2198ff71f33 2019-12-19 20:41:20.072521 24495 2432 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 685\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1859E4\nmove_type: '1'\nsale_id: 1752\ncardnumber: 2991\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-181\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-181 189.186.59.52 e6a81f5b-1b27-479f-a316-fc8d5553a94b 2019-12-19 20:42:13.43019 24496 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-19 19:05:34.988114000 Z\n- &1 2019-12-19 20:39:07.342736000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-19 20:55:32.008056219 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1128\n- 1129\n 2258 \N 187.149.78.168 2678f02b-443c-432b-be1a-04ec2310b74f 2019-12-19 20:55:32.035607 24497 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fZxCmReR-czjCTXcxCcW\n- Feix5SyypusUtYwt135a\n 2259 \N 187.149.78.168 2678f02b-443c-432b-be1a-04ec2310b74f 2019-12-19 20:55:32.060256 24498 1753 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 684\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-19\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-885\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 baa9f610-e4f7-4ba3-8fdc-ed840de97ccd 2019-12-19 22:05:57.184094 24499 1456 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.78.168 baa9f610-e4f7-4ba3-8fdc-ed840de97ccd 2019-12-19 22:05:57.212006 24500 1753 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 3e065edc-2d04-4eda-a360-fdc302ae17b0 2019-12-19 22:09:20.860033 24501 2433 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 684\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1753\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-885\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-885 187.149.78.168 3e065edc-2d04-4eda-a360-fdc302ae17b0 2019-12-19 22:09:20.88069 24502 1754 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 684\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-12-19\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-886\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 802fc7d1-466a-4989-a4d1-71dbad27e990 2019-12-19 22:15:46.49623 24503 1367 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.78.168 802fc7d1-466a-4989-a4d1-71dbad27e990 2019-12-19 22:15:46.520773 24504 1754 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 32992bad-baa4-4ccc-9a5e-86910853e079 2019-12-19 22:15:52.068496 24505 2434 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 684\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 1754\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-886\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-886 187.149.78.168 32992bad-baa4-4ccc-9a5e-86910853e079 2019-12-19 22:15:52.087934 24506 1755 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 684\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2019-12-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-887\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 c8817ec0-c565-4d43-b2f7-ca5f08a7dde6 2019-12-19 23:06:14.473032 24507 1028 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.78.168 c8817ec0-c565-4d43-b2f7-ca5f08a7dde6 2019-12-19 23:06:14.49713 24508 1755 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 ceb68d26-0bee-4303-8476-42660f3a826f 2019-12-19 23:06:19.582458 24509 2435 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 684\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2099E4\nmove_type: '1'\nsale_id: 1755\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-887\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-887 187.149.78.168 ceb68d26-0bee-4303-8476-42660f3a826f 2019-12-19 23:06:19.602135 24510 243 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 684\nquantity: !ruby/object:BigDecimal 18:0.1042E4\nstatus: 1\nobservations: AGUA POTABLE (JAPAC)\nexpense_date: 2019-12-19\nexpense_code: PV1-E-172\n 1 Egreso por 1042.0 registrado 187.149.78.168 e11e2c33-1f33-4f65-b019-4bc8388e5624 2019-12-20 00:34:06.947747 24511 2436 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 684\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1042E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 243\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 e11e2c33-1f33-4f65-b019-4bc8388e5624 2019-12-20 00:34:06.96653 24512 1252 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 187.149.78.168 110da7c8-f1ef-4600-ae51-bfd064a71d4c 2019-12-20 01:16:16.778127 24513 1252 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.78.168 de12a667-7980-4829-a98b-c182b7aeb12f 2019-12-20 01:16:37.591372 24514 357 Transfer \N \N 27 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-12-19\nuser_id: 27\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.78.168 b05ba0ed-e736-49ac-9e7a-9e8b87e44eee 2019-12-20 01:16:42.920818 24515 1756 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 685\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-19\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-182\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 1940a403-b48a-4801-8ce4-8b4cc509d524 2019-12-20 01:45:13.800922 24518 2437 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 685\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1756\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-182\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-182 189.186.59.52 cef0999f-0f60-4d99-b57e-84512c34c9e4 2019-12-20 01:45:21.627042 24519 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-19 20:39:07.342736000 Z\n- &1 2019-12-19 20:55:32.008056000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-20 02:04:39.290914122 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1129\n- 1130\n 2260 \N 189.186.59.52 bb91489b-c586-4b69-9ba5-17f6a7e3e0f2 2019-12-20 02:04:39.321805 24520 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Feix5SyypusUtYwt135a\n- nTPPFQedMxxBKQ25ou28\n 2261 \N 189.186.59.52 bb91489b-c586-4b69-9ba5-17f6a7e3e0f2 2019-12-20 02:04:39.350677 24521 357 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-19\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.78.168 1e31ca42-f0d4-424e-9f31-bff8fac16842 2019-12-20 02:13:09.672109 24522 1460 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 891\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 1e31ca42-f0d4-424e-9f31-bff8fac16842 2019-12-20 02:13:09.707651 24523 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-19 20:55:32.008056000 Z\n- &1 2019-12-20 02:04:39.290914000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-20 02:15:11.921906194 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1130\n- 1131\n 2262 \N 187.149.78.168 17ce682b-44fc-490e-a0d0-a54801abc35a 2019-12-20 02:15:11.938085 24524 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nTPPFQedMxxBKQ25ou28\n- aMM14EXgooaYaCi3NpNf\n 2263 \N 187.149.78.168 17ce682b-44fc-490e-a0d0-a54801abc35a 2019-12-20 02:15:11.970002 24525 1283 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.78.168 aca25060-ce26-43fe-bc60-ae238d8cd66c 2019-12-20 02:24:44.466683 24526 1283 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.78.168 d32cd1c4-e46f-47d3-84cb-b4a971d642da 2019-12-20 02:24:47.643684 24527 358 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-12-19\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.78.168 a0764857-09b7-48e9-920e-30575e833e77 2019-12-20 02:24:49.228679 24528 2438 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 683\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1720\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-672 187.149.78.168 68961068-0231-4b8b-85bd-746d9187dba1 2019-12-20 02:36:01.45789 24529 1720 Sale \N \N 27 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.78.168 ef1f16c1-e518-4733-b274-f3385d1fb943 2019-12-20 02:36:04.831557 24530 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-12-13 21:37:35.528320000 Z\n- &1 2019-12-14 18:58:26.440492000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-20 02:38:04.549635497 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 33\n- 34\n 68 \N 187.149.78.168 c01a5e97-868a-4948-a7b2-22d73458b386 2019-12-20 02:38:04.565386 24531 24 User \N \N 24 User \N update ---\nunique_session_id:\n- GfM2V4Drw4WQH5bYwKvw\n- 6SERzrxkrzDnQ2oiKrwb\n 69 \N 187.149.78.168 c01a5e97-868a-4948-a7b2-22d73458b386 2019-12-20 02:38:04.583982 24532 1757 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 683\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-12-19\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-686\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 4ad942d7-01b9-4763-b385-722fd79947f2 2019-12-20 02:38:38.230983 24533 1253 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.78.168 4ad942d7-01b9-4763-b385-722fd79947f2 2019-12-20 02:38:38.25709 24534 1757 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 75498ceb-99e9-4afd-b0d6-4c31757c3660 2019-12-20 02:38:42.584803 24535 2439 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 683\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 1757\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-686\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-686 187.149.78.168 75498ceb-99e9-4afd-b0d6-4c31757c3660 2019-12-20 02:38:42.604042 24536 690 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 684\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.711632E4\namount_out: !ruby/object:BigDecimal 18:0.1042E4\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.39E4\ncash_fund: !ruby/object:BigDecimal 18:0.1223E4\nphysical_cash: !ruby/object:BigDecimal 18:0.5123E4\nobservations: ENTREGUE A SAM $3400 Y RETIRE $500, EN TOTAL $3900\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.78.168 c67b7b14-bc34-4dc5-a9db-d866356cd241 2019-12-20 02:59:42.54487 24537 684 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 c67b7b14-bc34-4dc5-a9db-d866356cd241 2019-12-20 02:59:42.557727 24538 691 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 683\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.3735E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.35E4\ncash_fund: !ruby/object:BigDecimal 18:0.1478E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4978E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.78.168 a4139269-23bb-4668-a732-52028f096814 2019-12-20 03:03:50.914705 24540 692 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 685\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.2558E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.9E3\ncash_fund: !ruby/object:BigDecimal 18:0.951E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1851E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.59.52 bbc59719-4a0b-458e-b6c7-82e10d3da776 2019-12-20 03:07:33.585963 24541 685 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.59.52 bbc59719-4a0b-458e-b6c7-82e10d3da776 2019-12-20 03:07:33.599739 24542 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-20 02:04:39.290914000 Z\n- &1 2019-12-20 02:15:11.921906000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-20 03:37:39.457141905 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\nsign_in_count:\n- 1131\n- 1132\n 2264 \N 189.186.211.119 c47b24ed-9dd4-4b04-ab21-b8e1dfdcca7d 2019-12-20 03:37:39.494653 24543 4 User \N \N 4 User \N update ---\nunique_session_id:\n- aMM14EXgooaYaCi3NpNf\n- osHpbw82DSNd-byvNsHY\n 2265 \N 189.186.211.119 c47b24ed-9dd4-4b04-ab21-b8e1dfdcca7d 2019-12-20 03:37:39.517052 24544 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-20 02:15:11.921906000 Z\n- &1 2019-12-20 03:37:39.457141000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-20 04:59:17.210200682 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\nsign_in_count:\n- 1132\n- 1133\n 2266 \N 189.186.211.119 c8ddd9c6-0777-4d39-9a42-4dd318e98e6f 2019-12-20 04:59:17.219647 24545 4 User \N \N 4 User \N update ---\nunique_session_id:\n- osHpbw82DSNd-byvNsHY\n- JzWeicQMzWFz-ydsS2i8\n 2267 \N 189.186.211.119 c8ddd9c6-0777-4d39-9a42-4dd318e98e6f 2019-12-20 04:59:17.242321 24546 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-20 03:37:39.457141000 Z\n- &1 2019-12-20 04:59:17.210200000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-20 06:47:15.662329232 Z\nsign_in_count:\n- 1133\n- 1134\n 2268 \N 189.186.211.119 d017bb7e-0390-41d0-aab4-bed513835fd6 2019-12-20 06:47:15.672556 24547 4 User \N \N 4 User \N update ---\nunique_session_id:\n- JzWeicQMzWFz-ydsS2i8\n- rzuw2FfQ4zoWyiBAjCcj\n 2269 \N 189.186.211.119 d017bb7e-0390-41d0-aab4-bed513835fd6 2019-12-20 06:47:15.695459 24548 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-19 18:17:44.874717000 Z\n- &1 2019-12-19 18:52:40.474393000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-20 17:06:18.872134665 Z\nsign_in_count:\n- 408\n- 409\n 821 \N 187.149.78.168 7d8e0dc2-3cf1-438d-954a-eb792694f620 2019-12-20 17:06:18.891241 24549 2 User \N \N 2 User \N update ---\nunique_session_id:\n- J6CYkbRPJbd5EmFJLX2j\n- VJ8gPJNQGawmShuuxegw\n 822 \N 187.149.78.168 7d8e0dc2-3cf1-438d-954a-eb792694f620 2019-12-20 17:06:18.922805 24550 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-18 17:14:24.322793000 Z\n- &1 2019-12-19 17:11:53.287970000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-20 17:07:29.311079801 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 50\n- 51\n 102 \N 187.149.78.168 e0b489b2-b72c-41a0-84e7-f1e480c329a2 2019-12-20 17:07:29.318499 24551 27 User \N \N 27 User \N update ---\nunique_session_id:\n- bkZ2NmQqTEGb-T29HF4r\n- _aeMqhbp-6cMHUXBSsmC\n 103 \N 187.149.78.168 e0b489b2-b72c-41a0-84e7-f1e480c329a2 2019-12-20 17:07:29.334694 24552 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-12-14 18:58:26.440492000 Z\n- &1 2019-12-20 02:38:04.549635000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-20 17:08:08.612803039 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 34\n- 35\n 70 \N 187.149.78.168 10df17a1-eaba-4ad1-8cb5-b803c184cef0 2019-12-20 17:08:08.619251 24553 24 User \N \N 24 User \N update ---\nunique_session_id:\n- 6SERzrxkrzDnQ2oiKrwb\n- WSzgSxLHUQSY-pr8soBJ\n 71 \N 187.149.78.168 10df17a1-eaba-4ad1-8cb5-b803c184cef0 2019-12-20 17:08:08.632192 24554 686 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1478E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1478.0 187.149.78.168 f546d1c0-0fb4-45d5-8755-b16141b3dc40 2019-12-20 17:09:22.183296 24555 687 OpenCashRegister \N \N 24 User \N create ---\ncash_register_id: 2\nuser_id: 24\ninitial_cash: !ruby/object:BigDecimal 18:0.1478E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1478.0 187.149.78.168 383d3bb5-0030-414a-9ff2-ad52a2804441 2019-12-20 17:10:30.872311 24556 803 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 17 \N 187.149.78.168 a3db1e8e-f353-4553-a9d0-787ca0b33330 2019-12-20 17:20:04.360199 24557 1253 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.78.168 950a0836-b05f-4746-b4be-054ad5e3b22a 2019-12-20 17:21:44.116798 24558 1253 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.78.168 3ec40f21-167a-4e1e-985c-0b12404f8135 2019-12-20 17:21:48.38292 24559 1253 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.78.168 28ea8c6b-76e2-4a6e-b07e-bde6d54dc2ac 2019-12-20 17:21:51.208821 24560 803 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 18 \N 187.149.78.168 d6017cd3-9e76-4840-badc-fd2975980f18 2019-12-20 17:24:04.089246 24561 359 Transfer \N \N 24 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-12-20\nuser_id: 24\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.78.168 101fb2c3-1fc9-4979-bad7-d40db028e8fb 2019-12-20 17:24:18.248599 24562 359 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-20\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.78.168 0bf0430b-49d5-4c19-85f2-0d4d6b1bce54 2019-12-20 17:25:13.313902 24563 788 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.5E1\n 16 \N 187.149.78.168 0bf0430b-49d5-4c19-85f2-0d4d6b1bce54 2019-12-20 17:25:13.688098 24564 1244 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.78.168 0bf0430b-49d5-4c19-85f2-0d4d6b1bce54 2019-12-20 17:25:14.257493 24565 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-18 22:40:36.959452000 Z\n- &1 2019-12-19 20:33:06.318285000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-20 17:43:16.208532851 Z\nsign_in_count:\n- 63\n- 64\n 129 \N 189.186.59.52 1b9b3590-3649-43e4-8888-cc78df602def 2019-12-20 17:43:16.216238 24566 21 User \N \N 21 User \N update ---\nunique_session_id:\n- xZacjw2ezhsGxPsshq-G\n- ge1jxChVTCkemm5qk6VQ\n 130 \N 189.186.59.52 1b9b3590-3649-43e4-8888-cc78df602def 2019-12-20 17:43:16.230615 24570 689 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1223E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1223.0 187.149.78.168 ea13acf1-7df5-43ef-a0de-93d43bc09c7d 2019-12-20 20:13:34.995462 24571 1758 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 689\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-12-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-888\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 543ae32e-0e42-46ee-acf0-17ef844fb0dc 2019-12-20 20:30:01.000112 24572 1272 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.78.168 543ae32e-0e42-46ee-acf0-17ef844fb0dc 2019-12-20 20:30:01.027344 24573 1758 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 ad59142d-e57f-4d28-b912-5f6872b3c7a3 2019-12-20 20:30:19.981644 24574 2440 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 689\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 1758\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-888\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-888 187.149.78.168 ad59142d-e57f-4d28-b912-5f6872b3c7a3 2019-12-20 20:30:20.003082 24575 1759 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 688\namount: !ruby/object:BigDecimal 18:0.759E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2019-12-20\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-183\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 190c33f9-f5e4-4068-ada0-461081757c69 2019-12-20 21:29:16.404035 24576 1265 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.59.52 190c33f9-f5e4-4068-ada0-461081757c69 2019-12-20 21:29:16.431686 24577 1759 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 f3518216-e514-4cb5-8963-ff2df07715d7 2019-12-20 21:29:55.810804 24578 2441 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 688\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.759E3\nmove_type: '1'\nsale_id: 1759\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-183\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.759E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-183 189.186.59.52 f3518216-e514-4cb5-8963-ff2df07715d7 2019-12-20 21:29:55.830942 24579 1760 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 689\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2019-12-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-889\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 f2ede492-f1f4-452f-85ab-7c55abb09a26 2019-12-20 21:31:45.870205 24580 1160 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.78.168 f2ede492-f1f4-452f-85ab-7c55abb09a26 2019-12-20 21:31:45.895438 24581 1760 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 3dd09d98-bdc3-4277-82d3-1d0298bf61b1 2019-12-20 21:32:07.162025 24582 2442 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 689\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.789E3\nmove_type: '1'\nsale_id: 1760\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-889\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.789E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-889 187.149.78.168 3dd09d98-bdc3-4277-82d3-1d0298bf61b1 2019-12-20 21:32:07.183403 24583 1761 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 686\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2019-12-20\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-687\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 28eb3069-353e-4ca7-8b9c-1b6130c5fccc 2019-12-20 21:38:02.54169 24584 1255 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.78.168 28eb3069-353e-4ca7-8b9c-1b6130c5fccc 2019-12-20 21:38:02.567341 24585 1761 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 31b16a46-1eab-42d4-984a-99b6501cde33 2019-12-20 21:38:27.52141 24586 2443 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 686\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 1761\ncardnumber: 8296\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-687\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-687 187.149.78.168 31b16a46-1eab-42d4-984a-99b6501cde33 2019-12-20 21:38:27.54054 24587 1762 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 686\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-12-20\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-688\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 06b52e6a-79b9-476d-90db-ea09d1130d32 2019-12-20 21:59:50.811935 24588 1252 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.78.168 06b52e6a-79b9-476d-90db-ea09d1130d32 2019-12-20 21:59:50.838981 24589 1762 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-688 cancelada. 187.149.78.168 aa9c208b-6881-4661-9ea5-4ab5c2de0834 2019-12-20 21:59:59.766685 24590 1252 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 187.149.78.168 aa9c208b-6881-4661-9ea5-4ab5c2de0834 2019-12-20 21:59:59.790347 24591 269 Customer \N \N 27 User \N create ---\nnick_name: SILVIA VALENZUELA QUINTERO\nphone: "(667) 294-8772"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente SILVIA VALENZUELA QUINTERO fue registrado. 187.149.78.168 c2527bc7-634e-4cb7-8596-efee65992f88 2019-12-20 22:00:44.624083 24657 26 User \N \N 26 User \N update ---\nunique_session_id:\n- 9-1YuCpQ-eL48Eh3Sr9S\n- eqqdsvuNpbVsdtMPssy4\n 121 \N 187.149.78.168 d467dc9f-526e-40eb-8e55-3f5c85ccb2d1 2019-12-21 18:17:59.036885 24592 1763 Sale \N \N 27 User \N create ---\ncustomer_id: 269\nuser_id: 27\nopen_cash_register_id: 686\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-12-20\nsaletype: 2\nseller_id: 17\nsale_code: PV2-V-689\nexpiration_date: 2020-01-24\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 933a744d-befb-4187-80de-84f06ca2ef5d 2019-12-20 22:00:56.559851 24593 1252 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.78.168 933a744d-befb-4187-80de-84f06ca2ef5d 2019-12-20 22:00:56.58509 24594 2444 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 687\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 1763\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-689\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-689 187.149.78.168 35c94c98-9cde-4215-930d-cd0d10a118ae 2019-12-20 22:01:09.683399 24595 1763 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.78.168 daa02e42-7922-47cb-8f36-80e4bbc92e3d 2019-12-20 22:01:16.001785 24596 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-20 04:59:17.210200000 Z\n- &1 2019-12-20 06:47:15.662329000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-20 22:10:05.546073173 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1134\n- 1135\n 2270 \N 187.149.78.168 61bbe0e4-8932-466d-9393-c14abb875c49 2019-12-20 22:10:05.573693 24597 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rzuw2FfQ4zoWyiBAjCcj\n- csn-9V_yrQ3x3M_hoxA4\n 2271 \N 187.149.78.168 61bbe0e4-8932-466d-9393-c14abb875c49 2019-12-20 22:10:05.597661 24598 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-20 06:47:15.662329000 Z\n- &1 2019-12-20 22:10:05.546073000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-20 23:04:08.813737788 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137655\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1135\n- 1136\n 2272 \N 187.149.78.168 3ca1e26c-2026-4715-9a3a-cdfd3320b899 2019-12-20 23:04:08.820233 24599 4 User \N \N 4 User \N update ---\nunique_session_id:\n- csn-9V_yrQ3x3M_hoxA4\n- 45_WzWJoibWyhyRvBzAy\n 2273 \N 187.149.78.168 3ca1e26c-2026-4715-9a3a-cdfd3320b899 2019-12-20 23:04:08.835172 24600 1764 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 686\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-20\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-690\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 ae8947d9-9360-4125-97af-584ceae61c50 2019-12-20 23:18:22.106758 24601 1415 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.78.168 ae8947d9-9360-4125-97af-584ceae61c50 2019-12-20 23:18:22.143062 24602 1764 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 f821e354-ac41-4d47-b119-607c233af6f6 2019-12-20 23:18:33.767821 24603 2445 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 686\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 1764\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-690\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-690 187.149.78.168 f821e354-ac41-4d47-b119-607c233af6f6 2019-12-20 23:18:33.792005 24604 2446 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 686\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1764\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-690\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.899E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-690 187.149.78.168 fc33ab03-b1ed-4286-906a-6abf518bb067 2019-12-20 23:18:33.854391 24605 1765 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 686\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1199E3\ntotal: !ruby/object:BigDecimal 18:0.10791E4\nstatus: 0\ndate_sale: 2019-12-20\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-691\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 c05e96da-480c-4721-a424-025a466d3b51 2019-12-20 23:25:15.222535 24606 1412 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 4 \N 187.149.78.168 c05e96da-480c-4721-a424-025a466d3b51 2019-12-20 23:25:15.249173 24607 1765 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 e2a1c36e-9898-4a9e-a4d3-d12e04ee0789 2019-12-20 23:25:49.23177 24608 2447 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 686\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.10791E4\nmove_type: '1'\nsale_id: 1765\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-691\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.10791E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-691 187.149.78.168 e2a1c36e-9898-4a9e-a4d3-d12e04ee0789 2019-12-20 23:25:49.251405 24609 2447 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 686\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.10791E4\nmove_type: '1'\nsale_id: 1765\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-691\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.10791E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 50acdb8b-7b68-490b-b4fe-58025c9a4610 2019-12-20 23:26:04.892798 24610 2448 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 686\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.10791E4\nmove_type: '1'\nsale_id: 1765\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-691\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.209E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-691 187.149.78.168 ade2beae-4ceb-4445-b2a5-a88f65cd27c1 2019-12-20 23:26:09.84982 24702 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 19:23:14.611785000 Z\n- &1 2019-12-21 19:32:44.314729000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 19:32:44.461795634 Z\nsign_in_count:\n- 1145\n- 1146\n 2292 \N 187.149.78.168 03fceb8d-f2c7-4733-b5a7-ab5c832d470c 2019-12-21 19:32:44.467214 24611 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-20 22:10:05.546073000 Z\n- &1 2019-12-20 23:04:08.813737000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-20 23:37:52.445028989 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1136\n- 1137\n 2274 \N 189.186.59.52 c78037b8-f66e-4e8b-a0f2-d6bddde7aa01 2019-12-20 23:37:52.451545 24612 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 45_WzWJoibWyhyRvBzAy\n- e2yRo5-szHE-KqT66jJS\n 2275 \N 189.186.59.52 c78037b8-f66e-4e8b-a0f2-d6bddde7aa01 2019-12-20 23:37:52.465827 24613 1766 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 688\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2019-12-20\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-184\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 999eaaa1-65db-445e-a67f-f7fd1eb991a7 2019-12-20 23:38:43.997586 24614 1035 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 16 \N 189.186.59.52 999eaaa1-65db-445e-a67f-f7fd1eb991a7 2019-12-20 23:38:44.021564 24615 1766 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 f44a9320-152a-404e-a980-945eb8ad5d29 2019-12-20 23:38:58.899545 24616 2449 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 688\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 1766\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-184\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: APARTADO\n 1 movimiento de efectivo por venta con folio PV3-V-184 189.186.59.52 f44a9320-152a-404e-a980-945eb8ad5d29 2019-12-20 23:38:58.917784 24617 2450 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 688\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 1766\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-184\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: APARTADO\n 1 movimiento de efectivo por venta con folio PV3-V-184 189.186.59.52 c25b275b-7822-4959-978e-814c69bdc3cd 2019-12-20 23:39:08.902458 24618 1767 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 689\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.139E3\ntotal: !ruby/object:BigDecimal 18:0.126E4\nstatus: 0\ndate_sale: 2019-12-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-890\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 b2cbd74d-76d5-4f62-afd1-22e96a0577ce 2019-12-20 23:55:39.937492 24619 1367 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.78.168 b2cbd74d-76d5-4f62-afd1-22e96a0577ce 2019-12-20 23:55:39.961733 24620 1767 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 e1e15cde-4d28-4772-a416-cbd054dd4092 2019-12-20 23:55:44.562431 24621 2451 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 689\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.126E4\nmove_type: '1'\nsale_id: 1767\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-890\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.126E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-890 187.149.78.168 e1e15cde-4d28-4772-a416-cbd054dd4092 2019-12-20 23:55:44.581315 24622 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-20 23:04:08.813737000 Z\n- &1 2019-12-20 23:37:52.445028000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 00:00:22.565397166 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1137\n- 1138\n 2276 \N 187.149.78.168 792754f3-2d07-41ad-9ea5-b51223141af2 2019-12-21 00:00:22.572797 24623 4 User \N \N 4 User \N update ---\nunique_session_id:\n- e2yRo5-szHE-KqT66jJS\n- QTMHzxjsQ1MuV5t_DL8_\n 2277 \N 187.149.78.168 792754f3-2d07-41ad-9ea5-b51223141af2 2019-12-21 00:00:22.588622 24624 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-20 23:37:52.445028000 Z\n- &1 2019-12-21 00:00:22.565397000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 01:00:02.733126435 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1138\n- 1139\n 2278 \N 187.149.78.168 fbacbe3b-01d4-4f4f-bc74-df60765d9c6b 2019-12-21 01:00:02.760274 24625 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QTMHzxjsQ1MuV5t_DL8_\n- qdteRigbPQYjsh41UbNs\n 2279 \N 187.149.78.168 fbacbe3b-01d4-4f4f-bc74-df60765d9c6b 2019-12-21 01:00:02.78837 24626 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 00:00:22.565397000 Z\n- &1 2019-12-21 01:00:02.733126000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 02:16:24.946321797 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1139\n- 1140\n 2280 \N 189.186.59.52 7b350aa7-4852-4786-8438-cd9c80f02bed 2019-12-21 02:16:24.982447 24627 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qdteRigbPQYjsh41UbNs\n- d173nvkU2utgNXGZ6EgS\n 2281 \N 189.186.59.52 7b350aa7-4852-4786-8438-cd9c80f02bed 2019-12-21 02:16:25.0245 24628 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 01:00:02.733126000 Z\n- &1 2019-12-21 02:16:24.946321000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 02:21:32.447188063 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1140\n- 1141\n 2282 \N 189.186.54.195 5d9319cd-823b-4861-9a4e-c82bc17c9e22 2019-12-21 02:21:32.457935 24629 4 User \N \N 4 User \N update ---\nunique_session_id:\n- d173nvkU2utgNXGZ6EgS\n- BhvnZe6sL7aJRdEhyCSy\n 2283 \N 189.186.54.195 5d9319cd-823b-4861-9a4e-c82bc17c9e22 2019-12-21 02:21:32.488145 24630 1768 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 686\namount: !ruby/object:BigDecimal 18:0.1129E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1129E4\nstatus: 0\ndate_sale: 2019-12-20\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-692\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 92836ef3-68f9-4dc8-8acf-a30e6bc910aa 2019-12-21 02:22:12.388862 24631 1088 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.78.168 92836ef3-68f9-4dc8-8acf-a30e6bc910aa 2019-12-21 02:22:12.43279 24633 2452 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 686\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1129E4\nmove_type: '1'\nsale_id: 1768\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-692\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.71E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-692 187.149.78.168 bb2fe45e-62b6-4103-83a1-6f8bccc450f5 2019-12-21 02:23:06.864222 24634 693 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 689\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3148E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.1371E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4371E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.78.168 2711a853-c35a-4a9c-acb0-f2e0a0748949 2019-12-21 03:03:41.017611 24635 689 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 2711a853-c35a-4a9c-acb0-f2e0a0748949 2019-12-21 03:03:41.033371 24636 694 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 686\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.39061E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.21E4\ncash_fund: !ruby/object:BigDecimal 18:0.2485E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4585E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.78.168 4095fee6-54e4-47a2-9364-504d296600b8 2019-12-21 03:07:38.733829 24637 686 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 4095fee6-54e4-47a2-9364-504d296600b8 2019-12-21 03:07:38.750633 24638 695 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 688\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.2858E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.809E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2809E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.59.52 7f918943-4ba4-467e-a876-64c9def4740b 2019-12-21 03:16:28.554683 24639 688 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.59.52 7f918943-4ba4-467e-a876-64c9def4740b 2019-12-21 03:16:28.568944 24640 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-19 18:52:40.474393000 Z\n- &1 2019-12-20 17:06:18.872134000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 17:35:38.691182067 Z\nsign_in_count:\n- 409\n- 410\n 823 \N 187.149.78.168 bb7d0428-fbfe-40fa-8e73-28f2165e2494 2019-12-21 17:35:38.721748 24641 2 User \N \N 2 User \N update ---\nunique_session_id:\n- VJ8gPJNQGawmShuuxegw\n- cVyu9zofMdX_EnbjXWd2\n 824 \N 187.149.78.168 bb7d0428-fbfe-40fa-8e73-28f2165e2494 2019-12-21 17:35:38.747315 24642 690 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1371E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1371.0 187.149.78.168 0efcb988-dbb0-479a-a65d-52c669059264 2019-12-21 17:46:17.885635 24643 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 02:16:24.946321000 Z\n- &1 2019-12-21 02:21:32.447188000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 17:50:46.738995289 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1141\n- 1142\n 2284 \N 189.186.59.52 2b2d7e43-4403-449b-892c-a991c7c99287 2019-12-21 17:50:46.746126 24644 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BhvnZe6sL7aJRdEhyCSy\n- WXA56UQba_jyKucTvGYE\n 2285 \N 189.186.59.52 2b2d7e43-4403-449b-892c-a991c7c99287 2019-12-21 17:50:46.764377 24645 1032 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.59.52 a4011483-2ecb-4ff0-ae99-d98074ab9266 2019-12-21 17:52:05.659583 24646 449 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.59.52 dc35533f-b397-4d71-95df-510af2932e77 2019-12-21 17:52:26.044439 24647 442 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.59.52 da22e3de-fbd1-4041-8cb1-82e2012e9b0c 2019-12-21 17:52:59.059331 24648 54 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.59.52 df9dc0d5-26c2-4a96-b5e5-fff4e873271f 2019-12-21 17:53:20.444821 24649 47 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.59.52 7e6cf733-9491-4ca1-ae52-91c441592dd4 2019-12-21 17:54:20.145315 24650 360 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-12-21\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.59.52 2e17fa96-e6a4-4faa-b8a7-0d1d929cb2f8 2019-12-21 17:55:57.245001 24651 214 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-91\namount: !ruby/object:BigDecimal 18:0.23485E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.23485E4\nobservations: ''\npurchase_date: 2019-12-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-91 por $ 2348.5 MXN creada. 189.186.59.52 e4c4092e-4d8b-498d-8a5a-c4b491471ec2 2019-12-21 17:57:22.450877 24652 1440 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.52 e4c4092e-4d8b-498d-8a5a-c4b491471ec2 2019-12-21 17:57:22.477133 24653 841 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.59.52 e4c4092e-4d8b-498d-8a5a-c4b491471ec2 2019-12-21 17:57:22.505442 24654 841 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.59.52 d3d5d0ca-454e-4f9b-a77d-d459ba41ba16 2019-12-21 17:57:58.156514 24655 361 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-12-21\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.59.52 ced911f9-41b2-4028-b313-531123f193c6 2019-12-21 17:58:00.345774 24656 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-12-15 20:37:03.152145000 Z\n- &1 2019-12-15 23:15:51.842750000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 18:17:59.004633612 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 59\n- 60\n 120 \N 187.149.78.168 d467dc9f-526e-40eb-8e55-3f5c85ccb2d1 2019-12-21 18:17:59.014203 24751 1781 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 cf557cba-32d5-45f9-9c5c-237bf5c7bc0b 2019-12-21 21:11:37.42497 24658 1769 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 687\namount: !ruby/object:BigDecimal 18:0.1629E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1629E3\ntotal: !ruby/object:BigDecimal 18:0.14661E4\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-693\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 71c9b320-7d58-419e-932d-3511c33ddce4 2019-12-21 18:18:40.929234 24659 1377 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.78.168 71c9b320-7d58-419e-932d-3511c33ddce4 2019-12-21 18:18:40.97454 24660 1769 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 8050cbba-e493-467c-af94-429551b93f6e 2019-12-21 18:19:07.19834 24661 2453 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 687\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.14661E4\nmove_type: '1'\nsale_id: 1769\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-693\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.14661E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-693 187.149.78.168 8050cbba-e493-467c-af94-429551b93f6e 2019-12-21 18:19:07.222043 24662 1770 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 687\namount: !ruby/object:BigDecimal 18:0.989E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.989E3\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-694\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 b71193c8-1843-4738-afa3-b85af3ee599c 2019-12-21 18:22:20.20659 24663 1445 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 5 \N 187.149.78.168 b71193c8-1843-4738-afa3-b85af3ee599c 2019-12-21 18:22:20.233441 24664 1770 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 22fa7108-62b8-4bad-be56-1391cb3d7ec8 2019-12-21 18:23:11.50022 24665 2454 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 687\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.989E3\nmove_type: '1'\nsale_id: 1770\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-694\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.989E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-694 187.149.78.168 22fa7108-62b8-4bad-be56-1391cb3d7ec8 2019-12-21 18:23:11.520905 24666 1770 Sale \N \N 26 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-694 cancelada. 187.149.78.168 2ec70f63-167c-4357-83b6-70842923a60c 2019-12-21 18:23:36.686298 24667 2454 CashRegistersMove \N \N 26 User \N destroy ---\nopen_cash_register_id: 687\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.989E3\nmove_type: '1'\nsale_id: 1770\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-694\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.989E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 2ec70f63-167c-4357-83b6-70842923a60c 2019-12-21 18:23:36.706573 24668 1445 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.12E2\n 6 \N 187.149.78.168 2ec70f63-167c-4357-83b6-70842923a60c 2019-12-21 18:23:36.742295 24669 1771 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 687\namount: !ruby/object:BigDecimal 18:0.1138E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1138E4\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-695\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 46feb95a-d000-4826-a821-2896a954e87c 2019-12-21 18:24:08.286878 24670 1332 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.78.168 46feb95a-d000-4826-a821-2896a954e87c 2019-12-21 18:24:08.315709 24671 1445 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 7 \N 187.149.78.168 46feb95a-d000-4826-a821-2896a954e87c 2019-12-21 18:24:08.337017 24672 1771 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 061e9e02-70f8-4cb0-b230-b005493229c9 2019-12-21 18:24:25.723691 24673 2455 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 687\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1138E4\nmove_type: '1'\nsale_id: 1771\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-695\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.362E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-695 187.149.78.168 061e9e02-70f8-4cb0-b230-b005493229c9 2019-12-21 18:24:25.743371 24674 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 02:21:32.447188000 Z\n- &1 2019-12-21 17:50:46.738995000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 18:27:40.510386999 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1142\n- 1143\n 2286 \N 189.186.59.52 e3c67cff-5755-4859-8e45-6ea9a1bc2a2a 2019-12-21 18:27:40.517158 24675 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WXA56UQba_jyKucTvGYE\n- 9unSfb5cyUJawLsegv9D\n 2287 \N 189.186.59.52 e3c67cff-5755-4859-8e45-6ea9a1bc2a2a 2019-12-21 18:27:40.531822 24676 1772 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 690\namount: !ruby/object:BigDecimal 18:0.8448E2\ntax: !ruby/object:BigDecimal 18:0.1352E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.98E2\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-891\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 378b5b2d-0caf-4711-b900-e29b21dc0ba5 2019-12-21 18:38:32.372354 24677 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.32E2\n- !ruby/object:BigDecimal 18:0.3E2\n 5 \N 187.149.78.168 378b5b2d-0caf-4711-b900-e29b21dc0ba5 2019-12-21 18:38:32.41905 24678 1772 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 1c838b19-a9f0-4fb9-9ceb-c4ddea89d2b2 2019-12-21 18:38:37.29958 24679 2456 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 690\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.98E2\nmove_type: '1'\nsale_id: 1772\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-891\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.98E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-891 187.149.78.168 1c838b19-a9f0-4fb9-9ceb-c4ddea89d2b2 2019-12-21 18:38:37.319162 24824 1789 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 a780b9fd-8f51-45e4-bcbd-a1cc472748b5 2019-12-21 22:25:26.148469 24680 1773 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 687\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-696\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 603ae358-6e30-49e3-a9d9-6876b2a7dd10 2019-12-21 19:03:24.254571 24681 1250 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.78.168 603ae358-6e30-49e3-a9d9-6876b2a7dd10 2019-12-21 19:03:24.27923 24682 1773 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 e34cfb54-7857-4900-b60e-e73c5134042a 2019-12-21 19:03:38.448459 24683 2457 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 687\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 1773\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-696\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-696 187.149.78.168 e34cfb54-7857-4900-b60e-e73c5134042a 2019-12-21 19:03:38.46816 24684 1774 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 690\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.239E3\ntotal: !ruby/object:BigDecimal 18:0.56E3\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-892\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 ef1fdbfa-59e5-4b68-b8b4-f96bcb25c259 2019-12-21 19:08:14.514428 24685 1071 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.78.168 ef1fdbfa-59e5-4b68-b8b4-f96bcb25c259 2019-12-21 19:08:14.540202 24686 1774 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 119630b3-72f6-4696-ae26-36f35885fa61 2019-12-21 19:08:18.57613 24687 2458 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 690\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.56E3\nmove_type: '1'\nsale_id: 1774\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-892\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.56E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-892 187.149.78.168 119630b3-72f6-4696-ae26-36f35885fa61 2019-12-21 19:08:18.597127 24688 1775 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 687\namount: !ruby/object:BigDecimal 18:0.55948E3\ntax: !ruby/object:BigDecimal 18:0.8952E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-697\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 fb361a42-80a2-47c6-8c79-e764fd2fb380 2019-12-21 19:17:17.423513 24689 724 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.78.168 fb361a42-80a2-47c6-8c79-e764fd2fb380 2019-12-21 19:17:17.448062 24690 1775 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 2665cc4d-d947-48d7-8295-92642f0b4bca 2019-12-21 19:17:58.688806 24691 2459 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 687\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 1775\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-697\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-697 187.149.78.168 2665cc4d-d947-48d7-8295-92642f0b4bca 2019-12-21 19:17:58.707961 24692 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 17:50:46.738995000 Z\n- &1 2019-12-21 18:27:40.510386000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 19:23:14.611785685 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1143\n- 1144\n 2288 \N 187.149.78.168 0e7996d6-1f0b-4563-8b65-419a74b4e03a 2019-12-21 19:23:14.618354 24693 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9unSfb5cyUJawLsegv9D\n- wNXiyKYansBXLyhUvPwY\n 2289 \N 187.149.78.168 0e7996d6-1f0b-4563-8b65-419a74b4e03a 2019-12-21 19:23:14.635482 24694 1776 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 690\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.129E3\ntotal: !ruby/object:BigDecimal 18:0.117E4\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-893\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 8a816ab2-15e2-4321-8267-c81618e4ef70 2019-12-21 19:29:18.052241 24695 1045 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 187.149.78.168 8a816ab2-15e2-4321-8267-c81618e4ef70 2019-12-21 19:29:18.077219 24696 1776 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 4589283e-1478-484f-b1b8-50bbfbc47ddf 2019-12-21 19:29:22.968541 24697 2460 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 690\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.117E4\nmove_type: '1'\nsale_id: 1776\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-893\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.3E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-893 187.149.78.168 4589283e-1478-484f-b1b8-50bbfbc47ddf 2019-12-21 19:29:22.988045 24698 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-15 02:27:58.861578000 Z\n- &1 2019-12-19 18:42:38.316677000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 19:31:18.188835030 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 128\n- 129\n 258 \N 187.149.78.168 47c94c24-688e-4bfa-b73d-95d7290b3e6a 2019-12-21 19:31:18.195344 24699 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 57AzJfdZxkNUfDiTFrDr\n- FownprgX6Vz-cdpVQoJd\n 259 \N 187.149.78.168 47c94c24-688e-4bfa-b73d-95d7290b3e6a 2019-12-21 19:31:18.209049 24700 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 18:27:40.510386000 Z\n- &1 2019-12-21 19:23:14.611785000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 19:32:44.314729506 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1144\n- 1145\n 2290 \N 187.149.78.168 fdd85b09-ceb6-461e-bd04-6d07eed7026b 2019-12-21 19:32:44.321632 24701 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wNXiyKYansBXLyhUvPwY\n- RYUsqYRh1KNWK1wjpjxb\n 2291 \N 187.149.78.168 fdd85b09-ceb6-461e-bd04-6d07eed7026b 2019-12-21 19:32:44.335524 24703 4 User \N \N 4 User \N update ---\nunique_session_id:\n- RYUsqYRh1KNWK1wjpjxb\n- y_kKEtEPLyCkSe9kFRHt\n 2293 \N 187.149.78.168 03fceb8d-f2c7-4733-b5a7-ab5c832d470c 2019-12-21 19:32:44.481152 24704 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-12-15 22:25:29.883080000 Z\n- &1 2019-12-15 23:08:40.810389000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 19:33:44.743208889 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 95\n- 96\n 192 \N 187.149.78.168 cd47918d-199c-44e4-9815-0232bfa6d23f 2019-12-21 19:33:44.749667 24705 9 User \N \N 9 User \N update ---\nunique_session_id:\n- Z1rTq3zt277z-fP8BtZ9\n- tgRhKqFyVQazwa1Mnf4s\n 193 \N 187.149.78.168 cd47918d-199c-44e4-9815-0232bfa6d23f 2019-12-21 19:33:44.762065 24706 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-12-15 23:08:40.810389000 Z\n- &1 2019-12-21 19:33:44.743208000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 19:33:44.898505547 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 96\n- 97\n 194 \N 187.149.78.168 193e07b4-c4bc-4235-8182-c550198abf1f 2019-12-21 19:33:44.904725 24707 9 User \N \N 9 User \N update ---\nunique_session_id:\n- tgRhKqFyVQazwa1Mnf4s\n- uBUhYHYMAKwLuevsAYVX\n 195 \N 187.149.78.168 193e07b4-c4bc-4235-8182-c550198abf1f 2019-12-21 19:33:44.918173 24708 1777 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 690\namount: !ruby/object:BigDecimal 18:0.949E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.64E2\ntotal: !ruby/object:BigDecimal 18:0.885E3\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-894\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 7a3f6ac4-7c57-492c-9a5b-e2b9bb1d9583 2019-12-21 19:39:12.593151 24709 1067 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.78.168 7a3f6ac4-7c57-492c-9a5b-e2b9bb1d9583 2019-12-21 19:39:12.618302 24710 1777 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 da3eccce-a385-4bfd-a7df-3ad136c314ee 2019-12-21 19:39:20.580655 24711 2461 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 690\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E2\nmove_type: '1'\nsale_id: 1777\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-894\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-894 187.149.78.168 da3eccce-a385-4bfd-a7df-3ad136c314ee 2019-12-21 19:39:20.601041 24712 2462 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 690\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.855E3\nmove_type: '1'\nsale_id: 1777\ncardnumber: 494\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-894\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-894 187.149.78.168 9614dbae-5c13-4022-883e-bd1833002726 2019-12-21 19:39:38.561587 24713 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 19:32:44.314729000 Z\n- &1 2019-12-21 19:32:44.461795000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 19:42:14.131994160 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1146\n- 1147\n 2294 \N 189.186.59.52 d6946d0d-f551-425f-9dba-8e029fb07a02 2019-12-21 19:42:14.138602 24714 4 User \N \N 4 User \N update ---\nunique_session_id:\n- y_kKEtEPLyCkSe9kFRHt\n- vaxzW7xJHwJVy1xcsHDR\n 2295 \N 189.186.59.52 d6946d0d-f551-425f-9dba-8e029fb07a02 2019-12-21 19:42:14.153783 24715 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 19:32:44.461795000 Z\n- &1 2019-12-21 19:42:14.131994000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 19:52:44.917016925 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1147\n- 1148\n 2296 \N 187.149.78.168 a651c89c-3ee5-4061-8949-0701a2421085 2019-12-21 19:52:44.924676 24716 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vaxzW7xJHwJVy1xcsHDR\n- Kggd54FxGA9nrb3sx1T8\n 2297 \N 187.149.78.168 a651c89c-3ee5-4061-8949-0701a2421085 2019-12-21 19:52:44.939949 24717 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-19 20:33:06.318285000 Z\n- &1 2019-12-20 17:43:16.208532000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 20:03:16.564408458 Z\nsign_in_count:\n- 64\n- 65\n 131 \N 189.186.59.52 a02fcb11-db97-4c2b-9b32-c420fb088811 2019-12-21 20:03:16.570208 24718 21 User \N \N 21 User \N update ---\nunique_session_id:\n- ge1jxChVTCkemm5qk6VQ\n- TEZPpTiJs8i_Us34Y2b6\n 132 \N 189.186.59.52 a02fcb11-db97-4c2b-9b32-c420fb088811 2019-12-21 20:03:16.584875 24719 691 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.809E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 809.0 189.186.59.52 72f8d6e0-35b4-432d-82a3-4b2d1cc3d219 2019-12-21 20:03:25.548949 24720 270 Customer \N \N 21 User \N create ---\nnick_name: EDUVINA ANGULO\nphone: "(667) 492-6931"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente EDUVINA ANGULO fue registrado. 189.186.59.52 98f59b01-09f4-4bd5-bf14-173cbd6397a7 2019-12-21 20:11:28.448756 24721 1778 Sale \N \N 21 User \N create ---\ncustomer_id: 270\nuser_id: 21\nopen_cash_register_id: 691\namount: !ruby/object:BigDecimal 18:0.1498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.71E2\ntotal: !ruby/object:BigDecimal 18:0.1427E4\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-185\nexpiration_date: 2020-01-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 1b697639-bfd5-4d17-98ed-aee46c2ccb66 2019-12-21 20:23:59.311298 24722 1188 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.59.52 1b697639-bfd5-4d17-98ed-aee46c2ccb66 2019-12-21 20:23:59.337973 24723 1187 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.59.52 1b697639-bfd5-4d17-98ed-aee46c2ccb66 2019-12-21 20:23:59.361626 24724 1167 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.59.52 1b697639-bfd5-4d17-98ed-aee46c2ccb66 2019-12-21 20:23:59.384145 24725 1169 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.59.52 1b697639-bfd5-4d17-98ed-aee46c2ccb66 2019-12-21 20:23:59.405757 24726 1168 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.59.52 1b697639-bfd5-4d17-98ed-aee46c2ccb66 2019-12-21 20:23:59.428497 24727 2463 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 691\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1778\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-185\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-185 189.186.59.52 93e27a6e-0e06-43ee-8033-195adee93b43 2019-12-21 20:24:07.360208 24728 1778 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.59.52 43838597-03e7-4cb7-ad2e-9f3530b862a3 2019-12-21 20:24:40.181313 24729 1779 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 691\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.289E3\ntotal: !ruby/object:BigDecimal 18:0.81E3\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-186\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 eb97610b-9268-49a0-8dd3-e6b039bc9bcc 2019-12-21 20:49:07.383956 24730 1417 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.59.52 eb97610b-9268-49a0-8dd3-e6b039bc9bcc 2019-12-21 20:49:07.412941 24731 1779 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 a69ebe7d-6520-499a-9c02-fc3956ef068b 2019-12-21 20:49:14.249072 24732 2464 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 691\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.81E3\nmove_type: '1'\nsale_id: 1779\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-186\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.19E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-186 189.186.59.52 a69ebe7d-6520-499a-9c02-fc3956ef068b 2019-12-21 20:49:14.268505 24733 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 19:42:14.131994000 Z\n- &1 2019-12-21 19:52:44.917016000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 20:56:02.792844806 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1148\n- 1149\n 2298 \N 189.186.59.52 785395f6-4791-46d9-a8d1-b0ec160bc2f9 2019-12-21 20:56:02.821522 24734 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Kggd54FxGA9nrb3sx1T8\n- YeaFivTtdtrzFcnVrNox\n 2299 \N 189.186.59.52 785395f6-4791-46d9-a8d1-b0ec160bc2f9 2019-12-21 20:56:02.845517 24735 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-12-15 23:15:51.842750000 Z\n- &1 2019-12-21 18:17:59.004633000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 20:56:34.560175078 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 60\n- 61\n 122 \N 187.149.78.168 4e9e76a5-b1cd-46be-b3f4-e9e1d051e1bd 2019-12-21 20:56:34.566093 24736 26 User \N \N 26 User \N update ---\nunique_session_id:\n- eqqdsvuNpbVsdtMPssy4\n- nsqN57yU8_XzyS8ctY8K\n 123 \N 187.149.78.168 4e9e76a5-b1cd-46be-b3f4-e9e1d051e1bd 2019-12-21 20:56:34.578612 24737 1780 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 687\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.799E2\ntotal: !ruby/object:BigDecimal 18:0.7191E3\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-698\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 93efa448-a8dd-48fa-aa1a-b4d8e4525bb4 2019-12-21 20:59:54.89507 24738 1090 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.78.168 93efa448-a8dd-48fa-aa1a-b4d8e4525bb4 2019-12-21 20:59:54.922124 24739 1780 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 691bfe3c-4ce8-47b2-b1aa-084f01ce24ca 2019-12-21 21:00:02.451605 24740 2465 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 687\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7191E3\nmove_type: '1'\nsale_id: 1780\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-698\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.2809E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-698 187.149.78.168 691bfe3c-4ce8-47b2-b1aa-084f01ce24ca 2019-12-21 21:00:02.473073 24741 24 ProductsReturn \N \N 2 User \N create ---\nsale_id: 1751\nuser_id: 2\nreturn_code: PV1-D-12\npointsale_id: 1\nnew_amount: !ruby/object:BigDecimal 18:0.168699E4\nreturned_amount: !ruby/object:BigDecimal 18:0.172032E4\ndifference_amount: !ruby/object:BigDecimal 18:0.0\nis_money_returned: false\n 1 devolución PV1-D-12 creada. 187.149.78.168 845e9bad-c817-4a20-8236-2d0bd6a92703 2019-12-21 21:03:59.045135 24742 1297 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.9E1\n 9 \N 187.149.78.168 845e9bad-c817-4a20-8236-2d0bd6a92703 2019-12-21 21:03:59.08772 24743 1073 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.78.168 845e9bad-c817-4a20-8236-2d0bd6a92703 2019-12-21 21:03:59.112812 24744 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 187.149.78.168 845e9bad-c817-4a20-8236-2d0bd6a92703 2019-12-21 21:03:59.147106 24745 1024 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.78.168 845e9bad-c817-4a20-8236-2d0bd6a92703 2019-12-21 21:03:59.169218 24746 486 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 23 \N 187.149.78.168 845e9bad-c817-4a20-8236-2d0bd6a92703 2019-12-21 21:03:59.190459 24747 954 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '954'\n is_parent: false\n sku: FAL-954\n name: FLD-0021\n description: "FALDA PATOLES DE PIEL BLUE S \\r\\nST-S92291 NEGRA, TINTA, CAMEL,\n OLIVO\\r\\n"\n price_base: '480.0'\n price_sale: '1199.0'\n img_product: IMG_3746.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000954'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-11-26 22:30:54.602715'\n updated_at: &12 2019-12-21 21:10:32.488015865 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '954'\n sku: FAL-954\n name: FLD-0021\n description: "FALDA PATOLES DE PIEL BLUE S \\r\\nST-S92291 NEGRA, TINTA, CAMEL,\n OLIVO\\r\\n"\n price_base: '480.00'\n price_sale: '1199.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-11-26 22:30:54.602715'\n updated_at: '2019-11-26 22:36:18.384785'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000954'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '954'\n type: *3\n value: 954\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-954\n type: *7\n value: FAL-954\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0021\n type: *8\n value: FLD-0021\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "FALDA PATOLES DE PIEL BLUE S \\r\\nST-S92291 NEGRA,\n TINTA, CAMEL, OLIVO\\r\\n"\n type: *6\n value: "FALDA PATOLES DE PIEL BLUE S \\r\\nST-S92291 NEGRA, TINTA, CAMEL,\n OLIVO\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '480.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.48E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1199.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1199E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_3746.JPG\n type: *2\n value: IMG_3746.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000954'\n type: *2\n value: '0000954'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-11-26 22:30:54.602715'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_3746.JPG\n 4 El producto FAL-954 fue modificado. 189.186.59.52 13e16b1a-c133-471d-9d7d-574bf878c055 2019-12-21 21:10:32.571141 24748 1781 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 687\namount: !ruby/object:BigDecimal 18:0.2388E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2388E3\ntotal: !ruby/object:BigDecimal 18:0.21492E4\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-699\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 bfec48ec-0a1e-41e4-a983-703c0dad7832 2019-12-21 21:11:01.132864 24749 1446 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.78.168 bfec48ec-0a1e-41e4-a983-703c0dad7832 2019-12-21 21:11:01.157406 24750 1100 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.78.168 bfec48ec-0a1e-41e4-a983-703c0dad7832 2019-12-21 21:11:01.190722 24752 2466 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 687\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.21492E4\nmove_type: '1'\nsale_id: 1781\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-699\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.21492E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-699 187.149.78.168 cf557cba-32d5-45f9-9c5c-237bf5c7bc0b 2019-12-21 21:11:37.444916 24753 963 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '963'\n is_parent: false\n sku: FAL-963\n name: FLD-0022\n description: "FALDA ROJA SANJOY\\r\\n"\n price_base: '380.0'\n price_sale: '949.0'\n img_product: IMG_3690.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000963'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-11-26 22:48:21.083499'\n updated_at: &12 2019-12-21 21:12:34.104031612 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '963'\n sku: FAL-963\n name: FLD-0022\n description: "FALDA ROJA SANJOY\\r\\n"\n price_base: '380.00'\n price_sale: '949.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-11-26 22:48:21.083499'\n updated_at: '2019-11-26 22:48:21.133458'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000963'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '963'\n type: *3\n value: 963\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-963\n type: *7\n value: FAL-963\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0022\n type: *8\n value: FLD-0022\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "FALDA ROJA SANJOY\\r\\n"\n type: *6\n value: "FALDA ROJA SANJOY\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '380.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.38E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '949.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.949E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_3690.JPG\n type: *2\n value: IMG_3690.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000963'\n type: *2\n value: '0000963'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-11-26 22:48:21.083499'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_3690.JPG\n 3 El producto FAL-963 fue modificado. 189.186.59.52 61b48190-c10b-487f-8721-f79ec476cf9d 2019-12-21 21:12:34.156756 24754 958 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '958'\n is_parent: false\n sku: SHO-958\n name: SHO-0024\n description: "SHORT FALDA NEGRA DE PIEL CON REMACHES MUYMUY ST-1476\\r\\n"\n price_base: '300.0'\n price_sale: '749.0'\n img_product: IMG_3691.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '2'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000958'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-11-26 22:39:03.464899'\n updated_at: &12 2019-12-21 21:13:32.476771073 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '958'\n sku: SHO-958\n name: SHO-0024\n description: "SHORT FALDA NEGRA DE PIEL CON REMACHES MUYMUY ST-1476\\r\\n"\n price_base: '300.00'\n price_sale: '749.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-11-26 22:39:03.464899'\n updated_at: '2019-11-26 22:39:03.514642'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000958'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '2'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '958'\n type: *3\n value: 958\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: SHO-958\n type: *7\n value: SHO-958\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: SHO-0024\n type: *8\n value: SHO-0024\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "SHORT FALDA NEGRA DE PIEL CON REMACHES MUYMUY\n ST-1476\\r\\n"\n type: *6\n value: "SHORT FALDA NEGRA DE PIEL CON REMACHES MUYMUY ST-1476\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '300.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '749.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.749E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_3691.JPG\n type: *2\n value: IMG_3691.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '2'\n type: *3\n value: 2\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000958'\n type: *2\n value: '0000958'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-11-26 22:39:03.464899'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_3691.JPG\n 3 El producto SHO-958 fue modificado. 189.186.59.52 42610555-8152-4b55-98f7-f51293f281fa 2019-12-21 21:13:32.520516 24755 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 19:33:44.743208000 Z\n- &1 2019-12-21 19:33:44.898505000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 21:13:36.924196806 Z\nsign_in_count:\n- 97\n- 98\n 196 \N 187.149.78.168 a847f69c-0105-4e9f-8670-98cf0eb2116e 2019-12-21 21:13:36.93012 24756 9 User \N \N 9 User \N update ---\nunique_session_id:\n- uBUhYHYMAKwLuevsAYVX\n- fWiBpB6pLKyryUecY3yR\n 197 \N 187.149.78.168 a847f69c-0105-4e9f-8670-98cf0eb2116e 2019-12-21 21:13:36.942377 24757 959 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '959'\n is_parent: false\n sku: PAN-959\n name: PNT-0022\n description: "PANTALON STRECH NEGRO MUYMUY ST-1473\\r\\n"\n price_base: '350.0'\n price_sale: '899.0'\n img_product: IMG_3692.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '8'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000959'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-11-26 22:42:59.241057'\n updated_at: &12 2019-12-21 21:15:44.383164699 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '959'\n sku: PAN-959\n name: PNT-0022\n description: "PANTALON STRECH NEGRO MUYMUY ST-1473\\r\\n"\n price_base: '350.00'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-11-26 22:42:59.241057'\n updated_at: '2019-11-26 22:42:59.289981'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000959'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '8'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '959'\n type: *3\n value: 959\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAN-959\n type: *7\n value: PAN-959\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PNT-0022\n type: *8\n value: PNT-0022\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "PANTALON STRECH NEGRO MUYMUY ST-1473\\r\\n"\n type: *6\n value: "PANTALON STRECH NEGRO MUYMUY ST-1473\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '350.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.35E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_3692.JPG\n type: *2\n value: IMG_3692.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '8'\n type: *3\n value: 8\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000959'\n type: *2\n value: '0000959'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-11-26 22:42:59.241057'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_3692.JPG\n 3 El producto PAN-959 fue modificado. 189.186.59.52 e38392bd-1bc7-43d8-8c4f-9b02953b4788 2019-12-21 21:15:44.431933 24758 1782 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 690\namount: !ruby/object:BigDecimal 18:0.15464E4\ntax: !ruby/object:BigDecimal 18:0.1116E3\ndiscount: !ruby/object:BigDecimal 18:0.1658E3\ntotal: !ruby/object:BigDecimal 18:0.14922E4\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-895\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 75d2311c-d945-4f91-9248-d550866550a1 2019-12-21 21:16:00.844412 24759 1441 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.78.168 75d2311c-d945-4f91-9248-d550866550a1 2019-12-21 21:16:00.87086 24760 171 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.78.168 75d2311c-d945-4f91-9248-d550866550a1 2019-12-21 21:16:00.895367 24761 1782 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 d9b52ee7-50a3-4360-b582-321b4852e010 2019-12-21 21:16:06.272222 24762 2467 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 690\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.14922E4\nmove_type: '1'\nsale_id: 1782\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-895\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.14922E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-895 187.149.78.168 d9b52ee7-50a3-4360-b582-321b4852e010 2019-12-21 21:16:06.291895 24763 949 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '949'\n is_parent: false\n sku: BLU-949\n name: BLS-0101\n description: "BLUSA MUYMUY ST-99095 COLOR NGREA, TINTA Y VERDE\\r\\n"\n price_base: '200.0'\n price_sale: '549.0'\n img_product: 97cd3032-fe84-4c82-bf26-d9873806ada1.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000949'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-11-20 20:29:12.355513'\n updated_at: &12 2019-12-21 21:16:16.077748139 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '949'\n sku: BLU-949\n name: BLS-0101\n description: "BLUSA MUYMUY ST-99095 COLOR NGREA, TINTA Y VERDE\\r\\n"\n price_base: '200.00'\n price_sale: '549.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-11-20 20:29:12.355513'\n updated_at: '2019-11-20 20:29:12.389023'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000949'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '949'\n type: *3\n value: 949\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-949\n type: *7\n value: BLU-949\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0101\n type: *8\n value: BLS-0101\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "BLUSA MUYMUY ST-99095 COLOR NGREA, TINTA Y VERDE\\r\\n"\n type: *6\n value: "BLUSA MUYMUY ST-99095 COLOR NGREA, TINTA Y VERDE\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '200.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '549.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.549E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 97cd3032-fe84-4c82-bf26-d9873806ada1.JPG\n type: *2\n value: 97cd3032-fe84-4c82-bf26-d9873806ada1.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000949'\n type: *2\n value: '0000949'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-11-20 20:29:12.355513'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 97cd3032-fe84-4c82-bf26-d9873806ada1.JPG\n 3 El producto BLU-949 fue modificado. 189.186.59.52 f8c744bb-52f2-4dd3-a93f-7cdd88b62e0c 2019-12-21 21:16:16.125518 24764 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 18:17:59.004633000 Z\n- &1 2019-12-21 20:56:34.560175000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 21:18:05.125416074 Z\nsign_in_count:\n- 61\n- 62\n 124 \N 187.149.78.168 412587d5-4099-4ef8-8791-f84606d183d1 2019-12-21 21:18:05.130813 24765 26 User \N \N 26 User \N update ---\nunique_session_id:\n- nsqN57yU8_XzyS8ctY8K\n- y42yz3GWuf-xAEsCNjym\n 125 \N 187.149.78.168 412587d5-4099-4ef8-8791-f84606d183d1 2019-12-21 21:18:05.14425 24766 775 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '775'\n is_parent: false\n sku: JUM-775\n name: VE-0053\n description: "JUMPER BLUE B NEGRO LENTEJUELA GOTA DORADA\\r\\n"\n price_base: '674.5'\n price_sale: '1349.0'\n img_product: IMG_3566.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '1'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000775'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-11 19:13:04.706913'\n updated_at: &12 2019-12-21 21:22:01.883958222 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '775'\n sku: JUM-775\n name: VE-0053\n description: "JUMPER BLUE B NEGRO LENTEJUELA GOTA DORADA\\r\\n"\n price_base: '674.50'\n price_sale: '1349.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-11 19:13:04.706913'\n updated_at: '2019-10-11 19:13:04.74036'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000775'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '1'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '775'\n type: *3\n value: 775\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: JUM-775\n type: *7\n value: JUM-775\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VE-0053\n type: *8\n value: VE-0053\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "JUMPER BLUE B NEGRO LENTEJUELA GOTA DORADA\\r\\n"\n type: *6\n value: "JUMPER BLUE B NEGRO LENTEJUELA GOTA DORADA\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '674.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6745E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1349.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1349E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_3566.jpg\n type: *2\n value: IMG_3566.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '1'\n type: *3\n value: 1\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000775'\n type: *2\n value: '0000775'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-11 19:13:04.706913'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_3566.jpg\n 3 El producto JUM-775 fue modificado. 189.186.59.52 892aec4b-6da0-4f33-833e-9408d779138d 2019-12-21 21:22:01.946212 24767 957 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '957'\n is_parent: false\n sku: VES-957\n name: VST-0068\n description: "VESTIDO DORADO BLUE S ST-D92404\\r\\n"\n price_base: '570.0'\n price_sale: '1449.0'\n img_product: IMG_3745.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000957'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-11-26 22:35:44.176744'\n updated_at: &12 2019-12-21 21:23:10.723824456 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '957'\n sku: VES-957\n name: VST-0068\n description: "VESTIDO DORADO BLUE S ST-D92404\\r\\n"\n price_base: '570.00'\n price_sale: '1449.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-11-26 22:35:44.176744'\n updated_at: '2019-11-26 22:35:44.231225'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000957'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '957'\n type: *3\n value: 957\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-957\n type: *7\n value: VES-957\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0068\n type: *8\n value: VST-0068\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "VESTIDO DORADO BLUE S ST-D92404\\r\\n"\n type: *6\n value: "VESTIDO DORADO BLUE S ST-D92404\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '570.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.57E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1449.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1449E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_3745.JPG\n type: *2\n value: IMG_3745.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000957'\n type: *2\n value: '0000957'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-11-26 22:35:44.176744'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_3745.JPG\n 3 El producto VES-957 fue modificado. 189.186.59.52 595fab2f-1935-4f2c-91a6-e63c7db66ea2 2019-12-21 21:23:10.762355 24768 955 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '955'\n is_parent: false\n sku: VES-955\n name: VST-0066\n description: "VESTIDO MAGENTA BLUE S ST-D92415\\r\\n"\n price_base: '400.0'\n price_sale: '999.0'\n img_product: IMG_3748.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000955'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-11-26 22:34:15.106728'\n updated_at: &12 2019-12-21 21:24:18.229526019 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '955'\n sku: VES-955\n name: VST-0066\n description: "VESTIDO MAGENTA BLUE S ST-D92415\\r\\n"\n price_base: '400.00'\n price_sale: '999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-11-26 22:34:15.106728'\n updated_at: '2019-11-26 22:34:15.144028'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000955'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '955'\n type: *3\n value: 955\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-955\n type: *7\n value: VES-955\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0066\n type: *8\n value: VST-0066\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "VESTIDO MAGENTA BLUE S ST-D92415\\r\\n"\n type: *6\n value: "VESTIDO MAGENTA BLUE S ST-D92415\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '400.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_3748.JPG\n type: *2\n value: IMG_3748.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000955'\n type: *2\n value: '0000955'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-11-26 22:34:15.106728'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_3748.JPG\n 3 El producto VES-955 fue modificado. 189.186.59.52 59627214-966f-4135-8172-38c9f7f45e3a 2019-12-21 21:24:18.270243 24769 1333 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.78.168 30692c42-b4fc-461b-9ef3-1641269c7b47 2019-12-21 21:24:25.285997 24770 362 Transfer \N \N 1 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-12-21\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.78.168 5fd84e84-6538-4424-b697-e9894d52fa38 2019-12-21 21:24:44.556397 24771 956 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '956'\n is_parent: false\n sku: VES-956\n name: VST-0067\n description: "VESTIDO MAVUE BLUE S ST-D92357\\r\\n"\n price_base: '350.0'\n price_sale: '899.0'\n img_product: IMG_3747.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000956'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-11-26 22:34:59.903708'\n updated_at: &12 2019-12-21 21:24:49.640866740 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '956'\n sku: VES-956\n name: VST-0067\n description: "VESTIDO MAVUE BLUE S ST-D92357\\r\\n"\n price_base: '350.00'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-11-26 22:34:59.903708'\n updated_at: '2019-11-26 22:34:59.94796'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000956'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '956'\n type: *3\n value: 956\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-956\n type: *7\n value: VES-956\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0067\n type: *8\n value: VST-0067\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "VESTIDO MAVUE BLUE S ST-D92357\\r\\n"\n type: *6\n value: "VESTIDO MAVUE BLUE S ST-D92357\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '350.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.35E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_3747.JPG\n type: *2\n value: IMG_3747.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000956'\n type: *2\n value: '0000956'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-11-26 22:34:59.903708'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_3747.JPG\n 3 El producto VES-956 fue modificado. 189.186.59.52 8666fcb4-9aec-46ca-999c-97df49beaad0 2019-12-21 21:24:49.681909 24772 362 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-21\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.78.168 808e06be-6aa9-4c1c-9989-11bef7e3afaa 2019-12-21 21:25:04.993995 24773 1311 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.78.168 808e06be-6aa9-4c1c-9989-11bef7e3afaa 2019-12-21 21:25:05.011569 24774 1783 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 687\namount: !ruby/object:BigDecimal 18:0.2028E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2028E3\ntotal: !ruby/object:BigDecimal 18:0.18252E4\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-700\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 573e8424-32e2-4ef1-acf0-ab6f38534c2a 2019-12-21 21:25:50.802992 24775 1255 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.78.168 573e8424-32e2-4ef1-acf0-ab6f38534c2a 2019-12-21 21:25:50.82831 24776 1453 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.78.168 573e8424-32e2-4ef1-acf0-ab6f38534c2a 2019-12-21 21:25:50.849902 24777 1783 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 2c806b4d-8614-4266-8d5c-0ba9a0f71885 2019-12-21 21:26:32.129413 24778 2468 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 687\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.18252E4\nmove_type: '1'\nsale_id: 1783\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-700\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.19E4\nchange: !ruby/object:BigDecimal 18:0.748E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-700 187.149.78.168 2c806b4d-8614-4266-8d5c-0ba9a0f71885 2019-12-21 21:26:32.148186 24918 1460 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.59.52 7a6ee5e7-5b67-414e-be33-5b555bd59e35 2019-12-22 00:42:54.451061 24779 1784 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 690\namount: !ruby/object:BigDecimal 18:0.298E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.298E3\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-896\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 ac9e40eb-fc53-4d3d-af10-683e8f26af2e 2019-12-21 21:27:19.945114 24780 1311 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.78.168 ac9e40eb-fc53-4d3d-af10-683e8f26af2e 2019-12-21 21:27:19.977118 24781 1784 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 41b99991-9dfe-4cd6-9769-8af509be1bd0 2019-12-21 21:27:24.823763 24782 2469 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 690\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.298E3\nmove_type: '1'\nsale_id: 1784\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-896\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.298E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-896 187.149.78.168 41b99991-9dfe-4cd6-9769-8af509be1bd0 2019-12-21 21:27:24.851325 24783 737 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '737'\n is_parent: false\n sku: VES-737\n name: VE-0048\n description: "VESTIDO CQ TINTO Y NEGRO DE TERCIOPELO\\r\\n"\n price_base: '379.0'\n price_sale: '949.0'\n img_product: IMG_3964.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000737'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-07 20:21:21.886148'\n updated_at: &12 2019-12-21 21:28:44.712007921 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '737'\n sku: VES-737\n name: VE-0048\n description: "VESTIDO CQ TINTO Y NEGRO DE TERCIOPELO\\r\\n"\n price_base: '379.00'\n price_sale: '949.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-07 20:21:21.886148'\n updated_at: '2019-10-07 20:21:21.919834'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000737'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '737'\n type: *3\n value: 737\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-737\n type: *7\n value: VES-737\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VE-0048\n type: *8\n value: VE-0048\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "VESTIDO CQ TINTO Y NEGRO DE TERCIOPELO\\r\\n"\n type: *6\n value: "VESTIDO CQ TINTO Y NEGRO DE TERCIOPELO\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '379.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.379E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '949.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.949E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_3964.jpg\n type: *2\n value: IMG_3964.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000737'\n type: *2\n value: '0000737'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-07 20:21:21.886148'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_3964.jpg\n 3 El producto VES-737 fue modificado. 189.186.59.52 18e22cce-f5d2-42dc-a7b5-c0c1f700855c 2019-12-21 21:28:44.752824 24784 792 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.59.52 4656d566-ecb1-431c-97ed-2d9c5dfd1f21 2019-12-21 21:30:22.647618 24785 363 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-12-21\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.59.52 2e271f64-6558-4522-9a96-0905105f365b 2019-12-21 21:30:24.910811 24786 363 Transfer \N \N 26 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 26\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-21\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.78.168 209ea2d7-9c1d-4f30-b896-1c14a2a8ac81 2019-12-21 21:35:15.122598 24787 1418 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 14 \N 187.149.78.168 209ea2d7-9c1d-4f30-b896-1c14a2a8ac81 2019-12-21 21:35:15.139995 24788 1785 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 687\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.14985E3\ntotal: !ruby/object:BigDecimal 18:0.84915E3\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-701\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 45260a21-0bb3-49b0-981e-8aabe2701825 2019-12-21 21:35:53.109378 24789 1418 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 15 \N 187.149.78.168 45260a21-0bb3-49b0-981e-8aabe2701825 2019-12-21 21:35:53.133866 24790 1785 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 7cba34a4-5d5c-48d5-acc8-d90e3dae8c9b 2019-12-21 21:35:59.339525 24791 2470 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 687\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.84915E3\nmove_type: '1'\nsale_id: 1785\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-701\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.84915E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-701 187.149.78.168 7cba34a4-5d5c-48d5-acc8-d90e3dae8c9b 2019-12-21 21:35:59.359723 24792 778 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '778'\n is_parent: false\n sku: VES-778\n name: V-0064\n description: "VESTIDO LATISTE LENTEJUELA NEGRO Y DORADO\\r\\n"\n price_base: '799.5'\n price_sale: '1599.0'\n img_product: IMG_3564.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000778'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-11 19:15:30.050851'\n updated_at: &12 2019-12-21 21:36:31.477667941 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '778'\n sku: VES-778\n name: V-0064\n description: "VESTIDO LATISTE LENTEJUELA NEGRO Y DORADO\\r\\n"\n price_base: '799.50'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-11 19:15:30.050851'\n updated_at: '2019-10-11 19:15:30.0848'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000778'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '778'\n type: *3\n value: 778\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-778\n type: *7\n value: VES-778\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: V-0064\n type: *8\n value: V-0064\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "VESTIDO LATISTE LENTEJUELA NEGRO Y DORADO\\r\\n"\n type: *6\n value: "VESTIDO LATISTE LENTEJUELA NEGRO Y DORADO\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '799.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_3564.jpg\n type: *2\n value: IMG_3564.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000778'\n type: *2\n value: '0000778'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-11 19:15:30.050851'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_3564.jpg\n 3 El producto VES-778 fue modificado. 189.186.59.52 7f302e30-0d71-444f-9437-f7d670e977b4 2019-12-21 21:36:31.518568 24793 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 19:52:44.917016000 Z\n- &1 2019-12-21 20:56:02.792844000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 21:37:06.184926971 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1149\n- 1150\n 2300 \N 187.149.78.168 69ba82ae-fae0-4bfb-95c1-ebac4cef22b8 2019-12-21 21:37:06.192433 24794 4 User \N \N 4 User \N update ---\nunique_session_id:\n- YeaFivTtdtrzFcnVrNox\n- LftGXiq9jpBqogN2hfyc\n 2301 \N 187.149.78.168 69ba82ae-fae0-4bfb-95c1-ebac4cef22b8 2019-12-21 21:37:06.207439 24795 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 20:56:02.792844000 Z\n- &1 2019-12-21 21:37:06.184926000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 21:37:27.733774053 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1150\n- 1151\n 2302 \N 189.186.59.52 206809cb-cd85-4095-a04d-df84758b428f 2019-12-21 21:37:27.741194 24796 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LftGXiq9jpBqogN2hfyc\n- oWb-__myW3yNiiEeyzhj\n 2303 \N 189.186.59.52 206809cb-cd85-4095-a04d-df84758b428f 2019-12-21 21:37:27.757795 24797 1786 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 687\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.569E2\ntotal: !ruby/object:BigDecimal 18:0.5121E3\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-702\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 55cf8dc4-e347-476c-9654-a66d29393682 2019-12-21 21:43:40.765465 24798 1455 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.78.168 55cf8dc4-e347-476c-9654-a66d29393682 2019-12-21 21:43:40.792535 24799 1786 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 ecf824d4-dc73-4cd9-b2e4-36341746cadd 2019-12-21 21:43:51.109494 24800 2471 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 687\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5121E3\nmove_type: '1'\nsale_id: 1786\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-702\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5121E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-702 187.149.78.168 ecf824d4-dc73-4cd9-b2e4-36341746cadd 2019-12-21 21:43:51.128286 24919 1460 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.59.52 6500feda-e605-446b-bb6d-6ca1a5bef3e9 2019-12-22 00:43:09.280706 24801 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 21:37:06.184926000 Z\n- &1 2019-12-21 21:37:27.733774000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 22:07:34.513674086 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1151\n- 1152\n 2304 \N 187.149.78.168 3a201c64-6e83-440c-91cc-96cefd367a67 2019-12-21 22:07:34.521173 24802 4 User \N \N 4 User \N update ---\nunique_session_id:\n- oWb-__myW3yNiiEeyzhj\n- ynjunjsScgFFmmq5x4Ma\n 2305 \N 187.149.78.168 3a201c64-6e83-440c-91cc-96cefd367a67 2019-12-21 22:07:34.537574 24803 1787 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 690\namount: !ruby/object:BigDecimal 18:0.3467E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.247E3\ntotal: !ruby/object:BigDecimal 18:0.322E4\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-897\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 cb47507b-1a57-4aef-8a81-45555e0980b6 2019-12-21 22:08:41.396077 24804 1406 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.78.168 cb47507b-1a57-4aef-8a81-45555e0980b6 2019-12-21 22:08:41.422111 24805 1276 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.78.168 cb47507b-1a57-4aef-8a81-45555e0980b6 2019-12-21 22:08:41.443877 24806 1301 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.78.168 cb47507b-1a57-4aef-8a81-45555e0980b6 2019-12-21 22:08:41.464333 24807 1787 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 b6f53cc5-d2b5-4a34-a9d0-e9b1493ee383 2019-12-21 22:08:45.918919 24808 2472 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 690\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 1787\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-897\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-897 187.149.78.168 b6f53cc5-d2b5-4a34-a9d0-e9b1493ee383 2019-12-21 22:08:45.941549 24809 2473 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 690\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.312E4\nmove_type: '1'\nsale_id: 1787\ncardnumber: 2924\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-897\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-897 187.149.78.168 3c4b0d42-1f22-4ec7-8dc2-1a79a590d40b 2019-12-21 22:09:33.980197 24810 244 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 690\nquantity: !ruby/object:BigDecimal 18:0.44E2\nstatus: 1\nobservations: PLUMON PARA VIDRIO\nexpense_date: 2019-12-21\nexpense_code: PV1-E-173\n 1 Egreso por 44.0 registrado 187.149.78.168 5fecd9b8-63d8-4bdf-9f41-526a45f72da8 2019-12-21 22:20:54.031107 24811 2474 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 690\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.44E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 244\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 5fecd9b8-63d8-4bdf-9f41-526a45f72da8 2019-12-21 22:20:54.054789 24812 1788 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 687\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2097E3\ntotal: !ruby/object:BigDecimal 18:0.4893E3\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-703\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 3ccab2f0-a81a-42bc-a6d4-d49ae98dad70 2019-12-21 22:23:32.801203 24813 806 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 36 \N 187.149.78.168 3ccab2f0-a81a-42bc-a6d4-d49ae98dad70 2019-12-21 22:23:32.827415 24814 1788 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 4e7bce3c-47de-459c-80e3-db29b60c3e28 2019-12-21 22:23:37.936232 24815 2475 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 687\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.4893E3\nmove_type: '1'\nsale_id: 1788\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-703\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4893E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-703 187.149.78.168 4e7bce3c-47de-459c-80e3-db29b60c3e28 2019-12-21 22:23:37.955912 24816 800 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 19 \N 187.149.78.168 828ba914-59ca-4631-9ad8-326351bc7dea 2019-12-21 22:23:42.621821 24817 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 19:33:44.898505000 Z\n- &1 2019-12-21 21:13:36.924196000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 22:24:11.166655345 Z\nsign_in_count:\n- 98\n- 99\n 198 \N 187.149.78.168 18682349-fcf3-4a83-a8f7-a082bfc32901 2019-12-21 22:24:11.172629 24818 9 User \N \N 9 User \N update ---\nunique_session_id:\n- fWiBpB6pLKyryUecY3yR\n- gzvhiS1XyEV1gfUQfsnu\n 199 \N 187.149.78.168 18682349-fcf3-4a83-a8f7-a082bfc32901 2019-12-21 22:24:11.18539 24819 364 Transfer \N \N 1 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-12-21\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.78.168 86e0cc87-95a0-4ce0-a318-caac7151949a 2019-12-21 22:24:30.098703 24820 364 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-21\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.78.168 29d01b42-a4f8-42b4-bbd7-ecc3e63d17a7 2019-12-21 22:24:49.00757 24821 810 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 10 \N 187.149.78.168 29d01b42-a4f8-42b4-bbd7-ecc3e63d17a7 2019-12-21 22:24:49.02304 24822 1789 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 690\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.39E2\ntotal: !ruby/object:BigDecimal 18:0.43E3\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-898\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 dc6eed50-64de-4f6f-b4bc-c7a3d71b34c8 2019-12-21 22:25:20.181442 24823 1156 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 187.149.78.168 dc6eed50-64de-4f6f-b4bc-c7a3d71b34c8 2019-12-21 22:25:20.217104 24825 2476 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 690\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.43E3\nmove_type: '1'\nsale_id: 1789\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-898\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.43E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-898 187.149.78.168 a780b9fd-8f51-45e4-bcbd-a1cc472748b5 2019-12-21 22:25:26.170042 24826 1413 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.78.168 c3984514-4c19-4786-ad3c-291a48f397a9 2019-12-21 22:27:02.711578 24827 1413 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.78.168 fa4ac43f-6fcb-493b-8aa2-300ffddf3090 2019-12-21 22:27:06.280952 24828 365 Transfer \N \N 1 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-12-21\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.78.168 0c7fa7ab-f7bb-41cb-b54e-bc010eb8de7d 2019-12-21 22:27:16.013576 24829 365 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-21\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.78.168 e9b89fdc-7890-4d65-b1cc-0c6276652f9d 2019-12-21 22:27:46.137561 24830 1461 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 960\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 e9b89fdc-7890-4d65-b1cc-0c6276652f9d 2019-12-21 22:27:46.15758 24831 2477 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 426\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1077\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 d045702f-91f1-408c-bfce-e96af4a890f6 2019-12-21 22:34:19.763071 24832 2477 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 426\n- 690\n 2 movimiento de efectivo por venta con folio PV3-V-29 187.149.78.168 d045702f-91f1-408c-bfce-e96af4a890f6 2019-12-21 22:34:19.787147 24833 2478 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 426\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.99E3\nmove_type: '1'\nsale_id: 1077\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CREDITO SAM\n 1 \N 187.149.78.168 4573f4bb-4d28-4bac-8376-3adaf1c3cca6 2019-12-21 22:34:51.210467 24834 1077 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.78.168 4573f4bb-4d28-4bac-8376-3adaf1c3cca6 2019-12-21 22:34:51.231649 24835 2478 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 426\n- 690\n 2 movimiento de efectivo por venta con folio PV3-V-29 187.149.78.168 4573f4bb-4d28-4bac-8376-3adaf1c3cca6 2019-12-21 22:34:51.245414 24836 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 21:37:27.733774000 Z\n- &1 2019-12-21 22:07:34.513674000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 22:43:14.516632437 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1152\n- 1153\n 2306 \N 189.186.59.52 f5ff2be3-8fd8-4cd6-a3be-75b9189aaba3 2019-12-21 22:43:14.524567 24837 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ynjunjsScgFFmmq5x4Ma\n- SS8wpmNQoLptaANXdQai\n 2307 \N 189.186.59.52 f5ff2be3-8fd8-4cd6-a3be-75b9189aaba3 2019-12-21 22:43:14.540302 24838 215 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-92\namount: !ruby/object:BigDecimal 18:0.10495E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.10495E4\nobservations: ''\npurchase_date: 2019-12-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-92 por $ 1049.5 MXN creada. 189.186.59.52 07eea9fa-b1f4-4adc-bd16-53cee8ad76a1 2019-12-21 22:44:22.073581 24839 1462 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 953\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.52 07eea9fa-b1f4-4adc-bd16-53cee8ad76a1 2019-12-21 22:44:22.100139 24840 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 22:07:34.513674000 Z\n- &1 2019-12-21 22:43:14.516632000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 22:50:09.796892727 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1153\n- 1154\n 2308 \N 187.149.78.168 2886f476-e799-45ba-92b3-f792b9ff0158 2019-12-21 22:50:09.806195 24841 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SS8wpmNQoLptaANXdQai\n- 5zWkD6soXC3SBJUMiEQv\n 2309 \N 187.149.78.168 2886f476-e799-45ba-92b3-f792b9ff0158 2019-12-21 22:50:09.826626 24842 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 20:56:34.560175000 Z\n- &1 2019-12-21 21:18:05.125416000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 22:50:51.104106117 Z\nsign_in_count:\n- 62\n- 63\n 126 \N 187.149.78.168 9ed57169-ffc7-435c-875a-baf3a86fa8e9 2019-12-21 22:50:51.110267 24843 26 User \N \N 26 User \N update ---\nunique_session_id:\n- y42yz3GWuf-xAEsCNjym\n- bEM9LzfN84VRjYF1yHU_\n 127 \N 187.149.78.168 9ed57169-ffc7-435c-875a-baf3a86fa8e9 2019-12-21 22:50:51.122489 24844 1790 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 690\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.55E2\ntotal: !ruby/object:BigDecimal 18:0.494E3\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-899\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 7c2986dc-5ac8-408d-81ad-c2303e132eb1 2019-12-21 22:51:57.308515 24845 1443 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.78.168 7c2986dc-5ac8-408d-81ad-c2303e132eb1 2019-12-21 22:51:57.333498 24846 1790 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 07bd56a3-c025-4748-ba20-8612f645b9e1 2019-12-21 22:52:04.907276 24920 1460 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.59.52 6e1ec08a-37c8-44ee-afee-31e153c4aa38 2019-12-22 00:43:21.737021 44682 1505 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1505'\n is_parent: false\n sku: BLU-1505\n name: BLS-0157\n description: PLAYERA NEGRA CON PEDRERIA LC\n price_base: '209.0'\n price_sale: '529.0'\n img_product: FB007931-2CD9-4473-B974-81AEB284E2B1.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001505'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 21:05:05.037245'\n updated_at: &12 2020-11-03 21:25:37.446477172 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1505'\n sku: BLU-1505\n name: BLS-0157\n description: PLAYERA NEGRA CON PEDRERIA LC\n price_base: '209.00'\n price_sale: '529.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 21:05:05.037245'\n updated_at: '2020-11-03 21:05:05.079937'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001505'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1505'\n type: *3\n value: 1505\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1505\n type: *7\n value: BLU-1505\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0157\n type: *8\n value: BLS-0157\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PLAYERA NEGRA CON PEDRERIA LC\n type: *6\n value: PLAYERA NEGRA CON PEDRERIA LC\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '209.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.209E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '529.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.529E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: FB007931-2CD9-4473-B974-81AEB284E2B1.jpeg\n type: *2\n value: FB007931-2CD9-4473-B974-81AEB284E2B1.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001505'\n type: *2\n value: '0001505'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 21:05:05.037245'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- FB007931-2CD9-4473-B974-81AEB284E2B1.jpeg\n 3 El producto BLU-1505 fue modificado. 187.149.136.226 1df1cacd-ff57-4c32-af52-2149ba1221d8 2020-11-03 21:25:37.487805 24847 2479 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 690\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.494E3\nmove_type: '1'\nsale_id: 1790\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-899\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.494E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-899 187.149.78.168 07bd56a3-c025-4748-ba20-8612f645b9e1 2019-12-21 22:52:04.927705 24848 1791 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 687\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.74E3\ntotal: !ruby/object:BigDecimal 18:0.59E2\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-704\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 8ab5a1d1-ea72-4d2d-8a64-05453e5563ba 2019-12-21 22:52:08.153043 24849 1090 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.78.168 8ab5a1d1-ea72-4d2d-8a64-05453e5563ba 2019-12-21 22:52:08.180139 24850 1791 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 0f1516b5-dd55-4e3a-89dd-dce39736f14b 2019-12-21 22:52:13.117235 24851 2480 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 687\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.59E2\nmove_type: '1'\nsale_id: 1791\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-704\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.74E3\nchange: !ruby/object:BigDecimal 18:0.681E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-704 187.149.78.168 0f1516b5-dd55-4e3a-89dd-dce39736f14b 2019-12-21 22:52:13.136132 24852 2480 CashRegistersMove \N \N 26 User \N destroy ---\nopen_cash_register_id: 687\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.59E2\nmove_type: '1'\nsale_id: 1791\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-704\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.74E3\nchange: !ruby/object:BigDecimal 18:0.681E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 25632095-96ae-4d5f-ac54-0947bf26e948 2019-12-21 22:52:19.544517 24853 1791 Sale \N \N 26 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-704 cancelada. 187.149.78.168 2768fe3f-e904-4774-ae1e-25d6d4e3962b 2019-12-21 22:52:42.085854 24854 1090 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 187.149.78.168 2768fe3f-e904-4774-ae1e-25d6d4e3962b 2019-12-21 22:52:42.108858 24855 1792 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 687\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.59E2\ntotal: !ruby/object:BigDecimal 18:0.74E3\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-705\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 fce833bc-220d-41b4-adcf-6024733fd87e 2019-12-21 22:53:15.029323 24856 1090 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 187.149.78.168 fce833bc-220d-41b4-adcf-6024733fd87e 2019-12-21 22:53:15.054193 24857 1792 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 212997fe-8b04-477e-b5b0-e82eaa62bd59 2019-12-21 22:53:30.465476 24858 2481 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 687\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.74E3\nmove_type: '1'\nsale_id: 1792\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-705\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-705 187.149.78.168 212997fe-8b04-477e-b5b0-e82eaa62bd59 2019-12-21 22:53:30.485366 24859 1793 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 690\namount: !ruby/object:BigDecimal 18:0.1698E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.27E3\ntotal: !ruby/object:BigDecimal 18:0.1428E4\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-900\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 697c1f0f-e7bc-4812-a579-7917e9afa720 2019-12-21 22:57:27.275386 24860 810 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 11 \N 187.149.78.168 697c1f0f-e7bc-4812-a579-7917e9afa720 2019-12-21 22:57:27.300394 24861 1461 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.78.168 697c1f0f-e7bc-4812-a579-7917e9afa720 2019-12-21 22:57:27.321465 24862 1793 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 50f8c93a-0235-4f70-ac13-362d9e67e8f9 2019-12-21 22:58:05.99018 24863 2482 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 690\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.1458E4\nmove_type: '1'\nsale_id: 1793\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-900\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: SC9B\ncustomer_account: '1064059428227'\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-900 187.149.78.168 50f8c93a-0235-4f70-ac13-362d9e67e8f9 2019-12-21 22:58:06.010076 24864 1794 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 687\namount: !ruby/object:BigDecimal 18:0.2097E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.335E3\ntotal: !ruby/object:BigDecimal 18:0.1762E4\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-706\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 ed0723ea-13fe-4927-abe6-34409496ab37 2019-12-21 23:01:00.387248 24865 1126 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.78.168 ed0723ea-13fe-4927-abe6-34409496ab37 2019-12-21 23:01:00.41498 24866 1281 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 187.149.78.168 ed0723ea-13fe-4927-abe6-34409496ab37 2019-12-21 23:01:00.439971 24867 1090 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 187.149.78.168 ed0723ea-13fe-4927-abe6-34409496ab37 2019-12-21 23:01:00.46388 24868 1794 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 98ccc87d-4aa6-4fa1-bda0-b688869f2e42 2019-12-21 23:01:13.45534 24921 1460 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.59.52 9c358d44-6014-4832-a9c6-c35f6d892a57 2019-12-22 00:43:24.749577 24922 1468 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.59.52 707cc128-9474-4f18-8cd2-faa67e0697a3 2019-12-22 00:43:41.752924 24869 2483 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 687\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1762E4\nmove_type: '1'\nsale_id: 1794\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-706\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '12345'\n 1 movimiento de efectivo por venta con folio PV2-V-706 187.149.78.168 98ccc87d-4aa6-4fa1-bda0-b688869f2e42 2019-12-21 23:01:13.47781 24870 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 22:43:14.516632000 Z\n- &1 2019-12-21 22:50:09.796892000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 23:03:15.945649802 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1154\n- 1155\n 2310 \N 187.149.78.168 1406214a-344b-4e01-85c1-45686e02449f 2019-12-21 23:03:15.952199 24871 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5zWkD6soXC3SBJUMiEQv\n- 7CR5gdKncnWzZHdY5HfU\n 2311 \N 187.149.78.168 1406214a-344b-4e01-85c1-45686e02449f 2019-12-21 23:03:15.967166 24872 1795 Sale \N \N 2 User \N create ---\ncustomer_id: 20\nuser_id: 2\nopen_cash_register_id: 690\namount: !ruby/object:BigDecimal 18:0.3398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3398E4\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-901\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 9e22dd54-9525-4789-9073-f3d1ce7a9d9a 2019-12-21 23:10:27.026345 24873 1462 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.78.168 9e22dd54-9525-4789-9073-f3d1ce7a9d9a 2019-12-21 23:10:27.052974 24874 1045 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 187.149.78.168 9e22dd54-9525-4789-9073-f3d1ce7a9d9a 2019-12-21 23:10:27.080495 24875 25 ProductsReturn \N \N 21 User \N create ---\nsale_id: 1759\nuser_id: 21\nreturn_code: PV3-D-3\npointsale_id: 3\nnew_amount: !ruby/object:BigDecimal 18:0.819E3\nreturned_amount: !ruby/object:BigDecimal 18:0.759E3\ndifference_amount: !ruby/object:BigDecimal 18:0.6E2\nis_money_returned: false\n 1 devolución PV3-D-3 creada. 189.186.59.52 176be607-2920-4e6f-bcb8-250e735d3038 2019-12-21 23:33:21.38204 24876 1265 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.59.52 176be607-2920-4e6f-bcb8-250e735d3038 2019-12-21 23:33:21.401701 24877 1152 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.59.52 176be607-2920-4e6f-bcb8-250e735d3038 2019-12-21 23:33:21.420436 24878 939 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.37E2\n- !ruby/object:BigDecimal 18:0.36E2\n 3 \N 189.186.59.52 176be607-2920-4e6f-bcb8-250e735d3038 2019-12-21 23:33:21.437568 24879 2484 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 691\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E2\nmove_type: '1'\nsale_id: 1759\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.14E3\nproducts_return_id: 25\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV3-D-3 189.186.59.52 26336e99-409a-401a-ae57-99ba539c2382 2019-12-21 23:33:36.512183 24880 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-17 21:09:54.849122000 Z\n- &1 2019-10-19 16:31:59.346580000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 23:41:48.955272314 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 71\n- 72\n 147 \N 187.149.78.168 bde91489-7ab2-48b1-a236-6e990b43a9ce 2019-12-21 23:41:48.961998 24881 8 User \N \N 8 User \N update ---\nunique_session_id:\n- fosyuKjzQJojn3GJXTsz\n- s3r_ksV7Xpq7xLDzqrdu\n 148 \N 187.149.78.168 bde91489-7ab2-48b1-a236-6e990b43a9ce 2019-12-21 23:41:48.975325 24882 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 22:50:09.796892000 Z\n- &1 2019-12-21 23:03:15.945649000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 23:42:47.026382081 Z\nsign_in_count:\n- 1155\n- 1156\n 2312 \N 187.149.78.168 1f923c92-8fcb-45a5-9d83-075cdf79fa0a 2019-12-21 23:42:47.032075 24883 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7CR5gdKncnWzZHdY5HfU\n- V_GxJyUFqGUwnGeKqRKe\n 2313 \N 187.149.78.168 1f923c92-8fcb-45a5-9d83-075cdf79fa0a 2019-12-21 23:42:47.045587 24884 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 23:03:15.945649000 Z\n- &1 2019-12-21 23:42:47.026382000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-21 23:46:29.484081624 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1156\n- 1157\n 2314 \N 189.186.59.52 39652999-3346-4fb7-bef2-503d416323ad 2019-12-21 23:46:29.490789 24885 4 User \N \N 4 User \N update ---\nunique_session_id:\n- V_GxJyUFqGUwnGeKqRKe\n- GkzdH_gAomGajNSGAqmF\n 2315 \N 189.186.59.52 39652999-3346-4fb7-bef2-503d416323ad 2019-12-21 23:46:29.506366 24886 1796 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 687\namount: !ruby/object:BigDecimal 18:0.459E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.459E3\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-707\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 596f740e-e552-44bc-ba81-035559d018e0 2019-12-22 00:00:49.834239 24887 1147 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.78.168 596f740e-e552-44bc-ba81-035559d018e0 2019-12-22 00:00:49.859025 24888 1796 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 977164f2-c2b5-468b-bba5-45d5c0251f4b 2019-12-22 00:01:20.738578 24889 2485 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 687\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.459E3\nmove_type: '1'\nsale_id: 1796\ncardnumber: 3994\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-707\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-707 187.149.78.168 977164f2-c2b5-468b-bba5-45d5c0251f4b 2019-12-22 00:01:20.758679 24890 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-19 18:42:38.316677000 Z\n- &1 2019-12-21 19:31:18.188835000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 00:16:57.774091891 Z\nsign_in_count:\n- 129\n- 130\n 260 \N 187.149.78.168 88de8e4d-84c6-4950-b6a6-0047ccb34df9 2019-12-22 00:16:57.791074 24891 1 User \N \N 1 User \N update ---\nunique_session_id:\n- FownprgX6Vz-cdpVQoJd\n- pPLux-9d4LE54espr_8N\n 261 \N 187.149.78.168 88de8e4d-84c6-4950-b6a6-0047ccb34df9 2019-12-22 00:16:57.808162 24923 1468 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.59.52 0fea2942-d51a-4f39-a2c9-8c633d872764 2019-12-22 00:43:44.523876 24892 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 23:42:47.026382000 Z\n- &1 2019-12-21 23:46:29.484081000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 00:22:55.334607058 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1157\n- 1158\n 2316 \N 187.149.78.168 21eed82c-2339-477e-bf1c-0a5422abf32f 2019-12-22 00:22:55.342356 24893 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GkzdH_gAomGajNSGAqmF\n- Pg2LH1nR9Ccu-G6UKnYR\n 2317 \N 187.149.78.168 21eed82c-2339-477e-bf1c-0a5422abf32f 2019-12-22 00:22:55.359864 24894 1286 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.59.52 1732a144-cf51-4083-95cf-83b7b1b564c4 2019-12-22 00:23:52.291308 24895 1286 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.59.52 d494ca3c-3823-4838-9b74-a111dfb27e41 2019-12-22 00:23:55.574634 24896 1094 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.59.52 01682f5e-eb90-4a2e-849a-ca9039dbf4e9 2019-12-22 00:24:43.427256 24897 1094 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.59.52 c0a174c2-2265-415c-9b3f-74a72c9e04c7 2019-12-22 00:24:46.392297 24898 1271 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 2 \N 189.186.59.52 7cb1c5f4-902b-4b90-9f3a-fca1538caf8a 2019-12-22 00:24:58.934536 24899 1271 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.59.52 e44a98cb-24d2-47cf-9d2c-1d78a7ed7be1 2019-12-22 00:25:01.64475 24900 366 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-12-21\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.59.52 4a1c7e81-e9a8-4347-af2e-2867428d654f 2019-12-22 00:25:08.559345 24901 361 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-21\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.59.52 26f9739a-81d0-4621-b7e8-43478d5cc790 2019-12-22 00:38:57.903781 24902 1431 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.59.52 26f9739a-81d0-4621-b7e8-43478d5cc790 2019-12-22 00:38:57.920248 24903 360 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-21\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.59.52 872f3043-fe93-4b5f-b13e-8845681458c5 2019-12-22 00:39:12.595134 24904 1463 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 49\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.52 872f3043-fe93-4b5f-b13e-8845681458c5 2019-12-22 00:39:12.615874 24905 1464 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 56\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.52 872f3043-fe93-4b5f-b13e-8845681458c5 2019-12-22 00:39:12.634144 24906 1465 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 439\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.52 872f3043-fe93-4b5f-b13e-8845681458c5 2019-12-22 00:39:12.651901 24907 1466 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 449\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.52 872f3043-fe93-4b5f-b13e-8845681458c5 2019-12-22 00:39:12.66968 24908 1467 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 721\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.52 872f3043-fe93-4b5f-b13e-8845681458c5 2019-12-22 00:39:12.689805 24909 1094 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.59.52 4b4c954e-441c-4207-a66f-3849317915d5 2019-12-22 00:40:20.433238 24910 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 23:46:29.484081000 Z\n- &1 2019-12-22 00:22:55.334607000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 00:40:51.740882646 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1158\n- 1159\n 2318 \N 189.186.59.52 a012de68-56fc-44e2-ab6a-a042d5c9ff85 2019-12-22 00:40:51.748633 24911 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Pg2LH1nR9Ccu-G6UKnYR\n- xirA-hFjKvxJHZw1ah3p\n 2319 \N 189.186.59.52 a012de68-56fc-44e2-ab6a-a042d5c9ff85 2019-12-22 00:40:51.76637 24912 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-12-07 23:46:20.323771000 Z\n- &1 2019-12-14 19:10:41.041083000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 00:42:03.160535667 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 59\n- 60\n 120 \N 189.186.59.52 9934f71d-2bd4-4f21-bccf-f8c4cf12c972 2019-12-22 00:42:03.17291 24913 25 User \N \N 25 User \N update ---\nunique_session_id:\n- B52v-4smyYDqztvQZ-Ds\n- 8ioN-Hqy1QJ5AcoUJyyB\n 121 \N 189.186.59.52 9934f71d-2bd4-4f21-bccf-f8c4cf12c972 2019-12-22 00:42:03.193041 24914 366 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-21\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.59.52 9d82fecd-eb2d-4bcf-ac3c-40ec45b24dd7 2019-12-22 00:42:31.182254 24915 1460 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.59.52 9d82fecd-eb2d-4bcf-ac3c-40ec45b24dd7 2019-12-22 00:42:31.200522 24916 1468 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 757\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.52 9d82fecd-eb2d-4bcf-ac3c-40ec45b24dd7 2019-12-22 00:42:31.247307 24917 1469 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 893\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.52 9d82fecd-eb2d-4bcf-ac3c-40ec45b24dd7 2019-12-22 00:42:31.270517 24924 1469 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.59.52 f01157fc-7f65-4ae6-bfe5-5e4b76bfd9bb 2019-12-22 00:43:58.834549 24925 1469 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.59.52 dc04a93f-2b28-4aae-9b61-109cba68cf53 2019-12-22 00:44:02.522908 24926 367 Transfer \N \N 25 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-12-21\nuser_id: 25\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.59.52 0475b6f0-976d-413a-94e9-cec45a08a5c1 2019-12-22 00:44:03.671907 24927 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 00:22:55.334607000 Z\n- &1 2019-12-22 00:40:51.740882000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 00:55:57.884556010 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1159\n- 1160\n 2320 \N 187.149.78.168 f21b54ec-4ede-4f5e-b1ca-05394e240609 2019-12-22 00:55:57.89947 24928 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xirA-hFjKvxJHZw1ah3p\n- xH83RsxjwaQ6hYw5zQZh\n 2321 \N 187.149.78.168 f21b54ec-4ede-4f5e-b1ca-05394e240609 2019-12-22 00:55:57.925949 24929 1797 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 687\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-708\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 bb073132-c116-45cf-b302-1a1dec47c97e 2019-12-22 01:21:15.992293 24930 1374 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 3 \N 187.149.78.168 bb073132-c116-45cf-b302-1a1dec47c97e 2019-12-22 01:21:16.025781 24931 1797 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-708 cancelada. 187.149.78.168 a8acb352-488e-4443-92fd-bec025562df6 2019-12-22 01:21:26.348395 24932 1374 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.8E1\n 4 \N 187.149.78.168 a8acb352-488e-4443-92fd-bec025562df6 2019-12-22 01:21:26.371779 24933 1798 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 687\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.549E2\ntotal: !ruby/object:BigDecimal 18:0.4941E3\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-709\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 069d35c3-df81-4424-83b0-1ba91d0ca97c 2019-12-22 01:22:09.327586 24934 1374 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 5 \N 187.149.78.168 069d35c3-df81-4424-83b0-1ba91d0ca97c 2019-12-22 01:22:09.357463 24935 1798 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 6f1c0abe-280a-487d-ac10-2ff82138c69a 2019-12-22 01:22:23.116202 24936 2486 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 687\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4941E3\nmove_type: '1'\nsale_id: 1798\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-709\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.1059E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-709 187.149.78.168 6f1c0abe-280a-487d-ac10-2ff82138c69a 2019-12-22 01:22:23.146513 24937 1799 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 687\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2E3\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-710\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 bbc097f2-77b8-4489-9534-988ed1247a79 2019-12-22 01:32:13.359999 24938 1125 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 187.149.78.168 bbc097f2-77b8-4489-9534-988ed1247a79 2019-12-22 01:32:13.387284 24939 1799 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 5720bfb9-ceb2-46a9-9186-5d79bc1404c7 2019-12-22 01:33:21.497505 24940 2487 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 687\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 1799\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-710\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-710 187.149.78.168 5720bfb9-ceb2-46a9-9186-5d79bc1404c7 2019-12-22 01:33:21.522762 24941 1800 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 687\namount: !ruby/object:BigDecimal 18:0.1688E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1199E3\ntotal: !ruby/object:BigDecimal 18:0.15681E4\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-711\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 cb86d52a-31aa-419a-a60d-84326075320d 2019-12-22 01:36:35.426914 24942 651 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 187.149.78.168 cb86d52a-31aa-419a-a60d-84326075320d 2019-12-22 01:36:35.458964 24943 1412 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 5 \N 187.149.78.168 cb86d52a-31aa-419a-a60d-84326075320d 2019-12-22 01:36:35.483652 24944 1800 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 ac46e2a3-5a40-47b5-a8c3-c5c371ed24b1 2019-12-22 01:36:53.717057 24945 2488 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 687\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15681E4\nmove_type: '1'\nsale_id: 1800\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-711\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.319E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-711 187.149.78.168 ac46e2a3-5a40-47b5-a8c3-c5c371ed24b1 2019-12-22 01:36:53.747042 24946 1377 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.78.168 f72237ae-eb74-426b-8950-abcec332f8f5 2019-12-22 02:00:33.027747 24971 1389 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.59.52 ef320ba5-46cb-4e95-bfd9-d7686991d93c 2019-12-22 03:02:41.978111 24947 1801 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 687\namount: !ruby/object:BigDecimal 18:0.449E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.449E2\ntotal: !ruby/object:BigDecimal 18:0.4041E3\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-712\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 1e61b5e9-0b77-421c-93a0-0f06b72eaab5 2019-12-22 02:04:39.891577 24948 1450 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.78.168 1e61b5e9-0b77-421c-93a0-0f06b72eaab5 2019-12-22 02:04:39.916961 24949 1801 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 4ed2e2a5-a585-4cc2-b712-b72e2f0e3787 2019-12-22 02:04:46.262582 24950 2489 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 687\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.4041E3\nmove_type: '1'\nsale_id: 1801\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-712\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4041E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-712 187.149.78.168 4ed2e2a5-a585-4cc2-b712-b72e2f0e3787 2019-12-22 02:04:46.284971 24951 368 Transfer \N \N 1 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-12-21\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.78.168 16d44bb7-d2c3-42d9-a277-b87adfabaac6 2019-12-22 02:05:12.665149 24952 368 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-21\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.78.168 f23a7218-b9d2-46e7-a7d7-1a7540c12770 2019-12-22 02:06:27.819083 24953 1273 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 187.149.78.168 f23a7218-b9d2-46e7-a7d7-1a7540c12770 2019-12-22 02:06:27.835728 24954 1802 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 690\namount: !ruby/object:BigDecimal 18:0.1629E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.169E3\ntotal: !ruby/object:BigDecimal 18:0.146E4\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-902\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 97845979-ebac-4216-b504-fe486750cc36 2019-12-22 02:08:51.588401 24955 1273 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 187.149.78.168 97845979-ebac-4216-b504-fe486750cc36 2019-12-22 02:08:51.615281 24956 1802 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 4dafb584-b03e-486a-a03c-62797fc4f07b 2019-12-22 02:09:36.528177 24957 2490 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 690\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.146E4\nmove_type: '1'\nsale_id: 1802\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-902\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.146E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-902 187.149.78.168 4dafb584-b03e-486a-a03c-62797fc4f07b 2019-12-22 02:09:36.550289 24958 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 00:40:51.740882000 Z\n- &1 2019-12-22 00:55:57.884556000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 02:35:40.061862714 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1160\n- 1161\n 2322 \N 187.149.78.168 772e8c5d-c93b-4ae8-8ab0-77a6f5d793eb 2019-12-22 02:35:40.073693 24959 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xH83RsxjwaQ6hYw5zQZh\n- "-LV52F1sCv__REQUDKwA"\n 2323 \N 187.149.78.168 772e8c5d-c93b-4ae8-8ab0-77a6f5d793eb 2019-12-22 02:35:40.10068 24960 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-20 17:06:18.872134000 Z\n- &1 2019-12-21 17:35:38.691182000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 02:39:25.985539588 Z\nsign_in_count:\n- 410\n- 411\n 825 \N 187.149.78.168 ccc4b4cc-0b58-4ee1-a28b-a1ffc6d927bf 2019-12-22 02:39:25.990951 24961 2 User \N \N 2 User \N update ---\nunique_session_id:\n- cVyu9zofMdX_EnbjXWd2\n- LNciqq6ExkZcY6sPYNyk\n 826 \N 187.149.78.168 ccc4b4cc-0b58-4ee1-a28b-a1ffc6d927bf 2019-12-22 02:39:26.003348 24962 1803 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 691\namount: !ruby/object:BigDecimal 18:0.1629E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3258E3\ntotal: !ruby/object:BigDecimal 18:0.13032E4\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-187\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 ea967ca7-695b-44f7-8762-eb587e000613 2019-12-22 02:55:19.849375 24963 1389 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.59.52 ea967ca7-695b-44f7-8762-eb587e000613 2019-12-22 02:55:19.875887 24964 696 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 690\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.130552E5\namount_out: !ruby/object:BigDecimal 18:0.44E2\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.6722E4\ncash_fund: !ruby/object:BigDecimal 18:0.1237E4\nphysical_cash: !ruby/object:BigDecimal 18:0.7959E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.78.168 9abd3646-8ffe-483e-8616-a84bb3e77c16 2019-12-22 02:57:11.704733 24965 690 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 9abd3646-8ffe-483e-8616-a84bb3e77c16 2019-12-22 02:57:11.717908 24966 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 17:35:38.691182000 Z\n- &1 2019-12-22 02:39:25.985539000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 03:00:25.615019258 Z\nsign_in_count:\n- 411\n- 412\n 827 \N 187.149.78.168 6df59916-669b-4f73-85eb-82374f7d5be2 2019-12-22 03:00:25.620962 24967 2 User \N \N 2 User \N update ---\nunique_session_id:\n- LNciqq6ExkZcY6sPYNyk\n- GxR_93CNzrpt946CDmH6\n 828 \N 187.149.78.168 6df59916-669b-4f73-85eb-82374f7d5be2 2019-12-22 03:00:25.634364 24968 1803 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-187 cancelada. 189.186.59.52 3eb36aba-6aae-412a-8514-fa64b7676552 2019-12-22 03:01:39.089553 24969 1389 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.59.52 3eb36aba-6aae-412a-8514-fa64b7676552 2019-12-22 03:01:39.112374 24970 1804 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 691\namount: !ruby/object:BigDecimal 18:0.2428E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.4856E3\ntotal: !ruby/object:BigDecimal 18:0.19424E4\nstatus: 0\ndate_sale: 2019-12-21\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-188\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 ef320ba5-46cb-4e95-bfd9-d7686991d93c 2019-12-22 03:02:41.952094 24972 1094 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.59.52 ef320ba5-46cb-4e95-bfd9-d7686991d93c 2019-12-22 03:02:41.999841 24973 1804 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 f03f9a0b-3a34-474b-8436-46f2a994a3e9 2019-12-22 03:03:04.360333 24974 2491 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 691\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.19424E4\nmove_type: '1'\nsale_id: 1804\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-188\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.576E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-188 189.186.59.52 f03f9a0b-3a34-474b-8436-46f2a994a3e9 2019-12-22 03:03:04.381316 24975 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 00:55:57.884556000 Z\n- &1 2019-12-22 02:35:40.061862000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 03:04:21.714995837 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1161\n- 1162\n 2324 \N 189.186.59.52 e4415d27-39a4-4bec-a2d8-a54687340d6f 2019-12-22 03:04:21.72212 24976 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-LV52F1sCv__REQUDKwA"\n- khCbJyjDKRcc6tK-QQ5h\n 2325 \N 189.186.59.52 e4415d27-39a4-4bec-a2d8-a54687340d6f 2019-12-22 03:04:21.738598 24977 697 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 687\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.1732245E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.1379E5\ncash_fund: !ruby/object:BigDecimal 27:0.14004500000000007E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1519045E5\nobservations: SOBRANTE $1074\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.78.168 c5de2ae4-3f37-4871-8ecb-421e2449e61c 2019-12-22 03:14:32.403623 24978 687 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 c5de2ae4-3f37-4871-8ecb-421e2449e61c 2019-12-22 03:14:32.417855 24979 698 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 691\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.30124E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.821E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3821E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.59.52 9b1b3929-4a28-4a83-a6ce-12e62006acaf 2019-12-22 03:33:58.487199 24980 691 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.59.52 9b1b3929-4a28-4a83-a6ce-12e62006acaf 2019-12-22 03:33:58.503436 24981 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 02:35:40.061862000 Z\n- &1 2019-12-22 03:04:21.714995000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 03:39:28.220639963 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934333\n mask_addr: 4294967295\nsign_in_count:\n- 1162\n- 1163\n 2326 \N 200.68.135.125 a8c2be00-719d-4b2c-a1c0-7fdc85b54fba 2019-12-22 03:39:28.228865 24982 4 User \N \N 4 User \N update ---\nunique_session_id:\n- khCbJyjDKRcc6tK-QQ5h\n- deEygfydz3dvZ7azaN5k\n 2327 \N 200.68.135.125 a8c2be00-719d-4b2c-a1c0-7fdc85b54fba 2019-12-22 03:39:28.246362 24983 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-19 17:11:53.287970000 Z\n- &1 2019-12-20 17:07:29.311079000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 17:04:45.450782956 Z\nsign_in_count:\n- 51\n- 52\n 104 \N 187.149.78.168 56b55e93-9030-4ab1-9cc6-c75439ba78bb 2019-12-22 17:04:45.491162 24984 27 User \N \N 27 User \N update ---\nunique_session_id:\n- _aeMqhbp-6cMHUXBSsmC\n- 6Ews8yc7S-iAbqHFyFFu\n 105 \N 187.149.78.168 56b55e93-9030-4ab1-9cc6-c75439ba78bb 2019-12-22 17:04:45.523527 24985 692 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.140045E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1400.45 187.149.78.168 4f9da258-fc82-4d25-94fa-8b461cd95781 2019-12-22 17:08:12.279749 24986 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 21:13:36.924196000 Z\n- &1 2019-12-21 22:24:11.166655000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 17:09:34.962469658 Z\nsign_in_count:\n- 99\n- 100\n 200 \N 187.149.78.168 902d7ac0-a724-4ad5-b082-113a4bc28415 2019-12-22 17:09:34.968303 24987 9 User \N \N 9 User \N update ---\nunique_session_id:\n- gzvhiS1XyEV1gfUQfsnu\n- DhnsHuB8s2zzMiUJet7x\n 201 \N 187.149.78.168 902d7ac0-a724-4ad5-b082-113a4bc28415 2019-12-22 17:09:34.981764 24988 693 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.1237E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1237.0 187.149.78.168 0d9817d4-de8b-4cd9-be74-acd4324f1067 2019-12-22 17:09:40.544935 24989 1805 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 693\namount: !ruby/object:BigDecimal 18:0.2117E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2117E4\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-903\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 45484436-17bb-4eb6-bcf1-5857fddb1160 2019-12-22 18:03:43.710722 24990 1369 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.78.168 45484436-17bb-4eb6-bcf1-5857fddb1160 2019-12-22 18:03:43.749869 24991 1315 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.78.168 45484436-17bb-4eb6-bcf1-5857fddb1160 2019-12-22 18:03:43.794976 24992 1461 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.78.168 45484436-17bb-4eb6-bcf1-5857fddb1160 2019-12-22 18:03:43.820941 24993 1805 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 9a891c0c-536b-45a2-a389-d2e8d5f5413e 2019-12-22 18:03:58.957417 24994 2492 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 693\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2117E4\nmove_type: '1'\nsale_id: 1805\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-903\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2117E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-903 187.149.78.168 9a891c0c-536b-45a2-a389-d2e8d5f5413e 2019-12-22 18:03:58.979183 25016 637 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.59.52 f74a4a45-d24c-449e-9c41-b2185c46dbc1 2019-12-22 18:44:45.979512 25038 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Yhte3gMEyU5axN6yK68q\n- NnVyMR-bFYsseYPiC867\n 2337 \N 189.186.59.52 36b16d7a-e1c2-4bb3-be34-362dd0cd6f91 2019-12-22 19:01:07.908971 24995 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 03:04:21.714995000 Z\n- &1 2019-12-22 03:39:28.220639000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 18:14:38.271192198 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934333\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934333\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1163\n- 1164\n 2328 \N 189.186.59.52 f5de13a9-b4a3-418c-a5e8-ad60391dc9f9 2019-12-22 18:14:38.278353 24996 4 User \N \N 4 User \N update ---\nunique_session_id:\n- deEygfydz3dvZ7azaN5k\n- J4KsZu3CX3Kca91xjzUK\n 2329 \N 189.186.59.52 f5de13a9-b4a3-418c-a5e8-ad60391dc9f9 2019-12-22 18:14:38.295973 24997 1806 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 693\namount: !ruby/object:BigDecimal 18:0.949E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.949E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-904\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 d8f9c9a4-cbd9-44ea-a291-949b52adaf5c 2019-12-22 18:29:14.202253 24998 1410 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.78.168 d8f9c9a4-cbd9-44ea-a291-949b52adaf5c 2019-12-22 18:29:14.227345 24999 1806 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 560f331d-3a1d-4924-b93d-207c248030f8 2019-12-22 18:29:18.200305 25000 2493 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 693\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.949E3\nmove_type: '1'\nsale_id: 1806\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-904\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.949E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-904 187.149.78.168 560f331d-3a1d-4924-b93d-207c248030f8 2019-12-22 18:29:18.221415 25001 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-10-19 16:31:59.346580000 Z\n- &1 2019-12-21 23:41:48.955272000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 18:30:13.737953492 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 72\n- 73\n 149 \N 187.149.78.168 7dcadec1-718a-405a-a46f-8831a9fe17fb 2019-12-22 18:30:13.744957 25002 8 User \N \N 8 User \N update ---\nunique_session_id:\n- s3r_ksV7Xpq7xLDzqrdu\n- x3xyoMmEV_ZDBxA3PyD_\n 150 \N 187.149.78.168 7dcadec1-718a-405a-a46f-8831a9fe17fb 2019-12-22 18:30:13.758881 25003 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 22:24:11.166655000 Z\n- &1 2019-12-22 17:09:34.962469000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 18:30:53.522024370 Z\nsign_in_count:\n- 100\n- 101\n 202 \N 187.149.78.168 f745d5f4-27fe-471d-8bbc-dcd23a0607ca 2019-12-22 18:30:53.527905 25004 9 User \N \N 9 User \N update ---\nunique_session_id:\n- DhnsHuB8s2zzMiUJet7x\n- pkf9A6XkCwjfRYGVQu8Q\n 203 \N 187.149.78.168 f745d5f4-27fe-471d-8bbc-dcd23a0607ca 2019-12-22 18:30:53.539453 25005 1807 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 693\namount: !ruby/object:BigDecimal 18:0.1629E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1629E4\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-905\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 548941b0-9d02-4a71-8c19-120b1e729957 2019-12-22 18:33:16.094167 25006 1273 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 187.149.78.168 548941b0-9d02-4a71-8c19-120b1e729957 2019-12-22 18:33:16.128296 25007 1807 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 f7e203e1-db40-455a-b110-0ec34a55d27c 2019-12-22 18:35:04.15702 25008 2494 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 693\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1166E4\nmove_type: '1'\nsale_id: 1807\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-905\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-905 187.149.78.168 f7e203e1-db40-455a-b110-0ec34a55d27c 2019-12-22 18:35:04.178106 25009 2494 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 693\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1166E4\nmove_type: '1'\nsale_id: 1807\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-905\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 80870bf6-6f8a-4cb0-b034-1eced01d9f41 2019-12-22 18:35:17.95725 25010 2495 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 693\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1629E4\nmove_type: '1'\nsale_id: 1807\ncardnumber: 1235\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-905\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-905 187.149.78.168 6235cbc3-aef6-4edc-b72e-cb137ff47a4c 2019-12-22 18:35:28.123231 25011 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 03:39:28.220639000 Z\n- &1 2019-12-22 18:14:38.271192000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 18:37:02.427988042 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934333\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1164\n- 1165\n 2330 \N 187.149.78.168 a99fd996-7495-4313-a91a-7f67481acae8 2019-12-22 18:37:02.43513 25012 4 User \N \N 4 User \N update ---\nunique_session_id:\n- J4KsZu3CX3Kca91xjzUK\n- 13xjZiHsrXR-vohPnf-4\n 2331 \N 187.149.78.168 a99fd996-7495-4313-a91a-7f67481acae8 2019-12-22 18:37:02.450669 25013 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 18:14:38.271192000 Z\n- &1 2019-12-22 18:37:02.427988000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 18:37:23.558583939 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1165\n- 1166\n 2332 \N 189.186.59.52 bf677ce0-fc65-471e-98a3-1f66c410b2aa 2019-12-22 18:37:23.565996 25014 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 13xjZiHsrXR-vohPnf-4\n- Zc2Z1DsZYWJip45p-mFy\n 2333 \N 189.186.59.52 bf677ce0-fc65-471e-98a3-1f66c410b2aa 2019-12-22 18:37:23.581466 25015 637 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.59.52 0dac7c46-77ef-4ef3-bbfa-7901e60f6fae 2019-12-22 18:44:43.273404 25017 1808 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 692\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-713\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 d978dc32-bcda-4178-bbb6-547cebb23d3f 2019-12-22 18:44:46.472488 25018 860 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 187.149.78.168 d978dc32-bcda-4178-bbb6-547cebb23d3f 2019-12-22 18:44:46.498515 25019 1808 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 5a85def8-5939-491d-a9b4-adb1362ca919 2019-12-22 18:44:54.408258 25020 2496 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 692\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.789E3\nmove_type: '1'\nsale_id: 1808\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-713\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.789E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-713 187.149.78.168 5a85def8-5939-491d-a9b4-adb1362ca919 2019-12-22 18:44:54.428186 25021 1411 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 7 \N 189.186.59.52 a4b95889-e9d6-4aa2-bcdc-6eabacb26e1e 2019-12-22 18:45:36.383221 25022 1411 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 189.186.59.52 2d5176f0-8aaf-48a4-a7c4-f5a3e353b6e1 2019-12-22 18:45:56.454727 25023 1411 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.7E1\n 9 \N 189.186.59.52 b46fb822-ace1-4c5c-8466-6fdfa22caf17 2019-12-22 18:45:57.471324 25024 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 18:37:02.427988000 Z\n- &1 2019-12-22 18:37:23.558583000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 18:48:19.272973373 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1166\n- 1167\n 2334 \N 187.149.78.168 c8f66dc3-caf0-4728-b797-24e59df65955 2019-12-22 18:48:19.280159 25025 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Zc2Z1DsZYWJip45p-mFy\n- Yhte3gMEyU5axN6yK68q\n 2335 \N 187.149.78.168 c8f66dc3-caf0-4728-b797-24e59df65955 2019-12-22 18:48:19.297835 25026 1809 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 693\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.254E3\ntotal: !ruby/object:BigDecimal 18:0.595E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-906\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 3144a8e0-fd72-4c84-8a67-068fad4f5bb0 2019-12-22 18:54:33.319962 25027 1076 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.78.168 3144a8e0-fd72-4c84-8a67-068fad4f5bb0 2019-12-22 18:54:33.346781 25028 1809 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 15c84ab0-008e-4072-9e5c-1bb379ce990e 2019-12-22 18:54:50.672994 25029 2497 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 693\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.595E3\nmove_type: '1'\nsale_id: 1809\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-906\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.595E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-906 187.149.78.168 15c84ab0-008e-4072-9e5c-1bb379ce990e 2019-12-22 18:54:50.699379 25030 1810 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 692\namount: !ruby/object:BigDecimal 18:0.1298E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1298E3\ntotal: !ruby/object:BigDecimal 18:0.11682E4\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-714\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 ab07e703-2b43-4601-8423-1260f255f025 2019-12-22 18:55:37.710763 25031 987 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.78.168 ab07e703-2b43-4601-8423-1260f255f025 2019-12-22 18:55:37.736893 25032 1252 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.78.168 ab07e703-2b43-4601-8423-1260f255f025 2019-12-22 18:55:37.758242 25033 1810 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 d2def66b-3068-4394-bf04-f5651f196fdb 2019-12-22 18:56:50.71948 25034 2498 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 692\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1168E4\nmove_type: '1'\nsale_id: 1810\ncardnumber: 6058\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-714\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-714 187.149.78.168 d2def66b-3068-4394-bf04-f5651f196fdb 2019-12-22 18:56:50.750771 25035 2498 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 692\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1168E4\nmove_type: '1'\nsale_id: 1810\ncardnumber: 6058\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-714\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 e28a5c49-77e8-4775-bb32-09176d7af640 2019-12-22 18:59:16.743921 25036 2499 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 692\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.11682E4\nmove_type: '1'\nsale_id: 1810\ncardnumber: 6058\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-714\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-714 187.149.78.168 85fbe7d5-9413-4a31-b168-f9d233f4cff3 2019-12-22 18:59:58.133355 25037 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 18:37:23.558583000 Z\n- &1 2019-12-22 18:48:19.272973000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 19:01:07.884031482 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1167\n- 1168\n 2336 \N 189.186.59.52 36b16d7a-e1c2-4bb3-be34-362dd0cd6f91 2019-12-22 19:01:07.892045 25039 369 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-12-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.59.52 deb53c9d-38fe-48e8-b40d-e7a6ed4c6a7c 2019-12-22 19:01:28.453665 25040 1116 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.59.52 5cd1d390-8dc8-425c-9fdc-e775f4438717 2019-12-22 19:02:12.647662 25041 1116 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.59.52 b6fd14d6-29d7-4d5c-93bc-0ae7f4d23643 2019-12-22 19:02:51.996875 25042 1438 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.59.52 b368e7a3-9fe4-4d5e-b9ad-cbb0ac9508b5 2019-12-22 19:03:03.350336 25043 1438 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.59.52 ad6ebc15-3170-4f77-928e-7dac5455a784 2019-12-22 19:03:06.033453 25044 370 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-12-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.59.52 02dd6bb6-4f23-43de-8eb7-8395b43c563b 2019-12-22 19:03:07.147526 25045 370 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-22\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.78.168 70058e2e-5cb5-4464-b93f-07468769b85c 2019-12-22 19:03:45.740956 25046 1470 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 775\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 70058e2e-5cb5-4464-b93f-07468769b85c 2019-12-22 19:03:46.053427 25047 1811 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 693\namount: !ruby/object:BigDecimal 18:0.1349E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1349E4\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-907\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 8b696105-4cb7-40ee-b211-c4519decd7eb 2019-12-22 19:04:13.346462 25048 1470 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.78.168 8b696105-4cb7-40ee-b211-c4519decd7eb 2019-12-22 19:04:13.380779 25049 1811 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-907 cancelada. 187.149.78.168 afaae60e-e26b-4ca9-8145-8962667b744e 2019-12-22 19:05:08.358496 25050 1470 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.78.168 afaae60e-e26b-4ca9-8145-8962667b744e 2019-12-22 19:05:08.392808 25051 775 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.1349E4\n- !ruby/object:BigDecimal 18:0.1399E4\n 4 El producto JUM-775 fue modificado. 189.186.59.52 af8a36b0-4fba-4848-9f07-24fb9b014905 2019-12-22 19:05:25.620425 25052 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 18:48:19.272973000 Z\n- &1 2019-12-22 19:01:07.884031000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 19:05:33.883961135 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1168\n- 1169\n 2338 \N 187.149.78.168 324fca97-ff71-48a8-ab26-abae2f024b04 2019-12-22 19:05:33.892859 25053 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NnVyMR-bFYsseYPiC867\n- wz1LBeiiAqQEBshnexcd\n 2339 \N 187.149.78.168 324fca97-ff71-48a8-ab26-abae2f024b04 2019-12-22 19:05:33.911724 25054 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 19:01:07.884031000 Z\n- &1 2019-12-22 19:05:33.883961000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 19:17:34.315586171 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1169\n- 1170\n 2340 \N 187.149.78.168 48523030-035c-4caa-bec4-13766873e145 2019-12-22 19:17:34.322869 25055 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wz1LBeiiAqQEBshnexcd\n- iD_wm7FdW7LCsNTC8Wbx\n 2341 \N 187.149.78.168 48523030-035c-4caa-bec4-13766873e145 2019-12-22 19:17:34.338661 25056 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 19:05:33.883961000 Z\n- &1 2019-12-22 19:17:34.315586000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 19:17:49.215373360 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934313\n mask_addr: 4294967295\nsign_in_count:\n- 1170\n- 1171\n 2342 \N 200.68.135.105 1985cbf9-fd03-419c-91dc-e88612ff3762 2019-12-22 19:17:49.221764 25057 4 User \N \N 4 User \N update ---\nunique_session_id:\n- iD_wm7FdW7LCsNTC8Wbx\n- F2smZiXH4PHxkN7omUtj\n 2343 \N 200.68.135.105 1985cbf9-fd03-419c-91dc-e88612ff3762 2019-12-22 19:17:49.244268 25058 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 19:17:34.315586000 Z\n- &1 2019-12-22 19:17:49.215373000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 19:51:31.988888210 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934313\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934313\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1171\n- 1172\n 2344 \N 189.186.59.52 6a34bb39-89f0-403a-a196-6e992ccd99c9 2019-12-22 19:51:31.997977 25059 4 User \N \N 4 User \N update ---\nunique_session_id:\n- F2smZiXH4PHxkN7omUtj\n- x9vRSr16tHufLzprXJ1r\n 2345 \N 189.186.59.52 6a34bb39-89f0-403a-a196-6e992ccd99c9 2019-12-22 19:51:32.017662 25060 1454 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.59.52 15d1dec5-a690-4664-a0c0-5c39d300fb63 2019-12-22 19:52:40.494039 25061 1454 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.59.52 e41417b8-acdb-46e7-8e52-32a75d84dcd2 2019-12-22 19:52:43.098695 25062 1256 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.59.52 466644d6-45dd-4d07-89e7-8ca009b5816e 2019-12-22 19:52:59.217055 25063 1256 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.59.52 81b2e7bc-7d7f-451f-a4c3-04a6b7b47979 2019-12-22 19:53:05.20186 25064 1412 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 6 \N 189.186.59.52 32f06dd1-1181-458f-bef1-71bb3f391ffc 2019-12-22 19:53:28.961256 44683 1506 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1506'\n is_parent: false\n sku: BLU-1506\n name: BLS-0158\n description: PANTIBLUSA CON ENCAJE MOSTAZA Y NEGRA LC\n price_base: '165.0'\n price_sale: '489.0'\n img_product: 4877FF31-5D20-42F9-8B44-B99750F10FD6.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001506'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 21:08:02.656108'\n updated_at: &12 2020-11-03 21:26:05.215353238 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1506'\n sku: BLU-1506\n name: BLS-0158\n description: PANTIBLUSA CON ENCAJE MOSTAZA Y NEGRA LC\n price_base: '165.00'\n price_sale: '489.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 21:08:02.656108'\n updated_at: '2020-11-03 21:08:02.727614'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001506'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1506'\n type: *3\n value: 1506\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1506\n type: *7\n value: BLU-1506\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0158\n type: *8\n value: BLS-0158\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTIBLUSA CON ENCAJE MOSTAZA Y NEGRA LC\n type: *6\n value: PANTIBLUSA CON ENCAJE MOSTAZA Y NEGRA LC\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '165.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.165E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '489.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.489E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 4877FF31-5D20-42F9-8B44-B99750F10FD6.jpeg\n type: *2\n value: 4877FF31-5D20-42F9-8B44-B99750F10FD6.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001506'\n type: *2\n value: '0001506'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 21:08:02.656108'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 4877FF31-5D20-42F9-8B44-B99750F10FD6.jpeg\n 3 El producto BLU-1506 fue modificado. 187.149.136.226 b80254a2-d50b-41c4-991a-e6f2b459bd44 2020-11-03 21:26:05.267413 25065 1412 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 189.186.59.52 3ce6d90b-9169-49d1-978c-d19ddc3ce9a4 2019-12-22 19:53:31.575115 25066 371 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-12-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.59.52 3126d26f-580a-4010-bcf5-5a3a8bc26563 2019-12-22 19:54:12.565562 25067 1393 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.59.52 4426d269-3493-4137-ad64-4c7248c9beb3 2019-12-22 19:54:31.807023 25068 1135 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.59.52 100b1f05-815c-4293-985b-170bc2151ae6 2019-12-22 19:54:47.709794 25069 1135 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.59.52 aff32228-4d63-4b56-9ec5-cb23364d90ef 2019-12-22 19:54:50.152261 25070 372 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2019-12-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.59.52 b7ee2b38-56e1-4da6-b322-f144fea372de 2019-12-22 19:54:53.569337 25071 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-20 17:43:16.208532000 Z\n- &1 2019-12-21 20:03:16.564408000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 19:55:39.344257553 Z\nsign_in_count:\n- 65\n- 66\n 133 \N 189.186.59.52 d6282840-3dbe-4a48-9a46-2384890731ff 2019-12-22 19:55:39.350009 25072 21 User \N \N 21 User \N update ---\nunique_session_id:\n- TEZPpTiJs8i_Us34Y2b6\n- S6zZhSoT27BHXxf_Szqi\n 134 \N 189.186.59.52 d6282840-3dbe-4a48-9a46-2384890731ff 2019-12-22 19:55:39.362563 25073 369 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-22\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.59.52 e72af1bc-eb62-46f4-9f1c-c9b311bdda67 2019-12-22 19:56:05.345481 25074 1471 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 954\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.52 e72af1bc-eb62-46f4-9f1c-c9b311bdda67 2019-12-22 19:56:05.365655 25075 1472 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 571\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.52 e72af1bc-eb62-46f4-9f1c-c9b311bdda67 2019-12-22 19:56:05.385794 25076 371 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-22\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.59.52 7f7fbf24-6d78-4c37-b5f1-f2b03c9014e7 2019-12-22 19:56:14.786323 25077 1471 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.59.52 7f7fbf24-6d78-4c37-b5f1-f2b03c9014e7 2019-12-22 19:56:14.809035 25078 1473 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 869\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.52 7f7fbf24-6d78-4c37-b5f1-f2b03c9014e7 2019-12-22 19:56:14.835327 25079 1474 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 957\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.52 7f7fbf24-6d78-4c37-b5f1-f2b03c9014e7 2019-12-22 19:56:14.857053 25080 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 19:31:18.188835000 Z\n- &1 2019-12-22 00:16:57.774091000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 20:02:52.429030935 Z\nsign_in_count:\n- 130\n- 131\n 262 \N 187.149.78.168 9fc2aeb4-209c-47a4-a78e-a09981303e60 2019-12-22 20:02:52.436545 25081 1 User \N \N 1 User \N update ---\nunique_session_id:\n- pPLux-9d4LE54espr_8N\n- C-ftWTHsQyv5kR3Amypz\n 263 \N 187.149.78.168 9fc2aeb4-209c-47a4-a78e-a09981303e60 2019-12-22 20:02:52.452035 25082 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-12-20 02:38:04.549635000 Z\n- &1 2019-12-20 17:08:08.612803000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 20:06:27.555324295 Z\nsign_in_count:\n- 35\n- 36\n 72 \N 187.149.78.168 6d0533d9-6fdc-44a4-945c-f16cfdb4a01b 2019-12-22 20:06:27.561086 25083 24 User \N \N 24 User \N update ---\nunique_session_id:\n- WSzgSxLHUQSY-pr8soBJ\n- pwEwhsWPRHN_cUxPR4gt\n 73 \N 187.149.78.168 6d0533d9-6fdc-44a4-945c-f16cfdb4a01b 2019-12-22 20:06:27.5742 25084 1810 Sale \N \N 24 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-714 cancelada. 187.149.78.168 f1a4087b-3f92-4a18-8069-fea195b3306e 2019-12-22 20:06:52.262079 25085 2499 CashRegistersMove \N \N 24 User \N destroy ---\nopen_cash_register_id: 692\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.11682E4\nmove_type: '1'\nsale_id: 1810\ncardnumber: 6058\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-714\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 f1a4087b-3f92-4a18-8069-fea195b3306e 2019-12-22 20:06:52.282268 25086 1252 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 187.149.78.168 f1a4087b-3f92-4a18-8069-fea195b3306e 2019-12-22 20:06:52.309402 25087 987 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.78.168 f1a4087b-3f92-4a18-8069-fea195b3306e 2019-12-22 20:06:52.328952 25088 1812 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 692\namount: !ruby/object:BigDecimal 18:0.1298E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.9E2\ntotal: !ruby/object:BigDecimal 18:0.1208E4\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-715\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 69e6a4ce-c632-4f03-8d19-b803508fb68d 2019-12-22 20:09:08.4598 25089 1252 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 187.149.78.168 69e6a4ce-c632-4f03-8d19-b803508fb68d 2019-12-22 20:09:08.484256 25090 987 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.78.168 69e6a4ce-c632-4f03-8d19-b803508fb68d 2019-12-22 20:09:08.505837 25091 1812 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 c3102e25-b322-408f-9446-7868a05b4bdb 2019-12-22 20:09:18.083158 25155 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 20:36:13.293724000 Z\n- &1 2019-12-22 22:01:12.393801000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 22:20:59.468315233 Z\nsign_in_count:\n- 414\n- 415\n 833 \N 187.149.78.168 7233d9ee-0aae-416c-8f5f-74c842f932d1 2019-12-22 22:20:59.473695 25092 2500 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 692\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.4E2\nmove_type: '1'\nsale_id: 1812\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-715\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-715 187.149.78.168 c3102e25-b322-408f-9446-7868a05b4bdb 2019-12-22 20:09:18.104556 25093 2501 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 692\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1168E4\nmove_type: '1'\nsale_id: 1812\ncardnumber: 6058\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-715\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-715 187.149.78.168 dee313db-8f41-450a-a98c-feef7b830893 2019-12-22 20:09:45.881615 25094 1813 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 692\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-715\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 eb4d85fb-5311-40ac-9db5-2cee3742e09b 2019-12-22 20:19:51.606457 25095 1255 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.78.168 eb4d85fb-5311-40ac-9db5-2cee3742e09b 2019-12-22 20:19:51.652363 25096 1813 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 d276098a-29dd-4597-8783-75aeded3a6ac 2019-12-22 20:20:29.184872 25097 2502 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 692\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.729E3\nmove_type: '1'\nsale_id: 1813\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-715\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-715 187.149.78.168 d276098a-29dd-4597-8783-75aeded3a6ac 2019-12-22 20:20:29.206353 25098 1814 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 692\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.79E2\ntotal: !ruby/object:BigDecimal 18:0.72E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-717\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 d3986941-c3d6-4b58-a653-9b5e9a7f34b4 2019-12-22 20:32:45.723734 25099 1125 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 187.149.78.168 d3986941-c3d6-4b58-a653-9b5e9a7f34b4 2019-12-22 20:32:45.750115 25100 1814 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 bee4acbd-ef99-4d81-9bfb-ab7363e0d495 2019-12-22 20:32:50.496927 25101 2503 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 692\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.72E3\nmove_type: '1'\nsale_id: 1814\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-717\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.8E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-717 187.149.78.168 bee4acbd-ef99-4d81-9bfb-ab7363e0d495 2019-12-22 20:32:50.517596 25102 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 02:39:25.985539000 Z\n- &1 2019-12-22 03:00:25.615019000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 20:36:13.293724184 Z\nsign_in_count:\n- 412\n- 413\n 829 \N 187.149.78.168 ead27bb3-d164-4915-bcf9-7984ce4dedec 2019-12-22 20:36:13.299572 25103 2 User \N \N 2 User \N update ---\nunique_session_id:\n- GxR_93CNzrpt946CDmH6\n- SBDBnqHtyxyQq8H1nJc7\n 830 \N 187.149.78.168 ead27bb3-d164-4915-bcf9-7984ce4dedec 2019-12-22 20:36:13.312551 25104 1815 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 693\namount: !ruby/object:BigDecimal 18:0.1349E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1349E4\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-908\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 4c6dd67c-cd80-4594-99e9-ea72a5d35db3 2019-12-22 20:37:47.433423 25105 1245 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.78.168 4c6dd67c-cd80-4594-99e9-ea72a5d35db3 2019-12-22 20:37:47.471685 25106 1815 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 b94451f9-97a1-4c2c-b7ba-bd1574eb5ba8 2019-12-22 20:38:02.257191 25107 2504 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 693\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1349E4\nmove_type: '1'\nsale_id: 1815\ncardnumber: 9897\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-908\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-908 187.149.78.168 b94451f9-97a1-4c2c-b7ba-bd1574eb5ba8 2019-12-22 20:38:02.278943 25108 1816 Sale \N \N 2 User \N create ---\ncustomer_id: 191\nuser_id: 2\nopen_cash_register_id: 693\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-909\nexpiration_date: 2020-01-26\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 b390b81b-81b8-450f-9542-17853ee2fe8a 2019-12-22 20:39:38.217541 25109 841 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.78.168 b390b81b-81b8-450f-9542-17853ee2fe8a 2019-12-22 20:39:38.241407 25110 2505 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 693\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1816\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-909\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-909 187.149.78.168 37c6afc6-353c-4309-840b-c7f2437ee110 2019-12-22 20:39:45.221392 25111 1816 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.78.168 08bf589b-3b59-4742-9eab-d76169ea3227 2019-12-22 20:39:46.499204 25156 2 User \N \N 2 User \N update ---\nunique_session_id:\n- isyV9oNviXxXB63sn1Zu\n- nfzy9gFzZ7dWCJcMbuGS\n 834 \N 187.149.78.168 7233d9ee-0aae-416c-8f5f-74c842f932d1 2019-12-22 22:20:59.485548 25654 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kY7Z6ax__JzALZuTAByr\n- Tz62zE3jmzXmRbVsf5bP\n 2419 \N 189.186.59.52 68c3b808-6e32-4076-aa20-e6b94a97cce4 2019-12-24 19:24:50.601045 25112 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 19:17:49.215373000 Z\n- &1 2019-12-22 19:51:31.988888000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 20:39:53.808424208 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934313\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1172\n- 1173\n 2346 \N 187.149.78.168 9dd46300-27df-45b3-a07c-bf91c2a57f29 2019-12-22 20:39:53.815823 25113 4 User \N \N 4 User \N update ---\nunique_session_id:\n- x9vRSr16tHufLzprXJ1r\n- cZi5y-zKE3fGsdyn5jZp\n 2347 \N 187.149.78.168 9dd46300-27df-45b3-a07c-bf91c2a57f29 2019-12-22 20:39:53.831807 25114 1817 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 692\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-718\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 9f7cde44-0132-41ca-8b3b-f62ff3e4a730 2019-12-22 20:48:44.581887 25115 1288 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.78.168 9f7cde44-0132-41ca-8b3b-f62ff3e4a730 2019-12-22 20:48:44.610913 25116 1817 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 dc6714ae-6b49-4270-b741-256961746229 2019-12-22 20:49:31.459166 25117 2506 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 692\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 1817\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-718\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-718 187.149.78.168 dc6714ae-6b49-4270-b741-256961746229 2019-12-22 20:49:31.480129 25118 1818 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 693\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.79E2\ntotal: !ruby/object:BigDecimal 18:0.72E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-910\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 79de1f15-5333-4038-bada-c3922fcac30f 2019-12-22 20:58:26.806401 25119 872 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.78.168 79de1f15-5333-4038-bada-c3922fcac30f 2019-12-22 20:58:26.831078 25120 694 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.821E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 821.0 189.186.59.52 6872801d-f6cb-40b1-b161-4d6c688444cf 2019-12-22 20:58:33.522693 25121 1818 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 acc465d2-a158-433c-bc1d-2df872ee525a 2019-12-22 20:58:40.510668 25122 2507 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 693\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.72E3\nmove_type: '1'\nsale_id: 1818\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-910\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.72E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-910 187.149.78.168 acc465d2-a158-433c-bc1d-2df872ee525a 2019-12-22 20:58:40.536412 25123 2508 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 694\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1508\ncardnumber: 9589\npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-136 189.186.59.52 7bb77c39-9f01-4171-8a4f-44a7d7dc49dd 2019-12-22 21:05:23.174302 25124 1819 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 694\namount: !ruby/object:BigDecimal 18:0.17E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.17E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-189\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 9c0401ea-154d-4020-9d0e-4dde9e3cec96 2019-12-22 21:09:10.398164 25125 1180 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.59.52 9c0401ea-154d-4020-9d0e-4dde9e3cec96 2019-12-22 21:09:10.423564 25126 1819 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 c3780804-063e-4d72-8946-bb068cb5ea2f 2019-12-22 21:09:35.612184 25127 2509 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 694\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.17E3\nmove_type: '1'\nsale_id: 1819\ncardnumber: 9589\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-189\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-189 189.186.59.52 c3780804-063e-4d72-8946-bb068cb5ea2f 2019-12-22 21:09:35.633754 25128 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 00:16:57.774091000 Z\n- &1 2019-12-22 20:02:52.429030000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 21:18:46.607779460 Z\nsign_in_count:\n- 131\n- 132\n 264 \N 187.149.78.168 ea2ef5ef-6aea-4482-8a21-38212d7abd64 2019-12-22 21:18:46.613628 25129 1 User \N \N 1 User \N update ---\nunique_session_id:\n- C-ftWTHsQyv5kR3Amypz\n- z185vhz1iaTWHZ29Lzxp\n 265 \N 187.149.78.168 ea2ef5ef-6aea-4482-8a21-38212d7abd64 2019-12-22 21:18:46.626081 25130 1820 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 692\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.6E2\ntotal: !ruby/object:BigDecimal 18:0.539E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-719\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 747af87f-6760-4648-86e6-ebb7755a1580 2019-12-22 21:52:16.957835 25131 1218 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.78.168 747af87f-6760-4648-86e6-ebb7755a1580 2019-12-22 21:52:16.985692 25132 1820 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 2a791c4f-f59d-4597-b6f5-d44612b03f68 2019-12-22 21:52:22.736103 25181 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 20:06:27.555324000 Z\n- &1 2019-12-22 22:14:39.276689000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 22:51:19.140624397 Z\nsign_in_count:\n- 37\n- 38\n 76 \N 187.149.78.168 5a9aec47-0ea6-4cd5-b3be-4ad38c1fd8a8 2019-12-22 22:51:19.146673 25133 2510 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 692\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.539E3\nmove_type: '1'\nsale_id: 1820\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-719\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.539E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-719 187.149.78.168 2a791c4f-f59d-4597-b6f5-d44612b03f68 2019-12-22 21:52:22.755449 25134 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 03:00:25.615019000 Z\n- &1 2019-12-22 20:36:13.293724000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 22:01:12.393801670 Z\nsign_in_count:\n- 413\n- 414\n 831 \N 187.149.78.168 2b4b6c19-8566-49ad-bf5c-2da27d7e0f0f 2019-12-22 22:01:12.399865 25135 2 User \N \N 2 User \N update ---\nunique_session_id:\n- SBDBnqHtyxyQq8H1nJc7\n- isyV9oNviXxXB63sn1Zu\n 832 \N 187.149.78.168 2b4b6c19-8566-49ad-bf5c-2da27d7e0f0f 2019-12-22 22:01:12.412898 25136 1821 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 692\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-720\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 47237d22-2d86-42aa-af32-a3342745a32f 2019-12-22 22:03:48.818445 25137 806 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 37 \N 187.149.78.168 47237d22-2d86-42aa-af32-a3342745a32f 2019-12-22 22:03:48.842706 25138 1821 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-720 cancelada. 187.149.78.168 8711ee23-f343-4170-b53a-7ae88bb9a76f 2019-12-22 22:04:20.55407 25139 806 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 38 \N 187.149.78.168 8711ee23-f343-4170-b53a-7ae88bb9a76f 2019-12-22 22:04:20.578135 25140 1822 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 692\namount: !ruby/object:BigDecimal 18:0.81968E3\ntax: !ruby/object:BigDecimal 18:0.1931E2\ndiscount: !ruby/object:BigDecimal 18:0.69E2\ntotal: !ruby/object:BigDecimal 18:0.76999E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-721\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 83ee74c6-b4e8-4384-a516-488b7df69af4 2019-12-22 22:05:56.93716 25141 383 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.78.168 83ee74c6-b4e8-4384-a516-488b7df69af4 2019-12-22 22:05:56.969429 25142 806 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 39 \N 187.149.78.168 83ee74c6-b4e8-4384-a516-488b7df69af4 2019-12-22 22:05:56.999867 25143 1822 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 ba6fe364-d761-42eb-9bd8-2e3b54c9e890 2019-12-22 22:06:48.163382 25144 2511 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 692\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.76999E3\nmove_type: '1'\nsale_id: 1822\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-721\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.23001E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-721 187.149.78.168 ba6fe364-d761-42eb-9bd8-2e3b54c9e890 2019-12-22 22:06:48.183013 25145 2512 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 692\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1822\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-721\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-721 187.149.78.168 0ab16ab4-4e1e-4cb7-ae45-4c37caf4165d 2019-12-22 22:06:48.467611 25146 2512 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 692\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1822\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-721\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 85edb8e5-2cce-48e1-91d2-6490ffe982f9 2019-12-22 22:06:55.615782 25147 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-12-20 17:08:08.612803000 Z\n- &1 2019-12-22 20:06:27.555324000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 22:14:39.276689664 Z\nsign_in_count:\n- 36\n- 37\n 74 \N 187.149.78.168 8201a02d-d053-4987-8879-d91fe9a113c3 2019-12-22 22:14:39.294412 25148 24 User \N \N 24 User \N update ---\nunique_session_id:\n- pwEwhsWPRHN_cUxPR4gt\n- Szgv6vrZHsGuoQ23_fx5\n 75 \N 187.149.78.168 8201a02d-d053-4987-8879-d91fe9a113c3 2019-12-22 22:14:39.310726 25149 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 19:51:31.988888000 Z\n- &1 2019-12-22 20:39:53.808424000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 22:15:30.327842513 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1173\n- 1174\n 2348 \N 187.149.78.168 6fd484b2-ba6a-43bf-a5c9-71cc1eaa0404 2019-12-22 22:15:30.33412 25150 4 User \N \N 4 User \N update ---\nunique_session_id:\n- cZi5y-zKE3fGsdyn5jZp\n- Qnk4Jkzm6x2EPhLm7CTw\n 2349 \N 187.149.78.168 6fd484b2-ba6a-43bf-a5c9-71cc1eaa0404 2019-12-22 22:15:30.349233 25151 1823 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 692\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-722\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 25eb80c7-c7fe-4018-9776-9e6ca7596f7e 2019-12-22 22:19:16.30122 25152 1278 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.78.168 25eb80c7-c7fe-4018-9776-9e6ca7596f7e 2019-12-22 22:19:16.33126 25153 1823 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 41c88156-056d-4690-a3cb-dc40ae547e8e 2019-12-22 22:19:22.277971 25154 2513 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 692\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 1823\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-722\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-722 187.149.78.168 41c88156-056d-4690-a3cb-dc40ae547e8e 2019-12-22 22:19:22.299705 25182 24 User \N \N 24 User \N update ---\nunique_session_id:\n- Szgv6vrZHsGuoQ23_fx5\n- 932jkoV2PY63BdAYkXhj\n 77 \N 187.149.78.168 5a9aec47-0ea6-4cd5-b3be-4ad38c1fd8a8 2019-12-22 22:51:19.159967 25157 1824 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 693\namount: !ruby/object:BigDecimal 18:0.124159E4\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1338E4\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-911\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 eaab0728-4dc2-484d-afc0-d1528bfd957c 2019-12-22 22:21:17.167048 25158 175 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.78.168 eaab0728-4dc2-484d-afc0-d1528bfd957c 2019-12-22 22:21:17.193216 25159 788 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 17 \N 187.149.78.168 eaab0728-4dc2-484d-afc0-d1528bfd957c 2019-12-22 22:21:17.21542 25160 1824 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 bde8af0b-e426-48ad-b020-22d9c8bc2e30 2019-12-22 22:21:26.955117 25161 2514 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 693\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1338E4\nmove_type: '1'\nsale_id: 1824\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-911\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1338E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-911 187.149.78.168 bde8af0b-e426-48ad-b020-22d9c8bc2e30 2019-12-22 22:21:26.973646 25162 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 20:02:52.429030000 Z\n- &1 2019-12-22 21:18:46.607779000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 22:23:19.326620666 Z\nsign_in_count:\n- 132\n- 133\n 266 \N 187.149.78.168 a5f79241-a89b-466a-9993-27df5d099795 2019-12-22 22:23:19.332066 25163 1 User \N \N 1 User \N update ---\nunique_session_id:\n- z185vhz1iaTWHZ29Lzxp\n- "-d9-XAxefMZR4RNyMyPy"\n 267 \N 187.149.78.168 a5f79241-a89b-466a-9993-27df5d099795 2019-12-22 22:23:19.343535 25164 1825 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 694\namount: !ruby/object:BigDecimal 18:0.149E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.149E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-190\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 c4c11e0c-9f6e-499b-b3cc-8d6d6f522e2f 2019-12-22 22:28:45.213612 25165 1356 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.59.52 c4c11e0c-9f6e-499b-b3cc-8d6d6f522e2f 2019-12-22 22:28:45.239341 25166 1825 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 5307f77d-6138-4572-b2f3-3c39f010c8af 2019-12-22 22:28:49.509071 25167 2515 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 694\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.149E3\nmove_type: '1'\nsale_id: 1825\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-190\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.351E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-190 189.186.59.52 5307f77d-6138-4572-b2f3-3c39f010c8af 2019-12-22 22:28:49.541964 25168 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 20:39:53.808424000 Z\n- &1 2019-12-22 22:15:30.327842000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 22:33:14.161553011 Z\nsign_in_count:\n- 1174\n- 1175\n 2350 \N 187.149.78.168 bc298b3d-8c9e-4b1b-beca-475dafc6effe 2019-12-22 22:33:14.166935 25169 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Qnk4Jkzm6x2EPhLm7CTw\n- sjTTGKVxuUKaY-GytABU\n 2351 \N 187.149.78.168 bc298b3d-8c9e-4b1b-beca-475dafc6effe 2019-12-22 22:33:14.182889 25170 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 22:01:12.393801000 Z\n- &1 2019-12-22 22:20:59.468315000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 22:45:48.671201506 Z\nsign_in_count:\n- 415\n- 416\n 835 \N 187.149.78.168 220c7285-8a86-4c59-b5e6-6b7c4f4d7741 2019-12-22 22:45:48.676341 25171 2 User \N \N 2 User \N update ---\nunique_session_id:\n- nfzy9gFzZ7dWCJcMbuGS\n- W9jyNPjQjjF4aBDgj69y\n 836 \N 187.149.78.168 220c7285-8a86-4c59-b5e6-6b7c4f4d7741 2019-12-22 22:45:48.688307 25172 1826 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 693\namount: !ruby/object:BigDecimal 18:0.2616E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2616E4\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-912\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 a3586ba8-81d5-4a45-ad39-808970789644 2019-12-22 22:49:14.54557 25173 1460 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.78.168 a3586ba8-81d5-4a45-ad39-808970789644 2019-12-22 22:49:14.571756 25174 1313 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.78.168 a3586ba8-81d5-4a45-ad39-808970789644 2019-12-22 22:49:14.594839 25175 1826 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 02b01d27-340b-4937-b00f-929379c3fa3f 2019-12-22 22:49:18.935074 25176 2516 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 693\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2616E4\nmove_type: '1'\nsale_id: 1826\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-912\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2616E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-912 187.149.78.168 02b01d27-340b-4937-b00f-929379c3fa3f 2019-12-22 22:49:18.956516 25177 1827 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 693\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-913\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 0feb5e59-dacd-4c17-9155-aeaa30129aab 2019-12-22 22:50:35.484302 25178 1241 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.78.168 0feb5e59-dacd-4c17-9155-aeaa30129aab 2019-12-22 22:50:35.511875 25179 1827 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 f63d0752-174f-4f92-ac7e-d27d8f6d5989 2019-12-22 22:50:39.578194 25180 2517 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 693\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 1827\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-913\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-913 187.149.78.168 f63d0752-174f-4f92-ac7e-d27d8f6d5989 2019-12-22 22:50:39.611873 25183 1828 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 692\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-723\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 49009e12-e6ed-441a-8129-be02cc99096f 2019-12-22 22:51:34.652064 25184 802 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 9 \N 187.149.78.168 49009e12-e6ed-441a-8129-be02cc99096f 2019-12-22 22:51:34.677743 25185 1828 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 85763e65-f70c-4e93-878b-07fd90d7f819 2019-12-22 22:51:40.539474 25186 2518 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 692\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1828\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-723\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-723 187.149.78.168 85763e65-f70c-4e93-878b-07fd90d7f819 2019-12-22 22:51:40.562664 25187 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 22:20:59.468315000 Z\n- &1 2019-12-22 22:45:48.671201000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 22:54:42.332569223 Z\nsign_in_count:\n- 416\n- 417\n 837 \N 187.149.78.168 c66b9a45-97eb-4e29-94b2-a00287f71e99 2019-12-22 22:54:42.33945 25188 2 User \N \N 2 User \N update ---\nunique_session_id:\n- W9jyNPjQjjF4aBDgj69y\n- hgz3SW4-zMgztZy2P-yn\n 838 \N 187.149.78.168 c66b9a45-97eb-4e29-94b2-a00287f71e99 2019-12-22 22:54:42.3513 25189 1826 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-912 cancelada. 187.149.78.168 8f526ff6-e497-4936-80f2-93119d4780a2 2019-12-22 22:56:36.951998 25190 2516 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 693\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2616E4\nmove_type: '1'\nsale_id: 1826\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-912\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2616E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 8f526ff6-e497-4936-80f2-93119d4780a2 2019-12-22 22:56:36.973469 25191 1313 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.78.168 8f526ff6-e497-4936-80f2-93119d4780a2 2019-12-22 22:56:36.996234 25192 1460 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.78.168 8f526ff6-e497-4936-80f2-93119d4780a2 2019-12-22 22:56:37.015129 25193 1829 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 693\namount: !ruby/object:BigDecimal 18:0.2247E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2247E4\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-914\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 7e2050a5-ce67-45c4-a22e-3021420b269d 2019-12-22 22:56:59.526375 25194 1460 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.78.168 7e2050a5-ce67-45c4-a22e-3021420b269d 2019-12-22 22:56:59.551895 25195 1829 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 cb90195f-3b81-4602-8773-b2c1b540a57b 2019-12-22 22:57:06.991116 25196 2519 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 693\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2247E4\nmove_type: '1'\nsale_id: 1829\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-914\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2247E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-914 187.149.78.168 cb90195f-3b81-4602-8773-b2c1b540a57b 2019-12-22 22:57:07.010188 25197 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 22:14:39.276689000 Z\n- &1 2019-12-22 22:51:19.140624000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 22:57:42.103218069 Z\nsign_in_count:\n- 38\n- 39\n 78 \N 187.149.78.168 2a7c6c92-6a80-4e2c-a2ed-a99636528f6b 2019-12-22 22:57:42.108796 25198 24 User \N \N 24 User \N update ---\nunique_session_id:\n- 932jkoV2PY63BdAYkXhj\n- 3EQca8KpttNxb2jwxzs_\n 79 \N 187.149.78.168 2a7c6c92-6a80-4e2c-a2ed-a99636528f6b 2019-12-22 22:57:42.120479 25199 1830 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 692\namount: !ruby/object:BigDecimal 18:0.369E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.369E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-724\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 2c9c0ac1-03aa-4ae9-b24c-aae06482e014 2019-12-22 22:58:12.852399 25200 1335 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.78.168 2c9c0ac1-03aa-4ae9-b24c-aae06482e014 2019-12-22 22:58:12.900657 25201 1830 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 40ae16f2-68d8-4b45-8b0e-0516e961aa13 2019-12-22 22:58:17.608732 25202 2520 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 692\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.369E3\nmove_type: '1'\nsale_id: 1830\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-724\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.369E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-724 187.149.78.168 40ae16f2-68d8-4b45-8b0e-0516e961aa13 2019-12-22 22:58:17.62808 25203 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 21:18:46.607779000 Z\n- &1 2019-12-22 22:23:19.326620000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 23:01:47.719422856 Z\nsign_in_count:\n- 133\n- 134\n 268 \N 187.149.78.168 5bb4dbc8-e59f-4f39-91e2-d8963919a477 2019-12-22 23:01:47.725016 25204 1 User \N \N 1 User \N update ---\nunique_session_id:\n- "-d9-XAxefMZR4RNyMyPy"\n- fLLU2zoHzRCjtMuspesy\n 269 \N 187.149.78.168 5bb4dbc8-e59f-4f39-91e2-d8963919a477 2019-12-22 23:01:47.737187 25205 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 22:15:30.327842000 Z\n- &1 2019-12-22 22:33:14.161553000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 23:04:02.547842080 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1175\n- 1176\n 2352 \N 189.186.59.52 498870d8-5b06-459d-869e-33b3c3cd1b7c 2019-12-22 23:04:02.561855 25206 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sjTTGKVxuUKaY-GytABU\n- FurpH7JHV5JNwys3iCxH\n 2353 \N 189.186.59.52 498870d8-5b06-459d-869e-33b3c3cd1b7c 2019-12-22 23:04:02.583972 25207 1831 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 692\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.749E2\ntotal: !ruby/object:BigDecimal 18:0.6741E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-725\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 ee244973-d5c7-477d-9383-2239eae6bdd4 2019-12-22 23:05:39.858866 25208 1252 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 187.149.78.168 ee244973-d5c7-477d-9383-2239eae6bdd4 2019-12-22 23:05:39.885435 25209 1831 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 0b8131dc-915e-4187-a314-9cbedbef0816 2019-12-22 23:05:44.652916 25210 2521 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 692\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6741E3\nmove_type: '1'\nsale_id: 1831\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-725\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.3259E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-725 187.149.78.168 0b8131dc-915e-4187-a314-9cbedbef0816 2019-12-22 23:05:44.679988 25211 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 22:33:14.161553000 Z\n- &1 2019-12-22 23:04:02.547842000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 23:07:33.007659155 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1176\n- 1177\n 2354 \N 187.149.78.168 d282b271-ee4d-43e9-ad4b-5a238d8b0360 2019-12-22 23:07:33.015716 25212 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FurpH7JHV5JNwys3iCxH\n- CTyKMGBttzxHQ_o21-iR\n 2355 \N 187.149.78.168 d282b271-ee4d-43e9-ad4b-5a238d8b0360 2019-12-22 23:07:33.032373 25213 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 23:04:02.547842000 Z\n- &1 2019-12-22 23:07:33.007659000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 23:08:01.649533699 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1177\n- 1178\n 2356 \N 189.186.59.52 0648fab3-bf25-4f2d-88a5-1b0c2f8c6d63 2019-12-22 23:08:01.657264 25214 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CTyKMGBttzxHQ_o21-iR\n- t8tdg1YECzzSBsJFqs48\n 2357 \N 189.186.59.52 0648fab3-bf25-4f2d-88a5-1b0c2f8c6d63 2019-12-22 23:08:01.674531 25215 1832 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 694\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.4797E3\ntotal: !ruby/object:BigDecimal 18:0.11193E4\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-191\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 7a3e4adc-7361-401e-96f1-b49c26d1dd05 2019-12-22 23:18:46.334667 25216 1119 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.59.52 7a3e4adc-7361-401e-96f1-b49c26d1dd05 2019-12-22 23:18:46.359995 25217 1832 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 06a0c310-0785-4202-b9f6-694a4479ebcb 2019-12-22 23:18:53.047741 25218 2522 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 694\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.11193E4\nmove_type: '1'\nsale_id: 1832\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-191\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.3807E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-191 189.186.59.52 06a0c310-0785-4202-b9f6-694a4479ebcb 2019-12-22 23:18:53.06741 25219 1278 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.78.168 42039210-e5e3-40aa-9e0b-160110dab096 2019-12-22 23:35:31.914598 25220 373 Transfer \N \N 27 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-12-22\nuser_id: 27\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.78.168 52082e19-d230-4e4c-93e8-0488d53ca029 2019-12-22 23:35:35.434642 25221 372 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-22\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.78.168 b0ddbf34-fa20-401d-ab6a-f53eb2147d64 2019-12-22 23:35:53.382255 25222 1455 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.78.168 b0ddbf34-fa20-401d-ab6a-f53eb2147d64 2019-12-22 23:35:53.401241 25223 1437 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.78.168 b0ddbf34-fa20-401d-ab6a-f53eb2147d64 2019-12-22 23:35:53.418969 25224 367 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-22\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.78.168 861591f5-9c22-4cd0-b017-d3e64a65998c 2019-12-22 23:36:02.142504 25225 1281 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.7E1\n 9 \N 187.149.78.168 861591f5-9c22-4cd0-b017-d3e64a65998c 2019-12-22 23:36:02.158824 25226 1090 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.6E1\n 10 \N 187.149.78.168 861591f5-9c22-4cd0-b017-d3e64a65998c 2019-12-22 23:36:02.176979 25227 1252 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.4E1\n 13 \N 187.149.78.168 861591f5-9c22-4cd0-b017-d3e64a65998c 2019-12-22 23:36:02.194195 25228 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 23:07:33.007659000 Z\n- &1 2019-12-22 23:08:01.649533000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 23:45:11.790294070 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1178\n- 1179\n 2358 \N 187.149.78.168 7bed11c2-49c0-4a7f-be89-669ae1bc611f 2019-12-22 23:45:11.809044 25229 4 User \N \N 4 User \N update ---\nunique_session_id:\n- t8tdg1YECzzSBsJFqs48\n- 15HSt3fVTypfazhja2sC\n 2359 \N 187.149.78.168 7bed11c2-49c0-4a7f-be89-669ae1bc611f 2019-12-22 23:45:11.83087 25577 695 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 0d8d314a-79da-4ebe-ae78-3b38dbc67df8 2019-12-24 03:07:23.867558 25230 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 22:45:48.671201000 Z\n- &1 2019-12-22 22:54:42.332569000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-22 23:46:28.097121248 Z\nsign_in_count:\n- 417\n- 418\n 839 \N 187.149.78.168 f8695e90-de0d-46ae-9079-a2a82f6d3cc1 2019-12-22 23:46:28.102491 25231 2 User \N \N 2 User \N update ---\nunique_session_id:\n- hgz3SW4-zMgztZy2P-yn\n- QErbJ6LcMevPh7PrEJ5D\n 840 \N 187.149.78.168 f8695e90-de0d-46ae-9079-a2a82f6d3cc1 2019-12-22 23:46:28.114883 25232 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 23:08:01.649533000 Z\n- &1 2019-12-22 23:45:11.790294000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 00:00:58.417625310 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1179\n- 1180\n 2360 \N 187.149.78.168 6d929a0f-abc4-4a55-b201-75c47857392f 2019-12-23 00:00:58.423869 25233 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 15HSt3fVTypfazhja2sC\n- yzREbRtAwvHXR-qm6dMx\n 2361 \N 187.149.78.168 6d929a0f-abc4-4a55-b201-75c47857392f 2019-12-23 00:00:58.439433 25234 1833 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 693\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-915\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 628892c9-abf8-4421-86fd-50dda0b109e4 2019-12-23 00:07:09.274452 25235 1470 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.78.168 628892c9-abf8-4421-86fd-50dda0b109e4 2019-12-23 00:07:09.308297 25236 1833 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 7ae2fc5c-bb05-4a82-8ab9-eb57d16991ed 2019-12-23 00:07:14.925298 25237 2523 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 693\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 1833\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-915\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1399E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-915 187.149.78.168 7ae2fc5c-bb05-4a82-8ab9-eb57d16991ed 2019-12-23 00:07:14.949615 25238 699 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 693\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.13442E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.85E4\ncash_fund: !ruby/object:BigDecimal 18:0.1084E4\nphysical_cash: !ruby/object:BigDecimal 18:0.9584E4\nobservations: una venta de $2117 se pago con tarjeta y se puso que fue en efectivo\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.78.168 b0f86f21-526e-4e43-be6f-76cfbad460c6 2019-12-23 00:14:29.90342 25239 693 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 b0f86f21-526e-4e43-be6f-76cfbad460c6 2019-12-23 00:14:29.917472 25240 1834 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 692\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-726\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 4e816764-f892-49fc-ad26-35ea8063fb79 2019-12-23 00:23:32.199176 25241 1252 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 14 \N 187.149.78.168 4e816764-f892-49fc-ad26-35ea8063fb79 2019-12-23 00:23:32.232628 25242 1834 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-726 cancelada. 187.149.78.168 3e605113-e036-426c-a19c-2f9da3dd9dd9 2019-12-23 00:24:25.533481 25243 1252 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 15 \N 187.149.78.168 3e605113-e036-426c-a19c-2f9da3dd9dd9 2019-12-23 00:24:25.55613 25244 1835 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 692\namount: !ruby/object:BigDecimal 18:0.848E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.749E2\ntotal: !ruby/object:BigDecimal 18:0.7731E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-727\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 2640e738-4f3a-45d5-ba32-6143e722affe 2019-12-23 00:25:02.991763 25245 1252 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 16 \N 187.149.78.168 2640e738-4f3a-45d5-ba32-6143e722affe 2019-12-23 00:25:03.019123 25246 1210 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.78.168 2640e738-4f3a-45d5-ba32-6143e722affe 2019-12-23 00:25:03.041512 25247 1835 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 4bd00b80-738a-4792-8da3-9fda329ae45b 2019-12-23 00:25:11.046349 25248 2524 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 692\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7731E3\nmove_type: '1'\nsale_id: 1835\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-727\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.1269E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-727 187.149.78.168 4bd00b80-738a-4792-8da3-9fda329ae45b 2019-12-23 00:25:11.071134 25249 1836 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 692\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.169E3\ntotal: !ruby/object:BigDecimal 18:0.7E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-728\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 d8d4a92c-69c0-4e26-9f8f-2937090b316a 2019-12-23 00:30:35.933895 25250 672 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.78.168 d8d4a92c-69c0-4e26-9f8f-2937090b316a 2019-12-23 00:30:35.964538 25251 1836 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 731ab989-242c-45b0-9403-f8ea7f02c3e8 2019-12-23 00:30:43.703895 25252 2525 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 692\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.7E3\nmove_type: '1'\nsale_id: 1836\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-728\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-728 187.149.78.168 731ab989-242c-45b0-9403-f8ea7f02c3e8 2019-12-23 00:30:43.728327 25253 1377 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.78.168 ce70772c-bcb7-4fc3-966f-e0404abbcb08 2019-12-23 00:36:38.566673 25254 374 Transfer \N \N 27 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-12-22\nuser_id: 27\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.78.168 474188bc-44e1-42c2-bd05-3b6cad4d3ef2 2019-12-23 00:36:43.030923 25255 1837 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 694\namount: !ruby/object:BigDecimal 18:0.1629E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3258E3\ntotal: !ruby/object:BigDecimal 18:0.13032E4\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-192\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 bc0380f5-2294-4e7c-827b-b59e8a77b96e 2019-12-23 00:37:35.127665 25256 1389 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.59.52 bc0380f5-2294-4e7c-827b-b59e8a77b96e 2019-12-23 00:37:35.166769 25257 1837 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 2babe5b3-7a15-4fb5-86bd-21f0d2951c51 2019-12-23 00:37:42.665209 25258 2526 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 694\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.13032E4\nmove_type: '1'\nsale_id: 1837\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-192\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1968E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-192 189.186.59.52 2babe5b3-7a15-4fb5-86bd-21f0d2951c51 2019-12-23 00:37:42.688022 25259 1838 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 692\namount: !ruby/object:BigDecimal 18:0.1129E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1129E3\ntotal: !ruby/object:BigDecimal 18:0.10161E4\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-729\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 08015769-1612-46e3-ba3e-a8a354bff347 2019-12-23 00:42:00.520606 25260 1088 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.78.168 08015769-1612-46e3-ba3e-a8a354bff347 2019-12-23 00:42:00.554729 25261 695 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1084E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1084.0 187.149.78.168 b55bccf0-71e6-46b5-a018-0057f552557e 2019-12-23 00:42:51.168462 25262 1838 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 7dfb8fcf-3c43-4385-9fc5-bd9edc64eca4 2019-12-23 00:42:52.494826 25263 2527 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 692\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.10161E4\nmove_type: '1'\nsale_id: 1838\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-729\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.102E4\nchange: !ruby/object:BigDecimal 18:0.39E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-729 187.149.78.168 7dfb8fcf-3c43-4385-9fc5-bd9edc64eca4 2019-12-23 00:42:52.51751 25264 1839 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 695\namount: !ruby/object:BigDecimal 18:0.369E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.369E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-916\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 bf19024d-1430-44e1-9bd4-27f1bbce7bd3 2019-12-23 00:43:30.528736 25265 1313 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.78.168 bf19024d-1430-44e1-9bd4-27f1bbce7bd3 2019-12-23 00:43:30.555378 25266 1839 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 a1663b64-b3b1-44b6-84b1-ce915844cd3e 2019-12-23 00:43:35.917605 25267 2528 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 695\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.369E3\nmove_type: '1'\nsale_id: 1839\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-916\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.369E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-916 187.149.78.168 a1663b64-b3b1-44b6-84b1-ce915844cd3e 2019-12-23 00:43:35.939295 25268 1840 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 692\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.99E2\ntotal: !ruby/object:BigDecimal 18:0.12E4\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-730\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 ef0d37d2-6623-4df7-854f-321d15729754 2019-12-23 00:47:16.475499 25269 1289 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.78.168 ef0d37d2-6623-4df7-854f-321d15729754 2019-12-23 00:47:16.509069 25270 1840 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 e6041cff-bbd8-420f-87aa-2cefae0d183a 2019-12-23 00:47:45.267958 25271 2529 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 692\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.12E4\nmove_type: '1'\nsale_id: 1840\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-730\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-730 187.149.78.168 e6041cff-bbd8-420f-87aa-2cefae0d183a 2019-12-23 00:47:45.289189 25272 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 23:45:11.790294000 Z\n- &1 2019-12-23 00:00:58.417625000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 01:11:47.273838707 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945764\n mask_addr: 4294967295\nsign_in_count:\n- 1180\n- 1181\n 2362 \N 200.68.180.36 ee3105a1-2ff3-4f85-babe-8d9faad97b5a 2019-12-23 01:11:47.284784 25273 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yzREbRtAwvHXR-qm6dMx\n- xvseyXmcrzjsE2yP2fuy\n 2363 \N 200.68.180.36 ee3105a1-2ff3-4f85-babe-8d9faad97b5a 2019-12-23 01:11:47.30732 25274 700 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 692\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.1238429E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.8409E4\ncash_fund: !ruby/object:BigDecimal 18:0.227874E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1068774E5\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.78.168 638801c5-5a3b-4b88-95e2-aa98c9a8b0ca 2019-12-23 01:26:08.331821 25275 692 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 638801c5-5a3b-4b88-95e2-aa98c9a8b0ca 2019-12-23 01:26:08.347096 25276 374 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-22\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.59.52 e20f65ae-b837-4963-9cb9-5271a38d79b4 2019-12-23 02:20:57.887811 25277 1389 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.59.52 e20f65ae-b837-4963-9cb9-5271a38d79b4 2019-12-23 02:20:57.924556 25278 375 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2019-12-22\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.59.52 cc309980-d7de-49de-9b06-2c576f7f13ef 2019-12-23 02:21:18.982929 25279 1841 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 694\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2019-12-22\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-193\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 6c3acc36-b890-4470-894e-46e522c1ad45 2019-12-23 02:31:46.089053 25280 848 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 4 \N 189.186.59.52 6c3acc36-b890-4470-894e-46e522c1ad45 2019-12-23 02:31:46.116495 25281 1841 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 b71420c4-fdca-4101-a4da-8e60a8a5ad26 2019-12-23 02:32:18.311352 25282 2530 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 694\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 1841\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-193\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-193 189.186.59.52 b71420c4-fdca-4101-a4da-8e60a8a5ad26 2019-12-23 02:32:18.332912 25283 701 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 694\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.42405E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.35E4\ncash_fund: !ruby/object:BigDecimal 18:0.892E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4392E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.59.52 b8613795-bc55-433b-8fcb-3f83c6c0f0bb 2019-12-23 03:08:59.61936 25284 694 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.59.52 b8613795-bc55-433b-8fcb-3f83c6c0f0bb 2019-12-23 03:08:59.634013 25285 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-20 17:07:29.311079000 Z\n- &1 2019-12-22 17:04:45.450782000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 17:10:15.386073098 Z\nsign_in_count:\n- 52\n- 53\n 106 \N 187.149.78.168 ae1e895f-813e-4aa2-bdce-7b6fd9643486 2019-12-23 17:10:15.421341 25286 27 User \N \N 27 User \N update ---\nunique_session_id:\n- 6Ews8yc7S-iAbqHFyFFu\n- 7vXwX1i_FLrWxX6B22Cu\n 107 \N 187.149.78.168 ae1e895f-813e-4aa2-bdce-7b6fd9643486 2019-12-23 17:10:15.446769 25287 696 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.227874E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 2278.74 187.149.78.168 449a6f9c-f1dc-45f1-8bb4-118f987abff9 2019-12-23 17:14:07.295181 25288 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 22:54:42.332569000 Z\n- &1 2019-12-22 23:46:28.097121000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 17:27:13.405080453 Z\nsign_in_count:\n- 418\n- 419\n 841 \N 187.149.78.168 aa241bd3-1a56-4608-b336-5c010fb2d887 2019-12-23 17:27:13.412029 25289 2 User \N \N 2 User \N update ---\nunique_session_id:\n- QErbJ6LcMevPh7PrEJ5D\n- THpAJMaJe-zx3Uqy3DAe\n 842 \N 187.149.78.168 aa241bd3-1a56-4608-b336-5c010fb2d887 2019-12-23 17:27:13.431732 25290 2531 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 608\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1494\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 97128340-3cc5-402b-aa28-76ef935491c9 2019-12-23 17:31:25.837495 25291 2531 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 608\n- 695\n 2 movimiento de efectivo por venta con folio PV2-V-588 187.149.78.168 97128340-3cc5-402b-aa28-76ef935491c9 2019-12-23 17:31:25.861433 25292 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 00:00:58.417625000 Z\n- &1 2019-12-23 01:11:47.273838000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 17:43:42.393573266 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945764\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945764\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1181\n- 1182\n 2364 \N 189.186.59.52 1745228b-1e06-4936-b3b0-d015338829c6 2019-12-23 17:43:42.403866 25293 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xvseyXmcrzjsE2yP2fuy\n- WwPmZvNyU8MYyEPtW_7s\n 2365 \N 189.186.59.52 1745228b-1e06-4936-b3b0-d015338829c6 2019-12-23 17:43:42.430775 25294 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 01:11:47.273838000 Z\n- &1 2019-12-23 17:43:42.393573000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 18:01:08.321397393 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945764\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946333\n mask_addr: 4294967295\nsign_in_count:\n- 1182\n- 1183\n 2366 \N 200.68.182.93 86945332-5929-4510-b45a-a4394643d91f 2019-12-23 18:01:08.328912 25295 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WwPmZvNyU8MYyEPtW_7s\n- g2ywxrZsd2DpHyVaFpuL\n 2367 \N 200.68.182.93 86945332-5929-4510-b45a-a4394643d91f 2019-12-23 18:01:08.346326 25296 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 20:03:16.564408000 Z\n- &1 2019-12-22 19:55:39.344257000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 18:07:39.907312834 Z\nsign_in_count:\n- 66\n- 67\n 135 \N 189.186.59.52 82f93b39-f10e-42fe-b5c4-a28fcd42852b 2019-12-23 18:07:39.912934 25297 21 User \N \N 21 User \N update ---\nunique_session_id:\n- S6zZhSoT27BHXxf_Szqi\n- cdrfbncMVqQ1uhd2Brr1\n 136 \N 189.186.59.52 82f93b39-f10e-42fe-b5c4-a28fcd42852b 2019-12-23 18:07:39.925512 25298 697 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.892E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 892.0 189.186.59.52 293621ca-9a8d-411f-b3a3-1d9f1b355216 2019-12-23 18:10:40.057384 25977 1453 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.78.168 8266a6c8-4711-45f4-91b6-c5d7741026ca 2019-12-27 20:52:41.564473 25299 1842 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 697\namount: !ruby/object:BigDecimal 18:0.562762E4\ntax: !ruby/object:BigDecimal 18:0.16538E3\ndiscount: !ruby/object:BigDecimal 18:0.8588E3\ntotal: !ruby/object:BigDecimal 18:0.49342E4\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-194\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 e97544df-0b77-4372-9b2d-6f7c65b5922d 2019-12-23 18:16:19.536978 25300 856 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.59.52 e97544df-0b77-4372-9b2d-6f7c65b5922d 2019-12-23 18:16:19.572178 25301 993 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.59.52 e97544df-0b77-4372-9b2d-6f7c65b5922d 2019-12-23 18:16:19.608376 25302 826 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 189.186.59.52 e97544df-0b77-4372-9b2d-6f7c65b5922d 2019-12-23 18:16:19.636541 25303 1112 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.59.52 e97544df-0b77-4372-9b2d-6f7c65b5922d 2019-12-23 18:16:19.679173 25304 1153 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.59.52 e97544df-0b77-4372-9b2d-6f7c65b5922d 2019-12-23 18:16:19.714612 25305 1113 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.59.52 e97544df-0b77-4372-9b2d-6f7c65b5922d 2019-12-23 18:16:19.749187 25306 846 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.59.52 e97544df-0b77-4372-9b2d-6f7c65b5922d 2019-12-23 18:16:19.780061 25307 1842 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 2e042fe6-76ad-419b-8a44-d6f2103950ff 2019-12-23 18:16:46.41736 25308 2532 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 697\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49342E4\nmove_type: '1'\nsale_id: 1842\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-194\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.494E4\nchange: !ruby/object:BigDecimal 18:0.58E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-194 189.186.59.52 2e042fe6-76ad-419b-8a44-d6f2103950ff 2019-12-23 18:16:46.439152 25309 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 17:43:42.393573000 Z\n- &1 2019-12-23 18:01:08.321397000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 19:09:23.944439128 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946333\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946333\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1183\n- 1184\n 2368 \N 187.149.78.168 c5e516fc-253e-4524-a7a0-433e04bb2536 2019-12-23 19:09:23.965767 25310 4 User \N \N 4 User \N update ---\nunique_session_id:\n- g2ywxrZsd2DpHyVaFpuL\n- xRLzzLRbq6_aK5m6E-sh\n 2369 \N 187.149.78.168 c5e516fc-253e-4524-a7a0-433e04bb2536 2019-12-23 19:09:23.988452 25311 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 18:01:08.321397000 Z\n- &1 2019-12-23 19:09:23.944439000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 19:10:37.538445899 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946333\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1184\n- 1185\n 2370 \N 189.186.59.52 bd48d74e-0cca-4d2e-a57c-9d6de915bc12 2019-12-23 19:10:37.54642 25312 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xRLzzLRbq6_aK5m6E-sh\n- 5GZwAt6perFGgsUB43Wt\n 2371 \N 189.186.59.52 bd48d74e-0cca-4d2e-a57c-9d6de915bc12 2019-12-23 19:10:37.564201 25313 1271 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.59.52 ab7d8cc9-6208-44a5-b3f3-132e4612b22b 2019-12-23 19:27:38.79377 25314 376 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2019-12-23\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.59.52 666c1224-fa26-4b0f-9343-abc617b9bea6 2019-12-23 19:27:48.683128 25315 1236 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.59.52 145d0c4a-2a80-4e91-ab5a-06364852f8fa 2019-12-23 19:31:09.747259 25316 1236 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.59.52 ed694d32-5c67-4131-835e-30672fbb90b7 2019-12-23 19:31:13.385068 25317 1843 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 697\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-195\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 ff41efeb-2075-4f07-9fdd-f838a49cc779 2019-12-23 19:32:47.562428 25318 878 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.59.52 ff41efeb-2075-4f07-9fdd-f838a49cc779 2019-12-23 19:32:47.602482 25319 1843 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 2e15e46a-891f-44c3-8335-b231b1638024 2019-12-23 19:33:00.039489 25320 2533 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 697\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 1843\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-195\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-195 189.186.59.52 2e15e46a-891f-44c3-8335-b231b1638024 2019-12-23 19:33:00.062204 25321 1109 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.59.52 8c5b49c8-b319-496d-8ee3-8a32ed2db373 2019-12-23 19:36:04.108643 25322 1243 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.59.52 827fb809-cd3a-4bd6-8e41-5f377bbf69a4 2019-12-23 19:38:56.272394 25323 1243 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.59.52 bb44dd0b-dc8b-417e-aee7-0ffbfb2872ea 2019-12-23 19:38:59.472135 25978 1381 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.78.168 95a21d18-ce33-45c4-a90f-438771039959 2019-12-27 20:57:46.592975 25324 377 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2019-12-23\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.59.52 25872254-937f-47f5-955c-cea2580afce0 2019-12-23 19:39:08.089912 25325 1844 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 696\namount: !ruby/object:BigDecimal 18:0.839E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.839E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-731\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 b2d26e01-943f-4550-9d39-ad0bd41b0e2b 2019-12-23 19:47:15.911214 25326 1100 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.78.168 b2d26e01-943f-4550-9d39-ad0bd41b0e2b 2019-12-23 19:47:15.936768 25327 1844 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 4f425c8a-ea7b-4049-8b08-702abf7dddb7 2019-12-23 19:47:33.974333 25328 2534 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 696\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.839E3\nmove_type: '1'\nsale_id: 1844\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-731\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-731 187.149.78.168 4f425c8a-ea7b-4049-8b08-702abf7dddb7 2019-12-23 19:47:33.993783 25329 377 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-23\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.78.168 efbfd808-8719-40d4-9f5f-2484b85f7f58 2019-12-23 19:54:07.881634 25330 1125 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.4E1\n 13 \N 187.149.78.168 efbfd808-8719-40d4-9f5f-2484b85f7f58 2019-12-23 19:54:07.899353 25331 1475 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 768\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 efbfd808-8719-40d4-9f5f-2484b85f7f58 2019-12-23 19:54:07.92287 25332 1476 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 862\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 efbfd808-8719-40d4-9f5f-2484b85f7f58 2019-12-23 19:54:07.945485 25333 376 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-23\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.78.168 1d559af2-1a94-4eac-9a37-920b01421206 2019-12-23 19:54:15.966741 25334 1252 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 17 \N 187.149.78.168 1d559af2-1a94-4eac-9a37-920b01421206 2019-12-23 19:54:15.985211 25335 375 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-23\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.78.168 f2e3d855-6835-466b-aded-0df18e6f1799 2019-12-23 19:54:24.116237 25336 1090 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 11 \N 187.149.78.168 f2e3d855-6835-466b-aded-0df18e6f1799 2019-12-23 19:54:24.131656 25337 1129 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.59.52 3c8b9a8b-4b3b-4490-9d02-485d7055dcdb 2019-12-23 19:54:51.246184 25338 1129 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.59.52 c4a107ac-77ac-4e87-bf1c-aa70c62123cd 2019-12-23 19:54:56.591773 25339 378 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2019-12-23\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.59.52 f92915f3-58f0-42eb-9ea9-58ef5c3d7412 2019-12-23 19:54:57.665686 25340 1845 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 695\namount: !ruby/object:BigDecimal 18:0.299E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.29E2\ntotal: !ruby/object:BigDecimal 18:0.27E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-917\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 a5ede1c3-2453-4873-9ee0-e3f90f6f4a3e 2019-12-23 20:04:09.759811 25341 786 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 16 \N 187.149.78.168 a5ede1c3-2453-4873-9ee0-e3f90f6f4a3e 2019-12-23 20:04:09.786483 25342 1845 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 62a38beb-0b78-4815-9b7f-c542a0a18efd 2019-12-23 20:04:14.620823 25343 2535 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 695\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.27E3\nmove_type: '1'\nsale_id: 1845\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-917\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.23E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-917 187.149.78.168 62a38beb-0b78-4815-9b7f-c542a0a18efd 2019-12-23 20:04:14.650354 25344 1846 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 696\namount: !ruby/object:BigDecimal 18:0.989E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.989E2\ntotal: !ruby/object:BigDecimal 18:0.8901E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-732\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 4f2fb3ac-cfc2-4c89-8b13-96403d683775 2019-12-23 20:11:46.279642 25345 1445 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 8 \N 187.149.78.168 4f2fb3ac-cfc2-4c89-8b13-96403d683775 2019-12-23 20:11:46.30596 25346 1846 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 878a6174-add9-4b4d-8e5d-0dd89469c0e3 2019-12-23 20:12:05.736423 25347 2536 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 696\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.8901E3\nmove_type: '1'\nsale_id: 1846\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-732\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8901E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-732 187.149.78.168 878a6174-add9-4b4d-8e5d-0dd89469c0e3 2019-12-23 20:12:05.758238 26061 1931 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 9faeddcd-3f52-40af-b150-c8396ad61937 2019-12-28 20:07:19.893594 25348 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 19:09:23.944439000 Z\n- &1 2019-12-23 19:10:37.538445000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 20:20:16.553608090 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945933\n mask_addr: 4294967295\nsign_in_count:\n- 1185\n- 1186\n 2372 \N 200.68.180.205 37bc77a2-1254-4b9d-8272-b307d53ad2f9 2019-12-23 20:20:16.560852 25349 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5GZwAt6perFGgsUB43Wt\n- zAzLshD5tXpR__r-8-Gc\n 2373 \N 200.68.180.205 37bc77a2-1254-4b9d-8272-b307d53ad2f9 2019-12-23 20:20:16.577041 25350 216 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-93\namount: !ruby/object:BigDecimal 18:0.2395E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2395E3\nobservations: ''\npurchase_date: 2019-12-23\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-93 por $ 239.5 MXN creada. 187.149.78.168 1dbbcd8a-9eef-40f7-b619-85d14384fbd3 2019-12-23 20:21:46.853265 25351 541 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.78.168 1dbbcd8a-9eef-40f7-b619-85d14384fbd3 2019-12-23 20:21:46.873762 25352 1847 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 695\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-918\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 75e57f1e-7aff-47ed-aadf-7a7a25be048c 2019-12-23 20:22:07.114422 25353 541 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.78.168 75e57f1e-7aff-47ed-aadf-7a7a25be048c 2019-12-23 20:22:07.14087 25354 1847 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-918 cancelada. 187.149.78.168 ee72617e-0cb8-461a-b6d2-3732d1fec24c 2019-12-23 20:22:11.886999 25355 541 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.78.168 ee72617e-0cb8-461a-b6d2-3732d1fec24c 2019-12-23 20:22:11.909862 25356 1848 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 695\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-919\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 c4320f6c-71fe-4818-8362-1fa51d7b3e68 2019-12-23 20:22:37.119424 25357 541 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.78.168 c4320f6c-71fe-4818-8362-1fa51d7b3e68 2019-12-23 20:22:37.145692 25358 1848 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 0e1745ca-f315-4feb-9181-da31a0ae8c31 2019-12-23 20:22:41.538243 25359 2537 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 695\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.479E3\nmove_type: '1'\nsale_id: 1848\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-919\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.479E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-919 187.149.78.168 0e1745ca-f315-4feb-9181-da31a0ae8c31 2019-12-23 20:22:41.558742 25360 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 19:10:37.538445000 Z\n- &1 2019-12-23 20:20:16.553608000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 20:22:48.627342340 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945933\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945933\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1186\n- 1187\n 2374 \N 189.186.59.52 9496f116-0b28-4a38-b78e-ca1de9ef8d6b 2019-12-23 20:22:48.634568 25361 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zAzLshD5tXpR__r-8-Gc\n- eLeJtHwZeyNtxHqimE4T\n 2375 \N 189.186.59.52 9496f116-0b28-4a38-b78e-ca1de9ef8d6b 2019-12-23 20:22:48.650411 25362 968 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '968'\n is_parent: false\n sku: BOL-968\n name: 1BLCO19037\n description: MOCULINA NEGRA COE\n price_base: '749.5'\n price_sale: '1499.0'\n img_product: backpack-cloe-con-tassel-tienda-oficial-D_NQ_NP_848681-MLM32573908095_102019-F.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000968'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-12-17 23:34:26.589883'\n updated_at: &12 2019-12-23 20:23:25.273712043 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '968'\n sku: BOL-968\n name: 1BLCO19037\n description: MOCULINA NEGRA COE\n price_base: '749.50'\n price_sale: '1499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-12-17 23:34:26.589883'\n updated_at: '2019-12-17 23:34:26.656775'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000968'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '968'\n type: *3\n value: 968\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-968\n type: *7\n value: BOL-968\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCO19037\n type: *8\n value: 1BLCO19037\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCULINA NEGRA COE\n type: *6\n value: MOCULINA NEGRA COE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '749.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1499E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: backpack-cloe-con-tassel-tienda-oficial-D_NQ_NP_848681-MLM32573908095_102019-F.jpg\n type: *2\n value: backpack-cloe-con-tassel-tienda-oficial-D_NQ_NP_848681-MLM32573908095_102019-F.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000968'\n type: *2\n value: '0000968'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-12-17 23:34:26.589883'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- backpack-cloe-con-tassel-tienda-oficial-D_NQ_NP_848681-MLM32573908095_102019-F.jpg\n 3 El producto BOL-968 fue modificado. 189.186.59.52 d230f1b1-c2f5-45b7-bdd2-58d31887243c 2019-12-23 20:23:25.315567 25363 1849 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 696\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.54E2\ntotal: !ruby/object:BigDecimal 18:0.495E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-733\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 134658ed-d07f-44df-b8ab-7ab3e5a31f0c 2019-12-23 20:26:24.758787 25364 1138 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.78.168 134658ed-d07f-44df-b8ab-7ab3e5a31f0c 2019-12-23 20:26:24.785044 25365 1849 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 515d3082-48c9-4cbc-8eb0-4468765c5084 2019-12-23 20:26:29.022383 25366 2538 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 696\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.495E3\nmove_type: '1'\nsale_id: 1849\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-733\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.495E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-733 187.149.78.168 515d3082-48c9-4cbc-8eb0-4468765c5084 2019-12-23 20:26:29.042363 25367 953 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '953'\n is_parent: false\n sku: BOL-953\n name: 1BLCI19316\n description: BOLSA NEGRA CLOE CON CADENAS\n price_base: '1049.5'\n price_sale: '2099.0'\n img_product: BSAL316_NEGR_1_300x435.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170766950'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-11-26 01:28:31.371143'\n updated_at: &12 2019-12-23 20:27:53.550058975 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '953'\n sku: BOL-953\n name: 1BLCI19316\n description: BOLSA NEGRA CLOE CON CADENAS\n price_base: '1049.50'\n price_sale: '2099.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-11-26 01:28:31.371143'\n updated_at: '2019-12-08 18:03:28.332866'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170766950'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: BSAL316_PLAT_1_828x1200.jpg\n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '953'\n type: *3\n value: 953\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-953\n type: *7\n value: BOL-953\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCI19316\n type: *8\n value: 1BLCI19316\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA NEGRA CLOE CON CADENAS\n type: *6\n value: BOLSA NEGRA CLOE CON CADENAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '1049.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.10495E4\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '2099.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2099E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BSAL316_NEGR_1_300x435.jpg\n type: *2\n value: BSAL316_NEGR_1_300x435.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170766950'\n type: *2\n value: '7509170766950'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-11-26 01:28:31.371143'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/BSAL316_PLAT_1_828x1200.jpg"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader60639440\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_BSAL316_PLAT_1_828x1200.jpg"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader60618780\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_BSAL316_PLAT_1_828x1200.jpg"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader60614480\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_BSAL316_PLAT_1_828x1200.jpg"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- BSAL316_NEGR_1_300x435.jpg\n 4 El producto BOL-953 fue modificado. 189.186.59.52 8b2607d1-21bb-444d-8e9a-94d6d031e6e2 2019-12-23 20:27:53.598575 25368 473 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '473'\n is_parent: false\n sku: BOL-473\n name: EMEY780\n description: MOCHILA CLOE\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: EMEY780_NEGR_1_828x1200.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000473'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-11 20:52:05.820697'\n updated_at: &12 2019-12-23 20:30:22.511115095 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '473'\n sku: BOL-473\n name: EMEY780\n description: MOCHILA CLOE\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-11 20:52:05.820697'\n updated_at: '2019-02-11 20:52:05.882543'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000473'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '473'\n type: *3\n value: 473\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-473\n type: *7\n value: BOL-473\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: EMEY780\n type: *8\n value: EMEY780\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCHILA CLOE\n type: *6\n value: MOCHILA CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: EMEY780_NEGR_1_828x1200.jpg\n type: *2\n value: EMEY780_NEGR_1_828x1200.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000473'\n type: *2\n value: '0000473'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-11 20:52:05.820697'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- EMEY780_NEGR_1_828x1200.jpg\n 3 El producto BOL-473 fue modificado. 189.186.59.52 a0924716-26a4-4f2b-abd5-84cdc7017d24 2019-12-23 20:30:22.551653 25369 1850 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 696\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.899E2\ntotal: !ruby/object:BigDecimal 18:0.8091E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-734\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 1b5157e4-6b80-4482-b3d6-fa363fbc5ae6 2019-12-23 20:37:35.671877 25370 1164 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.78.168 1b5157e4-6b80-4482-b3d6-fa363fbc5ae6 2019-12-23 20:37:35.698252 25371 1850 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 6439d87c-6de2-43fc-923b-55eac1a5a86a 2019-12-23 20:38:35.715163 25372 2539 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 696\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8091E3\nmove_type: '1'\nsale_id: 1850\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-734\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.81E3\nchange: !ruby/object:BigDecimal 18:0.9E0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-734 187.149.78.168 6439d87c-6de2-43fc-923b-55eac1a5a86a 2019-12-23 20:38:35.734915 25373 723 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '723'\n is_parent: false\n sku: BOL-723\n name: 1BLCI19284\n description: MOCHILA CAFE CON ANIMAL PRINT\n price_base: '999.5'\n price_sale: '1999.0'\n img_product: BBAO284_CAME_1_300x435.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170766004'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-09-26 23:19:17.768418'\n updated_at: &12 2019-12-23 20:39:39.673850211 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '723'\n sku: BOL-723\n name: 1BLCI19284\n description: MOCHILA CAFE CON ANIMAL PRINT\n price_base: '999.50'\n price_sale: '1999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-09-26 23:19:17.768418'\n updated_at: '2019-09-26 23:19:17.768418'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170766004'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '723'\n type: *3\n value: 723\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-723\n type: *7\n value: BOL-723\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCI19284\n type: *8\n value: 1BLCI19284\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCHILA CAFE CON ANIMAL PRINT\n type: *6\n value: MOCHILA CAFE CON ANIMAL PRINT\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '999.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.9995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1999E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BBAO284_CAME_1_300x435.jpg\n type: *2\n value: BBAO284_CAME_1_300x435.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170766004'\n type: *2\n value: '7509170766004'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-09-26 23:19:17.768418'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BBAO284_CAME_1_300x435.jpg\n 2 El producto BOL-723 fue modificado. 189.186.59.52 df9c0b98-ec1e-4ccb-b9bc-8e50be648dc1 2019-12-23 20:39:39.715039 25374 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 20:20:16.553608000 Z\n- &1 2019-12-23 20:22:48.627342000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 20:44:23.466532497 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945933\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1187\n- 1188\n 2376 \N 187.149.78.168 4303ea4e-a074-468e-89d2-2c7d81de1b16 2019-12-23 20:44:23.47878 25375 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eLeJtHwZeyNtxHqimE4T\n- FPrTQW_GwfEzn9A9Skwh\n 2377 \N 187.149.78.168 4303ea4e-a074-468e-89d2-2c7d81de1b16 2019-12-23 20:44:23.49719 25376 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 20:22:48.627342000 Z\n- &1 2019-12-23 20:44:23.466532000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 20:44:31.704386361 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1188\n- 1189\n 2378 \N 187.149.78.168 42fe416a-231b-4273-a90d-f250345d086e 2019-12-23 20:44:31.711748 25377 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FPrTQW_GwfEzn9A9Skwh\n- HVqRoL9biwtQ8uLmVtn4\n 2379 \N 187.149.78.168 42fe416a-231b-4273-a90d-f250345d086e 2019-12-23 20:44:31.728403 25378 1268 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 187.149.78.168 9eff5dba-5c54-4f37-a6c8-6f33c2f417de 2019-12-23 20:47:12.008366 25379 703 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.78.168 9eff5dba-5c54-4f37-a6c8-6f33c2f417de 2019-12-23 20:47:12.029482 25380 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 20:44:23.466532000 Z\n- &1 2019-12-23 20:44:31.704386000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 20:49:03.895291821 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1189\n- 1190\n 2380 \N 189.186.59.52 5cf3958e-47cb-46b8-89ec-24a9cc16332c 2019-12-23 20:49:03.903145 25381 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HVqRoL9biwtQ8uLmVtn4\n- j-KxGLhor_fzfmhxU-vb\n 2381 \N 189.186.59.52 5cf3958e-47cb-46b8-89ec-24a9cc16332c 2019-12-23 20:49:03.919585 25382 379 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-12-23\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.59.52 612f27d2-7542-45a0-9a7e-6f20db6ef213 2019-12-23 20:50:09.231634 25383 1851 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 696\namount: !ruby/object:BigDecimal 18:0.589E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-735\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 4c4c1b1e-03fe-4dbc-b3fd-b956b29f65bf 2019-12-23 20:50:37.376357 25384 1139 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.78.168 4c4c1b1e-03fe-4dbc-b3fd-b956b29f65bf 2019-12-23 20:50:37.403646 25385 1851 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 03d24969-bbb7-421d-9288-9a3b66435904 2019-12-23 20:50:49.529219 25386 2540 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 696\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.589E3\nmove_type: '1'\nsale_id: 1851\ncardnumber: 1235\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-735\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-735 187.149.78.168 03d24969-bbb7-421d-9288-9a3b66435904 2019-12-23 20:50:49.55029 25387 379 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-23\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.59.52 87dbe158-0f58-4f3d-862a-d650bcfee6cf 2019-12-23 20:50:57.697651 25388 1358 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.59.52 87dbe158-0f58-4f3d-862a-d650bcfee6cf 2019-12-23 20:50:57.714686 25389 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 20:44:31.704386000 Z\n- &1 2019-12-23 20:49:03.895291000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 20:53:31.215227665 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1190\n- 1191\n 2382 \N 187.149.78.168 bf906dd9-f354-4229-ac09-538c399f5dc7 2019-12-23 20:53:31.222551 25390 4 User \N \N 4 User \N update ---\nunique_session_id:\n- j-KxGLhor_fzfmhxU-vb\n- J_bBUx3gCFjHU-vc2gBQ\n 2383 \N 187.149.78.168 bf906dd9-f354-4229-ac09-538c399f5dc7 2019-12-23 20:53:31.238615 25391 174 Customer \N \N 2 User \N update ---\nstatus:\n- active\n- 0\n 2 \N 187.149.78.168 0086c7fa-fa7b-4677-9b6c-8f1b407b8adf 2019-12-23 20:55:58.216849 25392 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 22:23:19.326620000 Z\n- &1 2019-12-22 23:01:47.719422000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 20:56:42.025158899 Z\nsign_in_count:\n- 134\n- 135\n 270 \N 187.149.78.168 b27a68b5-1ab6-45fd-a55d-13a6815c3304 2019-12-23 20:56:42.031066 25393 1 User \N \N 1 User \N update ---\nunique_session_id:\n- fLLU2zoHzRCjtMuspesy\n- NXpsxwunzXrrZy1pzWHo\n 271 \N 187.149.78.168 b27a68b5-1ab6-45fd-a55d-13a6815c3304 2019-12-23 20:56:42.044071 25394 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 20:49:03.895291000 Z\n- &1 2019-12-23 20:53:31.215227000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 21:01:16.082567246 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1191\n- 1192\n 2384 \N 187.149.78.168 f728206b-3e4c-447b-9df7-3dab2325a271 2019-12-23 21:01:16.089431 25395 4 User \N \N 4 User \N update ---\nunique_session_id:\n- J_bBUx3gCFjHU-vc2gBQ\n- PmKtdY2xuoxf4nyELyYp\n 2385 \N 187.149.78.168 f728206b-3e4c-447b-9df7-3dab2325a271 2019-12-23 21:01:16.104145 25396 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 20:53:31.215227000 Z\n- &1 2019-12-23 21:01:16.082567000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 21:21:58.970321116 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1192\n- 1193\n 2386 \N 189.186.59.52 9a81614a-e5de-48fe-8b5c-1ba960d72e0f 2019-12-23 21:21:58.978433 25397 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PmKtdY2xuoxf4nyELyYp\n- XHq8MjB2p858w_y46azU\n 2387 \N 189.186.59.52 9a81614a-e5de-48fe-8b5c-1ba960d72e0f 2019-12-23 21:21:58.994001 25398 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 21:01:16.082567000 Z\n- &1 2019-12-23 21:21:58.970321000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 21:22:23.683945380 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1193\n- 1194\n 2388 \N 187.149.78.168 8ea7a129-6e48-4989-a52b-674362f487ad 2019-12-23 21:22:23.691288 25399 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XHq8MjB2p858w_y46azU\n- shQR3oH-oodEarWZCsUN\n 2389 \N 187.149.78.168 8ea7a129-6e48-4989-a52b-674362f487ad 2019-12-23 21:22:23.706935 25400 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 21:21:58.970321000 Z\n- &1 2019-12-23 21:22:23.683945000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 21:22:50.200393677 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1194\n- 1195\n 2390 \N 189.186.59.52 d8ddbc67-9763-437d-9660-244b2262cec8 2019-12-23 21:22:50.208418 25401 4 User \N \N 4 User \N update ---\nunique_session_id:\n- shQR3oH-oodEarWZCsUN\n- XSXNiDDTTWt9Ejp--XoC\n 2391 \N 189.186.59.52 d8ddbc67-9763-437d-9660-244b2262cec8 2019-12-23 21:22:50.225068 25402 545 Product \N \N 4 User \N update ---\ndescription:\n- BOLSO CLOE\n- BOLSO CLOE GRIS COM GAMUZA Y POMPON NEGRO\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '545'\n is_parent: false\n sku: BOL-545\n name: KIYN801\n description: BOLSO CLOE GRIS COM GAMUZA Y POMPON NEGRO\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: descarga__2_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000545'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-04-16 19:32:59.920408'\n updated_at: &12 2019-12-23 21:23:48.696224477 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '545'\n sku: BOL-545\n name: KIYN801\n description: BOLSO CLOE\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-04-16 19:32:59.920408'\n updated_at: '2019-04-16 19:32:59.966949'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000545'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '545'\n type: *3\n value: 545\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-545\n type: *7\n value: BOL-545\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: KIYN801\n type: *8\n value: KIYN801\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO CLOE GRIS COM GAMUZA Y POMPON NEGRO\n type: *6\n value: BOLSO CLOE GRIS COM GAMUZA Y POMPON NEGRO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: descarga__2_.jpg\n type: *2\n value: descarga__2_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000545'\n type: *2\n value: '0000545'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-04-16 19:32:59.920408'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- descarga__2_.jpg\n 3 El producto BOL-545 fue modificado. 189.186.59.52 67c9d4cb-3b5c-4d1a-973c-7694e3a9b53f 2019-12-23 21:23:48.756489 25403 544 Product \N \N 4 User \N update ---\ndescription:\n- BOLSO CLOE\n- BOLSO CLOE CAFE CON GAMUSZA Y PONPON NEGRO\n 3 El producto BOL-544 fue modificado. 189.186.59.52 8388b3d2-9623-4779-94ef-e1c3e14982ca 2019-12-23 21:24:50.162803 25404 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 21:22:23.683945000 Z\n- &1 2019-12-23 21:22:50.200393000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 21:24:54.856882693 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1195\n- 1196\n 2392 \N 187.149.78.168 28d578be-bac1-4654-bb5f-076e6278e66e 2019-12-23 21:24:54.864833 25405 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XSXNiDDTTWt9Ejp--XoC\n- axB3W8U8sdZxeSHffsGf\n 2393 \N 187.149.78.168 28d578be-bac1-4654-bb5f-076e6278e66e 2019-12-23 21:24:54.881291 25406 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 21:22:50.200393000 Z\n- &1 2019-12-23 21:24:54.856882000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 21:30:51.426547828 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1196\n- 1197\n 2394 \N 189.186.59.52 0ca04095-8ed0-4045-9a1b-7760eb40917c 2019-12-23 21:30:51.434588 25407 4 User \N \N 4 User \N update ---\nunique_session_id:\n- axB3W8U8sdZxeSHffsGf\n- _cCajy76YmsuFWipv-92\n 2395 \N 189.186.59.52 0ca04095-8ed0-4045-9a1b-7760eb40917c 2019-12-23 21:30:51.463359 25408 446 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '446'\n is_parent: false\n sku: BOL-446\n name: TUVA589\n description: BACK PACK CLOE\n price_base: '849.5'\n price_sale: '1699.0'\n img_product: descarga__3_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000446'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-07 01:36:18.724105'\n updated_at: &12 2019-12-23 21:31:26.689597292 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '446'\n sku: BOL-446\n name: TUVA589\n description: BACK PACK CLOE\n price_base: '849.50'\n price_sale: '1699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-07 01:36:18.724105'\n updated_at: '2019-02-07 01:36:18.784196'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000446'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '446'\n type: *3\n value: 446\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-446\n type: *7\n value: BOL-446\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: TUVA589\n type: *8\n value: TUVA589\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BACK PACK CLOE\n type: *6\n value: BACK PACK CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '849.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1699E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: descarga__3_.jpg\n type: *2\n value: descarga__3_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000446'\n type: *2\n value: '0000446'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-07 01:36:18.724105'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- descarga__3_.jpg\n 3 El producto BOL-446 fue modificado. 189.186.59.52 b078e572-26a1-4459-bc55-2a0a69ba2b9a 2019-12-23 21:31:26.730331 25409 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 22:51:19.140624000 Z\n- &1 2019-12-22 22:57:42.103218000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 21:31:37.452124010 Z\nsign_in_count:\n- 39\n- 40\n 80 \N 187.149.78.168 c91f7e8d-bc50-4a2b-a5ea-fb6d649ba0eb 2019-12-23 21:31:37.457841 25410 24 User \N \N 24 User \N update ---\nunique_session_id:\n- 3EQca8KpttNxb2jwxzs_\n- RFA8CBG2K_2NsP7woHs7\n 81 \N 187.149.78.168 c91f7e8d-bc50-4a2b-a5ea-fb6d649ba0eb 2019-12-23 21:31:37.470203 25411 1852 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 696\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-736\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 6b8ebb74-7284-4a95-9dec-214cd4730cd1 2019-12-23 21:31:56.947814 25412 1374 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 187.149.78.168 6b8ebb74-7284-4a95-9dec-214cd4730cd1 2019-12-23 21:31:56.973526 25413 1852 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 ab6a89ca-62f4-4e8c-b888-187acf61a59a 2019-12-23 21:32:02.779329 25414 2541 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 696\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.549E3\nmove_type: '1'\nsale_id: 1852\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-736\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-736 187.149.78.168 ab6a89ca-62f4-4e8c-b888-187acf61a59a 2019-12-23 21:32:02.801486 25415 453 Product \N \N 4 User \N update ---\ndescription:\n- BOLSO CLOE\n- BOLSO PEQUEÑO CLOE AMARILLO MOSTAZA\n 3 El producto BOL-453 fue modificado. 189.186.59.52 7a760363-08f7-4bbf-ae26-2208a5c83133 2019-12-23 21:34:46.313826 25416 51 Product \N \N 4 User \N update ---\ndescription:\n- BOLSA CLOE\n- 'MOCHILA CLOE NEGRA '\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '51'\n is_parent: false\n sku: BOL-51\n name: SIGR576\n description: 'MOCHILA CLOE NEGRA '\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: descarga__4_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000051'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862629'\n updated_at: &12 2019-12-23 21:43:11.329186011 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '51'\n sku: BOL-51\n name: SIGR576\n description: BOLSA CLOE\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862629'\n updated_at: '2019-02-04 09:10:20.416839'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000051'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '51'\n type: *3\n value: 51\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-51\n type: *7\n value: BOL-51\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: SIGR576\n type: *8\n value: SIGR576\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'MOCHILA CLOE NEGRA '\n type: *6\n value: 'MOCHILA CLOE NEGRA '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: descarga__4_.jpg\n type: *2\n value: descarga__4_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000051'\n type: *2\n value: '0000051'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862629'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- descarga__4_.jpg\n 3 El producto BOL-51 fue modificado. 189.186.59.52 ad1e8f8d-e11e-40ae-89ff-4b4bd1c3cb3b 2019-12-23 21:43:11.367307 25417 465 Product \N \N 4 User \N update ---\ndescription:\n- CARTERA CLOE\n- CARTERA PLATEADA CLOE\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '465'\n is_parent: false\n sku: CAR-465\n name: SIGR572\n description: CARTERA PLATEADA CLOE\n price_base: '399.5'\n price_sale: '799.0'\n img_product: images__2_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000465'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-11 18:21:09.462451'\n updated_at: &12 2019-12-23 21:43:50.268819086 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '465'\n sku: CAR-465\n name: SIGR572\n description: CARTERA CLOE\n price_base: '399.50'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-11 18:21:09.462451'\n updated_at: '2019-02-11 18:21:09.519107'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000465'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '465'\n type: *3\n value: 465\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-465\n type: *7\n value: CAR-465\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: SIGR572\n type: *8\n value: SIGR572\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA PLATEADA CLOE\n type: *6\n value: CARTERA PLATEADA CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '399.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: images__2_.jpg\n type: *2\n value: images__2_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000465'\n type: *2\n value: '0000465'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-11 18:21:09.462451'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- images__2_.jpg\n 3 El producto CAR-465 fue modificado. 189.186.59.52 59597c07-36c4-422d-b8ab-174d6064ffb1 2019-12-23 21:43:50.309884 25418 540 Product \N \N 4 User \N update ---\ndescription:\n- BACKPACK CLOE\n- BACKPACK BLANCA Y AMARILLA CON CORAZON COLECCION AGHATA CLOE\n 3 El producto BOL-540 fue modificado. 189.186.59.52 7feb280b-f8cc-41b1-b860-caa6b95c8d9b 2019-12-23 21:50:37.739339 25419 540 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '540'\n is_parent: false\n sku: BOL-540\n name: LHAN344\n description: BACKPACK BLANCA Y AMARILLA CON CORAZON COLECCION AGHATA CLOE\n price_base: '799.5'\n price_sale: '1599.0'\n img_product: BLAO191_LILA_1_828x1200.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000540'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-04-16 19:24:37.471515'\n updated_at: &12 2019-12-23 21:51:52.414288578 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '540'\n sku: BOL-540\n name: LHAN344\n description: BACKPACK BLANCA Y AMARILLA CON CORAZON COLECCION AGHATA CLOE\n price_base: '799.50'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-04-16 19:24:37.471515'\n updated_at: '2019-12-23 21:50:37.73498'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000540'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '540'\n type: *3\n value: 540\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-540\n type: *7\n value: BOL-540\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: LHAN344\n type: *8\n value: LHAN344\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BACKPACK BLANCA Y AMARILLA CON CORAZON COLECCION\n AGHATA CLOE\n type: *6\n value: BACKPACK BLANCA Y AMARILLA CON CORAZON COLECCION AGHATA CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '799.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BLAO191_LILA_1_828x1200.jpg\n type: *2\n value: BLAO191_LILA_1_828x1200.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000540'\n type: *2\n value: '0000540'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-04-16 19:24:37.471515'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BLAO191_LILA_1_828x1200.jpg\n 4 El producto BOL-540 fue modificado. 189.186.59.52 bc0c7598-d14d-4139-b163-433160cf63e6 2019-12-23 21:51:52.455838 25420 491 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.59.52 df30f3a0-95eb-40c3-afed-ad39f6d87184 2019-12-23 21:54:33.857133 25421 1853 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 696\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-737\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 db17ef11-2837-46be-9e45-4e8a0fa9a348 2019-12-23 22:00:27.404797 25422 1146 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.78.168 db17ef11-2837-46be-9e45-4e8a0fa9a348 2019-12-23 22:00:27.430466 25423 1853 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 f683a095-bc09-47cc-ab32-2849370b2c99 2019-12-23 22:00:50.879566 25424 2542 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 696\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 1853\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-737\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-737 187.149.78.168 f683a095-bc09-47cc-ab32-2849370b2c99 2019-12-23 22:00:50.90995 25425 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 23:41:48.955272000 Z\n- &1 2019-12-22 18:30:13.737953000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 22:22:14.341557685 Z\nsign_in_count:\n- 73\n- 74\n 151 \N 187.149.78.168 ce0b3d54-34b9-4c11-80b7-9373dea2cf9b 2019-12-23 22:22:14.359051 25426 8 User \N \N 8 User \N update ---\nunique_session_id:\n- x3xyoMmEV_ZDBxA3PyD_\n- cPX6z6rSyWqCb-WfjQgD\n 152 \N 187.149.78.168 ce0b3d54-34b9-4c11-80b7-9373dea2cf9b 2019-12-23 22:22:14.375777 25427 1854 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 696\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-738\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 2c8a5732-a8e9-4e9d-b95d-ce05757fd68d 2019-12-23 22:27:35.638322 25428 1376 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.78.168 2c8a5732-a8e9-4e9d-b95d-ce05757fd68d 2019-12-23 22:27:35.669965 25429 1854 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 2033a118-f36d-4b11-9ae0-8650a72111ac 2019-12-23 22:28:49.014929 25430 2543 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 696\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1854\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-738\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-738 187.149.78.168 2033a118-f36d-4b11-9ae0-8650a72111ac 2019-12-23 22:28:49.039958 25431 1275 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.78.168 ac6f76cd-be13-49c7-8c81-b230f56e41a4 2019-12-23 22:44:47.408089 25432 1275 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.78.168 ab8ed3a4-d4ed-4d1a-a72c-5635a9328bf9 2019-12-23 22:44:51.690473 25433 380 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-12-23\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.78.168 bbd85b8f-6cb8-4aba-aa06-13e2c1b9a7e1 2019-12-23 22:44:53.117828 25434 373 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-23\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.78.168 3d3f1276-00cd-4420-a72f-9a4aba1265f3 2019-12-23 22:45:02.646013 25435 1477 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 867\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 3d3f1276-00cd-4420-a72f-9a4aba1265f3 2019-12-23 22:45:02.665329 25436 1086 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.78.168 f5ebabb8-d570-4c55-a9de-956b213caf6a 2019-12-23 22:46:03.927139 25437 1086 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.78.168 6dc675c1-c0d6-4cf4-b4ac-0542e751f4c5 2019-12-23 22:46:12.7754 25438 381 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-12-23\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.78.168 f450e2a3-47dc-4392-83e4-daf9ee2a0450 2019-12-23 22:46:21.094675 25439 381 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-23\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.78.168 d4c70876-026b-4d2c-b910-c1ba033446d9 2019-12-23 22:47:34.120623 25440 1478 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 753\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 d4c70876-026b-4d2c-b910-c1ba033446d9 2019-12-23 22:47:34.164749 25441 2544 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 696\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1763\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.5E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-689 187.149.78.168 8388246d-3358-4dfe-a489-592d5677c2b1 2019-12-23 23:05:15.027177 25442 2545 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 696\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.349E3\nmove_type: '1'\nsale_id: 1763\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.151E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-689 187.149.78.168 6ebb372c-9e51-4e53-bfe7-a9e59675b73a 2019-12-23 23:06:05.694416 25443 2544 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 696\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1763\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.5E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 2690df49-b309-40ba-ba98-108c7ae359ce 2019-12-23 23:06:15.365604 25444 2545 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 696\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.349E3\nmove_type: '1'\nsale_id: 1763\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.151E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 5f03b5cc-52bb-4d8f-ac7a-1ff377412f97 2019-12-23 23:06:16.277386 25445 2546 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 696\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.349E3\nmove_type: '1'\nsale_id: 1763\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.151E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-689 187.149.78.168 e0a3df5b-72b3-465e-aea3-5c9a86ae4cd1 2019-12-23 23:06:37.543536 25446 1763 Sale \N \N 27 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.78.168 7f5c2b09-1174-451d-8c8f-92019ef0afc0 2019-12-23 23:06:57.151088 25447 382 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-12-23\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.59.52 eedd7a3e-84a6-4ab6-bd90-bc59067dadc6 2019-12-23 23:09:00.148709 25448 1067 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.59.52 b1b8720a-f693-4807-a864-ba1d4daf08ac 2019-12-23 23:09:28.520462 25449 1067 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.59.52 de14238d-3b1b-4d95-9e24-7da77bdde388 2019-12-23 23:09:32.42042 25450 383 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-12-23\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.59.52 9f8a2713-9938-40ce-878c-840e9822d721 2019-12-23 23:09:33.827528 25451 383 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-23\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.59.52 55353cf0-d30a-4657-9922-c0793c9e983d 2019-12-23 23:09:47.095653 25452 1479 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 737\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.52 55353cf0-d30a-4657-9922-c0793c9e983d 2019-12-23 23:09:47.115683 25453 382 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-23\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.59.52 9e31d7a3-cb77-488b-9bf8-596ce8505e22 2019-12-23 23:11:20.742924 25454 1480 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 480\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.52 9e31d7a3-cb77-488b-9bf8-596ce8505e22 2019-12-23 23:11:20.766517 25455 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 21:24:54.856882000 Z\n- &1 2019-12-23 21:30:51.426547000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 23:13:47.223005399 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1197\n- 1198\n 2396 \N 187.149.78.168 052ed13f-c9b7-4fbb-99b6-92336219428a 2019-12-23 23:13:47.230802 25456 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _cCajy76YmsuFWipv-92\n- YaAFCJBWJdBmna7_xPXJ\n 2397 \N 187.149.78.168 052ed13f-c9b7-4fbb-99b6-92336219428a 2019-12-23 23:13:47.25141 25457 1855 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 695\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-920\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 7a54fcda-760f-4ba0-bc94-60d18d4daaeb 2019-12-23 23:21:40.389522 25458 1297 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 10 \N 187.149.78.168 7a54fcda-760f-4ba0-bc94-60d18d4daaeb 2019-12-23 23:21:40.416646 25459 1855 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 a3176809-0081-4761-8ebe-adc9434cb973 2019-12-23 23:21:47.027603 25460 2547 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 695\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 1855\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-920\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-920 187.149.78.168 a3176809-0081-4761-8ebe-adc9434cb973 2019-12-23 23:21:47.047567 25461 245 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 695\nquantity: !ruby/object:BigDecimal 18:0.1261E4\nstatus: 1\nobservations: LUZ SUO (CFE)\nexpense_date: 2019-12-23\nexpense_code: PV1-E-174\n 1 Egreso por 1261.0 registrado 187.149.78.168 77c22930-5651-4d7c-8e51-254e75c2922b 2019-12-23 23:36:10.839421 25462 2548 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 695\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1261E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 245\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 77c22930-5651-4d7c-8e51-254e75c2922b 2019-12-23 23:36:10.859756 25463 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 23:01:47.719422000 Z\n- &1 2019-12-23 20:56:42.025158000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-23 23:37:25.160229850 Z\nsign_in_count:\n- 135\n- 136\n 272 \N 187.149.78.168 30dbe9a8-91c8-4038-8580-5ef9a6dc69f9 2019-12-23 23:37:25.165983 25464 1 User \N \N 1 User \N update ---\nunique_session_id:\n- NXpsxwunzXrrZy1pzWHo\n- Xi4YxKBxA-B9XhUNiFmj\n 273 \N 187.149.78.168 30dbe9a8-91c8-4038-8580-5ef9a6dc69f9 2019-12-23 23:37:25.178146 25465 246 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 695\nquantity: !ruby/object:BigDecimal 18:0.512E3\nstatus: 1\nobservations: luz bysuo (CFE)\nexpense_date: 2019-12-23\nexpense_code: PV1-E-175\n 1 Egreso por 512.0 registrado 187.149.78.168 a65cc343-8546-4a51-96e2-2b5b2d8dd38c 2019-12-23 23:41:00.365665 26390 755 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.78.168 f3f76f84-b684-457d-b95b-e477f0bd1a15 2019-12-31 21:16:42.182957 25466 2549 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 695\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.512E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 246\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 a65cc343-8546-4a51-96e2-2b5b2d8dd38c 2019-12-23 23:41:00.392194 25467 1856 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 696\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-739\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 4b04c9ee-cf5b-4147-add7-bc3ff2678496 2019-12-23 23:54:28.150835 25468 1090 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 12 \N 187.149.78.168 4b04c9ee-cf5b-4147-add7-bc3ff2678496 2019-12-23 23:54:28.178066 25469 1856 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 b2e82c2d-e236-4e1d-bb09-6e158b1adf30 2019-12-23 23:55:11.779733 25470 2550 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 696\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 1856\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-739\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-739 187.149.78.168 b2e82c2d-e236-4e1d-bb09-6e158b1adf30 2019-12-23 23:55:11.800484 25471 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 21:30:51.426547000 Z\n- &1 2019-12-23 23:13:47.223005000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 00:26:12.050591574 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1198\n- 1199\n 2398 \N 187.149.78.168 3ae1fcf6-f40c-4d8f-b972-38927a3250da 2019-12-24 00:26:12.058595 25472 4 User \N \N 4 User \N update ---\nunique_session_id:\n- YaAFCJBWJdBmna7_xPXJ\n- BzLQMokvACNHLbEgYoXs\n 2399 \N 187.149.78.168 3ae1fcf6-f40c-4d8f-b972-38927a3250da 2019-12-24 00:26:12.075971 25473 1837 Sale \N \N 21 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-192 cancelada. 189.186.59.52 6d1caf73-a7d3-4a7c-b43b-2ff3ebfddf02 2019-12-24 00:29:17.873115 25474 2551 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 697\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.13032E4\nmove_type: '0'\nsale_id: 1837\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-192\nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.59.52 6d1caf73-a7d3-4a7c-b43b-2ff3ebfddf02 2019-12-24 00:29:17.902115 25475 1389 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 189.186.59.52 6d1caf73-a7d3-4a7c-b43b-2ff3ebfddf02 2019-12-24 00:29:17.933571 25476 1377 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.78.168 b43531f7-8ce4-4925-be4d-8be05e6b2a34 2019-12-24 00:32:57.700245 25477 384 Transfer \N \N 27 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-12-23\nuser_id: 27\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.78.168 acdfd31e-aa4a-4a0b-be85-70e2b55f92fb 2019-12-24 00:33:19.250588 25478 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 20:56:42.025158000 Z\n- &1 2019-12-23 23:37:25.160229000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 00:36:16.885549268 Z\nsign_in_count:\n- 136\n- 137\n 274 \N 187.149.78.168 71cf2ed3-6eae-48a3-97c6-3ed500c5c4b1 2019-12-24 00:36:16.897974 25479 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Xi4YxKBxA-B9XhUNiFmj\n- f4KxuNYnDa3uKRFFBh3H\n 275 \N 187.149.78.168 71cf2ed3-6eae-48a3-97c6-3ed500c5c4b1 2019-12-24 00:36:16.921066 25480 384 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-23\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.78.168 06e78515-ae98-4772-a52b-f66b3946337a 2019-12-24 00:50:58.280094 25481 1273 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 187.149.78.168 06e78515-ae98-4772-a52b-f66b3946337a 2019-12-24 00:50:58.31536 25482 380 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-23\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.78.168 2900e851-e47b-44a3-b357-aeeedbab337d 2019-12-24 00:51:04.289376 25483 1282 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 187.149.78.168 2900e851-e47b-44a3-b357-aeeedbab337d 2019-12-24 00:51:04.309765 25484 378 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-23\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.78.168 9fa5c340-5400-407c-8e49-d1fc2e39798d 2019-12-24 00:51:13.45531 25485 1123 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.78.168 9fa5c340-5400-407c-8e49-d1fc2e39798d 2019-12-24 00:51:13.473542 25486 1857 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 696\namount: !ruby/object:BigDecimal 18:0.1488E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.78E2\ntotal: !ruby/object:BigDecimal 18:0.141E4\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-740\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 fe3eeacc-16a9-422d-8077-a97dee5ca14d 2019-12-24 00:52:41.197399 25487 1281 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 10 \N 187.149.78.168 fe3eeacc-16a9-422d-8077-a97dee5ca14d 2019-12-24 00:52:41.230663 25488 1282 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 187.149.78.168 fe3eeacc-16a9-422d-8077-a97dee5ca14d 2019-12-24 00:52:41.25778 25489 1857 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 f7b9d4ae-6dc0-4df3-96a6-4ef05b7d6d64 2019-12-24 00:53:00.956502 25490 2552 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 696\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 1857\ncardnumber: 1233\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-740\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-740 187.149.78.168 f7b9d4ae-6dc0-4df3-96a6-4ef05b7d6d64 2019-12-24 00:53:00.98782 44684 1507 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1507'\n is_parent: false\n sku: BLU-1507\n name: BLS-0159\n description: BLUSA CON LISTON PAR MOÑO NEGRA Y BEIGE LC\n price_base: '275.0'\n price_sale: '749.0'\n img_product: A5814745-19BC-4EAE-99C0-14D3247AC485.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001507'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 21:09:27.506421'\n updated_at: &12 2020-11-03 21:26:34.361016737 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1507'\n sku: BLU-1507\n name: BLS-0159\n description: BLUSA CON LISTON PAR MOÑO NEGRA Y BEIGE LC\n price_base: '275.00'\n price_sale: '749.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 21:09:27.506421'\n updated_at: '2020-11-03 21:09:27.540551'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001507'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1507'\n type: *3\n value: 1507\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1507\n type: *7\n value: BLU-1507\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0159\n type: *8\n value: BLS-0159\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA CON LISTON PAR MOÑO NEGRA Y BEIGE LC\n type: *6\n value: BLUSA CON LISTON PAR MOÑO NEGRA Y BEIGE LC\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '275.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.275E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '749.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.749E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: A5814745-19BC-4EAE-99C0-14D3247AC485.jpeg\n type: *2\n value: A5814745-19BC-4EAE-99C0-14D3247AC485.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001507'\n type: *2\n value: '0001507'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 21:09:27.506421'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- A5814745-19BC-4EAE-99C0-14D3247AC485.jpeg\n 3 El producto BLU-1507 fue modificado. 187.149.136.226 af810c73-94e2-4698-a720-af7aec278d75 2020-11-03 21:26:34.408462 25491 2553 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 696\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.711E3\nmove_type: '1'\nsale_id: 1857\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-740\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.711E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-740 187.149.78.168 5a57661c-6148-4674-80ae-518e813cff51 2019-12-24 00:53:12.138762 25492 1858 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 696\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.54E2\ntotal: !ruby/object:BigDecimal 18:0.495E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-741\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 0dee670d-aac0-42cc-bf47-1477dfda26d6 2019-12-24 00:56:21.646056 25493 1374 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 187.149.78.168 0dee670d-aac0-42cc-bf47-1477dfda26d6 2019-12-24 00:56:21.671108 25494 1858 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 ecdd0b29-7518-40c9-9231-b53f92bcc43b 2019-12-24 00:56:26.381089 25495 2554 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 696\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.495E3\nmove_type: '1'\nsale_id: 1858\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-741\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.5E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-741 187.149.78.168 ecdd0b29-7518-40c9-9231-b53f92bcc43b 2019-12-24 00:56:26.403546 25496 1859 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 695\namount: !ruby/object:BigDecimal 18:0.769E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.119E3\ntotal: !ruby/object:BigDecimal 18:0.65E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-921\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 a5c0d063-3b36-48b1-b64e-0ce61764b6d1 2019-12-24 00:56:33.253621 25497 1055 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.78.168 a5c0d063-3b36-48b1-b64e-0ce61764b6d1 2019-12-24 00:56:33.311972 25498 1859 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 ceee2b69-50ce-4d47-bce9-da83d19fe0ac 2019-12-24 00:56:45.152711 25499 2555 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 695\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.65E3\nmove_type: '1'\nsale_id: 1859\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-921\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.65E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-921 187.149.78.168 ceee2b69-50ce-4d47-bce9-da83d19fe0ac 2019-12-24 00:56:45.176408 25500 1860 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 695\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-922\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 b0f39f69-7638-45ef-972f-d5a2bdbba771 2019-12-24 01:00:06.302508 25501 1238 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.78.168 b0f39f69-7638-45ef-972f-d5a2bdbba771 2019-12-24 01:00:06.333595 25502 1860 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 c8fde731-b391-414d-9a6e-b229cf25b01c 2019-12-24 01:00:12.651954 25503 2556 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 695\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 1860\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-922\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-922 187.149.78.168 c8fde731-b391-414d-9a6e-b229cf25b01c 2019-12-24 01:00:12.671808 25504 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 23:13:47.223005000 Z\n- &1 2019-12-24 00:26:12.050591000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 01:01:50.924977812 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1199\n- 1200\n 2400 \N 189.186.59.52 4cdd5797-c383-4f70-931c-8097517aef2e 2019-12-24 01:01:50.934196 25505 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BzLQMokvACNHLbEgYoXs\n- eZoo34vaq15FPnDRGw4b\n 2401 \N 189.186.59.52 4cdd5797-c383-4f70-931c-8097517aef2e 2019-12-24 01:01:50.955645 25506 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 19:55:39.344257000 Z\n- &1 2019-12-23 18:07:39.907312000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 01:02:33.405540405 Z\nsign_in_count:\n- 67\n- 68\n 137 \N 189.186.59.52 19d847be-246a-4061-a923-fc0a858dc204 2019-12-24 01:02:33.415819 25507 21 User \N \N 21 User \N update ---\nunique_session_id:\n- cdrfbncMVqQ1uhd2Brr1\n- 5HRJm1shPXR6eNN1Z-iB\n 138 \N 189.186.59.52 19d847be-246a-4061-a923-fc0a858dc204 2019-12-24 01:02:33.432805 25508 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 00:26:12.050591000 Z\n- &1 2019-12-24 01:01:50.924977000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 01:10:38.794462211 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945803\n mask_addr: 4294967295\nsign_in_count:\n- 1200\n- 1201\n 2402 \N 200.68.180.75 a3c1b3d7-3658-486f-be3a-8586b073bdd2 2019-12-24 01:10:38.808014 25509 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eZoo34vaq15FPnDRGw4b\n- sKdszAnuW4y9i_MJPhnr\n 2403 \N 200.68.180.75 a3c1b3d7-3658-486f-be3a-8586b073bdd2 2019-12-24 01:10:38.834825 25510 1861 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 695\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.74E2\ntotal: !ruby/object:BigDecimal 18:0.675E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-923\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 36c3fccc-09d8-4b47-99d3-ce3307299bb2 2019-12-24 01:17:24.648785 25511 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 187.149.78.168 36c3fccc-09d8-4b47-99d3-ce3307299bb2 2019-12-24 01:17:24.677451 25512 1861 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 bac51e86-0ecb-4600-a97f-55de4ec97c80 2019-12-24 01:18:23.913773 25513 2557 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 695\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.675E3\nmove_type: '1'\nsale_id: 1861\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-923\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.675E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-923 187.149.78.168 bac51e86-0ecb-4600-a97f-55de4ec97c80 2019-12-24 01:18:23.936459 25514 2558 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 695\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.849E3\nmove_type: '1'\nsale_id: 1399\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.849E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-727 187.149.78.168 fddf47cc-f4ae-46f6-ad6b-0aa5996672f7 2019-12-24 01:23:20.277703 25515 1399 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.78.168 04fd618d-096d-4996-8fe9-2aec499fa8a5 2019-12-24 01:23:21.376812 25516 247 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 695\nquantity: !ruby/object:BigDecimal 18:0.1128E4\nstatus: 1\nobservations: sueldo rocio\nexpense_date: 2019-12-23\nexpense_code: PV1-E-176\n 1 Egreso por 1128.0 registrado 187.149.78.168 6d40f28e-8eb4-4ce6-a1d2-3318490c59b6 2019-12-24 01:39:16.439814 25517 2559 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 695\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1128E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 247\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 6d40f28e-8eb4-4ce6-a1d2-3318490c59b6 2019-12-24 01:39:16.462099 25518 1862 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 695\namount: !ruby/object:BigDecimal 18:0.839E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.839E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-924\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 c1dbfa82-a2e1-4891-8c8f-c21fa39a6fa7 2019-12-24 01:44:43.93867 25519 1024 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.78.168 c1dbfa82-a2e1-4891-8c8f-c21fa39a6fa7 2019-12-24 01:44:43.966284 25520 1862 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 ed7668bd-3384-452f-bc84-4d581048cd1c 2019-12-24 01:46:00.554929 25521 2560 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 695\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.839E3\nmove_type: '1'\nsale_id: 1862\ncardnumber: 5207\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-924\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-924 187.149.78.168 ed7668bd-3384-452f-bc84-4d581048cd1c 2019-12-24 01:46:00.579736 25522 1863 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 695\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-925\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 d9ecd6c4-7852-4640-838d-7ffbe27a5534 2019-12-24 02:00:11.394719 25523 1241 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.78.168 d9ecd6c4-7852-4640-838d-7ffbe27a5534 2019-12-24 02:00:11.425601 25524 1863 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 c3b883fa-a19d-4c36-9f69-61163a661fd4 2019-12-24 02:01:44.475678 25525 2561 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 695\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 1863\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-925\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-925 187.149.78.168 c3b883fa-a19d-4c36-9f69-61163a661fd4 2019-12-24 02:01:44.502132 25526 1864 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 695\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-926\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 d68d62c3-a415-4d1c-97ec-14331a4bbf24 2019-12-24 02:11:38.57764 25527 1297 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 11 \N 187.149.78.168 d68d62c3-a415-4d1c-97ec-14331a4bbf24 2019-12-24 02:11:38.609159 25528 1864 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 70aa1c20-a329-4ef9-97d2-2b65fedbab8b 2019-12-24 02:11:52.378824 25529 2562 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 695\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 1864\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-926\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-926 187.149.78.168 70aa1c20-a329-4ef9-97d2-2b65fedbab8b 2019-12-24 02:11:52.402121 25530 271 Customer \N \N 27 User \N create ---\nnick_name: 'ISELA SALMORAN '\nphone: "(667) 757-1348"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ISELA SALMORAN fue registrado. 187.149.78.168 c8553fbe-9e35-4eda-b09a-2f5952781c58 2019-12-24 02:18:16.756806 25531 1865 Sale \N \N 27 User \N create ---\ncustomer_id: 271\nuser_id: 27\nopen_cash_register_id: 696\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 2\nseller_id: 19\nsale_code: PV2-V-742\nexpiration_date: 2020-01-27\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 81df9476-1a10-4d24-9d75-9c1b22f3eb10 2019-12-24 02:18:30.983952 25532 1125 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 14 \N 187.149.78.168 81df9476-1a10-4d24-9d75-9c1b22f3eb10 2019-12-24 02:18:31.016371 25578 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 18:07:39.907312000 Z\n- &1 2019-12-24 01:02:33.405540000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 03:19:21.875504279 Z\nsign_in_count:\n- 68\n- 69\n 139 \N 189.186.59.52 9947e4f8-1b2f-408d-8c39-780cda89486d 2019-12-24 03:19:21.881819 25533 2563 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 696\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1865\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-742\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-742 187.149.78.168 4e5f55cb-121e-4efb-9a16-95c62431edcd 2019-12-24 02:18:53.518123 25534 1865 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-742 cancelada. 187.149.78.168 825f7ed2-093a-4259-b893-4c3da68bc718 2019-12-24 02:19:09.470599 25535 1125 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 15 \N 187.149.78.168 825f7ed2-093a-4259-b893-4c3da68bc718 2019-12-24 02:19:09.505143 25536 1866 Sale \N \N 27 User \N create ---\ncustomer_id: 271\nuser_id: 27\nopen_cash_register_id: 696\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.799E2\ntotal: !ruby/object:BigDecimal 18:0.7191E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 2\nseller_id: 19\nsale_code: PV2-V-743\nexpiration_date: 2020-01-27\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 386a3e3c-e46f-49f2-9add-9046b3425e43 2019-12-24 02:19:43.502428 25537 1125 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 16 \N 187.149.78.168 386a3e3c-e46f-49f2-9add-9046b3425e43 2019-12-24 02:19:43.540469 25538 2564 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 696\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1866\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-743\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-743 187.149.78.168 2e2089a6-6003-4ec8-8508-a6db9b4424b3 2019-12-24 02:19:51.197236 25539 1866 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.78.168 2cb57004-81f0-48ab-9ea8-708d40716f76 2019-12-24 02:19:52.312631 25540 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 01:01:50.924977000 Z\n- &1 2019-12-24 01:10:38.794462000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 02:21:21.517922587 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945803\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945803\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1201\n- 1202\n 2404 \N 189.186.59.52 0d773d67-e3b4-460e-8cfc-1c0d9209eaaf 2019-12-24 02:21:21.535367 25541 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sKdszAnuW4y9i_MJPhnr\n- ms4mV3xz7ruScKG_MNmt\n 2405 \N 189.186.59.52 0d773d67-e3b4-460e-8cfc-1c0d9209eaaf 2019-12-24 02:21:21.564494 25542 1867 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 695\namount: !ruby/object:BigDecimal 18:0.214E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.214E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-927\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 2945d923-c21b-410c-a97b-ec870a80282b 2019-12-24 02:23:21.136767 25543 1198 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.78.168 2945d923-c21b-410c-a97b-ec870a80282b 2019-12-24 02:23:21.178347 25544 1364 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.78.168 2945d923-c21b-410c-a97b-ec870a80282b 2019-12-24 02:23:21.206435 25545 1867 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 fd73463c-5297-4cc6-a362-70743a2acb43 2019-12-24 02:23:28.664094 25546 2565 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 695\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.214E3\nmove_type: '1'\nsale_id: 1867\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-927\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.214E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-927 187.149.78.168 fd73463c-5297-4cc6-a362-70743a2acb43 2019-12-24 02:23:28.696276 25547 1868 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 697\namount: !ruby/object:BigDecimal 18:0.288E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.288E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-196\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 0b6c8cfc-f99d-4af5-a202-bc8e1e056d20 2019-12-24 02:27:58.970867 25548 1350 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.59.52 0b6c8cfc-f99d-4af5-a202-bc8e1e056d20 2019-12-24 02:27:59.003934 25549 1358 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.59.52 0b6c8cfc-f99d-4af5-a202-bc8e1e056d20 2019-12-24 02:27:59.03008 25550 1868 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 ae4b6fde-a4a8-488b-9f67-9b3d97b87cbb 2019-12-24 02:28:16.342846 25551 2566 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 697\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.288E3\nmove_type: '1'\nsale_id: 1868\ncardnumber: 8645\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-196\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-196 189.186.59.52 ae4b6fde-a4a8-488b-9f67-9b3d97b87cbb 2019-12-24 02:28:16.365583 25552 1869 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 697\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-197\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 d8328226-d50d-4a67-8837-98a1be8f873f 2019-12-24 02:29:58.294697 25553 1269 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.59.52 d8328226-d50d-4a67-8837-98a1be8f873f 2019-12-24 02:29:58.327327 25554 1869 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 3a5a5f06-d912-4a05-9513-2da0778f5c84 2019-12-24 02:30:12.258126 25579 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 5HRJm1shPXR6eNN1Z-iB\n- M3XVB672Q1RxxVxx1bQE\n 140 \N 189.186.59.52 9947e4f8-1b2f-408d-8c39-780cda89486d 2019-12-24 03:19:21.895712 44685 1508 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1508'\n is_parent: false\n sku: FAL-1508\n name: FLD-0036\n description: FALDA PIEL NEGRA DE CIERRE ONEBYONE\n price_base: '165.0'\n price_sale: '499.0'\n img_product: 5C8D27FF-9BDA-4699-90EA-D5B3C1DB4BF4.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001508'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 21:11:19.70157'\n updated_at: &12 2020-11-03 21:27:18.531645667 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1508'\n sku: FAL-1508\n name: FLD-0036\n description: FALDA PIEL NEGRA DE CIERRE ONEBYONE\n price_base: '165.00'\n price_sale: '499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 21:11:19.70157'\n updated_at: '2020-11-03 21:11:19.757457'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001508'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1508'\n type: *3\n value: 1508\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-1508\n type: *7\n value: FAL-1508\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0036\n type: *8\n value: FLD-0036\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA PIEL NEGRA DE CIERRE ONEBYONE\n type: *6\n value: FALDA PIEL NEGRA DE CIERRE ONEBYONE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '165.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.165E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.499E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 5C8D27FF-9BDA-4699-90EA-D5B3C1DB4BF4.jpeg\n type: *2\n value: 5C8D27FF-9BDA-4699-90EA-D5B3C1DB4BF4.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001508'\n type: *2\n value: '0001508'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 21:11:19.70157'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 5C8D27FF-9BDA-4699-90EA-D5B3C1DB4BF4.jpeg\n 3 El producto FAL-1508 fue modificado. 187.149.136.226 bb609171-f79c-49ee-87a5-42257bc34392 2020-11-03 21:27:18.586318 25555 2567 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 697\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 1869\ncardnumber: 8645\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-197\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-197 189.186.59.52 3a5a5f06-d912-4a05-9513-2da0778f5c84 2019-12-24 02:30:12.278654 25556 1870 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 697\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-198\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 6e92cac6-73f6-4fbb-9086-841b42973444 2019-12-24 02:33:37.795049 25557 889 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.59.52 6e92cac6-73f6-4fbb-9086-841b42973444 2019-12-24 02:33:37.822273 25558 1870 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 988d71a9-2eea-4e4e-96f2-0c47108dcdce 2019-12-24 02:33:43.275937 25559 2568 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 697\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1699E4\nmove_type: '1'\nsale_id: 1870\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-198\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-198 189.186.59.52 988d71a9-2eea-4e4e-96f2-0c47108dcdce 2019-12-24 02:33:43.299373 25560 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 01:10:38.794462000 Z\n- &1 2019-12-24 02:21:21.517922000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 02:48:19.651834768 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945803\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1202\n- 1203\n 2406 \N 189.186.59.52 4a787bd2-e2fb-4241-a04f-9480b27dd154 2019-12-24 02:48:19.658679 25561 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ms4mV3xz7ruScKG_MNmt\n- v44A5dcNWB2NTssP2cuz\n 2407 \N 189.186.59.52 4a787bd2-e2fb-4241-a04f-9480b27dd154 2019-12-24 02:48:19.67624 25562 1871 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 697\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1437E3\ntotal: !ruby/object:BigDecimal 18:0.3353E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-199\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 134d06e3-c8c2-46e8-ad14-19ec210da8b1 2019-12-24 02:54:30.018817 25563 1114 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.59.52 134d06e3-c8c2-46e8-ad14-19ec210da8b1 2019-12-24 02:54:30.045938 25564 1871 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 cdeac61f-6b73-4db3-b8dd-ef21e67dc337 2019-12-24 02:55:12.576237 25565 2569 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 697\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3353E3\nmove_type: '1'\nsale_id: 1871\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-199\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.147E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-199 189.186.59.52 cdeac61f-6b73-4db3-b8dd-ef21e67dc337 2019-12-24 02:55:12.601664 25566 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 02:21:21.517922000 Z\n- &1 2019-12-24 02:48:19.651834000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 02:58:34.506902932 Z\nsign_in_count:\n- 1203\n- 1204\n 2408 \N 189.186.59.52 5f9abc84-06e6-4e9c-bcb2-077b53f300a9 2019-12-24 02:58:34.51287 25567 4 User \N \N 4 User \N update ---\nunique_session_id:\n- v44A5dcNWB2NTssP2cuz\n- 2fhDkCtqt2NzcWycJXzK\n 2409 \N 189.186.59.52 5f9abc84-06e6-4e9c-bcb2-077b53f300a9 2019-12-24 02:58:34.52853 25568 1872 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 695\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-928\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 3b09d719-6754-44fe-93a9-ecb3942b8c23 2019-12-24 02:59:57.651042 25569 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 187.149.78.168 3b09d719-6754-44fe-93a9-ecb3942b8c23 2019-12-24 02:59:57.677073 25570 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 18:30:13.737953000 Z\n- &1 2019-12-23 22:22:14.341557000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 03:00:27.901418030 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 74\n- 75\n 153 \N 189.186.59.52 9a703c85-ffc3-4b39-86c5-c7466b6df9c0 2019-12-24 03:00:27.908423 25571 8 User \N \N 8 User \N update ---\nunique_session_id:\n- cPX6z6rSyWqCb-WfjQgD\n- DSWq5-nUzxc36QmwNZr_\n 154 \N 189.186.59.52 9a703c85-ffc3-4b39-86c5-c7466b6df9c0 2019-12-24 03:00:27.923235 25572 1872 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 d3e52822-98c5-4327-8754-e2b80130a8e2 2019-12-24 03:01:14.856747 25573 2570 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 695\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 1872\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-928\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.749E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-928 187.149.78.168 d3e52822-98c5-4327-8754-e2b80130a8e2 2019-12-24 03:01:14.877047 25574 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 02:48:19.651834000 Z\n- &1 2019-12-24 02:58:34.506902000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 03:07:01.194429391 Z\nsign_in_count:\n- 1204\n- 1205\n 2410 \N 189.186.59.52 7e30ffa7-6793-4eb0-89b5-de22c4a09ca4 2019-12-24 03:07:01.200556 25575 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2fhDkCtqt2NzcWycJXzK\n- 5T6LXAVvaBsf48CuxM7F\n 2411 \N 189.186.59.52 7e30ffa7-6793-4eb0-89b5-de22c4a09ca4 2019-12-24 03:07:01.215845 25576 702 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 695\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.899E4\namount_out: !ruby/object:BigDecimal 18:0.2901E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.52E4\ncash_fund: !ruby/object:BigDecimal 18:0.1134E4\nphysical_cash: !ruby/object:BigDecimal 18:0.6334E4\nobservations: ENTRGUE A SAM $2000 + $3200= $5400\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.78.168 0d8d314a-79da-4ebe-ae78-3b38dbc67df8 2019-12-24 03:07:23.854023 25580 1873 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 697\namount: !ruby/object:BigDecimal 18:0.629E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.629E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-200\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 4f7dbc9c-63ba-4647-bc22-bdcdab0de9fd 2019-12-24 03:20:07.563984 25581 1401 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.59.52 4f7dbc9c-63ba-4647-bc22-bdcdab0de9fd 2019-12-24 03:20:07.593027 25582 1873 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 1a4f2efc-6283-498d-b265-35e5dcb9d628 2019-12-24 03:20:17.232777 25583 2571 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 697\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.629E3\nmove_type: '1'\nsale_id: 1873\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-200\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.629E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-200 189.186.59.52 1a4f2efc-6283-498d-b265-35e5dcb9d628 2019-12-24 03:20:17.25324 25584 703 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 696\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.88922E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.48E4\ncash_fund: !ruby/object:BigDecimal 18:0.125E4\nphysical_cash: !ruby/object:BigDecimal 18:0.605E4\nobservations: FALTO 1000\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.78.168 090d6220-097d-4dc1-8180-e77f88d472a6 2019-12-24 03:20:26.62296 25585 696 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 090d6220-097d-4dc1-8180-e77f88d472a6 2019-12-24 03:20:26.635294 25586 1874 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 697\namount: !ruby/object:BigDecimal 18:0.129E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.129E3\nstatus: 0\ndate_sale: 2019-12-23\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-201\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 8aa5dfd5-2d5e-4674-ba82-1d74f9b87216 2019-12-24 03:20:59.119018 25587 1360 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.59.52 8aa5dfd5-2d5e-4674-ba82-1d74f9b87216 2019-12-24 03:20:59.146237 25588 1874 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 eb0f2529-85b3-41f7-b331-b4f906955bdd 2019-12-24 03:21:03.994856 25589 2572 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 697\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.129E3\nmove_type: '1'\nsale_id: 1874\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-201\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.129E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-201 189.186.59.52 eb0f2529-85b3-41f7-b331-b4f906955bdd 2019-12-24 03:21:04.019085 25590 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 02:58:34.506902000 Z\n- &1 2019-12-24 03:07:01.194429000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 03:25:37.668815758 Z\nsign_in_count:\n- 1205\n- 1206\n 2412 \N 189.186.59.52 e8283489-0ada-44be-8de6-76c0703ee9cd 2019-12-24 03:25:37.67511 25591 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5T6LXAVvaBsf48CuxM7F\n- tWxaUxyp6DVcFJ-D5GLh\n 2413 \N 189.186.59.52 e8283489-0ada-44be-8de6-76c0703ee9cd 2019-12-24 03:25:37.691553 25592 704 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 697\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.108125E5\namount_out: !ruby/object:BigDecimal 18:0.13032E4\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.7E4\ncash_fund: !ruby/object:BigDecimal 18:0.1914E4\nphysical_cash: !ruby/object:BigDecimal 18:0.8914E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.59.52 84aa09a0-ea21-4291-afa3-2f8f6536385f 2019-12-24 03:46:58.2469 25593 697 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.59.52 84aa09a0-ea21-4291-afa3-2f8f6536385f 2019-12-24 03:46:58.259599 25594 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 17:04:45.450782000 Z\n- &1 2019-12-23 17:10:15.386073000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 17:04:18.288111113 Z\nsign_in_count:\n- 53\n- 54\n 108 \N 187.149.78.168 64957d83-235e-47dd-9261-592c99647563 2019-12-24 17:04:18.326003 25595 27 User \N \N 27 User \N update ---\nunique_session_id:\n- 7vXwX1i_FLrWxX6B22Cu\n- mVmqhDo5vxXdnRBXReG4\n 109 \N 187.149.78.168 64957d83-235e-47dd-9261-592c99647563 2019-12-24 17:04:18.352348 25596 698 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.125E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1250.0 187.149.78.168 dea8be48-5ddc-4258-886a-ad81b40d525f 2019-12-24 17:07:31.617709 25597 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 23:46:28.097121000 Z\n- &1 2019-12-23 17:27:13.405080000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 17:09:16.709645136 Z\nsign_in_count:\n- 419\n- 420\n 843 \N 187.149.78.168 1ceccf98-5c5f-4e5b-9b61-e42927220c01 2019-12-24 17:09:16.715385 25598 2 User \N \N 2 User \N update ---\nunique_session_id:\n- THpAJMaJe-zx3Uqy3DAe\n- xpSBnZW7iAyL23zoS2sy\n 844 \N 187.149.78.168 1ceccf98-5c5f-4e5b-9b61-e42927220c01 2019-12-24 17:09:16.730337 25599 699 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1134E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1134.0 187.149.78.168 e0383b63-1eb5-4f9f-947a-547f69aeaa70 2019-12-24 17:09:51.617056 25600 1875 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 699\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.189E3\ntotal: !ruby/object:BigDecimal 18:0.171E4\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-929\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 0d4a012b-6308-427d-b32a-9bb72d755517 2019-12-24 17:10:50.260029 25601 1196 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.78.168 0d4a012b-6308-427d-b32a-9bb72d755517 2019-12-24 17:10:50.292136 25602 1875 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 a8f5f28e-592c-4d22-95e3-9b10c3654404 2019-12-24 17:10:57.69784 25630 2575 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 698\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.328E3\nmove_type: '1'\nsale_id: 1877\ncardnumber: 6771\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-745\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-745 187.149.78.168 93613552-9755-4d8e-a23a-9e774440a78f 2019-12-24 18:09:05.772155 25603 2573 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 699\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.171E4\nmove_type: '1'\nsale_id: 1875\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-929\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.171E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-929 187.149.78.168 a8f5f28e-592c-4d22-95e3-9b10c3654404 2019-12-24 17:10:57.728801 25604 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 23:37:25.160229000 Z\n- &1 2019-12-24 00:36:16.885549000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 17:30:07.166922484 Z\nsign_in_count:\n- 137\n- 138\n 276 \N 187.149.78.168 526e9dcd-afbe-440f-b859-c3da736d8546 2019-12-24 17:30:07.174384 25605 1 User \N \N 1 User \N update ---\nunique_session_id:\n- f4KxuNYnDa3uKRFFBh3H\n- Rk-NrZmWSzk4q5JiyaQ5\n 277 \N 187.149.78.168 526e9dcd-afbe-440f-b859-c3da736d8546 2019-12-24 17:30:07.187696 25606 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 03:07:01.194429000 Z\n- &1 2019-12-24 03:25:37.668815000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 17:40:20.568786079 Z\nsign_in_count:\n- 1206\n- 1207\n 2414 \N 189.186.59.52 f209f5b7-20f3-4b7d-b7dc-90c4cde078ad 2019-12-24 17:40:20.574895 25607 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tWxaUxyp6DVcFJ-D5GLh\n- NVzaUqSYHvULrLwrivXH\n 2415 \N 189.186.59.52 f209f5b7-20f3-4b7d-b7dc-90c4cde078ad 2019-12-24 17:40:20.59181 25608 385 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2019-12-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.59.52 7e0ffffb-61c2-42c0-a1e0-4a330d7e42f9 2019-12-24 17:43:12.849986 25609 1412 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 187.149.78.168 31ff95df-796b-4666-969b-8ce867bd0372 2019-12-24 17:48:14.470639 25610 386 Transfer \N \N 27 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2019-12-24\nuser_id: 27\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.78.168 d781dce6-9037-4c01-8f32-9a9fac45e196 2019-12-24 17:48:23.048674 25611 1411 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 10 \N 187.149.78.168 a00ecca1-243e-42f8-84a9-f8dc61062de2 2019-12-24 17:50:51.094976 25612 1411 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.4E1\n 11 \N 187.149.78.168 b30bb978-fd52-4615-97bc-e24de84f08b4 2019-12-24 17:50:56.758002 25613 1297 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 12 \N 187.149.78.168 4b49867c-e1f5-4633-ad72-e03e5176526e 2019-12-24 17:51:15.431999 25614 1297 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.4E1\n 13 \N 187.149.78.168 09be0389-6474-4c48-9d96-7d942f685ba3 2019-12-24 17:51:18.527402 25615 1424 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.78.168 65831fe4-1c7d-42b6-8a8e-469ff02a9e09 2019-12-24 17:52:10.013663 25616 1424 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.78.168 121f16ea-0c67-4710-9a2c-9f3d3f22d395 2019-12-24 17:52:17.132781 25617 48 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.78.168 a8c4b9ad-55df-454f-9895-224cd8de7e8a 2019-12-24 17:52:30.544677 25618 1423 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.78.168 1282e989-e2a9-4305-aa4a-d3710a0a4ee1 2019-12-24 17:52:50.399115 25619 387 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-12-24\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.78.168 724208e5-0baf-491e-a281-f7c4a6bf2a38 2019-12-24 17:52:56.364139 25620 385 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-24\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.78.168 586773fb-a46a-4b46-845e-68cbbf0689bf 2019-12-24 17:53:04.562192 25621 1238 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.78.168 586773fb-a46a-4b46-845e-68cbbf0689bf 2019-12-24 17:53:04.578579 25622 1876 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 698\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.699E2\ntotal: !ruby/object:BigDecimal 18:0.6291E3\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-744\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 c4977025-97ca-4172-907b-f1718ae9162f 2019-12-24 18:03:57.065474 25623 1091 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 187.149.78.168 c4977025-97ca-4172-907b-f1718ae9162f 2019-12-24 18:03:57.093887 25624 1876 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 fe8720c7-0f5e-49b6-a5bb-cb78f77ecc91 2019-12-24 18:04:01.228981 25625 2574 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 698\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6291E3\nmove_type: '1'\nsale_id: 1876\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-744\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.709E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-744 187.149.78.168 fe8720c7-0f5e-49b6-a5bb-cb78f77ecc91 2019-12-24 18:04:01.259972 25626 1877 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 698\namount: !ruby/object:BigDecimal 18:0.328E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.328E3\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-745\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 6bf70273-23b1-4040-88ce-b50001dd2627 2019-12-24 18:07:51.34785 25627 1213 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.78.168 6bf70273-23b1-4040-88ce-b50001dd2627 2019-12-24 18:07:51.373279 25628 1332 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.78.168 6bf70273-23b1-4040-88ce-b50001dd2627 2019-12-24 18:07:51.39569 25629 1877 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 93613552-9755-4d8e-a23a-9e774440a78f 2019-12-24 18:09:05.744909 44686 1509 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1509'\n is_parent: false\n sku: FAL-1509\n name: FLD-0037\n description: FALDA DE PIEL NEGRA CON ARGOLLAS ONEBYONE\n price_base: '209.0'\n price_sale: '589.0'\n img_product: C11952F7-B5AF-4D8B-B184-E7585549CEF0.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001509'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 21:13:34.338511'\n updated_at: &12 2020-11-03 21:27:52.430801707 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1509'\n sku: FAL-1509\n name: FLD-0037\n description: FALDA DE PIEL NEGRA CON ARGOLLAS ONEBYONE\n price_base: '209.00'\n price_sale: '589.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 21:13:34.338511'\n updated_at: '2020-11-03 21:13:34.376004'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001509'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1509'\n type: *3\n value: 1509\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-1509\n type: *7\n value: FAL-1509\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0037\n type: *8\n value: FLD-0037\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA DE PIEL NEGRA CON ARGOLLAS ONEBYONE\n type: *6\n value: FALDA DE PIEL NEGRA CON ARGOLLAS ONEBYONE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '209.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.209E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '589.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.589E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: C11952F7-B5AF-4D8B-B184-E7585549CEF0.jpeg\n type: *2\n value: C11952F7-B5AF-4D8B-B184-E7585549CEF0.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001509'\n type: *2\n value: '0001509'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 21:13:34.338511'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- C11952F7-B5AF-4D8B-B184-E7585549CEF0.jpeg\n 3 El producto FAL-1509 fue modificado. 187.149.136.226 a2d004b9-f8fb-40ed-9842-9333c200daa1 2020-11-03 21:27:52.47655 25631 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 03:25:37.668815000 Z\n- &1 2019-12-24 17:40:20.568786000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 18:27:48.918375672 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946437\n mask_addr: 4294967295\nsign_in_count:\n- 1207\n- 1208\n 2416 \N 200.68.182.197 ab97cf20-c671-46fe-be79-5f3666cec2bc 2019-12-24 18:27:48.925183 25632 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NVzaUqSYHvULrLwrivXH\n- kY7Z6ax__JzALZuTAByr\n 2417 \N 200.68.182.197 ab97cf20-c671-46fe-be79-5f3666cec2bc 2019-12-24 18:27:48.943793 25633 1878 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 698\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-746\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 687d24b8-cfd4-4cab-a140-7b4a7a86f0a9 2019-12-24 18:35:51.063677 25634 1090 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 13 \N 187.149.78.168 687d24b8-cfd4-4cab-a140-7b4a7a86f0a9 2019-12-24 18:35:51.091954 25635 1878 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 adad2350-2eb4-4f95-ac5f-a35bb95a2c37 2019-12-24 18:35:58.837776 25636 2576 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 698\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 1878\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-746\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-746 187.149.78.168 adad2350-2eb4-4f95-ac5f-a35bb95a2c37 2019-12-24 18:35:58.861575 25637 1878 Sale \N \N 27 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-746 cancelada. 187.149.78.168 f4f5c1ec-574f-42ad-b199-69e7c7ac99d4 2019-12-24 18:37:13.516431 25638 2576 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 698\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 1878\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-746\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 f4f5c1ec-574f-42ad-b199-69e7c7ac99d4 2019-12-24 18:37:13.537847 25639 1090 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 14 \N 187.149.78.168 f4f5c1ec-574f-42ad-b199-69e7c7ac99d4 2019-12-24 18:37:13.562905 25640 1879 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 698\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.799E2\ntotal: !ruby/object:BigDecimal 18:0.7191E3\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-747\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 0070db50-e551-4a10-8e66-748721547899 2019-12-24 18:37:52.806208 25641 1090 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 15 \N 187.149.78.168 0070db50-e551-4a10-8e66-748721547899 2019-12-24 18:37:52.831664 25642 1879 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 27827cef-3e7c-437e-aea3-e1a8a74af2b7 2019-12-24 18:37:59.532156 25643 2577 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 698\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7191E3\nmove_type: '1'\nsale_id: 1879\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-747\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.2809E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-747 187.149.78.168 27827cef-3e7c-437e-aea3-e1a8a74af2b7 2019-12-24 18:37:59.553928 25644 1880 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 698\namount: !ruby/object:BigDecimal 18:0.228234E4\ntax: !ruby/object:BigDecimal 18:0.9365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.237599E4\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-748\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 ec643971-fdb6-4244-ac4a-c5b875f4be03 2019-12-24 19:15:24.072391 25645 1281 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 11 \N 187.149.78.168 ec643971-fdb6-4244-ac4a-c5b875f4be03 2019-12-24 19:15:24.098705 25646 1414 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.78.168 ec643971-fdb6-4244-ac4a-c5b875f4be03 2019-12-24 19:15:24.12089 25647 296 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 1 \N 187.149.78.168 ec643971-fdb6-4244-ac4a-c5b875f4be03 2019-12-24 19:15:24.148419 25648 1334 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.78.168 ec643971-fdb6-4244-ac4a-c5b875f4be03 2019-12-24 19:15:24.170672 25649 1880 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 af3792ba-7be6-4fe8-b8dc-36662f64d09f 2019-12-24 19:16:10.669797 25650 2578 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 698\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.237599E4\nmove_type: '1'\nsale_id: 1880\ncardnumber: 9697\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-748\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-748 187.149.78.168 af3792ba-7be6-4fe8-b8dc-36662f64d09f 2019-12-24 19:16:10.689263 25651 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 01:02:33.405540000 Z\n- &1 2019-12-24 03:19:21.875504000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 19:19:15.514889079 Z\nsign_in_count:\n- 69\n- 70\n 141 \N 189.186.59.52 86dc5031-c204-427e-86ac-9e53bd279907 2019-12-24 19:19:15.520698 25652 21 User \N \N 21 User \N update ---\nunique_session_id:\n- M3XVB672Q1RxxVxx1bQE\n- Px5xENq15ZoT-ZuBGPVp\n 142 \N 189.186.59.52 86dc5031-c204-427e-86ac-9e53bd279907 2019-12-24 19:19:15.533524 25653 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 17:40:20.568786000 Z\n- &1 2019-12-24 18:27:48.918375000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 19:24:50.575199863 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946437\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946437\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1208\n- 1209\n 2418 \N 189.186.59.52 68c3b808-6e32-4076-aa20-e6b94a97cce4 2019-12-24 19:24:50.583071 25655 700 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1914E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1914.0 189.186.59.52 63916259-adc5-4a6b-a20e-29ca2f91c67d 2019-12-24 19:26:53.143592 25656 1881 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 700\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-202\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 60227897-9e0a-4194-85b5-6a8052a3402a 2019-12-24 19:27:14.376067 25657 917 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.59.52 60227897-9e0a-4194-85b5-6a8052a3402a 2019-12-24 19:27:14.405761 25658 1881 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 c700bfcf-eeaf-4941-ae1c-c641bda5141a 2019-12-24 19:27:23.259514 25659 2579 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 700\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 1881\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-202\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-202 189.186.59.52 c700bfcf-eeaf-4941-ae1c-c641bda5141a 2019-12-24 19:27:23.289863 25660 217 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-24\namount: !ruby/object:BigDecimal 18:0.12E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.12E3\nobservations: ''\npurchase_date: 2019-12-24\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-24 por $ 120.0 MXN creada. 189.186.59.52 1088e2c2-778a-4de2-8280-b0d3f8093428 2019-12-24 19:28:26.891652 25661 1481 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 907\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E2\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.52 1088e2c2-778a-4de2-8280-b0d3f8093428 2019-12-24 19:28:26.916795 25662 1882 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 700\namount: !ruby/object:BigDecimal 18:0.6E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6E2\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-203\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 b9e5ddf1-fe61-4ee4-8871-9d829f73a705 2019-12-24 19:28:43.335501 25663 1481 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 2 \N 189.186.59.52 b9e5ddf1-fe61-4ee4-8871-9d829f73a705 2019-12-24 19:28:43.365878 25664 1882 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 841b5615-dcec-45a6-9fdf-cd813cf19f35 2019-12-24 19:28:47.987454 25665 2580 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 700\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E2\nmove_type: '1'\nsale_id: 1882\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-203\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E2\nchange: !ruby/object:BigDecimal 18:0.1E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-203 189.186.59.52 841b5615-dcec-45a6-9fdf-cd813cf19f35 2019-12-24 19:28:48.007772 25666 388 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-12-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.59.52 ffa4b1e3-9849-4fc0-87c6-51f3da07c055 2019-12-24 19:31:54.978717 25667 389 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-12-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.59.52 4f7a95a3-3279-4e25-8154-f79d600a6f3f 2019-12-24 19:34:35.829283 25668 386 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-24\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.59.52 eaee1f67-832b-4afd-aedf-178ca2ca0e1c 2019-12-24 19:35:05.401639 25669 1471 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.59.52 eaee1f67-832b-4afd-aedf-178ca2ca0e1c 2019-12-24 19:35:05.418605 25670 387 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-24\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.59.52 439295f6-7a02-4f2c-b44c-a86ef7fddb79 2019-12-24 19:35:22.75371 25671 1425 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.59.52 439295f6-7a02-4f2c-b44c-a86ef7fddb79 2019-12-24 19:35:22.771712 25672 1482 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 50\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.52 439295f6-7a02-4f2c-b44c-a86ef7fddb79 2019-12-24 19:35:22.797615 25673 1426 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.59.52 439295f6-7a02-4f2c-b44c-a86ef7fddb79 2019-12-24 19:35:22.819863 25674 1394 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.59.52 439295f6-7a02-4f2c-b44c-a86ef7fddb79 2019-12-24 19:35:22.842032 25675 1471 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.8E1\n 4 \N 189.186.59.52 439295f6-7a02-4f2c-b44c-a86ef7fddb79 2019-12-24 19:35:22.867355 25676 388 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-24\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.59.52 91a47af2-e947-45a1-9f8c-7274c57f1dd8 2019-12-24 19:35:31.724674 25677 1240 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.9E1\n 4 \N 189.186.59.52 91a47af2-e947-45a1-9f8c-7274c57f1dd8 2019-12-24 19:35:31.744432 25678 389 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-24\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.59.52 3b6557a1-b863-461b-b719-584d4bfbbd09 2019-12-24 19:35:38.439906 26318 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-29 17:12:08.918236000 Z\n- &1 2019-12-30 17:12:32.877128000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-31 17:16:27.960012407 Z\nsign_in_count:\n- 58\n- 59\n 118 \N 187.149.78.168 0bb878bb-d407-4233-b625-01996e5dd01f 2019-12-31 17:16:27.966144 25679 1483 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 912\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.52 3b6557a1-b863-461b-b719-584d4bfbbd09 2019-12-24 19:35:38.461097 25680 1035 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.7E1\n 17 \N 189.186.59.52 3b6557a1-b863-461b-b719-584d4bfbbd09 2019-12-24 19:35:38.480271 25681 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 18:27:48.918375000 Z\n- &1 2019-12-24 19:24:50.575199000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 19:38:30.485930159 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946437\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946437\n mask_addr: 4294967295\nsign_in_count:\n- 1209\n- 1210\n 2420 \N 200.68.182.197 f4e7196c-445e-4cfb-8d92-a3d636c94a70 2019-12-24 19:38:30.493871 25682 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Tz62zE3jmzXmRbVsf5bP\n- Lp4UDpeZmKwxLngsUe-s\n 2421 \N 200.68.182.197 f4e7196c-445e-4cfb-8d92-a3d636c94a70 2019-12-24 19:38:30.51178 25683 2581 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 698\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.219E3\nmove_type: '1'\nsale_id: 1866\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.219E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-743 187.149.78.168 70ceb501-964b-4e08-87ea-810890e6b1d6 2019-12-24 19:40:35.612989 25684 1883 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 698\namount: !ruby/object:BigDecimal 18:0.829E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.829E3\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-749\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 a7b65898-f98a-41eb-b55c-b6b8afd907c5 2019-12-24 19:48:32.711753 25685 1439 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.78.168 a7b65898-f98a-41eb-b55c-b6b8afd907c5 2019-12-24 19:48:32.745578 25686 1883 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 7e9b38da-e18b-4e8c-8bc4-d7b481e852cd 2019-12-24 19:49:13.855676 25687 2582 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 698\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.829E3\nmove_type: '1'\nsale_id: 1883\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-749\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.85E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-749 187.149.78.168 7e9b38da-e18b-4e8c-8bc4-d7b481e852cd 2019-12-24 19:49:13.888045 25688 1372 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.78.168 b77155d2-6800-4724-b8a4-d0f72a86ea02 2019-12-24 19:56:56.12387 25689 390 Transfer \N \N 27 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-12-24\nuser_id: 27\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.78.168 8900eb74-bee0-4a0a-83f7-b21fee569eb4 2019-12-24 19:57:02.670014 25690 1884 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 698\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.899E2\ntotal: !ruby/object:BigDecimal 18:0.8091E3\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-750\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 c859f1f4-3707-4740-afd1-474546ec5485 2019-12-24 20:01:58.599616 25691 1415 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.78.168 c859f1f4-3707-4740-afd1-474546ec5485 2019-12-24 20:01:58.625929 25692 1884 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 0a6b1351-d3d4-4502-8167-3e91f2d819f1 2019-12-24 20:02:11.600135 25693 2583 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 698\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8091E3\nmove_type: '1'\nsale_id: 1884\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-750\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1909E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-750 187.149.78.168 0a6b1351-d3d4-4502-8167-3e91f2d819f1 2019-12-24 20:02:11.621571 25694 2583 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 698\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8091E3\nmove_type: '1'\nsale_id: 1884\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-750\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1909E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 280d88cf-42f4-4a46-a9a0-15d0c3e35e5e 2019-12-24 20:02:22.26412 25695 2584 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 698\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8091E3\nmove_type: '1'\nsale_id: 1884\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-750\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1009E4\nchange: !ruby/object:BigDecimal 18:0.1999E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-750 187.149.78.168 af0d4242-ea7a-4bf1-a4d2-a06c666b94ce 2019-12-24 20:02:28.559781 25696 1885 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 700\namount: !ruby/object:BigDecimal 18:0.155086E4\ntax: !ruby/object:BigDecimal 18:0.24814E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-204\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 3663caf7-90d1-4520-be31-deaea7f037fe 2019-12-24 20:08:42.776351 25697 896 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.59.52 3663caf7-90d1-4520-be31-deaea7f037fe 2019-12-24 20:08:42.806108 25698 1885 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 51239678-c964-471f-90b4-df92d9e4c15f 2019-12-24 20:09:02.137544 25811 248 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 700\nquantity: !ruby/object:BigDecimal 18:0.2E3\nstatus: 1\nobservations: COMIDA\nexpense_date: 2019-12-24\nexpense_code: PV3-E-19\n 1 Egreso por 200.0 registrado 189.186.59.52 cbcac275-772c-446a-abf3-2f6bed2cbc74 2019-12-25 02:05:45.69997 25699 2585 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 700\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 1885\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-204\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-204 189.186.59.52 51239678-c964-471f-90b4-df92d9e4c15f 2019-12-24 20:09:02.160714 25700 1886 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 699\namount: !ruby/object:BigDecimal 18:0.299E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.29E2\ntotal: !ruby/object:BigDecimal 18:0.27E3\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-930\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 2a76a1f4-5d09-46fe-b36d-a7e9a1fb0cf1 2019-12-24 20:18:53.208977 25701 786 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 17 \N 187.149.78.168 2a76a1f4-5d09-46fe-b36d-a7e9a1fb0cf1 2019-12-24 20:18:53.235797 25702 1886 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 7b4837f1-0868-49cf-8af0-9c949d95e489 2019-12-24 20:19:07.496344 25703 2586 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 699\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.27E3\nmove_type: '1'\nsale_id: 1886\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-930\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.27E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-930 187.149.78.168 7b4837f1-0868-49cf-8af0-9c949d95e489 2019-12-24 20:19:07.520118 25704 1887 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 698\namount: !ruby/object:BigDecimal 18:0.61034E3\ntax: !ruby/object:BigDecimal 18:0.8965E2\ndiscount: !ruby/object:BigDecimal 18:0.5E2\ntotal: !ruby/object:BigDecimal 18:0.64999E3\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-751\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 00a7fb26-b032-4925-b6cc-eddd1ba84afd 2019-12-24 20:25:22.034577 25705 365 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.45E2\n- !ruby/object:BigDecimal 18:0.43E2\n 22 \N 187.149.78.168 00a7fb26-b032-4925-b6cc-eddd1ba84afd 2019-12-24 20:25:22.059601 25706 1887 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-751 cancelada. 187.149.78.168 4b2e5c04-3871-4115-af27-975629d83100 2019-12-24 20:25:31.68307 25707 365 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.43E2\n- !ruby/object:BigDecimal 18:0.45E2\n 23 \N 187.149.78.168 4b2e5c04-3871-4115-af27-975629d83100 2019-12-24 20:25:31.739276 25708 1888 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 698\namount: !ruby/object:BigDecimal 18:0.61724E3\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-752\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 24d58ea1-7d70-4f5d-9bad-f718ca6dfd40 2019-12-24 20:26:14.162213 25709 365 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.45E2\n- !ruby/object:BigDecimal 18:0.43E2\n 24 \N 187.149.78.168 24d58ea1-7d70-4f5d-9bad-f718ca6dfd40 2019-12-24 20:26:14.18737 25710 1888 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 f03cc544-1513-4d79-a64e-cb38ffb55f94 2019-12-24 20:26:37.618103 25711 2587 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 698\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 1888\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-752\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1234'\n 1 movimiento de efectivo por venta con folio PV2-V-752 187.149.78.168 f03cc544-1513-4d79-a64e-cb38ffb55f94 2019-12-24 20:26:37.63814 25712 1889 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 698\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-753\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 257c38fb-bde2-49ae-b56e-f6b09038cf9f 2019-12-24 20:39:34.235979 25713 877 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.78.168 257c38fb-bde2-49ae-b56e-f6b09038cf9f 2019-12-24 20:39:34.271263 25714 1889 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 b8a38094-e95f-455f-ac33-a0f015b9c28e 2019-12-24 20:40:18.245619 25715 2588 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 698\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 1889\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-753\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.13E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-753 187.149.78.168 b8a38094-e95f-455f-ac33-a0f015b9c28e 2019-12-24 20:40:18.265536 25716 1890 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 700\namount: !ruby/object:BigDecimal 18:0.1669E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1669E3\ntotal: !ruby/object:BigDecimal 18:0.15021E4\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-205\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 b103e454-52c9-49d9-a36f-b7cbe7aaecb7 2019-12-24 20:46:27.207677 25717 1267 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 3 \N 189.186.59.52 b103e454-52c9-49d9-a36f-b7cbe7aaecb7 2019-12-24 20:46:27.234464 25718 1890 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 6ade0911-551b-447b-840e-c3e20fc73b64 2019-12-24 20:46:40.818687 25719 2589 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 700\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.15021E4\nmove_type: '1'\nsale_id: 1890\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-205\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15021E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-205 189.186.59.52 6ade0911-551b-447b-840e-c3e20fc73b64 2019-12-24 20:46:40.850884 25857 1906 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 b20c50c7-baa1-4eee-bafe-f45fc03d39b3 2019-12-26 20:07:57.936782 26319 27 User \N \N 27 User \N update ---\nunique_session_id:\n- JAx4dR8QH_YPRCD3kMa2\n- DoseejVmnU3N6cWRyNPu\n 119 \N 187.149.78.168 0bb878bb-d407-4233-b625-01996e5dd01f 2019-12-31 17:16:27.985678 25720 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 19:24:50.575199000 Z\n- &1 2019-12-24 19:38:30.485930000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 20:52:53.420358493 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946437\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946437\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1210\n- 1211\n 2422 \N 189.186.59.52 86276362-1c54-4c05-af6c-0ca90a87000f 2019-12-24 20:52:53.444943 25721 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Lp4UDpeZmKwxLngsUe-s\n- b9euKnz5aije9MqpPh-e\n 2423 \N 189.186.59.52 86276362-1c54-4c05-af6c-0ca90a87000f 2019-12-24 20:52:53.467098 25722 1891 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 698\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-754\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 aa2f5823-0562-4ab4-923e-f8275ee3ab07 2019-12-24 21:14:11.650636 25723 1475 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.78.168 aa2f5823-0562-4ab4-923e-f8275ee3ab07 2019-12-24 21:14:11.679344 25724 1891 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 5b10f130-083c-433e-afec-68506c4426f0 2019-12-24 21:14:27.649205 25725 2590 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 698\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 1891\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-754\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-754 187.149.78.168 5b10f130-083c-433e-afec-68506c4426f0 2019-12-24 21:14:27.670405 25726 1892 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 699\namount: !ruby/object:BigDecimal 18:0.639E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.639E3\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-931\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 70ac87a3-a612-46d2-9178-a9817eb43ed4 2019-12-24 21:18:05.118995 25727 788 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 18 \N 187.149.78.168 70ac87a3-a612-46d2-9178-a9817eb43ed4 2019-12-24 21:18:05.144851 25728 1892 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 3754b818-c38b-4441-ad8b-fd2ae5172816 2019-12-24 21:38:14.707363 25729 2591 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 699\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.639E3\nmove_type: '1'\nsale_id: 1892\ncardnumber: 1207\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-931\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-931 187.149.78.168 3754b818-c38b-4441-ad8b-fd2ae5172816 2019-12-24 21:38:14.730139 25730 1893 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 699\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-932\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 05d68f00-ec22-40fc-ba76-02c2a3f9d315 2019-12-24 21:38:56.139532 25731 1406 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.78.168 05d68f00-ec22-40fc-ba76-02c2a3f9d315 2019-12-24 21:38:56.165546 25732 1893 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 1a86b749-97d5-4e01-ad8c-3c56f9bd5666 2019-12-24 21:39:19.473393 25733 2592 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 699\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 1893\ncardnumber: 1207\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-932\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-932 187.149.78.168 1a86b749-97d5-4e01-ad8c-3c56f9bd5666 2019-12-24 21:39:19.493874 25734 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 19:38:30.485930000 Z\n- &1 2019-12-24 20:52:53.420358000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 21:48:26.951257417 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946437\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1211\n- 1212\n 2424 \N 189.186.59.52 8ea8c334-330f-4ab7-acba-3b762c76390c 2019-12-24 21:48:26.958624 25735 4 User \N \N 4 User \N update ---\nunique_session_id:\n- b9euKnz5aije9MqpPh-e\n- jDC53swcy4TtzRed-DWx\n 2425 \N 189.186.59.52 8ea8c334-330f-4ab7-acba-3b762c76390c 2019-12-24 21:48:26.976293 25736 1894 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 700\namount: !ruby/object:BigDecimal 18:0.137087E4\ntax: !ruby/object:BigDecimal 18:0.7713E2\ndiscount: !ruby/object:BigDecimal 18:0.2147E3\ntotal: !ruby/object:BigDecimal 18:0.12333E4\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-206\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 0d801991-0692-4676-bc43-c2ea3b2d7eb9 2019-12-24 22:19:42.998413 25737 1271 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.59.52 0d801991-0692-4676-bc43-c2ea3b2d7eb9 2019-12-24 22:19:43.025366 25738 1222 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.59.52 0d801991-0692-4676-bc43-c2ea3b2d7eb9 2019-12-24 22:19:43.049306 25739 1894 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 0bf6eee7-b761-42b4-bec9-d403e74ab5cd 2019-12-24 22:19:49.588764 25740 2593 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 700\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 1894\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-206\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-206 189.186.59.52 0bf6eee7-b761-42b4-bec9-d403e74ab5cd 2019-12-24 22:19:49.609582 25950 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mukkTMv7-9UhGcTcTbHK\n- 7yUKKYXycVPDPbkTy9V9\n 2453 \N 189.186.54.195 c17605af-f133-4c68-9721-44f04bae7aeb 2019-12-27 18:48:47.262061 26366 1967 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 bdd1f477-762c-46fb-afa0-2973711a8dc6 2019-12-31 20:13:01.98743 25741 2594 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 700\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.233E3\nmove_type: '1'\nsale_id: 1894\ncardnumber: 9895\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-206\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-206 189.186.59.52 77223286-8b13-4f78-8e8a-ff11320560a9 2019-12-24 22:20:53.960149 25742 2595 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 700\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E0\nmove_type: '1'\nsale_id: 1894\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-206\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-206 189.186.59.52 fba0574d-80e4-428a-bebd-e3c1d30f37ac 2019-12-24 22:21:11.40129 25743 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 20:52:53.420358000 Z\n- &1 2019-12-24 21:48:26.951257000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 22:25:40.250388356 Z\nsign_in_count:\n- 1212\n- 1213\n 2426 \N 189.186.59.52 413df6a7-0481-4468-b83f-cc243f3a0203 2019-12-24 22:25:40.256755 25744 4 User \N \N 4 User \N update ---\nunique_session_id:\n- jDC53swcy4TtzRed-DWx\n- sx4HU7oLufynqy7y7yjZ\n 2427 \N 189.186.59.52 413df6a7-0481-4468-b83f-cc243f3a0203 2019-12-24 22:25:40.273044 25745 1895 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 700\namount: !ruby/object:BigDecimal 18:0.22224E3\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.229E3\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-207\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 0d39c348-c9ee-477c-ae15-d71aae91aff6 2019-12-24 22:52:29.401821 25746 1184 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.59.52 0d39c348-c9ee-477c-ae15-d71aae91aff6 2019-12-24 22:52:29.428654 25747 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.69E2\n- !ruby/object:BigDecimal 18:0.68E2\n 11 \N 189.186.59.52 0d39c348-c9ee-477c-ae15-d71aae91aff6 2019-12-24 22:52:29.452528 25748 1895 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 b6d2ea09-d1d0-449a-865f-0360f148a744 2019-12-24 22:53:09.350508 25749 2596 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 700\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.229E3\nmove_type: '1'\nsale_id: 1895\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-207\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.229E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-207 189.186.59.52 b6d2ea09-d1d0-449a-865f-0360f148a744 2019-12-24 22:53:09.372684 25750 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 21:48:26.951257000 Z\n- &1 2019-12-24 22:25:40.250388000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 22:59:40.178478976 Z\nsign_in_count:\n- 1213\n- 1214\n 2428 \N 189.186.59.52 6f429055-19c2-425d-ad7f-0c01e519073f 2019-12-24 22:59:40.186485 25751 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sx4HU7oLufynqy7y7yjZ\n- 8qp1NryGKWXxWNgA_Wpy\n 2429 \N 189.186.59.52 6f429055-19c2-425d-ad7f-0c01e519073f 2019-12-24 22:59:40.205633 25752 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 22:25:40.250388000 Z\n- &1 2019-12-24 22:59:40.178478000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 23:01:04.185020813 Z\nsign_in_count:\n- 1214\n- 1215\n 2430 \N 189.186.59.52 4ae4585b-8ebd-4fe2-90c4-dcccafb7b6f3 2019-12-24 23:01:04.190917 25753 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8qp1NryGKWXxWNgA_Wpy\n- aTewm2ZhsdzNPVs-sQsc\n 2431 \N 189.186.59.52 4ae4585b-8ebd-4fe2-90c4-dcccafb7b6f3 2019-12-24 23:01:04.205353 25754 1896 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 699\namount: !ruby/object:BigDecimal 18:0.139E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.139E3\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-933\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 50c50662-329d-4ada-b00d-41375084d72c 2019-12-24 23:08:09.045511 25755 1307 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.78.168 50c50662-329d-4ada-b00d-41375084d72c 2019-12-24 23:08:09.070688 25756 1896 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 2d7d4b9b-b023-4c1e-a895-3acba0c2320d 2019-12-24 23:08:13.226619 25757 2597 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 699\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.139E3\nmove_type: '1'\nsale_id: 1896\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-933\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.139E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-933 187.149.78.168 2d7d4b9b-b023-4c1e-a895-3acba0c2320d 2019-12-24 23:08:13.246458 25758 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 22:59:40.178478000 Z\n- &1 2019-12-24 23:01:04.185020000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 23:12:16.971176112 Z\nsign_in_count:\n- 1215\n- 1216\n 2432 \N 189.186.59.52 01aadee5-6af5-434b-8a94-d84d9abfa7f5 2019-12-24 23:12:16.976976 25759 4 User \N \N 4 User \N update ---\nunique_session_id:\n- aTewm2ZhsdzNPVs-sQsc\n- HK5s5yjj1NvBHhrX23cb\n 2433 \N 189.186.59.52 01aadee5-6af5-434b-8a94-d84d9abfa7f5 2019-12-24 23:12:16.991541 25760 390 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-24\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.78.168 33241053-dd2d-4ca7-9df3-47e267965d3a 2019-12-24 23:36:26.752312 25761 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 12 \N 187.149.78.168 33241053-dd2d-4ca7-9df3-47e267965d3a 2019-12-24 23:36:26.770056 25762 788 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 19 \N 187.149.78.168 72c87a6e-5d3a-4da0-baf8-8d8d40274395 2019-12-24 23:36:44.55097 25763 391 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-12-24\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.78.168 9e8dcd75-2c26-4f57-9fec-cb43c5e0a75b 2019-12-24 23:36:47.707791 25764 391 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-24\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.78.168 cd402672-0b4a-4c58-9b4c-6fd8c377cad3 2019-12-24 23:37:31.130794 25765 803 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 19 \N 187.149.78.168 cd402672-0b4a-4c58-9b4c-6fd8c377cad3 2019-12-24 23:37:31.146444 25766 26 ProductsReturn \N \N 27 User \N create ---\nsale_id: 1880\nuser_id: 27\nreturn_code: PV2-D-11\npointsale_id: 2\nnew_amount: !ruby/object:BigDecimal 18:0.938E3\nreturned_amount: !ruby/object:BigDecimal 18:0.699E3\ndifference_amount: !ruby/object:BigDecimal 18:0.239E3\nis_money_returned: false\n 1 devolución PV2-D-11 creada. 187.149.78.168 2b53ffdd-6c77-4d2b-a87d-61fe2a944e07 2019-12-24 23:40:04.547397 25767 1281 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 12 \N 187.149.78.168 2b53ffdd-6c77-4d2b-a87d-61fe2a944e07 2019-12-24 23:40:04.573538 25768 805 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 7 \N 187.149.78.168 2b53ffdd-6c77-4d2b-a87d-61fe2a944e07 2019-12-24 23:40:04.600623 25769 803 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 20 \N 187.149.78.168 2b53ffdd-6c77-4d2b-a87d-61fe2a944e07 2019-12-24 23:40:04.624712 25770 2598 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 698\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.239E3\nmove_type: '1'\nsale_id: 1880\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.239E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 26\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV2-D-11 187.149.78.168 077e2060-4cd7-4555-87e3-55663d9b60c5 2019-12-24 23:40:14.707749 25771 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 23:01:04.185020000 Z\n- &1 2019-12-24 23:12:16.971176000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-24 23:47:25.302956160 Z\nsign_in_count:\n- 1216\n- 1217\n 2434 \N 189.186.59.52 e59854c6-800a-48ce-952b-86c0c735649a 2019-12-24 23:47:25.308959 25772 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HK5s5yjj1NvBHhrX23cb\n- XuuVteYk-VRk-_zR3V6_\n 2435 \N 189.186.59.52 e59854c6-800a-48ce-952b-86c0c735649a 2019-12-24 23:47:25.323815 25773 969 Product \N \N 4 User \N create ---\nsku: CHA-969\nname: CHA-0006\ndescription: CHAMARRA DE PIEL MICHEL\nprice_base: !ruby/object:BigDecimal 18:0.4395E3\nprice_sale: !ruby/object:BigDecimal 18:0.879E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-969 fue creado. 189.186.59.52 124feb54-f193-4d99-8f59-e07962f175f3 2019-12-24 23:49:52.804197 25774 969 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000969'\n 2 \N 189.186.59.52 124feb54-f193-4d99-8f59-e07962f175f3 2019-12-24 23:49:52.847069 25775 1484 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 969\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.52 124feb54-f193-4d99-8f59-e07962f175f3 2019-12-24 23:49:52.878643 25776 218 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-59\namount: !ruby/object:BigDecimal 18:0.4395E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4395E3\nobservations: ''\npurchase_date: 2019-12-24\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-59 por $ 439.5 MXN creada. 189.186.59.52 a11c96c0-64a9-43d8-8317-de76f9f60222 2019-12-24 23:49:57.770907 25777 1484 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.52 a11c96c0-64a9-43d8-8317-de76f9f60222 2019-12-24 23:49:57.794566 25778 1442 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.59.52 56a3e4ca-5a93-4f11-abd9-2e5fdc6188f4 2019-12-25 00:05:26.900614 25779 1442 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.59.52 a0832b8a-d6d2-43aa-b1db-18dec72f34f5 2019-12-25 00:05:30.568868 25780 392 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2019-12-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.59.52 5bb07d0b-916c-4cfe-97c8-85bbb85fdaa0 2019-12-25 00:05:31.65704 25781 1897 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 700\namount: !ruby/object:BigDecimal 18:0.56E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.56E3\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-208\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 c38d53f8-b0af-4528-917b-e11defc959ac 2019-12-25 00:06:31.840839 25782 830 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 5 \N 189.186.59.52 c38d53f8-b0af-4528-917b-e11defc959ac 2019-12-25 00:06:31.872641 25783 1897 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 80524aff-a392-4bf3-be02-b959088c01a5 2019-12-25 00:06:49.498617 25784 2599 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 700\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.56E3\nmove_type: '1'\nsale_id: 1897\ncardnumber: 4012\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-208\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-208 189.186.59.52 80524aff-a392-4bf3-be02-b959088c01a5 2019-12-25 00:06:49.524938 25785 392 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-24\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.59.52 13e5b8a7-307d-474c-adf2-7a9e7f60e3fd 2019-12-25 00:07:44.629456 25786 1485 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 951\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.52 13e5b8a7-307d-474c-adf2-7a9e7f60e3fd 2019-12-25 00:07:44.653582 25787 1898 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 700\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-209\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 c146fb43-c40b-4e4b-87b3-c7ecf6596117 2019-12-25 00:08:29.757692 25788 1485 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.59.52 c146fb43-c40b-4e4b-87b3-c7ecf6596117 2019-12-25 00:08:29.787786 25789 1898 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 8ed84382-748d-4ce8-b2cb-bc3042d93279 2019-12-25 00:08:39.569969 25790 2600 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 700\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1898\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-209\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-209 189.186.59.52 8ed84382-748d-4ce8-b2cb-bc3042d93279 2019-12-25 00:08:39.59116 25791 1899 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 698\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-755\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 539b2a16-ad57-4b22-867c-726b5c77c817 2019-12-25 00:30:40.025602 25792 1130 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.78.168 539b2a16-ad57-4b22-867c-726b5c77c817 2019-12-25 00:30:40.059341 25793 1899 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 34cdd66f-71ae-43e3-921a-f1226bdd8049 2019-12-25 00:31:37.934639 25794 2601 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 698\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 1899\ncardnumber: 8525\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-755\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-755 187.149.78.168 34cdd66f-71ae-43e3-921a-f1226bdd8049 2019-12-25 00:31:37.954763 25795 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 23:12:16.971176000 Z\n- &1 2019-12-24 23:47:25.302956000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-25 00:32:49.223865346 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938157\n mask_addr: 4294967295\nsign_in_count:\n- 1217\n- 1218\n 2436 \N 200.68.150.109 4da68f27-7090-4c63-bb86-5e34d7074398 2019-12-25 00:32:49.231109 25796 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XuuVteYk-VRk-_zR3V6_\n- 1YxAbTx4AmbUM_7iLMjy\n 2437 \N 200.68.150.109 4da68f27-7090-4c63-bb86-5e34d7074398 2019-12-25 00:32:49.249254 25797 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 23:47:25.302956000 Z\n- &1 2019-12-25 00:32:49.223865000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-25 01:04:59.842876404 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938157\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938157\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1218\n- 1219\n 2438 \N 189.186.59.52 930c67b3-8d0c-4bbf-a9d3-0907a9c83d82 2019-12-25 01:04:59.854651 25798 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1YxAbTx4AmbUM_7iLMjy\n- 1qCLdHu9-qZVjAp4P5p4\n 2439 \N 189.186.59.52 930c67b3-8d0c-4bbf-a9d3-0907a9c83d82 2019-12-25 01:04:59.885763 25799 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-25 00:32:49.223865000 Z\n- &1 2019-12-25 01:04:59.842876000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-25 01:06:49.966690385 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938157\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1219\n- 1220\n 2440 \N 189.186.54.195 c3bb8b90-e20c-4418-ab9a-e76b26d558c1 2019-12-25 01:06:49.977368 25800 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1qCLdHu9-qZVjAp4P5p4\n- ntX6GyWGYe7ZUQ9Fyezf\n 2441 \N 189.186.54.195 c3bb8b90-e20c-4418-ab9a-e76b26d558c1 2019-12-25 01:06:50.005141 25801 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 17:27:13.405080000 Z\n- &1 2019-12-24 17:09:16.709645000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-25 01:16:22.610268429 Z\nsign_in_count:\n- 420\n- 421\n 845 \N 187.149.78.168 eadeddf7-7fb8-4568-a4da-f5efcad1ef0c 2019-12-25 01:16:22.619883 25802 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xpSBnZW7iAyL23zoS2sy\n- Xf6GbzhD4-FY4YzLzWSG\n 846 \N 187.149.78.168 eadeddf7-7fb8-4568-a4da-f5efcad1ef0c 2019-12-25 01:16:22.639951 25803 705 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 699\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3507E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.23E4\ncash_fund: !ruby/object:BigDecimal 18:0.953E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3253E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.78.168 777b6922-58cb-429c-957a-8d769105a27b 2019-12-25 01:20:47.340987 25804 699 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 777b6922-58cb-429c-957a-8d769105a27b 2019-12-25 01:20:47.358478 25805 1900 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 698\namount: !ruby/object:BigDecimal 18:0.879E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.879E2\ntotal: !ruby/object:BigDecimal 18:0.7911E3\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-756\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 8137ec07-39a0-4838-bb06-cec193446f79 2019-12-25 01:28:48.750896 25806 1484 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.78.168 8137ec07-39a0-4838-bb06-cec193446f79 2019-12-25 01:28:48.785367 25807 1900 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 d8e901db-53e1-4aaf-8db2-33433d6db963 2019-12-25 01:30:19.482551 25808 2602 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 698\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.7911E3\nmove_type: '1'\nsale_id: 1900\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-756\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7911E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-756 187.149.78.168 d8e901db-53e1-4aaf-8db2-33433d6db963 2019-12-25 01:30:19.507255 25809 706 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 698\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.1028639E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.75E4\ncash_fund: !ruby/object:BigDecimal 27:0.8339999999999964E2\nphysical_cash: !ruby/object:BigDecimal 18:0.75834E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.78.168 bc0c5c4e-8c28-4815-b3f3-dcf3d22455bb 2019-12-25 01:31:54.446906 25810 698 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 bc0c5c4e-8c28-4815-b3f3-dcf3d22455bb 2019-12-25 01:31:54.461686 25812 2603 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 700\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 248\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.59.52 cbcac275-772c-446a-abf3-2f6bed2cbc74 2019-12-25 02:05:45.72213 25813 1901 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 700\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2019-12-24\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-210\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 3041d943-717a-444e-975f-548138e2b773 2019-12-25 02:29:32.494394 25814 1266 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.59.52 3041d943-717a-444e-975f-548138e2b773 2019-12-25 02:29:32.5256 25815 1901 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 d1ba49d9-04f6-44ee-b99b-b9397c8758d5 2019-12-25 02:30:58.086525 25816 2604 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 700\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.729E3\nmove_type: '1'\nsale_id: 1901\ncardnumber: 1601\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-210\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-210 189.186.59.52 d1ba49d9-04f6-44ee-b99b-b9397c8758d5 2019-12-25 02:30:58.109751 25817 707 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 700\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.76104E4\namount_out: !ruby/object:BigDecimal 18:0.2E3\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.45E4\ncash_fund: !ruby/object:BigDecimal 18:0.1503E4\nphysical_cash: !ruby/object:BigDecimal 18:0.6003E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.59.52 0412e229-9a55-4797-af36-8d2e93536b0a 2019-12-25 02:33:07.360017 25818 700 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.59.52 0412e229-9a55-4797-af36-8d2e93536b0a 2019-12-25 02:33:07.373871 25819 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 17:09:16.709645000 Z\n- &1 2019-12-25 01:16:22.610268000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-26 17:03:40.782088456 Z\nsign_in_count:\n- 421\n- 422\n 847 \N 187.149.78.168 b86fa878-f1c5-4375-850e-eea74c37b12b 2019-12-26 17:03:40.815934 25820 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Xf6GbzhD4-FY4YzLzWSG\n- kQUgD3kT3txjcqqsEvSV\n 848 \N 187.149.78.168 b86fa878-f1c5-4375-850e-eea74c37b12b 2019-12-26 17:03:40.842291 25821 701 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.953E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 953.0 187.149.78.168 9beb9d41-0c9c-48b9-82c5-9198fe254bae 2019-12-26 17:04:18.381445 25822 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 03:19:21.875504000 Z\n- &1 2019-12-24 19:19:15.514889000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-26 17:52:17.580295957 Z\nsign_in_count:\n- 70\n- 71\n 143 \N 189.186.59.52 341db016-f88d-4edd-a8f7-3e9c341e3d4a 2019-12-26 17:52:17.588877 25823 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Px5xENq15ZoT-ZuBGPVp\n- hRhVnsgZePm6eywSiN6v\n 144 \N 189.186.59.52 341db016-f88d-4edd-a8f7-3e9c341e3d4a 2019-12-26 17:52:17.604656 25824 702 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1503E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1503.0 189.186.59.52 4dd0913b-dd88-4d0c-9d5d-ad5ef5a6df0f 2019-12-26 17:52:34.047179 25825 1902 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 702\namount: !ruby/object:BigDecimal 18:0.1629E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1629E4\nstatus: 0\ndate_sale: 2019-12-26\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-211\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 b2103eec-2e13-4e87-a7a7-46b8787fa798 2019-12-26 17:52:44.246312 25826 1389 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 189.186.59.52 b2103eec-2e13-4e87-a7a7-46b8787fa798 2019-12-26 17:52:44.275886 25827 1902 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 e21ceaa4-ccfa-4df5-bad2-ec93d14bc79f 2019-12-26 17:52:58.101331 25828 2605 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 702\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1629E4\nmove_type: '1'\nsale_id: 1902\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-211\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.17E4\nchange: !ruby/object:BigDecimal 18:0.71E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-211 189.186.59.52 e21ceaa4-ccfa-4df5-bad2-ec93d14bc79f 2019-12-26 17:52:58.122743 25829 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-25 01:04:59.842876000 Z\n- &1 2019-12-25 01:06:49.966690000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-26 18:09:30.425588170 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1220\n- 1221\n 2442 \N 189.186.59.52 fe88f975-b832-4164-9c36-622ea4da5bd6 2019-12-26 18:09:30.43354 25830 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ntX6GyWGYe7ZUQ9Fyezf\n- fe5Uj_joGRv-_kYb2NbR\n 2443 \N 189.186.59.52 fe88f975-b832-4164-9c36-622ea4da5bd6 2019-12-26 18:09:30.451845 25831 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 22:22:14.341557000 Z\n- &1 2019-12-24 03:00:27.901418000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-26 18:46:34.917606684 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 75\n- 76\n 155 \N 187.149.78.168 aafc89ae-418c-4363-b2e9-05f0baf0dbe8 2019-12-26 18:46:34.926717 25832 8 User \N \N 8 User \N update ---\nunique_session_id:\n- DSWq5-nUzxc36QmwNZr_\n- FjbtoqbsuLRkzgtPzsni\n 156 \N 187.149.78.168 aafc89ae-418c-4363-b2e9-05f0baf0dbe8 2019-12-26 18:46:34.94342 25833 272 Customer \N \N 21 User \N create ---\nnick_name: ARACELI MERCADO\nphone: "(667) 320-0383"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ARACELI MERCADO fue registrado. 189.186.59.52 3ec21254-a634-4b14-97f6-970592251cb0 2019-12-26 19:02:54.097814 25834 1903 Sale \N \N 21 User \N create ---\ncustomer_id: 272\nuser_id: 21\nopen_cash_register_id: 702\namount: !ruby/object:BigDecimal 18:0.2299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2299E3\ntotal: !ruby/object:BigDecimal 18:0.20691E4\nstatus: 0\ndate_sale: 2019-12-26\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-212\nexpiration_date: 2020-01-30\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 bf221d64-0f99-48b2-926d-f481cca1bbe9 2019-12-26 19:04:18.734582 25835 1387 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.59.52 bf221d64-0f99-48b2-926d-f481cca1bbe9 2019-12-26 19:04:18.759565 25836 2606 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 702\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E4\nmove_type: '1'\nsale_id: 1903\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-212\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-212 189.186.59.52 ac647103-64fe-4ecf-8b64-6b3575d71d60 2019-12-26 19:04:29.039851 25837 1903 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.59.52 5f586e40-c9f6-4a58-bb47-642ad0fa5224 2019-12-26 19:04:37.289327 25838 703 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.834E2\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 83.4 187.149.78.168 c4fb2f7e-31bf-4d7f-bc33-af8c9fcb4c0c 2019-12-26 19:06:45.460937 25839 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-25 01:06:49.966690000 Z\n- &1 2019-12-26 18:09:30.425588000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-26 19:31:50.375105671 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1221\n- 1222\n 2444 \N 187.149.78.168 70ab65d8-ed8b-4c37-ba47-def3c46a778d 2019-12-26 19:31:50.383059 25840 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fe5Uj_joGRv-_kYb2NbR\n- spojHzdSz4xmD389ZjJ_\n 2445 \N 187.149.78.168 70ab65d8-ed8b-4c37-ba47-def3c46a778d 2019-12-26 19:31:50.399562 25841 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 03:00:27.901418000 Z\n- &1 2019-12-26 18:46:34.917606000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-26 19:53:12.499786668 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 76\n- 77\n 157 \N 187.149.78.168 b6f31d8e-41a9-4b96-b267-45c03e0ab58a 2019-12-26 19:53:12.506738 25842 8 User \N \N 8 User \N update ---\nunique_session_id:\n- FjbtoqbsuLRkzgtPzsni\n- DvTxuFJoSB676kLxU2Zi\n 158 \N 187.149.78.168 b6f31d8e-41a9-4b96-b267-45c03e0ab58a 2019-12-26 19:53:12.520658 25843 1904 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 703\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.119E3\ntotal: !ruby/object:BigDecimal 18:0.108E4\nstatus: 0\ndate_sale: 2019-12-26\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-757\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 885d6074-c576-4793-8ac9-cb243cf937c6 2019-12-26 19:58:57.616013 25844 1412 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 187.149.78.168 885d6074-c576-4793-8ac9-cb243cf937c6 2019-12-26 19:58:57.642393 25845 1904 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-757 cancelada. 187.149.78.168 a93a90e1-859f-4cbc-8b88-cb8a63b5d7ff 2019-12-26 20:00:37.876299 25846 1412 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 10 \N 187.149.78.168 a93a90e1-859f-4cbc-8b88-cb8a63b5d7ff 2019-12-26 20:00:37.922031 25847 1905 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 703\namount: !ruby/object:BigDecimal 18:0.759E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2019-12-26\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-758\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 c552e2ea-215d-4990-8b64-0213cd8ed864 2019-12-26 20:00:56.850713 25848 1092 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.78.168 c552e2ea-215d-4990-8b64-0213cd8ed864 2019-12-26 20:00:56.882974 25849 1905 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 de9a0961-9338-4bc2-83a9-29345901757f 2019-12-26 20:01:38.167278 25850 2607 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 703\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.759E3\nmove_type: '1'\nsale_id: 1905\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-758\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-758 187.149.78.168 de9a0961-9338-4bc2-83a9-29345901757f 2019-12-26 20:01:38.186237 25851 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-26 18:09:30.425588000 Z\n- &1 2019-12-26 19:31:50.375105000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-26 20:06:10.046504471 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1222\n- 1223\n 2446 \N 187.149.78.168 5c289dd7-025f-436b-adef-a8ecedd0723f 2019-12-26 20:06:10.05291 25852 4 User \N \N 4 User \N update ---\nunique_session_id:\n- spojHzdSz4xmD389ZjJ_\n- xv2mQNzGFa-mLBsZ36nR\n 2447 \N 187.149.78.168 5c289dd7-025f-436b-adef-a8ecedd0723f 2019-12-26 20:06:10.07036 25853 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-12-26 18:46:34.917606000 Z\n- &1 2019-12-26 19:53:12.499786000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-26 20:07:04.406151140 Z\nsign_in_count:\n- 77\n- 78\n 159 \N 187.149.78.168 030642fe-bbd8-4b5f-a64c-a6ee498c4ff8 2019-12-26 20:07:04.411705 25854 8 User \N \N 8 User \N update ---\nunique_session_id:\n- DvTxuFJoSB676kLxU2Zi\n- vQKiUuaK2CrxWhXntZQ_\n 160 \N 187.149.78.168 030642fe-bbd8-4b5f-a64c-a6ee498c4ff8 2019-12-26 20:07:04.423563 25855 1906 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 703\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.49E2\ntotal: !ruby/object:BigDecimal 18:0.65E3\nstatus: 0\ndate_sale: 2019-12-26\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-759\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 94e0e5a1-6f67-4670-882b-032de16cd91d 2019-12-26 20:07:37.02407 25856 806 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 40 \N 187.149.78.168 94e0e5a1-6f67-4670-882b-032de16cd91d 2019-12-26 20:07:37.04913 25858 2608 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 703\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.65E3\nmove_type: '1'\nsale_id: 1906\ncardnumber: 1236\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-759\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-759 187.149.78.168 b20c50c7-baa1-4eee-bafe-f45fc03d39b3 2019-12-26 20:07:57.956072 25859 1907 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 703\namount: !ruby/object:BigDecimal 18:0.1898E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.4296E3\ntotal: !ruby/object:BigDecimal 18:0.14684E4\nstatus: 0\ndate_sale: 2019-12-26\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-760\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 16df7252-3c13-47ca-bf3a-4bd14f3871d2 2019-12-26 20:10:41.465393 25860 728 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.78.168 16df7252-3c13-47ca-bf3a-4bd14f3871d2 2019-12-26 20:10:41.498562 25861 1412 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 11 \N 187.149.78.168 16df7252-3c13-47ca-bf3a-4bd14f3871d2 2019-12-26 20:10:41.524847 25862 1907 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 a20e17ed-2f55-4d90-abb2-9784a643f260 2019-12-26 20:10:53.47106 25863 2609 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 703\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.14684E4\nmove_type: '1'\nsale_id: 1907\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-760\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.316E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-760 187.149.78.168 a20e17ed-2f55-4d90-abb2-9784a643f260 2019-12-26 20:10:53.495609 25864 2610 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 660\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1651\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.25E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 dc29369a-4d18-4ea1-859e-21534cd3d420 2019-12-26 20:23:16.269997 25865 2610 CashRegistersMove \N \N 8 User \N update ---\nopen_cash_register_id:\n- 660\n- 703\n 2 movimiento de efectivo por venta con folio PV2-V-646 187.149.78.168 dc29369a-4d18-4ea1-859e-21534cd3d420 2019-12-26 20:23:16.293351 25866 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-26 19:31:50.375105000 Z\n- &1 2019-12-26 20:06:10.046504000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-26 20:27:10.172984661 Z\nsign_in_count:\n- 1223\n- 1224\n 2448 \N 187.149.78.168 62517af1-6514-41d7-ab1b-ad2f43d0d981 2019-12-26 20:27:10.178567 25867 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xv2mQNzGFa-mLBsZ36nR\n- gukecXvHJuciNcnYb1Lt\n 2449 \N 187.149.78.168 62517af1-6514-41d7-ab1b-ad2f43d0d981 2019-12-26 20:27:10.192502 25868 1908 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 702\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-26\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-213\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 c6e8b4c3-af80-4872-b164-6c87590caeac 2019-12-26 20:35:24.299645 25869 1394 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.59.52 c6e8b4c3-af80-4872-b164-6c87590caeac 2019-12-26 20:35:24.327222 25870 1908 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 9952c7c0-0f28-47bf-b4b5-4f7ba3222f06 2019-12-26 20:35:34.325943 25871 2611 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 702\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1908\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-213\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-213 189.186.59.52 9952c7c0-0f28-47bf-b4b5-4f7ba3222f06 2019-12-26 20:35:34.345205 25872 1306 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.78.168 62b1cb1a-58e7-4c83-849a-d9694b9409a7 2019-12-26 20:36:52.157142 25873 1312 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.78.168 e464458d-6c47-47ab-9384-0c47d10c5e5b 2019-12-26 20:37:00.156546 25874 1318 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.78.168 11fce60c-2c70-4153-bb1c-ebe4b04279bd 2019-12-26 20:37:27.588755 25875 1305 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.78.168 b415e11f-1a52-4c03-a6b9-f4a6b3a40e83 2019-12-26 20:37:40.12445 25876 1411 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 12 \N 187.149.78.168 df1d14ac-9a90-494d-9210-28d91a9945eb 2019-12-26 20:38:18.263576 25877 393 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-12-26\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.78.168 9c313bc1-5f78-423b-b62f-697d37926860 2019-12-26 20:38:30.004358 25878 393 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-26\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.78.168 5051d657-6a46-47b6-b98e-9c2219c69f4e 2019-12-26 21:28:40.356482 25879 1330 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.78.168 5051d657-6a46-47b6-b98e-9c2219c69f4e 2019-12-26 21:28:40.373293 25880 1334 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.78.168 5051d657-6a46-47b6-b98e-9c2219c69f4e 2019-12-26 21:28:40.390514 25881 1338 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.78.168 5051d657-6a46-47b6-b98e-9c2219c69f4e 2019-12-26 21:28:40.406896 25882 1329 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.78.168 5051d657-6a46-47b6-b98e-9c2219c69f4e 2019-12-26 21:28:40.422997 25883 1412 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 12 \N 187.149.78.168 5051d657-6a46-47b6-b98e-9c2219c69f4e 2019-12-26 21:28:40.438897 25884 27 ProductsReturn \N \N 8 User \N create ---\nsale_id: 1900\nuser_id: 8\nreturn_code: PV2-D-12\npointsale_id: 2\nnew_amount: !ruby/object:BigDecimal 18:0.814E3\nreturned_amount: !ruby/object:BigDecimal 18:0.7911E3\ndifference_amount: !ruby/object:BigDecimal 27:0.22899999999999977E2\nis_money_returned: false\n 1 devolución PV2-D-12 creada. 187.149.78.168 e3f989ff-27b5-4da2-9566-bc5d0d1b5174 2019-12-26 21:29:59.803766 25885 1484 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.78.168 e3f989ff-27b5-4da2-9566-bc5d0d1b5174 2019-12-26 21:29:59.829152 25886 1281 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 13 \N 187.149.78.168 e3f989ff-27b5-4da2-9566-bc5d0d1b5174 2019-12-26 21:29:59.854065 25887 1338 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.78.168 e3f989ff-27b5-4da2-9566-bc5d0d1b5174 2019-12-26 21:29:59.870187 25888 2612 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 703\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.229E2\nmove_type: '1'\nsale_id: 1900\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.229E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 27\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV2-D-12 187.149.78.168 6fde380c-147d-4789-8d5a-fc996ac46939 2019-12-26 21:30:51.692568 25889 1909 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 701\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-12-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-934\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 2ceeda99-96c5-48de-87ea-c97b15800b55 2019-12-26 21:45:17.013659 25890 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 13 \N 187.149.78.168 2ceeda99-96c5-48de-87ea-c97b15800b55 2019-12-26 21:45:17.04417 25891 1909 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 b39882ed-2976-43e7-9c24-068624f6ef4f 2019-12-26 21:46:22.764023 25892 2613 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 701\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 1909\ncardnumber: 3291\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-934\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-934 187.149.78.168 b39882ed-2976-43e7-9c24-068624f6ef4f 2019-12-26 21:46:22.78536 25893 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 00:36:16.885549000 Z\n- &1 2019-12-24 17:30:07.166922000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-26 21:54:27.361785985 Z\nsign_in_count:\n- 138\n- 139\n 278 \N 187.149.78.168 4a8ea136-42d6-47fc-af69-cdfe8e54444c 2019-12-26 21:54:27.369828 25894 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Rk-NrZmWSzk4q5JiyaQ5\n- _zFZA33wjQs_7nJMPadz\n 279 \N 187.149.78.168 4a8ea136-42d6-47fc-af69-cdfe8e54444c 2019-12-26 21:54:27.38604 25895 1910 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 703\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2019-12-26\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-761\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 39e6d15a-8100-4db0-a7c8-60d837ec1c81 2019-12-26 22:51:53.073838 25896 1079 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.78.168 39e6d15a-8100-4db0-a7c8-60d837ec1c81 2019-12-26 22:51:53.098486 25897 1910 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 7e98cf11-be06-4a0b-ac4d-ed201f61425b 2019-12-26 22:52:27.400771 25898 2614 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 703\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1910\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-761\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-761 187.149.78.168 7e98cf11-be06-4a0b-ac4d-ed201f61425b 2019-12-26 22:52:27.420779 25899 1911 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 701\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.89E2\ntotal: !ruby/object:BigDecimal 18:0.91E3\nstatus: 0\ndate_sale: 2019-12-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-935\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 a75015ab-9298-4b27-8f16-ba6e5d7fee86 2019-12-26 23:58:43.514694 25900 642 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.78.168 a75015ab-9298-4b27-8f16-ba6e5d7fee86 2019-12-26 23:58:43.555625 25901 1911 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 bf11fc5c-012f-46a2-90be-f8cdda8f2e9f 2019-12-26 23:59:21.692325 25902 2615 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 701\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.91E3\nmove_type: '1'\nsale_id: 1911\ncardnumber: 1899\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-935\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-935 187.149.78.168 bf11fc5c-012f-46a2-90be-f8cdda8f2e9f 2019-12-26 23:59:21.713632 25903 1912 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 701\namount: !ruby/object:BigDecimal 18:0.1629E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.179E3\ntotal: !ruby/object:BigDecimal 18:0.145E4\nstatus: 0\ndate_sale: 2019-12-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-936\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 4b484c0b-447f-4eb9-8166-e835448184cb 2019-12-27 00:11:10.119641 25904 1273 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 187.149.78.168 4b484c0b-447f-4eb9-8166-e835448184cb 2019-12-27 00:11:10.144645 25905 1912 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 1ee562c9-66bf-48b6-a8b5-c9e6b301eedc 2019-12-27 00:11:15.910068 25974 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 21:31:37.452124000 Z\n- &1 2019-12-27 20:16:57.763714000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-27 20:51:55.694745483 Z\nsign_in_count:\n- 41\n- 42\n 84 \N 187.149.78.168 b7f12c31-cb36-4c3b-b5af-d00e063eaeb3 2019-12-27 20:51:55.700577 25975 24 User \N \N 24 User \N update ---\nunique_session_id:\n- UbvjGkePxMfRV9_x3hyH\n- Yp-tueYzr4mThx3gHzVK\n 85 \N 187.149.78.168 b7f12c31-cb36-4c3b-b5af-d00e063eaeb3 2019-12-27 20:51:55.712335 25906 2616 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 701\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.145E4\nmove_type: '1'\nsale_id: 1912\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-936\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1629E4\nchange: !ruby/object:BigDecimal 18:0.179E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-936 187.149.78.168 1ee562c9-66bf-48b6-a8b5-c9e6b301eedc 2019-12-27 00:11:15.93027 25907 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 17:30:07.166922000 Z\n- &1 2019-12-26 21:54:27.361785000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-27 00:12:56.368353552 Z\nsign_in_count:\n- 139\n- 140\n 280 \N 187.149.78.168 50c84a86-6c95-41b1-b42e-c8eb08f7b91e 2019-12-27 00:12:56.375148 25908 1 User \N \N 1 User \N update ---\nunique_session_id:\n- _zFZA33wjQs_7nJMPadz\n- FpbUqVQfGdHwPRyHs6Tz\n 281 \N 187.149.78.168 50c84a86-6c95-41b1-b42e-c8eb08f7b91e 2019-12-27 00:12:56.387688 25909 1913 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 701\namount: !ruby/object:BigDecimal 18:0.8534E2\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9899E2\nstatus: 0\ndate_sale: 2019-12-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-937\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 0fcd67d1-d100-49dd-9197-8998f81df945 2019-12-27 01:24:29.728783 25910 486 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 24 \N 187.149.78.168 0fcd67d1-d100-49dd-9197-8998f81df945 2019-12-27 01:24:29.756499 25911 1913 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 9bd7baf7-2d31-4dc3-a2b4-5a4e24ed0c0d 2019-12-27 01:24:43.733128 25912 2617 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 701\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.9899E2\nmove_type: '1'\nsale_id: 1913\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-937\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9899E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-937 187.149.78.168 9bd7baf7-2d31-4dc3-a2b4-5a4e24ed0c0d 2019-12-27 01:24:43.754039 25913 1914 Sale \N \N 21 User \N create ---\ncustomer_id: 33\nuser_id: 21\nopen_cash_register_id: 702\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-12-26\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-214\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 bf269dec-8d46-4976-b25a-4336cd546194 2019-12-27 01:29:38.602726 25914 859 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 189.186.59.52 bf269dec-8d46-4976-b25a-4336cd546194 2019-12-27 01:29:38.635834 25915 2618 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 660\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 1651\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.59.52 d7fe6477-2611-408b-b615-48be034d242e 2019-12-27 01:31:10.830272 25916 2618 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 660\n- 702\n 2 movimiento de efectivo por venta con folio PV2-V-646 189.186.59.52 d7fe6477-2611-408b-b615-48be034d242e 2019-12-27 01:31:10.854908 25917 1915 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 701\namount: !ruby/object:BigDecimal 18:0.1769E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.149E3\ntotal: !ruby/object:BigDecimal 18:0.162E4\nstatus: 0\ndate_sale: 2019-12-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-938\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 b91d9d0c-2f2d-4b8f-a3e5-67e19f227b52 2019-12-27 02:43:11.071178 25918 1249 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.78.168 b91d9d0c-2f2d-4b8f-a3e5-67e19f227b52 2019-12-27 02:43:11.102742 25919 1915 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 abb86586-175f-4f5a-ba73-947ba3493f7a 2019-12-27 02:43:15.349721 25920 2619 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 701\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E2\nmove_type: '1'\nsale_id: 1915\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-938\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-938 187.149.78.168 abb86586-175f-4f5a-ba73-947ba3493f7a 2019-12-27 02:43:15.372167 25921 708 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 703\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.35993E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.832E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2332E4\nobservations: AGREGE FONDO $54\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.78.168 65fefbd8-bb3a-4364-b385-f249e0603424 2019-12-27 02:43:24.374299 25922 703 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 65fefbd8-bb3a-4364-b385-f249e0603424 2019-12-27 02:43:24.386828 25923 2620 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 701\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.159E4\nmove_type: '1'\nsale_id: 1915\ncardnumber: 7099\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-938\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-938 187.149.78.168 a932d3f3-a286-4f86-9852-ddfea318e1de 2019-12-27 02:44:45.818718 25924 709 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 701\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.482799E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.1032E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2532E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.78.168 23cb1340-0e6f-41a9-bcbb-5fb25a2a590f 2019-12-27 02:59:36.159989 25925 701 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 23cb1340-0e6f-41a9-bcbb-5fb25a2a590f 2019-12-27 02:59:36.173455 25976 395 Transfer \N \N 24 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 24\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-27\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.78.168 8266a6c8-4711-45f4-91b6-c5d7741026ca 2019-12-27 20:52:41.547932 25926 710 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 702\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.3978E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.4E4\ncash_fund: !ruby/object:BigDecimal 18:0.1481E4\nphysical_cash: !ruby/object:BigDecimal 18:0.5481E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.59.52 2ae99554-8680-4f66-8c06-163dbb40f6f9 2019-12-27 03:03:38.633326 25927 702 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.59.52 2ae99554-8680-4f66-8c06-163dbb40f6f9 2019-12-27 03:03:38.648841 25928 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-23 17:10:15.386073000 Z\n- &1 2019-12-24 17:04:18.288111000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-27 17:08:52.197533837 Z\nsign_in_count:\n- 54\n- 55\n 110 \N 187.149.78.168 83c7cb45-576e-4473-b9b7-6672bb9bc671 2019-12-27 17:08:52.233725 25929 27 User \N \N 27 User \N update ---\nunique_session_id:\n- mVmqhDo5vxXdnRBXReG4\n- mFfxqzZp-5sU5o95kJX_\n 111 \N 187.149.78.168 83c7cb45-576e-4473-b9b7-6672bb9bc671 2019-12-27 17:08:52.255972 25930 704 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.832E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 832.0 187.149.78.168 26437d2d-84a5-4e4a-b863-689e4ea752a0 2019-12-27 17:11:29.833371 25931 705 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1481E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1481.0 189.186.59.52 2bf097b4-0fa5-4b45-a8ba-d23f5ed4d41b 2019-12-27 17:45:20.685345 25932 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-26 20:06:10.046504000 Z\n- &1 2019-12-26 20:27:10.172984000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-27 17:47:19.332064965 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1224\n- 1225\n 2450 \N 189.186.59.52 851221b0-fd40-4363-b66e-a4adc1f6432d 2019-12-27 17:47:19.339386 25933 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gukecXvHJuciNcnYb1Lt\n- mukkTMv7-9UhGcTcTbHK\n 2451 \N 189.186.59.52 851221b0-fd40-4363-b66e-a4adc1f6432d 2019-12-27 17:47:19.357139 25934 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-25 01:16:22.610268000 Z\n- &1 2019-12-26 17:03:40.782088000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-27 18:41:55.163232977 Z\nsign_in_count:\n- 422\n- 423\n 849 \N 187.149.78.168 55eb3baf-c3ad-4a8c-b00c-118e5128b2ff 2019-12-27 18:41:55.170402 25935 2 User \N \N 2 User \N update ---\nunique_session_id:\n- kQUgD3kT3txjcqqsEvSV\n- HEWaopfhoMx5JxgTVCSq\n 850 \N 187.149.78.168 55eb3baf-c3ad-4a8c-b00c-118e5128b2ff 2019-12-27 18:41:55.18579 25936 706 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1032E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1032.0 187.149.78.168 500179c0-f81f-4a16-ab2c-7805eccca47b 2019-12-27 18:42:17.559614 25937 1916 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 706\namount: !ruby/object:BigDecimal 18:0.1698E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.338E3\ntotal: !ruby/object:BigDecimal 18:0.136E4\nstatus: 0\ndate_sale: 2019-12-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-939\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 d24ddc29-48a3-4daa-bf6d-5eebbb361011 2019-12-27 18:44:37.954955 25938 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 14 \N 187.149.78.168 d24ddc29-48a3-4daa-bf6d-5eebbb361011 2019-12-27 18:44:37.982698 25939 1410 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.78.168 d24ddc29-48a3-4daa-bf6d-5eebbb361011 2019-12-27 18:44:38.014228 25940 1916 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-939 cancelada. 187.149.78.168 5c2adde8-bb94-4fb7-bbc6-84b01ae4fee5 2019-12-27 18:45:32.821699 25941 1410 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.78.168 5c2adde8-bb94-4fb7-bbc6-84b01ae4fee5 2019-12-27 18:45:32.845927 25942 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 15 \N 187.149.78.168 5c2adde8-bb94-4fb7-bbc6-84b01ae4fee5 2019-12-27 18:45:32.86584 25943 1917 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 706\namount: !ruby/object:BigDecimal 18:0.1698E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.308E3\ntotal: !ruby/object:BigDecimal 18:0.139E4\nstatus: 0\ndate_sale: 2019-12-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-940\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 f864278a-df33-4ca6-94ab-5706a277d8c6 2019-12-27 18:46:51.464364 25944 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 16 \N 187.149.78.168 f864278a-df33-4ca6-94ab-5706a277d8c6 2019-12-27 18:46:51.489616 25945 1410 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.78.168 f864278a-df33-4ca6-94ab-5706a277d8c6 2019-12-27 18:46:51.51423 25946 1917 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 00702750-93b3-491f-a25b-9a450fe133a3 2019-12-27 18:46:57.396765 25947 2621 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 706\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E2\nmove_type: '1'\nsale_id: 1917\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-940\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-940 187.149.78.168 00702750-93b3-491f-a25b-9a450fe133a3 2019-12-27 18:46:57.417202 25948 2622 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 706\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.136E4\nmove_type: '1'\nsale_id: 1917\ncardnumber: 5000\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-940\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-940 187.149.78.168 a5013f38-ecc8-4bd7-81cf-10b45309c2d8 2019-12-27 18:47:42.765118 25949 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-26 20:27:10.172984000 Z\n- &1 2019-12-27 17:47:19.332064000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-27 18:48:47.237411736 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1225\n- 1226\n 2452 \N 189.186.54.195 c17605af-f133-4c68-9721-44f04bae7aeb 2019-12-27 18:48:47.245141 25951 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-27 17:47:19.332064000 Z\n- &1 2019-12-27 18:48:47.237411000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-27 19:53:24.950577537 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\nsign_in_count:\n- 1226\n- 1227\n 2454 \N 189.186.59.52 26aa0dcc-29b4-41f0-bb0b-b912401b5bee 2019-12-27 19:53:24.962076 25952 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7yUKKYXycVPDPbkTy9V9\n- yeqoCxBEN33Q8t2J_RxJ\n 2455 \N 189.186.59.52 26aa0dcc-29b4-41f0-bb0b-b912401b5bee 2019-12-27 19:53:24.983746 25953 1918 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 705\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-27\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-215\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.52 fb0e0934-a11f-4d33-98ec-6d74b517434f 2019-12-27 20:10:13.300102 25954 918 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.59.52 fb0e0934-a11f-4d33-98ec-6d74b517434f 2019-12-27 20:10:13.325592 25955 1918 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.52 b4a12cf6-c656-4cf8-9775-ab97cdd95a87 2019-12-27 20:10:47.30851 25956 2623 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 705\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1918\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-215\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-215 189.186.59.52 b4a12cf6-c656-4cf8-9775-ab97cdd95a87 2019-12-27 20:10:47.328489 25957 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 22:57:42.103218000 Z\n- &1 2019-12-23 21:31:37.452124000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-27 20:16:57.763714262 Z\nsign_in_count:\n- 40\n- 41\n 82 \N 187.149.78.168 03b2f57f-41d6-4b9d-9b78-1bf95eb43c8d 2019-12-27 20:16:57.769751 25958 24 User \N \N 24 User \N update ---\nunique_session_id:\n- RFA8CBG2K_2NsP7woHs7\n- UbvjGkePxMfRV9_x3hyH\n 83 \N 187.149.78.168 03b2f57f-41d6-4b9d-9b78-1bf95eb43c8d 2019-12-27 20:16:57.781766 25959 249 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 705\nquantity: !ruby/object:BigDecimal 18:0.468E3\nstatus: 1\nobservations: 'DOLARES '\nexpense_date: 2019-12-27\nexpense_code: PV3-E-20\n 1 Egreso por 468.0 registrado 189.186.59.52 94a2babe-d012-413e-a60f-e2f1643ee913 2019-12-27 20:21:13.590528 25960 2624 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 705\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.468E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 249\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.59.52 94a2babe-d012-413e-a60f-e2f1643ee913 2019-12-27 20:21:13.609542 25961 837 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.59.52 55cb8fc8-46c9-40b9-931e-4005455fafdf 2019-12-27 20:27:36.572946 25962 837 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.59.52 4e4d96e9-f9fb-4144-b460-1f51b402c907 2019-12-27 20:27:40.631846 25963 394 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-12-27\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.59.52 f36155e0-a3f5-4a41-9621-884b9172b3c2 2019-12-27 20:27:41.369485 25964 394 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-27\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.78.168 7fd8f84a-9997-4b46-aaa6-094381575b58 2019-12-27 20:31:59.11056 25965 1381 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.78.168 7fd8f84a-9997-4b46-aaa6-094381575b58 2019-12-27 20:31:59.127243 25966 1919 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 706\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.129E3\ntotal: !ruby/object:BigDecimal 18:0.117E4\nstatus: 0\ndate_sale: 2019-12-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-941\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 9e0413ba-f36e-49e0-9362-3281dffa02ca 2019-12-27 20:34:05.374955 25967 1381 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.78.168 9e0413ba-f36e-49e0-9362-3281dffa02ca 2019-12-27 20:34:05.402151 25968 1919 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 0b5721a7-2aa6-4d53-8647-bcb9b92d2dae 2019-12-27 20:34:18.348707 25969 2625 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 706\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.117E4\nmove_type: '1'\nsale_id: 1919\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-941\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.117E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-941 187.149.78.168 0b5721a7-2aa6-4d53-8647-bcb9b92d2dae 2019-12-27 20:34:18.369324 25970 250 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 706\nquantity: !ruby/object:BigDecimal 18:0.425E3\nstatus: 1\nobservations: "$400 ALBERTO CAMARAS $25 GARRAFON DE AGUA"\nexpense_date: 2019-12-27\nexpense_code: PV1-E-177\n 1 Egreso por 425.0 registrado 187.149.78.168 7dde5b69-3c2d-40ec-a078-874817cd20c4 2019-12-27 20:43:02.098283 25971 2626 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 706\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.425E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 250\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 7dde5b69-3c2d-40ec-a078-874817cd20c4 2019-12-27 20:43:02.119098 25972 1381 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.78.168 daaf273a-0507-49a3-8048-36d5fb1aa4c9 2019-12-27 20:49:50.765945 25973 395 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-12-27\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.78.168 953ae8c3-bb9b-4da1-a8dc-f16a91b12cfd 2019-12-27 20:50:01.115284 25979 396 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2019-12-27\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.78.168 04d03073-86e3-4868-8ec3-467ad6b72c53 2019-12-27 20:57:50.678704 25980 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-27 18:48:47.237411000 Z\n- &1 2019-12-27 19:53:24.950577000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-27 20:59:33.792147884 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1227\n- 1228\n 2456 \N 189.186.54.195 2453feee-9ea0-4406-a80c-ce93c82a61c0 2019-12-27 20:59:33.803809 25981 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yeqoCxBEN33Q8t2J_RxJ\n- jfGYbrCKt6CxXJdy8abf\n 2457 \N 189.186.54.195 2453feee-9ea0-4406-a80c-ce93c82a61c0 2019-12-27 20:59:33.822719 25982 1920 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 706\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.129E3\ntotal: !ruby/object:BigDecimal 18:0.117E4\nstatus: 0\ndate_sale: 2019-12-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-942\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 1e4acfcd-a374-4daf-adcc-a18880573139 2019-12-27 21:40:41.292846 25983 1477 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.78.168 1e4acfcd-a374-4daf-adcc-a18880573139 2019-12-27 21:40:41.319129 25984 1920 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 575f650e-1105-4df4-bc1f-892a90273411 2019-12-27 21:41:18.964318 25985 2627 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 706\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.117E4\nmove_type: '1'\nsale_id: 1920\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-942\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.117E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-942 187.149.78.168 575f650e-1105-4df4-bc1f-892a90273411 2019-12-27 21:41:18.984497 25986 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-26 21:54:27.361785000 Z\n- &1 2019-12-27 00:12:56.368353000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-27 22:03:59.338499714 Z\nsign_in_count:\n- 140\n- 141\n 282 \N 187.149.78.168 59f28d5e-ead4-4512-aaf5-eadfc70a08b4 2019-12-27 22:03:59.344818 25987 1 User \N \N 1 User \N update ---\nunique_session_id:\n- FpbUqVQfGdHwPRyHs6Tz\n- cqjF7XZRyqr8y4y31VE-\n 283 \N 187.149.78.168 59f28d5e-ead4-4512-aaf5-eadfc70a08b4 2019-12-27 22:03:59.358887 25988 1921 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 706\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.59E2\ntotal: !ruby/object:BigDecimal 18:0.54E3\nstatus: 0\ndate_sale: 2019-12-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-943\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 817fa164-83bc-46ab-8a47-a02f3719ab9d 2019-12-27 22:18:12.460546 25989 1241 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.78.168 817fa164-83bc-46ab-8a47-a02f3719ab9d 2019-12-27 22:18:12.493197 25990 1921 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 c4f1f00e-3810-4138-a7ce-84626aa99cea 2019-12-27 22:18:16.967891 25991 2628 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 706\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.54E3\nmove_type: '1'\nsale_id: 1921\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-943\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.54E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-943 187.149.78.168 c4f1f00e-3810-4138-a7ce-84626aa99cea 2019-12-27 22:18:16.988372 25992 1922 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 704\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.649E2\ntotal: !ruby/object:BigDecimal 18:0.5841E3\nstatus: 0\ndate_sale: 2019-12-27\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-762\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 f15cb934-8ef9-460d-82e8-f1f78130118e 2019-12-27 22:55:56.979223 25993 1449 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.78.168 f15cb934-8ef9-460d-82e8-f1f78130118e 2019-12-27 22:55:57.006059 25994 1922 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 62a4f3a3-9d7a-4568-9c0d-e7bf1730e773 2019-12-27 22:56:10.919238 25995 2629 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 704\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5841E3\nmove_type: '1'\nsale_id: 1922\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-762\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.159E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-762 187.149.78.168 62a4f3a3-9d7a-4568-9c0d-e7bf1730e773 2019-12-27 22:56:10.939104 25996 2630 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 704\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 1722\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-674 187.149.78.168 4ab522be-efc2-42de-a40e-aa0e9bddeb29 2019-12-27 22:57:59.997943 25997 1722 Sale \N \N 27 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.78.168 e7b2aa2a-01a8-4383-8d1b-c0cfeb5920e7 2019-12-27 22:58:01.339351 25998 1923 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 704\namount: !ruby/object:BigDecimal 18:0.829E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.829E3\nstatus: 0\ndate_sale: 2019-12-27\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-763\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 4b70bfcf-82b3-4ff4-8cc7-60e913cd384c 2019-12-27 22:59:37.661317 25999 1439 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.78.168 4b70bfcf-82b3-4ff4-8cc7-60e913cd384c 2019-12-27 22:59:37.687636 26000 1923 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 ceb09a2a-3738-4a95-abb2-cfbae282793e 2019-12-27 22:59:45.029953 44687 1510 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1510'\n is_parent: false\n sku: PAN-1510\n name: PNT-0037\n description: PANTALON DE PIEL NEGRO ONEBYONE\n price_base: '209.0'\n price_sale: '589.0'\n img_product: 1720C1CA-1939-4048-AA39-11316DB84807.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '8'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001510'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 21:14:17.790882'\n updated_at: &12 2020-11-03 21:28:30.551442419 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1510'\n sku: PAN-1510\n name: PNT-0037\n description: PANTALON DE PIEL NEGRO ONEBYONE\n price_base: '209.00'\n price_sale: '589.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 21:14:17.790882'\n updated_at: '2020-11-03 21:14:17.828878'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001510'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '8'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1510'\n type: *3\n value: 1510\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAN-1510\n type: *7\n value: PAN-1510\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PNT-0037\n type: *8\n value: PNT-0037\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTALON DE PIEL NEGRO ONEBYONE\n type: *6\n value: PANTALON DE PIEL NEGRO ONEBYONE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '209.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.209E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '589.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.589E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 1720C1CA-1939-4048-AA39-11316DB84807.jpeg\n type: *2\n value: 1720C1CA-1939-4048-AA39-11316DB84807.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '8'\n type: *3\n value: 8\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001510'\n type: *2\n value: '0001510'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 21:14:17.790882'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 1720C1CA-1939-4048-AA39-11316DB84807.jpeg\n 3 El producto PAN-1510 fue modificado. 187.149.136.226 482141d4-2c39-413c-a4bf-1e9ad44118c7 2020-11-03 21:28:30.607157 26001 2631 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 704\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.829E3\nmove_type: '1'\nsale_id: 1923\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-763\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.71E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-763 187.149.78.168 ceb09a2a-3738-4a95-abb2-cfbae282793e 2019-12-27 22:59:45.050591 26002 1924 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 704\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-12-27\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-764\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 3bb1cc8c-700d-4a75-bc39-afe7e00f8570 2019-12-27 23:42:12.759969 26003 1126 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.78.168 3bb1cc8c-700d-4a75-bc39-afe7e00f8570 2019-12-27 23:42:12.789122 26004 1924 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 3af8a705-d0c8-408c-8865-483fa6eaa088 2019-12-27 23:43:03.699083 26005 2632 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 704\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 1924\ncardnumber: 4133\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-764\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-764 187.149.78.168 3af8a705-d0c8-408c-8865-483fa6eaa088 2019-12-27 23:43:03.725155 26006 273 Customer \N \N 27 User \N create ---\nnick_name: mayra leal\nphone: "(667) 165-3080"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente mayra leal fue registrado. 187.149.78.168 075e139c-67cd-4f13-8ea0-3e5d6b636317 2019-12-28 00:12:10.154255 26007 1925 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 706\namount: !ruby/object:BigDecimal 18:0.2299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.299E3\ntotal: !ruby/object:BigDecimal 18:0.2E4\nstatus: 0\ndate_sale: 2019-12-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-944\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 80a6750b-a87e-4f88-abf5-e34b3cbf43b9 2019-12-28 00:14:04.326992 26008 1370 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.78.168 80a6750b-a87e-4f88-abf5-e34b3cbf43b9 2019-12-28 00:14:04.35702 26009 1925 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 85ae30dd-8b2f-4e24-b12a-ed96af6abf3f 2019-12-28 00:14:11.186476 26010 2633 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 706\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E4\nmove_type: '1'\nsale_id: 1925\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-944\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-944 187.149.78.168 85ae30dd-8b2f-4e24-b12a-ed96af6abf3f 2019-12-28 00:14:11.207786 26011 1926 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 704\namount: !ruby/object:BigDecimal 18:0.99E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.99E2\nstatus: 0\ndate_sale: 2019-12-27\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-765\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 6fa1f29b-4f80-465b-bc2e-db305e226d4d 2019-12-28 00:17:44.831522 26012 1329 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.78.168 6fa1f29b-4f80-465b-bc2e-db305e226d4d 2019-12-28 00:17:44.855621 26013 1926 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 6f591973-8860-4035-9d80-33b6ce204d69 2019-12-28 00:17:50.658731 26014 2634 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 704\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.99E2\nmove_type: '1'\nsale_id: 1926\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-765\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-765 187.149.78.168 6f591973-8860-4035-9d80-33b6ce204d69 2019-12-28 00:17:50.678403 26015 1927 Sale \N \N 27 User \N create ---\ncustomer_id: 273\nuser_id: 27\nopen_cash_register_id: 704\namount: !ruby/object:BigDecimal 18:0.1488E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1488E3\ntotal: !ruby/object:BigDecimal 18:0.13392E4\nstatus: 0\ndate_sale: 2019-12-27\nsaletype: 2\nseller_id: 17\nsale_code: PV2-V-766\nexpiration_date: 2020-01-31\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 7671f790-89a4-499e-bc91-270d7dae5b96 2019-12-28 00:22:20.186863 26016 1281 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 14 \N 187.149.78.168 7671f790-89a4-499e-bc91-270d7dae5b96 2019-12-28 00:22:20.215777 26017 1282 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.78.168 7671f790-89a4-499e-bc91-270d7dae5b96 2019-12-28 00:22:20.239954 26018 2635 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 704\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1927\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-766\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.2E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-766 187.149.78.168 d1c95519-49b7-4771-9d53-d9ec13256945 2019-12-28 00:23:00.478524 26019 1927 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.78.168 7bf9aea8-4337-4a6e-a4bb-a2ad05473355 2019-12-28 00:23:04.571051 26020 1928 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 704\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.569E2\ntotal: !ruby/object:BigDecimal 18:0.5121E3\nstatus: 0\ndate_sale: 2019-12-27\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-767\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 5969001f-a943-4794-b96c-26179313f73c 2019-12-28 01:47:16.743297 26021 1455 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.78.168 5969001f-a943-4794-b96c-26179313f73c 2019-12-28 01:47:16.785653 26022 1928 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 cdd2d674-5da3-47b4-a70a-797f443ea83f 2019-12-28 01:47:45.757337 26023 2636 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 704\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.512E3\nmove_type: '1'\nsale_id: 1928\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-767\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.512E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-767 187.149.78.168 cdd2d674-5da3-47b4-a70a-797f443ea83f 2019-12-28 01:47:45.779123 26024 2637 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 704\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E0\nmove_type: '1'\nsale_id: 1928\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-767\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.512E3\nchange: !ruby/object:BigDecimal 18:0.5119E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-767 187.149.78.168 f7b2e809-c850-4503-aab5-860c57e3cf53 2019-12-28 01:48:07.688856 26025 2637 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 704\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E0\nmove_type: '1'\nsale_id: 1928\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-767\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.512E3\nchange: !ruby/object:BigDecimal 18:0.5119E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 3e4d5ddb-dfdc-4c37-a545-6a7a569a4256 2019-12-28 01:48:10.407927 26026 2636 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 704\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.512E3\nmove_type: '1'\nsale_id: 1928\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-767\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.512E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 0933d7cd-79cb-47b8-90df-398060457112 2019-12-28 01:48:11.883039 26027 2638 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 704\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.512E3\nmove_type: '1'\nsale_id: 1928\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-767\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.512E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-767 187.149.78.168 da51c5af-d881-4bc9-b42e-2578b4d7c506 2019-12-28 01:48:17.534446 26028 2639 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 704\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E0\nmove_type: '1'\nsale_id: 1928\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-767\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.512E3\nchange: !ruby/object:BigDecimal 18:0.5119E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-767 187.149.78.168 13b32b55-1b5a-4af6-8f9a-b21a09a149e6 2019-12-28 01:48:52.337393 26029 2638 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 704\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.512E3\nmove_type: '1'\nsale_id: 1928\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-767\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.512E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 ca9b7fdf-9b42-49b6-a5e8-2aa4548d39f7 2019-12-28 01:48:56.017897 26030 2639 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 704\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E0\nmove_type: '1'\nsale_id: 1928\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-767\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.512E3\nchange: !ruby/object:BigDecimal 18:0.5119E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 25f2741b-d387-4fed-b8fb-58a2c086867d 2019-12-28 01:48:58.182049 26031 2640 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 704\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.512E3\nmove_type: '1'\nsale_id: 1928\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-767\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.512E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-767 187.149.78.168 66926d40-a230-4ca7-ac5a-a5ab1feba444 2019-12-28 01:49:05.192942 26032 2640 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 704\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.512E3\nmove_type: '1'\nsale_id: 1928\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-767\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.512E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 de6c9057-8f16-4df1-b356-55b691a56392 2019-12-28 01:49:19.985807 26033 2641 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 704\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5121E3\nmove_type: '1'\nsale_id: 1928\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-767\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5121E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-767 187.149.78.168 84e27c0e-420f-464f-bfc0-3f3d0069a509 2019-12-28 01:49:29.967384 26034 711 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 706\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.627E4\namount_out: !ruby/object:BigDecimal 18:0.425E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.46E4\ncash_fund: !ruby/object:BigDecimal 18:0.917E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5517E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.78.168 1a00e3f3-e3d4-4cf6-8e08-674a0fa5d0ac 2019-12-28 02:42:36.877545 26035 706 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 1a00e3f3-e3d4-4cf6-8e08-674a0fa5d0ac 2019-12-28 02:42:36.890756 26036 712 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 704\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.36222E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 24\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.855E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3855E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.78.168 7fde00c5-4d71-4a36-975b-309cc95af34b 2019-12-28 02:53:15.873415 26037 704 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 7fde00c5-4d71-4a36-975b-309cc95af34b 2019-12-28 02:53:15.886155 26388 396 Transfer \N \N 24 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 24\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-31\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.78.168 2153b132-0926-42f8-a9fe-7d1efe2b2e09 2019-12-31 21:15:24.873358 26038 713 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 705\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.899E3\namount_out: !ruby/object:BigDecimal 18:0.468E3\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.912E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1912E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.59.52 47548ea1-f7a4-413c-acc5-0f92be69dc34 2019-12-28 02:58:35.374608 26039 705 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.59.52 47548ea1-f7a4-413c-acc5-0f92be69dc34 2019-12-28 02:58:35.38673 26040 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 17:04:18.288111000 Z\n- &1 2019-12-27 17:08:52.197533000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-28 17:08:06.194362136 Z\nsign_in_count:\n- 55\n- 56\n 112 \N 187.149.78.168 09d2d002-3767-4921-841a-185e07b20f04 2019-12-28 17:08:06.229079 26041 27 User \N \N 27 User \N update ---\nunique_session_id:\n- mFfxqzZp-5sU5o95kJX_\n- _XEELQsJvRpQyCd6-wGX\n 113 \N 187.149.78.168 09d2d002-3767-4921-841a-185e07b20f04 2019-12-28 17:08:06.252133 26042 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-24 19:19:15.514889000 Z\n- &1 2019-12-26 17:52:17.580295000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-28 17:54:04.940687286 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 71\n- 72\n 145 \N 189.186.117.149 d8d2b8ed-7a32-49cc-b7a4-ebe637652d83 2019-12-28 17:54:04.947223 26043 21 User \N \N 21 User \N update ---\nunique_session_id:\n- hRhVnsgZePm6eywSiN6v\n- bHBgDDcP_iEzyQxyRQBW\n 146 \N 189.186.117.149 d8d2b8ed-7a32-49cc-b7a4-ebe637652d83 2019-12-28 17:54:04.96022 26044 707 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.855E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 855.0 187.149.78.168 0012515f-604d-4cc7-8bc0-4a1e6ae3445a 2019-12-28 17:59:49.117239 26045 1929 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 707\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.999E2\ntotal: !ruby/object:BigDecimal 18:0.8991E3\nstatus: 0\ndate_sale: 2019-12-28\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-768\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 dc1f4855-7b67-4605-8337-45cd9090f4f4 2019-12-28 18:00:21.782567 26046 1416 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.78.168 dc1f4855-7b67-4605-8337-45cd9090f4f4 2019-12-28 18:00:21.809559 26047 1929 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 575fc5cc-1760-40e0-9161-6c7096941ffd 2019-12-28 18:00:57.950806 26048 2642 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 707\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8991E3\nmove_type: '1'\nsale_id: 1929\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-768\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1009E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-768 187.149.78.168 575fc5cc-1760-40e0-9161-6c7096941ffd 2019-12-28 18:00:57.971864 26049 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-26 17:03:40.782088000 Z\n- &1 2019-12-27 18:41:55.163232000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-28 19:45:01.018664670 Z\nsign_in_count:\n- 423\n- 424\n 851 \N 187.149.78.168 965a4ef2-589b-4cb5-987c-9cefedae7eb1 2019-12-28 19:45:01.024318 26050 2 User \N \N 2 User \N update ---\nunique_session_id:\n- HEWaopfhoMx5JxgTVCSq\n- 7eM9539uDxDdvcpRDnFU\n 852 \N 187.149.78.168 965a4ef2-589b-4cb5-987c-9cefedae7eb1 2019-12-28 19:45:01.038386 26051 708 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.917E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 917.0 187.149.78.168 957d9d9a-3729-4be8-82f0-71731741b72f 2019-12-28 19:45:28.565817 26052 1930 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 708\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.299E3\ntotal: !ruby/object:BigDecimal 18:0.11E4\nstatus: 0\ndate_sale: 2019-12-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-945\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 0f3d840e-4489-4e23-80e3-fe24636bbd28 2019-12-28 19:51:49.056355 26053 646 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.78.168 0f3d840e-4489-4e23-80e3-fe24636bbd28 2019-12-28 19:51:49.088312 26054 1930 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 c94dfa00-cf8f-4553-b0c8-94a84c13deb2 2019-12-28 19:51:53.279788 26055 2643 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 708\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.11E4\nmove_type: '1'\nsale_id: 1930\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-945\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-945 187.149.78.168 c94dfa00-cf8f-4553-b0c8-94a84c13deb2 2019-12-28 19:51:53.300803 26056 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-27 19:53:24.950577000 Z\n- &1 2019-12-27 20:59:33.792147000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-28 20:00:48.781710694 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1228\n- 1229\n 2458 \N 189.186.117.149 14df8260-8e4c-4813-a8e8-8c944f251cbc 2019-12-28 20:00:48.789452 26057 4 User \N \N 4 User \N update ---\nunique_session_id:\n- jfGYbrCKt6CxXJdy8abf\n- 5jZ64neBg7CtyYDRV9zz\n 2459 \N 189.186.117.149 14df8260-8e4c-4813-a8e8-8c944f251cbc 2019-12-28 20:00:48.807823 26058 709 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.912E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 912.0 189.186.117.149 9d3558a6-e443-47fa-88ea-a718d8172b08 2019-12-28 20:03:37.542902 26059 1931 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 709\namount: !ruby/object:BigDecimal 18:0.139E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.139E3\nstatus: 0\ndate_sale: 2019-12-28\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-216\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 b5ff3370-0dc9-4237-bc9d-59c19fa29a4a 2019-12-28 20:07:11.475103 26060 1355 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.117.149 b5ff3370-0dc9-4237-bc9d-59c19fa29a4a 2019-12-28 20:07:11.499759 26062 2644 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 709\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.139E3\nmove_type: '1'\nsale_id: 1931\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-216\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.61E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-216 189.186.117.149 9faeddcd-3f52-40af-b150-c8396ad61937 2019-12-28 20:07:19.913889 26063 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-27 20:59:33.792147000 Z\n- &1 2019-12-28 20:00:48.781710000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-28 20:20:21.223825768 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1229\n- 1230\n 2460 \N 189.186.54.195 035752f2-d661-41a4-8a75-295785708bdd 2019-12-28 20:20:21.231864 26064 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5jZ64neBg7CtyYDRV9zz\n- qgs11_Qkey5geb4HxBMM\n 2461 \N 189.186.54.195 035752f2-d661-41a4-8a75-295785708bdd 2019-12-28 20:20:21.248239 26065 1932 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 708\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.119E3\ntotal: !ruby/object:BigDecimal 18:0.108E4\nstatus: 0\ndate_sale: 2019-12-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-946\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 6c107d15-3c3b-48ce-bfe4-d237bff6d85a 2019-12-28 20:25:45.066704 26066 1411 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 13 \N 187.149.78.168 6c107d15-3c3b-48ce-bfe4-d237bff6d85a 2019-12-28 20:25:45.091465 26067 1932 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 d4c09609-d5bd-4a7f-9cb8-86eed6957e0c 2019-12-28 20:26:57.818822 26068 2645 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 708\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.108E4\nmove_type: '1'\nsale_id: 1932\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-946\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.108E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-946 187.149.78.168 d4c09609-d5bd-4a7f-9cb8-86eed6957e0c 2019-12-28 20:26:57.840039 26069 1933 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 708\namount: !ruby/object:BigDecimal 18:0.1578E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.158E3\ntotal: !ruby/object:BigDecimal 18:0.142E4\nstatus: 0\ndate_sale: 2019-12-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-947\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 13aa9931-b5ec-4568-841e-d4bb3b5ac046 2019-12-28 21:24:43.435606 26070 1410 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.78.168 13aa9931-b5ec-4568-841e-d4bb3b5ac046 2019-12-28 21:24:43.460506 26071 1386 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.78.168 13aa9931-b5ec-4568-841e-d4bb3b5ac046 2019-12-28 21:24:43.483141 26072 1933 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 6667e509-be7b-4171-836a-4a6e76b32977 2019-12-28 21:24:49.851259 26073 2646 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 708\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.142E4\nmove_type: '1'\nsale_id: 1933\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-947\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.8E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-947 187.149.78.168 6667e509-be7b-4171-836a-4a6e76b32977 2019-12-28 21:24:49.870545 26074 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-28 20:00:48.781710000 Z\n- &1 2019-12-28 20:20:21.223825000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-28 21:32:28.630920672 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1230\n- 1231\n 2462 \N 189.186.117.149 c51813ba-734d-46a8-90d5-3cf14dba51dd 2019-12-28 21:32:28.638599 26075 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qgs11_Qkey5geb4HxBMM\n- J-fLK1PokiYsX3sKCMZA\n 2463 \N 189.186.117.149 c51813ba-734d-46a8-90d5-3cf14dba51dd 2019-12-28 21:32:28.655668 26076 1934 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 708\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-12-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-948\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 034c0bb6-7fdd-42a6-a3e5-7338e856c69c 2019-12-28 21:59:34.53847 26077 1419 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.78.168 034c0bb6-7fdd-42a6-a3e5-7338e856c69c 2019-12-28 21:59:34.564441 26078 1934 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-948 cancelada. 187.149.78.168 3facbf67-4312-4ae6-b6fd-d826f0ece6e0 2019-12-28 21:59:40.579508 26079 1419 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.78.168 3facbf67-4312-4ae6-b6fd-d826f0ece6e0 2019-12-28 21:59:40.601327 26080 1935 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 708\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.69E2\ntotal: !ruby/object:BigDecimal 18:0.73E3\nstatus: 0\ndate_sale: 2019-12-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-949\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 a713095c-0594-46c9-b495-cbb674e4eae5 2019-12-28 21:59:59.493394 26081 1419 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.78.168 a713095c-0594-46c9-b495-cbb674e4eae5 2019-12-28 21:59:59.520372 26082 1935 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 1bcd18d2-3c0b-441e-a1e3-21807eef685f 2019-12-28 22:00:03.694148 26122 2662 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 708\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 252\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 20f57488-893b-4154-8b0b-4d5c2a1aa982 2019-12-29 01:55:35.745475 26083 2647 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 708\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.559E3\nmove_type: '1'\nsale_id: 1935\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-949\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.559E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-949 187.149.78.168 1bcd18d2-3c0b-441e-a1e3-21807eef685f 2019-12-28 22:00:03.713535 26084 28 ProductsReturn \N \N 27 User \N create ---\nsale_id: 1851\nuser_id: 27\nreturn_code: PV2-D-13\npointsale_id: 2\nnew_amount: !ruby/object:BigDecimal 18:0.699E3\nreturned_amount: !ruby/object:BigDecimal 18:0.589E3\ndifference_amount: !ruby/object:BigDecimal 18:0.11E3\nis_money_returned: false\n 1 devolución PV2-D-13 creada. 187.149.78.168 21f40298-3f5e-4bd7-9670-1ec683f804a1 2019-12-28 22:00:04.793112 26085 29 ProductsReturn \N \N 27 User \N create ---\nsale_id: 1851\nuser_id: 27\nreturn_code: PV2-D-14\npointsale_id: 2\nnew_amount: !ruby/object:BigDecimal 18:0.699E3\nreturned_amount: !ruby/object:BigDecimal 18:0.589E3\ndifference_amount: !ruby/object:BigDecimal 18:0.11E3\nis_money_returned: false\n 1 devolución PV2-D-14 creada. 187.149.78.168 b81d7aa0-237d-4f74-b6e5-ec6d2f3f3832 2019-12-28 22:00:46.821315 26086 1139 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.78.168 b81d7aa0-237d-4f74-b6e5-ec6d2f3f3832 2019-12-28 22:00:46.839925 26087 728 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.78.168 b81d7aa0-237d-4f74-b6e5-ec6d2f3f3832 2019-12-28 22:00:46.865362 26088 728 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.78.168 b81d7aa0-237d-4f74-b6e5-ec6d2f3f3832 2019-12-28 22:00:46.880871 26089 2648 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 708\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.171E3\nmove_type: '1'\nsale_id: 1935\ncardnumber: 563\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-949\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-949 187.149.78.168 2ec088bc-258b-45f7-b29f-746d98723d1e 2019-12-28 22:01:01.686566 26090 2649 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 707\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.11E3\nmove_type: '1'\nsale_id: 1851\ncardnumber: 9156\npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 29\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV2-D-14 187.149.78.168 0607d583-0433-41f3-9e46-1abb53df146e 2019-12-28 22:01:17.386029 26091 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-28 20:20:21.223825000 Z\n- &1 2019-12-28 21:32:28.630920000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-28 22:08:35.379384939 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1231\n- 1232\n 2464 \N 189.186.54.195 6b734b7c-c7ea-445f-a7d3-6d79c5ed2cb7 2019-12-28 22:08:35.386758 26092 4 User \N \N 4 User \N update ---\nunique_session_id:\n- J-fLK1PokiYsX3sKCMZA\n- yht1h5J8xqxnN5tSPgWo\n 2465 \N 189.186.54.195 6b734b7c-c7ea-445f-a7d3-6d79c5ed2cb7 2019-12-28 22:08:35.403438 26093 2650 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 707\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1927\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.11E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-766 187.149.78.168 c5c384d9-d6a9-4fde-ba43-c1f368396936 2019-12-28 22:43:16.984558 26094 2650 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 707\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1927\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.11E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 5fad7bdc-2845-4199-b4bf-3bea3d6d3b6d 2019-12-28 22:43:23.796957 26095 2651 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 707\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1039E4\nmove_type: '1'\nsale_id: 1927\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.61E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-766 187.149.78.168 ba6fb223-32b6-4cfe-a8c2-612f48e139a5 2019-12-28 22:44:01.425733 26096 2652 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 707\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E0\nmove_type: '1'\nsale_id: 1927\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-766 187.149.78.168 f072cfde-2cab-41b2-94c5-7d6d2f532659 2019-12-28 22:46:20.458658 26097 1927 Sale \N \N 27 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.78.168 105f03d2-772f-42fb-be65-cf29a0ada6f7 2019-12-28 22:46:23.206631 26098 2653 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 707\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E0\nmove_type: '1'\nsale_id: 1866\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-743 187.149.78.168 cf799811-c9df-4b8c-8726-2e6132803676 2019-12-28 22:47:25.200932 26099 1866 Sale \N \N 27 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.78.168 3a2c8fd1-d570-455f-8a97-dbb483374fcf 2019-12-28 22:47:30.5437 26100 2654 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 709\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1778\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-185 189.186.117.149 08d986df-2986-4779-909a-3156432fc8d6 2019-12-28 22:51:40.9959 26101 2655 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 709\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '1'\nsale_id: 1778\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-185 189.186.117.149 73d41e65-954f-4957-9cc6-67b33fc539cc 2019-12-28 22:53:28.271776 26102 2656 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 709\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.77E2\nmove_type: '1'\nsale_id: 1778\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.23E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-185 189.186.117.149 e5e9e94f-e0c5-4cd5-928b-1a0d749c0c6d 2019-12-28 22:54:05.535926 26103 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-27 00:12:56.368353000 Z\n- &1 2019-12-27 22:03:59.338499000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-28 23:03:11.460442377 Z\nsign_in_count:\n- 141\n- 142\n 284 \N 187.149.78.168 fe238a79-38dc-4d6b-b347-e3cefe1fd2a4 2019-12-28 23:03:11.466392 26104 1 User \N \N 1 User \N update ---\nunique_session_id:\n- cqjF7XZRyqr8y4y31VE-\n- vLtmMbHNCBpqGMyyDCvQ\n 285 \N 187.149.78.168 fe238a79-38dc-4d6b-b347-e3cefe1fd2a4 2019-12-28 23:03:11.478899 26105 2657 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 707\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.449E3\nmove_type: '1'\nsale_id: 1596\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-626 187.149.78.168 eb475120-2bfd-483f-b09b-dd5cdded9e85 2019-12-28 23:31:23.425589 26106 1596 Sale \N \N 27 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.78.168 f423ea69-9f9d-40fb-8a77-aeea4df4e3b5 2019-12-28 23:31:34.540157 26107 30 ProductsReturn \N \N 21 User \N create ---\nsale_id: 1842\nuser_id: 21\nreturn_code: PV3-D-4\npointsale_id: 3\nnew_amount: !ruby/object:BigDecimal 18:0.629E3\nreturned_amount: !ruby/object:BigDecimal 18:0.5592E3\ndifference_amount: !ruby/object:BigDecimal 27:0.6979999999999995E2\nis_money_returned: false\n 1 devolución PV3-D-4 creada. 189.186.117.149 29af9bba-2bfc-41fd-95e0-75167cb93412 2019-12-29 00:41:15.848948 26108 826 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 189.186.117.149 29af9bba-2bfc-41fd-95e0-75167cb93412 2019-12-29 00:41:15.881334 26109 1401 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.117.149 29af9bba-2bfc-41fd-95e0-75167cb93412 2019-12-29 00:41:15.908569 26110 2658 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 709\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.698E2\nmove_type: '1'\nsale_id: 1842\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E2\nchange: !ruby/object:BigDecimal 18:0.2E0\nproducts_return_id: 30\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV3-D-4 189.186.117.149 a61d126b-de95-4cd0-b3f6-9910fae7a38b 2019-12-29 00:41:40.374102 26111 2659 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 608\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1494\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 39ad6f50-ffeb-4f7c-b6c2-cade16e6962f 2019-12-29 01:50:51.557783 26112 1494 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.78.168 39ad6f50-ffeb-4f7c-b6c2-cade16e6962f 2019-12-29 01:50:51.584 26113 1702 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.78.168 39ad6f50-ffeb-4f7c-b6c2-cade16e6962f 2019-12-29 01:50:51.604172 26114 2659 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 608\n- 708\n 2 movimiento de efectivo por venta con folio PV2-V-588 187.149.78.168 39ad6f50-ffeb-4f7c-b6c2-cade16e6962f 2019-12-29 01:50:51.615698 26115 1936 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 709\namount: !ruby/object:BigDecimal 18:0.2299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2299E4\nstatus: 0\ndate_sale: 2019-12-28\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-217\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 1de2eac9-249a-45d7-84d3-7cb44715a58e 2019-12-29 01:52:12.841516 26116 1387 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.117.149 1de2eac9-249a-45d7-84d3-7cb44715a58e 2019-12-29 01:52:12.86825 26117 1936 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 0c9c461d-e157-4956-81ab-539e678726fa 2019-12-29 01:52:20.794443 26118 2660 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 709\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2299E4\nmove_type: '1'\nsale_id: 1936\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-217\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.23E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-217 189.186.117.149 0c9c461d-e157-4956-81ab-539e678726fa 2019-12-29 01:52:20.815849 26119 251 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 708\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nstatus: 1\nobservations: sueldo Rocio :)\nexpense_date: 2019-12-28\nexpense_code: PV1-E-178\n 1 Egreso por 1328.0 registrado 187.149.78.168 823fa502-3f93-4b06-aa0c-2ba2858f3932 2019-12-29 01:52:54.608253 26120 2661 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 708\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 251\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 823fa502-3f93-4b06-aa0c-2ba2858f3932 2019-12-29 01:52:54.638246 26121 252 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 708\nquantity: !ruby/object:BigDecimal 18:0.4E3\nstatus: 1\nobservations: valentina\nexpense_date: 2019-12-28\nexpense_code: PV1-E-179\n 1 Egreso por 400.0 registrado 187.149.78.168 20f57488-893b-4154-8b0b-4d5c2a1aa982 2019-12-29 01:55:35.722702 26192 1942 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 f60dcdcb-ea39-4e71-9122-627fe5c20f73 2019-12-30 18:36:21.051866 44781 1521 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1521'\n is_parent: false\n sku: BLU-1521\n name: BLS-0162\n description: PANTIBLUSA MOCA, BLANCO Y NEGRO THINKABLE\n price_base: '302.5'\n price_sale: '759.0'\n img_product: C5D32FA6-9AC9-4F8C-97AB-C0B97ABB3735.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001521'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 23:51:09.414597'\n updated_at: &12 2020-11-04 00:10:42.997538371 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1521'\n sku: BLU-1521\n name: BLS-0162\n description: PANTIBLUSA MOCA, BLANCO Y NEGRO THINKABLE\n price_base: '302.50'\n price_sale: '759.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 23:51:09.414597'\n updated_at: '2020-11-03 23:51:09.448975'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001521'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1521'\n type: *3\n value: 1521\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1521\n type: *7\n value: BLU-1521\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0162\n type: *8\n value: BLS-0162\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTIBLUSA MOCA, BLANCO Y NEGRO THINKABLE\n type: *6\n value: PANTIBLUSA MOCA, BLANCO Y NEGRO THINKABLE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '302.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3025E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '759.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.759E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: C5D32FA6-9AC9-4F8C-97AB-C0B97ABB3735.jpeg\n type: *2\n value: C5D32FA6-9AC9-4F8C-97AB-C0B97ABB3735.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001521'\n type: *2\n value: '0001521'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 23:51:09.414597'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- C5D32FA6-9AC9-4F8C-97AB-C0B97ABB3735.jpeg\n 3 El producto BLU-1521 fue modificado. 187.149.136.226 fe824e31-5aa1-4de3-a535-3ed242785453 2020-11-04 00:10:43.037263 26123 714 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 707\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.24974E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 27:0.2424000000000001E3\nphysical_cash: !ruby/object:BigDecimal 18:0.32424E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.78.168 0761e8b8-3db6-4ae3-a359-3229492ac097 2019-12-29 02:05:56.124238 26124 707 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 0761e8b8-3db6-4ae3-a359-3229492ac097 2019-12-29 02:05:56.138212 26125 715 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 708\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.463E4\namount_out: !ruby/object:BigDecimal 18:0.1728E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.1148E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3648E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.78.168 eff362d6-8b71-4744-9790-4163a8b9ba1d 2019-12-29 02:06:51.108424 26126 708 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 eff362d6-8b71-4744-9790-4163a8b9ba1d 2019-12-29 02:06:51.120834 26127 716 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 709\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.31348E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.31E4\ncash_fund: !ruby/object:BigDecimal 18:0.946E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4046E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 733924ba-ec9e-4f36-a9a7-0319363c7285 2019-12-29 02:39:22.003423 26128 709 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 733924ba-ec9e-4f36-a9a7-0319363c7285 2019-12-29 02:39:22.016191 26129 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-27 17:08:52.197533000 Z\n- &1 2019-12-28 17:08:06.194362000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-29 17:12:08.918236628 Z\nsign_in_count:\n- 56\n- 57\n 114 \N 187.149.78.168 2a493874-530f-46c2-b91d-b316a9390617 2019-12-29 17:12:08.949632 26130 27 User \N \N 27 User \N update ---\nunique_session_id:\n- _XEELQsJvRpQyCd6-wGX\n- CJ2jynCRfq3NAaQdkttu\n 115 \N 187.149.78.168 2a493874-530f-46c2-b91d-b316a9390617 2019-12-29 17:12:08.971415 26131 710 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.2424E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 242.4 187.149.78.168 af413802-3af9-4d85-ab69-84db4ed0a375 2019-12-29 17:13:04.625594 26132 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-27 18:41:55.163232000 Z\n- &1 2019-12-28 19:45:01.018664000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-29 17:23:42.157527881 Z\nsign_in_count:\n- 424\n- 425\n 853 \N 187.149.78.168 5d964541-4531-49a4-91ab-f394573f28ad 2019-12-29 17:23:42.164342 26133 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 7eM9539uDxDdvcpRDnFU\n- mwoyq66FzCpdTW2s3zJz\n 854 \N 187.149.78.168 5d964541-4531-49a4-91ab-f394573f28ad 2019-12-29 17:23:42.180189 26134 711 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1148E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1148.0 187.149.78.168 fb59381e-fe8a-4343-b97c-575eca8e5b07 2019-12-29 17:48:52.325624 26135 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-26 17:52:17.580295000 Z\n- &1 2019-12-28 17:54:04.940687000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-29 18:30:17.927890453 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 72\n- 73\n 147 \N 189.186.117.149 f709ed0a-51e5-4c84-8e6a-68ef76b72eeb 2019-12-29 18:30:17.938642 26136 21 User \N \N 21 User \N update ---\nunique_session_id:\n- bHBgDDcP_iEzyQxyRQBW\n- xy2mh6Mosxq6a1h9hbii\n 148 \N 189.186.117.149 f709ed0a-51e5-4c84-8e6a-68ef76b72eeb 2019-12-29 18:30:17.959282 26137 712 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.946E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 946.0 189.186.117.149 52ccb4ec-ac91-4ead-85e8-08db78168507 2019-12-29 18:31:18.018393 26138 2663 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 712\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1463\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-129 189.186.117.149 4cf87665-2270-4dde-9640-1c89270d2d1c 2019-12-29 18:32:00.339144 26139 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-28 21:32:28.630920000 Z\n- &1 2019-12-28 22:08:35.379384000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-29 19:16:15.704030568 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1232\n- 1233\n 2466 \N 189.186.54.195 ca1d1216-381f-4c59-b4f1-7cf013d4f7df 2019-12-29 19:16:15.711096 26140 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yht1h5J8xqxnN5tSPgWo\n- _atSDp3byUnD_H95JCq-\n 2467 \N 189.186.54.195 ca1d1216-381f-4c59-b4f1-7cf013d4f7df 2019-12-29 19:16:15.728009 26141 1937 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 712\namount: !ruby/object:BigDecimal 18:0.2299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2299E3\ntotal: !ruby/object:BigDecimal 18:0.20691E4\nstatus: 0\ndate_sale: 2019-12-29\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-218\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 bdda44cb-7450-4ec7-8639-ba3d14b703a0 2019-12-29 19:26:30.952898 26142 1387 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.117.149 bdda44cb-7450-4ec7-8639-ba3d14b703a0 2019-12-29 19:26:30.997958 26143 1937 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 22047587-86bd-4e19-88bb-56f657ac09c1 2019-12-29 19:27:09.287072 26144 2664 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 712\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.20691E4\nmove_type: '1'\nsale_id: 1937\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-218\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.207E4\nchange: !ruby/object:BigDecimal 18:0.9E0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-218 189.186.117.149 22047587-86bd-4e19-88bb-56f657ac09c1 2019-12-29 19:27:09.308001 26294 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 19 \N 187.149.78.168 8f60f827-779a-4ce5-bb78-4e8a8c747871 2019-12-31 02:05:13.406005 26295 1959 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 714e3eeb-377f-48bc-8dfc-4aa99f5a59d5 2019-12-31 02:05:19.098078 26145 2665 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 711\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 1816\ncardnumber: 5725\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-909 187.149.78.168 56850701-7525-4803-a1ba-3a43b562a9f4 2019-12-29 19:53:12.161108 26146 1816 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.78.168 ec9379ca-aaa2-4286-8f1a-30487004aaec 2019-12-29 19:53:14.104121 26147 1938 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 711\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.74E2\ntotal: !ruby/object:BigDecimal 18:0.675E3\nstatus: 0\ndate_sale: 2019-12-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-950\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 03bf0a1f-a307-418b-8dd8-0f2e288dce64 2019-12-29 21:32:57.128994 26148 1406 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.78.168 03bf0a1f-a307-418b-8dd8-0f2e288dce64 2019-12-29 21:32:57.153703 26149 1938 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 baf00a5a-db98-4936-a6af-520220a05e8e 2019-12-29 21:33:03.819475 26150 2666 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 711\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.675E3\nmove_type: '1'\nsale_id: 1938\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-950\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.325E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-950 187.149.78.168 baf00a5a-db98-4936-a6af-520220a05e8e 2019-12-29 21:33:03.839605 26151 1939 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 711\namount: !ruby/object:BigDecimal 18:0.3128E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.628E3\ntotal: !ruby/object:BigDecimal 18:0.25E4\nstatus: 0\ndate_sale: 2019-12-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-951\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 afeef02d-b956-4c27-9d39-2a7a2a4bd13f 2019-12-29 21:39:13.686349 26152 1458 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.78.168 afeef02d-b956-4c27-9d39-2a7a2a4bd13f 2019-12-29 21:39:13.710468 26153 1273 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 187.149.78.168 afeef02d-b956-4c27-9d39-2a7a2a4bd13f 2019-12-29 21:39:13.734069 26154 1939 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 9ac9b6e8-9b88-47da-8545-46604d0f0188 2019-12-29 21:39:20.031488 26155 2667 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 711\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E4\nmove_type: '1'\nsale_id: 1939\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-951\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-951 187.149.78.168 9ac9b6e8-9b88-47da-8545-46604d0f0188 2019-12-29 21:39:20.052594 26156 253 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 711\nquantity: !ruby/object:BigDecimal 18:0.2E3\nstatus: 1\nobservations: pago de domingo rocio\nexpense_date: 2019-12-29\nexpense_code: PV1-E-180\n 1 Egreso por 200.0 registrado 187.149.78.168 79163e79-7120-47dd-9402-5aecfe4eabc4 2019-12-29 21:44:47.14901 26157 2668 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 711\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 253\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 79163e79-7120-47dd-9402-5aecfe4eabc4 2019-12-29 21:44:47.171728 26158 717 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 711\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4274E4\namount_out: !ruby/object:BigDecimal 18:0.2E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.1123E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4123E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.78.168 c7d99db8-b07c-4d26-a97b-11bda5568bbd 2019-12-29 21:57:56.722873 26159 711 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 c7d99db8-b07c-4d26-a97b-11bda5568bbd 2019-12-29 21:57:56.735567 26160 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-27 22:03:59.338499000 Z\n- &1 2019-12-28 23:03:11.460442000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-29 21:59:12.782899275 Z\nsign_in_count:\n- 142\n- 143\n 286 \N 187.149.78.168 52461ea2-bf62-4358-930d-9e1ab23de129 2019-12-29 21:59:12.789139 26161 1 User \N \N 1 User \N update ---\nunique_session_id:\n- vLtmMbHNCBpqGMyyDCvQ\n- XSVT2oxkYH9KFASP36uy\n 287 \N 187.149.78.168 52461ea2-bf62-4358-930d-9e1ab23de129 2019-12-29 21:59:12.801637 26162 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-28 22:08:35.379384000 Z\n- &1 2019-12-29 19:16:15.704030000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-29 23:18:44.667318050 Z\nsign_in_count:\n- 1233\n- 1234\n 2468 \N 189.186.54.195 2e0073ac-800e-4ac2-9012-eeb7e751d315 2019-12-29 23:18:44.674576 26163 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _atSDp3byUnD_H95JCq-\n- Xowqa9SH9K1jLVHf1CXv\n 2469 \N 189.186.54.195 2e0073ac-800e-4ac2-9012-eeb7e751d315 2019-12-29 23:18:44.692125 26164 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-29 19:16:15.704030000 Z\n- &1 2019-12-29 23:18:44.667318000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-29 23:57:20.298432112 Z\nsign_in_count:\n- 1234\n- 1235\n 2470 \N 189.186.54.195 169ce10f-0b6b-4465-860d-12369688a01e 2019-12-29 23:57:20.305477 26165 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Xowqa9SH9K1jLVHf1CXv\n- MPoRTtsFawLsKxr6YorA\n 2471 \N 189.186.54.195 169ce10f-0b6b-4465-860d-12369688a01e 2019-12-29 23:57:20.321246 26166 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-29 23:18:44.667318000 Z\n- &1 2019-12-29 23:57:20.298432000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-30 01:14:50.323821226 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1235\n- 1236\n 2472 \N 189.186.117.149 022f1d59-583d-4ade-82c4-f368b6b7ec33 2019-12-30 01:14:50.332259 26167 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MPoRTtsFawLsKxr6YorA\n- CUQqLLLYW2DMLbdXAT4C\n 2473 \N 189.186.117.149 022f1d59-583d-4ade-82c4-f368b6b7ec33 2019-12-30 01:14:50.364171 26316 2 User \N \N 2 User \N update ---\nunique_session_id:\n- UfGvgDxmsofWgPk2yLNt\n- rxFwwzXLArg3DdKGLLYs\n 858 \N 187.149.78.168 2bac793a-263d-4927-b38f-1a25413307ea 2019-12-31 16:27:12.844975 26168 718 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 712\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.25691E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.1015E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3515E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 38436bf6-2b41-4bf2-9d8d-c09ccc63f352 2019-12-30 01:28:00.55118 26169 712 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 38436bf6-2b41-4bf2-9d8d-c09ccc63f352 2019-12-30 01:28:00.565579 26170 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-28 17:08:06.194362000 Z\n- &1 2019-12-29 17:12:08.918236000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-30 17:12:32.877128561 Z\nsign_in_count:\n- 57\n- 58\n 116 \N 187.149.78.168 9e2f4f6f-c2fd-4654-8f7e-367c599baaa4 2019-12-30 17:12:32.911389 26171 27 User \N \N 27 User \N update ---\nunique_session_id:\n- CJ2jynCRfq3NAaQdkttu\n- JAx4dR8QH_YPRCD3kMa2\n 117 \N 187.149.78.168 9e2f4f6f-c2fd-4654-8f7e-367c599baaa4 2019-12-30 17:12:32.933825 26172 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-28 19:45:01.018664000 Z\n- &1 2019-12-29 17:23:42.157527000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-30 17:40:34.316161050 Z\nsign_in_count:\n- 425\n- 426\n 855 \N 187.149.78.168 8deb14e4-0c3b-43d4-afc2-70bed6d26dc0 2019-12-30 17:40:34.321766 26173 2 User \N \N 2 User \N update ---\nunique_session_id:\n- mwoyq66FzCpdTW2s3zJz\n- UfGvgDxmsofWgPk2yLNt\n 856 \N 187.149.78.168 8deb14e4-0c3b-43d4-afc2-70bed6d26dc0 2019-12-30 17:40:34.336201 26174 713 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1123E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1123.0 187.149.78.168 03faeebe-1d04-4576-a78b-3bfbb192e192 2019-12-30 17:41:00.710601 26175 1940 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 713\namount: !ruby/object:BigDecimal 18:0.629E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.59E2\ntotal: !ruby/object:BigDecimal 18:0.57E3\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-952\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 c393e7fd-e735-4039-820e-ef9bce5b689b 2019-12-30 17:43:32.343627 26176 1386 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.78.168 c393e7fd-e735-4039-820e-ef9bce5b689b 2019-12-30 17:43:32.372062 26177 1940 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 ed654a0a-565a-4806-bb29-e93a8e70f1ff 2019-12-30 17:43:36.643284 26178 2669 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 713\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.57E3\nmove_type: '1'\nsale_id: 1940\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-952\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.57E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-952 187.149.78.168 ed654a0a-565a-4806-bb29-e93a8e70f1ff 2019-12-30 17:43:36.664062 26179 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-29 23:57:20.298432000 Z\n- &1 2019-12-30 01:14:50.323821000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-30 17:56:57.746633866 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1236\n- 1237\n 2474 \N 189.186.54.195 b5358bba-8e99-4f80-a900-16fb7dd48eed 2019-12-30 17:56:57.753963 26180 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CUQqLLLYW2DMLbdXAT4C\n- sm3mhPygwDEqJWUWpL4g\n 2475 \N 189.186.54.195 b5358bba-8e99-4f80-a900-16fb7dd48eed 2019-12-30 17:56:57.772245 26181 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-28 17:54:04.940687000 Z\n- &1 2019-12-29 18:30:17.927890000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-30 17:59:25.620389863 Z\nsign_in_count:\n- 73\n- 74\n 149 \N 189.186.117.149 761d3139-e81f-4673-8c9b-30b9512e2988 2019-12-30 17:59:25.625807 26182 21 User \N \N 21 User \N update ---\nunique_session_id:\n- xy2mh6Mosxq6a1h9hbii\n- jesrB9hAgzTtAwvNogSw\n 150 \N 189.186.117.149 761d3139-e81f-4673-8c9b-30b9512e2988 2019-12-30 17:59:25.637339 26183 714 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1015E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1015.0 189.186.117.149 6190ff01-2940-45d1-ba92-927e00342831 2019-12-30 17:59:38.374864 26184 1941 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 713\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.89E2\ntotal: !ruby/object:BigDecimal 18:0.81E3\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-953\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 7eea06d4-38ee-41b9-abee-8cde4b5c5bdc 2019-12-30 18:00:31.662161 26185 1297 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 14 \N 187.149.78.168 7eea06d4-38ee-41b9-abee-8cde4b5c5bdc 2019-12-30 18:00:31.688339 26186 1941 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 357320f6-0358-4ccc-9828-cbc7ad42e775 2019-12-30 18:00:35.850549 26187 2670 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 713\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.81E3\nmove_type: '1'\nsale_id: 1941\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-953\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.81E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-953 187.149.78.168 357320f6-0358-4ccc-9828-cbc7ad42e775 2019-12-30 18:00:35.870448 26188 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-28 23:03:11.460442000 Z\n- &1 2019-12-29 21:59:12.782899000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-30 18:09:57.270113297 Z\nsign_in_count:\n- 143\n- 144\n 288 \N 187.149.78.168 b179cc27-5e0e-4c1e-ae8d-b7b93748b595 2019-12-30 18:09:57.276438 26189 1 User \N \N 1 User \N update ---\nunique_session_id:\n- XSVT2oxkYH9KFASP36uy\n- pDcsb1zzAXBdCCniMAP9\n 289 \N 187.149.78.168 b179cc27-5e0e-4c1e-ae8d-b7b93748b595 2019-12-30 18:09:57.2888 26190 1942 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 714\namount: !ruby/object:BigDecimal 18:0.629E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.629E3\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-219\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 10edd8ff-5aaf-447f-ad8f-12a89a7f7ce2 2019-12-30 18:35:54.148513 26191 1401 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.117.149 10edd8ff-5aaf-447f-ad8f-12a89a7f7ce2 2019-12-30 18:35:54.189526 26193 2671 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 714\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.629E3\nmove_type: '1'\nsale_id: 1942\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-219\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.71E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-219 189.186.117.149 f60dcdcb-ea39-4e71-9122-627fe5c20f73 2019-12-30 18:36:21.072068 26194 1943 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 714\namount: !ruby/object:BigDecimal 18:0.151152E4\ntax: !ruby/object:BigDecimal 18:0.18748E3\ndiscount: !ruby/object:BigDecimal 18:0.3398E3\ntotal: !ruby/object:BigDecimal 18:0.13592E4\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-220\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 7a03d0d9-b79a-4adc-a4f4-9fd6a5bfcd60 2019-12-30 19:25:49.552495 26195 907 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.117.149 7a03d0d9-b79a-4adc-a4f4-9fd6a5bfcd60 2019-12-30 19:25:49.591347 26196 1943 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 a5e9ceb7-6a49-49ec-96eb-da2a945ac628 2019-12-30 19:26:03.276535 26197 2672 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 714\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.136E4\nmove_type: '1'\nsale_id: 1943\ncardnumber: 7884\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-220\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-220 189.186.117.149 a5e9ceb7-6a49-49ec-96eb-da2a945ac628 2019-12-30 19:26:03.29856 26198 2673 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 714\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.87E3\nmove_type: '1'\nsale_id: 1903\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.87E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-212 189.186.117.149 10a14feb-5fa2-4b26-b84d-12a491541a5f 2019-12-30 19:44:14.661387 26199 2674 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 714\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.87E3\nmove_type: '1'\nsale_id: 1903\ncardnumber: 3070\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-212 189.186.117.149 61a9cd10-7293-43fa-88e3-6e877ae6c6b3 2019-12-30 19:45:11.50635 26200 1903 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.117.149 11eea81f-bae0-4830-8fa2-02561e644c79 2019-12-30 19:45:15.126372 26201 254 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 714\nquantity: !ruby/object:BigDecimal 18:0.87E3\nstatus: 1\nobservations: 'ERROR AL SACAR APARTADO '\nexpense_date: 2019-12-30\nexpense_code: PV3-E-21\n 1 Egreso por 870.0 registrado 189.186.117.149 3ff28653-92e5-4155-9eb5-b2e8c3680039 2019-12-30 19:47:27.164152 26202 2675 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 714\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.87E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 254\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.117.149 3ff28653-92e5-4155-9eb5-b2e8c3680039 2019-12-30 19:47:27.182687 26203 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-30 01:14:50.323821000 Z\n- &1 2019-12-30 17:56:57.746633000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-30 19:51:14.664854902 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1237\n- 1238\n 2476 \N 189.186.117.149 b0041042-e9f9-44fc-9e8c-1cf266b229dd 2019-12-30 19:51:14.673597 26204 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sm3mhPygwDEqJWUWpL4g\n- GY7orokWNCihAoK37wgQ\n 2477 \N 189.186.117.149 b0041042-e9f9-44fc-9e8c-1cf266b229dd 2019-12-30 19:51:14.690108 26205 1944 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 713\namount: !ruby/object:BigDecimal 18:0.868E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.79E2\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-954\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 acfe4b0d-a06b-4a10-ba8d-3346c51aec71 2019-12-30 20:12:23.580923 26206 1097 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 16 \N 187.149.78.168 acfe4b0d-a06b-4a10-ba8d-3346c51aec71 2019-12-30 20:12:23.60678 26207 1306 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.78.168 acfe4b0d-a06b-4a10-ba8d-3346c51aec71 2019-12-30 20:12:23.62901 26208 1944 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 b91c3ea3-c9a5-41be-88e8-b5e9c4e9e685 2019-12-30 20:12:29.587531 26209 2676 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 713\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.789E3\nmove_type: '1'\nsale_id: 1944\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-954\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.789E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-954 187.149.78.168 b91c3ea3-c9a5-41be-88e8-b5e9c4e9e685 2019-12-30 20:12:29.60742 26210 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-30 17:56:57.746633000 Z\n- &1 2019-12-30 19:51:14.664854000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-30 20:17:24.991031107 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1238\n- 1239\n 2478 \N 189.186.54.195 13ab4056-0eb0-4f05-b5ae-20deb05ff863 2019-12-30 20:17:24.998735 26211 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GY7orokWNCihAoK37wgQ\n- HLT3X_TWRbNKs3fG3oBM\n 2479 \N 189.186.54.195 13ab4056-0eb0-4f05-b5ae-20deb05ff863 2019-12-30 20:17:25.028481 26317 715 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1127E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1127.0 187.149.78.168 dbd58ccd-a6b0-4b57-bb36-50b6b9f1cfe5 2019-12-31 16:28:09.898254 26212 2677 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 624\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1542\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 6e6a7ede-7329-4005-905c-818149f0beb3 2019-12-30 21:01:21.87154 26213 2677 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 624\n- 713\n 2 movimiento de efectivo por venta con folio PV3-V-141 187.149.78.168 6e6a7ede-7329-4005-905c-818149f0beb3 2019-12-30 21:01:21.895458 26214 1945 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 714\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-221\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 4b7a8846-be7c-467b-b176-7f5203a722b1 2019-12-30 21:39:02.347349 26215 1135 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.117.149 4b7a8846-be7c-467b-b176-7f5203a722b1 2019-12-30 21:39:02.370887 26216 1945 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 6eaa249f-dcbb-4897-8905-39a891522e3d 2019-12-30 21:39:14.360278 26217 2678 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 714\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.569E3\nmove_type: '1'\nsale_id: 1945\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-221\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-221 189.186.117.149 6eaa249f-dcbb-4897-8905-39a891522e3d 2019-12-30 21:39:14.379911 26218 1946 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 714\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-222\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 a314be02-638c-42ba-b4d0-41a6194795d3 2019-12-30 21:40:32.862437 26219 1128 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.117.149 a314be02-638c-42ba-b4d0-41a6194795d3 2019-12-30 21:40:32.892084 26220 1946 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 9caa7a67-390b-4762-938b-3a62930cd01d 2019-12-30 21:41:53.585103 26221 2679 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 714\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 1946\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-222\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-222 189.186.117.149 9caa7a67-390b-4762-938b-3a62930cd01d 2019-12-30 21:41:53.604343 26222 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-30 19:51:14.664854000 Z\n- &1 2019-12-30 20:17:24.991031000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-30 21:43:57.992345178 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1239\n- 1240\n 2480 \N 189.186.117.149 ab6e20a4-b5aa-4e62-b1d6-566e20044a68 2019-12-30 21:43:58.000952 26223 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HLT3X_TWRbNKs3fG3oBM\n- ki82dmnxt-yXRGqR39Vs\n 2481 \N 189.186.117.149 ab6e20a4-b5aa-4e62-b1d6-566e20044a68 2019-12-30 21:43:58.016364 26224 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-30 20:17:24.991031000 Z\n- &1 2019-12-30 21:43:57.992345000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-30 21:45:16.391087283 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1240\n- 1241\n 2482 \N 189.186.54.195 98404e5f-1904-4f86-94e1-df46afcab823 2019-12-30 21:45:16.398542 26225 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ki82dmnxt-yXRGqR39Vs\n- PL61a4gzJx79VynJy4x_\n 2483 \N 189.186.54.195 98404e5f-1904-4f86-94e1-df46afcab823 2019-12-30 21:45:16.414489 26226 1947 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 710\namount: !ruby/object:BigDecimal 18:0.989E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.989E3\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-769\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 d9fb8cc4-1bc4-4ead-9052-53fa741701c7 2019-12-30 21:53:02.766195 26227 1445 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.78.168 d9fb8cc4-1bc4-4ead-9052-53fa741701c7 2019-12-30 21:53:02.789981 26228 1947 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 18b6c81a-0a57-40b6-8be3-dd684c2d7c57 2019-12-30 21:53:26.73408 26229 2680 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 710\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.989E3\nmove_type: '1'\nsale_id: 1947\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-769\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-769 187.149.78.168 18b6c81a-0a57-40b6-8be3-dd684c2d7c57 2019-12-30 21:53:26.753013 26230 1948 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 710\namount: !ruby/object:BigDecimal 18:0.459E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.459E2\ntotal: !ruby/object:BigDecimal 18:0.4131E3\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-770\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 e18b95f8-24da-4386-b91a-0aaf53566392 2019-12-30 22:33:34.556974 26231 1099 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 187.149.78.168 e18b95f8-24da-4386-b91a-0aaf53566392 2019-12-30 22:33:34.615594 26232 1948 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 7b88daaf-f3c8-40d4-821c-1b8437fef289 2019-12-30 22:34:06.861153 26233 2681 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 710\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4131E3\nmove_type: '1'\nsale_id: 1948\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-770\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.869E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-770 187.149.78.168 7b88daaf-f3c8-40d4-821c-1b8437fef289 2019-12-30 22:34:06.885778 26234 2682 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 710\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1948\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-770\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.5E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-770 187.149.78.168 b4c6eec8-8a87-4118-bfe0-c99c906d46da 2019-12-30 22:34:06.949239 26235 2682 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 710\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 1948\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-770\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.5E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 b5062f54-2ae9-4634-9042-0fc9ab34df25 2019-12-30 22:34:09.047679 26236 1949 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 713\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.149E3\ntotal: !ruby/object:BigDecimal 18:0.85E3\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-955\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 b856243c-123b-447d-96b2-274331c9e293 2019-12-30 23:06:28.170026 26237 1299 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.78.168 b856243c-123b-447d-96b2-274331c9e293 2019-12-30 23:06:28.200668 26238 1949 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 5836a850-b4b3-4c9b-a519-e357c3957ca1 2019-12-30 23:07:01.472753 26239 2683 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 713\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.85E3\nmove_type: '1'\nsale_id: 1949\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-955\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.85E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-955 187.149.78.168 5836a850-b4b3-4c9b-a519-e357c3957ca1 2019-12-30 23:07:01.492023 26240 1950 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 710\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.699E2\ntotal: !ruby/object:BigDecimal 18:0.6291E3\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-771\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 187f0bf3-e7d7-4ac8-b3a0-bafe15a358e2 2019-12-30 23:07:55.022788 26241 1079 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.78.168 187f0bf3-e7d7-4ac8-b3a0-bafe15a358e2 2019-12-30 23:07:55.04713 26242 1950 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 822f6c9a-8a40-409b-8287-070db6ea5731 2019-12-30 23:08:45.306831 26243 2684 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 710\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6291E3\nmove_type: '1'\nsale_id: 1950\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-771\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6291E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-771 187.149.78.168 822f6c9a-8a40-409b-8287-070db6ea5731 2019-12-30 23:08:45.326483 26244 1951 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 714\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-223\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 8daea51e-da9d-47ac-9d71-1324126b60bb 2019-12-30 23:21:23.520467 26245 1080 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.117.149 8daea51e-da9d-47ac-9d71-1324126b60bb 2019-12-30 23:21:23.562389 26246 1951 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 38b56073-d6fa-43fb-88fd-fb02682da11c 2019-12-30 23:21:43.633818 26247 2685 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 714\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 1951\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-223\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.13E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-223 189.186.117.149 38b56073-d6fa-43fb-88fd-fb02682da11c 2019-12-30 23:21:43.653976 26248 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-30 21:43:57.992345000 Z\n- &1 2019-12-30 21:45:16.391087000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-30 23:22:30.140047143 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1241\n- 1242\n 2484 \N 189.186.117.149 bef865a9-24de-4376-ab9d-615191e3ef60 2019-12-30 23:22:30.148721 26249 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PL61a4gzJx79VynJy4x_\n- sdjPv2B-jjXDGxEjd3yS\n 2485 \N 189.186.117.149 bef865a9-24de-4376-ab9d-615191e3ef60 2019-12-30 23:22:30.177489 26250 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-30 21:45:16.391087000 Z\n- &1 2019-12-30 23:22:30.140047000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-30 23:44:35.432927402 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1242\n- 1243\n 2486 \N 189.186.54.195 9598e0ac-10c3-4fde-97b9-a303e86375b2 2019-12-30 23:44:35.440185 26251 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sdjPv2B-jjXDGxEjd3yS\n- K7DJn5rV-XLwJZs4NKRV\n 2487 \N 189.186.54.195 9598e0ac-10c3-4fde-97b9-a303e86375b2 2019-12-30 23:44:35.455668 26252 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-30 23:22:30.140047000 Z\n- &1 2019-12-30 23:44:35.432927000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-31 00:05:49.070487295 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1243\n- 1244\n 2488 \N 189.186.117.149 179d94f7-9a09-4c7d-ad25-d87e59cfa76d 2019-12-31 00:05:49.077285 26253 4 User \N \N 4 User \N update ---\nunique_session_id:\n- K7DJn5rV-XLwJZs4NKRV\n- fVzxazUJnLWVxzirLqxa\n 2489 \N 189.186.117.149 179d94f7-9a09-4c7d-ad25-d87e59cfa76d 2019-12-31 00:05:49.092692 26254 1952 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 714\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-224\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 2965315e-b776-49bf-b13a-903f03442f7e 2019-12-31 00:37:32.859054 26255 1271 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.117.149 2965315e-b776-49bf-b13a-903f03442f7e 2019-12-31 00:37:32.907794 26256 1952 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 7d303c39-ccb2-4750-993b-2b8a597a3143 2019-12-31 00:37:42.490988 26257 2686 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 714\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.749E3\nmove_type: '1'\nsale_id: 1952\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-224\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.75E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-224 189.186.117.149 7d303c39-ccb2-4750-993b-2b8a597a3143 2019-12-31 00:37:42.512316 26258 1953 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 710\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.699E2\ntotal: !ruby/object:BigDecimal 18:0.6291E3\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-772\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 45a4a56c-9ccf-42f4-9ffa-6c9e8b42d231 2019-12-31 00:51:12.963245 26259 1281 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 15 \N 187.149.78.168 45a4a56c-9ccf-42f4-9ffa-6c9e8b42d231 2019-12-31 00:51:12.98991 26260 1953 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 4f8784f9-facc-48d3-81d8-a36e5d7c62d1 2019-12-31 00:51:39.39015 26261 2687 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 710\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6291E3\nmove_type: '1'\nsale_id: 1953\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-772\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.64E3\nchange: !ruby/object:BigDecimal 18:0.109E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-772 187.149.78.168 4f8784f9-facc-48d3-81d8-a36e5d7c62d1 2019-12-31 00:51:39.410752 26262 1954 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 710\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.699E2\ntotal: !ruby/object:BigDecimal 18:0.6291E3\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-773\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 0a2cd412-a950-4b88-acfe-58fa7da0c41b 2019-12-31 00:53:07.123879 26263 1281 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 16 \N 187.149.78.168 0a2cd412-a950-4b88-acfe-58fa7da0c41b 2019-12-31 00:53:07.164397 26264 1954 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 fab0487c-2498-4fbb-a9ca-ce6aa0c8907f 2019-12-31 00:53:16.514039 26265 2688 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 710\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6291E3\nmove_type: '1'\nsale_id: 1954\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-773\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.65E3\nchange: !ruby/object:BigDecimal 18:0.209E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-773 187.149.78.168 fab0487c-2498-4fbb-a9ca-ce6aa0c8907f 2019-12-31 00:53:16.541284 26266 1955 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 710\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-774\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 bce9ddba-7d67-4e54-91d5-9127bfc1a4de 2019-12-31 00:57:47.182068 26267 1415 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.78.168 bce9ddba-7d67-4e54-91d5-9127bfc1a4de 2019-12-31 00:57:47.211923 26268 1955 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 e6587100-8cf1-42ca-96b9-6f53050e954d 2019-12-31 00:58:12.854154 26269 2689 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 710\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1955\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-774\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-774 187.149.78.168 e6587100-8cf1-42ca-96b9-6f53050e954d 2019-12-31 00:58:12.875784 26270 1425 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.117.149 84878a97-d940-4a34-b592-fe41cdd4e3fe 2019-12-31 01:10:01.14016 26271 397 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2019-12-30\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.117.149 eb0c749b-e4d4-4e06-8189-1a11b53e2bc8 2019-12-31 01:10:05.54585 26272 397 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-30\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.78.168 90125915-f659-481a-beaa-9609bffee744 2019-12-31 01:10:34.804214 26273 1423 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.78.168 90125915-f659-481a-beaa-9609bffee744 2019-12-31 01:10:34.821208 26274 1956 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 710\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-775\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 c107c5fd-f94f-4322-bf83-6966286d1fe0 2019-12-31 01:10:54.725097 26275 1476 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.78.168 c107c5fd-f94f-4322-bf83-6966286d1fe0 2019-12-31 01:10:54.751138 26276 1956 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 b59b9417-d1c4-448b-9f44-3eb1293e2bcf 2019-12-31 01:11:10.719231 26277 2690 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 710\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 1956\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-775\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-775 187.149.78.168 b59b9417-d1c4-448b-9f44-3eb1293e2bcf 2019-12-31 01:11:10.743239 26278 274 Customer \N \N 2 User \N create ---\nnick_name: ABIGAIL NUÑEZ\nphone: "(667) 101-9609"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ABIGAIL NUÑEZ fue registrado. 187.149.78.168 eedeaf09-f054-440e-ae79-6c8dd8de8045 2019-12-31 01:11:37.317762 26279 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-30 23:44:35.432927000 Z\n- &1 2019-12-31 00:05:49.070487000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-31 01:55:51.779799759 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945651\n mask_addr: 4294967295\nsign_in_count:\n- 1244\n- 1245\n 2490 \N 200.68.179.179 cad9f3c0-428d-4fd2-a5b3-21807f6bb394 2019-12-31 01:55:51.789488 26280 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fVzxazUJnLWVxzirLqxa\n- d1TLbBFcySc41t8yGhyP\n 2491 \N 200.68.179.179 cad9f3c0-428d-4fd2-a5b3-21807f6bb394 2019-12-31 01:55:51.811119 26281 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-31 00:05:49.070487000 Z\n- &1 2019-12-31 01:55:51.779799000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-31 01:56:57.216206828 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945651\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945651\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1245\n- 1246\n 2492 \N 189.186.117.149 5ad48225-0ad1-4ab8-aa76-50415c9cba32 2019-12-31 01:56:57.226292 26282 4 User \N \N 4 User \N update ---\nunique_session_id:\n- d1TLbBFcySc41t8yGhyP\n- usGmF_e4cLLPPMVvaxwy\n 2493 \N 189.186.117.149 5ad48225-0ad1-4ab8-aa76-50415c9cba32 2019-12-31 01:56:57.243494 26283 1957 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 710\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.699E2\ntotal: !ruby/object:BigDecimal 18:0.6291E3\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-776\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 7692f941-c791-4def-be4b-7434f4b30b0a 2019-12-31 02:00:16.564294 26284 1281 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 17 \N 187.149.78.168 7692f941-c791-4def-be4b-7434f4b30b0a 2019-12-31 02:00:16.590617 26285 1957 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 86fc8eef-b645-4d35-a9ce-4d75eb88831b 2019-12-31 02:00:46.569891 26286 2691 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 710\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6291E3\nmove_type: '1'\nsale_id: 1957\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-776\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.3709E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-776 187.149.78.168 86fc8eef-b645-4d35-a9ce-4d75eb88831b 2019-12-31 02:00:46.596513 26287 2691 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 710\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6291E3\nmove_type: '1'\nsale_id: 1957\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-776\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.3709E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 7408de98-86b6-48c5-9cc4-d7f45aeadbdc 2019-12-31 02:01:21.670412 26288 2692 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 710\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6291E3\nmove_type: '1'\nsale_id: 1957\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-776\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.65E3\nchange: !ruby/object:BigDecimal 18:0.209E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-776 187.149.78.168 3f2b47b6-a5f4-4657-9654-6cdc87db88a9 2019-12-31 02:01:27.798963 26289 1958 Sale \N \N 2 User \N create ---\ncustomer_id: 274\nuser_id: 2\nopen_cash_register_id: 713\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.74E2\ntotal: !ruby/object:BigDecimal 18:0.675E3\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-956\nexpiration_date: 2020-02-03\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 518e058f-1e74-41b7-a137-7955e0e1b22e 2019-12-31 02:04:22.43421 26290 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 17 \N 187.149.78.168 518e058f-1e74-41b7-a137-7955e0e1b22e 2019-12-31 02:04:22.461551 26291 1958 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-956 cancelada. 187.149.78.168 484c2931-472d-4fca-8316-703953e117ea 2019-12-31 02:04:36.139 26292 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 18 \N 187.149.78.168 484c2931-472d-4fca-8316-703953e117ea 2019-12-31 02:04:36.169763 26293 1959 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 713\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.74E2\ntotal: !ruby/object:BigDecimal 18:0.675E3\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-957\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 8f60f827-779a-4ce5-bb78-4e8a8c747871 2019-12-31 02:05:13.378774 26296 2693 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 713\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.675E3\nmove_type: '1'\nsale_id: 1959\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-957\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.25E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-957 187.149.78.168 714e3eeb-377f-48bc-8dfc-4aa99f5a59d5 2019-12-31 02:05:19.119877 26297 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-31 01:55:51.779799000 Z\n- &1 2019-12-31 01:56:57.216206000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-31 02:05:22.583782882 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945651\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945651\n mask_addr: 4294967295\nsign_in_count:\n- 1246\n- 1247\n 2494 \N 200.68.179.179 6003cec7-e292-40ad-90ae-8e39ae55c9f3 2019-12-31 02:05:22.596968 26298 4 User \N \N 4 User \N update ---\nunique_session_id:\n- usGmF_e4cLLPPMVvaxwy\n- WxM4CusneDq7GYayGbCy\n 2495 \N 200.68.179.179 6003cec7-e292-40ad-90ae-8e39ae55c9f3 2019-12-31 02:05:22.618415 26299 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-31 01:56:57.216206000 Z\n- &1 2019-12-31 02:05:22.583782000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-31 02:16:41.701248910 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945651\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945651\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1247\n- 1248\n 2496 \N 189.186.117.149 a97e09e8-54de-4e76-9142-56f9c16ba1f9 2019-12-31 02:16:41.718921 26300 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WxM4CusneDq7GYayGbCy\n- z4YRxZRKQAXKrG3zdoxC\n 2497 \N 189.186.117.149 a97e09e8-54de-4e76-9142-56f9c16ba1f9 2019-12-31 02:16:41.748418 26301 1960 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 713\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.89E2\ntotal: !ruby/object:BigDecimal 18:0.81E3\nstatus: 0\ndate_sale: 2019-12-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-958\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 8a6e0696-247e-404d-9531-c2722b63009a 2019-12-31 02:21:34.867489 26302 1297 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 15 \N 187.149.78.168 8a6e0696-247e-404d-9531-c2722b63009a 2019-12-31 02:21:34.898496 26303 1960 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 68681332-5d02-4271-a95f-de0217e7557b 2019-12-31 02:22:01.698744 26304 2694 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 713\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.81E3\nmove_type: '1'\nsale_id: 1960\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-958\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.81E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-958 187.149.78.168 68681332-5d02-4271-a95f-de0217e7557b 2019-12-31 02:22:01.729304 26305 255 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 714\nquantity: !ruby/object:BigDecimal 18:0.773E3\nstatus: 1\nobservations: 'PAGO LUZ '\nexpense_date: 2019-12-30\nexpense_code: PV3-E-22\n 1 Egreso por 773.0 registrado 189.186.117.149 ca58d6f3-8ebd-4205-840f-2bb30881c7d3 2019-12-31 02:54:05.061257 26306 2695 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 714\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.773E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 255\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.117.149 ca58d6f3-8ebd-4205-840f-2bb30881c7d3 2019-12-31 02:54:05.08221 26307 719 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 714\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.6945E4\namount_out: !ruby/object:BigDecimal 18:0.1643E4\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.302E4\ncash_fund: !ruby/object:BigDecimal 18:0.1067E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4087E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 37e842ed-723b-4c6a-8902-33fe4d9f080f 2019-12-31 02:59:50.747079 26308 714 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 37e842ed-723b-4c6a-8902-33fe4d9f080f 2019-12-31 02:59:50.760725 26309 720 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 710\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.56165E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.5E4\ncash_fund: !ruby/object:BigDecimal 27:0.8588999999999996E3\nphysical_cash: !ruby/object:BigDecimal 18:0.58589E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.78.168 79e32f74-a655-4b61-85e5-6d9426e98e6e 2019-12-31 03:02:31.14907 26310 710 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 79e32f74-a655-4b61-85e5-6d9426e98e6e 2019-12-31 03:02:31.160856 26311 721 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 713\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5004E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E4\ncash_fund: !ruby/object:BigDecimal 18:0.1127E4\nphysical_cash: !ruby/object:BigDecimal 18:0.6127E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.78.168 2a98a13a-c2e2-460c-834b-3a94c3ea56e6 2019-12-31 03:14:24.158446 26312 713 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 2a98a13a-c2e2-460c-834b-3a94c3ea56e6 2019-12-31 03:14:24.172328 26313 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-31 02:05:22.583782000 Z\n- &1 2019-12-31 02:16:41.701248000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-31 05:31:37.528342879 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945651\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945651\n mask_addr: 4294967295\nsign_in_count:\n- 1248\n- 1249\n 2498 \N 200.68.179.179 72a47a7d-e7ee-4d77-a3da-b5c7170d0282 2019-12-31 05:31:37.540975 26314 4 User \N \N 4 User \N update ---\nunique_session_id:\n- z4YRxZRKQAXKrG3zdoxC\n- yvbTbyg64iXVVLnNDnim\n 2499 \N 200.68.179.179 72a47a7d-e7ee-4d77-a3da-b5c7170d0282 2019-12-31 05:31:37.575664 26315 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-29 17:23:42.157527000 Z\n- &1 2019-12-30 17:40:34.316161000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-31 16:27:12.792858369 Z\nsign_in_count:\n- 426\n- 427\n 857 \N 187.149.78.168 2bac793a-263d-4927-b38f-1a25413307ea 2019-12-31 16:27:12.822253 26320 716 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.8589E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 858.9 187.149.78.168 7789be1a-0ece-453e-ae41-fa3835e9d3f5 2019-12-31 17:17:12.372023 26321 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-29 18:30:17.927890000 Z\n- &1 2019-12-30 17:59:25.620389000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-31 17:23:38.424999470 Z\nsign_in_count:\n- 74\n- 75\n 151 \N 189.186.117.149 19593472-19a4-4150-8160-c58605db3cf4 2019-12-31 17:23:38.430941 26322 21 User \N \N 21 User \N update ---\nunique_session_id:\n- jesrB9hAgzTtAwvNogSw\n- jEGCr6AjrL_1MzaR9PJK\n 152 \N 189.186.117.149 19593472-19a4-4150-8160-c58605db3cf4 2019-12-31 17:23:38.444619 26323 2696 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 648\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.449E3\nmove_type: '1'\nsale_id: 1597\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.449E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 bc5c888d-23aa-4e2f-99a8-a6532fe95368 2019-12-31 17:33:27.03179 26324 1597 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.78.168 bc5c888d-23aa-4e2f-99a8-a6532fe95368 2019-12-31 17:33:27.052401 26325 2696 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 648\n- 715\n 2 movimiento de efectivo por venta con folio PV1-V-815 187.149.78.168 bc5c888d-23aa-4e2f-99a8-a6532fe95368 2019-12-31 17:33:27.065346 26326 1961 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 715\namount: !ruby/object:BigDecimal 18:0.629E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.59E2\ntotal: !ruby/object:BigDecimal 18:0.57E3\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-959\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 208a95c4-0ccd-46bf-bbd2-43775585f888 2019-12-31 17:41:53.62982 26327 1386 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.78.168 208a95c4-0ccd-46bf-bbd2-43775585f888 2019-12-31 17:41:53.657135 26328 1961 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 611aeeea-31d6-4717-9fd1-6118b9aedd58 2019-12-31 17:42:01.38472 26329 2697 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 715\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.57E3\nmove_type: '1'\nsale_id: 1961\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-959\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.57E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-959 187.149.78.168 611aeeea-31d6-4717-9fd1-6118b9aedd58 2019-12-31 17:42:01.40458 26330 1962 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 716\namount: !ruby/object:BigDecimal 18:0.1129E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1129E4\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-777\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 c98d9733-c605-493d-a7ed-9ccc820d2669 2019-12-31 18:11:15.639651 26331 1085 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.78.168 c98d9733-c605-493d-a7ed-9ccc820d2669 2019-12-31 18:11:15.665458 26332 1962 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 f32cc64d-c488-4855-a4fa-b80df206a8b1 2019-12-31 18:12:13.746581 26333 2698 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 716\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1129E4\nmove_type: '1'\nsale_id: 1962\ncardnumber: 2247\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-777\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-777 187.149.78.168 f32cc64d-c488-4855-a4fa-b80df206a8b1 2019-12-31 18:12:13.766457 26334 1963 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 715\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.59E2\ntotal: !ruby/object:BigDecimal 18:0.54E3\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-960\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 1293008f-294c-4ec1-9a59-6831f744dfd9 2019-12-31 18:33:04.417175 26335 1064 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.78.168 1293008f-294c-4ec1-9a59-6831f744dfd9 2019-12-31 18:33:04.605508 26336 1963 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 4f6ae0b6-b23c-4f80-a9b8-a43de6f675b3 2019-12-31 18:33:09.105827 26337 2699 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 715\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.54E3\nmove_type: '1'\nsale_id: 1963\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-960\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.54E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-960 187.149.78.168 4f6ae0b6-b23c-4f80-a9b8-a43de6f675b3 2019-12-31 18:33:09.125314 26338 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-29 21:59:12.782899000 Z\n- &1 2019-12-30 18:09:57.270113000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-31 18:34:57.800864941 Z\nsign_in_count:\n- 144\n- 145\n 290 \N 187.149.78.168 a533bd57-7676-490d-8d15-a840a4ce2801 2019-12-31 18:34:57.806602 26339 1 User \N \N 1 User \N update ---\nunique_session_id:\n- pDcsb1zzAXBdCCniMAP9\n- JN2undnfKVWBVZy4VqdK\n 291 \N 187.149.78.168 a533bd57-7676-490d-8d15-a840a4ce2801 2019-12-31 18:34:57.81882 26340 1964 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 715\namount: !ruby/object:BigDecimal 18:0.829E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.129E3\ntotal: !ruby/object:BigDecimal 18:0.7E3\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-961\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 6d88a63f-ee1a-4b79-806a-086e006361f4 2019-12-31 19:10:08.406777 26341 607 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.78.168 6d88a63f-ee1a-4b79-806a-086e006361f4 2019-12-31 19:10:08.434262 26342 1964 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 0d348af8-14c2-475a-9564-0ac6121e2e53 2019-12-31 19:10:18.962019 26389 1453 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.78.168 2153b132-0926-42f8-a9fe-7d1efe2b2e09 2019-12-31 21:15:24.889895 44782 1525 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1525'\n is_parent: false\n sku: BLU-1525\n name: BLS-0163\n description: BLUSA TEJIDA NEGRA CON RAYAS ROJAS THINKABLE\n price_base: '264.0'\n price_sale: '699.0'\n img_product: 29C28123-1E5E-4870-BE12-880D8EF83C4A.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001525'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-04 00:00:09.335183'\n updated_at: &12 2020-11-04 00:11:23.145873356 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1525'\n sku: BLU-1525\n name: BLS-0163\n description: BLUSA TEJIDA NEGRA CON RAYAS ROJAS THINKABLE\n price_base: '264.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-04 00:00:09.335183'\n updated_at: '2020-11-04 00:00:09.375777'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001525'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1525'\n type: *3\n value: 1525\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1525\n type: *7\n value: BLU-1525\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0163\n type: *8\n value: BLS-0163\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA TEJIDA NEGRA CON RAYAS ROJAS THINKABLE\n type: *6\n value: BLUSA TEJIDA NEGRA CON RAYAS ROJAS THINKABLE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '264.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.264E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 29C28123-1E5E-4870-BE12-880D8EF83C4A.jpeg\n type: *2\n value: 29C28123-1E5E-4870-BE12-880D8EF83C4A.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001525'\n type: *2\n value: '0001525'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-04 00:00:09.335183'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 29C28123-1E5E-4870-BE12-880D8EF83C4A.jpeg\n 3 El producto BLU-1525 fue modificado. 187.149.136.226 dd0e2867-e645-4284-a8b5-31b0b73bdfa6 2020-11-04 00:11:23.185447 26343 2700 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 715\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.7E3\nmove_type: '1'\nsale_id: 1964\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-961\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-961 187.149.78.168 0d348af8-14c2-475a-9564-0ac6121e2e53 2019-12-31 19:10:18.982066 26344 717 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1067E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1067.0 189.186.117.149 4697dd2f-748f-4e7f-a988-4d2576feb43e 2019-12-31 19:28:58.68934 26345 31 ProductsReturn \N \N 21 User \N create ---\nsale_id: 1908\nuser_id: 21\nreturn_code: PV3-D-5\npointsale_id: 3\nnew_amount: !ruby/object:BigDecimal 18:0.898E3\nreturned_amount: !ruby/object:BigDecimal 18:0.899E3\ndifference_amount: !ruby/object:BigDecimal 18:0.0\nis_money_returned: false\n 1 devolución PV3-D-5 creada. 189.186.117.149 098dba46-6558-4ae7-90be-5f8de9779f6a 2019-12-31 19:33:02.466933 26346 1394 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.117.149 098dba46-6558-4ae7-90be-5f8de9779f6a 2019-12-31 19:33:02.499686 26347 1395 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.117.149 098dba46-6558-4ae7-90be-5f8de9779f6a 2019-12-31 19:33:02.524471 26348 1356 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.117.149 098dba46-6558-4ae7-90be-5f8de9779f6a 2019-12-31 19:33:02.540385 26349 256 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 715\nquantity: !ruby/object:BigDecimal 18:0.5E1\nstatus: 1\nobservations: 'cooperacion a borracho que me dio miedo '\nexpense_date: 2019-12-31\nexpense_code: PV1-E-181\n 1 Egreso por 5.0 registrado 187.149.78.168 285bf7ff-af4c-4565-9e86-6634d4694ba1 2019-12-31 19:44:53.576649 26350 2701 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 715\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E1\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 256\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 285bf7ff-af4c-4565-9e86-6634d4694ba1 2019-12-31 19:44:53.597569 26351 1965 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 716\namount: !ruby/object:BigDecimal 18:0.689E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.689E3\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-778\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 c48ac403-7d77-4408-a58e-9b4ad20ea729 2019-12-31 19:51:44.066624 26352 1039 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.78.168 c48ac403-7d77-4408-a58e-9b4ad20ea729 2019-12-31 19:51:44.092194 26353 1965 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 348af4a5-c206-49b9-94b9-f55bbb094fdd 2019-12-31 19:52:30.36378 26354 2702 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 716\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.689E3\nmove_type: '1'\nsale_id: 1965\ncardnumber: 3691\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-778\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-778 187.149.78.168 348af4a5-c206-49b9-94b9-f55bbb094fdd 2019-12-31 19:52:30.38286 26355 145 Customer \N \N 21 User \N update ---\ncredit:\n- false\n- true\ncredit_limit:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E4\n 2 El cliente MARA CHIQUETE fue registrado. 189.186.117.149 e90c02d0-8785-44e7-9836-45735b7d8e4c 2019-12-31 19:57:57.906331 26356 1966 Sale \N \N 21 User \N create ---\ncustomer_id: 145\nuser_id: 21\nopen_cash_register_id: 717\namount: !ruby/object:BigDecimal 18:0.2108E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2108E4\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 0\nseller_id: 12\nsale_code: PV3-V-225\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 d77c5a71-0d86-4a29-9f59-ee9da3d70f40 2019-12-31 19:59:08.692425 26357 1229 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.117.149 d77c5a71-0d86-4a29-9f59-ee9da3d70f40 2019-12-31 19:59:08.720437 26358 876 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 6 \N 189.186.117.149 d77c5a71-0d86-4a29-9f59-ee9da3d70f40 2019-12-31 19:59:08.747544 26359 2703 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 717\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1966\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.117.149 5c5d27d5-0203-44b5-a3f6-8e949e5ae537 2019-12-31 20:00:06.258446 26360 1966 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.117.149 5c5d27d5-0203-44b5-a3f6-8e949e5ae537 2019-12-31 20:00:06.27865 26361 2703 CashRegistersMove \N \N 21 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV3-V-225 189.186.117.149 5c5d27d5-0203-44b5-a3f6-8e949e5ae537 2019-12-31 20:00:06.288237 26362 2704 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 717\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 1966\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.117.149 c6316c2a-596d-48e0-9f18-320ac6502f5d 2019-12-31 20:02:27.898045 26363 2704 CashRegistersMove \N \N 21 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV3-V-225 189.186.117.149 c6316c2a-596d-48e0-9f18-320ac6502f5d 2019-12-31 20:02:27.918719 26364 1967 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 717\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.749E2\ntotal: !ruby/object:BigDecimal 18:0.6741E3\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-226\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 fcc1d49c-4133-47ab-99cf-f7e0c05de41e 2019-12-31 20:12:29.847466 26365 1271 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.117.149 fcc1d49c-4133-47ab-99cf-f7e0c05de41e 2019-12-31 20:12:29.871365 26367 2705 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 717\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6741E3\nmove_type: '1'\nsale_id: 1967\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-226\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.69E3\nchange: !ruby/object:BigDecimal 18:0.159E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-226 189.186.117.149 bdd1f477-762c-46fb-afa0-2973711a8dc6 2019-12-31 20:13:02.007788 26368 1968 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 715\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.149E3\ntotal: !ruby/object:BigDecimal 18:0.115E4\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-962\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 0a85b78a-5ebf-4676-83e9-7a5563172a39 2019-12-31 20:14:18.706698 26369 1045 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 187.149.78.168 0a85b78a-5ebf-4676-83e9-7a5563172a39 2019-12-31 20:14:18.733336 26370 1968 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 b35fe08e-837d-4e67-a7b3-d6cb3c547982 2019-12-31 20:14:25.98591 26371 2706 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 715\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.115E4\nmove_type: '1'\nsale_id: 1968\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-962\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.115E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-962 187.149.78.168 b35fe08e-837d-4e67-a7b3-d6cb3c547982 2019-12-31 20:14:26.006023 26372 1969 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 716\namount: !ruby/object:BigDecimal 18:0.1129E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1129E3\ntotal: !ruby/object:BigDecimal 18:0.10161E4\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-779\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 d0ed279a-abaa-4e13-b862-6cc32e2d95d1 2019-12-31 20:19:41.5422 26373 1085 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.78.168 d0ed279a-abaa-4e13-b862-6cc32e2d95d1 2019-12-31 20:19:41.56621 26374 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-31 02:16:41.701248000 Z\n- &1 2019-12-31 05:31:37.528342000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-31 20:20:11.573829564 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945651\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945651\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938483\n mask_addr: 4294967295\nsign_in_count:\n- 1249\n- 1250\n 2500 \N 200.68.151.179 7a283d77-4333-424f-af16-d8c616738a67 2019-12-31 20:20:11.582623 26375 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yvbTbyg64iXVVLnNDnim\n- _Zf_6eq6uqJYXxeprRiY\n 2501 \N 200.68.151.179 7a283d77-4333-424f-af16-d8c616738a67 2019-12-31 20:20:11.599945 26376 1969 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 3ab9e926-419e-472d-80b8-facbd71ad7dd 2019-12-31 20:25:29.63153 26377 2707 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 716\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.10161E4\nmove_type: '1'\nsale_id: 1969\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-779\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.10161E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-779 187.149.78.168 3ab9e926-419e-472d-80b8-facbd71ad7dd 2019-12-31 20:25:29.652489 26378 1970 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 716\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1199E3\ntotal: !ruby/object:BigDecimal 18:0.10791E4\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-780\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 c81ba9e5-6700-4c61-89d8-206f809c464c 2019-12-31 20:49:51.869071 26379 995 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.78.168 c81ba9e5-6700-4c61-89d8-206f809c464c 2019-12-31 20:49:51.89377 26380 1970 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 31f44718-c823-4f20-abfb-2ebb77edc5c0 2019-12-31 20:50:38.60703 26381 2708 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 716\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.10791E4\nmove_type: '1'\nsale_id: 1970\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-780\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.1209E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-780 187.149.78.168 31f44718-c823-4f20-abfb-2ebb77edc5c0 2019-12-31 20:50:38.626302 26382 1971 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 715\namount: !ruby/object:BigDecimal 18:0.533634E4\ntax: !ruby/object:BigDecimal 18:0.8965E2\ndiscount: !ruby/object:BigDecimal 18:0.776E3\ntotal: !ruby/object:BigDecimal 18:0.464999E4\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-962\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 00cdd2b5-4051-4fa9-824c-c3bd277ba140 2019-12-31 21:11:16.595825 26383 1470 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.78.168 00cdd2b5-4051-4fa9-824c-c3bd277ba140 2019-12-31 21:11:16.623398 26384 1971 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 fd802d4a-2d33-407e-9021-448be8e5b930 2019-12-31 21:11:27.243186 26385 2709 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 715\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.464999E4\nmove_type: '1'\nsale_id: 1971\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-962\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.464999E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-962 187.149.78.168 fd802d4a-2d33-407e-9021-448be8e5b930 2019-12-31 21:11:27.263711 26386 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-12-27 20:16:57.763714000 Z\n- &1 2019-12-27 20:51:55.694745000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-31 21:15:05.113327860 Z\nsign_in_count:\n- 42\n- 43\n 86 \N 187.149.78.168 48d91b04-0576-423d-93f1-20b45be89a7a 2019-12-31 21:15:05.119584 26387 24 User \N \N 24 User \N update ---\nunique_session_id:\n- Yp-tueYzr4mThx3gHzVK\n- ssyjsaq8tx2Fe8ecg2ki\n 87 \N 187.149.78.168 48d91b04-0576-423d-93f1-20b45be89a7a 2019-12-31 21:15:05.132281 26391 755 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.78.168 3f53f9e4-8528-40d9-b828-288c3a55b586 2019-12-31 21:16:49.240709 26392 398 Transfer \N \N 24 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-12-31\nuser_id: 24\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.78.168 ab67cb53-60d2-4b6c-80ed-621bcc6fbd56 2019-12-31 21:16:50.720459 26393 398 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-31\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.78.168 479cd65f-80dd-4bf5-9a0f-0bf8beda04c0 2019-12-31 21:17:10.925873 26394 1486 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 634\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 479cd65f-80dd-4bf5-9a0f-0bf8beda04c0 2019-12-31 21:17:10.946409 26395 1972 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 715\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.199E3\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-964\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 7c34171d-b684-400e-8aba-5cc616e1bce9 2019-12-31 21:17:49.58287 26396 1486 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.78.168 7c34171d-b684-400e-8aba-5cc616e1bce9 2019-12-31 21:17:49.607638 26397 1972 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 aba0a8fd-8086-4153-8087-6078fd36b371 2019-12-31 21:17:53.91326 26398 2710 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 715\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 1972\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-964\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-964 187.149.78.168 aba0a8fd-8086-4153-8087-6078fd36b371 2019-12-31 21:17:53.9337 26399 1973 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 715\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.69E2\ntotal: !ruby/object:BigDecimal 18:0.63E3\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-965\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 3c616d56-a7e3-469f-875a-d9d6a676d894 2019-12-31 21:20:33.592297 26400 1442 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.78.168 3c616d56-a7e3-469f-875a-d9d6a676d894 2019-12-31 21:20:33.618765 26401 1973 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 e58453ea-e5d4-453f-8e95-44210ff21dc3 2019-12-31 21:20:45.606625 26402 2711 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 715\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.63E3\nmove_type: '1'\nsale_id: 1973\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-965\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.103E4\nchange: !ruby/object:BigDecimal 18:0.4E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-965 187.149.78.168 e58453ea-e5d4-453f-8e95-44210ff21dc3 2019-12-31 21:20:45.627233 26403 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-30 18:09:57.270113000 Z\n- &1 2019-12-31 18:34:57.800864000 Z\ncurrent_sign_in_at:\n- *1\n- 2019-12-31 21:24:20.839860717 Z\nsign_in_count:\n- 145\n- 146\n 292 \N 187.149.78.168 63faeb22-1111-4815-9745-e67652910f1c 2019-12-31 21:24:20.845766 26404 1 User \N \N 1 User \N update ---\nunique_session_id:\n- JN2undnfKVWBVZy4VqdK\n- oScb17qU8RyLC1B65m2q\n 293 \N 187.149.78.168 63faeb22-1111-4815-9745-e67652910f1c 2019-12-31 21:24:20.858027 26405 1971 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-962 cancelada. 187.149.78.168 92868bd8-21dd-45c0-8427-70287c1f9463 2019-12-31 21:31:07.292445 26406 2709 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 715\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.464999E4\nmove_type: '1'\nsale_id: 1971\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-962\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.464999E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 92868bd8-21dd-45c0-8427-70287c1f9463 2019-12-31 21:31:07.312078 26407 1470 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.78.168 92868bd8-21dd-45c0-8427-70287c1f9463 2019-12-31 21:31:07.334557 26408 1974 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 715\namount: !ruby/object:BigDecimal 18:0.533634E4\ntax: !ruby/object:BigDecimal 18:0.8965E2\ndiscount: !ruby/object:BigDecimal 18:0.776E3\ntotal: !ruby/object:BigDecimal 18:0.464999E4\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-966\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 48a6b617-c2d1-4ccc-bed7-7f1a9885e107 2019-12-31 21:34:48.561577 26409 1065 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.78.168 48a6b617-c2d1-4ccc-bed7-7f1a9885e107 2019-12-31 21:34:48.597254 26410 1370 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.78.168 48a6b617-c2d1-4ccc-bed7-7f1a9885e107 2019-12-31 21:34:48.625777 26411 1411 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 14 \N 187.149.78.168 48a6b617-c2d1-4ccc-bed7-7f1a9885e107 2019-12-31 21:34:48.649953 26412 1974 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 f0889dea-5286-4846-beee-e044a95fa491 2019-12-31 21:34:55.622122 26413 2712 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 715\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.464999E4\nmove_type: '1'\nsale_id: 1974\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-966\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.464999E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-966 187.149.78.168 f0889dea-5286-4846-beee-e044a95fa491 2019-12-31 21:34:55.654002 26437 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 20 \N 187.149.78.168 0cf774a8-a940-43b1-ab23-43d4813861c5 2019-12-31 22:49:58.410666 44783 1516 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1516'\n is_parent: false\n sku: VES-1516\n name: VST-0130\n description: 'VESTIDO DE COLORES VOILA '\n price_base: '440.0'\n price_sale: '1069.0'\n img_product: 0AF10329-340F-4499-BF5E-75BB518BA34C.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001516'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 23:14:43.087324'\n updated_at: &12 2020-11-04 00:12:28.780406868 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1516'\n sku: VES-1516\n name: VST-0130\n description: 'VESTIDO DE COLORES VOILA '\n price_base: '440.00'\n price_sale: '1069.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 23:14:43.087324'\n updated_at: '2020-11-03 23:14:43.128705'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001516'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1516'\n type: *3\n value: 1516\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1516\n type: *7\n value: VES-1516\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0130\n type: *8\n value: VST-0130\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'VESTIDO DE COLORES VOILA '\n type: *6\n value: 'VESTIDO DE COLORES VOILA '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '440.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.44E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1069.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1069E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 0AF10329-340F-4499-BF5E-75BB518BA34C.jpeg\n type: *2\n value: 0AF10329-340F-4499-BF5E-75BB518BA34C.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001516'\n type: *2\n value: '0001516'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 23:14:43.087324'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 0AF10329-340F-4499-BF5E-75BB518BA34C.jpeg\n 3 El producto VES-1516 fue modificado. 187.149.136.226 ac30272d-2224-4216-980a-1da7b5c6c79f 2020-11-04 00:12:28.820841 26414 1975 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 715\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.49E2\ntotal: !ruby/object:BigDecimal 18:0.42E3\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-967\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 1571819a-2468-410e-8405-2d4d80cf5566 2019-12-31 21:36:52.984 26415 1156 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 187.149.78.168 1571819a-2468-410e-8405-2d4d80cf5566 2019-12-31 21:36:53.009809 26416 1975 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 1c9361ad-d2c1-4b16-98e7-f89f29d3fb93 2019-12-31 21:37:02.336778 26417 2713 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 715\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.42E3\nmove_type: '1'\nsale_id: 1975\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-967\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.42E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-967 187.149.78.168 1c9361ad-d2c1-4b16-98e7-f89f29d3fb93 2019-12-31 21:37:02.356886 26418 1975 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-967 cancelada. 187.149.78.168 0fa4c02a-92ad-463d-b6e9-28f506a193cf 2019-12-31 21:39:05.612711 26419 2713 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 715\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.42E3\nmove_type: '1'\nsale_id: 1975\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-967\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.42E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 0fa4c02a-92ad-463d-b6e9-28f506a193cf 2019-12-31 21:39:05.63232 26420 1156 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 13 \N 187.149.78.168 0fa4c02a-92ad-463d-b6e9-28f506a193cf 2019-12-31 21:39:05.655175 26421 1976 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 715\namount: !ruby/object:BigDecimal 18:0.629E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.69E2\ntotal: !ruby/object:BigDecimal 18:0.56E3\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-968\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 5fac0de0-16d6-4f87-a18f-2d5a3e4df631 2019-12-31 21:41:07.468021 26422 1386 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.78.168 5fac0de0-16d6-4f87-a18f-2d5a3e4df631 2019-12-31 21:41:07.494633 26423 1976 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 b8ecffdf-d869-4f15-99ce-fe4b86d91d35 2019-12-31 21:41:12.065422 26424 2714 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 715\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.56E3\nmove_type: '1'\nsale_id: 1976\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-968\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.56E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-968 187.149.78.168 b8ecffdf-d869-4f15-99ce-fe4b86d91d35 2019-12-31 21:41:12.085685 26425 1977 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 717\namount: !ruby/object:BigDecimal 18:0.8448E2\ntax: !ruby/object:BigDecimal 18:0.1352E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.98E2\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-227\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 f6cb96e4-0ee7-475e-8ae3-f093752e8339 2019-12-31 22:35:21.810245 26426 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.68E2\n- !ruby/object:BigDecimal 18:0.66E2\n 12 \N 189.186.117.149 f6cb96e4-0ee7-475e-8ae3-f093752e8339 2019-12-31 22:35:21.838923 26427 1977 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 8aa06125-741e-47ed-8683-d61ee6ab5633 2019-12-31 22:35:49.321476 26428 2715 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 717\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.98E2\nmove_type: '1'\nsale_id: 1977\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-227\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.102E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-227 189.186.117.149 8aa06125-741e-47ed-8683-d61ee6ab5633 2019-12-31 22:35:49.342282 26429 1978 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 715\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.99E2\ntotal: !ruby/object:BigDecimal 18:0.9E3\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-969\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 2d8c3f3c-3bf2-4598-b4cc-117ce49b83d7 2019-12-31 22:46:35.249639 26430 1461 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.78.168 2d8c3f3c-3bf2-4598-b4cc-117ce49b83d7 2019-12-31 22:46:35.275736 26431 1978 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 849e43af-fe07-45cc-9863-e6b76b8916fe 2019-12-31 22:46:39.475362 26432 2716 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 715\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.9E3\nmove_type: '1'\nsale_id: 1978\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-969\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-969 187.149.78.168 849e43af-fe07-45cc-9863-e6b76b8916fe 2019-12-31 22:46:39.496249 26433 1372 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.78.168 27a14b01-ad51-43fa-84e8-13b7192b1240 2019-12-31 22:49:14.882746 26434 1372 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.78.168 e04973e9-228c-4d5a-aed6-93ec7e8ba6f7 2019-12-31 22:49:20.495015 26435 399 Transfer \N \N 1 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2019-12-31\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.78.168 4ad3bf44-5abb-42aa-aeb6-3bf6ac98d3f9 2019-12-31 22:49:20.976107 26436 399 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2019-12-31\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.78.168 0cf774a8-a940-43b1-ab23-43d4813861c5 2019-12-31 22:49:58.394975 26438 1979 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 715\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.74E2\ntotal: !ruby/object:BigDecimal 18:0.675E3\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-970\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 a7963440-b473-4ac0-94f0-25d862b97fc3 2019-12-31 22:50:30.973867 26439 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 21 \N 187.149.78.168 a7963440-b473-4ac0-94f0-25d862b97fc3 2019-12-31 22:50:31.00118 26440 1979 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 de575af9-ce14-48e2-8644-0ee4eb0e2a82 2019-12-31 22:50:38.174164 26441 2717 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 715\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.675E3\nmove_type: '1'\nsale_id: 1979\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-970\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.125E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-970 187.149.78.168 de575af9-ce14-48e2-8644-0ee4eb0e2a82 2019-12-31 22:50:38.199697 26442 1980 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 715\namount: !ruby/object:BigDecimal 18:0.2668E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.425E3\ntotal: !ruby/object:BigDecimal 18:0.2243E4\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-971\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 9d7a394d-1784-4956-a707-47fa501ccba5 2019-12-31 23:17:27.45455 26443 1456 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.78.168 9d7a394d-1784-4956-a707-47fa501ccba5 2019-12-31 23:17:27.480212 26444 1249 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.78.168 9d7a394d-1784-4956-a707-47fa501ccba5 2019-12-31 23:17:27.501647 26445 1980 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 18f884bd-16c8-4731-838f-51154c930d0f 2019-12-31 23:18:07.540369 26446 2718 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 715\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.2243E4\nmove_type: '1'\nsale_id: 1980\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-971\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: SSQ3 SSPW\ncustomer_account: '1154124310170'\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-971 187.149.78.168 18f884bd-16c8-4731-838f-51154c930d0f 2019-12-31 23:18:07.570616 26447 1981 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 715\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.54E2\ntotal: !ruby/object:BigDecimal 18:0.645E3\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-972\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 857acb4c-fabf-4c09-8b37-3a5f32ec6a4b 2019-12-31 23:19:28.711672 26448 809 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.78.168 857acb4c-fabf-4c09-8b37-3a5f32ec6a4b 2019-12-31 23:19:28.736588 26449 1981 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 3aee814b-e789-4d47-b7e6-4dc1948691b0 2019-12-31 23:19:32.737743 26450 2719 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 715\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.15E2\nmove_type: '1'\nsale_id: 1981\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-972\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-972 187.149.78.168 3aee814b-e789-4d47-b7e6-4dc1948691b0 2019-12-31 23:19:32.757127 26451 1982 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 716\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.699E2\ntotal: !ruby/object:BigDecimal 18:0.6291E3\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-781\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 e5ad04ab-0282-4931-aa84-4bccad0ffdcf 2019-12-31 23:20:47.367689 26452 802 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 10 \N 187.149.78.168 e5ad04ab-0282-4931-aa84-4bccad0ffdcf 2019-12-31 23:20:47.391105 26453 2720 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 715\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.63E3\nmove_type: '1'\nsale_id: 1981\ncardnumber: 681\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-972\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-972 187.149.78.168 6a03eef8-dcef-44ef-8c53-ae557347773d 2019-12-31 23:20:56.829585 26454 1982 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 2a5a3f24-b148-4c86-972c-09fd8662d65a 2019-12-31 23:21:24.97623 26455 2721 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 716\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6291E3\nmove_type: '1'\nsale_id: 1982\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-781\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.102E4\nchange: !ruby/object:BigDecimal 18:0.3909E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-781 187.149.78.168 2a5a3f24-b148-4c86-972c-09fd8662d65a 2019-12-31 23:21:24.995749 26456 1983 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 717\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-228\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 ac8f2a06-dc8e-41fb-8edf-e6b5c906f239 2019-12-31 23:25:40.699289 26457 1397 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.117.149 ac8f2a06-dc8e-41fb-8edf-e6b5c906f239 2019-12-31 23:25:40.723858 26458 1983 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 d4840ae2-a0f7-4573-be74-cf62a585bf13 2019-12-31 23:26:33.222877 26499 715 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 6e2732de-d18e-4407-bd57-c0392e62bd87 2020-01-01 01:13:57.258487 26689 1 User \N \N 1 User \N update ---\nunique_session_id:\n- wCKhUx4TFDaNoKNZRUYS\n- sZtm2Xt1jj84F17y8P8q\n 297 \N 187.149.78.168 6f2e4c0b-1c8f-4ff3-85fd-22ee0cd6383a 2020-01-04 21:33:50.261098 26459 2722 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 717\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 1983\ncardnumber: 4667\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-228\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-228 189.186.117.149 d4840ae2-a0f7-4573-be74-cf62a585bf13 2019-12-31 23:26:33.246429 26460 1984 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 715\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.69E2\ntotal: !ruby/object:BigDecimal 18:0.63E3\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 10\nsale_code: PV1-V-973\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 bae48a43-7376-4e0b-a5f0-4b1896ba999d 2019-12-31 23:47:34.194296 26461 1056 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.78.168 bae48a43-7376-4e0b-a5f0-4b1896ba999d 2019-12-31 23:47:34.219548 26462 1984 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 8f7d3bc5-9a2b-4b5a-a159-4a009928b749 2019-12-31 23:47:41.358254 26463 2723 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 715\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.63E3\nmove_type: '1'\nsale_id: 1984\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-973\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.63E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-973 187.149.78.168 8f7d3bc5-9a2b-4b5a-a159-4a009928b749 2019-12-31 23:47:41.378748 26464 1985 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 717\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-229\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 b0a8cd4a-71a8-4d80-a6c7-fb34670deb7d 2020-01-01 00:16:52.941406 26465 1396 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.117.149 b0a8cd4a-71a8-4d80-a6c7-fb34670deb7d 2020-01-01 00:16:52.96525 26466 1985 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 f4725b94-8486-44f7-b6e7-783d90980dec 2020-01-01 00:17:02.366408 26467 2724 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 717\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 1985\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-229\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-229 189.186.117.149 f4725b94-8486-44f7-b6e7-783d90980dec 2020-01-01 00:17:02.386667 26468 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-31 05:31:37.528342000 Z\n- &1 2019-12-31 20:20:11.573829000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-01 00:18:16.811279632 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945651\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938483\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938483\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1250\n- 1251\n 2502 \N 189.186.117.149 76e63949-7550-490a-9a29-2a1db209a027 2020-01-01 00:18:16.819188 26469 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _Zf_6eq6uqJYXxeprRiY\n- 2ZKBKnzVZDtfYiokM8vh\n 2503 \N 189.186.117.149 76e63949-7550-490a-9a29-2a1db209a027 2020-01-01 00:18:16.853805 26470 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2019-12-31 20:20:11.573829000 Z\n- &1 2020-01-01 00:18:16.811279000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-01 00:30:16.994780122 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938483\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1251\n- 1252\n 2504 \N 189.186.54.195 d94ba87b-77bc-4190-8b86-7109d26d2cb8 2020-01-01 00:30:17.002437 26471 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2ZKBKnzVZDtfYiokM8vh\n- G1u1sLxqq87YW74A-exU\n 2505 \N 189.186.54.195 d94ba87b-77bc-4190-8b86-7109d26d2cb8 2020-01-01 00:30:17.018972 26472 1986 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 715\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.99E2\ntotal: !ruby/object:BigDecimal 18:0.9E3\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-974\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 d70df72f-6d8b-4fd8-9d56-2a342722be8f 2020-01-01 00:34:48.410214 26473 1461 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.78.168 d70df72f-6d8b-4fd8-9d56-2a342722be8f 2020-01-01 00:34:48.437 26474 1986 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 d20727f5-4079-4d0f-b37f-6cf8ef15ea5e 2020-01-01 00:35:14.191577 26475 2725 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 715\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.9E3\nmove_type: '1'\nsale_id: 1986\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-974\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-974 187.149.78.168 d20727f5-4079-4d0f-b37f-6cf8ef15ea5e 2020-01-01 00:35:14.212015 26476 1987 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 716\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.10485E3\ntotal: !ruby/object:BigDecimal 18:0.59415E3\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-782\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 ca4c65e8-9bfd-416a-a2c7-a46353a51bb6 2020-01-01 00:36:34.136503 26477 1042 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.78.168 ca4c65e8-9bfd-416a-a2c7-a46353a51bb6 2020-01-01 00:36:34.163948 26478 1987 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 75b62297-86b6-4995-af00-97d770ecda86 2020-01-01 00:36:55.676511 26550 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-12-26 20:07:04.406151000 Z\n- &1 2020-01-02 22:55:54.324298000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-03 01:51:22.854755607 Z\nsign_in_count:\n- 79\n- 80\n 163 \N 187.149.78.168 79c49750-d158-42fc-a380-f84e671c4c46 2020-01-03 01:51:22.864675 26479 2726 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 716\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.59415E3\nmove_type: '1'\nsale_id: 1987\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-782\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.585E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-782 187.149.78.168 75b62297-86b6-4995-af00-97d770ecda86 2020-01-01 00:36:55.69765 26480 1988 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 716\namount: !ruby/object:BigDecimal 18:0.989E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.989E3\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-783\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 e8e2a040-1671-4a48-adea-762481bcfeae 2020-01-01 00:37:53.473316 26481 1445 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.78.168 e8e2a040-1671-4a48-adea-762481bcfeae 2020-01-01 00:37:53.497299 26482 1988 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 1ac80d2f-c78d-4443-b677-b069baf08774 2020-01-01 00:38:22.912897 26483 2727 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 716\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.989E3\nmove_type: '1'\nsale_id: 1988\ncardnumber: 9643\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-783\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-783 187.149.78.168 1ac80d2f-c78d-4443-b677-b069baf08774 2020-01-01 00:38:22.933934 26484 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-01 00:18:16.811279000 Z\n- &1 2020-01-01 00:30:16.994780000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-01 00:44:52.169453660 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1252\n- 1253\n 2506 \N 189.186.117.149 db82ecf2-e826-4e3a-849c-3d05b0ec1611 2020-01-01 00:44:52.180253 26485 4 User \N \N 4 User \N update ---\nunique_session_id:\n- G1u1sLxqq87YW74A-exU\n- 68rsgXw35Zw3sEU-9SK6\n 2507 \N 189.186.117.149 db82ecf2-e826-4e3a-849c-3d05b0ec1611 2020-01-01 00:44:52.203795 26486 722 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 716\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.612545E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.35E4\ncash_fund: !ruby/object:BigDecimal 27:0.6773500000000004E3\nphysical_cash: !ruby/object:BigDecimal 18:0.417735E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.78.168 fec145be-718b-4cf0-a845-6edd4bc04344 2020-01-01 00:56:21.862884 26487 716 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 fec145be-718b-4cf0-a845-6edd4bc04344 2020-01-01 00:56:21.879257 26488 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-12-27 20:51:55.694745000 Z\n- &1 2019-12-31 21:15:05.113327000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-01 01:02:29.848124677 Z\nsign_in_count:\n- 43\n- 44\n 88 \N 187.149.78.168 2a6e2e4d-574a-408a-8074-c07be9b8bf82 2020-01-01 01:02:29.855577 26489 24 User \N \N 24 User \N update ---\nunique_session_id:\n- ssyjsaq8tx2Fe8ecg2ki\n- cnj6sESvCWSMa8cDRbAS\n 89 \N 187.149.78.168 2a6e2e4d-574a-408a-8074-c07be9b8bf82 2020-01-01 01:02:29.869117 26490 718 OpenCashRegister \N \N 24 User \N create ---\ncash_register_id: 2\nuser_id: 24\ninitial_cash: !ruby/object:BigDecimal 18:0.67735E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 677.35 187.149.78.168 bc48b519-36f3-44d3-812f-0d724ba3afee 2020-01-01 01:02:39.945684 26491 1989 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 718\namount: !ruby/object:BigDecimal 18:0.1469E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.119E3\ntotal: !ruby/object:BigDecimal 18:0.135E4\nstatus: 0\ndate_sale: 2019-12-31\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-784\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 02bc4f3d-24f7-4d47-86da-1d2f8efb645c 2020-01-01 01:05:19.403835 26492 1257 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.78.168 02bc4f3d-24f7-4d47-86da-1d2f8efb645c 2020-01-01 01:05:19.433292 26493 1989 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 44f023c1-4153-45f2-acde-1896f26ad159 2020-01-01 01:05:32.412124 26494 2728 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 718\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 1989\ncardnumber: 5491\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-784\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-784 187.149.78.168 44f023c1-4153-45f2-acde-1896f26ad159 2020-01-01 01:05:32.433784 26495 2729 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 718\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.35E3\nmove_type: '1'\nsale_id: 1989\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-784\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-784 187.149.78.168 4d2f7b36-00bf-4277-8a68-8b0261779b50 2020-01-01 01:06:13.596946 26496 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-01 00:30:16.994780000 Z\n- &1 2020-01-01 00:44:52.169453000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-01 01:07:52.571650265 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1253\n- 1254\n 2508 \N 189.186.54.195 a953dd89-6f24-4707-a5cc-817ebcfd9e05 2020-01-01 01:07:52.582459 26497 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 68rsgXw35Zw3sEU-9SK6\n- Jz_B55xWHn5yTEhVz5pv\n 2509 \N 189.186.54.195 a953dd89-6f24-4707-a5cc-817ebcfd9e05 2020-01-01 01:07:52.603811 26498 723 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 715\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1584199E5\namount_out: !ruby/object:BigDecimal 18:0.5E1\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1349999E5\ncash_fund: !ruby/object:BigDecimal 18:0.591E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1409099E5\nobservations: ENTREGUE $11,000 A MARCO Y $2500 A MONTSE\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.78.168 6e2732de-d18e-4407-bd57-c0392e62bd87 2020-01-01 01:13:57.245288 26500 724 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 717\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.28201E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.1137E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3137E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 f2b5398a-ed45-4cc2-b974-1875537fd31e 2020-01-01 01:14:59.955879 26501 717 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 f2b5398a-ed45-4cc2-b974-1875537fd31e 2020-01-01 01:14:59.973215 26502 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-30 17:12:32.877128000 Z\n- &1 2019-12-31 17:16:27.960012000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-02 17:24:05.871755292 Z\nsign_in_count:\n- 59\n- 60\n 120 \N 187.149.78.168 e784bed9-f1d9-4f7e-8449-5b1a1629c046 2020-01-02 17:24:05.907055 26503 27 User \N \N 27 User \N update ---\nunique_session_id:\n- DoseejVmnU3N6cWRyNPu\n- ZxsPg1f1FZNxeSfyNyyy\n 121 \N 187.149.78.168 e784bed9-f1d9-4f7e-8449-5b1a1629c046 2020-01-02 17:24:05.932649 26504 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2019-12-31 17:16:27.960012000 Z\n- &1 2020-01-02 17:24:05.871755000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-02 17:40:01.942106271 Z\nsign_in_count:\n- 60\n- 61\n 122 \N 187.149.78.168 8bd5bfcc-6f6a-448f-912b-76f98b355620 2020-01-02 17:40:01.947526 26505 27 User \N \N 27 User \N update ---\nunique_session_id:\n- ZxsPg1f1FZNxeSfyNyyy\n- Mmc-_pP-yAaNsVn6Hzjy\n 123 \N 187.149.78.168 8bd5bfcc-6f6a-448f-912b-76f98b355620 2020-01-02 17:40:01.959455 26506 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-02 17:24:05.871755000 Z\n- &1 2020-01-02 17:40:01.942106000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-02 17:40:25.611685325 Z\nsign_in_count:\n- 61\n- 62\n 124 \N 187.149.78.168 c9a48401-d7f5-4c89-bd85-7b3a4782b58e 2020-01-02 17:40:25.617162 26507 27 User \N \N 27 User \N update ---\nunique_session_id:\n- Mmc-_pP-yAaNsVn6Hzjy\n- uniW586FM8W3rHFeQa44\n 125 \N 187.149.78.168 c9a48401-d7f5-4c89-bd85-7b3a4782b58e 2020-01-02 17:40:25.629031 26508 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-30 17:40:34.316161000 Z\n- &1 2019-12-31 16:27:12.792858000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-02 19:03:17.942548030 Z\nsign_in_count:\n- 427\n- 428\n 859 \N 187.149.78.168 07183ebd-6517-48bd-ac88-06f7b4b6be1e 2020-01-02 19:03:17.951568 26509 2 User \N \N 2 User \N update ---\nunique_session_id:\n- rxFwwzXLArg3DdKGLLYs\n- TDzc8-sDsjKyUTy3FuES\n 860 \N 187.149.78.168 07183ebd-6517-48bd-ac88-06f7b4b6be1e 2020-01-02 19:03:17.970211 26510 719 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.591E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 591.0 187.149.78.168 ce2de5ae-ead4-455c-bd6d-a6088f2a4b01 2020-01-02 19:03:49.272631 26511 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-02 17:40:01.942106000 Z\n- &1 2020-01-02 17:40:25.611685000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-02 19:10:06.439767338 Z\nsign_in_count:\n- 62\n- 63\n 126 \N 187.149.78.168 37c4217f-4e01-4c93-b9c0-bc3a06297e3a 2020-01-02 19:10:06.457077 26512 27 User \N \N 27 User \N update ---\nunique_session_id:\n- uniW586FM8W3rHFeQa44\n- P_BtVJ3g2rVozuF2qbBn\n 127 \N 187.149.78.168 37c4217f-4e01-4c93-b9c0-bc3a06297e3a 2020-01-02 19:10:06.473369 26513 32 ProductsReturn \N \N 27 User \N create ---\nsale_id: 1876\nuser_id: 27\nreturn_code: PV2-D-15\npointsale_id: 2\nnew_amount: !ruby/object:BigDecimal 18:0.729E3\nreturned_amount: !ruby/object:BigDecimal 18:0.6291E3\ndifference_amount: !ruby/object:BigDecimal 27:0.9989999999999998E2\nis_money_returned: false\n 1 devolución PV2-D-15 creada. 187.149.78.168 92ab5d99-d480-42bd-9049-0739d023c50f 2020-01-02 19:56:29.402825 26514 1091 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 9 \N 187.149.78.168 92ab5d99-d480-42bd-9049-0739d023c50f 2020-01-02 19:56:29.429711 26515 1255 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.78.168 92ab5d99-d480-42bd-9049-0739d023c50f 2020-01-02 19:56:29.454633 26516 33 ProductsReturn \N \N 27 User \N create ---\nsale_id: 1876\nuser_id: 27\nreturn_code: PV2-D-16\npointsale_id: 2\nnew_amount: !ruby/object:BigDecimal 18:0.869E3\nreturned_amount: !ruby/object:BigDecimal 18:0.6291E3\ndifference_amount: !ruby/object:BigDecimal 27:0.23989999999999998E3\nis_money_returned: false\n 1 devolución PV2-D-16 creada. 187.149.78.168 26b2875f-d6b4-4348-855e-6d299a30c470 2020-01-02 20:03:05.845753 26517 1091 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 10 \N 187.149.78.168 26b2875f-d6b4-4348-855e-6d299a30c470 2020-01-02 20:03:05.864516 26518 672 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.78.168 26b2875f-d6b4-4348-855e-6d299a30c470 2020-01-02 20:03:05.880883 26519 2730 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 718\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2399E3\nmove_type: '1'\nsale_id: 1876\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2399E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 33\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV2-D-16 187.149.78.168 0d383b91-027b-474d-bff4-34a2d27ace39 2020-01-02 20:03:20.919942 26520 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 17:09:34.962469000 Z\n- &1 2019-12-22 18:30:53.522024000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-02 20:48:33.840111146 Z\nsign_in_count:\n- 101\n- 102\n 204 \N 187.149.78.168 455cd424-2a21-4c14-9799-70019a6f9c4a 2020-01-02 20:48:33.847301 26521 9 User \N \N 9 User \N update ---\nunique_session_id:\n- pkf9A6XkCwjfRYGVQu8Q\n- gzLA-uJ-_BjzTwzEwT7P\n 205 \N 187.149.78.168 455cd424-2a21-4c14-9799-70019a6f9c4a 2020-01-02 20:48:33.860522 26522 1990 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 718\namount: !ruby/object:BigDecimal 18:0.111625E4\ntax: !ruby/object:BigDecimal 18:0.5175E2\ndiscount: !ruby/object:BigDecimal 18:0.2336E3\ntotal: !ruby/object:BigDecimal 18:0.9344E3\nstatus: 0\ndate_sale: 2020-01-02\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-785\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 709c40c5-b5b5-41b5-9598-0ceaa5a52a51 2020-01-02 21:03:43.407343 26523 802 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 11 \N 187.149.78.168 709c40c5-b5b5-41b5-9598-0ceaa5a52a51 2020-01-02 21:03:43.434674 26524 315 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.78.168 709c40c5-b5b5-41b5-9598-0ceaa5a52a51 2020-01-02 21:03:43.46733 26525 1990 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 b5169242-664a-42b8-b7e3-dbd69f1e1094 2020-01-02 21:04:01.756139 26551 8 User \N \N 8 User \N update ---\nunique_session_id:\n- wuMZhg4Pj_ey12Z2GqVj\n- 3cyaEfs1qUpcyxavBn-6\n 164 \N 187.149.78.168 79c49750-d158-42fc-a380-f84e671c4c46 2020-01-03 01:51:22.879551 26756 4 User \N \N 4 User \N update ---\nunique_session_id:\n- F_W-96zUxFu_cCmXF1N-\n- 2W61tyAE9bmtnz2jyy1F\n 2537 \N 189.186.117.149 cbe49a1a-d498-40e9-a861-6cdfe41bc773 2020-01-07 00:44:31.99509 26526 2731 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 718\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.9344E3\nmove_type: '1'\nsale_id: 1990\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-785\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.656E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-785 187.149.78.168 b5169242-664a-42b8-b7e3-dbd69f1e1094 2020-01-02 21:04:01.775647 26527 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-01 00:44:52.169453000 Z\n- &1 2020-01-01 01:07:52.571650000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-02 21:18:24.020439144 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1254\n- 1255\n 2510 \N 187.149.78.168 a4bf910d-6eba-4206-9007-592cf70c5d7f 2020-01-02 21:18:24.028387 26528 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Jz_B55xWHn5yTEhVz5pv\n- dhN9t11XzXeypnFPCRxS\n 2511 \N 187.149.78.168 a4bf910d-6eba-4206-9007-592cf70c5d7f 2020-01-02 21:18:24.046831 26529 1370 Sale \N \N 4 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 187.149.78.168 e2415433-1288-422a-8530-4044be899db5 2020-01-02 21:40:53.48154 26530 1278 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.78.168 e2415433-1288-422a-8530-4044be899db5 2020-01-02 21:40:53.502964 26531 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-12-14 19:10:41.041083000 Z\n- &1 2019-12-22 00:42:03.160535000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-02 21:47:31.233614900 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 60\n- 61\n 122 \N 189.186.117.149 fb257c66-40ac-4a9f-b266-29dd0aa41b70 2020-01-02 21:47:31.241447 26532 25 User \N \N 25 User \N update ---\nunique_session_id:\n- 8ioN-Hqy1QJ5AcoUJyyB\n- 8zrtxPheKNz5ApgsHSUq\n 123 \N 189.186.117.149 fb257c66-40ac-4a9f-b266-29dd0aa41b70 2020-01-02 21:47:31.256285 26533 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 21:18:05.125416000 Z\n- &1 2019-12-21 22:50:51.104106000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-02 21:50:51.913657791 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 63\n- 64\n 128 \N 189.186.117.149 babdbc23-4472-420f-9897-01303b32bbc2 2020-01-02 21:50:51.921222 26534 26 User \N \N 26 User \N update ---\nunique_session_id:\n- bEM9LzfN84VRjYF1yHU_\n- txq_UVpnKzygmUBHfUSH\n 129 \N 189.186.117.149 babdbc23-4472-420f-9897-01303b32bbc2 2020-01-02 21:50:51.935615 26535 22 Seller \N \N 26 User \N update ---\nstatus:\n- active\n- 2\n 2 El vendedor KARLA BELTRAN fue desactivado. 189.186.117.149 0f7bd166-afa1-4552-bfb9-df8cebabc0db 2020-01-02 21:51:47.568938 26536 1991 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 719\namount: !ruby/object:BigDecimal 18:0.679E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.679E3\nstatus: 0\ndate_sale: 2020-01-02\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-975\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 33ccf81f-7a93-4378-a3cc-9d2e37488894 2020-01-02 21:58:28.081264 26537 705 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.78.168 33ccf81f-7a93-4378-a3cc-9d2e37488894 2020-01-02 21:58:28.106706 26538 1991 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 eea928ef-abde-4830-b863-e377a977852f 2020-01-02 22:02:53.832677 26539 2732 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 719\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.679E3\nmove_type: '1'\nsale_id: 1991\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-975\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.321E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-975 187.149.78.168 eea928ef-abde-4830-b863-e377a977852f 2020-01-02 22:02:53.853556 26540 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-01 01:07:52.571650000 Z\n- &1 2020-01-02 21:18:24.020439000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-02 22:50:47.167491213 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1255\n- 1256\n 2512 \N 187.149.78.168 d289c7dd-60fa-471a-b32b-e12662367e01 2020-01-02 22:50:47.175089 26541 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dhN9t11XzXeypnFPCRxS\n- GiPHXWdECBbsjSB7XLvs\n 2513 \N 187.149.78.168 d289c7dd-60fa-471a-b32b-e12662367e01 2020-01-02 22:50:47.193481 26542 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2019-12-26 19:53:12.499786000 Z\n- &1 2019-12-26 20:07:04.406151000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-02 22:55:54.324298392 Z\nsign_in_count:\n- 78\n- 79\n 161 \N 187.149.78.168 daf7a802-0f14-485f-8677-ba36e06781c6 2020-01-02 22:55:54.330178 26543 8 User \N \N 8 User \N update ---\nunique_session_id:\n- vQKiUuaK2CrxWhXntZQ_\n- wuMZhg4Pj_ey12Z2GqVj\n 162 \N 187.149.78.168 daf7a802-0f14-485f-8677-ba36e06781c6 2020-01-02 22:55:54.342418 26544 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-30 17:59:25.620389000 Z\n- &1 2019-12-31 17:23:38.424999000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-02 23:01:34.300716846 Z\nsign_in_count:\n- 75\n- 76\n 153 \N 189.186.117.149 bfe29f59-d6af-4a3f-ba8d-10a52acdd5e1 2020-01-02 23:01:34.30738 26545 21 User \N \N 21 User \N update ---\nunique_session_id:\n- jEGCr6AjrL_1MzaR9PJK\n- mQs4u_tgeU-VBhZNf6_e\n 154 \N 189.186.117.149 bfe29f59-d6af-4a3f-ba8d-10a52acdd5e1 2020-01-02 23:01:34.32089 26546 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-02 21:18:24.020439000 Z\n- &1 2020-01-02 22:50:47.167491000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-02 23:40:49.586636558 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1256\n- 1257\n 2514 \N 189.186.117.149 c9c94257-48f6-4dc2-9401-d6517b803ff1 2020-01-02 23:40:49.594145 26547 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GiPHXWdECBbsjSB7XLvs\n- UJ8YNas5B--vzk4gxJ_J\n 2515 \N 189.186.117.149 c9c94257-48f6-4dc2-9401-d6517b803ff1 2020-01-02 23:40:49.612607 26548 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2019-12-31 16:27:12.792858000 Z\n- &1 2020-01-02 19:03:17.942548000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-03 01:02:08.618786858 Z\nsign_in_count:\n- 428\n- 429\n 861 \N 187.149.78.168 aef7a9ed-b915-4b75-82b4-4a2fa761f7bf 2020-01-03 01:02:08.629774 26549 2 User \N \N 2 User \N update ---\nunique_session_id:\n- TDzc8-sDsjKyUTy3FuES\n- Exrngrj54PJap_oZDUyG\n 862 \N 187.149.78.168 aef7a9ed-b915-4b75-82b4-4a2fa761f7bf 2020-01-03 01:02:08.649539 26552 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-02 22:50:47.167491000 Z\n- &1 2020-01-02 23:40:49.586636000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-03 01:56:21.472566844 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1257\n- 1258\n 2516 \N 189.186.54.195 5c0a2971-8c15-4a44-96c3-86e472d73c05 2020-01-03 01:56:21.486718 26553 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UJ8YNas5B--vzk4gxJ_J\n- Hj_4BS_pLzb1kpxTfuz3\n 2517 \N 189.186.54.195 5c0a2971-8c15-4a44-96c3-86e472d73c05 2020-01-03 01:56:21.515549 26554 257 Expense \N \N 8 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 718\nquantity: !ruby/object:BigDecimal 18:0.1E4\nstatus: 1\nobservations: ''\nexpense_date: 2020-01-02\nexpense_code: PV2-E-54\n 1 Egreso por 1000.0 registrado 187.149.78.168 17d3319a-ece5-4c60-b4dc-3960c21c8098 2020-01-03 02:08:28.038276 26555 2733 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 718\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 257\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 17d3319a-ece5-4c60-b4dc-3960c21c8098 2020-01-03 02:08:28.06205 26556 725 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 718\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.25243E4\namount_out: !ruby/object:BigDecimal 18:0.1E4\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.120165E4\nphysical_cash: !ruby/object:BigDecimal 18:0.120165E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.78.168 8b858d83-efbd-4618-ae81-17fd9a48325f 2020-01-03 02:14:05.29902 26557 718 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 8b858d83-efbd-4618-ae81-17fd9a48325f 2020-01-03 02:14:05.315229 26558 720 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1137E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1137.0 189.186.117.149 9117aaa1-27ca-4893-b224-2992a37891e0 2020-01-03 02:23:41.270277 26559 726 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 719\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.679E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.127E4\nphysical_cash: !ruby/object:BigDecimal 18:0.127E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.78.168 b2ba63c4-1566-451a-9f9d-d8c694c731ef 2020-01-03 02:51:07.019701 26560 719 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 b2ba63c4-1566-451a-9f9d-d8c694c731ef 2020-01-03 02:51:07.03686 26561 727 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 720\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1137E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1137E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 f780b816-834e-4919-a6b0-3ed64851b771 2020-01-03 02:58:21.778463 26562 720 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 f780b816-834e-4919-a6b0-3ed64851b771 2020-01-03 02:58:21.791019 26563 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-02 17:40:25.611685000 Z\n- &1 2020-01-02 19:10:06.439767000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-03 17:10:02.915695523 Z\nsign_in_count:\n- 63\n- 64\n 128 \N 187.149.78.168 780efb66-a77f-460d-a29b-44d932a85d1a 2020-01-03 17:10:02.948356 26564 27 User \N \N 27 User \N update ---\nunique_session_id:\n- P_BtVJ3g2rVozuF2qbBn\n- EfbzzLDQo6erZAK153xp\n 129 \N 187.149.78.168 780efb66-a77f-460d-a29b-44d932a85d1a 2020-01-03 17:10:02.970864 26565 721 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.120165E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1201.65 187.149.78.168 388b92c5-7e9e-462c-a8e4-329c3a5f6cbb 2020-01-03 17:10:44.43465 26566 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-02 19:03:17.942548000 Z\n- &1 2020-01-03 01:02:08.618786000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-03 17:11:54.828702612 Z\nsign_in_count:\n- 429\n- 430\n 863 \N 187.149.78.168 00087a5d-5ebe-4e71-b28b-f2852c23c342 2020-01-03 17:11:54.834038 26567 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Exrngrj54PJap_oZDUyG\n- Y93Y3Aadx3GBzJ2QxxsM\n 864 \N 187.149.78.168 00087a5d-5ebe-4e71-b28b-f2852c23c342 2020-01-03 17:11:54.848396 26568 722 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.127E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1270.0 187.149.78.168 5bbffe08-1c73-45dd-8f29-55350caa7db2 2020-01-03 17:40:39.640453 26569 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2019-12-31 17:23:38.424999000 Z\n- &1 2020-01-02 23:01:34.300716000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-03 18:11:49.283533432 Z\nsign_in_count:\n- 76\n- 77\n 155 \N 189.186.117.149 cb69b739-c2c6-4565-8edf-e307afe47f0a 2020-01-03 18:11:49.289508 26570 21 User \N \N 21 User \N update ---\nunique_session_id:\n- mQs4u_tgeU-VBhZNf6_e\n- qYmaFSuFgt8wey6ahnDP\n 156 \N 189.186.117.149 cb69b739-c2c6-4565-8edf-e307afe47f0a 2020-01-03 18:11:49.303653 26571 723 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1137E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1137.0 189.186.117.149 4982bef2-cc08-438e-8d8d-bca8767bd118 2020-01-03 18:12:02.733669 26572 1992 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 722\namount: !ruby/object:BigDecimal 18:0.719E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.69E2\ntotal: !ruby/object:BigDecimal 18:0.65E3\nstatus: 0\ndate_sale: 2020-01-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-976\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 e142eca1-0655-4079-a2ee-0557731e2124 2020-01-03 18:25:28.017419 26573 1081 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.78.168 e142eca1-0655-4079-a2ee-0557731e2124 2020-01-03 18:25:28.059181 26574 1992 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 16b4a8cb-3d74-4bf5-a5e8-4e669ae71858 2020-01-03 18:25:32.651308 26596 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UTEgHSFdpHbsEEUaEAgy\n- ccwwBrUVS52bGGSveidk\n 2521 \N 189.186.117.149 bbabca9d-fc62-4f28-b4cd-583b8b16261c 2020-01-03 21:31:12.693403 26640 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-02 23:01:34.300716000 Z\n- &1 2020-01-03 18:11:49.283533000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-04 18:00:23.963485288 Z\nsign_in_count:\n- 77\n- 78\n 157 \N 189.186.117.149 9e413cbb-1f08-4672-9ba8-eb8cf28b962b 2020-01-04 18:00:23.969899 26575 2734 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 722\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.65E3\nmove_type: '1'\nsale_id: 1992\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-976\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.5E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-976 187.149.78.168 16b4a8cb-3d74-4bf5-a5e8-4e669ae71858 2020-01-03 18:25:32.672302 26576 275 Customer \N \N 21 User \N create ---\nnick_name: DANIELA URCISICHI\nphone: "(667) 167-2534"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.5E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DANIELA URCISICHI fue registrado. 189.186.117.149 ec8968f2-254d-4693-93db-7de69d3dce70 2020-01-03 19:36:39.543927 26577 1993 Sale \N \N 21 User \N create ---\ncustomer_id: 275\nuser_id: 21\nopen_cash_register_id: 723\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-01-03\nsaletype: 0\nseller_id: 12\nsale_code: PV3-V-230\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 8156a3da-a2b7-4c72-91af-70bc3ea22e0c 2020-01-03 19:37:07.809758 26578 993 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.117.149 8156a3da-a2b7-4c72-91af-70bc3ea22e0c 2020-01-03 19:37:07.833989 26579 1994 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 721\namount: !ruby/object:BigDecimal 18:0.449E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1796E3\ntotal: !ruby/object:BigDecimal 18:0.2694E3\nstatus: 0\ndate_sale: 2020-01-03\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-786\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 8fe232cb-af4c-41f4-baae-32aa387e2c52 2020-01-03 19:59:50.660818 26580 1450 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.78.168 8fe232cb-af4c-41f4-baae-32aa387e2c52 2020-01-03 19:59:50.702379 26581 1994 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 fb7cb5b8-934e-4c11-ae1a-53e97de10bb5 2020-01-03 19:59:56.932177 26582 2735 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 721\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2694E3\nmove_type: '1'\nsale_id: 1994\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-786\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.2306E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-786 187.149.78.168 fb7cb5b8-934e-4c11-ae1a-53e97de10bb5 2020-01-03 19:59:56.954175 26583 1995 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 721\namount: !ruby/object:BigDecimal 18:0.839E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3356E3\ntotal: !ruby/object:BigDecimal 18:0.5034E3\nstatus: 0\ndate_sale: 2020-01-03\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-787\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 0b294409-dc83-4ab6-8b1f-c1b3fc3dde79 2020-01-03 20:14:57.813471 26584 1100 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.78.168 0b294409-dc83-4ab6-8b1f-c1b3fc3dde79 2020-01-03 20:14:57.873436 26585 1995 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 7855aa9b-e132-4648-ad8c-12dde634b3fe 2020-01-03 20:15:36.038216 26586 2736 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 721\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5034E3\nmove_type: '1'\nsale_id: 1995\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-787\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.52E3\nchange: !ruby/object:BigDecimal 18:0.166E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-787 187.149.78.168 7855aa9b-e132-4648-ad8c-12dde634b3fe 2020-01-03 20:15:36.059304 26587 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-02 23:40:49.586636000 Z\n- &1 2020-01-03 01:56:21.472566000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-03 20:27:19.969663497 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1258\n- 1259\n 2518 \N 189.186.54.195 b05e524c-85a7-4db6-935b-b807f13c796f 2020-01-03 20:27:19.977247 26588 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Hj_4BS_pLzb1kpxTfuz3\n- UTEgHSFdpHbsEEUaEAgy\n 2519 \N 189.186.54.195 b05e524c-85a7-4db6-935b-b807f13c796f 2020-01-03 20:27:19.995391 26589 1996 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 722\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.299E3\ntotal: !ruby/object:BigDecimal 18:0.45E3\nstatus: 0\ndate_sale: 2020-01-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-977\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 67adf6e3-d96f-4bb2-9649-ef91eaa83572 2020-01-03 20:47:30.485742 26590 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 22 \N 187.149.78.168 67adf6e3-d96f-4bb2-9649-ef91eaa83572 2020-01-03 20:47:30.511714 26591 1996 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 6537c31e-f41a-4508-aad6-617171c0f0ba 2020-01-03 20:47:37.645468 26592 2737 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 722\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.45E3\nmove_type: '1'\nsale_id: 1996\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-977\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.45E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-977 187.149.78.168 6537c31e-f41a-4508-aad6-617171c0f0ba 2020-01-03 20:47:37.665352 26593 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-31 18:34:57.800864000 Z\n- &1 2019-12-31 21:24:20.839860000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-03 20:52:36.739524285 Z\nsign_in_count:\n- 146\n- 147\n 294 \N 187.149.78.168 8f7fc343-c0ab-4a6e-981b-a444bea64b1e 2020-01-03 20:52:36.744916 26594 1 User \N \N 1 User \N update ---\nunique_session_id:\n- oScb17qU8RyLC1B65m2q\n- wCKhUx4TFDaNoKNZRUYS\n 295 \N 187.149.78.168 8f7fc343-c0ab-4a6e-981b-a444bea64b1e 2020-01-03 20:52:36.757992 26595 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-03 01:56:21.472566000 Z\n- &1 2020-01-03 20:27:19.969663000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-03 21:31:12.671988516 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1259\n- 1260\n 2520 \N 189.186.117.149 bbabca9d-fc62-4f28-b4cd-583b8b16261c 2020-01-03 21:31:12.678174 26597 1997 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 721\namount: !ruby/object:BigDecimal 18:0.1598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.799E3\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-01-03\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-788\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 cf6d092e-f146-4a35-b573-f364cf452c25 2020-01-03 21:36:46.543658 26598 1125 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.1E1\n 17 \N 187.149.78.168 cf6d092e-f146-4a35-b573-f364cf452c25 2020-01-03 21:36:46.568128 26599 1997 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 ab26d498-9c1a-418d-80d5-a382902630d8 2020-01-03 21:36:54.371908 26600 2738 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 721\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 1997\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-788\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-788 187.149.78.168 ab26d498-9c1a-418d-80d5-a382902630d8 2020-01-03 21:36:54.39522 26601 1998 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 721\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1876E3\ntotal: !ruby/object:BigDecimal 18:0.2814E3\nstatus: 0\ndate_sale: 2020-01-03\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-789\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 1d35a527-7c93-46d1-802d-674134fd04a2 2020-01-03 21:44:14.761043 26602 1146 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.78.168 1d35a527-7c93-46d1-802d-674134fd04a2 2020-01-03 21:44:14.790336 26603 1998 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 524ac50c-e111-450f-99e0-07f6a7af91e4 2020-01-03 21:44:20.374268 26604 2739 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 721\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2814E3\nmove_type: '1'\nsale_id: 1998\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-789\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.186E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-789 187.149.78.168 524ac50c-e111-450f-99e0-07f6a7af91e4 2020-01-03 21:44:20.39561 26605 1999 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 721\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3156E3\ntotal: !ruby/object:BigDecimal 18:0.4734E3\nstatus: 0\ndate_sale: 2020-01-03\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-790\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 56c5a65d-4ee1-441b-8ae5-216116431df1 2020-01-04 00:32:58.187459 26606 1282 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.78.168 56c5a65d-4ee1-441b-8ae5-216116431df1 2020-01-04 00:32:58.228868 26607 1999 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 fe631dfc-46db-42ef-82e7-23dd1edc27de 2020-01-04 00:33:08.807333 26608 2740 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 721\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4734E3\nmove_type: '1'\nsale_id: 1999\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-790\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.266E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-790 187.149.78.168 fe631dfc-46db-42ef-82e7-23dd1edc27de 2020-01-04 00:33:08.828208 26609 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-03 20:27:19.969663000 Z\n- &1 2020-01-03 21:31:12.671988000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-04 00:41:05.502686066 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946166\n mask_addr: 4294967295\nsign_in_count:\n- 1260\n- 1261\n 2522 \N 200.68.181.182 1d4cf017-9b7c-454d-b243-fba505169773 2020-01-04 00:41:05.517146 26610 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ccwwBrUVS52bGGSveidk\n- JA9mSM-Tf-6GR3YMVp_2\n 2523 \N 200.68.181.182 1d4cf017-9b7c-454d-b243-fba505169773 2020-01-04 00:41:05.543251 26611 1999 Sale \N \N 27 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-790 cancelada. 187.149.78.168 480abecc-cb34-4d7e-81b3-ca86c046400a 2020-01-04 00:41:39.731875 26612 2740 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 721\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4734E3\nmove_type: '1'\nsale_id: 1999\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-790\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.266E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 480abecc-cb34-4d7e-81b3-ca86c046400a 2020-01-04 00:41:39.754433 26613 1282 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 187.149.78.168 480abecc-cb34-4d7e-81b3-ca86c046400a 2020-01-04 00:41:39.779525 26614 2000 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 721\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3156E3\ntotal: !ruby/object:BigDecimal 18:0.4734E3\nstatus: 0\ndate_sale: 2020-01-03\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-791\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 a6d7021e-e022-4bf0-a343-7bb3899e935f 2020-01-04 00:42:12.978017 26615 1282 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 187.149.78.168 a6d7021e-e022-4bf0-a343-7bb3899e935f 2020-01-04 00:42:13.005553 26616 2000 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 d45be0e6-f03e-4992-8581-a52c129d2292 2020-01-04 00:42:18.136629 26617 2741 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 721\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4734E3\nmove_type: '1'\nsale_id: 2000\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-791\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.266E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-791 187.149.78.168 d45be0e6-f03e-4992-8581-a52c129d2292 2020-01-04 00:42:18.15678 26641 21 User \N \N 21 User \N update ---\nunique_session_id:\n- qYmaFSuFgt8wey6ahnDP\n- oKhCH4i8Bymg7WTGzXFY\n 158 \N 189.186.117.149 9e413cbb-1f08-4672-9ba8-eb8cf28b962b 2020-01-04 18:00:23.982167 26618 2001 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 723\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.7596E3\ntotal: !ruby/object:BigDecimal 18:0.11394E4\nstatus: 0\ndate_sale: 2020-01-03\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-231\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 cc195366-0cb1-4a1c-8746-ae6e664dc230 2020-01-04 01:29:16.979358 26619 1228 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.117.149 cc195366-0cb1-4a1c-8746-ae6e664dc230 2020-01-04 01:29:17.00459 26620 2001 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 7114d797-efe9-4c92-bc3f-8efde6a6d7c7 2020-01-04 01:29:24.369039 26621 2742 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 723\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.11394E4\nmove_type: '1'\nsale_id: 2001\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-231\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.606E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-231 189.186.117.149 7114d797-efe9-4c92-bc3f-8efde6a6d7c7 2020-01-04 01:29:24.389488 26622 2002 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 723\namount: !ruby/object:BigDecimal 18:0.299E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.598E2\ntotal: !ruby/object:BigDecimal 18:0.2392E3\nstatus: 0\ndate_sale: 2020-01-03\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-232\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 c21c94d2-77db-4d71-983d-78652c4f20a6 2020-01-04 01:39:33.621512 26623 834 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.23E2\n- !ruby/object:BigDecimal 18:0.22E2\n 12 \N 189.186.117.149 c21c94d2-77db-4d71-983d-78652c4f20a6 2020-01-04 01:39:33.655035 26624 2002 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 23fe6537-f2b7-41fe-9789-af448572f1ba 2020-01-04 01:39:49.588178 26625 2743 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 723\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2392E3\nmove_type: '1'\nsale_id: 2002\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-232\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.608E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-232 189.186.117.149 23fe6537-f2b7-41fe-9789-af448572f1ba 2020-01-04 01:39:49.609179 26626 2003 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 723\namount: !ruby/object:BigDecimal 18:0.2299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.9196E3\ntotal: !ruby/object:BigDecimal 18:0.13794E4\nstatus: 0\ndate_sale: 2020-01-03\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-233\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 dbeda50d-2d2e-43fe-a143-df44d8bfb452 2020-01-04 01:40:54.12508 26627 1387 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.117.149 dbeda50d-2d2e-43fe-a143-df44d8bfb452 2020-01-04 01:40:54.150657 26628 2003 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 18abb86e-e960-4378-8623-53e90a2fd75f 2020-01-04 01:41:00.054285 26629 2744 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 723\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.13794E4\nmove_type: '1'\nsale_id: 2003\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-233\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.206E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-233 189.186.117.149 18abb86e-e960-4378-8623-53e90a2fd75f 2020-01-04 01:41:00.074001 26630 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-03 21:31:12.671988000 Z\n- &1 2020-01-04 00:41:05.502686000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-04 02:33:10.221361201 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946166\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946166\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1261\n- 1262\n 2524 \N 189.186.54.195 af70e7ef-5525-4aa4-871d-24f9b7fe14e1 2020-01-04 02:33:10.236245 26631 4 User \N \N 4 User \N update ---\nunique_session_id:\n- JA9mSM-Tf-6GR3YMVp_2\n- K-f9JybihSZmV3F-qxAq\n 2525 \N 189.186.54.195 af70e7ef-5525-4aa4-871d-24f9b7fe14e1 2020-01-04 02:33:10.262421 26632 728 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 722\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.11E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.14E4\ncash_fund: !ruby/object:BigDecimal 18:0.97E3\nphysical_cash: !ruby/object:BigDecimal 18:0.237E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.78.168 e39dc78e-eceb-4dd6-9e9a-19acedc30835 2020-01-04 02:57:40.552251 26633 722 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 e39dc78e-eceb-4dd6-9e9a-19acedc30835 2020-01-04 02:57:40.565239 26634 729 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 723\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.2758E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.26E4\ncash_fund: !ruby/object:BigDecimal 18:0.1296E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3896E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 6afd673a-1e88-4fc4-8cf1-975a5a99acea 2020-01-04 03:01:02.05635 26635 723 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 6afd673a-1e88-4fc4-8cf1-975a5a99acea 2020-01-04 03:01:02.068751 26636 730 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 721\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.23266E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.102825E4\nphysical_cash: !ruby/object:BigDecimal 18:0.352825E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.78.168 bcdf492d-bd82-439e-879f-561b89aa7a3d 2020-01-04 03:02:05.145744 26637 721 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 bcdf492d-bd82-439e-879f-561b89aa7a3d 2020-01-04 03:02:05.15704 26638 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-01-02 22:55:54.324298000 Z\n- &1 2020-01-03 01:51:22.854755000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-04 17:36:36.838823911 Z\nsign_in_count:\n- 80\n- 81\n 165 \N 187.149.78.168 9585dd4d-97cc-419a-8a6a-f39128a9b8f3 2020-01-04 17:36:36.872164 26639 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 3cyaEfs1qUpcyxavBn-6\n- APL-p8vje43MqtUUWnzh\n 166 \N 187.149.78.168 9585dd4d-97cc-419a-8a6a-f39128a9b8f3 2020-01-04 17:36:36.894582 26642 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-03 01:02:08.618786000 Z\n- &1 2020-01-03 17:11:54.828702000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-04 18:07:03.360371624 Z\nsign_in_count:\n- 430\n- 431\n 865 \N 187.149.78.168 2b9348c8-bd43-4d2b-ad81-584d511c0edb 2020-01-04 18:07:03.377967 26643 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Y93Y3Aadx3GBzJ2QxxsM\n- T5y-WynygrGQuyYsgz2S\n 866 \N 187.149.78.168 2b9348c8-bd43-4d2b-ad81-584d511c0edb 2020-01-04 18:07:03.396141 26644 724 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.97E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 970.0 187.149.78.168 e3465880-2258-4b9a-8dbd-c368242f2818 2020-01-04 18:07:37.398453 26645 2004 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 724\namount: !ruby/object:BigDecimal 18:0.3218E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1549E4\ntotal: !ruby/object:BigDecimal 18:0.1669E4\nstatus: 0\ndate_sale: 2020-01-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-978\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 69d6fc86-cdb8-46bd-9aaf-0817039e2846 2020-01-04 18:08:35.077475 26646 1247 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.78.168 69d6fc86-cdb8-46bd-9aaf-0817039e2846 2020-01-04 18:08:35.116152 26647 1366 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.78.168 69d6fc86-cdb8-46bd-9aaf-0817039e2846 2020-01-04 18:08:35.145646 26648 2004 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 873d423e-5046-4ffb-ab91-cd9f30bf0951 2020-01-04 18:09:05.561128 26649 2745 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 724\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1669E4\nmove_type: '1'\nsale_id: 2004\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-978\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1669E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-978 187.149.78.168 873d423e-5046-4ffb-ab91-cd9f30bf0951 2020-01-04 18:09:05.581661 26650 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-04 00:41:05.502686000 Z\n- &1 2020-01-04 02:33:10.221361000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-04 18:09:43.517896626 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946166\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1262\n- 1263\n 2526 \N 189.186.117.149 23f6a89f-e78d-4903-9a09-d2f67045a850 2020-01-04 18:09:43.525064 26651 4 User \N \N 4 User \N update ---\nunique_session_id:\n- K-f9JybihSZmV3F-qxAq\n- zwZ1D4iVjmGRMcE4bxZ_\n 2527 \N 189.186.117.149 23f6a89f-e78d-4903-9a09-d2f67045a850 2020-01-04 18:09:43.541107 26652 725 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1296E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1296.0 189.186.117.149 20af4b53-b669-4902-8c44-ec8526712284 2020-01-04 18:15:44.628458 26653 726 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.102825E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1028.25 187.149.78.168 0ddfe4bb-a9b2-4e09-afd8-6fe2e18f837a 2020-01-04 18:20:03.019068 26654 2005 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 726\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1996E3\ntotal: !ruby/object:BigDecimal 18:0.2994E3\nstatus: 0\ndate_sale: 2020-01-04\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-792\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 5fb81287-1ecb-4f3a-8aaf-82c131600a52 2020-01-04 18:49:17.297524 26655 1221 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.78.168 5fb81287-1ecb-4f3a-8aaf-82c131600a52 2020-01-04 18:49:17.322297 26656 2005 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 a56159a4-22ac-40bf-9471-b261746eb57d 2020-01-04 18:49:23.44281 26657 2746 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 726\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2994E3\nmove_type: '1'\nsale_id: 2005\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-792\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.2006E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-792 187.149.78.168 a56159a4-22ac-40bf-9471-b261746eb57d 2020-01-04 18:49:23.462444 26658 2006 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 726\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3596E3\ntotal: !ruby/object:BigDecimal 18:0.5394E3\nstatus: 0\ndate_sale: 2020-01-04\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-793\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 e4ccc0d6-ef51-45c7-a177-21c68bd19cb9 2020-01-04 19:57:39.107103 26659 1288 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.78.168 e4ccc0d6-ef51-45c7-a177-21c68bd19cb9 2020-01-04 19:57:39.136466 26660 2006 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 1da72024-02d1-4912-af7f-a240b9a09ae7 2020-01-04 19:58:35.676904 26661 2747 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 726\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5394E3\nmove_type: '1'\nsale_id: 2006\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-793\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.55E3\nchange: !ruby/object:BigDecimal 18:0.106E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-793 187.149.78.168 1da72024-02d1-4912-af7f-a240b9a09ae7 2020-01-04 19:58:35.697019 26662 2007 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 726\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2596E3\ntotal: !ruby/object:BigDecimal 18:0.3894E3\nstatus: 0\ndate_sale: 2020-01-04\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-794\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 a8ff5b71-11df-4aad-a720-5d6fbe717c27 2020-01-04 20:25:18.668274 26663 801 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.78.168 a8ff5b71-11df-4aad-a720-5d6fbe717c27 2020-01-04 20:25:18.694298 26664 2007 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 095bc7f5-109b-412a-a848-a6ddc140ed62 2020-01-04 20:25:55.538886 26665 2748 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 726\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3894E3\nmove_type: '1'\nsale_id: 2007\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-794\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1106E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-794 187.149.78.168 095bc7f5-109b-412a-a848-a6ddc140ed62 2020-01-04 20:25:55.568358 26666 2008 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 726\namount: !ruby/object:BigDecimal 18:0.59529E3\ntax: !ruby/object:BigDecimal 18:0.5371E2\ndiscount: !ruby/object:BigDecimal 18:0.2596E3\ntotal: !ruby/object:BigDecimal 18:0.3894E3\nstatus: 0\ndate_sale: 2020-01-04\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-795\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 f0097386-4972-4b76-a558-0d4fd5bd834e 2020-01-04 20:27:46.669541 26667 724 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 187.149.78.168 f0097386-4972-4b76-a558-0d4fd5bd834e 2020-01-04 20:27:46.694431 26668 2008 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 7e40ac4c-f296-44c9-8fad-b78d9c35aafe 2020-01-04 20:28:05.353712 26669 2749 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 726\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3894E3\nmove_type: '1'\nsale_id: 2008\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-795\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.106E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-795 187.149.78.168 7e40ac4c-f296-44c9-8fad-b78d9c35aafe 2020-01-04 20:28:05.375154 26670 2009 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 726\namount: !ruby/object:BigDecimal 18:0.8534E2\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9899E2\nstatus: 0\ndate_sale: 2020-01-04\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-796\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 8eaa42bb-94a9-4108-9766-c0a0aacff29f 2020-01-04 20:35:50.132237 26671 487 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 18 \N 187.149.78.168 8eaa42bb-94a9-4108-9766-c0a0aacff29f 2020-01-04 20:35:50.155958 26672 2009 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 a9091449-b346-4677-9070-4b88069e8288 2020-01-04 20:35:55.319193 26673 2750 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 726\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.9899E2\nmove_type: '1'\nsale_id: 2009\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-796\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.101E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-796 187.149.78.168 a9091449-b346-4677-9070-4b88069e8288 2020-01-04 20:35:55.337979 26674 2010 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 724\namount: !ruby/object:BigDecimal 18:0.1368E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.619E3\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2020-01-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-979\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 63e1065b-bed6-4bf2-9d13-9fac38b4a3c5 2020-01-04 21:11:34.825885 26675 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 23 \N 187.149.78.168 63e1065b-bed6-4bf2-9d13-9fac38b4a3c5 2020-01-04 21:11:34.855346 26676 742 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.78.168 63e1065b-bed6-4bf2-9d13-9fac38b4a3c5 2020-01-04 21:11:34.879793 26677 2010 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 794d6d7d-5a02-489a-a30b-9c4dddae6517 2020-01-04 21:11:39.553334 26678 2751 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 724\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 2010\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-979\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.749E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-979 187.149.78.168 794d6d7d-5a02-489a-a30b-9c4dddae6517 2020-01-04 21:11:39.580042 26679 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2019-12-31 21:15:05.113327000 Z\n- &1 2020-01-01 01:02:29.848124000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-04 21:28:03.063688690 Z\nsign_in_count:\n- 44\n- 45\n 90 \N 187.149.78.168 9a9fa2e7-01da-49e7-9d7d-cbff815c947c 2020-01-04 21:28:03.069728 26680 24 User \N \N 24 User \N update ---\nunique_session_id:\n- cnj6sESvCWSMa8cDRbAS\n- VQhhYxJ4i1o69-uLafFf\n 91 \N 187.149.78.168 9a9fa2e7-01da-49e7-9d7d-cbff815c947c 2020-01-04 21:28:03.082078 26681 1259 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.78.168 514c2c6a-6b9e-4e9d-a87f-3521edbd06b8 2020-01-04 21:28:33.604875 26682 1259 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.78.168 65db7c40-ebea-46af-9a4e-6ca86691f8d4 2020-01-04 21:28:40.990385 26683 1146 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.78.168 772e4713-3be9-42d7-82de-2a0fdcd97acc 2020-01-04 21:31:08.380483 26684 1146 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.78.168 8eb06907-eb43-4219-9bef-1b9ed43dc1a0 2020-01-04 21:31:10.827003 26685 400 Transfer \N \N 24 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-01-04\nuser_id: 24\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.78.168 1931b04b-0c39-4cff-b169-d0efa7bd330d 2020-01-04 21:31:18.321022 26686 400 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-04\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.78.168 efa08334-4692-4653-b18a-02f4b786e781 2020-01-04 21:31:55.695295 26687 1487 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 901\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 efa08334-4692-4653-b18a-02f4b786e781 2020-01-04 21:31:55.714236 26688 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2019-12-31 21:24:20.839860000 Z\n- &1 2020-01-03 20:52:36.739524000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-04 21:33:50.241962693 Z\nsign_in_count:\n- 147\n- 148\n 296 \N 187.149.78.168 6f2e4c0b-1c8f-4ff3-85fd-22ee0cd6383a 2020-01-04 21:33:50.247838 26690 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-04 02:33:10.221361000 Z\n- &1 2020-01-04 18:09:43.517896000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-04 22:11:38.588734258 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1263\n- 1264\n 2528 \N 189.186.54.195 77c83f77-a047-404d-a981-ed3238bf34b3 2020-01-04 22:11:38.600393 26691 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zwZ1D4iVjmGRMcE4bxZ_\n- 5GeYXyiA4VQmGdy-fM_P\n 2529 \N 189.186.54.195 77c83f77-a047-404d-a981-ed3238bf34b3 2020-01-04 22:11:38.625093 26692 258 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 724\nquantity: !ruby/object:BigDecimal 18:0.562E3\nstatus: 1\nobservations: agua potable (japac) de suo y bySuo\nexpense_date: 2020-01-04\nexpense_code: PV1-E-182\n 1 Egreso por 562.0 registrado 187.149.78.168 2f81410d-e3c1-4966-ac7f-ef3f83fca8a5 2020-01-04 22:43:44.611273 26693 2752 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 724\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.562E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 258\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 2f81410d-e3c1-4966-ac7f-ef3f83fca8a5 2020-01-04 22:43:44.631559 26694 2753 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 669\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 1702\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 d76cb876-6633-4599-9eec-2182c57c05a7 2020-01-04 22:56:41.086888 26695 2753 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 669\n- 724\n 2 movimiento de efectivo por venta con folio PV1-V-868 187.149.78.168 d76cb876-6633-4599-9eec-2182c57c05a7 2020-01-04 22:56:41.111285 26696 2011 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 726\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2796E3\ntotal: !ruby/object:BigDecimal 18:0.4194E3\nstatus: 0\ndate_sale: 2020-01-04\nsaletype: 1\nseller_id: 17\nsale_code: PV2-V-797\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 fc54f649-1552-4b5b-b32b-1d5d1cb51129 2020-01-05 00:19:30.399046 26697 1281 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 18 \N 187.149.78.168 fc54f649-1552-4b5b-b32b-1d5d1cb51129 2020-01-05 00:19:30.427766 26698 2011 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 96253ec0-7bcf-407b-bf22-1be39cd3d132 2020-01-05 00:19:47.116273 26699 2754 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 726\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4194E3\nmove_type: '1'\nsale_id: 2011\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-797\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.806E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-797 187.149.78.168 96253ec0-7bcf-407b-bf22-1be39cd3d132 2020-01-05 00:19:47.135956 26700 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-04 18:09:43.517896000 Z\n- &1 2020-01-04 22:11:38.588734000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-05 00:47:08.135990282 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1264\n- 1265\n 2530 \N 189.186.117.149 39d1ebf1-5cfd-48d6-9a4c-990c78e50a25 2020-01-05 00:47:08.149309 26701 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5GeYXyiA4VQmGdy-fM_P\n- CquUxqdyKFQ5wzND_92A\n 2531 \N 189.186.117.149 39d1ebf1-5cfd-48d6-9a4c-990c78e50a25 2020-01-05 00:47:08.175794 26702 2012 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 724\namount: !ruby/object:BigDecimal 18:0.1629E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.649E3\ntotal: !ruby/object:BigDecimal 18:0.98E3\nstatus: 0\ndate_sale: 2020-01-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-980\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 308c5536-28ab-431d-8875-56be64558296 2020-01-05 01:12:05.741295 26703 1248 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.78.168 308c5536-28ab-431d-8875-56be64558296 2020-01-05 01:12:05.769194 26704 2012 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 e208bcf7-4fbb-4465-b996-7f2d9bbbf465 2020-01-05 01:12:16.419286 26705 2755 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 724\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.98E3\nmove_type: '1'\nsale_id: 2012\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-980\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.98E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-980 187.149.78.168 e208bcf7-4fbb-4465-b996-7f2d9bbbf465 2020-01-05 01:12:16.439715 26706 2012 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-980 cancelada. 187.149.78.168 10da654f-00f0-4c58-ad2a-b9abf41e6428 2020-01-05 01:17:56.902542 26707 2755 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 724\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.98E3\nmove_type: '1'\nsale_id: 2012\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-980\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.98E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 10da654f-00f0-4c58-ad2a-b9abf41e6428 2020-01-05 01:17:56.926565 26708 1248 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.78.168 10da654f-00f0-4c58-ad2a-b9abf41e6428 2020-01-05 01:17:56.952236 26709 1279 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.78.168 7a252fdb-5486-4b07-ae6f-e2029895ffcc 2020-01-05 01:21:47.769418 26710 1279 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.78.168 20bc4da2-a4c5-474b-970a-526afe272e98 2020-01-05 01:21:51.59511 26757 1277 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.77.93 1946ab73-0506-4431-b4fe-845c3abb4849 2020-01-07 02:33:20.346053 26711 401 Transfer \N \N 1 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-01-04\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.78.168 9b715cf1-965e-42e1-868d-84ec391cf8ad 2020-01-05 01:21:53.598936 26712 401 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-04\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.78.168 f0346ae5-b8ca-4dc1-a86c-06a2d2ad9832 2020-01-05 01:22:59.367814 26713 1366 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.78.168 f0346ae5-b8ca-4dc1-a86c-06a2d2ad9832 2020-01-05 01:22:59.384156 26714 2013 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 724\namount: !ruby/object:BigDecimal 18:0.3178E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1549E4\ntotal: !ruby/object:BigDecimal 18:0.1629E4\nstatus: 0\ndate_sale: 2020-01-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-981\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 5906997e-4d98-45c6-b759-d5c07b1fb26c 2020-01-05 01:23:43.093934 26715 1248 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.78.168 5906997e-4d98-45c6-b759-d5c07b1fb26c 2020-01-05 01:23:43.128787 26716 1366 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.78.168 5906997e-4d98-45c6-b759-d5c07b1fb26c 2020-01-05 01:23:43.15061 26717 2013 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 b0dc2277-6e32-4f09-b441-d4633686ad2f 2020-01-05 01:23:48.830533 26718 2756 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 724\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1629E4\nmove_type: '1'\nsale_id: 2013\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-981\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1629E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-981 187.149.78.168 b0dc2277-6e32-4f09-b441-d4633686ad2f 2020-01-05 01:23:48.851064 26719 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-04 22:11:38.588734000 Z\n- &1 2020-01-05 00:47:08.135990000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-05 01:36:54.320153119 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1265\n- 1266\n 2532 \N 189.186.54.195 74abeea7-01eb-4d8b-8133-e451652895c8 2020-01-05 01:36:54.331656 26720 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CquUxqdyKFQ5wzND_92A\n- J8ZSUxJWzZxEjqzoe9T2\n 2533 \N 189.186.54.195 74abeea7-01eb-4d8b-8133-e451652895c8 2020-01-05 01:36:54.355558 26721 259 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 724\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nstatus: 1\nobservations: sueldo rocio\nexpense_date: 2020-01-04\nexpense_code: PV1-E-183\n 1 Egreso por 1328.0 registrado 187.149.78.168 308dc022-66f6-490a-b03f-ad0519c33586 2020-01-05 02:18:13.596472 26722 2757 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 724\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1328E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 259\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 308dc022-66f6-490a-b03f-ad0519c33586 2020-01-05 02:18:13.616555 26723 731 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 724\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4397E4\namount_out: !ruby/object:BigDecimal 18:0.189E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.27E4\ncash_fund: !ruby/object:BigDecimal 18:0.777E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3477E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.78.168 152e440b-1dcc-45b4-8fd0-67302e4cbc1f 2020-01-05 02:27:22.982699 26724 724 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 152e440b-1dcc-45b4-8fd0-67302e4cbc1f 2020-01-05 02:27:23.001467 26725 260 Expense \N \N 8 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 726\nquantity: !ruby/object:BigDecimal 18:0.189E4\nstatus: 1\nobservations: SUELDO KEYLA $1150 COMISIONES $740\nexpense_date: 2020-01-04\nexpense_code: PV2-E-55\n 1 Egreso por 1890.0 registrado 187.149.78.168 4428b28e-17ca-4879-949c-77f0231e1b8c 2020-01-05 02:39:22.514843 26726 2758 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 726\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.189E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 260\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 4428b28e-17ca-4879-949c-77f0231e1b8c 2020-01-05 02:39:22.534402 26727 2014 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 726\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.315E3\ntotal: !ruby/object:BigDecimal 18:0.474E3\nstatus: 0\ndate_sale: 2020-01-04\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-798\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 5fc6fe56-bceb-44d7-bdb7-7c78c7afbc7b 2020-01-05 02:41:19.679978 26728 1282 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 187.149.78.168 5fc6fe56-bceb-44d7-bdb7-7c78c7afbc7b 2020-01-05 02:41:19.707407 26729 2014 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 34a691a4-6689-4fa1-9548-6a3a3cbfd325 2020-01-05 02:41:24.858524 26730 2759 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 726\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.474E3\nmove_type: '1'\nsale_id: 2014\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-798\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.474E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-798 187.149.78.168 34a691a4-6689-4fa1-9548-6a3a3cbfd325 2020-01-05 02:41:24.880457 26731 732 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 726\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.260999E4\namount_out: !ruby/object:BigDecimal 18:0.189E4\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.748E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1748E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.78.168 b6ceee99-7b95-482b-9a2b-f798fde94d38 2020-01-05 02:49:33.970759 26732 726 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 b6ceee99-7b95-482b-9a2b-f798fde94d38 2020-01-05 02:49:33.985155 26733 261 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 725\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: IMPRESION DE CARTELES\nexpense_date: 2020-01-04\nexpense_code: PV3-E-23\n 1 Egreso por 50.0 registrado 189.186.117.149 b32e7892-4d04-41d5-bf12-128958af1dbf 2020-01-05 02:54:58.812276 26734 2760 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 725\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 261\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.117.149 b32e7892-4d04-41d5-bf12-128958af1dbf 2020-01-05 02:54:58.83154 26735 733 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 725\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1246E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1246E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 82d3c5a7-44be-4c3b-a825-e1bf86c70f5d 2020-01-05 02:56:23.146949 26736 725 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 82d3c5a7-44be-4c3b-a825-e1bf86c70f5d 2020-01-05 02:56:23.158585 26737 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-02 19:10:06.439767000 Z\n- &1 2020-01-03 17:10:02.915695000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-06 17:03:27.192367575 Z\nsign_in_count:\n- 64\n- 65\n 130 \N 187.149.78.168 6c36e244-054d-4053-9a27-a44e4b123ffd 2020-01-06 17:03:27.227189 26738 27 User \N \N 27 User \N update ---\nunique_session_id:\n- EfbzzLDQo6erZAK153xp\n- csqoYH5DdHDQdyLcmszy\n 131 \N 187.149.78.168 6c36e244-054d-4053-9a27-a44e4b123ffd 2020-01-06 17:03:27.251125 26739 727 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.748E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 748.0 187.149.78.168 ea0b1884-6af6-4059-a042-9741cacf504b 2020-01-06 17:03:55.636424 26740 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-03 18:11:49.283533000 Z\n- &1 2020-01-04 18:00:23.963485000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-06 17:37:50.379718773 Z\nsign_in_count:\n- 78\n- 79\n 159 \N 189.186.117.149 41d5f5b5-07fa-4b9f-9076-024c14cc2ecb 2020-01-06 17:37:50.408433 26741 21 User \N \N 21 User \N update ---\nunique_session_id:\n- oKhCH4i8Bymg7WTGzXFY\n- s16CCUPN8dctSW19_VGp\n 160 \N 189.186.117.149 41d5f5b5-07fa-4b9f-9076-024c14cc2ecb 2020-01-06 17:37:50.429016 26742 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-05 00:47:08.135990000 Z\n- &1 2020-01-05 01:36:54.320153000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-06 19:30:56.600167661 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1266\n- 1267\n 2534 \N 189.186.54.195 e52931df-fae1-441f-9488-57d4c4ea71cd 2020-01-06 19:30:56.609975 26743 4 User \N \N 4 User \N update ---\nunique_session_id:\n- J8ZSUxJWzZxEjqzoe9T2\n- F_W-96zUxFu_cCmXF1N-\n 2535 \N 189.186.54.195 e52931df-fae1-441f-9488-57d4c4ea71cd 2020-01-06 19:30:56.634601 26744 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-03 17:11:54.828702000 Z\n- &1 2020-01-04 18:07:03.360371000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-06 22:01:45.585615063 Z\nsign_in_count:\n- 431\n- 432\n 867 \N 187.149.78.168 72946e29-3195-4521-b25f-d865961441d3 2020-01-06 22:01:45.594453 26745 2 User \N \N 2 User \N update ---\nunique_session_id:\n- T5y-WynygrGQuyYsgz2S\n- R7Rh2myPh6waZyAi4o8C\n 868 \N 187.149.78.168 72946e29-3195-4521-b25f-d865961441d3 2020-01-06 22:01:45.635641 26746 2015 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 727\namount: !ruby/object:BigDecimal 18:0.43019E3\ntax: !ruby/object:BigDecimal 18:0.3881E2\ndiscount: !ruby/object:BigDecimal 18:0.1876E3\ntotal: !ruby/object:BigDecimal 18:0.2814E3\nstatus: 0\ndate_sale: 2020-01-06\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-799\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 01d37a34-fe53-4ca4-a34c-b7d684c0672f 2020-01-06 22:56:33.72583 26747 315 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.78.168 01d37a34-fe53-4ca4-a34c-b7d684c0672f 2020-01-06 22:56:33.781382 26748 2015 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 e2c415fe-4cc3-409a-9604-05cc81039195 2020-01-06 22:57:15.112869 26749 2761 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 727\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2814E3\nmove_type: '1'\nsale_id: 2015\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-799\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.186E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-799 187.149.78.168 e2c415fe-4cc3-409a-9604-05cc81039195 2020-01-06 22:57:15.148005 26750 728 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.777E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 777.0 187.149.78.168 08ceb558-7945-4147-b5de-ea467cc10f21 2020-01-07 00:15:58.442141 26751 2016 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 728\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.219E3\ntotal: !ruby/object:BigDecimal 18:0.33E3\nstatus: 0\ndate_sale: 2020-01-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-982\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 06ea3771-d86d-4aa3-93b0-ed09035146df 2020-01-07 00:17:09.148167 26752 1443 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.78.168 06ea3771-d86d-4aa3-93b0-ed09035146df 2020-01-07 00:17:09.174086 26753 2016 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 0a33dd8a-020f-412c-9ce3-9f4217aadd32 2020-01-07 00:17:17.412499 26754 2762 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 728\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.33E3\nmove_type: '1'\nsale_id: 2016\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-982\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.33E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-982 187.149.78.168 0a33dd8a-020f-412c-9ce3-9f4217aadd32 2020-01-07 00:17:17.432724 26755 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-05 01:36:54.320153000 Z\n- &1 2020-01-06 19:30:56.600167000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-07 00:44:31.967747691 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1267\n- 1268\n 2536 \N 189.186.117.149 cbe49a1a-d498-40e9-a861-6cdfe41bc773 2020-01-07 00:44:31.975233 26758 1277 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.77.93 10708850-3fc7-40eb-ba3b-e98bf24951f8 2020-01-07 02:33:37.985052 26759 402 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-01-06\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.77.93 5ecd8eb7-780c-421a-a420-a3d64d10eb34 2020-01-07 02:33:38.225959 26760 734 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 728\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.33E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1107E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1107E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.77.93 c0dd2728-145a-4515-83f3-0dbf9a06b254 2020-01-07 02:54:54.919902 26761 728 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.93 c0dd2728-145a-4515-83f3-0dbf9a06b254 2020-01-07 02:54:54.933832 26762 735 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 728\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.33E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1107E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1107E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.77.93 6cf50ab3-4ea2-402a-97ec-ae447d33e590 2020-01-07 02:54:55.053876 26763 736 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 727\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2814E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.10294E4\nphysical_cash: !ruby/object:BigDecimal 18:0.10294E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.77.93 131bd949-b19a-4df6-a0f1-d8d2d48ae1ba 2020-01-07 03:00:36.760316 26764 727 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.93 131bd949-b19a-4df6-a0f1-d8d2d48ae1ba 2020-01-07 03:00:36.781058 26765 737 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 727\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2814E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.10294E4\nphysical_cash: !ruby/object:BigDecimal 18:0.10294E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.77.93 b62fd24d-a22c-4049-972f-d3b9afedb9d6 2020-01-07 03:00:36.86357 26766 738 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 727\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2814E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.10294E4\nphysical_cash: !ruby/object:BigDecimal 18:0.10294E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.77.93 4b8f6d54-3db0-4d7c-83f4-18e2b269f905 2020-01-07 03:00:40.481363 26767 739 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 727\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2814E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.10294E4\nphysical_cash: !ruby/object:BigDecimal 18:0.10294E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.77.93 47c13a8e-a4fa-46c7-9b24-a47c43f7e1a6 2020-01-07 03:00:40.659166 26768 740 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 727\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2814E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.10294E4\nphysical_cash: !ruby/object:BigDecimal 18:0.10294E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.77.93 11985e3c-e9ab-4f98-ba9a-3164d72277d8 2020-01-07 03:00:40.832764 26769 741 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 727\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2814E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.10294E4\nphysical_cash: !ruby/object:BigDecimal 18:0.10294E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.77.93 2c8227d4-a8a1-4a77-a1c7-3517867c139a 2020-01-07 03:00:40.962278 26770 742 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 727\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2814E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.10294E4\nphysical_cash: !ruby/object:BigDecimal 18:0.10294E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.77.93 4c55159b-8403-4ded-96e5-82f903507718 2020-01-07 03:00:41.123226 26771 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-06 19:30:56.600167000 Z\n- &1 2020-01-07 00:44:31.967747000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-07 03:37:35.723086417 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1268\n- 1269\n 2538 \N 189.186.54.195 c5583fa8-3d25-4912-a83b-0c4908dbaeb8 2020-01-07 03:37:35.734086 26772 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2W61tyAE9bmtnz2jyy1F\n- NJSFaHzRNcj3aRynRfy_\n 2539 \N 189.186.54.195 c5583fa8-3d25-4912-a83b-0c4908dbaeb8 2020-01-07 03:37:35.756557 26773 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-03 17:10:02.915695000 Z\n- &1 2020-01-06 17:03:27.192367000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-07 17:14:21.432887999 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124061\n mask_addr: 4294967295\nsign_in_count:\n- 65\n- 66\n 132 \N 187.149.77.93 23e3e240-f9b6-49c3-8f62-0213e4560554 2020-01-07 17:14:21.462946 26774 27 User \N \N 27 User \N update ---\nunique_session_id:\n- csqoYH5DdHDQdyLcmszy\n- aH2yj5yNpysdgTTr_D1P\n 133 \N 187.149.77.93 23e3e240-f9b6-49c3-8f62-0213e4560554 2020-01-07 17:14:21.484775 26775 729 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.10294E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1029.4 187.149.77.93 ef50ba5c-04a2-4515-82fb-50a1f0275241 2020-01-07 17:14:51.437727 26799 405 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-01-07\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.117.149 6839f9ed-063e-4490-a5f7-ef05d89c2df9 2020-01-07 19:02:29.432022 26776 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-07 00:44:31.967747000 Z\n- &1 2020-01-07 03:37:35.723086000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-07 18:07:42.682925750 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1269\n- 1270\n 2540 \N 189.186.117.149 5830d438-08d6-473c-9d25-c2ca05eddb71 2020-01-07 18:07:42.689694 26777 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NJSFaHzRNcj3aRynRfy_\n- qdvQsmdoCmUtn3fu-syf\n 2541 \N 189.186.117.149 5830d438-08d6-473c-9d25-c2ca05eddb71 2020-01-07 18:07:42.70802 26778 22 User \N \N 22 User \N update ---\nlast_sign_in_at:\n- 2019-09-04 01:07:45.879372000 Z\n- &1 2019-11-03 19:40:54.498646000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-07 18:13:14.624771523 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098465\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 3\n- 4\n 8 \N 189.186.117.149 989f80e1-05bc-4797-9bbe-050a8fef6846 2020-01-07 18:13:14.632102 26779 22 User \N \N 22 User \N update ---\nunique_session_id:\n- 1KAMZc1uN6GsJ1fWeQKT\n- J5NkReXzbRyve-oYb9ox\n 9 \N 189.186.117.149 989f80e1-05bc-4797-9bbe-050a8fef6846 2020-01-07 18:13:14.646717 26780 265 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-07\n 2 Se dio entrada a traspaso de SUO a Almacen central 189.186.117.149 cb6ac11e-8239-424f-a861-74266e9a4f81 2020-01-07 18:13:30.786608 26781 235 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-07\n 2 Se dio entrada a traspaso de SUO a Almacen central 189.186.117.149 bbdf8879-d0a9-46c4-99e3-0edc35983b8b 2020-01-07 18:13:38.597747 26782 289 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-07\n 2 Se dio entrada a traspaso de S BY SUO a Almacen central 189.186.117.149 60c0daeb-d983-4e5e-9419-1cd53c0015ca 2020-01-07 18:13:46.317688 26783 216 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-07\n 2 Se dio entrada a traspaso de SUO a Almacen central 189.186.117.149 c08e5a36-dc83-439e-ac97-aa0b6aa86e3e 2020-01-07 18:13:55.200118 26784 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-07 03:37:35.723086000 Z\n- &1 2020-01-07 18:07:42.682925000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-07 18:15:20.702518217 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1270\n- 1271\n 2542 \N 189.186.54.195 623dd4b8-d39b-48ed-a6d4-6017ffc79b2e 2020-01-07 18:15:20.710477 26785 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qdvQsmdoCmUtn3fu-syf\n- xUVecqX5W4sHMgHCJVhu\n 2543 \N 189.186.54.195 623dd4b8-d39b-48ed-a6d4-6017ffc79b2e 2020-01-07 18:15:20.726587 26786 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 00:42:03.160535000 Z\n- &1 2020-01-02 21:47:31.233614000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-07 18:17:41.665371176 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 61\n- 62\n 124 \N 189.186.117.149 37c42ba8-dc46-42c1-8245-826c79da6e76 2020-01-07 18:17:41.673979 26787 25 User \N \N 25 User \N update ---\nunique_session_id:\n- 8zrtxPheKNz5ApgsHSUq\n- 3SFsz5KFVJr6wvs6AJPA\n 125 \N 189.186.117.149 37c42ba8-dc46-42c1-8245-826c79da6e76 2020-01-07 18:17:41.689053 26788 82 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.117.149 b3d9d40f-1587-4bdb-b2bb-d59e9b33543a 2020-01-07 18:18:11.246148 26789 82 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.117.149 7115d9f7-1378-4f9f-aca9-24b76a4eadb1 2020-01-07 18:19:03.742045 26790 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-07 18:07:42.682925000 Z\n- &1 2020-01-07 18:15:20.702518000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-07 18:19:16.230596708 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1271\n- 1272\n 2544 \N 189.186.117.149 469c4b3f-9edf-418f-9460-c35c0389da25 2020-01-07 18:19:16.241161 26791 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xUVecqX5W4sHMgHCJVhu\n- Q5Le2T1vzyGhirgNq74f\n 2545 \N 189.186.117.149 469c4b3f-9edf-418f-9460-c35c0389da25 2020-01-07 18:19:16.264082 26792 64 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 4 \N 189.186.117.149 03edea7b-d000-47f2-ad4f-28cb6f167751 2020-01-07 18:27:03.89038 26793 64 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.117.149 8071d113-f21a-45e3-83a6-7b95cb4faa3b 2020-01-07 18:36:47.167215 26794 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-04 18:07:03.360371000 Z\n- &1 2020-01-06 22:01:45.585615000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-07 18:48:55.471491900 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124061\n mask_addr: 4294967295\nsign_in_count:\n- 432\n- 433\n 869 \N 187.149.77.93 95eaff7e-1a21-4dc3-b354-b73daf3854b3 2020-01-07 18:48:55.477779 26795 2 User \N \N 2 User \N update ---\nunique_session_id:\n- R7Rh2myPh6waZyAi4o8C\n- cxJTy9-CHrVPzy1aYz5S\n 870 \N 187.149.77.93 95eaff7e-1a21-4dc3-b354-b73daf3854b3 2020-01-07 18:48:55.490852 26796 643 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.117.149 d9f4a172-6f92-4fe0-b81a-f4b891cfc875 2020-01-07 18:54:45.459215 26797 403 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-01-07\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.117.149 c1e76ece-274b-468b-81ef-ec0982be0fd0 2020-01-07 18:58:18.587285 26798 404 Transfer \N \N 25 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-01-07\nuser_id: 25\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.117.149 19cfe3da-a8ea-4d37-a442-38f68ead38c2 2020-01-07 18:58:27.290862 26800 970 Product \N \N 4 User \N create ---\nsku: VES-970\nname: VES-0043\ndescription: "VESTIDO GLOW PASSION AZUL REY\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3995E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-970 fue creado. 189.186.117.149 2118b296-7c24-44b7-b261-4e95b55dffee 2020-01-07 19:08:20.371587 26801 970 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000970'\n 2 \N 189.186.117.149 2118b296-7c24-44b7-b261-4e95b55dffee 2020-01-07 19:08:20.414996 26802 1488 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 970\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 2118b296-7c24-44b7-b261-4e95b55dffee 2020-01-07 19:08:20.453235 26803 219 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-25\namount: !ruby/object:BigDecimal 18:0.11985E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.11985E4\nobservations: ''\npurchase_date: 2020-01-07\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-25 por $ 1198.5 MXN creada. 189.186.117.149 324e08c0-bef0-4ec4-bf41-23381890f6f8 2020-01-07 19:08:31.278771 26804 1488 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.117.149 324e08c0-bef0-4ec4-bf41-23381890f6f8 2020-01-07 19:08:31.301531 26805 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-04 18:00:23.963485000 Z\n- &1 2020-01-06 17:37:50.379718000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-07 19:09:16.211910199 Z\nsign_in_count:\n- 79\n- 80\n 161 \N 189.186.117.149 851ef4cf-bb21-424f-81b4-e1e67a048621 2020-01-07 19:09:16.218017 26806 21 User \N \N 21 User \N update ---\nunique_session_id:\n- s16CCUPN8dctSW19_VGp\n- ejTcdSuuLsfDARiPzbM2\n 162 \N 189.186.117.149 851ef4cf-bb21-424f-81b4-e1e67a048621 2020-01-07 19:09:16.230712 26807 405 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-07\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.117.149 56bc8201-0d27-4c0e-9737-af62bd6e121c 2020-01-07 19:09:30.188963 26808 1489 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 206\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 56bc8201-0d27-4c0e-9737-af62bd6e121c 2020-01-07 19:09:30.218674 26809 404 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-07\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.117.149 85cc16d6-de1c-4b1e-af05-f2a06f03c4b5 2020-01-07 19:09:36.769829 26810 1490 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 577\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 85cc16d6-de1c-4b1e-af05-f2a06f03c4b5 2020-01-07 19:09:36.789523 26811 1491 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 66\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 85cc16d6-de1c-4b1e-af05-f2a06f03c4b5 2020-01-07 19:09:36.81046 26812 1492 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 84\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 85cc16d6-de1c-4b1e-af05-f2a06f03c4b5 2020-01-07 19:09:36.831525 26813 403 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-07\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:46.764282 26814 1493 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 210\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:46.783628 26815 1494 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 231\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:46.802572 26816 1495 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 246\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:46.820726 26817 1496 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 212\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:46.840372 26818 1497 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 217\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:46.861741 26819 1498 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 208\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:46.880139 26820 1499 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 235\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:46.898335 26821 1500 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 233\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:46.916196 26822 1501 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 76\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:46.934762 26850 492 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '492'\n is_parent: false\n sku: BOL-492\n name: UXDI213\n description: MOCHILA CLOE\n price_base: '849.5'\n price_sale: '1699.0'\n img_product: WIN_20200107_13_36_28_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000492'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-24 01:25:27.11301'\n updated_at: &12 2020-01-07 20:40:41.267395294 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '492'\n sku: BOL-492\n name: UXDI213\n description: MOCHILA CLOE\n price_base: '849.50'\n price_sale: '1699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-24 01:25:27.11301'\n updated_at: '2019-02-24 01:25:27.178523'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000492'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '492'\n type: *3\n value: 492\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-492\n type: *7\n value: BOL-492\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: UXDI213\n type: *8\n value: UXDI213\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCHILA CLOE\n type: *6\n value: MOCHILA CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '849.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1699E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20200107_13_36_28_Pro.jpg\n type: *2\n value: WIN_20200107_13_36_28_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000492'\n type: *2\n value: '0000492'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-24 01:25:27.11301'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20200107_13_36_28_Pro.jpg\n 3 El producto BOL-492 fue modificado. 189.186.117.149 49a735e1-1900-44a9-8768-d80388a84ada 2020-01-07 20:40:41.309489 26823 1502 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 113\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:46.953192 26824 1503 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 536\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:46.972352 26825 1504 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 219\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:46.99042 26826 1505 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 213\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:47.008733 26827 1506 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 69\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:47.026897 26828 1507 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 64\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:47.045085 26829 1508 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 128\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:47.063853 26830 1509 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 287\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:47.082111 26831 1510 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 94\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:47.101151 26832 1511 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 71\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:47.120745 26833 1512 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 119\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:47.140161 26834 1513 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 90\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 af573f4d-df5a-4fea-b97f-6c9e2d8062cf 2020-01-07 19:09:47.158739 26835 2017 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 729\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2796E3\ntotal: !ruby/object:BigDecimal 18:0.4194E3\nstatus: 0\ndate_sale: 2020-01-07\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-800\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 8766fef0-8a3d-4aaa-9fd6-0e9f296fa15b 2020-01-07 19:10:24.515929 26836 800 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 20 \N 187.149.77.93 8766fef0-8a3d-4aaa-9fd6-0e9f296fa15b 2020-01-07 19:10:24.540755 26837 2017 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 a9f3ba1f-7b5d-4d51-a0f8-6ba0b0726406 2020-01-07 19:12:42.52825 26838 2763 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 729\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4194E3\nmove_type: '1'\nsale_id: 2017\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-800\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.42E3\nchange: !ruby/object:BigDecimal 18:0.6E0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-800 187.149.77.93 a9f3ba1f-7b5d-4d51-a0f8-6ba0b0726406 2020-01-07 19:12:42.551006 26839 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-07 18:15:20.702518000 Z\n- &1 2020-01-07 18:19:16.230596000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-07 20:20:55.411683698 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1272\n- 1273\n 2546 \N 189.186.117.149 fe6a137f-50d3-47e5-8a0d-8b9479ed152a 2020-01-07 20:20:55.418454 26840 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Q5Le2T1vzyGhirgNq74f\n- 4MHz6rAUsrPBfVCiSzXm\n 2547 \N 189.186.117.149 fe6a137f-50d3-47e5-8a0d-8b9479ed152a 2020-01-07 20:20:55.433945 26841 453 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '453'\n is_parent: false\n sku: BOL-453\n name: MIGE626\n description: BOLSO PEQUEÑO CLOE AMARILLO MOSTAZA\n price_base: '549.5'\n price_sale: '1099.0'\n img_product: WIN_20200107_13_17_20_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000453'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-08 18:38:44.674017'\n updated_at: &12 2020-01-07 20:21:27.517381204 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '453'\n sku: BOL-453\n name: MIGE626\n description: BOLSO PEQUEÑO CLOE AMARILLO MOSTAZA\n price_base: '549.50'\n price_sale: '1099.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-08 18:38:44.674017'\n updated_at: '2019-12-23 21:34:46.310657'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000453'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '453'\n type: *3\n value: 453\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-453\n type: *7\n value: BOL-453\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: MIGE626\n type: *8\n value: MIGE626\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO PEQUEÑO CLOE AMARILLO MOSTAZA\n type: *6\n value: BOLSO PEQUEÑO CLOE AMARILLO MOSTAZA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '549.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.5495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1099.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1099E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20200107_13_17_20_Pro.jpg\n type: *2\n value: WIN_20200107_13_17_20_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000453'\n type: *2\n value: '0000453'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-08 18:38:44.674017'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20200107_13_17_20_Pro.jpg\n 4 El producto BOL-453 fue modificado. 189.186.117.149 c8c439e0-f44d-4007-a94f-951d1ada353f 2020-01-07 20:21:27.557378 26842 457 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '457'\n is_parent: false\n sku: BOL-457\n name: GIRL257\n description: BOLSO GIRL\n price_base: '199.5'\n price_sale: '399.0'\n img_product: WIN_20200107_13_18_48_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '170698725'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-08 18:51:32.554087'\n updated_at: &12 2020-01-07 20:22:45.952228662 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '457'\n sku: BOL-457\n name: GIRL257\n description: BOLSO GIRL\n price_base: '199.50'\n price_sale: '399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-08 18:51:32.554087'\n updated_at: '2019-02-08 18:51:32.554087'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '170698725'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '457'\n type: *3\n value: 457\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-457\n type: *7\n value: BOL-457\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: GIRL257\n type: *8\n value: GIRL257\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO GIRL\n type: *6\n value: BOLSO GIRL\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '199.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.399E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20200107_13_18_48_Pro.jpg\n type: *2\n value: WIN_20200107_13_18_48_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '170698725'\n type: *2\n value: '170698725'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-08 18:51:32.554087'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20200107_13_18_48_Pro.jpg\n 2 El producto BOL-457 fue modificado. 189.186.117.149 4f3e46ee-b15d-4df4-b09d-ce816bba3021 2020-01-07 20:22:45.995102 26843 460 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '460'\n is_parent: false\n sku: BOL-460\n name: GIRL245\n description: BOLSO GIRL\n price_base: '224.5'\n price_sale: '449.0'\n img_product: WIN_20200107_13_19_09_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170666236'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-08 18:54:42.141981'\n updated_at: &12 2020-01-07 20:23:47.418234394 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '460'\n sku: BOL-460\n name: GIRL245\n description: BOLSO GIRL\n price_base: '224.50'\n price_sale: '449.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-08 18:54:42.141981'\n updated_at: '2019-02-08 18:54:42.141981'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170666236'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '460'\n type: *3\n value: 460\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-460\n type: *7\n value: BOL-460\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: GIRL245\n type: *8\n value: GIRL245\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO GIRL\n type: *6\n value: BOLSO GIRL\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '224.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2245E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '449.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.449E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20200107_13_19_09_Pro.jpg\n type: *2\n value: WIN_20200107_13_19_09_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170666236'\n type: *2\n value: '7509170666236'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-08 18:54:42.141981'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20200107_13_19_09_Pro.jpg\n 2 El producto BOL-460 fue modificado. 189.186.117.149 059e740d-6e19-4316-9169-0abf99905820 2020-01-07 20:23:47.457089 26844 458 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '458'\n is_parent: false\n sku: BOL-458\n name: GIRL249\n description: BOLSO GIRL\n price_base: '174.5'\n price_sale: '349.0'\n img_product: WIN_20200107_13_19_17_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170698497'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-08 18:52:28.37088'\n updated_at: &12 2020-01-07 20:25:28.238373787 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '458'\n sku: BOL-458\n name: GIRL249\n description: BOLSO GIRL\n price_base: '174.50'\n price_sale: '349.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-08 18:52:28.37088'\n updated_at: '2019-02-08 18:52:28.37088'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170698497'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '458'\n type: *3\n value: 458\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-458\n type: *7\n value: BOL-458\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: GIRL249\n type: *8\n value: GIRL249\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO GIRL\n type: *6\n value: BOLSO GIRL\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '174.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1745E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '349.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.349E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20200107_13_19_17_Pro.jpg\n type: *2\n value: WIN_20200107_13_19_17_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170698497'\n type: *2\n value: '7509170698497'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-08 18:52:28.37088'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20200107_13_19_17_Pro.jpg\n 2 El producto BOL-458 fue modificado. 189.186.117.149 38a01455-fa69-4a67-be00-d7e1c1615957 2020-01-07 20:25:28.280618 26845 456 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '456'\n is_parent: false\n sku: BOL-456\n name: GIRL263\n description: ''\n price_base: '249.5'\n price_sale: '499.0'\n img_product: WIN_20200107_13_19_25_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170732740'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-08 18:50:30.369772'\n updated_at: &12 2020-01-07 20:27:05.434928656 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '456'\n sku: BOL-456\n name: GIRL263\n description: ''\n price_base: '249.50'\n price_sale: '499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-08 18:50:30.369772'\n updated_at: '2019-02-08 18:50:30.369772'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170732740'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '456'\n type: *3\n value: 456\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-456\n type: *7\n value: BOL-456\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: GIRL263\n type: *8\n value: GIRL263\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: ''\n type: *6\n value: ''\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '249.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.499E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20200107_13_19_25_Pro.jpg\n type: *2\n value: WIN_20200107_13_19_25_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170732740'\n type: *2\n value: '7509170732740'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-08 18:50:30.369772'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20200107_13_19_25_Pro.jpg\n 2 El producto BOL-456 fue modificado. 189.186.117.149 9358b4fa-c5c2-44d9-8bed-862c3f1e9c9f 2020-01-07 20:27:05.475545 26846 455 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '455'\n is_parent: false\n sku: BOL-455\n name: GIRL243\n description: BOLSO GIRLS\n price_base: '199.5'\n price_sale: '399.0'\n img_product: WIN_20200107_13_19_25_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170666182'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-08 18:49:37.012688'\n updated_at: &12 2020-01-07 20:28:01.363912515 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '455'\n sku: BOL-455\n name: GIRL243\n description: BOLSO GIRLS\n price_base: '199.50'\n price_sale: '399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-08 18:49:37.012688'\n updated_at: '2019-02-08 18:49:37.012688'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170666182'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '455'\n type: *3\n value: 455\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-455\n type: *7\n value: BOL-455\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: GIRL243\n type: *8\n value: GIRL243\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO GIRLS\n type: *6\n value: BOLSO GIRLS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '199.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.399E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20200107_13_19_25_Pro.jpg\n type: *2\n value: WIN_20200107_13_19_25_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170666182'\n type: *2\n value: '7509170666182'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-08 18:49:37.012688'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20200107_13_19_25_Pro.jpg\n 2 El producto BOL-455 fue modificado. 189.186.117.149 fc2db670-e01e-46c5-ae8e-dd4593205f7f 2020-01-07 20:28:01.406239 26847 48 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '48'\n is_parent: false\n sku: BOL-48\n name: IROC175\n description: BOLSA CLOE\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: WIN_20200107_13_26_30_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000048'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862626'\n updated_at: &12 2020-01-07 20:31:58.434982233 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '48'\n sku: BOL-48\n name: IROC175\n description: BOLSA CLOE\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862626'\n updated_at: '2019-02-04 09:10:17.6536'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000048'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '48'\n type: *3\n value: 48\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-48\n type: *7\n value: BOL-48\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: IROC175\n type: *8\n value: IROC175\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE\n type: *6\n value: BOLSA CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20200107_13_26_30_Pro.jpg\n type: *2\n value: WIN_20200107_13_26_30_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000048'\n type: *2\n value: '0000048'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862626'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20200107_13_26_30_Pro.jpg\n 3 El producto BOL-48 fue modificado. 189.186.117.149 f8f9bf98-2b71-4725-a6d6-9d1226958d0d 2020-01-07 20:31:58.492272 26848 703 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '703'\n is_parent: false\n sku: BOL-703\n name: EIRO487\n description: MOCHILA NEGRA\n price_base: '799.5'\n price_sale: '1599.0'\n img_product: ERIO487_OORO_1_300x435.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000703'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-09-01 03:07:33.037728'\n updated_at: &12 2020-01-07 20:36:26.513306432 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '703'\n sku: BOL-703\n name: EIRO487\n description: MOCHILA NEGRA\n price_base: '799.50'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-09-01 03:07:33.037728'\n updated_at: '2019-09-01 03:07:33.083267'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000703'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '703'\n type: *3\n value: 703\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-703\n type: *7\n value: BOL-703\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: EIRO487\n type: *8\n value: EIRO487\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCHILA NEGRA\n type: *6\n value: MOCHILA NEGRA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '799.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: ERIO487_OORO_1_300x435.jpg\n type: *2\n value: ERIO487_OORO_1_300x435.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000703'\n type: *2\n value: '0000703'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-09-01 03:07:33.037728'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- ERIO487_OORO_1_300x435.jpg\n 3 El producto BOL-703 fue modificado. 189.186.117.149 0066b590-5073-468c-9f4f-5f82cc9dd685 2020-01-07 20:36:26.554164 26849 487 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '487'\n is_parent: false\n sku: BOL-487\n name: IRCO175\n description: MOCHILA CLOE\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: WIN_20200107_13_26_30_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000487'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-22 19:41:23.133645'\n updated_at: &12 2020-01-07 20:38:32.662422497 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '487'\n sku: BOL-487\n name: IRCO175\n description: MOCHILA CLOE\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-22 19:41:23.133645'\n updated_at: '2019-02-22 19:41:23.196523'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000487'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '487'\n type: *3\n value: 487\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-487\n type: *7\n value: BOL-487\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: IRCO175\n type: *8\n value: IRCO175\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCHILA CLOE\n type: *6\n value: MOCHILA CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20200107_13_26_30_Pro.jpg\n type: *2\n value: WIN_20200107_13_26_30_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000487'\n type: *2\n value: '0000487'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-22 19:41:23.133645'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20200107_13_26_30_Pro.jpg\n 3 El producto BOL-487 fue modificado. 189.186.117.149 16a2f1e5-55d5-4919-b7cb-7efd42eda266 2020-01-07 20:38:32.702977 26852 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-06 17:37:50.379718000 Z\n- &1 2020-01-07 19:09:16.211910000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-07 20:49:28.792484396 Z\nsign_in_count:\n- 80\n- 81\n 163 \N 189.186.117.149 9444991b-9b22-4ba0-9c56-95a00a9d86c0 2020-01-07 20:49:28.798212 26853 21 User \N \N 21 User \N update ---\nunique_session_id:\n- ejTcdSuuLsfDARiPzbM2\n- px3zy4fJs_q9Bd6_52Mq\n 164 \N 189.186.117.149 9444991b-9b22-4ba0-9c56-95a00a9d86c0 2020-01-07 20:49:28.810466 26854 730 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1246E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1246.0 189.186.117.149 f809ca28-ba04-44e3-866c-da246e53186e 2020-01-07 20:49:45.868291 26855 2018 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 730\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2996E3\ntotal: !ruby/object:BigDecimal 18:0.4494E3\nstatus: 0\ndate_sale: 2020-01-07\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-234\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 e983cf5e-7ef1-445d-9016-a8b1b224f9ff 2020-01-07 20:50:42.243624 26856 1271 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.117.149 e983cf5e-7ef1-445d-9016-a8b1b224f9ff 2020-01-07 20:50:42.267178 26857 2018 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 3fe23d49-5842-475b-a88a-a424054554b0 2020-01-07 20:50:46.587117 26858 2764 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 730\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4494E3\nmove_type: '1'\nsale_id: 2018\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-234\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.45E3\nchange: !ruby/object:BigDecimal 18:0.6E0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-234 189.186.117.149 3fe23d49-5842-475b-a88a-a424054554b0 2020-01-07 20:50:46.607359 26859 2019 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 730\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2996E3\ntotal: !ruby/object:BigDecimal 18:0.4494E3\nstatus: 0\ndate_sale: 2020-01-07\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-235\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 aa05ff86-f63a-4cf0-b67b-4edb248968e6 2020-01-07 21:05:47.24607 26860 1137 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.117.149 aa05ff86-f63a-4cf0-b67b-4edb248968e6 2020-01-07 21:05:47.273786 26861 2019 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 9a95b2e2-38c7-4e65-a1f2-b275c6d1686b 2020-01-07 21:06:00.202802 26862 2765 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 730\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4494E3\nmove_type: '1'\nsale_id: 2019\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-235\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.506E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-235 189.186.117.149 9a95b2e2-38c7-4e65-a1f2-b275c6d1686b 2020-01-07 21:06:00.222264 26863 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-07 18:19:16.230596000 Z\n- &1 2020-01-07 20:20:55.411683000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-07 21:11:47.171742581 Z\nsign_in_count:\n- 1273\n- 1274\n 2548 \N 189.186.117.149 1babb7f5-86fc-4262-889c-a07130a51511 2020-01-07 21:11:47.177646 26864 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4MHz6rAUsrPBfVCiSzXm\n- PG3Z13xy2RRgymeLZJ9o\n 2549 \N 189.186.117.149 1babb7f5-86fc-4262-889c-a07130a51511 2020-01-07 21:11:47.192568 26865 47 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '47'\n is_parent: false\n sku: BOL-47\n name: MUIZ727\n description: BOLSA CLOE\n price_base: '699.5'\n price_sale: '1399.0'\n img_product: WIN_20200107_14_08_48_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000047'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862625'\n updated_at: &12 2020-01-07 21:12:48.835129885 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '47'\n sku: BOL-47\n name: MUIZ727\n description: BOLSA CLOE\n price_base: '699.50'\n price_sale: '1399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862625'\n updated_at: '2019-02-04 09:10:18.41294'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000047'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '47'\n type: *3\n value: 47\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-47\n type: *7\n value: BOL-47\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: MUIZ727\n type: *8\n value: MUIZ727\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSA CLOE\n type: *6\n value: BOLSA CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '699.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1399E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20200107_14_08_48_Pro.jpg\n type: *2\n value: WIN_20200107_14_08_48_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000047'\n type: *2\n value: '0000047'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862625'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20200107_14_08_48_Pro.jpg\n 3 El producto BOL-47 fue modificado. 189.186.117.149 0f83f4a3-2f59-4e3e-ae65-e7030453eab7 2020-01-07 21:12:48.877474 26866 731 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1107E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1107.0 187.149.77.93 eb6f8b3b-b93a-4660-8676-7bafdf6306eb 2020-01-07 21:17:06.754668 26867 722 Product \N \N 4 User \N update ---\nname:\n- 1BCL119289\n- 1BCLI19289\n 3 El producto BOL-722 fue modificado. 189.186.117.149 4ade2891-d622-45e7-9590-65fef8639f95 2020-01-07 21:21:43.442933 26868 1082 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.117.149 ca870bbd-829c-4c5f-b138-c82a9e43929c 2020-01-07 21:22:47.00423 26869 797 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.117.149 387f79b1-897c-462f-b6ba-302ca4b47a9e 2020-01-07 21:22:53.718627 26870 406 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-01-07\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.117.149 66446e12-2cf1-4916-8e2e-318762debe61 2020-01-07 21:22:56.745843 26871 2766 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 730\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1463\ncardnumber: 8054\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-129 189.186.117.149 a757a62b-5295-495e-b7cb-87ed94d3a7eb 2020-01-07 21:27:36.237021 26872 1463 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.117.149 532d1788-2f34-4e19-b30b-5ee3de8943b2 2020-01-07 21:27:38.314525 26873 541 Product \N \N 4 User \N update ---\ndescription:\n- BACKPACK CLOE\n- 'BACKPACK CLOE MORADA Y ROSA AGATA '\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '541'\n is_parent: false\n sku: BOL-541\n name: VAIM222\n description: 'BACKPACK CLOE MORADA Y ROSA AGATA '\n price_base: '949.5'\n price_sale: '1899.0'\n img_product: WIN_20200107_14_30_16_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000541'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-04-16 19:25:22.341765'\n updated_at: &12 2020-01-07 21:34:15.161274657 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '541'\n sku: BOL-541\n name: VAIM222\n description: BACKPACK CLOE\n price_base: '949.50'\n price_sale: '1899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-04-16 19:25:22.341765'\n updated_at: '2019-04-16 19:25:22.376186'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000541'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '541'\n type: *3\n value: 541\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-541\n type: *7\n value: BOL-541\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VAIM222\n type: *8\n value: VAIM222\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'BACKPACK CLOE MORADA Y ROSA AGATA '\n type: *6\n value: 'BACKPACK CLOE MORADA Y ROSA AGATA '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '949.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.9495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1899E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20200107_14_30_16_Pro.jpg\n type: *2\n value: WIN_20200107_14_30_16_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000541'\n type: *2\n value: '0000541'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-04-16 19:25:22.341765'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20200107_14_30_16_Pro.jpg\n 3 El producto BOL-541 fue modificado. 189.186.117.149 33c9da1f-2d87-464a-96c2-0adf769da740 2020-01-07 21:34:15.201333 26874 2020 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 731\namount: !ruby/object:BigDecimal 18:0.1629E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.651E3\ntotal: !ruby/object:BigDecimal 18:0.978E3\nstatus: 0\ndate_sale: 2020-01-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-983\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 b10414ba-05cc-4c7e-be88-73166e2abd11 2020-01-07 21:57:17.047593 26875 1248 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.77.93 b10414ba-05cc-4c7e-be88-73166e2abd11 2020-01-07 21:57:17.075507 26876 2020 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 a3e7c8af-0660-402a-a479-6ee2c11ed34d 2020-01-07 21:57:23.18201 27054 1471 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.117.149 10917a3f-a0ce-4492-a2bd-61c0d331cdc0 2020-01-11 19:06:40.682575 26877 2767 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 731\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.978E3\nmove_type: '1'\nsale_id: 2020\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-983\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.978E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-983 187.149.77.93 a3e7c8af-0660-402a-a479-6ee2c11ed34d 2020-01-07 21:57:23.202072 26878 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-07 20:20:55.411683000 Z\n- &1 2020-01-07 21:11:47.171742000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-07 22:23:22.351246316 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1274\n- 1275\n 2550 \N 189.186.54.195 2eafa215-2cbe-4753-9a0c-30569c0dfd71 2020-01-07 22:23:22.35811 26879 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PG3Z13xy2RRgymeLZJ9o\n- yWuvEvoQ92XHHnq2-Ziz\n 2551 \N 189.186.54.195 2eafa215-2cbe-4753-9a0c-30569c0dfd71 2020-01-07 22:23:22.373115 26880 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2020-01-01 01:02:29.848124000 Z\n- &1 2020-01-04 21:28:03.063688000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-07 23:41:59.689099473 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124061\n mask_addr: 4294967295\nsign_in_count:\n- 45\n- 46\n 92 \N 187.149.77.93 d5b0127b-acc4-44e7-9e98-84e27cf06f35 2020-01-07 23:41:59.696334 26881 24 User \N \N 24 User \N update ---\nunique_session_id:\n- VQhhYxJ4i1o69-uLafFf\n- _qTqXyRgtKR2d7pU-q8u\n 93 \N 187.149.77.93 d5b0127b-acc4-44e7-9e98-84e27cf06f35 2020-01-07 23:41:59.710136 26882 402 Transfer \N \N 24 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 24\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-07\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.77.93 9966dc5d-7fdb-4763-900c-ceff6b676fa8 2020-01-07 23:42:25.769298 26883 1514 AvailableProduct \N \N 24 User \N create ---\nproduct_id: 868\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.77.93 9966dc5d-7fdb-4763-900c-ceff6b676fa8 2020-01-07 23:42:25.790608 26884 411 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.77.93 fdcfb59b-d2ad-41db-beeb-3aa08fac2a44 2020-01-07 23:42:51.992664 26885 407 Transfer \N \N 24 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-01-07\nuser_id: 24\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.77.93 ba17e232-c4f4-468f-b737-ed299e7bad3a 2020-01-07 23:42:59.456261 26886 407 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-07\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.77.93 fe125bf4-02d4-4d0e-a79d-5915ce658950 2020-01-07 23:43:27.708331 26887 1515 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 413\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.77.93 fe125bf4-02d4-4d0e-a79d-5915ce658950 2020-01-07 23:43:27.727419 26888 2021 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 731\namount: !ruby/object:BigDecimal 18:0.89917E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.469E3\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-01-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-984\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 b37e0c29-000e-4db6-8bc8-e332c73ba667 2020-01-07 23:44:56.058161 26889 1515 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.77.93 b37e0c29-000e-4db6-8bc8-e332c73ba667 2020-01-07 23:44:56.082262 26890 629 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.77.93 b37e0c29-000e-4db6-8bc8-e332c73ba667 2020-01-07 23:44:56.10314 26891 2021 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 e8564790-77b8-4388-91ba-a4e1c4616fda 2020-01-07 23:45:02.356201 26892 2768 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 731\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 2021\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-984\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-984 187.149.77.93 e8564790-77b8-4388-91ba-a4e1c4616fda 2020-01-07 23:45:02.375447 26893 743 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 730\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.17978E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.9E3\ncash_fund: !ruby/object:BigDecimal 18:0.11E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 0c094038-4c0f-4102-bf97-c146b3ce76a9 2020-01-08 02:52:04.82352 26894 730 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 0c094038-4c0f-4102-bf97-c146b3ce76a9 2020-01-08 02:52:04.836926 26895 744 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 731\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1477E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.16E4\ncash_fund: !ruby/object:BigDecimal 18:0.984E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2584E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.77.93 78adb461-e540-4397-bddf-56f90a0bd66a 2020-01-08 02:52:20.871813 26896 731 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.93 78adb461-e540-4397-bddf-56f90a0bd66a 2020-01-08 02:52:20.883399 26897 745 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 729\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.4194E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1448E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1448E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.77.93 b3e9a047-c1be-44f9-ba14-a87b62aea29b 2020-01-08 02:57:35.7059 26898 729 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.93 b3e9a047-c1be-44f9-ba14-a87b62aea29b 2020-01-08 02:57:35.718355 27055 410 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-01-11\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.117.149 79b21dcd-6d5f-416d-b4dd-41b8ec43d84b 2020-01-11 19:06:42.303158 26899 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-07 21:11:47.171742000 Z\n- &1 2020-01-07 22:23:22.351246000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-08 03:14:45.972931827 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945826\n mask_addr: 4294967295\nsign_in_count:\n- 1275\n- 1276\n 2552 \N 200.68.180.98 317e9f57-de46-4031-84ab-98cb5f57a23b 2020-01-08 03:14:45.981148 26900 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yWuvEvoQ92XHHnq2-Ziz\n- sNcLUz9aBNzquCow8rxr\n 2553 \N 200.68.180.98 317e9f57-de46-4031-84ab-98cb5f57a23b 2020-01-08 03:14:46.000543 26901 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-06 17:03:27.192367000 Z\n- &1 2020-01-07 17:14:21.432887000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-08 17:02:58.679065870 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124061\n mask_addr: 4294967295\nsign_in_count:\n- 66\n- 67\n 134 \N 187.149.77.93 f7c02a27-de70-4462-9ec1-a353be5db356 2020-01-08 17:02:58.715212 26902 27 User \N \N 27 User \N update ---\nunique_session_id:\n- aH2yj5yNpysdgTTr_D1P\n- zKn18CGxP__FWMJLL9jZ\n 135 \N 187.149.77.93 f7c02a27-de70-4462-9ec1-a353be5db356 2020-01-08 17:02:58.739843 26903 732 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1448E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1448.0 187.149.77.93 b4bd2ba9-c21b-4aaf-8ff6-60284edc81ca 2020-01-08 17:04:15.979598 26904 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-06 22:01:45.585615000 Z\n- &1 2020-01-07 18:48:55.471491000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-08 19:14:43.785620034 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124061\n mask_addr: 4294967295\nsign_in_count:\n- 433\n- 434\n 871 \N 187.149.77.93 049a28a9-a045-4bff-9b63-a4d3efd2db92 2020-01-08 19:14:43.791836 26905 2 User \N \N 2 User \N update ---\nunique_session_id:\n- cxJTy9-CHrVPzy1aYz5S\n- Sbu97zzpwnxwfPwpMFLW\n 872 \N 187.149.77.93 049a28a9-a045-4bff-9b63-a4d3efd2db92 2020-01-08 19:14:43.80726 26906 733 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.984E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 984.0 187.149.77.93 72a030d9-0d4b-49cb-a2f6-c73ce0ade97e 2020-01-08 19:15:03.17713 26907 276 Customer \N \N 2 User \N create ---\nnick_name: ROSA BELEN RODRIGUEZ\nphone: "(667) 221-9105"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ROSA BELEN RODRIGUEZ fue registrado. 187.149.77.93 e27b3eed-32e1-41e1-a63f-7ab4a73f7caf 2020-01-08 19:16:09.174901 26908 2022 Sale \N \N 2 User \N create ---\ncustomer_id: 276\nuser_id: 2\nopen_cash_register_id: 733\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-01-08\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-985\nexpiration_date: 2020-02-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 ec437ef7-0b8b-4362-9207-0b0dfdeaa87d 2020-01-08 19:16:27.612467 26909 1238 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.77.93 ec437ef7-0b8b-4362-9207-0b0dfdeaa87d 2020-01-08 19:16:27.650145 26910 2769 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 733\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2022\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-985\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-985 187.149.77.93 8feb4bc8-a5c4-41d8-a90f-8ec194ea2424 2020-01-08 19:16:33.979584 26911 2022 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.77.93 2fa4dae8-cada-46c5-9243-e3c6be9f3dc6 2020-01-08 19:16:35.362504 26912 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-07 19:09:16.211910000 Z\n- &1 2020-01-07 20:49:28.792484000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-08 19:30:23.088056380 Z\nsign_in_count:\n- 81\n- 82\n 165 \N 189.186.117.149 3f629a9c-ae0a-4bf0-b833-1286154c8941 2020-01-08 19:30:23.093336 26913 21 User \N \N 21 User \N update ---\nunique_session_id:\n- px3zy4fJs_q9Bd6_52Mq\n- CF1tSSbAmtmtsg_PFvh4\n 166 \N 189.186.117.149 3f629a9c-ae0a-4bf0-b833-1286154c8941 2020-01-08 19:30:23.104788 26914 2023 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 732\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.649E3\ntotal: !ruby/object:BigDecimal 18:0.55E3\nstatus: 0\ndate_sale: 2020-01-08\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-801\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 e7a374d7-8cde-4be0-819c-26c098cdb128 2020-01-08 19:37:16.817687 26915 676 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.77.93 e7a374d7-8cde-4be0-819c-26c098cdb128 2020-01-08 19:37:16.859685 26916 2023 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 dd0c4693-2da0-45bc-9e4c-829df874ae49 2020-01-08 19:38:26.518148 26917 2770 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 732\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.55E3\nmove_type: '1'\nsale_id: 2023\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-801\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.55E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-801 187.149.77.93 dd0c4693-2da0-45bc-9e4c-829df874ae49 2020-01-08 19:38:26.538466 26918 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-07 22:23:22.351246000 Z\n- &1 2020-01-08 03:14:45.972931000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-08 20:22:01.107707150 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945826\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945826\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1276\n- 1277\n 2554 \N 189.186.117.149 4f6fc743-9def-4723-9110-d31b1a226558 2020-01-08 20:22:01.136103 26919 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sNcLUz9aBNzquCow8rxr\n- 1Yd-qPpm_hZc9aWYDGLA\n 2555 \N 189.186.117.149 4f6fc743-9def-4723-9110-d31b1a226558 2020-01-08 20:22:01.160484 27056 409 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-11\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.77.93 c4759bf5-6e05-46e8-81c7-331cb99282af 2020-01-11 19:09:02.313461 26920 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-08 03:14:45.972931000 Z\n- &1 2020-01-08 20:22:01.107707000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-08 21:47:16.740870936 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945826\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1277\n- 1278\n 2556 \N 189.186.54.195 6655d896-7efd-4380-9e6c-80ab230887a4 2020-01-08 21:47:16.748186 26921 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1Yd-qPpm_hZc9aWYDGLA\n- VxfwQA1TmxPht6DQ36Zx\n 2557 \N 189.186.54.195 6655d896-7efd-4380-9e6c-80ab230887a4 2020-01-08 21:47:16.764709 26922 2024 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 733\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.519E3\ntotal: !ruby/object:BigDecimal 18:0.78E3\nstatus: 0\ndate_sale: 2020-01-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-986\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 1862c5d0-511a-4f29-9ed1-3cf39c7cdf03 2020-01-08 22:27:08.39609 26923 1044 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.77.93 1862c5d0-511a-4f29-9ed1-3cf39c7cdf03 2020-01-08 22:27:08.431248 26924 2024 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 dc02b2f0-8415-41b7-8791-a919c17a920f 2020-01-08 22:27:50.629356 26925 2771 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 733\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.78E3\nmove_type: '1'\nsale_id: 2024\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-986\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.78E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-986 187.149.77.93 dc02b2f0-8415-41b7-8791-a919c17a920f 2020-01-08 22:27:50.649021 26926 2025 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 733\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.191E3\ntotal: !ruby/object:BigDecimal 18:0.1008E4\nstatus: 0\ndate_sale: 2020-01-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-987\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 44e1d91b-5d70-49ca-8bd5-bd796542133d 2020-01-08 22:50:00.908129 26927 1238 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.77.93 44e1d91b-5d70-49ca-8bd5-bd796542133d 2020-01-08 22:50:00.933652 26928 2025 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 9b0ceb74-b4ab-4b2a-a253-2ee1069b3421 2020-01-08 22:50:34.75828 26929 2772 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 733\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.1008E4\nmove_type: '1'\nsale_id: 2025\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-987\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: SUHT\ncustomer_account: '2866'\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-987 187.149.77.93 9b0ceb74-b4ab-4b2a-a253-2ee1069b3421 2020-01-08 22:50:34.778929 26930 2026 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 733\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.239E3\ntotal: !ruby/object:BigDecimal 18:0.36E3\nstatus: 0\ndate_sale: 2020-01-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-988\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 5b422956-6e92-4c98-aa80-5b04dca1f959 2020-01-09 00:42:38.207058 26931 1241 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.77.93 5b422956-6e92-4c98-aa80-5b04dca1f959 2020-01-09 00:42:38.232356 26932 2026 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 160aa83c-ea69-4e67-9f56-56af883234d6 2020-01-09 00:42:48.702635 26933 2773 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 733\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.36E3\nmove_type: '1'\nsale_id: 2026\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-988\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.41E3\nchange: !ruby/object:BigDecimal 18:0.5E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-988 187.149.77.93 160aa83c-ea69-4e67-9f56-56af883234d6 2020-01-09 00:42:48.721893 26934 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-08 20:22:01.107707000 Z\n- &1 2020-01-08 21:47:16.740870000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-09 00:48:43.871794986 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1278\n- 1279\n 2558 \N 189.186.117.149 dc37f552-4a07-4295-a9a7-705ff28ccb70 2020-01-09 00:48:43.879239 26935 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VxfwQA1TmxPht6DQ36Zx\n- buXsyLKAcqijLw_BJ1Ss\n 2559 \N 189.186.117.149 dc37f552-4a07-4295-a9a7-705ff28ccb70 2020-01-09 00:48:43.895584 26936 734 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.11E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1100.0 189.186.117.149 a2eeda21-8b7f-44d9-8351-fe0085fa10e5 2020-01-09 01:02:57.797906 26937 2027 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 734\namount: !ruby/object:BigDecimal 18:0.1629E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.6516E3\ntotal: !ruby/object:BigDecimal 18:0.9774E3\nstatus: 0\ndate_sale: 2020-01-08\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-236\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 ede95c90-f362-4955-ba86-aaae0858978b 2020-01-09 01:07:36.613784 26938 1389 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 189.186.117.149 ede95c90-f362-4955-ba86-aaae0858978b 2020-01-09 01:07:36.640222 26939 2027 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 113ed523-dd14-4ef5-b1d2-769dad71c30d 2020-01-09 01:07:43.806259 26940 2774 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 734\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.9774E3\nmove_type: '1'\nsale_id: 2027\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-236\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.226E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-236 189.186.117.149 113ed523-dd14-4ef5-b1d2-769dad71c30d 2020-01-09 01:07:43.825813 26941 746 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 733\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2648E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.18E4\ncash_fund: !ruby/object:BigDecimal 18:0.824E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2624E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.77.93 d3481800-2314-4b5a-b7d7-2933ad844623 2020-01-09 02:10:59.875604 26942 733 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.93 d3481800-2314-4b5a-b7d7-2933ad844623 2020-01-09 02:10:59.890026 26943 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-07 18:48:55.471491000 Z\n- &1 2020-01-08 19:14:43.785620000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-09 02:19:28.501278373 Z\nsign_in_count:\n- 434\n- 435\n 873 \N 187.149.77.93 22d0109c-c304-4b5d-b32b-d94cff6efe7e 2020-01-09 02:19:28.509894 26944 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Sbu97zzpwnxwfPwpMFLW\n- mxs9jGLiaRdgW-bmsL8T\n 874 \N 187.149.77.93 22d0109c-c304-4b5d-b32b-d94cff6efe7e 2020-01-09 02:19:28.527193 26945 747 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 732\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.55E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.798E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1998E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.77.93 2e1799b8-354e-442e-8648-04fa97be6867 2020-01-09 02:24:44.866494 26946 732 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.93 2e1799b8-354e-442e-8648-04fa97be6867 2020-01-09 02:24:44.886677 26947 748 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 732\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.55E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.798E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1998E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.77.93 bd29c026-8b76-49bd-b6f9-dd02b56de93a 2020-01-09 02:24:44.963844 26948 749 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 734\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.9774E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1077E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2077E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 ece54182-f5a4-4f4a-83d1-2e015e35b594 2020-01-09 03:01:34.391253 26949 734 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 ece54182-f5a4-4f4a-83d1-2e015e35b594 2020-01-09 03:01:34.406061 26950 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-07 17:14:21.432887000 Z\n- &1 2020-01-08 17:02:58.679065000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-09 17:14:25.990393430 Z\nsign_in_count:\n- 67\n- 68\n 136 \N 187.149.77.93 641d418a-b53b-46fb-82e7-0f132708acf9 2020-01-09 17:14:26.025357 26951 27 User \N \N 27 User \N update ---\nunique_session_id:\n- zKn18CGxP__FWMJLL9jZ\n- NG8p3GmiXyxkKKY3KpCD\n 137 \N 187.149.77.93 641d418a-b53b-46fb-82e7-0f132708acf9 2020-01-09 17:14:26.048569 26952 735 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.798E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 798.0 187.149.77.93 4afe2647-ce53-4f7f-862a-ebd7ac906faa 2020-01-09 17:15:46.962306 26953 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-08 19:14:43.785620000 Z\n- &1 2020-01-09 02:19:28.501278000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-09 17:30:54.665479159 Z\nsign_in_count:\n- 435\n- 436\n 875 \N 187.149.77.93 4c636f59-fd4c-4d12-a87a-a06f4fee2c7e 2020-01-09 17:30:54.671828 26954 2 User \N \N 2 User \N update ---\nunique_session_id:\n- mxs9jGLiaRdgW-bmsL8T\n- QtCbrSC8h51syFc5FSKX\n 876 \N 187.149.77.93 4c636f59-fd4c-4d12-a87a-a06f4fee2c7e 2020-01-09 17:30:54.687444 26955 736 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.824E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 824.0 187.149.77.93 3ca53815-3c75-406f-84f3-49a181df8109 2020-01-09 17:32:31.428472 26956 2775 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 736\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 1485\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-768 187.149.77.93 caceb56e-1094-4b2f-bfee-8767d6b3b0b2 2020-01-09 17:33:12.952405 26957 2028 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 736\namount: !ruby/object:BigDecimal 18:0.399E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.199E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-01-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-989\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 126a790f-d37f-46e1-bb06-e63e285079b3 2020-01-09 17:49:27.070613 26958 631 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.77.93 126a790f-d37f-46e1-bb06-e63e285079b3 2020-01-09 17:49:27.098474 26959 2028 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 fa8d05c1-1df6-46d9-b455-0d98e2da55ba 2020-01-09 17:49:34.157583 26960 2776 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 736\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2028\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-989\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-989 187.149.77.93 fa8d05c1-1df6-46d9-b455-0d98e2da55ba 2020-01-09 17:49:34.178179 26961 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-08 21:47:16.740870000 Z\n- &1 2020-01-09 00:48:43.871794000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-09 19:49:46.627340838 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1279\n- 1280\n 2560 \N 189.186.54.195 290c198c-3ee6-4cf9-8c2a-ccd1423c9708 2020-01-09 19:49:46.636738 26962 4 User \N \N 4 User \N update ---\nunique_session_id:\n- buXsyLKAcqijLw_BJ1Ss\n- xTn8g2TzHc554gV_FWSt\n 2561 \N 189.186.54.195 290c198c-3ee6-4cf9-8c2a-ccd1423c9708 2020-01-09 19:49:46.657742 27057 1411 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 15 \N 187.149.77.93 c4759bf5-6e05-46e8-81c7-331cb99282af 2020-01-11 19:09:02.329929 26963 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-09 00:48:43.871794000 Z\n- &1 2020-01-09 19:49:46.627340000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-09 22:48:51.351758444 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1280\n- 1281\n 2562 \N 189.186.117.149 18881e34-3417-40e1-a5db-5744ce3c7ea2 2020-01-09 22:48:51.361036 26964 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xTn8g2TzHc554gV_FWSt\n- 5ZXX5RyuX2zVzayvg6Qd\n 2563 \N 189.186.117.149 18881e34-3417-40e1-a5db-5744ce3c7ea2 2020-01-09 22:48:51.38077 26965 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-09 19:49:46.627340000 Z\n- &1 2020-01-09 22:48:51.351758000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-09 23:48:43.112156863 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1281\n- 1282\n 2564 \N 189.186.54.195 7a038a17-1c4d-45f0-895c-2fad46ace533 2020-01-09 23:48:43.121629 26966 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5ZXX5RyuX2zVzayvg6Qd\n- UiDzghZSTYzhfu_PEY4k\n 2565 \N 189.186.54.195 7a038a17-1c4d-45f0-895c-2fad46ace533 2020-01-09 23:48:43.143386 26967 2029 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 735\namount: !ruby/object:BigDecimal 18:0.4577E3\ntax: !ruby/object:BigDecimal 18:0.413E2\ndiscount: !ruby/object:BigDecimal 18:0.1996E3\ntotal: !ruby/object:BigDecimal 18:0.2994E3\nstatus: 0\ndate_sale: 2020-01-09\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-802\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 cd3af281-8064-4e06-a5bc-b3e0399468ba 2020-01-09 23:53:29.695601 26968 404 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 13 \N 187.149.77.93 cd3af281-8064-4e06-a5bc-b3e0399468ba 2020-01-09 23:53:29.725923 26969 2029 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 4dd513a2-627d-4a6b-b8b9-0cdb359ecb49 2020-01-09 23:53:34.693634 26970 2777 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 735\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2994E3\nmove_type: '1'\nsale_id: 2029\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-802\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.6E0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-802 187.149.77.93 4dd513a2-627d-4a6b-b8b9-0cdb359ecb49 2020-01-09 23:53:34.713293 26971 750 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 736\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.35E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1174E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1174E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.77.93 b2f7728e-18cf-4d3d-8f54-aed1dffadbaf 2020-01-10 01:57:18.414842 26972 736 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.93 b2f7728e-18cf-4d3d-8f54-aed1dffadbaf 2020-01-10 01:57:18.428931 26973 751 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 735\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2994E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1097E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1097E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.77.93 0d042b2a-a64f-4341-add6-10ad216d2d3b 2020-01-10 02:01:41.956425 26974 735 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.93 0d042b2a-a64f-4341-add6-10ad216d2d3b 2020-01-10 02:01:41.968601 26975 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-08 17:02:58.679065000 Z\n- &1 2020-01-09 17:14:25.990393000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-10 17:11:40.406678091 Z\nsign_in_count:\n- 68\n- 69\n 138 \N 187.149.77.93 82dd7ccd-f2ee-4d97-9197-ac962054c035 2020-01-10 17:11:40.449008 26976 27 User \N \N 27 User \N update ---\nunique_session_id:\n- NG8p3GmiXyxkKKY3KpCD\n- xaDo64o-ihJ9fPn_xnrX\n 139 \N 187.149.77.93 82dd7ccd-f2ee-4d97-9197-ac962054c035 2020-01-10 17:11:40.472168 26977 737 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1097E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1097.0 187.149.77.93 243210dc-ec7f-40c8-9f94-b2768b2184df 2020-01-10 17:11:58.013167 26978 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-09 02:19:28.501278000 Z\n- &1 2020-01-09 17:30:54.665479000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-10 17:51:32.656368491 Z\nsign_in_count:\n- 436\n- 437\n 877 \N 187.149.77.93 3ce71be6-b54a-4eb6-bad4-ccf0ce455b79 2020-01-10 17:51:32.662471 26979 2 User \N \N 2 User \N update ---\nunique_session_id:\n- QtCbrSC8h51syFc5FSKX\n- Akg98Hp-kxhbvwAmSxzC\n 878 \N 187.149.77.93 3ce71be6-b54a-4eb6-bad4-ccf0ce455b79 2020-01-10 17:51:32.677765 26980 738 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1174E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1174.0 187.149.77.93 a4642646-93f7-4ec4-a34f-0516039ff953 2020-01-10 17:53:34.227074 26981 2778 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 657\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1625\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.77.93 0c3fe42f-150a-4880-9f21-01d7633af488 2020-01-10 17:54:03.967179 26982 2778 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 657\n- 738\n 2 movimiento de efectivo por venta con folio PV2-V-633 187.149.77.93 0c3fe42f-150a-4880-9f21-01d7633af488 2020-01-10 17:54:03.992039 26983 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-09 22:48:51.351758000 Z\n- &1 2020-01-09 23:48:43.112156000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-10 17:54:49.036274673 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1282\n- 1283\n 2566 \N 189.186.54.195 c9399515-f009-46f3-bf8b-a7f2b14e18be 2020-01-10 17:54:49.044662 26984 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UiDzghZSTYzhfu_PEY4k\n- x2ABXh7C_e3fafxAFK4Y\n 2567 \N 189.186.54.195 c9399515-f009-46f3-bf8b-a7f2b14e18be 2020-01-10 17:54:49.062692 27058 410 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-11\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.77.93 517d83b8-4c33-4259-bd7c-f49fc41f4d7b 2020-01-11 19:09:18.959036 26985 2030 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 738\namount: !ruby/object:BigDecimal 18:0.66859E3\ntax: !ruby/object:BigDecimal 18:0.6041E2\ndiscount: !ruby/object:BigDecimal 18:0.291E3\ntotal: !ruby/object:BigDecimal 18:0.438E3\nstatus: 0\ndate_sale: 2020-01-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-990\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 16515b91-cb2a-4b7b-b837-119c49bf9c7a 2020-01-10 18:38:26.857612 26986 1065 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.77.93 16515b91-cb2a-4b7b-b837-119c49bf9c7a 2020-01-10 18:38:26.885254 26987 2030 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 350e4b74-dce9-4c7f-acf8-a7d82dd44808 2020-01-10 18:38:50.999864 26988 2779 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 738\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.438E3\nmove_type: '1'\nsale_id: 2030\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-990\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.438E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-990 187.149.77.93 350e4b74-dce9-4c7f-acf8-a7d82dd44808 2020-01-10 18:38:51.019557 26989 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-09 23:48:43.112156000 Z\n- &1 2020-01-10 17:54:49.036274000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-10 18:58:21.832866107 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1283\n- 1284\n 2568 \N 189.186.117.149 cdeca611-7c8f-435b-ad89-8b7823d36fba 2020-01-10 18:58:21.839146 26990 4 User \N \N 4 User \N update ---\nunique_session_id:\n- x2ABXh7C_e3fafxAFK4Y\n- vRj-zhhxAoRP8iQnExKg\n 2569 \N 189.186.117.149 cdeca611-7c8f-435b-ad89-8b7823d36fba 2020-01-10 18:58:21.858778 26991 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-10 17:54:49.036274000 Z\n- &1 2020-01-10 18:58:21.832866000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-10 21:33:20.480740776 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1284\n- 1285\n 2570 \N 189.186.54.195 06f1b7fd-714e-456e-a77f-9df814cc8a5f 2020-01-10 21:33:20.489435 26992 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vRj-zhhxAoRP8iQnExKg\n- yt1sbZ1SyxxpKzmQjFPk\n 2571 \N 189.186.54.195 06f1b7fd-714e-456e-a77f-9df814cc8a5f 2020-01-10 21:33:20.508008 26993 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-07 20:49:28.792484000 Z\n- &1 2020-01-08 19:30:23.088056000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-10 22:18:16.053781224 Z\nsign_in_count:\n- 82\n- 83\n 167 \N 189.186.117.149 c77398f5-bfc8-496e-a22b-565c5b594e15 2020-01-10 22:18:16.059803 26994 21 User \N \N 21 User \N update ---\nunique_session_id:\n- CF1tSSbAmtmtsg_PFvh4\n- ddPSKaosj89511FntCVL\n 168 \N 189.186.117.149 c77398f5-bfc8-496e-a22b-565c5b594e15 2020-01-10 22:18:16.072471 26995 739 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1077E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1077.0 189.186.117.149 aa94a127-e8cb-43f4-a6ed-924cc4f79926 2020-01-10 22:19:01.97696 26996 2031 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 739\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1497E3\ntotal: !ruby/object:BigDecimal 18:0.3493E3\nstatus: 0\ndate_sale: 2020-01-10\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-237\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 2eba3248-b6c8-48bd-827c-9b219293dd93 2020-01-10 22:22:56.953264 26997 839 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.117.149 2eba3248-b6c8-48bd-827c-9b219293dd93 2020-01-10 22:22:56.978958 26998 2031 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 b6d4c39b-cab0-45e8-a542-96a2770a999d 2020-01-10 22:23:04.919437 26999 2780 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 739\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3493E3\nmove_type: '1'\nsale_id: 2031\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-237\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1507E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-237 189.186.117.149 b6d4c39b-cab0-45e8-a542-96a2770a999d 2020-01-10 22:23:04.939192 27000 2032 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 738\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.559E3\ntotal: !ruby/object:BigDecimal 18:0.84E3\nstatus: 0\ndate_sale: 2020-01-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-991\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 533a7008-1c12-4022-9cac-d628d30d2bd3 2020-01-10 22:57:54.128305 27001 1066 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.77.93 533a7008-1c12-4022-9cac-d628d30d2bd3 2020-01-10 22:57:54.157245 27002 2032 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 eb197094-e130-4f3e-8a7e-18fcc14863a7 2020-01-10 22:57:58.803983 27003 2781 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 738\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.84E3\nmove_type: '1'\nsale_id: 2032\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-991\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.84E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-991 187.149.77.93 eb197094-e130-4f3e-8a7e-18fcc14863a7 2020-01-10 22:57:58.831172 27004 2033 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 737\namount: !ruby/object:BigDecimal 18:0.459E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1836E3\ntotal: !ruby/object:BigDecimal 18:0.2754E3\nstatus: 0\ndate_sale: 2020-01-10\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-803\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 bdb52e85-ee4e-4e6a-aa88-81f4d0075f5d 2020-01-11 00:00:33.125681 27005 1099 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 187.149.77.93 bdb52e85-ee4e-4e6a-aa88-81f4d0075f5d 2020-01-11 00:00:33.152101 27006 2033 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 ad475c85-b449-4897-946f-5e07472cee75 2020-01-11 00:01:26.63098 27059 1411 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.5E1\n 16 \N 187.149.77.93 517d83b8-4c33-4259-bd7c-f49fc41f4d7b 2020-01-11 19:09:18.975006 27007 2782 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 737\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2754E3\nmove_type: '1'\nsale_id: 2033\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-803\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.2246E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-803 187.149.77.93 ad475c85-b449-4897-946f-5e07472cee75 2020-01-11 00:01:26.650692 27008 2034 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 739\namount: !ruby/object:BigDecimal 18:0.1449E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.5796E3\ntotal: !ruby/object:BigDecimal 18:0.8694E3\nstatus: 0\ndate_sale: 2020-01-10\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-238\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 09e367a1-52e8-4a7c-889e-0e5b605e2974 2020-01-11 01:44:20.203057 27009 1474 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.117.149 09e367a1-52e8-4a7c-889e-0e5b605e2974 2020-01-11 01:44:20.232952 27010 2034 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 086df030-a2c6-44a6-bb91-013b2645d36f 2020-01-11 01:44:25.204445 27011 2783 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 739\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8694E3\nmove_type: '1'\nsale_id: 2034\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-238\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.306E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-238 189.186.117.149 086df030-a2c6-44a6-bb91-013b2645d36f 2020-01-11 01:44:25.225219 27012 2035 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 739\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-01-10\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-239\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 5ab9e235-5b42-48e4-8c58-02d2539948b0 2020-01-11 01:45:52.990109 27013 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.66E2\n- !ruby/object:BigDecimal 18:0.65E2\n 13 \N 189.186.117.149 5ab9e235-5b42-48e4-8c58-02d2539948b0 2020-01-11 01:45:53.014306 27014 2035 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 e8cca757-3e80-4ac7-a7e1-26cfab3eaa0e 2020-01-11 01:46:07.831672 27015 2784 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 739\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49E2\nmove_type: '1'\nsale_id: 2035\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-239\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-239 189.186.117.149 e8cca757-3e80-4ac7-a7e1-26cfab3eaa0e 2020-01-11 01:46:07.850942 27016 2036 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 738\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2020-01-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-992\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 687f5416-9911-4e20-847a-9d058ecc5104 2020-01-11 01:54:19.538751 27017 1461 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.77.93 687f5416-9911-4e20-847a-9d058ecc5104 2020-01-11 01:54:19.564705 27018 2036 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 d4919667-d225-4e3e-90ea-74f13f8408cc 2020-01-11 01:54:24.049816 27019 2785 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 738\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 2036\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-992\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-992 187.149.77.93 d4919667-d225-4e3e-90ea-74f13f8408cc 2020-01-11 01:54:24.068331 27020 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2020-01-04 21:28:03.063688000 Z\n- &1 2020-01-07 23:41:59.689099000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-11 01:57:40.656941316 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124061\n mask_addr: 4294967295\nsign_in_count:\n- 46\n- 47\n 94 \N 187.149.77.93 c78b1e1a-c827-4b13-beaf-b5d4ac083135 2020-01-11 01:57:40.66452 27021 24 User \N \N 24 User \N update ---\nunique_session_id:\n- _qTqXyRgtKR2d7pU-q8u\n- nygoR8Q33jh3eDBpR9gr\n 95 \N 187.149.77.93 c78b1e1a-c827-4b13-beaf-b5d4ac083135 2020-01-11 01:57:40.677714 27022 1021 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 187.149.77.93 73e53624-531c-4df3-9180-72e0d14b9c2c 2020-01-11 01:58:31.254683 27023 408 Transfer \N \N 24 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-01-10\nuser_id: 24\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.77.93 d72faea6-0454-428a-bc2c-4d8a7c239b9b 2020-01-11 01:58:39.080453 27024 408 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-10\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.77.93 1495880e-b6d5-4de1-8701-1caff2b2c9cb 2020-01-11 01:58:58.917518 27025 787 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.77.93 1495880e-b6d5-4de1-8701-1caff2b2c9cb 2020-01-11 01:58:58.933223 27026 2037 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 738\namount: !ruby/object:BigDecimal 18:0.419E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.169E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-01-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-993\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 18e5f4de-d61b-4edb-a0f0-16ea0d03b1f1 2020-01-11 01:59:53.266108 27027 787 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.77.93 18e5f4de-d61b-4edb-a0f0-16ea0d03b1f1 2020-01-11 01:59:53.290206 27028 2037 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 76922b95-2913-4a86-a837-84d06514cf4d 2020-01-11 01:59:58.213467 27174 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-11 18:35:33.785164000 Z\n- &1 2020-01-13 17:32:51.208070000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-14 20:18:24.441756584 Z\nsign_in_count:\n- 439\n- 440\n 883 \N 187.149.77.93 2017863d-36aa-4778-a36e-24a3b3be469b 2020-01-14 20:18:24.449311 27029 2786 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 738\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 2037\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-993\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-993 187.149.77.93 76922b95-2913-4a86-a837-84d06514cf4d 2020-01-11 01:59:58.23472 27030 752 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 737\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2754E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1372E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1372E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.77.93 216414a1-9b2f-4c5e-8860-7e39736416bc 2020-01-11 02:01:27.517316 27031 737 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.93 216414a1-9b2f-4c5e-8860-7e39736416bc 2020-01-11 02:01:27.530681 27032 753 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 738\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2628E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.28E4\ncash_fund: !ruby/object:BigDecimal 18:0.1002E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3802E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.77.93 79073780-6d73-4e7a-b303-eefca8c07e48 2020-01-11 02:04:26.668566 27033 738 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.93 79073780-6d73-4e7a-b303-eefca8c07e48 2020-01-11 02:04:26.681093 27034 754 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 739\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.12677E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.1144E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2344E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 903834bd-0f43-4a74-8ee7-68db012dbc27 2020-01-11 03:04:08.308394 27035 739 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 903834bd-0f43-4a74-8ee7-68db012dbc27 2020-01-11 03:04:08.320404 27036 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-08 19:30:23.088056000 Z\n- &1 2020-01-10 22:18:16.053781000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-11 17:57:31.720183834 Z\nsign_in_count:\n- 83\n- 84\n 169 \N 189.186.117.149 b9431f25-b722-4814-b9ac-6fe145ab58dd 2020-01-11 17:57:31.750008 27037 21 User \N \N 21 User \N update ---\nunique_session_id:\n- ddPSKaosj89511FntCVL\n- vLxZ7pKaakvTRKztd4CE\n 170 \N 189.186.117.149 b9431f25-b722-4814-b9ac-6fe145ab58dd 2020-01-11 17:57:31.770328 27038 406 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-11\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.117.149 0b086e57-54b6-4260-924b-eb1de062ae2c 2020-01-11 17:58:00.361165 27039 1036 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.117.149 0b086e57-54b6-4260-924b-eb1de062ae2c 2020-01-11 17:58:00.389159 27040 775 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.117.149 0b086e57-54b6-4260-924b-eb1de062ae2c 2020-01-11 17:58:00.416373 27041 1471 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 5 \N 189.186.117.149 2a5c11bf-4783-4159-81b6-67051ff333a9 2020-01-11 17:58:48.339731 27042 409 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-01-11\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.117.149 09f6d169-d65f-4833-b66e-71f7e796e778 2020-01-11 17:59:24.237233 27043 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-09 17:30:54.665479000 Z\n- &1 2020-01-10 17:51:32.656368000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-11 18:35:33.785164563 Z\nsign_in_count:\n- 437\n- 438\n 879 \N 187.149.77.93 4761c768-bbf9-483b-bd8b-7c6d5e796bc4 2020-01-11 18:35:33.790905 27044 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Akg98Hp-kxhbvwAmSxzC\n- CW8-Gdoje9E5hHLXyXnG\n 880 \N 187.149.77.93 4761c768-bbf9-483b-bd8b-7c6d5e796bc4 2020-01-11 18:35:33.805308 27045 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2020-01-07 23:41:59.689099000 Z\n- &1 2020-01-11 01:57:40.656941000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-11 18:36:25.850814959 Z\nsign_in_count:\n- 47\n- 48\n 96 \N 187.149.77.93 80dd03a3-4798-4a59-850a-950b76643277 2020-01-11 18:36:25.85639 27046 24 User \N \N 24 User \N update ---\nunique_session_id:\n- nygoR8Q33jh3eDBpR9gr\n- M91XfgdFWBkYcQL8hKYi\n 97 \N 187.149.77.93 80dd03a3-4798-4a59-850a-950b76643277 2020-01-11 18:36:25.868042 27047 740 OpenCashRegister \N \N 24 User \N create ---\ncash_register_id: 2\nuser_id: 24\ninitial_cash: !ruby/object:BigDecimal 18:0.1372E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1372.0 187.149.77.93 fbffc8e5-04e6-4238-8153-ab37055b93cb 2020-01-11 18:36:30.067909 27048 741 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1002E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1002.0 187.149.77.93 20d46d28-861c-44d4-b6bf-88dee379fd8a 2020-01-11 18:37:27.44536 27049 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-01-03 20:52:36.739524000 Z\n- &1 2020-01-04 21:33:50.241962000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-11 18:44:15.570392053 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124061\n mask_addr: 4294967295\nsign_in_count:\n- 148\n- 149\n 298 \N 187.149.77.93 2880cfd1-b3aa-4036-8d80-22540d6f1e6c 2020-01-11 18:44:15.577505 27050 1 User \N \N 1 User \N update ---\nunique_session_id:\n- sZtm2Xt1jj84F17y8P8q\n- HwbCh84JuYy_nj1Ri3qk\n 299 \N 187.149.77.93 2880cfd1-b3aa-4036-8d80-22540d6f1e6c 2020-01-11 18:44:15.592347 27051 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-10 18:58:21.832866000 Z\n- &1 2020-01-10 21:33:20.480740000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-11 18:55:00.452176546 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1285\n- 1286\n 2572 \N 189.186.54.195 ea64c08f-4938-4765-a424-9864cdabc84f 2020-01-11 18:55:00.458763 27052 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yt1sbZ1SyxxpKzmQjFPk\n- 2RxrxjQ8A6gD5RZZsdzy\n 2573 \N 189.186.54.195 ea64c08f-4938-4765-a424-9864cdabc84f 2020-01-11 18:55:00.475108 27053 1471 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 189.186.117.149 f6024115-4bb7-45ef-a8de-c7e7fc2425cc 2020-01-11 19:06:37.490272 44784 1517 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1517'\n is_parent: false\n sku: VES-1517\n name: VST-0131\n description: VESTIDO NEGRO CON TIRAS DE BRILLOS EN HOMBRO Y ESPALDA VOILA\n price_base: '440.0'\n price_sale: '1249.0'\n img_product: F2BA2297-90FC-415D-9A20-4C19F6F31B1D.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001517'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 23:25:22.366814'\n updated_at: &12 2020-11-04 00:13:07.417723796 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1517'\n sku: VES-1517\n name: VST-0131\n description: VESTIDO NEGRO CON TIRAS DE BRILLOS EN HOMBRO Y ESPALDA VOILA\n price_base: '440.00'\n price_sale: '1249.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 23:25:22.366814'\n updated_at: '2020-11-03 23:25:22.402691'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001517'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1517'\n type: *3\n value: 1517\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1517\n type: *7\n value: VES-1517\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0131\n type: *8\n value: VST-0131\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO NEGRO CON TIRAS DE BRILLOS EN HOMBRO Y\n ESPALDA VOILA\n type: *6\n value: VESTIDO NEGRO CON TIRAS DE BRILLOS EN HOMBRO Y ESPALDA VOILA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '440.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.44E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1249.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1249E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: F2BA2297-90FC-415D-9A20-4C19F6F31B1D.jpeg\n type: *2\n value: F2BA2297-90FC-415D-9A20-4C19F6F31B1D.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001517'\n type: *2\n value: '0001517'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 23:25:22.366814'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- F2BA2297-90FC-415D-9A20-4C19F6F31B1D.jpeg\n 3 El producto VES-1517 fue modificado. 187.149.136.226 4e87f141-eec5-4de8-b219-7727cead389e 2020-11-04 00:13:07.474073 27060 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-10 21:33:20.480740000 Z\n- &1 2020-01-11 18:55:00.452176000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-11 19:17:43.136741046 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1286\n- 1287\n 2574 \N 189.186.117.149 90854983-2f5e-4781-9e0e-faad07c82282 2020-01-11 19:17:43.143452 27061 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2RxrxjQ8A6gD5RZZsdzy\n- brHB-e4-hU9x51WGLe56\n 2575 \N 189.186.117.149 90854983-2f5e-4781-9e0e-faad07c82282 2020-01-11 19:17:43.15893 27062 411 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-01-11\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.117.149 a2c2b9b0-4c0c-414b-a616-ea069b74667e 2020-01-11 19:22:16.043653 27063 411 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-11\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.77.93 7dd40ccc-8edb-495e-8487-f2f2625776d1 2020-01-11 19:22:53.839673 27064 1241 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.11E2\n 9 \N 187.149.77.93 7dd40ccc-8edb-495e-8487-f2f2625776d1 2020-01-11 19:22:53.854688 27065 2038 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 741\namount: !ruby/object:BigDecimal 18:0.3506E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1518E4\ntotal: !ruby/object:BigDecimal 18:0.1988E4\nstatus: 0\ndate_sale: 2020-01-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-994\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 e326efad-b2b5-44f4-847a-0db9110e9cf6 2020-01-11 19:25:23.383503 27066 1411 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 17 \N 187.149.77.93 e326efad-b2b5-44f4-847a-0db9110e9cf6 2020-01-11 19:25:23.409924 27067 1275 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.77.93 e326efad-b2b5-44f4-847a-0db9110e9cf6 2020-01-11 19:25:23.43198 27068 1406 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.77.93 e326efad-b2b5-44f4-847a-0db9110e9cf6 2020-01-11 19:25:23.452811 27069 1062 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.77.93 e326efad-b2b5-44f4-847a-0db9110e9cf6 2020-01-11 19:25:23.473737 27070 2038 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 21b20509-25d9-4273-a682-bb9a9797b85f 2020-01-11 19:25:28.303333 27071 2787 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 741\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1988E4\nmove_type: '1'\nsale_id: 2038\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-994\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1988E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-994 187.149.77.93 21b20509-25d9-4273-a682-bb9a9797b85f 2020-01-11 19:25:28.326185 27072 220 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-60\namount: !ruby/object:BigDecimal 18:0.126E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.126E4\nobservations: ''\npurchase_date: 2020-01-11\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-60 por $ 1260.0 MXN creada. 189.186.117.149 f6a871a3-ed2c-4068-b335-19d27369b351 2020-01-11 19:48:15.853454 27073 1516 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 871\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 f6a871a3-ed2c-4068-b335-19d27369b351 2020-01-11 19:48:15.895983 27074 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-11 18:55:00.452176000 Z\n- &1 2020-01-11 19:17:43.136741000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-11 20:34:43.373188054 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1287\n- 1288\n 2576 \N 189.186.54.195 d4a7a25a-7bfb-43a4-9672-068e1ce7d2f5 2020-01-11 20:34:43.381838 27075 4 User \N \N 4 User \N update ---\nunique_session_id:\n- brHB-e4-hU9x51WGLe56\n- yNGRsDxWUkLEmVGEwy23\n 2577 \N 189.186.54.195 d4a7a25a-7bfb-43a4-9672-068e1ce7d2f5 2020-01-11 20:34:43.399809 27076 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-09 17:14:25.990393000 Z\n- &1 2020-01-10 17:11:40.406678000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-11 20:38:39.582198021 Z\nsign_in_count:\n- 69\n- 70\n 140 \N 187.149.77.93 36259552-bb95-47cd-a7f1-eb78fde0109e 2020-01-11 20:38:39.587903 27077 27 User \N \N 27 User \N update ---\nunique_session_id:\n- xaDo64o-ihJ9fPn_xnrX\n- 8cshzf4wYN6szuZTQxBw\n 141 \N 187.149.77.93 36259552-bb95-47cd-a7f1-eb78fde0109e 2020-01-11 20:38:39.600518 27078 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-11 19:17:43.136741000 Z\n- &1 2020-01-11 20:34:43.373188000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-11 20:46:36.199405081 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1288\n- 1289\n 2578 \N 189.186.117.149 c011eecf-191e-4b1b-8f11-3c5ac756e9ba 2020-01-11 20:46:36.209794 27079 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yNGRsDxWUkLEmVGEwy23\n- 7dSbPE4HhP9GxRxHCYQ3\n 2579 \N 189.186.117.149 c011eecf-191e-4b1b-8f11-3c5ac756e9ba 2020-01-11 20:46:36.233026 27080 2039 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 741\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2996E3\ntotal: !ruby/object:BigDecimal 18:0.4494E3\nstatus: 0\ndate_sale: 2020-01-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-995\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 c2ba01e5-13ba-47a6-aa70-6f1af4c0e487 2020-01-11 21:07:22.225084 27081 1369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.77.93 c2ba01e5-13ba-47a6-aa70-6f1af4c0e487 2020-01-11 21:07:22.262134 27082 2039 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-995 cancelada. 187.149.77.93 bdef046a-0695-4856-b3bf-f3b022977532 2020-01-11 21:07:29.285727 27083 1369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.77.93 bdef046a-0695-4856-b3bf-f3b022977532 2020-01-11 21:07:29.308212 27084 2040 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 741\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2996E3\ntotal: !ruby/object:BigDecimal 18:0.4494E3\nstatus: 0\ndate_sale: 2020-01-11\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-996\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 42130604-f290-4a4b-a5b0-46ca62e90cf4 2020-01-11 21:07:54.527641 27085 1369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.77.93 42130604-f290-4a4b-a5b0-46ca62e90cf4 2020-01-11 21:07:54.554254 27086 2040 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 c7dd0f29-2582-4c76-860b-c74b0567a514 2020-01-11 21:09:56.108228 27087 2788 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 741\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.4494E3\nmove_type: '1'\nsale_id: 2040\ncardnumber: 2382\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-996\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-996 187.149.77.93 c7dd0f29-2582-4c76-860b-c74b0567a514 2020-01-11 21:09:56.1288 27088 2041 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 741\namount: !ruby/object:BigDecimal 18:0.1549E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.6196E3\ntotal: !ruby/object:BigDecimal 18:0.9294E3\nstatus: 0\ndate_sale: 2020-01-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-997\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 7fda5eae-2b77-40c5-a33d-ae4cce310d0b 2020-01-11 21:28:20.025807 27089 1366 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.77.93 7fda5eae-2b77-40c5-a33d-ae4cce310d0b 2020-01-11 21:28:20.053472 27090 2041 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 86c21bc6-d66e-4538-bf7f-72d94afb5c99 2020-01-11 21:29:38.31167 27091 2789 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 741\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.9294E3\nmove_type: '1'\nsale_id: 2041\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-997\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.706E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-997 187.149.77.93 86c21bc6-d66e-4538-bf7f-72d94afb5c99 2020-01-11 21:29:38.331897 27092 2790 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 669\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 1702\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.77.93 901897ad-d14a-43fe-a546-4b2e1f4f207e 2020-01-11 22:04:11.310524 27093 1702 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.77.93 901897ad-d14a-43fe-a546-4b2e1f4f207e 2020-01-11 22:04:11.332847 27094 2790 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 669\n- 741\n 2 movimiento de efectivo por venta con folio PV1-V-868 187.149.77.93 901897ad-d14a-43fe-a546-4b2e1f4f207e 2020-01-11 22:04:11.346806 27095 2042 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 741\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.279E3\ntotal: !ruby/object:BigDecimal 18:0.42E3\nstatus: 0\ndate_sale: 2020-01-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-998\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 9743b6df-b396-4534-a2c9-85930dd80839 2020-01-11 22:31:42.060737 27096 702 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.77.93 9743b6df-b396-4534-a2c9-85930dd80839 2020-01-11 22:31:42.093026 27097 2042 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 027a4576-4448-4e9d-8dc4-dee40ee646b2 2020-01-11 22:31:55.806038 27098 2791 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 741\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.42E3\nmove_type: '1'\nsale_id: 2042\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-998\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.42E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-998 187.149.77.93 027a4576-4448-4e9d-8dc4-dee40ee646b2 2020-01-11 22:31:55.826003 27099 2043 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 741\namount: !ruby/object:BigDecimal 18:0.949E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.379E3\ntotal: !ruby/object:BigDecimal 18:0.57E3\nstatus: 0\ndate_sale: 2020-01-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-999\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 4d4c565a-587b-4e85-9ce9-445dda365cd3 2020-01-11 23:56:15.270745 27100 1067 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.77.93 4d4c565a-587b-4e85-9ce9-445dda365cd3 2020-01-11 23:56:15.299225 27101 2043 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 d795888d-0f06-49c1-a52c-2e356f4d93ab 2020-01-11 23:56:22.973412 27102 2792 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 741\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.57E3\nmove_type: '1'\nsale_id: 2043\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-999\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.43E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-999 187.149.77.93 d795888d-0f06-49c1-a52c-2e356f4d93ab 2020-01-11 23:56:22.993711 27103 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-11 20:34:43.373188000 Z\n- &1 2020-01-11 20:46:36.199405000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-12 01:13:42.057114884 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1289\n- 1290\n 2580 \N 189.186.54.195 488aab7f-7757-4e94-8756-00c6ef822281 2020-01-12 01:13:42.066186 27104 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7dSbPE4HhP9GxRxHCYQ3\n- QzyVsKsWSyyev4GPEtJD\n 2581 \N 189.186.54.195 488aab7f-7757-4e94-8756-00c6ef822281 2020-01-12 01:13:42.087697 27173 746 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1044E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1044.0 189.186.117.149 9c1857fd-4a0b-452b-8cf4-205d2f5e240d 2020-01-14 18:10:16.643896 27105 262 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 741\nquantity: !ruby/object:BigDecimal 18:0.2478E4\nstatus: 1\nobservations: SUELDO KEYLA $1150 SUELDO ROCIO $1328\nexpense_date: 2020-01-11\nexpense_code: PV1-E-184\n 1 Egreso por 2478.0 registrado 187.149.77.93 fbe17255-ddad-45d6-8e53-a27254fcdc70 2020-01-12 01:44:42.314485 27106 2793 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 741\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2478E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 262\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.77.93 fbe17255-ddad-45d6-8e53-a27254fcdc70 2020-01-12 01:44:42.342794 27107 1393 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.117.149 6621d074-44da-41e7-88fe-491f7c7c43fd 2020-01-12 02:02:33.203568 27108 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-11 20:46:36.199405000 Z\n- &1 2020-01-12 01:13:42.057114000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-12 02:03:04.234760114 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1290\n- 1291\n 2582 \N 189.186.117.149 e76da74e-b11a-45b7-ad00-ee814a4d00b3 2020-01-12 02:03:04.243751 27109 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QzyVsKsWSyyev4GPEtJD\n- sKqos_ThgvyM6PUxTsCM\n 2583 \N 189.186.117.149 e76da74e-b11a-45b7-ad00-ee814a4d00b3 2020-01-12 02:03:04.264293 27110 1437 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.117.149 21cae1e7-7462-4776-b8ca-645ed10c60a7 2020-01-12 02:03:58.92585 27111 412 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-01-11\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.117.149 c58129da-66cf-44d7-978f-85dd270f7056 2020-01-12 02:04:00.987473 27112 755 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 740\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1372E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1372E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.77.93 55273bc5-4f69-49a7-9a70-88c4669472b4 2020-01-12 02:04:16.030486 27113 740 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.93 55273bc5-4f69-49a7-9a70-88c4669472b4 2020-01-12 02:04:16.04502 27114 412 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-11\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.77.93 93f130c1-355c-48de-87de-9b83536cf28e 2020-01-12 02:04:26.360491 27115 1517 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 944\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.77.93 93f130c1-355c-48de-87de-9b83536cf28e 2020-01-12 02:04:26.380153 27116 413 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-01-11\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.117.149 607bd69d-8406-43dd-b0c2-fbea2d715a52 2020-01-12 02:05:51.631135 27117 2044 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 741\namount: !ruby/object:BigDecimal 18:0.1989E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.794E3\ntotal: !ruby/object:BigDecimal 18:0.1195E4\nstatus: 0\ndate_sale: 2020-01-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1000\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 d1255e29-81bb-4ef7-a989-ee9bd3d17be3 2020-01-12 02:17:06.88792 27118 1517 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.77.93 d1255e29-81bb-4ef7-a989-ee9bd3d17be3 2020-01-12 02:17:06.929842 27119 2044 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 3ba76781-626f-4d44-8c46-d81dea969c87 2020-01-12 02:17:11.582733 27120 2794 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 741\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1195E4\nmove_type: '1'\nsale_id: 2044\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1000\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1195E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1000 187.149.77.93 3ba76781-626f-4d44-8c46-d81dea969c87 2020-01-12 02:17:11.605428 27121 2045 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 741\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.479E3\ntotal: !ruby/object:BigDecimal 18:0.72E3\nstatus: 0\ndate_sale: 2020-01-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1001\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 14df38c4-e4b2-46b8-a9af-1726a37ab4c1 2020-01-12 02:17:53.127735 27122 1411 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 18 \N 187.149.77.93 14df38c4-e4b2-46b8-a9af-1726a37ab4c1 2020-01-12 02:17:53.164259 27123 2045 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 8a5461a0-ab6a-45da-9293-98ef2b593f34 2020-01-12 02:18:11.7516 27124 2795 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 741\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.72E3\nmove_type: '1'\nsale_id: 2045\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1001\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.72E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1001 187.149.77.93 8a5461a0-ab6a-45da-9293-98ef2b593f34 2020-01-12 02:18:11.779855 27125 756 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 741\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.66218E4\namount_out: !ruby/object:BigDecimal 18:0.2478E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.4E4\ncash_fund: !ruby/object:BigDecimal 18:0.696E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4696E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.77.93 8211ef20-4f44-4794-ba0b-f7337af067b6 2020-01-12 02:21:02.706098 27126 741 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.93 8211ef20-4f44-4794-ba0b-f7337af067b6 2020-01-12 02:21:02.720685 27127 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-12 01:13:42.057114000 Z\n- &1 2020-01-12 02:03:04.234760000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-12 02:21:14.715283867 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1291\n- 1292\n 2584 \N 189.186.54.195 88a23966-e16c-448b-920b-87d8a013a686 2020-01-12 02:21:14.723939 27128 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sKqos_ThgvyM6PUxTsCM\n- Nu7BA1tnZzat3aREzMcp\n 2585 \N 189.186.54.195 88a23966-e16c-448b-920b-87d8a013a686 2020-01-12 02:21:14.744135 27129 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-12 02:03:04.234760000 Z\n- &1 2020-01-12 02:21:14.715283000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-13 00:48:14.503624798 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1292\n- 1293\n 2586 \N 189.186.54.195 fbcb9a7f-ba7f-4296-869c-9c79dadcb0e1 2020-01-13 00:48:14.541637 27130 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Nu7BA1tnZzat3aREzMcp\n- Nf2aK3AkPDUaWgLKhhAj\n 2587 \N 189.186.54.195 fbcb9a7f-ba7f-4296-869c-9c79dadcb0e1 2020-01-13 00:48:14.576719 27131 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-10 17:11:40.406678000 Z\n- &1 2020-01-11 20:38:39.582198000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-13 17:01:47.812777138 Z\nsign_in_count:\n- 70\n- 71\n 142 \N 187.149.77.93 98f18a85-83ca-4647-a296-7c779bf5575c 2020-01-13 17:01:47.848792 27132 27 User \N \N 27 User \N update ---\nunique_session_id:\n- 8cshzf4wYN6szuZTQxBw\n- 4i9XzLM5xibANNNerhTa\n 143 \N 187.149.77.93 98f18a85-83ca-4647-a296-7c779bf5575c 2020-01-13 17:01:47.873849 27133 742 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1372E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1372.0 187.149.77.93 3415fc44-cbae-438a-a411-d56deae0602c 2020-01-13 17:02:03.913111 27134 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-10 17:51:32.656368000 Z\n- &1 2020-01-11 18:35:33.785164000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-13 17:32:51.208070063 Z\nsign_in_count:\n- 438\n- 439\n 881 \N 187.149.77.93 04042bd7-23c4-4cd5-a1de-251b1e112a00 2020-01-13 17:32:51.214008 27135 2 User \N \N 2 User \N update ---\nunique_session_id:\n- CW8-Gdoje9E5hHLXyXnG\n- VejBXr4yZas5Nfx-zFdE\n 882 \N 187.149.77.93 04042bd7-23c4-4cd5-a1de-251b1e112a00 2020-01-13 17:32:51.229235 27136 743 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.696E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 696.0 187.149.77.93 85728662-a48c-4186-8cf5-913c7395b97d 2020-01-13 17:33:46.807675 27137 2046 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 743\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.479E3\ntotal: !ruby/object:BigDecimal 18:0.72E3\nstatus: 0\ndate_sale: 2020-01-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1002\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 0f3aa73e-9f42-44b3-a0d3-d8689c64f20e 2020-01-13 17:34:31.277266 27138 1411 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 19 \N 187.149.77.93 0f3aa73e-9f42-44b3-a0d3-d8689c64f20e 2020-01-13 17:34:31.303741 27139 2046 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 1b8a0782-7eea-4fba-8557-c924d5bed15e 2020-01-13 17:34:43.791424 27140 2796 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 743\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.72E3\nmove_type: '1'\nsale_id: 2046\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1002\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.72E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1002 187.149.77.93 1b8a0782-7eea-4fba-8557-c924d5bed15e 2020-01-13 17:34:43.813997 27141 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-12 02:21:14.715283000 Z\n- &1 2020-01-13 00:48:14.503624000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-13 18:07:32.003897118 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1293\n- 1294\n 2588 \N 189.186.117.149 3f3630ee-dda6-4b1b-9f6b-dba514ac5c1d 2020-01-13 18:07:32.013458 27142 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Nf2aK3AkPDUaWgLKhhAj\n- M4yFc1-SUTzhzgMmKhub\n 2589 \N 189.186.117.149 3f3630ee-dda6-4b1b-9f6b-dba514ac5c1d 2020-01-13 18:07:32.034709 27143 2047 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 743\namount: !ruby/object:BigDecimal 18:0.1224E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.599E3\ntotal: !ruby/object:BigDecimal 18:0.625E3\nstatus: 0\ndate_sale: 2020-01-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1003\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 7cc074cc-7055-4002-8412-ce6f3955f8ef 2020-01-13 23:11:32.613275 27144 1444 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.77.93 7cc074cc-7055-4002-8412-ce6f3955f8ef 2020-01-13 23:11:32.654482 27145 79 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.77.93 7cc074cc-7055-4002-8412-ce6f3955f8ef 2020-01-13 23:11:32.684919 27146 2047 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 3e095034-dfda-4d52-a6d0-fa6e2453f029 2020-01-13 23:11:39.663114 27147 2797 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 743\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.625E3\nmove_type: '1'\nsale_id: 2047\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1003\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.625E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1003 187.149.77.93 3e095034-dfda-4d52-a6d0-fa6e2453f029 2020-01-13 23:11:39.683925 27148 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-13 00:48:14.503624000 Z\n- &1 2020-01-13 18:07:32.003897000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-13 23:44:23.437224907 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1294\n- 1295\n 2590 \N 189.186.54.195 95fb9e1c-b35f-450f-965c-b69744431c2d 2020-01-13 23:44:23.447229 27149 4 User \N \N 4 User \N update ---\nunique_session_id:\n- M4yFc1-SUTzhzgMmKhub\n- gWZbmo3WKXUmsN6rDUab\n 2591 \N 189.186.54.195 95fb9e1c-b35f-450f-965c-b69744431c2d 2020-01-13 23:44:23.469321 27150 2048 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 743\namount: !ruby/object:BigDecimal 18:0.3178E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1549E4\ntotal: !ruby/object:BigDecimal 18:0.1629E4\nstatus: 0\ndate_sale: 2020-01-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1004\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 7d198b71-76fb-4233-bd67-6af9a200f5d6 2020-01-13 23:48:22.447385 27151 1248 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.77.93 7d198b71-76fb-4233-bd67-6af9a200f5d6 2020-01-13 23:48:22.475019 27152 1366 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.77.93 7d198b71-76fb-4233-bd67-6af9a200f5d6 2020-01-13 23:48:22.497572 27153 2048 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 b4cd2cd2-e905-4576-a0f4-d8030194bbd5 2020-01-13 23:48:33.814118 27154 2798 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 743\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1629E4\nmove_type: '1'\nsale_id: 2048\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1004\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1629E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1004 187.149.77.93 b4cd2cd2-e905-4576-a0f4-d8030194bbd5 2020-01-13 23:48:33.834676 27155 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-10 22:18:16.053781000 Z\n- &1 2020-01-11 17:57:31.720183000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-14 01:07:19.303996524 Z\nsign_in_count:\n- 84\n- 85\n 171 \N 189.186.117.149 bafa6f88-4d71-4fba-8c69-9bbed5d6598b 2020-01-14 01:07:19.312529 27156 21 User \N \N 21 User \N update ---\nunique_session_id:\n- vLxZ7pKaakvTRKztd4CE\n- sRakSQk3xmd-hso5j6sf\n 172 \N 189.186.117.149 bafa6f88-4d71-4fba-8c69-9bbed5d6598b 2020-01-14 01:07:19.330248 27157 757 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 743\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2974E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.67E3\nphysical_cash: !ruby/object:BigDecimal 18:0.367E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.77.93 ed412509-d39e-441a-b437-4e928183e652 2020-01-14 01:36:54.867766 27158 743 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.93 ed412509-d39e-441a-b437-4e928183e652 2020-01-14 01:36:54.881155 27159 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-13 18:07:32.003897000 Z\n- &1 2020-01-13 23:44:23.437224000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-14 01:46:42.190286057 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1295\n- 1296\n 2592 \N 189.186.117.149 141a139b-ff61-41c6-9b0d-da1195f0a096 2020-01-14 01:46:42.200084 27160 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gWZbmo3WKXUmsN6rDUab\n- UEmj6J82-sJzHTBxRVny\n 2593 \N 189.186.117.149 141a139b-ff61-41c6-9b0d-da1195f0a096 2020-01-14 01:46:42.222777 27161 758 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 742\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1372E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1372E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.77.93 87833628-81fd-451f-95c7-ca9d193a142c 2020-01-14 02:03:45.740323 27162 742 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.93 87833628-81fd-451f-95c7-ca9d193a142c 2020-01-14 02:03:45.757202 27163 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-13 23:44:23.437224000 Z\n- &1 2020-01-14 01:46:42.190286000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-14 02:53:30.985390856 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938458\n mask_addr: 4294967295\nsign_in_count:\n- 1296\n- 1297\n 2594 \N 200.68.151.154 c3522597-82ed-44ef-a4a9-2aa33b825f67 2020-01-14 02:53:31.000444 27164 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UEmj6J82-sJzHTBxRVny\n- FyQtKTBaky5Hqf7v9fmd\n 2595 \N 200.68.151.154 c3522597-82ed-44ef-a4a9-2aa33b825f67 2020-01-14 02:53:31.029507 27165 744 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1144E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1144.0 189.186.117.149 325f0c1c-a8d3-484a-9be7-7becf4380c36 2020-01-14 02:55:37.777246 27166 759 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 744\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1044E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1044E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 78680d54-b775-491e-b7c0-37a7c447c6e4 2020-01-14 02:56:48.641269 27167 744 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 78680d54-b775-491e-b7c0-37a7c447c6e4 2020-01-14 02:56:48.652673 27168 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-11 20:38:39.582198000 Z\n- &1 2020-01-13 17:01:47.812777000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-14 17:00:32.404072982 Z\nsign_in_count:\n- 71\n- 72\n 144 \N 187.149.77.93 b26fa5b7-449e-4d35-8e73-d8a02055d796 2020-01-14 17:00:32.448753 27169 27 User \N \N 27 User \N update ---\nunique_session_id:\n- 4i9XzLM5xibANNNerhTa\n- mNBzdqXRs4h9xYq31zdf\n 145 \N 187.149.77.93 b26fa5b7-449e-4d35-8e73-d8a02055d796 2020-01-14 17:00:32.470471 27170 745 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1372E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1372.0 187.149.77.93 b3be63f2-0001-4c60-9754-3567db15d5f7 2020-01-14 17:00:49.230884 27171 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-11 17:57:31.720183000 Z\n- &1 2020-01-14 01:07:19.303996000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-14 17:13:02.470177609 Z\nsign_in_count:\n- 85\n- 86\n 173 \N 189.186.117.149 0c756f17-d1e8-49e1-a96e-76db00c2db04 2020-01-14 17:13:02.475799 27172 21 User \N \N 21 User \N update ---\nunique_session_id:\n- sRakSQk3xmd-hso5j6sf\n- z5rAi4ntwACSxFw-BzDi\n 174 \N 189.186.117.149 0c756f17-d1e8-49e1-a96e-76db00c2db04 2020-01-14 17:13:02.487946 27175 2 User \N \N 2 User \N update ---\nunique_session_id:\n- VejBXr4yZas5Nfx-zFdE\n- 2y3edofboqVmcU4d24H8\n 884 \N 187.149.77.93 2017863d-36aa-4778-a36e-24a3b3be469b 2020-01-14 20:18:24.471141 27176 747 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.67E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 670.0 187.149.77.93 a70ba7aa-9267-4655-9f36-0d0239eea36c 2020-01-14 20:19:38.45102 27177 2049 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 747\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.499E3\ntotal: !ruby/object:BigDecimal 18:0.7E3\nstatus: 0\ndate_sale: 2020-01-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1005\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 7a3803c5-de2f-4ca3-9d79-1b11dffef735 2020-01-14 20:20:21.138925 27178 1411 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 20 \N 187.149.77.93 7a3803c5-de2f-4ca3-9d79-1b11dffef735 2020-01-14 20:20:21.166724 27179 2049 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 6d141313-b1d6-4e55-9fb2-2129a0ef2a82 2020-01-14 20:20:25.662025 27180 2799 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 747\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.7E3\nmove_type: '1'\nsale_id: 2049\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1005\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1005 187.149.77.93 6d141313-b1d6-4e55-9fb2-2129a0ef2a82 2020-01-14 20:20:25.685437 27181 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-14 01:46:42.190286000 Z\n- &1 2020-01-14 02:53:30.985390000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-14 20:50:55.959353544 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938458\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938458\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1297\n- 1298\n 2596 \N 189.186.54.195 000c4854-23da-4f33-8106-7c1002afd35d 2020-01-14 20:50:55.968923 27182 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FyQtKTBaky5Hqf7v9fmd\n- gEDsR2MsqV79aU-GYgCh\n 2597 \N 189.186.54.195 000c4854-23da-4f33-8106-7c1002afd35d 2020-01-14 20:50:55.990102 27183 23 User \N \N 21 User \N update ---\nstatus:\n- active\n- 2\n 180 El usuario MARICRUZ fue desactivado. 189.186.117.149 cab1ccae-e8df-4579-87ab-cf6816fca841 2020-01-14 22:43:36.870478 27184 2050 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 746\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-01-14\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-240\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 b6f8cf85-b399-42e7-a66e-c6c12d1a81b9 2020-01-15 01:34:28.805629 27185 1426 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.117.149 b6f8cf85-b399-42e7-a66e-c6c12d1a81b9 2020-01-15 01:34:28.840364 27186 2050 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 f75078db-7ed0-44b2-b53a-cbbac74ccc55 2020-01-15 01:34:36.754835 27187 2800 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 746\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 2050\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-240\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-240 189.186.117.149 f75078db-7ed0-44b2-b53a-cbbac74ccc55 2020-01-15 01:34:36.7784 27188 760 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 745\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1372E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1372E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.77.93 7db40d48-3639-4f54-9889-7b96405c8ff1 2020-01-15 02:02:51.556943 27189 745 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.93 7db40d48-3639-4f54-9889-7b96405c8ff1 2020-01-15 02:02:51.573884 27190 761 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 747\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.7E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.67E3\nphysical_cash: !ruby/object:BigDecimal 18:0.137E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.77.93 fc69381e-5781-4964-95a1-0efdf9d20bea 2020-01-15 02:03:13.278214 27191 747 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.93 fc69381e-5781-4964-95a1-0efdf9d20bea 2020-01-15 02:03:13.292619 27192 762 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 746\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1599E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.1143E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2643E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 7cd50348-3dc3-4a67-81dc-5f5d6e885a3d 2020-01-15 02:58:12.687694 27193 746 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 7cd50348-3dc3-4a67-81dc-5f5d6e885a3d 2020-01-15 02:58:12.701918 27194 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-13 17:01:47.812777000 Z\n- &1 2020-01-14 17:00:32.404072000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-15 17:19:02.141129945 Z\nsign_in_count:\n- 72\n- 73\n 146 \N 187.149.77.93 f4751a32-6b4d-48ce-8a48-bc2ec6e21b2f 2020-01-15 17:19:02.176099 27195 27 User \N \N 27 User \N update ---\nunique_session_id:\n- mNBzdqXRs4h9xYq31zdf\n- _3XzUyGSX92iXZW7SWoi\n 147 \N 187.149.77.93 f4751a32-6b4d-48ce-8a48-bc2ec6e21b2f 2020-01-15 17:19:02.199573 27196 748 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1372E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1372.0 187.149.77.93 e9f95677-0f34-400a-8deb-c9c03b3d33f0 2020-01-15 17:20:30.11203 27197 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-14 01:07:19.303996000 Z\n- &1 2020-01-14 17:13:02.470177000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-15 17:46:33.989113783 Z\nsign_in_count:\n- 86\n- 87\n 175 \N 189.186.117.149 c37b60b0-f105-422d-8d59-6a3d9a775a0e 2020-01-15 17:46:33.995647 27198 21 User \N \N 21 User \N update ---\nunique_session_id:\n- z5rAi4ntwACSxFw-BzDi\n- BsYC2VFMgzVC1MkqY5g_\n 176 \N 189.186.117.149 c37b60b0-f105-422d-8d59-6a3d9a775a0e 2020-01-15 17:46:34.009361 27504 27 User \N \N 27 User \N update ---\nunique_session_id:\n- NK2mNhTWyRZDUzRbsin4\n- xomQhWMx4NyaqJi5abZ7\n 161 \N 187.149.51.184 e45b9140-ac56-4194-9316-a5fd4850f8e1 2020-01-21 23:11:31.620984 27199 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-14 02:53:30.985390000 Z\n- &1 2020-01-14 20:50:55.959353000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-15 17:46:58.010314280 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938458\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1298\n- 1299\n 2598 \N 189.186.54.195 2ca171ca-18e3-4b94-a3a3-358bd8eeea3f 2020-01-15 17:46:58.020954 27200 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gEDsR2MsqV79aU-GYgCh\n- reeUjaLfsJZyf7vzzREt\n 2599 \N 189.186.54.195 2ca171ca-18e3-4b94-a3a3-358bd8eeea3f 2020-01-15 17:46:58.046285 27201 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-13 17:32:51.208070000 Z\n- &1 2020-01-14 20:18:24.441756000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-15 17:51:39.529655132 Z\nsign_in_count:\n- 440\n- 441\n 885 \N 187.149.77.93 d6afbbae-7cca-4942-8f19-968c6e46e523 2020-01-15 17:51:39.535428 27202 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 2y3edofboqVmcU4d24H8\n- ysmNbwWA8-YVNUVqz_Yi\n 886 \N 187.149.77.93 d6afbbae-7cca-4942-8f19-968c6e46e523 2020-01-15 17:51:39.549067 27203 749 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.67E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 670.0 187.149.77.93 06a7028c-3216-45bf-a5e2-dc5735509763 2020-01-15 17:52:30.673182 27204 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2020-01-11 01:57:40.656941000 Z\n- &1 2020-01-11 18:36:25.850814000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-15 18:03:56.776176786 Z\nsign_in_count:\n- 48\n- 49\n 98 \N 187.149.77.93 c45cb15c-76e1-4e9b-8f07-316871b6ea21 2020-01-15 18:03:56.782224 27205 24 User \N \N 24 User \N update ---\nunique_session_id:\n- M91XfgdFWBkYcQL8hKYi\n- pDeHbSxyFizxRodxKsCW\n 99 \N 187.149.77.93 c45cb15c-76e1-4e9b-8f07-316871b6ea21 2020-01-15 18:03:56.794635 27206 1278 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.77.93 f3665613-6e13-4569-af8b-c823f301b9b4 2020-01-15 18:04:48.508929 27207 414 Transfer \N \N 24 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-01-15\nuser_id: 24\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.77.93 4efa1bce-f106-4c40-9a9d-89fde523e326 2020-01-15 18:04:54.87804 27208 413 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-15\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.77.93 eb08710c-ec4c-4c48-839f-200c9177b3ff 2020-01-15 18:05:39.449131 27209 1517 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.77.93 eb08710c-ec4c-4c48-839f-200c9177b3ff 2020-01-15 18:05:39.466488 27210 414 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-15\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.77.93 7b3f6351-505f-4b07-ac00-9ec858053ade 2020-01-15 18:05:55.443751 27211 1477 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.77.93 7b3f6351-505f-4b07-ac00-9ec858053ade 2020-01-15 18:05:55.459826 27212 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-01-04 21:33:50.241962000 Z\n- &1 2020-01-11 18:44:15.570392000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-15 18:08:05.631354620 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124061\n mask_addr: 4294967295\nsign_in_count:\n- 149\n- 150\n 300 \N 187.149.77.93 2b27c702-eccd-4af1-be95-6de5535371e4 2020-01-15 18:08:05.638565 27213 1 User \N \N 1 User \N update ---\nunique_session_id:\n- HwbCh84JuYy_nj1Ri3qk\n- 2LxLr3g8oHysshzG1vCr\n 301 \N 187.149.77.93 2b27c702-eccd-4af1-be95-6de5535371e4 2020-01-15 18:08:05.671674 27214 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-14 20:50:55.959353000 Z\n- &1 2020-01-15 17:46:58.010314000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-15 18:34:22.051085396 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1299\n- 1300\n 2600 \N 189.186.117.149 55b33348-6886-479f-afd3-5340bd3af468 2020-01-15 18:34:22.058325 27215 4 User \N \N 4 User \N update ---\nunique_session_id:\n- reeUjaLfsJZyf7vzzREt\n- Bi-F4scE_ijXZ3aSgHtD\n 2601 \N 189.186.117.149 55b33348-6886-479f-afd3-5340bd3af468 2020-01-15 18:34:22.077689 27216 2051 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 749\namount: !ruby/object:BigDecimal 18:0.2968E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1299E4\ntotal: !ruby/object:BigDecimal 18:0.1669E4\nstatus: 0\ndate_sale: 2020-01-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1006\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 f16a95bd-eb8e-454a-8d69-c84ec9600e75 2020-01-15 18:46:45.96222 27217 1247 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.77.93 f16a95bd-eb8e-454a-8d69-c84ec9600e75 2020-01-15 18:46:45.988964 27218 1477 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.77.93 f16a95bd-eb8e-454a-8d69-c84ec9600e75 2020-01-15 18:46:46.012225 27219 2051 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 4db98400-3cc5-4543-b0e6-951a8fb38e32 2020-01-15 18:46:51.20005 27220 2801 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 749\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1669E4\nmove_type: '1'\nsale_id: 2051\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1006\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1669E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1006 187.149.77.93 4db98400-3cc5-4543-b0e6-951a8fb38e32 2020-01-15 18:46:51.22291 27221 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-15 17:46:58.010314000 Z\n- &1 2020-01-15 18:34:22.051085000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-15 20:33:47.949092980 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1300\n- 1301\n 2602 \N 189.186.54.195 7ab8061e-bfd8-4989-99a7-4b8dda8c79a7 2020-01-15 20:33:47.960666 27222 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Bi-F4scE_ijXZ3aSgHtD\n- 8GFwrT8ryyuwS7NsUeFi\n 2603 \N 189.186.54.195 7ab8061e-bfd8-4989-99a7-4b8dda8c79a7 2020-01-15 20:33:47.98101 27269 753 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1013E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1013.0 189.186.117.149 42a10e67-d12a-46ba-8582-c64fc7df108a 2020-01-16 19:11:00.147805 27223 2802 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 690\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 1795\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CREDITO SAM\n 1 \N 187.149.77.93 15a3a822-c1ed-4512-97bf-87d2343a5f0b 2020-01-15 20:46:41.258036 27224 1795 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.77.93 15a3a822-c1ed-4512-97bf-87d2343a5f0b 2020-01-15 20:46:41.278754 27225 2802 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 690\n- 749\n 2 movimiento de efectivo por venta con folio PV1-V-901 187.149.77.93 15a3a822-c1ed-4512-97bf-87d2343a5f0b 2020-01-15 20:46:41.290314 27226 2803 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 624\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 1542\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.77.93 7fb1ed06-4be2-4285-96a2-ad792aff0217 2020-01-15 21:07:08.684774 27227 1542 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.77.93 7fb1ed06-4be2-4285-96a2-ad792aff0217 2020-01-15 21:07:08.707506 27228 2803 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 624\n- 749\n 2 movimiento de efectivo por venta con folio PV3-V-141 187.149.77.93 7fb1ed06-4be2-4285-96a2-ad792aff0217 2020-01-15 21:07:08.722754 27229 750 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1143E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1143.0 189.186.117.149 e1277627-8c29-4630-b1a4-bea00b7f4a76 2020-01-16 00:18:50.092679 27230 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-15 18:34:22.051085000 Z\n- &1 2020-01-15 20:33:47.949092000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-16 01:23:10.835598203 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1301\n- 1302\n 2604 \N 189.186.117.149 d3fcf99a-ea10-4319-876d-19b59dfe5325 2020-01-16 01:23:10.860139 27231 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8GFwrT8ryyuwS7NsUeFi\n- 9DEVNt46f_HPyfNtujnq\n 2605 \N 189.186.117.149 d3fcf99a-ea10-4319-876d-19b59dfe5325 2020-01-16 01:23:10.889232 27232 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-15 20:33:47.949092000 Z\n- &1 2020-01-16 01:23:10.835598000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-16 02:00:55.153932031 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1302\n- 1303\n 2606 \N 189.186.54.195 485227b6-076d-442d-b087-887cf2242bab 2020-01-16 02:00:55.164525 27233 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9DEVNt46f_HPyfNtujnq\n- ZwziYfubSNss-4BHpjNr\n 2607 \N 189.186.54.195 485227b6-076d-442d-b087-887cf2242bab 2020-01-16 02:00:55.187387 27234 763 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 749\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2968E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.938E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2938E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.77.93 29d4ae40-376b-4441-baf4-25427afac8f1 2020-01-16 02:04:20.100099 27235 749 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.93 29d4ae40-376b-4441-baf4-25427afac8f1 2020-01-16 02:04:20.115085 27236 2052 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 748\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.5196E3\ntotal: !ruby/object:BigDecimal 18:0.7794E3\nstatus: 0\ndate_sale: 2020-01-15\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-804\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 64989393-eef2-4fbc-830d-64d5519c4119 2020-01-16 02:05:08.652763 27237 1289 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.77.93 64989393-eef2-4fbc-830d-64d5519c4119 2020-01-16 02:05:08.685483 27238 2052 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 048e316c-b28a-4104-969e-da7600628561 2020-01-16 02:06:38.685455 27239 2804 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 748\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7794E3\nmove_type: '1'\nsale_id: 2052\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-804\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.2206E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-804 187.149.77.93 048e316c-b28a-4104-969e-da7600628561 2020-01-16 02:06:38.717688 27240 764 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 748\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.7794E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1151E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2151E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.77.93 d2628a4d-26a2-492b-8123-edec1ee02ce3 2020-01-16 02:08:07.235885 27241 748 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.93 d2628a4d-26a2-492b-8123-edec1ee02ce3 2020-01-16 02:08:07.250336 27242 263 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 750\nquantity: !ruby/object:BigDecimal 18:0.13E3\nstatus: 1\nobservations: "PAGO DE IMPRESIONES $10\\r\\nGASTOS $120"\nexpense_date: 2020-01-15\nexpense_code: PV3-E-24\n 1 Egreso por 130.0 registrado 189.186.117.149 c31dbb8b-4c49-4836-8169-e647db584b7b 2020-01-16 02:46:31.88208 27243 2805 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 750\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.13E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 263\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.117.149 c31dbb8b-4c49-4836-8169-e647db584b7b 2020-01-16 02:46:31.901544 27340 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CS3_dwxXxDxMrhzh_gHC\n- FGrHL2uyixZjHGbTqFuT\n 2615 \N 189.186.54.195 03ef6254-5e75-43d3-aeb9-294b1b6e11f9 2020-01-17 21:36:46.683045 27434 759 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 c9f5b744-4744-469c-b30c-b15d342ece3e 2020-01-19 02:58:04.903985 27244 765 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 750\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.13E3\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1013E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1013E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 a1c02c30-1696-4a58-81f7-fecbff19c1a3 2020-01-16 02:57:24.135853 27245 750 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 a1c02c30-1696-4a58-81f7-fecbff19c1a3 2020-01-16 02:57:24.148839 27246 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-16 01:23:10.835598000 Z\n- &1 2020-01-16 02:00:55.153932000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-16 02:58:25.401568645 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946276\n mask_addr: 4294967295\nsign_in_count:\n- 1303\n- 1304\n 2608 \N 200.68.182.36 7d48adfc-1015-4c54-9d4d-86376b044431 2020-01-16 02:58:25.409435 27247 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZwziYfubSNss-4BHpjNr\n- Z5k3vfDzbyyBWbj3TYio\n 2609 \N 200.68.182.36 7d48adfc-1015-4c54-9d4d-86376b044431 2020-01-16 02:58:25.428598 27248 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-16 02:00:55.153932000 Z\n- &1 2020-01-16 02:58:25.401568000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-16 07:02:21.145750493 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946276\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946276\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1304\n- 1305\n 2610 \N 189.186.54.195 9736dec7-15af-43d0-899c-53720528c10a 2020-01-16 07:02:21.159177 27249 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Z5k3vfDzbyyBWbj3TYio\n- iDKkzyKv2WWrzLXsybbm\n 2611 \N 189.186.54.195 9736dec7-15af-43d0-899c-53720528c10a 2020-01-16 07:02:21.186414 27250 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-16 02:58:25.401568000 Z\n- &1 2020-01-16 07:02:21.145750000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-16 12:14:44.316053600 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946276\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1305\n- 1306\n 2612 \N 189.186.54.195 0c6b856d-c4a0-4533-9bf4-4aad291908c8 2020-01-16 12:14:44.329767 27251 4 User \N \N 4 User \N update ---\nunique_session_id:\n- iDKkzyKv2WWrzLXsybbm\n- CS3_dwxXxDxMrhzh_gHC\n 2613 \N 189.186.54.195 0c6b856d-c4a0-4533-9bf4-4aad291908c8 2020-01-16 12:14:44.358833 27252 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-14 17:00:32.404072000 Z\n- &1 2020-01-15 17:19:02.141129000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-16 17:32:30.485377544 Z\nsign_in_count:\n- 73\n- 74\n 148 \N 187.149.77.93 b077316a-f55b-4822-b290-226997c599e2 2020-01-16 17:32:30.518868 27253 27 User \N \N 27 User \N update ---\nunique_session_id:\n- _3XzUyGSX92iXZW7SWoi\n- FMqCU9Qm_KudgKxAcxea\n 149 \N 187.149.77.93 b077316a-f55b-4822-b290-226997c599e2 2020-01-16 17:32:30.54214 27254 751 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1151E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1151.0 187.149.77.93 bafef5b6-165a-4c85-aa15-5e4e5eae59de 2020-01-16 17:32:52.968303 27255 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-14 20:18:24.441756000 Z\n- &1 2020-01-15 17:51:39.529655000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-16 17:56:22.215040101 Z\nsign_in_count:\n- 441\n- 442\n 887 \N 187.149.77.93 019dd14e-085e-442f-9e31-7eb881fc7753 2020-01-16 17:56:22.23281 27256 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ysmNbwWA8-YVNUVqz_Yi\n- sivr4oxwpuLZeDe3nxz9\n 888 \N 187.149.77.93 019dd14e-085e-442f-9e31-7eb881fc7753 2020-01-16 17:56:22.250929 27257 752 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.938E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 938.0 187.149.77.93 eccc9f08-2b88-4f5b-a149-4144c27ccb86 2020-01-16 17:57:26.887975 27258 2806 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 397\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.29901E3\nmove_type: '1'\nsale_id: 1017\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.29901E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.77.93 d44c4eb8-1502-4525-b58b-43a32629f9bc 2020-01-16 17:58:22.069814 27259 1017 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.77.93 d44c4eb8-1502-4525-b58b-43a32629f9bc 2020-01-16 17:58:22.090281 27260 2806 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 397\n- 752\n 2 movimiento de efectivo por venta con folio PV3-V-7 187.149.77.93 d44c4eb8-1502-4525-b58b-43a32629f9bc 2020-01-16 17:58:22.10352 27261 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-01-11 18:44:15.570392000 Z\n- &1 2020-01-15 18:08:05.631354000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-16 18:06:52.395880925 Z\nsign_in_count:\n- 150\n- 151\n 302 \N 187.149.77.93 89fc33cb-11fb-4441-9d30-113bd6fc29c2 2020-01-16 18:06:52.402475 27262 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 2LxLr3g8oHysshzG1vCr\n- yAnbotwSmn5DNnG4bjBx\n 303 \N 187.149.77.93 89fc33cb-11fb-4441-9d30-113bd6fc29c2 2020-01-16 18:06:52.415242 27263 2053 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 751\namount: !ruby/object:BigDecimal 18:0.589E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2356E3\ntotal: !ruby/object:BigDecimal 18:0.3534E3\nstatus: 0\ndate_sale: 2020-01-16\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-805\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 20c0bbe0-00bf-4bb8-963b-a1eee49ba864 2020-01-16 18:12:19.013592 27264 1139 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.77.93 20c0bbe0-00bf-4bb8-963b-a1eee49ba864 2020-01-16 18:12:19.04178 27265 2053 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-805 cancelada. 187.149.77.93 8629d1b1-c8ab-42ee-9798-7c4b7bfac47c 2020-01-16 18:12:52.125264 27266 1139 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 187.149.77.93 8629d1b1-c8ab-42ee-9798-7c4b7bfac47c 2020-01-16 18:12:52.147355 27267 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-14 17:13:02.470177000 Z\n- &1 2020-01-15 17:46:33.989113000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-16 18:37:56.224468682 Z\nsign_in_count:\n- 87\n- 88\n 177 \N 189.186.117.149 6a4bb580-72b9-44af-a4c8-e25a3e093b31 2020-01-16 18:37:56.230496 27268 21 User \N \N 21 User \N update ---\nunique_session_id:\n- BsYC2VFMgzVC1MkqY5g_\n- yqVQT-zxU7c-RsaE4miv\n 178 \N 189.186.117.149 6a4bb580-72b9-44af-a4c8-e25a3e093b31 2020-01-16 18:37:56.243255 27270 2054 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 751\namount: !ruby/object:BigDecimal 18:0.8534E2\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9899E2\nstatus: 0\ndate_sale: 2020-01-16\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-806\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 f130f40a-5b2a-4aec-8545-c3745a908253 2020-01-16 20:08:56.743969 27271 487 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 19 \N 187.149.77.93 f130f40a-5b2a-4aec-8545-c3745a908253 2020-01-16 20:08:56.784199 27272 2054 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 0afedcb3-e47d-4db4-a0d9-84420a203e52 2020-01-16 20:09:01.329091 27273 2807 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 751\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.9899E2\nmove_type: '1'\nsale_id: 2054\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-806\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.10101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-806 187.149.77.93 0afedcb3-e47d-4db4-a0d9-84420a203e52 2020-01-16 20:09:01.349109 27274 2808 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 416\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1056\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CREDITO SAM\n 1 \N 187.149.77.93 a6f6b35a-b339-49bb-9d58-b7d83c3795ad 2020-01-16 23:24:30.258537 27275 1056 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.77.93 a6f6b35a-b339-49bb-9d58-b7d83c3795ad 2020-01-16 23:24:30.284875 27276 1384 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.77.93 a6f6b35a-b339-49bb-9d58-b7d83c3795ad 2020-01-16 23:24:30.303566 27277 2808 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 416\n- 752\n 2 movimiento de efectivo por venta con folio PV2-V-436 187.149.77.93 a6f6b35a-b339-49bb-9d58-b7d83c3795ad 2020-01-16 23:24:30.316651 27278 2055 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 753\namount: !ruby/object:BigDecimal 18:0.145E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.145E3\nstatus: 0\ndate_sale: 2020-01-16\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-241\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 d7dc8be2-69fd-481a-9a1f-0ce2fa66ab4b 2020-01-16 23:42:27.570058 27279 1354 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.117.149 d7dc8be2-69fd-481a-9a1f-0ce2fa66ab4b 2020-01-16 23:42:27.598501 27280 2055 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 e88c04e5-3d5e-49c2-98ec-de71314e301b 2020-01-16 23:52:43.773822 27281 2809 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 753\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.145E3\nmove_type: '1'\nsale_id: 2055\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-241\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.55E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-241 189.186.117.149 e88c04e5-3d5e-49c2-98ec-de71314e301b 2020-01-16 23:52:43.80102 27282 2056 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 751\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.599E3\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-01-16\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-807\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 4bb45c5b-770e-4830-b276-504eff13362d 2020-01-17 00:41:01.134936 27283 1015 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.77.93 4bb45c5b-770e-4830-b276-504eff13362d 2020-01-17 00:41:01.181195 27284 299 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 187.149.77.93 4bb45c5b-770e-4830-b276-504eff13362d 2020-01-17 00:41:01.214239 27285 2056 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 4ec0b2d9-f347-4d8e-a46d-b7072d860760 2020-01-17 00:41:53.540478 27286 2810 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 751\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 2056\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-807\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-807 187.149.77.93 4ec0b2d9-f347-4d8e-a46d-b7072d860760 2020-01-17 00:41:53.564725 27287 766 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 751\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.89799E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1048E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2048E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.77.93 ddd56641-2585-408e-8874-29406d869542 2020-01-17 02:03:43.641435 27288 751 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.93 ddd56641-2585-408e-8874-29406d869542 2020-01-17 02:03:43.660313 27289 2811 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 566\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 1384\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CREDITO SAM\n 1 \N 187.149.77.93 b3f9dd98-e407-46a3-bf71-8703d1fb5930 2020-01-17 02:05:01.242368 27290 2811 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 566\n- 752\n 2 movimiento de efectivo por venta con folio PV1-V-718 187.149.77.93 b3f9dd98-e407-46a3-bf71-8703d1fb5930 2020-01-17 02:05:01.268068 27291 767 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 752\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.119901E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.4E3\ncash_fund: !ruby/object:BigDecimal 18:0.837E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1237E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.77.93 cc4bf70d-86af-446d-9623-5ed82107a2ea 2020-01-17 02:07:31.912277 27292 752 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.93 cc4bf70d-86af-446d-9623-5ed82107a2ea 2020-01-17 02:07:31.92648 27293 768 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 753\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.145E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1158E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1158E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 a5928390-b4cb-427e-9398-3b28475f9543 2020-01-17 03:00:46.084235 27294 753 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 a5928390-b4cb-427e-9398-3b28475f9543 2020-01-17 03:00:46.09664 27295 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-15 17:19:02.141129000 Z\n- &1 2020-01-16 17:32:30.485377000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-17 17:08:07.395916350 Z\nsign_in_count:\n- 74\n- 75\n 150 \N 187.149.77.93 2ecfcb6f-4a2d-46bb-a5eb-2b437822e57e 2020-01-17 17:08:07.431709 27296 27 User \N \N 27 User \N update ---\nunique_session_id:\n- FMqCU9Qm_KudgKxAcxea\n- ju57Kcu4JQvZcD2yuvEx\n 151 \N 187.149.77.93 2ecfcb6f-4a2d-46bb-a5eb-2b437822e57e 2020-01-17 17:08:07.455342 27297 754 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1048E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1048.0 187.149.77.93 36670684-a16f-4c15-8abd-20d7525e489b 2020-01-17 17:15:01.390781 27298 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-15 17:46:33.989113000 Z\n- &1 2020-01-16 18:37:56.224468000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-17 17:43:49.694190349 Z\nsign_in_count:\n- 88\n- 89\n 179 \N 189.186.117.149 a372d334-3425-4545-969e-640c9c3f1008 2020-01-17 17:43:49.701363 27299 21 User \N \N 21 User \N update ---\nunique_session_id:\n- yqVQT-zxU7c-RsaE4miv\n- DeW5VFgKtgfLdtfyjN8z\n 180 \N 189.186.117.149 a372d334-3425-4545-969e-640c9c3f1008 2020-01-17 17:43:49.715059 27300 755 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1158E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1158.0 189.186.117.149 1f8bc3b7-a826-4076-8334-c74fb014590b 2020-01-17 17:44:15.736676 27301 2812 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 673\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 1709\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.117.149 52cd65b5-cec6-4706-a1c9-4900c9f61200 2020-01-17 17:44:42.934594 27302 2812 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 673\n- 755\n 2 movimiento de efectivo por venta con folio PV3-V-171 189.186.117.149 52cd65b5-cec6-4706-a1c9-4900c9f61200 2020-01-17 17:44:42.957986 27303 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-15 17:51:39.529655000 Z\n- &1 2020-01-16 17:56:22.215040000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-17 19:12:41.110428426 Z\nsign_in_count:\n- 442\n- 443\n 889 \N 187.149.77.93 0736eb6d-0a85-4eb2-8aee-7728b8da1719 2020-01-17 19:12:41.12195 27304 2 User \N \N 2 User \N update ---\nunique_session_id:\n- sivr4oxwpuLZeDe3nxz9\n- LU4z_xyucUGVj7rxh7YD\n 890 \N 187.149.77.93 0736eb6d-0a85-4eb2-8aee-7728b8da1719 2020-01-17 19:12:41.144195 27305 756 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.837E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 837.0 187.149.77.93 12a9b1de-69aa-4217-88a5-248e8fa4d2db 2020-01-17 19:14:48.45163 27306 2057 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 756\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.299E3\ntotal: !ruby/object:BigDecimal 18:0.45E3\nstatus: 0\ndate_sale: 2020-01-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1007\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 44b0d439-b909-4ad4-8c1e-8cc554efbb5b 2020-01-17 19:41:26.61714 27307 1406 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.77.93 44b0d439-b909-4ad4-8c1e-8cc554efbb5b 2020-01-17 19:41:26.643957 27308 2057 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 2f3bb058-034a-4c2d-b1ff-795208763986 2020-01-17 19:41:31.372327 27309 2813 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 756\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.45E3\nmove_type: '1'\nsale_id: 2057\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1007\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.45E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1007 187.149.77.93 2f3bb058-034a-4c2d-b1ff-795208763986 2020-01-17 19:41:31.391873 27310 2058 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 754\namount: !ruby/object:BigDecimal 18:0.419E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1676E3\ntotal: !ruby/object:BigDecimal 18:0.2514E3\nstatus: 0\ndate_sale: 2020-01-17\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-808\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 3eb5702e-8574-489e-b4f8-05965d431f7d 2020-01-17 19:43:28.945565 27311 1021 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 187.149.77.93 3eb5702e-8574-489e-b4f8-05965d431f7d 2020-01-17 19:43:28.973633 27312 2058 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 62091c54-c0a7-43cc-b341-924bfa04b390 2020-01-17 19:44:01.131992 27313 2814 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 754\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2514E3\nmove_type: '1'\nsale_id: 2058\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-808\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.486E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-808 187.149.77.93 62091c54-c0a7-43cc-b341-924bfa04b390 2020-01-17 19:44:01.151763 27314 2059 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 754\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2396E3\ntotal: !ruby/object:BigDecimal 18:0.3594E3\nstatus: 0\ndate_sale: 2020-01-17\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-809\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.93 344a8b85-7647-4d2f-8cd9-fa2e09b9754d 2020-01-17 19:54:57.497047 27315 1016 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.77.93 344a8b85-7647-4d2f-8cd9-fa2e09b9754d 2020-01-17 19:54:57.529895 27316 2059 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.93 55459bd0-d53c-49b8-a7da-9e6fb25090c6 2020-01-17 19:55:42.926841 27317 2815 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 754\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3594E3\nmove_type: '1'\nsale_id: 2059\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-809\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.36E3\nchange: !ruby/object:BigDecimal 18:0.6E0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-809 187.149.77.93 55459bd0-d53c-49b8-a7da-9e6fb25090c6 2020-01-17 19:55:42.947766 27318 277 Customer \N \N 21 User \N create ---\nnick_name: AYLEEN\nphone: "(667) 730-9822"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente AYLEEN fue registrado. 189.186.117.149 1353b36f-9167-4621-837d-2db858e0d385 2020-01-17 20:03:19.704436 27319 2060 Sale \N \N 21 User \N create ---\ncustomer_id: 277\nuser_id: 21\nopen_cash_register_id: 755\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-01-17\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-242\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 dfb418ac-f401-488d-b692-7d49a5fb8b7b 2020-01-17 20:03:42.645201 27320 1035 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 18 \N 189.186.117.149 dfb418ac-f401-488d-b692-7d49a5fb8b7b 2020-01-17 20:03:42.693385 27321 2060 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-242 cancelada. 189.186.117.149 e2f32d83-6431-41f2-a1c3-b359d5688d66 2020-01-17 20:03:55.361104 27322 1035 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 19 \N 189.186.117.149 e2f32d83-6431-41f2-a1c3-b359d5688d66 2020-01-17 20:03:55.384016 27323 2061 Sale \N \N 21 User \N create ---\ncustomer_id: 277\nuser_id: 21\nopen_cash_register_id: 755\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-01-17\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-243\nexpiration_date: 2020-02-21\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 73550283-de1d-4fae-a1a6-a5af6eb1e3ee 2020-01-17 20:04:34.988947 27324 1035 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 20 \N 189.186.117.149 73550283-de1d-4fae-a1a6-a5af6eb1e3ee 2020-01-17 20:04:35.025721 27325 2816 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 755\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.45E3\nmove_type: '1'\nsale_id: 2061\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-243\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.45E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-243 189.186.117.149 fb305d11-0009-43d4-9cc2-fe07be478240 2020-01-17 20:06:11.539656 27326 2061 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.117.149 679c32f1-5ca9-4b6d-bb11-74eb122a727c 2020-01-17 20:06:13.890054 27327 2062 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 755\namount: !ruby/object:BigDecimal 18:0.229E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.229E3\nstatus: 0\ndate_sale: 2020-01-17\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-244\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 685368cd-5c6d-4e08-a150-3bc309369072 2020-01-17 20:07:49.602997 27328 1171 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.117.149 685368cd-5c6d-4e08-a150-3bc309369072 2020-01-17 20:07:49.626083 27329 2062 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 02af7a31-be10-4ad1-be53-37ca1df74879 2020-01-17 20:07:57.379372 27330 2817 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 755\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.229E3\nmove_type: '1'\nsale_id: 2062\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-244\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-244 189.186.117.149 02af7a31-be10-4ad1-be53-37ca1df74879 2020-01-17 20:07:57.398923 27331 2063 Sale \N \N 21 User \N create ---\ncustomer_id: 277\nuser_id: 21\nopen_cash_register_id: 755\namount: !ruby/object:BigDecimal 18:0.32E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.32E3\nstatus: 0\ndate_sale: 2020-01-17\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-245\nexpiration_date: 2020-02-21\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 7e64466f-3d68-4622-b89f-24213b7d7740 2020-01-17 20:09:21.809281 27332 1179 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.117.149 7e64466f-3d68-4622-b89f-24213b7d7740 2020-01-17 20:09:21.833563 27333 2818 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 755\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '1'\nsale_id: 2063\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-245\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-245 189.186.117.149 b8b6724c-ecf5-4cf0-9c3a-96a1bf795ab0 2020-01-17 20:09:52.210545 27334 2063 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.117.149 50faceae-4cf2-4457-ba05-bab405e19df8 2020-01-17 20:09:59.945413 27335 2819 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 660\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1651\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CREDITO SAM\n 1 \N 187.149.77.93 d3a82035-60b6-47bd-8e7e-fc66dfa9dda1 2020-01-17 20:45:18.632051 27336 1651 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.77.93 d3a82035-60b6-47bd-8e7e-fc66dfa9dda1 2020-01-17 20:45:18.654961 27337 1914 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.77.93 d3a82035-60b6-47bd-8e7e-fc66dfa9dda1 2020-01-17 20:45:18.674043 27338 2819 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 660\n- 756\n 2 movimiento de efectivo por venta con folio PV2-V-646 187.149.77.93 d3a82035-60b6-47bd-8e7e-fc66dfa9dda1 2020-01-17 20:45:18.685563 27339 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-16 07:02:21.145750000 Z\n- &1 2020-01-16 12:14:44.316053000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-17 21:36:46.654026384 Z\nsign_in_count:\n- 1306\n- 1307\n 2614 \N 189.186.54.195 03ef6254-5e75-43d3-aeb9-294b1b6e11f9 2020-01-17 21:36:46.662933 27341 2064 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 754\namount: !ruby/object:BigDecimal 18:0.54943E3\ntax: !ruby/object:BigDecimal 18:0.4957E2\ndiscount: !ruby/object:BigDecimal 18:0.2396E3\ntotal: !ruby/object:BigDecimal 18:0.3594E3\nstatus: 0\ndate_sale: 2020-01-17\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-810\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.86.104 b34e24c2-ca51-4684-8650-5cfc527c9424 2020-01-17 22:30:12.626276 27342 299 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.86.104 b34e24c2-ca51-4684-8650-5cfc527c9424 2020-01-17 22:30:12.653388 27343 2064 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.86.104 f38aeed2-38bc-4b4b-893a-8acf63f9f179 2020-01-17 22:30:28.516373 27344 2820 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 754\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3594E3\nmove_type: '1'\nsale_id: 2064\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-810\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1406E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-810 187.149.86.104 f38aeed2-38bc-4b4b-893a-8acf63f9f179 2020-01-17 22:30:28.536165 27345 264 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 756\nquantity: !ruby/object:BigDecimal 18:0.12E3\nstatus: 1\nobservations: engrasado de cortina\nexpense_date: 2020-01-17\nexpense_code: PV1-E-185\n 1 Egreso por 120.0 registrado 187.149.86.104 ab84a91a-9a32-4d11-860e-052131331bb0 2020-01-18 00:54:46.95688 27346 2821 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 756\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 264\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.86.104 ab84a91a-9a32-4d11-860e-052131331bb0 2020-01-18 00:54:46.988211 27347 2065 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 754\namount: !ruby/object:BigDecimal 18:0.54117E3\ntax: !ruby/object:BigDecimal 18:0.5784E2\ndiscount: !ruby/object:BigDecimal 18:0.1797E3\ntotal: !ruby/object:BigDecimal 18:0.41931E3\nstatus: 0\ndate_sale: 2020-01-17\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-811\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.86.104 2652033b-7105-4783-a0fe-c63c2a8b489f 2020-01-18 01:27:36.849747 27348 396 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 187.149.86.104 2652033b-7105-4783-a0fe-c63c2a8b489f 2020-01-18 01:27:36.879799 27349 2065 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.86.104 6391e9e0-3039-415f-b0d6-69d5d8bffcfe 2020-01-18 01:28:42.039852 27350 2822 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 754\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.41931E3\nmove_type: '1'\nsale_id: 2065\ncardnumber: 3908\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-811\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-811 187.149.86.104 6391e9e0-3039-415f-b0d6-69d5d8bffcfe 2020-01-18 01:28:42.073351 27351 769 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 756\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.75E3\namount_out: !ruby/object:BigDecimal 18:0.12E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.667E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1167E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.86.104 3d575cab-d484-4305-b4ff-00af46872d8e 2020-01-18 02:01:51.159384 27352 756 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.86.104 3d575cab-d484-4305-b4ff-00af46872d8e 2020-01-18 02:01:51.177215 27353 770 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 754\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.138951E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1018E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2018E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.86.104 4985d089-a528-4ef7-9da6-5354f8f7ffa8 2020-01-18 02:02:09.850037 27354 754 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.86.104 4985d089-a528-4ef7-9da6-5354f8f7ffa8 2020-01-18 02:02:09.862283 27355 2066 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 755\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3995E3\ntotal: !ruby/object:BigDecimal 18:0.3995E3\nstatus: 0\ndate_sale: 2020-01-17\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-246\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 39d56774-da69-46c4-9e0c-6d4cd3daa5de 2020-01-18 02:16:21.635415 27356 856 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.117.149 39d56774-da69-46c4-9e0c-6d4cd3daa5de 2020-01-18 02:16:21.671493 27357 2066 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 affabcaf-0511-4978-bf35-674f5a8d2ad0 2020-01-18 02:17:16.261444 27358 2823 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 755\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3995E3\nmove_type: '1'\nsale_id: 2066\ncardnumber: 2395\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-246\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-246 189.186.117.149 affabcaf-0511-4978-bf35-674f5a8d2ad0 2020-01-18 02:17:16.288314 27359 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-16 12:14:44.316053000 Z\n- &1 2020-01-17 21:36:46.654026000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-18 02:17:24.736007839 Z\nsign_in_count:\n- 1307\n- 1308\n 2616 \N 189.186.54.195 56d4715c-de14-4211-9ab7-2f9c6b196ca7 2020-01-18 02:17:24.744315 27360 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FGrHL2uyixZjHGbTqFuT\n- oAuf2_vJQfPJH-Fcy8rb\n 2617 \N 189.186.54.195 56d4715c-de14-4211-9ab7-2f9c6b196ca7 2020-01-18 02:17:24.762884 27361 771 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 755\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.14785E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1237E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2237E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 fc6e7009-c8ce-4960-9fcd-57095f91050b 2020-01-18 03:01:59.482635 27362 755 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 fc6e7009-c8ce-4960-9fcd-57095f91050b 2020-01-18 03:01:59.496432 27363 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-16 17:56:22.215040000 Z\n- &1 2020-01-17 19:12:41.110428000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-18 17:50:15.397334412 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124061\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126376\n mask_addr: 4294967295\nsign_in_count:\n- 443\n- 444\n 891 \N 187.149.86.104 cd6d36d7-0929-4135-a69c-c62e13a3c0a0 2020-01-18 17:50:15.430428 27364 2 User \N \N 2 User \N update ---\nunique_session_id:\n- LU4z_xyucUGVj7rxh7YD\n- qbfns1DhEViM2DG5HwS3\n 892 \N 187.149.86.104 cd6d36d7-0929-4135-a69c-c62e13a3c0a0 2020-01-18 17:50:15.456854 27365 757 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.667E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 667.0 187.149.86.104 fc1e2ff4-3452-4120-a2fc-c318777768d4 2020-01-18 17:53:46.262602 27366 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-17 21:36:46.654026000 Z\n- &1 2020-01-18 02:17:24.736007000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-18 18:04:02.508637010 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126376\n mask_addr: 4294967295\nsign_in_count:\n- 1308\n- 1309\n 2618 \N 187.149.86.104 b83f57ac-7477-462b-b28a-a58f528da0d9 2020-01-18 18:04:02.514907 27367 4 User \N \N 4 User \N update ---\nunique_session_id:\n- oAuf2_vJQfPJH-Fcy8rb\n- gvAJ7oUpkBr4ZqWUQb8x\n 2619 \N 187.149.86.104 b83f57ac-7477-462b-b28a-a58f528da0d9 2020-01-18 18:04:02.531755 27368 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-16 18:37:56.224468000 Z\n- &1 2020-01-17 17:43:49.694190000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-18 18:58:19.110891895 Z\nsign_in_count:\n- 89\n- 90\n 181 \N 189.186.117.149 c84620ee-c146-4edd-ad05-818043d6321f 2020-01-18 18:58:19.138881 27369 21 User \N \N 21 User \N update ---\nunique_session_id:\n- DeW5VFgKtgfLdtfyjN8z\n- 9Tsw7ChGkvmY6yv3Y9bD\n 182 \N 189.186.117.149 c84620ee-c146-4edd-ad05-818043d6321f 2020-01-18 18:58:19.158204 27370 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-10-17 16:47:03.856014000 Z\n- &1 2019-12-15 19:40:10.688435000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-18 19:00:29.685430108 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126376\n mask_addr: 4294967295\nsign_in_count:\n- 157\n- 158\n 318 \N 187.149.86.104 307dc02e-e0d4-4a7b-9cc3-5a6db54d8b99 2020-01-18 19:00:29.692511 27371 10 User \N \N 10 User \N update ---\nunique_session_id:\n- 8wp9wpmfuYxNs5ZVzaGt\n- Yikc8yEwxAajdze97y3J\n 319 \N 187.149.86.104 307dc02e-e0d4-4a7b-9cc3-5a6db54d8b99 2020-01-18 19:00:29.706415 27372 758 OpenCashRegister \N \N 10 User \N create ---\ncash_register_id: 2\nuser_id: 10\ninitial_cash: !ruby/object:BigDecimal 18:0.1018E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1018.0 187.149.86.104 22fcaba5-db3e-49a8-966f-fbf2e57a270a 2020-01-18 19:00:34.122877 27373 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-18 02:17:24.736007000 Z\n- &1 2020-01-18 18:04:02.508637000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-18 19:04:15.543051255 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126376\n mask_addr: 4294967295\nsign_in_count:\n- 1309\n- 1310\n 2620 \N 187.149.86.104 14f98755-879c-43fa-9065-2f48a816db53 2020-01-18 19:04:15.549246 27374 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gvAJ7oUpkBr4ZqWUQb8x\n- rPjZMtYYJ-DyxpzNwssb\n 2621 \N 187.149.86.104 14f98755-879c-43fa-9065-2f48a816db53 2020-01-18 19:04:15.56459 27375 759 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1237E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1237.0 189.186.117.149 7d8c8d0f-c747-4bf7-87d8-05ff59102641 2020-01-18 20:01:03.865172 27376 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-16 17:32:30.485377000 Z\n- &1 2020-01-17 17:08:07.395916000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-18 20:18:08.563261306 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124061\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126376\n mask_addr: 4294967295\nsign_in_count:\n- 75\n- 76\n 152 \N 187.149.86.104 5efdebb3-a703-4e21-8a13-85c8b8a18e9c 2020-01-18 20:18:08.572212 27377 27 User \N \N 27 User \N update ---\nunique_session_id:\n- ju57Kcu4JQvZcD2yuvEx\n- YPBb2SgqbZAyR5k-nWGa\n 153 \N 187.149.86.104 5efdebb3-a703-4e21-8a13-85c8b8a18e9c 2020-01-18 20:18:08.589186 27378 265 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 757\nquantity: !ruby/object:BigDecimal 18:0.205E3\nstatus: 1\nobservations: diferencia de sueldo Rocío (Samantha me dejo $1000)\nexpense_date: 2020-01-18\nexpense_code: PV1-E-186\n 1 Egreso por 205.0 registrado 187.149.86.104 14c38989-5e0e-4db0-993a-2a63aec3e853 2020-01-18 20:21:51.23044 27379 2824 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 757\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.205E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 265\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.86.104 14c38989-5e0e-4db0-993a-2a63aec3e853 2020-01-18 20:21:51.271241 27380 2067 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 757\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.749E3\ntotal: !ruby/object:BigDecimal 18:0.115E4\nstatus: 0\ndate_sale: 2020-01-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1008\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.86.104 1eda333b-59ed-4289-a7e5-f3e7f284039e 2020-01-18 20:28:48.847197 27381 1196 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.86.104 1eda333b-59ed-4289-a7e5-f3e7f284039e 2020-01-18 20:28:48.881355 27382 2067 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.86.104 3e6a3831-bcab-4fe6-91bd-b8feacc55208 2020-01-18 20:28:56.129786 27383 2825 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 757\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.55E3\nmove_type: '1'\nsale_id: 2067\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1008\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.55E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1008 187.149.86.104 3e6a3831-bcab-4fe6-91bd-b8feacc55208 2020-01-18 20:28:56.150865 27384 2826 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 757\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 2067\ncardnumber: 6783\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1008\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1008 187.149.86.104 2a4155e9-eeac-4091-ae9d-c51a5300886b 2020-01-18 20:29:10.258097 27385 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-18 18:04:02.508637000 Z\n- &1 2020-01-18 19:04:15.543051000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-18 20:48:18.408319966 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126376\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1310\n- 1311\n 2622 \N 189.186.117.149 3f780f34-a58b-459f-acba-cbb4713e7122 2020-01-18 20:48:18.415219 27386 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rPjZMtYYJ-DyxpzNwssb\n- nQSQfkzYoAkwWyCExhy8\n 2623 \N 189.186.117.149 3f780f34-a58b-459f-acba-cbb4713e7122 2020-01-18 20:48:18.432626 27387 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-18 19:04:15.543051000 Z\n- &1 2020-01-18 20:48:18.408319000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-18 21:39:19.329263634 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126376\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946013\n mask_addr: 4294967295\nsign_in_count:\n- 1311\n- 1312\n 2624 \N 200.68.181.29 26d26ad1-58de-4db5-8cac-7c023d7048af 2020-01-18 21:39:19.338302 27388 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nQSQfkzYoAkwWyCExhy8\n- tK7FRvbv1FFvk9NzYKkH\n 2625 \N 200.68.181.29 26d26ad1-58de-4db5-8cac-7c023d7048af 2020-01-18 21:39:19.35768 27389 2068 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 757\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.679E3\ntotal: !ruby/object:BigDecimal 18:0.102E4\nstatus: 0\ndate_sale: 2020-01-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1009\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.86.104 e5406999-4dc9-4ac9-97e2-172c13916f5d 2020-01-18 21:43:49.196563 27390 1433 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.86.104 e5406999-4dc9-4ac9-97e2-172c13916f5d 2020-01-18 21:43:49.22128 27391 2068 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.86.104 591f33d3-23a1-40d1-9123-fb4cf954bbf1 2020-01-18 21:44:04.663484 27392 2827 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 757\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.102E4\nmove_type: '1'\nsale_id: 2068\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1009\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.102E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1009 187.149.86.104 591f33d3-23a1-40d1-9123-fb4cf954bbf1 2020-01-18 21:44:04.684251 27393 1474 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.117.149 d4702c1d-66c2-4a8c-b126-0c687f68d35a 2020-01-18 21:52:17.720097 27394 415 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2020-01-18\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.117.149 99639411-b7c2-4935-8a3f-8513aa439a3e 2020-01-18 21:52:20.884276 27395 415 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-18\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.86.104 bddc4587-1838-4d25-9ca6-945a716dd7b7 2020-01-18 21:55:23.889026 27396 1454 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.86.104 bddc4587-1838-4d25-9ca6-945a716dd7b7 2020-01-18 21:55:23.905469 27397 799 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.86.104 be6f3975-da42-4ddb-ac1b-727943eefa47 2020-01-18 21:56:11.006342 27398 799 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.86.104 d0e9cae5-062c-483d-ba70-103709ae208b 2020-01-18 21:56:15.861393 27399 416 Transfer \N \N 27 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-01-18\nuser_id: 27\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.86.104 65a3ce13-67d7-4a54-8ff2-1a19ac6b8cc4 2020-01-18 21:56:46.062443 27400 2069 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 757\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.479E3\ntotal: !ruby/object:BigDecimal 18:0.72E3\nstatus: 0\ndate_sale: 2020-01-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1010\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.86.104 5b1272c1-fbd7-48a7-9c95-0cf42682717c 2020-01-18 23:38:27.291904 27401 1434 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.86.104 5b1272c1-fbd7-48a7-9c95-0cf42682717c 2020-01-18 23:38:27.316924 27402 2069 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.86.104 d84f866f-eb39-4da7-971f-e1733f4477fb 2020-01-18 23:38:31.187166 27403 2828 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 757\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.72E3\nmove_type: '1'\nsale_id: 2069\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1010\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.72E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1010 187.149.86.104 d84f866f-eb39-4da7-971f-e1733f4477fb 2020-01-18 23:38:31.206285 27404 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-18 20:48:18.408319000 Z\n- &1 2020-01-18 21:39:19.329263000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-18 23:59:31.433302603 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946013\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946013\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1312\n- 1313\n 2626 \N 189.186.117.149 495d22c5-322a-4156-a016-044b204ab4a2 2020-01-18 23:59:31.441627 27405 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tK7FRvbv1FFvk9NzYKkH\n- sZqzyWn1YV6ztKeNPg1y\n 2627 \N 189.186.117.149 495d22c5-322a-4156-a016-044b204ab4a2 2020-01-18 23:59:31.461426 27406 416 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-18\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.117.149 82f88ecd-ca5d-4c41-bc27-7381f98e333a 2020-01-19 00:02:20.82475 27407 815 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.12E2\n 5 \N 189.186.117.149 82f88ecd-ca5d-4c41-bc27-7381f98e333a 2020-01-19 00:02:20.847961 27408 1133 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.117.149 f63cf301-8f44-4632-a773-98207a63a376 2020-01-19 00:02:48.730917 27409 1133 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.117.149 25e7b169-61ba-46b8-84b0-5200d01c62a2 2020-01-19 00:02:52.028437 27410 417 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2020-01-18\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.117.149 ffd2deea-08be-4238-aa52-2ab4301af725 2020-01-19 00:02:52.70148 27411 642 Product \N \N 4 User \N update ---\nsku:\n- BLU-642\n- CHA-971\ncategory_id:\n- 7\n- 24\n 3 El producto BLU-642 fue modificado. 189.186.117.149 92dd2736-1d72-4ba7-9a65-47a34514a042 2020-01-19 00:34:11.36767 27412 770 Product \N \N 4 User \N update ---\nsku:\n- BLU-770\n- CHA\n 3 El producto BLU-770 fue modificado. 189.186.117.149 310d154f-189a-44d1-8458-d853a0531317 2020-01-19 00:34:29.028378 27413 767 Product \N \N 4 User \N update ---\nsku:\n- BLU-767\n- CHA-971\ncategory_id:\n- 7\n- 24\n 3 El producto BLU-767 fue modificado. 189.186.117.149 69e1a91d-e5e0-4a4b-b6f4-8a8af0e45611 2020-01-19 00:36:53.011968 27414 770 Product \N \N 4 User \N update ---\nsku:\n- CHA\n- CHA-971\ncategory_id:\n- 7\n- 24\n 4 El producto CHA fue modificado. 189.186.117.149 9899e13c-6ecf-47c2-abee-889d5cc03fe6 2020-01-19 00:37:13.23934 27415 1379 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 3 \N 189.186.117.149 62e99f8b-6021-4e85-9df4-0be64b126560 2020-01-19 01:00:25.301292 27416 1379 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.117.149 84cb56f1-d2ad-4fc3-b9ec-ecfc58dd8d72 2020-01-19 01:00:28.25374 27417 418 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-01-18\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.117.149 9afa9d5a-0055-4751-acf2-e9b4dd444c2d 2020-01-19 01:00:30.292893 27418 834 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.22E2\n- !ruby/object:BigDecimal 18:0.21E2\n 13 \N 189.186.117.149 6525b49d-6ebd-4e85-b11f-d64b8f978702 2020-01-19 01:06:40.561989 27419 834 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.21E2\n- !ruby/object:BigDecimal 18:0.9E1\n 14 \N 189.186.117.149 9a4350c9-48a3-43fd-ad5a-e2fdbb30730c 2020-01-19 01:06:53.237164 27420 419 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-01-18\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO Comercial a Almacen central creado. 189.186.117.149 e0bbaef4-0a1f-4c0b-8656-cbdf9fce2c2b 2020-01-19 01:06:54.713934 27421 246 Product \N \N 4 User \N update ---\nsku:\n- VES-246\n- JUM-971\ncategory_id:\n- 12\n- 1\n 3 El producto VES-246 fue modificado. 189.186.117.149 83a8da67-ef0a-4646-be86-399d84bee23d 2020-01-19 01:10:19.555964 27422 651 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.1199E4\n- !ruby/object:BigDecimal 18:0.1249E4\n 3 El producto JUM-651 fue modificado. 189.186.117.149 58c7d649-b266-492e-a5d2-0992300d7aad 2020-01-19 01:28:13.742784 27423 418 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-18\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.86.104 5ab0fe89-7849-4c54-bbf2-c0498406f123 2020-01-19 01:28:58.707036 27424 809 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.6E1\n 9 \N 187.149.86.104 5ab0fe89-7849-4c54-bbf2-c0498406f123 2020-01-19 01:28:58.727197 27425 2070 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 759\namount: !ruby/object:BigDecimal 18:0.1249E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.4996E3\ntotal: !ruby/object:BigDecimal 18:0.7494E3\nstatus: 0\ndate_sale: 2020-01-18\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-247\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 2ff119a5-f416-4020-8c2c-faad989622de 2020-01-19 01:29:05.557863 27426 773 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.117.149 2ff119a5-f416-4020-8c2c-faad989622de 2020-01-19 01:29:05.58333 27427 2070 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 614e222b-74ae-40c2-864b-93fa8bdd3ad3 2020-01-19 01:29:10.115138 27428 2829 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 759\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7494E3\nmove_type: '1'\nsale_id: 2070\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-247\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.2506E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-247 189.186.117.149 614e222b-74ae-40c2-864b-93fa8bdd3ad3 2020-01-19 01:29:10.155163 27429 266 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 757\nquantity: !ruby/object:BigDecimal 18:0.12E3\nstatus: 1\nobservations: diferencia de sueldo keyla (se le dio$1000 del corte del dia 17 de Enero\n de bysuo)\nexpense_date: 2020-01-18\nexpense_code: PV1-E-187\n 1 Egreso por 120.0 registrado 187.149.86.104 7de13406-7f7b-4691-983b-a20da0b4c077 2020-01-19 01:52:18.993531 27430 2830 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 757\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 266\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.86.104 7de13406-7f7b-4691-983b-a20da0b4c077 2020-01-19 01:52:19.015897 27431 772 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 757\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.289E4\namount_out: !ruby/object:BigDecimal 18:0.325E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.19E4\ncash_fund: !ruby/object:BigDecimal 18:0.732E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2632E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.86.104 b2497f79-3677-430e-b84d-b89f0aa5fa99 2020-01-19 02:02:47.69317 27432 757 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.86.104 b2497f79-3677-430e-b84d-b89f0aa5fa99 2020-01-19 02:02:47.70708 27433 773 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 759\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.7494E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.986E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1986E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 c9f5b744-4744-469c-b30c-b15d342ece3e 2020-01-19 02:58:04.890849 27435 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-18 21:39:19.329263000 Z\n- &1 2020-01-18 23:59:31.433302000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-19 03:39:57.481093866 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946013\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1313\n- 1314\n 2628 \N 189.186.54.195 4f62b2f2-d781-42c4-9450-2c3b729fbd79 2020-01-19 03:39:57.497499 27436 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sZqzyWn1YV6ztKeNPg1y\n- s3NxR8yY2awy8QPEW_Ns\n 2629 \N 189.186.54.195 4f62b2f2-d781-42c4-9450-2c3b729fbd79 2020-01-19 03:39:57.527012 27437 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-18 23:59:31.433302000 Z\n- &1 2020-01-19 03:39:57.481093000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-19 21:24:34.228639991 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1314\n- 1315\n 2630 \N 189.186.54.195 dcaaacd4-6744-44ec-8c0d-5eba508dbac6 2020-01-19 21:24:34.26699 27438 4 User \N \N 4 User \N update ---\nunique_session_id:\n- s3NxR8yY2awy8QPEW_Ns\n- xVAJ99QQg9CiK_iYkhYW\n 2631 \N 189.186.54.195 dcaaacd4-6744-44ec-8c0d-5eba508dbac6 2020-01-19 21:24:34.300799 27439 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-01-15 18:08:05.631354000 Z\n- &1 2020-01-16 18:06:52.395880000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-20 19:04:47.549297980 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124061\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3153328974\n mask_addr: 4294967295\nsign_in_count:\n- 151\n- 152\n 304 \N 187.243.251.78 8d031670-3d14-460c-bb0d-539920f24d25 2020-01-20 19:04:47.583325 27440 1 User \N \N 1 User \N update ---\nunique_session_id:\n- yAnbotwSmn5DNnG4bjBx\n- "-L1DD51fC1qKsqqk4EJz"\n 305 \N 187.243.251.78 8d031670-3d14-460c-bb0d-539920f24d25 2020-01-20 19:04:47.613792 27441 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-01-16 18:06:52.395880000 Z\n- &1 2020-01-20 19:04:47.549297000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-21 00:08:25.396309177 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124061\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3153328974\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3153328974\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3361499151\n mask_addr: 4294967295\nsign_in_count:\n- 152\n- 153\n 306 \N 200.92.104.15 6c0af609-367f-4b7f-9741-e68c0a524bf7 2020-01-21 00:08:25.405755 27442 1 User \N \N 1 User \N update ---\nunique_session_id:\n- "-L1DD51fC1qKsqqk4EJz"\n- eecKXmtQTa5Ly5iUAjxu\n 307 \N 200.92.104.15 6c0af609-367f-4b7f-9741-e68c0a524bf7 2020-01-21 00:08:25.439311 27443 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-01-20 19:04:47.549297000 Z\n- &1 2020-01-21 00:08:25.396309000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-21 00:20:45.841604694 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3153328974\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3361499151\n mask_addr: 4294967295\nsign_in_count:\n- 153\n- 154\n 308 \N 200.92.104.15 67dc3577-5a84-41ed-8c96-4185bf8ba434 2020-01-21 00:20:45.848243 27444 1 User \N \N 1 User \N update ---\nunique_session_id:\n- eecKXmtQTa5Ly5iUAjxu\n- s3CLDcy8e9CUTuc8BXF4\n 309 \N 200.92.104.15 67dc3577-5a84-41ed-8c96-4185bf8ba434 2020-01-21 00:20:45.868535 27445 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-17 19:12:41.110428000 Z\n- &1 2020-01-18 17:50:15.397334000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-21 00:23:03.140775545 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124061\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126376\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126376\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3149779130\n mask_addr: 4294967295\nsign_in_count:\n- 444\n- 445\n 893 \N 187.189.208.186 0c372789-e999-4289-a862-e023c470fefa 2020-01-21 00:23:03.148588 27446 2 User \N \N 2 User \N update ---\nunique_session_id:\n- qbfns1DhEViM2DG5HwS3\n- 7SqmzbW4vQKKsFji-pxY\n 894 \N 187.189.208.186 0c372789-e999-4289-a862-e023c470fefa 2020-01-21 00:23:03.167921 27447 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-18 17:50:15.397334000 Z\n- &1 2020-01-21 00:23:03.140775000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-21 00:24:49.632885691 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126376\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3149779130\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3149779130\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 445\n- 446\n 895 \N 187.149.51.184 adaf1021-bce2-4ee0-9d4c-be6d3d1e814b 2020-01-21 00:24:49.640914 27448 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 7SqmzbW4vQKKsFji-pxY\n- 7YzhRjT7eYqwAhtpinTJ\n 896 \N 187.149.51.184 adaf1021-bce2-4ee0-9d4c-be6d3d1e814b 2020-01-21 00:24:49.66003 27449 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-21 00:23:03.140775000 Z\n- &1 2020-01-21 00:24:49.632885000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-21 00:35:41.711650069 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3149779130\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 446\n- 447\n 897 \N 187.149.51.184 19e952fc-e416-4dc6-9231-2307309cc081 2020-01-21 00:35:41.718561 27450 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 7YzhRjT7eYqwAhtpinTJ\n- HmdESYUTa4xQ7M6ngcrR\n 898 \N 187.149.51.184 19e952fc-e416-4dc6-9231-2307309cc081 2020-01-21 00:35:41.736283 27451 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-01-21 00:08:25.396309000 Z\n- &1 2020-01-21 00:20:45.841604000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-21 00:41:13.461036318 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3361499151\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3153328974\n mask_addr: 4294967295\nsign_in_count:\n- 154\n- 155\n 310 \N 187.243.251.78 b74e3058-003e-4286-b60c-a25df8726bf4 2020-01-21 00:41:13.470569 27452 1 User \N \N 1 User \N update ---\nunique_session_id:\n- s3CLDcy8e9CUTuc8BXF4\n- EvwNr2fXZMAXK7NEar86\n 311 \N 187.243.251.78 b74e3058-003e-4286-b60c-a25df8726bf4 2020-01-21 00:41:13.488642 27453 29 User \N \N 1 User \N create ---\nuserid: gerentesoporte\nfirst_name: Gerente Soporte\nlast_name: Spiral\nusertype: G\nemail: gerentepos@sts.com\nencrypted_password: "$2a$10$HO8l/eQLrk7atCyUTdDNFeWtTsSrPGDFZzwmphTX8jDg05ey0UOSm"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 1\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.252.5.16 6880a9a4-5aeb-441f-998d-5ab0af7d0089 2020-01-21 00:45:47.983015 27454 29 User \N \N 29 User \N update ---\nlast_sign_in_at:\n- \n- &1 2020-01-21 00:45:59.952719600 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3187410192\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3187410192\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 189.252.5.16 6b4b0447-22e8-4409-a616-4471b8738cc1 2020-01-21 00:45:59.959889 27455 29 User \N \N 29 User \N update ---\nunique_session_id:\n- \n- xiib3yQNS8_98Bvy6CoF\n 3 \N 189.252.5.16 6b4b0447-22e8-4409-a616-4471b8738cc1 2020-01-21 00:45:59.975554 27456 760 OpenCashRegister \N \N 29 User \N create ---\ncash_register_id: 1\nuser_id: 29\ninitial_cash: !ruby/object:BigDecimal 18:0.732E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 732.0 189.252.5.16 36e44b0b-af8e-4db4-a60a-6cc00210a732 2020-01-21 00:46:17.927804 27457 29 User \N \N 29 User \N update ---\ncurrent_sign_in_at:\n- 2020-01-21 00:45:59.952719000 Z\n- 2020-01-21 01:04:15.271570428 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3187410192\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3153328974\n mask_addr: 4294967295\nsign_in_count:\n- 1\n- 2\n 4 \N 187.243.251.78 7b738e02-dd78-4227-a78c-575db9f48dc6 2020-01-21 01:04:15.28125 27458 29 User \N \N 29 User \N update ---\nunique_session_id:\n- xiib3yQNS8_98Bvy6CoF\n- w5UWonw1noazsyEsSv-E\n 5 \N 187.243.251.78 7b738e02-dd78-4227-a78c-575db9f48dc6 2020-01-21 01:04:15.30428 27459 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-21 00:24:49.632885000 Z\n- &1 2020-01-21 00:35:41.711650000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-21 01:14:03.230767559 Z\nsign_in_count:\n- 447\n- 448\n 899 \N 187.149.51.184 fdd1e679-568c-4ab3-8b40-5e32ae2834aa 2020-01-21 01:14:03.239895 27460 2 User \N \N 2 User \N update ---\nunique_session_id:\n- HmdESYUTa4xQ7M6ngcrR\n- 4xj6_fAp1hC9jj7E8Z9L\n 900 \N 187.149.51.184 fdd1e679-568c-4ab3-8b40-5e32ae2834aa 2020-01-21 01:14:03.260681 27461 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-21 00:35:41.711650000 Z\n- &1 2020-01-21 01:14:03.230767000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-21 01:17:21.438348303 Z\nsign_in_count:\n- 448\n- 449\n 901 \N 187.149.51.184 2b64410a-8bc1-418c-b5c4-1b33effc876e 2020-01-21 01:17:21.444636 27462 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 4xj6_fAp1hC9jj7E8Z9L\n- 6EWzu3t154Jht6BVTL5_\n 902 \N 187.149.51.184 2b64410a-8bc1-418c-b5c4-1b33effc876e 2020-01-21 01:17:21.460317 27463 29 User \N \N 29 User \N update ---\nlast_sign_in_at:\n- 2020-01-21 00:45:59.952719000 Z\n- &1 2020-01-21 01:04:15.271570000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-21 01:41:52.410034356 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3187410192\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3153328974\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3153328974\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 2\n- 3\n 6 \N 187.149.51.184 30c2bd3e-2f99-4749-ab38-f0aa7eda17bb 2020-01-21 01:41:52.419123 27464 29 User \N \N 29 User \N update ---\nunique_session_id:\n- w5UWonw1noazsyEsSv-E\n- 1GnLtzvt5yYTPC_Wrrz5\n 7 \N 187.149.51.184 30c2bd3e-2f99-4749-ab38-f0aa7eda17bb 2020-01-21 01:41:52.439014 27465 2071 Sale \N \N 29 User \N create ---\ncustomer_id: 1\nuser_id: 29\nopen_cash_register_id: 760\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2020-01-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1011\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 3117e0b0-aa19-4aab-89ad-3f13e0c0f454 2020-01-21 01:44:10.514508 27466 1461 AvailableProduct \N \N 29 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.51.184 3117e0b0-aa19-4aab-89ad-3f13e0c0f454 2020-01-21 01:44:10.55836 27467 2071 Sale \N \N 29 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 ce699737-16d2-4cb7-8b5a-e95a8a806225 2020-01-21 01:44:14.949376 27468 2831 CashRegistersMove \N \N 29 User \N create ---\nopen_cash_register_id: 760\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 2071\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1011\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1011 187.149.51.184 ce699737-16d2-4cb7-8b5a-e95a8a806225 2020-01-21 01:44:14.97547 27469 267 Expense \N \N 29 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 760\nquantity: !ruby/object:BigDecimal 18:0.25E2\nstatus: 1\nobservations: agua garrafon\nexpense_date: 2020-01-20\nexpense_code: PV1-E-188\n 1 Egreso por 25.0 registrado 187.149.51.184 7912cc10-b5d3-449a-8295-3086cd0792a5 2020-01-21 01:47:50.659569 27470 2832 CashRegistersMove \N \N 29 User \N create ---\nopen_cash_register_id: 760\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 267\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.51.184 7912cc10-b5d3-449a-8295-3086cd0792a5 2020-01-21 01:47:50.707259 27471 774 CashOut \N \N 29 User \N create ---\nopen_cash_register_id: 760\nuser_id: 29\namount_in: !ruby/object:BigDecimal 18:0.6E3\namount_out: !ruby/object:BigDecimal 18:0.25E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.607E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1307E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.51.184 8d72ccc9-d753-4e37-956d-9b49d925409c 2020-01-21 01:53:11.96666 27472 760 OpenCashRegister \N \N 29 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 8d72ccc9-d753-4e37-956d-9b49d925409c 2020-01-21 01:53:11.980981 27473 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-17 17:43:49.694190000 Z\n- &1 2020-01-18 18:58:19.110891000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-21 01:57:00.935118316 Z\nsign_in_count:\n- 90\n- 91\n 183 \N 189.186.117.149 2875a604-ec96-4d01-8534-d5f4d1a965a4 2020-01-21 01:57:00.941329 27474 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 9Tsw7ChGkvmY6yv3Y9bD\n- qCNT9Q5r2A9aHBDaHic9\n 184 \N 189.186.117.149 2875a604-ec96-4d01-8534-d5f4d1a965a4 2020-01-21 01:57:00.9574 27475 761 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.986E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 986.0 189.186.117.149 f2988d37-2fa2-4465-83cd-b8d0eb11b278 2020-01-21 01:58:26.824134 27476 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-17 17:08:07.395916000 Z\n- &1 2020-01-18 20:18:08.563261000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-21 02:02:33.954411146 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124061\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126376\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126376\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 76\n- 77\n 154 \N 187.149.51.184 8b8e8194-8a41-4d65-ac61-0f85d50eb89b 2020-01-21 02:02:33.963291 27477 27 User \N \N 27 User \N update ---\nunique_session_id:\n- YPBb2SgqbZAyR5k-nWGa\n- PkahfQSs1HwVCJC_Egpf\n 155 \N 187.149.51.184 8b8e8194-8a41-4d65-ac61-0f85d50eb89b 2020-01-21 02:02:33.980613 27502 27 User \N \N 27 User \N update ---\nunique_session_id:\n- AT4oYJn7_TiLM-p_UuxG\n- NK2mNhTWyRZDUzRbsin4\n 159 \N 187.149.51.184 bc489456-5fd9-4a7c-a298-f4b4f789acab 2020-01-21 21:20:28.476939 27503 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-21 17:12:13.068073000 Z\n- &1 2020-01-21 21:20:28.455948000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-21 23:11:31.569118680 Z\nsign_in_count:\n- 79\n- 80\n 160 \N 187.149.51.184 e45b9140-ac56-4194-9316-a5fd4850f8e1 2020-01-21 23:11:31.598972 27478 29 User \N \N 29 User \N update ---\nlast_sign_in_at:\n- 2020-01-21 01:04:15.271570000 Z\n- &1 2020-01-21 01:41:52.410034000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-21 02:44:54.611859790 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3153328974\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 3\n- 4\n 8 \N 189.186.117.149 487d0292-b4a1-4507-a2a9-2117153069cc 2020-01-21 02:44:54.619996 27479 29 User \N \N 29 User \N update ---\nunique_session_id:\n- 1GnLtzvt5yYTPC_Wrrz5\n- 6y97GbJmbwrvNz6cy-E5\n 9 \N 189.186.117.149 487d0292-b4a1-4507-a2a9-2117153069cc 2020-01-21 02:44:54.639715 27480 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-18 18:58:19.110891000 Z\n- &1 2020-01-21 01:57:00.935118000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-21 02:46:07.568975829 Z\nsign_in_count:\n- 91\n- 92\n 185 \N 189.186.117.149 29698b76-790b-49af-8836-7ceaa0d40c0d 2020-01-21 02:46:07.575154 27481 21 User \N \N 21 User \N update ---\nunique_session_id:\n- qCNT9Q5r2A9aHBDaHic9\n- z_VZHL-g9jA-7J5rnWBM\n 186 \N 189.186.117.149 29698b76-790b-49af-8836-7ceaa0d40c0d 2020-01-21 02:46:07.589034 27482 2833 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 761\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 1508\ncardnumber: 9589\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-136 189.186.117.149 0afdf996-851d-429b-bc18-167f564c70b9 2020-01-21 02:47:31.636666 27483 1508 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.117.149 72a92ce5-3613-4a6e-b7b7-9ada389c9dc4 2020-01-21 02:47:34.201555 27484 278 Customer \N \N 21 User \N create ---\nnick_name: CARLOS MONTOYA\nphone: "(667) 223-2379"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CARLOS MONTOYA fue registrado. 189.186.117.149 5bafda67-eb23-4a34-bf82-ccee417a4204 2020-01-21 02:49:43.925801 27485 2072 Sale \N \N 21 User \N create ---\ncustomer_id: 278\nuser_id: 21\nopen_cash_register_id: 761\namount: !ruby/object:BigDecimal 18:0.172328E4\ntax: !ruby/object:BigDecimal 18:0.27572E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1999E4\nstatus: 0\ndate_sale: 2020-01-20\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-248\nexpiration_date: 2020-02-24\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 d27c6664-4108-4f52-8905-36105c421826 2020-01-21 02:50:02.134631 27486 904 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.117.149 d27c6664-4108-4f52-8905-36105c421826 2020-01-21 02:50:02.16302 27487 2834 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 761\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2072\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-248\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-248 189.186.117.149 451571e7-61ab-4a36-be05-ef2e18e0d583 2020-01-21 02:50:10.610011 27488 2072 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.117.149 443af542-0417-43ea-9b91-d28a1454cec2 2020-01-21 02:50:12.25113 27489 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-18 20:18:08.563261000 Z\n- &1 2020-01-21 02:02:33.954411000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-21 17:12:13.068073284 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126376\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 77\n- 78\n 156 \N 187.149.51.184 f45e70c3-0e95-496b-9f84-acc0400c8641 2020-01-21 17:12:13.116155 27490 27 User \N \N 27 User \N update ---\nunique_session_id:\n- PkahfQSs1HwVCJC_Egpf\n- AT4oYJn7_TiLM-p_UuxG\n 157 \N 187.149.51.184 f45e70c3-0e95-496b-9f84-acc0400c8641 2020-01-21 17:12:13.151435 27491 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-21 01:57:00.935118000 Z\n- &1 2020-01-21 02:46:07.568975000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-21 17:19:33.015561378 Z\nsign_in_count:\n- 92\n- 93\n 187 \N 189.186.117.149 05f74011-0b42-45d8-97f2-853c8a674e9e 2020-01-21 17:19:33.022638 27492 21 User \N \N 21 User \N update ---\nunique_session_id:\n- z_VZHL-g9jA-7J5rnWBM\n- gPUKJfh_F5yqnXMq3xVF\n 188 \N 189.186.117.149 05f74011-0b42-45d8-97f2-853c8a674e9e 2020-01-21 17:19:33.037295 27493 775 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 761\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1499E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1386E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1386E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 19e44432-558f-46f4-8dc6-b0fd69e0cb59 2020-01-21 17:20:53.773151 27494 761 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 19e44432-558f-46f4-8dc6-b0fd69e0cb59 2020-01-21 17:20:53.790805 27495 762 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1386E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1386.0 189.186.117.149 830bb9e1-abab-4164-98a1-68ad44a809ae 2020-01-21 17:21:24.540476 27496 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-21 01:14:03.230767000 Z\n- &1 2020-01-21 01:17:21.438348000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-21 19:07:36.312961502 Z\nsign_in_count:\n- 449\n- 450\n 903 \N 187.149.51.184 2ce93b71-37b0-4ce3-8529-e7f0b7b9582d 2020-01-21 19:07:36.332937 27497 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 6EWzu3t154Jht6BVTL5_\n- 1XjE4Sc2JasPCSpyFtxD\n 904 \N 187.149.51.184 2ce93b71-37b0-4ce3-8529-e7f0b7b9582d 2020-01-21 19:07:36.354389 27498 763 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.607E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 607.0 187.149.51.184 0a56b41b-efd3-4d5a-8c24-1da1e3a4782a 2020-01-21 19:08:24.491098 27499 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-19 03:39:57.481093000 Z\n- &1 2020-01-19 21:24:34.228639000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-21 19:10:14.218246062 Z\nsign_in_count:\n- 1315\n- 1316\n 2632 \N 189.186.54.195 aa148a25-02ad-4662-b8aa-9c43956d1721 2020-01-21 19:10:14.224144 27500 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xVAJ99QQg9CiK_iYkhYW\n- x7cgLzdeA1w6HxDYEBsH\n 2633 \N 189.186.54.195 aa148a25-02ad-4662-b8aa-9c43956d1721 2020-01-21 19:10:14.241513 27501 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-21 02:02:33.954411000 Z\n- &1 2020-01-21 17:12:13.068073000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-21 21:20:28.455948216 Z\nsign_in_count:\n- 78\n- 79\n 158 \N 187.149.51.184 bc489456-5fd9-4a7c-a298-f4b4f789acab 2020-01-21 21:20:28.461919 27505 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-19 21:24:34.228639000 Z\n- &1 2020-01-21 19:10:14.218246000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-21 23:54:15.364785108 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1316\n- 1317\n 2634 \N 189.186.117.149 76f5b486-e4b5-496b-ae02-bc966c095555 2020-01-21 23:54:15.371761 27506 4 User \N \N 4 User \N update ---\nunique_session_id:\n- x7cgLzdeA1w6HxDYEBsH\n- z8X_tQgz32nUixQz4wTp\n 2635 \N 189.186.117.149 76f5b486-e4b5-496b-ae02-bc966c095555 2020-01-21 23:54:15.394428 27507 2073 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 758\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2276E3\ntotal: !ruby/object:BigDecimal 18:0.3414E3\nstatus: 0\ndate_sale: 2020-01-21\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-812\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 afc9700a-8b14-4da9-9cd7-7dab4146de2e 2020-01-22 00:03:30.635687 27508 1455 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.51.184 afc9700a-8b14-4da9-9cd7-7dab4146de2e 2020-01-22 00:03:30.669218 27509 2073 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 a4d0c1ce-a059-451b-be0d-ac98fc84ec5b 2020-01-22 00:04:01.993376 27510 2835 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 758\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3414E3\nmove_type: '1'\nsale_id: 2073\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-812\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.86E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-812 187.149.51.184 a4d0c1ce-a059-451b-be0d-ac98fc84ec5b 2020-01-22 00:04:02.022188 27511 2074 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 758\namount: !ruby/object:BigDecimal 18:0.659E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2636E3\ntotal: !ruby/object:BigDecimal 18:0.3954E3\nstatus: 0\ndate_sale: 2020-01-21\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-813\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 52d9f2a1-48fd-4b8b-9249-a705cb77a2ff 2020-01-22 00:29:44.95283 27512 1002 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.51.184 52d9f2a1-48fd-4b8b-9249-a705cb77a2ff 2020-01-22 00:29:44.985793 27513 2074 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 0156d1a4-9d60-406c-9d76-693d15dd81ff 2020-01-22 00:30:34.718598 27514 2836 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 758\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3954E3\nmove_type: '1'\nsale_id: 2074\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-813\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.46E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-813 187.149.51.184 0156d1a4-9d60-406c-9d76-693d15dd81ff 2020-01-22 00:30:34.748048 27515 1368 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.51.184 0947ac52-2534-4ba7-9c09-79238c9f33b8 2020-01-22 01:34:09.724541 27516 1475 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 187.149.51.184 ffade19b-8b6c-489c-943f-1668d57d820e 2020-01-22 01:35:07.934173 27517 1368 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.51.184 ffade19b-8b6c-489c-943f-1668d57d820e 2020-01-22 01:35:07.972703 27518 1368 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.51.184 2dc44ed2-f751-48db-9f6f-e73803371a8a 2020-01-22 01:35:38.963385 27519 420 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-01-21\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.51.184 747f174a-c59f-4736-9c9b-f16b38aa3776 2020-01-22 01:35:41.348965 27520 776 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 763\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.607E3\nphysical_cash: !ruby/object:BigDecimal 18:0.607E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.51.184 3cab3a79-c8eb-4c5f-8b6f-c2fddec87ec1 2020-01-22 01:47:51.238559 27521 763 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 3cab3a79-c8eb-4c5f-8b6f-c2fddec87ec1 2020-01-22 01:47:51.25569 27522 777 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 758\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.7368E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.7548E3\nphysical_cash: !ruby/object:BigDecimal 18:0.17548E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.51.184 81fb58aa-95a5-4cae-87db-4b3ca6fe5b0c 2020-01-22 02:04:49.271086 27523 758 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 81fb58aa-95a5-4cae-87db-4b3ca6fe5b0c 2020-01-22 02:04:49.286606 27524 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-21 02:46:07.568975000 Z\n- &1 2020-01-21 17:19:33.015561000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-22 02:50:37.925212266 Z\nsign_in_count:\n- 93\n- 94\n 189 \N 189.186.117.149 01293161-a263-4b3e-9e4b-f5fb0b0c609c 2020-01-22 02:50:37.933175 27525 21 User \N \N 21 User \N update ---\nunique_session_id:\n- gPUKJfh_F5yqnXMq3xVF\n- kPJ_hG4WK9QTHEQdyYWK\n 190 \N 189.186.117.149 01293161-a263-4b3e-9e4b-f5fb0b0c609c 2020-01-22 02:50:37.950734 27526 778 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 762\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1386E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1386E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 67dfbca8-34c2-4845-9fd8-f44b394874e4 2020-01-22 02:51:13.292029 27527 762 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 67dfbca8-34c2-4845-9fd8-f44b394874e4 2020-01-22 02:51:13.307442 27528 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-21 21:20:28.455948000 Z\n- &1 2020-01-21 23:11:31.569118000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-22 17:32:06.159567014 Z\nsign_in_count:\n- 80\n- 81\n 162 \N 187.149.51.184 84a1a1af-fe92-49ed-b034-a7b4a8c639ad 2020-01-22 17:32:06.190109 27529 27 User \N \N 27 User \N update ---\nunique_session_id:\n- xomQhWMx4NyaqJi5abZ7\n- kT2imUkVMa3tU6wC4gNq\n 163 \N 187.149.51.184 84a1a1af-fe92-49ed-b034-a7b4a8c639ad 2020-01-22 17:32:06.213167 27530 764 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.7548E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 754.8 187.149.51.184 639977c4-6d34-436e-a95c-4669482fdb22 2020-01-22 17:32:29.791679 27531 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-21 17:19:33.015561000 Z\n- &1 2020-01-22 02:50:37.925212000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-22 17:59:58.949354055 Z\nsign_in_count:\n- 94\n- 95\n 191 \N 189.186.117.149 b2d07389-0917-4768-aa87-378735251b7d 2020-01-22 17:59:58.978494 27532 21 User \N \N 21 User \N update ---\nunique_session_id:\n- kPJ_hG4WK9QTHEQdyYWK\n- VVYNhsRU5YukTMT_fYAC\n 192 \N 189.186.117.149 b2d07389-0917-4768-aa87-378735251b7d 2020-01-22 17:59:59.002937 27533 765 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1386E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1386.0 189.186.117.149 a5560a32-f804-42af-9d3a-8540304b2599 2020-01-22 18:00:25.244455 27534 2837 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 662\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1667\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.117.149 ae16c73a-bf93-43d4-be1a-c7d557d8f2ef 2020-01-22 18:00:53.140544 27535 2837 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 662\n- 765\n 2 movimiento de efectivo por venta con folio PV3-V-167 189.186.117.149 ae16c73a-bf93-43d4-be1a-c7d557d8f2ef 2020-01-22 18:00:53.168567 27536 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-21 01:17:21.438348000 Z\n- &1 2020-01-21 19:07:36.312961000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-22 18:23:11.425027477 Z\nsign_in_count:\n- 450\n- 451\n 905 \N 187.149.51.184 c8990398-082e-44a5-9dc5-eb7462b0e356 2020-01-22 18:23:11.431673 27537 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 1XjE4Sc2JasPCSpyFtxD\n- YC-Mr4-zzhY6KVyKgeso\n 906 \N 187.149.51.184 c8990398-082e-44a5-9dc5-eb7462b0e356 2020-01-22 18:23:11.449463 27538 766 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.607E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 607.0 187.149.51.184 09068fb5-8f9d-48db-8e28-536781207895 2020-01-22 18:26:37.152147 27539 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-21 19:10:14.218246000 Z\n- &1 2020-01-21 23:54:15.364785000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-22 20:01:44.438180348 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1317\n- 1318\n 2636 \N 189.186.117.149 efee1d2f-41d6-488c-a890-15f153303641 2020-01-22 20:01:44.464657 27540 4 User \N \N 4 User \N update ---\nunique_session_id:\n- z8X_tQgz32nUixQz4wTp\n- sTSgBtJZXE_9oiBe2Z1d\n 2637 \N 189.186.117.149 efee1d2f-41d6-488c-a890-15f153303641 2020-01-22 20:01:44.489989 27541 793 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '793'\n is_parent: false\n sku: PAN-793\n name: PNT-0019\n description: PANTALON DUCHÉSS NEGRO PIEL ST-IP0147\n price_base: '260.0'\n price_sale: '749.0'\n img_product: IMG_4274.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '8'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000793'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-12 20:30:02.046354'\n updated_at: &12 2020-01-22 20:14:26.159832668 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '793'\n sku: PAN-793\n name: PNT-0019\n description: PANTALON DUCHÉSS NEGRO PIEL ST-IP0147\n price_base: '260.00'\n price_sale: '749.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-12 20:30:02.046354'\n updated_at: '2019-10-13 01:11:34.29545'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000793'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '8'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '793'\n type: *3\n value: 793\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAN-793\n type: *7\n value: PAN-793\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PNT-0019\n type: *8\n value: PNT-0019\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTALON DUCHÉSS NEGRO PIEL ST-IP0147\n type: *6\n value: PANTALON DUCHÉSS NEGRO PIEL ST-IP0147\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '260.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.26E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '749.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.749E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4274.jpg\n type: *2\n value: IMG_4274.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '8'\n type: *3\n value: 8\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000793'\n type: *2\n value: '0000793'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-12 20:30:02.046354'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4274.jpg\n 4 El producto PAN-793 fue modificado. 189.186.117.149 ce827b1d-3962-441f-ad2b-18dfa6bf20d7 2020-01-22 20:14:26.212217 27542 683 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '683'\n is_parent: false\n sku: PAN-683\n name: PNT-0012\n description: PANTALON NEGRO 52127P MILK&HONEY\n price_base: '179.0'\n price_sale: '569.0'\n img_product: IMG_4277.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '8'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000683'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-22 03:43:35.427118'\n updated_at: &12 2020-01-22 20:15:51.058874836 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '683'\n sku: PAN-683\n name: PNT-0012\n description: PANTALON NEGRO 52127P MILK&HONEY\n price_base: '179.00'\n price_sale: '569.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-22 03:43:35.427118'\n updated_at: '2019-08-22 03:43:35.474897'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000683'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '8'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '683'\n type: *3\n value: 683\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAN-683\n type: *7\n value: PAN-683\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PNT-0012\n type: *8\n value: PNT-0012\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTALON NEGRO 52127P MILK&HONEY\n type: *6\n value: PANTALON NEGRO 52127P MILK&HONEY\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '179.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.179E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '569.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.569E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4277.jpg\n type: *2\n value: IMG_4277.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '8'\n type: *3\n value: 8\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000683'\n type: *2\n value: '0000683'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-22 03:43:35.427118'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4277.jpg\n 3 El producto PAN-683 fue modificado. 189.186.117.149 6b1a0327-88bc-4a33-a299-584f7203ecaf 2020-01-22 20:15:51.119729 27543 792 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '792'\n is_parent: false\n sku: PAN-792\n name: PNT-0018\n description: PANTALON PLATA FASHION ZONE ST-FZP-0008\n price_base: '295.0'\n price_sale: '769.0'\n img_product: IMG_4275.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '8'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000792'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-12 20:29:15.26726'\n updated_at: &12 2020-01-22 20:17:22.824280425 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '792'\n sku: PAN-792\n name: PNT-0018\n description: PANTALON PLATA FASHION ZONE ST-FZP-0008\n price_base: '295.00'\n price_sale: '769.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-12 20:29:15.26726'\n updated_at: '2019-10-12 20:29:15.299917'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000792'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '8'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '792'\n type: *3\n value: 792\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAN-792\n type: *7\n value: PAN-792\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PNT-0018\n type: *8\n value: PNT-0018\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTALON PLATA FASHION ZONE ST-FZP-0008\n type: *6\n value: PANTALON PLATA FASHION ZONE ST-FZP-0008\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '295.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.295E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '769.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.769E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4275.jpg\n type: *2\n value: IMG_4275.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '8'\n type: *3\n value: 8\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000792'\n type: *2\n value: '0000792'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-12 20:29:15.26726'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4275.jpg\n 3 El producto PAN-792 fue modificado. 189.186.117.149 19ea58e0-1198-4c8e-b0a6-def696b876b6 2020-01-22 20:17:22.868712 27544 951 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '951'\n is_parent: false\n sku: FAL-951\n name: FLD-0020\n description: FALDA PATOLES MUYMUY NEGRA ST-MM0875\n price_base: '260.0'\n price_sale: '699.0'\n img_product: IMG_4276.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000951'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-11-20 20:54:35.275816'\n updated_at: &12 2020-01-22 20:19:39.039493388 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '951'\n sku: FAL-951\n name: FLD-0020\n description: FALDA PATOLES MUYMUY NEGRA ST-MM0875\n price_base: '260.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-11-20 20:54:35.275816'\n updated_at: '2019-11-20 20:54:35.340275'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000951'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '951'\n type: *3\n value: 951\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-951\n type: *7\n value: FAL-951\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0020\n type: *8\n value: FLD-0020\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA PATOLES MUYMUY NEGRA ST-MM0875\n type: *6\n value: FALDA PATOLES MUYMUY NEGRA ST-MM0875\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '260.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.26E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4276.jpg\n type: *2\n value: IMG_4276.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000951'\n type: *2\n value: '0000951'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-11-20 20:54:35.275816'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4276.jpg\n 3 El producto FAL-951 fue modificado. 189.186.117.149 83ccdc63-7cc4-4267-bb51-e45d87cef993 2020-01-22 20:19:39.090696 27545 60 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '60'\n is_parent: false\n sku: BLU-60\n name: B-0101\n description: PANTI AZUL Y ROSA CQBYCQ\n price_base: '240.0'\n price_sale: '699.0'\n img_product: IMG_4279.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000060'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862638'\n updated_at: &12 2020-01-22 20:32:21.442323398 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '60'\n sku: BLU-60\n name: B-0101\n description: PANTI AZUL Y ROSA CQBYCQ\n price_base: '240.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862638'\n updated_at: '2019-02-04 09:10:14.055276'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000060'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '60'\n type: *3\n value: 60\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-60\n type: *7\n value: BLU-60\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: B-0101\n type: *8\n value: B-0101\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTI AZUL Y ROSA CQBYCQ\n type: *6\n value: PANTI AZUL Y ROSA CQBYCQ\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '240.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.24E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4279.jpg\n type: *2\n value: IMG_4279.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000060'\n type: *2\n value: '0000060'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862638'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4279.jpg\n 3 El producto BLU-60 fue modificado. 189.186.117.149 a28e7fcc-1670-4478-a5ea-ddc6ba2fca0f 2020-01-22 20:32:21.491088 27546 769 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '769'\n is_parent: false\n sku: CHA-865\n name: CHA-0001\n description: "CAMARRA DE PIEL COMME\\r\\n"\n price_base: '617.5'\n price_sale: '1235.0'\n img_product: IMG_4283.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000769'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-11 19:08:10.446104'\n updated_at: &12 2020-01-22 20:38:48.243670050 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '769'\n sku: CHA-865\n name: CHA-0001\n description: "CAMARRA DE PIEL COMME\\r\\n"\n price_base: '617.50'\n price_sale: '1235.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-11 19:08:10.446104'\n updated_at: '2019-10-28 21:33:20.899971'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000769'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '769'\n type: *3\n value: 769\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-865\n type: *7\n value: CHA-865\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0001\n type: *8\n value: CHA-0001\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "CAMARRA DE PIEL COMME\\r\\n"\n type: *6\n value: "CAMARRA DE PIEL COMME\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '617.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6175E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1235.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1235E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4283.jpg\n type: *2\n value: IMG_4283.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000769'\n type: *2\n value: '0000769'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-11 19:08:10.446104'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4283.jpg\n 4 El producto CHA-865 fue modificado. 189.186.117.149 e77bfc3c-4f0d-4bda-8270-09a8b6635348 2020-01-22 20:38:48.287295 27547 765 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '765'\n is_parent: false\n sku: CHA-865\n name: CHA-0007\n description: "CHAMARRA MICHEL GAMUZA COLOR BAIGE\\r\\n"\n price_base: '334.5'\n price_sale: '699.0'\n img_product: IMG_4285.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000765'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-11 19:04:50.464443'\n updated_at: &12 2020-01-22 20:43:10.922635442 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '765'\n sku: CHA-865\n name: CHA-0007\n description: "CHAMARRA MICHEL GAMUZA COLOR BAIGE\\r\\n"\n price_base: '334.50'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-11 19:04:50.464443'\n updated_at: '2019-12-19 01:35:48.585577'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000765'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '765'\n type: *3\n value: 765\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-865\n type: *7\n value: CHA-865\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0007\n type: *8\n value: CHA-0007\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "CHAMARRA MICHEL GAMUZA COLOR BAIGE\\r\\n"\n type: *6\n value: "CHAMARRA MICHEL GAMUZA COLOR BAIGE\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '334.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3345E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4285.jpg\n type: *2\n value: IMG_4285.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000765'\n type: *2\n value: '0000765'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-11 19:04:50.464443'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4285.jpg\n 5 El producto CHA-865 fue modificado. 189.186.117.149 47f1aba0-61d4-4035-bd0c-77e4ede57e78 2020-01-22 20:43:10.987 27548 766 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '766'\n is_parent: false\n sku: CHA-865\n name: CHA-0008\n description: "CHAMARRA NYLON DE LENTEJUELA NEGRA\\r\\n"\n price_base: '649.5'\n price_sale: '1299.0'\n img_product: IMG_4280.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000766'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-11 19:05:32.909811'\n updated_at: &12 2020-01-22 20:44:33.319349328 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '766'\n sku: CHA-865\n name: CHA-0008\n description: "CHAMARRA NYLON DE LENTEJUELA NEGRA\\r\\n"\n price_base: '649.50'\n price_sale: '1299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-11 19:05:32.909811'\n updated_at: '2019-10-28 21:33:48.948553'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000766'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '766'\n type: *3\n value: 766\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-865\n type: *7\n value: CHA-865\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0008\n type: *8\n value: CHA-0008\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "CHAMARRA NYLON DE LENTEJUELA NEGRA\\r\\n"\n type: *6\n value: "CHAMARRA NYLON DE LENTEJUELA NEGRA\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '649.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1299E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4280.jpg\n type: *2\n value: IMG_4280.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000766'\n type: *2\n value: '0000766'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-11 19:05:32.909811'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4280.jpg\n 4 El producto CHA-865 fue modificado. 189.186.117.149 12c4dca3-f931-442b-8533-0d41e153c2b4 2020-01-22 20:44:33.382112 27549 893 Product \N \N 4 User \N update ---\ndescription:\n- "Beige blanco gris \\r\\n"\n- "BALBOA NEGRO, GRIS Y BEIGE\\r\\n"\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '893'\n is_parent: false\n sku: CHA-893\n name: CHA-0011\n description: "BALBOA NEGRO, GRIS Y BEIGE\\r\\n"\n price_base: '260.0'\n price_sale: '699.0'\n img_product: IMG_4282.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000893'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-30 01:44:14.697182'\n updated_at: &12 2020-01-22 20:46:11.885817030 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '893'\n sku: CHA-893\n name: CHA-0011\n description: "Beige blanco gris \\r\\n"\n price_base: '260.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-30 01:44:14.697182'\n updated_at: '2019-10-30 01:44:14.735242'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000893'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '893'\n type: *3\n value: 893\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-893\n type: *7\n value: CHA-893\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0011\n type: *8\n value: CHA-0011\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "BALBOA NEGRO, GRIS Y BEIGE\\r\\n"\n type: *6\n value: "BALBOA NEGRO, GRIS Y BEIGE\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '260.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.26E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4282.jpg\n type: *2\n value: IMG_4282.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000893'\n type: *2\n value: '0000893'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-30 01:44:14.697182'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4282.jpg\n 3 El producto CHA-893 fue modificado. 189.186.117.149 8ab4b90d-8f33-4861-9b08-35597d735360 2020-01-22 20:46:11.939927 27550 770 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '770'\n is_parent: false\n sku: CHA-971\n name: S-0016\n description: "CHAMARRA MUYMUY LENJEJUELA PLATA\\r\\n"\n price_base: '449.5'\n price_sale: '899.0'\n img_product: IMG_4281.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000770'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-11 19:08:49.270124'\n updated_at: &12 2020-01-22 20:48:04.093302794 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '770'\n sku: CHA-971\n name: S-0016\n description: "CHAMARRA MUYMUY LENJEJUELA PLATA\\r\\n"\n price_base: '449.50'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-11 19:08:49.270124'\n updated_at: '2020-01-19 00:37:13.235503'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000770'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '770'\n type: *3\n value: 770\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-971\n type: *7\n value: CHA-971\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: S-0016\n type: *8\n value: S-0016\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "CHAMARRA MUYMUY LENJEJUELA PLATA\\r\\n"\n type: *6\n value: "CHAMARRA MUYMUY LENJEJUELA PLATA\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '449.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4281.jpg\n type: *2\n value: IMG_4281.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000770'\n type: *2\n value: '0000770'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-11 19:08:49.270124'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4281.jpg\n 5 El producto CHA-971 fue modificado. 189.186.117.149 9f8ee821-10ed-4aa2-a8b6-870329ed2922 2020-01-22 20:48:04.146076 27551 767 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '767'\n is_parent: false\n sku: CHA-971\n name: S-0009\n description: "CHAMARRA ROMPEVEINTO MUY MUYAMARILLA\\r\\n"\n price_base: '344.5'\n price_sale: '689.0'\n img_product: IMG_4284.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000767'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-11 19:06:12.488834'\n updated_at: &12 2020-01-22 20:52:52.605838744 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '767'\n sku: CHA-971\n name: S-0009\n description: "CHAMARRA ROMPEVEINTO MUY MUYAMARILLA\\r\\n"\n price_base: '344.50'\n price_sale: '689.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-11 19:06:12.488834'\n updated_at: '2020-01-19 00:36:53.008276'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000767'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '767'\n type: *3\n value: 767\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-971\n type: *7\n value: CHA-971\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: S-0009\n type: *8\n value: S-0009\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "CHAMARRA ROMPEVEINTO MUY MUYAMARILLA\\r\\n"\n type: *6\n value: "CHAMARRA ROMPEVEINTO MUY MUYAMARILLA\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '344.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3445E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '689.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.689E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4284.jpg\n type: *2\n value: IMG_4284.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000767'\n type: *2\n value: '0000767'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-11 19:06:12.488834'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4284.jpg\n 4 El producto CHA-971 fue modificado. 189.186.117.149 2009fb0f-00b6-4973-b52c-e785ec799f73 2020-01-22 20:52:52.652343 27552 903 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '903'\n is_parent: false\n sku: CHA-903\n name: CHA-0021\n description: "SACO JELOUSE TOMATO NEGRO CON BLANCO\\r\\n"\n price_base: '440.0'\n price_sale: '1099.0'\n img_product: IMG_4127.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000903'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-30 02:34:17.684908'\n updated_at: &12 2020-01-22 21:06:17.462008423 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '903'\n sku: CHA-903\n name: CHA-0021\n description: "SACO JELOUSE TOMATO NEGRO CON BLANCO\\r\\n"\n price_base: '440.00'\n price_sale: '1099.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-30 02:34:17.684908'\n updated_at: '2019-10-30 02:34:17.737366'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000903'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '903'\n type: *3\n value: 903\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-903\n type: *7\n value: CHA-903\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0021\n type: *8\n value: CHA-0021\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "SACO JELOUSE TOMATO NEGRO CON BLANCO\\r\\n"\n type: *6\n value: "SACO JELOUSE TOMATO NEGRO CON BLANCO\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '440.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.44E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1099.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1099E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4127.JPG\n type: *2\n value: IMG_4127.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000903'\n type: *2\n value: '0000903'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-30 02:34:17.684908'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4127.JPG\n 3 El producto CHA-903 fue modificado. 189.186.117.149 b56fea6b-bf0f-4630-a1a2-9a7918ff3365 2020-01-22 21:06:17.507511 27553 887 Product \N \N 4 User \N update ---\ndescription:\n- "Sacos JELOUSE TOMATO ST-JT2311 COLOR IVORY Y NEGRO \\r\\n"\n- "Sacos Capa JELOUSE TOMATO ST-JT2311 COLOR IVORY Y NEGRO \\r\\n"\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '887'\n is_parent: false\n sku: CHA-887\n name: CHA-0003\n description: "Sacos Capa JELOUSE TOMATO ST-JT2311 COLOR IVORY Y NEGRO \\r\\n"\n price_base: '395.0'\n price_sale: '1099.0'\n img_product: IMG_4123.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000887'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-30 01:31:24.413491'\n updated_at: &12 2020-01-22 21:07:10.848441509 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '887'\n sku: CHA-887\n name: CHA-0003\n description: "Sacos JELOUSE TOMATO ST-JT2311 COLOR IVORY Y NEGRO \\r\\n"\n price_base: '395.00'\n price_sale: '1099.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-30 01:31:24.413491'\n updated_at: '2019-10-30 01:31:24.463903'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000887'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '887'\n type: *3\n value: 887\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-887\n type: *7\n value: CHA-887\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0003\n type: *8\n value: CHA-0003\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "Sacos Capa JELOUSE TOMATO ST-JT2311 COLOR IVORY\n Y NEGRO \\r\\n"\n type: *6\n value: "Sacos Capa JELOUSE TOMATO ST-JT2311 COLOR IVORY Y NEGRO \\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '395.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.395E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1099.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1099E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4123.JPG\n type: *2\n value: IMG_4123.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000887'\n type: *2\n value: '0000887'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-30 01:31:24.413491'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4123.JPG\n 3 El producto CHA-887 fue modificado. 189.186.117.149 333151dd-43e6-4db4-b412-08758a54846c 2020-01-22 21:07:10.892767 27554 962 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '962'\n is_parent: false\n sku: CHA-962\n name: CHA-0024\n description: "SACO NEGRO CON ENCAJE SANJOY\\r\\n"\n price_base: '340.0'\n price_sale: '849.0'\n img_product: IMG_3689__1_.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000962'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-11-26 22:46:49.300471'\n updated_at: &12 2020-01-22 21:08:06.734277114 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '962'\n sku: CHA-962\n name: CHA-0024\n description: "SACO NEGRO CON ENCAJE SANJOY\\r\\n"\n price_base: '340.00'\n price_sale: '849.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-11-26 22:46:49.300471'\n updated_at: '2019-11-26 22:46:49.348959'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000962'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '962'\n type: *3\n value: 962\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-962\n type: *7\n value: CHA-962\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0024\n type: *8\n value: CHA-0024\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "SACO NEGRO CON ENCAJE SANJOY\\r\\n"\n type: *6\n value: "SACO NEGRO CON ENCAJE SANJOY\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '340.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.34E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '849.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.849E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_3689__1_.JPG\n type: *2\n value: IMG_3689__1_.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000962'\n type: *2\n value: '0000962'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-11-26 22:46:49.300471'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_3689__1_.JPG\n 3 El producto CHA-962 fue modificado. 189.186.117.149 b7f6deda-41c6-4540-85de-3e8a072e5f21 2020-01-22 21:08:06.790927 27555 2075 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 766\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.479E3\ntotal: !ruby/object:BigDecimal 18:0.72E3\nstatus: 0\ndate_sale: 2020-01-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1012\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 ea872fa8-189b-4d59-a3f8-dd888bf934aa 2020-01-22 22:07:31.469242 27556 1382 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.51.184 ea872fa8-189b-4d59-a3f8-dd888bf934aa 2020-01-22 22:07:31.517855 27557 2075 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 4f54cd01-13fe-4e07-8acd-b1c8640c3eb0 2020-01-22 22:07:37.646242 27558 2838 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 766\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.72E3\nmove_type: '1'\nsale_id: 2075\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1012\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.72E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1012 187.149.51.184 4f54cd01-13fe-4e07-8acd-b1c8640c3eb0 2020-01-22 22:07:37.68576 27559 415 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.1249E4\n- !ruby/object:BigDecimal 18:0.999E3\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '415'\n is_parent: false\n sku: PAN-415\n name: PANTALON COLOMBIANO\n description: PANTALON MEZCLILLA COLOMBIANOS\n price_base: '680.0'\n price_sale: '999'\n img_product: IMG_4269.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '8'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000415'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2020-01-23 00:36:14.315421918 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '415'\n sku: PAN-415\n name: PANTALON COLOMBIANO\n description: PANTALON MEZCLILLA COLOMBIANOS\n price_base: '680.00'\n price_sale: '1249.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:19.034424'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000415'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '8'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '415'\n type: *3\n value: 415\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAN-415\n type: *7\n value: PAN-415\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PANTALON COLOMBIANO\n type: *8\n value: PANTALON COLOMBIANO\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTALON MEZCLILLA COLOMBIANOS\n type: *6\n value: PANTALON MEZCLILLA COLOMBIANOS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '680.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.68E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4269.jpg\n type: *2\n value: IMG_4269.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '8'\n type: *3\n value: 8\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000415'\n type: *2\n value: '0000415'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4269.jpg\n 3 El producto PAN-415 fue modificado. 189.186.117.149 a10e83f0-cff7-4e85-87ac-23723932410e 2020-01-23 00:36:14.379562 27560 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-21 23:11:31.569118000 Z\n- &1 2020-01-22 17:32:06.159567000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-23 02:01:57.019178810 Z\nsign_in_count:\n- 81\n- 82\n 164 \N 187.149.51.184 24be130e-c029-45e2-a94c-fa87cb988b14 2020-01-23 02:01:57.026809 27561 27 User \N \N 27 User \N update ---\nunique_session_id:\n- kT2imUkVMa3tU6wC4gNq\n- NztBADhfPxvXPqxhdRsz\n 165 \N 187.149.51.184 24be130e-c029-45e2-a94c-fa87cb988b14 2020-01-23 02:01:57.042296 27562 779 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 766\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.72E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.627E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1327E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.51.184 c740e000-921e-4a48-bcbf-5cebb0280794 2020-01-23 02:05:23.111125 27563 766 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 c740e000-921e-4a48-bcbf-5cebb0280794 2020-01-23 02:05:23.133514 27564 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-21 23:54:15.364785000 Z\n- &1 2020-01-22 20:01:44.438180000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-23 02:15:13.557787806 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1318\n- 1319\n 2638 \N 189.186.54.195 dac33ff1-c212-4cb0-8716-5f5050971028 2020-01-23 02:15:13.564895 27565 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sTSgBtJZXE_9oiBe2Z1d\n- UNpNakrx6Pyas5kejK_9\n 2639 \N 189.186.54.195 dac33ff1-c212-4cb0-8716-5f5050971028 2020-01-23 02:15:13.582723 27566 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-22 20:01:44.438180000 Z\n- &1 2020-01-23 02:15:13.557787000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-23 02:21:46.991015800 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1319\n- 1320\n 2640 \N 189.186.117.149 b763f6cb-d49e-43b9-8c6c-35a9e935c049 2020-01-23 02:21:46.999642 27567 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UNpNakrx6Pyas5kejK_9\n- P-CGNWjbcbgy6iuNgnpK\n 2641 \N 189.186.117.149 b763f6cb-d49e-43b9-8c6c-35a9e935c049 2020-01-23 02:21:47.01958 27568 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-22 02:50:37.925212000 Z\n- &1 2020-01-22 17:59:58.949354000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-23 02:22:09.192129210 Z\nsign_in_count:\n- 95\n- 96\n 193 \N 189.186.117.149 fd1a8257-1d61-4e2e-980e-3acccb62e863 2020-01-23 02:22:09.198964 27569 21 User \N \N 21 User \N update ---\nunique_session_id:\n- VVYNhsRU5YukTMT_fYAC\n- jdMwn7ePyPvhEt9kwiqc\n 194 \N 189.186.117.149 fd1a8257-1d61-4e2e-980e-3acccb62e863 2020-01-23 02:22:09.217677 27570 780 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 765\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.5E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.886E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1886E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 fc678766-f436-4422-95e3-a8c58f66b7ac 2020-01-23 02:59:41.728868 27571 765 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 fc678766-f436-4422-95e3-a8c58f66b7ac 2020-01-23 02:59:41.745486 27572 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-22 17:32:06.159567000 Z\n- &1 2020-01-23 02:01:57.019178000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-23 17:03:30.590994608 Z\nsign_in_count:\n- 82\n- 83\n 166 \N 187.149.51.184 f3b67f2c-a219-40d2-adf2-03308469d8c2 2020-01-23 17:03:30.62159 27573 27 User \N \N 27 User \N update ---\nunique_session_id:\n- NztBADhfPxvXPqxhdRsz\n- xiGgrSPHUn_PwAMCnJie\n 167 \N 187.149.51.184 f3b67f2c-a219-40d2-adf2-03308469d8c2 2020-01-23 17:03:30.643569 27574 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-22 17:59:58.949354000 Z\n- &1 2020-01-23 02:22:09.192129000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-23 18:02:49.534587700 Z\nsign_in_count:\n- 96\n- 97\n 195 \N 189.186.117.149 ce26b6d2-a81f-4fc6-bab2-95abff25966d 2020-01-23 18:02:49.541145 27575 21 User \N \N 21 User \N update ---\nunique_session_id:\n- jdMwn7ePyPvhEt9kwiqc\n- qS1Y_gDCVmERucaJmyKx\n 196 \N 189.186.117.149 ce26b6d2-a81f-4fc6-bab2-95abff25966d 2020-01-23 18:02:49.557554 27576 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-21 19:07:36.312961000 Z\n- &1 2020-01-22 18:23:11.425027000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-23 18:06:59.939382933 Z\nsign_in_count:\n- 451\n- 452\n 907 \N 187.149.51.184 bc19f872-dea3-4c5e-885f-0fd916f32b61 2020-01-23 18:06:59.945101 27577 2 User \N \N 2 User \N update ---\nunique_session_id:\n- YC-Mr4-zzhY6KVyKgeso\n- SJbxyDcSrcUpXxVMB-1v\n 908 \N 187.149.51.184 bc19f872-dea3-4c5e-885f-0fd916f32b61 2020-01-23 18:06:59.961738 27578 2076 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 764\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3196E3\ntotal: !ruby/object:BigDecimal 18:0.4794E3\nstatus: 0\ndate_sale: 2020-01-23\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-814\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 244db82b-86c3-4093-8fef-42091114e896 2020-01-23 18:19:40.671421 27579 1047 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.51.184 244db82b-86c3-4093-8fef-42091114e896 2020-01-23 18:19:40.705194 27580 2076 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 5f8dd54c-91f1-4ca5-90b0-e9f0491360cf 2020-01-23 18:20:19.480919 27581 2839 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 764\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4794E3\nmove_type: '1'\nsale_id: 2076\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-814\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.206E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-814 187.149.51.184 5f8dd54c-91f1-4ca5-90b0-e9f0491360cf 2020-01-23 18:20:19.519287 27582 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-01-21 00:20:45.841604000 Z\n- &1 2020-01-21 00:41:13.461036000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-23 18:48:18.782340809 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3361499151\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3153328974\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3153328974\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 155\n- 156\n 312 \N 187.149.51.184 66f6df09-2dcf-4971-ac0d-b445ac01847b 2020-01-23 18:48:18.790342 27583 1 User \N \N 1 User \N update ---\nunique_session_id:\n- EvwNr2fXZMAXK7NEar86\n- 2Mi7ksupG1rVuz6JGMDd\n 313 \N 187.149.51.184 66f6df09-2dcf-4971-ac0d-b445ac01847b 2020-01-23 18:48:18.810301 27584 767 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.886E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 886.0 189.186.117.149 35e86a1c-f739-41a6-9526-0d551dd0d2a9 2020-01-23 20:23:52.162943 27585 279 Customer \N \N 21 User \N create ---\nnick_name: NELLY KINDER\nphone: ''\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.2E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente NELLY KINDER fue registrado. 189.186.117.149 3f81356c-403b-4ced-917a-bd0a5a2de918 2020-01-23 20:24:09.64785 27586 2077 Sale \N \N 21 User \N create ---\ncustomer_id: 279\nuser_id: 21\nopen_cash_register_id: 767\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-01-23\nsaletype: 0\nseller_id: 12\nsale_code: PV3-V-249\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 5de5d203-ac54-476c-ab0f-0e271a3d3ad3 2020-01-23 20:24:52.666738 27587 1431 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.117.149 5de5d203-ac54-476c-ab0f-0e271a3d3ad3 2020-01-23 20:24:52.696261 27588 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-23 02:15:13.557787000 Z\n- &1 2020-01-23 02:21:46.991015000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-24 00:02:38.944260390 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946491\n mask_addr: 4294967295\nsign_in_count:\n- 1320\n- 1321\n 2642 \N 200.68.182.251 28df020d-e761-4f06-8afb-b44b91efef55 2020-01-24 00:02:38.951771 27589 4 User \N \N 4 User \N update ---\nunique_session_id:\n- P-CGNWjbcbgy6iuNgnpK\n- i92Tw5ryRnzHDzbmzYJN\n 2643 \N 200.68.182.251 28df020d-e761-4f06-8afb-b44b91efef55 2020-01-24 00:02:38.970098 27590 2078 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 764\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2276E3\ntotal: !ruby/object:BigDecimal 18:0.3414E3\nstatus: 0\ndate_sale: 2020-01-23\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-815\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 55248225-8b03-4c81-87ac-5452ba16926f 2020-01-24 00:51:49.398675 27591 1455 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.51.184 55248225-8b03-4c81-87ac-5452ba16926f 2020-01-24 00:51:49.454367 27592 2078 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 b947db0c-eec5-413c-8188-37ee72315960 2020-01-24 00:51:58.257074 27593 2840 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 764\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3414E3\nmove_type: '1'\nsale_id: 2078\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-815\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.586E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-815 187.149.51.184 b947db0c-eec5-413c-8188-37ee72315960 2020-01-24 00:51:58.291958 27594 768 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.627E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 627.0 187.149.51.184 91347e1d-1f2e-421b-a0b9-2a7589a36f0c 2020-01-24 01:02:43.52334 27595 2079 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 768\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.759E3\ntotal: !ruby/object:BigDecimal 18:0.114E4\nstatus: 0\ndate_sale: 2020-01-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1013\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 99b9347a-772c-4436-821c-f9c73bddbf29 2020-01-24 01:04:04.811904 27596 1196 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.51.184 99b9347a-772c-4436-821c-f9c73bddbf29 2020-01-24 01:04:04.859712 27597 2079 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 3c84141c-b055-4cb4-bc6e-183f2b4999a8 2020-01-24 01:04:14.489921 27598 2841 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 768\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.114E4\nmove_type: '1'\nsale_id: 2079\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1013\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.114E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1013 187.149.51.184 3c84141c-b055-4cb4-bc6e-183f2b4999a8 2020-01-24 01:04:14.516992 27599 2080 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 768\namount: !ruby/object:BigDecimal 18:0.679E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.27E3\ntotal: !ruby/object:BigDecimal 18:0.409E3\nstatus: 0\ndate_sale: 2020-01-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1014\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 a083808f-f505-4b6b-bd7a-286a63fb324a 2020-01-24 01:06:09.335013 27600 705 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.51.184 a083808f-f505-4b6b-bd7a-286a63fb324a 2020-01-24 01:06:09.364445 27601 2080 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 29b9e4d5-5ca8-41c5-8fc1-b7c841082857 2020-01-24 01:06:15.373009 27602 2842 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 768\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.409E3\nmove_type: '1'\nsale_id: 2080\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1014\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.409E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1014 187.149.51.184 29b9e4d5-5ca8-41c5-8fc1-b7c841082857 2020-01-24 01:06:15.396944 27603 268 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 768\nquantity: !ruby/object:BigDecimal 18:0.1205E4\nstatus: 1\nobservations: sueldo Rocío\nexpense_date: 2020-01-23\nexpense_code: PV1-E-189\n 1 Egreso por 1205.0 registrado 187.149.51.184 f0f7d8f7-2442-4212-9c69-5cf0abc98a84 2020-01-24 01:51:56.103421 27604 2843 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 768\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1205E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 268\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.51.184 f0f7d8f7-2442-4212-9c69-5cf0abc98a84 2020-01-24 01:51:56.136307 27605 781 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 768\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1549E4\namount_out: !ruby/object:BigDecimal 18:0.1205E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.971E3\nphysical_cash: !ruby/object:BigDecimal 18:0.971E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.51.184 ea9cc276-2525-4449-ba52-c6186f1e002d 2020-01-24 02:01:40.738437 27606 768 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 ea9cc276-2525-4449-ba52-c6186f1e002d 2020-01-24 02:01:40.754645 27607 782 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 764\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.8208E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1575E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1575E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.51.184 817e8337-a831-4ac2-a4ed-eebb55345136 2020-01-24 02:02:38.677654 27608 764 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 817e8337-a831-4ac2-a4ed-eebb55345136 2020-01-24 02:02:38.691807 27609 783 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 767\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.886E3\nphysical_cash: !ruby/object:BigDecimal 18:0.886E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 2495f335-94ff-4c42-ab72-06b02945026e 2020-01-24 03:00:59.087023 27610 767 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 2495f335-94ff-4c42-ab72-06b02945026e 2020-01-24 03:00:59.11026 27611 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-23 02:01:57.019178000 Z\n- &1 2020-01-23 17:03:30.590994000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-24 17:03:50.001616873 Z\nsign_in_count:\n- 83\n- 84\n 168 \N 187.149.51.184 4d77696b-ff68-4139-b179-a3ac9595d28d 2020-01-24 17:03:50.054461 27612 27 User \N \N 27 User \N update ---\nunique_session_id:\n- xiGgrSPHUn_PwAMCnJie\n- xWceg-zm97Mub6rAbEoV\n 169 \N 187.149.51.184 4d77696b-ff68-4139-b179-a3ac9595d28d 2020-01-24 17:03:50.086751 27613 769 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1575E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1575.0 187.149.51.184 0be53449-5bf3-4354-9948-b182324683d9 2020-01-24 17:38:20.12377 27614 2081 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 769\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2796E3\ntotal: !ruby/object:BigDecimal 18:0.4194E3\nstatus: 0\ndate_sale: 2020-01-24\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-816\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 4de97161-55fe-4dba-a5f4-776e17eabd8a 2020-01-24 17:38:55.882812 27615 1079 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.51.184 4de97161-55fe-4dba-a5f4-776e17eabd8a 2020-01-24 17:38:55.916093 27616 2081 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 6f0f5204-1efd-4707-a16d-12d9094a19ca 2020-01-24 17:39:28.194543 27617 2844 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 769\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4194E3\nmove_type: '1'\nsale_id: 2081\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-816\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.806E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-816 187.149.51.184 6f0f5204-1efd-4707-a16d-12d9094a19ca 2020-01-24 17:39:28.218116 27618 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-22 18:23:11.425027000 Z\n- &1 2020-01-23 18:06:59.939382000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-24 17:46:48.865017010 Z\nsign_in_count:\n- 452\n- 453\n 909 \N 187.149.51.184 e44d8102-54e9-4933-95d5-dbdc3e4ca0e6 2020-01-24 17:46:48.870956 27619 2 User \N \N 2 User \N update ---\nunique_session_id:\n- SJbxyDcSrcUpXxVMB-1v\n- 5dnUs1ySiznyvrv9zJz-\n 910 \N 187.149.51.184 e44d8102-54e9-4933-95d5-dbdc3e4ca0e6 2020-01-24 17:46:48.887159 27620 770 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.971E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 971.0 187.149.51.184 f88f55b9-90a4-4dec-aae8-6be8fe98a07c 2020-01-24 17:47:03.420326 27621 2082 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 770\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3E3\ntotal: !ruby/object:BigDecimal 18:0.449E3\nstatus: 0\ndate_sale: 2020-01-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1015\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 359d40b7-268a-4fb1-bf2c-cd094162b7fd 2020-01-24 17:47:32.092791 27622 1406 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.51.184 359d40b7-268a-4fb1-bf2c-cd094162b7fd 2020-01-24 17:47:32.121903 27623 2082 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 be22eff5-2c64-4d91-af01-c20aef900ea8 2020-01-24 17:47:43.185203 27624 2845 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 770\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.449E3\nmove_type: '1'\nsale_id: 2082\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1015\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.449E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1015 187.149.51.184 be22eff5-2c64-4d91-af01-c20aef900ea8 2020-01-24 17:47:43.210276 27625 2083 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 770\namount: !ruby/object:BigDecimal 18:0.2299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.92E3\ntotal: !ruby/object:BigDecimal 18:0.1379E4\nstatus: 0\ndate_sale: 2020-01-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1016\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 8a3bf555-5f03-4c7a-8ecd-296bca62c63d 2020-01-24 18:23:45.355448 27626 1370 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.51.184 8a3bf555-5f03-4c7a-8ecd-296bca62c63d 2020-01-24 18:23:45.390556 27627 2083 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 2aba7fce-b457-4ebc-a89c-4dfb634b13a7 2020-01-24 18:23:55.208663 27679 804 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 11 \N 189.186.117.149 19b3f49f-d632-4aac-a3fd-ccf41acb3836 2020-01-24 23:09:47.144464 27628 2846 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 770\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1379E4\nmove_type: '1'\nsale_id: 2083\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1016\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1379E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1016 187.149.51.184 2aba7fce-b457-4ebc-a89c-4dfb634b13a7 2020-01-24 18:23:55.238508 27629 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-23 02:21:46.991015000 Z\n- &1 2020-01-24 00:02:38.944260000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-24 18:54:06.993565868 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946491\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946491\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1321\n- 1322\n 2644 \N 189.186.117.149 327e4a3a-c4a1-4f73-a6d3-a835567db33e 2020-01-24 18:54:07.025186 27630 4 User \N \N 4 User \N update ---\nunique_session_id:\n- i92Tw5ryRnzHDzbmzYJN\n- JgT5q5_7yTvxgMnp3szS\n 2645 \N 189.186.117.149 327e4a3a-c4a1-4f73-a6d3-a835567db33e 2020-01-24 18:54:07.053362 27631 1422 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.117.149 6dd90ba7-7a68-4209-9d54-a50b1d332f1a 2020-01-24 18:58:37.312025 27632 421 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-01-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.117.149 5044e892-7f8d-4937-b8e4-f781ef520aea 2020-01-24 18:58:38.946471 27633 457 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.117.149 724a2d6c-2086-48db-a75b-aac2eccd5851 2020-01-24 19:02:08.454861 27634 457 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.117.149 62bae5b0-39be-439f-b7c3-0507d271e260 2020-01-24 19:02:11.678 27635 422 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-01-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.117.149 ed36ebfe-de1a-4274-8337-bec567693c16 2020-01-24 19:02:19.652087 27636 1392 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 187.149.51.184 03d320e3-278e-415a-a456-60d6a1173369 2020-01-24 19:08:51.05365 27637 1033 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 187.149.51.184 03d320e3-278e-415a-a456-60d6a1173369 2020-01-24 19:08:51.077689 27638 1557 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 187.149.51.184 32ecf132-7c35-486c-9669-39fbfe645c33 2020-01-24 19:10:33.963545 27639 1370 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.51.184 32ecf132-7c35-486c-9669-39fbfe645c33 2020-01-24 19:10:33.993639 27640 1 PosConfig \N \N 4 User \N update ---\nticket_description:\n- "MORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN, SIN \\r\\nTEL. 6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK: SUO BOUTIQUE\\r\\n"\n- "RFC. UIOS851003N7A\\r\\nMORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN, SIN \\r\\nTEL.\n 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK: SUO BOUTIQUE\\r\\n"\n 14 Se actualizaron los parámetros generales 189.186.117.149 d77f5c59-b09a-48e9-8b13-0fc35bbb05d5 2020-01-24 20:01:11.465829 27641 2084 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 770\namount: !ruby/object:BigDecimal 18:0.2388E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.316E3\ntotal: !ruby/object:BigDecimal 18:0.2072E4\nstatus: 0\ndate_sale: 2020-01-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1017\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 62f918ab-e776-4d5d-ac21-78e270a5dcc0 2020-01-24 20:34:14.711216 27642 1421 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.51.184 62f918ab-e776-4d5d-ac21-78e270a5dcc0 2020-01-24 20:34:14.75786 27643 1260 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.51.184 62f918ab-e776-4d5d-ac21-78e270a5dcc0 2020-01-24 20:34:14.796255 27644 2084 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 351d2164-b9f4-423f-9f7d-e707b648f04a 2020-01-24 20:34:32.510698 27645 2847 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 770\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2084\ncardnumber: 1381\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1017\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1017 187.149.51.184 351d2164-b9f4-423f-9f7d-e707b648f04a 2020-01-24 20:34:32.541815 27646 2848 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 770\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.473E3\nmove_type: '1'\nsale_id: 2084\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1017\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.473E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1017 187.149.51.184 1a20fe53-bc39-4cec-b3c5-58be790b3978 2020-01-24 20:34:43.270752 27647 2085 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 770\namount: !ruby/object:BigDecimal 18:0.199E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.199E3\nstatus: 0\ndate_sale: 2020-01-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1018\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 f390610c-00e7-4e87-a6dc-6f126843d53e 2020-01-24 20:38:43.806381 27648 1296 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.51.184 f390610c-00e7-4e87-a6dc-6f126843d53e 2020-01-24 20:38:43.839297 27649 2085 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 f1293909-b177-4927-a56f-20f23103da3f 2020-01-24 20:38:49.032139 27650 2849 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 770\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.199E3\nmove_type: '1'\nsale_id: 2085\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1018\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.199E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1018 187.149.51.184 f1293909-b177-4927-a56f-20f23103da3f 2020-01-24 20:38:49.069267 27651 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-01-21 00:41:13.461036000 Z\n- &1 2020-01-23 18:48:18.782340000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-24 20:42:27.845662866 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3153328974\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 156\n- 157\n 314 \N 187.149.51.184 02856115-f5a4-456e-bd91-dfb0a7c86c2b 2020-01-24 20:42:27.854003 27652 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 2Mi7ksupG1rVuz6JGMDd\n- 682UqP54jPCn2L714viN\n 315 \N 187.149.51.184 02856115-f5a4-456e-bd91-dfb0a7c86c2b 2020-01-24 20:42:27.871442 27653 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-24 00:02:38.944260000 Z\n- &1 2020-01-24 18:54:06.993565000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-24 21:18:44.531174929 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946491\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1322\n- 1323\n 2646 \N 189.186.54.195 ee9c0654-aa7d-4831-8125-d8775d005bad 2020-01-24 21:18:44.540402 27654 4 User \N \N 4 User \N update ---\nunique_session_id:\n- JgT5q5_7yTvxgMnp3szS\n- NMskBBHBqsxQxkD78sX_\n 2647 \N 189.186.54.195 ee9c0654-aa7d-4831-8125-d8775d005bad 2020-01-24 21:18:44.560897 27655 2086 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 769\namount: !ruby/object:BigDecimal 18:0.989E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3956E3\ntotal: !ruby/object:BigDecimal 18:0.5934E3\nstatus: 0\ndate_sale: 2020-01-24\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-817\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 61fbd6fd-4aed-4b5b-be87-f0b0fc807238 2020-01-24 22:35:16.90359 27656 1445 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.51.184 61fbd6fd-4aed-4b5b-be87-f0b0fc807238 2020-01-24 22:35:16.936103 27657 2086 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 9c3166c3-cb04-4187-91c8-1ba0436fe2bf 2020-01-24 22:49:41.302074 27658 2850 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 769\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5934E3\nmove_type: '1'\nsale_id: 2086\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-817\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.66E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-817 187.149.51.184 9c3166c3-cb04-4187-91c8-1ba0436fe2bf 2020-01-24 22:49:41.327959 27659 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-24 18:54:06.993565000 Z\n- &1 2020-01-24 21:18:44.531174000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-24 23:03:00.915102938 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1323\n- 1324\n 2648 \N 189.186.117.149 3517182e-c415-4fa9-9d94-28cf6da85cef 2020-01-24 23:03:00.944588 27660 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NMskBBHBqsxQxkD78sX_\n- Ez8hy6GKTxF-_sVyN_-j\n 2649 \N 189.186.117.149 3517182e-c415-4fa9-9d94-28cf6da85cef 2020-01-24 23:03:00.974676 27661 759 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 189.186.117.149 0da4fe71-5c2f-45d6-a851-91d6b543f747 2020-01-24 23:03:58.546253 27662 759 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.117.149 e43b6f2c-e8c5-4159-9ff1-55887c88ed86 2020-01-24 23:04:02.123431 27663 573 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.117.149 2cd6f2af-6aab-41da-b66a-6f83f2cda4fa 2020-01-24 23:04:45.084407 27664 573 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 189.186.117.149 4c2d8a1a-b8be-4875-b0f4-2c29d4a4ded3 2020-01-24 23:05:18.751278 27665 273 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.117.149 c64a5e3f-617b-4296-90d0-6979216f35fd 2020-01-24 23:05:34.503653 27666 273 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.117.149 f257f21e-264a-4dcd-a344-1e02016308b1 2020-01-24 23:05:40.771299 27667 430 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.117.149 671005de-ed82-443c-bcbb-79e92048fee7 2020-01-24 23:06:30.035742 27668 430 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.117.149 2a54aac6-e048-4e1b-99b8-daa0ca7447e4 2020-01-24 23:06:34.376708 27669 429 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 189.186.117.149 36b195fe-6cd5-4d6e-b265-5c24df8eca6f 2020-01-24 23:07:09.035064 27670 429 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.117.149 670034c8-72e3-448e-b302-180819ee448e 2020-01-24 23:07:11.817147 27671 820 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.117.149 c251ca90-a8de-4407-b725-7bcdd8c54d9e 2020-01-24 23:07:42.622113 27672 820 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.117.149 b036b89d-c58f-4a9b-a6bf-acbac086421e 2020-01-24 23:07:45.81366 27673 578 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.117.149 349bfc7e-8018-4b9d-9b8b-5c265f63dc16 2020-01-24 23:08:01.747918 27674 578 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.117.149 54a671ec-7e1e-48f8-ad16-26fa776fe0e2 2020-01-24 23:08:04.921594 27675 1001 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.117.149 4340c896-5756-432a-91af-e3156f2a2838 2020-01-24 23:08:47.698879 27676 1001 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.117.149 eb4f3a40-d8b5-457b-a69f-03a4d032333b 2020-01-24 23:08:51.657496 27677 1130 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.117.149 60a25fa8-ccb4-4ba3-a785-413949ba3e06 2020-01-24 23:09:10.571504 27678 1130 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.117.149 2f6e104b-9296-428f-b1ae-a7615f5fcf76 2020-01-24 23:09:18.228934 27680 804 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.3E1\n 12 \N 189.186.117.149 f14dfcdb-4bcd-4c9a-bd56-e478e600fe84 2020-01-24 23:09:51.863593 27681 728 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.117.149 ea26c3e2-3d87-4fee-b428-30eb5f1bb271 2020-01-24 23:10:46.408231 27682 1378 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.117.149 a1aff8e9-9605-44e7-9177-c13143b3077b 2020-01-24 23:12:55.124893 27683 1378 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.117.149 16a46ee5-6c69-4d88-b906-939d39cd83a4 2020-01-24 23:13:59.62975 27684 423 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-01-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.117.149 6f483014-5bd4-4ff5-be48-beca448940a0 2020-01-24 23:14:00.828443 27685 739 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.117.149 e20d6b98-a081-48e8-a598-e8e756911c30 2020-01-24 23:14:28.408364 27686 739 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.117.149 306331c2-1485-49c8-8447-2b00bc1364e5 2020-01-24 23:14:32.12474 27687 540 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.117.149 a097e1ff-cb39-47f6-8639-6d5e9b72515a 2020-01-24 23:17:25.182671 27688 540 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.117.149 813ef9f2-9a61-42a4-8590-b2395d0addb9 2020-01-24 23:17:27.807248 27689 1024 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.117.149 bd545203-be7c-4b52-b5e6-5d1a530ac6d9 2020-01-24 23:17:35.659575 27690 1024 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.117.149 d4642590-892e-493b-8dd9-2a0e33d6ab7f 2020-01-24 23:17:39.147329 27691 788 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 20 \N 189.186.117.149 5b1171f8-dcf3-42a5-92ee-48ecffd70781 2020-01-24 23:17:57.202141 27692 788 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 21 \N 189.186.117.149 ae645e23-c7b4-4577-a8c9-ca528a4244f7 2020-01-24 23:18:03.630065 27693 1441 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.117.149 d99d66bd-cdf6-4df4-b9cb-1eecb3d9edd4 2020-01-24 23:18:54.36981 27694 1441 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.117.149 a57fb60f-be44-4e33-b7d0-1c1830d9f3b5 2020-01-24 23:18:59.235069 27695 1158 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.117.149 40a08e32-9de1-4165-93e8-52cb48d44b97 2020-01-24 23:19:26.398943 27696 1158 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.117.149 c06c859b-eca4-45b8-8ac3-d8e75c9b5e56 2020-01-24 23:19:29.295876 27697 1283 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.117.149 1a196097-f176-4223-8cf6-50169d099fc6 2020-01-24 23:19:39.611235 27698 1283 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.117.149 c175be24-698a-45ce-a666-5c0937377f92 2020-01-24 23:19:43.652896 27699 833 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.117.149 d75eb4b6-29bd-4141-afd2-dc5a9cd2efcc 2020-01-24 23:19:49.671802 27700 833 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.117.149 8f638382-16c7-41d5-a210-5bf1d5c87df9 2020-01-24 23:19:53.035842 27701 618 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.117.149 0bcd4b29-be4c-41b3-b2ac-07648b968b31 2020-01-24 23:19:59.87904 27702 618 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.117.149 329c4e8b-6d34-40e3-ac80-fd8ab4f0b794 2020-01-24 23:20:03.424822 27703 1043 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.117.149 dbff2d70-07a7-46a2-bbbf-8c394fbb44f4 2020-01-24 23:20:41.355483 27704 1043 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.117.149 e2756fec-bca8-45bc-b2a9-5e2beffac023 2020-01-24 23:20:45.836643 27705 1025 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.117.149 a3499a77-11e8-40d0-bd14-7a7bb6a7536a 2020-01-24 23:21:25.696337 27706 1025 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.117.149 7dedf40c-5f0d-472e-b21c-166b3632a14d 2020-01-24 23:21:28.981274 27707 709 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.117.149 6301c1e0-99ac-4283-8299-95a2ac6a2426 2020-01-24 23:21:41.336869 27708 709 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.117.149 84450a9e-a35f-4433-a777-699998bca815 2020-01-24 23:21:45.288748 27709 1023 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.117.149 c13c3b91-5dcf-4e09-834c-4bba8246f424 2020-01-24 23:23:10.22003 27710 1023 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.117.149 607dc84a-487c-41c7-aa4c-a731e7f0c6e3 2020-01-24 23:23:15.127054 27711 154 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.117.149 6795187f-042f-42d9-9eb6-321f5545b068 2020-01-24 23:23:35.243501 27712 697 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.117.149 06fe3804-16d5-4a9d-a902-f74098b74cca 2020-01-24 23:23:51.758652 27713 697 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.117.149 2a7debd7-90dc-4ca5-bf00-d2b545c908cd 2020-01-24 23:24:01.056839 27714 424 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-01-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.117.149 14c4c091-6181-4417-81e4-16ccd4354ccc 2020-01-24 23:24:07.556836 27715 289 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.117.149 7819d5b8-652d-4030-8d3d-ddd12a436c6b 2020-01-24 23:24:33.102512 27716 290 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.117.149 162d8bc8-ceae-41a2-9802-bd4b06491c35 2020-01-24 23:24:43.327782 27717 290 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.117.149 01f0c3b5-edfa-4daa-93bd-f96fe89114bf 2020-01-24 23:24:46.067154 27718 278 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.117.149 47c53dab-183f-4a15-8e82-b86886b7c8af 2020-01-24 23:26:08.364326 27719 277 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.117.149 44ab8123-1422-460b-a780-0239623aefa1 2020-01-24 23:26:25.3551 27720 277 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.117.149 27830167-13f7-4144-abfa-4da7f847b96b 2020-01-24 23:26:28.9165 27721 425 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-01-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.117.149 2cd03a23-bc55-4f35-be19-4e090d7b27ce 2020-01-24 23:29:07.363916 27722 794 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.117.149 81efae44-f225-4f05-9076-c181b842e725 2020-01-24 23:42:38.193142 27723 794 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.117.149 546717e6-6a55-44d4-88be-da62043d6ea8 2020-01-24 23:42:40.707991 27724 426 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-01-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.117.149 81078476-6707-4eba-bff7-c5fda306e402 2020-01-24 23:42:41.786217 27725 651 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 189.186.117.149 b2144bcd-abee-4e12-baf2-9c7bc2bd8274 2020-01-24 23:45:16.890316 27726 651 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.117.149 facf8f03-0de2-48f1-95db-9f47aaaac2ba 2020-01-24 23:45:20.071476 27727 427 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-01-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.117.149 13af61a7-f334-44ca-b608-a39204191722 2020-01-24 23:45:57.345068 27728 428 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-01-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.117.149 0de110e4-329a-4d57-b2d2-51877157ba7c 2020-01-24 23:47:27.207908 27729 19 User \N \N 19 User \N update ---\nlast_sign_in_at:\n- 2019-10-05 17:26:12.012230000 Z\n- &1 2019-12-18 17:50:01.717444000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-24 23:47:52.528306577 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 2\n- 3\n 7 \N 189.186.117.149 bc9b9a5c-6fbf-4711-b8d3-b708ad55021e 2020-01-24 23:47:52.536816 27730 19 User \N \N 19 User \N update ---\nunique_session_id:\n- 4V7TUWzjwhdLq4iHzApi\n- XqLze9wz4F-3hp4goHDZ\n 8 \N 189.186.117.149 bc9b9a5c-6fbf-4711-b8d3-b708ad55021e 2020-01-24 23:47:52.555127 27731 771 OpenCashRegister \N \N 19 User \N create ---\ncash_register_id: 3\nuser_id: 19\ninitial_cash: !ruby/object:BigDecimal 18:0.886E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 886.0 189.186.117.149 2399ad10-a126-43e0-86ad-ffc4fee8002e 2020-01-24 23:47:55.935073 27732 428 Transfer \N \N 19 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 19\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-24\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.117.149 6ef38c27-52e8-4f8f-ab9c-b823fe5c721d 2020-01-24 23:48:06.428131 27733 1518 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 599\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 6ef38c27-52e8-4f8f-ab9c-b823fe5c721d 2020-01-24 23:48:06.450907 27734 427 Transfer \N \N 19 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 19\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-24\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.117.149 7dbc3f0f-069c-46bf-9608-ead1e8f84f85 2020-01-24 23:48:13.228404 27735 1519 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 569\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 7dbc3f0f-069c-46bf-9608-ead1e8f84f85 2020-01-24 23:48:13.261425 27736 426 Transfer \N \N 19 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 19\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-24\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.117.149 1faf1d65-ab9d-497b-a46d-06987fd65e6a 2020-01-24 23:48:20.439466 27737 1520 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 684\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 1faf1d65-ab9d-497b-a46d-06987fd65e6a 2020-01-24 23:48:20.465786 27738 425 Transfer \N \N 19 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 19\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-24\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.117.149 5ebdc288-9d62-49af-8440-93f6e7cd9349 2020-01-24 23:48:27.509972 27739 1521 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 279\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 5ebdc288-9d62-49af-8440-93f6e7cd9349 2020-01-24 23:48:27.532308 44785 1520 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1520'\n is_parent: false\n sku: VES-1520\n name: VST-0132\n description: VESTIDO TEJIDO GRIS PLATA THINKABLE\n price_base: '324.5'\n price_sale: '811.0'\n img_product: 6DA78F99-2E36-4906-A0A7-040881A56056.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001520'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 23:44:57.273756'\n updated_at: &12 2020-11-04 00:13:40.589525803 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1520'\n sku: VES-1520\n name: VST-0132\n description: VESTIDO TEJIDO GRIS PLATA THINKABLE\n price_base: '324.50'\n price_sale: '811.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 23:44:57.273756'\n updated_at: '2020-11-03 23:44:57.310722'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001520'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1520'\n type: *3\n value: 1520\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1520\n type: *7\n value: VES-1520\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0132\n type: *8\n value: VST-0132\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO TEJIDO GRIS PLATA THINKABLE\n type: *6\n value: VESTIDO TEJIDO GRIS PLATA THINKABLE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '324.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3245E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '811.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.811E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 6DA78F99-2E36-4906-A0A7-040881A56056.jpeg\n type: *2\n value: 6DA78F99-2E36-4906-A0A7-040881A56056.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001520'\n type: *2\n value: '0001520'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 23:44:57.273756'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 6DA78F99-2E36-4906-A0A7-040881A56056.jpeg\n 3 El producto VES-1520 fue modificado. 187.149.136.226 767421d4-c29d-44af-b56c-893cb56904b2 2020-11-04 00:13:40.633987 27740 1522 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 280\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 5ebdc288-9d62-49af-8440-93f6e7cd9349 2020-01-24 23:48:27.563095 27741 1523 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 292\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 5ebdc288-9d62-49af-8440-93f6e7cd9349 2020-01-24 23:48:27.587668 27742 1524 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 291\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 5ebdc288-9d62-49af-8440-93f6e7cd9349 2020-01-24 23:48:27.613692 27743 424 Transfer \N \N 19 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 19\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-24\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.117.149 a8c5b6ff-330f-4fa7-a04a-401ca2a31adb 2020-01-24 23:48:35.496809 27744 1525 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 513\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 a8c5b6ff-330f-4fa7-a04a-401ca2a31adb 2020-01-24 23:48:35.542354 27745 1526 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 618\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 a8c5b6ff-330f-4fa7-a04a-401ca2a31adb 2020-01-24 23:48:35.566916 27746 988 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.7E1\n 4 \N 189.186.117.149 a8c5b6ff-330f-4fa7-a04a-401ca2a31adb 2020-01-24 23:48:35.591304 27747 1527 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 156\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 a8c5b6ff-330f-4fa7-a04a-401ca2a31adb 2020-01-24 23:48:35.618288 27748 1528 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 713\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 a8c5b6ff-330f-4fa7-a04a-401ca2a31adb 2020-01-24 23:48:35.644253 27749 1529 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 602\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 a8c5b6ff-330f-4fa7-a04a-401ca2a31adb 2020-01-24 23:48:35.669266 27750 1530 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 636\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 a8c5b6ff-330f-4fa7-a04a-401ca2a31adb 2020-01-24 23:48:35.696283 27751 1531 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 608\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 a8c5b6ff-330f-4fa7-a04a-401ca2a31adb 2020-01-24 23:48:35.727075 27752 1532 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 565\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 a8c5b6ff-330f-4fa7-a04a-401ca2a31adb 2020-01-24 23:48:35.752383 27753 1533 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 628\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 a8c5b6ff-330f-4fa7-a04a-401ca2a31adb 2020-01-24 23:48:35.781684 27754 1417 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.117.149 a8c5b6ff-330f-4fa7-a04a-401ca2a31adb 2020-01-24 23:48:35.808885 27755 1534 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 803\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 a8c5b6ff-330f-4fa7-a04a-401ca2a31adb 2020-01-24 23:48:35.834509 27756 1265 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.7E1\n 7 \N 189.186.117.149 a8c5b6ff-330f-4fa7-a04a-401ca2a31adb 2020-01-24 23:48:35.856783 27757 814 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.5E1\n 11 \N 189.186.117.149 a8c5b6ff-330f-4fa7-a04a-401ca2a31adb 2020-01-24 23:48:35.882314 27758 1535 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 714\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 a8c5b6ff-330f-4fa7-a04a-401ca2a31adb 2020-01-24 23:48:35.910346 27759 423 Transfer \N \N 19 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 19\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-24\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.117.149 3458e672-b084-41ab-8e4c-f894b46ab20e 2020-01-24 23:48:43.56074 27760 858 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.117.149 3458e672-b084-41ab-8e4c-f894b46ab20e 2020-01-24 23:48:43.5772 27761 1536 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 611\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 3458e672-b084-41ab-8e4c-f894b46ab20e 2020-01-24 23:48:43.598004 27762 838 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.117.149 3458e672-b084-41ab-8e4c-f894b46ab20e 2020-01-24 23:48:43.615212 27763 1537 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 787\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 3458e672-b084-41ab-8e4c-f894b46ab20e 2020-01-24 23:48:43.635673 27764 1538 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 624\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 3458e672-b084-41ab-8e4c-f894b46ab20e 2020-01-24 23:48:43.656194 27848 412 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.51.184 9d545c2c-a30d-45d8-a116-5bdcaed89ea5 2020-01-25 19:04:36.910418 27765 1539 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 537\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 3458e672-b084-41ab-8e4c-f894b46ab20e 2020-01-24 23:48:43.677546 27766 1540 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 135\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 3458e672-b084-41ab-8e4c-f894b46ab20e 2020-01-24 23:48:43.705542 27767 1541 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 431\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 3458e672-b084-41ab-8e4c-f894b46ab20e 2020-01-24 23:48:43.732031 27768 1542 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 432\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 3458e672-b084-41ab-8e4c-f894b46ab20e 2020-01-24 23:48:43.756798 27769 1543 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 275\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 3458e672-b084-41ab-8e4c-f894b46ab20e 2020-01-24 23:48:43.780857 27770 1544 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 638\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 3458e672-b084-41ab-8e4c-f894b46ab20e 2020-01-24 23:48:43.807946 27771 422 Transfer \N \N 19 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 19\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-24\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.117.149 c2593ed1-d862-45d4-9579-e68b257bfd59 2020-01-24 23:48:50.851711 27772 1545 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 457\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 c2593ed1-d862-45d4-9579-e68b257bfd59 2020-01-24 23:48:50.873578 27773 421 Transfer \N \N 19 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 19\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-24\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.117.149 eb06a2c4-d38d-4f92-9a11-5955f507dca1 2020-01-24 23:48:57.450093 27774 1546 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 964\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 eb06a2c4-d38d-4f92-9a11-5955f507dca1 2020-01-24 23:48:57.475228 27775 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-23 02:22:09.192129000 Z\n- &1 2020-01-23 18:02:49.534587000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-24 23:49:23.699897770 Z\nsign_in_count:\n- 97\n- 98\n 197 \N 189.186.117.149 b5466730-1282-4e7a-a2a1-52262961e5a5 2020-01-24 23:49:23.706373 27776 21 User \N \N 21 User \N update ---\nunique_session_id:\n- qS1Y_gDCVmERucaJmyKx\n- 9AhxsbxyZiYVtixR3pTy\n 198 \N 189.186.117.149 b5466730-1282-4e7a-a2a1-52262961e5a5 2020-01-24 23:49:23.721811 27777 269 Expense \N \N 27 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 769\nquantity: !ruby/object:BigDecimal 18:0.704E3\nstatus: 1\nobservations: SUELDO KEYLA\nexpense_date: 2020-01-24\nexpense_code: PV2-E-56\n 1 Egreso por 704.0 registrado 187.149.51.184 2f39db31-15fe-43b6-90af-18c12f71d4d0 2020-01-25 01:59:17.788252 27778 2851 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 769\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.704E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 269\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.51.184 2f39db31-15fe-43b6-90af-18c12f71d4d0 2020-01-25 01:59:17.824697 27779 784 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 769\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.10128E4\namount_out: !ruby/object:BigDecimal 18:0.704E3\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.883E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1883E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.51.184 e365dc50-df17-43b3-8a05-74ea0aecf786 2020-01-25 02:05:10.113728 27780 769 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 e365dc50-df17-43b3-8a05-74ea0aecf786 2020-01-25 02:05:10.129459 27781 785 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 769\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.10128E4\namount_out: !ruby/object:BigDecimal 18:0.704E3\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.883E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1883E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.51.184 d015c654-6806-405f-8949-00ef45d24923 2020-01-25 02:05:10.23009 27782 786 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 770\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4099E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.471E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3471E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.51.184 93322411-d68d-4e0b-a2a1-4fcbad544454 2020-01-25 02:12:07.497798 27783 770 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 93322411-d68d-4e0b-a2a1-4fcbad544454 2020-01-25 02:12:07.513069 27784 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-24 21:18:44.531174000 Z\n- &1 2020-01-24 23:03:00.915102000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 02:28:54.667227221 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1324\n- 1325\n 2650 \N 189.186.117.149 f8f17c00-a342-46ab-b16b-ab64babd069b 2020-01-25 02:28:54.675721 27785 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Ez8hy6GKTxF-_sVyN_-j\n- nKK5K31tSNcwPzPuzH5i\n 2651 \N 189.186.117.149 f8f17c00-a342-46ab-b16b-ab64babd069b 2020-01-25 02:28:54.694015 27786 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-24 23:03:00.915102000 Z\n- &1 2020-01-25 02:28:54.667227000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 02:33:02.524468829 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946334\n mask_addr: 4294967295\nsign_in_count:\n- 1325\n- 1326\n 2652 \N 200.68.182.94 6115981f-ead5-4ef1-af75-438ccc7e5042 2020-01-25 02:33:02.534001 27787 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nKK5K31tSNcwPzPuzH5i\n- NhsQyqEy18SF8wf44Zcv\n 2653 \N 200.68.182.94 6115981f-ead5-4ef1-af75-438ccc7e5042 2020-01-25 02:33:02.558553 27788 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 02:28:54.667227000 Z\n- &1 2020-01-25 02:33:02.524468000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 02:38:26.364708097 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946334\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946334\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1326\n- 1327\n 2654 \N 189.186.117.149 b770786e-18b6-4844-ba26-38a6ae53269f 2020-01-25 02:38:26.375918 27789 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NhsQyqEy18SF8wf44Zcv\n- pJMJ9TSfLX_R9SUAn4Cg\n 2655 \N 189.186.117.149 b770786e-18b6-4844-ba26-38a6ae53269f 2020-01-25 02:38:26.396648 27790 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-23 18:02:49.534587000 Z\n- &1 2020-01-24 23:49:23.699897000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 02:54:25.552092407 Z\nsign_in_count:\n- 98\n- 99\n 199 \N 189.186.117.149 c7654600-499c-40fd-9ab5-5a7ae31af910 2020-01-25 02:54:25.558462 27791 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 9AhxsbxyZiYVtixR3pTy\n- 8U2_4afe7GsBQufDHUwp\n 200 \N 189.186.117.149 c7654600-499c-40fd-9ab5-5a7ae31af910 2020-01-25 02:54:25.573912 27792 787 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 771\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.886E3\nphysical_cash: !ruby/object:BigDecimal 18:0.886E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 5ae92a13-d26c-403c-8aed-d9c788d6f2e8 2020-01-25 02:55:07.521767 27793 771 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 5ae92a13-d26c-403c-8aed-d9c788d6f2e8 2020-01-25 02:55:07.540236 27794 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 02:33:02.524468000 Z\n- &1 2020-01-25 02:38:26.364708000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 17:41:25.816198933 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946334\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1327\n- 1328\n 2656 \N 189.186.117.149 d2b3cbf2-956a-4bc6-b722-128dd782d851 2020-01-25 17:41:25.849305 27795 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pJMJ9TSfLX_R9SUAn4Cg\n- rT-m9eXAUqJjzuoh_b9u\n 2657 \N 189.186.117.149 d2b3cbf2-956a-4bc6-b722-128dd782d851 2020-01-25 17:41:25.881138 27796 990 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.117.149 e4b27964-4a0f-4be5-9c6c-e6e9387a0db4 2020-01-25 17:44:17.933282 27797 990 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.117.149 a89eacc8-b4e4-405f-8483-d3cc07b24cd2 2020-01-25 17:44:21.267681 27798 250 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.117.149 03f97ecf-419c-4bd2-b090-a674a2f0f980 2020-01-25 17:45:11.18 27799 250 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.117.149 d843681c-e668-4493-b85c-ecd980d845b1 2020-01-25 17:45:14.012064 27800 991 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.117.149 f69f2463-b22d-4cd3-9c6d-372a72493754 2020-01-25 17:46:34.315981 27801 991 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.117.149 b442aafb-3a1a-4859-aa19-d6ad44887faf 2020-01-25 17:46:37.159558 27802 832 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.117.149 f71a9433-1800-4fbe-929f-629895f973f1 2020-01-25 17:47:11.758282 27803 832 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.117.149 9d28c029-aa54-4fdb-85e5-9855298ecc13 2020-01-25 17:47:15.444384 27804 429 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-01-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.117.149 bf0aa2e2-dcc9-44e5-8a9b-9acef1dda992 2020-01-25 17:47:18.503446 27805 1286 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.117.149 a0e460ed-77b9-4ecd-a0f7-216d061a6416 2020-01-25 18:22:26.503189 27806 1286 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.117.149 84bfe36e-bca4-4f3d-96a8-6617da155d49 2020-01-25 18:22:30.578418 27807 1401 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.117.149 1ad607da-d660-441f-87fd-b1f137a7b533 2020-01-25 18:22:45.361021 27808 1471 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.117.149 e4a37640-dba6-4b0c-85f6-5b283640055e 2020-01-25 18:22:59.265772 27809 1471 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.117.149 0173b6c4-6316-443a-90c9-e92208999111 2020-01-25 18:23:02.09219 27810 1080 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.117.149 0ff76a5b-aae2-43ec-bfa1-7d97f08a3411 2020-01-25 18:23:11.086615 27811 1393 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.117.149 af10d816-3215-4c42-95b6-f020f9482746 2020-01-25 18:23:19.048013 27812 430 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2020-01-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.117.149 d56275ad-93fe-4afa-a9a4-69d216286f04 2020-01-25 18:23:22.146169 27813 509 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.15E2\n 7 \N 189.186.117.149 42466611-2f7c-4c1f-884b-50742e5e73ae 2020-01-25 18:23:40.549931 27814 509 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.7E1\n 8 \N 189.186.117.149 7822d980-c54c-4989-889c-31b3105b0d62 2020-01-25 18:23:43.283705 27815 431 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-01-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.117.149 e1f1da16-72a8-4bbf-ad23-5eb932165c97 2020-01-25 18:23:49.327363 27849 649 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.51.184 9bafaa49-00f3-427d-a072-2d2c52df59a1 2020-01-25 19:04:46.264171 27816 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-01-03 01:51:22.854755000 Z\n- &1 2020-01-04 17:36:36.838823000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 18:57:32.791736562 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 81\n- 82\n 167 \N 187.149.51.184 9699a178-ec53-4890-825d-de20dfa3a643 2020-01-25 18:57:32.802316 27817 8 User \N \N 8 User \N update ---\nunique_session_id:\n- APL-p8vje43MqtUUWnzh\n- T5nbKJCuS4bszPwCCkhC\n 168 \N 187.149.51.184 9699a178-ec53-4890-825d-de20dfa3a643 2020-01-25 18:57:32.819151 27818 417 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-25\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.51.184 d69b3033-01e7-4db0-84a8-c916e5d86353 2020-01-25 18:58:06.165192 27819 1138 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 187.149.51.184 d69b3033-01e7-4db0-84a8-c916e5d86353 2020-01-25 18:58:06.18431 27820 420 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-25\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.51.184 41768503-8512-4f49-97d3-4e765454722c 2020-01-25 18:58:17.163201 27821 1547 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 947\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 41768503-8512-4f49-97d3-4e765454722c 2020-01-25 18:58:17.195059 27822 430 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-25\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.51.184 cb899681-6333-4b5a-9e2d-b8ca88816481 2020-01-25 18:58:36.281038 27823 1437 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.51.184 cb899681-6333-4b5a-9e2d-b8ca88816481 2020-01-25 18:58:36.305958 27824 1548 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 676\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 cb899681-6333-4b5a-9e2d-b8ca88816481 2020-01-25 18:58:36.334936 27825 1412 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.8E1\n 13 \N 187.149.51.184 cb899681-6333-4b5a-9e2d-b8ca88816481 2020-01-25 18:58:36.357031 27826 1549 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 890\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 cb899681-6333-4b5a-9e2d-b8ca88816481 2020-01-25 18:58:36.386949 27827 1281 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 19 \N 187.149.51.184 cb899681-6333-4b5a-9e2d-b8ca88816481 2020-01-25 18:58:36.411311 27828 1448 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.51.184 677ffd94-cae9-4989-8eb4-c14cc62542e9 2020-01-25 18:59:09.862801 27829 1448 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.51.184 4400cbca-0891-4657-9ecb-95c58d03f57f 2020-01-25 18:59:13.746897 27830 1050 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.51.184 849b5d0c-b9cf-496e-b8a2-c8b1354c4cc1 2020-01-25 18:59:26.047123 27831 1050 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.51.184 3047c9e7-0f9c-4d53-b67a-0b5281c02686 2020-01-25 18:59:30.294472 27832 1447 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.51.184 c9fc77b6-cd36-4ea4-b25f-fa215c7bab8e 2020-01-25 18:59:42.4023 27833 1447 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.51.184 f23b5e05-48af-4709-b79a-dad7e8ad9c46 2020-01-25 18:59:45.94034 27834 423 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 187.149.51.184 10c510f4-ddde-49ec-9c7b-c42f8fe4e20c 2020-01-25 19:00:20.8348 27835 423 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.51.184 0ccbcd0b-cd90-4e98-9e38-d6a858860920 2020-01-25 19:00:23.713533 27836 312 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 187.149.51.184 efc6788c-7e03-4f2c-a752-c6d7bfeb5a69 2020-01-25 19:01:52.523505 27837 312 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.51.184 30378eaf-3d73-418e-8071-14045df44967 2020-01-25 19:02:00.606457 27838 397 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.51.184 3f39bde2-e08c-4bd0-88b1-b50316743234 2020-01-25 19:02:15.109725 27839 400 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.51.184 953463b4-b022-4720-b4f6-de6e1f4fd0da 2020-01-25 19:02:38.045791 27840 406 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.51.184 720eaa4d-b0bb-482f-a4e8-956b21345fd7 2020-01-25 19:02:56.163154 27841 407 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.51.184 a67009e5-9f17-4a16-aef0-9691dcc6a19b 2020-01-25 19:03:09.835889 27842 403 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.51.184 d20245eb-8860-4fb0-8ba4-f90db215e968 2020-01-25 19:03:22.416921 27843 404 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 14 \N 187.149.51.184 768d5221-6e9b-43d6-af7e-6b3a2ed52508 2020-01-25 19:03:37.311911 27844 649 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.51.184 e4a30ca7-95cc-4cfb-83f6-9ca8fbffabfc 2020-01-25 19:03:49.953727 27845 412 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 1 \N 187.149.51.184 3c944f1e-8f53-4522-97a1-d5f9b64c6801 2020-01-25 19:04:05.361834 27846 405 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 1 \N 187.149.51.184 551ac3d2-b3f1-4c10-8e92-5c3332145917 2020-01-25 19:04:21.672793 27847 405 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.51.184 0c2e2677-38f6-4bf5-b81d-630b55b4f7d9 2020-01-25 19:04:29.753062 27850 432 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-01-25\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.51.184 1bc14e03-d26d-41be-bb48-528613d35b86 2020-01-25 19:04:55.375073 27851 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 02:38:26.364708000 Z\n- &1 2020-01-25 17:41:25.816198000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 19:06:02.791069438 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 1328\n- 1329\n 2658 \N 187.149.51.184 ae1d94d8-77a9-4580-a2ac-50c948e76d3e 2020-01-25 19:06:02.798256 27852 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rT-m9eXAUqJjzuoh_b9u\n- c7ZajREt7ZWxJQzK-Hsy\n 2659 \N 187.149.51.184 ae1d94d8-77a9-4580-a2ac-50c948e76d3e 2020-01-25 19:06:02.820153 27853 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 17:41:25.816198000 Z\n- &1 2020-01-25 19:06:02.791069000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 19:07:47.100979520 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1329\n- 1330\n 2660 \N 189.186.117.149 3b787a99-f90e-4c6c-ab49-abdac68189a3 2020-01-25 19:07:47.108859 27854 4 User \N \N 4 User \N update ---\nunique_session_id:\n- c7ZajREt7ZWxJQzK-Hsy\n- "-ZUeQacyL_y14kczKT4T"\n 2661 \N 189.186.117.149 3b787a99-f90e-4c6c-ab49-abdac68189a3 2020-01-25 19:07:47.130591 27855 734 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.117.149 bdf4f477-9ccc-4182-884f-21802fe177c9 2020-01-25 19:11:21.470773 27856 433 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-01-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.117.149 8d3106ce-6eb1-4485-a3d3-4a5b302219f6 2020-01-25 19:11:23.489928 27857 221 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-61\namount: !ruby/object:BigDecimal 18:0.2E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2E3\nobservations: ''\npurchase_date: 2020-01-25\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-61 por $ 200.0 MXN creada. 189.186.117.149 aa0816bf-7e9a-4e2e-94b1-561b371a9e5b 2020-01-25 19:15:54.011701 27858 1550 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 732\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 aa0816bf-7e9a-4e2e-94b1-561b371a9e5b 2020-01-25 19:15:54.049569 27859 971 Product \N \N 4 User \N create ---\nsku: ACC-971\nname: CHA-0001\ndescription: CHAMARRA TINTA MICHEL\nprice_base: !ruby/object:BigDecimal 18:0.4395E3\nprice_sale: !ruby/object:BigDecimal 18:0.879E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-971 fue creado. 189.186.117.149 6ac491f0-bd0e-461e-8c10-c96383e11fa9 2020-01-25 19:33:24.12694 27860 971 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000971'\n 2 \N 189.186.117.149 6ac491f0-bd0e-461e-8c10-c96383e11fa9 2020-01-25 19:33:24.167291 27861 1551 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 971\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 6ac491f0-bd0e-461e-8c10-c96383e11fa9 2020-01-25 19:33:24.198565 27862 222 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-62\namount: !ruby/object:BigDecimal 18:0.4395E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4395E3\nobservations: ''\npurchase_date: 2020-01-25\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-62 por $ 439.5 MXN creada. 189.186.117.149 c7257f67-f36d-4816-b853-c7f05bd81e66 2020-01-25 19:33:28.079649 27863 1551 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.117.149 c7257f67-f36d-4816-b853-c7f05bd81e66 2020-01-25 19:33:28.10725 27864 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 19:06:02.791069000 Z\n- &1 2020-01-25 19:07:47.100979000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 19:33:28.724782768 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 1330\n- 1331\n 2662 \N 187.149.51.184 ca8f20ed-028d-4594-8d8d-d93afe54aa7c 2020-01-25 19:33:28.746245 27865 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-ZUeQacyL_y14kczKT4T"\n- jc-dH5bsz71-67NMZoPj\n 2663 \N 187.149.51.184 ca8f20ed-028d-4594-8d8d-d93afe54aa7c 2020-01-25 19:33:28.77939 27866 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 19:07:47.100979000 Z\n- &1 2020-01-25 19:33:28.724782000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 19:33:39.128208504 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1331\n- 1332\n 2664 \N 189.186.117.149 2c5c426f-d1fc-480d-83d1-ea7217ed0eeb 2020-01-25 19:33:39.15347 27867 4 User \N \N 4 User \N update ---\nunique_session_id:\n- jc-dH5bsz71-67NMZoPj\n- sroKk1zquLk2G6FfqGKj\n 2665 \N 189.186.117.149 2c5c426f-d1fc-480d-83d1-ea7217ed0eeb 2020-01-25 19:33:39.190818 27868 971 Product \N \N 4 User \N update ---\nsku:\n- ACC-971\n- CHA-972\ncategory_id:\n- 17\n- 24\n 3 El producto ACC-971 fue modificado. 189.186.117.149 c0318b72-2d4e-4867-b3d2-b794a6c2567e 2020-01-25 19:33:54.4628 27869 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 19:33:28.724782000 Z\n- &1 2020-01-25 19:33:39.128208000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 19:34:42.591817699 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 1332\n- 1333\n 2666 \N 187.149.51.184 54b24677-d04c-46fd-ba33-e09a7643d278 2020-01-25 19:34:42.603029 27870 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sroKk1zquLk2G6FfqGKj\n- "-GD4JAZszzZphcz2jk6b"\n 2667 \N 187.149.51.184 54b24677-d04c-46fd-ba33-e09a7643d278 2020-01-25 19:34:42.627471 27871 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-24 23:49:23.699897000 Z\n- &1 2020-01-25 02:54:25.552092000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 19:38:27.967038305 Z\nsign_in_count:\n- 99\n- 100\n 201 \N 189.186.117.149 ea817c02-5854-4ec0-a7dd-6b02567bad49 2020-01-25 19:38:27.973186 27872 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 8U2_4afe7GsBQufDHUwp\n- HySrczsMNQ14H1HkDLvk\n 202 \N 189.186.117.149 ea817c02-5854-4ec0-a7dd-6b02567bad49 2020-01-25 19:38:27.991047 27873 431 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-25\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.117.149 43fcf660-77c9-4484-92d6-9932f859be57 2020-01-25 19:38:35.327491 27874 1552 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 494\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.9E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 43fcf660-77c9-4484-92d6-9932f859be57 2020-01-25 19:38:35.35354 27875 429 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-25\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.117.149 ca9cb49c-fac0-40f4-a3a0-bf39310d5741 2020-01-25 19:38:42.998899 27876 1553 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 607\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 ca9cb49c-fac0-40f4-a3a0-bf39310d5741 2020-01-25 19:38:43.023113 27877 1554 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 609\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 ca9cb49c-fac0-40f4-a3a0-bf39310d5741 2020-01-25 19:38:43.050177 27878 1555 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 252\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 ca9cb49c-fac0-40f4-a3a0-bf39310d5741 2020-01-25 19:38:43.074964 27879 1556 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 605\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.117.149 ca9cb49c-fac0-40f4-a3a0-bf39310d5741 2020-01-25 19:38:43.0998 27880 1361 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.117.149 9019968e-4fae-40f6-9b6c-04b5c0b16810 2020-01-25 19:38:58.130087 27881 1361 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.117.149 cf598b87-2da6-4680-a733-5aa75c396a5e 2020-01-25 19:39:00.587043 27882 1359 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.117.149 bd811351-9358-4148-bb05-9712ad0b2098 2020-01-25 19:39:05.78551 27883 1356 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.117.149 aa4e4d7d-4119-4b59-aace-6a2141130639 2020-01-25 19:39:11.942865 27884 1355 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.117.149 f9e220c2-ef47-441f-a5c0-41d7af9d1f22 2020-01-25 19:39:19.776271 27885 434 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2020-01-25\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.117.149 00dfa191-3930-4fdf-a335-525ffa555c53 2020-01-25 19:39:25.407604 27886 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-23 18:06:59.939382000 Z\n- &1 2020-01-24 17:46:48.865017000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 19:42:17.990535328 Z\nsign_in_count:\n- 453\n- 454\n 911 \N 187.149.51.184 6bbb2a50-7fe6-41f2-9700-70deb7fe9375 2020-01-25 19:42:17.996972 27887 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 5dnUs1ySiznyvrv9zJz-\n- TvDyKL1VmnTz8yu3jM7H\n 912 \N 187.149.51.184 6bbb2a50-7fe6-41f2-9700-70deb7fe9375 2020-01-25 19:42:18.016018 27888 772 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.471E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 471.0 187.149.51.184 b28f025b-55a2-4fa2-aab0-649061eaaaee 2020-01-25 19:43:47.126735 27889 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-01-04 17:36:36.838823000 Z\n- &1 2020-01-25 18:57:32.791736000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 19:47:48.747394014 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 82\n- 83\n 169 \N 187.149.51.184 0456f9dc-bed5-4249-8a6c-35088e90c959 2020-01-25 19:47:48.759206 27890 8 User \N \N 8 User \N update ---\nunique_session_id:\n- T5nbKJCuS4bszPwCCkhC\n- PQx3-jPzHRU-KByJuBio\n 170 \N 187.149.51.184 0456f9dc-bed5-4249-8a6c-35088e90c959 2020-01-25 19:47:48.786767 27891 773 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.883E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 883.0 187.149.51.184 e6e4c5d1-fdf2-4c61-aa78-6f155ecde812 2020-01-25 19:49:08.632764 27892 270 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 772\nquantity: !ruby/object:BigDecimal 18:0.135E3\nstatus: 1\nobservations: 'comida Samantha $ 85 papelería $40 cooperación a niño para su camión\n $10 '\nexpense_date: 2020-01-25\nexpense_code: PV1-E-190\n 1 Egreso por 135.0 registrado 187.149.51.184 88da39c0-6556-419d-9d80-62f0b04b9630 2020-01-25 20:19:58.315381 27893 2852 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 772\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.135E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 270\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.51.184 88da39c0-6556-419d-9d80-62f0b04b9630 2020-01-25 20:19:58.364777 27894 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 19:33:39.128208000 Z\n- &1 2020-01-25 19:34:42.591817000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 21:51:44.292783512 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 1333\n- 1334\n 2668 \N 187.149.51.184 95c26d7a-5f7c-4fa0-9cb2-99db541af08e 2020-01-25 21:51:44.301065 27895 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-GD4JAZszzZphcz2jk6b"\n- DssqrAv1Ad1XcrSxnk_d\n 2669 \N 187.149.51.184 95c26d7a-5f7c-4fa0-9cb2-99db541af08e 2020-01-25 21:51:44.324344 27921 1557 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.51.184 d66eb36d-8302-428a-96c9-472615901fbe 2020-01-25 22:13:04.638754 27896 2087 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 772\namount: !ruby/object:BigDecimal 18:0.97141E3\ntax: !ruby/object:BigDecimal 18:0.2759E2\ndiscount: !ruby/object:BigDecimal 18:0.799E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-01-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1019\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 00aea9d5-e1db-4712-857a-dea154cce4ce 2020-01-25 21:53:55.186579 27897 166 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.51.184 00aea9d5-e1db-4712-857a-dea154cce4ce 2020-01-25 21:53:55.220039 27898 2087 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 814eed8f-9cde-4370-8dcd-99003c5b9b8e 2020-01-25 21:54:13.258103 27899 2853 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 772\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2087\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1019\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1019 187.149.51.184 814eed8f-9cde-4370-8dcd-99003c5b9b8e 2020-01-25 21:54:13.281436 27900 2088 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 772\namount: !ruby/object:BigDecimal 18:0.1868E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.899E3\ntotal: !ruby/object:BigDecimal 18:0.969E3\nstatus: 0\ndate_sale: 2020-01-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1020\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 b90d906b-5879-4889-b375-627e68f3b0ca 2020-01-25 21:59:20.475539 27901 1046 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.51.184 b90d906b-5879-4889-b375-627e68f3b0ca 2020-01-25 21:59:20.504898 27902 1297 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 16 \N 187.149.51.184 b90d906b-5879-4889-b375-627e68f3b0ca 2020-01-25 21:59:20.530604 27903 2088 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 d6dcbe49-aa52-403d-835d-2db48cd3ed26 2020-01-25 21:59:24.500432 27904 2854 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 772\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.969E3\nmove_type: '1'\nsale_id: 2088\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1020\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.969E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1020 187.149.51.184 d6dcbe49-aa52-403d-835d-2db48cd3ed26 2020-01-25 21:59:24.530898 27905 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2019-12-22 18:30:53.522024000 Z\n- &1 2020-01-02 20:48:33.840111000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 22:08:32.901473580 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 102\n- 103\n 206 \N 187.149.51.184 67a74491-9f15-48b1-bd62-7ebce95b199d 2020-01-25 22:08:32.909248 27906 9 User \N \N 9 User \N update ---\nunique_session_id:\n- gzLA-uJ-_BjzTwzEwT7P\n- 5aX58oGjMEGazqgsD7pX\n 207 \N 187.149.51.184 67a74491-9f15-48b1-bd62-7ebce95b199d 2020-01-25 22:08:32.926491 27907 120 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.51.184 6832eabd-b732-4b34-adaa-b22a42448d4f 2020-01-25 22:09:17.708526 27908 435 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-01-25\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.51.184 8be08d0d-9be6-49eb-b615-d3838e5c26ab 2020-01-25 22:09:20.612873 27909 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 18:57:32.791736000 Z\n- &1 2020-01-25 19:47:48.747394000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 22:09:49.005936475 Z\nsign_in_count:\n- 83\n- 84\n 171 \N 187.149.51.184 473766e6-7887-435b-b95b-eaaf88ea8c38 2020-01-25 22:09:49.012288 27910 8 User \N \N 8 User \N update ---\nunique_session_id:\n- PQx3-jPzHRU-KByJuBio\n- pixwoK8MNTd5aGCgKCGi\n 172 \N 187.149.51.184 473766e6-7887-435b-b95b-eaaf88ea8c38 2020-01-25 22:09:49.026424 27911 435 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-25\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.51.184 d6b3978e-6268-4f19-96fb-506a8cc93fa5 2020-01-25 22:10:02.544183 27912 1557 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 122\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 d6b3978e-6268-4f19-96fb-506a8cc93fa5 2020-01-25 22:10:02.572886 27913 434 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-25\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.51.184 8938a8bd-8e97-41ed-9dfd-1a7ebb3dccc5 2020-01-25 22:10:12.21112 27914 1558 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 930\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 8938a8bd-8e97-41ed-9dfd-1a7ebb3dccc5 2020-01-25 22:10:12.253883 27915 1332 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.51.184 8938a8bd-8e97-41ed-9dfd-1a7ebb3dccc5 2020-01-25 22:10:12.273692 27916 1338 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.51.184 8938a8bd-8e97-41ed-9dfd-1a7ebb3dccc5 2020-01-25 22:10:12.294747 27917 1342 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.51.184 8938a8bd-8e97-41ed-9dfd-1a7ebb3dccc5 2020-01-25 22:10:12.314109 27918 433 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-25\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.51.184 7d1bbeef-0b9c-4369-88ea-66919dedf201 2020-01-25 22:10:20.397229 27919 293 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.51.184 7d1bbeef-0b9c-4369-88ea-66919dedf201 2020-01-25 22:10:20.414812 27920 2089 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 773\namount: !ruby/object:BigDecimal 18:0.71445E3\ntax: !ruby/object:BigDecimal 18:0.6455E2\ndiscount: !ruby/object:BigDecimal 18:0.311E3\ntotal: !ruby/object:BigDecimal 18:0.468E3\nstatus: 0\ndate_sale: 2020-01-25\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-818\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 d66eb36d-8302-428a-96c9-472615901fbe 2020-01-25 22:13:04.599788 27923 2855 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 773\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.468E3\nmove_type: '1'\nsale_id: 2089\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-818\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.32E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-818 187.149.51.184 0847cb66-3fc8-4ae9-907e-771bcf98d04d 2020-01-25 22:13:29.958937 27924 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 19:34:42.591817000 Z\n- &1 2020-01-25 21:51:44.292783000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 22:34:53.654953648 Z\nsign_in_count:\n- 1334\n- 1335\n 2670 \N 187.149.51.184 38c12336-7b05-4262-9139-f1de7115cc7f 2020-01-25 22:34:53.671768 27925 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DssqrAv1Ad1XcrSxnk_d\n- G29mBQChKitwoWSB2Ndj\n 2671 \N 187.149.51.184 38c12336-7b05-4262-9139-f1de7115cc7f 2020-01-25 22:34:53.69174 27926 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 19:47:48.747394000 Z\n- &1 2020-01-25 22:09:49.005936000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 23:01:01.481259313 Z\nsign_in_count:\n- 84\n- 85\n 173 \N 187.149.51.184 b97bb714-7da2-4f10-a5e2-2fab95efdbc5 2020-01-25 23:01:01.505919 27927 8 User \N \N 8 User \N update ---\nunique_session_id:\n- pixwoK8MNTd5aGCgKCGi\n- jjGwEaewnt97Dv1MWaNy\n 174 \N 187.149.51.184 b97bb714-7da2-4f10-a5e2-2fab95efdbc5 2020-01-25 23:01:01.52517 27928 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 21:51:44.292783000 Z\n- &1 2020-01-25 22:34:53.654953000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 23:08:10.443708993 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\nsign_in_count:\n- 1335\n- 1336\n 2672 \N 189.186.117.149 1c8776dc-b783-4ae5-9e44-cedc9e641589 2020-01-25 23:08:10.463408 27929 4 User \N \N 4 User \N update ---\nunique_session_id:\n- G29mBQChKitwoWSB2Ndj\n- p6fcDu_txQauw_bwJo5e\n 2673 \N 189.186.117.149 1c8776dc-b783-4ae5-9e44-cedc9e641589 2020-01-25 23:08:10.486999 27930 2090 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 773\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.259E3\ntotal: !ruby/object:BigDecimal 18:0.39E3\nstatus: 0\ndate_sale: 2020-01-25\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-819\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 4e6479d7-c3fa-422b-b8a5-7d19bc2cdfca 2020-01-25 23:12:45.42433 27931 801 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.51.184 4e6479d7-c3fa-422b-b8a5-7d19bc2cdfca 2020-01-25 23:12:45.465426 27932 2090 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 9dc29403-87e9-4a4b-9c94-33770a370643 2020-01-25 23:12:53.899339 27933 2856 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 773\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.39E3\nmove_type: '1'\nsale_id: 2090\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-819\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.11E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-819 187.149.51.184 9dc29403-87e9-4a4b-9c94-33770a370643 2020-01-25 23:12:53.925176 27934 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 22:34:53.654953000 Z\n- &1 2020-01-25 23:08:10.443708000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-25 23:42:49.064977030 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 1336\n- 1337\n 2674 \N 187.149.51.184 762b56da-1c18-4a27-b63d-120fc62f713f 2020-01-25 23:42:49.073219 27935 4 User \N \N 4 User \N update ---\nunique_session_id:\n- p6fcDu_txQauw_bwJo5e\n- eSGdq_LZBVNoUZEhjD_u\n 2675 \N 187.149.51.184 762b56da-1c18-4a27-b63d-120fc62f713f 2020-01-25 23:42:49.092301 27936 2091 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 772\namount: !ruby/object:BigDecimal 18:0.101421E4\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.828E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-01-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1021\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 abd3e7bd-2a3b-4806-b722-5b5ff36f369d 2020-01-25 23:54:41.90925 27937 626 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.51.184 abd3e7bd-2a3b-4806-b722-5b5ff36f369d 2020-01-25 23:54:41.941688 27938 631 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.51.184 abd3e7bd-2a3b-4806-b722-5b5ff36f369d 2020-01-25 23:54:41.970594 27939 2091 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 005db03d-0c2e-4699-9568-aa2e82fd41d6 2020-01-25 23:54:49.603627 27940 2857 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 772\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2091\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1021\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1021 187.149.51.184 005db03d-0c2e-4699-9568-aa2e82fd41d6 2020-01-25 23:54:49.62753 27941 432 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-25\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.51.184 7f11d088-329a-4f44-b471-7b35c8959a49 2020-01-26 00:00:58.961635 27942 1068 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.51.184 7f11d088-329a-4f44-b471-7b35c8959a49 2020-01-26 00:00:58.982639 27943 221 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.51.184 7f11d088-329a-4f44-b471-7b35c8959a49 2020-01-26 00:00:59.005305 27944 1069 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.51.184 7f11d088-329a-4f44-b471-7b35c8959a49 2020-01-26 00:00:59.03011 27945 1559 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 425\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 7f11d088-329a-4f44-b471-7b35c8959a49 2020-01-26 00:00:59.058385 27946 1560 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 314\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 7f11d088-329a-4f44-b471-7b35c8959a49 2020-01-26 00:00:59.085637 27947 1561 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 399\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 7f11d088-329a-4f44-b471-7b35c8959a49 2020-01-26 00:00:59.109345 27948 1562 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 402\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 7f11d088-329a-4f44-b471-7b35c8959a49 2020-01-26 00:00:59.1338 27949 1563 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 408\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 7f11d088-329a-4f44-b471-7b35c8959a49 2020-01-26 00:00:59.162527 27950 1564 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 409\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 7f11d088-329a-4f44-b471-7b35c8959a49 2020-01-26 00:00:59.186185 27951 1565 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 405\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 7f11d088-329a-4f44-b471-7b35c8959a49 2020-01-26 00:00:59.213153 27952 1566 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 406\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 7f11d088-329a-4f44-b471-7b35c8959a49 2020-01-26 00:00:59.251152 27953 633 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 187.149.51.184 7f11d088-329a-4f44-b471-7b35c8959a49 2020-01-26 00:00:59.27489 27954 1567 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 414\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 7f11d088-329a-4f44-b471-7b35c8959a49 2020-01-26 00:00:59.300963 27955 1568 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 407\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 7f11d088-329a-4f44-b471-7b35c8959a49 2020-01-26 00:00:59.335439 27956 2092 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 772\namount: !ruby/object:BigDecimal 18:0.199942E4\ntax: !ruby/object:BigDecimal 18:0.2758E2\ndiscount: !ruby/object:BigDecimal 18:0.1727E4\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2020-01-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1022\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 fb43311d-1433-4ff0-bf0f-dac71bcc7e5d 2020-01-26 00:02:42.110144 27957 1069 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.51.184 fb43311d-1433-4ff0-bf0f-dac71bcc7e5d 2020-01-26 00:02:42.141616 27958 1568 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.51.184 fb43311d-1433-4ff0-bf0f-dac71bcc7e5d 2020-01-26 00:02:42.166516 27959 626 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.51.184 fb43311d-1433-4ff0-bf0f-dac71bcc7e5d 2020-01-26 00:02:42.190557 27960 2092 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 a819e338-4180-4960-a73b-f4bcf38fe44b 2020-01-26 00:02:46.97518 27961 2858 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 772\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 2092\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1022\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1022 187.149.51.184 a819e338-4180-4960-a73b-f4bcf38fe44b 2020-01-26 00:02:46.997641 27962 2093 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 772\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.799E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-01-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1023\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 e515d99a-9e47-4b03-83ed-a439764785a4 2020-01-26 00:11:45.314829 27963 1069 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.51.184 e515d99a-9e47-4b03-83ed-a439764785a4 2020-01-26 00:11:45.35132 27964 2093 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 2b63d5cb-0cd0-4b1e-a1a2-10df17654e95 2020-01-26 00:11:49.534108 27965 2859 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 772\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2093\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1023\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1023 187.149.51.184 2b63d5cb-0cd0-4b1e-a1a2-10df17654e95 2020-01-26 00:11:49.55789 27966 2094 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 772\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.799E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-01-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1024\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 27c3ec4b-94d0-465f-ba1a-299c8fe0557a 2020-01-26 00:12:28.653412 27967 1069 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.51.184 27c3ec4b-94d0-465f-ba1a-299c8fe0557a 2020-01-26 00:12:28.681723 27968 2094 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 5579b50c-eb35-4696-bcf9-056d149d92bf 2020-01-26 00:12:34.808672 27969 2860 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 772\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2094\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1024\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1024 187.149.51.184 5579b50c-eb35-4696-bcf9-056d149d92bf 2020-01-26 00:12:34.838046 27970 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 23:08:10.443708000 Z\n- &1 2020-01-25 23:42:49.064977000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-26 00:21:29.858152870 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 1337\n- 1338\n 2676 \N 187.149.51.184 89c01515-eef5-4955-b678-e6308e9cd1d0 2020-01-26 00:21:29.869025 27971 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eSGdq_LZBVNoUZEhjD_u\n- xxfpm16qkAwVrmT-PDT-\n 2677 \N 187.149.51.184 89c01515-eef5-4955-b678-e6308e9cd1d0 2020-01-26 00:21:29.891102 27972 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 22:09:49.005936000 Z\n- &1 2020-01-25 23:01:01.481259000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-26 00:42:53.323042445 Z\nsign_in_count:\n- 85\n- 86\n 175 \N 187.149.51.184 8810ad1a-9e94-48bf-be65-8580d84fb804 2020-01-26 00:42:53.330257 27973 8 User \N \N 8 User \N update ---\nunique_session_id:\n- jjGwEaewnt97Dv1MWaNy\n- bZyRbB7XJE-ySHxt7rnQ\n 176 \N 187.149.51.184 8810ad1a-9e94-48bf-be65-8580d84fb804 2020-01-26 00:42:53.346232 27974 2095 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 773\namount: !ruby/object:BigDecimal 18:0.91638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.4E3\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-01-25\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-820\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 0225b72e-0581-4853-a5e1-341109f787a4 2020-01-26 00:52:30.458048 27975 425 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.51.184 0225b72e-0581-4853-a5e1-341109f787a4 2020-01-26 00:52:30.488974 27976 2095 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 e1af0ee5-bf62-4904-bb00-05e22ab11deb 2020-01-26 00:52:39.110839 27977 2861 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 773\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 2095\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-820\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-820 187.149.51.184 e1af0ee5-bf62-4904-bb00-05e22ab11deb 2020-01-26 00:52:39.139739 27978 2096 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 772\namount: !ruby/object:BigDecimal 18:0.87042E3\ntax: !ruby/object:BigDecimal 18:0.2758E2\ndiscount: !ruby/object:BigDecimal 18:0.698E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-01-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1025\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 218c3f62-7c59-4bf2-8f19-14a2a2a59044 2020-01-26 00:58:25.107775 27979 118 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.51.184 218c3f62-7c59-4bf2-8f19-14a2a2a59044 2020-01-26 00:58:25.138372 27980 1568 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.51.184 218c3f62-7c59-4bf2-8f19-14a2a2a59044 2020-01-26 00:58:25.166293 27981 2096 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 4f1e705b-1a60-4f37-8a8d-9bed2b2050bb 2020-01-26 00:58:29.50299 27982 2862 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 772\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2096\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1025\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1025 187.149.51.184 4f1e705b-1a60-4f37-8a8d-9bed2b2050bb 2020-01-26 00:58:29.525673 27983 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 23:42:49.064977000 Z\n- &1 2020-01-26 00:21:29.858152000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-26 01:17:20.989721844 Z\nsign_in_count:\n- 1338\n- 1339\n 2678 \N 187.149.51.184 9b60ca2a-0ab0-4ad1-81d2-51c9e4b1d518 2020-01-26 01:17:20.996805 27984 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xxfpm16qkAwVrmT-PDT-\n- CbEzwraLntRC1FE7-D3J\n 2679 \N 187.149.51.184 9b60ca2a-0ab0-4ad1-81d2-51c9e4b1d518 2020-01-26 01:17:21.015621 27985 2097 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 772\namount: !ruby/object:BigDecimal 18:0.1648E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1448E4\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-01-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1026\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 e4f75fe4-6ec6-415a-ac98-3935d3a166a0 2020-01-26 01:38:31.365349 27986 1068 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.51.184 e4f75fe4-6ec6-415a-ac98-3935d3a166a0 2020-01-26 01:38:31.401318 27987 1071 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.51.184 e4f75fe4-6ec6-415a-ac98-3935d3a166a0 2020-01-26 01:38:31.464061 27988 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 02:54:25.552092000 Z\n- &1 2020-01-25 19:38:27.967038000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-26 01:39:24.093275260 Z\nsign_in_count:\n- 100\n- 101\n 203 \N 189.186.117.149 785dee15-9854-428a-bea5-149c9d68bfa5 2020-01-26 01:39:24.09921 27989 21 User \N \N 21 User \N update ---\nunique_session_id:\n- HySrczsMNQ14H1HkDLvk\n- biH-pevh6ey5sHYpZRie\n 204 \N 189.186.117.149 785dee15-9854-428a-bea5-149c9d68bfa5 2020-01-26 01:39:24.114009 27990 2097 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 b44365ab-71f4-4279-a1ea-ad60238edfe5 2020-01-26 01:39:26.227145 27991 2863 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 772\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2097\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1026\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1026 187.149.51.184 b44365ab-71f4-4279-a1ea-ad60238edfe5 2020-01-26 01:39:26.263238 27992 774 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.886E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 886.0 189.186.117.149 810589dd-ce71-4e19-bee2-b16141ebeb05 2020-01-26 01:40:00.277406 27993 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 23:01:01.481259000 Z\n- &1 2020-01-26 00:42:53.323042000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-26 01:42:58.507568431 Z\nsign_in_count:\n- 86\n- 87\n 177 \N 187.149.51.184 7c48f409-0592-4b20-a7fa-ce04a686e3da 2020-01-26 01:42:58.516705 27994 8 User \N \N 8 User \N update ---\nunique_session_id:\n- bZyRbB7XJE-ySHxt7rnQ\n- smRQ4UzbQ8NVUGRiv88R\n 178 \N 187.149.51.184 7c48f409-0592-4b20-a7fa-ce04a686e3da 2020-01-26 01:42:58.53531 27995 2098 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 774\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2020-01-25\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-250\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.117.149 06626d8c-154e-4b86-a751-69ed09571303 2020-01-26 01:47:53.780148 27996 815 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 6 \N 189.186.117.149 06626d8c-154e-4b86-a751-69ed09571303 2020-01-26 01:47:53.812289 27997 2098 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.117.149 8024a50e-d8dd-448d-9596-01e3d7fbb60c 2020-01-26 01:48:04.809292 27998 2864 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 774\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.569E3\nmove_type: '1'\nsale_id: 2098\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-250\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.131E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-250 189.186.117.149 8024a50e-d8dd-448d-9596-01e3d7fbb60c 2020-01-26 01:48:04.836243 27999 2099 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 772\namount: !ruby/object:BigDecimal 18:0.119E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.119E3\nstatus: 0\ndate_sale: 2020-01-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1027\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 68410fbd-d52e-4887-bcd1-be89def4a103 2020-01-26 02:04:40.883074 28000 1290 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.51.184 68410fbd-d52e-4887-bcd1-be89def4a103 2020-01-26 02:04:40.915613 28001 2099 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 c13bb6a4-54bd-44e0-9296-62a9d4c9afb1 2020-01-26 02:04:47.481757 28002 2865 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 772\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.119E3\nmove_type: '1'\nsale_id: 2099\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1027\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.119E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1027 187.149.51.184 c13bb6a4-54bd-44e0-9296-62a9d4c9afb1 2020-01-26 02:04:47.507296 28003 788 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 773\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.1457E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.84E3\nphysical_cash: !ruby/object:BigDecimal 18:0.234E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.51.184 f5eb6311-2416-4309-8d38-164d63b7cfd2 2020-01-26 02:10:19.906696 28004 773 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 f5eb6311-2416-4309-8d38-164d63b7cfd2 2020-01-26 02:10:19.922055 28005 2100 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 772\namount: !ruby/object:BigDecimal 18:0.43521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-01-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1028\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 bcc61119-a24c-4153-9660-917a93adf0bc 2020-01-26 02:10:51.018946 28006 128 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.51.184 bcc61119-a24c-4153-9660-917a93adf0bc 2020-01-26 02:10:51.057574 28007 2100 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 74a7d8f5-404a-4f6f-bedb-6d9a6f7e6e35 2020-01-26 02:10:57.349836 28008 2866 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 772\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2100\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1028\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1028 187.149.51.184 74a7d8f5-404a-4f6f-bedb-6d9a6f7e6e35 2020-01-26 02:10:57.373824 28009 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2020-01-11 18:36:25.850814000 Z\n- &1 2020-01-15 18:03:56.776176000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-26 02:21:02.305694462 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124061\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 49\n- 50\n 100 \N 187.149.51.184 e031a123-be97-4f13-8691-8e2f3dffc134 2020-01-26 02:21:02.313554 28010 24 User \N \N 24 User \N update ---\nunique_session_id:\n- pDeHbSxyFizxRodxKsCW\n- y_QWkF3ME8z8QCcHL7Tx\n 101 \N 187.149.51.184 e031a123-be97-4f13-8691-8e2f3dffc134 2020-01-26 02:21:02.330303 28011 789 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 772\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2488E4\namount_out: !ruby/object:BigDecimal 18:0.135E3\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.824E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2824E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.51.184 175f354e-d3a7-4fb4-bee6-0400f01b4709 2020-01-26 02:30:07.25244 28012 772 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 175f354e-d3a7-4fb4-bee6-0400f01b4709 2020-01-26 02:30:07.26917 28013 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-26 00:21:29.858152000 Z\n- &1 2020-01-26 01:17:20.989721000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-26 02:52:24.689943947 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\nsign_in_count:\n- 1339\n- 1340\n 2680 \N 189.186.54.195 3a14a24a-2afe-44fd-8635-2218f29cd1a0 2020-01-26 02:52:24.697523 28014 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CbEzwraLntRC1FE7-D3J\n- xjGexb1ej_ShsuUh86iG\n 2681 \N 189.186.54.195 3a14a24a-2afe-44fd-8635-2218f29cd1a0 2020-01-26 02:52:24.715709 28015 790 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 774\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.569E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.955E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1455E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.117.149 44a9b68f-41ba-48f3-9ab3-e820e3f0d8bd 2020-01-26 03:01:06.052889 28016 774 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.117.149 44a9b68f-41ba-48f3-9ab3-e820e3f0d8bd 2020-01-26 03:01:06.067243 28017 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-01-02 21:47:31.233614000 Z\n- &1 2020-01-07 18:17:41.665371000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-26 17:06:23.534247913 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 62\n- 63\n 126 \N 187.149.51.184 8d76b05a-aaa7-4e2a-bd59-c0e2ebda61df 2020-01-26 17:06:23.564334 28018 25 User \N \N 25 User \N update ---\nunique_session_id:\n- 3SFsz5KFVJr6wvs6AJPA\n- U1pNe6LEA-sWmixuB8te\n 127 \N 187.149.51.184 8d76b05a-aaa7-4e2a-bd59-c0e2ebda61df 2020-01-26 17:06:23.588013 28019 775 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.824E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 824.0 187.149.51.184 29dc68ad-390a-4f4a-aaa8-e63e79236439 2020-01-26 17:40:49.458878 28020 2101 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 775\namount: !ruby/object:BigDecimal 18:0.48521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-01-26\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-1029\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 ba9acc2e-93d2-40e3-bca4-4adae11a9d36 2020-01-26 18:56:11.614608 28021 1566 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.51.184 ba9acc2e-93d2-40e3-bca4-4adae11a9d36 2020-01-26 18:56:11.650938 28022 2101 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 6794f4c3-6c45-4027-aa3e-d8bd54de581a 2020-01-26 18:56:16.210151 28023 2867 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 775\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 2101\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1029\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.1E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1029 187.149.51.184 6794f4c3-6c45-4027-aa3e-d8bd54de581a 2020-01-26 18:56:16.236425 28024 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-26 01:17:20.989721000 Z\n- &1 2020-01-26 02:52:24.689943000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-26 19:22:13.601647160 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107364\n mask_addr: 4294967295\nsign_in_count:\n- 1340\n- 1341\n 2682 \N 187.149.12.36 618aeb72-4c37-49e7-963c-22cc2b756d3b 2020-01-26 19:22:13.61228 28025 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xjGexb1ej_ShsuUh86iG\n- UjXvd6Ki2Jg5oPX-rWV5\n 2683 \N 187.149.12.36 618aeb72-4c37-49e7-963c-22cc2b756d3b 2020-01-26 19:22:13.634868 28026 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 19:38:27.967038000 Z\n- &1 2020-01-26 01:39:24.093275000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-26 20:00:45.894016456 Z\nsign_in_count:\n- 101\n- 102\n 205 \N 189.186.117.149 36bb142e-f401-446b-9a2f-563b89a2f351 2020-01-26 20:00:45.911682 28027 21 User \N \N 21 User \N update ---\nunique_session_id:\n- biH-pevh6ey5sHYpZRie\n- xzcS9xahfNZDp2qxE1Mb\n 206 \N 189.186.117.149 36bb142e-f401-446b-9a2f-563b89a2f351 2020-01-26 20:00:45.930729 28028 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-23 17:03:30.590994000 Z\n- &1 2020-01-24 17:03:50.001616000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-26 20:13:17.736184023 Z\nsign_in_count:\n- 84\n- 85\n 170 \N 187.149.51.184 89c14071-1fcf-4f6f-b28d-4dea25b5459a 2020-01-26 20:13:17.742072 28029 27 User \N \N 27 User \N update ---\nunique_session_id:\n- xWceg-zm97Mub6rAbEoV\n- vrbtK6-3kyE-NYpzZ_gz\n 171 \N 187.149.51.184 89c14071-1fcf-4f6f-b28d-4dea25b5459a 2020-01-26 20:13:17.756167 28030 776 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.84E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 840.0 187.149.51.184 d84a24d6-2c1b-422e-96ff-e81f296bf2ed 2020-01-26 20:14:24.928916 28031 2102 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 776\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2596E3\ntotal: !ruby/object:BigDecimal 18:0.3894E3\nstatus: 0\ndate_sale: 2020-01-26\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-821\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 e038327a-b039-4c4b-a891-630837642e98 2020-01-26 20:21:16.45332 28032 718 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.51.184 e038327a-b039-4c4b-a891-630837642e98 2020-01-26 20:21:16.486563 28033 2102 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 6aa6f026-c262-4f82-9470-da882b195d2f 2020-01-26 20:21:22.35352 28034 2868 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 776\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3894E3\nmove_type: '1'\nsale_id: 2102\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-821\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1106E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-821 187.149.51.184 6aa6f026-c262-4f82-9470-da882b195d2f 2020-01-26 20:21:22.377139 28035 2103 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 775\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.479E3\ntotal: !ruby/object:BigDecimal 18:0.72E3\nstatus: 0\ndate_sale: 2020-01-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1030\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 594040de-cc02-4515-acbb-3a32356fd0de 2020-01-26 21:35:56.115793 28036 1155 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 187.149.51.184 594040de-cc02-4515-acbb-3a32356fd0de 2020-01-26 21:35:56.153855 28037 2103 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 ac64d942-3d8b-4d99-a147-54938cd68773 2020-01-26 21:36:02.255918 28038 2869 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 775\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.72E3\nmove_type: '1'\nsale_id: 2103\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1030\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.8E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1030 187.149.51.184 ac64d942-3d8b-4d99-a147-54938cd68773 2020-01-26 21:36:02.280362 28091 686 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.51.184 52c59f89-dd16-4c63-b83c-14ca4d67e64d 2020-01-27 23:27:38.702458 28039 2104 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 776\namount: !ruby/object:BigDecimal 18:0.112919E4\ntax: !ruby/object:BigDecimal 18:0.3881E2\ndiscount: !ruby/object:BigDecimal 18:0.4672E3\ntotal: !ruby/object:BigDecimal 18:0.7008E3\nstatus: 0\ndate_sale: 2020-01-26\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-822\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 e0655d0c-2605-4f15-9c46-fd46a823b912 2020-01-26 21:45:20.382567 28040 800 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 21 \N 187.149.51.184 e0655d0c-2605-4f15-9c46-fd46a823b912 2020-01-26 21:45:20.41233 28041 317 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.51.184 e0655d0c-2605-4f15-9c46-fd46a823b912 2020-01-26 21:45:20.442419 28042 2104 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 76237051-823a-4c69-9319-5bb604c90c4b 2020-01-26 21:45:24.695595 28043 2870 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 776\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.7E3\nmove_type: '1'\nsale_id: 2104\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-822\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-822 187.149.51.184 76237051-823a-4c69-9319-5bb604c90c4b 2020-01-26 21:45:24.720072 28044 2870 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 776\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 2104\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-822\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.51.184 49d987e9-fd21-4510-ae11-dca30932ebb2 2020-01-26 21:45:28.42095 28045 791 CashOut \N \N 25 User \N create ---\nopen_cash_register_id: 775\nuser_id: 25\namount_in: !ruby/object:BigDecimal 18:0.82E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1644E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1644E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.51.184 a418f6d7-e979-428b-b6c6-a43bd1f87f0e 2020-01-26 22:04:52.563186 28046 775 OpenCashRegister \N \N 25 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 a418f6d7-e979-428b-b6c6-a43bd1f87f0e 2020-01-26 22:04:52.578285 28047 792 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 776\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.3894E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1229E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1229E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.51.184 116f38af-33c3-4af1-a8d4-36fb56cff421 2020-01-26 22:13:37.060014 28048 776 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 116f38af-33c3-4af1-a8d4-36fb56cff421 2020-01-26 22:13:37.074251 28049 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-26 02:52:24.689943000 Z\n- &1 2020-01-26 19:22:13.601647000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-26 23:57:17.022562127 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107364\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107364\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945891\n mask_addr: 4294967295\nsign_in_count:\n- 1341\n- 1342\n 2684 \N 200.68.180.163 a0e4c103-ee8d-49ad-83cb-e1e2e829ea4a 2020-01-26 23:57:17.030532 28050 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UjXvd6Ki2Jg5oPX-rWV5\n- sQBvc-XfH2qHtZpmqe1t\n 2685 \N 200.68.180.163 a0e4c103-ee8d-49ad-83cb-e1e2e829ea4a 2020-01-26 23:57:17.049355 28051 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-24 17:03:50.001616000 Z\n- &1 2020-01-26 20:13:17.736184000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-27 16:58:37.836510172 Z\nsign_in_count:\n- 85\n- 86\n 172 \N 187.149.51.184 e4d9b3b7-5360-49c7-8403-bef01287d8d6 2020-01-27 16:58:37.868048 28052 27 User \N \N 27 User \N update ---\nunique_session_id:\n- vrbtK6-3kyE-NYpzZ_gz\n- AWsg3tocAdxSm7ne8P4r\n 173 \N 187.149.51.184 e4d9b3b7-5360-49c7-8403-bef01287d8d6 2020-01-27 16:58:37.892661 28053 777 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1229E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1229.0 187.149.51.184 30c25211-2487-4ef9-883b-8171d506f936 2020-01-27 16:58:51.365516 28054 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-24 17:46:48.865017000 Z\n- &1 2020-01-25 19:42:17.990535000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-27 17:11:00.349966775 Z\nsign_in_count:\n- 454\n- 455\n 913 \N 187.149.51.184 7d8fb3a6-2c14-4485-8a8f-f8d18e5c210c 2020-01-27 17:11:00.356036 28055 2 User \N \N 2 User \N update ---\nunique_session_id:\n- TvDyKL1VmnTz8yu3jM7H\n- JQYsV6ySFVmYgNbtYxBB\n 914 \N 187.149.51.184 7d8fb3a6-2c14-4485-8a8f-f8d18e5c210c 2020-01-27 17:11:00.379103 28056 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-26 19:22:13.601647000 Z\n- &1 2020-01-26 23:57:17.022562000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-27 19:17:55.240790715 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107364\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945891\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945891\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092452\n mask_addr: 4294967295\nsign_in_count:\n- 1342\n- 1343\n 2686 \N 189.186.34.228 24781f1a-bb69-45d2-aac0-6c1a2be0fa29 2020-01-27 19:17:55.248656 28057 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sQBvc-XfH2qHtZpmqe1t\n- UDi-UoUXDdnG1PBes6Qz\n 2687 \N 189.186.34.228 24781f1a-bb69-45d2-aac0-6c1a2be0fa29 2020-01-27 19:17:55.269344 28058 2105 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 777\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.4396E3\ntotal: !ruby/object:BigDecimal 18:0.6594E3\nstatus: 0\ndate_sale: 2020-01-27\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-823\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 f47d3961-abe1-46b8-b64c-39985fdc01f2 2020-01-27 19:22:59.469029 28059 1084 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 187.149.51.184 f47d3961-abe1-46b8-b64c-39985fdc01f2 2020-01-27 19:22:59.502747 28060 2105 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 54e403f5-0015-4927-a054-ded7e63b5b1e 2020-01-27 19:24:16.066768 28092 75 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.51.184 f2e5999b-6ac6-48e0-adf5-95f7a635dc3a 2020-01-27 23:27:53.053237 44786 1518 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1518'\n is_parent: false\n sku: FAL-1518\n name: FLD-0038\n description: FALDA A CUADROS GRIS BALBOA\n price_base: '297.0'\n price_sale: '749.0'\n img_product: 14E2DDEC-E162-4ADA-84F1-915334B7FCB7.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001518'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 23:28:32.26086'\n updated_at: &12 2020-11-04 00:15:51.925580095 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1518'\n sku: FAL-1518\n name: FLD-0038\n description: FALDA A CUADROS GRIS BALBOA\n price_base: '297.00'\n price_sale: '749.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 23:28:32.26086'\n updated_at: '2020-11-03 23:28:32.297192'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001518'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1518'\n type: *3\n value: 1518\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-1518\n type: *7\n value: FAL-1518\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0038\n type: *8\n value: FLD-0038\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA A CUADROS GRIS BALBOA\n type: *6\n value: FALDA A CUADROS GRIS BALBOA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '297.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.297E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '749.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.749E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 14E2DDEC-E162-4ADA-84F1-915334B7FCB7.jpeg\n type: *2\n value: 14E2DDEC-E162-4ADA-84F1-915334B7FCB7.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001518'\n type: *2\n value: '0001518'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 23:28:32.26086'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 14E2DDEC-E162-4ADA-84F1-915334B7FCB7.jpeg\n 3 El producto FAL-1518 fue modificado. 187.149.136.226 beeedf83-390f-41f9-976d-11d39618be5d 2020-11-04 00:15:51.967214 28061 2871 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 777\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6594E3\nmove_type: '1'\nsale_id: 2105\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-823\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.406E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-823 187.149.51.184 54e403f5-0015-4927-a054-ded7e63b5b1e 2020-01-27 19:24:16.106547 28062 778 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1644E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1644.0 187.149.51.184 a0b964b4-0c5e-4cc9-95a9-5008a8a85d07 2020-01-27 21:51:22.915685 28063 271 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 778\nquantity: !ruby/object:BigDecimal 18:0.1E2\nstatus: 1\nobservations: cartulina\nexpense_date: 2020-01-27\nexpense_code: PV1-E-191\n 1 Egreso por 10.0 registrado 187.149.51.184 c40d0e36-9c53-453e-81ba-45ed24976d42 2020-01-27 21:51:45.904304 28064 2872 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 778\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 271\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.51.184 c40d0e36-9c53-453e-81ba-45ed24976d42 2020-01-27 21:51:45.949686 28065 1124 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.51.184 19a48150-e332-400d-873f-49a01d3ca162 2020-01-27 23:15:07.960811 28066 1124 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.51.184 2cdb30c2-0d0b-40fc-a5ca-55300456acbe 2020-01-27 23:15:16.809014 28067 317 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.51.184 31ee3f8e-9b33-4813-852f-2ee24f834fe4 2020-01-27 23:15:27.969708 28068 317 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.51.184 44c80bd0-810b-492c-887c-a5998bb2b96b 2020-01-27 23:15:33.307872 28069 1000 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.51.184 cf46ab26-ec24-4868-9d56-93bd3e5a793c 2020-01-27 23:15:49.106262 28070 1000 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.51.184 ff1853d0-42af-4481-833f-7bd651eeb46c 2020-01-27 23:15:53.957413 28071 598 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.51.184 a20ec9b1-d8ff-49ec-98b8-b6c64992c84b 2020-01-27 23:16:29.263386 28072 598 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.51.184 76e36d2e-425f-4cab-8500-fe438dc84c65 2020-01-27 23:16:34.038382 28073 598 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.51.184 d589c868-8422-4134-89d1-e006682f27d8 2020-01-27 23:16:36.389028 28074 318 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.51.184 a600cd71-e38e-4da7-b669-7c6dabe6371f 2020-01-27 23:16:58.354974 28075 318 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.51.184 1aff0c35-32af-4f40-8014-ecad967b0f63 2020-01-27 23:17:10.90382 28076 717 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.51.184 a472c1d5-f967-461d-a6f9-7f72ca00ddb2 2020-01-27 23:17:45.407365 28077 1003 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.51.184 b7ecc965-d69d-486d-8b82-d122cdbd4fda 2020-01-27 23:18:04.188904 28078 1003 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.51.184 a51c9d26-a9e8-40b5-acad-913acd8596f4 2020-01-27 23:18:10.313547 28079 292 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.51.184 2a1c521d-f814-483a-b7f9-21f1b8109644 2020-01-27 23:18:26.637383 28080 292 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.51.184 ec19ef9b-c55c-4f11-ba19-e93e15201003 2020-01-27 23:18:33.416675 28081 1021 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 187.149.51.184 27a9692d-0c8d-404f-bc0f-f7ea05014916 2020-01-27 23:18:42.372134 28082 1021 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.51.184 fc945072-c708-4339-8e90-f1ea301b735b 2020-01-27 23:18:49.116095 28083 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-01-02 20:48:33.840111000 Z\n- &1 2020-01-25 22:08:32.901473000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-27 23:24:53.746253184 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 103\n- 104\n 208 \N 187.149.51.184 046db1cf-837c-4aef-8db0-3bc11f0790f5 2020-01-27 23:24:53.755454 28084 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 5aX58oGjMEGazqgsD7pX\n- FxxxxexNyuVhebyPZ-Mb\n 209 \N 187.149.51.184 046db1cf-837c-4aef-8db0-3bc11f0790f5 2020-01-27 23:24:53.771297 28085 685 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.51.184 0e692e58-4404-43c3-9335-399636b9ee6b 2020-01-27 23:25:28.651081 28086 685 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.51.184 0b3101be-4961-4d67-9ec8-f92e10a44439 2020-01-27 23:25:33.503511 28087 685 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.51.184 fa07261d-5e5d-4d44-ae05-4b914562472e 2020-01-27 23:26:16.656223 28088 79 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.51.184 5728b1a1-4c83-4c21-8481-76d67a65264a 2020-01-27 23:26:46.651456 28089 688 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.51.184 41bed07c-d696-48c0-b40f-9eee4e5c1f3f 2020-01-27 23:27:20.495109 28090 688 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.51.184 334784f0-7ac8-4129-8cef-a2269a1302db 2020-01-27 23:27:27.295488 28120 2106 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-1031 cancelada. 187.149.51.184 2130693e-0fc6-4268-97da-ba1f357b5379 2020-01-27 23:57:31.952403 28093 77 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 187.149.51.184 05a6d612-0836-475d-a5c9-3ae15435bc88 2020-01-27 23:28:06.067702 28094 77 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.51.184 24c2c42b-3f86-4b5a-8833-f8f801f440cd 2020-01-27 23:28:10.225492 28095 81 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.51.184 b9fa759a-45eb-4ac6-a001-e4a00f436265 2020-01-27 23:28:34.772174 28096 81 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.51.184 c33701d8-63d1-4043-9aae-351d738f3d64 2020-01-27 23:28:41.799107 28097 78 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.51.184 79348665-181f-4404-83ad-0269f21c10f3 2020-01-27 23:28:49.904534 28098 78 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.51.184 1175978a-67cf-4cbe-96f4-b8872b31df12 2020-01-27 23:29:08.634914 28099 76 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.51.184 08f54179-9380-4ff6-8e43-055afb0d24bb 2020-01-27 23:29:17.03734 28100 76 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.51.184 e8dc7f2f-91ea-44f5-a1db-a36b6d4ab963 2020-01-27 23:29:21.139576 28101 436 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-01-27\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.51.184 76d0bc51-b384-41f4-8637-3fbb480851f7 2020-01-27 23:29:50.504177 28102 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-26 23:57:17.022562000 Z\n- &1 2020-01-27 19:17:55.240790000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-27 23:30:23.474162475 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945891\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092452\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092452\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 1343\n- 1344\n 2688 \N 187.149.51.184 f5ffe321-549a-46c0-a186-100f73362662 2020-01-27 23:30:23.482678 28103 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UDi-UoUXDdnG1PBes6Qz\n- rLRs-XbmwvLEgzGtxHZn\n 2689 \N 187.149.51.184 f5ffe321-549a-46c0-a186-100f73362662 2020-01-27 23:30:23.50288 28104 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-26 20:13:17.736184000 Z\n- &1 2020-01-27 16:58:37.836510000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-27 23:33:21.731553523 Z\nsign_in_count:\n- 86\n- 87\n 174 \N 187.149.51.184 1a2c9b82-df28-44ae-9cd6-818ba692eca8 2020-01-27 23:33:21.737383 28105 27 User \N \N 27 User \N update ---\nunique_session_id:\n- AWsg3tocAdxSm7ne8P4r\n- 28iomsMDyqaEL6AZ79qR\n 175 \N 187.149.51.184 1a2c9b82-df28-44ae-9cd6-818ba692eca8 2020-01-27 23:33:21.751539 28106 436 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-27\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.51.184 0c4012a8-8880-4be6-8c30-4bc3a6b9d756 2020-01-27 23:33:51.029287 28107 1569 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 78\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 0c4012a8-8880-4be6-8c30-4bc3a6b9d756 2020-01-27 23:33:51.053002 28108 1570 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 80\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 0c4012a8-8880-4be6-8c30-4bc3a6b9d756 2020-01-27 23:33:51.083458 28109 1571 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 83\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 0c4012a8-8880-4be6-8c30-4bc3a6b9d756 2020-01-27 23:33:51.10607 28110 1572 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 79\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 0c4012a8-8880-4be6-8c30-4bc3a6b9d756 2020-01-27 23:33:51.12764 28111 1573 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 77\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 0c4012a8-8880-4be6-8c30-4bc3a6b9d756 2020-01-27 23:33:51.161528 28112 275 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.51.184 0c4012a8-8880-4be6-8c30-4bc3a6b9d756 2020-01-27 23:33:51.18593 28113 276 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.51.184 0c4012a8-8880-4be6-8c30-4bc3a6b9d756 2020-01-27 23:33:51.206821 28114 1574 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 81\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 0c4012a8-8880-4be6-8c30-4bc3a6b9d756 2020-01-27 23:33:51.229728 28115 321 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.51.184 0c4012a8-8880-4be6-8c30-4bc3a6b9d756 2020-01-27 23:33:51.249084 28116 2106 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 778\namount: !ruby/object:BigDecimal 18:0.46521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.379E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-01-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1031\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 e7c9a49d-08e5-4e10-843a-0d66fb80a349 2020-01-27 23:50:24.870187 28117 190 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.51.184 e7c9a49d-08e5-4e10-843a-0d66fb80a349 2020-01-27 23:50:24.900314 28118 2106 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 9fc24282-2fde-4a74-889c-eb783387c64a 2020-01-27 23:50:30.093757 28119 2873 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 778\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2106\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1031\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1031 187.149.51.184 9fc24282-2fde-4a74-889c-eb783387c64a 2020-01-27 23:50:30.116075 28121 2873 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 778\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 2106\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1031\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.51.184 2130693e-0fc6-4268-97da-ba1f357b5379 2020-01-27 23:57:31.978671 28122 190 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.51.184 2130693e-0fc6-4268-97da-ba1f357b5379 2020-01-27 23:57:32.007879 28123 2107 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 778\namount: !ruby/object:BigDecimal 18:0.41293E3\ntax: !ruby/object:BigDecimal 18:0.6607E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2020-01-27\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1032\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 d4c058ed-d0e5-4e50-bcad-e9713b466ecc 2020-01-27 23:57:58.472871 28124 190 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.51.184 d4c058ed-d0e5-4e50-bcad-e9713b466ecc 2020-01-27 23:57:58.503184 28125 2107 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 0ac3bb6f-1e37-4668-87cd-13dff8fc0826 2020-01-27 23:58:03.2907 28126 2874 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 778\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2107\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1032\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1032 187.149.51.184 0ac3bb6f-1e37-4668-87cd-13dff8fc0826 2020-01-27 23:58:03.312413 28127 2874 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 778\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 2107\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1032\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.51.184 1185b7f8-3de9-40d5-8214-31f189f15444 2020-01-27 23:58:17.419564 28128 2107 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-1032 cancelada. 187.149.51.184 75431830-4dfc-4d2a-a688-c8d5704c30da 2020-01-27 23:58:26.653641 28129 190 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.51.184 75431830-4dfc-4d2a-a688-c8d5704c30da 2020-01-27 23:58:26.679111 28130 2108 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 778\namount: !ruby/object:BigDecimal 18:0.46521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.379E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-01-27\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1033\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 06747fff-0a27-4edb-b474-afeb423a6a34 2020-01-27 23:58:48.548211 28131 190 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.51.184 06747fff-0a27-4edb-b474-afeb423a6a34 2020-01-27 23:58:48.591466 28132 2108 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 3dbf2fa3-0928-4bce-acdf-d18d4415f484 2020-01-27 23:58:53.37832 28133 2875 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 778\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2108\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1033\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1033 187.149.51.184 3dbf2fa3-0928-4bce-acdf-d18d4415f484 2020-01-27 23:58:53.400244 28134 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-26 01:39:24.093275000 Z\n- &1 2020-01-26 20:00:45.894016000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-28 00:49:56.831251044 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\nsign_in_count:\n- 102\n- 103\n 207 \N 189.186.157.125 880097bd-3b0f-419b-ac00-f6034f892aa1 2020-01-28 00:49:56.838417 28135 21 User \N \N 21 User \N update ---\nunique_session_id:\n- xzcS9xahfNZDp2qxE1Mb\n- 3FwxYMs7JsDb3PjoaXxC\n 208 \N 189.186.157.125 880097bd-3b0f-419b-ac00-f6034f892aa1 2020-01-28 00:49:56.854051 28136 2109 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 778\namount: !ruby/object:BigDecimal 18:0.93521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.849E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-01-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1034\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 5f7bda56-8749-4fb4-a8a9-7bb22a598b89 2020-01-28 01:50:10.302927 28137 1559 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.51.184 5f7bda56-8749-4fb4-a8a9-7bb22a598b89 2020-01-28 01:50:10.339684 28138 2109 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 c72236f6-d8a6-4a18-9f8a-3e82ca3891c8 2020-01-28 01:50:16.213205 28139 2876 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 778\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2109\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1034\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1034 187.149.51.184 c72236f6-d8a6-4a18-9f8a-3e82ca3891c8 2020-01-28 01:50:16.236533 28140 793 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 778\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2E3\namount_out: !ruby/object:BigDecimal 18:0.1E2\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.834E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1834E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.51.184 c17c3e28-c99b-40c8-87c5-4e6b6734f338 2020-01-28 01:57:43.252216 28141 778 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 c17c3e28-c99b-40c8-87c5-4e6b6734f338 2020-01-28 01:57:43.267691 28164 1556 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.157.125 6d46aa31-9ca1-4a09-9e7f-cacc95436e29 2020-01-28 02:38:55.114927 28212 1549 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.51.184 0d222cd9-5485-4787-b5db-e4e21c9abb3e 2020-01-28 19:46:02.952425 28142 794 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 777\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.6594E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.17E4\ncash_fund: !ruby/object:BigDecimal 27:0.8884000000000001E3\nphysical_cash: !ruby/object:BigDecimal 18:0.25884E4\nobservations: NO APARECE UNA VENTA DE AYER DE $700\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.51.184 25c0d875-0128-4638-a001-fabbd8de736e 2020-01-28 02:08:51.892514 28143 777 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 25c0d875-0128-4638-a001-fabbd8de736e 2020-01-28 02:08:51.916479 28144 795 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 777\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.6594E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.17E4\ncash_fund: !ruby/object:BigDecimal 27:0.8884000000000001E3\nphysical_cash: !ruby/object:BigDecimal 18:0.25884E4\nobservations: NO APARECE UNA VENTA DE AYER DE $700\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.51.184 5ec8708f-1211-4bd8-a0cb-73ff4e5b50df 2020-01-28 02:08:52.007176 28145 779 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.955E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 955.0 189.186.157.125 34260803-34a0-4818-8c4e-ac50e5c9d011 2020-01-28 02:29:10.69855 28146 2110 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 779\namount: !ruby/object:BigDecimal 18:0.829E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.829E3\nstatus: 0\ndate_sale: 2020-01-27\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-251\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.157.125 2ab6ce9c-d973-4dcb-8d15-e6f18df25364 2020-01-28 02:31:33.578676 28147 1530 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.157.125 2ab6ce9c-d973-4dcb-8d15-e6f18df25364 2020-01-28 02:31:33.616112 28148 2110 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.157.125 86956ae2-b933-4a79-9561-a57745a5c4b4 2020-01-28 02:32:44.049896 28149 2877 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 779\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.829E3\nmove_type: '1'\nsale_id: 2110\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-251\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.171E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-251 189.186.157.125 86956ae2-b933-4a79-9561-a57745a5c4b4 2020-01-28 02:32:44.076825 28150 280 Customer \N \N 21 User \N create ---\nnick_name: CHARITO\nphone: "(667) 342-0991"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CHARITO fue registrado. 189.186.157.125 b8452c7d-1caf-4476-85ad-6f02c0d41046 2020-01-28 02:35:15.006461 28151 2111 Sale \N \N 21 User \N create ---\ncustomer_id: 280\nuser_id: 21\nopen_cash_register_id: 779\namount: !ruby/object:BigDecimal 18:0.108434E4\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.109799E4\nstatus: 0\ndate_sale: 2020-01-27\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-252\nexpiration_date: 2020-03-02\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.157.125 196f162b-4898-4220-8d00-bf096de74f99 2020-01-28 02:35:51.806046 28152 1556 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.157.125 196f162b-4898-4220-8d00-bf096de74f99 2020-01-28 02:35:51.83287 28153 840 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.33E2\n- !ruby/object:BigDecimal 18:0.32E2\n 4 \N 189.186.157.125 196f162b-4898-4220-8d00-bf096de74f99 2020-01-28 02:35:51.857415 28154 2878 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 779\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2111\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-252\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-252 189.186.157.125 b40830d8-cb85-4c7a-a6b8-31220a25bacc 2020-01-28 02:36:22.075885 28155 2879 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 779\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2111\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-252\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-252 189.186.157.125 66786b06-b857-41b0-8256-5ea44c1898df 2020-01-28 02:36:22.234109 28156 2111 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.157.125 7221b59d-7d8c-4315-b182-143a48d89962 2020-01-28 02:36:25.746054 28157 2111 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV3-V-252 cancelada. 189.186.157.125 20575a8a-bdfb-40b2-aded-ded6390ef264 2020-01-28 02:38:54.806425 28158 2878 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 779\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2111\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-252\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.157.125 20575a8a-bdfb-40b2-aded-ded6390ef264 2020-01-28 02:38:54.833316 28159 2879 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 779\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2111\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-252\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.157.125 20575a8a-bdfb-40b2-aded-ded6390ef264 2020-01-28 02:38:54.857027 28160 840 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.32E2\n- !ruby/object:BigDecimal 18:0.33E2\n 5 \N 189.186.157.125 20575a8a-bdfb-40b2-aded-ded6390ef264 2020-01-28 02:38:54.889555 28161 1556 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.157.125 20575a8a-bdfb-40b2-aded-ded6390ef264 2020-01-28 02:38:54.917905 28162 2111 Sale \N \N 21 User \N update --- {}\n 4 Venta PV3-V-252 cancelada. 189.186.157.125 6d46aa31-9ca1-4a09-9e7f-cacc95436e29 2020-01-28 02:38:55.060228 28163 840 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.33E2\n- !ruby/object:BigDecimal 18:0.34E2\n 6 \N 189.186.157.125 6d46aa31-9ca1-4a09-9e7f-cacc95436e29 2020-01-28 02:38:55.088196 28165 2112 Sale \N \N 21 User \N create ---\ncustomer_id: 280\nuser_id: 21\nopen_cash_register_id: 779\namount: !ruby/object:BigDecimal 18:0.108434E4\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.109799E4\nstatus: 0\ndate_sale: 2020-01-27\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-253\nexpiration_date: 2020-03-02\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.157.125 15f5c600-a005-4e86-a387-1c83e4a3fc09 2020-01-28 02:39:47.568272 28166 1556 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.157.125 15f5c600-a005-4e86-a387-1c83e4a3fc09 2020-01-28 02:39:47.59932 28167 840 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.34E2\n- !ruby/object:BigDecimal 18:0.33E2\n 7 \N 189.186.157.125 15f5c600-a005-4e86-a387-1c83e4a3fc09 2020-01-28 02:39:47.625195 28168 2880 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 779\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2112\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-253\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-253 189.186.157.125 53e72879-834d-4ead-a154-00113b2151f9 2020-01-28 02:39:52.472419 28169 2112 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.157.125 42c3b043-b202-4c39-b45f-09886dc92fea 2020-01-28 02:39:58.057808 28170 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-27 19:17:55.240790000 Z\n- &1 2020-01-27 23:30:23.474162000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-28 03:02:54.029392095 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092452\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092452\n mask_addr: 4294967295\nsign_in_count:\n- 1344\n- 1345\n 2690 \N 189.186.34.228 328d4134-bcd2-4ca2-9564-51bb01f8fdc1 2020-01-28 03:02:54.037815 28171 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rLRs-XbmwvLEgzGtxHZn\n- 6eByNxLpmLdmYRGgUqaD\n 2691 \N 189.186.34.228 328d4134-bcd2-4ca2-9564-51bb01f8fdc1 2020-01-28 03:02:54.059519 28172 796 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 779\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1329E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.14E4\ncash_fund: !ruby/object:BigDecimal 18:0.884E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2284E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.157.125 55f7f529-ff77-4768-b047-538be81083e0 2020-01-28 03:06:07.483151 28173 779 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.157.125 55f7f529-ff77-4768-b047-538be81083e0 2020-01-28 03:06:07.499114 28174 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-27 23:30:23.474162000 Z\n- &1 2020-01-28 03:02:54.029392000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-28 18:14:03.080508370 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092452\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092452\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\nsign_in_count:\n- 1345\n- 1346\n 2692 \N 189.186.157.125 be782ba1-ff4f-4deb-8adc-c16ca14e8c20 2020-01-28 18:14:03.112565 28175 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6eByNxLpmLdmYRGgUqaD\n- 6Ts-X6A9ErsDAyg2mzta\n 2693 \N 189.186.157.125 be782ba1-ff4f-4deb-8adc-c16ca14e8c20 2020-01-28 18:14:03.142914 28176 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 19:42:17.990535000 Z\n- &1 2020-01-27 17:11:00.349966000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-28 18:22:40.626915674 Z\nsign_in_count:\n- 455\n- 456\n 915 \N 187.149.51.184 e81141fc-4d01-430b-b02b-9575c26a5ab9 2020-01-28 18:22:40.632934 28177 2 User \N \N 2 User \N update ---\nunique_session_id:\n- JQYsV6ySFVmYgNbtYxBB\n- nomrFRDPcMC_SFQ9BrAx\n 916 \N 187.149.51.184 e81141fc-4d01-430b-b02b-9575c26a5ab9 2020-01-28 18:22:40.64892 28178 780 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.834E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 834.0 187.149.51.184 885dbdcd-07ff-4d24-9616-f3b14ba9e075 2020-01-28 18:22:56.036853 28179 2113 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 780\namount: !ruby/object:BigDecimal 18:0.48521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-01-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1035\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 5c9376b4-42b3-4311-b87d-bb7613661146 2020-01-28 18:23:31.046035 28180 189 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.51.184 5c9376b4-42b3-4311-b87d-bb7613661146 2020-01-28 18:23:31.086127 28181 2113 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 262d8f7c-ca1a-42e8-9fcf-1d02dd62d702 2020-01-28 18:23:34.985667 28182 2881 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 780\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2113\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1035\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1035 187.149.51.184 262d8f7c-ca1a-42e8-9fcf-1d02dd62d702 2020-01-28 18:23:35.022481 28183 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-28 03:02:54.029392000 Z\n- &1 2020-01-28 18:14:03.080508000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-28 18:40:40.183591717 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183092452\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 1346\n- 1347\n 2694 \N 187.149.51.184 7366f074-0909-4379-a9e0-9bbec653eab6 2020-01-28 18:40:40.192412 28184 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6Ts-X6A9ErsDAyg2mzta\n- hm9jyHa_PAXYHZxdC5Tt\n 2695 \N 187.149.51.184 7366f074-0909-4379-a9e0-9bbec653eab6 2020-01-28 18:40:40.213325 28185 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-27 17:11:00.349966000 Z\n- &1 2020-01-28 18:22:40.626915000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-28 18:46:02.960232130 Z\nsign_in_count:\n- 456\n- 457\n 917 \N 187.149.51.184 7b2a3e42-e458-4224-b95e-822e9735ab2c 2020-01-28 18:46:02.967737 28186 2 User \N \N 2 User \N update ---\nunique_session_id:\n- nomrFRDPcMC_SFQ9BrAx\n- fScBYvjUs_1s-qgsWtjy\n 918 \N 187.149.51.184 7b2a3e42-e458-4224-b95e-822e9735ab2c 2020-01-28 18:46:02.987613 28187 2114 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 780\namount: !ruby/object:BigDecimal 18:0.48521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-01-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1036\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 071afcdc-8dca-4938-8dd6-5fa1454d7104 2020-01-28 18:46:38.129462 28188 1564 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.51.184 071afcdc-8dca-4938-8dd6-5fa1454d7104 2020-01-28 18:46:38.166816 28189 2114 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 e79424ea-199d-419f-879a-24aa80162383 2020-01-28 18:46:53.081567 28190 2882 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 780\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2114\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1036\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1036 187.149.51.184 e79424ea-199d-419f-879a-24aa80162383 2020-01-28 18:46:53.103313 28191 437 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-01-28\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.51.184 ce28c6f7-1a87-4595-84cc-c32004f2f806 2020-01-28 19:08:33.593554 28192 438 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-01-28\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.51.184 7d990614-5523-4549-b86d-ed8d7aefbae7 2020-01-28 19:09:26.874393 28193 996 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.51.184 239ebdd1-21b4-47f5-b414-e94dec6084fa 2020-01-28 19:09:55.671102 28194 996 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.51.184 7ac280b2-5219-4de0-897d-3a9a7d139f45 2020-01-28 19:10:04.015103 28195 439 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-01-28\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.51.184 08f84a85-6000-458a-bb6a-f3bbd9ea0341 2020-01-28 19:11:56.397413 28196 996 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.51.184 ddfb68ca-a239-48c2-89d3-dc11d2a691d4 2020-01-28 19:12:26.686724 28197 996 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.51.184 d8d8cc80-4bd9-4b04-a62a-a71c5cd920ac 2020-01-28 19:12:29.852202 28198 997 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.51.184 deb8b149-881c-4bd5-b708-a31772a743a9 2020-01-28 19:12:39.291312 28199 997 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.51.184 58be5b56-e163-461b-a4a7-60fa9c533b74 2020-01-28 19:12:45.858192 28200 440 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-01-28\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.51.184 4f37b4af-be9a-4381-b069-fa5c7a3db760 2020-01-28 19:12:46.615854 28201 19 User \N \N 19 User \N update ---\nlast_sign_in_at:\n- 2019-12-18 17:50:01.717444000 Z\n- &1 2020-01-24 23:47:52.528306000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-28 19:13:01.161043561 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098676\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\nsign_in_count:\n- 3\n- 4\n 9 \N 189.186.157.125 5d3d640a-743a-4963-8eb2-319cbfa65947 2020-01-28 19:13:01.169219 28202 19 User \N \N 19 User \N update ---\nunique_session_id:\n- XqLze9wz4F-3hp4goHDZ\n- JKypDyrz99ZdiT2cZoWt\n 10 \N 189.186.157.125 5d3d640a-743a-4963-8eb2-319cbfa65947 2020-01-28 19:13:01.220767 28203 781 OpenCashRegister \N \N 19 User \N create ---\ncash_register_id: 3\nuser_id: 19\ninitial_cash: !ruby/object:BigDecimal 18:0.884E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 884.0 189.186.157.125 9ba2c913-84e0-40d0-b08c-c4b556f7224a 2020-01-28 19:13:09.455786 28204 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-28 18:22:40.626915000 Z\n- &1 2020-01-28 18:46:02.960232000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-28 19:21:04.421220411 Z\nsign_in_count:\n- 457\n- 458\n 919 \N 187.149.51.184 b536e183-be8d-49cf-8456-ae65c274d714 2020-01-28 19:21:04.428167 28205 2 User \N \N 2 User \N update ---\nunique_session_id:\n- fScBYvjUs_1s-qgsWtjy\n- WeXZT1JvVK1Wg9U8scWg\n 920 \N 187.149.51.184 b536e183-be8d-49cf-8456-ae65c274d714 2020-01-28 19:21:04.451015 28206 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-28 18:14:03.080508000 Z\n- &1 2020-01-28 18:40:40.183591000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-28 19:44:53.036730752 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 1347\n- 1348\n 2696 \N 187.149.51.184 1f758326-e66a-45b6-bb01-21bc867a67ae 2020-01-28 19:44:53.044169 28207 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hm9jyHa_PAXYHZxdC5Tt\n- 8PwQyVsYH6V2WpaFKeo2\n 2697 \N 187.149.51.184 1f758326-e66a-45b6-bb01-21bc867a67ae 2020-01-28 19:44:53.062429 28208 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-01-26 00:42:53.323042000 Z\n- &1 2020-01-26 01:42:58.507568000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-28 19:45:12.523477425 Z\nsign_in_count:\n- 87\n- 88\n 179 \N 187.149.51.184 55ae47e5-f988-434c-9503-1c0dcba50e24 2020-01-28 19:45:12.529715 28209 8 User \N \N 8 User \N update ---\nunique_session_id:\n- smRQ4UzbQ8NVUGRiv88R\n- HoEjCQ-kt-9_Um-JHmQi\n 180 \N 187.149.51.184 55ae47e5-f988-434c-9503-1c0dcba50e24 2020-01-28 19:45:12.544534 28210 782 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.8884E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 888.4 187.149.51.184 2620ab4a-c920-45b8-9c3d-c80ab1b4702e 2020-01-28 19:45:24.791897 28211 2115 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 782\namount: !ruby/object:BigDecimal 18:0.629E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.279E3\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2020-01-28\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-824\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 0d222cd9-5485-4787-b5db-e4e21c9abb3e 2020-01-28 19:46:02.916381 28214 2883 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 782\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 2115\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-824\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.15E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-824 187.149.51.184 98564bb6-93cf-413b-90c3-8be2aa93621c 2020-01-28 19:46:07.660458 28215 2116 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 782\namount: !ruby/object:BigDecimal 18:0.59452E3\ntax: !ruby/object:BigDecimal 18:0.3448E2\ndiscount: !ruby/object:BigDecimal 18:0.379E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-01-28\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-825\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 27b9dea8-ec96-4660-9e0d-0e1cb7d612a1 2020-01-28 19:49:08.700471 28216 1571 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.51.184 27b9dea8-ec96-4660-9e0d-0e1cb7d612a1 2020-01-28 19:49:08.730988 28217 2116 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 f64df909-f3f9-4126-adaa-737ea1f0a452 2020-01-28 19:49:12.79587 28218 2884 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 782\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 2116\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-825\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-825 187.149.51.184 f64df909-f3f9-4126-adaa-737ea1f0a452 2020-01-28 19:49:12.825674 28219 2117 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 780\namount: !ruby/object:BigDecimal 18:0.87141E3\ntax: !ruby/object:BigDecimal 18:0.2759E2\ndiscount: !ruby/object:BigDecimal 18:0.699E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-01-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1037\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 0bd5f3ad-3c83-4ee2-9119-04127d4d8bec 2020-01-28 19:51:34.699974 28220 163 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.51.184 0bd5f3ad-3c83-4ee2-9119-04127d4d8bec 2020-01-28 19:51:34.744229 28221 2117 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 075462b0-6587-47bb-b937-725801bc167d 2020-01-28 19:51:55.355652 28222 2885 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 780\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2117\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1037\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1037 187.149.51.184 075462b0-6587-47bb-b937-725801bc167d 2020-01-28 19:51:55.379895 28223 22 User \N \N 22 User \N update ---\nlast_sign_in_at:\n- 2019-11-03 19:40:54.498646000 Z\n- &1 2020-01-07 18:13:14.624771000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-28 20:00:57.949273570 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123415\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\nsign_in_count:\n- 4\n- 5\n 10 \N 189.186.157.125 5d2d6749-6006-47d6-9bd9-18b94c205cce 2020-01-28 20:00:57.96067 28224 22 User \N \N 22 User \N update ---\nunique_session_id:\n- J5NkReXzbRyve-oYb9ox\n- Jmk72Ju1U1WsvPtmfwti\n 11 \N 189.186.157.125 5d2d6749-6006-47d6-9bd9-18b94c205cce 2020-01-28 20:00:57.983308 28225 419 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-28\n 2 Se dio entrada a traspaso de SUO Comercial a Almacen central 189.186.157.125 3b62d8af-4cb1-406a-a0a3-8ea425174a76 2020-01-28 20:01:11.701853 28226 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-28 18:40:40.183591000 Z\n- &1 2020-01-28 19:44:53.036730000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-28 20:01:49.368530031 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\nsign_in_count:\n- 1348\n- 1349\n 2698 \N 189.186.157.125 b99bf847-111c-45aa-863e-60a2ae3a30d3 2020-01-28 20:01:49.376865 28227 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8PwQyVsYH6V2WpaFKeo2\n- BoUkdrsYZ_dSmse3t2g7\n 2699 \N 189.186.157.125 b99bf847-111c-45aa-863e-60a2ae3a30d3 2020-01-28 20:01:49.404873 28228 712 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.157.125 4d2922d2-2e46-4996-bb79-d7935f67e335 2020-01-28 20:03:16.830951 28229 712 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.157.125 b459a851-961b-4f19-8a59-568851456530 2020-01-28 20:03:19.869935 28230 441 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-01-28\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.157.125 5ea8c4e1-9617-46c9-970d-b42be2bd0b3b 2020-01-28 20:06:56.87437 28231 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-28 19:44:53.036730000 Z\n- &1 2020-01-28 20:01:49.368530000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-28 20:11:44.520566346 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 1349\n- 1350\n 2700 \N 187.149.51.184 a321f7f1-25a3-4b51-a36c-83cd4128a797 2020-01-28 20:11:44.52879 28232 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BoUkdrsYZ_dSmse3t2g7\n- koLYhxxyMgwmcTGgJTXx\n 2701 \N 187.149.51.184 a321f7f1-25a3-4b51-a36c-83cd4128a797 2020-01-28 20:11:44.552793 28233 442 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-01-28\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 187.149.51.184 1b065ea4-b38c-42f7-8858-043703528326 2020-01-28 20:15:20.514488 28234 689 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.51.184 0b2c4fea-9ddf-488c-8c2d-357092937f6d 2020-01-28 20:16:32.568471 28235 443 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-01-28\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.51.184 5e1df780-1c96-49cc-8a31-51d30c8f73c2 2020-01-28 20:16:42.733708 28236 444 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-01-28\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 187.149.51.184 8e6f3228-ab45-4633-8971-26019e4a19b8 2020-01-28 20:21:08.246392 28237 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-01-26 01:42:58.507568000 Z\n- &1 2020-01-28 19:45:12.523477000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-28 20:21:31.312787422 Z\nsign_in_count:\n- 88\n- 89\n 181 \N 187.149.51.184 c86ed50f-cf03-45af-8ff4-dfedcd557cd7 2020-01-28 20:21:31.31904 28238 8 User \N \N 8 User \N update ---\nunique_session_id:\n- HoEjCQ-kt-9_Um-JHmQi\n- 2EevACB4jUsaTNL5-WJH\n 182 \N 187.149.51.184 c86ed50f-cf03-45af-8ff4-dfedcd557cd7 2020-01-28 20:21:31.333602 28239 442 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-28\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.51.184 ac5d761b-3b0a-4f3d-8124-5707aba31097 2020-01-28 20:26:07.495377 28240 297 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.51.184 ac5d761b-3b0a-4f3d-8124-5707aba31097 2020-01-28 20:26:07.516762 28241 443 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-28\n 2 Se dio entrada a traspaso de SUO a S BY SUO 187.149.51.184 fd3214c1-a7ef-4447-938e-ccbbec0b4a57 2020-01-28 20:26:15.348028 28242 327 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.51.184 fd3214c1-a7ef-4447-938e-ccbbec0b4a57 2020-01-28 20:26:15.367615 28243 437 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-28\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.51.184 354d8404-97d6-4538-ab65-bae7efca202d 2020-01-28 21:00:55.330969 28244 205 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.51.184 354d8404-97d6-4538-ab65-bae7efca202d 2020-01-28 21:00:55.352276 28245 1007 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.51.184 354d8404-97d6-4538-ab65-bae7efca202d 2020-01-28 21:00:55.380213 28246 203 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.9E1\n 3 \N 187.149.51.184 354d8404-97d6-4538-ab65-bae7efca202d 2020-01-28 21:00:55.411287 28247 66 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.51.184 354d8404-97d6-4538-ab65-bae7efca202d 2020-01-28 21:00:55.441898 28248 1575 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 293\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 354d8404-97d6-4538-ab65-bae7efca202d 2020-01-28 21:00:55.478223 28249 1576 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 315\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 354d8404-97d6-4538-ab65-bae7efca202d 2020-01-28 21:00:55.514136 28250 65 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.51.184 354d8404-97d6-4538-ab65-bae7efca202d 2020-01-28 21:00:55.543939 28251 115 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.51.184 354d8404-97d6-4538-ab65-bae7efca202d 2020-01-28 21:00:55.572104 28252 2118 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 780\namount: !ruby/object:BigDecimal 18:0.1728E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1528E4\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-01-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1038\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 25c16d62-374f-4aae-8674-595c6fa7524d 2020-01-28 21:01:36.089242 28253 1068 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.51.184 25c16d62-374f-4aae-8674-595c6fa7524d 2020-01-28 21:01:36.122629 28254 1007 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.51.184 25c16d62-374f-4aae-8674-595c6fa7524d 2020-01-28 21:01:36.157277 28255 2118 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 8781a2fe-e985-4575-af6f-e6e79429d513 2020-01-28 21:02:35.487958 28256 2886 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 780\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2118\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1038\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1038 187.149.51.184 8781a2fe-e985-4575-af6f-e6e79429d513 2020-01-28 21:02:35.513352 28257 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-28 20:01:49.368530000 Z\n- &1 2020-01-28 20:11:44.520566000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-28 21:16:43.530156201 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\nsign_in_count:\n- 1350\n- 1351\n 2702 \N 189.186.157.125 8d1a7c93-03d9-48b4-9378-8dcc14a5a5fa 2020-01-28 21:16:43.538089 28258 4 User \N \N 4 User \N update ---\nunique_session_id:\n- koLYhxxyMgwmcTGgJTXx\n- kRC88KJiasdGkfhc1NT7\n 2703 \N 189.186.157.125 8d1a7c93-03d9-48b4-9378-8dcc14a5a5fa 2020-01-28 21:16:43.557382 28259 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-28 20:11:44.520566000 Z\n- &1 2020-01-28 21:16:43.530156000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-28 21:41:02.977764016 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104690\n mask_addr: 4294967295\nsign_in_count:\n- 1351\n- 1352\n 2704 \N 187.149.1.178 c6b406ab-01fc-427c-bc0f-024f0176f7d8 2020-01-28 21:41:03.00994 28260 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kRC88KJiasdGkfhc1NT7\n- Rss9YAboXcyN7r-4b6yE\n 2705 \N 187.149.1.178 c6b406ab-01fc-427c-bc0f-024f0176f7d8 2020-01-28 21:41:03.043304 28285 440 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-28\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.51.184 66f15f85-734b-463a-9c00-8569ca404e67 2020-01-29 00:53:18.668997 28261 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-28 21:16:43.530156000 Z\n- &1 2020-01-28 21:41:02.977764000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-28 22:10:07.129834778 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104690\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104690\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\nsign_in_count:\n- 1352\n- 1353\n 2706 \N 189.186.157.125 dd2c36a8-3fca-4f70-8dad-4abb92bb1cfd 2020-01-28 22:10:07.138017 28262 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Rss9YAboXcyN7r-4b6yE\n- rsGrMix5Tpv1LoCkbyJG\n 2707 \N 189.186.157.125 dd2c36a8-3fca-4f70-8dad-4abb92bb1cfd 2020-01-28 22:10:07.157647 28263 445 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-01-28\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.157.125 76457007-ac7c-4f2f-8e73-dd00455b3e4f 2020-01-28 23:44:54.258143 28264 692 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.157.125 7400656e-87d1-4457-b681-9ef6ade30c07 2020-01-28 23:46:33.23684 28265 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-28 21:41:02.977764000 Z\n- &1 2020-01-28 22:10:07.129834000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-28 23:56:18.797955560 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104690\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104690\n mask_addr: 4294967295\nsign_in_count:\n- 1353\n- 1354\n 2708 \N 187.149.1.178 374d6525-e9ab-48e6-8cd4-2d79b368069d 2020-01-28 23:56:18.806114 28266 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rsGrMix5Tpv1LoCkbyJG\n- Bou13p827rFi5EF99dkz\n 2709 \N 187.149.1.178 374d6525-e9ab-48e6-8cd4-2d79b368069d 2020-01-28 23:56:18.824287 28267 2119 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 780\namount: !ruby/object:BigDecimal 18:0.146521E4\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.1279E4\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-01-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1039\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 f3ed5272-c698-4caa-8df0-81157a45e09a 2020-01-29 00:19:31.859874 28268 763 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.51.184 f3ed5272-c698-4caa-8df0-81157a45e09a 2020-01-29 00:19:31.891024 28269 1007 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.51.184 f3ed5272-c698-4caa-8df0-81157a45e09a 2020-01-29 00:19:31.927122 28270 2119 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 2d886977-8209-44a0-be92-54cb559fdc73 2020-01-29 00:19:36.110487 28271 2887 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 780\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2119\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1039\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1039 187.149.51.184 2d886977-8209-44a0-be92-54cb559fdc73 2020-01-29 00:19:36.135451 28272 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-28 22:10:07.129834000 Z\n- &1 2020-01-28 23:56:18.797955000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-29 00:47:39.863160195 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104690\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104690\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 1354\n- 1355\n 2710 \N 187.149.51.184 22c0ec4b-e9c2-48b4-bfca-68da96843eaf 2020-01-29 00:47:39.871346 28273 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Bou13p827rFi5EF99dkz\n- VPH3x_cnkJt84mhAbKap\n 2711 \N 187.149.51.184 22c0ec4b-e9c2-48b4-bfca-68da96843eaf 2020-01-29 00:47:39.890079 28274 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-01-28 19:45:12.523477000 Z\n- &1 2020-01-28 20:21:31.312787000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-29 00:47:55.633703671 Z\nsign_in_count:\n- 89\n- 90\n 183 \N 187.149.51.184 94fac89a-3372-4d42-a29a-f9b85ece119b 2020-01-29 00:47:55.640275 28275 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 2EevACB4jUsaTNL5-WJH\n- as4c1ySP78R48ZY8hzzz\n 184 \N 187.149.51.184 94fac89a-3372-4d42-a29a-f9b85ece119b 2020-01-29 00:47:55.656194 28276 444 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-28\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.51.184 cd0de98c-c971-46da-a499-cab2b4701a44 2020-01-29 00:48:40.885833 28277 720 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.51.184 cd0de98c-c971-46da-a499-cab2b4701a44 2020-01-29 00:48:40.904977 28278 674 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.51.184 cd0de98c-c971-46da-a499-cab2b4701a44 2020-01-29 00:48:40.925861 28279 477 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.51.184 cd0de98c-c971-46da-a499-cab2b4701a44 2020-01-29 00:48:40.945577 28280 1090 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 16 \N 187.149.51.184 d0be5cea-5fbe-46fb-abe3-2c86994b3762 2020-01-29 00:49:21.429751 28281 1090 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 17 \N 187.149.51.184 86f1660a-7cf1-42bf-82e7-935ce2e95d94 2020-01-29 00:49:41.663244 28282 446 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-01-28\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.51.184 724520d3-7983-49e6-8d83-64df588228be 2020-01-29 00:49:43.244543 28283 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-28 23:56:18.797955000 Z\n- &1 2020-01-29 00:47:39.863160000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-29 00:50:04.349086142 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104690\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\nsign_in_count:\n- 1355\n- 1356\n 2712 \N 187.149.51.184 2b9be2a2-ed5b-493a-b482-19c0e638fbdd 2020-01-29 00:50:04.356326 28284 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VPH3x_cnkJt84mhAbKap\n- yZUq5ZpsUYwfHsPJKQx5\n 2713 \N 187.149.51.184 2b9be2a2-ed5b-493a-b482-19c0e638fbdd 2020-01-29 00:50:04.374691 28424 2123 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 dd26d179-b331-4b22-9011-3e91c2d6dc6d 2020-01-29 18:24:12.465941 28286 162 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.51.184 66f15f85-734b-463a-9c00-8569ca404e67 2020-01-29 00:53:18.687916 28287 174 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.51.184 66f15f85-734b-463a-9c00-8569ca404e67 2020-01-29 00:53:18.70761 28288 446 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-28\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.51.184 72a36d91-d55e-4cc9-b20d-50e9507443fb 2020-01-29 00:53:33.476664 28289 1468 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.51.184 72a36d91-d55e-4cc9-b20d-50e9507443fb 2020-01-29 00:53:33.498246 28290 439 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-28\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.51.184 8228a45c-aa0c-4e74-9898-213086a23f1f 2020-01-29 00:53:45.960035 28291 174 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.51.184 8228a45c-aa0c-4e74-9898-213086a23f1f 2020-01-29 00:53:45.978335 28292 438 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-28\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.51.184 772e41b2-fc62-4901-9259-3a9af5cc0dc7 2020-01-29 00:54:00.710775 28293 207 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.51.184 772e41b2-fc62-4901-9259-3a9af5cc0dc7 2020-01-29 00:54:00.734164 28294 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-26 20:00:45.894016000 Z\n- &1 2020-01-28 00:49:56.831251000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-29 00:56:48.174511440 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\nsign_in_count:\n- 103\n- 104\n 209 \N 189.186.157.125 c1993c2e-df4c-4698-bd4a-d2836212e9bd 2020-01-29 00:56:48.190373 28295 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 3FwxYMs7JsDb3PjoaXxC\n- Xgq5UprKUG6A9zQvJHv6\n 210 \N 189.186.157.125 c1993c2e-df4c-4698-bd4a-d2836212e9bd 2020-01-29 00:56:48.215945 28296 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-29 00:47:39.863160000 Z\n- &1 2020-01-29 00:50:04.349086000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-29 01:13:31.092564897 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\nsign_in_count:\n- 1356\n- 1357\n 2714 \N 189.186.157.125 fe7f98f7-0e27-40d3-88ea-898277ff424f 2020-01-29 01:13:31.099913 28297 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yZUq5ZpsUYwfHsPJKQx5\n- 64_KDqsFLDW9-MNtB_VR\n 2715 \N 189.186.157.125 fe7f98f7-0e27-40d3-88ea-898277ff424f 2020-01-29 01:13:31.117354 28298 447 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-01-28\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.157.125 e086b88a-2c71-43dc-a4f1-d7e86cf6558e 2020-01-29 01:15:21.199042 28299 448 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-01-28\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.157.125 0e8a4566-f8e7-481e-a68d-d619f1c438ee 2020-01-29 01:28:10.86355 28300 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-28 00:49:56.831251000 Z\n- &1 2020-01-29 00:56:48.174511000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-29 01:28:42.350205227 Z\nsign_in_count:\n- 104\n- 105\n 211 \N 189.186.157.125 71eb8060-5dca-4c24-b4b7-addc30feb32e 2020-01-29 01:28:42.356749 28301 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Xgq5UprKUG6A9zQvJHv6\n- nWv-kXPabdMj2twmwz2_\n 212 \N 189.186.157.125 71eb8060-5dca-4c24-b4b7-addc30feb32e 2020-01-29 01:28:42.375198 28302 2888 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 673\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 1709\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.157.125 436b4ba8-2ec8-473d-808e-be1c496e987c 2020-01-29 01:29:08.585821 28303 2888 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 673\n- 781\n 2 movimiento de efectivo por venta con folio PV3-V-171 189.186.157.125 436b4ba8-2ec8-473d-808e-be1c496e987c 2020-01-29 01:29:08.6241 28304 2889 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 717\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 1966\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.157.125 4b73ad89-134d-4d44-a4c6-535c071537ff 2020-01-29 01:29:36.442458 28305 2889 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 717\n- 781\n 2 movimiento de efectivo por venta con folio PV3-V-225 189.186.157.125 4b73ad89-134d-4d44-a4c6-535c071537ff 2020-01-29 01:29:36.470093 28306 448 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-28\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.157.125 6fc4cf64-50d9-4710-9f44-15b29d47e2fa 2020-01-29 01:30:02.781872 28307 1577 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 408\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.157.125 6fc4cf64-50d9-4710-9f44-15b29d47e2fa 2020-01-29 01:30:02.806436 28308 1578 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 15\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.157.125 6fc4cf64-50d9-4710-9f44-15b29d47e2fa 2020-01-29 01:30:02.830972 28309 1579 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 14\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.157.125 6fc4cf64-50d9-4710-9f44-15b29d47e2fa 2020-01-29 01:30:02.859036 28310 1580 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 7\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.7E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.157.125 6fc4cf64-50d9-4710-9f44-15b29d47e2fa 2020-01-29 01:30:02.888211 28311 447 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-28\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.157.125 b375b598-1b5d-474b-a677-9c32c719dbd9 2020-01-29 01:30:11.396163 28312 1581 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 550\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.157.125 b375b598-1b5d-474b-a677-9c32c719dbd9 2020-01-29 01:30:11.417916 28313 445 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-28\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.157.125 e202333a-5928-4c1a-998a-36b2b5236034 2020-01-29 01:30:19.498064 28314 1582 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 564\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.157.125 e202333a-5928-4c1a-998a-36b2b5236034 2020-01-29 01:30:19.522258 28315 1583 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 627\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.157.125 e202333a-5928-4c1a-998a-36b2b5236034 2020-01-29 01:30:19.548178 28316 1584 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 579\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.157.125 e202333a-5928-4c1a-998a-36b2b5236034 2020-01-29 01:30:19.581116 28317 831 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.7E1\n 4 \N 189.186.157.125 e202333a-5928-4c1a-998a-36b2b5236034 2020-01-29 01:30:19.610215 28318 1585 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 637\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.157.125 e202333a-5928-4c1a-998a-36b2b5236034 2020-01-29 01:30:19.643607 28319 1586 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 498\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.157.125 e202333a-5928-4c1a-998a-36b2b5236034 2020-01-29 01:30:19.675816 28320 1587 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 604\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.157.125 e202333a-5928-4c1a-998a-36b2b5236034 2020-01-29 01:30:19.707169 28321 1588 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 578\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.157.125 e202333a-5928-4c1a-998a-36b2b5236034 2020-01-29 01:30:19.73979 28322 441 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-28\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.157.125 cb245c8a-faab-417d-956b-5fa4578023e3 2020-01-29 01:30:26.00222 28323 1589 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 527\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.157.125 cb245c8a-faab-417d-956b-5fa4578023e3 2020-01-29 01:30:26.025362 28324 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-01-28 20:21:31.312787000 Z\n- &1 2020-01-29 00:47:55.633703000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-29 02:03:07.150031475 Z\nsign_in_count:\n- 90\n- 91\n 185 \N 187.149.51.184 e637b7f2-3e3b-4152-a4fd-d11bf042f670 2020-01-29 02:03:07.158398 28325 8 User \N \N 8 User \N update ---\nunique_session_id:\n- as4c1ySP78R48ZY8hzzz\n- yoEjmf4NxXXLxb-rAUxD\n 186 \N 187.149.51.184 e637b7f2-3e3b-4152-a4fd-d11bf042f670 2020-01-29 02:03:07.178037 28326 797 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 782\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.6E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 27:0.9884000000000001E3\nphysical_cash: !ruby/object:BigDecimal 18:0.14884E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.51.184 aa969898-c10a-4967-a7f0-4c646145cea4 2020-01-29 02:09:30.35478 28327 782 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 aa969898-c10a-4967-a7f0-4c646145cea4 2020-01-29 02:09:30.370427 28328 1268 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 3 \N 189.186.157.125 01711ef5-5a7d-488e-b644-0a4fe716e255 2020-01-29 02:12:20.068379 28329 1268 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.157.125 05856301-cce3-42c2-a070-5eb16f13639a 2020-01-29 02:12:23.986529 28330 1389 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 189.186.157.125 ddc63185-61a3-449e-8cad-94b102e5dcfe 2020-01-29 02:12:32.482697 28331 1389 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 189.186.157.125 f3dc51d1-f8cb-4d1d-8f56-7c91b1bada48 2020-01-29 02:12:35.470756 28332 1267 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.157.125 dc2e67c2-ebc7-4af4-96ee-88ce22b6917a 2020-01-29 02:12:44.026299 28333 1267 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.157.125 72d41a75-607c-4a81-8aec-48d1310a0ded 2020-01-29 02:12:48.869504 28334 798 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 780\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.8E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.634E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1634E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.51.184 8292c7a8-021d-40a0-a410-cadf856fd2d4 2020-01-29 02:13:14.314195 28335 780 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 8292c7a8-021d-40a0-a410-cadf856fd2d4 2020-01-29 02:13:14.328381 28336 1232 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.157.125 54fa37b8-5dfa-473c-8c1a-9d27f4dbb8cf 2020-01-29 02:13:50.05984 28337 1232 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.157.125 194614f9-6544-4f58-adac-0faae11e1ed3 2020-01-29 02:13:52.84825 28338 1229 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.157.125 36da72a9-77e4-4a69-abb7-1960bc47c36f 2020-01-29 02:14:18.684879 28339 1231 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.157.125 719411dd-2876-4100-8b52-c57e26e2fc68 2020-01-29 02:14:30.049091 28340 1231 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.157.125 6241659d-cef3-4ff7-ac48-bf2917c9601a 2020-01-29 02:14:35.880729 28341 1107 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.157.125 8b0e8305-f23a-47a0-8537-e47131d3f523 2020-01-29 02:14:45.35481 28342 1107 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.157.125 24499daa-86aa-4307-9c37-692c21b65ba7 2020-01-29 02:14:50.365536 28343 1111 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.157.125 75ab6db1-b35c-47f2-9847-8f1c8faeabb0 2020-01-29 02:15:10.509647 28344 1111 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.157.125 b6ae9e4e-4eb4-4492-a82d-b200ccb72094 2020-01-29 02:15:13.741426 28345 1110 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.157.125 15f04ef8-efdf-4acc-9171-8629dd324197 2020-01-29 02:15:29.048934 28346 1110 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.157.125 fe685d7a-9383-4421-b0a2-b862bf9afa75 2020-01-29 02:15:33.02981 28347 1108 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.157.125 788a13f3-ce7f-46a9-ae86-0abc5c8e9d09 2020-01-29 02:15:43.881213 28348 1108 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.157.125 b2392ed1-f80e-49a9-af8f-4dfd12ba01b2 2020-01-29 02:15:49.4074 28349 1106 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.157.125 18c4eaba-fa2f-418f-83a7-82599db4714a 2020-01-29 02:16:02.399924 28350 1106 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.157.125 0a70ec50-ba54-4e27-b49d-f3f9caa97bab 2020-01-29 02:16:08.494735 28351 1116 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.157.125 7763d948-a4f6-4eed-afc2-93d6f9a343a3 2020-01-29 02:16:18.97191 28352 1116 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.157.125 e4e5553f-c338-4354-b795-2f3f9e7ddee0 2020-01-29 02:16:23.439536 28353 1117 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.157.125 62e82949-428d-48d9-b313-ef765799fa4a 2020-01-29 02:16:33.553825 28354 1117 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.157.125 0bdaefec-d86c-4615-a566-e61ac33d6954 2020-01-29 02:16:40.764854 28355 1115 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.157.125 240aa3c6-209b-4dbc-81b2-ff4b1d373eaa 2020-01-29 02:18:57.81277 28356 1115 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.157.125 029d71f0-e3a1-4cd0-85e7-391099c6e7cc 2020-01-29 02:19:03.016747 28357 1120 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.157.125 ec148a19-cd3c-4385-95af-43e399a17189 2020-01-29 02:19:15.073345 28358 1120 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.157.125 750cd1e6-ccb7-4b2f-8dbc-d4a34cacba68 2020-01-29 02:19:19.654945 28359 1479 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.157.125 a64a623b-7b1e-457a-85c2-47fb978895f4 2020-01-29 02:19:32.345503 28360 1479 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.157.125 f253eb2c-5fc3-409f-96d1-35f5b5e97a9f 2020-01-29 02:19:37.024186 28361 1387 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.157.125 6ca83b7f-6a6d-4f7c-afab-c71713d3a06e 2020-01-29 02:19:56.001751 28362 1387 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.157.125 8d080745-12bd-4db7-8001-8d710bce2f0d 2020-01-29 02:20:00.203801 28363 1122 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.157.125 1acf9eb5-27df-4a83-8a59-6b94fca9ad24 2020-01-29 02:20:11.20384 28364 1122 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.157.125 676d722e-913b-496c-a15d-0bc33ecec1ec 2020-01-29 02:20:17.255819 28365 449 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-01-28\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO Comercial a Almacen central creado. 189.186.157.125 3b176181-52ad-4b80-8673-1d4681bffb6d 2020-01-29 02:20:54.709161 28366 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-29 00:50:04.349086000 Z\n- &1 2020-01-29 01:13:31.092564000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-29 02:22:36.281557131 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\nsign_in_count:\n- 1357\n- 1358\n 2716 \N 189.186.157.125 f5f2aaa9-25fc-44a0-be8a-2c229974a646 2020-01-29 02:22:36.288478 28367 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 64_KDqsFLDW9-MNtB_VR\n- X9X4x5BVPPE9Y3cUVz3v\n 2717 \N 189.186.157.125 f5f2aaa9-25fc-44a0-be8a-2c229974a646 2020-01-29 02:22:36.305362 28368 898 Product \N \N 4 User \N update --- {}\n 4 El producto CHA-898 fue modificado. 189.186.157.125 960b25ca-4f11-4992-b559-f4fe1a544c1c 2020-01-29 02:27:49.858289 28369 223 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-43\namount: !ruby/object:BigDecimal 18:0.228E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.228E4\nobservations: ''\npurchase_date: 2020-01-28\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-43 por $ 2280.0 MXN creada. 189.186.157.125 560383b1-0fb6-44b3-a2fa-6f915d9f2f17 2020-01-29 02:33:55.698756 28370 224 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-43\namount: !ruby/object:BigDecimal 18:0.228E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.228E4\nobservations: ''\npurchase_date: 2020-01-28\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-43 por $ 2280.0 MXN creada. 189.186.157.125 8cb8ec00-8cba-461c-b9be-a2d588266881 2020-01-29 02:33:56.179009 28371 1233 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.157.125 f5433556-17d2-47bc-94fb-cf8773e45706 2020-01-29 02:34:42.523807 28372 1233 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.157.125 8bfc6c84-727a-43ea-8a4e-d42ad0038bb4 2020-01-29 02:34:45.252758 28373 450 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-01-28\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO Comercial a Almacen central creado. 189.186.157.125 b69f8f7f-54cd-4133-b03e-b194516f864b 2020-01-29 02:34:45.632907 28374 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-29 00:56:48.174511000 Z\n- &1 2020-01-29 01:28:42.350205000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-29 02:39:24.330492022 Z\nsign_in_count:\n- 105\n- 106\n 213 \N 189.186.157.125 b6d1b06e-b4c4-4b1b-926a-02d75c4b6d77 2020-01-29 02:39:24.339059 28375 21 User \N \N 21 User \N update ---\nunique_session_id:\n- nWv-kXPabdMj2twmwz2_\n- cF_4kiKXLQ7ox5FYY8rx\n 214 \N 189.186.157.125 b6d1b06e-b4c4-4b1b-926a-02d75c4b6d77 2020-01-29 02:39:24.359739 28376 799 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 781\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.4E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1286E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1286E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.157.125 dc970fa3-24d1-469a-9fc0-50a2d4f3ef98 2020-01-29 02:58:34.062913 28377 781 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.157.125 dc970fa3-24d1-469a-9fc0-50a2d4f3ef98 2020-01-29 02:58:34.07736 28378 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-28 18:46:02.960232000 Z\n- &1 2020-01-28 19:21:04.421220000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-29 16:43:27.070778813 Z\nsign_in_count:\n- 458\n- 459\n 921 \N 187.149.51.184 c43e019d-9714-4a48-82cf-d2953abc9f63 2020-01-29 16:43:27.105944 28379 2 User \N \N 2 User \N update ---\nunique_session_id:\n- WeXZT1JvVK1Wg9U8scWg\n- jzFB1ENKvKDE2KRi1Jps\n 922 \N 187.149.51.184 c43e019d-9714-4a48-82cf-d2953abc9f63 2020-01-29 16:43:27.130672 28380 783 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.634E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 634.0 187.149.51.184 be057f37-17ba-4a92-90b6-cc6ad407f791 2020-01-29 16:43:45.36501 28381 2120 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 783\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.769E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-01-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1040\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 2f3873f7-6dcf-4b3d-8afa-50707b23ab54 2020-01-29 16:44:12.072061 28382 1070 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.51.184 2f3873f7-6dcf-4b3d-8afa-50707b23ab54 2020-01-29 16:44:12.116185 28383 2120 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 acebca74-94ef-428a-a543-6fbc2ed8cc91 2020-01-29 16:44:17.355648 28384 2890 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 783\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2120\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1040\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1040 187.149.51.184 acebca74-94ef-428a-a543-6fbc2ed8cc91 2020-01-29 16:44:17.379558 28385 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-27 16:58:37.836510000 Z\n- &1 2020-01-27 23:33:21.731553000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-29 17:12:30.343996189 Z\nsign_in_count:\n- 87\n- 88\n 176 \N 187.149.51.184 29bbcca6-483f-4ec6-9b16-96693269e393 2020-01-29 17:12:30.365408 28386 27 User \N \N 27 User \N update ---\nunique_session_id:\n- 28iomsMDyqaEL6AZ79qR\n- xGtrERyujFrq5JVUWvz1\n 177 \N 187.149.51.184 29bbcca6-483f-4ec6-9b16-96693269e393 2020-01-29 17:12:30.3839 28387 281 Customer \N \N 2 User \N create ---\nnick_name: LIZETH LIZARRAGA\nphone: "(667) 206-0410"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LIZETH LIZARRAGA fue registrado. 187.149.51.184 3ba71ca8-8c40-40e1-9117-2ff3f273d55d 2020-01-29 17:12:46.553578 28388 2121 Sale \N \N 2 User \N create ---\ncustomer_id: 281\nuser_id: 2\nopen_cash_register_id: 783\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-01-29\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1041\nexpiration_date: 2020-03-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 1bb95117-910a-4cf5-80c5-da976d958821 2020-01-29 17:13:10.53287 28389 1028 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.51.184 1bb95117-910a-4cf5-80c5-da976d958821 2020-01-29 17:13:10.569197 28390 2891 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 783\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2121\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1041\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1041 187.149.51.184 908f0dcd-a2e4-4b44-a9b0-9a2b36a9cbbc 2020-01-29 17:13:18.28713 28391 2121 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.51.184 8c2d7110-1b85-4a6d-abef-8f8ad5c5a896 2020-01-29 17:13:20.228365 28392 784 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.9884E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 988.4 187.149.51.184 77be709c-a27d-40ed-b5b3-86c68a174379 2020-01-29 17:14:24.996065 28451 450 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-29\n 2 Se dio entrada a traspaso de SUO Comercial a Almacen central 189.186.157.125 905b4ba9-d54e-4ae8-8d88-e69b969995aa 2020-01-29 19:47:19.886065 28393 2122 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 783\namount: !ruby/object:BigDecimal 18:0.1148E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.549E3\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-01-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1042\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 b9caa4dc-55e9-49fa-a55b-246c6592f351 2020-01-29 17:25:26.937891 28394 1241 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 10 \N 187.149.51.184 b9caa4dc-55e9-49fa-a55b-246c6592f351 2020-01-29 17:25:26.966906 28395 1443 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.51.184 b9caa4dc-55e9-49fa-a55b-246c6592f351 2020-01-29 17:25:26.99362 28396 2122 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 938ca9d3-4443-495d-aa78-b91214cabddc 2020-01-29 17:25:32.09781 28397 2892 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 783\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 2122\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1042\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1042 187.149.51.184 938ca9d3-4443-495d-aa78-b91214cabddc 2020-01-29 17:25:32.124141 28398 785 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1286E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1286.0 189.186.157.125 c7662fdf-ff00-4bfd-8845-a802c922e7d8 2020-01-29 17:45:46.942431 28399 1397 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.157.125 8589c2d1-2ce4-4772-bd16-729512b4f4c3 2020-01-29 18:18:22.234026 28400 1397 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.157.125 d4d87837-f46e-4655-b6eb-4fcea4713216 2020-01-29 18:18:25.190882 28401 1129 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.157.125 a37fca31-1db5-4268-92a0-e0e6793e2028 2020-01-29 18:18:32.601386 28402 1129 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.157.125 e88bbc64-7800-4341-a83a-96ad27a68917 2020-01-29 18:18:36.062164 28403 1128 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.157.125 53c5d07f-fde4-416a-a7b0-968817f16a6c 2020-01-29 18:19:11.142106 28404 1135 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.157.125 46c73a6d-81cc-4ca8-a671-6805342ec74e 2020-01-29 18:19:27.042139 28405 1132 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.157.125 12041891-adac-4117-9a3a-2a029c070841 2020-01-29 18:19:39.870449 28406 1137 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.157.125 68817aa8-e926-4788-82ef-b329cdd932d6 2020-01-29 18:19:53.35416 28407 1136 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.157.125 7060a845-0861-4a7d-9581-91385822c7f7 2020-01-29 18:20:02.76941 28408 1136 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.157.125 6c1a0a93-9ffe-4687-aa6a-706a8ad3419b 2020-01-29 18:20:06.491131 28409 1243 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.157.125 57b05451-ddad-469b-b77c-93f5732e0bc8 2020-01-29 18:20:18.542123 28410 1230 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.157.125 8989f394-5039-4478-a428-f4779d460063 2020-01-29 18:20:27.748334 28411 1234 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.157.125 4c231e1b-004d-42d9-99be-d7449f304cdf 2020-01-29 18:20:36.808372 28412 1235 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.157.125 8e1f9a7e-1670-4eee-bd64-98bc13e0ac88 2020-01-29 18:20:56.62641 28413 1121 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.157.125 0577b80c-9ba5-422c-a204-b540f4e41eeb 2020-01-29 18:21:11.09344 28414 1121 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.157.125 8761d975-a7fe-4cb0-b79e-0dd471922358 2020-01-29 18:21:18.499104 28415 1119 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.157.125 b0093116-8537-4fca-a7cb-0d4d46dfa199 2020-01-29 18:21:32.090134 28416 1119 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.157.125 e4c4feec-1b60-4156-8925-92332461b336 2020-01-29 18:21:35.525708 28417 1237 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.157.125 42608008-c8bc-4484-8d27-f3519699ef5d 2020-01-29 18:21:47.476689 28418 768 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.157.125 d3b29237-0d84-430a-9ea8-6c38cafb96d7 2020-01-29 18:21:54.784727 28419 769 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.157.125 dfd6d9e3-52ef-4d63-91c0-e1df62d2134f 2020-01-29 18:22:24.464107 28420 772 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.157.125 b5efb4dc-2545-405a-97db-cf2ebde85cc3 2020-01-29 18:22:53.602988 28421 2123 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 783\namount: !ruby/object:BigDecimal 18:0.87141E3\ntax: !ruby/object:BigDecimal 18:0.2759E2\ndiscount: !ruby/object:BigDecimal 18:0.699E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-01-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1043\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 6be17225-ea6d-4a9c-a61c-f9f36b01d373 2020-01-29 18:23:44.547416 28422 163 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.51.184 6be17225-ea6d-4a9c-a61c-f9f36b01d373 2020-01-29 18:23:44.578346 28423 1474 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.157.125 8a997b22-198b-49b3-9189-9f787a8c044e 2020-01-29 18:23:58.828693 28425 2893 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 783\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2123\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1043\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1043 187.149.51.184 dd26d179-b331-4b22-9011-3e91c2d6dc6d 2020-01-29 18:24:12.490769 28426 1395 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.157.125 ec4d6e42-a067-4679-858f-e62fb837efd4 2020-01-29 18:24:37.463943 28427 1269 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.157.125 53c7c5cf-4109-4aa7-a134-3f2f4cd5fc1d 2020-01-29 18:24:45.584926 28428 771 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.157.125 8b42d609-cda0-4c41-b124-3d2981519af9 2020-01-29 18:24:53.589101 28429 1114 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.157.125 6b241cdd-8e6b-45cb-88f5-b3b8ccb626bf 2020-01-29 18:25:02.35964 28430 1113 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.157.125 2026a9a6-5929-4ebe-a108-6313984dc2b4 2020-01-29 18:25:09.57236 28431 451 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-01-29\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.157.125 bacb72f1-4b8c-4c17-aff5-e759d00784a3 2020-01-29 18:25:31.133095 28432 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-29 01:13:31.092564000 Z\n- &1 2020-01-29 02:22:36.281557000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-29 18:39:09.596931097 Z\nsign_in_count:\n- 1358\n- 1359\n 2718 \N 189.186.157.125 2626eefc-1e94-43f2-acee-01163f90ecd7 2020-01-29 18:39:09.602902 28433 4 User \N \N 4 User \N update ---\nunique_session_id:\n- X9X4x5BVPPE9Y3cUVz3v\n- mUWau1ADKxxSTUtxvjfd\n 2719 \N 189.186.157.125 2626eefc-1e94-43f2-acee-01163f90ecd7 2020-01-29 18:39:09.619186 28434 972 Product \N \N 4 User \N create ---\nsku: VES-972\nname: VE-0044\ndescription: VESTIDO NEGRO Y DORADO DE LENTEJUELA\nprice_base: !ruby/object:BigDecimal 18:0.6495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-972 fue creado. 189.186.157.125 dfb5ed03-37f7-4180-a735-0ac2b03178a1 2020-01-29 18:40:31.87734 28435 972 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000972'\n 2 \N 189.186.157.125 dfb5ed03-37f7-4180-a735-0ac2b03178a1 2020-01-29 18:40:31.931856 28436 1590 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 972\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.157.125 dfb5ed03-37f7-4180-a735-0ac2b03178a1 2020-01-29 18:40:31.97528 28437 225 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-94\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nobservations: ''\npurchase_date: 2020-01-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-94 por $ 1299.0 MXN creada. 189.186.157.125 9ec85809-bebf-46ec-b3f8-f1e3af549f9e 2020-01-29 18:45:28.168122 28438 1590 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.157.125 9ec85809-bebf-46ec-b3f8-f1e3af549f9e 2020-01-29 18:45:28.195965 28439 1112 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.157.125 0a47f60c-727c-4bb4-8a97-4551ad407d50 2020-01-29 18:46:22.638733 28440 1112 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.157.125 8fb76ab3-5f0a-4217-b466-b71c17363074 2020-01-29 18:46:25.338433 28441 452 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-01-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.157.125 caea52b5-30b2-4859-8d15-8399f35c60c4 2020-01-29 18:46:25.873206 28442 94 Product \N \N 4 User \N update ---\nsku:\n- BLU-PRM-640\n- BLU-973\ncategory_id:\n- 20\n- 7\n 4 El producto BLU-PRM-640 fue modificado. 189.186.157.125 c9e784c8-0020-49a0-8cc6-26786065cc09 2020-01-29 18:48:57.365779 28443 111 Product \N \N 4 User \N update ---\nsku:\n- BLU-PRM-640\n- BLU-973\ncategory_id:\n- 20\n- 7\n 4 El producto BLU-PRM-640 fue modificado. 189.186.157.125 f9ddda98-1725-405f-83d2-0e2fbffaaf06 2020-01-29 18:49:14.172594 28444 102 Product \N \N 4 User \N update ---\nsku:\n- BLU-PRM-640\n- BLU-973\ncategory_id:\n- 20\n- 7\n 4 El producto BLU-PRM-640 fue modificado. 189.186.157.125 3b038a77-59c8-4c81-b1b0-15caf2f78345 2020-01-29 18:49:32.700061 28445 252 Product \N \N 4 User \N update ---\nsku:\n- VES-252\n- PAL-973\ncategory_id:\n- 12\n- 9\n 3 El producto VES-252 fue modificado. 189.186.157.125 ef3a27f3-8818-44f2-a5a9-97776b91f0dc 2020-01-29 18:51:22.344522 28446 526 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 19 \N 189.186.157.125 c417f9e9-1ad1-4a35-a55e-e693157e7861 2020-01-29 19:46:31.068234 28447 526 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 20 \N 189.186.157.125 df904a55-eeeb-4a4b-8486-209ee4c5dba3 2020-01-29 19:46:34.870642 28448 453 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-01-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.157.125 5c5c935a-6ae3-4a55-87d4-2048a5d1f905 2020-01-29 19:46:35.401885 28449 22 User \N \N 22 User \N update ---\nlast_sign_in_at:\n- 2020-01-07 18:13:14.624771000 Z\n- &1 2020-01-28 20:00:57.949273000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-29 19:47:08.177544076 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\nsign_in_count:\n- 5\n- 6\n 12 \N 189.186.157.125 f31102f0-963d-468b-bb6e-7021daf47c81 2020-01-29 19:47:08.186159 28450 22 User \N \N 22 User \N update ---\nunique_session_id:\n- Jmk72Ju1U1WsvPtmfwti\n- z7RTUymtSCf6LFAYhMq5\n 13 \N 189.186.157.125 f31102f0-963d-468b-bb6e-7021daf47c81 2020-01-29 19:47:08.210459 28477 1442 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.51.184 379d0d26-6000-41be-a004-d22cb96dceb5 2020-01-29 22:02:27.765935 28452 449 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-29\n 2 Se dio entrada a traspaso de SUO Comercial a Almacen central 189.186.157.125 ac080503-5a69-41e3-a4aa-a21e24adf920 2020-01-29 19:47:28.75102 28453 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-29 01:28:42.350205000 Z\n- &1 2020-01-29 02:39:24.330492000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-29 19:55:09.230382480 Z\nsign_in_count:\n- 106\n- 107\n 215 \N 189.186.157.125 aa9e3e3c-e774-4449-8a7f-9e0c760b336c 2020-01-29 19:55:09.236564 28454 21 User \N \N 21 User \N update ---\nunique_session_id:\n- cF_4kiKXLQ7ox5FYY8rx\n- iRbJ2gXG19UGRxaBza7N\n 216 \N 189.186.157.125 aa9e3e3c-e774-4449-8a7f-9e0c760b336c 2020-01-29 19:55:09.251186 28455 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-29 02:22:36.281557000 Z\n- &1 2020-01-29 18:39:09.596931000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-29 19:58:49.231391670 Z\nsign_in_count:\n- 1359\n- 1360\n 2720 \N 189.186.157.125 a6ecd7a9-6d22-4467-9e94-e3f945781d4f 2020-01-29 19:58:49.238056 28456 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mUWau1ADKxxSTUtxvjfd\n- vsv61GsPmhx7u7sx2zWG\n 2721 \N 189.186.157.125 a6ecd7a9-6d22-4467-9e94-e3f945781d4f 2020-01-29 19:58:49.255886 28457 1113 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.157.125 782820b8-4255-4533-8f88-fd13a2fe9b46 2020-01-29 20:15:12.263993 28458 454 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-01-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.157.125 855f18df-d9c4-4714-baf7-2686412bfff6 2020-01-29 20:15:14.214587 28459 2124 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 783\namount: !ruby/object:BigDecimal 18:0.64521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.559E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-01-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1044\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 c599a0b6-c263-4acd-9758-2706c79e7dc9 2020-01-29 20:39:29.5743 28460 1567 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.51.184 c599a0b6-c263-4acd-9758-2706c79e7dc9 2020-01-29 20:39:29.606594 28461 2124 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 5d183918-971c-417d-a62d-50053e7ac1b2 2020-01-29 20:39:36.058412 28462 2894 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 783\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2124\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1044\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1044 187.149.51.184 5d183918-971c-417d-a62d-50053e7ac1b2 2020-01-29 20:39:36.081891 28463 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-29 18:39:09.596931000 Z\n- &1 2020-01-29 19:58:49.231391000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-29 20:48:42.668565306 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104690\n mask_addr: 4294967295\nsign_in_count:\n- 1360\n- 1361\n 2722 \N 187.149.1.178 11000e44-115c-46ff-8b01-cfe5dc8885c2 2020-01-29 20:48:42.677692 28464 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vsv61GsPmhx7u7sx2zWG\n- Xd7sozArwDJT7JWG9BGh\n 2723 \N 187.149.1.178 11000e44-115c-46ff-8b01-cfe5dc8885c2 2020-01-29 20:48:42.696873 28465 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-29 19:58:49.231391000 Z\n- &1 2020-01-29 20:48:42.668565000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-29 21:07:40.915785826 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104690\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104690\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\nsign_in_count:\n- 1361\n- 1362\n 2724 \N 189.186.157.125 af8bb2bc-9e41-4397-bc9a-5b3e2b7e4b55 2020-01-29 21:07:40.925103 28466 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Xd7sozArwDJT7JWG9BGh\n- P7RhG-2eu9cxW31s8we6\n 2725 \N 189.186.157.125 af8bb2bc-9e41-4397-bc9a-5b3e2b7e4b55 2020-01-29 21:07:40.944205 28467 771 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '771'\n is_parent: false\n sku: BLU-771\n name: B-0005\n description: "CHALECO NYLON BLANCO ANGORA\\r\\n"\n price_base: '349.5'\n price_sale: '699.0'\n img_product: IMG_0442.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000771'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-11 19:09:42.165302'\n updated_at: &12 2020-01-29 21:08:35.293583817 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '771'\n sku: BLU-771\n name: B-0005\n description: "CHALECO NYLON BLANCO ANGORA\\r\\n"\n price_base: '349.50'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-11 19:09:42.165302'\n updated_at: '2019-10-11 19:09:42.199823'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000771'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '771'\n type: *3\n value: 771\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-771\n type: *7\n value: BLU-771\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: B-0005\n type: *8\n value: B-0005\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "CHALECO NYLON BLANCO ANGORA\\r\\n"\n type: *6\n value: "CHALECO NYLON BLANCO ANGORA\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '349.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_0442.JPG\n type: *2\n value: IMG_0442.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000771'\n type: *2\n value: '0000771'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-11 19:09:42.165302'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_0442.JPG\n 3 El producto BLU-771 fue modificado. 189.186.157.125 667b54cf-251f-4965-b6bc-275f31e9dc9f 2020-01-29 21:08:35.350459 28468 868 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '868'\n is_parent: false\n sku: PAL-868\n name: PLZ-0018\n description: "VALENTINE PALAZO NEGRO CON VERDE ST-Jp8394 \\r\\n"\n price_base: '570.0'\n price_sale: '1429.0'\n img_product: f606e515-7ca8-4970-9a36-926aa154fe11.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '9'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000868'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-29 01:25:10.568111'\n updated_at: &12 2020-01-29 21:09:14.509808898 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '868'\n sku: PAL-868\n name: PLZ-0018\n description: "VALENTINE PALAZO NEGRO CON VERDE ST-Jp8394 \\r\\n"\n price_base: '570.00'\n price_sale: '1429.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-29 01:25:10.568111'\n updated_at: '2019-10-29 01:25:10.601348'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000868'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '9'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '868'\n type: *3\n value: 868\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAL-868\n type: *7\n value: PAL-868\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PLZ-0018\n type: *8\n value: PLZ-0018\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "VALENTINE PALAZO NEGRO CON VERDE ST-Jp8394 \\r\\n"\n type: *6\n value: "VALENTINE PALAZO NEGRO CON VERDE ST-Jp8394 \\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '570.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.57E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1429.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1429E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: f606e515-7ca8-4970-9a36-926aa154fe11.JPG\n type: *2\n value: f606e515-7ca8-4970-9a36-926aa154fe11.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '9'\n type: *3\n value: 9\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000868'\n type: *2\n value: '0000868'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-29 01:25:10.568111'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- f606e515-7ca8-4970-9a36-926aa154fe11.JPG\n 3 El producto PAL-868 fue modificado. 189.186.157.125 c13bcdb0-3100-4e76-8327-cbd6fefbaa9a 2020-01-29 21:09:14.556181 28469 604 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '604'\n is_parent: false\n sku: JUM-604\n name: JUM-0007\n description: JUMPER BLUE B FLOREADO ST. R6141\n price_base: '294.5'\n price_sale: '749.0'\n img_product: 4601577b-b768-4d53-a8b1-660903a1ed25.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '1'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000604'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-15 22:38:29.558205'\n updated_at: &12 2020-01-29 21:10:00.660895491 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '604'\n sku: JUM-604\n name: JUM-0007\n description: JUMPER BLUE B FLOREADO ST. R6141\n price_base: '294.50'\n price_sale: '749.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-15 22:38:29.558205'\n updated_at: '2019-07-15 22:38:29.593192'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000604'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '1'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '604'\n type: *3\n value: 604\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: JUM-604\n type: *7\n value: JUM-604\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: JUM-0007\n type: *8\n value: JUM-0007\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: JUMPER BLUE B FLOREADO ST. R6141\n type: *6\n value: JUMPER BLUE B FLOREADO ST. R6141\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '294.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2945E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '749.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.749E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 4601577b-b768-4d53-a8b1-660903a1ed25.JPG\n type: *2\n value: 4601577b-b768-4d53-a8b1-660903a1ed25.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '1'\n type: *3\n value: 1\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000604'\n type: *2\n value: '0000604'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-15 22:38:29.558205'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 4601577b-b768-4d53-a8b1-660903a1ed25.JPG\n 3 El producto JUM-604 fue modificado. 189.186.157.125 4f53c5d5-e9a3-4f22-b7fb-c68df56f2704 2020-01-29 21:10:00.707114 28470 283 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '283'\n is_parent: false\n sku: BLU-283\n name: B-0042\n description: BLUSA AZUL NYLON DE MEZCLILLA CORTA CON PIEDRAS\n price_base: '131.0'\n price_sale: '489.0'\n img_product: IMG_0273.JPG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000283'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2020-01-29 21:11:14.739593919 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '283'\n sku: BLU-283\n name: B-0042\n description: BLUSA AZUL NYLON DE MEZCLILLA CORTA CON PIEDRAS\n price_base: '131.00'\n price_sale: '489.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:13.249542'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000283'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '283'\n type: *3\n value: 283\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-283\n type: *7\n value: BLU-283\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: B-0042\n type: *8\n value: B-0042\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA AZUL NYLON DE MEZCLILLA CORTA CON PIEDRAS\n type: *6\n value: BLUSA AZUL NYLON DE MEZCLILLA CORTA CON PIEDRAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '131.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.131E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '489.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.489E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_0273.JPG\n type: *2\n value: IMG_0273.JPG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000283'\n type: *2\n value: '0000283'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_0273.JPG\n 3 El producto BLU-283 fue modificado. 189.186.157.125 7db76b06-2f55-4313-b133-31d4768a26ec 2020-01-29 21:11:14.799131 28471 219 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '219'\n is_parent: false\n sku: VES-219\n name: V-0022\n description: VOLADITO DE TIRANTES ROSA GLOW FASSHION\n price_base: '210.0'\n price_sale: '849.0'\n img_product: IMG_0190.PNG\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000219'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862797'\n updated_at: &12 2020-01-29 21:11:54.502851093 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '219'\n sku: VES-219\n name: V-0022\n description: VOLADITO DE TIRANTES ROSA GLOW FASSHION\n price_base: '210.00'\n price_sale: '849.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862797'\n updated_at: '2019-02-04 09:10:20.965079'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000219'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '219'\n type: *3\n value: 219\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-219\n type: *7\n value: VES-219\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: V-0022\n type: *8\n value: V-0022\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VOLADITO DE TIRANTES ROSA GLOW FASSHION\n type: *6\n value: VOLADITO DE TIRANTES ROSA GLOW FASSHION\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '210.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.21E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '849.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.849E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_0190.PNG\n type: *2\n value: IMG_0190.PNG\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000219'\n type: *2\n value: '0000219'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862797'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_0190.PNG\n 3 El producto VES-219 fue modificado. 189.186.157.125 55df052d-838d-44d0-97ce-aa8c8aa32d77 2020-01-29 21:11:54.547225 28472 2125 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 783\namount: !ruby/object:BigDecimal 18:0.1359E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.549E3\ntotal: !ruby/object:BigDecimal 18:0.81E3\nstatus: 0\ndate_sale: 2020-01-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1045\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 c2a512b4-a125-4762-a4a1-c6d15d2b34bb 2020-01-29 21:56:49.543154 28473 1487 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.51.184 c2a512b4-a125-4762-a4a1-c6d15d2b34bb 2020-01-29 21:56:49.579548 28474 2125 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 5f7e5fe9-a242-4e28-a678-06515c806ce6 2020-01-29 21:57:08.111383 28475 2895 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 783\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.81E3\nmove_type: '1'\nsale_id: 2125\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1045\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.81E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1045 187.149.51.184 5f7e5fe9-a242-4e28-a678-06515c806ce6 2020-01-29 21:57:08.135119 28476 2126 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 783\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.279E3\ntotal: !ruby/object:BigDecimal 18:0.42E3\nstatus: 0\ndate_sale: 2020-01-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1046\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 379d0d26-6000-41be-a004-d22cb96dceb5 2020-01-29 22:02:27.73174 28479 2896 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 783\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.42E3\nmove_type: '1'\nsale_id: 2126\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1046\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.42E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1046 187.149.51.184 bf55b248-68f3-4a00-b283-e3bc4eb6d016 2020-01-29 22:02:32.107105 28480 2127 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 783\namount: !ruby/object:BigDecimal 18:0.85521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.769E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-01-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1047\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 6d0e8fc7-8112-418d-8df7-4db02a829d4e 2020-01-29 22:05:37.441669 28481 228 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.51.184 6d0e8fc7-8112-418d-8df7-4db02a829d4e 2020-01-29 22:05:37.477011 28482 2127 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 17145d39-9d2a-46d6-ac92-551630db181d 2020-01-29 22:05:41.812887 28483 2897 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 783\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2127\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1047\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1047 187.149.51.184 17145d39-9d2a-46d6-ac92-551630db181d 2020-01-29 22:05:41.856163 28484 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-01-23 18:48:18.782340000 Z\n- &1 2020-01-24 20:42:27.845662000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-29 22:33:07.075897851 Z\nsign_in_count:\n- 157\n- 158\n 316 \N 187.149.51.184 a100f77c-1c05-4d45-acdf-a533b1288cd3 2020-01-29 22:33:07.08202 28485 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 682UqP54jPCn2L714viN\n- aijik3-gEf_mzEBWEfU6\n 317 \N 187.149.51.184 a100f77c-1c05-4d45-acdf-a533b1288cd3 2020-01-29 22:33:07.096454 28486 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-29 02:39:24.330492000 Z\n- &1 2020-01-29 19:55:09.230382000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-30 00:05:06.039515118 Z\nsign_in_count:\n- 107\n- 108\n 217 \N 189.186.157.125 37102ee2-f69c-4eaf-8661-b19910c68b3d 2020-01-30 00:05:06.046162 28487 21 User \N \N 21 User \N update ---\nunique_session_id:\n- iRbJ2gXG19UGRxaBza7N\n- 76HpPBgGeZWLsZzyj1Cp\n 218 \N 189.186.157.125 37102ee2-f69c-4eaf-8661-b19910c68b3d 2020-01-30 00:05:06.061195 28488 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-29 20:48:42.668565000 Z\n- &1 2020-01-29 21:07:40.915785000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-30 00:06:58.555242985 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104690\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\nsign_in_count:\n- 1362\n- 1363\n 2726 \N 189.186.157.125 7f40026b-5d3f-4cde-93c1-34ea0c2aed33 2020-01-30 00:06:58.562605 28489 4 User \N \N 4 User \N update ---\nunique_session_id:\n- P7RhG-2eu9cxW31s8we6\n- yV5rox4iRyfcpFuDACm4\n 2727 \N 189.186.157.125 7f40026b-5d3f-4cde-93c1-34ea0c2aed33 2020-01-30 00:06:58.579992 28490 2898 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 702\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 1914\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ANTER\n 1 \N 189.186.157.125 45a42378-acbf-4eec-a4c5-fb6911b7e093 2020-01-30 00:11:14.161374 28491 2898 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 702\n- 785\n 2 movimiento de efectivo por venta con folio PV3-V-214 189.186.157.125 45a42378-acbf-4eec-a4c5-fb6911b7e093 2020-01-30 00:11:14.196156 28492 2128 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 783\namount: !ruby/object:BigDecimal 18:0.58621E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.5E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-01-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1048\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 d98a4833-02b5-47fd-b487-a0202f15d529 2020-01-30 00:19:51.093009 28493 763 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.51.184 d98a4833-02b5-47fd-b487-a0202f15d529 2020-01-30 00:19:51.132148 28494 2128 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 12f0ede8-cf48-40db-9816-eaa809e2c029 2020-01-30 00:20:15.649126 28495 2899 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 783\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2128\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1048\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1048 187.149.51.184 12f0ede8-cf48-40db-9816-eaa809e2c029 2020-01-30 00:20:15.675382 28496 800 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 783\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3429E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.32E4\ncash_fund: !ruby/object:BigDecimal 18:0.863E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4063E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.51.184 c82f71f0-3ce5-4785-b030-5bfa7f5c5195 2020-01-30 01:55:35.700087 28497 783 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 c82f71f0-3ce5-4785-b030-5bfa7f5c5195 2020-01-30 01:55:35.717686 28498 801 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 784\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.988E3\nphysical_cash: !ruby/object:BigDecimal 18:0.988E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.51.184 c5a63c66-92a0-4c2b-a734-46620733f5b6 2020-01-30 02:01:37.054464 28499 784 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 c5a63c66-92a0-4c2b-a734-46620733f5b6 2020-01-30 02:01:37.06924 28500 2900 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 702\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '1'\nsale_id: 1914\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: P\n 1 \N 189.186.157.125 bda84811-6bbf-4531-8a56-fda9b1785cb3 2020-01-30 02:12:56.558995 28501 2900 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 702\n- 785\n 2 movimiento de efectivo por venta con folio PV3-V-214 189.186.157.125 bda84811-6bbf-4531-8a56-fda9b1785cb3 2020-01-30 02:12:56.587868 28502 2129 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 785\namount: !ruby/object:BigDecimal 18:0.419E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.419E3\nstatus: 0\ndate_sale: 2020-01-29\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-254\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.157.125 df71cdcc-2366-4d38-aed4-2f03994977d2 2020-01-30 03:05:03.06035 28503 827 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.157.125 df71cdcc-2366-4d38-aed4-2f03994977d2 2020-01-30 03:05:03.096753 28504 2129 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.157.125 47dc445f-9cf2-4cd4-9637-a271bd031b7d 2020-01-30 03:05:08.059445 28505 2901 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 785\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.419E3\nmove_type: '1'\nsale_id: 2129\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-254\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.81E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-254 189.186.157.125 47dc445f-9cf2-4cd4-9637-a271bd031b7d 2020-01-30 03:05:08.095718 28506 802 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 785\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.669E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.705E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1705E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.157.125 16f9a0e8-0a2a-4742-9164-5fcf40263da1 2020-01-30 03:31:57.910353 28507 785 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.157.125 16f9a0e8-0a2a-4742-9164-5fcf40263da1 2020-01-30 03:31:57.927703 28508 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-27 23:33:21.731553000 Z\n- &1 2020-01-29 17:12:30.343996000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-30 17:07:04.091652880 Z\nsign_in_count:\n- 88\n- 89\n 178 \N 187.149.51.184 3a689866-f3c1-47cd-9d97-0854a483024b 2020-01-30 17:07:04.124158 28509 27 User \N \N 27 User \N update ---\nunique_session_id:\n- xGtrERyujFrq5JVUWvz1\n- RU3tBF9mKnv7Ncc3GBVc\n 179 \N 187.149.51.184 3a689866-f3c1-47cd-9d97-0854a483024b 2020-01-30 17:07:04.147634 28510 786 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.988E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 988.0 187.149.51.184 15377200-37f0-43e3-b456-8fe9b755ccb8 2020-01-30 17:09:13.648884 28511 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-28 19:21:04.421220000 Z\n- &1 2020-01-29 16:43:27.070778000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-30 17:49:52.695711930 Z\nsign_in_count:\n- 459\n- 460\n 923 \N 187.149.51.184 28424eb8-a525-4579-b65c-897253325cb3 2020-01-30 17:49:52.724465 28512 2 User \N \N 2 User \N update ---\nunique_session_id:\n- jzFB1ENKvKDE2KRi1Jps\n- nLJyXfwNSd2yMijwSTPe\n 924 \N 187.149.51.184 28424eb8-a525-4579-b65c-897253325cb3 2020-01-30 17:49:52.7478 28513 787 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.863E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 863.0 187.149.51.184 d62ade51-3afd-40be-a14a-a6f5c8525d72 2020-01-30 17:50:05.697995 28514 2130 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 787\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.749E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-01-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1049\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 393f8f63-1912-46a1-90e2-98a3e528217a 2020-01-30 17:50:29.911877 28515 1068 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.51.184 393f8f63-1912-46a1-90e2-98a3e528217a 2020-01-30 17:50:29.952951 28516 2130 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 6122d4ec-303a-46d6-8e6f-e78fb83269b6 2020-01-30 17:50:34.370667 28517 2902 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 787\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2130\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1049\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1049 187.149.51.184 6122d4ec-303a-46d6-8e6f-e78fb83269b6 2020-01-30 17:50:34.402514 28518 2131 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 786\namount: !ruby/object:BigDecimal 18:0.73288E3\ntax: !ruby/object:BigDecimal 18:0.6612E2\ndiscount: !ruby/object:BigDecimal 18:0.3196E3\ntotal: !ruby/object:BigDecimal 18:0.4794E3\nstatus: 0\ndate_sale: 2020-01-30\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-826\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 ee40e2e1-8fa4-45b3-9ff8-39d0bf2d26b1 2020-01-30 18:42:44.407113 28519 543 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.51.184 ee40e2e1-8fa4-45b3-9ff8-39d0bf2d26b1 2020-01-30 18:42:44.43686 28520 2131 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 c4c5c059-5032-4923-8a5a-264e8d9d7292 2020-01-30 18:42:57.710733 28521 2903 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 786\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4794E3\nmove_type: '1'\nsale_id: 2131\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-826\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.206E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-826 187.149.51.184 c4c5c059-5032-4923-8a5a-264e8d9d7292 2020-01-30 18:42:57.735418 28522 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-29 21:07:40.915785000 Z\n- &1 2020-01-30 00:06:58.555242000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-30 19:48:04.068612922 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\nsign_in_count:\n- 1363\n- 1364\n 2728 \N 189.186.161.153 f3fb2676-737d-452a-b3d0-77195b450d14 2020-01-30 19:48:04.095915 28523 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yV5rox4iRyfcpFuDACm4\n- gyZx8rZrpVME7ox85VRf\n 2729 \N 189.186.161.153 f3fb2676-737d-452a-b3d0-77195b450d14 2020-01-30 19:48:04.124821 28566 1432 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.205806 28524 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-01-29 00:47:55.633703000 Z\n- &1 2020-01-29 02:03:07.150031000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-30 20:21:01.191868414 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\nsign_in_count:\n- 91\n- 92\n 187 \N 189.186.161.153 a9f2ab20-436b-4d52-9c55-6115fdd716c3 2020-01-30 20:21:01.199234 28525 8 User \N \N 8 User \N update ---\nunique_session_id:\n- yoEjmf4NxXXLxb-rAUxD\n- Uoc2t1EKE3fH4-HXJpaN\n 188 \N 189.186.161.153 a9f2ab20-436b-4d52-9c55-6115fdd716c3 2020-01-30 20:21:01.215573 28526 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-10-11 22:12:22.232010000 Z\n- &1 2019-12-10 20:53:30.240547000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-30 20:21:19.580643692 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116463\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\nsign_in_count:\n- 43\n- 44\n 89 \N 189.186.161.153 8d77205c-32fa-4ac1-830d-d4c442103b7e 2020-01-30 20:21:19.588278 28527 18 User \N \N 18 User \N update ---\nunique_session_id:\n- hYfy_V94CydAzWJLRVaj\n- 5fmYy4mrTcxcUtrnGB3W\n 90 \N 189.186.161.153 8d77205c-32fa-4ac1-830d-d4c442103b7e 2020-01-30 20:21:19.604333 28528 788 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.705E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 705.0 189.186.161.153 151f3b57-0a02-4ce6-85f1-fda202430497 2020-01-30 20:21:32.894802 28529 2132 Sale \N \N 18 User \N create ---\ncustomer_id: 159\nuser_id: 18\nopen_cash_register_id: 788\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2020-01-30\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-255\nexpiration_date: 2020-03-05\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.161.153 552addf8-8552-43e2-bd12-efd224f0b3bf 2020-01-30 20:32:57.088402 28530 1417 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.161.153 552addf8-8552-43e2-bd12-efd224f0b3bf 2020-01-30 20:32:57.130211 28531 2904 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 788\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.11E3\nmove_type: '1'\nsale_id: 2132\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-255\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.19E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-255 189.186.161.153 5fb1f3de-ae50-4a6b-bbb9-c31b4a26e163 2020-01-30 20:34:15.291975 28532 2904 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 788\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.11E3\nmove_type: '1'\nsale_id: 2132\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-255\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.19E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.161.153 2fe1933b-e77c-47bb-9049-5d1fa5a1f1b9 2020-01-30 20:34:23.360864 28533 2905 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 788\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 2132\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-255\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-255 189.186.161.153 62654a40-3cc7-47ff-9167-4c04cbe7d486 2020-01-30 20:34:43.173224 28534 2132 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.161.153 be882004-c4cd-4a3e-bd56-33f2faaac227 2020-01-30 20:34:44.728261 28535 2133 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 786\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2996E3\ntotal: !ruby/object:BigDecimal 18:0.4494E3\nstatus: 0\ndate_sale: 2020-01-30\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-827\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 961b957b-672a-4978-9b16-1415dbfd6c94 2020-01-30 21:33:48.508388 28536 1252 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 18 \N 187.149.51.184 961b957b-672a-4978-9b16-1415dbfd6c94 2020-01-30 21:33:48.55459 28537 2133 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 0e462bfe-75f9-4fde-b523-6d390bc86f96 2020-01-30 21:33:55.685292 28538 2906 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 786\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4494E3\nmove_type: '1'\nsale_id: 2133\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-827\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.45E3\nchange: !ruby/object:BigDecimal 18:0.6E0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-827 187.149.51.184 0e462bfe-75f9-4fde-b523-6d390bc86f96 2020-01-30 21:33:55.711627 28539 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-01-24 20:42:27.845662000 Z\n- &1 2020-01-29 22:33:07.075897000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-30 21:37:04.617734434 Z\nsign_in_count:\n- 158\n- 159\n 318 \N 187.149.51.184 4c1ed921-a13d-4ca4-9af7-601cbf69d9d3 2020-01-30 21:37:04.625003 28540 1 User \N \N 1 User \N update ---\nunique_session_id:\n- aijik3-gEf_mzEBWEfU6\n- xu6VyGjuWjk2_mSPyA1j\n 319 \N 187.149.51.184 4c1ed921-a13d-4ca4-9af7-601cbf69d9d3 2020-01-30 21:37:04.639208 28541 282 Customer \N \N 18 User \N create ---\nnick_name: KATY\nphone: "(667) 468-2247"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KATY fue registrado. 189.186.161.153 6034bbb9-203f-4ca2-b9dc-9ef7e0c56e66 2020-01-30 21:46:27.185585 28542 2134 Sale \N \N 18 User \N create ---\ncustomer_id: 282\nuser_id: 18\nopen_cash_register_id: 788\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2020-01-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-256\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.161.153 4180f1f5-c6bf-4612-8ce3-3dfca1518102 2020-01-30 21:46:57.87285 28543 982 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.161.153 4180f1f5-c6bf-4612-8ce3-3dfca1518102 2020-01-30 21:46:57.902654 28544 2134 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.161.153 f3bcb3e4-e413-4732-8b50-da4872f035ec 2020-01-30 21:47:04.607971 28616 1590 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.51.184 f67d97ea-2d85-42ae-bf60-8492f72d2d3d 2020-01-31 01:22:18.738815 28545 2907 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 788\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2134\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-256\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-256 189.186.161.153 f3bcb3e4-e413-4732-8b50-da4872f035ec 2020-01-30 21:47:04.633901 28546 2907 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 788\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2134\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-256\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.161.153 9439eb62-c9fe-4c54-a5af-1bfc80f395ab 2020-01-30 21:47:13.08126 28547 2908 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 788\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2134\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-256\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-256 189.186.161.153 8ddd423e-b90c-4a0e-9742-55f42de20325 2020-01-30 21:47:21.787116 28548 2134 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-256 cancelada. 189.186.161.153 0ca34e3d-6740-4d9e-bd70-c0abba01df7a 2020-01-30 21:47:26.521458 28549 2908 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 788\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2134\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-256\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.161.153 0ca34e3d-6740-4d9e-bd70-c0abba01df7a 2020-01-30 21:47:26.543924 28550 982 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.161.153 0ca34e3d-6740-4d9e-bd70-c0abba01df7a 2020-01-30 21:47:26.5713 28551 2135 Sale \N \N 18 User \N create ---\ncustomer_id: 282\nuser_id: 18\nopen_cash_register_id: 788\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2020-01-30\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-257\nexpiration_date: 2020-03-05\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.161.153 8f64f4b7-484e-43a1-a54f-49097fc2f493 2020-01-30 21:47:47.062233 28552 982 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.161.153 8f64f4b7-484e-43a1-a54f-49097fc2f493 2020-01-30 21:47:47.099064 28553 2909 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 788\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2135\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-257\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-257 189.186.161.153 55ba295c-d8b6-4a3e-b28f-7b787401fce7 2020-01-30 21:47:53.025189 28554 2135 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.161.153 9a45c8d4-e852-4735-911f-fe110eb86a14 2020-01-30 21:47:54.680867 28555 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-30 00:06:58.555242000 Z\n- &1 2020-01-30 19:48:04.068612000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-30 21:56:52.936419312 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\nsign_in_count:\n- 1364\n- 1365\n 2730 \N 189.186.161.153 7d949d79-028a-465c-9ea7-e9779261a183 2020-01-30 21:56:52.946618 28556 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gyZx8rZrpVME7ox85VRf\n- n4FzxkNdfiN67pGtpE8Q\n 2731 \N 189.186.161.153 7d949d79-028a-465c-9ea7-e9779261a183 2020-01-30 21:56:52.970063 28557 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2019-12-10 20:53:30.240547000 Z\n- &1 2020-01-30 20:21:19.580643000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-30 22:05:59.547333549 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\nsign_in_count:\n- 44\n- 45\n 91 \N 189.186.161.153 012bc448-44bb-470e-867a-a11a873bf68d 2020-01-30 22:05:59.554463 28558 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 5fmYy4mrTcxcUtrnGB3W\n- bvoMpmqJsVokVP_KTqi3\n 92 \N 189.186.161.153 012bc448-44bb-470e-867a-a11a873bf68d 2020-01-30 22:05:59.569495 28559 283 Customer \N \N 18 User \N create ---\nnick_name: FERNANDA ROSAS\nphone: "(667) 777-7777"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.1E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente FERNANDA ROSAS fue registrado. 189.186.161.153 af02113e-ccab-48fa-bc7a-62834ea73fbc 2020-01-30 22:06:47.005738 28560 2136 Sale \N \N 18 User \N create ---\ncustomer_id: 283\nuser_id: 18\nopen_cash_register_id: 788\namount: !ruby/object:BigDecimal 18:0.310172E4\ntax: !ruby/object:BigDecimal 18:0.49628E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3598E4\nstatus: 0\ndate_sale: 2020-01-30\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-258\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.161.153 baaf10d0-f545-4717-ab2b-9f244ce0d373 2020-01-30 22:07:12.194147 28561 908 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.161.153 baaf10d0-f545-4717-ab2b-9f244ce0d373 2020-01-30 22:07:12.227981 28562 1465 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.161.153 baaf10d0-f545-4717-ab2b-9f244ce0d373 2020-01-30 22:07:12.257896 28563 454 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-30\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.51.184 e1e87b2d-7b50-4ead-b8c5-6cadf74df2ca 2020-01-30 22:47:04.720096 28564 1591 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 772\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 e1e87b2d-7b50-4ead-b8c5-6cadf74df2ca 2020-01-30 22:47:04.745622 28565 451 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-30\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.187935 28662 788 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.161.153 ea43f1e7-e22d-4c2d-9014-8db6fbdbf1d9 2020-01-31 03:01:36.82679 28567 1592 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 863\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.226836 28568 1593 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 778\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.248947 28569 1594 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 780\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.269361 28570 1595 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 861\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.293022 28571 1596 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 860\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.315304 28572 1597 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 856\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.3378 28573 1398 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.377664 28574 1384 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.397816 28575 1383 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.416618 28576 1598 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 788\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.439096 28577 1140 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.456862 28578 1599 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 786\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.47911 28579 1166 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.9E1\n 7 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.497284 28580 1369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.515045 28581 1591 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.532754 28582 1600 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 773\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.554276 28583 1601 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 649\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.578102 28584 1602 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 888\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.599575 28585 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 24 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.617699 28586 1408 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.63606 28587 1603 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 650\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.658005 28588 1604 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 647\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 47cc155a-8ab5-438d-a72c-820d0549b2ca 2020-01-30 22:47:23.679574 28589 2137 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 787\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.299E3\ntotal: !ruby/object:BigDecimal 18:0.45E3\nstatus: 0\ndate_sale: 2020-01-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1050\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 e3187fed-3501-4a17-9fd0-57eaf087711f 2020-01-30 22:48:20.390508 28590 1300 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 25 \N 187.149.51.184 e3187fed-3501-4a17-9fd0-57eaf087711f 2020-01-30 22:48:20.421145 28591 2137 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 cbb3e877-eeeb-41b5-9592-fe63ee336ac5 2020-01-30 22:48:24.995361 28592 2910 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 787\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.45E3\nmove_type: '1'\nsale_id: 2137\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1050\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.45E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1050 187.149.51.184 cbb3e877-eeeb-41b5-9592-fe63ee336ac5 2020-01-30 22:48:25.031242 28593 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-30 19:48:04.068612000 Z\n- &1 2020-01-30 21:56:52.936419000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-30 23:54:20.752653279 Z\nsign_in_count:\n- 1365\n- 1366\n 2732 \N 189.186.161.153 aebc9ce3-ae93-4b93-afcc-7251f4661d95 2020-01-30 23:54:20.758868 28594 4 User \N \N 4 User \N update ---\nunique_session_id:\n- n4FzxkNdfiN67pGtpE8Q\n- hqs3xx88wzui_emamCGq\n 2733 \N 189.186.161.153 aebc9ce3-ae93-4b93-afcc-7251f4661d95 2020-01-30 23:54:20.775549 28595 2138 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 786\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2097E3\ntotal: !ruby/object:BigDecimal 18:0.4893E3\nstatus: 0\ndate_sale: 2020-01-30\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-828\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 a7f2d5ee-954d-4077-8a57-c36d2c051fa8 2020-01-31 00:11:50.911662 28596 800 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 22 \N 187.149.51.184 a7f2d5ee-954d-4077-8a57-c36d2c051fa8 2020-01-31 00:11:50.948985 28597 2138 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 434ca0bd-1d94-428e-aead-ad9549b94e19 2020-01-31 00:12:06.765547 28598 2911 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 786\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4893E3\nmove_type: '1'\nsale_id: 2138\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-828\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E3\nchange: !ruby/object:BigDecimal 18:0.7E0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-828 187.149.51.184 434ca0bd-1d94-428e-aead-ad9549b94e19 2020-01-31 00:12:06.801146 28599 2911 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 786\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4893E3\nmove_type: '1'\nsale_id: 2138\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-828\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E3\nchange: !ruby/object:BigDecimal 18:0.7E0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.51.184 55dd7367-4103-4911-a7ca-43cfebb07651 2020-01-31 00:12:08.606444 28600 2138 Sale \N \N 27 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV2-V-828 cancelada. 187.149.51.184 4ef0af90-fe64-47bb-bbba-f321fcf14eb4 2020-01-31 00:14:18.185169 28601 800 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 23 \N 187.149.51.184 4ef0af90-fe64-47bb-bbba-f321fcf14eb4 2020-01-31 00:14:18.212386 28602 2139 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 786\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2796E3\ntotal: !ruby/object:BigDecimal 18:0.4194E3\nstatus: 0\ndate_sale: 2020-01-30\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-829\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 7f33ab8e-ff94-4425-89f4-68f93b3b60a5 2020-01-31 00:14:51.186963 28603 800 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 24 \N 187.149.51.184 7f33ab8e-ff94-4425-89f4-68f93b3b60a5 2020-01-31 00:14:51.227234 28604 2139 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 67567843-be58-47c6-b1da-cb99fa9d8f62 2020-01-31 00:14:57.926586 28605 2912 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 786\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4194E3\nmove_type: '1'\nsale_id: 2139\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-829\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.806E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-829 187.149.51.184 67567843-be58-47c6-b1da-cb99fa9d8f62 2020-01-31 00:14:57.95002 28606 1256 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.51.184 df0b0c4d-11dc-421b-bafb-0a5802886bec 2020-01-31 00:58:43.586011 28607 455 Transfer \N \N 1 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-01-30\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.51.184 1c5645ce-94b3-4b18-b553-93857986b53f 2020-01-31 00:58:49.47106 28608 455 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-30\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.51.184 d8616cf7-0110-4832-a369-02568b0ab951 2020-01-31 01:01:06.931981 28609 1605 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 869\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 d8616cf7-0110-4832-a369-02568b0ab951 2020-01-31 01:01:06.96695 28610 2140 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 787\namount: !ruby/object:BigDecimal 18:0.2828E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1399E4\ntotal: !ruby/object:BigDecimal 18:0.1429E4\nstatus: 0\ndate_sale: 2020-01-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1051\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 11f72c62-da96-4049-885a-6584d3b84e3f 2020-01-31 01:16:19.908001 28611 1277 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.51.184 11f72c62-da96-4049-885a-6584d3b84e3f 2020-01-31 01:16:19.939483 28612 1605 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.51.184 11f72c62-da96-4049-885a-6584d3b84e3f 2020-01-31 01:16:19.965493 28613 2140 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 2998b5d7-9d42-40f8-ad8d-076bade23c87 2020-01-31 01:17:54.422369 28614 2913 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 787\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1429E4\nmove_type: '1'\nsale_id: 2140\ncardnumber: 5349\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1051\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1051 187.149.51.184 2998b5d7-9d42-40f8-ad8d-076bade23c87 2020-01-31 01:17:54.456376 28615 2141 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 787\namount: !ruby/object:BigDecimal 18:0.2498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1099E4\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-01-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1052\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 f67d97ea-2d85-42ae-bf60-8492f72d2d3d 2020-01-31 01:22:18.705766 28617 1074 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.51.184 f67d97ea-2d85-42ae-bf60-8492f72d2d3d 2020-01-31 01:22:18.766287 28618 2141 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 9935f5a2-e7e1-40d1-818e-8431e71b243f 2020-01-31 01:22:27.471815 28619 2914 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 787\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2141\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1052\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1052 187.149.51.184 9935f5a2-e7e1-40d1-818e-8431e71b243f 2020-01-31 01:22:27.503236 28620 2915 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 787\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 2141\ncardnumber: 5349\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1052\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1052 187.149.51.184 260bad49-ab53-45de-9287-477478ae7cc0 2020-01-31 01:22:40.465992 28621 2142 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 786\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2097E3\ntotal: !ruby/object:BigDecimal 18:0.4893E3\nstatus: 0\ndate_sale: 2020-01-30\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-830\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 f9bdea60-1fbe-436c-96eb-b98d0aeaf23f 2020-01-31 01:36:52.059059 28622 1376 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.51.184 f9bdea60-1fbe-436c-96eb-b98d0aeaf23f 2020-01-31 01:36:52.088361 28623 2142 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 45920287-c665-484f-a1f3-df2df5e7a180 2020-01-31 01:38:05.834984 28624 2916 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 786\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.4893E3\nmove_type: '1'\nsale_id: 2142\ncardnumber: 590\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-830\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-830 187.149.51.184 45920287-c665-484f-a1f3-df2df5e7a180 2020-01-31 01:38:05.859835 28625 2143 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 787\namount: !ruby/object:BigDecimal 18:0.163563E4\ntax: !ruby/object:BigDecimal 18:0.4137E2\ndiscount: !ruby/object:BigDecimal 18:0.1377E4\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2020-01-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1053\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 416fcbc8-37cf-4cba-a634-e7fadf488d07 2020-01-31 01:40:21.775033 28626 114 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.51.184 416fcbc8-37cf-4cba-a634-e7fadf488d07 2020-01-31 01:40:21.822538 28627 65 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.51.184 416fcbc8-37cf-4cba-a634-e7fadf488d07 2020-01-31 01:40:21.869272 28628 1567 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.51.184 416fcbc8-37cf-4cba-a634-e7fadf488d07 2020-01-31 01:40:21.912501 28629 2143 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 91056356-ba66-45ad-bdf0-d1e1efeb9dd4 2020-01-31 01:40:30.590336 28630 2917 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 787\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 2143\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1053\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1053 187.149.51.184 91056356-ba66-45ad-bdf0-d1e1efeb9dd4 2020-01-31 01:40:30.61243 28631 2144 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 787\namount: !ruby/object:BigDecimal 18:0.669E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.269E3\ntotal: !ruby/object:BigDecimal 18:0.4E3\nstatus: 0\ndate_sale: 2020-01-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1054\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 6969e917-9e2a-42bf-8774-5b3724605247 2020-01-31 01:55:57.66317 28632 634 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.51.184 6969e917-9e2a-42bf-8774-5b3724605247 2020-01-31 01:55:57.696804 28633 2144 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 b84b443c-ab94-47db-91dd-4f07c5951c7e 2020-01-31 01:56:05.105749 28634 2918 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 787\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 2144\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1054\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1054 187.149.51.184 b84b443c-ab94-47db-91dd-4f07c5951c7e 2020-01-31 01:56:05.131235 28635 2145 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 787\namount: !ruby/object:BigDecimal 18:0.669E3\ntax: !ruby/object:BigDecimal 18:0.6E2\ndiscount: !ruby/object:BigDecimal 18:0.294E3\ntotal: !ruby/object:BigDecimal 18:0.435E3\nstatus: 0\ndate_sale: 2020-01-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1055\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 a52509b4-e92f-46aa-8a2c-3da19d1c8b05 2020-01-31 01:58:04.227863 28636 1065 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.51.184 a52509b4-e92f-46aa-8a2c-3da19d1c8b05 2020-01-31 01:58:04.256346 28637 2145 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 d403e8d3-1a4b-45d7-9e59-cdd491b920b3 2020-01-31 01:58:10.618947 28638 2919 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 787\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.435E3\nmove_type: '1'\nsale_id: 2145\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1055\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.435E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1055 187.149.51.184 d403e8d3-1a4b-45d7-9e59-cdd491b920b3 2020-01-31 01:58:10.642495 28639 2146 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 787\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.304E3\ntotal: !ruby/object:BigDecimal 18:0.1595E4\nstatus: 0\ndate_sale: 2020-01-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1056\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 a9ab37f1-f50f-4498-842d-1a0866c8cf4a 2020-01-31 02:01:34.488162 28640 1033 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.51.184 a9ab37f1-f50f-4498-842d-1a0866c8cf4a 2020-01-31 02:01:34.51656 28641 2146 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 40ba8908-acfa-4a00-900d-8cb25aa7b05d 2020-01-31 02:02:26.299209 28642 2920 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 787\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.1595E4\nmove_type: '1'\nsale_id: 2146\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1056\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: UNIVALE\ncheck_number: 0000T0CW\ncustomer_account: '1151119193553'\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1056 187.149.51.184 40ba8908-acfa-4a00-900d-8cb25aa7b05d 2020-01-31 02:02:26.322378 28643 272 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 787\nquantity: !ruby/object:BigDecimal 18:0.1205E4\nstatus: 1\nobservations: SUELDO ROCIO\nexpense_date: 2020-01-30\nexpense_code: PV1-E-192\n 1 Egreso por 1205.0 registrado 187.149.51.184 ae9bd430-a968-451e-95bf-99479b624903 2020-01-31 02:02:56.805512 28644 2921 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 787\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1205E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 272\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.51.184 ae9bd430-a968-451e-95bf-99479b624903 2020-01-31 02:02:56.829993 28645 803 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 786\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.18375E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.13E4\ncash_fund: !ruby/object:BigDecimal 18:0.1036E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2336E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.51.184 41c4c3a4-6cb1-4678-a595-106546ca1aee 2020-01-31 02:04:45.279531 28646 786 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 41c4c3a4-6cb1-4678-a595-106546ca1aee 2020-01-31 02:04:45.29773 28647 452 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-30\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.51.184 794aef79-5b9a-4a9f-8f57-0f9296d2d5d3 2020-01-31 02:13:05.433837 28648 1606 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 771\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 794aef79-5b9a-4a9f-8f57-0f9296d2d5d3 2020-01-31 02:13:05.46119 28649 762 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.51.184 8feea01b-e686-401a-b2cd-d59dedffddac 2020-01-31 02:13:22.917439 28650 762 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.51.184 0e88cc34-9c11-4399-9417-bc9946fceeee 2020-01-31 02:13:26.575511 28651 456 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-01-30\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.51.184 8b6988f8-9e62-41c8-b744-fa8d6a9e45bd 2020-01-31 02:13:27.36869 28652 2147 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 787\namount: !ruby/object:BigDecimal 18:0.108421E4\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.898E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-01-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1057\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 5146e4f6-653b-4e92-9847-8f5492efed89 2020-01-31 02:18:20.350741 28653 1059 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.51.184 5146e4f6-653b-4e92-9847-8f5492efed89 2020-01-31 02:18:20.381286 28654 1565 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.51.184 5146e4f6-653b-4e92-9847-8f5492efed89 2020-01-31 02:18:20.408553 28655 2147 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 09939e68-37cc-4bcb-bd8c-e602da8c4050 2020-01-31 02:18:24.79855 28656 2922 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 787\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2147\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1057\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1057 187.149.51.184 09939e68-37cc-4bcb-bd8c-e602da8c4050 2020-01-31 02:18:24.820111 28657 804 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 787\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6308E4\namount_out: !ruby/object:BigDecimal 18:0.1205E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.93E3\ncash_fund: !ruby/object:BigDecimal 18:0.713E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1643E4\nobservations: LO QUE RETIRE FUE VENTA DE ARETES PAGADAS CON TARJETA $930\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.51.184 c9250bf7-c9af-4558-89a5-2392a3170a37 2020-01-31 02:24:58.524521 28658 787 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 c9250bf7-c9af-4558-89a5-2392a3170a37 2020-01-31 02:24:58.53836 28659 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-01-30 20:21:19.580643000 Z\n- &1 2020-01-30 22:05:59.547333000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-31 02:50:33.518175571 Z\nsign_in_count:\n- 45\n- 46\n 93 \N 189.186.161.153 b02a9863-2afb-4113-a154-82fb48a4f6cb 2020-01-31 02:50:33.524239 28660 18 User \N \N 18 User \N update ---\nunique_session_id:\n- bvoMpmqJsVokVP_KTqi3\n- Cmbv3XKWD2ia8AFq2WCs\n 94 \N 189.186.161.153 b02a9863-2afb-4113-a154-82fb48a4f6cb 2020-01-31 02:50:33.537952 28661 805 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 788\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.5E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1205E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1205E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.161.153 ea43f1e7-e22d-4c2d-9014-8db6fbdbf1d9 2020-01-31 03:01:36.812031 28663 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-29 17:12:30.343996000 Z\n- &1 2020-01-30 17:07:04.091652000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-31 17:01:20.458456692 Z\nsign_in_count:\n- 89\n- 90\n 180 \N 187.149.51.184 0b7348d7-4705-4d52-8489-6ac3de0cfffe 2020-01-31 17:01:20.492513 28664 27 User \N \N 27 User \N update ---\nunique_session_id:\n- RU3tBF9mKnv7Ncc3GBVc\n- MGD1Sb6hbdS7WiW9xon3\n 181 \N 187.149.51.184 0b7348d7-4705-4d52-8489-6ac3de0cfffe 2020-01-31 17:01:20.515563 28665 789 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1036E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1036.0 187.149.51.184 08ff3cc6-ce3a-40f6-ad64-06b868a6868d 2020-01-31 17:02:10.30732 28666 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-29 16:43:27.070778000 Z\n- &1 2020-01-30 17:49:52.695711000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-31 17:07:48.751365680 Z\nsign_in_count:\n- 460\n- 461\n 925 \N 187.149.51.184 0a08ab2a-2782-4977-9d9c-1bbe767b53f8 2020-01-31 17:07:48.783016 28667 2 User \N \N 2 User \N update ---\nunique_session_id:\n- nLJyXfwNSd2yMijwSTPe\n- ksMwSS5dCXL7y-gGqF6h\n 926 \N 187.149.51.184 0a08ab2a-2782-4977-9d9c-1bbe767b53f8 2020-01-31 17:07:48.810848 28668 790 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.713E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 713.0 187.149.51.184 38b45eed-5df9-42da-8b2a-59e7f559e7e6 2020-01-31 17:08:37.80902 28669 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-29 19:55:09.230382000 Z\n- &1 2020-01-30 00:05:06.039515000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-31 17:54:14.087812389 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\nsign_in_count:\n- 108\n- 109\n 219 \N 189.186.161.153 31e92045-e2e1-4135-9907-93751cc3b3f8 2020-01-31 17:54:14.094715 28670 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 76HpPBgGeZWLsZzyj1Cp\n- DmzWjRnxE79EFRdu3aBx\n 220 \N 189.186.161.153 31e92045-e2e1-4135-9907-93751cc3b3f8 2020-01-31 17:54:14.110364 28671 1224 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.161.153 086561d5-7d3b-4a91-b39f-8fc32c9f847e 2020-01-31 18:02:54.084121 28672 1223 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.161.153 6ea8fa6a-849a-4d02-8e44-a590c1b7e1dc 2020-01-31 18:03:11.744372 28673 767 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.161.153 edf00f81-ca01-4636-a123-b5c7fd863780 2020-01-31 18:03:19.760873 28674 826 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 189.186.161.153 e752825b-e43b-4671-b38d-ffb4aedc7d6d 2020-01-31 18:03:29.115572 28675 1394 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.161.153 41f783c7-156a-4f99-8561-725def42331a 2020-01-31 18:03:37.558725 28676 1396 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.161.153 cf304cec-0a29-4fc1-b90f-88d15f32dddd 2020-01-31 18:03:47.014773 28677 836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.161.153 7d5c187d-db7d-4ba5-b83f-bb79accc00ea 2020-01-31 18:03:56.498759 28678 1152 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.161.153 5aace405-2e18-4512-98e4-2b65512ded4a 2020-01-31 18:04:06.121337 28679 765 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.161.153 7f3d280a-ff53-4a4e-8e3a-5ea0778de586 2020-01-31 18:04:20.03389 28680 1224 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.161.153 e83552bd-923b-40f2-a401-755ea4ed317b 2020-01-31 18:04:57.309866 28681 767 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.161.153 e20ad7ce-608d-4b82-a65e-349587eb7944 2020-01-31 18:05:09.288026 28682 826 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 189.186.161.153 01223c78-8050-45ce-aafe-b5f3fece905f 2020-01-31 18:05:16.489476 28683 1394 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.161.153 71650e86-7e90-4958-929c-7f0c15ac7013 2020-01-31 18:05:22.361175 28684 1396 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.161.153 983ea1ae-063d-469b-91ae-201f8a7489bd 2020-01-31 18:05:26.862391 28685 836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.161.153 d600ce8a-fb7d-413c-90b9-80ee1ff5a448 2020-01-31 18:05:31.530046 28686 457 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2020-01-31\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.161.153 cddd0c89-f7b0-4d38-ab7f-038ae6a527d2 2020-01-31 18:05:41.448157 28687 457 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-31\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.51.184 5674d06a-caa8-44cb-9be2-5898d942a012 2020-01-31 18:11:08.327744 28688 800 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.4E1\n 25 \N 187.149.51.184 5674d06a-caa8-44cb-9be2-5898d942a012 2020-01-31 18:11:08.349243 28689 1374 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.8E1\n 8 \N 187.149.51.184 5674d06a-caa8-44cb-9be2-5898d942a012 2020-01-31 18:11:08.381104 28690 1607 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 877\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 5674d06a-caa8-44cb-9be2-5898d942a012 2020-01-31 18:11:08.405481 28691 1379 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.51.184 5674d06a-caa8-44cb-9be2-5898d942a012 2020-01-31 18:11:08.426781 28692 1608 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 645\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 5674d06a-caa8-44cb-9be2-5898d942a012 2020-01-31 18:11:08.455043 44787 1519 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1519'\n is_parent: false\n sku: CHA-1519\n name: CHA-0028\n description: SUETER NEGRO CON BOTON DORADO BALBOA\n price_base: '231.0'\n price_sale: '579.0'\n img_product: 3CE4C7E8-0593-47BE-AD13-01D399909DB3.jpeg\n presentation: 'false'\n inventory: 'false'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001519'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 23:30:40.13731'\n updated_at: &12 2020-11-04 00:17:46.395293445 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1519'\n sku: CHA-1519\n name: CHA-0028\n description: SUETER NEGRO CON BOTON DORADO BALBOA\n price_base: '231.00'\n price_sale: '579.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 23:30:40.13731'\n updated_at: '2020-11-03 23:30:40.172291'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001519'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1519'\n type: *3\n value: 1519\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-1519\n type: *7\n value: CHA-1519\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0028\n type: *8\n value: CHA-0028\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: SUETER NEGRO CON BOTON DORADO BALBOA\n type: *6\n value: SUETER NEGRO CON BOTON DORADO BALBOA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '231.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.231E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '579.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.579E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 3CE4C7E8-0593-47BE-AD13-01D399909DB3.jpeg\n type: *2\n value: 3CE4C7E8-0593-47BE-AD13-01D399909DB3.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'false'\n type: *4\n value: false\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001519'\n type: *2\n value: '0001519'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 23:30:40.13731'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 3CE4C7E8-0593-47BE-AD13-01D399909DB3.jpeg\ninventory:\n- true\n- false\n 3 El producto CHA-1519 fue modificado. 187.149.136.226 a8ace2f8-1a88-482a-bb05-5baa3dbab2b9 2020-11-04 00:17:46.436808 28693 284 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.51.184 5674d06a-caa8-44cb-9be2-5898d942a012 2020-01-31 18:11:08.476825 28694 1609 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 643\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.51.184 5674d06a-caa8-44cb-9be2-5898d942a012 2020-01-31 18:11:08.499965 28695 1146 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 187.149.51.184 5674d06a-caa8-44cb-9be2-5898d942a012 2020-01-31 18:11:08.519353 28696 298 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.51.184 5674d06a-caa8-44cb-9be2-5898d942a012 2020-01-31 18:11:08.539675 28697 2148 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 789\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2276E3\ntotal: !ruby/object:BigDecimal 18:0.3414E3\nstatus: 0\ndate_sale: 2020-01-31\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-831\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 cd715fd6-92a9-475d-9dc3-30062ae776b0 2020-01-31 18:11:51.168982 28698 1608 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.51.184 cd715fd6-92a9-475d-9dc3-30062ae776b0 2020-01-31 18:11:51.202116 28699 2148 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 9806d0ce-f6b8-4d73-ba33-c4fb429dfbc9 2020-01-31 18:13:15.514987 28700 2923 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 789\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3414E3\nmove_type: '1'\nsale_id: 2148\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-831\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1586E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-831 187.149.51.184 9806d0ce-f6b8-4d73-ba33-c4fb429dfbc9 2020-01-31 18:13:15.541437 28701 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-30 21:56:52.936419000 Z\n- &1 2020-01-30 23:54:20.752653000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-31 18:21:36.203488822 Z\nsign_in_count:\n- 1366\n- 1367\n 2734 \N 189.186.161.153 8a869859-9bc0-47dc-a818-ba9000af48af 2020-01-31 18:21:36.223073 28702 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hqs3xx88wzui_emamCGq\n- rbsszVZEzyuGk1zFMFBb\n 2735 \N 189.186.161.153 8a869859-9bc0-47dc-a818-ba9000af48af 2020-01-31 18:21:36.246095 28703 644 Product \N \N 4 User \N update ---\nname:\n- BLU-0069\n- BLU-0064\n 3 El producto BLU-644 fue modificado. 189.186.161.153 49b31c2b-2153-41c7-ae7f-aeb8c9da1b0e 2020-01-31 18:22:03.427858 28704 766 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.161.153 1948d55f-65dc-4e51-a4bc-1b1b536fe0db 2020-01-31 18:22:33.232197 28705 458 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2020-01-31\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.161.153 580b38ea-71fa-4a75-90f7-712426153268 2020-01-31 18:22:36.467588 28706 19 User \N \N 19 User \N update ---\nlast_sign_in_at:\n- 2020-01-24 23:47:52.528306000 Z\n- &1 2020-01-28 19:13:01.161043000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-31 18:26:53.319939021 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\nsign_in_count:\n- 4\n- 5\n 11 \N 189.186.161.153 65e64671-db14-403d-90c8-dc2e51392037 2020-01-31 18:26:53.327789 28707 19 User \N \N 19 User \N update ---\nunique_session_id:\n- JKypDyrz99ZdiT2cZoWt\n- q62N_9TFMtYyN4dJ11Lv\n 12 \N 189.186.161.153 65e64671-db14-403d-90c8-dc2e51392037 2020-01-31 18:26:53.344211 28708 791 OpenCashRegister \N \N 19 User \N create ---\ncash_register_id: 3\nuser_id: 19\ninitial_cash: !ruby/object:BigDecimal 18:0.1205E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1205.0 189.186.161.153 3dfd01cf-d391-4505-bd32-fd263b7ecfc2 2020-01-31 18:27:00.754373 28709 456 Transfer \N \N 19 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 19\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-31\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.161.153 2fa5263d-1391-40ad-a7f7-0b0a142a618e 2020-01-31 18:27:17.683286 28710 1610 AvailableProduct \N \N 19 User \N create ---\nproduct_id: 396\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.161.153 2fa5263d-1391-40ad-a7f7-0b0a142a618e 2020-01-31 18:27:17.72482 28711 453 Transfer \N \N 19 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 19\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-31\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.161.153 92af91fc-8248-4752-9332-2783bb220f79 2020-01-31 18:27:32.109533 28712 954 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.161.153 92af91fc-8248-4752-9332-2783bb220f79 2020-01-31 18:27:32.127333 28713 993 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.161.153 de441efa-000c-4523-a9dc-2b74ebef40ed 2020-01-31 19:30:48.49424 28714 993 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.161.153 9c87ecd0-2b39-4b90-8c41-356de16c21bc 2020-01-31 19:30:51.699664 28715 1363 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.161.153 572a6549-bd65-4a87-9623-85e1132d56f9 2020-01-31 19:30:58.739003 28716 1363 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.161.153 1fa6634e-83e0-49ff-80a4-de19c61da2b9 2020-01-31 19:31:02.331858 28717 1525 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.161.153 dccb2350-9a76-4310-a70c-ddbf2572c94b 2020-01-31 19:31:15.104355 28718 1525 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.161.153 743cbca3-8053-4921-a409-f2cb92f55208 2020-01-31 19:31:20.618826 28719 859 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 189.186.161.153 be3b2f0e-a685-45b9-a831-8f52e712bc27 2020-01-31 19:31:31.353559 28720 859 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.161.153 790f1272-ef51-4edf-9ee5-5ac34e7296e0 2020-01-31 19:31:35.334515 28721 858 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.161.153 d85100e8-f23b-4266-ac77-559d2bb48293 2020-01-31 19:32:09.834224 28722 858 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.161.153 0c1aefba-8ef9-42ed-b75f-d706dccae643 2020-01-31 19:32:12.654669 28723 1265 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 189.186.161.153 cd7dc8f6-7fbc-48ad-a202-bcb6f94cc509 2020-01-31 19:32:23.713656 28724 1265 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.161.153 5a2c0f2f-e536-4e70-b99b-778c7ba4c1d8 2020-01-31 19:32:27.220659 28725 1529 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.161.153 58bb372c-b198-4b91-8318-3fcc6cd4da58 2020-01-31 19:32:42.085231 28726 1529 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.161.153 dbe55d95-faa0-4f80-9ba5-057592b13dfd 2020-01-31 19:32:45.998199 28727 1537 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.161.153 52aba58a-8e9b-4162-a54c-0189d8e5ae41 2020-01-31 19:32:59.789207 28728 1537 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.161.153 620eb7b6-1912-40c8-aa25-08047cbdd72b 2020-01-31 19:33:04.597658 28729 814 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 12 \N 189.186.161.153 d198c4bb-44bc-4005-bb6e-b640d427be2d 2020-01-31 19:33:31.505838 28730 814 AvailableProduct \N \N 19 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.1E1\n 13 \N 189.186.161.153 379a8c62-abd6-45b3-998d-5bee685a62a8 2020-01-31 19:33:36.130056 28731 459 Transfer \N \N 19 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-01-31\nuser_id: 19\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO Comercial a Almacen central creado. 189.186.161.153 264e14cd-4b6b-497f-ba93-3ef45c6945ed 2020-01-31 19:34:28.929147 28732 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-30 23:54:20.752653000 Z\n- &1 2020-01-31 18:21:36.203488000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-31 19:34:56.246628882 Z\nsign_in_count:\n- 1367\n- 1368\n 2736 \N 189.186.161.153 e8c47f98-66a8-4a00-bd86-23dbaf782bf9 2020-01-31 19:34:56.256183 28733 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rbsszVZEzyuGk1zFMFBb\n- UH8TQKbE_eNfLw7XQ4jH\n 2737 \N 189.186.161.153 e8c47f98-66a8-4a00-bd86-23dbaf782bf9 2020-01-31 19:34:56.281044 28734 1048 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.161.153 4a9586c7-8a2c-4800-9b80-27d07bf0947b 2020-01-31 19:36:28.66107 28735 460 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-01-31\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de S BY SUO a Almacen central creado. 189.186.161.153 3d072f68-79dd-40f0-9bbf-d43da62b0fae 2020-01-31 19:36:31.350435 28736 322 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.161.153 910640ed-7d7f-4d90-9c0e-d891c8160cae 2020-01-31 19:49:43.314914 28737 322 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.161.153 af522210-4748-4428-aa77-5391ec982bc0 2020-01-31 19:49:45.603481 28738 308 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.161.153 cde92792-ec4a-4c1a-8aca-67a83d4fde23 2020-01-31 19:49:56.019453 28739 575 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.161.153 7a8ce80c-1d50-4ea8-b968-d7c98b96dd5f 2020-01-31 19:50:03.91797 28740 461 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-01-31\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.161.153 4b4a0091-f9c3-4f3f-9251-916b7192dcc4 2020-01-31 19:50:24.798757 28741 462 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-01-31\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.161.153 44b79aaa-89d7-4410-9d50-b9912a885937 2020-01-31 19:51:42.488287 28742 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-30 00:05:06.039515000 Z\n- &1 2020-01-31 17:54:14.087812000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-31 19:52:07.308254453 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\nsign_in_count:\n- 109\n- 110\n 221 \N 189.186.161.153 f9d7029b-86f8-4d42-8470-c3866bad1b1f 2020-01-31 19:52:07.317175 28743 21 User \N \N 21 User \N update ---\nunique_session_id:\n- DmzWjRnxE79EFRdu3aBx\n- Xv2HoxxfxbZpzxsBdqG5\n 222 \N 189.186.161.153 f9d7029b-86f8-4d42-8470-c3866bad1b1f 2020-01-31 19:52:07.33485 28744 462 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-31\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.161.153 1504ee70-ea0b-4fba-91a4-900e7167de4f 2020-01-31 19:52:23.650414 28745 1611 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 72\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.161.153 1504ee70-ea0b-4fba-91a4-900e7167de4f 2020-01-31 19:52:23.68306 28746 1612 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 141\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.161.153 1504ee70-ea0b-4fba-91a4-900e7167de4f 2020-01-31 19:52:23.712744 28747 1613 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 479\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.161.153 1504ee70-ea0b-4fba-91a4-900e7167de4f 2020-01-31 19:52:23.743466 28748 461 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-01-31\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.161.153 1db112ff-37e5-4069-9fca-0d0fc0ad3cc5 2020-01-31 19:56:15.494649 28772 300 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.51.184 7d8699e8-e37f-40ea-95b2-54f1670abb8d 2020-01-31 21:36:02.347028 28749 1614 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 534\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.161.153 1db112ff-37e5-4069-9fca-0d0fc0ad3cc5 2020-01-31 19:56:15.519135 28750 1615 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 310\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.161.153 1db112ff-37e5-4069-9fca-0d0fc0ad3cc5 2020-01-31 19:56:15.54575 28751 1018 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.161.153 1db112ff-37e5-4069-9fca-0d0fc0ad3cc5 2020-01-31 19:56:15.570171 28752 2924 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 767\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2077\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CASA\n 1 \N 189.186.161.153 40508b93-a722-4d93-87ee-3d59c725aec7 2020-01-31 20:03:13.888024 28753 2077 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.161.153 40508b93-a722-4d93-87ee-3d59c725aec7 2020-01-31 20:03:13.927088 28754 2924 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 767\n- 791\n 2 movimiento de efectivo por venta con folio PV3-V-249 189.186.161.153 40508b93-a722-4d93-87ee-3d59c725aec7 2020-01-31 20:03:13.946071 28755 2149 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 790\namount: !ruby/object:BigDecimal 18:0.51521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.429E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-01-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1058\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 dff45757-0ce8-430b-9798-e68ec8181ae6 2020-01-31 20:09:14.034424 28756 112 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 1 \N 187.149.51.184 dff45757-0ce8-430b-9798-e68ec8181ae6 2020-01-31 20:09:14.180003 28757 2149 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 9b6187e9-e369-4bcd-9426-4f5120e516b0 2020-01-31 20:09:18.051237 28758 2925 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 790\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2149\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1058\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1058 187.149.51.184 9b6187e9-e369-4bcd-9426-4f5120e516b0 2020-01-31 20:09:18.08434 28759 2150 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 790\namount: !ruby/object:BigDecimal 18:0.51521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.429E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-01-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1059\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 e2b67c60-cc14-431c-a929-d13985852914 2020-01-31 20:09:38.43341 28760 112 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.51.184 e2b67c60-cc14-431c-a929-d13985852914 2020-01-31 20:09:38.467275 28761 2150 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 2618e025-c255-4023-ad39-e23e37142d61 2020-01-31 20:09:42.681346 28762 2926 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 790\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2150\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1059\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1059 187.149.51.184 2618e025-c255-4023-ad39-e23e37142d61 2020-01-31 20:09:42.705006 28763 2151 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 790\namount: !ruby/object:BigDecimal 18:0.155662E4\ntax: !ruby/object:BigDecimal 18:0.4138E2\ndiscount: !ruby/object:BigDecimal 18:0.1298E4\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2020-01-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1060\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 9cc10b24-1360-4138-bbfe-fc8cbce9ac43 2020-01-31 20:12:30.468397 28764 224 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.51.184 9cc10b24-1360-4138-bbfe-fc8cbce9ac43 2020-01-31 20:12:30.505484 28765 162 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.51.184 9cc10b24-1360-4138-bbfe-fc8cbce9ac43 2020-01-31 20:12:30.548673 28766 2151 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 71b474e3-cc5b-499a-8d90-45c69808fa24 2020-01-31 20:12:34.335671 28767 2927 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 790\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 2151\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1060\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1060 187.149.51.184 71b474e3-cc5b-499a-8d90-45c69808fa24 2020-01-31 20:12:34.360297 28768 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-31 18:21:36.203488000 Z\n- &1 2020-01-31 19:34:56.246628000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-31 20:46:57.415014920 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104690\n mask_addr: 4294967295\nsign_in_count:\n- 1368\n- 1369\n 2738 \N 187.149.1.178 bca604b3-6cf0-45f8-98d9-44251740dbe4 2020-01-31 20:46:57.423184 28769 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UH8TQKbE_eNfLw7XQ4jH\n- 6kKrc1pdHw771iy9RB-Z\n 2739 \N 187.149.1.178 bca604b3-6cf0-45f8-98d9-44251740dbe4 2020-01-31 20:46:57.443284 28770 2152 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 789\namount: !ruby/object:BigDecimal 18:0.118904E4\ntax: !ruby/object:BigDecimal 18:0.6896E2\ndiscount: !ruby/object:BigDecimal 18:0.758E3\ntotal: !ruby/object:BigDecimal 18:0.5E3\nstatus: 0\ndate_sale: 2020-01-31\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-832\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 7d8699e8-e37f-40ea-95b2-54f1670abb8d 2020-01-31 21:36:02.283326 28771 283 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.51.184 7d8699e8-e37f-40ea-95b2-54f1670abb8d 2020-01-31 21:36:02.318688 28774 2928 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 789\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 2152\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-832\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-832 187.149.51.184 7ba45e92-c8d7-44b7-8fa4-ce50176cdc54 2020-01-31 21:36:10.307646 28775 2929 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 788\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.3598E4\nmove_type: '1'\nsale_id: 2136\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEP\n 1 \N 189.186.161.153 4ddf9947-3b54-4137-b755-a759d7b32260 2020-01-31 21:38:40.395335 28776 2136 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.161.153 4ddf9947-3b54-4137-b755-a759d7b32260 2020-01-31 21:38:40.41873 28777 2929 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 788\n- 791\n 2 movimiento de efectivo por venta con folio PV3-V-258 189.186.161.153 4ddf9947-3b54-4137-b755-a759d7b32260 2020-01-31 21:38:40.433524 28778 2153 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 790\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.559E3\ntotal: !ruby/object:BigDecimal 18:0.84E3\nstatus: 0\ndate_sale: 2020-01-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1061\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 17647546-8943-4793-a67d-099885fa96ff 2020-01-31 21:45:09.336881 28779 1470 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.51.184 17647546-8943-4793-a67d-099885fa96ff 2020-01-31 21:45:09.38207 28780 2153 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 f3c6529e-b49a-4d22-8c54-dde933f3b4fd 2020-01-31 21:45:23.190698 28781 2930 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 790\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.84E3\nmove_type: '1'\nsale_id: 2153\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1061\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.84E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1061 187.149.51.184 f3c6529e-b49a-4d22-8c54-dde933f3b4fd 2020-01-31 21:45:23.214952 28782 2154 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 789\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3996E3\ntotal: !ruby/object:BigDecimal 18:0.5994E3\nstatus: 0\ndate_sale: 2020-01-31\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-833\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 f63486c3-933e-4d8c-97e6-6349a927e7aa 2020-01-31 22:06:15.220926 28783 1017 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.51.184 f63486c3-933e-4d8c-97e6-6349a927e7aa 2020-01-31 22:06:15.505351 28784 2154 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 c10e6bc8-b613-453b-8d98-294cb632e740 2020-01-31 22:07:11.55391 28785 2931 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 789\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5994E3\nmove_type: '1'\nsale_id: 2154\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-833\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.6E0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-833 187.149.51.184 c10e6bc8-b613-453b-8d98-294cb632e740 2020-01-31 22:07:11.580317 28786 2155 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 791\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-01-31\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-259\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.161.153 8d1068b8-e9af-4951-adb7-a9a557726d40 2020-01-31 23:22:16.131348 28787 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.65E2\n- !ruby/object:BigDecimal 18:0.64E2\n 14 \N 189.186.161.153 8d1068b8-e9af-4951-adb7-a9a557726d40 2020-01-31 23:22:16.188784 28788 2155 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.161.153 6ddead54-5ecb-4a54-9cda-f98c7b593969 2020-01-31 23:22:28.870595 28789 2932 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 791\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 2155\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-259\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E2\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-259 189.186.161.153 6ddead54-5ecb-4a54-9cda-f98c7b593969 2020-01-31 23:22:28.907527 28790 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-31 19:34:56.246628000 Z\n- &1 2020-01-31 20:46:57.415014000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-01-31 23:48:15.414904534 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104690\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104690\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\nsign_in_count:\n- 1369\n- 1370\n 2740 \N 189.186.161.153 b2a3ec05-b616-4992-b07b-67193e97ad96 2020-01-31 23:48:15.443059 28791 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6kKrc1pdHw771iy9RB-Z\n- cRHmdPHDdz6UDMXAF_8j\n 2741 \N 189.186.161.153 b2a3ec05-b616-4992-b07b-67193e97ad96 2020-01-31 23:48:15.469618 28792 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-31 20:46:57.415014000 Z\n- &1 2020-01-31 23:48:15.414904000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-01 00:58:17.199083242 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104690\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938156\n mask_addr: 4294967295\nsign_in_count:\n- 1370\n- 1371\n 2742 \N 200.68.150.108 c946f1b6-0f97-472a-b001-0093a20aa808 2020-02-01 00:58:17.206844 28793 4 User \N \N 4 User \N update ---\nunique_session_id:\n- cRHmdPHDdz6UDMXAF_8j\n- _W7-dP2zxKz2jKs4fS7S\n 2743 \N 200.68.150.108 c946f1b6-0f97-472a-b001-0093a20aa808 2020-02-01 00:58:17.225575 28818 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-31 19:52:07.308254000 Z\n- &1 2020-02-01 01:29:19.969715000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-01 21:54:02.921453843 Z\nsign_in_count:\n- 111\n- 112\n 225 \N 189.186.161.153 46e201b6-ba3f-41ed-b310-65f22ed6d895 2020-02-01 21:54:02.929504 28794 2933 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 690\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1795\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CREDITO SAM\n 1 \N 187.149.51.184 1049b0c0-b738-450d-80d2-01c7ba1ddde1 2020-02-01 01:10:50.717819 28795 2933 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 690\n- 790\n 2 movimiento de efectivo por venta con folio PV1-V-901 187.149.51.184 1049b0c0-b738-450d-80d2-01c7ba1ddde1 2020-02-01 01:10:50.800181 28796 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-01-31 17:54:14.087812000 Z\n- &1 2020-01-31 19:52:07.308254000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-01 01:29:19.969715384 Z\nsign_in_count:\n- 110\n- 111\n 223 \N 189.186.161.153 2ea474d8-64c8-4798-87aa-5aab1ffbd704 2020-02-01 01:29:19.976167 28797 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Xv2HoxxfxbZpzxsBdqG5\n- azFz9DqD5jvcxPker2wV\n 224 \N 189.186.161.153 2ea474d8-64c8-4798-87aa-5aab1ffbd704 2020-02-01 01:29:19.99294 28798 806 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 789\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.14408E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1476E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2476E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.51.184 d2ac8eba-1052-4217-ad33-97824fbe835e 2020-02-01 02:01:53.229289 28799 789 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 d2ac8eba-1052-4217-ad33-97824fbe835e 2020-02-01 02:01:53.245139 28800 807 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 790\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.184E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.553E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2053E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.51.184 eb7afca5-72ed-4ee5-8b66-1734f2edd47f 2020-02-01 02:05:46.242902 28801 790 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 eb7afca5-72ed-4ee5-8b66-1734f2edd47f 2020-02-01 02:05:46.257342 28802 808 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 791\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.4647E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1254E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1254E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.161.153 e181455f-e72a-476f-ac91-69c464dd3d62 2020-02-01 02:51:29.48276 28803 791 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.161.153 e181455f-e72a-476f-ac91-69c464dd3d62 2020-02-01 02:51:29.496859 28804 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-30 17:07:04.091652000 Z\n- &1 2020-01-31 17:01:20.458456000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-01 20:42:15.232940376 Z\nsign_in_count:\n- 90\n- 91\n 182 \N 187.149.51.184 f010ea0d-dfce-4cef-a673-734bf54428bd 2020-02-01 20:42:15.262031 28805 27 User \N \N 27 User \N update ---\nunique_session_id:\n- MGD1Sb6hbdS7WiW9xon3\n- f5eDnxkdFcSTb4roNwP-\n 183 \N 187.149.51.184 f010ea0d-dfce-4cef-a673-734bf54428bd 2020-02-01 20:42:15.291873 28806 792 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1476E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1476.0 187.149.51.184 88a2a1e7-a054-475b-82f3-aac78d6612f8 2020-02-01 20:42:30.282767 28807 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-30 17:49:52.695711000 Z\n- &1 2020-01-31 17:07:48.751365000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-01 20:44:48.924700895 Z\nsign_in_count:\n- 461\n- 462\n 927 \N 187.149.51.184 7ecfcb91-9918-4cf4-8ca1-5d038a9e1fdf 2020-02-01 20:44:48.931459 28808 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ksMwSS5dCXL7y-gGqF6h\n- VwS9MdYVY2QzwghHw8Sy\n 928 \N 187.149.51.184 7ecfcb91-9918-4cf4-8ca1-5d038a9e1fdf 2020-02-01 20:44:48.948294 28809 793 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.553E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 553.0 187.149.51.184 d67357ac-da5e-4290-afd5-d76edd9249b0 2020-02-01 20:44:59.871305 28810 2156 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 793\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.479E3\ntotal: !ruby/object:BigDecimal 18:0.72E3\nstatus: 0\ndate_sale: 2020-02-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1062\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 d5ee292a-7356-47ab-bcd3-10515944d7a9 2020-02-01 20:47:48.856094 28811 1382 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.51.184 d5ee292a-7356-47ab-bcd3-10515944d7a9 2020-02-01 20:47:48.897693 28812 2156 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 df7e27fd-3e85-451b-ac9d-99e14e12fbbd 2020-02-01 20:47:57.554274 28813 2934 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 793\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.72E3\nmove_type: '1'\nsale_id: 2156\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1062\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.8E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1062 187.149.51.184 df7e27fd-3e85-451b-ac9d-99e14e12fbbd 2020-02-01 20:47:57.579226 28814 2157 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 793\namount: !ruby/object:BigDecimal 18:0.43521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-02-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1063\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 3a0a2a93-661a-4009-84ca-34e2f68790fa 2020-02-01 21:08:24.227865 28815 1560 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.51.184 3a0a2a93-661a-4009-84ca-34e2f68790fa 2020-02-01 21:08:24.256982 28816 2157 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 61e7dd09-7241-4cb5-9cfd-edd6f43580aa 2020-02-01 21:08:39.396207 28817 2935 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 793\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2157\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1063\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1063 187.149.51.184 61e7dd09-7241-4cb5-9cfd-edd6f43580aa 2020-02-01 21:08:39.423779 28819 21 User \N \N 21 User \N update ---\nunique_session_id:\n- azFz9DqD5jvcxPker2wV\n- ADozZSBzWSJztfhmdka_\n 226 \N 189.186.161.153 46e201b6-ba3f-41ed-b310-65f22ed6d895 2020-02-01 21:54:02.946944 28820 794 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1254E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1254.0 189.186.161.153 ee19a0fe-0e06-4aa6-a130-a18aaab97731 2020-02-01 21:54:31.055776 28821 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-01-31 23:48:15.414904000 Z\n- &1 2020-02-01 00:58:17.199083000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-01 22:37:16.401194278 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938156\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938156\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938479\n mask_addr: 4294967295\nsign_in_count:\n- 1371\n- 1372\n 2744 \N 200.68.151.175 5ca979c0-6555-4f1c-98f1-8fa2c45edf42 2020-02-01 22:37:16.423331 28822 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _W7-dP2zxKz2jKs4fS7S\n- RPTgBPkqibf4f6pPz82d\n 2745 \N 200.68.151.175 5ca979c0-6555-4f1c-98f1-8fa2c45edf42 2020-02-01 22:37:16.4502 28823 2158 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 793\namount: !ruby/object:BigDecimal 18:0.1769E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.709E3\ntotal: !ruby/object:BigDecimal 18:0.106E4\nstatus: 0\ndate_sale: 2020-02-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1064\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 02069e2f-0cd3-4913-baf1-34d25c5f072b 2020-02-01 22:59:59.372969 28824 1249 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.51.184 02069e2f-0cd3-4913-baf1-34d25c5f072b 2020-02-01 22:59:59.421371 28825 2158 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 68f75d5b-46b1-480e-96b6-6351883e3cbd 2020-02-01 23:00:31.230152 28826 2936 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 793\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.106E4\nmove_type: '1'\nsale_id: 2158\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1064\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.106E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1064 187.149.51.184 68f75d5b-46b1-480e-96b6-6351883e3cbd 2020-02-01 23:00:31.255686 28827 2159 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 793\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.329E3\ntotal: !ruby/object:BigDecimal 18:0.46E3\nstatus: 0\ndate_sale: 2020-02-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1065\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 b6e3d2bd-ad29-4015-837b-f16ae8a105c9 2020-02-01 23:03:33.993626 28828 1260 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.51.184 b6e3d2bd-ad29-4015-837b-f16ae8a105c9 2020-02-01 23:03:34.02728 28829 2159 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 f801519a-f990-4a9b-9503-e1d6663bf22f 2020-02-01 23:03:38.315044 28830 2937 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 793\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.46E3\nmove_type: '1'\nsale_id: 2159\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1065\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.46E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1065 187.149.51.184 f801519a-f990-4a9b-9503-e1d6663bf22f 2020-02-01 23:03:38.338305 28831 2160 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 793\namount: !ruby/object:BigDecimal 18:0.96642E3\ntax: !ruby/object:BigDecimal 18:0.2758E2\ndiscount: !ruby/object:BigDecimal 18:0.794E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-02-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1066\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 ca7759f8-9c56-4be3-a157-181e858845bf 2020-02-02 00:10:17.562459 28832 115 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.51.184 ca7759f8-9c56-4be3-a157-181e858845bf 2020-02-02 00:10:17.592434 28833 65 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.51.184 ca7759f8-9c56-4be3-a157-181e858845bf 2020-02-02 00:10:17.619913 28834 2160 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 0eccde28-1ad4-40c8-a599-1cfcff28c645 2020-02-02 00:10:23.527018 28835 2938 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 793\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2160\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1066\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1066 187.149.51.184 0eccde28-1ad4-40c8-a599-1cfcff28c645 2020-02-02 00:10:23.548741 28836 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-01 00:58:17.199083000 Z\n- &1 2020-02-01 22:37:16.401194000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-02 01:20:11.465416612 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938156\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938479\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938479\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\nsign_in_count:\n- 1372\n- 1373\n 2746 \N 189.186.161.153 cdd618c2-4f77-4dab-b904-5f41475d0582 2020-02-02 01:20:11.477025 28837 4 User \N \N 4 User \N update ---\nunique_session_id:\n- RPTgBPkqibf4f6pPz82d\n- 8sT_NrZsBRzxA_Sg1ybh\n 2747 \N 189.186.161.153 cdd618c2-4f77-4dab-b904-5f41475d0582 2020-02-02 01:20:11.500277 28838 2161 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 792\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.319E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-02-01\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-834\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 0795648a-9c43-4c1e-a5a9-84d933f785f2 2020-02-02 01:25:41.752897 28839 1003 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.51.184 0795648a-9c43-4c1e-a5a9-84d933f785f2 2020-02-02 01:25:41.785072 28840 2161 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 616ae6ac-154c-4263-8ae1-df9d39f30e70 2020-02-02 01:25:46.169482 28841 2939 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 792\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 2161\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-834\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-834 187.149.51.184 616ae6ac-154c-4263-8ae1-df9d39f30e70 2020-02-02 01:25:46.190959 28842 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-01 01:29:19.969715000 Z\n- &1 2020-02-01 21:54:02.921453000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-02 01:38:39.704987721 Z\nsign_in_count:\n- 112\n- 113\n 227 \N 189.186.161.153 acbca296-0e99-43c2-8092-7acebfbda53e 2020-02-02 01:38:39.711065 28843 21 User \N \N 21 User \N update ---\nunique_session_id:\n- ADozZSBzWSJztfhmdka_\n- VML1Y-rqmXzj3Zg4wqsm\n 228 \N 189.186.161.153 acbca296-0e99-43c2-8092-7acebfbda53e 2020-02-02 01:38:39.725987 28844 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-01 22:37:16.401194000 Z\n- &1 2020-02-02 01:20:11.465416000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-02 01:41:54.589124770 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938479\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945344\n mask_addr: 4294967295\nsign_in_count:\n- 1373\n- 1374\n 2748 \N 200.68.178.128 0ba62391-1cac-4f30-a33d-081dad754824 2020-02-02 01:41:54.597478 28845 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8sT_NrZsBRzxA_Sg1ybh\n- dzHb3Z6h1PsJbQnjsoag\n 2749 \N 200.68.178.128 0ba62391-1cac-4f30-a33d-081dad754824 2020-02-02 01:41:54.616505 28846 273 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 793\nquantity: !ruby/object:BigDecimal 18:0.11E4\nstatus: 1\nobservations: SUELDO KEYLA\nexpense_date: 2020-02-01\nexpense_code: PV1-E-193\n 1 Egreso por 1100.0 registrado 187.149.51.184 71cbf449-30fe-47f5-95a8-537545070f2f 2020-02-02 01:46:49.759482 28847 2940 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 793\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.11E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 273\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.51.184 71cbf449-30fe-47f5-95a8-537545070f2f 2020-02-02 01:46:49.794281 28848 809 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 793\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.254E4\namount_out: !ruby/object:BigDecimal 18:0.11E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.793E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1993E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.51.184 ffcf9d23-f762-4ad2-bdca-09146343072e 2020-02-02 01:56:22.871791 28849 793 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 ffcf9d23-f762-4ad2-bdca-09146343072e 2020-02-02 01:56:22.887339 28850 810 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 792\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.25E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1726E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1726E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.51.184 e821d754-6bb7-4e75-a1e2-1b44393f7453 2020-02-02 02:01:53.163808 28851 792 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 e821d754-6bb7-4e75-a1e2-1b44393f7453 2020-02-02 02:01:53.182664 28852 811 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 794\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1254E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1254E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.161.153 df6dd624-2b14-4d79-8838-81110461c31c 2020-02-02 03:00:37.340885 28853 794 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.161.153 df6dd624-2b14-4d79-8838-81110461c31c 2020-02-02 03:00:37.355866 28854 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-02 01:20:11.465416000 Z\n- &1 2020-02-02 01:41:54.589124000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-02 21:22:22.796426601 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945344\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945344\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3152877838\n mask_addr: 4294967295\nsign_in_count:\n- 1374\n- 1375\n 2750 \N 187.237.25.14 0bf1adbb-5ef5-4f28-96aa-f73282fba128 2020-02-02 21:22:22.827838 28855 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dzHb3Z6h1PsJbQnjsoag\n- xdEcBHNGidiDDrLFm3SU\n 2751 \N 187.237.25.14 0bf1adbb-5ef5-4f28-96aa-f73282fba128 2020-02-02 21:22:22.855315 28856 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-01 21:54:02.921453000 Z\n- &1 2020-02-02 01:38:39.704987000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-04 01:45:04.995228267 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 113\n- 114\n 229 \N 189.186.78.190 46e20ab7-48c1-4d03-a7b0-a7a342e57e0d 2020-02-04 01:45:05.037574 28857 21 User \N \N 21 User \N update ---\nunique_session_id:\n- VML1Y-rqmXzj3Zg4wqsm\n- GRM4P3tGF9X5TS36Dbje\n 230 \N 189.186.78.190 46e20ab7-48c1-4d03-a7b0-a7a342e57e0d 2020-02-04 01:45:05.068443 28858 795 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1254E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1254.0 189.186.78.190 03efbe82-2529-4095-a471-126f09cfd373 2020-02-04 01:45:46.70694 28859 2162 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 795\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-02-03\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-260\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 a15c0917-30c9-49c6-87d8-641bc6e03d1e 2020-02-04 01:46:05.625173 28860 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.64E2\n- !ruby/object:BigDecimal 18:0.63E2\n 15 \N 189.186.78.190 a15c0917-30c9-49c6-87d8-641bc6e03d1e 2020-02-04 01:46:05.66273 28861 2162 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.78.190 ae44c280-c15d-4aec-bde7-c8e8083b73e7 2020-02-04 01:46:21.762635 28927 1616 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 973\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.78.190 acb246c0-cbd2-4ce1-af0f-e124c3ceb841 2020-02-05 02:21:48.98739 28862 2941 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 795\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.49E2\nmove_type: '1'\nsale_id: 2162\ncardnumber: 9199\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-260\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-260 189.186.78.190 ae44c280-c15d-4aec-bde7-c8e8083b73e7 2020-02-04 01:46:21.790662 28863 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-02 01:41:54.589124000 Z\n- &1 2020-02-02 21:22:22.796426000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-04 01:47:38.511286184 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945344\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3152877838\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3152877838\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1375\n- 1376\n 2752 \N 189.186.78.190 a49e4690-ea3f-4a42-914d-8f2697605cef 2020-02-04 01:47:38.519764 28864 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xdEcBHNGidiDDrLFm3SU\n- mg4JFUezWZ5xa6sALTdC\n 2753 \N 189.186.78.190 a49e4690-ea3f-4a42-914d-8f2697605cef 2020-02-04 01:47:38.541887 28865 1 PosConfig \N \N 4 User \N update ---\nticket_footer:\n- "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES EN PROMOCIONES\n Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN ETIQUETA O MAL ESTADO \\r\\n*\n LOS APARTADOS TIENEN VIGENCIA 5 DÍAS "\n- "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES EN PROMOCIONES\n Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN ETIQUETA O MAL ESTADO \\r\\n*\n LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n 15 Se actualizaron los parámetros generales 189.186.78.190 2664a90e-f392-4dff-b366-66abff09c64f 2020-02-04 01:48:12.079268 28866 3 Pointsale \N \N 4 User \N update ---\nnotes:\n- "Doctor Mora #1725 \\r\\nCENTRO C.P 80060\\r\\nCULIACAN, SIN\\r\\nTEL.6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: S.BYSUO\\r\\nINSTAGRAM: S BY SUO "\n- "Doctor Mora #1725 \\r\\nCENTRO C.P 80060\\r\\nCULIACAN, SIN\\r\\nTEL.6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nINSTAGRAM: SUO.BOUTIQUE"\nfederal_taxpayer_registration:\n- UIOS851003XXX\n- UIOS8510033N1\n 3 \N 189.186.78.190 79ed44f5-89c3-4e04-8015-48ed96f6fbb4 2020-02-04 01:49:49.814086 28867 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-02 01:38:39.704987000 Z\n- &1 2020-02-04 01:45:04.995228000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-04 02:06:04.620059318 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 114\n- 115\n 231 \N 189.186.78.190 dc86efc4-838f-4877-b322-3893098c8671 2020-02-04 02:06:04.627438 28868 21 User \N \N 21 User \N update ---\nunique_session_id:\n- GRM4P3tGF9X5TS36Dbje\n- socsEhqmy64AdzsXgaoy\n 232 \N 189.186.78.190 dc86efc4-838f-4877-b322-3893098c8671 2020-02-04 02:06:04.642963 28869 812 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 795\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.49E2\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1254E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1254E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 3bebbc46-cc45-49b5-a1d1-9f291f883e57 2020-02-04 02:06:34.095622 28870 795 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 3bebbc46-cc45-49b5-a1d1-9f291f883e57 2020-02-04 02:06:34.109316 28871 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-01-31 17:07:48.751365000 Z\n- &1 2020-02-01 20:44:48.924700000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-04 17:50:13.917613488 Z\nsign_in_count:\n- 462\n- 463\n 929 \N 187.149.51.184 21dca9bf-ef67-4ad6-a05f-f883d9308319 2020-02-04 17:50:13.944213 28872 2 User \N \N 2 User \N update ---\nunique_session_id:\n- VwS9MdYVY2QzwghHw8Sy\n- RWh_wvuyENfV6-J2xVSF\n 930 \N 187.149.51.184 21dca9bf-ef67-4ad6-a05f-f883d9308319 2020-02-04 17:50:13.967177 28873 796 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.793E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 793.0 187.149.51.184 7393326d-a8b0-4fa6-b316-e59445c107ce 2020-02-04 18:54:33.470107 28874 2163 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 796\namount: !ruby/object:BigDecimal 18:0.51521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.429E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-02-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1067\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 06f6b600-78ce-426c-8076-896630807d42 2020-02-04 18:55:08.281052 28875 112 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.51.184 06f6b600-78ce-426c-8076-896630807d42 2020-02-04 18:55:08.319044 28876 2163 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 9c8d0481-fba2-47f9-9e88-0c8f0a71b7cd 2020-02-04 18:55:12.654739 28877 2942 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 796\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2163\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1067\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1067 187.149.51.184 9c8d0481-fba2-47f9-9e88-0c8f0a71b7cd 2020-02-04 18:55:12.679117 28878 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-01-31 17:01:20.458456000 Z\n- &1 2020-02-01 20:42:15.232940000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-04 19:02:40.178781642 Z\nsign_in_count:\n- 91\n- 92\n 184 \N 187.149.51.184 589f1118-14e8-4716-9d86-efe92f0d1c35 2020-02-04 19:02:40.184665 28879 27 User \N \N 27 User \N update ---\nunique_session_id:\n- f5eDnxkdFcSTb4roNwP-\n- 1hRiecZ5Q_UtP5DZkmpt\n 185 \N 187.149.51.184 589f1118-14e8-4716-9d86-efe92f0d1c35 2020-02-04 19:02:40.199986 28880 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-02 21:22:22.796426000 Z\n- &1 2020-02-04 01:47:38.511286000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-04 20:03:28.473744452 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3152877838\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1376\n- 1377\n 2754 \N 189.186.78.190 d3946b42-0172-4c25-860d-2f63a2aca99f 2020-02-04 20:03:28.485115 28881 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mg4JFUezWZ5xa6sALTdC\n- Bzhk22FCsU8GsqHEiFzb\n 2755 \N 189.186.78.190 d3946b42-0172-4c25-860d-2f63a2aca99f 2020-02-04 20:03:28.514153 28882 797 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1726E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1726.0 187.149.51.184 e3f44c02-af60-49f8-80a3-b9b4e817fe58 2020-02-04 21:14:35.537028 28996 1049 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.51.184 8ddfce99-e402-4794-a3c9-d192afa87c23 2020-02-06 20:17:22.997867 28883 2164 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 797\namount: !ruby/object:BigDecimal 18:0.54943E3\ntax: !ruby/object:BigDecimal 18:0.4957E2\ndiscount: !ruby/object:BigDecimal 18:0.2396E3\ntotal: !ruby/object:BigDecimal 18:0.3594E3\nstatus: 0\ndate_sale: 2020-02-04\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-835\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 39449406-e6d8-4d86-8ac2-b701bfbd7002 2020-02-04 21:14:55.431577 28884 714 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.51.184 39449406-e6d8-4d86-8ac2-b701bfbd7002 2020-02-04 21:14:55.462426 28885 2164 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 9e3b10b3-8033-405d-99d6-c8a62db15a83 2020-02-04 21:14:59.441522 28886 2943 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 797\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3594E3\nmove_type: '1'\nsale_id: 2164\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-835\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1406E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-835 187.149.51.184 9e3b10b3-8033-405d-99d6-c8a62db15a83 2020-02-04 21:14:59.465088 28887 2165 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 797\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3596E3\ntotal: !ruby/object:BigDecimal 18:0.5394E3\nstatus: 0\ndate_sale: 2020-02-04\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-836\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 5bab5e46-84ae-477f-9ec7-5d2681a2cfa2 2020-02-04 21:21:37.692557 28888 1547 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.51.184 5bab5e46-84ae-477f-9ec7-5d2681a2cfa2 2020-02-04 21:21:37.723497 28889 2165 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 53ff02b8-7c1c-495b-942d-59b795a7802b 2020-02-04 21:21:55.475229 28890 2944 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 797\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5394E3\nmove_type: '1'\nsale_id: 2165\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-836\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.54E3\nchange: !ruby/object:BigDecimal 18:0.6E0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-836 187.149.51.184 53ff02b8-7c1c-495b-942d-59b795a7802b 2020-02-04 21:21:55.499851 28891 2166 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 797\namount: !ruby/object:BigDecimal 18:0.62452E3\ntax: !ruby/object:BigDecimal 18:0.3448E2\ndiscount: !ruby/object:BigDecimal 18:0.409E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-02-04\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-837\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 afbab26a-422b-4991-b6cb-11518a9fabf1 2020-02-04 21:24:34.448879 28892 300 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.51.184 afbab26a-422b-4991-b6cb-11518a9fabf1 2020-02-04 21:24:34.48779 28893 2166 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 e5166f94-a025-424a-a782-2837e20b3b0b 2020-02-04 21:24:40.304541 28894 2945 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 797\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 2166\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-837\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-837 187.149.51.184 e5166f94-a025-424a-a782-2837e20b3b0b 2020-02-04 21:24:40.329294 28895 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-04 01:45:04.995228000 Z\n- &1 2020-02-04 02:06:04.620059000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-04 23:18:55.409768027 Z\nsign_in_count:\n- 115\n- 116\n 233 \N 189.186.78.190 3b2e75a4-783d-4a61-a15a-d061290b6422 2020-02-04 23:18:55.436391 28896 21 User \N \N 21 User \N update ---\nunique_session_id:\n- socsEhqmy64AdzsXgaoy\n- tQ1dY1rNEzPBz_kwtGCs\n 234 \N 189.186.78.190 3b2e75a4-783d-4a61-a15a-d061290b6422 2020-02-04 23:18:55.457414 28897 798 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1254E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1254.0 189.186.78.190 8cdae19f-c26d-41f0-948c-dcdc109e51a6 2020-02-04 23:19:15.026097 28898 2946 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 798\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 2072\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-248 189.186.78.190 b91172c7-e2e5-4859-b1f6-27eff11489e4 2020-02-04 23:19:47.512631 28899 2072 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.78.190 691212ff-f45b-4bd2-a232-81d6d61306df 2020-02-04 23:20:05.656745 28900 2167 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 798\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2020-02-04\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-261\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 abaef041-fcaf-431d-8607-8a5d44919113 2020-02-04 23:22:18.990441 28901 1519 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.78.190 abaef041-fcaf-431d-8607-8a5d44919113 2020-02-04 23:22:19.025098 28902 2167 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.78.190 e7289e2f-473c-4598-b156-d257b08e0255 2020-02-04 23:23:09.837852 28903 2947 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 798\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.489E3\nmove_type: '1'\nsale_id: 2167\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-261\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-261 189.186.78.190 e7289e2f-473c-4598-b156-d257b08e0255 2020-02-04 23:23:09.864913 28904 284 Customer \N \N 21 User \N create ---\nnick_name: LAURA RUIZ\nphone: "(667) 223-2379"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LAURA RUIZ fue registrado. 189.186.78.190 48550b70-0d8a-4b20-b518-5e4b09a82320 2020-02-04 23:24:26.605003 28905 2168 Sale \N \N 21 User \N create ---\ncustomer_id: 284\nuser_id: 21\nopen_cash_register_id: 798\namount: !ruby/object:BigDecimal 18:0.1549E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1549E4\nstatus: 0\ndate_sale: 2020-02-04\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-262\nexpiration_date: 2020-03-10\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 2c375444-d342-4c4d-b5d8-c3f4980f3833 2020-02-04 23:24:49.58827 28906 1553 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.78.190 2c375444-d342-4c4d-b5d8-c3f4980f3833 2020-02-04 23:24:49.617566 28907 2948 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 798\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2168\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-262\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-262 189.186.78.190 67d3b4d4-3122-499d-9ebe-94b879f7395b 2020-02-04 23:24:57.591786 28908 2168 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.78.190 f717aab5-a0ff-4805-886d-b7a1157cf36b 2020-02-04 23:24:59.838274 28909 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-04 01:47:38.511286000 Z\n- &1 2020-02-04 20:03:28.473744000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-04 23:51:27.118207056 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3152877835\n mask_addr: 4294967295\nsign_in_count:\n- 1377\n- 1378\n 2756 \N 187.237.25.11 b07e4dc4-9dc9-43a9-a232-5c3fb0f14051 2020-02-04 23:51:27.125666 28910 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Bzhk22FCsU8GsqHEiFzb\n- HdoiywwintBMPT13TxGk\n 2757 \N 187.237.25.11 b07e4dc4-9dc9-43a9-a232-5c3fb0f14051 2020-02-04 23:51:27.145642 28911 2169 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 796\namount: !ruby/object:BigDecimal 18:0.88521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.799E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-02-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1068\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 39acab5e-2008-4393-8b73-ff31d6cec4fb 2020-02-05 01:25:52.787678 28912 221 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.51.184 39acab5e-2008-4393-8b73-ff31d6cec4fb 2020-02-05 01:25:52.815378 28913 2169 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 040a68b0-e83a-4b0e-8ed8-5deb5868680d 2020-02-05 01:26:00.292694 28914 2949 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 796\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2169\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1068\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1068 187.149.51.184 040a68b0-e83a-4b0e-8ed8-5deb5868680d 2020-02-05 01:26:00.31157 28915 2170 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 796\namount: !ruby/object:BigDecimal 18:0.294282E4\ntax: !ruby/object:BigDecimal 18:0.5518E2\ndiscount: !ruby/object:BigDecimal 18:0.1838E4\ntotal: !ruby/object:BigDecimal 18:0.116E4\nstatus: 0\ndate_sale: 2020-02-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1069\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 abc658f5-a5b5-430b-b0dd-ecefcfdbc5cb 2020-02-05 01:45:28.458856 28916 205 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.51.184 abc658f5-a5b5-430b-b0dd-ecefcfdbc5cb 2020-02-05 01:45:28.489135 28917 164 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.51.184 abc658f5-a5b5-430b-b0dd-ecefcfdbc5cb 2020-02-05 01:45:28.524435 28918 747 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.51.184 abc658f5-a5b5-430b-b0dd-ecefcfdbc5cb 2020-02-05 01:45:28.561196 28919 2170 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 4682c620-dfe1-499c-9548-f880e644af4d 2020-02-05 01:45:33.085347 28920 2950 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 796\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.116E4\nmove_type: '1'\nsale_id: 2170\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1069\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.116E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1069 187.149.51.184 4682c620-dfe1-499c-9548-f880e644af4d 2020-02-05 01:45:33.109137 28921 813 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 797\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.11488E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1874E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2874E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.51.184 0a956c64-04ac-48be-b5b6-99a76fd41b73 2020-02-05 02:00:16.405279 28922 797 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 0a956c64-04ac-48be-b5b6-99a76fd41b73 2020-02-05 02:00:16.426034 28923 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-04 20:03:28.473744000 Z\n- &1 2020-02-04 23:51:27.118207000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-05 02:16:11.995699571 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3152877835\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3152877835\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1378\n- 1379\n 2758 \N 189.186.78.190 80b33978-f381-4bbd-b8fa-0e6a46d42b2a 2020-02-05 02:16:12.00437 28924 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HdoiywwintBMPT13TxGk\n- VDxY3L9HrP1YLj4_aN4-\n 2759 \N 189.186.78.190 80b33978-f381-4bbd-b8fa-0e6a46d42b2a 2020-02-05 02:16:12.025538 28925 973 Product \N \N 4 User \N create ---\nsku: BOL-973\nname: BLU-0027\ndescription: PANTIBLISA TERCIPELO ROSA\nprice_base: !ruby/object:BigDecimal 18:0.2245E3\nprice_sale: !ruby/object:BigDecimal 18:0.449E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-973 fue creado. 189.186.78.190 acb246c0-cbd2-4ce1-af0f-e124c3ceb841 2020-02-05 02:21:48.893685 28926 973 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000973'\n 2 \N 189.186.78.190 acb246c0-cbd2-4ce1-af0f-e124c3ceb841 2020-02-05 02:21:48.945743 28928 226 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-95\namount: !ruby/object:BigDecimal 18:0.11225E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.11225E4\nobservations: ''\npurchase_date: 2020-02-04\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-95 por $ 1122.5 MXN creada. 189.186.78.190 7b18400f-be80-4004-b0aa-3ada03f56acd 2020-02-05 02:22:00.229203 28929 1616 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.78.190 7b18400f-be80-4004-b0aa-3ada03f56acd 2020-02-05 02:22:00.261923 28930 2171 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 796\namount: !ruby/object:BigDecimal 18:0.98421E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.798E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-02-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1070\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 d926272e-1bcb-42fe-b657-f60f26d2819e 2020-02-05 02:22:50.085499 28931 1561 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.51.184 d926272e-1bcb-42fe-b657-f60f26d2819e 2020-02-05 02:22:50.130846 28932 1616 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.51.184 d926272e-1bcb-42fe-b657-f60f26d2819e 2020-02-05 02:22:50.166979 28933 2171 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 0d09f0d0-b125-4646-b25c-c31fc6dfedb6 2020-02-05 02:22:54.370466 28934 2951 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 796\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2171\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1070\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1070 187.149.51.184 0d09f0d0-b125-4646-b25c-c31fc6dfedb6 2020-02-05 02:22:54.395061 28935 814 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 796\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.156E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.17E4\ncash_fund: !ruby/object:BigDecimal 18:0.653E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2353E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.51.184 e0e7c6ba-0a7f-4352-a4a2-129642cc2cd6 2020-02-05 02:23:57.851705 28936 796 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 e0e7c6ba-0a7f-4352-a4a2-129642cc2cd6 2020-02-05 02:23:57.866268 28937 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-04 23:51:27.118207000 Z\n- &1 2020-02-05 02:16:11.995699000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-05 02:35:24.045905504 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3152877835\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3152930672\n mask_addr: 4294967295\nsign_in_count:\n- 1379\n- 1380\n 2760 \N 187.237.231.112 73058ac4-42ba-4c1a-a750-022766e43acc 2020-02-05 02:35:24.054338 28938 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VDxY3L9HrP1YLj4_aN4-\n- TsEARF64hkcGp3Ppw_Rd\n 2761 \N 187.237.231.112 73058ac4-42ba-4c1a-a750-022766e43acc 2020-02-05 02:35:24.07354 28939 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-04 02:06:04.620059000 Z\n- &1 2020-02-04 23:18:55.409768000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-05 02:44:39.743659011 Z\nsign_in_count:\n- 116\n- 117\n 235 \N 189.186.78.190 0edcb027-8630-4ea5-97e3-094db35db6f3 2020-02-05 02:44:39.750328 28940 21 User \N \N 21 User \N update ---\nunique_session_id:\n- tQ1dY1rNEzPBz_kwtGCs\n- 2CREzEb327bBN3o9nLyR\n 236 \N 189.186.78.190 0edcb027-8630-4ea5-97e3-094db35db6f3 2020-02-05 02:44:39.765563 28941 815 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 798\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.2288E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.1542E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3542E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 b41c77e1-51bf-49bc-b835-a4eb82291df1 2020-02-05 02:46:18.699766 28942 798 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 b41c77e1-51bf-49bc-b835-a4eb82291df1 2020-02-05 02:46:18.714801 28943 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-01 20:42:15.232940000 Z\n- &1 2020-02-04 19:02:40.178781000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-05 17:01:26.847182991 Z\nsign_in_count:\n- 92\n- 93\n 186 \N 187.149.51.184 03ee448a-03ac-4726-b68f-d219856b4cca 2020-02-05 17:01:26.876529 28944 27 User \N \N 27 User \N update ---\nunique_session_id:\n- 1hRiecZ5Q_UtP5DZkmpt\n- qaHnpKXd9bXkViR68b_Q\n 187 \N 187.149.51.184 03ee448a-03ac-4726-b68f-d219856b4cca 2020-02-05 17:01:26.898986 28945 799 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1874E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1874.0 187.149.51.184 1ce1b64b-ee1c-48a4-8f05-6554e9fe3dfa 2020-02-05 17:03:00.65889 28946 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-01 20:44:48.924700000 Z\n- &1 2020-02-04 17:50:13.917613000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-05 19:32:24.134684049 Z\nsign_in_count:\n- 463\n- 464\n 931 \N 187.149.51.184 18b0fce0-7016-463a-9207-d24b0abaab00 2020-02-05 19:32:24.163587 28947 2 User \N \N 2 User \N update ---\nunique_session_id:\n- RWh_wvuyENfV6-J2xVSF\n- Y7eL47Js2BTzFp-febyx\n 932 \N 187.149.51.184 18b0fce0-7016-463a-9207-d24b0abaab00 2020-02-05 19:32:24.186515 28948 800 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.653E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 653.0 187.149.51.184 92e614c6-b398-48f9-a471-985d6b46b6bd 2020-02-05 19:33:29.791087 28949 2172 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 800\namount: !ruby/object:BigDecimal 18:0.769E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.309E3\ntotal: !ruby/object:BigDecimal 18:0.46E3\nstatus: 0\ndate_sale: 2020-02-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1071\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 9d1aceac-8ebb-424f-911d-27b446093578 2020-02-05 19:37:58.083216 28950 1055 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.51.184 9d1aceac-8ebb-424f-911d-27b446093578 2020-02-05 19:37:58.126772 28951 2172 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 141fc429-3ab9-46d7-834f-f263edf06e78 2020-02-05 19:38:10.820847 28997 2177 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 4717b265-2009-4f54-8fe8-9154cf886d6d 2020-02-06 20:17:48.264988 28952 2952 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 800\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.46E3\nmove_type: '1'\nsale_id: 2172\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1071\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.46E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1071 187.149.51.184 141fc429-3ab9-46d7-834f-f263edf06e78 2020-02-05 19:38:10.847933 28953 2173 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 800\namount: !ruby/object:BigDecimal 18:0.48521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-02-05\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-1072\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 d5555978-f691-48ca-9f2d-f186efb60767 2020-02-05 20:36:48.522824 28954 82 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.51.184 d5555978-f691-48ca-9f2d-f186efb60767 2020-02-05 20:36:48.574293 28955 2173 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 0273e67a-0aa2-47ac-b6da-6efa7371afa5 2020-02-05 20:36:53.572669 28956 2953 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 800\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 2173\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1072\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.1E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1072 187.149.51.184 0273e67a-0aa2-47ac-b6da-6efa7371afa5 2020-02-05 20:36:53.610638 28957 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-04 23:18:55.409768000 Z\n- &1 2020-02-05 02:44:39.743659000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-05 20:47:15.264972383 Z\nsign_in_count:\n- 117\n- 118\n 237 \N 189.186.78.190 20cc9c78-38a1-4037-ab45-d77481a49967 2020-02-05 20:47:15.296427 28958 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 2CREzEb327bBN3o9nLyR\n- _JAG-tsB9q2hZRDTaM4L\n 238 \N 189.186.78.190 20cc9c78-38a1-4037-ab45-d77481a49967 2020-02-05 20:47:15.319037 28959 801 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1542E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1542.0 189.186.78.190 a6f8fda3-8248-409f-9418-b474ac7ea2ce 2020-02-05 21:59:28.730118 28960 285 Customer \N \N 21 User \N create ---\nnick_name: JANETH\nphone: "(667) 174-6248"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JANETH fue registrado. 189.186.78.190 0d3bbb20-4d92-4eef-9c9e-d4cf10281a9e 2020-02-05 22:01:03.051957 28961 2174 Sale \N \N 21 User \N create ---\ncustomer_id: 285\nuser_id: 21\nopen_cash_register_id: 801\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-02-05\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-263\nexpiration_date: 2020-03-11\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 8e3dde6b-31de-411b-b04c-c6da3660049d 2020-02-05 22:01:20.560943 28962 1035 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 21 \N 189.186.78.190 8e3dde6b-31de-411b-b04c-c6da3660049d 2020-02-05 22:01:20.594526 28963 2954 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 801\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2174\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-263\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-263 189.186.78.190 04a7b223-b162-4a52-9df1-69acd85f94c1 2020-02-05 22:01:26.694109 28964 2174 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.78.190 598ddc08-6cf7-4cc1-8ad4-d1bb486614d7 2020-02-05 22:01:27.892531 28965 2175 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 799\namount: !ruby/object:BigDecimal 18:0.91624E3\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2020-02-05\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-838\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 1013041a-4be8-4cd4-9f16-da2c30bb6969 2020-02-05 22:07:36.322874 28966 425 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.51.184 1013041a-4be8-4cd4-9f16-da2c30bb6969 2020-02-05 22:07:36.355452 28967 2175 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 fe009f1e-ed17-45e0-a5b2-bb7959679331 2020-02-05 22:07:41.5275 28968 2955 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 799\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 2175\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-838\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-838 187.149.51.184 fe009f1e-ed17-45e0-a5b2-bb7959679331 2020-02-05 22:07:41.549451 28969 816 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 800\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.56E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.3E3\ncash_fund: !ruby/object:BigDecimal 18:0.913E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1213E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.51.184 f152f7c0-0109-4b01-8e7a-6b3119e574cd 2020-02-06 02:04:24.694253 28970 800 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 f152f7c0-0109-4b01-8e7a-6b3119e574cd 2020-02-06 02:04:24.713593 28971 817 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 799\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.6E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.2474E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2474E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.51.184 3a1e1c3c-4c0c-40ea-8004-716890d4c684 2020-02-06 02:05:40.575311 28972 799 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 3a1e1c3c-4c0c-40ea-8004-716890d4c684 2020-02-06 02:05:40.589475 29020 117 Purchase \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.78.190 4f169312-9ec5-46bc-9387-19f029f6b3e9 2020-02-07 02:42:22.073096 29113 1021 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 12 \N 189.186.45.214 2176b1d0-6c92-4ded-ad72-0b581f302796 2020-02-09 00:34:49.876683 28973 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-05 02:16:11.995699000 Z\n- &1 2020-02-05 02:35:24.045905000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-06 02:23:50.343161277 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3152930672\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3152930672\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3152930569\n mask_addr: 4294967295\nsign_in_count:\n- 1380\n- 1381\n 2762 \N 187.237.231.9 b40b4fa5-5913-4936-a4e5-9a0fb52d5661 2020-02-06 02:23:50.352664 28974 4 User \N \N 4 User \N update ---\nunique_session_id:\n- TsEARF64hkcGp3Ppw_Rd\n- g-jqhm_eU_9N_M85F3zL\n 2763 \N 187.237.231.9 b40b4fa5-5913-4936-a4e5-9a0fb52d5661 2020-02-06 02:23:50.377177 28975 274 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 801\nquantity: !ruby/object:BigDecimal 18:0.859E3\nstatus: 1\nobservations: 'PAGO DE LUZ '\nexpense_date: 2020-02-05\nexpense_code: PV3-E-25\n 1 Egreso por 859.0 registrado 189.186.78.190 b4215e73-ef2c-427d-a276-0431a4e9412f 2020-02-06 02:51:21.631179 28976 116 Purchase \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.78.190 b4215e73-ef2c-427d-a276-0431a4e9412f 2020-02-06 02:51:21.6477 28977 2956 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 801\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.859E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: 116\nexpense_id: 274\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.78.190 b4215e73-ef2c-427d-a276-0431a4e9412f 2020-02-06 02:51:21.67094 28978 818 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 801\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.4E3\namount_out: !ruby/object:BigDecimal 18:0.859E3\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1083E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1083E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 ce6ac0aa-82dd-4206-b46a-f377eac17b5f 2020-02-06 02:54:24.710879 28979 801 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 ce6ac0aa-82dd-4206-b46a-f377eac17b5f 2020-02-06 02:54:24.724731 28980 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-05 02:35:24.045905000 Z\n- &1 2020-02-06 02:23:50.343161000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-06 18:19:12.274769962 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3152930672\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3152930569\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3152930569\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1381\n- 1382\n 2764 \N 189.186.78.190 850c5674-ea33-494b-b700-38019cf6c3ba 2020-02-06 18:19:12.31073 28981 4 User \N \N 4 User \N update ---\nunique_session_id:\n- g-jqhm_eU_9N_M85F3zL\n- oznzroG5yxhX7J-CPzny\n 2765 \N 189.186.78.190 850c5674-ea33-494b-b700-38019cf6c3ba 2020-02-06 18:19:12.340634 28982 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-04 17:50:13.917613000 Z\n- &1 2020-02-05 19:32:24.134684000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-06 19:29:52.274139075 Z\nsign_in_count:\n- 464\n- 465\n 933 \N 187.149.51.184 2605f6d8-f1e7-419e-bfa1-2c16ac6de044 2020-02-06 19:29:52.280535 28983 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Y7eL47Js2BTzFp-febyx\n- BEZw22-hsa-sBTvb6exx\n 934 \N 187.149.51.184 2605f6d8-f1e7-419e-bfa1-2c16ac6de044 2020-02-06 19:29:52.296138 28984 802 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.913E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 913.0 187.149.51.184 2d9d5c76-7d0f-473d-b93a-d0e117641a5c 2020-02-06 19:31:09.821963 28985 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-04 19:02:40.178781000 Z\n- &1 2020-02-05 17:01:26.847182000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-06 20:00:27.451632409 Z\nsign_in_count:\n- 93\n- 94\n 188 \N 187.149.51.184 8f3d5317-cc4c-445a-b41e-495c84923645 2020-02-06 20:00:27.480376 28986 27 User \N \N 27 User \N update ---\nunique_session_id:\n- qaHnpKXd9bXkViR68b_Q\n- tsVvYUTkovGrB4PSpPxr\n 189 \N 187.149.51.184 8f3d5317-cc4c-445a-b41e-495c84923645 2020-02-06 20:00:27.503808 28987 803 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.2474E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 2474.0 187.149.51.184 6e65a703-b9f8-434e-93f7-2459dd975c81 2020-02-06 20:03:21.120052 28988 2176 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 803\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.4796E3\ntotal: !ruby/object:BigDecimal 18:0.7194E3\nstatus: 0\ndate_sale: 2020-02-06\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-839\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 75c39d26-22cd-4b3c-bc2c-f6ce48c78234 2020-02-06 20:08:42.517494 28989 1412 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 14 \N 187.149.51.184 75c39d26-22cd-4b3c-bc2c-f6ce48c78234 2020-02-06 20:08:42.550067 28990 2176 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 71fced7a-fced-40dd-8dfd-a7e0f01f9719 2020-02-06 20:08:57.62482 28991 2957 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 803\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7194E3\nmove_type: '1'\nsale_id: 2176\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-839\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.72E3\nchange: !ruby/object:BigDecimal 18:0.6E0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-839 187.149.51.184 71fced7a-fced-40dd-8dfd-a7e0f01f9719 2020-02-06 20:08:57.663604 28992 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-05 02:44:39.743659000 Z\n- &1 2020-02-05 20:47:15.264972000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-06 20:10:50.126281358 Z\nsign_in_count:\n- 118\n- 119\n 239 \N 189.186.78.190 62ed4ecf-d032-4da5-872c-58fc82373ff9 2020-02-06 20:10:50.134629 28993 21 User \N \N 21 User \N update ---\nunique_session_id:\n- _JAG-tsB9q2hZRDTaM4L\n- fQ_KK9YeYe_ZB_tk47CE\n 240 \N 189.186.78.190 62ed4ecf-d032-4da5-872c-58fc82373ff9 2020-02-06 20:10:50.156399 28994 804 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1083E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1083.0 189.186.78.190 4fdef90e-3764-4c0f-a2fb-e353d15affa3 2020-02-06 20:12:12.646491 28995 2177 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 803\namount: !ruby/object:BigDecimal 18:0.1392E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.5568E3\ntotal: !ruby/object:BigDecimal 18:0.8352E3\nstatus: 0\ndate_sale: 2020-02-06\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-840\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 8ddfce99-e402-4794-a3c9-d192afa87c23 2020-02-06 20:17:22.957885 28998 2958 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 803\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8352E3\nmove_type: '1'\nsale_id: 2177\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-840\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.85E3\nchange: !ruby/object:BigDecimal 18:0.148E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-840 187.149.51.184 4717b265-2009-4f54-8fe8-9154cf886d6d 2020-02-06 20:17:48.292751 28999 2178 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 802\namount: !ruby/object:BigDecimal 18:0.58621E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.5E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-02-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1073\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 d3fbe30e-5b37-4f31-9c17-580bfd1e7d97 2020-02-06 20:26:46.039828 29000 763 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.51.184 d3fbe30e-5b37-4f31-9c17-580bfd1e7d97 2020-02-06 20:26:46.070836 29001 2178 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 8a001834-647d-4fc3-b432-e9dc6e10f772 2020-02-06 20:26:49.463462 29002 2959 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 802\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2178\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1073\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1073 187.149.51.184 8a001834-647d-4fc3-b432-e9dc6e10f772 2020-02-06 20:26:49.486579 29003 2179 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 804\namount: !ruby/object:BigDecimal 18:0.38521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.299E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-02-06\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-264\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 574e171d-5263-48e0-8652-50d2f9fb2cc4 2020-02-06 22:51:52.988099 29004 1491 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.78.190 574e171d-5263-48e0-8652-50d2f9fb2cc4 2020-02-06 22:51:53.034948 29005 2179 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.78.190 e93a498f-ea54-4636-9733-5a1337f8febd 2020-02-06 22:52:02.857005 29006 2960 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 804\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2179\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-264\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-264 189.186.78.190 e93a498f-ea54-4636-9733-5a1337f8febd 2020-02-06 22:52:02.882235 29007 2180 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 802\namount: !ruby/object:BigDecimal 18:0.1629E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.659E3\ntotal: !ruby/object:BigDecimal 18:0.97E3\nstatus: 0\ndate_sale: 2020-02-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1074\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.184 bcc25a52-437c-4cd4-8979-50b94fa8d44a 2020-02-07 01:59:02.71284 29008 1248 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.51.184 bcc25a52-437c-4cd4-8979-50b94fa8d44a 2020-02-07 01:59:02.750452 29009 2180 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.184 aaed6235-4cdd-47ac-9a5e-6d8076fd5f41 2020-02-07 01:59:11.546868 29010 2961 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 802\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.97E3\nmove_type: '1'\nsale_id: 2180\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1074\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.97E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1074 187.149.51.184 aaed6235-4cdd-47ac-9a5e-6d8076fd5f41 2020-02-07 01:59:11.572215 29011 819 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 802\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.107E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.983E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1983E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.51.184 9ffced5b-4031-4af0-93ec-7977b37c9307 2020-02-07 01:59:52.907268 29012 802 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 9ffced5b-4031-4af0-93ec-7977b37c9307 2020-02-07 01:59:52.921885 29013 820 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 803\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.15546E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.24E4\ncash_fund: !ruby/object:BigDecimal 18:0.1628E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4028E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.51.184 0224fd09-1958-4f2e-b57e-65f672bd7d26 2020-02-07 02:12:56.817048 29014 803 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.184 0224fd09-1958-4f2e-b57e-65f672bd7d26 2020-02-07 02:12:56.831916 29015 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-06 02:23:50.343161000 Z\n- &1 2020-02-06 18:19:12.274769000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-07 02:30:22.847353581 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3152930569\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1382\n- 1383\n 2766 \N 189.186.78.190 13c92e4f-9d72-4d09-97e7-d53ec28f0a35 2020-02-07 02:30:22.856004 29016 4 User \N \N 4 User \N update ---\nunique_session_id:\n- oznzroG5yxhX7J-CPzny\n- v4STs466fuE1xsbuzhV-\n 2767 \N 189.186.78.190 13c92e4f-9d72-4d09-97e7-d53ec28f0a35 2020-02-07 02:30:22.875418 29017 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-05 20:47:15.264972000 Z\n- &1 2020-02-06 20:10:50.126281000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-07 02:41:40.828934262 Z\nsign_in_count:\n- 119\n- 120\n 241 \N 189.186.78.190 d79c72a0-7eff-4d63-a66f-31105dc9f610 2020-02-07 02:41:40.835267 29018 21 User \N \N 21 User \N update ---\nunique_session_id:\n- fQ_KK9YeYe_ZB_tk47CE\n- h6vuXsvYEMwmQ6x-YBmX\n 242 \N 189.186.78.190 d79c72a0-7eff-4d63-a66f-31105dc9f610 2020-02-07 02:41:40.853931 29019 275 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 804\nquantity: !ruby/object:BigDecimal 18:0.2E3\nstatus: 1\nobservations: PAGO DE SILLONES\nexpense_date: 2020-02-06\nexpense_code: PV3-E-26\n 1 Egreso por 200.0 registrado 189.186.78.190 4f169312-9ec5-46bc-9387-19f029f6b3e9 2020-02-07 02:42:22.056718 29021 2962 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 804\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: 117\nexpense_id: 275\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.78.190 4f169312-9ec5-46bc-9387-19f029f6b3e9 2020-02-07 02:42:22.093982 29022 276 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 804\nquantity: !ruby/object:BigDecimal 18:0.4E3\nstatus: 1\nobservations: SILLON\nexpense_date: 2020-02-06\nexpense_code: PV3-E-27\n 1 Egreso por 400.0 registrado 189.186.78.190 82cd0f96-558e-403d-8f40-14878fc821c5 2020-02-07 02:45:59.808267 29023 118 Purchase \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.78.190 82cd0f96-558e-403d-8f40-14878fc821c5 2020-02-07 02:45:59.824008 29024 2963 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 804\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: 118\nexpense_id: 276\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.78.190 82cd0f96-558e-403d-8f40-14878fc821c5 2020-02-07 02:45:59.844497 29025 821 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 804\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1E3\namount_out: !ruby/object:BigDecimal 18:0.6E3\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.583E3\nphysical_cash: !ruby/object:BigDecimal 18:0.583E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 e5202d3d-a7dc-4b7e-b3d5-8158a9c482c1 2020-02-07 02:56:14.219173 29026 804 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 e5202d3d-a7dc-4b7e-b3d5-8158a9c482c1 2020-02-07 02:56:14.232603 29027 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-05 17:01:26.847182000 Z\n- &1 2020-02-06 20:00:27.451632000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-07 17:00:21.481446072 Z\nsign_in_count:\n- 94\n- 95\n 190 \N 187.149.51.184 7c6b8614-8663-4bf9-8a9a-b13791572efb 2020-02-07 17:00:21.513538 29028 27 User \N \N 27 User \N update ---\nunique_session_id:\n- tsVvYUTkovGrB4PSpPxr\n- As-JpsygpctyGob3XaDs\n 191 \N 187.149.51.184 7c6b8614-8663-4bf9-8a9a-b13791572efb 2020-02-07 17:00:21.536563 29029 805 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1628E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1628.0 187.149.51.184 50c52302-df22-4716-95e2-b3c4c13667af 2020-02-07 17:00:36.475982 29030 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-05 19:32:24.134684000 Z\n- &1 2020-02-06 19:29:52.274139000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-07 20:02:43.870880836 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\nsign_in_count:\n- 465\n- 466\n 935 \N 189.186.45.214 19b542c8-8739-4b13-b5b4-7a0b8cf08ab2 2020-02-07 20:02:43.900719 29031 2 User \N \N 2 User \N update ---\nunique_session_id:\n- BEZw22-hsa-sBTvb6exx\n- Gs9PmMswqYbs8nXMB3Ax\n 936 \N 189.186.45.214 19b542c8-8739-4b13-b5b4-7a0b8cf08ab2 2020-02-07 20:02:43.925197 29032 806 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.983E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 983.0 189.186.45.214 b2f33a3d-db2c-4713-acd7-b1959d8bc6af 2020-02-07 20:18:50.675657 29033 2181 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 805\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2396E3\ntotal: !ruby/object:BigDecimal 18:0.3594E3\nstatus: 0\ndate_sale: 2020-02-07\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-841\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 16b43481-83c1-4483-a6a3-56509fd9a3fd 2020-02-07 21:15:43.071083 29034 1253 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 189.186.45.214 16b43481-83c1-4483-a6a3-56509fd9a3fd 2020-02-07 21:15:43.120948 29035 2181 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 07fa3839-a6f4-4e84-9f8c-ddbf1cf4b560 2020-02-07 21:15:56.3737 29036 2964 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 805\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3594E3\nmove_type: '1'\nsale_id: 2181\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-841\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1406E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-841 189.186.45.214 07fa3839-a6f4-4e84-9f8c-ddbf1cf4b560 2020-02-07 21:15:56.403057 29037 2182 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 806\namount: !ruby/object:BigDecimal 18:0.94141E3\ntax: !ruby/object:BigDecimal 18:0.2759E2\ndiscount: !ruby/object:BigDecimal 18:0.769E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-02-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1075\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 62a659e2-4a46-45e6-a167-b9ebf0a37f46 2020-02-07 21:53:19.153883 29038 761 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.45.214 62a659e2-4a46-45e6-a167-b9ebf0a37f46 2020-02-07 21:53:19.190453 29039 2182 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 8c68c08e-b28c-461a-acf2-d24e8a350b73 2020-02-07 21:53:23.643947 29040 2965 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 806\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2182\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1075\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1075 189.186.45.214 8c68c08e-b28c-461a-acf2-d24e8a350b73 2020-02-07 21:53:23.684076 29041 2183 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 806\namount: !ruby/object:BigDecimal 18:0.162042E4\ntax: !ruby/object:BigDecimal 18:0.2758E2\ndiscount: !ruby/object:BigDecimal 18:0.1448E4\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-02-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1076\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 f42dbc67-7050-4718-9ec1-dc17b565eabf 2020-02-07 23:06:01.038493 29042 223 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.45.214 f42dbc67-7050-4718-9ec1-dc17b565eabf 2020-02-07 23:06:01.069167 29043 203 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 4 \N 189.186.45.214 f42dbc67-7050-4718-9ec1-dc17b565eabf 2020-02-07 23:06:01.097457 29045 2966 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 806\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2183\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1076\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1076 189.186.45.214 80866101-9a89-42bb-bd14-b2030ace6792 2020-02-07 23:06:05.007646 29046 277 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 806\nquantity: !ruby/object:BigDecimal 18:0.25E2\nstatus: 1\nobservations: garrafon de agua\nexpense_date: 2020-02-07\nexpense_code: PV1-E-194\n 1 Egreso por 25.0 registrado 189.186.45.214 e7801c85-a273-4294-81ae-bbaf38df8a60 2020-02-08 00:07:04.964331 29047 2967 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 806\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 277\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.45.214 e7801c85-a273-4294-81ae-bbaf38df8a60 2020-02-08 00:07:05.003908 29048 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-06 20:10:50.126281000 Z\n- &1 2020-02-07 02:41:40.828934000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-08 00:22:18.377031326 Z\nsign_in_count:\n- 120\n- 121\n 243 \N 189.186.78.190 76be255f-d852-47c2-816c-7866c411076e 2020-02-08 00:22:18.385824 29049 21 User \N \N 21 User \N update ---\nunique_session_id:\n- h6vuXsvYEMwmQ6x-YBmX\n- X61ANMG8ySvbFhdnhQ7V\n 244 \N 189.186.78.190 76be255f-d852-47c2-816c-7866c411076e 2020-02-08 00:22:18.403958 29050 807 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.583E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 583.0 189.186.78.190 5bb24a42-39a6-451a-9f45-34962e7b12da 2020-02-08 00:22:46.959669 29051 2184 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 807\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-02-07\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-265\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 c335e6d4-a2e0-48e1-9b17-0c5141ff0d07 2020-02-08 00:32:19.777196 29052 1485 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.78.190 c335e6d4-a2e0-48e1-9b17-0c5141ff0d07 2020-02-08 00:32:19.937868 29053 2184 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-265 cancelada. 189.186.78.190 d3c230b1-fb3d-4a32-8dae-0a8117d31890 2020-02-08 00:32:49.032856 29054 1485 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.78.190 d3c230b1-fb3d-4a32-8dae-0a8117d31890 2020-02-08 00:32:49.063007 29055 2185 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 807\namount: !ruby/object:BigDecimal 18:0.948E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.948E3\nstatus: 0\ndate_sale: 2020-02-07\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-266\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 349ef0f4-6a4e-43ce-bd1c-c9923a529604 2020-02-08 00:33:12.072453 29056 1485 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.78.190 349ef0f4-6a4e-43ce-bd1c-c9923a529604 2020-02-08 00:33:12.098593 29057 876 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 7 \N 189.186.78.190 349ef0f4-6a4e-43ce-bd1c-c9923a529604 2020-02-08 00:33:12.121591 29058 2185 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.78.190 eb3c2a95-7fb7-4508-9d6a-4201a2e19c76 2020-02-08 00:33:26.58599 29059 2968 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 807\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.948E3\nmove_type: '1'\nsale_id: 2185\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-266\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.52E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-266 189.186.78.190 eb3c2a95-7fb7-4508-9d6a-4201a2e19c76 2020-02-08 00:33:26.615806 29060 822 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 805\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.3594E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1987E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1987E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.45.214 142251c7-79c7-43a7-8a54-f85224091794 2020-02-08 02:01:08.53478 29061 805 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.214 142251c7-79c7-43a7-8a54-f85224091794 2020-02-08 02:01:08.551094 29062 823 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 806\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4E3\namount_out: !ruby/object:BigDecimal 18:0.25E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1358E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1358E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.45.214 adae95cf-940e-4cf7-8771-97cef3bc8fbd 2020-02-08 02:12:54.45135 29063 806 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.214 adae95cf-940e-4cf7-8771-97cef3bc8fbd 2020-02-08 02:12:54.465888 29064 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-06 18:19:12.274769000 Z\n- &1 2020-02-07 02:30:22.847353000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-08 02:32:35.276927545 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359937902\n mask_addr: 4294967295\nsign_in_count:\n- 1383\n- 1384\n 2768 \N 200.68.149.110 223bcf3a-3327-453f-abea-6584cafc46b3 2020-02-08 02:32:35.287567 29065 4 User \N \N 4 User \N update ---\nunique_session_id:\n- v4STs466fuE1xsbuzhV-\n- jozeHjdAmze_Buw6MRy7\n 2769 \N 200.68.149.110 223bcf3a-3327-453f-abea-6584cafc46b3 2020-02-08 02:32:35.320285 29066 824 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 807\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.948E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.1031E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1531E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 e9824785-15b1-4d04-a066-f6121d92effd 2020-02-08 02:52:10.551533 29067 807 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 e9824785-15b1-4d04-a066-f6121d92effd 2020-02-08 02:52:10.565267 29068 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-07 02:41:40.828934000 Z\n- &1 2020-02-08 00:22:18.377031000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-08 17:46:25.041536826 Z\nsign_in_count:\n- 121\n- 122\n 245 \N 189.186.78.190 8949ee2a-52b3-4dfe-b786-fd7d31c93cb7 2020-02-08 17:46:25.074889 29069 21 User \N \N 21 User \N update ---\nunique_session_id:\n- X61ANMG8ySvbFhdnhQ7V\n- V1GsCX1Lx3HxnjxkqevS\n 246 \N 189.186.78.190 8949ee2a-52b3-4dfe-b786-fd7d31c93cb7 2020-02-08 17:46:25.100376 29070 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-06 19:29:52.274139000 Z\n- &1 2020-02-07 20:02:43.870880000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-08 18:01:46.490784303 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\nsign_in_count:\n- 466\n- 467\n 937 \N 189.186.45.214 5b6c3695-fe4a-48f2-af51-7c377c87e53b 2020-02-08 18:01:46.497628 29071 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Gs9PmMswqYbs8nXMB3Ax\n- 9gazsLVUKDWcFVDBfrCy\n 938 \N 189.186.45.214 5b6c3695-fe4a-48f2-af51-7c377c87e53b 2020-02-08 18:01:46.518386 29072 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-06 20:00:27.451632000 Z\n- &1 2020-02-07 17:00:21.481446000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-08 20:31:44.611408658 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\nsign_in_count:\n- 95\n- 96\n 192 \N 189.186.45.214 c3ae23e3-ea6d-428a-84f4-dcc05a8b4a2a 2020-02-08 20:31:44.618964 29073 27 User \N \N 27 User \N update ---\nunique_session_id:\n- As-JpsygpctyGob3XaDs\n- ucCojRFhW_kKCcnExcsz\n 193 \N 189.186.45.214 c3ae23e3-ea6d-428a-84f4-dcc05a8b4a2a 2020-02-08 20:31:44.636993 29074 808 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1987E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1987.0 189.186.45.214 381c872c-09cb-4ec5-a52f-af0dc3fce810 2020-02-08 20:31:57.20851 29075 809 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1031E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1031.0 189.186.78.190 dfa1b2bb-ced8-47c9-9339-c2f9edbad601 2020-02-08 20:44:35.933956 29076 2186 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 809\namount: !ruby/object:BigDecimal 18:0.229E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.229E3\nstatus: 0\ndate_sale: 2020-02-08\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-267\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 3fca8b2e-9aac-4e16-83b0-52aa4dfa1ec0 2020-02-08 20:50:35.356139 29077 1171 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.78.190 3fca8b2e-9aac-4e16-83b0-52aa4dfa1ec0 2020-02-08 20:50:35.390996 29078 2186 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.78.190 9534c9f3-fec7-4bb5-b45d-e6ccde1d69a8 2020-02-08 20:50:59.847279 29079 2969 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 809\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.229E3\nmove_type: '1'\nsale_id: 2186\ncardnumber: 9589\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-267\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-267 189.186.78.190 9534c9f3-fec7-4bb5-b45d-e6ccde1d69a8 2020-02-08 20:50:59.87833 29080 286 Customer \N \N 21 User \N create ---\nnick_name: MARIA ENGRACIA GANDARILLA\nphone: "(667) 716-3327"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIA ENGRACIA GANDARILLA fue registrado. 189.186.78.190 92f3591c-ef84-41f1-9eff-09178df82262 2020-02-08 20:52:24.872878 29081 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-08 00:22:18.377031000 Z\n- &1 2020-02-08 17:46:25.041536000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-08 21:04:49.355261138 Z\nsign_in_count:\n- 122\n- 123\n 247 \N 189.186.78.190 6c992b5f-a94b-4747-b367-3f93a1c4cb31 2020-02-08 21:04:49.363741 29082 21 User \N \N 21 User \N update ---\nunique_session_id:\n- V1GsCX1Lx3HxnjxkqevS\n- Uv4yzoZ48i_zFHGaEHwr\n 248 \N 189.186.78.190 6c992b5f-a94b-4747-b367-3f93a1c4cb31 2020-02-08 21:04:49.37958 29083 2187 Sale \N \N 21 User \N create ---\ncustomer_id: 286\nuser_id: 21\nopen_cash_register_id: 809\namount: !ruby/object:BigDecimal 18:0.348E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.348E3\nstatus: 0\ndate_sale: 2020-02-08\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-268\nexpiration_date: 2020-03-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 3e1fb5f6-2433-4ceb-948a-4ceb021e1279 2020-02-08 21:05:39.172872 29084 1167 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.78.190 3e1fb5f6-2433-4ceb-948a-4ceb021e1279 2020-02-08 21:05:39.205827 29085 1173 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.78.190 3e1fb5f6-2433-4ceb-948a-4ceb021e1279 2020-02-08 21:05:39.244635 29086 2970 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 809\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 2187\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-268\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-268 189.186.78.190 84a3960a-1fb0-48f0-a6ff-51a14f87c824 2020-02-08 21:05:48.767817 29087 2970 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 809\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 2187\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-268\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.78.190 e033a7ca-8a7c-4f17-824e-1fa7c1595a1a 2020-02-08 21:05:55.098948 29088 2971 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 809\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 2187\ncardnumber: 989\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-268\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-268 189.186.78.190 01156f0f-6c34-44df-968a-41c990c1dfca 2020-02-08 21:06:19.673796 29114 1218 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.45.214 44665619-fb7a-434e-bd82-4c3a0c21280e 2020-02-09 00:35:02.360008 29327 642 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.45.214 b2d44ba9-8959-4f92-887a-655c462bd3bc 2020-02-13 19:53:24.365721 29089 2971 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 809\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 2187\ncardnumber: 989\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-268\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.78.190 44d91755-cce5-4299-af12-957c501febf3 2020-02-08 21:06:28.353166 29090 2972 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 809\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 2187\ncardnumber: 9589\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-268\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-268 189.186.78.190 a6fb38b6-eee6-4f1e-8f69-f53a7071ca59 2020-02-08 21:06:40.226262 29091 2187 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.78.190 98436687-dbb2-461b-ac65-e4f5e101f168 2020-02-08 21:06:43.099564 29092 2188 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 808\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2396E3\ntotal: !ruby/object:BigDecimal 18:0.3594E3\nstatus: 0\ndate_sale: 2020-02-08\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-842\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 9a2ab904-d1f6-4e11-b775-6f84c5c7cc5a 2020-02-08 21:17:07.145143 29093 1218 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.45.214 9a2ab904-d1f6-4e11-b775-6f84c5c7cc5a 2020-02-08 21:17:07.17871 29094 2188 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 d5efebd2-0bae-4a38-a7d6-6e6e4b543c34 2020-02-08 21:17:27.289086 29095 2973 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 808\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3594E3\nmove_type: '1'\nsale_id: 2188\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-842\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.36E3\nchange: !ruby/object:BigDecimal 18:0.6E0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-842 189.186.45.214 d5efebd2-0bae-4a38-a7d6-6e6e4b543c34 2020-02-08 21:17:27.312892 29096 810 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1358E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1358.0 189.186.45.214 e52c1088-8a2b-479e-9dce-3200d0b5fe85 2020-02-08 21:33:43.257517 29097 2974 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 809\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.349E3\nmove_type: '1'\nsale_id: 2135\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.349E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-257 189.186.78.190 4d6f2d74-37dc-4c0c-921c-bdfd85fd7bbd 2020-02-08 21:51:06.579421 29098 2135 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.78.190 583cfe36-9f10-4962-8c7b-5d5843b289e6 2020-02-08 21:51:12.072552 29099 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-07 02:30:22.847353000 Z\n- &1 2020-02-08 02:32:35.276927000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-08 22:18:50.109185195 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359937902\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359937902\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097509\n mask_addr: 4294967295\nsign_in_count:\n- 1384\n- 1385\n 2770 \N 189.186.54.165 bb773d98-b403-4160-a833-7928e73b8f52 2020-02-08 22:18:50.117704 29100 4 User \N \N 4 User \N update ---\nunique_session_id:\n- jozeHjdAmze_Buw6MRy7\n- V3xxS5x8JzhKPn5iQkAv\n 2771 \N 189.186.54.165 bb773d98-b403-4160-a833-7928e73b8f52 2020-02-08 22:18:50.137777 29101 2189 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 808\namount: !ruby/object:BigDecimal 18:0.1848E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.649E3\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-02-08\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-843\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 e2b3457b-6623-441d-968c-9d658cb72a9d 2020-02-09 00:26:35.645501 29102 1412 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 15 \N 189.186.45.214 e2b3457b-6623-441d-968c-9d658cb72a9d 2020-02-09 00:26:35.678488 29103 1449 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.45.214 e2b3457b-6623-441d-968c-9d658cb72a9d 2020-02-09 00:26:35.718363 29104 2189 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 efd4be25-3235-4b0e-b041-44f684eb728e 2020-02-09 00:26:46.797431 29105 2975 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 808\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 2189\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-843\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-843 189.186.45.214 efd4be25-3235-4b0e-b041-44f684eb728e 2020-02-09 00:26:46.831631 29106 317 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 189.186.45.214 04e9fdad-4feb-40b9-85a9-a2826195492b 2020-02-09 00:34:44.23382 29107 1000 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.45.214 9751997c-d2bd-432b-81c4-1d4ac887a5b5 2020-02-09 00:34:44.994185 29108 598 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.45.214 2922c13d-b25b-4ff6-96de-e56a51fd7919 2020-02-09 00:34:45.440956 29109 318 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 189.186.45.214 1a38674a-f4ad-4c14-a190-26774839b1a2 2020-02-09 00:34:45.807528 29110 717 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.45.214 ce13668d-07db-413c-853c-601014b3b1d2 2020-02-09 00:34:46.277353 29111 1003 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.7E1\n 6 \N 189.186.45.214 bb8dd102-40f1-4019-ac9e-c187a94dd190 2020-02-09 00:34:46.628432 29112 292 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.45.214 6f9751a7-05f8-477b-be46-9506f742cdc0 2020-02-09 00:34:48.107696 29115 463 Transfer \N \N 27 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-02-08\nuser_id: 27\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.45.214 90f5a14a-a9f2-41ef-a03b-2a396678019d 2020-02-09 00:35:04.473518 29116 463 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-08\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.45.214 6eb53169-fc94-4f75-a101-e588e6f460db 2020-02-09 00:41:53.685258 29117 1617 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 661\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.45.214 6eb53169-fc94-4f75-a101-e588e6f460db 2020-02-09 00:41:53.711805 29118 2190 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 810\namount: !ruby/object:BigDecimal 18:0.1424E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.599E3\ntotal: !ruby/object:BigDecimal 18:0.825E3\nstatus: 0\ndate_sale: 2020-02-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1077\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 baf15fb7-8e27-4884-8474-78fcf73f002b 2020-02-09 00:59:46.69519 29119 1098 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.45.214 baf15fb7-8e27-4884-8474-78fcf73f002b 2020-02-09 00:59:46.728138 29120 1617 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.45.214 baf15fb7-8e27-4884-8474-78fcf73f002b 2020-02-09 00:59:46.758152 29121 2190 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 994af7bb-5d2c-4473-a15b-32eef0ed21f9 2020-02-09 00:59:51.050352 29122 2976 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 810\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.825E3\nmove_type: '1'\nsale_id: 2190\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1077\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.825E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1077 189.186.45.214 994af7bb-5d2c-4473-a15b-32eef0ed21f9 2020-02-09 00:59:51.074466 29123 2191 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 810\namount: !ruby/object:BigDecimal 18:0.222042E4\ntax: !ruby/object:BigDecimal 18:0.2758E2\ndiscount: !ruby/object:BigDecimal 18:0.1948E4\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2020-02-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1078\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 e5b8caa3-f4fe-40c4-9abf-5c9e30081e2c 2020-02-09 01:30:49.982389 29124 203 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 5 \N 189.186.45.214 e5b8caa3-f4fe-40c4-9abf-5c9e30081e2c 2020-02-09 01:30:50.032965 29125 763 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.45.214 e5b8caa3-f4fe-40c4-9abf-5c9e30081e2c 2020-02-09 01:30:50.087668 29126 1068 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.45.214 e5b8caa3-f4fe-40c4-9abf-5c9e30081e2c 2020-02-09 01:30:50.124184 29127 2191 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 e04574a1-b338-4247-be15-162a40f5e347 2020-02-09 01:30:56.516056 29128 2977 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 810\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 2191\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1078\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1078 189.186.45.214 e04574a1-b338-4247-be15-162a40f5e347 2020-02-09 01:30:56.545673 29129 278 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 810\nquantity: !ruby/object:BigDecimal 18:0.1205E4\nstatus: 1\nobservations: sueldo Rocio\nexpense_date: 2020-02-08\nexpense_code: PV1-E-195\n 1 Egreso por 1205.0 registrado 189.186.45.214 1b658e2c-aa57-4c55-9bea-49b635a62998 2020-02-09 01:39:58.125482 29130 2978 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 810\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1205E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 278\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.45.214 1b658e2c-aa57-4c55-9bea-49b635a62998 2020-02-09 01:39:58.1568 29131 279 Expense \N \N 27 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 808\nquantity: !ruby/object:BigDecimal 18:0.1012E4\nstatus: 1\nobservations: SUELDO KEYLA\nexpense_date: 2020-02-08\nexpense_code: PV2-E-57\n 1 Egreso por 1012.0 registrado 189.186.45.214 bb4b43b9-b293-4457-a848-678deabdd41c 2020-02-09 01:53:20.463761 29132 2979 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 808\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1012E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 279\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.45.214 bb4b43b9-b293-4457-a848-678deabdd41c 2020-02-09 01:53:20.491022 29133 2192 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 808\namount: !ruby/object:BigDecimal 18:0.419E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.169E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-02-08\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-844\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 39f7c1f6-138f-449b-956c-92230454a617 2020-02-09 02:06:40.45434 29134 1021 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 13 \N 189.186.45.214 39f7c1f6-138f-449b-956c-92230454a617 2020-02-09 02:06:40.489118 29135 2192 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 f0c859a4-abb4-4aa7-9b0e-f5e01bd42748 2020-02-09 02:06:45.116989 29136 2980 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 808\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 2192\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-844\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-844 189.186.45.214 f0c859a4-abb4-4aa7-9b0e-f5e01bd42748 2020-02-09 02:06:45.14794 29274 809 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 10 \N 189.186.45.214 f6e2c337-2e97-45c4-ae5e-cfb967922e67 2020-02-13 18:20:15.335802 29137 2193 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 808\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2596E3\ntotal: !ruby/object:BigDecimal 18:0.3894E3\nstatus: 0\ndate_sale: 2020-02-08\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-845\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 b51328c5-6fcf-4028-853f-010d0e2bf9df 2020-02-09 02:10:28.490041 29138 1449 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.45.214 b51328c5-6fcf-4028-853f-010d0e2bf9df 2020-02-09 02:10:28.525666 29139 2193 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 ba7b9fe6-8ef2-4f4c-b57a-097775afee36 2020-02-09 02:10:58.437489 29140 2981 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 808\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3894E3\nmove_type: '1'\nsale_id: 2193\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-845\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.106E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-845 189.186.45.214 ba7b9fe6-8ef2-4f4c-b57a-097775afee36 2020-02-09 02:10:58.472158 29141 825 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 810\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1125E4\namount_out: !ruby/object:BigDecimal 18:0.1205E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.2E3\ncash_fund: !ruby/object:BigDecimal 18:0.1078E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1278E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.45.214 defb38d2-c215-477d-964a-ddb5abf197ca 2020-02-09 02:12:34.019529 29142 810 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.214 defb38d2-c215-477d-964a-ddb5abf197ca 2020-02-09 02:12:34.036203 29143 826 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 808\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.21978E4\namount_out: !ruby/object:BigDecimal 18:0.1012E4\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.1172E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3172E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.45.214 76e5703e-5e64-43c2-9b0b-f48dcfe8bd3f 2020-02-09 02:12:51.241878 29144 808 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.214 76e5703e-5e64-43c2-9b0b-f48dcfe8bd3f 2020-02-09 02:12:51.256523 29145 827 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 809\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.678E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.138E4\nphysical_cash: !ruby/object:BigDecimal 18:0.138E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 83a6d501-3a5c-4c17-8cb9-6c83f600e9ec 2020-02-09 03:02:55.668391 29146 809 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 83a6d501-3a5c-4c17-8cb9-6c83f600e9ec 2020-02-09 03:02:55.688206 29147 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-07 17:00:21.481446000 Z\n- &1 2020-02-08 20:31:44.611408000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-09 17:04:40.533055538 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\nsign_in_count:\n- 96\n- 97\n 194 \N 189.186.45.214 bb45eadc-8fdc-49d7-8403-74d6af6e9ee4 2020-02-09 17:04:40.57036 29148 27 User \N \N 27 User \N update ---\nunique_session_id:\n- ucCojRFhW_kKCcnExcsz\n- SZgoTXbX8y6m2gMPGhFs\n 195 \N 189.186.45.214 bb45eadc-8fdc-49d7-8403-74d6af6e9ee4 2020-02-09 17:04:40.601742 29149 811 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1172E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1172.0 189.186.45.214 810370fa-31b6-44a8-bbab-600098cdd0fd 2020-02-09 17:04:55.732627 29150 828 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 811\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1172E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1172E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.45.214 e134ac13-398b-4481-ad8b-05f3f8c67b3f 2020-02-09 21:59:08.184259 29151 811 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.214 e134ac13-398b-4481-ad8b-05f3f8c67b3f 2020-02-09 21:59:08.211226 29152 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-08 02:32:35.276927000 Z\n- &1 2020-02-08 22:18:50.109185000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-10 00:33:36.186252592 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359937902\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097509\n mask_addr: 4294967295\nsign_in_count:\n- 1385\n- 1386\n 2772 \N 189.186.54.165 e277eaa0-06d6-4f66-b3bc-9261e120b25b 2020-02-10 00:33:36.196144 29153 4 User \N \N 4 User \N update ---\nunique_session_id:\n- V3xxS5x8JzhKPn5iQkAv\n- Bub1k58VR6pJsUCcSABf\n 2773 \N 189.186.54.165 e277eaa0-06d6-4f66-b3bc-9261e120b25b 2020-02-10 00:33:36.217708 29154 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-08 20:31:44.611408000 Z\n- &1 2020-02-09 17:04:40.533055000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-10 17:04:37.908216250 Z\nsign_in_count:\n- 97\n- 98\n 196 \N 189.186.45.214 3171d9d4-77eb-4186-9f0d-01669c4688fb 2020-02-10 17:04:37.941274 29155 27 User \N \N 27 User \N update ---\nunique_session_id:\n- SZgoTXbX8y6m2gMPGhFs\n- G6eEP2x2nHUYgzfFCXoi\n 197 \N 189.186.45.214 3171d9d4-77eb-4186-9f0d-01669c4688fb 2020-02-10 17:04:37.962576 29156 812 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1172E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1172.0 189.186.45.214 a24df3f5-615f-410e-83ed-69b3ac63ad96 2020-02-10 17:04:51.313114 29157 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-07 20:02:43.870880000 Z\n- &1 2020-02-08 18:01:46.490784000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-10 17:34:31.012183589 Z\nsign_in_count:\n- 467\n- 468\n 939 \N 189.186.45.214 8125bbdc-3ea2-4f39-b624-a60b47f9de33 2020-02-10 17:34:31.020188 29158 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 9gazsLVUKDWcFVDBfrCy\n- d21c6MvZJB8Mx9inS7rg\n 940 \N 189.186.45.214 8125bbdc-3ea2-4f39-b624-a60b47f9de33 2020-02-10 17:34:31.037641 29159 813 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1078E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1078.0 189.186.45.214 d65a9c95-afb5-4469-9079-b99b9b6cb114 2020-02-10 17:34:45.342878 29275 2200 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 f20dda94-8197-4d58-b473-5f7444a25e20 2020-02-13 18:20:23.242147 29352 21 User \N \N 21 User \N update ---\nunique_session_id:\n- ChqTsNd1y9_XhDEk-ywu\n- W24GRA9aE3vvNoc7wo9i\n 268 \N 189.186.78.190 a5a11e93-220c-4456-80a0-58b5bf1ea22d 2020-02-13 21:02:57.587932 29160 2194 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 813\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.259E3\ntotal: !ruby/object:BigDecimal 18:0.39E3\nstatus: 0\ndate_sale: 2020-02-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1079\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 c3e67226-7435-4a01-aa4c-e1d3d824b194 2020-02-10 17:37:56.712053 29161 701 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.45.214 c3e67226-7435-4a01-aa4c-e1d3d824b194 2020-02-10 17:37:56.753271 29162 2194 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 3506f8a7-8446-4f45-8a88-9b8805da4065 2020-02-10 17:38:01.028348 29163 2982 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 813\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.39E3\nmove_type: '1'\nsale_id: 2194\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1079\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.11E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1079 189.186.45.214 3506f8a7-8446-4f45-8a88-9b8805da4065 2020-02-10 17:38:01.056757 29164 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-08 17:46:25.041536000 Z\n- &1 2020-02-08 21:04:49.355261000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-10 19:20:49.430884934 Z\nsign_in_count:\n- 123\n- 124\n 249 \N 189.186.78.190 ba0050da-b2eb-4dc2-b41b-215bfdc3ad9c 2020-02-10 19:20:49.438148 29165 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Uv4yzoZ48i_zFHGaEHwr\n- THzw-ahMYUWgetS4Dhhn\n 250 \N 189.186.78.190 ba0050da-b2eb-4dc2-b41b-215bfdc3ad9c 2020-02-10 19:20:49.457863 29166 814 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.138E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1380.0 189.186.78.190 83f46565-8032-476b-b213-e07f9005ef57 2020-02-10 19:21:01.726653 29167 2983 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 814\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1349E4\nmove_type: '1'\nsale_id: 2168\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-262 189.186.78.190 8d3999e9-5e7e-46a0-a602-e6958e4e59e6 2020-02-10 19:21:41.039021 29168 2168 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.78.190 c2a9c7f8-25dc-4984-ace8-9f271de20e0b 2020-02-10 19:21:50.763184 29169 2984 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 813\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 2022\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-985 189.186.45.214 53e87c04-c13f-4520-ab53-a28672d31246 2020-02-10 19:29:46.814782 29170 2022 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.45.214 379579c0-ebbe-44c6-9425-63765f532582 2020-02-10 19:29:48.007732 29171 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-08 22:18:50.109185000 Z\n- &1 2020-02-10 00:33:36.186252000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-10 19:54:09.325593985 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097509\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1386\n- 1387\n 2774 \N 189.186.78.190 6305a430-2f9f-4891-aafd-28a6d6292974 2020-02-10 19:54:09.332934 29172 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Bub1k58VR6pJsUCcSABf\n- 5MDa7DyWsZDH5D729vsA\n 2775 \N 189.186.78.190 6305a430-2f9f-4891-aafd-28a6d6292974 2020-02-10 19:54:09.353517 29173 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-08 21:04:49.355261000 Z\n- &1 2020-02-10 19:20:49.430884000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-10 20:05:33.139514848 Z\nsign_in_count:\n- 124\n- 125\n 251 \N 189.186.78.190 fc147f58-d3f5-4217-9563-8234a14c9e20 2020-02-10 20:05:33.14591 29174 21 User \N \N 21 User \N update ---\nunique_session_id:\n- THzw-ahMYUWgetS4Dhhn\n- Ygx7sx52GjHLWyaUpVcN\n 252 \N 189.186.78.190 fc147f58-d3f5-4217-9563-8234a14c9e20 2020-02-10 20:05:33.162803 29175 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-10 00:33:36.186252000 Z\n- &1 2020-02-10 19:54:09.325593000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-10 20:56:15.793434511 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097509\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945623\n mask_addr: 4294967295\nsign_in_count:\n- 1387\n- 1388\n 2776 \N 200.68.179.151 b36acd70-96e9-4d38-8b42-8f3e45f9cad3 2020-02-10 20:56:15.817612 29176 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5MDa7DyWsZDH5D729vsA\n- apX_GSU_Ey6EhFDi2K1-\n 2777 \N 200.68.179.151 b36acd70-96e9-4d38-8b42-8f3e45f9cad3 2020-02-10 20:56:15.845086 29177 2195 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 814\namount: !ruby/object:BigDecimal 18:0.579E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.579E3\nstatus: 0\ndate_sale: 2020-02-10\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-269\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 7e35a9a4-2eab-4a28-be41-a379450f235e 2020-02-11 00:58:19.684352 29178 952 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.78.190 7e35a9a4-2eab-4a28-be41-a379450f235e 2020-02-11 00:58:19.717531 29179 2195 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.78.190 7d7b41d3-712f-4eb8-a3ea-23709623337a 2020-02-11 00:59:26.268701 29180 2985 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 814\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.579E3\nmove_type: '1'\nsale_id: 2195\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-269\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.579E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-269 189.186.78.190 7d7b41d3-712f-4eb8-a3ea-23709623337a 2020-02-11 00:59:26.293861 29181 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-08 18:01:46.490784000 Z\n- &1 2020-02-10 17:34:31.012183000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-11 02:00:03.502887531 Z\nsign_in_count:\n- 468\n- 469\n 941 \N 189.186.45.214 3ca5b5b0-6090-4e68-af5b-b3a2964832ae 2020-02-11 02:00:03.538173 29182 2 User \N \N 2 User \N update ---\nunique_session_id:\n- d21c6MvZJB8Mx9inS7rg\n- RyyWwvygtyBdTYxMpscs\n 942 \N 189.186.45.214 3ca5b5b0-6090-4e68-af5b-b3a2964832ae 2020-02-11 02:00:03.559814 29183 829 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 812\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1172E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1172E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.45.214 15d45b67-1149-4031-a081-54173d363240 2020-02-11 02:00:39.325051 29184 812 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.214 15d45b67-1149-4031-a081-54173d363240 2020-02-11 02:00:39.340637 29185 830 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 813\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1089E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.967E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2167E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.45.214 aac08a26-7f38-4283-bca6-9a8608722ae2 2020-02-11 02:04:23.701882 29186 813 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.214 aac08a26-7f38-4283-bca6-9a8608722ae2 2020-02-11 02:04:23.716999 29187 280 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 814\nquantity: !ruby/object:BigDecimal 18:0.3E2\nstatus: 1\nobservations: PARA ACOMPLETAR RENTA\nexpense_date: 2020-02-10\nexpense_code: PV3-E-28\n 1 Egreso por 30.0 registrado 189.186.78.190 94b68005-81ee-4cf3-84e4-8f6cce63135d 2020-02-11 03:08:17.660567 29188 2986 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 814\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 280\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.78.190 94b68005-81ee-4cf3-84e4-8f6cce63135d 2020-02-11 03:08:17.684956 29189 831 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 814\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1928E4\namount_out: !ruby/object:BigDecimal 18:0.3E2\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.1278E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3278E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 3e197cfb-3169-4c7e-bfae-4e829b170671 2020-02-11 03:10:49.535401 29190 814 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 3e197cfb-3169-4c7e-bfae-4e829b170671 2020-02-11 03:10:49.553496 29191 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-09 17:04:40.533055000 Z\n- &1 2020-02-10 17:04:37.908216000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-11 17:03:51.977567880 Z\nsign_in_count:\n- 98\n- 99\n 198 \N 189.186.45.214 85947ab5-c764-4627-876c-bb70893a6403 2020-02-11 17:03:52.010182 29192 27 User \N \N 27 User \N update ---\nunique_session_id:\n- G6eEP2x2nHUYgzfFCXoi\n- 1ejSKmo7x6RoT2-dhUJb\n 199 \N 189.186.45.214 85947ab5-c764-4627-876c-bb70893a6403 2020-02-11 17:03:52.03906 29193 815 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1172E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1172.0 189.186.45.214 2987e8eb-d530-422a-b332-3e96be3fa5d3 2020-02-11 17:04:58.625472 29194 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-10 19:20:49.430884000 Z\n- &1 2020-02-10 20:05:33.139514000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-11 17:25:33.803290060 Z\nsign_in_count:\n- 125\n- 126\n 253 \N 189.186.78.190 94af73c2-1ed0-4180-91a6-43e72055988d 2020-02-11 17:25:33.80947 29195 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Ygx7sx52GjHLWyaUpVcN\n- yr_AnM4zsxakzsNoJxky\n 254 \N 189.186.78.190 94af73c2-1ed0-4180-91a6-43e72055988d 2020-02-11 17:25:33.825572 29196 816 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1278E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1278.0 189.186.78.190 ea1fc28b-6b5a-4c64-9c77-5486b313b94c 2020-02-11 17:27:30.862704 29197 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-10 19:54:09.325593000 Z\n- &1 2020-02-10 20:56:15.793434000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-11 17:44:47.604266100 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945623\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945623\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112175\n mask_addr: 4294967295\nsign_in_count:\n- 1388\n- 1389\n 2778 \N 187.149.30.239 06361edf-14c2-429d-9fb0-f727a7c49724 2020-02-11 17:44:47.63539 29198 4 User \N \N 4 User \N update ---\nunique_session_id:\n- apX_GSU_Ey6EhFDi2K1-\n- 2LEaUEbpEAd6QE4hpbkn\n 2779 \N 187.149.30.239 06361edf-14c2-429d-9fb0-f727a7c49724 2020-02-11 17:44:47.663922 29199 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-10 20:56:15.793434000 Z\n- &1 2020-02-11 17:44:47.604266000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-11 17:51:49.503998673 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945623\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112175\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112175\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1389\n- 1390\n 2780 \N 189.186.78.190 8c223341-2135-40f1-953c-fcba53219f5c 2020-02-11 17:51:49.512121 29200 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2LEaUEbpEAd6QE4hpbkn\n- 1m7GeV5RFuXCa-cDMc92\n 2781 \N 189.186.78.190 8c223341-2135-40f1-953c-fcba53219f5c 2020-02-11 17:51:49.533708 29201 678 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.78.190 76eb2cd6-5c24-48e0-8147-d405d5f3f913 2020-02-11 17:52:36.520449 29202 678 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.78.190 22b6adab-43a1-407b-b580-cf413e5dca9a 2020-02-11 17:53:52.435769 29203 464 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-02-11\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.78.190 8c419341-50ef-4f6e-9884-7598ec7d7043 2020-02-11 17:53:54.040891 29204 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-11 17:44:47.604266000 Z\n- &1 2020-02-11 17:51:49.503998000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-11 20:59:04.003218276 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112175\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112175\n mask_addr: 4294967295\nsign_in_count:\n- 1390\n- 1391\n 2782 \N 187.149.30.239 616bbb53-02b6-4a52-80ed-07bb796c9a94 2020-02-11 20:59:04.012098 29205 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1m7GeV5RFuXCa-cDMc92\n- SH2gc6swEzspBy8avLDE\n 2783 \N 187.149.30.239 616bbb53-02b6-4a52-80ed-07bb796c9a94 2020-02-11 20:59:04.032181 29206 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-11 17:51:49.503998000 Z\n- &1 2020-02-11 20:59:04.003218000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-11 21:01:04.904100536 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112175\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112175\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1391\n- 1392\n 2784 \N 189.186.78.190 a439a413-197a-478a-b602-9bf8919e8069 2020-02-11 21:01:04.911936 29207 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SH2gc6swEzspBy8avLDE\n- Hm2QJ_Z2YwhAdz8FhPC4\n 2785 \N 189.186.78.190 a439a413-197a-478a-b602-9bf8919e8069 2020-02-11 21:01:04.931188 29208 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-10 20:05:33.139514000 Z\n- &1 2020-02-11 17:25:33.803290000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-11 21:01:38.534408058 Z\nsign_in_count:\n- 126\n- 127\n 255 \N 189.186.78.190 e4b684e2-cdf1-46e5-8a3e-afd3fb0dfeec 2020-02-11 21:01:38.540449 29209 21 User \N \N 21 User \N update ---\nunique_session_id:\n- yr_AnM4zsxakzsNoJxky\n- MnFRQs6pLXGt15BNzQni\n 256 \N 189.186.78.190 e4b684e2-cdf1-46e5-8a3e-afd3fb0dfeec 2020-02-11 21:01:38.555442 29210 2987 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 816\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 1778\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-185 189.186.78.190 fafb010d-41b6-4fa0-aa57-eb1b76aad316 2020-02-11 21:42:38.493718 29211 1778 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.78.190 1b53144d-f316-4047-bad7-d49acb98faf1 2020-02-11 21:42:47.962166 29212 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-10 17:34:31.012183000 Z\n- &1 2020-02-11 02:00:03.502887000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-11 22:36:49.407191101 Z\nsign_in_count:\n- 469\n- 470\n 943 \N 189.186.45.214 74de7d44-e44c-4911-9248-6f1dd29fea3b 2020-02-11 22:36:49.414677 29213 2 User \N \N 2 User \N update ---\nunique_session_id:\n- RyyWwvygtyBdTYxMpscs\n- ydgMsFMfYmf1pzh_SMzA\n 944 \N 189.186.45.214 74de7d44-e44c-4911-9248-6f1dd29fea3b 2020-02-11 22:36:49.433486 29214 817 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.967E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 967.0 189.186.45.214 2b581858-8195-4970-973b-72c2e53c4d19 2020-02-11 22:52:25.313981 29215 2988 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 817\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 2121\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1041 189.186.45.214 b4a33654-21f4-4aa4-95c3-85b9ca0cbdcd 2020-02-11 22:55:05.423007 29216 2121 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.45.214 853de916-587f-4f24-939b-17e51515c67c 2020-02-11 22:55:06.749747 29217 1305 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.45.214 27a99c8a-5c6e-4fd5-a84f-fc39a020755f 2020-02-11 22:55:43.180617 29218 1024 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.45.214 27a99c8a-5c6e-4fd5-a84f-fc39a020755f 2020-02-11 22:55:43.234848 29219 2196 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 817\namount: !ruby/object:BigDecimal 18:0.87141E3\ntax: !ruby/object:BigDecimal 18:0.2759E2\ndiscount: !ruby/object:BigDecimal 18:0.699E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-02-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1080\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 f5c00ef3-4a44-4bf4-b2e4-f02d6ccfb0fa 2020-02-12 01:01:07.997981 29220 174 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.45.214 f5c00ef3-4a44-4bf4-b2e4-f02d6ccfb0fa 2020-02-12 01:01:08.033625 29221 2196 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 f0f904fb-dcbe-4701-a9dc-6f8f56b75e14 2020-02-12 01:01:12.314628 29222 2989 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 817\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2196\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1080\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1080 189.186.45.214 f0f904fb-dcbe-4701-a9dc-6f8f56b75e14 2020-02-12 01:01:12.337292 29223 832 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 815\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1172E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1172E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.45.214 27f0cb39-5c5b-4dbe-86a7-44a93035f901 2020-02-12 02:01:07.446765 29224 815 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.214 27f0cb39-5c5b-4dbe-86a7-44a93035f901 2020-02-12 02:01:07.467703 29225 833 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 817\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1299E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1266E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2266E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.45.214 8cb5f6c6-e04e-4d1f-89f8-7838e4918b61 2020-02-12 02:03:00.190235 29226 817 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.214 8cb5f6c6-e04e-4d1f-89f8-7838e4918b61 2020-02-12 02:03:00.208719 29227 834 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 816\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.6E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.1378E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1878E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 2fe0e6c1-4e56-4969-93b5-cf314297b8c2 2020-02-12 03:01:43.945616 29228 816 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 2fe0e6c1-4e56-4969-93b5-cf314297b8c2 2020-02-12 03:01:43.96246 29297 466 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-02-13\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.45.214 631fc894-0dc7-4e31-903d-4a487f7e1fae 2020-02-13 19:00:57.637692 29229 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-11 20:59:04.003218000 Z\n- &1 2020-02-11 21:01:04.904100000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-12 03:05:21.535264938 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112175\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112175\n mask_addr: 4294967295\nsign_in_count:\n- 1392\n- 1393\n 2786 \N 187.149.30.239 8dfc1958-ebfa-4bd7-ad26-a1519291213e 2020-02-12 03:05:21.545514 29230 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Hm2QJ_Z2YwhAdz8FhPC4\n- dBUCN1g6njz88bEeu7Hw\n 2787 \N 187.149.30.239 8dfc1958-ebfa-4bd7-ad26-a1519291213e 2020-02-12 03:05:21.567874 29231 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-10 17:04:37.908216000 Z\n- &1 2020-02-11 17:03:51.977567000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-12 17:03:04.143917732 Z\nsign_in_count:\n- 99\n- 100\n 200 \N 189.186.45.214 e0265ba8-f469-417d-bd0c-18adae2cff56 2020-02-12 17:03:04.18293 29232 27 User \N \N 27 User \N update ---\nunique_session_id:\n- 1ejSKmo7x6RoT2-dhUJb\n- me3yzv4deq-sCj-1umf-\n 201 \N 189.186.45.214 e0265ba8-f469-417d-bd0c-18adae2cff56 2020-02-12 17:03:04.216538 29233 818 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1172E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1172.0 189.186.45.214 2d11d5d4-9cc0-4c85-a896-a694062b837e 2020-02-12 17:06:42.854989 29234 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-11 02:00:03.502887000 Z\n- &1 2020-02-11 22:36:49.407191000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-12 17:51:03.168528077 Z\nsign_in_count:\n- 470\n- 471\n 945 \N 189.186.45.214 96197b75-c67b-4897-9ab2-92067b52e508 2020-02-12 17:51:03.200295 29235 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ydgMsFMfYmf1pzh_SMzA\n- AN7NH2AFKphLhJsX7sfs\n 946 \N 189.186.45.214 96197b75-c67b-4897-9ab2-92067b52e508 2020-02-12 17:51:03.225613 29236 819 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1266E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1266.0 189.186.45.214 1c0b7dea-cdb3-4578-9224-64b6a8b23fe0 2020-02-12 17:51:28.204948 29237 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-11 21:01:04.904100000 Z\n- &1 2020-02-12 03:05:21.535264000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-12 18:06:57.243600734 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112175\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112175\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1393\n- 1394\n 2788 \N 189.186.78.190 abe48ab5-8afd-4985-b154-a2b98b7b227e 2020-02-12 18:06:57.266179 29238 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dBUCN1g6njz88bEeu7Hw\n- _2fHy_qW4VmDHWUsfXRh\n 2789 \N 189.186.78.190 abe48ab5-8afd-4985-b154-a2b98b7b227e 2020-02-12 18:06:57.293997 29239 2197 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 819\namount: !ruby/object:BigDecimal 18:0.144041E4\ntax: !ruby/object:BigDecimal 18:0.2759E2\ndiscount: !ruby/object:BigDecimal 18:0.1068E4\ntotal: !ruby/object:BigDecimal 18:0.4E3\nstatus: 0\ndate_sale: 2020-02-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1081\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 b2b8322b-cf58-4e87-8cb0-9e72f5722d75 2020-02-12 18:13:29.996027 29240 709 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.45.214 b2b8322b-cf58-4e87-8cb0-9e72f5722d75 2020-02-12 18:13:30.057584 29241 174 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.45.214 b2b8322b-cf58-4e87-8cb0-9e72f5722d75 2020-02-12 18:13:30.105684 29242 2197 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 742443d6-eafa-41f6-9fb3-6416e7537672 2020-02-12 18:13:34.402477 29243 2990 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 819\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 2197\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1081\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1081 189.186.45.214 742443d6-eafa-41f6-9fb3-6416e7537672 2020-02-12 18:13:34.432559 29244 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-11 17:25:33.803290000 Z\n- &1 2020-02-11 21:01:38.534408000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-12 20:06:40.839138275 Z\nsign_in_count:\n- 127\n- 128\n 257 \N 189.186.78.190 d468a003-8b93-4be7-bac3-7dd4d68f278f 2020-02-12 20:06:40.860384 29245 21 User \N \N 21 User \N update ---\nunique_session_id:\n- MnFRQs6pLXGt15BNzQni\n- M6EeN3HxUe1xx4rY_Yum\n 258 \N 189.186.78.190 d468a003-8b93-4be7-bac3-7dd4d68f278f 2020-02-12 20:06:40.885507 29246 820 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1378E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1378.0 189.186.78.190 48f58b6f-d89d-47ab-b550-bc9dd40418ec 2020-02-12 21:30:44.088638 29247 287 Customer \N \N 21 User \N create ---\nnick_name: ROXANA ORDUNO\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ROXANA ORDUNO fue registrado. 189.186.78.190 3aae26d2-cd94-494e-8059-3dc13af0b84f 2020-02-12 21:31:13.425812 29248 2198 Sale \N \N 21 User \N create ---\ncustomer_id: 287\nuser_id: 21\nopen_cash_register_id: 820\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-02-12\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-270\nexpiration_date: 2020-03-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 e3f8aaaf-224d-4804-9613-ef2b753ad9fa 2020-02-12 21:31:23.550673 29249 1035 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 22 \N 189.186.78.190 e3f8aaaf-224d-4804-9613-ef2b753ad9fa 2020-02-12 21:31:23.600411 29250 2991 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 820\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2198\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-270\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-270 189.186.78.190 bf8e0881-b810-4e26-862e-423df2c0970e 2020-02-12 21:33:01.424451 29251 2198 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.78.190 3f9ade7d-4932-43ef-995e-a7d98aa3e169 2020-02-12 21:33:08.16259 29326 632 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.45.214 46ab4a5f-91d3-4fb9-b4fb-fa972f184e0d 2020-02-13 19:53:18.134555 29252 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-12 03:05:21.535264000 Z\n- &1 2020-02-12 18:06:57.243600000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-12 23:29:52.000304688 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112175\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945577\n mask_addr: 4294967295\nsign_in_count:\n- 1394\n- 1395\n 2790 \N 200.68.179.105 159f8464-8456-43ea-8c01-b753980718a0 2020-02-12 23:29:52.033257 29253 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _2fHy_qW4VmDHWUsfXRh\n- TQDkWf1sydik_6FwfC-F\n 2791 \N 200.68.179.105 159f8464-8456-43ea-8c01-b753980718a0 2020-02-12 23:29:52.065135 29254 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-12 18:06:57.243600000 Z\n- &1 2020-02-12 23:29:52.000304000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 01:19:09.643421732 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945577\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945577\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1395\n- 1396\n 2792 \N 189.186.78.190 59fa14ea-19cc-4fb1-806b-2c72be5b2976 2020-02-13 01:19:09.651646 29255 4 User \N \N 4 User \N update ---\nunique_session_id:\n- TQDkWf1sydik_6FwfC-F\n- Znw_5gRntuzt3cxZtMid\n 2793 \N 189.186.78.190 59fa14ea-19cc-4fb1-806b-2c72be5b2976 2020-02-13 01:19:09.672307 29256 835 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 818\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1172E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1172E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.45.214 5f97637a-3dfd-489b-8059-6efe801b9e64 2020-02-13 02:00:19.620419 29257 818 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.214 5f97637a-3dfd-489b-8059-6efe801b9e64 2020-02-13 02:00:19.638729 29258 2199 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 819\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.679E3\ntotal: !ruby/object:BigDecimal 18:0.102E4\nstatus: 0\ndate_sale: 2020-02-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1082\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 a5efa3d2-973b-4c6d-8ccd-82a332189cfc 2020-02-13 02:13:57.669633 29259 1433 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.45.214 a5efa3d2-973b-4c6d-8ccd-82a332189cfc 2020-02-13 02:13:57.70574 29260 2199 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 6dc8a609-8e30-491b-b81e-18b01d00f8c1 2020-02-13 02:14:06.89641 29261 2992 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 819\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.102E4\nmove_type: '1'\nsale_id: 2199\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1082\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.102E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1082 189.186.45.214 6dc8a609-8e30-491b-b81e-18b01d00f8c1 2020-02-13 02:14:06.921032 29262 836 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 819\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.142E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.17E4\ncash_fund: !ruby/object:BigDecimal 18:0.986E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2686E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.45.214 0a5833ad-a56b-4fea-b841-f111b242268c 2020-02-13 02:24:36.941851 29263 819 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.214 0a5833ad-a56b-4fea-b841-f111b242268c 2020-02-13 02:24:36.964882 29264 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-11 21:01:38.534408000 Z\n- &1 2020-02-12 20:06:40.839138000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 02:35:34.074708512 Z\nsign_in_count:\n- 128\n- 129\n 259 \N 189.186.78.190 00cabc34-2b35-4d4d-b92d-faa7a974f03e 2020-02-13 02:35:34.083158 29265 21 User \N \N 21 User \N update ---\nunique_session_id:\n- M6EeN3HxUe1xx4rY_Yum\n- jyyFGYfsDRgqByWeBF8X\n 260 \N 189.186.78.190 00cabc34-2b35-4d4d-b92d-faa7a974f03e 2020-02-13 02:35:34.09675 29266 837 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 820\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.4E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1378E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1378E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 d9d8eab0-6f62-4870-be16-f18db7681afa 2020-02-13 02:36:49.006617 29267 820 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 d9d8eab0-6f62-4870-be16-f18db7681afa 2020-02-13 02:36:49.021487 29268 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-01-25 22:08:32.901473000 Z\n- &1 2020-01-27 23:24:53.746253000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 17:43:23.056925376 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\nsign_in_count:\n- 104\n- 105\n 210 \N 189.186.45.214 961d574b-724c-45bd-8060-2ddde0e79dee 2020-02-13 17:43:23.087794 29269 9 User \N \N 9 User \N update ---\nunique_session_id:\n- FxxxxexNyuVhebyPZ-Mb\n- h_q_-Pe7YDyxTU67PebN\n 211 \N 189.186.45.214 961d574b-724c-45bd-8060-2ddde0e79dee 2020-02-13 17:43:23.111656 29270 821 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.986E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 986.0 189.186.45.214 cbfcac2d-2982-430e-9607-f23d63d85f26 2020-02-13 17:43:28.571108 29271 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-01-27 23:24:53.746253000 Z\n- &1 2020-02-13 17:43:23.056925000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 18:19:36.770287885 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\nsign_in_count:\n- 105\n- 106\n 212 \N 189.186.45.214 580f9d8f-8f27-4667-a620-ec89fcba25f9 2020-02-13 18:19:36.777532 29272 9 User \N \N 9 User \N update ---\nunique_session_id:\n- h_q_-Pe7YDyxTU67PebN\n- GeJDNK-yMHbL5hQbUnXy\n 213 \N 189.186.45.214 580f9d8f-8f27-4667-a620-ec89fcba25f9 2020-02-13 18:19:36.807109 29273 2200 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 821\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.279E3\ntotal: !ruby/object:BigDecimal 18:0.42E3\nstatus: 0\ndate_sale: 2020-02-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1083\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 f6e2c337-2e97-45c4-ae5e-cfb967922e67 2020-02-13 18:20:15.297393 29276 2993 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 821\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.42E3\nmove_type: '1'\nsale_id: 2200\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1083\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.42E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1083 189.186.45.214 f20dda94-8197-4d58-b473-5f7444a25e20 2020-02-13 18:20:23.267602 29277 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-12 23:29:52.000304000 Z\n- &1 2020-02-13 01:19:09.643421000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 18:24:35.841564865 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945577\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\nsign_in_count:\n- 1396\n- 1397\n 2794 \N 189.186.45.214 c1130d48-1b2c-4bf9-b10f-54a5f847041d 2020-02-13 18:24:35.850611 29278 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Znw_5gRntuzt3cxZtMid\n- z1bdTGssgnHMxt-4BmSi\n 2795 \N 189.186.45.214 c1130d48-1b2c-4bf9-b10f-54a5f847041d 2020-02-13 18:24:35.872393 29279 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 01:19:09.643421000 Z\n- &1 2020-02-13 18:24:35.841564000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 18:35:09.632672130 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1397\n- 1398\n 2796 \N 189.186.78.190 3503e993-743c-41b8-98e0-9e6cae4dc55c 2020-02-13 18:35:09.641291 29280 4 User \N \N 4 User \N update ---\nunique_session_id:\n- z1bdTGssgnHMxt-4BmSi\n- xxE7q_HF2VxVpVsx4yBx\n 2797 \N 189.186.78.190 3503e993-743c-41b8-98e0-9e6cae4dc55c 2020-02-13 18:35:09.660382 29281 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 18:24:35.841564000 Z\n- &1 2020-02-13 18:35:09.632672000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 18:36:47.479291534 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\nsign_in_count:\n- 1398\n- 1399\n 2798 \N 189.186.45.214 247b78e2-44ed-4ade-9ae3-69f27e914d8a 2020-02-13 18:36:47.4879 29282 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xxE7q_HF2VxVpVsx4yBx\n- o82gdiCstbhRGxXnyQMv\n 2799 \N 189.186.45.214 247b78e2-44ed-4ade-9ae3-69f27e914d8a 2020-02-13 18:36:47.51114 29283 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 18:35:09.632672000 Z\n- &1 2020-02-13 18:36:47.479291000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 18:37:03.562133309 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1399\n- 1400\n 2800 \N 189.186.78.190 1329059c-7257-4fa0-8c13-43dc831d9e47 2020-02-13 18:37:03.571639 29284 4 User \N \N 4 User \N update ---\nunique_session_id:\n- o82gdiCstbhRGxXnyQMv\n- du9__QC_xioxhYw5z-TT\n 2801 \N 189.186.78.190 1329059c-7257-4fa0-8c13-43dc831d9e47 2020-02-13 18:37:03.592283 29285 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 18:36:47.479291000 Z\n- &1 2020-02-13 18:37:03.562133000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 18:39:32.977776514 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\nsign_in_count:\n- 1400\n- 1401\n 2802 \N 189.186.45.214 05fd17cd-905b-4fce-bb8a-87f2e320dc40 2020-02-13 18:39:32.986477 29286 4 User \N \N 4 User \N update ---\nunique_session_id:\n- du9__QC_xioxhYw5z-TT\n- Q1xWkg_zWkGFZFRJoUzb\n 2803 \N 189.186.45.214 05fd17cd-905b-4fce-bb8a-87f2e320dc40 2020-02-13 18:39:33.005549 29287 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2019-12-21 22:50:51.104106000 Z\n- &1 2020-01-02 21:50:51.913657000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 18:40:06.910767267 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 64\n- 65\n 130 \N 189.186.78.190 c577113e-49b2-4fdc-b36a-c524e8e4ca01 2020-02-13 18:40:06.91973 29288 26 User \N \N 26 User \N update ---\nunique_session_id:\n- txq_UVpnKzygmUBHfUSH\n- fLzPEyy_fN372J_dtefD\n 131 \N 189.186.78.190 c577113e-49b2-4fdc-b36a-c524e8e4ca01 2020-02-13 18:40:06.937155 29289 413 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.78.190 a1cb3255-2e66-4fe9-adf3-7e0a870aad22 2020-02-13 18:42:21.139922 29290 413 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.78.190 270a31f7-9fbb-4b9c-903b-14153e9c1f6b 2020-02-13 18:42:23.650727 29291 465 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-02-13\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.78.190 11f8cbe4-7e1f-44de-a755-265c86b39783 2020-02-13 18:42:24.80439 29292 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-12 20:06:40.839138000 Z\n- &1 2020-02-13 02:35:34.074708000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 19:00:25.962001984 Z\nsign_in_count:\n- 129\n- 130\n 261 \N 189.186.78.190 43a8a646-68cf-4d54-8853-6dc5fe402709 2020-02-13 19:00:25.97088 29293 21 User \N \N 21 User \N update ---\nunique_session_id:\n- jyyFGYfsDRgqByWeBF8X\n- jzQLsKQsCeTD2ev1ZLcm\n 262 \N 189.186.78.190 43a8a646-68cf-4d54-8853-6dc5fe402709 2020-02-13 19:00:25.986228 29294 465 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-13\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.78.190 33a3a290-619e-470d-8c4e-9ce17cef0eeb 2020-02-13 19:00:38.011193 29295 1618 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 415\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.78.190 33a3a290-619e-470d-8c4e-9ce17cef0eeb 2020-02-13 19:00:38.045039 29296 132 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.45.214 51fc5468-7d6c-4e9d-b586-e3264bdfa989 2020-02-13 19:00:53.275709 29298 464 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-13\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.78.190 ee31cd3f-43ad-4db0-a726-d9656c3c7b50 2020-02-13 19:01:01.839197 29299 1619 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 8\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.78.190 ee31cd3f-43ad-4db0-a726-d9656c3c7b50 2020-02-13 19:01:01.861111 29300 22 User \N \N 22 User \N update ---\nlast_sign_in_at:\n- 2020-01-28 20:00:57.949273000 Z\n- &1 2020-01-29 19:47:08.177544000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 19:01:17.267428263 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 6\n- 7\n 14 \N 189.186.78.190 acc2a417-87dd-4e88-9612-632ed881621d 2020-02-13 19:01:17.275239 29301 22 User \N \N 22 User \N update ---\nunique_session_id:\n- z7RTUymtSCf6LFAYhMq5\n- iui8Kcuwzxiwuo4gWxVT\n 15 \N 189.186.78.190 acc2a417-87dd-4e88-9612-632ed881621d 2020-02-13 19:01:17.294056 29302 810 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 12 \N 189.186.45.214 55314f5d-db80-4dcd-810e-573caa2eba9d 2020-02-13 19:01:26.202593 29303 460 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-13\n 2 Se dio entrada a traspaso de S BY SUO a Almacen central 189.186.78.190 44710610-c3da-45ca-a471-1d8d53bd7e0e 2020-02-13 19:01:26.706002 29304 810 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 189.186.45.214 de3f5a5a-bc17-43a4-8ebf-921711a15d97 2020-02-13 19:01:29.835259 29305 1012 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 189.186.45.214 f5c819f9-6120-4997-8abe-927959304b7f 2020-02-13 19:01:41.971098 29306 1012 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.45.214 334e8561-f0e4-4159-b28d-3f4af6b25c40 2020-02-13 19:01:46.053747 29307 459 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-13\n 2 Se dio entrada a traspaso de SUO Comercial a Almacen central 189.186.78.190 adde1e10-0d4a-4c0d-b76c-e9c259dc2cca 2020-02-13 19:02:10.300345 29308 1098 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.45.214 6591d2ad-dff8-4074-bafb-4a4e6da21296 2020-02-13 19:02:24.386944 29309 467 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-02-13\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.45.214 98c555a3-b7bf-4d5a-bd41-30582e8de422 2020-02-13 19:02:54.578283 29310 1024 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.45.214 ce181a16-a473-40e5-855c-d537dfbee8dd 2020-02-13 19:03:31.754085 29311 1157 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.45.214 ed3c4d0f-a987-402a-9620-b9c140af28b0 2020-02-13 19:03:47.953952 29312 1157 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.45.214 1b2ac25e-3721-4ade-8937-73eba1a1293d 2020-02-13 19:03:51.642646 29313 468 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-02-13\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.45.214 edde3ecf-58a8-4d3e-bb5f-0cf56648454d 2020-02-13 19:04:24.81257 29314 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-01-07 18:17:41.665371000 Z\n- &1 2020-01-26 17:06:23.534247000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 19:04:33.031430324 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 63\n- 64\n 128 \N 189.186.78.190 a5ec2aee-6abf-4a0a-9364-09cae5fcecc6 2020-02-13 19:04:33.040078 29315 25 User \N \N 25 User \N update ---\nunique_session_id:\n- U1pNe6LEA-sWmixuB8te\n- k3pJQ-zWZmNzzwTs2vzm\n 129 \N 189.186.78.190 a5ec2aee-6abf-4a0a-9364-09cae5fcecc6 2020-02-13 19:04:33.057572 29316 1090 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 18 \N 189.186.45.214 28dc49ce-ce74-4667-9de0-745377fe3b2d 2020-02-13 19:07:24.68907 29317 1090 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 19 \N 189.186.45.214 bfbb9400-fa77-4b07-9c22-5d82e55b512e 2020-02-13 19:07:29.192665 29318 469 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-02-13\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.45.214 3d4bb32b-bd55-40a1-a259-b588e913df60 2020-02-13 19:07:33.465215 29319 1407 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.45.214 d9b1d678-c65a-4c2e-8801-06e6e41416b2 2020-02-13 19:10:18.128563 29320 1407 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.45.214 2bdc7409-508a-46e4-8b88-81ad9cc3b4da 2020-02-13 19:10:22.339908 29321 470 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-02-13\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.45.214 75ecf541-359a-42a4-987d-aad971460d41 2020-02-13 19:10:23.90148 29322 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 02:35:34.074708000 Z\n- &1 2020-02-13 19:00:25.962001000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 19:12:58.723768941 Z\nsign_in_count:\n- 130\n- 131\n 263 \N 189.186.78.190 42cbb52d-83ee-4d27-b758-87b1afdbf621 2020-02-13 19:12:58.731669 29323 21 User \N \N 21 User \N update ---\nunique_session_id:\n- jzQLsKQsCeTD2ev1ZLcm\n- BsLTAKLy9sQ9NseW-DFx\n 264 \N 189.186.78.190 42cbb52d-83ee-4d27-b758-87b1afdbf621 2020-02-13 19:12:58.750845 29324 822 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1378E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1378.0 189.186.78.190 0a20bf44-a8ed-449d-b469-7980e4bc3511 2020-02-13 19:13:13.702634 29325 524 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.45.214 86a09f94-0d8d-4e91-8543-03a3fcf0c198 2020-02-13 19:52:59.981891 29328 471 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-02-13\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.45.214 2b6dcc3a-195e-4c17-a640-8f08de1cfb6a 2020-02-13 19:53:32.273137 29329 974 Product \N \N 4 User \N create ---\nsku: ACC-974\nname: c-0002\ndescription: collar corazon negro\nprice_base: !ruby/object:BigDecimal 18:0.6E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-974 fue creado. 189.186.45.214 12dbb547-ecda-40cc-bac7-465e8afba4d7 2020-02-13 19:59:10.066134 29330 974 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000974'\n 2 \N 189.186.45.214 12dbb547-ecda-40cc-bac7-465e8afba4d7 2020-02-13 19:59:10.113192 29331 22 User \N \N 22 User \N update ---\nlast_sign_in_at:\n- 2020-01-29 19:47:08.177544000 Z\n- &1 2020-02-13 19:01:17.267428000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 20:34:01.229339777 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 7\n- 8\n 16 \N 189.186.78.190 67765400-51a7-42bc-876b-36952f9f9703 2020-02-13 20:34:01.24018 29332 22 User \N \N 22 User \N update ---\nunique_session_id:\n- iui8Kcuwzxiwuo4gWxVT\n- rGxVuL5_92Qrd5UFHPCT\n 17 \N 189.186.78.190 67765400-51a7-42bc-876b-36952f9f9703 2020-02-13 20:34:01.266528 29333 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-11 22:36:49.407191000 Z\n- &1 2020-02-12 17:51:03.168528000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 20:36:22.743105933 Z\nsign_in_count:\n- 471\n- 472\n 947 \N 189.186.45.214 d859573d-82ab-40e3-a453-c22e8c52663c 2020-02-13 20:36:22.749563 29334 2 User \N \N 2 User \N update ---\nunique_session_id:\n- AN7NH2AFKphLhJsX7sfs\n- MxWyztNpzDcE9DXHJGW1\n 948 \N 189.186.45.214 d859573d-82ab-40e3-a453-c22e8c52663c 2020-02-13 20:36:22.800291 29335 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-01-29 02:03:07.150031000 Z\n- &1 2020-01-30 20:21:01.191868000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 20:38:25.486158730 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\nsign_in_count:\n- 92\n- 93\n 189 \N 189.186.45.214 57f4effd-ad4a-4adf-9d94-71035d33db3c 2020-02-13 20:38:25.493968 29336 8 User \N \N 8 User \N update ---\nunique_session_id:\n- Uoc2t1EKE3fH4-HXJpaN\n- 24neHyvNyXGo9nQQ83xB\n 190 \N 189.186.45.214 57f4effd-ad4a-4adf-9d94-71035d33db3c 2020-02-13 20:38:25.512138 29337 472 Transfer \N \N 22 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-02-13\nuser_id: 22\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.78.190 414a127b-a3ce-4675-93db-97b9de422cf9 2020-02-13 20:39:31.398034 29338 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 19:00:25.962001000 Z\n- &1 2020-02-13 19:12:58.723768000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 20:39:57.508820648 Z\nsign_in_count:\n- 131\n- 132\n 265 \N 189.186.78.190 771eff68-0fe8-4a35-8565-20429c7b5d8a 2020-02-13 20:39:57.517925 29339 21 User \N \N 21 User \N update ---\nunique_session_id:\n- BsLTAKLy9sQ9NseW-DFx\n- ChqTsNd1y9_XhDEk-ywu\n 266 \N 189.186.78.190 771eff68-0fe8-4a35-8565-20429c7b5d8a 2020-02-13 20:39:57.539527 29340 288 Customer \N \N 21 User \N create ---\nnick_name: YUNIDIA MEZA\nphone: "(667) 183-4861"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente YUNIDIA MEZA fue registrado. 189.186.78.190 9d57e698-b4bf-4218-91fa-5a3fca3a0cc1 2020-02-13 20:47:15.283044 29341 2201 Sale \N \N 21 User \N create ---\ncustomer_id: 288\nuser_id: 21\nopen_cash_register_id: 822\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-02-13\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-271\nexpiration_date: 2020-03-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 b247d842-e6ae-41d3-8ede-326172c053e2 2020-02-13 20:47:26.400195 29342 1035 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 23 \N 189.186.78.190 b247d842-e6ae-41d3-8ede-326172c053e2 2020-02-13 20:47:26.433179 29343 2994 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 822\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2201\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-271\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-271 189.186.78.190 c7d67661-ed92-4302-930b-7e7a9dbd089f 2020-02-13 20:47:32.130445 29344 2201 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.78.190 962e48ad-0a63-44f4-8db4-9cb9365eb706 2020-02-13 20:47:33.446853 29345 472 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-13\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.78.190 263ed41d-cf57-4e06-b375-9869e8581d52 2020-02-13 20:50:48.886284 29346 904 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.78.190 263ed41d-cf57-4e06-b375-9869e8581d52 2020-02-13 20:50:48.912003 29347 22 User \N \N 22 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 19:01:17.267428000 Z\n- &1 2020-02-13 20:34:01.229339000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 20:51:45.533550824 Z\nsign_in_count:\n- 8\n- 9\n 18 \N 189.186.78.190 d3922a4e-a3d7-4fc8-9c13-cd06bb0a11ea 2020-02-13 20:51:45.540517 29348 22 User \N \N 22 User \N update ---\nunique_session_id:\n- rGxVuL5_92Qrd5UFHPCT\n- DgQjVovC21jPkM71Ww_B\n 19 \N 189.186.78.190 d3922a4e-a3d7-4fc8-9c13-cd06bb0a11ea 2020-02-13 20:51:45.560396 29349 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 18:37:03.562133000 Z\n- &1 2020-02-13 18:39:32.977776000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 20:56:12.732589637 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\nsign_in_count:\n- 1401\n- 1402\n 2804 \N 189.186.45.214 e0fecf6a-8066-4d91-a473-6a3d4a55822a 2020-02-13 20:56:12.762102 29350 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Q1xWkg_zWkGFZFRJoUzb\n- Txt8Etw1qUTkaudr5fxd\n 2805 \N 189.186.45.214 e0fecf6a-8066-4d91-a473-6a3d4a55822a 2020-02-13 20:56:12.779477 29351 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 19:12:58.723768000 Z\n- &1 2020-02-13 20:39:57.508820000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 21:02:57.548425975 Z\nsign_in_count:\n- 132\n- 133\n 267 \N 189.186.78.190 a5a11e93-220c-4456-80a0-58b5bf1ea22d 2020-02-13 21:02:57.555154 29353 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-01-26 17:06:23.534247000 Z\n- &1 2020-02-13 19:04:33.031430000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 21:17:56.480811416 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 64\n- 65\n 130 \N 189.186.78.190 e972ebf2-359d-4447-aabc-fe5f0524b501 2020-02-13 21:17:56.487702 29354 25 User \N \N 25 User \N update ---\nunique_session_id:\n- k3pJQ-zWZmNzzwTs2vzm\n- 6mrLyKfR8zGVSWQ_7LZg\n 131 \N 189.186.78.190 e972ebf2-359d-4447-aabc-fe5f0524b501 2020-02-13 21:17:56.507727 29355 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 20:39:57.508820000 Z\n- &1 2020-02-13 21:02:57.548425000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 21:21:13.090876388 Z\nsign_in_count:\n- 133\n- 134\n 269 \N 189.186.78.190 3964e62c-b88b-4d9e-96a6-1ed687c646bd 2020-02-13 21:21:13.097264 29356 21 User \N \N 21 User \N update ---\nunique_session_id:\n- W24GRA9aE3vvNoc7wo9i\n- DKzHnoi2EvW5jF1fkKNf\n 270 \N 189.186.78.190 3964e62c-b88b-4d9e-96a6-1ed687c646bd 2020-02-13 21:21:13.114633 29357 293 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.45.214 9abd3a12-17d7-4169-9e35-487d5138bd40 2020-02-13 21:31:25.240453 29358 473 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-02-13\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.45.214 0aed45e9-715f-43ab-8091-d31c1d870841 2020-02-13 21:31:26.876362 29359 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-01-30 20:21:01.191868000 Z\n- &1 2020-02-13 20:38:25.486158000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 21:31:49.520736015 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\nsign_in_count:\n- 93\n- 94\n 191 \N 189.186.45.214 fe8fb017-ffaa-49e7-844b-12698a69d825 2020-02-13 21:31:49.530849 29360 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 24neHyvNyXGo9nQQ83xB\n- AsCYMhad_yqJ9z2Sy5yw\n 192 \N 189.186.45.214 fe8fb017-ffaa-49e7-844b-12698a69d825 2020-02-13 21:31:49.551217 29361 467 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-13\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.45.214 d2d16c07-a648-4726-82dc-5b146ceaa827 2020-02-13 21:32:20.258229 29362 1087 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.45.214 d2d16c07-a648-4726-82dc-5b146ceaa827 2020-02-13 21:32:20.280304 29363 798 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.9E1\n 5 \N 189.186.45.214 d2d16c07-a648-4726-82dc-5b146ceaa827 2020-02-13 21:32:20.306427 29364 800 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.8E1\n 26 \N 189.186.45.214 d2d16c07-a648-4726-82dc-5b146ceaa827 2020-02-13 21:32:20.32714 29365 466 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-13\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.45.214 298ca73f-8146-4bda-8946-fcec84be85a3 2020-02-13 21:32:29.843123 29366 1620 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 134\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.45.214 298ca73f-8146-4bda-8946-fcec84be85a3 2020-02-13 21:32:29.877396 29367 458 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-13\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 189.186.45.214 43867e73-5a32-4fc6-99b9-d68cc497a5ec 2020-02-13 21:32:40.1378 29368 1621 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 644\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.45.214 43867e73-5a32-4fc6-99b9-d68cc497a5ec 2020-02-13 21:32:40.163309 29369 22 User \N \N 22 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 20:34:01.229339000 Z\n- &1 2020-02-13 20:51:45.533550000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 21:40:36.203794958 Z\nsign_in_count:\n- 9\n- 10\n 20 \N 189.186.78.190 467fe450-f73b-4f75-8f37-721c2a50523a 2020-02-13 21:40:36.2102 29370 22 User \N \N 22 User \N update ---\nunique_session_id:\n- DgQjVovC21jPkM71Ww_B\n- zARWxDybdRLubQwqXNL-\n 21 \N 189.186.78.190 467fe450-f73b-4f75-8f37-721c2a50523a 2020-02-13 21:40:36.224701 29371 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 19:04:33.031430000 Z\n- &1 2020-02-13 21:17:56.480811000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 21:41:51.472380281 Z\nsign_in_count:\n- 65\n- 66\n 132 \N 189.186.78.190 97657a38-85d8-4278-a7c8-9fa393fc4e8c 2020-02-13 21:41:51.47943 29372 25 User \N \N 25 User \N update ---\nunique_session_id:\n- 6mrLyKfR8zGVSWQ_7LZg\n- LNWhZ9_dQGtxydWD-YFR\n 133 \N 189.186.78.190 97657a38-85d8-4278-a7c8-9fa393fc4e8c 2020-02-13 21:41:51.497868 29373 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 21:02:57.548425000 Z\n- &1 2020-02-13 21:21:13.090876000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 21:44:14.816802170 Z\nsign_in_count:\n- 134\n- 135\n 271 \N 189.186.78.190 eb9128ed-fced-4cd5-b681-a2a09a48371a 2020-02-13 21:44:14.822911 29374 21 User \N \N 21 User \N update ---\nunique_session_id:\n- DKzHnoi2EvW5jF1fkKNf\n- shtMJxXi5ATP2pxU1a5A\n 272 \N 189.186.78.190 eb9128ed-fced-4cd5-b681-a2a09a48371a 2020-02-13 21:44:14.837311 29375 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 18:39:32.977776000 Z\n- &1 2020-02-13 20:56:12.732589000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 21:44:36.427816246 Z\nsign_in_count:\n- 1402\n- 1403\n 2806 \N 189.186.45.214 fc081fce-f98c-410f-b2c7-0ee7c4a0a2d8 2020-02-13 21:44:36.434853 29376 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Txt8Etw1qUTkaudr5fxd\n- wzw6qYTt5xxmxKbRyVxv\n 2807 \N 189.186.45.214 fc081fce-f98c-410f-b2c7-0ee7c4a0a2d8 2020-02-13 21:44:36.453946 29377 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 21:17:56.480811000 Z\n- &1 2020-02-13 21:41:51.472380000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 22:11:39.298408487 Z\nsign_in_count:\n- 66\n- 67\n 134 \N 189.186.78.190 31eeeeea-e512-438c-8216-7d0fef4aed10 2020-02-13 22:11:39.308153 29378 25 User \N \N 25 User \N update ---\nunique_session_id:\n- LNWhZ9_dQGtxydWD-YFR\n- tsB2tys9jS6Fx7BS1ueJ\n 135 \N 189.186.78.190 31eeeeea-e512-438c-8216-7d0fef4aed10 2020-02-13 22:11:39.328835 29379 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2020-01-02 21:50:51.913657000 Z\n- &1 2020-02-13 18:40:06.910767000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 22:23:28.784255940 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113621\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 65\n- 66\n 132 \N 189.186.78.190 78c84b1e-e612-487c-a1e0-bb330f0b228a 2020-02-13 22:23:28.792192 29380 26 User \N \N 26 User \N update ---\nunique_session_id:\n- fLzPEyy_fN372J_dtefD\n- f9Qu4CoyKyyGnbUraJF3\n 133 \N 189.186.78.190 78c84b1e-e612-487c-a1e0-bb330f0b228a 2020-02-13 22:23:28.815621 29381 2202 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 821\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.319E3\ntotal: !ruby/object:BigDecimal 18:0.48E3\nstatus: 0\ndate_sale: 2020-02-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1084\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 ef915bca-8baf-4f4a-9edb-fafbb6dda389 2020-02-13 22:24:44.662285 29382 1486 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.45.214 ef915bca-8baf-4f4a-9edb-fafbb6dda389 2020-02-13 22:24:44.704415 29383 2202 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 5cc50831-15db-4b41-bd88-ccb93a12578f 2020-02-13 22:24:59.902508 29384 2995 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 821\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.48E3\nmove_type: '1'\nsale_id: 2202\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1084\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.48E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1084 189.186.45.214 5cc50831-15db-4b41-bd88-ccb93a12578f 2020-02-13 22:24:59.945887 29385 469 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-13\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.45.214 526ab2f2-bcec-4aaf-b061-bcc613ad8861 2020-02-13 22:27:35.491016 29386 1468 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.45.214 526ab2f2-bcec-4aaf-b061-bcc613ad8861 2020-02-13 22:27:35.513489 29387 473 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-13\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.45.214 11fd01e9-9903-41e1-b7a3-c561e7540659 2020-02-13 22:28:46.862568 29388 734 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.45.214 11fd01e9-9903-41e1-b7a3-c561e7540659 2020-02-13 22:28:46.884075 29389 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 21:21:13.090876000 Z\n- &1 2020-02-13 21:44:14.816802000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 22:52:22.806333996 Z\nsign_in_count:\n- 135\n- 136\n 273 \N 189.186.78.190 f5a37827-31aa-48e3-b345-c2b15efdfa07 2020-02-13 22:52:22.837803 29390 21 User \N \N 21 User \N update ---\nunique_session_id:\n- shtMJxXi5ATP2pxU1a5A\n- hZrzBz15JJoEvxgJBtbX\n 274 \N 189.186.78.190 f5a37827-31aa-48e3-b345-c2b15efdfa07 2020-02-13 22:52:22.862293 29391 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 20:56:12.732589000 Z\n- &1 2020-02-13 21:44:36.427816000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 23:00:16.153600071 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1403\n- 1404\n 2808 \N 189.186.78.190 4514915c-15eb-4074-9598-80589824c1e8 2020-02-13 23:00:16.162674 29392 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wzw6qYTt5xxmxKbRyVxv\n- JeuZkWsexSEsxyzZ_ZWh\n 2809 \N 189.186.78.190 4514915c-15eb-4074-9598-80589824c1e8 2020-02-13 23:00:16.184887 29393 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 21:44:14.816802000 Z\n- &1 2020-02-13 22:52:22.806333000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 23:02:56.773187965 Z\nsign_in_count:\n- 136\n- 137\n 275 \N 189.186.78.190 3ec08853-a8c8-4853-b000-4e9177abfa72 2020-02-13 23:02:56.780776 29394 21 User \N \N 21 User \N update ---\nunique_session_id:\n- hZrzBz15JJoEvxgJBtbX\n- QLTnMNWonBn8xU4LLip7\n 276 \N 189.186.78.190 3ec08853-a8c8-4853-b000-4e9177abfa72 2020-02-13 23:02:56.810425 29395 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 18:40:06.910767000 Z\n- &1 2020-02-13 22:23:28.784255000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 23:05:27.462963605 Z\nsign_in_count:\n- 66\n- 67\n 134 \N 189.186.78.190 f9cfe240-0a73-49b0-9922-75675246206d 2020-02-13 23:05:27.46909 29396 26 User \N \N 26 User \N update ---\nunique_session_id:\n- f9Qu4CoyKyyGnbUraJF3\n- xPXPbykzp6xCLy1g9P4a\n 135 \N 189.186.78.190 f9cfe240-0a73-49b0-9922-75675246206d 2020-02-13 23:05:27.486984 29397 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 21:44:36.427816000 Z\n- &1 2020-02-13 23:00:16.153600000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 23:08:07.185047724 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\nsign_in_count:\n- 1404\n- 1405\n 2810 \N 189.186.45.214 1698a134-be3c-4210-8775-e8c888098073 2020-02-13 23:08:07.192554 29398 4 User \N \N 4 User \N update ---\nunique_session_id:\n- JeuZkWsexSEsxyzZ_ZWh\n- oSN6Ut_BzGSzD6M1J2hd\n 2811 \N 189.186.45.214 1698a134-be3c-4210-8775-e8c888098073 2020-02-13 23:08:07.212307 29399 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 22:52:22.806333000 Z\n- &1 2020-02-13 23:02:56.773187000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-13 23:10:25.120622487 Z\nsign_in_count:\n- 137\n- 138\n 277 \N 189.186.78.190 2f11ebdf-fdb8-42f6-a220-2ee7ab08b510 2020-02-13 23:10:25.126698 29400 21 User \N \N 21 User \N update ---\nunique_session_id:\n- QLTnMNWonBn8xU4LLip7\n- gsDKtUTpUgG7BxN5nGR7\n 278 \N 189.186.78.190 2f11ebdf-fdb8-42f6-a220-2ee7ab08b510 2020-02-13 23:10:25.141096 29401 826 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 189.186.45.214 11b5861f-a71f-4de5-9b37-6af94a1f1e84 2020-02-13 23:13:43.368634 29402 474 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2020-02-13\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.45.214 20e9392f-4683-42f4-96ac-5a95935ad8f1 2020-02-13 23:13:44.757539 29403 1087 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.45.214 afbf4e86-f94c-4854-92f3-01c68fd924b1 2020-02-13 23:32:22.767976 29404 475 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-02-13\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.45.214 8488a760-d618-4d5c-a5fd-8fa272d22c9e 2020-02-13 23:32:25.453708 29405 1257 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.45.214 b771579f-1559-4b10-8841-c352416aa1ef 2020-02-14 01:16:16.506077 29406 1257 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.45.214 94594559-fe79-45bd-b9e6-91ec57dae3c8 2020-02-14 01:16:20.366145 29431 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-11 17:03:51.977567000 Z\n- &1 2020-02-12 17:03:04.143917000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 17:19:47.878952605 Z\nsign_in_count:\n- 100\n- 101\n 202 \N 189.186.45.214 fcd10d2f-ed38-4bba-8990-4d8dfe96c235 2020-02-14 17:19:47.917042 29407 476 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-02-13\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.45.214 212767f7-1f17-45b8-b173-ff946e22f8ea 2020-02-14 01:16:21.13173 29408 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 20:38:25.486158000 Z\n- &1 2020-02-13 21:31:49.520736000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 01:55:30.989138033 Z\nsign_in_count:\n- 94\n- 95\n 193 \N 189.186.45.214 4c20b23f-177a-40eb-9cc6-59eeaeaba3e3 2020-02-14 01:55:30.997164 29409 8 User \N \N 8 User \N update ---\nunique_session_id:\n- AsCYMhad_yqJ9z2Sy5yw\n- jKLTSsJeMC5BNuY81d5b\n 194 \N 189.186.45.214 4c20b23f-177a-40eb-9cc6-59eeaeaba3e3 2020-02-14 01:55:31.014763 29410 823 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.1172E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1172.0 189.186.45.214 6f13c540-9c31-4d82-a907-740dc7292739 2020-02-14 01:59:05.537628 29411 838 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 823\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.2E3\ncash_fund: !ruby/object:BigDecimal 18:0.972E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1172E4\nobservations: FALTAN 15 KEYLA\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.45.214 43969a24-e638-4c48-9627-4e0266456fce 2020-02-14 01:59:46.334416 29412 823 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.214 43969a24-e638-4c48-9627-4e0266456fce 2020-02-14 01:59:46.34948 29413 475 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-13\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.45.214 d665bc64-868b-4a46-9c05-a42a1339afe6 2020-02-14 02:04:57.895133 29414 1098 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.45.214 d665bc64-868b-4a46-9c05-a42a1339afe6 2020-02-14 02:04:57.913783 29415 476 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-13\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.45.214 c35027ef-f80a-4b13-8834-8398f1711233 2020-02-14 02:05:09.369396 29416 1622 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 898\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.45.214 c35027ef-f80a-4b13-8834-8398f1711233 2020-02-14 02:05:09.389776 29417 839 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 821\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.9E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.9E3\ncash_fund: !ruby/object:BigDecimal 18:0.986E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1886E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.45.214 d3ac3200-35d4-4584-8fd2-08aafee218c9 2020-02-14 02:08:32.408892 29418 821 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.214 d3ac3200-35d4-4584-8fd2-08aafee218c9 2020-02-14 02:08:32.426268 29419 840 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 822\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.5E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.878E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1878E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 65137836-e580-4396-9e79-b7a18176701b 2020-02-14 02:57:55.703988 29420 822 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 65137836-e580-4396-9e79-b7a18176701b 2020-02-14 02:57:55.72026 29421 824 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.878E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 878.0 189.186.78.190 fb4df54a-be6c-486d-8569-46ee7cedd83e 2020-02-14 03:03:21.227765 29422 2203 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 824\namount: !ruby/object:BigDecimal 18:0.1059E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1059E4\nstatus: 0\ndate_sale: 2020-02-13\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-272\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 8c2a1a9f-dd2f-4354-af9c-a797f25aed71 2020-02-14 03:04:14.097975 29423 830 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 189.186.78.190 8c2a1a9f-dd2f-4354-af9c-a797f25aed71 2020-02-14 03:04:14.135333 29424 967 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.78.190 8c2a1a9f-dd2f-4354-af9c-a797f25aed71 2020-02-14 03:04:14.165705 29425 2203 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.78.190 e520c4a5-12c8-4c96-8d5e-4d7f3c2f937d 2020-02-14 03:04:24.593528 29426 2996 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 824\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1059E4\nmove_type: '1'\nsale_id: 2203\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-272\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.541E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-272 189.186.78.190 e520c4a5-12c8-4c96-8d5e-4d7f3c2f937d 2020-02-14 03:04:24.629725 29427 841 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 824\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1059E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.937E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1937E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 933c1d28-e48b-4fb3-a6f7-0891cfd2ef29 2020-02-14 03:07:28.671386 29428 824 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 933c1d28-e48b-4fb3-a6f7-0891cfd2ef29 2020-02-14 03:07:28.686755 29429 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 23:00:16.153600000 Z\n- &1 2020-02-13 23:08:07.185047000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 03:19:23.176353336 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112175\n mask_addr: 4294967295\nsign_in_count:\n- 1405\n- 1406\n 2812 \N 187.149.30.239 f76bb847-f8fc-47a4-83b9-6add01b46cb7 2020-02-14 03:19:23.18549 29430 4 User \N \N 4 User \N update ---\nunique_session_id:\n- oSN6Ut_BzGSzD6M1J2hd\n- mRVSfkgWVnFAXCtriXc_\n 2813 \N 187.149.30.239 f76bb847-f8fc-47a4-83b9-6add01b46cb7 2020-02-14 03:19:23.208902 29432 27 User \N \N 27 User \N update ---\nunique_session_id:\n- me3yzv4deq-sCj-1umf-\n- 2zz1VeZs1RTWRTdEdkd8\n 203 \N 189.186.45.214 fcd10d2f-ed38-4bba-8990-4d8dfe96c235 2020-02-14 17:19:47.950614 29433 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 23:02:56.773187000 Z\n- &1 2020-02-13 23:10:25.120622000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 17:26:07.170487269 Z\nsign_in_count:\n- 138\n- 139\n 279 \N 189.186.78.190 a8a7675a-4163-4362-8553-4010f0fa55bb 2020-02-14 17:26:07.176086 29434 21 User \N \N 21 User \N update ---\nunique_session_id:\n- gsDKtUTpUgG7BxN5nGR7\n- aABYjmP6wJVeA3SU_fjm\n 280 \N 189.186.78.190 a8a7675a-4163-4362-8553-4010f0fa55bb 2020-02-14 17:26:07.192288 29435 825 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.937E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 937.0 189.186.78.190 4ab81f2f-cb81-4dab-b96b-264e851aa8ac 2020-02-14 17:31:32.886123 29436 2997 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 690\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 1795\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEPOSITO\n 1 \N 189.186.78.190 9a50155b-0fec-45bd-8ae1-8b998af4258b 2020-02-14 17:39:44.793043 29437 2997 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 690\n- 825\n 2 movimiento de efectivo por venta con folio PV1-V-901 189.186.78.190 9a50155b-0fec-45bd-8ae1-8b998af4258b 2020-02-14 17:39:44.830172 29438 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 23:10:25.120622000 Z\n- &1 2020-02-14 17:26:07.170487000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 17:41:01.259355816 Z\nsign_in_count:\n- 139\n- 140\n 281 \N 189.186.78.190 b62f85c0-d94a-49f1-8693-8ac27f4619a7 2020-02-14 17:41:01.267144 29439 21 User \N \N 21 User \N update ---\nunique_session_id:\n- aABYjmP6wJVeA3SU_fjm\n- JCJqqNrMUFjD4aQ8snKK\n 282 \N 189.186.78.190 b62f85c0-d94a-49f1-8693-8ac27f4619a7 2020-02-14 17:41:01.283294 29440 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-12 17:51:03.168528000 Z\n- &1 2020-02-13 20:36:22.743105000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 18:11:55.511766982 Z\nsign_in_count:\n- 472\n- 473\n 949 \N 189.186.45.214 269155bc-3e8e-4e8d-9a55-e3d9901644c7 2020-02-14 18:11:55.519407 29441 2 User \N \N 2 User \N update ---\nunique_session_id:\n- MxWyztNpzDcE9DXHJGW1\n- fW7PkyAtRbNojtx1JsyG\n 950 \N 189.186.45.214 269155bc-3e8e-4e8d-9a55-e3d9901644c7 2020-02-14 18:11:55.54105 29442 826 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.986E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 986.0 189.186.45.214 dc2ee9b7-03ee-415d-a9f9-fb872e61091f 2020-02-14 18:16:04.838531 29443 2204 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 825\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-02-14\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-273\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 e2393599-9451-42f0-8170-6d870e139810 2020-02-14 18:23:05.241561 29444 924 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.78.190 e2393599-9451-42f0-8170-6d870e139810 2020-02-14 18:23:05.281708 29445 2204 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.78.190 7be07bfa-4f10-4e53-927f-344d6f8b1d6a 2020-02-14 18:23:19.262927 29446 2998 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 825\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 2204\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-273\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-273 189.186.78.190 7be07bfa-4f10-4e53-927f-344d6f8b1d6a 2020-02-14 18:23:19.299654 29447 2205 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 826\namount: !ruby/object:BigDecimal 18:0.97141E3\ntax: !ruby/object:BigDecimal 18:0.2759E2\ndiscount: !ruby/object:BigDecimal 18:0.799E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-02-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1085\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 90d80d2e-93f6-415d-8652-20a6c6c23835 2020-02-14 18:33:58.92252 29448 166 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.45.214 90d80d2e-93f6-415d-8652-20a6c6c23835 2020-02-14 18:33:58.980269 29449 2205 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 6ed6e9e9-7d1e-4760-877e-0839da4fbbb6 2020-02-14 18:34:05.632474 29450 2999 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 826\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2205\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1085\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1085 189.186.45.214 6ed6e9e9-7d1e-4760-877e-0839da4fbbb6 2020-02-14 18:34:05.657114 29451 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 23:08:07.185047000 Z\n- &1 2020-02-14 03:19:23.176353000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 19:14:17.004414090 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112175\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112175\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1406\n- 1407\n 2814 \N 189.186.78.190 d6eaa0fb-8f4d-4f5c-a955-eb8e202a95aa 2020-02-14 19:14:17.016508 29452 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mRVSfkgWVnFAXCtriXc_\n- M_JKUo3ksw5HiHZnuy-8\n 2815 \N 189.186.78.190 d6eaa0fb-8f4d-4f5c-a955-eb8e202a95aa 2020-02-14 19:14:17.041834 29453 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 17:26:07.170487000 Z\n- &1 2020-02-14 17:41:01.259355000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 19:21:33.842238212 Z\nsign_in_count:\n- 140\n- 141\n 283 \N 189.186.78.190 5080c3c1-f7e7-4dd0-bc06-b3fe52f24e3e 2020-02-14 19:21:33.847914 29454 21 User \N \N 21 User \N update ---\nunique_session_id:\n- JCJqqNrMUFjD4aQ8snKK\n- k1HsyV5iyg1ieuZkm5kJ\n 284 \N 189.186.78.190 5080c3c1-f7e7-4dd0-bc06-b3fe52f24e3e 2020-02-14 19:21:33.863321 29455 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 03:19:23.176353000 Z\n- &1 2020-02-14 19:14:17.004414000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 19:27:43.963462458 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112175\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1407\n- 1408\n 2816 \N 189.186.78.190 15575099-a768-4f5d-8bf8-0c46cb73000a 2020-02-14 19:27:43.971284 29456 4 User \N \N 4 User \N update ---\nunique_session_id:\n- M_JKUo3ksw5HiHZnuy-8\n- kEDh3x19x5fx1riigaTw\n 2817 \N 189.186.78.190 15575099-a768-4f5d-8bf8-0c46cb73000a 2020-02-14 19:27:43.989755 29457 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 17:41:01.259355000 Z\n- &1 2020-02-14 19:21:33.842238000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 19:28:45.967708614 Z\nsign_in_count:\n- 141\n- 142\n 285 \N 189.186.78.190 3c8af5c1-70ff-456a-87b0-1a506ec49033 2020-02-14 19:28:45.97466 29458 21 User \N \N 21 User \N update ---\nunique_session_id:\n- k1HsyV5iyg1ieuZkm5kJ\n- hs_R4cz2NefwHqsA2jZj\n 286 \N 189.186.78.190 3c8af5c1-70ff-456a-87b0-1a506ec49033 2020-02-14 19:28:45.990664 29459 1544 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.78.190 71be1318-5c60-4dbe-886e-69ce731bedd2 2020-02-14 19:29:09.086435 29460 1269 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.78.190 bf2be0ab-2c16-49a4-8ef9-c7ae75c36ef3 2020-02-14 19:29:20.695033 29461 477 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-02-14\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.78.190 d9a872dd-a722-4782-a92e-719dff4e8b12 2020-02-14 19:29:22.92484 29462 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 19:14:17.004414000 Z\n- &1 2020-02-14 19:27:43.963462000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 19:30:18.599281157 Z\nsign_in_count:\n- 1408\n- 1409\n 2818 \N 189.186.78.190 42a095b9-2eec-4afe-9fb2-594ca0432b00 2020-02-14 19:30:18.605778 29463 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kEDh3x19x5fx1riigaTw\n- "-qRze58Jk-PgDBrrsAVn"\n 2819 \N 189.186.78.190 42a095b9-2eec-4afe-9fb2-594ca0432b00 2020-02-14 19:30:18.624462 29464 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 19:21:33.842238000 Z\n- &1 2020-02-14 19:28:45.967708000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 19:52:22.154598079 Z\nsign_in_count:\n- 142\n- 143\n 287 \N 189.186.78.190 1dfc3260-8a98-4780-9fdb-ee5ffcdebc0d 2020-02-14 19:52:22.161342 29465 21 User \N \N 21 User \N update ---\nunique_session_id:\n- hs_R4cz2NefwHqsA2jZj\n- DsP_7VDiDJa7yWD6f4gN\n 288 \N 189.186.78.190 1dfc3260-8a98-4780-9fdb-ee5ffcdebc0d 2020-02-14 19:52:22.175787 29466 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 19:27:43.963462000 Z\n- &1 2020-02-14 19:30:18.599281000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 20:21:45.115523542 Z\nsign_in_count:\n- 1409\n- 1410\n 2820 \N 189.186.78.190 df88d8ad-c620-4a93-9d31-864e8135a99f 2020-02-14 20:21:45.122003 29467 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-qRze58Jk-PgDBrrsAVn"\n- DjJQZzhc5ws1xPwzArYw\n 2821 \N 189.186.78.190 df88d8ad-c620-4a93-9d31-864e8135a99f 2020-02-14 20:21:45.139727 29468 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 19:28:45.967708000 Z\n- &1 2020-02-14 19:52:22.154598000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 20:26:31.670689832 Z\nsign_in_count:\n- 143\n- 144\n 289 \N 189.186.78.190 c38a7d89-e9af-4720-9fa8-4da16f078739 2020-02-14 20:26:31.676712 29469 21 User \N \N 21 User \N update ---\nunique_session_id:\n- DsP_7VDiDJa7yWD6f4gN\n- MoqH6zMPGpXXv8CR2Rsz\n 290 \N 189.186.78.190 c38a7d89-e9af-4720-9fa8-4da16f078739 2020-02-14 20:26:31.691152 29470 974 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.78.190 7e7a8ec2-fad0-48d9-aee8-1b6e28dd6233 2020-02-14 20:27:30.222258 29471 974 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.78.190 36e3d501-3a90-4e5b-a59f-86fb95ea81c1 2020-02-14 20:27:34.324097 29472 478 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-02-14\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO Comercial a Almacen central creado. 189.186.78.190 b6951ec5-c598-4bac-a050-28499e306a83 2020-02-14 20:27:35.878289 29473 766 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.78.190 de88e655-c5cb-4684-a4e5-9739ac746bd0 2020-02-14 20:27:55.713843 29474 766 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.78.190 d1e6e9b6-60e5-4ce8-b6b5-351b1e6dc05b 2020-02-14 20:27:58.845243 29475 479 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2020-02-14\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.78.190 2b7e76f6-bc1b-4205-be78-6a8718effe5d 2020-02-14 20:28:14.380034 29476 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 22:23:28.784255000 Z\n- &1 2020-02-13 23:05:27.462963000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 20:28:30.326323426 Z\nsign_in_count:\n- 67\n- 68\n 136 \N 189.186.78.190 443e2a94-be0f-4974-8661-5add0f443bf7 2020-02-14 20:28:30.332887 29477 26 User \N \N 26 User \N update ---\nunique_session_id:\n- xPXPbykzp6xCLy1g9P4a\n- 1Vf9yczfXFbMVPpgpZVL\n 137 \N 189.186.78.190 443e2a94-be0f-4974-8661-5add0f443bf7 2020-02-14 20:28:30.34795 29478 509 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 9 \N 189.186.78.190 1dffea8a-cb1f-42a5-bb01-a132c7cd5d14 2020-02-14 20:28:47.63113 29479 509 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.78.190 05bf9087-4591-4b19-88a1-c235f6803d05 2020-02-14 20:28:50.627596 29480 410 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.78.190 ba6e4143-b742-4cf6-a9d4-e0f78d133d68 2020-02-14 20:29:00.707583 29481 410 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.78.190 4b9e9321-2c75-40fb-b51b-e398be88e94f 2020-02-14 20:29:04.082556 29482 411 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.78.190 5d9fb205-b0e1-48de-b7c9-3003405165b4 2020-02-14 20:29:35.168291 29483 480 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-02-14\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.78.190 c74a1f46-fad9-4fa2-a5c1-93476d04b398 2020-02-14 20:29:38.595908 29484 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 21:41:51.472380000 Z\n- &1 2020-02-13 22:11:39.298408000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 20:34:09.419376406 Z\nsign_in_count:\n- 67\n- 68\n 136 \N 189.186.78.190 a209811f-c2ea-4b6d-9722-370896a876fd 2020-02-14 20:34:09.427017 29485 25 User \N \N 25 User \N update ---\nunique_session_id:\n- tsB2tys9jS6Fx7BS1ueJ\n- Yg2UxuDx2S9rSMjx_ooi\n 137 \N 189.186.78.190 a209811f-c2ea-4b6d-9722-370896a876fd 2020-02-14 20:34:09.441579 29486 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 19:52:22.154598000 Z\n- &1 2020-02-14 20:26:31.670689000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 20:36:38.155538674 Z\nsign_in_count:\n- 144\n- 145\n 291 \N 189.186.78.190 a57038eb-2c17-4853-8556-205807c7a350 2020-02-14 20:36:38.162087 29487 21 User \N \N 21 User \N update ---\nunique_session_id:\n- MoqH6zMPGpXXv8CR2Rsz\n- 3tAy2wvTb5qxJBsW3AQJ\n 292 \N 189.186.78.190 a57038eb-2c17-4853-8556-205807c7a350 2020-02-14 20:36:38.178104 29488 477 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-14\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.45.214 4bbf55d8-ef90-4517-89ee-0a7af615cccf 2020-02-14 20:52:13.404076 29489 1623 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 638\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.45.214 4bbf55d8-ef90-4517-89ee-0a7af615cccf 2020-02-14 20:52:13.424939 29490 1602 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.45.214 4bbf55d8-ef90-4517-89ee-0a7af615cccf 2020-02-14 20:52:13.442721 29491 34 ProductsReturn \N \N 21 User \N create ---\nsale_id: 2203\nuser_id: 21\nreturn_code: PV3-D-6\npointsale_id: 3\nnew_amount: !ruby/object:BigDecimal 18:0.649E3\nreturned_amount: !ruby/object:BigDecimal 18:0.56E3\ndifference_amount: !ruby/object:BigDecimal 18:0.89E2\nis_money_returned: false\n 1 devolución PV3-D-6 creada. 189.186.78.190 42e26789-15d2-4af9-b769-9ba6ffe5e588 2020-02-14 20:54:16.223004 29492 830 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 7 \N 189.186.78.190 42e26789-15d2-4af9-b769-9ba6ffe5e588 2020-02-14 20:54:16.272907 29493 838 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.78.190 42e26789-15d2-4af9-b769-9ba6ffe5e588 2020-02-14 20:54:16.321458 29494 3000 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 825\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.89E2\nmove_type: '1'\nsale_id: 2203\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: 34\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV3-D-6 189.186.78.190 25dca18f-fe22-40ee-a7c8-b9843db299dc 2020-02-14 20:54:24.162887 29495 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 19:30:18.599281000 Z\n- &1 2020-02-14 20:21:45.115523000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 22:28:46.666202876 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946157\n mask_addr: 4294967295\nsign_in_count:\n- 1410\n- 1411\n 2822 \N 200.68.181.173 8d9ebea9-61ac-4b94-941a-287259e54fa8 2020-02-14 22:28:46.673335 29496 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DjJQZzhc5ws1xPwzArYw\n- VtBaMbVoFxqmfaLWz9m5\n 2823 \N 200.68.181.173 8d9ebea9-61ac-4b94-941a-287259e54fa8 2020-02-14 22:28:46.691945 29497 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-01-29 22:33:07.075897000 Z\n- &1 2020-01-30 21:37:04.617734000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 22:49:16.971213702 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\nsign_in_count:\n- 159\n- 160\n 320 \N 189.186.45.214 9ce87b22-e3a5-4033-8e9c-d5f45182d29e 2020-02-14 22:49:16.983486 29498 1 User \N \N 1 User \N update ---\nunique_session_id:\n- xu6VyGjuWjk2_mSPyA1j\n- CoGdr1CiUNANS9auUfGq\n 321 \N 189.186.45.214 9ce87b22-e3a5-4033-8e9c-d5f45182d29e 2020-02-14 22:49:17.006529 29499 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 20:36:22.743105000 Z\n- &1 2020-02-14 18:11:55.511766000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 23:00:20.089728424 Z\nsign_in_count:\n- 473\n- 474\n 951 \N 189.186.45.214 9da90cc4-6633-4d32-95f1-003bb21cf923 2020-02-14 23:00:20.098261 29500 2 User \N \N 2 User \N update ---\nunique_session_id:\n- fW7PkyAtRbNojtx1JsyG\n- ZHEBCryoJJnnZ7NuzwAf\n 952 \N 189.186.45.214 9da90cc4-6633-4d32-95f1-003bb21cf923 2020-02-14 23:00:20.115696 29501 2206 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 826\namount: !ruby/object:BigDecimal 18:0.239E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.239E3\nstatus: 0\ndate_sale: 2020-02-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1086\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 ac2c04b5-2611-4ce9-a616-7c820117dea0 2020-02-14 23:26:11.257475 29502 1293 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.45.214 ac2c04b5-2611-4ce9-a616-7c820117dea0 2020-02-14 23:26:11.291165 29503 2206 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 1ada859c-08be-4810-9896-5e1eb93da935 2020-02-14 23:27:02.453714 29504 3001 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 826\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.239E3\nmove_type: '1'\nsale_id: 2206\ncardnumber: 3612\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1086\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1086 189.186.45.214 1ada859c-08be-4810-9896-5e1eb93da935 2020-02-14 23:27:02.477372 29505 2207 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 825\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-02-14\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-274\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 75b01a1d-110d-46e3-935c-f695251cd722 2020-02-14 23:32:26.873418 29506 1035 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 24 \N 189.186.78.190 75b01a1d-110d-46e3-935c-f695251cd722 2020-02-14 23:32:26.914113 29507 2207 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.78.190 d2def983-d649-4d93-b605-29d39ad87bf1 2020-02-14 23:32:35.377353 29508 3002 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 825\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2099E4\nmove_type: '1'\nsale_id: 2207\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-274\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.21E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-274 189.186.78.190 d2def983-d649-4d93-b605-29d39ad87bf1 2020-02-14 23:32:35.401229 29509 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2020-01-15 18:03:56.776176000 Z\n- &1 2020-01-26 02:21:02.305694000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-14 23:44:07.694482472 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124061\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\nsign_in_count:\n- 50\n- 51\n 102 \N 189.186.45.214 a5bd2ca7-582e-4fd2-9bd3-8093dc2e091b 2020-02-14 23:44:07.702373 29510 24 User \N \N 24 User \N update ---\nunique_session_id:\n- y_QWkF3ME8z8QCcHL7Tx\n- 7WHLzjhHaVQyaNcUhFng\n 103 \N 189.186.45.214 a5bd2ca7-582e-4fd2-9bd3-8093dc2e091b 2020-02-14 23:44:07.718992 29511 827 OpenCashRegister \N \N 24 User \N create ---\ncash_register_id: 2\nuser_id: 24\ninitial_cash: !ruby/object:BigDecimal 18:0.972E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 972.0 189.186.45.214 4e378586-8acd-4978-b57d-29a3ce9c3870 2020-02-14 23:44:14.780278 29512 2208 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 826\namount: !ruby/object:BigDecimal 18:0.262942E4\ntax: !ruby/object:BigDecimal 18:0.2758E2\ndiscount: !ruby/object:BigDecimal 18:0.2357E4\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2020-02-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1087\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 79872ee5-6806-4eb8-bd22-10706a72cd2c 2020-02-15 00:21:23.3793 29513 1007 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.45.214 79872ee5-6806-4eb8-bd22-10706a72cd2c 2020-02-15 00:21:23.414219 29514 1559 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.45.214 79872ee5-6806-4eb8-bd22-10706a72cd2c 2020-02-15 00:21:23.452857 29515 233 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.45.214 79872ee5-6806-4eb8-bd22-10706a72cd2c 2020-02-15 00:21:23.48251 29516 2208 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 f53608e2-a588-494f-b8c6-077e1e776f99 2020-02-15 00:21:29.964991 29517 3003 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 826\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 2208\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1087\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1087 189.186.45.214 f53608e2-a588-494f-b8c6-077e1e776f99 2020-02-15 00:21:29.989271 29518 2209 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 827\namount: !ruby/object:BigDecimal 18:0.449E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.199E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-02-14\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-846\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 5d8d1c9b-ec02-4a42-a8de-54752475052d 2020-02-15 01:19:52.125922 29519 1124 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.45.214 5d8d1c9b-ec02-4a42-a8de-54752475052d 2020-02-15 01:19:52.160778 29520 2209 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 7345fd9f-ffde-433f-9e63-35014d2da916 2020-02-15 01:19:57.231389 29521 3004 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 827\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 2209\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-846\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.25E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-846 189.186.45.214 7345fd9f-ffde-433f-9e63-35014d2da916 2020-02-15 01:19:57.261965 29522 2210 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 827\namount: !ruby/object:BigDecimal 18:0.30172E3\ntax: !ruby/object:BigDecimal 18:0.4828E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2020-02-14\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-847\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 17603567-7c2f-4fdd-8047-a4935ae5e37e 2020-02-15 01:23:11.993104 29523 365 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.43E2\n- !ruby/object:BigDecimal 18:0.42E2\n 25 \N 189.186.45.214 17603567-7c2f-4fdd-8047-a4935ae5e37e 2020-02-15 01:23:12.0236 29524 2210 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 211099db-2817-4288-8747-b081918e7859 2020-02-15 01:23:30.169077 29525 3005 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 827\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.35E3\nmove_type: '1'\nsale_id: 2210\ncardnumber: 4596\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-847\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-847 189.186.45.214 211099db-2817-4288-8747-b081918e7859 2020-02-15 01:23:30.193073 29526 842 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 826\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.739E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.986E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1486E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.45.214 ac3e2846-63a3-46db-acc8-17869081d672 2020-02-15 02:01:06.86348 29527 826 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.214 ac3e2846-63a3-46db-acc8-17869081d672 2020-02-15 02:01:06.888822 29528 843 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 827\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.6E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.722E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1222E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.45.214 1ee90bb7-3a2a-4bd6-8cb0-5ee18cc5164e 2020-02-15 02:03:17.376932 29529 827 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.214 1ee90bb7-3a2a-4bd6-8cb0-5ee18cc5164e 2020-02-15 02:03:17.393442 29530 844 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 825\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.3587E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.27E4\ncash_fund: !ruby/object:BigDecimal 18:0.1124E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3824E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 9e4fb1fd-ae7f-46af-bd00-570f68969542 2020-02-15 03:02:35.19445 29531 825 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 9e4fb1fd-ae7f-46af-bd00-570f68969542 2020-02-15 03:02:35.215331 29532 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 18:11:55.511766000 Z\n- &1 2020-02-14 23:00:20.089728000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-15 17:02:56.348179350 Z\nsign_in_count:\n- 474\n- 475\n 953 \N 189.186.45.214 a01f9d45-068d-4f84-89b1-d769263f5175 2020-02-15 17:02:56.382318 29533 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ZHEBCryoJJnnZ7NuzwAf\n- HFctmEguoa_zEDHxqwvm\n 954 \N 189.186.45.214 a01f9d45-068d-4f84-89b1-d769263f5175 2020-02-15 17:02:56.411687 29534 828 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.986E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 986.0 189.186.45.214 939d0ccd-b31b-4108-a15f-3fca72898579 2020-02-15 17:03:09.53791 29535 2211 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 828\namount: !ruby/object:BigDecimal 18:0.879E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.779E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-02-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1088\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 a297c3c4-00de-440b-a457-75aa48a9ebff 2020-02-15 17:03:45.089347 29536 1007 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.45.214 a297c3c4-00de-440b-a457-75aa48a9ebff 2020-02-15 17:03:45.135803 29537 2211 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 ebab1e92-3178-41fa-a280-d9da34d729a2 2020-02-15 17:03:49.709 29538 3006 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 828\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2211\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1088\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1088 189.186.45.214 ebab1e92-3178-41fa-a280-d9da34d729a2 2020-02-15 17:03:49.739024 29539 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-01-30 21:37:04.617734000 Z\n- &1 2020-02-14 22:49:16.971213000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-15 17:11:27.012919522 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\nsign_in_count:\n- 160\n- 161\n 322 \N 189.186.45.214 e4868ba9-efc3-44d3-b3bd-0e10f90c9581 2020-02-15 17:11:27.046063 29540 1 User \N \N 1 User \N update ---\nunique_session_id:\n- CoGdr1CiUNANS9auUfGq\n- 1hMpHzy1mHvtuR5zyKxh\n 323 \N 189.186.45.214 e4868ba9-efc3-44d3-b3bd-0e10f90c9581 2020-02-15 17:11:27.074407 29541 227 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-96\namount: !ruby/object:BigDecimal 18:0.337E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.337E3\nobservations: ''\npurchase_date: 2020-02-15\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-96 por $ 337.0 MXN creada. 189.186.45.214 73c46629-4870-414a-b412-57673b3d702f 2020-02-15 17:15:06.0774 29542 1068 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.45.214 73c46629-4870-414a-b412-57673b3d702f 2020-02-15 17:15:06.111871 29543 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 20:26:31.670689000 Z\n- &1 2020-02-14 20:36:38.155538000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-15 17:49:54.124999670 Z\nsign_in_count:\n- 145\n- 146\n 293 \N 189.186.78.190 7bdf01d9-8209-45e1-9f2d-d96e6ccceb8c 2020-02-15 17:49:54.130929 29544 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 3tAy2wvTb5qxJBsW3AQJ\n- ymHhAqvtcDJpWAuXRd-z\n 294 \N 189.186.78.190 7bdf01d9-8209-45e1-9f2d-d96e6ccceb8c 2020-02-15 17:49:54.148011 29545 829 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1124E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1124.0 189.186.78.190 517f84e3-0177-4000-a9c7-d02fbb0af917 2020-02-15 17:52:37.563774 29546 2212 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 828\namount: !ruby/object:BigDecimal 18:0.303462E4\ntax: !ruby/object:BigDecimal 18:0.4138E2\ndiscount: !ruby/object:BigDecimal 18:0.2576E4\ntotal: !ruby/object:BigDecimal 18:0.5E3\nstatus: 0\ndate_sale: 2020-02-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1089\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 99b4a7f7-fb5f-415d-873b-e41703f4ffff 2020-02-15 19:14:44.959749 29547 191 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.45.214 99b4a7f7-fb5f-415d-873b-e41703f4ffff 2020-02-15 19:14:45.030532 29548 1007 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.45.214 99b4a7f7-fb5f-415d-873b-e41703f4ffff 2020-02-15 19:14:45.082146 29549 167 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 189.186.45.214 99b4a7f7-fb5f-415d-873b-e41703f4ffff 2020-02-15 19:14:45.147039 29550 1059 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.45.214 99b4a7f7-fb5f-415d-873b-e41703f4ffff 2020-02-15 19:14:45.178152 29551 2212 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 5c11cf1f-4930-42f2-902b-74e4fd2ba2c2 2020-02-15 19:14:49.457286 29552 3007 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 828\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 2212\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1089\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1089 189.186.45.214 5c11cf1f-4930-42f2-902b-74e4fd2ba2c2 2020-02-15 19:14:49.488212 29553 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2020-01-26 02:21:02.305694000 Z\n- &1 2020-02-14 23:44:07.694482000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-15 19:25:13.594298548 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117496\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\nsign_in_count:\n- 51\n- 52\n 104 \N 189.186.45.214 d5812c0c-5c13-4641-bb39-e1fa6ac9b5a1 2020-02-15 19:25:13.60345 29554 24 User \N \N 24 User \N update ---\nunique_session_id:\n- 7WHLzjhHaVQyaNcUhFng\n- JzkWz6zq8yruAf2k9s3T\n 105 \N 189.186.45.214 d5812c0c-5c13-4641-bb39-e1fa6ac9b5a1 2020-02-15 19:25:13.621294 29555 830 OpenCashRegister \N \N 24 User \N create ---\ncash_register_id: 2\nuser_id: 24\ninitial_cash: !ruby/object:BigDecimal 18:0.722E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 722.0 189.186.45.214 816f34fd-da9d-486a-b947-8c38577e7e26 2020-02-15 19:25:18.666129 29556 2213 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 830\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.229E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-02-15\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-848\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 0db14f6d-75ee-4ae4-ba8e-7ff8bf931e87 2020-02-15 19:25:53.915914 29557 1000 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.45.214 0db14f6d-75ee-4ae4-ba8e-7ff8bf931e87 2020-02-15 19:25:53.951836 29559 3008 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 830\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 2213\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-848\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-848 189.186.45.214 550b3073-0914-4d5a-b37c-c32a2b19f09e 2020-02-15 19:25:58.782869 29560 2214 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 828\namount: !ruby/object:BigDecimal 18:0.1928E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.829E3\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2020-02-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1090\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 c776ec23-3734-4d64-b9eb-793e3a498289 2020-02-15 19:33:54.16037 29561 1301 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.45.214 c776ec23-3734-4d64-b9eb-793e3a498289 2020-02-15 19:33:54.199911 29562 1436 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.45.214 c776ec23-3734-4d64-b9eb-793e3a498289 2020-02-15 19:33:54.241818 29563 2214 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 c701b9f3-227b-4858-b0f6-7890691e6173 2020-02-15 19:34:03.273191 29564 3009 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 828\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E2\nmove_type: '1'\nsale_id: 2214\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1090\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1090 189.186.45.214 c701b9f3-227b-4858-b0f6-7890691e6173 2020-02-15 19:34:03.308822 29565 3010 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 828\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1049E4\nmove_type: '1'\nsale_id: 2214\ncardnumber: 590\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1090\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1090 189.186.45.214 808531d1-457e-4ec1-aed6-e507f7408074 2020-02-15 19:34:22.606444 29566 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 20:21:45.115523000 Z\n- &1 2020-02-14 22:28:46.666202000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-15 19:51:19.552461418 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946157\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946157\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945819\n mask_addr: 4294967295\nsign_in_count:\n- 1411\n- 1412\n 2824 \N 200.68.180.91 0b564c5a-67fe-4ab3-ac79-27fc87736be5 2020-02-15 19:51:19.560566 29567 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VtBaMbVoFxqmfaLWz9m5\n- c6ndAU3tiexkY3ZATZKF\n 2825 \N 200.68.180.91 0b564c5a-67fe-4ab3-ac79-27fc87736be5 2020-02-15 19:51:19.581247 29568 228 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-97\namount: !ruby/object:BigDecimal 18:0.2E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2E3\nobservations: ''\npurchase_date: 2020-02-15\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-97 por $ 200.0 MXN creada. 189.186.45.214 32c59674-40a6-49e0-ba91-0ec0e087e01f 2020-02-15 21:30:31.866126 29569 1059 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.45.214 32c59674-40a6-49e0-ba91-0ec0e087e01f 2020-02-15 21:30:31.895654 29570 2215 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 830\namount: !ruby/object:BigDecimal 18:0.449E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1796E3\ntotal: !ruby/object:BigDecimal 18:0.2694E3\nstatus: 0\ndate_sale: 2020-02-15\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-849\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 5c14201b-c2c4-4229-9ca7-791867aa2ee2 2020-02-15 22:16:40.907222 29571 1450 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.45.214 5c14201b-c2c4-4229-9ca7-791867aa2ee2 2020-02-15 22:16:40.93735 29572 2215 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 6cef2bd7-8004-4ce7-9782-e92b64b7b1dc 2020-02-15 22:16:46.19054 29573 3011 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 830\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2694E3\nmove_type: '1'\nsale_id: 2215\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-849\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.306E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-849 189.186.45.214 6cef2bd7-8004-4ce7-9782-e92b64b7b1dc 2020-02-15 22:16:46.214101 29574 2216 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 828\namount: !ruby/object:BigDecimal 18:0.58521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.499E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-02-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1091\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 377d9304-4854-4146-a7ff-a28a4bd5618d 2020-02-16 00:00:34.32541 29575 1562 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.45.214 377d9304-4854-4146-a7ff-a28a4bd5618d 2020-02-16 00:00:34.372231 29576 2216 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 c0be83f4-d0a2-4609-bb54-28407cc898d1 2020-02-16 00:00:38.33442 29577 3012 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 828\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2216\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1091\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1091 189.186.45.214 c0be83f4-d0a2-4609-bb54-28407cc898d1 2020-02-16 00:00:38.359299 29600 831 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.818E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 818.0 189.186.45.214 db8894fb-cf6f-4576-bc22-0e49b537c391 2020-02-16 21:50:30.453104 30002 1642 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.20.129 3d5c3783-0d4c-4dc2-ab60-7e2b7eaa3eaa 2020-02-20 01:50:08.019258 29578 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 22:28:46.666202000 Z\n- &1 2020-02-15 19:51:19.552461000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-16 00:53:45.918293746 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946157\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945819\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945819\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107784\n mask_addr: 4294967295\nsign_in_count:\n- 1412\n- 1413\n 2826 \N 187.149.13.200 2fe136d8-fde1-4379-9437-7ccbbc9dcb8a 2020-02-16 00:53:45.927896 29579 4 User \N \N 4 User \N update ---\nunique_session_id:\n- c6ndAU3tiexkY3ZATZKF\n- i1_oQHwzz8U8A8R-EaLh\n 2827 \N 187.149.13.200 2fe136d8-fde1-4379-9437-7ccbbc9dcb8a 2020-02-16 00:53:45.968727 29580 2217 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 829\namount: !ruby/object:BigDecimal 18:0.48521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-02-15\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-275\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 eacc4c18-07be-450c-92b1-d53dd5979b4d 2020-02-16 00:58:14.008221 29581 1513 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.78.190 eacc4c18-07be-450c-92b1-d53dd5979b4d 2020-02-16 00:58:14.053008 29582 2217 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.78.190 769565c0-c245-4b6d-8d2b-507c80a8d764 2020-02-16 00:58:25.416873 29583 3013 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 829\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 2217\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-275\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.1E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-275 189.186.78.190 769565c0-c245-4b6d-8d2b-507c80a8d764 2020-02-16 00:58:25.448962 29584 2218 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 830\namount: !ruby/object:BigDecimal 18:0.1129E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.4516E3\ntotal: !ruby/object:BigDecimal 18:0.6774E3\nstatus: 0\ndate_sale: 2020-02-15\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-850\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 bbabb9f9-3247-47a4-95f0-a163e3e37bca 2020-02-16 01:59:09.824515 29585 1088 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.45.214 bbabb9f9-3247-47a4-95f0-a163e3e37bca 2020-02-16 01:59:09.899995 29586 2218 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 9af7778a-fe98-40bb-b335-2cbfcddef91e 2020-02-16 01:59:16.819108 29587 3014 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 830\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6774E3\nmove_type: '1'\nsale_id: 2218\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-850\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.226E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-850 189.186.45.214 9af7778a-fe98-40bb-b335-2cbfcddef91e 2020-02-16 01:59:16.851182 29588 281 Expense \N \N 24 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 830\nquantity: !ruby/object:BigDecimal 18:0.11E4\nstatus: 1\nobservations: SUELDO KEYLA\nexpense_date: 2020-02-15\nexpense_code: PV2-E-58\n 1 Egreso por 1100.0 registrado 189.186.45.214 428dfda3-3f8e-40b6-a0d2-9f4a471aba8c 2020-02-16 02:16:07.77363 29589 3015 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 830\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.11E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 281\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.45.214 428dfda3-3f8e-40b6-a0d2-9f4a471aba8c 2020-02-16 02:16:07.810699 29590 845 CashOut \N \N 24 User \N create ---\nopen_cash_register_id: 830\nuser_id: 24\namount_in: !ruby/object:BigDecimal 18:0.11968E4\namount_out: !ruby/object:BigDecimal 18:0.11E4\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.818E3\nphysical_cash: !ruby/object:BigDecimal 18:0.818E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.45.214 08108157-4fab-4d6a-af13-b0a7c99a9470 2020-02-16 02:16:42.710612 29591 830 OpenCashRegister \N \N 24 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.214 08108157-4fab-4d6a-af13-b0a7c99a9470 2020-02-16 02:16:42.730896 29592 846 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 828\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1799E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.56E3\ncash_fund: !ruby/object:BigDecimal 18:0.1176E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1736E4\nobservations: retire $560 que es $355 en pago de aretes con tarjeta y $205 diferencia\n de pago de sueldo de rocio\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.45.214 307cce7e-35fc-49f1-8fba-3684a85c29a7 2020-02-16 02:32:35.146303 29593 828 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.214 307cce7e-35fc-49f1-8fba-3684a85c29a7 2020-02-16 02:32:35.167782 29594 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 20:36:38.155538000 Z\n- &1 2020-02-15 17:49:54.124999000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-16 02:54:42.019997523 Z\nsign_in_count:\n- 146\n- 147\n 295 \N 189.186.78.190 226c0a66-4327-4912-b9b0-ac715c58f3cc 2020-02-16 02:54:42.028184 29595 21 User \N \N 21 User \N update ---\nunique_session_id:\n- ymHhAqvtcDJpWAuXRd-z\n- 3F7hqjyB5homYzs6kEnF\n 296 \N 189.186.78.190 226c0a66-4327-4912-b9b0-ac715c58f3cc 2020-02-16 02:54:42.049628 29596 847 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 829\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1224E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1224E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 39787255-0738-4727-84aa-0c402d6cf304 2020-02-16 02:56:21.535474 29597 829 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 39787255-0738-4727-84aa-0c402d6cf304 2020-02-16 02:56:21.553857 29598 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-12 17:03:04.143917000 Z\n- &1 2020-02-14 17:19:47.878952000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-16 17:22:45.343585208 Z\nsign_in_count:\n- 101\n- 102\n 204 \N 189.186.45.214 180d1802-9f05-4772-98e9-fbb3c251df50 2020-02-16 17:22:45.373801 29599 27 User \N \N 27 User \N update ---\nunique_session_id:\n- 2zz1VeZs1RTWRTdEdkd8\n- y63rk3yD7eHjZ-ErZxk4\n 205 \N 189.186.45.214 180d1802-9f05-4772-98e9-fbb3c251df50 2020-02-16 17:22:45.405208 30003 2225 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.129 486b5a02-b125-41d9-8f1a-d449b81bb9f9 2020-02-20 01:50:41.500914 29601 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-15 17:49:54.124999000 Z\n- &1 2020-02-16 02:54:42.019997000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-17 18:46:15.494238600 Z\nsign_in_count:\n- 147\n- 148\n 297 \N 189.186.78.190 fe3033f0-2e86-4083-9cee-99d3340807b1 2020-02-17 18:46:15.535761 29602 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 3F7hqjyB5homYzs6kEnF\n- KdJfL6XsWPsUD1TW476b\n 298 \N 189.186.78.190 fe3033f0-2e86-4083-9cee-99d3340807b1 2020-02-17 18:46:15.559593 29603 832 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1224E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1224.0 189.186.78.190 a21f665b-71a6-416f-8570-5c09642bce00 2020-02-17 18:47:29.230598 29604 2219 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 832\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-02-17\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-276\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 0bdc069d-bced-4c59-9c0e-b9213be0c69c 2020-02-17 20:50:06.782638 29605 1583 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.78.190 0bdc069d-bced-4c59-9c0e-b9213be0c69c 2020-02-17 20:50:06.85218 29606 2219 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.78.190 5180884a-f22d-498c-9cc5-8e8f7df23baa 2020-02-17 20:50:22.741522 29607 3016 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 832\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 2219\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-276\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-276 189.186.78.190 5180884a-f22d-498c-9cc5-8e8f7df23baa 2020-02-17 20:50:22.770521 29608 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-15 19:51:19.552461000 Z\n- &1 2020-02-16 00:53:45.918293000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-17 21:17:35.069644876 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945819\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107784\n mask_addr: 4294967295\nsign_in_count:\n- 1413\n- 1414\n 2828 \N 187.149.13.200 ddac0079-c4f4-4c0b-a1af-799c29cbdebb 2020-02-17 21:17:35.078164 29609 4 User \N \N 4 User \N update ---\nunique_session_id:\n- i1_oQHwzz8U8A8R-EaLh\n- eDQdrsxP9qrph-8zjz9j\n 2829 \N 187.149.13.200 ddac0079-c4f4-4c0b-a1af-799c29cbdebb 2020-02-17 21:17:35.101563 29610 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 23:00:20.089728000 Z\n- &1 2020-02-15 17:02:56.348179000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-17 22:45:38.810496822 Z\nsign_in_count:\n- 475\n- 476\n 955 \N 189.186.45.214 46c41e40-9523-4bd7-a6a3-1520d00a7673 2020-02-17 22:45:38.816429 29611 2 User \N \N 2 User \N update ---\nunique_session_id:\n- HFctmEguoa_zEDHxqwvm\n- yhvRxgUKdCUEyGZL-k52\n 956 \N 189.186.45.214 46c41e40-9523-4bd7-a6a3-1520d00a7673 2020-02-17 22:45:38.832878 29612 833 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1176E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1176.0 189.186.45.214 e41c5e7f-0779-4378-999c-7da23449d54e 2020-02-17 22:46:19.041338 29613 2220 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 833\namount: !ruby/object:BigDecimal 18:0.68693E3\ntax: !ruby/object:BigDecimal 18:0.6207E2\ndiscount: !ruby/object:BigDecimal 18:0.299E3\ntotal: !ruby/object:BigDecimal 18:0.45E3\nstatus: 0\ndate_sale: 2020-02-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1092\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 75e8efb1-059d-42bf-a9a6-5275b5e54723 2020-02-17 22:46:55.736543 29614 197 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 29 \N 189.186.45.214 75e8efb1-059d-42bf-a9a6-5275b5e54723 2020-02-17 22:46:55.76628 29615 2220 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 f2335e8e-4745-4ee5-a2eb-b788355a0717 2020-02-17 22:47:02.87188 29616 3017 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 833\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.45E3\nmove_type: '1'\nsale_id: 2220\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1092\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.45E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1092 189.186.45.214 f2335e8e-4745-4ee5-a2eb-b788355a0717 2020-02-17 22:47:02.898886 29617 282 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 833\nquantity: !ruby/object:BigDecimal 18:0.17E3\nstatus: 1\nobservations: "$150 pizza $20 barredores de ayuntamiento"\nexpense_date: 2020-02-17\nexpense_code: PV1-E-196\n 1 Egreso por 170.0 registrado 189.186.45.214 d877005f-a5a5-416c-b25a-80de0f09e7eb 2020-02-17 23:57:05.939058 29618 3018 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 833\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.17E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 282\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.45.214 d877005f-a5a5-416c-b25a-80de0f09e7eb 2020-02-17 23:57:05.962282 29619 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 17:19:47.878952000 Z\n- &1 2020-02-16 17:22:45.343585000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-18 00:00:59.089182161 Z\nsign_in_count:\n- 102\n- 103\n 206 \N 189.186.45.214 63bd81c9-101e-4a11-98fe-9c911c208a79 2020-02-18 00:00:59.09885 29620 27 User \N \N 27 User \N update ---\nunique_session_id:\n- y63rk3yD7eHjZ-ErZxk4\n- DbvoyyeByx5VsiZtjecw\n 207 \N 189.186.45.214 63bd81c9-101e-4a11-98fe-9c911c208a79 2020-02-18 00:00:59.114965 29621 2221 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 831\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2396E3\ntotal: !ruby/object:BigDecimal 18:0.3594E3\nstatus: 0\ndate_sale: 2020-02-17\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-851\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.45.214 dc039b33-9683-4f42-bf4b-2f2f6bac1e1a 2020-02-18 00:10:29.556457 29622 550 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.45.214 dc039b33-9683-4f42-bf4b-2f2f6bac1e1a 2020-02-18 00:10:29.586636 29623 2221 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.45.214 b4bfd548-c301-4c40-ba5c-1cd7e807a393 2020-02-18 00:10:36.379675 29649 983 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.78.190 3490a8aa-bc40-4899-8f69-9462775a0703 2020-02-18 18:13:54.070389 44788 1522 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1522'\n is_parent: false\n sku: CHA-1522\n name: CHA-0029\n description: SUETER TIPO BLUSON CON PERLAS THINKABLE\n price_base: '275.0'\n price_sale: '699.0'\n img_product: 73F3E88B-1E00-4B18-9393-C3FA20323033.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001522'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 23:54:42.609318'\n updated_at: &12 2020-11-04 00:18:11.219980446 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1522'\n sku: CHA-1522\n name: CHA-0029\n description: SUETER TIPO BLUSON CON PERLAS THINKABLE\n price_base: '275.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 23:54:42.609318'\n updated_at: '2020-11-03 23:54:42.643062'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001522'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1522'\n type: *3\n value: 1522\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-1522\n type: *7\n value: CHA-1522\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0029\n type: *8\n value: CHA-0029\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: SUETER TIPO BLUSON CON PERLAS THINKABLE\n type: *6\n value: SUETER TIPO BLUSON CON PERLAS THINKABLE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '275.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.275E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 73F3E88B-1E00-4B18-9393-C3FA20323033.jpeg\n type: *2\n value: 73F3E88B-1E00-4B18-9393-C3FA20323033.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001522'\n type: *2\n value: '0001522'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 23:54:42.609318'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 73F3E88B-1E00-4B18-9393-C3FA20323033.jpeg\n 3 El producto CHA-1522 fue modificado. 187.149.136.226 99f128c2-3a6e-4512-b064-2ed5c5b0f1e8 2020-11-04 00:18:11.266427 29624 3019 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 831\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3594E3\nmove_type: '1'\nsale_id: 2221\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-851\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1406E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-851 189.186.45.214 b4bfd548-c301-4c40-ba5c-1cd7e807a393 2020-02-18 00:10:36.403874 29625 3020 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 831\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2221\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-851\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.5E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-851 189.186.45.214 2abdfb89-0498-4198-8f2b-af6916f670f8 2020-02-18 00:10:36.596225 29626 3020 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 831\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2221\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-851\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.5E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.45.214 465a10f1-ee5f-4eb0-bff1-2b897879bd43 2020-02-18 00:10:38.10129 29627 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-16 00:53:45.918293000 Z\n- &1 2020-02-17 21:17:35.069644000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-18 01:14:54.844392031 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1414\n- 1415\n 2830 \N 189.186.78.190 76c10d1a-8569-4a45-b775-556ae660b4a7 2020-02-18 01:14:54.872121 29628 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eDQdrsxP9qrph-8zjz9j\n- RUsfDRJyjz_7iv1bf13o\n 2831 \N 189.186.78.190 76c10d1a-8569-4a45-b775-556ae660b4a7 2020-02-18 01:14:54.904526 29629 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-16 02:54:42.019997000 Z\n- &1 2020-02-17 18:46:15.494238000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-18 02:47:39.523221870 Z\nsign_in_count:\n- 148\n- 149\n 299 \N 189.186.78.190 90af701f-e211-4cf6-91a1-44dda195038c 2020-02-18 02:47:39.542262 29630 21 User \N \N 21 User \N update ---\nunique_session_id:\n- KdJfL6XsWPsUD1TW476b\n- 9DFd6w8KASaKSbhGmgpL\n 300 \N 189.186.78.190 90af701f-e211-4cf6-91a1-44dda195038c 2020-02-18 02:47:39.562415 29631 848 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 832\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.999E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1223E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2223E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 33849654-ea19-47c6-a58c-223cdeba5971 2020-02-18 02:53:06.26287 29632 832 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 33849654-ea19-47c6-a58c-223cdeba5971 2020-02-18 02:53:06.278514 29633 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-16 17:22:45.343585000 Z\n- &1 2020-02-18 00:00:59.089182000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-18 02:59:06.711454771 Z\nsign_in_count:\n- 103\n- 104\n 208 \N 189.186.45.214 26423bf4-7c3c-4e00-891e-0226580b86fc 2020-02-18 02:59:06.717759 29634 27 User \N \N 27 User \N update ---\nunique_session_id:\n- DbvoyyeByx5VsiZtjecw\n- Yy4wHkFUgGnZJCLRDv15\n 209 \N 189.186.45.214 26423bf4-7c3c-4e00-891e-0226580b86fc 2020-02-18 02:59:06.732995 29635 849 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 831\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.3594E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1177E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1177E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.45.214 a1b7a97f-966f-4cc4-b842-1052795729d1 2020-02-18 02:59:46.569032 29636 831 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.214 a1b7a97f-966f-4cc4-b842-1052795729d1 2020-02-18 02:59:46.582518 29637 850 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 833\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.45E3\namount_out: !ruby/object:BigDecimal 18:0.17E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.4E3\ncash_fund: !ruby/object:BigDecimal 18:0.1056E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1456E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.45.214 1a87ddad-f86f-4c9b-984b-69b930677d06 2020-02-18 03:09:57.916413 29638 833 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.45.214 1a87ddad-f86f-4c9b-984b-69b930677d06 2020-02-18 03:09:57.929595 29639 834 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1177E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1177.0 189.186.45.214 26fe0e90-b664-415c-bd56-d268f2e3cc5c 2020-02-18 17:11:02.56433 29640 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-17 18:46:15.494238000 Z\n- &1 2020-02-18 02:47:39.523221000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-18 17:44:08.887755838 Z\nsign_in_count:\n- 149\n- 150\n 301 \N 189.186.78.190 234668ab-c5b8-4b22-9658-61549c26fb8c 2020-02-18 17:44:08.895653 29641 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 9DFd6w8KASaKSbhGmgpL\n- tdXhrxsxicb6aGK6ZAx2\n 302 \N 189.186.78.190 234668ab-c5b8-4b22-9658-61549c26fb8c 2020-02-18 17:44:08.914074 29642 956 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.78.190 184b2e9b-fa3e-4d16-a0f6-da9eb74fd751 2020-02-18 18:13:15.25157 29643 956 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.78.190 190f7d5d-d469-45dc-874d-938039b3be90 2020-02-18 18:13:18.237922 29644 795 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.78.190 15ec8998-edcc-4944-a210-9089edd6340a 2020-02-18 18:13:24.711497 29645 795 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.78.190 40c7a84c-24b2-4b5b-9117-800ecd27d693 2020-02-18 18:13:27.812037 29646 983 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.78.190 8e64ac1a-ffa8-46fd-ab80-28ad31308a05 2020-02-18 18:13:36.218066 29647 1528 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.78.190 a4d14357-93d6-4934-8f07-de33bf9489c7 2020-02-18 18:13:48.289648 29648 1528 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.78.190 96d0aa56-0090-4cd0-9e84-8421608bdde5 2020-02-18 18:13:51.662302 29650 481 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2020-02-18\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.78.190 b662f3b9-4eba-401b-b99b-eb82fbff92af 2020-02-18 18:13:56.651127 29651 481 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-18\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 189.186.45.214 053af2ca-56b1-4dc3-bfe4-8232880b914c 2020-02-18 19:18:51.481951 29652 565 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.45.214 053af2ca-56b1-4dc3-bfe4-8232880b914c 2020-02-18 19:18:51.512862 29653 1624 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 685\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.45.214 053af2ca-56b1-4dc3-bfe4-8232880b914c 2020-02-18 19:18:51.562979 29654 436 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 12 \N 189.186.45.214 053af2ca-56b1-4dc3-bfe4-8232880b914c 2020-02-18 19:18:51.585793 29655 1625 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 713\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.45.214 053af2ca-56b1-4dc3-bfe4-8232880b914c 2020-02-18 19:18:51.610694 29656 479 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-18\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 189.186.45.214 e8853bc0-f289-406c-bb9a-f7aa4b9f127d 2020-02-18 19:19:38.803291 29657 1621 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.45.214 e8853bc0-f289-406c-bb9a-f7aa4b9f127d 2020-02-18 19:19:38.836011 29658 479 Transfer \N \N 27 User \N update --- {}\n 3 Se dio entrada a traspaso de SUO Comercial a S BY SUO 189.186.45.214 fee7c083-b70d-4403-9722-6bce407811d2 2020-02-18 19:19:38.89495 29659 1621 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.45.214 fee7c083-b70d-4403-9722-6bce407811d2 2020-02-18 19:19:38.915515 29660 474 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-18\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 189.186.45.214 6a50881f-ae27-44d8-b40e-e383d1faff9f 2020-02-18 19:19:54.884104 29661 1379 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.45.214 6a50881f-ae27-44d8-b40e-e383d1faff9f 2020-02-18 19:19:54.905919 29662 474 Transfer \N \N 27 User \N update --- {}\n 3 Se dio entrada a traspaso de SUO Comercial a S BY SUO 189.186.45.214 779f48a1-3466-4874-8724-f9e971980bce 2020-02-18 19:19:55.104239 29663 1379 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 189.186.45.214 779f48a1-3466-4874-8724-f9e971980bce 2020-02-18 19:19:55.120448 29664 835 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1223E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1223.0 189.186.78.190 53239ec8-6ab8-4971-be3b-1a11db2c3764 2020-02-18 20:33:01.91902 29665 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-18 02:47:39.523221000 Z\n- &1 2020-02-18 17:44:08.887755000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-18 20:34:58.478729673 Z\nsign_in_count:\n- 150\n- 151\n 303 \N 189.186.78.190 41848ac2-77f1-4603-a64c-c504ffca7cc4 2020-02-18 20:34:58.487185 29666 21 User \N \N 21 User \N update ---\nunique_session_id:\n- tdXhrxsxicb6aGK6ZAx2\n- RnBkyiWLfVuJyHjkVNYe\n 304 \N 189.186.78.190 41848ac2-77f1-4603-a64c-c504ffca7cc4 2020-02-18 20:34:58.509574 29667 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-18 00:00:59.089182000 Z\n- &1 2020-02-18 02:59:06.711454000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-18 20:35:00.197285202 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121604\n mask_addr: 4294967295\nsign_in_count:\n- 104\n- 105\n 210 \N 187.149.67.196 a5d04bbd-d7e8-4d0a-8331-7e2c85dc3559 2020-02-18 20:35:00.216505 29668 27 User \N \N 27 User \N update ---\nunique_session_id:\n- Yy4wHkFUgGnZJCLRDv15\n- ywo6d8d9qnhDB4MQuYXU\n 211 \N 187.149.67.196 a5d04bbd-d7e8-4d0a-8331-7e2c85dc3559 2020-02-18 20:35:00.262197 29669 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-17 21:17:35.069644000 Z\n- &1 2020-02-18 01:14:54.844392000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-18 20:36:38.367154931 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121604\n mask_addr: 4294967295\nsign_in_count:\n- 1415\n- 1416\n 2832 \N 187.149.67.196 cbbb5ee7-52cd-40e5-a3a3-598a43b6e5d0 2020-02-18 20:36:38.375507 29670 4 User \N \N 4 User \N update ---\nunique_session_id:\n- RUsfDRJyjz_7iv1bf13o\n- ywJLz4_pmc3Vs7AncDoD\n 2833 \N 187.149.67.196 cbbb5ee7-52cd-40e5-a3a3-598a43b6e5d0 2020-02-18 20:36:38.39544 29671 975 Product \N \N 4 User \N create ---\nsku: CON-975\nname: CON-0001\ndescription: CONJUNTO MUY MUY ROSA CON MOÑO\nprice_base: !ruby/object:BigDecimal 18:0.2379E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 10\nproduct_service_key: '01010101'\n 1 El producto CON-975 fue creado. 187.149.67.196 40780902-4acf-4145-98f4-f1b9023be3e4 2020-02-18 20:46:05.072748 29672 975 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000975'\n 2 \N 187.149.67.196 40780902-4acf-4145-98f4-f1b9023be3e4 2020-02-18 20:46:05.120617 29673 1626 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 975\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 40780902-4acf-4145-98f4-f1b9023be3e4 2020-02-18 20:46:05.154816 29674 229 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-98\namount: !ruby/object:BigDecimal 18:0.14274E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.14274E4\nobservations: ''\npurchase_date: 2020-02-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-98 por $ 1427.4 MXN creada. 187.149.67.196 7ab8fe6c-2273-4ea3-88b3-b182fd48fe0a 2020-02-18 20:46:24.036822 29675 1626 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 7ab8fe6c-2273-4ea3-88b3-b182fd48fe0a 2020-02-18 20:46:24.063604 29676 976 Product \N \N 4 User \N create ---\nsku: VES-976\nname: VST-0100\ndescription: VESTIDO LARGO FLORES MUY MUY\nprice_base: !ruby/object:BigDecimal 18:0.6588E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-976 fue creado. 187.149.67.196 2db4cdd7-47c1-4244-a2b3-d79d0445e1a9 2020-02-18 20:54:22.858802 29677 976 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000976'\n 2 \N 187.149.67.196 2db4cdd7-47c1-4244-a2b3-d79d0445e1a9 2020-02-18 20:54:22.896986 29678 1627 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 976\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 2db4cdd7-47c1-4244-a2b3-d79d0445e1a9 2020-02-18 20:54:22.938588 29679 230 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-99\namount: !ruby/object:BigDecimal 18:0.39528E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.39528E4\nobservations: ''\npurchase_date: 2020-02-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-99 por $ 3952.8 MXN creada. 187.149.67.196 7eb56501-e377-4803-b87c-5ec1807c4e64 2020-02-18 20:54:31.283528 29680 1627 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 7eb56501-e377-4803-b87c-5ec1807c4e64 2020-02-18 20:54:31.307433 29681 977 Product \N \N 4 User \N create ---\nsku: BLU-977\nname: BLS-0104\ndescription: 'BLUSA TIPO SACO ROSA FLORES EN MANGAS '\nprice_base: !ruby/object:BigDecimal 18:0.19215E3\nprice_sale: !ruby/object:BigDecimal 18:0.519E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-977 fue creado. 187.149.67.196 10b464f7-0648-48c2-a8aa-7dad0d3fbba8 2020-02-18 21:08:48.845075 29682 977 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000977'\n 2 \N 187.149.67.196 10b464f7-0648-48c2-a8aa-7dad0d3fbba8 2020-02-18 21:08:48.893862 29683 1628 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 977\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 10b464f7-0648-48c2-a8aa-7dad0d3fbba8 2020-02-18 21:08:49.243598 29684 231 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-100\namount: !ruby/object:BigDecimal 18:0.11529E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.11529E4\nobservations: ''\npurchase_date: 2020-02-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-100 por $ 1152.9 MXN creada. 187.149.67.196 cd94a160-6f48-4f5c-8e0a-67135cd7cb6b 2020-02-18 21:08:57.218434 29685 1628 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 cd94a160-6f48-4f5c-8e0a-67135cd7cb6b 2020-02-18 21:08:57.242545 29686 978 Product \N \N 4 User \N create ---\nsku: FAL-978\nname: FLD-0023\ndescription: FALDA PIEL ESTRELLA\nprice_base: !ruby/object:BigDecimal 18:0.21502E3\nprice_sale: !ruby/object:BigDecimal 18:0.569E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-978 fue creado. 187.149.67.196 c1844acd-248e-4655-82c2-dc5b454beac7 2020-02-18 21:11:56.554947 29687 978 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000978'\n 2 \N 187.149.67.196 c1844acd-248e-4655-82c2-dc5b454beac7 2020-02-18 21:11:56.601734 29688 1629 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 978\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 c1844acd-248e-4655-82c2-dc5b454beac7 2020-02-18 21:11:56.63755 29689 232 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-101\namount: !ruby/object:BigDecimal 18:0.129012E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.129012E4\nobservations: ''\npurchase_date: 2020-02-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-101 por $ 1290.12 MXN creada. 187.149.67.196 9077b1ab-b77b-4ad1-8c7a-727c8cd94ea7 2020-02-18 21:12:08.287612 29690 1629 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 9077b1ab-b77b-4ad1-8c7a-727c8cd94ea7 2020-02-18 21:12:08.316683 29691 979 Product \N \N 4 User \N create ---\nsku: BLU-979\nname: BLS-0105\ndescription: PLAYERA BLANCA CON PIEDRAS EN MANGAS\nprice_base: !ruby/object:BigDecimal 18:0.15555E3\nprice_sale: !ruby/object:BigDecimal 18:0.469E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-979 fue creado. 187.149.67.196 e335722c-dc85-42db-b741-7143e0c188c9 2020-02-18 21:14:57.7923 29692 979 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000979'\n 2 \N 187.149.67.196 e335722c-dc85-42db-b741-7143e0c188c9 2020-02-18 21:14:57.833182 29693 1630 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 979\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 e335722c-dc85-42db-b741-7143e0c188c9 2020-02-18 21:14:57.867284 29694 233 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-102\namount: !ruby/object:BigDecimal 18:0.9333E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9333E3\nobservations: ''\npurchase_date: 2020-02-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-102 por $ 933.3 MXN creada. 187.149.67.196 42f7ecb4-f434-4e1c-8b89-31c72d91ac6f 2020-02-18 21:15:05.212423 29695 1630 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 42f7ecb4-f434-4e1c-8b89-31c72d91ac6f 2020-02-18 21:15:05.245397 29736 990 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000990'\n 2 \N 187.149.67.196 7a813c26-378a-4914-8230-541f871ae9ec 2020-02-19 00:47:55.789155 30048 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E2\n- !ruby/object:BigDecimal 18:0.29E2\n 6 \N 189.186.20.129 10e65fe9-8c5c-4bc5-a94d-e35ae9e3e50b 2020-02-21 01:31:29.403898 29696 980 Product \N \N 4 User \N create ---\nsku: BLU-980\nname: BLS-0106\ndescription: 'CAMISA COLORES MUY MUY '\nprice_base: !ruby/object:BigDecimal 18:0.15555E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-980 fue creado. 187.149.67.196 8a45434d-8450-4042-b0c4-d159f24abd9a 2020-02-18 21:18:17.545559 29697 980 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000980'\n 2 \N 187.149.67.196 8a45434d-8450-4042-b0c4-d159f24abd9a 2020-02-18 21:18:17.58079 29698 1631 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 980\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 8a45434d-8450-4042-b0c4-d159f24abd9a 2020-02-18 21:18:17.611696 29699 234 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-103\namount: !ruby/object:BigDecimal 18:0.9333E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9333E3\nobservations: ''\npurchase_date: 2020-02-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-103 por $ 933.3 MXN creada. 187.149.67.196 7b7c94a3-8f71-410c-b325-6b3b4a22f8be 2020-02-18 21:18:24.557747 29700 1631 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 7b7c94a3-8f71-410c-b325-6b3b4a22f8be 2020-02-18 21:18:24.583712 29701 981 Product \N \N 4 User \N create ---\nsku: VES-981\nname: VST-0101\ndescription: VESTIDO SACO SIN MANGA BLANCO Y ROSA\nprice_base: !ruby/object:BigDecimal 18:0.26992E3\nprice_sale: !ruby/object:BigDecimal 18:0.769E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-981 fue creado. 187.149.67.196 19244ef9-3cbe-483d-8842-b78db6ee6a61 2020-02-18 21:21:44.423041 29702 981 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000981'\n 2 \N 187.149.67.196 19244ef9-3cbe-483d-8842-b78db6ee6a61 2020-02-18 21:21:44.457148 29703 1632 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 981\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 19244ef9-3cbe-483d-8842-b78db6ee6a61 2020-02-18 21:21:44.486994 29704 235 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-104\namount: !ruby/object:BigDecimal 18:0.26992E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.26992E4\nobservations: ''\npurchase_date: 2020-02-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-104 por $ 2699.2 MXN creada. 187.149.67.196 cd6df3b6-3cf0-4263-83b2-4e01c4c51cf6 2020-02-18 21:21:56.533058 29705 1632 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E2\n 2 \N 187.149.67.196 cd6df3b6-3cf0-4263-83b2-4e01c4c51cf6 2020-02-18 21:21:56.555621 29706 1632 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 3 \N 187.149.67.196 5ea6b184-817d-4e83-af2c-10caa4932bd8 2020-02-18 21:24:16.089411 29707 1632 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.67.196 478a3eb8-088c-4cb2-837f-d14f4f933f56 2020-02-18 21:24:22.336442 29708 482 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-02-18\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 187.149.67.196 f67290e2-1155-4458-ad05-c882ccc6e615 2020-02-18 21:24:23.528869 29709 982 Product \N \N 4 User \N create ---\nsku: PAL-982\nname: VST-0102\ndescription: PALAZZO ENCAJE VALENTINE NEGRO\nprice_base: !ruby/object:BigDecimal 18:0.44835E3\nprice_sale: !ruby/object:BigDecimal 18:0.1119E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 9\nproduct_service_key: '01010101'\n 1 El producto PAL-982 fue creado. 187.149.67.196 f5957f51-5964-48aa-99ca-8cfc706e3ddb 2020-02-18 21:27:53.100568 29710 982 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000982'\n 2 \N 187.149.67.196 f5957f51-5964-48aa-99ca-8cfc706e3ddb 2020-02-18 21:27:53.145846 29711 1633 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 982\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 f5957f51-5964-48aa-99ca-8cfc706e3ddb 2020-02-18 21:27:53.181729 29712 236 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-105\namount: !ruby/object:BigDecimal 18:0.26901E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.26901E4\nobservations: ''\npurchase_date: 2020-02-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-105 por $ 2690.1 MXN creada. 187.149.67.196 b5517ade-4fa2-4a0e-9cc2-90ada4f0901d 2020-02-18 23:18:15.463762 29713 1633 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 b5517ade-4fa2-4a0e-9cc2-90ada4f0901d 2020-02-18 23:18:15.487872 29714 983 Product \N \N 4 User \N create ---\nsku: FAL-983\nname: FLD-0024\ndescription: FALDA PIEL AZUL NYLON\nprice_base: !ruby/object:BigDecimal 18:0.2988E3\nprice_sale: !ruby/object:BigDecimal 18:0.749E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-983 fue creado. 187.149.67.196 3c9fc2dd-8760-4241-8467-d788f77c104d 2020-02-18 23:27:28.061721 29715 983 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000983'\n 2 \N 187.149.67.196 3c9fc2dd-8760-4241-8467-d788f77c104d 2020-02-18 23:27:28.099532 29716 1634 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 983\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 3c9fc2dd-8760-4241-8467-d788f77c104d 2020-02-18 23:27:28.131755 29761 993 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000993'\n 2 \N 187.149.67.196 de865643-0c6f-4119-9647-074b9ba10f78 2020-02-19 01:34:40.837249 29717 984 Product \N \N 4 User \N create ---\nsku: BLU-984\nname: BLS-0107\ndescription: BLUSA BLACA NYLON\nprice_base: !ruby/object:BigDecimal 18:0.19215E3\nprice_sale: !ruby/object:BigDecimal 18:0.479E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-984 fue creado. 187.149.67.196 7dcd204b-53fd-4607-8edf-fcba2254a2f7 2020-02-18 23:30:21.265405 29718 984 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000984'\n 2 \N 187.149.67.196 7dcd204b-53fd-4607-8edf-fcba2254a2f7 2020-02-18 23:30:21.295232 29719 1635 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 984\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 7dcd204b-53fd-4607-8edf-fcba2254a2f7 2020-02-18 23:30:21.324964 29720 985 Product \N \N 4 User \N create ---\nsku: BLU-985\nname: BLS-0108\ndescription: 'BLUSA ROSA CON BOLITAS NEGRAS DECO '\nprice_base: !ruby/object:BigDecimal 18:0.26535E3\nprice_sale: !ruby/object:BigDecimal 18:0.669E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-985 fue creado. 187.149.67.196 37c3ae77-6408-4e3d-97cb-6f6f0bfa6935 2020-02-18 23:36:51.901347 29721 985 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000985'\n 2 \N 187.149.67.196 37c3ae77-6408-4e3d-97cb-6f6f0bfa6935 2020-02-18 23:36:51.944147 29722 1636 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 985\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 37c3ae77-6408-4e3d-97cb-6f6f0bfa6935 2020-02-18 23:36:51.974166 29723 986 Product \N \N 4 User \N create ---\nsku: CON-986\nname: CON-0002\ndescription: CONJUNTO NAVY MULTI CQBYCQ\nprice_base: !ruby/object:BigDecimal 18:0.4209E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 10\nproduct_service_key: '01010101'\n 1 El producto CON-986 fue creado. 187.149.67.196 985f57bf-1e4a-4ea6-abe9-93c3faed3f5b 2020-02-19 00:04:45.558646 29724 986 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000986'\n 2 \N 187.149.67.196 985f57bf-1e4a-4ea6-abe9-93c3faed3f5b 2020-02-19 00:04:45.590787 29725 1637 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 986\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 985f57bf-1e4a-4ea6-abe9-93c3faed3f5b 2020-02-19 00:04:45.617072 29726 987 Product \N \N 4 User \N create ---\nsku: BLU-987\nname: BLS-0109\ndescription: BLUSA NEGRA CON PERLAS CIEN\nprice_base: !ruby/object:BigDecimal 18:0.29218E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-987 fue creado. 187.149.67.196 6f19dff7-1f7b-4fdc-9cd6-3c0d7b0f5363 2020-02-19 00:15:34.231085 29727 987 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000987'\n 2 \N 187.149.67.196 6f19dff7-1f7b-4fdc-9cd6-3c0d7b0f5363 2020-02-19 00:15:34.260657 29728 1638 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 987\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 6f19dff7-1f7b-4fdc-9cd6-3c0d7b0f5363 2020-02-19 00:15:34.289402 29729 988 Product \N \N 4 User \N create ---\nsku: PAN-988\nname: PNT-0023\ndescription: PANTALON NEGRO CON APLICACION DE PEDRERIA CIEN\nprice_base: !ruby/object:BigDecimal 18:0.29218E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-988 fue creado. 187.149.67.196 db3ff664-efe1-4902-91d9-148f77953f20 2020-02-19 00:24:08.712224 29730 988 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000988'\n 2 \N 187.149.67.196 db3ff664-efe1-4902-91d9-148f77953f20 2020-02-19 00:24:08.750054 29731 1639 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 988\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 db3ff664-efe1-4902-91d9-148f77953f20 2020-02-19 00:24:08.801713 29732 989 Product \N \N 4 User \N create ---\nsku: PAN-989\nname: PNT-0024\ndescription: PANTALON BLANCO CON HEBILLA CON PIEDRAS CIEN\nprice_base: !ruby/object:BigDecimal 18:0.29218E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-989 fue creado. 187.149.67.196 49696b06-1105-4fc2-83ac-6e951aec1d6a 2020-02-19 00:25:06.606799 29733 989 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000989'\n 2 \N 187.149.67.196 49696b06-1105-4fc2-83ac-6e951aec1d6a 2020-02-19 00:25:06.637165 29734 1640 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 989\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 49696b06-1105-4fc2-83ac-6e951aec1d6a 2020-02-19 00:25:06.665967 29735 990 Product \N \N 4 User \N create ---\nsku: BLU-990\nname: BLS-0110\ndescription: BLUSA FLOREADA APEACH\nprice_base: !ruby/object:BigDecimal 18:0.24E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-990 fue creado. 187.149.67.196 7a813c26-378a-4914-8230-541f871ae9ec 2020-02-19 00:47:55.757011 29737 1641 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 990\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 7a813c26-378a-4914-8230-541f871ae9ec 2020-02-19 00:47:55.820225 29738 2222 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 835\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-02-18\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-277\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 3da8701c-38e6-43b2-af6d-6fa985f02891 2020-02-19 01:12:28.40695 29739 949 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 3 \N 189.186.78.190 3da8701c-38e6-43b2-af6d-6fa985f02891 2020-02-19 01:12:28.443023 29740 2222 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.78.190 9afab015-c0f2-4bfc-b7f9-d6fed37a0216 2020-02-19 01:12:33.030923 29741 3021 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 835\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 2222\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-277\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-277 189.186.78.190 9afab015-c0f2-4bfc-b7f9-d6fed37a0216 2020-02-19 01:12:33.059161 29742 991 Product \N \N 4 User \N create ---\nsku: FAL-991\nname: FLD-0025\ndescription: FALDA DE PATOLES COLORES TABA S63\nprice_base: !ruby/object:BigDecimal 18:0.21916E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-991 fue creado. 187.149.67.196 712b8dd5-c3e4-45d2-8ca0-9cee15c41cf6 2020-02-19 01:22:27.242688 29743 991 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000991'\n 2 \N 187.149.67.196 712b8dd5-c3e4-45d2-8ca0-9cee15c41cf6 2020-02-19 01:22:27.272434 29744 1642 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 991\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 712b8dd5-c3e4-45d2-8ca0-9cee15c41cf6 2020-02-19 01:22:27.302705 29745 992 Product \N \N 4 User \N create ---\nsku: FAL-992\nname: FLD-0026\ndescription: FALDA ROSA VIEJO TABA S01\nprice_base: !ruby/object:BigDecimal 18:0.25616E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-992 fue creado. 187.149.67.196 f63f30ed-bc22-493d-8205-333043dc990b 2020-02-19 01:26:03.552824 29746 992 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000992'\n 2 \N 187.149.67.196 f63f30ed-bc22-493d-8205-333043dc990b 2020-02-19 01:26:03.589979 29747 1643 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 992\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 f63f30ed-bc22-493d-8205-333043dc990b 2020-02-19 01:26:03.632297 29748 237 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-106\namount: !ruby/object:BigDecimal 18:0.1889436E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1889436E5\nobservations: ''\npurchase_date: 2020-02-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-106 por $ 18894.36 MXN creada. 187.149.67.196 61675bd9-45c8-4b47-bc67-8f3c80dd3ea5 2020-02-19 01:27:24.187272 29749 1634 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 61675bd9-45c8-4b47-bc67-8f3c80dd3ea5 2020-02-19 01:27:24.223346 29750 1635 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 61675bd9-45c8-4b47-bc67-8f3c80dd3ea5 2020-02-19 01:27:24.262047 29751 1636 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 61675bd9-45c8-4b47-bc67-8f3c80dd3ea5 2020-02-19 01:27:24.296424 29752 1637 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 61675bd9-45c8-4b47-bc67-8f3c80dd3ea5 2020-02-19 01:27:24.353688 29753 1638 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 61675bd9-45c8-4b47-bc67-8f3c80dd3ea5 2020-02-19 01:27:24.382589 29754 1639 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 61675bd9-45c8-4b47-bc67-8f3c80dd3ea5 2020-02-19 01:27:24.415315 29755 1640 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 61675bd9-45c8-4b47-bc67-8f3c80dd3ea5 2020-02-19 01:27:24.442853 29756 1410 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.7E1\n 9 \N 187.149.67.196 61675bd9-45c8-4b47-bc67-8f3c80dd3ea5 2020-02-19 01:27:24.47244 29757 1641 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 61675bd9-45c8-4b47-bc67-8f3c80dd3ea5 2020-02-19 01:27:24.50255 29758 1642 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 61675bd9-45c8-4b47-bc67-8f3c80dd3ea5 2020-02-19 01:27:24.530222 29759 1643 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 61675bd9-45c8-4b47-bc67-8f3c80dd3ea5 2020-02-19 01:27:24.558189 29760 993 Product \N \N 4 User \N create ---\nsku: BLU-993\nname: BLS-0111\ndescription: PANTI CQBYCQ BLANCA Y NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.21045E3\nprice_sale: !ruby/object:BigDecimal 18:0.529E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-993 fue creado. 187.149.67.196 de865643-0c6f-4119-9647-074b9ba10f78 2020-02-19 01:34:40.801933 29762 1644 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 993\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 de865643-0c6f-4119-9647-074b9ba10f78 2020-02-19 01:34:40.87353 29763 994 Product \N \N 4 User \N create ---\nsku: VES-994\nname: VST-0103\ndescription: VESTIDO AZUL MULTICOLOR CQBYCQ\nprice_base: !ruby/object:BigDecimal 18:0.4209E3\nprice_sale: !ruby/object:BigDecimal 18:0.1049E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-994 fue creado. 187.149.67.196 f8a6f3b0-68ba-4289-b76c-229dd3968fcb 2020-02-19 01:45:20.15873 29764 994 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000994'\n 2 \N 187.149.67.196 f8a6f3b0-68ba-4289-b76c-229dd3968fcb 2020-02-19 01:45:20.201771 29765 1645 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 994\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 f8a6f3b0-68ba-4289-b76c-229dd3968fcb 2020-02-19 01:45:20.2396 29766 238 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-107\namount: !ruby/object:BigDecimal 18:0.62451E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.62451E4\nobservations: ''\npurchase_date: 2020-02-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-107 por $ 6245.1 MXN creada. 187.149.67.196 9e4576c6-01a6-4eb8-a5e0-ec133afe2df7 2020-02-19 01:46:34.752448 29767 605 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 11 \N 187.149.67.196 9e4576c6-01a6-4eb8-a5e0-ec133afe2df7 2020-02-19 01:46:34.783762 29768 1644 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 9e4576c6-01a6-4eb8-a5e0-ec133afe2df7 2020-02-19 01:46:34.817119 29769 1156 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.9E1\n 14 \N 187.149.67.196 9e4576c6-01a6-4eb8-a5e0-ec133afe2df7 2020-02-19 01:46:34.843684 29770 1645 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 9e4576c6-01a6-4eb8-a5e0-ec133afe2df7 2020-02-19 01:46:34.87525 29771 995 Product \N \N 4 User \N create ---\nsku: VES-995\nname: VST-0104\ndescription: VESTIDO DE COLORES LARGO LATISTE\nprice_base: !ruby/object:BigDecimal 18:0.7092E3\nprice_sale: !ruby/object:BigDecimal 18:0.1779E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-995 fue creado. 187.149.67.196 c6c0b3e1-c7c2-419d-af89-797fce8da99a 2020-02-19 01:50:08.827424 29772 995 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000995'\n 2 \N 187.149.67.196 c6c0b3e1-c7c2-419d-af89-797fce8da99a 2020-02-19 01:50:08.86139 29773 1646 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 995\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 c6c0b3e1-c7c2-419d-af89-797fce8da99a 2020-02-19 01:50:08.894045 29774 996 Product \N \N 4 User \N create ---\nsku: CON-996\nname: CON-0003\ndescription: CONJUNTO DE FALDA FLOREADO LATISTE\nprice_base: !ruby/object:BigDecimal 18:0.6898E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 10\nproduct_service_key: '01010101'\n 1 El producto CON-996 fue creado. 187.149.67.196 d43f2c8f-cdd0-4761-a92f-466368fe1a6c 2020-02-19 01:53:01.80395 29775 996 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000996'\n 2 \N 187.149.67.196 d43f2c8f-cdd0-4761-a92f-466368fe1a6c 2020-02-19 01:53:01.837006 29776 1647 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 996\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 d43f2c8f-cdd0-4761-a92f-466368fe1a6c 2020-02-19 01:53:01.867205 29777 239 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-108\namount: !ruby/object:BigDecimal 18:0.8394E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.8394E4\nobservations: ''\npurchase_date: 2020-02-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-108 por $ 8394.0 MXN creada. 187.149.67.196 417711a8-5a7d-4260-8d4a-a37330e89e0e 2020-02-19 01:53:08.335874 29778 1646 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 417711a8-5a7d-4260-8d4a-a37330e89e0e 2020-02-19 01:53:08.360302 29779 1647 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 417711a8-5a7d-4260-8d4a-a37330e89e0e 2020-02-19 01:53:08.394975 29780 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-18 01:14:54.844392000 Z\n- &1 2020-02-18 20:36:38.367154000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-19 02:12:49.780201434 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121604\n mask_addr: 4294967295\nsign_in_count:\n- 1416\n- 1417\n 2834 \N 187.149.67.196 0fbc6f42-95f6-4b72-9ea0-49f4a753533a 2020-02-19 02:12:49.794569 29781 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ywJLz4_pmc3Vs7AncDoD\n- wPAAz95rLtxYx1f5zThk\n 2835 \N 187.149.67.196 0fbc6f42-95f6-4b72-9ea0-49f4a753533a 2020-02-19 02:12:49.825108 29782 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-18 20:36:38.367154000 Z\n- &1 2020-02-19 02:12:49.780201000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-19 02:20:37.015475957 Z\nsign_in_count:\n- 1417\n- 1418\n 2836 \N 187.149.67.196 5d8f7774-9ae8-4df5-9ce5-eb89b068c687 2020-02-19 02:20:37.022704 29783 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wPAAz95rLtxYx1f5zThk\n- F4B1s9_ZsDK4XhoNsxsz\n 2837 \N 187.149.67.196 5d8f7774-9ae8-4df5-9ce5-eb89b068c687 2020-02-19 02:20:37.044154 29805 1652 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 10b70367-43dd-4ee9-ac99-3766eb738169 2020-02-19 02:42:02.883875 29828 480 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-19\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.78.190 b1b1c875-2e0b-4e60-a2aa-c997361c00b2 2020-02-19 17:37:39.447473 29784 997 Product \N \N 4 User \N create ---\nsku: VES-997\nname: VST-0105\ndescription: VESTIDO BLANCO LATISTE\nprice_base: !ruby/object:BigDecimal 18:0.571E3\nprice_sale: !ruby/object:BigDecimal 18:0.1169E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-997 fue creado. 187.149.67.196 9b4d75a3-6951-4ecc-ad9b-23d4e05a6ab0 2020-02-19 02:24:19.573321 29785 997 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000997'\n 2 \N 187.149.67.196 9b4d75a3-6951-4ecc-ad9b-23d4e05a6ab0 2020-02-19 02:24:19.603281 29786 1648 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 997\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 9b4d75a3-6951-4ecc-ad9b-23d4e05a6ab0 2020-02-19 02:24:19.650964 29787 998 Product \N \N 4 User \N create ---\nsku: VES-998\nname: VST-0106\ndescription: VESTIDO ATIGRADO DE COLORES LATISTE\nprice_base: !ruby/object:BigDecimal 18:0.552E3\nprice_sale: !ruby/object:BigDecimal 18:0.1169E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-998 fue creado. 187.149.67.196 316a04dc-59ec-4711-b2d8-74c7a05d4042 2020-02-19 02:28:40.654095 29788 998 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000998'\n 2 \N 187.149.67.196 316a04dc-59ec-4711-b2d8-74c7a05d4042 2020-02-19 02:28:40.683458 29789 1649 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 998\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 316a04dc-59ec-4711-b2d8-74c7a05d4042 2020-02-19 02:28:40.711605 29790 999 Product \N \N 4 User \N create ---\nsku: VES-999\nname: VST-0107\ndescription: VESTIDO AZUL TURQUESA APEACH\nprice_base: !ruby/object:BigDecimal 18:0.3349E3\nprice_sale: !ruby/object:BigDecimal 18:0.849E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-999 fue creado. 187.149.67.196 ba96cad5-bce7-4c51-827a-e8ac64e6b263 2020-02-19 02:34:03.525318 29791 999 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0000999'\n 2 \N 187.149.67.196 ba96cad5-bce7-4c51-827a-e8ac64e6b263 2020-02-19 02:34:03.553451 29792 1650 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 999\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 ba96cad5-bce7-4c51-827a-e8ac64e6b263 2020-02-19 02:34:03.580646 29793 1000 Product \N \N 4 User \N create ---\nsku: JUM-1000\nname: VST-0108\ndescription: JUMPERDURAZNO FLOREADO APECH\nprice_base: !ruby/object:BigDecimal 18:0.2856E3\nprice_sale: !ruby/object:BigDecimal 18:0.729E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 1\nproduct_service_key: '01010101'\n 1 El producto JUM-1000 fue creado. 187.149.67.196 f4e1895c-955e-4e97-af1c-115e0d8e36e7 2020-02-19 02:36:57.018603 29794 1000 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001000'\n 2 \N 187.149.67.196 f4e1895c-955e-4e97-af1c-115e0d8e36e7 2020-02-19 02:36:57.049739 29795 1651 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1000\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 f4e1895c-955e-4e97-af1c-115e0d8e36e7 2020-02-19 02:36:57.084252 29796 240 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-63\namount: !ruby/object:BigDecimal 18:0.10461E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.10461E5\nobservations: ''\npurchase_date: 2020-02-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-63 por $ 10461.0 MXN creada. 187.149.67.196 0b17e573-fbf5-48fe-8d17-72eed52b1324 2020-02-19 02:37:02.726749 29797 1648 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 0b17e573-fbf5-48fe-8d17-72eed52b1324 2020-02-19 02:37:02.753667 29798 1649 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 0b17e573-fbf5-48fe-8d17-72eed52b1324 2020-02-19 02:37:02.788436 29799 1650 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 0b17e573-fbf5-48fe-8d17-72eed52b1324 2020-02-19 02:37:02.826706 29800 1651 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 0b17e573-fbf5-48fe-8d17-72eed52b1324 2020-02-19 02:37:02.862646 29801 1001 Product \N \N 4 User \N create ---\nsku: PAN-1001\nname: PNT-0025\ndescription: PANTALON DE MEZCLILLA BLANCO APEACH\nprice_base: !ruby/object:BigDecimal 18:0.2561E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-1001 fue creado. 187.149.67.196 9d79b5f9-46a7-43a4-81fb-8dc563c4dd46 2020-02-19 02:41:55.564542 29802 1001 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001001'\n 2 \N 187.149.67.196 9d79b5f9-46a7-43a4-81fb-8dc563c4dd46 2020-02-19 02:41:55.596141 29803 1652 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1001\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 9d79b5f9-46a7-43a4-81fb-8dc563c4dd46 2020-02-19 02:41:55.630912 29804 241 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-64\namount: !ruby/object:BigDecimal 18:0.15366E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.15366E4\nobservations: ''\npurchase_date: 2020-02-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-64 por $ 1536.6 MXN creada. 187.149.67.196 10b70367-43dd-4ee9-ac99-3766eb738169 2020-02-19 02:42:02.853827 29806 1002 Product \N \N 4 User \N create ---\nsku: BLU-1002\nname: BLS-0112\ndescription: BLUSA BLANCA DE ENCAJE APEACH\nprice_base: !ruby/object:BigDecimal 18:0.2379E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1002 fue creado. 187.149.67.196 1a684004-b537-4810-aff5-24214aabdc3d 2020-02-19 02:48:40.213157 29807 1002 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001002'\n 2 \N 187.149.67.196 1a684004-b537-4810-aff5-24214aabdc3d 2020-02-19 02:48:40.243249 29808 1653 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1002\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 1a684004-b537-4810-aff5-24214aabdc3d 2020-02-19 02:48:40.277055 29809 242 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-109\namount: !ruby/object:BigDecimal 18:0.14274E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.14274E4\nobservations: ''\npurchase_date: 2020-02-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-109 por $ 1427.4 MXN creada. 187.149.67.196 b2f5b599-8125-46da-9bdd-85e6c3aa80b6 2020-02-19 02:48:47.411784 29810 1653 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 b2f5b599-8125-46da-9bdd-85e6c3aa80b6 2020-02-19 02:48:47.436138 29811 283 Expense \N \N 4 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: \nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: TAQUIS\nexpense_date: 2020-02-18\nexpense_code: ADM-E-1\n 1 Egreso por 50.0 registrado 187.149.67.196 1d936a13-e9ea-493c-ae0c-ec36e4dc2838 2020-02-19 02:50:50.481037 29812 3022 CashRegistersMove \N \N 4 User \N create ---\nopen_cash_register_id: \npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 283\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.67.196 1d936a13-e9ea-493c-ae0c-ec36e4dc2838 2020-02-19 02:50:50.505685 29813 851 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 834\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1177E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1177E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.67.196 424a8e0c-f411-44f9-99c2-d74a107dd3ce 2020-02-19 02:51:02.479984 29814 834 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.67.196 424a8e0c-f411-44f9-99c2-d74a107dd3ce 2020-02-19 02:51:02.499273 29815 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-15 17:02:56.348179000 Z\n- &1 2020-02-17 22:45:38.810496000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-19 02:52:01.589544275 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121604\n mask_addr: 4294967295\nsign_in_count:\n- 476\n- 477\n 957 \N 187.149.67.196 9ac485e3-cd72-44ab-b46e-387d00ffca97 2020-02-19 02:52:01.597077 29816 2 User \N \N 2 User \N update ---\nunique_session_id:\n- yhvRxgUKdCUEyGZL-k52\n- rLs9T3DBo6S6oAGyWteo\n 958 \N 187.149.67.196 9ac485e3-cd72-44ab-b46e-387d00ffca97 2020-02-19 02:52:01.614701 29817 836 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1056E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1056.0 187.149.67.196 e3c73e28-9717-4538-ad1b-05e229b4e273 2020-02-19 02:53:46.273366 29818 284 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 836\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: taquis\nexpense_date: 2020-02-18\nexpense_code: PV1-E-197\n 1 Egreso por 50.0 registrado 187.149.67.196 e39d1827-7fc9-4cba-aed8-59b6c4829666 2020-02-19 02:54:05.874679 29819 3023 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 836\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 284\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.67.196 e39d1827-7fc9-4cba-aed8-59b6c4829666 2020-02-19 02:54:05.90138 29820 852 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 835\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.699E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.922E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1922E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 79b5444a-57ea-4bef-8ec2-8cfc94f9c417 2020-02-19 02:56:06.907452 29821 835 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 79b5444a-57ea-4bef-8ec2-8cfc94f9c417 2020-02-19 02:56:06.922885 29822 853 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 836\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1006E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1006E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.67.196 87ab0e43-2379-43af-b5bf-c71279adc9cd 2020-02-19 03:00:34.261454 29823 836 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.67.196 87ab0e43-2379-43af-b5bf-c71279adc9cd 2020-02-19 03:00:34.282411 29824 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-19 02:12:49.780201000 Z\n- &1 2020-02-19 02:20:37.015475000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-19 03:43:00.995712707 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121604\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107519\n mask_addr: 4294967295\nsign_in_count:\n- 1418\n- 1419\n 2838 \N 187.149.12.191 b85be0a3-0376-4397-9446-d72fcb0dc5a7 2020-02-19 03:43:01.003025 29825 4 User \N \N 4 User \N update ---\nunique_session_id:\n- F4B1s9_ZsDK4XhoNsxsz\n- AWFu9x2drd3iSVxJKN_y\n 2839 \N 187.149.12.191 b85be0a3-0376-4397-9446-d72fcb0dc5a7 2020-02-19 03:43:01.021096 29826 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-18 17:44:08.887755000 Z\n- &1 2020-02-18 20:34:58.478729000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-19 17:37:03.221720623 Z\nsign_in_count:\n- 151\n- 152\n 305 \N 189.186.78.190 3c6c0cec-d8ab-4ac5-87de-30fa5bafca4e 2020-02-19 17:37:03.255184 29827 21 User \N \N 21 User \N update ---\nunique_session_id:\n- RnBkyiWLfVuJyHjkVNYe\n- G9inYyGJPLAox4koLqiq\n 306 \N 189.186.78.190 3c6c0cec-d8ab-4ac5-87de-30fa5bafca4e 2020-02-19 17:37:03.281136 29829 1552 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.16E2\n 2 \N 189.186.78.190 b1b1c875-2e0b-4e60-a2aa-c997361c00b2 2020-02-19 17:37:39.478889 29830 1654 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 412\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.78.190 b1b1c875-2e0b-4e60-a2aa-c997361c00b2 2020-02-19 17:37:39.51936 29831 1655 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 413\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.78.190 b1b1c875-2e0b-4e60-a2aa-c997361c00b2 2020-02-19 17:37:39.54328 29832 837 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.922E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 922.0 189.186.78.190 7de602ea-48db-4ee5-8e82-1c7f7c8082ea 2020-02-19 17:40:23.421641 29833 468 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-19\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.78.190 02766794-a1f3-43b1-a814-7417e99229cc 2020-02-19 17:44:56.662551 29834 1656 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 802\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.78.190 02766794-a1f3-43b1-a814-7417e99229cc 2020-02-19 17:44:56.689179 29835 1535 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.78.190 02766794-a1f3-43b1-a814-7417e99229cc 2020-02-19 17:44:56.71253 29836 471 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- FALTA UNO DE CADA UNO, NO VIENE EL VST-0009\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-19\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.78.190 3311a538-d077-4799-ab28-147cf1ca97ad 2020-02-19 17:48:04.304325 29837 1657 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 576\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.78.190 3311a538-d077-4799-ab28-147cf1ca97ad 2020-02-19 17:48:04.329127 29838 1658 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 516\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.78.190 3311a538-d077-4799-ab28-147cf1ca97ad 2020-02-19 17:48:04.354651 29839 1659 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 497\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.78.190 3311a538-d077-4799-ab28-147cf1ca97ad 2020-02-19 17:48:04.378886 29840 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-17 22:45:38.810496000 Z\n- &1 2020-02-19 02:52:01.589544000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-19 17:48:30.417755453 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121604\n mask_addr: 4294967295\nsign_in_count:\n- 477\n- 478\n 959 \N 187.149.67.196 a50aed53-53b1-4354-b6bf-20be37e5b80f 2020-02-19 17:48:30.425048 29841 2 User \N \N 2 User \N update ---\nunique_session_id:\n- rLs9T3DBo6S6oAGyWteo\n- WXsTqq7D1sXdf6a5EZhP\n 960 \N 187.149.67.196 a50aed53-53b1-4354-b6bf-20be37e5b80f 2020-02-19 17:48:30.44548 29842 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-19 02:20:37.015475000 Z\n- &1 2020-02-19 03:43:00.995712000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-19 17:49:20.978412394 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121604\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107519\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107519\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1419\n- 1420\n 2840 \N 189.186.78.190 a72baec6-bf52-44cd-8d47-b4b6b6a79c7a 2020-02-19 17:49:20.986282 29843 4 User \N \N 4 User \N update ---\nunique_session_id:\n- AWFu9x2drd3iSVxJKN_y\n- myyHiB4QsPL5NCd2Kz_k\n 2841 \N 189.186.78.190 a72baec6-bf52-44cd-8d47-b4b6b6a79c7a 2020-02-19 17:49:21.005673 29844 872 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.78.190 d47de481-81a6-4318-ab59-84fb3a91ce53 2020-02-19 17:52:51.608833 29845 175 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.78.190 a22b30ca-f91a-482d-bbc6-4febfba63f88 2020-02-19 17:53:08.99745 29846 175 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.78.190 fee67740-e4cd-4cf5-8d55-022f55a81361 2020-02-19 17:53:12.165106 29847 668 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.78.190 9dd62c51-e871-41cf-97c5-3e00dbbb5187 2020-02-19 17:54:03.928207 29848 668 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.78.190 8c9ebf18-5ac4-45b2-b3ba-430bab7e610b 2020-02-19 17:54:07.129204 29849 66 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.78.190 8a2309a6-941b-459e-978c-4b8a78492a4f 2020-02-19 17:54:40.353574 29850 66 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.78.190 1941febe-cd85-478b-8f1f-41eab5c1d64a 2020-02-19 17:54:44.516163 29851 207 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.78.190 3f52fc29-ba39-4a4b-b12a-e933414b727c 2020-02-19 17:55:09.350734 29852 207 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.78.190 aeec38ab-7f9d-4e83-ba17-1c824ab32fd6 2020-02-19 17:55:12.570261 29853 992 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.78.190 cf6c871b-31cd-4daa-aaff-acac55db460a 2020-02-19 17:55:21.816191 29854 992 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.78.190 9a3acc5d-26ff-48b4-be3b-13a0333a3519 2020-02-19 17:55:25.340433 29855 681 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.78.190 23dd4473-fc49-4970-9f7c-2b7d763b0418 2020-02-19 17:55:33.244028 29856 681 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.78.190 f0477dbf-a796-4b4c-895c-0dd9b0527db4 2020-02-19 17:55:36.155891 30049 2230 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.129 d91f4e95-975b-4519-abca-dcd67549b690 2020-02-21 01:31:35.266722 29857 483 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-02-19\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.78.190 2a4da012-8406-43d1-8eb1-1b75ffed9122 2020-02-19 17:55:57.676321 29858 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-18 20:34:58.478729000 Z\n- &1 2020-02-19 17:37:03.221720000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-19 17:58:14.957328911 Z\nsign_in_count:\n- 152\n- 153\n 307 \N 189.186.78.190 6d1b16b4-00dc-4142-9fb6-8125c6da96f3 2020-02-19 17:58:14.964014 29859 21 User \N \N 21 User \N update ---\nunique_session_id:\n- G9inYyGJPLAox4koLqiq\n- 4iPCEHG1kgossBqV-TeF\n 308 \N 189.186.78.190 6d1b16b4-00dc-4142-9fb6-8125c6da96f3 2020-02-19 17:58:14.982045 29860 483 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-19\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.78.190 5e22369a-cac1-4396-8dad-b69a525d4ebc 2020-02-19 17:59:03.667171 29861 1660 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 419\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.78.190 5e22369a-cac1-4396-8dad-b69a525d4ebc 2020-02-19 17:59:03.695029 29862 1661 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 630\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.78.190 5e22369a-cac1-4396-8dad-b69a525d4ebc 2020-02-19 17:59:03.72031 29863 1662 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 209\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.78.190 5e22369a-cac1-4396-8dad-b69a525d4ebc 2020-02-19 17:59:03.748835 29864 1663 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 68\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.78.190 5e22369a-cac1-4396-8dad-b69a525d4ebc 2020-02-19 17:59:03.781131 29865 1664 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 284\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.78.190 5e22369a-cac1-4396-8dad-b69a525d4ebc 2020-02-19 17:59:03.807752 29866 1665 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 177\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.78.190 5e22369a-cac1-4396-8dad-b69a525d4ebc 2020-02-19 17:59:03.833526 29867 1666 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 690\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.78.190 5e22369a-cac1-4396-8dad-b69a525d4ebc 2020-02-19 17:59:03.865208 29868 642 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.67.196 5a4d4427-ae86-4df2-a64c-6a520c8cd70f 2020-02-19 17:59:19.956931 29869 484 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-02-19\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.67.196 7b3bf787-b72c-47f4-b839-09167948d7a9 2020-02-19 17:59:22.12231 29870 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-19 03:43:00.995712000 Z\n- &1 2020-02-19 17:49:20.978412000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-19 18:02:44.593003514 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107519\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1420\n- 1421\n 2842 \N 189.186.78.190 4cc649aa-ed75-4b39-a0e8-e2e0d05e4165 2020-02-19 18:02:44.600236 29871 4 User \N \N 4 User \N update ---\nunique_session_id:\n- myyHiB4QsPL5NCd2Kz_k\n- u3rnfDAXn2Y_S2zAL-yi\n 2843 \N 189.186.78.190 4cc649aa-ed75-4b39-a0e8-e2e0d05e4165 2020-02-19 18:02:44.618134 29872 68 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '68'\n is_parent: false\n sku: BLU-68\n name: B-0005\n description: RAYADA CORTE CAMPESINA DE COLORES WHYSPER\n price_base: '132.0'\n price_sale: '399.0'\n img_product: IMG_4484.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000068'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862646'\n updated_at: &12 2020-02-19 18:05:05.230771635 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '68'\n sku: BLU-68\n name: B-0005\n description: RAYADA CORTE CAMPESINA DE COLORES WHYSPER\n price_base: '132.00'\n price_sale: '399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862646'\n updated_at: '2019-02-04 09:10:12.607686'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000068'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '68'\n type: *3\n value: 68\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-68\n type: *7\n value: BLU-68\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: B-0005\n type: *8\n value: B-0005\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: RAYADA CORTE CAMPESINA DE COLORES WHYSPER\n type: *6\n value: RAYADA CORTE CAMPESINA DE COLORES WHYSPER\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '132.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.132E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.399E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4484.jpg\n type: *2\n value: IMG_4484.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000068'\n type: *2\n value: '0000068'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862646'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4484.jpg\n 3 El producto BLU-68 fue modificado. 189.186.78.190 b9a8f999-70e8-42f8-afca-af3b00c6b481 2020-02-19 18:05:05.31759 29873 802 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '802'\n is_parent: false\n sku: BLU-802\n name: BLS-0086\n description: BLUSA FASHION ZONE LA BLANCA CON COLA ST-FZT06\n price_base: '350.0'\n price_sale: '869.0'\n img_product: IMG_4475.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000802'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-14 19:19:24.60568'\n updated_at: &12 2020-02-19 18:05:58.039578525 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '802'\n sku: BLU-802\n name: BLS-0086\n description: BLUSA FASHION ZONE LA BLANCA CON COLA ST-FZT06\n price_base: '350.00'\n price_sale: '869.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-14 19:19:24.60568'\n updated_at: '2019-10-14 19:19:24.641084'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000802'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '802'\n type: *3\n value: 802\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-802\n type: *7\n value: BLU-802\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0086\n type: *8\n value: BLS-0086\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA FASHION ZONE LA BLANCA CON COLA ST-FZT06\n type: *6\n value: BLUSA FASHION ZONE LA BLANCA CON COLA ST-FZT06\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '350.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.35E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '869.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.869E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4475.jpg\n type: *2\n value: IMG_4475.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000802'\n type: *2\n value: '0000802'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-14 19:19:24.60568'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4475.jpg\n 3 El producto BLU-802 fue modificado. 189.186.78.190 53f67955-1ed5-4475-9b38-b2366dde8c83 2020-02-19 18:05:58.086188 29874 599 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '599'\n is_parent: false\n sku: BLU-599\n name: BLS-0047\n description: BLUSA BALBOA DE ENCAJE ROSA FUCSIA ST. BT-19073\n price_base: '209.0'\n price_sale: '519.0'\n img_product: IMG_4483.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000599'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-07-15 22:31:24.664626'\n updated_at: &12 2020-02-19 18:06:54.327800029 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '599'\n sku: BLU-599\n name: BLS-0047\n description: BLUSA BALBOA DE ENCAJE ROSA FUCSIA ST. BT-19073\n price_base: '209.00'\n price_sale: '519.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-07-15 22:31:24.664626'\n updated_at: '2019-07-15 22:31:24.704692'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000599'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '599'\n type: *3\n value: 599\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-599\n type: *7\n value: BLU-599\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0047\n type: *8\n value: BLS-0047\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA BALBOA DE ENCAJE ROSA FUCSIA ST. BT-19073\n type: *6\n value: BLUSA BALBOA DE ENCAJE ROSA FUCSIA ST. BT-19073\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '209.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.209E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '519.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.519E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4483.jpg\n type: *2\n value: IMG_4483.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000599'\n type: *2\n value: '0000599'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-07-15 22:31:24.664626'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4483.jpg\n 3 El producto BLU-599 fue modificado. 189.186.78.190 665dcfa6-3915-43cb-aeff-a86270d09952 2020-02-19 18:06:54.378411 29875 531 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '531'\n is_parent: false\n sku: BLU-531\n name: BLX-0024\n description: BLUSA DE FLORES A.PEACH YT5876\n price_base: '289.5'\n price_sale: '579.0'\n img_product: IMG_4482.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000531'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-04-08 22:46:56.746548'\n updated_at: &12 2020-02-19 18:08:57.847747038 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '531'\n sku: BLU-531\n name: BLX-0024\n description: BLUSA DE FLORES A.PEACH YT5876\n price_base: '289.50'\n price_sale: '579.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-04-08 22:46:56.746548'\n updated_at: '2019-04-08 22:46:56.79229'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000531'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '531'\n type: *3\n value: 531\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-531\n type: *7\n value: BLU-531\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLX-0024\n type: *8\n value: BLX-0024\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA DE FLORES A.PEACH YT5876\n type: *6\n value: BLUSA DE FLORES A.PEACH YT5876\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '289.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2895E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '579.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.579E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4482.jpg\n type: *2\n value: IMG_4482.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000531'\n type: *2\n value: '0000531'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-04-08 22:46:56.746548'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4482.jpg\n 3 El producto BLU-531 fue modificado. 189.186.78.190 9e4a7a07-d642-485f-8367-b30fb4e1e0d0 2020-02-19 18:08:57.907024 29876 521 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '521'\n is_parent: false\n sku: BLU-521\n name: BLX-0020\n description: "PLAYERA NEGRA MONITAS CON GORRA\\r\\n"\n price_base: '177.39'\n price_sale: '499.0'\n img_product: IMG_4479.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000521'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-03-26 01:39:31.269461'\n updated_at: &12 2020-02-19 18:09:34.055071326 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '521'\n sku: BLU-521\n name: BLX-0020\n description: "PLAYERA NEGRA MONITAS CON GORRA\\r\\n"\n price_base: '177.39'\n price_sale: '499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-03-26 01:39:31.269461'\n updated_at: '2019-03-26 01:39:31.322229'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000521'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '521'\n type: *3\n value: 521\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-521\n type: *7\n value: BLU-521\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLX-0020\n type: *8\n value: BLX-0020\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "PLAYERA NEGRA MONITAS CON GORRA\\r\\n"\n type: *6\n value: "PLAYERA NEGRA MONITAS CON GORRA\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '177.39'\n type: *1\n value: !ruby/object:BigDecimal 18:0.17739E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.499E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4479.jpg\n type: *2\n value: IMG_4479.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000521'\n type: *2\n value: '0000521'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-03-26 01:39:31.269461'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4479.jpg\n 3 El producto BLU-521 fue modificado. 189.186.78.190 ef056a3c-3638-475d-8187-65beb23390e7 2020-02-19 18:09:34.09987 29877 524 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '524'\n is_parent: false\n sku: BLU-524\n name: BLX-0021\n description: 'BLUSA PLAYERA ZAPATILLA ROSA '\n price_base: '216.81'\n price_sale: '549.0'\n img_product: IMG_4480.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000524'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-03-26 01:51:04.592847'\n updated_at: &12 2020-02-19 18:10:07.085210592 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '524'\n sku: BLU-524\n name: BLX-0021\n description: 'BLUSA PLAYERA ZAPATILLA ROSA '\n price_base: '216.81'\n price_sale: '549.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-03-26 01:51:04.592847'\n updated_at: '2019-03-26 01:51:04.649657'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000524'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '524'\n type: *3\n value: 524\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-524\n type: *7\n value: BLU-524\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLX-0021\n type: *8\n value: BLX-0021\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'BLUSA PLAYERA ZAPATILLA ROSA '\n type: *6\n value: 'BLUSA PLAYERA ZAPATILLA ROSA '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '216.81'\n type: *1\n value: !ruby/object:BigDecimal 18:0.21681E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '549.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.549E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4480.jpg\n type: *2\n value: IMG_4480.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000524'\n type: *2\n value: '0000524'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-03-26 01:51:04.592847'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4480.jpg\n 3 El producto BLU-524 fue modificado. 189.186.78.190 6fb20c7d-9e83-4f5d-9c11-890c8e6ff71a 2020-02-19 18:10:07.135575 29878 838 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1006E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1006.0 187.149.67.196 db5e3e57-3f12-48af-b042-89405c72a94b 2020-02-19 18:15:40.953374 29879 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 23:44:07.694482000 Z\n- &1 2020-02-15 19:25:13.594298000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-19 18:16:20.438753662 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121604\n mask_addr: 4294967295\nsign_in_count:\n- 52\n- 53\n 106 \N 187.149.67.196 9843f0c5-f5a8-4b76-98f0-be2a3732ea26 2020-02-19 18:16:20.449738 29880 24 User \N \N 24 User \N update ---\nunique_session_id:\n- JzkWz6zq8yruAf2k9s3T\n- 5hEZRDEz9rUSwdroTnBX\n 107 \N 187.149.67.196 9843f0c5-f5a8-4b76-98f0-be2a3732ea26 2020-02-19 18:16:20.470486 29881 839 OpenCashRegister \N \N 24 User \N create ---\ncash_register_id: 2\nuser_id: 24\ninitial_cash: !ruby/object:BigDecimal 18:0.1177E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1177.0 187.149.67.196 b034adc5-2a81-4763-b8aa-c07ce7e31eed 2020-02-19 18:16:25.426065 29882 275 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '275'\n is_parent: false\n sku: BLU-275\n name: BL-0034\n description: BLUSA AZUL MUY MUY CON CORAZONES BLANCOS\n price_base: '140.0'\n price_sale: '429.0'\n img_product: IMG_4490.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000275'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2020-02-19 18:19:05.747009508 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '275'\n sku: BLU-275\n name: BL-0034\n description: BLUSA AZUL MUY MUY CON CORAZONES BLANCOS\n price_base: '140.00'\n price_sale: '429.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:14.683676'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000275'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '275'\n type: *3\n value: 275\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-275\n type: *7\n value: BLU-275\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BL-0034\n type: *8\n value: BL-0034\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA AZUL MUY MUY CON CORAZONES BLANCOS\n type: *6\n value: BLUSA AZUL MUY MUY CON CORAZONES BLANCOS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '140.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.14E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '429.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.429E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4490.jpg\n type: *2\n value: IMG_4490.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000275'\n type: *2\n value: '0000275'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4490.jpg\n 3 El producto BLU-275 fue modificado. 189.186.78.190 6504e4cd-7231-427b-8727-50c17273a075 2020-02-19 18:19:05.806853 29883 534 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '534'\n is_parent: false\n sku: BLU-534\n name: B-0030\n description: NARANJA CON ENCAJE VALENTINE\n price_base: '299.5'\n price_sale: '599.0'\n img_product: IMG_4486.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000534'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-04-16 17:40:35.731561'\n updated_at: &12 2020-02-19 18:21:09.533525742 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '534'\n sku: BLU-534\n name: B-0030\n description: NARANJA CON ENCAJE VALENTINE\n price_base: '299.50'\n price_sale: '599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-04-16 17:40:35.731561'\n updated_at: '2019-04-16 17:40:35.774558'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000534'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '534'\n type: *3\n value: 534\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-534\n type: *7\n value: BLU-534\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: B-0030\n type: *8\n value: B-0030\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: NARANJA CON ENCAJE VALENTINE\n type: *6\n value: NARANJA CON ENCAJE VALENTINE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '299.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.599E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4486.jpg\n type: *2\n value: IMG_4486.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000534'\n type: *2\n value: '0000534'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-04-16 17:40:35.731561'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4486.jpg\n 3 El producto BLU-534 fue modificado. 189.186.78.190 c3c4f203-4678-4f39-a776-bd7093ced79d 2020-02-19 18:21:09.582258 30073 843 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1177E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1177.0 189.186.20.129 23ddf808-3229-4559-aa4d-b04b5d85351b 2020-02-21 17:39:18.439598 29884 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 22:49:16.971213000 Z\n- &1 2020-02-15 17:11:27.012919000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-19 18:21:14.071662756 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121604\n mask_addr: 4294967295\nsign_in_count:\n- 161\n- 162\n 324 \N 187.149.67.196 97cf571f-8bbd-41ea-b65e-7873294fe6a5 2020-02-19 18:21:14.080291 29885 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 1hMpHzy1mHvtuR5zyKxh\n- FCHK5LSzN47r8qwTd8X4\n 325 \N 187.149.67.196 97cf571f-8bbd-41ea-b65e-7873294fe6a5 2020-02-19 18:21:14.100424 29886 89 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '89'\n is_parent: false\n sku: BLU-PRM-640\n name: B-0057\n description: ROSA DE TIRANTES NYLON\n price_base: '210.0'\n price_sale: '599.0'\n img_product: IMG_4485.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '20'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000089'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862667'\n updated_at: &12 2020-02-19 18:21:40.784120534 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '89'\n sku: BLU-PRM-640\n name: B-0057\n description: ROSA DE TIRANTES NYLON\n price_base: '210.00'\n price_sale: '599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862667'\n updated_at: '2019-07-31 00:37:58.611596'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000089'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '20'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '89'\n type: *3\n value: 89\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-PRM-640\n type: *7\n value: BLU-PRM-640\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: B-0057\n type: *8\n value: B-0057\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: ROSA DE TIRANTES NYLON\n type: *6\n value: ROSA DE TIRANTES NYLON\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '210.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.21E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.599E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4485.jpg\n type: *2\n value: IMG_4485.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '20'\n type: *3\n value: 20\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000089'\n type: *2\n value: '0000089'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862667'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4485.jpg\n 4 El producto BLU-PRM-640 fue modificado. 189.186.78.190 8b9ca6c7-e391-4628-83b7-03ef6b7e8637 2020-02-19 18:21:40.831613 29887 135 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '135'\n is_parent: false\n sku: BLU-135\n name: BLS-0003\n description: BLUSA RAYAS COLORES MUY MUY\n price_base: '159.25'\n price_sale: '469.0'\n img_product: IMG_4489.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000135'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862713'\n updated_at: &12 2020-02-19 18:22:13.246547314 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '135'\n sku: BLU-135\n name: BLS-0003\n description: BLUSA RAYAS COLORES MUY MUY\n price_base: '159.25'\n price_sale: '469.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862713'\n updated_at: '2019-02-04 09:10:14.809937'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000135'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '135'\n type: *3\n value: 135\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-135\n type: *7\n value: BLU-135\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0003\n type: *8\n value: BLS-0003\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA RAYAS COLORES MUY MUY\n type: *6\n value: BLUSA RAYAS COLORES MUY MUY\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '159.25'\n type: *1\n value: !ruby/object:BigDecimal 18:0.15925E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '469.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.469E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4489.jpg\n type: *2\n value: IMG_4489.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000135'\n type: *2\n value: '0000135'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862713'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4489.jpg\n 3 El producto BLU-135 fue modificado. 189.186.78.190 ec02a2a2-bfd3-428e-bf58-3bf0e8b2900e 2020-02-19 18:22:13.299837 29888 513 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '513'\n is_parent: false\n sku: BLU-513\n name: BLS-0033\n description: BLUSA BLANCA CBQ\n price_base: '449.5'\n price_sale: '899.0'\n img_product: IMG_4491.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000513'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-03-21 23:44:15.52579'\n updated_at: &12 2020-02-19 18:22:41.548346828 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '513'\n sku: BLU-513\n name: BLS-0033\n description: BLUSA BLANCA CBQ\n price_base: '449.50'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-03-21 23:44:15.52579'\n updated_at: '2019-03-21 23:44:15.597559'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000513'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '513'\n type: *3\n value: 513\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-513\n type: *7\n value: BLU-513\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0033\n type: *8\n value: BLS-0033\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA BLANCA CBQ\n type: *6\n value: BLUSA BLANCA CBQ\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '449.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4491.jpg\n type: *2\n value: IMG_4491.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000513'\n type: *2\n value: '0000513'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-03-21 23:44:15.52579'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4491.jpg\n 3 El producto BLU-513 fue modificado. 189.186.78.190 5a969fe0-0860-48dd-a2b8-89aa56dee7db 2020-02-19 18:22:41.611058 29889 324 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '324'\n is_parent: false\n sku: BLU-324\n name: BLX-0008\n description: PLAYERA SMILE\n price_base: '122.85'\n price_sale: '469.0'\n img_product: IMG_4487.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000324'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2020-02-19 18:24:25.095978236 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '324'\n sku: BLU-324\n name: BLX-0008\n description: PLAYERA SMILE\n price_base: '122.85'\n price_sale: '469.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:16.172562'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000324'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '324'\n type: *3\n value: 324\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-324\n type: *7\n value: BLU-324\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLX-0008\n type: *8\n value: BLX-0008\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PLAYERA SMILE\n type: *6\n value: PLAYERA SMILE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '122.85'\n type: *1\n value: !ruby/object:BigDecimal 18:0.12285E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '469.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.469E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4487.jpg\n type: *2\n value: IMG_4487.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000324'\n type: *2\n value: '0000324'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4487.jpg\n 3 El producto BLU-324 fue modificado. 189.186.78.190 f64f5078-6724-46d8-8c87-08acb111c09f 2020-02-19 18:24:25.152187 29890 146 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '146'\n is_parent: false\n sku: BLU-146\n name: BLS-0013\n description: PLAYERA MOSTAZA HOMBRO DESCUBIERTO\n price_base: '154.08'\n price_sale: '469.0'\n img_product: IMG_4488.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000146'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862724'\n updated_at: &12 2020-02-19 18:25:29.302758361 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '146'\n sku: BLU-146\n name: BLS-0013\n description: PLAYERA MOSTAZA HOMBRO DESCUBIERTO\n price_base: '154.08'\n price_sale: '469.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862724'\n updated_at: '2019-02-04 09:10:15.113337'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000146'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '146'\n type: *3\n value: 146\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-146\n type: *7\n value: BLU-146\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0013\n type: *8\n value: BLS-0013\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PLAYERA MOSTAZA HOMBRO DESCUBIERTO\n type: *6\n value: PLAYERA MOSTAZA HOMBRO DESCUBIERTO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '154.08'\n type: *1\n value: !ruby/object:BigDecimal 18:0.15408E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '469.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.469E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4488.jpg\n type: *2\n value: IMG_4488.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000146'\n type: *2\n value: '0000146'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862724'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4488.jpg\n 3 El producto BLU-146 fue modificado. 189.186.78.190 f9e40b83-e45c-4145-9a95-24c1e294edfd 2020-02-19 18:25:29.370926 29891 291 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '291'\n is_parent: false\n sku: BLU-291\n name: BL-0024\n description: BLUSA NYLON BLANCA CON PERLAS EN MANGAS CON COLA\n price_base: '250.0'\n price_sale: '649.0'\n img_product: IMG_4494.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000291'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2020-02-19 18:32:07.587722724 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '291'\n sku: BLU-291\n name: BL-0024\n description: BLUSA NYLON BLANCA CON PERLAS EN MANGAS CON COLA\n price_base: '250.00'\n price_sale: '649.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:14.574133'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000291'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '291'\n type: *3\n value: 291\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-291\n type: *7\n value: BLU-291\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BL-0024\n type: *8\n value: BL-0024\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA NYLON BLANCA CON PERLAS EN MANGAS CON COLA\n type: *6\n value: BLUSA NYLON BLANCA CON PERLAS EN MANGAS CON COLA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '250.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.25E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '649.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.649E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4494.jpg\n type: *2\n value: IMG_4494.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000291'\n type: *2\n value: '0000291'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4494.jpg\n 3 El producto BLU-291 fue modificado. 189.186.78.190 34f26e10-f694-4d28-8c6d-cbb3ed569e91 2020-02-19 18:32:07.639679 29892 280 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '280'\n is_parent: false\n sku: BLU-280\n name: B-0034\n description: BLUSA BLANCA NYLON PARIS\n price_base: '140.0'\n price_sale: '629.0'\n img_product: IMG_4493.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000280'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2020-02-19 18:32:48.433104347 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '280'\n sku: BLU-280\n name: B-0034\n description: BLUSA BLANCA NYLON PARIS\n price_base: '140.00'\n price_sale: '629.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:13.125732'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000280'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '280'\n type: *3\n value: 280\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-280\n type: *7\n value: BLU-280\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: B-0034\n type: *8\n value: B-0034\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA BLANCA NYLON PARIS\n type: *6\n value: BLUSA BLANCA NYLON PARIS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '140.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.14E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '629.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.629E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4493.jpg\n type: *2\n value: IMG_4493.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000280'\n type: *2\n value: '0000280'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4493.jpg\n 3 El producto BLU-280 fue modificado. 189.186.78.190 54902081-82c7-4651-be01-989a370e64f0 2020-02-19 18:32:48.501526 29893 292 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '292'\n is_parent: false\n sku: BLU-292\n name: BL-0006\n description: BLUSA BLANCA Y ROSA NYLON CON COLA\n price_base: '240.62'\n price_sale: '629.0'\n img_product: IMG_4492.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000292'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2020-02-19 18:33:17.343963245 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '292'\n sku: BLU-292\n name: BL-0006\n description: BLUSA BLANCA Y ROSA NYLON CON COLA\n price_base: '240.62'\n price_sale: '629.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:14.231017'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000292'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '292'\n type: *3\n value: 292\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-292\n type: *7\n value: BLU-292\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BL-0006\n type: *8\n value: BL-0006\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA BLANCA Y ROSA NYLON CON COLA\n type: *6\n value: BLUSA BLANCA Y ROSA NYLON CON COLA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '240.62'\n type: *1\n value: !ruby/object:BigDecimal 18:0.24062E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '629.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.629E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4492.jpg\n type: *2\n value: IMG_4492.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000292'\n type: *2\n value: '0000292'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4492.jpg\n 3 El producto BLU-292 fue modificado. 189.186.78.190 4a216756-644c-4aa9-800d-db776ed05a25 2020-02-19 18:33:17.393112 29894 141 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '141'\n is_parent: false\n sku: BLU-141\n name: BLS-0008\n description: BLUSA 3/4 RAYAS ROJA CON BLANCO CORAZON\n price_base: '227.5'\n price_sale: '569.0'\n img_product: IMG_4501.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000141'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862719'\n updated_at: &12 2020-02-19 18:35:30.131563902 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '141'\n sku: BLU-141\n name: BLS-0008\n description: BLUSA 3/4 RAYAS ROJA CON BLANCO CORAZON\n price_base: '227.50'\n price_sale: '569.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862719'\n updated_at: '2019-02-04 09:10:14.966195'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000141'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '141'\n type: *3\n value: 141\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-141\n type: *7\n value: BLU-141\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0008\n type: *8\n value: BLS-0008\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA 3/4 RAYAS ROJA CON BLANCO CORAZON\n type: *6\n value: BLUSA 3/4 RAYAS ROJA CON BLANCO CORAZON\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '227.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2275E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '569.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.569E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4501.jpg\n type: *2\n value: IMG_4501.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000141'\n type: *2\n value: '0000141'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862719'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4501.jpg\n 3 El producto BLU-141 fue modificado. 189.186.78.190 15232040-ce2c-400a-8ea4-53dc6e6bd555 2020-02-19 18:35:30.194838 29895 72 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '72'\n is_parent: false\n sku: BLU-72\n name: B-0066\n description: BLANCA RAYAS ROJAS MUYMUY\n price_base: '210.0'\n price_sale: '610.0'\n img_product: IMG_4500.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000072'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.86265'\n updated_at: &12 2020-02-19 18:36:06.958713650 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '72'\n sku: BLU-72\n name: B-0066\n description: BLANCA RAYAS ROJAS MUYMUY\n price_base: '210.00'\n price_sale: '610.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.86265'\n updated_at: '2019-02-04 09:10:13.648486'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000072'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '72'\n type: *3\n value: 72\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-72\n type: *7\n value: BLU-72\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: B-0066\n type: *8\n value: B-0066\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLANCA RAYAS ROJAS MUYMUY\n type: *6\n value: BLANCA RAYAS ROJAS MUYMUY\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '210.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.21E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '610.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.61E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4500.jpg\n type: *2\n value: IMG_4500.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000072'\n type: *2\n value: '0000072'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.86265'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4500.jpg\n 3 El producto BLU-72 fue modificado. 189.186.78.190 bbe3562f-abc2-47c7-b3ff-16d9c335c21d 2020-02-19 18:36:07.004449 29896 537 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '537'\n is_parent: false\n sku: BLU-537\n name: B-0018\n description: FLOREADA MICHEL\n price_base: '249.5'\n price_sale: '499.0'\n img_product: IMG_4499.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000537'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-04-16 17:47:10.933428'\n updated_at: &12 2020-02-19 18:37:04.698302473 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '537'\n sku: BLU-537\n name: B-0018\n description: FLOREADA MICHEL\n price_base: '249.50'\n price_sale: '499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-04-16 17:47:10.933428'\n updated_at: '2019-04-16 17:47:10.970426'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000537'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '537'\n type: *3\n value: 537\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-537\n type: *7\n value: BLU-537\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: B-0018\n type: *8\n value: B-0018\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FLOREADA MICHEL\n type: *6\n value: FLOREADA MICHEL\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '249.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.499E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4499.jpg\n type: *2\n value: IMG_4499.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000537'\n type: *2\n value: '0000537'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-04-16 17:47:10.933428'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4499.jpg\n 3 El producto BLU-537 fue modificado. 189.186.78.190 f224ab2f-6b18-4a57-9e9b-0835efe5bb16 2020-02-19 18:37:04.743856 29897 479 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '479'\n is_parent: false\n sku: BLU-479\n name: B-0065\n description: BLUSA CON UNA MANGA MUY MUY ROJA Y FLORES\n price_base: '270.0'\n price_sale: '675.0'\n img_product: IMG_4498.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000479'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-13 23:37:00.283692'\n updated_at: &12 2020-02-19 18:37:32.778516986 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '479'\n sku: BLU-479\n name: B-0065\n description: BLUSA CON UNA MANGA MUY MUY ROJA Y FLORES\n price_base: '270.00'\n price_sale: '675.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-13 23:37:00.283692'\n updated_at: '2019-02-13 23:37:00.364214'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000479'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '479'\n type: *3\n value: 479\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-479\n type: *7\n value: BLU-479\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: B-0065\n type: *8\n value: B-0065\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA CON UNA MANGA MUY MUY ROJA Y FLORES\n type: *6\n value: BLUSA CON UNA MANGA MUY MUY ROJA Y FLORES\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '270.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.27E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '675.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.675E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4498.jpg\n type: *2\n value: IMG_4498.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000479'\n type: *2\n value: '0000479'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-13 23:37:00.283692'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4498.jpg\n 3 El producto BLU-479 fue modificado. 189.186.78.190 9ae92298-507e-4a66-810d-b5d2f91c9cbb 2020-02-19 18:37:32.821464 29898 310 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '310'\n is_parent: false\n sku: BLU-310\n name: BL-0030\n description: BLUSA BLANCA M/2 CON VERDE EN CUELLO\n price_base: '280.0'\n price_sale: '699.0'\n img_product: IMG_4497.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000310'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2020-02-19 18:38:02.336414543 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '310'\n sku: BLU-310\n name: BL-0030\n description: BLUSA BLANCA M/2 CON VERDE EN CUELLO\n price_base: '280.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:14.644443'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000310'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '310'\n type: *3\n value: 310\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-310\n type: *7\n value: BLU-310\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BL-0030\n type: *8\n value: BL-0030\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA BLANCA M/2 CON VERDE EN CUELLO\n type: *6\n value: BLUSA BLANCA M/2 CON VERDE EN CUELLO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '280.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.28E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4497.jpg\n type: *2\n value: IMG_4497.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000310'\n type: *2\n value: '0000310'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4497.jpg\n 3 El producto BLU-310 fue modificado. 189.186.78.190 4b569288-7c90-4a86-a14b-e38d283b9f59 2020-02-19 18:38:02.390262 29899 803 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '803'\n is_parent: false\n sku: BLU-803\n name: BLS-0087\n description: BLUSA FASHION ZONE LA MOZTAZA ST-FZT0025\n price_base: '245.0'\n price_sale: '599.0'\n img_product: IMG_4496.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000803'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-10-14 19:19:52.38605'\n updated_at: &12 2020-02-19 18:39:50.367383231 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '803'\n sku: BLU-803\n name: BLS-0087\n description: BLUSA FASHION ZONE LA MOZTAZA ST-FZT0025\n price_base: '245.00'\n price_sale: '599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-10-14 19:19:52.38605'\n updated_at: '2019-10-14 19:19:52.435358'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000803'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '803'\n type: *3\n value: 803\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-803\n type: *7\n value: BLU-803\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0087\n type: *8\n value: BLS-0087\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA FASHION ZONE LA MOZTAZA ST-FZT0025\n type: *6\n value: BLUSA FASHION ZONE LA MOZTAZA ST-FZT0025\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '245.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.245E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.599E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4496.jpg\n type: *2\n value: IMG_4496.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000803'\n type: *2\n value: '0000803'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-10-14 19:19:52.38605'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4496.jpg\n 3 El producto BLU-803 fue modificado. 189.186.78.190 b32fd44e-9a80-41a6-a9e2-2ca5c6194988 2020-02-19 18:39:50.411795 29900 149 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '149'\n is_parent: false\n sku: BLU-149\n name: BLS-0016\n description: PLAYERA RAYAS GUCCI\n price_base: '154.08'\n price_sale: '469.0'\n img_product: IMG_4481.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000149'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862727'\n updated_at: &12 2020-02-19 18:41:31.522754206 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '149'\n sku: BLU-149\n name: BLS-0016\n description: PLAYERA RAYAS GUCCI\n price_base: '154.08'\n price_sale: '469.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862727'\n updated_at: '2019-02-04 09:10:15.205655'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000149'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '149'\n type: *3\n value: 149\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-149\n type: *7\n value: BLU-149\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0016\n type: *8\n value: BLS-0016\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PLAYERA RAYAS GUCCI\n type: *6\n value: PLAYERA RAYAS GUCCI\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '154.08'\n type: *1\n value: !ruby/object:BigDecimal 18:0.15408E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '469.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.469E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4481.jpg\n type: *2\n value: IMG_4481.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000149'\n type: *2\n value: '0000149'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862727'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4481.jpg\n 3 El producto BLU-149 fue modificado. 189.186.78.190 7719d11e-b65e-47b8-96cc-4e1ad8c14a37 2020-02-19 18:41:31.568885 29901 511 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '511'\n is_parent: false\n sku: BLU-511\n name: BLS-0031\n description: BLUSA VOILA ROSA CORTE CAMPESINA\n price_base: '434.5'\n price_sale: '869.0'\n img_product: IMG_4504.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000511'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-03-21 23:40:19.36523'\n updated_at: &12 2020-02-19 18:45:13.452882775 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '511'\n sku: BLU-511\n name: BLS-0031\n description: BLUSA VOILA ROSA CORTE CAMPESINA\n price_base: '434.50'\n price_sale: '869.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-03-21 23:40:19.36523'\n updated_at: '2019-03-21 23:40:19.408226'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000511'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '511'\n type: *3\n value: 511\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-511\n type: *7\n value: BLU-511\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0031\n type: *8\n value: BLS-0031\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA VOILA ROSA CORTE CAMPESINA\n type: *6\n value: BLUSA VOILA ROSA CORTE CAMPESINA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '434.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4345E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '869.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.869E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4504.jpg\n type: *2\n value: IMG_4504.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000511'\n type: *2\n value: '0000511'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-03-21 23:40:19.36523'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4504.jpg\n 3 El producto BLU-511 fue modificado. 189.186.78.190 3d1bee1b-bece-4238-90e7-15ca8ca09c2a 2020-02-19 18:45:13.506045 29902 144 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '144'\n is_parent: false\n sku: BLU-144\n name: BLS-0011\n description: BLUSA MC CON COLA BLANCA FLORES\n price_base: '297.6'\n price_sale: '799.0'\n img_product: IMG_4502.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000144'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862722'\n updated_at: &12 2020-02-19 18:46:00.557699852 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '144'\n sku: BLU-144\n name: BLS-0011\n description: BLUSA MC CON COLA BLANCA FLORES\n price_base: '297.60'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862722'\n updated_at: '2019-02-04 09:10:15.058253'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000144'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '144'\n type: *3\n value: 144\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-144\n type: *7\n value: BLU-144\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0011\n type: *8\n value: BLS-0011\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA MC CON COLA BLANCA FLORES\n type: *6\n value: BLUSA MC CON COLA BLANCA FLORES\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '297.6'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2976E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: IMG_4502.jpg\n type: *2\n value: IMG_4502.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000144'\n type: *2\n value: '0000144'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862722'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- IMG_4502.jpg\n 3 El producto BLU-144 fue modificado. 189.186.78.190 a643fe2e-f4fe-46e8-b05c-b889cc5d4cb6 2020-02-19 18:46:00.604258 29903 1003 Product \N \N 1 User \N create ---\nsku: BLU-1003\nname: BLS-0113\ndescription: BLUSA DECO DORADA 6681-3\nprice_base: !ruby/object:BigDecimal 18:0.26535E3\nprice_sale: !ruby/object:BigDecimal 18:0.669E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1003 fue creado. 187.149.67.196 27b89166-efe0-4c99-a1e9-8ba3d8d833e0 2020-02-19 18:59:37.237397 29904 1003 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0001003'\n 2 \N 187.149.67.196 27b89166-efe0-4c99-a1e9-8ba3d8d833e0 2020-02-19 18:59:37.278205 29905 1667 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 1003\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 27b89166-efe0-4c99-a1e9-8ba3d8d833e0 2020-02-19 18:59:37.309482 29906 1004 Product \N \N 1 User \N create ---\nsku: FAL-1004\nname: FLD-0027\ndescription: FALDA DE TUL ROSA KIWI\nprice_base: !ruby/object:BigDecimal 18:0.19215E3\nprice_sale: !ruby/object:BigDecimal 18:0.529E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-1004 fue creado. 187.149.67.196 f9a902dd-1fc1-49ae-8fc5-d092cec88409 2020-02-19 19:26:47.91916 29907 1004 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0001004'\n 2 \N 187.149.67.196 f9a902dd-1fc1-49ae-8fc5-d092cec88409 2020-02-19 19:26:47.953957 29908 1668 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 1004\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 f9a902dd-1fc1-49ae-8fc5-d092cec88409 2020-02-19 19:26:47.982453 29909 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2020-02-15 19:25:13.594298000 Z\n- &1 2020-02-19 18:16:20.438753000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-19 19:35:57.566998717 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121604\n mask_addr: 4294967295\nsign_in_count:\n- 53\n- 54\n 108 \N 187.149.67.196 647ad80e-da8c-4d3e-889c-900e9f1d4c3a 2020-02-19 19:35:57.574561 29910 24 User \N \N 24 User \N update ---\nunique_session_id:\n- 5hEZRDEz9rUSwdroTnBX\n- hPaoDYL6HSyGSK8H4Ksv\n 109 \N 187.149.67.196 647ad80e-da8c-4d3e-889c-900e9f1d4c3a 2020-02-19 19:35:57.590925 29911 2223 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 839\namount: !ruby/object:BigDecimal 18:0.1169E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1169E4\nstatus: 0\ndate_sale: 2020-02-19\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-852\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.67.196 b026f839-07d6-467b-9b71-48f31f7182d4 2020-02-19 19:37:11.635088 29912 1649 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.67.196 b026f839-07d6-467b-9b71-48f31f7182d4 2020-02-19 19:37:11.674643 29913 2223 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.67.196 2f1faaaf-1abb-4322-a781-c75caeba6e01 2020-02-19 19:37:42.396786 44789 1523 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1523'\n is_parent: false\n sku: CHA-1523\n name: CHA-0030\n description: SUETER TIPO BLUSITA ROSA, IVORY Y NEGRO THINKABLE\n price_base: '181.5'\n price_sale: '499.0'\n img_product: 73CA465D-CAF8-4CEF-B7D8-9060218658DC.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001523'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 23:56:25.646052'\n updated_at: &12 2020-11-04 00:18:50.363165214 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1523'\n sku: CHA-1523\n name: CHA-0030\n description: SUETER TIPO BLUSITA ROSA, IVORY Y NEGRO THINKABLE\n price_base: '181.50'\n price_sale: '499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 23:56:25.646052'\n updated_at: '2020-11-03 23:56:25.68769'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001523'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1523'\n type: *3\n value: 1523\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-1523\n type: *7\n value: CHA-1523\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0030\n type: *8\n value: CHA-0030\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: SUETER TIPO BLUSITA ROSA, IVORY Y NEGRO THINKABLE\n type: *6\n value: SUETER TIPO BLUSITA ROSA, IVORY Y NEGRO THINKABLE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '181.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1815E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.499E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 73CA465D-CAF8-4CEF-B7D8-9060218658DC.jpeg\n type: *2\n value: 73CA465D-CAF8-4CEF-B7D8-9060218658DC.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001523'\n type: *2\n value: '0001523'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 23:56:25.646052'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 73CA465D-CAF8-4CEF-B7D8-9060218658DC.jpeg\n 3 El producto CHA-1523 fue modificado. 187.149.136.226 187b8214-9f0b-4dbb-b96b-d28150e01a65 2020-11-04 00:18:50.407109 29914 3024 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 839\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1169E4\nmove_type: '1'\nsale_id: 2223\ncardnumber: 9665\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-852\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-852 187.149.67.196 2f1faaaf-1abb-4322-a781-c75caeba6e01 2020-02-19 19:37:42.450106 29915 1005 Product \N \N 1 User \N create ---\nsku: FAL-1005\nname: FLD-0028\ndescription: FALDA BLANCA DE TUL KIWI\nprice_base: !ruby/object:BigDecimal 18:0.19215E3\nprice_sale: !ruby/object:BigDecimal 18:0.529E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-1005 fue creado. 187.149.67.196 49ee04c6-a6b3-4769-a363-c8170e196be5 2020-02-19 20:05:12.860831 29916 1005 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0001005'\n 2 \N 187.149.67.196 49ee04c6-a6b3-4769-a363-c8170e196be5 2020-02-19 20:05:12.906807 29917 1669 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 1005\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 49ee04c6-a6b3-4769-a363-c8170e196be5 2020-02-19 20:05:12.943966 29918 1006 Product \N \N 1 User \N create ---\nsku: FAL-1006\nname: FLD-0029\ndescription: FALDA LARGA DE TUL ROSA CON PERLAS TABA S13\nprice_base: !ruby/object:BigDecimal 18:0.2013E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-1006 fue creado. 187.149.67.196 95f7757a-a144-4120-9b1f-1793bf375616 2020-02-19 20:12:04.60234 29919 1006 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0001006'\n 2 \N 187.149.67.196 95f7757a-a144-4120-9b1f-1793bf375616 2020-02-19 20:12:04.632188 29920 1670 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 1006\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 95f7757a-a144-4120-9b1f-1793bf375616 2020-02-19 20:12:04.663265 29921 1007 Product \N \N 1 User \N create ---\nsku: FAL-1007\nname: FLD-0030\ndescription: FALDA LARGA DE TUL CON FONDO BRILLOSO TABA S06\nprice_base: !ruby/object:BigDecimal 18:0.2379E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-1007 fue creado. 187.149.67.196 cca387d5-fbbf-48bb-b8b6-7436231ff130 2020-02-19 20:13:29.248366 29922 1007 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0001007'\n 2 \N 187.149.67.196 cca387d5-fbbf-48bb-b8b6-7436231ff130 2020-02-19 20:13:29.283158 29923 1671 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 1007\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 cca387d5-fbbf-48bb-b8b6-7436231ff130 2020-02-19 20:13:29.32596 29924 1008 Product \N \N 1 User \N create ---\nsku: VES-1008\nname: VST-0109\ndescription: VESTIDO MULTICOLOR FLOREADO CQBYCQ ST.7748DW\nprice_base: !ruby/object:BigDecimal 18:0.3477E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1008 fue creado. 187.149.67.196 0e38fadd-57d1-43fa-bd9e-540ed5941d0f 2020-02-19 20:23:11.495388 29925 1008 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0001008'\n 2 \N 187.149.67.196 0e38fadd-57d1-43fa-bd9e-540ed5941d0f 2020-02-19 20:23:11.52452 29926 1672 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 1008\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 0e38fadd-57d1-43fa-bd9e-540ed5941d0f 2020-02-19 20:23:11.55602 29927 1009 Product \N \N 1 User \N create ---\nsku: BLU-1009\nname: BLS-0114\ndescription: BLUSA AQUA/AMARILLA CQBYCQ ST. 8626\nprice_base: !ruby/object:BigDecimal 18:0.2379E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1009 fue creado. 187.149.67.196 112d2961-a8a1-4303-95aa-286b63ee03c1 2020-02-19 20:25:45.311723 29928 1009 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0001009'\n 2 \N 187.149.67.196 112d2961-a8a1-4303-95aa-286b63ee03c1 2020-02-19 20:25:45.343836 29929 1673 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 1009\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 112d2961-a8a1-4303-95aa-286b63ee03c1 2020-02-19 20:25:45.387483 29930 1010 Product \N \N 1 User \N create ---\nsku: BLU-1010\nname: BLS-0115\ndescription: BLUSA DE MEZCLILA GEEGEE ST.J10001\nprice_base: !ruby/object:BigDecimal 18:0.2196E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1010 fue creado. 187.149.67.196 b02fd3e7-ae85-47c2-b404-f5dfa5b4264d 2020-02-19 20:28:31.03407 29931 1010 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0001010'\n 2 \N 187.149.67.196 b02fd3e7-ae85-47c2-b404-f5dfa5b4264d 2020-02-19 20:28:31.065357 29932 1674 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 1010\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 b02fd3e7-ae85-47c2-b404-f5dfa5b4264d 2020-02-19 20:28:31.098377 29933 1011 Product \N \N 1 User \N create ---\nsku: BLU-1011\nname: BLS-0116\ndescription: PLAYERA NEGRA CON PEDRERIA ST.DZ3475\nprice_base: !ruby/object:BigDecimal 18:0.23332E3\nprice_sale: !ruby/object:BigDecimal 18:0.589E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1011 fue creado. 187.149.67.196 e231904c-8946-4d58-bdd5-2b5972beee80 2020-02-19 20:38:50.562537 29934 1011 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0001011'\n 2 \N 187.149.67.196 e231904c-8946-4d58-bdd5-2b5972beee80 2020-02-19 20:38:50.596903 29935 1675 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 1011\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 e231904c-8946-4d58-bdd5-2b5972beee80 2020-02-19 20:38:50.624233 29936 1012 Product \N \N 1 User \N create ---\nsku: BLU-1012\nname: BLS-0117\ndescription: PLAYERA BLANCA CON LENTEJUELA EN CUELLO ROSA ST.DZ3574\nprice_base: !ruby/object:BigDecimal 18:0.23332E3\nprice_sale: !ruby/object:BigDecimal 18:0.589E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1012 fue creado. 187.149.67.196 f4f1034c-366f-47d9-8997-21e10b5a9b3d 2020-02-19 20:42:22.628936 29937 1012 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0001012'\n 2 \N 187.149.67.196 f4f1034c-366f-47d9-8997-21e10b5a9b3d 2020-02-19 20:42:22.659128 29938 1676 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 1012\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 f4f1034c-366f-47d9-8997-21e10b5a9b3d 2020-02-19 20:42:22.690462 29939 1013 Product \N \N 1 User \N create ---\nsku: BLU-1013\nname: BLS-0118\ndescription: PLAYERA BLANCA CON COLLAR EN CUELLO ST.DZ3575\nprice_base: !ruby/object:BigDecimal 18:0.23332E3\nprice_sale: !ruby/object:BigDecimal 18:0.589E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1013 fue creado. 187.149.67.196 70d86abc-7c26-42dc-a9ad-c235c262780f 2020-02-19 20:44:24.109656 29940 1013 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0001013'\n 2 \N 187.149.67.196 70d86abc-7c26-42dc-a9ad-c235c262780f 2020-02-19 20:44:24.14037 29941 1677 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 1013\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 70d86abc-7c26-42dc-a9ad-c235c262780f 2020-02-19 20:44:24.170991 29942 1014 Product \N \N 1 User \N create ---\nsku: BLU-1014\nname: BLS-0119\ndescription: BLUSA NUDE CON OLANES EN MANGA DE GAZA APEACH ST.7604\nprice_base: !ruby/object:BigDecimal 18:0.2562E3\nprice_sale: !ruby/object:BigDecimal 18:0.659E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1014 fue creado. 187.149.67.196 a0077826-d72e-4f2f-8d4c-1c7f4f1bc009 2020-02-19 20:54:43.893887 29943 1014 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0001014'\n 2 \N 187.149.67.196 a0077826-d72e-4f2f-8d4c-1c7f4f1bc009 2020-02-19 20:54:43.926674 29944 1678 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 1014\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 a0077826-d72e-4f2f-8d4c-1c7f4f1bc009 2020-02-19 20:54:43.957383 29945 1015 Product \N \N 1 User \N create ---\nsku: BLU-1015\nname: BLS-0120\ndescription: BLUSA ROSITA CORAL DE GAZA APEACH ST.6239\nprice_base: !ruby/object:BigDecimal 18:0.19324E3\nprice_sale: !ruby/object:BigDecimal 18:0.549E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1015 fue creado. 187.149.67.196 dcdc5d37-b208-43c2-b709-4b0fd248087f 2020-02-19 20:56:27.954084 29946 1015 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0001015'\n 2 \N 187.149.67.196 dcdc5d37-b208-43c2-b709-4b0fd248087f 2020-02-19 20:56:28.349662 29947 1679 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 1015\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 dcdc5d37-b208-43c2-b709-4b0fd248087f 2020-02-19 20:56:28.380527 29948 1016 Product \N \N 1 User \N create ---\nsku: BLU-1016\nname: BLS-0121\ndescription: PANTI BLANCA MUYMUY ST.0973\nprice_base: !ruby/object:BigDecimal 18:0.17385E3\nprice_sale: !ruby/object:BigDecimal 18:0.519E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1016 fue creado. 187.149.67.196 39285cfa-d532-40f8-8e35-788edbea139a 2020-02-19 21:00:48.957357 29949 1016 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0001016'\n 2 \N 187.149.67.196 39285cfa-d532-40f8-8e35-788edbea139a 2020-02-19 21:00:48.997302 29950 1680 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 1016\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 39285cfa-d532-40f8-8e35-788edbea139a 2020-02-19 21:00:49.028421 29951 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-19 17:49:20.978412000 Z\n- &1 2020-02-19 18:02:44.593003000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-19 21:14:25.637101990 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938097\n mask_addr: 4294967295\nsign_in_count:\n- 1421\n- 1422\n 2844 \N 200.68.150.49 daa476e7-af79-450c-8a80-0b228eb1bde3 2020-02-19 21:14:25.645142 29952 4 User \N \N 4 User \N update ---\nunique_session_id:\n- u3rnfDAXn2Y_S2zAL-yi\n- zHputz1hRCAaY2qwgeUi\n 2845 \N 200.68.150.49 daa476e7-af79-450c-8a80-0b228eb1bde3 2020-02-19 21:14:25.668863 29953 243 Purchase \N \N 1 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-65\namount: !ruby/object:BigDecimal 18:0.2039265E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2039265E5\nobservations: ''\npurchase_date: 2020-02-19\nuser_id: '1'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-65 por $ 20392.65 MXN creada. 187.149.67.196 43a5060e-fd3a-4bb4-8373-738db3dc9c05 2020-02-19 21:44:25.093385 29954 1667 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 43a5060e-fd3a-4bb4-8373-738db3dc9c05 2020-02-19 21:44:25.125449 29955 1668 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 43a5060e-fd3a-4bb4-8373-738db3dc9c05 2020-02-19 21:44:25.162489 29956 1669 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 43a5060e-fd3a-4bb4-8373-738db3dc9c05 2020-02-19 21:44:25.197849 29957 1670 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 43a5060e-fd3a-4bb4-8373-738db3dc9c05 2020-02-19 21:44:25.227692 29958 1671 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 43a5060e-fd3a-4bb4-8373-738db3dc9c05 2020-02-19 21:44:25.254935 29959 1681 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 993\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.67.196 43a5060e-fd3a-4bb4-8373-738db3dc9c05 2020-02-19 21:44:25.285209 29960 1672 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 43a5060e-fd3a-4bb4-8373-738db3dc9c05 2020-02-19 21:44:25.31521 29961 1673 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 43a5060e-fd3a-4bb4-8373-738db3dc9c05 2020-02-19 21:44:25.342814 29962 1674 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 43a5060e-fd3a-4bb4-8373-738db3dc9c05 2020-02-19 21:44:25.366625 29963 1675 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 43a5060e-fd3a-4bb4-8373-738db3dc9c05 2020-02-19 21:44:25.393005 29964 1676 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 43a5060e-fd3a-4bb4-8373-738db3dc9c05 2020-02-19 21:44:25.424029 29965 1677 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 43a5060e-fd3a-4bb4-8373-738db3dc9c05 2020-02-19 21:44:25.459366 29966 1678 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 43a5060e-fd3a-4bb4-8373-738db3dc9c05 2020-02-19 21:44:25.488102 29967 1679 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.67.196 43a5060e-fd3a-4bb4-8373-738db3dc9c05 2020-02-19 21:44:25.5194 29968 1680 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.67.196 43a5060e-fd3a-4bb4-8373-738db3dc9c05 2020-02-19 21:44:25.545267 29969 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-19 02:52:01.589544000 Z\n- &1 2020-02-19 17:48:30.417755000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-19 22:15:01.901971229 Z\nsign_in_count:\n- 478\n- 479\n 961 \N 187.149.67.196 ff57acd3-336a-4d85-b88f-7742ec7ae951 2020-02-19 22:15:01.908596 29970 2 User \N \N 2 User \N update ---\nunique_session_id:\n- WXsTqq7D1sXdf6a5EZhP\n- "-fdoSAccn7B_dY6YdWdq"\n 962 \N 187.149.67.196 ff57acd3-336a-4d85-b88f-7742ec7ae951 2020-02-19 22:15:01.924446 29971 2224 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 838\namount: !ruby/object:BigDecimal 18:0.164041E4\ntax: !ruby/object:BigDecimal 18:0.2759E2\ndiscount: !ruby/object:BigDecimal 18:0.699E3\ntotal: !ruby/object:BigDecimal 18:0.969E3\nstatus: 0\ndate_sale: 2020-02-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1093\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.129 3570d651-0a34-4a23-9302-2eb518c11607 2020-02-19 22:36:01.155221 29972 1632 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.20.129 3570d651-0a34-4a23-9302-2eb518c11607 2020-02-19 22:36:01.191805 29973 760 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.20.129 3570d651-0a34-4a23-9302-2eb518c11607 2020-02-19 22:36:01.226346 29974 2224 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.129 3d6ebdf1-759c-4192-96de-66f7b25d17b1 2020-02-19 22:36:14.275738 29975 3025 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 838\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.969E3\nmove_type: '1'\nsale_id: 2224\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1093\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.969E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1093 189.186.20.129 3d6ebdf1-759c-4192-96de-66f7b25d17b1 2020-02-19 22:36:14.302457 29976 1017 Product \N \N 1 User \N create ---\nsku: PAN-1017\nname: PNT-0027\ndescription: PANTALON MOSTAZA SANJOY ST.3051\nprice_base: !ruby/object:BigDecimal 18:0.24705E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-1017 fue creado. 189.186.20.129 bb912fdc-a434-4d70-9bb0-56d447ea44a2 2020-02-19 22:47:45.58163 29977 1017 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0001017'\n 2 \N 189.186.20.129 bb912fdc-a434-4d70-9bb0-56d447ea44a2 2020-02-19 22:47:45.613556 29978 1682 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 1017\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.20.129 bb912fdc-a434-4d70-9bb0-56d447ea44a2 2020-02-19 22:47:45.646638 30001 2225 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 838\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-02-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1094\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.129 3d5c3783-0d4c-4dc2-ab60-7e2b7eaa3eaa 2020-02-20 01:50:07.986186 29979 1018 Product \N \N 1 User \N create ---\nsku: PAN-1018\nname: PNT-0028\ndescription: PANTALON ROSA BALBOA ST.19122\nprice_base: !ruby/object:BigDecimal 18:0.2379E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-1018 fue creado. 189.186.20.129 00feace8-721e-4755-957e-215df6a5ef69 2020-02-19 22:51:16.762613 29980 1018 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0001018'\n 2 \N 189.186.20.129 00feace8-721e-4755-957e-215df6a5ef69 2020-02-19 22:51:16.792358 29981 1683 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 1018\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.20.129 00feace8-721e-4755-957e-215df6a5ef69 2020-02-19 22:51:16.821064 29982 1019 Product \N \N 1 User \N create ---\nsku: PAN-1019\nname: PNT-0029\ndescription: PANTALON NEGRO BALBOA ST.2015\nprice_base: !ruby/object:BigDecimal 18:0.24705E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-1019 fue creado. 189.186.20.129 6e8303a1-8fc4-4696-bcb5-e298a7ae492e 2020-02-19 22:52:07.704412 29983 1019 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0001019'\n 2 \N 189.186.20.129 6e8303a1-8fc4-4696-bcb5-e298a7ae492e 2020-02-19 22:52:07.740827 29984 1684 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 1019\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.20.129 6e8303a1-8fc4-4696-bcb5-e298a7ae492e 2020-02-19 22:52:07.775091 29985 244 Purchase \N \N 1 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-66\namount: !ruby/object:BigDecimal 18:0.54048E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.54048E4\nobservations: ''\npurchase_date: 2020-02-19\nuser_id: '1'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-66 por $ 5404.8 MXN creada. 189.186.20.129 4a12060a-661e-46be-bd8c-a85ba40aef20 2020-02-19 22:52:35.788976 29986 495 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 189.186.20.129 4a12060a-661e-46be-bd8c-a85ba40aef20 2020-02-19 22:52:35.825767 29987 1682 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.20.129 4a12060a-661e-46be-bd8c-a85ba40aef20 2020-02-19 22:52:35.863408 29988 1683 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.20.129 4a12060a-661e-46be-bd8c-a85ba40aef20 2020-02-19 22:52:35.89329 29989 1684 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.20.129 4a12060a-661e-46be-bd8c-a85ba40aef20 2020-02-19 22:52:35.923776 29990 1020 Product \N \N 1 User \N create ---\nsku: PAN-1020\nname: PNT-0026\ndescription: PANTALON NEGRO CUADROS COLORES BLUE S\nprice_base: !ruby/object:BigDecimal 18:0.28365E3\nprice_sale: !ruby/object:BigDecimal 18:0.729E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-1020 fue creado. 189.186.20.129 5bfaa4e5-ecdd-45b6-af26-e1330cb25dc1 2020-02-19 22:54:03.18849 29991 1020 Product \N \N 1 User \N update ---\nbarcode:\n- ''\n- '0001020'\n 2 \N 189.186.20.129 5bfaa4e5-ecdd-45b6-af26-e1330cb25dc1 2020-02-19 22:54:03.216163 29992 1685 AvailableProduct \N \N 1 User \N create ---\nproduct_id: 1020\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.20.129 5bfaa4e5-ecdd-45b6-af26-e1330cb25dc1 2020-02-19 22:54:03.244459 29993 245 Purchase \N \N 1 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-110\namount: !ruby/object:BigDecimal 18:0.17019E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.17019E4\nobservations: ''\npurchase_date: 2020-02-19\nuser_id: '1'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-110 por $ 1701.9 MXN creada. 189.186.20.129 b13de81b-83f7-4319-b355-ab36ee157b6e 2020-02-19 22:54:10.829491 29994 1685 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.20.129 b13de81b-83f7-4319-b355-ab36ee157b6e 2020-02-19 22:54:10.852497 29995 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-18 02:59:06.711454000 Z\n- &1 2020-02-18 20:35:00.197285000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-19 23:16:02.523219525 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121604\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121604\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088769\n mask_addr: 4294967295\nsign_in_count:\n- 105\n- 106\n 212 \N 189.186.20.129 c85f54c9-ff58-4b71-b848-e469a25babfd 2020-02-19 23:16:02.531826 29996 27 User \N \N 27 User \N update ---\nunique_session_id:\n- ywo6d8d9qnhDB4MQuYXU\n- DY2H-tpLEhUkivLksUuh\n 213 \N 189.186.20.129 c85f54c9-ff58-4b71-b848-e469a25babfd 2020-02-19 23:16:02.548597 29997 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-19 17:48:30.417755000 Z\n- &1 2020-02-19 22:15:01.901971000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-20 00:21:18.485584467 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121604\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088769\n mask_addr: 4294967295\nsign_in_count:\n- 479\n- 480\n 963 \N 189.186.20.129 c567a914-6341-4f80-883d-d486dc416dd7 2020-02-20 00:21:18.493293 29998 2 User \N \N 2 User \N update ---\nunique_session_id:\n- "-fdoSAccn7B_dY6YdWdq"\n- EmS4yNZYWaV7gisHyz6N\n 964 \N 189.186.20.129 c567a914-6341-4f80-883d-d486dc416dd7 2020-02-20 00:21:18.512881 29999 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-18 20:35:00.197285000 Z\n- &1 2020-02-19 23:16:02.523219000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-20 01:40:47.748484750 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121604\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088769\n mask_addr: 4294967295\nsign_in_count:\n- 106\n- 107\n 214 \N 189.186.20.129 3aedfa58-ec68-4af6-be5d-944c205d0b8c 2020-02-20 01:40:47.756706 30000 27 User \N \N 27 User \N update ---\nunique_session_id:\n- DY2H-tpLEhUkivLksUuh\n- otZ8dfJPuRD3X7xzjzyF\n 215 \N 189.186.20.129 3aedfa58-ec68-4af6-be5d-944c205d0b8c 2020-02-20 01:40:47.775972 30004 3026 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 838\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 2225\ncardnumber: 2473\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1094\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1094 189.186.20.129 486b5a02-b125-41d9-8f1a-d449b81bb9f9 2020-02-20 01:50:41.528237 30005 854 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 839\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.1169E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1177E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1177E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.20.129 bc06a0c9-27a1-4247-921b-c6c510fae93d 2020-02-20 02:03:03.855364 30006 839 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.129 bc06a0c9-27a1-4247-921b-c6c510fae93d 2020-02-20 02:03:03.876481 30007 855 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 838\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1668E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.9E3\ncash_fund: !ruby/object:BigDecimal 18:0.1075E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1975E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.129 3d101e10-2cb9-4123-98ac-c5780bf107b4 2020-02-20 02:03:04.039124 30008 838 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.129 3d101e10-2cb9-4123-98ac-c5780bf107b4 2020-02-20 02:03:04.059839 30009 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-19 17:37:03.221720000 Z\n- &1 2020-02-19 17:58:14.957328000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-20 17:16:38.543031211 Z\nsign_in_count:\n- 153\n- 154\n 309 \N 189.186.78.190 12d870e8-4bf2-4913-a09f-973d9564b998 2020-02-20 17:16:38.574473 30010 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 4iPCEHG1kgossBqV-TeF\n- u_aFhxZD9yNYXq58UdtZ\n 310 \N 189.186.78.190 12d870e8-4bf2-4913-a09f-973d9564b998 2020-02-20 17:16:38.600184 30011 2226 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 837\namount: !ruby/object:BigDecimal 18:0.61724E3\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2020-02-20\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-278\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 fc476552-3054-4d2e-8497-7a7c18edd6e9 2020-02-20 17:18:23.15497 30012 939 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.36E2\n- !ruby/object:BigDecimal 18:0.34E2\n 4 \N 189.186.78.190 fc476552-3054-4d2e-8497-7a7c18edd6e9 2020-02-20 17:18:23.239016 30013 2226 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.78.190 029d1f13-73cb-41ed-b9cf-ebcbc01d4fb2 2020-02-20 17:18:44.494453 30014 3027 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 837\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 2226\ncardnumber: 6004\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-278\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-278 189.186.78.190 029d1f13-73cb-41ed-b9cf-ebcbc01d4fb2 2020-02-20 17:18:44.527999 30015 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-19 23:16:02.523219000 Z\n- &1 2020-02-20 01:40:47.748484000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-20 18:07:48.422179554 Z\nsign_in_count:\n- 107\n- 108\n 216 \N 189.186.20.129 a596bdc4-58c5-44d5-8a6a-c404406b8432 2020-02-20 18:07:48.430916 30016 27 User \N \N 27 User \N update ---\nunique_session_id:\n- otZ8dfJPuRD3X7xzjzyF\n- eszSqzhJbBJ4KhTDopUF\n 217 \N 189.186.20.129 a596bdc4-58c5-44d5-8a6a-c404406b8432 2020-02-20 18:07:48.452435 30017 3028 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 767\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 2077\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: MA\n 1 \N 189.186.78.190 63a879d7-705a-4aaf-8c6b-54e4d4874996 2020-02-20 18:20:26.109688 30018 3028 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 767\n- 837\n 2 movimiento de efectivo por venta con folio PV3-V-249 189.186.78.190 63a879d7-705a-4aaf-8c6b-54e4d4874996 2020-02-20 18:20:26.138547 30019 3029 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 837\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.59799E3\nmove_type: '1'\nsale_id: 2112\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.201E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-253 189.186.78.190 e338fa3a-bebf-45d4-9bfb-771db2cd7bcf 2020-02-20 19:04:13.086935 30020 2112 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.78.190 877bf782-081c-4012-8bdf-0ebefc416542 2020-02-20 19:04:23.781428 30021 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-19 18:02:44.593003000 Z\n- &1 2020-02-19 21:14:25.637101000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-20 19:12:33.769174683 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938097\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938097\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938425\n mask_addr: 4294967295\nsign_in_count:\n- 1422\n- 1423\n 2846 \N 200.68.151.121 7fa60e48-9b19-4b52-9620-f5361d5e6903 2020-02-20 19:12:33.778051 30022 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zHputz1hRCAaY2qwgeUi\n- p9i2sKE3itZA1qqV3AcF\n 2847 \N 200.68.151.121 7fa60e48-9b19-4b52-9620-f5361d5e6903 2020-02-20 19:12:33.798896 30023 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-19 21:14:25.637101000 Z\n- &1 2020-02-20 19:12:33.769174000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-20 19:12:34.428244478 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938097\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938425\n mask_addr: 4294967295\nsign_in_count:\n- 1423\n- 1424\n 2848 \N 200.68.151.121 eabee9be-b403-426b-b9c0-566521da3496 2020-02-20 19:12:34.438904 30024 4 User \N \N 4 User \N update ---\nunique_session_id:\n- p9i2sKE3itZA1qqV3AcF\n- YdyfxP2YmrybiDJKENCb\n 2849 \N 200.68.151.121 eabee9be-b403-426b-b9c0-566521da3496 2020-02-20 19:12:34.461088 30047 2230 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 840\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-02-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1098\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.129 10e65fe9-8c5c-4bc5-a94d-e35ae9e3e50b 2020-02-21 01:31:29.370641 30025 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-02-15 17:11:27.012919000 Z\n- &1 2020-02-19 18:21:14.071662000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-20 19:17:22.672329593 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121604\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121604\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088769\n mask_addr: 4294967295\nsign_in_count:\n- 162\n- 163\n 326 \N 189.186.20.129 a243853c-6e92-4347-8182-82ed1b2771b4 2020-02-20 19:17:22.6816 30026 1 User \N \N 1 User \N update ---\nunique_session_id:\n- FCHK5LSzN47r8qwTd8X4\n- fTEST_9iwGZS7xzR_NW3\n 327 \N 189.186.20.129 a243853c-6e92-4347-8182-82ed1b2771b4 2020-02-20 19:17:22.69966 30027 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-20 19:12:33.769174000 Z\n- &1 2020-02-20 19:12:34.428244000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-20 20:24:23.772882118 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938425\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1424\n- 1425\n 2850 \N 189.186.78.190 d9309c6f-0948-4df7-a191-bee6ba96fca4 2020-02-20 20:24:23.782076 30028 4 User \N \N 4 User \N update ---\nunique_session_id:\n- YdyfxP2YmrybiDJKENCb\n- 1H95Pkd7ze2wAPnnDHVz\n 2851 \N 189.186.78.190 d9309c6f-0948-4df7-a191-bee6ba96fca4 2020-02-20 20:24:23.801798 30029 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-19 17:58:14.957328000 Z\n- &1 2020-02-20 17:16:38.543031000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-20 20:25:20.844597306 Z\nsign_in_count:\n- 154\n- 155\n 311 \N 189.186.78.190 2d36d7ba-520e-4421-b9b4-3781099451f4 2020-02-20 20:25:20.851319 30030 21 User \N \N 21 User \N update ---\nunique_session_id:\n- u_aFhxZD9yNYXq58UdtZ\n- jDGrH-SZ7u5ymGEsygvt\n 312 \N 189.186.78.190 2d36d7ba-520e-4421-b9b4-3781099451f4 2020-02-20 20:25:20.866526 30031 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-19 22:15:01.901971000 Z\n- &1 2020-02-20 00:21:18.485584000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-20 20:43:44.202130374 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121604\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088769\n mask_addr: 4294967295\nsign_in_count:\n- 480\n- 481\n 965 \N 189.186.20.129 8951cb44-40b8-4802-b511-d2f8f4bce3a9 2020-02-20 20:43:44.210988 30032 2 User \N \N 2 User \N update ---\nunique_session_id:\n- EmS4yNZYWaV7gisHyz6N\n- uy6ry1f2CG51YKu9y6GL\n 966 \N 189.186.20.129 8951cb44-40b8-4802-b511-d2f8f4bce3a9 2020-02-20 20:43:44.231027 30033 840 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1075E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1075.0 189.186.20.129 c56c7e5e-ac71-46ef-b5f0-498a035268db 2020-02-20 20:44:15.884529 30034 2227 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 840\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2020-02-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1095\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.129 ac86e614-0b13-4b4c-907e-e9ba4fc34348 2020-02-20 21:50:12.277229 30035 1637 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.20.129 ac86e614-0b13-4b4c-907e-e9ba4fc34348 2020-02-20 21:50:12.321861 30036 2227 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.129 4fc5748c-6fb3-4711-ba36-afca0d86a75e 2020-02-20 21:52:31.051265 30037 3030 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 840\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 2227\ncardnumber: 9472\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1095\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1095 189.186.20.129 4fc5748c-6fb3-4711-ba36-afca0d86a75e 2020-02-20 21:52:31.079304 30038 2228 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 840\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-02-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1096\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.129 95059c40-60aa-4760-8f83-0be3664a74d1 2020-02-21 00:56:27.185049 30039 1653 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.20.129 95059c40-60aa-4760-8f83-0be3664a74d1 2020-02-21 00:56:27.22003 30040 2228 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.129 fff488ee-6622-4e6c-adfd-fe66052db2e4 2020-02-21 00:56:35.03294 30041 3031 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 840\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 2228\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1096\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1096 189.186.20.129 fff488ee-6622-4e6c-adfd-fe66052db2e4 2020-02-21 00:56:35.056014 30042 2229 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 840\namount: !ruby/object:BigDecimal 18:0.78521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.699E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-02-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1097\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.129 106d8171-88be-42ae-9632-31bbc52f11df 2020-02-21 01:00:44.447019 30043 203 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 189.186.20.129 106d8171-88be-42ae-9632-31bbc52f11df 2020-02-21 01:00:44.493716 30044 2229 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.129 ce0d8002-2eb0-45d6-8084-fb8305b92d54 2020-02-21 01:00:48.711635 30045 3032 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 840\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2229\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1097\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1097 189.186.20.129 ce0d8002-2eb0-45d6-8084-fb8305b92d54 2020-02-21 01:00:48.734541 30046 841 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1177E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1177.0 189.186.20.129 13d38ab8-e367-4f99-a854-62b34e90c3da 2020-02-21 01:18:53.74953 44790 1524 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1524'\n is_parent: false\n sku: CHA-1524\n name: CHA-0031\n description: SUETER ROSA TEJIDO OLGADO THINKABLE\n price_base: '280.5'\n price_sale: '739.0'\n img_product: 15C1D757-E45C-47BA-9549-9785A8B56789.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001524'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 23:57:28.009895'\n updated_at: &12 2020-11-04 00:19:22.473564506 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1524'\n sku: CHA-1524\n name: CHA-0031\n description: SUETER ROSA TEJIDO OLGADO THINKABLE\n price_base: '280.50'\n price_sale: '739.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 23:57:28.009895'\n updated_at: '2020-11-03 23:57:28.043718'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001524'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1524'\n type: *3\n value: 1524\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-1524\n type: *7\n value: CHA-1524\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0031\n type: *8\n value: CHA-0031\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: SUETER ROSA TEJIDO OLGADO THINKABLE\n type: *6\n value: SUETER ROSA TEJIDO OLGADO THINKABLE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '280.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2805E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '739.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.739E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 15C1D757-E45C-47BA-9549-9785A8B56789.jpeg\n type: *2\n value: 15C1D757-E45C-47BA-9549-9785A8B56789.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001524'\n type: *2\n value: '0001524'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 23:57:28.009895'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 15C1D757-E45C-47BA-9549-9785A8B56789.jpeg\n 3 El producto CHA-1524 fue modificado. 187.149.136.226 d2fb8717-0027-40dc-aa7b-f45f0850decd 2020-11-04 00:19:22.520818 30050 3033 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 840\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49E2\nmove_type: '1'\nsale_id: 2230\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1098\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1098 189.186.20.129 d91f4e95-975b-4519-abca-dcd67549b690 2020-02-21 01:31:35.285852 30051 2231 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 840\namount: !ruby/object:BigDecimal 18:0.78521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.699E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-02-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1099\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.129 a29fd5f1-d6cc-4dfe-91cb-5a81adfebfb4 2020-02-21 01:57:54.355439 30052 203 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 189.186.20.129 a29fd5f1-d6cc-4dfe-91cb-5a81adfebfb4 2020-02-21 01:57:54.384018 30053 2231 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.129 12cd52ea-742d-46e8-90b1-32ea407af0fb 2020-02-21 01:57:59.482875 30054 3034 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 840\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2231\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1099\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1099 189.186.20.129 12cd52ea-742d-46e8-90b1-32ea407af0fb 2020-02-21 01:57:59.504566 30055 482 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-20\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.20.129 14859901-4e97-4e42-8346-dfc3e4eec94d 2020-02-21 02:05:53.314671 30056 1686 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 981\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.20.129 14859901-4e97-4e42-8346-dfc3e4eec94d 2020-02-21 02:05:53.339298 30057 856 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 841\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1177E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1177E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.20.129 ab5f3f2e-d206-4011-87f0-b369a2103308 2020-02-21 02:30:39.456526 30058 841 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.129 ab5f3f2e-d206-4011-87f0-b369a2103308 2020-02-21 02:30:39.47239 30059 857 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 840\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2147E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.1223E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1923E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.129 14aa2cd6-6cdc-4dac-a260-6dd5c8e269b9 2020-02-21 02:33:20.33066 30060 840 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.129 14aa2cd6-6cdc-4dac-a260-6dd5c8e269b9 2020-02-21 02:33:20.34545 30061 858 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 837\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.149799E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.102E4\nphysical_cash: !ruby/object:BigDecimal 18:0.152E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 43e53f1d-665b-4b7c-b9b9-62f4aac4b22f 2020-02-21 02:58:54.362927 30062 837 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 43e53f1d-665b-4b7c-b9b9-62f4aac4b22f 2020-02-21 02:58:54.37911 30063 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-20 19:12:34.428244000 Z\n- &1 2020-02-20 20:24:23.772882000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-21 02:59:43.440627786 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938425\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938425\n mask_addr: 4294967295\nsign_in_count:\n- 1425\n- 1426\n 2852 \N 200.68.151.121 73733620-93cf-4251-bba0-be1778f2b7f7 2020-02-21 02:59:43.451802 30064 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1H95Pkd7ze2wAPnnDHVz\n- qEep4vsFKxv3yHq8BtK5\n 2853 \N 200.68.151.121 73733620-93cf-4251-bba0-be1778f2b7f7 2020-02-21 02:59:43.474265 30065 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-20 01:40:47.748484000 Z\n- &1 2020-02-20 18:07:48.422179000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-21 17:17:21.816283396 Z\nsign_in_count:\n- 108\n- 109\n 218 \N 189.186.20.129 abea1c6b-ae2f-4b5c-8442-b8cf84d7da7c 2020-02-21 17:17:21.837056 30066 27 User \N \N 27 User \N update ---\nunique_session_id:\n- eszSqzhJbBJ4KhTDopUF\n- 9DFW9LnsYebgKgWsDJSF\n 219 \N 189.186.20.129 abea1c6b-ae2f-4b5c-8442-b8cf84d7da7c 2020-02-21 17:17:21.857651 30067 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-20 00:21:18.485584000 Z\n- &1 2020-02-20 20:43:44.202130000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-21 17:35:59.353925288 Z\nsign_in_count:\n- 481\n- 482\n 967 \N 189.186.20.129 2f602268-d636-4699-a526-13af81ff3bde 2020-02-21 17:35:59.360418 30068 2 User \N \N 2 User \N update ---\nunique_session_id:\n- uy6ry1f2CG51YKu9y6GL\n- yXfLCv4AhtQqi93FYBey\n 968 \N 189.186.20.129 2f602268-d636-4699-a526-13af81ff3bde 2020-02-21 17:35:59.377192 30069 842 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1223E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1223.0 189.186.20.129 608836e0-f48c-4d2a-bd96-30f64744597a 2020-02-21 17:36:21.144943 30070 3035 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 657\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1625\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.20.129 e481962c-ef43-4089-a70c-b113757612b1 2020-02-21 17:36:52.921777 30071 1625 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.129 e481962c-ef43-4089-a70c-b113757612b1 2020-02-21 17:36:52.949324 30072 3035 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 657\n- 842\n 2 movimiento de efectivo por venta con folio PV2-V-633 189.186.20.129 e481962c-ef43-4089-a70c-b113757612b1 2020-02-21 17:36:52.97264 30074 2232 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 842\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-02-21\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-1100\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.129 c78e07e4-2f3f-467d-97e9-32d16d08450e 2020-02-21 20:42:39.159984 30075 1638 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.20.129 c78e07e4-2f3f-467d-97e9-32d16d08450e 2020-02-21 20:42:39.198662 30076 2232 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.129 eef663ea-398c-4ac5-a215-abee9264931a 2020-02-21 20:42:56.888289 30077 3036 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 842\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 2232\ncardnumber: 6105\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1100\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1100 189.186.20.129 eef663ea-398c-4ac5-a215-abee9264931a 2020-02-21 20:42:56.923657 30078 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-20 17:16:38.543031000 Z\n- &1 2020-02-20 20:25:20.844597000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-21 21:50:19.163872630 Z\nsign_in_count:\n- 155\n- 156\n 313 \N 189.186.78.190 d8ac680c-5645-4b0a-afb8-8d8479e02c00 2020-02-21 21:50:19.171049 30079 21 User \N \N 21 User \N update ---\nunique_session_id:\n- jDGrH-SZ7u5ymGEsygvt\n- Bez14xhTbm2pPKrvzsJA\n 314 \N 189.186.78.190 d8ac680c-5645-4b0a-afb8-8d8479e02c00 2020-02-21 21:50:19.188088 30080 844 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.102E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1020.0 189.186.78.190 72bdf79e-0488-4f38-bf71-4deac05062ee 2020-02-21 21:52:16.75933 30081 2233 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 844\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-02-21\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-279\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 f182f119-8436-4540-bbef-b687c6d40573 2020-02-21 21:53:03.431219 30082 1556 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.78.190 f182f119-8436-4540-bbef-b687c6d40573 2020-02-21 21:53:03.464208 30083 2233 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.78.190 7ad80242-8366-4769-9b6c-97ecfa41c86b 2020-02-21 21:53:16.754678 30084 3037 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 844\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2233\ncardnumber: 9799\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-279\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-279 189.186.78.190 7ad80242-8366-4769-9b6c-97ecfa41c86b 2020-02-21 21:53:16.779269 30085 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-20 20:24:23.772882000 Z\n- &1 2020-02-21 02:59:43.440627000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-21 22:29:33.307193235 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938425\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938425\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946082\n mask_addr: 4294967295\nsign_in_count:\n- 1426\n- 1427\n 2854 \N 200.68.181.98 90162030-0372-4060-9a8e-02dd070b1187 2020-02-21 22:29:33.316111 30086 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qEep4vsFKxv3yHq8BtK5\n- 6imnFqGytBbodmy6sciz\n 2855 \N 200.68.181.98 90162030-0372-4060-9a8e-02dd070b1187 2020-02-21 22:29:33.33818 30087 2234 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 842\namount: !ruby/object:BigDecimal 18:0.519E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.519E3\nstatus: 0\ndate_sale: 2020-02-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1101\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.129 ee92f568-d557-48d3-b73d-8e8b79900400 2020-02-22 01:56:24.549751 30088 1628 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.20.129 ee92f568-d557-48d3-b73d-8e8b79900400 2020-02-22 01:56:24.591213 30089 2234 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.129 5e674d63-dacd-4ee9-8944-8ae70bb29eee 2020-02-22 01:56:29.141851 30090 3038 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 842\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.519E3\nmove_type: '1'\nsale_id: 2234\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1101\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.519E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1101 189.186.20.129 5e674d63-dacd-4ee9-8944-8ae70bb29eee 2020-02-22 01:56:29.17359 30091 2235 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 842\namount: !ruby/object:BigDecimal 18:0.78521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.699E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-02-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1102\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.129 7a3ec0c2-8702-40b0-87a6-6bd34b95ea29 2020-02-22 02:11:08.06924 30092 203 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 189.186.20.129 7a3ec0c2-8702-40b0-87a6-6bd34b95ea29 2020-02-22 02:11:08.10299 30093 2235 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.129 45d3808b-6e48-4865-8458-fb836ef907f8 2020-02-22 02:11:13.086984 30094 3039 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 842\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2235\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1102\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1102 189.186.20.129 45d3808b-6e48-4865-8458-fb836ef907f8 2020-02-22 02:11:13.11202 30120 846 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.139E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1390.0 189.186.20.129 909e1e20-c5ad-4fbb-93ba-d81b004f0a8a 2020-02-22 18:34:26.178005 30095 2236 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 842\namount: !ruby/object:BigDecimal 18:0.1548E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1548E4\nstatus: 0\ndate_sale: 2020-02-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1103\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.129 eb0dbf45-8a9c-46d1-a0db-363828d8bd1c 2020-02-22 02:16:27.817285 30096 1653 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.20.129 eb0dbf45-8a9c-46d1-a0db-363828d8bd1c 2020-02-22 02:16:27.855424 30097 1410 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 10 \N 189.186.20.129 eb0dbf45-8a9c-46d1-a0db-363828d8bd1c 2020-02-22 02:16:27.893139 30098 2236 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.129 cd86108a-10f6-4f38-a896-ad7f36a649cb 2020-02-22 02:16:33.737376 30099 3040 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 842\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1548E4\nmove_type: '1'\nsale_id: 2236\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1103\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1548E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1103 189.186.20.129 cd86108a-10f6-4f38-a896-ad7f36a649cb 2020-02-22 02:16:33.766505 30100 859 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 842\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3466E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.139E4\nphysical_cash: !ruby/object:BigDecimal 18:0.389E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.129 e5cf6714-03ba-49ae-bb79-970c535578cf 2020-02-22 02:27:48.29333 30101 842 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.129 e5cf6714-03ba-49ae-bb79-970c535578cf 2020-02-22 02:27:48.326427 30102 860 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 843\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1177E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1177E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.20.129 689b3ce6-9eb5-4cc5-885e-67a8372fd11c 2020-02-22 02:31:30.737658 30103 843 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.129 689b3ce6-9eb5-4cc5-885e-67a8372fd11c 2020-02-22 02:31:30.753218 30104 861 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 844\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.999E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.102E4\nphysical_cash: !ruby/object:BigDecimal 18:0.102E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 a1c7b422-50f5-4cf0-8977-3da234dc2e02 2020-02-22 03:00:45.962967 30105 844 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 a1c7b422-50f5-4cf0-8977-3da234dc2e02 2020-02-22 03:00:45.978093 30106 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-20 20:25:20.844597000 Z\n- &1 2020-02-21 21:50:19.163872000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-22 18:07:43.397533581 Z\nsign_in_count:\n- 156\n- 157\n 315 \N 189.186.78.190 d57a6106-8f19-44b1-9123-930f175c8468 2020-02-22 18:07:43.431772 30107 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Bez14xhTbm2pPKrvzsJA\n- 8kJGCavMoa6aAxVC3ToS\n 316 \N 189.186.78.190 d57a6106-8f19-44b1-9123-930f175c8468 2020-02-22 18:07:43.481429 30108 845 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.102E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1020.0 189.186.78.190 f1252adc-d302-4fbb-9997-bd9254ff0a26 2020-02-22 18:09:12.463554 30109 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-21 02:59:43.440627000 Z\n- &1 2020-02-21 22:29:33.307193000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-22 18:26:12.408698340 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938425\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946082\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946082\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1427\n- 1428\n 2856 \N 189.186.78.190 6f51072c-ccdb-4485-a14a-f35b8b39c14f 2020-02-22 18:26:12.417475 30110 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6imnFqGytBbodmy6sciz\n- h4ixC7mRJbPPseojGfPV\n 2857 \N 189.186.78.190 6f51072c-ccdb-4485-a14a-f35b8b39c14f 2020-02-22 18:26:12.439787 30111 414 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.78.190 d19be139-0981-443f-ae9e-9c29f0b7290b 2020-02-22 18:29:52.577079 30112 414 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.78.190 304501af-c664-4680-8ba2-a3308ac60679 2020-02-22 18:29:56.226318 30113 485 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-02-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.78.190 c5daf865-d09e-4489-97d0-2a127fed5b07 2020-02-22 18:29:58.758515 30114 159 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.78.190 27926d5d-cf7c-4cb4-9250-7a3d24b5f8d2 2020-02-22 18:30:37.197413 30115 632 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.78.190 c385037c-143e-4718-aefd-bacbdb83001b 2020-02-22 18:31:12.53824 30116 159 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.78.190 28af4b09-c058-4a10-b26c-157667557d43 2020-02-22 18:31:16.379047 30117 486 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-02-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.78.190 5397acf7-b2a7-4ebb-95f5-bbed57102d09 2020-02-22 18:31:49.154963 30118 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-20 20:43:44.202130000 Z\n- &1 2020-02-21 17:35:59.353925000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-22 18:33:57.138979572 Z\nsign_in_count:\n- 482\n- 483\n 969 \N 189.186.20.129 1b3b3ac5-de6d-485d-b015-25940967cb2e 2020-02-22 18:33:57.145314 30119 2 User \N \N 2 User \N update ---\nunique_session_id:\n- yXfLCv4AhtQqi93FYBey\n- BxyU3HZq9DG1cWdpie-d\n 970 \N 189.186.20.129 1b3b3ac5-de6d-485d-b015-25940967cb2e 2020-02-22 18:33:57.161641 44791 1526 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1526'\n is_parent: false\n sku: CHA-1526\n name: CHA-0032\n description: SUETER NEGRO TEJIDO CUELLO DE TORTUGA THINKABLE\n price_base: '258.5'\n price_sale: '649.0'\n img_product: 0CA5C0AD-67FE-4A1D-8389-B376CFB1CF3D.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001526'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-04 00:02:00.54572'\n updated_at: &12 2020-11-04 00:20:29.074692810 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1526'\n sku: CHA-1526\n name: CHA-0032\n description: SUETER NEGRO TEJIDO CUELLO DE TORTUGA THINKABLE\n price_base: '258.50'\n price_sale: '649.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-04 00:02:00.54572'\n updated_at: '2020-11-04 00:02:00.583953'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001526'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1526'\n type: *3\n value: 1526\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-1526\n type: *7\n value: CHA-1526\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0032\n type: *8\n value: CHA-0032\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: SUETER NEGRO TEJIDO CUELLO DE TORTUGA THINKABLE\n type: *6\n value: SUETER NEGRO TEJIDO CUELLO DE TORTUGA THINKABLE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '258.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2585E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '649.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.649E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 0CA5C0AD-67FE-4A1D-8389-B376CFB1CF3D.jpeg\n type: *2\n value: 0CA5C0AD-67FE-4A1D-8389-B376CFB1CF3D.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001526'\n type: *2\n value: '0001526'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-04 00:02:00.54572'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 0CA5C0AD-67FE-4A1D-8389-B376CFB1CF3D.jpeg\n 3 El producto CHA-1526 fue modificado. 187.149.136.226 5abf10cd-50ba-4bb2-a6c7-55da7679e823 2020-11-04 00:20:29.11699 30121 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2020-02-19 18:16:20.438753000 Z\n- &1 2020-02-19 19:35:57.566998000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-22 18:35:05.253597333 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121604\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088769\n mask_addr: 4294967295\nsign_in_count:\n- 54\n- 55\n 110 \N 189.186.20.129 2c88bab9-d140-4af9-b9e7-7c821bece783 2020-02-22 18:35:05.261633 30122 24 User \N \N 24 User \N update ---\nunique_session_id:\n- hPaoDYL6HSyGSK8H4Ksv\n- cqxnxxes_vDwj1woFGN5\n 111 \N 189.186.20.129 2c88bab9-d140-4af9-b9e7-7c821bece783 2020-02-22 18:35:05.280289 30123 847 OpenCashRegister \N \N 24 User \N create ---\ncash_register_id: 2\nuser_id: 24\ninitial_cash: !ruby/object:BigDecimal 18:0.1177E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1177.0 189.186.20.129 d57e7ef3-d7a3-435f-9506-316c3ed182ad 2020-02-22 18:35:09.84988 30124 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-21 22:29:33.307193000 Z\n- &1 2020-02-22 18:26:12.408698000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-22 18:37:26.066628041 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946082\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945742\n mask_addr: 4294967295\nsign_in_count:\n- 1428\n- 1429\n 2858 \N 200.68.180.14 b721f8a3-65aa-4cc4-880e-27d384b1ec25 2020-02-22 18:37:26.076009 30125 4 User \N \N 4 User \N update ---\nunique_session_id:\n- h4ixC7mRJbPPseojGfPV\n- EsyD7Jr61X6WWGcncUGS\n 2859 \N 200.68.180.14 b721f8a3-65aa-4cc4-880e-27d384b1ec25 2020-02-22 18:37:26.100252 30126 2237 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 846\namount: !ruby/object:BigDecimal 18:0.998E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.998E3\nstatus: 0\ndate_sale: 2020-02-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1104\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.129 e1145c8e-74e2-4f97-b28b-81a3d0560efe 2020-02-22 18:45:26.22606 30127 605 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 12 \N 189.186.20.129 e1145c8e-74e2-4f97-b28b-81a3d0560efe 2020-02-22 18:45:26.268921 30128 1628 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.20.129 e1145c8e-74e2-4f97-b28b-81a3d0560efe 2020-02-22 18:45:26.31401 30129 2237 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.129 7a3cedd4-2ede-4af3-901b-ca01a81d8b46 2020-02-22 18:45:40.075515 30130 3041 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 846\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.998E3\nmove_type: '1'\nsale_id: 2237\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1104\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.998E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1104 189.186.20.129 7a3cedd4-2ede-4af3-901b-ca01a81d8b46 2020-02-22 18:45:40.105054 30131 2238 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 846\namount: !ruby/object:BigDecimal 18:0.97141E3\ntax: !ruby/object:BigDecimal 18:0.2759E2\ndiscount: !ruby/object:BigDecimal 18:0.799E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-02-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1105\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.129 d084e4d5-b0ef-47c4-8923-0c134c6a37ea 2020-02-22 18:52:17.805711 30132 165 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.20.129 d084e4d5-b0ef-47c4-8923-0c134c6a37ea 2020-02-22 18:52:17.845465 30133 2238 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.129 7f497c6b-7c77-4d41-bf7a-eaa5bc7933c3 2020-02-22 18:52:21.695232 30134 3042 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 846\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2238\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1105\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1105 189.186.20.129 7f497c6b-7c77-4d41-bf7a-eaa5bc7933c3 2020-02-22 18:52:21.72405 30135 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-21 21:50:19.163872000 Z\n- &1 2020-02-22 18:07:43.397533000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-22 19:15:05.487782488 Z\nsign_in_count:\n- 157\n- 158\n 317 \N 189.186.78.190 fc62e48b-f0c1-4f17-8ef1-24a7092e6576 2020-02-22 19:15:05.493775 30136 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 8kJGCavMoa6aAxVC3ToS\n- M91U6PZsErEAPCQFoRHS\n 318 \N 189.186.78.190 fc62e48b-f0c1-4f17-8ef1-24a7092e6576 2020-02-22 19:15:05.509267 30137 599 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.108.109 b3a0f2d1-1fa2-45c3-b97b-fa814fc93bda 2020-02-22 20:54:08.93518 30138 599 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.108.109 9f9e76a6-156d-4e18-8c93-711fc8bf329d 2020-02-22 20:54:12.267189 30139 487 Transfer \N \N 24 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-02-22\nuser_id: 24\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.108.109 2b774ce5-5e31-47f1-98ec-569d3c549318 2020-02-22 20:54:13.292335 30140 487 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-22\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.108.109 7a74b3aa-53bd-4d7d-bd14-f0816ad479c5 2020-02-22 20:55:06.40042 30141 533 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.108.109 7a74b3aa-53bd-4d7d-bd14-f0816ad479c5 2020-02-22 20:55:06.421979 30142 2239 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 846\namount: !ruby/object:BigDecimal 18:0.2843E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2843E4\nstatus: 0\ndate_sale: 2020-02-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1106\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 329741a5-0d70-4844-9b78-472d53c30dc6 2020-02-22 20:56:06.69032 30143 1410 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 11 \N 187.149.108.109 329741a5-0d70-4844-9b78-472d53c30dc6 2020-02-22 20:56:06.720876 30144 1631 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.108.109 329741a5-0d70-4844-9b78-472d53c30dc6 2020-02-22 20:56:06.747258 30145 533 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.108.109 329741a5-0d70-4844-9b78-472d53c30dc6 2020-02-22 20:56:06.779559 30146 2239 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.109 2fad7315-42b4-4924-97c1-8069132187a8 2020-02-22 20:56:33.704433 30147 3043 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 846\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2843E4\nmove_type: '1'\nsale_id: 2239\ncardnumber: 1327\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1106\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1106 187.149.108.109 2fad7315-42b4-4924-97c1-8069132187a8 2020-02-22 20:56:33.729531 30148 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-20 18:07:48.422179000 Z\n- &1 2020-02-21 17:17:21.816283000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-22 21:47:13.929137086 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132013\n mask_addr: 4294967295\nsign_in_count:\n- 109\n- 110\n 220 \N 187.149.108.109 2f2130a3-093a-4538-a3cd-0f508a21bde9 2020-02-22 21:47:13.935956 30149 27 User \N \N 27 User \N update ---\nunique_session_id:\n- 9DFW9LnsYebgKgWsDJSF\n- aBqsENeZP7m6ia2RUqP4\n 221 \N 187.149.108.109 2f2130a3-093a-4538-a3cd-0f508a21bde9 2020-02-22 21:47:13.951827 30150 2240 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 846\namount: !ruby/object:BigDecimal 18:0.120042E4\ntax: !ruby/object:BigDecimal 18:0.2758E2\ndiscount: !ruby/object:BigDecimal 18:0.1028E4\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-02-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1107\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 d532e4f9-289c-4673-843f-efd65ca45804 2020-02-22 22:24:59.464773 30151 1567 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.108.109 d532e4f9-289c-4673-843f-efd65ca45804 2020-02-22 22:24:59.50077 30152 1575 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.108.109 d532e4f9-289c-4673-843f-efd65ca45804 2020-02-22 22:24:59.531604 30153 2240 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.109 f99e9b25-6669-4dfd-a683-1cc803e6221f 2020-02-22 22:25:04.331593 30154 3044 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 846\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2240\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1107\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1107 187.149.108.109 f99e9b25-6669-4dfd-a683-1cc803e6221f 2020-02-22 22:25:04.378707 30155 399 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.108.109 36102de3-2d47-4292-9fd1-c9c8710c2a1c 2020-02-22 22:40:22.438105 30156 488 Transfer \N \N 24 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-02-22\nuser_id: 24\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.108.109 eb08b553-083f-4939-bbce-b056dab87ea4 2020-02-22 22:48:17.098555 30157 488 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-22\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.108.109 a6c21462-45c2-4ce2-92f8-43abad181b66 2020-02-22 22:49:03.110629 30158 1687 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 401\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.108.109 a6c21462-45c2-4ce2-92f8-43abad181b66 2020-02-22 22:49:03.135585 30159 2241 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 846\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-02-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1108\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 23ff1f11-43f9-46c9-8849-89120096d05f 2020-02-22 22:49:31.018968 30160 1687 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.108.109 23ff1f11-43f9-46c9-8849-89120096d05f 2020-02-22 22:49:31.062365 30161 2241 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.109 a363f406-6ccc-4ac4-8abf-ffddd7f3b862 2020-02-22 22:49:43.850119 30162 3045 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 846\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 2241\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1108\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1108 187.149.108.109 a363f406-6ccc-4ac4-8abf-ffddd7f3b862 2020-02-22 22:49:43.873633 30163 2242 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 847\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2020-02-22\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-853\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 55431e3b-1201-4c65-a877-9e4c585d7129 2020-02-22 22:59:05.455345 30164 1651 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.108.109 55431e3b-1201-4c65-a877-9e4c585d7129 2020-02-22 22:59:05.492968 30165 2242 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.109 6142d94e-c624-4ee2-b112-7c06494d9017 2020-02-22 22:59:21.466396 30166 3046 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 847\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.729E3\nmove_type: '1'\nsale_id: 2242\ncardnumber: 69\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-853\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-853 187.149.108.109 6142d94e-c624-4ee2-b112-7c06494d9017 2020-02-22 22:59:21.490989 30250 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 6t36RWE6yRyuLYKMasF5\n- 3ytB3CzyzvRwtxd1ydKe\n 974 \N 187.149.108.109 e8f21ffe-ebdb-472f-aea9-e4f4f4c7f6a5 2020-02-25 00:10:07.741083 30404 1503 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 03c3818c-8415-42a3-9347-ecbfd2f8b2aa 2020-02-27 19:08:56.667988 30167 2243 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 846\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2020-02-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1109\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 449c0d2f-27b7-4757-a94a-9e9d62d7733e 2020-02-22 23:11:32.14564 30168 1647 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.108.109 449c0d2f-27b7-4757-a94a-9e9d62d7733e 2020-02-22 23:11:32.181771 30169 2243 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.109 9e5778af-0679-4a9c-90b3-99d0e122840b 2020-02-22 23:11:38.393912 30170 3047 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 846\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1699E4\nmove_type: '1'\nsale_id: 2243\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1109\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1699E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1109 187.149.108.109 9e5778af-0679-4a9c-90b3-99d0e122840b 2020-02-22 23:11:38.417324 30171 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-02-19 18:21:14.071662000 Z\n- &1 2020-02-20 19:17:22.672329000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-22 23:27:07.826235845 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121604\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088769\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132013\n mask_addr: 4294967295\nsign_in_count:\n- 163\n- 164\n 328 \N 187.149.108.109 049d4816-1c01-4453-97c4-0506e6858620 2020-02-22 23:27:07.838739 30172 1 User \N \N 1 User \N update ---\nunique_session_id:\n- fTEST_9iwGZS7xzR_NW3\n- syQciHFPdejh4aCXLBV-\n 329 \N 187.149.108.109 049d4816-1c01-4453-97c4-0506e6858620 2020-02-22 23:27:07.86506 30173 489 Transfer \N \N 1 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-02-22\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.108.109 50e023c5-b3ed-4f52-be8c-46c6514eeb0e 2020-02-22 23:29:28.207817 30174 489 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-22\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.108.109 33a1d052-9946-46ef-a309-72cc4d26c19d 2020-02-22 23:30:02.59653 30175 788 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 22 \N 187.149.108.109 33a1d052-9946-46ef-a309-72cc4d26c19d 2020-02-22 23:30:02.616558 30176 2244 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 846\namount: !ruby/object:BigDecimal 18:0.639E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.639E3\nstatus: 0\ndate_sale: 2020-02-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1110\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 7aabe8ec-4da1-4f21-8a66-7783771851c6 2020-02-22 23:30:35.542211 30177 788 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 23 \N 187.149.108.109 7aabe8ec-4da1-4f21-8a66-7783771851c6 2020-02-22 23:30:35.577489 30178 2244 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.109 f7108ad1-a50d-49e2-b93d-f9f7da3e7e6c 2020-02-22 23:30:39.812032 30179 3048 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 846\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.639E3\nmove_type: '1'\nsale_id: 2244\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1110\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.639E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1110 187.149.108.109 f7108ad1-a50d-49e2-b93d-f9f7da3e7e6c 2020-02-22 23:30:39.840561 30180 285 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 846\nquantity: !ruby/object:BigDecimal 18:0.1105E4\nstatus: 1\nobservations: 'sueldo Rocío '\nexpense_date: 2020-02-22\nexpense_code: PV1-E-198\n 1 Egreso por 1105.0 registrado 187.149.108.109 1d56ce98-6d53-453b-b39b-4526f7eadc33 2020-02-23 00:08:15.860992 30181 3049 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 846\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1105E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 285\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.108.109 1d56ce98-6d53-453b-b39b-4526f7eadc33 2020-02-23 00:08:15.890613 30182 501 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.108.109 eabf4ed6-69fa-46a2-89b0-10c527208a23 2020-02-23 00:19:58.41318 30183 490 Transfer \N \N 1 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-02-22\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.108.109 ae0f7b0d-8e00-4d75-bbc1-0f83a19c93f6 2020-02-23 00:20:00.563187 30184 490 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-22\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.108.109 5e91a302-d0b5-440b-8f10-01df5d345925 2020-02-23 00:22:45.218497 30185 1688 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 489\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.108.109 5e91a302-d0b5-440b-8f10-01df5d345925 2020-02-23 00:22:45.243537 30186 2245 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 846\namount: !ruby/object:BigDecimal 18:0.46E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.26E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-02-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1111\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 90c378df-ce76-490f-b9f7-648b69c91f6e 2020-02-23 00:25:20.138583 30187 1688 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.108.109 90c378df-ce76-490f-b9f7-648b69c91f6e 2020-02-23 00:25:20.168838 30188 2245 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.109 68e0e82a-8abe-403a-8ebe-6bf93c63369a 2020-02-23 00:25:31.182 30273 205 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.108.109 11a01273-9c07-4884-a93f-9959254d8141 2020-02-25 02:36:28.058597 30189 3050 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 846\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2245\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1111\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1111 187.149.108.109 68e0e82a-8abe-403a-8ebe-6bf93c63369a 2020-02-23 00:25:31.219187 30190 2246 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 846\namount: !ruby/object:BigDecimal 18:0.529E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.529E3\nstatus: 0\ndate_sale: 2020-02-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1112\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 d5aef046-c773-4b89-9861-a7b4da601e70 2020-02-23 00:37:45.93502 30191 1644 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.108.109 d5aef046-c773-4b89-9861-a7b4da601e70 2020-02-23 00:37:45.999986 30192 2246 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.109 6d5e94fd-815e-43c9-bb73-d3c613953de7 2020-02-23 00:38:10.050236 30193 3051 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 846\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.529E3\nmove_type: '1'\nsale_id: 2246\ncardnumber: 8697\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1112\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1112 187.149.108.109 6d5e94fd-815e-43c9-bb73-d3c613953de7 2020-02-23 00:38:10.093485 30194 286 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 846\nquantity: !ruby/object:BigDecimal 18:0.2E3\nstatus: 1\nobservations: Ivan\nexpense_date: 2020-02-22\nexpense_code: PV1-E-199\n 1 Egreso por 200.0 registrado 187.149.108.109 a061dbff-d50c-4c54-aefc-00690bc3336e 2020-02-23 00:54:48.45772 30195 3052 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 846\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 286\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.108.109 a061dbff-d50c-4c54-aefc-00690bc3336e 2020-02-23 00:54:48.482663 30196 287 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 846\nquantity: !ruby/object:BigDecimal 18:0.95E3\nstatus: 1\nobservations: sueldo Keyla\nexpense_date: 2020-02-22\nexpense_code: PV1-E-200\n 1 Egreso por 950.0 registrado 187.149.108.109 56709e05-aafa-42cc-a891-57882fd95ecc 2020-02-23 02:23:58.125817 30197 3053 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 846\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.95E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 287\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.108.109 56709e05-aafa-42cc-a891-57882fd95ecc 2020-02-23 02:23:58.151905 30198 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-21 17:17:21.816283000 Z\n- &1 2020-02-22 21:47:13.929137000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-23 02:24:55.432021380 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132013\n mask_addr: 4294967295\nsign_in_count:\n- 110\n- 111\n 222 \N 187.149.108.109 20af670c-4873-417d-9e3c-38d5d7d1c865 2020-02-23 02:24:55.442634 30199 27 User \N \N 27 User \N update ---\nunique_session_id:\n- aBqsENeZP7m6ia2RUqP4\n- U4FvsBBgGTjXVsyov71i\n 223 \N 187.149.108.109 20af670c-4873-417d-9e3c-38d5d7d1c865 2020-02-23 02:24:55.461007 30200 862 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 847\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.729E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1177E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1177E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.108.109 3a8e79b4-fef4-4bed-a257-b1a9b6da416e 2020-02-23 02:30:32.85735 30201 847 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.108.109 3a8e79b4-fef4-4bed-a257-b1a9b6da416e 2020-02-23 02:30:32.874507 30202 863 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 846\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.7807E4\namount_out: !ruby/object:BigDecimal 18:0.2255E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.107E4\nphysical_cash: !ruby/object:BigDecimal 18:0.357E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.108.109 38eb230e-5b5b-417d-968e-2af407e2b484 2020-02-23 02:33:35.073737 30203 846 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.108.109 38eb230e-5b5b-417d-968e-2af407e2b484 2020-02-23 02:33:35.090383 30204 289 Customer \N \N 21 User \N create ---\nnick_name: Marisol MORENO\nphone: "(667) 581-7672"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente Marisol MORENO fue registrado. 189.186.78.190 aaf0ee50-72c0-4632-a81b-1eb3cef4b239 2020-02-23 03:08:39.505954 30205 2247 Sale \N \N 21 User \N create ---\ncustomer_id: 289\nuser_id: 21\nopen_cash_register_id: 845\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2020-02-22\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-280\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 81e4dd3a-f20a-44aa-83e6-fa9e74a4ea0e 2020-02-23 03:08:51.597139 30206 951 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.78.190 81e4dd3a-f20a-44aa-83e6-fa9e74a4ea0e 2020-02-23 03:08:51.632931 30207 2247 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.78.190 662a8751-ffe4-4ae8-b535-798287bd4d7e 2020-02-23 03:08:59.314541 30208 3054 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 845\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.12E3\nmove_type: '1'\nsale_id: 2247\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-280\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-280 189.186.78.190 662a8751-ffe4-4ae8-b535-798287bd4d7e 2020-02-23 03:08:59.338182 30274 2251 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.109 728ee264-3700-48ab-a055-2f20190f7e2a 2020-02-25 02:36:33.05482 30405 2264 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.107.100 37d83a84-8ea8-4a26-ad6f-d0ec09d3c561 2020-02-27 19:09:08.644411 30209 3055 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 845\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.12E3\nmove_type: '1'\nsale_id: 2247\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-280\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-280 189.186.78.190 0cdab7c5-a701-413d-9494-7e3d2aae910d 2020-02-23 03:09:59.303273 30210 3054 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 845\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E3\nmove_type: '1'\nsale_id: 2247\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-280\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.78.190 90c8ec88-ff74-4bcf-872b-7e9c8cc486b8 2020-02-23 03:10:01.295132 30211 3055 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 845\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E3\nmove_type: '1'\nsale_id: 2247\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-280\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.78.190 ec5df49c-a496-4836-bce5-d323108dcf5e 2020-02-23 03:11:52.463539 30212 2247 Sale \N \N 21 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-280 cancelada. 189.186.78.190 194256be-d2a8-49f6-873c-df36d96aa83f 2020-02-23 03:12:03.358918 30213 951 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.78.190 194256be-d2a8-49f6-873c-df36d96aa83f 2020-02-23 03:12:03.387502 30214 2248 Sale \N \N 21 User \N create ---\ncustomer_id: 289\nuser_id: 21\nopen_cash_register_id: 845\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2020-02-22\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-281\nexpiration_date: 2020-03-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 1627fe92-9eeb-4176-9a78-e0d7e0cfec33 2020-02-23 03:12:25.606038 30215 951 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.78.190 1627fe92-9eeb-4176-9a78-e0d7e0cfec33 2020-02-23 03:12:25.636728 30216 3056 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 845\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E3\nmove_type: '1'\nsale_id: 2248\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-281\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.12E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-281 189.186.78.190 b1a14244-9fd0-46e8-a391-66ae0cf2b266 2020-02-23 03:12:36.595879 30217 2248 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.78.190 d4c698a8-06f0-4435-8e3f-75e542e3ad73 2020-02-23 03:13:05.96505 30218 864 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 845\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.12E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.114E4\nphysical_cash: !ruby/object:BigDecimal 18:0.114E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 228d0e6b-df7d-4033-ad4e-b609f99b9cdc 2020-02-23 03:14:04.735099 30219 845 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 228d0e6b-df7d-4033-ad4e-b609f99b9cdc 2020-02-23 03:14:04.74932 30220 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-22 18:07:43.397533000 Z\n- &1 2020-02-22 19:15:05.487782000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-24 18:03:46.809576826 Z\nsign_in_count:\n- 158\n- 159\n 319 \N 189.186.78.190 f5b19a0b-35f5-402d-8724-2ed0254a2676 2020-02-24 18:03:46.839192 30221 21 User \N \N 21 User \N update ---\nunique_session_id:\n- M91U6PZsErEAPCQFoRHS\n- 9-xz4QYgxaoF8sdskbEL\n 320 \N 189.186.78.190 f5b19a0b-35f5-402d-8724-2ed0254a2676 2020-02-24 18:03:46.865938 30222 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-21 17:35:59.353925000 Z\n- &1 2020-02-22 18:33:57.138979000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-24 19:30:30.596773896 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132013\n mask_addr: 4294967295\nsign_in_count:\n- 483\n- 484\n 971 \N 187.149.108.109 3a0e3d26-5449-4b7a-8150-6e8d2a5b34c7 2020-02-24 19:30:30.604108 30223 2 User \N \N 2 User \N update ---\nunique_session_id:\n- BxyU3HZq9DG1cWdpie-d\n- 6t36RWE6yRyuLYKMasF5\n 972 \N 187.149.108.109 3a0e3d26-5449-4b7a-8150-6e8d2a5b34c7 2020-02-24 19:30:30.623402 30224 848 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.107E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1070.0 187.149.108.109 0582b242-ec24-4925-85b8-34d9b525da24 2020-02-24 19:30:43.206874 30225 2249 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 848\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-02-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1113\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 0a3aedbe-438e-4b34-a224-4e460888f828 2020-02-24 19:30:59.506014 30226 1642 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.108.109 0a3aedbe-438e-4b34-a224-4e460888f828 2020-02-24 19:30:59.539942 30227 2249 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.109 21d1b544-fc19-4915-ab44-7ca229eaf0e9 2020-02-24 19:32:04.66055 30228 3057 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 848\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 2249\ncardnumber: 1196\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1113\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1113 187.149.108.109 21d1b544-fc19-4915-ab44-7ca229eaf0e9 2020-02-24 19:32:04.69189 30229 849 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.114E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1140.0 189.186.78.190 1c25d301-53f4-4fd6-af31-a5c765159362 2020-02-24 21:18:10.420337 30297 27 User \N \N 27 User \N update ---\nunique_session_id:\n- jsLtDJk1ALi8Ew4f8ATc\n- j-JxCzo_RmkTzKBn6ze3\n 227 \N 187.149.108.109 8e4a5b8a-29d7-4d35-9110-c92ed2060591 2020-02-25 17:59:32.024926 46487 1464 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '1464'\n is_parent: false\n sku: BOL-1464\n name: 2BLCV20386\n description: BOLSO CROSSBODY TELA\n price_base: '599.5'\n price_sale: '1199.0'\n img_product: CC5AA26A-E5B8-47C1-BFA2-6E066023BF7F.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170822540'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-29 20:42:42.491781'\n updated_at: &12 2020-11-21 19:44:20.572183097 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1464'\n sku: BOL-1464\n name: 2BLCV20386\n description: BOLSO CROSSBODY TELA\n price_base: '599.50'\n price_sale: '1199.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-29 20:42:42.491781'\n updated_at: '2020-11-21 19:22:42.939468'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170822540'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: 91DE631D-676E-4157-8054-88AF42C3F141.jpeg\n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1464'\n type: *3\n value: 1464\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1464\n type: *7\n value: BOL-1464\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 2BLCV20386\n type: *8\n value: 2BLCV20386\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO CROSSBODY TELA\n type: *6\n value: BOLSO CROSSBODY TELA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '599.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.5995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1199.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1199E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: CC5AA26A-E5B8-47C1-BFA2-6E066023BF7F.jpeg\n type: *2\n value: CC5AA26A-E5B8-47C1-BFA2-6E066023BF7F.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170822540'\n type: *2\n value: '7509170822540'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-29 20:42:42.491781'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/91DE631D-676E-4157-8054-88AF42C3F141.jpeg"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader57060100\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_91DE631D-676E-4157-8054-88AF42C3F141.jpeg"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader57039380\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_91DE631D-676E-4157-8054-88AF42C3F141.jpeg"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader57035100\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_91DE631D-676E-4157-8054-88AF42C3F141.jpeg"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- CC5AA26A-E5B8-47C1-BFA2-6E066023BF7F.jpeg\n 3 El producto BOL-1464 fue modificado. 189.186.1.223 2acdc76f-22e1-4520-8889-3efbd36806a9 2020-11-21 19:44:20.62644 30230 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-22 18:26:12.408698000 Z\n- &1 2020-02-22 18:37:26.066628000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-24 23:26:43.619608347 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945742\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945742\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946288\n mask_addr: 4294967295\nsign_in_count:\n- 1429\n- 1430\n 2860 \N 200.68.182.48 0e06a6bc-5a54-4b7f-b12b-0573a6704ba0 2020-02-24 23:26:43.651671 30231 4 User \N \N 4 User \N update ---\nunique_session_id:\n- EsyD7Jr61X6WWGcncUGS\n- s_zgJsKz1-miybT5kJ-j\n 2861 \N 200.68.182.48 0e06a6bc-5a54-4b7f-b12b-0573a6704ba0 2020-02-24 23:26:43.682353 30232 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-22 18:37:26.066628000 Z\n- &1 2020-02-24 23:26:43.619608000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-24 23:54:27.127755494 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945742\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946288\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946288\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132013\n mask_addr: 4294967295\nsign_in_count:\n- 1430\n- 1431\n 2862 \N 187.149.108.109 579a6b75-95ff-4e0e-9483-26a60e513f57 2020-02-24 23:54:27.1365 30233 4 User \N \N 4 User \N update ---\nunique_session_id:\n- s_zgJsKz1-miybT5kJ-j\n- wsNxWfS8jgJsVpEnZNyW\n 2863 \N 187.149.108.109 579a6b75-95ff-4e0e-9483-26a60e513f57 2020-02-24 23:54:27.15546 30234 1021 Product \N \N 4 User \N create ---\nsku: CON-1021\nname: CON-0004\ndescription: CONJUNTO FALDA BOLSAS\nprice_base: !ruby/object:BigDecimal 18:0.72E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 10\nproduct_service_key: '01010101'\n 1 El producto CON-1021 fue creado. 187.149.108.109 798a6225-ce11-4056-add1-cf4aabb9bd98 2020-02-24 23:58:32.516894 30235 1021 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001021'\n 2 \N 187.149.108.109 798a6225-ce11-4056-add1-cf4aabb9bd98 2020-02-24 23:58:32.55754 30236 1689 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1021\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.108.109 798a6225-ce11-4056-add1-cf4aabb9bd98 2020-02-24 23:58:32.599978 30237 246 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-111\namount: !ruby/object:BigDecimal 18:0.72E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.72E3\nobservations: ''\npurchase_date: 2020-02-24\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-111 por $ 720.0 MXN creada. 187.149.108.109 569efd17-7c8c-4c70-b7ee-38c285784686 2020-02-24 23:58:50.727248 30238 1689 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.108.109 569efd17-7c8c-4c70-b7ee-38c285784686 2020-02-24 23:58:50.751959 30239 1022 Product \N \N 4 User \N create ---\nsku: VES-1022\nname: VST-0110\ndescription: VESTIDO FLORES ROJAS APEACH\nprice_base: !ruby/object:BigDecimal 18:0.34E3\nprice_sale: !ruby/object:BigDecimal 18:0.869E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1022 fue creado. 187.149.108.109 13407982-6fa2-4772-958d-e60dfd344b2b 2020-02-25 00:04:42.880281 30240 1022 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001022'\n 2 \N 187.149.108.109 13407982-6fa2-4772-958d-e60dfd344b2b 2020-02-25 00:04:42.9102 30241 1690 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1022\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.108.109 13407982-6fa2-4772-958d-e60dfd344b2b 2020-02-25 00:04:42.944122 30242 247 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-112\namount: !ruby/object:BigDecimal 18:0.204E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.204E4\nobservations: ''\npurchase_date: 2020-02-24\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-112 por $ 2040.0 MXN creada. 187.149.108.109 1162dd7c-63e7-4a3b-bc0e-604ab579d3f2 2020-02-25 00:04:50.447763 30243 1690 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.108.109 1162dd7c-63e7-4a3b-bc0e-604ab579d3f2 2020-02-25 00:04:50.471927 30244 1023 Product \N \N 4 User \N create ---\nsku: VES-1023\nname: VST-0111\ndescription: VESTIDO MAGENTA FLORES APEACH\nprice_base: !ruby/object:BigDecimal 18:0.33E3\nprice_sale: !ruby/object:BigDecimal 18:0.849E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1023 fue creado. 187.149.108.109 1e82f26e-2c37-4a4c-9c8a-fbab86bbfd09 2020-02-25 00:07:57.384012 30245 1023 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001023'\n 2 \N 187.149.108.109 1e82f26e-2c37-4a4c-9c8a-fbab86bbfd09 2020-02-25 00:07:57.418518 30246 1691 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1023\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.108.109 1e82f26e-2c37-4a4c-9c8a-fbab86bbfd09 2020-02-25 00:07:57.45682 30247 248 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-113\namount: !ruby/object:BigDecimal 18:0.198E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.198E4\nobservations: ''\npurchase_date: 2020-02-24\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-113 por $ 1980.0 MXN creada. 187.149.108.109 61b772ca-2fc6-4e96-92b8-687a01c170ef 2020-02-25 00:08:09.023395 30248 1691 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.108.109 61b772ca-2fc6-4e96-92b8-687a01c170ef 2020-02-25 00:08:09.047953 30249 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-22 18:33:57.138979000 Z\n- &1 2020-02-24 19:30:30.596773000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-25 00:10:07.712786153 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132013\n mask_addr: 4294967295\nsign_in_count:\n- 484\n- 485\n 973 \N 187.149.108.109 e8f21ffe-ebdb-472f-aea9-e4f4f4c7f6a5 2020-02-25 00:10:07.721438 30251 1024 Product \N \N 2 User \N create ---\nsku: VES-1024\nname: vst-0112\ndescription: VESTIDO FLORES VOLADITO CREMA\nprice_base: !ruby/object:BigDecimal 18:0.36E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1024 fue creado. 187.149.108.109 15a0a960-be54-4d8f-a8e5-61cd1dbab41e 2020-02-25 00:15:07.214413 30252 1024 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001024'\n 2 \N 187.149.108.109 15a0a960-be54-4d8f-a8e5-61cd1dbab41e 2020-02-25 00:15:07.247447 30253 1692 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1024\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.108.109 15a0a960-be54-4d8f-a8e5-61cd1dbab41e 2020-02-25 00:15:07.280742 30254 249 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-114\namount: !ruby/object:BigDecimal 18:0.216E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.216E4\nobservations: ''\npurchase_date: 2020-02-24\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-114 por $ 2160.0 MXN creada. 187.149.108.109 31ec1040-a962-4aea-aff0-32aa20f77e25 2020-02-25 00:15:16.412254 30255 1692 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.108.109 31ec1040-a962-4aea-aff0-32aa20f77e25 2020-02-25 00:15:16.437368 30256 1025 Product \N \N 2 User \N create ---\nsku: VES-1025\nname: VST-0113\ndescription: JUMPER ROSITA APEACH\nprice_base: !ruby/object:BigDecimal 18:0.36E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1025 fue creado. 187.149.108.109 666c6ab7-1d9c-465f-9542-b8f37bdd5479 2020-02-25 00:20:45.948116 30257 1025 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001025'\n 2 \N 187.149.108.109 666c6ab7-1d9c-465f-9542-b8f37bdd5479 2020-02-25 00:20:45.980875 30258 1693 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1025\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.108.109 666c6ab7-1d9c-465f-9542-b8f37bdd5479 2020-02-25 00:20:46.013057 30259 250 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-115\namount: !ruby/object:BigDecimal 18:0.216E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.216E4\nobservations: ''\npurchase_date: 2020-02-24\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-115 por $ 2160.0 MXN creada. 187.149.108.109 0c1cdc66-d949-47c2-a5a4-5d6230264aeb 2020-02-25 00:20:56.886093 30260 1693 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.108.109 0c1cdc66-d949-47c2-a5a4-5d6230264aeb 2020-02-25 00:20:56.917108 30261 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-24 23:26:43.619608000 Z\n- &1 2020-02-24 23:54:27.127755000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-25 00:22:21.819754882 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946288\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132013\n mask_addr: 4294967295\nsign_in_count:\n- 1431\n- 1432\n 2864 \N 187.149.108.109 753fe0f0-b918-4371-a7b5-8781a184d835 2020-02-25 00:22:21.82733 30262 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wsNxWfS8jgJsVpEnZNyW\n- wfJz8VU7oWjzWRPsJkL3\n 2865 \N 187.149.108.109 753fe0f0-b918-4371-a7b5-8781a184d835 2020-02-25 00:22:21.843728 30263 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-22 21:47:13.929137000 Z\n- &1 2020-02-23 02:24:55.432021000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-25 01:29:43.440073550 Z\nsign_in_count:\n- 111\n- 112\n 224 \N 187.149.108.109 ae356885-7df1-4dea-8302-22c4d9966cff 2020-02-25 01:29:43.471425 30264 27 User \N \N 27 User \N update ---\nunique_session_id:\n- U4FvsBBgGTjXVsyov71i\n- jsLtDJk1ALi8Ew4f8ATc\n 225 \N 187.149.108.109 ae356885-7df1-4dea-8302-22c4d9966cff 2020-02-25 01:29:43.493998 30265 850 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1177E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1177.0 187.149.108.109 ac3e7ddb-924b-4a1f-b033-eae6970b7da0 2020-02-25 02:02:08.851595 30266 2250 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 850\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.499E3\ntotal: !ruby/object:BigDecimal 18:0.0\nstatus: 0\ndate_sale: 2020-02-24\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-854\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 6713e7d6-69b4-4c2e-95aa-68597a7700cc 2020-02-25 02:02:29.526954 30267 495 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 187.149.108.109 6713e7d6-69b4-4c2e-95aa-68597a7700cc 2020-02-25 02:02:29.570849 30268 2250 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.109 213aeb84-3d84-4f5b-8ee3-4f3b176f0b47 2020-02-25 02:02:35.068816 30269 3058 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 850\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2250\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-854\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-854 187.149.108.109 213aeb84-3d84-4f5b-8ee3-4f3b176f0b47 2020-02-25 02:02:35.095522 30270 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-24 19:30:30.596773000 Z\n- &1 2020-02-25 00:10:07.712786000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-25 02:35:46.404770645 Z\nsign_in_count:\n- 485\n- 486\n 975 \N 187.149.108.109 ef0a4722-16ec-45d9-b5df-085f237afd7e 2020-02-25 02:35:46.411083 30271 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 3ytB3CzyzvRwtxd1ydKe\n- fZ9MsS-5Agc3Nyb8NzkD\n 976 \N 187.149.108.109 ef0a4722-16ec-45d9-b5df-085f237afd7e 2020-02-25 02:35:46.429727 30272 2251 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 848\namount: !ruby/object:BigDecimal 18:0.90141E3\ntax: !ruby/object:BigDecimal 18:0.2759E2\ndiscount: !ruby/object:BigDecimal 18:0.729E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-02-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1114\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 11a01273-9c07-4884-a93f-9959254d8141 2020-02-25 02:36:28.026223 30275 3059 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 848\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2251\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1114\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1114 187.149.108.109 728ee264-3700-48ab-a055-2f20190f7e2a 2020-02-25 02:36:33.077322 30276 288 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 848\nquantity: !ruby/object:BigDecimal 18:0.15E2\nstatus: 1\nobservations: 'chocolate '\nexpense_date: 2020-02-24\nexpense_code: PV1-E-201\n 1 Egreso por 15.0 registrado 187.149.108.109 9d6dc851-ef20-460f-a8f7-1bae90bd3798 2020-02-25 02:39:40.88189 30277 3060 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 848\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 288\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.108.109 9d6dc851-ef20-460f-a8f7-1bae90bd3798 2020-02-25 02:39:40.904255 30278 289 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 848\nquantity: !ruby/object:BigDecimal 18:0.1E3\nstatus: 1\nobservations: paqueteria ropa\nexpense_date: 2020-02-24\nexpense_code: PV1-E-202\n 1 Egreso por 100.0 registrado 187.149.108.109 cf9c115c-5bb1-4326-83c9-32ee27300d4c 2020-02-25 02:41:44.778919 30279 3061 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 848\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 289\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.108.109 cf9c115c-5bb1-4326-83c9-32ee27300d4c 2020-02-25 02:41:44.808141 30280 865 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 848\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.899E3\namount_out: !ruby/object:BigDecimal 18:0.115E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1155E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1155E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.108.109 1f08764c-c9a5-493f-aec0-907009660af1 2020-02-25 02:42:18.368256 30281 848 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.108.109 1f08764c-c9a5-493f-aec0-907009660af1 2020-02-25 02:42:18.388829 30282 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-22 19:15:05.487782000 Z\n- &1 2020-02-24 18:03:46.809576000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-25 03:02:52.200461936 Z\nsign_in_count:\n- 159\n- 160\n 321 \N 189.186.78.190 1ab461dd-dce3-46fb-ae78-a3e3bdb4006c 2020-02-25 03:02:52.206841 30283 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 9-xz4QYgxaoF8sdskbEL\n- RyYcMC8wHCrk-St7wJxZ\n 322 \N 189.186.78.190 1ab461dd-dce3-46fb-ae78-a3e3bdb4006c 2020-02-25 03:02:52.224384 30284 866 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 849\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.114E4\nphysical_cash: !ruby/object:BigDecimal 18:0.114E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 4803dc59-9f06-4b36-a61f-a17a678dd0ce 2020-02-25 03:04:02.445244 30285 849 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 4803dc59-9f06-4b36-a61f-a17a678dd0ce 2020-02-25 03:04:02.465352 30286 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-24 23:54:27.127755000 Z\n- &1 2020-02-25 00:22:21.819754000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-25 06:16:33.026587305 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132013\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945971\n mask_addr: 4294967295\nsign_in_count:\n- 1432\n- 1433\n 2866 \N 200.68.180.243 9dee9dcc-0322-4914-bf8b-6098d958ad2f 2020-02-25 06:16:33.055112 30287 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wfJz8VU7oWjzWRPsJkL3\n- wv9kWmGMfQ5miUY7AwXC\n 2867 \N 200.68.180.243 9dee9dcc-0322-4914-bf8b-6098d958ad2f 2020-02-25 06:16:33.080945 30288 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-25 00:10:07.712786000 Z\n- &1 2020-02-25 02:35:46.404770000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-25 17:32:05.802324143 Z\nsign_in_count:\n- 486\n- 487\n 977 \N 187.149.108.109 45ba883a-3192-449c-8092-355e77444f34 2020-02-25 17:32:05.836086 30289 2 User \N \N 2 User \N update ---\nunique_session_id:\n- fZ9MsS-5Agc3Nyb8NzkD\n- 7WFBgzKuZ_CFqgu_UG-N\n 978 \N 187.149.108.109 45ba883a-3192-449c-8092-355e77444f34 2020-02-25 17:32:05.861602 30290 851 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1155E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1155.0 187.149.108.109 6cfca6be-2f5d-4397-973c-f210714ae53c 2020-02-25 17:32:33.537513 30291 290 Customer \N \N 2 User \N create ---\nnick_name: YULIANA MEZA\nphone: "(667) 775-0146"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente YULIANA MEZA fue registrado. 187.149.108.109 d3173bac-89c7-484c-81fb-9a48e81cf4dd 2020-02-25 17:33:09.510372 30292 2252 Sale \N \N 2 User \N create ---\ncustomer_id: 290\nuser_id: 2\nopen_cash_register_id: 851\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-02-25\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1115\nexpiration_date: 2020-03-31\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 31ee2273-5597-4056-bab5-cd503dff0d38 2020-02-25 17:33:27.895174 30293 809 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 11 \N 187.149.108.109 31ee2273-5597-4056-bab5-cd503dff0d38 2020-02-25 17:33:27.935308 30294 3062 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 851\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2252\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1115\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1115 187.149.108.109 c4d569d2-0c82-4a7b-944e-1756661a67b7 2020-02-25 17:33:34.388467 30295 2252 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.108.109 ca07ee44-9f35-46bf-bed2-9455e032ad6f 2020-02-25 17:33:35.712741 30296 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-23 02:24:55.432021000 Z\n- &1 2020-02-25 01:29:43.440073000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-25 17:59:31.999327541 Z\nsign_in_count:\n- 112\n- 113\n 226 \N 187.149.108.109 8e4a5b8a-29d7-4d35-9110-c92ed2060591 2020-02-25 17:59:32.006537 30298 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-01-30 22:05:59.547333000 Z\n- &1 2020-01-31 02:50:33.518175000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-25 18:09:49.890474751 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 46\n- 47\n 95 \N 189.186.78.190 a3643699-e121-4197-b4c3-6df676aa3739 2020-02-25 18:09:49.901773 30299 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Cmbv3XKWD2ia8AFq2WCs\n- fTUUdXocEPKAXLNysqU7\n 96 \N 189.186.78.190 a3643699-e121-4197-b4c3-6df676aa3739 2020-02-25 18:09:49.925746 30300 291 Customer \N \N 2 User \N create ---\nnick_name: BRENDA LIZETH GASPAR\nphone: "(667) 581-5302"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BRENDA LIZETH GASPAR fue registrado. 187.149.108.109 83958824-79ef-40b0-96b5-efdc63e6fce0 2020-02-25 19:14:20.136768 30301 2253 Sale \N \N 2 User \N create ---\ncustomer_id: 291\nuser_id: 2\nopen_cash_register_id: 851\namount: !ruby/object:BigDecimal 18:0.949E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.949E3\nstatus: 0\ndate_sale: 2020-02-25\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1116\nexpiration_date: 2020-03-31\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 8d70c1f7-2a71-47a7-bf99-30ececf38fcd 2020-02-25 19:14:44.704367 30302 1410 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 12 \N 187.149.108.109 8d70c1f7-2a71-47a7-bf99-30ececf38fcd 2020-02-25 19:14:44.744487 30303 3063 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 851\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 2253\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1116\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1116 187.149.108.109 bb982cae-2114-4dc2-9abe-08635b0d79de 2020-02-25 19:14:55.063166 30304 2253 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.108.109 eb439c82-525a-41af-82c3-24dd31e2a70c 2020-02-25 19:15:12.589636 30305 2254 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 851\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.849E3\nstatus: 0\ndate_sale: 2020-02-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1117\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 f47ee8ac-b19b-4381-a67f-3ebe04a08b8f 2020-02-25 19:38:23.69183 30306 1691 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.108.109 f47ee8ac-b19b-4381-a67f-3ebe04a08b8f 2020-02-25 19:38:23.724534 30307 2254 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.109 6cb8c878-6ebe-465e-87b2-c1b78fe08f4a 2020-02-25 19:38:28.668545 30308 3064 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 851\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.849E3\nmove_type: '1'\nsale_id: 2254\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1117\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.151E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1117 187.149.108.109 6cb8c878-6ebe-465e-87b2-c1b78fe08f4a 2020-02-25 19:38:28.69349 30309 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-25 00:22:21.819754000 Z\n- &1 2020-02-25 06:16:33.026587000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-25 22:20:56.753227375 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132013\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945971\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945971\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1433\n- 1434\n 2868 \N 189.186.78.190 25b83ee5-783f-4dc8-a70c-1a47dee7f6fd 2020-02-25 22:20:56.761477 30310 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wv9kWmGMfQ5miUY7AwXC\n- hTYfQDviZzs8cwx6VeUw\n 2869 \N 189.186.78.190 25b83ee5-783f-4dc8-a70c-1a47dee7f6fd 2020-02-25 22:20:56.782924 30311 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-24 18:03:46.809576000 Z\n- &1 2020-02-25 03:02:52.200461000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-25 22:22:00.663410866 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147130959\n mask_addr: 4294967295\nsign_in_count:\n- 160\n- 161\n 323 \N 187.149.104.79 7b5b9c72-100b-44d0-bc8d-5fe07c93dac5 2020-02-25 22:22:00.671353 30312 21 User \N \N 21 User \N update ---\nunique_session_id:\n- RyYcMC8wHCrk-St7wJxZ\n- vdNVfnZGLW3JY9p3y5_N\n 324 \N 187.149.104.79 7b5b9c72-100b-44d0-bc8d-5fe07c93dac5 2020-02-25 22:22:00.691585 30313 2255 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 851\namount: !ruby/object:BigDecimal 18:0.28621E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.2E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-02-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1118\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 9b3c0dbd-a4e4-4e11-a1aa-58395af448f2 2020-02-25 22:29:40.505959 30314 214 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.108.109 9b3c0dbd-a4e4-4e11-a1aa-58395af448f2 2020-02-25 22:29:40.54243 30315 2255 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.109 163159b1-4c94-4e64-8832-3502f2964f65 2020-02-25 22:29:44.524182 30316 3065 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 851\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2255\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1118\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1118 187.149.108.109 163159b1-4c94-4e64-8832-3502f2964f65 2020-02-25 22:29:44.548404 30317 2256 Sale \N \N 27 User \N create ---\ncustomer_id: 144\nuser_id: 27\nopen_cash_register_id: 850\namount: !ruby/object:BigDecimal 18:0.1169E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1169E4\nstatus: 0\ndate_sale: 2020-02-25\nsaletype: 2\nseller_id: 19\nsale_code: PV2-V-855\nexpiration_date: 2020-03-31\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 37afe27a-b959-4ff8-ac30-8b92ebdd168d 2020-02-25 22:55:20.048453 30318 1648 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.108.109 37afe27a-b959-4ff8-ac30-8b92ebdd168d 2020-02-25 22:55:20.096325 30319 3066 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 850\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.117E3\nmove_type: '1'\nsale_id: 2256\ncardnumber: 4639\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-855\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-855 187.149.108.109 07e28558-1475-417e-b7d5-859bc0b51a58 2020-02-25 22:56:12.141188 30320 3066 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 850\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.117E3\nmove_type: '1'\nsale_id: 2256\ncardnumber: 4639\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-855\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.108.109 c555fc8f-4283-4ffc-b056-27bd049c1dc6 2020-02-25 22:56:31.934582 30321 3067 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 850\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2256\ncardnumber: 4639\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-855\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-855 187.149.108.109 adb5408b-0647-47e5-a219-141bec41f87a 2020-02-25 22:56:55.592279 30322 2256 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.108.109 41868c44-33fd-4f21-b3cb-f7ae0af0cd88 2020-02-25 22:57:03.809297 30323 852 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.114E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1140.0 189.186.78.190 f6a67ee6-9a6e-4b10-9865-e6affaba661e 2020-02-26 01:10:25.337686 30324 2257 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 852\namount: !ruby/object:BigDecimal 18:0.38521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.299E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-02-25\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-282\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 d95a3c40-83db-4925-93ef-10236b54e1e4 2020-02-26 01:12:48.025689 30325 1512 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.78.190 d95a3c40-83db-4925-93ef-10236b54e1e4 2020-02-26 01:12:48.05891 30326 2257 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.78.190 ec6efa4b-ea42-4781-8cd6-92b22e13ba98 2020-02-26 01:12:53.174417 30327 3068 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 852\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2257\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-282\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-282 189.186.78.190 ec6efa4b-ea42-4781-8cd6-92b22e13ba98 2020-02-26 01:12:53.200459 30328 2258 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 851\namount: !ruby/object:BigDecimal 18:0.669E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2020-02-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1119\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 fdfc9072-777a-4f96-9eae-8f3738a7bd7a 2020-02-26 01:50:11.132377 30329 1636 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.108.109 fdfc9072-777a-4f96-9eae-8f3738a7bd7a 2020-02-26 01:50:11.162229 30330 2258 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.109 d0426381-3633-4324-9a60-b1f4c740ea21 2020-02-26 01:50:22.999281 30331 3069 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 851\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.669E3\nmove_type: '1'\nsale_id: 2258\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1119\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.669E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1119 187.149.108.109 d0426381-3633-4324-9a60-b1f4c740ea21 2020-02-26 01:50:23.024281 30332 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2020-02-19 19:35:57.566998000 Z\n- &1 2020-02-22 18:35:05.253597000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-26 01:53:28.000864631 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121604\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088769\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132013\n mask_addr: 4294967295\nsign_in_count:\n- 55\n- 56\n 112 \N 187.149.108.109 e4b79bdf-6ed0-42ff-b9ea-31f8df9083b0 2020-02-26 01:53:28.010869 30333 24 User \N \N 24 User \N update ---\nunique_session_id:\n- cqxnxxes_vDwj1woFGN5\n- 6wme9bm1anFRoqYqFtjQ\n 113 \N 187.149.108.109 e4b79bdf-6ed0-42ff-b9ea-31f8df9083b0 2020-02-26 01:53:28.031104 30334 2259 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 850\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-02-25\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-856\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 d1aa6ad5-7d69-470f-b8ce-6debc8b02352 2020-02-26 01:54:00.722395 30335 495 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 187.149.108.109 d1aa6ad5-7d69-470f-b8ce-6debc8b02352 2020-02-26 01:54:00.753406 30336 2259 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.109 c92844d4-e4db-46f2-984d-7947e892c916 2020-02-26 01:54:06.616109 30337 3070 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 850\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 2259\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-856\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-856 187.149.108.109 c92844d4-e4db-46f2-984d-7947e892c916 2020-02-26 01:54:06.641453 30338 867 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 850\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.899E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1177E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1177E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.108.109 b2285be4-4541-450c-96b0-a07d0a78181a 2020-02-26 02:31:29.829666 30340 868 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 850\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.899E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1177E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1177E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.108.109 81cb7d1f-8060-4f49-a78e-d5b12f37450a 2020-02-26 02:31:30.065407 30341 869 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 851\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2418E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.26E4\ncash_fund: !ruby/object:BigDecimal 18:0.973E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3573E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.108.109 978448d2-5659-4073-8254-5a54a9b9ca3b 2020-02-26 02:36:44.153001 30342 851 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.108.109 978448d2-5659-4073-8254-5a54a9b9ca3b 2020-02-26 02:36:44.169597 30343 870 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 852\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1293E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1293E4\nobservations: agrege 57pesos\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 1903e011-e4d3-4c8b-8640-a5d537bbb533 2020-02-26 02:50:34.122363 30344 852 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 1903e011-e4d3-4c8b-8640-a5d537bbb533 2020-02-26 02:50:34.147838 30345 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-25 01:29:43.440073000 Z\n- &1 2020-02-25 17:59:31.999327000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-26 17:04:46.582976385 Z\nsign_in_count:\n- 113\n- 114\n 228 \N 187.149.108.109 00f5d96b-4e62-48f8-a186-b3cfa2ffc906 2020-02-26 17:04:46.616741 30346 27 User \N \N 27 User \N update ---\nunique_session_id:\n- j-JxCzo_RmkTzKBn6ze3\n- WroRZ5cpsL6KTKWyce9v\n 229 \N 187.149.108.109 00f5d96b-4e62-48f8-a186-b3cfa2ffc906 2020-02-26 17:04:46.642248 30347 853 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1177E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1177.0 187.149.108.109 a9526efa-25ea-4520-8734-c8fddc1be61e 2020-02-26 17:05:07.038865 30348 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-25 02:35:46.404770000 Z\n- &1 2020-02-25 17:32:05.802324000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-26 18:08:29.751807961 Z\nsign_in_count:\n- 487\n- 488\n 979 \N 187.149.108.109 087c2f61-dfe5-4d23-a754-71b9352e1b0b 2020-02-26 18:08:29.757492 30349 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 7WFBgzKuZ_CFqgu_UG-N\n- 4ecSAv5rynhMapysBrJV\n 980 \N 187.149.108.109 087c2f61-dfe5-4d23-a754-71b9352e1b0b 2020-02-26 18:08:29.773993 30350 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-25 06:16:33.026587000 Z\n- &1 2020-02-25 22:20:56.753227000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-26 18:08:31.357693518 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945971\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1434\n- 1435\n 2870 \N 189.186.78.190 341b0494-a352-49fa-b82e-35f73d7b575e 2020-02-26 18:08:31.364979 30351 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hTYfQDviZzs8cwx6VeUw\n- B4dF2D1tbj4hwNT2G_ty\n 2871 \N 189.186.78.190 341b0494-a352-49fa-b82e-35f73d7b575e 2020-02-26 18:08:31.386214 30352 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-25 03:02:52.200461000 Z\n- &1 2020-02-25 22:22:00.663410000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-26 18:13:05.373970640 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147130959\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147130959\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 161\n- 162\n 325 \N 189.186.78.190 4868f1b1-65e7-4482-9c8e-1179f2139306 2020-02-26 18:13:05.387094 30353 21 User \N \N 21 User \N update ---\nunique_session_id:\n- vdNVfnZGLW3JY9p3y5_N\n- AhZ3FQxLWj_GxKWY9Bax\n 326 \N 189.186.78.190 4868f1b1-65e7-4482-9c8e-1179f2139306 2020-02-26 18:13:05.414826 30354 854 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1293E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1293.0 189.186.78.190 65b85775-33b5-4605-b593-e94ad58cf171 2020-02-26 18:13:16.179018 30355 3071 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 717\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1966\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.78.190 e9bd81ea-6ddf-46f3-912c-a7dd29e8ea32 2020-02-26 18:13:37.050952 30356 3071 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 717\n- 854\n 2 movimiento de efectivo por venta con folio PV3-V-225 189.186.78.190 e9bd81ea-6ddf-46f3-912c-a7dd29e8ea32 2020-02-26 18:13:37.090086 30357 855 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.973E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 973.0 187.149.108.109 161a63d8-e542-4cbd-8f29-63e4322796fa 2020-02-26 18:16:24.858799 30358 3072 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 855\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.199E3\nmove_type: '1'\nsale_id: 2252\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.199E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1115 187.149.108.109 2c40c7c6-d049-4bec-8687-96d4faa0ec4f 2020-02-26 18:16:52.105857 30359 2252 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.108.109 2755c37f-e355-4f3b-aeab-df09cfd2ec77 2020-02-26 18:16:53.108474 30360 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-25 22:20:56.753227000 Z\n- &1 2020-02-26 18:08:31.357693000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-26 19:05:47.197211846 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945822\n mask_addr: 4294967295\nsign_in_count:\n- 1435\n- 1436\n 2872 \N 200.68.180.94 ed460344-82ca-4816-8762-e2323aa986d0 2020-02-26 19:05:47.20631 30361 4 User \N \N 4 User \N update ---\nunique_session_id:\n- B4dF2D1tbj4hwNT2G_ty\n- K_yBEBRy9V5ijYs_ScVs\n 2873 \N 200.68.180.94 ed460344-82ca-4816-8762-e2323aa986d0 2020-02-26 19:05:47.22914 30448 1640 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.78.168 a6922a59-2781-45da-b6ae-bcd806affee7 2020-02-28 19:28:53.795321 30362 2260 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 854\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-02-26\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-283\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.78.190 28e7787e-748c-4db8-8271-27557ea4db53 2020-02-26 19:58:06.718118 30363 1536 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.78.190 28e7787e-748c-4db8-8271-27557ea4db53 2020-02-26 19:58:06.751156 30364 2260 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.78.190 bbede57b-e3eb-4848-8ccc-44695666357f 2020-02-26 19:59:06.543412 30365 3073 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 854\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 2260\ncardnumber: 6211\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-283\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-283 189.186.78.190 bbede57b-e3eb-4848-8ccc-44695666357f 2020-02-26 19:59:06.567812 30366 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-26 18:08:31.357693000 Z\n- &1 2020-02-26 19:05:47.197211000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-26 20:08:07.137567387 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945822\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945822\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 1436\n- 1437\n 2874 \N 189.186.78.190 1606f466-4c1d-4903-99f4-f726f26ea1f2 2020-02-26 20:08:07.164635 30367 4 User \N \N 4 User \N update ---\nunique_session_id:\n- K_yBEBRy9V5ijYs_ScVs\n- pLTrXiHFrDyTzaGxzpSB\n 2875 \N 189.186.78.190 1606f466-4c1d-4903-99f4-f726f26ea1f2 2020-02-26 20:08:07.193431 30368 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-25 22:22:00.663410000 Z\n- &1 2020-02-26 18:13:05.373970000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-26 20:08:38.352509259 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147130959\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\nsign_in_count:\n- 162\n- 163\n 327 \N 189.186.78.190 9d92d301-1442-418d-bae5-f3b1755abd5a 2020-02-26 20:08:38.360135 30369 21 User \N \N 21 User \N update ---\nunique_session_id:\n- AhZ3FQxLWj_GxKWY9Bax\n- kKivFmCyXGhE1FNghZV1\n 328 \N 189.186.78.190 9d92d301-1442-418d-bae5-f3b1755abd5a 2020-02-26 20:08:38.37601 30370 2261 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 855\namount: !ruby/object:BigDecimal 18:0.8534E2\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9899E2\nstatus: 0\ndate_sale: 2020-02-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1120\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 0c566c2b-a269-4718-aab6-d1ee657b0f01 2020-02-26 22:45:07.590065 30371 486 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 25 \N 187.149.108.109 0c566c2b-a269-4718-aab6-d1ee657b0f01 2020-02-26 22:45:07.629923 30372 2261 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.109 e2a5809c-dfc0-404a-80e7-fada735f739b 2020-02-26 22:45:20.385115 30373 3074 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 855\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.9899E2\nmove_type: '1'\nsale_id: 2261\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1120\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9899E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1120 187.149.108.109 e2a5809c-dfc0-404a-80e7-fada735f739b 2020-02-26 22:45:20.421528 30374 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-26 19:05:47.197211000 Z\n- &1 2020-02-26 20:08:07.137567000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-26 23:14:33.863630535 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945822\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945822\n mask_addr: 4294967295\nsign_in_count:\n- 1437\n- 1438\n 2876 \N 200.68.180.94 fdd090d5-3311-4028-b2f8-36632e156f9a 2020-02-26 23:14:33.871232 30375 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pLTrXiHFrDyTzaGxzpSB\n- MT8f5zdGbxBkPBbkH3sq\n 2877 \N 200.68.180.94 fdd090d5-3311-4028-b2f8-36632e156f9a 2020-02-26 23:14:33.889977 30376 2262 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 855\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1599E4\ntotal: !ruby/object:BigDecimal 18:0.0\nstatus: 0\ndate_sale: 2020-02-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1121\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 6563cc39-e50c-44d9-8952-7f276962d50a 2020-02-26 23:15:41.838089 30377 1038 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.108.109 6563cc39-e50c-44d9-8952-7f276962d50a 2020-02-26 23:15:41.868306 30378 2262 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.109 c23b6349-1ff6-44b4-a8a9-f30719088694 2020-02-26 23:15:46.038776 30379 3075 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 855\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2262\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1121\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1121 187.149.108.109 c23b6349-1ff6-44b4-a8a9-f30719088694 2020-02-26 23:15:46.062122 30380 2263 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 855\namount: !ruby/object:BigDecimal 18:0.64521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.559E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-02-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1122\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 45897ecb-0fa2-4f91-b703-7f68f76981af 2020-02-26 23:58:32.96337 30381 1567 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.108.109 45897ecb-0fa2-4f91-b703-7f68f76981af 2020-02-26 23:58:32.996756 30382 2263 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.109 2aa5cf85-6e7e-4104-9b19-eef11d9360d6 2020-02-26 23:58:37.542224 30449 2268 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 f1e4075a-247c-4e88-be55-962c2d967e55 2020-02-28 19:28:58.828708 30383 3076 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 855\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2263\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1122\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1122 187.149.108.109 2aa5cf85-6e7e-4104-9b19-eef11d9360d6 2020-02-26 23:58:37.576331 30384 871 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 855\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.39799E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.2E3\ncash_fund: !ruby/object:BigDecimal 18:0.1171E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1371E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.108.109 fe036f7a-1a6c-4beb-bc53-16be76c4e836 2020-02-27 02:30:04.9556 30385 855 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.108.109 fe036f7a-1a6c-4beb-bc53-16be76c4e836 2020-02-27 02:30:04.97356 30386 872 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 853\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1177E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1177E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.108.109 e6c7cebc-93ec-4f2e-ba22-a25a43a378a6 2020-02-27 02:31:51.479819 30387 853 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.108.109 e6c7cebc-93ec-4f2e-ba22-a25a43a378a6 2020-02-27 02:31:51.4983 30388 873 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 853\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1177E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1177E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.108.109 cddff829-45c1-4535-9925-639b80d7ae47 2020-02-27 02:31:51.582337 30389 290 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 854\nquantity: !ruby/object:BigDecimal 18:0.55E3\nstatus: 1\nobservations: PAGO DE TELEFONO\nexpense_date: 2020-02-26\nexpense_code: PV3-E-29\n 1 Egreso por 550.0 registrado 189.186.78.190 3424a158-d04f-4b1a-bf7e-941fb61eee0a 2020-02-27 03:00:38.939336 30390 3077 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 854\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.55E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 290\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.78.190 3424a158-d04f-4b1a-bf7e-941fb61eee0a 2020-02-27 03:00:38.963343 30391 874 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 854\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.999E3\namount_out: !ruby/object:BigDecimal 18:0.55E3\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1043E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1043E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.78.190 d6f137de-7b20-47b0-93c1-7c3a3a903c1c 2020-02-27 03:01:44.08158 30392 854 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.78.190 d6f137de-7b20-47b0-93c1-7c3a3a903c1c 2020-02-27 03:01:44.098981 30393 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-26 20:08:07.137567000 Z\n- &1 2020-02-26 23:14:33.863630000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-27 03:07:08.222807436 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945822\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945822\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946096\n mask_addr: 4294967295\nsign_in_count:\n- 1438\n- 1439\n 2878 \N 200.68.181.112 4148455b-73fe-43c5-b80c-7d1009954aa5 2020-02-27 03:07:08.23124 30394 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MT8f5zdGbxBkPBbkH3sq\n- QK1bdQPdr-z_wN9Fjd-n\n 2879 \N 200.68.181.112 4148455b-73fe-43c5-b80c-7d1009954aa5 2020-02-27 03:07:08.250591 30395 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-26 23:14:33.863630000 Z\n- &1 2020-02-27 03:07:08.222807000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-27 06:38:55.524247578 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945822\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946096\n mask_addr: 4294967295\nsign_in_count:\n- 1439\n- 1440\n 2880 \N 200.68.181.112 11321a8b-8f2a-4383-960f-813909050510 2020-02-27 06:38:55.53288 30396 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QK1bdQPdr-z_wN9Fjd-n\n- RLzHTwGcoGH6DBr3EAX_\n 2881 \N 200.68.181.112 11321a8b-8f2a-4383-960f-813909050510 2020-02-27 06:38:55.5522 30397 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-25 17:59:31.999327000 Z\n- &1 2020-02-26 17:04:46.582976000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-27 17:12:36.662640732 Z\nsign_in_count:\n- 114\n- 115\n 230 \N 187.149.108.109 9c44e850-1baf-4d25-84ee-2ee909fdebc3 2020-02-27 17:12:36.695223 30398 27 User \N \N 27 User \N update ---\nunique_session_id:\n- WroRZ5cpsL6KTKWyce9v\n- cW4PAtha4BGQsJnu3e1o\n 231 \N 187.149.108.109 9c44e850-1baf-4d25-84ee-2ee909fdebc3 2020-02-27 17:12:36.718703 30399 856 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1177E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1177.0 187.149.108.109 9712ed1b-b171-4194-bf94-e11a1f744011 2020-02-27 17:12:49.559644 30400 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-26 18:13:05.373970000 Z\n- &1 2020-02-26 20:08:38.352509000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-27 19:06:40.533827896 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 163\n- 164\n 329 \N 189.186.107.100 303254ca-ba6c-49db-a0ec-f66fad4929ef 2020-02-27 19:06:40.541131 30401 21 User \N \N 21 User \N update ---\nunique_session_id:\n- kKivFmCyXGhE1FNghZV1\n- 45Dw7neYpzYTuHgitJVn\n 330 \N 189.186.107.100 303254ca-ba6c-49db-a0ec-f66fad4929ef 2020-02-27 19:06:40.562 30402 857 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1043E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1043.0 189.186.107.100 0e4a2520-c95b-4baf-b847-c5cc06fc6c9d 2020-02-27 19:07:13.9778 30403 2264 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 857\namount: !ruby/object:BigDecimal 18:0.609E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.509E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-02-27\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-284\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.107.100 03c3818c-8415-42a3-9347-ecbfd2f8b2aa 2020-02-27 19:08:56.634819 30406 3078 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 857\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2264\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-284\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-284 189.186.107.100 37d83a84-8ea8-4a26-ad6f-d0ec09d3c561 2020-02-27 19:09:08.670398 30407 3079 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 857\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2264\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-284\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.1E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-284 189.186.107.100 eb26ec45-0bce-46aa-8f6a-1bcde75c6d79 2020-02-27 19:09:08.967493 30408 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-25 17:32:05.802324000 Z\n- &1 2020-02-26 18:08:29.751807000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-27 20:34:52.551619693 Z\nsign_in_count:\n- 488\n- 489\n 981 \N 187.149.108.109 ae7da8ce-b597-4ebe-9f06-d3f5ebadba02 2020-02-27 20:34:52.558004 30409 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 4ecSAv5rynhMapysBrJV\n- DmfSZrADiaozGu8N3TuV\n 982 \N 187.149.108.109 ae7da8ce-b597-4ebe-9f06-d3f5ebadba02 2020-02-27 20:34:52.573924 30410 858 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1171E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1171.0 187.149.108.109 172c622c-f1fa-45d0-8f8e-217b70da9f40 2020-02-27 20:35:04.678751 30411 2265 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 858\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-02-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1123\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.109 8f93ab74-fe27-4a6e-8b9b-68793a35af63 2020-02-27 20:36:03.027796 30412 1631 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.108.109 8f93ab74-fe27-4a6e-8b9b-68793a35af63 2020-02-27 20:36:03.063347 30413 2265 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.109 0fc324c7-6040-453b-b1ef-bb139489103d 2020-02-27 20:36:29.856696 30414 3080 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 858\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 2265\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1123\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1123 187.149.108.109 0fc324c7-6040-453b-b1ef-bb139489103d 2020-02-27 20:36:29.878678 30415 3081 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 858\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 1485\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.469E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-768 187.149.108.109 08a6b75f-a7db-4a83-8821-0a6892c4b00e 2020-02-27 21:57:05.483842 30416 1485 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.108.109 337ccc66-7528-40f3-9bec-90a536ee0a34 2020-02-27 21:57:06.710353 30417 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-27 03:07:08.222807000 Z\n- &1 2020-02-27 06:38:55.524247000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-28 00:28:58.730355147 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946096\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938281\n mask_addr: 4294967295\nsign_in_count:\n- 1440\n- 1441\n 2882 \N 200.68.150.233 ef937087-06f1-4b8b-9b9a-453af993deea 2020-02-28 00:28:58.740927 30418 4 User \N \N 4 User \N update ---\nunique_session_id:\n- RLzHTwGcoGH6DBr3EAX_\n- ufJuic1MaRqdtasxHUnD\n 2883 \N 200.68.150.233 ef937087-06f1-4b8b-9b9a-453af993deea 2020-02-28 00:28:58.767795 30419 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-26 17:04:46.582976000 Z\n- &1 2020-02-27 17:12:36.662640000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-28 01:31:31.332889453 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132013\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 115\n- 116\n 232 \N 187.149.78.168 cfa78543-abe0-425f-b796-dffe111a063b 2020-02-28 01:31:31.341238 30420 27 User \N \N 27 User \N update ---\nunique_session_id:\n- cW4PAtha4BGQsJnu3e1o\n- sbsNk_rC62aMYeDQJzkJ\n 233 \N 187.149.78.168 cfa78543-abe0-425f-b796-dffe111a063b 2020-02-28 01:31:31.358491 30421 2266 Sale \N \N 27 User \N create ---\ncustomer_id: 217\nuser_id: 27\nopen_cash_register_id: 856\namount: !ruby/object:BigDecimal 18:0.589E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2020-02-27\nsaletype: 2\nseller_id: 19\nsale_code: PV2-V-857\nexpiration_date: 2020-04-02\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 bd99ecff-192d-45bc-9840-47ffa4aae908 2020-02-28 01:32:29.270712 30422 1676 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.78.168 bd99ecff-192d-45bc-9840-47ffa4aae908 2020-02-28 01:32:29.30049 30423 3082 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 856\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2266\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-857\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-857 187.149.78.168 a6ed6f5d-6956-459a-8ad6-341ed9ee0483 2020-02-28 01:32:38.06205 30424 2266 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.78.168 44d728e8-75bb-4d8a-99a4-a603b5cc1bcb 2020-02-28 01:32:42.579666 30425 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-27 06:38:55.524247000 Z\n- &1 2020-02-28 00:28:58.730355000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-28 01:59:48.034135220 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946096\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938281\n mask_addr: 4294967295\nsign_in_count:\n- 1441\n- 1442\n 2884 \N 200.68.150.233 91193698-76f9-4218-9efd-6ab5f7fd0661 2020-02-28 01:59:48.041727 30426 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ufJuic1MaRqdtasxHUnD\n- 9sJxQ-EyuLevH8xCjd85\n 2885 \N 200.68.150.233 91193698-76f9-4218-9efd-6ab5f7fd0661 2020-02-28 01:59:48.061009 30427 875 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 856\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1377E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1377E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.78.168 6a9a5d13-96f0-4621-90cc-139e609a76c9 2020-02-28 02:29:48.614038 30428 856 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 6a9a5d13-96f0-4621-90cc-139e609a76c9 2020-02-28 02:29:48.637136 30429 876 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 856\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1377E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1377E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.78.168 36090239-0f32-4af8-94e5-5a54856e3e22 2020-02-28 02:29:48.727934 30430 291 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 858\nquantity: !ruby/object:BigDecimal 18:0.1205E4\nstatus: 1\nobservations: sueldo Rocío\nexpense_date: 2020-02-27\nexpense_code: PV1-E-203\n 1 Egreso por 1205.0 registrado 187.149.78.168 4b790863-d3b4-4475-9b5d-db571319bedb 2020-02-28 02:30:00.391394 30431 3083 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 858\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1205E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 291\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 4b790863-d3b4-4475-9b5d-db571319bedb 2020-02-28 02:30:00.413745 30432 877 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 858\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.968E3\namount_out: !ruby/object:BigDecimal 18:0.1205E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.934E3\nphysical_cash: !ruby/object:BigDecimal 18:0.934E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.78.168 9520bc70-ad81-4c29-984e-cb7a5449bd46 2020-02-28 02:33:01.340006 30433 858 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 9520bc70-ad81-4c29-984e-cb7a5449bd46 2020-02-28 02:33:01.35315 30434 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-27 17:12:36.662640000 Z\n- &1 2020-02-28 01:31:31.332889000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-28 17:16:23.934175344 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132013\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 116\n- 117\n 234 \N 187.149.78.168 711a5677-229e-49aa-a7b7-111ee68dcf21 2020-02-28 17:16:23.969227 30435 27 User \N \N 27 User \N update ---\nunique_session_id:\n- sbsNk_rC62aMYeDQJzkJ\n- Y_32h41LVD7hoBQDyHmC\n 235 \N 187.149.78.168 711a5677-229e-49aa-a7b7-111ee68dcf21 2020-02-28 17:16:23.997829 30436 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-26 18:08:29.751807000 Z\n- &1 2020-02-27 20:34:52.551619000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-28 17:34:35.396983260 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132013\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 489\n- 490\n 983 \N 187.149.78.168 c1ebc2ca-6e93-481c-bde4-ae2267b758f8 2020-02-28 17:34:35.404439 30437 2 User \N \N 2 User \N update ---\nunique_session_id:\n- DmfSZrADiaozGu8N3TuV\n- gj3xsJb2PvjAuaxHtzjE\n 984 \N 187.149.78.168 c1ebc2ca-6e93-481c-bde4-ae2267b758f8 2020-02-28 17:34:35.425765 30438 859 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.934E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 934.0 187.149.78.168 5cf0dfa1-65c8-4a4d-b49e-14cfb97d816f 2020-02-28 17:34:51.096114 30439 3084 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 658\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1626\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 57d7b965-f88b-4845-b5db-7a3c929d1a24 2020-02-28 17:35:40.120263 30440 3084 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 658\n- 859\n 2 movimiento de efectivo por venta con folio PV1-V-831 187.149.78.168 57d7b965-f88b-4845-b5db-7a3c929d1a24 2020-02-28 17:35:40.149745 30441 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-26 20:08:38.352509000 Z\n- &1 2020-02-27 19:06:40.533827000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-28 18:10:34.116669181 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 164\n- 165\n 331 \N 189.186.107.100 88cc80d6-f918-436a-99af-1951d3c7af68 2020-02-28 18:10:34.12426 30442 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 45Dw7neYpzYTuHgitJVn\n- TsTiFwVhAEN34q8NVBsZ\n 332 \N 189.186.107.100 88cc80d6-f918-436a-99af-1951d3c7af68 2020-02-28 18:10:34.143165 30443 2267 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 859\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.849E3\nstatus: 0\ndate_sale: 2020-02-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1124\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 1cd9c58d-bd4d-4780-94be-3a1a9e0232c9 2020-02-28 18:20:34.144288 30444 1691 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.78.168 1cd9c58d-bd4d-4780-94be-3a1a9e0232c9 2020-02-28 18:20:34.19513 30445 2267 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 58b74737-e4df-45ed-af39-7d7ef1747c55 2020-02-28 18:20:40.877631 30446 3085 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 859\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.849E3\nmove_type: '1'\nsale_id: 2267\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1124\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.849E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1124 187.149.78.168 58b74737-e4df-45ed-af39-7d7ef1747c55 2020-02-28 18:20:40.900393 30447 2268 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 859\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-02-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1125\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 a6922a59-2781-45da-b6ae-bcd806affee7 2020-02-28 19:28:53.752119 30450 3086 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 859\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 2268\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1125\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1125 187.149.78.168 f1e4075a-247c-4e88-be55-962c2d967e55 2020-02-28 19:28:58.853293 30451 2269 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 859\namount: !ruby/object:BigDecimal 18:0.8534E2\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9899E2\nstatus: 0\ndate_sale: 2020-02-28\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-1126\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 db514276-ac09-4f56-89f0-c1d4b33c082a 2020-02-28 20:11:43.520082 30452 486 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 26 \N 187.149.78.168 db514276-ac09-4f56-89f0-c1d4b33c082a 2020-02-28 20:11:43.553391 30453 2269 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 4dd7fbf0-6e4d-47ac-b039-85a5c9642e03 2020-02-28 20:11:56.38019 30454 3087 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 859\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.9899E2\nmove_type: '1'\nsale_id: 2269\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1126\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.101E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1126 187.149.78.168 4dd7fbf0-6e4d-47ac-b039-85a5c9642e03 2020-02-28 20:11:56.401532 30455 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-02-20 19:17:22.672329000 Z\n- &1 2020-02-22 23:27:07.826235000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-28 21:00:38.363171293 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132013\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132013\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3361499151\n mask_addr: 4294967295\nsign_in_count:\n- 164\n- 165\n 330 \N 200.92.104.15 84f441b4-70fb-4861-b22c-40b1bba7fa8f 2020-02-28 21:00:38.393906 30456 1 User \N \N 1 User \N update ---\nunique_session_id:\n- syQciHFPdejh4aCXLBV-\n- kAA1_wwpY118EBgMjwui\n 331 \N 200.92.104.15 84f441b4-70fb-4861-b22c-40b1bba7fa8f 2020-02-28 21:00:38.418681 30457 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-28 00:28:58.730355000 Z\n- &1 2020-02-28 01:59:48.034135000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-28 21:16:51.932378286 Z\nsign_in_count:\n- 1442\n- 1443\n 2886 \N 200.68.150.233 c08813d2-a4e5-4aa6-9f84-1e3509456fc5 2020-02-28 21:16:51.939747 30458 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9sJxQ-EyuLevH8xCjd85\n- ByJkPfNK1GtbsypG-Kss\n 2887 \N 200.68.150.233 c08813d2-a4e5-4aa6-9f84-1e3509456fc5 2020-02-28 21:16:51.95824 30459 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 17:43:23.056925000 Z\n- &1 2020-02-13 18:19:36.770287000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-28 22:49:50.234002478 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 106\n- 107\n 214 \N 187.149.78.168 c85f5910-9ea7-4b28-b7e5-ba92e3caf774 2020-02-28 22:49:50.241089 30460 9 User \N \N 9 User \N update ---\nunique_session_id:\n- GeJDNK-yMHbL5hQbUnXy\n- MUU89WF41eXjvsfmYBZu\n 215 \N 187.149.78.168 c85f5910-9ea7-4b28-b7e5-ba92e3caf774 2020-02-28 22:49:50.259118 30461 2270 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 859\namount: !ruby/object:BigDecimal 18:0.48607E3\ntax: !ruby/object:BigDecimal 18:0.1393E2\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.101E3\nstatus: 0\ndate_sale: 2020-02-28\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1127\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 2cd310a0-d275-4885-98da-d9fa90281461 2020-02-28 22:51:06.101372 30462 213 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.78.168 2cd310a0-d275-4885-98da-d9fa90281461 2020-02-28 22:51:06.134779 30463 2270 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 c9ad1178-b632-4260-82df-45dd84636b81 2020-02-28 22:51:21.309112 30464 3088 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 859\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.101E3\nmove_type: '1'\nsale_id: 2270\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1127\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.101E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1127 187.149.78.168 c9ad1178-b632-4260-82df-45dd84636b81 2020-02-28 22:51:21.344084 30465 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-27 20:34:52.551619000 Z\n- &1 2020-02-28 17:34:35.396983000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-29 00:07:05.104367329 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132013\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 490\n- 491\n 985 \N 187.149.78.168 e58be133-2fee-440f-b81a-6c3552c65b79 2020-02-29 00:07:05.112145 30466 2 User \N \N 2 User \N update ---\nunique_session_id:\n- gj3xsJb2PvjAuaxHtzjE\n- UenZNskzQNWdFKwgtyzg\n 986 \N 187.149.78.168 e58be133-2fee-440f-b81a-6c3552c65b79 2020-02-29 00:07:05.131527 30467 860 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1377E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1377.0 187.149.78.168 9ecb913e-8b9b-4b98-bc69-536204b2ae0b 2020-02-29 00:47:47.771847 30468 2271 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 860\namount: !ruby/object:BigDecimal 18:0.1169E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1169E4\nstatus: 0\ndate_sale: 2020-02-28\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-858\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 2b664dba-a99d-4fc8-bbcc-4f8577a11fc3 2020-02-29 00:50:47.491002 30469 1648 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.78.168 2b664dba-a99d-4fc8-bbcc-4f8577a11fc3 2020-02-29 00:50:47.52087 30470 2271 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 42180d30-1cfc-4261-8da5-f1482d7aac99 2020-02-29 00:53:53.717853 30491 861 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.823E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 823.0 189.186.107.100 dc629182-4598-4e85-973e-c8ea7b8dc8e3 2020-02-29 17:48:58.921379 30471 3089 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 860\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1169E4\nmove_type: '1'\nsale_id: 2271\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-858\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1169E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-858 187.149.78.168 42180d30-1cfc-4261-8da5-f1482d7aac99 2020-02-29 00:53:53.739811 30472 3090 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 860\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2271\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-858\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1169E4\nchange: !ruby/object:BigDecimal 18:0.1169E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-858 187.149.78.168 db8bf94b-dc9f-4dd9-9a7e-fba3fe1a3788 2020-02-29 00:53:53.938026 30473 3090 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 860\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2271\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-858\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1169E4\nchange: !ruby/object:BigDecimal 18:0.1169E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 41331edb-6d99-400b-b90b-b792f9a6a87a 2020-02-29 00:53:56.758515 30474 292 Customer \N \N 2 User \N create ---\nnick_name: ALMA KARINA ZAZUETA\nphone: "(712) 663-8___"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ALMA KARINA ZAZUETA fue registrado. 187.149.78.168 61babbd7-2465-4bea-8345-272ad1064935 2020-02-29 02:19:00.199257 30475 2272 Sale \N \N 2 User \N create ---\ncustomer_id: 292\nuser_id: 2\nopen_cash_register_id: 859\namount: !ruby/object:BigDecimal 18:0.519E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.519E3\nstatus: 0\ndate_sale: 2020-02-28\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1128\nexpiration_date: 2020-04-03\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 2a23872e-17f9-4eae-b490-1df03862c4a2 2020-02-29 02:19:27.391488 30476 1628 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.78.168 2a23872e-17f9-4eae-b490-1df03862c4a2 2020-02-29 02:19:27.423442 30477 3091 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 859\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2272\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1128\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1128 187.149.78.168 f54e4788-131a-47ee-8924-d20a2a818e9c 2020-02-29 02:19:38.104852 30478 2272 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.78.168 009d1151-86d4-4f75-812c-740a18f821a9 2020-02-29 02:19:39.282305 30479 292 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 859\nquantity: !ruby/object:BigDecimal 18:0.651E3\nstatus: 1\nobservations: 601 SAM 50 PESTAÑAS PARA SESION\nexpense_date: 2020-02-28\nexpense_code: PV1-E-204\n 1 Egreso por 651.0 registrado 187.149.78.168 38d70883-e529-4966-b50c-0984e50a1d16 2020-02-29 02:26:22.081763 30480 3092 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 859\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.651E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 292\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 38d70883-e529-4966-b50c-0984e50a1d16 2020-02-29 02:26:22.104659 30481 878 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 859\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.254799E4\namount_out: !ruby/object:BigDecimal 18:0.651E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.18E4\ncash_fund: !ruby/object:BigDecimal 18:0.103E4\nphysical_cash: !ruby/object:BigDecimal 18:0.283E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.78.168 e08681e3-6f0d-4dd1-819c-a47fc9b54e35 2020-02-29 02:31:34.7253 30482 859 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 e08681e3-6f0d-4dd1-819c-a47fc9b54e35 2020-02-29 02:31:34.742437 30483 293 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 857\nquantity: !ruby/object:BigDecimal 18:0.32E3\nstatus: 1\nobservations: GASTOS\nexpense_date: 2020-02-28\nexpense_code: PV3-E-30\n 1 Egreso por 320.0 registrado 189.186.107.100 c7e4592c-fd5e-464b-85cc-7b315fbfd5fa 2020-02-29 02:45:05.979301 30484 3093 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 857\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.32E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 293\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.107.100 c7e4592c-fd5e-464b-85cc-7b315fbfd5fa 2020-02-29 02:45:06.003776 30485 879 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 857\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1E3\namount_out: !ruby/object:BigDecimal 18:0.32E3\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.823E3\nphysical_cash: !ruby/object:BigDecimal 18:0.823E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.107.100 c552887b-4903-4a59-b8fd-d8a0ae5dce0f 2020-02-29 02:45:53.303849 30486 857 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.107.100 c552887b-4903-4a59-b8fd-d8a0ae5dce0f 2020-02-29 02:45:53.322719 30487 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-28 01:59:48.034135000 Z\n- &1 2020-02-28 21:16:51.932378000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-29 03:09:20.368972805 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938281\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934346\n mask_addr: 4294967295\nsign_in_count:\n- 1443\n- 1444\n 2888 \N 200.68.135.138 4c8c08d2-d352-4d46-bb21-e647d9a71f20 2020-02-29 03:09:20.376566 30488 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ByJkPfNK1GtbsypG-Kss\n- Qv8sfp2ZLUVjU5xFJJPk\n 2889 \N 200.68.135.138 4c8c08d2-d352-4d46-bb21-e647d9a71f20 2020-02-29 03:09:20.396865 30489 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-27 19:06:40.533827000 Z\n- &1 2020-02-28 18:10:34.116669000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-29 17:48:45.205619979 Z\nsign_in_count:\n- 165\n- 166\n 333 \N 189.186.107.100 7e9846cd-78a3-4c99-a448-ca1995a446bb 2020-02-29 17:48:45.236455 30490 21 User \N \N 21 User \N update ---\nunique_session_id:\n- TsTiFwVhAEN34q8NVBsZ\n- qAcswbJVzEGrWVUHAvdN\n 334 \N 189.186.107.100 7e9846cd-78a3-4c99-a448-ca1995a446bb 2020-02-29 17:48:45.259807 30492 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 21:31:49.520736000 Z\n- &1 2020-02-14 01:55:30.989138000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-29 17:50:02.706548044 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 95\n- 96\n 195 \N 187.149.78.168 e2b4bfa7-f40f-44d7-a33d-c0f5a2fd94b2 2020-02-29 17:50:02.7147 30493 8 User \N \N 8 User \N update ---\nunique_session_id:\n- jKLTSsJeMC5BNuY81d5b\n- qV4cs26AtspYzuztwH1K\n 196 \N 187.149.78.168 e2b4bfa7-f40f-44d7-a33d-c0f5a2fd94b2 2020-02-29 17:50:02.732697 30494 2273 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 860\namount: !ruby/object:BigDecimal 18:0.1458E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1458E4\nstatus: 0\ndate_sale: 2020-02-29\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-859\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 50fc1788-f706-4a9e-ba24-c3ca27508bd1 2020-02-29 18:09:49.609883 30495 1652 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.78.168 50fc1788-f706-4a9e-ba24-c3ca27508bd1 2020-02-29 18:09:49.643675 30496 1678 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.78.168 50fc1788-f706-4a9e-ba24-c3ca27508bd1 2020-02-29 18:09:49.699813 30497 2273 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 096c46c1-a1c7-4cba-b3e4-a177152550f9 2020-02-29 18:09:56.943398 30498 3094 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 860\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1458E4\nmove_type: '1'\nsale_id: 2273\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-859\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.42E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-859 187.149.78.168 096c46c1-a1c7-4cba-b3e4-a177152550f9 2020-02-29 18:09:56.973711 30499 2274 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 861\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2020-02-29\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-285\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.107.100 369c1918-3c3d-44b1-96e1-ef581837a372 2020-02-29 20:35:25.854047 30500 1425 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.107.100 369c1918-3c3d-44b1-96e1-ef581837a372 2020-02-29 20:35:25.891288 30501 2274 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.107.100 5570b0c9-3771-4f93-8c5a-0a4228cc4fdf 2020-02-29 20:36:18.715786 30502 3095 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 861\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1699E4\nmove_type: '1'\nsale_id: 2274\ncardnumber: 4962\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-285\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-285 189.186.107.100 5570b0c9-3771-4f93-8c5a-0a4228cc4fdf 2020-02-29 20:36:18.750349 30503 3096 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 861\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1699E4\nmove_type: '1'\nsale_id: 2274\ncardnumber: 4962\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-285\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-285 189.186.107.100 0c16ab77-28ae-4a18-a504-9d63b05b1163 2020-02-29 20:36:18.836416 30504 3096 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 861\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1699E4\nmove_type: '1'\nsale_id: 2274\ncardnumber: 4962\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-285\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.107.100 2cfceec6-1bb9-42dc-a6f5-05749c0248a7 2020-02-29 20:36:24.864996 30505 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2020-02-22 18:35:05.253597000 Z\n- &1 2020-02-26 01:53:28.000864000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-29 20:55:50.182143618 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132013\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132013\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 56\n- 57\n 114 \N 187.149.78.168 36195736-c31f-430f-ad64-5dea6724d0a8 2020-02-29 20:55:50.223153 30506 24 User \N \N 24 User \N update ---\nunique_session_id:\n- 6wme9bm1anFRoqYqFtjQ\n- 76PuEb9f-xzpyzB2syzs\n 115 \N 187.149.78.168 36195736-c31f-430f-ad64-5dea6724d0a8 2020-02-29 20:55:50.248243 30507 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-28 01:31:31.332889000 Z\n- &1 2020-02-28 17:16:23.934175000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-29 21:01:32.381571684 Z\nsign_in_count:\n- 117\n- 118\n 236 \N 187.149.78.168 d031865b-d93b-4293-8e64-3f37dc1ea662 2020-02-29 21:01:32.387141 30508 27 User \N \N 27 User \N update ---\nunique_session_id:\n- Y_32h41LVD7hoBQDyHmC\n- dBuZUj4ytXTXVSeVz7_a\n 237 \N 187.149.78.168 d031865b-d93b-4293-8e64-3f37dc1ea662 2020-02-29 21:01:32.401544 30509 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-28 21:16:51.932378000 Z\n- &1 2020-02-29 03:09:20.368972000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-29 21:10:01.837558220 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938281\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934346\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934346\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1444\n- 1445\n 2890 \N 187.149.78.168 c94873ca-714e-469c-81a0-a44747b5dea4 2020-02-29 21:10:01.845764 30510 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Qv8sfp2ZLUVjU5xFJJPk\n- szb1aUDy2zGcixz9fGuH\n 2891 \N 187.149.78.168 c94873ca-714e-469c-81a0-a44747b5dea4 2020-02-29 21:10:01.86685 30511 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 01:55:30.989138000 Z\n- &1 2020-02-29 17:50:02.706548000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-29 21:10:47.825352082 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 96\n- 97\n 197 \N 187.149.78.168 af081fd9-1e99-44d9-a8aa-cc24147c02bf 2020-02-29 21:10:47.832755 30512 8 User \N \N 8 User \N update ---\nunique_session_id:\n- qV4cs26AtspYzuztwH1K\n- GBd_EYna2Qsei1yxTrym\n 198 \N 187.149.78.168 af081fd9-1e99-44d9-a8aa-cc24147c02bf 2020-02-29 21:10:47.848709 30513 2275 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 860\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-02-29\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-860\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 a8793abe-8b5f-4744-994a-4c843f9c0ef9 2020-02-29 21:11:13.079267 30514 495 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 187.149.78.168 a8793abe-8b5f-4744-994a-4c843f9c0ef9 2020-02-29 21:11:13.116566 30515 2275 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 32d95d1c-37b4-4238-953f-1798e5e106d6 2020-02-29 21:11:17.06686 30516 3097 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 860\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 2275\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-860\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-860 187.149.78.168 32d95d1c-37b4-4238-953f-1798e5e106d6 2020-02-29 21:11:17.091309 30517 294 Expense \N \N 8 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 860\nquantity: !ruby/object:BigDecimal 18:0.12E4\nstatus: 1\nobservations: SUELDO KEYLA $1200\nexpense_date: 2020-02-29\nexpense_code: PV2-E-59\n 1 Egreso por 1200.0 registrado 187.149.78.168 1e514a1d-8991-4321-b7f2-4eaaf5d68a0f 2020-02-29 21:14:05.256813 30518 3098 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 860\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 294\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 1e514a1d-8991-4321-b7f2-4eaaf5d68a0f 2020-02-29 21:14:05.281061 30519 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-29 03:09:20.368972000 Z\n- &1 2020-02-29 21:10:01.837558000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-29 22:40:40.517643719 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934346\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1445\n- 1446\n 2892 \N 187.149.78.168 76149394-a156-4ab6-9315-fd612b2ab873 2020-02-29 22:40:40.52514 30520 4 User \N \N 4 User \N update ---\nunique_session_id:\n- szb1aUDy2zGcixz9fGuH\n- xcnkybXn6_dGpEU89zZS\n 2893 \N 187.149.78.168 76149394-a156-4ab6-9315-fd612b2ab873 2020-02-29 22:40:40.542795 30521 1026 Product \N \N 4 User \N create ---\nsku: ACC-1026\nname: DIA-0036\ndescription: VALERINA FLORES\nprice_base: !ruby/object:BigDecimal 18:0.3326E2\nprice_sale: !ruby/object:BigDecimal 18:0.109E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1026 fue creado. 187.149.78.168 60f713de-c4f9-4610-8024-06efeb7dd470 2020-02-29 22:58:09.531812 30522 1026 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001026'\n 2 \N 187.149.78.168 60f713de-c4f9-4610-8024-06efeb7dd470 2020-02-29 22:58:09.57086 30523 1694 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1026\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 60f713de-c4f9-4610-8024-06efeb7dd470 2020-02-29 22:58:09.605156 30524 251 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-67\namount: !ruby/object:BigDecimal 18:0.9978E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9978E2\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-67 por $ 99.78 MXN creada. 187.149.78.168 747e42bb-777d-41cf-a02a-288e21ea8568 2020-02-29 22:58:16.057857 30525 1694 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.78.168 747e42bb-777d-41cf-a02a-288e21ea8568 2020-02-29 22:58:16.084688 30526 1027 Product \N \N 4 User \N create ---\nsku: ACC-1027\nname: DIA-0037\ndescription: 'DIADEMA PIEDRAS COLORES '\nprice_base: !ruby/object:BigDecimal 18:0.18032E3\nprice_sale: !ruby/object:BigDecimal 18:0.365E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1027 fue creado. 187.149.78.168 22552bee-0088-4079-a6c1-c09c756331f3 2020-02-29 23:07:24.442231 30527 1027 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001027'\n 2 \N 187.149.78.168 22552bee-0088-4079-a6c1-c09c756331f3 2020-02-29 23:07:24.474141 30528 1695 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1027\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 22552bee-0088-4079-a6c1-c09c756331f3 2020-02-29 23:07:24.508931 30529 252 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-68\namount: !ruby/object:BigDecimal 18:0.18032E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.18032E3\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-68 por $ 180.32 MXN creada. 187.149.78.168 57936758-b59d-465b-a044-d32330c6190a 2020-02-29 23:07:32.478054 30530 1695 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.78.168 57936758-b59d-465b-a044-d32330c6190a 2020-02-29 23:07:32.517081 30531 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-28 17:34:35.396983000 Z\n- &1 2020-02-29 00:07:05.104367000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-02-29 23:09:31.994728515 Z\nsign_in_count:\n- 491\n- 492\n 987 \N 187.149.78.168 aede7f17-a89b-4b43-b5d5-cf82ed37713b 2020-02-29 23:09:32.000797 30532 2 User \N \N 2 User \N update ---\nunique_session_id:\n- UenZNskzQNWdFKwgtyzg\n- dLDsBS44yXDiiQdhbmp6\n 988 \N 187.149.78.168 aede7f17-a89b-4b43-b5d5-cf82ed37713b 2020-02-29 23:09:32.0152 30533 862 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.103E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1030.0 187.149.78.168 57d8fd0b-927c-470e-b0aa-877f4d499fb1 2020-02-29 23:09:46.024666 30554 492 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-02-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.78.168 4b71b6cf-72ad-4e18-90ed-1504c44aa476 2020-02-29 23:42:42.864273 30534 2276 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 862\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.849E3\nstatus: 0\ndate_sale: 2020-02-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1129\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 3bd8faec-7e58-4c1f-97e3-2d9d4a382f26 2020-02-29 23:11:15.578756 30535 1691 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.78.168 3bd8faec-7e58-4c1f-97e3-2d9d4a382f26 2020-02-29 23:11:15.60923 30536 2276 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 efe10da2-3b49-4d9a-969b-bb8aa81d7bf5 2020-02-29 23:11:58.930654 30537 3099 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 862\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.849E3\nmove_type: '1'\nsale_id: 2276\ncardnumber: 4791\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1129\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1129 187.149.78.168 efe10da2-3b49-4d9a-969b-bb8aa81d7bf5 2020-02-29 23:11:58.956565 30538 295 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 862\nquantity: !ruby/object:BigDecimal 18:0.9E2\nstatus: 1\nobservations: "$65 comida Sam $25 garrafon de agua"\nexpense_date: 2020-02-29\nexpense_code: PV1-E-205\n 1 Egreso por 90.0 registrado 187.149.78.168 b026bddd-9e9c-494e-860e-933ba21e60fd 2020-02-29 23:17:21.015306 30539 3100 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 862\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.9E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 295\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.78.168 b026bddd-9e9c-494e-860e-933ba21e60fd 2020-02-29 23:17:21.040563 30540 293 Customer \N \N 2 User \N create ---\nnick_name: CLARISSA CAMACHO\nphone: "(667) 197-6894"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CLARISSA CAMACHO fue registrado. 187.149.78.168 1b864bfc-c25e-4a41-9a56-1f44051d99e6 2020-02-29 23:23:04.421204 30541 2277 Sale \N \N 2 User \N create ---\ncustomer_id: 293\nuser_id: 2\nopen_cash_register_id: 862\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-02-29\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1130\nexpiration_date: 2020-04-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 4a1e6e35-03c8-4cea-9da3-cfac7dbc900a 2020-02-29 23:23:23.756006 30542 1642 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.78.168 4a1e6e35-03c8-4cea-9da3-cfac7dbc900a 2020-02-29 23:23:23.792633 30543 3101 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 862\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 2277\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1130\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1130 187.149.78.168 48554adf-862c-4ae6-8c8a-09a7cc27f273 2020-02-29 23:24:03.804542 30544 2277 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.78.168 92ccb0fe-5b79-42a8-bd48-6fe5b8b8d9e4 2020-02-29 23:24:06.18938 30545 1028 Product \N \N 4 User \N create ---\nsku: ACC-1028\nname: DIA-0038\ndescription: DIADEMA DOBLE DE BRILLOS\nprice_base: !ruby/object:BigDecimal 18:0.21455E3\nprice_sale: !ruby/object:BigDecimal 18:0.4291E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1028 fue creado. 187.149.78.168 d884cfa7-3c32-4d9c-ae37-4e370e857e64 2020-02-29 23:26:49.556886 30546 1028 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001028'\n 2 \N 187.149.78.168 d884cfa7-3c32-4d9c-ae37-4e370e857e64 2020-02-29 23:26:49.587647 30547 1696 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1028\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 d884cfa7-3c32-4d9c-ae37-4e370e857e64 2020-02-29 23:26:49.618988 30548 253 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: ''\namount: !ruby/object:BigDecimal 18:0.21455E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.21455E3\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra por $ 214.55 MXN creada. 187.149.78.168 441a9ef0-b43f-4706-b19e-b90c47bdec35 2020-02-29 23:26:57.33074 30549 1696 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.78.168 441a9ef0-b43f-4706-b19e-b90c47bdec35 2020-02-29 23:26:57.354403 30550 1029 Product \N \N 4 User \N create ---\nsku: ACC-1029\nname: DON-001\ndescription: LIGAS DEL PELO\nprice_base: !ruby/object:BigDecimal 18:0.345E2\nprice_sale: !ruby/object:BigDecimal 18:0.69E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1029 fue creado. 187.149.78.168 ef9445a5-345d-425c-aeb0-4a2420b159df 2020-02-29 23:40:03.39501 30551 1029 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001029'\n 2 \N 187.149.78.168 ef9445a5-345d-425c-aeb0-4a2420b159df 2020-02-29 23:40:03.42498 30552 254 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-45\namount: !ruby/object:BigDecimal 18:0.4485E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4485E3\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-45 por $ 448.5 MXN creada. 187.149.78.168 e1d17f87-6009-4e93-b5c0-2212f8008d3d 2020-02-29 23:40:19.460124 30553 491 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-02-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 187.149.78.168 d36c746c-37a8-4ac3-bd26-14be04d5b5c9 2020-02-29 23:42:01.779188 30634 1701 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 69ba059e-2bd5-496b-847f-f77770b0de6f 2020-03-01 01:03:06.374151 30555 493 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-02-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 187.149.78.168 5fe8c8e8-e6ef-4e16-9259-94a9b58f7399 2020-02-29 23:43:17.682767 30556 1030 Product \N \N 4 User \N create ---\nsku: ACC-1030\nname: DIA-0039\ndescription: DIADEMA PIEDRA COLORES\nprice_base: !ruby/object:BigDecimal 18:0.157E3\nprice_sale: !ruby/object:BigDecimal 18:0.339E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1030 fue creado. 187.149.78.168 10a6fe5e-258c-4930-ac6c-c936946a2510 2020-02-29 23:59:11.133556 30557 1030 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001030'\n 2 \N 187.149.78.168 10a6fe5e-258c-4930-ac6c-c936946a2510 2020-02-29 23:59:11.162659 30558 1697 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1030\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 10a6fe5e-258c-4930-ac6c-c936946a2510 2020-02-29 23:59:11.191996 30559 255 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-70\namount: !ruby/object:BigDecimal 18:0.157E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.157E3\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-70 por $ 157.0 MXN creada. 187.149.78.168 1de11b87-5fa7-4ddc-a868-f82fcd39ad2b 2020-02-29 23:59:17.269926 30560 1697 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.78.168 1de11b87-5fa7-4ddc-a868-f82fcd39ad2b 2020-02-29 23:59:17.295883 30561 1031 Product \N \N 4 User \N create ---\nsku: ACC-1031\nname: DIA-0040\ndescription: DIADEMA DOBLE FLORES ORO ROSADO\nprice_base: !ruby/object:BigDecimal 18:0.73E2\nprice_sale: !ruby/object:BigDecimal 18:0.299E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1031 fue creado. 187.149.78.168 d283e0e2-4651-495a-a302-acd05ffcc0e6 2020-03-01 00:04:49.641366 30562 1031 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001031'\n 2 \N 187.149.78.168 d283e0e2-4651-495a-a302-acd05ffcc0e6 2020-03-01 00:04:49.67222 30563 1698 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1031\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 d283e0e2-4651-495a-a302-acd05ffcc0e6 2020-03-01 00:04:49.703539 30564 256 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-116\namount: !ruby/object:BigDecimal 18:0.73E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.73E2\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-116 por $ 73.0 MXN creada. 187.149.78.168 5f34d594-ffcd-4f65-97a7-119abc83163c 2020-03-01 00:04:54.552169 30565 1698 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.78.168 5f34d594-ffcd-4f65-97a7-119abc83163c 2020-03-01 00:04:54.578908 30566 1032 Product \N \N 4 User \N create ---\nsku: ACC-1032\nname: DIA-0041\ndescription: DIADEMA 3 FLORES CON PIEDRAS\nprice_base: !ruby/object:BigDecimal 18:0.122E3\nprice_sale: !ruby/object:BigDecimal 18:0.299E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1032 fue creado. 187.149.78.168 1be08843-ebae-493b-b95f-79abae6dc0a1 2020-03-01 00:07:53.255768 30567 1032 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001032'\n 2 \N 187.149.78.168 1be08843-ebae-493b-b95f-79abae6dc0a1 2020-03-01 00:07:53.284178 30568 257 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-46\namount: !ruby/object:BigDecimal 18:0.366E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.366E3\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-46 por $ 366.0 MXN creada. 187.149.78.168 9b62a5e6-3cb4-4ad0-8ac7-a6f048d802af 2020-03-01 00:07:59.699529 30569 494 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-02-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 187.149.78.168 f3f904f5-9186-4f5b-97a5-f61452634fc1 2020-03-01 00:08:39.661952 30570 495 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-02-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 187.149.78.168 96ca2610-30f0-46cf-9eb8-474c17ab897e 2020-03-01 00:09:22.513001 30571 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-29 21:10:01.837558000 Z\n- &1 2020-02-29 22:40:40.517643000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-01 00:11:38.410401904 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 1446\n- 1447\n 2894 \N 189.186.107.100 cde6b619-985f-429e-91b6-e994780ee783 2020-03-01 00:11:38.417748 30572 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xcnkybXn6_dGpEU89zZS\n- xBLoasnUzbNiPcXeBx9s\n 2895 \N 189.186.107.100 cde6b619-985f-429e-91b6-e994780ee783 2020-03-01 00:11:38.435164 30573 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-02-29 22:40:40.517643000 Z\n- &1 2020-03-01 00:11:38.410401000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-01 00:12:58.374154059 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1447\n- 1448\n 2896 \N 187.149.78.168 e8eec712-13df-4f39-9652-dfbcc6d21f52 2020-03-01 00:12:58.385314 30574 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xBLoasnUzbNiPcXeBx9s\n- 8w5mrAych1dXP81u6RAA\n 2897 \N 187.149.78.168 e8eec712-13df-4f39-9652-dfbcc6d21f52 2020-03-01 00:12:58.405218 30635 1702 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 69ba059e-2bd5-496b-847f-f77770b0de6f 2020-03-01 01:03:06.422348 30575 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2020-02-26 01:53:28.000864000 Z\n- &1 2020-02-29 20:55:50.182143000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-01 00:15:28.974039281 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132013\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 57\n- 58\n 116 \N 187.149.78.168 70989f02-d5d5-4201-9e19-74cb5bab8e17 2020-03-01 00:15:28.982045 30576 24 User \N \N 24 User \N update ---\nunique_session_id:\n- 76PuEb9f-xzpyzB2syzs\n- tzw1MKUPH24x-8wivhN-\n 117 \N 187.149.78.168 70989f02-d5d5-4201-9e19-74cb5bab8e17 2020-03-01 00:15:29.000393 30577 1033 Product \N \N 4 User \N create ---\nsku: ACC-1033\nname: DIA-0042\ndescription: DIADEMA FLORES CON PERLAS\nprice_base: !ruby/object:BigDecimal 18:0.5718E2\nprice_sale: !ruby/object:BigDecimal 18:0.129E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1033 fue creado. 187.149.78.168 ca585548-6092-4130-98d5-e5425298dd8a 2020-03-01 00:16:05.624107 30578 1033 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001033'\n 2 \N 187.149.78.168 ca585548-6092-4130-98d5-e5425298dd8a 2020-03-01 00:16:05.67228 30579 258 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-47\namount: !ruby/object:BigDecimal 18:0.17154E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.17154E3\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-47 por $ 171.54 MXN creada. 187.149.78.168 4f60c27f-966a-4e9c-9d1b-ae3c9f966e6e 2020-03-01 00:16:09.595304 30580 496 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-02-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.78.168 49cee2f1-a164-44c0-af51-e8b234df66e2 2020-03-01 00:16:45.204403 30581 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-28 18:10:34.116669000 Z\n- &1 2020-02-29 17:48:45.205619000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-01 00:17:08.131834942 Z\nsign_in_count:\n- 166\n- 167\n 335 \N 189.186.107.100 49434ef1-a055-4834-bb74-cab03b962833 2020-03-01 00:17:08.137769 30582 21 User \N \N 21 User \N update ---\nunique_session_id:\n- qAcswbJVzEGrWVUHAvdN\n- YNd2Bsf2BLk_sDt2Pjs3\n 336 \N 189.186.107.100 49434ef1-a055-4834-bb74-cab03b962833 2020-03-01 00:17:08.150937 30583 497 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-02-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 187.149.78.168 010f0f33-65fc-447c-baec-140e454f7fd6 2020-03-01 00:17:09.390077 30584 498 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-02-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 187.149.78.168 a492d9be-ffcd-46f7-9e96-418686bcc39b 2020-03-01 00:17:34.880539 30585 1034 Product \N \N 21 User \N create ---\nsku: ACC-1034\nname: ARE-0037\ndescription: "S925 Pendientes Asimétricos De Lentejuelas De Plástico Con Diamantes\n De Acrílico De Pasador De Plata Nhje18985\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.7287E2\nprice_sale: !ruby/object:BigDecimal 18:0.259E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE37.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1034 fue creado. 189.186.107.100 e9df954f-0504-49b5-a256-9109ea9c2771 2020-03-01 00:18:15.933863 30586 1034 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001034'\n 2 \N 189.186.107.100 e9df954f-0504-49b5-a256-9109ea9c2771 2020-03-01 00:18:15.966846 30587 1699 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1034\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 e9df954f-0504-49b5-a256-9109ea9c2771 2020-03-01 00:18:15.994826 30588 1035 Product \N \N 21 User \N create ---\nsku: ACC-1035\nname: ARE-0046\ndescription: "Pendientes De Diamantes En Forma De Corazón De Moda Con Diamantes Y\n Aretes De Perlas Nhjj190994\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5223E2\nprice_sale: !ruby/object:BigDecimal 18:0.149E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE46.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1035 fue creado. 189.186.107.100 6b6e2773-5a76-44dc-87b1-3106d7fb9e93 2020-03-01 00:21:22.832874 30589 1035 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001035'\n 2 \N 189.186.107.100 6b6e2773-5a76-44dc-87b1-3106d7fb9e93 2020-03-01 00:21:22.867528 30590 1700 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1035\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 6b6e2773-5a76-44dc-87b1-3106d7fb9e93 2020-03-01 00:21:22.897591 30591 1036 Product \N \N 21 User \N create ---\nsku: ACC-1036\nname: ARE-0035\ndescription: "Aretes De Moda Pendientes Exagerados Asimétricos De Luna De Aleación\n Europea Y Americana Nhva19088\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.7846E2\nprice_sale: !ruby/object:BigDecimal 18:0.289E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE35.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1036 fue creado. 189.186.107.100 2dae7ca2-7a21-497c-a4e5-4309f1352491 2020-03-01 00:25:12.142785 30592 1036 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001036'\n 2 \N 189.186.107.100 2dae7ca2-7a21-497c-a4e5-4309f1352491 2020-03-01 00:25:12.174057 30593 1701 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1036\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 2dae7ca2-7a21-497c-a4e5-4309f1352491 2020-03-01 00:25:12.203199 30636 1704 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 69ba059e-2bd5-496b-847f-f77770b0de6f 2020-03-01 01:03:06.457044 30637 1705 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 69ba059e-2bd5-496b-847f-f77770b0de6f 2020-03-01 01:03:06.490489 30594 1037 Product \N \N 21 User \N create ---\nsku: ACC-1037\nname: ARE-0065\ndescription: Aretes De Perlas Simples Para Mujer, Traje De Cuatro Piezas Nhsd191057\nprice_base: !ruby/object:BigDecimal 18:0.4879E2\nprice_sale: !ruby/object:BigDecimal 18:0.199E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE65.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1037 fue creado. 189.186.107.100 1e0abb67-d764-46a5-8567-6ea1a02f9021 2020-03-01 00:33:41.941074 30595 1037 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001037'\n 2 \N 189.186.107.100 1e0abb67-d764-46a5-8567-6ea1a02f9021 2020-03-01 00:33:41.972865 30596 1702 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1037\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 1e0abb67-d764-46a5-8567-6ea1a02f9021 2020-03-01 00:33:42.00198 30597 1038 Product \N \N 4 User \N create ---\nsku: ACC-1038\nname: DIA-0043\ndescription: DIADEMA FLORES COLORES METALICOS\nprice_base: !ruby/object:BigDecimal 18:0.182E3\nprice_sale: !ruby/object:BigDecimal 18:0.369E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1038 fue creado. 187.149.78.168 fafa6a3a-fb7e-4fcb-bb6d-32094d19d5c9 2020-03-01 00:34:14.960026 30598 1038 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001038'\n 2 \N 187.149.78.168 fafa6a3a-fb7e-4fcb-bb6d-32094d19d5c9 2020-03-01 00:34:14.985335 30599 1703 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1038\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 fafa6a3a-fb7e-4fcb-bb6d-32094d19d5c9 2020-03-01 00:34:15.014939 30600 259 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-117\namount: !ruby/object:BigDecimal 18:0.182E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.182E3\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-117 por $ 182.0 MXN creada. 187.149.78.168 09401a99-61d3-4001-961e-80388dce89c7 2020-03-01 00:34:21.341521 30601 1703 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.78.168 09401a99-61d3-4001-961e-80388dce89c7 2020-03-01 00:34:21.365377 30602 1039 Product \N \N 21 User \N create ---\nsku: ACC-1039\nname: ARE-0024\ndescription: ARETE DE MOÑO\nprice_base: !ruby/object:BigDecimal 18:0.7438E2\nprice_sale: !ruby/object:BigDecimal 18:0.209E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: are.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1039 fue creado. 189.186.107.100 f9574c47-d28f-4d72-a0e9-6176e53ad9aa 2020-03-01 00:34:28.475773 30603 1039 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001039'\n 2 \N 189.186.107.100 f9574c47-d28f-4d72-a0e9-6176e53ad9aa 2020-03-01 00:34:28.50608 30604 1704 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1039\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 f9574c47-d28f-4d72-a0e9-6176e53ad9aa 2020-03-01 00:34:28.534926 30605 1040 Product \N \N 21 User \N create ---\nsku: ACC-1040\nname: ARE-0039\ndescription: "Aretes Sencillos De Flores Pintadas Huecas Nhjj190113\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6964E2\nprice_sale: !ruby/object:BigDecimal 18:0.209E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE39.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1040 fue creado. 189.186.107.100 8ce6db87-100f-4cc9-a264-016c486640cc 2020-03-01 00:37:10.884106 30606 1040 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001040'\n 2 \N 189.186.107.100 8ce6db87-100f-4cc9-a264-016c486640cc 2020-03-01 00:37:10.917432 30607 1705 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1040\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 8ce6db87-100f-4cc9-a264-016c486640cc 2020-03-01 00:37:10.946424 30608 1041 Product \N \N 21 User \N create ---\nsku: ACC-1041\nname: ARE-0025\ndescription: "ARETE ESTRELLA PERLA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.7055E2\nprice_sale: !ruby/object:BigDecimal 18:0.209E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE25.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1041 fue creado. 189.186.107.100 16b3cc3b-fe16-4e99-ba0b-40658f65af96 2020-03-01 00:39:59.741813 30609 1041 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001041'\n 2 \N 189.186.107.100 16b3cc3b-fe16-4e99-ba0b-40658f65af96 2020-03-01 00:39:59.772922 30610 1706 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1041\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 16b3cc3b-fe16-4e99-ba0b-40658f65af96 2020-03-01 00:39:59.807468 30611 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-02-29 17:50:02.706548000 Z\n- &1 2020-02-29 21:10:47.825352000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-01 00:43:33.563516283 Z\nsign_in_count:\n- 97\n- 98\n 199 \N 187.149.78.168 99046f55-60d0-4a43-aad2-336e6677b4ef 2020-03-01 00:43:33.56962 30612 8 User \N \N 8 User \N update ---\nunique_session_id:\n- GBd_EYna2Qsei1yxTrym\n- GEgt1g9uQnKcCYfsBbvn\n 200 \N 187.149.78.168 99046f55-60d0-4a43-aad2-336e6677b4ef 2020-03-01 00:43:33.582768 30638 1706 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 69ba059e-2bd5-496b-847f-f77770b0de6f 2020-03-01 01:03:06.517869 30639 1707 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 69ba059e-2bd5-496b-847f-f77770b0de6f 2020-03-01 01:03:06.562951 46488 1368 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1368'\n is_parent: false\n sku: BOL-1368\n name: 2BLCV20359\n description: 'CROSS BODY NEGRO '\n price_base: '749.5'\n price_sale: '1499.0'\n img_product: 32D07336-421D-49E7-AC90-BCC4B59FE3F3.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170821635'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-22 18:45:14.661383'\n updated_at: &12 2020-11-21 19:47:08.846943329 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1368'\n sku: BOL-1368\n name: 2BLCV20359\n description: 'CROSS BODY NEGRO '\n price_base: '749.50'\n price_sale: '1499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-22 18:45:14.661383'\n updated_at: '2020-10-22 18:45:14.661383'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170821635'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1368'\n type: *3\n value: 1368\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1368\n type: *7\n value: BOL-1368\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 2BLCV20359\n type: *8\n value: 2BLCV20359\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'CROSS BODY NEGRO '\n type: *6\n value: 'CROSS BODY NEGRO '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '749.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1499E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 32D07336-421D-49E7-AC90-BCC4B59FE3F3.jpeg\n type: *2\n value: 32D07336-421D-49E7-AC90-BCC4B59FE3F3.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170821635'\n type: *2\n value: '7509170821635'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-22 18:45:14.661383'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 32D07336-421D-49E7-AC90-BCC4B59FE3F3.jpeg\n 2 El producto BOL-1368 fue modificado. 189.186.1.223 e01a2472-0bfa-42fa-a92d-da9aed441a59 2020-11-21 19:47:08.886533 30613 1042 Product \N \N 21 User \N create ---\nsku: ACC-1042\nname: ARE-0031\ndescription: "Aretes Geométricos De Corazón Joker Pendientes Vintage Nhjj188754\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5674E2\nprice_sale: !ruby/object:BigDecimal 18:0.209E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE31.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1042 fue creado. 189.186.107.100 dc58b5d7-5243-4d01-ac35-8c416a9e413a 2020-03-01 00:43:49.350793 30614 1042 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001042'\n 2 \N 189.186.107.100 dc58b5d7-5243-4d01-ac35-8c416a9e413a 2020-03-01 00:43:49.38155 30615 1707 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1042\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 dc58b5d7-5243-4d01-ac35-8c416a9e413a 2020-03-01 00:43:49.414984 30616 2278 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 860\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-02-29\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-861\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 1103323a-f2d3-45c9-bd91-4ff4d880f248 2020-03-01 00:46:01.089234 30617 800 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 27 \N 187.149.78.168 1103323a-f2d3-45c9-bd91-4ff4d880f248 2020-03-01 00:46:01.119531 30618 2278 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 b4ff3285-5f15-466b-a2a4-2d81fb5f55df 2020-03-01 00:46:16.743718 30619 3102 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 860\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 2278\ncardnumber: 1111\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-861\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-861 187.149.78.168 b4ff3285-5f15-466b-a2a4-2d81fb5f55df 2020-03-01 00:46:16.76707 30620 1043 Product \N \N 21 User \N create ---\nsku: ACC-1043\nname: ARE-0064\ndescription: Aretes De Perlas De Diamantes De Imitación Pendientes De Botón Set De\n 9 Pares\nprice_base: !ruby/object:BigDecimal 18:0.3546E2\nprice_sale: !ruby/object:BigDecimal 18:0.179E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE64.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1043 fue creado. 189.186.107.100 0d77bf01-0959-4f13-98aa-a2655e49a637 2020-03-01 00:47:47.858239 30621 1043 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001043'\n 2 \N 189.186.107.100 0d77bf01-0959-4f13-98aa-a2655e49a637 2020-03-01 00:47:47.888521 30622 1708 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1043\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 0d77bf01-0959-4f13-98aa-a2655e49a637 2020-03-01 00:47:47.916888 30623 1044 Product \N \N 21 User \N create ---\nsku: ACC-1044\nname: ARE-0026\ndescription: "ARETE PERLA Y RILLOS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6362E2\nprice_sale: !ruby/object:BigDecimal 18:0.179E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE26.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1044 fue creado. 189.186.107.100 e996d0fe-5ea3-44d6-8318-29609d95150e 2020-03-01 00:51:51.90212 30624 1044 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001044'\n 2 \N 189.186.107.100 e996d0fe-5ea3-44d6-8318-29609d95150e 2020-03-01 00:51:51.933289 30625 1709 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1044\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 e996d0fe-5ea3-44d6-8318-29609d95150e 2020-03-01 00:51:51.961971 30626 1045 Product \N \N 21 User \N create ---\nsku: ACC-1045\nname: ARE-0029\ndescription: "Aretes De Diamantes De Imitación De Aleación En Forma De Corazón Con\n Diamantes Nhmd191020\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.533E2\nprice_sale: !ruby/object:BigDecimal 18:0.179E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE29.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1045 fue creado. 189.186.107.100 5cada204-4d4d-46db-a5f1-b0e92847d165 2020-03-01 00:55:40.12861 30627 1045 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001045'\n 2 \N 189.186.107.100 5cada204-4d4d-46db-a5f1-b0e92847d165 2020-03-01 00:55:40.161621 30628 1710 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1045\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 5cada204-4d4d-46db-a5f1-b0e92847d165 2020-03-01 00:55:40.197139 30629 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-02-29 21:10:47.825352000 Z\n- &1 2020-03-01 00:43:33.563516000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-01 00:59:53.203642198 Z\nsign_in_count:\n- 98\n- 99\n 201 \N 187.149.78.168 8657425a-f545-4c20-b1e4-a61cec778cc6 2020-03-01 00:59:53.210149 30630 8 User \N \N 8 User \N update ---\nunique_session_id:\n- GEgt1g9uQnKcCYfsBbvn\n- ps5DwYFSAswGTQfmK6N3\n 202 \N 187.149.78.168 8657425a-f545-4c20-b1e4-a61cec778cc6 2020-03-01 00:59:53.22469 30631 260 Purchase \N \N 21 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-26\namount: !ruby/object:BigDecimal 18:0.80242E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.80242E3\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-26 por $ 802.42 MXN creada. 189.186.107.100 69ba059e-2bd5-496b-847f-f77770b0de6f 2020-03-01 01:03:06.266139 30632 1699 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 69ba059e-2bd5-496b-847f-f77770b0de6f 2020-03-01 01:03:06.300824 30633 1700 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 69ba059e-2bd5-496b-847f-f77770b0de6f 2020-03-01 01:03:06.335674 30640 1708 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 69ba059e-2bd5-496b-847f-f77770b0de6f 2020-03-01 01:03:06.591732 30641 1709 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 69ba059e-2bd5-496b-847f-f77770b0de6f 2020-03-01 01:03:06.622281 30642 1710 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 69ba059e-2bd5-496b-847f-f77770b0de6f 2020-03-01 01:03:06.673605 30643 22 User \N \N 22 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 20:51:45.533550000 Z\n- &1 2020-02-13 21:40:36.203794000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-01 01:04:14.298937255 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 10\n- 11\n 22 \N 189.186.107.100 08af13d3-0d81-43a7-b11f-c064d76500a3 2020-03-01 01:04:14.306416 30644 22 User \N \N 22 User \N update ---\nunique_session_id:\n- zARWxDybdRLubQwqXNL-\n- 7JzfuAzh16bsBrLUnZZY\n 23 \N 189.186.107.100 08af13d3-0d81-43a7-b11f-c064d76500a3 2020-03-01 01:04:14.323213 30645 555 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.78.168 e4356bc2-a8e8-46ff-87f8-7f2b4ebc62a8 2020-03-01 01:04:16.857244 30646 555 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.78.168 e43d2be4-7478-4f14-9b0c-2e080826a3c9 2020-03-01 01:04:20.978208 30647 499 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-02-29\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.78.168 c45a675d-91d9-4d22-aa87-5c9a5ea866fe 2020-03-01 01:04:22.043421 30648 478 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-29\n 2 Se dio entrada a traspaso de SUO Comercial a Almacen central 189.186.107.100 c3d67d61-b7ab-4072-8a91-4cf5592057a8 2020-03-01 01:04:32.516011 30649 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-01 00:11:38.410401000 Z\n- &1 2020-03-01 00:12:58.374154000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-01 01:05:41.911974691 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 1448\n- 1449\n 2898 \N 187.149.78.168 d8baa334-9a17-49ce-a51b-ec567377efcd 2020-03-01 01:05:41.919245 30650 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8w5mrAych1dXP81u6RAA\n- gf9siShjjc8bbtYYpfJR\n 2899 \N 187.149.78.168 d8baa334-9a17-49ce-a51b-ec567377efcd 2020-03-01 01:05:41.937237 30651 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-02-29 17:48:45.205619000 Z\n- &1 2020-03-01 00:17:08.131834000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-01 01:07:14.404205415 Z\nsign_in_count:\n- 167\n- 168\n 337 \N 189.186.107.100 3183dd3e-a923-461a-958e-7982b01df701 2020-03-01 01:07:14.413086 30652 21 User \N \N 21 User \N update ---\nunique_session_id:\n- YNd2Bsf2BLk_sDt2Pjs3\n- EUguuGZeJkQ5jKDj5ezr\n 338 \N 189.186.107.100 3183dd3e-a923-461a-958e-7982b01df701 2020-03-01 01:07:14.433223 30653 1046 Product \N \N 21 User \N create ---\nsku: ACC-1046\nname: ARE-0034\ndescription: "Versión Coreana De Pendientes Vintage De Flores Bordadas De Diamantes\n De Color Rosa Nhms189768\\r\\n\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6728E2\nprice_sale: !ruby/object:BigDecimal 18:0.229E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 1\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE34.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1046 fue creado. 189.186.107.100 171dad57-4ee1-4e3b-a30d-c077b04a8d33 2020-03-01 01:09:33.530293 30654 1046 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001046'\n 2 \N 189.186.107.100 171dad57-4ee1-4e3b-a30d-c077b04a8d33 2020-03-01 01:09:33.566591 30655 1711 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1046\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 171dad57-4ee1-4e3b-a30d-c077b04a8d33 2020-03-01 01:09:33.605499 30656 499 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-29\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.78.168 ef2ef63e-85d9-4a9c-bc6d-5e9ca48967f3 2020-03-01 01:11:34.976887 30657 656 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.78.168 ef2ef63e-85d9-4a9c-bc6d-5e9ca48967f3 2020-03-01 01:11:34.998919 30658 1047 Product \N \N 4 User \N create ---\nsku: ACC-1047\nname: DIA-0050\ndescription: DIADEMA BOLITAS GAZA\nprice_base: !ruby/object:BigDecimal 18:0.58E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1047 fue creado. 187.149.78.168 9957fdaa-a040-459f-beec-c60afa6e6580 2020-03-01 01:12:14.581299 30659 1047 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001047'\n 2 \N 187.149.78.168 9957fdaa-a040-459f-beec-c60afa6e6580 2020-03-01 01:12:14.612983 30660 261 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-48\namount: !ruby/object:BigDecimal 18:0.232E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.232E3\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-48 por $ 232.0 MXN creada. 187.149.78.168 95804884-0aaa-4166-88d3-d0eb59751792 2020-03-01 01:12:22.03276 30661 1048 Product \N \N 21 User \N create ---\nsku: ACC-1048\nname: ARE-0030\ndescription: "Aretes De Borla Pendientes Creativos De Bohemia Pendientes De Diamantes\n De Estilo Vintage Tejidos Nhmd190136\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.108E3\nprice_sale: !ruby/object:BigDecimal 18:0.219E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE30.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1048 fue creado. 189.186.107.100 3a1d4386-8144-44bb-a3e8-1e2fb64d2be7 2020-03-01 01:15:18.137894 30662 1048 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001048'\n 2 \N 189.186.107.100 3a1d4386-8144-44bb-a3e8-1e2fb64d2be7 2020-03-01 01:15:18.16908 30703 1715 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 abed5ef3-0974-4cc3-bf98-741f0cab9340 2020-03-01 01:42:29.728644 30663 1712 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1048\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 3a1d4386-8144-44bb-a3e8-1e2fb64d2be7 2020-03-01 01:15:18.198984 30664 1049 Product \N \N 21 User \N create ---\nsku: ACC-1049\nname: ARE-0028\ndescription: Nuevos Pendientes Pendientes Étnicos Boho Pendientes Delicados Flecos\n Largos Nhmd189660\nprice_base: !ruby/object:BigDecimal 18:0.6732E2\nprice_sale: !ruby/object:BigDecimal 18:0.219E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1049 fue creado. 189.186.107.100 a7292761-fd67-4491-80b9-6609a58c25ba 2020-03-01 01:18:01.185519 30665 1049 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001049'\n 2 \N 189.186.107.100 a7292761-fd67-4491-80b9-6609a58c25ba 2020-03-01 01:18:01.219552 30666 1713 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1049\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 a7292761-fd67-4491-80b9-6609a58c25ba 2020-03-01 01:18:01.25459 30667 500 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-02-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 187.149.78.168 2a903673-5678-48b0-af0a-289727c0b2a7 2020-03-01 01:20:42.752527 30668 1050 Product \N \N 21 User \N create ---\nsku: ACC-1050\nname: ARE-0038\ndescription: "endientes De Perlas De Círculo Retro Coreano Mujeres Moda Simple Grandes\n Pendientes De Perlas Creativos En Forma De C Nhpf196100\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.36E2\nprice_sale: !ruby/object:BigDecimal 18:0.129E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE38.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1050 fue creado. 189.186.107.100 0f7db40b-fcc1-4d1b-8232-4e69461f5a8c 2020-03-01 01:25:50.047346 30669 1050 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001050'\n 2 \N 189.186.107.100 0f7db40b-fcc1-4d1b-8232-4e69461f5a8c 2020-03-01 01:25:50.0807 30670 1714 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1050\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 0f7db40b-fcc1-4d1b-8232-4e69461f5a8c 2020-03-01 01:25:50.112331 30671 1051 Product \N \N 21 User \N create ---\nsku: ACC-1051\nname: ARE-0033\ndescription: "Lindos Aretes De Diamantes De Imitación De Amor Nhjq142992\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.82E2\nprice_sale: !ruby/object:BigDecimal 18:0.249E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE33.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1051 fue creado. 189.186.107.100 36471e96-c728-4b21-9274-97a87b08fae0 2020-03-01 01:26:24.85806 30672 1051 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001051'\n 2 \N 189.186.107.100 36471e96-c728-4b21-9274-97a87b08fae0 2020-03-01 01:26:24.889061 30673 1715 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1051\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 36471e96-c728-4b21-9274-97a87b08fae0 2020-03-01 01:26:24.919821 30674 501 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-02-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 187.149.78.168 2e439585-1eba-4bcc-bf19-2aa53b42a401 2020-03-01 01:29:08.182883 30675 502 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-02-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.78.168 961d4c94-46c4-485e-b78d-3138c5772c72 2020-03-01 01:29:32.878005 30676 1052 Product \N \N 21 User \N create ---\nsku: ACC-1052\nname: ARE-0036\ndescription: "Aretes De Borla De Plata 925 Con Pasador De Plata Y Diamantes Pendientes\n De Borla Asimétricos Pendientes Ab Nhms192464\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.86E2\nprice_sale: !ruby/object:BigDecimal 18:0.249E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE36.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1052 fue creado. 189.186.107.100 b729f22a-0700-4e12-a5d6-edfb5b9ec74d 2020-03-01 01:31:52.129168 30677 1052 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001052'\n 2 \N 189.186.107.100 b729f22a-0700-4e12-a5d6-edfb5b9ec74d 2020-03-01 01:31:52.166928 30678 1716 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1052\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 b729f22a-0700-4e12-a5d6-edfb5b9ec74d 2020-03-01 01:31:52.195945 30679 1053 Product \N \N 4 User \N create ---\nsku: ACC-1053\nname: DIA.-0051\ndescription: DIADEMA ROSA DE FLORES\nprice_base: !ruby/object:BigDecimal 18:0.51E2\nprice_sale: !ruby/object:BigDecimal 18:0.105E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1053 fue creado. 187.149.78.168 bd77f159-4f36-45da-bb74-51c9b5991ec2 2020-03-01 01:33:18.961065 30680 1053 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001053'\n 2 \N 187.149.78.168 bd77f159-4f36-45da-bb74-51c9b5991ec2 2020-03-01 01:33:18.991199 30681 262 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-49\namount: !ruby/object:BigDecimal 18:0.102E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.102E3\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-49 por $ 102.0 MXN creada. 187.149.78.168 ccaf2c86-d530-4c46-a931-cfab471e758a 2020-03-01 01:33:24.002519 30682 1054 Product \N \N 21 User \N create ---\nsku: ACC-1054\nname: ARE-0032\ndescription: S925 Pendientes De Plata Esterlina Aceite De Goteo Pendientes Acrílicos\n En Forma De Corazón Mujeres Pendientes Largos Nhqd187894\nprice_base: !ruby/object:BigDecimal 18:0.53E2\nprice_sale: !ruby/object:BigDecimal 18:0.149E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE32.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1054 fue creado. 189.186.107.100 e035fe9a-69d1-4312-bac4-13d24fe33bef 2020-03-01 01:35:10.61319 30683 1054 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001054'\n 2 \N 189.186.107.100 e035fe9a-69d1-4312-bac4-13d24fe33bef 2020-03-01 01:35:10.648713 30684 1717 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1054\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 e035fe9a-69d1-4312-bac4-13d24fe33bef 2020-03-01 01:35:10.686621 30685 503 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-02-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 187.149.78.168 35aae970-b40f-415a-a611-645996bdf2ba 2020-03-01 01:35:39.808172 30686 504 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-02-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 187.149.78.168 46bd85ef-274b-418f-874c-59b1eef1c2b9 2020-03-01 01:36:20.308288 30687 1055 Product \N \N 21 User \N create ---\nsku: ACC-1055\nname: ARE-0042\ndescription: Aretes De Perlas Huecas Exageradas En Forma De Gota Nhln194765\nprice_base: !ruby/object:BigDecimal 18:0.63E2\nprice_sale: !ruby/object:BigDecimal 18:0.199E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE42.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1055 fue creado. 189.186.107.100 079c21e0-2775-430c-8908-f83e7b79fe38 2020-03-01 01:36:34.10221 30688 1055 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001055'\n 2 \N 189.186.107.100 079c21e0-2775-430c-8908-f83e7b79fe38 2020-03-01 01:36:34.13809 30689 1718 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1055\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 079c21e0-2775-430c-8908-f83e7b79fe38 2020-03-01 01:36:34.175333 30690 1056 Product \N \N 21 User \N create ---\nsku: ACC-1056\nname: ARE-0061\ndescription: "Pendientes Geométricos Retro De 30 Pares Set Pendientes De Diamantes\n De Niña Y Niña Nhsd191048\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.8646E2\nprice_sale: !ruby/object:BigDecimal 18:0.279E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE61.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1056 fue creado. 189.186.107.100 1589ba4f-fe6f-41af-ac15-3aa6c91d3d16 2020-03-01 01:38:53.295636 30691 1056 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001056'\n 2 \N 189.186.107.100 1589ba4f-fe6f-41af-ac15-3aa6c91d3d16 2020-03-01 01:38:53.32662 30692 1719 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1056\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 1589ba4f-fe6f-41af-ac15-3aa6c91d3d16 2020-03-01 01:38:53.356256 30693 1057 Product \N \N 4 User \N create ---\nsku: ACC-1057\nname: DIA-0052\ndescription: DIADEMA BLANCA PIEDRAS CON FLORES\nprice_base: !ruby/object:BigDecimal 18:0.28916E3\nprice_sale: !ruby/object:BigDecimal 18:0.549E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1057 fue creado. 187.149.78.168 f8a07cb0-ec9a-4fc7-8ae7-72525270cd78 2020-03-01 01:40:43.827025 30694 1057 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001057'\n 2 \N 187.149.78.168 f8a07cb0-ec9a-4fc7-8ae7-72525270cd78 2020-03-01 01:40:43.855516 30695 1720 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1057\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 f8a07cb0-ec9a-4fc7-8ae7-72525270cd78 2020-03-01 01:40:43.888763 30696 263 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-118\namount: !ruby/object:BigDecimal 18:0.28916E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.28916E3\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-118 por $ 289.16 MXN creada. 187.149.78.168 9c159a22-27d1-4e63-9097-2a2a7430a3b0 2020-03-01 01:40:48.600064 30697 1720 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.78.168 9c159a22-27d1-4e63-9097-2a2a7430a3b0 2020-03-01 01:40:48.632327 30698 264 Purchase \N \N 21 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-27\namount: !ruby/object:BigDecimal 18:0.82198E3\ntax: !ruby/object:BigDecimal 18:0.1076E2\ntotal: !ruby/object:BigDecimal 18:0.83274E3\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-27 por $ 832.74 MXN creada. 189.186.107.100 abed5ef3-0974-4cc3-bf98-741f0cab9340 2020-03-01 01:42:29.585991 30699 1711 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 abed5ef3-0974-4cc3-bf98-741f0cab9340 2020-03-01 01:42:29.6125 30700 1712 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 abed5ef3-0974-4cc3-bf98-741f0cab9340 2020-03-01 01:42:29.645468 30701 1713 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 abed5ef3-0974-4cc3-bf98-741f0cab9340 2020-03-01 01:42:29.674634 30702 1714 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 abed5ef3-0974-4cc3-bf98-741f0cab9340 2020-03-01 01:42:29.701751 30704 1716 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 abed5ef3-0974-4cc3-bf98-741f0cab9340 2020-03-01 01:42:29.756055 30705 1717 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 abed5ef3-0974-4cc3-bf98-741f0cab9340 2020-03-01 01:42:29.794211 30706 1718 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 abed5ef3-0974-4cc3-bf98-741f0cab9340 2020-03-01 01:42:29.82731 30707 1719 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.107.100 abed5ef3-0974-4cc3-bf98-741f0cab9340 2020-03-01 01:42:29.855797 30708 265 Purchase \N \N 21 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-27\namount: !ruby/object:BigDecimal 18:0.82198E3\ntax: !ruby/object:BigDecimal 18:0.1076E2\ntotal: !ruby/object:BigDecimal 18:0.83274E3\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-27 por $ 832.74 MXN creada. 189.186.107.100 0dd499d0-8111-430a-9470-3e19f384571c 2020-03-01 01:42:30.662244 30709 1058 Product \N \N 21 User \N create ---\nsku: ACC-1058\nname: ARE-0059\ndescription: Nuevos Pendientes De Diamantes De Aleación Pendientes Simples Accesorios\n De Pendientes De Moda Nhjq191303\nprice_base: !ruby/object:BigDecimal 18:0.8039E2\nprice_sale: !ruby/object:BigDecimal 18:0.209E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE59.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1058 fue creado. 189.186.107.100 9be2c972-1996-44d4-aaf8-99e70d48eac5 2020-03-01 01:44:02.839029 30710 1058 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001058'\n 2 \N 189.186.107.100 9be2c972-1996-44d4-aaf8-99e70d48eac5 2020-03-01 01:44:02.87329 30711 1721 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1058\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 9be2c972-1996-44d4-aaf8-99e70d48eac5 2020-03-01 01:44:02.914748 30712 1059 Product \N \N 4 User \N create ---\nsku: ACC-1059\nname: DIA-0053\ndescription: 'DIADEMA BLANCA CON FLORES ROSAS '\nprice_base: !ruby/object:BigDecimal 18:0.25154E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1059 fue creado. 187.149.78.168 94e58814-c8bc-455a-b9bb-544a184b5a3e 2020-03-01 01:44:51.227604 30713 1059 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001059'\n 2 \N 187.149.78.168 94e58814-c8bc-455a-b9bb-544a184b5a3e 2020-03-01 01:44:51.259081 30714 1722 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1059\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 94e58814-c8bc-455a-b9bb-544a184b5a3e 2020-03-01 01:44:51.297142 30715 266 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-119\namount: !ruby/object:BigDecimal 18:0.25154E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.25154E3\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-119 por $ 251.54 MXN creada. 187.149.78.168 b88d83cb-2b56-47ad-8083-6f8851ca806c 2020-03-01 01:44:56.531759 30716 1722 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.78.168 b88d83cb-2b56-47ad-8083-6f8851ca806c 2020-03-01 01:44:56.556304 30717 1060 Product \N \N 21 User \N create ---\nsku: ACC-1060\nname: ARE-0050\ndescription: "Anillo Borla Aretes Plata 925 Aguja Asimétrica Coreano Planeta Luna\n Nhms192473\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6593E2\nprice_sale: !ruby/object:BigDecimal 18:0.179E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE50.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1060 fue creado. 189.186.107.100 73136f77-52dd-4e58-815d-fdcd0321f5e7 2020-03-01 01:45:49.742376 30718 1060 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001060'\n 2 \N 189.186.107.100 73136f77-52dd-4e58-815d-fdcd0321f5e7 2020-03-01 01:45:49.773654 30719 1723 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1060\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 73136f77-52dd-4e58-815d-fdcd0321f5e7 2020-03-01 01:45:49.806711 30720 1061 Product \N \N 21 User \N create ---\nsku: ACC-1061\nname: ARE-0062\ndescription: "Pink Love Cute 30 Pares De Aretes Con Aretes De Luna Dorada Adornos\n Nhsd191044\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.8349E2\nprice_sale: !ruby/object:BigDecimal 18:0.269E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE62.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1061 fue creado. 189.186.107.100 e39b874d-bcfa-4784-a9ce-cfc48dc63df5 2020-03-01 01:47:10.346881 30721 1061 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001061'\n 2 \N 189.186.107.100 e39b874d-bcfa-4784-a9ce-cfc48dc63df5 2020-03-01 01:47:10.384002 30722 1724 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1061\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 e39b874d-bcfa-4784-a9ce-cfc48dc63df5 2020-03-01 01:47:10.424505 30723 1062 Product \N \N 4 User \N create ---\nsku: ACC-1062\nname: DIA-0054\ndescription: DIADEMA ESTRELLAS\nprice_base: !ruby/object:BigDecimal 18:0.275E3\nprice_sale: !ruby/object:BigDecimal 18:0.55E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1062 fue creado. 187.149.78.168 f675ea32-ff5b-4016-86ba-b4bbd5f3b0e5 2020-03-01 01:48:32.182151 30725 1725 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1062\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 f675ea32-ff5b-4016-86ba-b4bbd5f3b0e5 2020-03-01 01:48:32.250191 30726 267 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-120\namount: !ruby/object:BigDecimal 18:0.275E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.275E3\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-120 por $ 275.0 MXN creada. 187.149.78.168 9634dda1-9b3c-4398-a37e-2257a07f90d4 2020-03-01 01:48:35.605038 30727 1725 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.78.168 9634dda1-9b3c-4398-a37e-2257a07f90d4 2020-03-01 01:48:35.636701 30728 1063 Product \N \N 21 User \N create ---\nsku: ACC-1063\nname: ARE-0051\ndescription: "Aretes Para Mujer De Amor Simple Anillo De Cobre Pendientes De Circón\n Al Por Mayor Nhnz185931\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6471E2\nprice_sale: !ruby/object:BigDecimal 18:0.149E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE51.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1063 fue creado. 189.186.107.100 b270ad8f-bfdf-4cff-b1ab-f13b683f7401 2020-03-01 01:49:30.663825 30729 1063 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001063'\n 2 \N 189.186.107.100 b270ad8f-bfdf-4cff-b1ab-f13b683f7401 2020-03-01 01:49:30.6956 30730 1726 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1063\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 b270ad8f-bfdf-4cff-b1ab-f13b683f7401 2020-03-01 01:49:30.725796 30731 1064 Product \N \N 4 User \N create ---\nsku: ACC-1064\nname: DIA-0055\ndescription: DIADEMA ROSA PIEDRAS\nprice_base: !ruby/object:BigDecimal 18:0.247E3\nprice_sale: !ruby/object:BigDecimal 18:0.494E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1064 fue creado. 187.149.78.168 1491466f-870b-4df0-bde7-ac5596ff0fb2 2020-03-01 01:52:47.295798 30732 1064 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001064'\n 2 \N 187.149.78.168 1491466f-870b-4df0-bde7-ac5596ff0fb2 2020-03-01 01:52:47.329095 30733 1727 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1064\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 1491466f-870b-4df0-bde7-ac5596ff0fb2 2020-03-01 01:52:47.357934 30734 268 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-29\namount: !ruby/object:BigDecimal 18:0.247E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.247E3\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-29 por $ 247.0 MXN creada. 187.149.78.168 5b0fd0eb-3ca3-4dc3-848c-192a2153caf6 2020-03-01 01:52:50.929141 30735 1727 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.78.168 5b0fd0eb-3ca3-4dc3-848c-192a2153caf6 2020-03-01 01:52:50.958294 30736 1065 Product \N \N 4 User \N create ---\nsku: ACC-1065\nname: DIA-0056\ndescription: DIADEMA PERLAS\nprice_base: !ruby/object:BigDecimal 18:0.5E2\nprice_sale: !ruby/object:BigDecimal 18:0.11E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1065 fue creado. 187.149.78.168 2ebc6784-0ea2-468b-a672-41b89f723145 2020-03-01 01:56:32.018701 30737 1065 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001065'\n 2 \N 187.149.78.168 2ebc6784-0ea2-468b-a672-41b89f723145 2020-03-01 01:56:32.048568 30738 1728 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1065\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 2ebc6784-0ea2-468b-a672-41b89f723145 2020-03-01 01:56:32.078687 30739 269 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-30\namount: !ruby/object:BigDecimal 18:0.5E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.5E2\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-30 por $ 50.0 MXN creada. 187.149.78.168 33274dd3-1c87-4a20-9e75-67b56e96a075 2020-03-01 01:56:35.710155 30740 1728 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.78.168 33274dd3-1c87-4a20-9e75-67b56e96a075 2020-03-01 01:56:35.73687 30741 1066 Product \N \N 21 User \N create ---\nsku: ACC-1066\nname: ARE-0053\ndescription: "Pendientes De Diamantes De Moda Pendientes De Mujer Al Por Mayor Nhva186018\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6515E2\nprice_sale: !ruby/object:BigDecimal 18:0.229E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE53.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1066 fue creado. 189.186.107.100 f2f6761b-885b-4369-963b-01d9c9a226ec 2020-03-01 01:57:34.05277 30742 1066 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001066'\n 2 \N 189.186.107.100 f2f6761b-885b-4369-963b-01d9c9a226ec 2020-03-01 01:57:34.088862 30743 1729 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1066\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 f2f6761b-885b-4369-963b-01d9c9a226ec 2020-03-01 01:57:34.125122 30765 1737 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 1053\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 16c5aa90-73f6-4b76-9583-1c63e50bcff9 2020-03-01 02:06:21.830782 30878 21 User \N \N 21 User \N update ---\nunique_session_id:\n- EUguuGZeJkQ5jKDj5ezr\n- 7mjsihvFAySsfGb_d2n_\n 340 \N 189.186.107.100 bbf79d32-662c-48b0-a03b-d901a50314ee 2020-03-01 20:26:21.381055 30744 1067 Product \N \N 4 User \N create ---\nsku: ACC-1067\nname: DIA-0057\ndescription: DIADEMA NEGRA CON PIEDRAS\nprice_base: !ruby/object:BigDecimal 18:0.115E3\nprice_sale: !ruby/object:BigDecimal 18:0.23E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1067 fue creado. 187.149.78.168 5a70e5eb-7516-4bae-a504-3a71a23ede71 2020-03-01 02:00:16.336518 30745 1067 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001067'\n 2 \N 187.149.78.168 5a70e5eb-7516-4bae-a504-3a71a23ede71 2020-03-01 02:00:16.368001 30746 1730 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1067\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 5a70e5eb-7516-4bae-a504-3a71a23ede71 2020-03-01 02:00:16.399073 30747 1068 Product \N \N 21 User \N create ---\nsku: ACC-1068\nname: ARE-0063\ndescription: Venta Caliente Coreano Diamante Corazón Llave Pendientes Al Por Mayor\n Nhzu196085\nprice_base: !ruby/object:BigDecimal 18:0.4225E2\nprice_sale: !ruby/object:BigDecimal 18:0.179E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE63.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1068 fue creado. 189.186.107.100 40dbcd9e-f8ff-407b-9c6f-7caf75e09aba 2020-03-01 02:01:47.70707 30748 1068 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001068'\n 2 \N 189.186.107.100 40dbcd9e-f8ff-407b-9c6f-7caf75e09aba 2020-03-01 02:01:47.744265 30749 1731 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1068\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 40dbcd9e-f8ff-407b-9c6f-7caf75e09aba 2020-03-01 02:01:47.77395 30750 1069 Product \N \N 21 User \N create ---\nsku: ACC-1069\nname: ARE-0048\ndescription: "\\"Pendientes De Estrella De Pentagrama De Diamantes De Aleación De Moda\n Coreana Pendientes De Cadena De Borla Larga Femenina Nhpf196120"\nprice_base: !ruby/object:BigDecimal 18:0.6362E2\nprice_sale: !ruby/object:BigDecimal 18:0.259E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1069 fue creado. 189.186.107.100 f63128b8-faae-4b65-be0d-d4664f5a67a1 2020-03-01 02:03:36.125824 30751 1069 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001069'\n 2 \N 189.186.107.100 f63128b8-faae-4b65-be0d-d4664f5a67a1 2020-03-01 02:03:36.154265 30752 1732 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1069\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 f63128b8-faae-4b65-be0d-d4664f5a67a1 2020-03-01 02:03:36.186097 30753 1070 Product \N \N 21 User \N create ---\nsku: ACC-1070\nname: ARE-0055\ndescription: "Aretes De Aleación De Círculo Grande Con Personalidad Femenina Y Pendientes\n Simples Nhje189838\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5155E2\nprice_sale: !ruby/object:BigDecimal 18:0.209E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE55.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1070 fue creado. 189.186.107.100 64cc3b78-1ad6-4a93-a2e8-3a9eecdd970a 2020-03-01 02:05:24.178972 30754 1070 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001070'\n 2 \N 189.186.107.100 64cc3b78-1ad6-4a93-a2e8-3a9eecdd970a 2020-03-01 02:05:24.209712 30755 1733 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1070\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 64cc3b78-1ad6-4a93-a2e8-3a9eecdd970a 2020-03-01 02:05:24.237336 30756 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-01 00:43:33.563516000 Z\n- &1 2020-03-01 00:59:53.203642000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-01 02:05:27.777757350 Z\nsign_in_count:\n- 99\n- 100\n 203 \N 187.149.78.168 235411dd-2132-4abe-8476-dbd7fb62638a 2020-03-01 02:05:27.784931 30757 8 User \N \N 8 User \N update ---\nunique_session_id:\n- ps5DwYFSAswGTQfmK6N3\n- hY7QqKinsiUmk_yN2YxU\n 204 \N 187.149.78.168 235411dd-2132-4abe-8476-dbd7fb62638a 2020-03-01 02:05:27.804526 30758 491 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-29\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.78.168 6bd9a67b-7685-4d86-8c8d-97a69265f9c9 2020-03-01 02:05:51.12741 30759 1734 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 1029\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 6bd9a67b-7685-4d86-8c8d-97a69265f9c9 2020-03-01 02:05:51.163403 30760 494 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-29\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.78.168 f2591729-e963-4c19-9a9a-20cdc61356e3 2020-03-01 02:06:00.333589 30761 1735 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 1032\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 f2591729-e963-4c19-9a9a-20cdc61356e3 2020-03-01 02:06:00.35964 30762 497 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-29\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.78.168 e9d2cdad-3af4-4df0-8298-e7be2608ed65 2020-03-01 02:06:10.02473 30763 1736 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 1033\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 e9d2cdad-3af4-4df0-8298-e7be2608ed65 2020-03-01 02:06:10.048313 30764 504 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-29\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.78.168 16c5aa90-73f6-4b76-9583-1c63e50bcff9 2020-03-01 02:06:21.805118 30824 1084 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001084'\n 2 \N 189.186.107.100 c38b253d-a990-4f8c-8e81-6e1187bc0454 2020-03-01 02:27:50.66518 30766 500 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-02-29\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.78.168 9d83559e-404c-4b12-addf-5d8bf210cd3d 2020-03-01 02:06:30.239777 30767 1738 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 1047\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 9d83559e-404c-4b12-addf-5d8bf210cd3d 2020-03-01 02:06:30.263518 30768 1071 Product \N \N 21 User \N create ---\nsku: ACC-1071\nname: ARE-0041\ndescription: "Pendientes De Perlas Vintage De Aleación Femenina De Diamantes Con Cruz\n De Joyería Larga Nhln190433\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6343E2\nprice_sale: !ruby/object:BigDecimal 18:0.249E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE41.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1071 fue creado. 189.186.107.100 6707cced-6526-46d4-a449-6f4ecd7fe0ac 2020-03-01 02:07:15.32637 30769 1071 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001071'\n 2 \N 189.186.107.100 6707cced-6526-46d4-a449-6f4ecd7fe0ac 2020-03-01 02:07:15.381026 30770 1739 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1071\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 6707cced-6526-46d4-a449-6f4ecd7fe0ac 2020-03-01 02:07:15.423555 30771 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-01 00:12:58.374154000 Z\n- &1 2020-03-01 01:05:41.911974000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-01 02:08:08.685218003 Z\nsign_in_count:\n- 1449\n- 1450\n 2900 \N 187.149.78.168 313e26c1-b1cf-409a-bddb-e13173a095d0 2020-03-01 02:08:08.691995 30772 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gf9siShjjc8bbtYYpfJR\n- ae5Ut4ptBoxR9rmvVmxb\n 2901 \N 187.149.78.168 313e26c1-b1cf-409a-bddb-e13173a095d0 2020-03-01 02:08:08.709987 30773 1072 Product \N \N 4 User \N create ---\nsku: ACC-1072\nname: DIA-001\ndescription: DIADEMA NEGRA CORAZON\nprice_base: !ruby/object:BigDecimal 18:0.14E3\nprice_sale: !ruby/object:BigDecimal 18:0.36E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1072 fue creado. 187.149.78.168 0761a7f1-a0c4-477e-a1f2-c9bfa2e1a453 2020-03-01 02:09:16.967237 30774 1072 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001072'\n 2 \N 187.149.78.168 0761a7f1-a0c4-477e-a1f2-c9bfa2e1a453 2020-03-01 02:09:16.996658 30775 1740 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1072\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 0761a7f1-a0c4-477e-a1f2-c9bfa2e1a453 2020-03-01 02:09:17.026453 30776 270 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-71\namount: !ruby/object:BigDecimal 18:0.255E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.255E3\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-71 por $ 255.0 MXN creada. 187.149.78.168 301329f1-f254-47c8-ad64-7dc9f1eb35a5 2020-03-01 02:09:38.867793 30777 1730 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.78.168 301329f1-f254-47c8-ad64-7dc9f1eb35a5 2020-03-01 02:09:38.893571 30778 1740 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.78.168 301329f1-f254-47c8-ad64-7dc9f1eb35a5 2020-03-01 02:09:38.926142 30779 1073 Product \N \N 21 User \N create ---\nsku: ACC-1073\nname: ARE-0049\ndescription: "Diamantes De Imitación Amor Temperamento Pendientes De Corazón De Durazno\n Pendientes Al Por Mayor Nhyq194548\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.705E2\nprice_sale: !ruby/object:BigDecimal 18:0.229E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1073 fue creado. 189.186.107.100 d82bb6e6-05b3-445e-b9b4-46dc28b6cdbe 2020-03-01 02:11:12.782431 30780 1073 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001073'\n 2 \N 189.186.107.100 d82bb6e6-05b3-445e-b9b4-46dc28b6cdbe 2020-03-01 02:11:12.822784 30781 1741 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1073\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 d82bb6e6-05b3-445e-b9b4-46dc28b6cdbe 2020-03-01 02:11:12.856517 30782 1074 Product \N \N 21 User \N create ---\nsku: ACC-1074\nname: ARE-0040\ndescription: "Aretes De Diamantes Con Incrustaciones De Aleación De Corona De Moda\n Nhjq142943\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.804E2\nprice_sale: !ruby/object:BigDecimal 18:0.249E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE40.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1074 fue creado. 189.186.107.100 69330047-59e4-4653-b2c3-c10903e50e1d 2020-03-01 02:12:30.648985 30783 1074 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001074'\n 2 \N 189.186.107.100 69330047-59e4-4653-b2c3-c10903e50e1d 2020-03-01 02:12:30.683468 30784 1742 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1074\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 69330047-59e4-4653-b2c3-c10903e50e1d 2020-03-01 02:12:30.719881 30785 1075 Product \N \N 4 User \N create ---\nsku: ACC-1075\nname: DIA-0058\ndescription: DIADEMA PERLAS DORADA\nprice_base: !ruby/object:BigDecimal 18:0.72E2\nprice_sale: !ruby/object:BigDecimal 18:0.159E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1075 fue creado. 187.149.78.168 f3e9d1d5-cbef-4286-81d7-b4ee1dfb19ed 2020-03-01 02:13:09.661889 30786 1075 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001075'\n 2 \N 187.149.78.168 f3e9d1d5-cbef-4286-81d7-b4ee1dfb19ed 2020-03-01 02:13:09.695087 30787 1743 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1075\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 f3e9d1d5-cbef-4286-81d7-b4ee1dfb19ed 2020-03-01 02:13:09.730658 30788 271 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-121\namount: !ruby/object:BigDecimal 18:0.72E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.72E2\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-121 por $ 72.0 MXN creada. 187.149.78.168 5af1c8ac-51c7-4e2d-8f93-a6808791528c 2020-03-01 02:13:13.001517 30789 1743 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.78.168 5af1c8ac-51c7-4e2d-8f93-a6808791528c 2020-03-01 02:13:13.030461 30790 1076 Product \N \N 21 User \N create ---\nsku: ACC-1076\nname: ARE-0045\ndescription: "Aretes De Borla Con Cuentas De Aleación De Estilo De Explosión Al Por\n Mayor Nhjq189862\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.7545E2\nprice_sale: !ruby/object:BigDecimal 18:0.259E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE45.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1076 fue creado. 189.186.107.100 66d6107d-7a45-42a7-87f9-bfe8935217f7 2020-03-01 02:14:13.617661 30791 1076 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001076'\n 2 \N 189.186.107.100 66d6107d-7a45-42a7-87f9-bfe8935217f7 2020-03-01 02:14:13.655269 30792 1744 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1076\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 66d6107d-7a45-42a7-87f9-bfe8935217f7 2020-03-01 02:14:13.692153 30793 1077 Product \N \N 4 User \N create ---\nsku: ACC-1077\nname: DIA-0059\ndescription: DIADEMA MOÑO Y BOLITAS\nprice_base: !ruby/object:BigDecimal 18:0.47E2\nprice_sale: !ruby/object:BigDecimal 18:0.99E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1077 fue creado. 187.149.78.168 19790c89-31bd-4056-9b25-969249434310 2020-03-01 02:15:29.77441 30794 1077 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001077'\n 2 \N 187.149.78.168 19790c89-31bd-4056-9b25-969249434310 2020-03-01 02:15:29.80833 30795 272 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-50\namount: !ruby/object:BigDecimal 18:0.141E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.141E3\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-50 por $ 141.0 MXN creada. 187.149.78.168 cd7b1a10-e101-4243-a835-4fb7df07929f 2020-03-01 02:15:35.521383 30796 505 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-02-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 187.149.78.168 08a3ac6a-b5ab-4a7b-84ce-2a4953d82baa 2020-03-01 02:16:18.383816 30797 506 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-02-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.78.168 2e1903e5-9e7e-4fd6-b652-6bd84e8b9a10 2020-03-01 02:16:47.2575 30798 507 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-02-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 187.149.78.168 eae8ff2c-3a2e-4f6a-95f7-ba6e2c589d3c 2020-03-01 02:17:13.337772 30799 1078 Product \N \N 21 User \N create ---\nsku: ACC-1078\nname: ARE-0043\ndescription: "Aretes De Perlas De Imitación De Diamantes Y Diamantes De Imitación\n Geométricos Pendientes Retro Para Mujeres Nhje192732\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5954E2\nprice_sale: !ruby/object:BigDecimal 18:0.179E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE43.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1078 fue creado. 189.186.107.100 f50dd146-b64a-414e-83ce-d59084347b38 2020-03-01 02:18:04.799744 30800 1078 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001078'\n 2 \N 189.186.107.100 f50dd146-b64a-414e-83ce-d59084347b38 2020-03-01 02:18:04.831479 30801 1745 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1078\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 f50dd146-b64a-414e-83ce-d59084347b38 2020-03-01 02:18:04.865132 30802 1079 Product \N \N 4 User \N create ---\nsku: ACC-1079\nname: DIA-0060\ndescription: DIADEMA PERLAS\nprice_base: !ruby/object:BigDecimal 18:0.57E2\nprice_sale: !ruby/object:BigDecimal 18:0.129E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1079 fue creado. 187.149.78.168 0bf70cb2-ebdf-47e3-881e-ec472a878853 2020-03-01 02:20:38.578987 30803 1079 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001079'\n 2 \N 187.149.78.168 0bf70cb2-ebdf-47e3-881e-ec472a878853 2020-03-01 02:20:38.609565 30804 273 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-51\namount: !ruby/object:BigDecimal 18:0.114E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.114E3\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-51 por $ 114.0 MXN creada. 187.149.78.168 4266d8a1-a300-47a3-b294-30ae6f279a87 2020-03-01 02:20:44.353359 30825 1750 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1084\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 c38b253d-a990-4f8c-8e81-6e1187bc0454 2020-03-01 02:27:50.697162 30964 2286 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.87.30 efc6d414-b015-43fe-abd3-f6492912bae7 2020-03-03 19:52:45.898649 30805 1080 Product \N \N 21 User \N create ---\nsku: ACC-1080\nname: ARE-0060\ndescription: S925 Pendientes De Borla Coreana De Plata Pendientes De Borla De Perlas\n Pendientes Largos De Amor De Muesca\nprice_base: !ruby/object:BigDecimal 18:0.133E3\nprice_sale: !ruby/object:BigDecimal 18:0.269E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE60.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1080 fue creado. 189.186.107.100 e246ac57-8085-49f7-a332-74eae691a8b5 2020-03-01 02:21:50.610558 30806 1080 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001080'\n 2 \N 189.186.107.100 e246ac57-8085-49f7-a332-74eae691a8b5 2020-03-01 02:21:50.650047 30807 1746 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1080\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 e246ac57-8085-49f7-a332-74eae691a8b5 2020-03-01 02:21:50.68397 30808 508 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-02-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 187.149.78.168 a7396dac-8f29-4f45-88fa-d252efdf4b76 2020-03-01 02:22:02.092935 30809 509 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-02-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 187.149.78.168 8a097b2c-ef3e-4248-a550-1bd4472c4a54 2020-03-01 02:22:49.654536 30810 1081 Product \N \N 21 User \N create ---\nsku: ACC-1081\nname: ARE-0057\ndescription: "Pendientes De Aleación De Flores De Tela Coreana De Nueva Ola Pendientes\n De Punto Hueco Accesorios De Joyería Nhjq196248\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4578E2\nprice_sale: !ruby/object:BigDecimal 18:0.129E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE57.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1081 fue creado. 189.186.107.100 165228a3-c9be-494c-a12e-76d7e255ccce 2020-03-01 02:23:36.733619 30811 1081 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001081'\n 2 \N 189.186.107.100 165228a3-c9be-494c-a12e-76d7e255ccce 2020-03-01 02:23:36.768505 30812 1747 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1081\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 165228a3-c9be-494c-a12e-76d7e255ccce 2020-03-01 02:23:36.797675 30813 880 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 862\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1149E4\namount_out: !ruby/object:BigDecimal 18:0.9E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.4E3\ncash_fund: !ruby/object:BigDecimal 18:0.84E3\nphysical_cash: !ruby/object:BigDecimal 18:0.124E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.78.168 60a46cf9-bfc9-49c1-b1c6-59f6147e8e5c 2020-03-01 02:23:53.684158 30814 862 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 60a46cf9-bfc9-49c1-b1c6-59f6147e8e5c 2020-03-01 02:23:53.70022 30815 1082 Product \N \N 4 User \N create ---\nsku: ACC-1082\nname: DIA-0061\ndescription: DIADEMAS PERLAS Y PIEDRA ROSA Y NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.66E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1082 fue creado. 187.149.78.168 73b498e3-96b0-49e0-b762-62cc1890172a 2020-03-01 02:24:36.70061 30816 1082 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001082'\n 2 \N 187.149.78.168 73b498e3-96b0-49e0-b762-62cc1890172a 2020-03-01 02:24:36.730883 30817 1748 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1082\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.78.168 73b498e3-96b0-49e0-b762-62cc1890172a 2020-03-01 02:24:36.761142 30818 274 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-31\namount: !ruby/object:BigDecimal 18:0.132E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.132E3\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-31 por $ 132.0 MXN creada. 187.149.78.168 98c44cee-19ac-4abf-87b9-65afb657be25 2020-03-01 02:24:43.185949 30819 1748 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.78.168 98c44cee-19ac-4abf-87b9-65afb657be25 2020-03-01 02:24:43.206248 30820 1083 Product \N \N 21 User \N create ---\nsku: ACC-1083\nname: ARE-0044\ndescription: Bohemian Star Tassel Geometric Fashion Earrings Pendientes Largos Simples\n Nhmd186053\nprice_base: !ruby/object:BigDecimal 18:0.7524E2\nprice_sale: !ruby/object:BigDecimal 18:0.229E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1083 fue creado. 189.186.107.100 0318a3b5-2165-4a36-909f-50f52d073193 2020-03-01 02:26:20.899851 30821 1083 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001083'\n 2 \N 189.186.107.100 0318a3b5-2165-4a36-909f-50f52d073193 2020-03-01 02:26:20.931635 30822 1749 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1083\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 0318a3b5-2165-4a36-909f-50f52d073193 2020-03-01 02:26:20.961177 30823 1084 Product \N \N 21 User \N create ---\nsku: ACC-1084\nname: ARE-0047\ndescription: "Pendientes De Cristal De Color Degradado De Moda Coreana Al Por Mayor\n Nhjj187283\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5868E2\nprice_sale: !ruby/object:BigDecimal 18:0.209E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE47.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1084 fue creado. 189.186.107.100 c38b253d-a990-4f8c-8e81-6e1187bc0454 2020-03-01 02:27:50.624188 30826 1085 Product \N \N 21 User \N create ---\nsku: ACC-1085\nname: ARE-0054\ndescription: "Pendientes De Aleación De Diamantes Con Lazo Pendientes Coreanos De\n Nueva Moda Pendientes Simples Salvajes Nhjq190714\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6556E2\nprice_sale: !ruby/object:BigDecimal 18:0.199E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE54.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1085 fue creado. 189.186.107.100 06532819-03bc-4902-9ab1-06f79f901c4a 2020-03-01 02:29:47.247753 30827 1085 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001085'\n 2 \N 189.186.107.100 06532819-03bc-4902-9ab1-06f79f901c4a 2020-03-01 02:29:47.27906 30828 1751 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1085\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 06532819-03bc-4902-9ab1-06f79f901c4a 2020-03-01 02:29:47.308303 30829 1086 Product \N \N 21 User \N create ---\nsku: ACC-1086\nname: ARE-0058\ndescription: "Aretes De Moda Color Del Arco Iris Rhinestone Candy Love Borla Pendientes\n Con Textura Asimétrico Mujeres Nhdo190053\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.12984E3\nprice_sale: !ruby/object:BigDecimal 18:0.339E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE58.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1086 fue creado. 189.186.107.100 e03a0ad9-454b-499f-9f17-8fa33706ccfb 2020-03-01 02:32:15.442592 30830 1086 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001086'\n 2 \N 189.186.107.100 e03a0ad9-454b-499f-9f17-8fa33706ccfb 2020-03-01 02:32:15.474791 30831 1752 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1086\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 e03a0ad9-454b-499f-9f17-8fa33706ccfb 2020-03-01 02:32:15.503275 30832 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-01 00:59:53.203642000 Z\n- &1 2020-03-01 02:05:27.777757000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-01 02:32:54.244897194 Z\nsign_in_count:\n- 100\n- 101\n 205 \N 187.149.78.168 02f51aec-978a-4ca9-b3b9-cb8eeed7fc4a 2020-03-01 02:32:54.251394 30833 8 User \N \N 8 User \N update ---\nunique_session_id:\n- hY7QqKinsiUmk_yN2YxU\n- bA_fRNPLMRMydvV6chK8\n 206 \N 187.149.78.168 02f51aec-978a-4ca9-b3b9-cb8eeed7fc4a 2020-03-01 02:32:54.266034 30834 2279 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 860\namount: !ruby/object:BigDecimal 18:0.429E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.429E3\nstatus: 0\ndate_sale: 2020-02-29\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-862\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 79fc5bc8-c1cf-48f7-97f7-be7dc85d1183 2020-03-01 02:34:04.182913 30835 1740 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.78.168 79fc5bc8-c1cf-48f7-97f7-be7dc85d1183 2020-03-01 02:34:04.22497 30836 1734 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.78.168 79fc5bc8-c1cf-48f7-97f7-be7dc85d1183 2020-03-01 02:34:04.275072 30837 2279 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 95b8086a-8925-4b49-85ce-6b6fa2376ce5 2020-03-01 02:34:08.927511 30838 3103 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 860\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.429E3\nmove_type: '1'\nsale_id: 2279\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-862\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.429E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-862 187.149.78.168 95b8086a-8925-4b49-85ce-6b6fa2376ce5 2020-03-01 02:34:08.950677 30839 1087 Product \N \N 21 User \N create ---\nsku: ACC-1087\nname: ARE-0056\ndescription: "Aretes Huecos Temperamento Love Heart Stud Earrings Nhqd189939\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.576E2\nprice_sale: !ruby/object:BigDecimal 18:0.129E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE56.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1087 fue creado. 189.186.107.100 5418ad72-87a9-472b-a91c-15d29b7193ab 2020-03-01 02:34:42.415643 30840 1087 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001087'\n 2 \N 189.186.107.100 5418ad72-87a9-472b-a91c-15d29b7193ab 2020-03-01 02:34:42.446776 30841 1753 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1087\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 5418ad72-87a9-472b-a91c-15d29b7193ab 2020-03-01 02:34:42.475788 30842 1088 Product \N \N 21 User \N create ---\nsku: ACC-1088\nname: ARE-0052\ndescription: "Aretes Para Mujer Salvajes De Personalidad De Moda Con Textura Simple\n Pendientes Largos De Amor Nhva186023\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5239E2\nprice_sale: !ruby/object:BigDecimal 18:0.169E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE52.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1088 fue creado. 189.186.107.100 feed53df-1635-403d-895b-1d4b07c92495 2020-03-01 02:36:11.032563 30843 1088 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001088'\n 2 \N 189.186.107.100 feed53df-1635-403d-895b-1d4b07c92495 2020-03-01 02:36:11.070155 30844 1754 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1088\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 feed53df-1635-403d-895b-1d4b07c92495 2020-03-01 02:36:11.106282 30845 881 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 860\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.4254E4\namount_out: !ruby/object:BigDecimal 18:0.12E4\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.35E4\ncash_fund: !ruby/object:BigDecimal 18:0.302E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3802E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.78.168 aa462f7c-48fc-413d-b0be-4e3029cf6179 2020-03-01 02:37:25.421794 30847 275 Purchase \N \N 21 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-32\namount: !ruby/object:BigDecimal 18:0.182465E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.182465E4\nobservations: ''\npurchase_date: 2020-02-29\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-32 por $ 1824.65 MXN creada. 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:38.659198 30848 1747 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:38.686678 30849 1749 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:38.7182 30850 1746 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:38.756731 30851 1750 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:38.784025 30852 1751 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:38.809206 30853 1752 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:38.840568 30854 1753 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:38.86961 30855 1754 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:38.900185 30856 1721 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:38.931213 30857 1723 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:38.961701 30858 1724 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:38.994996 30859 1726 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:39.024926 30860 1170 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:39.061826 30861 1729 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:39.096497 30862 1731 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:39.129322 30863 1732 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:39.157692 30864 1733 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:39.183667 30865 1739 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:39.211364 30866 1741 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:39.245947 30867 1742 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:39.278312 30868 1744 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:39.303684 30869 1745 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 bcea6120-bbf5-4b63-99d4-9bb7c37515f5 2020-03-01 02:38:39.330155 30870 882 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 861\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1699E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.823E3\nphysical_cash: !ruby/object:BigDecimal 18:0.823E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.107.100 41436809-2057-4fd1-9ce4-32ca1233d5b6 2020-03-01 03:01:07.2462 30871 861 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.107.100 41436809-2057-4fd1-9ce4-32ca1233d5b6 2020-03-01 03:01:07.26062 30872 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-01 01:05:41.911974000 Z\n- &1 2020-03-01 02:08:08.685218000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-01 19:19:12.956954114 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945774\n mask_addr: 4294967295\nsign_in_count:\n- 1450\n- 1451\n 2902 \N 200.68.180.46 fb56aff1-59b8-4b97-8ea1-c12695316c19 2020-03-01 19:19:12.995806 30873 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ae5Ut4ptBoxR9rmvVmxb\n- PyFZ7qrx_qJHBycZSFiw\n 2903 \N 200.68.180.46 fb56aff1-59b8-4b97-8ea1-c12695316c19 2020-03-01 19:19:13.028623 30874 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-28 17:16:23.934175000 Z\n- &1 2020-02-29 21:01:32.381571000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-01 19:36:20.291786131 Z\nsign_in_count:\n- 118\n- 119\n 238 \N 187.149.78.168 5a5e522e-4b10-4f9c-8cc3-f76376050cb9 2020-03-01 19:36:20.298278 30875 27 User \N \N 27 User \N update ---\nunique_session_id:\n- dBuZUj4ytXTXVSeVz7_a\n- 6zurwMrXhHFdLrkNg917\n 239 \N 187.149.78.168 5a5e522e-4b10-4f9c-8cc3-f76376050cb9 2020-03-01 19:36:20.314826 30876 863 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.302E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 302.0 187.149.78.168 730acf42-2375-46cc-ac87-d5b5270d07b0 2020-03-01 19:38:22.698144 30877 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-01 00:17:08.131834000 Z\n- &1 2020-03-01 01:07:14.404205000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-01 20:26:21.327059669 Z\nsign_in_count:\n- 168\n- 169\n 339 \N 189.186.107.100 bbf79d32-662c-48b0-a03b-d901a50314ee 2020-03-01 20:26:21.35752 30879 864 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.823E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 823.0 189.186.107.100 9c89b596-0be0-415c-b7e9-b4ff801a56b0 2020-03-01 20:26:38.159734 30880 2280 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 863\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.849E3\nstatus: 0\ndate_sale: 2020-03-01\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-863\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 fa0f4bf3-859d-42b8-af01-5b5790fde93a 2020-03-01 20:46:18.714957 30881 1650 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.78.168 fa0f4bf3-859d-42b8-af01-5b5790fde93a 2020-03-01 20:46:18.748269 30882 2280 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-863 cancelada. 187.149.78.168 351b5d69-23d2-4eda-8239-219ef0cb0573 2020-03-01 20:46:57.328614 30883 1650 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 187.149.78.168 351b5d69-23d2-4eda-8239-219ef0cb0573 2020-03-01 20:46:57.355506 30884 2281 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 863\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2020-03-01\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-864\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 324e6758-7ed9-4488-b3f1-b2512f563322 2020-03-01 21:57:12.905376 30885 801 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.78.168 324e6758-7ed9-4488-b3f1-b2512f563322 2020-03-01 21:57:12.95562 30886 2281 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 450b6812-0296-48a0-9f12-dc61c9c80bfd 2020-03-01 21:57:56.567097 30887 3104 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 863\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.649E3\nmove_type: '1'\nsale_id: 2281\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-864\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.351E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-864 187.149.78.168 450b6812-0296-48a0-9f12-dc61c9c80bfd 2020-03-01 21:57:56.601168 30888 3104 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 863\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.649E3\nmove_type: '1'\nsale_id: 2281\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-864\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.351E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.78.168 f90d7525-5e88-44db-84a9-7589556f20cc 2020-03-01 21:58:24.123947 30889 3105 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 863\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.649E3\nmove_type: '1'\nsale_id: 2281\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-864\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-864 187.149.78.168 7da60c04-a441-48cf-a9d0-89052d0ad8ba 2020-03-01 21:58:51.030467 30890 883 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 863\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.649E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.951E3\nphysical_cash: !ruby/object:BigDecimal 18:0.951E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.78.168 38331059-f711-49d8-bb01-8066a90d8f39 2020-03-01 22:01:04.803764 30891 863 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.78.168 38331059-f711-49d8-bb01-8066a90d8f39 2020-03-01 22:01:04.823684 30892 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-02-29 21:01:32.381571000 Z\n- &1 2020-03-01 19:36:20.291786000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-02 18:11:43.021692199 Z\nsign_in_count:\n- 119\n- 120\n 240 \N 187.149.78.168 c764f395-b77e-4d2b-9c21-d3947c3a3ef8 2020-03-02 18:11:43.051068 30893 27 User \N \N 27 User \N update ---\nunique_session_id:\n- 6zurwMrXhHFdLrkNg917\n- 3o4Rc1pLM2Ncy_Rq58G8\n 241 \N 187.149.78.168 c764f395-b77e-4d2b-9c21-d3947c3a3ef8 2020-03-02 18:11:43.076217 30894 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-29 00:07:05.104367000 Z\n- &1 2020-02-29 23:09:31.994728000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-02 18:28:11.155120108 Z\nsign_in_count:\n- 492\n- 493\n 989 \N 187.149.78.168 f82fdeaf-b0eb-42a2-86cb-a139dc79a954 2020-03-02 18:28:11.161242 30895 2 User \N \N 2 User \N update ---\nunique_session_id:\n- dLDsBS44yXDiiQdhbmp6\n- rnjQpjxGAPjUKmSzsZ-7\n 990 \N 187.149.78.168 f82fdeaf-b0eb-42a2-86cb-a139dc79a954 2020-03-02 18:28:11.178508 30896 865 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.84E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 840.0 187.149.78.168 2e0e6c21-c90e-4db7-a919-b8baac494233 2020-03-02 18:33:03.882801 30897 2282 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 865\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-03-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1131\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 895394c9-24cb-4866-a446-50efdd32c2aa 2020-03-02 18:46:47.434506 30898 656 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.78.168 895394c9-24cb-4866-a446-50efdd32c2aa 2020-03-02 18:46:47.471958 30899 2282 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 ee3ab0ee-0f00-45a6-98aa-21443975320a 2020-03-02 18:47:00.024794 30900 3106 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 865\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 2282\ncardnumber: 7401\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1131\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1131 187.149.78.168 ee3ab0ee-0f00-45a6-98aa-21443975320a 2020-03-02 18:47:00.058996 31009 871 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.98E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 980.0 187.149.87.30 330aea59-bc08-4ca8-8f27-73c27a076623 2020-03-04 22:35:30.21047 30901 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-02-22 23:27:07.826235000 Z\n- &1 2020-02-28 21:00:38.363171000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-02 18:51:07.996556176 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132013\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3361499151\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3361499151\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\nsign_in_count:\n- 165\n- 166\n 332 \N 187.149.78.168 b793ce2b-2ef2-4b0a-ab34-eda7f2b71b3b 2020-03-02 18:51:08.004555 30902 1 User \N \N 1 User \N update ---\nunique_session_id:\n- kAA1_wwpY118EBgMjwui\n- Tzhaxz6j-x4gyqxGuXFz\n 333 \N 187.149.78.168 b793ce2b-2ef2-4b0a-ab34-eda7f2b71b3b 2020-03-02 18:51:08.022961 30903 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-01 01:07:14.404205000 Z\n- &1 2020-03-01 20:26:21.327059000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-02 21:10:20.745797867 Z\nsign_in_count:\n- 169\n- 170\n 341 \N 189.186.107.100 9ce2ac25-0c40-4bda-b56d-7efc6997cdc5 2020-03-02 21:10:20.756835 30904 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 7mjsihvFAySsfGb_d2n_\n- CMNvrTz86t2hqmfa7FWK\n 342 \N 189.186.107.100 9ce2ac25-0c40-4bda-b56d-7efc6997cdc5 2020-03-02 21:10:20.781225 30905 3107 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 767\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 2077\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: MAMA\n 1 \N 189.186.107.100 1f35d10e-c403-44ed-921b-eb0d4429b051 2020-03-02 21:11:04.648987 30906 2077 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.107.100 1f35d10e-c403-44ed-921b-eb0d4429b051 2020-03-02 21:11:04.679686 30907 3107 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 767\n- \n 2 movimiento de efectivo por venta con folio PV3-V-249 189.186.107.100 1f35d10e-c403-44ed-921b-eb0d4429b051 2020-03-02 21:11:04.719178 30908 866 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.951E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 951.0 187.149.78.168 e786bf8f-a989-4cd8-9ef0-82c7ea9fbc50 2020-03-02 23:03:50.83443 30909 2283 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 866\namount: !ruby/object:BigDecimal 18:0.529E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.529E3\nstatus: 0\ndate_sale: 2020-03-02\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-865\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.78.168 8aad2ef6-b1e0-46d6-a647-f8685791e4e7 2020-03-02 23:04:22.014171 30910 1669 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.78.168 8aad2ef6-b1e0-46d6-a647-f8685791e4e7 2020-03-02 23:04:22.045019 30911 2283 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.78.168 2018e32d-4f7c-4d8f-ae4a-7fbb3ecf5a61 2020-03-02 23:04:43.56752 30912 3108 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 866\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.529E3\nmove_type: '1'\nsale_id: 2283\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-865\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.53E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-865 187.149.78.168 2018e32d-4f7c-4d8f-ae4a-7fbb3ecf5a61 2020-03-02 23:04:43.606146 30913 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-01 02:08:08.685218000 Z\n- &1 2020-03-01 19:19:12.956954000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-02 23:37:47.832046244 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945774\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945774\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126558\n mask_addr: 4294967295\nsign_in_count:\n- 1451\n- 1452\n 2904 \N 187.149.87.30 f1155421-0ba3-4e73-80dd-930a129593ff 2020-03-02 23:37:47.839963 30914 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PyFZ7qrx_qJHBycZSFiw\n- 1PdLeg3rQhJy-b2uMPn9\n 2905 \N 187.149.87.30 f1155421-0ba3-4e73-80dd-930a129593ff 2020-03-02 23:37:47.859799 30915 2284 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 864\namount: !ruby/object:BigDecimal 18:0.49052E3\ntax: !ruby/object:BigDecimal 18:0.7848E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2020-03-02\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-286\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.107.100 c9a1a817-3ccb-4663-8319-d19216720717 2020-03-02 23:42:02.571117 30916 1654 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.107.100 c9a1a817-3ccb-4663-8319-d19216720717 2020-03-02 23:42:02.606455 30917 2284 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.107.100 f4f231a7-7ee0-49cd-8ba5-5a30135a3c07 2020-03-02 23:42:15.297805 30918 3109 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 864\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.569E3\nmove_type: '1'\nsale_id: 2284\ncardnumber: 1289\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-286\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-286 189.186.107.100 f4f231a7-7ee0-49cd-8ba5-5a30135a3c07 2020-03-02 23:42:15.333544 30919 1089 Product \N \N 4 User \N create ---\nsku: ACC-1089\nname: DIA-0070\ndescription: DIADEMA TELA RAYAS COLORES\nprice_base: !ruby/object:BigDecimal 18:0.619E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1089 fue creado. 187.149.87.30 994f821b-8eab-42c0-be8e-33a33d337f3d 2020-03-02 23:44:42.956466 30920 1089 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001089'\n 2 \N 187.149.87.30 994f821b-8eab-42c0-be8e-33a33d337f3d 2020-03-02 23:44:42.991966 30921 1755 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1089\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.87.30 994f821b-8eab-42c0-be8e-33a33d337f3d 2020-03-02 23:44:43.028854 31034 872 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.107.100 40ecd597-a70d-44ae-a35e-50daac6b7938 2020-03-05 02:57:09.762398 46489 1466 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1466'\n is_parent: false\n sku: BOL-1466\n name: 1BLCV20263\n description: 'BOLSO LETRAS '\n price_base: '849.5'\n price_sale: '1699.0'\n img_product: 63ACB4CD-D688-4050-A3BE-A7B69572B543.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170818444'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-29 20:45:18.580004'\n updated_at: &12 2020-11-21 19:50:52.232853772 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1466'\n sku: BOL-1466\n name: 1BLCV20263\n description: 'BOLSO LETRAS '\n price_base: '849.50'\n price_sale: '1699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-29 20:45:18.580004'\n updated_at: '2020-10-29 20:45:18.580004'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170818444'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1466'\n type: *3\n value: 1466\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1466\n type: *7\n value: BOL-1466\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCV20263\n type: *8\n value: 1BLCV20263\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'BOLSO LETRAS '\n type: *6\n value: 'BOLSO LETRAS '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '849.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1699E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 63ACB4CD-D688-4050-A3BE-A7B69572B543.jpeg\n type: *2\n value: 63ACB4CD-D688-4050-A3BE-A7B69572B543.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170818444'\n type: *2\n value: '7509170818444'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-29 20:45:18.580004'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 63ACB4CD-D688-4050-A3BE-A7B69572B543.jpeg\n 2 El producto BOL-1466 fue modificado. 189.186.1.223 92406536-8c13-4891-b2fc-df8ea07f42ed 2020-11-21 19:50:52.289559 30922 276 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-72\namount: !ruby/object:BigDecimal 18:0.1238E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1238E3\nobservations: ''\npurchase_date: 2020-03-02\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-72 por $ 123.8 MXN creada. 187.149.87.30 ca64b499-e00c-4b9a-b28a-278ae1a03587 2020-03-02 23:44:47.033545 30923 1755 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.87.30 ca64b499-e00c-4b9a-b28a-278ae1a03587 2020-03-02 23:44:47.059228 30924 1090 Product \N \N 4 User \N create ---\nsku: ACC-1090\nname: DIA-0071\ndescription: DIADEMA ROSA Y NEGRA CON PERLAS\nprice_base: !ruby/object:BigDecimal 18:0.639E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1090 fue creado. 187.149.87.30 05ac152d-f942-4d59-95f8-45b322e98459 2020-03-02 23:50:39.712226 30925 1090 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001090'\n 2 \N 187.149.87.30 05ac152d-f942-4d59-95f8-45b322e98459 2020-03-02 23:50:39.743461 30926 1756 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1090\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.87.30 05ac152d-f942-4d59-95f8-45b322e98459 2020-03-02 23:50:39.77434 30927 277 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-122\namount: !ruby/object:BigDecimal 18:0.1278E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1278E3\nobservations: ''\npurchase_date: 2020-03-02\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-122 por $ 127.8 MXN creada. 187.149.87.30 4e446747-b9b4-4e1d-badf-9807ed222bd6 2020-03-02 23:50:45.001502 30928 1756 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.87.30 4e446747-b9b4-4e1d-badf-9807ed222bd6 2020-03-02 23:50:45.047119 30929 1091 Product \N \N 4 User \N create ---\nsku: ACC-1091\nname: DIA-0072\ndescription: DIADEMA DELGADA NEGRA Y BEIGE CON PIEDRA\nprice_base: !ruby/object:BigDecimal 18:0.18E3\nprice_sale: !ruby/object:BigDecimal 18:0.389E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1091 fue creado. 187.149.87.30 0887f924-6ed3-4b8f-ad10-cf5de492a7e2 2020-03-02 23:55:58.754872 30930 1091 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001091'\n 2 \N 187.149.87.30 0887f924-6ed3-4b8f-ad10-cf5de492a7e2 2020-03-02 23:55:58.801958 30931 1757 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1091\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.87.30 0887f924-6ed3-4b8f-ad10-cf5de492a7e2 2020-03-02 23:55:58.844916 30932 278 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-123\namount: !ruby/object:BigDecimal 18:0.36E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.36E3\nobservations: ''\npurchase_date: 2020-03-02\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-123 por $ 360.0 MXN creada. 187.149.87.30 11900dd2-dd22-4740-bb03-7a67c9284dc1 2020-03-02 23:56:02.807779 30933 1757 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.87.30 11900dd2-dd22-4740-bb03-7a67c9284dc1 2020-03-02 23:56:02.840758 30934 1092 Product \N \N 4 User \N create ---\nsku: ACC-1092\nname: DIA-0073\ndescription: DIADEMA PERLAS BLANCA Y NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.51E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1092 fue creado. 187.149.87.30 89d6a7d7-4c2f-4ba8-a17b-6a9e4d4bc2fb 2020-03-03 00:00:32.16253 30935 1092 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001092'\n 2 \N 187.149.87.30 89d6a7d7-4c2f-4ba8-a17b-6a9e4d4bc2fb 2020-03-03 00:00:32.193205 30936 1758 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1092\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.87.30 89d6a7d7-4c2f-4ba8-a17b-6a9e4d4bc2fb 2020-03-03 00:00:32.223248 30937 279 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-73\namount: !ruby/object:BigDecimal 18:0.102E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.102E3\nobservations: ''\npurchase_date: 2020-03-02\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-73 por $ 102.0 MXN creada. 187.149.87.30 7710460a-1e5a-405b-9ba0-bd1444b05976 2020-03-03 00:00:37.646601 30938 1758 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.87.30 7710460a-1e5a-405b-9ba0-bd1444b05976 2020-03-03 00:00:37.680878 30939 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-01 19:19:12.956954000 Z\n- &1 2020-03-02 23:37:47.832046000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-03 01:45:00.058772511 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945774\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126558\n mask_addr: 4294967295\nsign_in_count:\n- 1452\n- 1453\n 2906 \N 187.149.87.30 9d85e2d5-7a80-4dbc-a60d-7678917ddec0 2020-03-03 01:45:00.066512 30940 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1PdLeg3rQhJy-b2uMPn9\n- 3TJJM9uke9QeymziiA5R\n 2907 \N 187.149.87.30 9d85e2d5-7a80-4dbc-a60d-7678917ddec0 2020-03-03 01:45:00.087775 30941 2285 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 865\namount: !ruby/object:BigDecimal 18:0.769E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.769E3\nstatus: 0\ndate_sale: 2020-03-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1132\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.87.30 0dae148c-88c9-4b49-8b8b-c9702bdffe3d 2020-03-03 02:12:34.613071 30942 1632 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.87.30 0dae148c-88c9-4b49-8b8b-c9702bdffe3d 2020-03-03 02:12:34.648655 30943 2285 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.87.30 7d0aa821-f142-4f8a-a396-aad27131b052 2020-03-03 02:13:55.324688 30944 3110 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 865\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.769E3\nmove_type: '1'\nsale_id: 2285\ncardnumber: 916\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1132\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1132 187.149.87.30 7d0aa821-f142-4f8a-a396-aad27131b052 2020-03-03 02:13:55.378023 30945 884 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 865\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1568E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.84E3\nphysical_cash: !ruby/object:BigDecimal 18:0.84E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.87.30 e0bd48f0-7d0d-4df8-9707-fe5805473c6c 2020-03-03 02:34:57.669841 30946 865 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.87.30 e0bd48f0-7d0d-4df8-9707-fe5805473c6c 2020-03-03 02:34:57.684471 30947 885 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 865\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1568E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.84E3\nphysical_cash: !ruby/object:BigDecimal 18:0.84E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.87.30 522858ed-8a24-49f2-9fd0-60860ae25770 2020-03-03 02:34:57.991644 30948 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-03-01 19:36:20.291786000 Z\n- &1 2020-03-02 18:11:43.021692000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-03 02:37:13.564027629 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126558\n mask_addr: 4294967295\nsign_in_count:\n- 120\n- 121\n 242 \N 187.149.87.30 6d60eac7-cca8-4c93-9eea-004c8cacc12a 2020-03-03 02:37:13.573305 30949 27 User \N \N 27 User \N update ---\nunique_session_id:\n- 3o4Rc1pLM2Ncy_Rq58G8\n- qzTp9iALTqVpYJM5wbvQ\n 243 \N 187.149.87.30 6d60eac7-cca8-4c93-9eea-004c8cacc12a 2020-03-03 02:37:13.593393 30950 886 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 866\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.529E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.148E4\nphysical_cash: !ruby/object:BigDecimal 18:0.148E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.87.30 0413860e-90b6-4011-87df-94dc00c127f4 2020-03-03 02:39:05.439515 30951 866 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.87.30 0413860e-90b6-4011-87df-94dc00c127f4 2020-03-03 02:39:05.458219 30952 887 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 864\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.569E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.823E3\nphysical_cash: !ruby/object:BigDecimal 18:0.823E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.107.100 bbf41205-2a75-4cae-ac1f-c0e003a75182 2020-03-03 03:01:33.862824 30953 864 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.107.100 bbf41205-2a75-4cae-ac1f-c0e003a75182 2020-03-03 03:01:33.880231 30954 888 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 864\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.569E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.823E3\nphysical_cash: !ruby/object:BigDecimal 18:0.823E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.107.100 f9abf485-25d8-4469-9bb3-659675401999 2020-03-03 03:01:34.053968 30955 867 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.823E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 823.0 189.186.107.100 659444ee-5eb4-4ab7-b2d5-a474aa190797 2020-03-03 17:13:13.237569 30956 3111 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 867\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 2248\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-281 189.186.107.100 b650f8fa-0c83-49fa-b7e4-71a644a026c3 2020-03-03 17:13:27.905407 30957 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-02-29 23:09:31.994728000 Z\n- &1 2020-03-02 18:28:11.155120000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-03 19:44:45.258795426 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126558\n mask_addr: 4294967295\nsign_in_count:\n- 493\n- 494\n 991 \N 187.149.87.30 f379de3c-5774-4ff2-8049-75781515ed1b 2020-03-03 19:44:45.267552 30958 2 User \N \N 2 User \N update ---\nunique_session_id:\n- rnjQpjxGAPjUKmSzsZ-7\n- jFmqkTnkuUmsoKKGsKde\n 992 \N 187.149.87.30 f379de3c-5774-4ff2-8049-75781515ed1b 2020-03-03 19:44:45.28737 30959 868 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.84E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 840.0 187.149.87.30 abf8117e-7195-4491-8b57-a46d2b7458f5 2020-03-03 19:45:04.396697 30960 294 Customer \N \N 2 User \N create ---\nnick_name: CRISTINA ESEBERRE\nphone: "(667) 461-8228"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CRISTINA ESEBERRE fue registrado. 187.149.87.30 f49ca529-fb76-4c92-b299-c0758d3c8fad 2020-03-03 19:52:17.095566 30961 2286 Sale \N \N 2 User \N create ---\ncustomer_id: 294\nuser_id: 2\nopen_cash_register_id: 868\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.849E3\nstatus: 0\ndate_sale: 2020-03-03\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1133\nexpiration_date: 2020-04-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.87.30 f00156f9-1393-4254-b949-5fe57addd1af 2020-03-03 19:52:27.930891 30962 1691 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.87.30 f00156f9-1393-4254-b949-5fe57addd1af 2020-03-03 19:52:27.957957 30963 3112 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 868\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 2286\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1133\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1133 187.149.87.30 f659c2f8-2f40-4b63-b8db-acb33057139e 2020-03-03 19:52:43.91578 30965 3113 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 690\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1795\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CREDITO SAM\n 1 \N 187.149.87.30 f88ee490-f3ef-4291-bc3f-7a2b95046cad 2020-03-03 20:00:30.987463 30966 3113 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 690\n- 868\n 2 movimiento de efectivo por venta con folio PV1-V-901 187.149.87.30 f88ee490-f3ef-4291-bc3f-7a2b95046cad 2020-03-03 20:00:31.029699 30967 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-03-02 18:11:43.021692000 Z\n- &1 2020-03-03 02:37:13.564027000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-03 20:22:04.908078978 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126558\n mask_addr: 4294967295\nsign_in_count:\n- 121\n- 122\n 244 \N 187.149.87.30 d668de16-489f-4cc9-9e16-1ef317c91779 2020-03-03 20:22:04.915556 30968 27 User \N \N 27 User \N update ---\nunique_session_id:\n- qzTp9iALTqVpYJM5wbvQ\n- zZrrm3zZgLrukGmW1cme\n 245 \N 187.149.87.30 d668de16-489f-4cc9-9e16-1ef317c91779 2020-03-03 20:22:04.931823 30969 2287 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 868\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.849E3\nstatus: 0\ndate_sale: 2020-03-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1134\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.87.30 350757c3-f588-49b2-99ce-9ef848d49ff8 2020-03-03 20:26:42.875882 30970 1691 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.87.30 350757c3-f588-49b2-99ce-9ef848d49ff8 2020-03-03 20:26:42.904343 30971 2287 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.87.30 81c73942-6cb4-4c10-8bf7-d1cb5d37848b 2020-03-03 20:27:05.511789 30972 3114 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 868\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.849E3\nmove_type: '1'\nsale_id: 2287\ncardnumber: 7243\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1134\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1134 187.149.87.30 81c73942-6cb4-4c10-8bf7-d1cb5d37848b 2020-03-03 20:27:05.536785 30973 296 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 868\nquantity: !ruby/object:BigDecimal 18:0.55E3\nstatus: 1\nobservations: JAPAC SUO Y BYSUO\nexpense_date: 2020-03-03\nexpense_code: PV1-E-206\n 1 Egreso por 550.0 registrado 187.149.87.30 81ad74bb-13d5-4d27-88e5-abfb619bb17e 2020-03-03 21:24:35.96796 30974 3115 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 868\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.55E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 296\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.87.30 81ad74bb-13d5-4d27-88e5-abfb619bb17e 2020-03-03 21:24:35.996515 30975 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-02 23:37:47.832046000 Z\n- &1 2020-03-03 01:45:00.058772000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-03 22:50:50.703286188 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126558\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945721\n mask_addr: 4294967295\nsign_in_count:\n- 1453\n- 1454\n 2908 \N 200.68.179.249 4606bcbd-ddc4-4709-ad2a-af797ad47f4b 2020-03-03 22:50:50.710841 30976 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3TJJM9uke9QeymziiA5R\n- zgTBLDWuBTxukjYuxZVv\n 2909 \N 200.68.179.249 4606bcbd-ddc4-4709-ad2a-af797ad47f4b 2020-03-03 22:50:50.733754 30977 2288 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 868\namount: !ruby/object:BigDecimal 18:0.78521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.699E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-03-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1135\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.87.30 5c7cbd05-dace-477e-ae35-a1a421210926 2020-03-04 00:04:02.784511 30978 203 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 187.149.87.30 5c7cbd05-dace-477e-ae35-a1a421210926 2020-03-04 00:04:02.832813 30979 2288 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.87.30 440ac7d2-5ab1-4bf8-8662-f27601cf3a28 2020-03-04 00:04:31.539708 30980 3116 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 868\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2288\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1135\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1135 187.149.87.30 440ac7d2-5ab1-4bf8-8662-f27601cf3a28 2020-03-04 00:04:31.567403 30981 2289 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 868\namount: !ruby/object:BigDecimal 18:0.78521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.699E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-03-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1136\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.87.30 b699f2b6-12a8-4a7f-a88b-9290944bed6d 2020-03-04 00:28:14.712878 30982 203 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 187.149.87.30 b699f2b6-12a8-4a7f-a88b-9290944bed6d 2020-03-04 00:28:14.7429 30983 2289 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.87.30 c794fa39-167c-4d43-a470-a51ff4631a00 2020-03-04 00:28:56.287356 30984 3117 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 868\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2289\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1136\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1136 187.149.87.30 c794fa39-167c-4d43-a470-a51ff4631a00 2020-03-04 00:28:56.31206 30985 869 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.148E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1480.0 187.149.87.30 ad87cfe3-3c83-4a50-ba62-9667e4e63d16 2020-03-04 02:23:48.185604 31103 1753 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.107.100 30ed0b93-b239-4998-a46e-4b3a1fb95fae 2020-03-06 22:05:57.234531 30986 889 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 868\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1799E4\namount_out: !ruby/object:BigDecimal 18:0.55E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.74E3\nphysical_cash: !ruby/object:BigDecimal 18:0.74E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.87.30 cd1ec22b-3680-47e4-b0c6-fa6ecb9d24a9 2020-03-04 02:25:57.430997 30987 868 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.87.30 cd1ec22b-3680-47e4-b0c6-fa6ecb9d24a9 2020-03-04 02:25:57.445478 30988 890 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 869\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.98E3\nphysical_cash: !ruby/object:BigDecimal 18:0.148E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.87.30 8adf3836-38e8-4b32-af36-4ddf352b9346 2020-03-04 02:30:08.366179 30989 869 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.87.30 8adf3836-38e8-4b32-af36-4ddf352b9346 2020-03-04 02:30:08.381724 30990 297 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 867\nquantity: !ruby/object:BigDecimal 18:0.4E3\nstatus: 1\nobservations: DANIELA\nexpense_date: 2020-03-03\nexpense_code: PV3-E-31\n 1 Egreso por 400.0 registrado 189.186.107.100 15c303cc-eb2a-4632-b9d0-91984fc22f81 2020-03-04 03:05:53.05735 30991 3118 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 867\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 297\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.107.100 15c303cc-eb2a-4632-b9d0-91984fc22f81 2020-03-04 03:05:53.081639 30992 891 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 867\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1E3\namount_out: !ruby/object:BigDecimal 18:0.4E3\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.523E3\nphysical_cash: !ruby/object:BigDecimal 18:0.523E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.107.100 d824e5c8-dd70-404f-8e75-997fd5bb1a52 2020-03-04 03:06:59.61383 30993 867 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.107.100 d824e5c8-dd70-404f-8e75-997fd5bb1a52 2020-03-04 03:06:59.627498 30994 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-01 20:26:21.327059000 Z\n- &1 2020-03-02 21:10:20.745797000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-04 17:44:37.237562544 Z\nsign_in_count:\n- 170\n- 171\n 343 \N 189.186.107.100 6e8e8049-7a87-4c0f-9528-9c1bca9bf5d2 2020-03-04 17:44:37.26731 30995 21 User \N \N 21 User \N update ---\nunique_session_id:\n- CMNvrTz86t2hqmfa7FWK\n- oecxMZSc_vpRW8Tg5pbr\n 344 \N 189.186.107.100 6e8e8049-7a87-4c0f-9528-9c1bca9bf5d2 2020-03-04 17:44:37.289457 30996 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-02 18:28:11.155120000 Z\n- &1 2020-03-03 19:44:45.258795000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-04 21:55:49.816520294 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126558\n mask_addr: 4294967295\nsign_in_count:\n- 494\n- 495\n 993 \N 187.149.87.30 b2c2230d-e8d0-44c7-9753-5d5fff9af522 2020-03-04 21:55:49.824007 30997 2 User \N \N 2 User \N update ---\nunique_session_id:\n- jFmqkTnkuUmsoKKGsKde\n- SUqdEQx65XsdLVa4_rjf\n 994 \N 187.149.87.30 b2c2230d-e8d0-44c7-9753-5d5fff9af522 2020-03-04 21:55:49.841912 30998 870 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.74E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 740.0 187.149.87.30 21434f1d-75db-4f54-89f2-ef1b28e84a14 2020-03-04 21:56:13.449631 30999 2290 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 870\namount: !ruby/object:BigDecimal 18:0.219283E4\ntax: !ruby/object:BigDecimal 18:0.5517E2\ndiscount: !ruby/object:BigDecimal 18:0.1848E4\ntotal: !ruby/object:BigDecimal 18:0.4E3\nstatus: 0\ndate_sale: 2020-03-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1137\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.87.30 30d7c92a-87ea-4e07-a750-13a214524bac 2020-03-04 21:58:57.556721 31000 213 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.87.30 30d7c92a-87ea-4e07-a750-13a214524bac 2020-03-04 21:58:57.591825 31001 173 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.87.30 30d7c92a-87ea-4e07-a750-13a214524bac 2020-03-04 21:58:57.629268 31002 222 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.87.30 30d7c92a-87ea-4e07-a750-13a214524bac 2020-03-04 21:58:57.657198 31003 2290 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.87.30 5c8e0cfc-bad1-4cb8-8775-83d257d3fa8c 2020-03-04 21:59:05.800731 31004 3119 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 870\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 2290\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1137\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1137 187.149.87.30 5c8e0cfc-bad1-4cb8-8775-83d257d3fa8c 2020-03-04 21:59:05.825496 31005 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-03 01:45:00.058772000 Z\n- &1 2020-03-03 22:50:50.703286000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-04 22:02:09.114048332 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126558\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945721\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945721\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138250\n mask_addr: 4294967295\nsign_in_count:\n- 1454\n- 1455\n 2910 \N 189.186.213.202 23a60a02-fae8-4183-9977-69d51b1915c9 2020-03-04 22:02:09.122318 31006 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zgTBLDWuBTxukjYuxZVv\n- Nr-9e4uka3vUyH_ta6Kn\n 2911 \N 189.186.213.202 23a60a02-fae8-4183-9977-69d51b1915c9 2020-03-04 22:02:09.14016 31007 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-03-03 02:37:13.564027000 Z\n- &1 2020-03-03 20:22:04.908078000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-04 22:35:09.877833125 Z\nsign_in_count:\n- 122\n- 123\n 246 \N 187.149.87.30 64fe896a-3d96-42de-98bb-94f62f555586 2020-03-04 22:35:09.883906 31008 27 User \N \N 27 User \N update ---\nunique_session_id:\n- zZrrm3zZgLrukGmW1cme\n- eN2h1Qs7sfY1aRevKegN\n 247 \N 187.149.87.30 64fe896a-3d96-42de-98bb-94f62f555586 2020-03-04 22:35:09.898469 31104 1746 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.107.100 30ed0b93-b239-4998-a46e-4b3a1fb95fae 2020-03-06 22:05:57.268721 31010 2291 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 871\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-03-04\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-866\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.87.30 9aba44b8-22f5-4e92-8c76-a9ca52d0017c 2020-03-04 22:36:17.286554 31011 1673 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.87.30 9aba44b8-22f5-4e92-8c76-a9ca52d0017c 2020-03-04 22:36:17.319718 31012 2291 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.87.30 1e203faa-c1c3-4925-bb4c-8655c0da50db 2020-03-04 22:36:59.205507 31013 3120 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 871\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 2291\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-866\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-866 187.149.87.30 1e203faa-c1c3-4925-bb4c-8655c0da50db 2020-03-04 22:36:59.229945 31014 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-03 22:50:50.703286000 Z\n- &1 2020-03-04 22:02:09.114048000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-04 23:59:38.590784548 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945721\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138250\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138250\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 1455\n- 1456\n 2912 \N 189.186.107.100 8e6746f3-7217-4c78-85fa-e0344be3c25b 2020-03-04 23:59:38.598631 31015 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Nr-9e4uka3vUyH_ta6Kn\n- zp8jizAmyWc5sfpPK4SK\n 2913 \N 189.186.107.100 8e6746f3-7217-4c78-85fa-e0344be3c25b 2020-03-04 23:59:38.619228 31016 1056 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.279E3\n- !ruby/object:BigDecimal 18:0.179E3\n 3 El producto ACC-1056 fue modificado. 189.186.107.100 797e9e06-292e-4c0e-9760-39488f70cc1c 2020-03-05 00:00:10.997414 31017 1061 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.269E3\n- !ruby/object:BigDecimal 18:0.169E3\n 3 El producto ACC-1061 fue modificado. 189.186.107.100 ebfc294a-07d2-497d-9cf5-871fd6e95c8c 2020-03-05 00:00:27.491144 31018 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-02 21:10:20.745797000 Z\n- &1 2020-03-04 17:44:37.237562000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-05 00:03:14.838387706 Z\nsign_in_count:\n- 171\n- 172\n 345 \N 189.186.107.100 44f6a5e1-dde2-4d96-a69b-d67c31f72a74 2020-03-05 00:03:14.846721 31019 21 User \N \N 21 User \N update ---\nunique_session_id:\n- oecxMZSc_vpRW8Tg5pbr\n- pwxtWUZGy72zrZq5Tysa\n 346 \N 189.186.107.100 44f6a5e1-dde2-4d96-a69b-d67c31f72a74 2020-03-05 00:03:14.867683 31020 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-04 22:02:09.114048000 Z\n- &1 2020-03-04 23:59:38.590784000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-05 00:55:27.150966360 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138250\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 1456\n- 1457\n 2914 \N 189.186.107.100 bc9d408e-9ee4-4c55-ba5d-f803cd769a80 2020-03-05 00:55:27.157691 31021 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zp8jizAmyWc5sfpPK4SK\n- JGqEKxtgkLbaE6XyLUZy\n 2915 \N 189.186.107.100 bc9d408e-9ee4-4c55-ba5d-f803cd769a80 2020-03-05 00:55:27.174993 31022 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-04 17:44:37.237562000 Z\n- &1 2020-03-05 00:03:14.838387000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-05 00:57:37.882603777 Z\nsign_in_count:\n- 172\n- 173\n 347 \N 189.186.107.100 73d9f515-7ee8-403d-be7c-dce44599c4e3 2020-03-05 00:57:37.888667 31023 21 User \N \N 21 User \N update ---\nunique_session_id:\n- pwxtWUZGy72zrZq5Tysa\n- HHwyzsqzTmt54yHjkGNk\n 348 \N 189.186.107.100 73d9f515-7ee8-403d-be7c-dce44599c4e3 2020-03-05 00:57:37.903283 31024 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-04 23:59:38.590784000 Z\n- &1 2020-03-05 00:55:27.150966000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-05 01:20:01.773035771 Z\nsign_in_count:\n- 1457\n- 1458\n 2916 \N 189.186.107.100 55d05d05-ca07-4bd0-96a4-f7f54a86077a 2020-03-05 01:20:01.779118 31025 4 User \N \N 4 User \N update ---\nunique_session_id:\n- JGqEKxtgkLbaE6XyLUZy\n- WEytXP3_QJewEhGpG6Te\n 2917 \N 189.186.107.100 55d05d05-ca07-4bd0-96a4-f7f54a86077a 2020-03-05 01:20:01.795739 31026 892 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 870\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.2E3\ncash_fund: !ruby/object:BigDecimal 18:0.94E3\nphysical_cash: !ruby/object:BigDecimal 18:0.114E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.113.188 d7e55bd2-1d66-4dca-b489-816dc601cbd6 2020-03-05 02:16:29.979566 31027 870 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.113.188 d7e55bd2-1d66-4dca-b489-816dc601cbd6 2020-03-05 02:16:29.995736 31028 893 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 871\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.599E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.579E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1579E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.113.188 2ad6081b-2b52-4bfe-b2f7-6061d93ace20 2020-03-05 02:30:04.947717 31029 871 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.113.188 2ad6081b-2b52-4bfe-b2f7-6061d93ace20 2020-03-05 02:30:04.96289 31030 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-05 00:03:14.838387000 Z\n- &1 2020-03-05 00:57:37.882603000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-05 02:55:29.132057991 Z\nsign_in_count:\n- 173\n- 174\n 349 \N 189.186.107.100 ede4d85e-d83a-4f97-9413-26202e182d9d 2020-03-05 02:55:29.138994 31031 21 User \N \N 21 User \N update ---\nunique_session_id:\n- HHwyzsqzTmt54yHjkGNk\n- wvptuiWoGwLoZkAyD2Z5\n 350 \N 189.186.107.100 ede4d85e-d83a-4f97-9413-26202e182d9d 2020-03-05 02:55:29.157646 31032 872 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.523E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 523.0 189.186.107.100 c4fa9ba0-1751-42ff-b03c-f3d5471ab302 2020-03-05 02:56:01.223734 31033 894 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 872\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.523E3\nphysical_cash: !ruby/object:BigDecimal 18:0.523E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.107.100 40ecd597-a70d-44ae-a35e-50daac6b7938 2020-03-05 02:57:09.748842 31035 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-05 00:55:27.150966000 Z\n- &1 2020-03-05 01:20:01.773035000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-05 03:53:25.751854679 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138250\n mask_addr: 4294967295\nsign_in_count:\n- 1458\n- 1459\n 2918 \N 189.186.213.202 8ee59cab-c52d-4651-b7c8-47560ba03041 2020-03-05 03:53:25.759729 31036 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WEytXP3_QJewEhGpG6Te\n- r4nyQnBRC3qLfDpw6fJe\n 2919 \N 189.186.213.202 8ee59cab-c52d-4651-b7c8-47560ba03041 2020-03-05 03:53:25.781894 31037 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-03-03 20:22:04.908078000 Z\n- &1 2020-03-04 22:35:09.877833000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-05 18:11:28.187508472 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126558\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\nsign_in_count:\n- 123\n- 124\n 248 \N 187.149.43.80 74e6462b-a445-4c0d-b679-1dbc84bd38a8 2020-03-05 18:11:28.219216 31038 27 User \N \N 27 User \N update ---\nunique_session_id:\n- eN2h1Qs7sfY1aRevKegN\n- swcwRYR9ZJXwKFSz9MdK\n 249 \N 187.149.43.80 74e6462b-a445-4c0d-b679-1dbc84bd38a8 2020-03-05 18:11:28.245655 31039 873 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.579E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 579.0 187.149.43.80 bdb6a337-d262-4e97-a140-16b3a38ba324 2020-03-05 18:11:42.63689 31040 2292 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 873\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.849E3\nstatus: 0\ndate_sale: 2020-03-05\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-867\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 391917bd-ceee-43f1-8e1e-2e0b170cd06d 2020-03-05 18:12:08.155126 31041 1650 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.43.80 391917bd-ceee-43f1-8e1e-2e0b170cd06d 2020-03-05 18:12:08.19479 31042 2292 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.80 40901810-3946-4b4b-a74c-525344be07ba 2020-03-05 18:12:30.414305 31043 3121 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 873\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.849E3\nmove_type: '1'\nsale_id: 2292\ncardnumber: 654\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-867\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-867 187.149.43.80 40901810-3946-4b4b-a74c-525344be07ba 2020-03-05 18:12:30.440889 31044 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-05 01:20:01.773035000 Z\n- &1 2020-03-05 03:53:25.751854000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-05 18:13:22.955964715 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138250\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138250\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 1459\n- 1460\n 2920 \N 189.186.107.100 d6b9f1e1-9ee2-4a9a-8c24-8546ad076f12 2020-03-05 18:13:22.966368 31045 4 User \N \N 4 User \N update ---\nunique_session_id:\n- r4nyQnBRC3qLfDpw6fJe\n- PDUnt8LYveWhRT-N1toA\n 2921 \N 189.186.107.100 d6b9f1e1-9ee2-4a9a-8c24-8546ad076f12 2020-03-05 18:13:22.990888 31046 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-03 19:44:45.258795000 Z\n- &1 2020-03-04 21:55:49.816520000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-05 19:31:22.061417291 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126558\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\nsign_in_count:\n- 495\n- 496\n 995 \N 187.149.43.80 66d59a69-2e72-4767-8cc9-c9ea5c240351 2020-03-05 19:31:22.068996 31047 2 User \N \N 2 User \N update ---\nunique_session_id:\n- SUqdEQx65XsdLVa4_rjf\n- S_t7oG61XmFt2F5ssUiY\n 996 \N 187.149.43.80 66d59a69-2e72-4767-8cc9-c9ea5c240351 2020-03-05 19:31:22.093577 31048 874 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.94E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 940.0 187.149.43.80 ebcd6abd-eac4-40c4-8cac-fdc6bc930077 2020-03-05 19:31:40.985377 31049 295 Customer \N \N 2 User \N create ---\nnick_name: ESTHER TIRADO\nphone: "(667) 340-5311"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ESTHER TIRADO fue registrado. 187.149.43.80 1ed1c921-1323-4693-801c-b7280de7dbec 2020-03-05 19:32:12.516287 31050 2293 Sale \N \N 2 User \N create ---\ncustomer_id: 295\nuser_id: 2\nopen_cash_register_id: 874\namount: !ruby/object:BigDecimal 18:0.949E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.949E3\nstatus: 0\ndate_sale: 2020-03-05\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1138\nexpiration_date: 2020-04-09\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 7466f05c-c858-4d95-968a-509ead2874e9 2020-03-05 19:32:25.66686 31051 1410 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 13 \N 187.149.43.80 7466f05c-c858-4d95-968a-509ead2874e9 2020-03-05 19:32:25.710525 31052 3122 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 874\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2293\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1138\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1138 187.149.43.80 46a774b6-2119-49a8-97ca-614b484045b8 2020-03-05 19:32:32.938759 31053 2293 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.43.80 50ce5b87-8dcb-4eb9-a3a8-3f35f6cf2981 2020-03-05 19:32:34.383168 31054 2294 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 873\namount: !ruby/object:BigDecimal 18:0.339E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.339E3\nstatus: 0\ndate_sale: 2020-03-05\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-868\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 17cb5c35-5a02-4801-82bc-62a38a8e7aad 2020-03-05 22:18:39.026856 31055 1697 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.43.80 17cb5c35-5a02-4801-82bc-62a38a8e7aad 2020-03-05 22:18:39.055309 31056 2294 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.80 ac9b4056-40bd-4a1d-a798-299edf87df56 2020-03-05 22:18:47.507969 31105 1750 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.107.100 30ed0b93-b239-4998-a46e-4b3a1fb95fae 2020-03-06 22:05:57.300721 31057 3123 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 873\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.339E3\nmove_type: '1'\nsale_id: 2294\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-868\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.161E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-868 187.149.43.80 ac9b4056-40bd-4a1d-a798-299edf87df56 2020-03-05 22:18:47.532962 31058 895 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 874\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.114E4\nphysical_cash: !ruby/object:BigDecimal 18:0.114E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.43.80 c78d908e-cd9d-49b5-99b1-dcf0db403d12 2020-03-06 02:25:48.552929 31059 874 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.43.80 c78d908e-cd9d-49b5-99b1-dcf0db403d12 2020-03-06 02:25:48.572208 31060 896 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 873\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.1188E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.918E3\nphysical_cash: !ruby/object:BigDecimal 18:0.918E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.43.80 1a4f0c1c-f8a9-4fb2-80c9-659710034093 2020-03-06 02:33:27.469324 31061 873 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.43.80 1a4f0c1c-f8a9-4fb2-80c9-659710034093 2020-03-06 02:33:27.483924 31062 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-01-31 02:50:33.518175000 Z\n- &1 2020-02-25 18:09:49.890474000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-06 02:57:59.471054682 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 47\n- 48\n 97 \N 189.186.107.100 8f007536-86de-4a27-b5f5-5171e1ffcbf5 2020-03-06 02:57:59.47941 31063 18 User \N \N 18 User \N update ---\nunique_session_id:\n- fTUUdXocEPKAXLNysqU7\n- 36bjfY-4WpZPDmXrds3z\n 98 \N 189.186.107.100 8f007536-86de-4a27-b5f5-5171e1ffcbf5 2020-03-06 02:57:59.501051 31064 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-03-04 22:35:09.877833000 Z\n- &1 2020-03-05 18:11:28.187508000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-06 17:23:41.236963813 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126558\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\nsign_in_count:\n- 124\n- 125\n 250 \N 187.149.43.80 3be6c3ca-9fcf-4775-80d8-deab45102d91 2020-03-06 17:23:41.265926 31065 27 User \N \N 27 User \N update ---\nunique_session_id:\n- swcwRYR9ZJXwKFSz9MdK\n- bzdeoXHzVFdyXC1m-Rgs\n 251 \N 187.149.43.80 3be6c3ca-9fcf-4775-80d8-deab45102d91 2020-03-06 17:23:41.29397 31066 875 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.918E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 918.0 187.149.43.80 93c29668-d9c2-485e-b5cb-de869495931e 2020-03-06 17:23:55.865806 31067 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-05 00:57:37.882603000 Z\n- &1 2020-03-05 02:55:29.132057000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-06 17:35:45.948564403 Z\nsign_in_count:\n- 174\n- 175\n 351 \N 189.186.107.100 d902b654-a008-4cad-bd64-4ea2f1581a10 2020-03-06 17:35:45.980357 31068 21 User \N \N 21 User \N update ---\nunique_session_id:\n- wvptuiWoGwLoZkAyD2Z5\n- BuHhkRvL-2NcC93g-GAh\n 352 \N 189.186.107.100 d902b654-a008-4cad-bd64-4ea2f1581a10 2020-03-06 17:35:46.011947 31069 876 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.523E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 523.0 189.186.107.100 d2f89f11-880a-4ba8-9364-36fc80dedba7 2020-03-06 17:39:38.966105 31070 2295 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 876\namount: !ruby/object:BigDecimal 18:0.103362E4\ntax: !ruby/object:BigDecimal 18:0.16538E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-03-06\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-287\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.107.100 a9099c39-327e-48c8-8b31-f355dbbf80a2 2020-03-06 17:39:52.682484 31071 847 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.107.100 a9099c39-327e-48c8-8b31-f355dbbf80a2 2020-03-06 17:39:52.7265 31072 2295 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.107.100 07e98a1e-efcb-4e9e-95f2-88166aa1f7fa 2020-03-06 17:40:23.872489 31073 3124 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 876\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 2295\ncardnumber: 7242\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-287\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-287 189.186.107.100 07e98a1e-efcb-4e9e-95f2-88166aa1f7fa 2020-03-06 17:40:23.90526 31074 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-05 03:53:25.751854000 Z\n- &1 2020-03-05 18:13:22.955964000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-06 19:01:11.387352262 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138250\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 1460\n- 1461\n 2922 \N 189.186.107.100 4d0fc269-aadb-4e34-8ba0-0e17e3d5334f 2020-03-06 19:01:11.395055 31075 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PDUnt8LYveWhRT-N1toA\n- Qw2V1Gz28VocT6yfLzjy\n 2923 \N 189.186.107.100 4d0fc269-aadb-4e34-8ba0-0e17e3d5334f 2020-03-06 19:01:11.417716 31076 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-04 21:55:49.816520000 Z\n- &1 2020-03-05 19:31:22.061417000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-06 20:07:36.445677692 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126558\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\nsign_in_count:\n- 496\n- 497\n 997 \N 187.149.43.80 39e70df0-eef1-4297-8ef0-3010a208cb70 2020-03-06 20:07:36.453195 31077 2 User \N \N 2 User \N update ---\nunique_session_id:\n- S_t7oG61XmFt2F5ssUiY\n- BV3vxq3X8H5MvzmjR2yp\n 998 \N 187.149.43.80 39e70df0-eef1-4297-8ef0-3010a208cb70 2020-03-06 20:07:36.482686 31078 877 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.114E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1140.0 187.149.43.80 af1eccad-4ee1-46ba-a719-08bb52fdc369 2020-03-06 20:08:18.927695 31079 2296 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 877\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2020-03-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1139\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 d65991e5-790e-4b98-93b4-13783ded8f0b 2020-03-06 20:11:33.878166 31080 1685 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.43.80 d65991e5-790e-4b98-93b4-13783ded8f0b 2020-03-06 20:11:33.916175 31081 2296 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.80 3b58054b-a115-442c-b8e5-59ede9bc7f59 2020-03-06 20:11:38.280811 31082 3125 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 877\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.729E3\nmove_type: '1'\nsale_id: 2296\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1139\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.729E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1139 187.149.43.80 3b58054b-a115-442c-b8e5-59ede9bc7f59 2020-03-06 20:11:38.318317 31083 296 Customer \N \N 2 User \N create ---\nnick_name: KELLY OCHOA\nphone: "(667) 409-4281"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KELLY OCHOA fue registrado. 187.149.43.80 aa7aed89-32b1-4441-9406-05338c4fef55 2020-03-06 20:13:05.014752 31084 2297 Sale \N \N 2 User \N create ---\ncustomer_id: 296\nuser_id: 2\nopen_cash_register_id: 877\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-03-06\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1140\nexpiration_date: 2020-04-10\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 ff0d1b54-6598-4128-80b3-b02ca76318da 2020-03-06 20:13:15.213551 31085 1640 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.43.80 ff0d1b54-6598-4128-80b3-b02ca76318da 2020-03-06 20:13:15.24743 31086 3126 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 877\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2297\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1140\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1140 187.149.43.80 4ca8bdb3-065f-46a8-9e10-3680bb9a7cbf 2020-03-06 20:13:35.415982 31087 2297 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.43.80 59ce6c67-4f46-4673-9755-914ca1ed3b61 2020-03-06 20:13:37.432136 31088 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-05 18:13:22.955964000 Z\n- &1 2020-03-06 19:01:11.387352000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-06 21:31:00.975689713 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945980\n mask_addr: 4294967295\nsign_in_count:\n- 1461\n- 1462\n 2924 \N 200.68.180.252 20278387-7bd5-452a-b3c7-207a58a05530 2020-03-06 21:31:00.983577 31089 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Qw2V1Gz28VocT6yfLzjy\n- uNKe8BHheA9QyymbTaU-\n 2925 \N 200.68.180.252 20278387-7bd5-452a-b3c7-207a58a05530 2020-03-06 21:31:01.004784 31090 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-05 02:55:29.132057000 Z\n- &1 2020-03-06 17:35:45.948564000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-06 21:49:54.512124135 Z\nsign_in_count:\n- 175\n- 176\n 353 \N 189.186.107.100 1e6e3c81-b8c3-4818-8ea6-faeb80c9cca5 2020-03-06 21:49:54.51866 31091 21 User \N \N 21 User \N update ---\nunique_session_id:\n- BuHhkRvL-2NcC93g-GAh\n- g9GPdrKCXtEBguxY7paX\n 354 \N 189.186.107.100 1e6e3c81-b8c3-4818-8ea6-faeb80c9cca5 2020-03-06 21:49:54.537361 31092 2298 Sale \N \N 21 User \N create ---\ncustomer_id: 270\nuser_id: 21\nopen_cash_register_id: 876\namount: !ruby/object:BigDecimal 18:0.1314E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1314E4\nstatus: 0\ndate_sale: 2020-03-06\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-288\nexpiration_date: 2020-04-10\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.107.100 dcb5a26f-33ed-4924-8415-9a3a517e7f32 2020-03-06 22:01:46.803754 31093 1754 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.107.100 dcb5a26f-33ed-4924-8415-9a3a517e7f32 2020-03-06 22:01:46.854759 31094 1709 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.107.100 dcb5a26f-33ed-4924-8415-9a3a517e7f32 2020-03-06 22:01:46.921875 31095 1717 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.107.100 dcb5a26f-33ed-4924-8415-9a3a517e7f32 2020-03-06 22:01:46.964441 31096 1716 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.107.100 dcb5a26f-33ed-4924-8415-9a3a517e7f32 2020-03-06 22:01:47.002445 31097 1752 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.107.100 dcb5a26f-33ed-4924-8415-9a3a517e7f32 2020-03-06 22:01:47.044896 31098 1711 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.107.100 dcb5a26f-33ed-4924-8415-9a3a517e7f32 2020-03-06 22:01:47.098474 31099 3127 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 876\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2298\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-288\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-288 189.186.107.100 f606069b-8836-4d3d-841b-4c4a7b810325 2020-03-06 22:04:59.093237 31100 2298 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.107.100 1e44f048-050d-441f-98a4-5af4e031cd82 2020-03-06 22:05:00.579821 31101 2299 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 876\namount: !ruby/object:BigDecimal 18:0.756E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.756E3\nstatus: 0\ndate_sale: 2020-03-06\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-289\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.107.100 30ed0b93-b239-4998-a46e-4b3a1fb95fae 2020-03-06 22:05:57.160143 31102 1726 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.107.100 30ed0b93-b239-4998-a46e-4b3a1fb95fae 2020-03-06 22:05:57.204209 31107 3128 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 876\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.756E3\nmove_type: '1'\nsale_id: 2299\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-289\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.756E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-289 189.186.107.100 ba4df064-765e-4a10-b825-54bc128de66e 2020-03-06 22:06:45.103301 31108 3129 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 877\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2293\ncardnumber: 5994\npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1138 187.149.43.80 54790d68-d0df-47dd-9ea0-bc752609d4c7 2020-03-06 22:32:42.371328 31109 3130 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 877\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.349E3\nmove_type: '1'\nsale_id: 2293\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.349E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1138 187.149.43.80 9c8fcb91-57ad-4835-a42b-8b9bcc95d739 2020-03-06 22:33:19.944801 31110 2293 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.43.80 75ffeb0b-243a-47fe-8269-57e87a714256 2020-03-06 22:33:50.923934 31111 897 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 875\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.918E3\nphysical_cash: !ruby/object:BigDecimal 18:0.918E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.43.80 6bccf6ff-5fb9-4288-97ec-efba54d60dd5 2020-03-07 02:29:49.94112 31112 875 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.43.80 6bccf6ff-5fb9-4288-97ec-efba54d60dd5 2020-03-07 02:29:49.964613 31113 898 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 877\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1678E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1418E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2418E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.43.80 47cdcc23-7139-458c-999c-bd43bce21436 2020-03-07 02:51:41.251634 31114 877 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.43.80 47cdcc23-7139-458c-999c-bd43bce21436 2020-03-07 02:51:41.274936 31115 298 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 876\nquantity: !ruby/object:BigDecimal 18:0.8E3\nstatus: 1\nobservations: DANIELA SEMANA 24FEB-01MAR\nexpense_date: 2020-03-06\nexpense_code: PV3-E-32\n 1 Egreso por 800.0 registrado 189.186.107.100 053f7583-6261-474e-a7fd-9967087a4ae1 2020-03-07 02:59:01.82327 31116 3131 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 876\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 298\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.107.100 053f7583-6261-474e-a7fd-9967087a4ae1 2020-03-07 02:59:01.850035 31117 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-05 19:31:22.061417000 Z\n- &1 2020-03-06 20:07:36.445677000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-07 17:58:11.804119966 Z\nsign_in_count:\n- 497\n- 498\n 999 \N 187.149.43.80 c694051d-43ea-4946-a5f6-a38376d1344b 2020-03-07 17:58:11.834486 31118 2 User \N \N 2 User \N update ---\nunique_session_id:\n- BV3vxq3X8H5MvzmjR2yp\n- yG-XzN3KAKswUxzhwMPK\n 1000 \N 187.149.43.80 c694051d-43ea-4946-a5f6-a38376d1344b 2020-03-07 17:58:11.860448 31119 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2020-02-29 20:55:50.182143000 Z\n- &1 2020-03-01 00:15:28.974039000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-07 18:04:34.612950409 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\nsign_in_count:\n- 58\n- 59\n 118 \N 187.149.43.80 1cee00ab-f3e3-4d85-bfcb-ab3feba7acff 2020-03-07 18:04:34.620467 31120 24 User \N \N 24 User \N update ---\nunique_session_id:\n- tzw1MKUPH24x-8wivhN-\n- 7FyNhsyF59aX4DC12zs7\n 119 \N 187.149.43.80 1cee00ab-f3e3-4d85-bfcb-ab3feba7acff 2020-03-07 18:04:34.640748 31121 878 OpenCashRegister \N \N 24 User \N create ---\ncash_register_id: 2\nuser_id: 24\ninitial_cash: !ruby/object:BigDecimal 18:0.918E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 918.0 187.149.43.80 346d3e4c-4071-4d73-ae9b-c5887cfdbb87 2020-03-07 18:07:02.126682 31122 2300 Sale \N \N 24 User \N create ---\ncustomer_id: 1\nuser_id: 24\nopen_cash_register_id: 878\namount: !ruby/object:BigDecimal 18:0.45603E3\ntax: !ruby/object:BigDecimal 18:0.7296E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.52899E3\nstatus: 0\ndate_sale: 2020-03-07\nsaletype: 1\nseller_id: 11\nsale_code: PV2-V-869\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 8068f014-36c1-4a4c-9425-dd05140a4ac9 2020-03-07 18:09:04.035955 31123 438 AvailableProduct \N \N 24 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 187.149.43.80 8068f014-36c1-4a4c-9425-dd05140a4ac9 2020-03-07 18:09:04.080222 31124 2300 Sale \N \N 24 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.80 2e8c0fec-3c87-44ac-affc-fb2fdf9dd0e2 2020-03-07 18:09:27.144812 31125 3132 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 878\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.52899E3\nmove_type: '1'\nsale_id: 2300\ncardnumber: 5698\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-869\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-869 187.149.43.80 2e8c0fec-3c87-44ac-affc-fb2fdf9dd0e2 2020-03-07 18:09:27.177408 31126 879 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1418E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1418.0 187.149.43.80 72b7c427-d972-4a31-8bec-806bf594604d 2020-03-07 18:12:18.795328 31176 1476 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.43.80 41ca1ae3-0a52-46f1-a3c1-6654c741b489 2020-03-07 21:28:01.633946 31177 1476 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.43.80 5c5843b1-93c0-496e-9bf4-3cf9c4158661 2020-03-07 21:28:08.08005 31127 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-06 19:01:11.387352000 Z\n- &1 2020-03-06 21:31:00.975689000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-07 18:12:50.579497280 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945980\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945980\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\nsign_in_count:\n- 1462\n- 1463\n 2926 \N 187.149.43.80 800c80f8-bf0a-490e-bd88-59ac1c4f8399 2020-03-07 18:12:50.587465 31128 4 User \N \N 4 User \N update ---\nunique_session_id:\n- uNKe8BHheA9QyymbTaU-\n- y7vMnCXb_EfUDhMyfeoj\n 2927 \N 187.149.43.80 800c80f8-bf0a-490e-bd88-59ac1c4f8399 2020-03-07 18:12:50.609511 31129 2301 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 879\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.209E3\ntotal: !ruby/object:BigDecimal 18:0.119E4\nstatus: 0\ndate_sale: 2020-03-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1141\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 efae93cb-6dd6-4c3e-a655-293364ad82d0 2020-03-07 18:13:09.892237 31130 1066 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.43.80 efae93cb-6dd6-4c3e-a655-293364ad82d0 2020-03-07 18:13:09.928235 31131 2301 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.80 982266dd-0ca9-4458-8e7e-90925746d850 2020-03-07 18:13:23.631302 31132 3133 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 879\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.119E4\nmove_type: '1'\nsale_id: 2301\ncardnumber: 5698\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1141\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1141 187.149.43.80 982266dd-0ca9-4458-8e7e-90925746d850 2020-03-07 18:13:23.655913 31133 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-06 17:35:45.948564000 Z\n- &1 2020-03-06 21:49:54.512124000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-07 18:22:40.806816449 Z\nsign_in_count:\n- 176\n- 177\n 355 \N 189.186.107.100 b75afcb9-19cf-4977-8a6a-2cad353a8c92 2020-03-07 18:22:40.812886 31134 21 User \N \N 21 User \N update ---\nunique_session_id:\n- g9GPdrKCXtEBguxY7paX\n- Nsr9_5jmCA_rZd4r9zbU\n 356 \N 189.186.107.100 b75afcb9-19cf-4977-8a6a-2cad353a8c92 2020-03-07 18:22:40.841084 31135 899 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 876\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.2155E4\namount_out: !ruby/object:BigDecimal 18:0.8E3\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.679E3\nphysical_cash: !ruby/object:BigDecimal 18:0.679E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.107.100 04dee6da-b76b-4fda-8a54-ee2456a29e70 2020-03-07 18:24:06.804342 31136 876 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.107.100 04dee6da-b76b-4fda-8a54-ee2456a29e70 2020-03-07 18:24:06.821393 31137 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-01 02:05:27.777757000 Z\n- &1 2020-03-01 02:32:54.244897000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-07 18:30:23.924257963 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\nsign_in_count:\n- 101\n- 102\n 207 \N 187.149.43.80 06c8022e-edb7-4ecf-b606-1ff93de58d05 2020-03-07 18:30:23.932348 31138 8 User \N \N 8 User \N update ---\nunique_session_id:\n- bA_fRNPLMRMydvV6chK8\n- byTraxNkvs_5adwCmPd8\n 208 \N 187.149.43.80 06c8022e-edb7-4ecf-b606-1ff93de58d05 2020-03-07 18:30:23.956889 31139 2302 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 878\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-03-07\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-870\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 80ec6783-373e-4b9f-9da8-d1c6888809cc 2020-03-07 18:49:38.424014 31140 1165 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.43.80 80ec6783-373e-4b9f-9da8-d1c6888809cc 2020-03-07 18:49:38.459561 31141 2302 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.80 498caeb1-d67a-4d1d-aeaf-46c5ce4744ec 2020-03-07 18:50:07.257611 31142 3134 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 878\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 2302\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-870\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-870 187.149.43.80 498caeb1-d67a-4d1d-aeaf-46c5ce4744ec 2020-03-07 18:50:07.28639 31143 2303 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 879\namount: !ruby/object:BigDecimal 18:0.130041E4\ntax: !ruby/object:BigDecimal 18:0.2759E2\ndiscount: !ruby/object:BigDecimal 18:0.1028E4\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2020-03-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1142\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 381d4b80-8cfa-4dbd-af7c-c51fd1d31459 2020-03-07 19:02:01.460898 31144 174 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.43.80 381d4b80-8cfa-4dbd-af7c-c51fd1d31459 2020-03-07 19:02:01.528021 31145 1063 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.43.80 381d4b80-8cfa-4dbd-af7c-c51fd1d31459 2020-03-07 19:02:01.579659 31146 2303 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.80 d1875dce-fecc-4669-a469-f94b9629633a 2020-03-07 19:03:17.324847 31147 3135 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 879\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 2303\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1142\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1142 187.149.43.80 d1875dce-fecc-4669-a469-f94b9629633a 2020-03-07 19:03:17.358422 31178 1047 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.43.80 ab9bbffa-08c6-4e9f-9122-d819a687bfb4 2020-03-07 21:28:18.585129 31228 881 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1817E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1817.0 187.149.43.80 3b3630e8-1940-4897-849d-bb8e25cc5837 2020-03-08 18:52:37.215584 31148 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-02-28 21:00:38.363171000 Z\n- &1 2020-03-02 18:51:07.996556000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-07 19:17:35.358172869 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3361499151\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\nsign_in_count:\n- 166\n- 167\n 334 \N 187.149.43.80 8e80a5ca-ad87-4ff7-baee-525d675aba84 2020-03-07 19:17:35.367878 31149 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Tzhaxz6j-x4gyqxGuXFz\n- 6seFJ1aoq1gCXbwnqtTx\n 335 \N 187.149.43.80 8e80a5ca-ad87-4ff7-baee-525d675aba84 2020-03-07 19:17:35.389669 31150 880 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.679E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 679.0 189.186.107.100 7c2ef1dd-bd12-4e6d-b525-4b02150a3240 2020-03-07 19:28:37.188775 31151 297 Customer \N \N 2 User \N create ---\nnick_name: ALZY PEREZ\nphone: "(667) 223-9217"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ALZY PEREZ fue registrado. 187.149.43.80 df372b5f-3e26-4f3a-8847-ff61dd20b7ba 2020-03-07 21:08:42.509281 31152 619 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.43.80 de80affa-1dac-40f0-93a0-62c81ae7694c 2020-03-07 21:19:56.822237 31153 510 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-03-07\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.43.80 2c7b8190-d7d4-4f33-9353-56ddf3db835f 2020-03-07 21:20:39.529245 31154 492 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-07\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.43.80 de18c01d-2fa4-47b7-b167-6c0aea0dd527 2020-03-07 21:21:56.827046 31155 1759 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1029\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.43.80 de18c01d-2fa4-47b7-b167-6c0aea0dd527 2020-03-07 21:21:56.850514 31156 1252 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 19 \N 187.149.43.80 09a2425b-a584-4965-a8a5-e505915b9088 2020-03-07 21:22:18.875368 31157 1416 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.43.80 7e036f9b-8597-44f3-8d32-01792ca56ae0 2020-03-07 21:22:55.243998 31158 1252 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 20 \N 187.149.43.80 ffea4565-b843-4d25-8215-69c4a25fafcc 2020-03-07 21:23:16.401253 31159 1416 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.43.80 91517fc4-5482-4207-9f6f-68d3f9b54b7c 2020-03-07 21:23:21.34671 31160 1415 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.43.80 b1ff8560-8e58-4505-b47b-3f8750994346 2020-03-07 21:25:31.165629 31161 1415 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.43.80 88de7f83-e193-4ea7-b245-6f3dd88e3e85 2020-03-07 21:25:38.070791 31162 1607 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.43.80 e1bd097b-9da3-4f7b-992e-b71839b309f3 2020-03-07 21:26:00.774629 31163 1607 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.43.80 a133b697-75b8-46e1-b853-19b7f007bcd4 2020-03-07 21:26:10.39733 31164 496 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-07\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.43.80 1374a3b6-b0ed-46d5-be30-ca86eb5554c2 2020-03-07 21:26:16.114727 31165 1760 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1033\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.43.80 1374a3b6-b0ed-46d5-be30-ca86eb5554c2 2020-03-07 21:26:16.222364 31166 502 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-07\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.43.80 90188b86-3acf-4c97-be07-d8a233c5ef04 2020-03-07 21:26:27.900664 31167 1761 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1047\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.43.80 90188b86-3acf-4c97-be07-d8a233c5ef04 2020-03-07 21:26:27.927102 31168 506 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-07\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.43.80 0d93efb4-e18d-4431-987d-3e90122ce5f2 2020-03-07 21:26:36.278293 31169 1762 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1077\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.43.80 0d93efb4-e18d-4431-987d-3e90122ce5f2 2020-03-07 21:26:36.300105 31170 1250 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.43.80 a46d4534-ee7a-400c-8b0a-4c212c11cf61 2020-03-07 21:26:43.358873 31171 510 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-07\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.43.80 528a8a5a-8d09-44eb-a0e7-ec469ba0d8e5 2020-03-07 21:26:45.921868 31172 602 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.43.80 528a8a5a-8d09-44eb-a0e7-ec469ba0d8e5 2020-03-07 21:26:45.941091 31173 1258 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.43.80 f0df8431-bf02-4a6c-be63-79e6489f01e2 2020-03-07 21:26:54.657586 31174 1280 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.43.80 e1d89675-6912-4c3d-bcb5-4e768df4ae2f 2020-03-07 21:27:40.291923 31175 1280 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.43.80 90392b83-b73a-401b-b179-ad83aef1df3a 2020-03-07 21:27:46.633849 46490 1369 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1369'\n is_parent: false\n sku: BOL-1369\n name: 1BLCV20264\n description: BACK PACK LETRAS\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: 9B43D5AA-D066-49EA-AEB3-738B65EB4545.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170818468'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-22 18:47:14.723707'\n updated_at: &12 2020-11-21 19:51:30.405272407 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1369'\n sku: BOL-1369\n name: 1BLCV20264\n description: BACK PACK LETRAS\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-22 18:47:14.723707'\n updated_at: '2020-10-22 18:47:14.723707'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170818468'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1369'\n type: *3\n value: 1369\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1369\n type: *7\n value: BOL-1369\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCV20264\n type: *8\n value: 1BLCV20264\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BACK PACK LETRAS\n type: *6\n value: BACK PACK LETRAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 9B43D5AA-D066-49EA-AEB3-738B65EB4545.jpeg\n type: *2\n value: 9B43D5AA-D066-49EA-AEB3-738B65EB4545.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170818468'\n type: *2\n value: '7509170818468'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-22 18:47:14.723707'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 9B43D5AA-D066-49EA-AEB3-738B65EB4545.jpeg\n 2 El producto BOL-1369 fue modificado. 189.186.1.223 d8a38e39-1937-4c6a-92eb-9c8cf60a30e8 2020-11-21 19:51:30.512556 31179 2304 Sale \N \N 2 User \N create ---\ncustomer_id: 297\nuser_id: 2\nopen_cash_register_id: 879\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-03-07\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1143\nexpiration_date: 2020-04-11\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 73aa0ddd-711a-4e0c-8961-2386c3b4cb11 2020-03-07 21:30:18.676194 31180 602 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.43.80 73aa0ddd-711a-4e0c-8961-2386c3b4cb11 2020-03-07 21:30:18.7052 31181 1281 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 20 \N 187.149.43.80 65e7593b-abde-4f91-b7d3-0841ce3fd468 2020-03-07 21:30:21.594567 31182 1281 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 21 \N 187.149.43.80 283f9013-b023-4759-ab2f-4b215980c58a 2020-03-07 21:30:30.709895 31183 3136 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 879\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2304\ncardnumber: 3019\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1143\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1143 187.149.43.80 11fa8bd3-b775-4510-9776-fbbea85d06ae 2020-03-07 21:30:36.750752 31184 2304 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.43.80 baccf1c8-19f7-494c-96bc-d1f5beb2a60b 2020-03-07 21:30:40.104697 31185 1039 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.43.80 005cf213-34fb-414e-b92c-01e7a94f326b 2020-03-07 21:30:48.722211 31186 1039 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.43.80 aac89406-8f76-44a2-97e8-0a160da80760 2020-03-07 21:30:59.208643 31187 1551 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.43.80 97e2e351-6cd0-4f68-b08c-d6296cea7d95 2020-03-07 21:31:55.781756 31188 1085 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.43.80 c390b976-6844-48d8-8bc4-01dcd99d49e6 2020-03-07 21:32:22.066019 31189 1256 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.43.80 e6034eb3-3b05-4314-bd83-de0e51583527 2020-03-07 21:33:15.568598 31190 1412 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 16 \N 187.149.43.80 daa065f0-20a2-4d17-b70a-e64f73861b1e 2020-03-07 21:35:03.881066 31191 1412 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 17 \N 187.149.43.80 64b3d828-10be-433d-b6f1-6fbfd0fd0446 2020-03-07 21:35:26.959598 31192 1439 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.43.80 85b257b5-4d11-4203-a7e5-92b15c14f355 2020-03-07 21:35:46.12679 31193 1439 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.43.80 47321ff7-37a7-4618-a520-594ec6402c35 2020-03-07 21:35:56.298234 31194 1127 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.43.80 3b6cbac4-f350-4356-a863-acb7f102fc56 2020-03-07 21:36:08.443959 31195 1127 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.43.80 8b6c9e7a-f51b-466e-b276-9a12ff619ff2 2020-03-07 21:36:15.640542 31196 1547 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.43.80 e1d786f5-1588-4317-b660-f9ffdb048514 2020-03-07 21:36:38.387519 31197 1040 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.43.80 5175932b-e784-402d-ac7c-51cfb2e169f9 2020-03-07 21:37:19.494306 31198 1258 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.43.80 7ce584df-aea8-4488-a7b3-ae8e7929da9d 2020-03-07 21:37:55.742103 31199 511 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-03-07\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de S BY SUO a Almacen central creado. 187.149.43.80 a886af3e-f0f5-4ae9-95ad-a145a8a66ab2 2020-03-07 21:38:13.906173 31200 2305 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 879\namount: !ruby/object:BigDecimal 18:0.99E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.99E2\nstatus: 0\ndate_sale: 2020-03-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1144\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 0ea7e8d2-6e4f-4d6f-85a5-9207bf12398d 2020-03-07 21:44:09.482815 31201 1762 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.43.80 0ea7e8d2-6e4f-4d6f-85a5-9207bf12398d 2020-03-07 21:44:09.51272 31202 2305 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.80 46067558-f0ae-4e64-8fa0-fccc434dee2c 2020-03-07 21:44:13.118539 31203 3137 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 879\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.99E2\nmove_type: '1'\nsale_id: 2305\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1144\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.99E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1144 187.149.43.80 46067558-f0ae-4e64-8fa0-fccc434dee2c 2020-03-07 21:44:13.143203 31204 2306 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 879\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2020-03-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1145\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 c9e99615-3793-4b50-b713-c2b48b13e1a0 2020-03-07 21:55:41.0904 31205 1690 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.43.80 c9e99615-3793-4b50-b713-c2b48b13e1a0 2020-03-07 21:55:41.122075 31206 2306 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.80 bf9a223a-5208-4a69-b47d-2ba2544eca76 2020-03-07 21:55:48.921939 31227 27 User \N \N 27 User \N update ---\nunique_session_id:\n- bzdeoXHzVFdyXC1m-Rgs\n- MJf5aDcpLTUJSosTBqCV\n 253 \N 187.149.43.80 05b54721-9e15-496e-8b82-350115970595 2020-03-08 18:50:23.550369 31207 3138 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 879\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.869E3\nmove_type: '1'\nsale_id: 2306\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1145\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.869E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1145 187.149.43.80 bf9a223a-5208-4a69-b47d-2ba2544eca76 2020-03-07 21:55:48.944048 31208 299 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 879\nquantity: !ruby/object:BigDecimal 18:0.1105E4\nstatus: 1\nobservations: SUELDO ROCIO\nexpense_date: 2020-03-07\nexpense_code: PV1-E-207\n 1 Egreso por 1105.0 registrado 187.149.43.80 7896fd5d-6653-47fa-a96f-064cc1baf239 2020-03-07 22:43:57.728557 31209 3139 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 879\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1105E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 299\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.43.80 7896fd5d-6653-47fa-a96f-064cc1baf239 2020-03-07 22:43:57.752263 31210 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-06 21:31:00.975689000 Z\n- &1 2020-03-07 18:12:50.579497000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-07 23:37:16.722817148 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945980\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138250\n mask_addr: 4294967295\nsign_in_count:\n- 1463\n- 1464\n 2928 \N 189.186.213.202 791f4147-6699-4bb1-8300-fda398e7882f 2020-03-07 23:37:16.731377 31211 4 User \N \N 4 User \N update ---\nunique_session_id:\n- y7vMnCXb_EfUDhMyfeoj\n- wregWzNsFX_GnRVZUm2m\n 2929 \N 189.186.213.202 791f4147-6699-4bb1-8300-fda398e7882f 2020-03-07 23:37:16.7509 31212 2307 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 879\namount: !ruby/object:BigDecimal 18:0.68521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.599E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-03-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1146\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 b04bdf2d-4950-4de2-9754-186e421f98ce 2020-03-08 01:02:38.3888 31213 191 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.43.80 b04bdf2d-4950-4de2-9754-186e421f98ce 2020-03-08 01:02:38.429283 31214 2307 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.80 18761697-6517-4359-afe0-da69a7acd66a 2020-03-08 01:02:43.62502 31215 3140 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 879\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2307\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1146\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1146 187.149.43.80 18761697-6517-4359-afe0-da69a7acd66a 2020-03-08 01:02:43.653197 31216 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-07 18:12:50.579497000 Z\n- &1 2020-03-07 23:37:16.722817000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-08 02:18:47.797037598 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138250\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138250\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 1464\n- 1465\n 2930 \N 189.186.107.100 333e243c-918c-4d84-9597-e04fd90535c2 2020-03-08 02:18:47.819369 31217 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wregWzNsFX_GnRVZUm2m\n- RnQ7onvs6eekomySYcDa\n 2931 \N 189.186.107.100 333e243c-918c-4d84-9597-e04fd90535c2 2020-03-08 02:18:47.844915 31218 900 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 879\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3058E4\namount_out: !ruby/object:BigDecimal 18:0.1105E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.53E3\ncash_fund: !ruby/object:BigDecimal 18:0.1151E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1681E4\nobservations: ME PAGUE ARETES COBRADOS CON TERMINAL DE $330 QUEDA EN CORTE $200\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.43.80 a2d7b7e5-d2e2-4b9d-a6df-6e52d46a2dc1 2020-03-08 02:21:13.527271 31219 879 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.43.80 a2d7b7e5-d2e2-4b9d-a6df-6e52d46a2dc1 2020-03-08 02:21:13.550838 31220 901 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 878\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.192799E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.1817E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2317E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.43.80 2cf05f4c-5b2a-4eda-8db5-7fbb1dfb5a7c 2020-03-08 02:31:00.181447 31221 878 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.43.80 2cf05f4c-5b2a-4eda-8db5-7fbb1dfb5a7c 2020-03-08 02:31:00.199551 31222 902 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 880\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.679E3\nphysical_cash: !ruby/object:BigDecimal 18:0.679E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.107.100 d56551d9-e845-4f3e-8be4-8c2a113a4a41 2020-03-08 02:57:06.102598 31223 880 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.107.100 d56551d9-e845-4f3e-8be4-8c2a113a4a41 2020-03-08 02:57:06.130686 31224 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-07 23:37:16.722817000 Z\n- &1 2020-03-08 02:18:47.797037000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-08 18:46:19.251010193 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138250\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934109\n mask_addr: 4294967295\nsign_in_count:\n- 1465\n- 1466\n 2932 \N 200.68.134.157 276248a3-3fd0-4f2b-8494-e03d736541fc 2020-03-08 18:46:19.286501 31225 4 User \N \N 4 User \N update ---\nunique_session_id:\n- RnQ7onvs6eekomySYcDa\n- McGtXkn_MstUsuysRfH1\n 2933 \N 200.68.134.157 276248a3-3fd0-4f2b-8494-e03d736541fc 2020-03-08 18:46:19.320451 31226 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-03-05 18:11:28.187508000 Z\n- &1 2020-03-06 17:23:41.236963000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-08 18:50:23.529176762 Z\nsign_in_count:\n- 125\n- 126\n 252 \N 187.149.43.80 05b54721-9e15-496e-8b82-350115970595 2020-03-08 18:50:23.535811 31229 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-06 20:07:36.445677000 Z\n- &1 2020-03-07 17:58:11.804119000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-08 19:00:08.627844038 Z\nsign_in_count:\n- 498\n- 499\n 1001 \N 187.149.43.80 3a3b2766-59d3-4162-81e1-6a880cd5c6e9 2020-03-08 19:00:08.634528 31230 2 User \N \N 2 User \N update ---\nunique_session_id:\n- yG-XzN3KAKswUxzhwMPK\n- hL2EUsCcGshoyzLgxDyz\n 1002 \N 187.149.43.80 3a3b2766-59d3-4162-81e1-6a880cd5c6e9 2020-03-08 19:00:08.650349 31231 882 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1151E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1151.0 187.149.43.80 60b1e825-6769-435e-9c89-a6ba8d1d025f 2020-03-08 19:01:19.34646 31232 2308 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 882\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2020-03-08\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-1147\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 f6a9efb4-4208-4341-a573-d878c2a5823e 2020-03-08 19:01:53.293934 31233 1720 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.43.80 f6a9efb4-4208-4341-a573-d878c2a5823e 2020-03-08 19:01:53.329503 31234 2308 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.80 5d7b0af4-6064-4fb7-89c5-e49be6f8fffe 2020-03-08 19:01:57.958136 31235 3141 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 882\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 2308\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1147\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.151E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1147 187.149.43.80 5d7b0af4-6064-4fb7-89c5-e49be6f8fffe 2020-03-08 19:01:57.981248 31236 2309 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 882\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.849E3\nstatus: 0\ndate_sale: 2020-03-08\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-1148\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 3e3b2c34-4fcf-44f3-9a3c-8b5f2c2f9a6a 2020-03-08 20:11:51.502983 31237 1691 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.43.80 3e3b2c34-4fcf-44f3-9a3c-8b5f2c2f9a6a 2020-03-08 20:11:51.537138 31238 2309 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.80 af2ae220-f8de-4156-911f-a5ee7c4124d9 2020-03-08 20:12:25.660644 31239 3142 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 882\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.849E3\nmove_type: '1'\nsale_id: 2309\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1148\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.85E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1148 187.149.43.80 af2ae220-f8de-4156-911f-a5ee7c4124d9 2020-03-08 20:12:25.693366 31240 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-03-06 17:23:41.236963000 Z\n- &1 2020-03-08 18:50:23.529176000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-08 21:55:18.217015982 Z\nsign_in_count:\n- 126\n- 127\n 254 \N 187.149.43.80 0290fdc5-bde7-4bc7-8a5e-93262db20bb6 2020-03-08 21:55:18.222956 31241 27 User \N \N 27 User \N update ---\nunique_session_id:\n- MJf5aDcpLTUJSosTBqCV\n- M_XHxko6ssYfsKTNAzGs\n 255 \N 187.149.43.80 0290fdc5-bde7-4bc7-8a5e-93262db20bb6 2020-03-08 21:55:18.237286 31242 903 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 882\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1398E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.18E4\ncash_fund: !ruby/object:BigDecimal 18:0.749E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2549E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.43.80 8a35aa53-9a0d-41c5-8ccb-de1d0fc1576c 2020-03-08 22:00:40.847835 31243 882 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.43.80 8a35aa53-9a0d-41c5-8ccb-de1d0fc1576c 2020-03-08 22:00:40.862 31244 300 Expense \N \N 27 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 881\nquantity: !ruby/object:BigDecimal 18:0.105E4\nstatus: 1\nobservations: SUELDO KEYLA\nexpense_date: 2020-03-08\nexpense_code: PV2-E-60\n 1 Egreso por 1050.0 registrado 187.149.43.80 16301832-06a3-45a6-a493-1dea6bc26bc6 2020-03-08 22:12:39.475281 31245 3143 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 881\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.105E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 300\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.43.80 16301832-06a3-45a6-a493-1dea6bc26bc6 2020-03-08 22:12:39.497393 31246 904 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 881\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.105E4\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.767E3\nphysical_cash: !ruby/object:BigDecimal 18:0.767E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.43.80 bd75a040-e554-48d6-af03-fb81303c46d5 2020-03-08 22:15:49.702804 31247 881 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.43.80 bd75a040-e554-48d6-af03-fb81303c46d5 2020-03-08 22:15:49.716869 31248 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-08 02:18:47.797037000 Z\n- &1 2020-03-08 18:46:19.251010000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-09 01:16:25.181545659 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934109\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934109\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934189\n mask_addr: 4294967295\nsign_in_count:\n- 1466\n- 1467\n 2934 \N 200.68.134.237 886bde2d-3a15-4e32-8811-a11ae0fc0406 2020-03-09 01:16:25.190866 31249 4 User \N \N 4 User \N update ---\nunique_session_id:\n- McGtXkn_MstUsuysRfH1\n- Dea1naxHMBqvzGkeychQ\n 2935 \N 200.68.134.237 886bde2d-3a15-4e32-8811-a11ae0fc0406 2020-03-09 01:16:25.210949 31250 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-06 21:49:54.512124000 Z\n- &1 2020-03-07 18:22:40.806816000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-09 19:11:41.474557224 Z\nsign_in_count:\n- 177\n- 178\n 357 \N 189.186.107.100 6fe6db3c-941b-4054-86d7-6295aae3c982 2020-03-09 19:11:41.50715 31251 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Nsr9_5jmCA_rZd4r9zbU\n- QTFkPuKETSzLbLyJFyzY\n 358 \N 189.186.107.100 6fe6db3c-941b-4054-86d7-6295aae3c982 2020-03-09 19:11:41.530927 31252 883 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.679E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 679.0 189.186.107.100 d05d26f1-8ac2-4e9f-aa90-28a695627169 2020-03-09 19:12:15.572792 31253 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 22:11:39.298408000 Z\n- &1 2020-02-14 20:34:09.419376000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-09 19:34:19.920233608 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 68\n- 69\n 138 \N 189.186.107.100 115c12c4-2556-4aab-b18e-9f681b70c002 2020-03-09 19:34:19.949921 31254 25 User \N \N 25 User \N update ---\nunique_session_id:\n- Yg2UxuDx2S9rSMjx_ooi\n- RGFCAdQa-ELdmztxa_Y8\n 139 \N 189.186.107.100 115c12c4-2556-4aab-b18e-9f681b70c002 2020-03-09 19:34:19.975953 31255 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-07 18:22:40.806816000 Z\n- &1 2020-03-09 19:11:41.474557000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-10 01:05:03.432190838 Z\nsign_in_count:\n- 178\n- 179\n 359 \N 189.186.107.100 f900b8a0-3482-42b5-9a6a-7d47e14c7ec9 2020-03-10 01:05:03.438783 31256 21 User \N \N 21 User \N update ---\nunique_session_id:\n- QTFkPuKETSzLbLyJFyzY\n- xkAGskT-Y22BD8jKxwc8\n 360 \N 189.186.107.100 f900b8a0-3482-42b5-9a6a-7d47e14c7ec9 2020-03-10 01:05:03.454431 31257 3144 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 883\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2132\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.799E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-255 189.186.107.100 a5b690bb-9e76-4384-87de-feb62cae8d7c 2020-03-10 01:21:00.615473 31258 3145 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 883\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 2132\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-255 189.186.107.100 97192653-93da-4114-b8dc-714a9c674b89 2020-03-10 01:21:11.078694 31259 2132 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.107.100 3a140974-074a-44ac-a6d5-1f911ea47272 2020-03-10 01:21:15.628191 31260 2310 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 883\namount: !ruby/object:BigDecimal 18:0.249E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.249E3\nstatus: 0\ndate_sale: 2020-03-09\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-290\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.107.100 1eaa976a-586b-427f-83ce-77dc9183290a 2020-03-10 01:23:08.723364 31261 1742 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.107.100 1eaa976a-586b-427f-83ce-77dc9183290a 2020-03-10 01:23:08.775396 31262 2310 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.107.100 34557d24-3a75-44e3-9c3b-ddc3be087258 2020-03-10 01:23:14.993227 31263 3146 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 883\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.249E3\nmove_type: '1'\nsale_id: 2310\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-290\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.249E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-290 189.186.107.100 34557d24-3a75-44e3-9c3b-ddc3be087258 2020-03-10 01:23:15.03055 31264 298 Customer \N \N 21 User \N create ---\nnick_name: LIZ CHAIDEZ\nphone: "(667) 233-4967"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.1E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LIZ CHAIDEZ fue registrado. 189.186.107.100 bceb37d9-c98c-4822-a717-6473faa480ac 2020-03-10 02:48:05.537849 31265 2311 Sale \N \N 21 User \N create ---\ncustomer_id: 298\nuser_id: 21\nopen_cash_register_id: 883\namount: !ruby/object:BigDecimal 18:0.581124E4\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.768E3\ntotal: !ruby/object:BigDecimal 18:0.5126E4\nstatus: 0\ndate_sale: 2020-03-09\nsaletype: 0\nseller_id: 12\nsale_code: PV3-V-291\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.107.100 e0e8eef8-8c99-41e1-bfae-6744c869584d 2020-03-10 02:50:41.765389 31266 1585 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.107.100 e0e8eef8-8c99-41e1-bfae-6744c869584d 2020-03-10 02:50:41.794761 31267 1712 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.107.100 e0e8eef8-8c99-41e1-bfae-6744c869584d 2020-03-10 02:50:41.836497 31268 775 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.107.100 e0e8eef8-8c99-41e1-bfae-6744c869584d 2020-03-10 02:50:41.862644 31269 884 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.107.100 e0e8eef8-8c99-41e1-bfae-6744c869584d 2020-03-10 02:50:41.888509 31270 1493 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.107.100 e0e8eef8-8c99-41e1-bfae-6744c869584d 2020-03-10 02:50:41.919261 31271 1502 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 e0e8eef8-8c99-41e1-bfae-6744c869584d 2020-03-10 02:50:41.946131 31272 1728 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.107.100 e0e8eef8-8c99-41e1-bfae-6744c869584d 2020-03-10 02:50:41.973057 31273 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 20:34:09.419376000 Z\n- &1 2020-03-09 19:34:19.920233000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-10 02:51:19.077242092 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 69\n- 70\n 140 \N 189.186.107.100 68f11d96-8a0f-43fb-b0a4-8a2c1b5cbd24 2020-03-10 02:51:19.085045 31274 25 User \N \N 25 User \N update ---\nunique_session_id:\n- RGFCAdQa-ELdmztxa_Y8\n- zYe1NGeZ8zUgHCsp5fyL\n 141 \N 189.186.107.100 68f11d96-8a0f-43fb-b0a4-8a2c1b5cbd24 2020-03-10 02:51:19.103637 31275 884 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.749E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 749.0 189.186.107.100 b0d1248b-9bcb-417b-830a-0ee0ed83ae6c 2020-03-10 02:51:45.874287 31276 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 23:05:27.462963000 Z\n- &1 2020-02-14 20:28:30.326323000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-10 02:52:58.416500539 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 68\n- 69\n 138 \N 189.186.107.100 a6e68ddf-0e9a-425a-b781-ac15a7a29427 2020-03-10 02:52:58.423683 31277 26 User \N \N 26 User \N update ---\nunique_session_id:\n- 1Vf9yczfXFbMVPpgpZVL\n- 1hXKjcuqv-C41Z6USxRT\n 139 \N 189.186.107.100 a6e68ddf-0e9a-425a-b781-ac15a7a29427 2020-03-10 02:52:58.439828 31278 885 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.767E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 767.0 189.186.107.100 ef891216-bce8-429d-9bef-f510429ee4b5 2020-03-10 02:53:12.171474 31279 2312 Sale \N \N 26 User \N create ---\ncustomer_id: 298\nuser_id: 26\nopen_cash_register_id: 885\namount: !ruby/object:BigDecimal 18:0.1298E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1298E4\nstatus: 0\ndate_sale: 2020-03-09\nsaletype: 0\nseller_id: 4\nsale_code: PV2-V-871\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.107.100 cc9041a3-892d-4e38-84c9-d07f82b05243 2020-03-10 02:53:51.014273 31280 1673 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.107.100 cc9041a3-892d-4e38-84c9-d07f82b05243 2020-03-10 02:53:51.046532 31281 1682 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.107.100 cc9041a3-892d-4e38-84c9-d07f82b05243 2020-03-10 02:53:51.074625 31282 905 CashOut \N \N 26 User \N create ---\nopen_cash_register_id: 885\nuser_id: 26\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.767E3\nphysical_cash: !ruby/object:BigDecimal 18:0.767E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.107.100 4d656fa9-2089-40d1-875b-b662f89408fd 2020-03-10 02:54:39.919768 31283 885 OpenCashRegister \N \N 26 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.107.100 4d656fa9-2089-40d1-875b-b662f89408fd 2020-03-10 02:54:39.935075 31284 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-09 19:11:41.474557000 Z\n- &1 2020-03-10 01:05:03.432190000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-10 02:55:28.150221175 Z\nsign_in_count:\n- 179\n- 180\n 361 \N 189.186.107.100 357bf4a8-8745-415c-8c8e-1a3ab058df80 2020-03-10 02:55:28.156715 31285 21 User \N \N 21 User \N update ---\nunique_session_id:\n- xkAGskT-Y22BD8jKxwc8\n- 9WD72f_Nv9xaPdoAw8eG\n 362 \N 189.186.107.100 357bf4a8-8745-415c-8c8e-1a3ab058df80 2020-03-10 02:55:28.171801 31286 906 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 883\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1048E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.727E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1727E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.107.100 f3804602-1079-46f6-9f4a-04521c99f17a 2020-03-10 02:59:05.948226 31287 883 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.107.100 f3804602-1079-46f6-9f4a-04521c99f17a 2020-03-10 02:59:05.962353 31288 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-08 18:46:19.251010000 Z\n- &1 2020-03-09 01:16:25.181545000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-10 07:35:08.482047072 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934109\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934189\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934189\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945865\n mask_addr: 4294967295\nsign_in_count:\n- 1467\n- 1468\n 2936 \N 200.68.180.137 568151eb-359b-4934-9c53-642446ad4ae0 2020-03-10 07:35:08.491432 31289 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Dea1naxHMBqvzGkeychQ\n- u4X52LN8wzAHrKqg4Q5e\n 2937 \N 200.68.180.137 568151eb-359b-4934-9c53-642446ad4ae0 2020-03-10 07:35:08.512544 31290 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-07 17:58:11.804119000 Z\n- &1 2020-03-08 19:00:08.627844000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-10 17:08:20.508021758 Z\nsign_in_count:\n- 499\n- 500\n 1003 \N 187.149.43.80 5f6ce729-cf84-4540-9b99-4b367b382ef4 2020-03-10 17:08:20.539966 31291 2 User \N \N 2 User \N update ---\nunique_session_id:\n- hL2EUsCcGshoyzLgxDyz\n- Dsjs6dkgy6E1vzMvJs39\n 1004 \N 187.149.43.80 5f6ce729-cf84-4540-9b99-4b367b382ef4 2020-03-10 17:08:20.566509 31292 2313 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 884\namount: !ruby/object:BigDecimal 18:0.43521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-03-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1149\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 f9eef376-fa33-48fe-9599-00c83fa9ec89 2020-03-10 17:14:23.08908 31293 1560 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.43.80 f9eef376-fa33-48fe-9599-00c83fa9ec89 2020-03-10 17:14:23.119471 31294 2313 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.80 c4861d3e-31ae-4492-94e8-fefaf53ad5ed 2020-03-10 17:14:28.170641 31295 3147 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 884\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2313\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1149\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1149 187.149.43.80 c4861d3e-31ae-4492-94e8-fefaf53ad5ed 2020-03-10 17:14:28.196878 31296 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2020-03-01 00:15:28.974039000 Z\n- &1 2020-03-07 18:04:34.612950000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-10 18:18:01.260896308 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\nsign_in_count:\n- 59\n- 60\n 120 \N 187.149.43.80 7c577eb0-497e-4a02-8c0d-5a64bb3ef9ce 2020-03-10 18:18:01.268518 31297 24 User \N \N 24 User \N update ---\nunique_session_id:\n- 7FyNhsyF59aX4DC12zs7\n- yK1AzshNphxAysikWw4P\n 121 \N 187.149.43.80 7c577eb0-497e-4a02-8c0d-5a64bb3ef9ce 2020-03-10 18:18:01.28517 31298 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-03-09 19:34:19.920233000 Z\n- &1 2020-03-10 02:51:19.077242000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-10 18:18:03.296252190 Z\nsign_in_count:\n- 70\n- 71\n 142 \N 189.186.107.100 35674554-3d1e-4aa6-be0f-54ddb8a50de3 2020-03-10 18:18:03.307772 31299 25 User \N \N 25 User \N update ---\nunique_session_id:\n- zYe1NGeZ8zUgHCsp5fyL\n- yu-_BJzmgqQ58jP2NWYr\n 143 \N 189.186.107.100 35674554-3d1e-4aa6-be0f-54ddb8a50de3 2020-03-10 18:18:03.332182 31300 886 OpenCashRegister \N \N 24 User \N create ---\ncash_register_id: 2\nuser_id: 24\ninitial_cash: !ruby/object:BigDecimal 18:0.767E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 767.0 187.149.43.80 ea93c32e-ecca-4268-88bd-7b005815efde 2020-03-10 18:18:05.837926 31301 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-03-02 18:51:07.996556000 Z\n- &1 2020-03-07 19:17:35.358172000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-10 18:18:56.762112412 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\nsign_in_count:\n- 167\n- 168\n 336 \N 187.149.43.80 bfc25d4c-9845-46ac-9110-700db4f26249 2020-03-10 18:18:56.77011 31302 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 6seFJ1aoq1gCXbwnqtTx\n- bvvEQoCS5gcbNmGLGjBE\n 337 \N 187.149.43.80 bfc25d4c-9845-46ac-9110-700db4f26249 2020-03-10 18:18:56.786838 31303 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-01 02:32:54.244897000 Z\n- &1 2020-03-07 18:30:23.924257000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-10 20:04:28.624460408 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\nsign_in_count:\n- 102\n- 103\n 209 \N 187.149.43.80 4d623944-67aa-4220-a44b-234eb04aba0e 2020-03-10 20:04:28.631854 31304 8 User \N \N 8 User \N update ---\nunique_session_id:\n- byTraxNkvs_5adwCmPd8\n- eQtgx_exuynrBDJmAArT\n 210 \N 187.149.43.80 4d623944-67aa-4220-a44b-234eb04aba0e 2020-03-10 20:04:28.647728 31305 299 Customer \N \N 8 User \N create ---\nnick_name: KATSIA QUIÑONEZ\nphone: "(667) 453-2595"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KATSIA QUIÑONEZ fue registrado. 187.149.43.80 3daa433d-90cb-4aac-bdbe-47f99ed564d7 2020-03-10 20:10:11.691025 31306 2314 Sale \N \N 8 User \N create ---\ncustomer_id: 299\nuser_id: 8\nopen_cash_register_id: 886\namount: !ruby/object:BigDecimal 18:0.1318E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1318E4\nstatus: 0\ndate_sale: 2020-03-10\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-872\nexpiration_date: 2020-04-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 3a8a4401-6348-4cfb-905d-9525f93e05c8 2020-03-10 20:10:27.739525 31307 1678 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.43.80 3a8a4401-6348-4cfb-905d-9525f93e05c8 2020-03-10 20:10:27.770355 31308 3148 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 886\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.45E3\nmove_type: '1'\nsale_id: 2314\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-872\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.45E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-872 187.149.43.80 bd509c24-637d-4865-bb1b-c156ac85e21f 2020-03-10 20:10:38.894927 31309 2314 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.43.80 634540f6-bb22-4c60-a3f6-8830d58e6386 2020-03-10 20:10:41.397972 31310 2315 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 886\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-03-10\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-873\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 9a3c1b1c-7745-4b27-84e2-7f5dbe8dedb3 2020-03-10 20:14:09.510775 31311 1672 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.43.80 9a3c1b1c-7745-4b27-84e2-7f5dbe8dedb3 2020-03-10 20:14:09.548944 31312 2315 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.80 f983585a-1b94-46bf-b9e9-8b0c40d4c6ea 2020-03-10 20:14:13.741817 31313 3149 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 886\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 2315\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-873\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-873 187.149.43.80 f983585a-1b94-46bf-b9e9-8b0c40d4c6ea 2020-03-10 20:14:13.766888 31314 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-09 01:16:25.181545000 Z\n- &1 2020-03-10 07:35:08.482047000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-10 20:53:52.434849603 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934189\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945865\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945865\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\nsign_in_count:\n- 1468\n- 1469\n 2938 \N 187.149.43.80 4686b01c-cd1c-4e40-9e8e-3539d81c14dc 2020-03-10 20:53:52.457307 31315 4 User \N \N 4 User \N update ---\nunique_session_id:\n- u4X52LN8wzAHrKqg4Q5e\n- UTVVPJZPxsoB1wDL3SzJ\n 2939 \N 187.149.43.80 4686b01c-cd1c-4e40-9e8e-3539d81c14dc 2020-03-10 20:53:52.483361 31316 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-10 01:05:03.432190000 Z\n- &1 2020-03-10 02:55:28.150221000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-10 20:57:50.828832382 Z\nsign_in_count:\n- 180\n- 181\n 363 \N 189.186.107.100 625cf16a-e8fc-410e-9b9a-83651f205a5c 2020-03-10 20:57:50.834939 31317 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 9WD72f_Nv9xaPdoAw8eG\n- 1-CpMHmKseiiSw49SxMy\n 364 \N 189.186.107.100 625cf16a-e8fc-410e-9b9a-83651f205a5c 2020-03-10 20:57:50.851557 31318 887 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.727E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 727.0 189.186.107.100 673ab10a-8087-4687-8f30-798e0c323a2b 2020-03-10 21:04:46.064086 31319 2316 Sale \N \N 21 User \N create ---\ncustomer_id: 298\nuser_id: 21\nopen_cash_register_id: 887\namount: !ruby/object:BigDecimal 18:0.399E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.399E3\nstatus: 0\ndate_sale: 2020-03-10\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-292\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.107.100 0a242672-23be-40bc-b796-79b4488a375d 2020-03-10 21:05:35.753877 31320 1545 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.107.100 0a242672-23be-40bc-b796-79b4488a375d 2020-03-10 21:05:35.79311 31321 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-07 18:30:23.924257000 Z\n- &1 2020-03-10 20:04:28.624460000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-10 21:33:12.713314288 Z\nsign_in_count:\n- 103\n- 104\n 211 \N 187.149.43.80 49b07d6b-be67-4ab9-94da-996222d75972 2020-03-10 21:33:12.719896 31322 8 User \N \N 8 User \N update ---\nunique_session_id:\n- eQtgx_exuynrBDJmAArT\n- KRHByXfvfsYwx4yQuCEn\n 212 \N 187.149.43.80 49b07d6b-be67-4ab9-94da-996222d75972 2020-03-10 21:33:12.736969 31323 1679 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.43.80 6f58922e-dc41-4a70-997b-d7c15d3c4423 2020-03-10 21:35:40.659355 31324 1679 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.43.80 6d52ce47-3155-4f16-84e1-fa8d0bd19939 2020-03-10 21:35:45.968754 31325 1649 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.43.80 ed151877-4a5a-4407-8ef7-e20fa95b8616 2020-03-10 21:36:52.965495 31326 1649 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.43.80 0c78f4c0-bf58-4842-8b68-8dbe218a2299 2020-03-10 21:36:58.074341 31327 512 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-03-10\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.43.80 902b6d51-d9c3-448b-b0bd-8981891fa60d 2020-03-10 21:36:59.578428 31328 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-10 07:35:08.482047000 Z\n- &1 2020-03-10 20:53:52.434849000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-10 21:41:39.516413718 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945865\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 1469\n- 1470\n 2940 \N 189.186.107.100 f154a544-066d-4afb-8dc5-f224b0dfc564 2020-03-10 21:41:39.525146 31329 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UTVVPJZPxsoB1wDL3SzJ\n- y9zkydEB_1yT_ZnHECLX\n 2941 \N 189.186.107.100 f154a544-066d-4afb-8dc5-f224b0dfc564 2020-03-10 21:41:39.544743 31330 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-03-10 02:51:19.077242000 Z\n- &1 2020-03-10 18:18:03.296252000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-10 21:42:50.063864007 Z\nsign_in_count:\n- 71\n- 72\n 144 \N 189.186.107.100 261de174-1210-4a5b-b8fb-d9127bdbb3e3 2020-03-10 21:42:50.070102 31331 25 User \N \N 25 User \N update ---\nunique_session_id:\n- yu-_BJzmgqQ58jP2NWYr\n- i15YsKQzbNbgb-xhpP9x\n 145 \N 189.186.107.100 261de174-1210-4a5b-b8fb-d9127bdbb3e3 2020-03-10 21:42:50.083871 31332 1624 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.43.80 5cda150f-462a-4e2a-af23-b96bcbbbb3a1 2020-03-10 21:45:39.686218 31333 1624 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.43.80 4b33dcb8-9054-4027-b715-315009cfed5a 2020-03-10 21:45:44.598258 31334 513 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-03-10\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.43.80 7cc97aa0-e488-40d4-895e-9bffeb4cbd5b 2020-03-10 21:45:45.986476 31335 2317 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 886\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2020-03-10\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-874\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 6b4ec8b1-2b4a-4c25-a9e4-6b174655a872 2020-03-10 22:26:11.377155 31336 694 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.43.80 6b4ec8b1-2b4a-4c25-a9e4-6b174655a872 2020-03-10 22:26:11.41362 31337 2317 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.80 0a8390ae-c847-44e3-b9a7-000930baf1fd 2020-03-10 22:26:42.553941 31338 3150 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 886\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 2317\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-874\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-874 187.149.43.80 0a8390ae-c847-44e3-b9a7-000930baf1fd 2020-03-10 22:26:42.581882 31339 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-10 20:53:52.434849000 Z\n- &1 2020-03-10 21:41:39.516413000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-10 22:58:51.439248703 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\nsign_in_count:\n- 1470\n- 1471\n 2942 \N 187.149.43.80 212d1da6-8d5f-405e-ba7f-129e6f42993c 2020-03-10 22:58:51.471294 31340 4 User \N \N 4 User \N update ---\nunique_session_id:\n- y9zkydEB_1yT_ZnHECLX\n- UzXNbkPJnpA9mq7aSgAj\n 2943 \N 187.149.43.80 212d1da6-8d5f-405e-ba7f-129e6f42993c 2020-03-10 22:58:51.504176 31341 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-10 20:04:28.624460000 Z\n- &1 2020-03-10 21:33:12.713314000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-10 23:29:08.003268483 Z\nsign_in_count:\n- 104\n- 105\n 213 \N 187.149.43.80 6081e1d8-e78e-47c4-86c8-ac8e392e74a8 2020-03-10 23:29:08.009865 31342 8 User \N \N 8 User \N update ---\nunique_session_id:\n- KRHByXfvfsYwx4yQuCEn\n- LmdGKJ_CWD67qczsdnoc\n 214 \N 187.149.43.80 6081e1d8-e78e-47c4-86c8-ac8e392e74a8 2020-03-10 23:29:08.026608 31343 2318 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 886\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-03-10\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-875\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 096641c3-270f-4021-84ac-965b11c60ef1 2020-03-10 23:34:12.429731 31344 1682 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.43.80 096641c3-270f-4021-84ac-965b11c60ef1 2020-03-10 23:34:12.469153 31345 2318 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.80 66d1394a-3dc1-4311-8b80-d7f5044706d1 2020-03-10 23:34:24.315838 31346 3151 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 886\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 2318\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-875\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-875 187.149.43.80 66d1394a-3dc1-4311-8b80-d7f5044706d1 2020-03-10 23:34:24.356088 31417 1642 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.107.100 b0c5372c-dd68-470b-9aaa-d533fa63aedc 2020-03-11 23:32:49.363805 31347 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-10 21:41:39.516413000 Z\n- &1 2020-03-10 22:58:51.439248000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-10 23:48:28.268248160 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\nsign_in_count:\n- 1471\n- 1472\n 2944 \N 187.149.43.80 2822aec7-3f15-4616-af78-d0b6e908093e 2020-03-10 23:48:28.297293 31348 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UzXNbkPJnpA9mq7aSgAj\n- NrZzZBxKcZ54F5yZ_r9v\n 2945 \N 187.149.43.80 2822aec7-3f15-4616-af78-d0b6e908093e 2020-03-10 23:48:28.323625 31349 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2020-02-14 20:28:30.326323000 Z\n- &1 2020-03-10 02:52:58.416500000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-10 23:52:47.259437755 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 69\n- 70\n 140 \N 189.186.107.100 d2c2fe8c-d7e4-4b01-b94a-297e94f30c86 2020-03-10 23:52:47.267106 31350 26 User \N \N 26 User \N update ---\nunique_session_id:\n- 1hXKjcuqv-C41Z6USxRT\n- TdBdT-bPzinBCokFcmBi\n 141 \N 189.186.107.100 d2c2fe8c-d7e4-4b01-b94a-297e94f30c86 2020-03-10 23:52:47.282941 31351 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-10 21:33:12.713314000 Z\n- &1 2020-03-10 23:29:08.003268000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-11 01:02:45.303366869 Z\nsign_in_count:\n- 105\n- 106\n 215 \N 187.149.43.80 2f7bf9ed-a7be-4adf-9b2d-5ba953dd1740 2020-03-11 01:02:45.309976 31352 8 User \N \N 8 User \N update ---\nunique_session_id:\n- LmdGKJ_CWD67qczsdnoc\n- p2q3t_Wt-8c2XUeh8UR6\n 216 \N 187.149.43.80 2f7bf9ed-a7be-4adf-9b2d-5ba953dd1740 2020-03-11 01:02:45.325395 31353 2319 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 886\namount: !ruby/object:BigDecimal 18:0.529E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.529E3\nstatus: 0\ndate_sale: 2020-03-10\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-876\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 f285233b-bc59-40df-9cec-f6a08180125d 2020-03-11 01:03:08.885504 31354 1668 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.43.80 f285233b-bc59-40df-9cec-f6a08180125d 2020-03-11 01:03:08.919951 31355 2319 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.80 79c7c462-ae22-4448-be6a-4b85a12bf4c1 2020-03-11 01:03:34.339938 31356 3152 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 886\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.529E3\nmove_type: '1'\nsale_id: 2319\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-876\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.55E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-876 187.149.43.80 79c7c462-ae22-4448-be6a-4b85a12bf4c1 2020-03-11 01:03:34.367706 31357 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-10 22:58:51.439248000 Z\n- &1 2020-03-10 23:48:28.268248000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-11 01:25:56.560323391 Z\nsign_in_count:\n- 1472\n- 1473\n 2946 \N 187.149.43.80 972382dc-d959-454c-9897-0714335f648f 2020-03-11 01:25:56.566477 31358 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NrZzZBxKcZ54F5yZ_r9v\n- xC95t5LB-pB_mh9tNP-3\n 2947 \N 187.149.43.80 972382dc-d959-454c-9897-0714335f648f 2020-03-11 01:25:56.583059 31359 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-10 23:29:08.003268000 Z\n- &1 2020-03-11 01:02:45.303366000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-11 01:41:54.382713991 Z\nsign_in_count:\n- 106\n- 107\n 217 \N 187.149.43.80 13ac9acf-e111-4743-8119-1f914a4e9a97 2020-03-11 01:41:54.389698 31360 8 User \N \N 8 User \N update ---\nunique_session_id:\n- p2q3t_Wt-8c2XUeh8UR6\n- SXXKY6rD7XC4oPs7q7yX\n 218 \N 187.149.43.80 13ac9acf-e111-4743-8119-1f914a4e9a97 2020-03-11 01:41:54.404424 31361 2320 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 886\namount: !ruby/object:BigDecimal 18:0.519E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.519E3\nstatus: 0\ndate_sale: 2020-03-10\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-877\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 f228d74a-94a7-4fe9-82b0-edcc84786c16 2020-03-11 01:42:58.215036 31362 1680 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.43.80 f228d74a-94a7-4fe9-82b0-edcc84786c16 2020-03-11 01:42:58.251096 31363 2320 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.80 822c644d-133a-4d08-8917-cae47b4b9a55 2020-03-11 01:43:05.734895 31364 3153 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 886\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.519E3\nmove_type: '1'\nsale_id: 2320\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-877\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.55E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-877 187.149.43.80 822c644d-133a-4d08-8917-cae47b4b9a55 2020-03-11 01:43:05.758851 31365 2321 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 886\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.849E3\nstatus: 0\ndate_sale: 2020-03-10\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-878\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 b0c1fbc6-9b47-4318-82ab-81aff6e17fdc 2020-03-11 01:46:54.894882 31366 1650 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.43.80 b0c1fbc6-9b47-4318-82ab-81aff6e17fdc 2020-03-11 01:46:54.923693 31367 2321 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.80 2c0b69ff-9093-478c-8bbd-7b8c8b5a0feb 2020-03-11 01:47:03.399309 31368 3154 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 886\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.849E3\nmove_type: '1'\nsale_id: 2321\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-878\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.849E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-878 187.149.43.80 2c0b69ff-9093-478c-8bbd-7b8c8b5a0feb 2020-03-11 01:47:03.42152 31369 505 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-10\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.43.80 38e6295a-bc25-4f8b-9ff8-756da0163950 2020-03-11 01:47:57.91855 31370 1763 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 1077\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.43.80 38e6295a-bc25-4f8b-9ff8-756da0163950 2020-03-11 01:47:57.943483 31371 508 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-10\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.43.80 db965541-72a4-41ae-a24a-02aea6a1545f 2020-03-11 01:48:05.775975 31372 1764 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 1079\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.43.80 db965541-72a4-41ae-a24a-02aea6a1545f 2020-03-11 01:48:05.798461 31373 2322 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 886\namount: !ruby/object:BigDecimal 18:0.129E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.129E3\nstatus: 0\ndate_sale: 2020-03-10\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-879\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.80 10128ae2-73fe-4588-b6f2-0ce67a88e839 2020-03-11 01:48:23.350433 31374 1764 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.43.80 10128ae2-73fe-4588-b6f2-0ce67a88e839 2020-03-11 01:48:23.380777 31375 2322 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.80 01872c2b-7178-45e0-a06a-dd13be292f1b 2020-03-11 01:48:29.139693 31376 3155 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 886\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.129E3\nmove_type: '1'\nsale_id: 2322\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-879\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.129E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-879 187.149.43.80 01872c2b-7178-45e0-a06a-dd13be292f1b 2020-03-11 01:48:29.161491 31377 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-10 23:48:28.268248000 Z\n- &1 2020-03-11 01:25:56.560323000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-11 01:53:03.186591528 Z\nsign_in_count:\n- 1473\n- 1474\n 2948 \N 187.149.43.80 4816030f-a435-4a80-82b6-25bda1fafd63 2020-03-11 01:53:03.192963 31378 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xC95t5LB-pB_mh9tNP-3\n- QDhhRV5PKAZbh-VqaWqx\n 2949 \N 187.149.43.80 4816030f-a435-4a80-82b6-25bda1fafd63 2020-03-11 01:53:03.210057 31379 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-11 01:25:56.560323000 Z\n- &1 2020-03-11 01:53:03.186591000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-11 02:15:14.562909839 Z\nsign_in_count:\n- 1474\n- 1475\n 2950 \N 187.149.43.80 61239b77-a1ce-40f2-9e35-052f4c086cc7 2020-03-11 02:15:14.569565 31380 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QDhhRV5PKAZbh-VqaWqx\n- 2ih9Hc27Tm9Y9_qL-bsa\n 2951 \N 187.149.43.80 61239b77-a1ce-40f2-9e35-052f4c086cc7 2020-03-11 02:15:14.588017 31381 907 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 884\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.849E3\nphysical_cash: !ruby/object:BigDecimal 18:0.849E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.43.80 1b0c90fd-a33d-4983-ab6a-2ef38d15de92 2020-03-11 02:20:59.70561 31382 884 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.43.80 1b0c90fd-a33d-4983-ab6a-2ef38d15de92 2020-03-11 02:20:59.721391 31383 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-11 01:02:45.303366000 Z\n- &1 2020-03-11 01:41:54.382713000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-11 02:52:08.156530392 Z\nsign_in_count:\n- 107\n- 108\n 219 \N 187.149.43.80 16413e5c-4de6-4d5c-aa23-e0ce538b8f1d 2020-03-11 02:52:08.162638 31384 8 User \N \N 8 User \N update ---\nunique_session_id:\n- SXXKY6rD7XC4oPs7q7yX\n- i-Fnbqbx_pWzQiN9b1es\n 220 \N 187.149.43.80 16413e5c-4de6-4d5c-aa23-e0ce538b8f1d 2020-03-11 02:52:08.177568 31385 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-10 02:55:28.150221000 Z\n- &1 2020-03-10 20:57:50.828832000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-11 02:56:48.133868991 Z\nsign_in_count:\n- 181\n- 182\n 365 \N 189.186.107.100 18341fc5-10b3-4e5b-8fb2-050c5da0f90b 2020-03-11 02:56:48.140322 31386 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 1-CpMHmKseiiSw49SxMy\n- NCKr8QyR_YxB7u3xQZLM\n 366 \N 189.186.107.100 18341fc5-10b3-4e5b-8fb2-050c5da0f90b 2020-03-11 02:56:48.157187 31387 908 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 886\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.5473E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.53E4\ncash_fund: !ruby/object:BigDecimal 18:0.94E3\nphysical_cash: !ruby/object:BigDecimal 18:0.624E4\nobservations: FALTA PONER $41 DE KEYLA\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.43.80 89199b2e-c951-4d93-848a-93b54333f932 2020-03-11 02:58:20.068131 31388 886 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.43.80 89199b2e-c951-4d93-848a-93b54333f932 2020-03-11 02:58:20.082551 31389 909 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 887\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.727E3\nphysical_cash: !ruby/object:BigDecimal 18:0.727E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.107.100 81a9854a-d28b-4057-a361-8a1a2792c1b3 2020-03-11 03:02:20.701637 31390 887 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.107.100 81a9854a-d28b-4057-a361-8a1a2792c1b3 2020-03-11 03:02:20.718745 31391 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-08 19:00:08.627844000 Z\n- &1 2020-03-10 17:08:20.508021000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-11 17:33:43.161799418 Z\nsign_in_count:\n- 500\n- 501\n 1005 \N 187.149.43.80 ada88605-487b-4942-a3b5-e3da3185a40a 2020-03-11 17:33:43.192035 31392 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Dsjs6dkgy6E1vzMvJs39\n- yYw7S1FsKK-pZiJQJWcX\n 1006 \N 187.149.43.80 ada88605-487b-4942-a3b5-e3da3185a40a 2020-03-11 17:33:43.215816 31393 3156 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 658\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 1626\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.43.80 7a142bda-8590-48bf-b342-09a343c39756 2020-03-11 17:34:31.677031 31394 3156 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 658\n- \n 2 movimiento de efectivo por venta con folio PV1-V-831 187.149.43.80 7a142bda-8590-48bf-b342-09a343c39756 2020-03-11 17:34:31.706097 31395 888 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.849E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 849.0 187.149.43.80 75c8867b-0e81-4230-b4d9-50e90a3374a8 2020-03-11 17:52:41.469138 31396 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-11 01:53:03.186591000 Z\n- &1 2020-03-11 02:15:14.562909000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-11 18:38:08.104367895 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946493\n mask_addr: 4294967295\nsign_in_count:\n- 1475\n- 1476\n 2952 \N 200.68.182.253 5babd924-cc0d-405e-b774-e1c19248b84f 2020-03-11 18:38:08.112381 31397 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2ih9Hc27Tm9Y9_qL-bsa\n- SG9e2Lycgs4XcezG9RQj\n 2953 \N 200.68.182.253 5babd924-cc0d-405e-b774-e1c19248b84f 2020-03-11 18:38:08.136457 31398 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-11 02:15:14.562909000 Z\n- &1 2020-03-11 18:38:08.104367000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-11 18:41:19.631553742 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946493\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946493\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 1476\n- 1477\n 2954 \N 189.186.107.100 ca06047b-a820-4f3a-a613-a59b778be645 2020-03-11 18:41:19.640049 31399 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SG9e2Lycgs4XcezG9RQj\n- BvrpWBzgF7bXFdX7GKCK\n 2955 \N 189.186.107.100 ca06047b-a820-4f3a-a613-a59b778be645 2020-03-11 18:41:19.659334 31400 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-11 18:38:08.104367000 Z\n- &1 2020-03-11 18:41:19.631553000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-11 19:05:15.636381693 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946493\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946493\n mask_addr: 4294967295\nsign_in_count:\n- 1477\n- 1478\n 2956 \N 200.68.182.253 e0d3c958-a022-4e1f-b7d4-95ce5b4ce9c9 2020-03-11 19:05:15.644834 31401 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BvrpWBzgF7bXFdX7GKCK\n- D-Uf87-XUe3C8QpE-5Uo\n 2957 \N 200.68.182.253 e0d3c958-a022-4e1f-b7d4-95ce5b4ce9c9 2020-03-11 19:05:15.664863 31402 2323 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 888\namount: !ruby/object:BigDecimal 18:0.399E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.299E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-03-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1150\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 22059996-145b-442e-b287-fde050a45853 2020-03-11 22:22:58.19951 31403 631 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.1.123 22059996-145b-442e-b287-fde050a45853 2020-03-11 22:22:58.235563 31404 2323 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.123 d73a6000-b812-47ec-af68-417f77816559 2020-03-11 22:23:02.036114 31405 3157 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 888\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2323\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1150\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1150 189.186.1.123 d73a6000-b812-47ec-af68-417f77816559 2020-03-11 22:23:02.059041 31406 301 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 888\nquantity: !ruby/object:BigDecimal 18:0.1E3\nstatus: 1\nobservations: IVAN POLICIA\nexpense_date: 2020-03-11\nexpense_code: PV1-E-208\n 1 Egreso por 100.0 registrado 189.186.1.123 62bd4ae0-e173-4dcd-9920-c8d91497e0aa 2020-03-11 22:24:40.680441 31407 3158 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 888\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 301\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.1.123 62bd4ae0-e173-4dcd-9920-c8d91497e0aa 2020-03-11 22:24:40.702961 31408 2324 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 888\namount: !ruby/object:BigDecimal 18:0.87141E3\ntax: !ruby/object:BigDecimal 18:0.2759E2\ndiscount: !ruby/object:BigDecimal 18:0.699E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-03-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1151\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 5358b480-8515-4aec-af95-4cdeca8187bd 2020-03-11 23:04:46.93504 31409 760 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.1.123 5358b480-8515-4aec-af95-4cdeca8187bd 2020-03-11 23:04:46.967171 31410 2324 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.123 7375cf94-2db5-467f-8dd6-25909beaef2e 2020-03-11 23:04:51.89689 31411 3159 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 888\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2324\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1151\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1151 189.186.1.123 7375cf94-2db5-467f-8dd6-25909beaef2e 2020-03-11 23:04:51.919575 31412 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-10 20:57:50.828832000 Z\n- &1 2020-03-11 02:56:48.133868000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-11 23:15:20.910630813 Z\nsign_in_count:\n- 182\n- 183\n 367 \N 189.186.107.100 97c188ec-54e3-4443-b983-2425270f9132 2020-03-11 23:15:20.917728 31413 21 User \N \N 21 User \N update ---\nunique_session_id:\n- NCKr8QyR_YxB7u3xQZLM\n- zXsocjBB8RqUt2RbdY8H\n 368 \N 189.186.107.100 97c188ec-54e3-4443-b983-2425270f9132 2020-03-11 23:15:20.933043 31414 889 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.727E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 727.0 189.186.107.100 6f4917a3-d640-4003-9aa4-ecc83b1f2114 2020-03-11 23:15:42.676609 31415 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-11 18:41:19.631553000 Z\n- &1 2020-03-11 19:05:15.636381000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-11 23:29:43.106436529 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946493\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946493\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 1478\n- 1479\n 2958 \N 189.186.107.100 8755f2ec-ac96-41e5-a0aa-55645f896986 2020-03-11 23:29:43.138411 31416 4 User \N \N 4 User \N update ---\nunique_session_id:\n- D-Uf87-XUe3C8QpE-5Uo\n- KrCs5mswpbx9j2qL4_2q\n 2959 \N 189.186.107.100 8755f2ec-ac96-41e5-a0aa-55645f896986 2020-03-11 23:29:43.166006 31418 1646 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.107.100 74afe9ce-bdb1-40ba-8923-f1f2cfa99445 2020-03-11 23:33:10.547408 31419 1646 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.107.100 23b38153-c503-4f7f-8216-a5960be2b542 2020-03-11 23:33:14.573727 31420 514 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-03-11\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.107.100 e61e6826-6001-4f2c-8529-01c51bfb3bb3 2020-03-11 23:33:15.834548 31421 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-11 02:56:48.133868000 Z\n- &1 2020-03-11 23:15:20.910630000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-11 23:33:35.933707949 Z\nsign_in_count:\n- 183\n- 184\n 369 \N 189.186.107.100 3ce91364-8bc4-4011-8516-b863eb02e9d0 2020-03-11 23:33:35.93968 31422 21 User \N \N 21 User \N update ---\nunique_session_id:\n- zXsocjBB8RqUt2RbdY8H\n- MRYCrxqxcxLxD9xGvBf6\n 370 \N 189.186.107.100 3ce91364-8bc4-4011-8516-b863eb02e9d0 2020-03-11 23:33:35.953814 31423 514 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-11\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.107.100 185e3b64-1937-40f4-83c9-c91cf9960465 2020-03-11 23:33:47.85514 31424 1765 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 991\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 185e3b64-1937-40f4-83c9-c91cf9960465 2020-03-11 23:33:47.887763 31425 1766 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 995\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 185e3b64-1937-40f4-83c9-c91cf9960465 2020-03-11 23:33:47.922884 31426 509 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-11\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.107.100 16900c3b-fcb4-4c08-99c5-03a308f4097a 2020-03-11 23:34:34.341172 31427 1767 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1079\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 16900c3b-fcb4-4c08-99c5-03a308f4097a 2020-03-11 23:34:34.362599 31428 507 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-11\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.107.100 a3ff0c0d-fd29-49b6-b9e3-1edda8205ff1 2020-03-11 23:34:42.313534 31429 1768 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1077\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 a3ff0c0d-fd29-49b6-b9e3-1edda8205ff1 2020-03-11 23:34:42.336567 31430 503 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-11\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.107.100 aaec21c9-c07c-4004-880f-3f00ab2d6c74 2020-03-11 23:34:48.684135 31431 1769 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1053\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 aaec21c9-c07c-4004-880f-3f00ab2d6c74 2020-03-11 23:34:48.714617 31432 501 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-11\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.107.100 f97fc32b-d8e0-4dbb-a375-628991b83581 2020-03-11 23:34:59.853763 31433 1770 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1047\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 f97fc32b-d8e0-4dbb-a375-628991b83581 2020-03-11 23:34:59.873254 31434 498 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-11\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.107.100 cfd64ee2-1993-4b92-9694-db16f49a3a38 2020-03-11 23:35:07.275851 31435 1771 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1033\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 cfd64ee2-1993-4b92-9694-db16f49a3a38 2020-03-11 23:35:07.301889 31436 495 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-11\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.107.100 3637f873-aa86-4e64-8fd0-20b3fd45a814 2020-03-11 23:35:13.973402 31437 1772 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1032\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 3637f873-aa86-4e64-8fd0-20b3fd45a814 2020-03-11 23:35:13.995038 31438 493 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-11\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.107.100 1551f63f-9c58-44c4-a7bd-f84f634b10a5 2020-03-11 23:35:21.221022 31439 1773 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1029\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 1551f63f-9c58-44c4-a7bd-f84f634b10a5 2020-03-11 23:35:21.241881 31440 486 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-11\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.107.100 d6777550-92c1-4fb2-98b7-43fcd7678674 2020-03-11 23:35:32.514085 31441 1774 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 161\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 d6777550-92c1-4fb2-98b7-43fcd7678674 2020-03-11 23:35:32.536555 31442 1658 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.107.100 d6777550-92c1-4fb2-98b7-43fcd7678674 2020-03-11 23:35:32.555809 31443 485 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-11\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.107.100 f4a537f8-a969-4ff1-9c53-ada4c0a774c4 2020-03-11 23:35:42.270942 31444 1775 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 416\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 f4a537f8-a969-4ff1-9c53-ada4c0a774c4 2020-03-11 23:35:42.291574 31445 484 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-11\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.107.100 a4789ff6-ebaa-4d3f-9705-f73c17f8b31b 2020-03-11 23:35:50.050887 31446 1657 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.107.100 a4789ff6-ebaa-4d3f-9705-f73c17f8b31b 2020-03-11 23:35:50.068112 31447 2325 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 889\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-03-11\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-293\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.107.100 8c5a5a7c-8d55-41c0-9513-baf87ed9037e 2020-03-11 23:36:22.963971 31448 1765 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.107.100 8c5a5a7c-8d55-41c0-9513-baf87ed9037e 2020-03-11 23:36:22.994924 31449 2325 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.107.100 851a1067-a9b0-4321-bb4e-d6431236eb39 2020-03-11 23:36:27.474525 31450 3160 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 889\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 2325\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-293\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-293 189.186.107.100 851a1067-a9b0-4321-bb4e-d6431236eb39 2020-03-11 23:36:27.502234 31451 2326 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 889\namount: !ruby/object:BigDecimal 18:0.299E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.299E3\nstatus: 0\ndate_sale: 2020-03-11\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-294\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.107.100 a1dd1d29-90df-4448-9df5-732cec048080 2020-03-12 01:10:00.31984 31452 1772 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 a1dd1d29-90df-4448-9df5-732cec048080 2020-03-12 01:10:00.368255 31453 2326 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.107.100 04812e2a-e04b-47a8-a437-da1427b3a08d 2020-03-12 01:10:24.016298 31454 3161 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 889\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.299E3\nmove_type: '1'\nsale_id: 2326\ncardnumber: 2156\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-294\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-294 189.186.107.100 04812e2a-e04b-47a8-a437-da1427b3a08d 2020-03-12 01:10:24.041267 31455 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-03-08 18:50:23.529176000 Z\n- &1 2020-03-08 21:55:18.217015000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-12 01:41:07.389524506 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\nsign_in_count:\n- 127\n- 128\n 256 \N 189.186.1.123 7cc661e5-4a65-4e11-a2d4-53201680222e 2020-03-12 01:41:07.397765 31456 27 User \N \N 27 User \N update ---\nunique_session_id:\n- M_XHxko6ssYfsKTNAzGs\n- upYV_7AkTyhKmtGzurz8\n 257 \N 189.186.1.123 7cc661e5-4a65-4e11-a2d4-53201680222e 2020-03-12 01:41:07.414343 31457 890 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.94E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 940.0 189.186.1.123 d917cc80-f8bf-409d-9ffc-09c2edd19879 2020-03-12 01:41:18.418292 31458 2327 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 890\namount: !ruby/object:BigDecimal 18:0.884E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.884E3\nstatus: 0\ndate_sale: 2020-03-11\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-880\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 3cbcf665-be7e-451f-8e28-88787f767b97 2020-03-12 01:42:26.167237 31459 1686 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.1.123 3cbcf665-be7e-451f-8e28-88787f767b97 2020-03-12 01:42:26.196407 31460 1338 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.1.123 3cbcf665-be7e-451f-8e28-88787f767b97 2020-03-12 01:42:26.22353 31461 2327 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.123 dc737308-1669-4519-9251-d003ba096edd 2020-03-12 01:43:04.671952 31462 3162 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 890\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.884E3\nmove_type: '1'\nsale_id: 2327\ncardnumber: 1227\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-880\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-880 189.186.1.123 dc737308-1669-4519-9251-d003ba096edd 2020-03-12 01:43:04.696012 31463 3163 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 889\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1699E4\nmove_type: '1'\nsale_id: 2198\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SUOCEN\n 1 movimiento de efectivo por venta con folio PV3-V-270 189.186.107.100 0e5955b1-40ac-4ca3-92b5-10b9e1d72701 2020-03-12 01:50:05.310149 31464 2198 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.107.100 8b8f0376-24fc-41de-81de-07036acdfe66 2020-03-12 01:50:12.531992 31465 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-11 19:05:15.636381000 Z\n- &1 2020-03-11 23:29:43.106436000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-12 01:51:25.009645554 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946493\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946406\n mask_addr: 4294967295\nsign_in_count:\n- 1479\n- 1480\n 2960 \N 200.68.182.166 74e92a79-01b9-40fa-8689-a9e72113e491 2020-03-12 01:51:25.03098 31466 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KrCs5mswpbx9j2qL4_2q\n- tMU83qS1ohNvrVR7pBD6\n 2961 \N 200.68.182.166 74e92a79-01b9-40fa-8689-a9e72113e491 2020-03-12 01:51:25.052138 31467 2328 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 889\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-03-11\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-295\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.107.100 ab12508a-9d0e-475e-811a-79fdc2037242 2020-03-12 02:13:39.192222 31468 879 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.107.100 ab12508a-9d0e-475e-811a-79fdc2037242 2020-03-12 02:13:39.221168 31469 2328 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.107.100 428e590b-c485-4236-b05c-655be443951b 2020-03-12 02:14:05.034217 31470 3164 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 889\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2328\ncardnumber: 3764\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-295\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-295 189.186.107.100 428e590b-c485-4236-b05c-655be443951b 2020-03-12 02:14:05.057373 31471 910 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 888\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3E3\namount_out: !ruby/object:BigDecimal 18:0.1E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.949E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1649E4\nobservations: NO SE REFLEJO EN EL CORTE $600 ABONO DE PAOLA SI SE REFLEJO EN SU CUENTA\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.1.123 940a141a-0a29-4ff7-8de7-bd1f4464515d 2020-03-12 02:23:28.781641 31472 888 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.1.123 940a141a-0a29-4ff7-8de7-bd1f4464515d 2020-03-12 02:23:28.795288 31473 911 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 890\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.884E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.94E3\nphysical_cash: !ruby/object:BigDecimal 18:0.94E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.1.123 469446a6-6dfd-41e7-b01f-80f918b3860f 2020-03-12 02:32:29.346808 31474 890 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.1.123 469446a6-6dfd-41e7-b01f-80f918b3860f 2020-03-12 02:32:29.367912 31475 891 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.949E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 949.0 189.186.1.123 f5593f79-f9b8-4915-9f2c-89914dbfd1c2 2020-03-12 02:35:14.472334 31476 2329 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 891\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-03-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1152\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 1f2adc90-d2c9-4cd8-add8-54a068bb217c 2020-03-12 02:37:31.284979 31477 1155 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 189.186.1.123 1f2adc90-d2c9-4cd8-add8-54a068bb217c 2020-03-12 02:37:31.317224 31478 2329 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.123 ce6634ff-8f1a-4c1c-9d52-59132364994d 2020-03-12 02:37:51.624191 31479 3165 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 891\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 2329\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1152\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1152 189.186.1.123 ce6634ff-8f1a-4c1c-9d52-59132364994d 2020-03-12 02:37:51.659158 31480 912 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 891\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1199E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.948E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2148E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.1.123 3dabe18b-277b-4078-ab6e-314bc0343b40 2020-03-12 02:39:10.425365 31481 891 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.1.123 3dabe18b-277b-4078-ab6e-314bc0343b40 2020-03-12 02:39:10.443956 31482 913 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 889\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.4196E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.926E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1426E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.107.100 055a52cb-e42b-4b34-8392-4387e18e594b 2020-03-12 03:02:40.967484 31483 889 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.107.100 055a52cb-e42b-4b34-8392-4387e18e594b 2020-03-12 03:02:40.992732 31484 1525 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.107.100 acc6e49a-32b2-4374-99f0-990c9af16dbc 2020-03-12 03:03:32.110283 31485 1525 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.107.100 7a7eb06a-dc25-4270-8fbe-d42f6bfb7df3 2020-03-12 03:03:36.921263 31486 1526 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.107.100 c9a98a90-1e05-48a0-adce-c83510dee48f 2020-03-12 03:03:42.896357 31487 1526 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.107.100 a6fc08c4-0176-4f2c-8b5a-9d0d16c10e2c 2020-03-12 03:03:45.489568 31488 1534 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.107.100 0f0a3abe-4de3-4686-95d8-529180b4c7c6 2020-03-12 03:03:53.863512 31489 1534 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.107.100 f70168c3-be43-459b-9e13-338e842c7f6f 2020-03-12 03:03:56.799548 31490 1472 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.107.100 6b35fe83-2d9b-49bf-979f-db35ebd1a9f9 2020-03-12 03:04:05.4752 31491 1472 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.107.100 8339fabf-9059-49e9-80cf-6235c030d677 2020-03-12 03:04:08.47074 31492 1665 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 62c26072-6a56-4a0a-91ad-b12b886a694f 2020-03-12 03:04:16.120528 31493 1665 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.107.100 7b815dfb-f391-4347-b13e-728eb2bb3291 2020-03-12 03:04:19.604793 31494 1666 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.107.100 aea8ec47-7e4b-4a29-b02c-6b9a83e24582 2020-03-12 03:04:26.339719 31495 515 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2020-03-11\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 189.186.107.100 f5200b07-c715-4528-817a-e96460392b05 2020-03-12 03:04:35.117569 31496 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-11 01:41:54.382713000 Z\n- &1 2020-03-11 02:52:08.156530000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-12 18:33:38.034817984 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\nsign_in_count:\n- 108\n- 109\n 221 \N 189.186.1.123 bc754b18-cea5-464a-aad5-64fd3e2bcf1f 2020-03-12 18:33:38.069807 31497 8 User \N \N 8 User \N update ---\nunique_session_id:\n- i-Fnbqbx_pWzQiN9b1es\n- 6jyCV95LLqAeLC7aG7ny\n 222 \N 189.186.1.123 bc754b18-cea5-464a-aad5-64fd3e2bcf1f 2020-03-12 18:33:38.107574 31498 1217 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.1.123 a3960f97-0121-435f-a132-5564e9ec9906 2020-03-12 18:38:13.377312 31499 1217 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.1.123 0c8aeaf7-bb27-4d68-9d8e-2b0497388f53 2020-03-12 18:38:19.619373 31500 516 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-03-12\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.1.123 e9fe6987-158b-4a1a-98aa-b2541293d0fc 2020-03-12 18:38:19.800921 31501 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-11 23:29:43.106436000 Z\n- &1 2020-03-12 01:51:25.009645000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-12 20:18:26.985582651 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946406\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946406\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\nsign_in_count:\n- 1480\n- 1481\n 2962 \N 189.186.1.123 fda0be53-414a-4a23-8e38-e8439ecfcbf8 2020-03-12 20:18:26.994594 31502 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tMU83qS1ohNvrVR7pBD6\n- xyRhLTbRLNHE2UomxsWn\n 2963 \N 189.186.1.123 fda0be53-414a-4a23-8e38-e8439ecfcbf8 2020-03-12 20:18:27.020734 31503 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-11 23:15:20.910630000 Z\n- &1 2020-03-11 23:33:35.933707000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-12 20:59:42.552687034 Z\nsign_in_count:\n- 184\n- 185\n 371 \N 189.186.107.100 a045455b-3df1-4319-ac9c-28a5f42144d4 2020-03-12 20:59:42.559576 31504 21 User \N \N 21 User \N update ---\nunique_session_id:\n- MRYCrxqxcxLxD9xGvBf6\n- 7eHxfr9AFpgrdzMYXeFB\n 372 \N 189.186.107.100 a045455b-3df1-4319-ac9c-28a5f42144d4 2020-03-12 20:59:42.585223 31505 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-12 01:51:25.009645000 Z\n- &1 2020-03-12 20:18:26.985582000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-12 21:07:50.973717736 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946406\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 1481\n- 1482\n 2964 \N 189.186.107.100 124c214e-cde9-4969-a3a6-40a5f26e9914 2020-03-12 21:07:50.981405 31506 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xyRhLTbRLNHE2UomxsWn\n- fjoSJZ47wJ4Su5tHRYY5\n 2965 \N 189.186.107.100 124c214e-cde9-4969-a3a6-40a5f26e9914 2020-03-12 21:07:50.999406 31507 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-12 20:18:26.985582000 Z\n- &1 2020-03-12 21:07:50.973717000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-12 22:20:34.367336032 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\nsign_in_count:\n- 1482\n- 1483\n 2966 \N 189.186.1.123 0ae2611a-9be1-4f85-b4d2-3216a6d8d0a1 2020-03-12 22:20:34.375396 31508 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fjoSJZ47wJ4Su5tHRYY5\n- qP-LwQrdqyoZzYtLFEsh\n 2967 \N 189.186.1.123 0ae2611a-9be1-4f85-b4d2-3216a6d8d0a1 2020-03-12 22:20:34.394093 31509 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-12 21:07:50.973717000 Z\n- &1 2020-03-12 22:20:34.367336000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-12 22:56:01.862732351 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 1483\n- 1484\n 2968 \N 189.186.107.100 1b9ffc41-88ef-4e05-9a48-773509ca1e79 2020-03-12 22:56:01.872191 31510 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qP-LwQrdqyoZzYtLFEsh\n- u9ikL2RQxuKsz8jjWsma\n 2969 \N 189.186.107.100 1b9ffc41-88ef-4e05-9a48-773509ca1e79 2020-03-12 22:56:01.898683 31511 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-11 23:33:35.933707000 Z\n- &1 2020-03-12 20:59:42.552687000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-12 23:24:55.243123888 Z\nsign_in_count:\n- 185\n- 186\n 373 \N 189.186.107.100 52b4e18d-b6c7-4694-99d8-c5463e15225e 2020-03-12 23:24:55.249095 31512 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 7eHxfr9AFpgrdzMYXeFB\n- TmUbboNjFLN4bqWznpo2\n 374 \N 189.186.107.100 52b4e18d-b6c7-4694-99d8-c5463e15225e 2020-03-12 23:24:55.263012 31513 23 Seller \N \N 21 User \N create ---\npointsale_id: 3\nname: KEYLA\nlast_name: LIZARRAGA\nstatus: 1\n 1 El vendedor KEYLA LIZARRAGA fue registrado. 189.186.107.100 b1333ffd-f384-4eed-999d-6b93f80ed2b7 2020-03-12 23:25:12.914684 31514 892 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.926E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 926.0 189.186.107.100 1945ad02-129f-4321-b29a-30a20cf71812 2020-03-12 23:25:26.255711 46491 1479 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1479'\n is_parent: false\n sku: CAR-1479\n name: 2BICV20367\n description: CARTERA LETRAS\n price_base: '449.5'\n price_sale: '899.0'\n img_product: B3588FC3-FFAA-41C5-AED1-51F0C127D085.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170821925'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-29 23:19:37.13414'\n updated_at: &12 2020-11-21 19:56:07.461774983 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1479'\n sku: CAR-1479\n name: 2BICV20367\n description: CARTERA LETRAS\n price_base: '449.50'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-29 23:19:37.13414'\n updated_at: '2020-10-29 23:19:37.13414'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170821925'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1479'\n type: *3\n value: 1479\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-1479\n type: *7\n value: CAR-1479\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 2BICV20367\n type: *8\n value: 2BICV20367\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA LETRAS\n type: *6\n value: CARTERA LETRAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '449.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: B3588FC3-FFAA-41C5-AED1-51F0C127D085.jpeg\n type: *2\n value: B3588FC3-FFAA-41C5-AED1-51F0C127D085.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170821925'\n type: *2\n value: '7509170821925'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-29 23:19:37.13414'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- B3588FC3-FFAA-41C5-AED1-51F0C127D085.jpeg\n 2 El producto CAR-1479 fue modificado. 189.186.1.223 4a866175-c55c-49e2-80a4-f91377887738 2020-11-21 19:56:07.504101 31515 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-12 22:20:34.367336000 Z\n- &1 2020-03-12 22:56:01.862732000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-12 23:27:42.218754298 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\nsign_in_count:\n- 1484\n- 1485\n 2970 \N 189.186.1.123 6c3f6819-8fe7-4f57-b7e0-5f00e0876a0c 2020-03-12 23:27:42.227146 31516 4 User \N \N 4 User \N update ---\nunique_session_id:\n- u9ikL2RQxuKsz8jjWsma\n- A9sXBiXn_4rYRm2iMsdn\n 2971 \N 189.186.1.123 6c3f6819-8fe7-4f57-b7e0-5f00e0876a0c 2020-03-12 23:27:42.247498 31517 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-11 02:52:08.156530000 Z\n- &1 2020-03-12 18:33:38.034817000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-12 23:50:04.683030723 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\nsign_in_count:\n- 109\n- 110\n 223 \N 189.186.1.123 9474fcf7-62ce-48c8-8c00-b1e9d4bd4bb4 2020-03-12 23:50:04.689941 31518 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 6jyCV95LLqAeLC7aG7ny\n- CcX-JSoKyoDaDXJhhFRb\n 224 \N 189.186.1.123 9474fcf7-62ce-48c8-8c00-b1e9d4bd4bb4 2020-03-12 23:50:04.705035 31519 893 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.94E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 940.0 189.186.1.123 a6dfd7f1-fa9a-475a-86d3-d4d3a4d50dc2 2020-03-12 23:50:18.192693 31520 2330 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 893\namount: !ruby/object:BigDecimal 18:0.45603E3\ntax: !ruby/object:BigDecimal 18:0.7296E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.52899E3\nstatus: 0\ndate_sale: 2020-03-12\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-881\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 0b137e51-5591-4766-84bb-5a464b37af20 2020-03-12 23:50:35.290724 31521 438 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 189.186.1.123 0b137e51-5591-4766-84bb-5a464b37af20 2020-03-12 23:50:35.320087 31522 2330 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.123 f5b709d5-ac40-40c7-832b-977f907f4a15 2020-03-12 23:51:31.865892 31523 3166 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 893\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.52899E3\nmove_type: '1'\nsale_id: 2330\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-881\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.7101E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-881 189.186.1.123 f5b709d5-ac40-40c7-832b-977f907f4a15 2020-03-12 23:51:31.890913 31524 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-12 22:56:01.862732000 Z\n- &1 2020-03-12 23:27:42.218754000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-13 00:16:30.815651217 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 1485\n- 1486\n 2972 \N 189.186.107.100 60228292-9785-4b34-93e5-4c140d3a1eb2 2020-03-13 00:16:30.823611 31525 4 User \N \N 4 User \N update ---\nunique_session_id:\n- A9sXBiXn_4rYRm2iMsdn\n- HZ76xmPnXo9ZsKsMv4Gc\n 2973 \N 189.186.107.100 60228292-9785-4b34-93e5-4c140d3a1eb2 2020-03-13 00:16:30.842536 31526 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-12 23:27:42.218754000 Z\n- &1 2020-03-13 00:16:30.815651000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-13 01:02:28.223949970 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\nsign_in_count:\n- 1486\n- 1487\n 2974 \N 189.186.1.123 b678381c-5be7-4807-96f8-ed7da502d275 2020-03-13 01:02:28.231857 31527 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HZ76xmPnXo9ZsKsMv4Gc\n- q_X2fyLU62eFmBWn57EY\n 2975 \N 189.186.1.123 b678381c-5be7-4807-96f8-ed7da502d275 2020-03-13 01:02:28.25513 31528 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-12 20:59:42.552687000 Z\n- &1 2020-03-12 23:24:55.243123000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-13 01:19:35.064288639 Z\nsign_in_count:\n- 186\n- 187\n 375 \N 189.186.107.100 e7dcaf6f-4626-4636-ad30-40a96d90224e 2020-03-13 01:19:35.070588 31529 21 User \N \N 21 User \N update ---\nunique_session_id:\n- TmUbboNjFLN4bqWznpo2\n- r8bNVgucHfkwjETbUSSr\n 376 \N 189.186.107.100 e7dcaf6f-4626-4636-ad30-40a96d90224e 2020-03-13 01:19:35.084765 31530 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-03-07 19:17:35.358172000 Z\n- &1 2020-03-10 18:18:56.762112000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-13 02:21:11.492543514 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\nsign_in_count:\n- 168\n- 169\n 338 \N 189.186.1.123 565c2f26-e85e-47c9-971c-32dcedf96440 2020-03-13 02:21:11.500678 31531 1 User \N \N 1 User \N update ---\nunique_session_id:\n- bvvEQoCS5gcbNmGLGjBE\n- pyqAfPR5xWWwQcpt6Ze2\n 339 \N 189.186.1.123 565c2f26-e85e-47c9-971c-32dcedf96440 2020-03-13 02:21:11.516551 31532 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-12 18:33:38.034817000 Z\n- &1 2020-03-12 23:50:04.683030000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-13 02:25:37.013786322 Z\nsign_in_count:\n- 110\n- 111\n 225 \N 189.186.1.123 e31b4f4c-292e-43e0-af6b-7610c5518858 2020-03-13 02:25:37.019778 31533 8 User \N \N 8 User \N update ---\nunique_session_id:\n- CcX-JSoKyoDaDXJhhFRb\n- FLqcryy7TvMLhJjKsxze\n 226 \N 189.186.1.123 e31b4f4c-292e-43e0-af6b-7610c5518858 2020-03-13 02:25:37.033973 31534 2331 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 893\namount: !ruby/object:BigDecimal 18:0.1288E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1288E4\nstatus: 0\ndate_sale: 2020-03-12\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-882\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 99908e8c-cd7d-4c78-ae90-7d5d3e8e8960 2020-03-13 02:32:16.391366 31535 1671 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.1.123 99908e8c-cd7d-4c78-ae90-7d5d3e8e8960 2020-03-13 02:32:16.422651 31536 1675 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.1.123 99908e8c-cd7d-4c78-ae90-7d5d3e8e8960 2020-03-13 02:32:16.454825 31537 2331 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.123 6a21fe60-7418-4458-9227-e6d378b8ed9b 2020-03-13 02:32:28.329022 31538 3167 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 893\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1288E4\nmove_type: '1'\nsale_id: 2331\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-882\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.112E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-882 189.186.1.123 6a21fe60-7418-4458-9227-e6d378b8ed9b 2020-03-13 02:32:28.356834 31539 1093 Product \N \N 8 User \N create ---\nsku: ACC-1093\nname: DIA-001\ndescription: DIADEMA NEGRA Y GRIS CON BRILLO\nprice_base: !ruby/object:BigDecimal 18:0.4572E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1093 fue creado. 189.186.1.123 32d91766-dee5-41ee-b0fb-22e6f96763d5 2020-03-13 02:38:47.563498 31540 1093 Product \N \N 8 User \N update ---\nbarcode:\n- ''\n- '0001093'\n 2 \N 189.186.1.123 32d91766-dee5-41ee-b0fb-22e6f96763d5 2020-03-13 02:38:47.610993 31541 1776 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 1093\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.1.123 32d91766-dee5-41ee-b0fb-22e6f96763d5 2020-03-13 02:38:47.646245 31542 280 Purchase \N \N 8 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-74\namount: !ruby/object:BigDecimal 18:0.9144E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9144E2\nobservations: ''\npurchase_date: 2020-03-12\nuser_id: '8'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-74 por $ 91.44 MXN creada. 189.186.1.123 b1a0c258-88f5-447b-b759-cdc30f4f3bab 2020-03-13 02:39:11.939858 31543 1776 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.1.123 b1a0c258-88f5-447b-b759-cdc30f4f3bab 2020-03-13 02:39:11.964134 31544 2332 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 893\namount: !ruby/object:BigDecimal 18:0.278E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.278E3\nstatus: 0\ndate_sale: 2020-03-12\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-883\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 7ee8c316-3efa-4ea6-ba82-beb8e3668bec 2020-03-13 02:39:36.486477 31545 1776 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.1.123 7ee8c316-3efa-4ea6-ba82-beb8e3668bec 2020-03-13 02:39:36.516831 31546 2332 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.123 73ccab3d-9f6a-4c86-b22f-2d859675fc2f 2020-03-13 02:39:41.285447 31547 3168 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 893\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.278E3\nmove_type: '1'\nsale_id: 2332\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-883\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.278E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-883 189.186.1.123 73ccab3d-9f6a-4c86-b22f-2d859675fc2f 2020-03-13 02:39:41.308307 31548 914 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 893\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.209499E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.1035E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3035E4\nobservations: 'FALTAN $80 keyla NO PUSO EL FALTANTE DEL MARTES '\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.1.123 d11b14a7-c421-4504-bb47-73519ae34d3e 2020-03-13 02:47:58.467986 31549 893 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.1.123 d11b14a7-c421-4504-bb47-73519ae34d3e 2020-03-13 02:47:58.48471 31550 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-13 00:16:30.815651000 Z\n- &1 2020-03-13 01:02:28.223949000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-13 03:14:02.297609993 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938372\n mask_addr: 4294967295\nsign_in_count:\n- 1487\n- 1488\n 2976 \N 200.68.151.68 28a69d58-f847-405d-ba15-a7d061d435c1 2020-03-13 03:14:02.305706 31551 4 User \N \N 4 User \N update ---\nunique_session_id:\n- q_X2fyLU62eFmBWn57EY\n- cseAqyEXrsDqanxJfzDr\n 2977 \N 200.68.151.68 28a69d58-f847-405d-ba15-a7d061d435c1 2020-03-13 03:14:02.324842 31552 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-03-08 21:55:18.217015000 Z\n- &1 2020-03-12 01:41:07.389524000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-13 17:12:26.694547458 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\nsign_in_count:\n- 128\n- 129\n 258 \N 189.186.1.123 688844b2-1ec4-400d-b156-ca7fdab43e73 2020-03-13 17:12:26.726705 31553 27 User \N \N 27 User \N update ---\nunique_session_id:\n- upYV_7AkTyhKmtGzurz8\n- KofJRfqmpTBQRcFabvs_\n 259 \N 189.186.1.123 688844b2-1ec4-400d-b156-ca7fdab43e73 2020-03-13 17:12:26.749952 31554 477 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.1.123 a8c7d1e1-0437-4bbc-adb9-0292584ebf99 2020-03-13 17:14:48.301047 31555 721 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.1.123 80abfb84-b35b-481f-953d-23c4ab0c8ad5 2020-03-13 17:15:11.869226 31556 720 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.1.123 d65933c5-ae2b-4fdf-8487-343c6f69f89c 2020-03-13 17:16:20.249174 31557 720 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.1.123 cf22ddc6-c25f-4a61-a2eb-3ce05b9717d0 2020-03-13 17:17:22.671197 31558 800 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 28 \N 189.186.1.123 30ccf389-1b1a-46c4-82e2-7bedb3e22d89 2020-03-13 17:17:47.717301 31559 284 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.1.123 526934f0-53d8-452c-9a5d-9ff2d00e00e5 2020-03-13 17:20:11.790629 31560 682 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.1.123 f1813d72-932b-4902-8d1f-4d3cb7731ad4 2020-03-13 17:21:10.679952 46492 1471 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1471'\n is_parent: false\n sku: CAR-1471\n name: 2BICV2033\n description: CARTERA PEQUEÑACON TARJETERO\n price_base: '399.5'\n price_sale: '799.0'\n img_product: 87C8052B-7791-459F-A5A5-FF80D84B5235.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170820584'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-29 21:20:31.676529'\n updated_at: &12 2020-11-21 19:56:41.545188941 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1471'\n sku: CAR-1471\n name: 2BICV2033\n description: CARTERA PEQUEÑACON TARJETERO\n price_base: '399.50'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-29 21:20:31.676529'\n updated_at: '2020-10-29 21:20:31.676529'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170820584'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1471'\n type: *3\n value: 1471\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-1471\n type: *7\n value: CAR-1471\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 2BICV2033\n type: *8\n value: 2BICV2033\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA PEQUEÑACON TARJETERO\n type: *6\n value: CARTERA PEQUEÑACON TARJETERO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '399.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 87C8052B-7791-459F-A5A5-FF80D84B5235.jpeg\n type: *2\n value: 87C8052B-7791-459F-A5A5-FF80D84B5235.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170820584'\n type: *2\n value: '7509170820584'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-29 21:20:31.676529'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 87C8052B-7791-459F-A5A5-FF80D84B5235.jpeg\n 2 El producto CAR-1471 fue modificado. 189.186.1.223 fbf091a7-db47-41d3-b834-3ea1ca0ea262 2020-11-21 19:56:41.591827 31561 284 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.1.123 3b7dc3db-221c-4c7d-b43c-d57fde70a5e1 2020-03-13 17:21:50.445784 31562 682 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.1.123 f9213121-484d-4004-9b65-42f7ecddc250 2020-03-13 17:22:30.280147 31563 678 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.1.123 24e1a676-483b-4d89-abbc-9a84f8d26337 2020-03-13 17:23:01.952789 31564 409 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.1.123 044b1241-a84c-41d4-9f50-4b61f0761398 2020-03-13 17:23:24.808086 31565 409 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.1.123 eea016a7-22bc-4fdb-9528-ff06a006c743 2020-03-13 17:23:34.88438 31566 517 Transfer \N \N 27 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-03-13\nuser_id: 27\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.1.123 6d7283c5-f013-461a-86db-0bc1a98d8b83 2020-03-13 17:24:07.580438 31567 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-10 17:08:20.508021000 Z\n- &1 2020-03-11 17:33:43.161799000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-13 18:30:29.603391631 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\nsign_in_count:\n- 501\n- 502\n 1007 \N 189.186.1.123 c199c828-745c-4e69-9a61-34b272019ebd 2020-03-13 18:30:29.612867 31568 2 User \N \N 2 User \N update ---\nunique_session_id:\n- yYw7S1FsKK-pZiJQJWcX\n- Zci-cLRCqWSMQcYDy_gv\n 1008 \N 189.186.1.123 c199c828-745c-4e69-9a61-34b272019ebd 2020-03-13 18:30:29.632819 31569 894 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.948E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 948.0 189.186.1.123 cb58a585-2cac-4412-b675-cf9af68b7798 2020-03-13 18:31:36.069384 31570 2333 Sale \N \N 2 User \N create ---\ncustomer_id: 3\nuser_id: 2\nopen_cash_register_id: 894\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2020-03-13\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-1153\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 7324346b-b8b6-48f3-9fe2-d546c636784c 2020-03-13 18:32:44.669498 31571 1647 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.1.123 7324346b-b8b6-48f3-9fe2-d546c636784c 2020-03-13 18:32:44.709861 31572 3169 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 658\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1626\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.1.123 a7f9bd62-56af-4af3-8144-5f1916781e64 2020-03-13 18:34:12.283538 31573 3169 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 658\n- 894\n 2 movimiento de efectivo por venta con folio PV1-V-831 189.186.1.123 a7f9bd62-56af-4af3-8144-5f1916781e64 2020-03-13 18:34:12.308722 31574 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-13 01:02:28.223949000 Z\n- &1 2020-03-13 03:14:02.297609000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-13 19:45:22.600955494 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938372\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938372\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945913\n mask_addr: 4294967295\nsign_in_count:\n- 1488\n- 1489\n 2978 \N 200.68.180.185 c063a49c-68f1-4c64-8a6e-8edd077aea3e 2020-03-13 19:45:22.609227 31575 4 User \N \N 4 User \N update ---\nunique_session_id:\n- cseAqyEXrsDqanxJfzDr\n- URzVFAYE9VtXjmt_fvNF\n 2979 \N 200.68.180.185 c063a49c-68f1-4c64-8a6e-8edd077aea3e 2020-03-13 19:45:22.628895 31576 895 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.1035E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 1035.0 189.186.1.123 98cffb6e-5716-45dc-baa3-2104a705c269 2020-03-13 20:57:02.917664 31577 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-13 03:14:02.297609000 Z\n- &1 2020-03-13 19:45:22.600955000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-13 21:48:47.763751208 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938372\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945913\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945913\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 1489\n- 1490\n 2980 \N 189.186.107.100 58eab9b5-fa83-4920-8e88-0d9755fbfa12 2020-03-13 21:48:47.772311 31578 4 User \N \N 4 User \N update ---\nunique_session_id:\n- URzVFAYE9VtXjmt_fvNF\n- xvh2M7pbzsDxX3xD9zVW\n 2981 \N 189.186.107.100 58eab9b5-fa83-4920-8e88-0d9755fbfa12 2020-03-13 21:48:47.792268 31579 2334 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 895\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-03-13\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-884\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 0b1f2a85-8f87-419a-bf48-e00642b6a124 2020-03-13 21:50:11.094058 31580 295 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.1.123 0b1f2a85-8f87-419a-bf48-e00642b6a124 2020-03-13 21:50:11.127202 31581 2334 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.123 e62d2ed7-1cf5-42a4-b10b-2d1f782c5de3 2020-03-13 21:50:32.398503 31582 3170 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 895\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 2334\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-884\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-884 189.186.1.123 e62d2ed7-1cf5-42a4-b10b-2d1f782c5de3 2020-03-13 21:50:32.424021 31626 221 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.1.123 8dc31de8-90db-4ed6-b848-6b8288276362 2020-03-14 00:34:29.863647 31627 2340 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.123 7702809f-1b12-41e5-bde4-09a88e4750be 2020-03-14 00:34:44.626818 31583 3170 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 895\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 2334\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-884\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.1.123 7edd2ba8-3d6c-4881-8c56-ffef54a9a5b2 2020-03-13 21:50:38.329343 31584 3171 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 895\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 2334\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-884\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-884 189.186.1.123 dce21e60-4465-4ac0-a3e9-e69dc05e38ce 2020-03-13 21:58:37.283866 31585 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-13 19:45:22.600955000 Z\n- &1 2020-03-13 21:48:47.763751000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-13 22:09:39.909012307 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945913\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946423\n mask_addr: 4294967295\nsign_in_count:\n- 1490\n- 1491\n 2982 \N 200.68.182.183 077c87b1-ce04-4c27-9116-8badaab5dbfc 2020-03-13 22:09:39.93858 31586 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xvh2M7pbzsDxX3xD9zVW\n- Xf64KTcRXzwBjddZQuTA\n 2983 \N 200.68.182.183 077c87b1-ce04-4c27-9116-8badaab5dbfc 2020-03-13 22:09:39.967307 31587 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-03-10 18:18:56.762112000 Z\n- &1 2020-03-13 02:21:11.492543000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-13 22:45:06.701708129 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\nsign_in_count:\n- 169\n- 170\n 340 \N 189.186.1.123 bbd66466-ac1b-4f9f-a94d-3c5a9fc2f14f 2020-03-13 22:45:06.708634 31588 1 User \N \N 1 User \N update ---\nunique_session_id:\n- pyqAfPR5xWWwQcpt6Ze2\n- CxQBaV7VxQxJZyyMY5Q-\n 341 \N 189.186.1.123 bbd66466-ac1b-4f9f-a94d-3c5a9fc2f14f 2020-03-13 22:45:06.726066 31589 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-13 21:48:47.763751000 Z\n- &1 2020-03-13 22:09:39.909012000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-13 22:47:20.706535527 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946423\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946423\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 1491\n- 1492\n 2984 \N 189.186.107.100 a3261cf7-82c1-458c-963e-59d30620e2d8 2020-03-13 22:47:20.713979 31590 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Xf64KTcRXzwBjddZQuTA\n- ctocPnVqM42zX1SMg1WC\n 2985 \N 189.186.107.100 a3261cf7-82c1-458c-963e-59d30620e2d8 2020-03-13 22:47:20.732897 31591 1670 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.107.100 18c8a174-16af-403b-bd83-72c2dab1f67d 2020-03-13 22:48:34.049922 31592 518 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-03-13\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.107.100 c53e19e4-6aea-42b2-98db-c424a81947c5 2020-03-13 22:48:36.055224 31593 19 User \N \N 19 User \N update ---\nlast_sign_in_at:\n- 2020-01-28 19:13:01.161043000 Z\n- &1 2020-01-31 18:26:53.319939000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-13 22:49:02.575821861 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123837\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183124889\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 5\n- 6\n 13 \N 189.186.107.100 82e2a808-1c2b-45b8-9344-39aa47cfb4f5 2020-03-13 22:49:02.584348 31594 19 User \N \N 19 User \N update ---\nunique_session_id:\n- q62N_9TFMtYyN4dJ11Lv\n- C2Dzd5aZgVUxoxTkYs5o\n 14 \N 189.186.107.100 82e2a808-1c2b-45b8-9344-39aa47cfb4f5 2020-03-13 22:49:02.604462 31595 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-12 23:24:55.243123000 Z\n- &1 2020-03-13 01:19:35.064288000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-13 22:49:33.262581066 Z\nsign_in_count:\n- 187\n- 188\n 377 \N 189.186.107.100 67023a4d-8606-421c-a17b-de7cb32e3a16 2020-03-13 22:49:33.268712 31596 21 User \N \N 21 User \N update ---\nunique_session_id:\n- r8bNVgucHfkwjETbUSSr\n- bLeCpsW2i1atAAGDaQyq\n 378 \N 189.186.107.100 67023a4d-8606-421c-a17b-de7cb32e3a16 2020-03-13 22:49:33.28253 31597 518 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-13\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.107.100 8eaabb86-9b62-4ec8-bc9c-7b1ef25fb03b 2020-03-13 22:49:47.416236 31598 1777 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1006\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 8eaabb86-9b62-4ec8-bc9c-7b1ef25fb03b 2020-03-13 22:49:47.454762 31599 2335 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 892\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-03-13\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-296\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.107.100 77a20a70-64e9-496c-80b5-c3b9ebedbb84 2020-03-13 22:50:15.334104 31600 1777 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.107.100 77a20a70-64e9-496c-80b5-c3b9ebedbb84 2020-03-13 22:50:15.370613 31601 2335 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.107.100 e337b6af-79bf-417e-a4cd-482d076d14f8 2020-03-13 22:50:34.304906 31602 3172 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 892\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 2335\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-296\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-296 189.186.107.100 e337b6af-79bf-417e-a4cd-482d076d14f8 2020-03-13 22:50:34.336421 31652 1778 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 702\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.1.123 1eca86e8-d816-472e-920b-5aacdc94efda 2020-03-14 02:24:19.180564 31603 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-13 22:09:39.909012000 Z\n- &1 2020-03-13 22:47:20.706535000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-13 23:23:55.285500111 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946423\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946423\n mask_addr: 4294967295\nsign_in_count:\n- 1492\n- 1493\n 2986 \N 200.68.182.183 3995506f-a31a-40fc-b082-0550fcee137f 2020-03-13 23:23:55.293875 31604 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ctocPnVqM42zX1SMg1WC\n- 4BxsLzNKZe7mv-F22RCL\n 2987 \N 200.68.182.183 3995506f-a31a-40fc-b082-0550fcee137f 2020-03-13 23:23:55.313786 31605 2336 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 894\namount: !ruby/object:BigDecimal 18:0.88521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.799E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-03-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1154\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 969a78b2-370d-4d00-a9a1-3a13116fca6b 2020-03-13 23:28:19.022032 31606 221 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.1.123 969a78b2-370d-4d00-a9a1-3a13116fca6b 2020-03-13 23:28:19.076079 31607 2336 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.123 3924df3b-1625-4ad1-8e25-5878258ef944 2020-03-13 23:29:23.17298 31608 3173 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 894\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2336\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1154\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1154 189.186.1.123 3924df3b-1625-4ad1-8e25-5878258ef944 2020-03-13 23:29:23.197065 31609 2337 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 895\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-03-13\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-885\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 e7287194-f149-4523-b707-e1fd87f42d89 2020-03-13 23:44:52.163079 31610 995 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.1.123 e7287194-f149-4523-b707-e1fd87f42d89 2020-03-13 23:44:52.191705 31611 2337 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-885 cancelada. 189.186.1.123 70026939-928b-4355-826c-c1acb50c760c 2020-03-13 23:46:43.692813 31612 995 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.1.123 70026939-928b-4355-826c-c1acb50c760c 2020-03-13 23:46:43.719477 31613 2338 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 895\namount: !ruby/object:BigDecimal 18:0.1998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1998E4\nstatus: 0\ndate_sale: 2020-03-13\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-886\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 d5d617e1-2dec-4092-a412-f6eed73bc6c3 2020-03-13 23:48:49.006239 31614 995 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.1.123 d5d617e1-2dec-4092-a412-f6eed73bc6c3 2020-03-13 23:48:49.034586 31615 1652 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.1.123 d5d617e1-2dec-4092-a412-f6eed73bc6c3 2020-03-13 23:48:49.068736 31616 2338 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.123 98b7acbf-66f3-49cd-a2dc-96ebe57f6fca 2020-03-13 23:48:53.879923 31617 3174 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 895\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1998E4\nmove_type: '1'\nsale_id: 2338\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-886\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-886 189.186.1.123 98b7acbf-66f3-49cd-a2dc-96ebe57f6fca 2020-03-13 23:48:53.904134 31618 2339 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 894\namount: !ruby/object:BigDecimal 18:0.138334E4\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.139699E4\nstatus: 0\ndate_sale: 2020-03-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1155\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 ba165b80-3cea-439a-a230-e1f3a288249f 2020-03-14 00:21:43.642154 31619 486 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 27 \N 189.186.1.123 ba165b80-3cea-439a-a230-e1f3a288249f 2020-03-14 00:21:43.671839 31620 1641 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.1.123 ba165b80-3cea-439a-a230-e1f3a288249f 2020-03-14 00:21:43.698361 31621 1643 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.1.123 ba165b80-3cea-439a-a230-e1f3a288249f 2020-03-14 00:21:43.725006 31622 2339 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.123 65abca67-8b74-4a2f-96aa-4c7fa129c850 2020-03-14 00:22:04.919638 31623 3175 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 894\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.139699E4\nmove_type: '1'\nsale_id: 2339\ncardnumber: 5739\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1155\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1155 189.186.1.123 65abca67-8b74-4a2f-96aa-4c7fa129c850 2020-03-14 00:22:04.942881 31624 2340 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 894\namount: !ruby/object:BigDecimal 18:0.137042E4\ntax: !ruby/object:BigDecimal 18:0.2758E2\ndiscount: !ruby/object:BigDecimal 18:0.1198E4\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-03-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1156\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 8dc31de8-90db-4ed6-b848-6b8288276362 2020-03-14 00:34:29.790175 31625 116 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.1.123 8dc31de8-90db-4ed6-b848-6b8288276362 2020-03-14 00:34:29.830494 46493 1540 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1540'\n is_parent: false\n sku: CON-1540\n name: CON-0006\n description: 'PANS NEGRO PEGADO '\n price_base: '478.5'\n price_sale: '1196.0'\n img_product: 6B5D8E04-AFD2-416C-BE59-063C72906EA5.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '10'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001540'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-14 18:46:59.134848'\n updated_at: &12 2020-11-21 19:59:42.005412890 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1540'\n sku: CON-1540\n name: CON-0006\n description: 'PANS NEGRO PEGADO '\n price_base: '478.50'\n price_sale: '1196.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-14 18:46:59.134848'\n updated_at: '2020-11-14 18:46:59.178666'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001540'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '10'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1540'\n type: *3\n value: 1540\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CON-1540\n type: *7\n value: CON-1540\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CON-0006\n type: *8\n value: CON-0006\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'PANS NEGRO PEGADO '\n type: *6\n value: 'PANS NEGRO PEGADO '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '478.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4785E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1196.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1196E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 6B5D8E04-AFD2-416C-BE59-063C72906EA5.jpeg\n type: *2\n value: 6B5D8E04-AFD2-416C-BE59-063C72906EA5.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '10'\n type: *3\n value: 10\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001540'\n type: *2\n value: '0001540'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-14 18:46:59.134848'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 6B5D8E04-AFD2-416C-BE59-063C72906EA5.jpeg\n 3 El producto CON-1540 fue modificado. 189.186.1.223 ad9dc89b-ec23-4a9c-9a26-5875209cb29d 2020-11-21 19:59:42.058207 31628 3176 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 894\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2340\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1156\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1156 189.186.1.123 7702809f-1b12-41e5-bde4-09a88e4750be 2020-03-14 00:34:44.649653 31629 2341 Sale \N \N 27 User \N create ---\ncustomer_id: 283\nuser_id: 27\nopen_cash_register_id: 895\namount: !ruby/object:BigDecimal 18:0.102414E4\ntax: !ruby/object:BigDecimal 18:0.16387E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.118801E4\nstatus: 0\ndate_sale: 2020-03-13\nsaletype: 0\nseller_id: 19\nsale_code: PV2-V-887\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 777f30a5-b446-4ec2-aa34-f9e899b5f962 2020-03-14 00:52:28.142874 31630 405 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.1.123 777f30a5-b446-4ec2-aa34-f9e899b5f962 2020-03-14 00:52:28.17352 31631 395 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.1.123 777f30a5-b446-4ec2-aa34-f9e899b5f962 2020-03-14 00:52:28.203396 31632 2342 Sale \N \N 21 User \N create ---\ncustomer_id: 283\nuser_id: 21\nopen_cash_register_id: 892\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-03-13\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-297\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.107.100 46bbf487-a731-4b68-820e-994e9b6c57b2 2020-03-14 00:54:15.343361 31633 955 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.107.100 46bbf487-a731-4b68-820e-994e9b6c57b2 2020-03-14 00:54:15.374125 31634 3177 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 690\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 1795\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CREDITO SAM\n 1 \N 189.186.1.123 363c86d8-bfa7-4715-946a-f0da24b8b5db 2020-03-14 00:57:21.371362 31635 3177 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 690\n- 894\n 2 movimiento de efectivo por venta con folio PV1-V-901 189.186.1.123 363c86d8-bfa7-4715-946a-f0da24b8b5db 2020-03-14 00:57:21.409642 31636 1681 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.1.123 a965c5bb-d4c3-4955-862a-d13904d8a07c 2020-03-14 01:04:36.453007 31637 519 Transfer \N \N 27 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-03-13\nuser_id: 27\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.1.123 61d8a2fe-e891-4cf6-9b9a-292b0e6af8d3 2020-03-14 01:04:39.865713 31638 2343 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 894\namount: !ruby/object:BigDecimal 18:0.1197E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1197E4\nstatus: 0\ndate_sale: 2020-03-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1157\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 3be8954d-d1c9-4d05-916b-9f1f59b0921f 2020-03-14 01:40:00.603312 31639 1630 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.1.123 3be8954d-d1c9-4d05-916b-9f1f59b0921f 2020-03-14 01:40:00.635995 31640 1635 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.1.123 3be8954d-d1c9-4d05-916b-9f1f59b0921f 2020-03-14 01:40:00.663274 31641 1295 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.1.123 3be8954d-d1c9-4d05-916b-9f1f59b0921f 2020-03-14 01:40:00.688968 31642 2343 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.123 510e9f1e-d7b4-4607-af03-0da04f70273a 2020-03-14 01:40:17.005468 31643 3178 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 894\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1197E4\nmove_type: '1'\nsale_id: 2343\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1157\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1157 189.186.1.123 510e9f1e-d7b4-4607-af03-0da04f70273a 2020-03-14 01:40:17.046033 31644 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-12 23:50:04.683030000 Z\n- &1 2020-03-13 02:25:37.013786000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-14 02:22:27.785618168 Z\nsign_in_count:\n- 111\n- 112\n 227 \N 189.186.1.123 80dda5fe-60c7-451e-9e85-f66d3e471a76 2020-03-14 02:22:27.791636 31645 8 User \N \N 8 User \N update ---\nunique_session_id:\n- FLqcryy7TvMLhJjKsxze\n- NKmu8qo94tfGDjn8yuyq\n 228 \N 189.186.1.123 80dda5fe-60c7-451e-9e85-f66d3e471a76 2020-03-14 02:22:27.805712 31646 1378 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.1.123 ae22cec6-ea4a-469e-b405-9945f15ed1ed 2020-03-14 02:22:54.115701 31647 1378 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.1.123 c555a886-c438-4b0f-8667-e8f8a572f244 2020-03-14 02:22:59.006947 31648 520 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-03-13\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.1.123 dfc34851-6ab1-4ae0-b361-78cdec5fa044 2020-03-14 02:23:00.380735 31649 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-11 17:33:43.161799000 Z\n- &1 2020-03-13 18:30:29.603391000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-14 02:24:01.538059785 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\nsign_in_count:\n- 502\n- 503\n 1009 \N 189.186.1.123 f22fa119-12da-4743-ab5d-960f5b43d127 2020-03-14 02:24:01.545304 31650 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Zci-cLRCqWSMQcYDy_gv\n- _Hz_AmyrzPJ2wn-4xYkz\n 1010 \N 189.186.1.123 f22fa119-12da-4743-ab5d-960f5b43d127 2020-03-14 02:24:01.566435 31651 520 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-13\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.1.123 1eca86e8-d816-472e-920b-5aacdc94efda 2020-03-14 02:24:19.155777 31746 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Y3gBg29PXqzEs3qDum1F\n- bYNxgbD3uRQShz58xzzE\n 2995 \N 189.186.1.123 27a12847-7ba3-4d0e-8b3a-b61fbbceb880 2020-03-14 20:49:48.356994 31653 2344 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 894\namount: !ruby/object:BigDecimal 18:0.1898E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1898E4\nstatus: 0\ndate_sale: 2020-03-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1158\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 d6cdc173-f338-4c43-bafd-c067b834c412 2020-03-14 02:25:42.044581 31654 786 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 18 \N 189.186.1.123 d6cdc173-f338-4c43-bafd-c067b834c412 2020-03-14 02:25:42.074895 31655 1778 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.1.123 d6cdc173-f338-4c43-bafd-c067b834c412 2020-03-14 02:25:42.100302 31656 2344 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.123 29518c5d-ae35-4499-b237-638743600f44 2020-03-14 02:25:46.32792 31657 3179 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 894\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1898E4\nmove_type: '1'\nsale_id: 2344\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1158\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.102E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1158 189.186.1.123 29518c5d-ae35-4499-b237-638743600f44 2020-03-14 02:25:46.351719 31658 915 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 895\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.2597E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.27E4\ncash_fund: !ruby/object:BigDecimal 18:0.932E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3632E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.1.123 7915c69f-f356-41ab-b159-d62f676c8d6d 2020-03-14 02:32:39.068872 31659 895 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.1.123 7915c69f-f356-41ab-b159-d62f676c8d6d 2020-03-14 02:32:39.088003 31660 916 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 894\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.579199E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.275E4\ncash_fund: !ruby/object:BigDecimal 18:0.896E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3646E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.1.123 3df51e34-503a-4688-81af-d45476457371 2020-03-14 02:35:05.64817 31661 894 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.1.123 3df51e34-503a-4688-81af-d45476457371 2020-03-14 02:35:05.672932 31662 917 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 892\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.699E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.1125E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1625E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.107.100 37584975-b8c0-4200-95dc-4eba3c04d0d5 2020-03-14 03:01:41.637795 31663 892 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.107.100 37584975-b8c0-4200-95dc-4eba3c04d0d5 2020-03-14 03:01:41.654407 31664 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-13 18:30:29.603391000 Z\n- &1 2020-03-14 02:24:01.538059000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-14 17:32:37.613525125 Z\nsign_in_count:\n- 503\n- 504\n 1011 \N 189.186.1.123 6e4ccd98-c6a1-4b43-a521-ce534fc86789 2020-03-14 17:32:37.645825 31665 2 User \N \N 2 User \N update ---\nunique_session_id:\n- _Hz_AmyrzPJ2wn-4xYkz\n- t4bWEo6yT_u5YsXRdtCU\n 1012 \N 189.186.1.123 6e4ccd98-c6a1-4b43-a521-ce534fc86789 2020-03-14 17:32:37.669915 31666 896 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.896E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 896.0 189.186.1.123 fdfb62c3-883d-4b49-9afe-4aefd6089807 2020-03-14 17:34:46.246213 31667 2345 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 896\namount: !ruby/object:BigDecimal 18:0.399E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.299E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-03-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1159\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 3076f9e5-7aa8-48e9-ab86-46a8ad625fdb 2020-03-14 17:42:36.081445 31668 631 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.1.123 3076f9e5-7aa8-48e9-ab86-46a8ad625fdb 2020-03-14 17:42:36.119057 31669 2345 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.123 600f1523-a8a8-44ec-852f-69782fecd767 2020-03-14 17:42:52.440182 31670 3180 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 896\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2345\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1159\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1159 189.186.1.123 600f1523-a8a8-44ec-852f-69782fecd767 2020-03-14 17:42:52.465427 31671 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-13 02:25:37.013786000 Z\n- &1 2020-03-14 02:22:27.785618000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-14 17:48:08.858555052 Z\nsign_in_count:\n- 112\n- 113\n 229 \N 189.186.1.123 b6b53f94-dc22-4ec3-9d84-de9508f545dc 2020-03-14 17:48:08.866668 31672 8 User \N \N 8 User \N update ---\nunique_session_id:\n- NKmu8qo94tfGDjn8yuyq\n- gDi3yogEoooorJyBsBgr\n 230 \N 189.186.1.123 b6b53f94-dc22-4ec3-9d84-de9508f545dc 2020-03-14 17:48:08.882923 31673 897 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.932E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 932.0 189.186.1.123 917623d3-116f-45ee-917f-216710f26d75 2020-03-14 17:48:25.79975 31674 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-13 01:19:35.064288000 Z\n- &1 2020-03-13 22:49:33.262581000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-14 17:51:56.269137867 Z\nsign_in_count:\n- 188\n- 189\n 379 \N 189.186.107.100 88887948-7b07-41cb-88f6-7a0c57ae0417 2020-03-14 17:51:56.277226 31675 21 User \N \N 21 User \N update ---\nunique_session_id:\n- bLeCpsW2i1atAAGDaQyq\n- fjDZFR6Pm51fFFCsb_8o\n 380 \N 189.186.107.100 88887948-7b07-41cb-88f6-7a0c57ae0417 2020-03-14 17:51:56.296473 31676 300 Customer \N \N 8 User \N create ---\nnick_name: ELSA GONZALEZ\nphone: "(667) 333-4813"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ELSA GONZALEZ fue registrado. 189.186.1.123 ee806db5-9a91-462b-89c8-de18202bc437 2020-03-14 17:53:30.856783 31892 2358 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.238 859f20fc-29d5-405a-b7a0-0f19d646a70d 2020-03-15 19:07:29.568434 31677 2346 Sale \N \N 8 User \N create ---\ncustomer_id: 300\nuser_id: 8\nopen_cash_register_id: 897\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-03-14\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-888\nexpiration_date: 2020-04-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 b1598096-cc57-418a-9d40-9ec2d6d59fdc 2020-03-14 17:54:08.224211 31678 495 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 189.186.1.123 b1598096-cc57-418a-9d40-9ec2d6d59fdc 2020-03-14 17:54:08.253704 31679 3181 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 897\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2346\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-888\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-888 189.186.1.123 85092961-111a-48ed-947e-d26e2553fc7b 2020-03-14 17:54:25.185144 31680 2346 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.1.123 b9dbf2b7-ea4d-4906-8571-66114f67bb59 2020-03-14 17:54:26.58365 31681 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-13 22:47:20.706535000 Z\n- &1 2020-03-13 23:23:55.285500000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-14 17:59:31.317329524 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946423\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946423\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\nsign_in_count:\n- 1493\n- 1494\n 2988 \N 189.186.1.123 6818e271-f6ae-4d38-a164-4ad37e4949d4 2020-03-14 17:59:31.326064 31682 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4BxsLzNKZe7mv-F22RCL\n- FQDxX2fzs3ybZGb4KPPj\n 2989 \N 189.186.1.123 6818e271-f6ae-4d38-a164-4ad37e4949d4 2020-03-14 17:59:31.346195 31683 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-14 02:22:27.785618000 Z\n- &1 2020-03-14 17:48:08.858555000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-14 18:00:21.621061697 Z\nsign_in_count:\n- 113\n- 114\n 231 \N 189.186.1.123 d8aa0dc9-b0d3-4c1b-b250-bcb6a947314d 2020-03-14 18:00:21.6268 31684 8 User \N \N 8 User \N update ---\nunique_session_id:\n- gDi3yogEoooorJyBsBgr\n- judds_Zrj1yU_ur9qyLb\n 232 \N 189.186.1.123 d8aa0dc9-b0d3-4c1b-b250-bcb6a947314d 2020-03-14 18:00:21.657654 31685 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 18:19:36.770287000 Z\n- &1 2020-02-28 22:49:50.234002000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-14 18:11:33.771600576 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\nsign_in_count:\n- 107\n- 108\n 216 \N 189.186.1.123 3c77f64e-e34c-4a7a-890e-794aa32fe617 2020-03-14 18:11:33.794308 31686 9 User \N \N 9 User \N update ---\nunique_session_id:\n- MUU89WF41eXjvsfmYBZu\n- KAZFh6wyE9E4jWMcbRVZ\n 217 \N 189.186.1.123 3c77f64e-e34c-4a7a-890e-794aa32fe617 2020-03-14 18:11:33.815147 31687 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-13 23:23:55.285500000 Z\n- &1 2020-03-14 17:59:31.317329000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-14 18:16:38.580749610 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946423\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\nsign_in_count:\n- 1494\n- 1495\n 2990 \N 189.186.1.123 83bf9ad9-cfd4-4e17-aafd-738f6c3f28bb 2020-03-14 18:16:38.587503 31688 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FQDxX2fzs3ybZGb4KPPj\n- GzSqLQSGxuHh8PPCyZfj\n 2991 \N 189.186.1.123 83bf9ad9-cfd4-4e17-aafd-738f6c3f28bb 2020-03-14 18:16:38.608404 31689 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-14 17:48:08.858555000 Z\n- &1 2020-03-14 18:00:21.621061000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-14 18:21:11.531489863 Z\nsign_in_count:\n- 114\n- 115\n 233 \N 189.186.1.123 da3ba556-1a68-439c-9196-e4579a86a1ff 2020-03-14 18:21:11.538072 31690 8 User \N \N 8 User \N update ---\nunique_session_id:\n- judds_Zrj1yU_ur9qyLb\n- v6aBMxJFpsYKzX71Dy2x\n 234 \N 189.186.1.123 da3ba556-1a68-439c-9196-e4579a86a1ff 2020-03-14 18:21:11.554604 31691 3182 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 897\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.769E3\nmove_type: '1'\nsale_id: 2256\ncardnumber: 1233\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-855 189.186.1.123 0cbaabe2-3675-4542-ac3d-5f0e8966df60 2020-03-14 18:22:40.287196 31692 2256 Sale \N \N 8 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.1.123 14159490-3322-447f-816f-640ed8ae29b0 2020-03-14 18:22:42.362384 31693 2347 Sale \N \N 8 User \N create ---\ncustomer_id: 144\nuser_id: 8\nopen_cash_register_id: 897\namount: !ruby/object:BigDecimal 18:0.52672E3\ntax: !ruby/object:BigDecimal 18:0.6828E2\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.495E3\nstatus: 0\ndate_sale: 2020-03-14\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-889\nexpiration_date: 2020-04-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 3bd6090e-63d5-42ac-8e4b-c69dbaeb5ccc 2020-03-14 18:32:25.578536 31694 1569 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.1.123 3bd6090e-63d5-42ac-8e4b-c69dbaeb5ccc 2020-03-14 18:32:25.6145 31695 3183 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 897\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 2347\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-889\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-889 189.186.1.123 bc17f78b-22f6-4de2-b4f3-293bd5f5358c 2020-03-14 18:32:34.989055 31696 2347 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.1.123 aef6f1fa-37aa-4177-ba20-0aad92e54e2a 2020-03-14 18:32:36.885716 31697 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-14 17:59:31.317329000 Z\n- &1 2020-03-14 18:16:38.580749000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-14 19:13:40.671248177 Z\nsign_in_count:\n- 1495\n- 1496\n 2992 \N 189.186.1.123 f767dd39-ab88-4792-b47d-5bf56be76c37 2020-03-14 19:13:40.690223 31698 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GzSqLQSGxuHh8PPCyZfj\n- Y3gBg29PXqzEs3qDum1F\n 2993 \N 189.186.1.123 f767dd39-ab88-4792-b47d-5bf56be76c37 2020-03-14 19:13:40.712167 31699 512 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-14\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.1.123 df489d44-af27-44f1-9c3c-82d7e33d90d3 2020-03-14 19:19:36.046238 31700 1779 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 998\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.1.123 df489d44-af27-44f1-9c3c-82d7e33d90d3 2020-03-14 19:19:36.074169 31701 1780 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1015\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.1.123 df489d44-af27-44f1-9c3c-82d7e33d90d3 2020-03-14 19:19:36.109672 31702 513 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-14\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.1.123 1463cd8c-baf0-4b4d-b4a6-71d9ada5e59a 2020-03-14 19:19:46.988397 31703 1781 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 685\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.1.123 1463cd8c-baf0-4b4d-b4a6-71d9ada5e59a 2020-03-14 19:19:47.012536 31704 516 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-14\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.1.123 78f78b95-6a90-4c93-92a5-f3d1f3f496b5 2020-03-14 19:20:02.75592 31705 1782 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 687\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.1.123 78f78b95-6a90-4c93-92a5-f3d1f3f496b5 2020-03-14 19:20:02.778529 31706 1094 Product \N \N 4 User \N create ---\nsku: ACC-1094\nname: DIA-0080\ndescription: DIADEMA PIEDRAS NEGRAS CON GRIS\nprice_base: !ruby/object:BigDecimal 18:0.228E3\nprice_sale: !ruby/object:BigDecimal 18:0.469E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1094 fue creado. 189.186.1.123 0ee4750b-042b-40af-b013-96a2ae7bc043 2020-03-14 19:46:54.368411 31707 1094 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001094'\n 2 \N 189.186.1.123 0ee4750b-042b-40af-b013-96a2ae7bc043 2020-03-14 19:46:54.4068 31708 1783 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1094\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.1.123 0ee4750b-042b-40af-b013-96a2ae7bc043 2020-03-14 19:46:54.441444 31709 517 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-14\n 2 Se dio entrada a traspaso de S BY SUO a SUO 189.186.1.123 90389e84-3b1a-4cf4-a901-cb2df7d4833e 2020-03-14 19:54:35.559307 31710 1784 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 411\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.1.123 90389e84-3b1a-4cf4-a901-cb2df7d4833e 2020-03-14 19:54:35.582391 31711 6 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.1.123 90389e84-3b1a-4cf4-a901-cb2df7d4833e 2020-03-14 19:54:35.602175 31712 8 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.1.123 90389e84-3b1a-4cf4-a901-cb2df7d4833e 2020-03-14 19:54:35.622485 31713 1785 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 286\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.1.123 90389e84-3b1a-4cf4-a901-cb2df7d4833e 2020-03-14 19:54:35.649548 31714 810 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 14 \N 189.186.1.123 90389e84-3b1a-4cf4-a901-cb2df7d4833e 2020-03-14 19:54:35.673212 31715 236 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.1.123 90389e84-3b1a-4cf4-a901-cb2df7d4833e 2020-03-14 19:54:35.692471 31716 235 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.1.123 90389e84-3b1a-4cf4-a901-cb2df7d4833e 2020-03-14 19:54:35.712555 31717 255 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.1.123 90389e84-3b1a-4cf4-a901-cb2df7d4833e 2020-03-14 19:54:35.732401 31718 1095 Product \N \N 4 User \N create ---\nsku: ACC-1095\nname: DIA-0081\ndescription: DIADEMA BRILLOS GAZA GRIS\nprice_base: !ruby/object:BigDecimal 18:0.41E2\nprice_sale: !ruby/object:BigDecimal 18:0.99E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1095 fue creado. 189.186.1.123 8e1d99aa-017b-469d-a322-dad84f4449f6 2020-03-14 20:04:54.930089 31719 1095 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001095'\n 2 \N 189.186.1.123 8e1d99aa-017b-469d-a322-dad84f4449f6 2020-03-14 20:04:54.962863 31720 1786 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1095\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.1.123 8e1d99aa-017b-469d-a322-dad84f4449f6 2020-03-14 20:04:54.993271 31721 281 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-75\namount: !ruby/object:BigDecimal 18:0.269E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.269E3\nobservations: ''\npurchase_date: 2020-03-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-75 por $ 269.0 MXN creada. 189.186.1.123 de6528f1-004c-482c-a8b4-f99dae485c24 2020-03-14 20:05:29.240491 31722 1783 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.1.123 de6528f1-004c-482c-a8b4-f99dae485c24 2020-03-14 20:05:29.264796 31723 1786 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.1.123 de6528f1-004c-482c-a8b4-f99dae485c24 2020-03-14 20:05:29.294369 31745 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-14 18:16:38.580749000 Z\n- &1 2020-03-14 19:13:40.671248000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-14 20:49:48.333693846 Z\nsign_in_count:\n- 1496\n- 1497\n 2994 \N 189.186.1.123 27a12847-7ba3-4d0e-8b3a-b61fbbceb880 2020-03-14 20:49:48.340185 31724 1096 Product \N \N 4 User \N create ---\nsku: ACC-1096\nname: DIA-0081\ndescription: DIADEMAS COLORES\nprice_base: !ruby/object:BigDecimal 18:0.22E2\nprice_sale: !ruby/object:BigDecimal 18:0.69E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1096 fue creado. 189.186.1.123 0bda132b-0018-43a8-8a8f-1ddb182c26b4 2020-03-14 20:15:53.013806 31725 1096 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001096'\n 2 \N 189.186.1.123 0bda132b-0018-43a8-8a8f-1ddb182c26b4 2020-03-14 20:15:53.0429 31726 282 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-52\namount: !ruby/object:BigDecimal 18:0.88E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.88E2\nobservations: ''\npurchase_date: 2020-03-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-52 por $ 88.0 MXN creada. 189.186.1.123 79d9e181-f2c2-4578-91db-127202a133d5 2020-03-14 20:15:58.480943 31727 521 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-03-14\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 189.186.1.123 73c1c8f6-9a60-4144-9ff6-fbec5bc3e008 2020-03-14 20:16:34.394347 31728 522 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-03-14\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.1.123 46f29a67-b6b3-4335-9d8f-9bf2753a997b 2020-03-14 20:18:35.969058 31729 1097 Product \N \N 4 User \N create ---\nsku: ACC-1097\nname: DIA-0082\ndescription: DIADEMA CORAZONES MEZCLILLA\nprice_base: !ruby/object:BigDecimal 18:0.33E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1097 fue creado. 189.186.1.123 88900145-47f7-47f1-932c-fa7e0d8ef09a 2020-03-14 20:22:45.409869 31730 1097 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001097'\n 2 \N 189.186.1.123 88900145-47f7-47f1-932c-fa7e0d8ef09a 2020-03-14 20:22:45.439885 31731 283 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-53\namount: !ruby/object:BigDecimal 18:0.66E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.66E2\nobservations: ''\npurchase_date: 2020-03-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-53 por $ 66.0 MXN creada. 189.186.1.123 9f538def-3b6e-4ecc-9bb7-451e6633a2a0 2020-03-14 20:22:51.875104 31732 523 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-03-14\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 189.186.1.123 06718004-5cf0-483b-8572-7cc1cd97463f 2020-03-14 20:25:58.9418 31733 524 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-03-14\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.1.123 4ad4e727-d546-4f68-911c-5561d236c030 2020-03-14 20:26:28.687103 31734 1098 Product \N \N 4 User \N create ---\nsku: ACC-1098\nname: DIA-0083\ndescription: DIADEMA ROSA FUSCIA PIEDRAS\nprice_base: !ruby/object:BigDecimal 18:0.127E3\nprice_sale: !ruby/object:BigDecimal 18:0.289E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1098 fue creado. 189.186.1.123 029034a9-5baf-498c-a886-3472427eac16 2020-03-14 20:30:16.508837 31735 1098 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001098'\n 2 \N 189.186.1.123 029034a9-5baf-498c-a886-3472427eac16 2020-03-14 20:30:16.558772 31736 1787 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1098\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.1.123 029034a9-5baf-498c-a886-3472427eac16 2020-03-14 20:30:16.591659 31737 284 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-124\namount: !ruby/object:BigDecimal 18:0.127E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.127E3\nobservations: ''\npurchase_date: 2020-03-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-124 por $ 127.0 MXN creada. 189.186.1.123 4ea58dc8-bd65-4734-b9d1-a5606a5bdb93 2020-03-14 20:32:00.480115 31738 1787 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.1.123 4ea58dc8-bd65-4734-b9d1-a5606a5bdb93 2020-03-14 20:32:00.511392 31739 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-03-12 01:41:07.389524000 Z\n- &1 2020-03-13 17:12:26.694547000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-14 20:37:56.977101059 Z\nsign_in_count:\n- 129\n- 130\n 260 \N 189.186.1.123 faa5055b-677e-49b5-bd92-6e11e6641f97 2020-03-14 20:37:56.983781 31740 27 User \N \N 27 User \N update ---\nunique_session_id:\n- KofJRfqmpTBQRcFabvs_\n- A-F_LYZKy6KnvfXQ2xH_\n 261 \N 189.186.1.123 faa5055b-677e-49b5-bd92-6e11e6641f97 2020-03-14 20:37:56.998782 31741 2348 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 896\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-03-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1160\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 7f1e71b5-a6b4-4c61-a3a9-6febcd7256de 2020-03-14 20:42:25.743101 31742 1693 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.1.123 7f1e71b5-a6b4-4c61-a3a9-6febcd7256de 2020-03-14 20:42:25.776182 31743 2348 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.123 58241dfd-b8e9-400c-8cf8-1327902674b3 2020-03-14 20:42:49.094057 31744 3184 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 896\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 2348\ncardnumber: 5120\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1160\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1160 189.186.1.123 58241dfd-b8e9-400c-8cf8-1327902674b3 2020-03-14 20:42:49.120191 31747 1099 Product \N \N 4 User \N create ---\nsku: ACC-1099\nname: DIA-0084\ndescription: DIADEMA NEGRA Y DORADA BRILLOSA CON BOLITAS\nprice_base: !ruby/object:BigDecimal 18:0.34E2\nprice_sale: !ruby/object:BigDecimal 18:0.99E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1099 fue creado. 189.186.1.123 d742468f-6bfb-4bf7-b639-1a5da7b622e6 2020-03-14 20:53:11.181648 31748 1099 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001099'\n 2 \N 189.186.1.123 d742468f-6bfb-4bf7-b639-1a5da7b622e6 2020-03-14 20:53:11.218398 31749 285 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-54\namount: !ruby/object:BigDecimal 18:0.68E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.68E2\nobservations: ''\npurchase_date: 2020-03-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-54 por $ 68.0 MXN creada. 189.186.1.123 e7e1752d-930c-4daf-b507-64f5989eaa8a 2020-03-14 20:53:18.586284 31750 525 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-03-14\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.1.123 704b7c11-8431-4024-976e-6d8525dcff27 2020-03-14 20:54:06.688493 31751 526 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-03-14\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.1.123 c92204ed-e82f-4065-b4af-0bd0e4d5d2b1 2020-03-14 20:54:33.144078 31752 1100 Product \N \N 4 User \N create ---\nsku: ACC-1100\nname: DIA-0085\ndescription: DIADEMA COLORES NEON\nprice_base: !ruby/object:BigDecimal 18:0.41E2\nprice_sale: !ruby/object:BigDecimal 18:0.89E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1100 fue creado. 189.186.1.123 f37e6424-8228-425b-a414-e4db21d17636 2020-03-14 20:57:25.183933 31753 1100 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001100'\n 2 \N 189.186.1.123 f37e6424-8228-425b-a414-e4db21d17636 2020-03-14 20:57:25.212043 31754 286 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-55\namount: !ruby/object:BigDecimal 18:0.82E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.82E2\nobservations: ''\npurchase_date: 2020-03-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-55 por $ 82.0 MXN creada. 189.186.1.123 5a6d3da5-2db4-4997-92f3-c91eb1a2173a 2020-03-14 20:57:31.403957 31755 527 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-03-14\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.1.123 81f20b20-59f8-47ce-b45a-a305d21bf7b5 2020-03-14 20:58:17.690729 31756 528 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-03-14\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a S BY SUO creado. 189.186.1.123 531b395b-8783-4a90-8239-f31e9c8b6c99 2020-03-14 20:58:53.117944 31757 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-14 18:00:21.621061000 Z\n- &1 2020-03-14 18:21:11.531489000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-14 22:10:06.086617979 Z\nsign_in_count:\n- 115\n- 116\n 235 \N 189.186.1.123 6ef88c26-6cb0-442e-a9da-a31dcf2961e3 2020-03-14 22:10:06.093215 31758 8 User \N \N 8 User \N update ---\nunique_session_id:\n- v6aBMxJFpsYKzX71Dy2x\n- Qb1Bt-kyewLD3y-Z8Ghy\n 236 \N 189.186.1.123 6ef88c26-6cb0-442e-a9da-a31dcf2961e3 2020-03-14 22:10:06.111434 31759 2349 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 897\namount: !ruby/object:BigDecimal 18:0.139E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.139E3\nstatus: 0\ndate_sale: 2020-03-14\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-890\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 ef2bf29d-8107-4ddc-9fd4-d0744a94910e 2020-03-14 22:11:03.658768 31760 1558 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.1.123 ef2bf29d-8107-4ddc-9fd4-d0744a94910e 2020-03-14 22:11:03.698415 31761 2349 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.123 9efccbaf-1ee9-449b-af7d-f038a3d526dc 2020-03-14 22:11:11.220059 31762 3185 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 897\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.139E3\nmove_type: '1'\nsale_id: 2349\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-890\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.61E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-890 189.186.1.123 9efccbaf-1ee9-449b-af7d-f038a3d526dc 2020-03-14 22:11:11.243057 31763 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-02-28 22:49:50.234002000 Z\n- &1 2020-03-14 18:11:33.771600000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-14 22:37:01.551814825 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\nsign_in_count:\n- 108\n- 109\n 218 \N 189.186.1.123 9ba4ee71-dc0c-45fa-b347-9ca3aa8f9490 2020-03-14 22:37:01.572304 31764 9 User \N \N 9 User \N update ---\nunique_session_id:\n- KAZFh6wyE9E4jWMcbRVZ\n- F7th8o1cioL8-MNxFHvw\n 219 \N 189.186.1.123 9ba4ee71-dc0c-45fa-b347-9ca3aa8f9490 2020-03-14 22:37:01.591864 31765 1631 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.1.123 2a51e326-268e-4f6f-b0f7-065a014c3b30 2020-03-14 22:37:41.709706 31766 1634 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.1.123 b8c9f3ac-bfbf-42f7-a88e-9e477aba2b9a 2020-03-14 22:37:57.158586 31767 529 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 2\ntransfer_date: 2020-03-14\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a S BY SUO creado. 189.186.1.123 1b072341-15e5-4137-94ee-adb5d6a4286e 2020-03-14 22:37:59.688983 31768 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-14 18:21:11.531489000 Z\n- &1 2020-03-14 22:10:06.086617000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-14 22:38:17.731974134 Z\nsign_in_count:\n- 116\n- 117\n 237 \N 189.186.1.123 6388b840-730c-42cc-92b7-1975b0a50f33 2020-03-14 22:38:17.737755 31769 8 User \N \N 8 User \N update ---\nunique_session_id:\n- Qb1Bt-kyewLD3y-Z8Ghy\n- hhcQgxE1TrmDpomgVqEL\n 238 \N 189.186.1.123 6388b840-730c-42cc-92b7-1975b0a50f33 2020-03-14 22:38:17.751756 31770 529 Transfer \N \N 8 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 8\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-14\n 2 Se dio entrada a traspaso de SUO a S BY SUO 189.186.1.123 a7a1fce7-445d-41bf-a336-e99eb3c8fe06 2020-03-14 22:38:41.640768 31771 1788 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 983\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.1.123 a7a1fce7-445d-41bf-a336-e99eb3c8fe06 2020-03-14 22:38:41.663985 31772 1789 AvailableProduct \N \N 8 User \N create ---\nproduct_id: 980\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.1.123 a7a1fce7-445d-41bf-a336-e99eb3c8fe06 2020-03-14 22:38:41.695698 31773 2350 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 897\namount: !ruby/object:BigDecimal 18:0.2386E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2386E4\nstatus: 0\ndate_sale: 2020-03-14\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-891\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 3c42098a-fc62-464e-b72d-4c0606798b5f 2020-03-14 22:40:02.734588 31774 1788 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.1.123 3c42098a-fc62-464e-b72d-4c0606798b5f 2020-03-14 22:40:02.781218 31775 1789 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.1.123 3c42098a-fc62-464e-b72d-4c0606798b5f 2020-03-14 22:40:02.819047 31776 1138 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 189.186.1.123 3c42098a-fc62-464e-b72d-4c0606798b5f 2020-03-14 22:40:02.845757 31777 1677 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.1.123 3c42098a-fc62-464e-b72d-4c0606798b5f 2020-03-14 22:40:02.870888 31778 2350 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-891 cancelada. 189.186.1.123 7aa864e3-7720-4fbb-8f64-a52ef4c32813 2020-03-14 22:40:17.364261 31779 1677 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.1.123 7aa864e3-7720-4fbb-8f64-a52ef4c32813 2020-03-14 22:40:17.394773 31780 1138 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 9 \N 189.186.1.123 7aa864e3-7720-4fbb-8f64-a52ef4c32813 2020-03-14 22:40:17.420172 31781 1789 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.1.123 7aa864e3-7720-4fbb-8f64-a52ef4c32813 2020-03-14 22:40:17.445819 31782 1788 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.1.123 7aa864e3-7720-4fbb-8f64-a52ef4c32813 2020-03-14 22:40:17.468634 31783 2351 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 897\namount: !ruby/object:BigDecimal 18:0.29641E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.29641E4\nstatus: 0\ndate_sale: 2020-03-14\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-892\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 2774ff21-4c97-480e-8a4f-44fb0c5980fc 2020-03-14 22:42:22.024917 31784 1788 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.1.123 2774ff21-4c97-480e-8a4f-44fb0c5980fc 2020-03-14 22:42:22.064529 31785 1677 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.1.123 2774ff21-4c97-480e-8a4f-44fb0c5980fc 2020-03-14 22:42:22.093977 31786 1138 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 10 \N 189.186.1.123 2774ff21-4c97-480e-8a4f-44fb0c5980fc 2020-03-14 22:42:22.123793 31787 1789 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.1.123 2774ff21-4c97-480e-8a4f-44fb0c5980fc 2020-03-14 22:42:22.163908 31788 1696 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.1.123 2774ff21-4c97-480e-8a4f-44fb0c5980fc 2020-03-14 22:42:22.196861 31789 1332 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.1.123 2774ff21-4c97-480e-8a4f-44fb0c5980fc 2020-03-14 22:42:22.232066 31790 2351 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-892 cancelada. 189.186.1.123 fbca8a78-37b6-4d97-8f5e-101ab0e8a6d8 2020-03-14 22:43:08.300478 31791 1332 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.1.123 fbca8a78-37b6-4d97-8f5e-101ab0e8a6d8 2020-03-14 22:43:08.323265 31792 1696 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.1.123 fbca8a78-37b6-4d97-8f5e-101ab0e8a6d8 2020-03-14 22:43:08.342879 31793 1789 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.1.123 fbca8a78-37b6-4d97-8f5e-101ab0e8a6d8 2020-03-14 22:43:08.361783 31794 1138 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 11 \N 189.186.1.123 fbca8a78-37b6-4d97-8f5e-101ab0e8a6d8 2020-03-14 22:43:08.390464 31795 1677 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 189.186.1.123 fbca8a78-37b6-4d97-8f5e-101ab0e8a6d8 2020-03-14 22:43:08.411283 31796 1788 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.1.123 fbca8a78-37b6-4d97-8f5e-101ab0e8a6d8 2020-03-14 22:43:08.430812 31797 301 Customer \N \N 8 User \N create ---\nnick_name: DAYANA CAZARES\nphone: "(664) 730-4567"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DAYANA CAZARES fue registrado. 189.186.1.123 48d24452-5c03-4ff6-89d0-c41d0e312017 2020-03-14 22:43:36.295181 31798 2352 Sale \N \N 8 User \N create ---\ncustomer_id: 301\nuser_id: 8\nopen_cash_register_id: 897\namount: !ruby/object:BigDecimal 18:0.29641E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.29641E4\nstatus: 0\ndate_sale: 2020-03-14\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-893\nexpiration_date: 2020-04-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 de11cafe-80fb-42bc-85f8-2dac1565d48c 2020-03-14 22:44:43.056297 31799 1696 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.1.123 de11cafe-80fb-42bc-85f8-2dac1565d48c 2020-03-14 22:44:43.084979 31800 1332 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.1.123 de11cafe-80fb-42bc-85f8-2dac1565d48c 2020-03-14 22:44:43.109342 31801 1789 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.1.123 de11cafe-80fb-42bc-85f8-2dac1565d48c 2020-03-14 22:44:43.134928 31802 1138 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 12 \N 189.186.1.123 de11cafe-80fb-42bc-85f8-2dac1565d48c 2020-03-14 22:44:43.158816 31803 1788 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.1.123 de11cafe-80fb-42bc-85f8-2dac1565d48c 2020-03-14 22:44:43.18279 31804 1677 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 189.186.1.123 de11cafe-80fb-42bc-85f8-2dac1565d48c 2020-03-14 22:44:43.212032 31805 3186 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 897\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E4\nmove_type: '1'\nsale_id: 2352\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-893\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-893 189.186.1.123 ed94c5d7-c7ad-4eff-b2da-2c7d03064c04 2020-03-14 22:44:50.189731 31806 2352 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.1.123 85558ea3-e594-4ae1-91c4-332a615b13ff 2020-03-14 22:44:51.813625 31807 2353 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 896\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-03-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1161\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 844a5e92-09a5-4bb8-80cd-91a8cf1098a7 2020-03-14 22:56:14.392416 31808 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.29E2\n- !ruby/object:BigDecimal 18:0.28E2\n 7 \N 189.186.1.123 844a5e92-09a5-4bb8-80cd-91a8cf1098a7 2020-03-14 22:56:14.437418 31809 2353 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.123 b9c26e9d-6048-453d-96ea-d0a8d19a364e 2020-03-14 22:56:55.955858 31810 3187 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 896\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49E2\nmove_type: '1'\nsale_id: 2353\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1161\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1161 189.186.1.123 b9c26e9d-6048-453d-96ea-d0a8d19a364e 2020-03-14 22:56:55.980407 31811 2354 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 897\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.29E2\ntotal: !ruby/object:BigDecimal 18:0.7E3\nstatus: 0\ndate_sale: 2020-03-14\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-894\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 fe624948-4287-4d54-a9c2-3ab3244aa0e1 2020-03-14 23:02:11.252499 31812 1651 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.1.123 fe624948-4287-4d54-a9c2-3ab3244aa0e1 2020-03-14 23:02:11.282175 31813 2354 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.123 654f1bcf-fc80-467a-a1c2-5d8dff663cf6 2020-03-14 23:02:16.317627 31814 3188 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 897\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.7E3\nmove_type: '1'\nsale_id: 2354\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-894\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-894 189.186.1.123 654f1bcf-fc80-467a-a1c2-5d8dff663cf6 2020-03-14 23:02:16.339911 31815 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-14 19:13:40.671248000 Z\n- &1 2020-03-14 20:49:48.333693000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-14 23:03:38.835818101 Z\nsign_in_count:\n- 1497\n- 1498\n 2996 \N 189.186.1.123 ecc91b9e-852e-4669-aefa-1b86c5a70597 2020-03-14 23:03:38.845594 31816 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bYNxgbD3uRQShz58xzzE\n- ndiyDPuZ-CsPBErtLYHc\n 2997 \N 189.186.1.123 ecc91b9e-852e-4669-aefa-1b86c5a70597 2020-03-14 23:03:38.867644 31817 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-14 22:10:06.086617000 Z\n- &1 2020-03-14 22:38:17.731974000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-14 23:38:04.489615940 Z\nsign_in_count:\n- 117\n- 118\n 239 \N 189.186.1.123 5c9165c2-e610-4506-8077-74da2aa5301c 2020-03-14 23:38:04.495681 31818 8 User \N \N 8 User \N update ---\nunique_session_id:\n- hhcQgxE1TrmDpomgVqEL\n- yHrqsFioUVV71NdS5zxU\n 240 \N 189.186.1.123 5c9165c2-e610-4506-8077-74da2aa5301c 2020-03-14 23:38:04.513097 31819 302 Customer \N \N 8 User \N create ---\nnick_name: CARMEN ARACELI\nphone: "(667) 293-7841"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CARMEN ARACELI fue registrado. 189.186.1.123 4ae208bf-0866-488e-9c86-843da9e92feb 2020-03-14 23:38:32.917843 31820 2355 Sale \N \N 8 User \N create ---\ncustomer_id: 302\nuser_id: 8\nopen_cash_register_id: 897\namount: !ruby/object:BigDecimal 18:0.1169E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1169E4\nstatus: 0\ndate_sale: 2020-03-14\nsaletype: 2\nseller_id: 4\nsale_code: PV2-V-895\nexpiration_date: 2020-04-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.123 4074b5f4-68f5-4443-99c3-e7cfb7c9cc8d 2020-03-14 23:39:15.480229 31821 1648 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.1.123 4074b5f4-68f5-4443-99c3-e7cfb7c9cc8d 2020-03-14 23:39:15.509403 31822 3189 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 897\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 2355\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-895\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-895 189.186.1.123 69101eaa-6d88-4e91-9a2e-ab552b6ffd06 2020-03-14 23:39:25.443427 31823 2355 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.1.123 755e2de2-98da-4611-bcb2-109645f7aaf8 2020-03-14 23:39:27.054373 31824 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-14 20:49:48.333693000 Z\n- &1 2020-03-14 23:03:38.835818000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-15 00:02:28.136973385 Z\nsign_in_count:\n- 1498\n- 1499\n 2998 \N 189.186.1.123 9e4a0ac1-f3dc-496c-83c7-1c42bb1ab132 2020-03-15 00:02:28.165274 31825 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ndiyDPuZ-CsPBErtLYHc\n- zfVkALn4Vn5PPWa5aizt\n 2999 \N 189.186.1.123 9e4a0ac1-f3dc-496c-83c7-1c42bb1ab132 2020-03-15 00:02:28.189466 31826 1101 Product \N \N 4 User \N create ---\nsku: ACC-1101\nname: PUL-0100\ndescription: PULCERAS SEMANARIO\nprice_base: !ruby/object:BigDecimal 18:0.4E2\nprice_sale: !ruby/object:BigDecimal 18:0.89E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1101 fue creado. 189.186.1.123 44c47006-22c3-47b3-b86b-018e48ae4c41 2020-03-15 00:04:52.877171 31827 1101 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001101'\n 2 \N 189.186.1.123 44c47006-22c3-47b3-b86b-018e48ae4c41 2020-03-15 00:04:52.946433 31828 1790 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1101\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.1.123 44c47006-22c3-47b3-b86b-018e48ae4c41 2020-03-15 00:04:52.988001 31829 287 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-76\namount: !ruby/object:BigDecimal 18:0.16E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.16E3\nobservations: ''\npurchase_date: 2020-03-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-76 por $ 160.0 MXN creada. 189.186.1.123 a3aeda19-259f-4fcd-87d2-dfab65df04f0 2020-03-15 00:05:02.300907 31830 1790 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.1.123 a3aeda19-259f-4fcd-87d2-dfab65df04f0 2020-03-15 00:05:02.324159 31831 898 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1125E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1125.0 189.186.107.100 518acdeb-c954-456e-b571-be51b0b11635 2020-03-15 00:15:22.91622 31832 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-14 23:03:38.835818000 Z\n- &1 2020-03-15 00:02:28.136973000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-15 00:18:07.051682963 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 1499\n- 1500\n 3000 \N 189.186.107.100 a1ffaf25-7019-413d-971c-d9b01daeb5c5 2020-03-15 00:18:07.05939 31833 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zfVkALn4Vn5PPWa5aizt\n- uxRK1UCR2FjPsNqjKzza\n 3001 \N 189.186.107.100 a1ffaf25-7019-413d-971c-d9b01daeb5c5 2020-03-15 00:18:07.077781 31834 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-13 22:49:33.262581000 Z\n- &1 2020-03-14 17:51:56.269137000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-15 00:19:14.024283045 Z\nsign_in_count:\n- 189\n- 190\n 381 \N 189.186.107.100 af8a7d2d-3ed9-4414-944a-a619e9b07322 2020-03-15 00:19:14.030227 31835 21 User \N \N 21 User \N update ---\nunique_session_id:\n- fjDZFR6Pm51fFFCsb_8o\n- qbhfxKCKgiQvgcc8xv1n\n 382 \N 189.186.107.100 af8a7d2d-3ed9-4414-944a-a619e9b07322 2020-03-15 00:19:14.045803 31836 303 Customer \N \N 21 User \N create ---\nnick_name: MARCELINA QUIÑONEZ\nphone: "(667) 301-1475"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARCELINA QUIÑONEZ fue registrado. 189.186.107.100 40ae278c-b95f-4ab8-a072-0f595fc43791 2020-03-15 00:21:29.149794 31837 2356 Sale \N \N 21 User \N create ---\ncustomer_id: 303\nuser_id: 21\nopen_cash_register_id: 898\namount: !ruby/object:BigDecimal 18:0.839E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.839E3\nstatus: 0\ndate_sale: 2020-03-14\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-298\nexpiration_date: 2020-04-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.107.100 f76766ee-5982-4185-a66e-37c888c3b7f3 2020-03-15 00:21:39.257577 31838 1535 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.107.100 f76766ee-5982-4185-a66e-37c888c3b7f3 2020-03-15 00:21:39.287689 31839 3190 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 898\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2356\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-298\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-298 189.186.107.100 76c76b90-71d3-4a2e-b882-363bba355bcd 2020-03-15 00:21:56.073803 31840 2356 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.107.100 e4c910b2-6bb0-49e5-a448-e8b9cf1289b3 2020-03-15 00:21:59.183855 31841 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-15 00:02:28.136973000 Z\n- &1 2020-03-15 00:18:07.051682000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-15 00:26:15.308819925 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 1500\n- 1501\n 3002 \N 189.186.107.100 35aa01a3-0f92-4478-b29c-a862c78f4cb5 2020-03-15 00:26:15.316305 31842 4 User \N \N 4 User \N update ---\nunique_session_id:\n- uxRK1UCR2FjPsNqjKzza\n- Rgx3xxzqxuVJbGrxAewy\n 3003 \N 189.186.107.100 35aa01a3-0f92-4478-b29c-a862c78f4cb5 2020-03-15 00:26:15.334899 31843 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-14 17:51:56.269137000 Z\n- &1 2020-03-15 00:19:14.024283000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-15 00:30:19.342534299 Z\nsign_in_count:\n- 190\n- 191\n 383 \N 189.186.107.100 ee29f180-65eb-498c-b7f9-3ee540af1e53 2020-03-15 00:30:19.348333 31844 21 User \N \N 21 User \N update ---\nunique_session_id:\n- qbhfxKCKgiQvgcc8xv1n\n- N3zzkjdNddNx6WuTFTYB\n 384 \N 189.186.107.100 ee29f180-65eb-498c-b7f9-3ee540af1e53 2020-03-15 00:30:19.362164 31845 2357 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 898\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-03-14\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-299\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.107.100 0598d140-9076-44dc-9265-7a352f7c7e29 2020-03-15 00:31:24.5508 31846 1536 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.107.100 0598d140-9076-44dc-9265-7a352f7c7e29 2020-03-15 00:31:24.584459 31847 2357 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.107.100 4f46ee01-25c5-4891-a61b-fdf22977652e 2020-03-15 00:31:31.398495 31848 3191 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 898\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 2357\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-299\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-299 189.186.107.100 4f46ee01-25c5-4891-a61b-fdf22977652e 2020-03-15 00:31:31.423107 31849 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-15 00:18:07.051682000 Z\n- &1 2020-03-15 00:26:15.308819000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-15 00:42:35.980123896 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\nsign_in_count:\n- 1501\n- 1502\n 3004 \N 189.186.1.123 698d4556-9d0d-49ef-900f-d9d64dd0041b 2020-03-15 00:42:35.98778 31850 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Rgx3xxzqxuVJbGrxAewy\n- hFPek5TaJ9iJqChcVEm4\n 3005 \N 189.186.1.123 698d4556-9d0d-49ef-900f-d9d64dd0041b 2020-03-15 00:42:36.006232 31851 1102 Product \N \N 4 User \N create ---\nsku: ACC-1102\nname: PUL-0101\ndescription: PULCERA ROSA\nprice_base: !ruby/object:BigDecimal 18:0.7E2\nprice_sale: !ruby/object:BigDecimal 18:0.159E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1102 fue creado. 189.186.1.123 a9efe166-ba42-401c-9536-d1a0db0f9b5c 2020-03-15 00:46:37.105906 31852 1102 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001102'\n 2 \N 189.186.1.123 a9efe166-ba42-401c-9536-d1a0db0f9b5c 2020-03-15 00:46:37.140096 31853 1791 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1102\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.1.123 a9efe166-ba42-401c-9536-d1a0db0f9b5c 2020-03-15 00:46:37.168764 31854 288 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-77\namount: !ruby/object:BigDecimal 18:0.7E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.7E2\nobservations: ''\npurchase_date: 2020-03-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-77 por $ 70.0 MXN creada. 189.186.1.123 d2f62782-d0e6-42a6-a745-51a284af4916 2020-03-15 00:46:41.550584 31855 1791 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.1.123 d2f62782-d0e6-42a6-a745-51a284af4916 2020-03-15 00:46:41.573894 31856 1103 Product \N \N 4 User \N create ---\nsku: ACC-1103\nname: PUL-0102\ndescription: PULSERA PIEDRAS\nprice_base: !ruby/object:BigDecimal 18:0.36E2\nprice_sale: !ruby/object:BigDecimal 18:0.89E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1103 fue creado. 189.186.1.123 97c67ddd-e0a1-461e-ba2e-1f2b555e11ae 2020-03-15 00:49:23.939484 31857 1103 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001103'\n 2 \N 189.186.1.123 97c67ddd-e0a1-461e-ba2e-1f2b555e11ae 2020-03-15 00:49:23.98015 31858 1792 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1103\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.1.123 97c67ddd-e0a1-461e-ba2e-1f2b555e11ae 2020-03-15 00:49:24.035917 31859 289 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-78\namount: !ruby/object:BigDecimal 18:0.36E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.36E2\nobservations: ''\npurchase_date: 2020-03-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-78 por $ 36.0 MXN creada. 189.186.1.123 75cb8060-1f8b-4e69-a69f-55f8571d7938 2020-03-15 00:49:29.427295 31860 1792 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.1.123 75cb8060-1f8b-4e69-a69f-55f8571d7938 2020-03-15 00:49:29.450241 31861 1104 Product \N \N 4 User \N create ---\nsku: ACC-1104\nname: PUL-0103\ndescription: PULSERA PIEDRA CHICA\nprice_base: !ruby/object:BigDecimal 18:0.15E2\nprice_sale: !ruby/object:BigDecimal 18:0.49E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1104 fue creado. 189.186.1.123 e2375330-5fff-488c-85bf-2baf3c87f8e7 2020-03-15 00:50:32.392794 31862 1104 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001104'\n 2 \N 189.186.1.123 e2375330-5fff-488c-85bf-2baf3c87f8e7 2020-03-15 00:50:32.42225 31863 1793 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1104\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.1.123 e2375330-5fff-488c-85bf-2baf3c87f8e7 2020-03-15 00:50:32.467425 31864 290 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 2\npurchase_code: PV2-C-79\namount: !ruby/object:BigDecimal 18:0.15E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.15E2\nobservations: ''\npurchase_date: 2020-03-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV2-C-79 por $ 15.0 MXN creada. 189.186.1.123 a9aa1451-4a64-4cf1-8098-92cd05de8144 2020-03-15 00:50:34.913246 31865 1793 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.1.123 a9aa1451-4a64-4cf1-8098-92cd05de8144 2020-03-15 00:50:34.936015 31866 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-14 22:38:17.731974000 Z\n- &1 2020-03-14 23:38:04.489615000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-15 02:17:54.002075795 Z\nsign_in_count:\n- 118\n- 119\n 241 \N 189.186.1.123 15305731-c323-4d6b-b0ec-f66c7c2c1830 2020-03-15 02:17:54.008273 31867 8 User \N \N 8 User \N update ---\nunique_session_id:\n- yHrqsFioUVV71NdS5zxU\n- a5g1Xikssfauu7By_gPn\n 242 \N 189.186.1.123 15305731-c323-4d6b-b0ec-f66c7c2c1830 2020-03-15 02:17:54.022871 31868 302 Expense \N \N 8 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 897\nquantity: !ruby/object:BigDecimal 18:0.105E4\nstatus: 1\nobservations: SE DESCUENTAN $60 QUE FALTABAN\nexpense_date: 2020-03-14\nexpense_code: PV2-E-61\n 1 Egreso por 1050.0 registrado 189.186.1.123 bb4758ab-437b-4751-892f-6133698cab2a 2020-03-15 02:20:03.470264 46494 1541 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1541'\n is_parent: false\n sku: CON-1541\n name: CON-0007\n description: PANS DE COLORES PEGADO\n price_base: '500.5'\n price_sale: '1251.0'\n img_product: 30B52A9E-BD2B-4296-A74F-FD836D2FF60E.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '10'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001541'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-14 18:48:10.772797'\n updated_at: &12 2020-11-21 20:00:33.980130763 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1541'\n sku: CON-1541\n name: CON-0007\n description: PANS DE COLORES PEGADO\n price_base: '500.50'\n price_sale: '1251.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-14 18:48:10.772797'\n updated_at: '2020-11-14 18:48:10.809701'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001541'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '10'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1541'\n type: *3\n value: 1541\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CON-1541\n type: *7\n value: CON-1541\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CON-0007\n type: *8\n value: CON-0007\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANS DE COLORES PEGADO\n type: *6\n value: PANS DE COLORES PEGADO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '500.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.5005E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1251.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1251E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 30B52A9E-BD2B-4296-A74F-FD836D2FF60E.png\n type: *2\n value: 30B52A9E-BD2B-4296-A74F-FD836D2FF60E.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '10'\n type: *3\n value: 10\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001541'\n type: *2\n value: '0001541'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-14 18:48:10.772797'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 30B52A9E-BD2B-4296-A74F-FD836D2FF60E.png\n 3 El producto CON-1541 fue modificado. 189.186.1.223 08b2ceef-3c92-4936-8786-88d18bd7a94c 2020-11-21 20:00:34.025147 31869 3192 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 897\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.105E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 302\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.1.123 bb4758ab-437b-4751-892f-6133698cab2a 2020-03-15 02:20:03.493436 31870 918 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 897\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.3708E4\namount_out: !ruby/object:BigDecimal 18:0.105E4\nreceived_by_id: 8\nreceived_cash: !ruby/object:BigDecimal 18:0.19E4\ncash_fund: !ruby/object:BigDecimal 18:0.83E3\nphysical_cash: !ruby/object:BigDecimal 18:0.273E4\nobservations: FALTAN $100 DE LA TERMINAL\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.1.123 09444766-02cb-4bc6-a34b-dc1f4c2601f0 2020-03-15 02:23:34.996163 31871 897 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.1.123 09444766-02cb-4bc6-a34b-dc1f4c2601f0 2020-03-15 02:23:35.019508 31872 919 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 896\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1048E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1045E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1045E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.1.123 5777b475-59e8-4a4a-b9c1-9f6a221531cc 2020-03-15 02:35:11.831944 31873 896 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.1.123 5777b475-59e8-4a4a-b9c1-9f6a221531cc 2020-03-15 02:35:11.84802 31874 303 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 898\nquantity: !ruby/object:BigDecimal 18:0.1E3\nstatus: 1\nobservations: ZAPATOS DANNA, PAPEL DE BAÑO\nexpense_date: 2020-03-14\nexpense_code: PV3-E-33\n 1 Egreso por 100.0 registrado 189.186.107.100 2fab6b9d-9b8b-4db3-8882-a9b0ceba1c72 2020-03-15 02:46:59.517261 31875 3193 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 898\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 303\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.107.100 2fab6b9d-9b8b-4db3-8882-a9b0ceba1c72 2020-03-15 02:46:59.548911 31876 920 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 898\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.899E3\namount_out: !ruby/object:BigDecimal 18:0.1E3\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.924E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1924E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.107.100 635d0b5d-a82a-45e6-90fb-21d22cdc83d1 2020-03-15 03:00:35.334036 31877 898 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.107.100 635d0b5d-a82a-45e6-90fb-21d22cdc83d1 2020-03-15 03:00:35.347573 31878 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-15 00:19:14.024283000 Z\n- &1 2020-03-15 00:30:19.342534000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-15 17:41:05.952450894 Z\nsign_in_count:\n- 191\n- 192\n 385 \N 189.186.107.100 347916ce-e222-4069-b1c9-4ad6da75446c 2020-03-15 17:41:05.983605 31879 21 User \N \N 21 User \N update ---\nunique_session_id:\n- N3zzkjdNddNx6WuTFTYB\n- PcsiiiW3oDK9HsACkVys\n 386 \N 189.186.107.100 347916ce-e222-4069-b1c9-4ad6da75446c 2020-03-15 17:41:06.006926 31880 899 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.924E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 924.0 189.186.107.100 4484571a-6c3e-492f-89cc-e4eba4977ce4 2020-03-15 17:42:44.290606 31881 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-14 02:24:01.538059000 Z\n- &1 2020-03-14 17:32:37.613525000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-15 17:49:30.398852772 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132142\n mask_addr: 4294967295\nsign_in_count:\n- 504\n- 505\n 1013 \N 187.149.108.238 2654c130-44f7-4ea3-adcc-0b5143640102 2020-03-15 17:49:30.408132 31882 2 User \N \N 2 User \N update ---\nunique_session_id:\n- t4bWEo6yT_u5YsXRdtCU\n- BU-HNTjM68gXUya6oLo7\n 1014 \N 187.149.108.238 2654c130-44f7-4ea3-adcc-0b5143640102 2020-03-15 17:49:30.429898 31883 519 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-15\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.107.100 06306774-3e10-4e99-810d-5748d01e4a03 2020-03-15 18:57:03.360393 31884 1794 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 993\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 06306774-3e10-4e99-810d-5748d01e4a03 2020-03-15 18:57:03.39304 31885 526 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-15\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.107.100 77d36e37-15e3-4c49-8d1f-085a1632584f 2020-03-15 18:57:16.982594 31886 1795 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1099\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 77d36e37-15e3-4c49-8d1f-085a1632584f 2020-03-15 18:57:17.007303 31887 524 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-15\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.107.100 5f894bc3-5358-4d5d-9c18-334428e49d7d 2020-03-15 18:57:25.329769 31888 1796 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1097\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 5f894bc3-5358-4d5d-9c18-334428e49d7d 2020-03-15 18:57:25.351252 31889 900 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1045E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1045.0 187.149.108.238 3511311c-ca54-4181-b1b4-293f439c5bf5 2020-03-15 19:06:18.557166 31890 2358 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 900\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-03-15\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-1162\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.238 b8aaeb77-9583-4d29-8f15-2e27ea0c45ae 2020-03-15 19:06:41.444715 31891 1638 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.108.238 b8aaeb77-9583-4d29-8f15-2e27ea0c45ae 2020-03-15 19:06:41.484355 31893 3194 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 900\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 2358\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1162\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1162 187.149.108.238 859f20fc-29d5-405a-b7a0-0f19d646a70d 2020-03-15 19:07:29.59316 31894 2359 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 900\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.479E2\ntotal: !ruby/object:BigDecimal 18:0.4311E3\nstatus: 0\ndate_sale: 2020-03-15\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-1163\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.238 56e4d552-f94a-4913-8bdb-fec1dc2557cb 2020-03-15 19:19:13.573028 31895 1635 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.108.238 56e4d552-f94a-4913-8bdb-fec1dc2557cb 2020-03-15 19:19:13.603246 31896 2359 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.238 d2fb197f-d058-44d5-8c4d-ed7a2fd09ef7 2020-03-15 19:19:36.371017 31897 3195 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 900\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4311E3\nmove_type: '1'\nsale_id: 2359\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1163\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.689E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1163 187.149.108.238 d2fb197f-d058-44d5-8c4d-ed7a2fd09ef7 2020-03-15 19:19:36.393309 31898 2360 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 900\namount: !ruby/object:BigDecimal 18:0.87141E3\ntax: !ruby/object:BigDecimal 18:0.2759E2\ndiscount: !ruby/object:BigDecimal 18:0.699E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-03-15\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-1164\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.238 85099846-7c1d-4f8d-8aa5-9036b7c033a1 2020-03-15 19:50:33.782483 31899 174 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.108.238 85099846-7c1d-4f8d-8aa5-9036b7c033a1 2020-03-15 19:50:33.822146 31900 2360 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.238 4315a3b0-4ebe-41f3-b4fd-110a32221625 2020-03-15 19:50:41.061443 31901 3196 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 900\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2360\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1164\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1164 187.149.108.238 4315a3b0-4ebe-41f3-b4fd-110a32221625 2020-03-15 19:50:41.08359 31902 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-15 00:26:15.308819000 Z\n- &1 2020-03-15 00:42:35.980123000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-15 20:23:18.328194409 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934326\n mask_addr: 4294967295\nsign_in_count:\n- 1502\n- 1503\n 3006 \N 200.68.135.118 2ce029dd-ca9a-4d37-bd29-14b615f2185b 2020-03-15 20:23:18.36006 31903 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hFPek5TaJ9iJqChcVEm4\n- Q6KjVLhW-i-ZBCEmFs_V\n 3007 \N 200.68.135.118 2ce029dd-ca9a-4d37-bd29-14b615f2185b 2020-03-15 20:23:18.396955 31904 2361 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 900\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-03-15\nsaletype: 1\nseller_id: 18\nsale_code: PV1-V-1165\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.238 fea80295-2051-4d80-a1bc-1344ee150d54 2020-03-15 20:49:18.729084 31905 1486 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.108.238 fea80295-2051-4d80-a1bc-1344ee150d54 2020-03-15 20:49:18.792713 31906 2361 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.238 0054b50d-f5eb-46ab-9c72-83ef1b0ccc80 2020-03-15 20:49:33.134327 31907 3197 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 900\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 2361\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1165\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1165 187.149.108.238 0054b50d-f5eb-46ab-9c72-83ef1b0ccc80 2020-03-15 20:49:33.164745 31908 921 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 900\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.22291E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.23E4\ncash_fund: !ruby/object:BigDecimal 18:0.974E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3274E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.108.238 abbb527b-40e9-498e-b7d3-92f94a884c16 2020-03-15 22:00:18.465937 31909 900 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.108.238 abbb527b-40e9-498e-b7d3-92f94a884c16 2020-03-15 22:00:18.480798 31910 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-15 00:42:35.980123000 Z\n- &1 2020-03-15 20:23:18.328194000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-15 22:16:02.402004677 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934326\n mask_addr: 4294967295\nsign_in_count:\n- 1503\n- 1504\n 3008 \N 200.68.135.118 23d601a1-08c1-46a0-bdcd-8a8153847fe7 2020-03-15 22:16:02.408587 31911 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Q6KjVLhW-i-ZBCEmFs_V\n- NzLxaYo-jvWuEHdmsegh\n 3009 \N 200.68.135.118 23d601a1-08c1-46a0-bdcd-8a8153847fe7 2020-03-15 22:16:02.424871 31912 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-03-13 17:12:26.694547000 Z\n- &1 2020-03-14 20:37:56.977101000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-16 17:08:18.409715949 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132142\n mask_addr: 4294967295\nsign_in_count:\n- 130\n- 131\n 262 \N 187.149.108.238 7dde5af0-393d-4622-8fe3-ccd466816812 2020-03-16 17:08:18.44021 46495 1352 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1352'\n is_parent: false\n sku: COS-1352\n name: 4CSCP20791\n description: COSMETIQUERA CLOE ROSA METALICA\n price_base: '249.5'\n price_sale: '499.0'\n img_product: 3B4F80FC-CA7E-45CE-B2EE-C4911E6F1871.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '14'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170791754'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-22 20:14:07.937129'\n updated_at: &12 2020-11-21 20:24:13.076888600 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1352'\n sku: COS-1352\n name: 4CSCP20791\n description: COSMETIQUERA CLOE ROSA METALICA\n price_base: '249.50'\n price_sale: '499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-22 20:14:07.937129'\n updated_at: '2020-09-22 20:14:07.937129'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170791754'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '14'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1352'\n type: *3\n value: 1352\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: COS-1352\n type: *7\n value: COS-1352\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 4CSCP20791\n type: *8\n value: 4CSCP20791\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: COSMETIQUERA CLOE ROSA METALICA\n type: *6\n value: COSMETIQUERA CLOE ROSA METALICA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '249.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.499E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 3B4F80FC-CA7E-45CE-B2EE-C4911E6F1871.jpeg\n type: *2\n value: 3B4F80FC-CA7E-45CE-B2EE-C4911E6F1871.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '14'\n type: *3\n value: 14\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170791754'\n type: *2\n value: '7509170791754'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-22 20:14:07.937129'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 3B4F80FC-CA7E-45CE-B2EE-C4911E6F1871.jpeg\n 2 El producto COS-1352 fue modificado. 189.186.1.223 74a90be7-b472-4adf-a65f-c713177d0a6e 2020-11-21 20:24:13.1416 31913 27 User \N \N 27 User \N update ---\nunique_session_id:\n- A-F_LYZKy6KnvfXQ2xH_\n- ZcsANuLDj_qFThxLzTT6\n 263 \N 187.149.108.238 7dde5af0-393d-4622-8fe3-ccd466816812 2020-03-16 17:08:18.463916 31914 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-14 17:32:37.613525000 Z\n- &1 2020-03-15 17:49:30.398852000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-16 17:22:15.134945876 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132142\n mask_addr: 4294967295\nsign_in_count:\n- 505\n- 506\n 1015 \N 187.149.108.238 4ded6ae8-8b06-4c94-a2b7-53dee2703626 2020-03-16 17:22:15.142952 31915 2 User \N \N 2 User \N update ---\nunique_session_id:\n- BU-HNTjM68gXUya6oLo7\n- _wpaAfhgj2ydnABzk7vC\n 1016 \N 187.149.108.238 4ded6ae8-8b06-4c94-a2b7-53dee2703626 2020-03-16 17:22:15.160738 31916 901 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.974E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 974.0 187.149.108.238 1acc30e0-ccf3-4d8f-8316-29669fc67acf 2020-03-16 17:24:56.995198 31917 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-15 20:23:18.328194000 Z\n- &1 2020-03-15 22:16:02.402004000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-16 18:28:28.662070007 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934326\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 1504\n- 1505\n 3010 \N 189.186.107.100 3037aabb-1007-4d28-9293-0f9960373e29 2020-03-16 18:28:28.668991 31918 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NzLxaYo-jvWuEHdmsegh\n- rQye_ySzyL2RHww_7Xk6\n 3011 \N 189.186.107.100 3037aabb-1007-4d28-9293-0f9960373e29 2020-03-16 18:28:28.68768 31919 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-15 00:30:19.342534000 Z\n- &1 2020-03-15 17:41:05.952450000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-16 18:58:31.747340196 Z\nsign_in_count:\n- 192\n- 193\n 387 \N 189.186.107.100 c1dcc525-96b1-466e-bc56-272264b0baeb 2020-03-16 18:58:31.75371 31920 21 User \N \N 21 User \N update ---\nunique_session_id:\n- PcsiiiW3oDK9HsACkVys\n- xFon3PPwVsfvAP_e6ybn\n 388 \N 189.186.107.100 c1dcc525-96b1-466e-bc56-272264b0baeb 2020-03-16 18:58:31.769135 31921 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-15 22:16:02.402004000 Z\n- &1 2020-03-16 18:28:28.662070000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-16 19:10:51.739064113 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934326\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 1505\n- 1506\n 3012 \N 189.186.107.100 32835238-7752-493c-9b63-b58cd4593006 2020-03-16 19:10:51.747235 31922 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rQye_ySzyL2RHww_7Xk6\n- KAns1Dyq4tWpeUyLXySm\n 3013 \N 189.186.107.100 32835238-7752-493c-9b63-b58cd4593006 2020-03-16 19:10:51.766038 31923 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-15 17:41:05.952450000 Z\n- &1 2020-03-16 18:58:31.747340000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-16 19:17:32.009823102 Z\nsign_in_count:\n- 193\n- 194\n 389 \N 189.186.107.100 2e083dd2-db35-4f2f-a12e-e4a4afba0829 2020-03-16 19:17:32.01635 31924 21 User \N \N 21 User \N update ---\nunique_session_id:\n- xFon3PPwVsfvAP_e6ybn\n- cQHPkA9fSBzDtLPKTDXe\n 390 \N 189.186.107.100 2e083dd2-db35-4f2f-a12e-e4a4afba0829 2020-03-16 19:17:32.030726 31925 902 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.83E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 830.0 187.149.108.238 fa513710-9dd6-45ef-8ef6-3582aa541293 2020-03-16 19:25:52.921559 31926 2362 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 901\namount: !ruby/object:BigDecimal 18:0.90141E3\ntax: !ruby/object:BigDecimal 18:0.2759E2\ndiscount: !ruby/object:BigDecimal 18:0.729E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-03-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1166\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.238 4603b131-4cd4-429c-b79a-6c62ec0e50c5 2020-03-16 19:31:36.883886 31927 205 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.108.238 4603b131-4cd4-429c-b79a-6c62ec0e50c5 2020-03-16 19:31:36.933755 31928 2362 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.238 7506a82a-6d0d-4a58-bb03-a030f043c1ef 2020-03-16 19:31:45.003958 31929 3198 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 901\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2362\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1166\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1166 187.149.108.238 7506a82a-6d0d-4a58-bb03-a030f043c1ef 2020-03-16 19:31:45.036465 31930 1105 Product \N \N 21 User \N create ---\nsku: ACC-1105\nname: ARE-0066\ndescription: Colorido Haoshi Love Letter Pendientes Personalidad Pearl Love Wild Earring\nprice_base: !ruby/object:BigDecimal 18:0.18301E3\nprice_sale: !ruby/object:BigDecimal 18:0.379E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE66.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1105 fue creado. 189.186.107.100 2bc5a6a0-0089-45a4-98a4-920bc0cac3e7 2020-03-16 19:54:13.108883 31931 1105 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001105'\n 2 \N 189.186.107.100 2bc5a6a0-0089-45a4-98a4-920bc0cac3e7 2020-03-16 19:54:13.145128 31932 1797 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1105\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 2bc5a6a0-0089-45a4-98a4-920bc0cac3e7 2020-03-16 19:54:13.176559 31933 2363 Sale \N \N 2 User \N create ---\ncustomer_id: 36\nuser_id: 2\nopen_cash_register_id: 901\namount: !ruby/object:BigDecimal 18:0.949E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.949E3\nstatus: 0\ndate_sale: 2020-03-16\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-1167\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.238 9ece48f3-55f2-43bc-8072-a21c010d4ce7 2020-03-16 19:54:51.669268 31934 1410 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 14 \N 187.149.108.238 9ece48f3-55f2-43bc-8072-a21c010d4ce7 2020-03-16 19:54:51.709179 31954 1803 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1111\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 317a60bd-1d7a-48af-9d1c-1764b9e3eab0 2020-03-16 20:17:35.221603 31935 1106 Product \N \N 21 User \N create ---\nsku: ACC-1106\nname: ARE-0067\ndescription: Pendiente De Cristal De Moda\nprice_base: !ruby/object:BigDecimal 18:0.6201E2\nprice_sale: !ruby/object:BigDecimal 18:0.179E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE67.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1106 fue creado. 189.186.107.100 5b391d44-8771-4899-83b3-99068d62e44c 2020-03-16 19:57:22.407461 31936 1106 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001106'\n 2 \N 189.186.107.100 5b391d44-8771-4899-83b3-99068d62e44c 2020-03-16 19:57:22.438261 31937 1798 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1106\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 5b391d44-8771-4899-83b3-99068d62e44c 2020-03-16 19:57:22.475187 31938 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-16 18:28:28.662070000 Z\n- &1 2020-03-16 19:10:51.739064000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-16 20:01:17.268804028 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945593\n mask_addr: 4294967295\nsign_in_count:\n- 1506\n- 1507\n 3014 \N 200.68.179.121 50bba8ee-0d90-4dd7-bde3-cd2b87223107 2020-03-16 20:01:17.277251 31939 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KAns1Dyq4tWpeUyLXySm\n- 91_9PrvwYadfyfF8yyvv\n 3015 \N 200.68.179.121 50bba8ee-0d90-4dd7-bde3-cd2b87223107 2020-03-16 20:01:17.309901 31940 1107 Product \N \N 21 User \N create ---\nsku: ACC-1107\nname: DIA-0086\ndescription: Diadema De Moda Imitación Perla Cristal Diamante Diamante Flor Tela\nprice_base: !ruby/object:BigDecimal 18:0.15888E3\nprice_sale: !ruby/object:BigDecimal 18:0.369E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA86.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1107 fue creado. 189.186.107.100 bfc139e9-5924-45e0-bb53-766f4475f2de 2020-03-16 20:01:34.211587 31941 1107 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001107'\n 2 \N 189.186.107.100 bfc139e9-5924-45e0-bb53-766f4475f2de 2020-03-16 20:01:34.246235 31942 1799 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1107\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 bfc139e9-5924-45e0-bb53-766f4475f2de 2020-03-16 20:01:34.277199 31943 1108 Product \N \N 21 User \N create ---\nsku: ACC-1108\nname: ARE-0068\ndescription: Plata Pin Color Pentagrama Cristal Pendientes Pendientes Largos DE ESTRELLA\nprice_base: !ruby/object:BigDecimal 18:0.13351E3\nprice_sale: !ruby/object:BigDecimal 18:0.32E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE0068.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1108 fue creado. 189.186.107.100 b4d46484-1dd8-4f3b-bab0-1649d00fabb8 2020-03-16 20:06:54.362285 31944 1108 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001108'\n 2 \N 189.186.107.100 b4d46484-1dd8-4f3b-bab0-1649d00fabb8 2020-03-16 20:06:54.455832 31945 1800 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1108\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 b4d46484-1dd8-4f3b-bab0-1649d00fabb8 2020-03-16 20:06:54.484622 31946 1109 Product \N \N 21 User \N create ---\nsku: ACC-1109\nname: ARE-0069\ndescription: 'Pendientes Largos Largos De Corazón De Melocotón De Moda Con Pendientes\n De Circonita '\nprice_base: !ruby/object:BigDecimal 18:0.6052E2\nprice_sale: !ruby/object:BigDecimal 18:0.189E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE69.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1109 fue creado. 189.186.107.100 9909e480-8abe-4849-86fe-34eb545d5a14 2020-03-16 20:09:06.15198 31947 1109 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001109'\n 2 \N 189.186.107.100 9909e480-8abe-4849-86fe-34eb545d5a14 2020-03-16 20:09:06.200954 31948 1801 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1109\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 9909e480-8abe-4849-86fe-34eb545d5a14 2020-03-16 20:09:06.249599 31949 1110 Product \N \N 21 User \N create ---\nsku: ACC-1110\nname: DIA-0087\ndescription: Gran Perla Corazón Geometría Diadema De Baile Salvaje\nprice_base: !ruby/object:BigDecimal 18:0.15028E3\nprice_sale: !ruby/object:BigDecimal 18:0.389E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA87.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1110 fue creado. 189.186.107.100 28285a87-79c9-4859-a36c-d06cca20458a 2020-03-16 20:16:15.975892 31950 1110 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001110'\n 2 \N 189.186.107.100 28285a87-79c9-4859-a36c-d06cca20458a 2020-03-16 20:16:16.01579 31951 1802 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1110\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 28285a87-79c9-4859-a36c-d06cca20458a 2020-03-16 20:16:16.044841 31952 1111 Product \N \N 21 User \N create ---\nsku: ACC-1111\nname: DIA-0088\ndescription: Lunares Cruz Diadema Horquilla Diadema NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.2772E2\nprice_sale: !ruby/object:BigDecimal 18:0.99E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DIA88.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1111 fue creado. 189.186.107.100 317a60bd-1d7a-48af-9d1c-1764b9e3eab0 2020-03-16 20:17:35.150352 31953 1111 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001111'\n 2 \N 189.186.107.100 317a60bd-1d7a-48af-9d1c-1764b9e3eab0 2020-03-16 20:17:35.18895 31955 35 ProductsReturn \N \N 27 User \N create ---\nsale_id: 2338\nuser_id: 27\nreturn_code: PV2-D-17\npointsale_id: 2\nnew_amount: !ruby/object:BigDecimal 18:0.988E3\nreturned_amount: !ruby/object:BigDecimal 18:0.799E3\ndifference_amount: !ruby/object:BigDecimal 18:0.189E3\nis_money_returned: false\n 1 devolución PV2-D-17 creada. 187.149.108.238 996f4ddb-b2ec-40fd-a69a-e16a561709cf 2020-03-16 20:17:37.735261 31956 1652 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.108.238 996f4ddb-b2ec-40fd-a69a-e16a561709cf 2020-03-16 20:17:37.763745 31957 367 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E2\n- !ruby/object:BigDecimal 18:0.29E2\n 27 \N 187.149.108.238 996f4ddb-b2ec-40fd-a69a-e16a561709cf 2020-03-16 20:17:37.792992 31958 1675 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.108.238 996f4ddb-b2ec-40fd-a69a-e16a561709cf 2020-03-16 20:17:37.816209 31959 365 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.42E2\n- !ruby/object:BigDecimal 18:0.41E2\n 26 \N 187.149.108.238 996f4ddb-b2ec-40fd-a69a-e16a561709cf 2020-03-16 20:17:37.835802 31960 3199 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 902\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.189E3\nmove_type: '1'\nsale_id: 2338\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.311E3\nproducts_return_id: 35\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV2-D-17 187.149.108.238 5751f856-db47-4beb-8aa3-1d38e4be0d6b 2020-03-16 20:17:52.197252 31961 1112 Product \N \N 21 User \N create ---\nsku: ACC-1112\nname: ARE-0090\ndescription: Pendientes De Perlas De Moda Pendientes De Flores De Borla Larga Salvaje\nprice_base: !ruby/object:BigDecimal 18:0.5525E2\nprice_sale: !ruby/object:BigDecimal 18:0.169E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE90.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1112 fue creado. 189.186.107.100 6123e015-a0f9-44d0-a3ca-cc37d1fc62d2 2020-03-16 20:20:37.657767 31962 1112 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001112'\n 2 \N 189.186.107.100 6123e015-a0f9-44d0-a3ca-cc37d1fc62d2 2020-03-16 20:20:37.69116 31963 1804 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1112\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 6123e015-a0f9-44d0-a3ca-cc37d1fc62d2 2020-03-16 20:20:37.720332 31964 1113 Product \N \N 21 User \N create ---\nsku: ACC-1113\nname: ARE-0070\ndescription: Pendientes De Flores Simples Pendientes De Mariposa De Esmalte De Moda\n Pendientes De Borlas De\nprice_base: !ruby/object:BigDecimal 18:0.7912E2\nprice_sale: !ruby/object:BigDecimal 18:0.189E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE70.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1113 fue creado. 189.186.107.100 c414d181-ae0a-45e0-a49b-c14950332d63 2020-03-16 20:23:45.576479 31965 1113 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001113'\n 2 \N 189.186.107.100 c414d181-ae0a-45e0-a49b-c14950332d63 2020-03-16 20:23:45.678089 31966 1805 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1113\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 c414d181-ae0a-45e0-a49b-c14950332d63 2020-03-16 20:23:45.70541 31967 1114 Product \N \N 21 User \N create ---\nsku: ACC-1114\nname: ARE-0071\ndescription: Pendientes Grandes De Borla De Hoja Dorada\nprice_base: !ruby/object:BigDecimal 18:0.4193E2\nprice_sale: !ruby/object:BigDecimal 18:0.149E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE71.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1114 fue creado. 189.186.107.100 c2bd8714-9020-4f04-8e69-0a2ad237a20e 2020-03-16 20:26:48.91796 31968 1114 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001114'\n 2 \N 189.186.107.100 c2bd8714-9020-4f04-8e69-0a2ad237a20e 2020-03-16 20:26:48.951655 31969 1806 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1114\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 c2bd8714-9020-4f04-8e69-0a2ad237a20e 2020-03-16 20:26:48.97927 31970 1115 Product \N \N 21 User \N create ---\nsku: ACC-1115\nname: ARE-0072\ndescription: Aretes De Flores Aleación Con Cuentas Boho Valentine\nprice_base: !ruby/object:BigDecimal 18:0.5827E2\nprice_sale: !ruby/object:BigDecimal 18:0.169E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE72.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1115 fue creado. 189.186.107.100 b442be08-8987-4199-94f9-47d3102a124c 2020-03-16 20:29:57.853662 31971 1115 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001115'\n 2 \N 189.186.107.100 b442be08-8987-4199-94f9-47d3102a124c 2020-03-16 20:29:57.88276 31972 1807 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1115\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 b442be08-8987-4199-94f9-47d3102a124c 2020-03-16 20:29:57.910217 31973 1116 Product \N \N 21 User \N create ---\nsku: ACC-1116\nname: ARE-0073\ndescription: PENDIENTES REDONDOS DE FLORES PINTADOS A MANO\nprice_base: !ruby/object:BigDecimal 18:0.2623E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE73.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1116 fue creado. 189.186.107.100 f849ce70-c062-4cf1-ba85-19b3e9b25b7c 2020-03-16 20:32:22.542124 31974 1116 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001116'\n 2 \N 189.186.107.100 f849ce70-c062-4cf1-ba85-19b3e9b25b7c 2020-03-16 20:32:22.581945 31975 1808 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1116\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.107.100 f849ce70-c062-4cf1-ba85-19b3e9b25b7c 2020-03-16 20:32:22.617712 31976 291 Purchase \N \N 21 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-33\namount: !ruby/object:BigDecimal 18:0.124299E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.124299E4\nobservations: ''\npurchase_date: 2020-03-16\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-33 por $ 1242.99 MXN creada. 189.186.107.100 a434b034-00e0-45cc-9a74-4bc2b48c821d 2020-03-16 20:34:04.966564 31977 1699 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.107.100 a434b034-00e0-45cc-9a74-4bc2b48c821d 2020-03-16 20:34:04.997363 31978 1797 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 a434b034-00e0-45cc-9a74-4bc2b48c821d 2020-03-16 20:34:05.037189 31979 1798 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 a434b034-00e0-45cc-9a74-4bc2b48c821d 2020-03-16 20:34:05.067147 31980 1799 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 a434b034-00e0-45cc-9a74-4bc2b48c821d 2020-03-16 20:34:05.093976 31981 1800 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 a434b034-00e0-45cc-9a74-4bc2b48c821d 2020-03-16 20:34:05.120332 31982 1801 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.107.100 a434b034-00e0-45cc-9a74-4bc2b48c821d 2020-03-16 20:34:05.148476 31983 1802 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 a434b034-00e0-45cc-9a74-4bc2b48c821d 2020-03-16 20:34:05.175174 31984 1803 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 a434b034-00e0-45cc-9a74-4bc2b48c821d 2020-03-16 20:34:05.20131 31985 1804 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 a434b034-00e0-45cc-9a74-4bc2b48c821d 2020-03-16 20:34:05.227206 31986 1805 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 a434b034-00e0-45cc-9a74-4bc2b48c821d 2020-03-16 20:34:05.254116 31987 1806 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 a434b034-00e0-45cc-9a74-4bc2b48c821d 2020-03-16 20:34:05.279434 31988 1807 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 a434b034-00e0-45cc-9a74-4bc2b48c821d 2020-03-16 20:34:05.307121 31989 1808 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.107.100 a434b034-00e0-45cc-9a74-4bc2b48c821d 2020-03-16 20:34:05.333439 31990 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-16 19:10:51.739064000 Z\n- &1 2020-03-16 20:01:17.268804000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-16 20:38:07.906187437 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945593\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945593\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\nsign_in_count:\n- 1507\n- 1508\n 3016 \N 189.186.107.100 73706405-1ee8-4b1d-a786-c9831ddd7d3f 2020-03-16 20:38:07.914236 31991 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 91_9PrvwYadfyfF8yyvv\n- sdMZZYgthmkP11SEFhWs\n 3017 \N 189.186.107.100 73706405-1ee8-4b1d-a786-c9831ddd7d3f 2020-03-16 20:38:07.935849 31992 1097 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1097'\n is_parent: false\n sku: ACC-1097\n name: DIA-0082\n description: DIADEMA CORAZONES MEZCLILLA\n price_base: '33.0'\n price_sale: '119.0'\n img_product: DIA82.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001097'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-14 20:22:45.396417'\n updated_at: &12 2020-03-16 20:38:43.974093603 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1097'\n sku: ACC-1097\n name: DIA-0082\n description: DIADEMA CORAZONES MEZCLILLA\n price_base: '33.00'\n price_sale: '119.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-14 20:22:45.396417'\n updated_at: '2020-03-14 20:22:45.437047'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001097'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1097'\n type: *3\n value: 1097\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1097\n type: *7\n value: ACC-1097\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0082\n type: *8\n value: DIA-0082\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMA CORAZONES MEZCLILLA\n type: *6\n value: DIADEMA CORAZONES MEZCLILLA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '33.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.33E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '119.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.119E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DIA82.jpg\n type: *2\n value: DIA82.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001097'\n type: *2\n value: '0001097'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-14 20:22:45.396417'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- DIA82.jpg\n 3 El producto ACC-1097 fue modificado. 189.186.107.100 76885c30-ef12-40bd-b69c-af691f858bc9 2020-03-16 20:38:44.018408 31993 1095 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1095'\n is_parent: false\n sku: ACC-1095\n name: DIA-0081\n description: DIADEMA BRILLOS GAZA GRIS\n price_base: '41.0'\n price_sale: '99.0'\n img_product: DIA80.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001095'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-14 20:04:54.914963'\n updated_at: &12 2020-03-16 20:40:07.698710075 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1095'\n sku: ACC-1095\n name: DIA-0081\n description: DIADEMA BRILLOS GAZA GRIS\n price_base: '41.00'\n price_sale: '99.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-14 20:04:54.914963'\n updated_at: '2020-03-14 20:04:54.960055'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001095'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1095'\n type: *3\n value: 1095\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1095\n type: *7\n value: ACC-1095\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0081\n type: *8\n value: DIA-0081\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMA BRILLOS GAZA GRIS\n type: *6\n value: DIADEMA BRILLOS GAZA GRIS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '41.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.41E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '99.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.99E2\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DIA80.jpg\n type: *2\n value: DIA80.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001095'\n type: *2\n value: '0001095'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-14 20:04:54.914963'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- DIA80.jpg\n 3 El producto ACC-1095 fue modificado. 189.186.107.100 20f0d04e-8e2f-4dd6-9d35-46b3ac810020 2020-03-16 20:40:07.746479 31994 522 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-16\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.108.238 caef10f3-f6fe-46ce-8d0c-2cf28959b17b 2020-03-16 20:44:58.752109 31995 1809 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1096\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.108.238 caef10f3-f6fe-46ce-8d0c-2cf28959b17b 2020-03-16 20:44:58.7768 31996 525 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-16\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.108.238 d92144c6-d0fa-43b8-8be3-1572403f28d7 2020-03-16 20:45:26.375803 31997 1810 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1099\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.108.238 d92144c6-d0fa-43b8-8be3-1572403f28d7 2020-03-16 20:45:26.400775 31998 527 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-16\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.108.238 8848d387-25a1-4ff9-8638-5e385650ee9f 2020-03-16 20:45:37.93974 31999 1811 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1100\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.108.238 8848d387-25a1-4ff9-8638-5e385650ee9f 2020-03-16 20:45:38.000988 32000 1099 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1099'\n is_parent: false\n sku: ACC-1099\n name: DIA-0084\n description: DIADEMA NEGRA Y DORADA BRILLOSA CON BOLITAS\n price_base: '34.0'\n price_sale: '99.0'\n img_product: DIA84.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001099'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-14 20:53:11.168595'\n updated_at: &12 2020-03-16 20:51:40.123380854 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1099'\n sku: ACC-1099\n name: DIA-0084\n description: DIADEMA NEGRA Y DORADA BRILLOSA CON BOLITAS\n price_base: '34.00'\n price_sale: '99.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-14 20:53:11.168595'\n updated_at: '2020-03-14 20:53:11.214973'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001099'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1099'\n type: *3\n value: 1099\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1099\n type: *7\n value: ACC-1099\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0084\n type: *8\n value: DIA-0084\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMA NEGRA Y DORADA BRILLOSA CON BOLITAS\n type: *6\n value: DIADEMA NEGRA Y DORADA BRILLOSA CON BOLITAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '34.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.34E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '99.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.99E2\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DIA84.jpg\n type: *2\n value: DIA84.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001099'\n type: *2\n value: '0001099'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-14 20:53:11.168595'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- DIA84.jpg\n 3 El producto ACC-1099 fue modificado. 189.186.107.100 9bdb2b71-58ef-4435-8dc6-17f2da32e680 2020-03-16 20:51:40.171008 32001 1100 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1100'\n is_parent: false\n sku: ACC-1100\n name: DIA-0085\n description: DIADEMA COLORES NEON\n price_base: '41.0'\n price_sale: '89.0'\n img_product: DIA85.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001100'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-14 20:57:25.172418'\n updated_at: &12 2020-03-16 20:53:30.017284655 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1100'\n sku: ACC-1100\n name: DIA-0085\n description: DIADEMA COLORES NEON\n price_base: '41.00'\n price_sale: '89.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-14 20:57:25.172418'\n updated_at: '2020-03-14 20:57:25.209051'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001100'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1100'\n type: *3\n value: 1100\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1100\n type: *7\n value: ACC-1100\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0085\n type: *8\n value: DIA-0085\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMA COLORES NEON\n type: *6\n value: DIADEMA COLORES NEON\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '41.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.41E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '89.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.89E2\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DIA85.jpg\n type: *2\n value: DIA85.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001100'\n type: *2\n value: '0001100'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-14 20:57:25.172418'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- DIA85.jpg\n 3 El producto ACC-1100 fue modificado. 189.186.107.100 60da9495-6a3a-4eed-b666-1d2a28ba9e46 2020-03-16 20:53:30.072078 32002 1098 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1098'\n is_parent: false\n sku: ACC-1098\n name: DIA-0083\n description: DIADEMA ROSA FUSCIA PIEDRAS\n price_base: '127.0'\n price_sale: '289.0'\n img_product: DIA83.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001098'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-14 20:30:16.495931'\n updated_at: &12 2020-03-16 20:54:25.912127508 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1098'\n sku: ACC-1098\n name: DIA-0083\n description: DIADEMA ROSA FUSCIA PIEDRAS\n price_base: '127.00'\n price_sale: '289.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-14 20:30:16.495931'\n updated_at: '2020-03-14 20:30:16.554992'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001098'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1098'\n type: *3\n value: 1098\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1098\n type: *7\n value: ACC-1098\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0083\n type: *8\n value: DIA-0083\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMA ROSA FUSCIA PIEDRAS\n type: *6\n value: DIADEMA ROSA FUSCIA PIEDRAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '127.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.127E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '289.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.289E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DIA83.jpg\n type: *2\n value: DIA83.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001098'\n type: *2\n value: '0001098'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-14 20:30:16.495931'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- DIA83.jpg\n 3 El producto ACC-1098 fue modificado. 189.186.107.100 e5ee36c3-2eb5-4f53-8a7d-27d60016b13c 2020-03-16 20:54:25.959598 32003 1079 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1079'\n is_parent: false\n sku: ACC-1079\n name: DIA-0060\n description: DIADEMA PERLAS\n price_base: '57.0'\n price_sale: '129.0'\n img_product: DIA60.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001079'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-01 02:20:38.566857'\n updated_at: &12 2020-03-16 20:58:55.895493099 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1079'\n sku: ACC-1079\n name: DIA-0060\n description: DIADEMA PERLAS\n price_base: '57.00'\n price_sale: '129.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-01 02:20:38.566857'\n updated_at: '2020-03-01 02:20:38.606462'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001079'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1079'\n type: *3\n value: 1079\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1079\n type: *7\n value: ACC-1079\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0060\n type: *8\n value: DIA-0060\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMA PERLAS\n type: *6\n value: DIADEMA PERLAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '57.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.57E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '129.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.129E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DIA60.jpg\n type: *2\n value: DIA60.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001079'\n type: *2\n value: '0001079'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-01 02:20:38.566857'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- DIA60.jpg\n 3 El producto ACC-1079 fue modificado. 189.186.107.100 05359683-6cd4-4871-91ac-e74dc3f94b6f 2020-03-16 20:58:55.939283 32004 1053 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1053'\n is_parent: false\n sku: ACC-1053\n name: DIA.-0051\n description: DIADEMA ROSA DE FLORES\n price_base: '51.0'\n price_sale: '105.0'\n img_product: DIA51.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001053'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-01 01:33:18.948497'\n updated_at: &12 2020-03-16 20:59:51.204226954 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1053'\n sku: ACC-1053\n name: DIA.-0051\n description: DIADEMA ROSA DE FLORES\n price_base: '51.00'\n price_sale: '105.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-01 01:33:18.948497'\n updated_at: '2020-03-01 01:33:18.988193'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001053'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1053'\n type: *3\n value: 1053\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1053\n type: *7\n value: ACC-1053\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA.-0051\n type: *8\n value: DIA.-0051\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMA ROSA DE FLORES\n type: *6\n value: DIADEMA ROSA DE FLORES\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '51.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.51E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '105.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.105E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DIA51.jpg\n type: *2\n value: DIA51.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001053'\n type: *2\n value: '0001053'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-01 01:33:18.948497'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- DIA51.jpg\n 3 El producto ACC-1053 fue modificado. 189.186.107.100 b6dd5256-e146-47f4-984d-436333831508 2020-03-16 20:59:51.248682 32011 2364 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 901\namount: !ruby/object:BigDecimal 18:0.1428E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1428E4\nstatus: 0\ndate_sale: 2020-03-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1168\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.238 6f53d2ee-c7ca-4afa-8c51-9b7e717e11b6 2020-03-16 21:17:30.229511 32012 1410 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 15 \N 187.149.108.238 6f53d2ee-c7ca-4afa-8c51-9b7e717e11b6 2020-03-16 21:17:30.263426 32013 1635 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.108.238 6f53d2ee-c7ca-4afa-8c51-9b7e717e11b6 2020-03-16 21:17:30.292642 32014 2364 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.108.238 cef888db-5b0c-4745-b135-1580659bfa78 2020-03-16 21:18:12.551721 32015 3200 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 901\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1428E4\nmove_type: '1'\nsale_id: 2364\ncardnumber: 6879\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1168\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1168 187.149.108.238 cef888db-5b0c-4745-b135-1580659bfa78 2020-03-16 21:18:12.60507 32016 528 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-16\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.108.238 7903bec8-b954-4635-94a4-e55530f69d90 2020-03-16 21:18:51.014971 32017 1812 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 1100\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.108.238 7903bec8-b954-4635-94a4-e55530f69d90 2020-03-16 21:18:51.042789 32018 528 Transfer \N \N 27 User \N update --- {}\n 3 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.108.238 c74e4437-3ff0-4048-963d-81a80b461c3b 2020-03-16 21:18:51.683462 32019 1812 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.108.238 c74e4437-3ff0-4048-963d-81a80b461c3b 2020-03-16 21:18:51.698567 32020 523 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-16\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.108.238 9a6a40f8-3274-42d6-a7fd-bd2668b95617 2020-03-16 21:19:27.269485 32021 1813 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 1097\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.108.238 9a6a40f8-3274-42d6-a7fd-bd2668b95617 2020-03-16 21:19:27.662758 32022 521 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-16\n 2 Se dio entrada a traspaso de Almacen central a S BY SUO 187.149.108.238 d29b5056-8e0a-4d17-8d49-a0466f0ee38a 2020-03-16 21:20:31.782255 32023 1814 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 1096\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.108.238 d29b5056-8e0a-4d17-8d49-a0466f0ee38a 2020-03-16 21:20:31.804182 32024 515 Transfer \N \N 27 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 27\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-16\n 2 Se dio entrada a traspaso de SUO Comercial a S BY SUO 187.149.108.238 8091b94b-2e67-4b10-9852-40e41fd4450e 2020-03-16 21:21:47.606729 32025 1815 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 690\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.108.238 8091b94b-2e67-4b10-9852-40e41fd4450e 2020-03-16 21:21:47.639482 32026 1816 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 177\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.108.238 8091b94b-2e67-4b10-9852-40e41fd4450e 2020-03-16 21:21:47.672278 32027 1817 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 571\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.108.238 8091b94b-2e67-4b10-9852-40e41fd4450e 2020-03-16 21:21:47.69614 32028 1818 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 803\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.108.238 8091b94b-2e67-4b10-9852-40e41fd4450e 2020-03-16 21:21:47.720317 32029 1819 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 618\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.108.238 8091b94b-2e67-4b10-9852-40e41fd4450e 2020-03-16 21:21:47.743717 32030 1820 AvailableProduct \N \N 27 User \N create ---\nproduct_id: 513\npointsale_id: 2\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.108.238 8091b94b-2e67-4b10-9852-40e41fd4450e 2020-03-16 21:21:47.76668 32031 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-16 20:01:17.268804000 Z\n- &1 2020-03-16 20:38:07.906187000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-16 21:46:09.338683366 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945593\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934065\n mask_addr: 4294967295\nsign_in_count:\n- 1508\n- 1509\n 3018 \N 200.68.134.113 5e5f04d0-6eac-4831-99ca-1b1d3a46d576 2020-03-16 21:46:09.347042 32032 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sdMZZYgthmkP11SEFhWs\n- 1DQYFyk6bgd7bXqGCvZK\n 3019 \N 200.68.134.113 5e5f04d0-6eac-4831-99ca-1b1d3a46d576 2020-03-16 21:46:09.369766 32033 2365 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 901\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-03-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1169\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.108.238 21757ab4-3522-4ab0-9dfd-0f63f7ce0d04 2020-03-16 21:59:32.525105 32034 1626 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.108.238 21757ab4-3522-4ab0-9dfd-0f63f7ce0d04 2020-03-16 21:59:32.555639 32036 3201 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 901\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2365\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1169\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1169 187.149.108.238 26e5f051-dd61-4dae-86a4-dc5e901d79e0 2020-03-16 21:59:36.462503 32037 922 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 902\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.189E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.519E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1019E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.108.238 c9df7cb6-5afc-4ce9-964f-0a530ac80d0c 2020-03-16 22:05:36.08894 32038 902 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.108.238 c9df7cb6-5afc-4ce9-964f-0a530ac80d0c 2020-03-16 22:05:36.111178 32039 923 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 901\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2627E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.97E3\ncash_fund: !ruby/object:BigDecimal 18:0.1203E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2173E4\nobservations: "RETIRE $970 ME PAGUE ARETES COBRADOS CON TERMINAL DE $270\\r\\nQUEDA\n EN CORTE $700"\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.108.238 4fa96f39-cd7e-4424-b5b0-31b52e46be33 2020-03-16 22:07:20.833628 32040 901 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.108.238 4fa96f39-cd7e-4424-b5b0-31b52e46be33 2020-03-16 22:07:20.852445 32041 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-16 18:58:31.747340000 Z\n- &1 2020-03-16 19:17:32.009823000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-17 01:39:03.533287089 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 194\n- 195\n 391 \N 189.186.145.62 1b86d049-e0a4-4c14-a79e-566b3ced907f 2020-03-17 01:39:03.540763 32042 21 User \N \N 21 User \N update ---\nunique_session_id:\n- cQHPkA9fSBzDtLPKTDXe\n- grKkcgV1D3iFw7m3BaDJ\n 392 \N 189.186.145.62 1b86d049-e0a4-4c14-a79e-566b3ced907f 2020-03-17 01:39:03.557584 32043 2366 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 899\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-03-16\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-300\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 74c2d6cf-3169-4a3e-b999-4c8016dd9076 2020-03-17 01:39:37.019323 32044 1035 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 25 \N 189.186.145.62 74c2d6cf-3169-4a3e-b999-4c8016dd9076 2020-03-17 01:39:37.050977 32045 2366 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.145.62 5f904f74-5e64-429b-a855-20a8b74975ec 2020-03-17 01:41:17.454682 32046 3202 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 899\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2099E4\nmove_type: '1'\nsale_id: 2366\ncardnumber: 7799\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-300\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-300 189.186.145.62 5f904f74-5e64-429b-a855-20a8b74975ec 2020-03-17 01:41:17.477755 32047 924 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 899\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.2099E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.924E3\nphysical_cash: !ruby/object:BigDecimal 18:0.924E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.145.62 0df383ec-8598-4491-8b45-cfb7c4707e7c 2020-03-17 02:18:46.978876 32048 899 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.145.62 0df383ec-8598-4491-8b45-cfb7c4707e7c 2020-03-17 02:18:46.993106 32049 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-15 17:49:30.398852000 Z\n- &1 2020-03-16 17:22:15.134945000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-17 17:44:15.262051016 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121160\n mask_addr: 4294967295\nsign_in_count:\n- 506\n- 507\n 1017 \N 187.149.66.8 0bf81001-5e17-4139-9779-2707b7bc42c8 2020-03-17 17:44:15.289906 32050 2 User \N \N 2 User \N update ---\nunique_session_id:\n- _wpaAfhgj2ydnABzk7vC\n- 3GQJp11fwBKQ8P1c1iAB\n 1018 \N 187.149.66.8 0bf81001-5e17-4139-9779-2707b7bc42c8 2020-03-17 17:44:15.314387 32051 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-03-13 02:21:11.492543000 Z\n- &1 2020-03-13 22:45:06.701708000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-17 17:44:43.815876573 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121160\n mask_addr: 4294967295\nsign_in_count:\n- 170\n- 171\n 342 \N 187.149.66.8 6a55b005-7d52-4857-93d1-1ab3acce51a7 2020-03-17 17:44:43.823437 32052 1 User \N \N 1 User \N update ---\nunique_session_id:\n- CxQBaV7VxQxJZyyMY5Q-\n- ro93D1t7y-EQyxkAyPsC\n 343 \N 187.149.66.8 6a55b005-7d52-4857-93d1-1ab3acce51a7 2020-03-17 17:44:43.839214 32053 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-03-14 20:37:56.977101000 Z\n- &1 2020-03-16 17:08:18.409715000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-17 18:23:45.286452470 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132142\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121160\n mask_addr: 4294967295\nsign_in_count:\n- 131\n- 132\n 264 \N 187.149.66.8 aa0257ef-2d04-4df8-8cb6-8c12a11180c9 2020-03-17 18:23:45.29408 32054 27 User \N \N 27 User \N update ---\nunique_session_id:\n- ZcsANuLDj_qFThxLzTT6\n- hK7SVE8pnMThzUzyN_48\n 265 \N 187.149.66.8 aa0257ef-2d04-4df8-8cb6-8c12a11180c9 2020-03-17 18:23:45.327596 32055 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-16 20:38:07.906187000 Z\n- &1 2020-03-16 21:46:09.338683000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-17 18:28:55.984969501 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934065\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934065\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 1509\n- 1510\n 3020 \N 189.186.145.62 83a5e2d3-f5cb-429c-a6dc-51d2bd2acf95 2020-03-17 18:28:55.992887 32056 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1DQYFyk6bgd7bXqGCvZK\n- FZSze8duBHiVAAzp3ijn\n 3021 \N 189.186.145.62 83a5e2d3-f5cb-429c-a6dc-51d2bd2acf95 2020-03-17 18:28:56.012016 32057 1117 Product \N \N 4 User \N create ---\nsku: ZAP-1117\nname: 2CZP20106\ndescription: CALZADO CLOE NEGRO SNEAKERS\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 13\nproduct_service_key: '01010101'\n 1 El producto ZAP-1117 fue creado. 189.186.145.62 e6d2ab89-843e-41be-a47e-b5b8cdb18672 2020-03-17 18:31:30.05308 32058 1117 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001117'\n 2 \N 189.186.145.62 e6d2ab89-843e-41be-a47e-b5b8cdb18672 2020-03-17 18:31:30.087918 32059 292 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: \npurchase_code: CEN-C-56\namount: !ruby/object:BigDecimal 18:0.4797E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4797E4\nobservations: ''\npurchase_date: 2020-03-17\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-56 por $ 4797.0 MXN creada. 189.186.145.62 9e1bbdfb-8648-4fcc-87a2-418e393f5331 2020-03-17 18:31:38.780181 32060 292 Purchase \N \N 4 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Compra CEN-C-56 cancelada. 189.186.145.62 6a4f0bd7-72df-49ea-8a9b-5760caebcfe3 2020-03-17 18:35:24.678889 32061 1118 Product \N \N 4 User \N create ---\nsku: ZAP-1118\nname: 2CZO20106\ndescription: CALZADO CLOE SNEAKERS BLACK\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 13\nproduct_service_key: '01010101'\n 1 El producto ZAP-1118 fue creado. 189.186.145.62 85bfa237-b920-4025-842e-cace17bae2b2 2020-03-17 18:38:25.093912 32062 1118 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001118'\n 2 \N 189.186.145.62 85bfa237-b920-4025-842e-cace17bae2b2 2020-03-17 18:38:25.129538 32063 293 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: \npurchase_code: CEN-C-57\namount: !ruby/object:BigDecimal 18:0.55965E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.55965E4\nobservations: ''\npurchase_date: 2020-03-17\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-57 por $ 5596.5 MXN creada. 189.186.145.62 2dcd69d0-842e-49ed-8290-adf23729a3d1 2020-03-17 18:38:33.446293 32064 530 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-03-17\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.145.62 3d5b8d93-9681-4390-80ed-046755266b32 2020-03-17 18:43:04.925867 32065 531 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-03-17\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.145.62 9c912582-fb67-4f1d-8424-e6baaae4971b 2020-03-17 18:43:55.283623 32066 903 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1203E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1203.0 187.149.66.8 b64997c3-e393-40d3-84f9-1beed1ae0f78 2020-03-17 19:44:02.077115 32067 2367 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 903\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-03-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1170\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.8 3d22a79c-37c1-46c3-a8b1-2837436aaab0 2020-03-17 19:45:21.301979 32068 1626 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.66.8 3d22a79c-37c1-46c3-a8b1-2837436aaab0 2020-03-17 19:45:21.335465 32069 2367 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.8 24a55b26-29a8-4f2c-84f0-b05e140969df 2020-03-17 19:45:26.4703 32070 3203 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 903\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2367\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1170\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1170 187.149.66.8 24a55b26-29a8-4f2c-84f0-b05e140969df 2020-03-17 19:45:26.499478 32071 304 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 903\nquantity: !ruby/object:BigDecimal 18:0.25E2\nstatus: 1\nobservations: GARRAFON DE AGUA\nexpense_date: 2020-03-17\nexpense_code: PV1-E-209\n 1 Egreso por 25.0 registrado 187.149.66.8 24c3d256-957d-4996-b3b3-dc8827ec91f4 2020-03-17 19:59:22.850725 32072 3204 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 903\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 304\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.66.8 24c3d256-957d-4996-b3b3-dc8827ec91f4 2020-03-17 19:59:22.871394 32073 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-16 21:46:09.338683000 Z\n- &1 2020-03-17 18:28:55.984969000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-17 20:02:10.710850164 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934065\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 1510\n- 1511\n 3022 \N 189.186.145.62 96d1eb7c-8f3a-424f-aaef-b7e069f5b63d 2020-03-17 20:02:10.719227 32074 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FZSze8duBHiVAAzp3ijn\n- PCnsnnTMKiQVqLJ_frVq\n 3023 \N 189.186.145.62 96d1eb7c-8f3a-424f-aaef-b7e069f5b63d 2020-03-17 20:02:10.745494 32075 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-02-25 18:09:49.890474000 Z\n- &1 2020-03-06 02:57:59.471054000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-17 20:06:18.519330724 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 48\n- 49\n 99 \N 189.186.145.62 600faedc-e568-4c91-9f73-54deff6c8ea6 2020-03-17 20:06:18.531582 32076 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 36bjfY-4WpZPDmXrds3z\n- JdyaDYB1FxxSxq-BCsar\n 100 \N 189.186.145.62 600faedc-e568-4c91-9f73-54deff6c8ea6 2020-03-17 20:06:18.553492 32174 1638 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.66.8 4483d3ac-d89d-4731-9fb4-9f41a69cfea9 2020-03-18 02:10:03.328753 32077 904 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.924E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 924.0 189.186.145.62 45a88fbf-ca8c-44ea-aac5-a8e6c9e9741d 2020-03-17 20:06:28.855737 32078 304 Customer \N \N 18 User \N create ---\nnick_name: BRENDA DIARTE\nphone: "(667) 427-7570"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BRENDA DIARTE fue registrado. 189.186.145.62 11444feb-36d4-4efe-9a23-1ca621b8a5aa 2020-03-17 20:07:04.448422 32079 2368 Sale \N \N 18 User \N create ---\ncustomer_id: 304\nuser_id: 18\nopen_cash_register_id: 904\namount: !ruby/object:BigDecimal 18:0.119656E4\ntax: !ruby/object:BigDecimal 18:0.19145E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.138801E4\nstatus: 0\ndate_sale: 2020-03-17\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-301\nexpiration_date: 2020-04-21\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 37650231-bc80-4413-9c80-3f5ec6f98472 2020-03-17 20:08:13.578822 32080 949 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.145.62 37650231-bc80-4413-9c80-3f5ec6f98472 2020-03-17 20:08:13.61656 32081 950 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 189.186.145.62 37650231-bc80-4413-9c80-3f5ec6f98472 2020-03-17 20:08:13.645147 32082 3205 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 904\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2368\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-301\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-301 189.186.145.62 06f4d4a0-4f49-470b-87f1-b9c6044aed20 2020-03-17 20:08:21.77421 32083 2368 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.145.62 07c555d4-f447-4429-a6e4-ddce90801a64 2020-03-17 20:08:23.139086 32084 2369 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 904\namount: !ruby/object:BigDecimal 18:0.8448E2\ntax: !ruby/object:BigDecimal 18:0.1352E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.98E2\nstatus: 0\ndate_sale: 2020-03-17\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-302\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 9a55a43b-b922-4511-a80d-306907f17a1f 2020-03-17 20:09:14.773099 32085 818 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.63E2\n- !ruby/object:BigDecimal 18:0.61E2\n 16 \N 189.186.145.62 9a55a43b-b922-4511-a80d-306907f17a1f 2020-03-17 20:09:14.802581 32086 2369 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.145.62 d4326399-7643-4201-b506-a45ff02be121 2020-03-17 20:09:26.670553 32087 3206 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 904\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.98E2\nmove_type: '1'\nsale_id: 2369\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-302\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.98E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-302 189.186.145.62 d4326399-7643-4201-b506-a45ff02be121 2020-03-17 20:09:26.693967 32088 3207 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 903\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 2277\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.399E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1130 187.149.66.8 2f4899b1-bc0e-48af-a0cc-06df358c0f1c 2020-03-17 21:37:09.621273 32089 2277 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.66.8 5786c61b-b50e-40ab-b62f-5808d3d0b114 2020-03-17 21:37:10.756535 32090 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-17 18:28:55.984969000 Z\n- &1 2020-03-17 20:02:10.710850000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-17 22:05:12.423494355 Z\nsign_in_count:\n- 1511\n- 1512\n 3024 \N 189.186.145.62 cdfbe240-f9e2-4f90-8f41-a652f0b92f78 2020-03-17 22:05:12.429755 32091 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PCnsnnTMKiQVqLJ_frVq\n- b4ocyGVKx1FWTTuqYcWT\n 3025 \N 189.186.145.62 cdfbe240-f9e2-4f90-8f41-a652f0b92f78 2020-03-17 22:05:12.446952 32092 2370 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 903\namount: !ruby/object:BigDecimal 18:0.110421E4\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.818E3\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2020-03-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1171\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.8 2986bd13-a8a6-4f5c-b445-88db54169c6c 2020-03-17 22:54:31.819117 32093 1563 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.66.8 2986bd13-a8a6-4f5c-b445-88db54169c6c 2020-03-17 22:54:31.853706 32094 1623 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.66.8 2986bd13-a8a6-4f5c-b445-88db54169c6c 2020-03-17 22:54:31.880421 32095 2370 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.8 ff615689-5284-45db-b1f7-43f280c73461 2020-03-17 22:54:36.013803 32096 3208 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 903\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 2370\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1171\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1171 187.149.66.8 ff615689-5284-45db-b1f7-43f280c73461 2020-03-17 22:54:36.036062 32097 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-03-06 02:57:59.471054000 Z\n- &1 2020-03-17 20:06:18.519330000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-17 23:12:01.800968780 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 49\n- 50\n 101 \N 189.186.145.62 26c5498e-49d8-4ca0-9ba6-95086613dd3e 2020-03-17 23:12:01.808004 32098 18 User \N \N 18 User \N update ---\nunique_session_id:\n- JdyaDYB1FxxSxq-BCsar\n- P8Yxbcxt16uw8GyxLaRR\n 102 \N 189.186.145.62 26c5498e-49d8-4ca0-9ba6-95086613dd3e 2020-03-17 23:12:01.82349 32099 305 Customer \N \N 18 User \N create ---\nnick_name: FABIOLA ELIZABETH GARCIA\nphone: "(667) 315-4425"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente FABIOLA ELIZABETH GARCIA fue registrado. 189.186.145.62 0f261a8e-aec0-46c6-8f41-326ef9366679 2020-03-17 23:12:56.805344 32100 2371 Sale \N \N 18 User \N create ---\ncustomer_id: 305\nuser_id: 18\nopen_cash_register_id: 904\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-03-17\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-303\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 0ed1f5a3-6d45-471b-82cb-03a54e4650e2 2020-03-17 23:14:46.395143 32101 1554 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.145.62 0ed1f5a3-6d45-471b-82cb-03a54e4650e2 2020-03-17 23:14:46.427277 32102 2371 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-303 cancelada. 189.186.145.62 9a85e640-5fa6-4945-8bbe-47d6266b6129 2020-03-17 23:14:54.48736 32103 1554 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.145.62 9a85e640-5fa6-4945-8bbe-47d6266b6129 2020-03-17 23:14:54.513669 32104 2372 Sale \N \N 18 User \N create ---\ncustomer_id: 305\nuser_id: 18\nopen_cash_register_id: 904\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-03-17\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-304\nexpiration_date: 2020-04-21\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 c156101f-a939-46f6-8000-31a226d7b372 2020-03-17 23:15:24.630387 32105 1554 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.145.62 c156101f-a939-46f6-8000-31a226d7b372 2020-03-17 23:15:24.659629 32106 3209 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 904\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2372\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-304\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-304 189.186.145.62 ce8f8ade-3ccd-404f-9642-4a6f6056e52c 2020-03-17 23:15:31.513528 32107 2372 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.145.62 4dde3bf7-f7a4-405a-bf22-87776679f441 2020-03-17 23:15:32.725891 32108 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-17 20:02:10.710850000 Z\n- &1 2020-03-17 22:05:12.423494000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-17 23:20:04.807117003 Z\nsign_in_count:\n- 1512\n- 1513\n 3026 \N 189.186.145.62 7c329b73-bc41-4aae-86a6-d46ba70b8e21 2020-03-17 23:20:04.812985 32109 4 User \N \N 4 User \N update ---\nunique_session_id:\n- b4ocyGVKx1FWTTuqYcWT\n- ymFtX8eyux3nC5ny5X7M\n 3027 \N 189.186.145.62 7c329b73-bc41-4aae-86a6-d46ba70b8e21 2020-03-17 23:20:04.82864 32110 24 User \N \N 24 User \N update ---\nlast_sign_in_at:\n- 2020-03-07 18:04:34.612950000 Z\n- &1 2020-03-10 18:18:01.260896000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-18 00:01:57.543550431 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115344\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121160\n mask_addr: 4294967295\nsign_in_count:\n- 60\n- 61\n 122 \N 187.149.66.8 68e97290-c5a3-44de-adea-cf6917e21d50 2020-03-18 00:01:57.551184 32111 24 User \N \N 24 User \N update ---\nunique_session_id:\n- yK1AzshNphxAysikWw4P\n- 1FNHUVaT9pF_mEykWVbt\n 123 \N 187.149.66.8 68e97290-c5a3-44de-adea-cf6917e21d50 2020-03-18 00:01:57.568978 32112 905 OpenCashRegister \N \N 24 User \N create ---\ncash_register_id: 2\nuser_id: 24\ninitial_cash: !ruby/object:BigDecimal 18:0.519E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 519.0 187.149.66.8 4a3d0089-3c49-4bc3-9711-fd6e598164b0 2020-03-18 00:02:12.914456 32113 3210 CashRegistersMove \N \N 24 User \N create ---\nopen_cash_register_id: 905\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.869E3\nmove_type: '1'\nsale_id: 2355\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.869E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-895 187.149.66.8 49a5bae0-1a74-4ee5-8c77-766b1e35d6bc 2020-03-18 00:03:34.07062 32114 2355 Sale \N \N 24 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.66.8 39117d44-e608-4848-a728-fba309d24346 2020-03-18 00:03:35.163079 32115 2373 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 903\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-03-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1172\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.8 3fcfbc27-a25d-4499-a6c9-c791139fce01 2020-03-18 00:06:07.284865 32116 1626 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.66.8 3fcfbc27-a25d-4499-a6c9-c791139fce01 2020-03-18 00:06:07.314976 32117 2373 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.8 36241fd4-ad18-40e5-afd4-03554260a6f1 2020-03-18 00:07:08.324976 32118 3211 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 903\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2373\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1172\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1172 187.149.66.8 36241fd4-ad18-40e5-afd4-03554260a6f1 2020-03-18 00:07:08.348456 32119 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-03-13 22:45:06.701708000 Z\n- &1 2020-03-17 17:44:43.815876000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-18 00:11:44.788160779 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121160\n mask_addr: 4294967295\nsign_in_count:\n- 171\n- 172\n 344 \N 187.149.66.8 5693e55f-7ba4-4749-b444-d23c2b003d47 2020-03-18 00:11:44.795782 32120 1 User \N \N 1 User \N update ---\nunique_session_id:\n- ro93D1t7y-EQyxkAyPsC\n- Bns82XTh3XsUVuQ37URq\n 345 \N 187.149.66.8 5693e55f-7ba4-4749-b444-d23c2b003d47 2020-03-18 00:11:44.83011 32121 2374 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 904\namount: !ruby/object:BigDecimal 18:0.258E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.258E3\nstatus: 0\ndate_sale: 2020-03-17\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-305\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 88b8d375-1fb4-4686-8f35-4d55be19015f 2020-03-18 00:13:40.771756 32122 1773 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.145.62 88b8d375-1fb4-4686-8f35-4d55be19015f 2020-03-18 00:13:40.802338 32123 1805 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.145.62 88b8d375-1fb4-4686-8f35-4d55be19015f 2020-03-18 00:13:40.836079 32125 3212 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 904\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.258E3\nmove_type: '1'\nsale_id: 2374\ncardnumber: 1235\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-305\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-305 189.186.145.62 aab29eee-3bd2-40c9-ab93-e22cc1b9b1d3 2020-03-18 00:14:01.355908 32126 2375 Sale \N \N 18 User \N create ---\ncustomer_id: 159\nuser_id: 18\nopen_cash_register_id: 904\namount: !ruby/object:BigDecimal 18:0.945E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.945E3\nstatus: 0\ndate_sale: 2020-03-17\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-306\nexpiration_date: 2020-04-21\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 27db2adc-9e7e-49f9-a257-23f85af10659 2020-03-18 00:18:05.941206 32127 1807 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.145.62 27db2adc-9e7e-49f9-a257-23f85af10659 2020-03-18 00:18:05.972665 32128 1705 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.145.62 27db2adc-9e7e-49f9-a257-23f85af10659 2020-03-18 00:18:06.002793 32129 1806 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.145.62 27db2adc-9e7e-49f9-a257-23f85af10659 2020-03-18 00:18:06.03248 32130 1707 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.145.62 27db2adc-9e7e-49f9-a257-23f85af10659 2020-03-18 00:18:06.05857 32131 1704 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.145.62 27db2adc-9e7e-49f9-a257-23f85af10659 2020-03-18 00:18:06.084045 32132 3213 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 904\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 2375\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-306\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-306 189.186.145.62 ff08eb95-4ab5-418b-824c-1cb57b2cdc16 2020-03-18 00:18:20.943125 32133 2375 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.145.62 302beccf-00e5-4533-baff-f3311a58dfbb 2020-03-18 00:18:23.667384 32134 2376 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 904\namount: !ruby/object:BigDecimal 18:0.119E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.119E3\nstatus: 0\ndate_sale: 2020-03-17\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-307\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 ad33fa0d-a49a-4f3a-87a4-b41cb0df7d68 2020-03-18 00:30:28.618763 32135 1796 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.145.62 ad33fa0d-a49a-4f3a-87a4-b41cb0df7d68 2020-03-18 00:30:28.647699 32136 2376 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.145.62 b56e86a2-f47a-441f-8a8a-7bd6d0a08c75 2020-03-18 00:32:16.952606 32137 3214 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 904\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.119E3\nmove_type: '1'\nsale_id: 2376\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-307\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-307 189.186.145.62 b56e86a2-f47a-441f-8a8a-7bd6d0a08c75 2020-03-18 00:32:17.000255 32138 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-17 22:05:12.423494000 Z\n- &1 2020-03-17 23:20:04.807117000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-18 00:33:51.578680268 Z\nsign_in_count:\n- 1513\n- 1514\n 3028 \N 189.186.145.62 b8474d03-7aa0-4188-9f55-983c7b63552d 2020-03-18 00:33:51.586141 32139 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ymFtX8eyux3nC5ny5X7M\n- s7-f5RyRTMzPG4QsfzNA\n 3029 \N 189.186.145.62 b8474d03-7aa0-4188-9f55-983c7b63552d 2020-03-18 00:33:51.602637 32140 530 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-17\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.66.8 32b735b2-5a0f-487c-9d6e-465f231ef64c 2020-03-18 00:52:07.078209 32141 1821 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1118\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.66.8 32b735b2-5a0f-487c-9d6e-465f231ef64c 2020-03-18 00:52:07.104849 32142 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-03-17 20:06:18.519330000 Z\n- &1 2020-03-17 23:12:01.800968000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-18 00:52:17.104712472 Z\nsign_in_count:\n- 50\n- 51\n 103 \N 189.186.145.62 c27a409c-3fbb-4679-8e20-9257520726a7 2020-03-18 00:52:17.110989 32143 18 User \N \N 18 User \N update ---\nunique_session_id:\n- P8Yxbcxt16uw8GyxLaRR\n- fSX9usPSeNqg3NDshD4t\n 104 \N 189.186.145.62 c27a409c-3fbb-4679-8e20-9257520726a7 2020-03-18 00:52:17.127967 32144 531 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-17\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.66.8 67429649-30a3-4115-8333-6545f919a8a9 2020-03-18 00:52:30.764361 32145 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.7E1\n 2 \N 187.149.66.8 67429649-30a3-4115-8333-6545f919a8a9 2020-03-18 00:52:30.784021 32146 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-17 23:20:04.807117000 Z\n- &1 2020-03-18 00:33:51.578680000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-18 00:53:05.425455292 Z\nsign_in_count:\n- 1514\n- 1515\n 3030 \N 189.186.145.62 4c3c3807-8d7a-4364-a5b6-4f557292656e 2020-03-18 00:53:05.432311 32147 4 User \N \N 4 User \N update ---\nunique_session_id:\n- s7-f5RyRTMzPG4QsfzNA\n- xC3tfHcVkhvxiPXuhuZP\n 3031 \N 189.186.145.62 4c3c3807-8d7a-4364-a5b6-4f557292656e 2020-03-18 00:53:05.449274 32148 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 187.149.66.8 1eb5178b-f317-4453-81b9-bb1a0513525e 2020-03-18 00:53:11.992781 32149 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.66.8 e3b77cc0-437e-4da9-996d-0245e57a4d89 2020-03-18 00:53:15.312367 32150 532 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-03-17\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.66.8 616b4779-7c78-49c5-8628-0fbc3ae64e26 2020-03-18 00:53:17.069554 32175 2381 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.8 d9c20b97-5454-4356-91e0-4039fb05d31c 2020-03-18 02:10:12.757094 32151 532 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-17\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.145.62 beea6648-c2d8-4aa4-aa17-9fb3b7948494 2020-03-18 00:55:14.634016 32152 1822 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1118\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.145.62 beea6648-c2d8-4aa4-aa17-9fb3b7948494 2020-03-18 00:55:14.660549 32153 306 Customer \N \N 18 User \N create ---\nnick_name: ALICIA FELIX\nphone: "(667) 197-2275"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ALICIA FELIX fue registrado. 189.186.145.62 bdae5ea4-32e7-46fd-b8f2-c7b0c45fcadc 2020-03-18 00:55:44.629249 32154 2377 Sale \N \N 18 User \N create ---\ncustomer_id: 306\nuser_id: 18\nopen_cash_register_id: 904\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-03-17\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-308\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 f18efad3-98cb-4ac1-820a-dd1000129d49 2020-03-18 00:56:02.189923 32155 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.145.62 f18efad3-98cb-4ac1-820a-dd1000129d49 2020-03-18 00:56:02.219334 32156 2377 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-308 cancelada. 189.186.145.62 e897996e-c7ca-476f-a315-e8ecb8421145 2020-03-18 00:56:09.919056 32157 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.145.62 e897996e-c7ca-476f-a315-e8ecb8421145 2020-03-18 00:56:09.943573 32158 2378 Sale \N \N 18 User \N create ---\ncustomer_id: 306\nuser_id: 18\nopen_cash_register_id: 904\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-03-17\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-309\nexpiration_date: 2020-04-21\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 554546b9-cd61-4649-9830-8df679047cf4 2020-03-18 00:56:33.578465 32159 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.145.62 554546b9-cd61-4649-9830-8df679047cf4 2020-03-18 00:56:33.607558 32160 3215 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 904\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2378\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-309\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-309 189.186.145.62 c43cd2ab-8dca-47e3-bcd9-efbaa672e5a6 2020-03-18 00:56:40.287511 32161 2378 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.145.62 c73f182c-591b-472e-aa2a-ca07716501c1 2020-03-18 00:56:41.657016 32162 2379 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 904\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-03-17\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-310\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 f77bd462-0eea-4ef5-8a87-32d76b45b736 2020-03-18 01:00:29.712779 32163 818 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.61E2\n- !ruby/object:BigDecimal 18:0.6E2\n 17 \N 189.186.145.62 f77bd462-0eea-4ef5-8a87-32d76b45b736 2020-03-18 01:00:29.74151 32164 2379 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.145.62 68c20405-15e3-4dfd-8b32-30c375c3454f 2020-03-18 01:00:34.402465 32165 3216 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 904\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49E2\nmove_type: '1'\nsale_id: 2379\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-310\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-310 189.186.145.62 68c20405-15e3-4dfd-8b32-30c375c3454f 2020-03-18 01:00:34.426963 32166 2380 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 903\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-03-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1173\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.8 14f8a8ab-e318-42bb-9a18-3e86327b96ef 2020-03-18 01:28:39.835581 32167 1722 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.66.8 14f8a8ab-e318-42bb-9a18-3e86327b96ef 2020-03-18 01:28:39.868253 32168 2380 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.8 1aef28ec-5150-43a5-b684-9ee50241c449 2020-03-18 01:30:32.07416 32169 3217 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 903\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 2380\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1173\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1173 187.149.66.8 1aef28ec-5150-43a5-b684-9ee50241c449 2020-03-18 01:30:32.098533 32170 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-18 00:33:51.578680000 Z\n- &1 2020-03-18 00:53:05.425455000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-18 02:06:41.477459458 Z\nsign_in_count:\n- 1515\n- 1516\n 3032 \N 189.186.145.62 c7d3e59a-7ffc-4cc7-872c-21bdd7480496 2020-03-18 02:06:41.485508 32171 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xC3tfHcVkhvxiPXuhuZP\n- 3xbqi42fftBueRqTcneT\n 3033 \N 189.186.145.62 c7d3e59a-7ffc-4cc7-872c-21bdd7480496 2020-03-18 02:06:41.506117 32172 2381 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 903\namount: !ruby/object:BigDecimal 18:0.1598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1598E4\nstatus: 0\ndate_sale: 2020-03-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1174\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.8 4483d3ac-d89d-4731-9fb4-9f41a69cfea9 2020-03-18 02:10:03.248838 32173 1640 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.66.8 4483d3ac-d89d-4731-9fb4-9f41a69cfea9 2020-03-18 02:10:03.27891 32198 2383 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.8 12639fb0-4cfc-4678-a223-941a998bb059 2020-03-18 18:34:08.951585 32176 3218 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 903\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1598E4\nmove_type: '1'\nsale_id: 2381\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1174\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1598E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1174 187.149.66.8 d9c20b97-5454-4356-91e0-4039fb05d31c 2020-03-18 02:10:12.784117 32177 925 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 903\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4794E4\namount_out: !ruby/object:BigDecimal 18:0.25E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.461E4\ncash_fund: !ruby/object:BigDecimal 18:0.1362E4\nphysical_cash: !ruby/object:BigDecimal 18:0.5972E4\nobservations: retire $4610 me pague aretes cobrados con terminal $310 quedo en el\n corte $4300\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.66.8 8d636ca7-b3b5-4de2-80cd-ea391b094f41 2020-03-18 02:24:12.905179 32178 903 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.66.8 8d636ca7-b3b5-4de2-80cd-ea391b094f41 2020-03-18 02:24:12.919551 32179 926 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 905\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.869E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 27\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.888E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1388E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.66.8 550e3b30-813d-49bb-afde-379dec91176a 2020-03-18 02:30:41.04425 32180 905 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.66.8 550e3b30-813d-49bb-afde-379dec91176a 2020-03-18 02:30:41.059938 32181 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-03-17 23:12:01.800968000 Z\n- &1 2020-03-18 00:52:17.104712000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-18 02:44:33.768163151 Z\nsign_in_count:\n- 51\n- 52\n 105 \N 189.186.145.62 4f037383-5a10-473e-8a64-2093bcd064e8 2020-03-18 02:44:33.776088 32182 18 User \N \N 18 User \N update ---\nunique_session_id:\n- fSX9usPSeNqg3NDshD4t\n- e_dXexdARsyq9oaDSzFe\n 106 \N 189.186.145.62 4f037383-5a10-473e-8a64-2093bcd064e8 2020-03-18 02:44:33.790357 32183 305 Expense \N \N 18 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 904\nquantity: !ruby/object:BigDecimal 18:0.15E3\nstatus: 1\nobservations: PAGO DE EMILY\nexpense_date: 2020-03-17\nexpense_code: PV3-E-34\n 1 Egreso por 150.0 registrado 189.186.145.62 b3ee0119-49a1-4506-a799-a9611b723612 2020-03-18 02:45:30.353958 32184 3219 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 904\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 305\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.145.62 b3ee0119-49a1-4506-a799-a9611b723612 2020-03-18 02:45:30.3805 32185 927 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 904\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1924E4\namount_out: !ruby/object:BigDecimal 18:0.15E3\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.13E4\ncash_fund: !ruby/object:BigDecimal 18:0.721E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2021E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.145.62 e5fa1d47-0960-431e-9c4d-2540ef6f99f4 2020-03-18 02:59:14.891713 32186 904 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.145.62 e5fa1d47-0960-431e-9c4d-2540ef6f99f4 2020-03-18 02:59:14.906209 32187 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-03-16 17:08:18.409715000 Z\n- &1 2020-03-17 18:23:45.286452000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-18 18:03:58.859673381 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121160\n mask_addr: 4294967295\nsign_in_count:\n- 132\n- 133\n 266 \N 187.149.66.8 fa042fba-7de8-4116-ac95-2684595a7842 2020-03-18 18:03:58.891295 32188 27 User \N \N 27 User \N update ---\nunique_session_id:\n- hK7SVE8pnMThzUzyN_48\n- oozH3Rzdxg9nxsbW3MLy\n 267 \N 187.149.66.8 fa042fba-7de8-4116-ac95-2684595a7842 2020-03-18 18:03:58.915364 32189 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-16 17:22:15.134945000 Z\n- &1 2020-03-17 17:44:15.262051000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-18 18:21:56.401064951 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121160\n mask_addr: 4294967295\nsign_in_count:\n- 507\n- 508\n 1019 \N 187.149.66.8 83c39c5c-95be-4a37-8417-e98a2c223fee 2020-03-18 18:21:56.407928 32190 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 3GQJp11fwBKQ8P1c1iAB\n- WypiREtF1ZuKW3xky5nm\n 1020 \N 187.149.66.8 83c39c5c-95be-4a37-8417-e98a2c223fee 2020-03-18 18:21:56.432811 32191 906 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1362E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1362.0 187.149.66.8 55b1a0b2-5dae-4aa4-aa35-21294d1fbb56 2020-03-18 18:22:08.584476 32192 2382 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 906\namount: !ruby/object:BigDecimal 18:0.8448E2\ntax: !ruby/object:BigDecimal 18:0.1352E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.98E2\nstatus: 0\ndate_sale: 2020-03-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1175\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.8 f4203428-d934-4d17-9206-5f125245fb8a 2020-03-18 18:22:56.777575 32193 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.28E2\n- !ruby/object:BigDecimal 18:0.26E2\n 8 \N 187.149.66.8 f4203428-d934-4d17-9206-5f125245fb8a 2020-03-18 18:22:56.811696 32194 2382 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.8 f58ac44d-bb68-4e0f-9dfc-6b56ef47e090 2020-03-18 18:23:03.047103 32195 3220 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 906\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.98E2\nmove_type: '1'\nsale_id: 2382\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1175\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.98E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1175 187.149.66.8 f58ac44d-bb68-4e0f-9dfc-6b56ef47e090 2020-03-18 18:23:03.072035 32196 2383 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 906\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-03-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1176\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.8 11af153d-672f-4795-96a2-7299e5d62301 2020-03-18 18:34:04.411834 32197 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.26E2\n- !ruby/object:BigDecimal 18:0.25E2\n 9 \N 187.149.66.8 11af153d-672f-4795-96a2-7299e5d62301 2020-03-18 18:34:04.461167 32199 3221 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 906\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49E2\nmove_type: '1'\nsale_id: 2383\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1176\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1176 187.149.66.8 12639fb0-4cfc-4678-a223-941a998bb059 2020-03-18 18:34:08.975755 32200 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-16 19:17:32.009823000 Z\n- &1 2020-03-17 01:39:03.533287000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-18 18:53:06.138563612 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 195\n- 196\n 393 \N 189.186.145.62 eb8c7b9e-faec-4815-99ed-13988c978e91 2020-03-18 18:53:06.145431 32201 21 User \N \N 21 User \N update ---\nunique_session_id:\n- grKkcgV1D3iFw7m3BaDJ\n- t3YzrgyUjoivprwHa2SS\n 394 \N 189.186.145.62 eb8c7b9e-faec-4815-99ed-13988c978e91 2020-03-18 18:53:06.161848 32202 907 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.721E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 721.0 189.186.145.62 83a48910-7096-4056-ac46-83ea27d33739 2020-03-18 18:53:21.020625 32203 2061 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.145.62 a007b134-7eed-463f-a8bb-fc93103b3a5b 2020-03-18 18:53:56.707483 32204 1035 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 26 \N 189.186.145.62 a007b134-7eed-463f-a8bb-fc93103b3a5b 2020-03-18 18:53:56.737952 32205 2187 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.145.62 49b89ab2-4972-4d8e-a279-7ff0a7f13259 2020-03-18 18:54:07.225923 32206 1173 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.145.62 49b89ab2-4972-4d8e-a279-7ff0a7f13259 2020-03-18 18:54:07.253606 32207 1167 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.145.62 49b89ab2-4972-4d8e-a279-7ff0a7f13259 2020-03-18 18:54:07.282475 32208 2063 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.145.62 28ee5308-1c26-463a-a42b-3204a3a54e11 2020-03-18 18:54:23.839119 32209 1179 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.145.62 28ee5308-1c26-463a-a42b-3204a3a54e11 2020-03-18 18:54:23.864444 32210 908 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.888E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 888.0 187.149.66.8 b6a5c8d8-a32f-434c-be94-dedf763a9774 2020-03-18 19:11:44.503661 32211 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-18 00:53:05.425455000 Z\n- &1 2020-03-18 02:06:41.477459000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-18 21:11:06.524144163 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138250\n mask_addr: 4294967295\nsign_in_count:\n- 1516\n- 1517\n 3034 \N 189.186.213.202 36b26910-84df-47d0-b535-786055015916 2020-03-18 21:11:06.546727 32212 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3xbqi42fftBueRqTcneT\n- EKrRn-qLppWV78yxfDaB\n 3035 \N 189.186.213.202 36b26910-84df-47d0-b535-786055015916 2020-03-18 21:11:06.574157 32213 2384 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 908\namount: !ruby/object:BigDecimal 18:0.107024E4\ntax: !ruby/object:BigDecimal 18:0.8676E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1157E4\nstatus: 0\ndate_sale: 2020-03-18\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-896\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.8 b72cfc01-d90b-498f-8a86-82adf9d32150 2020-03-18 21:38:39.303631 32214 1694 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.66.8 b72cfc01-d90b-498f-8a86-82adf9d32150 2020-03-18 21:38:39.347997 32215 1571 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.66.8 b72cfc01-d90b-498f-8a86-82adf9d32150 2020-03-18 21:38:39.386172 32216 1021 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 14 \N 187.149.66.8 b72cfc01-d90b-498f-8a86-82adf9d32150 2020-03-18 21:38:39.412786 32217 2384 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.8 9a2cb087-2cb7-4c55-832e-78b897884550 2020-03-18 21:39:45.981176 32218 3222 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 908\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1157E4\nmove_type: '1'\nsale_id: 2384\ncardnumber: 300\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-896\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-896 187.149.66.8 9a2cb087-2cb7-4c55-832e-78b897884550 2020-03-18 21:39:46.005131 32219 2385 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 907\namount: !ruby/object:BigDecimal 18:0.130159E4\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2020-03-18\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-311\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 48f86345-b016-43a6-8784-c6820e7c9c6c 2020-03-18 21:41:56.754926 32220 1554 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.145.62 48f86345-b016-43a6-8784-c6820e7c9c6c 2020-03-18 21:41:56.804684 32221 1660 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.145.62 48f86345-b016-43a6-8784-c6820e7c9c6c 2020-03-18 21:41:56.840942 32222 2385 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.145.62 f4592885-1357-416c-8a0e-7d50e3833bb8 2020-03-18 21:42:35.795986 32223 3223 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 907\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1398E4\nmove_type: '1'\nsale_id: 2385\ncardnumber: 2252\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-311\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-311 189.186.145.62 f4592885-1357-416c-8a0e-7d50e3833bb8 2020-03-18 21:42:35.82823 32248 1823 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.145.62 a15efb59-92cf-49be-bf08-2ec63244666e 2020-03-19 00:37:25.932233 46496 1175 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1175'\n is_parent: false\n sku: COS-1175\n name: 4CSCP20801\n description: COSMETIQUERA LIMON\n price_base: '224.5'\n price_sale: '449.0'\n img_product: 72E554DE-E684-4A20-AFB7-318FF7DB1687.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '14'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170791853'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-03 19:58:07.757707'\n updated_at: &12 2020-11-21 20:28:22.599196084 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1175'\n sku: COS-1175\n name: 4CSCP20801\n description: COSMETIQUERA LIMON\n price_base: '224.50'\n price_sale: '449.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-03 19:58:07.757707'\n updated_at: '2020-08-03 19:58:07.757707'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170791853'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '14'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1175'\n type: *3\n value: 1175\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: COS-1175\n type: *7\n value: COS-1175\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 4CSCP20801\n type: *8\n value: 4CSCP20801\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: COSMETIQUERA LIMON\n type: *6\n value: COSMETIQUERA LIMON\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '224.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2245E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '449.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.449E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 72E554DE-E684-4A20-AFB7-318FF7DB1687.jpeg\n type: *2\n value: 72E554DE-E684-4A20-AFB7-318FF7DB1687.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '14'\n type: *3\n value: 14\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170791853'\n type: *2\n value: '7509170791853'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-03 19:58:07.757707'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 72E554DE-E684-4A20-AFB7-318FF7DB1687.jpeg\n 2 El producto COS-1175 fue modificado. 189.186.1.223 4014442a-2d55-4d66-9371-4078cc79eccc 2020-11-21 20:28:22.651152 32224 2386 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 907\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-03-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-312\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 a77310de-5da0-4efe-aa02-1bd5a43160a4 2020-03-18 23:45:46.026301 32225 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E2\n- !ruby/object:BigDecimal 18:0.59E2\n 18 \N 189.186.145.62 a77310de-5da0-4efe-aa02-1bd5a43160a4 2020-03-18 23:45:46.052688 32226 2386 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.145.62 4707ff9e-1888-44d9-a861-5b73c2b2dfde 2020-03-18 23:45:49.385897 32227 3224 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 907\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49E2\nmove_type: '1'\nsale_id: 2386\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-312\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-312 189.186.145.62 4707ff9e-1888-44d9-a861-5b73c2b2dfde 2020-03-18 23:45:49.410025 32228 2387 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 906\namount: !ruby/object:BigDecimal 18:0.1298E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1298E4\nstatus: 0\ndate_sale: 2020-03-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1177\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.8 29beadcd-b749-416c-a4d0-153de3697c13 2020-03-18 23:53:47.036449 32229 1643 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.66.8 29beadcd-b749-416c-a4d0-153de3697c13 2020-03-18 23:53:47.065976 32230 1641 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.66.8 29beadcd-b749-416c-a4d0-153de3697c13 2020-03-18 23:53:47.09862 32231 2387 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.8 27f72655-6d31-4d20-897f-a56d1d6e414f 2020-03-18 23:54:12.422018 32232 3225 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 906\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1298E4\nmove_type: '1'\nsale_id: 2387\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1177\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1298E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1177 187.149.66.8 27f72655-6d31-4d20-897f-a56d1d6e414f 2020-03-18 23:54:12.448607 32233 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-03-17 17:44:43.815876000 Z\n- &1 2020-03-18 00:11:44.788160000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-19 00:14:05.702200005 Z\nsign_in_count:\n- 172\n- 173\n 346 \N 187.149.66.8 47b08765-1b0e-4ec8-b046-870ac5bdf411 2020-03-19 00:14:05.710408 32234 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Bns82XTh3XsUVuQ37URq\n- ixE_J3ypsJ-rMuZwLSRM\n 347 \N 187.149.66.8 47b08765-1b0e-4ec8-b046-870ac5bdf411 2020-03-19 00:14:05.726042 32235 307 Customer \N \N 21 User \N create ---\nnick_name: BEATRIZ RESPARDO\nphone: "(667) 191-3424"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BEATRIZ RESPARDO fue registrado. 189.186.145.62 b6e87ce4-c419-40f2-aef0-d82a57771c5e 2020-03-19 00:29:13.905163 32236 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-03-18 00:52:17.104712000 Z\n- &1 2020-03-18 02:44:33.768163000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-19 00:30:41.811702027 Z\nsign_in_count:\n- 52\n- 53\n 107 \N 189.186.145.62 68222361-03f3-480b-9f34-597f1cc9c2de 2020-03-19 00:30:41.817347 32237 18 User \N \N 18 User \N update ---\nunique_session_id:\n- e_dXexdARsyq9oaDSzFe\n- QTzXjuD_wtDwoipVWAv5\n 108 \N 189.186.145.62 68222361-03f3-480b-9f34-597f1cc9c2de 2020-03-19 00:30:41.829889 32238 1680 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.66.8 247114bb-ed49-482c-957f-0be03b4b58c3 2020-03-19 00:31:28.402707 32239 533 Transfer \N \N 27 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-03-18\nuser_id: 27\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.66.8 8721e051-558b-481a-b3fe-ab69aa22d4f0 2020-03-19 00:31:33.030279 32240 533 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-18\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.145.62 85551e45-4ab7-4794-a905-000a7dcf0ae1 2020-03-19 00:34:33.416096 32241 1823 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1016\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.145.62 85551e45-4ab7-4794-a905-000a7dcf0ae1 2020-03-19 00:34:33.442821 32242 2388 Sale \N \N 18 User \N create ---\ncustomer_id: 307\nuser_id: 18\nopen_cash_register_id: 907\namount: !ruby/object:BigDecimal 18:0.519E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.519E3\nstatus: 0\ndate_sale: 2020-03-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-313\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 ef70e4cf-d008-4afb-9b74-138883bbb6d5 2020-03-19 00:35:21.975364 32243 1823 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.145.62 ef70e4cf-d008-4afb-9b74-138883bbb6d5 2020-03-19 00:35:22.011431 32244 2388 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.145.62 773316ba-6064-47fe-8bbe-5d0e275e9172 2020-03-19 00:36:59.897269 32245 3226 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 907\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 2388\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-313\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-313 189.186.145.62 773316ba-6064-47fe-8bbe-5d0e275e9172 2020-03-19 00:36:59.921893 32246 2388 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-313 cancelada. 189.186.145.62 a15efb59-92cf-49be-bf08-2ec63244666e 2020-03-19 00:37:25.868287 32247 3226 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 907\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 2388\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-313\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.145.62 a15efb59-92cf-49be-bf08-2ec63244666e 2020-03-19 00:37:25.90286 32249 2389 Sale \N \N 18 User \N create ---\ncustomer_id: 307\nuser_id: 18\nopen_cash_register_id: 907\namount: !ruby/object:BigDecimal 18:0.519E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.519E3\nstatus: 0\ndate_sale: 2020-03-18\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-314\nexpiration_date: 2020-04-22\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 5d6f2f1c-c171-4c10-a30f-bb819e30d55b 2020-03-19 00:37:45.464338 32250 1823 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.145.62 5d6f2f1c-c171-4c10-a30f-bb819e30d55b 2020-03-19 00:37:45.495201 32251 3227 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 907\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 2389\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-314\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-314 189.186.145.62 a6f59ad2-f7b2-48e5-bc9a-7b8fea31f173 2020-03-19 00:37:53.923594 32252 2389 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.145.62 24770a1a-e60f-4519-a31e-0af6aaecdc81 2020-03-19 00:37:56.200189 32253 2390 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 906\namount: !ruby/object:BigDecimal 18:0.78521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.699E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-03-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1178\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.8 2c5e427a-4396-42ac-a9db-eb1d1bbe50b9 2020-03-19 00:58:59.637944 32254 203 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.66.8 2c5e427a-4396-42ac-a9db-eb1d1bbe50b9 2020-03-19 00:58:59.679249 32255 2390 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.8 44c37e2b-71d5-437e-b346-ea324d2c32d7 2020-03-19 00:59:19.071089 32256 3228 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 906\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2390\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1178\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1178 187.149.66.8 44c37e2b-71d5-437e-b346-ea324d2c32d7 2020-03-19 00:59:19.091784 32257 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-18 02:06:41.477459000 Z\n- &1 2020-03-18 21:11:06.524144000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-19 01:03:43.278599075 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138250\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138250\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 1517\n- 1518\n 3036 \N 189.186.145.62 8394d005-5f92-4db2-9bf4-481483200abb 2020-03-19 01:03:43.288552 32258 4 User \N \N 4 User \N update ---\nunique_session_id:\n- EKrRn-qLppWV78yxfDaB\n- bh397F4svmH5JCixE4Ev\n 3037 \N 189.186.145.62 8394d005-5f92-4db2-9bf4-481483200abb 2020-03-19 01:03:43.30749 32259 928 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 906\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1545E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.17E4\ncash_fund: !ruby/object:BigDecimal 18:0.1207E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2907E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.66.8 9af90374-06f1-43cc-af59-6fd6e2423695 2020-03-19 02:26:01.913034 32260 906 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.66.8 9af90374-06f1-43cc-af59-6fd6e2423695 2020-03-19 02:26:01.933364 32261 929 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 908\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.1157E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.888E3\nphysical_cash: !ruby/object:BigDecimal 18:0.888E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.66.8 963b8cff-eead-483a-866d-1e73cfc8ccda 2020-03-19 02:29:53.936788 32262 908 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.66.8 963b8cff-eead-483a-866d-1e73cfc8ccda 2020-03-19 02:29:53.951061 32263 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-03-18 02:44:33.768163000 Z\n- &1 2020-03-19 00:30:41.811702000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-19 02:47:10.617300618 Z\nsign_in_count:\n- 53\n- 54\n 109 \N 189.186.145.62 5952e339-0fbe-412c-9156-f919e37b1add 2020-03-19 02:47:10.623551 32264 18 User \N \N 18 User \N update ---\nunique_session_id:\n- QTzXjuD_wtDwoipVWAv5\n- G_ZiZmU2AArHpbxfe-2L\n 110 \N 189.186.145.62 5952e339-0fbe-412c-9156-f919e37b1add 2020-03-19 02:47:10.637739 32265 930 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 907\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1697E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.52E3\nphysical_cash: !ruby/object:BigDecimal 18:0.102E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.145.62 2545facf-2c2f-4596-a38d-a10344b991df 2020-03-19 02:49:17.862053 32266 907 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.145.62 2545facf-2c2f-4596-a38d-a10344b991df 2020-03-19 02:49:17.878449 32267 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-18 21:11:06.524144000 Z\n- &1 2020-03-19 01:03:43.278599000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-19 17:19:03.001057896 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138250\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 1518\n- 1519\n 3038 \N 189.186.145.62 edc0af38-34bc-4ef3-bea2-b5b66c412812 2020-03-19 17:19:03.028378 32268 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bh397F4svmH5JCixE4Ev\n- 7RLPPjnzhsGx3z33zTy_\n 3039 \N 189.186.145.62 edc0af38-34bc-4ef3-bea2-b5b66c412812 2020-03-19 17:19:03.053448 32269 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-03-17 18:23:45.286452000 Z\n- &1 2020-03-18 18:03:58.859673000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-19 17:24:57.614008791 Z\nsign_in_count:\n- 133\n- 134\n 268 \N 187.149.66.8 c2e1a7ab-8760-44de-8d21-5b0549494f0b 2020-03-19 17:24:57.619473 32270 27 User \N \N 27 User \N update ---\nunique_session_id:\n- oozH3Rzdxg9nxsbW3MLy\n- YjfCJPTyyEznzprS6zHB\n 269 \N 187.149.66.8 c2e1a7ab-8760-44de-8d21-5b0549494f0b 2020-03-19 17:24:57.632055 32271 909 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.888E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 888.0 187.149.66.8 053b0ab0-dfe8-41c3-a306-8e6d4744a890 2020-03-19 17:25:15.715716 32272 2391 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 909\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-03-19\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-897\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.8 95efda2a-8440-4b72-bc5f-77a141fb8e85 2020-03-19 17:51:54.475108 32273 367 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.29E2\n- !ruby/object:BigDecimal 18:0.28E2\n 28 \N 187.149.66.8 95efda2a-8440-4b72-bc5f-77a141fb8e85 2020-03-19 17:51:54.504183 32274 2391 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.8 fd9d49b0-3bf3-49bc-88eb-d1cf9a008919 2020-03-19 17:54:31.097927 32275 3229 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 909\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 2391\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-897\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E2\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-897 187.149.66.8 fd9d49b0-3bf3-49bc-88eb-d1cf9a008919 2020-03-19 17:54:31.120864 32276 1118 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1118'\n is_parent: false\n sku: ZAP-1118\n name: 2CZO20106\n description: CALZADO CLOE SNEAKERS BLACK\n price_base: '799.5'\n price_sale: '1599.0'\n img_product: CZPA106_NEGR_1_300x435.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '13'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001118'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-17 18:38:25.07929'\n updated_at: &12 2020-03-19 17:58:20.203756230 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1118'\n sku: ZAP-1118\n name: 2CZO20106\n description: CALZADO CLOE SNEAKERS BLACK\n price_base: '799.50'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-17 18:38:25.07929'\n updated_at: '2020-03-17 18:38:25.125966'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001118'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '13'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1118'\n type: *3\n value: 1118\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ZAP-1118\n type: *7\n value: ZAP-1118\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 2CZO20106\n type: *8\n value: 2CZO20106\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CALZADO CLOE SNEAKERS BLACK\n type: *6\n value: CALZADO CLOE SNEAKERS BLACK\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '799.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: CZPA106_NEGR_1_300x435.jpg\n type: *2\n value: CZPA106_NEGR_1_300x435.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '13'\n type: *3\n value: 13\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001118'\n type: *2\n value: '0001118'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-17 18:38:25.07929'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- CZPA106_NEGR_1_300x435.jpg\n 3 El producto ZAP-1118 fue modificado. 189.186.145.62 a51d6402-8e80-4a77-9a50-66cbe517d9df 2020-03-19 17:58:20.262509 32277 2352 Sale \N \N 27 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV2-V-893 cancelada. 187.149.66.8 a463207e-6447-4cb5-b778-9c01ee76e11f 2020-03-19 17:59:11.762822 32278 3230 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 909\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E4\nmove_type: '0'\nsale_id: 2352\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.66.8 a463207e-6447-4cb5-b778-9c01ee76e11f 2020-03-19 17:59:11.789593 32279 1677 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 187.149.66.8 a463207e-6447-4cb5-b778-9c01ee76e11f 2020-03-19 17:59:11.813064 32280 1788 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.66.8 a463207e-6447-4cb5-b778-9c01ee76e11f 2020-03-19 17:59:11.832925 32281 1138 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 13 \N 187.149.66.8 a463207e-6447-4cb5-b778-9c01ee76e11f 2020-03-19 17:59:11.852318 32282 1789 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.66.8 a463207e-6447-4cb5-b778-9c01ee76e11f 2020-03-19 17:59:11.872021 32283 1332 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.66.8 a463207e-6447-4cb5-b778-9c01ee76e11f 2020-03-19 17:59:11.891532 32284 1696 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.66.8 a463207e-6447-4cb5-b778-9c01ee76e11f 2020-03-19 17:59:11.910569 32285 2392 Sale \N \N 27 User \N create ---\ncustomer_id: 301\nuser_id: 27\nopen_cash_register_id: 909\namount: !ruby/object:BigDecimal 18:0.2386E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2386E4\nstatus: 0\ndate_sale: 2020-03-19\nsaletype: 1\nseller_id: 4\nsale_code: PV2-V-898\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.8 3ca6c152-f73f-4edd-a3cd-32faeaac0b26 2020-03-19 18:01:36.696011 32286 1788 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.66.8 3ca6c152-f73f-4edd-a3cd-32faeaac0b26 2020-03-19 18:01:36.721798 32287 1677 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 187.149.66.8 3ca6c152-f73f-4edd-a3cd-32faeaac0b26 2020-03-19 18:01:36.744982 32288 1138 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 14 \N 187.149.66.8 3ca6c152-f73f-4edd-a3cd-32faeaac0b26 2020-03-19 18:01:36.768683 32289 1789 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.66.8 3ca6c152-f73f-4edd-a3cd-32faeaac0b26 2020-03-19 18:01:36.792613 32290 2392 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.8 7de2a2d8-ae51-4517-89da-9167bf2e8667 2020-03-19 18:02:00.432381 32291 3231 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 909\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.15E4\nmove_type: '1'\nsale_id: 2392\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-898\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ANTICIPO\n 1 movimiento de efectivo por venta con folio PV2-V-898 187.149.66.8 7de2a2d8-ae51-4517-89da-9167bf2e8667 2020-03-19 18:02:00.456297 32292 3232 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 909\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.15E4\nmove_type: '1'\nsale_id: 2392\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-898\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ANTICIPO\n 1 movimiento de efectivo por venta con folio PV2-V-898 187.149.66.8 47a570d2-6db4-44df-853e-9411a7876d1c 2020-03-19 18:02:00.547796 32293 3232 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 909\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.15E4\nmove_type: '1'\nsale_id: 2392\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-898\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ANTICIPO\n 2 \N 187.149.66.8 fa91cfcd-1d2f-4a94-a21a-8cc9515a152c 2020-03-19 18:02:04.373338 32294 3233 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 909\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.886E3\nmove_type: '1'\nsale_id: 2392\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-898\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.886E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ANTICIPO\n 1 movimiento de efectivo por venta con folio PV2-V-898 187.149.66.8 fdac39af-0e18-4178-8417-b01791b2e3b5 2020-03-19 18:02:53.885388 32295 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-19 01:03:43.278599000 Z\n- &1 2020-03-19 17:19:03.001057000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-19 19:55:13.179840653 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934393\n mask_addr: 4294967295\nsign_in_count:\n- 1519\n- 1520\n 3040 \N 200.68.135.185 b769d5ea-09b8-4329-a572-bf7ef399926a 2020-03-19 19:55:13.18925 32296 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7RLPPjnzhsGx3z33zTy_\n- Zoxstj1CCFzSYwu_CAzJ\n 3041 \N 200.68.135.185 b769d5ea-09b8-4329-a572-bf7ef399926a 2020-03-19 19:55:13.209889 32297 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-17 17:44:15.262051000 Z\n- &1 2020-03-18 18:21:56.401064000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-19 19:59:16.833033208 Z\nsign_in_count:\n- 508\n- 509\n 1021 \N 187.149.66.8 99c9f826-0a74-47d3-bb3d-063671f57823 2020-03-19 19:59:16.839289 32298 2 User \N \N 2 User \N update ---\nunique_session_id:\n- WypiREtF1ZuKW3xky5nm\n- tVZ8HcYV9uEuvef7qmrV\n 1022 \N 187.149.66.8 99c9f826-0a74-47d3-bb3d-063671f57823 2020-03-19 19:59:16.853956 32299 910 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1207E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1207.0 187.149.66.8 55d1fb4e-5abb-40a1-8f7b-d133a746bd7e 2020-03-19 19:59:33.523107 32300 2393 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 910\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-03-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1179\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.8 f5ec9950-e7bc-4fb6-a385-da4d9e6666d2 2020-03-19 20:00:22.054832 32301 809 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 12 \N 187.149.66.8 f5ec9950-e7bc-4fb6-a385-da4d9e6666d2 2020-03-19 20:00:22.083619 32302 2393 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.8 21fd7e02-b0e4-4b23-8e48-16a17e160df3 2020-03-19 20:00:26.287302 32303 3234 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 910\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 2393\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1179\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1179 187.149.66.8 21fd7e02-b0e4-4b23-8e48-16a17e160df3 2020-03-19 20:00:26.306901 32304 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-03-18 00:11:44.788160000 Z\n- &1 2020-03-19 00:14:05.702200000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-19 20:13:37.578638338 Z\nsign_in_count:\n- 173\n- 174\n 348 \N 187.149.66.8 1c47d59e-d610-4a8f-933e-a0a5da852179 2020-03-19 20:13:37.584302 32305 1 User \N \N 1 User \N update ---\nunique_session_id:\n- ixE_J3ypsJ-rMuZwLSRM\n- WmBfKpbcFBNMdyck56Bv\n 349 \N 187.149.66.8 1c47d59e-d610-4a8f-933e-a0a5da852179 2020-03-19 20:13:37.597244 32306 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-17 01:39:03.533287000 Z\n- &1 2020-03-18 18:53:06.138563000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-19 20:32:20.843708254 Z\nsign_in_count:\n- 196\n- 197\n 395 \N 189.186.145.62 0b556888-5c2b-4daf-9427-0ca88978160b 2020-03-19 20:32:20.849517 32307 21 User \N \N 21 User \N update ---\nunique_session_id:\n- t3YzrgyUjoivprwHa2SS\n- XviUBqTsv9bSAHJqHRea\n 396 \N 189.186.145.62 0b556888-5c2b-4daf-9427-0ca88978160b 2020-03-19 20:32:20.863023 32308 911 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.52E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 520.0 189.186.145.62 db233a32-bea7-4297-ba93-5bc6ae108fc4 2020-03-19 20:32:38.233392 32309 3235 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 885\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.823E3\nmove_type: '1'\nsale_id: 2312\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAMA\n 1 \N 189.186.145.62 e0b2e4ae-afd4-45bc-8834-5cf43f63ffab 2020-03-19 20:33:06.521673 32310 2312 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.145.62 e0b2e4ae-afd4-45bc-8834-5cf43f63ffab 2020-03-19 20:33:06.545041 32311 3235 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 885\n- 911\n 2 movimiento de efectivo por venta con folio PV2-V-871 189.186.145.62 e0b2e4ae-afd4-45bc-8834-5cf43f63ffab 2020-03-19 20:33:06.556593 32312 2394 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 910\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-03-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1180\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.8 1ef20fd4-69be-4f67-9d44-078f295ce9b0 2020-03-19 21:01:02.182385 32313 1653 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.66.8 1ef20fd4-69be-4f67-9d44-078f295ce9b0 2020-03-19 21:01:02.2983 32314 2394 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.8 6a8bda19-44f6-4d91-879b-2bdede62cea1 2020-03-19 21:01:06.500783 32315 3236 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 910\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 2394\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1180\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1180 187.149.66.8 6a8bda19-44f6-4d91-879b-2bdede62cea1 2020-03-19 21:01:06.542842 32316 3237 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 909\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2314\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-872 187.149.66.8 8cc6dbfa-d667-4fbc-b854-bb1236f0e5f9 2020-03-19 21:39:35.904384 32317 3238 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 909\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2314\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-872 187.149.66.8 173f1ab2-21f0-4ee9-9c31-0929070b45c4 2020-03-19 21:39:35.96402 32318 3238 CashRegistersMove \N \N 27 User \N destroy ---\nopen_cash_register_id: 909\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2314\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.66.8 60d1ecf4-15ae-48ae-bfd8-44c04b592ff1 2020-03-19 21:39:41.241784 32319 3239 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 909\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2314\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-872 187.149.66.8 3eac49b7-d14c-400d-8013-01f7a6a01d80 2020-03-19 22:15:59.257526 32320 3240 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 658\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 1626\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CREDITO SAM\n 1 \N 187.149.66.8 0331d2e3-7dad-475e-8cd6-acfdb2bbb116 2020-03-19 22:58:25.890908 32321 3240 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 658\n- 910\n 2 movimiento de efectivo por venta con folio PV1-V-831 187.149.66.8 0331d2e3-7dad-475e-8cd6-acfdb2bbb116 2020-03-19 22:58:25.928242 32322 502 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.66.8 736cf7c5-88cd-486c-addd-b4009897eeb6 2020-03-19 23:03:27.852743 32323 534 Transfer \N \N 1 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-03-19\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.66.8 29756b31-c9f4-4484-a44c-2d6681451275 2020-03-19 23:03:30.93335 32324 534 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-19\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.66.8 b7bf429c-9242-41d6-b1c9-ffa210af726c 2020-03-19 23:05:22.817638 32325 1824 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 490\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.66.8 b7bf429c-9242-41d6-b1c9-ffa210af726c 2020-03-19 23:05:22.842147 32326 2395 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 910\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.769E3\ntotal: !ruby/object:BigDecimal 18:0.23E3\nstatus: 0\ndate_sale: 2020-03-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1181\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.66.8 a7c74a8d-3b49-4882-bd5f-c3aac4401f46 2020-03-19 23:06:06.657848 32327 1824 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.66.8 a7c74a8d-3b49-4882-bd5f-c3aac4401f46 2020-03-19 23:06:06.685194 32328 2395 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.66.8 5b6b4ffc-44ea-43ec-8e69-101ae25b624b 2020-03-19 23:06:27.624274 32329 3241 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 910\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.23E3\nmove_type: '1'\nsale_id: 2395\ncardnumber: 192\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1181\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1181 187.149.66.8 5b6b4ffc-44ea-43ec-8e69-101ae25b624b 2020-03-19 23:06:27.645688 32330 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-19 17:19:03.001057000 Z\n- &1 2020-03-19 19:55:13.179840000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-19 23:19:24.831400029 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934393\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934393\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121160\n mask_addr: 4294967295\nsign_in_count:\n- 1520\n- 1521\n 3042 \N 187.149.66.8 60fe88b4-2563-45ee-b6da-e51946e7906e 2020-03-19 23:19:24.840443 32331 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Zoxstj1CCFzSYwu_CAzJ\n- SjgcPRXnD_ZbCkJxMnvK\n 3043 \N 187.149.66.8 60fe88b4-2563-45ee-b6da-e51946e7906e 2020-03-19 23:19:25.133408 32332 2174 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.145.62 421d826b-2d82-4d6d-9da7-d48b7d2bdc3c 2020-03-19 23:25:39.788857 32333 1035 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 27 \N 189.186.145.62 421d826b-2d82-4d6d-9da7-d48b7d2bdc3c 2020-03-19 23:25:39.814439 32334 931 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 910\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2128E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.1005E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2505E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.101.44 8405d652-7d45-4dda-856a-e9805c36c350 2020-03-20 02:27:08.103794 32335 910 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.101.44 8405d652-7d45-4dda-856a-e9805c36c350 2020-03-20 02:27:08.119913 32336 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-14 23:38:04.489615000 Z\n- &1 2020-03-15 02:17:54.002075000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-20 02:29:58.854676211 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147130156\n mask_addr: 4294967295\nsign_in_count:\n- 119\n- 120\n 243 \N 187.149.101.44 dd12cb46-e51b-47f0-81bc-6ee6c7de5bcf 2020-03-20 02:29:58.861431 32337 8 User \N \N 8 User \N update ---\nunique_session_id:\n- a5g1Xikssfauu7By_gPn\n- 94UXkn7XPUuxsPzsyHsn\n 244 \N 187.149.101.44 dd12cb46-e51b-47f0-81bc-6ee6c7de5bcf 2020-03-20 02:29:58.889597 32338 3242 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 892\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2342\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1234'\n 1 \N 187.149.101.44 2041559a-697c-48e5-8f06-10af97683f28 2020-03-20 02:33:50.958562 32339 2342 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.101.44 2041559a-697c-48e5-8f06-10af97683f28 2020-03-20 02:33:50.980154 32340 2341 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.101.44 2041559a-697c-48e5-8f06-10af97683f28 2020-03-20 02:33:51.000138 32341 3242 CashRegistersMove \N \N 8 User \N update ---\nopen_cash_register_id:\n- 892\n- 909\n 2 movimiento de efectivo por venta con folio PV3-V-297 187.149.101.44 2041559a-697c-48e5-8f06-10af97683f28 2020-03-20 02:33:51.011801 32386 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-03-20 20:52:22.837790000 Z\n- &1 2020-03-21 00:03:23.534567000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-21 02:08:39.551703435 Z\nsign_in_count:\n- 57\n- 58\n 117 \N 189.186.145.62 e0effe33-872a-41a9-ad7a-ed9d52e58acf 2020-03-21 02:08:39.5763 32342 932 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 911\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.823E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.52E3\nphysical_cash: !ruby/object:BigDecimal 18:0.52E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.145.62 c474703a-13cf-4172-b9c0-5e8a2651fffd 2020-03-20 02:55:00.960174 32343 911 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.145.62 c474703a-13cf-4172-b9c0-5e8a2651fffd 2020-03-20 02:55:00.974857 32344 933 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 911\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.823E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.52E3\nphysical_cash: !ruby/object:BigDecimal 18:0.52E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.145.62 3613e95e-920a-4e18-ab1d-69c9aca52a86 2020-03-20 02:55:01.12868 32345 934 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 909\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.4235E4\namount_out: !ruby/object:BigDecimal 18:0.15E4\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.623E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2623E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.101.44 28c3f78b-2300-4efd-b62b-473365e834a4 2020-03-20 02:55:26.915808 32346 909 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.101.44 28c3f78b-2300-4efd-b62b-473365e834a4 2020-03-20 02:55:26.928298 32347 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-19 19:55:13.179840000 Z\n- &1 2020-03-19 23:19:24.831400000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-20 17:24:52.101639157 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934393\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121160\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121160\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 1521\n- 1522\n 3044 \N 189.186.145.62 66d838ea-cb7a-4d0b-be80-065e0cf56dbb 2020-03-20 17:24:52.13387 32348 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SjgcPRXnD_ZbCkJxMnvK\n- zUWx1Gms4guQqiyrhtu5\n 3045 \N 189.186.145.62 66d838ea-cb7a-4d0b-be80-065e0cf56dbb 2020-03-20 17:24:52.157794 32349 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-03-19 00:30:41.811702000 Z\n- &1 2020-03-19 02:47:10.617300000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-20 20:42:47.209132403 Z\nsign_in_count:\n- 54\n- 55\n 111 \N 189.186.145.62 30831552-81ef-4066-9055-37ffd4e9468e 2020-03-20 20:42:47.214835 32350 18 User \N \N 18 User \N update ---\nunique_session_id:\n- G_ZiZmU2AArHpbxfe-2L\n- MitgLCVJEr98-4u6c6bZ\n 112 \N 189.186.145.62 30831552-81ef-4066-9055-37ffd4e9468e 2020-03-20 20:42:47.233125 32351 912 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.52E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 520.0 189.186.145.62 644348d9-a94b-4668-a986-fda9b9b9076a 2020-03-20 20:43:05.981287 32352 2396 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 912\namount: !ruby/object:BigDecimal 18:0.168348E4\ntax: !ruby/object:BigDecimal 18:0.1352E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1697E4\nstatus: 0\ndate_sale: 2020-03-20\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-315\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 68784a00-7f45-4653-9c39-91aa2d4e274c 2020-03-20 20:43:39.515243 32353 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.145.62 68784a00-7f45-4653-9c39-91aa2d4e274c 2020-03-20 20:43:39.543099 32354 818 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.59E2\n- !ruby/object:BigDecimal 18:0.57E2\n 19 \N 189.186.145.62 68784a00-7f45-4653-9c39-91aa2d4e274c 2020-03-20 20:43:39.574627 32355 2396 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.145.62 ede20acb-fa25-42f3-9059-4161779af993 2020-03-20 20:43:59.611026 32356 3243 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 912\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1697E4\nmove_type: '1'\nsale_id: 2396\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-315\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.17E4\nchange: !ruby/object:BigDecimal 18:0.3E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-315 189.186.145.62 ede20acb-fa25-42f3-9059-4161779af993 2020-03-20 20:43:59.63478 32357 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-19 23:19:24.831400000 Z\n- &1 2020-03-20 17:24:52.101639000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-20 20:51:40.739676260 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121160\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 1522\n- 1523\n 3046 \N 189.186.145.62 e3eb49a0-4a32-40bf-bb9b-21e0c3cd475a 2020-03-20 20:51:40.747601 32358 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zUWx1Gms4guQqiyrhtu5\n- P8BV6fpeVnfDFs-fEJhm\n 3047 \N 189.186.145.62 e3eb49a0-4a32-40bf-bb9b-21e0c3cd475a 2020-03-20 20:51:40.766344 32359 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-03-19 02:47:10.617300000 Z\n- &1 2020-03-20 20:42:47.209132000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-20 20:52:22.837790887 Z\nsign_in_count:\n- 55\n- 56\n 113 \N 189.186.145.62 b7d86e4a-afe5-469c-9d5f-09fef31639bd 2020-03-20 20:52:22.843305 32360 18 User \N \N 18 User \N update ---\nunique_session_id:\n- MitgLCVJEr98-4u6c6bZ\n- DTM88etnVQKjUqVzx2VB\n 114 \N 189.186.145.62 b7d86e4a-afe5-469c-9d5f-09fef31639bd 2020-03-20 20:52:22.856268 32361 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-18 18:21:56.401064000 Z\n- &1 2020-03-19 19:59:16.833033000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-20 21:02:17.804103162 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121160\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147125595\n mask_addr: 4294967295\nsign_in_count:\n- 509\n- 510\n 1023 \N 187.149.83.91 227155fa-0c87-400f-a4e0-dc4d2239e92d 2020-03-20 21:02:17.810734 32362 2 User \N \N 2 User \N update ---\nunique_session_id:\n- tVZ8HcYV9uEuvef7qmrV\n- HZZLnft_6evKys_C1zb3\n 1024 \N 187.149.83.91 227155fa-0c87-400f-a4e0-dc4d2239e92d 2020-03-20 21:02:17.872094 32363 913 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1005E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1005.0 187.149.83.91 19dc9bcb-f91b-4c2c-b872-cbb98717096c 2020-03-20 21:02:29.431158 32387 18 User \N \N 18 User \N update ---\nunique_session_id:\n- syVmzY17_i3nf7WEUfDz\n- ULGeWh8qas7BFerQRkYL\n 118 \N 189.186.145.62 e0effe33-872a-41a9-ad7a-ed9d52e58acf 2020-03-21 02:08:39.624593 32548 1677 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 187.149.51.37 52b5bccd-1324-4e23-927b-187dadaee33e 2020-03-24 22:40:18.032904 32364 2397 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 913\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2020-03-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1182\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.83.91 c9d1ae74-3d19-4990-a80d-be98e2257b01 2020-03-20 21:05:20.037251 32365 605 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 13 \N 187.149.83.91 c9d1ae74-3d19-4990-a80d-be98e2257b01 2020-03-20 21:05:20.063946 32366 2397 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.83.91 fe999861-6214-42cd-839e-694edce8870f 2020-03-20 21:05:35.760718 32367 3244 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 913\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.479E3\nmove_type: '1'\nsale_id: 2397\ncardnumber: 5582\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1182\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1182 187.149.83.91 fe999861-6214-42cd-839e-694edce8870f 2020-03-20 21:05:35.781924 32368 2398 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 913\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-03-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1183\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.83.91 234e69ee-386e-4c5f-881b-58fc500d2710 2020-03-20 21:31:14.632471 32369 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.25E2\n- !ruby/object:BigDecimal 18:0.24E2\n 10 \N 187.149.83.91 234e69ee-386e-4c5f-881b-58fc500d2710 2020-03-20 21:31:14.660324 32370 2398 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.83.91 2c110667-56c1-4036-be80-5920df64f707 2020-03-20 21:31:19.819156 32371 3245 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 913\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49E2\nmove_type: '1'\nsale_id: 2398\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1183\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1183 187.149.83.91 2c110667-56c1-4036-be80-5920df64f707 2020-03-20 21:31:19.839085 32372 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-03-19 00:14:05.702200000 Z\n- &1 2020-03-19 20:13:37.578638000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-20 21:32:08.038524743 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121160\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147125595\n mask_addr: 4294967295\nsign_in_count:\n- 174\n- 175\n 350 \N 187.149.83.91 cc55d717-c245-4bd3-b923-1f2956500edc 2020-03-20 21:32:08.045079 32373 1 User \N \N 1 User \N update ---\nunique_session_id:\n- WmBfKpbcFBNMdyck56Bv\n- 4hojoErszSJxYt5biK8K\n 351 \N 187.149.83.91 cc55d717-c245-4bd3-b923-1f2956500edc 2020-03-20 21:32:08.070141 32374 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-20 17:24:52.101639000 Z\n- &1 2020-03-20 20:51:40.739676000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-20 21:43:06.671100883 Z\nsign_in_count:\n- 1523\n- 1524\n 3048 \N 189.186.145.62 e45d7dcd-e9a4-4ef2-99cb-35ceb6ab4196 2020-03-20 21:43:06.67665 32375 4 User \N \N 4 User \N update ---\nunique_session_id:\n- P8BV6fpeVnfDFs-fEJhm\n- HrZJyyPtLMaCqw7vs3V8\n 3049 \N 189.186.145.62 e45d7dcd-e9a4-4ef2-99cb-35ceb6ab4196 2020-03-20 21:43:06.691243 32376 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-03-20 20:42:47.209132000 Z\n- &1 2020-03-20 20:52:22.837790000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-21 00:03:23.534567024 Z\nsign_in_count:\n- 56\n- 57\n 115 \N 189.186.145.62 508c495d-5905-4b66-90e2-f99998c0262b 2020-03-21 00:03:23.540304 32377 18 User \N \N 18 User \N update ---\nunique_session_id:\n- DTM88etnVQKjUqVzx2VB\n- syVmzY17_i3nf7WEUfDz\n 116 \N 189.186.145.62 508c495d-5905-4b66-90e2-f99998c0262b 2020-03-21 00:03:23.553577 32378 2399 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 912\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-03-20\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-316\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 fbd18ad6-ee04-4eec-8cda-28c8826bd51f 2020-03-21 00:03:49.887514 32379 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.145.62 fbd18ad6-ee04-4eec-8cda-28c8826bd51f 2020-03-21 00:03:49.915692 32380 2399 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.145.62 a149f63b-5d2c-444e-9044-8a886fd79ce8 2020-03-21 00:03:54.745713 32381 3246 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 912\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2399\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-316\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-316 189.186.145.62 a149f63b-5d2c-444e-9044-8a886fd79ce8 2020-03-21 00:03:54.766844 32382 3246 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 912\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 2399\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-316\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.145.62 7d358108-843b-49b9-8c5c-759b20be89dc 2020-03-21 00:03:56.902828 32383 3247 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 912\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2399\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-316\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-316 189.186.145.62 e88470c7-e2fe-4bde-b27e-f40514aecc32 2020-03-21 00:04:07.647503 32384 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-20 20:51:40.739676000 Z\n- &1 2020-03-20 21:43:06.671100000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-21 00:06:11.776061477 Z\nsign_in_count:\n- 1524\n- 1525\n 3050 \N 189.186.145.62 2d7ec7c9-e490-4647-b623-995e084ee41f 2020-03-21 00:06:11.781503 32385 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HrZJyyPtLMaCqw7vs3V8\n- TxCzyWSvShJYCuAMXPXU\n 3051 \N 189.186.145.62 2d7ec7c9-e490-4647-b623-995e084ee41f 2020-03-21 00:06:11.796018 32478 21 User \N \N 21 User \N update ---\nunique_session_id:\n- gPMMbYJR1hrK5kKttqY5\n- B6b8VmgMkLRjxeYkkavA\n 404 \N 189.186.145.62 8f1647b0-6f97-4926-8e1a-46f88d8ae84d 2020-03-22 19:25:53.153013 32388 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-03-18 18:03:58.859673000 Z\n- &1 2020-03-19 17:24:57.614008000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-21 02:18:24.246018699 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121160\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147125595\n mask_addr: 4294967295\nsign_in_count:\n- 134\n- 135\n 270 \N 187.149.83.91 660ef6ef-be17-40c0-a920-01ffc61e3306 2020-03-21 02:18:24.251979 32389 27 User \N \N 27 User \N update ---\nunique_session_id:\n- YjfCJPTyyEznzprS6zHB\n- yosVoqhusJWQJSEQyH5y\n 271 \N 187.149.83.91 660ef6ef-be17-40c0-a920-01ffc61e3306 2020-03-21 02:18:24.269304 32390 914 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.623E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 623.0 187.149.83.91 75042cd3-764b-4ed3-8724-354756e852fc 2020-03-21 02:18:57.706616 32391 935 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 913\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.528E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1054E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1054E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.83.91 77f153da-f58d-45a2-b93d-0e0018a3cb2c 2020-03-21 02:25:20.056739 32392 913 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.83.91 77f153da-f58d-45a2-b93d-0e0018a3cb2c 2020-03-21 02:25:20.191903 32393 936 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 914\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 27\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.623E3\nphysical_cash: !ruby/object:BigDecimal 18:0.623E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.83.91 20e581c5-b862-4dd6-90fe-2261ce25983e 2020-03-21 02:28:55.92603 32394 914 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.83.91 20e581c5-b862-4dd6-90fe-2261ce25983e 2020-03-21 02:28:55.939178 32395 937 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 912\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.3296E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.717E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2217E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.145.62 e892f945-83c0-4d23-8239-3600823f9642 2020-03-21 02:50:33.52105 32396 912 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.145.62 e892f945-83c0-4d23-8239-3600823f9642 2020-03-21 02:50:33.533942 32397 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-18 18:53:06.138563000 Z\n- &1 2020-03-19 20:32:20.843708000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-21 17:22:22.198641350 Z\nsign_in_count:\n- 197\n- 198\n 397 \N 189.186.145.62 9154fb22-3930-4db6-9074-f6c4d543f376 2020-03-21 17:22:22.225143 32398 21 User \N \N 21 User \N update ---\nunique_session_id:\n- XviUBqTsv9bSAHJqHRea\n- uddGNrWczHTHxx-VrCay\n 398 \N 189.186.145.62 9154fb22-3930-4db6-9074-f6c4d543f376 2020-03-21 17:22:22.251193 32399 915 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.717E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 717.0 189.186.145.62 3ac7aff8-4a9b-45b5-aa47-bfbfad8adbfb 2020-03-21 17:22:54.406181 32400 2400 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 915\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-03-21\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-317\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 25abe271-e7fe-4e27-8196-38f60ecd25e4 2020-03-21 17:24:59.149781 32401 1240 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 5 \N 189.186.145.62 25abe271-e7fe-4e27-8196-38f60ecd25e4 2020-03-21 17:24:59.18303 32402 2400 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.145.62 0dfa2dc7-2c60-4233-a6ad-aef73ed80572 2020-03-21 17:25:08.096127 32403 3248 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 915\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 2400\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-317\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-317 189.186.145.62 0dfa2dc7-2c60-4233-a6ad-aef73ed80572 2020-03-21 17:25:08.12322 32404 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-03-21 00:03:23.534567000 Z\n- &1 2020-03-21 02:08:39.551703000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-21 18:59:21.858795477 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\nsign_in_count:\n- 58\n- 59\n 119 \N 187.149.51.37 b525130b-9cf8-4c15-b79e-d375d9715dae 2020-03-21 18:59:21.865114 32405 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ULGeWh8qas7BFerQRkYL\n- UDYZ9smAi9Cz9RBrgF5_\n 120 \N 187.149.51.37 b525130b-9cf8-4c15-b79e-d375d9715dae 2020-03-21 18:59:21.883993 32406 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-20 21:43:06.671100000 Z\n- &1 2020-03-21 00:06:11.776061000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-21 19:07:11.871147826 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\nsign_in_count:\n- 1525\n- 1526\n 3052 \N 187.149.51.37 ca202cab-cb9f-49e7-989a-1398a38dca60 2020-03-21 19:07:11.877393 32407 4 User \N \N 4 User \N update ---\nunique_session_id:\n- TxCzyWSvShJYCuAMXPXU\n- byWQsY2GJbWXixuFzmPu\n 3053 \N 187.149.51.37 ca202cab-cb9f-49e7-989a-1398a38dca60 2020-03-21 19:07:11.893107 32408 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-19 19:59:16.833033000 Z\n- &1 2020-03-20 21:02:17.804103000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-21 19:08:02.821725823 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121160\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147125595\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147125595\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\nsign_in_count:\n- 510\n- 511\n 1025 \N 187.149.51.37 256a3027-5a49-4d0f-b3c9-f00d0f05d90b 2020-03-21 19:08:02.828801 32409 2 User \N \N 2 User \N update ---\nunique_session_id:\n- HZZLnft_6evKys_C1zb3\n- 7xpN4Nnz1z5z3AC3_yBn\n 1026 \N 187.149.51.37 256a3027-5a49-4d0f-b3c9-f00d0f05d90b 2020-03-21 19:08:02.845758 32502 367 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.28E2\n- !ruby/object:BigDecimal 18:0.27E2\n 29 \N 187.149.51.37 fb17e647-3ea3-4869-b3b6-043fc0a0be65 2020-03-23 18:24:40.995253 32503 2406 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.37 50f47372-3bbe-4936-a784-3dd3a2a4700d 2020-03-23 18:24:45.049045 32410 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-21 00:06:11.776061000 Z\n- &1 2020-03-21 19:07:11.871147000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-21 19:49:57.326421944 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\nsign_in_count:\n- 1526\n- 1527\n 3054 \N 187.149.51.37 c3df1c97-f374-4d5f-8651-a3ae5a80d5b5 2020-03-21 19:49:57.333669 32411 4 User \N \N 4 User \N update ---\nunique_session_id:\n- byWQsY2GJbWXixuFzmPu\n- tVYEsirkjKyHg4gu81T9\n 3055 \N 187.149.51.37 c3df1c97-f374-4d5f-8651-a3ae5a80d5b5 2020-03-21 19:49:57.638701 32412 916 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1054E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1054.0 187.149.51.37 b90ca30f-2be7-4c59-95ab-8944c47a28d9 2020-03-21 21:15:33.169039 32413 3249 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 916\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 2297\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1140 187.149.51.37 f4105843-b061-43d3-9ac1-3b3fb64a1d69 2020-03-21 21:16:07.221958 32414 2297 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.51.37 149dab99-a17c-426d-bffd-0cef6d591b9f 2020-03-21 21:16:08.881287 32415 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-15 02:17:54.002075000 Z\n- &1 2020-03-20 02:29:58.854676000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-21 21:22:13.662588209 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147130156\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147130156\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\nsign_in_count:\n- 120\n- 121\n 245 \N 187.149.51.37 c170c10e-07fa-4eee-aca9-09ed0823d83d 2020-03-21 21:22:13.669842 32416 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 94UXkn7XPUuxsPzsyHsn\n- 1g_CMc8KSHZHN2Fe5bgw\n 246 \N 187.149.51.37 c170c10e-07fa-4eee-aca9-09ed0823d83d 2020-03-21 21:22:13.685326 32417 917 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.623E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 623.0 187.149.51.37 c771c603-3d82-4672-8ba3-751a08bb5d80 2020-03-21 21:22:52.023936 32418 308 Customer \N \N 8 User \N create ---\nnick_name: KELLY OCHOA\nphone: "(667) 409-4281"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KELLY OCHOA fue registrado. 187.149.51.37 ba7c2120-6652-4feb-b42c-dfabb907d33c 2020-03-21 21:24:09.419217 32419 2401 Sale \N \N 8 User \N create ---\ncustomer_id: 308\nuser_id: 8\nopen_cash_register_id: 917\namount: !ruby/object:BigDecimal 18:0.659E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.659E3\nstatus: 0\ndate_sale: 2020-03-21\nsaletype: 2\nseller_id: 11\nsale_code: PV2-V-899\nexpiration_date: 2020-04-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.37 c67571bb-1f01-463d-83f0-0d748af3149f 2020-03-21 21:24:58.991726 32420 1678 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.51.37 c67571bb-1f01-463d-83f0-0d748af3149f 2020-03-21 21:24:59.020282 32421 3250 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 917\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2401\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-899\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-899 187.149.51.37 e3c5984d-1aa2-4697-9846-5a548747f2f6 2020-03-21 21:25:12.258084 32422 2401 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.51.37 0d8b06a8-b2b4-4223-8c87-0522c8e1b32c 2020-03-21 21:25:13.65548 32423 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-21 19:07:11.871147000 Z\n- &1 2020-03-21 19:49:57.326421000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-21 21:52:24.951393554 Z\nsign_in_count:\n- 1527\n- 1528\n 3056 \N 187.149.51.37 f519f6f9-a2a5-494a-9bef-ce71cce400de 2020-03-21 21:52:24.956594 32424 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tVYEsirkjKyHg4gu81T9\n- eDB1yhzHbtXbhdxY4PSn\n 3057 \N 187.149.51.37 f519f6f9-a2a5-494a-9bef-ce71cce400de 2020-03-21 21:52:24.970584 32425 2402 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 915\namount: !ruby/object:BigDecimal 18:0.139E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.139E3\nstatus: 0\ndate_sale: 2020-03-21\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-318\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 33a4a441-dee1-494e-b9db-b4b1cdf14c24 2020-03-21 22:09:30.580182 32426 1748 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.145.62 33a4a441-dee1-494e-b9db-b4b1cdf14c24 2020-03-21 22:09:30.658417 32427 2402 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.145.62 f929b9e6-a7f9-417c-8704-5188fff36c49 2020-03-21 22:09:42.152252 32428 3251 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 915\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.139E3\nmove_type: '1'\nsale_id: 2402\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-318\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.61E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-318 189.186.145.62 f929b9e6-a7f9-417c-8704-5188fff36c49 2020-03-21 22:09:42.177306 32429 2403 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 916\namount: !ruby/object:BigDecimal 18:0.1348E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1348E4\nstatus: 0\ndate_sale: 2020-03-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1184\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.37 21bcd9e9-933b-472d-a3bc-a2658651fcb2 2020-03-21 23:33:52.743445 32430 1634 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.51.37 21bcd9e9-933b-472d-a3bc-a2658651fcb2 2020-03-21 23:33:52.77036 32431 1653 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.51.37 21bcd9e9-933b-472d-a3bc-a2658651fcb2 2020-03-21 23:33:52.796053 32432 2403 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.37 713ad318-5bc1-4861-bc2b-915898f1be9c 2020-03-21 23:33:57.114071 32433 3252 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 916\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1348E4\nmove_type: '1'\nsale_id: 2403\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1184\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1348E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1184 187.149.51.37 713ad318-5bc1-4861-bc2b-915898f1be9c 2020-03-21 23:33:57.134655 32434 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-21 19:49:57.326421000 Z\n- &1 2020-03-21 21:52:24.951393000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-21 23:36:59.173435928 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 1528\n- 1529\n 3058 \N 189.186.145.62 299a82d8-ee82-4c6c-bc1a-bdc3650302ea 2020-03-21 23:36:59.182904 32435 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eDB1yhzHbtXbhdxY4PSn\n- xsQqKhq4NbCu_RA3XivG\n 3059 \N 189.186.145.62 299a82d8-ee82-4c6c-bc1a-bdc3650302ea 2020-03-21 23:36:59.204563 32436 1002 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.145.62 775808fe-4dc1-4920-bf86-a8ebe26a8e7e 2020-03-21 23:37:55.383819 32437 535 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-03-21\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.145.62 22d2dee6-3df1-4eb5-b861-6688a723c9e2 2020-03-21 23:37:57.050269 32438 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-19 20:32:20.843708000 Z\n- &1 2020-03-21 17:22:22.198641000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-21 23:38:24.679223900 Z\nsign_in_count:\n- 198\n- 199\n 399 \N 189.186.145.62 8ce73b33-0fc2-4d83-ab9b-c27c3e0c31a6 2020-03-21 23:38:24.684559 32439 21 User \N \N 21 User \N update ---\nunique_session_id:\n- uddGNrWczHTHxx-VrCay\n- K5zsa6xMuiza9Hay2sYZ\n 400 \N 189.186.145.62 8ce73b33-0fc2-4d83-ab9b-c27c3e0c31a6 2020-03-21 23:38:24.697545 32440 535 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-03-21\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.145.62 b05ed5c3-de28-4d5d-848e-8954eeb122c2 2020-03-21 23:38:33.311476 32441 1825 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 593\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.145.62 b05ed5c3-de28-4d5d-848e-8954eeb122c2 2020-03-21 23:38:33.331612 32442 2404 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 915\namount: !ruby/object:BigDecimal 18:0.659E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.659E3\nstatus: 0\ndate_sale: 2020-03-21\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-319\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 092faabe-63ab-4d15-8cc0-07bb3349c59d 2020-03-21 23:38:52.12154 32443 1825 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.145.62 092faabe-63ab-4d15-8cc0-07bb3349c59d 2020-03-21 23:38:52.151277 32444 2404 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.145.62 dbb0c526-2f2b-46a1-8632-58f1d8fc6683 2020-03-21 23:38:57.884361 32445 3253 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 915\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.659E3\nmove_type: '1'\nsale_id: 2404\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-319\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.41E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-319 189.186.145.62 dbb0c526-2f2b-46a1-8632-58f1d8fc6683 2020-03-21 23:38:57.905253 32446 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-03-19 20:13:37.578638000 Z\n- &1 2020-03-20 21:32:08.038524000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-21 23:39:06.692497497 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121160\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147125595\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147125595\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\nsign_in_count:\n- 175\n- 176\n 352 \N 187.149.51.37 1ce55fd1-b26e-4e31-9fc5-2c9f7c2e7bdb 2020-03-21 23:39:06.700177 32447 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 4hojoErszSJxYt5biK8K\n- jxz1Rr8vjDh_4C7pbsTW\n 353 \N 187.149.51.37 1ce55fd1-b26e-4e31-9fc5-2c9f7c2e7bdb 2020-03-21 23:39:06.714815 32448 3254 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 915\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.41E2\nmove_type: '1'\nsale_id: 2356\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.41E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-298 189.186.145.62 4c6af63c-2ac9-4fb2-a7fb-501a90381f8a 2020-03-21 23:39:30.152852 32449 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-21 21:52:24.951393000 Z\n- &1 2020-03-21 23:36:59.173435000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-21 23:41:48.898690413 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 1529\n- 1530\n 3060 \N 189.186.145.62 998a8316-df71-40d5-bdfd-a80064b25779 2020-03-21 23:41:48.905055 32450 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xsQqKhq4NbCu_RA3XivG\n- dtyfLhVXLoHUH7SmJMWF\n 3061 \N 189.186.145.62 998a8316-df71-40d5-bdfd-a80064b25779 2020-03-21 23:41:48.925465 32451 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-21 17:22:22.198641000 Z\n- &1 2020-03-21 23:38:24.679223000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-21 23:42:53.977960484 Z\nsign_in_count:\n- 199\n- 200\n 401 \N 189.186.145.62 87ca4885-b18a-4255-9cbb-cf9053032535 2020-03-21 23:42:53.983421 32452 21 User \N \N 21 User \N update ---\nunique_session_id:\n- K5zsa6xMuiza9Hay2sYZ\n- gPMMbYJR1hrK5kKttqY5\n 402 \N 189.186.145.62 87ca4885-b18a-4255-9cbb-cf9053032535 2020-03-21 23:42:53.997421 32453 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-21 23:36:59.173435000 Z\n- &1 2020-03-21 23:41:48.898690000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-22 00:11:56.104462792 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\nsign_in_count:\n- 1530\n- 1531\n 3062 \N 187.149.51.37 750d4d77-dc39-4962-9364-b0a64e7d09c5 2020-03-22 00:11:56.111445 32454 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dtyfLhVXLoHUH7SmJMWF\n- PjZctSfDgAR6UPsX4oek\n 3063 \N 187.149.51.37 750d4d77-dc39-4962-9364-b0a64e7d09c5 2020-03-22 00:11:56.127299 32549 2409 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.37 18f16dce-6037-4a43-95ec-81b4095f2a3b 2020-03-24 22:40:44.36996 32455 2405 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 916\namount: !ruby/object:BigDecimal 18:0.1119E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1119E4\nstatus: 0\ndate_sale: 2020-03-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1185\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.37 4da569b2-9b70-459b-8108-9dfc5e1b5966 2020-03-22 00:55:18.580863 32456 1633 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.51.37 4da569b2-9b70-459b-8108-9dfc5e1b5966 2020-03-22 00:55:18.610342 32457 2405 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.37 9d8056a2-019b-4e5f-8fcb-a3a0e9f7f947 2020-03-22 00:55:50.679701 32458 3255 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 916\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1119E4\nmove_type: '1'\nsale_id: 2405\ncardnumber: 4715\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1185\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1185 187.149.51.37 9d8056a2-019b-4e5f-8fcb-a3a0e9f7f947 2020-03-22 00:55:50.700416 32459 1402 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.145.62 aa445502-b054-49f6-9d8f-e9ccebf037f8 2020-03-22 01:18:46.863954 32460 1430 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.145.62 7cc7b4d0-86ad-4a1c-b0f5-42c6fc30188b 2020-03-22 01:19:06.45931 32461 816 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.145.62 c7dc1b20-4b99-45e5-a131-39b87a36ebcc 2020-03-22 01:19:57.48468 32462 536 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-03-21\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.145.62 8831bbbf-7da1-44a7-b440-743c915102d4 2020-03-22 01:22:07.222049 32463 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-20 02:29:58.854676000 Z\n- &1 2020-03-21 21:22:13.662588000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-22 01:36:01.974466356 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147130156\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\nsign_in_count:\n- 121\n- 122\n 247 \N 187.149.51.37 f9e37569-3a30-4a2d-a127-11125a9fc3a1 2020-03-22 01:36:01.981234 32464 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 1g_CMc8KSHZHN2Fe5bgw\n- vBq4dSG86cifJYuBYxTs\n 248 \N 187.149.51.37 f9e37569-3a30-4a2d-a127-11125a9fc3a1 2020-03-22 01:36:01.996448 32465 938 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 917\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.2E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.2E3\ncash_fund: !ruby/object:BigDecimal 18:0.623E3\nphysical_cash: !ruby/object:BigDecimal 18:0.823E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.51.37 f4bbf5f5-1c18-44fe-b219-d9a08a0decd7 2020-03-22 01:39:15.153814 32466 917 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.37 f4bbf5f5-1c18-44fe-b219-d9a08a0decd7 2020-03-22 01:39:15.167384 32467 306 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 916\nquantity: !ruby/object:BigDecimal 18:0.1205E4\nstatus: 1\nobservations: sueldo rocio\nexpense_date: 2020-03-21\nexpense_code: PV1-E-210\n 1 Egreso por 1205.0 registrado 187.149.51.37 aa2f85e2-3e45-4598-959a-576235dedc7c 2020-03-22 01:39:46.108443 32468 3256 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 916\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1205E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 306\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.51.37 aa2f85e2-3e45-4598-959a-576235dedc7c 2020-03-22 01:39:46.127355 32469 939 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 916\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3066E4\namount_out: !ruby/object:BigDecimal 18:0.1205E4\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.96E3\ncash_fund: !ruby/object:BigDecimal 18:0.836E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1796E4\nobservations: retire $960 de lo cual me pague $260 de aretes pagados con terminal\n queda en corte $700\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.51.37 8e423567-429c-4be8-bd10-dfef4f9f8c49 2020-03-22 01:43:08.047864 32470 916 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.37 8e423567-429c-4be8-bd10-dfef4f9f8c49 2020-03-22 01:43:08.059768 32471 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-20 21:02:17.804103000 Z\n- &1 2020-03-21 19:08:02.821725000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-22 01:45:18.396774053 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147125595\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\nsign_in_count:\n- 511\n- 512\n 1027 \N 187.149.51.37 a55504d0-bdb6-459f-815b-201af82921a3 2020-03-22 01:45:18.403503 32472 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 7xpN4Nnz1z5z3AC3_yBn\n- gBhJST_S8Y1L77iiG8zP\n 1028 \N 187.149.51.37 a55504d0-bdb6-459f-815b-201af82921a3 2020-03-22 01:45:18.419345 32473 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-21 23:41:48.898690000 Z\n- &1 2020-03-22 00:11:56.104462000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-22 02:50:09.879741188 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946392\n mask_addr: 4294967295\nsign_in_count:\n- 1531\n- 1532\n 3064 \N 200.68.182.152 09e85875-373b-4d3d-8e7a-2505e33e1d17 2020-03-22 02:50:09.887606 32474 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PjZctSfDgAR6UPsX4oek\n- hLfJ5fjdDMYLSrdJ9eP1\n 3065 \N 200.68.182.152 09e85875-373b-4d3d-8e7a-2505e33e1d17 2020-03-22 02:50:09.911909 32475 940 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 915\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.2038E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.755E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2755E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.145.62 0b1b3906-e8cd-4eeb-9a20-933b6ced1d35 2020-03-22 02:52:36.806822 32476 915 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.145.62 0b1b3906-e8cd-4eeb-9a20-933b6ced1d35 2020-03-22 02:52:36.820359 32477 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-21 23:38:24.679223000 Z\n- &1 2020-03-21 23:42:53.977960000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-22 19:25:53.103754684 Z\nsign_in_count:\n- 200\n- 201\n 403 \N 189.186.145.62 8f1647b0-6f97-4926-8e1a-46f88d8ae84d 2020-03-22 19:25:53.13222 32479 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-22 00:11:56.104462000 Z\n- &1 2020-03-22 02:50:09.879741000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-22 20:27:00.957344551 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537763\n mask_addr: 4294967295\nsign_in_count:\n- 1532\n- 1533\n 3066 \N 177.228.110.163 3e762177-cc94-4743-9372-e3ed38287c87 2020-03-22 20:27:00.96473 32480 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hLfJ5fjdDMYLSrdJ9eP1\n- 6kvdSxM1ETXJy66bbMvA\n 3067 \N 177.228.110.163 3e762177-cc94-4743-9372-e3ed38287c87 2020-03-22 20:27:00.993616 32481 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-22 02:50:09.879741000 Z\n- &1 2020-03-22 20:27:00.957344000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-22 21:03:45.748372132 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537763\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537763\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 1533\n- 1534\n 3068 \N 189.186.145.62 4d96c424-4f8f-4752-be75-9d7ccfa43821 2020-03-22 21:03:45.755538 32482 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6kvdSxM1ETXJy66bbMvA\n- ET9ubxa2-3TfpydYSXPp\n 3069 \N 189.186.145.62 4d96c424-4f8f-4752-be75-9d7ccfa43821 2020-03-22 21:03:45.773283 32483 1083 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1083'\n is_parent: false\n sku: ACC-1083\n name: ARE-0044\n description: Bohemian Star Tassel Geometric Fashion Earrings Pendientes Largos\n Simples Nhmd186053\n price_base: '75.24'\n price_sale: '229.0'\n img_product: ARE44.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001083'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-01 02:26:20.88617'\n updated_at: &12 2020-03-22 21:05:08.061442542 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1083'\n sku: ACC-1083\n name: ARE-0044\n description: Bohemian Star Tassel Geometric Fashion Earrings Pendientes\n Largos Simples Nhmd186053\n price_base: '75.24'\n price_sale: '229.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-01 02:26:20.88617'\n updated_at: '2020-03-01 02:26:20.928539'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001083'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1083'\n type: *3\n value: 1083\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1083\n type: *7\n value: ACC-1083\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ARE-0044\n type: *8\n value: ARE-0044\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: Bohemian Star Tassel Geometric Fashion Earrings\n Pendientes Largos Simples Nhmd186053\n type: *6\n value: Bohemian Star Tassel Geometric Fashion Earrings Pendientes Largos\n Simples Nhmd186053\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '75.24'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7524E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '229.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.229E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: ARE44.jpg\n type: *2\n value: ARE44.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001083'\n type: *2\n value: '0001083'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-01 02:26:20.88617'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- ARE44.jpg\n 3 El producto ACC-1083 fue modificado. 189.186.145.62 52733536-cf6e-453e-aae5-7e209171728d 2020-03-22 21:05:08.102645 32484 1049 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1049'\n is_parent: false\n sku: ACC-1049\n name: ARE-0028\n description: Nuevos Pendientes Pendientes Étnicos Boho Pendientes Delicados\n Flecos Largos Nhmd189660\n price_base: '67.32'\n price_sale: '219.0'\n img_product: ARE28.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001049'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-01 01:18:01.171634'\n updated_at: &12 2020-03-22 21:05:40.694427775 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1049'\n sku: ACC-1049\n name: ARE-0028\n description: Nuevos Pendientes Pendientes Étnicos Boho Pendientes Delicados\n Flecos Largos Nhmd189660\n price_base: '67.32'\n price_sale: '219.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-01 01:18:01.171634'\n updated_at: '2020-03-01 01:18:01.216643'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001049'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1049'\n type: *3\n value: 1049\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1049\n type: *7\n value: ACC-1049\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ARE-0028\n type: *8\n value: ARE-0028\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: Nuevos Pendientes Pendientes Étnicos Boho Pendientes\n Delicados Flecos Largos Nhmd189660\n type: *6\n value: Nuevos Pendientes Pendientes Étnicos Boho Pendientes Delicados\n Flecos Largos Nhmd189660\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '67.32'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6732E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '219.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.219E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: ARE28.jpg\n type: *2\n value: ARE28.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001049'\n type: *2\n value: '0001049'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-01 01:18:01.171634'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- ARE28.jpg\n 3 El producto ACC-1049 fue modificado. 189.186.145.62 9c141690-1fff-4bed-b23f-e83b2525c0f1 2020-03-22 21:05:40.74812 32485 1073 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1073'\n is_parent: false\n sku: ACC-1073\n name: ARE-0049\n description: "Diamantes De Imitación Amor Temperamento Pendientes De Corazón\n De Durazno Pendientes Al Por Mayor Nhyq194548\\r\\n"\n price_base: '70.5'\n price_sale: '229.0'\n img_product: ARE49.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001073'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-01 02:11:12.767219'\n updated_at: &12 2020-03-22 21:06:19.901298138 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1073'\n sku: ACC-1073\n name: ARE-0049\n description: "Diamantes De Imitación Amor Temperamento Pendientes De Corazón\n De Durazno Pendientes Al Por Mayor Nhyq194548\\r\\n"\n price_base: '70.50'\n price_sale: '229.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-01 02:11:12.767219'\n updated_at: '2020-03-01 02:11:12.818447'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001073'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1073'\n type: *3\n value: 1073\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1073\n type: *7\n value: ACC-1073\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ARE-0049\n type: *8\n value: ARE-0049\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "Diamantes De Imitación Amor Temperamento Pendientes\n De Corazón De Durazno Pendientes Al Por Mayor Nhyq194548\\r\\n"\n type: *6\n value: "Diamantes De Imitación Amor Temperamento Pendientes De Corazón\n De Durazno Pendientes Al Por Mayor Nhyq194548\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '70.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.705E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '229.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.229E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: ARE49.jpg\n type: *2\n value: ARE49.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001073'\n type: *2\n value: '0001073'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-01 02:11:12.767219'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- ARE49.jpg\n 3 El producto ACC-1073 fue modificado. 189.186.145.62 ec05ae20-311d-4e07-9fed-f7487e418670 2020-03-22 21:06:19.940145 32486 1069 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1069'\n is_parent: false\n sku: ACC-1069\n name: ARE-0048\n description: "\\"Pendientes De Estrella De Pentagrama De Diamantes De Aleación\n De Moda Coreana Pendientes De Cadena De Borla Larga Femenina Nhpf196120"\n price_base: '63.62'\n price_sale: '259.0'\n img_product: ARE48.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001069'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-01 02:03:36.113374'\n updated_at: &12 2020-03-22 21:06:47.696247674 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1069'\n sku: ACC-1069\n name: ARE-0048\n description: "\\"Pendientes De Estrella De Pentagrama De Diamantes De Aleación\n De Moda Coreana Pendientes De Cadena De Borla Larga Femenina Nhpf196120"\n price_base: '63.62'\n price_sale: '259.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-01 02:03:36.113374'\n updated_at: '2020-03-01 02:03:36.151338'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001069'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1069'\n type: *3\n value: 1069\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1069\n type: *7\n value: ACC-1069\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ARE-0048\n type: *8\n value: ARE-0048\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "\\"Pendientes De Estrella De Pentagrama De Diamantes\n De Aleación De Moda Coreana Pendientes De Cadena De Borla Larga Femenina\n Nhpf196120"\n type: *6\n value: "\\"Pendientes De Estrella De Pentagrama De Diamantes De Aleación\n De Moda Coreana Pendientes De Cadena De Borla Larga Femenina Nhpf196120"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '63.62'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6362E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '259.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.259E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: ARE48.jpg\n type: *2\n value: ARE48.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001069'\n type: *2\n value: '0001069'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-01 02:03:36.113374'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- ARE48.jpg\n 3 El producto ACC-1069 fue modificado. 189.186.145.62 f21bb4fb-5c56-425d-8652-e5feb778988d 2020-03-22 21:06:47.735288 32487 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-22 20:27:00.957344000 Z\n- &1 2020-03-22 21:03:45.748372000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-22 21:30:31.808559846 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537763\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537763\n mask_addr: 4294967295\nsign_in_count:\n- 1534\n- 1535\n 3070 \N 177.228.110.163 6c4bb2fe-5f5d-4e27-bc8b-472cd4aab2b4 2020-03-22 21:30:31.815911 32488 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ET9ubxa2-3TfpydYSXPp\n- qpWKsYRTHGQpGyAmkPEm\n 3071 \N 177.228.110.163 6c4bb2fe-5f5d-4e27-bc8b-472cd4aab2b4 2020-03-22 21:30:31.833914 32489 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-03-19 17:24:57.614008000 Z\n- &1 2020-03-21 02:18:24.246018000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-22 21:43:00.610480860 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147121160\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147125595\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147125595\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\nsign_in_count:\n- 135\n- 136\n 272 \N 187.149.51.37 a563a02a-0a0d-428a-a9fc-1a41bd563852 2020-03-22 21:43:00.617779 32490 27 User \N \N 27 User \N update ---\nunique_session_id:\n- yosVoqhusJWQJSEQyH5y\n- BYD9pssTzr9WPGzsthTL\n 273 \N 187.149.51.37 a563a02a-0a0d-428a-a9fc-1a41bd563852 2020-03-22 21:43:00.633907 32491 918 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.623E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 623.0 187.149.51.37 7c525898-8781-4225-af1d-d459648f7fe1 2020-03-22 21:43:20.125757 32492 941 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 918\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 27\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.623E3\nphysical_cash: !ruby/object:BigDecimal 18:0.623E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.51.37 2cfb4920-d727-4eae-b64f-99560176348f 2020-03-22 21:58:59.691407 32493 918 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.37 2cfb4920-d727-4eae-b64f-99560176348f 2020-03-22 21:58:59.710742 32494 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-21 23:42:53.977960000 Z\n- &1 2020-03-22 19:25:53.103754000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-23 17:28:27.705844805 Z\nsign_in_count:\n- 201\n- 202\n 405 \N 189.186.145.62 5097d5ec-e30b-40ec-9615-afe2181c04c1 2020-03-23 17:28:27.732413 32495 21 User \N \N 21 User \N update ---\nunique_session_id:\n- B6b8VmgMkLRjxeYkkavA\n- vX16zzi3gc_7E1Eu1yGx\n 406 \N 189.186.145.62 5097d5ec-e30b-40ec-9615-afe2181c04c1 2020-03-23 17:28:27.75233 32496 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-03-10 18:18:03.296252000 Z\n- &1 2020-03-10 21:42:50.063864000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-23 18:23:50.701541023 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 72\n- 73\n 146 \N 189.186.145.62 8ac60b47-c701-4eb8-852f-84e8e04a0e21 2020-03-23 18:23:50.707927 32497 25 User \N \N 25 User \N update ---\nunique_session_id:\n- i15YsKQzbNbgb-xhpP9x\n- ZTRYXfzZYtra1yAHaCfG\n 147 \N 189.186.145.62 8ac60b47-c701-4eb8-852f-84e8e04a0e21 2020-03-23 18:23:50.722916 32498 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-03-21 02:18:24.246018000 Z\n- &1 2020-03-22 21:43:00.610480000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-23 18:23:54.448554134 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147125595\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\nsign_in_count:\n- 136\n- 137\n 274 \N 187.149.51.37 91825661-acc1-4c0b-8035-e3dfa1fef821 2020-03-23 18:23:54.454986 32499 27 User \N \N 27 User \N update ---\nunique_session_id:\n- BYD9pssTzr9WPGzsthTL\n- xy2_9NRAJ6Kcg6GLzcKu\n 275 \N 187.149.51.37 91825661-acc1-4c0b-8035-e3dfa1fef821 2020-03-23 18:23:54.468579 32500 919 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.623E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 623.0 187.149.51.37 b5d13456-de88-4541-9b6c-9414cca45ff7 2020-03-23 18:24:27.032237 32501 2406 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 919\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-03-23\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-900\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.37 fb17e647-3ea3-4869-b3b6-043fc0a0be65 2020-03-23 18:24:40.967889 32504 3257 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 919\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 2406\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-900\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.151E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-900 187.149.51.37 50f47372-3bbe-4936-a784-3dd3a2a4700d 2020-03-23 18:24:45.071795 32505 2407 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 919\namount: !ruby/object:BigDecimal 18:0.78434E3\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.79799E3\nstatus: 0\ndate_sale: 2020-03-23\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-901\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.37 69c86d43-6cbd-44c5-9ea8-780b342cd125 2020-03-23 18:29:46.663451 32506 1379 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 187.149.51.37 69c86d43-6cbd-44c5-9ea8-780b342cd125 2020-03-23 18:29:46.70393 32507 487 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 20 \N 187.149.51.37 69c86d43-6cbd-44c5-9ea8-780b342cd125 2020-03-23 18:29:46.744842 32508 2407 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.51.37 0837e39c-2f85-42a3-9077-12dbf0a3f4a2 2020-03-23 18:29:50.605664 32509 3258 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 919\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.79799E3\nmove_type: '1'\nsale_id: 2407\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-901\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.20201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-901 187.149.51.37 0837e39c-2f85-42a3-9077-12dbf0a3f4a2 2020-03-23 18:29:50.632993 32510 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2020-03-10 02:52:58.416500000 Z\n- &1 2020-03-10 23:52:47.259437000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-23 18:30:31.594184812 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 70\n- 71\n 142 \N 189.186.145.62 ed729350-9a47-4599-8aff-e30488563534 2020-03-23 18:30:31.602082 32511 26 User \N \N 26 User \N update ---\nunique_session_id:\n- TdBdT-bPzinBCokFcmBi\n- 9wRkWzP7v-ya2JRRbEq_\n 143 \N 189.186.145.62 ed729350-9a47-4599-8aff-e30488563534 2020-03-23 18:30:31.619839 32512 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-22 19:25:53.103754000 Z\n- &1 2020-03-23 17:28:27.705844000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-23 19:37:52.680685153 Z\nsign_in_count:\n- 202\n- 203\n 407 \N 189.186.145.62 130ddece-e913-4099-977f-cff3edf3f395 2020-03-23 19:37:52.686213 32513 21 User \N \N 21 User \N update ---\nunique_session_id:\n- vX16zzi3gc_7E1Eu1yGx\n- DbxFoS_Gqzy5w2--oh7x\n 408 \N 189.186.145.62 130ddece-e913-4099-977f-cff3edf3f395 2020-03-23 19:37:52.703905 32514 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-22 21:03:45.748372000 Z\n- &1 2020-03-22 21:30:31.808559000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-23 19:44:08.415426977 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537763\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537763\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143439\n mask_addr: 4294967295\nsign_in_count:\n- 1535\n- 1536\n 3072 \N 189.186.234.15 06f9f67a-bd60-40f3-9c91-2b28da7ded95 2020-03-23 19:44:08.423585 32515 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qpWKsYRTHGQpGyAmkPEm\n- pGsxv-11t1QpBPuy4SzU\n 3073 \N 189.186.234.15 06f9f67a-bd60-40f3-9c91-2b28da7ded95 2020-03-23 19:44:08.443208 32516 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-21 19:08:02.821725000 Z\n- &1 2020-03-22 01:45:18.396774000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-23 21:21:48.101931615 Z\nsign_in_count:\n- 512\n- 513\n 1029 \N 187.149.51.37 b9b9390e-c151-4031-9683-6521c6f6c65f 2020-03-23 21:21:48.142895 32517 2 User \N \N 2 User \N update ---\nunique_session_id:\n- gBhJST_S8Y1L77iiG8zP\n- DpA2c6CfZMKXY-BWdw6N\n 1030 \N 187.149.51.37 b9b9390e-c151-4031-9683-6521c6f6c65f 2020-03-23 21:21:48.172351 32518 920 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.836E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 836.0 187.149.51.37 823de94c-05b7-4620-9c49-7d81e52f2857 2020-03-23 21:22:04.178208 32519 3259 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 920\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 2286\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1133 187.149.51.37 443f7ca3-e935-4104-b416-c29b8b0003ca 2020-03-23 21:22:45.862211 32520 2286 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.51.37 1d2b1cae-048b-4392-bb98-f934430232ef 2020-03-23 21:22:46.962613 32521 921 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.755E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 755.0 189.186.145.62 33086abf-9d56-4ecf-8e35-77249405cbda 2020-03-23 22:03:43.184657 32522 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-22 21:30:31.808559000 Z\n- &1 2020-03-23 19:44:08.415426000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-23 23:08:35.380112127 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537763\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143439\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143439\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 1536\n- 1537\n 3074 \N 189.186.145.62 0d6ed110-4f68-4c95-96f3-78f16ff20c10 2020-03-23 23:08:35.398537 32523 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pGsxv-11t1QpBPuy4SzU\n- kjYdHXJNVxrAkAK-yafu\n 3075 \N 189.186.145.62 0d6ed110-4f68-4c95-96f3-78f16ff20c10 2020-03-23 23:08:35.421627 32524 3260 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 920\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.319E3\nmove_type: '1'\nsale_id: 2272\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.319E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1128 187.149.51.37 1c39c132-be86-4205-b7a5-f319febb72ad 2020-03-24 00:46:21.172156 32525 2272 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.51.37 629b0f74-64d9-4ae0-a3af-a8b85a8fb831 2020-03-24 00:47:51.016561 32526 309 Customer \N \N 27 User \N create ---\nnick_name: JENNIFER ANGULO\nphone: "(667) 235-1609"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JENNIFER ANGULO fue registrado. 187.149.51.37 560255a0-1776-40c3-9367-bf0efba41019 2020-03-24 01:38:30.002755 32527 310 Customer \N \N 27 User \N create ---\nnick_name: JENNIFER ANGULO\nphone: "(667) 235-1609"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JENNIFER ANGULO fue registrado. 187.149.51.37 1058da74-272e-42d6-be43-2f1fc14ef915 2020-03-24 01:38:30.093642 32528 311 Customer \N \N 27 User \N create ---\nnick_name: JENNIFER ANGULO\nphone: "(667) 235-1609"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JENNIFER ANGULO fue registrado. 187.149.51.37 13487eb7-ae5a-4402-a981-3b4933525cbd 2020-03-24 01:38:36.76894 32529 2408 Sale \N \N 27 User \N create ---\ncustomer_id: 309\nuser_id: 27\nopen_cash_register_id: 919\namount: !ruby/object:BigDecimal 18:0.659E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.659E3\nstatus: 0\ndate_sale: 2020-03-23\nsaletype: 2\nseller_id: 19\nsale_code: PV2-V-902\nexpiration_date: 2020-04-27\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.37 c44fa265-f7e0-4472-8b78-3e587d705759 2020-03-24 01:39:49.582788 32530 1678 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.51.37 c44fa265-f7e0-4472-8b78-3e587d705759 2020-03-24 01:39:49.609405 32531 3261 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 919\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.259E3\nmove_type: '1'\nsale_id: 2408\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV2-V-902\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.259E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-902 187.149.51.37 f12aa0b2-02d4-49dc-91df-03153350db22 2020-03-24 01:40:02.149644 32532 2408 Sale \N \N 27 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.51.37 b743f1ac-5a94-4d10-8781-1bd8563a6833 2020-03-24 01:40:11.985431 32533 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-03-21 02:08:39.551703000 Z\n- &1 2020-03-21 18:59:21.858795000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-24 02:01:00.093798136 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 59\n- 60\n 121 \N 189.186.145.62 7fd744f6-1e2e-4de8-8c1b-5d16914c6494 2020-03-24 02:01:00.101721 32534 18 User \N \N 18 User \N update ---\nunique_session_id:\n- UDYZ9smAi9Cz9RBrgF5_\n- hxUFC9Y2sezVjxqikRRX\n 122 \N 189.186.145.62 7fd744f6-1e2e-4de8-8c1b-5d16914c6494 2020-03-24 02:01:00.118106 32535 942 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 921\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.755E3\nphysical_cash: !ruby/object:BigDecimal 18:0.755E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.145.62 7f6f1b0d-b3b3-47ce-974c-d5768750dce5 2020-03-24 02:01:28.773326 32536 921 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.145.62 7f6f1b0d-b3b3-47ce-974c-d5768750dce5 2020-03-24 02:01:28.971873 32537 943 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 919\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.110599E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.5E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.51.37 f2bd5d9d-3080-4613-b903-734ded1449f2 2020-03-24 02:27:19.052599 32538 919 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.37 f2bd5d9d-3080-4613-b903-734ded1449f2 2020-03-24 02:27:19.065433 32539 944 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 920\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.918E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.754E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1754E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.51.37 cf27f1d7-ac3f-4864-b88a-37f69eaa4f4e 2020-03-24 02:28:11.883115 32540 920 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.37 cf27f1d7-ac3f-4864-b88a-37f69eaa4f4e 2020-03-24 02:28:11.896181 32541 27 User \N \N 27 User \N update ---\nlast_sign_in_at:\n- 2020-03-22 21:43:00.610480000 Z\n- &1 2020-03-23 18:23:54.448554000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-24 18:41:12.496805459 Z\nsign_in_count:\n- 137\n- 138\n 276 \N 187.149.51.37 cc1211cc-0ae5-48c1-99e4-a3cf1f94349e 2020-03-24 18:41:12.523369 32542 27 User \N \N 27 User \N update ---\nunique_session_id:\n- xy2_9NRAJ6Kcg6GLzcKu\n- Xz7wyH-AcgFMxoZnP9_c\n 277 \N 187.149.51.37 cc1211cc-0ae5-48c1-99e4-a3cf1f94349e 2020-03-24 18:41:12.544014 32543 922 OpenCashRegister \N \N 27 User \N create ---\ncash_register_id: 2\nuser_id: 27\ninitial_cash: !ruby/object:BigDecimal 18:0.5E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 500.0 187.149.51.37 6cad0e90-c0cd-480c-956e-a1aef15ff4a8 2020-03-24 18:41:58.41973 32544 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-23 19:44:08.415426000 Z\n- &1 2020-03-23 23:08:35.380112000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-24 20:39:54.445321411 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143439\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143439\n mask_addr: 4294967295\nsign_in_count:\n- 1537\n- 1538\n 3076 \N 189.186.234.15 b26e15c9-9754-47c9-b562-67fdbb59dcd3 2020-03-24 20:39:54.452475 32545 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kjYdHXJNVxrAkAK-yafu\n- kWpg5LBEeM3vXFcsux5y\n 3077 \N 189.186.234.15 b26e15c9-9754-47c9-b562-67fdbb59dcd3 2020-03-24 20:39:54.481974 32546 2409 Sale \N \N 27 User \N create ---\ncustomer_id: 1\nuser_id: 27\nopen_cash_register_id: 922\namount: !ruby/object:BigDecimal 18:0.1588E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1588E4\nstatus: 0\ndate_sale: 2020-03-24\nsaletype: 1\nseller_id: 19\nsale_code: PV2-V-903\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.51.37 52b5bccd-1324-4e23-927b-187dadaee33e 2020-03-24 22:40:17.971792 32547 1672 AvailableProduct \N \N 27 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.51.37 52b5bccd-1324-4e23-927b-187dadaee33e 2020-03-24 22:40:18.000974 32550 3262 CashRegistersMove \N \N 27 User \N create ---\nopen_cash_register_id: 922\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1588E4\nmove_type: '1'\nsale_id: 2409\ncardnumber: 9482\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-903\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-903 187.149.51.37 18f16dce-6037-4a43-95ec-81b4095f2a3b 2020-03-24 22:40:44.393132 32551 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-22 01:45:18.396774000 Z\n- &1 2020-03-23 21:21:48.101931000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-24 22:52:31.054427041 Z\nsign_in_count:\n- 513\n- 514\n 1031 \N 187.149.51.37 37547e18-c85f-4b5e-8061-d9de920a0949 2020-03-24 22:52:31.079653 32552 2 User \N \N 2 User \N update ---\nunique_session_id:\n- DpA2c6CfZMKXY-BWdw6N\n- Uiqx7uWsq3hmdeq9YSG3\n 1032 \N 187.149.51.37 37547e18-c85f-4b5e-8061-d9de920a0949 2020-03-24 22:52:31.099643 32553 923 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.754E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 754.0 187.149.51.37 a26e109a-2e12-4b92-a78e-b1cd2a73f8de 2020-03-24 23:14:22.480765 32554 3263 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 658\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 1626\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CREDITO SAM\n 1 \N 187.149.51.37 44e43322-0e96-4928-bb66-c79d4d014f33 2020-03-24 23:16:04.2253 32555 3263 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 658\n- 923\n 2 movimiento de efectivo por venta con folio PV1-V-831 187.149.51.37 44e43322-0e96-4928-bb66-c79d4d014f33 2020-03-24 23:16:04.250092 32556 945 CashOut \N \N 27 User \N create ---\nopen_cash_register_id: 922\nuser_id: 27\namount_in: !ruby/object:BigDecimal 18:0.1588E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 15\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.529E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1229E4\nobservations: KEYLA SE CONFUNDIO AL HACER EL CORTE EL 23 YA QUEDO BIEN\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.51.37 8e19a546-fbeb-4ee3-b4ab-16eb0133ace8 2020-03-25 02:01:01.248373 32557 922 OpenCashRegister \N \N 27 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.37 8e19a546-fbeb-4ee3-b4ab-16eb0133ace8 2020-03-25 02:01:01.261479 32558 946 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 923\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.754E3\nphysical_cash: !ruby/object:BigDecimal 18:0.754E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.51.37 fd307de1-adbf-4536-a95d-4cd2330501f0 2020-03-25 02:10:35.444861 32559 923 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.51.37 fd307de1-adbf-4536-a95d-4cd2330501f0 2020-03-25 02:10:35.458765 32560 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-23 17:28:27.705844000 Z\n- &1 2020-03-23 19:37:52.680685000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-25 23:47:55.405198746 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934162\n mask_addr: 4294967295\nsign_in_count:\n- 203\n- 204\n 409 \N 200.68.134.210 3140de66-2b0b-434b-8614-2562d23baf10 2020-03-25 23:47:55.434217 32561 21 User \N \N 21 User \N update ---\nunique_session_id:\n- DbxFoS_Gqzy5w2--oh7x\n- pimP2sVHfUQ7q7yuBTGE\n 410 \N 200.68.134.210 3140de66-2b0b-434b-8614-2562d23baf10 2020-03-25 23:47:55.461266 32562 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-23 19:37:52.680685000 Z\n- &1 2020-03-25 23:47:55.405198000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-26 19:00:11.150404190 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934162\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934162\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 204\n- 205\n 411 \N 189.186.145.62 44dacbef-0b64-446f-b50d-6f35fda4796d 2020-03-26 19:00:11.178255 32563 21 User \N \N 21 User \N update ---\nunique_session_id:\n- pimP2sVHfUQ7q7yuBTGE\n- LWBVKDojR4z2GVPzxxNw\n 412 \N 189.186.145.62 44dacbef-0b64-446f-b50d-6f35fda4796d 2020-03-26 19:00:11.200606 32564 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2020-03-10 23:52:47.259437000 Z\n- &1 2020-03-23 18:30:31.594184000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-26 19:02:36.055437453 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 71\n- 72\n 144 \N 189.186.145.62 e60ca8eb-0cbf-4cc2-9f0e-b79ac89ce19a 2020-03-26 19:02:36.061361 32565 26 User \N \N 26 User \N update ---\nunique_session_id:\n- 9wRkWzP7v-ya2JRRbEq_\n- 8SAybveLNZYrokDxQGde\n 145 \N 189.186.145.62 e60ca8eb-0cbf-4cc2-9f0e-b79ac89ce19a 2020-03-26 19:02:36.076185 32566 924 OpenCashRegister \N \N 26 User \N create ---\ncash_register_id: 2\nuser_id: 26\ninitial_cash: !ruby/object:BigDecimal 18:0.529E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 529.0 189.186.145.62 89f6a029-101d-40dc-9c62-e701e06d5bdb 2020-03-26 19:02:53.281845 32567 2410 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 924\namount: !ruby/object:BigDecimal 18:0.519E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.519E3\nstatus: 0\ndate_sale: 2020-03-26\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-904\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 f4219375-5a32-4876-8a55-1238913bf9de 2020-03-26 19:03:11.100763 32568 1680 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.145.62 f4219375-5a32-4876-8a55-1238913bf9de 2020-03-26 19:03:11.127995 32569 2410 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.145.62 595683c8-22ac-43a9-8dea-ef72e0d22980 2020-03-26 19:03:25.997655 32570 3264 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 924\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.519E3\nmove_type: '1'\nsale_id: 2410\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-904\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: INSTAGRAM\n 1 movimiento de efectivo por venta con folio PV2-V-904 189.186.145.62 595683c8-22ac-43a9-8dea-ef72e0d22980 2020-03-26 19:03:26.024404 32596 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.57E2\n- !ruby/object:BigDecimal 18:0.56E2\n 20 \N 189.186.145.62 395c7fb6-ce7a-4dd6-b8f2-ceefe4d0baab 2020-03-28 19:01:36.185752 32597 954 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.145.62 395c7fb6-ce7a-4dd6-b8f2-ceefe4d0baab 2020-03-28 19:01:36.208438 32571 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-25 23:47:55.405198000 Z\n- &1 2020-03-26 19:00:11.150404000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-26 19:03:56.744573167 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934162\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 205\n- 206\n 413 \N 189.186.145.62 7294a261-2e6b-4510-98f7-253cb258878e 2020-03-26 19:03:56.751156 32572 21 User \N \N 21 User \N update ---\nunique_session_id:\n- LWBVKDojR4z2GVPzxxNw\n- ZV9nn8ewquqjW86tzRg_\n 414 \N 189.186.145.62 7294a261-2e6b-4510-98f7-253cb258878e 2020-03-26 19:03:56.77308 32573 925 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.755E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 755.0 189.186.145.62 7dcfd571-7988-4c30-9bd2-d6f587d7b7fc 2020-03-26 19:14:46.457755 32574 24 Seller \N \N 21 User \N create ---\npointsale_id: 3\nname: INSTAGRAM\nlast_name: INTERNET\nstatus: 1\n 1 El vendedor INSTAGRAM INTERNET fue registrado. 189.186.145.62 f00e394a-9f3c-4f9b-b0af-5fcd615575c9 2020-03-26 19:15:28.284115 32575 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-03-10 21:42:50.063864000 Z\n- &1 2020-03-23 18:23:50.701541000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-26 19:15:52.489981517 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\nsign_in_count:\n- 73\n- 74\n 148 \N 189.186.145.62 6a26bc73-2f1a-40f3-ba45-8a1f622d6e10 2020-03-26 19:15:52.495991 32576 25 User \N \N 25 User \N update ---\nunique_session_id:\n- ZTRYXfzZYtra1yAHaCfG\n- uuhruZTZsUGTzvRwAHRC\n 149 \N 189.186.145.62 6a26bc73-2f1a-40f3-ba45-8a1f622d6e10 2020-03-26 19:15:52.509033 32577 25 Seller \N \N 25 User \N create ---\npointsale_id: 1\nname: INSTAGRAM\nlast_name: INTERNET\nstatus: 1\n 1 El vendedor INSTAGRAM INTERNET fue registrado. 189.186.145.62 18d21b50-a820-4447-a889-bd7d494aca06 2020-03-26 19:16:10.997569 32578 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2020-03-23 18:30:31.594184000 Z\n- &1 2020-03-26 19:02:36.055437000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-26 19:16:23.662990248 Z\nsign_in_count:\n- 72\n- 73\n 146 \N 189.186.145.62 f39b02d9-1ca0-4a9a-9332-38e307f9b2e7 2020-03-26 19:16:23.670011 32579 26 User \N \N 26 User \N update ---\nunique_session_id:\n- 8SAybveLNZYrokDxQGde\n- oNfibDctbZBfEZ6ujxAA\n 147 \N 189.186.145.62 f39b02d9-1ca0-4a9a-9332-38e307f9b2e7 2020-03-26 19:16:23.684556 32580 26 Seller \N \N 26 User \N create ---\npointsale_id: 2\nname: INSTAGRAM\nlast_name: INTERNET\nstatus: 1\n 1 El vendedor INSTAGRAM INTERNET fue registrado. 189.186.145.62 07235763-7b22-4991-928e-abe7a6bdec4f 2020-03-26 19:16:37.86128 32581 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-26 19:00:11.150404000 Z\n- &1 2020-03-26 19:03:56.744573000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-26 19:17:29.235694547 Z\nsign_in_count:\n- 206\n- 207\n 415 \N 189.186.145.62 17d1d13a-dc67-426f-9d9c-56013c6abf30 2020-03-26 19:17:29.242353 32582 21 User \N \N 21 User \N update ---\nunique_session_id:\n- ZV9nn8ewquqjW86tzRg_\n- PdgXW2pvVMCkcz4W7hDJ\n 416 \N 189.186.145.62 17d1d13a-dc67-426f-9d9c-56013c6abf30 2020-03-26 19:17:29.258409 32583 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-23 23:08:35.380112000 Z\n- &1 2020-03-24 20:39:54.445321000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-26 20:55:45.802887032 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143439\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143439\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537947\n mask_addr: 4294967295\nsign_in_count:\n- 1538\n- 1539\n 3078 \N 177.228.111.91 c26f06c1-fbf6-42e9-b1e3-6e914e8260d1 2020-03-26 20:55:45.80999 32584 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kWpg5LBEeM3vXFcsux5y\n- cAbZyPx2pdxPq9yDqte7\n 3079 \N 177.228.111.91 c26f06c1-fbf6-42e9-b1e3-6e914e8260d1 2020-03-26 20:55:45.827037 32585 947 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 925\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.755E3\nphysical_cash: !ruby/object:BigDecimal 18:0.755E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.145.62 d285d7f3-e96b-4a23-840e-409720826b7a 2020-03-27 01:14:59.329328 32586 925 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.145.62 d285d7f3-e96b-4a23-840e-409720826b7a 2020-03-27 01:14:59.353934 32587 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-24 20:39:54.445321000 Z\n- &1 2020-03-26 20:55:45.802887000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-27 18:22:36.843226801 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143439\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537947\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537947\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945523\n mask_addr: 4294967295\nsign_in_count:\n- 1539\n- 1540\n 3080 \N 200.68.179.51 16178469-5780-4785-8aee-110782e56edc 2020-03-27 18:22:36.871375 32588 4 User \N \N 4 User \N update ---\nunique_session_id:\n- cAbZyPx2pdxPq9yDqte7\n- ZwmCDdhvRvvnuv5HJ1iQ\n 3081 \N 200.68.179.51 16178469-5780-4785-8aee-110782e56edc 2020-03-27 18:22:36.896348 32589 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-26 19:03:56.744573000 Z\n- &1 2020-03-26 19:17:29.235694000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-27 21:40:04.617540415 Z\nsign_in_count:\n- 207\n- 208\n 417 \N 189.186.145.62 7505a5eb-cf15-4372-a315-8f9201775793 2020-03-27 21:40:04.623054 32590 21 User \N \N 21 User \N update ---\nunique_session_id:\n- PdgXW2pvVMCkcz4W7hDJ\n- aK2v_TyfVMqzVEpkcdsi\n 418 \N 189.186.145.62 7505a5eb-cf15-4372-a315-8f9201775793 2020-03-27 21:40:04.635939 32591 926 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.755E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 755.0 189.186.145.62 b71659bb-5b52-4342-8a63-e4bfc046aafc 2020-03-27 21:40:28.119284 32592 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-26 19:17:29.235694000 Z\n- &1 2020-03-27 21:40:04.617540000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-28 18:24:55.289130728 Z\nsign_in_count:\n- 208\n- 209\n 419 \N 189.186.145.62 bcd5bf1b-a75c-4433-98c4-d335ab856ced 2020-03-28 18:24:55.317197 32593 21 User \N \N 21 User \N update ---\nunique_session_id:\n- aK2v_TyfVMqzVEpkcdsi\n- AtQsQVU2aHdUJD5nh567\n 420 \N 189.186.145.62 bcd5bf1b-a75c-4433-98c4-d335ab856ced 2020-03-28 18:24:55.340584 32594 2411 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 926\namount: !ruby/object:BigDecimal 18:0.124024E4\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1247E4\nstatus: 0\ndate_sale: 2020-03-28\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-320\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.145.62 395c7fb6-ce7a-4dd6-b8f2-ceefe4d0baab 2020-03-28 19:01:36.124481 32595 839 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.145.62 395c7fb6-ce7a-4dd6-b8f2-ceefe4d0baab 2020-03-28 19:01:36.151417 32599 3265 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 926\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1247E4\nmove_type: '1'\nsale_id: 2411\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-320\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.13E4\nchange: !ruby/object:BigDecimal 18:0.53E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-320 189.186.145.62 6a4c4a42-ce0d-45fe-b799-9761370ffb24 2020-03-28 19:02:10.206107 32600 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-26 20:55:45.802887000 Z\n- &1 2020-03-27 18:22:36.843226000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-28 19:58:37.225059040 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537947\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945523\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945523\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537507\n mask_addr: 4294967295\nsign_in_count:\n- 1540\n- 1541\n 3082 \N 177.228.109.163 7f407ada-fddb-412e-84dd-600abdc634ad 2020-03-28 19:58:37.232249 32601 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZwmCDdhvRvvnuv5HJ1iQ\n- Movb8e2gXoeT7RYMPqDz\n 3083 \N 177.228.109.163 7f407ada-fddb-412e-84dd-600abdc634ad 2020-03-28 19:58:37.24932 32602 3266 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 926\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.598E3\nmove_type: '1'\nsale_id: 2356\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-298 189.186.145.62 8903fbea-e20f-4e8e-91f0-f498cbc4a3ce 2020-03-28 23:43:09.335779 32603 2356 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.145.62 9aa04e16-c47f-4bf6-b378-e057f60e0223 2020-03-28 23:43:17.755943 32604 948 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 926\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1845E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.19E4\ncash_fund: !ruby/object:BigDecimal 18:0.7E3\nphysical_cash: !ruby/object:BigDecimal 18:0.26E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.145.62 263cb833-ae48-4db1-b7ce-a6c7b2a9357b 2020-03-29 01:08:28.506018 32605 926 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.145.62 263cb833-ae48-4db1-b7ce-a6c7b2a9357b 2020-03-29 01:08:28.519852 32606 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2020-03-26 19:02:36.055437000 Z\n- &1 2020-03-26 19:16:23.662990000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-03-31 19:13:15.360127218 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147125372\n mask_addr: 4294967295\nsign_in_count:\n- 73\n- 74\n 148 \N 187.149.82.124 dafb8766-4b63-47d2-8eef-7521c580eca2 2020-03-31 19:13:15.389198 32607 26 User \N \N 26 User \N update ---\nunique_session_id:\n- oNfibDctbZBfEZ6ujxAA\n- p5qYr6wnkYekaj6gbVwS\n 149 \N 187.149.82.124 dafb8766-4b63-47d2-8eef-7521c580eca2 2020-03-31 19:13:15.411555 32608 3267 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 924\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 2346\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.299E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-888 187.149.82.124 842343b3-7df6-462a-b67f-e1291fc810ac 2020-03-31 19:13:56.518841 32609 2346 Sale \N \N 26 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.82.124 d987a513-b5dc-480f-8e1a-3f3e53e555e7 2020-03-31 19:13:58.932379 32610 2412 Sale \N \N 26 User \N create ---\ncustomer_id: 1\nuser_id: 26\nopen_cash_register_id: 924\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-03-31\nsaletype: 1\nseller_id: 15\nsale_code: PV2-V-905\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.82.124 4c023dd9-170c-4a8f-a09b-5afd62511e5c 2020-03-31 19:14:45.316667 32611 367 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.27E2\n- !ruby/object:BigDecimal 18:0.26E2\n 30 \N 187.149.82.124 4c023dd9-170c-4a8f-a09b-5afd62511e5c 2020-03-31 19:14:45.344582 32612 2412 Sale \N \N 26 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.82.124 e5361b7f-de7a-4955-8e2a-7a43ece2f8d1 2020-03-31 19:14:49.087057 32613 3268 CashRegistersMove \N \N 26 User \N create ---\nopen_cash_register_id: 924\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 2412\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-905\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E2\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-905 187.149.82.124 e5361b7f-de7a-4955-8e2a-7a43ece2f8d1 2020-03-31 19:14:49.10657 32614 949 CashOut \N \N 26 User \N create ---\nopen_cash_register_id: 924\nuser_id: 26\namount_in: !ruby/object:BigDecimal 18:0.867E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 26\nreceived_cash: !ruby/object:BigDecimal 18:0.35E3\ncash_fund: !ruby/object:BigDecimal 18:0.527E3\nphysical_cash: !ruby/object:BigDecimal 18:0.877E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 187.149.82.124 ea916fbf-5847-4dee-9817-c66a8a74db91 2020-03-31 19:16:02.295074 32615 924 OpenCashRegister \N \N 26 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.82.124 ea916fbf-5847-4dee-9817-c66a8a74db91 2020-03-31 19:16:02.312209 32616 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-27 21:40:04.617540000 Z\n- &1 2020-03-28 18:24:55.289130000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-04-04 19:55:37.154769595 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147108719\n mask_addr: 4294967295\nsign_in_count:\n- 209\n- 210\n 421 \N 187.149.17.111 e99c97bf-7b48-42b1-8a6f-d4b65177df25 2020-04-04 19:55:37.182356 32617 21 User \N \N 21 User \N update ---\nunique_session_id:\n- AtQsQVU2aHdUJD5nh567\n- KSS8pdEUp6ZNxzAc1SFw\n 422 \N 187.149.17.111 e99c97bf-7b48-42b1-8a6f-d4b65177df25 2020-04-04 19:55:37.206238 32618 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-23 21:21:48.101931000 Z\n- &1 2020-03-24 22:52:31.054427000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-04-05 02:52:57.567516142 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539340\n mask_addr: 4294967295\nsign_in_count:\n- 514\n- 515\n 1033 \N 177.228.116.204 409ee8ed-9366-4085-b3d1-03360f311b08 2020-04-05 02:52:57.573822 32619 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Uiqx7uWsq3hmdeq9YSG3\n- yfaFX5rwxPWLf4XGyEW7\n 1034 \N 177.228.116.204 409ee8ed-9366-4085-b3d1-03360f311b08 2020-04-05 02:52:57.589127 32620 927 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.754E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 754.0 177.228.116.204 3fe3ce78-9658-4091-a0ca-632e782ade6c 2020-04-05 02:54:45.186779 32621 312 Customer \N \N 2 User \N create ---\nnick_name: 'Cristel '\nphone: "(667) 258-2561"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente Cristel fue registrado. 177.228.116.204 e3e5cd4f-c32f-4762-a88a-9cda159be413 2020-04-05 02:58:20.191079 32622 2413 Sale \N \N 2 User \N create ---\ncustomer_id: 312\nuser_id: 2\nopen_cash_register_id: 927\namount: !ruby/object:BigDecimal 18:0.3198E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3198E4\nstatus: 0\ndate_sale: 2020-04-04\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1186\nexpiration_date: 2020-05-09\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.116.204 fee27739-d0d7-4333-8acb-893ef47a8bcc 2020-04-05 03:02:04.552335 32623 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 177.228.116.204 fee27739-d0d7-4333-8acb-893ef47a8bcc 2020-04-05 03:02:04.581585 32624 2413 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1186 cancelada. 177.228.116.204 4a408fc9-fd9e-4e7f-9c73-a772be0a1f1c 2020-04-05 03:06:40.983432 32625 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 177.228.116.204 4a408fc9-fd9e-4e7f-9c73-a772be0a1f1c 2020-04-05 03:06:41.007047 32626 2414 Sale \N \N 2 User \N create ---\ncustomer_id: 312\nuser_id: 2\nopen_cash_register_id: 927\namount: !ruby/object:BigDecimal 18:0.3198E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3198E4\nstatus: 0\ndate_sale: 2020-04-04\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1187\nexpiration_date: 2020-05-09\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.116.204 4310e120-8941-4b87-b0d7-ed375eec44fa 2020-04-05 03:07:35.823556 32627 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 177.228.116.204 4310e120-8941-4b87-b0d7-ed375eec44fa 2020-04-05 03:07:35.848855 32628 2414 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1187 cancelada. 177.228.116.204 c3b5d389-37c4-4f7c-bcb7-efa0fb2248b2 2020-04-05 03:10:53.618668 32629 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 177.228.116.204 c3b5d389-37c4-4f7c-bcb7-efa0fb2248b2 2020-04-05 03:10:53.641132 32630 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-27 18:22:36.843226000 Z\n- &1 2020-03-28 19:58:37.225059000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-04-06 19:20:47.373373403 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945523\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537507\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147108719\n mask_addr: 4294967295\nsign_in_count:\n- 1541\n- 1542\n 3084 \N 187.149.17.111 affc6384-2be5-4b7a-8d50-02b49973085a 2020-04-06 19:20:47.401248 32631 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Movb8e2gXoeT7RYMPqDz\n- _zLTVUzLGxYtf6F9CK4B\n 3085 \N 187.149.17.111 affc6384-2be5-4b7a-8d50-02b49973085a 2020-04-06 19:20:47.42556 32632 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-03-24 22:52:31.054427000 Z\n- &1 2020-04-05 02:52:57.567516000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-04-08 21:46:05.975053136 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539340\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539340\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539916\n mask_addr: 4294967295\nsign_in_count:\n- 515\n- 516\n 1035 \N 177.228.119.12 83cb37ad-07d8-454c-8af2-8dbf438216ea 2020-04-08 21:46:06.003144 32633 2 User \N \N 2 User \N update ---\nunique_session_id:\n- yfaFX5rwxPWLf4XGyEW7\n- h6DpE6ZsJRccrqBSvGLv\n 1036 \N 177.228.119.12 83cb37ad-07d8-454c-8af2-8dbf438216ea 2020-04-08 21:46:06.026477 32634 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-04-05 02:52:57.567516000 Z\n- &1 2020-04-08 21:46:05.975053000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-04-23 00:15:21.015236340 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539340\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539916\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539916\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534893\n mask_addr: 4294967295\nsign_in_count:\n- 516\n- 517\n 1037 \N 177.228.99.109 813f11e4-db23-4f2c-9466-35274f61b9a6 2020-04-23 00:15:21.044012 32635 2 User \N \N 2 User \N update ---\nunique_session_id:\n- h6DpE6ZsJRccrqBSvGLv\n- 43epV1PedbgxnsTxMzy2\n 1038 \N 177.228.99.109 813f11e4-db23-4f2c-9466-35274f61b9a6 2020-04-23 00:15:21.06789 32636 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-03-28 19:58:37.225059000 Z\n- &1 2020-04-06 19:20:47.373373000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-04-24 20:28:23.046565023 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147108719\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147108719\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112622\n mask_addr: 4294967295\nsign_in_count:\n- 1542\n- 1543\n 3086 \N 187.149.32.174 9d689c37-6b89-46c9-90e0-3aa683dde2e8 2020-04-24 20:28:23.075355 32637 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _zLTVUzLGxYtf6F9CK4B\n- ufEzf4xKohX7tFEcf8Fz\n 3087 \N 187.149.32.174 9d689c37-6b89-46c9-90e0-3aa683dde2e8 2020-04-24 20:28:23.100788 32638 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-04-06 19:20:47.373373000 Z\n- &1 2020-04-24 20:28:23.046565000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-04-27 20:08:31.063948211 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147108719\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112622\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112622\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537179\n mask_addr: 4294967295\nsign_in_count:\n- 1543\n- 1544\n 3088 \N 177.228.108.91 be59b894-38f7-4e73-91bf-65b35220fa3d 2020-04-27 20:08:31.095434 32639 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ufEzf4xKohX7tFEcf8Fz\n- ZhaTMghAs1PMRJzNeCNR\n 3089 \N 177.228.108.91 be59b894-38f7-4e73-91bf-65b35220fa3d 2020-04-27 20:08:31.125518 32640 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-04-24 20:28:23.046565000 Z\n- &1 2020-04-27 20:08:31.063948000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-04-27 20:08:31.554384216 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112622\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537179\n mask_addr: 4294967295\nsign_in_count:\n- 1544\n- 1545\n 3090 \N 177.228.108.91 e5540fdd-ca7f-437d-94d1-aa29375300d7 2020-04-27 20:08:31.560309 32641 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZhaTMghAs1PMRJzNeCNR\n- 46sW4vRRP6kk8-zABsEU\n 3091 \N 177.228.108.91 e5540fdd-ca7f-437d-94d1-aa29375300d7 2020-04-27 20:08:31.575101 32642 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-04-08 21:46:05.975053000 Z\n- &1 2020-04-23 00:15:21.015236000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-04-28 00:11:26.452369859 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539916\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534893\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534893\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534333\n mask_addr: 4294967295\nsign_in_count:\n- 517\n- 518\n 1039 \N 177.228.97.61 46b5310b-dc29-4bd7-8027-15b429ab6764 2020-04-28 00:11:26.459524 32643 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 43epV1PedbgxnsTxMzy2\n- sY9zzukomxy3zycuwSF5\n 1040 \N 177.228.97.61 46b5310b-dc29-4bd7-8027-15b429ab6764 2020-04-28 00:11:26.490359 32644 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-04-27 20:08:31.063948000 Z\n- &1 2020-04-27 20:08:31.554384000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-04-28 22:46:39.648004112 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537179\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145211\n mask_addr: 4294967295\nsign_in_count:\n- 1545\n- 1546\n 3092 \N 189.186.240.251 4bb01929-cc31-4112-95da-11ea7e7c9a14 2020-04-28 22:46:39.676727 32645 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 46sW4vRRP6kk8-zABsEU\n- KLuf2bTs6RvevN2fX9q1\n 3093 \N 189.186.240.251 4bb01929-cc31-4112-95da-11ea7e7c9a14 2020-04-28 22:46:39.701402 32646 1000 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1000'\n is_parent: false\n sku: JUM-1000\n name: VST-0108\n description: JUMPERDURAZNO FLOREADO APECH\n price_base: '285.6'\n price_sale: '729.0'\n img_product: VST0108_F.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '1'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001000'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 02:36:56.998819'\n updated_at: &12 2020-04-29 00:14:37.670018589 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1000'\n sku: JUM-1000\n name: VST-0108\n description: JUMPERDURAZNO FLOREADO APECH\n price_base: '285.60'\n price_sale: '729.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 02:36:56.998819'\n updated_at: '2020-02-19 02:36:57.046844'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001000'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '1'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1000'\n type: *3\n value: 1000\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: JUM-1000\n type: *7\n value: JUM-1000\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0108\n type: *8\n value: VST-0108\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: JUMPERDURAZNO FLOREADO APECH\n type: *6\n value: JUMPERDURAZNO FLOREADO APECH\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '285.6'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2856E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '729.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.729E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: VST0108_F.jpg\n type: *2\n value: VST0108_F.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '1'\n type: *3\n value: 1\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001000'\n type: *2\n value: '0001000'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 02:36:56.998819'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- VST0108_F.jpg\n 3 El producto JUM-1000 fue modificado. 189.186.240.251 d90382b1-1fd0-4935-abd4-320c8eaead17 2020-04-29 00:14:37.71866 32647 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-03-14 18:11:33.771600000 Z\n- &1 2020-03-14 22:37:01.551814000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-04-29 00:28:39.318569722 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537811\n mask_addr: 4294967295\nsign_in_count:\n- 109\n- 110\n 220 \N 177.228.110.211 eb331843-24e3-4adb-b386-935532050582 2020-04-29 00:28:39.355735 32648 9 User \N \N 9 User \N update ---\nunique_session_id:\n- F7th8o1cioL8-MNxFHvw\n- xQLhppQJEVTKWv3bKMrP\n 221 \N 177.228.110.211 eb331843-24e3-4adb-b386-935532050582 2020-04-29 00:28:39.381741 32649 1022 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1022'\n is_parent: false\n sku: VES-1022\n name: VST-0110\n description: VESTIDO FLORES ROJAS APEACH\n price_base: '340.0'\n price_sale: '869.0'\n img_product: VST0110_2.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001022'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-25 00:04:42.867488'\n updated_at: &12 2020-04-29 00:32:46.082193525 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1022'\n sku: VES-1022\n name: VST-0110\n description: VESTIDO FLORES ROJAS APEACH\n price_base: '340.00'\n price_sale: '869.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-25 00:04:42.867488'\n updated_at: '2020-02-25 00:04:42.907299'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001022'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1022'\n type: *3\n value: 1022\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1022\n type: *7\n value: VES-1022\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0110\n type: *8\n value: VST-0110\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO FLORES ROJAS APEACH\n type: *6\n value: VESTIDO FLORES ROJAS APEACH\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '340.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.34E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '869.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.869E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: VST0110_2.jpg\n type: *2\n value: VST0110_2.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001022'\n type: *2\n value: '0001022'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-25 00:04:42.867488'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- VST0110_2.jpg\n 3 El producto VES-1022 fue modificado. 189.186.240.251 c07198cd-877d-43c5-b322-cdee824ed32e 2020-04-29 00:32:46.12204 32650 3269 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 895\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2341\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '150420'\n 1 \N 177.228.110.211 fcf7e744-ab4f-4bb5-bad1-4da6c0092630 2020-04-29 00:40:16.16664 32651 2341 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.110.211 fcf7e744-ab4f-4bb5-bad1-4da6c0092630 2020-04-29 00:40:16.19109 32652 3269 CashRegistersMove \N \N 9 User \N update ---\nopen_cash_register_id:\n- 895\n- 927\n 2 movimiento de efectivo por venta con folio PV2-V-887 177.228.110.211 fcf7e744-ab4f-4bb5-bad1-4da6c0092630 2020-04-29 00:40:16.207006 32653 1021 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1021'\n is_parent: false\n sku: CON-1021\n name: CON-0004\n description: CONJUNTO FALDA BOLSAS\n price_base: '720.0'\n price_sale: '1499.0'\n img_product: CON0004.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '10'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001021'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-24 23:58:32.501366'\n updated_at: &12 2020-04-29 00:51:56.121984745 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1021'\n sku: CON-1021\n name: CON-0004\n description: CONJUNTO FALDA BOLSAS\n price_base: '720.00'\n price_sale: '1499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-24 23:58:32.501366'\n updated_at: '2020-02-24 23:58:32.554396'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001021'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '10'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1021'\n type: *3\n value: 1021\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CON-1021\n type: *7\n value: CON-1021\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CON-0004\n type: *8\n value: CON-0004\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CONJUNTO FALDA BOLSAS\n type: *6\n value: CONJUNTO FALDA BOLSAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '720.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.72E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1499E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: CON0004.jpg\n type: *2\n value: CON0004.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '10'\n type: *3\n value: 10\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001021'\n type: *2\n value: '0001021'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-24 23:58:32.501366'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- CON0004.jpg\n 3 El producto CON-1021 fue modificado. 189.186.240.251 41615029-8f46-433c-a55b-381249b930f3 2020-04-29 00:51:56.160126 32654 975 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '975'\n is_parent: false\n sku: CON-975\n name: CON-0001\n description: CONJUNTO MUY MUY ROSA CON MOÑO\n price_base: '237.9'\n price_sale: '999.0'\n img_product: PHOTO-2020-04-28-14-28-52_-_copia.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '10'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000975'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-18 20:46:05.049705'\n updated_at: &12 2020-04-29 01:00:52.913662781 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '975'\n sku: CON-975\n name: CON-0001\n description: CONJUNTO MUY MUY ROSA CON MOÑO\n price_base: '237.90'\n price_sale: '999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-18 20:46:05.049705'\n updated_at: '2020-02-18 20:46:05.117289'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000975'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '10'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '975'\n type: *3\n value: 975\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CON-975\n type: *7\n value: CON-975\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CON-0001\n type: *8\n value: CON-0001\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CONJUNTO MUY MUY ROSA CON MOÑO\n type: *6\n value: CONJUNTO MUY MUY ROSA CON MOÑO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '237.9'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2379E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-04-28-14-28-52_-_copia.jpg\n type: *2\n value: PHOTO-2020-04-28-14-28-52_-_copia.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '10'\n type: *3\n value: 10\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000975'\n type: *2\n value: '0000975'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-18 20:46:05.049705'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2020-04-28-14-28-52_-_copia.jpg\n 3 El producto CON-975 fue modificado. 189.186.240.251 d75bbf36-a5c6-4577-87b4-e16c1b1b82af 2020-04-29 01:00:52.955683 32655 3270 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 690\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.498E3\nmove_type: '1'\nsale_id: 1795\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '310320'\n 1 \N 177.228.110.211 da70f99b-f08e-4990-98e8-0e45ddc56541 2020-04-29 01:40:24.683366 32656 1795 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.110.211 da70f99b-f08e-4990-98e8-0e45ddc56541 2020-04-29 01:40:24.730765 32657 3270 CashRegistersMove \N \N 9 User \N update ---\nopen_cash_register_id:\n- 690\n- 927\n 2 movimiento de efectivo por venta con folio PV1-V-901 177.228.110.211 da70f99b-f08e-4990-98e8-0e45ddc56541 2020-04-29 01:40:24.758672 32658 3271 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 885\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.2E4\nmove_type: '1'\nsale_id: 2312\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '220420'\n 1 \N 177.228.110.211 e8a1f9fe-f21a-479a-b544-7445ee2b4b66 2020-04-29 01:42:21.505093 32659 2312 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.110.211 e8a1f9fe-f21a-479a-b544-7445ee2b4b66 2020-04-29 01:42:21.528011 32660 2311 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 177.228.110.211 e8a1f9fe-f21a-479a-b544-7445ee2b4b66 2020-04-29 01:42:21.549932 32661 3271 CashRegistersMove \N \N 9 User \N update ---\nopen_cash_register_id:\n- 885\n- 927\n 2 movimiento de efectivo por venta con folio PV2-V-871 177.228.110.211 e8a1f9fe-f21a-479a-b544-7445ee2b4b66 2020-04-29 01:42:21.56136 32662 3272 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 702\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.498E3\nmove_type: '1'\nsale_id: 1914\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '455'\n 1 \N 177.228.110.211 c1486bb0-f8ca-4b95-8fd8-7e20eb69fcf0 2020-04-29 01:44:33.667169 32663 1914 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.110.211 c1486bb0-f8ca-4b95-8fd8-7e20eb69fcf0 2020-04-29 01:44:33.69502 32664 3272 CashRegistersMove \N \N 9 User \N update ---\nopen_cash_register_id:\n- 702\n- 927\n 2 movimiento de efectivo por venta con folio PV3-V-214 177.228.110.211 c1486bb0-f8ca-4b95-8fd8-7e20eb69fcf0 2020-04-29 01:44:33.712904 32665 3273 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 566\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.83101E3\nmove_type: '1'\nsale_id: 1384\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '55'\n 1 \N 177.228.110.211 94e59621-33ec-4c72-8a29-42cdaf578e6d 2020-04-29 01:45:41.381812 32666 1384 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.110.211 94e59621-33ec-4c72-8a29-42cdaf578e6d 2020-04-29 01:45:41.402377 32667 3273 CashRegistersMove \N \N 9 User \N update ---\nopen_cash_register_id:\n- 566\n- 927\n 2 movimiento de efectivo por venta con folio PV1-V-718 177.228.110.211 94e59621-33ec-4c72-8a29-42cdaf578e6d 2020-04-29 01:45:41.415402 32748 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6_YyHABRCcR_NeCzYrXh\n- "-hDS7xt3jpMLsoF9B5Pz"\n 3103 \N 189.186.240.251 75a6275b-7f02-4223-98c3-82985a67953f 2020-05-03 00:18:10.369571 32668 3274 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 280\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.298E3\nmove_type: '1'\nsale_id: 808\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '41122'\n 1 \N 177.228.110.211 13b862f3-55fe-4119-a3f0-836909e3c143 2020-04-29 01:46:30.642231 32669 808 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.110.211 13b862f3-55fe-4119-a3f0-836909e3c143 2020-04-29 01:46:30.66488 32670 3274 CashRegistersMove \N \N 9 User \N update ---\nopen_cash_register_id:\n- 280\n- 927\n 2 movimiento de efectivo por venta con folio PV1-V-457 177.228.110.211 13b862f3-55fe-4119-a3f0-836909e3c143 2020-04-29 01:46:30.678173 32671 996 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '996'\n is_parent: false\n sku: CON-996\n name: CON-0003\n description: CONJUNTO DE FALDA FLOREADO LATISTE\n price_base: '689.8'\n price_sale: '1699.0'\n img_product: CON0003.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '10'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000996'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 01:53:01.791433'\n updated_at: &12 2020-04-29 01:49:00.743897620 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '996'\n sku: CON-996\n name: CON-0003\n description: CONJUNTO DE FALDA FLOREADO LATISTE\n price_base: '689.80'\n price_sale: '1699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 01:53:01.791433'\n updated_at: '2020-02-19 01:53:01.833894'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000996'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '10'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '996'\n type: *3\n value: 996\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CON-996\n type: *7\n value: CON-996\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CON-0003\n type: *8\n value: CON-0003\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CONJUNTO DE FALDA FLOREADO LATISTE\n type: *6\n value: CONJUNTO DE FALDA FLOREADO LATISTE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '689.8'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6898E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1699E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: CON0003.jpg\n type: *2\n value: CON0003.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '10'\n type: *3\n value: 10\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000996'\n type: *2\n value: '0000996'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 01:53:01.791433'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- CON0003.jpg\n 3 El producto CON-996 fue modificado. 189.186.240.251 f6464f99-bf13-4d35-a1f2-3f38eba69dc9 2020-04-29 01:49:00.784627 32672 3275 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 658\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.36E4\nmove_type: '1'\nsale_id: 1626\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '12364'\n 1 \N 177.228.110.211 027bf227-923a-46b5-acee-87679db46029 2020-04-29 02:03:35.969377 32673 2333 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.110.211 027bf227-923a-46b5-acee-87679db46029 2020-04-29 02:03:35.995254 32674 1748 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.110.211 027bf227-923a-46b5-acee-87679db46029 2020-04-29 02:03:36.00954 32675 1626 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.110.211 027bf227-923a-46b5-acee-87679db46029 2020-04-29 02:03:36.025766 32676 3275 CashRegistersMove \N \N 9 User \N update ---\nopen_cash_register_id:\n- 658\n- 927\n 2 movimiento de efectivo por venta con folio PV1-V-831 177.228.110.211 027bf227-923a-46b5-acee-87679db46029 2020-04-29 02:03:36.039723 32677 3276 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 175\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1078E4\nmove_type: '1'\nsale_id: 529\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '45555'\n 1 \N 177.228.110.211 44b5f271-a676-4126-ad23-8c0738c1f873 2020-04-29 02:08:04.466505 32678 529 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.110.211 44b5f271-a676-4126-ad23-8c0738c1f873 2020-04-29 02:08:04.489863 32679 3276 CashRegistersMove \N \N 9 User \N update ---\nopen_cash_register_id:\n- 175\n- 927\n 2 movimiento de efectivo por venta con folio PV2-V-236 177.228.110.211 44b5f271-a676-4126-ad23-8c0738c1f873 2020-04-29 02:08:04.505799 32680 3277 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 138\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.44E3\nmove_type: '1'\nsale_id: 386\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '5555'\n 1 \N 177.228.110.211 229a124a-650c-42e4-ac70-a99b50469b25 2020-04-29 02:08:21.261483 32681 386 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.110.211 229a124a-650c-42e4-ac70-a99b50469b25 2020-04-29 02:08:21.284268 32682 3277 CashRegistersMove \N \N 9 User \N update ---\nopen_cash_register_id:\n- 138\n- 927\n 2 movimiento de efectivo por venta con folio PV1-V-203 177.228.110.211 229a124a-650c-42e4-ac70-a99b50469b25 2020-04-29 02:08:21.299394 32683 986 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '986'\n is_parent: false\n sku: CON-986\n name: CON-0002\n description: CONJUNTO NAVY MULTI CQBYCQ\n price_base: '420.9'\n price_sale: '1299.0'\n img_product: PHOTO-2020-04-28-14-28-53_-_copia.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '10'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000986'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 00:04:45.546308'\n updated_at: &12 2020-04-29 02:24:03.012112147 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '986'\n sku: CON-986\n name: CON-0002\n description: CONJUNTO NAVY MULTI CQBYCQ\n price_base: '420.90'\n price_sale: '1299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 00:04:45.546308'\n updated_at: '2020-02-19 00:04:45.587613'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000986'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '10'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '986'\n type: *3\n value: 986\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CON-986\n type: *7\n value: CON-986\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CON-0002\n type: *8\n value: CON-0002\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CONJUNTO NAVY MULTI CQBYCQ\n type: *6\n value: CONJUNTO NAVY MULTI CQBYCQ\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '420.9'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4209E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1299E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-04-28-14-28-53_-_copia.jpg\n type: *2\n value: PHOTO-2020-04-28-14-28-53_-_copia.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '10'\n type: *3\n value: 10\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000986'\n type: *2\n value: '0000986'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 00:04:45.546308'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2020-04-28-14-28-53_-_copia.jpg\n 3 El producto CON-986 fue modificado. 189.186.240.251 e0013e53-d203-4cc3-916c-9cdfcea7f93f 2020-04-29 02:24:03.051808 32684 1119 Product \N \N 4 User \N create ---\nsku: BOL-1119\nname: MOMY071\ndescription: pañalera rosa\nprice_base: !ruby/object:BigDecimal 18:0.14495E4\nprice_sale: !ruby/object:BigDecimal 18:0.2899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1119 fue creado. 189.186.240.251 445c784b-9a5d-4590-8df6-67c5de636019 2020-04-30 01:26:50.869331 32685 1119 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001119'\n 2 \N 189.186.240.251 445c784b-9a5d-4590-8df6-67c5de636019 2020-04-30 01:26:50.921539 32686 1826 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1119\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.240.251 445c784b-9a5d-4590-8df6-67c5de636019 2020-04-30 01:26:50.965993 32687 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-04-23 00:15:21.015236000 Z\n- &1 2020-04-28 00:11:26.452369000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-04-30 18:55:49.911842565 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534893\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534333\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534333\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946212\n mask_addr: 4294967295\nsign_in_count:\n- 518\n- 519\n 1041 \N 200.68.181.228 29863886-445a-408c-9afd-d13e886f88df 2020-04-30 18:55:49.942169 32688 2 User \N \N 2 User \N update ---\nunique_session_id:\n- sY9zzukomxy3zycuwSF5\n- MsZDZBZtvxxW-3uJ5rvH\n 1042 \N 200.68.181.228 29863886-445a-408c-9afd-d13e886f88df 2020-04-30 18:55:49.967657 32689 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-04-27 20:08:31.554384000 Z\n- &1 2020-04-28 22:46:39.648004000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-04-30 22:27:17.144321725 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537179\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145211\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537811\n mask_addr: 4294967295\nsign_in_count:\n- 1546\n- 1547\n 3094 \N 177.228.110.211 b146a851-40f9-49e1-adba-7c999f5c7178 2020-04-30 22:27:17.150995 32690 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KLuf2bTs6RvevN2fX9q1\n- UaD8VsxrZzWU97kMweiY\n 3095 \N 177.228.110.211 b146a851-40f9-49e1-adba-7c999f5c7178 2020-04-30 22:27:17.172576 32691 1120 Product \N \N 4 User \N create ---\nsku: BOL-1120\nname: MOMY071\ndescription: PAÑALERA CLOE ROSA\nprice_base: !ruby/object:BigDecimal 18:0.14495E4\nprice_sale: !ruby/object:BigDecimal 18:0.2899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1120 fue creado. 177.228.110.211 5851d97d-6899-4561-abd7-c42d33e0bce8 2020-04-30 22:33:00.767844 32693 1827 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1120\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 177.228.110.211 5851d97d-6899-4561-abd7-c42d33e0bce8 2020-04-30 22:33:00.851487 32694 294 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-34\namount: !ruby/object:BigDecimal 18:0.14495E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.14495E4\nobservations: ''\npurchase_date: 2020-04-30\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-34 por $ 1449.5 MXN creada. 177.228.110.211 6e8f33ab-1252-4781-a340-955e9cbf94d9 2020-04-30 22:33:05.263289 32695 1827 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 177.228.110.211 6e8f33ab-1252-4781-a340-955e9cbf94d9 2020-04-30 22:33:05.28734 32696 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-03-21 18:59:21.858795000 Z\n- &1 2020-03-24 02:01:00.093798000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-04-30 22:33:51.383292624 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537811\n mask_addr: 4294967295\nsign_in_count:\n- 60\n- 61\n 123 \N 177.228.110.211 fed1211a-c016-4765-a7d4-6e115eece531 2020-04-30 22:33:51.390147 32697 18 User \N \N 18 User \N update ---\nunique_session_id:\n- hxUFC9Y2sezVjxqikRRX\n- T2yXxB92wn_phyTkEFQA\n 124 \N 177.228.110.211 fed1211a-c016-4765-a7d4-6e115eece531 2020-04-30 22:33:51.404843 32698 928 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.7E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 700.0 177.228.110.211 1071f05e-254c-4ef5-8464-91714fcecbaf 2020-04-30 22:34:04.169976 32699 2415 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 928\namount: !ruby/object:BigDecimal 18:0.2899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2899E4\nstatus: 0\ndate_sale: 2020-04-30\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-321\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.211 71fa6270-1dc6-4ec7-a7e1-f6a038ee1565 2020-04-30 22:34:21.955303 32700 1827 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 177.228.110.211 71fa6270-1dc6-4ec7-a7e1-f6a038ee1565 2020-04-30 22:34:21.985258 32701 2415 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.110.211 7d45f9d9-405e-4a08-b28e-0ca06d070253 2020-04-30 22:34:32.90113 32702 3278 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.2899E4\nmove_type: '1'\nsale_id: 2415\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-321\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1235'\n 1 movimiento de efectivo por venta con folio PV3-V-321 177.228.110.211 7d45f9d9-405e-4a08-b28e-0ca06d070253 2020-04-30 22:34:32.929016 32703 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-04-28 22:46:39.648004000 Z\n- &1 2020-04-30 22:27:17.144321000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-04-30 22:36:06.625157619 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537811\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537811\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145211\n mask_addr: 4294967295\nsign_in_count:\n- 1547\n- 1548\n 3096 \N 189.186.240.251 a1ffdec3-332f-43d5-b8b9-8de1b71ebb45 2020-04-30 22:36:06.63269 32704 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UaD8VsxrZzWU97kMweiY\n- sboXeQVLyUysexF5afTu\n 3097 \N 189.186.240.251 a1ffdec3-332f-43d5-b8b9-8de1b71ebb45 2020-04-30 22:36:06.648499 32705 989 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '989'\n is_parent: false\n sku: PAN-989\n name: PNT-0024\n description: PANTALON BLANCO CON HEBILLA CON PIEDRAS CIEN\n price_base: '292.18'\n price_sale: '799.0'\n img_product: WhatsApp_Image_2020-04-29_at_12.04.32__2_.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '8'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000989'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 00:25:06.57242'\n updated_at: &12 2020-04-30 22:58:47.411424685 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '989'\n sku: PAN-989\n name: PNT-0024\n description: PANTALON BLANCO CON HEBILLA CON PIEDRAS CIEN\n price_base: '292.18'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 00:25:06.57242'\n updated_at: '2020-02-19 00:25:06.634514'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000989'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '8'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '989'\n type: *3\n value: 989\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAN-989\n type: *7\n value: PAN-989\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PNT-0024\n type: *8\n value: PNT-0024\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTALON BLANCO CON HEBILLA CON PIEDRAS CIEN\n type: *6\n value: PANTALON BLANCO CON HEBILLA CON PIEDRAS CIEN\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '292.18'\n type: *1\n value: !ruby/object:BigDecimal 18:0.29218E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WhatsApp_Image_2020-04-29_at_12.04.32__2_.jpeg\n type: *2\n value: WhatsApp_Image_2020-04-29_at_12.04.32__2_.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '8'\n type: *3\n value: 8\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000989'\n type: *2\n value: '0000989'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 00:25:06.57242'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WhatsApp_Image_2020-04-29_at_12.04.32__2_.jpeg\n 3 El producto PAN-989 fue modificado. 189.186.240.251 66fb6b3a-2557-47b2-b07d-68727220f867 2020-04-30 22:58:47.465425 32706 989 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '989'\n is_parent: false\n sku: PAN-989\n name: PNT-0024\n description: PANTALON BLANCO CON HEBILLA CON PIEDRAS CIEN\n price_base: '292.18'\n price_sale: '799.0'\n img_product: WhatsApp_Image_2020-04-29_at_12.04.32__2_.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '8'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000989'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 00:25:06.57242'\n updated_at: &12 2020-04-30 22:58:50.951343035 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '989'\n sku: PAN-989\n name: PNT-0024\n description: PANTALON BLANCO CON HEBILLA CON PIEDRAS CIEN\n price_base: '292.18'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 00:25:06.57242'\n updated_at: '2020-04-30 22:58:47.411424'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000989'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: WhatsApp_Image_2020-04-29_at_12.04.32__2_.jpeg\n category_id: '8'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '989'\n type: *3\n value: 989\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAN-989\n type: *7\n value: PAN-989\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PNT-0024\n type: *8\n value: PNT-0024\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTALON BLANCO CON HEBILLA CON PIEDRAS CIEN\n type: *6\n value: PANTALON BLANCO CON HEBILLA CON PIEDRAS CIEN\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '292.18'\n type: *1\n value: !ruby/object:BigDecimal 18:0.29218E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WhatsApp_Image_2020-04-29_at_12.04.32__2_.jpeg\n type: *2\n value: WhatsApp_Image_2020-04-29_at_12.04.32__2_.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '8'\n type: *3\n value: 8\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000989'\n type: *2\n value: '0000989'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 00:25:06.57242'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/WhatsApp_Image_2020-04-29_at_12.04.32__2_.jpeg"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader64431700\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_WhatsApp_Image_2020-04-29_at_12.04.32__2_.jpeg"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader64419420\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_WhatsApp_Image_2020-04-29_at_12.04.32__2_.jpeg"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader64415180\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_WhatsApp_Image_2020-04-29_at_12.04.32__2_.jpeg"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- WhatsApp_Image_2020-04-29_at_12.04.32__2_.jpeg\n 4 El producto PAN-989 fue modificado. 189.186.240.251 8ee1d664-41f4-4a7e-b4f5-5752ea70c707 2020-04-30 22:58:50.997255 32707 2416 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 928\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-04-30\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-322\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.211 aeef4808-23ca-4512-b52e-d8c3773a1ab8 2020-04-30 23:04:29.340402 32708 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 177.228.110.211 aeef4808-23ca-4512-b52e-d8c3773a1ab8 2020-04-30 23:04:29.379849 32709 2416 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.110.211 9ade902c-82ae-4f2e-afc1-5d2bffd6f213 2020-04-30 23:04:38.596242 32710 3279 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2416\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-322\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '55656'\n 1 movimiento de efectivo por venta con folio PV3-V-322 177.228.110.211 9ade902c-82ae-4f2e-afc1-5d2bffd6f213 2020-04-30 23:04:38.623516 32711 3279 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 928\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2416\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-322\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '55656'\n 2 \N 177.228.110.211 dc7b9e7c-02c5-4715-bfcb-886faf292386 2020-04-30 23:06:11.90598 32712 3280 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2416\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-322\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '55656'\n 1 movimiento de efectivo por venta con folio PV3-V-322 177.228.110.211 d6722538-362a-4892-9714-d98616c2ba6f 2020-04-30 23:06:17.853974 32713 313 Customer \N \N 18 User \N create ---\nnick_name: ANDREA ACOSTA\nphone: "(667) 246-9974"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANDREA ACOSTA fue registrado. 177.228.110.211 de53d920-6e45-49f0-bd5b-adcf8c704d4b 2020-04-30 23:09:43.580806 32714 314 Customer \N \N 18 User \N create ---\nnick_name: ANDREA LOPEZ ACOSTA 1\nphone: "(667) 246-974_"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.1E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANDREA LOPEZ ACOSTA 1 fue registrado. 177.228.110.211 ffe02047-b16b-4008-a6a5-0897210f2097 2020-04-30 23:10:59.963423 32715 2417 Sale \N \N 18 User \N create ---\ncustomer_id: 314\nuser_id: 18\nopen_cash_register_id: 928\namount: !ruby/object:BigDecimal 18:0.3698E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3698E4\nstatus: 0\ndate_sale: 2020-04-30\nsaletype: 0\nseller_id: 24\nsale_code: PV3-V-323\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.211 ad7af301-38b8-4a5c-9264-edf89b812f5f 2020-04-30 23:11:20.49798 32716 882 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 177.228.110.211 ad7af301-38b8-4a5c-9264-edf89b812f5f 2020-04-30 23:11:20.531171 32717 881 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 177.228.110.211 ad7af301-38b8-4a5c-9264-edf89b812f5f 2020-04-30 23:11:20.564393 32718 313 Customer \N \N 18 User \N update ---\nstatus:\n- active\n- 0\n 2 \N 177.228.110.211 c60ffa34-d26c-4c69-9239-d47b48f51078 2020-04-30 23:11:40.21615 32719 3281 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.185E4\nmove_type: '1'\nsale_id: 2417\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1256'\n 1 \N 177.228.110.211 2fa996bf-cb19-46c3-aae0-9ced5ef08f46 2020-04-30 23:12:21.576624 32720 2417 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 177.228.110.211 2fa996bf-cb19-46c3-aae0-9ced5ef08f46 2020-04-30 23:12:21.604148 32721 3281 CashRegistersMove \N \N 18 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV3-V-323 177.228.110.211 2fa996bf-cb19-46c3-aae0-9ced5ef08f46 2020-04-30 23:12:21.61746 32722 1024 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1024'\n is_parent: false\n sku: VES-1024\n name: vst-0112\n description: VESTIDO FLORES VOLADITO CREMA\n price_base: '360.0'\n price_sale: '899.0'\n img_product: VST-0112.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001024'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-25 00:15:07.201229'\n updated_at: &12 2020-04-30 23:14:39.054665673 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1024'\n sku: VES-1024\n name: vst-0112\n description: VESTIDO FLORES VOLADITO CREMA\n price_base: '360.00'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-25 00:15:07.201229'\n updated_at: '2020-02-25 00:15:07.244244'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001024'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1024'\n type: *3\n value: 1024\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1024\n type: *7\n value: VES-1024\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: vst-0112\n type: *8\n value: vst-0112\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO FLORES VOLADITO CREMA\n type: *6\n value: VESTIDO FLORES VOLADITO CREMA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '360.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.36E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: VST-0112.jpeg\n type: *2\n value: VST-0112.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001024'\n type: *2\n value: '0001024'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-25 00:15:07.201229'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- VST-0112.jpeg\n 3 El producto VES-1024 fue modificado. 189.186.240.251 06314210-3014-44fa-8a70-f91e2cbce939 2020-04-30 23:14:39.097193 32723 995 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '995'\n is_parent: false\n sku: VES-995\n name: VST-0104\n description: VESTIDO DE COLORES LARGO LATISTE\n price_base: '709.2'\n price_sale: '1779.0'\n img_product: WhatsApp_Image_2020-03-13_at_10.00.15.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000995'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 01:50:08.814225'\n updated_at: &12 2020-04-30 23:23:58.097587451 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '995'\n sku: VES-995\n name: VST-0104\n description: VESTIDO DE COLORES LARGO LATISTE\n price_base: '709.20'\n price_sale: '1779.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 01:50:08.814225'\n updated_at: '2020-02-19 01:50:08.858058'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000995'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '995'\n type: *3\n value: 995\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-995\n type: *7\n value: VES-995\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0104\n type: *8\n value: VST-0104\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO DE COLORES LARGO LATISTE\n type: *6\n value: VESTIDO DE COLORES LARGO LATISTE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '709.2'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7092E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1779.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1779E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WhatsApp_Image_2020-03-13_at_10.00.15.jpeg\n type: *2\n value: WhatsApp_Image_2020-03-13_at_10.00.15.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000995'\n type: *2\n value: '0000995'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 01:50:08.814225'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WhatsApp_Image_2020-03-13_at_10.00.15.jpeg\n 3 El producto VES-995 fue modificado. 189.186.240.251 dbe0a5b7-62f7-429a-aed9-5856cf67db36 2020-04-30 23:23:58.13899 32724 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-04-30 22:27:17.144321000 Z\n- &1 2020-04-30 22:36:06.625157000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-01 00:34:28.257610303 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537811\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145211\n mask_addr: 4294967295\nsign_in_count:\n- 1548\n- 1549\n 3098 \N 189.186.240.251 cbb24bb0-01fa-4544-8079-bf7eb378d7c5 2020-05-01 00:34:28.285554 32725 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sboXeQVLyUysexF5afTu\n- y6YxU5TdMBFQyGe9SxLj\n 3099 \N 189.186.240.251 cbb24bb0-01fa-4544-8079-bf7eb378d7c5 2020-05-01 00:34:28.309926 32726 976 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '976'\n is_parent: false\n sku: VES-976\n name: VST-0100\n description: VESTIDO LARGO FLORES MUY MUY\n price_base: '658.8'\n price_sale: '1599.0'\n img_product: PHOTO-2020-04-28-14-28-51_-_copia__3_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000976'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-18 20:54:22.845309'\n updated_at: &12 2020-05-01 00:35:38.267426363 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '976'\n sku: VES-976\n name: VST-0100\n description: VESTIDO LARGO FLORES MUY MUY\n price_base: '658.80'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-18 20:54:22.845309'\n updated_at: '2020-02-18 20:54:22.893859'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000976'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '976'\n type: *3\n value: 976\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-976\n type: *7\n value: VES-976\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0100\n type: *8\n value: VST-0100\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO LARGO FLORES MUY MUY\n type: *6\n value: VESTIDO LARGO FLORES MUY MUY\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '658.8'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6588E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-04-28-14-28-51_-_copia__3_.jpg\n type: *2\n value: PHOTO-2020-04-28-14-28-51_-_copia__3_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000976'\n type: *2\n value: '0000976'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-18 20:54:22.845309'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2020-04-28-14-28-51_-_copia__3_.jpg\n 3 El producto VES-976 fue modificado. 189.186.240.251 bb6df1e3-45bb-408f-9556-260160e9dcbe 2020-05-01 00:35:38.34053 32727 976 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '976'\n is_parent: false\n sku: VES-976\n name: VST-0100\n description: VESTIDO LARGO FLORES MUY MUY\n price_base: '658.8'\n price_sale: '1599.0'\n img_product: PHOTO-2020-04-28-14-28-51_-_copia__3_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000976'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-18 20:54:22.845309'\n updated_at: &12 2020-05-01 00:35:39.015134072 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '976'\n sku: VES-976\n name: VST-0100\n description: VESTIDO LARGO FLORES MUY MUY\n price_base: '658.80'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-18 20:54:22.845309'\n updated_at: '2020-05-01 00:35:38.267426'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000976'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: PHOTO-2020-04-28-14-28-51_-_copia__3_.jpg\n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '976'\n type: *3\n value: 976\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-976\n type: *7\n value: VES-976\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0100\n type: *8\n value: VST-0100\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO LARGO FLORES MUY MUY\n type: *6\n value: VESTIDO LARGO FLORES MUY MUY\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '658.8'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6588E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-04-28-14-28-51_-_copia__3_.jpg\n type: *2\n value: PHOTO-2020-04-28-14-28-51_-_copia__3_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000976'\n type: *2\n value: '0000976'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-18 20:54:22.845309'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/PHOTO-2020-04-28-14-28-51_-_copia__3_.jpg"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader59389300\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_PHOTO-2020-04-28-14-28-51_-_copia__3_.jpg"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader59385000\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_PHOTO-2020-04-28-14-28-51_-_copia__3_.jpg"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader59364520\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_PHOTO-2020-04-28-14-28-51_-_copia__3_.jpg"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- PHOTO-2020-04-28-14-28-51_-_copia__3_.jpg\n 4 El producto VES-976 fue modificado. 189.186.240.251 a8e9a8f1-05c6-461a-94f1-a8c36e3e8ec1 2020-05-01 00:35:39.117642 32728 981 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '981'\n is_parent: false\n sku: VES-981\n name: VST-0101\n description: VESTIDO SACO SIN MANGA BLANCO Y ROSA\n price_base: '269.92'\n price_sale: '769.0'\n img_product: PHOTO-2020-03-03-15-27-35.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000981'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-18 21:21:44.411538'\n updated_at: &12 2020-05-01 01:01:38.219143457 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '981'\n sku: VES-981\n name: VST-0101\n description: VESTIDO SACO SIN MANGA BLANCO Y ROSA\n price_base: '269.92'\n price_sale: '769.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-18 21:21:44.411538'\n updated_at: '2020-02-18 21:21:44.45426'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000981'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '981'\n type: *3\n value: 981\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-981\n type: *7\n value: VES-981\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0101\n type: *8\n value: VST-0101\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO SACO SIN MANGA BLANCO Y ROSA\n type: *6\n value: VESTIDO SACO SIN MANGA BLANCO Y ROSA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '269.92'\n type: *1\n value: !ruby/object:BigDecimal 18:0.26992E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '769.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.769E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-03-03-15-27-35.jpg\n type: *2\n value: PHOTO-2020-03-03-15-27-35.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000981'\n type: *2\n value: '0000981'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-18 21:21:44.411538'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2020-03-03-15-27-35.jpg\n 3 El producto VES-981 fue modificado. 189.186.240.251 19e3a5ba-0b05-434b-bbd7-3a9d06b8e8ef 2020-05-01 01:01:38.267887 32729 997 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '997'\n is_parent: false\n sku: VES-997\n name: VST-0105\n description: VESTIDO BLANCO LATISTE\n price_base: '571.0'\n price_sale: '1169.0'\n img_product: WhatsApp_Image_2020-03-18_at_13.42.31__1_.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000997'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 02:24:19.55939'\n updated_at: &12 2020-05-01 01:02:50.553061345 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '997'\n sku: VES-997\n name: VST-0105\n description: VESTIDO BLANCO LATISTE\n price_base: '571.00'\n price_sale: '1169.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 02:24:19.55939'\n updated_at: '2020-02-19 02:24:19.600144'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000997'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '997'\n type: *3\n value: 997\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-997\n type: *7\n value: VES-997\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0105\n type: *8\n value: VST-0105\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO BLANCO LATISTE\n type: *6\n value: VESTIDO BLANCO LATISTE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '571.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.571E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1169.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1169E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WhatsApp_Image_2020-03-18_at_13.42.31__1_.jpeg\n type: *2\n value: WhatsApp_Image_2020-03-18_at_13.42.31__1_.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000997'\n type: *2\n value: '0000997'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 02:24:19.55939'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WhatsApp_Image_2020-03-18_at_13.42.31__1_.jpeg\n 3 El producto VES-997 fue modificado. 189.186.240.251 f4bdab2d-4889-46b9-9209-25381d741378 2020-05-01 01:02:50.59296 32730 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-04-30 22:36:06.625157000 Z\n- &1 2020-05-01 00:34:28.257610000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-01 23:16:32.946809306 Z\nsign_in_count:\n- 1549\n- 1550\n 3100 \N 189.186.240.251 0c709e1a-244c-429b-9498-6f837ce8bb68 2020-05-01 23:16:32.97333 32731 4 User \N \N 4 User \N update ---\nunique_session_id:\n- y6YxU5TdMBFQyGe9SxLj\n- 6_YyHABRCcR_NeCzYrXh\n 3101 \N 189.186.240.251 0c709e1a-244c-429b-9498-6f837ce8bb68 2020-05-01 23:16:32.998101 32732 994 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '994'\n is_parent: false\n sku: VES-994\n name: VST-0103\n description: VESTIDO AZUL MULTICOLOR CQBYCQ\n price_base: '420.9'\n price_sale: '1049.0'\n img_product: PHOTO-2020-04-30-19-26-45.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000994'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 01:45:20.142178'\n updated_at: &12 2020-05-01 23:37:04.257875274 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '994'\n sku: VES-994\n name: VST-0103\n description: VESTIDO AZUL MULTICOLOR CQBYCQ\n price_base: '420.90'\n price_sale: '1049.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 01:45:20.142178'\n updated_at: '2020-02-19 01:45:20.198474'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000994'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '994'\n type: *3\n value: 994\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-994\n type: *7\n value: VES-994\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0103\n type: *8\n value: VST-0103\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO AZUL MULTICOLOR CQBYCQ\n type: *6\n value: VESTIDO AZUL MULTICOLOR CQBYCQ\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '420.9'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4209E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1049.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1049E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-04-30-19-26-45.jpg\n type: *2\n value: PHOTO-2020-04-30-19-26-45.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000994'\n type: *2\n value: '0000994'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 01:45:20.142178'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2020-04-30-19-26-45.jpg\n 3 El producto VES-994 fue modificado. 189.186.240.251 196da7b8-68a1-4293-9c04-d5fca9407cbf 2020-05-01 23:37:04.30286 32733 998 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '998'\n is_parent: false\n sku: VES-998\n name: VST-0106\n description: VESTIDO ATIGRADO DE COLORES LATISTE\n price_base: '552.0'\n price_sale: '1169.0'\n img_product: VST106.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000998'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 02:28:40.641981'\n updated_at: &12 2020-05-01 23:47:16.785203213 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '998'\n sku: VES-998\n name: VST-0106\n description: VESTIDO ATIGRADO DE COLORES LATISTE\n price_base: '552.00'\n price_sale: '1169.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 02:28:40.641981'\n updated_at: '2020-02-19 02:28:40.680548'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000998'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '998'\n type: *3\n value: 998\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-998\n type: *7\n value: VES-998\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0106\n type: *8\n value: VST-0106\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO ATIGRADO DE COLORES LATISTE\n type: *6\n value: VESTIDO ATIGRADO DE COLORES LATISTE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '552.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.552E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1169.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1169E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: VST106.jpg\n type: *2\n value: VST106.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000998'\n type: *2\n value: '0000998'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 02:28:40.641981'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- VST106.jpg\n 3 El producto VES-998 fue modificado. 189.186.240.251 96747549-bef1-46f6-841a-af26b0377a71 2020-05-01 23:47:16.833855 32734 982 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '982'\n is_parent: false\n sku: PAL-982\n name: VST-0102\n description: PALAZZO ENCAJE VALENTINE NEGRO\n price_base: '448.35'\n price_sale: '1119.0'\n img_product: VST-0102.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '9'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000982'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-18 21:27:53.079765'\n updated_at: &12 2020-05-02 00:01:53.390967305 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '982'\n sku: PAL-982\n name: VST-0102\n description: PALAZZO ENCAJE VALENTINE NEGRO\n price_base: '448.35'\n price_sale: '1119.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-18 21:27:53.079765'\n updated_at: '2020-02-18 21:27:53.141657'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000982'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '9'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '982'\n type: *3\n value: 982\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAL-982\n type: *7\n value: PAL-982\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0102\n type: *8\n value: VST-0102\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PALAZZO ENCAJE VALENTINE NEGRO\n type: *6\n value: PALAZZO ENCAJE VALENTINE NEGRO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '448.35'\n type: *1\n value: !ruby/object:BigDecimal 18:0.44835E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1119.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1119E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: VST-0102.jpg\n type: *2\n value: VST-0102.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '9'\n type: *3\n value: 9\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000982'\n type: *2\n value: '0000982'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-18 21:27:53.079765'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- VST-0102.jpg\n 3 El producto PAL-982 fue modificado. 189.186.240.251 2c245bcb-4f6e-47b9-8e00-3f39ec717cb6 2020-05-02 00:01:53.430821 32735 1020 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1020'\n is_parent: false\n sku: PAN-1020\n name: PNT-0026\n description: PANTALON NEGRO CUADROS COLORES BLUE S\n price_base: '283.65'\n price_sale: '729.0'\n img_product: PHOTO-2020-04-29-12-04-31_-_copia__2_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '8'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001020'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 22:54:03.176447'\n updated_at: &12 2020-05-02 00:10:44.788857244 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1020'\n sku: PAN-1020\n name: PNT-0026\n description: PANTALON NEGRO CUADROS COLORES BLUE S\n price_base: '283.65'\n price_sale: '729.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 22:54:03.176447'\n updated_at: '2020-02-19 22:54:03.213596'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001020'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '8'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1020'\n type: *3\n value: 1020\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAN-1020\n type: *7\n value: PAN-1020\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PNT-0026\n type: *8\n value: PNT-0026\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTALON NEGRO CUADROS COLORES BLUE S\n type: *6\n value: PANTALON NEGRO CUADROS COLORES BLUE S\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '283.65'\n type: *1\n value: !ruby/object:BigDecimal 18:0.28365E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '729.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.729E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-04-29-12-04-31_-_copia__2_.jpg\n type: *2\n value: PHOTO-2020-04-29-12-04-31_-_copia__2_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '8'\n type: *3\n value: 8\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001020'\n type: *2\n value: '0001020'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 22:54:03.176447'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2020-04-29-12-04-31_-_copia__2_.jpg\n 3 El producto PAN-1020 fue modificado. 189.186.240.251 d8a27e73-224f-4456-b5dd-3e0b753984e2 2020-05-02 00:10:44.839831 32736 993 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '993'\n is_parent: false\n sku: BLU-993\n name: BLS-0111\n description: PANTI CQBYCQ BLANCA Y NEGRA\n price_base: '210.45'\n price_sale: '529.0'\n img_product: PHOTO-2020-04-29-12-04-31_-_copia__2_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000993'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 01:34:40.787384'\n updated_at: &12 2020-05-02 00:31:52.411702553 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '993'\n sku: BLU-993\n name: BLS-0111\n description: PANTI CQBYCQ BLANCA Y NEGRA\n price_base: '210.45'\n price_sale: '529.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 01:34:40.787384'\n updated_at: '2020-02-19 01:34:40.833935'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000993'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '993'\n type: *3\n value: 993\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-993\n type: *7\n value: BLU-993\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0111\n type: *8\n value: BLS-0111\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTI CQBYCQ BLANCA Y NEGRA\n type: *6\n value: PANTI CQBYCQ BLANCA Y NEGRA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '210.45'\n type: *1\n value: !ruby/object:BigDecimal 18:0.21045E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '529.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.529E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-04-29-12-04-31_-_copia__2_.jpg\n type: *2\n value: PHOTO-2020-04-29-12-04-31_-_copia__2_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000993'\n type: *2\n value: '0000993'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 01:34:40.787384'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2020-04-29-12-04-31_-_copia__2_.jpg\n 3 El producto BLU-993 fue modificado. 189.186.240.251 4be2b779-dfb7-4634-824d-95750d5668de 2020-05-02 00:31:52.450926 32737 999 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '999'\n is_parent: false\n sku: VES-999\n name: VST-0107\n description: VESTIDO AZUL TURQUESA APEACH\n price_base: '334.9'\n price_sale: '849.0'\n img_product: PHOTO-2020-04-28-14-28-55_-_copia.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000999'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 02:34:03.513336'\n updated_at: &12 2020-05-02 00:37:38.422404981 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '999'\n sku: VES-999\n name: VST-0107\n description: VESTIDO AZUL TURQUESA APEACH\n price_base: '334.90'\n price_sale: '849.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 02:34:03.513336'\n updated_at: '2020-02-19 02:34:03.550706'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000999'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '999'\n type: *3\n value: 999\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-999\n type: *7\n value: VES-999\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0107\n type: *8\n value: VST-0107\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO AZUL TURQUESA APEACH\n type: *6\n value: VESTIDO AZUL TURQUESA APEACH\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '334.9'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3349E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '849.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.849E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-04-28-14-28-55_-_copia.jpg\n type: *2\n value: PHOTO-2020-04-28-14-28-55_-_copia.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000999'\n type: *2\n value: '0000999'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 02:34:03.513336'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2020-04-28-14-28-55_-_copia.jpg\n 3 El producto VES-999 fue modificado. 189.186.240.251 73816235-a513-4926-aefc-c2e1c10b8bb3 2020-05-02 00:37:38.463547 32738 984 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '984'\n is_parent: false\n sku: BLU-984\n name: BLS-0107\n description: BLUSA BLACA NYLON\n price_base: '192.15'\n price_sale: '479.0'\n img_product: PHOTO-2020-04-28-14-28-50.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000984'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-18 23:30:21.252392'\n updated_at: &12 2020-05-02 00:43:07.562748792 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '984'\n sku: BLU-984\n name: BLS-0107\n description: BLUSA BLACA NYLON\n price_base: '192.15'\n price_sale: '479.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-18 23:30:21.252392'\n updated_at: '2020-02-18 23:30:21.292165'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000984'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '984'\n type: *3\n value: 984\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-984\n type: *7\n value: BLU-984\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0107\n type: *8\n value: BLS-0107\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA BLACA NYLON\n type: *6\n value: BLUSA BLACA NYLON\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '192.15'\n type: *1\n value: !ruby/object:BigDecimal 18:0.19215E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '479.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.479E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-04-28-14-28-50.jpg\n type: *2\n value: PHOTO-2020-04-28-14-28-50.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000984'\n type: *2\n value: '0000984'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-18 23:30:21.252392'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2020-04-28-14-28-50.jpg\n 3 El producto BLU-984 fue modificado. 189.186.240.251 2513514b-25c4-493d-9e58-7dd72c271a01 2020-05-02 00:43:07.602899 32739 992 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '992'\n is_parent: false\n sku: FAL-992\n name: FLD-0026\n description: FALDA ROSA VIEJO TABA S01\n price_base: '256.16'\n price_sale: '699.0'\n img_product: PHOTO-2020-04-28-14-28-50.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000992'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 01:26:03.540342'\n updated_at: &12 2020-05-02 00:48:32.083031892 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '992'\n sku: FAL-992\n name: FLD-0026\n description: FALDA ROSA VIEJO TABA S01\n price_base: '256.16'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 01:26:03.540342'\n updated_at: '2020-02-19 01:26:03.58542'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000992'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '992'\n type: *3\n value: 992\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-992\n type: *7\n value: FAL-992\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0026\n type: *8\n value: FLD-0026\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA ROSA VIEJO TABA S01\n type: *6\n value: FALDA ROSA VIEJO TABA S01\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '256.16'\n type: *1\n value: !ruby/object:BigDecimal 18:0.25616E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-04-28-14-28-50.jpg\n type: *2\n value: PHOTO-2020-04-28-14-28-50.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000992'\n type: *2\n value: '0000992'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 01:26:03.540342'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2020-04-28-14-28-50.jpg\n 3 El producto FAL-992 fue modificado. 189.186.240.251 664a901d-fe97-4b82-995b-ce12e6505e9a 2020-05-02 00:48:32.12491 32740 985 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '985'\n is_parent: false\n sku: BLU-985\n name: BLS-0108\n description: 'BLUSA ROSA CON BOLITAS NEGRAS DECO '\n price_base: '265.35'\n price_sale: '669.0'\n img_product: PHOTO-2020-04-28-14-28-45.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000985'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-18 23:36:51.887574'\n updated_at: &12 2020-05-02 00:53:35.143717060 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '985'\n sku: BLU-985\n name: BLS-0108\n description: 'BLUSA ROSA CON BOLITAS NEGRAS DECO '\n price_base: '265.35'\n price_sale: '669.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-18 23:36:51.887574'\n updated_at: '2020-02-18 23:36:51.940439'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000985'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '985'\n type: *3\n value: 985\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-985\n type: *7\n value: BLU-985\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0108\n type: *8\n value: BLS-0108\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'BLUSA ROSA CON BOLITAS NEGRAS DECO '\n type: *6\n value: 'BLUSA ROSA CON BOLITAS NEGRAS DECO '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '265.35'\n type: *1\n value: !ruby/object:BigDecimal 18:0.26535E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '669.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.669E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-04-28-14-28-45.jpg\n type: *2\n value: PHOTO-2020-04-28-14-28-45.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000985'\n type: *2\n value: '0000985'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-18 23:36:51.887574'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2020-04-28-14-28-45.jpg\n 3 El producto BLU-985 fue modificado. 189.186.240.251 d5bee7d2-6f00-4616-8323-322c7995ed88 2020-05-02 00:53:35.18458 32741 988 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '988'\n is_parent: false\n sku: PAN-988\n name: PNT-0023\n description: PANTALON NEGRO CON APLICACION DE PEDRERIA CIEN\n price_base: '292.18'\n price_sale: '799.0'\n img_product: PHOTO-2020-04-28-14-28-45.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '8'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000988'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 00:24:08.677975'\n updated_at: &12 2020-05-02 01:04:34.899966744 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '988'\n sku: PAN-988\n name: PNT-0023\n description: PANTALON NEGRO CON APLICACION DE PEDRERIA CIEN\n price_base: '292.18'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 00:24:08.677975'\n updated_at: '2020-02-19 00:24:08.747177'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000988'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '8'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '988'\n type: *3\n value: 988\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAN-988\n type: *7\n value: PAN-988\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PNT-0023\n type: *8\n value: PNT-0023\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTALON NEGRO CON APLICACION DE PEDRERIA CIEN\n type: *6\n value: PANTALON NEGRO CON APLICACION DE PEDRERIA CIEN\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '292.18'\n type: *1\n value: !ruby/object:BigDecimal 18:0.29218E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-04-28-14-28-45.jpg\n type: *2\n value: PHOTO-2020-04-28-14-28-45.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '8'\n type: *3\n value: 8\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000988'\n type: *2\n value: '0000988'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 00:24:08.677975'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2020-04-28-14-28-45.jpg\n 3 El producto PAN-988 fue modificado. 189.186.240.251 6c9b218f-4b09-4089-ba4c-481421bf18b1 2020-05-02 01:04:34.941091 32742 979 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '979'\n is_parent: false\n sku: BLU-979\n name: BLS-0105\n description: PLAYERA BLANCA CON PIEDRAS EN MANGAS\n price_base: '155.55'\n price_sale: '469.0'\n img_product: FOTO.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000979'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-18 21:14:57.777417'\n updated_at: &12 2020-05-02 01:17:42.873581564 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '979'\n sku: BLU-979\n name: BLS-0105\n description: PLAYERA BLANCA CON PIEDRAS EN MANGAS\n price_base: '155.55'\n price_sale: '469.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-18 21:14:57.777417'\n updated_at: '2020-02-18 21:14:57.829314'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000979'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '979'\n type: *3\n value: 979\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-979\n type: *7\n value: BLU-979\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0105\n type: *8\n value: BLS-0105\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PLAYERA BLANCA CON PIEDRAS EN MANGAS\n type: *6\n value: PLAYERA BLANCA CON PIEDRAS EN MANGAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '155.55'\n type: *1\n value: !ruby/object:BigDecimal 18:0.15555E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '469.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.469E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: FOTO.jpg\n type: *2\n value: FOTO.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000979'\n type: *2\n value: '0000979'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-18 21:14:57.777417'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- FOTO.jpg\n 3 El producto BLU-979 fue modificado. 189.186.240.251 f7890b6f-0013-4144-a6ab-1caa10e7aa52 2020-05-02 01:17:42.914502 32743 978 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '978'\n is_parent: false\n sku: FAL-978\n name: FLD-0023\n description: FALDA PIEL ESTRELLA\n price_base: '215.02'\n price_sale: '569.0'\n img_product: FOTO.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000978'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-18 21:11:56.54139'\n updated_at: &12 2020-05-02 01:25:34.409864755 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '978'\n sku: FAL-978\n name: FLD-0023\n description: FALDA PIEL ESTRELLA\n price_base: '215.02'\n price_sale: '569.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-18 21:11:56.54139'\n updated_at: '2020-02-18 21:11:56.598409'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000978'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '978'\n type: *3\n value: 978\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-978\n type: *7\n value: FAL-978\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0023\n type: *8\n value: FLD-0023\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA PIEL ESTRELLA\n type: *6\n value: FALDA PIEL ESTRELLA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '215.02'\n type: *1\n value: !ruby/object:BigDecimal 18:0.21502E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '569.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.569E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: FOTO.jpg\n type: *2\n value: FOTO.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000978'\n type: *2\n value: '0000978'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-18 21:11:56.54139'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- FOTO.jpg\n 3 El producto FAL-978 fue modificado. 189.186.240.251 10639de2-6fb0-4dfe-a3ac-fae6eeda6eba 2020-05-02 01:25:34.465787 32744 1008 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1008'\n is_parent: false\n sku: VES-1008\n name: VST-0109\n description: VESTIDO MULTICOLOR FLOREADO CQBYCQ ST.7748DW\n price_base: '347.7'\n price_sale: '999.0'\n img_product: PHOTO-2020-03-02-16-02-04.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001008'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 20:23:11.481803'\n updated_at: &12 2020-05-02 01:30:04.016961065 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1008'\n sku: VES-1008\n name: VST-0109\n description: VESTIDO MULTICOLOR FLOREADO CQBYCQ ST.7748DW\n price_base: '347.70'\n price_sale: '999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 20:23:11.481803'\n updated_at: '2020-02-19 20:23:11.521726'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001008'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1008'\n type: *3\n value: 1008\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1008\n type: *7\n value: VES-1008\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0109\n type: *8\n value: VST-0109\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO MULTICOLOR FLOREADO CQBYCQ ST.7748DW\n type: *6\n value: VESTIDO MULTICOLOR FLOREADO CQBYCQ ST.7748DW\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '347.7'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3477E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-03-02-16-02-04.jpg\n type: *2\n value: PHOTO-2020-03-02-16-02-04.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001008'\n type: *2\n value: '0001008'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 20:23:11.481803'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2020-03-02-16-02-04.jpg\n 3 El producto VES-1008 fue modificado. 189.186.240.251 72755f84-42a6-418f-8352-ed6e2fd3b5ac 2020-05-02 01:30:04.057006 32745 1009 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1009'\n is_parent: false\n sku: BLU-1009\n name: BLS-0114\n description: BLUSA AQUA/AMARILLA CQBYCQ ST. 8626\n price_base: '237.9'\n price_sale: '599.0'\n img_product: PHOTO-2020-04-28-14-28-41.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001009'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 20:25:45.29919'\n updated_at: &12 2020-05-02 01:33:36.124492542 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1009'\n sku: BLU-1009\n name: BLS-0114\n description: BLUSA AQUA/AMARILLA CQBYCQ ST. 8626\n price_base: '237.90'\n price_sale: '599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 20:25:45.29919'\n updated_at: '2020-02-19 20:25:45.339354'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001009'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1009'\n type: *3\n value: 1009\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1009\n type: *7\n value: BLU-1009\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0114\n type: *8\n value: BLS-0114\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA AQUA/AMARILLA CQBYCQ ST. 8626\n type: *6\n value: BLUSA AQUA/AMARILLA CQBYCQ ST. 8626\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '237.9'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2379E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.599E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-04-28-14-28-41.jpg\n type: *2\n value: PHOTO-2020-04-28-14-28-41.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001009'\n type: *2\n value: '0001009'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 20:25:45.29919'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2020-04-28-14-28-41.jpg\n 3 El producto BLU-1009 fue modificado. 189.186.240.251 5d48f51c-a8f8-4ee4-8962-8c30b9bc4ff8 2020-05-02 01:33:36.166937 32746 675 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '675'\n is_parent: false\n sku: VES-675\n name: VST-0045\n description: "VESTIDO FLORAL DAYLIGHT ST. D47574\\r\\n"\n price_base: '290.0'\n price_sale: '849.0'\n img_product: PHOTO-2020-04-28-14-28-46.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000675'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-08-22 01:06:51.497873'\n updated_at: &12 2020-05-02 02:04:19.092159472 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '675'\n sku: VES-675\n name: VST-0045\n description: "VESTIDO FLORAL DAYLIGHT ST. D47574\\r\\n"\n price_base: '290.00'\n price_sale: '849.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-08-22 01:06:51.497873'\n updated_at: '2019-08-22 03:18:59.392867'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000675'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: 4E00E300-77C9-4AD5-843C-C2FF5341AF67_2418_.jpg\n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '675'\n type: *3\n value: 675\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-675\n type: *7\n value: VES-675\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0045\n type: *8\n value: VST-0045\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "VESTIDO FLORAL DAYLIGHT ST. D47574\\r\\n"\n type: *6\n value: "VESTIDO FLORAL DAYLIGHT ST. D47574\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '290.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.29E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '849.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.849E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-04-28-14-28-46.jpg\n type: *2\n value: PHOTO-2020-04-28-14-28-46.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000675'\n type: *2\n value: '0000675'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-22 01:06:51.497873'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/4E00E300-77C9-4AD5-843C-C2FF5341AF67_2418_.jpg"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader55385840\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_4E00E300-77C9-4AD5-843C-C2FF5341AF67_2418_.jpg"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader55379240\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_4E00E300-77C9-4AD5-843C-C2FF5341AF67_2418_.jpg"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader55366500\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_4E00E300-77C9-4AD5-843C-C2FF5341AF67_2418_.jpg"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- PHOTO-2020-04-28-14-28-46.jpg\n 4 El producto VES-675 fue modificado. 189.186.240.251 e256b3dd-95d2-429e-967a-c98f617a707f 2020-05-02 02:04:19.142168 32747 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-05-01 00:34:28.257610000 Z\n- &1 2020-05-01 23:16:32.946809000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-03 00:18:10.320726248 Z\nsign_in_count:\n- 1550\n- 1551\n 3102 \N 189.186.240.251 75a6275b-7f02-4223-98c3-82985a67953f 2020-05-03 00:18:10.346981 32750 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-04-28 00:11:26.452369000 Z\n- &1 2020-04-30 18:55:49.911842000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-03 00:23:13.428577771 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534333\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946212\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946212\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534613\n mask_addr: 4294967295\nsign_in_count:\n- 519\n- 520\n 1043 \N 177.228.98.85 af9a08da-3659-442a-b8ad-492dc898d975 2020-05-03 00:23:13.435694 32751 2 User \N \N 2 User \N update ---\nunique_session_id:\n- MsZDZBZtvxxW-3uJ5rvH\n- 1DQkvC7ycxgPeCQoqhDs\n 1044 \N 177.228.98.85 af9a08da-3659-442a-b8ad-492dc898d975 2020-05-03 00:23:13.452355 32752 991 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '991'\n is_parent: false\n sku: FAL-991\n name: FLD-0025\n description: FALDA DE PATOLES COLORES TABA S63\n price_base: '219.16'\n price_sale: '699.0'\n img_product: 123.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000991'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 01:22:27.230312'\n updated_at: &12 2020-05-03 00:23:25.255349607 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '991'\n sku: FAL-991\n name: FLD-0025\n description: FALDA DE PATOLES COLORES TABA S63\n price_base: '219.16'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 01:22:27.230312'\n updated_at: '2020-05-03 00:23:09.580559'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000991'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: 123.png\n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '991'\n type: *3\n value: 991\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-991\n type: *7\n value: FAL-991\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0025\n type: *8\n value: FLD-0025\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA DE PATOLES COLORES TABA S63\n type: *6\n value: FALDA DE PATOLES COLORES TABA S63\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '219.16'\n type: *1\n value: !ruby/object:BigDecimal 18:0.21916E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 123.png\n type: *2\n value: 123.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000991'\n type: *2\n value: '0000991'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 01:22:27.230312'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/123.png"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader62269980\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_123.png"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader62265900\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_123.png"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader62260000\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_123.png"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- 123.png\n 4 El producto FAL-991 fue modificado. 189.186.240.251 75388273-03ec-407c-9f07-4e6f68259bb4 2020-05-03 00:23:25.303992 32753 1013 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1013'\n is_parent: false\n sku: BLU-1013\n name: BLS-0118\n description: PLAYERA BLANCA CON COLLAR EN CUELLO ST.DZ3575\n price_base: '233.32'\n price_sale: '589.0'\n img_product: PHOTO-2020-05-02-16-55-32.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001013'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 20:44:24.096735'\n updated_at: &12 2020-05-03 00:24:20.039768918 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1013'\n sku: BLU-1013\n name: BLS-0118\n description: PLAYERA BLANCA CON COLLAR EN CUELLO ST.DZ3575\n price_base: '233.32'\n price_sale: '589.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 20:44:24.096735'\n updated_at: '2020-02-19 20:44:24.137364'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001013'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1013'\n type: *3\n value: 1013\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1013\n type: *7\n value: BLU-1013\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0118\n type: *8\n value: BLS-0118\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PLAYERA BLANCA CON COLLAR EN CUELLO ST.DZ3575\n type: *6\n value: PLAYERA BLANCA CON COLLAR EN CUELLO ST.DZ3575\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '233.32'\n type: *1\n value: !ruby/object:BigDecimal 18:0.23332E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '589.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.589E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-05-02-16-55-32.jpg\n type: *2\n value: PHOTO-2020-05-02-16-55-32.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001013'\n type: *2\n value: '0001013'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 20:44:24.096735'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2020-05-02-16-55-32.jpg\n 3 El producto BLU-1013 fue modificado. 189.186.240.251 506b96a0-ac25-4073-a119-1664563a1951 2020-05-03 00:24:20.077119 32754 980 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '980'\n is_parent: false\n sku: BLU-980\n name: BLS-0106\n description: 'CAMISA COLORES MUY MUY '\n price_base: '155.55'\n price_sale: '499.0'\n img_product: PHOTO-2020-04-29-12-04-33.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000980'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-18 21:18:17.53197'\n updated_at: &12 2020-05-03 00:30:22.909241942 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '980'\n sku: BLU-980\n name: BLS-0106\n description: 'CAMISA COLORES MUY MUY '\n price_base: '155.55'\n price_sale: '499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-18 21:18:17.53197'\n updated_at: '2020-02-18 21:18:17.577269'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000980'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '980'\n type: *3\n value: 980\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-980\n type: *7\n value: BLU-980\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0106\n type: *8\n value: BLS-0106\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'CAMISA COLORES MUY MUY '\n type: *6\n value: 'CAMISA COLORES MUY MUY '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '155.55'\n type: *1\n value: !ruby/object:BigDecimal 18:0.15555E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.499E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-04-29-12-04-33.jpg\n type: *2\n value: PHOTO-2020-04-29-12-04-33.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000980'\n type: *2\n value: '0000980'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-18 21:18:17.53197'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2020-04-29-12-04-33.jpg\n 3 El producto BLU-980 fue modificado. 189.186.240.251 005e573d-e8ad-44cb-b92d-ff12d52a4670 2020-05-03 00:30:22.948272 32755 1005 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1005'\n is_parent: false\n sku: FAL-1005\n name: FLD-0028\n description: FALDA BLANCA DE TUL KIWI\n price_base: '192.15'\n price_sale: '529.0'\n img_product: PHOTO-2020-05-02-16-55-32.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001005'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 20:05:12.84153'\n updated_at: &12 2020-05-03 00:32:54.123402102 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1005'\n sku: FAL-1005\n name: FLD-0028\n description: FALDA BLANCA DE TUL KIWI\n price_base: '192.15'\n price_sale: '529.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 20:05:12.84153'\n updated_at: '2020-02-19 20:05:12.902542'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001005'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1005'\n type: *3\n value: 1005\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-1005\n type: *7\n value: FAL-1005\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0028\n type: *8\n value: FLD-0028\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA BLANCA DE TUL KIWI\n type: *6\n value: FALDA BLANCA DE TUL KIWI\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '192.15'\n type: *1\n value: !ruby/object:BigDecimal 18:0.19215E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '529.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.529E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-05-02-16-55-32.jpg\n type: *2\n value: PHOTO-2020-05-02-16-55-32.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001005'\n type: *2\n value: '0001005'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 20:05:12.84153'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2020-05-02-16-55-32.jpg\n 3 El producto FAL-1005 fue modificado. 189.186.240.251 14dabb30-4b8b-4623-adec-e39f7a013913 2020-05-03 00:32:54.162614 32756 983 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '983'\n is_parent: false\n sku: FAL-983\n name: FLD-0024\n description: FALDA PIEL AZUL NYLON\n price_base: '298.8'\n price_sale: '749.0'\n img_product: PHOTO-2020-04-29-12-04-33.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000983'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-18 23:27:28.047143'\n updated_at: &12 2020-05-03 00:34:44.982270174 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '983'\n sku: FAL-983\n name: FLD-0024\n description: FALDA PIEL AZUL NYLON\n price_base: '298.80'\n price_sale: '749.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-18 23:27:28.047143'\n updated_at: '2020-02-18 23:27:28.096153'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000983'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '983'\n type: *3\n value: 983\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-983\n type: *7\n value: FAL-983\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0024\n type: *8\n value: FLD-0024\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA PIEL AZUL NYLON\n type: *6\n value: FALDA PIEL AZUL NYLON\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '298.8'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2988E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '749.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.749E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-04-29-12-04-33.jpg\n type: *2\n value: PHOTO-2020-04-29-12-04-33.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000983'\n type: *2\n value: '0000983'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-18 23:27:28.047143'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2020-04-29-12-04-33.jpg\n 3 El producto FAL-983 fue modificado. 189.186.240.251 026e98a2-ea99-4d61-a7a9-684f80a8a324 2020-05-03 00:34:45.037157 32757 1006 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1006'\n is_parent: false\n sku: FAL-1006\n name: FLD-0029\n description: FALDA LARGA DE TUL ROSA CON PERLAS TABA S13\n price_base: '201.3'\n price_sale: '699.0'\n img_product: 1234.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001006'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 20:12:04.589931'\n updated_at: &12 2020-05-03 00:53:45.627552136 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1006'\n sku: FAL-1006\n name: FLD-0029\n description: FALDA LARGA DE TUL ROSA CON PERLAS TABA S13\n price_base: '201.30'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 20:12:04.589931'\n updated_at: '2020-02-19 20:12:04.629339'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001006'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1006'\n type: *3\n value: 1006\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-1006\n type: *7\n value: FAL-1006\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0029\n type: *8\n value: FLD-0029\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA LARGA DE TUL ROSA CON PERLAS TABA S13\n type: *6\n value: FALDA LARGA DE TUL ROSA CON PERLAS TABA S13\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '201.3'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2013E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 1234.png\n type: *2\n value: 1234.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001006'\n type: *2\n value: '0001006'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 20:12:04.589931'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 1234.png\n 3 El producto FAL-1006 fue modificado. 189.186.240.251 4881c8cb-0761-4c46-8ad9-a659d45b0521 2020-05-03 00:53:45.666835 32758 990 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '990'\n is_parent: false\n sku: BLU-990\n name: BLS-0110\n description: BLUSA FLOREADA APEACH\n price_base: '240.0'\n price_sale: '599.0'\n img_product: PHOTO-2020-04-28-14-28-51_-_copia__2_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000990'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-19 00:47:55.743276'\n updated_at: &12 2020-05-03 00:58:46.319238278 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '990'\n sku: BLU-990\n name: BLS-0110\n description: BLUSA FLOREADA APEACH\n price_base: '240.00'\n price_sale: '599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-19 00:47:55.743276'\n updated_at: '2020-02-19 00:47:55.786235'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0000990'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '990'\n type: *3\n value: 990\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-990\n type: *7\n value: BLU-990\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0110\n type: *8\n value: BLS-0110\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA FLOREADA APEACH\n type: *6\n value: BLUSA FLOREADA APEACH\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '240.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.24E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.599E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: PHOTO-2020-04-28-14-28-51_-_copia__2_.jpg\n type: *2\n value: PHOTO-2020-04-28-14-28-51_-_copia__2_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000990'\n type: *2\n value: '0000990'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-19 00:47:55.743276'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- PHOTO-2020-04-28-14-28-51_-_copia__2_.jpg\n 3 El producto BLU-990 fue modificado. 189.186.240.251 79519453-d292-44c7-975a-41278394226f 2020-05-03 00:58:46.358752 32759 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-03-24 02:01:00.093798000 Z\n- &1 2020-04-30 22:33:51.383292000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-03 23:26:54.540797933 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537811\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537811\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537715\n mask_addr: 4294967295\nsign_in_count:\n- 61\n- 62\n 125 \N 177.228.110.115 7274c8e1-37a1-4252-ae10-3cad2458d671 2020-05-03 23:26:54.568997 32760 18 User \N \N 18 User \N update ---\nunique_session_id:\n- T2yXxB92wn_phyTkEFQA\n- 6-rn6r2WqcS4sBzkAgHa\n 126 \N 177.228.110.115 7274c8e1-37a1-4252-ae10-3cad2458d671 2020-05-03 23:26:54.591235 32761 2418 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 928\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.239E3\ntotal: !ruby/object:BigDecimal 18:0.136E4\nstatus: 0\ndate_sale: 2020-05-03\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-324\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.115 a21ea61a-94b3-4aa1-850a-afba02650443 2020-05-03 23:29:34.028113 32762 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 177.228.110.115 a21ea61a-94b3-4aa1-850a-afba02650443 2020-05-03 23:29:34.083334 32763 2418 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.110.115 11bcecaf-b2bf-4408-8b66-23ea957214c0 2020-05-03 23:29:38.244573 32764 3282 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.136E4\nmove_type: '1'\nsale_id: 2418\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-324\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.136E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-324 177.228.110.115 11bcecaf-b2bf-4408-8b66-23ea957214c0 2020-05-03 23:29:38.267143 32765 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-21 21:22:13.662588000 Z\n- &1 2020-03-22 01:36:01.974466000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-03 23:30:27.797334361 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537715\n mask_addr: 4294967295\nsign_in_count:\n- 122\n- 123\n 249 \N 177.228.110.115 08feb5f8-cb3f-40e4-9bae-b16d335388bb 2020-05-03 23:30:27.80397 32766 8 User \N \N 8 User \N update ---\nunique_session_id:\n- vBq4dSG86cifJYuBYxTs\n- wAx-7zy8aXoUkBxrNohh\n 250 \N 177.228.110.115 08feb5f8-cb3f-40e4-9bae-b16d335388bb 2020-05-03 23:30:27.819081 32767 929 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.527E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 527.0 177.228.110.115 53db1043-8a14-4eb7-98b6-59cd09922a77 2020-05-03 23:33:26.557864 32768 2419 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 929\namount: !ruby/object:BigDecimal 18:0.589E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2020-05-03\nsaletype: 1\nseller_id: 26\nsale_code: PV2-V-906\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.115 aa54cb09-c434-4bfe-968d-9539095036e7 2020-05-03 23:33:44.766942 32769 1677 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 177.228.110.115 aa54cb09-c434-4bfe-968d-9539095036e7 2020-05-03 23:33:44.814585 32770 2419 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.110.115 38f0a584-dd15-413c-9371-80caf2955758 2020-05-03 23:33:47.882187 32771 3283 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 929\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.589E3\nmove_type: '1'\nsale_id: 2419\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-906\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.589E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-906 177.228.110.115 38f0a584-dd15-413c-9371-80caf2955758 2020-05-03 23:33:47.903047 32772 3283 CashRegistersMove \N \N 8 User \N destroy ---\nopen_cash_register_id: 929\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.589E3\nmove_type: '1'\nsale_id: 2419\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-906\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.589E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 177.228.110.115 79b5e1c0-a3d1-4441-84e3-78e8e5166de5 2020-05-03 23:33:50.176574 32842 539 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-05-03\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 177.228.110.115 ece6d470-c96f-4e8e-b1f4-8747f1a5eb55 2020-05-04 00:08:45.640693 32773 3284 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 929\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.589E3\nmove_type: '1'\nsale_id: 2419\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-906\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1235'\n 1 movimiento de efectivo por venta con folio PV2-V-906 177.228.110.115 7cc5ded1-042d-46c0-9fc0-4de21715fb96 2020-05-03 23:34:07.247791 32774 1675 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 177.228.110.115 2cdd72ef-2afc-453d-b615-1fe0e7a2bd67 2020-05-03 23:34:37.804428 32775 537 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-05-03\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 177.228.110.115 291fbeed-3c52-4ebd-a04a-039844f77363 2020-05-03 23:34:45.54543 32776 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-04-30 22:33:51.383292000 Z\n- &1 2020-05-03 23:26:54.540797000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-03 23:35:01.893124345 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537811\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537715\n mask_addr: 4294967295\nsign_in_count:\n- 62\n- 63\n 127 \N 177.228.110.115 38a08885-628d-45c9-9e19-427257e382e9 2020-05-03 23:35:01.899196 32777 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 6-rn6r2WqcS4sBzkAgHa\n- o-7Z6SJQsdwA2ung3rw3\n 128 \N 177.228.110.115 38a08885-628d-45c9-9e19-427257e382e9 2020-05-03 23:35:01.913052 32778 2418 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-324 cancelada. 177.228.110.115 f4d80075-5110-45f7-903d-52be71c2b551 2020-05-03 23:35:19.536257 32779 3282 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 928\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.136E4\nmove_type: '1'\nsale_id: 2418\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-324\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.136E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 177.228.110.115 f4d80075-5110-45f7-903d-52be71c2b551 2020-05-03 23:35:19.55906 32780 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 177.228.110.115 f4d80075-5110-45f7-903d-52be71c2b551 2020-05-03 23:35:19.584012 32781 2420 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 928\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.239E3\ntotal: !ruby/object:BigDecimal 18:0.136E4\nstatus: 0\ndate_sale: 2020-05-03\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-325\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.115 3539d0ef-6dd3-4e7d-92b7-b6993dbb8dc5 2020-05-03 23:35:46.950434 32782 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 177.228.110.115 3539d0ef-6dd3-4e7d-92b7-b6993dbb8dc5 2020-05-03 23:35:46.980723 32783 2420 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.110.115 6ea12b7c-3f60-446f-9c93-b5d43175afb5 2020-05-03 23:35:55.274684 32784 3285 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.136E4\nmove_type: '1'\nsale_id: 2420\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-325\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1231'\n 1 movimiento de efectivo por venta con folio PV3-V-325 177.228.110.115 6ea12b7c-3f60-446f-9c93-b5d43175afb5 2020-05-03 23:35:55.297268 32785 537 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-05-03\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 177.228.110.115 6a6045f5-34c1-46b6-8587-19eb292f2efa 2020-05-03 23:36:09.05853 32786 1828 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1011\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 177.228.110.115 6a6045f5-34c1-46b6-8587-19eb292f2efa 2020-05-03 23:36:09.083407 32787 315 Customer \N \N 18 User \N create ---\nnick_name: XOCHILT LEY\nphone: "(667) 162-3129"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.4E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente XOCHILT LEY fue registrado. 177.228.110.115 3e8e2927-7dc5-4d3f-b038-95c09bce71d3 2020-05-03 23:36:51.802085 32788 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-05-01 23:16:32.946809000 Z\n- &1 2020-05-03 00:18:10.320726000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-03 23:39:02.426278435 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537715\n mask_addr: 4294967295\nsign_in_count:\n- 1551\n- 1552\n 3104 \N 177.228.110.115 ec0e56d4-3044-483b-88a0-5ba5d41e3c11 2020-05-03 23:39:02.433103 32789 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-hDS7xt3jpMLsoF9B5Pz"\n- hzNTJw-egyP8Wdg6deyz\n 3105 \N 177.228.110.115 ec0e56d4-3044-483b-88a0-5ba5d41e3c11 2020-05-03 23:39:02.449839 32790 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-03-14 22:37:01.551814000 Z\n- &1 2020-04-29 00:28:39.318569000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-03 23:42:40.330766656 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083899\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537811\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537811\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537715\n mask_addr: 4294967295\nsign_in_count:\n- 110\n- 111\n 222 \N 177.228.110.115 be462034-487a-40fb-8547-e74d02f96104 2020-05-03 23:42:40.338395 32791 9 User \N \N 9 User \N update ---\nunique_session_id:\n- xQLhppQJEVTKWv3bKMrP\n- xgWG-P-F3s5unyiAxUAs\n 223 \N 177.228.110.115 be462034-487a-40fb-8547-e74d02f96104 2020-05-03 23:42:40.368795 32792 2421 Sale \N \N 9 User \N create ---\ncustomer_id: 312\nuser_id: 9\nopen_cash_register_id: 927\namount: !ruby/object:BigDecimal 18:0.3198E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3198E4\nstatus: 0\ndate_sale: 2020-05-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1188\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.115 0c4260d7-f6d2-4ed6-b1ee-411c8e60155f 2020-05-03 23:43:21.306893 32793 1821 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 177.228.110.115 0c4260d7-f6d2-4ed6-b1ee-411c8e60155f 2020-05-03 23:43:21.338523 32794 2421 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.110.115 52df5564-39d5-4d94-a759-3c857340ef7a 2020-05-03 23:43:29.622829 33004 18 User \N \N 18 User \N update ---\nunique_session_id:\n- VvQZHm3WcwNB2_oyDuPm\n- _S8WwsAafdZoTx6xk2YT\n 144 \N 177.228.111.139 ae4c910e-696c-4ff7-8f4f-316d4240288e 2020-05-13 23:50:04.744476 32795 3286 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 927\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.2E4\nmove_type: '1'\nsale_id: 2421\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1188\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1235'\n 1 movimiento de efectivo por venta con folio PV1-V-1188 177.228.110.115 52df5564-39d5-4d94-a759-3c857340ef7a 2020-05-03 23:43:29.643927 32796 2421 Sale \N \N 9 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-1188 cancelada. 177.228.110.115 d5543517-af72-48d2-9a62-d83a2796457d 2020-05-03 23:44:42.22359 32797 3286 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 927\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.2E4\nmove_type: '1'\nsale_id: 2421\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1188\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1235'\n 2 \N 177.228.110.115 d5543517-af72-48d2-9a62-d83a2796457d 2020-05-03 23:44:42.24551 32798 1821 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 177.228.110.115 d5543517-af72-48d2-9a62-d83a2796457d 2020-05-03 23:44:42.2728 32799 2422 Sale \N \N 9 User \N create ---\ncustomer_id: 312\nuser_id: 9\nopen_cash_register_id: 927\namount: !ruby/object:BigDecimal 18:0.3198E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3198E4\nstatus: 0\ndate_sale: 2020-05-03\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1189\nexpiration_date: 2020-06-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.115 22dd3cc0-192f-4473-ab56-226ccb4d5804 2020-05-03 23:45:06.841464 32800 1821 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 177.228.110.115 22dd3cc0-192f-4473-ab56-226ccb4d5804 2020-05-03 23:45:06.867259 32801 2422 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1189 cancelada. 177.228.110.115 bf47dcba-4877-4235-ac15-5069e1d94d73 2020-05-03 23:46:18.994943 32802 1821 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 177.228.110.115 bf47dcba-4877-4235-ac15-5069e1d94d73 2020-05-03 23:46:19.017619 32803 2423 Sale \N \N 9 User \N create ---\ncustomer_id: 312\nuser_id: 9\nopen_cash_register_id: 927\namount: !ruby/object:BigDecimal 18:0.3198E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3198E4\nstatus: 0\ndate_sale: 2020-05-03\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1190\nexpiration_date: 2020-06-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.115 2acb69c5-e5ce-4ed0-a770-08e84ef78f6d 2020-05-03 23:46:39.119949 32804 1821 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 177.228.110.115 2acb69c5-e5ce-4ed0-a770-08e84ef78f6d 2020-05-03 23:46:39.148118 32805 3287 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 927\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.2E4\nmove_type: '1'\nsale_id: 2423\ncardnumber: 1236\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1190\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1190 177.228.110.115 1540b443-6166-4791-a681-b90ca499ff19 2020-05-03 23:47:05.592556 32806 2423 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 177.228.110.115 e616db8e-840f-4731-9c17-9ec95828eecc 2020-05-03 23:47:13.566799 32807 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-03 23:26:54.540797000 Z\n- &1 2020-05-03 23:35:01.893124000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-03 23:47:35.345145441 Z\nsign_in_count:\n- 63\n- 64\n 129 \N 177.228.110.115 58a5047c-d662-4836-a3fa-8dd486f6f436 2020-05-03 23:47:35.351078 32808 18 User \N \N 18 User \N update ---\nunique_session_id:\n- o-7Z6SJQsdwA2ung3rw3\n- na5u_Yo_2hwKm-3wv9yW\n 130 \N 177.228.110.115 58a5047c-d662-4836-a3fa-8dd486f6f436 2020-05-03 23:47:35.368535 32809 2424 Sale \N \N 18 User \N create ---\ncustomer_id: 315\nuser_id: 18\nopen_cash_register_id: 928\namount: !ruby/object:BigDecimal 18:0.2188E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2188E4\nstatus: 0\ndate_sale: 2020-05-03\nsaletype: 0\nseller_id: 24\nsale_code: PV3-V-326\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.115 8380859f-303a-49e5-a3af-15fe052a4510 2020-05-03 23:51:17.600922 32810 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 11 \N 177.228.110.115 8380859f-303a-49e5-a3af-15fe052a4510 2020-05-03 23:51:17.631298 32811 1828 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 177.228.110.115 8380859f-303a-49e5-a3af-15fe052a4510 2020-05-03 23:51:17.655438 32812 3288 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.13E4\nmove_type: '1'\nsale_id: 2424\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1235'\n 1 \N 177.228.110.115 f8f0ed7b-6cc4-47a1-8897-600b9fa45476 2020-05-03 23:52:24.466507 32813 2424 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 177.228.110.115 f8f0ed7b-6cc4-47a1-8897-600b9fa45476 2020-05-03 23:52:24.490393 32814 3288 CashRegistersMove \N \N 18 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV3-V-326 177.228.110.115 f8f0ed7b-6cc4-47a1-8897-600b9fa45476 2020-05-03 23:52:24.501637 32815 1121 Product \N \N 18 User \N create ---\nsku: BOL-1121\nname: 2BLCV20395\ndescription: BOLSO CLOE NEGRO Y ROSA ELECTRICO\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1121 fue creado. 177.228.110.115 4962921f-29ab-4863-b846-0d2d3249c258 2020-05-03 23:55:49.488291 32816 1121 Product \N \N 18 User \N update ---\nbarcode:\n- ''\n- '0001121'\n 2 \N 177.228.110.115 4962921f-29ab-4863-b846-0d2d3249c258 2020-05-03 23:55:49.522936 32817 1829 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1121\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 177.228.110.115 4962921f-29ab-4863-b846-0d2d3249c258 2020-05-03 23:55:49.555422 33336 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-06-11 02:37:27.251971000 Z\n- &1 2020-06-13 06:32:55.661435000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-14 06:43:40.910474577 Z\nsign_in_count:\n- 92\n- 93\n 187 \N 177.228.110.67 09cbaf15-a162-49af-8e46-da1842f43b6c 2020-06-14 06:43:40.95797 32818 295 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-35\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nobservations: ''\npurchase_date: 2020-05-03\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-35 por $ 1699.0 MXN creada. 177.228.110.115 5fac8599-83ec-4607-b8e3-31ed774a6c29 2020-05-03 23:55:58.69867 32819 1829 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 177.228.110.115 5fac8599-83ec-4607-b8e3-31ed774a6c29 2020-05-03 23:55:58.721988 32820 2425 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 928\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2020-05-03\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-327\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.115 5b1059d2-2c5f-4bb6-9216-4964e792a879 2020-05-03 23:56:18.263957 32821 1829 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 177.228.110.115 5b1059d2-2c5f-4bb6-9216-4964e792a879 2020-05-03 23:56:18.293867 32822 2425 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.110.115 18ee51c9-7718-4109-bc3f-4ce0b6044a52 2020-05-03 23:56:27.574605 32823 3289 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1699E4\nmove_type: '1'\nsale_id: 2425\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-327\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1256'\n 1 movimiento de efectivo por venta con folio PV3-V-327 177.228.110.115 18ee51c9-7718-4109-bc3f-4ce0b6044a52 2020-05-03 23:56:27.59496 32824 2426 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 928\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.139E3\ntotal: !ruby/object:BigDecimal 18:0.76E3\nstatus: 0\ndate_sale: 2020-05-03\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-328\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.115 d22e21df-2c12-43b1-84c5-9dd9de34c54a 2020-05-04 00:03:05.331177 32825 926 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 177.228.110.115 d22e21df-2c12-43b1-84c5-9dd9de34c54a 2020-05-04 00:03:05.359539 32826 2426 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.110.115 09b1a74f-a73d-44a3-851f-97f70ccb4c2e 2020-05-04 00:03:13.47105 32827 3290 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.76E3\nmove_type: '1'\nsale_id: 2426\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-328\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '45255'\n 1 movimiento de efectivo por venta con folio PV3-V-328 177.228.110.115 09b1a74f-a73d-44a3-851f-97f70ccb4c2e 2020-05-04 00:03:13.491431 32828 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-03-22 01:36:01.974466000 Z\n- &1 2020-05-03 23:30:27.797334000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-04 00:05:02.387437964 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537715\n mask_addr: 4294967295\nsign_in_count:\n- 123\n- 124\n 251 \N 177.228.110.115 4f9e59d6-3571-4fd8-97ad-cbf5efc40a6e 2020-05-04 00:05:02.394547 32829 8 User \N \N 8 User \N update ---\nunique_session_id:\n- wAx-7zy8aXoUkBxrNohh\n- Gt9Def-As6fbLYe8F92x\n 252 \N 177.228.110.115 4f9e59d6-3571-4fd8-97ad-cbf5efc40a6e 2020-05-04 00:05:02.410254 32830 1675 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 177.228.110.115 c57422ac-b733-4989-9250-0e96a86bd3d7 2020-05-04 00:05:51.548179 32831 538 Transfer \N \N 8 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-05-03\nuser_id: 8\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 177.228.110.115 129e59dc-5828-4281-b71f-8bf3bb439f4b 2020-05-04 00:06:23.438026 32832 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-04-29 00:28:39.318569000 Z\n- &1 2020-05-03 23:42:40.330766000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-04 00:06:41.924808452 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537811\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537715\n mask_addr: 4294967295\nsign_in_count:\n- 111\n- 112\n 224 \N 177.228.110.115 d4a1f2bd-376b-45d1-8b6a-c0c386299479 2020-05-04 00:06:41.935007 32833 9 User \N \N 9 User \N update ---\nunique_session_id:\n- xgWG-P-F3s5unyiAxUAs\n- TACCVHtxG3mzMVhcztSv\n 225 \N 177.228.110.115 d4a1f2bd-376b-45d1-8b6a-c0c386299479 2020-05-04 00:06:41.955445 32834 1757 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 177.228.110.115 e98632ea-fee0-4925-9b4c-b2c3d59925b0 2020-05-04 00:07:45.340125 32835 539 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-05-03\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 177.228.110.115 c2ba7130-5cc1-4314-8903-71dca06bed4b 2020-05-04 00:07:49.315332 32836 536 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-05-03\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 177.228.110.115 ed44310a-8eb0-4ae6-9fce-5974c948876d 2020-05-04 00:08:12.076512 32837 730 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 177.228.110.115 ed44310a-8eb0-4ae6-9fce-5974c948876d 2020-05-04 00:08:12.093099 32838 1830 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 967\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 177.228.110.115 ed44310a-8eb0-4ae6-9fce-5974c948876d 2020-05-04 00:08:12.113821 32839 1462 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 177.228.110.115 ed44310a-8eb0-4ae6-9fce-5974c948876d 2020-05-04 00:08:12.180747 32840 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-03 23:35:01.893124000 Z\n- &1 2020-05-03 23:47:35.345145000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-04 00:08:33.641072367 Z\nsign_in_count:\n- 64\n- 65\n 131 \N 177.228.110.115 02f66944-168e-4808-ae09-1069b23ad73a 2020-05-04 00:08:33.647251 32841 18 User \N \N 18 User \N update ---\nunique_session_id:\n- na5u_Yo_2hwKm-3wv9yW\n- 5isNJAxev8uTcay3QxsF\n 132 \N 177.228.110.115 02f66944-168e-4808-ae09-1069b23ad73a 2020-05-04 00:08:33.661534 33337 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ozdSofNj2GosM5_xUJsh\n- r7L7s6FtwQt3bjAhe_bs\n 188 \N 177.228.110.67 09cbaf15-a162-49af-8e46-da1842f43b6c 2020-06-14 06:43:40.979307 32843 1831 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1091\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 177.228.110.115 ece6d470-c96f-4e8e-b1f4-8747f1a5eb55 2020-05-04 00:08:45.660954 32844 538 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-05-03\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 177.228.110.115 c6b80f19-9a04-467b-b397-8d2891081495 2020-05-04 00:08:51.301538 32845 1828 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 177.228.110.115 c6b80f19-9a04-467b-b397-8d2891081495 2020-05-04 00:08:51.318929 32846 2427 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 928\namount: !ruby/object:BigDecimal 18:0.978E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.978E3\nstatus: 0\ndate_sale: 2020-05-03\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-329\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.115 03eb67d0-8be3-46da-a36d-5844dacc471b 2020-05-04 00:09:36.772905 32847 1831 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 177.228.110.115 03eb67d0-8be3-46da-a36d-5844dacc471b 2020-05-04 00:09:36.828018 32848 1828 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 177.228.110.115 03eb67d0-8be3-46da-a36d-5844dacc471b 2020-05-04 00:09:36.851854 32849 2427 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.110.115 0a9885aa-46b1-4370-a6ea-a22096259d2f 2020-05-04 00:09:45.563188 32850 3291 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.978E3\nmove_type: '1'\nsale_id: 2427\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-329\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1255'\n 1 movimiento de efectivo por venta con folio PV3-V-329 177.228.110.115 0a9885aa-46b1-4370-a6ea-a22096259d2f 2020-05-04 00:09:46.021735 32851 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-05-03 23:30:27.797334000 Z\n- &1 2020-05-04 00:05:02.387437000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-04 00:19:15.181323772 Z\nsign_in_count:\n- 124\n- 125\n 253 \N 177.228.110.115 c6a34c2e-8e44-4537-9d47-afac173cd5dc 2020-05-04 00:19:15.187398 32852 8 User \N \N 8 User \N update ---\nunique_session_id:\n- Gt9Def-As6fbLYe8F92x\n- nki73tz46tRKN2sHkrxs\n 254 \N 177.228.110.115 c6a34c2e-8e44-4537-9d47-afac173cd5dc 2020-05-04 00:19:15.201851 32853 2428 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 929\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.7E2\ntotal: !ruby/object:BigDecimal 18:0.659E3\nstatus: 0\ndate_sale: 2020-05-03\nsaletype: 1\nseller_id: 26\nsale_code: PV2-V-907\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.115 f669c78e-9398-4f38-bc69-13d9ab0ddfd9 2020-05-04 00:21:02.95972 32854 1651 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 177.228.110.115 f669c78e-9398-4f38-bc69-13d9ab0ddfd9 2020-05-04 00:21:02.987206 32855 2428 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.110.115 45f4b9ea-a7a4-422a-b7fd-c9e8ae0e0fac 2020-05-04 00:21:35.710427 32856 3292 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 929\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.659E3\nmove_type: '1'\nsale_id: 2428\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-907\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '12566'\n 1 movimiento de efectivo por venta con folio PV2-V-907 177.228.110.115 45f4b9ea-a7a4-422a-b7fd-c9e8ae0e0fac 2020-05-04 00:21:35.740139 32857 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-03 23:47:35.345145000 Z\n- &1 2020-05-04 00:08:33.641072000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-04 00:22:04.955786610 Z\nsign_in_count:\n- 65\n- 66\n 133 \N 177.228.110.115 4eb8a4de-6d7e-48e8-becd-ecba3ab0248c 2020-05-04 00:22:04.962191 32858 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 5isNJAxev8uTcay3QxsF\n- agjcod8t2cqQ88iiFPMH\n 134 \N 177.228.110.115 4eb8a4de-6d7e-48e8-becd-ecba3ab0248c 2020-05-04 00:22:04.977127 32859 1122 Product \N \N 18 User \N create ---\nsku: ZAP-1122\nname: KESWI\ndescription: TENNIS PLATAFORMA CLOE\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 13\nproduct_service_key: '01010101'\n 1 El producto ZAP-1122 fue creado. 177.228.110.115 d159c8fe-0976-4b2c-8b17-3aed48f8e4ef 2020-05-04 00:23:42.538512 32860 1122 Product \N \N 18 User \N update ---\nbarcode:\n- ''\n- '0001122'\n 2 \N 177.228.110.115 d159c8fe-0976-4b2c-8b17-3aed48f8e4ef 2020-05-04 00:23:42.570408 32861 1832 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1122\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 177.228.110.115 d159c8fe-0976-4b2c-8b17-3aed48f8e4ef 2020-05-04 00:23:42.598621 32862 296 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-36\namount: !ruby/object:BigDecimal 18:0.23985E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.23985E4\nobservations: ''\npurchase_date: 2020-05-03\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-36 por $ 2398.5 MXN creada. 177.228.110.115 9b11a894-c2c7-42c9-889c-7fb5dc53439b 2020-05-04 00:24:01.501819 32863 1832 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 177.228.110.115 9b11a894-c2c7-42c9-889c-7fb5dc53439b 2020-05-04 00:24:01.528522 32864 2420 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-325 cancelada. 177.228.110.115 819222d8-c971-409d-8dd5-ff29d6b54e79 2020-05-04 00:24:15.271986 32865 3285 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 928\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.136E4\nmove_type: '1'\nsale_id: 2420\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-325\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1231'\n 2 \N 177.228.110.115 819222d8-c971-409d-8dd5-ff29d6b54e79 2020-05-04 00:24:15.292888 32866 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.9E1\n 12 \N 177.228.110.115 819222d8-c971-409d-8dd5-ff29d6b54e79 2020-05-04 00:24:15.317214 32867 2429 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 928\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.239E3\ntotal: !ruby/object:BigDecimal 18:0.136E4\nstatus: 0\ndate_sale: 2020-05-03\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-330\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.115 63707c29-8f73-4aeb-912e-f4eaf64d3870 2020-05-04 00:24:49.461338 32868 1832 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 177.228.110.115 63707c29-8f73-4aeb-912e-f4eaf64d3870 2020-05-04 00:24:49.49098 32869 2429 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.110.115 ef15a3ec-724f-44a1-a3c4-9d46e0c3ca8c 2020-05-04 00:24:58.529039 32870 3293 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2429\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-330\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '22555'\n 1 movimiento de efectivo por venta con folio PV3-V-330 177.228.110.115 ef15a3ec-724f-44a1-a3c4-9d46e0c3ca8c 2020-05-04 00:24:58.551359 32871 3293 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 928\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2429\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-330\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '22555'\n 2 \N 177.228.110.115 223e1a75-23b8-4701-b11f-d9300f552020 2020-05-04 00:25:13.818982 32872 3294 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.136E4\nmove_type: '1'\nsale_id: 2429\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-330\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '22555'\n 1 movimiento de efectivo por venta con folio PV3-V-330 177.228.110.115 4145549c-12f2-4f48-ab33-65263febb518 2020-05-04 00:25:19.994936 32873 1123 Product \N \N 18 User \N create ---\nsku: BOL-1123\nname: 1BLCP20990\ndescription: BACK PACK CLOE LIMONES\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1123 fue creado. 177.228.110.115 a1f5f3c6-a43d-4dec-9b86-eff7a4afb705 2020-05-04 00:27:01.98261 32874 1123 Product \N \N 18 User \N update ---\nbarcode:\n- ''\n- '0001123'\n 2 \N 177.228.110.115 a1f5f3c6-a43d-4dec-9b86-eff7a4afb705 2020-05-04 00:27:02.013602 32875 1833 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1123\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 177.228.110.115 a1f5f3c6-a43d-4dec-9b86-eff7a4afb705 2020-05-04 00:27:02.044362 32876 1124 Product \N \N 18 User \N create ---\nsku: BOL-1124\nname: 1BLCP20989\ndescription: BOLSO CLOE BLANCO MASCADA LIMONES\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1124 fue creado. 177.228.110.115 27c6e630-ac8b-4278-a7ae-3339c739f673 2020-05-04 00:27:55.120404 32877 1124 Product \N \N 18 User \N update ---\nbarcode:\n- ''\n- '0001124'\n 2 \N 177.228.110.115 27c6e630-ac8b-4278-a7ae-3339c739f673 2020-05-04 00:27:55.278303 32878 1834 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1124\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 177.228.110.115 27c6e630-ac8b-4278-a7ae-3339c739f673 2020-05-04 00:27:55.3108 32879 297 Purchase \N \N 18 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-37\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nobservations: ''\npurchase_date: 2020-05-03\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-37 por $ 1499.0 MXN creada. 177.228.110.115 c62a76f9-f6b1-4825-94c3-c403a7e992ac 2020-05-04 00:27:58.84696 32880 1833 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 177.228.110.115 c62a76f9-f6b1-4825-94c3-c403a7e992ac 2020-05-04 00:27:58.879969 32881 1834 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 177.228.110.115 c62a76f9-f6b1-4825-94c3-c403a7e992ac 2020-05-04 00:27:58.911582 32882 2430 Sale \N \N 18 User \N create ---\ncustomer_id: 3\nuser_id: 18\nopen_cash_register_id: 928\namount: !ruby/object:BigDecimal 18:0.4597E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4597E4\nstatus: 0\ndate_sale: 2020-05-03\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-331\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.115 0a4c4359-9b97-49b6-bfc6-d78a8bd366d1 2020-05-04 00:29:41.211783 32883 1834 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 177.228.110.115 0a4c4359-9b97-49b6-bfc6-d78a8bd366d1 2020-05-04 00:29:41.253038 32884 1833 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 177.228.110.115 0a4c4359-9b97-49b6-bfc6-d78a8bd366d1 2020-05-04 00:29:41.289588 32885 1832 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 177.228.110.115 0a4c4359-9b97-49b6-bfc6-d78a8bd366d1 2020-05-04 00:29:41.323318 32886 2430 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-331 cancelada. 177.228.110.115 1a6cf0cd-ff7b-4e85-9efa-14ca4d47c2b2 2020-05-04 00:29:47.123737 32887 1832 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 177.228.110.115 1a6cf0cd-ff7b-4e85-9efa-14ca4d47c2b2 2020-05-04 00:29:47.161002 32888 1833 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 177.228.110.115 1a6cf0cd-ff7b-4e85-9efa-14ca4d47c2b2 2020-05-04 00:29:47.187197 32889 1834 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 177.228.110.115 1a6cf0cd-ff7b-4e85-9efa-14ca4d47c2b2 2020-05-04 00:29:47.211112 32890 2431 Sale \N \N 18 User \N create ---\ncustomer_id: 3\nuser_id: 18\nopen_cash_register_id: 928\namount: !ruby/object:BigDecimal 18:0.4597E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4597E4\nstatus: 0\ndate_sale: 2020-05-03\nsaletype: 0\nseller_id: 24\nsale_code: PV3-V-332\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.115 cbb9caa6-dfa0-4541-919d-a3625dea9daf 2020-05-04 00:30:24.136592 32891 1834 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 177.228.110.115 cbb9caa6-dfa0-4541-919d-a3625dea9daf 2020-05-04 00:30:24.164933 32892 1833 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 177.228.110.115 cbb9caa6-dfa0-4541-919d-a3625dea9daf 2020-05-04 00:30:24.189944 32893 1832 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 177.228.110.115 cbb9caa6-dfa0-4541-919d-a3625dea9daf 2020-05-04 00:30:24.245239 32894 3295 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.2499E4\nmove_type: '1'\nsale_id: 2431\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1255'\n 1 \N 177.228.110.115 01d2017f-a3b2-4ffc-85e5-ddae24556d90 2020-05-04 00:30:56.971018 32895 2431 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 177.228.110.115 01d2017f-a3b2-4ffc-85e5-ddae24556d90 2020-05-04 00:30:56.996718 32896 3295 CashRegistersMove \N \N 18 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV3-V-332 177.228.110.115 01d2017f-a3b2-4ffc-85e5-ddae24556d90 2020-05-04 00:30:57.008455 32897 316 Customer \N \N 18 User \N create ---\nnick_name: BERENICE CLIENTE INSTAGRAM\nphone: "(667) 132-6148"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BERENICE CLIENTE INSTAGRAM fue registrado. 177.228.110.115 03c0b481-5c93-4ae2-97c5-74832b45a3bb 2020-05-04 00:35:19.727161 32898 2432 Sale \N \N 18 User \N create ---\ncustomer_id: 316\nuser_id: 18\nopen_cash_register_id: 928\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-05-03\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-333\nexpiration_date: 2020-06-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.115 e32fa2ed-466d-4fbb-b444-520c44e1bfd6 2020-05-04 00:35:29.67662 32899 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 13 \N 177.228.110.115 e32fa2ed-466d-4fbb-b444-520c44e1bfd6 2020-05-04 00:35:29.704415 32900 3296 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2432\ncardnumber: 1256\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-333\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-333 177.228.110.115 665f1e5a-012c-4477-aaf2-89bf456cb541 2020-05-04 00:35:44.922704 32901 2432 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 177.228.110.115 511bd14f-a658-40f0-864a-4b87c3061f7a 2020-05-04 00:35:46.314838 32902 1125 Product \N \N 18 User \N create ---\nsku: BOL-1125\nname: URKE945\ndescription: PORTA LAP AZUL\nprice_base: !ruby/object:BigDecimal 18:0.9995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1999E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1125 fue creado. 177.228.110.115 7f47343c-9e92-415b-84a4-cd3b08abc29e 2020-05-04 00:39:44.240259 32903 1125 Product \N \N 18 User \N update ---\nbarcode:\n- ''\n- '0001125'\n 2 \N 177.228.110.115 7f47343c-9e92-415b-84a4-cd3b08abc29e 2020-05-04 00:39:44.266701 32904 1835 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1125\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 177.228.110.115 7f47343c-9e92-415b-84a4-cd3b08abc29e 2020-05-04 00:39:44.292432 32905 298 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-38\namount: !ruby/object:BigDecimal 18:0.9995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9995E3\nobservations: ''\npurchase_date: 2020-05-03\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-38 por $ 999.5 MXN creada. 177.228.110.115 20b127ec-3667-4c24-8b78-4d03eccfd1bc 2020-05-04 00:39:50.676865 32906 1835 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 177.228.110.115 20b127ec-3667-4c24-8b78-4d03eccfd1bc 2020-05-04 00:39:50.703414 32907 2433 Sale \N \N 18 User \N create ---\ncustomer_id: 33\nuser_id: 18\nopen_cash_register_id: 928\namount: !ruby/object:BigDecimal 18:0.1999E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1999E4\nstatus: 0\ndate_sale: 2020-05-03\nsaletype: 0\nseller_id: 24\nsale_code: PV3-V-334\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.115 02e1f354-a9dc-4d81-95cc-b944d54f9e06 2020-05-04 00:40:41.973518 32908 1835 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 177.228.110.115 02e1f354-a9dc-4d81-95cc-b944d54f9e06 2020-05-04 00:40:42.001855 32909 1126 Product \N \N 18 User \N create ---\nsku: ZAP-1126\nname: CONQUES\ndescription: 'MOCASIN ROSA CON EVILLA '\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 13\nproduct_service_key: '01010101'\n 1 El producto ZAP-1126 fue creado. 177.228.110.115 8fb20598-23e2-4297-9aab-67562e18ee77 2020-05-04 00:44:51.645625 32910 1126 Product \N \N 18 User \N update ---\nbarcode:\n- ''\n- '0001126'\n 2 \N 177.228.110.115 8fb20598-23e2-4297-9aab-67562e18ee77 2020-05-04 00:44:51.697452 32911 1836 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1126\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 177.228.110.115 8fb20598-23e2-4297-9aab-67562e18ee77 2020-05-04 00:44:51.725859 33360 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 1ujyFDCtx6jp_ZLqBtd8\n- PYKf3FAc7vF8CdiDi2jv\n 438 \N 189.186.226.204 92a19bf7-64d4-4765-8f9a-647fde54c00d 2020-06-20 01:27:45.965663 32912 299 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-39\namount: !ruby/object:BigDecimal 18:0.2998E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2998E4\nobservations: ''\npurchase_date: 2020-05-03\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-39 por $ 2998.0 MXN creada. 177.228.110.115 c30a5663-e49f-458a-81ea-64e2030280da 2020-05-04 00:45:12.452456 32913 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 177.228.110.115 c30a5663-e49f-458a-81ea-64e2030280da 2020-05-04 00:45:12.482341 32914 317 Customer \N \N 18 User \N create ---\nnick_name: JANETH BELTRAN\nphone: "(667) 710-1010"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JANETH BELTRAN fue registrado. 177.228.110.115 1f60d66e-edb6-4301-ac19-d1c41b900820 2020-05-04 00:46:41.505018 32915 1127 Product \N \N 18 User \N create ---\nsku: BOL-1127\nname: BACKPACKCLOE\ndescription: BACK PACK CLOE LETRAS\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1127 fue creado. 177.228.110.115 5c7fe20a-325f-4236-a84e-f91d15b41940 2020-05-04 00:50:25.690522 32916 1127 Product \N \N 18 User \N update ---\nbarcode:\n- ''\n- '0001127'\n 2 \N 177.228.110.115 5c7fe20a-325f-4236-a84e-f91d15b41940 2020-05-04 00:50:25.723228 32917 1837 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1127\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 177.228.110.115 5c7fe20a-325f-4236-a84e-f91d15b41940 2020-05-04 00:50:25.750245 32918 300 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-40\namount: !ruby/object:BigDecimal 18:0.8995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.8995E3\nobservations: ''\npurchase_date: 2020-05-03\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-40 por $ 899.5 MXN creada. 177.228.110.115 5d3641eb-4e55-4ea1-8f8f-2924344abc7c 2020-05-04 00:50:29.94402 32919 1837 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 177.228.110.115 5d3641eb-4e55-4ea1-8f8f-2924344abc7c 2020-05-04 00:50:29.967238 32920 318 Customer \N \N 18 User \N create ---\nnick_name: VERONICA\nphone: "(667) 162-7714"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente VERONICA fue registrado. 177.228.110.115 ceac7e19-5233-4b03-93d4-8a2476572946 2020-05-04 00:51:10.202156 32921 2434 Sale \N \N 18 User \N create ---\ncustomer_id: 318\nuser_id: 18\nopen_cash_register_id: 928\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-05-03\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-335\nexpiration_date: 2020-06-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.115 ee8d8063-8d94-4476-8ffa-1301b65fb3ad 2020-05-04 00:51:24.399403 32922 1837 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 177.228.110.115 ee8d8063-8d94-4476-8ffa-1301b65fb3ad 2020-05-04 00:51:24.428647 32923 3297 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2434\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-335\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-335 177.228.110.115 33bc4b93-31e7-4ab4-95ef-0b9792082c82 2020-05-04 00:52:00.282647 32924 2434 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 177.228.110.115 be339c7b-6d8c-459d-97ef-3bd9b54f07e1 2020-05-04 00:52:02.077615 32925 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-04-30 18:55:49.911842000 Z\n- &1 2020-05-03 00:23:13.428577000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-04 00:58:29.697502875 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946212\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534613\n mask_addr: 4294967295\nsign_in_count:\n- 520\n- 521\n 1045 \N 177.228.98.85 2a0642a2-f31f-41e6-8059-6324b31d04c0 2020-05-04 00:58:29.726576 32926 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 1DQkvC7ycxgPeCQoqhDs\n- Jtyxe1HzUPidEU1WHT_E\n 1046 \N 177.228.98.85 2a0642a2-f31f-41e6-8059-6324b31d04c0 2020-05-04 00:58:29.750884 32927 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-05-03 23:42:40.330766000 Z\n- &1 2020-05-04 00:06:41.924808000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-04 01:22:12.689862339 Z\nsign_in_count:\n- 112\n- 113\n 226 \N 177.228.110.115 4f07f3ba-a7a3-4b7a-bb61-e7c9f2f67065 2020-05-04 01:22:12.695092 32928 9 User \N \N 9 User \N update ---\nunique_session_id:\n- TACCVHtxG3mzMVhcztSv\n- Bz1ssg6HeF2BPXZzRe89\n 227 \N 177.228.110.115 4f07f3ba-a7a3-4b7a-bb61-e7c9f2f67065 2020-05-04 01:22:12.710338 32929 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-04 00:08:33.641072000 Z\n- &1 2020-05-04 00:22:04.955786000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-04 05:31:00.054071490 Z\nsign_in_count:\n- 66\n- 67\n 135 \N 177.228.110.115 35765f13-1597-4552-a49f-b35ac8f5de0c 2020-05-04 05:31:00.059392 32930 18 User \N \N 18 User \N update ---\nunique_session_id:\n- agjcod8t2cqQ88iiFPMH\n- 3tJRGjyiyX_STLx8snN4\n 136 \N 177.228.110.115 35765f13-1597-4552-a49f-b35ac8f5de0c 2020-05-04 05:31:00.073018 32931 319 Customer \N \N 18 User \N create ---\nnick_name: CECILIA ACERO\nphone: "(667) 504-4214"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CECILIA ACERO fue registrado. 177.228.110.115 d96aa0d0-17e4-41ab-8a99-69c1e9d65048 2020-05-04 05:32:40.419209 32932 2435 Sale \N \N 18 User \N create ---\ncustomer_id: 319\nuser_id: 18\nopen_cash_register_id: 928\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-05-03\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-336\nexpiration_date: 2020-06-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.115 f06f347b-b248-4a57-8862-a30cde6aab4f 2020-05-04 05:33:02.679356 32933 1035 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 28 \N 177.228.110.115 f06f347b-b248-4a57-8862-a30cde6aab4f 2020-05-04 05:33:02.708733 33005 931 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.7E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 700.0 177.228.111.139 1c817ff3-745c-4e7f-a074-f10fb522dc1e 2020-05-13 23:50:40.845159 32934 3298 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2435\ncardnumber: 1236\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-336\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-336 177.228.110.115 652a2126-13ed-4d06-a00c-5470e2f67657 2020-05-04 05:33:13.613783 32935 2435 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 177.228.110.115 54345869-56d4-4861-b1ef-b4a9f7ee4908 2020-05-04 05:33:16.060334 32936 950 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 928\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.16444E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.7E3\nphysical_cash: !ruby/object:BigDecimal 18:0.7E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 177.228.110.115 f2367ed3-f6d7-464e-a02c-cdbc42ffea39 2020-05-04 05:34:18.690489 32937 928 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 177.228.110.115 f2367ed3-f6d7-464e-a02c-cdbc42ffea39 2020-05-04 05:34:18.705511 32938 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-05-04 00:06:41.924808000 Z\n- &1 2020-05-04 01:22:12.689862000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-04 05:34:35.985914404 Z\nsign_in_count:\n- 113\n- 114\n 228 \N 177.228.110.115 b499bb6e-ff22-4572-beed-7d5e705da974 2020-05-04 05:34:35.991537 32939 9 User \N \N 9 User \N update ---\nunique_session_id:\n- Bz1ssg6HeF2BPXZzRe89\n- WTxEZHbxEdZUK1pJVxgC\n 229 \N 177.228.110.115 b499bb6e-ff22-4572-beed-7d5e705da974 2020-05-04 05:34:36.00456 32940 951 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 927\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.1224301E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.754E3\nphysical_cash: !ruby/object:BigDecimal 18:0.754E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 177.228.110.115 6c04722c-e82a-4bbc-bc66-82742dd1f203 2020-05-04 05:35:13.283123 32941 927 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 177.228.110.115 6c04722c-e82a-4bbc-bc66-82742dd1f203 2020-05-04 05:35:13.296388 32942 930 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.754E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 754.0 177.228.110.115 7ec4c017-0f9f-477d-8169-e0e6066132a2 2020-05-04 05:35:15.897639 32943 952 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 930\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.754E3\nphysical_cash: !ruby/object:BigDecimal 18:0.754E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 177.228.110.115 66700020-40c4-4808-ae3c-caea04ce4bfb 2020-05-04 05:35:36.267845 32944 930 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 177.228.110.115 66700020-40c4-4808-ae3c-caea04ce4bfb 2020-05-04 05:35:36.28063 32945 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-05-04 00:05:02.387437000 Z\n- &1 2020-05-04 00:19:15.181323000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-04 05:35:57.520099118 Z\nsign_in_count:\n- 125\n- 126\n 255 \N 177.228.110.115 fbd4eda7-693f-4ad4-b357-fc81b0835313 2020-05-04 05:35:57.525864 32946 8 User \N \N 8 User \N update ---\nunique_session_id:\n- nki73tz46tRKN2sHkrxs\n- x9Hfx6-CroRb4hx1wBmu\n 256 \N 177.228.110.115 fbd4eda7-693f-4ad4-b357-fc81b0835313 2020-05-04 05:35:57.540838 32947 953 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 929\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.1248E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.527E3\nphysical_cash: !ruby/object:BigDecimal 18:0.527E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 177.228.110.115 8393e990-a4ee-4963-8cd9-7c49515b4d8a 2020-05-04 05:36:31.904471 32948 929 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 177.228.110.115 8393e990-a4ee-4963-8cd9-7c49515b4d8a 2020-05-04 05:36:31.917604 32949 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-05-03 00:18:10.320726000 Z\n- &1 2020-05-03 23:39:02.426278000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-04 05:36:51.329498734 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537715\n mask_addr: 4294967295\nsign_in_count:\n- 1552\n- 1553\n 3106 \N 177.228.110.115 8f5efb98-c499-4f75-a4b4-2a2bfa8f85e0 2020-05-04 05:36:51.336005 32950 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hzNTJw-egyP8Wdg6deyz\n- 9GznKAPxK3KhoRwSSyf8\n 3107 \N 177.228.110.115 8f5efb98-c499-4f75-a4b4-2a2bfa8f85e0 2020-05-04 05:36:51.352146 32951 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-05-03 00:23:13.428577000 Z\n- &1 2020-05-04 00:58:29.697502000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-04 21:49:11.042384600 Z\nsign_in_count:\n- 521\n- 522\n 1047 \N 177.228.98.85 1c22ce37-5ac1-46d4-b520-3f41a74487c1 2020-05-04 21:49:11.069328 32952 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Jtyxe1HzUPidEU1WHT_E\n- Thjc9msPsqe1F6smhrRZ\n 1048 \N 177.228.98.85 1c22ce37-5ac1-46d4-b520-3f41a74487c1 2020-05-04 21:49:11.089881 32953 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-05-04 00:58:29.697502000 Z\n- &1 2020-05-04 21:49:11.042384000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-05 16:46:47.670272743 Z\nsign_in_count:\n- 522\n- 523\n 1049 \N 177.228.98.85 51fbc258-6bd2-4191-857e-af3a1a4753d5 2020-05-05 16:46:47.698036 32954 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Thjc9msPsqe1F6smhrRZ\n- E8NyzuKyssU3uCQ1uWLr\n 1050 \N 177.228.98.85 51fbc258-6bd2-4191-857e-af3a1a4753d5 2020-05-05 16:46:47.720831 32955 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-04 00:22:04.955786000 Z\n- &1 2020-05-04 05:31:00.054071000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-05 19:23:45.862339300 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537715\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537739\n mask_addr: 4294967295\nsign_in_count:\n- 67\n- 68\n 137 \N 177.228.110.139 fa3474c6-2960-4690-873d-7e6aec0f6925 2020-05-05 19:23:45.868521 32956 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 3tJRGjyiyX_STLx8snN4\n- wyXfL3-wTTvEdGwECG2U\n 138 \N 177.228.110.139 fa3474c6-2960-4690-873d-7e6aec0f6925 2020-05-05 19:23:45.883579 32957 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-05-04 21:49:11.042384000 Z\n- &1 2020-05-05 16:46:47.670272000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-06 02:09:24.304231291 Z\nsign_in_count:\n- 523\n- 524\n 1051 \N 177.228.98.85 7f341f00-2cc9-4f6b-930e-2d362f1e885b 2020-05-06 02:09:24.309328 32958 2 User \N \N 2 User \N update ---\nunique_session_id:\n- E8NyzuKyssU3uCQ1uWLr\n- ERHVbxwGAVyboy4-rPYQ\n 1052 \N 177.228.98.85 7f341f00-2cc9-4f6b-930e-2d362f1e885b 2020-05-06 02:09:24.32255 33160 2456 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.111.139 9e3132c2-b78b-48d2-8175-918baa67ffe7 2020-05-20 01:14:20.852753 32959 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-05-04 01:22:12.689862000 Z\n- &1 2020-05-04 05:34:35.985914000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-06 02:11:47.458340622 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537715\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537739\n mask_addr: 4294967295\nsign_in_count:\n- 114\n- 115\n 230 \N 177.228.110.139 0fd7188e-10b0-43b0-ab3c-824bccef90c5 2020-05-06 02:11:47.464887 32960 9 User \N \N 9 User \N update ---\nunique_session_id:\n- WTxEZHbxEdZUK1pJVxgC\n- y3kYNf4cyUFxGkG2zN6k\n 231 \N 177.228.110.139 0fd7188e-10b0-43b0-ab3c-824bccef90c5 2020-05-06 02:11:47.482133 32961 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-05-04 05:34:35.985914000 Z\n- &1 2020-05-06 02:11:47.458340000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-06 04:39:04.816523100 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537715\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537739\n mask_addr: 4294967295\nsign_in_count:\n- 115\n- 116\n 232 \N 177.228.110.139 30d73db6-2852-445a-a2da-eb9a6420c850 2020-05-06 04:39:04.823915 32962 9 User \N \N 9 User \N update ---\nunique_session_id:\n- y3kYNf4cyUFxGkG2zN6k\n- 5WBgGynBYekUgGSX5_Rc\n 233 \N 177.228.110.139 30d73db6-2852-445a-a2da-eb9a6420c850 2020-05-06 04:39:04.838718 32963 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-05-05 16:46:47.670272000 Z\n- &1 2020-05-06 02:09:24.304231000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-06 04:42:52.268949195 Z\nsign_in_count:\n- 524\n- 525\n 1053 \N 177.228.98.85 8ded9317-1707-4163-aafb-86e5bb5266e7 2020-05-06 04:42:52.274705 32964 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ERHVbxwGAVyboy4-rPYQ\n- ZcN7xQsZvxVNKsDcaHBn\n 1054 \N 177.228.98.85 8ded9317-1707-4163-aafb-86e5bb5266e7 2020-05-06 04:42:52.288319 32965 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-05-03 23:39:02.426278000 Z\n- &1 2020-05-04 05:36:51.329498000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-06 04:44:35.453091354 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537715\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537739\n mask_addr: 4294967295\nsign_in_count:\n- 1553\n- 1554\n 3108 \N 177.228.110.139 89b9b048-289f-47a0-8b26-35ec7210b524 2020-05-06 04:44:35.459956 32966 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9GznKAPxK3KhoRwSSyf8\n- jkqTXMPdhqae2y6vTMhJ\n 3109 \N 177.228.110.139 89b9b048-289f-47a0-8b26-35ec7210b524 2020-05-06 04:44:35.479144 32967 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-05-06 02:09:24.304231000 Z\n- &1 2020-05-06 04:42:52.268949000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-06 04:52:55.437253342 Z\nsign_in_count:\n- 525\n- 526\n 1055 \N 177.228.98.85 cc82e22c-9c81-44a1-8a2b-f2ee45aab102 2020-05-06 04:52:55.442719 32968 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ZcN7xQsZvxVNKsDcaHBn\n- KvZKqYsReYn_wEqSxwCh\n 1056 \N 177.228.98.85 cc82e22c-9c81-44a1-8a2b-f2ee45aab102 2020-05-06 04:52:55.456053 32969 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-05-04 05:36:51.329498000 Z\n- &1 2020-05-06 04:44:35.453091000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-06 21:29:00.312455387 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537715\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537739\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537739\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145211\n mask_addr: 4294967295\nsign_in_count:\n- 1554\n- 1555\n 3110 \N 189.186.240.251 9b7e8447-c9e9-43e7-b4a4-6cca0adee84b 2020-05-06 21:29:00.331776 32970 4 User \N \N 4 User \N update ---\nunique_session_id:\n- jkqTXMPdhqae2y6vTMhJ\n- WTK5pvyJhVkNQ4cfCNtL\n 3111 \N 189.186.240.251 9b7e8447-c9e9-43e7-b4a4-6cca0adee84b 2020-05-06 21:29:00.353963 32971 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-05-06 04:44:35.453091000 Z\n- &1 2020-05-06 21:29:00.312455000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-06 23:37:57.727596599 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537739\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145211\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945970\n mask_addr: 4294967295\nsign_in_count:\n- 1555\n- 1556\n 3112 \N 200.68.180.242 f83a4d24-2d17-4056-b975-00d76ee5ddf8 2020-05-06 23:37:57.734901 32972 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WTK5pvyJhVkNQ4cfCNtL\n- puB_n-1z22scyQraJngp\n 3113 \N 200.68.180.242 f83a4d24-2d17-4056-b975-00d76ee5ddf8 2020-05-06 23:37:57.752838 32973 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-05-06 04:42:52.268949000 Z\n- &1 2020-05-06 04:52:55.437253000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-07 04:27:07.123616595 Z\nsign_in_count:\n- 526\n- 527\n 1057 \N 177.228.98.85 e9763744-9cab-4f33-8989-f5d4b1d922d4 2020-05-07 04:27:07.130326 32974 2 User \N \N 2 User \N update ---\nunique_session_id:\n- KvZKqYsReYn_wEqSxwCh\n- DGsHc7sYsYu48MrK9osN\n 1058 \N 177.228.98.85 e9763744-9cab-4f33-8989-f5d4b1d922d4 2020-05-07 04:27:07.146536 32975 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-05-06 04:52:55.437253000 Z\n- &1 2020-05-07 04:27:07.123616000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-07 21:47:29.426021694 Z\nsign_in_count:\n- 527\n- 528\n 1059 \N 177.228.98.85 76ed6285-4354-4d8c-ba63-0761c1d75c61 2020-05-07 21:47:29.452882 32976 2 User \N \N 2 User \N update ---\nunique_session_id:\n- DGsHc7sYsYu48MrK9osN\n- yw1cMXaSK1sRHCdQHXnd\n 1060 \N 177.228.98.85 76ed6285-4354-4d8c-ba63-0761c1d75c61 2020-05-07 21:47:29.473675 32977 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-05-07 04:27:07.123616000 Z\n- &1 2020-05-07 21:47:29.426021000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-07 22:44:37.792047642 Z\nsign_in_count:\n- 528\n- 529\n 1061 \N 177.228.98.85 9f803f14-c785-43a7-89f2-4c21a1f43f5c 2020-05-07 22:44:37.797106 32978 2 User \N \N 2 User \N update ---\nunique_session_id:\n- yw1cMXaSK1sRHCdQHXnd\n- ZHcw-h4wA-y4xeosYycG\n 1062 \N 177.228.98.85 9f803f14-c785-43a7-89f2-4c21a1f43f5c 2020-05-07 22:44:37.810187 32979 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-05-06 21:29:00.312455000 Z\n- &1 2020-05-06 23:37:57.727596000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-08 17:24:36.857923665 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945970\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945970\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537251\n mask_addr: 4294967295\nsign_in_count:\n- 1556\n- 1557\n 3114 \N 177.228.108.163 8ef6f2f3-3f7d-459a-ac43-bb4ed4037636 2020-05-08 17:24:36.886215 32980 4 User \N \N 4 User \N update ---\nunique_session_id:\n- puB_n-1z22scyQraJngp\n- 59zDnvkzschxiMGayAbf\n 3115 \N 177.228.108.163 8ef6f2f3-3f7d-459a-ac43-bb4ed4037636 2020-05-08 17:24:36.911979 32981 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-05-04 00:19:15.181323000 Z\n- &1 2020-05-04 05:35:57.520099000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-08 18:34:33.453245279 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537715\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537251\n mask_addr: 4294967295\nsign_in_count:\n- 126\n- 127\n 257 \N 177.228.108.163 a14570dc-7daf-4a04-982f-a495ec2d9ea0 2020-05-08 18:34:33.45957 32982 8 User \N \N 8 User \N update ---\nunique_session_id:\n- x9Hfx6-CroRb4hx1wBmu\n- nkXY1GS3qmgKWxj1zQV9\n 258 \N 177.228.108.163 a14570dc-7daf-4a04-982f-a495ec2d9ea0 2020-05-08 18:34:33.472651 32983 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-05-06 23:37:57.727596000 Z\n- &1 2020-05-08 17:24:36.857923000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-08 18:47:29.135301752 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945970\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537251\n mask_addr: 4294967295\nsign_in_count:\n- 1557\n- 1558\n 3116 \N 177.228.108.163 4e528391-506a-476a-ae82-0493b220cc13 2020-05-08 18:47:29.141199 32984 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 59zDnvkzschxiMGayAbf\n- 5j2VNK9hHzRm9GXz74WK\n 3117 \N 177.228.108.163 4e528391-506a-476a-ae82-0493b220cc13 2020-05-08 18:47:29.159968 32985 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-05-07 21:47:29.426021000 Z\n- &1 2020-05-07 22:44:37.792047000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-08 19:45:23.136329634 Z\nsign_in_count:\n- 529\n- 530\n 1063 \N 177.228.98.85 4b9b46ec-7614-4e13-8cb5-1ea26407f8cc 2020-05-08 19:45:23.141584 32986 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ZHcw-h4wA-y4xeosYycG\n- KHGYbx7GgrAu2cis4M5s\n 1064 \N 177.228.98.85 4b9b46ec-7614-4e13-8cb5-1ea26407f8cc 2020-05-08 19:45:23.184254 32987 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-05-07 22:44:37.792047000 Z\n- &1 2020-05-08 19:45:23.136329000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-09 04:14:39.270252257 Z\nsign_in_count:\n- 530\n- 531\n 1065 \N 177.228.98.85 1c396321-fb6d-4c20-84a0-a2d31add5a41 2020-05-09 04:14:39.299121 32988 2 User \N \N 2 User \N update ---\nunique_session_id:\n- KHGYbx7GgrAu2cis4M5s\n- GgyFy5_9KasWkkkqX-j_\n 1066 \N 177.228.98.85 1c396321-fb6d-4c20-84a0-a2d31add5a41 2020-05-09 04:14:39.322338 32989 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-05-08 19:45:23.136329000 Z\n- &1 2020-05-09 04:14:39.270252000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-09 23:05:17.278374449 Z\nsign_in_count:\n- 531\n- 532\n 1067 \N 177.228.98.85 f42a5827-47ec-46e7-87c1-8ef0d30c56af 2020-05-09 23:05:17.304741 32990 2 User \N \N 2 User \N update ---\nunique_session_id:\n- GgyFy5_9KasWkkkqX-j_\n- xwNQK9xVdYhWhrSML3xS\n 1068 \N 177.228.98.85 f42a5827-47ec-46e7-87c1-8ef0d30c56af 2020-05-09 23:05:17.329461 32991 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-05-04 05:35:57.520099000 Z\n- &1 2020-05-08 18:34:33.453245000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-10 05:58:21.902790399 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537715\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537251\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537251\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537179\n mask_addr: 4294967295\nsign_in_count:\n- 127\n- 128\n 259 \N 177.228.108.91 77674e8b-59e8-48b9-8fb0-aa0372f0ab6f 2020-05-10 05:58:21.930589 32992 8 User \N \N 8 User \N update ---\nunique_session_id:\n- nkXY1GS3qmgKWxj1zQV9\n- 2sy_F6sVSRyykM1BLb-1\n 260 \N 177.228.108.91 77674e8b-59e8-48b9-8fb0-aa0372f0ab6f 2020-05-10 05:58:21.953418 32993 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-04 05:31:00.054071000 Z\n- &1 2020-05-05 19:23:45.862339000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-10 17:18:54.432163420 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537715\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537739\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537739\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537179\n mask_addr: 4294967295\nsign_in_count:\n- 68\n- 69\n 139 \N 177.228.108.91 66e0eca1-9ec4-41ac-aeeb-62f5cc13407d 2020-05-10 17:18:54.46052 32994 18 User \N \N 18 User \N update ---\nunique_session_id:\n- wyXfL3-wTTvEdGwECG2U\n- "-ew-LQ-YoCEvCiQdXNwj"\n 140 \N 177.228.108.91 66e0eca1-9ec4-41ac-aeeb-62f5cc13407d 2020-05-10 17:18:54.482379 32995 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-03-28 18:24:55.289130000 Z\n- &1 2020-04-04 19:55:37.154769000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-10 17:27:18.254278288 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147108719\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147108719\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145211\n mask_addr: 4294967295\nsign_in_count:\n- 210\n- 211\n 423 \N 189.186.240.251 228784f4-e016-46e2-8d78-fe0f9c7d309b 2020-05-10 17:27:18.261314 32996 21 User \N \N 21 User \N update ---\nunique_session_id:\n- KSS8pdEUp6ZNxzAc1SFw\n- m8RMUxzTbSRQgv3stxyy\n 424 \N 189.186.240.251 228784f4-e016-46e2-8d78-fe0f9c7d309b 2020-05-10 17:27:18.276221 32997 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-04-04 19:55:37.154769000 Z\n- &1 2020-05-10 17:27:18.254278000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-10 17:27:42.290063140 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147108719\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145211\n mask_addr: 4294967295\nsign_in_count:\n- 211\n- 212\n 425 \N 189.186.240.251 7ce9ba63-bf6a-47da-be15-bf0b2a9ddf7a 2020-05-10 17:27:42.306947 32998 21 User \N \N 21 User \N update ---\nunique_session_id:\n- m8RMUxzTbSRQgv3stxyy\n- zSiYpLJmv6HRRqhzqkJS\n 426 \N 189.186.240.251 7ce9ba63-bf6a-47da-be15-bf0b2a9ddf7a 2020-05-10 17:27:42.325027 32999 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-05-08 18:34:33.453245000 Z\n- &1 2020-05-10 05:58:21.902790000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-10 20:36:12.275221797 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537251\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537179\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537179\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946138\n mask_addr: 4294967295\nsign_in_count:\n- 128\n- 129\n 261 \N 200.68.181.154 65780bc8-8b05-4143-a8ea-35195c50e52b 2020-05-10 20:36:12.282746 33000 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 2sy_F6sVSRyykM1BLb-1\n- 8Nd8zh38m9e1SSLHVw9o\n 262 \N 200.68.181.154 65780bc8-8b05-4143-a8ea-35195c50e52b 2020-05-10 20:36:12.298407 33001 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-05 19:23:45.862339000 Z\n- &1 2020-05-10 17:18:54.432163000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-10 21:14:28.258466825 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537739\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537179\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537179\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946138\n mask_addr: 4294967295\nsign_in_count:\n- 69\n- 70\n 141 \N 200.68.181.154 c820f279-5310-4399-b47b-f1b8096e9708 2020-05-10 21:14:28.276867 33002 18 User \N \N 18 User \N update ---\nunique_session_id:\n- "-ew-LQ-YoCEvCiQdXNwj"\n- VvQZHm3WcwNB2_oyDuPm\n 142 \N 200.68.181.154 c820f279-5310-4399-b47b-f1b8096e9708 2020-05-10 21:14:28.292086 33003 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-10 17:18:54.432163000 Z\n- &1 2020-05-10 21:14:28.258466000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-13 23:50:04.694257127 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537179\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946138\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946138\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537995\n mask_addr: 4294967295\nsign_in_count:\n- 70\n- 71\n 143 \N 177.228.111.139 ae4c910e-696c-4ff7-8f4f-316d4240288e 2020-05-13 23:50:04.72299 46497 1353 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1353'\n is_parent: false\n sku: COS-1353\n name: 4CSCP20802BLA\n description: 'COSMETIQUERA LIMON '\n price_base: '349.5'\n price_sale: '699.0'\n img_product: 9C290DAE-28CC-484A-AD10-E104F4975A03.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '14'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170791860'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-22 20:15:34.474089'\n updated_at: &12 2020-11-21 20:28:46.680034233 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1353'\n sku: COS-1353\n name: 4CSCP20802BLA\n description: 'COSMETIQUERA LIMON '\n price_base: '349.50'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-22 20:15:34.474089'\n updated_at: '2020-09-22 20:15:34.474089'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170791860'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '14'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1353'\n type: *3\n value: 1353\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: COS-1353\n type: *7\n value: COS-1353\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 4CSCP20802BLA\n type: *8\n value: 4CSCP20802BLA\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'COSMETIQUERA LIMON '\n type: *6\n value: 'COSMETIQUERA LIMON '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '349.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 9C290DAE-28CC-484A-AD10-E104F4975A03.jpeg\n type: *2\n value: 9C290DAE-28CC-484A-AD10-E104F4975A03.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '14'\n type: *3\n value: 14\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170791860'\n type: *2\n value: '7509170791860'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-22 20:15:34.474089'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 9C290DAE-28CC-484A-AD10-E104F4975A03.jpeg\n 2 El producto COS-1353 fue modificado. 189.186.1.223 341e6ca3-6335-4a26-b06f-cb629e801972 2020-11-21 20:28:46.723397 33006 2436 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.103362E4\ntax: !ruby/object:BigDecimal 18:0.16538E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-05-13\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-337\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 0aaef3e7-8bb0-4975-a533-22960b3943cd 2020-05-13 23:50:55.531683 33007 847 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 177.228.111.139 0aaef3e7-8bb0-4975-a533-22960b3943cd 2020-05-13 23:50:55.561693 33008 2436 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.111.139 c9caa25d-0866-4379-951a-631c2312cd90 2020-05-13 23:51:04.23535 33009 3299 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 2436\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-337\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '23655'\n 1 movimiento de efectivo por venta con folio PV3-V-337 177.228.111.139 c9caa25d-0866-4379-951a-631c2312cd90 2020-05-13 23:51:04.257336 33010 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-10 21:14:28.258466000 Z\n- &1 2020-05-13 23:50:04.694257000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-14 19:19:21.984788612 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946138\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537995\n mask_addr: 4294967295\nsign_in_count:\n- 71\n- 72\n 145 \N 177.228.111.139 23c9872b-2671-48aa-b167-9e3c55728633 2020-05-14 19:19:22.014612 33011 18 User \N \N 18 User \N update ---\nunique_session_id:\n- _S8WwsAafdZoTx6xk2YT\n- pe2Zv7A2nJDVgGjsMwm5\n 146 \N 177.228.111.139 23c9872b-2671-48aa-b167-9e3c55728633 2020-05-14 19:19:22.038509 33012 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-13 23:50:04.694257000 Z\n- &1 2020-05-14 19:19:21.984788000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-14 19:23:09.061063057 Z\nsign_in_count:\n- 72\n- 73\n 147 \N 177.228.111.139 ade72cd8-07e8-4293-b9dd-db48c5836a12 2020-05-14 19:23:09.077564 33013 18 User \N \N 18 User \N update ---\nunique_session_id:\n- pe2Zv7A2nJDVgGjsMwm5\n- jxhYzPz8fJSpxCzb__Jp\n 148 \N 177.228.111.139 ade72cd8-07e8-4293-b9dd-db48c5836a12 2020-05-14 19:23:09.09117 33014 2437 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.23985E3\ntotal: !ruby/object:BigDecimal 18:0.135915E4\nstatus: 0\ndate_sale: 2020-05-14\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-338\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 df18b65f-1ca5-4c55-bb85-c58acf092007 2020-05-14 20:12:01.850444 33015 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 14 \N 177.228.111.139 df18b65f-1ca5-4c55-bb85-c58acf092007 2020-05-14 20:12:01.879151 33016 2437 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.111.139 59a5dd3b-3e95-46a8-bcb9-43908adc7239 2020-05-14 20:12:14.312178 33017 3300 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2437\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-338\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '5555'\n 1 movimiento de efectivo por venta con folio PV3-V-338 177.228.111.139 59a5dd3b-3e95-46a8-bcb9-43908adc7239 2020-05-14 20:12:14.334269 33018 3300 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2437\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-338\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '5555'\n 2 \N 177.228.111.139 b4e33413-7bd0-4394-b636-a52d79a97eed 2020-05-14 20:12:37.412991 33019 3301 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.135915E4\nmove_type: '1'\nsale_id: 2437\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-338\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '5555'\n 1 movimiento de efectivo por venta con folio PV3-V-338 177.228.111.139 dcf6535b-7223-401a-b6e8-70b87eec23c4 2020-05-14 20:12:47.36332 33020 2438 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-05-14\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-339\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 3440020b-2f25-459a-af1d-47dab45514b1 2020-05-14 20:15:00.007054 33021 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 177.228.111.139 3440020b-2f25-459a-af1d-47dab45514b1 2020-05-14 20:15:00.066027 33022 2438 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.111.139 ce587bcf-0d4e-46a7-8828-45472f86dc8f 2020-05-14 20:15:12.210552 33023 3302 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2438\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-339\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '455'\n 1 movimiento de efectivo por venta con folio PV3-V-339 177.228.111.139 ce587bcf-0d4e-46a7-8828-45472f86dc8f 2020-05-14 20:15:12.241801 33024 2439 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.3698E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3698E4\nstatus: 0\ndate_sale: 2020-05-14\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-340\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 9d81c09e-02a4-40d7-92a8-f00f7af80e14 2020-05-14 20:15:57.095992 33025 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 15 \N 177.228.111.139 9d81c09e-02a4-40d7-92a8-f00f7af80e14 2020-05-14 20:15:57.121961 33026 1035 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 29 \N 177.228.111.139 9d81c09e-02a4-40d7-92a8-f00f7af80e14 2020-05-14 20:15:57.144198 33027 2439 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.111.139 6c251d63-4649-4a70-b1ee-65d6388ba83e 2020-05-14 20:16:07.499987 33028 3303 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.3698E4\nmove_type: '1'\nsale_id: 2439\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-340\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '5558'\n 1 movimiento de efectivo por venta con folio PV3-V-340 177.228.111.139 6c251d63-4649-4a70-b1ee-65d6388ba83e 2020-05-14 20:16:07.521186 33029 2440 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-05-14\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-341\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 1d280b5b-ad72-4dee-86a2-f2c377c36968 2020-05-14 20:18:14.335437 33030 1426 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 177.228.111.139 1d280b5b-ad72-4dee-86a2-f2c377c36968 2020-05-14 20:18:14.360255 33031 2440 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.111.139 9f795ac6-76e0-4810-a129-b48b2e0e05af 2020-05-14 20:18:28.544006 33032 3304 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2440\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-341\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: RUBY\n 1 movimiento de efectivo por venta con folio PV3-V-341 177.228.111.139 9f795ac6-76e0-4810-a129-b48b2e0e05af 2020-05-14 20:18:28.56357 33033 3305 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 2378\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '555'\n 1 movimiento de efectivo por venta con folio PV3-V-309 177.228.111.139 029f208f-6ea5-444b-9028-a40bb0e72588 2020-05-14 20:31:46.579953 33034 2378 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.111.139 1306a1cc-1b2a-47e0-a60c-8994bd3d63f3 2020-05-14 20:31:48.461341 33035 3306 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.888E3\nmove_type: '1'\nsale_id: 2368\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '555'\n 1 movimiento de efectivo por venta con folio PV3-V-301 177.228.111.139 dbc461c6-2bcc-4b97-b3f4-5fdd10f44936 2020-05-14 20:32:27.37986 33036 3307 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 2372\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '455'\n 1 movimiento de efectivo por venta con folio PV3-V-304 177.228.111.139 365251ca-5bd9-45b0-b600-d19519d57122 2020-05-14 20:32:54.681529 33037 2372 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.111.139 2a5762d0-95e6-41a7-a303-05219e0483ba 2020-05-14 20:32:57.554666 33038 2441 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1599E3\ntotal: !ruby/object:BigDecimal 18:0.14391E4\nstatus: 0\ndate_sale: 2020-05-14\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-342\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 bcdf0eed-b186-45c0-bf5d-b3e22585bab8 2020-05-14 20:41:20.542887 33039 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 16 \N 177.228.111.139 bcdf0eed-b186-45c0-bf5d-b3e22585bab8 2020-05-14 20:41:20.570767 33040 2441 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.111.139 5e2b5aae-36bb-4f73-be15-15224ba12c34 2020-05-14 20:41:34.736566 33041 3308 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.14391E4\nmove_type: '1'\nsale_id: 2441\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-342\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1256'\n 1 movimiento de efectivo por venta con folio PV3-V-342 177.228.111.139 5e2b5aae-36bb-4f73-be15-15224ba12c34 2020-05-14 20:41:34.756104 33042 2442 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.23985E3\ntotal: !ruby/object:BigDecimal 18:0.135915E4\nstatus: 0\ndate_sale: 2020-05-14\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-343\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 786ae1a4-b732-4795-9700-fab610dde6dc 2020-05-14 20:42:07.429388 33043 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 17 \N 177.228.111.139 786ae1a4-b732-4795-9700-fab610dde6dc 2020-05-14 20:42:07.452761 33044 2442 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.111.139 4708c28f-1d77-4d20-b188-5c41d1bb71c6 2020-05-14 20:42:21.782287 33045 3309 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.135915E4\nmove_type: '1'\nsale_id: 2442\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-343\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1255'\n 1 movimiento de efectivo por venta con folio PV3-V-343 177.228.111.139 4708c28f-1d77-4d20-b188-5c41d1bb71c6 2020-05-14 20:42:21.801951 33046 2443 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-05-14\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-344\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 9dc13643-eca0-4913-a010-0ff9a7635e1a 2020-05-14 20:44:01.342325 33047 1035 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 30 \N 177.228.111.139 9dc13643-eca0-4913-a010-0ff9a7635e1a 2020-05-14 20:44:01.374179 33048 2443 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.111.139 d9bb3d7d-dd26-485d-9e8c-5fba0e27a37a 2020-05-14 20:44:11.254501 33049 3310 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.2099E4\nmove_type: '1'\nsale_id: 2443\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-344\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CECILIA\n 1 movimiento de efectivo por venta con folio PV3-V-344 177.228.111.139 d9bb3d7d-dd26-485d-9e8c-5fba0e27a37a 2020-05-14 20:44:11.27925 33050 320 Customer \N \N 18 User \N create ---\nnick_name: 'DENNIS '\nphone: "(667) 184-0579"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DENNIS fue registrado. 177.228.111.139 fd5e32ab-c32e-4df6-ba40-ac4fd46fe48e 2020-05-14 20:44:55.484972 33051 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-05-08 17:24:36.857923000 Z\n- &1 2020-05-08 18:47:29.135301000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-14 20:46:48.462774217 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537251\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537995\n mask_addr: 4294967295\nsign_in_count:\n- 1558\n- 1559\n 3118 \N 177.228.111.139 dbf25d10-41ad-47e1-a378-f2c0b97d165f 2020-05-14 20:46:48.470383 33052 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5j2VNK9hHzRm9GXz74WK\n- ndKYt2_cBVzKzKsQPSEa\n 3119 \N 177.228.111.139 dbf25d10-41ad-47e1-a378-f2c0b97d165f 2020-05-14 20:46:48.488092 33053 2201 Sale \N \N 4 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 177.228.111.139 521a43f5-94c3-4f7b-9f7a-516d36f55659 2020-05-14 20:49:17.164108 33054 1035 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 31 \N 177.228.111.139 521a43f5-94c3-4f7b-9f7a-516d36f55659 2020-05-14 20:49:17.191875 33055 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-14 19:19:21.984788000 Z\n- &1 2020-05-14 19:23:09.061063000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-14 20:49:58.602699228 Z\nsign_in_count:\n- 73\n- 74\n 149 \N 177.228.111.139 c22d6e28-b6dc-41c9-bac5-4a4d2defd172 2020-05-14 20:49:58.608036 33056 18 User \N \N 18 User \N update ---\nunique_session_id:\n- jxhYzPz8fJSpxCzb__Jp\n- PeYzu5JXJGvyHqtccixu\n 150 \N 177.228.111.139 c22d6e28-b6dc-41c9-bac5-4a4d2defd172 2020-05-14 20:49:58.620034 33057 2444 Sale \N \N 18 User \N create ---\ncustomer_id: 320\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-05-14\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-345\nexpiration_date: 2020-06-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 d85e8fd6-6467-4f11-96e3-d3dafea9c961 2020-05-14 20:50:31.110401 33058 1035 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 32 \N 177.228.111.139 d85e8fd6-6467-4f11-96e3-d3dafea9c961 2020-05-14 20:50:31.135234 33059 3311 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2444\ncardnumber: 1552\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-345\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-345 177.228.111.139 7067a742-886b-4e81-9755-768438bc2521 2020-05-14 20:50:45.172536 33060 2444 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 177.228.111.139 66d69f89-b30f-44eb-8c55-cce275a969d1 2020-05-14 20:50:47.215648 33061 1128 Product \N \N 18 User \N create ---\nsku: BOL-1128\nname: PAÑALERA\ndescription: PAÑALERA AZUL\nprice_base: !ruby/object:BigDecimal 18:0.10995E4\nprice_sale: !ruby/object:BigDecimal 18:0.2199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1128 fue creado. 177.228.111.139 999e0f42-79a7-451d-8475-c4f1df3dd695 2020-05-14 20:52:36.58426 33062 1128 Product \N \N 18 User \N update ---\nbarcode:\n- ''\n- '0001128'\n 2 \N 177.228.111.139 999e0f42-79a7-451d-8475-c4f1df3dd695 2020-05-14 20:52:36.642687 33063 1838 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1128\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 177.228.111.139 999e0f42-79a7-451d-8475-c4f1df3dd695 2020-05-14 20:52:36.672771 33064 301 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-41\namount: !ruby/object:BigDecimal 18:0.10995E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.10995E4\nobservations: ''\npurchase_date: 2020-05-14\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-41 por $ 1099.5 MXN creada. 177.228.111.139 0f61a0a4-29ab-4a0d-bcbc-373fb8548bfd 2020-05-14 20:52:42.56995 33065 1838 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 177.228.111.139 0f61a0a4-29ab-4a0d-bcbc-373fb8548bfd 2020-05-14 20:52:42.590424 33066 1129 Product \N \N 18 User \N create ---\nsku: BOL-1129\nname: BOL1399\ndescription: BOLSO NEGRO CLOE\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1129 fue creado. 177.228.111.139 540aad0d-3af8-4004-989e-ca2b7f8bc77f 2020-05-14 20:53:21.761804 33067 1129 Product \N \N 18 User \N update ---\nbarcode:\n- ''\n- '0001129'\n 2 \N 177.228.111.139 540aad0d-3af8-4004-989e-ca2b7f8bc77f 2020-05-14 20:53:21.788318 33068 1839 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1129\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 177.228.111.139 540aad0d-3af8-4004-989e-ca2b7f8bc77f 2020-05-14 20:53:21.813923 33069 302 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-42\namount: !ruby/object:BigDecimal 18:0.6995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6995E3\nobservations: ''\npurchase_date: 2020-05-14\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-42 por $ 699.5 MXN creada. 177.228.111.139 8313f106-4355-4b1e-afe7-42be6e3ee931 2020-05-14 20:53:24.973528 33070 1839 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 177.228.111.139 8313f106-4355-4b1e-afe7-42be6e3ee931 2020-05-14 20:53:24.993906 33262 895 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 177.228.110.67 1f6d80d1-19c3-4001-b4ba-d1f45fbb519a 2020-06-10 23:04:19.863972 33071 2445 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.3598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3598E4\nstatus: 0\ndate_sale: 2020-05-14\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-346\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 f12b8bbe-9875-458c-8397-a9b68e95b72a 2020-05-14 20:53:47.883332 33072 1838 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 177.228.111.139 f12b8bbe-9875-458c-8397-a9b68e95b72a 2020-05-14 20:53:47.908937 33073 1839 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 177.228.111.139 f12b8bbe-9875-458c-8397-a9b68e95b72a 2020-05-14 20:53:47.933502 33074 2445 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.111.139 0c6b55fe-7037-4615-acac-1f2cf476d4bf 2020-05-14 20:53:58.526924 33075 3312 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3598E4\nmove_type: '1'\nsale_id: 2445\ncardnumber: 4566\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-346\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-346 177.228.111.139 0c6b55fe-7037-4615-acac-1f2cf476d4bf 2020-05-14 20:53:58.549613 33076 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-05-10 17:27:18.254278000 Z\n- &1 2020-05-10 17:27:42.290063000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-14 20:55:56.178006123 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147109029\n mask_addr: 4294967295\nsign_in_count:\n- 212\n- 213\n 427 \N 187.149.18.165 b0af7e8c-df66-41ec-9317-997ae020b15b 2020-05-14 20:55:56.185605 33077 21 User \N \N 21 User \N update ---\nunique_session_id:\n- zSiYpLJmv6HRRqhzqkJS\n- "-TjBsTxLfHmThAGcypy-"\n 428 \N 187.149.18.165 b0af7e8c-df66-41ec-9317-997ae020b15b 2020-05-14 20:55:56.200324 33078 3313 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.269E3\nmove_type: '1'\nsale_id: 2248\ncardnumber: 1526\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-281 177.228.111.139 c107939d-9c00-4896-8839-fe48ff835c23 2020-05-14 20:58:36.091808 33079 3314 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.269E3\nmove_type: '1'\nsale_id: 2248\ncardnumber: 1256\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-281 177.228.111.139 c3cf5aba-7fe2-4df5-8c12-ca790bd8f9e4 2020-05-14 21:04:48.229767 33080 3314 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 931\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.269E3\nmove_type: '1'\nsale_id: 2248\ncardnumber: 1256\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 177.228.111.139 e0c8f06c-36c8-4830-8a01-3b21ad548b86 2020-05-14 21:04:50.699625 33081 2248 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.111.139 3123e101-ceb4-4b00-ba38-80013baf87aa 2020-05-14 21:04:51.773823 33082 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-05-10 05:58:21.902790000 Z\n- &1 2020-05-10 20:36:12.275221000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-14 21:05:54.784373417 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537179\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946138\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946138\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537995\n mask_addr: 4294967295\nsign_in_count:\n- 129\n- 130\n 263 \N 177.228.111.139 c6ab7bac-4627-48d3-b6ce-de048bc9c817 2020-05-14 21:05:54.791111 33083 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 8Nd8zh38m9e1SSLHVw9o\n- P8MTLw5GYskjzfqM2pYu\n 264 \N 177.228.111.139 c6ab7bac-4627-48d3-b6ce-de048bc9c817 2020-05-14 21:05:54.806072 33084 932 OpenCashRegister \N \N 8 User \N create ---\ncash_register_id: 2\nuser_id: 8\ninitial_cash: !ruby/object:BigDecimal 18:0.527E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja S BY SUO Principal abierta con 527.0 177.228.111.139 4c8bf191-d995-40ef-a817-11a5fb2189f9 2020-05-14 21:06:02.79199 33085 2446 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 932\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.849E3\nstatus: 0\ndate_sale: 2020-05-14\nsaletype: 1\nseller_id: 26\nsale_code: PV2-V-908\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 70c0f3e4-0b7b-4a24-b530-0b76bf7dbd6a 2020-05-14 21:16:46.779784 33086 1650 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 177.228.111.139 70c0f3e4-0b7b-4a24-b530-0b76bf7dbd6a 2020-05-14 21:16:46.808319 33087 2446 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.111.139 b23a27fe-45c7-40b3-bb45-eead677b5f13 2020-05-14 21:16:59.446981 33088 3315 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 932\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.849E3\nmove_type: '1'\nsale_id: 2446\ncardnumber: 455\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-908\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-908 177.228.111.139 b23a27fe-45c7-40b3-bb45-eead677b5f13 2020-05-14 21:16:59.467402 33089 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-05-06 02:11:47.458340000 Z\n- &1 2020-05-06 04:39:04.816523000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-14 21:17:42.356717921 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537739\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537995\n mask_addr: 4294967295\nsign_in_count:\n- 116\n- 117\n 234 \N 177.228.111.139 53476027-3ba6-4685-8f42-c114df86ebdb 2020-05-14 21:17:42.362968 33090 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 5WBgGynBYekUgGSX5_Rc\n- _zdQ7P1HxkwNhPjLy1o1\n 235 \N 177.228.111.139 53476027-3ba6-4685-8f42-c114df86ebdb 2020-05-14 21:17:42.376341 33091 933 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.754E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 754.0 177.228.111.139 7c226dae-f34a-4543-b8ce-5b82fe44b8cd 2020-05-14 21:17:45.303933 33092 2447 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 933\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-05-14\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1191\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 67754b2c-6d6d-489b-89ed-6c8ca4c01b86 2020-05-14 21:18:46.341599 33093 1692 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 177.228.111.139 67754b2c-6d6d-489b-89ed-6c8ca4c01b86 2020-05-14 21:18:46.366291 33094 2447 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.111.139 181adea7-5e38-470b-a1d7-f119d18a57cf 2020-05-14 21:18:54.576527 33095 3316 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 2447\ncardnumber: 1556\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1191\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1191 177.228.111.139 181adea7-5e38-470b-a1d7-f119d18a57cf 2020-05-14 21:18:54.59592 33096 2448 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 933\namount: !ruby/object:BigDecimal 18:0.775E3\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-05-14\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1192\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 3b8767a2-9115-421c-a9f9-7531ecff4662 2020-05-14 21:19:30.96679 33097 178 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 177.228.111.139 3b8767a2-9115-421c-a9f9-7531ecff4662 2020-05-14 21:19:30.997266 33098 2448 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.111.139 48d71ff4-140d-4710-8960-f4f55f0a296c 2020-05-14 21:19:47.593176 33099 3317 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 2448\ncardnumber: 1455\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1192\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1192 177.228.111.139 48d71ff4-140d-4710-8960-f4f55f0a296c 2020-05-14 21:19:47.613324 33100 3318 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 2304\ncardnumber: 555\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1143 177.228.111.139 f5acaabd-20d6-414f-a540-f41d2c4995f2 2020-05-14 21:20:39.590073 33101 2304 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.111.139 4e0f18e5-24e2-472b-8127-f59a2ed527c3 2020-05-14 21:20:41.807183 33102 3319 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.649E3\nmove_type: '1'\nsale_id: 2253\ncardnumber: 1256\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1116 177.228.111.139 03fb21e9-5904-4a9e-a172-cd924facfdca 2020-05-14 21:21:12.824532 33103 2253 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.111.139 3a98ab03-d613-4d48-a695-d2061cffe50b 2020-05-14 21:21:14.633965 33104 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-05-10 20:36:12.275221000 Z\n- &1 2020-05-14 21:05:54.784373000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-14 21:23:17.999866541 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946138\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537995\n mask_addr: 4294967295\nsign_in_count:\n- 130\n- 131\n 265 \N 177.228.111.139 b2f0160a-363d-447c-8441-19cf26bb0a6e 2020-05-14 21:23:18.006194 33105 8 User \N \N 8 User \N update ---\nunique_session_id:\n- P8MTLw5GYskjzfqM2pYu\n- j-hyb2GVSZicRt_Yz9Ft\n 266 \N 177.228.111.139 b2f0160a-363d-447c-8441-19cf26bb0a6e 2020-05-14 21:23:18.021245 33106 2449 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 932\namount: !ruby/object:BigDecimal 18:0.589E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2020-05-14\nsaletype: 1\nseller_id: 26\nsale_code: PV2-V-909\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 fab26c86-100d-4b65-80f7-10fe03fd461f 2020-05-14 21:24:24.324068 33107 1677 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 177.228.111.139 fab26c86-100d-4b65-80f7-10fe03fd461f 2020-05-14 21:24:24.350519 33108 2449 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.111.139 9757ac7f-739f-4c7c-b04f-4577479297a8 2020-05-14 21:24:32.252382 33109 3320 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 932\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.589E3\nmove_type: '1'\nsale_id: 2449\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-909\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1155'\n 1 movimiento de efectivo por venta con folio PV2-V-909 177.228.111.139 9757ac7f-739f-4c7c-b04f-4577479297a8 2020-05-14 21:24:32.281246 33110 2450 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 932\namount: !ruby/object:BigDecimal 18:0.589E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.589E2\ntotal: !ruby/object:BigDecimal 18:0.5301E3\nstatus: 0\ndate_sale: 2020-05-14\nsaletype: 1\nseller_id: 26\nsale_code: PV2-V-910\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 fafee2db-0e28-43f5-bf3f-19f46fe9430e 2020-05-14 21:24:50.233632 33111 1677 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 13 \N 177.228.111.139 fafee2db-0e28-43f5-bf3f-19f46fe9430e 2020-05-14 21:24:50.258698 33112 2450 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.111.139 64220beb-ebef-4524-95c3-e8b0dbe9295e 2020-05-14 21:24:58.97304 33113 3321 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 932\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.5301E3\nmove_type: '1'\nsale_id: 2450\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-910\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1256'\n 1 movimiento de efectivo por venta con folio PV2-V-910 177.228.111.139 64220beb-ebef-4524-95c3-e8b0dbe9295e 2020-05-14 21:24:58.993472 33114 2451 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 932\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2020-05-14\nsaletype: 1\nseller_id: 26\nsale_code: PV2-V-911\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 ec21138a-115a-499c-b8fe-c708fcffc715 2020-05-14 21:26:34.10283 33115 1783 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 177.228.111.139 ec21138a-115a-499c-b8fe-c708fcffc715 2020-05-14 21:26:34.129392 33116 2451 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.111.139 3837b320-33c2-4b06-895d-c63650a442d5 2020-05-14 21:26:38.183509 33117 3322 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 932\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 2451\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-911\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.469E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-911 177.228.111.139 3837b320-33c2-4b06-895d-c63650a442d5 2020-05-14 21:26:38.20489 33118 3322 CashRegistersMove \N \N 8 User \N destroy ---\nopen_cash_register_id: 932\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 2451\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-911\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.469E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 177.228.111.139 0d7da1b5-3023-46e3-b91c-e11c7b00c844 2020-05-14 21:26:39.449342 33119 3323 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 932\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 2451\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-911\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '456'\n 1 movimiento de efectivo por venta con folio PV2-V-911 177.228.111.139 941eec5d-407e-4519-b579-a28dc1a6a205 2020-05-14 21:26:48.449823 33120 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-05-08 18:47:29.135301000 Z\n- &1 2020-05-14 20:46:48.462774000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-15 15:40:58.010908261 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537251\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537995\n mask_addr: 4294967295\nsign_in_count:\n- 1559\n- 1560\n 3120 \N 177.228.111.139 2899ad2f-5f1d-4c64-ace7-b25139d173da 2020-05-15 15:40:58.037911 33121 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ndKYt2_cBVzKzKsQPSEa\n- w6a3FffZFtVhkzg8FCzH\n 3121 \N 177.228.111.139 2899ad2f-5f1d-4c64-ace7-b25139d173da 2020-05-15 15:40:58.062304 33122 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-14 19:23:09.061063000 Z\n- &1 2020-05-14 20:49:58.602699000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-15 19:09:52.041294820 Z\nsign_in_count:\n- 74\n- 75\n 151 \N 177.228.111.139 4e257c20-829f-4af2-9903-e6e4ccdc0f4b 2020-05-15 19:09:52.049093 33123 18 User \N \N 18 User \N update ---\nunique_session_id:\n- PeYzu5JXJGvyHqtccixu\n- 6uNhPjkA-KfUUZhwyLsS\n 152 \N 177.228.111.139 4e257c20-829f-4af2-9903-e6e4ccdc0f4b 2020-05-15 19:09:52.067066 33124 3324 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.269E3\nmove_type: '1'\nsale_id: 2389\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-314 177.228.111.139 a9d98631-0337-4700-a8cf-66ac76292180 2020-05-15 19:11:41.912132 33125 2389 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.111.139 9d4ca52b-9cee-470b-8231-49255037800e 2020-05-15 19:11:43.429754 33126 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-05-14 20:46:48.462774000 Z\n- &1 2020-05-15 15:40:58.010908000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-15 22:47:22.515822357 Z\nsign_in_count:\n- 1560\n- 1561\n 3122 \N 177.228.111.139 cebb8e9e-db6b-4947-b7b7-d22c29354435 2020-05-15 22:47:22.543731 33127 4 User \N \N 4 User \N update ---\nunique_session_id:\n- w6a3FffZFtVhkzg8FCzH\n- vmzqTVyJsqAQMZysydr_\n 3123 \N 177.228.111.139 cebb8e9e-db6b-4947-b7b7-d22c29354435 2020-05-15 22:47:22.568312 33128 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-14 20:49:58.602699000 Z\n- &1 2020-05-15 19:09:52.041294000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-15 22:49:10.833683496 Z\nsign_in_count:\n- 75\n- 76\n 153 \N 177.228.111.139 73e8d21c-a777-4b38-b86a-edad40f4fb93 2020-05-15 22:49:10.838842 33129 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 6uNhPjkA-KfUUZhwyLsS\n- KduAywR7VrEdcvDoZo7e\n 154 \N 177.228.111.139 73e8d21c-a777-4b38-b86a-edad40f4fb93 2020-05-15 22:49:10.851253 33130 2452 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.22485E3\ntotal: !ruby/object:BigDecimal 18:0.127415E4\nstatus: 0\ndate_sale: 2020-05-15\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-347\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 5728f28d-19a2-4183-83d1-4d02831c0975 2020-05-15 22:52:21.50356 33131 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 177.228.111.139 5728f28d-19a2-4183-83d1-4d02831c0975 2020-05-15 22:52:21.536283 33132 2452 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.111.139 91763e74-a1e9-4554-95fd-df8f4f24ac9f 2020-05-15 22:52:31.42906 33133 3325 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.127415E4\nmove_type: '1'\nsale_id: 2452\ncardnumber: 4556\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-347\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-347 177.228.111.139 91763e74-a1e9-4554-95fd-df8f4f24ac9f 2020-05-15 22:52:31.453245 33134 2453 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.2998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2998E4\nstatus: 0\ndate_sale: 2020-05-15\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-348\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 eecc448b-8800-4552-a0b6-2d0ac2890cba 2020-05-15 22:53:04.010844 33135 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 177.228.111.139 eecc448b-8800-4552-a0b6-2d0ac2890cba 2020-05-15 22:53:04.05075 33136 2453 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.111.139 8406a8c6-1319-45e0-9561-a79d1f1b2458 2020-05-15 22:53:12.083268 33137 3326 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.2998E4\nmove_type: '1'\nsale_id: 2453\ncardnumber: 555\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-348\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-348 177.228.111.139 8406a8c6-1319-45e0-9561-a79d1f1b2458 2020-05-15 22:53:12.106556 33138 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-05-15 15:40:58.010908000 Z\n- &1 2020-05-15 22:47:22.515822000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-15 22:55:32.854005840 Z\nsign_in_count:\n- 1561\n- 1562\n 3124 \N 177.228.111.139 232b74d5-b95a-468f-b50f-d349dbf99563 2020-05-15 22:55:32.859885 33139 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vmzqTVyJsqAQMZysydr_\n- VEQm-FGyMqnp1CmRYwJY\n 3125 \N 177.228.111.139 232b74d5-b95a-468f-b50f-d349dbf99563 2020-05-15 22:55:32.875144 33140 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-15 19:09:52.041294000 Z\n- &1 2020-05-15 22:49:10.833683000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-17 04:05:25.812909950 Z\nsign_in_count:\n- 76\n- 77\n 155 \N 177.228.111.139 65346767-7545-45f2-a0e0-dd49449797d0 2020-05-17 04:05:25.854053 33141 18 User \N \N 18 User \N update ---\nunique_session_id:\n- KduAywR7VrEdcvDoZo7e\n- U78teAAK1SUWqEnZmoC7\n 156 \N 177.228.111.139 65346767-7545-45f2-a0e0-dd49449797d0 2020-05-17 04:05:25.874464 33142 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-05-09 04:14:39.270252000 Z\n- &1 2020-05-09 23:05:17.278374000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-18 03:22:57.162299459 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534613\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534429\n mask_addr: 4294967295\nsign_in_count:\n- 532\n- 533\n 1069 \N 177.228.97.157 5c33fa27-ee1a-4a84-b0bb-262a28dd9db5 2020-05-18 03:22:57.204864 33143 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xwNQK9xVdYhWhrSML3xS\n- EpzUaBzZVn6BxFDu97xq\n 1070 \N 177.228.97.157 5c33fa27-ee1a-4a84-b0bb-262a28dd9db5 2020-05-18 03:22:57.226278 33144 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-05-15 22:47:22.515822000 Z\n- &1 2020-05-15 22:55:32.854005000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-18 16:48:37.077791484 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537995\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147109029\n mask_addr: 4294967295\nsign_in_count:\n- 1562\n- 1563\n 3126 \N 187.149.18.165 1b71b8a3-cf0d-4873-9644-8cbddc1fb530 2020-05-18 16:48:37.104552 33145 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VEQm-FGyMqnp1CmRYwJY\n- PGdsUeDsyMcmyN9WsykJ\n 3127 \N 187.149.18.165 1b71b8a3-cf0d-4873-9644-8cbddc1fb530 2020-05-18 16:48:37.128601 33146 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-05-15 22:55:32.854005000 Z\n- &1 2020-05-18 16:48:37.077791000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-20 00:58:40.298143457 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537995\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147109029\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147109029\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537995\n mask_addr: 4294967295\nsign_in_count:\n- 1563\n- 1564\n 3128 \N 177.228.111.139 ae6af76c-37ba-4310-9808-4cd58fde4800 2020-05-20 00:58:40.328613 33147 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PGdsUeDsyMcmyN9WsykJ\n- aEq6-Co9M7zcXcy4yN7Z\n 3129 \N 177.228.111.139 ae6af76c-37ba-4310-9808-4cd58fde4800 2020-05-20 00:58:40.354649 33148 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-05-14 21:05:54.784373000 Z\n- &1 2020-05-14 21:23:17.999866000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-20 01:00:26.789244510 Z\nsign_in_count:\n- 131\n- 132\n 267 \N 177.228.111.139 dfe565ee-e86a-472a-9a7d-a4677040ba4e 2020-05-20 01:00:26.79436 33149 8 User \N \N 8 User \N update ---\nunique_session_id:\n- j-hyb2GVSZicRt_Yz9Ft\n- tXwxQ3sfZVPtB1fY6d2i\n 268 \N 177.228.111.139 dfe565ee-e86a-472a-9a7d-a4677040ba4e 2020-05-20 01:00:26.813535 33150 2454 Sale \N \N 8 User \N create ---\ncustomer_id: 3\nuser_id: 8\nopen_cash_register_id: 932\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-05-19\nsaletype: 0\nseller_id: 26\nsale_code: PV2-V-912\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 73ac7782-1a05-4c4c-9b6a-5ebcb9010ba7 2020-05-20 01:11:33.357042 33151 1683 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 177.228.111.139 73ac7782-1a05-4c4c-9b6a-5ebcb9010ba7 2020-05-20 01:11:33.398231 33152 2455 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 932\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-05-19\nsaletype: 1\nseller_id: 26\nsale_code: PV2-V-913\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 972cba18-89ef-4d6e-9260-cb64f1571642 2020-05-20 01:12:57.325603 33153 1683 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 177.228.111.139 972cba18-89ef-4d6e-9260-cb64f1571642 2020-05-20 01:12:57.362283 33154 2455 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.111.139 e306a921-3b1e-43a9-ab3f-3c8a37ac2193 2020-05-20 01:13:06.825903 33155 3327 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 932\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 2455\ncardnumber: 455\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-913\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV2-V-913 177.228.111.139 e306a921-3b1e-43a9-ab3f-3c8a37ac2193 2020-05-20 01:13:06.872161 33156 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-05-06 04:39:04.816523000 Z\n- &1 2020-05-14 21:17:42.356717000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-20 01:13:37.513626671 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537739\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537995\n mask_addr: 4294967295\nsign_in_count:\n- 117\n- 118\n 236 \N 177.228.111.139 c13c4443-f0a7-498f-a594-4e80280bdcf3 2020-05-20 01:13:37.520514 33157 9 User \N \N 9 User \N update ---\nunique_session_id:\n- _zdQ7P1HxkwNhPjLy1o1\n- 4zw7zysa6Vi-eQ6gjjbA\n 237 \N 177.228.111.139 c13c4443-f0a7-498f-a594-4e80280bdcf3 2020-05-20 01:13:37.536062 33158 2456 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 933\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2020-05-19\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1193\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 1eb7d50f-1fdc-400f-8dcc-75921fce7af3 2020-05-20 01:14:12.297006 33159 1156 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 15 \N 177.228.111.139 1eb7d50f-1fdc-400f-8dcc-75921fce7af3 2020-05-20 01:14:12.357482 33161 3328 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 2456\ncardnumber: 4556\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1193\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1193 177.228.111.139 9e3132c2-b78b-48d2-8175-918baa67ffe7 2020-05-20 01:14:20.882149 33162 2457 Sale \N \N 9 User \N create ---\ncustomer_id: 3\nuser_id: 9\nopen_cash_register_id: 933\namount: !ruby/object:BigDecimal 18:0.529E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.529E3\nstatus: 0\ndate_sale: 2020-05-19\nsaletype: 0\nseller_id: 25\nsale_code: PV1-V-1194\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 39501de7-84c1-4014-9ac7-76779d9517fb 2020-05-20 01:15:23.439979 33163 1644 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 177.228.111.139 39501de7-84c1-4014-9ac7-76779d9517fb 2020-05-20 01:15:23.474528 33164 3329 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.1128E4\nmove_type: '1'\nsale_id: 2431\ncardnumber: 552\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 177.228.111.139 c301317f-7592-4b88-90d6-e736d20486b9 2020-05-20 01:16:52.840271 33165 3329 CashRegistersMove \N \N 9 User \N update ---\nopen_cash_register_id:\n- 928\n- 933\n 2 movimiento de efectivo por venta con folio PV3-V-332 177.228.111.139 c301317f-7592-4b88-90d6-e736d20486b9 2020-05-20 01:16:52.873732 33166 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-05-14 21:23:17.999866000 Z\n- &1 2020-05-20 01:00:26.789244000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-20 01:18:11.917860348 Z\nsign_in_count:\n- 132\n- 133\n 269 \N 177.228.111.139 ab5f52c9-1bac-44ea-970b-34d86d89fd59 2020-05-20 01:18:11.923578 33167 8 User \N \N 8 User \N update ---\nunique_session_id:\n- tXwxQ3sfZVPtB1fY6d2i\n- ibXwBoGkynQe8wFgXfBG\n 270 \N 177.228.111.139 ab5f52c9-1bac-44ea-970b-34d86d89fd59 2020-05-20 01:18:11.939897 33168 2458 Sale \N \N 8 User \N create ---\ncustomer_id: 298\nuser_id: 8\nopen_cash_register_id: 932\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.849E3\nstatus: 0\ndate_sale: 2020-05-19\nsaletype: 0\nseller_id: 26\nsale_code: PV2-V-914\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 3072a81b-9367-48f4-ba50-7052143b2c33 2020-05-20 01:19:08.562202 33169 1650 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 177.228.111.139 3072a81b-9367-48f4-ba50-7052143b2c33 2020-05-20 01:19:08.600144 33170 3330 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 883\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.9E3\nmove_type: '1'\nsale_id: 2311\ncardnumber: 155\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 177.228.111.139 def567ed-d9e1-40e4-a4f1-127dcbac7114 2020-05-20 01:21:27.780909 33171 3330 CashRegistersMove \N \N 8 User \N update ---\nopen_cash_register_id:\n- 883\n- 932\n 2 movimiento de efectivo por venta con folio PV3-V-291 177.228.111.139 def567ed-d9e1-40e4-a4f1-127dcbac7114 2020-05-20 01:21:27.812809 33172 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-15 22:49:10.833683000 Z\n- &1 2020-05-17 04:05:25.812909000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-20 01:21:54.876775393 Z\nsign_in_count:\n- 77\n- 78\n 157 \N 177.228.111.139 3cac2482-f742-469b-b396-958278e9a588 2020-05-20 01:21:54.882649 33173 18 User \N \N 18 User \N update ---\nunique_session_id:\n- U78teAAK1SUWqEnZmoC7\n- cuvL66S-aza96K8f6zMH\n 158 \N 177.228.111.139 3cac2482-f742-469b-b396-958278e9a588 2020-05-20 01:21:54.905798 33174 2459 Sale \N \N 18 User \N create ---\ncustomer_id: 122\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-05-19\nsaletype: 0\nseller_id: 24\nsale_code: PV3-V-349\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.111.139 fe26c388-361d-4aa9-8511-00ccdeb00a13 2020-05-20 01:22:34.288569 33175 1431 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 177.228.111.139 fe26c388-361d-4aa9-8511-00ccdeb00a13 2020-05-20 01:22:34.326609 33176 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-05-18 16:48:37.077791000 Z\n- &1 2020-05-20 00:58:40.298143000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-20 01:27:46.638123430 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147109029\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537995\n mask_addr: 4294967295\nsign_in_count:\n- 1564\n- 1565\n 3130 \N 177.228.111.139 89452993-a61f-49bd-99e4-10b6e8c644ba 2020-05-20 01:27:46.645551 33177 4 User \N \N 4 User \N update ---\nunique_session_id:\n- aEq6-Co9M7zcXcy4yN7Z\n- MtysXzjppyo7sj1Q75gW\n 3131 \N 177.228.111.139 89452993-a61f-49bd-99e4-10b6e8c644ba 2020-05-20 01:27:46.672003 33178 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-05-09 23:05:17.278374000 Z\n- &1 2020-05-18 03:22:57.162299000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-21 19:07:48.394318692 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534613\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534429\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534429\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534333\n mask_addr: 4294967295\nsign_in_count:\n- 533\n- 534\n 1071 \N 177.228.97.61 538ae8c2-10c8-4b5f-9ae5-6662ff043a51 2020-05-21 19:07:48.425358 33179 2 User \N \N 2 User \N update ---\nunique_session_id:\n- EpzUaBzZVn6BxFDu97xq\n- bwxm_xnx_YZj1oBTr-qC\n 1072 \N 177.228.97.61 538ae8c2-10c8-4b5f-9ae5-6662ff043a51 2020-05-21 19:07:48.452983 33180 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-05-18 03:22:57.162299000 Z\n- &1 2020-05-21 19:07:48.394318000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-21 19:07:50.695695264 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534429\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534333\n mask_addr: 4294967295\nsign_in_count:\n- 534\n- 535\n 1073 \N 177.228.97.61 f5eef990-f0e9-440a-bc12-0e85731696a6 2020-05-21 19:07:50.70164 33181 2 User \N \N 2 User \N update ---\nunique_session_id:\n- bwxm_xnx_YZj1oBTr-qC\n- nf5LFs19Q9LyWxqB79XS\n 1074 \N 177.228.97.61 f5eef990-f0e9-440a-bc12-0e85731696a6 2020-05-21 19:07:50.716297 33263 933 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 177.228.110.67 1f6d80d1-19c3-4001-b4ba-d1f45fbb519a 2020-06-10 23:04:19.890135 33264 2460 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.110.67 58199af2-2c53-4645-8dde-7d3785a50637 2020-06-10 23:04:32.071263 33182 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-05-20 01:00:26.789244000 Z\n- &1 2020-05-20 01:18:11.917860000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-21 21:22:21.390627828 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537995\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537251\n mask_addr: 4294967295\nsign_in_count:\n- 133\n- 134\n 271 \N 177.228.108.163 370b18a1-9860-4a4e-88ed-b20871ae25c3 2020-05-21 21:22:21.39732 33183 8 User \N \N 8 User \N update ---\nunique_session_id:\n- ibXwBoGkynQe8wFgXfBG\n- KuGLBkgqwmsx5ByNTd8X\n 272 \N 177.228.108.163 370b18a1-9860-4a4e-88ed-b20871ae25c3 2020-05-21 21:22:21.415109 33184 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-05-14 21:17:42.356717000 Z\n- &1 2020-05-20 01:13:37.513626000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-21 21:23:36.851721637 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537995\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537251\n mask_addr: 4294967295\nsign_in_count:\n- 118\n- 119\n 238 \N 177.228.108.163 e3c55fef-4b34-4691-be2e-ecaa45fd4474 2020-05-21 21:23:36.858194 33185 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 4zw7zysa6Vi-eQ6gjjbA\n- BYysJLgcEkELtyuqUvuN\n 239 \N 177.228.108.163 e3c55fef-4b34-4691-be2e-ecaa45fd4474 2020-05-21 21:23:36.883267 33186 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-17 04:05:25.812909000 Z\n- &1 2020-05-20 01:21:54.876775000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-22 01:33:17.736041149 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537995\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537251\n mask_addr: 4294967295\nsign_in_count:\n- 78\n- 79\n 159 \N 177.228.108.163 1520df56-364a-4bea-8652-613b93e6ed1a 2020-05-22 01:33:17.742667 33187 18 User \N \N 18 User \N update ---\nunique_session_id:\n- cuvL66S-aza96K8f6zMH\n- n3RyZXvPXMa_t25CVh55\n 160 \N 177.228.108.163 1520df56-364a-4bea-8652-613b93e6ed1a 2020-05-22 01:33:17.771408 33188 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-05-10 17:27:42.290063000 Z\n- &1 2020-05-14 20:55:56.178006000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-23 02:46:17.313005904 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147109029\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147109029\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084605\n mask_addr: 4294967295\nsign_in_count:\n- 213\n- 214\n 429 \N 189.186.4.61 a3e0f6c0-31c3-40cc-9ed2-07abb54020b6 2020-05-23 02:46:17.342951 33189 21 User \N \N 21 User \N update ---\nunique_session_id:\n- "-TjBsTxLfHmThAGcypy-"\n- 6GvFKvSFU4w6-AzFoPcS\n 430 \N 189.186.4.61 a3e0f6c0-31c3-40cc-9ed2-07abb54020b6 2020-05-23 02:46:17.369149 33190 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-20 01:21:54.876775000 Z\n- &1 2020-05-22 01:33:17.736041000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-27 04:02:34.809568726 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537995\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537251\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537251\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538019\n mask_addr: 4294967295\nsign_in_count:\n- 79\n- 80\n 161 \N 177.228.111.163 d9b98118-ccae-46c2-b159-51a494ced510 2020-05-27 04:02:34.837925 33191 18 User \N \N 18 User \N update ---\nunique_session_id:\n- n3RyZXvPXMa_t25CVh55\n- qFEMx_oszC_WsFJWugkF\n 162 \N 177.228.111.163 d9b98118-ccae-46c2-b159-51a494ced510 2020-05-27 04:02:34.85981 33192 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-22 01:33:17.736041000 Z\n- &1 2020-05-27 04:02:34.809568000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-27 22:45:05.720813618 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537251\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538019\n mask_addr: 4294967295\nsign_in_count:\n- 80\n- 81\n 163 \N 177.228.111.163 9046d3fa-831f-405a-946a-0b8469a023a1 2020-05-27 22:45:05.751384 33193 18 User \N \N 18 User \N update ---\nunique_session_id:\n- qFEMx_oszC_WsFJWugkF\n- zK51u5Y9ZBsYs6GsZyXr\n 164 \N 177.228.111.163 9046d3fa-831f-405a-946a-0b8469a023a1 2020-05-27 22:45:05.77501 33194 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-05-20 01:18:11.917860000 Z\n- &1 2020-05-21 21:22:21.390627000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-28 17:39:44.022484773 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537995\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537251\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537251\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538019\n mask_addr: 4294967295\nsign_in_count:\n- 134\n- 135\n 273 \N 177.228.111.163 08e2d388-83fb-467c-afe6-9e369c8ba30c 2020-05-28 17:39:44.052133 33195 8 User \N \N 8 User \N update ---\nunique_session_id:\n- KuGLBkgqwmsx5ByNTd8X\n- 5arz6pJ5iropYxfQPTK7\n 274 \N 177.228.111.163 08e2d388-83fb-467c-afe6-9e369c8ba30c 2020-05-28 17:39:44.076287 33196 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-05-21 21:22:21.390627000 Z\n- &1 2020-05-28 17:39:44.022484000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-29 02:24:52.281198763 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537251\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538019\n mask_addr: 4294967295\nsign_in_count:\n- 135\n- 136\n 275 \N 177.228.111.163 52062a16-4cd1-439d-8180-748c2245edde 2020-05-29 02:24:52.287509 33197 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 5arz6pJ5iropYxfQPTK7\n- SgXy_jbSgnoowjtq6bnt\n 276 \N 177.228.111.163 52062a16-4cd1-439d-8180-748c2245edde 2020-05-29 02:24:52.307373 33198 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-05-20 00:58:40.298143000 Z\n- &1 2020-05-20 01:27:46.638123000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-29 02:27:01.697694482 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537995\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112325\n mask_addr: 4294967295\nsign_in_count:\n- 1565\n- 1566\n 3132 \N 187.149.31.133 1eeb4197-db8e-402e-b3ba-66cd138e2aca 2020-05-29 02:27:01.704479 33199 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MtysXzjppyo7sj1Q75gW\n- 2TwCXYy2aU5cQyFxBN6e\n 3133 \N 187.149.31.133 1eeb4197-db8e-402e-b3ba-66cd138e2aca 2020-05-29 02:27:01.726584 33200 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-27 04:02:34.809568000 Z\n- &1 2020-05-27 22:45:05.720813000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-29 06:53:12.509463067 Z\nsign_in_count:\n- 81\n- 82\n 165 \N 177.228.111.163 b2bade17-67f8-4ad4-856d-abedfff72e75 2020-05-29 06:53:12.515878 33201 18 User \N \N 18 User \N update ---\nunique_session_id:\n- zK51u5Y9ZBsYs6GsZyXr\n- K73tRzqfQQ_2NqUngaDU\n 166 \N 177.228.111.163 b2bade17-67f8-4ad4-856d-abedfff72e75 2020-05-29 06:53:12.530947 33202 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-05-28 17:39:44.022484000 Z\n- &1 2020-05-29 02:24:52.281198000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-31 19:35:14.841508796 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538019\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537323\n mask_addr: 4294967295\nsign_in_count:\n- 136\n- 137\n 277 \N 177.228.108.235 a402e0f3-81e4-49ac-82de-76b52d33270d 2020-05-31 19:35:14.872244 33203 8 User \N \N 8 User \N update ---\nunique_session_id:\n- SgXy_jbSgnoowjtq6bnt\n- 3enHbn-wgt3PMdzRqcDb\n 278 \N 177.228.108.235 a402e0f3-81e4-49ac-82de-76b52d33270d 2020-05-31 19:35:14.905584 33204 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-05-20 01:27:46.638123000 Z\n- &1 2020-05-29 02:27:01.697694000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-05-31 19:36:00.242562740 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537995\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112325\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112325\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537323\n mask_addr: 4294967295\nsign_in_count:\n- 1566\n- 1567\n 3134 \N 177.228.108.235 d5574127-81df-4327-8c02-2161889da89a 2020-05-31 19:36:00.249877 33205 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2TwCXYy2aU5cQyFxBN6e\n- wnhq713iaoR-U7wnXqcx\n 3135 \N 177.228.108.235 d5574127-81df-4327-8c02-2161889da89a 2020-05-31 19:36:00.452126 33206 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-05-29 02:27:01.697694000 Z\n- &1 2020-05-31 19:36:00.242562000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-01 20:40:22.545055040 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112325\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537323\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537323\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945831\n mask_addr: 4294967295\nsign_in_count:\n- 1567\n- 1568\n 3136 \N 200.68.180.103 ad11ba12-8816-41be-a816-4155a0555e5e 2020-06-01 20:40:22.574224 33207 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wnhq713iaoR-U7wnXqcx\n- VWMx1q1TzvPhX1KxsV3_\n 3137 \N 200.68.180.103 ad11ba12-8816-41be-a816-4155a0555e5e 2020-06-01 20:40:22.600765 33208 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-27 22:45:05.720813000 Z\n- &1 2020-05-29 06:53:12.509463000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-02 19:58:19.819082459 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538019\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537763\n mask_addr: 4294967295\nsign_in_count:\n- 82\n- 83\n 167 \N 177.228.110.163 80c627b6-91a5-40df-81c8-d70263089803 2020-06-02 19:58:19.848703 33209 18 User \N \N 18 User \N update ---\nunique_session_id:\n- K73tRzqfQQ_2NqUngaDU\n- zVgJdpx4pAmy2fwL3mPL\n 168 \N 177.228.110.163 80c627b6-91a5-40df-81c8-d70263089803 2020-06-02 19:58:19.886183 33210 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-05-21 19:07:48.394318000 Z\n- &1 2020-05-21 19:07:50.695695000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-03 17:14:34.358227247 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534333\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730170\n mask_addr: 4294967295\nsign_in_count:\n- 535\n- 536\n 1075 \N 201.175.159.250 63119d7e-b6d8-41db-8a88-2165220f624e 2020-06-03 17:14:34.387311 33211 2 User \N \N 2 User \N update ---\nunique_session_id:\n- nf5LFs19Q9LyWxqB79XS\n- poqVPu7esY1RJkbN2q7M\n 1076 \N 201.175.159.250 63119d7e-b6d8-41db-8a88-2165220f624e 2020-06-03 17:14:34.419261 33212 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-05-21 19:07:50.695695000 Z\n- &1 2020-06-03 17:14:34.358227000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-03 18:29:18.908924310 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534333\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730170\n mask_addr: 4294967295\nsign_in_count:\n- 536\n- 537\n 1077 \N 201.175.159.250 186d759e-a7e6-456a-bdda-dd92ceb1e888 2020-06-03 18:29:18.940052 33213 2 User \N \N 2 User \N update ---\nunique_session_id:\n- poqVPu7esY1RJkbN2q7M\n- 5iRkGz-iFJrCvJ8JNB_5\n 1078 \N 201.175.159.250 186d759e-a7e6-456a-bdda-dd92ceb1e888 2020-06-03 18:29:18.973 33214 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-03 17:14:34.358227000 Z\n- &1 2020-06-03 18:29:18.908924000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-04 04:25:29.189812646 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730170\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729516\n mask_addr: 4294967295\nsign_in_count:\n- 537\n- 538\n 1079 \N 201.175.157.108 0fbf7d12-82f4-489e-bd7d-b5101f725082 2020-06-04 04:25:29.197776 33215 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 5iRkGz-iFJrCvJ8JNB_5\n- VPhSn1E4Ls1UYBZSebB-\n 1080 \N 201.175.157.108 0fbf7d12-82f4-489e-bd7d-b5101f725082 2020-06-04 04:25:29.220775 33216 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-03 18:29:18.908924000 Z\n- &1 2020-06-04 04:25:29.189812000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-04 06:05:03.625104173 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730170\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729516\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729516\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729391\n mask_addr: 4294967295\nsign_in_count:\n- 538\n- 539\n 1081 \N 201.175.156.239 8f7f270b-c6bd-422e-ac15-54ed14591894 2020-06-04 06:05:03.633442 33217 2 User \N \N 2 User \N update ---\nunique_session_id:\n- VPhSn1E4Ls1UYBZSebB-\n- uZ7wLBdyRdrybHS84nxN\n 1082 \N 201.175.156.239 8f7f270b-c6bd-422e-ac15-54ed14591894 2020-06-04 06:05:03.656175 33218 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-05-29 06:53:12.509463000 Z\n- &1 2020-06-02 19:58:19.819082000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-04 21:40:17.952325090 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538019\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537763\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537763\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945969\n mask_addr: 4294967295\nsign_in_count:\n- 83\n- 84\n 169 \N 200.68.180.241 4a23ecd3-92cb-476b-900a-eb6d923cb57e 2020-06-04 21:40:17.984256 33219 18 User \N \N 18 User \N update ---\nunique_session_id:\n- zVgJdpx4pAmy2fwL3mPL\n- 6kGCP4xuznRJzqdQamFW\n 170 \N 200.68.180.241 4a23ecd3-92cb-476b-900a-eb6d923cb57e 2020-06-04 21:40:18.013965 33220 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-05-14 20:55:56.178006000 Z\n- &1 2020-05-23 02:46:17.313005000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-04 21:41:53.796521332 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147109029\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084605\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084605\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138661\n mask_addr: 4294967295\nsign_in_count:\n- 214\n- 215\n 431 \N 189.186.215.101 c69ef986-0877-495e-9289-470b9625b0ab 2020-06-04 21:41:53.80445 33221 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 6GvFKvSFU4w6-AzFoPcS\n- ipLHtrkaeFzjYDVsaLH5\n 432 \N 189.186.215.101 c69ef986-0877-495e-9289-470b9625b0ab 2020-06-04 21:41:53.825055 33222 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-05-31 19:36:00.242562000 Z\n- &1 2020-06-01 20:40:22.545055000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-05 00:32:02.371432520 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537323\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945831\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945831\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945969\n mask_addr: 4294967295\nsign_in_count:\n- 1568\n- 1569\n 3138 \N 200.68.180.241 c61c48bf-e51c-471e-8793-021c832eaa0e 2020-06-05 00:32:02.379917 33223 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VWMx1q1TzvPhX1KxsV3_\n- xyzD1FmH3aNxcxK4GhtY\n 3139 \N 200.68.180.241 c61c48bf-e51c-471e-8793-021c832eaa0e 2020-06-05 00:32:02.406058 33224 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-04 04:25:29.189812000 Z\n- &1 2020-06-04 06:05:03.625104000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-05 01:53:50.835906722 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729516\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729391\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729391\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729559\n mask_addr: 4294967295\nsign_in_count:\n- 539\n- 540\n 1083 \N 201.175.157.151 60de6e01-1333-4a81-83f4-c4a236bde1ac 2020-06-05 01:53:50.866035 33225 2 User \N \N 2 User \N update ---\nunique_session_id:\n- uZ7wLBdyRdrybHS84nxN\n- GBJ9GmdrGLMvDEx2sJaK\n 1084 \N 201.175.157.151 60de6e01-1333-4a81-83f4-c4a236bde1ac 2020-06-05 01:53:50.897984 33226 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-04 06:05:03.625104000 Z\n- &1 2020-06-05 01:53:50.835906000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-05 15:52:39.348140317 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729391\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729559\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729559\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729377\n mask_addr: 4294967295\nsign_in_count:\n- 540\n- 541\n 1085 \N 201.175.156.225 f6b6ff1e-a0c6-4209-b9c4-c427fc68206e 2020-06-05 15:52:39.393118 33227 2 User \N \N 2 User \N update ---\nunique_session_id:\n- GBJ9GmdrGLMvDEx2sJaK\n- m295Q7GNAipKe4mGspdx\n 1086 \N 201.175.156.225 f6b6ff1e-a0c6-4209-b9c4-c427fc68206e 2020-06-05 15:52:39.431455 33228 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-05 01:53:50.835906000 Z\n- &1 2020-06-05 15:52:39.348140000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-05 16:11:48.588426610 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729559\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729377\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729377\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729872\n mask_addr: 4294967295\nsign_in_count:\n- 541\n- 542\n 1087 \N 201.175.158.208 72e0d46a-e382-4aab-af1a-710a0d649dd9 2020-06-05 16:11:48.598854 33229 2 User \N \N 2 User \N update ---\nunique_session_id:\n- m295Q7GNAipKe4mGspdx\n- trzLS2QNXHawjvZsUyzz\n 1088 \N 201.175.158.208 72e0d46a-e382-4aab-af1a-710a0d649dd9 2020-06-05 16:11:48.624557 33230 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-05 15:52:39.348140000 Z\n- &1 2020-06-05 16:11:48.588426000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-05 16:48:14.895563383 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729377\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729872\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729872\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729377\n mask_addr: 4294967295\nsign_in_count:\n- 542\n- 543\n 1089 \N 201.175.156.225 fcecde47-a61c-4153-8c46-4ff5cbf184ff 2020-06-05 16:48:14.902795 33231 2 User \N \N 2 User \N update ---\nunique_session_id:\n- trzLS2QNXHawjvZsUyzz\n- vzjJEUf3JgQk3dD1yk7k\n 1090 \N 201.175.156.225 fcecde47-a61c-4153-8c46-4ff5cbf184ff 2020-06-05 16:48:14.919775 33232 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-06-02 19:58:19.819082000 Z\n- &1 2020-06-04 21:40:17.952325000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-05 16:53:55.343286581 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537763\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945969\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945969\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537579\n mask_addr: 4294967295\nsign_in_count:\n- 84\n- 85\n 171 \N 177.228.109.235 ae1f8b01-dff8-4bbc-bab3-2960504656dc 2020-06-05 16:53:55.351046 33233 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 6kGCP4xuznRJzqdQamFW\n- tpwiXZ8ZqaMRpjKvDmV1\n 172 \N 177.228.109.235 ae1f8b01-dff8-4bbc-bab3-2960504656dc 2020-06-05 16:53:55.367607 33234 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-05 16:11:48.588426000 Z\n- &1 2020-06-05 16:48:14.895563000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-05 19:00:31.895570451 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729872\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729377\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729377\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729173\n mask_addr: 4294967295\nsign_in_count:\n- 543\n- 544\n 1091 \N 201.175.156.21 1ea4f5be-2080-4060-935b-c1602f889c4a 2020-06-05 19:00:31.903663 33235 2 User \N \N 2 User \N update ---\nunique_session_id:\n- vzjJEUf3JgQk3dD1yk7k\n- 7Gis2qvfhEdiGGxj2rJE\n 1092 \N 201.175.156.21 1ea4f5be-2080-4060-935b-c1602f889c4a 2020-06-05 19:00:31.920643 33236 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-05 16:48:14.895563000 Z\n- &1 2020-06-05 19:00:31.895570000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-06 00:01:10.762993487 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729377\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729173\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729173\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730032\n mask_addr: 4294967295\nsign_in_count:\n- 544\n- 545\n 1093 \N 201.175.159.112 b0b2b8d4-2b0b-451d-81f5-199143fd9809 2020-06-06 00:01:10.770651 33237 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 7Gis2qvfhEdiGGxj2rJE\n- gvdtX9SnE3hkQ86cvNW4\n 1094 \N 201.175.159.112 b0b2b8d4-2b0b-451d-81f5-199143fd9809 2020-06-06 00:01:10.79556 33238 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-05 19:00:31.895570000 Z\n- &1 2020-06-06 00:01:10.762993000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-06 05:15:32.068995288 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729173\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730032\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730032\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729173\n mask_addr: 4294967295\nsign_in_count:\n- 545\n- 546\n 1095 \N 201.175.156.21 6fffd81c-b2cf-44db-8c67-5a6f6289d7a8 2020-06-06 05:15:32.092351 33239 2 User \N \N 2 User \N update ---\nunique_session_id:\n- gvdtX9SnE3hkQ86cvNW4\n- qVHcV77487s9seQru3pc\n 1096 \N 201.175.156.21 6fffd81c-b2cf-44db-8c67-5a6f6289d7a8 2020-06-06 05:15:32.18899 33240 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-06 00:01:10.762993000 Z\n- &1 2020-06-06 05:15:32.068995000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-06 18:04:24.842053203 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730032\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729173\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729173\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938059\n mask_addr: 4294967295\nsign_in_count:\n- 546\n- 547\n 1097 \N 200.68.150.11 10f1c956-ee68-4f1d-b9b0-6842f90347b9 2020-06-06 18:04:24.870905 33241 2 User \N \N 2 User \N update ---\nunique_session_id:\n- qVHcV77487s9seQru3pc\n- "-ks3EuLSRM6HMzpZ-j4i"\n 1098 \N 200.68.150.11 10f1c956-ee68-4f1d-b9b0-6842f90347b9 2020-06-06 18:04:24.895033 33383 1467 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 7d50faad-30e5-4d70-9588-380a42a8fba8 2020-06-23 23:56:35.394768 33242 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-06 05:15:32.068995000 Z\n- &1 2020-06-06 18:04:24.842053000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-07 23:49:28.107588875 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729173\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938059\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938059\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729176\n mask_addr: 4294967295\nsign_in_count:\n- 547\n- 548\n 1099 \N 201.175.156.24 7272fb97-4e55-474e-baaf-9cada2e659eb 2020-06-07 23:49:28.137042 33243 2 User \N \N 2 User \N update ---\nunique_session_id:\n- "-ks3EuLSRM6HMzpZ-j4i"\n- bH1m6xsC7NVmHvXrRZyU\n 1100 \N 201.175.156.24 7272fb97-4e55-474e-baaf-9cada2e659eb 2020-06-07 23:49:28.165132 33244 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-06 18:04:24.842053000 Z\n- &1 2020-06-07 23:49:28.107588000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-08 01:43:06.971252011 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938059\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729176\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729176\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730135\n mask_addr: 4294967295\nsign_in_count:\n- 548\n- 549\n 1101 \N 201.175.159.215 b7462e1a-ee5c-4453-90d3-85431c95a056 2020-06-08 01:43:06.979307 33245 2 User \N \N 2 User \N update ---\nunique_session_id:\n- bH1m6xsC7NVmHvXrRZyU\n- VemX4Rq4MDK85jyNK18k\n 1102 \N 201.175.159.215 b7462e1a-ee5c-4453-90d3-85431c95a056 2020-06-08 01:43:07.011252 33246 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-06-04 21:40:17.952325000 Z\n- &1 2020-06-05 16:53:55.343286000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-09 17:59:29.574692888 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945969\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537579\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537579\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934404\n mask_addr: 4294967295\nsign_in_count:\n- 85\n- 86\n 173 \N 200.68.135.196 3af2d8bd-d0e9-4b24-8a49-f4007bcb760e 2020-06-09 17:59:29.604879 33247 18 User \N \N 18 User \N update ---\nunique_session_id:\n- tpwiXZ8ZqaMRpjKvDmV1\n- GR6M8JWsWc8WGePxKsPw\n 174 \N 200.68.135.196 3af2d8bd-d0e9-4b24-8a49-f4007bcb760e 2020-06-09 17:59:29.637421 33248 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-06-05 16:53:55.343286000 Z\n- &1 2020-06-09 17:59:29.574692000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-09 17:59:30.104585677 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537579\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934404\n mask_addr: 4294967295\nsign_in_count:\n- 86\n- 87\n 175 \N 200.68.135.196 3aec0595-af87-488b-8a2e-60812431ac6a 2020-06-09 17:59:30.111038 33249 18 User \N \N 18 User \N update ---\nunique_session_id:\n- GR6M8JWsWc8WGePxKsPw\n- HNLoJBZUnyxWHb8o6Rfq\n 176 \N 200.68.135.196 3aec0595-af87-488b-8a2e-60812431ac6a 2020-06-09 17:59:30.126802 33250 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-07 23:49:28.107588000 Z\n- &1 2020-06-08 01:43:06.971252000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-09 21:05:13.495867193 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729176\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730135\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730135\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729311\n mask_addr: 4294967295\nsign_in_count:\n- 549\n- 550\n 1103 \N 201.175.156.159 8b5bb35a-1b34-41f6-983c-6ec74146f940 2020-06-09 21:05:13.503524 33251 2 User \N \N 2 User \N update ---\nunique_session_id:\n- VemX4Rq4MDK85jyNK18k\n- K_W5mR_-Rign5jYfYfdN\n 1104 \N 201.175.156.159 8b5bb35a-1b34-41f6-983c-6ec74146f940 2020-06-09 21:05:13.522352 33252 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-08 01:43:06.971252000 Z\n- &1 2020-06-09 21:05:13.495867000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-09 21:37:21.871183375 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730135\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729311\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729311\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934408\n mask_addr: 4294967295\nsign_in_count:\n- 550\n- 551\n 1105 \N 200.68.135.200 d32896dc-f476-42de-ae0e-776cc427c05e 2020-06-09 21:37:21.878729 33253 2 User \N \N 2 User \N update ---\nunique_session_id:\n- K_W5mR_-Rign5jYfYfdN\n- 3oPQVSkfbGV9sk4cM5Rs\n 1106 \N 200.68.135.200 d32896dc-f476-42de-ae0e-776cc427c05e 2020-06-09 21:37:21.896004 33254 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-06-09 17:59:29.574692000 Z\n- &1 2020-06-09 17:59:30.104585000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-10 17:50:29.494337425 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934404\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537667\n mask_addr: 4294967295\nsign_in_count:\n- 87\n- 88\n 177 \N 177.228.110.67 6632cb75-35a2-412d-b583-b8e3ca8b19ba 2020-06-10 17:50:29.524173 33255 18 User \N \N 18 User \N update ---\nunique_session_id:\n- HNLoJBZUnyxWHb8o6Rfq\n- rjykCY9m86KwLQ6hRUg5\n 178 \N 177.228.110.67 6632cb75-35a2-412d-b583-b8e3ca8b19ba 2020-06-10 17:50:29.55095 33256 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-01 20:40:22.545055000 Z\n- &1 2020-06-05 00:32:02.371432000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-10 17:53:00.108396226 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945831\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945969\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945969\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537667\n mask_addr: 4294967295\nsign_in_count:\n- 1569\n- 1570\n 3140 \N 177.228.110.67 f4b569e3-3d71-4ee5-a481-2edfb5052f0c 2020-06-10 17:53:00.117292 33257 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xyzD1FmH3aNxcxK4GhtY\n- yVFdSgBixb9h-B_NdesA\n 3141 \N 177.228.110.67 f4b569e3-3d71-4ee5-a481-2edfb5052f0c 2020-06-10 17:53:00.13954 33258 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-06-09 17:59:30.104585000 Z\n- &1 2020-06-10 17:50:29.494337000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-10 22:58:42.854897915 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934404\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537667\n mask_addr: 4294967295\nsign_in_count:\n- 88\n- 89\n 179 \N 177.228.110.67 25d1ed82-9d26-440f-b503-e6fd73043e9a 2020-06-10 22:58:42.861697 33259 18 User \N \N 18 User \N update ---\nunique_session_id:\n- rjykCY9m86KwLQ6hRUg5\n- wiG5gS4zHcpaWcUzey6y\n 180 \N 177.228.110.67 25d1ed82-9d26-440f-b503-e6fd73043e9a 2020-06-10 22:58:42.878257 33260 2460 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.5397E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.5397E4\nstatus: 0\ndate_sale: 2020-06-10\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-350\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.67 1f6d80d1-19c3-4001-b4ba-d1f45fbb519a 2020-06-10 23:04:19.796734 33261 781 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 177.228.110.67 1f6d80d1-19c3-4001-b4ba-d1f45fbb519a 2020-06-10 23:04:19.828255 33265 3331 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.5397E4\nmove_type: '1'\nsale_id: 2460\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-350\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1256'\n 1 movimiento de efectivo por venta con folio PV3-V-350 177.228.110.67 58199af2-2c53-4645-8dde-7d3785a50637 2020-06-10 23:04:32.094432 33266 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-05-20 01:13:37.513626000 Z\n- &1 2020-05-21 21:23:36.851721000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-10 23:21:08.590058529 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537995\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537251\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537251\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537667\n mask_addr: 4294967295\nsign_in_count:\n- 119\n- 120\n 240 \N 177.228.110.67 142ac976-8d6e-4a7c-8aa5-dbe0144a31ad 2020-06-10 23:21:08.597913 33267 9 User \N \N 9 User \N update ---\nunique_session_id:\n- BYysJLgcEkELtyuqUvuN\n- GLuEME3bgh_xLy6q5DSi\n 241 \N 177.228.110.67 142ac976-8d6e-4a7c-8aa5-dbe0144a31ad 2020-06-10 23:21:08.614247 33268 2461 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 933\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-06-10\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1195\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.67 e3c3a0be-9fa0-4586-a99e-4195a3510292 2020-06-10 23:26:05.141325 33269 1830 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 177.228.110.67 e3c3a0be-9fa0-4586-a99e-4195a3510292 2020-06-10 23:26:05.170055 33270 2461 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.110.67 cdeb158a-b56a-4ff1-bcb8-4c97b0b3b507 2020-06-10 23:26:13.037314 33271 3332 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2461\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1195\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '155'\n 1 movimiento de efectivo por venta con folio PV1-V-1195 177.228.110.67 cdeb158a-b56a-4ff1-bcb8-4c97b0b3b507 2020-06-10 23:26:13.059159 33272 3332 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 933\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2461\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1195\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '155'\n 2 \N 177.228.110.67 6502f948-bb58-4e12-b89c-5aa6cb3ceae4 2020-06-10 23:26:20.032759 33273 3333 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2461\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1195\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1554'\n 1 movimiento de efectivo por venta con folio PV1-V-1195 177.228.110.67 bd53fd56-414e-45ba-8023-8bd850b92825 2020-06-10 23:26:27.721383 33274 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-05-29 02:24:52.281198000 Z\n- &1 2020-05-31 19:35:14.841508000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-10 23:27:49.595883440 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538019\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537323\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537323\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537667\n mask_addr: 4294967295\nsign_in_count:\n- 137\n- 138\n 279 \N 177.228.110.67 e7d2e500-9ed6-4de4-8887-877d447efabe 2020-06-10 23:27:49.604494 33275 8 User \N \N 8 User \N update ---\nunique_session_id:\n- 3enHbn-wgt3PMdzRqcDb\n- _VbaGygUAwd2gvLYxtHc\n 280 \N 177.228.110.67 e7d2e500-9ed6-4de4-8887-877d447efabe 2020-06-10 23:27:49.621573 33276 2462 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 932\namount: !ruby/object:BigDecimal 18:0.1388E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1388E4\nstatus: 0\ndate_sale: 2020-06-10\nsaletype: 1\nseller_id: 26\nsale_code: PV2-V-915\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.67 7d73beef-2a80-4f97-92f0-aeb267023062 2020-06-10 23:28:40.997416 33277 1817 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 177.228.110.67 7d73beef-2a80-4f97-92f0-aeb267023062 2020-06-10 23:28:41.029653 33278 1677 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 14 \N 177.228.110.67 7d73beef-2a80-4f97-92f0-aeb267023062 2020-06-10 23:28:41.055942 33279 2462 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.110.67 d0e9c0e4-8b53-4579-ba6a-d873bff88e84 2020-06-10 23:28:52.314339 33280 3334 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 932\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1388E4\nmove_type: '1'\nsale_id: 2462\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV2-V-915\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1255'\n 1 movimiento de efectivo por venta con folio PV2-V-915 177.228.110.67 d0e9c0e4-8b53-4579-ba6a-d873bff88e84 2020-06-10 23:28:52.342162 33281 3335 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 932\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.68E2\nmove_type: '1'\nsale_id: 2314\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1255'\n 1 movimiento de efectivo por venta con folio PV2-V-872 177.228.110.67 7726b9a0-7db2-418a-8ca1-78ba55d95a2b 2020-06-10 23:45:13.242967 33282 2314 Sale \N \N 8 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.110.67 46dc0c6f-189c-49c6-b2f5-a1581ac49d05 2020-06-10 23:45:15.664652 33283 3336 CashRegistersMove \N \N 8 User \N create ---\nopen_cash_register_id: 932\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.459E3\nmove_type: '1'\nsale_id: 2401\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1256'\n 1 movimiento de efectivo por venta con folio PV2-V-899 177.228.110.67 726bd439-8ec2-49de-8569-19a0d7d6f9c3 2020-06-10 23:46:41.198016 33284 2401 Sale \N \N 8 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.110.67 0f2bd06c-81a5-48d2-9bb8-a75c3bd4a1db 2020-06-10 23:46:43.859108 33285 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-05 00:32:02.371432000 Z\n- &1 2020-06-10 17:53:00.108396000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-10 23:48:47.545318957 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945969\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537667\n mask_addr: 4294967295\nsign_in_count:\n- 1570\n- 1571\n 3142 \N 177.228.110.67 9c164c85-c0e6-4db6-b7e7-bd1f0d094f2d 2020-06-10 23:48:47.552115 33286 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yVFdSgBixb9h-B_NdesA\n- DDL4GFiZy9ttmq9Uw6bN\n 3143 \N 177.228.110.67 9c164c85-c0e6-4db6-b7e7-bd1f0d094f2d 2020-06-10 23:48:47.57528 33287 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-06-10 17:50:29.494337000 Z\n- &1 2020-06-10 22:58:42.854897000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-11 00:13:06.198638231 Z\nsign_in_count:\n- 89\n- 90\n 181 \N 177.228.110.67 49de6ebb-caba-4f34-bbc3-fe22eacdf5d1 2020-06-11 00:13:06.205218 33288 18 User \N \N 18 User \N update ---\nunique_session_id:\n- wiG5gS4zHcpaWcUzey6y\n- F2boXFeF7eVGTDv-DcYq\n 182 \N 177.228.110.67 49de6ebb-caba-4f34-bbc3-fe22eacdf5d1 2020-06-11 00:13:06.221464 33289 3337 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 2435\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '5544'\n 1 movimiento de efectivo por venta con folio PV3-V-336 177.228.110.67 0130cbff-8e26-4e25-8a6d-584876572466 2020-06-11 00:13:34.112879 33290 2435 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.110.67 1d15a09b-ff21-4210-ba4b-043d7eb62da1 2020-06-11 00:13:36.159838 33291 3338 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 2434\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '15222'\n 1 movimiento de efectivo por venta con folio PV3-V-335 177.228.110.67 c69cf8fd-3c45-420a-9cc9-73c949ef195a 2020-06-11 00:13:57.250396 33292 2434 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.110.67 5f5cc7f9-479a-479b-89f2-ab133d8a7eb0 2020-06-11 00:14:01.120719 33293 3339 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 2432\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1255'\n 1 movimiento de efectivo por venta con folio PV3-V-333 177.228.110.67 7ef57305-0893-474e-84f4-ee0d03fd27e4 2020-06-11 00:14:22.531745 33294 2432 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.110.67 af091283-2566-44b4-a046-7b0bc52260c1 2020-06-11 00:14:23.952704 33295 3340 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.645E3\nmove_type: '1'\nsale_id: 2375\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1525'\n 1 movimiento de efectivo por venta con folio PV3-V-306 177.228.110.67 b9afaea8-e00c-4ba1-a9b5-907614d9ce3c 2020-06-11 00:14:46.396745 33296 2375 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.110.67 5f849cf2-d494-4ada-b1f7-54c02b0108f6 2020-06-11 00:14:51.095074 33297 3341 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1E0\nmove_type: '1'\nsale_id: 2368\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1554'\n 1 movimiento de efectivo por venta con folio PV3-V-301 177.228.110.67 99ac80f2-870b-48fc-b944-278f99445b29 2020-06-11 00:15:21.830653 33298 2368 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.110.67 1bca204f-1ccf-4857-88b9-3fbba724ebd3 2020-06-11 00:15:24.809346 33299 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-10 17:53:00.108396000 Z\n- &1 2020-06-10 23:48:47.545318000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-11 00:44:34.375257157 Z\nsign_in_count:\n- 1571\n- 1572\n 3144 \N 177.228.110.67 2914a52a-a255-4d0b-ac50-080adc89fe0a 2020-06-11 00:44:34.381406 33300 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DDL4GFiZy9ttmq9Uw6bN\n- PkwPqnbxzsksf4cosH36\n 3145 \N 177.228.110.67 2914a52a-a255-4d0b-ac50-080adc89fe0a 2020-06-11 00:44:34.399928 33301 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-05-23 02:46:17.313005000 Z\n- &1 2020-06-04 21:41:53.796521000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-11 00:45:24.894258991 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084605\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138661\n mask_addr: 4294967295\nsign_in_count:\n- 215\n- 216\n 433 \N 189.186.215.101 d971854c-0849-4dec-bdec-7cb94f104247 2020-06-11 00:45:24.901081 33302 21 User \N \N 21 User \N update ---\nunique_session_id:\n- ipLHtrkaeFzjYDVsaLH5\n- HyP-ZixZi9ykeyL2p5-M\n 434 \N 189.186.215.101 d971854c-0849-4dec-bdec-7cb94f104247 2020-06-11 00:45:25.001595 33303 2444 Sale \N \N 4 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV3-V-345 cancelada. 177.228.110.67 e7480c98-5784-41a0-aba1-681eb87d0a6d 2020-06-11 00:59:27.436501 33304 1035 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 33 \N 177.228.110.67 e7480c98-5784-41a0-aba1-681eb87d0a6d 2020-06-11 00:59:27.462443 33305 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-06-10 22:58:42.854897000 Z\n- &1 2020-06-11 00:13:06.198638000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-11 02:37:27.251971003 Z\nsign_in_count:\n- 90\n- 91\n 183 \N 177.228.110.67 088a655c-22f7-4ce4-8105-e928934052ff 2020-06-11 02:37:27.270662 33306 18 User \N \N 18 User \N update ---\nunique_session_id:\n- F2boXFeF7eVGTDv-DcYq\n- w5JJFDgy4DxXKzTm8dTK\n 184 \N 177.228.110.67 088a655c-22f7-4ce4-8105-e928934052ff 2020-06-11 02:37:27.289648 33307 3342 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 2459\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '5587'\n 1 \N 177.228.110.67 074c2efc-8f46-413d-ae8c-65ec541c4ce7 2020-06-11 02:37:59.155981 33308 2459 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 177.228.110.67 074c2efc-8f46-413d-ae8c-65ec541c4ce7 2020-06-11 02:37:59.18247 33309 3342 CashRegistersMove \N \N 18 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV3-V-349 177.228.110.67 074c2efc-8f46-413d-ae8c-65ec541c4ce7 2020-06-11 02:37:59.197571 33384 910 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.40 1d09a699-5846-442e-a545-9151a0a41476 2020-06-23 23:56:50.554374 33310 3343 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1848E4\nmove_type: '1'\nsale_id: 2417\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4588'\n 1 \N 177.228.110.67 5d54ec2d-df54-45d0-afc5-974cd7fc75de 2020-06-11 02:38:50.57387 33311 2417 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.110.67 5d54ec2d-df54-45d0-afc5-974cd7fc75de 2020-06-11 02:38:50.59826 33312 3343 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 928\n- 931\n 2 movimiento de efectivo por venta con folio PV3-V-323 177.228.110.67 5d54ec2d-df54-45d0-afc5-974cd7fc75de 2020-06-11 02:38:50.612849 33313 3344 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.13E4\nmove_type: '1'\nsale_id: 2431\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1445'\n 1 \N 177.228.110.67 4d494010-0868-42bd-a2bc-628e18692dae 2020-06-11 02:41:05.063504 33314 2431 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.110.67 4d494010-0868-42bd-a2bc-628e18692dae 2020-06-11 02:41:05.106036 33315 2454 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 177.228.110.67 4d494010-0868-42bd-a2bc-628e18692dae 2020-06-11 02:41:05.129347 33316 3344 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 928\n- 931\n 2 movimiento de efectivo por venta con folio PV3-V-332 177.228.110.67 4d494010-0868-42bd-a2bc-628e18692dae 2020-06-11 02:41:05.146702 33317 3345 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2433\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '88552'\n 1 \N 177.228.110.67 3c8e0668-7b43-482b-85fb-5f0dad7490b2 2020-06-11 02:47:55.363039 33318 2433 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 177.228.110.67 3c8e0668-7b43-482b-85fb-5f0dad7490b2 2020-06-11 02:47:55.388825 33319 3345 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 928\n- 931\n 2 movimiento de efectivo por venta con folio PV3-V-334 177.228.110.67 3c8e0668-7b43-482b-85fb-5f0dad7490b2 2020-06-11 02:47:55.402078 33320 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-05-31 19:35:14.841508000 Z\n- &1 2020-06-10 23:27:49.595883000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-11 03:00:56.506634013 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537323\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537667\n mask_addr: 4294967295\nsign_in_count:\n- 138\n- 139\n 281 \N 177.228.110.67 1d226ea5-742c-4304-9356-34bc9c4d1197 2020-06-11 03:00:56.513779 33321 8 User \N \N 8 User \N update ---\nunique_session_id:\n- _VbaGygUAwd2gvLYxtHc\n- HB-PxvFumDBj6QKgHsYs\n 282 \N 177.228.110.67 1d226ea5-742c-4304-9356-34bc9c4d1197 2020-06-11 03:00:56.530137 33322 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-05-21 21:23:36.851721000 Z\n- &1 2020-06-10 23:21:08.590058000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-11 03:01:39.368136690 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537251\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537667\n mask_addr: 4294967295\nsign_in_count:\n- 120\n- 121\n 242 \N 177.228.110.67 3864b1da-e584-4a61-a4d9-68b8ce8353b2 2020-06-11 03:01:39.375241 33323 9 User \N \N 9 User \N update ---\nunique_session_id:\n- GLuEME3bgh_xLy6q5DSi\n- Y_dtCqf6xZoHuvyxWDCn\n 243 \N 177.228.110.67 3864b1da-e584-4a61-a4d9-68b8ce8353b2 2020-06-11 03:01:39.392262 33324 2463 Sale \N \N 9 User \N create ---\ncustomer_id: 33\nuser_id: 9\nopen_cash_register_id: 933\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-06-10\nsaletype: 0\nseller_id: 25\nsale_code: PV1-V-1196\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.110.67 8fb48a9a-3580-40c2-bf07-b481e683bd3f 2020-06-11 03:02:36.8357 33325 1693 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 177.228.110.67 8fb48a9a-3580-40c2-bf07-b481e683bd3f 2020-06-11 03:02:36.874122 33326 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-06-10 23:27:49.595883000 Z\n- &1 2020-06-11 03:00:56.506634000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-11 17:34:44.218739932 Z\nsign_in_count:\n- 139\n- 140\n 283 \N 177.228.110.67 6b3315e0-20ab-4a45-9916-3d90772b8f88 2020-06-11 17:34:44.247846 33327 8 User \N \N 8 User \N update ---\nunique_session_id:\n- HB-PxvFumDBj6QKgHsYs\n- hVhSZ1pncbjmz2t1icXK\n 284 \N 177.228.110.67 6b3315e0-20ab-4a45-9916-3d90772b8f88 2020-06-11 17:34:44.48884 33328 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-06-11 03:00:56.506634000 Z\n- &1 2020-06-11 17:34:44.218739000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-11 18:24:09.992004172 Z\nsign_in_count:\n- 140\n- 141\n 285 \N 177.228.110.67 d222b0c9-f8ab-4131-8355-bb592ba13b51 2020-06-11 18:24:09.998023 33329 8 User \N \N 8 User \N update ---\nunique_session_id:\n- hVhSZ1pncbjmz2t1icXK\n- ArXVJGdRsGSDsLEnhTvJ\n 286 \N 177.228.110.67 d222b0c9-f8ab-4131-8355-bb592ba13b51 2020-06-11 18:24:10.020104 33330 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-10 23:48:47.545318000 Z\n- &1 2020-06-11 00:44:34.375257000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-11 18:25:14.502160559 Z\nsign_in_count:\n- 1572\n- 1573\n 3146 \N 177.228.110.67 579454bf-6862-4c0c-8a2a-9b1e52e131b9 2020-06-11 18:25:14.507842 33331 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PkwPqnbxzsksf4cosH36\n- pdGbKExwBNGVisHzrkDp\n 3147 \N 177.228.110.67 579454bf-6862-4c0c-8a2a-9b1e52e131b9 2020-06-11 18:25:14.52674 33332 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-09 21:05:13.495867000 Z\n- &1 2020-06-09 21:37:21.871183000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-12 23:58:59.077521642 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729311\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934408\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934408\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730153\n mask_addr: 4294967295\nsign_in_count:\n- 551\n- 552\n 1107 \N 201.175.159.233 b1473337-6796-42bc-aa88-9110ef6179bb 2020-06-12 23:58:59.117969 33333 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 3oPQVSkfbGV9sk4cM5Rs\n- Qs4oME4Utqm3wEDrNUnX\n 1108 \N 201.175.159.233 b1473337-6796-42bc-aa88-9110ef6179bb 2020-06-12 23:58:59.145125 33334 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-06-11 00:13:06.198638000 Z\n- &1 2020-06-11 02:37:27.251971000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-13 06:32:55.661435973 Z\nsign_in_count:\n- 91\n- 92\n 185 \N 177.228.110.67 9851e0fc-fef0-4c0e-b3e5-94bdc5867ade 2020-06-13 06:32:55.667424 33335 18 User \N \N 18 User \N update ---\nunique_session_id:\n- w5JJFDgy4DxXKzTm8dTK\n- ozdSofNj2GosM5_xUJsh\n 186 \N 177.228.110.67 9851e0fc-fef0-4c0e-b3e5-94bdc5867ade 2020-06-13 06:32:55.682285 33338 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-09 21:37:21.871183000 Z\n- &1 2020-06-12 23:58:59.077521000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-16 02:25:40.188290821 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934408\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730153\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730153\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729829\n mask_addr: 4294967295\nsign_in_count:\n- 552\n- 553\n 1109 \N 201.175.158.165 c264d9ce-72e3-4953-b268-a0221179eefa 2020-06-16 02:25:40.234871 33339 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Qs4oME4Utqm3wEDrNUnX\n- TRDQU2qXV95rrJg5adCG\n 1110 \N 201.175.158.165 c264d9ce-72e3-4953-b268-a0221179eefa 2020-06-16 02:25:40.261995 33340 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-06-04 21:41:53.796521000 Z\n- &1 2020-06-11 00:45:24.894258000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-17 00:23:50.200390642 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138661\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147128706\n mask_addr: 4294967295\nsign_in_count:\n- 216\n- 217\n 435 \N 187.149.95.130 798ccbaa-1f49-4111-b1b1-65848a6c68cb 2020-06-17 00:23:50.231335 33341 21 User \N \N 21 User \N update ---\nunique_session_id:\n- HyP-ZixZi9ykeyL2p5-M\n- 1ujyFDCtx6jp_ZLqBtd8\n 436 \N 187.149.95.130 798ccbaa-1f49-4111-b1b1-65848a6c68cb 2020-06-17 00:23:50.256673 33342 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-06-13 06:32:55.661435000 Z\n- &1 2020-06-14 06:43:40.910474000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-17 07:42:38.953004948 Z\nsign_in_count:\n- 93\n- 94\n 189 \N 177.228.110.67 44b3de6f-610d-45fd-bab8-cc3c936fdbe9 2020-06-17 07:42:38.959877 33343 18 User \N \N 18 User \N update ---\nunique_session_id:\n- r7L7s6FtwQt3bjAhe_bs\n- fJyXEkc4VwPnFYs2bt5s\n 190 \N 177.228.110.67 44b3de6f-610d-45fd-bab8-cc3c936fdbe9 2020-06-17 07:42:38.975539 33344 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-12 23:58:59.077521000 Z\n- &1 2020-06-16 02:25:40.188290000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-17 19:36:04.703743940 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730153\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729829\n mask_addr: 4294967295\nsign_in_count:\n- 553\n- 554\n 1111 \N 201.175.158.165 3805ed38-e0b2-4f67-82c8-bd232d0f39f5 2020-06-17 19:36:04.74916 33345 2 User \N \N 2 User \N update ---\nunique_session_id:\n- TRDQU2qXV95rrJg5adCG\n- bYGksLVPT_c9_qYkucD8\n 1112 \N 201.175.158.165 3805ed38-e0b2-4f67-82c8-bd232d0f39f5 2020-06-17 19:36:04.784899 33346 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-16 02:25:40.188290000 Z\n- &1 2020-06-17 19:36:04.703743000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-17 22:16:48.711677865 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729829\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934349\n mask_addr: 4294967295\nsign_in_count:\n- 554\n- 555\n 1113 \N 200.68.135.141 b44358e6-87ef-4b43-96c9-0f1520f9035a 2020-06-17 22:16:48.718489 33347 2 User \N \N 2 User \N update ---\nunique_session_id:\n- bYGksLVPT_c9_qYkucD8\n- eAJ-164zvcEpvCmZrwJj\n 1114 \N 200.68.135.141 b44358e6-87ef-4b43-96c9-0f1520f9035a 2020-06-17 22:16:48.735261 33348 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-17 19:36:04.703743000 Z\n- &1 2020-06-17 22:16:48.711677000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-17 22:23:27.210509925 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729829\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934349\n mask_addr: 4294967295\nsign_in_count:\n- 555\n- 556\n 1115 \N 200.68.135.141 4ce857e9-c203-40f5-855e-fe07afc96baa 2020-06-17 22:23:27.217016 33349 2 User \N \N 2 User \N update ---\nunique_session_id:\n- eAJ-164zvcEpvCmZrwJj\n- 9TDkqx_uGs_Ht5TRai2a\n 1116 \N 200.68.135.141 4ce857e9-c203-40f5-855e-fe07afc96baa 2020-06-17 22:23:27.238849 33350 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-17 22:16:48.711677000 Z\n- &1 2020-06-17 22:23:27.210509000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-17 23:13:43.687757712 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934349\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729831\n mask_addr: 4294967295\nsign_in_count:\n- 556\n- 557\n 1117 \N 201.175.158.167 1514d811-1c74-4659-93b4-8e5c5108a61a 2020-06-17 23:13:43.698559 33351 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 9TDkqx_uGs_Ht5TRai2a\n- RsZaDdxrMs1aDHXbDLeX\n 1118 \N 201.175.158.167 1514d811-1c74-4659-93b4-8e5c5108a61a 2020-06-17 23:13:43.721625 33352 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-17 22:23:27.210509000 Z\n- &1 2020-06-17 23:13:43.687757000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-19 00:30:42.461467818 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934349\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729831\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729831\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730130\n mask_addr: 4294967295\nsign_in_count:\n- 557\n- 558\n 1119 \N 201.175.159.210 94dfd4d7-ab6f-470f-848c-f793be711bb7 2020-06-19 00:30:42.491926 33353 2 User \N \N 2 User \N update ---\nunique_session_id:\n- RsZaDdxrMs1aDHXbDLeX\n- TMsb7sscX7b2UJFrLSph\n 1120 \N 201.175.159.210 94dfd4d7-ab6f-470f-848c-f793be711bb7 2020-06-19 00:30:42.520752 33354 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-06-14 06:43:40.910474000 Z\n- &1 2020-06-17 07:42:38.953004000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-20 01:16:43.370509499 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537667\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537363\n mask_addr: 4294967295\nsign_in_count:\n- 94\n- 95\n 191 \N 177.228.109.19 e543e801-0a89-45be-af67-e412a3ae1953 2020-06-20 01:16:43.404788 33355 18 User \N \N 18 User \N update ---\nunique_session_id:\n- fJyXEkc4VwPnFYs2bt5s\n- kKiCVw9AxKYaQTWLy2bT\n 192 \N 177.228.109.19 e543e801-0a89-45be-af67-e412a3ae1953 2020-06-20 01:16:43.429022 33356 3346 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 717\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.808E3\nmove_type: '1'\nsale_id: 1966\ncardnumber: 225\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 177.228.109.19 3cbe8453-c647-487a-bfcc-8ea6fe5f6bfe 2020-06-20 01:17:05.914616 33357 1966 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.109.19 3cbe8453-c647-487a-bfcc-8ea6fe5f6bfe 2020-06-20 01:17:05.937052 33358 3346 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 717\n- \n 2 movimiento de efectivo por venta con folio PV3-V-225 177.228.109.19 3cbe8453-c647-487a-bfcc-8ea6fe5f6bfe 2020-06-20 01:17:05.952364 33359 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-06-11 00:45:24.894258000 Z\n- &1 2020-06-17 00:23:50.200390000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-20 01:27:45.942081937 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183138661\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147128706\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147128706\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141580\n mask_addr: 4294967295\nsign_in_count:\n- 217\n- 218\n 437 \N 189.186.226.204 92a19bf7-64d4-4765-8f9a-647fde54c00d 2020-06-20 01:27:45.949461 33361 2464 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.106659E4\ntax: !ruby/object:BigDecimal 18:0.13241E3\ndiscount: !ruby/object:BigDecimal 18:0.239E3\ntotal: !ruby/object:BigDecimal 18:0.96E3\nstatus: 0\ndate_sale: 2020-06-19\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-351\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.109.19 3c78d75e-7fa8-40aa-a584-62751564ce8c 2020-06-20 01:29:17.632514 33362 846 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 177.228.109.19 3c78d75e-7fa8-40aa-a584-62751564ce8c 2020-06-20 01:29:17.661338 33363 2464 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.109.19 fd18ea10-90be-4899-96d1-75485d142fb5 2020-06-20 01:29:26.98117 33364 3347 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.96E3\nmove_type: '1'\nsale_id: 2464\ncardnumber: 5266\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-351\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-351 177.228.109.19 fd18ea10-90be-4899-96d1-75485d142fb5 2020-06-20 01:29:27.004283 33365 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-11 00:44:34.375257000 Z\n- &1 2020-06-11 18:25:14.502160000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-20 01:30:32.419410079 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537667\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141580\n mask_addr: 4294967295\nsign_in_count:\n- 1573\n- 1574\n 3148 \N 189.186.226.204 53441a5f-f512-4df5-ba9f-be7d41d7d9fd 2020-06-20 01:30:32.425728 33366 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pdGbKExwBNGVisHzrkDp\n- 3kdwNyqJs2hVT2Pd7ksd\n 3149 \N 189.186.226.204 53441a5f-f512-4df5-ba9f-be7d41d7d9fd 2020-06-20 01:30:32.443251 33367 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-06-17 07:42:38.953004000 Z\n- &1 2020-06-20 01:16:43.370509000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-20 23:25:51.249633922 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537667\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537363\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537363\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 95\n- 96\n 193 \N 187.149.46.40 7c19b693-995f-450e-8248-3f571d625b91 2020-06-20 23:25:51.277668 33368 18 User \N \N 18 User \N update ---\nunique_session_id:\n- kKiCVw9AxKYaQTWLy2bT\n- g634Xy2Bk6WfxCSwUU8H\n 194 \N 187.149.46.40 7c19b693-995f-450e-8248-3f571d625b91 2020-06-20 23:25:51.300604 33369 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-06-20 01:16:43.370509000 Z\n- &1 2020-06-20 23:25:51.249633000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-21 07:38:21.619191371 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537363\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537131\n mask_addr: 4294967295\nsign_in_count:\n- 96\n- 97\n 195 \N 177.228.108.43 55c88bf1-9c41-47e7-912f-45549bde074b 2020-06-21 07:38:21.62657 33370 18 User \N \N 18 User \N update ---\nunique_session_id:\n- g634Xy2Bk6WfxCSwUU8H\n- T3T1z4ToNWVbTUsyMQxK\n 196 \N 177.228.108.43 55c88bf1-9c41-47e7-912f-45549bde074b 2020-06-21 07:38:21.641757 33371 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-06-17 00:23:50.200390000 Z\n- &1 2020-06-20 01:27:45.942081000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-21 07:40:02.222149061 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147128706\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141580\n mask_addr: 4294967295\nsign_in_count:\n- 218\n- 219\n 439 \N 189.186.226.204 fceb976b-8c73-45b1-a687-dfafaea28e20 2020-06-21 07:40:02.228523 33372 21 User \N \N 21 User \N update ---\nunique_session_id:\n- PYKf3FAc7vF8CdiDi2jv\n- 6PKhAWGxdEA4xVr87wTD\n 440 \N 189.186.226.204 fceb976b-8c73-45b1-a687-dfafaea28e20 2020-06-21 07:40:02.24429 33373 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-06-10 23:21:08.590058000 Z\n- &1 2020-06-11 03:01:39.368136000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-21 19:02:58.946371810 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537667\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537131\n mask_addr: 4294967295\nsign_in_count:\n- 121\n- 122\n 244 \N 177.228.108.43 3a9f95e6-4143-4605-96d6-02d4b46b63a5 2020-06-21 19:02:58.974306 33374 9 User \N \N 9 User \N update ---\nunique_session_id:\n- Y_dtCqf6xZoHuvyxWDCn\n- DHTENuEku1dAQjL_p63m\n 245 \N 177.228.108.43 3a9f95e6-4143-4605-96d6-02d4b46b63a5 2020-06-21 19:02:58.996699 33375 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-06-11 03:01:39.368136000 Z\n- &1 2020-06-21 19:02:58.946371000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-23 22:54:45.450560480 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537667\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537131\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537131\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 122\n- 123\n 246 \N 187.149.46.40 c583cb31-7f7c-41c4-9096-9b1277353437 2020-06-23 22:54:45.496239 33376 9 User \N \N 9 User \N update ---\nunique_session_id:\n- DHTENuEku1dAQjL_p63m\n- EssT4iZm-k8U2KXyAk7F\n 247 \N 187.149.46.40 c583cb31-7f7c-41c4-9096-9b1277353437 2020-06-23 22:54:45.518572 33377 1030 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 474d0c3c-a3ac-4033-a58a-281c78f32646 2020-06-23 23:39:41.092281 33378 540 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-06-23\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.46.40 0fcb4e3a-f327-4c6d-ac6e-388ccc261eba 2020-06-23 23:42:06.180182 33379 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-11 18:25:14.502160000 Z\n- &1 2020-06-20 01:30:32.419410000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-23 23:45:16.749795391 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537667\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141580\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141580\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 1574\n- 1575\n 3150 \N 187.149.46.40 8b9cd58d-e981-4a03-bccf-7a44de7c8cb9 2020-06-23 23:45:16.758404 33380 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3kdwNyqJs2hVT2Pd7ksd\n- TEjii-NyWQe3yEXKagMh\n 3151 \N 187.149.46.40 8b9cd58d-e981-4a03-bccf-7a44de7c8cb9 2020-06-23 23:45:16.777175 33381 5 User \N \N 4 User \N update ---\nstatus:\n- active\n- 2\n 52 El usuario chemi fue desactivado. 187.149.46.40 6d6c8ba5-48b4-4f32-a7b9-312ad89e9998 2020-06-23 23:47:04.40858 33382 1427 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 7d5ae2c7-70d8-4d5d-affd-30e3f41de916 2020-06-23 23:55:40.276999 33385 776 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 f425c9a7-d694-4d37-bbbd-9f22887965ce 2020-06-23 23:56:59.209303 33386 883 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 c0910ce6-ea1b-402d-b2a5-c1c7b25f4bb5 2020-06-23 23:57:09.011063 33387 886 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 4065c8f3-235d-4501-9ed2-02e656f8ca5c 2020-06-23 23:57:17.761241 33388 1404 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 2d789aaa-1f76-4e54-9885-7fae479e71ed 2020-06-23 23:57:26.277874 33389 1405 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 d2d846bb-7ce9-4b28-b267-bc576ef36c66 2020-06-23 23:57:34.741654 33390 900 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.40 ebb934b6-d5fc-45ef-8f02-cbb1677ba9cc 2020-06-23 23:57:51.848755 33391 894 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 cca76292-7a17-438c-9d5a-9c991a1d1e87 2020-06-23 23:58:03.029608 33392 894 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:-0.1E1\n 3 \N 187.149.46.40 252595f5-1874-4822-9554-848bcc22dbde 2020-06-23 23:58:24.339433 33393 894 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:-0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 556c6abc-8d37-45c6-90eb-bc1839b5e12c 2020-06-23 23:58:37.604399 33394 541 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-06-23\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.46.40 9fc94840-4fca-4d4b-bf80-b73debab414e 2020-06-23 23:58:41.187044 33395 542 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-06-23\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.46.40 07546f93-5486-4dff-9369-292ee7a3b434 2020-06-23 23:59:52.567489 33396 1426 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 15dcb306-e97b-41b8-8296-f23c28eb14a7 2020-06-24 00:06:17.22646 33397 543 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-06-23\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.46.40 0f67a54d-373c-4a13-bb6a-e1e185700a4b 2020-06-24 00:06:38.602672 33398 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-06-21 19:02:58.946371000 Z\n- &1 2020-06-23 22:54:45.450560000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-24 00:10:10.422710460 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537131\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 123\n- 124\n 248 \N 187.149.46.40 4744702a-0d92-487b-ae1e-b559f57d024a 2020-06-24 00:10:10.42933 33399 9 User \N \N 9 User \N update ---\nunique_session_id:\n- EssT4iZm-k8U2KXyAk7F\n- xbwveZks94RKf3xYkfzB\n 249 \N 187.149.46.40 4744702a-0d92-487b-ae1e-b559f57d024a 2020-06-24 00:10:10.444721 33400 543 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-23\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.46.40 0e68d37f-2d19-45c1-bd18-89f3ede23987 2020-06-24 00:10:26.113117 33401 1424 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.46.40 0e68d37f-2d19-45c1-bd18-89f3ede23987 2020-06-24 00:10:26.133634 33402 542 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-23\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.46.40 cb3e162f-0db9-432d-b1e7-652e6563faea 2020-06-24 00:10:34.724732 33403 504 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.46.40 cb3e162f-0db9-432d-b1e7-652e6563faea 2020-06-24 00:10:34.740824 33404 541 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-23\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.46.40 38fc4cc6-8df3-48ae-ba10-aa924489d124 2020-06-24 00:10:50.426592 33405 1027 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.40 38fc4cc6-8df3-48ae-ba10-aa924489d124 2020-06-24 00:10:50.44368 33406 1032 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.40 38fc4cc6-8df3-48ae-ba10-aa924489d124 2020-06-24 00:10:50.46136 33407 1840 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 352\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 38fc4cc6-8df3-48ae-ba10-aa924489d124 2020-06-24 00:10:50.481263 33408 1841 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 653\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 38fc4cc6-8df3-48ae-ba10-aa924489d124 2020-06-24 00:10:50.501854 33409 53 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 38fc4cc6-8df3-48ae-ba10-aa924489d124 2020-06-24 00:10:50.519487 33410 43 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.40 38fc4cc6-8df3-48ae-ba10-aa924489d124 2020-06-24 00:10:50.537407 33411 1842 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 361\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 38fc4cc6-8df3-48ae-ba10-aa924489d124 2020-06-24 00:10:50.557394 33412 1843 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 354\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 38fc4cc6-8df3-48ae-ba10-aa924489d124 2020-06-24 00:10:50.576369 33413 520 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.46.40 38fc4cc6-8df3-48ae-ba10-aa924489d124 2020-06-24 00:10:50.593407 33414 52 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.40 38fc4cc6-8df3-48ae-ba10-aa924489d124 2020-06-24 00:10:50.612331 33415 321 Customer \N \N 9 User \N create ---\nnick_name: BRISCEIDA FELIZ\nphone: "(667) 239-9026"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BRISCEIDA FELIZ fue registrado. 187.149.46.40 ccabb781-3833-4abc-bb1e-9aba74963c1f 2020-06-24 00:11:37.901381 33416 2465 Sale \N \N 9 User \N create ---\ncustomer_id: 321\nuser_id: 9\nopen_cash_register_id: 933\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2020-06-23\nsaletype: 2\nseller_id: 25\nsale_code: PV1-V-1197\nexpiration_date: 2020-07-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 c89730fa-6799-4ba5-aa90-7129104fde5f 2020-06-24 00:12:07.306452 33417 1033 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 187.149.46.40 c89730fa-6799-4ba5-aa90-7129104fde5f 2020-06-24 00:12:07.333945 33418 2465 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1197 cancelada. 187.149.46.40 94f8ea4e-b7df-4f37-b49b-fda1e0d5378d 2020-06-24 00:13:38.025401 33419 1033 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 13 \N 187.149.46.40 94f8ea4e-b7df-4f37-b49b-fda1e0d5378d 2020-06-24 00:13:38.051995 33420 2466 Sale \N \N 9 User \N create ---\ncustomer_id: 321\nuser_id: 9\nopen_cash_register_id: 933\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2020-06-23\nsaletype: 2\nseller_id: 25\nsale_code: PV1-V-1198\nexpiration_date: 2020-07-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 49f0348a-d585-4465-a3c8-d2ff0922cd72 2020-06-24 00:14:03.10397 33421 1033 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 14 \N 187.149.46.40 49f0348a-d585-4465-a3c8-d2ff0922cd72 2020-06-24 00:14:03.131735 33422 2466 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1198 cancelada. 187.149.46.40 b92e8dae-bbed-43a2-8275-8af896b0b950 2020-06-24 00:15:33.70457 33423 1033 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 15 \N 187.149.46.40 b92e8dae-bbed-43a2-8275-8af896b0b950 2020-06-24 00:15:33.726492 33424 2467 Sale \N \N 9 User \N create ---\ncustomer_id: 321\nuser_id: 9\nopen_cash_register_id: 933\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2020-06-23\nsaletype: 2\nseller_id: 25\nsale_code: PV1-V-1199\nexpiration_date: 2020-07-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 11a265db-553a-4a30-9476-4fc1d0780454 2020-06-24 00:15:54.35494 33425 1033 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 16 \N 187.149.46.40 11a265db-553a-4a30-9476-4fc1d0780454 2020-06-24 00:15:54.383389 33426 3348 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.8E3\nmove_type: '1'\nsale_id: 2467\ncardnumber: 7588\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1199\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1199 187.149.46.40 237c53ac-bc20-4053-8055-2c55c121fab6 2020-06-24 00:16:23.637278 33427 2467 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.46.40 9805fc2e-169e-4a11-887a-10b3af581b30 2020-06-24 00:16:26.027777 33428 1440 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 0fae2153-2ce3-44df-be58-e0ae51d0d1dd 2020-06-24 00:18:37.553525 33429 544 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-06-23\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.46.40 614c0bdb-37ff-4bf2-9f7f-47e3339fa88c 2020-06-24 00:18:40.782373 33430 153 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.46.40 a16cd8f3-9886-48a4-ab8f-c4e45b33c217 2020-06-24 00:48:04.186743 33431 545 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-06-23\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.46.40 76fad9de-4528-4f81-9d60-08e372b53590 2020-06-24 00:48:21.672906 33432 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-20 01:30:32.419410000 Z\n- &1 2020-06-23 23:45:16.749795000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-24 01:02:24.008615677 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141580\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 1575\n- 1576\n 3152 \N 187.149.46.40 a3ede008-91b0-4c73-a9e4-455db6d901da 2020-06-24 01:02:24.015698 33433 4 User \N \N 4 User \N update ---\nunique_session_id:\n- TEjii-NyWQe3yEXKagMh\n- fQLa_JUYgwksUwezCf7S\n 3153 \N 187.149.46.40 a3ede008-91b0-4c73-a9e4-455db6d901da 2020-06-24 01:02:24.033933 33434 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-06-11 17:34:44.218739000 Z\n- &1 2020-06-11 18:24:09.992004000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-24 15:30:29.008402415 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537667\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537227\n mask_addr: 4294967295\nsign_in_count:\n- 141\n- 142\n 287 \N 177.228.108.139 965bd943-1791-4d12-8730-6e9258f2359c 2020-06-24 15:30:29.035485 33435 8 User \N \N 8 User \N update ---\nunique_session_id:\n- ArXVJGdRsGSDsLEnhTvJ\n- jJJfuneRATYAwxQNJjkS\n 288 \N 177.228.108.139 965bd943-1791-4d12-8730-6e9258f2359c 2020-06-24 15:30:29.056868 33436 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-17 23:13:43.687757000 Z\n- &1 2020-06-19 00:30:42.461467000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-24 18:28:29.528653982 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729831\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730130\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730130\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729640\n mask_addr: 4294967295\nsign_in_count:\n- 558\n- 559\n 1121 \N 201.175.157.232 3f042fb2-0e5c-4275-af13-5d8dbe0b60fc 2020-06-24 18:28:29.538684 33437 2 User \N \N 2 User \N update ---\nunique_session_id:\n- TMsb7sscX7b2UJFrLSph\n- WfxFggiJbyyfvdhrFsW8\n 1122 \N 201.175.157.232 3f042fb2-0e5c-4275-af13-5d8dbe0b60fc 2020-06-24 18:28:29.559438 33438 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-23 23:45:16.749795000 Z\n- &1 2020-06-24 01:02:24.008615000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-24 19:26:19.699803972 Z\nsign_in_count:\n- 1576\n- 1577\n 3154 \N 187.149.46.40 1e9780bc-b4de-4255-ad95-da5e73144cfa 2020-06-24 19:26:19.705329 46498 1476 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1476'\n is_parent: false\n sku: COS-1476\n name: 5CSCP20622\n description: COSMETIQUERA LILA\n price_base: '199.5'\n price_sale: '399.0'\n img_product: 16BF62D9-B400-4E7B-90FC-6CC7C3B5DDCF.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '14'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170839838'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-29 23:12:37.304775'\n updated_at: &12 2020-11-21 20:29:17.370593641 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1476'\n sku: COS-1476\n name: 5CSCP20622\n description: COSMETIQUERA LILA\n price_base: '199.50'\n price_sale: '399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-29 23:12:37.304775'\n updated_at: '2020-10-29 23:12:37.304775'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170839838'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '14'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1476'\n type: *3\n value: 1476\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: COS-1476\n type: *7\n value: COS-1476\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 5CSCP20622\n type: *8\n value: 5CSCP20622\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: COSMETIQUERA LILA\n type: *6\n value: COSMETIQUERA LILA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '199.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.399E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 16BF62D9-B400-4E7B-90FC-6CC7C3B5DDCF.jpeg\n type: *2\n value: 16BF62D9-B400-4E7B-90FC-6CC7C3B5DDCF.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '14'\n type: *3\n value: 14\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170839838'\n type: *2\n value: '7509170839838'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-29 23:12:37.304775'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 16BF62D9-B400-4E7B-90FC-6CC7C3B5DDCF.jpeg\n 2 El producto COS-1476 fue modificado. 189.186.1.223 37a4992a-b863-4248-812c-cabbbe24f3a7 2020-11-21 20:29:17.416058 33439 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fQLa_JUYgwksUwezCf7S\n- w2GdhgrpFigWcTXnFZyH\n 3155 \N 187.149.46.40 1e9780bc-b4de-4255-ad95-da5e73144cfa 2020-06-24 19:26:19.722931 33440 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-24 01:02:24.008615000 Z\n- &1 2020-06-24 19:26:19.699803000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-24 20:25:54.849170276 Z\nsign_in_count:\n- 1577\n- 1578\n 3156 \N 187.149.46.40 3571bdc3-afcc-42a0-989c-3cc9dd7c3599 2020-06-24 20:25:54.886969 33441 4 User \N \N 4 User \N update ---\nunique_session_id:\n- w2GdhgrpFigWcTXnFZyH\n- tXsouVYkABwTY5T8hSvX\n 3157 \N 187.149.46.40 3571bdc3-afcc-42a0-989c-3cc9dd7c3599 2020-06-24 20:25:54.909268 33442 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-06-23 22:54:45.450560000 Z\n- &1 2020-06-24 00:10:10.422710000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-24 20:27:56.556622828 Z\nsign_in_count:\n- 124\n- 125\n 250 \N 187.149.46.40 013e61ee-3bde-4117-bf13-e9691d1b47a3 2020-06-24 20:27:56.562012 33443 9 User \N \N 9 User \N update ---\nunique_session_id:\n- xbwveZks94RKf3xYkfzB\n- C5GkzqxeX-b_y16WmksP\n 251 \N 187.149.46.40 013e61ee-3bde-4117-bf13-e9691d1b47a3 2020-06-24 20:27:56.575489 33444 2468 Sale \N \N 9 User \N create ---\ncustomer_id: 298\nuser_id: 9\nopen_cash_register_id: 933\namount: !ruby/object:BigDecimal 18:0.1967E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1967E4\nstatus: 0\ndate_sale: 2020-06-24\nsaletype: 0\nseller_id: 25\nsale_code: PV1-V-1200\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 c3851d7e-f915-400d-8e76-5bdb86f45717 2020-06-24 20:29:23.912176 33445 1630 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.46.40 c3851d7e-f915-400d-8e76-5bdb86f45717 2020-06-24 20:29:23.967915 33446 1653 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.46.40 c3851d7e-f915-400d-8e76-5bdb86f45717 2020-06-24 20:29:24.015514 33447 1693 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.46.40 c3851d7e-f915-400d-8e76-5bdb86f45717 2020-06-24 20:29:24.049662 33448 10 User \N \N 10 User \N update ---\nlast_sign_in_at:\n- 2019-12-15 19:40:10.688435000 Z\n- &1 2020-01-18 19:00:29.685430000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-24 20:29:46.771350152 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147119137\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126376\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147126376\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 158\n- 159\n 320 \N 187.149.46.40 87ce6de8-4164-49fe-9284-ed33ad9c2385 2020-06-24 20:29:46.780339 33449 10 User \N \N 10 User \N update ---\nunique_session_id:\n- Yikc8yEwxAajdze97y3J\n- nfh1mYtGFfYzgEGBXs7y\n 321 \N 187.149.46.40 87ce6de8-4164-49fe-9284-ed33ad9c2385 2020-06-24 20:29:46.797751 33450 2469 Sale \N \N 10 User \N create ---\ncustomer_id: 298\nuser_id: 10\nopen_cash_register_id: 932\namount: !ruby/object:BigDecimal 18:0.589E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2020-06-24\nsaletype: 0\nseller_id: 26\nsale_code: PV2-V-916\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 08c5adb7-7fad-439a-ab81-3c7deeca9b74 2020-06-24 20:31:06.213162 33451 1676 AvailableProduct \N \N 10 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.46.40 08c5adb7-7fad-439a-ab81-3c7deeca9b74 2020-06-24 20:31:06.24017 33452 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-06-24 00:10:10.422710000 Z\n- &1 2020-06-24 20:27:56.556622000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-24 20:32:44.387916682 Z\nsign_in_count:\n- 125\n- 126\n 252 \N 187.149.46.40 cd16be94-b109-406b-9c20-8aa5a791585e 2020-06-24 20:32:44.393598 33453 9 User \N \N 9 User \N update ---\nunique_session_id:\n- C5GkzqxeX-b_y16WmksP\n- CUhAnzGU_XRSFzsGnrJS\n 253 \N 187.149.46.40 cd16be94-b109-406b-9c20-8aa5a791585e 2020-06-24 20:32:44.40671 33454 2470 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 933\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2020-06-24\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1201\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 080eb687-f7a8-4745-b9c9-8336e2c2d257 2020-06-24 20:33:07.592816 33455 1635 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.46.40 080eb687-f7a8-4745-b9c9-8336e2c2d257 2020-06-24 20:33:07.62171 33456 2470 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.46.40 43d5c624-7833-4a9e-89a9-a1b5c837e605 2020-06-24 20:33:48.88558 33457 3349 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.479E3\nmove_type: '1'\nsale_id: 2470\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1201\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: TRANS\n 1 movimiento de efectivo por venta con folio PV1-V-1201 187.149.46.40 43d5c624-7833-4a9e-89a9-a1b5c837e605 2020-06-24 20:33:48.919137 33458 2471 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 933\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-06-24\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1202\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 86938fef-d60a-462f-b9d4-5ab1d4897f73 2020-06-24 20:56:31.151617 33459 1643 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.46.40 86938fef-d60a-462f-b9d4-5ab1d4897f73 2020-06-24 20:56:31.179097 33460 2471 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.46.40 fa3bd36c-5dac-44a7-ae03-8f0a2c6c9c13 2020-06-24 20:56:48.119343 33461 3350 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 2471\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1202\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEPOSITO\n 1 movimiento de efectivo por venta con folio PV1-V-1202 187.149.46.40 fa3bd36c-5dac-44a7-ae03-8f0a2c6c9c13 2020-06-24 20:56:48.14374 33462 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-03-23 18:23:50.701541000 Z\n- &1 2020-03-26 19:15:52.489981000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-24 21:11:45.486468872 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 74\n- 75\n 150 \N 187.149.46.40 08f2c050-9028-40e6-8db7-2f97cd9c18c7 2020-06-24 21:11:45.493251 33463 25 User \N \N 25 User \N update ---\nunique_session_id:\n- uuhruZTZsUGTzvRwAHRC\n- zZts1sN5zGFn2UcgTMLq\n 151 \N 187.149.46.40 08f2c050-9028-40e6-8db7-2f97cd9c18c7 2020-06-24 21:11:45.509234 33464 2472 Sale \N \N 25 User \N create ---\ncustomer_id: 3\nuser_id: 25\nopen_cash_register_id: 933\namount: !ruby/object:BigDecimal 18:0.1568E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1568E4\nstatus: 0\ndate_sale: 2020-06-24\nsaletype: 0\nseller_id: 25\nsale_code: PV1-V-1203\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 f7c380e5-96c9-428e-8582-6d29bff27ec9 2020-06-24 21:41:50.926119 33465 708 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 187.149.46.40 f7c380e5-96c9-428e-8582-6d29bff27ec9 2020-06-24 21:41:50.953559 33466 1692 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.46.40 f7c380e5-96c9-428e-8582-6d29bff27ec9 2020-06-24 21:41:50.98014 33467 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2020-03-26 19:16:23.662990000 Z\n- &1 2020-03-31 19:13:15.360127000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-24 21:42:29.302459876 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147125372\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147125372\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 74\n- 75\n 150 \N 187.149.46.40 0b62facd-4509-48b7-9955-6e8453e36064 2020-06-24 21:42:29.309996 33468 26 User \N \N 26 User \N update ---\nunique_session_id:\n- p5qYr6wnkYekaj6gbVwS\n- vsW3wLMiPW1YLB8vXRLQ\n 151 \N 187.149.46.40 0b62facd-4509-48b7-9955-6e8453e36064 2020-06-24 21:42:29.327125 33469 1602 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 272e6ef9-e236-4cef-b42e-84c4672f48c1 2020-06-24 21:42:45.227973 33470 1602 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 f5ad9da8-c07a-4437-922d-ea43f4be4537 2020-06-24 21:42:49.144255 33471 1273 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 187.149.46.40 f3192b0d-56c5-4b63-950e-2b44d4f55479 2020-06-24 21:42:55.996081 33472 1247 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.40 a49b6b8a-3c29-4f4b-b51f-e763eeb8125a 2020-06-24 21:43:04.054036 33473 1276 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.46.40 7ba79768-fbd8-4a20-aa2d-532a955fcaa3 2020-06-24 21:43:13.992131 33474 1622 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.40 64a4db58-03da-41b4-8d87-41a9a495f7fb 2020-06-24 21:43:26.26709 33475 1272 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 b80a2bec-bbc4-4cc2-8785-5ddddfeee0ee 2020-06-24 21:43:36.385866 33476 1487 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.46.40 0ab4e2e1-04b3-475c-8af4-4ac327d87625 2020-06-24 21:43:43.491792 33477 1249 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.46.40 5eb6048d-4460-462f-b7fd-1672816538a1 2020-06-24 21:43:55.791875 33478 1260 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.46.40 82be9d5b-e21b-46d8-bd34-75d73c710615 2020-06-24 21:44:03.996986 33479 1370 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.46.40 0955ba13-94f8-46e1-bbc5-b8fedff506d3 2020-06-24 21:44:12.129834 33480 1398 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 dab3d67b-4291-4b04-8171-2536997c3606 2020-06-24 21:44:21.059845 33481 1155 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 187.149.46.40 2851b95f-a39e-44f3-8da7-2df78b74a636 2020-06-24 21:44:31.231591 33482 1411 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 21 \N 187.149.46.40 5b3c34ea-edc2-4db2-9f33-978e5b7ab4c4 2020-06-24 21:44:42.451675 33483 1277 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.46.40 62fdb171-9316-49a6-a137-75a1879364f9 2020-06-24 21:44:52.870133 33484 1245 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.46.40 96b968cb-0816-4f06-816f-e3e13f46e4a3 2020-06-24 21:45:09.780046 33485 1383 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 7546d6f3-97fa-48be-a7d9-05cf1f5d85e5 2020-06-24 21:45:18.865632 33486 196 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.46.40 f812d401-0364-428f-a797-ff9f5b45e3d9 2020-06-24 21:45:30.285569 33487 1596 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 bcbb7aa5-488d-48c8-b6f1-1ea67aaa1c03 2020-06-24 21:45:38.112509 33488 1060 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 5e8b6616-0c69-4755-ac13-f818cd71db5e 2020-06-24 21:45:48.140717 33489 1595 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 d2d02bec-3a6c-42bf-b9ab-0ec3b6238ca0 2020-06-24 21:45:54.786022 33490 1436 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.46.40 1f92cc55-3fb0-4bd5-883e-5c6c45e7e290 2020-06-24 21:46:02.484759 33491 1597 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 5d394785-1569-435b-859c-6d3888a44e1d 2020-06-24 21:46:09.162473 33492 1592 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 5a09daa4-29fd-411f-9a8a-3079f6c8c129 2020-06-24 21:46:26.749969 33493 1593 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.40 1ee4e0eb-1926-444e-b61e-9768b9f8bbb3 2020-06-24 21:46:34.673073 33494 1432 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 73f794a9-feb4-4db7-89d8-29db8857d553 2020-06-24 21:46:48.038505 46499 1354 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1354'\n is_parent: false\n sku: COS-1354\n name: 4CSCP20808\n description: COSMETIQUERA FLORES\n price_base: '299.5'\n price_sale: '599.0'\n img_product: EE4DB16F-BD6D-4ECC-9728-D94216281472.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '14'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170791921'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-22 20:17:02.790735'\n updated_at: &12 2020-11-21 20:29:43.167598151 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1354'\n sku: COS-1354\n name: 4CSCP20808\n description: COSMETIQUERA FLORES\n price_base: '299.50'\n price_sale: '599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-22 20:17:02.790735'\n updated_at: '2020-09-22 20:17:02.790735'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170791921'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '14'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1354'\n type: *3\n value: 1354\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: COS-1354\n type: *7\n value: COS-1354\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 4CSCP20808\n type: *8\n value: 4CSCP20808\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: COSMETIQUERA FLORES\n type: *6\n value: COSMETIQUERA FLORES\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '299.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.599E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: EE4DB16F-BD6D-4ECC-9728-D94216281472.jpeg\n type: *2\n value: EE4DB16F-BD6D-4ECC-9728-D94216281472.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '14'\n type: *3\n value: 14\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170791921'\n type: *2\n value: '7509170791921'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-22 20:17:02.790735'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- EE4DB16F-BD6D-4ECC-9728-D94216281472.jpeg\n 2 El producto COS-1354 fue modificado. 189.186.1.223 75c93d35-3feb-435f-86de-7f9eb9b304d2 2020-11-21 20:29:43.211225 33495 1603 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 e9bdcfba-eb85-44b2-9b82-2f5b432d470f 2020-06-24 21:47:00.404736 33496 1073 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 896ec841-b057-4398-8464-40504a70f51a 2020-06-24 21:47:09.866083 33497 1435 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.46.40 793bb0a3-eb12-4447-a8f7-b832a1946c1e 2020-06-24 21:47:18.897141 33498 1458 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 90836e13-029f-4aca-a96c-432ef2c94b55 2020-06-24 21:47:29.283202 33499 1457 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.46.40 1809ba76-398e-400c-b7ca-dd0b6b0478c4 2020-06-24 21:47:38.174957 33500 1078 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 685ee202-9385-4e3e-97e7-ec784ee89415 2020-06-24 21:47:46.615535 33501 1590 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 9e442cf7-9c47-4d68-916c-fe7c5b6609b5 2020-06-24 21:47:54.954263 33502 1594 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.40 773a5f43-dfdc-478b-b7af-223b679abaee 2020-06-24 21:48:04.801361 33503 1067 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.46.40 f4040463-0fb1-4749-af53-68515ed1ca0a 2020-06-24 21:48:12.417745 33504 1433 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 40c46c36-6acb-427d-a240-a4774e5641d0 2020-06-24 21:48:22.8622 33505 1045 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 187.149.46.40 72c6d0ad-fb68-4f9d-a188-3ece34434f9f 2020-06-24 21:48:32.502997 33506 1434 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 e0a141b4-6a61-4591-b90d-75d38136be33 2020-06-24 21:48:42.198662 33507 1517 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 7dfb5221-e19a-4449-abf5-9b74dda10d53 2020-06-24 21:48:50.252886 33508 1408 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 ed78e208-b32b-4eea-b5c3-fb1d4d6d978e 2020-06-24 21:48:59.568221 33509 1273 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 187.149.46.40 8cf2ff72-7e95-4ba8-baf9-83c970502c58 2020-06-24 21:49:06.665598 33510 1247 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 5e3fcd3b-ad3a-498e-9877-8deed2bc17ed 2020-06-24 21:49:09.019053 33511 1276 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 24317697-0d44-41ba-af1f-cceca96a9850 2020-06-24 21:49:11.264396 33512 1622 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 cb46b960-f39b-427a-9a07-960abec65b9d 2020-06-24 21:49:13.609819 33513 1487 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 02ed9be4-81f1-4704-8615-8c5ea54d0ad4 2020-06-24 21:49:16.625893 33514 1249 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 09cc2878-b67e-4df4-b36c-ec55f4b5afe5 2020-06-24 21:49:19.00017 33515 1260 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 b69f51c5-b99b-4382-bc3b-19cc6e63d480 2020-06-24 21:49:21.133281 33516 1370 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.46.40 3eb09db8-5de9-4604-a114-db1ec6990576 2020-06-24 21:49:23.151632 33517 1155 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.46.40 af68fb04-1a7e-4667-afad-12b11db09073 2020-06-24 21:49:26.069609 33518 1277 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.46.40 8100818d-1155-4b5a-a508-f503bc63ef04 2020-06-24 21:49:28.82834 33519 1245 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 35923c95-086e-4fac-b125-233928a2cca3 2020-06-24 21:49:30.765463 33520 1045 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 187.149.46.40 365716b2-79ea-46c0-a335-11565cb74f11 2020-06-24 21:49:41.047425 33521 1067 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.46.40 133819e9-c340-4238-8f7a-d4f71781711e 2020-06-24 21:49:41.275826 33522 1594 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 ca29035c-71ce-4723-b1a1-819c5d11b1f2 2020-06-24 21:49:43.247955 33523 1457 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 53ee13b5-f7d1-484b-8125-f6f24c3ce9fe 2020-06-24 21:49:45.876558 33524 1435 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 a127bc1b-3119-48c3-9156-d77534c3b136 2020-06-24 21:49:48.627803 33525 1432 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 c853e283-504f-41f7-a7db-1e9b7d6baddd 2020-06-24 21:49:51.303102 33526 1593 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 efbe114f-5e40-429a-9044-aa7b4a599f03 2020-06-24 21:49:53.963454 33527 1436 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 5654fc3c-378f-4627-b601-7ad7861e4d4b 2020-06-24 21:49:56.585557 33528 546 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-06-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO a Almacen central creado. 187.149.46.40 3917e433-610f-4e62-b82b-67672e92216e 2020-06-24 21:49:59.583796 33557 1572 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.46.40 06934a58-46a8-4624-b8ba-bee07d83bf6b 2020-06-24 22:17:19.253917 33529 22 User \N \N 22 User \N update ---\nlast_sign_in_at:\n- 2020-02-13 21:40:36.203794000 Z\n- &1 2020-03-01 01:04:14.298937000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-24 21:53:35.966680871 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103678\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 11\n- 12\n 24 \N 187.149.46.40 6cbf48e4-f9b8-46b6-9165-22464bc4f3a6 2020-06-24 21:53:35.975181 33530 22 User \N \N 22 User \N update ---\nunique_session_id:\n- 7JzfuAzh16bsBrLUnZZY\n- 6h2WeoBfxbDn5XNrBwvo\n 25 \N 187.149.46.40 6cbf48e4-f9b8-46b6-9165-22464bc4f3a6 2020-06-24 21:53:35.993484 33531 511 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-24\n 2 Se dio entrada a traspaso de S BY SUO a Almacen central 187.149.46.40 ed35f288-64a7-4193-bf29-fc1eb9d55f46 2020-06-24 21:54:27.419707 33532 546 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-24\n 2 Se dio entrada a traspaso de SUO a Almacen central 187.149.46.40 9754e789-b389-4f63-be98-fe882209129d 2020-06-24 21:54:42.965853 33533 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-06-20 01:27:45.942081000 Z\n- &1 2020-06-21 07:40:02.222149000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-24 21:55:27.188598919 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141580\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 219\n- 220\n 441 \N 187.149.46.40 9e687542-6667-4407-92f1-8b5d296e782a 2020-06-24 21:55:27.195531 33534 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 6PKhAWGxdEA4xVr87wTD\n- Q1EZRwHwMHz7CCZTiSMN\n 442 \N 187.149.46.40 9e687542-6667-4407-92f1-8b5d296e782a 2020-06-24 21:55:27.2103 33535 545 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-24\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 187.149.46.40 929b9913-9595-4032-83d5-d78cdd9a98a4 2020-06-24 21:57:34.629169 33536 1844 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 155\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 929b9913-9595-4032-83d5-d78cdd9a98a4 2020-06-24 21:57:34.649309 33537 544 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-24\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 187.149.46.40 e6c1cd5d-ee5a-4fd9-9cac-739c7d3b0bd7 2020-06-24 21:58:06.99237 33538 1845 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 968\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 e6c1cd5d-ee5a-4fd9-9cac-739c7d3b0bd7 2020-06-24 21:58:07.013747 33539 540 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-24\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 187.149.46.40 e4fcd3c9-a789-4212-a5c1-f60e190cb436 2020-06-24 21:58:23.268076 33540 1846 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 719\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 e4fcd3c9-a789-4212-a5c1-f60e190cb436 2020-06-24 21:58:23.299338 33541 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2020-03-31 19:13:15.360127000 Z\n- &1 2020-06-24 21:42:29.302459000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-24 22:02:37.713493243 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147125372\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 75\n- 76\n 152 \N 187.149.46.40 225d26ab-dafb-4942-83a0-b63e5ba9c80c 2020-06-24 22:02:37.720421 33542 26 User \N \N 26 User \N update ---\nunique_session_id:\n- vsW3wLMiPW1YLB8vXRLQ\n- 8YP-XitTVdgSyseTosE1\n 153 \N 187.149.46.40 225d26ab-dafb-4942-83a0-b63e5ba9c80c 2020-06-24 22:02:37.736961 33543 339 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 286cebea-e868-439c-b3a1-82deb1cb0b59 2020-06-24 22:03:43.083326 33544 367 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.26E2\n- !ruby/object:BigDecimal 18:0.25E2\n 31 \N 187.149.46.40 83f8e7c5-590d-41f0-b09b-7fe3e47e2ebe 2020-06-24 22:03:51.146109 33545 367 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.25E2\n- !ruby/object:BigDecimal 18:0.0\n 32 \N 187.149.46.40 956ac590-7104-4711-b2d4-a737f23a3c86 2020-06-24 22:03:58.324312 33546 297 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 aa29ecf6-12e5-4a3f-9013-acab5890e94d 2020-06-24 22:04:34.339235 33547 1051 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.46.40 8cadebb9-4d30-41cb-a396-214869634da4 2020-06-24 22:04:49.782738 33548 1051 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 c6183daa-e2b6-4f71-8687-3b6c9206b197 2020-06-24 22:04:57.869249 33549 300 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 0354f285-7260-43fc-afea-8426fd741ef2 2020-06-24 22:06:03.96353 33550 298 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 a6cad913-97e9-43e0-a0cb-a0f2819749e2 2020-06-24 22:06:44.767827 33551 1609 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 b3f4e55e-f96a-4554-8a17-291c786943bc 2020-06-24 22:08:35.425029 33552 1608 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 cd4542f6-729d-463c-bb67-edf66d91e991 2020-06-24 22:15:20.033202 33553 579 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 9 \N 187.149.46.40 2de0ca32-1897-4035-95bb-c6deb4e16beb 2020-06-24 22:16:31.552684 33554 579 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.46.40 924ddba5-d672-4be5-9d5b-b99660450ce8 2020-06-24 22:16:34.598045 33555 296 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.46.40 aaf4db70-6b82-4a65-809e-c15878fcdfcc 2020-06-24 22:16:53.940058 33556 296 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 666e1b27-1588-4813-964b-aeedfe8bff35 2020-06-24 22:17:02.158038 46659 3504 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 5be832a5-91fa-411f-b469-1e4499e25317 2020-11-24 02:18:53.325718 33558 1572 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 1ea3cda0-e27d-4afc-931d-3e7605a115e0 2020-06-24 22:17:25.87951 33559 292 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.46.40 56feaaac-a4f8-4e52-9ab5-1de8a9544d17 2020-06-24 22:17:39.020876 33560 1569 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 6a72406b-5cc3-4962-846c-86a464c4821c 2020-06-24 22:18:35.539595 33561 292 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 cd23d42f-f0e3-44e2-b87d-83adb82cca79 2020-06-24 22:18:46.162084 33562 1569 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 8b8f17e4-efaf-4bcb-9b0d-0d6bab0c1009 2020-06-24 22:18:47.543573 33563 276 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.40 aafc3c7c-6e7c-4765-b8b7-bf0c4b333c39 2020-06-24 22:19:08.082562 33564 672 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.46.40 51d59cb0-12c7-4e75-b02a-b1a7ead2c643 2020-06-24 22:19:28.136126 33565 672 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.46.40 bf2a8dca-ede7-4950-aa3e-559b87fe012b 2020-06-24 22:19:42.957893 33566 1820 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.46.40 375702e2-f134-4148-9e33-e708965860b6 2020-06-24 22:19:57.643244 33567 717 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.46.40 d88f32d3-130d-48d9-adf8-7d944d9780aa 2020-06-24 22:20:04.18205 33568 1819 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.46.40 c905ce25-a4ae-4845-943d-fb753090ede5 2020-06-24 22:20:15.082484 33569 1820 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 efe79b12-324b-49f7-b470-95d2b1c1035a 2020-06-24 22:20:24.701364 33570 1819 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 419ee5d6-fab2-4938-aa2a-d5d232b066c8 2020-06-24 22:20:33.790655 33571 1003 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.46.40 3ca0605e-61ff-4086-a633-0b071d956340 2020-06-24 22:21:01.323078 33572 1124 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.46.40 34145a6c-fc5f-4814-a50f-b62e90c967f5 2020-06-24 22:21:09.330521 33573 1379 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 187.149.46.40 78b1152d-3a80-4165-a514-e876c8cdbe22 2020-06-24 22:21:18.684296 33574 1124 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 c0ca57db-37e5-4447-8a41-102089d23f48 2020-06-24 22:21:31.721366 33575 1003 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.46.40 7cb4cf0f-2150-45e9-b404-34ecc8924335 2020-06-24 22:21:34.71848 33576 1379 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.46.40 d82b067f-ff76-4fc8-8434-390319af587f 2020-06-24 22:21:39.550925 33577 1379 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.46.40 b8a10338-b80f-4d0e-afc1-1bad0aee3c62 2020-06-24 22:22:31.666509 33578 547 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-24\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.46.40 343dde32-ced5-4fe2-8e42-da34e21f8c6d 2020-06-24 22:22:35.274093 33579 800 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 29 \N 187.149.46.40 f679a065-e0c2-453b-8f01-8c50afeaec33 2020-06-24 22:22:57.894203 33580 800 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 30 \N 187.149.46.40 cffd1cb1-f0c2-4588-8283-3e190fce17fb 2020-06-24 22:23:02.600935 33581 1021 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 15 \N 187.149.46.40 9a745572-cdc6-4549-b0f7-b39af776d4ce 2020-06-24 22:24:28.185299 33582 798 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.46.40 4ca66ec7-853c-4bd1-abb6-4f153f932f2e 2020-06-24 22:25:28.004635 33583 798 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 e9e68f88-aa9d-4e27-adaf-29fedf354183 2020-06-24 22:25:35.067896 33584 1015 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.46.40 e69429a2-81b7-4482-bbef-41250587aa62 2020-06-24 22:25:52.651386 33585 1015 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.46.40 f0719545-513c-45e8-92e5-95772c24bfe0 2020-06-24 22:26:11.237685 33586 1015 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.46.40 4664c0a5-a780-4239-bc0f-742e512b69ea 2020-06-24 22:26:42.24599 33587 1026 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.46.40 c37ef2cf-0309-40d2-84d6-aa0260f621b0 2020-06-24 22:26:54.159372 33588 1015 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 cce8a8b1-e5d9-40bc-b526-f834f07dab4d 2020-06-24 22:27:02.662193 33589 1026 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.46.40 7b6b1871-7956-4dd7-b438-df43f4258052 2020-06-24 22:27:39.650754 33590 1449 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.46.40 7523cbf0-39ce-4414-b373-86862a3d21de 2020-06-24 22:27:51.052842 33591 1449 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 da4000fb-d8ad-4a58-bce4-03c3beb06c59 2020-06-24 22:27:57.181091 33592 1625 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.46.40 9f3751a2-e6b9-409d-bdcb-502b3f151219 2020-06-24 22:28:08.326138 33593 1099 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.46.40 c36e4f9b-295c-4828-a56b-e2e87b8b1a8a 2020-06-24 22:28:54.080866 33594 1147 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.46.40 d05e7b94-d3f8-4e06-9699-bda9e29830e6 2020-06-24 22:30:18.714683 33595 1146 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.46.40 4cc3fbd5-e5e4-4386-8830-fa3e27d06976 2020-06-24 22:30:26.653776 33596 1818 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.46.40 56a7c7f7-bba0-4afe-a791-c14f062a5858 2020-06-24 22:30:34.708244 33597 1680 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.46.40 0da53439-914f-4aac-a96f-f3d400766696 2020-06-24 22:32:05.846867 33598 307 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.46.40 8c27fd0f-69b1-44ad-8427-fa73f01d2391 2020-06-24 22:32:21.078979 33599 1451 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 a28a5e77-3492-4571-9b9e-2fb3d2028461 2020-06-24 22:33:06.055947 33600 314 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.46.40 549f0af2-0b70-41ac-9552-ef428453a794 2020-06-24 22:33:46.38072 33601 317 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.46.40 e2b980d9-c55c-4de0-bd56-93dffcd48c95 2020-06-24 22:33:57.171662 33602 318 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.46.40 93dad4d5-59e5-40ae-8a9a-76b25f7b1897 2020-06-24 22:34:06.505572 33603 318 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.46.40 0acae497-5879-4fbd-87cb-3c452853b6f9 2020-06-24 22:34:48.998175 33604 321 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.46.40 5f2f6b1c-fc96-47bc-9376-f951b4a76364 2020-06-24 22:35:02.713756 33605 326 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.46.40 68e0ef8d-890d-4caa-88ae-5a5c354537e2 2020-06-24 22:35:16.324493 33606 329 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.40 d2811928-9007-480a-9a40-ace7d6e82b7e 2020-06-24 22:35:52.881186 33607 573 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 187.149.46.40 4fd168dd-b163-4b19-a034-38f0d4ced13a 2020-06-24 22:36:52.174227 33608 565 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.46.40 a50e0246-1a30-48cf-9609-a394c106d04a 2020-06-24 22:37:00.526436 33609 753 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.46.40 8332f3bd-eaf4-4e3b-b2cc-b13d25de7f67 2020-06-24 22:37:29.583166 33610 1625 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 5bb1906c-5114-4190-bc4b-91263b013187 2020-06-24 22:38:25.498979 33611 1099 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 187.149.46.40 8173e464-49d9-4909-aa30-b827761881eb 2020-06-24 22:38:31.777561 33612 1146 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 187.149.46.40 96b3cac6-0980-4d68-9785-c9edf30bffa4 2020-06-24 22:38:34.77824 33613 1818 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 50cc170e-4b19-4662-b417-b460d46d4178 2020-06-24 22:38:40.514213 33614 1680 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 628b11e7-ebd8-4af4-afc9-61ac21cf2d73 2020-06-24 22:38:41.987828 33615 314 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 17157aed-7ad4-43fb-a4db-3e844f2a50e7 2020-06-24 22:38:48.468322 33616 317 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 187.149.46.40 6f6a8c6e-91d1-4871-8c38-152e2a7dc21d 2020-06-24 22:38:50.102095 33617 318 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.46.40 8a8da9e4-dd1b-4ac4-831a-0dc88496fc60 2020-06-24 22:38:55.272435 33618 321 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.46.40 82311707-0427-40db-abe3-a3db1bfdee88 2020-06-24 22:39:16.243062 33619 753 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 187.149.46.40 5dfb93e7-58c1-4b75-9a5e-3b54b334221b 2020-06-24 22:39:20.904802 33620 565 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 161b4abf-43c9-4385-977f-1cbbba5b6ae5 2020-06-24 22:39:22.842035 33621 329 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 81038d03-2f42-46a5-9ef2-e0559924d14a 2020-06-24 22:39:30.764395 33622 548 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-24\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.46.40 84bdcc7b-a2ae-4f10-8d40-658a1d299aeb 2020-06-24 22:39:33.085631 33623 433 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.46.40 a9e58c61-975a-48f3-89b6-770254bf659a 2020-06-24 22:40:18.83855 33624 433 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.46.40 f23f889e-086b-4c90-bdb1-d0458d896c07 2020-06-24 22:40:21.442888 33625 395 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.46.40 a60176fe-ff33-42ca-a8fe-29178ea85c7b 2020-06-24 22:41:43.450289 33626 395 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.46.40 ef82450b-6ab9-4ac6-8db1-5c4014b2b85e 2020-06-24 22:41:50.891692 33627 1138 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 15 \N 187.149.46.40 78f16c76-4125-46de-b0ef-f804cfd208c6 2020-06-24 22:43:05.205683 33628 1138 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 16 \N 187.149.46.40 dea4b404-4ba4-4398-b061-e0a4b3f87022 2020-06-24 22:43:10.120539 33629 1455 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.46.40 790755eb-a210-42a3-930e-38bfd2529f97 2020-06-24 22:43:27.456084 33630 1455 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.46.40 f4735eae-cd58-44a2-a029-5ec9d9ccee23 2020-06-24 22:43:33.237391 33631 1668 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.46.40 4582b55f-332d-4c76-b7e3-c54b4ae441f9 2020-06-24 22:44:22.284282 33632 1668 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 8a137b37-7d7b-4a12-b2d6-b59a1fbb09b3 2020-06-24 22:44:28.733921 33633 1669 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.46.40 71870dd8-9f27-41cb-955c-582dcbe9fe37 2020-06-24 22:44:58.78171 33634 1669 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 a43cf4f3-bef9-4d39-adb4-fc14b8519989 2020-06-24 22:45:04.659351 33635 625 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.46.40 63116b4a-42ab-43fa-981a-59ba2ac9ee5f 2020-06-24 22:49:33.449113 33636 1651 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.46.40 702828ab-cedc-4858-8bde-7acd268e4c88 2020-06-24 22:49:37.961231 33637 625 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 ecf0aad2-198a-4f47-8c55-7c9c6aeac252 2020-06-24 22:49:46.811749 33638 1651 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 8e0a2a8b-1a17-4e41-b5c5-934c1792a1ec 2020-06-24 22:49:50.534776 33639 677 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.40 efec0718-9da2-41b9-9355-dcf668e9fd52 2020-06-24 22:50:14.422366 33640 713 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.40 64c02b7c-8810-46fe-9fab-8fea77dd7b95 2020-06-24 22:50:24.077949 33641 419 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 187.149.46.40 2fd4529a-4546-416b-9146-3e7905c4847f 2020-06-24 22:51:44.240581 33642 676 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.40 47f5a791-ea66-4d0a-8f56-1bcf59cac050 2020-06-24 22:53:45.939377 33643 653 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.46.40 e5762807-5408-41d7-900d-09f2966fc19a 2020-06-24 22:53:54.239788 33644 877 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 0a788d64-f844-4d5d-8e8e-c70d766b5f36 2020-06-24 22:54:01.020653 33645 676 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 add1f107-455e-4917-b031-ce20aaeeb11c 2020-06-24 22:54:08.947287 33646 653 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 f4232d38-cc92-4124-9f5d-aec3af92016d 2020-06-24 22:54:10.48372 33647 1816 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.40 dc125285-937b-4321-af0d-c2f0817b4802 2020-06-24 22:54:21.652149 33648 1816 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 0919a6ea-f374-4bb7-a2a6-f29eed1eb420 2020-06-24 22:54:27.82269 33649 420 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 003437f7-5f21-466f-b2e2-e466e557bb68 2020-06-24 22:54:44.678558 33650 517 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 187.149.46.40 71756319-db15-4f21-829e-c04ce93d8043 2020-06-24 22:55:09.460116 33651 517 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 12 \N 187.149.46.40 0a812819-9d8b-438e-80fa-21ec5dda2697 2020-06-24 22:56:45.887884 33652 517 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 13 \N 187.149.46.40 3a7ca086-fa7a-42c4-bcae-868b49db9eaf 2020-06-24 22:57:04.380373 33653 517 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 14 \N 187.149.46.40 bab18e91-0467-4f28-a01f-6e1121fd71a9 2020-06-24 22:57:49.66087 33654 1817 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.46.40 c7979eaf-a380-435d-9444-dab2f6290d47 2020-06-24 22:58:01.387305 33655 1817 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 e4cde9e4-54b7-4554-9477-2fe247b38be0 2020-06-24 22:58:08.635095 33656 1817 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.46.40 afcb7ff1-00a5-42a0-99f1-99f403aa1742 2020-06-24 22:58:36.926869 33657 549 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-24\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.46.40 24dc3dd9-a413-4df1-acfb-394a754886c6 2020-06-24 22:58:44.576178 33658 1570 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.40 fdc84c5b-213a-44e2-9bb7-02de93d3d13a 2020-06-25 00:04:16.755815 33659 1570 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 dc2ab869-a74b-4f41-b9e5-6c0053f5d028 2020-06-25 00:04:26.855009 33660 1573 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 01d41882-5157-40bf-8ac1-6180c71ebeb5 2020-06-25 00:05:15.383145 33661 543 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 dce8bf89-2586-410a-83ff-3f3799efa432 2020-06-25 00:06:12.568377 33662 1004 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.40 d5fd45bb-41a4-469f-babe-c7001e15b2ae 2020-06-25 00:06:54.730346 33663 598 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.46.40 6a0f7ed2-d4f3-4d8b-bd43-2c1b8469e1b8 2020-06-25 00:07:08.662464 33664 434 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.46.40 fa59c6e3-6c3e-4760-870f-f8e0f7978196 2020-06-25 00:09:03.022741 33665 1004 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 55f4de3e-255e-4dbe-ba2f-3da4917e20f8 2020-06-25 00:09:17.050287 33666 436 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 13 \N 187.149.46.40 9caee9b6-7161-41bf-bb12-8d43bd8c41ec 2020-06-25 00:09:36.121007 33667 1000 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 b0dac56d-69af-4faa-9555-d6553be48c2c 2020-06-25 00:09:55.923701 33668 1374 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 9 \N 187.149.46.40 8094ec38-9845-4e01-8ae7-450cc56999cc 2020-06-25 00:11:44.139855 33669 1376 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.46.40 9a3da45b-9447-472a-afc2-160d14c13b6a 2020-06-25 00:12:19.869123 33670 1681 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.46.40 def13a1c-ee4b-4683-90f0-0f09e3694bbe 2020-06-25 00:12:28.303617 33671 1681 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 76fcb43f-dd9f-4e74-a90d-305dd3acdbbf 2020-06-25 00:12:35.850017 33672 1374 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.46.40 68d5321a-c3bb-42dd-8ab3-2f8d65de493d 2020-06-25 00:12:39.890846 33673 436 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 14 \N 187.149.46.40 33dafabc-2f71-480f-87d4-4c73a1331b6c 2020-06-25 00:13:04.248174 33674 1667 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.46.40 159fccaa-97b1-4b6e-9977-c407d3585ec3 2020-06-25 00:13:20.030184 33675 1667 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.46.40 06c8d62d-5aca-4a5b-bdae-5218af6d9518 2020-06-25 00:13:26.804749 33676 1674 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.46.40 86e29882-825b-4a5f-a6db-45bdbdb7e0a4 2020-06-25 00:13:57.23791 33677 1675 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.46.40 077d439c-6a60-4855-9a26-65ff8dbcfcc7 2020-06-25 00:14:13.288094 33678 1676 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.46.40 8987580d-c2d9-41bf-ad40-1e7221fa27cb 2020-06-25 00:14:26.320002 33679 1676 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 ffc4e19a-b679-4375-8411-e6223811a994 2020-06-25 00:14:44.645632 33680 1675 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.46.40 c69a5b45-d5cd-43a7-85d6-aba371e6e06f 2020-06-25 00:14:47.79377 33681 1674 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 05243b0b-aced-45c6-acb6-55d0f2b2a529 2020-06-25 00:14:51.045563 33682 550 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-24\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.46.40 e98878e5-1a57-4031-ba4e-8b2fca23e188 2020-06-25 00:14:52.502262 33683 1678 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 10e22e0c-d4d6-416d-b6ab-4d2c167210c3 2020-06-25 00:15:26.221356 33684 327 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 cbd3483f-0ca3-4b4e-ada0-bd49f964cd73 2020-06-25 00:16:17.236746 33685 1221 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 6cc66316-387d-4089-a576-cf25c1d4ddf8 2020-06-25 00:17:42.04545 33686 1815 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 d8722cf5-b807-4df0-ba11-534fb1a9ba7b 2020-06-25 00:17:59.377747 33687 861 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.46.40 1eda3b54-52dc-47c2-a8fd-8c568f236012 2020-06-25 00:19:27.581798 33688 861 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 187.149.46.40 195f3e97-1d2e-43cd-b52c-5215978c8232 2020-06-25 00:21:09.975793 33689 1683 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.46.40 b381e8e7-289f-4db6-85d8-1c7085c1062e 2020-06-25 00:21:40.529398 33690 1683 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.46.40 8920ad12-c871-47ec-b751-4869976d344f 2020-06-25 00:22:03.82306 33691 1684 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.46.40 18ee63a6-ed52-4d7c-9e44-0d0567fc0e11 2020-06-25 00:22:54.743651 33692 1684 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.46.40 521ae0e5-0d20-4808-878b-6bff2546b77a 2020-06-25 00:23:05.640045 33693 406 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.46.40 bc5fcfea-7a92-4ecc-93bc-0fc7013772b0 2020-06-25 00:23:41.191391 33694 406 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 664e78ac-52ae-4b08-9aaf-835c58be223e 2020-06-25 00:24:12.772549 33695 682 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.40 b7806f36-986b-4099-8128-3e29d2587efc 2020-06-25 00:24:24.043392 33696 405 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.40 ffad4dcc-ed5b-41d5-9c21-94a3d4f2dcfd 2020-06-25 00:24:45.49787 33697 405 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.46.40 4b5a09da-8379-4bf1-844a-e7ee5b452c53 2020-06-25 00:25:41.019398 33698 480 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.46.40 d87d24a2-cfc8-45d8-8253-a504e2dabbe4 2020-06-25 00:26:58.035842 33699 480 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.40 10f28520-c6ab-404c-badb-d8fce5c1b68e 2020-06-25 00:27:05.379843 33700 389 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 214a40f6-e875-417a-9921-cdd52e3f3d4d 2020-06-25 00:30:27.429855 33701 1052 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 ecd58867-a057-463b-ae37-f0cf397b1d65 2020-06-25 00:33:17.099605 33702 425 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 26393ed3-d995-4273-a4c0-79068eef7313 2020-06-25 00:33:30.634574 33703 551 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-24\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.46.40 fc0b26d5-7345-414b-99c3-8dd2753a5f96 2020-06-25 00:33:57.213737 33704 674 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 687bce8f-f031-456b-9f8f-306882885231 2020-06-25 00:37:42.507308 33705 1220 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.46.40 032cb615-6cbd-4597-953b-f7947b1c4072 2020-06-25 00:37:57.317173 33706 1220 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 97963bd5-2bff-4c94-96eb-defd226ebf03 2020-06-25 00:38:20.094912 33707 1165 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 7c67ce7c-82c6-4ebc-86ba-d624ee57627b 2020-06-25 00:38:30.070899 33708 552 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-24\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.46.40 c0903110-f731-4eaf-942d-653f9d02772c 2020-06-25 00:38:51.33268 33709 694 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 d76664f0-2319-4d6a-b76f-5449602ad0e8 2020-06-25 00:42:22.051757 33710 665 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.46.40 22240231-881c-42e8-86e0-4745e6bec058 2020-06-25 00:42:29.688914 33711 998 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.46.40 d41b9be8-b967-4a05-acab-520165f6d1c5 2020-06-25 00:42:55.466945 33712 998 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.40 6f122639-6729-4cdd-9dc1-89c1780f1086 2020-06-25 00:42:58.152889 33713 1218 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 c3d9ca84-103d-4028-89cf-8273231a6814 2020-06-25 00:43:29.134243 33714 1453 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.46.40 8dea0c5f-621e-4f5f-9f28-8e0946b88a41 2020-06-25 00:43:41.97704 33715 801 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.46.40 d76ea0d5-b6c5-4665-b2ee-b91ebc9e3b80 2020-06-25 00:44:22.951377 33716 801 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 df8d6a3d-278d-4542-98b7-8917193da1ec 2020-06-25 00:44:27.469993 33717 1446 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 6ecb1a54-18b8-4bd2-94aa-b8d55c1cf7a7 2020-06-25 00:44:40.15658 33718 995 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.46.40 8d37d4ee-4198-4330-a577-14660922f44c 2020-06-25 00:45:32.976149 33719 1650 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.46.40 550ad83f-3fda-4b42-a2e5-4b84011af593 2020-06-25 00:46:58.103043 33720 1650 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.46.40 0c69b809-8628-4500-b574-ca9bc9436f2c 2020-06-25 00:47:04.11432 33721 553 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-24\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.46.40 f355dddd-3d5f-43b1-bac2-873edab63d8a 2020-06-25 00:47:21.754908 33722 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-03-26 19:15:52.489981000 Z\n- &1 2020-06-24 21:11:45.486468000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 00:48:17.428097458 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183120702\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 75\n- 76\n 152 \N 187.149.46.40 c5a0bd20-7991-46d3-b13f-443f6237cdae 2020-06-25 00:48:17.434944 33723 25 User \N \N 25 User \N update ---\nunique_session_id:\n- zZts1sN5zGFn2UcgTMLq\n- 2_azxvSh43tmPApKZAwo\n 153 \N 187.149.46.40 c5a0bd20-7991-46d3-b13f-443f6237cdae 2020-06-25 00:48:17.449848 33724 553 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-24\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.46.40 8392c80f-52a9-4a59-9adf-42c4b48985fb 2020-06-25 00:48:43.068644 33725 1847 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 999\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 8392c80f-52a9-4a59-9adf-42c4b48985fb 2020-06-25 00:48:43.08947 33726 1848 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 710\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 8392c80f-52a9-4a59-9adf-42c4b48985fb 2020-06-25 00:48:43.11115 33727 1058 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.46.40 8392c80f-52a9-4a59-9adf-42c4b48985fb 2020-06-25 00:48:43.130704 33728 1849 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 686\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 8392c80f-52a9-4a59-9adf-42c4b48985fb 2020-06-25 00:48:43.151649 33729 1381 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.46.40 8392c80f-52a9-4a59-9adf-42c4b48985fb 2020-06-25 00:48:43.169735 33730 1617 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 8392c80f-52a9-4a59-9adf-42c4b48985fb 2020-06-25 00:48:43.187205 33731 746 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.46.40 8392c80f-52a9-4a59-9adf-42c4b48985fb 2020-06-25 00:48:43.203964 33732 661 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.46.40 8392c80f-52a9-4a59-9adf-42c4b48985fb 2020-06-25 00:48:43.220692 33733 529 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.46.40 8392c80f-52a9-4a59-9adf-42c4b48985fb 2020-06-25 00:48:43.2372 33734 552 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-24\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.46.40 30411f5f-7c83-4128-a5a9-22aaee06966c 2020-06-25 00:48:52.678302 33735 1850 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 810\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 30411f5f-7c83-4128-a5a9-22aaee06966c 2020-06-25 00:48:52.69753 33736 169 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.46.40 30411f5f-7c83-4128-a5a9-22aaee06966c 2020-06-25 00:48:52.715568 33737 234 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.46.40 30411f5f-7c83-4128-a5a9-22aaee06966c 2020-06-25 00:48:52.736503 33738 551 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-24\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.46.40 d855c3a3-d8f7-40c7-9a4f-71bf1576d753 2020-06-25 00:49:02.992901 33739 570 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.40 d855c3a3-d8f7-40c7-9a4f-71bf1576d753 2020-06-25 00:49:03.020851 33740 218 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.46.40 d855c3a3-d8f7-40c7-9a4f-71bf1576d753 2020-06-25 00:49:03.046823 33741 1851 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 391\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 d855c3a3-d8f7-40c7-9a4f-71bf1576d753 2020-06-25 00:49:03.075455 33742 11 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.46.40 d855c3a3-d8f7-40c7-9a4f-71bf1576d753 2020-06-25 00:49:03.098697 33743 8 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.46.40 d855c3a3-d8f7-40c7-9a4f-71bf1576d753 2020-06-25 00:49:03.12202 33744 1563 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.46.40 d855c3a3-d8f7-40c7-9a4f-71bf1576d753 2020-06-25 00:49:03.146401 33745 1852 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1019\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 d855c3a3-d8f7-40c7-9a4f-71bf1576d753 2020-06-25 00:49:03.172405 33746 1853 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1018\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 d855c3a3-d8f7-40c7-9a4f-71bf1576d753 2020-06-25 00:49:03.198101 33747 872 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.46.40 d855c3a3-d8f7-40c7-9a4f-71bf1576d753 2020-06-25 00:49:03.223111 33748 1854 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 680\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 d855c3a3-d8f7-40c7-9a4f-71bf1576d753 2020-06-25 00:49:03.253319 33749 689 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.40 d855c3a3-d8f7-40c7-9a4f-71bf1576d753 2020-06-25 00:49:03.279262 33750 1855 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1014\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 d855c3a3-d8f7-40c7-9a4f-71bf1576d753 2020-06-25 00:49:03.305024 33751 550 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-24\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.46.40 89902070-f874-4c88-bf0e-49814d56e7ef 2020-06-25 00:49:15.486076 33752 78 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.46.40 89902070-f874-4c88-bf0e-49814d56e7ef 2020-06-25 00:49:15.504781 33753 75 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.40 89902070-f874-4c88-bf0e-49814d56e7ef 2020-06-25 00:49:15.526307 33754 90 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.46.40 89902070-f874-4c88-bf0e-49814d56e7ef 2020-06-25 00:49:15.547467 33755 60 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.46.40 89902070-f874-4c88-bf0e-49814d56e7ef 2020-06-25 00:49:15.567812 33756 145 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.40 89902070-f874-4c88-bf0e-49814d56e7ef 2020-06-25 00:49:15.587615 33757 149 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 15 \N 187.149.46.40 89902070-f874-4c88-bf0e-49814d56e7ef 2020-06-25 00:49:15.609633 33758 150 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 10 \N 187.149.46.40 89902070-f874-4c88-bf0e-49814d56e7ef 2020-06-25 00:49:15.632461 33759 534 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.46.40 89902070-f874-4c88-bf0e-49814d56e7ef 2020-06-25 00:49:15.65374 33760 1856 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 949\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.8E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 89902070-f874-4c88-bf0e-49814d56e7ef 2020-06-25 00:49:15.675772 33761 1371 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.46.40 89902070-f874-4c88-bf0e-49814d56e7ef 2020-06-25 00:49:15.697873 33762 1644 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.9E1\n 5 \N 187.149.46.40 89902070-f874-4c88-bf0e-49814d56e7ef 2020-06-25 00:49:15.721054 33763 1857 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1003\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 89902070-f874-4c88-bf0e-49814d56e7ef 2020-06-25 00:49:15.745854 33764 1858 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1010\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 89902070-f874-4c88-bf0e-49814d56e7ef 2020-06-25 00:49:15.771066 33765 1859 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1011\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 89902070-f874-4c88-bf0e-49814d56e7ef 2020-06-25 00:49:15.793601 33766 1860 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1012\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 89902070-f874-4c88-bf0e-49814d56e7ef 2020-06-25 00:49:15.815405 33767 547 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-24\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.04256 33768 1861 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 341\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.063801 33769 807 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.24E2\n- !ruby/object:BigDecimal 18:0.5E2\n 11 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.082408 33770 627 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.101014 33771 107 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.119006 33772 1862 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 302\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.142199 33773 1863 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 300\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.163844 33774 1864 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 643\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.189207 33775 1865 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 645\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.211236 33776 58 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 10 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.229719 33777 1866 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 298\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.249956 33778 77 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.273273 33779 1867 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 294\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.294239 33780 76 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.316931 33781 688 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.338476 33782 539 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.355538 33783 540 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.375992 33784 707 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 17 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.399003 33785 739 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.423173 33786 740 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.443996 33787 741 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.461487 33788 809 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.7E1\n 13 \N 187.149.46.40 5b12c892-2cd2-4bc0-9f10-fd4b7d331b0f 2020-06-25 00:49:28.478996 33789 549 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-24\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.46.40 621b5dad-6be1-4264-8efe-cbe7152a639e 2020-06-25 00:49:42.970919 33790 637 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.46.40 621b5dad-6be1-4264-8efe-cbe7152a639e 2020-06-25 00:49:42.991184 33791 179 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.46.40 621b5dad-6be1-4264-8efe-cbe7152a639e 2020-06-25 00:49:43.009029 33792 1868 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 422\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 621b5dad-6be1-4264-8efe-cbe7152a639e 2020-06-25 00:49:43.029196 33793 175 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.46.40 621b5dad-6be1-4264-8efe-cbe7152a639e 2020-06-25 00:49:43.047604 33794 641 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.46.40 621b5dad-6be1-4264-8efe-cbe7152a639e 2020-06-25 00:49:43.065505 33795 640 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.46.40 621b5dad-6be1-4264-8efe-cbe7152a639e 2020-06-25 00:49:43.082488 33796 866 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.40 621b5dad-6be1-4264-8efe-cbe7152a639e 2020-06-25 00:49:43.099336 33797 1869 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 421\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 621b5dad-6be1-4264-8efe-cbe7152a639e 2020-06-25 00:49:43.119513 33798 161 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 621b5dad-6be1-4264-8efe-cbe7152a639e 2020-06-25 00:49:43.136403 33799 158 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 621b5dad-6be1-4264-8efe-cbe7152a639e 2020-06-25 00:49:43.152776 33800 1870 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1000\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 621b5dad-6be1-4264-8efe-cbe7152a639e 2020-06-25 00:49:43.172776 33801 611 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.46.40 621b5dad-6be1-4264-8efe-cbe7152a639e 2020-06-25 00:49:43.190477 33802 1871 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1005\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 621b5dad-6be1-4264-8efe-cbe7152a639e 2020-06-25 00:49:43.211605 33803 1872 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1004\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 621b5dad-6be1-4264-8efe-cbe7152a639e 2020-06-25 00:49:43.232318 33804 1140 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 187.149.46.40 621b5dad-6be1-4264-8efe-cbe7152a639e 2020-06-25 00:49:43.250759 33805 1873 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 789\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 621b5dad-6be1-4264-8efe-cbe7152a639e 2020-06-25 00:49:43.27121 33806 1874 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 397\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 621b5dad-6be1-4264-8efe-cbe7152a639e 2020-06-25 00:49:43.291738 33807 671 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.46.40 621b5dad-6be1-4264-8efe-cbe7152a639e 2020-06-25 00:49:43.3085 33808 548 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-24\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.305909 33809 685 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.324372 33810 687 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.3423 33811 1875 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 319\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.362924 33812 1876 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 316\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.384875 33813 1877 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1016\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.40763 33814 1158 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.426958 33815 1878 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 798\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.449931 33816 1105 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.468678 33817 1023 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.488452 33818 695 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.506941 33819 1879 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 328\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.528852 33820 687 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.550018 33821 123 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.568966 33822 1880 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 309\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.591148 33823 1881 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 799\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.614648 33824 1385 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.633357 33825 811 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.652629 33826 789 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.67141 33827 1012 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.692016 33828 787 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.712109 33829 810 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.7E1\n 15 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.731221 33830 1882 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 331\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.755261 33831 1883 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 529\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.783107 33832 1884 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 632\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 ed3239bd-1ab6-4691-bbb9-5b4dafe48653 2020-06-25 00:49:56.814246 33833 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-06-21 07:40:02.222149000 Z\n- &1 2020-06-24 21:55:27.188598000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 00:52:55.509675416 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141580\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 220\n- 221\n 443 \N 187.149.46.40 d1fefbcc-801f-4f0f-a743-ec648032b1ce 2020-06-25 00:52:55.516546 33834 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Q1EZRwHwMHz7CCZTiSMN\n- BNvdszsmnZu7wFiGNHcQ\n 444 \N 187.149.46.40 d1fefbcc-801f-4f0f-a743-ec648032b1ce 2020-06-25 00:52:55.529758 33835 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2020-06-24 21:42:29.302459000 Z\n- &1 2020-06-24 22:02:37.713493000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 00:54:00.566786022 Z\nsign_in_count:\n- 76\n- 77\n 154 \N 187.149.46.40 157169fd-1d58-4dc8-b8fc-e6e3e9233f6d 2020-06-25 00:54:00.572975 33836 26 User \N \N 26 User \N update ---\nunique_session_id:\n- 8YP-XitTVdgSyseTosE1\n- WE-kJV5s6T7kxmxHootx\n 155 \N 187.149.46.40 157169fd-1d58-4dc8-b8fc-e6e3e9233f6d 2020-06-25 00:54:00.585397 33837 1446 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 7a1cb03b-4c95-4aff-862e-89c79ade1528 2020-06-25 00:56:07.940098 33838 421 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.46.40 7d25a020-3eea-4225-863b-37483568a9cc 2020-06-25 00:58:07.327533 33839 421 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 5bd32966-4df7-4335-8c6b-a10945e8bebd 2020-06-25 00:58:11.939111 33840 545 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.46.40 60d80f6e-aa7b-4c32-b875-6e428d2c9e79 2020-06-25 01:01:45.869432 33841 545 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 e37c4dae-4d6e-43b7-a382-05cd27564c98 2020-06-25 01:01:50.470105 33842 802 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 12 \N 187.149.46.40 daddce08-b5ca-4674-b6af-01e4a242d866 2020-06-25 01:02:07.146888 33843 802 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.5E1\n 13 \N 187.149.46.40 e4885a48-2e3d-4d8b-b806-2576777a0433 2020-06-25 01:02:11.062674 33844 1139 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 187.149.46.40 1ab428cb-66e1-4e9c-a657-bb916a73addc 2020-06-25 01:02:25.769962 33845 1139 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 187.149.46.40 beedf57f-4c5b-4adb-912e-59037b8fe309 2020-06-25 01:02:29.416491 33846 1011 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 e04aa8c9-bdbc-4830-b299-655d64b48b17 2020-06-25 01:02:43.764063 33847 1011 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 324137eb-1cb6-4a65-822f-82bd0f556af4 2020-06-25 01:02:50.221893 33879 1694 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 c7e041b2-f1bf-44f6-bce0-0972f41b53a3 2020-06-25 01:28:05.015557 33848 554 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-24\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.46.40 d2bc5634-8b01-4c15-9d92-eaeda777aaee 2020-06-25 01:03:08.542436 33849 750 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.46.40 f7df9533-2ef9-469d-9a30-bc42e32f4223 2020-06-25 01:05:52.156669 33850 750 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.46.40 8a979e20-f274-467c-9c4d-e919dc1db366 2020-06-25 01:05:56.405838 33851 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-06-24 21:11:45.486468000 Z\n- &1 2020-06-25 00:48:17.428097000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 01:07:57.800659522 Z\nsign_in_count:\n- 76\n- 77\n 154 \N 187.149.46.40 e2e36278-b120-4730-be63-d7d3e27b0f9a 2020-06-25 01:07:57.80788 33852 25 User \N \N 25 User \N update ---\nunique_session_id:\n- 2_azxvSh43tmPApKZAwo\n- 716yididSjhY22m81zVR\n 155 \N 187.149.46.40 e2e36278-b120-4730-be63-d7d3e27b0f9a 2020-06-25 01:07:57.821932 33853 554 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-24\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.46.40 0dad5eb4-f774-4df6-a25b-2ec6000ab193 2020-06-25 01:08:21.709416 33854 791 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.8E1\n 7 \N 187.149.46.40 0dad5eb4-f774-4df6-a25b-2ec6000ab193 2020-06-25 01:08:21.728243 33855 1598 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.46.40 0dad5eb4-f774-4df6-a25b-2ec6000ab193 2020-06-25 01:08:21.748669 33856 790 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 12 \N 187.149.46.40 0dad5eb4-f774-4df6-a25b-2ec6000ab193 2020-06-25 01:08:21.768111 33857 199 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.46.40 0dad5eb4-f774-4df6-a25b-2ec6000ab193 2020-06-25 01:08:21.786432 33858 1885 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 423\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 0dad5eb4-f774-4df6-a25b-2ec6000ab193 2020-06-25 01:08:21.809594 33859 1058 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.46.40 0dad5eb4-f774-4df6-a25b-2ec6000ab193 2020-06-25 01:08:21.827466 33860 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2020-06-24 22:02:37.713493000 Z\n- &1 2020-06-25 00:54:00.566786000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 01:12:47.564592041 Z\nsign_in_count:\n- 77\n- 78\n 156 \N 187.149.46.40 180180ea-6703-4749-8250-4b1ea7ad3dc2 2020-06-25 01:12:47.598994 33861 26 User \N \N 26 User \N update ---\nunique_session_id:\n- WE-kJV5s6T7kxmxHootx\n- VzkWVyZRxwiJxNsgyNNz\n 157 \N 187.149.46.40 180180ea-6703-4749-8250-4b1ea7ad3dc2 2020-06-25 01:12:47.617778 33862 756 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 187.149.46.40 7a9f421f-9b38-49f8-b0fd-a6ca98159b8f 2020-06-25 01:14:42.178227 33863 756 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.46.40 1ddcf1c8-8fb4-4e00-aa8a-a0a67d4a9470 2020-06-25 01:14:47.549628 33864 555 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-06-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.46.40 96e262dd-afe0-4aee-a7f6-03b4db6244c1 2020-06-25 01:14:48.35272 33865 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2020-06-25 00:54:00.566786000 Z\n- &1 2020-06-25 01:12:47.564592000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 01:15:08.505809642 Z\nsign_in_count:\n- 78\n- 79\n 158 \N 187.149.46.40 11567446-1624-4815-adb0-dc2cd8b5aab8 2020-06-25 01:15:08.511618 33866 26 User \N \N 26 User \N update ---\nunique_session_id:\n- VzkWVyZRxwiJxNsgyNNz\n- X648us_BywkqyHXuExA5\n 159 \N 187.149.46.40 11567446-1624-4815-adb0-dc2cd8b5aab8 2020-06-25 01:15:08.524394 33867 556 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-24\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.46.40 7993fe30-93b2-45e6-b2db-49fe01ac36f6 2020-06-25 01:15:44.508539 33868 1755 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 9e0fcbe7-b41b-492a-84a0-b03acdc9fc52 2020-06-25 01:19:08.246339 33869 1730 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 e3510baa-42bb-4063-a8e3-9d779b5e4ef0 2020-06-25 01:19:34.411488 33870 1814 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.40 a0b113ea-555f-4674-83a7-efd3fcceebc1 2020-06-25 01:19:57.586677 33871 1813 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 df1ba773-7d5e-4142-9e18-178bec65abdd 2020-06-25 01:20:20.576828 33872 1694 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.46.40 ad297a55-23a3-47fb-8490-400ebc65d67a 2020-06-25 01:20:52.972965 33873 1812 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 bd057b66-2c26-4de4-ae02-0a7904db7c03 2020-06-25 01:21:12.477416 33874 557 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-06-24\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.46.40 658f4ea4-3322-4e67-85ac-35718d81f86a 2020-06-25 01:21:21.076833 33875 1332 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.46.40 ddd0cac1-25bd-4b05-b22a-0a1ac66307d8 2020-06-25 01:26:06.329327 33876 1695 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 107ab983-7147-4f79-beb2-a27805d2bf51 2020-06-25 01:26:33.992011 33877 1694 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.46.40 b06cd641-3459-41ed-be30-dc4e1351511e 2020-06-25 01:27:22.057952 33878 1694 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.46.40 37519b3d-9a09-434c-9890-a284441da690 2020-06-25 01:27:53.884258 51817 1565 Product \N \N 4 User \N update --- {}\n 3 El producto BOL-1565 fue modificado. 189.186.132.86 16643ee3-e793-4c0a-a5a3-dc15d4952716 2021-01-22 00:40:30.077082 33880 1340 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 82babe97-5084-4994-9103-f2cd9006df17 2020-06-25 01:28:35.908284 33881 1734 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.46.40 709c08a0-3490-48ea-a0c7-ffc6d783c78c 2020-06-25 01:29:01.975531 33882 1734 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.46.40 4767490a-d671-4829-bd0d-1f653601da6c 2020-06-25 01:29:09.299181 33883 558 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-06-24\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.46.40 753e0695-6db1-4d71-9808-86a7d035a59d 2020-06-25 01:29:12.634609 33884 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-06-25 00:48:17.428097000 Z\n- &1 2020-06-25 01:07:57.800659000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 01:30:11.115309173 Z\nsign_in_count:\n- 77\n- 78\n 156 \N 187.149.46.40 a4039178-1806-4339-aed7-a14cdd4b25b1 2020-06-25 01:30:11.121157 33885 25 User \N \N 25 User \N update ---\nunique_session_id:\n- 716yididSjhY22m81zVR\n- BoMF4zhUGUGEyxSg2xkz\n 157 \N 187.149.46.40 a4039178-1806-4339-aed7-a14cdd4b25b1 2020-06-25 01:30:11.133658 33886 1125 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 18 \N 187.149.46.40 f9bc5948-adc8-4969-bd6e-11df5a5eb3c7 2020-06-25 01:30:18.22429 33887 1412 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 18 \N 187.149.46.40 a4ca3d68-98ac-4830-8c63-de7f40ad2e3c 2020-06-25 01:30:28.417203 33888 556 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-24\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.46.40 4f91f313-adaf-4538-b6a9-1902a56c9ead 2020-06-25 01:30:32.910386 33889 1886 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 629\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 4f91f313-adaf-4538-b6a9-1902a56c9ead 2020-06-25 01:30:32.936134 33890 1514 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.40 b9603345-a02f-4317-a3a7-fad489f886ed 2020-06-25 01:30:39.364825 33891 1514 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 d7e8bebd-480f-4144-889d-c2a2e809eb3f 2020-06-25 01:30:45.99917 33892 1412 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 19 \N 187.149.46.40 491c92ed-9860-4378-a120-4b0c54d3eb37 2020-06-25 01:30:47.036974 33893 559 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de S BY SUO a Almacen central creado. 187.149.46.40 ed9afe30-60e0-4065-b1d5-fff0ef414e7d 2020-06-25 01:30:49.323277 33894 1667 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.46.40 4c317679-f2df-440b-8282-463fd4f1980b 2020-06-25 01:31:41.297919 33895 1810 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 46ca73e4-29d2-4de0-b421-429f20e80d18 2020-06-25 01:31:43.849421 33896 1452 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.46.40 88283d9c-1482-4d70-a9fe-89596719558b 2020-06-25 01:31:54.302074 33897 556 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.46.40 1ddc3996-43ad-4455-8d17-4c703f765a5d 2020-06-25 01:32:02.010324 33898 399 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 491dd753-1e60-4148-af91-9242ede50a67 2020-06-25 01:32:12.931082 33899 1757 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 e6d363ca-a51e-4b9b-822b-136e171c4564 2020-06-25 01:32:21.218535 33900 804 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 13 \N 187.149.46.40 3d478c02-c179-4117-92e6-5949c95ca7d3 2020-06-25 01:32:26.499924 33901 560 Transfer \N \N 25 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-06-24\nuser_id: 25\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.46.40 8c0599f1-ed04-4ba9-87d8-cfc66038cf64 2020-06-25 01:32:29.441352 33902 1670 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.46.40 8ab296b4-5316-4f8e-8e9b-c513c6f2e672 2020-06-25 01:32:38.559022 33903 1671 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.46.40 c5256a23-154d-4482-9f72-8244bc0c1afd 2020-06-25 01:32:48.366881 33904 1682 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.46.40 c16e713e-bae2-4593-8a02-8050fdb70c35 2020-06-25 01:32:55.570011 33905 1667 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 e3e899d4-4fb5-42bb-b318-a907aba8b82b 2020-06-25 01:33:01.381927 33906 1452 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 f743b479-c6df-422c-8cab-81e70bf5abbf 2020-06-25 01:33:02.920735 33907 556 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 f3843635-f42d-4d6c-b571-e73ed5993de0 2020-06-25 01:33:04.396548 33908 804 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 14 \N 187.149.46.40 4b87d236-722e-4295-ae4c-b4206428dc0c 2020-06-25 01:33:07.312876 33909 1670 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 6832611d-fd4d-4a64-a34a-b4e2a5f1f331 2020-06-25 01:33:09.364589 33910 1671 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 c38057ec-3d1d-46d6-b5c4-b930a8964e49 2020-06-25 01:33:11.442162 33911 1682 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 d7424fdd-3ec1-4737-a136-144a0d160f04 2020-06-25 01:33:13.869978 33912 561 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-06-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.46.40 de49dcd0-a8ab-4453-8c1a-f457b92b3028 2020-06-25 01:33:14.508892 33913 26 User \N \N 26 User \N update ---\nlast_sign_in_at:\n- 2020-06-25 01:12:47.564592000 Z\n- &1 2020-06-25 01:15:08.505809000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 01:33:56.200649302 Z\nsign_in_count:\n- 79\n- 80\n 160 \N 187.149.46.40 b3a4cf5b-8ba4-4467-afda-5370b7089e00 2020-06-25 01:33:56.206107 33914 26 User \N \N 26 User \N update ---\nunique_session_id:\n- X648us_BywkqyHXuExA5\n- RE9qeeo-ayhTorMTMnAP\n 161 \N 187.149.46.40 b3a4cf5b-8ba4-4467-afda-5370b7089e00 2020-06-25 01:33:56.220415 33915 1737 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 22b74345-9a02-4e94-b36b-87a57d24554b 2020-06-25 01:34:34.168091 33916 562 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-06-24\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.46.40 f8f5f8ac-af75-4853-8cad-8ff4991d9762 2020-06-25 01:34:40.088714 33917 365 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.41E2\n- !ruby/object:BigDecimal 18:0.4E2\n 27 \N 187.149.46.40 aa0cf0e4-80be-4b88-88fc-0ce7a3d0f7fa 2020-06-25 01:36:07.647918 33918 365 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E2\n- !ruby/object:BigDecimal 18:0.2E1\n 28 \N 187.149.46.40 5b6e03f2-7958-402c-b56d-93d64fbbb7f8 2020-06-25 01:36:11.381841 33919 563 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.46.40 8fabb076-fbee-4a71-96be-9b42e42673d7 2020-06-25 01:36:12.50372 33920 1342 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.40 fd59a0ad-c614-4afd-8066-f031d108e6c5 2020-06-25 01:36:32.819918 33921 1342 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 0b101dbc-2151-405c-be05-2b250bb30e35 2020-06-25 01:36:39.758175 33922 1337 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 9f5f7ba3-eebc-423d-ba29-e3406713ee89 2020-06-25 01:36:45.399671 33923 1673 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.46.40 c105f33f-12ba-4eff-987c-0e7deaee7d60 2020-06-25 01:37:03.151791 33924 1673 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 9b2e3dca-e09a-4f2d-a53f-7d488f920dee 2020-06-25 01:37:05.967051 33925 564 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-06-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.46.40 d5c749c6-7e58-447e-b1f8-5a71dea9c3f9 2020-06-25 01:37:06.88099 33926 1337 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 5808f09f-67b2-4100-9aec-42c55f81c997 2020-06-25 01:37:21.35038 33927 1334 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 5c4d7c94-deca-4840-a363-2216145d3394 2020-06-25 01:37:34.730687 33928 1696 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 83049d9c-fa2b-41ba-81e9-6e6bd724a8f3 2020-06-25 01:37:45.949922 33929 1735 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 afe01abc-2d94-40b7-ab50-7137f7f3aa9d 2020-06-25 01:37:54.158784 33930 1736 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 97ac6242-4ea5-4930-ba02-d46ae131b625 2020-06-25 01:37:59.082333 33931 1738 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 f23fc902-3cf9-48dd-8873-60918dd2b6e7 2020-06-25 01:38:13.049769 33932 1730 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 5b08a6de-e528-40b2-bebd-a9276ae3b8d1 2020-06-25 01:38:17.111659 33933 1763 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 1fda8755-342e-4ce3-88cc-239e5b035ce4 2020-06-25 01:38:26.198297 33934 1812 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 014d7a52-7ac2-4eb1-b4a4-65b53a35b985 2020-06-25 01:38:45.340959 33935 1786 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 80c6ff55-fb01-47b3-93f4-53c33b2c4d04 2020-06-25 01:38:51.213428 33936 565 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-24\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.46.40 6fd567df-cbec-4379-9e69-8a7c227d03dd 2020-06-25 01:39:02.830292 33937 1330 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 a5481063-5cc6-40a2-86d9-fa03b7883d9f 2020-06-25 01:39:27.406119 33938 1758 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 07f4eac0-6360-4feb-998f-8485f7ab1246 2020-06-25 01:39:48.766145 33939 1814 AvailableProduct \N \N 26 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 2a344d51-28d9-4953-9377-f643f918a399 2020-06-25 01:40:03.058962 33940 566 Transfer \N \N 26 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-24\nuser_id: 26\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.46.40 d9f3f600-1fac-4ab9-8347-5e2565f97325 2020-06-25 01:40:11.92894 33941 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-06-25 01:07:57.800659000 Z\n- &1 2020-06-25 01:30:11.115309000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 01:42:00.902432520 Z\nsign_in_count:\n- 78\n- 79\n 158 \N 187.149.46.40 350d1652-7c39-4f8d-b49a-9d2cc4bc7996 2020-06-25 01:42:00.908049 33942 25 User \N \N 25 User \N update ---\nunique_session_id:\n- BoMF4zhUGUGEyxSg2xkz\n- YRsrvymgzGGGtMejHNRq\n 159 \N 187.149.46.40 350d1652-7c39-4f8d-b49a-9d2cc4bc7996 2020-06-25 01:42:00.92921 33943 566 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-24\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.46.40 b40db33e-f34d-44df-b4d3-548502b3e190 2020-06-25 01:43:00.406966 33944 1809 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.46.40 b40db33e-f34d-44df-b4d3-548502b3e190 2020-06-25 01:43:00.427032 33945 1887 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1092\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 b40db33e-f34d-44df-b4d3-548502b3e190 2020-06-25 01:43:00.44904 33946 1306 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.46.40 b40db33e-f34d-44df-b4d3-548502b3e190 2020-06-25 01:43:00.466697 33947 565 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-24\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.46.40 9b2343ec-84c3-40d6-99ed-0f941dac1bb1 2020-06-25 01:43:18.139097 33948 1888 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1095\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 9b2343ec-84c3-40d6-99ed-0f941dac1bb1 2020-06-25 01:43:18.159641 33949 1811 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.46.40 9b2343ec-84c3-40d6-99ed-0f941dac1bb1 2020-06-25 01:43:18.177862 33950 1762 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 9b2343ec-84c3-40d6-99ed-0f941dac1bb1 2020-06-25 01:43:18.195115 33951 1889 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1067\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 9b2343ec-84c3-40d6-99ed-0f941dac1bb1 2020-06-25 01:43:18.216895 33952 1761 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.46.40 9b2343ec-84c3-40d6-99ed-0f941dac1bb1 2020-06-25 01:43:18.235194 33953 1760 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.46.40 9b2343ec-84c3-40d6-99ed-0f941dac1bb1 2020-06-25 01:43:18.253401 33954 1890 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1032\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 9b2343ec-84c3-40d6-99ed-0f941dac1bb1 2020-06-25 01:43:18.275059 33955 1891 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1028\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 9b2343ec-84c3-40d6-99ed-0f941dac1bb1 2020-06-25 01:43:18.296338 33956 1312 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 9b2343ec-84c3-40d6-99ed-0f941dac1bb1 2020-06-25 01:43:18.347525 33957 1323 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.46.40 9b2343ec-84c3-40d6-99ed-0f941dac1bb1 2020-06-25 01:43:18.365883 33958 567 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-06-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.46.40 bc0fcd7f-31b9-49ae-b75f-c34fad017080 2020-06-25 01:48:24.322337 33959 1652 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.46.40 54b64813-308a-4ef4-be5d-8f7435edef13 2020-06-25 01:48:43.800879 33960 1652 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 eade0204-15cd-4fd3-b03a-aa2b1a1b8fd7 2020-06-25 01:48:50.075012 33961 568 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.46.40 ceed3504-2150-4fdf-838a-70cd4f64b1b2 2020-06-25 01:48:52.693776 33962 1672 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.46.40 0d8a31f3-4af1-40f6-a4e5-ca8e57cb6261 2020-06-25 01:49:18.673759 33963 1648 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.46.40 649ecde7-750e-43a9-a1de-22a44d84274b 2020-06-25 01:49:26.087241 33964 1672 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 8961ed96-f69c-43b8-b0f1-054389819cdc 2020-06-25 01:49:30.254498 33965 1648 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 82b866ab-6d15-4c78-a5b4-78ea78506be6 2020-06-25 01:49:32.142967 33966 569 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-06-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.46.40 3693b2c7-170b-4326-b0b4-d7bd50be910c 2020-06-25 01:49:33.244561 33967 1450 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.46.40 0aacf03e-f5ba-427b-adae-1fc127059713 2020-06-25 01:49:55.815758 33968 1516 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.46.40 436654f1-600b-4f13-a20a-b4dba960d696 2020-06-25 01:50:02.884843 33969 1459 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.40 0dbfef9f-f76d-48da-bbe8-736fcbaf17f6 2020-06-25 01:50:14.156944 33970 1454 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.46.40 cdf1c0fb-b207-4cba-a94e-4aa4bdd0c5c5 2020-06-25 01:50:25.210068 33971 1414 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.46.40 077b2a6c-6c86-4f64-856a-e130478e1329 2020-06-25 01:50:34.771506 33972 1450 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 48ad84e5-e991-4cbf-8680-ac5ea0947b0a 2020-06-25 01:50:43.727193 33973 1516 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 873cc90c-c99c-415c-898b-5af21b87fcb5 2020-06-25 01:50:45.564624 33974 1459 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 9c4b5c0d-0df4-4f16-9065-27ea535c0687 2020-06-25 01:50:48.543853 33975 1454 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 496b0bc4-ea23-4f04-9ef6-2c222387f62f 2020-06-25 01:50:50.877213 33976 1414 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 86260276-3aa4-457a-bbe7-c65f437e30e3 2020-06-25 01:50:53.448641 33977 570 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de S BY SUO a Almacen central creado. 187.149.46.40 caebc032-bf0d-4c9b-ab7b-f8a244c164da 2020-06-25 01:50:54.273516 33978 1377 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.46.40 a428b395-5ae6-4da5-97b3-7ee1b4487c19 2020-06-25 01:54:05.132472 33979 1258 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.46.40 f74236b1-16ed-49ed-8de5-a6aa08c49333 2020-06-25 01:54:14.659621 33980 1377 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 ea23cf14-bbcf-4fbb-bc3a-ef68517bced0 2020-06-25 01:54:17.999081 33981 1258 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 b94fc684-4a9b-4461-b6bb-539b0565f904 2020-06-25 01:54:19.535106 33982 571 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de S BY SUO a Almacen central creado. 187.149.46.40 7ca15564-e51c-4bfb-8389-50fc305afe4c 2020-06-25 01:54:20.603148 33983 987 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.46.40 3eb2250c-b3c7-45bf-81b6-70a69a37fb43 2020-06-25 01:54:44.632876 33984 495 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 13 \N 187.149.46.40 aa12a53e-ab2e-4b1d-aa09-ef1e0cf75f94 2020-06-25 01:54:55.18243 33985 987 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 6ef90433-d647-4fa4-ad3f-35406273b29c 2020-06-25 01:54:58.307747 33986 495 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 14 \N 187.149.46.40 2c51fcaf-d460-447a-aac4-1ca70b55bb62 2020-06-25 01:55:00.53549 33987 572 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-06-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.46.40 2fbbc4d3-9201-4e08-a392-9f0d4e2bfbcd 2020-06-25 01:55:01.845971 33988 1686 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.46.40 f40ce41e-c0c0-4cca-8d48-94e40e6c8952 2020-06-25 01:55:22.390597 33989 1686 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 ac3493ff-91cb-4a3f-ab3a-9563581e8ca8 2020-06-25 01:55:25.907548 33990 573 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-06-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.46.40 735b2ba8-46fb-4543-abda-bd63140264e0 2020-06-25 01:55:37.299338 33991 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-24 19:26:19.699803000 Z\n- &1 2020-06-24 20:25:54.849170000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 18:23:25.116016915 Z\nsign_in_count:\n- 1578\n- 1579\n 3158 \N 187.149.46.40 fd2f74ce-509e-49f3-a0af-5992d9ca59b0 2020-06-25 18:23:25.146679 33992 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tXsouVYkABwTY5T8hSvX\n- 4pKATBP8B-fq5Lz3NJaJ\n 3159 \N 187.149.46.40 fd2f74ce-509e-49f3-a0af-5992d9ca59b0 2020-06-25 18:23:25.176309 33993 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-06-11 18:24:09.992004000 Z\n- &1 2020-06-24 15:30:29.008402000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 18:24:20.634905094 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537667\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537227\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537227\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 142\n- 143\n 289 \N 187.149.46.40 1d2df13b-de68-436d-9857-7195b5bbff73 2020-06-25 18:24:20.644154 33994 8 User \N \N 8 User \N update ---\nunique_session_id:\n- jJJfuneRATYAwxQNJjkS\n- nWMfiaH2J3V_ULobRBX6\n 290 \N 187.149.46.40 1d2df13b-de68-436d-9857-7195b5bbff73 2020-06-25 18:24:20.666506 33995 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-06-24 15:30:29.008402000 Z\n- &1 2020-06-25 18:24:20.634905000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 18:24:25.465435818 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537227\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 143\n- 144\n 291 \N 187.149.46.40 c3b4df2b-8fab-4413-ac48-eb8f21dc8b91 2020-06-25 18:24:25.471716 33996 8 User \N \N 8 User \N update ---\nunique_session_id:\n- nWMfiaH2J3V_ULobRBX6\n- fT5mmRykne3i8o_MdYyS\n 292 \N 187.149.46.40 c3b4df2b-8fab-4413-ac48-eb8f21dc8b91 2020-06-25 18:24:25.486623 33997 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-24 20:25:54.849170000 Z\n- &1 2020-06-25 18:23:25.116016000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 18:37:10.679615934 Z\nsign_in_count:\n- 1579\n- 1580\n 3160 \N 187.149.46.40 270889d9-afbe-46ca-b0ee-093eafb23de3 2020-06-25 18:37:10.68488 33998 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4pKATBP8B-fq5Lz3NJaJ\n- PA5f_8Gyy3suWJzo9GSt\n 3161 \N 187.149.46.40 270889d9-afbe-46ca-b0ee-093eafb23de3 2020-06-25 18:37:10.699208 33999 2473 Sale \N \N 8 User \N create ---\ncustomer_id: 36\nuser_id: 8\nopen_cash_register_id: 932\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.8E3\nstatus: 0\ndate_sale: 2020-06-25\nsaletype: 0\nseller_id: 26\nsale_code: PV2-V-917\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 1014f093-41fb-4e9c-b3e1-18933f6187af 2020-06-25 18:40:12.336587 34000 1239 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 1014f093-41fb-4e9c-b3e1-18933f6187af 2020-06-25 18:40:12.365303 34001 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-06-25 01:30:11.115309000 Z\n- &1 2020-06-25 01:42:00.902432000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 18:48:41.427345452 Z\nsign_in_count:\n- 79\n- 80\n 160 \N 187.149.46.40 714cf76e-a953-41b1-a48b-dc73c7d93680 2020-06-25 18:48:41.432706 34002 25 User \N \N 25 User \N update ---\nunique_session_id:\n- YRsrvymgzGGGtMejHNRq\n- AmjUbQs5BLh6v_ysj_vj\n 161 \N 187.149.46.40 714cf76e-a953-41b1-a48b-dc73c7d93680 2020-06-25 18:48:41.445447 34003 563 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-25\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.46.40 43d4918d-6d48-4fff-aede-00dba0496014 2020-06-25 18:49:54.518946 34004 735 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.39E2\n 3 \N 187.149.46.40 43d4918d-6d48-4fff-aede-00dba0496014 2020-06-25 18:49:54.536723 34005 2474 Sale \N \N 8 User \N create ---\ncustomer_id: 1\nuser_id: 8\nopen_cash_register_id: 932\namount: !ruby/object:BigDecimal 18:0.140159E4\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1498E4\nstatus: 0\ndate_sale: 2020-06-25\nsaletype: 1\nseller_id: 26\nsale_code: PV2-V-918\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 5a04b967-02df-419c-9039-d63f4cad501c 2020-06-25 18:56:00.063547 34006 517 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 15 \N 187.149.46.40 5a04b967-02df-419c-9039-d63f4cad501c 2020-06-25 18:56:00.102342 34007 1817 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 5a04b967-02df-419c-9039-d63f4cad501c 2020-06-25 18:56:00.131601 34008 2474 Sale \N \N 8 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV2-V-918 cancelada. 187.149.46.40 fb695381-5ad9-42ef-89da-02aab6879109 2020-06-25 18:56:05.423065 34009 1817 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.46.40 fb695381-5ad9-42ef-89da-02aab6879109 2020-06-25 18:56:05.455117 34010 517 AvailableProduct \N \N 8 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 16 \N 187.149.46.40 fb695381-5ad9-42ef-89da-02aab6879109 2020-06-25 18:56:05.485857 34011 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-25 18:23:25.116016000 Z\n- &1 2020-06-25 18:37:10.679615000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 18:57:15.362272561 Z\nsign_in_count:\n- 1580\n- 1581\n 3162 \N 187.149.46.40 88aecb91-58c9-4a88-b567-69b293964950 2020-06-25 18:57:15.368132 34012 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PA5f_8Gyy3suWJzo9GSt\n- cD4iwK6YvCbF_xaUrewK\n 3163 \N 187.149.46.40 88aecb91-58c9-4a88-b567-69b293964950 2020-06-25 18:57:15.384938 34013 1574 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 50d57d5d-d936-4765-be96-0ce4bdde44e9 2020-06-25 19:02:55.170894 34014 1574 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:-0.1E1\n 3 \N 187.149.46.40 7536d631-fc05-4f6e-b0da-6333f24bd562 2020-06-25 19:03:07.131205 34015 1758 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 44a4f59a-6971-4d64-b472-970340aaa18c 2020-06-25 19:03:49.926501 34016 713 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 9c8634e0-ec3f-4e81-9ab0-6a4a6b916191 2020-06-25 19:04:06.21972 34017 677 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 d0b0eb30-b135-4bd0-8179-8b4e43c1914a 2020-06-25 19:04:14.492889 34018 1139 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 187.149.46.40 561dbddb-c2fb-451b-b479-3d224758bfab 2020-06-25 19:04:25.612429 34019 574 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.46.40 6cb4c670-36e0-4101-87bb-770ea26717ed 2020-06-25 19:04:29.037873 34020 22 User \N \N 22 User \N update ---\nlast_sign_in_at:\n- 2020-03-01 01:04:14.298937000 Z\n- &1 2020-06-24 21:53:35.966680000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 19:04:57.789633542 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 12\n- 13\n 26 \N 187.149.46.40 13916396-c215-4b2e-98d6-08cd084c555a 2020-06-25 19:04:57.79676 34021 22 User \N \N 22 User \N update ---\nunique_session_id:\n- 6h2WeoBfxbDn5XNrBwvo\n- 7kHb-_PesBVWgLcEoe4M\n 27 \N 187.149.46.40 13916396-c215-4b2e-98d6-08cd084c555a 2020-06-25 19:04:57.843927 34022 571 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-25\n 2 Se dio entrada a traspaso de S BY SUO a Almacen central 187.149.46.40 850eba6d-d073-48cf-a5b0-800a6132bf78 2020-06-25 19:05:25.890817 34023 570 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-25\n 2 Se dio entrada a traspaso de S BY SUO a Almacen central 187.149.46.40 2ba5e739-1745-4ac5-81b7-c55d96ed733f 2020-06-25 19:05:41.350927 34024 559 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-25\n 2 Se dio entrada a traspaso de S BY SUO a Almacen central 187.149.46.40 50ddc7b5-9d10-40d2-821e-8ac84fdd61af 2020-06-25 19:05:57.39485 34025 575 Transfer \N \N 22 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-06-25\nuser_id: 22\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.46.40 dfa04b2d-787e-4b86-9ff6-78b25e72721e 2020-06-25 19:07:14.899686 34026 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-06-25 01:42:00.902432000 Z\n- &1 2020-06-25 18:48:41.427345000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 19:07:36.060081899 Z\nsign_in_count:\n- 80\n- 81\n 162 \N 187.149.46.40 c04d53da-1c01-4272-9ff5-f87b07259734 2020-06-25 19:07:36.065677 34027 25 User \N \N 25 User \N update ---\nunique_session_id:\n- AmjUbQs5BLh6v_ysj_vj\n- wYEwdiAxJqkpKYPzCjco\n 163 \N 187.149.46.40 c04d53da-1c01-4272-9ff5-f87b07259734 2020-06-25 19:07:36.078851 34028 575 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-25\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.46.40 45de548f-e0f4-44b7-8720-4888b8b545fb 2020-06-25 19:08:01.411604 34029 196 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.40 45de548f-e0f4-44b7-8720-4888b8b545fb 2020-06-25 19:08:01.430823 34030 1337 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 252590bf-a610-4b7f-b29e-d624c68e3471 2020-06-25 19:08:11.571613 34031 576 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-06-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 187.149.46.40 e3ffd54c-fbc9-4854-a575-89128e7fcfbd 2020-06-25 19:08:13.86535 34032 574 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-25\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.46.40 08805dd4-1c87-454f-9321-57294ea28ba1 2020-06-25 19:08:27.24283 34033 1598 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.46.40 08805dd4-1c87-454f-9321-57294ea28ba1 2020-06-25 19:08:27.261748 34034 158 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.46.40 08805dd4-1c87-454f-9321-57294ea28ba1 2020-06-25 19:08:27.280671 34035 161 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.46.40 08805dd4-1c87-454f-9321-57294ea28ba1 2020-06-25 19:08:27.298809 34036 1887 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.46.40 08805dd4-1c87-454f-9321-57294ea28ba1 2020-06-25 19:08:27.315742 34037 79 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.40 08805dd4-1c87-454f-9321-57294ea28ba1 2020-06-25 19:08:27.334418 34038 79 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.46.40 08805dd4-1c87-454f-9321-57294ea28ba1 2020-06-25 19:08:27.353472 34039 568 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-25\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.46.40 de5629f8-b28e-437a-bace-1e9cddf8bd95 2020-06-25 19:08:38.656435 34040 1892 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1001\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 de5629f8-b28e-437a-bace-1e9cddf8bd95 2020-06-25 19:08:38.677836 34041 567 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-25\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.46.40 21c84150-e3b7-4385-8d39-43ae7f533970 2020-06-25 19:08:53.201049 34042 522 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 187.149.46.40 21c84150-e3b7-4385-8d39-43ae7f533970 2020-06-25 19:08:53.217431 34043 428 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.46.40 77a65bde-960e-44ec-9c9d-89af504e6fbc 2020-06-25 19:12:01.280563 34044 577 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.46.40 9c8e423a-eb1b-4179-a5c7-4cc9e769e127 2020-06-25 19:12:04.388669 34045 279 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.46.40 4dfbc4bc-25d4-44ee-9bdc-cff6fadaf2fb 2020-06-25 19:20:37.681389 34046 295 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 73fda721-26a2-4ae3-bee9-e8a16f47cf22 2020-06-25 19:20:45.120722 34047 299 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 a44f61f9-d58d-4db3-8500-192edb199d04 2020-06-25 19:20:55.994864 34048 596 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.46.40 23b575af-d9d0-491a-8242-24897984e4d0 2020-06-25 19:21:11.291867 34049 392 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.46.40 e65afe7c-8917-4e14-b772-1de459ac670e 2020-06-25 19:21:30.423103 34050 279 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 a609add9-f772-4e36-967b-bf6632aa17b5 2020-06-25 19:21:34.811006 34051 596 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.46.40 7e75fe07-1c52-49ff-8e41-bc59e84b0ba5 2020-06-25 19:21:37.45879 34052 578 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.46.40 66ed7b78-5d3a-4c30-bcb3-1405695ad503 2020-06-25 19:22:03.076818 34053 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-25 18:37:10.679615000 Z\n- &1 2020-06-25 18:57:15.362272000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 19:22:16.804060412 Z\nsign_in_count:\n- 1581\n- 1582\n 3164 \N 187.149.46.40 4e3f2832-4800-4937-bd9d-cabff9b7a71b 2020-06-25 19:22:16.809719 34054 4 User \N \N 4 User \N update ---\nunique_session_id:\n- cD4iwK6YvCbF_xaUrewK\n- q56zfd8yx18BxAK1WBfK\n 3165 \N 187.149.46.40 4e3f2832-4800-4937-bd9d-cabff9b7a71b 2020-06-25 19:22:16.824867 34055 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-25 18:57:15.362272000 Z\n- &1 2020-06-25 19:22:16.804060000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 19:22:55.132702649 Z\nsign_in_count:\n- 1582\n- 1583\n 3166 \N 187.149.46.40 e9ce3c60-bf04-47f1-8cf5-3046a9f059ac 2020-06-25 19:22:55.138595 34056 4 User \N \N 4 User \N update ---\nunique_session_id:\n- q56zfd8yx18BxAK1WBfK\n- s36zFheS7Wbv3zKxW6XW\n 3167 \N 187.149.46.40 e9ce3c60-bf04-47f1-8cf5-3046a9f059ac 2020-06-25 19:22:55.153247 34057 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-06-25 18:48:41.427345000 Z\n- &1 2020-06-25 19:07:36.060081000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 19:23:25.351197730 Z\nsign_in_count:\n- 81\n- 82\n 164 \N 187.149.46.40 5e1ae437-781e-4b72-bda2-5c8fbbaf08c7 2020-06-25 19:23:25.35795 34058 25 User \N \N 25 User \N update ---\nunique_session_id:\n- wYEwdiAxJqkpKYPzCjco\n- m5LJxZjKCxFbYru7o6tb\n 165 \N 187.149.46.40 5e1ae437-781e-4b72-bda2-5c8fbbaf08c7 2020-06-25 19:23:25.373363 34059 1550 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 2eb5388b-6a7a-4a14-aba9-7adf762167c5 2020-06-25 19:24:46.38406 34060 579 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de S BY SUO a Almacen central creado. 187.149.46.40 cb867add-4cb1-4f82-a115-e1242872d3d8 2020-06-25 19:25:19.255977 34061 1621 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.46.40 a21c49d5-9c53-41dc-bf72-34c480d4d424 2020-06-25 19:27:49.910825 34062 580 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.46.40 a7a73bad-5204-46c8-ba52-14077777c868 2020-06-25 19:27:53.972458 34063 487 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 21 \N 187.149.46.40 fe6cefdd-f369-40c5-99ff-dd364a6b6754 2020-06-25 19:30:31.477534 34064 487 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.0\n 22 \N 187.149.46.40 11264f32-8b46-4bd7-972c-d834c0aa93fb 2020-06-25 19:30:34.658452 34065 581 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.46.40 97a16408-8a6d-4c43-bfd8-bd14b7f37bc4 2020-06-25 19:30:38.033756 34066 805 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.19E2\n- !ruby/object:BigDecimal 18:0.18E2\n 8 \N 187.149.46.40 d9188db5-6946-40ec-a3a8-a5cd3b248413 2020-06-25 19:32:43.476 34067 805 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.18E2\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.46.40 1fd99688-c97c-46c3-ab7c-decce5b75367 2020-06-25 19:32:47.076156 34068 582 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.46.40 2b1361d4-405f-4c6c-b051-8fed8d3bdec8 2020-06-25 19:32:47.888972 34069 582 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-25\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.46.40 d9a20f5a-753f-4cd7-96b6-3084e1e09b0f 2020-06-25 19:40:06.47367 34070 786 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.24E2\n 19 \N 187.149.46.40 d9a20f5a-753f-4cd7-96b6-3084e1e09b0f 2020-06-25 19:40:06.490544 34071 581 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-25\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.46.40 79c20c02-5626-4b35-9102-3abaa1600cca 2020-06-25 19:40:21.127361 34072 486 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.14E2\n 28 \N 187.149.46.40 79c20c02-5626-4b35-9102-3abaa1600cca 2020-06-25 19:40:21.146689 34073 580 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-25\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.46.40 40c72c86-9c48-45bd-9df2-76d0768e2fc9 2020-06-25 19:41:00.038976 34074 1893 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 644\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 40c72c86-9c48-45bd-9df2-76d0768e2fc9 2020-06-25 19:41:00.057793 34075 578 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-25\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.46.40 3bcf37d8-d216-469b-aa8c-c250f7ee0a83 2020-06-25 19:41:24.91154 34076 1894 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 394\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 3bcf37d8-d216-469b-aa8c-c250f7ee0a83 2020-06-25 19:41:24.940179 34077 535 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.46.40 3bcf37d8-d216-469b-aa8c-c250f7ee0a83 2020-06-25 19:41:24.968269 34078 1895 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 301\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 3bcf37d8-d216-469b-aa8c-c250f7ee0a83 2020-06-25 19:41:24.990166 34079 1896 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 297\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 3bcf37d8-d216-469b-aa8c-c250f7ee0a83 2020-06-25 19:41:25.042057 34080 1897 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 281\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 3bcf37d8-d216-469b-aa8c-c250f7ee0a83 2020-06-25 19:41:25.065216 34081 577 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-25\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.46.40 9e53af98-e8ee-4d3e-a592-227ad8226bc7 2020-06-25 19:41:47.275504 34082 1898 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 430\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 9e53af98-e8ee-4d3e-a592-227ad8226bc7 2020-06-25 19:41:47.296149 34083 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-06-24 20:27:56.556622000 Z\n- &1 2020-06-24 20:32:44.387916000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 19:59:24.758959075 Z\nsign_in_count:\n- 126\n- 127\n 254 \N 187.149.46.40 22ee5991-63cd-4f7f-aee6-a488b9e19df8 2020-06-25 19:59:24.764517 34084 9 User \N \N 9 User \N update ---\nunique_session_id:\n- CUhAnzGU_XRSFzsGnrJS\n- nxyKvzZjvGx7hYbmjLrc\n 255 \N 187.149.46.40 22ee5991-63cd-4f7f-aee6-a488b9e19df8 2020-06-25 19:59:24.777992 34085 2475 Sale \N \N 9 User \N create ---\ncustomer_id: 275\nuser_id: 9\nopen_cash_register_id: 933\namount: !ruby/object:BigDecimal 18:0.274917E4\ntax: !ruby/object:BigDecimal 18:0.27684E3\ndiscount: !ruby/object:BigDecimal 18:0.1019E4\ntotal: !ruby/object:BigDecimal 18:0.200701E4\nstatus: 0\ndate_sale: 2020-06-25\nsaletype: 0\nseller_id: 25\nsale_code: PV1-V-1204\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 ae70d490-9ee9-4b63-9545-93e9fe78d4ca 2020-06-25 20:02:46.038941 34086 117 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.40 ae70d490-9ee9-4b63-9545-93e9fe78d4ca 2020-06-25 20:02:46.068768 34087 86 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 ae70d490-9ee9-4b63-9545-93e9fe78d4ca 2020-06-25 20:02:46.09472 34088 227 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 ae70d490-9ee9-4b63-9545-93e9fe78d4ca 2020-06-25 20:02:46.121106 34089 687 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.46.40 ae70d490-9ee9-4b63-9545-93e9fe78d4ca 2020-06-25 20:02:46.146743 34090 87 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 ae70d490-9ee9-4b63-9545-93e9fe78d4ca 2020-06-25 20:02:46.189384 34091 2476 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 933\namount: !ruby/object:BigDecimal 18:0.1967E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1967E4\nstatus: 0\ndate_sale: 2020-06-25\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1205\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 f72bdf6d-22da-4716-addd-84b84daadd85 2020-06-25 20:04:07.230556 34092 739 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.46.40 f72bdf6d-22da-4716-addd-84b84daadd85 2020-06-25 20:04:07.255638 34093 1852 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.40 f72bdf6d-22da-4716-addd-84b84daadd85 2020-06-25 20:04:07.279462 34094 2476 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.46.40 bf5bff2f-e993-4943-8fbd-0728c275491e 2020-06-25 20:04:20.636043 34095 3351 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1967E4\nmove_type: '1'\nsale_id: 2476\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1205\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4552'\n 1 movimiento de efectivo por venta con folio PV1-V-1205 187.149.46.40 bf5bff2f-e993-4943-8fbd-0728c275491e 2020-06-25 20:04:20.662075 34096 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-25 19:22:16.804060000 Z\n- &1 2020-06-25 19:22:55.132702000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 20:07:42.460510321 Z\nsign_in_count:\n- 1583\n- 1584\n 3168 \N 187.149.46.40 647e9e12-e808-4cd9-930a-66ea7ac999a5 2020-06-25 20:07:42.466496 34097 4 User \N \N 4 User \N update ---\nunique_session_id:\n- s36zFheS7Wbv3zKxW6XW\n- URGTtGg6GESU4qJdjVGB\n 3169 \N 187.149.46.40 647e9e12-e808-4cd9-930a-66ea7ac999a5 2020-06-25 20:07:42.481943 34098 1600 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 e6176eaf-762d-4ce4-bfaf-bc0978550867 2020-06-25 20:23:31.400992 34099 1601 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 e616adc4-4bf9-473c-b702-14acec0fe49c 2020-06-25 20:23:38.490782 34100 1057 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 83a90bae-400c-4e50-a3e4-c1d009a75f87 2020-06-25 20:23:49.401351 34101 1059 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 435cd013-cd6f-4d87-b052-d8cef507045f 2020-06-25 20:23:59.518648 34102 1072 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 ce884031-7884-4a77-8908-75af66d4de5d 2020-06-25 20:24:12.960169 34103 583 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-06-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO a Almacen central creado. 187.149.46.40 e4f796a3-b750-42e9-855f-4c844cfdd526 2020-06-25 20:24:17.956898 34104 1892 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.46.40 4352c0a5-0eb4-4f2c-ab5f-15f45913fed7 2020-06-25 20:35:57.488031 34105 1690 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.46.40 246566d9-3293-4494-8590-b1b733a00741 2020-06-25 20:36:19.370843 34106 1632 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.46.40 cc54624f-6eaf-43f6-bbf2-e47fc8c7e824 2020-06-25 20:36:33.952075 34107 1892 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 04af5283-0103-43bb-957b-eaf17dcd72d5 2020-06-25 20:36:41.18405 34108 1690 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 c1813019-a4a1-4283-94a9-b999c4d087f5 2020-06-25 20:36:45.716456 34109 1632 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.46.40 a9dca808-035f-40a7-8bde-ed472e6d88a9 2020-06-25 20:36:55.865322 34110 584 Transfer \N \N 25 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-06-25\nuser_id: 25\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.46.40 804f32a3-0123-44d3-8746-0996c061aa91 2020-06-25 20:37:05.195826 34111 1369 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 187.149.46.40 f964b80e-ac45-41ea-89d5-20e3c02a3dec 2020-06-25 20:48:32.46501 34112 1297 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 17 \N 187.149.46.40 7ddd08af-61c5-4b35-a375-d1ea691771c8 2020-06-25 20:48:41.573291 34113 1241 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 11 \N 187.149.46.40 bb67df0f-fc12-4a81-97ad-5c0a5854b0b9 2020-06-25 20:48:50.358147 34114 1478 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.46.40 1c301a38-da95-49a7-8841-ad2653ee3c33 2020-06-25 20:48:59.604556 34115 1468 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.46.40 e8323466-a1a8-4edc-b0db-fce0c8041708 2020-06-25 20:49:07.87549 34116 1063 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.46.40 fca2f66b-334c-4864-ad7d-5060969b34a5 2020-06-25 20:49:22.142524 34117 1616 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.46.40 f3887648-c2bb-4022-87cb-f977ee2f6fc0 2020-06-25 20:49:31.785545 34118 1628 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.46.40 65e1a5cc-80eb-4b54-a81a-4377f0ce6db7 2020-06-25 20:49:41.985328 34119 1369 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.46.40 ed2f8a00-7355-45d5-92ca-45ac093b45f2 2020-06-25 20:49:52.351361 34120 1478 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 d8190d45-52ed-4624-826f-8b0d9c379134 2020-06-25 20:49:55.151099 34121 1468 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 7e25474e-31aa-4968-ba35-291e5c3b7ad7 2020-06-25 20:49:56.772949 34122 1063 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 3a5fafe8-4e83-47e3-9c8f-a9736d6d850b 2020-06-25 20:49:58.70407 34123 1616 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 b900e5d7-db32-494e-9479-5730bcae1051 2020-06-25 20:50:00.741961 34124 1628 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 fb1c361e-3d04-4e1c-8138-ae17440df7a2 2020-06-25 20:50:02.263865 34125 585 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-06-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO a Almacen central creado. 187.149.46.40 a7c29810-b14e-48c3-8f17-2908ad157c18 2020-06-25 20:50:03.43899 34126 1641 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.46.40 893fdf81-8cd5-4fca-a4d7-8e449a004013 2020-06-25 20:54:11.654592 34127 1638 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.46.40 2a04b3d0-1b87-4eec-88a6-9271f14bec42 2020-06-25 20:54:19.876315 34128 1636 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.46.40 08a2bae7-7dd7-4fc9-b50b-2e648ecc6be4 2020-06-25 20:54:28.530995 34129 1098 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.46.40 b5a44a73-5b0b-4d2d-8344-e04d81eee168 2020-06-25 20:54:38.931758 34130 1284 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.46.40 7b2b4304-223f-4402-a959-9782d60a75f6 2020-06-25 20:54:46.190263 34131 1641 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 64ae4519-2121-4764-810a-afa63913acbe 2020-06-25 20:54:50.441941 34132 1638 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 32df9211-b7ee-4a08-adb6-95f6fae18a13 2020-06-25 20:54:53.784621 34133 1636 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 1e9cb14d-46aa-4e57-b52c-f6790a739a39 2020-06-25 20:54:55.878322 34134 1098 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 23960d79-792e-47af-83ad-2c8cee0a7c33 2020-06-25 20:54:58.155101 34135 1284 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 ead40aa7-2b45-4577-9a08-c077d5c47b62 2020-06-25 20:54:59.801908 34136 586 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-06-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.46.40 b4e175be-0b76-4028-bedd-48e1b9439465 2020-06-25 20:55:01.303781 34137 2477 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 933\namount: !ruby/object:BigDecimal 18:0.519E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.519E3\nstatus: 0\ndate_sale: 2020-06-25\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1206\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 7a6c0715-20e2-4ee7-88a7-32b97dd23270 2020-06-25 21:00:47.115085 34138 1628 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.46.40 7a6c0715-20e2-4ee7-88a7-32b97dd23270 2020-06-25 21:00:47.152796 34139 2477 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.46.40 e309c7c4-ae85-45cc-b23f-2cfd9d37b053 2020-06-25 21:00:52.881472 34140 3352 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.519E3\nmove_type: '1'\nsale_id: 2477\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1206\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.519E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1206 187.149.46.40 e309c7c4-ae85-45cc-b23f-2cfd9d37b053 2020-06-25 21:00:52.903939 34141 2478 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 933\namount: !ruby/object:BigDecimal 18:0.1558E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1558E4\nstatus: 0\ndate_sale: 2020-06-25\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1207\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 37fff563-acb9-4fbd-8932-509c603ae40e 2020-06-25 21:01:41.460825 34142 1066 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.46.40 37fff563-acb9-4fbd-8932-509c603ae40e 2020-06-25 21:01:41.487453 34143 1743 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 37fff563-acb9-4fbd-8932-509c603ae40e 2020-06-25 21:01:41.510448 34144 2478 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.46.40 286f6c88-205c-43ba-aa00-a6e2b8ed5f2b 2020-06-25 21:01:48.238291 34145 3353 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1558E4\nmove_type: '1'\nsale_id: 2478\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1207\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1558E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1207 187.149.46.40 286f6c88-205c-43ba-aa00-a6e2b8ed5f2b 2020-06-25 21:01:48.260508 34146 2479 Sale \N \N 25 User \N create ---\ncustomer_id: 36\nuser_id: 25\nopen_cash_register_id: 933\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.449E3\nstatus: 0\ndate_sale: 2020-06-25\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-1208\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 adcd9719-2f49-4ba3-a2fb-28c04df2ea96 2020-06-25 21:22:23.476873 34147 707 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 18 \N 187.149.46.40 adcd9719-2f49-4ba3-a2fb-28c04df2ea96 2020-06-25 21:22:23.520516 34148 1118 Product \N \N 4 User \N update ---\nname:\n- 2CZO20106\n- COLMAR\n 4 El producto ZAP-1118 fue modificado. 187.149.46.40 55df0363-51f1-436c-8131-bd8fabc2c247 2020-06-25 21:28:29.699966 34149 303 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-43\namount: !ruby/object:BigDecimal 18:0.4797E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4797E4\nobservations: ''\npurchase_date: 2020-06-25\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-43 por $ 4797.0 MXN creada. 187.149.46.40 5cfa5a0b-36cd-4950-ad3d-4a81a5688157 2020-06-25 21:30:28.974062 34150 1822 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.1E2\n 18 \N 187.149.46.40 5cfa5a0b-36cd-4950-ad3d-4a81a5688157 2020-06-25 21:30:28.997686 34151 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-06-20 23:25:51.249633000 Z\n- &1 2020-06-21 07:38:21.619191000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-25 21:31:54.113811737 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537131\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537131\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 97\n- 98\n 197 \N 187.149.46.40 1514e82b-39c8-469f-bd23-fcea2b26cdf7 2020-06-25 21:31:54.122959 34152 18 User \N \N 18 User \N update ---\nunique_session_id:\n- T3T1z4ToNWVbTUsyMQxK\n- zfJzB-uCyUAvuxa4PSci\n 198 \N 187.149.46.40 1514e82b-39c8-469f-bd23-fcea2b26cdf7 2020-06-25 21:31:54.137305 34153 2480 Sale \N \N 18 User \N create ---\ncustomer_id: 283\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.229124E4\ntax: !ruby/object:BigDecimal 18:0.20676E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2498E4\nstatus: 0\ndate_sale: 2020-06-25\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-352\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 4571aff0-d17c-4850-bc8b-21ec8d4fd270 2020-06-25 21:35:27.180432 34154 852 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.46.40 4571aff0-d17c-4850-bc8b-21ec8d4fd270 2020-06-25 21:35:27.211423 34155 848 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 5 \N 187.149.46.40 4571aff0-d17c-4850-bc8b-21ec8d4fd270 2020-06-25 21:35:27.239867 34156 852 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 cc4db1a3-1aa1-42b1-8a77-c8eeb7a91e2a 2020-06-25 21:36:33.852351 34157 587 Transfer \N \N 18 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-06-25\nuser_id: 18\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.46.40 0377f0e9-84ed-4908-ac2c-c898cdc1ee78 2020-06-25 21:36:36.652643 34158 845 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 17b68b3b-fc52-42e2-8a9c-c8b2353d9d1d 2020-06-25 21:45:13.389226 34159 846 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.46.40 2cc3743d-8b81-4767-9697-1141a72b063c 2020-06-25 21:45:52.057105 34160 588 Transfer \N \N 18 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-06-25\nuser_id: 18\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.46.40 21c652b9-ae28-4292-8f2e-4b597ba95687 2020-06-25 21:45:59.316508 34161 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-06-24 21:55:27.188598000 Z\n- &1 2020-06-25 00:52:55.509675000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-26 00:05:56.313030554 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113554\n mask_addr: 4294967295\nsign_in_count:\n- 221\n- 222\n 445 \N 189.186.117.82 d8da500f-4296-480a-bc4e-d688359b7daf 2020-06-26 00:05:56.321242 34162 21 User \N \N 21 User \N update ---\nunique_session_id:\n- BNvdszsmnZu7wFiGNHcQ\n- BAyHvBd6qXzVQq29292g\n 446 \N 189.186.117.82 d8da500f-4296-480a-bc4e-d688359b7daf 2020-06-26 00:05:56.337562 34163 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-25 19:22:55.132702000 Z\n- &1 2020-06-25 20:07:42.460510000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-26 01:35:15.138406159 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945619\n mask_addr: 4294967295\nsign_in_count:\n- 1584\n- 1585\n 3170 \N 200.68.179.147 c4b9a898-c0c3-4c66-9b2d-82b0b4bdb2c7 2020-06-26 01:35:15.146045 34164 4 User \N \N 4 User \N update ---\nunique_session_id:\n- URGTtGg6GESU4qJdjVGB\n- XwBDYgD-T2UkV1GpFNep\n 3171 \N 200.68.179.147 c4b9a898-c0c3-4c66-9b2d-82b0b4bdb2c7 2020-06-26 01:35:15.162926 34165 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-25 20:07:42.460510000 Z\n- &1 2020-06-26 01:35:15.138406000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-26 01:39:37.840932257 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945619\n mask_addr: 4294967295\nsign_in_count:\n- 1585\n- 1586\n 3172 \N 200.68.179.147 4cbb3893-f6bc-4207-b230-d7321fa1e7ab 2020-06-26 01:39:37.847054 34166 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XwBDYgD-T2UkV1GpFNep\n- umxZMVqsskEusqUn61sy\n 3173 \N 200.68.179.147 4cbb3893-f6bc-4207-b230-d7321fa1e7ab 2020-06-26 01:39:37.862535 34167 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-26 01:35:15.138406000 Z\n- &1 2020-06-26 01:39:37.840932000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-26 18:49:39.462066415 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945619\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 1586\n- 1587\n 3174 \N 187.149.46.40 75297631-2745-49f1-b4b4-48387fcf2ebb 2020-06-26 18:49:39.489612 34168 4 User \N \N 4 User \N update ---\nunique_session_id:\n- umxZMVqsskEusqUn61sy\n- zYmnExkT5WQmGQuPMpmN\n 3175 \N 187.149.46.40 75297631-2745-49f1-b4b4-48387fcf2ebb 2020-06-26 18:49:39.5138 34169 694 Product \N \N 4 User \N update ---\nname:\n- PNT-0015\n- PNT-0014\n 3 El producto PAN-694 fue modificado. 187.149.46.40 73de2322-dd03-4aae-9e95-6dc9067f6210 2020-06-26 18:52:48.647449 34170 322 Customer \N \N 18 User \N create ---\nnick_name: MARITE AMIGA MARCO\nphone: "(667) 777-7777"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.4E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARITE AMIGA MARCO fue registrado. 187.149.46.40 e31dfe36-42e3-4f81-a46a-e948313a1a6b 2020-06-26 18:54:25.646329 34171 2481 Sale \N \N 18 User \N create ---\ncustomer_id: 322\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2020-06-26\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-353\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 66b0e96a-cd1e-4b15-8788-79a2fac6c7bd 2020-06-26 18:54:37.477768 34172 1227 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 66b0e96a-cd1e-4b15-8788-79a2fac6c7bd 2020-06-26 18:54:37.504622 34173 693 Product \N \N 4 User \N update ---\ndescription:\n- "PANTALON VALENTINE NEGRO ST7188\\r\\n"\n- "PANTALON VALENTINE Rosa Palo\\r\\n"\n 3 El producto PAN-693 fue modificado. 187.149.46.40 51b940a2-f25b-447d-a69e-f1e956ceebc5 2020-06-26 18:54:44.307894 34174 2481 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-353 cancelada. 187.149.46.40 ca342632-cb67-45f0-8450-b15af001b513 2020-06-26 18:54:47.05112 34175 1227 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 ca342632-cb67-45f0-8450-b15af001b513 2020-06-26 18:54:47.074332 34176 2482 Sale \N \N 18 User \N create ---\ncustomer_id: 322\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2020-06-26\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-354\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 7f7c81c9-b2ae-4d1e-8936-904655292270 2020-06-26 18:55:14.5976 34177 1227 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 7f7c81c9-b2ae-4d1e-8936-904655292270 2020-06-26 18:55:14.624459 34178 694 Product \N \N 4 User \N update ---\nname:\n- PNT-0014\n- PNT-0015\n 4 El producto PAN-694 fue modificado. 187.149.46.40 6785e4a1-4f7f-41d0-8e8f-60bdbaec7aa7 2020-06-26 18:55:36.268328 34179 323 Customer \N \N 18 User \N create ---\nnick_name: MARTHA OSUNA\nphone: "(667) 745-5885"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.3E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARTHA OSUNA fue registrado. 187.149.46.40 997c565d-6dff-40ef-a2e6-d2625f93ae34 2020-06-26 18:55:46.551124 34180 2483 Sale \N \N 18 User \N create ---\ncustomer_id: 323\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.4997E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3348E4\ntotal: !ruby/object:BigDecimal 18:0.1649E4\nstatus: 0\ndate_sale: 2020-06-26\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-355\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 99df8d1c-81f0-4093-917e-f60d7c90900a 2020-06-26 18:59:05.430503 34181 1480 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 99df8d1c-81f0-4093-917e-f60d7c90900a 2020-06-26 18:59:05.460547 34182 1466 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 99df8d1c-81f0-4093-917e-f60d7c90900a 2020-06-26 18:59:05.489317 34183 900 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 99df8d1c-81f0-4093-917e-f60d7c90900a 2020-06-26 18:59:05.514533 34184 2483 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-355 cancelada. 187.149.46.40 4a59fcc1-7e89-4fff-a50d-bfbbe01504d9 2020-06-26 18:59:10.355603 34185 900 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.40 4a59fcc1-7e89-4fff-a50d-bfbbe01504d9 2020-06-26 18:59:10.378184 34186 1466 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 4a59fcc1-7e89-4fff-a50d-bfbbe01504d9 2020-06-26 18:59:10.398228 34187 1480 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 4a59fcc1-7e89-4fff-a50d-bfbbe01504d9 2020-06-26 18:59:10.42203 34188 2484 Sale \N \N 18 User \N create ---\ncustomer_id: 323\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.4997E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3348E4\ntotal: !ruby/object:BigDecimal 18:0.1649E4\nstatus: 0\ndate_sale: 2020-06-26\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-356\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 73e78184-9a81-43dc-bd37-8675a81112dc 2020-06-26 19:00:37.332759 34189 1466 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 73e78184-9a81-43dc-bd37-8675a81112dc 2020-06-26 19:00:37.364127 34190 1480 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 73e78184-9a81-43dc-bd37-8675a81112dc 2020-06-26 19:00:37.388763 34191 900 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.46.40 73e78184-9a81-43dc-bd37-8675a81112dc 2020-06-26 19:00:37.413229 34192 860 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 13 \N 187.149.46.40 3b091413-eb1c-4ffd-91bb-3225ba3f5f3b 2020-06-26 19:02:08.062067 34193 1429 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.46.40 03eeeec8-e800-4414-b3f0-a05d7758f79e 2020-06-26 19:02:24.144711 34194 860 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 14 \N 187.149.46.40 68023069-e914-4553-927b-abc05d4ee939 2020-06-26 19:02:31.098222 34195 1429 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 19d46bb2-58ed-432c-82b8-a1a12fec026a 2020-06-26 19:02:36.163716 34196 589 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-06-26\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 187.149.46.40 1da8b692-1993-4a8f-a967-800599677228 2020-06-26 19:02:37.619166 34197 910 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.40 6d6a8b5d-2558-4020-a632-4f9de7bec930 2020-06-26 19:02:55.646361 34198 590 Transfer \N \N 18 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-06-26\nuser_id: 18\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.46.40 f4fcdb55-ee7f-4260-9cd2-b20b6f06763d 2020-06-26 19:02:58.024732 34199 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-06-25 19:07:36.060081000 Z\n- &1 2020-06-25 19:23:25.351197000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-26 19:03:18.636793497 Z\nsign_in_count:\n- 82\n- 83\n 166 \N 187.149.46.40 09c57bd0-3f92-493f-86e8-265f00ea37c5 2020-06-26 19:03:18.642591 34200 25 User \N \N 25 User \N update ---\nunique_session_id:\n- m5LJxZjKCxFbYru7o6tb\n- 4azLxdz7xFtGb7hJJQKR\n 167 \N 187.149.46.40 09c57bd0-3f92-493f-86e8-265f00ea37c5 2020-06-26 19:03:18.656233 34229 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zYmnExkT5WQmGQuPMpmN\n- vdf7ZumsyLsi-CgNRLGv\n 3177 \N 187.149.46.40 dee98e60-a105-401a-ae72-303b2668a10b 2020-06-26 19:13:23.307229 34201 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-06-24 20:32:44.387916000 Z\n- &1 2020-06-25 19:59:24.758959000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-26 19:03:30.172408597 Z\nsign_in_count:\n- 127\n- 128\n 256 \N 187.149.46.40 b7bd64de-3c40-448b-b4c5-a801baca502b 2020-06-26 19:03:30.196662 34202 9 User \N \N 9 User \N update ---\nunique_session_id:\n- nxyKvzZjvGx7hYbmjLrc\n- "-MUi86Bv_szSnWXsBbsG"\n 257 \N 187.149.46.40 b7bd64de-3c40-448b-b4c5-a801baca502b 2020-06-26 19:03:30.211465 34203 590 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-26\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.46.40 9142fcda-39f4-4513-97ed-40077794e7ce 2020-06-26 19:03:46.598722 34204 1840 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.46.40 9142fcda-39f4-4513-97ed-40077794e7ce 2020-06-26 19:03:46.616412 34205 589 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-26\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.46.40 9acd4525-7764-4521-9cab-b7efe8838d81 2020-06-26 19:03:59.099602 34206 1380 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.7E1\n 4 \N 187.149.46.40 9acd4525-7764-4521-9cab-b7efe8838d81 2020-06-26 19:03:59.115625 34207 1899 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 693\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 9acd4525-7764-4521-9cab-b7efe8838d81 2020-06-26 19:03:59.136707 34208 588 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-26\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.46.40 64804532-9eb4-4273-99d7-e5c71aaa4905 2020-06-26 19:04:10.935698 34209 266 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 13 \N 187.149.46.40 64804532-9eb4-4273-99d7-e5c71aaa4905 2020-06-26 19:04:10.95093 34210 268 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 13 \N 187.149.46.40 64804532-9eb4-4273-99d7-e5c71aaa4905 2020-06-26 19:04:10.96757 34211 587 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-26\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.46.40 057ffc96-ece3-422e-b72c-e55c0d8dd17c 2020-06-26 19:04:19.710517 34212 262 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 057ffc96-ece3-422e-b72c-e55c0d8dd17c 2020-06-26 19:04:19.726739 34213 2485 Sale \N \N 9 User \N create ---\ncustomer_id: 323\nuser_id: 9\nopen_cash_register_id: 933\namount: !ruby/object:BigDecimal 18:0.741939E4\ntax: !ruby/object:BigDecimal 18:0.57661E3\ndiscount: !ruby/object:BigDecimal 18:0.8995E3\ntotal: !ruby/object:BigDecimal 18:0.70965E4\nstatus: 0\ndate_sale: 2020-06-26\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-1209\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 08a8a344-78b4-4fa5-b579-638bb75d691e 2020-06-26 19:08:16.14646 34214 1843 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 08a8a344-78b4-4fa5-b579-638bb75d691e 2020-06-26 19:08:16.17402 34215 1380 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.46.40 08a8a344-78b4-4fa5-b579-638bb75d691e 2020-06-26 19:08:16.199584 34216 179 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.46.40 08a8a344-78b4-4fa5-b579-638bb75d691e 2020-06-26 19:08:16.224462 34217 1868 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 08a8a344-78b4-4fa5-b579-638bb75d691e 2020-06-26 19:08:16.249279 34218 1022 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.46.40 08a8a344-78b4-4fa5-b579-638bb75d691e 2020-06-26 19:08:16.278674 34219 1780 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.46.40 08a8a344-78b4-4fa5-b579-638bb75d691e 2020-06-26 19:08:16.303907 34220 140 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.46.40 08a8a344-78b4-4fa5-b579-638bb75d691e 2020-06-26 19:08:16.328081 34221 1896 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 08a8a344-78b4-4fa5-b579-638bb75d691e 2020-06-26 19:08:16.351268 34222 1895 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.46.40 08a8a344-78b4-4fa5-b579-638bb75d691e 2020-06-26 19:08:16.37573 34223 539 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.46.40 08a8a344-78b4-4fa5-b579-638bb75d691e 2020-06-26 19:08:16.398741 34224 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-06-21 07:38:21.619191000 Z\n- &1 2020-06-25 21:31:54.113811000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-26 19:08:37.258777070 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537131\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 98\n- 99\n 199 \N 187.149.46.40 c8c5077f-f04c-4c9e-be32-5d61b2355707 2020-06-26 19:08:37.265535 34225 18 User \N \N 18 User \N update ---\nunique_session_id:\n- zfJzB-uCyUAvuxa4PSci\n- ChJHEQzwSvzwC8ziw1Wc\n 200 \N 187.149.46.40 c8c5077f-f04c-4c9e-be32-5d61b2355707 2020-06-26 19:08:37.279989 34226 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-06-25 00:52:55.509675000 Z\n- &1 2020-06-26 00:05:56.313030000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-26 19:09:51.643646642 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113554\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113554\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 222\n- 223\n 447 \N 187.149.46.40 82539b1d-a7fe-4680-9a67-bbfe0e675543 2020-06-26 19:09:51.651301 34227 21 User \N \N 21 User \N update ---\nunique_session_id:\n- BAyHvBd6qXzVQq29292g\n- WtYk__yDYkYyEwspwQRs\n 448 \N 187.149.46.40 82539b1d-a7fe-4680-9a67-bbfe0e675543 2020-06-26 19:09:51.666994 34228 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-26 01:39:37.840932000 Z\n- &1 2020-06-26 18:49:39.462066000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-26 19:13:23.282920495 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945619\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 1587\n- 1588\n 3176 \N 187.149.46.40 dee98e60-a105-401a-ae72-303b2668a10b 2020-06-26 19:13:23.290242 34230 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-06-26 00:05:56.313030000 Z\n- &1 2020-06-26 19:09:51.643646000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-26 19:14:30.902207865 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183113554\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\nsign_in_count:\n- 223\n- 224\n 449 \N 187.149.46.40 b9ce773e-b83f-4379-8efe-4fc40f000423 2020-06-26 19:14:30.909009 34231 21 User \N \N 21 User \N update ---\nunique_session_id:\n- WtYk__yDYkYyEwspwQRs\n- j-QRKsnh6D_UzBg7zaqs\n 450 \N 187.149.46.40 b9ce773e-b83f-4379-8efe-4fc40f000423 2020-06-26 19:14:30.923275 34232 586 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-26\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 187.149.46.40 d6b870bc-340a-4d14-8b87-a8451a8aac16 2020-06-26 19:14:49.538932 34233 1900 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 885\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 d6b870bc-340a-4d14-8b87-a8451a8aac16 2020-06-26 19:14:49.560765 34234 1901 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 754\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 d6b870bc-340a-4d14-8b87-a8451a8aac16 2020-06-26 19:14:49.583684 34235 1902 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 985\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 d6b870bc-340a-4d14-8b87-a8451a8aac16 2020-06-26 19:14:49.604764 34236 1903 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 987\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 d6b870bc-340a-4d14-8b87-a8451a8aac16 2020-06-26 19:14:49.626283 34237 1904 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 990\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 d6b870bc-340a-4d14-8b87-a8451a8aac16 2020-06-26 19:14:49.648254 34238 584 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-26\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 187.149.46.40 d36fe9b2-5de8-4764-91ff-6ef8fb1b219e 2020-06-26 19:15:02.809551 34239 1905 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 981\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 d36fe9b2-5de8-4764-91ff-6ef8fb1b219e 2020-06-26 19:15:02.829521 34240 1906 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1022\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 d36fe9b2-5de8-4764-91ff-6ef8fb1b219e 2020-06-26 19:15:02.850006 34241 1907 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1001\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 d36fe9b2-5de8-4764-91ff-6ef8fb1b219e 2020-06-26 19:15:02.868747 34242 576 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-26\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 187.149.46.40 d1b4714e-e700-424a-90b4-b05ddd7cecba 2020-06-26 19:15:37.592217 34243 1908 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 920\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 d1b4714e-e700-424a-90b4-b05ddd7cecba 2020-06-26 19:15:37.61233 34244 560 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-26\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 187.149.46.40 a8445288-9c50-4fe8-8af9-079490f9a8b8 2020-06-26 19:15:44.798379 34245 1831 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 a8445288-9c50-4fe8-8af9-079490f9a8b8 2020-06-26 19:15:44.815636 34246 1795 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.46.40 a8445288-9c50-4fe8-8af9-079490f9a8b8 2020-06-26 19:15:44.833795 34247 562 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-26\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 187.149.46.40 2f58d172-9cd4-443a-a356-6706d5ae1109 2020-06-26 19:15:51.527285 34248 1769 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.46.40 2f58d172-9cd4-443a-a356-6706d5ae1109 2020-06-26 19:15:51.542648 34249 555 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-26\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 187.149.46.40 646f31c9-a32f-4e7d-97ac-99199f9a5617 2020-06-26 19:15:57.732262 34250 1909 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 635\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 646f31c9-a32f-4e7d-97ac-99199f9a5617 2020-06-26 19:15:57.758087 34251 557 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-26\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 187.149.46.40 d87c655a-45fb-4376-b48a-e8d25d521f99 2020-06-26 19:16:05.406457 34252 1910 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1100\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 d87c655a-45fb-4376-b48a-e8d25d521f99 2020-06-26 19:16:05.426479 34253 1911 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1026\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 d87c655a-45fb-4376-b48a-e8d25d521f99 2020-06-26 19:16:05.447292 34254 1796 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.46.40 d87c655a-45fb-4376-b48a-e8d25d521f99 2020-06-26 19:16:05.463217 34390 1507 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 f4f77c1a-ede3-44c4-854b-63fbdf0a0ac2 2020-07-01 18:55:54.068092 34255 1912 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1096\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 d87c655a-45fb-4376-b48a-e8d25d521f99 2020-06-26 19:16:05.482409 34256 1913 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1067\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 d87c655a-45fb-4376-b48a-e8d25d521f99 2020-06-26 19:16:05.501675 34257 1914 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1089\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 d87c655a-45fb-4376-b48a-e8d25d521f99 2020-06-26 19:16:05.520418 34258 558 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-26\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 187.149.46.40 e75188f0-4bbc-4e5b-9d14-a147ab6b56d9 2020-06-26 19:16:11.327541 34259 1773 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.46.40 e75188f0-4bbc-4e5b-9d14-a147ab6b56d9 2020-06-26 19:16:11.343202 34260 1915 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 915\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 e75188f0-4bbc-4e5b-9d14-a147ab6b56d9 2020-06-26 19:16:11.363522 34261 1911 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.46.40 e75188f0-4bbc-4e5b-9d14-a147ab6b56d9 2020-06-26 19:16:11.381157 34262 1916 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1027\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 e75188f0-4bbc-4e5b-9d14-a147ab6b56d9 2020-06-26 19:16:11.402509 34263 1356 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.46.40 e75188f0-4bbc-4e5b-9d14-a147ab6b56d9 2020-06-26 19:16:11.419988 34264 573 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-26\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 187.149.46.40 f6345e12-132c-4705-a3fd-8fa040ad1a93 2020-06-26 19:16:16.723425 34265 1905 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.7E1\n 2 \N 187.149.46.40 f6345e12-132c-4705-a3fd-8fa040ad1a93 2020-06-26 19:16:16.739784 34266 572 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-26\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 187.149.46.40 09df3c11-be8f-47c5-921f-785c6e8cfcb1 2020-06-26 19:16:22.087056 34267 1917 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 202\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 09df3c11-be8f-47c5-921f-785c6e8cfcb1 2020-06-26 19:16:22.10666 34268 1918 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 557\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 09df3c11-be8f-47c5-921f-785c6e8cfcb1 2020-06-26 19:16:22.127897 34269 569 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-26\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 187.149.46.40 8982dd12-93ce-4835-97a7-9b13f08774d3 2020-06-26 19:16:27.692571 34270 1919 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 997\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 8982dd12-93ce-4835-97a7-9b13f08774d3 2020-06-26 19:16:27.712735 34271 1920 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1008\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 8982dd12-93ce-4835-97a7-9b13f08774d3 2020-06-26 19:16:27.734391 34272 564 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-26\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 187.149.46.40 2aad21fb-954b-4238-979c-f4d13a0fb561 2020-06-26 19:16:33.136915 34273 1921 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1009\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 2aad21fb-954b-4238-979c-f4d13a0fb561 2020-06-26 19:16:33.158077 34274 561 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-26\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 187.149.46.40 50029f15-46f8-40ae-81ce-9cc01240f690 2020-06-26 19:16:40.280528 34275 1922 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1017\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 50029f15-46f8-40ae-81ce-9cc01240f690 2020-06-26 19:16:40.300419 34276 1923 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1007\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 50029f15-46f8-40ae-81ce-9cc01240f690 2020-06-26 19:16:40.320451 34277 1777 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.46.40 50029f15-46f8-40ae-81ce-9cc01240f690 2020-06-26 19:16:40.337197 34278 838 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.6E1\n 9 \N 187.149.46.40 50029f15-46f8-40ae-81ce-9cc01240f690 2020-06-26 19:16:40.354763 34279 1924 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 520\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 50029f15-46f8-40ae-81ce-9cc01240f690 2020-06-26 19:16:40.374837 34280 1925 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 804\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 50029f15-46f8-40ae-81ce-9cc01240f690 2020-06-26 19:16:40.394256 34281 1926 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1003\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 50029f15-46f8-40ae-81ce-9cc01240f690 2020-06-26 19:16:40.41397 34282 1927 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 401\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.40 50029f15-46f8-40ae-81ce-9cc01240f690 2020-06-26 19:16:40.433683 34283 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-26 18:49:39.462066000 Z\n- &1 2020-06-26 19:13:23.282920000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-26 19:18:26.632174508 Z\nsign_in_count:\n- 1588\n- 1589\n 3178 \N 187.149.46.40 cb4296dd-de68-43f9-ab4f-05b14fd338ea 2020-06-26 19:18:26.637748 34284 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vdf7ZumsyLsi-CgNRLGv\n- csmYCkxU2D_LFz7zgs66\n 3179 \N 187.149.46.40 cb4296dd-de68-43f9-ab4f-05b14fd338ea 2020-06-26 19:18:26.652263 34285 2486 Sale \N \N 18 User \N create ---\ncustomer_id: 323\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.550527E4\ntax: !ruby/object:BigDecimal 18:0.23273E3\ndiscount: !ruby/object:BigDecimal 18:0.3747E3\ntotal: !ruby/object:BigDecimal 18:0.53633E4\nstatus: 0\ndate_sale: 2020-06-26\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-357\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 3a704594-a652-4f25-bb23-5b559efa8254 2020-06-26 19:19:47.029499 34286 815 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 7 \N 187.149.46.40 3a704594-a652-4f25-bb23-5b559efa8254 2020-06-26 19:19:47.061119 34287 1664 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.46.40 3a704594-a652-4f25-bb23-5b559efa8254 2020-06-26 19:19:47.090395 34288 973 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.46.40 3a704594-a652-4f25-bb23-5b559efa8254 2020-06-26 19:19:47.115984 34289 1266 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.46.40 3a704594-a652-4f25-bb23-5b559efa8254 2020-06-26 19:19:47.145945 34290 1505 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.46.40 3a704594-a652-4f25-bb23-5b559efa8254 2020-06-26 19:19:47.171256 34291 1901 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.46.40 3a704594-a652-4f25-bb23-5b559efa8254 2020-06-26 19:19:47.195495 34292 1660 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.46.40 3a704594-a652-4f25-bb23-5b559efa8254 2020-06-26 19:19:47.236405 34293 1924 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.46.40 3a704594-a652-4f25-bb23-5b559efa8254 2020-06-26 19:19:47.262668 34294 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-06-25 19:59:24.758959000 Z\n- &1 2020-06-26 19:03:30.172408000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-26 20:52:28.716756786 Z\nsign_in_count:\n- 128\n- 129\n 258 \N 187.149.46.40 dcbb082d-0e45-4833-aa45-7d31b5cb47f3 2020-06-26 20:52:28.722644 34295 9 User \N \N 9 User \N update ---\nunique_session_id:\n- "-MUi86Bv_szSnWXsBbsG"\n- z5WScDfxwwo8k4M2kx9C\n 259 \N 187.149.46.40 dcbb082d-0e45-4833-aa45-7d31b5cb47f3 2020-06-26 20:52:28.738404 34296 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-26 19:13:23.282920000 Z\n- &1 2020-06-26 19:18:26.632174000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-26 20:56:29.869359669 Z\nsign_in_count:\n- 1589\n- 1590\n 3180 \N 187.149.46.40 6aa40149-4fff-478d-a5c5-a0481e6ce6d9 2020-06-26 20:56:29.875119 34297 4 User \N \N 4 User \N update ---\nunique_session_id:\n- csmYCkxU2D_LFz7zgs66\n- szjBP3gGgVytvCe4C8ky\n 3181 \N 187.149.46.40 6aa40149-4fff-478d-a5c5-a0481e6ce6d9 2020-06-26 20:56:29.892407 34298 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-06-25 21:31:54.113811000 Z\n- &1 2020-06-26 19:08:37.258777000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-26 20:56:31.382989774 Z\nsign_in_count:\n- 99\n- 100\n 201 \N 187.149.46.40 c0de90c4-e3d0-4553-8c76-6f9081dbda05 2020-06-26 20:56:31.403311 34299 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ChJHEQzwSvzwC8ziw1Wc\n- PdvaYR5BpyhmGoFkXkpb\n 202 \N 187.149.46.40 c0de90c4-e3d0-4553-8c76-6f9081dbda05 2020-06-26 20:56:31.435482 34300 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 19 \N 187.149.46.40 6ae95e75-e14a-4a3b-80bd-67a3b75f517f 2020-06-26 20:57:04.37998 34301 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.3E1\n 20 \N 187.149.46.40 37e64ec9-9288-4e00-9246-ff80fd8aa626 2020-06-26 20:57:08.328264 34302 591 Transfer \N \N 18 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-06-26\nuser_id: 18\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.46.40 e62779b8-cce3-4960-bc10-28bfda7cc68e 2020-06-26 20:57:10.252356 34303 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-06-26 19:03:30.172408000 Z\n- &1 2020-06-26 20:52:28.716756000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-26 20:57:37.414751341 Z\nsign_in_count:\n- 129\n- 130\n 260 \N 187.149.46.40 3d1481cd-2472-4764-8ea4-46b6ffdd0725 2020-06-26 20:57:37.420427 34304 9 User \N \N 9 User \N update ---\nunique_session_id:\n- z5WScDfxwwo8k4M2kx9C\n- _4ZhZzcj9_iKzyy9uGxz\n 261 \N 187.149.46.40 3d1481cd-2472-4764-8ea4-46b6ffdd0725 2020-06-26 20:57:37.433679 34305 591 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-06-26\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.46.40 dc3eabc0-8868-4ad2-8c9f-4fa860800a68 2020-06-26 20:58:05.911203 34306 1821 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.7E1\n 14 \N 187.149.46.40 dc3eabc0-8868-4ad2-8c9f-4fa860800a68 2020-06-26 20:58:05.929793 34307 2487 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 933\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-06-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1210\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.40 fabc8a61-7506-4fdb-baf9-d1904623ea77 2020-06-26 20:58:34.646837 34308 1821 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 15 \N 187.149.46.40 fabc8a61-7506-4fdb-baf9-d1904623ea77 2020-06-26 20:58:34.678761 34309 2487 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.46.40 6d7af617-2ed9-4ca6-9dd9-c61753881e67 2020-06-26 20:58:45.908564 34391 1491 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.153.73 5b65faeb-3f5f-4150-b20e-822f3f6658ca 2020-07-01 18:56:09.385755 34310 3354 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2487\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1210\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ROCIO\n 1 movimiento de efectivo por venta con folio PV1-V-1210 187.149.46.40 6d7af617-2ed9-4ca6-9dd9-c61753881e67 2020-06-26 20:58:45.933844 34311 954 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 933\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.14163E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.2077E4\ncash_fund: !ruby/object:BigDecimal 18:0.1154E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3231E4\nobservations: FALTAN $250 QUE TIENE QUE PONER ROCIO\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.46.40 be6b92af-9aa3-4b87-a7e6-eb68e0229a94 2020-06-26 21:06:25.526427 34312 933 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.46.40 be6b92af-9aa3-4b87-a7e6-eb68e0229a94 2020-06-26 21:06:25.543416 34313 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-26 19:18:26.632174000 Z\n- &1 2020-06-26 20:56:29.869359000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-27 23:14:18.286227323 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183139963\n mask_addr: 4294967295\nsign_in_count:\n- 1590\n- 1591\n 3182 \N 189.186.220.123 426109bc-222e-482a-8bdb-4059b641f5ff 2020-06-27 23:14:18.318796 34314 4 User \N \N 4 User \N update ---\nunique_session_id:\n- szjBP3gGgVytvCe4C8ky\n- 5UqyDgQXin6sDCa5QK3b\n 3183 \N 189.186.220.123 426109bc-222e-482a-8bdb-4059b641f5ff 2020-06-27 23:14:18.344764 34315 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-26 20:56:29.869359000 Z\n- &1 2020-06-27 23:14:18.286227000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-28 00:11:25.039849153 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183139963\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183139963\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537787\n mask_addr: 4294967295\nsign_in_count:\n- 1591\n- 1592\n 3184 \N 177.228.110.187 621f75b7-0ecc-4bc0-9f9a-e42f0192a821 2020-06-28 00:11:25.046705 34316 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5UqyDgQXin6sDCa5QK3b\n- nWEeT3PL_bZEkQQKZ6gZ\n 3185 \N 177.228.110.187 621f75b7-0ecc-4bc0-9f9a-e42f0192a821 2020-06-28 00:11:25.064057 34317 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-27 23:14:18.286227000 Z\n- &1 2020-06-28 00:11:25.039849000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-29 17:17:17.698073799 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183139963\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537787\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537787\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147106003\n mask_addr: 4294967295\nsign_in_count:\n- 1592\n- 1593\n 3186 \N 187.149.6.211 93c9db3a-d381-4fd6-96dc-dc6eed0bb07f 2020-06-29 17:17:17.726066 34318 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nWEeT3PL_bZEkQQKZ6gZ\n- oMKrWhUTLSxuQw-Mqqh_\n 3187 \N 187.149.6.211 93c9db3a-d381-4fd6-96dc-dc6eed0bb07f 2020-06-29 17:17:17.753017 34319 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-19 00:30:42.461467000 Z\n- &1 2020-06-24 18:28:29.528653000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-29 18:21:47.730233256 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730130\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729640\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729640\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945630\n mask_addr: 4294967295\nsign_in_count:\n- 559\n- 560\n 1123 \N 200.68.179.158 6a47203d-3c61-402f-ad7c-67bab3806dee 2020-06-29 18:21:47.737347 34320 2 User \N \N 2 User \N update ---\nunique_session_id:\n- WfxFggiJbyyfvdhrFsW8\n- 9hxBDCqQzsimYacuE8uD\n 1124 \N 200.68.179.158 6a47203d-3c61-402f-ad7c-67bab3806dee 2020-06-29 18:21:47.754123 34321 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-06-26 19:09:51.643646000 Z\n- &1 2020-06-26 19:14:30.902207000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-29 22:22:32.294991054 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111646\n mask_addr: 4294967295\nsign_in_count:\n- 224\n- 225\n 451 \N 189.186.109.222 2d247a77-ab17-4616-9bcf-ceb151057d1c 2020-06-29 22:22:32.324174 34322 21 User \N \N 21 User \N update ---\nunique_session_id:\n- j-QRKsnh6D_UzBg7zaqs\n- RvdVPdFgdzrEgMmMy2BC\n 452 \N 189.186.109.222 2d247a77-ab17-4616-9bcf-ceb151057d1c 2020-06-29 22:22:32.350196 34323 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-24 18:28:29.528653000 Z\n- &1 2020-06-29 18:21:47.730233000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-30 01:14:54.759828231 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729640\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945630\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945630\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730012\n mask_addr: 4294967295\nsign_in_count:\n- 560\n- 561\n 1125 \N 201.175.159.92 3d74cdec-e793-4b08-b669-18d8034735d9 2020-06-30 01:14:54.79138 34324 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 9hxBDCqQzsimYacuE8uD\n- pbEuANByx7XKp7Q9dFfr\n 1126 \N 201.175.159.92 3d74cdec-e793-4b08-b669-18d8034735d9 2020-06-30 01:14:54.815608 34325 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-06-26 19:08:37.258777000 Z\n- &1 2020-06-26 20:56:31.382989000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-30 06:18:57.658623675 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946182\n mask_addr: 4294967295\nsign_in_count:\n- 100\n- 101\n 203 \N 200.68.181.198 2f0812c5-1cea-4a55-9eda-bbbdf77b5d51 2020-06-30 06:18:57.66467 34326 18 User \N \N 18 User \N update ---\nunique_session_id:\n- PdvaYR5BpyhmGoFkXkpb\n- syD7ZFk9QtVdLZjgdeWJ\n 204 \N 200.68.181.198 2f0812c5-1cea-4a55-9eda-bbbdf77b5d51 2020-06-30 06:18:57.678799 34327 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-29 18:21:47.730233000 Z\n- &1 2020-06-30 01:14:54.759828000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-30 18:54:38.252313069 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945630\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730012\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117186\n mask_addr: 4294967295\nsign_in_count:\n- 561\n- 562\n 1127 \N 187.149.50.130 5e9b688a-da92-45af-a670-719925bc8865 2020-06-30 18:54:38.282795 34328 2 User \N \N 2 User \N update ---\nunique_session_id:\n- pbEuANByx7XKp7Q9dFfr\n- pvM9Vcgz8zfPx4mbRti5\n 1128 \N 187.149.50.130 5e9b688a-da92-45af-a670-719925bc8865 2020-06-30 18:54:38.30757 34355 592 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-01\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.153.73 cae84874-da53-4aae-81b9-67e56fea570d 2020-07-01 18:34:28.996941 34329 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-06-26 20:56:31.382989000 Z\n- &1 2020-06-30 06:18:57.658623000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-30 19:40:51.308269780 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946182\n mask_addr: 4294967295\nsign_in_count:\n- 101\n- 102\n 205 \N 200.68.181.198 69d25e74-4c9d-4f1b-b9e5-bb0c7187bfe4 2020-06-30 19:40:51.314707 34330 18 User \N \N 18 User \N update ---\nunique_session_id:\n- syD7ZFk9QtVdLZjgdeWJ\n- QNr8ebgy4BJg53-RFD9-\n 206 \N 200.68.181.198 69d25e74-4c9d-4f1b-b9e5-bb0c7187bfe4 2020-06-30 19:40:51.32974 34331 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-28 00:11:25.039849000 Z\n- &1 2020-06-29 17:17:17.698073000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-06-30 22:29:16.701480784 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537787\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147106003\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147106003\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\nsign_in_count:\n- 1593\n- 1594\n 3188 \N 189.186.153.73 6b0d72fc-8af7-4845-8bea-07c89b0bb135 2020-06-30 22:29:16.728556 34332 4 User \N \N 4 User \N update ---\nunique_session_id:\n- oMKrWhUTLSxuQw-Mqqh_\n- r7romuy5F6jyrZRCz2V9\n 3189 \N 189.186.153.73 6b0d72fc-8af7-4845-8bea-07c89b0bb135 2020-06-30 22:29:16.761908 34333 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-29 17:17:17.698073000 Z\n- &1 2020-06-30 22:29:16.701480000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-01 04:52:44.823109069 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147106003\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147106003\n mask_addr: 4294967295\nsign_in_count:\n- 1594\n- 1595\n 3190 \N 187.149.6.211 de81e925-e30c-4877-b84d-cd502024f0a5 2020-07-01 04:52:44.852381 34334 4 User \N \N 4 User \N update ---\nunique_session_id:\n- r7romuy5F6jyrZRCz2V9\n- 1RBnayUucAUFJSPGCXLB\n 3191 \N 187.149.6.211 de81e925-e30c-4877-b84d-cd502024f0a5 2020-07-01 04:52:44.879917 34335 1023 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.6.211 e1e866d7-60d8-41a6-ba8c-961e7f7b4f54 2020-07-01 05:08:23.895082 34336 1023 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.6.211 b1d91219-df7a-4e27-a5ce-837488f4240e 2020-07-01 05:08:27.914442 34337 1626 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.6.211 23b73f75-1aae-4747-bb33-47d1acfd0080 2020-07-01 05:12:33.042952 34338 1626 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.6.211 2ac34e0e-73f9-4258-b1b4-d058b6bc894e 2020-07-01 05:12:36.00646 34339 1639 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.6.211 ec2f5d62-b524-4797-8321-9b9fe9fdd988 2020-07-01 05:40:51.136459 34340 1639 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.6.211 eae833ff-9d3a-4ccd-a841-e71a908139c9 2020-07-01 05:40:54.023226 34341 1640 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.6.211 cb5c5ebe-2e95-49f0-ae1a-ee49b48a71dd 2020-07-01 05:41:22.831798 34342 1640 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.6.211 cb125978-d275-44a6-a81f-33f942223338 2020-07-01 05:41:27.430933 34343 592 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-06-30\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.6.211 203955ce-7235-4bd0-b34d-8e31f5d1e3d8 2020-07-01 06:01:46.115893 34344 24 User \N \N 4 User \N update ---\nstatus:\n- active\n- 2\n 124 El usuario ROCIOBYSUO fue desactivado. 187.149.6.211 bccfe962-b5a0-4fdb-8b22-1201bf1b0c79 2020-07-01 06:02:34.424117 34345 15 User \N \N 4 User \N update ---\nstatus:\n- active\n- 2\n 2 El usuario ROCIOG fue desactivado. 187.149.6.211 c72f83b1-3343-4cb4-b4b8-a40658cc44eb 2020-07-01 06:02:52.894432 34346 6 User \N \N 4 User \N update ---\nstatus:\n- active\n- 2\n 16 El usuario chemicajasuo fue desactivado. 187.149.6.211 2f103cab-ddcf-4c5a-bf62-3ba2833137a3 2020-07-01 06:03:09.059621 34347 16 User \N \N 4 User \N update ---\nstatus:\n- active\n- 2\n 4 El usuario chemigerentesuo fue desactivado. 187.149.6.211 c68c43cb-f5e9-4d85-9a6e-ee860af16b19 2020-07-01 06:03:21.443644 34348 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-30 01:14:54.759828000 Z\n- &1 2020-06-30 18:54:38.252313000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-01 17:11:48.892821678 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117186\n mask_addr: 4294967295\nsign_in_count:\n- 562\n- 563\n 1129 \N 187.149.50.130 ae255beb-3826-4aa8-8201-7b69a5d96f06 2020-07-01 17:11:48.923839 34349 2 User \N \N 2 User \N update ---\nunique_session_id:\n- pvM9Vcgz8zfPx4mbRti5\n- kh-xAxQiLciFz3jMdXyq\n 1130 \N 187.149.50.130 ae255beb-3826-4aa8-8201-7b69a5d96f06 2020-07-01 17:11:48.948758 34350 934 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1154E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1154.0 187.149.50.130 9fd3b861-64a2-43a3-885a-09fee9bb7464 2020-07-01 17:27:04.048059 34351 307 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 934\nquantity: !ruby/object:BigDecimal 18:0.2E2\nstatus: 1\nobservations: diferencia de chapa puerta suo\nexpense_date: 2020-07-01\nexpense_code: PV1-E-211\n 1 Egreso por 20.0 registrado 187.149.50.130 10dbd89d-859b-4f06-b60d-81886a6bc7c0 2020-07-01 17:27:52.853791 34352 3355 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 934\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 307\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.50.130 10dbd89d-859b-4f06-b60d-81886a6bc7c0 2020-07-01 17:27:53.567881 34353 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-06-26 19:14:30.902207000 Z\n- &1 2020-06-29 22:22:32.294991000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-01 18:33:06.665645371 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111646\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111646\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\nsign_in_count:\n- 225\n- 226\n 453 \N 189.186.153.73 95154838-3c35-4ddf-abbf-45bd70f4fae3 2020-07-01 18:33:06.695257 34354 21 User \N \N 21 User \N update ---\nunique_session_id:\n- RvdVPdFgdzrEgMmMy2BC\n- rhx8LxsxRAC1JCrnAXFv\n 454 \N 189.186.153.73 95154838-3c35-4ddf-abbf-45bd70f4fae3 2020-07-01 18:33:06.723247 34356 1928 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 989\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 cae84874-da53-4aae-81b9-67e56fea570d 2020-07-01 18:34:29.047568 34357 1929 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 988\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 cae84874-da53-4aae-81b9-67e56fea570d 2020-07-01 18:34:29.084361 34358 1930 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 975\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 cae84874-da53-4aae-81b9-67e56fea570d 2020-07-01 18:34:29.109738 34359 1528 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.153.73 cae84874-da53-4aae-81b9-67e56fea570d 2020-07-01 18:34:29.129837 34360 1539 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.153.73 3621a262-c0c7-42eb-bb61-fec631fa3721 2020-07-01 18:37:49.498009 34361 1539 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 75ab293b-e73f-44bf-b7cb-b748995df4e0 2020-07-01 18:37:52.695813 34362 1539 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.153.73 4873eb18-1129-4aef-8c4c-8593a638faf3 2020-07-01 18:38:31.909188 34363 1613 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.153.73 477e8c11-9bde-4f40-b5cb-b414b4811324 2020-07-01 18:38:41.323673 34364 1613 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 47c87b0d-80c5-454b-909b-fb4b55285d2e 2020-07-01 18:38:49.679172 34365 1612 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.153.73 043b3fbb-7e4c-40e2-b706-da1c14f8e5b4 2020-07-01 18:39:36.245324 34366 1612 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 defe283c-8b17-4185-a028-276fa38e40a3 2020-07-01 18:39:40.095466 34367 1611 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.153.73 30ecbf80-5df1-4a2c-9166-790e05214e6f 2020-07-01 18:40:14.756104 34368 1611 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 7d74f406-bc68-498f-af64-556df6326e5b 2020-07-01 18:40:28.465162 34369 1543 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.153.73 b0643710-bd0e-4400-a920-0b59e5497f71 2020-07-01 18:41:05.624095 34370 968 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.153.73 2afa1ad2-0b8b-40fb-ad8c-19382d7c4517 2020-07-01 18:42:49.714864 34371 968 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 869675d4-d92b-4fc3-a7ac-83d243ca858a 2020-07-01 18:43:16.922911 34372 988 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.153.73 25cd8b00-1d92-4c67-937c-667ecef989c3 2020-07-01 18:44:12.895834 34373 988 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.153.73 f57a8f7d-89bb-4981-b589-d5d58bf3d68f 2020-07-01 18:44:33.531047 34374 1530 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.153.73 65f720ab-e239-47c0-9cd2-33d354a7b32e 2020-07-01 18:44:57.499595 34375 1489 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.153.73 4c8724c8-2558-455d-b62c-3a437e05d870 2020-07-01 18:46:46.664507 34376 1489 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 94630b5e-6409-45ef-ac4d-743ca940986b 2020-07-01 18:47:09.678266 34377 1495 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 f63665d5-ad58-42fb-8537-1d76a6226f91 2020-07-01 18:47:46.736154 34378 1495 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 38b59620-22d7-4836-a303-a8b2bff57872 2020-07-01 18:47:58.296156 34379 1496 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.153.73 c729fc9f-9cf4-45b0-9ca3-1990763918b7 2020-07-01 18:49:41.85049 34380 1510 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.153.73 0f3f79a5-c963-430d-a11e-3dafcfbc5799 2020-07-01 18:50:22.103025 34381 1502 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 0e46841b-4047-46b6-a3c7-cd0d3afba8b7 2020-07-01 18:51:02.23073 34382 1498 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.153.73 d3586611-53d6-45ba-96c1-6e5f03a753bd 2020-07-01 18:51:43.995809 34383 1498 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 edcd8fcf-9ee7-4167-89a5-f496cd60fd7a 2020-07-01 18:51:58.710165 34384 1511 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.153.73 2c1d0f80-cfa2-4911-a67e-0e57b55f38fa 2020-07-01 18:52:30.614207 34385 1511 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.153.73 c0429e9c-1b8c-4c41-aca5-21b650ed6316 2020-07-01 18:53:25.103388 34386 1513 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.153.73 016caffe-a17b-49ea-bc60-965a04692c05 2020-07-01 18:53:56.776828 34387 1506 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.153.73 06cea10f-30cf-4bf2-a5ed-300cb03f4256 2020-07-01 18:54:46.351226 34388 1506 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 4d00fd4c-cd22-4486-8b13-5abc81663f20 2020-07-01 18:55:10.204514 34389 1507 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 03281920-6698-433d-a425-a91c445af9bf 2020-07-01 18:55:37.292634 34392 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-06-30 06:18:57.658623000 Z\n- &1 2020-06-30 19:40:51.308269000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-01 18:56:22.276275002 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946182\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\nsign_in_count:\n- 102\n- 103\n 207 \N 189.186.153.73 af97e11e-ebc8-4875-9b2b-ff096f74f497 2020-07-01 18:56:22.283226 34393 18 User \N \N 18 User \N update ---\nunique_session_id:\n- QNr8ebgy4BJg53-RFD9-\n- s9Pn8joDaZghYci-ss6s\n 208 \N 189.186.153.73 af97e11e-ebc8-4875-9b2b-ff096f74f497 2020-07-01 18:56:22.29843 34394 1491 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.153.73 a92c2a48-9ace-46b1-9724-70fab97273b5 2020-07-01 18:56:29.944044 34395 1492 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 cd4157ea-d7e2-493b-aeec-74930077ebd0 2020-07-01 18:56:56.17635 34396 1492 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 fe3b0f19-ff95-4932-b1d8-b1f82e074c90 2020-07-01 18:57:07.344176 34397 1497 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.153.73 35316712-a446-46d7-ab6a-f8e95a62d822 2020-07-01 18:58:05.695221 34398 1497 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 827457e0-e033-40d1-b19c-2059392556e8 2020-07-01 18:58:16.571635 34399 1488 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.153.73 52f6d76d-d02b-4b76-9910-f7d395c37b44 2020-07-01 18:58:43.62515 34400 1488 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.153.73 71e32a99-57f1-4d54-841b-751bdbe8dc9e 2020-07-01 18:58:52.765382 34401 1499 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.153.73 30dde752-9918-403a-988c-9191c5923b8d 2020-07-01 18:59:19.724819 34402 1499 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.153.73 da31d47f-070a-4448-b7e9-9f002bb7023a 2020-07-01 18:59:40.551762 34403 1494 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.153.73 5095c142-efbb-4e36-85f3-94d52fb041c8 2020-07-01 18:59:59.175456 34404 1494 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 42cc6883-8e99-4777-b548-9eb0a6c857b3 2020-07-01 19:00:12.970671 34405 1499 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.153.73 d4c26ea4-2310-4233-b028-66fa7934a54f 2020-07-01 19:00:54.588628 34406 1500 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.153.73 dc529bee-72a9-4345-8a0f-af0ad86f5111 2020-07-01 19:01:44.383228 34407 3356 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1114E4\nmove_type: '1'\nsale_id: 2298\ncardnumber: 1525\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-288 189.186.153.73 a63a8ba1-631e-4e3d-a4ef-df0106667e11 2020-07-01 19:02:19.982656 34408 2298 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.153.73 6a3fa94f-9c27-43c7-9e8d-23e207d96f19 2020-07-01 19:02:22.61626 34409 8 User \N \N 8 User \N update ---\nlast_sign_in_at:\n- 2020-06-25 18:24:20.634905000 Z\n- &1 2020-06-25 18:24:25.465435000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-01 19:10:00.700812451 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\nsign_in_count:\n- 144\n- 145\n 293 \N 189.186.153.73 e1227d23-fd01-4c21-b626-fa41b9713959 2020-07-01 19:10:00.707907 34410 8 User \N \N 8 User \N update ---\nunique_session_id:\n- fT5mmRykne3i8o_MdYyS\n- QzBJFpzE6aathirigJqs\n 294 \N 189.186.153.73 e1227d23-fd01-4c21-b626-fa41b9713959 2020-07-01 19:10:00.724823 34411 955 CashOut \N \N 8 User \N create ---\nopen_cash_register_id: 932\nuser_id: 8\namount_in: !ruby/object:BigDecimal 18:0.58511E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 10\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.527E3\nphysical_cash: !ruby/object:BigDecimal 18:0.527E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de S BY SUO Principal realizado correctamente 189.186.153.73 b4b142fe-06f4-4202-a733-bf6dfedac70e 2020-07-01 19:10:44.78949 34412 932 OpenCashRegister \N \N 8 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.153.73 b4b142fe-06f4-4202-a733-bf6dfedac70e 2020-07-01 19:10:44.804861 34413 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-06-30 19:40:51.308269000 Z\n- &1 2020-07-01 18:56:22.276275000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-01 19:13:05.230163022 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946182\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\nsign_in_count:\n- 103\n- 104\n 209 \N 189.186.153.73 c58836bd-c232-42f9-8f91-6b4ce18000bd 2020-07-01 19:13:05.239254 34414 18 User \N \N 18 User \N update ---\nunique_session_id:\n- s9Pn8joDaZghYci-ss6s\n- cz1sxFbx1Vrb2vzVjwHk\n 210 \N 189.186.153.73 c58836bd-c232-42f9-8f91-6b4ce18000bd 2020-07-01 19:13:05.257992 34415 593 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-07-01\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.153.73 0d33199d-88fd-41b0-a556-2c2b5805c9cc 2020-07-01 19:13:20.103163 34416 1511 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.153.73 f4e5406d-e8ea-4c26-9b1d-5df7a515ab7b 2020-07-01 19:13:50.115885 34417 594 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-07-01\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.153.73 2d695295-5f7c-4206-9930-79875e43519a 2020-07-01 19:14:01.649081 34418 1240 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 6 \N 189.186.153.73 d739c116-1598-4e4e-b009-58cd6056d5b8 2020-07-01 19:15:29.720317 34419 595 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-07-01\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.153.73 026a0e7b-a45f-4249-b8d5-5fc1f0049066 2020-07-01 19:15:36.160646 34420 904 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.153.73 9c72886a-9e9d-4060-8990-e055e14861c5 2020-07-01 19:16:31.009958 34421 596 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-07-01\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.153.73 eb0ff1ce-d2cc-4266-968f-f35ebe1b03ee 2020-07-01 19:16:35.559598 34422 847 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.153.73 e0274a56-d293-48df-a039-6eb0b9c86473 2020-07-01 19:24:03.211474 34423 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-06-25 19:23:25.351197000 Z\n- &1 2020-06-26 19:03:18.636793000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-01 19:29:01.675557852 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\nsign_in_count:\n- 83\n- 84\n 168 \N 189.186.153.73 36386e27-c4a4-4603-ab8d-eb1d47861f2b 2020-07-01 19:29:01.682105 34424 25 User \N \N 25 User \N update ---\nunique_session_id:\n- 4azLxdz7xFtGb7hJJQKR\n- iKxbZ2b-e-wPRXoyxa4Q\n 169 \N 189.186.153.73 36386e27-c4a4-4603-ab8d-eb1d47861f2b 2020-07-01 19:29:01.697268 34425 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-06-29 22:22:32.294991000 Z\n- &1 2020-07-01 18:33:06.665645000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-01 19:30:32.365534440 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111646\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\nsign_in_count:\n- 226\n- 227\n 455 \N 189.186.153.73 0bef04a6-c2ff-4507-bea2-08185dc08794 2020-07-01 19:30:32.37216 34426 21 User \N \N 21 User \N update ---\nunique_session_id:\n- rhx8LxsxRAC1JCrnAXFv\n- 45g8QUgqa3Co-cAd8ejN\n 456 \N 189.186.153.73 0bef04a6-c2ff-4507-bea2-08185dc08794 2020-07-01 19:30:32.387462 34427 2488 Sale \N \N 18 User \N create ---\ncustomer_id: 298\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.689E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.689E3\nstatus: 0\ndate_sale: 2020-07-01\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-358\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.153.73 cb2cfd97-1d12-4240-b73a-d3af38056b01 2020-07-01 19:34:29.412189 34428 1532 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.153.73 cb2cfd97-1d12-4240-b73a-d3af38056b01 2020-07-01 19:34:29.444905 34429 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-06-26 20:52:28.716756000 Z\n- &1 2020-06-26 20:57:37.414751000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-01 19:34:50.632773389 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\nsign_in_count:\n- 130\n- 131\n 262 \N 189.186.153.73 8b855040-d859-4413-8ba4-f77cbe121f03 2020-07-01 19:34:50.640056 34430 9 User \N \N 9 User \N update ---\nunique_session_id:\n- _4ZhZzcj9_iKzyy9uGxz\n- GeT5kc9DzxRzwxLW1Ni1\n 263 \N 189.186.153.73 8b855040-d859-4413-8ba4-f77cbe121f03 2020-07-01 19:34:50.656986 34431 2489 Sale \N \N 9 User \N create ---\ncustomer_id: 298\nuser_id: 9\nopen_cash_register_id: 934\namount: !ruby/object:BigDecimal 18:0.113434E4\ntax: !ruby/object:BigDecimal 18:0.9365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.122799E4\nstatus: 0\ndate_sale: 2020-07-01\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-1211\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.153.73 4eb91070-1bf7-4bad-b849-67f0221994d1 2020-07-01 19:35:33.359123 34432 1866 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.153.73 4eb91070-1bf7-4bad-b849-67f0221994d1 2020-07-01 19:35:33.388146 34433 1873 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.153.73 4eb91070-1bf7-4bad-b849-67f0221994d1 2020-07-01 19:35:33.413356 34434 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-01 18:56:22.276275000 Z\n- &1 2020-07-01 19:13:05.230163000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-01 20:06:18.866945682 Z\nsign_in_count:\n- 104\n- 105\n 211 \N 189.186.153.73 411095c1-2887-40ba-867d-a6315f1aeecb 2020-07-01 20:06:18.873299 34435 18 User \N \N 18 User \N update ---\nunique_session_id:\n- cz1sxFbx1Vrb2vzVjwHk\n- "-5Cj-KbwbBL5ddm8QjxX"\n 212 \N 189.186.153.73 411095c1-2887-40ba-867d-a6315f1aeecb 2020-07-01 20:06:18.888706 34436 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-06-26 19:03:18.636793000 Z\n- &1 2020-07-01 19:29:01.675557000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-01 20:20:51.681402309 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\nsign_in_count:\n- 84\n- 85\n 170 \N 189.186.153.73 247810a4-8e90-4968-a626-8ec24e7e8dc9 2020-07-01 20:20:51.690321 34437 25 User \N \N 25 User \N update ---\nunique_session_id:\n- iKxbZ2b-e-wPRXoyxa4Q\n- nEJRo1stzuKj-d8daizy\n 171 \N 189.186.153.73 247810a4-8e90-4968-a626-8ec24e7e8dc9 2020-07-01 20:20:51.710995 34438 153 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.153.73 2ebdd33f-ca2d-4cdd-a066-ed7a1caa09bb 2020-07-01 20:21:20.714017 34439 153 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.153.73 258b3c08-bf6f-4b03-87b0-13c4fbe047da 2020-07-01 20:21:23.293075 34440 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-06-30 22:29:16.701480000 Z\n- &1 2020-07-01 04:52:44.823109000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-01 20:35:38.516418768 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147106003\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147106003\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\nsign_in_count:\n- 1595\n- 1596\n 3192 \N 189.186.153.73 a53e1b33-44ea-446f-aca1-c094c368f4af 2020-07-01 20:35:38.524713 34441 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1RBnayUucAUFJSPGCXLB\n- V1KsEmp_nJV5r72X9_LS\n 3193 \N 189.186.153.73 a53e1b33-44ea-446f-aca1-c094c368f4af 2020-07-01 20:35:38.545092 34442 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-07-01 18:33:06.665645000 Z\n- &1 2020-07-01 19:30:32.365534000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-01 20:38:32.960699680 Z\nsign_in_count:\n- 227\n- 228\n 457 \N 189.186.153.73 109555bc-8199-42ce-9634-7ef7b3173180 2020-07-01 20:38:32.967129 34443 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 45g8QUgqa3Co-cAd8ejN\n- pBzxxCEzAhb7_zNgjVug\n 458 \N 189.186.153.73 109555bc-8199-42ce-9634-7ef7b3173180 2020-07-01 20:38:32.986258 34444 1585 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.153.73 02aa5a2a-8036-494b-9cee-f97462830484 2020-07-01 20:39:34.761651 34445 1585 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.153.73 e86fd304-af14-48d6-821a-cc8f098d3f0b 2020-07-01 20:39:37.991704 34446 1588 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.153.73 e60e40de-c3de-4a85-9686-52669d4c3793 2020-07-01 20:39:44.825243 34447 1588 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 f7f8ed77-08bd-4eac-a5cc-fc3995947c2e 2020-07-01 20:39:47.992118 34448 1528 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.153.73 c6401882-2af9-44c2-96b3-4cb34a0716c8 2020-07-01 20:40:16.135448 34449 1528 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.153.73 3c45ae60-f8f7-42de-82eb-84c4e7ddcbaf 2020-07-01 20:40:20.035219 34450 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-01 04:52:44.823109000 Z\n- &1 2020-07-01 20:35:38.516418000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-01 20:40:43.911482425 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147106003\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\nsign_in_count:\n- 1596\n- 1597\n 3194 \N 189.186.153.73 97f8857d-75f1-4062-9d18-3d3d3cfaece2 2020-07-01 20:40:43.918538 34451 4 User \N \N 4 User \N update ---\nunique_session_id:\n- V1KsEmp_nJV5r72X9_LS\n- 2F6y8pT-zwZVGtpytJYz\n 3195 \N 189.186.153.73 97f8857d-75f1-4062-9d18-3d3d3cfaece2 2020-07-01 20:40:43.940702 34452 597 Transfer \N \N 25 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-01\nuser_id: 25\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.153.73 32f6f303-1e61-48ca-801b-46c165b6f0e9 2020-07-01 20:49:04.13383 34453 830 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 189.186.153.73 1781def1-815a-4750-ad77-9c8ddfe336e5 2020-07-01 20:51:46.104973 34454 830 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 189.186.153.73 cd7b42e4-27d7-4010-8d8d-c93940cfffb9 2020-07-01 20:51:49.885391 34455 780 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 084c6544-75c5-4d56-850a-4f0f760f4106 2020-07-01 20:57:49.434819 34456 1907 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.153.73 a3188d3f-ff89-4690-9830-9195839d82e8 2020-07-01 20:58:37.698277 34457 1907 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 5ca18812-4279-47fe-bf0d-05526d095675 2020-07-01 20:58:44.568436 34458 975 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.153.73 e7f1b0d4-10de-41fa-ae06-ce44d514717b 2020-07-01 21:00:15.426653 34459 975 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.153.73 fa8a4b4d-a294-4b22-a899-3bbe7a619ef5 2020-07-01 21:00:20.625624 34460 985 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.153.73 5682c94c-82bf-49b7-8ec4-bba75c6982ea 2020-07-01 21:03:04.733168 34461 985 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 aff5302a-80b3-41db-8830-541f3012e37b 2020-07-01 21:03:09.331854 34462 597 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-01\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.153.73 1188b187-ea05-4206-af24-643e04589a9a 2020-07-01 21:25:09.461743 34463 1844 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.153.73 1188b187-ea05-4206-af24-643e04589a9a 2020-07-01 21:25:09.478677 34464 984 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.153.73 1bb347a8-9f5d-4754-9063-ed1dae8b4b1c 2020-07-01 21:37:06.938526 34465 984 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 ebdfdeeb-6786-4b67-b4c9-0abbc936f7d7 2020-07-01 21:37:11.70696 34466 868 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.153.73 148a5c69-44c9-4954-859d-a85c1784c233 2020-07-01 21:39:37.778668 34467 831 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.153.73 73eb7d66-3a8b-4b8f-8518-f9b45868fdbe 2020-07-01 21:39:47.753971 34468 868 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.153.73 894fea75-dfa7-46fd-8f31-695a4f9d691f 2020-07-01 21:39:51.65566 34469 831 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.153.73 fb17d4af-c1ab-4213-bda1-1539ec5ab2de 2020-07-01 21:39:53.893869 34470 539 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.153.73 3ae6d096-8983-4422-9e03-c2f6d8aa2b5d 2020-07-01 21:45:36.67998 34471 539 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.153.73 cad0fbef-174b-4e9e-a035-8c215b6a4c6e 2020-07-01 21:45:49.50887 34472 1022 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.153.73 dbef0ecc-8593-4bc1-b47e-37c277c190c1 2020-07-01 21:45:56.491866 34473 1022 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.153.73 fdc28732-f818-4fa3-9bbe-a77bf70cebe2 2020-07-01 21:46:10.667021 34474 598 Transfer \N \N 25 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-01\nuser_id: 25\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.153.73 d2f1f166-cd11-4deb-aa49-b3cde32b7fb2 2020-07-01 21:46:12.805589 34475 598 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-01\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.153.73 690e05d9-b89b-4323-9336-e28f5203a3a6 2020-07-01 22:11:57.158792 34476 1931 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 677\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 690e05d9-b89b-4323-9336-e28f5203a3a6 2020-07-01 22:11:57.185566 34477 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-01 20:35:38.516418000 Z\n- &1 2020-07-01 20:40:43.911482000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-01 22:39:45.100403686 Z\nsign_in_count:\n- 1597\n- 1598\n 3196 \N 189.186.153.73 2b80bed0-510b-4954-bb82-351dfce48875 2020-07-01 22:39:45.106658 34478 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2F6y8pT-zwZVGtpytJYz\n- CypQmgxf32qxaGL2o9mG\n 3197 \N 189.186.153.73 2b80bed0-510b-4954-bb82-351dfce48875 2020-07-01 22:39:45.12265 34479 17 Product \N \N 4 User \N update ---\ndescription:\n- SHORT PAPAYA AZUL REY\n- SHORT PAPAYA ROJO REY\n 4 El producto SHO-17 fue modificado. 189.186.153.73 c8646921-28f4-4c4d-848a-0e19b7382bb3 2020-07-01 22:40:20.45653 34480 474 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.153.73 6395c367-2496-4d8e-ba80-a5bd6fde3aeb 2020-07-01 22:41:26.861419 34481 474 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.153.73 21729ac5-4c91-4f0d-a2aa-e655cbf837dd 2020-07-01 22:41:29.981548 34482 599 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-07-01\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.153.73 aaaa9f43-760e-4a81-ac3c-66ed8b792610 2020-07-01 22:41:31.479123 34483 596 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-01\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.153.73 7fc313e7-4f8e-47d9-a347-d75424559324 2020-07-01 22:42:44.497406 34484 589 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.153.73 7fc313e7-4f8e-47d9-a347-d75424559324 2020-07-01 22:42:44.514996 34485 595 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-01\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.153.73 6488142d-053b-476d-bd11-e9c823ced7a6 2020-07-01 22:48:09.687426 34486 1238 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.153.73 6488142d-053b-476d-bd11-e9c823ced7a6 2020-07-01 22:48:09.711806 34487 594 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-01\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.153.73 0f937cf2-a4b2-448b-88ce-aa05a2029cff 2020-07-01 22:48:20.126787 34488 69 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.153.73 0f937cf2-a4b2-448b-88ce-aa05a2029cff 2020-07-01 22:48:20.145634 34489 593 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-01\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.590368 34490 231 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.60845 34491 233 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.626686 34492 229 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.644298 34493 1932 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 970\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.664662 34494 215 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.682408 34495 82 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.699051 34496 64 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.1E2\n 6 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.715911 34497 62 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.733382 34498 67 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.751766 34499 88 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.771713 34500 206 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.790837 34501 111 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.810859 34502 92 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.858023 34503 210 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.876689 34504 244 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.895454 34505 204 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.914929 34506 1025 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.933349 34507 697 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.7E1\n 12 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.951774 34508 1933 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 524\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.973303 34509 1934 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 275\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:35.995085 34510 70 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:36.013917 34511 139 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:36.03169 34512 1935 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 479\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:36.052712 34513 1936 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 537\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 39aafdd3-7eb7-4ce0-956b-018e4767d172 2020-07-01 22:48:36.074114 34514 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-07-01 19:30:32.365534000 Z\n- &1 2020-07-01 20:38:32.960699000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-01 22:49:07.857205679 Z\nsign_in_count:\n- 228\n- 229\n 459 \N 189.186.153.73 30fd724a-2385-4224-ac78-56638077cfaf 2020-07-01 22:49:07.863743 34515 21 User \N \N 21 User \N update ---\nunique_session_id:\n- pBzxxCEzAhb7_zNgjVug\n- UXRPVnUZS2sx3PpUVxAU\n 460 \N 189.186.153.73 30fd724a-2385-4224-ac78-56638077cfaf 2020-07-01 22:49:07.878974 34516 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-01 20:40:43.911482000 Z\n- &1 2020-07-01 22:39:45.100403000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-01 22:58:52.409003772 Z\nsign_in_count:\n- 1598\n- 1599\n 3198 \N 189.186.153.73 62c67a36-daea-48a4-828d-d77affefb679 2020-07-01 22:58:52.434482 34517 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CypQmgxf32qxaGL2o9mG\n- fVTZCAyew2WNsyHed-vd\n 3199 \N 189.186.153.73 62c67a36-daea-48a4-828d-d77affefb679 2020-07-01 22:58:52.459015 34518 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-01 19:13:05.230163000 Z\n- &1 2020-07-01 20:06:18.866945000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-01 23:00:59.536845271 Z\nsign_in_count:\n- 105\n- 106\n 213 \N 189.186.153.73 1f903c96-45db-4610-adf8-c8a7f71e2339 2020-07-01 23:00:59.542356 34519 18 User \N \N 18 User \N update ---\nunique_session_id:\n- "-5Cj-KbwbBL5ddm8QjxX"\n- gAjoy_rDg7C7iAdUEf2o\n 214 \N 189.186.153.73 1f903c96-45db-4610-adf8-c8a7f71e2339 2020-07-01 23:00:59.558895 34520 2490 Sale \N \N 18 User \N create ---\ncustomer_id: 3\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2020-07-01\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-359\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.153.73 2ca7c4da-570d-4076-87e8-f00a70b39ba1 2020-07-01 23:03:08.98202 34521 954 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.153.73 2ca7c4da-570d-4076-87e8-f00a70b39ba1 2020-07-01 23:03:09.01812 34522 955 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.153.73 2ca7c4da-570d-4076-87e8-f00a70b39ba1 2020-07-01 23:03:09.057574 34523 2490 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-359 cancelada. 189.186.153.73 f8b6581f-688d-4bcd-aded-08010d17fd34 2020-07-01 23:03:36.307438 34524 955 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.153.73 f8b6581f-688d-4bcd-aded-08010d17fd34 2020-07-01 23:03:36.334523 34525 954 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.153.73 f8b6581f-688d-4bcd-aded-08010d17fd34 2020-07-01 23:03:36.362269 34526 2491 Sale \N \N 18 User \N create ---\ncustomer_id: 3\nuser_id: 18\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2020-07-01\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-360\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.153.73 e9e38b1c-ccd4-4b55-bc3e-c67a30fe5c6f 2020-07-01 23:04:17.014039 34527 954 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.153.73 e9e38b1c-ccd4-4b55-bc3e-c67a30fe5c6f 2020-07-01 23:04:17.040183 34528 955 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.153.73 e9e38b1c-ccd4-4b55-bc3e-c67a30fe5c6f 2020-07-01 23:04:17.063915 34529 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-06-30 18:54:38.252313000 Z\n- &1 2020-07-01 17:11:48.892821000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-02 00:55:36.934224551 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117186\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729294\n mask_addr: 4294967295\nsign_in_count:\n- 563\n- 564\n 1131 \N 201.175.156.142 5dd68929-7cef-45ea-b7f9-4109eaff7e6c 2020-07-02 00:55:36.941634 34530 2 User \N \N 2 User \N update ---\nunique_session_id:\n- kh-xAxQiLciFz3jMdXyq\n- SvWD8GD8K9Q-XnmzBxCW\n 1132 \N 201.175.156.142 5dd68929-7cef-45ea-b7f9-4109eaff7e6c 2020-07-02 00:55:36.958004 34531 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-06-26 20:57:37.414751000 Z\n- &1 2020-07-01 19:34:50.632773000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-02 05:15:25.737149450 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537715\n mask_addr: 4294967295\nsign_in_count:\n- 131\n- 132\n 264 \N 177.228.110.115 50475b11-b1b1-429e-8d59-43b3f7927905 2020-07-02 05:15:25.746679 34532 9 User \N \N 9 User \N update ---\nunique_session_id:\n- GeT5kc9DzxRzwxLW1Ni1\n- 2-z-hb_RtmEskyqMYEzK\n 265 \N 177.228.110.115 50475b11-b1b1-429e-8d59-43b3f7927905 2020-07-02 05:15:25.766059 34533 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-01 17:11:48.892821000 Z\n- &1 2020-07-02 00:55:36.934224000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-02 16:20:36.146864018 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117186\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729294\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729294\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117186\n mask_addr: 4294967295\nsign_in_count:\n- 564\n- 565\n 1133 \N 187.149.50.130 e5e0f2fc-294a-4ce5-8f6b-f1b01184c2e4 2020-07-02 16:20:36.178214 34534 2 User \N \N 2 User \N update ---\nunique_session_id:\n- SvWD8GD8K9Q-XnmzBxCW\n- tT-Q481HV2sx5JxQgQhf\n 1134 \N 187.149.50.130 e5e0f2fc-294a-4ce5-8f6b-f1b01184c2e4 2020-07-02 16:20:36.210563 34562 604 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 189.186.153.73 eeec6d8d-d0df-40a0-ab88-ed1a020c6e7a 2020-07-02 18:04:06.487215 34535 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-01 22:39:45.100403000 Z\n- &1 2020-07-01 22:58:52.409003000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-02 17:27:37.025086061 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117186\n mask_addr: 4294967295\nsign_in_count:\n- 1599\n- 1600\n 3200 \N 187.149.50.130 31f337ac-28f1-4067-90f9-0f3fef583041 2020-07-02 17:27:37.032268 34536 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fVTZCAyew2WNsyHed-vd\n- ZPoBZ5gYH1sxXhtqQN6o\n 3201 \N 187.149.50.130 31f337ac-28f1-4067-90f9-0f3fef583041 2020-07-02 17:27:37.052713 34537 54 Product \N \N 4 User \N update ---\nname:\n- OHAJ221\n- OKAN113\n 3 El producto BOL-54 fue modificado. 187.149.50.130 06aa6502-53d7-45e6-a805-f992c695ecba 2020-07-02 17:43:28.533922 34538 1832 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.50.130 5e2169a9-f470-40ca-a2a8-2166c34a66af 2020-07-02 17:48:50.825121 34539 1832 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 187.149.50.130 5b0dc0d3-966a-4637-9025-12c939e0d8ec 2020-07-02 17:52:50.303543 34540 1836 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 6 \N 187.149.50.130 5da2b611-0162-4fda-97eb-9448a441c2ed 2020-07-02 17:52:57.913228 34541 1836 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.8E1\n 7 \N 187.149.50.130 ebe245c5-014d-4cad-96e5-cea9b5452432 2020-07-02 17:53:01.310726 34542 600 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-07-02\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.50.130 11c2b0de-71e7-43b3-8fe0-23e5d849b0db 2020-07-02 17:53:02.284939 34543 931 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.50.130 04a5d836-be85-45c4-acf5-4b7a5aebffdd 2020-07-02 17:55:33.70927 34544 601 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 2\ntransfer_date: 2020-07-02\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a S BY SUO creado. 187.149.50.130 a3f57b27-1e3d-49ee-883e-702b98911a51 2020-07-02 17:55:36.24467 34545 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-01 22:58:52.409003000 Z\n- &1 2020-07-02 17:27:37.025086000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-02 18:01:25.671120463 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117186\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117186\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\nsign_in_count:\n- 1600\n- 1601\n 3202 \N 189.186.153.73 02b6ec4a-567c-4ab6-aebd-6eab72a8bf42 2020-07-02 18:01:25.678823 34546 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZPoBZ5gYH1sxXhtqQN6o\n- wxhQDc1ypMBzPusBhXwt\n 3203 \N 189.186.153.73 02b6ec4a-567c-4ab6-aebd-6eab72a8bf42 2020-07-02 18:01:25.697837 34547 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-02 17:27:37.025086000 Z\n- &1 2020-07-02 18:01:25.671120000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-02 18:02:07.163605339 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117186\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117186\n mask_addr: 4294967295\nsign_in_count:\n- 1601\n- 1602\n 3204 \N 187.149.50.130 468b3b7f-3860-4a09-b7f6-f38b775a2358 2020-07-02 18:02:07.207321 34548 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wxhQDc1ypMBzPusBhXwt\n- N2LUV2yS9yqRaNaVrEN5\n 3205 \N 187.149.50.130 468b3b7f-3860-4a09-b7f6-f38b775a2358 2020-07-02 18:02:07.252087 34549 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-07-01 20:38:32.960699000 Z\n- &1 2020-07-01 22:49:07.857205000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-02 18:02:36.277997557 Z\nsign_in_count:\n- 229\n- 230\n 461 \N 189.186.153.73 27bd64d4-e43e-4e75-a7b5-193bbdbf1627 2020-07-02 18:02:36.284017 34550 21 User \N \N 21 User \N update ---\nunique_session_id:\n- UXRPVnUZS2sx3PpUVxAU\n- YwbfgyS6su3zA-Jf-gz3\n 462 \N 189.186.153.73 27bd64d4-e43e-4e75-a7b5-193bbdbf1627 2020-07-02 18:02:36.298698 34551 1189 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.153.73 cdb24996-b11c-42a0-96b7-bde6a5e4ae96 2020-07-02 18:02:55.865957 34552 602 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-07-02\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.153.73 ef13b728-59cb-49bd-9c82-83733607d265 2020-07-02 18:03:04.539084 34553 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-07-01 19:29:01.675557000 Z\n- &1 2020-07-01 20:20:51.681402000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-02 18:03:29.718660318 Z\nsign_in_count:\n- 85\n- 86\n 172 \N 189.186.153.73 3a852f18-80a7-481f-aa72-9997e7e13668 2020-07-02 18:03:29.724509 34554 25 User \N \N 25 User \N update ---\nunique_session_id:\n- nEJRo1stzuKj-d8daizy\n- AtNSuqheTyHZM1U5vDVm\n 173 \N 189.186.153.73 3a852f18-80a7-481f-aa72-9997e7e13668 2020-07-02 18:03:29.738671 34555 600 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-02\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.153.73 e79b06a0-aae6-4773-b567-556b6da51883 2020-07-02 18:03:53.465964 34556 1937 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1126\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.7E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 e79b06a0-aae6-4773-b567-556b6da51883 2020-07-02 18:03:53.49 34557 1938 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1122\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 e79b06a0-aae6-4773-b567-556b6da51883 2020-07-02 18:03:53.519895 34558 602 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-02\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.153.73 eeec6d8d-d0df-40a0-ab88-ed1a020c6e7a 2020-07-02 18:04:06.397065 34559 1290 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.153.73 eeec6d8d-d0df-40a0-ab88-ed1a020c6e7a 2020-07-02 18:04:06.423911 34560 784 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.7E1\n 13 \N 189.186.153.73 eeec6d8d-d0df-40a0-ab88-ed1a020c6e7a 2020-07-02 18:04:06.451354 34561 1066 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 189.186.153.73 eeec6d8d-d0df-40a0-ab88-ed1a020c6e7a 2020-07-02 18:04:06.469422 34563 670 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.153.73 eeec6d8d-d0df-40a0-ab88-ed1a020c6e7a 2020-07-02 18:04:06.505823 34564 647 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 189.186.153.73 eeec6d8d-d0df-40a0-ab88-ed1a020c6e7a 2020-07-02 18:04:06.523179 34565 1892 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.153.73 eeec6d8d-d0df-40a0-ab88-ed1a020c6e7a 2020-07-02 18:04:06.541073 34566 1939 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 657\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 eeec6d8d-d0df-40a0-ab88-ed1a020c6e7a 2020-07-02 18:04:06.562495 34567 791 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.1E2\n 8 \N 189.186.153.73 eeec6d8d-d0df-40a0-ab88-ed1a020c6e7a 2020-07-02 18:04:06.580882 34568 1023 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 189.186.153.73 eeec6d8d-d0df-40a0-ab88-ed1a020c6e7a 2020-07-02 18:04:06.60018 34569 644 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.153.73 eeec6d8d-d0df-40a0-ab88-ed1a020c6e7a 2020-07-02 18:04:06.618417 34570 1940 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 637\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 eeec6d8d-d0df-40a0-ab88-ed1a020c6e7a 2020-07-02 18:04:06.639808 34571 256 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.153.73 eeec6d8d-d0df-40a0-ab88-ed1a020c6e7a 2020-07-02 18:04:06.658372 34572 1914 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.50.130 0b783131-9fe5-46de-931e-98cecd0f43bf 2020-07-02 18:04:34.183586 34573 603 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-07-02\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.50.130 7f4c5928-1614-4a5f-87c2-bed3c82d540e 2020-07-02 18:05:25.722211 34574 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-07-01 22:49:07.857205000 Z\n- &1 2020-07-02 18:02:36.277997000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-02 18:26:16.932940426 Z\nsign_in_count:\n- 230\n- 231\n 463 \N 189.186.153.73 9198f7a5-78cb-42a7-8b22-c88b15cbdff5 2020-07-02 18:26:16.938328 34575 21 User \N \N 21 User \N update ---\nunique_session_id:\n- YwbfgyS6su3zA-Jf-gz3\n- YZndmT-nZnEP_sBwVLae\n 464 \N 189.186.153.73 9198f7a5-78cb-42a7-8b22-c88b15cbdff5 2020-07-02 18:26:16.952883 34576 2492 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 934\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2020-07-02\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1212\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.50.130 a5664477-9ddb-4732-9678-97ad5ac210dd 2020-07-02 18:46:32.750789 34577 739 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.50.130 a5664477-9ddb-4732-9678-97ad5ac210dd 2020-07-02 18:46:32.783636 34578 2492 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.50.130 b58bccf1-9bfd-4ef8-9cef-9994f9ac8147 2020-07-02 18:46:46.671225 34579 3357 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 934\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.569E3\nmove_type: '1'\nsale_id: 2492\ncardnumber: 1256\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1212\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1212 187.149.50.130 b58bccf1-9bfd-4ef8-9cef-9994f9ac8147 2020-07-02 18:46:46.702707 34580 2493 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 934\namount: !ruby/object:BigDecimal 18:0.519E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.519E3\nstatus: 0\ndate_sale: 2020-07-02\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1213\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.50.130 9af8e712-9289-4e87-b750-96f06cc59e00 2020-07-02 19:04:16.841127 34581 1628 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.50.130 9af8e712-9289-4e87-b750-96f06cc59e00 2020-07-02 19:04:16.87734 34582 2493 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.50.130 19b302a0-8b4c-491e-bc44-3f92f9cafef9 2020-07-02 19:04:28.604833 34583 3358 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 934\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.519E3\nmove_type: '1'\nsale_id: 2493\ncardnumber: 1255\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1213\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1213 187.149.50.130 19b302a0-8b4c-491e-bc44-3f92f9cafef9 2020-07-02 19:04:28.627257 34584 2494 Sale \N \N 2 User \N create ---\ncustomer_id: 322\nuser_id: 2\nopen_cash_register_id: 934\namount: !ruby/object:BigDecimal 18:0.1178E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1178E4\nstatus: 0\ndate_sale: 2020-07-02\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-1214\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.50.130 89312629-1797-4236-bec7-f0d2584cc72b 2020-07-02 19:07:00.590916 34585 1859 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.50.130 89312629-1797-4236-bec7-f0d2584cc72b 2020-07-02 19:07:00.62599 34586 1860 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.50.130 89312629-1797-4236-bec7-f0d2584cc72b 2020-07-02 19:07:00.673988 34587 599 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-02\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.153.73 f6a84018-b4b1-487a-b4aa-e8d700bce951 2020-07-02 19:50:34.355613 34588 1941 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 17\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 f6a84018-b4b1-487a-b4aa-e8d700bce951 2020-07-02 19:50:34.411318 34589 22 User \N \N 22 User \N update ---\nlast_sign_in_at:\n- 2020-06-24 21:53:35.966680000 Z\n- &1 2020-06-25 19:04:57.789633000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-02 19:52:00.656264248 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116072\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\nsign_in_count:\n- 13\n- 14\n 28 \N 189.186.153.73 0faa547b-ea0f-4049-8462-45774a23eff1 2020-07-02 19:52:00.663755 34590 22 User \N \N 22 User \N update ---\nunique_session_id:\n- 7kHb-_PesBVWgLcEoe4M\n- q1CSvDgHtr3y3m8suEiY\n 29 \N 189.186.153.73 0faa547b-ea0f-4049-8462-45774a23eff1 2020-07-02 19:52:00.679573 34591 585 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-02\n 2 Se dio entrada a traspaso de SUO a Almacen central 189.186.153.73 b192ce2a-1806-4166-83f7-0282c18d69b0 2020-07-02 19:52:43.27742 34592 583 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-02\n 2 Se dio entrada a traspaso de SUO a Almacen central 189.186.153.73 c0cb9375-42d6-403b-9c71-6002395813a5 2020-07-02 19:52:57.141849 34593 579 Transfer \N \N 22 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 22\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-02\n 2 Se dio entrada a traspaso de S BY SUO a Almacen central 189.186.153.73 641b766d-0264-4de5-8d91-7824ee7ed41d 2020-07-02 19:53:20.658885 34594 604 Transfer \N \N 22 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-07-02\nuser_id: 22\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.153.73 ac07c61b-f9f7-4ddd-909a-f87ee6a28b73 2020-07-02 19:54:02.670624 34595 604 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-02\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.50.130 e101f167-33a9-469a-96e8-a2b8bd71d49f 2020-07-02 20:01:05.384837 34596 1441 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.7E1\n 5 \N 187.149.50.130 e101f167-33a9-469a-96e8-a2b8bd71d49f 2020-07-02 20:01:05.405443 34597 603 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-02\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.50.130 dd1fafe6-b675-4157-83d3-49e908821b04 2020-07-02 20:01:18.372013 34598 1942 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1089\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.50.130 dd1fafe6-b675-4157-83d3-49e908821b04 2020-07-02 20:01:18.403225 34599 2495 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 934\namount: !ruby/object:BigDecimal 18:0.759E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2020-07-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1215\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.50.130 a760dd3a-cf3f-4594-a4a5-6d5eeb8b6fa5 2020-07-02 20:01:45.476091 34600 1441 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 187.149.50.130 a760dd3a-cf3f-4594-a4a5-6d5eeb8b6fa5 2020-07-02 20:01:45.510994 34601 2495 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.50.130 549aa007-5a1e-4958-89d8-a2280e32dc1f 2020-07-02 20:01:50.372312 34602 3359 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 934\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.759E3\nmove_type: '1'\nsale_id: 2495\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1215\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.759E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1215 187.149.50.130 549aa007-5a1e-4958-89d8-a2280e32dc1f 2020-07-02 20:01:50.397282 34603 308 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 934\nquantity: !ruby/object:BigDecimal 18:0.2E3\nstatus: 1\nobservations: 'DIFERENCIA DE PAGO SEMANA 29 JUNIO A 4 JULIO DE ROCIO '\nexpense_date: 2020-07-02\nexpense_code: PV1-E-212\n 1 Egreso por 200.0 registrado 187.149.50.130 646b211a-2bbc-44f7-8a56-2ab7c9269669 2020-07-02 20:03:03.121875 34604 3360 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 934\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 308\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.50.130 646b211a-2bbc-44f7-8a56-2ab7c9269669 2020-07-02 20:03:03.147126 34605 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-07-02 18:02:36.277997000 Z\n- &1 2020-07-02 18:26:16.932940000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-02 20:10:51.730262556 Z\nsign_in_count:\n- 231\n- 232\n 465 \N 189.186.153.73 52ce5a73-6fa0-4f13-90a0-1b1c4b644a0d 2020-07-02 20:10:51.736915 34606 21 User \N \N 21 User \N update ---\nunique_session_id:\n- YZndmT-nZnEP_sBwVLae\n- 1qcYLNQJkTTb7CU2j3VX\n 466 \N 189.186.153.73 52ce5a73-6fa0-4f13-90a0-1b1c4b644a0d 2020-07-02 20:10:51.753741 34607 605 Transfer \N \N 22 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-02\nuser_id: 22\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.153.73 ef7a7444-90e6-4a41-80a2-b1b4ea4fa24f 2020-07-02 20:19:42.021825 34608 606 Transfer \N \N 22 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-02\nuser_id: 22\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.153.73 7bb2a697-ddbe-4db4-8d38-4a222d83a10b 2020-07-02 20:22:46.080319 34609 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-02 18:01:25.671120000 Z\n- &1 2020-07-02 18:02:07.163605000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-02 20:31:27.551140145 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117186\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117186\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\nsign_in_count:\n- 1602\n- 1603\n 3206 \N 189.186.153.73 5ea0897f-089e-4d18-ac5c-0ca8f162e402 2020-07-02 20:31:27.559398 34610 4 User \N \N 4 User \N update ---\nunique_session_id:\n- N2LUV2yS9yqRaNaVrEN5\n- qFgvbotxsZymEvq4buBx\n 3207 \N 189.186.153.73 5ea0897f-089e-4d18-ac5c-0ca8f162e402 2020-07-02 20:31:27.579651 34611 2496 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 934\namount: !ruby/object:BigDecimal 18:0.1778E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1778E4\nstatus: 0\ndate_sale: 2020-07-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1216\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.50.130 bb2eb9e1-68ae-4d91-9396-ee8d2309262f 2020-07-02 20:56:13.273751 34612 1301 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.50.130 bb2eb9e1-68ae-4d91-9396-ee8d2309262f 2020-07-02 20:56:13.317315 34613 1685 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.50.130 bb2eb9e1-68ae-4d91-9396-ee8d2309262f 2020-07-02 20:56:13.351867 34614 2496 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.50.130 bc185384-15a7-43c8-b7b5-20e96e8dbaaf 2020-07-02 20:56:20.995063 34615 3361 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 934\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1778E4\nmove_type: '1'\nsale_id: 2496\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1216\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1778E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1216 187.149.50.130 bc185384-15a7-43c8-b7b5-20e96e8dbaaf 2020-07-02 20:56:21.021282 34616 367 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '367'\n is_parent: false\n sku: PER-367\n name: BODYS VICTORIA\n description: BODYS VICTORIA\n price_base: '153.6'\n price_sale: '350.0'\n img_product: BODY.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '15'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000367'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2020-07-02 21:04:01.647480242 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '367'\n sku: PER-367\n name: BODYS VICTORIA\n description: BODYS VICTORIA\n price_base: '153.60'\n price_sale: '350.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:16.416109'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000367'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '15'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '367'\n type: *3\n value: 367\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PER-367\n type: *7\n value: PER-367\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BODYS VICTORIA\n type: *8\n value: BODYS VICTORIA\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BODYS VICTORIA\n type: *6\n value: BODYS VICTORIA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '153.6'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1536E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '350.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.35E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BODY.jpg\n type: *2\n value: BODY.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '15'\n type: *3\n value: 15\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000367'\n type: *2\n value: '0000367'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BODY.jpg\n 3 El producto PER-367 fue modificado. 189.186.153.73 960e9cfa-1c00-40e5-985b-a82b67a1f81f 2020-07-02 21:04:01.700338 34617 1121 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1121'\n is_parent: false\n sku: BOL-1121\n name: 2BLCV20395\n description: BOLSO CLOE NEGRO Y ROSA ELECTRICO\n price_base: '849.5'\n price_sale: '1699.0'\n img_product: ELECTRICO.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001121'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-05-03 23:55:49.475254'\n updated_at: &12 2020-07-02 21:16:54.992354704 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1121'\n sku: BOL-1121\n name: 2BLCV20395\n description: BOLSO CLOE NEGRO Y ROSA ELECTRICO\n price_base: '849.50'\n price_sale: '1699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-05-03 23:55:49.475254'\n updated_at: '2020-05-03 23:55:49.519968'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001121'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1121'\n type: *3\n value: 1121\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1121\n type: *7\n value: BOL-1121\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 2BLCV20395\n type: *8\n value: 2BLCV20395\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO CLOE NEGRO Y ROSA ELECTRICO\n type: *6\n value: BOLSO CLOE NEGRO Y ROSA ELECTRICO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '849.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1699E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: ELECTRICO.jpg\n type: *2\n value: ELECTRICO.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001121'\n type: *2\n value: '0001121'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-05-03 23:55:49.475254'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- ELECTRICO.jpg\n 3 El producto BOL-1121 fue modificado. 189.186.153.73 727294b0-9cc5-4789-85d9-29b1c45c74f2 2020-07-02 21:16:55.059644 34618 324 Customer \N \N 2 User \N create ---\nnick_name: kitzya gutierrez\nphone: "(667) 139-9789"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente kitzya gutierrez fue registrado. 187.149.50.130 401f10fd-316a-4135-b976-a96c638a3218 2020-07-02 21:44:34.765344 34619 2497 Sale \N \N 2 User \N create ---\ncustomer_id: 324\nuser_id: 2\nopen_cash_register_id: 934\namount: !ruby/object:BigDecimal 18:0.1768E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1768E4\nstatus: 0\ndate_sale: 2020-07-02\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1217\nexpiration_date: 2020-08-06\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.50.130 3b271f3c-7028-42f4-bc22-c708ba18b290 2020-07-02 21:46:16.629291 34620 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 16 \N 187.149.50.130 3b271f3c-7028-42f4-bc22-c708ba18b290 2020-07-02 21:46:16.673838 34621 1291 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.50.130 3b271f3c-7028-42f4-bc22-c708ba18b290 2020-07-02 21:46:16.70467 34622 3362 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 934\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 2497\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1217\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1217 187.149.50.130 a7b08015-cabf-4849-bd6e-9582d8fc47ac 2020-07-02 21:46:25.4134 34623 2497 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.50.130 0966fbec-0e45-47ca-8d11-544e74f1ba6f 2020-07-02 21:46:27.75407 34624 2498 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 934\namount: !ruby/object:BigDecimal 18:0.1395E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1395E4\nstatus: 0\ndate_sale: 2020-07-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1218\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.50.130 14e708f8-bf8c-47d5-8919-7ee01959f53b 2020-07-02 21:54:19.038761 34625 533 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.50.130 14e708f8-bf8c-47d5-8919-7ee01959f53b 2020-07-02 21:54:19.074657 34626 2498 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.50.130 b5bccfd0-8695-41e1-ac1b-d27c880e359b 2020-07-02 21:54:23.976822 34627 3363 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 934\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1395E4\nmove_type: '1'\nsale_id: 2498\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1218\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1395E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1218 187.149.50.130 b5bccfd0-8695-41e1-ac1b-d27c880e359b 2020-07-02 21:54:24.004518 34628 956 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 934\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.562E4\namount_out: !ruby/object:BigDecimal 18:0.22E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.45E4\ncash_fund: !ruby/object:BigDecimal 18:0.966E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5466E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.50.130 13fbbf6b-3ab0-4a8d-a1f1-2a4f593a0e69 2020-07-02 21:59:01.982436 34629 934 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.50.130 13fbbf6b-3ab0-4a8d-a1f1-2a4f593a0e69 2020-07-02 21:59:02.003869 34630 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-07-01 19:34:50.632773000 Z\n- &1 2020-07-02 05:15:25.737149000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-02 22:12:25.281060932 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537715\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537715\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147106003\n mask_addr: 4294967295\nsign_in_count:\n- 132\n- 133\n 266 \N 187.149.6.211 1ff93bb0-4cb8-432d-ac5e-32df415cca0a 2020-07-02 22:12:25.289867 34631 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 2-z-hb_RtmEskyqMYEzK\n- Ae8A_sY6eQ8hy3yPJDyn\n 267 \N 187.149.6.211 1ff93bb0-4cb8-432d-ac5e-32df415cca0a 2020-07-02 22:12:25.310387 34632 34 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '34'\n is_parent: false\n sku: CAR-34\n name: YRBA282\n description: CARTERA CLOE\n price_base: '399.5'\n price_sale: '799.0'\n img_product: WIN_20200702_17_25_20_Pro__2_.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000034'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862612'\n updated_at: &12 2020-07-02 23:25:45.865570804 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '34'\n sku: CAR-34\n name: YRBA282\n description: CARTERA CLOE\n price_base: '399.50'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862612'\n updated_at: '2019-02-04 09:10:22.572278'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000034'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '34'\n type: *3\n value: 34\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-34\n type: *7\n value: CAR-34\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: YRBA282\n type: *8\n value: YRBA282\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA CLOE\n type: *6\n value: CARTERA CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '399.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20200702_17_25_20_Pro__2_.jpg\n type: *2\n value: WIN_20200702_17_25_20_Pro__2_.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000034'\n type: *2\n value: '0000034'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862612'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20200702_17_25_20_Pro__2_.jpg\n 3 El producto CAR-34 fue modificado. 189.186.153.73 0d298a93-b0e8-493c-9b7d-1b4077c1b8e1 2020-07-02 23:25:45.951907 34633 33 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '33'\n is_parent: false\n sku: CAR-33\n name: NAJA315\n description: CARTERA CLOE\n price_base: '399.5'\n price_sale: '799.0'\n img_product: WIN_20200702_17_28_50_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000033'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862611'\n updated_at: &12 2020-07-02 23:27:39.137686208 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '33'\n sku: CAR-33\n name: NAJA315\n description: CARTERA CLOE\n price_base: '399.50'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862611'\n updated_at: '2019-02-04 09:10:18.450242'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000033'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '33'\n type: *3\n value: 33\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-33\n type: *7\n value: CAR-33\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: NAJA315\n type: *8\n value: NAJA315\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA CLOE\n type: *6\n value: CARTERA CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '399.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20200702_17_28_50_Pro.jpg\n type: *2\n value: WIN_20200702_17_28_50_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000033'\n type: *2\n value: '0000033'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862611'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20200702_17_28_50_Pro.jpg\n 3 El producto CAR-33 fue modificado. 189.186.153.73 51775a81-2c4a-4e82-857f-28453a2b3bee 2020-07-02 23:27:39.181776 34634 333 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '333'\n is_parent: false\n sku: CAR-333\n name: OKYN278\n description: CARTERA CLOE TIPO BOLSO TINTA Y AZUL\n price_base: '599.5'\n price_sale: '1199.0'\n img_product: WIN_20200702_17_31_38_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000333'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: &12 2020-07-02 23:31:29.862604221 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '333'\n sku: CAR-333\n name: OKYN278\n description: CARTERA CLOE TIPO BOLSO TINTA Y AZUL\n price_base: '599.50'\n price_sale: '1199.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-03 00:00:00'\n updated_at: '2019-02-04 09:10:18.584907'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000333'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '333'\n type: *3\n value: 333\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-333\n type: *7\n value: CAR-333\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: OKYN278\n type: *8\n value: OKYN278\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA CLOE TIPO BOLSO TINTA Y AZUL\n type: *6\n value: CARTERA CLOE TIPO BOLSO TINTA Y AZUL\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '599.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.5995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1199.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1199E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20200702_17_31_38_Pro.jpg\n type: *2\n value: WIN_20200702_17_31_38_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000333'\n type: *2\n value: '0000333'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-03 00:00:00'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20200702_17_31_38_Pro.jpg\n 3 El producto CAR-333 fue modificado. 189.186.153.73 600ad824-7ac9-4a95-8536-caad9beb703d 2020-07-02 23:31:29.905072 34635 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-07-02 18:26:16.932940000 Z\n- &1 2020-07-02 20:10:51.730262000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-03 00:33:18.386065425 Z\nsign_in_count:\n- 232\n- 233\n 467 \N 189.186.153.73 59097bae-379a-4cce-adf4-edcdbf0fd510 2020-07-03 00:33:18.393345 34636 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 1qcYLNQJkTTb7CU2j3VX\n- C7y1RegcK1M7CoUx7Ef-\n 468 \N 189.186.153.73 59097bae-379a-4cce-adf4-edcdbf0fd510 2020-07-03 00:33:18.409787 34659 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qFgvbotxsZymEvq4buBx\n- wcqzy6oaXvAKax5XkNyy\n 3209 \N 189.186.153.73 b4e2f766-192f-4155-8560-738efcb959e4 2020-07-03 21:47:27.358364 34637 2499 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.56E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.11E3\ntotal: !ruby/object:BigDecimal 18:0.45E3\nstatus: 0\ndate_sale: 2020-07-02\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-361\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.153.73 0408a60b-54b3-431a-a041-181d47bdaed8 2020-07-03 00:36:56.255303 34638 830 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 189.186.153.73 0408a60b-54b3-431a-a041-181d47bdaed8 2020-07-03 00:36:56.304686 34639 2499 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.153.73 8854000d-948e-46f5-b60b-db9c91891349 2020-07-03 00:37:08.25196 34640 3364 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.45E3\nmove_type: '1'\nsale_id: 2499\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-361\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.5E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-361 189.186.153.73 8854000d-948e-46f5-b60b-db9c91891349 2020-07-03 00:37:08.279868 34641 2499 Sale \N \N 21 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-361 cancelada. 189.186.153.73 612b4037-7fa2-4427-8afa-501a066dc6c1 2020-07-03 00:37:28.787204 34642 3364 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 931\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.45E3\nmove_type: '1'\nsale_id: 2499\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-361\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.5E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.153.73 612b4037-7fa2-4427-8afa-501a066dc6c1 2020-07-03 00:37:28.820022 34643 830 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 11 \N 189.186.153.73 612b4037-7fa2-4427-8afa-501a066dc6c1 2020-07-03 00:37:28.857605 34644 2500 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 931\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2020-07-02\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-362\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.153.73 19413c9d-ffe1-4c81-b7b4-dd24756a9dde 2020-07-03 00:37:55.053385 34645 982 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.153.73 19413c9d-ffe1-4c81-b7b4-dd24756a9dde 2020-07-03 00:37:55.083973 34646 2500 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.153.73 b9e4959e-840e-4db1-8e57-5a3d574b15a2 2020-07-03 00:38:00.171782 34647 3365 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 2500\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-362\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-362 189.186.153.73 b9e4959e-840e-4db1-8e57-5a3d574b15a2 2020-07-03 00:38:00.20403 34648 957 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 931\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.4325565E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.1049E4\ncash_fund: !ruby/object:BigDecimal 18:0.2E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1249E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.153.73 a6caf12e-5a1d-4e05-98a8-0e2ac65eaf54 2020-07-03 01:50:57.263315 34649 931 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.153.73 a6caf12e-5a1d-4e05-98a8-0e2ac65eaf54 2020-07-03 01:50:57.282691 34650 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-02 00:55:36.934224000 Z\n- &1 2020-07-02 16:20:36.146864000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-03 20:58:16.098177415 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729294\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117186\n mask_addr: 4294967295\nsign_in_count:\n- 565\n- 566\n 1135 \N 187.149.50.130 65899d65-571e-48ed-a348-5eba904fbfcb 2020-07-03 20:58:16.138357 34651 2 User \N \N 2 User \N update ---\nunique_session_id:\n- tT-Q481HV2sx5JxQgQhf\n- wsFtrAWhSx3cn1dD9L2-\n 1136 \N 187.149.50.130 65899d65-571e-48ed-a348-5eba904fbfcb 2020-07-03 20:58:16.17495 34652 935 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.966E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 966.0 187.149.50.130 09533144-5d7e-417b-b8c5-ea9e953a1ae2 2020-07-03 20:58:46.084464 34653 2501 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 935\namount: !ruby/object:BigDecimal 18:0.1668E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1668E4\nstatus: 0\ndate_sale: 2020-07-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1219\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.50.130 66195bd1-f1ae-4d4a-addc-3ddcbb2f2085 2020-07-03 21:18:38.341003 34654 1938 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.50.130 66195bd1-f1ae-4d4a-addc-3ddcbb2f2085 2020-07-03 21:18:38.375804 34655 1809 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.50.130 66195bd1-f1ae-4d4a-addc-3ddcbb2f2085 2020-07-03 21:18:38.411475 34656 2501 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.50.130 c426ba36-871a-4306-b253-ad907058bb68 2020-07-03 21:18:44.76768 34657 3366 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 935\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1668E4\nmove_type: '1'\nsale_id: 2501\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1219\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1668E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1219 187.149.50.130 c426ba36-871a-4306-b253-ad907058bb68 2020-07-03 21:18:44.791026 34658 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-02 18:02:07.163605000 Z\n- &1 2020-07-02 20:31:27.551140000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-03 21:47:27.333597616 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117186\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\nsign_in_count:\n- 1603\n- 1604\n 3208 \N 189.186.153.73 b4e2f766-192f-4155-8560-738efcb959e4 2020-07-03 21:47:27.341121 34660 919 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.153.73 2efbe9ac-7be5-440c-a77b-0e302f17b392 2020-07-03 21:50:39.773288 34661 607 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-07-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.153.73 8e4a0de2-4e94-4bee-8138-2fb7ee19fa29 2020-07-03 21:51:15.313829 34662 608 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-07-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.153.73 c80f4c9b-07ee-47e6-bbe4-cc2a60951765 2020-07-03 21:52:08.609807 34663 309 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 935\nquantity: !ruby/object:BigDecimal 18:0.9E3\nstatus: 1\nobservations: sueldo\nexpense_date: 2020-07-03\nexpense_code: PV1-E-213\n 1 Egreso por 900.0 registrado 187.149.50.130 f888f6ba-f03c-4023-9aed-1ef93c5c34fd 2020-07-03 21:54:21.165277 34664 3367 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 935\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.9E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 309\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.50.130 f888f6ba-f03c-4023-9aed-1ef93c5c34fd 2020-07-03 21:54:21.185776 34665 607 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-03\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.50.130 3d6439a0-6e92-4fb0-945a-320451847e20 2020-07-03 21:54:42.089067 34666 34 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.50.130 3d6439a0-6e92-4fb0-945a-320451847e20 2020-07-03 21:54:42.107418 34667 608 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-03\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.50.130 3e1ea972-337a-4be5-ac52-3eff77dc2a8d 2020-07-03 21:55:02.39545 34668 709 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.50.130 3e1ea972-337a-4be5-ac52-3eff77dc2a8d 2020-07-03 21:55:02.415201 34669 2502 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 935\namount: !ruby/object:BigDecimal 18:0.83707E3\ntax: !ruby/object:BigDecimal 18:0.6193E2\ndiscount: !ruby/object:BigDecimal 18:0.45E3\ntotal: !ruby/object:BigDecimal 18:0.449E3\nstatus: 0\ndate_sale: 2020-07-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1220\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.50.130 b4de3195-3530-402c-8196-bd6690287f5c 2020-07-03 21:58:03.031031 34670 34 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.50.130 b4de3195-3530-402c-8196-bd6690287f5c 2020-07-03 21:58:03.061867 34671 2502 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.50.130 d4f65adc-d44a-4a25-875f-a9618461a660 2020-07-03 21:58:07.137476 34672 3368 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 935\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.449E3\nmove_type: '1'\nsale_id: 2502\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1220\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.449E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1220 187.149.50.130 d4f65adc-d44a-4a25-875f-a9618461a660 2020-07-03 21:58:07.165545 34673 958 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 935\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2117E4\namount_out: !ruby/object:BigDecimal 18:0.9E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.683E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2183E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.50.130 ff8b59fb-127c-46cf-a395-1729cf3db6bf 2020-07-03 22:00:17.944568 34674 935 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.50.130 ff8b59fb-127c-46cf-a395-1729cf3db6bf 2020-07-03 22:00:17.959775 34675 1241 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 12 \N 189.186.153.73 db01b9d5-89e8-49d1-be4c-d1a839a98634 2020-07-03 22:05:23.167812 34676 1241 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 189.186.153.73 ef272d29-ee2c-48e0-bde4-889e5e66f316 2020-07-03 22:05:26.452785 34677 609 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-07-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO a Almacen central creado. 189.186.153.73 4fcf39ca-b461-4714-9009-c35993c69803 2020-07-03 22:05:29.989279 34678 61 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.153.73 f7a29a8d-f718-426d-97de-c7ce2da3c098 2020-07-03 22:13:58.510601 34679 610 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.153.73 d95798ce-ad1e-4293-88d3-eea181aaba8e 2020-07-03 22:14:03.19044 34680 219 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.153.73 8a2b4373-ac4b-47be-80b8-9311c3429d62 2020-07-03 22:17:13.724889 34681 219 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.153.73 1c1f8595-977a-450a-8c40-7031653c3ed1 2020-07-03 22:17:16.506439 34682 478 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.153.73 410b9156-db5f-44fb-af2c-561bc3db7439 2020-07-03 22:20:33.011996 34683 478 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.153.73 acb370ef-e139-4f47-9da4-28fc1f97fee3 2020-07-03 22:20:40.428618 34684 183 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.153.73 ef498ef6-831b-4331-b4c3-c8c1d802bdb6 2020-07-03 22:22:54.376904 34685 183 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.153.73 3286f03f-7ec3-4b01-98be-7a8bbbc75683 2020-07-03 22:22:57.334159 34686 521 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 e02085ce-db6e-4fe9-aec6-bc7e8d68838a 2020-07-03 22:25:26.726435 34687 611 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.153.73 3e315cee-6ea5-4e5a-89e8-3651bad34b1b 2020-07-03 22:26:58.376389 34688 684 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 62bb668b-71a6-4611-9be8-198998fe47e6 2020-07-03 22:27:36.62025 34689 494 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.153.73 ef49a91c-2fe3-4457-863e-6047aa87500f 2020-07-03 22:27:57.142668 34690 612 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-07-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.153.73 097a5477-c649-4c50-8fc6-6d6394b9a3a2 2020-07-03 22:29:38.520548 34691 1261 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.153.73 c8d96ce1-6d72-42a2-a2da-5682fccefeee 2020-07-03 22:30:58.504499 34692 1262 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 27416d3c-23c3-4c8b-bd92-7f4d21ea1479 2020-07-03 22:31:04.511088 34693 1263 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.153.73 987b46b0-409b-4470-ae36-f8484bae4769 2020-07-03 22:31:09.384762 34694 1264 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.153.73 e5bcd9b1-abc1-4b95-8951-a9fb799d57ff 2020-07-03 22:31:17.155586 34695 1261 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.153.73 a01952e0-b312-4e3e-a12b-ded4eb03835a 2020-07-03 22:31:20.278234 34696 1263 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.153.73 4e972668-5e0f-4b99-91e8-146bfacaf549 2020-07-03 22:31:29.221964 34697 1264 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.153.73 0d839a34-1078-417d-96fb-ed95e3fb30b8 2020-07-03 22:31:31.497225 34698 613 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-07-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.153.73 d95c4e7e-f649-4949-8bc7-7fbc50b44221 2020-07-03 22:31:36.127226 34699 405 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.153.73 d1036e2c-2798-4604-8087-a7d51e752969 2020-07-03 22:38:02.434225 34700 405 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.153.73 77952e04-2f34-4bdd-bc1f-3f13ad465c92 2020-07-03 22:38:05.130863 34701 403 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.153.73 09aa05e9-f7be-4851-bfb7-fcfbff8f15d0 2020-07-03 23:08:38.624316 34702 438 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 189.186.153.73 b6c847f0-7ffd-4cf0-9776-e54a9cccaa85 2020-07-03 23:10:58.939937 34703 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-01 20:06:18.866945000 Z\n- &1 2020-07-01 23:00:59.536845000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-03 23:21:30.185815514 Z\nsign_in_count:\n- 106\n- 107\n 215 \N 189.186.153.73 01933aba-eacb-4cf3-9a93-f3d9607e9980 2020-07-03 23:21:30.193281 34704 18 User \N \N 18 User \N update ---\nunique_session_id:\n- gAjoy_rDg7C7iAdUEf2o\n- 8EmqxH9g_LBn4u3U_VJL\n 216 \N 189.186.153.73 01933aba-eacb-4cf3-9a93-f3d9607e9980 2020-07-03 23:21:30.210926 34705 612 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-03\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.153.73 9bce1af2-247d-4787-b82e-b7e81b7686f5 2020-07-03 23:24:05.762291 34706 1943 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 239\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 9bce1af2-247d-4787-b82e-b7e81b7686f5 2020-07-03 23:24:05.784914 34707 1944 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 483\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 9bce1af2-247d-4787-b82e-b7e81b7686f5 2020-07-03 23:24:05.81995 34708 611 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-03\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.153.73 96acf287-6dbd-4845-9768-f428c9e626cb 2020-07-03 23:24:31.362049 34709 1945 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 221\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 96acf287-6dbd-4845-9768-f428c9e626cb 2020-07-03 23:24:31.387198 34710 1946 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 475\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 96acf287-6dbd-4845-9768-f428c9e626cb 2020-07-03 23:24:31.408404 34711 1947 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 185\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 96acf287-6dbd-4845-9768-f428c9e626cb 2020-07-03 23:24:31.429522 34712 1948 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 485\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 96acf287-6dbd-4845-9768-f428c9e626cb 2020-07-03 23:24:31.453464 34713 610 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-03\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.153.73 22816da0-c806-4fd0-a149-787f0a688d43 2020-07-03 23:24:47.382629 34714 1949 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 63\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 22816da0-c806-4fd0-a149-787f0a688d43 2020-07-03 23:24:47.404814 34772 1956 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 189.186.153.73 1a9b7c33-5195-44de-ac2f-a1ab28289de2 2020-07-04 18:29:12.811874 34715 606 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-03\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.153.73 c0c80e87-c4f3-4ccb-af5f-7c04a7a4d4f5 2020-07-03 23:25:20.647018 34716 1950 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 158\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 c0c80e87-c4f3-4ccb-af5f-7c04a7a4d4f5 2020-07-03 23:25:20.691528 34717 605 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-03\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.153.73 cb87717c-5532-47d3-952a-f894d434ce99 2020-07-03 23:25:44.370972 34718 1951 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 190\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 cb87717c-5532-47d3-952a-f894d434ce99 2020-07-03 23:25:44.393664 34719 1952 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 404\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 cb87717c-5532-47d3-952a-f894d434ce99 2020-07-03 23:25:44.417798 34720 405 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.153.73 bb6c2089-adf1-4afc-9e21-ba83d7827b1f 2020-07-03 23:27:43.27989 34721 405 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.153.73 7101349a-9d36-42a9-a4a1-1db7b8f905fc 2020-07-03 23:27:48.20761 34722 614 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-07-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.153.73 75320124-c64d-4438-874c-992b1ee9303e 2020-07-03 23:27:51.095094 34723 275 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.153.73 bde254fa-2b45-441f-b9b7-0b1a3908413a 2020-07-03 23:29:05.438767 34724 511 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.153.73 3aeb2fb8-6f4e-4a0d-8ebb-155f5b03cd89 2020-07-03 23:29:36.291805 34725 511 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.153.73 ac0cf9bc-476b-4c39-91a1-bcecb31b8544 2020-07-03 23:29:42.573165 34726 615 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-07-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.153.73 0254a6ad-39c0-48f5-9cf1-c22a8d39954c 2020-07-03 23:29:42.887839 34727 385 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.153.73 8bed25f0-7445-4dd5-9853-16c467e5febb 2020-07-03 23:44:47.165217 34728 385 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.153.73 e089a490-bb17-451f-994a-e19fd99851f4 2020-07-03 23:44:49.604252 34729 1219 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.153.73 fedf51e9-7f5a-4d95-ab9b-2f6b89e76db1 2020-07-04 00:00:45.762369 34730 1219 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.153.73 13d6dc8a-8fda-4eda-9121-587406776074 2020-07-04 00:00:50.342173 34731 616 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 1\ntransfer_date: 2020-07-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO creado. 189.186.153.73 cd0d0533-5f34-458c-942b-15a978765161 2020-07-04 00:00:51.712458 34732 1734 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.153.73 f00cf372-445b-4a92-8105-5eb854aa1df2 2020-07-04 00:04:29.747979 34733 1734 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.153.73 e6ba4155-be2c-45b6-b241-7bc6b65890d3 2020-07-04 00:04:32.572684 34734 617 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-07-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.153.73 bfd2f1c3-166d-410e-a9ab-463b8967691a 2020-07-04 00:04:34.984067 34735 384 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 189.186.153.73 7b952b34-6fcb-4167-9322-09e602267a0b 2020-07-04 00:09:33.893974 34736 384 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.153.73 d68c043a-d906-4630-8469-b6e3b3638bde 2020-07-04 00:09:37.618449 34737 1790 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.153.73 d0032eef-7c2f-4823-b7e5-41575ec8888f 2020-07-04 00:10:04.914681 34738 1790 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.153.73 e167a259-570c-49fe-bc02-d976833b081d 2020-07-04 00:10:09.725934 34739 1791 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 f11ce833-24bc-42f1-bd39-8cb3b6e974d3 2020-07-04 00:10:15.640673 34740 1792 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 bd5fce15-77ee-4c21-a438-dcb5baf7a183 2020-07-04 00:10:44.679653 34741 1793 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 dd0e5800-7222-49fb-b820-780e020bf357 2020-07-04 00:10:55.931793 34742 618 Transfer \N \N 4 User \N create ---\norigin_id: 2\ndestiny_id: 3\ntransfer_date: 2020-07-03\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de S BY SUO a SUO Comercial creado. 189.186.153.73 279a4429-8418-4f5d-80aa-c2ee40c737a8 2020-07-04 00:11:00.055141 34743 936 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.2E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 200.0 189.186.153.73 b3c7ef08-9cf1-47f4-bbd6-bc7a187d4b1b 2020-07-04 00:26:28.397713 34773 1957 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.153.73 1a9b7c33-5195-44de-ac2f-a1ab28289de2 2020-07-04 18:29:12.867523 34744 2503 Sale \N \N 18 User \N create ---\ncustomer_id: 283\nuser_id: 18\nopen_cash_register_id: 936\namount: !ruby/object:BigDecimal 18:0.476586E4\ntax: !ruby/object:BigDecimal 18:0.24814E3\ndiscount: !ruby/object:BigDecimal 18:0.799E3\ntotal: !ruby/object:BigDecimal 18:0.4215E4\nstatus: 0\ndate_sale: 2020-07-03\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-363\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.153.73 bf699c34-5808-4cc6-ae33-09c7c62d354b 2020-07-04 00:40:03.698779 34745 1589 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.153.73 bf699c34-5808-4cc6-ae33-09c7c62d354b 2020-07-04 00:40:03.730044 34746 1922 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.153.73 bf699c34-5808-4cc6-ae33-09c7c62d354b 2020-07-04 00:40:03.756823 34747 1918 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 bf699c34-5808-4cc6-ae33-09c7c62d354b 2020-07-04 00:40:03.782633 34748 1578 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.153.73 bf699c34-5808-4cc6-ae33-09c7c62d354b 2020-07-04 00:40:03.809028 34749 827 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.153.73 bf699c34-5808-4cc6-ae33-09c7c62d354b 2020-07-04 00:40:03.837322 34750 899 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 bf699c34-5808-4cc6-ae33-09c7c62d354b 2020-07-04 00:40:03.866931 34751 3369 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 723\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1396E4\nmove_type: '1'\nsale_id: 1993\ncardnumber: 4588\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.153.73 14006636-83e2-418e-97e8-df3473365b12 2020-07-04 01:06:28.423953 34752 1993 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.153.73 14006636-83e2-418e-97e8-df3473365b12 2020-07-04 01:06:28.465197 34753 2475 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.153.73 14006636-83e2-418e-97e8-df3473365b12 2020-07-04 01:06:28.496173 34754 3369 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 723\n- 936\n 2 movimiento de efectivo por venta con folio PV3-V-230 189.186.153.73 14006636-83e2-418e-97e8-df3473365b12 2020-07-04 01:06:28.512276 34755 2504 Sale \N \N 18 User \N create ---\ncustomer_id: 275\nuser_id: 18\nopen_cash_register_id: 936\namount: !ruby/object:BigDecimal 18:0.36983E3\ntax: !ruby/object:BigDecimal 18:0.5917E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.429E3\nstatus: 0\ndate_sale: 2020-07-03\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-364\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.153.73 fda0ff07-5c8a-4824-8a20-1c9073d9f9ff 2020-07-04 01:07:01.316597 34756 1543 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.153.73 fda0ff07-5c8a-4824-8a20-1c9073d9f9ff 2020-07-04 01:07:01.347626 34757 1067 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1067'\n is_parent: false\n sku: ACC-1067\n name: DIA-0057\n description: DIADEMA NEGRA CON PIEDRAS\n price_base: '115.0'\n price_sale: '230.0'\n img_product: dia57.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001067'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-01 02:00:16.32412'\n updated_at: &12 2020-07-04 01:17:51.773343238 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1067'\n sku: ACC-1067\n name: DIA-0057\n description: DIADEMA NEGRA CON PIEDRAS\n price_base: '115.00'\n price_sale: '230.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-01 02:00:16.32412'\n updated_at: '2020-03-01 02:00:16.365083'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001067'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1067'\n type: *3\n value: 1067\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1067\n type: *7\n value: ACC-1067\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0057\n type: *8\n value: DIA-0057\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMA NEGRA CON PIEDRAS\n type: *6\n value: DIADEMA NEGRA CON PIEDRAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '115.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.115E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '230.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.23E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: dia57.jpg\n type: *2\n value: dia57.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001067'\n type: *2\n value: '0001067'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-01 02:00:16.32412'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- dia57.jpg\n 3 El producto ACC-1067 fue modificado. 189.186.153.73 42789b47-576d-49c5-a779-a0f1b4843429 2020-07-04 01:17:51.832637 34758 959 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 936\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1396E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.2E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.153.73 091aca83-037b-4e82-9984-a5e00e3c79ab 2020-07-04 01:19:03.643118 34759 936 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.153.73 091aca83-037b-4e82-9984-a5e00e3c79ab 2020-07-04 01:19:03.671066 34760 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-07-02 20:10:51.730262000 Z\n- &1 2020-07-03 00:33:18.386065000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-04 18:28:33.779670187 Z\nsign_in_count:\n- 233\n- 234\n 469 \N 189.186.153.73 fdc63616-1402-4242-8265-9de53950c621 2020-07-04 18:28:33.810141 34761 21 User \N \N 21 User \N update ---\nunique_session_id:\n- C7y1RegcK1M7CoUx7Ef-\n- rwuSp6c7iLNjsHv3S3fx\n 470 \N 189.186.153.73 fdc63616-1402-4242-8265-9de53950c621 2020-07-04 18:28:33.835723 34762 618 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-04\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.153.73 9cb0c5a9-4ffc-4f9d-a8fc-78e3db039e8b 2020-07-04 18:29:12.217909 34763 1953 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1104\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 9cb0c5a9-4ffc-4f9d-a8fc-78e3db039e8b 2020-07-04 18:29:12.262013 34764 1954 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1103\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 9cb0c5a9-4ffc-4f9d-a8fc-78e3db039e8b 2020-07-04 18:29:12.350328 34765 1955 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1102\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 9cb0c5a9-4ffc-4f9d-a8fc-78e3db039e8b 2020-07-04 18:29:12.42929 34766 1956 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1101\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 9cb0c5a9-4ffc-4f9d-a8fc-78e3db039e8b 2020-07-04 18:29:12.487785 34767 1957 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 386\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 9cb0c5a9-4ffc-4f9d-a8fc-78e3db039e8b 2020-07-04 18:29:12.542512 34768 618 Transfer \N \N 21 User \N update --- {}\n 3 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.153.73 1a9b7c33-5195-44de-ac2f-a1ab28289de2 2020-07-04 18:29:12.623947 34769 1953 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.153.73 1a9b7c33-5195-44de-ac2f-a1ab28289de2 2020-07-04 18:29:12.668013 34770 1954 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.153.73 1a9b7c33-5195-44de-ac2f-a1ab28289de2 2020-07-04 18:29:12.721287 34771 1955 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.153.73 1a9b7c33-5195-44de-ac2f-a1ab28289de2 2020-07-04 18:29:12.767288 34774 613 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-04\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.153.73 6e00a4f4-a9f7-455e-9503-11d585d961e2 2020-07-04 18:30:20.168278 34775 1958 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 905\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 6e00a4f4-a9f7-455e-9503-11d585d961e2 2020-07-04 18:30:20.198158 34776 1959 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 906\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 6e00a4f4-a9f7-455e-9503-11d585d961e2 2020-07-04 18:30:20.223552 34777 1481 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.11E2\n 3 \N 189.186.153.73 6e00a4f4-a9f7-455e-9503-11d585d961e2 2020-07-04 18:30:20.248764 34778 1960 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 908\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 6e00a4f4-a9f7-455e-9503-11d585d961e2 2020-07-04 18:30:20.280839 34779 617 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-04\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.153.73 63ba9431-5ccc-42e6-b09e-0470091d13d0 2020-07-04 18:30:33.897198 34780 1773 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.8E1\n 4 \N 189.186.153.73 63ba9431-5ccc-42e6-b09e-0470091d13d0 2020-07-04 18:30:33.91552 34781 1760 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.153.73 25d6a622-8b26-4ca9-b73c-c2b73b62bbc3 2020-07-04 18:31:17.286669 34782 619 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-04\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.153.73 da35d0de-4fbf-4439-9152-888fc7f357b9 2020-07-04 18:31:18.827398 34783 614 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-04\n 2 Se dio entrada a traspaso de S BY SUO a SUO Comercial 189.186.153.73 5f5eb98b-917b-4fe8-9b3f-bb2bf9c630b0 2020-07-04 18:31:25.503859 34784 1961 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 407\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 5f5eb98b-917b-4fe8-9b3f-bb2bf9c630b0 2020-07-04 18:31:25.525731 34785 1962 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 405\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 5f5eb98b-917b-4fe8-9b3f-bb2bf9c630b0 2020-07-04 18:31:25.551331 34786 1963 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 200\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 5f5eb98b-917b-4fe8-9b3f-bb2bf9c630b0 2020-07-04 18:31:25.577504 34787 1961 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.153.73 5f5eb98b-917b-4fe8-9b3f-bb2bf9c630b0 2020-07-04 18:31:25.598735 34788 619 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-04\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.153.73 b47ab7f9-343e-4fde-bf5a-a6f7e66ade1e 2020-07-04 18:31:43.166755 34789 1771 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.153.73 b47ab7f9-343e-4fde-bf5a-a6f7e66ade1e 2020-07-04 18:31:43.184282 34790 937 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.2E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 200.0 189.186.153.73 91199fa9-d9f0-47da-9562-54904420f5a6 2020-07-04 18:31:55.8788 34791 2505 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 937\namount: !ruby/object:BigDecimal 18:0.129E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.129E3\nstatus: 0\ndate_sale: 2020-07-04\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-365\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.153.73 f55ef9c1-def8-4a9d-9246-7bab47d3cd32 2020-07-04 18:32:10.763377 34792 1771 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.153.73 f55ef9c1-def8-4a9d-9246-7bab47d3cd32 2020-07-04 18:32:10.812716 34793 2505 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.153.73 09c25586-9df3-4c3a-a137-3c64ddec235f 2020-07-04 18:32:26.694299 34794 3370 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 937\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.129E3\nmove_type: '1'\nsale_id: 2505\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-365\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: TIA\n 1 movimiento de efectivo por venta con folio PV3-V-365 189.186.153.73 09c25586-9df3-4c3a-a137-3c64ddec235f 2020-07-04 18:32:26.71957 34795 3371 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E4\nmove_type: '1'\nsale_id: 2486\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.153.73 4d739923-ce29-495e-9bcb-6e217b27bf39 2020-07-04 18:33:09.388459 34796 2486 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.153.73 4d739923-ce29-495e-9bcb-6e217b27bf39 2020-07-04 18:33:09.415178 34797 3371 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 931\n- 937\n 2 movimiento de efectivo por venta con folio PV3-V-357 189.186.153.73 4d739923-ce29-495e-9bcb-6e217b27bf39 2020-07-04 18:33:09.428048 34798 1089 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1089'\n is_parent: false\n sku: ACC-1089\n name: DIA-0070\n description: DIADEMA TELA RAYAS COLORES\n price_base: '61.9'\n price_sale: '119.0'\n img_product: dia70.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001089'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-02 23:44:42.942582'\n updated_at: &12 2020-07-04 18:36:47.012602180 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1089'\n sku: ACC-1089\n name: DIA-0070\n description: DIADEMA TELA RAYAS COLORES\n price_base: '61.90'\n price_sale: '119.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-02 23:44:42.942582'\n updated_at: '2020-03-02 23:44:42.988849'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001089'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1089'\n type: *3\n value: 1089\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1089\n type: *7\n value: ACC-1089\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0070\n type: *8\n value: DIA-0070\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMA TELA RAYAS COLORES\n type: *6\n value: DIADEMA TELA RAYAS COLORES\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '61.9'\n type: *1\n value: !ruby/object:BigDecimal 18:0.619E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '119.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.119E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: dia70.jpg\n type: *2\n value: dia70.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001089'\n type: *2\n value: '0001089'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-02 23:44:42.942582'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- dia70.jpg\n 3 El producto ACC-1089 fue modificado. 189.186.153.73 3947a8e0-e396-4d99-a7c2-a64118984582 2020-07-04 18:36:47.07011 34799 1942 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.153.73 eaa8b9a5-ea41-46f5-9d56-534cbaf51cf2 2020-07-04 18:37:32.397735 34800 620 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-04\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.153.73 d7f3035e-8ab3-4483-9495-37c7a5e8ed2d 2020-07-04 18:37:36.880084 34801 620 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-04\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.153.73 1ffab225-9611-451f-8ddf-f0aa01efaec9 2020-07-04 18:39:10.414419 34802 1914 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.153.73 1ffab225-9611-451f-8ddf-f0aa01efaec9 2020-07-04 18:39:10.437217 34803 1038 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1038'\n is_parent: false\n sku: ACC-1038\n name: DIA-0043\n description: DIADEMA FLORES COLORES METALICOS\n price_base: '182.0'\n price_sale: '369.0'\n img_product: dia43.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001038'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-01 00:34:14.949245'\n updated_at: &12 2020-07-04 18:43:02.321587851 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1038'\n sku: ACC-1038\n name: DIA-0043\n description: DIADEMA FLORES COLORES METALICOS\n price_base: '182.00'\n price_sale: '369.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-01 00:34:14.949245'\n updated_at: '2020-03-01 00:34:14.982961'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001038'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1038'\n type: *3\n value: 1038\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1038\n type: *7\n value: ACC-1038\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0043\n type: *8\n value: DIA-0043\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMA FLORES COLORES METALICOS\n type: *6\n value: DIADEMA FLORES COLORES METALICOS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '182.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.182E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '369.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.369E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: dia43.jpg\n type: *2\n value: dia43.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001038'\n type: *2\n value: '0001038'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-01 00:34:14.949245'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- dia43.jpg\n 3 El producto ACC-1038 fue modificado. 189.186.153.73 379bf448-a6df-4c14-9351-0be366374c2b 2020-07-04 18:43:02.368838 34804 1703 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 7b97a0e9-ec88-44aa-bdaf-5c1084b774de 2020-07-04 18:43:56.276693 34805 621 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-04\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.153.73 5b137c30-47ae-4181-874a-38cc5b42d038 2020-07-04 18:44:00.595866 34806 621 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-04\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.153.73 ae279f1b-fa0e-46af-81ca-d75919bec589 2020-07-04 18:44:26.621209 34807 1964 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1038\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 ae279f1b-fa0e-46af-81ca-d75919bec589 2020-07-04 18:44:26.645023 34808 1026 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1026'\n is_parent: false\n sku: ACC-1026\n name: DIA-0036\n description: VALERINA FLORES\n price_base: '33.26'\n price_sale: '109.0'\n img_product: val.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001026'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-29 22:58:09.517705'\n updated_at: &12 2020-07-04 18:45:36.746901206 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1026'\n sku: ACC-1026\n name: DIA-0036\n description: VALERINA FLORES\n price_base: '33.26'\n price_sale: '109.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-29 22:58:09.517705'\n updated_at: '2020-02-29 22:58:09.567563'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001026'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1026'\n type: *3\n value: 1026\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1026\n type: *7\n value: ACC-1026\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0036\n type: *8\n value: DIA-0036\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VALERINA FLORES\n type: *6\n value: VALERINA FLORES\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '33.26'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3326E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '109.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.109E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: val.jpg\n type: *2\n value: val.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001026'\n type: *2\n value: '0001026'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-29 22:58:09.517705'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- val.jpg\n 3 El producto ACC-1026 fue modificado. 189.186.153.73 4ddad982-a6b6-47ce-95cf-e9c1c14561b8 2020-07-04 18:45:36.791171 34809 1029 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1029'\n is_parent: false\n sku: ACC-1029\n name: DON-001\n description: LIGAS DEL PELO\n price_base: '34.5'\n price_sale: '69.0'\n img_product: dona.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001029'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-29 23:40:03.382458'\n updated_at: &12 2020-07-04 18:46:06.296180218 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1029'\n sku: ACC-1029\n name: DON-001\n description: LIGAS DEL PELO\n price_base: '34.50'\n price_sale: '69.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-29 23:40:03.382458'\n updated_at: '2020-02-29 23:40:03.422069'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001029'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1029'\n type: *3\n value: 1029\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1029\n type: *7\n value: ACC-1029\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DON-001\n type: *8\n value: DON-001\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: LIGAS DEL PELO\n type: *6\n value: LIGAS DEL PELO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '34.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.345E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '69.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.69E2\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: dona.jpg\n type: *2\n value: dona.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001029'\n type: *2\n value: '0001029'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-29 23:40:03.382458'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- dona.jpg\n 3 El producto ACC-1029 fue modificado. 189.186.153.73 e1c6f13c-2a6d-47f0-8a16-93d7c4e8bfd1 2020-07-04 18:46:06.345759 34810 1028 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1028'\n is_parent: false\n sku: ACC-1028\n name: DIA-0038\n description: DIADEMA DOBLE DE BRILLOS\n price_base: '214.55'\n price_sale: '429.1'\n img_product: dia38.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001028'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-02-29 23:26:49.54327'\n updated_at: &12 2020-07-04 18:49:06.511413384 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1028'\n sku: ACC-1028\n name: DIA-0038\n description: DIADEMA DOBLE DE BRILLOS\n price_base: '214.55'\n price_sale: '429.10'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-02-29 23:26:49.54327'\n updated_at: '2020-02-29 23:26:49.58476'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001028'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1028'\n type: *3\n value: 1028\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1028\n type: *7\n value: ACC-1028\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0038\n type: *8\n value: DIA-0038\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMA DOBLE DE BRILLOS\n type: *6\n value: DIADEMA DOBLE DE BRILLOS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '214.55'\n type: *1\n value: !ruby/object:BigDecimal 18:0.21455E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '429.1'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4291E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: dia38.jpg\n type: *2\n value: dia38.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001028'\n type: *2\n value: '0001028'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-02-29 23:26:49.54327'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- dia38.jpg\n 3 El producto ACC-1028 fue modificado. 189.186.153.73 53b51119-ed53-419d-9904-a96d24c6e656 2020-07-04 18:49:06.563105 34811 1062 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1062'\n is_parent: false\n sku: ACC-1062\n name: DIA-0054\n description: DIADEMA ESTRELLAS\n price_base: '275.0'\n price_sale: '550.0'\n img_product: dia54.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001062'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-01 01:48:32.168477'\n updated_at: &12 2020-07-04 18:49:35.515947237 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1062'\n sku: ACC-1062\n name: DIA-0054\n description: DIADEMA ESTRELLAS\n price_base: '275.00'\n price_sale: '550.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-01 01:48:32.168477'\n updated_at: '2020-03-01 01:48:32.210708'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001062'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1062'\n type: *3\n value: 1062\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1062\n type: *7\n value: ACC-1062\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0054\n type: *8\n value: DIA-0054\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMA ESTRELLAS\n type: *6\n value: DIADEMA ESTRELLAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '275.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.275E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '550.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.55E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: dia54.jpg\n type: *2\n value: dia54.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001062'\n type: *2\n value: '0001062'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-01 01:48:32.168477'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- dia54.jpg\n 3 El producto ACC-1062 fue modificado. 189.186.153.73 9f67238a-850e-4a04-a7e3-f0e891a04bfa 2020-07-04 18:49:35.56496 34812 1096 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1096'\n is_parent: false\n sku: ACC-1096\n name: DIA-0081\n description: DIADEMAS COLORES\n price_base: '22.0'\n price_sale: '69.0'\n img_product: nihaojewelry_thumbnail.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001096'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-14 20:15:53.000889'\n updated_at: &12 2020-07-04 18:50:29.671477047 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1096'\n sku: ACC-1096\n name: DIA-0081\n description: DIADEMAS COLORES\n price_base: '22.00'\n price_sale: '69.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-14 20:15:53.000889'\n updated_at: '2020-03-14 20:15:53.040332'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001096'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1096'\n type: *3\n value: 1096\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1096\n type: *7\n value: ACC-1096\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0081\n type: *8\n value: DIA-0081\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMAS COLORES\n type: *6\n value: DIADEMAS COLORES\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '22.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.22E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '69.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.69E2\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: nihaojewelry_thumbnail.jpg\n type: *2\n value: nihaojewelry_thumbnail.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001096'\n type: *2\n value: '0001096'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-14 20:15:53.000889'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- nihaojewelry_thumbnail.jpg\n 3 El producto ACC-1096 fue modificado. 189.186.153.73 6a89d497-b2b0-419d-8e74-9f522fd16a44 2020-07-04 18:50:29.720696 34813 1787 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.153.73 dd26e35c-4c95-4ffa-a942-a466b6b67eed 2020-07-04 18:58:01.726681 34814 622 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-04\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.153.73 b29dc9a2-ac4c-4c05-8f1d-ab90a7a67ffd 2020-07-04 18:58:06.283681 34815 622 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-04\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.153.73 8852b64a-558b-4623-9117-db2230b4d4f1 2020-07-04 18:58:25.395494 34816 1965 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1098\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 8852b64a-558b-4623-9117-db2230b4d4f1 2020-07-04 18:58:25.429169 34817 1031 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1031'\n is_parent: false\n sku: ACC-1031\n name: DIA-0040\n description: DIADEMA DOBLE FLORES ORO ROSADO\n price_base: '73.0'\n price_sale: '299.0'\n img_product: dia4.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001031'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-01 00:04:49.628603'\n updated_at: &12 2020-07-04 19:18:43.323242964 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1031'\n sku: ACC-1031\n name: DIA-0040\n description: DIADEMA DOBLE FLORES ORO ROSADO\n price_base: '73.00'\n price_sale: '299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-01 00:04:49.628603'\n updated_at: '2020-03-01 00:04:49.669087'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001031'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1031'\n type: *3\n value: 1031\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1031\n type: *7\n value: ACC-1031\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0040\n type: *8\n value: DIA-0040\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMA DOBLE FLORES ORO ROSADO\n type: *6\n value: DIADEMA DOBLE FLORES ORO ROSADO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '73.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.73E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.299E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: dia4.jpg\n type: *2\n value: dia4.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001031'\n type: *2\n value: '0001031'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-01 00:04:49.628603'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- dia4.jpg\n 3 El producto ACC-1031 fue modificado. 189.186.153.73 13e1f322-a350-4a6d-8878-43efdc25f7cb 2020-07-04 19:18:43.368912 34818 1053 Product \N \N 4 User \N update ---\nname:\n- DIA.-0051\n- DIA-0051\n 4 El producto ACC-1053 fue modificado. 189.186.153.73 00de84dc-a5b8-40ef-9df4-5da79258b392 2020-07-04 19:37:23.425008 34819 1096 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '1096'\n is_parent: false\n sku: ACC-1096\n name: DIA-0081\n description: DIADEMAS COLORES\n price_base: '22.0'\n price_sale: '69.0'\n img_product: dia81.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001096'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-14 20:15:53.000889'\n updated_at: &12 2020-07-04 19:46:19.569590402 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1096'\n sku: ACC-1096\n name: DIA-0081\n description: DIADEMAS COLORES\n price_base: '22.00'\n price_sale: '69.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-14 20:15:53.000889'\n updated_at: '2020-07-04 18:50:29.671477'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001096'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: nihaojewelry_thumbnail.jpg\n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1096'\n type: *3\n value: 1096\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1096\n type: *7\n value: ACC-1096\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0081\n type: *8\n value: DIA-0081\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: DIADEMAS COLORES\n type: *6\n value: DIADEMAS COLORES\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '22.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.22E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '69.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.69E2\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: dia81.jpg\n type: *2\n value: dia81.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001096'\n type: *2\n value: '0001096'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-14 20:15:53.000889'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/nihaojewelry_thumbnail.jpg"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader51997740\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_nihaojewelry_thumbnail.jpg"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader51976680\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_nihaojewelry_thumbnail.jpg"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader51972100\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_nihaojewelry_thumbnail.jpg"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- dia81.jpg\n 4 El producto ACC-1096 fue modificado. 189.186.153.73 750c82bc-7db5-4ac2-87f2-e9fecedb7d8f 2020-07-04 19:46:19.619328 34820 1130 Product \N \N 21 User \N create ---\nsku: BOL-1130\nname: 2BLCP20080\ndescription: MOCHILA CLOE NEGRA, ROSA Y AZUL CON MASCADA VERDE LIMON\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170800210'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: WIN_20200704_14_08_28_Pro__2_.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1130 fue creado. 189.186.153.73 a9a6d331-5b29-4a28-a982-1dc2d7f05f9c 2020-07-04 20:08:57.564007 34821 1966 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1130\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 a9a6d331-5b29-4a28-a982-1dc2d7f05f9c 2020-07-04 20:08:57.614382 34822 1131 Product \N \N 21 User \N create ---\nsku: BOL-1131\nname: 3BLCI1946\ndescription: BOLSO CLOE ROSA VIEJO CON PONPON\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_5182.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1131 fue creado. 189.186.153.73 c7d8c90b-07f3-4e33-930e-164ac316693c 2020-07-04 20:15:20.370375 34823 1131 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001131'\n 2 \N 189.186.153.73 c7d8c90b-07f3-4e33-930e-164ac316693c 2020-07-04 20:15:20.406531 34824 1967 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1131\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 c7d8c90b-07f3-4e33-930e-164ac316693c 2020-07-04 20:15:20.435214 34855 1980 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1144\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 112aa423-0cf8-49f2-8008-6d4da98bdd10 2020-07-04 22:00:00.961756 35041 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 26 \N 189.186.120.209 5b6305c1-15d4-48ea-9f33-e899b3018fb7 2020-07-07 00:24:56.173869 34825 1132 Product \N \N 21 User \N create ---\nsku: BOL-1132\nname: 3BLCP20117\ndescription: 'BOLSO COLOR LIMON CON MASCADA '\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170801491'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_5184.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1132 fue creado. 189.186.153.73 3498ab1c-dafa-41f7-b49b-796444ac7abf 2020-07-04 20:24:50.934445 34826 1968 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1132\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 3498ab1c-dafa-41f7-b49b-796444ac7abf 2020-07-04 20:24:50.980976 34827 1133 Product \N \N 21 User \N create ---\nsku: BOL-1133\nname: 2BLCV20395\ndescription: Bolsa Magenta Metálica Y NEGRA con Asa Larga\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170822854'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: BLCV395_MAGE_1_828x1200.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1133 fue creado. 189.186.153.73 f32e3a4a-cb2c-49e5-82b6-ef37e0e9536c 2020-07-04 20:29:17.343806 34828 1969 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1133\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 f32e3a4a-cb2c-49e5-82b6-ef37e0e9536c 2020-07-04 20:29:17.391813 34829 1134 Product \N \N 21 User \N create ---\nsku: BOL-1134\nname: 2BLCP2007\ndescription: Briefcase Rosa con Colgante Metálico\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170799927'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: BLCP071_ROSA_1_828x1200.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1134 fue creado. 189.186.153.73 9419a2db-d301-44da-8f78-a2a050e7839b 2020-07-04 20:32:18.343662 34830 1970 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1134\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 9419a2db-d301-44da-8f78-a2a050e7839b 2020-07-04 20:32:18.38748 34831 1135 Product \N \N 21 User \N create ---\nsku: BOL-1135\nname: 1BLCV20246\ndescription: Bolsa Rosa con Bolsillo Interno\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170817973'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: BLCV246_ROSA_1_828x1200.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1135 fue creado. 189.186.153.73 7f75f5bd-95a4-441d-9b03-d6c47d536e93 2020-07-04 20:38:42.68906 34832 1971 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1135\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 7f75f5bd-95a4-441d-9b03-d6c47d536e93 2020-07-04 20:38:42.735598 34833 1136 Product \N \N 21 User \N create ---\nsku: BOL-1136\nname: 2BLCV2033\ndescription: Bolsa Negra con Frase\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170820768'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: BLCV334_NEGR_1_828x1200.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1136 fue creado. 189.186.153.73 bea9056e-9748-4815-b437-6d6e0ad8fa8c 2020-07-04 20:41:31.006287 34834 1972 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1136\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 bea9056e-9748-4815-b437-6d6e0ad8fa8c 2020-07-04 20:41:31.050412 34835 1137 Product \N \N 21 User \N create ---\nsku: BOL-1137\nname: 2BLCV20341\ndescription: Bolsa Backpack Nude con Colgante Metálico\nprice_base: !ruby/object:BigDecimal 18:0.9495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170821017'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: BLCV341_NUDE_1_300x435.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1137 fue creado. 189.186.153.73 27b2948e-4fcb-4050-98aa-95694b768a6f 2020-07-04 20:44:16.667024 34836 1973 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1137\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 27b2948e-4fcb-4050-98aa-95694b768a6f 2020-07-04 20:44:16.713407 34837 1138 Product \N \N 21 User \N create ---\nsku: CAR-1138\nname: 2BICV20316\ndescription: Cartera Porta Celular NEGRA Y NUDE con Asa Larga de Cadena\nprice_base: !ruby/object:BigDecimal 18:0.4995E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170820041'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: BICV316_NEGR_1_828x1200.jpg\ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1138 fue creado. 189.186.153.73 42997af0-1822-4394-9d1b-a959461f1d31 2020-07-04 20:47:04.725332 34838 1974 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1138\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 42997af0-1822-4394-9d1b-a959461f1d31 2020-07-04 20:47:04.777915 34925 128 Purchase \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.153.73 7c099797-554b-4eb3-9924-8f3a387ceba3 2020-07-04 23:51:23.672374 34839 1139 Product \N \N 21 User \N create ---\nsku: BOL-1139\nname: 3BLCP20148\ndescription: Bolsa Satchel Cloe con Acabado de Rayas\nprice_base: !ruby/object:BigDecimal 18:0.6495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170812404'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: BLCP149_NEGR_1_828x1200.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1139 fue creado. 189.186.153.73 d2cc6191-ec0b-433a-8665-4669a5e1ff99 2020-07-04 20:53:34.287276 34840 1975 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1139\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 d2cc6191-ec0b-433a-8665-4669a5e1ff99 2020-07-04 20:53:34.336129 34841 1140 Product \N \N 21 User \N create ---\nsku: BOL-1140\nname: 2BLCP20026\ndescription: BOLSA COLOR LIMON\nprice_base: !ruby/object:BigDecimal 18:0.9495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170798289'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: WIN_20200704_15_09_17_Pro__2_.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1140 fue creado. 189.186.153.73 5e06bc53-0fa1-4da2-a735-a42924da6a0b 2020-07-04 21:09:39.748094 34842 1976 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1140\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 5e06bc53-0fa1-4da2-a735-a42924da6a0b 2020-07-04 21:09:39.797612 34843 1141 Product \N \N 21 User \N create ---\nsku: BOL-1141\nname: 3BLCP20152\ndescription: BOLSO ACORDEON MULTICOLOR\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170812527'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: BLCP154_MULT_1_828x1200.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1141 fue creado. 189.186.153.73 b9f1234a-b967-41c3-9f63-54ce2b3d3724 2020-07-04 21:12:37.202383 34844 1977 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1141\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 b9f1234a-b967-41c3-9f63-54ce2b3d3724 2020-07-04 21:12:37.260807 34845 2506 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 937\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-07-04\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-366\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.153.73 75f1a66a-ba79-4633-a837-127df277fdc1 2020-07-04 21:28:45.889578 34846 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 8 \N 189.186.153.73 75f1a66a-ba79-4633-a837-127df277fdc1 2020-07-04 21:28:45.921355 34847 2506 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.153.73 9e1a4748-e05a-4726-b456-9962b6d741d4 2020-07-04 21:28:58.127618 34848 3372 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 937\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 2506\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-366\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-366 189.186.153.73 9e1a4748-e05a-4726-b456-9962b6d741d4 2020-07-04 21:28:58.153755 34849 1142 Product \N \N 21 User \N create ---\nsku: BOL-1142\nname: 4BLCV20513\ndescription: MOCHILA COLECCION TANIA GAXIOLA\nprice_base: !ruby/object:BigDecimal 18:0.9995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1999E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170836646'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: WIN_20200704_15_35_06_Pro__2_.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1142 fue creado. 189.186.153.73 06001a25-2a03-43ae-baf6-28676ee45aa8 2020-07-04 21:36:40.074542 34850 1978 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1142\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 06001a25-2a03-43ae-baf6-28676ee45aa8 2020-07-04 21:36:40.118464 34851 1143 Product \N \N 21 User \N create ---\nsku: CAR-1143\nname: 4BICV20515\ndescription: CARTERA COLECCION TANIA GAXIOLA\nprice_base: !ruby/object:BigDecimal 18:0.4995E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170836660'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: WIN_20200704_15_34_50_Pro__2_.jpg\ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1143 fue creado. 189.186.153.73 1ae9bb49-a9ec-4c6a-829c-eb12d3ceacb1 2020-07-04 21:41:37.591405 34852 1979 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1143\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 1ae9bb49-a9ec-4c6a-829c-eb12d3ceacb1 2020-07-04 21:41:37.638676 34853 1144 Product \N \N 21 User \N create ---\nsku: BOL-1144\nname: DUAB029\ndescription: BOLSO MULTICOLOR\nprice_base: !ruby/object:BigDecimal 18:0.6495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: IMG_5183.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1144 fue creado. 189.186.153.73 112aa423-0cf8-49f2-8008-6d4da98bdd10 2020-07-04 22:00:00.900713 34854 1144 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001144'\n 2 \N 189.186.153.73 112aa423-0cf8-49f2-8008-6d4da98bdd10 2020-07-04 22:00:00.932153 35042 2526 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-379 cancelada. 189.186.120.209 42164f24-6c89-4ac6-baaf-6a43b35dc738 2020-07-07 00:25:04.423582 34856 1145 Product \N \N 21 User \N create ---\nsku: BOL-1145\nname: DUAB031\ndescription: MOCHILA DORADA Y MULTICOLOR\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170794274'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: DUAB.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1145 fue creado. 189.186.153.73 59398a30-e0bb-4539-a00c-2ed369674881 2020-07-04 22:04:55.123575 34857 1981 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1145\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 59398a30-e0bb-4539-a00c-2ed369674881 2020-07-04 22:04:55.176625 34858 1146 Product \N \N 21 User \N create ---\nsku: BOL-1146\nname: BLCP20964\ndescription: BOLSA ROSA HEBILLA REDONDA\nprice_base: !ruby/object:BigDecimal 18:0.9995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1999E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170796100'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: WIN_20200704_16_15_19_Pro__2_.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1146 fue creado. 189.186.153.73 c1f8de93-f15c-4f34-a67c-adf24cc9012d 2020-07-04 22:15:32.570056 34859 1982 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1146\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 c1f8de93-f15c-4f34-a67c-adf24cc9012d 2020-07-04 22:15:32.610842 34860 304 Purchase \N \N 21 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-44\namount: !ruby/object:BigDecimal 18:0.181885E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.181885E5\nobservations: ''\npurchase_date: 2020-07-04\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-44 por $ 18188.5 MXN creada. 189.186.153.73 023e1dea-5671-4707-9af5-cd2ed85f354d 2020-07-04 22:15:46.285314 34861 1966 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.153.73 023e1dea-5671-4707-9af5-cd2ed85f354d 2020-07-04 22:15:46.308556 34862 1967 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 023e1dea-5671-4707-9af5-cd2ed85f354d 2020-07-04 22:15:46.33393 34863 1968 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 023e1dea-5671-4707-9af5-cd2ed85f354d 2020-07-04 22:15:46.358766 34864 1969 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.153.73 023e1dea-5671-4707-9af5-cd2ed85f354d 2020-07-04 22:15:46.399308 34865 1970 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 023e1dea-5671-4707-9af5-cd2ed85f354d 2020-07-04 22:15:46.432792 34866 1971 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 023e1dea-5671-4707-9af5-cd2ed85f354d 2020-07-04 22:15:46.462973 34867 1972 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 023e1dea-5671-4707-9af5-cd2ed85f354d 2020-07-04 22:15:46.49446 34868 1973 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 023e1dea-5671-4707-9af5-cd2ed85f354d 2020-07-04 22:15:46.520689 34869 1974 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.153.73 023e1dea-5671-4707-9af5-cd2ed85f354d 2020-07-04 22:15:46.546184 34870 1975 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 023e1dea-5671-4707-9af5-cd2ed85f354d 2020-07-04 22:15:46.569758 34871 1976 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 023e1dea-5671-4707-9af5-cd2ed85f354d 2020-07-04 22:15:46.595254 34872 1977 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 023e1dea-5671-4707-9af5-cd2ed85f354d 2020-07-04 22:15:46.618738 34873 1979 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 023e1dea-5671-4707-9af5-cd2ed85f354d 2020-07-04 22:15:46.644328 34874 1980 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 023e1dea-5671-4707-9af5-cd2ed85f354d 2020-07-04 22:15:46.675517 34875 1981 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.153.73 023e1dea-5671-4707-9af5-cd2ed85f354d 2020-07-04 22:15:46.705035 34876 1978 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.153.73 023e1dea-5671-4707-9af5-cd2ed85f354d 2020-07-04 22:15:46.731114 34877 1982 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 023e1dea-5671-4707-9af5-cd2ed85f354d 2020-07-04 22:15:46.764716 34878 2507 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 937\namount: !ruby/object:BigDecimal 18:0.289E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.289E3\nstatus: 0\ndate_sale: 2020-07-04\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-367\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.153.73 e58b9ee5-b76a-4121-ad23-c01852f435cd 2020-07-04 22:33:10.690224 34879 1965 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.153.73 e58b9ee5-b76a-4121-ad23-c01852f435cd 2020-07-04 22:33:10.720895 34880 2507 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.153.73 7e89f7a7-01d4-47c8-a5d5-4670c352cd1c 2020-07-04 22:33:27.125967 34881 3373 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 937\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.289E3\nmove_type: '1'\nsale_id: 2507\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-367\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: JUEVS\n 1 movimiento de efectivo por venta con folio PV3-V-367 189.186.153.73 7e89f7a7-01d4-47c8-a5d5-4670c352cd1c 2020-07-04 22:33:27.149286 34882 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-07-02 05:15:25.737149000 Z\n- &1 2020-07-02 22:12:25.281060000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-04 23:05:15.357708640 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537715\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147106003\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147106003\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\nsign_in_count:\n- 133\n- 134\n 268 \N 189.186.153.73 e33b1787-10ea-4d67-85d4-a4e2b7646b45 2020-07-04 23:05:15.390287 34883 9 User \N \N 9 User \N update ---\nunique_session_id:\n- Ae8A_sY6eQ8hy3yPJDyn\n- GDhTX9JDz3zzNZjixczd\n 269 \N 189.186.153.73 e33b1787-10ea-4d67-85d4-a4e2b7646b45 2020-07-04 23:05:15.424594 34884 938 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.683E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 683.0 189.186.153.73 862b2b75-f0e7-40c4-994b-3aa38509c308 2020-07-04 23:05:24.206397 34885 2508 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 938\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2198E3\ntotal: !ruby/object:BigDecimal 18:0.8792E3\nstatus: 0\ndate_sale: 2020-07-04\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1221\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.153.73 fddce5a5-1c7d-4f4b-83e0-eb32a17bfd94 2020-07-04 23:06:34.691466 34886 600 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.153.73 fddce5a5-1c7d-4f4b-83e0-eb32a17bfd94 2020-07-04 23:06:34.732375 34887 2508 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.153.73 e0b94e0b-ffdb-4642-8390-9b081ee32245 2020-07-04 23:06:51.60281 34888 3374 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 938\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.8792E3\nmove_type: '1'\nsale_id: 2508\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1221\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4565'\n 1 movimiento de efectivo por venta con folio PV1-V-1221 189.186.153.73 e0b94e0b-ffdb-4642-8390-9b081ee32245 2020-07-04 23:06:51.628122 34889 960 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 938\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.8792E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.683E3\nphysical_cash: !ruby/object:BigDecimal 18:0.683E3\nobservations: VENTA POR INTERNET\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.153.73 e3e62054-2097-45c3-ab42-161c8682bdf5 2020-07-04 23:09:30.495396 34890 938 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.153.73 e3e62054-2097-45c3-ab42-161c8682bdf5 2020-07-04 23:09:30.512567 34891 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-01 23:00:59.536845000 Z\n- &1 2020-07-03 23:21:30.185815000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-04 23:21:39.595441769 Z\nsign_in_count:\n- 107\n- 108\n 217 \N 189.186.153.73 7b44e652-d8da-437d-88e7-66fbdf2836bc 2020-07-04 23:21:39.600795 34892 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 8EmqxH9g_LBn4u3U_VJL\n- KDsWpX59hpreLojNiSxY\n 218 \N 189.186.153.73 7b44e652-d8da-437d-88e7-66fbdf2836bc 2020-07-04 23:21:39.639785 34893 1147 Product \N \N 18 User \N create ---\nsku: BOL-1147\nname: GIRLS1\ndescription: MOCHILA CLOE COLORES\nprice_base: !ruby/object:BigDecimal 18:0.2495E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1147 fue creado. 189.186.153.73 62b3b8ee-7494-420f-bdff-91a6aca8e381 2020-07-04 23:23:15.483383 34894 1147 Product \N \N 18 User \N update ---\nbarcode:\n- ''\n- '0001147'\n 2 \N 189.186.153.73 62b3b8ee-7494-420f-bdff-91a6aca8e381 2020-07-04 23:23:15.524956 34895 1983 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1147\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 62b3b8ee-7494-420f-bdff-91a6aca8e381 2020-07-04 23:23:15.564818 34896 305 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-45\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nobservations: ''\npurchase_date: 2020-07-04\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-45 por $ 499.0 MXN creada. 189.186.153.73 806db967-3394-4d9a-b417-b9228c31a29e 2020-07-04 23:23:33.990682 34897 1983 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.153.73 806db967-3394-4d9a-b417-b9228c31a29e 2020-07-04 23:23:34.015286 34898 2509 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 937\namount: !ruby/object:BigDecimal 18:0.998E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.998E3\nstatus: 0\ndate_sale: 2020-07-04\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-368\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.153.73 6db48b7a-d590-4a83-b074-58203d3ad8a1 2020-07-04 23:24:42.191637 34899 1983 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 6db48b7a-d590-4a83-b074-58203d3ad8a1 2020-07-04 23:24:42.219087 34900 2509 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.153.73 b062ebb6-d803-44c8-ac31-386f12413331 2020-07-04 23:24:48.912626 34901 3375 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 937\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.998E3\nmove_type: '1'\nsale_id: 2509\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-368\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.998E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-368 189.186.153.73 b062ebb6-d803-44c8-ac31-386f12413331 2020-07-04 23:24:48.933266 34902 1148 Product \N \N 4 User \N create ---\nsku: BOL-1148\nname: 2BLCV20346\ndescription: Bolsa Backpack Negro con Mascada de Rayas\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170821185'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: BLCV346_NEGR_1_828x1200.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1148 fue creado. 189.186.153.73 90890f9d-3466-41e1-8e16-af61cad2dc55 2020-07-04 23:25:58.503946 34903 1984 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1148\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 90890f9d-3466-41e1-8e16-af61cad2dc55 2020-07-04 23:25:58.548162 34904 1149 Product \N \N 4 User \N create ---\nsku: BOL-1149\nname: 2BLCV20354\ndescription: Bolsa Backpack Negra con Textura de Rayas\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170821437'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: BLCV354_NEGR_1_828x1200.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1149 fue creado. 189.186.153.73 13dd2a10-025a-4f15-9d24-e4e1ab783cf1 2020-07-04 23:28:20.302967 34905 1985 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1149\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 13dd2a10-025a-4f15-9d24-e4e1ab783cf1 2020-07-04 23:28:20.346102 34906 1150 Product \N \N 4 User \N create ---\nsku: BOL-1150\nname: MOCHILA\ndescription: ''\nprice_base: !ruby/object:BigDecimal 18:0.9495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1150 fue creado. 189.186.153.73 7b1a50bc-7076-48f4-97ed-57a3cde16c09 2020-07-04 23:30:11.683744 34907 1150 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001150'\n 2 \N 189.186.153.73 7b1a50bc-7076-48f4-97ed-57a3cde16c09 2020-07-04 23:30:11.719799 34908 1986 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1150\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 7b1a50bc-7076-48f4-97ed-57a3cde16c09 2020-07-04 23:30:11.748954 34909 306 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-45\namount: !ruby/object:BigDecimal 18:0.6796E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6796E4\nobservations: ''\npurchase_date: 2020-07-04\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-45 por $ 6796.0 MXN creada. 189.186.153.73 48432ee7-550f-4300-a2d9-9c68f63d7f91 2020-07-04 23:30:24.041428 34910 1982 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.153.73 48432ee7-550f-4300-a2d9-9c68f63d7f91 2020-07-04 23:30:24.072861 34911 1984 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 48432ee7-550f-4300-a2d9-9c68f63d7f91 2020-07-04 23:30:24.10174 34912 1985 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 48432ee7-550f-4300-a2d9-9c68f63d7f91 2020-07-04 23:30:24.128414 34913 1822 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.6E1\n 21 \N 189.186.153.73 48432ee7-550f-4300-a2d9-9c68f63d7f91 2020-07-04 23:30:24.156376 34914 1986 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 48432ee7-550f-4300-a2d9-9c68f63d7f91 2020-07-04 23:30:24.184388 34915 1151 Product \N \N 4 User \N create ---\nsku: CAR-1151\nname: 3BICI19486\ndescription: CARTERA NEGRA RAYADA\nprice_base: !ruby/object:BigDecimal 18:0.4245E3\nprice_sale: !ruby/object:BigDecimal 18:0.849E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1151 fue creado. 189.186.153.73 1657e340-64d9-4197-90dd-8d2014b713b1 2020-07-04 23:37:09.687558 34916 1151 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001151'\n 2 \N 189.186.153.73 1657e340-64d9-4197-90dd-8d2014b713b1 2020-07-04 23:37:09.713464 34917 1987 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1151\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.153.73 1657e340-64d9-4197-90dd-8d2014b713b1 2020-07-04 23:37:09.793854 34918 307 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-47\namount: !ruby/object:BigDecimal 18:0.4245E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4245E3\nobservations: ''\npurchase_date: 2020-07-04\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-47 por $ 424.5 MXN creada. 189.186.153.73 526712ad-73a5-42dc-aefb-7698c1d8d69c 2020-07-04 23:37:38.837798 34919 1987 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 526712ad-73a5-42dc-aefb-7698c1d8d69c 2020-07-04 23:37:38.86895 34920 2510 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 937\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2020-07-04\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-369\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.153.73 5cab682a-d5cf-4342-aa29-7b84e6491a17 2020-07-04 23:40:12.321349 34921 1986 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.153.73 5cab682a-d5cf-4342-aa29-7b84e6491a17 2020-07-04 23:40:12.349834 34922 2510 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.153.73 7e3fb7dd-e22e-4ea0-ad5c-0f730fc6b287 2020-07-04 23:40:22.234927 34923 3376 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 937\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1899E4\nmove_type: '1'\nsale_id: 2510\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-369\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1555'\n 1 movimiento de efectivo por venta con folio PV3-V-369 189.186.153.73 7e3fb7dd-e22e-4ea0-ad5c-0f730fc6b287 2020-07-04 23:40:22.258128 34924 310 Expense \N \N 18 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 937\nquantity: !ruby/object:BigDecimal 18:0.3E4\nstatus: 1\nobservations: ANTICIPO DE VITRINA SUO CENTRO\nexpense_date: 2020-07-04\nexpense_code: PV3-E-35\n 1 Egreso por 3000.0 registrado 189.186.153.73 7c099797-554b-4eb3-9924-8f3a387ceba3 2020-07-04 23:51:23.652927 34926 3377 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 937\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: 128\nexpense_id: 310\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.153.73 7c099797-554b-4eb3-9924-8f3a387ceba3 2020-07-04 23:51:23.703735 34927 2511 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 937\namount: !ruby/object:BigDecimal 18:0.139E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.139E3\nstatus: 0\ndate_sale: 2020-07-04\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-370\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.153.73 ad5a3812-cfed-4018-ae95-7adbc6aac7a0 2020-07-04 23:58:48.919153 34928 1770 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.153.73 ad5a3812-cfed-4018-ae95-7adbc6aac7a0 2020-07-04 23:58:48.964649 34929 2511 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.153.73 8d2eb97c-143f-4bbd-a14a-8cb62b429279 2020-07-04 23:59:41.205981 34930 3378 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 937\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.139E3\nmove_type: '1'\nsale_id: 2511\ncardnumber: 9152\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-370\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-370 189.186.153.73 8d2eb97c-143f-4bbd-a14a-8cb62b429279 2020-07-04 23:59:41.231493 34931 961 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 937\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.9953E4\namount_out: !ruby/object:BigDecimal 18:0.3E4\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.41E4\ncash_fund: !ruby/object:BigDecimal 18:0.642E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4742E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.153.73 3f526a86-db9b-478c-9ccd-8712ba84c4e0 2020-07-05 00:07:14.3795 34932 937 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.153.73 3f526a86-db9b-478c-9ccd-8712ba84c4e0 2020-07-05 00:07:14.394825 34933 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-02 20:31:27.551140000 Z\n- &1 2020-07-03 21:47:27.333597000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-05 00:28:37.156146101 Z\nsign_in_count:\n- 1604\n- 1605\n 3210 \N 189.186.153.73 2993318d-28fb-45b4-bc16-34ba6288e3d1 2020-07-05 00:28:37.163087 34934 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wcqzy6oaXvAKax5XkNyy\n- NAEtZ8-Hk_trV22PpYnV\n 3211 \N 189.186.153.73 2993318d-28fb-45b4-bc16-34ba6288e3d1 2020-07-05 00:28:37.180257 34935 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-03 21:47:27.333597000 Z\n- &1 2020-07-05 00:28:37.156146000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-05 00:28:37.813809455 Z\nsign_in_count:\n- 1605\n- 1606\n 3212 \N 189.186.153.73 5d41023a-338d-465c-863c-78ff9941930a 2020-07-05 00:28:37.819328 34936 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NAEtZ8-Hk_trV22PpYnV\n- 3evyUpJQxP4zt98Jasjo\n 3213 \N 189.186.153.73 5d41023a-338d-465c-863c-78ff9941930a 2020-07-05 00:28:37.834885 34937 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-03 23:21:30.185815000 Z\n- &1 2020-07-04 23:21:39.595441000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-06 01:35:42.861947678 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537387\n mask_addr: 4294967295\nsign_in_count:\n- 108\n- 109\n 219 \N 177.228.109.43 ed674890-b254-40b5-9f65-86f573a55981 2020-07-06 01:35:42.905363 34938 18 User \N \N 18 User \N update ---\nunique_session_id:\n- KDsWpX59hpreLojNiSxY\n- oxJaeyEy598KDcacLxtS\n 220 \N 177.228.109.43 ed674890-b254-40b5-9f65-86f573a55981 2020-07-06 01:35:42.927905 34939 939 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.642E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 642.0 177.228.109.43 03fc7be9-85a8-4368-b25a-d855d89841a9 2020-07-06 01:36:15.83276 34940 2512 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 939\namount: !ruby/object:BigDecimal 18:0.3098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3098E4\nstatus: 0\ndate_sale: 2020-07-05\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-371\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.109.43 d46b99e5-5db9-42cf-bf44-664be122f256 2020-07-06 01:36:59.586617 34941 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 9 \N 177.228.109.43 d46b99e5-5db9-42cf-bf44-664be122f256 2020-07-06 01:36:59.618348 34942 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 22 \N 177.228.109.43 d46b99e5-5db9-42cf-bf44-664be122f256 2020-07-06 01:36:59.653802 34943 2512 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.109.43 64eaa674-8546-41d9-8ab5-be7f505c6324 2020-07-06 01:37:11.449544 34944 3379 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 939\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.3098E4\nmove_type: '1'\nsale_id: 2512\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-371\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4588'\n 1 movimiento de efectivo por venta con folio PV3-V-371 177.228.109.43 64eaa674-8546-41d9-8ab5-be7f505c6324 2020-07-06 01:37:11.512407 34945 2513 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 939\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-07-05\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-372\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.109.43 dd52d6e9-7f87-413a-9d3f-f85e75458165 2020-07-06 01:37:57.856702 34946 1483 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 177.228.109.43 dd52d6e9-7f87-413a-9d3f-f85e75458165 2020-07-06 01:37:57.883325 34947 2513 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.109.43 7d894602-08d9-48af-afba-9673aceb1bf6 2020-07-06 01:38:07.272132 34948 3380 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 939\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2513\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-372\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1256'\n 1 movimiento de efectivo por venta con folio PV3-V-372 177.228.109.43 7d894602-08d9-48af-afba-9673aceb1bf6 2020-07-06 01:38:07.295574 35092 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PNp8SzjPs6JyEpSHTjRe\n- NTGKE-bH-xMVuykFv9LD\n 3223 \N 189.186.120.209 a79fb45d-8d07-4987-b3d6-a9b3ad51b472 2020-07-07 21:20:38.929316 34949 325 Customer \N \N 18 User \N create ---\nnick_name: ISA JAUREGUI\nphone: "(667) 206-7220"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ISA JAUREGUI fue registrado. 177.228.109.43 f8cae8d0-a951-4ef9-b5a2-f72133b576dc 2020-07-06 01:39:02.974061 34950 2514 Sale \N \N 18 User \N create ---\ncustomer_id: 325\nuser_id: 18\nopen_cash_register_id: 939\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-07-05\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-373\nexpiration_date: 2020-08-09\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.109.43 ffff14bb-8e26-4e0e-bc41-a0229018e674 2020-07-06 01:40:17.127265 34951 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 23 \N 177.228.109.43 ffff14bb-8e26-4e0e-bc41-a0229018e674 2020-07-06 01:40:17.166708 34952 3381 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 939\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2514\ncardnumber: 1525\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-373\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-373 177.228.109.43 d55df4fb-612b-4cb7-953b-5ab7ea0bbd6f 2020-07-06 01:40:29.118802 34953 2514 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 177.228.109.43 8b781803-2bae-47e6-a247-0007b59e3161 2020-07-06 01:40:30.689422 34954 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-07-02 22:12:25.281060000 Z\n- &1 2020-07-04 23:05:15.357708000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-06 01:41:10.951729704 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147106003\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537387\n mask_addr: 4294967295\nsign_in_count:\n- 134\n- 135\n 270 \N 177.228.109.43 88fb01c8-3113-4553-bb76-b34e29556844 2020-07-06 01:41:10.959316 34955 9 User \N \N 9 User \N update ---\nunique_session_id:\n- GDhTX9JDz3zzNZjixczd\n- 2htzrxTfeb7sQwLuF6DQ\n 271 \N 177.228.109.43 88fb01c8-3113-4553-bb76-b34e29556844 2020-07-06 01:41:10.977273 34956 940 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.683E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 683.0 177.228.109.43 344d38d7-bfcc-47f9-a49c-a3c1673aec4b 2020-07-06 01:41:14.769274 34957 2515 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 940\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-07-05\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1222\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.109.43 c73c7ff1-632f-489b-95f4-e722d5920c75 2020-07-06 01:41:32.408762 34958 1821 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 17 \N 177.228.109.43 c73c7ff1-632f-489b-95f4-e722d5920c75 2020-07-06 01:41:32.455389 34959 2515 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.109.43 704f8c7f-15de-4a2c-b327-33d5f4615ef9 2020-07-06 01:41:42.09995 34960 3382 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 940\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2515\ncardnumber: 1522\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1222\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1222 177.228.109.43 704f8c7f-15de-4a2c-b327-33d5f4615ef9 2020-07-06 01:41:42.122885 34961 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-04 23:21:39.595441000 Z\n- &1 2020-07-06 01:35:42.861947000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-06 01:44:49.150612692 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537387\n mask_addr: 4294967295\nsign_in_count:\n- 109\n- 110\n 221 \N 177.228.109.43 3ca4e83c-b112-4f8d-addb-ba77887bc566 2020-07-06 01:44:49.157761 34962 18 User \N \N 18 User \N update ---\nunique_session_id:\n- oxJaeyEy598KDcacLxtS\n- EB2PQWbyeq-uhDNJk5ef\n 222 \N 177.228.109.43 3ca4e83c-b112-4f8d-addb-ba77887bc566 2020-07-06 01:44:49.173418 34963 2516 Sale \N \N 18 User \N create ---\ncustomer_id: 3\nuser_id: 18\nopen_cash_register_id: 939\namount: !ruby/object:BigDecimal 18:0.166007E4\ntax: !ruby/object:BigDecimal 18:0.13793E3\ndiscount: !ruby/object:BigDecimal 18:0.798E3\ntotal: !ruby/object:BigDecimal 18:0.1E4\nstatus: 0\ndate_sale: 2020-07-05\nsaletype: 0\nseller_id: 24\nsale_code: PV3-V-374\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.109.43 0013e552-490f-4023-97dc-a24eb8832151 2020-07-06 01:46:49.514225 34964 855 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 177.228.109.43 0013e552-490f-4023-97dc-a24eb8832151 2020-07-06 01:46:49.544656 34965 2517 Sale \N \N 18 User \N create ---\ncustomer_id: 3\nuser_id: 18\nopen_cash_register_id: 939\namount: !ruby/object:BigDecimal 18:0.100245E4\ntax: !ruby/object:BigDecimal 18:0.9655E2\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.7E3\nstatus: 0\ndate_sale: 2020-07-05\nsaletype: 0\nseller_id: 24\nsale_code: PV3-V-375\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.109.43 18e712a0-207c-4e3c-9eff-4d3f36eddeec 2020-07-06 01:47:46.683354 34966 854 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 177.228.109.43 18e712a0-207c-4e3c-9eff-4d3f36eddeec 2020-07-06 01:47:46.70927 34967 962 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 939\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.5197E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.642E3\nphysical_cash: !ruby/object:BigDecimal 18:0.642E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 177.228.109.43 f999506d-c44f-44f1-9546-b4945955fa06 2020-07-06 01:52:19.475629 34968 939 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 177.228.109.43 f999506d-c44f-44f1-9546-b4945955fa06 2020-07-06 01:52:19.490578 34969 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-07-04 23:05:15.357708000 Z\n- &1 2020-07-06 01:41:10.951729000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-06 01:52:51.966388222 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537387\n mask_addr: 4294967295\nsign_in_count:\n- 135\n- 136\n 272 \N 177.228.109.43 22a024fd-d885-4d38-a7c0-86f5549d5900 2020-07-06 01:52:51.973167 34970 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 2htzrxTfeb7sQwLuF6DQ\n- 3fLrxyyqJpUAPpc8MrX_\n 273 \N 177.228.109.43 22a024fd-d885-4d38-a7c0-86f5549d5900 2020-07-06 01:52:51.989233 34971 963 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 940\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.1599E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.683E3\nphysical_cash: !ruby/object:BigDecimal 18:0.683E3\nobservations: VENTA POR INSTAGRAM\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 177.228.109.43 4d91141c-57c6-43be-a60e-a8d13fcdce0f 2020-07-06 01:53:20.916099 34972 940 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 177.228.109.43 4d91141c-57c6-43be-a60e-a8d13fcdce0f 2020-07-06 01:53:20.930228 34973 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-02 16:20:36.146864000 Z\n- &1 2020-07-03 20:58:16.098177000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-06 17:11:33.520760969 Z\nsign_in_count:\n- 566\n- 567\n 1137 \N 187.149.50.130 f40ebe1c-5b53-4c92-8659-12b2d8672915 2020-07-06 17:11:33.553323 34974 2 User \N \N 2 User \N update ---\nunique_session_id:\n- wsFtrAWhSx3cn1dD9L2-\n- xGzxZyR_NpB_HvxRH_ay\n 1138 \N 187.149.50.130 f40ebe1c-5b53-4c92-8659-12b2d8672915 2020-07-06 17:11:33.581096 34975 941 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.683E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 683.0 187.149.50.130 5154dbd1-b7d0-4531-ae7a-cf0b7ce54e8e 2020-07-06 17:12:00.944444 34976 3383 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 941\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1168E4\nmove_type: '1'\nsale_id: 2497\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1168E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1217 187.149.50.130 645b8671-6d53-4700-817f-9ab0a8823f11 2020-07-06 17:13:33.823774 34977 2497 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.50.130 02e43f37-4591-41bc-a23d-413b6e4ad6c5 2020-07-06 17:13:40.65366 34978 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-06 01:35:42.861947000 Z\n- &1 2020-07-06 01:44:49.150612000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-06 18:58:23.286605434 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537387\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114449\n mask_addr: 4294967295\nsign_in_count:\n- 110\n- 111\n 223 \N 189.186.120.209 7ffa3b23-6061-4ebe-a773-eb3c53d975e9 2020-07-06 18:58:23.295335 34979 18 User \N \N 18 User \N update ---\nunique_session_id:\n- EB2PQWbyeq-uhDNJk5ef\n- U8_AJL2NzsVenW73aBpT\n 224 \N 189.186.120.209 7ffa3b23-6061-4ebe-a773-eb3c53d975e9 2020-07-06 18:58:23.321489 34980 2518 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 941\namount: !ruby/object:BigDecimal 18:0.3996E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3996E4\nstatus: 0\ndate_sale: 2020-07-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1223\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.50.130 fa84c6cc-c3b9-489c-b5ed-ea7e7382828a 2020-07-06 19:13:05.966701 34981 786 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.24E2\n- !ruby/object:BigDecimal 18:0.23E2\n 20 \N 187.149.50.130 fa84c6cc-c3b9-489c-b5ed-ea7e7382828a 2020-07-06 19:13:06.006201 34982 1883 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.50.130 fa84c6cc-c3b9-489c-b5ed-ea7e7382828a 2020-07-06 19:13:06.0426 34983 1892 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.50.130 fa84c6cc-c3b9-489c-b5ed-ea7e7382828a 2020-07-06 19:13:06.071277 34984 1028 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.50.130 fa84c6cc-c3b9-489c-b5ed-ea7e7382828a 2020-07-06 19:13:06.10361 34985 2518 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.50.130 33fc06a8-3ad8-4cc0-bee4-6ff755c1afc5 2020-07-06 19:13:14.303272 34986 3384 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 941\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3996E4\nmove_type: '1'\nsale_id: 2518\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1223\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3996E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1223 187.149.50.130 33fc06a8-3ad8-4cc0-bee4-6ff755c1afc5 2020-07-06 19:13:14.331557 34987 2519 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 941\namount: !ruby/object:BigDecimal 18:0.759E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2020-07-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1224\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.50.130 77c75e8e-336f-4062-b250-f9e66ff7dfe0 2020-07-06 20:03:45.555932 34988 1441 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 187.149.50.130 77c75e8e-336f-4062-b250-f9e66ff7dfe0 2020-07-06 20:03:45.586995 34989 2519 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.50.130 9f44f1bb-6cf5-4512-9cf3-d301d91f1284 2020-07-06 20:03:54.838666 34990 3385 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 941\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.759E3\nmove_type: '1'\nsale_id: 2519\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1224\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.759E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1224 187.149.50.130 9f44f1bb-6cf5-4512-9cf3-d301d91f1284 2020-07-06 20:03:54.86084 34991 326 Customer \N \N 2 User \N create ---\nnick_name: adilene gonzalez\nphone: "(667) 251-9457"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente adilene gonzalez fue registrado. 187.149.50.130 2891745f-6ade-4471-9113-05866a96b57d 2020-07-06 20:33:35.878826 34992 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-05 00:28:37.156146000 Z\n- &1 2020-07-05 00:28:37.813809000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-06 21:07:25.116587421 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114449\n mask_addr: 4294967295\nsign_in_count:\n- 1606\n- 1607\n 3214 \N 189.186.120.209 78f84ed2-d2c4-42d0-890c-85c2aaf6b44d 2020-07-06 21:07:25.124031 34993 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3evyUpJQxP4zt98Jasjo\n- BxF2WtMaVet_y8jVh-DL\n 3215 \N 189.186.120.209 78f84ed2-d2c4-42d0-890c-85c2aaf6b44d 2020-07-06 21:07:25.143015 34994 1967 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.120.209 3daa7317-3e69-4a14-b2d1-a11ba5921a14 2020-07-06 21:09:24.192054 34995 623 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-07-06\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.120.209 3d9fc78e-65d9-4895-af55-d3759b068d67 2020-07-06 21:09:30.265422 34996 2520 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 941\namount: !ruby/object:BigDecimal 18:0.268E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.268E3\nstatus: 0\ndate_sale: 2020-07-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1225\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.76.66 ee2fc43a-96cf-42c9-bf16-9310c0d57d72 2020-07-06 21:29:51.663329 34997 1759 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.76.66 ee2fc43a-96cf-42c9-bf16-9310c0d57d72 2020-07-06 21:29:51.697347 34998 1294 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.76.66 ee2fc43a-96cf-42c9-bf16-9310c0d57d72 2020-07-06 21:29:51.726403 34999 2520 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.76.66 b03137d2-fbc1-4461-91e9-d3b27f1192c4 2020-07-06 21:30:00.833485 35000 3386 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 941\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.268E3\nmove_type: '1'\nsale_id: 2520\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1225\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.268E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1225 187.149.76.66 b03137d2-fbc1-4461-91e9-d3b27f1192c4 2020-07-06 21:30:00.864916 35001 623 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-06\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.76.66 aed1397f-2361-43d9-bdd2-caec2404f093 2020-07-06 21:35:26.294454 35002 1988 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1131\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.76.66 aed1397f-2361-43d9-bdd2-caec2404f093 2020-07-06 21:35:26.319463 35003 616 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-06\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.76.66 f869a662-66f2-4473-95a1-07d5f4a8074f 2020-07-06 21:37:04.845334 35004 170 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.76.66 f869a662-66f2-4473-95a1-07d5f4a8074f 2020-07-06 21:37:04.864381 35005 1989 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 387\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.76.66 f869a662-66f2-4473-95a1-07d5f4a8074f 2020-07-06 21:37:04.886998 35006 615 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-06\n 2 Se dio entrada a traspaso de S BY SUO a SUO 187.149.76.66 6bdf117c-f88c-4743-a709-dbcc3014b133 2020-07-06 21:37:35.62511 35007 686 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.76.66 6bdf117c-f88c-4743-a709-dbcc3014b133 2020-07-06 21:37:35.644403 35008 16 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.76.66 6bdf117c-f88c-4743-a709-dbcc3014b133 2020-07-06 21:37:35.663802 35009 2521 Sale \N \N 2 User \N create ---\ncustomer_id: 326\nuser_id: 2\nopen_cash_register_id: 941\namount: !ruby/object:BigDecimal 18:0.3398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3398E4\nstatus: 0\ndate_sale: 2020-07-06\nsaletype: 2\nseller_id: 25\nsale_code: PV1-V-1226\nexpiration_date: 2020-08-10\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.76.66 041a1a11-a873-490b-9c57-96af226bd030 2020-07-06 21:45:51.28555 35010 1939 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.76.66 041a1a11-a873-490b-9c57-96af226bd030 2020-07-06 21:45:51.324409 35011 1988 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.76.66 041a1a11-a873-490b-9c57-96af226bd030 2020-07-06 21:45:51.357895 35012 3387 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 941\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2521\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1226\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1226 187.149.76.66 481bfc41-78b3-431a-b140-b576dfb32680 2020-07-06 21:46:03.841703 35013 2521 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.76.66 ff2ccf1e-18b1-448e-987c-d1b077b3e78f 2020-07-06 21:46:05.811555 35014 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-06 01:44:49.150612000 Z\n- &1 2020-07-06 18:58:23.286605000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-06 22:28:36.867874808 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537387\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114449\n mask_addr: 4294967295\nsign_in_count:\n- 111\n- 112\n 225 \N 189.186.120.209 ec3b1f85-9c89-45e6-a37a-17e9b27f5ae6 2020-07-06 22:28:36.874775 35015 18 User \N \N 18 User \N update ---\nunique_session_id:\n- U8_AJL2NzsVenW73aBpT\n- Pvk5cjeCRjHeKfnLauux\n 226 \N 189.186.120.209 ec3b1f85-9c89-45e6-a37a-17e9b27f5ae6 2020-07-06 22:28:36.890442 35016 942 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.642E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 642.0 189.186.120.209 79e82984-1e75-4819-8927-b603a332e9b1 2020-07-06 22:52:32.552234 35017 2522 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 942\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-07-06\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-376\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 3e08c52d-32d8-4ffd-b9ad-32a4eca23939 2020-07-06 22:53:47.618289 35018 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 24 \N 189.186.120.209 3e08c52d-32d8-4ffd-b9ad-32a4eca23939 2020-07-06 22:53:47.649303 35019 2522 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.120.209 eb18d832-d687-4601-8d69-56af9ce9be3a 2020-07-06 22:53:53.328663 35020 3388 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 942\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2522\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-376\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-376 189.186.120.209 eb18d832-d687-4601-8d69-56af9ce9be3a 2020-07-06 22:53:53.351058 35021 2523 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 941\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.4E2\ntotal: !ruby/object:BigDecimal 18:0.1559E4\nstatus: 0\ndate_sale: 2020-07-06\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1227\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.76.66 fad594d7-02a7-4d69-ab20-29b2bc6b80e6 2020-07-06 23:37:20.545993 35022 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 18 \N 187.149.76.66 fad594d7-02a7-4d69-ab20-29b2bc6b80e6 2020-07-06 23:37:20.583473 35023 2523 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.76.66 aa2def46-dc4e-4e49-9d52-9b5fe1646164 2020-07-06 23:37:39.032977 35024 3389 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 941\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1559E4\nmove_type: '1'\nsale_id: 2523\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1227\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1559E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1227 187.149.76.66 aa2def46-dc4e-4e49-9d52-9b5fe1646164 2020-07-06 23:37:39.05539 35025 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-05 00:28:37.813809000 Z\n- &1 2020-07-06 21:07:25.116587000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-06 23:49:07.738296201 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114449\n mask_addr: 4294967295\nsign_in_count:\n- 1607\n- 1608\n 3216 \N 189.186.120.209 ca234ca9-377a-4dc0-a303-5dadd66a50e3 2020-07-06 23:49:07.74817 35026 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BxF2WtMaVet_y8jVh-DL\n- yXtZ2DeDZXS4epYBLPAx\n 3217 \N 189.186.120.209 ca234ca9-377a-4dc0-a303-5dadd66a50e3 2020-07-06 23:49:07.770536 35027 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-06 18:58:23.286605000 Z\n- &1 2020-07-06 22:28:36.867874000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-07 00:02:13.547648204 Z\nsign_in_count:\n- 112\n- 113\n 227 \N 189.186.120.209 b776fd09-8dfb-4c63-ad02-8f628ccd135a 2020-07-07 00:02:13.553711 35028 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Pvk5cjeCRjHeKfnLauux\n- Vp52gT2dizhb_53F-dGU\n 228 \N 189.186.120.209 b776fd09-8dfb-4c63-ad02-8f628ccd135a 2020-07-07 00:02:13.569552 35029 2524 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 942\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-07-06\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-377\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 7285eb8a-9e2d-4595-a2ba-722efd427c72 2020-07-07 00:02:33.903341 35030 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 25 \N 189.186.120.209 7285eb8a-9e2d-4595-a2ba-722efd427c72 2020-07-07 00:02:33.940598 35031 2524 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.120.209 36af76a0-5db0-4582-bec9-7fc75ddf9258 2020-07-07 00:02:43.049537 35032 3390 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 942\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2524\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-377\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-377 189.186.120.209 36af76a0-5db0-4582-bec9-7fc75ddf9258 2020-07-07 00:02:43.072496 35033 327 Customer \N \N 18 User \N create ---\nnick_name: PERLA ROCIO GASTELUM\nphone: "(667) 253-4318"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente PERLA ROCIO GASTELUM fue registrado. 189.186.120.209 b0abe019-373d-4c9b-b120-6c1b199941e9 2020-07-07 00:08:41.817031 35034 2525 Sale \N \N 18 User \N create ---\ncustomer_id: 327\nuser_id: 18\nopen_cash_register_id: 942\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-07-06\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-378\nexpiration_date: 2020-08-10\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 5b962870-da17-4dc6-8878-4dffe2af722b 2020-07-07 00:08:53.009763 35035 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 10 \N 189.186.120.209 5b962870-da17-4dc6-8878-4dffe2af722b 2020-07-07 00:08:53.038597 35036 3391 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 942\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2525\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-378\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-378 189.186.120.209 db69c8d2-284f-4c88-97d9-5303bb3608bf 2020-07-07 00:09:00.778169 35037 2525 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.120.209 0c746555-c4ca-487c-a184-af815ec1dd3b 2020-07-07 00:09:03.969509 35038 964 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 941\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.815E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.796E4\ncash_fund: !ruby/object:BigDecimal 18:0.873E3\nphysical_cash: !ruby/object:BigDecimal 18:0.8833E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.76.66 48d4b021-740c-43b5-8639-5da6fa6ebf22 2020-07-07 00:18:01.190523 35039 941 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.76.66 48d4b021-740c-43b5-8639-5da6fa6ebf22 2020-07-07 00:18:01.209646 35040 2526 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 942\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-07-06\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-379\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 5b6305c1-15d4-48ea-9f33-e899b3018fb7 2020-07-07 00:24:56.142142 35043 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 27 \N 189.186.120.209 42164f24-6c89-4ac6-baaf-6a43b35dc738 2020-07-07 00:25:04.450169 35044 2527 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 942\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-07-06\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-380\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 aa009411-b3ee-4d01-8519-2c1d7384270b 2020-07-07 00:25:17.03679 35045 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 28 \N 189.186.120.209 aa009411-b3ee-4d01-8519-2c1d7384270b 2020-07-07 00:25:17.073507 35046 2527 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.120.209 8b0abe53-d240-4bf3-bbb5-f5d2ec175020 2020-07-07 00:25:23.955143 35047 3392 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 942\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2527\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-380\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-380 189.186.120.209 8b0abe53-d240-4bf3-bbb5-f5d2ec175020 2020-07-07 00:25:23.985126 35048 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-06 21:07:25.116587000 Z\n- &1 2020-07-06 23:49:07.738296000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-07 00:33:17.180580036 Z\nsign_in_count:\n- 1608\n- 1609\n 3218 \N 189.186.120.209 67a5d850-7954-446a-96ba-5579862989db 2020-07-07 00:33:17.186381 35049 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yXtZ2DeDZXS4epYBLPAx\n- vC8YsY7BNAr_1uvPPRd7\n 3219 \N 189.186.120.209 67a5d850-7954-446a-96ba-5579862989db 2020-07-07 00:33:17.20306 35050 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-06 22:28:36.867874000 Z\n- &1 2020-07-07 00:02:13.547648000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-07 00:49:47.673359347 Z\nsign_in_count:\n- 113\n- 114\n 229 \N 189.186.120.209 cfdc043b-c6ed-4679-8fa1-c3697ed49572 2020-07-07 00:49:47.679483 35051 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Vp52gT2dizhb_53F-dGU\n- snB2yMyPJGW3igxxvM-y\n 230 \N 189.186.120.209 cfdc043b-c6ed-4679-8fa1-c3697ed49572 2020-07-07 00:49:47.69235 35052 2528 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 942\namount: !ruby/object:BigDecimal 18:0.2048E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2048E4\nstatus: 0\ndate_sale: 2020-07-06\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-381\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 e220fe7c-308a-4aca-9d52-88e0cd4098ff 2020-07-07 00:52:45.99583 35053 1987 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.120.209 e220fe7c-308a-4aca-9d52-88e0cd4098ff 2020-07-07 00:52:46.024789 35054 1240 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 189.186.120.209 e220fe7c-308a-4aca-9d52-88e0cd4098ff 2020-07-07 00:52:46.049763 35055 2528 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.120.209 b45867ed-6eaf-4e57-bd6d-14c1be0df937 2020-07-07 00:52:56.987221 35056 3393 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 942\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2048E4\nmove_type: '1'\nsale_id: 2528\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-381\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2048E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-381 189.186.120.209 b45867ed-6eaf-4e57-bd6d-14c1be0df937 2020-07-07 00:52:57.009671 35057 965 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 942\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.7345E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.7347E4\ncash_fund: !ruby/object:BigDecimal 18:0.64E3\nphysical_cash: !ruby/object:BigDecimal 18:0.7987E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.120.209 92ad686a-6576-4ae3-a980-f414f2b5daf8 2020-07-07 00:58:50.863113 35058 942 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.120.209 92ad686a-6576-4ae3-a980-f414f2b5daf8 2020-07-07 00:58:50.880847 35059 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-07 00:02:13.547648000 Z\n- &1 2020-07-07 00:49:47.673359000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-07 18:26:57.121416095 Z\nsign_in_count:\n- 114\n- 115\n 231 \N 189.186.120.209 34b73925-86f6-48f7-8a55-1dc390781fb8 2020-07-07 18:26:57.150474 35060 18 User \N \N 18 User \N update ---\nunique_session_id:\n- snB2yMyPJGW3igxxvM-y\n- rHuoZLoRmvpSKZ89t39r\n 232 \N 189.186.120.209 34b73925-86f6-48f7-8a55-1dc390781fb8 2020-07-07 18:26:57.175656 35061 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 29 \N 189.186.120.209 a5a18a81-5662-48f5-a716-e2f315c59da9 2020-07-07 18:28:44.373897 35062 1982 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.120.209 eef333ac-774b-48d7-9823-edcd6e31e9cf 2020-07-07 18:30:05.747852 35063 843 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.120.209 e0d834d0-3f62-42ee-8d51-caa4295b986f 2020-07-07 18:30:19.460901 35064 843 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.120.209 9211319c-ca9b-4f26-99e7-0c468916557d 2020-07-07 18:30:30.957262 35065 624 Transfer \N \N 18 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-07-07\nuser_id: 18\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.120.209 99d65a4a-f046-486e-b4d4-ac52b583f89a 2020-07-07 18:31:18.248257 35066 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-03 20:58:16.098177000 Z\n- &1 2020-07-06 17:11:33.520760000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-07 18:32:27.505377412 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117186\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123778\n mask_addr: 4294967295\nsign_in_count:\n- 567\n- 568\n 1139 \N 187.149.76.66 753352c8-2532-4d0a-8335-537c44329314 2020-07-07 18:32:27.513123 35067 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xGzxZyR_NpB_HvxRH_ay\n- zSj3f-bF5skaYVBXjs-5\n 1140 \N 187.149.76.66 753352c8-2532-4d0a-8335-537c44329314 2020-07-07 18:32:27.534924 35093 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-07 18:26:57.121416000 Z\n- &1 2020-07-07 21:01:11.376079000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-07 22:13:09.330050161 Z\nsign_in_count:\n- 116\n- 117\n 235 \N 189.186.120.209 bbca5046-8433-43dc-82d7-21e60c8fe726 2020-07-07 22:13:09.336656 35068 943 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.873E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 873.0 187.149.76.66 43b6e71f-c374-48c3-9770-c067cab6bb07 2020-07-07 18:32:49.53314 35069 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-06 23:49:07.738296000 Z\n- &1 2020-07-07 00:33:17.180580000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-07 18:32:51.612091964 Z\nsign_in_count:\n- 1609\n- 1610\n 3220 \N 189.186.120.209 5295181a-c304-4b27-a072-8c6f2fc3e941 2020-07-07 18:32:51.620874 35070 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vC8YsY7BNAr_1uvPPRd7\n- PNp8SzjPs6JyEpSHTjRe\n 3221 \N 189.186.120.209 5295181a-c304-4b27-a072-8c6f2fc3e941 2020-07-07 18:32:51.644184 35071 624 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-07\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.76.66 829770c2-a625-4d93-974b-b6a5eee8bbd9 2020-07-07 18:33:18.00379 35072 263 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.76.66 829770c2-a625-4d93-974b-b6a5eee8bbd9 2020-07-07 18:33:18.026402 35073 1990 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1146\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.76.66 829770c2-a625-4d93-974b-b6a5eee8bbd9 2020-07-07 18:33:18.060864 35074 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 19 \N 187.149.76.66 829770c2-a625-4d93-974b-b6a5eee8bbd9 2020-07-07 18:33:18.082494 35075 2529 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 943\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2020-07-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1228\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.76.66 57a1f3b8-7d3e-4153-868f-b4d6ae99f23d 2020-07-07 19:40:43.07414 35076 1629 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.76.66 57a1f3b8-7d3e-4153-868f-b4d6ae99f23d 2020-07-07 19:40:43.130207 35077 2529 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.76.66 74b2615e-d836-4f80-9d75-fa1ad5fb38ce 2020-07-07 19:40:50.046363 35078 3394 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 943\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.569E3\nmove_type: '1'\nsale_id: 2529\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1228\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.569E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1228 187.149.76.66 74b2615e-d836-4f80-9d75-fa1ad5fb38ce 2020-07-07 19:40:50.069044 35079 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-06 17:11:33.520760000 Z\n- &1 2020-07-07 18:32:27.505377000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-07 20:21:22.928088928 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117186\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123778\n mask_addr: 4294967295\nsign_in_count:\n- 568\n- 569\n 1141 \N 187.149.76.66 c45c7e59-22fc-4617-a600-9e1dcb1d75fe 2020-07-07 20:21:22.936084 35080 2 User \N \N 2 User \N update ---\nunique_session_id:\n- zSj3f-bF5skaYVBXjs-5\n- D_Cz111vi8ZqpwQBp8f2\n 1142 \N 187.149.76.66 c45c7e59-22fc-4617-a600-9e1dcb1d75fe 2020-07-07 20:21:22.953935 35081 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-07 18:32:27.505377000 Z\n- &1 2020-07-07 20:21:22.928088000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-07 20:25:57.324444812 Z\nsign_in_count:\n- 569\n- 570\n 1143 \N 187.149.76.66 d500a593-9d1c-4db2-9331-daad835845ce 2020-07-07 20:25:57.330522 35082 2 User \N \N 2 User \N update ---\nunique_session_id:\n- D_Cz111vi8ZqpwQBp8f2\n- Fm2Hr_y-_6fmCmYgV7zb\n 1144 \N 187.149.76.66 d500a593-9d1c-4db2-9331-daad835845ce 2020-07-07 20:25:57.346461 35083 3395 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 943\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1699E4\nmove_type: '1'\nsale_id: 2521\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1699E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1226 187.149.76.66 028b8d21-ca0a-43a8-a095-3c664a39e548 2020-07-07 20:27:29.810884 35084 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-07 00:49:47.673359000 Z\n- &1 2020-07-07 18:26:57.121416000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-07 21:01:11.376079501 Z\nsign_in_count:\n- 115\n- 116\n 233 \N 189.186.120.209 3051c594-f59b-455d-8a78-889ac2655352 2020-07-07 21:01:11.382744 35085 18 User \N \N 18 User \N update ---\nunique_session_id:\n- rHuoZLoRmvpSKZ89t39r\n- TyCJwP8-2nHAq1fEsD-f\n 234 \N 189.186.120.209 3051c594-f59b-455d-8a78-889ac2655352 2020-07-07 21:01:11.398886 35086 944 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.64E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 640.0 189.186.120.209 5c80ef21-9557-44c9-aa96-fc013d9633d5 2020-07-07 21:03:00.636181 35087 2530 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 944\namount: !ruby/object:BigDecimal 18:0.61693E3\ntax: !ruby/object:BigDecimal 18:0.8207E2\ndiscount: !ruby/object:BigDecimal 18:0.104E3\ntotal: !ruby/object:BigDecimal 18:0.595E3\nstatus: 0\ndate_sale: 2020-07-07\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-382\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 6cc0a128-6e58-456d-a98a-bd4dd08f36a3 2020-07-07 21:13:52.73862 35088 949 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.120.209 6cc0a128-6e58-456d-a98a-bd4dd08f36a3 2020-07-07 21:13:52.782551 35089 2530 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.120.209 730dca0a-8ce2-4434-8221-6ff2d442244c 2020-07-07 21:14:00.122699 35090 3396 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 944\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.595E3\nmove_type: '1'\nsale_id: 2530\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-382\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.595E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-382 189.186.120.209 730dca0a-8ce2-4434-8221-6ff2d442244c 2020-07-07 21:14:00.176554 35091 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-07 00:33:17.180580000 Z\n- &1 2020-07-07 18:32:51.612091000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-07 21:20:38.904120013 Z\nsign_in_count:\n- 1610\n- 1611\n 3222 \N 189.186.120.209 a79fb45d-8d07-4987-b3d6-a9b3ad51b472 2020-07-07 21:20:38.91126 35094 18 User \N \N 18 User \N update ---\nunique_session_id:\n- TyCJwP8-2nHAq1fEsD-f\n- MABnFJ9dozfX76K79xdS\n 236 \N 189.186.120.209 bbca5046-8433-43dc-82d7-21e60c8fe726 2020-07-07 22:13:09.361052 35095 3397 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2433\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: TRANS\n 1 \N 189.186.120.209 44e29317-8080-45e0-bfc0-08bbed6d9a6b 2020-07-07 22:14:51.718653 35096 2433 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.120.209 44e29317-8080-45e0-bfc0-08bbed6d9a6b 2020-07-07 22:14:51.747228 35097 2463 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.120.209 44e29317-8080-45e0-bfc0-08bbed6d9a6b 2020-07-07 22:14:51.772797 35098 3397 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 928\n- 944\n 2 movimiento de efectivo por venta con folio PV3-V-334 189.186.120.209 44e29317-8080-45e0-bfc0-08bbed6d9a6b 2020-07-07 22:14:51.787654 35099 3398 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 932\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.11E4\nmove_type: '1'\nsale_id: 2454\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SS\n 1 \N 189.186.120.209 11be2890-4158-4e6e-8e58-ee360b2f4dc8 2020-07-07 22:18:07.165715 35100 2454 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.120.209 11be2890-4158-4e6e-8e58-ee360b2f4dc8 2020-07-07 22:18:07.194847 35101 2457 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.120.209 11be2890-4158-4e6e-8e58-ee360b2f4dc8 2020-07-07 22:18:07.21707 35102 2472 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.120.209 11be2890-4158-4e6e-8e58-ee360b2f4dc8 2020-07-07 22:18:07.238096 35103 3398 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 932\n- 944\n 2 movimiento de efectivo por venta con folio PV2-V-912 189.186.120.209 11be2890-4158-4e6e-8e58-ee360b2f4dc8 2020-07-07 22:18:07.250828 35104 3399 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 883\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.9E3\nmove_type: '1'\nsale_id: 2311\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DD\n 1 \N 189.186.120.209 60ef9748-3249-4359-8b4f-4ba614fe778d 2020-07-07 22:19:33.37179 35105 3399 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 883\n- 944\n 2 movimiento de efectivo por venta con folio PV3-V-291 189.186.120.209 60ef9748-3249-4359-8b4f-4ba614fe778d 2020-07-07 22:19:33.399486 35106 3400 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 2472\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '126'\n 1 \N 189.186.120.209 1c391b38-9efa-435a-b5a5-77e73e550b5c 2020-07-07 22:31:02.790604 35107 3400 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 933\n- 944\n 2 movimiento de efectivo por venta con folio PV1-V-1203 189.186.120.209 1c391b38-9efa-435a-b5a5-77e73e550b5c 2020-07-07 22:31:02.822226 35108 2531 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 943\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.849E3\nstatus: 0\ndate_sale: 2020-07-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1229\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.76.66 3f9d8f02-738e-43fd-8b3a-c9266b3b8973 2020-07-07 22:52:25.771608 35109 1847 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.76.66 3f9d8f02-738e-43fd-8b3a-c9266b3b8973 2020-07-07 22:52:25.81228 35110 2531 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.76.66 46736cad-6a49-407f-808d-22a988d1f7bb 2020-07-07 22:52:29.776916 35111 3401 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 943\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.849E3\nmove_type: '1'\nsale_id: 2531\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1229\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.849E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1229 187.149.76.66 46736cad-6a49-407f-808d-22a988d1f7bb 2020-07-07 22:52:29.811608 35112 2532 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 944\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-07-07\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-383\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 453455c9-8a06-4926-887c-962ae2dc8ad5 2020-07-07 23:10:36.323537 35113 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 11 \N 189.186.120.209 453455c9-8a06-4926-887c-962ae2dc8ad5 2020-07-07 23:10:36.354423 35114 2532 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.120.209 c9fe8bf9-8542-4471-b5fe-c01bb34303fc 2020-07-07 23:10:46.410995 35115 3402 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 944\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 2532\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-383\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-383 189.186.120.209 c9fe8bf9-8542-4471-b5fe-c01bb34303fc 2020-07-07 23:10:46.438992 35116 2533 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 943\namount: !ruby/object:BigDecimal 18:0.230472E4\ntax: !ruby/object:BigDecimal 18:0.9228E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2397E4\nstatus: 0\ndate_sale: 2020-07-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1230\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.76.66 9433b9ca-9c05-43d1-9b90-3ed14406c148 2020-07-07 23:32:18.616068 35117 150 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 11 \N 187.149.76.66 9433b9ca-9c05-43d1-9b90-3ed14406c148 2020-07-07 23:32:18.644931 35118 1292 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.76.66 9433b9ca-9c05-43d1-9b90-3ed14406c148 2020-07-07 23:32:18.669519 35119 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.76.66 9433b9ca-9c05-43d1-9b90-3ed14406c148 2020-07-07 23:32:18.694728 35120 2533 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.76.66 a0f7af47-10fc-402b-9f8a-93d469e3adfc 2020-07-07 23:32:27.602795 35121 3403 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 943\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2397E4\nmove_type: '1'\nsale_id: 2533\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1230\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2397E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1230 187.149.76.66 a0f7af47-10fc-402b-9f8a-93d469e3adfc 2020-07-07 23:32:27.626345 35122 328 Customer \N \N 18 User \N create ---\nnick_name: KAREN RODRIGUEZ\nphone: "(667) 451-5480"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KAREN RODRIGUEZ fue registrado. 189.186.120.209 387b72cc-3259-4f10-b18d-03cdb3ce57a5 2020-07-07 23:32:31.088635 35123 1916 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.120.209 10cb9e81-2f60-41f7-9cbe-fcd666e066ba 2020-07-07 23:37:37.106108 35124 625 Transfer \N \N 18 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-07-07\nuser_id: 18\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.120.209 1cce32bd-c5e3-40ee-94dd-0bbfa06aef7e 2020-07-07 23:37:40.552769 35125 1364 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.76.66 dd71461e-a39e-457b-9859-2205fa4916fb 2020-07-07 23:37:48.106838 35126 626 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-07\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.76.66 6004c66e-0095-4b17-9e54-fd3545610396 2020-07-07 23:37:50.406203 35127 625 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-07\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.76.66 13ad0d98-35f8-4c3a-9bf3-ca52d727d8b8 2020-07-07 23:38:00.231902 35128 1991 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1027\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.76.66 13ad0d98-35f8-4c3a-9bf3-ca52d727d8b8 2020-07-07 23:38:00.254556 35129 2534 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 943\namount: !ruby/object:BigDecimal 18:0.365E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.365E3\nstatus: 0\ndate_sale: 2020-07-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1231\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.76.66 12604862-d3bb-4c8e-ae74-3ac07cb5ebe5 2020-07-07 23:38:20.365528 35130 1991 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.76.66 12604862-d3bb-4c8e-ae74-3ac07cb5ebe5 2020-07-07 23:38:20.397303 35131 2534 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.76.66 159e050b-00e7-41f7-b548-88f9b5c75728 2020-07-07 23:38:24.528575 35132 3404 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 943\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.365E3\nmove_type: '1'\nsale_id: 2534\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1231\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.365E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1231 187.149.76.66 159e050b-00e7-41f7-b548-88f9b5c75728 2020-07-07 23:38:24.549373 35133 626 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-07\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.120.209 b24453eb-fdf1-4eee-abb6-df3aae0dc57a 2020-07-07 23:39:57.102001 35134 1352 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.120.209 b24453eb-fdf1-4eee-abb6-df3aae0dc57a 2020-07-07 23:39:57.12292 35135 966 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 943\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5879E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.6E4\ncash_fund: !ruby/object:BigDecimal 18:0.752E3\nphysical_cash: !ruby/object:BigDecimal 18:0.6752E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.76.66 66e3b920-2cd7-41c0-8eb3-7cc9d96b4290 2020-07-07 23:41:04.785234 35136 943 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.76.66 66e3b920-2cd7-41c0-8eb3-7cc9d96b4290 2020-07-07 23:41:04.801794 35137 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-07 18:32:51.612091000 Z\n- &1 2020-07-07 21:20:38.904120000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-07 23:43:41.390374086 Z\nsign_in_count:\n- 1611\n- 1612\n 3224 \N 189.186.120.209 5d422b39-a71e-457b-be30-75eb1e0e3279 2020-07-07 23:43:41.396268 35138 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NTGKE-bH-xMVuykFv9LD\n- DyGgmziW1Shdwig4gBAi\n 3225 \N 189.186.120.209 5d422b39-a71e-457b-be30-75eb1e0e3279 2020-07-07 23:43:41.414165 35139 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-07 21:01:11.376079000 Z\n- &1 2020-07-07 22:13:09.330050000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-07 23:49:55.696322654 Z\nsign_in_count:\n- 117\n- 118\n 237 \N 189.186.120.209 1924da0c-4c89-47e9-b013-0a7aac5a2a6b 2020-07-07 23:49:55.70263 35140 18 User \N \N 18 User \N update ---\nunique_session_id:\n- MABnFJ9dozfX76K79xdS\n- crsSG6zzMxrKihfH8vPL\n 238 \N 189.186.120.209 1924da0c-4c89-47e9-b013-0a7aac5a2a6b 2020-07-07 23:49:55.717847 35141 329 Customer \N \N 18 User \N create ---\nnick_name: KAREN RODRIGUEZ\nphone: "(667) 451-5480"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KAREN RODRIGUEZ fue registrado. 189.186.120.209 34bfb7dc-36bc-46b4-aa91-93cdc7ddeb02 2020-07-07 23:50:30.559799 35142 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-07 21:20:38.904120000 Z\n- &1 2020-07-07 23:43:41.390374000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-07 23:51:48.403392293 Z\nsign_in_count:\n- 1612\n- 1613\n 3226 \N 189.186.120.209 af7ddfee-74ac-44bb-b470-9a2bc22b7e9d 2020-07-07 23:51:48.409263 35143 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DyGgmziW1Shdwig4gBAi\n- aBGgbJUWsxWE7JPYm3cs\n 3227 \N 189.186.120.209 af7ddfee-74ac-44bb-b470-9a2bc22b7e9d 2020-07-07 23:51:48.424656 35308 1528 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.69.237 684ed489-d241-4fab-8035-a34ed4ec915b 2020-07-10 20:01:08.435788 35144 627 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-07\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.120.209 6152da49-6fa8-4419-ad34-f9d1d562fb90 2020-07-07 23:53:04.872229 35145 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-07 22:13:09.330050000 Z\n- &1 2020-07-07 23:49:55.696322000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-07 23:53:34.478604167 Z\nsign_in_count:\n- 118\n- 119\n 239 \N 189.186.120.209 c724da8d-fdb9-44c8-b887-4b974efb1cee 2020-07-07 23:53:34.484657 35146 18 User \N \N 18 User \N update ---\nunique_session_id:\n- crsSG6zzMxrKihfH8vPL\n- NjVeh2bg2xFaL6_WpXLs\n 240 \N 189.186.120.209 c724da8d-fdb9-44c8-b887-4b974efb1cee 2020-07-07 23:53:34.498627 35147 627 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-07\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.120.209 d01422cd-eda4-4de4-8471-3c1082eb7093 2020-07-07 23:54:13.555522 35148 1992 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 19\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.120.209 d01422cd-eda4-4de4-8471-3c1082eb7093 2020-07-07 23:54:13.577461 35149 2535 Sale \N \N 18 User \N create ---\ncustomer_id: 329\nuser_id: 18\nopen_cash_register_id: 944\namount: !ruby/object:BigDecimal 18:0.51638E3\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-07-07\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-384\nexpiration_date: 2020-08-11\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 a2167219-a54f-4ce2-a540-be08cc80885d 2020-07-08 00:13:35.738019 35150 1992 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.120.209 a2167219-a54f-4ce2-a540-be08cc80885d 2020-07-08 00:13:35.770534 35151 3405 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 944\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2535\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-384\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-384 189.186.120.209 3a66257f-e1dc-4e3c-84a7-69e432b5f8e6 2020-07-08 00:14:19.040938 35152 2535 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.120.209 512340b8-7259-42a6-892b-6f1538f3a84f 2020-07-08 00:14:28.041082 35153 967 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 944\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.5894E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.1989E4\ncash_fund: !ruby/object:BigDecimal 18:0.945E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2934E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.120.209 f5f8aed8-0a6e-4537-a75e-a09d7ee57d0c 2020-07-08 00:31:58.030728 35154 944 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.120.209 f5f8aed8-0a6e-4537-a75e-a09d7ee57d0c 2020-07-08 00:31:58.049272 35155 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-07 20:21:22.928088000 Z\n- &1 2020-07-07 20:25:57.324444000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-08 17:53:46.439306960 Z\nsign_in_count:\n- 570\n- 571\n 1145 \N 187.149.76.66 696f5f48-296c-4735-80ae-cb215136a014 2020-07-08 17:53:46.467651 35156 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Fm2Hr_y-_6fmCmYgV7zb\n- 8Fg3AXGW1WMND8KMTcuo\n 1146 \N 187.149.76.66 696f5f48-296c-4735-80ae-cb215136a014 2020-07-08 17:53:46.491895 35157 945 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.752E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 752.0 187.149.76.66 aa367d23-8045-4db5-8615-76c870a3621c 2020-07-08 17:54:16.148786 35158 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-07 23:49:55.696322000 Z\n- &1 2020-07-07 23:53:34.478604000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-08 19:20:13.860386015 Z\nsign_in_count:\n- 119\n- 120\n 241 \N 189.186.120.209 1f5bc2e7-3ee0-4c5d-93b7-bd22ccdf8613 2020-07-08 19:20:13.891511 35159 18 User \N \N 18 User \N update ---\nunique_session_id:\n- NjVeh2bg2xFaL6_WpXLs\n- wkrPNhxkt8it6zdBvKja\n 242 \N 189.186.120.209 1f5bc2e7-3ee0-4c5d-93b7-bd22ccdf8613 2020-07-08 19:20:13.917439 35160 946 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.945E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 945.0 189.186.120.209 db4c95af-a082-4ab7-94b2-f417905cb672 2020-07-08 19:24:55.347818 35161 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 20 \N 187.149.76.66 bb744c34-d285-4d25-9169-21cc5bf29d37 2020-07-08 19:26:26.385165 35162 268 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 14 \N 187.149.76.66 935e5375-234f-4ae2-b26e-19608034c200 2020-07-08 19:26:34.317286 35163 671 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.76.66 775392c1-0cc3-493b-8e83-a0f7860bb794 2020-07-08 19:26:50.794177 35164 628 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-08\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.76.66 4c7a2650-b5dc-4f45-ae73-010dd6c72f29 2020-07-08 19:26:57.907005 35165 628 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-08\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.120.209 108fa0ee-daaf-4834-9fbf-2ca4167cd89d 2020-07-08 19:28:02.640819 35166 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 30 \N 189.186.120.209 108fa0ee-daaf-4834-9fbf-2ca4167cd89d 2020-07-08 19:28:02.660417 35167 846 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.120.209 108fa0ee-daaf-4834-9fbf-2ca4167cd89d 2020-07-08 19:28:02.689723 35168 1993 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 435\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.120.209 108fa0ee-daaf-4834-9fbf-2ca4167cd89d 2020-07-08 19:28:02.712776 35192 934 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.120.209 58df5c14-a632-4bb5-bc8b-e0195f842d41 2020-07-08 20:24:37.915681 35378 4 User \N \N 4 User \N update ---\nunique_session_id:\n- JSsy9cyrkE6jwQqVYAzH\n- 3V5muZABDyr5vhoMMXkc\n 3259 \N 189.186.69.237 25041160-92b3-47c5-a321-dbd7fd6a1fe0 2020-07-11 20:12:54.895559 35169 2536 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 946\namount: !ruby/object:BigDecimal 18:0.222225E4\ntax: !ruby/object:BigDecimal 18:0.27575E3\ndiscount: !ruby/object:BigDecimal 18:0.4988E3\ntotal: !ruby/object:BigDecimal 18:0.19992E4\nstatus: 0\ndate_sale: 2020-07-08\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-385\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 27201472-5d61-4412-9072-2f60e484ce9d 2020-07-08 19:35:56.129393 35170 846 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.120.209 27201472-5d61-4412-9072-2f60e484ce9d 2020-07-08 19:35:56.160679 35171 844 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.120.209 27201472-5d61-4412-9072-2f60e484ce9d 2020-07-08 19:35:56.189177 35172 2536 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.120.209 7ea5e28b-3546-4988-b9ef-0e343db7d3c0 2020-07-08 19:36:11.991742 35173 3406 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 946\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.19992E4\nmove_type: '1'\nsale_id: 2536\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-385\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.19992E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-385 189.186.120.209 7ea5e28b-3546-4988-b9ef-0e343db7d3c0 2020-07-08 19:36:12.017324 35174 330 Customer \N \N 18 User \N create ---\nnick_name: ANABEL VALENZUELA TORRES\nphone: "(667) 388-5147"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANABEL VALENZUELA TORRES fue registrado. 189.186.120.209 4e9e33f2-4905-412e-abf8-c90cfc777944 2020-07-08 19:36:58.320819 35175 2537 Sale \N \N 18 User \N create ---\ncustomer_id: 330\nuser_id: 18\nopen_cash_register_id: 946\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-07-08\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-386\nexpiration_date: 2020-08-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 9c41d687-b4d7-4da7-8ee4-c4fc20b22a4b 2020-07-08 19:37:13.289131 35176 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 12 \N 189.186.120.209 9c41d687-b4d7-4da7-8ee4-c4fc20b22a4b 2020-07-08 19:37:13.321282 35177 3407 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 946\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2537\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-386\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-386 189.186.120.209 07743c15-bf8a-4054-aa3e-ca360ada170e 2020-07-08 19:37:21.474732 35178 2537 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.120.209 de87f67a-bb31-4b20-ad9e-afb78e06c895 2020-07-08 19:37:23.249411 35179 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-07 23:43:41.390374000 Z\n- &1 2020-07-07 23:51:48.403392000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-08 19:50:00.071637188 Z\nsign_in_count:\n- 1613\n- 1614\n 3228 \N 189.186.120.209 2e447df9-5f5c-4a1f-87fa-a6f1ed70cd20 2020-07-08 19:50:00.077812 35180 4 User \N \N 4 User \N update ---\nunique_session_id:\n- aBGgbJUWsxWE7JPYm3cs\n- UR-oXMsYaExxrSCEY3Dc\n 3229 \N 189.186.120.209 2e447df9-5f5c-4a1f-87fa-a6f1ed70cd20 2020-07-08 19:50:00.095193 35181 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-07 23:53:34.478604000 Z\n- &1 2020-07-08 19:20:13.860386000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-08 20:22:16.031696787 Z\nsign_in_count:\n- 120\n- 121\n 243 \N 189.186.120.209 34561719-d1bc-40f2-b001-1772f330612e 2020-07-08 20:22:16.041362 35182 18 User \N \N 18 User \N update ---\nunique_session_id:\n- wkrPNhxkt8it6zdBvKja\n- uTzus1Hoy5_Qxzuz123T\n 244 \N 189.186.120.209 34561719-d1bc-40f2-b001-1772f330612e 2020-07-08 20:22:16.063287 35183 331 Customer \N \N 18 User \N create ---\nnick_name: CLAUDIA SARABIA\nphone: "(667) 200-3500"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CLAUDIA SARABIA fue registrado. 189.186.120.209 133d794a-2c78-4611-80e2-28787c89e40a 2020-07-08 20:22:47.672402 35184 2538 Sale \N \N 18 User \N create ---\ncustomer_id: 331\nuser_id: 18\nopen_cash_register_id: 946\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.899E3\ntotal: !ruby/object:BigDecimal 18:0.7E3\nstatus: 0\ndate_sale: 2020-07-08\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-387\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 847d2564-b8a1-4d40-8c81-54303d06751d 2020-07-08 20:23:21.967813 35185 934 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.120.209 847d2564-b8a1-4d40-8c81-54303d06751d 2020-07-08 20:23:21.998952 35186 2538 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.120.209 36b453d4-039e-4ac7-ac51-60f8713c233a 2020-07-08 20:23:26.085287 35187 3408 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 946\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2538\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-387\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-387 189.186.120.209 36b453d4-039e-4ac7-ac51-60f8713c233a 2020-07-08 20:23:26.113526 35188 2538 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-387 cancelada. 189.186.120.209 6e0dd622-c8fa-4fb2-a96a-de66e1e4c30f 2020-07-08 20:23:39.827609 35189 3408 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 946\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2538\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-387\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.120.209 6e0dd622-c8fa-4fb2-a96a-de66e1e4c30f 2020-07-08 20:23:39.852909 35190 934 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.120.209 6e0dd622-c8fa-4fb2-a96a-de66e1e4c30f 2020-07-08 20:23:39.883687 35191 2539 Sale \N \N 18 User \N create ---\ncustomer_id: 331\nuser_id: 18\nopen_cash_register_id: 946\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.899E3\ntotal: !ruby/object:BigDecimal 18:0.7E3\nstatus: 0\ndate_sale: 2020-07-08\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-388\nexpiration_date: 2020-08-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 58df5c14-a632-4bb5-bc8b-e0195f842d41 2020-07-08 20:24:37.873543 35193 3409 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 946\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2539\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-388\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-388 189.186.120.209 6f66286d-627a-42f1-ba23-f620692f5dc5 2020-07-08 20:24:43.679282 35194 2539 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.120.209 06f855d3-f934-4d60-84eb-e6d93a5d36f3 2020-07-08 20:24:45.101464 35195 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-07 23:51:48.403392000 Z\n- &1 2020-07-08 19:50:00.071637000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-08 20:29:24.640740808 Z\nsign_in_count:\n- 1614\n- 1615\n 3230 \N 189.186.120.209 f871da3c-978e-49e0-8f3d-220561c74c20 2020-07-08 20:29:24.646558 35196 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UR-oXMsYaExxrSCEY3Dc\n- bcfSzvPHWs7vGskMLZPq\n 3231 \N 189.186.120.209 f871da3c-978e-49e0-8f3d-220561c74c20 2020-07-08 20:29:24.66331 35197 2540 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 945\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.849E3\nstatus: 0\ndate_sale: 2020-07-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1232\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.76.66 d934cff9-b0ba-4996-a821-a8a09dc1aefa 2020-07-08 20:29:47.279402 35198 1847 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.76.66 d934cff9-b0ba-4996-a821-a8a09dc1aefa 2020-07-08 20:29:47.30958 35199 2540 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.76.66 26164fcd-4641-4048-a813-9dea10af1365 2020-07-08 20:30:15.314694 35200 3410 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 945\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.849E3\nmove_type: '1'\nsale_id: 2540\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1232\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.849E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1232 187.149.76.66 26164fcd-4641-4048-a813-9dea10af1365 2020-07-08 20:30:15.347788 35201 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-08 19:20:13.860386000 Z\n- &1 2020-07-08 20:22:16.031696000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-08 22:34:37.761929318 Z\nsign_in_count:\n- 121\n- 122\n 245 \N 189.186.120.209 1c5b5397-6266-4fc5-b1ed-c63456816e49 2020-07-08 22:34:37.768847 35202 18 User \N \N 18 User \N update ---\nunique_session_id:\n- uTzus1Hoy5_Qxzuz123T\n- wXFQiMSuQkLBdF_yoANL\n 246 \N 189.186.120.209 1c5b5397-6266-4fc5-b1ed-c63456816e49 2020-07-08 22:34:37.785216 35203 2541 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 946\namount: !ruby/object:BigDecimal 18:0.2198E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2198E4\nstatus: 0\ndate_sale: 2020-07-08\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-389\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 bf7eca76-36a3-4d40-83d8-8cadfe991ee9 2020-07-08 22:36:19.859213 35204 1777 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.120.209 bf7eca76-36a3-4d40-83d8-8cadfe991ee9 2020-07-08 22:36:19.891381 35205 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 13 \N 189.186.120.209 bf7eca76-36a3-4d40-83d8-8cadfe991ee9 2020-07-08 22:36:19.91752 35206 2541 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.120.209 2a84b67f-690f-4d5d-924f-eac8920c02fd 2020-07-08 22:37:29.570834 35207 3411 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 946\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2198E4\nmove_type: '1'\nsale_id: 2541\ncardnumber: 8947\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-389\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-389 189.186.120.209 2a84b67f-690f-4d5d-924f-eac8920c02fd 2020-07-08 22:37:29.594098 35208 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-08 19:50:00.071637000 Z\n- &1 2020-07-08 20:29:24.640740000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-08 22:44:58.982737670 Z\nsign_in_count:\n- 1615\n- 1616\n 3232 \N 189.186.120.209 b290ac8a-1985-45ab-84a3-4fa8957a8324 2020-07-08 22:44:58.989004 35209 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bcfSzvPHWs7vGskMLZPq\n- G5ophccPnD9FJgsmqgTo\n 3233 \N 189.186.120.209 b290ac8a-1985-45ab-84a3-4fa8957a8324 2020-07-08 22:44:59.02271 35210 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-08 20:22:16.031696000 Z\n- &1 2020-07-08 22:34:37.761929000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-08 23:12:11.758131928 Z\nsign_in_count:\n- 122\n- 123\n 247 \N 189.186.120.209 c1b98ed6-c5f8-4e5a-abf7-55bf1b71943d 2020-07-08 23:12:11.764471 35211 18 User \N \N 18 User \N update ---\nunique_session_id:\n- wXFQiMSuQkLBdF_yoANL\n- b6Pw5EBKnLBzKn8yxVZR\n 248 \N 189.186.120.209 c1b98ed6-c5f8-4e5a-abf7-55bf1b71943d 2020-07-08 23:12:11.777416 35212 332 Customer \N \N 18 User \N create ---\nnick_name: JOCELYN INSTAGRAM\nphone: "(669) 149-6090"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JOCELYN INSTAGRAM fue registrado. 189.186.120.209 3b6164f6-ae10-4df8-a585-afaa7e5e30a8 2020-07-08 23:12:43.49062 35213 2542 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 945\namount: !ruby/object:BigDecimal 18:0.3098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3098E4\nstatus: 0\ndate_sale: 2020-07-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1233\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.76.66 04b5cd31-c631-4c00-8d24-eb6a90a3ce5e 2020-07-08 23:14:22.238483 35214 1424 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.76.66 04b5cd31-c631-4c00-8d24-eb6a90a3ce5e 2020-07-08 23:14:22.26838 35215 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.76.66 04b5cd31-c631-4c00-8d24-eb6a90a3ce5e 2020-07-08 23:14:22.296033 35216 2542 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.76.66 3002bc5f-4362-44ec-abe2-a82c9927ffec 2020-07-08 23:14:27.423524 35241 2545 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.76.66 d1c62726-8d51-4dc3-8eef-0a90ad73f367 2020-07-09 17:37:51.102386 35379 847 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.69.237 be3b03c4-e573-43d5-a87d-1a74d756b075 2020-07-11 20:13:24.172658 35217 3412 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 945\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3098E4\nmove_type: '1'\nsale_id: 2542\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1233\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3098E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1233 187.149.76.66 3002bc5f-4362-44ec-abe2-a82c9927ffec 2020-07-08 23:14:27.448986 35218 2543 Sale \N \N 18 User \N create ---\ncustomer_id: 332\nuser_id: 18\nopen_cash_register_id: 946\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-07-08\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-390\nexpiration_date: 2020-08-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 ddad5f42-11ae-4697-8606-505ce6e7a17a 2020-07-08 23:14:27.692446 35219 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 31 \N 189.186.120.209 ddad5f42-11ae-4697-8606-505ce6e7a17a 2020-07-08 23:14:27.726884 35220 2543 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-390 cancelada. 189.186.120.209 a1267cd9-fdf8-443e-923e-5469dfcf8165 2020-07-08 23:23:39.125813 35221 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 32 \N 189.186.120.209 a1267cd9-fdf8-443e-923e-5469dfcf8165 2020-07-08 23:23:39.152486 35222 968 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 945\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3947E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.39E4\ncash_fund: !ruby/object:BigDecimal 18:0.799E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4699E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.76.66 23e4a794-a6b6-4ca6-9124-d07f1edfcb59 2020-07-08 23:24:51.820767 35223 945 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.76.66 23e4a794-a6b6-4ca6-9124-d07f1edfcb59 2020-07-08 23:24:51.837302 35224 2544 Sale \N \N 18 User \N create ---\ncustomer_id: 332\nuser_id: 18\nopen_cash_register_id: 946\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-07-08\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-391\nexpiration_date: 2020-08-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 268c2fb1-2e6b-436a-90a3-ce9c2680c9a7 2020-07-08 23:36:12.460592 35225 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 33 \N 189.186.120.209 268c2fb1-2e6b-436a-90a3-ce9c2680c9a7 2020-07-08 23:36:12.490679 35226 3413 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 946\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 2544\ncardnumber: 1525\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-391\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-391 189.186.120.209 e3118d16-6342-4af0-a2f4-5196342ae59b 2020-07-08 23:36:30.730882 35227 2544 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.120.209 26cb47de-b34c-4d9f-b395-120716a7aa78 2020-07-08 23:36:32.432993 35228 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-08 20:29:24.640740000 Z\n- &1 2020-07-08 22:44:58.982737000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-08 23:41:37.753043726 Z\nsign_in_count:\n- 1616\n- 1617\n 3234 \N 189.186.120.209 8d0b7053-73a8-409d-8963-181554aa2d09 2020-07-08 23:41:37.759244 35229 4 User \N \N 4 User \N update ---\nunique_session_id:\n- G5ophccPnD9FJgsmqgTo\n- TJnzLSESkJswyJ8D57z-\n 3235 \N 189.186.120.209 8d0b7053-73a8-409d-8963-181554aa2d09 2020-07-08 23:41:37.776261 35230 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-08 22:34:37.761929000 Z\n- &1 2020-07-08 23:12:11.758131000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-08 23:47:54.542403810 Z\nsign_in_count:\n- 123\n- 124\n 249 \N 189.186.120.209 caa7a0b4-7aa7-4489-b907-602f979ac5eb 2020-07-08 23:47:54.548174 35231 18 User \N \N 18 User \N update ---\nunique_session_id:\n- b6Pw5EBKnLBzKn8yxVZR\n- s1oSUYApMW8viWp3Rx-x\n 250 \N 189.186.120.209 caa7a0b4-7aa7-4489-b907-602f979ac5eb 2020-07-08 23:47:54.562004 35232 969 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 946\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.53972E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.23E4\ncash_fund: !ruby/object:BigDecimal 18:0.1443E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3743E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.120.209 a5cac720-3ad7-4a83-b9d4-373ef63793e8 2020-07-09 00:29:40.860699 35233 946 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.120.209 a5cac720-3ad7-4a83-b9d4-373ef63793e8 2020-07-09 00:29:40.878763 35234 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-08 22:44:58.982737000 Z\n- &1 2020-07-08 23:41:37.753043000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-09 03:51:02.587833891 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114449\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537387\n mask_addr: 4294967295\nsign_in_count:\n- 1617\n- 1618\n 3236 \N 177.228.109.43 33b153d2-74fb-453e-bfb4-573b2c5edae1 2020-07-09 03:51:02.600429 35235 4 User \N \N 4 User \N update ---\nunique_session_id:\n- TJnzLSESkJswyJ8D57z-\n- 8BGzRHsnxB1TmkoH_khS\n 3237 \N 177.228.109.43 33b153d2-74fb-453e-bfb4-573b2c5edae1 2020-07-09 03:51:02.633251 35236 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-07 20:25:57.324444000 Z\n- &1 2020-07-08 17:53:46.439306000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-09 16:40:31.159773663 Z\nsign_in_count:\n- 571\n- 572\n 1147 \N 187.149.76.66 35e30eb6-f9e9-446b-8dfd-69f252c61d28 2020-07-09 16:40:31.188928 35237 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 8Fg3AXGW1WMND8KMTcuo\n- "-_dmG8odX6RMGUmc-tyw"\n 1148 \N 187.149.76.66 35e30eb6-f9e9-446b-8dfd-69f252c61d28 2020-07-09 16:40:31.215037 35238 947 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.799E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 799.0 187.149.76.66 a43865e2-63cd-4a70-96ad-47e81fcdd5dc 2020-07-09 16:42:48.855229 35239 2545 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 947\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2020-07-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1234\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.76.66 85d714b3-da25-4a98-81cf-46934c35686c 2020-07-09 17:37:46.161074 35240 1630 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.76.66 85d714b3-da25-4a98-81cf-46934c35686c 2020-07-09 17:37:46.191861 35242 3414 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 947\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 2545\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1234\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.469E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1234 187.149.76.66 d1c62726-8d51-4dc3-8eef-0a90ad73f367 2020-07-09 17:37:51.128118 35243 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-08 23:41:37.753043000 Z\n- &1 2020-07-09 03:51:02.587833000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-09 18:41:43.736736456 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114449\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537387\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537387\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114449\n mask_addr: 4294967295\nsign_in_count:\n- 1618\n- 1619\n 3238 \N 189.186.120.209 9c2115eb-f1de-4533-a34d-67a982d4fe3c 2020-07-09 18:41:43.74683 35244 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8BGzRHsnxB1TmkoH_khS\n- r_PPk2y8AZXPP4JmKEiy\n 3239 \N 189.186.120.209 9c2115eb-f1de-4533-a34d-67a982d4fe3c 2020-07-09 18:41:43.774554 35245 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-08 23:12:11.758131000 Z\n- &1 2020-07-08 23:47:54.542403000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-09 18:42:44.837712970 Z\nsign_in_count:\n- 124\n- 125\n 251 \N 189.186.120.209 be103de9-e876-4e3f-ae9f-ab43884384d2 2020-07-09 18:42:44.843677 35246 18 User \N \N 18 User \N update ---\nunique_session_id:\n- s1oSUYApMW8viWp3Rx-x\n- GbSxzn7qhjPg-pF2N4US\n 252 \N 189.186.120.209 be103de9-e876-4e3f-ae9f-ab43884384d2 2020-07-09 18:42:44.860177 35247 948 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1443E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1443.0 189.186.120.209 792ed292-b228-40c4-b614-04d623b77237 2020-07-09 18:43:02.116646 35248 2546 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 948\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-07-09\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-392\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 21a5b995-c255-49e5-958a-71e075412afe 2020-07-09 18:43:19.630696 35249 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 34 \N 189.186.120.209 21a5b995-c255-49e5-958a-71e075412afe 2020-07-09 18:43:19.659821 35250 2546 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.120.209 aadbdaa1-8ee7-44ee-86df-bfe0f8b4df75 2020-07-09 18:43:24.445939 35251 3415 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 948\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2546\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-392\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-392 189.186.120.209 aadbdaa1-8ee7-44ee-86df-bfe0f8b4df75 2020-07-09 18:43:24.471082 35252 333 Customer \N \N 18 User \N create ---\nnick_name: ingrid paola instagram\nphone: "(668) 184-8945"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ingrid paola instagram fue registrado. 189.186.120.209 7ed9bbd7-5eb0-41ab-bffe-a5ab1ed599f3 2020-07-09 20:12:54.679826 35253 2547 Sale \N \N 18 User \N create ---\ncustomer_id: 333\nuser_id: 18\nopen_cash_register_id: 948\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2020-07-09\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-393\nexpiration_date: 2020-08-13\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 33b4d36a-e354-4ff7-86c9-24e2195db568 2020-07-09 20:13:32.168783 35254 1829 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.120.209 33b4d36a-e354-4ff7-86c9-24e2195db568 2020-07-09 20:13:32.198542 35255 3416 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 948\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2547\ncardnumber: 1256\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-393\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-393 189.186.120.209 f31230e6-1fbc-418a-9133-a740813b20fd 2020-07-09 20:13:54.995488 35256 2547 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.120.209 f614aef5-6513-429d-bca9-c4d864b37883 2020-07-09 20:13:56.447649 35257 2548 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 948\namount: !ruby/object:BigDecimal 18:0.56E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.56E3\nstatus: 0\ndate_sale: 2020-07-09\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-394\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 ee90f4a1-04d3-47c6-b2fd-d8dc099817c2 2020-07-09 20:46:44.100359 35258 830 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 12 \N 189.186.120.209 ee90f4a1-04d3-47c6-b2fd-d8dc099817c2 2020-07-09 20:46:44.128963 35259 2548 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.120.209 cd80ef72-fcdb-4b72-9fe2-d8c9198e3c97 2020-07-09 20:46:59.143597 35260 3417 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 948\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.56E3\nmove_type: '1'\nsale_id: 2548\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-394\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.4E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-394 189.186.120.209 cd80ef72-fcdb-4b72-9fe2-d8c9198e3c97 2020-07-09 20:46:59.168097 35261 2549 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 948\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-07-09\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-395\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 555965c4-c213-4476-931c-ffb53d602f20 2020-07-09 21:26:10.507907 35262 1035 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 34 \N 189.186.120.209 555965c4-c213-4476-931c-ffb53d602f20 2020-07-09 21:26:10.559026 35264 3418 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 948\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2099E4\nmove_type: '1'\nsale_id: 2549\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-395\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E4\nchange: !ruby/object:BigDecimal 18:0.401E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-395 189.186.120.209 d2cfbdba-3b15-4316-8746-946817fd9173 2020-07-09 21:26:35.023046 35265 2550 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 948\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2020-07-09\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-396\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 8eeaa1b5-31a8-40eb-8035-9dcf2c415de7 2020-07-09 21:29:48.239564 35266 1976 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.120.209 8eeaa1b5-31a8-40eb-8035-9dcf2c415de7 2020-07-09 21:29:48.268923 35267 2550 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.120.209 eaf82a44-e6f1-4f2c-bd09-3a6863e99a20 2020-07-09 21:30:39.349303 35268 3419 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 948\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1899E4\nmove_type: '1'\nsale_id: 2550\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-396\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.19E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-396 189.186.120.209 eaf82a44-e6f1-4f2c-bd09-3a6863e99a20 2020-07-09 21:30:39.371268 35269 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-09 03:51:02.587833000 Z\n- &1 2020-07-09 18:41:43.736736000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-09 21:40:03.953308826 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537387\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114449\n mask_addr: 4294967295\nsign_in_count:\n- 1619\n- 1620\n 3240 \N 189.186.120.209 c572c6b0-1a5d-4927-9e5e-68ae1831c255 2020-07-09 21:40:03.971878 35270 4 User \N \N 4 User \N update ---\nunique_session_id:\n- r_PPk2y8AZXPP4JmKEiy\n- qY4EwDdj2wuNi4FDsFPQ\n 3241 \N 189.186.120.209 c572c6b0-1a5d-4927-9e5e-68ae1831c255 2020-07-09 21:40:03.989314 35271 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-09 18:41:43.736736000 Z\n- &1 2020-07-09 21:40:03.953308000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-09 22:00:52.730887876 Z\nsign_in_count:\n- 1620\n- 1621\n 3242 \N 189.186.120.209 5118392a-fd6e-43dd-bcb6-c0391fd58a58 2020-07-09 22:00:52.736742 35272 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qY4EwDdj2wuNi4FDsFPQ\n- HTrpHxAGbUR6qpSZbyvc\n 3243 \N 189.186.120.209 5118392a-fd6e-43dd-bcb6-c0391fd58a58 2020-07-09 22:00:52.754376 35273 334 Customer \N \N 2 User \N create ---\nnick_name: 'ciury lopez '\nphone: "(667) 150-0133"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ciury lopez fue registrado. 189.186.23.248 d09fcc85-dab6-4a36-9ad1-d9ec50a3b1fe 2020-07-09 23:52:47.906238 35274 2551 Sale \N \N 2 User \N create ---\ncustomer_id: 334\nuser_id: 2\nopen_cash_register_id: 947\namount: !ruby/object:BigDecimal 18:0.103362E4\ntax: !ruby/object:BigDecimal 18:0.16538E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-07-09\nsaletype: 2\nseller_id: 25\nsale_code: PV1-V-1235\nexpiration_date: 2020-08-13\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.23.248 d0be325a-cadb-4f09-ad64-507220bdfb43 2020-07-09 23:53:43.288808 35275 256 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.23.248 d0be325a-cadb-4f09-ad64-507220bdfb43 2020-07-09 23:53:43.319104 35276 3420 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 947\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2551\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1235\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1235 189.186.23.248 ce0b45b4-9403-4579-b4c0-6b22e65ff347 2020-07-09 23:53:53.276585 35277 2551 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.23.248 890cddfa-7fa6-4ed7-b1d1-15673d04de3e 2020-07-09 23:53:55.370969 35278 970 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 947\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.969E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.9E3\ncash_fund: !ruby/object:BigDecimal 18:0.868E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1768E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.23.248 db1af881-db6b-4b8c-aacf-ea1488d2e30d 2020-07-10 00:01:18.593288 35279 947 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.23.248 db1af881-db6b-4b8c-aacf-ea1488d2e30d 2020-07-10 00:01:18.609815 35280 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-08 23:47:54.542403000 Z\n- &1 2020-07-09 18:42:44.837712000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-10 00:28:56.911906097 Z\nsign_in_count:\n- 125\n- 126\n 253 \N 189.186.120.209 249a2dbc-1001-48d8-991f-f9ff50cbd9f8 2020-07-10 00:28:56.919067 35281 18 User \N \N 18 User \N update ---\nunique_session_id:\n- GbSxzn7qhjPg-pF2N4US\n- vUzFycvebpzLGwDbrG6H\n 254 \N 189.186.120.209 249a2dbc-1001-48d8-991f-f9ff50cbd9f8 2020-07-10 00:28:56.933531 35282 2552 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 948\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-07-09\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-397\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 7b35f19b-87cb-47b8-894e-bee9c5594a57 2020-07-10 00:29:13.87598 35283 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 14 \N 189.186.120.209 7b35f19b-87cb-47b8-894e-bee9c5594a57 2020-07-10 00:29:13.917085 35284 2552 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.120.209 c69b1964-e52b-440d-be2f-6be0db51cb93 2020-07-10 00:29:20.796794 35285 3421 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 948\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2552\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-397\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-397 189.186.120.209 c69b1964-e52b-440d-be2f-6be0db51cb93 2020-07-10 00:29:20.817525 35286 2553 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 948\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-07-09\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-398\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.120.209 4230bb18-a3a1-46c1-aa4f-2b742b9ba6be 2020-07-10 00:29:56.847408 35287 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 15 \N 189.186.120.209 4230bb18-a3a1-46c1-aa4f-2b742b9ba6be 2020-07-10 00:29:56.878928 35288 2553 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.120.209 d81da283-5505-43f6-8e11-dcc8ab131e3c 2020-07-10 00:30:01.858174 35289 3422 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 948\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2553\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-398\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-398 189.186.120.209 d81da283-5505-43f6-8e11-dcc8ab131e3c 2020-07-10 00:30:01.880084 35290 971 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 948\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.9655E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.9297E4\ncash_fund: !ruby/object:BigDecimal 18:0.1301E4\nphysical_cash: !ruby/object:BigDecimal 18:0.10598E5\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.120.209 8f112393-854c-4ec9-a8e4-fb79b17cf084 2020-07-10 00:39:09.489172 35291 948 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.120.209 8f112393-854c-4ec9-a8e4-fb79b17cf084 2020-07-10 00:39:09.504326 35292 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-08 17:53:46.439306000 Z\n- &1 2020-07-09 16:40:31.159773000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-10 16:11:53.488637179 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123778\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122491\n mask_addr: 4294967295\nsign_in_count:\n- 572\n- 573\n 1149 \N 187.149.71.59 2c68c05a-01a8-4789-ba4a-b36c08a78357 2020-07-10 16:11:53.521955 35293 2 User \N \N 2 User \N update ---\nunique_session_id:\n- "-_dmG8odX6RMGUmc-tyw"\n- rfUDs2CxyA6hp2VYuMwr\n 1150 \N 187.149.71.59 2c68c05a-01a8-4789-ba4a-b36c08a78357 2020-07-10 16:11:53.552227 35294 949 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.868E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 868.0 187.149.71.59 33779087-f8ee-4413-a472-9b36ebabc6ee 2020-07-10 16:14:10.555308 35295 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-09 21:40:03.953308000 Z\n- &1 2020-07-09 22:00:52.730887000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-10 19:22:39.776758279 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114449\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\nsign_in_count:\n- 1621\n- 1622\n 3244 \N 189.186.69.237 ef3a69ba-2228-4836-91b9-9a5de35d4e00 2020-07-10 19:22:39.78624 35296 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HTrpHxAGbUR6qpSZbyvc\n- "-sf5WdjiPY9mKpv_Kuz_"\n 3245 \N 189.186.69.237 ef3a69ba-2228-4836-91b9-9a5de35d4e00 2020-07-10 19:22:39.813644 35297 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-09 18:42:44.837712000 Z\n- &1 2020-07-10 00:28:56.911906000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-10 19:23:53.326179658 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114449\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\nsign_in_count:\n- 126\n- 127\n 255 \N 189.186.69.237 25dec830-82b3-45e1-b012-45cebc7a3ac5 2020-07-10 19:23:53.333719 35298 18 User \N \N 18 User \N update ---\nunique_session_id:\n- vUzFycvebpzLGwDbrG6H\n- 963LyjuxUsJKqC1vb7y5\n 256 \N 189.186.69.237 25dec830-82b3-45e1-b012-45cebc7a3ac5 2020-07-10 19:23:53.350644 35299 950 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1301E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1301.0 189.186.69.237 1775a484-9dc0-4e35-9f26-bb33802b54ec 2020-07-10 19:32:15.278656 35300 2554 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 950\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-07-10\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-399\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.69.237 6d41aafd-6f1f-4478-a456-04ebfa7d6c92 2020-07-10 19:32:41.761534 35301 1984 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.69.237 6d41aafd-6f1f-4478-a456-04ebfa7d6c92 2020-07-10 19:32:41.79347 35302 2554 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.69.237 9a34055a-ba71-48a7-bec4-7834417c70bb 2020-07-10 19:33:55.241335 35303 3423 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 950\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 2554\ncardnumber: 1566\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-399\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-399 189.186.69.237 9a34055a-ba71-48a7-bec4-7834417c70bb 2020-07-10 19:33:55.276067 35304 3424 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 950\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 2554\ncardnumber: 1566\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-399\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-399 189.186.69.237 e6e2912d-8cb5-4ea3-8ae0-22d0beaa1678 2020-07-10 19:33:55.399994 35305 1023 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 187.149.71.59 b5fe213d-489f-419b-864f-4caa07ebde46 2020-07-10 19:46:04.119696 35306 629 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-10\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.71.59 2720080a-d91b-4efe-bf11-d3639b10dfb5 2020-07-10 19:46:22.751083 35307 629 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-10\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.69.237 684ed489-d241-4fab-8035-a34ed4ec915b 2020-07-10 20:01:08.412102 35309 335 Customer \N \N 18 User \N create ---\nnick_name: YAMI AMARILLAS\nphone: "(667) 222-1996"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente YAMI AMARILLAS fue registrado. 189.186.69.237 bd3bb791-d79f-419d-8f78-669b6f11483c 2020-07-10 20:02:04.296596 35310 2555 Sale \N \N 18 User \N create ---\ncustomer_id: 335\nuser_id: 18\nopen_cash_register_id: 950\namount: !ruby/object:BigDecimal 18:0.2798E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2798E4\nstatus: 0\ndate_sale: 2020-07-10\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-400\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.69.237 6310736a-f072-46ec-9289-445fc68cc525 2020-07-10 20:03:17.326785 35311 1982 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.69.237 6310736a-f072-46ec-9289-445fc68cc525 2020-07-10 20:03:17.36153 35312 1528 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.69.237 6310736a-f072-46ec-9289-445fc68cc525 2020-07-10 20:03:17.39259 35313 2555 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.69.237 16d06c4f-284b-424a-b70e-e53551acaec5 2020-07-10 20:03:34.652021 35314 3425 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 950\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.411E3\nmove_type: '1'\nsale_id: 2555\ncardnumber: 4522\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-400\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-400 189.186.69.237 16d06c4f-284b-424a-b70e-e53551acaec5 2020-07-10 20:03:34.674897 35315 3425 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 950\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.411E3\nmove_type: '1'\nsale_id: 2555\ncardnumber: 4522\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-400\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.69.237 fd5fe408-4d0a-4307-a313-2f79b435cef7 2020-07-10 20:03:45.830255 35316 3426 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 950\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.411E3\nmove_type: '1'\nsale_id: 2555\ncardnumber: 1563\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-400\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-400 189.186.69.237 4e347065-b4d3-4aff-93fc-cdc4d9be2aeb 2020-07-10 20:03:55.124039 35317 3426 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 950\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.411E3\nmove_type: '1'\nsale_id: 2555\ncardnumber: 1563\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-400\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.69.237 8d23344c-c214-4538-9612-4d9659efc356 2020-07-10 20:03:58.407151 35318 3427 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 950\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.411E3\nmove_type: '1'\nsale_id: 2555\ncardnumber: 4552\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-400\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-400 189.186.69.237 f081f684-ba52-482a-842c-36d57e25db2c 2020-07-10 20:04:09.425932 35319 3427 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 950\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.411E3\nmove_type: '1'\nsale_id: 2555\ncardnumber: 4552\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-400\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.69.237 d0c6f67e-8d5a-4e94-b736-53e87c89c743 2020-07-10 20:04:15.567969 35320 3428 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 950\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.411E3\nmove_type: '1'\nsale_id: 2555\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-400\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.411E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-400 189.186.69.237 7bf70861-4675-482d-b059-0c55219128b3 2020-07-10 20:04:21.737319 35321 2555 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-400 cancelada. 189.186.69.237 2459c531-5002-459f-8fb7-023a49df7c8b 2020-07-10 20:04:29.591562 35322 3428 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 950\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.411E3\nmove_type: '1'\nsale_id: 2555\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-400\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.411E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.69.237 2459c531-5002-459f-8fb7-023a49df7c8b 2020-07-10 20:04:29.629412 35323 1528 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.69.237 2459c531-5002-459f-8fb7-023a49df7c8b 2020-07-10 20:04:29.666091 35324 1982 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.69.237 2459c531-5002-459f-8fb7-023a49df7c8b 2020-07-10 20:04:29.69791 35325 2556 Sale \N \N 18 User \N create ---\ncustomer_id: 335\nuser_id: 18\nopen_cash_register_id: 950\namount: !ruby/object:BigDecimal 18:0.2798E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2798E4\nstatus: 0\ndate_sale: 2020-07-10\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-401\nexpiration_date: 2020-08-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.69.237 c35bd08c-5d08-4b30-bdf8-069ad7088651 2020-07-10 20:05:01.008561 35326 1528 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.69.237 c35bd08c-5d08-4b30-bdf8-069ad7088651 2020-07-10 20:05:01.038734 35327 1982 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.69.237 c35bd08c-5d08-4b30-bdf8-069ad7088651 2020-07-10 20:05:01.064836 35348 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-09 16:40:31.159773000 Z\n- &1 2020-07-10 16:11:53.488637000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-11 17:04:10.851541855 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147123778\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122491\n mask_addr: 4294967295\nsign_in_count:\n- 573\n- 574\n 1151 \N 187.149.71.59 9a8c36df-c396-46ca-aaeb-6790a6dbd875 2020-07-11 17:04:10.859637 35328 3429 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 950\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.411E3\nmove_type: '1'\nsale_id: 2556\ncardnumber: 1552\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-401\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-401 189.186.69.237 c2fdd708-560e-4fde-b930-1b1c4145c99a 2020-07-10 20:05:14.453387 35329 2556 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.69.237 6b69da8e-ee35-4f6a-9d71-c91e7236954f 2020-07-10 20:05:17.259385 35330 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-09 22:00:52.730887000 Z\n- &1 2020-07-10 19:22:39.776758000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-10 21:21:57.627067385 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114449\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539975\n mask_addr: 4294967295\nsign_in_count:\n- 1622\n- 1623\n 3246 \N 177.228.119.71 fdda93ef-c22c-4c8a-998f-06942c9bf133 2020-07-10 21:21:57.635257 35331 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-sf5WdjiPY9mKpv_Kuz_"\n- MeLT19GFqnukmmbxMJb5\n 3247 \N 177.228.119.71 fdda93ef-c22c-4c8a-998f-06942c9bf133 2020-07-10 21:21:57.653012 35332 972 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 949\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.868E3\nphysical_cash: !ruby/object:BigDecimal 18:0.868E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.71.59 3792ff51-0ddc-4d85-9311-1de8fc0db567 2020-07-10 22:08:48.327121 35333 949 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.71.59 3792ff51-0ddc-4d85-9311-1de8fc0db567 2020-07-10 22:08:48.346885 35334 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-07-06 01:41:10.951729000 Z\n- &1 2020-07-06 01:52:51.966388000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-10 23:07:00.906729853 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537387\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\nsign_in_count:\n- 136\n- 137\n 274 \N 189.186.69.237 d84821ae-7819-428e-a072-d800631a12fe 2020-07-10 23:07:00.914222 35335 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 3fLrxyyqJpUAPpc8MrX_\n- D8STrWyarXHJb47yRSKH\n 275 \N 189.186.69.237 d84821ae-7819-428e-a072-d800631a12fe 2020-07-10 23:07:00.9305 35336 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-10 19:22:39.776758000 Z\n- &1 2020-07-10 21:21:57.627067000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-10 23:08:21.641146600 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539975\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539975\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\nsign_in_count:\n- 1623\n- 1624\n 3248 \N 189.186.69.237 82ecacef-93be-4793-84b5-3a5ff60b6085 2020-07-10 23:08:21.648524 35337 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MeLT19GFqnukmmbxMJb5\n- z_wBnQKX6joLHs9aZGHM\n 3249 \N 189.186.69.237 82ecacef-93be-4793-84b5-3a5ff60b6085 2020-07-10 23:08:21.667474 35338 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-10 00:28:56.911906000 Z\n- &1 2020-07-10 19:23:53.326179000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-11 00:39:09.606619363 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114449\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\nsign_in_count:\n- 127\n- 128\n 257 \N 189.186.69.237 d8ad5d3c-b385-4c9b-96d5-cbae045cbffa 2020-07-11 00:39:09.6263 35339 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 963LyjuxUsJKqC1vb7y5\n- WmyAC4vm9VxMdhafzh91\n 258 \N 189.186.69.237 d8ad5d3c-b385-4c9b-96d5-cbae045cbffa 2020-07-11 00:39:09.646952 35340 973 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 950\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.3209E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.411E3\ncash_fund: !ruby/object:BigDecimal 18:0.1301E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1712E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.69.237 af995c45-7103-4606-b97c-f61f3217587e 2020-07-11 00:42:22.56356 35341 950 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.69.237 af995c45-7103-4606-b97c-f61f3217587e 2020-07-11 00:42:22.578155 35342 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-10 21:21:57.627067000 Z\n- &1 2020-07-10 23:08:21.641146000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-11 04:48:26.399778662 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539975\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539975\n mask_addr: 4294967295\nsign_in_count:\n- 1624\n- 1625\n 3250 \N 177.228.119.71 720236d8-c274-41a1-9395-232246e0bb23 2020-07-11 04:48:26.432223 35343 4 User \N \N 4 User \N update ---\nunique_session_id:\n- z_wBnQKX6joLHs9aZGHM\n- JMk6L9um15BXaF2xZ4-S\n 3251 \N 177.228.119.71 720236d8-c274-41a1-9395-232246e0bb23 2020-07-11 04:48:26.454293 35344 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-10 23:08:21.641146000 Z\n- &1 2020-07-11 04:48:26.399778000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-11 04:54:37.950512154 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539975\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539975\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112893\n mask_addr: 4294967295\nsign_in_count:\n- 1625\n- 1626\n 3252 \N 187.149.33.189 4602a49d-7eeb-4ae5-bcd5-d70155f3e785 2020-07-11 04:54:37.958233 35345 4 User \N \N 4 User \N update ---\nunique_session_id:\n- JMk6L9um15BXaF2xZ4-S\n- s6Y1aTre874AnPkA2Hcz\n 3253 \N 187.149.33.189 4602a49d-7eeb-4ae5-bcd5-d70155f3e785 2020-07-11 04:54:37.977317 35346 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-11 04:48:26.399778000 Z\n- &1 2020-07-11 04:54:37.950512000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-11 16:35:04.504162537 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539975\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112893\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112893\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938384\n mask_addr: 4294967295\nsign_in_count:\n- 1626\n- 1627\n 3254 \N 200.68.151.80 a5587c4f-54aa-4dee-a984-88de3c79fc70 2020-07-11 16:35:04.535488 35347 4 User \N \N 4 User \N update ---\nunique_session_id:\n- s6Y1aTre874AnPkA2Hcz\n- EWDqYyAy8N6msygZMNs2\n 3255 \N 200.68.151.80 a5587c4f-54aa-4dee-a984-88de3c79fc70 2020-07-11 16:35:04.564046 35349 2 User \N \N 2 User \N update ---\nunique_session_id:\n- rfUDs2CxyA6hp2VYuMwr\n- sdWW2AV9ve2k-Jfxp_Xx\n 1152 \N 187.149.71.59 9a8c36df-c396-46ca-aaeb-6790a6dbd875 2020-07-11 17:04:10.878938 35350 951 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.868E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 868.0 187.149.71.59 524adbe4-527c-49ed-b14b-3580ebe09300 2020-07-11 17:04:36.246733 35351 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.71.59 56a061e6-53ba-4a8a-b77d-cf57fccafde6 2020-07-11 17:10:11.574912 35352 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.71.59 80ddf8db-33e3-4ed6-af3a-20c000105038 2020-07-11 17:10:15.173937 35353 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 21 \N 187.149.71.59 18e23703-09a8-4580-8866-7246fde5ea54 2020-07-11 17:10:29.23418 35354 266 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 14 \N 187.149.71.59 fd575dc2-d84c-43e0-aba9-f5286a21f1a4 2020-07-11 17:10:39.59561 35355 630 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-11\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.71.59 ebd5120d-4c42-44d9-85d2-9f96095030cc 2020-07-11 17:10:49.844841 35356 261 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.71.59 b5608973-dd41-4cb5-9a07-96240c87bdf8 2020-07-11 17:21:23.482667 35357 270 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.71.59 5586b5f9-570d-41b3-88c1-250485ca132c 2020-07-11 17:21:33.816812 35358 272 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.71.59 6df3dedf-941f-4a17-9421-43a4171572ea 2020-07-11 17:21:42.782375 35359 272 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.71.59 dcf6f222-2825-4609-8cd9-90fcadf96480 2020-07-11 17:21:46.44759 35360 264 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.71.59 607d2bab-f460-4e2c-83c2-dc67065b1294 2020-07-11 17:21:58.501695 35361 264 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.71.59 1fb96c8f-4247-4eae-a852-9de5159b279a 2020-07-11 17:22:01.313014 35362 267 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.22E2\n- !ruby/object:BigDecimal 18:0.21E2\n 4 \N 187.149.71.59 ba08f408-5b25-4337-a806-22e871a3759c 2020-07-11 17:22:13.339483 35363 267 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.21E2\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.71.59 92ba11b7-1ba3-442d-a138-3b23b457856a 2020-07-11 17:22:16.845259 35364 269 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.71.59 9ac85910-dcf1-45bd-b0df-31c0bfe910d5 2020-07-11 17:22:26.109562 35365 271 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.71.59 08061e1d-86ba-4f09-91dd-5d208b90a61f 2020-07-11 17:22:36.457317 35366 271 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.71.59 524bf5cd-e647-4525-af70-b52227751c99 2020-07-11 17:22:40.799304 35367 631 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-11\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.71.59 d29bdc6d-2700-44c9-a3e3-b186500e9672 2020-07-11 17:22:49.777715 35368 257 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.71.59 ffb9b65e-4d40-46d7-a8fc-4ad0ba6ce3f6 2020-07-11 17:23:55.661313 35369 257 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.71.59 d528df4e-3eb2-4e05-89ad-905452fcf4bc 2020-07-11 17:23:58.496019 35370 632 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-11\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.71.59 30ff89c7-e53e-4af6-b076-ddef94d31c71 2020-07-11 17:24:00.502947 35371 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-11 04:54:37.950512000 Z\n- &1 2020-07-11 16:35:04.504162000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-11 20:00:59.527356646 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112893\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938384\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938384\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\nsign_in_count:\n- 1627\n- 1628\n 3256 \N 189.186.69.237 c0aadc10-9685-4f0b-9c20-0be2666ec1a0 2020-07-11 20:00:59.559038 35372 4 User \N \N 4 User \N update ---\nunique_session_id:\n- EWDqYyAy8N6msygZMNs2\n- JSsy9cyrkE6jwQqVYAzH\n 3257 \N 189.186.69.237 c0aadc10-9685-4f0b-9c20-0be2666ec1a0 2020-07-11 20:00:59.593392 35373 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-07-01 20:20:51.681402000 Z\n- &1 2020-07-02 18:03:29.718660000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-11 20:11:11.845412896 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\nsign_in_count:\n- 86\n- 87\n 174 \N 189.186.69.237 5fcf425d-f72f-4463-a09d-81e0756c0256 2020-07-11 20:11:11.852827 35374 25 User \N \N 25 User \N update ---\nunique_session_id:\n- AtNSuqheTyHZM1U5vDVm\n- pB9gHbJD4wMDcbLBXbjq\n 175 \N 189.186.69.237 5fcf425d-f72f-4463-a09d-81e0756c0256 2020-07-11 20:11:11.870521 35375 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-07-03 00:33:18.386065000 Z\n- &1 2020-07-04 18:28:33.779670000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-11 20:11:57.177824056 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\nsign_in_count:\n- 234\n- 235\n 471 \N 189.186.69.237 2fcaa226-abda-44b1-abf6-a26c248c4b38 2020-07-11 20:11:57.185679 35376 21 User \N \N 21 User \N update ---\nunique_session_id:\n- rwuSp6c7iLNjsHv3S3fx\n- QmhfTJarz16SqqLcGsuY\n 472 \N 189.186.69.237 2fcaa226-abda-44b1-abf6-a26c248c4b38 2020-07-11 20:11:57.204021 35377 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-11 16:35:04.504162000 Z\n- &1 2020-07-11 20:00:59.527356000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-11 20:12:54.870173760 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938384\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\nsign_in_count:\n- 1628\n- 1629\n 3258 \N 189.186.69.237 25041160-92b3-47c5-a321-dbd7fd6a1fe0 2020-07-11 20:12:54.877086 35380 898 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.69.237 a3eaea17-eb8e-4137-bc16-274a7fc04d1e 2020-07-11 20:13:30.41456 35381 911 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.69.237 9dc9fe1c-da54-4aeb-a648-ecec5682f7dd 2020-07-11 20:13:41.902828 35382 931 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.69.237 f0465b34-c5e8-44a5-b5ca-28fe9326fd44 2020-07-11 20:13:54.001275 35383 927 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.69.237 4aaf777b-0e81-4b1d-b62f-0225ab4bb862 2020-07-11 20:14:10.499582 35384 925 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.69.237 796982cb-1979-42c2-a6f9-e076b5d580c2 2020-07-11 20:14:16.855654 35385 927 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.69.237 f71a4d31-1172-42b2-8475-a8aca00c266c 2020-07-11 20:14:19.778176 35386 929 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.69.237 9f4a27ab-c080-4ebd-b2cf-87803bcd8fe5 2020-07-11 20:14:31.063957 35387 912 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.69.237 1362565c-ffb6-43c0-965b-e381cf1c0d75 2020-07-11 20:14:41.188627 35388 923 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.69.237 739267bb-d368-431d-bb3c-342183301316 2020-07-11 20:14:51.302704 35389 633 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-07-11\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.69.237 6bf41cd0-663e-4812-b524-ddbc1281a4ac 2020-07-11 20:14:59.130146 35390 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-07-04 18:28:33.779670000 Z\n- &1 2020-07-11 20:11:57.177824000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-11 20:15:37.785226756 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\nsign_in_count:\n- 235\n- 236\n 473 \N 189.186.69.237 16376f61-7671-412f-b228-d3603db2bc81 2020-07-11 20:15:37.792083 35391 21 User \N \N 21 User \N update ---\nunique_session_id:\n- QmhfTJarz16SqqLcGsuY\n- iTx5cYo2yUkxckR1UNHx\n 474 \N 189.186.69.237 16376f61-7671-412f-b228-d3603db2bc81 2020-07-11 20:15:37.814155 35392 632 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-11\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.69.237 83b24c73-6260-4caa-bb74-7e27b360c7d0 2020-07-11 20:19:55.081418 35393 854 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.69.237 83b24c73-6260-4caa-bb74-7e27b360c7d0 2020-07-11 20:19:55.099052 35394 631 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-11\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.69.237 00b5b104-1468-414e-aa5c-ccb61ec72d90 2020-07-11 20:20:20.664875 35395 849 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.69.237 00b5b104-1468-414e-aa5c-ccb61ec72d90 2020-07-11 20:20:20.685296 35396 844 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.69.237 00b5b104-1468-414e-aa5c-ccb61ec72d90 2020-07-11 20:20:20.705368 35397 855 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.3E2\n 3 \N 189.186.69.237 00b5b104-1468-414e-aa5c-ccb61ec72d90 2020-07-11 20:20:20.725776 35398 1994 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 266\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.69.237 00b5b104-1468-414e-aa5c-ccb61ec72d90 2020-07-11 20:20:20.74906 35399 853 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.69.237 00b5b104-1468-414e-aa5c-ccb61ec72d90 2020-07-11 20:20:20.790087 35400 1995 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 272\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.69.237 00b5b104-1468-414e-aa5c-ccb61ec72d90 2020-07-11 20:20:20.813343 35401 1996 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 263\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.69.237 00b5b104-1468-414e-aa5c-ccb61ec72d90 2020-07-11 20:20:20.836725 35402 630 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-11\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.69.237 5dcb9f72-62f4-4304-aad6-0abb0c668357 2020-07-11 20:20:31.618056 35403 845 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.69.237 5dcb9f72-62f4-4304-aad6-0abb0c668357 2020-07-11 20:20:31.634726 35404 1822 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 35 \N 189.186.69.237 5dcb9f72-62f4-4304-aad6-0abb0c668357 2020-07-11 20:20:31.652164 35405 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 16 \N 189.186.69.237 5dcb9f72-62f4-4304-aad6-0abb0c668357 2020-07-11 20:20:31.672735 35406 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-11 20:00:59.527356000 Z\n- &1 2020-07-11 20:12:54.870173000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-11 21:00:06.535196478 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539791\n mask_addr: 4294967295\nsign_in_count:\n- 1629\n- 1630\n 3260 \N 177.228.118.143 4cba8af7-35d6-4a67-ab2f-3f8ebd76ab70 2020-07-11 21:00:06.543825 35407 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3V5muZABDyr5vhoMMXkc\n- rhvETgYhWF9uRLFrmyky\n 3261 \N 177.228.118.143 4cba8af7-35d6-4a67-ab2f-3f8ebd76ab70 2020-07-11 21:00:06.578343 35408 2557 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 951\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-07-11\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1236\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.71.59 32685594-933f-47ba-9f72-4fa172476dac 2020-07-11 22:24:33.463465 35409 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.71.59 32685594-933f-47ba-9f72-4fa172476dac 2020-07-11 22:24:33.498682 35410 2557 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.71.59 111e9980-cc2d-49aa-9e41-a01d55224676 2020-07-11 22:25:21.391173 35411 3430 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 951\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2557\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1236\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SERVICIO A DOMICILIO\n 1 movimiento de efectivo por venta con folio PV1-V-1236 187.149.71.59 111e9980-cc2d-49aa-9e41-a01d55224676 2020-07-11 22:25:21.462952 35412 311 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 951\nquantity: !ruby/object:BigDecimal 18:0.4E3\nstatus: 1\nobservations: DIFERENCIA PAGO DE ROCIO\nexpense_date: 2020-07-11\nexpense_code: PV1-E-214\n 1 Egreso por 400.0 registrado 187.149.71.59 476ec459-fbf2-4e52-91b5-02f36c72e7fc 2020-07-11 22:30:56.196889 35413 3431 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 951\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 311\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.71.59 476ec459-fbf2-4e52-91b5-02f36c72e7fc 2020-07-11 22:30:56.219577 35414 974 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 951\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1499E4\namount_out: !ruby/object:BigDecimal 18:0.4E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.468E3\nphysical_cash: !ruby/object:BigDecimal 18:0.468E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.71.59 bc045014-af80-42e1-b87d-f59ce1f9a8de 2020-07-11 22:31:44.248548 35415 951 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.71.59 bc045014-af80-42e1-b87d-f59ce1f9a8de 2020-07-11 22:31:44.264148 35416 952 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1301E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1301.0 189.186.92.202 9dbc108c-bbeb-4c3e-bfe3-3defa78ca70d 2020-07-11 23:21:34.889615 35417 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-10 19:23:53.326179000 Z\n- &1 2020-07-11 00:39:09.606619000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-13 14:50:25.856631947 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\nsign_in_count:\n- 128\n- 129\n 259 \N 177.228.118.215 600c19e0-51a2-44a8-9eeb-893ff537c09a 2020-07-13 14:50:25.890994 35418 18 User \N \N 18 User \N update ---\nunique_session_id:\n- WmyAC4vm9VxMdhafzh91\n- SesuLPMv-vdBXorbaKR8\n 260 \N 177.228.118.215 600c19e0-51a2-44a8-9eeb-893ff537c09a 2020-07-13 14:50:25.915217 35419 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-10 16:11:53.488637000 Z\n- &1 2020-07-11 17:04:10.851541000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-13 16:27:31.768914123 Z\nsign_in_count:\n- 574\n- 575\n 1153 \N 187.149.71.59 c24ce041-23b0-4a84-99c1-15283e01da95 2020-07-13 16:27:31.800162 35420 2 User \N \N 2 User \N update ---\nunique_session_id:\n- sdWW2AV9ve2k-Jfxp_Xx\n- 35Dj2TgvVVSge47TcQxs\n 1154 \N 187.149.71.59 c24ce041-23b0-4a84-99c1-15283e01da95 2020-07-13 16:27:31.824985 35421 953 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.468E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 468.0 187.149.71.59 303a8de9-35c4-4f86-bce8-9003c281e354 2020-07-13 16:27:45.114534 35422 2558 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 953\namount: !ruby/object:BigDecimal 18:0.8534E2\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9899E2\nstatus: 0\ndate_sale: 2020-07-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1237\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.71.59 c0fb9038-6a5a-44f2-a395-01f1a9e2cf62 2020-07-13 16:28:37.383901 35423 486 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.23E2\n- !ruby/object:BigDecimal 18:0.22E2\n 29 \N 187.149.71.59 c0fb9038-6a5a-44f2-a395-01f1a9e2cf62 2020-07-13 16:28:37.423438 35424 2558 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.71.59 164f58f3-ab35-4242-8505-25755fea2ce1 2020-07-13 16:28:52.461952 35425 3432 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 953\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.9899E2\nmove_type: '1'\nsale_id: 2558\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1237\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9899E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1237 187.149.71.59 164f58f3-ab35-4242-8505-25755fea2ce1 2020-07-13 16:28:52.488179 35426 633 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-13\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.71.59 578ecde2-f99b-435f-9e8f-7225f0707bc6 2020-07-13 17:01:32.329788 35427 38 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.71.59 578ecde2-f99b-435f-9e8f-7225f0707bc6 2020-07-13 17:01:32.368567 35428 31 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.71.59 578ecde2-f99b-435f-9e8f-7225f0707bc6 2020-07-13 17:01:32.403002 35429 1997 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 339\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.71.59 578ecde2-f99b-435f-9e8f-7225f0707bc6 2020-07-13 17:01:32.427988 35430 1998 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 335\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.71.59 578ecde2-f99b-435f-9e8f-7225f0707bc6 2020-07-13 17:01:32.452228 35431 29 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.71.59 578ecde2-f99b-435f-9e8f-7225f0707bc6 2020-07-13 17:01:32.473024 35432 1999 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 333\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.71.59 578ecde2-f99b-435f-9e8f-7225f0707bc6 2020-07-13 17:01:32.501944 35433 2000 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 348\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.71.59 578ecde2-f99b-435f-9e8f-7225f0707bc6 2020-07-13 17:01:32.529804 35434 498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.71.59 578ecde2-f99b-435f-9e8f-7225f0707bc6 2020-07-13 17:01:32.553287 35435 256 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.71.59 578ecde2-f99b-435f-9e8f-7225f0707bc6 2020-07-13 17:01:32.578938 35436 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-11 00:39:09.606619000 Z\n- &1 2020-07-13 14:50:25.856631000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-13 19:00:58.531459257 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 129\n- 130\n 261 \N 189.186.92.202 4b842eca-9d6b-4b27-b2fe-3146ba1bcdcf 2020-07-13 19:00:58.543049 35437 18 User \N \N 18 User \N update ---\nunique_session_id:\n- SesuLPMv-vdBXorbaKR8\n- 6-M9J3uapMtz9738LaZS\n 262 \N 189.186.92.202 4b842eca-9d6b-4b27-b2fe-3146ba1bcdcf 2020-07-13 19:00:58.566981 35438 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-13 14:50:25.856631000 Z\n- &1 2020-07-13 19:00:58.531459000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-13 19:43:55.481218782 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 130\n- 131\n 263 \N 189.186.92.202 46271772-f17a-49f1-bf12-039bb7244535 2020-07-13 19:43:55.489256 35439 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 6-M9J3uapMtz9738LaZS\n- V99f2iKx5hThYZr-J9Ma\n 264 \N 189.186.92.202 46271772-f17a-49f1-bf12-039bb7244535 2020-07-13 19:43:55.511031 35440 2559 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 952\namount: !ruby/object:BigDecimal 18:0.179E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.179E3\nstatus: 0\ndate_sale: 2020-07-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-402\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 93aa3ec1-94fa-49d6-b293-982143e1c93a 2020-07-13 19:44:11.69867 35441 1798 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.92.202 93aa3ec1-94fa-49d6-b293-982143e1c93a 2020-07-13 19:44:11.736503 35442 2559 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 439994a8-ba84-4bba-9cf1-e312850b5233 2020-07-13 19:44:21.346647 35443 3433 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 952\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.179E3\nmove_type: '1'\nsale_id: 2559\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-402\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-402 189.186.92.202 439994a8-ba84-4bba-9cf1-e312850b5233 2020-07-13 19:44:21.372491 35444 2560 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 953\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.99E2\ntotal: !ruby/object:BigDecimal 18:0.1E4\nstatus: 0\ndate_sale: 2020-07-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1238\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.71.59 8e20bf10-e596-43a2-8a68-4742803610f8 2020-07-13 19:48:51.155378 35445 697 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 13 \N 187.149.71.59 8e20bf10-e596-43a2-8a68-4742803610f8 2020-07-13 19:48:51.184898 35446 2560 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.71.59 6817250f-f5a0-4968-9e0d-dea8cfc57bba 2020-07-13 19:49:11.497376 35447 3434 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 953\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 2560\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1238\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1238 187.149.71.59 6817250f-f5a0-4968-9e0d-dea8cfc57bba 2020-07-13 19:49:11.520612 35448 336 Customer \N \N 18 User \N create ---\nnick_name: DANIELA CASTRO JUAREZ\nphone: "(667) 401-9054"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DANIELA CASTRO JUAREZ fue registrado. 189.186.92.202 8eeeed33-d9ef-45bc-bd0a-07260c7f32f6 2020-07-13 19:49:29.484175 35449 2561 Sale \N \N 18 User \N create ---\ncustomer_id: 336\nuser_id: 18\nopen_cash_register_id: 952\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-07-13\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-403\nexpiration_date: 2020-08-17\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 0496ab0d-123c-49a1-9cc5-0db6f76c6723 2020-07-13 19:49:41.35758 35450 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 17 \N 189.186.92.202 0496ab0d-123c-49a1-9cc5-0db6f76c6723 2020-07-13 19:49:41.389954 35451 3435 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 952\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2561\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-403\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-403 189.186.92.202 11adbc2e-f83d-4b13-8197-7eb2d5ffe60c 2020-07-13 19:49:54.29522 35452 2561 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.92.202 78ffb8a3-e2bb-4e71-802c-5c9d08d8003c 2020-07-13 19:49:55.552957 35453 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-13 19:00:58.531459000 Z\n- &1 2020-07-13 19:43:55.481218000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-13 19:56:11.352378301 Z\nsign_in_count:\n- 131\n- 132\n 265 \N 189.186.92.202 48ada0c8-1243-493f-b09e-e98358e6db0d 2020-07-13 19:56:11.359545 35454 18 User \N \N 18 User \N update ---\nunique_session_id:\n- V99f2iKx5hThYZr-J9Ma\n- fvSUQB8Yf37B-kFsYZyb\n 266 \N 189.186.92.202 48ada0c8-1243-493f-b09e-e98358e6db0d 2020-07-13 19:56:11.378244 35521 851 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.92.202 33745402-7532-4e19-935f-24879f5d160a 2020-07-14 00:08:18.38099 35455 308 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-48\namount: !ruby/object:BigDecimal 18:0.4497E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4497E4\nobservations: ''\npurchase_date: 2020-07-13\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-48 por $ 4497.0 MXN creada. 189.186.92.202 d231dd28-f5cc-45ef-b3e3-77e5c4e217f9 2020-07-13 20:03:01.538365 35456 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.8E1\n 18 \N 189.186.92.202 d231dd28-f5cc-45ef-b3e3-77e5c4e217f9 2020-07-13 20:03:01.563269 35457 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-11 20:12:54.870173000 Z\n- &1 2020-07-11 21:00:06.535196000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-13 20:10:54.659477902 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539791\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539791\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1630\n- 1631\n 3262 \N 189.186.92.202 82bef751-20ec-4d48-804a-38ebaac8331f 2020-07-13 20:10:54.667475 35458 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rhvETgYhWF9uRLFrmyky\n- avJqaEntWK61ncJeRvVh\n 3263 \N 189.186.92.202 82bef751-20ec-4d48-804a-38ebaac8331f 2020-07-13 20:10:54.687855 35459 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-13 19:43:55.481218000 Z\n- &1 2020-07-13 19:56:11.352378000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-13 20:20:04.540432689 Z\nsign_in_count:\n- 132\n- 133\n 267 \N 189.186.92.202 c5e75215-d26d-4309-875a-aff9a66139f8 2020-07-13 20:20:04.546991 35460 18 User \N \N 18 User \N update ---\nunique_session_id:\n- fvSUQB8Yf37B-kFsYZyb\n- z7HaMyKzwxvJUstdMN5X\n 268 \N 189.186.92.202 c5e75215-d26d-4309-875a-aff9a66139f8 2020-07-13 20:20:04.56355 35461 2562 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 952\namount: !ruby/object:BigDecimal 18:0.60072E3\ntax: !ruby/object:BigDecimal 18:0.4828E2\ndiscount: !ruby/object:BigDecimal 18:0.299E3\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2020-07-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-404\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 e28c05bd-4e21-41b8-985d-1e2235042964 2020-07-13 20:21:22.759893 35462 1542 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.92.202 e28c05bd-4e21-41b8-985d-1e2235042964 2020-07-13 20:21:22.785623 35463 2562 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 5d96678c-3c8b-40a0-b5c4-a5084e747107 2020-07-13 20:21:27.173009 35464 3436 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 952\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 2562\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-404\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.15E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-404 189.186.92.202 5d96678c-3c8b-40a0-b5c4-a5084e747107 2020-07-13 20:21:27.197248 35465 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-11 21:00:06.535196000 Z\n- &1 2020-07-13 20:10:54.659477000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-13 21:01:08.903446994 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539791\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1631\n- 1632\n 3264 \N 189.186.92.202 c6bd10c3-0be5-4e01-a59a-9a0a8c37fe64 2020-07-13 21:01:08.914793 35466 4 User \N \N 4 User \N update ---\nunique_session_id:\n- avJqaEntWK61ncJeRvVh\n- QJkwxNdwDADnaEjfqBzP\n 3265 \N 189.186.92.202 c6bd10c3-0be5-4e01-a59a-9a0a8c37fe64 2020-07-13 21:01:08.954727 35467 1152 Product \N \N 4 User \N create ---\nsku: BOL-1152\nname: 3BLCV20805\ndescription: BACK PACK CON LETRAS\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170860252'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1152 fue creado. 189.186.92.202 871fc2b5-f31d-456b-9c4b-4bfd5e12559b 2020-07-13 21:11:59.836913 35468 2001 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1152\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 871fc2b5-f31d-456b-9c4b-4bfd5e12559b 2020-07-13 21:11:59.881036 35469 1153 Product \N \N 4 User \N create ---\nsku: BOL-1153\nname: CLOEGIRLS1\ndescription: MOCHILA GIRLS\nprice_base: !ruby/object:BigDecimal 18:0.2745E3\nprice_sale: !ruby/object:BigDecimal 18:0.549E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1153 fue creado. 189.186.92.202 bac17362-9471-4aea-a046-f4dd8ae3c8df 2020-07-13 21:13:31.170298 35470 1153 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001153'\n 2 \N 189.186.92.202 bac17362-9471-4aea-a046-f4dd8ae3c8df 2020-07-13 21:13:31.326965 35471 2002 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1153\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 bac17362-9471-4aea-a046-f4dd8ae3c8df 2020-07-13 21:13:31.361093 35472 309 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-49\namount: !ruby/object:BigDecimal 18:0.974E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.974E3\nobservations: ''\npurchase_date: 2020-07-13\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-49 por $ 974.0 MXN creada. 189.186.92.202 16c2599c-a12b-4cf4-b502-10163b8eb979 2020-07-13 21:13:35.564895 35473 2001 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.92.202 16c2599c-a12b-4cf4-b502-10163b8eb979 2020-07-13 21:13:35.591336 35474 2002 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.92.202 16c2599c-a12b-4cf4-b502-10163b8eb979 2020-07-13 21:13:35.619755 35475 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-13 19:56:11.352378000 Z\n- &1 2020-07-13 20:20:04.540432000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-13 21:25:54.760536762 Z\nsign_in_count:\n- 133\n- 134\n 269 \N 189.186.92.202 6f14b036-50e7-4aa6-8a0f-c736d9cef034 2020-07-13 21:25:54.76772 35476 18 User \N \N 18 User \N update ---\nunique_session_id:\n- z7HaMyKzwxvJUstdMN5X\n- w1NzYToKDZ4Z9pwVe4zg\n 270 \N 189.186.92.202 6f14b036-50e7-4aa6-8a0f-c736d9cef034 2020-07-13 21:25:54.784501 35477 2563 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 952\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2020-07-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-405\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 30c7cfb0-5fd4-4149-8d80-ba6fc65b9641 2020-07-13 21:26:13.249706 35478 2002 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.92.202 30c7cfb0-5fd4-4149-8d80-ba6fc65b9641 2020-07-13 21:26:13.283464 35479 2563 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 6d01ff59-07c5-4d62-91f6-917eeb58ff7f 2020-07-13 21:26:19.035314 35480 3437 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 952\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.549E3\nmove_type: '1'\nsale_id: 2563\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-405\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-405 189.186.92.202 6d01ff59-07c5-4d62-91f6-917eeb58ff7f 2020-07-13 21:26:19.057468 35481 337 Customer \N \N 18 User \N create ---\nnick_name: 'MARITZA MEDINA BELTRAN '\nphone: "(667) 344-9928"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARITZA MEDINA BELTRAN fue registrado. 189.186.92.202 00ea7b0b-acac-4b9a-a299-aeaf550e99a0 2020-07-13 22:08:49.587487 35482 2564 Sale \N \N 18 User \N create ---\ncustomer_id: 337\nuser_id: 18\nopen_cash_register_id: 952\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-07-13\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-406\nexpiration_date: 2020-08-17\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 8f331ff0-9835-4605-81f1-faea58807e89 2020-07-13 22:09:29.766353 35483 1035 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 35 \N 189.186.92.202 8f331ff0-9835-4605-81f1-faea58807e89 2020-07-13 22:09:29.795999 35484 3438 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 952\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2564\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-406\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-406 189.186.92.202 a0d49d2f-c265-451d-b09d-a5bbc1f31c6d 2020-07-13 22:09:40.618553 35485 2564 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.92.202 3b9a47b5-dd62-4716-91d9-88a6bba092c1 2020-07-13 22:09:42.850286 35486 2565 Sale \N \N 18 User \N create ---\ncustomer_id: 337\nuser_id: 18\nopen_cash_register_id: 952\namount: !ruby/object:BigDecimal 18:0.19819E4\ntax: !ruby/object:BigDecimal 18:0.3171E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2299E4\nstatus: 0\ndate_sale: 2020-07-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-407\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 69fa04a7-a3a7-410f-893e-1ec0e8810c35 2020-07-13 22:17:02.6287 35487 935 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 6 \N 189.186.92.202 69fa04a7-a3a7-410f-893e-1ec0e8810c35 2020-07-13 22:17:02.665974 35488 2565 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-407 cancelada. 189.186.92.202 3c4f3c33-e9c8-4e20-babb-86552f088830 2020-07-13 22:17:09.743899 35489 935 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.12E2\n 7 \N 189.186.92.202 3c4f3c33-e9c8-4e20-babb-86552f088830 2020-07-13 22:17:09.769785 35490 2566 Sale \N \N 18 User \N create ---\ncustomer_id: 337\nuser_id: 18\nopen_cash_register_id: 952\namount: !ruby/object:BigDecimal 18:0.19819E4\ntax: !ruby/object:BigDecimal 18:0.3171E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2299E4\nstatus: 0\ndate_sale: 2020-07-13\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-408\nexpiration_date: 2020-08-17\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 f1b0456a-97d9-47d3-9a7a-871da80624f7 2020-07-13 22:17:30.511273 35491 935 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 8 \N 189.186.92.202 f1b0456a-97d9-47d3-9a7a-871da80624f7 2020-07-13 22:17:30.539743 35492 3439 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 952\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2566\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-408\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-408 189.186.92.202 42769a78-6b79-4c99-8aad-bfef8b1c8ea9 2020-07-13 22:17:36.705302 35493 3439 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 952\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2566\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-408\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.92.202 81a8bd70-cb56-4871-98cd-8748902f3391 2020-07-13 22:17:47.323672 35494 3440 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 952\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 2566\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-408\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-408 189.186.92.202 99cbd562-86cd-4e6a-8c8d-dfb4f0329a54 2020-07-13 22:18:03.896617 35495 2566 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.92.202 13207ced-7b94-44a1-b9e1-96e179cda382 2020-07-13 22:18:10.079864 35496 2567 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 952\namount: !ruby/object:BigDecimal 18:0.1779E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1779E4\nstatus: 0\ndate_sale: 2020-07-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-409\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 a6721010-493c-4f37-8d11-2e07e450d31d 2020-07-13 22:41:32.251756 35497 1766 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.92.202 a6721010-493c-4f37-8d11-2e07e450d31d 2020-07-13 22:41:32.287017 35498 2567 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 492e23a7-17a0-4957-ab94-a87e3aa1ecb8 2020-07-13 22:41:40.531207 35499 3441 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 952\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1779E4\nmove_type: '1'\nsale_id: 2567\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-409\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.18E4\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-409 189.186.92.202 492e23a7-17a0-4957-ab94-a87e3aa1ecb8 2020-07-13 22:41:40.55748 35500 2568 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 952\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-07-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-410\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 80fc85bf-fdb0-440e-9ada-6e85fa93680b 2020-07-13 23:09:28.206007 35501 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 36 \N 189.186.92.202 80fc85bf-fdb0-440e-9ada-6e85fa93680b 2020-07-13 23:09:28.242424 35502 2568 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 eea0ce23-9f75-4ba1-9e2c-666d1b992b65 2020-07-13 23:10:11.348409 35503 3442 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 952\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 2568\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-410\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.401E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-410 189.186.92.202 eea0ce23-9f75-4ba1-9e2c-666d1b992b65 2020-07-13 23:10:11.370818 35504 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-13 20:10:54.659477000 Z\n- &1 2020-07-13 21:01:08.903446000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-13 23:22:03.850986583 Z\nsign_in_count:\n- 1632\n- 1633\n 3266 \N 189.186.92.202 5593fb49-633a-4424-a752-e93773cc0e69 2020-07-13 23:22:03.861529 35505 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QJkwxNdwDADnaEjfqBzP\n- hqXhx_Jm4Qren-bTCxaN\n 3267 \N 189.186.92.202 5593fb49-633a-4424-a752-e93773cc0e69 2020-07-13 23:22:03.883535 35506 1154 Product \N \N 4 User \N create ---\nsku: REG-1154\nname: CAJA\ndescription: CAJA REGALO\nprice_base: !ruby/object:BigDecimal 18:0.6E2\nprice_sale: !ruby/object:BigDecimal 18:0.18E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 23\nproduct_service_key: '01010101'\n 1 El producto REG-1154 fue creado. 189.186.92.202 95602ac4-11d2-483e-86a2-900350d0ddb5 2020-07-13 23:23:31.678378 35507 1154 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001154'\n 2 \N 189.186.92.202 95602ac4-11d2-483e-86a2-900350d0ddb5 2020-07-13 23:23:31.725028 35508 2003 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1154\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 95602ac4-11d2-483e-86a2-900350d0ddb5 2020-07-13 23:23:31.75816 35509 310 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-50\namount: !ruby/object:BigDecimal 18:0.6E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6E2\nobservations: ''\npurchase_date: 2020-07-13\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-50 por $ 60.0 MXN creada. 189.186.92.202 6be5a49e-5402-4235-b753-b1ca45eaa290 2020-07-13 23:23:34.31314 35510 2003 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.92.202 6be5a49e-5402-4235-b753-b1ca45eaa290 2020-07-13 23:23:34.336992 35511 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-13 20:20:04.540432000 Z\n- &1 2020-07-13 21:25:54.760536000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-13 23:23:59.500587826 Z\nsign_in_count:\n- 134\n- 135\n 271 \N 189.186.92.202 5ec8e9dd-c5e0-4324-aa78-282ffd0b4543 2020-07-13 23:23:59.507887 35512 18 User \N \N 18 User \N update ---\nunique_session_id:\n- w1NzYToKDZ4Z9pwVe4zg\n- xv4DjzxnMH3ydz3r5B7w\n 272 \N 189.186.92.202 5ec8e9dd-c5e0-4324-aa78-282ffd0b4543 2020-07-13 23:23:59.521232 35513 2569 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 952\namount: !ruby/object:BigDecimal 18:0.2079E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2079E4\nstatus: 0\ndate_sale: 2020-07-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-411\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 f42afce8-a5ce-49cf-b498-fe3030581a92 2020-07-13 23:28:52.610303 35514 1036 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.92.202 f42afce8-a5ce-49cf-b498-fe3030581a92 2020-07-13 23:28:52.648535 35515 2003 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.92.202 f42afce8-a5ce-49cf-b498-fe3030581a92 2020-07-13 23:28:52.683547 35516 2569 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 af5428ea-1b62-4edf-ac11-b49c618dac8d 2020-07-13 23:32:24.837519 35517 3443 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 952\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.2079E4\nmove_type: '1'\nsale_id: 2569\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-411\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1256'\n 1 movimiento de efectivo por venta con folio PV3-V-411 189.186.92.202 af5428ea-1b62-4edf-ac11-b49c618dac8d 2020-07-13 23:32:24.864324 35518 975 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 953\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.109899E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.567E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1567E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.71.59 1464cad2-9c81-4d66-926e-f90b5ae8a4d5 2020-07-13 23:58:00.437559 35519 953 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.71.59 1464cad2-9c81-4d66-926e-f90b5ae8a4d5 2020-07-13 23:58:00.453057 35520 2570 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 952\namount: !ruby/object:BigDecimal 18:0.137486E4\ntax: !ruby/object:BigDecimal 18:0.12414E3\ndiscount: !ruby/object:BigDecimal 18:0.599E3\ntotal: !ruby/object:BigDecimal 18:0.9E3\nstatus: 0\ndate_sale: 2020-07-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-412\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 33745402-7532-4e19-935f-24879f5d160a 2020-07-14 00:08:18.353444 35523 3444 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 952\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.9E3\nmove_type: '1'\nsale_id: 2570\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-412\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-412 189.186.92.202 b0ebbf41-0f06-4004-aab8-0d02c0e337e9 2020-07-14 00:08:26.814918 35524 338 Customer \N \N 18 User \N create ---\nnick_name: ANA SARABIA\nphone: "(667) 131-8513"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANA SARABIA fue registrado. 189.186.92.202 60b3e60d-7b8b-446b-931f-a912d5a32523 2020-07-14 00:12:52.350255 35525 2571 Sale \N \N 18 User \N create ---\ncustomer_id: 338\nuser_id: 18\nopen_cash_register_id: 952\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-07-13\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-413\nexpiration_date: 2020-08-17\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 2162ae3e-d4fd-4a17-8733-206ae2d7b9ac 2020-07-14 00:13:08.60797 35526 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 19 \N 189.186.92.202 2162ae3e-d4fd-4a17-8733-206ae2d7b9ac 2020-07-14 00:13:08.637068 35527 3445 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 952\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2571\ncardnumber: 4526\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-413\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-413 189.186.92.202 584f818e-2f0f-42e9-9db1-3a1b6fdab116 2020-07-14 00:13:25.62985 35528 2571 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.92.202 0babc747-517c-4e9b-bbc7-837e8a6db25d 2020-07-14 00:13:27.338004 35529 3446 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 952\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 2514\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-373 189.186.92.202 fdb63ea6-0340-400b-ac84-077ddacd2347 2020-07-14 00:27:50.023658 35530 2514 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.92.202 90b68b4e-c348-4693-9768-800c2b304bb1 2020-07-14 00:27:52.304669 35531 976 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 952\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.10284E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.83E4\ncash_fund: !ruby/object:BigDecimal 18:0.1218E4\nphysical_cash: !ruby/object:BigDecimal 18:0.9518E4\nobservations: SOBRAN $512\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.92.202 80bef13f-77d8-42d0-bf6f-1a6385c914a9 2020-07-14 01:06:03.289083 35532 952 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.92.202 80bef13f-77d8-42d0-bf6f-1a6385c914a9 2020-07-14 01:06:03.308442 35533 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-13 21:01:08.903446000 Z\n- &1 2020-07-13 23:22:03.850986000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-14 01:08:23.676289346 Z\nsign_in_count:\n- 1633\n- 1634\n 3268 \N 189.186.92.202 9b4fe7ca-db53-4fc1-851d-18cee54de68b 2020-07-14 01:08:23.682105 35534 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hqXhx_Jm4Qren-bTCxaN\n- PDnnpvnjETdA7AHLywbi\n 3269 \N 189.186.92.202 9b4fe7ca-db53-4fc1-851d-18cee54de68b 2020-07-14 01:08:23.696742 35535 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-11 17:04:10.851541000 Z\n- &1 2020-07-13 16:27:31.768914000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-14 04:11:31.354392127 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122491\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946010\n mask_addr: 4294967295\nsign_in_count:\n- 575\n- 576\n 1155 \N 200.68.181.26 e0dd875f-8328-4da9-a673-cb628129c380 2020-07-14 04:11:31.385385 35536 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 35Dj2TgvVVSge47TcQxs\n- hTqCK-Z_DJGv8K4udsJ5\n 1156 \N 200.68.181.26 e0dd875f-8328-4da9-a673-cb628129c380 2020-07-14 04:11:31.410925 35537 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-13 16:27:31.768914000 Z\n- &1 2020-07-14 04:11:31.354392000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-14 17:20:43.278029944 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122491\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946010\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122491\n mask_addr: 4294967295\nsign_in_count:\n- 576\n- 577\n 1157 \N 187.149.71.59 9c2cfe4c-867c-4b14-82ca-a85ad95cf86c 2020-07-14 17:20:43.321167 35538 2 User \N \N 2 User \N update ---\nunique_session_id:\n- hTqCK-Z_DJGv8K4udsJ5\n- QQYZ5xxUR7VT3MWSAboq\n 1158 \N 187.149.71.59 9c2cfe4c-867c-4b14-82ca-a85ad95cf86c 2020-07-14 17:20:43.356643 35539 954 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.567E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 567.0 187.149.71.59 74c797b0-2d1f-4506-b9a6-25dd4facf491 2020-07-14 17:24:15.258568 35540 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-13 21:25:54.760536000 Z\n- &1 2020-07-13 23:23:59.500587000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-14 19:42:21.920261319 Z\nsign_in_count:\n- 135\n- 136\n 273 \N 189.186.92.202 5c1d7938-3acc-47f8-8dc6-98b071dcb843 2020-07-14 19:42:21.925912 35541 18 User \N \N 18 User \N update ---\nunique_session_id:\n- xv4DjzxnMH3ydz3r5B7w\n- 2Gyv4GmKEnnyXxsRRC4s\n 274 \N 189.186.92.202 5c1d7938-3acc-47f8-8dc6-98b071dcb843 2020-07-14 19:42:21.939496 35542 955 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1218E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1218.0 189.186.92.202 cd06cef3-7def-4bda-ba6f-ed00f76f65d8 2020-07-14 19:42:34.351911 35543 339 Customer \N \N 18 User \N create ---\nnick_name: BRENDA BELTRAN\nphone: "(667) 327-5553"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BRENDA BELTRAN fue registrado. 189.186.92.202 da9885bd-f7ee-4158-854c-cdad1d5fcb48 2020-07-14 19:42:53.021142 35544 2572 Sale \N \N 18 User \N create ---\ncustomer_id: 339\nuser_id: 18\nopen_cash_register_id: 955\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-07-14\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-414\nexpiration_date: 2020-08-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 ee2be6a0-ba48-4c1d-9fa9-6952b985d86e 2020-07-14 19:43:06.51994 35545 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 20 \N 189.186.92.202 ee2be6a0-ba48-4c1d-9fa9-6952b985d86e 2020-07-14 19:43:06.575071 35546 3447 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 955\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2572\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-414\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-414 189.186.92.202 6398d74c-8f1e-413b-9999-bf86d7c5c634 2020-07-14 19:46:56.955308 35547 2572 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.92.202 59df401b-6ea0-4911-a2ee-80b827b42dca 2020-07-14 19:47:05.029722 35548 3448 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 955\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 2572\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-414 189.186.92.202 6adc93cb-1c02-4724-8691-c6fb57a75049 2020-07-14 20:12:22.393861 35549 2572 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.92.202 7141c734-3a2d-40da-8af9-dd513bcda82d 2020-07-14 20:12:24.078549 35550 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-13 23:22:03.850986000 Z\n- &1 2020-07-14 01:08:23.676289000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-14 20:28:16.474862055 Z\nsign_in_count:\n- 1634\n- 1635\n 3270 \N 189.186.92.202 6239c6c5-ebe2-4ea0-9b9d-0e1bed14608f 2020-07-14 20:28:16.480311 35551 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PDnnpvnjETdA7AHLywbi\n- _3JTnvw_1KTDfrjNeroH\n 3271 \N 189.186.92.202 6239c6c5-ebe2-4ea0-9b9d-0e1bed14608f 2020-07-14 20:28:16.497238 35552 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-13 23:23:59.500587000 Z\n- &1 2020-07-14 19:42:21.920261000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-14 23:25:37.001928169 Z\nsign_in_count:\n- 136\n- 137\n 275 \N 189.186.92.202 4fa3c879-a8e0-46a6-a5ce-30b27758ae05 2020-07-14 23:25:37.00793 35553 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 2Gyv4GmKEnnyXxsRRC4s\n- yuu11rznk5Eq_yDm8Hde\n 276 \N 189.186.92.202 4fa3c879-a8e0-46a6-a5ce-30b27758ae05 2020-07-14 23:25:37.03237 35554 977 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 954\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.567E3\nphysical_cash: !ruby/object:BigDecimal 18:0.567E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.47.139 bfc681d6-8099-4a41-8104-a5c0cc980701 2020-07-14 23:45:54.306711 35555 954 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.47.139 bfc681d6-8099-4a41-8104-a5c0cc980701 2020-07-14 23:45:54.321178 35556 978 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 955\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1499E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.1217E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2717E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.92.202 1118b8de-1ca5-4727-831b-80cc77881f97 2020-07-15 00:03:31.253409 35557 955 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.92.202 1118b8de-1ca5-4727-831b-80cc77881f97 2020-07-15 00:03:31.26684 35558 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-14 04:11:31.354392000 Z\n- &1 2020-07-14 17:20:43.278029000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-15 00:29:51.506473594 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946010\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122491\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122491\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934205\n mask_addr: 4294967295\nsign_in_count:\n- 577\n- 578\n 1159 \N 200.68.134.253 f01e9ebc-1bcc-4e77-9945-480eddcfc40f 2020-07-15 00:29:51.514502 35559 2 User \N \N 2 User \N update ---\nunique_session_id:\n- QQYZ5xxUR7VT3MWSAboq\n- bZkb8foisA4RwHs41zYL\n 1160 \N 200.68.134.253 f01e9ebc-1bcc-4e77-9945-480eddcfc40f 2020-07-15 00:29:51.532187 35560 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-14 17:20:43.278029000 Z\n- &1 2020-07-15 00:29:51.506473000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-15 01:06:18.949908355 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122491\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934205\n mask_addr: 4294967295\nsign_in_count:\n- 578\n- 579\n 1161 \N 200.68.134.253 f9f51f09-ee5d-4200-accd-17a3fe5dff96 2020-07-15 01:06:18.956712 35561 2 User \N \N 2 User \N update ---\nunique_session_id:\n- bZkb8foisA4RwHs41zYL\n- bYoxayXrWkexUyUycyNp\n 1162 \N 200.68.134.253 f9f51f09-ee5d-4200-accd-17a3fe5dff96 2020-07-15 01:06:18.97172 35562 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-14 01:08:23.676289000 Z\n- &1 2020-07-14 20:28:16.474862000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-15 02:43:34.632672766 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095691\n mask_addr: 4294967295\nsign_in_count:\n- 1635\n- 1636\n 3272 \N 189.186.47.139 fb7f25ca-5a23-4415-8c2f-2a206613bff1 2020-07-15 02:43:34.642664 35563 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _3JTnvw_1KTDfrjNeroH\n- fDNCxx5b-BhJoq4pts7m\n 3273 \N 189.186.47.139 fb7f25ca-5a23-4415-8c2f-2a206613bff1 2020-07-15 02:43:34.664671 35564 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-15 00:29:51.506473000 Z\n- &1 2020-07-15 01:06:18.949908000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-15 16:19:06.399772521 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934205\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095691\n mask_addr: 4294967295\nsign_in_count:\n- 579\n- 580\n 1163 \N 189.186.47.139 4566cc6a-3546-4505-ab58-8b6ada57dccf 2020-07-15 16:19:06.429882 35565 2 User \N \N 2 User \N update ---\nunique_session_id:\n- bYoxayXrWkexUyUycyNp\n- fCB1c-ypMydwxNLyEs6z\n 1164 \N 189.186.47.139 4566cc6a-3546-4505-ab58-8b6ada57dccf 2020-07-15 16:19:06.454726 35566 956 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.567E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 567.0 189.186.47.139 13395f17-52fb-454b-b32d-dd1f45db4f53 2020-07-15 16:19:28.325271 35567 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-14 20:28:16.474862000 Z\n- &1 2020-07-15 02:43:34.632672000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-15 16:56:26.014357749 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095691\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095691\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\nsign_in_count:\n- 1636\n- 1637\n 3274 \N 177.228.118.215 390af0b4-0377-4700-a6e0-c9a6ab8a6620 2020-07-15 16:56:26.022999 35568 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fDNCxx5b-BhJoq4pts7m\n- deTrs4G3SJCk5PemG6bD\n 3275 \N 177.228.118.215 390af0b4-0377-4700-a6e0-c9a6ab8a6620 2020-07-15 16:56:26.047035 35569 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-15 01:06:18.949908000 Z\n- &1 2020-07-15 16:19:06.399772000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-15 17:42:34.395793350 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934205\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095691\n mask_addr: 4294967295\nsign_in_count:\n- 580\n- 581\n 1165 \N 189.186.47.139 4cbc9df1-1c48-4d4c-8265-754ae3ea292b 2020-07-15 17:42:34.40214 35570 2 User \N \N 2 User \N update ---\nunique_session_id:\n- fCB1c-ypMydwxNLyEs6z\n- M2gexKyzs1gGQVpRTTZB\n 1166 \N 189.186.47.139 4cbc9df1-1c48-4d4c-8265-754ae3ea292b 2020-07-15 17:42:34.417847 35571 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-15 02:43:34.632672000 Z\n- &1 2020-07-15 16:56:26.014357000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-15 19:09:36.906345313 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095691\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1637\n- 1638\n 3276 \N 189.186.92.202 029a1c58-af37-428a-b109-b8fc800161a1 2020-07-15 19:09:36.936763 35572 4 User \N \N 4 User \N update ---\nunique_session_id:\n- deTrs4G3SJCk5PemG6bD\n- UMysn674goagjg1LyrPA\n 3277 \N 189.186.92.202 029a1c58-af37-428a-b109-b8fc800161a1 2020-07-15 19:09:36.962863 35573 311 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-51\namount: !ruby/object:BigDecimal 18:0.52465E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.52465E4\nobservations: ''\npurchase_date: 2020-07-15\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-51 por $ 5246.5 MXN creada. 189.186.92.202 bb2ce3d8-1fc1-4b84-b264-4d5921ef3576 2020-07-15 19:18:14.784147 35574 1836 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.13E2\n 21 \N 189.186.92.202 bb2ce3d8-1fc1-4b84-b264-4d5921ef3576 2020-07-15 19:18:14.82748 35575 312 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-52\namount: !ruby/object:BigDecimal 18:0.7995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.7995E3\nobservations: ''\npurchase_date: 2020-07-15\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-52 por $ 799.5 MXN creada. 189.186.92.202 9202dc69-6dee-42d3-8453-c4ce5b948129 2020-07-15 19:18:35.277274 35576 1822 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 37 \N 189.186.92.202 9202dc69-6dee-42d3-8453-c4ce5b948129 2020-07-15 19:18:35.300684 35577 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-14 19:42:21.920261000 Z\n- &1 2020-07-14 23:25:37.001928000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-15 19:29:45.145651833 Z\nsign_in_count:\n- 137\n- 138\n 277 \N 189.186.92.202 2cb7a864-2153-4bcc-ac78-1ab9e4f0f552 2020-07-15 19:29:45.151041 35578 18 User \N \N 18 User \N update ---\nunique_session_id:\n- yuu11rznk5Eq_yDm8Hde\n- xNhpPzxNkpxF955c8tqR\n 278 \N 189.186.92.202 2cb7a864-2153-4bcc-ac78-1ab9e4f0f552 2020-07-15 19:29:45.164229 35579 957 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1217E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1217.0 189.186.92.202 b35b1e52-cb8b-4e96-a20a-18ef7e2ceda9 2020-07-15 19:29:58.183973 35580 2573 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 957\namount: !ruby/object:BigDecimal 18:0.159E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.159E3\nstatus: 0\ndate_sale: 2020-07-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-415\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 172d5558-8c73-4aa8-bde0-cc3fe7a85c43 2020-07-15 19:30:14.374828 35581 1955 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.92.202 172d5558-8c73-4aa8-bde0-cc3fe7a85c43 2020-07-15 19:30:14.402951 35582 2573 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 0a6f6eed-f814-4176-af33-4649a207c2d9 2020-07-15 19:30:24.636123 35583 3449 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 957\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.159E3\nmove_type: '1'\nsale_id: 2573\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-415\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.41E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-415 189.186.92.202 0a6f6eed-f814-4176-af33-4649a207c2d9 2020-07-15 19:30:24.659033 35584 313 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-53\namount: !ruby/object:BigDecimal 18:0.6995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6995E3\nobservations: ''\npurchase_date: 2020-07-15\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-53 por $ 699.5 MXN creada. 189.186.92.202 109dd995-3d8a-426c-b41f-c9d97e7c34aa 2020-07-15 20:14:15.6559 35585 2001 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.92.202 109dd995-3d8a-426c-b41f-c9d97e7c34aa 2020-07-15 20:14:15.679718 35586 2574 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 956\namount: !ruby/object:BigDecimal 18:0.3198E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3198E4\nstatus: 0\ndate_sale: 2020-07-15\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1239\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.47.139 7111680b-a6b4-4ab7-921a-de87eee7edd1 2020-07-15 20:45:45.320058 35587 1938 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.47.139 7111680b-a6b4-4ab7-921a-de87eee7edd1 2020-07-15 20:45:45.347905 35588 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 22 \N 189.186.47.139 7111680b-a6b4-4ab7-921a-de87eee7edd1 2020-07-15 20:45:45.371514 35589 2574 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.47.139 d406d6d6-fbf6-4d3b-8ae9-d8231a00e3f2 2020-07-15 20:46:11.706438 35590 3450 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 956\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.3198E4\nmove_type: '1'\nsale_id: 2574\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1239\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SERVICIO A DOMICILIO\n 1 movimiento de efectivo por venta con folio PV1-V-1239 189.186.47.139 d406d6d6-fbf6-4d3b-8ae9-d8231a00e3f2 2020-07-15 20:46:11.728006 35591 735 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.39E2\n- !ruby/object:BigDecimal 18:0.38E2\n 4 \N 189.186.47.139 72281d1e-b808-4c01-81cd-334f4da4703d 2020-07-15 20:53:52.265921 35592 735 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.38E2\n- !ruby/object:BigDecimal 18:0.37E2\n 5 \N 189.186.47.139 8beb2d7c-f3ed-43a9-93f6-51bc8a9d65a6 2020-07-15 20:53:55.653971 35593 1938 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.47.139 14d3a626-b100-4aa4-8eec-ee1e01ff3ff6 2020-07-15 20:54:02.092472 35594 634 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-15\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.47.139 8c6e260a-3aa7-45fc-ba8e-39f90b212a90 2020-07-15 20:54:05.050574 35595 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-15 16:56:26.014357000 Z\n- &1 2020-07-15 19:09:36.906345000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-15 21:45:29.417346351 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1638\n- 1639\n 3278 \N 189.186.92.202 b3a48213-e5b4-483e-bf9b-1ee6adb0b8af 2020-07-15 21:45:29.424661 35596 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UMysn674goagjg1LyrPA\n- oPoxx1TA8aRKvhc2J4FH\n 3279 \N 189.186.92.202 b3a48213-e5b4-483e-bf9b-1ee6adb0b8af 2020-07-15 21:45:29.442864 35597 979 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 956\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3198E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.567E3\nphysical_cash: !ruby/object:BigDecimal 18:0.567E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.47.139 3a43bb1a-3334-4ff0-8edb-faa85d69c2bc 2020-07-15 23:07:27.462755 35598 956 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.47.139 3a43bb1a-3334-4ff0-8edb-faa85d69c2bc 2020-07-15 23:07:27.477784 35599 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-14 23:25:37.001928000 Z\n- &1 2020-07-15 19:29:45.145651000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-15 23:24:14.648275471 Z\nsign_in_count:\n- 138\n- 139\n 279 \N 189.186.92.202 62cfd581-c515-4ad9-a9a0-cfe72091de60 2020-07-15 23:24:14.654451 35600 18 User \N \N 18 User \N update ---\nunique_session_id:\n- xNhpPzxNkpxF955c8tqR\n- yMym45GkTomDkGaRxZwh\n 280 \N 189.186.92.202 62cfd581-c515-4ad9-a9a0-cfe72091de60 2020-07-15 23:24:14.668554 35601 2575 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 957\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-07-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-416\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 6a3d8c9c-99e4-4ef7-a710-e73781aa6f35 2020-07-15 23:24:33.542472 35602 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 22 \N 189.186.92.202 6a3d8c9c-99e4-4ef7-a710-e73781aa6f35 2020-07-15 23:24:33.571033 35603 2575 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 66cb264f-9711-4975-ae1e-3deeb54b003b 2020-07-15 23:24:45.727816 35604 3451 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 957\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2575\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-416\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-416 189.186.92.202 66cb264f-9711-4975-ae1e-3deeb54b003b 2020-07-15 23:24:45.751645 35605 1155 Product \N \N 18 User \N create ---\nsku: BOL-1155\nname: 3BLCP20107\ndescription: BOLSA NEGRA CUADROS\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170801149'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1155 fue creado. 189.186.92.202 4841b73a-c985-4832-a48e-5c7d676af01b 2020-07-15 23:49:11.04691 35606 2004 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1155\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 4841b73a-c985-4832-a48e-5c7d676af01b 2020-07-15 23:49:11.1008 35607 314 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-54\namount: !ruby/object:BigDecimal 18:0.7495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.7495E3\nobservations: ''\npurchase_date: 2020-07-15\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-54 por $ 749.5 MXN creada. 189.186.92.202 7799ee30-881a-4d40-b9dc-a157de4a725e 2020-07-15 23:49:17.149525 35608 2004 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.92.202 7799ee30-881a-4d40-b9dc-a157de4a725e 2020-07-15 23:49:17.175041 35609 2576 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 957\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-07-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-417\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 034238dc-da20-462f-b138-a3536546b4bd 2020-07-15 23:49:40.23026 35610 2004 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.92.202 034238dc-da20-462f-b138-a3536546b4bd 2020-07-15 23:49:40.259944 35611 2576 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 aa96d3ee-cc90-49e9-a338-44e545d989d3 2020-07-15 23:50:03.349493 35612 3452 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 957\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2576\ncardnumber: 1256\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-417\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-417 189.186.92.202 aa96d3ee-cc90-49e9-a338-44e545d989d3 2020-07-15 23:50:03.372535 35703 256 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.43.235 ced70bf5-7677-4982-ba34-937bb463b079 2020-07-17 21:31:08.468045 35613 980 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 957\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.3157E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.19E4\ncash_fund: !ruby/object:BigDecimal 18:0.975E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2875E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.92.202 1aae4f4a-f162-4f49-88e5-f92faf1389a5 2020-07-16 00:04:00.106662 35614 957 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.92.202 1aae4f4a-f162-4f49-88e5-f92faf1389a5 2020-07-16 00:04:00.12806 35615 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-15 19:09:36.906345000 Z\n- &1 2020-07-15 21:45:29.417346000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-16 03:05:17.095642458 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104311\n mask_addr: 4294967295\nsign_in_count:\n- 1639\n- 1640\n 3280 \N 187.149.0.55 3ad8f8d9-81d4-4df2-8d5b-55450331ac61 2020-07-16 03:05:17.103841 35616 4 User \N \N 4 User \N update ---\nunique_session_id:\n- oPoxx1TA8aRKvhc2J4FH\n- bKr8KstBJe9N2fTbqFQS\n 3281 \N 187.149.0.55 3ad8f8d9-81d4-4df2-8d5b-55450331ac61 2020-07-16 03:05:17.123761 35617 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-15 21:45:29.417346000 Z\n- &1 2020-07-16 03:05:17.095642000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-16 03:05:19.429255684 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104311\n mask_addr: 4294967295\nsign_in_count:\n- 1640\n- 1641\n 3282 \N 187.149.0.55 5777a8ca-a0dc-4764-ba27-f367a4533383 2020-07-16 03:05:19.436016 35618 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bKr8KstBJe9N2fTbqFQS\n- nywerrZY2qrdPYfwX1KM\n 3283 \N 187.149.0.55 5777a8ca-a0dc-4764-ba27-f367a4533383 2020-07-16 03:05:19.45196 35619 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-15 16:19:06.399772000 Z\n- &1 2020-07-15 17:42:34.395793000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-16 17:13:43.519545142 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095691\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095277\n mask_addr: 4294967295\nsign_in_count:\n- 581\n- 582\n 1167 \N 189.186.45.237 2f1534b0-1c11-4368-a8cf-f850a8912b84 2020-07-16 17:13:43.547771 35620 2 User \N \N 2 User \N update ---\nunique_session_id:\n- M2gexKyzs1gGQVpRTTZB\n- dUBRzycFJ5BpYAfusTy6\n 1168 \N 189.186.45.237 2f1534b0-1c11-4368-a8cf-f850a8912b84 2020-07-16 17:13:43.573041 35621 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-15 19:29:45.145651000 Z\n- &1 2020-07-15 23:24:14.648275000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-16 18:24:35.747364710 Z\nsign_in_count:\n- 139\n- 140\n 281 \N 189.186.92.202 39370165-9adf-4767-bcbc-3d32050d6264 2020-07-16 18:24:35.780738 35622 18 User \N \N 18 User \N update ---\nunique_session_id:\n- yMym45GkTomDkGaRxZwh\n- JqzZyitmQco9AyYbxi6t\n 282 \N 189.186.92.202 39370165-9adf-4767-bcbc-3d32050d6264 2020-07-16 18:24:35.805983 35623 634 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-16\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.92.202 bc4ce81e-95a0-4fcb-a8da-01eb6831b3a4 2020-07-16 18:33:35.168876 35624 1832 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 9 \N 189.186.92.202 bc4ce81e-95a0-4fcb-a8da-01eb6831b3a4 2020-07-16 18:33:35.197916 35625 939 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.34E2\n- !ruby/object:BigDecimal 18:0.36E2\n 5 \N 189.186.92.202 bc4ce81e-95a0-4fcb-a8da-01eb6831b3a4 2020-07-16 18:33:35.231871 35626 958 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.975E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 975.0 189.186.92.202 752af824-4a76-4bd5-b082-dbb6e51bf8a9 2020-07-16 18:57:26.036249 35627 2577 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 958\namount: !ruby/object:BigDecimal 18:0.166738E4\ntax: !ruby/object:BigDecimal 18:0.11062E3\ndiscount: !ruby/object:BigDecimal 18:0.177E3\ntotal: !ruby/object:BigDecimal 18:0.1601E4\nstatus: 0\ndate_sale: 2020-07-16\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-418\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 c06faca5-3a40-4899-9f9e-e242c3bddbf1 2020-07-16 18:59:03.530696 35628 970 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.92.202 c06faca5-3a40-4899-9f9e-e242c3bddbf1 2020-07-16 18:59:03.560745 35629 972 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.92.202 c06faca5-3a40-4899-9f9e-e242c3bddbf1 2020-07-16 18:59:03.587911 35630 2577 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 662a5002-3724-473f-a98c-0d9e09a87e77 2020-07-16 18:59:09.710703 35631 3453 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 958\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1601E4\nmove_type: '1'\nsale_id: 2577\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-418\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1601E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-418 189.186.92.202 662a5002-3724-473f-a98c-0d9e09a87e77 2020-07-16 18:59:09.735954 35632 2578 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 958\namount: !ruby/object:BigDecimal 18:0.148003E4\ntax: !ruby/object:BigDecimal 18:0.6896E2\ndiscount: !ruby/object:BigDecimal 18:0.2E3\ntotal: !ruby/object:BigDecimal 18:0.134899E4\nstatus: 0\ndate_sale: 2020-07-16\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-419\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 7137362a-3c1f-4c97-a74c-d606304d072f 2020-07-16 20:53:38.293156 35633 829 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.92.202 7137362a-3c1f-4c97-a74c-d606304d072f 2020-07-16 20:53:38.322911 35634 939 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.36E2\n- !ruby/object:BigDecimal 18:0.34E2\n 6 \N 189.186.92.202 7137362a-3c1f-4c97-a74c-d606304d072f 2020-07-16 20:53:38.348423 35635 2578 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 2fbc53e2-b7f8-4c74-ac7c-54da7a72b89e 2020-07-16 20:54:03.339686 35636 3454 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 958\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.134899E4\nmove_type: '1'\nsale_id: 2578\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-419\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.135E4\nchange: !ruby/object:BigDecimal 18:0.101E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-419 189.186.92.202 2fbc53e2-b7f8-4c74-ac7c-54da7a72b89e 2020-07-16 20:54:03.368575 35774 1023 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 187.149.43.235 ae8632eb-c823-466e-b815-a2c3c9a1310c 2020-07-18 16:15:42.386915 35637 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-16 03:05:17.095642000 Z\n- &1 2020-07-16 03:05:19.429255000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-16 21:25:18.211733514 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104311\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1641\n- 1642\n 3284 \N 189.186.92.202 63df345b-e1d2-424f-a8fb-9909e8ad24d0 2020-07-16 21:25:18.236939 35638 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nywerrZY2qrdPYfwX1KM\n- 2uy6BnzFX2fyFzxaBjih\n 3285 \N 189.186.92.202 63df345b-e1d2-424f-a8fb-9909e8ad24d0 2020-07-16 21:25:18.261562 35639 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-15 23:24:14.648275000 Z\n- &1 2020-07-16 18:24:35.747364000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-16 23:13:26.572597435 Z\nsign_in_count:\n- 140\n- 141\n 283 \N 189.186.92.202 d2be9037-7dba-4a5f-9602-48327fa1f722 2020-07-16 23:13:26.579174 35640 18 User \N \N 18 User \N update ---\nunique_session_id:\n- JqzZyitmQco9AyYbxi6t\n- 2cKCnQW5gBKywhzXjEPW\n 284 \N 189.186.92.202 d2be9037-7dba-4a5f-9602-48327fa1f722 2020-07-16 23:13:26.600805 35641 981 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 958\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.294999E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.27E4\ncash_fund: !ruby/object:BigDecimal 27:0.12249899999999998E4\nphysical_cash: !ruby/object:BigDecimal 18:0.392499E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.92.202 614cdaf4-f978-41f5-9426-c91d183d3e59 2020-07-16 23:14:42.633461 35642 958 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.92.202 614cdaf4-f978-41f5-9426-c91d183d3e59 2020-07-16 23:14:42.648734 35643 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-15 17:42:34.395793000 Z\n- &1 2020-07-16 17:13:43.519545000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-17 17:19:21.379684490 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095691\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095277\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095277\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115499\n mask_addr: 4294967295\nsign_in_count:\n- 582\n- 583\n 1169 \N 187.149.43.235 c6123543-7462-482c-b8fd-c91ca0dfb06c 2020-07-17 17:19:21.412765 35644 2 User \N \N 2 User \N update ---\nunique_session_id:\n- dUBRzycFJ5BpYAfusTy6\n- a9fAf1fZcZKUX3TtkofK\n 1170 \N 187.149.43.235 c6123543-7462-482c-b8fd-c91ca0dfb06c 2020-07-17 17:19:21.447399 35645 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-16 03:05:19.429255000 Z\n- &1 2020-07-16 21:25:18.211733000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-17 18:47:31.319964921 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147104311\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1642\n- 1643\n 3286 \N 189.186.92.202 3b36b9c0-fcef-4c22-b399-bb453dbb59f0 2020-07-17 18:47:31.339365 35646 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2uy6BnzFX2fyFzxaBjih\n- gJidd3EbrZxpywGcvXtC\n 3287 \N 189.186.92.202 3b36b9c0-fcef-4c22-b399-bb453dbb59f0 2020-07-17 18:47:31.363408 35647 1156 Product \N \N 2 User \N create ---\nsku: CAR-1156\nname: 3BICP20091NEG\ndescription: CARTERA CON CIERRE\nprice_base: \nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1156 fue creado. 187.149.43.235 abce4caf-fb2e-4337-9506-8265076512a3 2020-07-17 18:53:23.345621 35648 1156 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001156'\n 2 \N 187.149.43.235 abce4caf-fb2e-4337-9506-8265076512a3 2020-07-17 18:53:23.379153 35649 2005 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1156\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.43.235 abce4caf-fb2e-4337-9506-8265076512a3 2020-07-17 18:53:23.409781 35650 1156 Product \N \N 2 User \N update ---\nprice_base:\n- \n- !ruby/object:BigDecimal 27:0.399E3\n 3 El producto CAR-1156 fue modificado. 187.149.43.235 f699b48b-e8c1-414e-bfe4-28db10bc6d04 2020-07-17 18:53:57.848694 35651 315 Purchase \N \N 2 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-125\namount: !ruby/object:BigDecimal 18:0.399E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.399E3\nobservations: ''\npurchase_date: 2020-07-17\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-125 por $ 399.0 MXN creada. 187.149.43.235 21564938-ece7-409c-bbec-5a26032311ba 2020-07-17 18:54:27.568948 35652 2005 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.43.235 21564938-ece7-409c-bbec-5a26032311ba 2020-07-17 18:54:27.595849 35653 959 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.567E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 567.0 187.149.43.235 2a0940a6-575d-4c20-b6f0-bbef0a2df3d6 2020-07-17 18:54:39.416867 35654 2579 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 959\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-07-17\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1240\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.235 384485a0-5e6d-4286-a5f1-ad4ba2004e20 2020-07-17 18:55:07.538242 35655 2005 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.43.235 384485a0-5e6d-4286-a5f1-ad4ba2004e20 2020-07-17 18:55:07.567399 35656 2579 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.235 b81ee7aa-f35e-4768-b55d-73eb3cace833 2020-07-17 18:55:12.11865 35657 3455 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 959\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 2579\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1240\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1240 187.149.43.235 b81ee7aa-f35e-4768-b55d-73eb3cace833 2020-07-17 18:55:12.141835 35658 312 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 959\nquantity: !ruby/object:BigDecimal 18:0.25E2\nstatus: 1\nobservations: GARRAFON DE AGUA\nexpense_date: 2020-07-17\nexpense_code: PV1-E-215\n 1 Egreso por 25.0 registrado 187.149.43.235 3efeaa08-bc4e-4240-903c-56bca0c25aa1 2020-07-17 18:56:57.980689 35775 1023 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 187.149.43.235 94808f81-8ff4-4421-b2b3-0fdfe7b42c0f 2020-07-18 16:15:46.714596 35659 3456 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 959\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 312\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.43.235 3efeaa08-bc4e-4240-903c-56bca0c25aa1 2020-07-17 18:56:58.002624 35660 29 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.43.235 dfe4ede7-4696-4283-9ed5-29b2891b6986 2020-07-17 19:43:22.278445 35661 1998 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.43.235 23be2046-faf2-4d20-a5a9-2ea05b551496 2020-07-17 19:43:28.152989 35662 1998 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.43.235 ba3642c3-89bf-4335-9070-047c4a412675 2020-07-17 19:43:32.013541 35663 1997 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.43.235 8761b0e8-0af7-4f4b-ba1a-0a8196349485 2020-07-17 19:43:50.582411 35664 31 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.43.235 240fc2bc-ab2e-4eda-b803-574a8a98b8fd 2020-07-17 19:44:05.80061 35665 38 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.43.235 85e315ab-1383-481e-a09e-241b237ee84b 2020-07-17 19:44:18.084535 35666 635 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-17\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.43.235 93d53165-d064-492f-ac82-ad2529fd2d8a 2020-07-17 19:44:27.925586 35667 1157 Product \N \N 2 User \N create ---\nsku: CAR-1157\nname: 1BICV20261NUD\ndescription: 'NEGRA CON GRABADO '\nprice_base: !ruby/object:BigDecimal 18:0.399E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170818413'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1157 fue creado. 187.149.43.235 7792fb48-2b43-48bd-a9f3-de543e05ed6d 2020-07-17 19:48:01.347913 35668 2006 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1157\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.43.235 7792fb48-2b43-48bd-a9f3-de543e05ed6d 2020-07-17 19:48:01.393198 35669 1158 Product \N \N 2 User \N create ---\nsku: CAR-1158\nname: 2BICV20315NEG\ndescription: NEGRA DOBLE CIERRE\nprice_base: !ruby/object:BigDecimal 18:0.499E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170820003'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1158 fue creado. 187.149.43.235 c3a0a44e-65aa-47a9-92a0-3e335d8cdfa9 2020-07-17 19:49:28.409698 35670 2007 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1158\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.43.235 c3a0a44e-65aa-47a9-92a0-3e335d8cdfa9 2020-07-17 19:49:28.452661 35671 316 Purchase \N \N 2 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-126\namount: !ruby/object:BigDecimal 18:0.898E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.898E3\nobservations: ''\npurchase_date: 2020-07-17\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-126 por $ 898.0 MXN creada. 187.149.43.235 4ddfee03-2bad-4d38-9662-a40a29bb64ab 2020-07-17 19:49:31.764885 35672 2006 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.43.235 4ddfee03-2bad-4d38-9662-a40a29bb64ab 2020-07-17 19:49:31.790325 35673 2007 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.43.235 4ddfee03-2bad-4d38-9662-a40a29bb64ab 2020-07-17 19:49:31.815172 35674 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-16 17:13:43.519545000 Z\n- &1 2020-07-17 17:19:21.379684000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-17 19:52:20.047656088 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183095277\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115499\n mask_addr: 4294967295\nsign_in_count:\n- 583\n- 584\n 1171 \N 187.149.43.235 50174ce3-3077-41a1-b9d0-a6a373e38fc6 2020-07-17 19:52:20.055511 35675 2 User \N \N 2 User \N update ---\nunique_session_id:\n- a9fAf1fZcZKUX3TtkofK\n- g8FcTaGqebFsBsPkFa8x\n 1172 \N 187.149.43.235 50174ce3-3077-41a1-b9d0-a6a373e38fc6 2020-07-17 19:52:20.072979 35676 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-17 17:19:21.379684000 Z\n- &1 2020-07-17 19:52:20.047656000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-17 19:56:00.534096674 Z\nsign_in_count:\n- 584\n- 585\n 1173 \N 187.149.43.235 034fb2a2-9dd8-4322-bd65-0b63461ab8b9 2020-07-17 19:56:00.54273 35677 2 User \N \N 2 User \N update ---\nunique_session_id:\n- g8FcTaGqebFsBsPkFa8x\n- AExJGK-7V1DVLFc-iNF_\n 1174 \N 187.149.43.235 034fb2a2-9dd8-4322-bd65-0b63461ab8b9 2020-07-17 19:56:00.564544 35678 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-16 21:25:18.211733000 Z\n- &1 2020-07-17 18:47:31.319964000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-17 20:04:54.252518061 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\nsign_in_count:\n- 1643\n- 1644\n 3288 \N 177.228.118.215 476031b8-95b0-4a01-9edb-122e9c0d058e 2020-07-17 20:04:54.263665 35679 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gJidd3EbrZxpywGcvXtC\n- Bw7UtXxQXRTMyU1yAdEN\n 3289 \N 177.228.118.215 476031b8-95b0-4a01-9edb-122e9c0d058e 2020-07-17 20:04:54.287802 35680 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-17 19:52:20.047656000 Z\n- &1 2020-07-17 19:56:00.534096000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-17 20:09:41.644998440 Z\nsign_in_count:\n- 585\n- 586\n 1175 \N 187.149.43.235 b394c048-7768-4b04-9a78-cac22399ea6a 2020-07-17 20:09:41.650892 35681 2 User \N \N 2 User \N update ---\nunique_session_id:\n- AExJGK-7V1DVLFc-iNF_\n- xHKz5PhxuofjVhMM6LqF\n 1176 \N 187.149.43.235 b394c048-7768-4b04-9a78-cac22399ea6a 2020-07-17 20:09:41.665503 35776 1892 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.43.235 f7cd20d2-2a67-4227-9996-f4ca11f0cabd 2020-07-18 16:16:02.899515 35682 2580 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 959\namount: !ruby/object:BigDecimal 18:0.639E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.639E3\nstatus: 0\ndate_sale: 2020-07-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1241\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.235 67afff4b-448f-40d6-896f-d8c9efb7a76f 2020-07-17 20:16:17.639949 35683 788 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 24 \N 187.149.43.235 67afff4b-448f-40d6-896f-d8c9efb7a76f 2020-07-17 20:16:17.67119 35684 2580 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.235 d4f71b66-ca99-484c-8d8b-156095791642 2020-07-17 20:16:57.934212 35685 3457 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 959\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.639E3\nmove_type: '1'\nsale_id: 2580\ncardnumber: 2502\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1241\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1241 187.149.43.235 d4f71b66-ca99-484c-8d8b-156095791642 2020-07-17 20:16:57.962283 35686 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-07-11 20:11:57.177824000 Z\n- &1 2020-07-11 20:15:37.785226000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-17 21:07:37.875547751 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 236\n- 237\n 475 \N 189.186.92.202 fc4bc5e2-502e-40a8-8bca-4e628cb95f30 2020-07-17 21:07:37.9038 35687 21 User \N \N 21 User \N update ---\nunique_session_id:\n- iTx5cYo2yUkxckR1UNHx\n- 1d1GBR-qz9SHTQpyUz59\n 476 \N 189.186.92.202 fc4bc5e2-502e-40a8-8bca-4e628cb95f30 2020-07-17 21:07:37.92775 35688 960 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.122499E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1224.99 189.186.92.202 1305f958-c1cf-4b60-82fa-bdef81e01d83 2020-07-17 21:07:53.129883 35689 2581 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 960\namount: !ruby/object:BigDecimal 18:0.16897E3\ntax: !ruby/object:BigDecimal 18:0.2704E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.19601E3\nstatus: 0\ndate_sale: 2020-07-17\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-420\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 956abbe3-e0bc-4d30-be57-7f96a55c061c 2020-07-17 21:10:00.20697 35690 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.56E2\n- !ruby/object:BigDecimal 18:0.52E2\n 21 \N 189.186.92.202 956abbe3-e0bc-4d30-be57-7f96a55c061c 2020-07-17 21:10:00.238535 35691 2581 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 bfc651c1-8986-4ac7-aafb-caa7170e7de4 2020-07-17 21:10:08.243054 35692 3458 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 960\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.19601E3\nmove_type: '1'\nsale_id: 2581\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-420\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.399E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-420 189.186.92.202 bfc651c1-8986-4ac7-aafb-caa7170e7de4 2020-07-17 21:10:08.266641 35693 2582 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 959\namount: !ruby/object:BigDecimal 18:0.519E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.519E3\nstatus: 0\ndate_sale: 2020-07-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1242\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.235 9d0fc9f0-3e29-4dc8-beb8-e4d94a50e9b3 2020-07-17 21:26:15.388578 35694 1877 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.43.235 9d0fc9f0-3e29-4dc8-beb8-e4d94a50e9b3 2020-07-17 21:26:15.417526 35695 2582 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.235 86687d6e-e39a-4386-b3ab-243319dc2699 2020-07-17 21:27:15.07259 35696 3459 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 959\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.519E3\nmove_type: '1'\nsale_id: 2582\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1242\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.519E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1242 187.149.43.235 86687d6e-e39a-4386-b3ab-243319dc2699 2020-07-17 21:27:15.093203 35697 2583 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 959\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-07-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1243\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.235 6f0b4626-81f3-4720-918b-e1ff2a411a20 2020-07-17 21:29:40.275861 35698 1462 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.43.235 6f0b4626-81f3-4720-918b-e1ff2a411a20 2020-07-17 21:29:40.312445 35699 2583 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.235 8ed3676b-d7f5-469d-bdbb-17e8d207422b 2020-07-17 21:29:47.107026 35700 3460 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 959\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2099E4\nmove_type: '1'\nsale_id: 2583\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1243\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1243 187.149.43.235 8ed3676b-d7f5-469d-bdbb-17e8d207422b 2020-07-17 21:29:47.137944 35701 340 Customer \N \N 2 User \N create ---\nnick_name: KATY LOPEZ\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KATY LOPEZ fue registrado. 187.149.43.235 d9f4b34c-54aa-4be2-be48-5e1b29092d4d 2020-07-17 21:30:59.197361 35702 2584 Sale \N \N 2 User \N create ---\ncustomer_id: 340\nuser_id: 2\nopen_cash_register_id: 959\namount: !ruby/object:BigDecimal 18:0.103362E4\ntax: !ruby/object:BigDecimal 18:0.16538E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-07-17\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1244\nexpiration_date: 2020-08-21\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.235 ced70bf5-7677-4982-ba34-937bb463b079 2020-07-17 21:31:08.442231 35704 3461 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 959\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 2584\ncardnumber: 2136\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1244\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1244 187.149.43.235 6e5e2161-11c7-4632-807c-df4fb3d5d5f7 2020-07-17 21:32:04.649495 35705 2584 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.43.235 639454cc-02b3-424e-9fe4-bcaa4c5ea914 2020-07-17 21:32:06.372082 35706 2585 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 960\namount: !ruby/object:BigDecimal 18:0.156021E4\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1698E4\nstatus: 0\ndate_sale: 2020-07-17\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-421\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 d8c9b3ef-e670-4bfa-af5d-44e1ca41aa1f 2020-07-17 21:33:43.424096 35707 980 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.92.202 d8c9b3ef-e670-4bfa-af5d-44e1ca41aa1f 2020-07-17 21:33:43.452412 35708 1777 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.92.202 d8c9b3ef-e670-4bfa-af5d-44e1ca41aa1f 2020-07-17 21:33:43.477404 35709 2585 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 a46e7674-2a6f-4870-bbd9-8af3531448cb 2020-07-17 21:34:11.291963 35710 3462 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 960\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1698E4\nmove_type: '1'\nsale_id: 2585\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-421\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.17E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-421 189.186.92.202 a46e7674-2a6f-4870-bbd9-8af3531448cb 2020-07-17 21:34:11.313166 35711 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-03-20 21:32:08.038524000 Z\n- &1 2020-03-21 23:39:06.692497000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-17 22:29:22.783306503 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147125595\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115499\n mask_addr: 4294967295\nsign_in_count:\n- 176\n- 177\n 354 \N 187.149.43.235 eab0f4ce-6f8d-4d8f-879c-fd5d1058bd48 2020-07-17 22:29:22.790511 35712 1 User \N \N 1 User \N update ---\nunique_session_id:\n- jxz1Rr8vjDh_4C7pbsTW\n- xVzJJdyy7ohE2BsSvxz2\n 355 \N 187.149.43.235 eab0f4ce-6f8d-4d8f-879c-fd5d1058bd48 2020-07-17 22:29:22.810859 35713 341 Customer \N \N 21 User \N create ---\nnick_name: CLAUDIA SOTO\nphone: "(667) 216-1416"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CLAUDIA SOTO fue registrado. 189.186.92.202 307fe606-acee-476d-853f-212a849a5335 2020-07-17 22:29:51.421619 35714 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-03-21 23:39:06.692497000 Z\n- &1 2020-07-17 22:29:22.783306000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-17 22:30:44.189662483 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147117349\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115499\n mask_addr: 4294967295\nsign_in_count:\n- 177\n- 178\n 356 \N 187.149.43.235 be4fc34b-c10d-4caf-bc86-154d52b4883f 2020-07-17 22:30:44.196282 35715 1 User \N \N 1 User \N update ---\nunique_session_id:\n- xVzJJdyy7ohE2BsSvxz2\n- xdcisMmEAZx8wsM-Tr7k\n 357 \N 187.149.43.235 be4fc34b-c10d-4caf-bc86-154d52b4883f 2020-07-17 22:30:44.214072 35716 2586 Sale \N \N 21 User \N create ---\ncustomer_id: 341\nuser_id: 21\nopen_cash_register_id: 960\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-07-17\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-422\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 570e12c6-557b-4d60-af83-984aaab0366b 2020-07-17 22:32:15.641259 35717 1920 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.92.202 570e12c6-557b-4d60-af83-984aaab0366b 2020-07-17 22:32:15.671844 35718 1157 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1157'\n is_parent: false\n sku: CAR-1157\n name: 1BICV20261NUD\n description: 'NEGRA CON GRABADO '\n price_base: '399.0'\n price_sale: '799.0'\n img_product: BABDE221-183B-4204-A2CE-A9A7945810FB.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170818413'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-07-17 19:48:01.330798'\n updated_at: &12 2020-07-17 22:33:08.522468657 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1157'\n sku: CAR-1157\n name: 1BICV20261NUD\n description: 'NEGRA CON GRABADO '\n price_base: '399.00'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-07-17 19:48:01.330798'\n updated_at: '2020-07-17 19:48:01.330798'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170818413'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1157'\n type: *3\n value: 1157\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-1157\n type: *7\n value: CAR-1157\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BICV20261NUD\n type: *8\n value: 1BICV20261NUD\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'NEGRA CON GRABADO '\n type: *6\n value: 'NEGRA CON GRABADO '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.399E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BABDE221-183B-4204-A2CE-A9A7945810FB.jpeg\n type: *2\n value: BABDE221-183B-4204-A2CE-A9A7945810FB.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170818413'\n type: *2\n value: '7509170818413'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-07-17 19:48:01.330798'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BABDE221-183B-4204-A2CE-A9A7945810FB.jpeg\n 2 El producto CAR-1157 fue modificado. 200.68.179.195 331bde04-0e59-45fd-b47d-d10c8b73601e 2020-07-17 22:33:08.562911 35719 2586 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 656bdb64-f621-4eaf-b232-407a21ccf19d 2020-07-17 22:33:22.787607 35720 3463 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 960\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 2586\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-422\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEPOSITO\n 1 movimiento de efectivo por venta con folio PV3-V-422 189.186.92.202 656bdb64-f621-4eaf-b232-407a21ccf19d 2020-07-17 22:33:22.810751 35721 3464 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 960\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2586\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-422\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEPOSITO\n 1 movimiento de efectivo por venta con folio PV3-V-422 189.186.92.202 76005210-efd7-42de-9c6e-e0e905b200da 2020-07-17 22:33:42.827725 35722 1158 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1158'\n is_parent: false\n sku: CAR-1158\n name: 2BICV20315NEG\n description: NEGRA DOBLE CIERRE\n price_base: '499.0'\n price_sale: '999.0'\n img_product: F2B3339D-A255-44B9-B709-356CA5D021F6.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170820003'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-07-17 19:49:28.397593'\n updated_at: &12 2020-07-17 22:34:01.363150058 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1158'\n sku: CAR-1158\n name: 2BICV20315NEG\n description: NEGRA DOBLE CIERRE\n price_base: '499.00'\n price_sale: '999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-07-17 19:49:28.397593'\n updated_at: '2020-07-17 19:49:28.397593'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170820003'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1158'\n type: *3\n value: 1158\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-1158\n type: *7\n value: CAR-1158\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 2BICV20315NEG\n type: *8\n value: 2BICV20315NEG\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: NEGRA DOBLE CIERRE\n type: *6\n value: NEGRA DOBLE CIERRE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.499E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: F2B3339D-A255-44B9-B709-356CA5D021F6.jpeg\n type: *2\n value: F2B3339D-A255-44B9-B709-356CA5D021F6.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170820003'\n type: *2\n value: '7509170820003'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-07-17 19:49:28.397593'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- F2B3339D-A255-44B9-B709-356CA5D021F6.jpeg\n 2 El producto CAR-1158 fue modificado. 200.68.179.195 a46e6b57-9c6d-4244-a2b3-d211aa1ea36d 2020-07-17 22:34:01.404633 35723 3463 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 960\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2586\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-422\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEPOSITO\n 2 \N 189.186.92.202 60db0634-f2cc-40b8-8a5d-e6887b2e4b05 2020-07-17 22:34:10.721534 35724 3464 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 960\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2586\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-422\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEPOSITO\n 2 \N 189.186.92.202 946c0719-3cb7-40db-a167-e0c64d63393b 2020-07-17 22:34:13.143527 35725 3465 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 960\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 2586\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-422\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEPOSITO\n 1 movimiento de efectivo por venta con folio PV3-V-422 189.186.92.202 151c4bd4-743b-4306-b05d-aca496b23cba 2020-07-17 22:34:21.892189 35726 3465 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 960\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2586\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-422\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEPOSITO\n 2 \N 189.186.92.202 296de2a4-b8af-4dbd-8187-9b4f72082fbc 2020-07-17 22:34:26.48805 35727 3466 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 960\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 2586\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-422\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: CLA\ncheck_number: '1231'\ncustomer_account: '1420'\ncustomer_code: DEPOSITO\n 1 movimiento de efectivo por venta con folio PV3-V-422 189.186.92.202 1f3ad726-9b4d-4307-b5f0-0fac7abdd410 2020-07-17 22:34:49.670213 35728 3466 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 960\npayment_method_id: 5\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2586\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-422\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: CLA\ncheck_number: '1231'\ncustomer_account: '1420'\ncustomer_code: DEPOSITO\n 2 \N 189.186.92.202 7e960c4b-ae80-4cca-831c-663186e81428 2020-07-17 22:34:56.466954 35729 2586 Sale \N \N 21 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-422 cancelada. 189.186.92.202 83f03edf-fa50-43a4-8753-a38ba88c946c 2020-07-17 22:35:14.403032 35730 1920 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.92.202 83f03edf-fa50-43a4-8753-a38ba88c946c 2020-07-17 22:35:14.428747 35731 2587 Sale \N \N 21 User \N create ---\ncustomer_id: 341\nuser_id: 21\nopen_cash_register_id: 960\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-07-17\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-423\nexpiration_date: 2020-08-21\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 6d4bea21-940e-49b8-88f0-9413d44cba69 2020-07-17 22:35:55.816426 35732 1920 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.92.202 6d4bea21-940e-49b8-88f0-9413d44cba69 2020-07-17 22:35:55.843154 35733 3467 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 960\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2587\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-423\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-423 189.186.92.202 7aa5f8a5-73a9-43f2-8ec6-8ae8acc6e232 2020-07-17 22:36:52.390193 35734 2587 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.92.202 f19231a0-9384-4e31-b7bc-0bb106edaba3 2020-07-17 22:36:57.253788 35735 2588 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 959\namount: !ruby/object:BigDecimal 18:0.114124E4\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1148E4\nstatus: 0\ndate_sale: 2020-07-17\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1245\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.235 d8f9e390-33cb-460a-ab8d-4e1f3b70a148 2020-07-17 23:32:00.231869 35736 697 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 14 \N 187.149.43.235 d8f9e390-33cb-460a-ab8d-4e1f3b70a148 2020-07-17 23:32:00.284632 35737 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E2\n- !ruby/object:BigDecimal 18:0.49E2\n 12 \N 187.149.43.235 d8f9e390-33cb-460a-ab8d-4e1f3b70a148 2020-07-17 23:32:00.324014 35738 2588 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.235 d140ccb2-f384-43f8-b607-1468c05c4df8 2020-07-17 23:32:27.958879 35739 3468 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 959\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1148E4\nmove_type: '1'\nsale_id: 2588\ncardnumber: 2858\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1245\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1245 187.149.43.235 d140ccb2-f384-43f8-b607-1468c05c4df8 2020-07-17 23:32:27.983246 35740 313 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 959\nquantity: !ruby/object:BigDecimal 18:0.11E4\nstatus: 1\nobservations: ADELANTO ROCIO\nexpense_date: 2020-07-17\nexpense_code: PV1-E-216\n 1 Egreso por 1100.0 registrado 187.149.43.235 da10f2cc-eee7-4849-8bee-5e7cef590a0d 2020-07-17 23:36:26.577112 35741 3469 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 959\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.11E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 313\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.43.235 da10f2cc-eee7-4849-8bee-5e7cef590a0d 2020-07-17 23:36:26.59777 35742 982 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 959\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5554E4\namount_out: !ruby/object:BigDecimal 18:0.1125E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.22E4\ncash_fund: !ruby/object:BigDecimal 18:0.659E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2859E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.43.235 0c701fab-394d-49b5-90fe-cee1aae4aedb 2020-07-17 23:52:22.627773 35743 959 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.43.235 0c701fab-394d-49b5-90fe-cee1aae4aedb 2020-07-17 23:52:22.661468 35744 3470 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 960\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 2564\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1234'\n 1 movimiento de efectivo por venta con folio PV3-V-406 189.186.92.202 dc736be0-b32d-41ac-9582-bf5881e81b77 2020-07-18 00:36:40.383068 35745 2564 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.92.202 4eda78a5-5e98-4652-ab43-0416bdc0e512 2020-07-18 00:36:44.551077 35746 3471 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 960\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.301E3\nmove_type: '1'\nsale_id: 2566\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '123'\n 1 movimiento de efectivo por venta con folio PV3-V-408 189.186.92.202 8c6539e7-41d8-4ebf-af78-db2cc92318a2 2020-07-18 00:37:06.580046 35747 3472 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 960\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 2566\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEPOSITO\n 1 movimiento de efectivo por venta con folio PV3-V-408 189.186.92.202 0bc0ebcd-38f8-4426-a626-e5bbd19ce9e3 2020-07-18 00:39:00.819 35748 314 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 960\nquantity: !ruby/object:BigDecimal 18:0.4E3\nstatus: 1\nobservations: 'APARTADO '\nexpense_date: 2020-07-17\nexpense_code: PV3-E-36\n 1 Egreso por 400.0 registrado 189.186.92.202 5a56c276-dc4a-4c68-95dd-623f4a97d0c9 2020-07-18 00:45:29.130905 35749 134 Purchase \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 5a56c276-dc4a-4c68-95dd-623f4a97d0c9 2020-07-18 00:45:29.149115 35750 3473 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 960\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: 134\nexpense_id: 314\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.92.202 5a56c276-dc4a-4c68-95dd-623f4a97d0c9 2020-07-18 00:45:29.174176 35751 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-16 18:24:35.747364000 Z\n- &1 2020-07-16 23:13:26.572597000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-18 00:46:11.872188706 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945557\n mask_addr: 4294967295\nsign_in_count:\n- 141\n- 142\n 285 \N 200.68.179.85 6a24ee52-a2f9-477f-a3d4-3c6b498dc81b 2020-07-18 00:46:11.880861 35752 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 2cKCnQW5gBKywhzXjEPW\n- "-B-cZFz7zqREh2Zohe7G"\n 286 \N 200.68.179.85 6a24ee52-a2f9-477f-a3d4-3c6b498dc81b 2020-07-18 00:46:11.896313 35753 983 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 960\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.429401E4\namount_out: !ruby/object:BigDecimal 18:0.4E3\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.1125E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3125E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.92.202 51b01d40-6015-4887-916b-25fe6407c812 2020-07-18 00:46:29.732847 35754 960 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.92.202 51b01d40-6015-4887-916b-25fe6407c812 2020-07-18 00:46:29.7475 35755 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-17 19:56:00.534096000 Z\n- &1 2020-07-17 20:09:41.644998000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-18 16:11:08.441348516 Z\nsign_in_count:\n- 586\n- 587\n 1177 \N 187.149.43.235 b5641ad1-02df-4d2f-91d0-a037ef819653 2020-07-18 16:11:08.471116 35756 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xHKz5PhxuofjVhMM6LqF\n- HYWAoZ4atCCkUesoKYxT\n 1178 \N 187.149.43.235 b5641ad1-02df-4d2f-91d0-a037ef819653 2020-07-18 16:11:08.495664 35757 961 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.659E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 659.0 187.149.43.235 85232cc5-a1e5-40eb-b9b2-97ffc750fa14 2020-07-18 16:11:20.744004 35758 107 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.43.235 43eafd0e-1890-4965-a638-f37eb5898a64 2020-07-18 16:12:07.305263 35759 107 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.43.235 c09aa311-9c4d-4ec9-9ef6-5233d27fb406 2020-07-18 16:12:10.890006 35760 605 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 14 \N 187.149.43.235 9d50288c-02f8-4b2f-8ca7-58b0932294e0 2020-07-18 16:12:38.323447 35761 605 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 15 \N 187.149.43.235 d6a19362-15f1-450e-bea1-a400c2f1c078 2020-07-18 16:12:45.60629 35762 1156 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 16 \N 187.149.43.235 5877e2d0-ef3e-4f27-8a4e-06dfa562e608 2020-07-18 16:12:58.067836 35763 1156 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.5E1\n 17 \N 187.149.43.235 ab9a647a-5c2f-4ae3-8fb1-40733b93abe0 2020-07-18 16:13:02.851463 35764 1864 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.43.235 eeb7caaf-c521-436e-b9c1-65e2bca10a98 2020-07-18 16:13:15.732875 35765 1864 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.43.235 956c0242-29c7-483a-bcad-aa617abf6559 2020-07-18 16:13:18.933713 35766 540 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 187.149.43.235 c9aca850-617d-4ba7-8d5d-b21c5e434b16 2020-07-18 16:13:30.236619 35767 540 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 187.149.43.235 9f5465db-f5bd-472a-aa32-3eb1c4dedeb3 2020-07-18 16:13:33.111662 35768 1644 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 6 \N 187.149.43.235 8a92cd9d-2d0e-4a45-a117-15b4282892ed 2020-07-18 16:13:49.537524 35769 1644 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 7 \N 187.149.43.235 752c72e8-7530-4c30-bdb5-4bd1ba37b78d 2020-07-18 16:14:09.007188 35770 784 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 14 \N 187.149.43.235 fbb69cb9-d99f-4bb4-abba-e49743506108 2020-07-18 16:15:02.717009 35771 784 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.4E1\n 15 \N 187.149.43.235 2133414d-fb7c-4906-9f4e-5145c6fa4935 2020-07-18 16:15:13.303928 35772 1689 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.43.235 02bbffbc-0ae1-4389-be42-a9e9869b8deb 2020-07-18 16:15:25.933321 35773 1689 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.43.235 af1f5c7c-4a01-4291-8725-73ec00d22597 2020-07-18 16:15:29.066031 35777 1892 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.43.235 cfeb53ff-d17f-4620-9851-880eb2f87cec 2020-07-18 16:16:06.191311 35778 636 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-18\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.43.235 aa28ccdf-5f64-412b-8b1d-1609b85eccb7 2020-07-18 16:16:07.283465 35779 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-07-17 22:29:22.783306000 Z\n- &1 2020-07-17 22:30:44.189662000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-18 18:09:35.682176510 Z\nsign_in_count:\n- 178\n- 179\n 358 \N 187.149.43.235 14872a84-2ece-4e79-bd4e-88d4ffe5c7f1 2020-07-18 18:09:35.687681 35780 1 User \N \N 1 User \N update ---\nunique_session_id:\n- xdcisMmEAZx8wsM-Tr7k\n- WRaDCmzfiqT4xaAeYPEw\n 359 \N 187.149.43.235 14872a84-2ece-4e79-bd4e-88d4ffe5c7f1 2020-07-18 18:09:35.700248 35781 2589 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 961\namount: !ruby/object:BigDecimal 18:0.60417E3\ntax: !ruby/object:BigDecimal 18:0.4483E2\ndiscount: !ruby/object:BigDecimal 18:0.324E3\ntotal: !ruby/object:BigDecimal 18:0.325E3\nstatus: 0\ndate_sale: 2020-07-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1246\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.235 6511df2f-6c46-4d08-afaa-d182642831d4 2020-07-18 18:29:15.603847 35782 195 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.43.235 6511df2f-6c46-4d08-afaa-d182642831d4 2020-07-18 18:29:15.632296 35783 2589 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.235 f428b3e4-938d-4a0e-befb-2db0d01f9058 2020-07-18 18:29:19.551466 35784 3474 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 961\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.325E3\nmove_type: '1'\nsale_id: 2589\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1246\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.325E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1246 187.149.43.235 f428b3e4-938d-4a0e-befb-2db0d01f9058 2020-07-18 18:29:19.583145 35785 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-16 23:13:26.572597000 Z\n- &1 2020-07-18 00:46:11.872188000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-18 18:53:34.537954749 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945557\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945557\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 142\n- 143\n 287 \N 189.186.92.202 ad727010-438e-4c29-a9df-39ec2a4ceed0 2020-07-18 18:53:34.545597 35786 18 User \N \N 18 User \N update ---\nunique_session_id:\n- "-B-cZFz7zqREh2Zohe7G"\n- hREHTxjXdWs11fqzGaza\n 288 \N 189.186.92.202 ad727010-438e-4c29-a9df-39ec2a4ceed0 2020-07-18 18:53:34.564282 35787 962 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1125E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1125.0 189.186.92.202 f06c9dd5-9098-47a5-bd7c-6daccbd402c3 2020-07-18 18:58:50.92092 35788 3475 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 962\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 2587\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-423 189.186.92.202 4f4f6eb3-ef34-4176-a271-273147ce9958 2020-07-18 18:59:30.263884 35789 2587 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.92.202 96877863-bab6-452d-845a-312e9179f9cd 2020-07-18 18:59:34.642889 35790 3476 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 962\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 2537\ncardnumber: 1522\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-386 189.186.92.202 3a63a11f-1b8f-4dd6-9726-2edec9257fee 2020-07-18 19:12:58.20498 35791 2537 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.92.202 59258ed1-96f9-47ef-bff1-8e2064c01b67 2020-07-18 19:13:06.814212 35792 2590 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 962\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-07-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-424\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 573c50c1-80ed-4f2e-b367-93b248224f9b 2020-07-18 19:18:51.391259 35793 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 23 \N 189.186.92.202 573c50c1-80ed-4f2e-b367-93b248224f9b 2020-07-18 19:18:51.422649 35794 2590 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 3046e6ee-28a1-4a86-b798-858b6c0db639 2020-07-18 19:20:03.104339 35795 3477 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 962\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2590\ncardnumber: 1256\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-424\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-424 189.186.92.202 3046e6ee-28a1-4a86-b798-858b6c0db639 2020-07-18 19:20:03.126179 35796 2591 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 961\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-07-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1247\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.43.235 c3547a6e-a469-4a22-b34b-712574c4bd25 2020-07-18 20:59:36.520577 35797 604 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 187.149.43.235 c3547a6e-a469-4a22-b34b-712574c4bd25 2020-07-18 20:59:36.576829 35798 2591 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.43.235 079cace5-81c6-4bb5-a08b-2b5ba29e6787 2020-07-18 20:59:52.723005 35826 925 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.92.202 256a1ea2-f03b-4451-97be-99c5019c1625 2020-07-18 22:57:09.853643 35854 1905 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.92.202 4fb8b67d-dc23-4a3d-8bef-786a26b0f09e 2020-07-19 00:04:22.016978 35799 3478 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 961\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2591\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1247\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1247 187.149.43.235 079cace5-81c6-4bb5-a08b-2b5ba29e6787 2020-07-18 20:59:52.749322 35800 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-17 18:47:31.319964000 Z\n- &1 2020-07-17 20:04:54.252518000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-18 22:11:09.672825541 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1644\n- 1645\n 3290 \N 189.186.92.202 2e7f38ad-413b-4c3c-90be-5c1b7d334564 2020-07-18 22:11:09.682459 35801 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Bw7UtXxQXRTMyU1yAdEN\n- esvYy82YJL4rajbYZukx\n 3291 \N 189.186.92.202 2e7f38ad-413b-4c3c-90be-5c1b7d334564 2020-07-18 22:11:09.703333 35802 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-07-17 22:30:44.189662000 Z\n- &1 2020-07-18 18:09:35.682176000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-18 22:12:44.313684245 Z\nsign_in_count:\n- 179\n- 180\n 360 \N 187.149.43.235 b4087fa2-12e9-4b80-ac67-3edb0d033297 2020-07-18 22:12:44.320468 35803 1 User \N \N 1 User \N update ---\nunique_session_id:\n- WRaDCmzfiqT4xaAeYPEw\n- t5XDhB1zzczySimEQA2A\n 361 \N 187.149.43.235 b4087fa2-12e9-4b80-ac67-3edb0d033297 2020-07-18 22:12:44.336341 35804 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-18 00:46:11.872188000 Z\n- &1 2020-07-18 18:53:34.537954000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-18 22:22:45.154025244 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945557\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 143\n- 144\n 289 \N 189.186.92.202 4b6e2f3f-6670-4454-8e1d-2c46affc38df 2020-07-18 22:22:45.16083 35805 18 User \N \N 18 User \N update ---\nunique_session_id:\n- hREHTxjXdWs11fqzGaza\n- LxCbPYg2Dypp2DTmY-a5\n 290 \N 189.186.92.202 4b6e2f3f-6670-4454-8e1d-2c46affc38df 2020-07-18 22:22:45.17818 35806 2578 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-419 cancelada. 189.186.92.202 8aa40f2f-5b59-4d48-8588-82cca528ce89 2020-07-18 22:46:19.96715 35807 3479 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 962\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.134899E4\nmove_type: '0'\nsale_id: 2578\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-419\nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.92.202 8aa40f2f-5b59-4d48-8588-82cca528ce89 2020-07-18 22:46:19.994648 35808 939 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.34E2\n- !ruby/object:BigDecimal 18:0.36E2\n 7 \N 189.186.92.202 8aa40f2f-5b59-4d48-8588-82cca528ce89 2020-07-18 22:46:20.033367 35809 829 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.92.202 8aa40f2f-5b59-4d48-8588-82cca528ce89 2020-07-18 22:46:20.05688 35810 636 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-18\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.92.202 907c4cd9-9413-4ff1-9c98-eed9355b8407 2020-07-18 22:56:59.967361 35811 1907 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.92.202 907c4cd9-9413-4ff1-9c98-eed9355b8407 2020-07-18 22:56:59.98988 35812 1528 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 189.186.92.202 907c4cd9-9413-4ff1-9c98-eed9355b8407 2020-07-18 22:57:00.02058 35813 2008 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1021\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 907c4cd9-9413-4ff1-9c98-eed9355b8407 2020-07-18 22:57:00.043478 35814 831 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.92.202 907c4cd9-9413-4ff1-9c98-eed9355b8407 2020-07-18 22:57:00.063121 35815 1794 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.92.202 907c4cd9-9413-4ff1-9c98-eed9355b8407 2020-07-18 22:57:00.083601 35816 1525 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.92.202 907c4cd9-9413-4ff1-9c98-eed9355b8407 2020-07-18 22:57:00.103155 35817 765 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.92.202 907c4cd9-9413-4ff1-9c98-eed9355b8407 2020-07-18 22:57:00.122885 35818 2009 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 800\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 907c4cd9-9413-4ff1-9c98-eed9355b8407 2020-07-18 22:57:00.145328 35819 2010 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 552\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 907c4cd9-9413-4ff1-9c98-eed9355b8407 2020-07-18 22:57:00.167521 35820 2011 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 109\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 907c4cd9-9413-4ff1-9c98-eed9355b8407 2020-07-18 22:57:00.189862 35821 635 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-18\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.92.202 256a1ea2-f03b-4451-97be-99c5019c1625 2020-07-18 22:57:09.76151 35822 923 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.92.202 256a1ea2-f03b-4451-97be-99c5019c1625 2020-07-18 22:57:09.779243 35823 912 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.92.202 256a1ea2-f03b-4451-97be-99c5019c1625 2020-07-18 22:57:09.797898 35824 929 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.92.202 256a1ea2-f03b-4451-97be-99c5019c1625 2020-07-18 22:57:09.818456 35825 927 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.92.202 256a1ea2-f03b-4451-97be-99c5019c1625 2020-07-18 22:57:09.836364 35827 2592 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 962\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2020-07-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-425\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 8ed8e042-dd0d-4ff2-a006-08bbf71a506d 2020-07-18 23:08:00.035652 35828 1980 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.92.202 8ed8e042-dd0d-4ff2-a006-08bbf71a506d 2020-07-18 23:08:00.093607 35829 2592 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 003d284f-6f06-4181-8041-91d406cb2eec 2020-07-18 23:08:21.238623 35830 3480 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 962\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 2592\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-425\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-425 189.186.92.202 003d284f-6f06-4181-8041-91d406cb2eec 2020-07-18 23:08:21.263819 35831 2593 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 962\namount: !ruby/object:BigDecimal 18:0.74383E3\ntax: !ruby/object:BigDecimal 18:0.10317E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.847E3\nstatus: 0\ndate_sale: 2020-07-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-426\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 4b94e081-05b0-4828-be28-88579951ee7a 2020-07-18 23:14:03.323432 35832 949 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.92.202 4b94e081-05b0-4828-be28-88579951ee7a 2020-07-18 23:14:03.351882 35833 1803 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.92.202 4b94e081-05b0-4828-be28-88579951ee7a 2020-07-18 23:14:03.378716 35834 818 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.52E2\n- !ruby/object:BigDecimal 18:0.51E2\n 22 \N 189.186.92.202 4b94e081-05b0-4828-be28-88579951ee7a 2020-07-18 23:14:03.406338 35835 2593 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 ef47b0ed-b556-4ca9-83d7-5798616c5562 2020-07-18 23:14:21.8186 35836 3481 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 962\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.847E3\nmove_type: '1'\nsale_id: 2593\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-426\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1524'\n 1 movimiento de efectivo por venta con folio PV3-V-426 189.186.92.202 ef47b0ed-b556-4ca9-83d7-5798616c5562 2020-07-18 23:14:21.849562 35837 315 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 961\nquantity: !ruby/object:BigDecimal 18:0.34E3\nstatus: 1\nobservations: diferencia de sueldo Rocio\nexpense_date: 2020-07-18\nexpense_code: PV1-E-217\n 1 Egreso por 340.0 registrado 187.149.43.235 92ac25b4-7fbc-46ab-8021-06485f08552f 2020-07-18 23:29:14.262041 35838 3482 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 961\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.34E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 315\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.43.235 92ac25b4-7fbc-46ab-8021-06485f08552f 2020-07-18 23:29:14.298982 35839 955 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.92.202 604ae807-0fb8-4e21-a380-68a4012bcb22 2020-07-18 23:40:54.341513 35840 955 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.92.202 988cb243-df61-4554-b780-a5dcb9da8e0e 2020-07-18 23:40:59.194901 35841 981 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.92.202 1d5a00f5-e059-4042-ad80-f0a81eb90e90 2020-07-18 23:41:40.770267 35842 981 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.92.202 1e6c1fee-7240-4ff3-bea0-02b4dd1dcb1e 2020-07-18 23:41:43.874263 35843 1902 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.92.202 4bb43a60-1b93-422b-b0a1-38ba743630d5 2020-07-18 23:42:40.808551 35844 1902 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.92.202 592f9a45-51c8-47cd-96e2-1adefe3106a3 2020-07-18 23:42:45.030605 35845 984 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 961\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1924E4\namount_out: !ruby/object:BigDecimal 18:0.34E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.743E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2243E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.43.235 2963d8ae-84be-488b-b81b-c130f214c31c 2020-07-18 23:43:33.889129 35846 961 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.43.235 2963d8ae-84be-488b-b81b-c130f214c31c 2020-07-18 23:43:33.908456 35847 1417 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 8 \N 189.186.92.202 f4331252-2532-403d-871a-813bc718e079 2020-07-18 23:43:46.608069 35848 1417 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 189.186.92.202 16c690c0-67b8-4fd0-a334-121615a7d81d 2020-07-18 23:43:49.498531 35849 971 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.92.202 84d9f94b-7c2e-4708-bf7e-8cdc2b1b524f 2020-07-18 23:44:54.086231 35850 971 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.92.202 8a742bdf-f2c6-487a-9d1a-aeb1023be631 2020-07-18 23:44:59.90815 35851 971 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.92.202 3101cf03-e99a-40a4-a990-ead6a2c79369 2020-07-18 23:49:26.500255 35852 1586 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.92.202 0301ec1f-dbc8-4778-8053-6fd9f40e4a90 2020-07-18 23:49:35.843856 35853 1586 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.92.202 067def87-0a38-4bd8-a1c5-bd5acdb7ae82 2020-07-18 23:49:39.884332 35855 1905 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.92.202 cabdb016-5697-45b3-9fc6-6e50f5c15211 2020-07-19 00:04:27.733987 35856 2001 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.92.202 fcf34b92-2af4-4c1a-8567-d490a677e235 2020-07-19 00:06:41.016704 35857 977 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.92.202 8b299017-b693-4401-8abe-e5e93a96da2d 2020-07-19 00:16:51.737692 35858 977 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.92.202 f7a70096-295f-4ba4-a255-0c700889e1fc 2020-07-19 00:16:55.381796 35859 637 Transfer \N \N 18 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-07-18\nuser_id: 18\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.92.202 ac02f5a1-5c57-44af-8c0f-b60895f212e6 2020-07-19 00:16:56.969644 35860 985 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 962\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.5343E4\namount_out: !ruby/object:BigDecimal 18:0.134899E4\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.1023E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3023E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.92.202 08100c88-c794-425d-a8ea-f9561b7f6826 2020-07-19 00:37:23.721902 35861 962 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.92.202 08100c88-c794-425d-a8ea-f9561b7f6826 2020-07-19 00:37:23.737334 35862 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-17 20:04:54.252518000 Z\n- &1 2020-07-18 22:11:09.672825000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-19 02:40:11.882315692 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539719\n mask_addr: 4294967295\nsign_in_count:\n- 1645\n- 1646\n 3292 \N 177.228.118.71 ccc295f3-92f5-486a-8969-d2a3e5c408d2 2020-07-19 02:40:11.892846 35863 4 User \N \N 4 User \N update ---\nunique_session_id:\n- esvYy82YJL4rajbYZukx\n- LMHwW-RbSyTjDcS5h36Q\n 3293 \N 177.228.118.71 ccc295f3-92f5-486a-8969-d2a3e5c408d2 2020-07-19 02:40:11.933233 35864 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-18 22:11:09.672825000 Z\n- &1 2020-07-19 02:40:11.882315000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-20 02:32:53.014375856 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539719\n mask_addr: 4294967295\nsign_in_count:\n- 1646\n- 1647\n 3294 \N 177.228.118.71 cb694df7-f4fa-4c4a-ba95-e489224b1bfe 2020-07-20 02:32:53.046159 35865 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LMHwW-RbSyTjDcS5h36Q\n- TDgRs_2yNpC_1y2iVWGc\n 3295 \N 177.228.118.71 cb694df7-f4fa-4c4a-ba95-e489224b1bfe 2020-07-20 02:32:53.075934 35866 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-17 20:09:41.644998000 Z\n- &1 2020-07-18 16:11:08.441348000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-20 16:22:54.803782174 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115499\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120915\n mask_addr: 4294967295\nsign_in_count:\n- 587\n- 588\n 1179 \N 187.149.65.19 fe981bb7-f240-4585-a57f-ed564e51bf05 2020-07-20 16:22:54.832686 35867 2 User \N \N 2 User \N update ---\nunique_session_id:\n- HYWAoZ4atCCkUesoKYxT\n- bsHxSsW-15uNmMgsAv8U\n 1180 \N 187.149.65.19 fe981bb7-f240-4585-a57f-ed564e51bf05 2020-07-20 16:22:54.856684 35868 963 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.743E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 743.0 187.149.65.19 af984e1d-29e8-4c0d-beed-59ef4e9dc640 2020-07-20 16:24:24.302597 35869 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.65.19 23fba5b9-893a-4d2c-b7c2-b85898270a1a 2020-07-20 16:59:05.855115 35870 1883 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.65.19 37f7fec5-f2a5-460e-98cf-ec00c1663efc 2020-07-20 17:01:27.82378 35871 1883 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.65.19 78fa60cc-96c6-4ce2-a28d-c3bf88206048 2020-07-20 17:01:30.754297 35872 638 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-20\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.65.19 868a2272-c06e-4839-b7d9-92d4b2f910dd 2020-07-20 17:01:33.934658 35873 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-07-11 20:15:37.785226000 Z\n- &1 2020-07-17 21:07:37.875547000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-20 19:04:34.666847959 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 237\n- 238\n 477 \N 189.186.92.202 04cce759-d062-44ea-ade5-320358c643e4 2020-07-20 19:04:34.6742 35874 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 1d1GBR-qz9SHTQpyUz59\n- fDd67p5mE6YFyKyAR4uX\n 478 \N 189.186.92.202 04cce759-d062-44ea-ade5-320358c643e4 2020-07-20 19:04:34.691039 35875 964 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1023E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1023.0 189.186.92.202 2080c55f-ba89-4a59-915b-e2b08c87f9e4 2020-07-20 19:09:38.838924 35876 2594 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 964\namount: !ruby/object:BigDecimal 18:0.7439E3\ntax: !ruby/object:BigDecimal 18:0.551E2\ndiscount: !ruby/object:BigDecimal 18:0.3995E3\ntotal: !ruby/object:BigDecimal 18:0.3995E3\nstatus: 0\ndate_sale: 2020-07-20\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-427\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 60f2caf8-64cb-4618-8bbd-8b77229349ce 2020-07-20 19:11:16.706281 35877 925 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.92.202 60f2caf8-64cb-4618-8bbd-8b77229349ce 2020-07-20 19:11:16.741333 35878 2594 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 b250cb4e-ec86-48b2-8ca8-1f21a4c9d00b 2020-07-20 19:11:27.219656 35905 2596 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 964\namount: !ruby/object:BigDecimal 18:0.105E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.105E3\nstatus: 0\ndate_sale: 2020-07-20\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-429\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 73e6a2a4-2c53-4670-8817-a4f943349756 2020-07-20 21:26:19.057246 35879 3483 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 964\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3995E3\nmove_type: '1'\nsale_id: 2594\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-427\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1005E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-427 189.186.92.202 b250cb4e-ec86-48b2-8ca8-1f21a4c9d00b 2020-07-20 19:11:27.243983 35880 637 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-20\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.65.19 20be47d6-44a8-4d3d-839b-4db9b58400b2 2020-07-20 20:01:05.024621 35881 698 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.65.19 20be47d6-44a8-4d3d-839b-4db9b58400b2 2020-07-20 20:01:05.105219 35882 2012 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1152\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.65.19 20be47d6-44a8-4d3d-839b-4db9b58400b2 2020-07-20 20:01:05.130456 35883 1632 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.65.19 20be47d6-44a8-4d3d-839b-4db9b58400b2 2020-07-20 20:01:05.150965 35884 525 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 187.149.65.19 20be47d6-44a8-4d3d-839b-4db9b58400b2 2020-07-20 20:01:05.181532 35885 1283 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.65.19 20be47d6-44a8-4d3d-839b-4db9b58400b2 2020-07-20 20:01:05.224627 35886 1636 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.65.19 20be47d6-44a8-4d3d-839b-4db9b58400b2 2020-07-20 20:01:05.24994 35887 245 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.65.19 20be47d6-44a8-4d3d-839b-4db9b58400b2 2020-07-20 20:01:05.27834 35888 2013 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 528\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.65.19 20be47d6-44a8-4d3d-839b-4db9b58400b2 2020-07-20 20:01:05.310724 35889 637 Transfer \N \N 2 User \N update --- {}\n 3 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.65.19 a7f18e75-615c-4560-a42e-427f54c1b21e 2020-07-20 20:01:05.383244 35890 698 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 187.149.65.19 a7f18e75-615c-4560-a42e-427f54c1b21e 2020-07-20 20:01:05.405689 35891 2012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.65.19 a7f18e75-615c-4560-a42e-427f54c1b21e 2020-07-20 20:01:05.432109 35892 1632 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 187.149.65.19 a7f18e75-615c-4560-a42e-427f54c1b21e 2020-07-20 20:01:05.455203 35893 525 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.8E1\n 10 \N 187.149.65.19 a7f18e75-615c-4560-a42e-427f54c1b21e 2020-07-20 20:01:05.479199 35894 1283 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 187.149.65.19 a7f18e75-615c-4560-a42e-427f54c1b21e 2020-07-20 20:01:05.503837 35895 1636 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 187.149.65.19 a7f18e75-615c-4560-a42e-427f54c1b21e 2020-07-20 20:01:05.543065 35896 245 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 187.149.65.19 a7f18e75-615c-4560-a42e-427f54c1b21e 2020-07-20 20:01:05.579052 35897 2013 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.65.19 a7f18e75-615c-4560-a42e-427f54c1b21e 2020-07-20 20:01:05.60347 35898 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-19 02:40:11.882315000 Z\n- &1 2020-07-20 02:32:53.014375000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-20 20:06:31.136705830 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539719\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1647\n- 1648\n 3296 \N 177.228.119.167 14fc6ba9-b695-4651-9d20-f38d547cc2f7 2020-07-20 20:06:31.143593 35899 4 User \N \N 4 User \N update ---\nunique_session_id:\n- TDgRs_2yNpC_1y2iVWGc\n- 4rJEwdeT4TRzfBqTKKJ4\n 3297 \N 177.228.119.167 14fc6ba9-b695-4651-9d20-f38d547cc2f7 2020-07-20 20:06:31.160473 35900 2595 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 964\namount: !ruby/object:BigDecimal 18:0.74383E3\ntax: !ruby/object:BigDecimal 18:0.5517E2\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.4E3\nstatus: 0\ndate_sale: 2020-07-20\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-428\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 0505f093-f81a-4ed2-aa3e-a78a1c9529a2 2020-07-20 20:16:56.593802 35901 927 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.92.202 0505f093-f81a-4ed2-aa3e-a78a1c9529a2 2020-07-20 20:16:56.622969 35902 2595 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 aa895f9a-da47-479d-b36e-d2665401d5a4 2020-07-20 20:17:09.831932 35903 3484 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 964\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 2595\ncardnumber: 2806\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-428\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-428 189.186.92.202 aa895f9a-da47-479d-b36e-d2665401d5a4 2020-07-20 20:17:09.854801 35904 3485 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 964\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2535\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-384 189.186.92.202 cee273bb-a107-4bb0-ac1c-a766cae4fc58 2020-07-20 20:41:12.30718 35906 1769 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.92.202 73e6a2a4-2c53-4670-8817-a4f943349756 2020-07-20 21:26:19.095171 35907 2596 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 236defa2-5db7-4064-baed-cc9c88131415 2020-07-20 21:26:25.49486 35908 3486 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 964\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.105E3\nmove_type: '1'\nsale_id: 2596\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-429\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.395E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-429 189.186.92.202 236defa2-5db7-4064-baed-cc9c88131415 2020-07-20 21:26:25.516377 35909 2597 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 963\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2020-07-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1248\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.65.19 f28e6277-3315-4819-b841-f74b4ad3756b 2020-07-20 22:15:13.097697 35910 1870 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.65.19 f28e6277-3315-4819-b841-f74b4ad3756b 2020-07-20 22:15:13.135352 35911 2597 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.65.19 0a55a4b0-c997-4445-b423-3ef88d6c77ea 2020-07-20 22:15:19.802699 35912 3487 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 963\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.729E3\nmove_type: '1'\nsale_id: 2597\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1248\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.729E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1248 187.149.65.19 0a55a4b0-c997-4445-b423-3ef88d6c77ea 2020-07-20 22:15:19.834785 35913 3488 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 964\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2525\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-378 189.186.92.202 e8993a19-f66c-4a97-af32-f803ea789960 2020-07-20 22:58:20.829369 35914 2598 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 963\namount: !ruby/object:BigDecimal 18:0.218E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.218E3\nstatus: 0\ndate_sale: 2020-07-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1249\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.65.19 de18a486-5e73-41d9-90bd-a3b760a37404 2020-07-20 23:47:46.056146 35915 1762 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.65.19 de18a486-5e73-41d9-90bd-a3b760a37404 2020-07-20 23:47:46.10136 35916 1290 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.65.19 de18a486-5e73-41d9-90bd-a3b760a37404 2020-07-20 23:47:46.136114 35917 2598 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.65.19 943a2f0f-be01-43cb-895e-e2536132185e 2020-07-20 23:47:52.713431 35918 3489 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 963\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.218E3\nmove_type: '1'\nsale_id: 2598\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1249\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.218E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1249 187.149.65.19 943a2f0f-be01-43cb-895e-e2536132185e 2020-07-20 23:47:52.735296 35919 986 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 963\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.947E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.69E3\nphysical_cash: !ruby/object:BigDecimal 18:0.169E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.65.19 cfcab062-a755-4bcc-be8b-35ca7318a048 2020-07-20 23:53:20.779448 35920 963 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.65.19 cfcab062-a755-4bcc-be8b-35ca7318a048 2020-07-20 23:53:20.795908 35921 987 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 964\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.16045E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.1028E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2228E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.92.202 dbeeb9af-13b5-4688-ad7d-f1aeff2734e4 2020-07-21 00:36:49.509044 35922 964 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.92.202 dbeeb9af-13b5-4688-ad7d-f1aeff2734e4 2020-07-21 00:36:49.528992 35923 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-20 02:32:53.014375000 Z\n- &1 2020-07-20 20:06:31.136705000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-21 00:38:11.440920761 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539719\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1648\n- 1649\n 3298 \N 177.228.119.167 73f608b0-e858-4c85-8a55-f56fbf3b4184 2020-07-21 00:38:11.448662 35924 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4rJEwdeT4TRzfBqTKKJ4\n- "-GMmzf4-TPfzjNqGtLL2"\n 3299 \N 177.228.119.167 73f608b0-e858-4c85-8a55-f56fbf3b4184 2020-07-21 00:38:11.465597 35925 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-20 20:06:31.136705000 Z\n- &1 2020-07-21 00:38:11.440920000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-21 18:58:26.957983121 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1649\n- 1650\n 3300 \N 189.186.92.202 c01b566e-57c5-4c5f-a2b7-2f7f2659e51b 2020-07-21 18:58:26.992066 35926 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-GMmzf4-TPfzjNqGtLL2"\n- ASE6i2ptwxPKjpzpyB5G\n 3301 \N 189.186.92.202 c01b566e-57c5-4c5f-a2b7-2f7f2659e51b 2020-07-21 18:58:27.022801 35927 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-18 18:53:34.537954000 Z\n- &1 2020-07-18 22:22:45.154025000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-21 21:13:02.766159729 Z\nsign_in_count:\n- 144\n- 145\n 291 \N 189.186.92.202 d7276979-a5d3-4688-8683-ae5a4366ede9 2020-07-21 21:13:02.772087 35928 18 User \N \N 18 User \N update ---\nunique_session_id:\n- LxCbPYg2Dypp2DTmY-a5\n- dBgWKdTrY9jhJR_E_TB7\n 292 \N 189.186.92.202 d7276979-a5d3-4688-8683-ae5a4366ede9 2020-07-21 21:13:02.788521 35929 965 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1028E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1028.0 189.186.92.202 da14aeab-e62d-4eb3-bb16-90c4b95ffde2 2020-07-21 21:13:18.857923 35930 2599 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 965\namount: !ruby/object:BigDecimal 18:0.179E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.179E3\nstatus: 0\ndate_sale: 2020-07-21\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-430\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 ac0c9294-cdec-45de-b42e-3bf9347eb77c 2020-07-21 21:13:33.056597 35931 1723 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.92.202 ac0c9294-cdec-45de-b42e-3bf9347eb77c 2020-07-21 21:13:33.092605 35932 2599 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 78f50e71-7104-4f1e-a964-3dbbc57b92c5 2020-07-21 21:14:05.620011 35933 3490 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 965\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.179E3\nmove_type: '1'\nsale_id: 2599\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-430\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.179E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-430 189.186.92.202 78f50e71-7104-4f1e-a964-3dbbc57b92c5 2020-07-21 21:14:05.645426 35934 638 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-21\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.92.202 ccab4b7c-41f2-407b-b141-2f6f4e5b9c1c 2020-07-21 22:26:46.0927 35935 956 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.92.202 ccab4b7c-41f2-407b-b141-2f6f4e5b9c1c 2020-07-21 22:26:46.11285 35936 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.12E2\n 24 \N 189.186.92.202 ccab4b7c-41f2-407b-b141-2f6f4e5b9c1c 2020-07-21 22:26:46.133621 35937 2600 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 965\namount: !ruby/object:BigDecimal 18:0.579E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.579E3\nstatus: 0\ndate_sale: 2020-07-21\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-431\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 7f81aa68-92fb-4041-9182-2dae666faf34 2020-07-21 22:27:35.539399 35938 1225 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.92.202 7f81aa68-92fb-4041-9182-2dae666faf34 2020-07-21 22:27:35.573289 35939 2600 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 af13a79b-942c-44f4-bd82-30674283fed3 2020-07-21 22:27:51.66641 35940 3491 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 965\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.579E3\nmove_type: '1'\nsale_id: 2600\ncardnumber: 1256\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-431\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-431 189.186.92.202 af13a79b-942c-44f4-bd82-30674283fed3 2020-07-21 22:27:51.690399 35941 342 Customer \N \N 18 User \N create ---\nnick_name: YOLANDA CORRAL\nphone: "(667) 204-9599"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente YOLANDA CORRAL fue registrado. 189.186.92.202 7f71cea2-0f49-4a90-b662-c38b6df9a766 2020-07-21 22:29:12.037863 35942 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-18 16:11:08.441348000 Z\n- &1 2020-07-20 16:22:54.803782000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-21 22:31:57.542897414 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115499\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120915\n mask_addr: 4294967295\nsign_in_count:\n- 588\n- 589\n 1181 \N 187.149.65.19 55be2546-61b3-4f85-ba35-90f6541f0160 2020-07-21 22:31:57.550442 35943 2 User \N \N 2 User \N update ---\nunique_session_id:\n- bsHxSsW-15uNmMgsAv8U\n- z_bjTwzQ4NLox88zzsaa\n 1182 \N 187.149.65.19 55be2546-61b3-4f85-ba35-90f6541f0160 2020-07-21 22:31:57.571433 35944 150 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 12 \N 187.149.65.19 b46e853c-eecd-4628-a04c-0855985d7cd6 2020-07-21 22:32:34.65901 35945 150 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.1E1\n 13 \N 187.149.65.19 08b30849-9912-4496-99ca-8115b4577458 2020-07-21 22:32:37.844635 35946 639 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-21\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.65.19 a616d407-c9b1-4ebd-865b-530015a0263a 2020-07-21 22:32:38.791653 35947 639 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-21\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.92.202 a783238e-1e97-4481-9f49-1bc8a87524dc 2020-07-21 22:32:51.81253 35948 983 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.92.202 a783238e-1e97-4481-9f49-1bc8a87524dc 2020-07-21 22:32:51.830187 35949 2601 Sale \N \N 18 User \N create ---\ncustomer_id: 342\nuser_id: 18\nopen_cash_register_id: 965\namount: !ruby/object:BigDecimal 18:0.57672E3\ntax: !ruby/object:BigDecimal 18:0.9228E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2020-07-21\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-432\nexpiration_date: 2020-08-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 f4714e10-3c11-46e9-bc28-983fa207f5f9 2020-07-21 22:33:51.633226 35950 983 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.92.202 f4714e10-3c11-46e9-bc28-983fa207f5f9 2020-07-21 22:33:51.664288 35951 3492 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 965\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 2601\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-432\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-432 189.186.92.202 f9873232-cf47-4416-8a86-3d34f4ea38ba 2020-07-21 22:34:04.967827 35952 2601 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.92.202 4d5f7722-c267-4489-8524-70ec9a2dace0 2020-07-21 22:34:07.058871 35953 1306 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.65.19 5d4c8367-5b18-4c5c-8d72-9bc0e50f0911 2020-07-21 22:38:16.592725 36067 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ZGJwDpNNKZ4o8oNxpxK6\n- VKBHB37-BWuZidMFFimt\n 300 \N 189.186.92.202 e1043c57-cd08-40ac-a6c1-1ccffbc283b6 2020-07-23 20:01:46.964421 35954 640 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-21\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.65.19 57b19711-baea-48c2-b6df-ea1e8d542c29 2020-07-21 22:38:26.2218 35955 640 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-21\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.92.202 42533864-acac-41b1-887c-8e90e324949b 2020-07-21 22:38:43.380166 35956 2014 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 934\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 42533864-acac-41b1-887c-8e90e324949b 2020-07-21 22:38:43.403713 35957 2602 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 965\namount: !ruby/object:BigDecimal 18:0.238E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.238E3\nstatus: 0\ndate_sale: 2020-07-21\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-433\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 50f75953-001f-4e80-9e69-5a140cbf9c7e 2020-07-21 22:39:16.127261 35958 2014 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.92.202 50f75953-001f-4e80-9e69-5a140cbf9c7e 2020-07-21 22:39:16.167083 35959 1768 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.92.202 50f75953-001f-4e80-9e69-5a140cbf9c7e 2020-07-21 22:39:16.198205 35960 2602 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 656951df-2ec2-4e34-88f9-53107590bc07 2020-07-21 22:39:20.201211 35961 3493 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 965\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.238E3\nmove_type: '1'\nsale_id: 2602\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-433\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.12E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-433 189.186.92.202 656951df-2ec2-4e34-88f9-53107590bc07 2020-07-21 22:39:20.222 35962 2603 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 965\namount: !ruby/object:BigDecimal 18:0.2606E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2606E4\nstatus: 0\ndate_sale: 2020-07-21\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-434\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 7e67578b-e5f5-42f8-96db-b68eab5c39a8 2020-07-21 23:30:34.280612 35963 1920 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.92.202 7e67578b-e5f5-42f8-96db-b68eab5c39a8 2020-07-21 23:30:34.324897 35964 1919 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.92.202 7e67578b-e5f5-42f8-96db-b68eab5c39a8 2020-07-21 23:30:34.364839 35965 1801 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.92.202 7e67578b-e5f5-42f8-96db-b68eab5c39a8 2020-07-21 23:30:34.394277 35966 1169 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.92.202 7e67578b-e5f5-42f8-96db-b68eab5c39a8 2020-07-21 23:30:34.422109 35967 2603 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 0c58d15d-679e-47f2-87cf-73c17bd05296 2020-07-21 23:30:45.799697 35968 3494 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 965\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2606E4\nmove_type: '1'\nsale_id: 2603\ncardnumber: 4155\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-434\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-434 189.186.92.202 0c58d15d-679e-47f2-87cf-73c17bd05296 2020-07-21 23:30:45.827946 35969 343 Customer \N \N 18 User \N create ---\nnick_name: CLAUDIA JESSY BANORTE\nphone: "(667) 188-9548"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.5E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CLAUDIA JESSY BANORTE fue registrado. 189.186.92.202 bfa44124-dcf6-44c7-94b1-4d72e921d316 2020-07-21 23:34:43.187784 35970 2604 Sale \N \N 18 User \N create ---\ncustomer_id: 343\nuser_id: 18\nopen_cash_register_id: 965\namount: !ruby/object:BigDecimal 18:0.2998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2998E4\nstatus: 0\ndate_sale: 2020-07-21\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-435\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 b0f77e7a-a62e-41a8-9bb4-af63387577e6 2020-07-21 23:35:00.132521 35971 1968 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.92.202 b0f77e7a-a62e-41a8-9bb4-af63387577e6 2020-07-21 23:35:00.162271 35972 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 38 \N 189.186.92.202 b0f77e7a-a62e-41a8-9bb4-af63387577e6 2020-07-21 23:35:00.18772 35973 3495 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 2472\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.92.202 70b32fa8-8f8f-414e-b53f-d1e43e6dc7ee 2020-07-21 23:37:01.427005 35974 3495 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 933\n- 965\n 2 movimiento de efectivo por venta con folio PV1-V-1203 189.186.92.202 70b32fa8-8f8f-414e-b53f-d1e43e6dc7ee 2020-07-21 23:37:01.452281 35975 3496 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2480\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4225'\n 1 \N 189.186.92.202 ba87c4e8-345d-49fe-87d6-de8dda77470b 2020-07-21 23:38:51.554372 35976 2480 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.92.202 ba87c4e8-345d-49fe-87d6-de8dda77470b 2020-07-21 23:38:51.579883 35977 3496 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 931\n- 965\n 2 movimiento de efectivo por venta con folio PV3-V-352 189.186.92.202 ba87c4e8-345d-49fe-87d6-de8dda77470b 2020-07-21 23:38:51.593371 35978 3497 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 2463\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1552'\n 1 \N 189.186.92.202 2a81f7f8-b99d-4ee1-b984-3280a0d448fc 2020-07-21 23:55:18.323746 35979 3497 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 933\n- 965\n 2 movimiento de efectivo por venta con folio PV1-V-1196 189.186.92.202 2a81f7f8-b99d-4ee1-b984-3280a0d448fc 2020-07-21 23:55:18.352414 35980 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-20 16:22:54.803782000 Z\n- &1 2020-07-21 22:31:57.542897000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-21 23:56:46.372337441 Z\nsign_in_count:\n- 589\n- 590\n 1183 \N 187.149.65.19 8a9af924-88f4-4c4f-8da3-56bcb2c08807 2020-07-21 23:56:46.379799 35981 2 User \N \N 2 User \N update ---\nunique_session_id:\n- z_bjTwzQ4NLox88zzsaa\n- LoWY_Mqb8DizufGZALr-\n 1184 \N 187.149.65.19 8a9af924-88f4-4c4f-8da3-56bcb2c08807 2020-07-21 23:56:46.398031 35982 3498 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 883\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.575E4\nmove_type: '1'\nsale_id: 2311\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1256'\n 1 \N 189.186.92.202 272b602d-d7d6-4d44-981b-54636a1aac7d 2020-07-21 23:58:11.496162 35983 2311 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.92.202 272b602d-d7d6-4d44-981b-54636a1aac7d 2020-07-21 23:58:11.531027 35984 2316 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 272b602d-d7d6-4d44-981b-54636a1aac7d 2020-07-21 23:58:11.561242 35985 2458 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 272b602d-d7d6-4d44-981b-54636a1aac7d 2020-07-21 23:58:11.590432 35986 2468 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 272b602d-d7d6-4d44-981b-54636a1aac7d 2020-07-21 23:58:11.631079 35987 2469 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 272b602d-d7d6-4d44-981b-54636a1aac7d 2020-07-21 23:58:11.664524 35988 2488 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.92.202 272b602d-d7d6-4d44-981b-54636a1aac7d 2020-07-21 23:58:11.690726 35989 3498 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 883\n- 965\n 2 movimiento de efectivo por venta con folio PV3-V-291 189.186.92.202 272b602d-d7d6-4d44-981b-54636a1aac7d 2020-07-21 23:58:11.705674 35990 988 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 965\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.11352E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.6E3\ncash_fund: !ruby/object:BigDecimal 18:0.945E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1545E4\nobservations: 'abono paola fu transferencia '\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.92.202 3a78fd38-2d67-46ff-b4be-b5e22d9de004 2020-07-22 00:32:43.992995 35991 965 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.92.202 3a78fd38-2d67-46ff-b4be-b5e22d9de004 2020-07-22 00:32:44.010297 35992 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-21 00:38:11.440920000 Z\n- &1 2020-07-21 18:58:26.957983000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-22 01:32:01.023099975 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938507\n mask_addr: 4294967295\nsign_in_count:\n- 1650\n- 1651\n 3302 \N 200.68.151.203 6e10c0e6-511a-43a1-ad3f-0dc36d6b89a5 2020-07-22 01:32:01.030337 35993 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ASE6i2ptwxPKjpzpyB5G\n- 2c6y-hEMKcjKJwTcun1_\n 3303 \N 200.68.151.203 6e10c0e6-511a-43a1-ad3f-0dc36d6b89a5 2020-07-22 01:32:01.050649 35994 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-21 22:31:57.542897000 Z\n- &1 2020-07-21 23:56:46.372337000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-22 04:11:21.371903559 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120915\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933980\n mask_addr: 4294967295\nsign_in_count:\n- 590\n- 591\n 1185 \N 200.68.134.28 b94d2c18-897f-43bc-86c2-5a994298f297 2020-07-22 04:11:21.405195 35995 2 User \N \N 2 User \N update ---\nunique_session_id:\n- LoWY_Mqb8DizufGZALr-\n- LTbF1hbUsM2cxyGU1VcZ\n 1186 \N 200.68.134.28 b94d2c18-897f-43bc-86c2-5a994298f297 2020-07-22 04:11:21.439605 35996 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-21 18:58:26.957983000 Z\n- &1 2020-07-22 01:32:01.023099000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-22 04:27:38.911349588 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938507\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1651\n- 1652\n 3304 \N 177.228.119.167 87670e68-3345-446e-a9dc-7f0c2519a973 2020-07-22 04:27:38.919319 35997 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2c6y-hEMKcjKJwTcun1_\n- sm8zdH3V1C_6TMVWxPbG\n 3305 \N 177.228.119.167 87670e68-3345-446e-a9dc-7f0c2519a973 2020-07-22 04:27:38.939557 35998 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-21 23:56:46.372337000 Z\n- &1 2020-07-22 04:11:21.371903000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-22 07:42:54.497394176 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120915\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933980\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933980\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729487\n mask_addr: 4294967295\nsign_in_count:\n- 591\n- 592\n 1187 \N 201.175.157.79 06ea33d6-5d60-4729-ab74-284843a09b0e 2020-07-22 07:42:54.52954 35999 2 User \N \N 2 User \N update ---\nunique_session_id:\n- LTbF1hbUsM2cxyGU1VcZ\n- T1fD74dEbxzyzY_zh74_\n 1188 \N 201.175.157.79 06ea33d6-5d60-4729-ab74-284843a09b0e 2020-07-22 07:42:54.558797 36000 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-22 04:11:21.371903000 Z\n- &1 2020-07-22 07:42:54.497394000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-22 07:52:41.771186762 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933980\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729487\n mask_addr: 4294967295\nsign_in_count:\n- 592\n- 593\n 1189 \N 201.175.157.79 ce6c0be6-2258-4363-ab6a-1bba948527ba 2020-07-22 07:52:41.77755 36001 2 User \N \N 2 User \N update ---\nunique_session_id:\n- T1fD74dEbxzyzY_zh74_\n- yKuPNRos69X4X8TvSTga\n 1190 \N 201.175.157.79 ce6c0be6-2258-4363-ab6a-1bba948527ba 2020-07-22 07:52:41.799638 36068 641 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-23\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.92.202 e491e216-8fe4-4791-9813-dd400b22913e 2020-07-23 20:02:46.350458 36002 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-22 01:32:01.023099000 Z\n- &1 2020-07-22 04:27:38.911349000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-22 15:29:25.095991640 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938507\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1652\n- 1653\n 3306 \N 177.228.119.167 4c672271-3a8c-42ac-aec5-d37fe4edaa5f 2020-07-22 15:29:25.127549 36003 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sm8zdH3V1C_6TMVWxPbG\n- UjUdZf2gENL9weC-FMfa\n 3307 \N 177.228.119.167 4c672271-3a8c-42ac-aec5-d37fe4edaa5f 2020-07-22 15:29:25.158235 36004 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-07-18 18:09:35.682176000 Z\n- &1 2020-07-18 22:12:44.313684000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-22 18:19:08.536983475 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115499\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120915\n mask_addr: 4294967295\nsign_in_count:\n- 180\n- 181\n 362 \N 187.149.65.19 c36da6f8-661f-4547-a1f5-37baa9ffa0bd 2020-07-22 18:19:08.565386 36005 1 User \N \N 1 User \N update ---\nunique_session_id:\n- t5XDhB1zzczySimEQA2A\n- aKysvdh_y9Ck4BMaEpAy\n 363 \N 187.149.65.19 c36da6f8-661f-4547-a1f5-37baa9ffa0bd 2020-07-22 18:19:08.58855 36006 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-07-18 22:12:44.313684000 Z\n- &1 2020-07-22 18:19:08.536983000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-22 19:01:21.568633450 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115499\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120915\n mask_addr: 4294967295\nsign_in_count:\n- 181\n- 182\n 364 \N 187.149.65.19 26950714-c982-4027-ad21-0623c2cb1c01 2020-07-22 19:01:21.577192 36007 1 User \N \N 1 User \N update ---\nunique_session_id:\n- aKysvdh_y9Ck4BMaEpAy\n- G8KZzwAU799N2jzx8Bsz\n 365 \N 187.149.65.19 26950714-c982-4027-ad21-0623c2cb1c01 2020-07-22 19:01:21.592067 36008 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-22 04:27:38.911349000 Z\n- &1 2020-07-22 15:29:25.095991000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-22 19:17:44.552770655 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1653\n- 1654\n 3308 \N 189.186.92.202 18ee7bb9-6c22-4699-a088-3f2986b01b1d 2020-07-22 19:17:44.559274 36009 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UjUdZf2gENL9weC-FMfa\n- LRXee8XXKeh7J5jcTZmT\n 3309 \N 189.186.92.202 18ee7bb9-6c22-4699-a088-3f2986b01b1d 2020-07-22 19:17:44.576762 36010 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-18 22:22:45.154025000 Z\n- &1 2020-07-21 21:13:02.766159000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-22 21:28:30.400574289 Z\nsign_in_count:\n- 145\n- 146\n 293 \N 189.186.92.202 98b17759-4dfe-4c9e-b900-651208808114 2020-07-22 21:28:30.406057 36011 18 User \N \N 18 User \N update ---\nunique_session_id:\n- dBgWKdTrY9jhJR_E_TB7\n- dZ-T1xV3dUtdPx4yWNGb\n 294 \N 189.186.92.202 98b17759-4dfe-4c9e-b900-651208808114 2020-07-22 21:28:30.418999 36012 966 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.945E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 945.0 189.186.92.202 0ee200ca-f1ba-4a87-bce6-3ece8f531534 2020-07-22 21:28:40.463127 36013 2605 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 966\namount: !ruby/object:BigDecimal 18:0.1638E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1638E4\nstatus: 0\ndate_sale: 2020-07-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-436\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 ff0416ae-74db-4661-8ad5-c33d586091cb 2020-07-22 21:29:50.265561 36014 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 25 \N 189.186.92.202 ff0416ae-74db-4661-8ad5-c33d586091cb 2020-07-22 21:29:50.295432 36015 1748 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.92.202 ff0416ae-74db-4661-8ad5-c33d586091cb 2020-07-22 21:29:50.328264 36016 2605 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 c62f1244-96f9-444a-bcff-7a11889904db 2020-07-22 21:29:58.481637 36017 3499 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 966\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1638E4\nmove_type: '1'\nsale_id: 2605\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-436\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1638E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-436 189.186.92.202 c62f1244-96f9-444a-bcff-7a11889904db 2020-07-22 21:29:58.504753 36018 3499 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 966\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1638E4\nmove_type: '1'\nsale_id: 2605\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-436\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1638E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.92.202 88e18227-0fac-4d96-ae10-2524a5bdff0e 2020-07-22 21:30:03.16858 36019 3500 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 966\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1638E4\nmove_type: '1'\nsale_id: 2605\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-436\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.17E4\nchange: !ruby/object:BigDecimal 18:0.62E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-436 189.186.92.202 ecad06ab-78f9-405e-8dbe-1bfa1ae9c9cd 2020-07-22 21:30:09.387124 36020 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-22 15:29:25.095991000 Z\n- &1 2020-07-22 19:17:44.552770000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-22 22:13:49.751368533 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1654\n- 1655\n 3310 \N 189.186.92.202 adb4a332-67c8-418f-892e-634b79f36c4c 2020-07-22 22:13:49.758385 36021 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LRXee8XXKeh7J5jcTZmT\n- ACVz7bXq94VtDLrsQis1\n 3311 \N 189.186.92.202 adb4a332-67c8-418f-892e-634b79f36c4c 2020-07-22 22:13:49.77824 36022 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-21 21:13:02.766159000 Z\n- &1 2020-07-22 21:28:30.400574000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-22 22:29:50.857292539 Z\nsign_in_count:\n- 146\n- 147\n 295 \N 189.186.92.202 07e884ad-375b-485a-bdce-ccf30286cb9d 2020-07-22 22:29:50.86337 36023 18 User \N \N 18 User \N update ---\nunique_session_id:\n- dZ-T1xV3dUtdPx4yWNGb\n- xZSg_fs-a2Hfd7-KFYzS\n 296 \N 189.186.92.202 07e884ad-375b-485a-bdce-ccf30286cb9d 2020-07-22 22:29:50.877138 36069 2015 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 994\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 e491e216-8fe4-4791-9813-dd400b22913e 2020-07-23 20:02:46.378484 36024 3501 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 966\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.569E3\nmove_type: '1'\nsale_id: 2601\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.431E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-432 189.186.92.202 6d3417a4-5df1-4d71-a06f-00c1ee9ece71 2020-07-22 22:45:05.910366 36025 3502 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 966\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.569E3\nmove_type: '1'\nsale_id: 2601\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.431E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-432 189.186.92.202 a253ffae-a3f4-421b-a55d-5b5e6cdc69b9 2020-07-22 22:45:05.979904 36026 3503 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 966\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.569E3\nmove_type: '1'\nsale_id: 2601\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.431E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-432 189.186.92.202 4c5b0a50-53ed-459d-a70f-563c86322711 2020-07-22 22:45:06.091701 36027 3503 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 966\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.569E3\nmove_type: '1'\nsale_id: 2601\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.431E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.92.202 41403ed0-a7b5-4b4c-b3e1-ff4b0b4710db 2020-07-22 22:45:07.693949 36028 3502 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 966\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.569E3\nmove_type: '1'\nsale_id: 2601\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.431E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.92.202 16c4603f-1111-4a98-a7fa-af4a36d15ccd 2020-07-22 22:45:08.991637 36029 2601 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.92.202 9b31e65b-062a-4709-a0cb-9339ed417c95 2020-07-22 22:45:11.7285 36030 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-22 19:17:44.552770000 Z\n- &1 2020-07-22 22:13:49.751368000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-22 23:14:46.902126844 Z\nsign_in_count:\n- 1655\n- 1656\n 3312 \N 189.186.92.202 1322f23e-ebd8-4ee9-9eeb-1a7b61824669 2020-07-22 23:14:46.907906 36031 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ACVz7bXq94VtDLrsQis1\n- FqnP1aasAcTsrcs2iQG3\n 3313 \N 189.186.92.202 1322f23e-ebd8-4ee9-9eeb-1a7b61824669 2020-07-22 23:14:46.923543 36032 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-22 21:28:30.400574000 Z\n- &1 2020-07-22 22:29:50.857292000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-23 00:08:10.880289424 Z\nsign_in_count:\n- 147\n- 148\n 297 \N 189.186.92.202 eaeb659d-bc40-4b0b-86a5-e4ea5377d685 2020-07-23 00:08:10.888361 36033 18 User \N \N 18 User \N update ---\nunique_session_id:\n- xZSg_fs-a2Hfd7-KFYzS\n- ZGJwDpNNKZ4o8oNxpxK6\n 298 \N 189.186.92.202 eaeb659d-bc40-4b0b-86a5-e4ea5377d685 2020-07-23 00:08:10.905603 36034 989 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 966\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.2207E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.22E4\ncash_fund: !ruby/object:BigDecimal 18:0.952E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3152E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.92.202 fa167017-fd9b-42c0-a7f4-0a2f2f72c539 2020-07-23 00:21:45.43007 36035 966 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.92.202 fa167017-fd9b-42c0-a7f4-0a2f2f72c539 2020-07-23 00:21:45.444656 36036 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-22 22:13:49.751368000 Z\n- &1 2020-07-22 23:14:46.902126000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-23 00:51:02.904698434 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946153\n mask_addr: 4294967295\nsign_in_count:\n- 1656\n- 1657\n 3314 \N 200.68.181.169 fdd96970-6ab5-4e43-b91d-b54ed6daf4f1 2020-07-23 00:51:02.911797 36037 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FqnP1aasAcTsrcs2iQG3\n- XF1Jmtj4wun7Yikpuyz_\n 3315 \N 200.68.181.169 fdd96970-6ab5-4e43-b91d-b54ed6daf4f1 2020-07-23 00:51:02.929021 36038 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-07-22 18:19:08.536983000 Z\n- &1 2020-07-22 19:01:21.568633000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-23 01:16:16.997465752 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120915\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729472\n mask_addr: 4294967295\nsign_in_count:\n- 182\n- 183\n 366 \N 201.175.157.64 3f23a253-3df9-4008-ae07-d529ccc0097b 2020-07-23 01:16:17.007635 36039 1 User \N \N 1 User \N update ---\nunique_session_id:\n- G8KZzwAU799N2jzx8Bsz\n- 5XgzrLJubH9YVoJ4_w5V\n 367 \N 201.175.157.64 3f23a253-3df9-4008-ae07-d529ccc0097b 2020-07-23 01:16:17.027701 36040 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-22 23:14:46.902126000 Z\n- &1 2020-07-23 00:51:02.904698000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-23 15:39:10.052667566 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946153\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946153\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135670\n mask_addr: 4294967295\nsign_in_count:\n- 1657\n- 1658\n 3316 \N 189.186.203.182 5d87ca5c-7d02-4b18-bb06-eb40ca30c47a 2020-07-23 15:39:10.073095 36041 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XF1Jmtj4wun7Yikpuyz_\n- 1_4K31zLzssm7nefe-kb\n 3317 \N 189.186.203.182 5d87ca5c-7d02-4b18-bb06-eb40ca30c47a 2020-07-23 15:39:10.1 36042 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-22 07:42:54.497394000 Z\n- &1 2020-07-22 07:52:41.771186000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-23 16:54:31.862676879 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729487\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120915\n mask_addr: 4294967295\nsign_in_count:\n- 593\n- 594\n 1191 \N 187.149.65.19 4fbee081-583f-47ed-b2eb-253230d79c72 2020-07-23 16:54:31.869513 36043 2 User \N \N 2 User \N update ---\nunique_session_id:\n- yKuPNRos69X4X8TvSTga\n- 3x4mjp-bosZmPX6t7zKu\n 1192 \N 187.149.65.19 4fbee081-583f-47ed-b2eb-253230d79c72 2020-07-23 16:54:31.971374 36070 968 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.952E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 952.0 189.186.92.202 41055875-c1ba-459e-a986-2979b5619eb5 2020-07-23 23:51:02.721823 36044 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-23 00:51:02.904698000 Z\n- &1 2020-07-23 15:39:10.052667000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-23 16:55:41.630768677 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946153\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135670\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135670\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1658\n- 1659\n 3318 \N 177.228.119.167 8eb4f7ea-b3d9-41ce-8be2-c3c2e5a00ab6 2020-07-23 16:55:41.639024 36045 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1_4K31zLzssm7nefe-kb\n- ntvr8yemG3xC7euu_Eex\n 3319 \N 177.228.119.167 8eb4f7ea-b3d9-41ce-8be2-c3c2e5a00ab6 2020-07-23 16:55:41.657677 36046 967 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.69E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 690.0 187.149.65.19 d1389378-478e-4e93-9b97-d6f35aee4bf0 2020-07-23 16:57:47.255306 36047 2606 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 967\namount: !ruby/object:BigDecimal 18:0.1417E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1417E4\nstatus: 0\ndate_sale: 2020-07-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1250\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.65.19 098698e6-56b3-4c34-b406-9874a958b667 2020-07-23 17:19:34.029367 36048 1630 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.65.19 098698e6-56b3-4c34-b406-9874a958b667 2020-07-23 17:19:34.06434 36049 1884 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.65.19 098698e6-56b3-4c34-b406-9874a958b667 2020-07-23 17:19:34.103807 36050 1878 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.65.19 098698e6-56b3-4c34-b406-9874a958b667 2020-07-23 17:19:34.130906 36051 2606 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.65.19 e9b7554a-b280-4ee0-8757-6b979a38a86b 2020-07-23 17:20:03.787765 36052 3504 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 967\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1417E4\nmove_type: '1'\nsale_id: 2606\ncardnumber: 4879\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1250\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1250 187.149.65.19 e9b7554a-b280-4ee0-8757-6b979a38a86b 2020-07-23 17:20:03.825792 36053 2607 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 967\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-07-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1251\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.65.19 12db2185-ae0d-438a-93d7-1c7100ffd727 2020-07-23 17:22:33.5237 36054 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 23 \N 187.149.65.19 12db2185-ae0d-438a-93d7-1c7100ffd727 2020-07-23 17:22:33.552653 36055 2607 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.65.19 a844ca1c-6e14-4f6e-b79b-d72cc48ea7b0 2020-07-23 17:30:15.274129 36056 3505 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 967\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2607\ncardnumber: 7244\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1251\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1251 187.149.65.19 a844ca1c-6e14-4f6e-b79b-d72cc48ea7b0 2020-07-23 17:30:15.299649 36057 2608 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 967\namount: !ruby/object:BigDecimal 18:0.151142E4\ntax: !ruby/object:BigDecimal 18:0.18759E3\ndiscount: !ruby/object:BigDecimal 18:0.33901E3\ntotal: !ruby/object:BigDecimal 18:0.136E4\nstatus: 0\ndate_sale: 2020-07-23\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1252\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.65.19 acf551dc-08ba-4074-9649-9281e913d85b 2020-07-23 19:06:53.521667 36058 53 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.65.19 acf551dc-08ba-4074-9649-9281e913d85b 2020-07-23 19:06:53.579581 36059 2608 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.65.19 12ea6685-818d-450b-ac08-a81dc9a2f5c4 2020-07-23 19:06:58.389156 36060 3506 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 967\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.136E4\nmove_type: '1'\nsale_id: 2608\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1252\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.136E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1252 187.149.65.19 12ea6685-818d-450b-ac08-a81dc9a2f5c4 2020-07-23 19:06:58.41015 36061 1645 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.65.19 37f3d766-afe1-446f-a021-a55bf617003b 2020-07-23 19:25:56.249585 36062 1645 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.65.19 5535683a-e0c9-43a4-b9bb-e30deb764efc 2020-07-23 19:26:00.044971 36063 641 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-23\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.65.19 8e9d120f-8b4c-483f-b35e-59d0531e1f45 2020-07-23 19:26:00.836004 36064 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-23 15:39:10.052667000 Z\n- &1 2020-07-23 16:55:41.630768000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-23 19:36:06.663274861 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135670\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1659\n- 1660\n 3320 \N 189.186.92.202 7c6fa5a5-d591-46a4-be26-824f35c1a04d 2020-07-23 19:36:06.686097 36065 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ntvr8yemG3xC7euu_Eex\n- mWnipzYF6McgREgg3ZEd\n 3321 \N 189.186.92.202 7c6fa5a5-d591-46a4-be26-824f35c1a04d 2020-07-23 19:36:06.71041 36066 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-22 22:29:50.857292000 Z\n- &1 2020-07-23 00:08:10.880289000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-23 20:01:46.939974788 Z\nsign_in_count:\n- 148\n- 149\n 299 \N 189.186.92.202 e1043c57-cd08-40ac-a6c1-1ccffbc283b6 2020-07-23 20:01:46.948925 36071 3507 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 968\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1648E4\nmove_type: '1'\nsale_id: 2566\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.17E4\nchange: !ruby/object:BigDecimal 18:0.52E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-408 189.186.92.202 2e150f02-4e1b-4d9b-8d3e-b8e7cd0bdc3c 2020-07-23 23:51:23.166152 36072 2566 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.92.202 bd1ae8ad-b96b-48fc-a2b3-0c370818a754 2020-07-23 23:51:24.949544 36073 990 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 967\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4376E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.55E3\nphysical_cash: !ruby/object:BigDecimal 18:0.205E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.65.19 d710438f-8491-49bb-93d5-69ecc7bc0983 2020-07-24 00:07:16.341239 36074 967 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.65.19 d710438f-8491-49bb-93d5-69ecc7bc0983 2020-07-24 00:07:16.355781 36075 2609 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 968\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-07-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-437\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 09c8aa78-d8f4-43c2-842b-9dcf752f6fc2 2020-07-24 00:36:22.721332 36076 1981 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.92.202 09c8aa78-d8f4-43c2-842b-9dcf752f6fc2 2020-07-24 00:36:22.751564 36077 2609 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 44bab07d-cbe2-4c21-80e2-69126823b38f 2020-07-24 00:36:32.213583 36078 3508 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 968\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 2609\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-437\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '2215'\n 1 movimiento de efectivo por venta con folio PV3-V-437 189.186.92.202 44bab07d-cbe2-4c21-80e2-69126823b38f 2020-07-24 00:36:32.237199 36079 991 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 968\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.3447E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.17E4\ncash_fund: !ruby/object:BigDecimal 18:0.9E3\nphysical_cash: !ruby/object:BigDecimal 18:0.26E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.92.202 4de15ce0-8119-49b7-9b2b-d28af7ce9526 2020-07-24 00:41:36.450221 36080 968 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.92.202 4de15ce0-8119-49b7-9b2b-d28af7ce9526 2020-07-24 00:41:36.466184 36081 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-22 07:52:41.771186000 Z\n- &1 2020-07-23 16:54:31.862676000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-24 16:42:59.536530847 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729487\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120915\n mask_addr: 4294967295\nsign_in_count:\n- 594\n- 595\n 1193 \N 187.149.65.19 69172538-5b56-42da-89b9-1cb90393d573 2020-07-24 16:42:59.567426 36082 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 3x4mjp-bosZmPX6t7zKu\n- gb_eopFXqqEMAoz8GDNg\n 1194 \N 187.149.65.19 69172538-5b56-42da-89b9-1cb90393d573 2020-07-24 16:42:59.595282 36083 1637 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.65.19 b4f3607f-69ce-40b5-9551-272e666e0792 2020-07-24 16:44:29.578461 36084 1637 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.65.19 7dfa7208-def5-44a2-9e2a-229a2c549ff3 2020-07-24 16:44:32.678969 36085 1883 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.65.19 14f222c6-3fba-4e60-8180-6b48d0db92e1 2020-07-24 16:44:56.84839 36086 642 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-24\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.65.19 9c8e736f-f681-4b9d-aa8a-6de15edda26e 2020-07-24 16:45:01.796245 36087 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-23 00:08:10.880289000 Z\n- &1 2020-07-23 20:01:46.939974000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-24 18:38:29.448215424 Z\nsign_in_count:\n- 149\n- 150\n 301 \N 189.186.92.202 544f59c7-1240-4483-b32c-e262d5bc2bbb 2020-07-24 18:38:29.45376 36088 18 User \N \N 18 User \N update ---\nunique_session_id:\n- VKBHB37-BWuZidMFFimt\n- sJs4dDiWFDj8rxnTBMoN\n 302 \N 189.186.92.202 544f59c7-1240-4483-b32c-e262d5bc2bbb 2020-07-24 18:38:29.466947 36089 969 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.9E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 900.0 189.186.92.202 715cfb3f-83b5-4d47-b315-22e9056cf890 2020-07-24 18:39:13.568406 36090 2610 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 969\namount: !ruby/object:BigDecimal 18:0.161624E4\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-07-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-438\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 244bc7ab-5c80-4864-9c71-406e544c58ea 2020-07-24 18:40:15.561808 36091 1979 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.92.202 244bc7ab-5c80-4864-9c71-406e544c58ea 2020-07-24 18:40:15.589253 36092 939 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.36E2\n- !ruby/object:BigDecimal 18:0.34E2\n 8 \N 189.186.92.202 244bc7ab-5c80-4864-9c71-406e544c58ea 2020-07-24 18:40:15.626177 36093 2610 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 88521259-c025-49de-80c6-43502f8f6c7a 2020-07-24 18:41:03.738034 36094 3509 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 969\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 2610\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-438\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.17E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-438 189.186.92.202 88521259-c025-49de-80c6-43502f8f6c7a 2020-07-24 18:41:03.765776 36095 970 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.55E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 550.0 187.149.65.19 8de5fdc5-5259-44ce-8059-b9dccb572d84 2020-07-24 18:54:07.646312 36096 2611 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 969\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-07-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-439\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 bad7f320-8fc8-4172-b8e0-2e8e0b6558dc 2020-07-24 19:00:07.060918 36097 1904 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.92.202 bad7f320-8fc8-4172-b8e0-2e8e0b6558dc 2020-07-24 19:00:07.091688 36098 2611 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 4fa0988c-6acc-42ff-bc0a-ada41c1fb2fa 2020-07-24 19:00:17.389288 36099 3510 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 969\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 2611\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-439\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1256'\n 1 movimiento de efectivo por venta con folio PV3-V-439 189.186.92.202 4fa0988c-6acc-42ff-bc0a-ada41c1fb2fa 2020-07-24 19:00:17.412789 36100 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-07-22 19:01:21.568633000 Z\n- &1 2020-07-23 01:16:16.997465000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-24 19:08:34.811882741 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120915\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729472\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729472\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120915\n mask_addr: 4294967295\nsign_in_count:\n- 183\n- 184\n 368 \N 187.149.65.19 c0d4197d-c90b-43d0-8365-286789d13c42 2020-07-24 19:08:34.822524 36101 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 5XgzrLJubH9YVoJ4_w5V\n- 86Rza2o2LP1xrmKUa2s3\n 369 \N 187.149.65.19 c0d4197d-c90b-43d0-8365-286789d13c42 2020-07-24 19:08:34.844497 36102 2612 Sale \N \N 18 User \N create ---\ncustomer_id: 341\nuser_id: 18\nopen_cash_register_id: 969\namount: !ruby/object:BigDecimal 18:0.1498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1498E4\nstatus: 0\ndate_sale: 2020-07-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-440\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 6f7f4c85-c866-491e-9eef-c20719fcb7b3 2020-07-24 19:23:30.322438 36103 2015 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.92.202 6f7f4c85-c866-491e-9eef-c20719fcb7b3 2020-07-24 19:23:30.350292 36104 1349 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.92.202 6f7f4c85-c866-491e-9eef-c20719fcb7b3 2020-07-24 19:23:30.373836 36105 2612 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 c5c7b2dc-43e1-4ef8-a8ad-284c6cc4a28f 2020-07-24 19:23:49.835023 36106 3511 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 969\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 2612\ncardnumber: 4047\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-440\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-440 189.186.92.202 c5c7b2dc-43e1-4ef8-a8ad-284c6cc4a28f 2020-07-24 19:23:49.857281 36107 3511 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 969\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 2612\ncardnumber: 4047\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-440\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.92.202 b7f56c98-1349-4b08-882b-f10f46e5791c 2020-07-24 19:24:40.275233 36108 3512 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 969\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 2612\ncardnumber: 1256\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-440\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-440 189.186.92.202 d0a68d4a-5e3c-4e4a-902e-a8df3d8da466 2020-07-24 19:24:49.658744 36109 3512 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 969\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 2612\ncardnumber: 1256\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-440\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.92.202 fa2ac946-0a8b-44c3-8b3c-2967b9cf4d6c 2020-07-24 19:24:57.818569 36110 3513 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 969\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 2612\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-440\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4525'\n 1 movimiento de efectivo por venta con folio PV3-V-440 189.186.92.202 453ed30f-b4cd-4fe0-98f5-b447b14d8aee 2020-07-24 19:25:06.304503 36111 3513 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 969\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 2612\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-440\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4525'\n 2 \N 189.186.92.202 aa282eec-a747-4f40-9172-faff4ef100bb 2020-07-24 19:25:13.365582 36112 3514 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 969\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 2612\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-440\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4525'\n 1 movimiento de efectivo por venta con folio PV3-V-440 189.186.92.202 fcf19401-3e43-451e-9b70-7c3d319d0020 2020-07-24 19:25:23.586044 36113 2612 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-440 cancelada. 189.186.92.202 4ca0df44-c1f9-44b9-9dd9-fc01c33cbc75 2020-07-24 19:25:28.535947 36139 18 User \N \N 18 User \N update ---\nunique_session_id:\n- sByhBRtGBcyRs2hs3-Je\n- xecgxHfM81HXj5fNo2Gd\n 306 \N 189.186.92.202 54bc59af-29a9-4e24-92e8-f4917f41516a 2020-07-24 23:28:14.85244 36114 3514 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 969\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 2612\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-440\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4525'\n 2 \N 189.186.92.202 4ca0df44-c1f9-44b9-9dd9-fc01c33cbc75 2020-07-24 19:25:28.557564 36115 1349 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.92.202 4ca0df44-c1f9-44b9-9dd9-fc01c33cbc75 2020-07-24 19:25:28.582444 36116 2015 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.92.202 4ca0df44-c1f9-44b9-9dd9-fc01c33cbc75 2020-07-24 19:25:28.604619 36117 2613 Sale \N \N 18 User \N create ---\ncustomer_id: 341\nuser_id: 18\nopen_cash_register_id: 969\namount: !ruby/object:BigDecimal 18:0.1498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1498E4\nstatus: 0\ndate_sale: 2020-07-24\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-441\nexpiration_date: 2020-08-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 89e68833-b77e-485b-83cb-e2ad5f7e8bf5 2020-07-24 19:26:05.357732 36118 2015 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.92.202 89e68833-b77e-485b-83cb-e2ad5f7e8bf5 2020-07-24 19:26:05.385713 36119 1349 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.92.202 89e68833-b77e-485b-83cb-e2ad5f7e8bf5 2020-07-24 19:26:05.409352 36120 3515 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 969\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 2613\ncardnumber: 1552\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-441\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-441 189.186.92.202 dab0323f-96c0-45cf-89c1-aac5eedbb85f 2020-07-24 19:26:16.546781 36121 2613 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.92.202 f45a03a5-a526-4077-a9ec-7dddf8c87c0e 2020-07-24 19:26:18.119691 36122 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-23 16:55:41.630768000 Z\n- &1 2020-07-23 19:36:06.663274000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-24 19:44:02.223411202 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1660\n- 1661\n 3322 \N 189.186.92.202 00d716f2-b292-496f-8dc7-4b4b3a2440cc 2020-07-24 19:44:02.233082 36123 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mWnipzYF6McgREgg3ZEd\n- z8Nqh33F2imWV3TGJp1m\n 3323 \N 189.186.92.202 00d716f2-b292-496f-8dc7-4b4b3a2440cc 2020-07-24 19:44:02.259004 36124 3516 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 970\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 2521\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1226 187.149.65.19 d42e197e-afd9-456d-9012-fcc8fc725145 2020-07-24 20:14:24.083944 36125 2521 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.65.19 bee13856-7fcc-4ac2-bbe8-e561df0bfd69 2020-07-24 20:14:25.45909 36126 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-23 20:01:46.939974000 Z\n- &1 2020-07-24 18:38:29.448215000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-24 21:39:30.194313477 Z\nsign_in_count:\n- 150\n- 151\n 303 \N 189.186.92.202 ed98e914-4c1c-4a26-8308-49acdb11c8e3 2020-07-24 21:39:30.200157 36127 18 User \N \N 18 User \N update ---\nunique_session_id:\n- sJs4dDiWFDj8rxnTBMoN\n- sByhBRtGBcyRs2hs3-Je\n 304 \N 189.186.92.202 ed98e914-4c1c-4a26-8308-49acdb11c8e3 2020-07-24 21:39:30.214471 36128 642 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-24\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.92.202 efe35d05-7ad0-4161-a06b-8d5fe0ebc8d1 2020-07-24 21:40:59.780598 36129 956 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.92.202 efe35d05-7ad0-4161-a06b-8d5fe0ebc8d1 2020-07-24 21:40:59.800563 36130 2016 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 986\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 efe35d05-7ad0-4161-a06b-8d5fe0ebc8d1 2020-07-24 21:40:59.824153 36131 2614 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 969\namount: !ruby/object:BigDecimal 18:0.2798E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2798E4\nstatus: 0\ndate_sale: 2020-07-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-442\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 6dbd8635-b319-4602-adb8-3fa43ec79092 2020-07-24 21:42:11.726626 36132 2016 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.92.202 6dbd8635-b319-4602-adb8-3fa43ec79092 2020-07-24 21:42:11.753699 36133 2008 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.92.202 6dbd8635-b319-4602-adb8-3fa43ec79092 2020-07-24 21:42:11.778449 36134 2614 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 7cf88548-e9af-4d86-8392-7975f3231a43 2020-07-24 21:42:15.98763 36135 3517 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 969\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2798E4\nmove_type: '1'\nsale_id: 2614\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-442\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E4\nchange: !ruby/object:BigDecimal 18:0.202E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-442 189.186.92.202 7cf88548-e9af-4d86-8392-7975f3231a43 2020-07-24 21:42:16.008011 36136 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-23 19:36:06.663274000 Z\n- &1 2020-07-24 19:44:02.223411000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-24 23:21:35.459533967 Z\nsign_in_count:\n- 1661\n- 1662\n 3324 \N 189.186.92.202 4cd293ba-c4b7-4d78-bb69-18d5f02c9eff 2020-07-24 23:21:35.466365 36137 4 User \N \N 4 User \N update ---\nunique_session_id:\n- z8Nqh33F2imWV3TGJp1m\n- _sDtJDJmJBqWTHfzt1Uw\n 3325 \N 189.186.92.202 4cd293ba-c4b7-4d78-bb69-18d5f02c9eff 2020-07-24 23:21:35.484607 36138 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-24 18:38:29.448215000 Z\n- &1 2020-07-24 21:39:30.194313000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-24 23:28:14.830210876 Z\nsign_in_count:\n- 151\n- 152\n 305 \N 189.186.92.202 54bc59af-29a9-4e24-92e8-f4917f41516a 2020-07-24 23:28:14.835918 36140 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-07-06 01:52:51.966388000 Z\n- &1 2020-07-10 23:07:00.906729000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-24 23:30:23.475550951 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984537387\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 137\n- 138\n 276 \N 189.186.92.202 55acb6b5-50cb-4b62-92fb-91fddfad8a81 2020-07-24 23:30:23.482755 36141 9 User \N \N 9 User \N update ---\nunique_session_id:\n- D8STrWyarXHJb47yRSKH\n- CCBJzmuBF7CSigz3aCc6\n 277 \N 189.186.92.202 55acb6b5-50cb-4b62-92fb-91fddfad8a81 2020-07-24 23:30:23.498833 36142 3518 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 970\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 2467\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1563'\n 1 movimiento de efectivo por venta con folio PV1-V-1199 189.186.92.202 f0a97f4f-f951-49e0-a70a-dfad1d337c10 2020-07-24 23:35:50.1039 36143 2467 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.92.202 d5a77d97-ded5-4759-a0d0-ba6be78d3cd6 2020-07-24 23:35:51.371816 36144 316 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 970\nquantity: !ruby/object:BigDecimal 18:0.144E4\nstatus: 1\nobservations: sueldo rocio\nexpense_date: 2020-07-24\nexpense_code: PV1-E-218\n 1 Egreso por 1440.0 registrado 187.149.65.19 ce877aab-605d-48bf-ba3b-b665d4b12395 2020-07-24 23:59:18.892315 36145 3519 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 970\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.144E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 316\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.65.19 ce877aab-605d-48bf-ba3b-b665d4b12395 2020-07-24 23:59:18.923631 36146 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-24 19:44:02.223411000 Z\n- &1 2020-07-24 23:21:35.459533000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-25 00:00:06.275205874 Z\nsign_in_count:\n- 1662\n- 1663\n 3326 \N 189.186.92.202 da84e26e-97bb-4e1f-bcc9-1183ce7a230d 2020-07-25 00:00:06.282777 36147 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _sDtJDJmJBqWTHfzt1Uw\n- PEYtYazgLecyR1V-y8RG\n 3327 \N 189.186.92.202 da84e26e-97bb-4e1f-bcc9-1183ce7a230d 2020-07-25 00:00:06.30114 36148 2615 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 970\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-07-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1253\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.65.19 237eae08-cb57-409f-be64-cd8cb43c8218 2020-07-25 00:10:24.819046 36149 809 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 14 \N 187.149.65.19 237eae08-cb57-409f-be64-cd8cb43c8218 2020-07-25 00:10:24.856388 36150 2615 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.65.19 dd182e7b-8c82-4eac-9b9d-144cd20857d8 2020-07-25 00:10:34.887128 36151 3520 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 970\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 2615\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1253\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1253 187.149.65.19 dd182e7b-8c82-4eac-9b9d-144cd20857d8 2020-07-25 00:10:34.92541 36152 992 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 970\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3097E4\namount_out: !ruby/object:BigDecimal 18:0.144E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.608E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1108E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.65.19 a8e46686-3804-4193-a3b8-b1815d331e6c 2020-07-25 00:17:25.545447 36153 970 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.65.19 a8e46686-3804-4193-a3b8-b1815d331e6c 2020-07-25 00:17:25.559999 36154 993 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 970\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3097E4\namount_out: !ruby/object:BigDecimal 18:0.144E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.608E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1108E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.65.19 bb4f4ecc-4287-4274-94bd-80a95db8d8ae 2020-07-25 00:17:25.754779 36155 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-24 21:39:30.194313000 Z\n- &1 2020-07-24 23:28:14.830210000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-25 00:46:19.667643121 Z\nsign_in_count:\n- 152\n- 153\n 307 \N 189.186.92.202 a4977d43-b945-460a-b2d1-716d4bf0d6c5 2020-07-25 00:46:19.673152 36156 18 User \N \N 18 User \N update ---\nunique_session_id:\n- xecgxHfM81HXj5fNo2Gd\n- eAnjyarWVbSzxTxGoGZg\n 308 \N 189.186.92.202 a4977d43-b945-460a-b2d1-716d4bf0d6c5 2020-07-25 00:46:19.685898 36157 2616 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 969\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-07-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-443\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 a4e33b15-3641-4fcf-a8f5-c552b5f59a80 2020-07-25 00:46:51.47354 36158 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 39 \N 189.186.92.202 a4e33b15-3641-4fcf-a8f5-c552b5f59a80 2020-07-25 00:46:51.504872 36159 2616 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 9b0acbd0-121f-4805-b0bc-4ec97c05e1e9 2020-07-25 00:47:06.225768 36160 3521 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 969\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2616\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-443\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-443 189.186.92.202 9b0acbd0-121f-4805-b0bc-4ec97c05e1e9 2020-07-25 00:47:06.251624 36161 2616 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-443 cancelada. 189.186.92.202 dee1f338-60c3-4ac0-ad77-c6ac9e443556 2020-07-25 00:49:10.202133 36186 2618 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.92.202 50f9d5b3-9d96-4009-a3b7-5caddcb7e27d 2020-07-25 19:43:00.679212 36162 3521 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 969\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 2616\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-443\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.92.202 dee1f338-60c3-4ac0-ad77-c6ac9e443556 2020-07-25 00:49:10.223972 36163 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 40 \N 189.186.92.202 dee1f338-60c3-4ac0-ad77-c6ac9e443556 2020-07-25 00:49:10.251106 36164 2617 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 969\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-07-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-444\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 ee3a6f8b-9b3e-40c7-b359-063c1139ce76 2020-07-25 00:54:06.254442 36165 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 41 \N 189.186.92.202 ee3a6f8b-9b3e-40c7-b359-063c1139ce76 2020-07-25 00:54:06.283057 36166 2617 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 6fade8f1-f25e-46e8-80b7-608508d252d8 2020-07-25 00:55:11.961873 36167 3522 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 969\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 2617\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-444\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.401E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-444 189.186.92.202 6fade8f1-f25e-46e8-80b7-608508d252d8 2020-07-25 00:55:11.983607 36168 994 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 969\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.7195E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.6131E4\ncash_fund: !ruby/object:BigDecimal 18:0.765E3\nphysical_cash: !ruby/object:BigDecimal 18:0.6896E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.92.202 d37c148a-89be-4aca-be0e-07414d4b7dc7 2020-07-25 01:11:46.519181 36169 969 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.92.202 d37c148a-89be-4aca-be0e-07414d4b7dc7 2020-07-25 01:11:46.539206 36170 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-24 23:28:14.830210000 Z\n- &1 2020-07-25 00:46:19.667643000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-25 01:26:37.122729064 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938315\n mask_addr: 4294967295\nsign_in_count:\n- 153\n- 154\n 309 \N 200.68.151.11 a6a8a03e-e58d-4abd-877f-fe45c3e1a7bd 2020-07-25 01:26:37.13519 36171 18 User \N \N 18 User \N update ---\nunique_session_id:\n- eAnjyarWVbSzxTxGoGZg\n- Nxt5zF3WX2KyURTQF5-B\n 310 \N 200.68.151.11 a6a8a03e-e58d-4abd-877f-fe45c3e1a7bd 2020-07-25 01:26:37.156817 36172 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-23 16:54:31.862676000 Z\n- &1 2020-07-24 16:42:59.536530000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-25 19:01:00.005239672 Z\nsign_in_count:\n- 595\n- 596\n 1195 \N 187.149.65.19 affcd2ea-2bc9-4790-bd3f-84c096df2819 2020-07-25 19:01:00.041208 36173 2 User \N \N 2 User \N update ---\nunique_session_id:\n- gb_eopFXqqEMAoz8GDNg\n- TuHwdEsesq5rC7CP4wy4\n 1196 \N 187.149.65.19 affcd2ea-2bc9-4790-bd3f-84c096df2819 2020-07-25 19:01:00.064521 36174 1938 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.65.19 0b7635f1-2a7f-441e-882f-0a9672f50db0 2020-07-25 19:12:58.05213 36175 643 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-25\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.65.19 dd840190-9971-439d-ab35-3f46f30fc2f9 2020-07-25 19:13:00.962044 36176 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-07-17 21:07:37.875547000 Z\n- &1 2020-07-20 19:04:34.666847000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-25 19:40:03.256156026 Z\nsign_in_count:\n- 238\n- 239\n 479 \N 189.186.92.202 6f15ac5e-3803-412e-b995-d5cb7434c01a 2020-07-25 19:40:03.261851 36177 21 User \N \N 21 User \N update ---\nunique_session_id:\n- fDd67p5mE6YFyKyAR4uX\n- zgJsez-yPRuRogxg83ds\n 480 \N 189.186.92.202 6f15ac5e-3803-412e-b995-d5cb7434c01a 2020-07-25 19:40:03.276272 36178 643 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-25\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.92.202 0cb4586d-9519-4481-b4f7-6a77a608d6f8 2020-07-25 19:40:22.632741 36179 1832 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.8E1\n 10 \N 189.186.92.202 0cb4586d-9519-4481-b4f7-6a77a608d6f8 2020-07-25 19:40:22.651406 36180 971 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.765E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 765.0 189.186.92.202 96904c0d-efa3-4ada-94a3-50e6c8998e8e 2020-07-25 19:40:36.493622 36181 344 Customer \N \N 21 User \N create ---\nnick_name: GRACIELA MONTIEL\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente GRACIELA MONTIEL fue registrado. 189.186.92.202 1ff8e643-68d0-48a6-82e0-04d1973d3813 2020-07-25 19:40:59.116635 36182 2618 Sale \N \N 21 User \N create ---\ncustomer_id: 344\nuser_id: 21\nopen_cash_register_id: 971\namount: !ruby/object:BigDecimal 18:0.3298E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3298E4\nstatus: 0\ndate_sale: 2020-07-25\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-445\nexpiration_date: 2020-08-29\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 3ba96348-a7cd-49dd-ba60-9cb5afefba97 2020-07-25 19:42:11.813251 36183 1832 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 11 \N 189.186.92.202 3ba96348-a7cd-49dd-ba60-9cb5afefba97 2020-07-25 19:42:11.844498 36184 1829 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.92.202 3ba96348-a7cd-49dd-ba60-9cb5afefba97 2020-07-25 19:42:11.869947 36185 3523 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 971\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2618\ncardnumber: 1256\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-445\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-445 189.186.92.202 2cee2526-8d9e-425f-ab0f-3f310adbea2c 2020-07-25 19:42:52.245192 36187 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-24 23:21:35.459533000 Z\n- &1 2020-07-25 00:00:06.275205000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-25 20:19:01.125718957 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1663\n- 1664\n 3328 \N 177.228.119.167 0e918c35-d5fa-46ac-9551-16e4aab9cd37 2020-07-25 20:19:01.134806 36188 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PEYtYazgLecyR1V-y8RG\n- yW11uvtCTNkdwLvDUJ9y\n 3329 \N 177.228.119.167 0e918c35-d5fa-46ac-9551-16e4aab9cd37 2020-07-25 20:19:01.154521 36189 2619 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 971\namount: !ruby/object:BigDecimal 18:0.837E3\ntax: !ruby/object:BigDecimal 18:0.62E2\ndiscount: !ruby/object:BigDecimal 18:0.4495E3\ntotal: !ruby/object:BigDecimal 18:0.4495E3\nstatus: 0\ndate_sale: 2020-07-25\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-446\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 9796ccb5-690f-4c6e-acc4-8dbbeead602a 2020-07-25 20:21:57.5304 36190 855 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E2\n- !ruby/object:BigDecimal 18:0.29E2\n 4 \N 189.186.92.202 9796ccb5-690f-4c6e-acc4-8dbbeead602a 2020-07-25 20:21:57.561318 36191 2619 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 f645568c-2f8c-45db-917e-5dbce1f662d2 2020-07-25 20:22:31.158495 36192 3524 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 971\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.4495E3\nmove_type: '1'\nsale_id: 2619\ncardnumber: 3545\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-446\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-446 189.186.92.202 f645568c-2f8c-45db-917e-5dbce1f662d2 2020-07-25 20:22:31.18597 36193 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-07-23 01:16:16.997465000 Z\n- &1 2020-07-24 19:08:34.811882000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-25 20:40:43.322904644 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729472\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120915\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120915\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945904\n mask_addr: 4294967295\nsign_in_count:\n- 184\n- 185\n 370 \N 200.68.180.176 b608a68e-0511-4058-90e6-4d2237d9f208 2020-07-25 20:40:43.331214 36194 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 86Rza2o2LP1xrmKUa2s3\n- skyzWzZCN564Bxx526j4\n 371 \N 200.68.180.176 b608a68e-0511-4058-90e6-4d2237d9f208 2020-07-25 20:40:43.348378 36195 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-25 00:00:06.275205000 Z\n- &1 2020-07-25 20:19:01.125718000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-25 22:41:37.149569443 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1664\n- 1665\n 3330 \N 177.228.119.167 014dcdd4-bc44-4e2e-b037-99a77960b560 2020-07-25 22:41:37.173332 36196 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yW11uvtCTNkdwLvDUJ9y\n- Gqr1c8xXdBLiexVFyz2e\n 3331 \N 177.228.119.167 014dcdd4-bc44-4e2e-b037-99a77960b560 2020-07-25 22:41:37.197281 36197 995 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 971\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.14495E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.765E3\nphysical_cash: !ruby/object:BigDecimal 18:0.765E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.92.202 f306691a-55f6-452e-b50a-a4bce03edd8d 2020-07-26 00:36:19.819114 36198 971 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.92.202 f306691a-55f6-452e-b50a-a4bce03edd8d 2020-07-26 00:36:19.839793 36199 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-25 20:19:01.125718000 Z\n- &1 2020-07-25 22:41:37.149569000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-26 04:54:29.898514041 Z\nsign_in_count:\n- 1665\n- 1666\n 3332 \N 177.228.119.167 f1bafe51-32ae-4678-9d2e-b1e642cf030c 2020-07-26 04:54:29.926436 36200 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Gqr1c8xXdBLiexVFyz2e\n- p2zjzy6tynoXxX98sk2V\n 3333 \N 177.228.119.167 f1bafe51-32ae-4678-9d2e-b1e642cf030c 2020-07-26 04:54:29.950119 36201 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-25 22:41:37.149569000 Z\n- &1 2020-07-26 04:54:29.898514000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-26 18:01:24.415361965 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934409\n mask_addr: 4294967295\nsign_in_count:\n- 1666\n- 1667\n 3334 \N 200.68.135.201 4a5f30c2-2c2e-4dfb-a33e-114a77b6824c 2020-07-26 18:01:24.444255 36202 4 User \N \N 4 User \N update ---\nunique_session_id:\n- p2zjzy6tynoXxX98sk2V\n- 9s73A_7zrmxsi1ztGyLn\n 3335 \N 200.68.135.201 4a5f30c2-2c2e-4dfb-a33e-114a77b6824c 2020-07-26 18:01:24.479856 36203 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-26 04:54:29.898514000 Z\n- &1 2020-07-26 18:01:24.415361000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-27 15:36:08.474380212 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934409\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934409\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1667\n- 1668\n 3336 \N 177.228.119.167 448d0095-6cab-43fa-8485-53c187b082df 2020-07-27 15:36:08.50402 36204 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9s73A_7zrmxsi1ztGyLn\n- nii8mM4DRmn6yF6aiqSQ\n 3337 \N 177.228.119.167 448d0095-6cab-43fa-8485-53c187b082df 2020-07-27 15:36:08.532321 36205 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-24 16:42:59.536530000 Z\n- &1 2020-07-25 19:01:00.005239000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-27 16:18:56.967642667 Z\nsign_in_count:\n- 596\n- 597\n 1197 \N 187.149.65.19 1d406cf3-6856-45ec-9fd5-6e4d65e3277a 2020-07-27 16:18:56.995153 36206 2 User \N \N 2 User \N update ---\nunique_session_id:\n- TuHwdEsesq5rC7CP4wy4\n- oYYS64KVst5xjo_T62az\n 1198 \N 187.149.65.19 1d406cf3-6856-45ec-9fd5-6e4d65e3277a 2020-07-27 16:18:57.018609 36207 1841 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.65.19 5d3eb757-b5d2-4ef4-8f24-a245154dc6e4 2020-07-27 16:19:41.069401 36208 525 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 11 \N 187.149.65.19 db09fd38-9069-481d-bef7-1044b3711e14 2020-07-27 16:19:59.569805 36209 644 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-27\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.65.19 5cf5f197-a67e-46c0-a060-67016032e91c 2020-07-27 16:20:22.708331 36408 2 User \N \N 2 User \N update ---\nunique_session_id:\n- AYSbNeqTFXs4MSGQgwJg\n- rBHER2_uGHEYRtFd8F7z\n 1206 \N 187.149.65.19 37920e27-f1fd-486b-8893-2e1cf4f8e5c0 2020-07-31 16:24:30.200497 36210 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-07-20 19:04:34.666847000 Z\n- &1 2020-07-25 19:40:03.256156000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-27 18:41:13.740714841 Z\nsign_in_count:\n- 239\n- 240\n 481 \N 189.186.92.202 913a34d9-a385-4463-bf72-89f683393f26 2020-07-27 18:41:13.768019 36211 21 User \N \N 21 User \N update ---\nunique_session_id:\n- zgJsez-yPRuRogxg83ds\n- gsjA47TRRyFdwAHBhm-Y\n 482 \N 189.186.92.202 913a34d9-a385-4463-bf72-89f683393f26 2020-07-27 18:41:13.789409 36212 972 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.608E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 608.0 187.149.65.19 f4c44d9a-b109-4c64-a7d6-447118528984 2020-07-27 20:27:10.698604 36213 2620 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 972\namount: !ruby/object:BigDecimal 18:0.41797E3\ntax: !ruby/object:BigDecimal 18:0.3104E2\ndiscount: !ruby/object:BigDecimal 18:0.224E3\ntotal: !ruby/object:BigDecimal 18:0.22501E3\nstatus: 0\ndate_sale: 2020-07-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1254\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.65.19 abdbee89-7fb5-43b9-a87b-76fa91d5a8b6 2020-07-27 20:28:15.902408 36214 62 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 187.149.65.19 abdbee89-7fb5-43b9-a87b-76fa91d5a8b6 2020-07-27 20:28:15.946528 36215 2620 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.65.19 3ccdeeea-c31e-4972-ab59-0968626e893f 2020-07-27 20:29:31.949212 36216 3525 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 972\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.22501E3\nmove_type: '1'\nsale_id: 2620\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1254\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.22501E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1254 187.149.65.19 3ccdeeea-c31e-4972-ab59-0968626e893f 2020-07-27 20:29:31.975403 36217 973 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.765E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 765.0 189.186.92.202 05350f2b-db1f-4b6c-bf84-2568168815d0 2020-07-27 20:49:11.595699 36218 644 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-07-27\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.92.202 8ab0f979-af7c-4d29-bf51-f483feeaa906 2020-07-27 21:44:05.865287 36219 1586 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.92.202 8ab0f979-af7c-4d29-bf51-f483feeaa906 2020-07-27 21:44:05.906796 36220 776 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.92.202 8ab0f979-af7c-4d29-bf51-f483feeaa906 2020-07-27 21:44:05.937178 36221 2621 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 973\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-07-27\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-447\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 683455a9-67a5-4e88-8ed2-6802b4fdb361 2020-07-27 21:45:48.692135 36222 776 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.92.202 683455a9-67a5-4e88-8ed2-6802b4fdb361 2020-07-27 21:45:48.724353 36223 2621 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 5e4ed1a2-765d-4bf0-a2af-586a5c772547 2020-07-27 21:46:13.82273 36224 3526 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 973\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 2621\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-447\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.18E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-447 189.186.92.202 5e4ed1a2-765d-4bf0-a2af-586a5c772547 2020-07-27 21:46:13.851701 36225 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-26 18:01:24.415361000 Z\n- &1 2020-07-27 15:36:08.474380000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-27 21:51:49.061643511 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934409\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1668\n- 1669\n 3338 \N 189.186.92.202 1fa19019-c2b9-4557-bbf5-e262d3837bba 2020-07-27 21:51:49.071395 36226 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nii8mM4DRmn6yF6aiqSQ\n- iAQxC1m6nZrnoAjyghf-\n 3339 \N 189.186.92.202 1fa19019-c2b9-4557-bbf5-e262d3837bba 2020-07-27 21:51:49.093358 36227 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-07-25 19:40:03.256156000 Z\n- &1 2020-07-27 18:41:13.740714000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-27 21:53:30.829752105 Z\nsign_in_count:\n- 240\n- 241\n 483 \N 189.186.92.202 5651e443-9c14-48a0-bfa7-aa5a4c10cd47 2020-07-27 21:53:30.836172 36228 21 User \N \N 21 User \N update ---\nunique_session_id:\n- gsjA47TRRyFdwAHBhm-Y\n- 91kAz_h9By8S1HcXKdN9\n 484 \N 189.186.92.202 5651e443-9c14-48a0-bfa7-aa5a4c10cd47 2020-07-27 21:53:30.851694 36229 2622 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 973\namount: !ruby/object:BigDecimal 18:0.166107E4\ntax: !ruby/object:BigDecimal 18:0.13793E3\ndiscount: !ruby/object:BigDecimal 18:0.799E3\ntotal: !ruby/object:BigDecimal 18:0.1E4\nstatus: 0\ndate_sale: 2020-07-27\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-448\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 d63ae4e4-26ae-44ab-ac55-f97934c6da92 2020-07-27 21:54:36.24918 36230 1405 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.92.202 d63ae4e4-26ae-44ab-ac55-f97934c6da92 2020-07-27 21:54:36.276787 36231 2622 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 d45d0c65-0872-41f1-a7e8-46a7853e4cad 2020-07-27 21:54:47.565536 36232 3527 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 973\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 2622\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-448\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEPOSITO\n 1 movimiento de efectivo por venta con folio PV3-V-448 189.186.92.202 d45d0c65-0872-41f1-a7e8-46a7853e4cad 2020-07-27 21:54:47.587166 36434 2012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 187.149.65.19 203d1954-4325-49f5-bc83-68962aaef35b 2020-07-31 21:12:38.711549 36233 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-27 15:36:08.474380000 Z\n- &1 2020-07-27 21:51:49.061643000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-27 22:56:02.453604501 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1669\n- 1670\n 3340 \N 177.228.119.167 5b64c56b-b2f6-4b4a-b374-53b2d18c0152 2020-07-27 22:56:02.461755 36234 4 User \N \N 4 User \N update ---\nunique_session_id:\n- iAQxC1m6nZrnoAjyghf-\n- NydxfjsNzUDVtUsxMffd\n 3341 \N 177.228.119.167 5b64c56b-b2f6-4b4a-b374-53b2d18c0152 2020-07-27 22:56:02.480012 36235 996 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 972\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.22501E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.2E3\ncash_fund: !ruby/object:BigDecimal 18:0.633E3\nphysical_cash: !ruby/object:BigDecimal 18:0.833E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.65.19 6361b162-4e97-4772-877c-b8ca8e17caff 2020-07-28 00:01:46.862038 36236 972 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.65.19 6361b162-4e97-4772-877c-b8ca8e17caff 2020-07-28 00:01:46.879942 36237 2623 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 973\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-07-27\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-449\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 dd28b0a9-5459-4481-95c0-a882c1be7b3c 2020-07-28 00:22:07.145392 36238 1930 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.92.202 dd28b0a9-5459-4481-95c0-a882c1be7b3c 2020-07-28 00:22:07.197358 36239 2623 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 5dc3d782-c3d4-4c04-b1d4-a6cf402a3619 2020-07-28 00:22:13.905268 36240 3528 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 973\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 2623\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-449\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-449 189.186.92.202 5dc3d782-c3d4-4c04-b1d4-a6cf402a3619 2020-07-28 00:22:13.926571 36241 997 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 973\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.3798E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.1063E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3563E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.92.202 d569c3e4-88e9-48d2-a82d-9149723b4f14 2020-07-28 00:25:51.765 36242 973 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.92.202 d569c3e4-88e9-48d2-a82d-9149723b4f14 2020-07-28 00:25:51.792105 36243 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-27 21:51:49.061643000 Z\n- &1 2020-07-27 22:56:02.453604000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-28 04:09:13.160249223 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1670\n- 1671\n 3342 \N 177.228.119.167 3be7c36c-c933-4a77-9f54-a0e13d1f139a 2020-07-28 04:09:13.180159 36244 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NydxfjsNzUDVtUsxMffd\n- dePXdurk9cNf47CMG123\n 3343 \N 177.228.119.167 3be7c36c-c933-4a77-9f54-a0e13d1f139a 2020-07-28 04:09:13.205027 36245 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-27 22:56:02.453604000 Z\n- &1 2020-07-28 04:09:13.160249000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-28 04:11:01.069780409 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945934\n mask_addr: 4294967295\nsign_in_count:\n- 1671\n- 1672\n 3344 \N 200.68.180.206 2a7146d3-fc67-433e-82d0-b0831e79efdd 2020-07-28 04:11:01.076216 36246 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dePXdurk9cNf47CMG123\n- VnZ_G_u9sYF-RaZ-f84d\n 3345 \N 200.68.180.206 2a7146d3-fc67-433e-82d0-b0831e79efdd 2020-07-28 04:11:01.094562 36247 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-28 04:09:13.160249000 Z\n- &1 2020-07-28 04:11:01.069780000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-28 08:16:46.979000261 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945934\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945934\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1672\n- 1673\n 3346 \N 177.228.119.167 493bc410-dafd-4f61-8398-f20cda4976ba 2020-07-28 08:16:46.986391 36248 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VnZ_G_u9sYF-RaZ-f84d\n- bkHdatoFfD55atNy6cys\n 3347 \N 177.228.119.167 493bc410-dafd-4f61-8398-f20cda4976ba 2020-07-28 08:16:47.005299 36249 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-25 19:01:00.005239000 Z\n- &1 2020-07-27 16:18:56.967642000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-28 16:01:57.694145659 Z\nsign_in_count:\n- 597\n- 598\n 1199 \N 187.149.65.19 ce2e714f-01fa-4612-9a1f-291d632b3fab 2020-07-28 16:01:57.722098 36250 2 User \N \N 2 User \N update ---\nunique_session_id:\n- oYYS64KVst5xjo_T62az\n- r-a-f7KyR2de4L7yX_f6\n 1200 \N 187.149.65.19 ce2e714f-01fa-4612-9a1f-291d632b3fab 2020-07-28 16:01:57.743544 36251 974 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.633E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 633.0 187.149.65.19 c1a587c6-1c28-4821-9a1a-0f2281d71651 2020-07-28 16:03:58.596777 36252 2624 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 974\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-07-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1255\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.65.19 700803aa-c668-40fc-93a1-ac8f026d9c84 2020-07-28 17:03:51.190533 36253 1858 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.65.19 700803aa-c668-40fc-93a1-ac8f026d9c84 2020-07-28 17:03:51.23368 36254 2624 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.65.19 f9ac1277-fb6b-49d0-8d69-e29cad0b93e3 2020-07-28 17:03:55.596851 36298 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-27 16:18:56.967642000 Z\n- &1 2020-07-28 16:01:57.694145000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-29 15:58:38.112894828 Z\nsign_in_count:\n- 598\n- 599\n 1201 \N 187.149.65.19 b0c0c29f-c197-4431-8128-c832f04f3423 2020-07-29 15:58:38.139438 36255 3529 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 974\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 2624\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1255\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1255 187.149.65.19 f9ac1277-fb6b-49d0-8d69-e29cad0b93e3 2020-07-28 17:03:55.622905 36256 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-07-27 18:41:13.740714000 Z\n- &1 2020-07-27 21:53:30.829752000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-28 17:58:43.445825935 Z\nsign_in_count:\n- 241\n- 242\n 485 \N 189.186.92.202 683405e7-f26f-4349-bc32-608932504dbf 2020-07-28 17:58:43.453326 36257 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 91kAz_h9By8S1HcXKdN9\n- pMTtsmMPMG7zjs61ksxL\n 486 \N 189.186.92.202 683405e7-f26f-4349-bc32-608932504dbf 2020-07-28 17:58:43.46741 36258 975 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1063E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1063.0 189.186.92.202 b5fbcf44-42ea-44de-856a-f462f7d49513 2020-07-28 18:02:12.666365 36259 345 Customer \N \N 21 User \N create ---\nnick_name: DAYSI VICTORIA\nphone: "(667) 392-5998"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DAYSI VICTORIA fue registrado. 189.186.92.202 97eeb895-7592-4de9-b564-cd2d5a72ee9d 2020-07-28 18:03:10.421002 36260 346 Customer \N \N 21 User \N create ---\nnick_name: DAYSI VICTORIA\nphone: "(667) 392-5998"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DAYSI VICTORIA fue registrado. 189.186.92.202 366626c8-9f39-49a2-a84b-1b930b4d8aea 2020-07-28 18:03:10.673938 36261 2625 Sale \N \N 21 User \N create ---\ncustomer_id: 346\nuser_id: 21\nopen_cash_register_id: 975\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-07-28\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-450\nexpiration_date: 2020-09-01\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 adee7f22-1260-4764-bb3d-4ef02885fca4 2020-07-28 18:06:08.642294 36262 1822 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 42 \N 189.186.92.202 adee7f22-1260-4764-bb3d-4ef02885fca4 2020-07-28 18:06:08.672987 36263 3530 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 975\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2625\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-450\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-450 189.186.92.202 4f8c5773-a49a-4a02-9154-deebdc897ca2 2020-07-28 18:06:46.765241 36264 2625 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.92.202 0a51c01e-a4fd-45f0-8e5b-32902b3179e0 2020-07-28 18:06:48.845555 36265 2626 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 974\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-07-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1256\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.65.19 5d9ebc8e-90c6-49f0-9a16-af0f62abf9e1 2020-07-28 18:31:37.942032 36266 647 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 187.149.65.19 5d9ebc8e-90c6-49f0-9a16-af0f62abf9e1 2020-07-28 18:31:37.973104 36267 2626 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.65.19 15dac8a0-a27a-435a-8e81-f867baec411b 2020-07-28 18:31:47.461576 36268 3531 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 974\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 2626\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1256\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1399E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1256 187.149.65.19 15dac8a0-a27a-435a-8e81-f867baec411b 2020-07-28 18:31:47.491607 36269 2627 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 974\namount: !ruby/object:BigDecimal 18:0.1948E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1948E4\nstatus: 0\ndate_sale: 2020-07-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1257\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.65.19 4bbe1e89-a10f-4b8d-a2f5-09478d4f6470 2020-07-28 19:05:19.557346 36270 1645 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.65.19 4bbe1e89-a10f-4b8d-a2f5-09478d4f6470 2020-07-28 19:05:19.5866 36271 1693 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.65.19 4bbe1e89-a10f-4b8d-a2f5-09478d4f6470 2020-07-28 19:05:19.614737 36272 2627 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.65.19 c6a474be-b1d0-459f-b535-4348dcbdf1e1 2020-07-28 19:05:26.058555 36273 3532 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 974\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1948E4\nmove_type: '1'\nsale_id: 2627\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1257\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1948E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1257 187.149.65.19 c6a474be-b1d0-459f-b535-4348dcbdf1e1 2020-07-28 19:05:26.080411 36274 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-28 04:11:01.069780000 Z\n- &1 2020-07-28 08:16:46.979000000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-28 20:59:40.909570045 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945934\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934409\n mask_addr: 4294967295\nsign_in_count:\n- 1673\n- 1674\n 3348 \N 200.68.135.201 705d19c7-a57f-4750-a8d4-5878f5d3c5b5 2020-07-28 20:59:40.91713 36275 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bkHdatoFfD55atNy6cys\n- nYgCuAJBESkxpk6nym6X\n 3349 \N 200.68.135.201 705d19c7-a57f-4750-a8d4-5878f5d3c5b5 2020-07-28 20:59:40.937294 36299 2 User \N \N 2 User \N update ---\nunique_session_id:\n- r-a-f7KyR2de4L7yX_f6\n- RzzwSpNQY-SsmRJnMxZk\n 1202 \N 187.149.65.19 b0c0c29f-c197-4431-8128-c832f04f3423 2020-07-29 15:58:38.162575 36276 347 Customer \N \N 2 User \N create ---\nnick_name: lucia juarez\nphone: "(667) 457-6017"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente lucia juarez fue registrado. 187.149.65.19 9f7783b6-b541-4b7e-ba9a-9f01b79d2900 2020-07-28 21:44:08.307887 36277 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-28 08:16:46.979000000 Z\n- &1 2020-07-28 20:59:40.909570000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-28 21:47:51.930025717 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934409\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934409\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1674\n- 1675\n 3350 \N 189.186.92.202 f37108b0-6c81-4681-b833-634661242623 2020-07-28 21:47:51.937668 36278 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nYgCuAJBESkxpk6nym6X\n- dXVUJmL8y-imiLo7dn2t\n 3351 \N 189.186.92.202 f37108b0-6c81-4681-b833-634661242623 2020-07-28 21:47:51.956759 36279 317 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-127\namount: !ruby/object:BigDecimal 18:0.4497E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4497E4\nobservations: ''\npurchase_date: 2020-07-28\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-127 por $ 4497.0 MXN creada. 189.186.92.202 bb9b823e-8592-423a-bcf4-f621f3415a20 2020-07-28 21:49:35.99465 36280 1937 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 189.186.92.202 bb9b823e-8592-423a-bcf4-f621f3415a20 2020-07-28 21:49:36.017788 36281 1126 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1126'\n is_parent: false\n sku: ZAP-1126\n name: CONQUES\n description: 'MOCASIN ROSA CON EVILLA '\n price_base: '749.5'\n price_sale: '1499.0'\n img_product: descarga.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '13'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001126'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-05-04 00:44:51.634023'\n updated_at: &12 2020-07-28 21:50:56.378683671 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1126'\n sku: ZAP-1126\n name: CONQUES\n description: 'MOCASIN ROSA CON EVILLA '\n price_base: '749.50'\n price_sale: '1499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-05-04 00:44:51.634023'\n updated_at: '2020-05-04 00:44:51.694706'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001126'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '13'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1126'\n type: *3\n value: 1126\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ZAP-1126\n type: *7\n value: ZAP-1126\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CONQUES\n type: *8\n value: CONQUES\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'MOCASIN ROSA CON EVILLA '\n type: *6\n value: 'MOCASIN ROSA CON EVILLA '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '749.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1499E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: descarga.jpg\n type: *2\n value: descarga.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '13'\n type: *3\n value: 13\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001126'\n type: *2\n value: '0001126'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-05-04 00:44:51.634023'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- descarga.jpg\n 3 El producto ZAP-1126 fue modificado. 189.186.92.202 3dc0572d-016f-4071-92cb-353268ee2854 2020-07-28 21:50:56.419789 36282 2628 Sale \N \N 2 User \N create ---\ncustomer_id: 347\nuser_id: 2\nopen_cash_register_id: 974\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-07-28\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1258\nexpiration_date: 2020-09-01\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.65.19 3fd04a54-8abf-4805-b713-a94249f4c5fd 2020-07-28 21:55:05.827123 36283 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 187.149.65.19 3fd04a54-8abf-4805-b713-a94249f4c5fd 2020-07-28 21:55:05.87064 36284 3533 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 974\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2628\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1258\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1258 187.149.65.19 9296a50b-288e-48e5-8cf7-4f6f7cd581cd 2020-07-28 21:55:12.098416 36285 2628 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.65.19 a301d2d3-e168-451a-8ffa-7a3079c8da84 2020-07-28 21:55:14.000453 36286 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-28 20:59:40.909570000 Z\n- &1 2020-07-28 21:47:51.930025000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-28 22:56:01.551715480 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934409\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934409\n mask_addr: 4294967295\nsign_in_count:\n- 1675\n- 1676\n 3352 \N 200.68.135.201 36119ed3-a20a-4f70-80be-ba8de514382a 2020-07-28 22:56:01.573032 36287 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dXVUJmL8y-imiLo7dn2t\n- xfr1H_wgvsrDCfMAZFL1\n 3353 \N 200.68.135.201 36119ed3-a20a-4f70-80be-ba8de514382a 2020-07-28 22:56:01.597152 36288 998 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 974\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4446E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.45E4\ncash_fund: !ruby/object:BigDecimal 18:0.579E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5079E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.65.19 fca73385-d5af-41fe-a861-5dd5ca3b6f3f 2020-07-28 23:59:44.794308 36289 974 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.65.19 fca73385-d5af-41fe-a861-5dd5ca3b6f3f 2020-07-28 23:59:44.81419 36290 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-07-27 21:53:30.829752000 Z\n- &1 2020-07-28 17:58:43.445825000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-29 00:29:08.318687891 Z\nsign_in_count:\n- 242\n- 243\n 487 \N 189.186.92.202 f9cd4b55-4725-4c21-bd15-b692b5dcac6d 2020-07-29 00:29:08.325615 36291 21 User \N \N 21 User \N update ---\nunique_session_id:\n- pMTtsmMPMG7zjs61ksxL\n- xyWZTTyJx634ePZXsHHm\n 488 \N 189.186.92.202 f9cd4b55-4725-4c21-bd15-b692b5dcac6d 2020-07-29 00:29:08.341516 36292 999 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 975\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.5E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.1063E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1563E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.92.202 8535ee52-e1ec-4fc4-8cd8-e791d5ddd6cc 2020-07-29 00:30:37.177666 36293 975 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.92.202 8535ee52-e1ec-4fc4-8cd8-e791d5ddd6cc 2020-07-29 00:30:37.191493 36294 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-28 21:47:51.930025000 Z\n- &1 2020-07-28 22:56:01.551715000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-29 00:47:36.204543608 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934409\n mask_addr: 4294967295\nsign_in_count:\n- 1676\n- 1677\n 3354 \N 200.68.135.201 808b49c5-e701-41cf-bebe-83bb13646925 2020-07-29 00:47:36.211313 36295 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xfr1H_wgvsrDCfMAZFL1\n- XcM3BG8XmSwQLtkMahtF\n 3355 \N 200.68.135.201 808b49c5-e701-41cf-bebe-83bb13646925 2020-07-29 00:47:36.228663 36296 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-28 22:56:01.551715000 Z\n- &1 2020-07-29 00:47:36.204543000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-29 05:27:14.252084493 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934409\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145377\n mask_addr: 4294967295\nsign_in_count:\n- 1677\n- 1678\n 3356 \N 189.186.241.161 3651037c-c9f3-4aad-9133-05b2a262d74b 2020-07-29 05:27:14.261363 36297 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XcM3BG8XmSwQLtkMahtF\n- FEnZv2onUdpq8Y3ABqjm\n 3357 \N 189.186.241.161 3651037c-c9f3-4aad-9133-05b2a262d74b 2020-07-29 05:27:14.280745 36361 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 3Ys7BW22gJT3z_B-WgeZ\n- Kfnp2y3KB4psQHirC-uy\n 316 \N 189.186.92.202 fe87f055-0a18-4711-8bb8-8754862b18eb 2020-07-30 00:33:32.279091 36300 976 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.579E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 579.0 187.149.65.19 ca6019e7-e0d8-456a-a6a4-a581c8c40c3b 2020-07-29 17:03:03.363763 36301 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-29 00:47:36.204543000 Z\n- &1 2020-07-29 05:27:14.252084000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-29 19:19:25.206427180 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934409\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145377\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145377\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1678\n- 1679\n 3358 \N 189.186.92.202 6d98135b-8ae0-4777-87fb-43275700d2e0 2020-07-29 19:19:25.236795 36302 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FEnZv2onUdpq8Y3ABqjm\n- 9EnkwShra_S-x8J3whzd\n 3359 \N 189.186.92.202 6d98135b-8ae0-4777-87fb-43275700d2e0 2020-07-29 19:19:25.264153 36303 1159 Product \N \N 4 User \N create ---\nsku: ZAP-1159\nname: CESKY\ndescription: ALPARGATAS ROSA CON MOÑO\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 13\nproduct_service_key: '01010101'\n 1 El producto ZAP-1159 fue creado. 189.186.92.202 de6bbdcf-e450-47e5-8646-20527e697d22 2020-07-29 19:21:15.585479 36304 1159 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001159'\n 2 \N 189.186.92.202 de6bbdcf-e450-47e5-8646-20527e697d22 2020-07-29 19:21:15.628796 36305 2017 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1159\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 de6bbdcf-e450-47e5-8646-20527e697d22 2020-07-29 19:21:15.673546 36306 1160 Product \N \N 4 User \N create ---\nsku: CAR-1160\nname: 3BICV20401\ndescription: CARTERA CLOE\nprice_base: !ruby/object:BigDecimal 18:0.3495E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170823073'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1160 fue creado. 189.186.92.202 a2131fdd-02f0-4fba-a935-fe725212fbb8 2020-07-29 19:35:58.233642 36307 2018 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1160\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 a2131fdd-02f0-4fba-a935-fe725212fbb8 2020-07-29 19:35:58.27245 36308 1161 Product \N \N 4 User \N create ---\nsku: CAR-1161\nname: 1BICV20253\ndescription: BOLSITA CARTERA BICOLOR\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170818185'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1161 fue creado. 189.186.92.202 be0f8f2c-d16e-4c5f-9c76-abbde964102b 2020-07-29 19:46:00.400671 36309 2019 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1161\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 be0f8f2c-d16e-4c5f-9c76-abbde964102b 2020-07-29 19:46:00.439319 36310 1162 Product \N \N 4 User \N create ---\nsku: CAR-1162\nname: 2BICV20356\ndescription: CARTERA CLOE LETRA BLANCA\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170821512'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1162 fue creado. 189.186.92.202 8cc7fc67-d5e4-4dc0-bff4-0f259035718d 2020-07-29 19:47:37.001828 36311 2020 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1162\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 8cc7fc67-d5e4-4dc0-bff4-0f259035718d 2020-07-29 19:47:37.03825 36312 1163 Product \N \N 4 User \N create ---\nsku: CAR-1163\nname: 2BICV20318\ndescription: 'CARTERA CLOE '\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170820119'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1163 fue creado. 189.186.92.202 701ff160-7d32-4424-8f6e-4ec5460982dc 2020-07-29 19:48:21.218475 36313 2021 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1163\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 701ff160-7d32-4424-8f6e-4ec5460982dc 2020-07-29 19:48:21.259957 36314 318 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-55\namount: !ruby/object:BigDecimal 18:0.58445E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.58445E4\nobservations: ''\npurchase_date: 2020-07-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-55 por $ 5844.5 MXN creada. 189.186.92.202 5d0519eb-550b-4915-9f27-50d3fb289061 2020-07-29 19:48:27.430548 36315 2017 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.92.202 5d0519eb-550b-4915-9f27-50d3fb289061 2020-07-29 19:48:27.462707 36316 2018 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.92.202 5d0519eb-550b-4915-9f27-50d3fb289061 2020-07-29 19:48:27.497916 36317 2019 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.92.202 5d0519eb-550b-4915-9f27-50d3fb289061 2020-07-29 19:48:27.523338 36480 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sTPzMHG9oVnAhizo8tup\n- 5edaQAhiaSoFsKW9C1z6\n 3373 \N 177.228.119.167 54f12369-2fcb-4092-93f5-db6ddb550c65 2020-08-01 05:28:17.975469 36318 2022 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1157\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 5d0519eb-550b-4915-9f27-50d3fb289061 2020-07-29 19:48:27.550765 36319 2020 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.92.202 5d0519eb-550b-4915-9f27-50d3fb289061 2020-07-29 19:48:27.575922 36320 2021 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.92.202 5d0519eb-550b-4915-9f27-50d3fb289061 2020-07-29 19:48:27.603294 36321 1164 Product \N \N 4 User \N create ---\nsku: CAR-1164\nname: 3BICV20422\ndescription: CARTERA CLOE BRONCE Y NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170823820'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1164 fue creado. 189.186.92.202 4f4823e6-afc8-41cf-90cb-58aa03e8057a 2020-07-29 20:07:35.617046 36322 2023 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1164\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 4f4823e6-afc8-41cf-90cb-58aa03e8057a 2020-07-29 20:07:35.662226 36323 1165 Product \N \N 4 User \N create ---\nsku: CAR-1165\nname: 3BICV2040\ndescription: CARTERA CLOE ROJA\nprice_base: !ruby/object:BigDecimal 18:0.3995E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170823134'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1165 fue creado. 189.186.92.202 dee0997b-1ab1-440b-8dcd-090606cacc1c 2020-07-29 20:08:38.606834 36324 2024 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1165\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 dee0997b-1ab1-440b-8dcd-090606cacc1c 2020-07-29 20:08:38.649254 36325 319 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-128\namount: !ruby/object:BigDecimal 18:0.12985E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.12985E4\nobservations: ''\npurchase_date: 2020-07-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-128 por $ 1298.5 MXN creada. 189.186.92.202 cf352594-0153-43ac-b5c5-26a8aeb228c1 2020-07-29 20:08:43.697894 36326 2024 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.92.202 cf352594-0153-43ac-b5c5-26a8aeb228c1 2020-07-29 20:08:43.722694 36327 2023 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.92.202 cf352594-0153-43ac-b5c5-26a8aeb228c1 2020-07-29 20:08:43.754529 36328 320 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-129\namount: !ruby/object:BigDecimal 18:0.6995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6995E3\nobservations: ''\npurchase_date: 2020-07-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-129 por $ 699.5 MXN creada. 189.186.92.202 1a358128-10bd-44e2-b8c2-2bfcdcc27b63 2020-07-29 20:10:07.194925 36329 2025 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1148\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 1a358128-10bd-44e2-b8c2-2bfcdcc27b63 2020-07-29 20:10:07.219633 36330 321 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-56\namount: !ruby/object:BigDecimal 18:0.6995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6995E3\nobservations: ''\npurchase_date: 2020-07-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-56 por $ 699.5 MXN creada. 189.186.92.202 807b91b7-42b5-422f-9e90-4a7ce35ef0f9 2020-07-29 20:10:39.547774 36331 1984 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.92.202 807b91b7-42b5-422f-9e90-4a7ce35ef0f9 2020-07-29 20:10:39.579912 36332 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-25 00:46:19.667643000 Z\n- &1 2020-07-25 01:26:37.122729000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-29 21:46:12.512536002 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938315\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938315\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 154\n- 155\n 311 \N 189.186.92.202 0b472da2-99b4-4adc-b169-78ebbd8b9544 2020-07-29 21:46:12.521376 36333 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Nxt5zF3WX2KyURTQF5-B\n- ygcpvekAVDsoWWNVuV4i\n 312 \N 189.186.92.202 0b472da2-99b4-4adc-b169-78ebbd8b9544 2020-07-29 21:46:12.539936 36334 977 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1063E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1063.0 189.186.92.202 4a17bfaf-f1bb-4905-bb2a-ab33f5b8d6e0 2020-07-29 21:46:21.897967 36335 2629 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 977\namount: !ruby/object:BigDecimal 18:0.8534E2\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9899E2\nstatus: 0\ndate_sale: 2020-07-29\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-451\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 c67b795c-c994-4211-bdd6-69cd4bc43d46 2020-07-29 21:50:25.067853 36336 840 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.33E2\n- !ruby/object:BigDecimal 18:0.32E2\n 8 \N 189.186.92.202 c67b795c-c994-4211-bdd6-69cd4bc43d46 2020-07-29 21:50:25.099264 36337 2629 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 eb9df568-9df5-4b39-ac35-64c2ee334829 2020-07-29 21:50:30.176409 36338 3534 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 977\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.9899E2\nmove_type: '1'\nsale_id: 2629\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-451\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.101E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-451 189.186.92.202 eb9df568-9df5-4b39-ac35-64c2ee334829 2020-07-29 21:50:30.200374 36339 3535 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 977\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.898E3\nmove_type: '1'\nsale_id: 2613\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-441 189.186.92.202 05b7b9b2-a813-41b4-8646-e272df7a1d53 2020-07-29 23:14:46.147214 36340 2613 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.92.202 c03eee6c-6224-4ac2-9b7d-dba6ed6ca1e5 2020-07-29 23:14:48.034659 36341 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-29 05:27:14.252084000 Z\n- &1 2020-07-29 19:19:25.206427000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-29 23:41:57.326153050 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145377\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1679\n- 1680\n 3360 \N 189.186.92.202 5ab8b96f-b7b9-495b-8521-dd2c69f5f81b 2020-07-29 23:41:57.332882 36342 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9EnkwShra_S-x8J3whzd\n- 1cpErW5FX6nXStXwFqSk\n 3361 \N 189.186.92.202 5ab8b96f-b7b9-495b-8521-dd2c69f5f81b 2020-07-29 23:41:57.349426 36343 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-25 01:26:37.122729000 Z\n- &1 2020-07-29 21:46:12.512536000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-29 23:54:54.896950029 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938315\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 155\n- 156\n 313 \N 189.186.92.202 de87ec33-17ca-4041-b623-31380e95f2ed 2020-07-29 23:54:54.904378 36344 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ygcpvekAVDsoWWNVuV4i\n- 3Ys7BW22gJT3z_B-WgeZ\n 314 \N 189.186.92.202 de87ec33-17ca-4041-b623-31380e95f2ed 2020-07-29 23:54:54.923766 36345 2630 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 977\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-07-29\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-452\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 a607a5b2-6f67-406b-a049-cb22c6ba8c59 2020-07-29 23:57:44.814252 36346 2001 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.92.202 a607a5b2-6f67-406b-a049-cb22c6ba8c59 2020-07-29 23:57:44.842071 36347 2630 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 5d41ca3f-0299-4da4-b764-9dab5a93f215 2020-07-29 23:59:16.311217 36348 3536 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 977\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 2630\ncardnumber: 1525\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-452\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-452 189.186.92.202 5d41ca3f-0299-4da4-b764-9dab5a93f215 2020-07-29 23:59:16.333212 36349 1000 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 976\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.579E3\nphysical_cash: !ruby/object:BigDecimal 18:0.579E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.65.19 6c192251-0f4b-4450-b930-5832e2845cde 2020-07-30 00:05:58.892732 36350 976 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.65.19 6c192251-0f4b-4450-b930-5832e2845cde 2020-07-30 00:05:58.905104 36351 1001 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 976\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.579E3\nphysical_cash: !ruby/object:BigDecimal 18:0.579E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.65.19 e62b8fae-f780-4ada-b363-e30db7f0bcf5 2020-07-30 00:06:21.348908 36352 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-07-10 23:07:00.906729000 Z\n- &1 2020-07-24 23:30:23.475550000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-30 00:25:01.696535675 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 138\n- 139\n 278 \N 189.186.92.202 5b385e57-3dd5-43a4-b1fa-48ee3a0b8ecd 2020-07-30 00:25:01.703739 36353 9 User \N \N 9 User \N update ---\nunique_session_id:\n- CCBJzmuBF7CSigz3aCc6\n- GEMexxuXgG-1nozAXZWA\n 279 \N 189.186.92.202 5b385e57-3dd5-43a4-b1fa-48ee3a0b8ecd 2020-07-30 00:25:01.726456 36354 978 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.579E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 579.0 189.186.92.202 1c14a150-0e98-4399-80dd-6d076b058b1b 2020-07-30 00:25:06.745719 36355 348 Customer \N \N 9 User \N create ---\nnick_name: WNDY QUINTERO\nphone: "(667) 302-4108"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente WNDY QUINTERO fue registrado. 189.186.92.202 24d1663c-fd03-4065-87f5-b942ae05917f 2020-07-30 00:26:11.166407 36356 2631 Sale \N \N 9 User \N create ---\ncustomer_id: 348\nuser_id: 9\nopen_cash_register_id: 978\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-07-29\nsaletype: 2\nseller_id: 25\nsale_code: PV1-V-1259\nexpiration_date: 2020-09-02\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 6aaa2724-251a-4895-8b7d-62134ddd3c38 2020-07-30 00:26:19.335734 36357 2012 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.92.202 6aaa2724-251a-4895-8b7d-62134ddd3c38 2020-07-30 00:26:19.361988 36358 3537 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 978\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2631\ncardnumber: 1525\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1259\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1259 189.186.92.202 90eccf49-4e86-481a-89e0-4780c8a263eb 2020-07-30 00:26:46.499677 36359 2631 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.92.202 65547d78-569b-4c67-ab72-95083915c4bb 2020-07-30 00:26:48.020575 36360 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-29 21:46:12.512536000 Z\n- &1 2020-07-29 23:54:54.896950000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-30 00:33:32.257251831 Z\nsign_in_count:\n- 156\n- 157\n 315 \N 189.186.92.202 fe87f055-0a18-4711-8bb8-8754862b18eb 2020-07-30 00:33:32.26402 36362 1002 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 977\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.239599E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 27:0.8599899999999998E3\nphysical_cash: !ruby/object:BigDecimal 18:0.205999E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.92.202 cd15ae02-3b2e-4ea8-bbff-041d64357798 2020-07-30 00:34:59.047142 36363 977 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.92.202 cd15ae02-3b2e-4ea8-bbff-041d64357798 2020-07-30 00:34:59.062325 36364 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-07-24 19:08:34.811882000 Z\n- &1 2020-07-25 20:40:43.322904000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-30 01:39:25.427266299 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120915\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945904\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946316\n mask_addr: 4294967295\nsign_in_count:\n- 185\n- 186\n 372 \N 200.68.182.76 392167c3-dce9-4ae5-9d0d-2a03426b5963 2020-07-30 01:39:25.437969 36365 1 User \N \N 1 User \N update ---\nunique_session_id:\n- skyzWzZCN564Bxx526j4\n- HsHx8wPM5w8zDyAvU87p\n 373 \N 200.68.182.76 392167c3-dce9-4ae5-9d0d-2a03426b5963 2020-07-30 01:39:25.459282 36366 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-29 19:19:25.206427000 Z\n- &1 2020-07-29 23:41:57.326153000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-30 02:45:57.700045726 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1680\n- 1681\n 3362 \N 177.228.119.167 8c3ee7c3-1f92-4442-afe5-0f3d75519a50 2020-07-30 02:45:57.710827 36367 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1cpErW5FX6nXStXwFqSk\n- tXenNp2GVBsmkEQkKoDE\n 3363 \N 177.228.119.167 8c3ee7c3-1f92-4442-afe5-0f3d75519a50 2020-07-30 02:45:57.733637 36368 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-07-25 20:40:43.322904000 Z\n- &1 2020-07-30 01:39:25.427266000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-30 02:49:03.014838832 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946316\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538640\n mask_addr: 4294967295\nsign_in_count:\n- 186\n- 187\n 374 \N 177.228.114.16 e059b54d-9b2b-40db-a518-941a3a950ba6 2020-07-30 02:49:03.02281 36369 1 User \N \N 1 User \N update ---\nunique_session_id:\n- HsHx8wPM5w8zDyAvU87p\n- r2FQ9g1WS2xiRdvzstLr\n 375 \N 177.228.114.16 e059b54d-9b2b-40db-a518-941a3a950ba6 2020-07-30 02:49:03.037974 36370 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-28 16:01:57.694145000 Z\n- &1 2020-07-29 15:58:38.112894000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-30 17:25:40.696165213 Z\nsign_in_count:\n- 599\n- 600\n 1203 \N 187.149.65.19 7abd9c14-7f6c-4c04-a6e2-8e916931045f 2020-07-30 17:25:40.727098 36371 2 User \N \N 2 User \N update ---\nunique_session_id:\n- RzzwSpNQY-SsmRJnMxZk\n- AYSbNeqTFXs4MSGQgwJg\n 1204 \N 187.149.65.19 7abd9c14-7f6c-4c04-a6e2-8e916931045f 2020-07-30 17:25:40.753719 36372 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-29 23:54:54.896950000 Z\n- &1 2020-07-30 00:33:32.257251000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-30 18:33:59.919465493 Z\nsign_in_count:\n- 157\n- 158\n 317 \N 189.186.92.202 bd86706f-4d75-4716-ae04-0886dca3a033 2020-07-30 18:33:59.925276 36373 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Kfnp2y3KB4psQHirC-uy\n- yTDFsm2xMpG7-zWYuJq8\n 318 \N 189.186.92.202 bd86706f-4d75-4716-ae04-0886dca3a033 2020-07-30 18:33:59.941263 36374 979 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.85999E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 859.99 189.186.92.202 e147f3fe-580f-4a6f-8268-03ba9ef99022 2020-07-30 18:34:10.483897 36375 2632 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 979\namount: !ruby/object:BigDecimal 18:0.3098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3098E4\nstatus: 0\ndate_sale: 2020-07-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-453\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 6beda1f7-95d3-4190-80a5-8d0ba286f385 2020-07-30 18:40:21.85724 36376 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 26 \N 189.186.92.202 6beda1f7-95d3-4190-80a5-8d0ba286f385 2020-07-30 18:40:21.887028 36377 1977 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.92.202 6beda1f7-95d3-4190-80a5-8d0ba286f385 2020-07-30 18:40:21.920306 36378 2632 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 c9e2dae5-5367-404d-a68d-818f7177733e 2020-07-30 18:40:43.573812 36379 3538 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 979\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3098E4\nmove_type: '1'\nsale_id: 2632\ncardnumber: 1525\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-453\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-453 189.186.92.202 c9e2dae5-5367-404d-a68d-818f7177733e 2020-07-30 18:40:43.603694 36380 697 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 15 \N 187.149.65.19 d10ac319-efd8-4db1-b1d4-1e9925487b4f 2020-07-30 18:53:06.228679 36381 645 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-07-30\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.65.19 6d4c6d68-4984-4475-82d8-b30aa995b51b 2020-07-30 18:53:08.259777 36382 2633 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 979\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-07-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-454\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 1df175e2-0cc0-4c8a-98a6-bd117836bcf2 2020-07-30 21:10:06.373607 36383 1904 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.92.202 1df175e2-0cc0-4c8a-98a6-bd117836bcf2 2020-07-30 21:10:06.406863 36384 2633 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 1e3c1301-d853-42b2-971e-6437713e6283 2020-07-30 21:10:14.184384 36407 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-29 15:58:38.112894000 Z\n- &1 2020-07-30 17:25:40.696165000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-31 16:24:30.146962478 Z\nsign_in_count:\n- 600\n- 601\n 1205 \N 187.149.65.19 37920e27-f1fd-486b-8893-2e1cf4f8e5c0 2020-07-31 16:24:30.177245 36385 3539 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 979\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 2633\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-454\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-454 189.186.92.202 1e3c1301-d853-42b2-971e-6437713e6283 2020-07-30 21:10:14.209365 36386 2634 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 979\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-07-30\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-455\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 a532dc14-bf97-4d14-99e6-89b341edad37 2020-07-30 21:16:42.054428 36387 2017 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.92.202 a532dc14-bf97-4d14-99e6-89b341edad37 2020-07-30 21:16:42.107298 36388 2634 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 b7a4e725-d746-4f8a-b340-98060f624840 2020-07-30 21:17:19.674964 36389 3540 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 979\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 2634\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-455\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-455 189.186.92.202 b7a4e725-d746-4f8a-b340-98060f624840 2020-07-30 21:17:19.697676 36390 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-29 23:41:57.326153000 Z\n- &1 2020-07-30 02:45:57.700045000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-30 21:24:27.070495054 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1681\n- 1682\n 3364 \N 189.186.92.202 d3766e9f-5b02-447b-b528-dd11c7c4638e 2020-07-30 21:24:27.09602 36391 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tXenNp2GVBsmkEQkKoDE\n- NgXpyLMsoHzsexm1__DZ\n 3365 \N 189.186.92.202 d3766e9f-5b02-447b-b528-dd11c7c4638e 2020-07-30 21:24:27.121929 36392 2631 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV1-V-1259 cancelada. 187.149.65.19 cfcdc552-e34b-4038-aa24-1af7259c0bc4 2020-07-30 21:30:08.481412 36393 3537 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 978\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2631\ncardnumber: 1525\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1259\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.65.19 cfcdc552-e34b-4038-aa24-1af7259c0bc4 2020-07-30 21:30:08.523076 36394 2012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.65.19 cfcdc552-e34b-4038-aa24-1af7259c0bc4 2020-07-30 21:30:08.56837 36395 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-30 00:33:32.257251000 Z\n- &1 2020-07-30 18:33:59.919465000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-30 23:20:49.659670222 Z\nsign_in_count:\n- 158\n- 159\n 319 \N 189.186.92.202 d6c7c040-1f53-4258-a871-6886864697fc 2020-07-30 23:20:49.66509 36396 18 User \N \N 18 User \N update ---\nunique_session_id:\n- yTDFsm2xMpG7-zWYuJq8\n- kn-d_AA4PNq2XAfdAjKA\n 320 \N 189.186.92.202 d6c7c040-1f53-4258-a871-6886864697fc 2020-07-30 23:20:49.678677 36397 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-30 02:45:57.700045000 Z\n- &1 2020-07-30 21:24:27.070495000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-30 23:38:28.143489407 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1682\n- 1683\n 3366 \N 189.186.92.202 807861d3-11db-447b-8485-98e84a18fbcc 2020-07-30 23:38:28.150285 36398 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NgXpyLMsoHzsexm1__DZ\n- YTr-Wzmds1g_xT_Shn5Q\n 3367 \N 189.186.92.202 807861d3-11db-447b-8485-98e84a18fbcc 2020-07-30 23:38:28.168413 36399 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-07-30 01:39:25.427266000 Z\n- &1 2020-07-30 02:49:03.014838000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-31 00:14:32.238741780 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538640\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538640\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934441\n mask_addr: 4294967295\nsign_in_count:\n- 187\n- 188\n 376 \N 200.68.135.233 3eb6afcc-9fc7-4c2a-8579-a2bd1fe57354 2020-07-31 00:14:32.246658 36400 1 User \N \N 1 User \N update ---\nunique_session_id:\n- r2FQ9g1WS2xiRdvzstLr\n- 7bGXMdoqFHUzXYAi1aSV\n 377 \N 200.68.135.233 3eb6afcc-9fc7-4c2a-8579-a2bd1fe57354 2020-07-31 00:14:32.264313 36401 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-30 18:33:59.919465000 Z\n- &1 2020-07-30 23:20:49.659670000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-31 00:26:18.985103180 Z\nsign_in_count:\n- 159\n- 160\n 321 \N 189.186.92.202 f29e09b2-085b-4a84-b923-96852baa750f 2020-07-31 00:26:18.990506 36402 18 User \N \N 18 User \N update ---\nunique_session_id:\n- kn-d_AA4PNq2XAfdAjKA\n- VpfGka_X2TyBeQ-tx9K_\n 322 \N 189.186.92.202 f29e09b2-085b-4a84-b923-96852baa750f 2020-07-31 00:26:19.00384 36403 1003 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 979\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.5196E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.22E4\ncash_fund: !ruby/object:BigDecimal 18:0.757E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2957E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.92.202 bcae7abf-cba1-4952-80d8-8a7078d31449 2020-07-31 00:39:56.444857 36404 979 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.92.202 bcae7abf-cba1-4952-80d8-8a7078d31449 2020-07-31 00:39:56.459116 36405 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-30 21:24:27.070495000 Z\n- &1 2020-07-30 23:38:28.143489000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-31 16:12:19.048390492 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1683\n- 1684\n 3368 \N 177.228.119.167 d319767c-48eb-4a1a-86cc-b825bf3ba287 2020-07-31 16:12:19.079192 36406 4 User \N \N 4 User \N update ---\nunique_session_id:\n- YTr-Wzmds1g_xT_Shn5Q\n- w2bTTFoPbj_2Nz2FypWM\n 3369 \N 177.228.119.167 d319767c-48eb-4a1a-86cc-b825bf3ba287 2020-07-31 16:12:19.105282 36505 984 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.92.202 45774c25-4c9e-4c08-acef-dc9f7e01d27f 2020-08-02 00:35:09.153152 36409 1004 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 978\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.579E3\nphysical_cash: !ruby/object:BigDecimal 18:0.579E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.65.19 1ef83fdd-d67c-4132-9976-b33278a39a7c 2020-07-31 16:25:39.879631 36410 978 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.65.19 1ef83fdd-d67c-4132-9976-b33278a39a7c 2020-07-31 16:25:39.899187 36411 980 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.579E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 579.0 187.149.65.19 5ff91805-c1f1-4d1d-afc8-330f1d082eb7 2020-07-31 16:25:54.842712 36412 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-30 23:20:49.659670000 Z\n- &1 2020-07-31 00:26:18.985103000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-31 20:51:34.918739688 Z\nsign_in_count:\n- 160\n- 161\n 323 \N 189.186.92.202 30810f45-9ce0-43b8-b699-6896fc1712b8 2020-07-31 20:51:34.948096 36413 18 User \N \N 18 User \N update ---\nunique_session_id:\n- VpfGka_X2TyBeQ-tx9K_\n- _TC-hYhCr4aNBNnnjyzd\n 324 \N 189.186.92.202 30810f45-9ce0-43b8-b699-6896fc1712b8 2020-07-31 20:51:34.970319 36414 349 Customer \N \N 2 User \N create ---\nnick_name: CITLALI RUIZ\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CITLALI RUIZ fue registrado. 187.149.65.19 1299e803-fd51-4b23-ac45-56e6bf561504 2020-07-31 21:05:41.29435 36415 2635 Sale \N \N 2 User \N create ---\ncustomer_id: 349\nuser_id: 2\nopen_cash_register_id: 980\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-07-31\nsaletype: 2\nseller_id: 25\nsale_code: PV1-V-1260\nexpiration_date: 2020-09-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.65.19 e6825825-9513-4bd6-9db3-fc05f9399268 2020-07-31 21:06:10.882332 36416 2012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.65.19 e6825825-9513-4bd6-9db3-fc05f9399268 2020-07-31 21:06:10.92933 36417 3541 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 980\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2635\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1260\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1260 187.149.65.19 17f0eb69-3dfe-476e-890d-675ab9f5c7b2 2020-07-31 21:06:18.585499 36418 3541 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 980\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2635\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1260\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.65.19 9caf2b94-c91c-47ab-b914-cf1e8bbc1f9a 2020-07-31 21:06:23.153569 36419 2635 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1260 cancelada. 187.149.65.19 a7b3da61-fd9a-469d-b632-c0ce0d9910b9 2020-07-31 21:07:12.657802 36420 2012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.65.19 a7b3da61-fd9a-469d-b632-c0ce0d9910b9 2020-07-31 21:07:12.681276 36421 2636 Sale \N \N 2 User \N create ---\ncustomer_id: 349\nuser_id: 2\nopen_cash_register_id: 980\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-07-31\nsaletype: 2\nseller_id: 25\nsale_code: PV1-V-1261\nexpiration_date: 2020-09-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.65.19 0aa206ac-9b12-4cae-bdbe-e6ea65186fbe 2020-07-31 21:08:14.907317 36422 2012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.65.19 0aa206ac-9b12-4cae-bdbe-e6ea65186fbe 2020-07-31 21:08:14.936078 36423 2636 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1261 cancelada. 187.149.65.19 f0973632-fedc-42e5-a7de-157ff5ca485c 2020-07-31 21:09:17.587134 36424 2012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.65.19 f0973632-fedc-42e5-a7de-157ff5ca485c 2020-07-31 21:09:17.608111 36425 2637 Sale \N \N 2 User \N create ---\ncustomer_id: 349\nuser_id: 2\nopen_cash_register_id: 980\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-07-31\nsaletype: 2\nseller_id: 25\nsale_code: PV1-V-1262\nexpiration_date: 2020-09-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.65.19 fdbdac63-4b13-4943-96e5-252ab4555fbd 2020-07-31 21:09:47.074881 36426 2012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.65.19 fdbdac63-4b13-4943-96e5-252ab4555fbd 2020-07-31 21:09:47.103649 36427 2637 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1262 cancelada. 187.149.65.19 51f173be-133f-4e55-b26b-c8969ce57417 2020-07-31 21:10:49.274587 36428 2012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 187.149.65.19 51f173be-133f-4e55-b26b-c8969ce57417 2020-07-31 21:10:49.308309 36429 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-30 17:25:40.696165000 Z\n- &1 2020-07-31 16:24:30.146962000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-31 21:11:51.043204646 Z\nsign_in_count:\n- 601\n- 602\n 1207 \N 187.149.65.19 68dc9701-bfd4-4b8e-90dc-07a02631e53c 2020-07-31 21:11:51.04958 36430 2 User \N \N 2 User \N update ---\nunique_session_id:\n- rBHER2_uGHEYRtFd8F7z\n- ZZzB4_eyqRuxE_xXUnyR\n 1208 \N 187.149.65.19 68dc9701-bfd4-4b8e-90dc-07a02631e53c 2020-07-31 21:11:51.064087 36431 2638 Sale \N \N 2 User \N create ---\ncustomer_id: 349\nuser_id: 2\nopen_cash_register_id: 980\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-07-31\nsaletype: 2\nseller_id: 25\nsale_code: PV1-V-1263\nexpiration_date: 2020-09-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.65.19 cec1f5f9-4f66-4b59-81ed-2072985aa072 2020-07-31 21:12:21.198427 36432 2012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.65.19 cec1f5f9-4f66-4b59-81ed-2072985aa072 2020-07-31 21:12:21.225607 36433 2638 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1263 cancelada. 187.149.65.19 203d1954-4325-49f5-bc83-68962aaef35b 2020-07-31 21:12:38.686698 36435 981 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.757E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 757.0 189.186.92.202 a7acc5c9-d793-4488-8694-19d2b4709004 2020-07-31 21:23:46.026621 36436 2639 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 981\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-07-31\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-456\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 77bb754b-7207-4f8a-9688-377661035a62 2020-07-31 21:23:59.107621 36437 1970 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.92.202 77bb754b-7207-4f8a-9688-377661035a62 2020-07-31 21:23:59.133425 36438 2639 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 07af61e0-e721-400b-a4c4-206407e56153 2020-07-31 21:24:12.707287 36439 3542 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 981\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 2639\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-456\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-456 189.186.92.202 07af61e0-e721-400b-a4c4-206407e56153 2020-07-31 21:24:12.747165 36440 349 Customer \N \N 2 User \N update ---\nphone:\n- ''\n- "(665) 445-4545"\n 2 El cliente CITLALI RUIZ fue registrado. 187.149.65.19 f3f6c1b4-48c6-4e81-954a-d64e98d236d8 2020-07-31 21:39:14.586872 36441 2640 Sale \N \N 2 User \N create ---\ncustomer_id: 349\nuser_id: 2\nopen_cash_register_id: 980\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-07-31\nsaletype: 2\nseller_id: 25\nsale_code: PV1-V-1264\nexpiration_date: 2020-09-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.65.19 74a0e768-0f51-427c-bcab-ef9a093ae18c 2020-07-31 21:39:51.610821 36442 2012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 13 \N 187.149.65.19 74a0e768-0f51-427c-bcab-ef9a093ae18c 2020-07-31 21:39:51.639358 36443 2640 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1264 cancelada. 187.149.65.19 953038e4-64fb-48c1-8aef-6ffcbf80330d 2020-07-31 21:41:12.166534 36444 2012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 14 \N 187.149.65.19 953038e4-64fb-48c1-8aef-6ffcbf80330d 2020-07-31 21:41:12.188964 36445 1166 Product \N \N 18 User \N create ---\nsku: BOL-1166\nname: pañaleta letras\ndescription: cloe\nprice_base: !ruby/object:BigDecimal 18:0.10995E4\nprice_sale: !ruby/object:BigDecimal 18:0.2199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1166 fue creado. 189.186.92.202 f3348b13-7c55-49af-bcd5-8cb506aa2cd3 2020-07-31 22:31:37.462041 36446 1166 Product \N \N 18 User \N update ---\nbarcode:\n- ''\n- '0001166'\n 2 \N 189.186.92.202 f3348b13-7c55-49af-bcd5-8cb506aa2cd3 2020-07-31 22:31:37.497769 36447 2026 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1166\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 f3348b13-7c55-49af-bcd5-8cb506aa2cd3 2020-07-31 22:31:37.530156 36448 322 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-57\namount: !ruby/object:BigDecimal 18:0.10995E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.10995E4\nobservations: ''\npurchase_date: 2020-07-31\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-57 por $ 1099.5 MXN creada. 189.186.92.202 1d26a5cd-49c1-4034-b234-fe779e69df69 2020-07-31 22:31:44.419398 36449 2026 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.92.202 1d26a5cd-49c1-4034-b234-fe779e69df69 2020-07-31 22:31:44.444362 36450 2641 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 981\namount: !ruby/object:BigDecimal 18:0.2199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2199E4\nstatus: 0\ndate_sale: 2020-07-31\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-457\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 ddc20570-c4e9-42e4-972f-22bad06feea4 2020-07-31 22:32:05.264461 36451 2026 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.92.202 ddc20570-c4e9-42e4-972f-22bad06feea4 2020-07-31 22:32:05.290572 36452 2641 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 a6a72d4b-855f-43da-9155-279f82aca24a 2020-07-31 22:32:33.371282 36453 3543 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 981\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2199E4\nmove_type: '1'\nsale_id: 2641\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-457\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-457 189.186.92.202 a6a72d4b-855f-43da-9155-279f82aca24a 2020-07-31 22:32:33.394512 36454 2642 Sale \N \N 2 User \N create ---\ncustomer_id: 348\nuser_id: 2\nopen_cash_register_id: 980\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-07-31\nsaletype: 2\nseller_id: 25\nsale_code: PV1-V-1265\nexpiration_date: 2020-09-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.65.19 0c31c222-bec4-4677-b711-44d5fb070708 2020-07-31 23:05:28.149614 36455 2012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 15 \N 187.149.65.19 0c31c222-bec4-4677-b711-44d5fb070708 2020-07-31 23:05:28.18273 36456 2642 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1265 cancelada. 187.149.65.19 59d10b81-ed78-429d-9f56-be6c75866e93 2020-07-31 23:10:29.785528 36457 2012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 16 \N 187.149.65.19 59d10b81-ed78-429d-9f56-be6c75866e93 2020-07-31 23:10:29.808608 36481 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-31 16:24:30.146962000 Z\n- &1 2020-07-31 21:11:51.043204000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-01 16:47:27.666943540 Z\nsign_in_count:\n- 602\n- 603\n 1209 \N 187.149.65.19 973cd106-e92a-4f2f-8d8c-dd0f9ab1deea 2020-08-01 16:47:27.685039 36458 2643 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 981\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-07-31\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-458\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 7f56e191-6b9b-4b42-bbdc-96d575dac1a6 2020-07-31 23:28:04.481548 36459 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 43 \N 189.186.92.202 7f56e191-6b9b-4b42-bbdc-96d575dac1a6 2020-07-31 23:28:04.521037 36460 2643 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 c210496a-785c-4410-8b71-122f64a88d3c 2020-07-31 23:28:15.192476 36461 3544 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 981\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 2643\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-458\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-458 189.186.92.202 c210496a-785c-4410-8b71-122f64a88d3c 2020-07-31 23:28:15.215181 36462 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-30 23:38:28.143489000 Z\n- &1 2020-07-31 16:12:19.048390000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-07-31 23:43:59.252592636 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1684\n- 1685\n 3370 \N 189.186.92.202 5c8b7e6f-a6f3-4fa8-9242-2154da9e785d 2020-07-31 23:43:59.264042 36463 4 User \N \N 4 User \N update ---\nunique_session_id:\n- w2bTTFoPbj_2Nz2FypWM\n- sTPzMHG9oVnAhizo8tup\n 3371 \N 189.186.92.202 5c8b7e6f-a6f3-4fa8-9242-2154da9e785d 2020-07-31 23:43:59.292813 36464 1005 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 980\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.579E3\nphysical_cash: !ruby/object:BigDecimal 18:0.579E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.65.19 892d324b-0422-4124-9ab9-d799f5078060 2020-07-31 23:59:57.954987 36465 980 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.65.19 892d324b-0422-4124-9ab9-d799f5078060 2020-07-31 23:59:57.974891 36466 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-31 00:26:18.985103000 Z\n- &1 2020-07-31 20:51:34.918739000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-01 00:02:54.972824392 Z\nsign_in_count:\n- 161\n- 162\n 325 \N 189.186.92.202 d96916aa-7a18-4cd1-98df-eb41c20b021f 2020-08-01 00:02:54.978837 36467 18 User \N \N 18 User \N update ---\nunique_session_id:\n- _TC-hYhCr4aNBNnnjyzd\n- Eg9j9GZ7wLi1sBEf-VLp\n 326 \N 189.186.92.202 d96916aa-7a18-4cd1-98df-eb41c20b021f 2020-08-01 00:02:54.994577 36468 1006 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 981\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.5397E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.5E4\ncash_fund: !ruby/object:BigDecimal 18:0.84E3\nphysical_cash: !ruby/object:BigDecimal 18:0.584E4\nobservations: SOBRARON 183 , 500 DE LA PAÑALERA FUE TRANFERENCIA\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.92.202 a36356a0-f120-48ae-b380-8aa99d6d860b 2020-08-01 00:30:03.850902 36469 981 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.92.202 a36356a0-f120-48ae-b380-8aa99d6d860b 2020-08-01 00:30:03.864532 36470 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-07-31 20:51:34.918739000 Z\n- &1 2020-08-01 00:02:54.972824000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-01 00:45:26.443350107 Z\nsign_in_count:\n- 162\n- 163\n 327 \N 189.186.92.202 0de13a3f-b9e2-4837-a33c-d445c30d4946 2020-08-01 00:45:26.452447 36471 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Eg9j9GZ7wLi1sBEf-VLp\n- CHe9Ggaqk1Xqin4jLDsN\n 328 \N 189.186.92.202 0de13a3f-b9e2-4837-a33c-d445c30d4946 2020-08-01 00:45:26.468336 36472 982 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.84E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 840.0 189.186.92.202 4ca059b7-449d-42ca-9af8-66ee0ad5aa74 2020-08-01 00:45:48.769178 36473 2644 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 982\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.99E2\ntotal: !ruby/object:BigDecimal 18:0.1E4\nstatus: 0\ndate_sale: 2020-07-31\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-459\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 9efc3ae2-f2ca-4da0-adf3-4a87570c662b 2020-08-01 00:46:05.197693 36474 1417 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 189.186.92.202 9efc3ae2-f2ca-4da0-adf3-4a87570c662b 2020-08-01 00:46:05.225874 36475 2644 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 c9b80658-e2ff-4cc9-823d-6249f8e170bc 2020-08-01 00:46:51.962471 36476 3545 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 982\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 2644\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-459\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-459 189.186.92.202 c9b80658-e2ff-4cc9-823d-6249f8e170bc 2020-08-01 00:46:51.985125 36477 1007 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 982\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.84E3\nphysical_cash: !ruby/object:BigDecimal 18:0.184E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.92.202 c74b57f8-a53f-4056-84d8-b6875636dc3a 2020-08-01 00:49:08.855292 36478 982 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.92.202 c74b57f8-a53f-4056-84d8-b6875636dc3a 2020-08-01 00:49:08.870515 36479 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-31 16:12:19.048390000 Z\n- &1 2020-07-31 23:43:59.252592000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-01 05:28:17.944346049 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1685\n- 1686\n 3372 \N 177.228.119.167 54f12369-2fcb-4092-93f5-db6ddb550c65 2020-08-01 05:28:17.953572 36482 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ZZzB4_eyqRuxE_xXUnyR\n- PGo42REfycdCsnRwSTvo\n 1210 \N 187.149.65.19 973cd106-e92a-4f2f-8d8c-dd0f9ab1deea 2020-08-01 16:47:27.706515 36483 983 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.579E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 579.0 187.149.65.19 667a34b4-681c-418e-827e-b6acfed6d276 2020-08-01 16:47:39.700945 36484 2645 Sale \N \N 2 User \N create ---\ncustomer_id: 349\nuser_id: 2\nopen_cash_register_id: 983\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-08-01\nsaletype: 2\nseller_id: 25\nsale_code: PV1-V-1266\nexpiration_date: 2020-09-05\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.65.19 6af2b4ee-7a96-43ed-8af7-62cff78f073e 2020-08-01 16:51:02.816568 36485 2012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 17 \N 187.149.65.19 6af2b4ee-7a96-43ed-8af7-62cff78f073e 2020-08-01 16:51:02.846019 36486 2645 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1266 cancelada. 187.149.65.19 f04c42c0-c075-4a39-b49d-039301b94095 2020-08-01 16:51:28.647382 36487 2012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 18 \N 187.149.65.19 f04c42c0-c075-4a39-b49d-039301b94095 2020-08-01 16:51:28.669837 36488 984 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.84E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 840.0 189.186.92.202 5a929665-0f76-456c-a100-1d286142b47d 2020-08-01 18:42:24.539046 36489 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-07-31 23:43:59.252592000 Z\n- &1 2020-08-01 05:28:17.944346000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-01 19:27:38.975624986 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1686\n- 1687\n 3374 \N 177.228.119.167 5623ef7b-4b50-4aad-a5ec-819dcba9712c 2020-08-01 19:27:39.006991 36490 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5edaQAhiaSoFsKW9C1z6\n- BA6447xrv14-CKc4Ty5y\n 3375 \N 177.228.119.167 5623ef7b-4b50-4aad-a5ec-819dcba9712c 2020-08-01 19:27:39.032454 36491 2646 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 983\namount: !ruby/object:BigDecimal 18:0.63103E3\ntax: !ruby/object:BigDecimal 18:0.6896E2\ndiscount: !ruby/object:BigDecimal 18:0.2E3\ntotal: !ruby/object:BigDecimal 18:0.49999E3\nstatus: 0\ndate_sale: 2020-08-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1267\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.65.19 aa3934a2-d71f-4a8b-a306-1568e3131981 2020-08-01 21:00:50.852049 36492 735 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.37E2\n- !ruby/object:BigDecimal 18:0.35E2\n 6 \N 187.149.65.19 aa3934a2-d71f-4a8b-a306-1568e3131981 2020-08-01 21:00:50.893226 36493 2646 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.65.19 f00548cc-a944-40aa-a2db-7c139d7b3ff9 2020-08-01 21:01:55.490378 36494 3546 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 983\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49999E3\nmove_type: '1'\nsale_id: 2646\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1267\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1267 187.149.65.19 f00548cc-a944-40aa-a2db-7c139d7b3ff9 2020-08-01 21:01:55.512679 36495 2647 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 984\namount: !ruby/object:BigDecimal 18:0.2398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2398E4\nstatus: 0\ndate_sale: 2020-08-01\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-460\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 8ebb3903-e23c-4dc8-b817-00ece5de86c9 2020-08-01 23:52:27.026739 36496 1966 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.92.202 8ebb3903-e23c-4dc8-b817-00ece5de86c9 2020-08-01 23:52:27.111081 36497 2021 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.92.202 8ebb3903-e23c-4dc8-b817-00ece5de86c9 2020-08-01 23:52:27.147751 36498 2647 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 ab970831-2d6e-42a9-b5e3-b94328cf358e 2020-08-01 23:53:14.231603 36499 3547 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 984\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2398E4\nmove_type: '1'\nsale_id: 2647\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-460\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E4\nchange: !ruby/object:BigDecimal 18:0.102E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-460 189.186.92.202 ab970831-2d6e-42a9-b5e3-b94328cf358e 2020-08-01 23:53:14.255979 36500 317 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 983\nquantity: !ruby/object:BigDecimal 18:0.74E3\nstatus: 1\nobservations: adelanto de pago rocio\nexpense_date: 2020-08-01\nexpense_code: PV1-E-219\n 1 Egreso por 740.0 registrado 187.149.65.19 bcebb9d8-4ef3-461d-89d4-99d3d3c41cf9 2020-08-01 23:55:59.313689 36501 3548 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 983\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.74E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 317\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.65.19 bcebb9d8-4ef3-461d-89d4-99d3d3c41cf9 2020-08-01 23:55:59.335293 36502 1008 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 983\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.49999E3\namount_out: !ruby/object:BigDecimal 18:0.74E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.339E3\nphysical_cash: !ruby/object:BigDecimal 18:0.339E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.65.19 93f5500c-7ea3-46f4-8a2c-3f9e3c637611 2020-08-01 23:57:23.119964 36503 983 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.65.19 93f5500c-7ea3-46f4-8a2c-3f9e3c637611 2020-08-01 23:57:23.133798 36504 1009 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 984\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.2398E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.738E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3238E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.92.202 45774c25-4c9e-4c08-acef-dc9f7e01d27f 2020-08-02 00:35:09.134239 36506 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-01 05:28:17.944346000 Z\n- &1 2020-08-01 19:27:38.975624000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-03 05:06:22.330566976 Z\nsign_in_count:\n- 1687\n- 1688\n 3376 \N 177.228.119.167 23646dfa-3912-46d3-9c71-db7e4a758be4 2020-08-03 05:06:22.359439 36507 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BA6447xrv14-CKc4Ty5y\n- "-19cZ7R7E3LEX3XGf_do"\n 3377 \N 177.228.119.167 23646dfa-3912-46d3-9c71-db7e4a758be4 2020-08-03 05:06:22.384273 36508 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-07-31 21:11:51.043204000 Z\n- &1 2020-08-01 16:47:27.666943000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-03 16:31:08.201673426 Z\nsign_in_count:\n- 603\n- 604\n 1211 \N 187.149.65.19 d26031b4-c726-4f68-8ba5-62e7c67ff612 2020-08-03 16:31:08.231278 36509 2 User \N \N 2 User \N update ---\nunique_session_id:\n- PGo42REfycdCsnRwSTvo\n- HDeP79EyrX1ssyYKTaLv\n 1212 \N 187.149.65.19 d26031b4-c726-4f68-8ba5-62e7c67ff612 2020-08-03 16:31:08.254768 36510 985 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.339E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 339.0 187.149.65.19 f0822ac7-3017-47c0-a984-d1c207d12a65 2020-08-03 16:32:00.130986 36511 2648 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 985\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-08-03\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1268\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.65.19 4f9d436f-cee5-4c80-afd2-3fbf7c927f6d 2020-08-03 16:32:34.177408 36512 2012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 19 \N 187.149.65.19 4f9d436f-cee5-4c80-afd2-3fbf7c927f6d 2020-08-03 16:32:34.208589 36513 2648 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.65.19 a6cb6667-98a5-423b-a278-0aa48dcc646f 2020-08-03 16:32:59.070298 36514 3549 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 985\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 2648\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1268\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAMANTHA\n 1 movimiento de efectivo por venta con folio PV1-V-1268 187.149.65.19 a6cb6667-98a5-423b-a278-0aa48dcc646f 2020-08-03 16:32:59.09771 36515 3550 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 985\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 2648\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1268\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAMANTHA\n 1 movimiento de efectivo por venta con folio PV1-V-1268 187.149.65.19 afa7618f-56e0-44fe-8f89-4a8d9d2d0e90 2020-08-03 16:33:08.392943 36516 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-07-30 02:49:03.014838000 Z\n- &1 2020-07-31 00:14:32.238741000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-03 17:04:38.290098939 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538640\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934441\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934441\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120915\n mask_addr: 4294967295\nsign_in_count:\n- 188\n- 189\n 378 \N 187.149.65.19 aaf05653-f356-4089-89c6-310dd301d932 2020-08-03 17:04:38.297649 36517 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 7bGXMdoqFHUzXYAi1aSV\n- 3_qqrzw5eaz7Tv9moEME\n 379 \N 187.149.65.19 aaf05653-f356-4089-89c6-310dd301d932 2020-08-03 17:04:38.314375 36518 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-07-31 00:14:32.238741000 Z\n- &1 2020-08-03 17:04:38.290098000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-03 17:07:52.007980436 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934441\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120915\n mask_addr: 4294967295\nsign_in_count:\n- 189\n- 190\n 380 \N 187.149.65.19 be7760a5-cee3-4068-b7dc-423a7d5a9455 2020-08-03 17:07:52.0146 36519 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 3_qqrzw5eaz7Tv9moEME\n- ZNzXnMj-HefV9snd-zHe\n 381 \N 187.149.65.19 be7760a5-cee3-4068-b7dc-423a7d5a9455 2020-08-03 17:07:52.03102 36520 318 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 985\nquantity: !ruby/object:BigDecimal 18:0.7E3\nstatus: 1\nobservations: RESTO DE SUELDO ROCIO\nexpense_date: 2020-08-03\nexpense_code: PV1-E-220\n 1 Egreso por 700.0 registrado 187.149.71.30 f2d6fd97-0495-4e73-8e0c-3d8bf0ce11aa 2020-08-03 18:05:48.911432 36521 3551 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 985\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 318\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.71.30 f2d6fd97-0495-4e73-8e0c-3d8bf0ce11aa 2020-08-03 18:05:48.932581 36522 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-01 00:02:54.972824000 Z\n- &1 2020-08-01 00:45:26.443350000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-03 18:34:56.210923155 Z\nsign_in_count:\n- 163\n- 164\n 329 \N 189.186.92.202 3001b4d3-2648-4591-9b7a-594949b109d2 2020-08-03 18:34:56.240169 36523 18 User \N \N 18 User \N update ---\nunique_session_id:\n- CHe9Ggaqk1Xqin4jLDsN\n- _9iGdj5SyFGycZf8KFKY\n 330 \N 189.186.92.202 3001b4d3-2648-4591-9b7a-594949b109d2 2020-08-03 18:34:56.26274 36524 986 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.738E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 738.0 189.186.92.202 f666efae-8cdd-4500-953a-37453d4dab74 2020-08-03 18:35:22.315933 36525 2649 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 986\namount: !ruby/object:BigDecimal 18:0.472128E4\ntax: !ruby/object:BigDecimal 18:0.27572E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4997E4\nstatus: 0\ndate_sale: 2020-08-03\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-461\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 898ec369-0984-486e-9387-e7f581f28ce4 2020-08-03 18:39:11.712477 36526 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 27 \N 189.186.92.202 898ec369-0984-486e-9387-e7f581f28ce4 2020-08-03 18:39:11.746239 36527 1464 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.92.202 898ec369-0984-486e-9387-e7f581f28ce4 2020-08-03 18:39:11.791024 36528 1985 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.92.202 898ec369-0984-486e-9387-e7f581f28ce4 2020-08-03 18:39:11.825276 36529 2649 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 e4eb375d-4bde-426b-a2b9-07816d9c0852 2020-08-03 18:40:17.870769 36530 3552 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 986\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.4997E4\nmove_type: '1'\nsale_id: 2649\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-461\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4997E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-461 189.186.92.202 e4eb375d-4bde-426b-a2b9-07816d9c0852 2020-08-03 18:40:17.902689 36531 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-01 19:27:38.975624000 Z\n- &1 2020-08-03 05:06:22.330566000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-03 19:16:23.618866466 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1688\n- 1689\n 3378 \N 189.186.92.202 1c4ced8d-d6f2-4faa-b705-e839a2b18aee 2020-08-03 19:16:23.646643 36532 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-19cZ7R7E3LEX3XGf_do"\n- mYr9PzkAFsWnjqy4ajU6\n 3379 \N 189.186.92.202 1c4ced8d-d6f2-4faa-b705-e839a2b18aee 2020-08-03 19:16:23.671286 36533 323 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-58\namount: !ruby/object:BigDecimal 18:0.142405E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.142405E5\nobservations: ''\npurchase_date: 2020-08-03\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-58 por $ 14240.5 MXN creada. 189.186.92.202 a8be774f-71fb-47f7-aa9d-3cc47eb66716 2020-08-03 19:18:18.249252 36534 1836 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.28E2\n 28 \N 189.186.92.202 a8be774f-71fb-47f7-aa9d-3cc47eb66716 2020-08-03 19:18:18.273876 36535 324 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-59\namount: !ruby/object:BigDecimal 18:0.87945E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.87945E4\nobservations: ''\npurchase_date: 2020-08-03\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-59 por $ 8794.5 MXN creada. 189.186.92.202 3e42a227-a76b-4585-9776-195d7d466003 2020-08-03 19:19:11.462323 36536 1822 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.11E2\n 44 \N 189.186.92.202 3e42a227-a76b-4585-9776-195d7d466003 2020-08-03 19:19:11.484133 36537 325 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-130\namount: !ruby/object:BigDecimal 18:0.13891E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.13891E5\nobservations: ''\npurchase_date: 2020-08-03\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-130 por $ 13891.0 MXN creada. 189.186.92.202 c69b7e5e-cbd9-4d66-9fab-8efe1d18d453 2020-08-03 19:46:16.457712 36538 1821 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.8E1\n 24 \N 189.186.92.202 c69b7e5e-cbd9-4d66-9fab-8efe1d18d453 2020-08-03 19:46:16.480434 36539 1937 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.15E2\n 10 \N 189.186.92.202 c69b7e5e-cbd9-4d66-9fab-8efe1d18d453 2020-08-03 19:46:16.505697 36540 1167 Product \N \N 4 User \N create ---\nsku: BOL-1167\nname: 1BLCI19311\ndescription: BOLSO CHAROL CLOE\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170766776'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1167 fue creado. 189.186.92.202 65bbf646-8f1d-4c2c-9f6b-d5e16f19809e 2020-08-03 19:47:58.306014 36541 2027 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1167\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 65bbf646-8f1d-4c2c-9f6b-d5e16f19809e 2020-08-03 19:47:58.356627 36542 1168 Product \N \N 4 User \N create ---\nsku: BOL-1168\nname: 1BLCP20938\ndescription: BOLSO CROSSBODY\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170795325'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1168 fue creado. 189.186.92.202 03c9685e-da37-44c0-a594-4e422ee11720 2020-08-03 19:49:05.41994 36543 2028 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1168\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 03c9685e-da37-44c0-a594-4e422ee11720 2020-08-03 19:49:05.458124 36544 1169 Product \N \N 4 User \N create ---\nsku: BOL-1169\nname: 3BLVV20425\ndescription: BOLSO CROSSBODY CON PAÑUELO\nprice_base: !ruby/object:BigDecimal 18:0.5495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170823899'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1169 fue creado. 189.186.92.202 f7b81fa4-0528-4892-add3-053085725f78 2020-08-03 19:50:41.052052 36545 2029 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1169\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 f7b81fa4-0528-4892-add3-053085725f78 2020-08-03 19:50:41.093686 36546 1170 Product \N \N 4 User \N create ---\nsku: BOL-1170\nname: 1BLCP20976\ndescription: BACK PACK ROJA\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170796469'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1170 fue creado. 189.186.92.202 5d73720d-ecb2-4938-881d-1965a4b31cf3 2020-08-03 19:51:46.283146 36547 2030 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1170\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 5d73720d-ecb2-4938-881d-1965a4b31cf3 2020-08-03 19:51:46.32194 36548 1171 Product \N \N 4 User \N create ---\nsku: BOL-1171\nname: 1BLCP20974\ndescription: BOLSO ROJO CLOE\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170796407'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1171 fue creado. 189.186.92.202 9ee6d024-5ec0-43fc-912c-b17ca978d494 2020-08-03 19:52:45.154473 36549 2031 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1171\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 9ee6d024-5ec0-43fc-912c-b17ca978d494 2020-08-03 19:52:45.193854 36550 1172 Product \N \N 4 User \N create ---\nsku: BOL-1172\nname: 1BLCP2095\ndescription: 'CANGURERA CLOE '\nprice_base: !ruby/object:BigDecimal 18:0.6495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170795660'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1172 fue creado. 189.186.92.202 23ebdbe6-e905-4970-84ee-d7a28de2a324 2020-08-03 19:54:09.773321 36551 2032 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1172\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 23ebdbe6-e905-4970-84ee-d7a28de2a324 2020-08-03 19:54:09.81317 36552 1173 Product \N \N 4 User \N create ---\nsku: CAR-1173\nname: 1BICP20958\ndescription: BILLETERA CLOE NEON\nprice_base: !ruby/object:BigDecimal 18:0.3995E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170795929'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1173 fue creado. 189.186.92.202 ab6ec03e-a741-488e-a026-8eb572af92d0 2020-08-03 19:55:10.150194 36553 2033 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1173\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 ab6ec03e-a741-488e-a026-8eb572af92d0 2020-08-03 19:55:10.188476 36554 326 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-60\namount: !ruby/object:BigDecimal 18:0.5446E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.5446E4\nobservations: ''\npurchase_date: 2020-08-03\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-60 por $ 5446.0 MXN creada. 189.186.92.202 ab2481fc-4bd1-427e-8c30-69d295b642fb 2020-08-03 19:55:21.416959 36555 2027 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.92.202 ab2481fc-4bd1-427e-8c30-69d295b642fb 2020-08-03 19:55:21.439965 36556 2028 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.92.202 ab2481fc-4bd1-427e-8c30-69d295b642fb 2020-08-03 19:55:21.463204 36557 2029 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.92.202 ab2481fc-4bd1-427e-8c30-69d295b642fb 2020-08-03 19:55:21.486502 36558 2030 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.92.202 ab2481fc-4bd1-427e-8c30-69d295b642fb 2020-08-03 19:55:21.509633 36559 2031 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.92.202 ab2481fc-4bd1-427e-8c30-69d295b642fb 2020-08-03 19:55:21.532432 36560 2032 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.92.202 ab2481fc-4bd1-427e-8c30-69d295b642fb 2020-08-03 19:55:21.555361 36561 2033 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.92.202 ab2481fc-4bd1-427e-8c30-69d295b642fb 2020-08-03 19:55:21.581381 36562 1174 Product \N \N 4 User \N create ---\nsku: COS-1174\nname: 4CSAP20818\ndescription: 'COSMETIQUERA CORAZÓN '\nprice_base: !ruby/object:BigDecimal 18:0.2995E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170792027'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 14\nproduct_service_key: '01010101'\n 1 El producto COS-1174 fue creado. 189.186.92.202 2a38ded2-8907-4eef-b88b-5cad3e9f18a1 2020-08-03 19:57:13.437765 36563 2034 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1174\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 2a38ded2-8907-4eef-b88b-5cad3e9f18a1 2020-08-03 19:57:13.4797 36564 1175 Product \N \N 4 User \N create ---\nsku: COS-1175\nname: 4CSCP20801\ndescription: COSMETIQUERA LIMON\nprice_base: !ruby/object:BigDecimal 18:0.2245E3\nprice_sale: !ruby/object:BigDecimal 18:0.449E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170791853'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 14\nproduct_service_key: '01010101'\n 1 El producto COS-1175 fue creado. 189.186.92.202 9e3c980c-73dc-4b52-9385-931a72d2f1ea 2020-08-03 19:58:07.773335 36565 2035 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1175\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 9e3c980c-73dc-4b52-9385-931a72d2f1ea 2020-08-03 19:58:07.822467 36589 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-03 18:34:56.210923000 Z\n- &1 2020-08-03 20:11:16.834689000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-03 22:22:04.146992763 Z\nsign_in_count:\n- 165\n- 166\n 333 \N 189.186.92.202 ae95a0af-0b15-421c-b424-10f78f29fcac 2020-08-03 22:22:04.174428 36590 18 User \N \N 18 User \N update ---\nunique_session_id:\n- e5QimbtgPZPTZf2-pytr\n- PXaF83__VJ_w2bRRHUGw\n 334 \N 189.186.92.202 ae95a0af-0b15-421c-b424-10f78f29fcac 2020-08-03 22:22:04.194592 36566 1176 Product \N \N 4 User \N create ---\nsku: COS-1176\nname: 4CSAP20819\ndescription: COSMETIQUERA DE 3 CORAZÓN\nprice_base: !ruby/object:BigDecimal 18:0.3995E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170792034'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 14\nproduct_service_key: '01010101'\n 1 El producto COS-1176 fue creado. 189.186.92.202 e53f0049-f45b-499e-9f90-39b2cedf28ff 2020-08-03 19:59:00.125407 36567 2036 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1176\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 e53f0049-f45b-499e-9f90-39b2cedf28ff 2020-08-03 19:59:00.171027 36568 327 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-131\namount: !ruby/object:BigDecimal 18:0.2472E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2472E4\nobservations: ''\npurchase_date: 2020-08-03\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-131 por $ 2472.0 MXN creada. 189.186.92.202 e1550273-97d4-43f9-b17e-cd7424e889ce 2020-08-03 20:10:53.499098 36569 2037 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1168\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 e1550273-97d4-43f9-b17e-cd7424e889ce 2020-08-03 20:10:53.529323 36570 2034 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.92.202 e1550273-97d4-43f9-b17e-cd7424e889ce 2020-08-03 20:10:53.5587 36571 2035 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.92.202 e1550273-97d4-43f9-b17e-cd7424e889ce 2020-08-03 20:10:53.585635 36572 2036 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.92.202 e1550273-97d4-43f9-b17e-cd7424e889ce 2020-08-03 20:10:53.615602 36573 2038 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1173\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.92.202 e1550273-97d4-43f9-b17e-cd7424e889ce 2020-08-03 20:10:53.648489 36574 2038 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.92.202 e1550273-97d4-43f9-b17e-cd7424e889ce 2020-08-03 20:10:53.679671 36575 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-01 00:45:26.443350000 Z\n- &1 2020-08-03 18:34:56.210923000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-03 20:11:16.834689140 Z\nsign_in_count:\n- 164\n- 165\n 331 \N 189.186.92.202 d3a4ac9f-1b23-4ec4-aa47-31b0d756a220 2020-08-03 20:11:16.839995 36576 18 User \N \N 18 User \N update ---\nunique_session_id:\n- _9iGdj5SyFGycZf8KFKY\n- e5QimbtgPZPTZf2-pytr\n 332 \N 189.186.92.202 d3a4ac9f-1b23-4ec4-aa47-31b0d756a220 2020-08-03 20:11:16.852943 36577 350 Customer \N \N 18 User \N create ---\nnick_name: ESPOSO ARELY\nphone: "(667) 771-5525"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ESPOSO ARELY fue registrado. 189.186.92.202 01fd3323-4706-479d-8903-9a41a88c590d 2020-08-03 20:11:43.550913 36578 2650 Sale \N \N 18 User \N create ---\ncustomer_id: 350\nuser_id: 18\nopen_cash_register_id: 986\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-08-03\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-462\nexpiration_date: 2020-09-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 0a75d706-02ce-4c92-adb6-37b752288a99 2020-08-03 20:12:07.712913 36579 2027 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.92.202 0a75d706-02ce-4c92-adb6-37b752288a99 2020-08-03 20:12:07.742732 36580 3553 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 986\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.9E3\nmove_type: '1'\nsale_id: 2650\ncardnumber: 4215\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-462\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-462 189.186.92.202 bbe61401-6d97-48a1-a138-5c764941d95f 2020-08-03 20:12:25.105459 36581 2650 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.92.202 2b522009-9925-47d5-b54f-cebddd1945b8 2020-08-03 20:12:26.650265 36582 351 Customer \N \N 2 User \N create ---\nnick_name: MARIEL PEÑA\nphone: "(667) 791-0697"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIEL PEÑA fue registrado. 187.149.71.30 acc43dab-a7af-4dce-8b6e-9266259c5939 2020-08-03 20:41:19.0107 36583 2651 Sale \N \N 2 User \N create ---\ncustomer_id: 351\nuser_id: 2\nopen_cash_register_id: 985\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-08-03\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1269\nexpiration_date: 2020-09-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.71.30 a151318a-cd57-4ad4-ab90-be6daf3d9129 2020-08-03 20:41:49.007966 36584 1689 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.71.30 a151318a-cd57-4ad4-ab90-be6daf3d9129 2020-08-03 20:41:49.053771 36585 3554 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 985\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2651\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1269\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1269 187.149.71.30 dad09554-6bda-485a-93a4-22cc09503883 2020-08-03 20:41:57.277301 36586 2651 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.71.30 979d3b80-fa6d-46a8-b669-9b5988c2f325 2020-08-03 20:41:58.608758 36587 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-03 17:04:38.290098000 Z\n- &1 2020-08-03 17:07:52.007980000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-03 21:19:53.405300090 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120915\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122462\n mask_addr: 4294967295\nsign_in_count:\n- 190\n- 191\n 382 \N 187.149.71.30 55729dc2-1fee-448c-a04f-2c9610e90871 2020-08-03 21:19:53.432698 36588 1 User \N \N 1 User \N update ---\nunique_session_id:\n- ZNzXnMj-HefV9snd-zHe\n- xQmLxUanVyXK6yxjBEgF\n 383 \N 187.149.71.30 55729dc2-1fee-448c-a04f-2c9610e90871 2020-08-03 21:19:53.454707 36591 2652 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 986\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-08-03\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-463\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 e040efaa-4076-4250-88ed-1c4d3d0e4619 2020-08-03 22:22:16.965353 36592 2018 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.92.202 e040efaa-4076-4250-88ed-1c4d3d0e4619 2020-08-03 22:22:16.998248 36593 2652 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 be390cc4-8875-4888-b7a8-d435ecbb7550 2020-08-03 22:22:20.78246 36594 3555 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 986\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 2652\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-463\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-463 189.186.92.202 be390cc4-8875-4888-b7a8-d435ecbb7550 2020-08-03 22:22:20.809018 36595 2653 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 986\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2020-08-03\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-464\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 dcdc79e3-f420-4958-baf3-a9506c5e55d6 2020-08-03 22:41:27.849126 36596 2029 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.92.202 dcdc79e3-f420-4958-baf3-a9506c5e55d6 2020-08-03 22:41:27.925452 36597 2653 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 d80aea43-1842-4af7-9535-4d1c2507b237 2020-08-03 22:43:22.771253 36598 3556 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 986\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 2653\ncardnumber: 1002\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-464\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-464 189.186.92.202 d80aea43-1842-4af7-9535-4d1c2507b237 2020-08-03 22:43:22.795494 36599 3557 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 986\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.99E2\nmove_type: '1'\nsale_id: 2653\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-464\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-464 189.186.92.202 4fff0f95-3a97-4529-8edf-d8c4b05e2a91 2020-08-03 22:43:30.907378 36600 2654 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 986\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-08-03\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-465\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 d1be50a5-5d6e-436e-8a1f-c74d8fb0c941 2020-08-03 23:19:47.577283 36601 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 45 \N 189.186.92.202 d1be50a5-5d6e-436e-8a1f-c74d8fb0c941 2020-08-03 23:19:47.624303 36602 2654 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 f5b4f23f-11ca-4fe2-b018-d7386150f0b0 2020-08-03 23:19:54.830083 36603 3558 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 986\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2654\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-465\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-465 189.186.92.202 f5b4f23f-11ca-4fe2-b018-d7386150f0b0 2020-08-03 23:19:54.852845 36604 2655 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 986\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-08-03\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-466\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 fd8008da-4bfb-4e52-9c9f-8c91977370ec 2020-08-03 23:27:35.303485 36605 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.28E2\n- !ruby/object:BigDecimal 18:0.27E2\n 29 \N 189.186.92.202 fd8008da-4bfb-4e52-9c9f-8c91977370ec 2020-08-03 23:27:35.353723 36606 2655 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 6a65e668-b931-450f-a951-3e1930206a2e 2020-08-03 23:27:44.195557 36607 3559 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 986\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2655\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-466\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-466 189.186.92.202 6a65e668-b931-450f-a951-3e1930206a2e 2020-08-03 23:27:44.229059 36608 2656 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 986\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.35E3\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2020-08-03\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-467\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 e15559a1-0a8a-4632-a9dd-e20b7c350772 2020-08-03 23:34:38.010076 36609 1552 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.15E2\n 3 \N 189.186.92.202 e15559a1-0a8a-4632-a9dd-e20b7c350772 2020-08-03 23:34:38.036858 36610 2656 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 4d3b567b-9721-49a9-829a-a488d70c67af 2020-08-03 23:34:45.102976 36611 3560 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 986\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.549E3\nmove_type: '1'\nsale_id: 2656\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-467\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-467 189.186.92.202 4d3b567b-9721-49a9-829a-a488d70c67af 2020-08-03 23:34:45.124069 36612 2657 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 986\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.22485E3\ntotal: !ruby/object:BigDecimal 18:0.127415E4\nstatus: 0\ndate_sale: 2020-08-03\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-468\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.92.202 5b2d0697-08b6-4a58-a5bd-50480e2e5dcd 2020-08-03 23:36:37.71743 36613 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.27E2\n- !ruby/object:BigDecimal 18:0.26E2\n 30 \N 189.186.92.202 5b2d0697-08b6-4a58-a5bd-50480e2e5dcd 2020-08-03 23:36:37.747152 36614 2657 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.92.202 42514b15-79da-4610-973b-aaa7b1a769b6 2020-08-03 23:36:51.895862 36615 3561 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 986\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.127415E4\nmove_type: '1'\nsale_id: 2657\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-468\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.127415E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-468 189.186.92.202 42514b15-79da-4610-973b-aaa7b1a769b6 2020-08-03 23:36:51.919357 36616 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-03 05:06:22.330566000 Z\n- &1 2020-08-03 19:16:23.618866000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-03 23:48:05.971813710 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\nsign_in_count:\n- 1689\n- 1690\n 3380 \N 189.186.92.202 c3294f64-f603-4693-8fd2-e802b2de99ec 2020-08-03 23:48:05.980063 36617 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mYr9PzkAFsWnjqy4ajU6\n- u_xz5jpxQTJ5ZwxwRxhL\n 3381 \N 189.186.92.202 c3294f64-f603-4693-8fd2-e802b2de99ec 2020-08-03 23:48:05.999188 36618 2658 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 985\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-08-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1270\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.71.30 6650560b-42d2-4e14-8376-be5598e8ce67 2020-08-03 23:49:53.962145 36619 1858 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.71.30 6650560b-42d2-4e14-8376-be5598e8ce67 2020-08-03 23:49:53.990366 36620 2658 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.71.30 a9546dbf-4767-4e73-bae2-6d3825f636d6 2020-08-03 23:49:58.659488 36621 3562 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 985\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 2658\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1270\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1270 187.149.71.30 a9546dbf-4767-4e73-bae2-6d3825f636d6 2020-08-03 23:49:58.679172 36622 1010 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 985\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2498E4\namount_out: !ruby/object:BigDecimal 18:0.7E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.9E3\ncash_fund: !ruby/object:BigDecimal 18:0.737E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1637E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.71.30 1f52a145-da40-478f-9a6e-e027079fb831 2020-08-04 00:00:28.954177 36623 985 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.71.30 1f52a145-da40-478f-9a6e-e027079fb831 2020-08-04 00:00:28.969978 36624 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-03 20:11:16.834689000 Z\n- &1 2020-08-03 22:22:04.146992000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-04 00:07:05.990677673 Z\nsign_in_count:\n- 166\n- 167\n 335 \N 189.186.92.202 8c8f3b21-eb2d-4c31-ae11-640aebd8000e 2020-08-04 00:07:05.996842 36625 18 User \N \N 18 User \N update ---\nunique_session_id:\n- PXaF83__VJ_w2bRRHUGw\n- MY3mwwg38-MMn7_cmCAt\n 336 \N 189.186.92.202 8c8f3b21-eb2d-4c31-ae11-640aebd8000e 2020-08-04 00:07:06.011052 36626 1011 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 986\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1261615E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.10716E5\ncash_fund: !ruby/object:BigDecimal 27:0.7381499999999996E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1145415E5\nobservations: FALTARON 500\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.92.202 3f0f29e0-d7e8-4185-90ae-b13795213fe1 2020-08-04 00:49:37.14377 36627 986 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.92.202 3f0f29e0-d7e8-4185-90ae-b13795213fe1 2020-08-04 00:49:37.161587 36628 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-03 17:07:52.007980000 Z\n- &1 2020-08-03 21:19:53.405300000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-04 01:31:21.458512087 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120915\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122462\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122462\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729600\n mask_addr: 4294967295\nsign_in_count:\n- 191\n- 192\n 384 \N 201.175.157.192 b0deca5a-cc7d-4789-9a8e-50c8ef5766b9 2020-08-04 01:31:21.466759 36629 1 User \N \N 1 User \N update ---\nunique_session_id:\n- xQmLxUanVyXK6yxjBEgF\n- 5qv3ghXueZUEn1d9yeMc\n 385 \N 201.175.157.192 b0deca5a-cc7d-4789-9a8e-50c8ef5766b9 2020-08-04 01:31:21.48366 36630 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-03 21:19:53.405300000 Z\n- &1 2020-08-04 01:31:21.458512000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-04 14:53:58.090277595 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122462\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729600\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729600\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729179\n mask_addr: 4294967295\nsign_in_count:\n- 192\n- 193\n 386 \N 201.175.156.27 eca34f6b-3e49-4e38-a699-a499c4c39985 2020-08-04 14:53:58.12272 36631 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 5qv3ghXueZUEn1d9yeMc\n- mv7WLqXJ4S6Nxobyey2L\n 387 \N 201.175.156.27 eca34f6b-3e49-4e38-a699-a499c4c39985 2020-08-04 14:53:58.147298 36632 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-01 16:47:27.666943000 Z\n- &1 2020-08-03 16:31:08.201673000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-04 17:40:31.334418529 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120915\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122462\n mask_addr: 4294967295\nsign_in_count:\n- 604\n- 605\n 1213 \N 187.149.71.30 45378495-e7a4-440d-91e0-3c218e2f7dbb 2020-08-04 17:40:31.34059 36633 2 User \N \N 2 User \N update ---\nunique_session_id:\n- HDeP79EyrX1ssyYKTaLv\n- NGxJi-7dGYdz6STj6vYY\n 1214 \N 187.149.71.30 45378495-e7a4-440d-91e0-3c218e2f7dbb 2020-08-04 17:40:31.357301 36634 987 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.737E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 737.0 187.149.71.30 090d202d-8ea7-4272-9cef-745ddfa16236 2020-08-04 17:40:57.153326 36635 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-04 01:31:21.458512000 Z\n- &1 2020-08-04 14:53:58.090277000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-04 19:33:29.453256399 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729600\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729179\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729179\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122462\n mask_addr: 4294967295\nsign_in_count:\n- 193\n- 194\n 388 \N 187.149.71.30 cfe81b8c-f5e8-4907-bbbe-ce7e039bbf16 2020-08-04 19:33:29.461254 36636 1 User \N \N 1 User \N update ---\nunique_session_id:\n- mv7WLqXJ4S6Nxobyey2L\n- imkX1ehTYz2bb6gx4yfT\n 389 \N 187.149.71.30 cfe81b8c-f5e8-4907-bbbe-ce7e039bbf16 2020-08-04 19:33:29.477721 36637 3563 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 987\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 2628\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1258 187.149.71.30 26fe2a71-fcf8-4467-b665-3fc06eaafccf 2020-08-04 21:24:28.14789 36638 2628 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.71.30 9b54eab7-76ab-43f2-8ef2-b5866ff89601 2020-08-04 21:24:37.800866 36639 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-03 19:16:23.618866000 Z\n- &1 2020-08-03 23:48:05.971813000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-04 21:45:55.934908976 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\nsign_in_count:\n- 1690\n- 1691\n 3382 \N 189.186.124.94 d4f76f31-15bb-4c1e-b976-fd262cb51fc9 2020-08-04 21:45:55.942811 36640 4 User \N \N 4 User \N update ---\nunique_session_id:\n- u_xz5jpxQTJ5ZwxwRxhL\n- sS-rxjNvAAAzh_6cs6V4\n 3383 \N 189.186.124.94 d4f76f31-15bb-4c1e-b976-fd262cb51fc9 2020-08-04 21:45:55.960838 36641 3564 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 987\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.849E3\nmove_type: '1'\nsale_id: 2584\ncardnumber: 124\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1244 187.149.71.30 5414037b-aca4-4f44-aeff-dcc6c3b4aea1 2020-08-04 22:29:13.550451 36642 2584 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.71.30 a170a9e0-3016-45a8-8c38-db0ee72509c5 2020-08-04 22:29:16.096184 36643 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-03 22:22:04.146992000 Z\n- &1 2020-08-04 00:07:05.990677000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-04 23:07:33.206658660 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\nsign_in_count:\n- 167\n- 168\n 337 \N 189.186.124.94 04d168c3-873d-457a-94a4-0c3c12c31201 2020-08-04 23:07:33.213646 36644 18 User \N \N 18 User \N update ---\nunique_session_id:\n- MY3mwwg38-MMn7_cmCAt\n- aCkZ1MNBXn-FZBRuNqZD\n 338 \N 189.186.124.94 04d168c3-873d-457a-94a4-0c3c12c31201 2020-08-04 23:07:33.229625 36645 988 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.73815E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 738.15 189.186.124.94 9609179f-2281-4ab8-833c-a4e5c5d301ed 2020-08-04 23:08:01.562785 36646 2659 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 988\namount: !ruby/object:BigDecimal 18:0.74383E3\ntax: !ruby/object:BigDecimal 18:0.5517E2\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.4E3\nstatus: 0\ndate_sale: 2020-08-04\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-469\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.124.94 bc9a3958-5168-4618-b76a-ef8823821cd4 2020-08-04 23:08:29.453381 36647 912 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.124.94 bc9a3958-5168-4618-b76a-ef8823821cd4 2020-08-04 23:08:29.489116 36648 2659 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.124.94 218473bd-072d-4709-82e4-3fd4ff30a390 2020-08-04 23:08:33.439717 36649 3565 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 988\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 2659\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-469\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-469 189.186.124.94 218473bd-072d-4709-82e4-3fd4ff30a390 2020-08-04 23:08:33.460675 36650 2660 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 988\namount: !ruby/object:BigDecimal 18:0.12448E3\ntax: !ruby/object:BigDecimal 18:0.1352E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.138E3\nstatus: 0\ndate_sale: 2020-08-04\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-470\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.124.94 0d75bcbf-2803-46de-b7ab-c96e1b9668f8 2020-08-04 23:11:54.774365 36651 1960 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.124.94 0d75bcbf-2803-46de-b7ab-c96e1b9668f8 2020-08-04 23:11:54.80225 36652 818 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.51E2\n- !ruby/object:BigDecimal 18:0.49E2\n 23 \N 189.186.124.94 0d75bcbf-2803-46de-b7ab-c96e1b9668f8 2020-08-04 23:11:54.828894 36653 2660 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.124.94 1ee58211-885c-49bc-b01d-4fe1bc223c47 2020-08-04 23:14:45.476091 36654 3566 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 988\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.138E3\nmove_type: '1'\nsale_id: 2660\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-470\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.138E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-470 189.186.124.94 1ee58211-885c-49bc-b01d-4fe1bc223c47 2020-08-04 23:14:45.499783 36852 2042 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.124.94 cce14225-0c80-42bc-a170-28b818da9f88 2020-08-07 20:14:49.259651 36853 2043 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.124.94 cce14225-0c80-42bc-a170-28b818da9f88 2020-08-07 20:14:49.284568 36655 2661 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 987\namount: !ruby/object:BigDecimal 18:0.1169E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.119E3\ntotal: !ruby/object:BigDecimal 18:0.105E4\nstatus: 0\ndate_sale: 2020-08-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1271\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.71.30 bdbe626d-0fca-4e37-9497-360902dd3021 2020-08-04 23:29:57.637374 36656 1779 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.71.30 bdbe626d-0fca-4e37-9497-360902dd3021 2020-08-04 23:29:57.672935 36657 2661 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.71.30 b3eb2d70-4199-4baf-b76d-082fb06e6740 2020-08-04 23:30:03.115939 36658 3567 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 987\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.105E4\nmove_type: '1'\nsale_id: 2661\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1271\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.105E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1271 187.149.71.30 b3eb2d70-4199-4baf-b76d-082fb06e6740 2020-08-04 23:30:03.13785 36659 319 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 987\nquantity: !ruby/object:BigDecimal 18:0.564E3\nstatus: 1\nobservations: AGUA (JAPAC)\nexpense_date: 2020-08-04\nexpense_code: PV1-E-221\n 1 Egreso por 564.0 registrado 187.149.71.30 28f4e249-45c0-495d-8e9a-3866cad7b999 2020-08-04 23:41:48.792924 36660 3568 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 987\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.564E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 319\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.71.30 28f4e249-45c0-495d-8e9a-3866cad7b999 2020-08-04 23:41:48.813069 36661 1012 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 987\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2898E4\namount_out: !ruby/object:BigDecimal 18:0.564E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.722E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2222E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.71.30 cee7f63c-41c2-4593-83cc-e3bae1b6aa9d 2020-08-04 23:51:11.970289 36662 987 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.71.30 cee7f63c-41c2-4593-83cc-e3bae1b6aa9d 2020-08-04 23:51:11.98817 36663 2662 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 988\namount: !ruby/object:BigDecimal 18:0.1587E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1587E4\nstatus: 0\ndate_sale: 2020-08-04\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-471\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.124.94 dd97db44-841d-47b9-bbba-569799b4c8a9 2020-08-05 00:04:29.721262 36664 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.26E2\n- !ruby/object:BigDecimal 18:0.25E2\n 31 \N 189.186.124.94 dd97db44-841d-47b9-bbba-569799b4c8a9 2020-08-05 00:04:29.749291 36665 1959 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.124.94 dd97db44-841d-47b9-bbba-569799b4c8a9 2020-08-05 00:04:29.775454 36666 2662 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.124.94 d14c6b2e-1d3f-4326-ba84-31c883dea058 2020-08-05 00:05:22.430903 36667 3569 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 988\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1587E4\nmove_type: '1'\nsale_id: 2662\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-471\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.13E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-471 189.186.124.94 d14c6b2e-1d3f-4326-ba84-31c883dea058 2020-08-05 00:05:22.459634 36668 352 Customer \N \N 18 User \N create ---\nnick_name: 'LORENA HERENAS JEFA CARMEN '\nphone: "(667) 181-0085"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LORENA HERENAS JEFA CARMEN fue registrado. 189.186.124.94 501b3ad3-1ae6-4b48-8b5c-19bc0940477c 2020-08-05 00:24:35.051111 36669 353 Customer \N \N 18 User \N create ---\nnick_name: 'LORENA HERENAS JEFA CARMEN '\nphone: "(667) 181-0085"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.6E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LORENA HERENAS JEFA CARMEN fue registrado. 189.186.124.94 b62a48d0-70c0-450b-a023-9d01dec28115 2020-08-05 00:25:30.416119 36670 2663 Sale \N \N 18 User \N create ---\ncustomer_id: 353\nuser_id: 18\nopen_cash_register_id: 988\namount: !ruby/object:BigDecimal 18:0.2998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2998E4\nstatus: 0\ndate_sale: 2020-08-04\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-472\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.124.94 257e997c-3d26-4405-8774-fbe8d6019892 2020-08-05 00:26:12.976133 36671 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.25E2\n- !ruby/object:BigDecimal 18:0.23E2\n 32 \N 189.186.124.94 257e997c-3d26-4405-8774-fbe8d6019892 2020-08-05 00:26:13.001598 36672 3570 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 988\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.998E3\nmove_type: '1'\nsale_id: 2663\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.998E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.124.94 d7ed3cc9-b612-4c77-aed3-470a7d9717f6 2020-08-05 00:27:21.299792 36673 2663 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.124.94 d7ed3cc9-b612-4c77-aed3-470a7d9717f6 2020-08-05 00:27:21.326529 36674 3570 CashRegistersMove \N \N 18 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV3-V-472 189.186.124.94 d7ed3cc9-b612-4c77-aed3-470a7d9717f6 2020-08-05 00:27:21.3365 36675 2664 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 988\namount: !ruby/object:BigDecimal 18:0.166107E4\ntax: !ruby/object:BigDecimal 18:0.13793E3\ndiscount: !ruby/object:BigDecimal 18:0.799E3\ntotal: !ruby/object:BigDecimal 18:0.1E4\nstatus: 0\ndate_sale: 2020-08-04\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-473\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.124.94 e25d9756-92c4-416c-82b2-40ed1150e7de 2020-08-05 00:28:25.857602 36676 1482 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.124.94 e25d9756-92c4-416c-82b2-40ed1150e7de 2020-08-05 00:28:25.88228 36677 2664 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.124.94 a8194fef-ca48-43ef-b63d-3409ceaafad7 2020-08-05 00:28:30.49363 36678 3571 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 988\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 2664\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-473\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-473 189.186.124.94 a8194fef-ca48-43ef-b63d-3409ceaafad7 2020-08-05 00:28:30.514486 36679 1013 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 988\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.4123E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.4087E4\ncash_fund: !ruby/object:BigDecimal 27:0.7741499999999996E3\nphysical_cash: !ruby/object:BigDecimal 18:0.486115E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.124.94 d3524f9b-4ce6-4dfc-8f3b-6373748d2d24 2020-08-05 00:56:34.665201 36680 988 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.124.94 d3524f9b-4ce6-4dfc-8f3b-6373748d2d24 2020-08-05 00:56:34.679201 36681 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-03 23:48:05.971813000 Z\n- &1 2020-08-04 21:45:55.934908000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-05 00:56:55.693298404 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\nsign_in_count:\n- 1691\n- 1692\n 3384 \N 189.186.124.94 246134f6-fb14-40ef-8b69-03e353270bbc 2020-08-05 00:56:55.701789 36682 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sS-rxjNvAAAzh_6cs6V4\n- yxF7R6fW7NrtLEGSsujm\n 3385 \N 189.186.124.94 246134f6-fb14-40ef-8b69-03e353270bbc 2020-08-05 00:56:55.720953 36683 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-04 21:45:55.934908000 Z\n- &1 2020-08-05 00:56:55.693298000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-05 02:55:59.942614453 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1692\n- 1693\n 3386 \N 177.228.119.167 e655cdc0-b532-4c4b-a77a-5fa58f3ab670 2020-08-05 02:55:59.952806 36684 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yxF7R6fW7NrtLEGSsujm\n- YxyP422EhHo1GUiJvuCy\n 3387 \N 177.228.119.167 e655cdc0-b532-4c4b-a77a-5fa58f3ab670 2020-08-05 02:55:59.975428 36685 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-05 00:56:55.693298000 Z\n- &1 2020-08-05 02:55:59.942614000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-05 17:19:51.187917671 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1693\n- 1694\n 3388 \N 177.228.119.167 fbd189ef-75cc-4e9a-9534-ac1d2e2ff67c 2020-08-05 17:19:51.215564 36686 4 User \N \N 4 User \N update ---\nunique_session_id:\n- YxyP422EhHo1GUiJvuCy\n- sbfpm6rKUucBasQEBos3\n 3389 \N 177.228.119.167 fbd189ef-75cc-4e9a-9534-ac1d2e2ff67c 2020-08-05 17:19:51.246563 36687 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-07-28 17:58:43.445825000 Z\n- &1 2020-07-29 00:29:08.318687000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-05 17:20:34.636811400 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 243\n- 244\n 489 \N 177.228.119.167 1f323a14-329b-48ba-8694-f215d12ac0d1 2020-08-05 17:20:34.64422 36688 21 User \N \N 21 User \N update ---\nunique_session_id:\n- xyWZTTyJx634ePZXsHHm\n- Rr7xaCWEK9VTy1dywxzm\n 490 \N 177.228.119.167 1f323a14-329b-48ba-8694-f215d12ac0d1 2020-08-05 17:20:34.659492 36689 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-03 16:31:08.201673000 Z\n- &1 2020-08-04 17:40:31.334418000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-05 18:00:56.652478629 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120915\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122462\n mask_addr: 4294967295\nsign_in_count:\n- 605\n- 606\n 1215 \N 187.149.71.30 1b8ec7e7-872f-47d6-8922-75fca9ae638e 2020-08-05 18:00:56.658939 36690 2 User \N \N 2 User \N update ---\nunique_session_id:\n- NGxJi-7dGYdz6STj6vYY\n- RgTd6xm7bGoFxjBs2sSS\n 1216 \N 187.149.71.30 1b8ec7e7-872f-47d6-8922-75fca9ae638e 2020-08-05 18:00:56.674382 36691 989 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.722E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 722.0 187.149.71.30 40504aef-5c0d-4728-8ff8-725e7ba68fe9 2020-08-05 18:01:09.884235 36692 2665 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 989\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-08-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1272\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.71.30 d1a51a3e-3ce8-4ceb-9134-e4830fe8e9f0 2020-08-05 18:03:43.631322 36693 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 11 \N 187.149.71.30 d1a51a3e-3ce8-4ceb-9134-e4830fe8e9f0 2020-08-05 18:03:43.664431 36694 2665 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.71.30 101f4d12-737d-4225-b897-20005bbda4b2 2020-08-05 18:04:04.250965 36695 3572 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 989\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2665\ncardnumber: 4779\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1272\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1272 187.149.71.30 101f4d12-737d-4225-b897-20005bbda4b2 2020-08-05 18:04:04.277871 36696 2666 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 989\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-08-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1273\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.153 630e9285-1215-4a79-b62f-068d2704e22e 2020-08-05 18:12:54.82611 36697 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.49E2\n- !ruby/object:BigDecimal 18:0.48E2\n 13 \N 187.149.46.153 630e9285-1215-4a79-b62f-068d2704e22e 2020-08-05 18:12:54.856095 36698 2666 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.46.153 cc0f5776-848c-42be-9693-77665ec7c8a2 2020-08-05 18:12:59.387509 36723 3581 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2482\ncardnumber: 1252\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.124.94 b3f30ffe-7cbd-47da-94d8-3c5271cdeba5 2020-08-05 19:01:31.16628 36699 3573 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 989\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49E2\nmove_type: '1'\nsale_id: 2666\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1273\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1273 187.149.46.153 cc0f5776-848c-42be-9693-77665ec7c8a2 2020-08-05 18:12:59.42109 36700 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-04 00:07:05.990677000 Z\n- &1 2020-08-04 23:07:33.206658000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-05 18:39:10.789922500 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\nsign_in_count:\n- 168\n- 169\n 339 \N 189.186.124.94 65007cea-494a-40cb-87e3-21aecc8eea4f 2020-08-05 18:39:10.818613 36701 18 User \N \N 18 User \N update ---\nunique_session_id:\n- aCkZ1MNBXn-FZBRuNqZD\n- esx368-k8AV2vNhCyqj9\n 340 \N 189.186.124.94 65007cea-494a-40cb-87e3-21aecc8eea4f 2020-08-05 18:39:10.84153 36702 3574 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 928\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.888E3\nmove_type: '1'\nsale_id: 2424\ncardnumber: 1255\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.124.94 e5e6b9f5-79de-4561-89e9-0c275de8fbf9 2020-08-05 18:42:40.851066 36703 2424 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.124.94 e5e6b9f5-79de-4561-89e9-0c275de8fbf9 2020-08-05 18:42:40.880001 36704 3574 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 928\n- \n 2 movimiento de efectivo por venta con folio PV3-V-326 189.186.124.94 e5e6b9f5-79de-4561-89e9-0c275de8fbf9 2020-08-05 18:42:40.898089 36705 3575 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 934\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.9E3\nmove_type: '1'\nsale_id: 2489\ncardnumber: 5556\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.124.94 a8bbfc86-2681-4bf7-9a6b-596f3f9503d3 2020-08-05 18:43:28.85696 36706 2489 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.124.94 a8bbfc86-2681-4bf7-9a6b-596f3f9503d3 2020-08-05 18:43:28.886203 36707 3575 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 934\n- \n 2 movimiento de efectivo por venta con folio PV1-V-1211 189.186.124.94 a8bbfc86-2681-4bf7-9a6b-596f3f9503d3 2020-08-05 18:43:28.901545 36708 3576 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 2472\ncardnumber: 2255\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '5225'\n 1 \N 189.186.124.94 e140a3c9-27c4-4f19-9a9a-af402ed8084f 2020-08-05 18:46:31.941617 36709 2472 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.124.94 e140a3c9-27c4-4f19-9a9a-af402ed8084f 2020-08-05 18:46:31.975147 36710 2491 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.124.94 e140a3c9-27c4-4f19-9a9a-af402ed8084f 2020-08-05 18:46:32.004889 36711 3576 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 933\n- \n 2 movimiento de efectivo por venta con folio PV1-V-1203 189.186.124.94 e140a3c9-27c4-4f19-9a9a-af402ed8084f 2020-08-05 18:46:32.021078 36712 3577 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 2463\ncardnumber: 2255\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.124.94 d2bb6e85-7af3-4cd3-bf9b-053d2efcd3c8 2020-08-05 18:49:03.211035 36713 3577 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 933\n- \n 2 movimiento de efectivo por venta con folio PV1-V-1196 189.186.124.94 d2bb6e85-7af3-4cd3-bf9b-053d2efcd3c8 2020-08-05 18:49:03.240155 36714 3578 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 673\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 1709\ncardnumber: 5225\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.124.94 149e0f4f-738b-4266-ae0e-0207d2c07c24 2020-08-05 18:51:23.92465 36715 1709 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.124.94 149e0f4f-738b-4266-ae0e-0207d2c07c24 2020-08-05 18:51:23.955659 36716 3578 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 673\n- \n 2 movimiento de efectivo por venta con folio PV3-V-171 189.186.124.94 149e0f4f-738b-4266-ae0e-0207d2c07c24 2020-08-05 18:51:23.972887 36717 3579 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2486\ncardnumber: 2355\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.124.94 223b2cb6-da35-42e3-a22b-66b32cacb44e 2020-08-05 18:52:47.46741 36718 2486 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.124.94 223b2cb6-da35-42e3-a22b-66b32cacb44e 2020-08-05 18:52:47.492533 36719 2484 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.124.94 223b2cb6-da35-42e3-a22b-66b32cacb44e 2020-08-05 18:52:47.52495 36720 3579 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 931\n- \n 2 movimiento de efectivo por venta con folio PV3-V-357 189.186.124.94 223b2cb6-da35-42e3-a22b-66b32cacb44e 2020-08-05 18:52:47.5408 36721 3580 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2459\ncardnumber: 5556\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.124.94 3516a2bc-315d-4acf-8d8d-89d99ed43884 2020-08-05 18:56:01.486897 36722 3580 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 931\n- \n 2 movimiento de efectivo por venta con folio PV3-V-349 189.186.124.94 3516a2bc-315d-4acf-8d8d-89d99ed43884 2020-08-05 18:56:01.515033 36724 2482 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.124.94 b3f30ffe-7cbd-47da-94d8-3c5271cdeba5 2020-08-05 19:01:31.202656 36725 3581 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 931\n- \n 2 movimiento de efectivo por venta con folio PV3-V-354 189.186.124.94 b3f30ffe-7cbd-47da-94d8-3c5271cdeba5 2020-08-05 19:01:31.220953 36726 3582 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 965\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 2604\ncardnumber: 1256\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.124.94 172bd8d2-957a-45a5-b2b4-17ae99a223ef 2020-08-05 19:04:58.526633 36727 2604 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.124.94 172bd8d2-957a-45a5-b2b4-17ae99a223ef 2020-08-05 19:04:58.550558 36728 3582 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 965\n- \n 2 movimiento de efectivo por venta con folio PV3-V-435 189.186.124.94 172bd8d2-957a-45a5-b2b4-17ae99a223ef 2020-08-05 19:04:58.564103 36729 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-04 14:53:58.090277000 Z\n- &1 2020-08-04 19:33:29.453256000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-05 19:47:08.678238133 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729179\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122462\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122462\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946053\n mask_addr: 4294967295\nsign_in_count:\n- 194\n- 195\n 390 \N 200.68.181.69 6f1bbe46-d5ba-48fe-b0bc-b70e7b83847e 2020-08-05 19:47:08.687717 36730 1 User \N \N 1 User \N update ---\nunique_session_id:\n- imkX1ehTYz2bb6gx4yfT\n- f2hc6zPkjSU4untEdAyi\n 391 \N 200.68.181.69 6f1bbe46-d5ba-48fe-b0bc-b70e7b83847e 2020-08-05 19:47:08.710091 36731 2618 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV3-V-445 cancelada. 189.186.124.94 24916dba-89b4-48b5-a416-9ec9cd66ccd5 2020-08-05 19:56:26.559766 36732 3583 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: \npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '0'\nsale_id: 2618\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.124.94 24916dba-89b4-48b5-a416-9ec9cd66ccd5 2020-08-05 19:56:26.586403 36733 1829 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.124.94 24916dba-89b4-48b5-a416-9ec9cd66ccd5 2020-08-05 19:56:26.61861 36734 1832 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.8E1\n 12 \N 189.186.124.94 24916dba-89b4-48b5-a416-9ec9cd66ccd5 2020-08-05 19:56:26.650074 36735 990 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.77415E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 774.15 189.186.124.94 c0df804a-06d0-40f8-8049-449a07729c34 2020-08-05 19:57:39.008763 36736 2667 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 990\namount: !ruby/object:BigDecimal 18:0.3298E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.239E3\ntotal: !ruby/object:BigDecimal 18:0.3059E4\nstatus: 0\ndate_sale: 2020-08-05\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-474\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.124.94 12df1525-ed80-40b6-93e8-4f651b67dce6 2020-08-05 19:58:36.602623 36737 1829 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.124.94 12df1525-ed80-40b6-93e8-4f651b67dce6 2020-08-05 19:58:36.633336 36738 1832 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 13 \N 189.186.124.94 12df1525-ed80-40b6-93e8-4f651b67dce6 2020-08-05 19:58:36.662691 36739 2667 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.124.94 7994c508-625b-4560-9e30-96c6aa003c26 2020-08-05 19:58:49.259592 36740 3584 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 990\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.3059E4\nmove_type: '1'\nsale_id: 2667\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-474\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '5556'\n 1 movimiento de efectivo por venta con folio PV3-V-474 189.186.124.94 7994c508-625b-4560-9e30-96c6aa003c26 2020-08-05 19:58:49.280595 36741 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-07-24 23:30:23.475550000 Z\n- &1 2020-07-30 00:25:01.696535000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-05 20:00:10.331189275 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\nsign_in_count:\n- 139\n- 140\n 280 \N 189.186.124.94 9a96deca-e3a9-4ac5-a192-197c12ee95ec 2020-08-05 20:00:10.339728 36742 9 User \N \N 9 User \N update ---\nunique_session_id:\n- GEMexxuXgG-1nozAXZWA\n- WiHABDo1Y4LJdksjpqHZ\n 281 \N 189.186.124.94 9a96deca-e3a9-4ac5-a192-197c12ee95ec 2020-08-05 20:00:10.357254 36743 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-04 23:07:33.206658000 Z\n- &1 2020-08-05 18:39:10.789922000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-05 20:52:02.834506006 Z\nsign_in_count:\n- 169\n- 170\n 341 \N 189.186.124.94 21b566f0-6b7e-458c-80c5-3f504bd6d465 2020-08-05 20:52:02.840178 36744 18 User \N \N 18 User \N update ---\nunique_session_id:\n- esx368-k8AV2vNhCyqj9\n- sZyQT2wmEaqz7P9WxeWu\n 342 \N 189.186.124.94 21b566f0-6b7e-458c-80c5-3f504bd6d465 2020-08-05 20:52:02.857296 36745 2668 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 990\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-08-05\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-475\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.124.94 307786ea-2578-4050-a960-d6c2ffe4f5fe 2020-08-05 20:53:14.899366 36746 1922 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.124.94 307786ea-2578-4050-a960-d6c2ffe4f5fe 2020-08-05 20:53:14.93323 36747 2668 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.124.94 11539173-f035-4a01-83fe-10201ac0f8ec 2020-08-05 20:53:19.557297 36748 3585 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 990\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 2668\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-475\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-475 189.186.124.94 11539173-f035-4a01-83fe-10201ac0f8ec 2020-08-05 20:53:19.579609 36796 923 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.124.94 37653c69-3a27-4d0d-a693-a0736e10b0f6 2020-08-06 22:31:10.656809 36797 2673 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.124.94 e009aab6-2f6a-4ef6-a2ea-716c0eb753b6 2020-08-06 22:31:20.379142 36749 2669 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 990\namount: !ruby/object:BigDecimal 18:0.138E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.138E3\nstatus: 0\ndate_sale: 2020-08-05\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-476\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.124.94 747a3536-757c-4b09-9e8e-d916e8053571 2020-08-05 20:54:52.393306 36750 1773 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.124.94 747a3536-757c-4b09-9e8e-d916e8053571 2020-08-05 20:54:52.423734 36751 2669 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.124.94 f889e793-17fb-415f-8c9d-db060b53fcc8 2020-08-05 20:55:01.133403 36752 3586 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 990\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.138E3\nmove_type: '1'\nsale_id: 2669\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-476\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.301E3\nchange: !ruby/object:BigDecimal 18:0.163E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-476 189.186.124.94 f889e793-17fb-415f-8c9d-db060b53fcc8 2020-08-05 20:55:01.158 36753 2670 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 990\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.239E3\ntotal: !ruby/object:BigDecimal 18:0.136E4\nstatus: 0\ndate_sale: 2020-08-05\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-477\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.124.94 8c387031-f255-4519-b8b7-cdca7281fad8 2020-08-05 21:09:47.713119 36754 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 46 \N 189.186.124.94 8c387031-f255-4519-b8b7-cdca7281fad8 2020-08-05 21:09:47.742373 36755 2670 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.124.94 e41ae267-26db-4e1e-950c-2b8aa7182ae4 2020-08-05 21:10:03.154202 36756 3587 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 990\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.136E4\nmove_type: '1'\nsale_id: 2670\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-477\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1255'\n 1 movimiento de efectivo por venta con folio PV3-V-477 189.186.124.94 e41ae267-26db-4e1e-950c-2b8aa7182ae4 2020-08-05 21:10:03.180609 36757 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-07-30 00:25:01.696535000 Z\n- &1 2020-08-05 20:00:10.331189000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-05 21:20:35.001241895 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\nsign_in_count:\n- 140\n- 141\n 282 \N 189.186.124.94 cf073968-43f4-4f0d-8520-7887ac6552f3 2020-08-05 21:20:35.039179 36758 9 User \N \N 9 User \N update ---\nunique_session_id:\n- WiHABDo1Y4LJdksjpqHZ\n- kPzmjuQz61zzzZ5EuCyG\n 283 \N 189.186.124.94 cf073968-43f4-4f0d-8520-7887ac6552f3 2020-08-05 21:20:35.062343 36759 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-05 18:39:10.789922000 Z\n- &1 2020-08-05 20:52:02.834506000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-05 22:30:58.884938622 Z\nsign_in_count:\n- 170\n- 171\n 343 \N 189.186.124.94 65bbdeb6-7533-45d5-b2b0-9b57bbd527d8 2020-08-05 22:30:58.890334 36760 18 User \N \N 18 User \N update ---\nunique_session_id:\n- sZyQT2wmEaqz7P9WxeWu\n- 6M3M2ssat2JaR5ZXjGLh\n 344 \N 189.186.124.94 65bbdeb6-7533-45d5-b2b0-9b57bbd527d8 2020-08-05 22:30:58.90486 36761 3588 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 990\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2525\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-378 189.186.124.94 0533de46-9eb4-4de7-9adf-23435a57bfbd 2020-08-05 22:32:00.500677 36762 2671 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 990\namount: !ruby/object:BigDecimal 18:0.1619E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.32E2\ntotal: !ruby/object:BigDecimal 18:0.1587E4\nstatus: 0\ndate_sale: 2020-08-05\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-478\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.124.94 f34c8520-a762-439d-b852-a8aac130d1a6 2020-08-05 22:55:57.710447 36763 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.23E2\n- !ruby/object:BigDecimal 18:0.22E2\n 33 \N 189.186.124.94 f34c8520-a762-439d-b852-a8aac130d1a6 2020-08-05 22:55:57.753639 36764 1958 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.124.94 f34c8520-a762-439d-b852-a8aac130d1a6 2020-08-05 22:55:57.792861 36765 2671 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.124.94 8bc2ebca-fea4-430b-92ef-6fa49716311a 2020-08-05 22:56:08.216896 36766 3589 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 990\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1587E4\nmove_type: '1'\nsale_id: 2671\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-478\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1587E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-478 189.186.124.94 8bc2ebca-fea4-430b-92ef-6fa49716311a 2020-08-05 22:56:08.239115 36767 1014 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 989\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1548E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.771E3\nphysical_cash: !ruby/object:BigDecimal 18:0.771E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.46.153 42e27215-ff18-4950-b1c8-10e63959ba6c 2020-08-06 00:06:57.139441 36768 989 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.46.153 42e27215-ff18-4950-b1c8-10e63959ba6c 2020-08-06 00:06:57.158235 36769 3590 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 990\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2387E4\nmove_type: '1'\nsale_id: 2556\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2387E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-401 189.186.124.94 817918c6-be15-4c21-a02b-50d34b7b176e 2020-08-06 00:34:36.20085 36770 2556 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.124.94 380267e8-6e63-4c3f-bd96-f590f1268be6 2020-08-06 00:34:37.625992 36771 1015 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 990\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.943E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.51E4\ncash_fund: !ruby/object:BigDecimal 27:0.6851499999999996E3\nphysical_cash: !ruby/object:BigDecimal 18:0.578515E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.124.94 10fa2471-928a-4a5c-b857-4647b44851e2 2020-08-06 00:40:18.51598 36772 990 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.124.94 10fa2471-928a-4a5c-b857-4647b44851e2 2020-08-06 00:40:18.530866 36773 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-05 02:55:59.942614000 Z\n- &1 2020-08-05 17:19:51.187917000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-06 00:40:39.234271512 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\nsign_in_count:\n- 1694\n- 1695\n 3390 \N 189.186.124.94 10460cdc-2a9f-4ca9-943f-ea94336f2ba3 2020-08-06 00:40:39.243003 36774 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sbfpm6rKUucBasQEBos3\n- J6Dtc6fq-Ab7S-WML9cQ\n 3391 \N 189.186.124.94 10460cdc-2a9f-4ca9-943f-ea94336f2ba3 2020-08-06 00:40:39.264591 36775 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-04 17:40:31.334418000 Z\n- &1 2020-08-05 18:00:56.652478000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-06 16:14:14.596750120 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122462\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\nsign_in_count:\n- 606\n- 607\n 1217 \N 187.149.46.153 282be666-0bc7-4285-9f24-1be6710d3517 2020-08-06 16:14:14.624494 36776 2 User \N \N 2 User \N update ---\nunique_session_id:\n- RgTd6xm7bGoFxjBs2sSS\n- GbCJxiVrRETf8L-6Q9WU\n 1218 \N 187.149.46.153 282be666-0bc7-4285-9f24-1be6710d3517 2020-08-06 16:14:14.650699 36777 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-05 17:19:51.187917000 Z\n- &1 2020-08-06 00:40:39.234271000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-06 19:01:16.171900100 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\nsign_in_count:\n- 1695\n- 1696\n 3392 \N 189.186.124.94 61cdbe92-06f0-4f6e-a1ac-3a1c91601578 2020-08-06 19:01:16.181545 36778 4 User \N \N 4 User \N update ---\nunique_session_id:\n- J6Dtc6fq-Ab7S-WML9cQ\n- eGGPoeg5aemf3JLdxXyE\n 3393 \N 189.186.124.94 61cdbe92-06f0-4f6e-a1ac-3a1c91601578 2020-08-06 19:01:16.213654 36779 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-05 20:52:02.834506000 Z\n- &1 2020-08-05 22:30:58.884938000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-06 22:27:02.486939700 Z\nsign_in_count:\n- 171\n- 172\n 345 \N 189.186.124.94 edbaab2e-9460-45eb-b44e-f6af47ce61ba 2020-08-06 22:27:02.504858 36780 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 6M3M2ssat2JaR5ZXjGLh\n- zCzSyLtyoaikpwEqoH9w\n 346 \N 189.186.124.94 edbaab2e-9460-45eb-b44e-f6af47ce61ba 2020-08-06 22:27:02.524965 36781 991 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.68515E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 685.15 189.186.124.94 510ee50d-d6b6-4dae-8f0b-ad2d8abb2d85 2020-08-06 22:27:13.621145 36782 2672 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 991\namount: !ruby/object:BigDecimal 18:0.222779E4\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2338E4\nstatus: 0\ndate_sale: 2020-08-06\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-479\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.124.94 9f02cb1d-bc02-43d9-8a66-511c6ddedb1f 2020-08-06 22:29:14.504551 36783 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.22E2\n- !ruby/object:BigDecimal 18:0.21E2\n 34 \N 189.186.124.94 9f02cb1d-bc02-43d9-8a66-511c6ddedb1f 2020-08-06 22:29:14.536952 36784 923 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.124.94 9f02cb1d-bc02-43d9-8a66-511c6ddedb1f 2020-08-06 22:29:14.575797 36785 1960 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.124.94 9f02cb1d-bc02-43d9-8a66-511c6ddedb1f 2020-08-06 22:29:14.602559 36786 2672 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.124.94 76296d4e-4114-465b-95ba-64f6f4755bde 2020-08-06 22:30:21.373212 36787 3591 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 991\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2672\ncardnumber: 1256\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-479\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-479 189.186.124.94 76296d4e-4114-465b-95ba-64f6f4755bde 2020-08-06 22:30:21.397969 36788 2672 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-479 cancelada. 189.186.124.94 de10c581-6aa3-4ef9-af72-3cfb6a089a0d 2020-08-06 22:30:30.301184 36789 3591 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 991\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 2672\ncardnumber: 1256\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-479\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.124.94 de10c581-6aa3-4ef9-af72-3cfb6a089a0d 2020-08-06 22:30:30.326318 36790 1960 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.124.94 de10c581-6aa3-4ef9-af72-3cfb6a089a0d 2020-08-06 22:30:30.360146 36791 923 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.124.94 de10c581-6aa3-4ef9-af72-3cfb6a089a0d 2020-08-06 22:30:30.38735 36792 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.21E2\n- !ruby/object:BigDecimal 18:0.22E2\n 35 \N 189.186.124.94 de10c581-6aa3-4ef9-af72-3cfb6a089a0d 2020-08-06 22:30:30.415235 36793 2673 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 991\namount: !ruby/object:BigDecimal 18:0.228283E4\ntax: !ruby/object:BigDecimal 18:0.5517E2\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.1939E4\nstatus: 0\ndate_sale: 2020-08-06\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-480\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.124.94 37653c69-3a27-4d0d-a693-a0736e10b0f6 2020-08-06 22:31:10.584871 36794 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.22E2\n- !ruby/object:BigDecimal 18:0.21E2\n 36 \N 189.186.124.94 37653c69-3a27-4d0d-a693-a0736e10b0f6 2020-08-06 22:31:10.611373 36795 1960 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.124.94 37653c69-3a27-4d0d-a693-a0736e10b0f6 2020-08-06 22:31:10.63397 36798 3592 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 991\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2673\ncardnumber: 2255\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-480\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-480 189.186.124.94 e009aab6-2f6a-4ef6-a2ea-716c0eb753b6 2020-08-06 22:31:20.402198 36799 3593 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 991\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.44E3\nmove_type: '1'\nsale_id: 2673\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-480\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.44E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-480 189.186.124.94 500561cf-ef7c-429d-ad3f-b306c59e7ae2 2020-08-06 22:31:28.212039 36800 1016 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 991\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1939E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.625E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1125E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.124.94 f8ef1f6f-01bd-4a2b-bba0-1067a2783b11 2020-08-06 23:05:07.150992 36801 991 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.124.94 f8ef1f6f-01bd-4a2b-bba0-1067a2783b11 2020-08-06 23:05:07.169994 36802 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-04 19:33:29.453256000 Z\n- &1 2020-08-05 19:47:08.678238000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-07 00:42:06.343594084 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122462\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946053\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946053\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729309\n mask_addr: 4294967295\nsign_in_count:\n- 195\n- 196\n 392 \N 201.175.156.157 9df641f9-6bfc-4ea1-bc33-9f992385f5c9 2020-08-07 00:42:06.352899 36803 1 User \N \N 1 User \N update ---\nunique_session_id:\n- f2hc6zPkjSU4untEdAyi\n- xfYEcYMRPsaFif3sqzhu\n 393 \N 201.175.156.157 9df641f9-6bfc-4ea1-bc33-9f992385f5c9 2020-08-07 00:42:06.370798 36804 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-05 19:47:08.678238000 Z\n- &1 2020-08-07 00:42:06.343594000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-07 00:49:18.921280337 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946053\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729309\n mask_addr: 4294967295\nsign_in_count:\n- 196\n- 197\n 394 \N 201.175.156.157 4c364261-3a97-481b-a994-624c906f03a8 2020-08-07 00:49:18.927864 36805 1 User \N \N 1 User \N update ---\nunique_session_id:\n- xfYEcYMRPsaFif3sqzhu\n- rTgUzGhHb1vq2XH_sxaN\n 395 \N 201.175.156.157 4c364261-3a97-481b-a994-624c906f03a8 2020-08-07 00:49:18.942439 36806 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-06 00:40:39.234271000 Z\n- &1 2020-08-06 19:01:16.171900000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-07 03:02:29.368116600 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938210\n mask_addr: 4294967295\nsign_in_count:\n- 1696\n- 1697\n 3394 \N 200.68.150.162 72d6101f-f412-4bdb-ac9c-101f67aa3080 2020-08-07 03:02:29.375125 36807 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eGGPoeg5aemf3JLdxXyE\n- oSYmDEhPFjn-ppVcxC4Y\n 3395 \N 200.68.150.162 72d6101f-f412-4bdb-ac9c-101f67aa3080 2020-08-07 03:02:29.391835 36808 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-06 19:01:16.171900000 Z\n- &1 2020-08-07 03:02:29.368116000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-07 05:02:49.895877939 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938210\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938210\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1697\n- 1698\n 3396 \N 177.228.119.167 3d038496-3446-48e2-a0b3-8373d1292150 2020-08-07 05:02:49.905888 36809 4 User \N \N 4 User \N update ---\nunique_session_id:\n- oSYmDEhPFjn-ppVcxC4Y\n- U4w55ybtWUqFXD2kQCXP\n 3397 \N 177.228.119.167 3d038496-3446-48e2-a0b3-8373d1292150 2020-08-07 05:02:49.927838 36810 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-05 18:00:56.652478000 Z\n- &1 2020-08-06 16:14:14.596750000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-07 16:14:12.025727092 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122462\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\nsign_in_count:\n- 607\n- 608\n 1219 \N 187.149.46.153 fde022b0-89a1-439d-9c21-177f21d69bac 2020-08-07 16:14:12.054339 36811 2 User \N \N 2 User \N update ---\nunique_session_id:\n- GbCJxiVrRETf8L-6Q9WU\n- mzzM7CLTCWnfzQeXnCXh\n 1220 \N 187.149.46.153 fde022b0-89a1-439d-9c21-177f21d69bac 2020-08-07 16:14:12.078816 36812 992 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.771E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 771.0 187.149.46.153 c2c869b1-56bb-4f52-b1f4-66e89b584892 2020-08-07 16:16:54.144425 36813 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-07 03:02:29.368116000 Z\n- &1 2020-08-07 05:02:49.895877000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-07 18:41:15.432822586 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938210\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\nsign_in_count:\n- 1698\n- 1699\n 3398 \N 189.186.124.94 992fad6e-e0ff-4773-afba-4b2847ccbadb 2020-08-07 18:41:15.464112 36814 4 User \N \N 4 User \N update ---\nunique_session_id:\n- U4w55ybtWUqFXD2kQCXP\n- WBZQmC_EkvpVbFpfR67r\n 3399 \N 189.186.124.94 992fad6e-e0ff-4773-afba-4b2847ccbadb 2020-08-07 18:41:15.492744 36815 1177 Product \N \N 4 User \N create ---\nsku: BOL-1177\nname: 4BLGV20473\ndescription: 'MOCHILA CLOE GIRLS '\nprice_base: !ruby/object:BigDecimal 18:0.3245E3\nprice_sale: !ruby/object:BigDecimal 18:0.649E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170825305'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: WIN_20200807_12_53_18_Pro.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1177 fue creado. 189.186.124.94 92d8ff1a-3809-43de-9d0f-b68e421c71d4 2020-08-07 18:52:40.199183 36816 2039 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1177\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.124.94 92d8ff1a-3809-43de-9d0f-b68e421c71d4 2020-08-07 18:52:40.253277 36817 1178 Product \N \N 4 User \N create ---\nsku: BOL-1178\nname: 1BLCV20259\ndescription: Bolsa-Briefcase-con-Mica-Transparente-en-Color-ROSA\nprice_base: !ruby/object:BigDecimal 18:0.9495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170818369'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 1BLCV20259.png\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1178 fue creado. 189.186.124.94 c778e269-c85a-42e3-bc79-67f039ec07b8 2020-08-07 19:01:27.119896 36818 2040 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1178\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.124.94 c778e269-c85a-42e3-bc79-67f039ec07b8 2020-08-07 19:01:27.165548 36819 1179 Product \N \N 4 User \N create ---\nsku: BOL-1179\nname: 2BLCV20335\ndescription: 'BOLSO CLOE AMARILLO '\nprice_base: !ruby/object:BigDecimal 18:0.5995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170821499'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: WIN_20200807_13_13_10_Pro.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1179 fue creado. 189.186.124.94 90c695e0-9e3b-47b9-b9e1-eccae1aeba38 2020-08-07 19:12:02.399018 36820 2041 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1179\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.124.94 90c695e0-9e3b-47b9-b9e1-eccae1aeba38 2020-08-07 19:12:02.440144 36821 1180 Product \N \N 4 User \N create ---\nsku: BOL-1180\nname: 1BLCV20265\ndescription: Bolsa-Briefcase-Asa-de-Cadena-en-Color-Camel-\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170818499'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 1BLCV20265.png\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1180 fue creado. 189.186.124.94 cba970ab-224f-4c91-87d8-d2028a644cf3 2020-08-07 19:19:48.748568 36822 2042 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1180\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.124.94 cba970ab-224f-4c91-87d8-d2028a644cf3 2020-08-07 19:19:48.790152 36823 1181 Product \N \N 4 User \N create ---\nsku: BOL-1181\nname: 3BLCV20454\ndescription: 'BOLSO NEGRO '\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170824711'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: WIN_20200807_13_25_41_Pro.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1181 fue creado. 189.186.124.94 c9a2cfdc-8e1b-49ec-a424-293b2b6936bc 2020-08-07 19:25:01.376033 36824 2043 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1181\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.124.94 c9a2cfdc-8e1b-49ec-a424-293b2b6936bc 2020-08-07 19:25:01.423633 36825 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-07-29 00:29:08.318687000 Z\n- &1 2020-08-05 17:20:34.636811000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-07 19:36:41.591936597 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183107274\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\nsign_in_count:\n- 244\n- 245\n 491 \N 189.186.124.94 87212a53-5ac5-4cd6-ba5e-3236891b1d94 2020-08-07 19:36:41.599251 36826 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Rr7xaCWEK9VTy1dywxzm\n- a2NdubfCh2R_PAexi4vo\n 492 \N 189.186.124.94 87212a53-5ac5-4cd6-ba5e-3236891b1d94 2020-08-07 19:36:41.615946 36827 993 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.625E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 625.0 189.186.124.94 04c0eb18-1b0e-469d-9067-d2012386a0fc 2020-08-07 19:36:55.279732 36828 2674 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 993\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-08-07\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-481\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.124.94 76648ff1-b03b-4de2-a7dc-e2c3df2b2372 2020-08-07 19:37:08.746802 36829 1822 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 47 \N 189.186.124.94 76648ff1-b03b-4de2-a7dc-e2c3df2b2372 2020-08-07 19:37:08.775095 36830 2674 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.124.94 968acf79-a40f-4c57-9de9-69a3fffd46eb 2020-08-07 19:38:04.310893 36831 3594 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 993\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 2674\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-481\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-481 189.186.124.94 968acf79-a40f-4c57-9de9-69a3fffd46eb 2020-08-07 19:38:04.335057 36832 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-07 05:02:49.895877000 Z\n- &1 2020-08-07 18:41:15.432822000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-07 19:41:42.698390611 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\nsign_in_count:\n- 1699\n- 1700\n 3400 \N 189.186.124.94 bb31b1fe-5d5d-4edf-b1e4-f7dd79564576 2020-08-07 19:41:42.706053 36833 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WBZQmC_EkvpVbFpfR67r\n- VbbyT_3PcVxscQ4PPWQy\n 3401 \N 189.186.124.94 bb31b1fe-5d5d-4edf-b1e4-f7dd79564576 2020-08-07 19:41:42.723556 36851 2040 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.124.94 cce14225-0c80-42bc-a170-28b818da9f88 2020-08-07 20:14:49.231816 36834 1182 Product \N \N 4 User \N create ---\nsku: BOL-1182\nname: 2BLCV20364\ndescription: MOCHILA COLOR LIMON CON BOLSITA\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170821819'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: WIN_20200807_13_45_01_Pro.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1182 fue creado. 189.186.124.94 716566d5-58d9-4969-8b70-aa87f105b9e1 2020-08-07 19:43:47.520596 36835 2044 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1182\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.124.94 716566d5-58d9-4969-8b70-aa87f105b9e1 2020-08-07 19:43:47.560103 36836 1183 Product \N \N 4 User \N create ---\nsku: BOL-1183\nname: 2BLCP20054\ndescription: Bolsa Briefcase con Textura en Color Azul\nprice_base: !ruby/object:BigDecimal 18:0.9495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170799286'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 2BLCP20054.png\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1183 fue creado. 189.186.124.94 346d3b99-6be8-4816-8c3a-3db606e073d6 2020-08-07 19:50:16.323491 36837 2045 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1183\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.124.94 346d3b99-6be8-4816-8c3a-3db606e073d6 2020-08-07 19:50:16.366821 36838 1184 Product \N \N 4 User \N create ---\nsku: BOL-1184\nname: 1BLCP20959\ndescription: Bolsa Tote con Colgante\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170795967'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 1BLCP20960.png\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1184 fue creado. 189.186.124.94 7bdd6d92-c95d-420d-b7a2-d6022879f9a0 2020-08-07 20:02:02.062459 36839 2046 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1184\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.124.94 7bdd6d92-c95d-420d-b7a2-d6022879f9a0 2020-08-07 20:02:02.117931 36840 1185 Product \N \N 4 User \N create ---\nsku: BOL-1185\nname: 1BLCV20250\ndescription: Bolsa Briefcase con Mascada en Color Fango\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170818109'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 1BLCV20250.png\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1185 fue creado. 189.186.124.94 ac24e8d5-125e-4646-8a94-ebcd11f6470b 2020-08-07 20:07:42.158929 36841 2047 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1185\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.124.94 ac24e8d5-125e-4646-8a94-ebcd11f6470b 2020-08-07 20:07:42.20855 36842 1186 Product \N \N 4 User \N create ---\nsku: BOL-1186\nname: 4BLGP20879\ndescription: "Bolsa-Satchel-Cloe-Girls-Glitter-en-Color-Rosa-|-Cloe\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.2245E3\nprice_sale: !ruby/object:BigDecimal 18:0.449E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170793413'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 4BLGP20879.png\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1186 fue creado. 189.186.124.94 7524818a-8183-45dd-a43e-824b96b47358 2020-08-07 20:11:47.220901 36843 2048 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1186\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.124.94 7524818a-8183-45dd-a43e-824b96b47358 2020-08-07 20:11:47.265342 36844 1187 Product \N \N 4 User \N create ---\nsku: BOL-1187\nname: 4BLGV20471\ndescription: Mochila-Cloe-Girls-Unicornio-en-Color-Rosa-|-Cloe\nprice_base: !ruby/object:BigDecimal 18:0.2995E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 4BLGV20471.png\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1187 fue creado. 189.186.124.94 8fdcdcd9-5772-47f7-9ea3-47d6d6767fd9 2020-08-07 20:14:38.332457 36845 1187 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001187'\n 2 \N 189.186.124.94 8fdcdcd9-5772-47f7-9ea3-47d6d6767fd9 2020-08-07 20:14:38.37464 36846 2049 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1187\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.124.94 8fdcdcd9-5772-47f7-9ea3-47d6d6767fd9 2020-08-07 20:14:38.404687 36847 328 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-61\namount: !ruby/object:BigDecimal 18:0.109425E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.109425E5\nobservations: ''\npurchase_date: 2020-08-07\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-61 por $ 10942.5 MXN creada. 189.186.124.94 cce14225-0c80-42bc-a170-28b818da9f88 2020-08-07 20:14:49.132171 36848 2039 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.124.94 cce14225-0c80-42bc-a170-28b818da9f88 2020-08-07 20:14:49.156732 36849 1984 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.124.94 cce14225-0c80-42bc-a170-28b818da9f88 2020-08-07 20:14:49.181538 36850 2041 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.124.94 cce14225-0c80-42bc-a170-28b818da9f88 2020-08-07 20:14:49.205909 36854 2045 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.124.94 cce14225-0c80-42bc-a170-28b818da9f88 2020-08-07 20:14:49.314403 36855 2044 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.124.94 cce14225-0c80-42bc-a170-28b818da9f88 2020-08-07 20:14:49.341898 36856 2046 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.124.94 cce14225-0c80-42bc-a170-28b818da9f88 2020-08-07 20:14:49.368053 36857 2047 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.124.94 cce14225-0c80-42bc-a170-28b818da9f88 2020-08-07 20:14:49.392457 36858 2048 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.124.94 cce14225-0c80-42bc-a170-28b818da9f88 2020-08-07 20:14:49.415369 36859 2049 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.124.94 cce14225-0c80-42bc-a170-28b818da9f88 2020-08-07 20:14:49.440553 36860 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-05 17:20:34.636811000 Z\n- &1 2020-08-07 19:36:41.591936000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-07 20:15:17.359003463 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\nsign_in_count:\n- 245\n- 246\n 493 \N 189.186.124.94 a8188cbd-01ba-441e-a63b-a26f795a92c3 2020-08-07 20:15:17.365236 36861 21 User \N \N 21 User \N update ---\nunique_session_id:\n- a2NdubfCh2R_PAexi4vo\n- zhbASKYyCrnJQ39PxYH5\n 494 \N 189.186.124.94 a8188cbd-01ba-441e-a63b-a26f795a92c3 2020-08-07 20:15:17.381172 36862 1973 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.124.94 f11ebd3a-a3fd-4b6f-8d85-5a774dc34630 2020-08-07 20:16:14.147188 36863 1971 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.124.94 9c352237-dba7-40ea-ad05-2e064de62598 2020-08-07 20:16:54.232978 36864 646 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-08-07\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.124.94 64231bd6-5c53-4341-9f9a-c40ea140b069 2020-08-07 20:16:58.118699 36865 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-07 18:41:15.432822000 Z\n- &1 2020-08-07 19:41:42.698390000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-07 20:21:03.177460409 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\nsign_in_count:\n- 1700\n- 1701\n 3402 \N 187.149.46.153 d86f9b2a-3782-4be7-b6df-34ead88d5e77 2020-08-07 20:21:03.183849 36866 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VbbyT_3PcVxscQ4PPWQy\n- Xrux3uDz-xSpQzyJqFaB\n 3403 \N 187.149.46.153 d86f9b2a-3782-4be7-b6df-34ead88d5e77 2020-08-07 20:21:03.200847 36867 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-07 19:41:42.698390000 Z\n- &1 2020-08-07 20:21:03.177460000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-07 20:27:28.824179437 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\nsign_in_count:\n- 1701\n- 1702\n 3404 \N 189.186.124.94 40f39974-5bf0-4de0-b90d-5676cd8df2e1 2020-08-07 20:27:28.832862 36868 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Xrux3uDz-xSpQzyJqFaB\n- HtwwaoasB6ark3hqVcn7\n 3405 \N 189.186.124.94 40f39974-5bf0-4de0-b90d-5676cd8df2e1 2020-08-07 20:27:28.85348 36869 1168 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1168'\n is_parent: false\n sku: BOL-1168\n name: 1BLCP20938\n description: BOLSO CROSSBODY\n price_base: '749.5'\n price_sale: '1499.0'\n img_product: WIN_20200807_14_29_39_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170795325'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-03 19:49:05.408836'\n updated_at: &12 2020-08-07 20:28:35.095785014 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1168'\n sku: BOL-1168\n name: 1BLCP20938\n description: BOLSO CROSSBODY\n price_base: '749.50'\n price_sale: '1499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-03 19:49:05.408836'\n updated_at: '2020-08-03 19:49:05.408836'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170795325'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1168'\n type: *3\n value: 1168\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1168\n type: *7\n value: BOL-1168\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCP20938\n type: *8\n value: 1BLCP20938\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO CROSSBODY\n type: *6\n value: BOLSO CROSSBODY\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '749.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1499E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20200807_14_29_39_Pro.jpg\n type: *2\n value: WIN_20200807_14_29_39_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170795325'\n type: *2\n value: '7509170795325'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-03 19:49:05.408836'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20200807_14_29_39_Pro.jpg\n 2 El producto BOL-1168 fue modificado. 189.186.124.94 1254c88e-521e-4e49-9185-4646ea7c6688 2020-08-07 20:28:35.142505 36870 1170 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1170'\n is_parent: false\n sku: BOL-1170\n name: 1BLCP20976\n description: BACK PACK ROJA\n price_base: '749.5'\n price_sale: '1499.0'\n img_product: WIN_20200807_14_32_52_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170796469'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-03 19:51:46.272032'\n updated_at: &12 2020-08-07 20:31:14.628826885 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1170'\n sku: BOL-1170\n name: 1BLCP20976\n description: BACK PACK ROJA\n price_base: '749.50'\n price_sale: '1499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-03 19:51:46.272032'\n updated_at: '2020-08-03 19:51:46.272032'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170796469'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1170'\n type: *3\n value: 1170\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1170\n type: *7\n value: BOL-1170\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCP20976\n type: *8\n value: 1BLCP20976\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BACK PACK ROJA\n type: *6\n value: BACK PACK ROJA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '749.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1499E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20200807_14_32_52_Pro.jpg\n type: *2\n value: WIN_20200807_14_32_52_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170796469'\n type: *2\n value: '7509170796469'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-03 19:51:46.272032'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20200807_14_32_52_Pro.jpg\n 2 El producto BOL-1170 fue modificado. 189.186.124.94 cae69587-df9a-40d6-b191-92ae67387560 2020-08-07 20:31:14.671157 36871 1171 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1171'\n is_parent: false\n sku: BOL-1171\n name: 1BLCP20974\n description: BOLSO ROJO CLOE\n price_base: '699.5'\n price_sale: '1399.0'\n img_product: WIN_20200807_14_32_27_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170796407'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-03 19:52:45.139585'\n updated_at: &12 2020-08-07 20:31:48.307267801 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1171'\n sku: BOL-1171\n name: 1BLCP20974\n description: BOLSO ROJO CLOE\n price_base: '699.50'\n price_sale: '1399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-03 19:52:45.139585'\n updated_at: '2020-08-03 19:52:45.139585'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170796407'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1171'\n type: *3\n value: 1171\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1171\n type: *7\n value: BOL-1171\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCP20974\n type: *8\n value: 1BLCP20974\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO ROJO CLOE\n type: *6\n value: BOLSO ROJO CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '699.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1399E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20200807_14_32_27_Pro.jpg\n type: *2\n value: WIN_20200807_14_32_27_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170796407'\n type: *2\n value: '7509170796407'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-03 19:52:45.139585'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20200807_14_32_27_Pro.jpg\n 2 El producto BOL-1171 fue modificado. 189.186.124.94 18b5ffa3-3f1d-4010-80fb-06313b9e6cd4 2020-08-07 20:31:48.347714 36872 1188 Product \N \N 21 User \N create ---\nsku: CAR-1188\nname: 2BICV20314\ndescription: Cartera Flap en Color Rosa\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 2BICV20314.png\ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1188 fue creado. 189.186.124.94 1bc7fba9-a2b7-4e15-925a-07ac77643b3e 2020-08-07 20:53:15.381212 36873 1188 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001188'\n 2 \N 189.186.124.94 1bc7fba9-a2b7-4e15-925a-07ac77643b3e 2020-08-07 20:53:15.410064 36874 2050 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1188\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.124.94 1bc7fba9-a2b7-4e15-925a-07ac77643b3e 2020-08-07 20:53:15.435836 36875 1188 Product \N \N 21 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.4495E3\n- !ruby/object:BigDecimal 27:0.4485E3\n 3 El producto CAR-1188 fue modificado. 189.186.124.94 344e5540-ded9-41f7-bb29-c3da69b309eb 2020-08-07 20:53:19.882198 36876 1188 Product \N \N 21 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.4485E3\n- !ruby/object:BigDecimal 27:0.4495E3\n 4 El producto CAR-1188 fue modificado. 189.186.124.94 f0b0502d-2c36-43a6-a48a-fa07fbda8cea 2020-08-07 20:53:29.292162 36877 1161 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1161'\n is_parent: false\n sku: CAR-1161\n name: 1BICV20253\n description: BOLSITA CARTERA BICOLOR\n price_base: '449.5'\n price_sale: '899.0'\n img_product: 1BICV20253.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170818185'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-07-29 19:46:00.37037'\n updated_at: &12 2020-08-07 20:56:02.314125405 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1161'\n sku: CAR-1161\n name: 1BICV20253\n description: BOLSITA CARTERA BICOLOR\n price_base: '449.50'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-07-29 19:46:00.37037'\n updated_at: '2020-07-29 19:46:00.37037'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170818185'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1161'\n type: *3\n value: 1161\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-1161\n type: *7\n value: CAR-1161\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BICV20253\n type: *8\n value: 1BICV20253\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSITA CARTERA BICOLOR\n type: *6\n value: BOLSITA CARTERA BICOLOR\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '449.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 1BICV20253.png\n type: *2\n value: 1BICV20253.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170818185'\n type: *2\n value: '7509170818185'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-07-29 19:46:00.37037'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 1BICV20253.png\n 2 El producto CAR-1161 fue modificado. 189.186.124.94 6bb0c6fc-1223-43a2-961f-fdb7b60555e0 2020-08-07 20:56:02.357018 36878 1162 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1162'\n is_parent: false\n sku: CAR-1162\n name: 2BICV20356\n description: CARTERA CLOE LETRA BLANCA\n price_base: '449.5'\n price_sale: '899.0'\n img_product: 2BICV20356.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170821512'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-07-29 19:47:36.990618'\n updated_at: &12 2020-08-07 20:59:44.161189366 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1162'\n sku: CAR-1162\n name: 2BICV20356\n description: CARTERA CLOE LETRA BLANCA\n price_base: '449.50'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-07-29 19:47:36.990618'\n updated_at: '2020-07-29 19:47:36.990618'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170821512'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1162'\n type: *3\n value: 1162\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-1162\n type: *7\n value: CAR-1162\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 2BICV20356\n type: *8\n value: 2BICV20356\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA CLOE LETRA BLANCA\n type: *6\n value: CARTERA CLOE LETRA BLANCA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '449.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 2BICV20356.png\n type: *2\n value: 2BICV20356.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170821512'\n type: *2\n value: '7509170821512'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-07-29 19:47:36.990618'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 2BICV20356.png\n 2 El producto CAR-1162 fue modificado. 189.186.124.94 1c8e469d-d27e-4236-bcd5-50e5ca2282fe 2020-08-07 20:59:44.203591 36879 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-08-05 20:00:10.331189000 Z\n- &1 2020-08-05 21:20:35.001241000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-07 21:01:27.705250530 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\nsign_in_count:\n- 141\n- 142\n 284 \N 187.149.46.153 4bb73f83-ce58-4afe-b9e0-a43b9895eb50 2020-08-07 21:01:27.712428 36880 9 User \N \N 9 User \N update ---\nunique_session_id:\n- kPzmjuQz61zzzZ5EuCyG\n- MR6zvJ91v1CcLzy6e9d-\n 285 \N 187.149.46.153 4bb73f83-ce58-4afe-b9e0-a43b9895eb50 2020-08-07 21:01:27.72824 36903 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HtwwaoasB6ark3hqVcn7\n- yfcD746zsU6vKB3dDeG6\n 3407 \N 187.149.46.153 0e6eb006-cc9b-49e5-ae62-9de3f4862838 2020-08-07 21:33:08.469265 36881 2675 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 992\namount: !ruby/object:BigDecimal 18:0.154042E4\ntax: !ruby/object:BigDecimal 18:0.2758E2\ndiscount: !ruby/object:BigDecimal 18:0.1368E4\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-08-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1274\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.153 1dda87b1-7cc4-4bda-84a8-2cb1bc36c3a8 2020-08-07 21:03:24.802005 36882 210 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.46.153 1dda87b1-7cc4-4bda-84a8-2cb1bc36c3a8 2020-08-07 21:03:24.834015 36883 244 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.46.153 1dda87b1-7cc4-4bda-84a8-2cb1bc36c3a8 2020-08-07 21:03:24.859472 36884 2675 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.46.153 0bf4b6a3-bd95-40f9-a251-54f9cff28db8 2020-08-07 21:03:32.065355 36885 3595 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 992\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2675\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1274\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.3E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1274 187.149.46.153 0bf4b6a3-bd95-40f9-a251-54f9cff28db8 2020-08-07 21:03:32.086136 36886 1189 Product \N \N 21 User \N create ---\nsku: CAR-1189\nname: 1BICV20261\ndescription: Cartera Estampado Logo\nprice_base: !ruby/object:BigDecimal 18:0.3995E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170818406'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 1BICV20261.png\ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1189 fue creado. 189.186.124.94 918ac063-6112-4e40-8b7e-76d156da8bdb 2020-08-07 21:04:09.971861 36887 2051 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1189\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.124.94 918ac063-6112-4e40-8b7e-76d156da8bdb 2020-08-07 21:04:10.026509 36888 1190 Product \N \N 21 User \N create ---\nsku: CAR-1190\nname: 2BICP2099\ndescription: CARTERA TARJETERO COLOR NUDE\nprice_base: !ruby/object:BigDecimal 18:0.3995E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170797176'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: WIN_20200807_15_13_56_Pro.jpg\ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1190 fue creado. 189.186.124.94 72d32e34-3930-4be5-84e9-42984afae523 2020-08-07 21:15:28.064784 36889 2052 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1190\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.124.94 72d32e34-3930-4be5-84e9-42984afae523 2020-08-07 21:15:28.1127 36890 1173 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1173'\n is_parent: false\n sku: CAR-1173\n name: 1BICP20958\n description: BILLETERA CLOE NEON\n price_base: '399.5'\n price_sale: '799.0'\n img_product: WIN_20200807_15_13_46_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170795929'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-03 19:55:10.139161'\n updated_at: &12 2020-08-07 21:16:16.506551225 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1173'\n sku: CAR-1173\n name: 1BICP20958\n description: BILLETERA CLOE NEON\n price_base: '399.50'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-03 19:55:10.139161'\n updated_at: '2020-08-03 19:55:10.139161'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170795929'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1173'\n type: *3\n value: 1173\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-1173\n type: *7\n value: CAR-1173\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BICP20958\n type: *8\n value: 1BICP20958\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BILLETERA CLOE NEON\n type: *6\n value: BILLETERA CLOE NEON\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '399.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20200807_15_13_46_Pro.jpg\n type: *2\n value: WIN_20200807_15_13_46_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170795929'\n type: *2\n value: '7509170795929'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-03 19:55:10.139161'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20200807_15_13_46_Pro.jpg\n 2 El producto CAR-1173 fue modificado. 189.186.124.94 e0ed32b6-825d-4fc2-a7ff-92d03ae2e970 2020-08-07 21:16:16.550022 36891 329 Purchase \N \N 21 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-62\namount: !ruby/object:BigDecimal 18:0.20975E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.20975E4\nobservations: ''\npurchase_date: 2020-08-07\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-62 por $ 2097.5 MXN creada. 189.186.124.94 2fb3ffc1-8b0f-43bb-8357-ff8eeacc20ec 2020-08-07 21:16:23.117872 36892 2050 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.124.94 2fb3ffc1-8b0f-43bb-8357-ff8eeacc20ec 2020-08-07 21:16:23.141504 36893 2052 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.124.94 2fb3ffc1-8b0f-43bb-8357-ff8eeacc20ec 2020-08-07 21:16:23.175371 36894 2051 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.124.94 2fb3ffc1-8b0f-43bb-8357-ff8eeacc20ec 2020-08-07 21:16:23.205293 36895 2676 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 992\namount: !ruby/object:BigDecimal 18:0.2426E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2426E4\ntotal: !ruby/object:BigDecimal 18:0.0\nstatus: 0\ndate_sale: 2020-08-07\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1275\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.153 6804e371-9b1e-401f-a6e9-d143d82de1e5 2020-08-07 21:30:12.410839 36896 16 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.46.153 6804e371-9b1e-401f-a6e9-d143d82de1e5 2020-08-07 21:30:12.439528 36897 535 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.46.153 6804e371-9b1e-401f-a6e9-d143d82de1e5 2020-08-07 21:30:12.465586 36898 11 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.46.153 6804e371-9b1e-401f-a6e9-d143d82de1e5 2020-08-07 21:30:12.491346 36899 1685 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.46.153 6804e371-9b1e-401f-a6e9-d143d82de1e5 2020-08-07 21:30:12.518905 36900 2676 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.46.153 4bd96547-c448-4ae7-b2b5-926e7ccdf983 2020-08-07 21:30:16.981977 36901 3596 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 992\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2676\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1275\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1275 187.149.46.153 4bd96547-c448-4ae7-b2b5-926e7ccdf983 2020-08-07 21:30:17.002275 36902 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-07 20:21:03.177460000 Z\n- &1 2020-08-07 20:27:28.824179000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-07 21:33:08.436661590 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\nsign_in_count:\n- 1702\n- 1703\n 3406 \N 187.149.46.153 0e6eb006-cc9b-49e5-ae62-9de3f4862838 2020-08-07 21:33:08.447952 36904 1191 Product \N \N 4 User \N create ---\nsku: BOL-1191\nname: 1BLCP20933\ndescription: 'BOLSITA ROSA '\nprice_base: !ruby/object:BigDecimal 18:0.6495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170795172'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1191 fue creado. 187.149.46.153 693c798c-0011-4ea2-86d0-72922629d75f 2020-08-07 21:35:01.603898 36905 2053 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1191\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.46.153 693c798c-0011-4ea2-86d0-72922629d75f 2020-08-07 21:35:01.650886 36906 330 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-132\namount: !ruby/object:BigDecimal 18:0.6495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6495E3\nobservations: ''\npurchase_date: 2020-08-07\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-132 por $ 649.5 MXN creada. 187.149.46.153 171198dd-586e-40b3-8b35-35e993bdf5f4 2020-08-07 21:35:04.803135 36907 2053 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.46.153 171198dd-586e-40b3-8b35-35e993bdf5f4 2020-08-07 21:35:04.830613 36908 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-07 20:27:28.824179000 Z\n- &1 2020-08-07 21:33:08.436661000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-07 21:38:51.494438481 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\nsign_in_count:\n- 1703\n- 1704\n 3408 \N 189.186.124.94 f47ddb44-a124-47ad-9819-79a7b4f23359 2020-08-07 21:38:51.504023 36909 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yfcD746zsU6vKB3dDeG6\n- PkePqrJ1GVwXErqK1FRe\n 3409 \N 189.186.124.94 f47ddb44-a124-47ad-9819-79a7b4f23359 2020-08-07 21:38:51.527473 36910 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-07 21:33:08.436661000 Z\n- &1 2020-08-07 21:38:51.494438000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-07 21:43:03.011267269 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\nsign_in_count:\n- 1704\n- 1705\n 3410 \N 187.149.46.153 9002ba26-33cb-4c16-aa2a-2b13c113b446 2020-08-07 21:43:03.01925 36911 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PkePqrJ1GVwXErqK1FRe\n- SbpLdgUAeoTKC3c9kDAu\n 3411 \N 187.149.46.153 9002ba26-33cb-4c16-aa2a-2b13c113b446 2020-08-07 21:43:03.04079 36912 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-07 21:38:51.494438000 Z\n- &1 2020-08-07 21:43:03.011267000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-07 21:49:44.449251170 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\nsign_in_count:\n- 1705\n- 1706\n 3412 \N 189.186.124.94 c7db86e8-f3d9-4edc-8700-0f208beb7a67 2020-08-07 21:49:44.462924 36913 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SbpLdgUAeoTKC3c9kDAu\n- dFoxEXvPM2zQiPbUDj-r\n 3413 \N 189.186.124.94 c7db86e8-f3d9-4edc-8700-0f208beb7a67 2020-08-07 21:49:44.492301 36914 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-07 21:43:03.011267000 Z\n- &1 2020-08-07 21:49:44.449251000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-07 21:51:01.976036472 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\nsign_in_count:\n- 1706\n- 1707\n 3414 \N 187.149.46.153 2959b2b1-c73c-475e-8c7e-6a2b832c4270 2020-08-07 21:51:01.983601 36915 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dFoxEXvPM2zQiPbUDj-r\n- chqBdxytxHXf7CcR8e-d\n 3415 \N 187.149.46.153 2959b2b1-c73c-475e-8c7e-6a2b832c4270 2020-08-07 21:51:02.006635 36916 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-07 21:49:44.449251000 Z\n- &1 2020-08-07 21:51:01.976036000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-07 21:51:54.672750067 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\nsign_in_count:\n- 1707\n- 1708\n 3416 \N 189.186.124.94 5214a708-ca91-4254-9fd2-373bd8347d8d 2020-08-07 21:51:54.681077 36917 4 User \N \N 4 User \N update ---\nunique_session_id:\n- chqBdxytxHXf7CcR8e-d\n- "-sSysgr_zveb5tpodRDm"\n 3417 \N 189.186.124.94 5214a708-ca91-4254-9fd2-373bd8347d8d 2020-08-07 21:51:54.699638 36918 331 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: \npurchase_code: CEN-C-58\namount: !ruby/object:BigDecimal 18:0.39975E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.39975E4\nobservations: ''\npurchase_date: 2020-08-07\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-58 por $ 3997.5 MXN creada. 189.186.124.94 bbe9d4ab-431b-46d2-8102-10a1673966b6 2020-08-07 21:52:06.288124 36919 647 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-08-07\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.124.94 69e9c052-ef95-472d-90ef-614fd03db05d 2020-08-07 21:54:27.490396 36920 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-06 16:14:14.596750000 Z\n- &1 2020-08-07 16:14:12.025727000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-07 22:22:44.472992715 Z\nsign_in_count:\n- 608\n- 609\n 1221 \N 187.149.46.153 dafd7296-ec4e-4a63-a6fc-b68d7f120b22 2020-08-07 22:22:44.478839 36921 2 User \N \N 2 User \N update ---\nunique_session_id:\n- mzzM7CLTCWnfzQeXnCXh\n- aenzuhse8bCiKV7ww5o5\n 1222 \N 187.149.46.153 dafd7296-ec4e-4a63-a6fc-b68d7f120b22 2020-08-07 22:22:44.494683 36922 2677 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 992\namount: !ruby/object:BigDecimal 18:0.124973E4\ntax: !ruby/object:BigDecimal 18:0.4827E2\ndiscount: !ruby/object:BigDecimal 18:0.948E3\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2020-08-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1276\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.46.153 3064f64a-a8e9-4a10-96ef-c9f9fb32bc65 2020-08-07 22:49:08.262223 36923 206 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.46.153 3064f64a-a8e9-4a10-96ef-c9f9fb32bc65 2020-08-07 22:49:08.289516 36924 1563 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.46.153 3064f64a-a8e9-4a10-96ef-c9f9fb32bc65 2020-08-07 22:49:08.313758 36925 2677 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.46.153 7aff02ea-4c90-48f6-90da-f2819e7b5654 2020-08-07 22:49:13.369885 36926 3597 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 992\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.35E3\nmove_type: '1'\nsale_id: 2677\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1276\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1276 187.149.46.153 7aff02ea-4c90-48f6-90da-f2819e7b5654 2020-08-07 22:49:13.391751 36927 3598 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 993\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 2547\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '41566'\n 1 movimiento de efectivo por venta con folio PV3-V-393 189.186.124.94 618ed549-d151-4207-8b3d-d5a56b787551 2020-08-07 23:43:28.413282 36928 3599 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 993\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 2547\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '41566'\n 1 movimiento de efectivo por venta con folio PV3-V-393 189.186.124.94 e8749b2f-25cb-4aa1-87fd-6ab1a7eb6640 2020-08-07 23:43:37.24231 36929 2547 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.124.94 7cbc49bc-93a8-4688-9288-84ba26d2603a 2020-08-07 23:43:38.899563 36930 1017 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 992\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.55E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.821E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1321E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.46.153 56f814e4-96f9-4a11-b069-573393449dfc 2020-08-08 00:28:47.632631 36931 992 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.46.153 56f814e4-96f9-4a11-b069-573393449dfc 2020-08-08 00:28:47.646917 36932 1018 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 993\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.2798E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.19E4\ncash_fund: !ruby/object:BigDecimal 18:0.923E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2823E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.124.94 99e64e09-f17f-4a2c-8622-009feca8efb6 2020-08-08 00:37:23.629034 36933 993 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.124.94 99e64e09-f17f-4a2c-8622-009feca8efb6 2020-08-08 00:37:23.64256 36934 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-07 19:36:41.591936000 Z\n- &1 2020-08-07 20:15:17.359003000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-08 00:54:25.291248086 Z\nsign_in_count:\n- 246\n- 247\n 495 \N 189.186.124.94 86af939f-1b85-41d8-83f5-9d51881ea2df 2020-08-08 00:54:25.299966 36935 21 User \N \N 21 User \N update ---\nunique_session_id:\n- zhbASKYyCrnJQ39PxYH5\n- KfQrB8WPwHg_gxpoxZV_\n 496 \N 189.186.124.94 86af939f-1b85-41d8-83f5-9d51881ea2df 2020-08-08 00:54:25.325148 36936 1192 Product \N \N 21 User \N create ---\nsku: BOL-1192\nname: CAN-0004\ndescription: CANGURERA CLOE\nprice_base: !ruby/object:BigDecimal 18:0.5495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1192 fue creado. 189.186.124.94 5e71c96d-fdaa-4499-947c-0fc3ccfc9810 2020-08-08 00:56:24.520461 36937 1192 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001192'\n 2 \N 189.186.124.94 5e71c96d-fdaa-4499-947c-0fc3ccfc9810 2020-08-08 00:56:24.549409 36938 2054 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1192\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.124.94 5e71c96d-fdaa-4499-947c-0fc3ccfc9810 2020-08-08 00:56:24.579976 36939 994 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.923E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 923.0 189.186.124.94 a7d15394-17c4-44d9-a89d-b1a7b366ad2c 2020-08-08 00:56:41.803901 36940 332 Purchase \N \N 21 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-63\namount: !ruby/object:BigDecimal 18:0.5495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.5495E3\nobservations: ''\npurchase_date: 2020-08-07\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-63 por $ 549.5 MXN creada. 189.186.124.94 c91e3faa-de11-48ea-a098-503464cc5812 2020-08-08 00:57:02.151262 36941 2054 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.124.94 c91e3faa-de11-48ea-a098-503464cc5812 2020-08-08 00:57:02.176129 36942 2678 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 994\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2020-08-07\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-482\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.124.94 9491ccd1-07ee-4f5d-a458-a8fea906e7e9 2020-08-08 00:57:21.283937 36943 2054 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.124.94 9491ccd1-07ee-4f5d-a458-a8fea906e7e9 2020-08-08 00:57:21.312974 36944 2678 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.124.94 aab65763-b3d3-40f2-97ff-a2f304754d12 2020-08-08 00:57:28.406984 37080 2625 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.59.156 426caed7-4b68-4059-952d-201e93ff736a 2020-08-13 00:37:20.213442 37106 2062 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 f2ff9aa0-2275-4b29-bfb8-8c887b9bbd34 2020-08-13 19:06:58.791486 36945 3600 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 994\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 2678\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-482\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-482 189.186.124.94 aab65763-b3d3-40f2-97ff-a2f304754d12 2020-08-08 00:57:28.451302 36946 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-07 21:51:01.976036000 Z\n- &1 2020-08-07 21:51:54.672750000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-08 02:24:44.044160378 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945602\n mask_addr: 4294967295\nsign_in_count:\n- 1708\n- 1709\n 3418 \N 200.68.179.130 365b9ecd-b417-4662-9cb7-cb480986ad48 2020-08-08 02:24:44.057585 36947 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-sSysgr_zveb5tpodRDm"\n- i8VCtypXjWyfe5mKiWik\n 3419 \N 200.68.179.130 365b9ecd-b417-4662-9cb7-cb480986ad48 2020-08-08 02:24:44.083965 36948 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-07 20:15:17.359003000 Z\n- &1 2020-08-08 00:54:25.291248000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-08 02:41:27.418604669 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183136253\n mask_addr: 4294967295\nsign_in_count:\n- 247\n- 248\n 497 \N 189.186.205.253 d963ba11-831e-45c9-8574-788b3b5f6009 2020-08-08 02:41:27.425666 36949 21 User \N \N 21 User \N update ---\nunique_session_id:\n- KfQrB8WPwHg_gxpoxZV_\n- cEyxCE54Y3te6kdDkoxr\n 498 \N 189.186.205.253 d963ba11-831e-45c9-8574-788b3b5f6009 2020-08-08 02:41:27.441765 36950 1019 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 994\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1099E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.1099E4\ncash_fund: !ruby/object:BigDecimal 18:0.923E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2022E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.205.253 aff38c7d-59dd-4781-878d-2d39cd4f1fa4 2020-08-08 02:42:41.12057 36951 994 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.205.253 aff38c7d-59dd-4781-878d-2d39cd4f1fa4 2020-08-08 02:42:41.138666 36952 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-08 00:54:25.291248000 Z\n- &1 2020-08-08 02:41:27.418604000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-08 18:09:57.006518042 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183136253\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183136253\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\nsign_in_count:\n- 248\n- 249\n 499 \N 189.186.124.94 7a427c93-fe96-4a3f-ac2c-e607ddb050a3 2020-08-08 18:09:57.038415 36953 21 User \N \N 21 User \N update ---\nunique_session_id:\n- cEyxCE54Y3te6kdDkoxr\n- UsCv1krJyeRktAJMFX7-\n 500 \N 189.186.124.94 7a427c93-fe96-4a3f-ac2c-e607ddb050a3 2020-08-08 18:09:57.068886 36954 995 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.923E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 923.0 189.186.124.94 a2367e30-4410-406f-80ed-812216421df9 2020-08-08 18:10:09.130373 36955 3601 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2485\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.124.94 ee5bb5cf-5ee3-4c90-85f0-f3b9ef2e8052 2020-08-08 18:10:32.25436 36956 2485 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.124.94 ee5bb5cf-5ee3-4c90-85f0-f3b9ef2e8052 2020-08-08 18:10:32.283635 36957 3601 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 933\n- 995\n 2 movimiento de efectivo por venta con folio PV1-V-1209 189.186.124.94 ee5bb5cf-5ee3-4c90-85f0-f3b9ef2e8052 2020-08-08 18:10:32.297043 36958 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-07 16:14:12.025727000 Z\n- &1 2020-08-07 22:22:44.472992000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-08 18:50:06.688278144 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118812\n mask_addr: 4294967295\nsign_in_count:\n- 609\n- 610\n 1223 \N 187.149.56.220 cb739bc9-f177-4fa3-910e-d52ac1ebeb75 2020-08-08 18:50:06.695216 36959 2 User \N \N 2 User \N update ---\nunique_session_id:\n- aenzuhse8bCiKV7ww5o5\n- XpWx1mQ7hwvR2yXyoxBz\n 1224 \N 187.149.56.220 cb739bc9-f177-4fa3-910e-d52ac1ebeb75 2020-08-08 18:50:06.712445 36960 996 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.821E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 821.0 187.149.56.220 f1ecf2e9-d01b-4925-a88c-2ddd0ca8290d 2020-08-08 18:50:28.918765 36961 2679 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 996\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.424E3\ntotal: !ruby/object:BigDecimal 18:0.425E3\nstatus: 0\ndate_sale: 2020-08-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1277\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.56.220 2b76f64b-2f95-4ead-9649-4a8371b9ca65 2020-08-08 18:51:18.241565 36962 793 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.56.220 2b76f64b-2f95-4ead-9649-4a8371b9ca65 2020-08-08 18:51:18.273968 36963 2679 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.56.220 f6eac610-587b-4eb8-8363-b76456c9b14a 2020-08-08 18:51:25.622487 36964 3602 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 996\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.425E3\nmove_type: '1'\nsale_id: 2679\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1277\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.425E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1277 187.149.56.220 f6eac610-587b-4eb8-8363-b76456c9b14a 2020-08-08 18:51:25.645084 36965 354 Customer \N \N 2 User \N create ---\nnick_name: LULI GAXIOLA\nphone: "(667) 237-0882"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LULI GAXIOLA fue registrado. 187.149.56.220 d1ff5a89-45d9-4275-8e03-1673a07e745e 2020-08-08 19:09:14.782337 36966 2680 Sale \N \N 2 User \N create ---\ncustomer_id: 354\nuser_id: 2\nopen_cash_register_id: 996\namount: !ruby/object:BigDecimal 18:0.669E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2020-08-08\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1278\nexpiration_date: 2020-09-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.56.220 d0cf5f59-0639-4be8-a7e1-ed9a3d2e9610 2020-08-08 19:09:45.314439 36967 1857 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.56.220 d0cf5f59-0639-4be8-a7e1-ed9a3d2e9610 2020-08-08 19:09:45.426086 36968 3603 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 996\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2680\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1278\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1278 187.149.56.220 1e4add8d-1cbc-4e43-83b2-bca823fafbe3 2020-08-08 19:09:55.986069 36969 2680 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.56.220 6eef53c2-7903-4bac-a135-e9e5a6cea64a 2020-08-08 19:10:02.126853 36970 2681 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 996\namount: !ruby/object:BigDecimal 18:0.49735E4\ntax: !ruby/object:BigDecimal 18:0.895E2\ndiscount: !ruby/object:BigDecimal 18:0.4314E4\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2020-08-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1279\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.56.220 21d37044-1fee-4b63-8e96-006ef22186ac 2020-08-08 20:07:40.566323 36971 244 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.56.220 21d37044-1fee-4b63-8e96-006ef22186ac 2020-08-08 20:07:40.598972 36972 204 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.56.220 21d37044-1fee-4b63-8e96-006ef22186ac 2020-08-08 20:07:40.633312 36973 229 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.56.220 21d37044-1fee-4b63-8e96-006ef22186ac 2020-08-08 20:07:40.674366 36974 215 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.56.220 21d37044-1fee-4b63-8e96-006ef22186ac 2020-08-08 20:07:40.714744 36975 1893 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.56.220 21d37044-1fee-4b63-8e96-006ef22186ac 2020-08-08 20:07:40.74703 36976 223 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.56.220 21d37044-1fee-4b63-8e96-006ef22186ac 2020-08-08 20:07:40.784323 36977 1898 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.56.220 21d37044-1fee-4b63-8e96-006ef22186ac 2020-08-08 20:07:40.823695 36978 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.48E2\n- !ruby/object:BigDecimal 18:0.47E2\n 14 \N 187.149.56.220 21d37044-1fee-4b63-8e96-006ef22186ac 2020-08-08 20:07:40.852479 36979 2681 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.56.220 959cfd70-cf26-4176-94ab-6777964751d6 2020-08-08 20:07:47.573015 36980 3604 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 996\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 2681\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1279\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.749E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1279 187.149.56.220 959cfd70-cf26-4176-94ab-6777964751d6 2020-08-08 20:07:47.59417 36981 320 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 996\nquantity: !ruby/object:BigDecimal 18:0.144E4\nstatus: 1\nobservations: SUELDO ROCIO\nexpense_date: 2020-08-08\nexpense_code: PV1-E-222\n 1 Egreso por 1440.0 registrado 187.149.56.220 0f84072c-c899-4f94-bab7-df5d9bff735f 2020-08-08 20:44:13.360947 36982 3605 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 996\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.144E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 320\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.56.220 0f84072c-c899-4f94-bab7-df5d9bff735f 2020-08-08 20:44:13.383188 36983 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-07 21:51:54.672750000 Z\n- &1 2020-08-08 02:24:44.044160000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-08 21:01:58.510688439 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945602\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945602\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540047\n mask_addr: 4294967295\nsign_in_count:\n- 1709\n- 1710\n 3420 \N 177.228.119.143 7031bd7b-6932-4408-a157-36382de02a78 2020-08-08 21:01:58.521502 36984 4 User \N \N 4 User \N update ---\nunique_session_id:\n- i8VCtypXjWyfe5mKiWik\n- capA-dujM2J429mmJN7J\n 3421 \N 177.228.119.143 7031bd7b-6932-4408-a157-36382de02a78 2020-08-08 21:01:58.545743 36985 2682 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 996\namount: !ruby/object:BigDecimal 18:0.56E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.28E3\ntotal: !ruby/object:BigDecimal 18:0.28E3\nstatus: 0\ndate_sale: 2020-08-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1280\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.56.220 b73d678d-3136-4a43-9ff7-7138cf82f87f 2020-08-08 21:13:04.595775 36986 791 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 9 \N 187.149.56.220 b73d678d-3136-4a43-9ff7-7138cf82f87f 2020-08-08 21:13:04.631715 36987 2682 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.56.220 4ffa27d2-7153-4a1f-be35-6ae94dc11b17 2020-08-08 21:13:09.758068 36988 3606 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 996\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.28E3\nmove_type: '1'\nsale_id: 2682\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1280\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.28E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1280 187.149.56.220 4ffa27d2-7153-4a1f-be35-6ae94dc11b17 2020-08-08 21:13:09.789441 37104 1985 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.59.156 f2ff9aa0-2275-4b29-bfb8-8c887b9bbd34 2020-08-13 19:06:58.73754 36989 3607 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 995\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 2544\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEPOSITO\n 1 movimiento de efectivo por venta con folio PV3-V-391 189.186.124.94 10379adf-f169-4018-9c07-895389710d7a 2020-08-08 21:21:01.978165 36990 2544 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.124.94 7835d262-21b9-4996-a721-0ea727c702d1 2020-08-08 21:21:04.274924 36991 646 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-08\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.56.220 fc329d59-a0d6-46af-9c06-3b410a75fc10 2020-08-08 23:09:51.910078 36992 2055 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1135\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.56.220 fc329d59-a0d6-46af-9c06-3b410a75fc10 2020-08-08 23:09:51.937627 36993 2056 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1137\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.56.220 fc329d59-a0d6-46af-9c06-3b410a75fc10 2020-08-08 23:09:51.960169 36994 647 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-08\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.56.220 49948432-1bbd-404f-a781-42baa0025ccd 2020-08-08 23:10:12.830177 36995 2057 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1185\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.56.220 49948432-1bbd-404f-a781-42baa0025ccd 2020-08-08 23:10:12.85188 36996 2058 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1184\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.56.220 49948432-1bbd-404f-a781-42baa0025ccd 2020-08-08 23:10:12.872679 36997 2059 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1180\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.56.220 49948432-1bbd-404f-a781-42baa0025ccd 2020-08-08 23:10:12.897604 36998 2025 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.56.220 49948432-1bbd-404f-a781-42baa0025ccd 2020-08-08 23:10:12.915604 36999 2060 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1181\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.56.220 49948432-1bbd-404f-a781-42baa0025ccd 2020-08-08 23:10:12.936827 37000 1140 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 187.149.56.220 e69fe5c7-cccc-4797-b5d4-804ed4110208 2020-08-08 23:10:58.114314 37001 1140 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.56.220 21514d9e-0d75-4a63-b27a-25e04a6cfa3b 2020-08-08 23:11:01.824359 37002 1873 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.56.220 09439818-31b3-40a1-960d-aa94b5627e25 2020-08-08 23:11:32.021807 37003 1873 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.56.220 29d5bbb2-95d9-49b1-88f5-3b0d92c17054 2020-08-08 23:11:35.43385 37004 1598 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.56.220 1d6fc386-4fd5-4461-b3cc-dea4193c753f 2020-08-08 23:11:58.22332 37005 1598 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.56.220 f47cd514-75d0-4c69-9030-1a2eb4cc6239 2020-08-08 23:12:01.754849 37006 1599 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.56.220 3192617c-44d5-449e-9c3b-58757d473480 2020-08-08 23:12:28.329566 37007 1166 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 8 \N 187.149.56.220 87a07637-389f-4b84-806b-3ec8f27a0867 2020-08-08 23:12:45.419858 37008 1166 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.56.220 68c6168e-5d53-4251-b172-67a3d5a431f9 2020-08-08 23:12:48.809864 37009 1443 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.56.220 98b5d7f5-209c-4e62-8aa4-2482ba0ac3fc 2020-08-08 23:14:46.784375 37010 1443 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.56.220 44082600-52a5-4caa-9cdf-c2966b9b5e7a 2020-08-08 23:14:50.066921 37011 648 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-08-08\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 0\n 1 Traspaso de SUO a Almacen central creado. 187.149.56.220 8df6d9ad-6b6b-45a5-8ca9-b1741a1b4dcd 2020-08-08 23:14:51.513307 37012 1020 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 996\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1654E4\namount_out: !ruby/object:BigDecimal 18:0.144E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1035E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1035E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.56.220 5309bb5f-1770-43fb-bc3c-d8fc9736cd51 2020-08-08 23:56:01.514993 37013 996 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.56.220 5309bb5f-1770-43fb-bc3c-d8fc9736cd51 2020-08-08 23:56:01.531058 37014 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-07 00:42:06.343594000 Z\n- &1 2020-08-07 00:49:18.921280000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-10 13:45:56.682601293 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729309\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729298\n mask_addr: 4294967295\nsign_in_count:\n- 197\n- 198\n 396 \N 201.175.156.146 050828ca-f473-4486-be6c-1231498514be 2020-08-10 13:45:56.713044 37015 1 User \N \N 1 User \N update ---\nunique_session_id:\n- rTgUzGhHb1vq2XH_sxaN\n- J7wzLUs6q5A4zvRiz9Uf\n 397 \N 201.175.156.146 050828ca-f473-4486-be6c-1231498514be 2020-08-10 13:45:56.741318 37105 2061 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 f2ff9aa0-2275-4b29-bfb8-8c887b9bbd34 2020-08-13 19:06:58.763234 37016 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-07 00:49:18.921280000 Z\n- &1 2020-08-10 13:45:56.682601000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-10 14:14:25.667232830 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729309\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729298\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729298\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729573\n mask_addr: 4294967295\nsign_in_count:\n- 198\n- 199\n 398 \N 201.175.157.165 37161d56-13c4-4dc7-8bce-d2474826ee68 2020-08-10 14:14:25.673956 37017 1 User \N \N 1 User \N update ---\nunique_session_id:\n- J7wzLUs6q5A4zvRiz9Uf\n- unfYiqfQHKYVdznvMw6a\n 399 \N 201.175.157.165 37161d56-13c4-4dc7-8bce-d2474826ee68 2020-08-10 14:14:25.688788 37018 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-08 02:41:27.418604000 Z\n- &1 2020-08-08 18:09:57.006518000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-10 20:51:51.282683173 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183136253\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\nsign_in_count:\n- 249\n- 250\n 501 \N 189.186.124.94 598aae98-0750-423a-badc-867aab7b7910 2020-08-10 20:51:51.312164 37019 21 User \N \N 21 User \N update ---\nunique_session_id:\n- UsCv1krJyeRktAJMFX7-\n- PjNxCxJ_GRx7x8GEWjuq\n 502 \N 189.186.124.94 598aae98-0750-423a-badc-867aab7b7910 2020-08-10 20:51:51.334754 37020 3608 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 995\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 2525\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.299E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-378 189.186.124.94 3578086c-54ca-4055-b5db-5807a45e4ea6 2020-08-10 20:53:59.058895 37021 3609 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 995\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 2525\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.299E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-378 189.186.124.94 318e0e61-872c-4e0a-bd4d-9de8f1651ecc 2020-08-10 20:53:59.165109 37022 3609 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 995\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 2525\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.299E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.124.94 43530d9a-4e38-4ff9-ab63-ddf8ef1378ba 2020-08-10 20:54:05.697314 37023 2525 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.124.94 c5ae45bf-d738-445f-a901-e6deca81429c 2020-08-10 20:54:07.854872 37024 1021 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 995\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.2298E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1222E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2222E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.124.94 6546410d-2ee7-4ead-a795-ead8aba0185b 2020-08-10 21:49:10.181981 37025 995 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.124.94 6546410d-2ee7-4ead-a795-ead8aba0185b 2020-08-10 21:49:10.208752 37026 997 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1222E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1222.0 189.186.124.94 bea2f07b-5d3f-4d0e-83e1-af79e60f7bb6 2020-08-10 22:12:57.728759 37027 2683 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 997\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-08-10\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-483\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.124.94 bb4439a5-795b-4c97-81fa-74590e66ece2 2020-08-11 00:07:32.248406 37028 1984 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.124.94 bb4439a5-795b-4c97-81fa-74590e66ece2 2020-08-11 00:07:32.282643 37029 2683 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.124.94 097ab817-7d76-47b1-b678-8d9874ad78ee 2020-08-11 00:07:37.979349 37030 3610 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 997\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 2683\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-483\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1399E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-483 189.186.124.94 097ab817-7d76-47b1-b678-8d9874ad78ee 2020-08-11 00:07:38.002945 37031 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-10 13:45:56.682601000 Z\n- &1 2020-08-10 14:14:25.667232000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-11 02:52:25.592533571 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729298\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729573\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729573\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538736\n mask_addr: 4294967295\nsign_in_count:\n- 199\n- 200\n 400 \N 177.228.114.112 9a02f200-67a6-4313-a2ed-d9fd43b4c654 2020-08-11 02:52:25.626031 37032 1 User \N \N 1 User \N update ---\nunique_session_id:\n- unfYiqfQHKYVdznvMw6a\n- 4YXSjYHA6TqUjPTvd3CS\n 401 \N 177.228.114.112 9a02f200-67a6-4313-a2ed-d9fd43b4c654 2020-08-11 02:52:25.653151 37033 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-10 14:14:25.667232000 Z\n- &1 2020-08-11 02:52:25.592533000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-11 03:59:53.338438309 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729573\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538736\n mask_addr: 4294967295\nsign_in_count:\n- 200\n- 201\n 402 \N 177.228.114.112 dacb7bfb-4577-4e11-9118-0378dbb5e03d 2020-08-11 03:59:53.345075 37034 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 4YXSjYHA6TqUjPTvd3CS\n- vqjWp2zcsdsuesDqS4pq\n 403 \N 177.228.114.112 dacb7bfb-4577-4e11-9118-0378dbb5e03d 2020-08-11 03:59:53.360972 37035 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-08 18:09:57.006518000 Z\n- &1 2020-08-10 20:51:51.282683000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-11 16:28:24.685147985 Z\nsign_in_count:\n- 250\n- 251\n 503 \N 189.186.124.94 b37913fe-98db-4aad-a9be-99603e0ebe3b 2020-08-11 16:28:24.712946 37036 21 User \N \N 21 User \N update ---\nunique_session_id:\n- PjNxCxJ_GRx7x8GEWjuq\n- AjpH5fqhz42yhsVFdnQP\n 504 \N 189.186.124.94 b37913fe-98db-4aad-a9be-99603e0ebe3b 2020-08-11 16:28:24.734806 37037 1022 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 997\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1399E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 17\nreceived_cash: !ruby/object:BigDecimal 18:0.17E4\ncash_fund: !ruby/object:BigDecimal 18:0.921E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2621E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.124.94 bde2418d-e636-43a4-8b91-1616bccf6ab7 2020-08-11 16:31:49.484906 37038 997 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.124.94 bde2418d-e636-43a4-8b91-1616bccf6ab7 2020-08-11 16:31:49.499974 37039 998 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.921E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 921.0 189.186.124.94 38a261e6-4f81-4799-b09b-acef50d3d658 2020-08-11 16:33:24.059153 37040 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-11 02:52:25.592533000 Z\n- &1 2020-08-11 03:59:53.338438000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-11 20:33:14.268718971 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538736\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938276\n mask_addr: 4294967295\nsign_in_count:\n- 201\n- 202\n 404 \N 200.68.150.228 41f45679-2d9e-4ad1-a28b-aaa1d52b419d 2020-08-11 20:33:14.297348 37041 1 User \N \N 1 User \N update ---\nunique_session_id:\n- vqjWp2zcsdsuesDqS4pq\n- C7xxWxirPuKAvcjGZu-j\n 405 \N 200.68.150.228 41f45679-2d9e-4ad1-a28b-aaa1d52b419d 2020-08-11 20:33:14.321964 37042 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-11 03:59:53.338438000 Z\n- &1 2020-08-11 20:33:14.268718000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-11 21:39:49.738959571 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538736\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938276\n mask_addr: 4294967295\nsign_in_count:\n- 202\n- 203\n 406 \N 200.68.150.228 674d0360-a044-4a3a-a095-a4d405444502 2020-08-11 21:39:49.768693 37043 1 User \N \N 1 User \N update ---\nunique_session_id:\n- C7xxWxirPuKAvcjGZu-j\n- DdhDyxsoh_ePVSjyeMJV\n 407 \N 200.68.150.228 674d0360-a044-4a3a-a095-a4d405444502 2020-08-11 21:39:49.793521 37044 2684 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 998\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-08-11\nsaletype: 1\nseller_id: 23\nsale_code: PV3-V-484\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.156 01891fc1-bd9e-4fc4-a2b7-ffd85d8c07b7 2020-08-11 23:58:07.321113 37045 1822 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 48 \N 189.186.59.156 01891fc1-bd9e-4fc4-a2b7-ffd85d8c07b7 2020-08-11 23:58:07.352616 37046 2684 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.156 2b760fe5-9571-41a7-90b0-9a70e9ec889c 2020-08-11 23:58:14.511532 37047 3611 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 998\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2684\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-484\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-484 189.186.59.156 2b760fe5-9571-41a7-90b0-9a70e9ec889c 2020-08-11 23:58:14.541641 37048 2685 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 998\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-08-11\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-485\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.156 98edc530-e7ad-4ac3-bd16-a39dd02a1784 2020-08-12 00:20:35.835004 37049 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.21E2\n- !ruby/object:BigDecimal 18:0.2E2\n 37 \N 189.186.59.156 98edc530-e7ad-4ac3-bd16-a39dd02a1784 2020-08-12 00:20:35.872622 37050 2685 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.156 043df726-1fb8-4d7b-9a7e-f22b7d1e5779 2020-08-12 00:20:43.851732 37051 3612 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 998\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2685\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-485\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-485 189.186.59.156 043df726-1fb8-4d7b-9a7e-f22b7d1e5779 2020-08-12 00:20:43.880784 37052 1023 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 998\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.3098E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 17\nreceived_cash: !ruby/object:BigDecimal 18:0.31E4\ncash_fund: !ruby/object:BigDecimal 18:0.919E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4019E4\nobservations: "$1499 SE VENDIO CON SERVICIO A DOMICILIO LO TIENE ROCIO"\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.59.156 edb27888-9445-4277-9c7a-351deacddbe6 2020-08-12 00:30:17.872024 37053 998 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.59.156 edb27888-9445-4277-9c7a-351deacddbe6 2020-08-12 00:30:17.886361 37054 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-08 02:24:44.044160000 Z\n- &1 2020-08-08 21:01:58.510688000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-12 16:32:58.026695370 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945602\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540047\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540047\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1710\n- 1711\n 3422 \N 177.228.119.167 d33d90e1-1cd9-4c1e-b0cc-c00fc5cedb92 2020-08-12 16:32:58.05944 37055 4 User \N \N 4 User \N update ---\nunique_session_id:\n- capA-dujM2J429mmJN7J\n- AujL-fsBasTgDjPEjK6y\n 3423 \N 177.228.119.167 d33d90e1-1cd9-4c1e-b0cc-c00fc5cedb92 2020-08-12 16:32:58.088324 37056 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-07 22:22:44.472992000 Z\n- &1 2020-08-08 18:50:06.688278000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-12 17:39:59.492809688 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118812\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118812\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\nsign_in_count:\n- 610\n- 611\n 1225 \N 189.186.59.156 066d8676-55af-4269-a070-dd9f7e0b5d79 2020-08-12 17:39:59.502034 37057 2 User \N \N 2 User \N update ---\nunique_session_id:\n- XpWx1mQ7hwvR2yXyoxBz\n- e9nz_DpxdfKGtTe3fY8N\n 1226 \N 189.186.59.156 066d8676-55af-4269-a070-dd9f7e0b5d79 2020-08-12 17:39:59.521127 37058 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-10 20:51:51.282683000 Z\n- &1 2020-08-11 16:28:24.685147000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-12 17:41:37.714373963 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\nsign_in_count:\n- 251\n- 252\n 505 \N 189.186.59.156 2d21e056-1c81-40bf-acbf-f93e81210d87 2020-08-12 17:41:37.721493 37059 21 User \N \N 21 User \N update ---\nunique_session_id:\n- AjpH5fqhz42yhsVFdnQP\n- uxgsyysXjKhiFZWFy2nd\n 506 \N 189.186.59.156 2d21e056-1c81-40bf-acbf-f93e81210d87 2020-08-12 17:41:37.737709 37060 999 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.919E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 919.0 189.186.59.156 4e42b3cc-757e-4865-a97f-7353846242d6 2020-08-12 18:36:44.274651 37061 355 Customer \N \N 21 User \N create ---\nnick_name: JAZMIN BELTRAN\nphone: "(667) 424-0852"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JAZMIN BELTRAN fue registrado. 189.186.59.156 dd2b9718-d7a7-45eb-9034-7a1131180409 2020-08-12 21:58:37.109797 37062 2686 Sale \N \N 21 User \N create ---\ncustomer_id: 355\nuser_id: 21\nopen_cash_register_id: 999\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-08-12\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-486\nexpiration_date: 2020-09-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.156 e03ddc4f-5fcb-44a4-ad66-0cb9b175317a 2020-08-12 21:59:21.815555 37063 1984 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.59.156 e03ddc4f-5fcb-44a4-ad66-0cb9b175317a 2020-08-12 21:59:21.844775 37064 2686 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-486 cancelada. 189.186.59.156 18237d20-99a7-4fa2-a2fe-41c3a04f40ce 2020-08-12 21:59:51.92037 37065 1984 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.59.156 18237d20-99a7-4fa2-a2fe-41c3a04f40ce 2020-08-12 21:59:51.943751 37066 2687 Sale \N \N 21 User \N create ---\ncustomer_id: 355\nuser_id: 21\nopen_cash_register_id: 999\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-08-12\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-487\nexpiration_date: 2020-09-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.156 3aa09c51-b22e-4dcf-a6bc-20dd0e002674 2020-08-12 22:00:17.226023 37067 1984 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.59.156 3aa09c51-b22e-4dcf-a6bc-20dd0e002674 2020-08-12 22:00:17.253388 37068 3613 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 999\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2687\ncardnumber: 1420\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-487\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-487 189.186.59.156 e8690900-785f-4655-9132-7ce0198c683e 2020-08-12 22:00:37.038215 37069 2687 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.59.156 ea8de563-be82-48a1-8ff0-0a9f1b6e4bee 2020-08-12 22:00:40.597979 37070 3614 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.8E3\nmove_type: '1'\nsale_id: 2491\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAM\n 1 \N 189.186.59.156 cf5d629d-7479-4709-9586-cf3ee98ad540 2020-08-12 22:50:23.530735 37071 3614 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 931\n- 999\n 2 movimiento de efectivo por venta con folio PV3-V-360 189.186.59.156 cf5d629d-7479-4709-9586-cf3ee98ad540 2020-08-12 22:50:23.557471 37072 1024 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 999\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.13E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 17\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.919E3\nphysical_cash: !ruby/object:BigDecimal 18:0.919E3\nobservations: 'el apartado fue transferencia '\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.59.156 4e1beed2-b730-4f5a-a02d-f5f4e290e319 2020-08-13 00:19:04.044633 37073 999 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.59.156 4e1beed2-b730-4f5a-a02d-f5f4e290e319 2020-08-13 00:19:04.058547 37074 1000 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.919E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 919.0 189.186.59.156 c0aee66f-2ee0-454e-a72c-a460f0cb66b4 2020-08-13 00:35:11.981256 37075 2688 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1000\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-08-12\nsaletype: 1\nseller_id: 23\nsale_code: PV3-V-488\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.156 1b1cf527-cdbb-49fe-9f94-9ae2443a3b9b 2020-08-13 00:35:54.130304 37076 848 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 6 \N 189.186.59.156 1b1cf527-cdbb-49fe-9f94-9ae2443a3b9b 2020-08-13 00:35:54.17 37077 2688 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.156 8e2c1336-9ffb-4447-bb57-963b7add38d1 2020-08-13 00:36:01.898144 37078 3615 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1000\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2688\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-488\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-488 189.186.59.156 8e2c1336-9ffb-4447-bb57-963b7add38d1 2020-08-13 00:36:01.920079 37079 3616 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1000\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 2625\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-450 189.186.59.156 e2e7e10b-0103-4f06-ac54-894f33e3d842 2020-08-13 00:36:52.631649 37081 1025 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1000\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.2098E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 17\nreceived_cash: !ruby/object:BigDecimal 18:0.21E4\ncash_fund: !ruby/object:BigDecimal 18:0.917E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3017E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.59.156 d30d70e2-f26b-47b1-b5b0-3ca3903eb9d8 2020-08-13 00:38:25.875486 37082 1000 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.59.156 d30d70e2-f26b-47b1-b5b0-3ca3903eb9d8 2020-08-13 00:38:25.888996 37083 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-08 18:50:06.688278000 Z\n- &1 2020-08-12 17:39:59.492809000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-13 17:41:51.213227425 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118812\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118812\n mask_addr: 4294967295\nsign_in_count:\n- 611\n- 612\n 1227 \N 187.149.56.220 e4e561a9-1f54-4ad0-bb4f-e74cf4603af4 2020-08-13 17:41:51.245652 37084 2 User \N \N 2 User \N update ---\nunique_session_id:\n- e9nz_DpxdfKGtTe3fY8N\n- GRYuLzEePBRKzs4GK1Ja\n 1228 \N 187.149.56.220 e4e561a9-1f54-4ad0-bb4f-e74cf4603af4 2020-08-13 17:41:51.273752 37085 1001 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1035E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1035.0 187.149.56.220 ede790c7-73a6-4f13-8ef1-9db74c7927d9 2020-08-13 17:42:30.998629 37086 1779 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.56.220 2bfb3bdd-f22b-46ee-bab5-9ff8554e84db 2020-08-13 17:52:44.260769 37087 1779 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.56.220 fd639c51-3450-4e0f-ab6f-34d01ec94c7d 2020-08-13 17:52:47.977594 37088 1860 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.56.220 ab27f2de-9d99-4a77-9669-9997527a9d86 2020-08-13 17:53:00.773989 37089 1860 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.56.220 6f4fc445-7f50-431d-a466-25162ff56139 2020-08-13 17:53:03.690683 37090 1872 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.56.220 773cb665-495d-41fa-8aba-049631e27c11 2020-08-13 17:53:26.9036 37091 1872 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.56.220 131d86af-f21f-49a1-8ef9-c21339f6a03f 2020-08-13 17:53:33.451435 37092 1871 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.56.220 16c65697-31fd-4633-b1dd-a18c8aad57c0 2020-08-13 17:53:42.427846 37093 1871 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.56.220 38feae4b-f3f4-40b6-8461-ee42a2c58c9e 2020-08-13 17:53:48.332763 37094 697 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 16 \N 187.149.56.220 9dd0af50-266d-4365-9f59-57851b52d388 2020-08-13 17:54:05.03506 37095 649 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-08-13\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.56.220 a0ed32ab-b64d-45db-8e8a-5fd334b9f0c0 2020-08-13 17:54:13.88083 37096 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-08 21:01:58.510688000 Z\n- &1 2020-08-12 16:32:58.026695000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-13 18:40:38.253814347 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540047\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\nsign_in_count:\n- 1711\n- 1712\n 3424 \N 189.186.59.156 141f80ef-af17-404a-b749-0f3a37001479 2020-08-13 18:40:38.262637 37097 4 User \N \N 4 User \N update ---\nunique_session_id:\n- AujL-fsBasTgDjPEjK6y\n- fEvEzafsXk73cszKytkj\n 3425 \N 189.186.59.156 141f80ef-af17-404a-b749-0f3a37001479 2020-08-13 18:40:38.282554 37098 1193 Product \N \N 4 User \N create ---\nsku: BOL-1193\nname: 2BLCV20347\ndescription: Crossbody con Colgante en Color Rosa\nprice_base: !ruby/object:BigDecimal 18:0.6495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170821239'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 2BLCV20347.png\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1193 fue creado. 189.186.59.156 1800d54c-02aa-434e-a699-a0878050d742 2020-08-13 18:56:11.181091 37099 2061 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1193\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 1800d54c-02aa-434e-a699-a0878050d742 2020-08-13 18:56:11.229258 37100 1194 Product \N \N 4 User \N create ---\nsku: BOL-1194\nname: 3BLCV20432\ndescription: Mochila con Hebillas en Color Negro\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170824100'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 3BLCV20432.png\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1194 fue creado. 189.186.59.156 81cd790b-2ba2-4b78-969b-96e8dbc9693f 2020-08-13 19:01:09.501144 37101 2062 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1194\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 81cd790b-2ba2-4b78-969b-96e8dbc9693f 2020-08-13 19:01:09.550996 37102 333 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-64\namount: !ruby/object:BigDecimal 18:0.3048E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3048E4\nobservations: ''\npurchase_date: 2020-08-13\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-64 por $ 3048.0 MXN creada. 189.186.59.156 f2ff9aa0-2275-4b29-bfb8-8c887b9bbd34 2020-08-13 19:06:58.638739 37103 2042 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.59.156 f2ff9aa0-2275-4b29-bfb8-8c887b9bbd34 2020-08-13 19:06:58.669701 37107 1195 Product \N \N 4 User \N create ---\nsku: BOL-1195\nname: 2CZP20114\ndescription: Sandalia Plataforma en Suede y Moño en Talón en Color Amarillo\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: CESKY_2CZP20114.png\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1195 fue creado. 189.186.59.156 4787ddca-00df-4e3b-87a9-8ed14cf5096a 2020-08-13 19:28:13.062888 37108 1195 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001195'\n 2 \N 189.186.59.156 4787ddca-00df-4e3b-87a9-8ed14cf5096a 2020-08-13 19:28:13.100326 37109 2063 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1195\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 4787ddca-00df-4e3b-87a9-8ed14cf5096a 2020-08-13 19:28:13.131587 37110 334 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-65\namount: !ruby/object:BigDecimal 18:0.10793E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.10793E5\nobservations: ''\npurchase_date: 2020-08-13\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-65 por $ 10793.0 MXN creada. 189.186.59.156 16790c7e-aa5b-4fd7-a7ac-3a7052d61405 2020-08-13 19:28:20.55082 37111 1822 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.11E2\n 49 \N 189.186.59.156 16790c7e-aa5b-4fd7-a7ac-3a7052d61405 2020-08-13 19:28:20.625634 37112 1836 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E2\n- !ruby/object:BigDecimal 18:0.26E2\n 38 \N 189.186.59.156 16790c7e-aa5b-4fd7-a7ac-3a7052d61405 2020-08-13 19:28:20.656956 37113 2017 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.7E1\n 4 \N 189.186.59.156 16790c7e-aa5b-4fd7-a7ac-3a7052d61405 2020-08-13 19:28:20.686415 37114 2063 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 16790c7e-aa5b-4fd7-a7ac-3a7052d61405 2020-08-13 19:28:20.711115 37115 1159 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1159'\n is_parent: false\n sku: ZAP-1159\n name: CESKY\n description: ALPARGATAS ROSA CON MOÑO\n price_base: '749.5'\n price_sale: '1499.0'\n img_product: CESKY.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '13'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001159'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-07-29 19:21:15.570436'\n updated_at: &12 2020-08-13 19:29:37.319528424 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1159'\n sku: ZAP-1159\n name: CESKY\n description: ALPARGATAS ROSA CON MOÑO\n price_base: '749.50'\n price_sale: '1499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-07-29 19:21:15.570436'\n updated_at: '2020-07-29 19:21:15.625394'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001159'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '13'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1159'\n type: *3\n value: 1159\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ZAP-1159\n type: *7\n value: ZAP-1159\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CESKY\n type: *8\n value: CESKY\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: ALPARGATAS ROSA CON MOÑO\n type: *6\n value: ALPARGATAS ROSA CON MOÑO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '749.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1499E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: CESKY.png\n type: *2\n value: CESKY.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '13'\n type: *3\n value: 13\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001159'\n type: *2\n value: '0001159'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-07-29 19:21:15.570436'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- CESKY.png\n 3 El producto ZAP-1159 fue modificado. 189.186.59.156 1c0bcaff-60d3-497c-981d-ad6792bcdb79 2020-08-13 19:29:37.362911 37116 1195 Product \N \N 4 User \N update ---\nsku:\n- BOL-1195\n- ZAP-1196\nname:\n- 2CZP20114\n- CESKY 2CZP20114\ncategory_id:\n- 6\n- 13\n 3 El producto BOL-1195 fue modificado. 189.186.59.156 75d803b8-b321-4481-b23d-db64bc481369 2020-08-13 19:32:20.81081 37117 356 Customer \N \N 2 User \N create ---\nnick_name: AMERICA RAMIREZ\nphone: "(667) 577-4735"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente AMERICA RAMIREZ fue registrado. 187.149.56.220 de9b1d10-7064-43b1-9562-b2bd853a03b6 2020-08-13 19:43:58.168259 37118 357 Customer \N \N 2 User \N create ---\nnick_name: AMERICA RAMIREZ\nphone: "(667) 577-4735"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente AMERICA RAMIREZ fue registrado. 187.149.56.220 7d686a72-6ba7-45d1-b73b-e3b1888a0c31 2020-08-13 19:44:00.331381 37119 2689 Sale \N \N 2 User \N create ---\ncustomer_id: 357\nuser_id: 2\nopen_cash_register_id: 1001\namount: !ruby/object:BigDecimal 18:0.3098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3098E4\nstatus: 0\ndate_sale: 2020-08-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1281\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.56.220 4578914d-0a62-441b-ab2b-d8fb74c1f067 2020-08-13 19:47:06.635069 37120 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 25 \N 187.149.56.220 4578914d-0a62-441b-ab2b-d8fb74c1f067 2020-08-13 19:47:06.665512 37121 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 12 \N 187.149.56.220 4578914d-0a62-441b-ab2b-d8fb74c1f067 2020-08-13 19:47:06.690829 37122 2689 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.56.220 46185bb2-d6e1-4fa1-9916-d1b343853c10 2020-08-13 19:47:40.485638 37123 3617 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1001\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 2689\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1281\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1281 187.149.56.220 46185bb2-d6e1-4fa1-9916-d1b343853c10 2020-08-13 19:47:40.527302 37124 3617 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1001\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2689\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1281\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.51.195 75cee0cb-c477-4b0e-9f12-1baee5eb80f3 2020-08-13 20:06:04.77812 37125 2689 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-1281 cancelada. 189.186.51.195 c945a8cb-4d3c-4980-8c59-1a9b3dcf06c5 2020-08-13 20:07:21.721684 37126 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.14E2\n 13 \N 189.186.51.195 c945a8cb-4d3c-4980-8c59-1a9b3dcf06c5 2020-08-13 20:07:21.760138 37127 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.8E1\n 26 \N 189.186.51.195 c945a8cb-4d3c-4980-8c59-1a9b3dcf06c5 2020-08-13 20:07:21.811097 37128 2690 Sale \N \N 2 User \N create ---\ncustomer_id: 356\nuser_id: 2\nopen_cash_register_id: 1001\namount: !ruby/object:BigDecimal 18:0.3098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3098E4\nstatus: 0\ndate_sale: 2020-08-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1282\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.51.195 3fc8f282-fa3c-4ebe-ac7c-d8a26bc11d0a 2020-08-13 20:15:02.082395 37129 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 27 \N 189.186.51.195 3fc8f282-fa3c-4ebe-ac7c-d8a26bc11d0a 2020-08-13 20:15:02.112797 37130 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 14 \N 189.186.51.195 3fc8f282-fa3c-4ebe-ac7c-d8a26bc11d0a 2020-08-13 20:15:02.1391 37131 2690 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1282 cancelada. 189.186.51.195 75720fda-3dde-4b16-b14a-acf8625e6d66 2020-08-13 20:15:33.161661 37132 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.14E2\n 15 \N 189.186.51.195 75720fda-3dde-4b16-b14a-acf8625e6d66 2020-08-13 20:15:33.192123 37133 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.8E1\n 28 \N 189.186.51.195 75720fda-3dde-4b16-b14a-acf8625e6d66 2020-08-13 20:15:33.220554 37134 2691 Sale \N \N 2 User \N create ---\ncustomer_id: 356\nuser_id: 2\nopen_cash_register_id: 1001\namount: !ruby/object:BigDecimal 18:0.3098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3098E4\nstatus: 0\ndate_sale: 2020-08-13\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1283\nexpiration_date: 2020-09-17\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.51.195 a0a935e9-9d04-4310-afda-d6c7011a30a4 2020-08-13 20:16:48.637141 37135 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 29 \N 189.186.51.195 a0a935e9-9d04-4310-afda-d6c7011a30a4 2020-08-13 20:16:48.675333 37136 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 16 \N 189.186.51.195 a0a935e9-9d04-4310-afda-d6c7011a30a4 2020-08-13 20:16:48.708536 37137 3618 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1001\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2691\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1283\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1283 189.186.51.195 b66937b9-b292-4b85-bba4-f27388a25ef9 2020-08-13 20:17:50.277257 37138 3619 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1001\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2691\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1283\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1283 189.186.51.195 082becf3-1f34-4a6f-b84a-0d55e07c6c51 2020-08-13 20:17:50.376441 37139 3619 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1001\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2691\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1283\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.51.195 442b1a07-6877-457d-8489-b4fee4843c05 2020-08-13 20:18:14.399322 37140 2691 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.51.195 38ea439d-3676-44a9-9ef2-1ec0d22437cb 2020-08-13 20:18:52.979752 37141 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-12 17:39:59.492809000 Z\n- &1 2020-08-13 17:41:51.213227000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-13 21:37:11.349107841 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118812\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118812\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096771\n mask_addr: 4294967295\nsign_in_count:\n- 612\n- 613\n 1229 \N 189.186.51.195 23552b01-5d4d-4de7-8349-ed0ef93009b3 2020-08-13 21:37:11.357142 37142 2 User \N \N 2 User \N update ---\nunique_session_id:\n- GRYuLzEePBRKzs4GK1Ja\n- q3A69htwvuujy2vSt9yX\n 1230 \N 189.186.51.195 23552b01-5d4d-4de7-8349-ed0ef93009b3 2020-08-13 21:37:11.375324 37143 2692 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1001\namount: !ruby/object:BigDecimal 18:0.240842E4\ntax: !ruby/object:BigDecimal 18:0.2758E2\ndiscount: !ruby/object:BigDecimal 18:0.1701E4\ntotal: !ruby/object:BigDecimal 18:0.735E3\nstatus: 0\ndate_sale: 2020-08-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1284\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.51.195 468810d5-e3f1-47a1-acb5-88da6fcfe7fd 2020-08-13 21:53:33.883257 37144 525 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 189.186.51.195 468810d5-e3f1-47a1-acb5-88da6fcfe7fd 2020-08-13 21:53:33.915629 37145 62 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.51.195 468810d5-e3f1-47a1-acb5-88da6fcfe7fd 2020-08-13 21:53:33.943539 37146 1936 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.51.195 468810d5-e3f1-47a1-acb5-88da6fcfe7fd 2020-08-13 21:53:33.971599 37147 1893 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.51.195 468810d5-e3f1-47a1-acb5-88da6fcfe7fd 2020-08-13 21:53:34.005004 37148 117 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.51.195 468810d5-e3f1-47a1-acb5-88da6fcfe7fd 2020-08-13 21:53:34.041641 37149 2692 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.51.195 167a1da6-4f04-40c7-bd04-0843e6716d55 2020-08-13 21:53:39.212137 37150 3620 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1001\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.735E3\nmove_type: '1'\nsale_id: 2692\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1284\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.735E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1284 189.186.51.195 167a1da6-4f04-40c7-bd04-0843e6716d55 2020-08-13 21:53:39.232716 37151 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-11 16:28:24.685147000 Z\n- &1 2020-08-12 17:41:37.714373000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-13 22:18:43.386723658 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\nsign_in_count:\n- 252\n- 253\n 507 \N 189.186.59.156 f1b0460e-4ca1-4dda-ad72-377b537f7cf3 2020-08-13 22:18:43.407028 37152 21 User \N \N 21 User \N update ---\nunique_session_id:\n- uxgsyysXjKhiFZWFy2nd\n- Tm3CBqtRqUVokkjWeSqS\n 508 \N 189.186.59.156 f1b0460e-4ca1-4dda-ad72-377b537f7cf3 2020-08-13 22:18:43.43066 37153 1002 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.917E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 917.0 189.186.59.156 feb2f5e6-6f84-448b-b7fe-b6543cfe32f3 2020-08-13 22:19:07.853074 37193 2069 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1201\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.246.48 92e0bad0-1a4a-4876-a4fa-3b6cbb250d77 2020-08-14 04:53:21.924897 37154 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-12 16:32:58.026695000 Z\n- &1 2020-08-13 18:40:38.253814000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-13 22:28:28.510528507 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938186\n mask_addr: 4294967295\nsign_in_count:\n- 1712\n- 1713\n 3426 \N 200.68.150.138 9498ca0d-6151-4da3-b36b-946b2a42d66b 2020-08-13 22:28:28.538747 37155 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fEvEzafsXk73cszKytkj\n- 2D4uih9-xscJ-wJzzR9T\n 3427 \N 200.68.150.138 9498ca0d-6151-4da3-b36b-946b2a42d66b 2020-08-13 22:28:28.565423 37156 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-13 18:40:38.253814000 Z\n- &1 2020-08-13 22:28:28.510528000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-13 23:07:02.626905438 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938186\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938186\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\nsign_in_count:\n- 1713\n- 1714\n 3428 \N 189.186.59.156 a57787d1-39a7-4b55-b3cd-4ff329724c95 2020-08-13 23:07:02.634021 37157 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2D4uih9-xscJ-wJzzR9T\n- 5SyUxdkXcxPhBt7Tbq6w\n 3429 \N 189.186.59.156 a57787d1-39a7-4b55-b3cd-4ff329724c95 2020-08-13 23:07:02.653824 37158 1026 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1001\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1735E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.16E4\ncash_fund: !ruby/object:BigDecimal 18:0.117E4\nphysical_cash: !ruby/object:BigDecimal 18:0.277E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.51.195 9d08f5ed-2cc5-4367-923e-f1f7073ab9d9 2020-08-13 23:56:41.743719 37159 1001 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.51.195 9d08f5ed-2cc5-4367-923e-f1f7073ab9d9 2020-08-13 23:56:41.759478 37160 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-12 17:41:37.714373000 Z\n- &1 2020-08-13 22:18:43.386723000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-14 00:45:32.659060033 Z\nsign_in_count:\n- 253\n- 254\n 509 \N 189.186.59.156 3ebd758d-b6c1-4088-b52e-88cfe94cdd97 2020-08-14 00:45:32.687611 37161 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Tm3CBqtRqUVokkjWeSqS\n- 6aAzBu9mfY2aVYQuU6C7\n 510 \N 189.186.59.156 3ebd758d-b6c1-4088-b52e-88cfe94cdd97 2020-08-14 00:45:32.714325 37162 2693 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1002\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2020-08-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-489\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.156 088c1642-8b01-499c-8d32-1166bcff9711 2020-08-14 00:47:01.206224 37163 1537 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.59.156 088c1642-8b01-499c-8d32-1166bcff9711 2020-08-14 00:47:01.245344 37164 2693 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.156 c78ef837-37b3-4788-bd6e-221ed344953f 2020-08-14 00:47:31.684753 37165 3621 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1002\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.649E3\nmove_type: '1'\nsale_id: 2693\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-489\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-489 189.186.59.156 c78ef837-37b3-4788-bd6e-221ed344953f 2020-08-14 00:47:31.709462 37166 2694 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1002\namount: !ruby/object:BigDecimal 18:0.6E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6E2\nstatus: 0\ndate_sale: 2020-08-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-490\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.156 33fc18c3-ae2f-480a-b027-8c1e2080b71e 2020-08-14 00:48:05.791437 37167 1481 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 4 \N 189.186.59.156 33fc18c3-ae2f-480a-b027-8c1e2080b71e 2020-08-14 00:48:05.820772 37168 2694 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.156 4dcf8b3d-94eb-4edd-9fe5-1660d0510b04 2020-08-14 00:48:10.636642 37169 3622 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1002\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E2\nmove_type: '1'\nsale_id: 2694\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-490\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-490 189.186.59.156 4dcf8b3d-94eb-4edd-9fe5-1660d0510b04 2020-08-14 00:48:10.657645 37170 1027 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1002\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.709E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.926E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1626E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.59.156 8f56cf2c-f7e9-4e85-b67c-a7eb7945b06b 2020-08-14 01:01:51.781163 37171 1002 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.59.156 8f56cf2c-f7e9-4e85-b67c-a7eb7945b06b 2020-08-14 01:01:51.794748 37172 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-13 22:28:28.510528000 Z\n- &1 2020-08-13 23:07:02.626905000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-14 01:57:31.648126635 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938186\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945784\n mask_addr: 4294967295\nsign_in_count:\n- 1714\n- 1715\n 3430 \N 200.68.180.56 3ac7cd33-3f10-433e-9e2e-72be6634560b 2020-08-14 01:57:31.657344 37173 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5SyUxdkXcxPhBt7Tbq6w\n- ixZUDJayqYieNNU-sbSe\n 3431 \N 200.68.180.56 3ac7cd33-3f10-433e-9e2e-72be6634560b 2020-08-14 01:57:31.679187 37236 2075 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.246.48 5bb588d3-80c6-4c28-a162-df4b76d21580 2020-08-14 05:22:50.618979 37237 2077 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.246.48 5bb588d3-80c6-4c28-a162-df4b76d21580 2020-08-14 05:22:50.641205 37174 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-13 23:07:02.626905000 Z\n- &1 2020-08-14 01:57:31.648126000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-14 04:31:25.192448056 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945784\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183146544\n mask_addr: 4294967295\nsign_in_count:\n- 1715\n- 1716\n 3432 \N 189.186.246.48 7468326c-5385-419b-a965-9650cc7ae841 2020-08-14 04:31:25.200662 37175 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ixZUDJayqYieNNU-sbSe\n- zCRNJBijFGLssymZzxB_\n 3433 \N 189.186.246.48 7468326c-5385-419b-a965-9650cc7ae841 2020-08-14 04:31:25.218379 37176 1196 Product \N \N 4 User \N create ---\nsku: ACC-1196\nname: DIA-0112\ndescription: "DIADEMA ESCARABAJO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.1255E3\nprice_sale: !ruby/object:BigDecimal 18:0.41E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHHD628337-Rose-Red.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1196 fue creado. 189.186.246.48 2769dfc8-d0e9-488e-aa47-21f483105f7e 2020-08-14 04:40:19.937828 37177 1196 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001196'\n 2 \N 189.186.246.48 2769dfc8-d0e9-488e-aa47-21f483105f7e 2020-08-14 04:40:19.974798 37178 2064 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1196\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.246.48 2769dfc8-d0e9-488e-aa47-21f483105f7e 2020-08-14 04:40:20.006636 37179 1197 Product \N \N 4 User \N create ---\nsku: ACC-1197\nname: DIA-0102\ndescription: "DIADEMA LISA NEGRA Y ROSA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4397E2\nprice_sale: !ruby/object:BigDecimal 18:0.109E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHHV572912-Pink.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1197 fue creado. 189.186.246.48 066b29f7-73b9-42c8-b767-20b30b6a746e 2020-08-14 04:42:47.789173 37180 1197 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001197'\n 2 \N 189.186.246.48 066b29f7-73b9-42c8-b767-20b30b6a746e 2020-08-14 04:42:47.821803 37181 2065 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1197\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.246.48 066b29f7-73b9-42c8-b767-20b30b6a746e 2020-08-14 04:42:47.848593 37182 1198 Product \N \N 4 User \N create ---\nsku: ACC-1198\nname: DIA-0106\ndescription: "DIADEMA PERFUME \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.8966E2\nprice_sale: !ruby/object:BigDecimal 18:0.179E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHHD563153-Pink.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1198 fue creado. 189.186.246.48 2fc265cb-1fc0-42d9-beea-f95855e8c987 2020-08-14 04:46:31.103846 37183 1198 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001198'\n 2 \N 189.186.246.48 2fc265cb-1fc0-42d9-beea-f95855e8c987 2020-08-14 04:46:31.133977 37184 2066 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1198\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.246.48 2fc265cb-1fc0-42d9-beea-f95855e8c987 2020-08-14 04:46:31.16167 37185 1199 Product \N \N 4 User \N create ---\nsku: ACC-1199\nname: DIA-0113\ndescription: "DIADEMA CONFETI\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3344E2\nprice_sale: !ruby/object:BigDecimal 18:0.99E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHSM676700-Bai-Cai.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1199 fue creado. 189.186.246.48 e714ea64-3f04-41e8-a25a-e68b09c3e5d6 2020-08-14 04:48:49.407972 37186 1199 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001199'\n 2 \N 189.186.246.48 e714ea64-3f04-41e8-a25a-e68b09c3e5d6 2020-08-14 04:48:49.437697 37187 2067 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1199\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.246.48 e714ea64-3f04-41e8-a25a-e68b09c3e5d6 2020-08-14 04:48:49.462834 37188 1200 Product \N \N 4 User \N create ---\nsku: ACC-1200\nname: DIA-0114\ndescription: "DIADEMA MEZCLILLA PERLAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5579E2\nprice_sale: !ruby/object:BigDecimal 18:0.159E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHSM676724-Denim-Blue.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1200 fue creado. 189.186.246.48 abd735d1-2160-4bf4-bc03-0d4067b1d702 2020-08-14 04:51:30.452273 37189 1200 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001200'\n 2 \N 189.186.246.48 abd735d1-2160-4bf4-bc03-0d4067b1d702 2020-08-14 04:51:30.483181 37190 2068 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1200\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.246.48 abd735d1-2160-4bf4-bc03-0d4067b1d702 2020-08-14 04:51:30.51088 37191 1201 Product \N \N 4 User \N create ---\nsku: ACC-1201\nname: DIA-0100\ndescription: "DIADEMA PERLAS DORADAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4589E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHLN369551-Gold.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1201 fue creado. 189.186.246.48 92e0bad0-1a4a-4876-a4fa-3b6cbb250d77 2020-08-14 04:53:21.872553 37192 1201 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001201'\n 2 \N 189.186.246.48 92e0bad0-1a4a-4876-a4fa-3b6cbb250d77 2020-08-14 04:53:21.899999 37194 1202 Product \N \N 4 User \N create ---\nsku: ACC-1202\nname: DIA-0099\ndescription: "DIADEMA DE DULCES \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4061E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHJE465184-black.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1202 fue creado. 189.186.246.48 9afb86f4-36fe-455a-b048-b91296708520 2020-08-14 04:54:47.548811 37195 1202 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001202'\n 2 \N 189.186.246.48 9afb86f4-36fe-455a-b048-b91296708520 2020-08-14 04:54:47.59367 37196 2070 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1202\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.246.48 9afb86f4-36fe-455a-b048-b91296708520 2020-08-14 04:54:47.622512 37197 1203 Product \N \N 4 User \N create ---\nsku: ACC-1203\nname: DIA-0093\ndescription: "DIADEMA MOÑO MEZCLILLA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5417E2\nprice_sale: !ruby/object:BigDecimal 18:0.159E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHSM329238-black.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1203 fue creado. 189.186.246.48 afb204c8-0ab7-46b2-9876-bfc0a3da943f 2020-08-14 04:57:40.270802 37198 1203 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001203'\n 2 \N 189.186.246.48 afb204c8-0ab7-46b2-9876-bfc0a3da943f 2020-08-14 04:57:40.314213 37199 2071 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1203\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.246.48 afb204c8-0ab7-46b2-9876-bfc0a3da943f 2020-08-14 04:57:40.353559 37200 1204 Product \N \N 4 User \N create ---\nsku: ACC-1204\nname: DIA-0101\ndescription: "DIADEMA CON PERLITAS FONDO \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.8563E2\nprice_sale: !ruby/object:BigDecimal 18:0.229E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHMD470176-dark-pink.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1204 fue creado. 189.186.246.48 354071bf-f1ac-495e-a43a-02c644498d55 2020-08-14 05:02:05.4371 37201 1204 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001204'\n 2 \N 189.186.246.48 354071bf-f1ac-495e-a43a-02c644498d55 2020-08-14 05:02:05.477319 37202 2072 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1204\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.246.48 354071bf-f1ac-495e-a43a-02c644498d55 2020-08-14 05:02:05.508392 37203 1205 Product \N \N 4 User \N create ---\nsku: ACC-1205\nname: DIA-0109\ndescription: "DIADEMA CON PERLITAS FONDO \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.72E2\nprice_sale: !ruby/object:BigDecimal 18:0.189E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHHI567102-Color-Black.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1205 fue creado. 189.186.246.48 eda9f3e8-942e-45f4-a9ac-1a2809511510 2020-08-14 05:04:24.538966 37204 1205 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001205'\n 2 \N 189.186.246.48 eda9f3e8-942e-45f4-a9ac-1a2809511510 2020-08-14 05:04:24.566409 37205 2073 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1205\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.246.48 eda9f3e8-942e-45f4-a9ac-1a2809511510 2020-08-14 05:04:24.591952 37206 1206 Product \N \N 4 User \N create ---\nsku: ACC-1206\nname: DIA-0089\ndescription: "DIADEMA ESTRELLAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5458E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHJE465162-Pink.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1206 fue creado. 189.186.246.48 15a49b0c-0462-4bc4-b9dd-2ccf2f46a15a 2020-08-14 05:06:33.941084 37207 1206 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001206'\n 2 \N 189.186.246.48 15a49b0c-0462-4bc4-b9dd-2ccf2f46a15a 2020-08-14 05:06:33.973673 37208 2074 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1206\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.246.48 15a49b0c-0462-4bc4-b9dd-2ccf2f46a15a 2020-08-14 05:06:34.004371 37209 1207 Product \N \N 4 User \N create ---\nsku: ACC-1207\nname: DIA-0089\ndescription: "DIADEMA FLOR \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.274E3\nprice_sale: !ruby/object:BigDecimal 18:0.569E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHWJ182141-Section-A.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1207 fue creado. 189.186.246.48 847a013c-6438-4294-983d-20c9eaca69d8 2020-08-14 05:09:52.378586 37210 1207 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001207'\n 2 \N 189.186.246.48 847a013c-6438-4294-983d-20c9eaca69d8 2020-08-14 05:09:52.408185 37211 2075 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1207\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.246.48 847a013c-6438-4294-983d-20c9eaca69d8 2020-08-14 05:09:52.432903 37238 2078 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.246.48 5bb588d3-80c6-4c28-a162-df4b76d21580 2020-08-14 05:22:50.663709 37239 2076 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.246.48 5bb588d3-80c6-4c28-a162-df4b76d21580 2020-08-14 05:22:50.685752 37212 1208 Product \N \N 4 User \N create ---\nsku: ACC-1208\nname: DIA-0097\ndescription: "DIADEMA DE MOÑO CON PERLAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4273E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHRH398037-gray.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1208 fue creado. 189.186.246.48 e4fa840f-a6ae-4700-a2c7-32bfdacb903e 2020-08-14 05:12:37.949615 37213 1208 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001208'\n 2 \N 189.186.246.48 e4fa840f-a6ae-4700-a2c7-32bfdacb903e 2020-08-14 05:12:37.986774 37214 2076 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1208\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.246.48 e4fa840f-a6ae-4700-a2c7-32bfdacb903e 2020-08-14 05:12:38.016274 37215 1209 Product \N \N 4 User \N create ---\nsku: ACC-1209\nname: DIA-0096\ndescription: "DIADEMA FLORES PIEDRAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4589E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHOF394283-Champagne.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1209 fue creado. 189.186.246.48 f37f0ea4-0496-4bb8-857c-0f5c9e6c06d4 2020-08-14 05:16:28.029987 37216 1209 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001209'\n 2 \N 189.186.246.48 f37f0ea4-0496-4bb8-857c-0f5c9e6c06d4 2020-08-14 05:16:28.065174 37217 2077 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1209\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.246.48 f37f0ea4-0496-4bb8-857c-0f5c9e6c06d4 2020-08-14 05:16:28.093507 37218 1210 Product \N \N 4 User \N create ---\nsku: ACC-1210\nname: DIA-0092\ndescription: "DIADEMA CORAZON\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4889E2\nprice_sale: !ruby/object:BigDecimal 18:0.129E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHLN282111-White.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1210 fue creado. 189.186.246.48 36e364a4-c8a0-43f8-854c-ff97827c8ab2 2020-08-14 05:18:28.136104 37219 1210 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001210'\n 2 \N 189.186.246.48 36e364a4-c8a0-43f8-854c-ff97827c8ab2 2020-08-14 05:18:28.165628 37220 2078 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1210\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.246.48 36e364a4-c8a0-43f8-854c-ff97827c8ab2 2020-08-14 05:18:28.191915 37221 1211 Product \N \N 4 User \N create ---\nsku: ACC-1211\nname: DIA-0095\ndescription: "DIADEMA CON PERLAS BLANCAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4955E2\nprice_sale: !ruby/object:BigDecimal 18:0.125E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHMD369547-black.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1211 fue creado. 189.186.246.48 9878d39c-63a5-42de-8b2c-8dc0a2fb771b 2020-08-14 05:21:06.211343 37222 1211 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001211'\n 2 \N 189.186.246.48 9878d39c-63a5-42de-8b2c-8dc0a2fb771b 2020-08-14 05:21:06.239439 37223 2079 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1211\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.246.48 9878d39c-63a5-42de-8b2c-8dc0a2fb771b 2020-08-14 05:21:06.265704 37224 335 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-133\namount: !ruby/object:BigDecimal 18:0.159339E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.159339E4\nobservations: ''\npurchase_date: 2020-08-13\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-133 por $ 1593.39 MXN creada. 189.186.246.48 5bb588d3-80c6-4c28-a162-df4b76d21580 2020-08-14 05:22:50.310274 37225 2064 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.246.48 5bb588d3-80c6-4c28-a162-df4b76d21580 2020-08-14 05:22:50.352786 37226 2065 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.246.48 5bb588d3-80c6-4c28-a162-df4b76d21580 2020-08-14 05:22:50.379647 37227 2066 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.246.48 5bb588d3-80c6-4c28-a162-df4b76d21580 2020-08-14 05:22:50.405804 37228 2067 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.246.48 5bb588d3-80c6-4c28-a162-df4b76d21580 2020-08-14 05:22:50.431206 37229 2068 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.246.48 5bb588d3-80c6-4c28-a162-df4b76d21580 2020-08-14 05:22:50.455185 37230 2069 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.246.48 5bb588d3-80c6-4c28-a162-df4b76d21580 2020-08-14 05:22:50.478012 37231 2070 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.246.48 5bb588d3-80c6-4c28-a162-df4b76d21580 2020-08-14 05:22:50.502044 37232 2071 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.246.48 5bb588d3-80c6-4c28-a162-df4b76d21580 2020-08-14 05:22:50.525079 37233 2072 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.246.48 5bb588d3-80c6-4c28-a162-df4b76d21580 2020-08-14 05:22:50.549276 37234 2073 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.246.48 5bb588d3-80c6-4c28-a162-df4b76d21580 2020-08-14 05:22:50.571863 37235 2074 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.246.48 5bb588d3-80c6-4c28-a162-df4b76d21580 2020-08-14 05:22:50.596524 37303 1216 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001216'\n 2 \N 189.186.59.156 487c3e8f-01cf-4412-a5e9-3ea4b6e4e315 2020-08-14 20:11:13.715679 37240 2079 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.246.48 5bb588d3-80c6-4c28-a162-df4b76d21580 2020-08-14 05:22:50.708624 37241 1206 Product \N \N 4 User \N update ---\nname:\n- DIA-0089\n- DIA-0098\n 3 El producto ACC-1206 fue modificado. 189.186.246.48 a63be6e7-91c6-4bc8-aab0-a87c34422e21 2020-08-14 05:40:37.987036 37242 336 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-134\namount: !ruby/object:BigDecimal 18:0.4889E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4889E2\nobservations: ''\npurchase_date: 2020-08-13\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-134 por $ 48.89 MXN creada. 189.186.246.48 e2d73cae-4411-4eac-96e2-c610b2ab6b36 2020-08-14 05:43:12.751263 37243 2078 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.246.48 e2d73cae-4411-4eac-96e2-c610b2ab6b36 2020-08-14 05:43:12.782401 37244 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-14 01:57:31.648126000 Z\n- &1 2020-08-14 04:31:25.192448000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-14 15:55:45.461818265 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183146544\n mask_addr: 4294967295\nsign_in_count:\n- 1716\n- 1717\n 3434 \N 189.186.246.48 dda1eadc-eece-4639-8e83-42750dc7c0ba 2020-08-14 15:55:45.499672 37245 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zCRNJBijFGLssymZzxB_\n- E6HAKHBMNuD16kcHs7XR\n 3435 \N 189.186.246.48 dda1eadc-eece-4639-8e83-42750dc7c0ba 2020-08-14 15:55:45.528377 37246 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-13 17:41:51.213227000 Z\n- &1 2020-08-13 21:37:11.349107000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-14 16:09:53.876872039 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118812\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096771\n mask_addr: 4294967295\nsign_in_count:\n- 613\n- 614\n 1231 \N 189.186.51.195 1dbedb5c-4b4d-4932-a78e-7a7d691df0e7 2020-08-14 16:09:53.883711 37247 2 User \N \N 2 User \N update ---\nunique_session_id:\n- q3A69htwvuujy2vSt9yX\n- 5HTP6mH2PPJLSgnW4zAF\n 1232 \N 189.186.51.195 1dbedb5c-4b4d-4932-a78e-7a7d691df0e7 2020-08-14 16:09:53.9013 37248 1003 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.117E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1170.0 189.186.51.195 451c55f4-92c2-4651-bd43-a51c9bc0834d 2020-08-14 16:43:38.098767 37249 2695 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1003\namount: !ruby/object:BigDecimal 18:0.43452E3\ntax: !ruby/object:BigDecimal 18:0.3448E2\ndiscount: !ruby/object:BigDecimal 18:0.219E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-08-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1285\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.51.195 1b032032-2c36-42f1-8c8c-c6771cefc6a3 2020-08-14 16:44:07.012099 37250 145 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.51.195 1b032032-2c36-42f1-8c8c-c6771cefc6a3 2020-08-14 16:44:07.043337 37251 2695 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.51.195 1484333c-f224-4853-9bec-6a7ccf63a14f 2020-08-14 16:44:11.704823 37252 3623 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1003\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 2695\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1285\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1285 189.186.51.195 1484333c-f224-4853-9bec-6a7ccf63a14f 2020-08-14 16:44:11.734769 37253 2696 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1003\namount: !ruby/object:BigDecimal 18:0.1068E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.718E3\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2020-08-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1286\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.51.195 21faeccf-7983-47da-89c0-8c5e21ae9162 2020-08-14 18:08:32.933121 37254 1936 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.51.195 21faeccf-7983-47da-89c0-8c5e21ae9162 2020-08-14 18:08:32.964434 37255 740 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.51.195 21faeccf-7983-47da-89c0-8c5e21ae9162 2020-08-14 18:08:32.988469 37256 2696 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.51.195 dd6cc4ba-3b81-4e3a-b68b-8498fa3e00c2 2020-08-14 18:08:39.347444 37257 3624 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1003\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.35E3\nmove_type: '1'\nsale_id: 2696\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1286\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1286 189.186.51.195 dd6cc4ba-3b81-4e3a-b68b-8498fa3e00c2 2020-08-14 18:08:39.367314 37258 2697 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1003\namount: !ruby/object:BigDecimal 18:0.459E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.229E3\ntotal: !ruby/object:BigDecimal 18:0.23E3\nstatus: 0\ndate_sale: 2020-08-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1287\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.51.195 90b92c58-1390-416d-813d-eef143d34839 2020-08-14 18:16:54.369813 37259 1105 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.51.195 90b92c58-1390-416d-813d-eef143d34839 2020-08-14 18:16:54.397557 37260 2697 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.51.195 19716fd7-177e-451e-812b-fc8b072e6f21 2020-08-14 18:17:18.139503 37261 3625 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1003\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.23E3\nmove_type: '1'\nsale_id: 2697\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1287\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.23E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1287 189.186.51.195 19716fd7-177e-451e-812b-fc8b072e6f21 2020-08-14 18:17:18.16261 37304 2095 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1216\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 487c3e8f-01cf-4412-a5e9-3ea4b6e4e315 2020-08-14 20:11:13.743505 37262 2698 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1003\namount: !ruby/object:BigDecimal 18:0.133421E4\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.998E3\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2020-08-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1288\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.51.195 bb5bb943-97fd-4dd5-aa6a-9507d7dc9372 2020-08-14 18:56:27.837707 37263 206 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.51.195 bb5bb943-97fd-4dd5-aa6a-9507d7dc9372 2020-08-14 18:56:27.87458 37264 707 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 19 \N 189.186.51.195 bb5bb943-97fd-4dd5-aa6a-9507d7dc9372 2020-08-14 18:56:27.901795 37265 2698 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.51.195 f85ecf03-7fa0-48dd-849c-37a5e63f9dab 2020-08-14 18:56:45.190181 37266 3626 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1003\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 2698\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1288\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.15E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1288 189.186.51.195 f85ecf03-7fa0-48dd-849c-37a5e63f9dab 2020-08-14 18:56:45.212321 37267 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-14 04:31:25.192448000 Z\n- &1 2020-08-14 15:55:45.461818000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-14 19:25:55.655123032 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183146544\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\nsign_in_count:\n- 1717\n- 1718\n 3436 \N 189.186.59.156 17a60b3e-b729-4c5f-a17a-e9533b2cf577 2020-08-14 19:25:55.661881 37268 4 User \N \N 4 User \N update ---\nunique_session_id:\n- E6HAKHBMNuD16kcHs7XR\n- xxxbPjsyGSJ-4-MJoyFx\n 3437 \N 189.186.59.156 17a60b3e-b729-4c5f-a17a-e9533b2cf577 2020-08-14 19:25:55.678006 37269 337 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-66\namount: !ruby/object:BigDecimal 18:0.103787E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.103787E4\nobservations: ''\npurchase_date: 2020-08-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-66 por $ 1037.87 MXN creada. 189.186.59.156 99ec9342-f0cd-40b8-b416-63550e35bdf0 2020-08-14 19:33:48.47507 37270 2080 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1208\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 99ec9342-f0cd-40b8-b416-63550e35bdf0 2020-08-14 19:33:48.503354 37271 2081 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1196\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 99ec9342-f0cd-40b8-b416-63550e35bdf0 2020-08-14 19:33:48.533116 37272 2082 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1204\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 99ec9342-f0cd-40b8-b416-63550e35bdf0 2020-08-14 19:33:48.562554 37273 2083 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1202\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 99ec9342-f0cd-40b8-b416-63550e35bdf0 2020-08-14 19:33:48.590906 37274 2084 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1200\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 99ec9342-f0cd-40b8-b416-63550e35bdf0 2020-08-14 19:33:48.621354 37275 2085 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1203\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 99ec9342-f0cd-40b8-b416-63550e35bdf0 2020-08-14 19:33:48.650735 37276 2086 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1199\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 99ec9342-f0cd-40b8-b416-63550e35bdf0 2020-08-14 19:33:48.681224 37277 2087 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1210\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 99ec9342-f0cd-40b8-b416-63550e35bdf0 2020-08-14 19:33:48.711092 37278 2088 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1209\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 99ec9342-f0cd-40b8-b416-63550e35bdf0 2020-08-14 19:33:48.741215 37279 2089 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1206\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 99ec9342-f0cd-40b8-b416-63550e35bdf0 2020-08-14 19:33:48.769158 37280 2090 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1207\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 99ec9342-f0cd-40b8-b416-63550e35bdf0 2020-08-14 19:33:48.797888 37281 1212 Product \N \N 4 User \N create ---\nsku: ACC-1212\nname: DIA-0108\ndescription: "DIADEMA PERLAS NEGRA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.8189E2\nprice_sale: !ruby/object:BigDecimal 18:0.189E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHHI567062-black.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1212 fue creado. 189.186.59.156 a3155d8b-3b05-469d-9383-70a35d652968 2020-08-14 19:58:08.154165 37282 1212 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001212'\n 2 \N 189.186.59.156 a3155d8b-3b05-469d-9383-70a35d652968 2020-08-14 19:58:08.18873 37283 2091 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1212\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 a3155d8b-3b05-469d-9383-70a35d652968 2020-08-14 19:58:08.216178 37284 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-14 15:55:45.461818000 Z\n- &1 2020-08-14 19:25:55.655123000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-14 20:00:06.669243812 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183146544\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945797\n mask_addr: 4294967295\nsign_in_count:\n- 1718\n- 1719\n 3438 \N 200.68.180.69 12161ba4-68f0-4d2b-b0dc-c922ee9abeab 2020-08-14 20:00:06.678406 37285 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xxxbPjsyGSJ-4-MJoyFx\n- 6sXLtaoXXVtASxBC2w_E\n 3439 \N 200.68.180.69 12161ba4-68f0-4d2b-b0dc-c922ee9abeab 2020-08-14 20:00:06.70329 37286 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-14 19:25:55.655123000 Z\n- &1 2020-08-14 20:00:06.669243000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-14 20:03:41.194005784 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945797\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945797\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\nsign_in_count:\n- 1719\n- 1720\n 3440 \N 189.186.59.156 dab4e306-b3a4-4ac8-9658-0edbc7dab52f 2020-08-14 20:03:41.201922 37287 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6sXLtaoXXVtASxBC2w_E\n- VoMx3_pxZmxsQEVkUJ7j\n 3441 \N 189.186.59.156 dab4e306-b3a4-4ac8-9658-0edbc7dab52f 2020-08-14 20:03:41.219577 37288 1213 Product \N \N 4 User \N create ---\nsku: ACC-1213\nname: DIA-0107\ndescription: "DIADEMA CADENA PERLAS DELGADA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5203E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHHD563395-Korean-noodles.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1213 fue creado. 189.186.59.156 7a577e59-21ac-4653-8a07-44984a4d843d 2020-08-14 20:04:49.741844 37289 1213 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001213'\n 2 \N 189.186.59.156 7a577e59-21ac-4653-8a07-44984a4d843d 2020-08-14 20:04:49.779064 37290 2092 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1213\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 7a577e59-21ac-4653-8a07-44984a4d843d 2020-08-14 20:04:49.80932 37291 1214 Product \N \N 4 User \N create ---\nsku: ACC-1214\nname: DIA-0105\ndescription: "DIADEMA ROSA CON PERLAS Y FLOR\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.14678E3\nprice_sale: !ruby/object:BigDecimal 18:0.369E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHWJ563590-red.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1214 fue creado. 189.186.59.156 3c30a125-967b-4ab7-a3c4-4b8abb73ab95 2020-08-14 20:06:49.386229 37292 1214 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001214'\n 2 \N 189.186.59.156 3c30a125-967b-4ab7-a3c4-4b8abb73ab95 2020-08-14 20:06:49.415424 37293 2093 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1214\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 3c30a125-967b-4ab7-a3c4-4b8abb73ab95 2020-08-14 20:06:49.441738 37294 2699 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1003\namount: !ruby/object:BigDecimal 18:0.162662E4\ntax: !ruby/object:BigDecimal 18:0.4138E2\ndiscount: !ruby/object:BigDecimal 18:0.1033E4\ntotal: !ruby/object:BigDecimal 18:0.635E3\nstatus: 0\ndate_sale: 2020-08-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1289\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.51.195 ae27d4ee-fce1-486f-80f9-06eab5c7dbd1 2020-08-14 20:09:21.250713 37295 236 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.51.195 ae27d4ee-fce1-486f-80f9-06eab5c7dbd1 2020-08-14 20:09:21.280999 37296 525 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 13 \N 189.186.51.195 ae27d4ee-fce1-486f-80f9-06eab5c7dbd1 2020-08-14 20:09:21.30708 37297 2699 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.51.195 c1cf6cfd-a98b-48f5-accd-dd160d666b16 2020-08-14 20:09:26.262576 37298 3627 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1003\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.635E3\nmove_type: '1'\nsale_id: 2699\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1289\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.65E3\nchange: !ruby/object:BigDecimal 18:0.15E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1289 189.186.51.195 c1cf6cfd-a98b-48f5-accd-dd160d666b16 2020-08-14 20:09:26.284112 37299 1215 Product \N \N 4 User \N create ---\nsku: ACC-1215\nname: DIA-0103\ndescription: "DIADEMA FLOR PERLITAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5024E2\nprice_sale: !ruby/object:BigDecimal 18:0.149E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHJE482311-Pink.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1215 fue creado. 189.186.59.156 b11f9f4c-6288-4194-94bd-3bee15319a11 2020-08-14 20:09:28.673552 37300 1215 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001215'\n 2 \N 189.186.59.156 b11f9f4c-6288-4194-94bd-3bee15319a11 2020-08-14 20:09:28.727524 37301 2094 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1215\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 b11f9f4c-6288-4194-94bd-3bee15319a11 2020-08-14 20:09:28.7826 37302 1216 Product \N \N 4 User \N create ---\nsku: ACC-1216\nname: DIA-0094\ndescription: "DIADEMA FLORES CON PIEDRAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.293E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHWJ358293-C.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1216 fue creado. 189.186.59.156 487c3e8f-01cf-4412-a5e9-3ea4b6e4e315 2020-08-14 20:11:13.684332 37305 1217 Product \N \N 4 User \N create ---\nsku: ACC-1217\nname: DIA-0111\ndescription: "DIADEMA DIAMANTINA \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5304E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHDM606616-Black-lace-sequin-headband.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1217 fue creado. 189.186.59.156 c2ab87c1-1dcf-48ad-8e0d-937fc0247880 2020-08-14 20:12:47.71417 37306 1217 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001217'\n 2 \N 189.186.59.156 c2ab87c1-1dcf-48ad-8e0d-937fc0247880 2020-08-14 20:12:47.743539 37307 2096 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1217\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 c2ab87c1-1dcf-48ad-8e0d-937fc0247880 2020-08-14 20:12:47.769926 37308 338 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-67\namount: !ruby/object:BigDecimal 18:0.67698E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.67698E3\nobservations: ''\npurchase_date: 2020-08-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-67 por $ 676.98 MXN creada. 189.186.59.156 47c5da20-eb92-4ac2-bb23-991d054945a5 2020-08-14 20:13:05.78966 37309 2091 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 47c5da20-eb92-4ac2-bb23-991d054945a5 2020-08-14 20:13:05.816664 37310 2092 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 47c5da20-eb92-4ac2-bb23-991d054945a5 2020-08-14 20:13:05.84208 37311 2093 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 47c5da20-eb92-4ac2-bb23-991d054945a5 2020-08-14 20:13:05.872484 37312 2094 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 47c5da20-eb92-4ac2-bb23-991d054945a5 2020-08-14 20:13:05.90688 37313 2095 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 47c5da20-eb92-4ac2-bb23-991d054945a5 2020-08-14 20:13:05.935923 37314 2096 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 47c5da20-eb92-4ac2-bb23-991d054945a5 2020-08-14 20:13:05.962181 37315 339 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-68\namount: !ruby/object:BigDecimal 18:0.10048E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.10048E3\nobservations: ''\npurchase_date: 2020-08-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-68 por $ 100.48 MXN creada. 189.186.59.156 096578bd-edb5-496f-bec9-ca0f322d0333 2020-08-14 20:15:43.127278 37316 2094 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.59.156 096578bd-edb5-496f-bec9-ca0f322d0333 2020-08-14 20:15:43.151778 37317 321 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1003\nquantity: !ruby/object:BigDecimal 18:0.25E2\nstatus: 1\nobservations: garrafon de agua\nexpense_date: 2020-08-14\nexpense_code: PV1-E-223\n 1 Egreso por 25.0 registrado 189.186.51.195 2cff17e9-33c8-48c1-844f-14f093bc3e52 2020-08-14 20:18:49.94373 37318 3628 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1003\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 321\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.51.195 2cff17e9-33c8-48c1-844f-14f093bc3e52 2020-08-14 20:18:49.967295 37319 340 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-69\namount: !ruby/object:BigDecimal 18:0.5203E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.5203E2\nobservations: ''\npurchase_date: 2020-08-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-69 por $ 52.03 MXN creada. 189.186.59.156 fdba74b0-7972-44a9-82a0-e564ccfd8306 2020-08-14 20:19:37.714826 37320 2092 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.59.156 fdba74b0-7972-44a9-82a0-e564ccfd8306 2020-08-14 20:19:37.741073 37321 341 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-70\namount: !ruby/object:BigDecimal 18:0.38E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.38E2\nobservations: ''\npurchase_date: 2020-08-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-70 por $ 38.0 MXN creada. 189.186.59.156 3175658b-4bd3-40fe-8bfd-bfd4c4dbe639 2020-08-14 20:56:43.615549 37322 2097 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 851\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 3175658b-4bd3-40fe-8bfd-bfd4c4dbe639 2020-08-14 20:56:43.643544 37323 341 Purchase \N \N 4 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Compra PV3-C-70 cancelada. 189.186.59.156 c3b6fcb9-ed47-45d3-809d-239d83ab88a2 2020-08-14 20:56:59.708019 37324 2097 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.59.156 c3b6fcb9-ed47-45d3-809d-239d83ab88a2 2020-08-14 20:56:59.733388 37325 342 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-71\namount: !ruby/object:BigDecimal 18:0.5304E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.5304E2\nobservations: ''\npurchase_date: 2020-08-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-71 por $ 53.04 MXN creada. 189.186.59.156 30c945e5-64ee-4d5f-964b-28feaf19445c 2020-08-14 20:57:25.038971 37326 2096 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.59.156 30c945e5-64ee-4d5f-964b-28feaf19445c 2020-08-14 20:57:25.06105 37327 1218 Product \N \N 4 User \N create ---\nsku: ACC-1218\nname: DIA-0104\ndescription: "DIADEMA CON PIEDRA NEGRA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.9817E2\nprice_sale: !ruby/object:BigDecimal 18:0.249E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHLN495510-black.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1218 fue creado. 189.186.59.156 d1f31281-2a74-4876-bf57-bc5f06a64df7 2020-08-14 21:02:00.325733 37329 2098 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1218\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 d1f31281-2a74-4876-bf57-bc5f06a64df7 2020-08-14 21:02:00.382523 37330 343 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-135\namount: !ruby/object:BigDecimal 18:0.9817E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9817E2\nobservations: ''\npurchase_date: 2020-08-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-135 por $ 98.17 MXN creada. 189.186.59.156 b574a6a0-a389-475f-90e0-eaccaacaa60a 2020-08-14 21:02:03.641433 37331 2098 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 b574a6a0-a389-475f-90e0-eaccaacaa60a 2020-08-14 21:02:03.66664 37332 2700 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1003\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-08-14\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1290\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.51.195 b1b285fd-9a17-4019-a8b4-8a461ea71b01 2020-08-14 21:34:59.517094 37333 1883 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.51.195 b1b285fd-9a17-4019-a8b4-8a461ea71b01 2020-08-14 21:34:59.550642 37334 2700 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.51.195 603fa25c-c212-46b9-915e-cfaf6d9e05aa 2020-08-14 21:35:03.798347 37335 3629 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1003\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 2700\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1290\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1290 189.186.51.195 603fa25c-c212-46b9-915e-cfaf6d9e05aa 2020-08-14 21:35:03.820993 37336 2700 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-1290 cancelada. 189.186.51.195 f6edc8b0-7b2a-424d-8f97-e892bb60b927 2020-08-14 21:36:39.891241 37337 3629 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1003\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 2700\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1290\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.51.195 f6edc8b0-7b2a-424d-8f97-e892bb60b927 2020-08-14 21:36:39.915627 37338 1883 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.51.195 f6edc8b0-7b2a-424d-8f97-e892bb60b927 2020-08-14 21:36:39.943806 37339 2701 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1003\namount: !ruby/object:BigDecimal 18:0.181524E4\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.1298E4\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2020-08-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1291\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.51.195 63f27068-01c7-4601-b2a3-72517a8268be 2020-08-14 21:41:00.594564 37340 235 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.51.195 63f27068-01c7-4601-b2a3-72517a8268be 2020-08-14 21:41:00.625118 37341 236 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.51.195 63f27068-01c7-4601-b2a3-72517a8268be 2020-08-14 21:41:00.650483 37342 2701 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.51.195 0fbc897a-fcc2-41e9-9e1e-8ac987bc60d3 2020-08-14 21:41:06.480753 37343 3630 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1003\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 2701\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1291\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1291 189.186.51.195 0fbc897a-fcc2-41e9-9e1e-8ac987bc60d3 2020-08-14 21:41:06.505089 37344 2702 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1003\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.119E3\ntotal: !ruby/object:BigDecimal 18:0.68E3\nstatus: 0\ndate_sale: 2020-08-14\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1292\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.51.195 1969a0ad-68ba-4874-a90c-7adb6d025adc 2020-08-14 21:42:58.075289 37345 1883 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.51.195 1969a0ad-68ba-4874-a90c-7adb6d025adc 2020-08-14 21:42:58.121826 37346 2702 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.51.195 64e79619-2565-4f9f-9b14-42b6dcd2fffb 2020-08-14 21:43:02.231475 37347 3631 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1003\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.68E3\nmove_type: '1'\nsale_id: 2702\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1292\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.68E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1292 189.186.51.195 64e79619-2565-4f9f-9b14-42b6dcd2fffb 2020-08-14 21:43:02.255172 37348 2703 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1003\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-08-14\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1293\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.51.195 c4767dde-b7e3-4540-b8d6-6659eb4a9d0f 2020-08-14 21:45:10.438564 37349 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 17 \N 189.186.51.195 c4767dde-b7e3-4540-b8d6-6659eb4a9d0f 2020-08-14 21:45:10.488358 37350 2703 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.51.195 7bdda990-6c18-4764-857b-ba8d928ad6b2 2020-08-14 21:45:25.514215 37481 1004 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.926E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 926.0 189.186.59.156 7b35833a-93ee-4363-b254-5d5b4ef4dda8 2020-08-14 23:54:33.665543 37351 3632 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1003\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 2703\ncardnumber: 1420\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1293\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1293 189.186.51.195 7bdda990-6c18-4764-857b-ba8d928ad6b2 2020-08-14 21:45:25.554624 37352 3632 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1003\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2703\ncardnumber: 1420\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1293\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.51.195 d33a30a7-56ea-4ce9-9641-1a68f56e3674 2020-08-14 21:46:12.990639 37353 3633 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1003\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2703\ncardnumber: 2920\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1293\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1293 189.186.51.195 b7295e04-cfcf-4236-862d-87675bfdc04b 2020-08-14 21:46:36.730225 37354 3634 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1003\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 2703\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1293\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1293 189.186.51.195 119f0b0f-4e44-45ff-9cea-9bed3fdb0413 2020-08-14 21:46:51.100902 37355 2704 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1003\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-08-14\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1294\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.51.195 8f347df3-608a-43f5-a15c-4211c9757bcb 2020-08-14 21:51:19.852738 37356 2038 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.51.195 8f347df3-608a-43f5-a15c-4211c9757bcb 2020-08-14 21:51:19.893072 37357 2704 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.51.195 0e78d926-b2d3-4de5-a7b2-1d2832f2992b 2020-08-14 21:51:32.895434 37358 3635 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1003\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 2704\ncardnumber: 2920\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1294\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1294 189.186.51.195 0e78d926-b2d3-4de5-a7b2-1d2832f2992b 2020-08-14 21:51:32.921384 37359 2705 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1003\namount: !ruby/object:BigDecimal 18:0.85762E3\ntax: !ruby/object:BigDecimal 18:0.4138E2\ndiscount: !ruby/object:BigDecimal 18:0.599E3\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2020-08-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1295\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.51.195 b702757c-a4db-4238-b66e-82493e30214f 2020-08-14 21:55:05.929075 37360 235 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.51.195 b702757c-a4db-4238-b66e-82493e30214f 2020-08-14 21:55:05.957673 37361 2705 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.51.195 274a15aa-fbdc-432a-8897-75b36c4191a2 2020-08-14 21:55:09.581222 37362 3636 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1003\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 2705\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1295\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1295 189.186.51.195 274a15aa-fbdc-432a-8897-75b36c4191a2 2020-08-14 21:55:09.601292 37363 4 Customer \N \N 2 User \N update ---\nnick_name:\n- BLANCA VAZQUEZ\n- BIANCA VAZQUEZ\n 2 El cliente BIANCA VAZQUEZ fue registrado. 189.186.51.195 8c99dfe1-2df7-48d2-b018-bb9cab3b6024 2020-08-14 22:01:08.749053 37364 2706 Sale \N \N 2 User \N create ---\ncustomer_id: 4\nuser_id: 2\nopen_cash_register_id: 1003\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2020-08-14\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1296\nexpiration_date: 2020-09-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.51.195 25add3d8-cec1-4024-b8bb-514a0f49bbf5 2020-08-14 22:01:42.965623 37365 1780 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.51.195 25add3d8-cec1-4024-b8bb-514a0f49bbf5 2020-08-14 22:01:42.992574 37366 3637 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1003\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 2706\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1296\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1296 189.186.51.195 4fe2b142-ab58-41bd-a15e-a7b17a9baa8d 2020-08-14 22:01:51.498245 37367 2706 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.51.195 61a03b58-da53-425a-897e-d43606c4d234 2020-08-14 22:01:59.714716 37368 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-14 20:00:06.669243000 Z\n- &1 2020-08-14 20:03:41.194005000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-14 22:26:26.534587251 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945797\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\nsign_in_count:\n- 1720\n- 1721\n 3442 \N 189.186.59.156 6ff826f9-307e-464c-a5ca-9a37560abb47 2020-08-14 22:26:26.541643 37369 4 User \N \N 4 User \N update ---\nunique_session_id:\n- VoMx3_pxZmxsQEVkUJ7j\n- zhy8XxaEAJWx7PxmQuqu\n 3443 \N 189.186.59.156 6ff826f9-307e-464c-a5ca-9a37560abb47 2020-08-14 22:26:26.558363 37594 607 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.72.196 77ae0d65-5008-4e11-b7ab-153685c75456 2020-08-15 18:53:08.01868 37595 1780 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.72.196 77ae0d65-5008-4e11-b7ab-153685c75456 2020-08-15 18:53:08.075508 37370 1219 Product \N \N 4 User \N create ---\nsku: ACC-1219\nname: DIA-0110\ndescription: "DIADEMA LISA NEGRA Y ROSA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4364E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHJE277182-Pink.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1219 fue creado. 189.186.59.156 17bc8482-95b6-4762-bcf5-c14312de6383 2020-08-14 22:29:26.23645 37371 1219 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001219'\n 2 \N 189.186.59.156 17bc8482-95b6-4762-bcf5-c14312de6383 2020-08-14 22:29:26.267569 37372 2099 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1219\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 17bc8482-95b6-4762-bcf5-c14312de6383 2020-08-14 22:29:26.293505 37373 1220 Product \N \N 4 User \N create ---\nsku: ACC-1220\nname: DIA-0143\ndescription: "DIADEMA VERDE Y ROSA PASTEL\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.7843E2\nprice_sale: !ruby/object:BigDecimal 18:0.21E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHHD628378-Cream-green.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1220 fue creado. 189.186.59.156 0e494568-2b41-4d2a-b50e-ba1d38d2585f 2020-08-14 22:30:53.319412 37374 1220 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001220'\n 2 \N 189.186.59.156 0e494568-2b41-4d2a-b50e-ba1d38d2585f 2020-08-14 22:30:53.346554 37375 2100 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1220\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 0e494568-2b41-4d2a-b50e-ba1d38d2585f 2020-08-14 22:30:53.372273 37376 1221 Product \N \N 4 User \N create ---\nsku: ACC-1221\nname: DIA-0141\ndescription: "DIADEMA PERLAS CON TUL\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4912E2\nprice_sale: !ruby/object:BigDecimal 18:0.179E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHSM834493-black.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1221 fue creado. 189.186.59.156 95e90550-eb98-4f87-8e9c-af9ce5cc1ebf 2020-08-14 22:32:21.311136 37377 1221 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001221'\n 2 \N 189.186.59.156 95e90550-eb98-4f87-8e9c-af9ce5cc1ebf 2020-08-14 22:32:21.355265 37378 2101 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1221\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 95e90550-eb98-4f87-8e9c-af9ce5cc1ebf 2020-08-14 22:32:21.389691 37379 1222 Product \N \N 4 User \N create ---\nsku: ACC-1222\nname: DIA-0121\ndescription: "MOÑO MIMI\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6849E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1222 fue creado. 189.186.59.156 a1028210-2ce9-4a50-aab8-c2ac8b8f7ba8 2020-08-14 22:33:29.212741 37380 1222 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001222'\n 2 \N 189.186.59.156 a1028210-2ce9-4a50-aab8-c2ac8b8f7ba8 2020-08-14 22:33:29.244868 37381 2102 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1222\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 a1028210-2ce9-4a50-aab8-c2ac8b8f7ba8 2020-08-14 22:33:29.275527 37382 1223 Product \N \N 4 User \N create ---\nsku: ACC-1223\nname: DIA-0133\ndescription: "DIADEMA FLORES CON PERLAS DELGADO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.12293E3\nprice_sale: !ruby/object:BigDecimal 18:0.369E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHLN810305-color.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1223 fue creado. 189.186.59.156 5ffe3b1f-c141-43eb-a38d-9c502f667e85 2020-08-14 22:34:58.996968 37383 1223 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001223'\n 2 \N 189.186.59.156 5ffe3b1f-c141-43eb-a38d-9c502f667e85 2020-08-14 22:34:59.024616 37384 2103 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1223\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 5ffe3b1f-c141-43eb-a38d-9c502f667e85 2020-08-14 22:34:59.052752 37385 1224 Product \N \N 4 User \N create ---\nsku: ACC-1224\nname: DIA-0138\ndescription: "DIADEMA LILA DE FLORES\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6861E2\nprice_sale: !ruby/object:BigDecimal 18:0.189E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHHI819817-Pink-bow.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1224 fue creado. 189.186.59.156 58421538-6d5f-4f92-8f13-1deac38413c8 2020-08-14 22:36:32.233624 37386 1224 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001224'\n 2 \N 189.186.59.156 58421538-6d5f-4f92-8f13-1deac38413c8 2020-08-14 22:36:32.301298 37387 2104 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1224\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 58421538-6d5f-4f92-8f13-1deac38413c8 2020-08-14 22:36:32.350401 37476 347 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-75\namount: !ruby/object:BigDecimal 18:0.38652E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.38652E3\nobservations: ''\npurchase_date: 2020-08-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-75 por $ 386.52 MXN creada. 189.186.59.156 131ff02f-281e-4749-ae57-abd3a7151cc9 2020-08-14 23:45:29.557534 37596 2715 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.72.196 9eb41d92-2c98-4f0d-8649-d99aab73fa10 2020-08-15 18:53:31.812203 37388 1225 Product \N \N 4 User \N create ---\nsku: ACC-1225\nname: DIA-0134\ndescription: "DIADEMA MOÑO CON FLORES\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6861E2\nprice_sale: !ruby/object:BigDecimal 18:0.179E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHHI817224-Yellow-floral.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1225 fue creado. 189.186.59.156 869b73ec-d552-41c3-90f9-b12f8358c654 2020-08-14 22:37:34.5995 37389 1225 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001225'\n 2 \N 189.186.59.156 869b73ec-d552-41c3-90f9-b12f8358c654 2020-08-14 22:37:34.633212 37390 2105 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1225\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 869b73ec-d552-41c3-90f9-b12f8358c654 2020-08-14 22:37:34.669755 37391 1226 Product \N \N 4 User \N create ---\nsku: ACC-1226\nname: DIA-0135\ndescription: "DIADEMA PERLAS BRILLOSA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4128E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHDM606710-Chiffon-Pearl-Pink.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1226 fue creado. 189.186.59.156 0e6f7d46-aecb-4e8d-ad0d-be8b3d75abaa 2020-08-14 22:43:05.222003 37392 1226 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001226'\n 2 \N 189.186.59.156 0e6f7d46-aecb-4e8d-ad0d-be8b3d75abaa 2020-08-14 22:43:05.25344 37393 2106 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1226\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 0e6f7d46-aecb-4e8d-ad0d-be8b3d75abaa 2020-08-14 22:43:05.281466 37394 1227 Product \N \N 4 User \N create ---\nsku: ACC-1227\nname: DIA-0120\ndescription: "DIADEMA ROSA Y AQUA \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.23974E3\nprice_sale: !ruby/object:BigDecimal 18:0.489E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHWJ720093-Light-blue.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1227 fue creado. 189.186.59.156 a2bfde05-f426-4978-a998-782752b918f0 2020-08-14 22:45:05.219617 37395 1227 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001227'\n 2 \N 189.186.59.156 a2bfde05-f426-4978-a998-782752b918f0 2020-08-14 22:45:05.25016 37396 2107 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1227\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 a2bfde05-f426-4978-a998-782752b918f0 2020-08-14 22:45:05.27649 37397 1228 Product \N \N 4 User \N create ---\nsku: ACC-1228\nname: DIA-0124\ndescription: "DIADEMA CADENA ROJA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5673E2\nprice_sale: !ruby/object:BigDecimal 18:0.169E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1228 fue creado. 189.186.59.156 3d1ad73e-2787-44ba-8aff-94edf658e92b 2020-08-14 22:46:20.419454 37398 1228 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001228'\n 2 \N 189.186.59.156 3d1ad73e-2787-44ba-8aff-94edf658e92b 2020-08-14 22:46:20.491921 37399 2108 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1228\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 3d1ad73e-2787-44ba-8aff-94edf658e92b 2020-08-14 22:46:20.548969 37400 1229 Product \N \N 4 User \N create ---\nsku: ACC-1229\nname: DIA-0119\ndescription: "DIADEMA AMARILLA Y NEGRA PIEDRAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.9437E2\nprice_sale: !ruby/object:BigDecimal 18:0.249E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHLN714103-yellow.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1229 fue creado. 189.186.59.156 07f87a32-4a21-4c02-9053-857a3b2e741f 2020-08-14 22:47:29.901639 37401 1229 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001229'\n 2 \N 189.186.59.156 07f87a32-4a21-4c02-9053-857a3b2e741f 2020-08-14 22:47:29.937024 37402 2109 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1229\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 07f87a32-4a21-4c02-9053-857a3b2e741f 2020-08-14 22:47:29.967413 37403 1230 Product \N \N 4 User \N create ---\nsku: ACC-1230\nname: DIA-0142\ndescription: "DIADEMA PERLAS CON DIAMENTINA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5203E2\nprice_sale: !ruby/object:BigDecimal 18:0.149E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1230 fue creado. 189.186.59.156 29c7d8ee-5dd9-4d5a-a242-adb3e360edca 2020-08-14 22:48:37.086247 37404 1230 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001230'\n 2 \N 189.186.59.156 29c7d8ee-5dd9-4d5a-a242-adb3e360edca 2020-08-14 22:48:37.113293 37405 2110 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1230\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 29c7d8ee-5dd9-4d5a-a242-adb3e360edca 2020-08-14 22:48:37.140951 37406 1230 Product \N \N 4 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.5203E2\n- !ruby/object:BigDecimal 27:0.5403E2\n 3 El producto ACC-1230 fue modificado. 189.186.59.156 9fb6e0c4-25e5-4a18-b584-216da4c84494 2020-08-14 22:48:44.136402 37477 2117 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.59.156 131ff02f-281e-4749-ae57-abd3a7151cc9 2020-08-14 23:45:29.582759 37407 1231 Product \N \N 4 User \N create ---\nsku: ACC-1231\nname: DIA-0090\ndescription: "DIADEMA PERLAS MEZCLILA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4555E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHMD274425-F0868-dark-blue.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1231 fue creado. 189.186.59.156 6f6d30d1-8075-4285-b516-8efa6084eb75 2020-08-14 22:51:21.70266 37408 1231 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001231'\n 2 \N 189.186.59.156 6f6d30d1-8075-4285-b516-8efa6084eb75 2020-08-14 22:51:21.743665 37409 2111 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1231\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 6f6d30d1-8075-4285-b516-8efa6084eb75 2020-08-14 22:51:21.780243 37410 344 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-72\namount: !ruby/object:BigDecimal 18:0.155432E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.155432E4\nobservations: ''\npurchase_date: 2020-08-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-72 por $ 1554.32 MXN creada. 189.186.59.156 44a6be40-09cf-4db3-8d55-ce1c49340254 2020-08-14 22:51:27.961597 37411 2099 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.59.156 44a6be40-09cf-4db3-8d55-ce1c49340254 2020-08-14 22:51:27.985851 37412 2100 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.59.156 44a6be40-09cf-4db3-8d55-ce1c49340254 2020-08-14 22:51:28.011586 37413 2101 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 44a6be40-09cf-4db3-8d55-ce1c49340254 2020-08-14 22:51:28.042214 37414 2102 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 44a6be40-09cf-4db3-8d55-ce1c49340254 2020-08-14 22:51:28.074296 37415 2103 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 44a6be40-09cf-4db3-8d55-ce1c49340254 2020-08-14 22:51:28.106519 37416 2104 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.59.156 44a6be40-09cf-4db3-8d55-ce1c49340254 2020-08-14 22:51:28.137996 37417 2105 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.59.156 44a6be40-09cf-4db3-8d55-ce1c49340254 2020-08-14 22:51:28.172097 37418 2106 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.59.156 44a6be40-09cf-4db3-8d55-ce1c49340254 2020-08-14 22:51:28.207049 37419 2107 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 44a6be40-09cf-4db3-8d55-ce1c49340254 2020-08-14 22:51:28.238454 37420 2108 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 44a6be40-09cf-4db3-8d55-ce1c49340254 2020-08-14 22:51:28.264143 37421 2109 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 44a6be40-09cf-4db3-8d55-ce1c49340254 2020-08-14 22:51:28.292667 37422 2110 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.59.156 44a6be40-09cf-4db3-8d55-ce1c49340254 2020-08-14 22:51:28.321301 37423 2111 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.59.156 44a6be40-09cf-4db3-8d55-ce1c49340254 2020-08-14 22:51:28.346096 37424 1230 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1230'\n is_parent: false\n sku: ACC-1230\n name: DIA-0142\n description: "DIADEMA PERLAS CON DIAMENTINA\\r\\n"\n price_base: '54.03'\n price_sale: '149.0'\n img_product: NHLN837132-purple.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001230'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-14 22:48:37.074315'\n updated_at: &12 2020-08-14 23:00:53.343665759 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1230'\n sku: ACC-1230\n name: DIA-0142\n description: "DIADEMA PERLAS CON DIAMENTINA\\r\\n"\n price_base: '54.03'\n price_sale: '149.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-14 22:48:37.074315'\n updated_at: '2020-08-14 22:48:44.130192'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001230'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1230'\n type: *3\n value: 1230\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1230\n type: *7\n value: ACC-1230\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0142\n type: *8\n value: DIA-0142\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "DIADEMA PERLAS CON DIAMENTINA\\r\\n"\n type: *6\n value: "DIADEMA PERLAS CON DIAMENTINA\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '54.03'\n type: *1\n value: !ruby/object:BigDecimal 18:0.5403E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '149.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.149E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: NHLN837132-purple.jpg\n type: *2\n value: NHLN837132-purple.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001230'\n type: *2\n value: '0001230'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-14 22:48:37.074315'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- NHLN837132-purple.jpg\n 4 El producto ACC-1230 fue modificado. 189.186.59.156 65cda365-3fe6-4a90-a4c9-044ba3b928c2 2020-08-14 23:00:53.385739 37425 1222 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1222'\n is_parent: false\n sku: ACC-1222\n name: DIA-0121\n description: "MOÑO MIMI\\r\\n"\n price_base: '68.49'\n price_sale: '139.0'\n img_product: NHHI720196-Beige.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001222'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-14 22:33:29.171626'\n updated_at: &12 2020-08-14 23:03:15.067466821 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1222'\n sku: ACC-1222\n name: DIA-0121\n description: "MOÑO MIMI\\r\\n"\n price_base: '68.49'\n price_sale: '139.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-14 22:33:29.171626'\n updated_at: '2020-08-14 22:33:29.241834'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001222'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1222'\n type: *3\n value: 1222\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1222\n type: *7\n value: ACC-1222\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0121\n type: *8\n value: DIA-0121\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "MOÑO MIMI\\r\\n"\n type: *6\n value: "MOÑO MIMI\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '68.49'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6849E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '139.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.139E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: NHHI720196-Beige.jpg\n type: *2\n value: NHHI720196-Beige.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001222'\n type: *2\n value: '0001222'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-14 22:33:29.171626'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- NHHI720196-Beige.jpg\n 3 El producto ACC-1222 fue modificado. 189.186.59.156 9c930efa-470d-4134-bbd1-f39946d27ee2 2020-08-14 23:03:15.117841 37426 1228 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1228'\n is_parent: false\n sku: ACC-1228\n name: DIA-0124\n description: "DIADEMA CADENA ROJA\\r\\n"\n price_base: '56.73'\n price_sale: '169.0'\n img_product: NHLN733940-red.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001228'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-14 22:46:20.407114'\n updated_at: &12 2020-08-14 23:12:47.030440571 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1228'\n sku: ACC-1228\n name: DIA-0124\n description: "DIADEMA CADENA ROJA\\r\\n"\n price_base: '56.73'\n price_sale: '169.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-14 22:46:20.407114'\n updated_at: '2020-08-14 22:46:20.488918'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001228'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1228'\n type: *3\n value: 1228\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1228\n type: *7\n value: ACC-1228\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0124\n type: *8\n value: DIA-0124\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "DIADEMA CADENA ROJA\\r\\n"\n type: *6\n value: "DIADEMA CADENA ROJA\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '56.73'\n type: *1\n value: !ruby/object:BigDecimal 18:0.5673E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '169.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.169E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: NHLN733940-red.jpg\n type: *2\n value: NHLN733940-red.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001228'\n type: *2\n value: '0001228'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-14 22:46:20.407114'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- NHLN733940-red.jpg\n 3 El producto ACC-1228 fue modificado. 189.186.59.156 217412b6-70a2-4a87-bfba-ce92df7d4f08 2020-08-14 23:12:47.093256 37427 1232 Product \N \N 4 User \N create ---\nsku: ACC-1232\nname: DIA-0118\ndescription: "DIADEMA CON UVAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.12237E3\nprice_sale: !ruby/object:BigDecimal 18:0.399E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHWJ707399-black.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1232 fue creado. 189.186.59.156 eabd5644-1a2d-4109-a834-826909507bd7 2020-08-14 23:19:12.423185 37428 1232 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001232'\n 2 \N 189.186.59.156 eabd5644-1a2d-4109-a834-826909507bd7 2020-08-14 23:19:12.453772 37429 2112 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1232\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 eabd5644-1a2d-4109-a834-826909507bd7 2020-08-14 23:19:12.482651 37430 1233 Product \N \N 4 User \N create ---\nsku: ACC-1233\nname: DIA-0126\ndescription: "DIADEMA CUADROS ROSITA FRESITA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.7286E2\nprice_sale: !ruby/object:BigDecimal 18:0.189E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHHD733351-Floral-_-little.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1233 fue creado. 189.186.59.156 764f4b24-cac8-4779-89ad-97e6da606fbb 2020-08-14 23:21:13.518635 37431 1233 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001233'\n 2 \N 189.186.59.156 764f4b24-cac8-4779-89ad-97e6da606fbb 2020-08-14 23:21:13.551886 37432 2113 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1233\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 764f4b24-cac8-4779-89ad-97e6da606fbb 2020-08-14 23:21:13.585184 37478 2107 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.59.156 131ff02f-281e-4749-ae57-abd3a7151cc9 2020-08-14 23:45:29.610114 37433 1234 Product \N \N 4 User \N create ---\nsku: ACC-1234\nname: DIA-0123\ndescription: "DIADEMA NMOÑO CUADROS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4285E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHRH725318-Color-grid-red-blue-grid-red-knot.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1234 fue creado. 189.186.59.156 3f88835a-2d74-44cb-81c3-79830e0f46aa 2020-08-14 23:22:36.026507 37434 1234 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001234'\n 2 \N 189.186.59.156 3f88835a-2d74-44cb-81c3-79830e0f46aa 2020-08-14 23:22:36.057078 37435 2114 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1234\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 3f88835a-2d74-44cb-81c3-79830e0f46aa 2020-08-14 23:22:36.085714 37436 1235 Product \N \N 4 User \N create ---\nsku: ACC-1235\nname: DIA-0129\ndescription: "DIADEMA DOBLE DE PERLAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.7286E2\nprice_sale: !ruby/object:BigDecimal 18:0.239E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHJE780491-Golden.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1235 fue creado. 189.186.59.156 e5c2a4c4-a0a1-41f9-9974-1349d9fcbaba 2020-08-14 23:23:28.142368 37437 1235 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001235'\n 2 \N 189.186.59.156 e5c2a4c4-a0a1-41f9-9974-1349d9fcbaba 2020-08-14 23:23:28.175788 37438 2115 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1235\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 e5c2a4c4-a0a1-41f9-9974-1349d9fcbaba 2020-08-14 23:23:28.203777 37439 1236 Product \N \N 4 User \N create ---\nsku: ACC-1236\nname: DIA-0132\ndescription: "DIADEMA FLORES CON PERLAS DELGADO\\r\\n\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.12293E3\nprice_sale: !ruby/object:BigDecimal 18:0.369E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHWJ802914-Rose-flower.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1236 fue creado. 189.186.59.156 cf5d29f8-d02e-45ed-b96a-e3e2475cb3e3 2020-08-14 23:25:14.587843 37440 1236 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001236'\n 2 \N 189.186.59.156 cf5d29f8-d02e-45ed-b96a-e3e2475cb3e3 2020-08-14 23:25:14.620407 37441 2116 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1236\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 cf5d29f8-d02e-45ed-b96a-e3e2475cb3e3 2020-08-14 23:25:14.649362 37442 1237 Product \N \N 4 User \N create ---\nsku: ACC-1237\nname: DIA-0116\ndescription: "DIADEMA DE CUADROS CON CIGARRA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.14678E3\nprice_sale: !ruby/object:BigDecimal 18:0.42E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHWJ707395-red.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1237 fue creado. 189.186.59.156 69c6c9b0-e712-4074-a578-617139a1dca3 2020-08-14 23:27:24.515242 37443 1237 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001237'\n 2 \N 189.186.59.156 69c6c9b0-e712-4074-a578-617139a1dca3 2020-08-14 23:27:24.548162 37444 2117 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1237\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 69c6c9b0-e712-4074-a578-617139a1dca3 2020-08-14 23:27:24.584508 37445 1238 Product \N \N 4 User \N create ---\nsku: ACC-1238\nname: DIA-0127\ndescription: "DIADEMA FLORES CADENA DE PIEDRA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.15977E3\nprice_sale: !ruby/object:BigDecimal 18:0.389E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHWJ733616-white.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1238 fue creado. 189.186.59.156 dc094ea4-347d-48e7-9263-9ee9f50f1bf7 2020-08-14 23:29:13.346478 37446 1238 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001238'\n 2 \N 189.186.59.156 dc094ea4-347d-48e7-9263-9ee9f50f1bf7 2020-08-14 23:29:13.375395 37447 2118 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1238\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 dc094ea4-347d-48e7-9263-9ee9f50f1bf7 2020-08-14 23:29:13.404582 37448 1239 Product \N \N 4 User \N create ---\nsku: ACC-1239\nname: DIA-0122\ndescription: "DIADEMA TUL CON PERLAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4486E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHDM606710-Chiffon-Pearl-Pink.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1239 fue creado. 189.186.59.156 fd1a4045-ab06-4b13-9bcd-9dc4558daee2 2020-08-14 23:31:02.026597 37449 1239 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001239'\n 2 \N 189.186.59.156 fd1a4045-ab06-4b13-9bcd-9dc4558daee2 2020-08-14 23:31:02.055172 37450 2119 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1239\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 fd1a4045-ab06-4b13-9bcd-9dc4558daee2 2020-08-14 23:31:02.080999 37479 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-13 22:18:43.386723000 Z\n- &1 2020-08-14 00:45:32.659060000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-14 23:54:20.545766170 Z\nsign_in_count:\n- 254\n- 255\n 511 \N 189.186.59.156 8002f974-0d46-4c08-91b9-39feffed610e 2020-08-14 23:54:20.553464 37480 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 6aAzBu9mfY2aVYQuU6C7\n- 4bjhbUp1eY8H2P1T_LTG\n 512 \N 189.186.59.156 8002f974-0d46-4c08-91b9-39feffed610e 2020-08-14 23:54:20.568663 37451 1240 Product \N \N 4 User \N create ---\nsku: ACC-1240\nname: DIA-0125\ndescription: "DIADEMA FLORES MOÑO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.8675E2\nprice_sale: !ruby/object:BigDecimal 18:0.189E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHHD733331-Lavender.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1240 fue creado. 189.186.59.156 25de1328-8683-44c1-ac72-fc230f1cee20 2020-08-14 23:32:14.988407 37452 1240 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001240'\n 2 \N 189.186.59.156 25de1328-8683-44c1-ac72-fc230f1cee20 2020-08-14 23:32:15.026624 37453 2120 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1240\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 25de1328-8683-44c1-ac72-fc230f1cee20 2020-08-14 23:32:15.051954 37454 1241 Product \N \N 4 User \N create ---\nsku: ACC-1241\nname: DIA-0128\ndescription: "DIADEMA ESTRELLAS \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.7824E2\nprice_sale: !ruby/object:BigDecimal 18:0.189E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHHI739957-Black-lace.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1241 fue creado. 189.186.59.156 a510b350-41c1-48af-86f5-a810c409871a 2020-08-14 23:33:23.835761 37455 1241 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001241'\n 2 \N 189.186.59.156 a510b350-41c1-48af-86f5-a810c409871a 2020-08-14 23:33:23.868057 37456 2121 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1241\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 a510b350-41c1-48af-86f5-a810c409871a 2020-08-14 23:33:23.898684 37457 1242 Product \N \N 4 User \N create ---\nsku: ACC-1242\nname: DIA-0115\ndescription: "DIADEMA PIEL CON MOÑO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4531E2\nprice_sale: !ruby/object:BigDecimal 18:0.159E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHUX708181-Brown-Leather-Stud-Pearl-Rabbit-Ear-Headband.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1242 fue creado. 189.186.59.156 d152fc45-f6b5-4076-8472-13fa1c929669 2020-08-14 23:35:42.481515 37458 1242 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001242'\n 2 \N 189.186.59.156 d152fc45-f6b5-4076-8472-13fa1c929669 2020-08-14 23:35:42.513714 37459 2122 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1242\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 d152fc45-f6b5-4076-8472-13fa1c929669 2020-08-14 23:35:42.542659 37460 345 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-73\namount: !ruby/object:BigDecimal 18:0.152593E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.152593E4\nobservations: ''\npurchase_date: 2020-08-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-73 por $ 1525.93 MXN creada. 189.186.59.156 b86f6ef8-4c70-446e-b2a8-1864dcf1929c 2020-08-14 23:35:48.342334 37461 2107 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.59.156 b86f6ef8-4c70-446e-b2a8-1864dcf1929c 2020-08-14 23:35:48.369127 37462 2112 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.59.156 b86f6ef8-4c70-446e-b2a8-1864dcf1929c 2020-08-14 23:35:48.394798 37463 2113 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 b86f6ef8-4c70-446e-b2a8-1864dcf1929c 2020-08-14 23:35:48.420378 37464 2114 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 b86f6ef8-4c70-446e-b2a8-1864dcf1929c 2020-08-14 23:35:48.446666 37465 2115 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 b86f6ef8-4c70-446e-b2a8-1864dcf1929c 2020-08-14 23:35:48.471839 37466 2116 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.59.156 b86f6ef8-4c70-446e-b2a8-1864dcf1929c 2020-08-14 23:35:48.495566 37467 2117 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 b86f6ef8-4c70-446e-b2a8-1864dcf1929c 2020-08-14 23:35:48.531657 37468 2118 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 b86f6ef8-4c70-446e-b2a8-1864dcf1929c 2020-08-14 23:35:48.564739 37469 2119 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 b86f6ef8-4c70-446e-b2a8-1864dcf1929c 2020-08-14 23:35:48.595305 37470 2120 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 b86f6ef8-4c70-446e-b2a8-1864dcf1929c 2020-08-14 23:35:48.631015 37471 2121 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 b86f6ef8-4c70-446e-b2a8-1864dcf1929c 2020-08-14 23:35:48.663936 37472 2122 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 b86f6ef8-4c70-446e-b2a8-1864dcf1929c 2020-08-14 23:35:48.699843 37473 346 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-73\namount: !ruby/object:BigDecimal 18:0.152593E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.152593E4\nobservations: ''\npurchase_date: 2020-08-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-73 por $ 1525.93 MXN creada. 189.186.59.156 41693698-dcf1-4f00-a4ad-8ed152184d82 2020-08-14 23:35:48.754139 37474 1028 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1003\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5843E4\namount_out: !ruby/object:BigDecimal 18:0.25E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.34E4\ncash_fund: !ruby/object:BigDecimal 18:0.129E4\nphysical_cash: !ruby/object:BigDecimal 18:0.469E4\nobservations: 'GRACIELA MONTIEL HIZO $500 TRANSFERENCIA A SAMANTHA CUANDO APARTO CONQUES\n ROSAS EN #4.5'\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.51.195 190267de-a95d-4ef9-8a6f-d404feb38706 2020-08-14 23:39:38.233608 37482 2707 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1004\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2020-08-14\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-491\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.156 3608b4e2-87c0-4030-9deb-07193d9fe057 2020-08-14 23:54:46.97123 37483 2090 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.59.156 3608b4e2-87c0-4030-9deb-07193d9fe057 2020-08-14 23:54:46.998972 37484 2707 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.156 59c2d8e4-2b4c-43cf-82cb-85b72dd5294f 2020-08-14 23:54:52.876037 37485 3638 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1004\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.569E3\nmove_type: '1'\nsale_id: 2707\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-491\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-491 189.186.59.156 59c2d8e4-2b4c-43cf-82cb-85b72dd5294f 2020-08-14 23:54:52.901323 37486 348 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-136\namount: !ruby/object:BigDecimal 18:0.230734E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.230734E4\nobservations: ''\npurchase_date: 2020-08-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-136 por $ 2307.34 MXN creada. 189.186.59.156 c17f1c4d-99eb-4e76-ab8d-8d1069fc156a 2020-08-15 00:14:02.903754 37487 2123 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1225\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 c17f1c4d-99eb-4e76-ab8d-8d1069fc156a 2020-08-15 00:14:02.934197 37488 2124 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1238\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 c17f1c4d-99eb-4e76-ab8d-8d1069fc156a 2020-08-15 00:14:02.963546 37489 2125 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1233\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 c17f1c4d-99eb-4e76-ab8d-8d1069fc156a 2020-08-15 00:14:02.992176 37490 2126 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1240\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 c17f1c4d-99eb-4e76-ab8d-8d1069fc156a 2020-08-15 00:14:03.021693 37491 2127 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1234\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 c17f1c4d-99eb-4e76-ab8d-8d1069fc156a 2020-08-15 00:14:03.050095 37492 2128 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1232\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 c17f1c4d-99eb-4e76-ab8d-8d1069fc156a 2020-08-15 00:14:03.085935 37493 2129 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1229\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 c17f1c4d-99eb-4e76-ab8d-8d1069fc156a 2020-08-15 00:14:03.115271 37494 2130 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1237\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 c17f1c4d-99eb-4e76-ab8d-8d1069fc156a 2020-08-15 00:14:03.143893 37495 2131 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1242\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 c17f1c4d-99eb-4e76-ab8d-8d1069fc156a 2020-08-15 00:14:03.17378 37496 2132 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1239\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 c17f1c4d-99eb-4e76-ab8d-8d1069fc156a 2020-08-15 00:14:03.202442 37497 2133 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1224\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 c17f1c4d-99eb-4e76-ab8d-8d1069fc156a 2020-08-15 00:14:03.232855 37498 2134 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1221\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 c17f1c4d-99eb-4e76-ab8d-8d1069fc156a 2020-08-15 00:14:03.261274 37499 2135 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1230\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 c17f1c4d-99eb-4e76-ab8d-8d1069fc156a 2020-08-15 00:14:03.287582 37500 2136 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1236\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 c17f1c4d-99eb-4e76-ab8d-8d1069fc156a 2020-08-15 00:14:03.315866 37501 1243 Product \N \N 4 User \N create ---\nsku: ACC-1243\nname: DIA-0140\ndescription: "DIADEMA VERDE AGUA Y ROSA \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5427E2\nprice_sale: !ruby/object:BigDecimal 18:0.159E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHSM834492-Pink.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1243 fue creado. 189.186.59.156 8f854173-b136-404a-a453-4aa4cff2d8c1 2020-08-15 00:19:05.947249 37502 1243 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001243'\n 2 \N 189.186.59.156 8f854173-b136-404a-a453-4aa4cff2d8c1 2020-08-15 00:19:05.986294 37503 2137 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1243\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 8f854173-b136-404a-a453-4aa4cff2d8c1 2020-08-15 00:19:06.015772 37504 1244 Product \N \N 4 User \N create ---\nsku: ACC-1244\nname: DIA-0131\ndescription: "DIADEMA MOÑO SENCILLO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4824E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHSM799851-Pink.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1244 fue creado. 189.186.59.156 22aa9087-a4db-44df-a56b-9c5eda87f694 2020-08-15 00:20:38.385459 37505 1244 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001244'\n 2 \N 189.186.59.156 22aa9087-a4db-44df-a56b-9c5eda87f694 2020-08-15 00:20:38.416131 37506 2138 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1244\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 22aa9087-a4db-44df-a56b-9c5eda87f694 2020-08-15 00:20:38.444695 37507 1245 Product \N \N 4 User \N create ---\nsku: ACC-1245\nname: DIA-0137\ndescription: "DIADEMA PIEDRAS ROSA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.30829E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHVA818447-color.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1245 fue creado. 189.186.59.156 38d6d8ff-f0b6-4a2b-ae46-ff8d37418763 2020-08-15 00:26:35.50085 37508 1245 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001245'\n 2 \N 189.186.59.156 38d6d8ff-f0b6-4a2b-ae46-ff8d37418763 2020-08-15 00:26:35.531223 37509 2139 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1245\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 38d6d8ff-f0b6-4a2b-ae46-ff8d37418763 2020-08-15 00:26:35.557826 37510 1246 Product \N \N 4 User \N create ---\nsku: ACC-1246\nname: DIA-0130\ndescription: "DIADEMA DE PLUMAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5315E2\nprice_sale: !ruby/object:BigDecimal 18:0.149E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHSM799758-Pink.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1246 fue creado. 189.186.59.156 6b94041f-5ab3-48aa-aa94-fb2d7ad97087 2020-08-15 00:27:58.517626 37511 1246 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001246'\n 2 \N 189.186.59.156 6b94041f-5ab3-48aa-aa94-fb2d7ad97087 2020-08-15 00:27:58.548465 37512 2140 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1246\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 6b94041f-5ab3-48aa-aa94-fb2d7ad97087 2020-08-15 00:27:58.574827 37513 349 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-137\namount: !ruby/object:BigDecimal 18:0.61961E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.61961E3\nobservations: ''\npurchase_date: 2020-08-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-137 por $ 619.61 MXN creada. 189.186.59.156 867594ff-4931-4a6d-91ef-f01932406e05 2020-08-15 00:28:07.71597 37514 2137 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.59.156 867594ff-4931-4a6d-91ef-f01932406e05 2020-08-15 00:28:07.737752 37515 2138 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.59.156 867594ff-4931-4a6d-91ef-f01932406e05 2020-08-15 00:28:07.762329 37516 2139 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 867594ff-4931-4a6d-91ef-f01932406e05 2020-08-15 00:28:07.78598 37517 2140 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.59.156 867594ff-4931-4a6d-91ef-f01932406e05 2020-08-15 00:28:07.809715 37518 1247 Product \N \N 4 User \N create ---\nsku: ACC-1247\nname: DIA-0091\ndescription: "DIADEMA SATIN PERLAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4363E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHJE277181-black.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1247 fue creado. 189.186.59.156 7cb01d6c-d436-4ef3-a7a0-29a3554957a6 2020-08-15 00:31:27.826329 37519 1247 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001247'\n 2 \N 189.186.59.156 7cb01d6c-d436-4ef3-a7a0-29a3554957a6 2020-08-15 00:31:27.87838 37520 2141 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1247\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 7cb01d6c-d436-4ef3-a7a0-29a3554957a6 2020-08-15 00:31:27.915112 37521 1248 Product \N \N 4 User \N create ---\nsku: ACC-1248\nname: DIA-0144\ndescription: "DIADEMA AZUL CON PERLAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4105E2\nprice_sale: !ruby/object:BigDecimal 18:0.11E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHMD274426-F0869-light-blue.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1248 fue creado. 189.186.59.156 2bb89d60-04a8-4f44-86e5-52d078d943f0 2020-08-15 00:32:48.722671 37522 1248 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001248'\n 2 \N 189.186.59.156 2bb89d60-04a8-4f44-86e5-52d078d943f0 2020-08-15 00:32:48.751989 37523 2142 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1248\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 2bb89d60-04a8-4f44-86e5-52d078d943f0 2020-08-15 00:32:48.777367 37620 654 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-15\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.72.196 bfc7cc56-accd-4b5c-bee5-c7e15fea884f 2020-08-15 20:09:42.567885 37524 1249 Product \N \N 4 User \N create ---\nsku: ACC-1249\nname: DIA-0139\ndescription: "DIADEMA NEGRA CON BROCHE DE PIEDRA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5315E2\nprice_sale: !ruby/object:BigDecimal 18:0.169E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1249 fue creado. 189.186.59.156 d116993d-5f93-45fb-974c-83ce2c5ad605 2020-08-15 00:33:50.273781 37525 1249 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001249'\n 2 \N 189.186.59.156 d116993d-5f93-45fb-974c-83ce2c5ad605 2020-08-15 00:33:50.301494 37526 2143 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1249\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 d116993d-5f93-45fb-974c-83ce2c5ad605 2020-08-15 00:33:50.328362 37527 1250 Product \N \N 4 User \N create ---\nsku: ACC-1250\nname: DIA-0117\ndescription: "DIADEMA PEDRERIA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.15659E3\nprice_sale: !ruby/object:BigDecimal 18:0.429E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHVA707489-color.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1250 fue creado. 189.186.59.156 42f837a4-81ce-48e7-a611-74b88df1a992 2020-08-15 00:35:35.47697 37528 1250 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001250'\n 2 \N 189.186.59.156 42f837a4-81ce-48e7-a611-74b88df1a992 2020-08-15 00:35:35.508039 37529 2144 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1250\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 42f837a4-81ce-48e7-a611-74b88df1a992 2020-08-15 00:35:35.534521 37530 350 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-138\namount: !ruby/object:BigDecimal 18:0.33805E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.33805E3\nobservations: ''\npurchase_date: 2020-08-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-138 por $ 338.05 MXN creada. 189.186.59.156 9aab761c-0d03-4467-be42-693854192ff1 2020-08-15 00:35:44.226952 37531 2141 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.59.156 9aab761c-0d03-4467-be42-693854192ff1 2020-08-15 00:35:44.248658 37532 2142 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 9aab761c-0d03-4467-be42-693854192ff1 2020-08-15 00:35:44.270377 37533 2143 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 9aab761c-0d03-4467-be42-693854192ff1 2020-08-15 00:35:44.292757 37534 2144 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 9aab761c-0d03-4467-be42-693854192ff1 2020-08-15 00:35:44.315767 37535 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-13 21:37:11.349107000 Z\n- &1 2020-08-14 16:09:53.876872000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-15 16:05:04.682253061 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096771\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122884\n mask_addr: 4294967295\nsign_in_count:\n- 614\n- 615\n 1233 \N 187.149.72.196 a6ce612b-ba5f-475c-8290-9d7622e23f61 2020-08-15 16:05:04.70994 37536 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 5HTP6mH2PPJLSgnW4zAF\n- nVnzPpFFGqXCzESywqzo\n 1234 \N 187.149.72.196 a6ce612b-ba5f-475c-8290-9d7622e23f61 2020-08-15 16:05:04.732275 37537 1005 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.129E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1290.0 187.149.72.196 741fed6e-8794-4198-a699-9273aba51f12 2020-08-15 16:05:20.886229 37538 2708 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1005\namount: !ruby/object:BigDecimal 18:0.155662E4\ntax: !ruby/object:BigDecimal 18:0.4138E2\ndiscount: !ruby/object:BigDecimal 18:0.898E3\ntotal: !ruby/object:BigDecimal 18:0.7E3\nstatus: 0\ndate_sale: 2020-08-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1297\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.72.196 36b99b2e-4262-45c8-ad30-7d0a1f3c558b 2020-08-15 16:07:25.959859 37539 255 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.72.196 36b99b2e-4262-45c8-ad30-7d0a1f3c558b 2020-08-15 16:07:25.990929 37540 644 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.72.196 36b99b2e-4262-45c8-ad30-7d0a1f3c558b 2020-08-15 16:07:26.026705 37541 2708 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.72.196 d7562056-1086-4998-a21b-77460dd47216 2020-08-15 16:07:30.94006 37542 3639 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1005\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.7E3\nmove_type: '1'\nsale_id: 2708\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1297\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1297 187.149.72.196 d7562056-1086-4998-a21b-77460dd47216 2020-08-15 16:07:30.967116 37543 2709 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1005\namount: !ruby/object:BigDecimal 18:0.94283E3\ntax: !ruby/object:BigDecimal 18:0.5517E2\ndiscount: !ruby/object:BigDecimal 18:0.598E3\ntotal: !ruby/object:BigDecimal 18:0.4E3\nstatus: 0\ndate_sale: 2020-08-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1298\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.72.196 8494d20c-3dbe-46d0-965e-9795f85f6089 2020-08-15 16:16:03.373474 37544 1563 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.72.196 8494d20c-3dbe-46d0-965e-9795f85f6089 2020-08-15 16:16:03.398734 37545 82 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.72.196 8494d20c-3dbe-46d0-965e-9795f85f6089 2020-08-15 16:16:03.421977 37546 2709 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.72.196 ac472a04-1517-4dea-a5e5-a23edeb29e1b 2020-08-15 16:16:06.494097 37621 478 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.72.196 bfc7cc56-accd-4b5c-bee5-c7e15fea884f 2020-08-15 20:09:42.58628 37547 3640 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1005\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 2709\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1298\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1298 187.149.72.196 ac472a04-1517-4dea-a5e5-a23edeb29e1b 2020-08-15 16:16:06.514304 37548 2710 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1005\namount: !ruby/object:BigDecimal 18:0.208563E4\ntax: !ruby/object:BigDecimal 18:0.4137E2\ndiscount: !ruby/object:BigDecimal 18:0.1827E4\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2020-08-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1299\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.72.196 235a642f-a10d-49ee-a842-1cae03848572 2020-08-15 16:17:40.573081 37549 204 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.72.196 235a642f-a10d-49ee-a842-1cae03848572 2020-08-15 16:17:40.600984 37550 82 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.72.196 235a642f-a10d-49ee-a842-1cae03848572 2020-08-15 16:17:40.624637 37551 206 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.72.196 235a642f-a10d-49ee-a842-1cae03848572 2020-08-15 16:17:40.647177 37552 2710 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.72.196 84e7a238-28bf-4107-8fdf-ffc9e27bc98b 2020-08-15 16:17:58.427428 37553 3641 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1005\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 2710\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1299\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1299 187.149.72.196 84e7a238-28bf-4107-8fdf-ffc9e27bc98b 2020-08-15 16:17:58.447743 37554 2711 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1005\namount: !ruby/object:BigDecimal 18:0.99904E3\ntax: !ruby/object:BigDecimal 18:0.6896E2\ndiscount: !ruby/object:BigDecimal 18:0.568E3\ntotal: !ruby/object:BigDecimal 18:0.5E3\nstatus: 0\ndate_sale: 2020-08-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1300\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.72.196 563cb18e-0bfb-457f-bb41-c68ff55ae2e3 2020-08-15 16:24:21.983181 37555 687 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.72.196 563cb18e-0bfb-457f-bb41-c68ff55ae2e3 2020-08-15 16:24:22.013454 37556 79 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.72.196 563cb18e-0bfb-457f-bb41-c68ff55ae2e3 2020-08-15 16:24:22.0387 37557 2711 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.72.196 f152e2e3-11bf-4012-b958-d8e68683f7a5 2020-08-15 16:24:26.522322 37558 3642 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1005\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 2711\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1300\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1300 187.149.72.196 f152e2e3-11bf-4012-b958-d8e68683f7a5 2020-08-15 16:24:26.543343 37559 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-11 20:33:14.268718000 Z\n- &1 2020-08-11 21:39:49.738959000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-15 16:27:39.196771254 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938276\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122884\n mask_addr: 4294967295\nsign_in_count:\n- 203\n- 204\n 408 \N 187.149.72.196 4a71d277-a236-436d-8a15-649c553ad7cc 2020-08-15 16:27:39.204858 37560 1 User \N \N 1 User \N update ---\nunique_session_id:\n- DdhDyxsoh_ePVSjyeMJV\n- N6vVvZ6ZtBxpBhohx7oQ\n 409 \N 187.149.72.196 4a71d277-a236-436d-8a15-649c553ad7cc 2020-08-15 16:27:39.219423 37561 1584 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.72.196 50ae8b12-16c0-4084-91c7-5b7013544364 2020-08-15 16:28:46.783515 37562 1584 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.72.196 ae30777d-344d-4222-be09-124ab3a10fff 2020-08-15 16:29:07.082471 37563 650 Transfer \N \N 1 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-08-15\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.72.196 bae4af4f-859f-4023-a017-b6107f6ed80e 2020-08-15 16:29:07.835644 37564 650 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-15\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.72.196 43539a0f-b941-4485-ad70-68269d3b5f8a 2020-08-15 16:29:54.782581 37565 645 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.72.196 43539a0f-b941-4485-ad70-68269d3b5f8a 2020-08-15 16:29:54.800521 37566 2712 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1005\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2020-08-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1301\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.72.196 4ae69f3c-f540-4424-82d8-654e599c3e08 2020-08-15 16:31:09.627563 37567 645 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.72.196 4ae69f3c-f540-4424-82d8-654e599c3e08 2020-08-15 16:31:09.655602 37568 2712 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.72.196 10de8216-8c34-4fed-a36c-ecae16796fa9 2020-08-15 16:31:16.296164 37569 3643 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1005\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.35E3\nmove_type: '1'\nsale_id: 2712\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1301\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1301 187.149.72.196 10de8216-8c34-4fed-a36c-ecae16796fa9 2020-08-15 16:31:16.31754 37666 1257 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001257'\n 2 \N 189.186.59.156 0d165651-3514-4327-8fdc-1c5eebeb1dca 2020-08-15 22:59:35.829544 37570 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-14 20:03:41.194005000 Z\n- &1 2020-08-14 22:26:26.534587000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-15 17:00:05.126306877 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137255\n mask_addr: 4294967295\nsign_in_count:\n- 1721\n- 1722\n 3444 \N 189.186.209.231 32c9a850-bca6-47a2-be75-b935962e5db7 2020-08-15 17:00:05.134484 37571 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zhy8XxaEAJWx7PxmQuqu\n- tpyNShs6Vmf7yQ-xkmNq\n 3445 \N 189.186.209.231 32c9a850-bca6-47a2-be75-b935962e5db7 2020-08-15 17:00:05.15596 37572 1963 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.72.196 ca380e46-1137-4500-b877-ad1552cfc965 2020-08-15 17:32:54.858006 37573 651 Transfer \N \N 1 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-08-15\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.72.196 010062ca-bc9d-49bf-bda9-83acfe16f816 2020-08-15 17:32:57.731742 37574 651 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-15\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.72.196 746a6c87-4fc1-4da0-a6df-b3301ab2101a 2020-08-15 17:34:04.403859 37575 198 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.72.196 746a6c87-4fc1-4da0-a6df-b3301ab2101a 2020-08-15 17:34:04.422324 37576 967 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.72.196 b22294f4-509a-4bb0-ae1d-dbe29f7a325d 2020-08-15 17:38:10.695976 37577 967 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.72.196 bab62923-eabe-4d2c-8e77-39cca41200b6 2020-08-15 17:38:17.415983 37578 652 Transfer \N \N 1 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-08-15\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.72.196 d72694a2-389f-485a-8e3f-27e346767d5c 2020-08-15 17:38:19.284404 37579 652 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-15\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.72.196 5e9a1736-1914-4e4e-91a7-53c7ec69f030 2020-08-15 17:39:49.848698 37580 2145 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 521\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.72.196 5e9a1736-1914-4e4e-91a7-53c7ec69f030 2020-08-15 17:39:49.871486 37581 2713 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1005\namount: !ruby/object:BigDecimal 18:0.154714E4\ntax: !ruby/object:BigDecimal 18:0.7586E2\ndiscount: !ruby/object:BigDecimal 18:0.823E3\ntotal: !ruby/object:BigDecimal 18:0.8E3\nstatus: 0\ndate_sale: 2020-08-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1302\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.72.196 a4bdcc9a-1447-4305-82dd-0aa4bc201bf2 2020-08-15 17:48:07.990031 37582 198 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.72.196 a4bdcc9a-1447-4305-82dd-0aa4bc201bf2 2020-08-15 17:48:08.020673 37583 76 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.72.196 a4bdcc9a-1447-4305-82dd-0aa4bc201bf2 2020-08-15 17:48:08.046266 37584 2145 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.72.196 a4bdcc9a-1447-4305-82dd-0aa4bc201bf2 2020-08-15 17:48:08.071938 37585 2713 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.72.196 85dc5d8e-0d47-4daa-acdd-fe0de2b8cb54 2020-08-15 17:48:12.505793 37586 3644 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1005\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.8E3\nmove_type: '1'\nsale_id: 2713\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1302\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1302 187.149.72.196 85dc5d8e-0d47-4daa-acdd-fe0de2b8cb54 2020-08-15 17:48:12.526859 37587 2714 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1005\namount: !ruby/object:BigDecimal 18:0.43452E3\ntax: !ruby/object:BigDecimal 18:0.3448E2\ndiscount: !ruby/object:BigDecimal 18:0.219E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-08-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1303\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.72.196 e1308385-d253-4b11-93da-a67a0261d2c9 2020-08-15 17:48:56.917758 37588 1875 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.72.196 e1308385-d253-4b11-93da-a67a0261d2c9 2020-08-15 17:48:56.946256 37589 2714 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.72.196 b3667c99-2d37-4e94-b599-97242970343a 2020-08-15 17:49:24.368181 37590 3645 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1005\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 2714\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1303\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1303 187.149.72.196 b3667c99-2d37-4e94-b599-97242970343a 2020-08-15 17:49:24.39157 37591 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-14 22:26:26.534587000 Z\n- &1 2020-08-15 17:00:05.126306000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-15 18:43:23.738637193 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137255\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137255\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\nsign_in_count:\n- 1722\n- 1723\n 3446 \N 189.186.59.156 29867b3e-6077-488a-abde-41c5633cc36d 2020-08-15 18:43:23.747192 37592 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tpyNShs6Vmf7yQ-xkmNq\n- qu3h1_co7PrVzu7BzV76\n 3447 \N 189.186.59.156 29867b3e-6077-488a-abde-41c5633cc36d 2020-08-15 18:43:23.767472 37593 2715 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1005\namount: !ruby/object:BigDecimal 18:0.1378E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.414E3\ntotal: !ruby/object:BigDecimal 18:0.964E3\nstatus: 0\ndate_sale: 2020-08-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1304\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.72.196 77ae0d65-5008-4e11-b7ab-153685c75456 2020-08-15 18:53:07.947201 37597 3646 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1005\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.964E3\nmove_type: '1'\nsale_id: 2715\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1304\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.964E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1304 187.149.72.196 9eb41d92-2c98-4f0d-8649-d99aab73fa10 2020-08-15 18:53:31.84984 37598 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-14 00:45:32.659060000 Z\n- &1 2020-08-14 23:54:20.545766000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-15 19:02:15.195183449 Z\nsign_in_count:\n- 255\n- 256\n 513 \N 189.186.59.156 f0344209-1d8c-4e42-8c9f-767d47587f24 2020-08-15 19:02:15.201027 37599 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 4bjhbUp1eY8H2P1T_LTG\n- xDZUUyPTR-xMzRwnUXqy\n 514 \N 189.186.59.156 f0344209-1d8c-4e42-8c9f-767d47587f24 2020-08-15 19:02:15.21507 37600 1029 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1004\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.569E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.6E3\ncash_fund: !ruby/object:BigDecimal 18:0.895E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1495E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.59.156 e29de5e2-0108-4c32-aca1-b497fa3c8ffa 2020-08-15 19:03:07.588666 37601 1004 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.59.156 e29de5e2-0108-4c32-aca1-b497fa3c8ffa 2020-08-15 19:03:07.604066 37602 1006 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.895E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 895.0 189.186.59.156 7cf1a48d-0451-4b9f-9ca6-f559780e4601 2020-08-15 19:03:24.176475 37603 2716 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1006\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-08-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-492\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.156 1aa5ac9f-18a3-453f-9198-25daa02d8f53 2020-08-15 19:04:02.387753 37604 1822 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 50 \N 189.186.59.156 1aa5ac9f-18a3-453f-9198-25daa02d8f53 2020-08-15 19:04:02.523862 37605 2716 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.59.156 c01b3689-9859-4ba9-a50b-2eb143ecba0c 2020-08-15 19:04:24.532628 37606 3647 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1006\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2716\ncardnumber: 2283\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-492\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-492 189.186.59.156 c01b3689-9859-4ba9-a50b-2eb143ecba0c 2020-08-15 19:04:24.55384 37607 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-15 17:00:05.126306000 Z\n- &1 2020-08-15 18:43:23.738637000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-15 19:09:15.617390218 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183137255\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\nsign_in_count:\n- 1723\n- 1724\n 3448 \N 189.186.59.156 b0624a09-6d59-4c88-a47f-1720dcfb1362 2020-08-15 19:09:15.629648 37608 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qu3h1_co7PrVzu7BzV76\n- _FhXwBbhSZ16-JB5oQQM\n 3449 \N 189.186.59.156 b0624a09-6d59-4c88-a47f-1720dcfb1362 2020-08-15 19:09:15.650278 37609 322 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1005\nquantity: !ruby/object:BigDecimal 18:0.69E3\nstatus: 1\nobservations: ETIQUETAS\nexpense_date: 2020-08-15\nexpense_code: PV1-E-224\n 1 Egreso por 690.0 registrado 187.149.72.196 e8b850a1-d0b6-4091-8ea1-383b0a7d8d06 2020-08-15 19:35:07.302378 37610 3648 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1005\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.69E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 322\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.72.196 e8b850a1-d0b6-4091-8ea1-383b0a7d8d06 2020-08-15 19:35:07.324503 37611 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-11 21:39:49.738959000 Z\n- &1 2020-08-15 16:27:39.196771000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-15 20:05:34.734884782 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938276\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122884\n mask_addr: 4294967295\nsign_in_count:\n- 204\n- 205\n 410 \N 187.149.72.196 2afef663-9e09-45d6-a35a-4faaa4c938b8 2020-08-15 20:05:34.741891 37612 1 User \N \N 1 User \N update ---\nunique_session_id:\n- N6vVvZ6ZtBxpBhohx7oQ\n- MvWFxiBjj_RFQW1BxrsV\n 411 \N 187.149.72.196 2afef663-9e09-45d6-a35a-4faaa4c938b8 2020-08-15 20:05:34.757864 37613 838 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 10 \N 187.149.72.196 c0ffc483-f6ba-42c5-8275-8f1d1f720cc9 2020-08-15 20:06:00.682953 37614 653 Transfer \N \N 1 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-08-15\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.72.196 996097c7-bf73-41fc-b981-f14c7632acb2 2020-08-15 20:06:06.304969 37615 653 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-15\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.72.196 a5d72438-6bbd-466a-a737-cd7ef312089b 2020-08-15 20:06:55.391932 37616 2146 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 682\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.72.196 a5d72438-6bbd-466a-a737-cd7ef312089b 2020-08-15 20:06:55.413389 37617 1946 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.72.196 028c1814-612b-40a0-a642-6a3af34a46f1 2020-08-15 20:08:59.513821 37618 1946 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.72.196 a7e344a8-a184-4ac6-b1b9-0519be538876 2020-08-15 20:09:05.810336 37619 654 Transfer \N \N 1 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-08-15\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.72.196 ee32d672-a147-44c2-91e1-c27e0107c689 2020-08-15 20:09:07.221815 37710 1264 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001264'\n 2 \N 189.186.59.156 58a11d6a-0a8b-4ac4-8c05-c3ae064de533 2020-08-15 23:51:55.951075 37622 2717 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1005\namount: !ruby/object:BigDecimal 18:0.2996E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1641E4\ntotal: !ruby/object:BigDecimal 18:0.1355E4\nstatus: 0\ndate_sale: 2020-08-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1305\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.72.196 d0926044-e81a-4369-9aff-52ba3d770d48 2020-08-15 20:11:04.235052 37623 1940 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.72.196 d0926044-e81a-4369-9aff-52ba3d770d48 2020-08-15 20:11:04.268616 37624 1855 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.72.196 d0926044-e81a-4369-9aff-52ba3d770d48 2020-08-15 20:11:04.296462 37625 2146 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.72.196 d0926044-e81a-4369-9aff-52ba3d770d48 2020-08-15 20:11:04.324695 37626 478 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.72.196 d0926044-e81a-4369-9aff-52ba3d770d48 2020-08-15 20:11:04.352035 37627 2717 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.72.196 8a85cc3c-58c9-40a6-939e-00b14173e169 2020-08-15 20:11:08.592244 37628 3649 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1005\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1355E4\nmove_type: '1'\nsale_id: 2717\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1305\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1355E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1305 187.149.72.196 8a85cc3c-58c9-40a6-939e-00b14173e169 2020-08-15 20:11:08.615386 37629 1251 Product \N \N 4 User \N create ---\nsku: BOL-1251\nname: 3BLCP20150\ndescription: Mochila con Acabado de Rayas\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170812466'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 3BLCP20150.png\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1251 fue creado. 189.186.59.156 9c113730-8a78-4468-a57f-5492a298c960 2020-08-15 20:22:01.38803 37630 2147 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1251\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 9c113730-8a78-4468-a57f-5492a298c960 2020-08-15 20:22:01.435576 37631 351 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-76\namount: !ruby/object:BigDecimal 18:0.1549E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1549E4\nobservations: ''\npurchase_date: 2020-08-15\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-76 por $ 1549.0 MXN creada. 189.186.59.156 d33dd2fe-1536-424f-b16f-3fcd1e6d32e9 2020-08-15 20:22:04.512578 37632 1977 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.59.156 d33dd2fe-1536-424f-b16f-3fcd1e6d32e9 2020-08-15 20:22:04.53472 37633 2147 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 d33dd2fe-1536-424f-b16f-3fcd1e6d32e9 2020-08-15 20:22:04.558258 37634 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-15 18:43:23.738637000 Z\n- &1 2020-08-15 19:09:15.617390000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-15 20:49:39.942327780 Z\nsign_in_count:\n- 1724\n- 1725\n 3450 \N 189.186.59.156 766be242-d205-4436-9632-4543abe7d153 2020-08-15 20:49:39.948291 37635 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _FhXwBbhSZ16-JB5oQQM\n- cNi_Tq7Deq1f4J1A4Ky-\n 3451 \N 189.186.59.156 766be242-d205-4436-9632-4543abe7d153 2020-08-15 20:49:39.96402 37636 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-15 16:27:39.196771000 Z\n- &1 2020-08-15 20:05:34.734884000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-15 21:30:01.695150073 Z\nsign_in_count:\n- 205\n- 206\n 412 \N 187.149.72.196 9b6fa10b-49ad-4a9d-aba0-09efeb69fa9e 2020-08-15 21:30:01.701146 37637 1 User \N \N 1 User \N update ---\nunique_session_id:\n- MvWFxiBjj_RFQW1BxrsV\n- Fs5sFVZEenutfKTQJpF6\n 413 \N 187.149.72.196 9b6fa10b-49ad-4a9d-aba0-09efeb69fa9e 2020-08-15 21:30:01.722229 37638 1947 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.72.196 373d44bb-4187-477e-baaa-b16ae18184bb 2020-08-15 21:31:48.67871 37639 1947 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.72.196 9124bb17-434d-41c1-ba60-b6a7d0269228 2020-08-15 21:31:56.342168 37640 655 Transfer \N \N 1 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-08-15\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.72.196 84dbf26e-64a5-4789-9814-bb60d34a1ae4 2020-08-15 21:32:02.159813 37641 655 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-15\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.72.196 642d73d5-4f36-49f4-b96d-c14390241b21 2020-08-15 21:32:19.028698 37642 183 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.72.196 642d73d5-4f36-49f4-b96d-c14390241b21 2020-08-15 21:32:19.04699 37643 2718 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1005\namount: !ruby/object:BigDecimal 18:0.97659E3\ntax: !ruby/object:BigDecimal 18:0.7241E2\ndiscount: !ruby/object:BigDecimal 18:0.524E3\ntotal: !ruby/object:BigDecimal 18:0.525E3\nstatus: 0\ndate_sale: 2020-08-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1306\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.72.196 73afebeb-1541-4fed-bba2-a529eeca2793 2020-08-15 21:33:05.390243 37644 183 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.72.196 73afebeb-1541-4fed-bba2-a529eeca2793 2020-08-15 21:33:05.420524 37645 2718 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.72.196 b1dc7b9e-93b8-4571-85d7-6159c3266f21 2020-08-15 21:33:10.077765 37646 3650 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1005\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.525E3\nmove_type: '1'\nsale_id: 2718\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1306\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.525E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1306 187.149.72.196 b1dc7b9e-93b8-4571-85d7-6159c3266f21 2020-08-15 21:33:10.098201 37647 2719 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1005\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.649E3\ntotal: !ruby/object:BigDecimal 18:0.65E3\nstatus: 0\ndate_sale: 2020-08-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1307\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.72.196 d15e01c6-45d3-4c3c-b594-70c4f0261b0d 2020-08-15 21:57:38.752494 37648 703 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.72.196 d15e01c6-45d3-4c3c-b594-70c4f0261b0d 2020-08-15 21:57:38.794405 37649 2719 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.72.196 404d97ea-8920-4361-abc1-6ae35707bb40 2020-08-15 21:57:44.117723 37650 3651 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1005\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.65E3\nmove_type: '1'\nsale_id: 2719\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1307\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.65E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1307 187.149.72.196 404d97ea-8920-4361-abc1-6ae35707bb40 2020-08-15 21:57:44.139274 37651 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-07-02 18:03:29.718660000 Z\n- &1 2020-07-11 20:11:11.845412000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-15 22:45:12.401173242 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122761\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\nsign_in_count:\n- 87\n- 88\n 176 \N 189.186.59.156 f7d6c112-9a60-4496-8ef1-cde75bd175df 2020-08-15 22:45:12.409973 37652 25 User \N \N 25 User \N update ---\nunique_session_id:\n- pB9gHbJD4wMDcbLBXbjq\n- dgAFRWSn-k6uxyJyxXjo\n 177 \N 189.186.59.156 f7d6c112-9a60-4496-8ef1-cde75bd175df 2020-08-15 22:45:12.426066 37653 1252 Product \N \N 4 User \N create ---\nsku: ACC-1252\nname: ARE-0096\ndescription: "ARETE CORAZON PELAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3478E2\nprice_sale: !ruby/object:BigDecimal 18:0.11E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE0096.JPG\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1252 fue creado. 189.186.59.156 c577787d-a311-4391-bf5e-d5d4cdcf06c3 2020-08-15 22:48:45.823147 37654 1252 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001252'\n 2 \N 189.186.59.156 c577787d-a311-4391-bf5e-d5d4cdcf06c3 2020-08-15 22:48:45.855952 37655 1253 Product \N \N 4 User \N create ---\nsku: ACC-1253\nname: ARE-0095\ndescription: "ARETE CORAZON MECATE\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3613E2\nprice_sale: !ruby/object:BigDecimal 18:0.11E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE95.JPG\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1253 fue creado. 189.186.59.156 17a5f05e-a4f6-4b98-8f63-29c121715804 2020-08-15 22:52:06.381164 37656 1253 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001253'\n 2 \N 189.186.59.156 17a5f05e-a4f6-4b98-8f63-29c121715804 2020-08-15 22:52:06.407572 37657 1254 Product \N \N 4 User \N create ---\nsku: ACC-1254\nname: ARE-0094\ndescription: "ARETE ESTRELLA NEGRA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3792E2\nprice_sale: !ruby/object:BigDecimal 18:0.11E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE94.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1254 fue creado. 189.186.59.156 36066015-ecd9-4d30-97a5-54f20aca28aa 2020-08-15 22:55:06.606922 37658 1254 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001254'\n 2 \N 189.186.59.156 36066015-ecd9-4d30-97a5-54f20aca28aa 2020-08-15 22:55:06.635323 37659 1255 Product \N \N 4 User \N create ---\nsku: ACC-1255\nname: ARE-0093\ndescription: "ARETE MOÑO CON PERLAS \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.7222E2\nprice_sale: !ruby/object:BigDecimal 18:0.31E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHJQ563520-yellow.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1255 fue creado. 189.186.59.156 a9d8c19d-8122-43cb-9139-af5b893f81df 2020-08-15 22:56:46.053494 37660 1255 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001255'\n 2 \N 189.186.59.156 a9d8c19d-8122-43cb-9139-af5b893f81df 2020-08-15 22:56:46.08306 37661 1256 Product \N \N 4 User \N create ---\nsku: ACC-1256\nname: ARE-0103\ndescription: "ARETE ESTRELLA AMARILLA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4889E2\nprice_sale: !ruby/object:BigDecimal 18:0.179E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHVA573305-yellow.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1256 fue creado. 189.186.59.156 749aa2ae-1abb-4050-8b99-c640509e0d88 2020-08-15 22:58:24.906212 37662 1256 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001256'\n 2 \N 189.186.59.156 749aa2ae-1abb-4050-8b99-c640509e0d88 2020-08-15 22:58:24.935006 37663 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-15 20:05:34.734884000 Z\n- &1 2020-08-15 21:30:01.695150000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-15 22:58:33.032146589 Z\nsign_in_count:\n- 206\n- 207\n 414 \N 187.149.72.196 fd7a6f94-12ae-442c-8c78-0b857f153a97 2020-08-15 22:58:33.038069 37664 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Fs5sFVZEenutfKTQJpF6\n- xEfsqrJZHyATroHxKbaW\n 415 \N 187.149.72.196 fd7a6f94-12ae-442c-8c78-0b857f153a97 2020-08-15 22:58:33.051255 37665 1257 Product \N \N 4 User \N create ---\nsku: ACC-1257\nname: ARE-0102\ndescription: "ARETE CIRCULO CORAZON Y ESTRELLA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6301E2\nprice_sale: !ruby/object:BigDecimal 18:0.249E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHVA573422-yellow.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1257 fue creado. 189.186.59.156 0d165651-3514-4327-8fdc-1c5eebeb1dca 2020-08-15 22:59:35.80005 37667 1258 Product \N \N 4 User \N create ---\nsku: ACC-1258\nname: ARE-0092\ndescription: "ARETE ESTRELLA \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6592E2\nprice_sale: !ruby/object:BigDecimal 18:0.299E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHYT559520-Golden.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1258 fue creado. 189.186.59.156 194a55ad-eb5c-420b-a1e4-c896cf8aed30 2020-08-15 23:01:07.32449 37668 1258 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001258'\n 2 \N 189.186.59.156 194a55ad-eb5c-420b-a1e4-c896cf8aed30 2020-08-15 23:01:07.353006 37669 1259 Product \N \N 4 User \N create ---\nsku: ACC-1259\nname: ARE-0091\ndescription: "ARETE ESTRELLA COLGANTE\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.11542E3\nprice_sale: !ruby/object:BigDecimal 18:0.31E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHKSE29371.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1259 fue creado. 189.186.59.156 6a207542-5d52-41c0-a93b-039cec3a219d 2020-08-15 23:02:15.506104 37670 1259 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001259'\n 2 \N 189.186.59.156 6a207542-5d52-41c0-a93b-039cec3a219d 2020-08-15 23:02:15.534932 37671 352 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: \npurchase_code: CEN-C-59\namount: !ruby/object:BigDecimal 18:0.47429E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.47429E3\nobservations: ''\npurchase_date: 2020-08-15\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-59 por $ 474.29 MXN creada. 189.186.59.156 d0a66154-8d3f-48d1-ab33-5c85dca0f29c 2020-08-15 23:02:56.722117 37672 1045 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.179E3\n- !ruby/object:BigDecimal 18:0.299E3\n 3 El producto ACC-1045 fue modificado. 189.186.59.156 68658f8c-af2a-47f5-8ab6-697307e4bd65 2020-08-15 23:15:31.09115 37673 1058 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.209E3\n- !ruby/object:BigDecimal 18:0.229E3\n 3 El producto ACC-1058 fue modificado. 189.186.59.156 0b0deda3-6f06-4a0c-9887-dcf720f1deab 2020-08-15 23:17:29.074408 37674 1073 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.229E3\n- !ruby/object:BigDecimal 18:0.249E3\n 4 El producto ACC-1073 fue modificado. 189.186.59.156 d8f0ae55-f33b-476d-8796-fd0ae67b5e2f 2020-08-15 23:22:14.543975 37675 705 Product \N \N 4 User \N update ---\nname:\n- ARE-001\n- ARE-0001\n 3 El producto COL-705 fue modificado. 189.186.59.156 3fe66ca3-9be7-4529-9f1e-132aec3267a5 2020-08-15 23:25:56.853229 37676 2720 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1005\namount: !ruby/object:BigDecimal 18:0.449E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.199E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-08-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1308\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.72.196 f740493a-b936-4dfe-97aa-fa77b56b69c4 2020-08-15 23:28:59.344458 37677 741 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.72.196 f740493a-b936-4dfe-97aa-fa77b56b69c4 2020-08-15 23:28:59.373175 37678 2720 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.72.196 e32b1ffe-126e-45dc-9894-8ca5d4038537 2020-08-15 23:29:03.58618 37679 3652 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1005\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 2720\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1308\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1308 187.149.72.196 e32b1ffe-126e-45dc-9894-8ca5d4038537 2020-08-15 23:29:03.60916 37680 1260 Product \N \N 4 User \N create ---\nsku: ACC-1260\nname: ARE-0027\ndescription: ARETES DE CORAZON CON BRILLANTES\nprice_base: !ruby/object:BigDecimal 18:0.9889E2\nprice_sale: !ruby/object:BigDecimal 18:0.379E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE27.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1260 fue creado. 189.186.59.156 08ac74f3-772b-4bfa-a5f3-62c4ae4b9de1 2020-08-15 23:30:59.469084 37681 1260 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001260'\n 2 \N 189.186.59.156 08ac74f3-772b-4bfa-a5f3-62c4ae4b9de1 2020-08-15 23:30:59.498044 37682 2148 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1260\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.59.156 08ac74f3-772b-4bfa-a5f3-62c4ae4b9de1 2020-08-15 23:30:59.524919 37683 353 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-77\namount: !ruby/object:BigDecimal 18:0.9889E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9889E2\nobservations: ''\npurchase_date: 2020-08-15\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-77 por $ 98.89 MXN creada. 189.186.59.156 82ebd7e9-49c0-4b2b-8f6c-fed4d5ec40a5 2020-08-15 23:31:03.777242 37684 2148 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.59.156 82ebd7e9-49c0-4b2b-8f6c-fed4d5ec40a5 2020-08-15 23:31:03.801401 37685 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-14 23:54:20.545766000 Z\n- &1 2020-08-15 19:02:15.195183000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-15 23:33:18.943429715 Z\nsign_in_count:\n- 256\n- 257\n 515 \N 189.186.59.156 1b3019e9-a766-47f2-a2c8-274c8ea78fba 2020-08-15 23:33:18.949983 37686 21 User \N \N 21 User \N update ---\nunique_session_id:\n- xDZUUyPTR-xMzRwnUXqy\n- 69WFeiZfiQ-7XVpyiuY7\n 516 \N 189.186.59.156 1b3019e9-a766-47f2-a2c8-274c8ea78fba 2020-08-15 23:33:18.96699 37687 358 Customer \N \N 21 User \N create ---\nnick_name: MARIANA VALDEZ VECINA\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIANA VALDEZ VECINA fue registrado. 189.186.59.156 e66a5c41-266f-49ce-9e3b-8d5796b88c7c 2020-08-15 23:34:12.887988 37688 358 Customer \N \N 21 User \N update ---\ncredit:\n- false\n- true\ncredit_limit:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E4\n 2 El cliente MARIANA VALDEZ VECINA fue registrado. 189.186.59.156 21df0b06-4576-4fcc-aeb2-702914af4f2e 2020-08-15 23:34:40.14588 37775 1708 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.14.200 5910f601-bbda-4b9f-bbfc-083459215ede 2020-08-17 01:14:36.865211 37689 2721 Sale \N \N 21 User \N create ---\ncustomer_id: 358\nuser_id: 21\nopen_cash_register_id: 1006\namount: !ruby/object:BigDecimal 18:0.148348E4\ntax: !ruby/object:BigDecimal 18:0.16552E3\ndiscount: !ruby/object:BigDecimal 18:0.2E3\ntotal: !ruby/object:BigDecimal 18:0.1449E4\nstatus: 0\ndate_sale: 2020-08-15\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-493\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.59.156 f9ac947b-1910-4f7a-ad26-4615e3b64ef6 2020-08-15 23:37:11.363119 37690 939 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.34E2\n- !ruby/object:BigDecimal 18:0.3E2\n 9 \N 189.186.59.156 f9ac947b-1910-4f7a-ad26-4615e3b64ef6 2020-08-15 23:37:11.395418 37691 876 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 189.186.59.156 f9ac947b-1910-4f7a-ad26-4615e3b64ef6 2020-08-15 23:37:11.427083 37692 3653 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1006\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2721\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: VECINA\n 1 \N 189.186.59.156 c2a50e3d-9800-403c-9d03-c1c30448f440 2020-08-15 23:37:47.559978 37693 2721 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.59.156 c2a50e3d-9800-403c-9d03-c1c30448f440 2020-08-15 23:37:47.58505 37694 3653 CashRegistersMove \N \N 21 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV3-V-493 189.186.59.156 c2a50e3d-9800-403c-9d03-c1c30448f440 2020-08-15 23:37:47.596861 37695 2722 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1005\namount: !ruby/object:BigDecimal 18:0.48521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-08-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1309\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.72.196 c8bd86f7-281b-4f30-9595-e49db3faed1f 2020-08-15 23:41:45.276406 37696 1563 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.72.196 c8bd86f7-281b-4f30-9595-e49db3faed1f 2020-08-15 23:41:45.305005 37697 2722 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.72.196 bc953afd-81c8-4ea2-aaf6-41165a3c253e 2020-08-15 23:41:48.734214 37698 3654 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1005\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2722\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1309\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1309 187.149.72.196 bc953afd-81c8-4ea2-aaf6-41165a3c253e 2020-08-15 23:41:48.755837 37699 4 Contact \N \N 4 User \N create ---\nname: D\nlast_name: D\nphone: ''\nemail: ''\nnotes: ''\nstatus: 1\n 1 \N 189.186.59.156 3654e08d-4c73-4496-8a24-78e335f48f04 2020-08-15 23:43:38.771283 37700 3 Supplier \N \N 4 User \N create ---\nnick_name: NIHIO\nphone: "(159) 510-5518"\nemail: INFO@NAHIO.COM\nnotes: ''\ncontact_id: 4\nstatus: 1\n 1 El proveedor NIHIO fue registrado. 189.186.59.156 3654e08d-4c73-4496-8a24-78e335f48f04 2020-08-15 23:43:38.78828 37701 1261 Product \N \N 4 User \N create ---\nsku: ACC-1261\nname: ARE-0121\ndescription: "ARETE LISTON\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5363E2\nprice_sale: !ruby/object:BigDecimal 18:0.159E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHMD808145-Golden.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1261 fue creado. 189.186.59.156 95aaa42d-6f37-4f13-9d48-54b0ca90cb8b 2020-08-15 23:45:04.739648 37702 1261 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001261'\n 2 \N 189.186.59.156 95aaa42d-6f37-4f13-9d48-54b0ca90cb8b 2020-08-15 23:45:04.772813 37703 1262 Product \N \N 4 User \N create ---\nsku: ACC-1262\nname: ARE-0112\ndescription: "ARETE GOTA \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3769E2\nprice_sale: !ruby/object:BigDecimal 18:0.199E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHRN835213-color.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1262 fue creado. 189.186.59.156 6f3d68c2-8636-4045-8a41-30c9f0ffa86d 2020-08-15 23:47:30.969445 37704 1262 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001262'\n 2 \N 189.186.59.156 6f3d68c2-8636-4045-8a41-30c9f0ffa86d 2020-08-15 23:47:30.999006 37705 1263 Product \N \N 4 User \N create ---\nsku: ACC-1263\nname: ARE-0122\ndescription: "ARETE KISSES\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3971E2\nprice_sale: !ruby/object:BigDecimal 18:0.159E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1263 fue creado. 189.186.59.156 41dd9fd0-f3d1-4651-888e-a631ff45d166 2020-08-15 23:49:03.294833 37706 1263 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001263'\n 2 \N 189.186.59.156 41dd9fd0-f3d1-4651-888e-a631ff45d166 2020-08-15 23:49:03.323941 37707 1030 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1005\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.7144E4\namount_out: !ruby/object:BigDecimal 18:0.69E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.66E4\ncash_fund: !ruby/object:BigDecimal 18:0.1144E4\nphysical_cash: !ruby/object:BigDecimal 18:0.7744E4\nobservations: "ENTREGUE $4000 DE EXCEDENTE A SAMANTHA \\r\\nQUEDO CORTE DE $2600"\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.72.196 b1e775b5-f15b-4e77-b8d5-7cfa0bf4954c 2020-08-15 23:50:58.187706 37708 1005 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.72.196 b1e775b5-f15b-4e77-b8d5-7cfa0bf4954c 2020-08-15 23:50:58.201615 37709 1264 Product \N \N 4 User \N create ---\nsku: ACC-1264\nname: ARE-0123\ndescription: "ARETE PANDA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3578E2\nprice_sale: !ruby/object:BigDecimal 18:0.129E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE123.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1264 fue creado. 189.186.59.156 58a11d6a-0a8b-4ac4-8c05-c3ae064de533 2020-08-15 23:51:55.920329 37711 1265 Product \N \N 4 User \N create ---\nsku: ACC-1265\nname: ARE-0125\ndescription: "ARETE MARIPOSAS PLATA\\t"\nprice_base: !ruby/object:BigDecimal 18:0.5561E2\nprice_sale: !ruby/object:BigDecimal 18:0.289E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHRN835148-White-K.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1265 fue creado. 189.186.59.156 9d9a71b9-6550-4d9c-b992-a9005d43eb2d 2020-08-15 23:53:51.791817 37712 1265 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001265'\n 2 \N 189.186.59.156 9d9a71b9-6550-4d9c-b992-a9005d43eb2d 2020-08-15 23:53:51.823395 37713 1266 Product \N \N 4 User \N create ---\nsku: ACC-1266\nname: ARE-0111\ndescription: "ARETE CADENA PIEDRAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4643E2\nprice_sale: !ruby/object:BigDecimal 18:0.189E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHXI780672-E1140.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1266 fue creado. 189.186.59.156 f62a5a5d-63a3-4096-8768-26a50fb18c36 2020-08-15 23:55:06.134346 37714 1266 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001266'\n 2 \N 189.186.59.156 f62a5a5d-63a3-4096-8768-26a50fb18c36 2020-08-15 23:55:06.165791 37715 1267 Product \N \N 4 User \N create ---\nsku: ACC-1267\nname: ARE-0114\ndescription: "ARETE PERLAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5763E2\nprice_sale: !ruby/object:BigDecimal 18:0.159E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1267 fue creado. 189.186.59.156 b4d4bf82-cbc3-4157-a51f-8cc845a17759 2020-08-15 23:57:30.662036 37716 1267 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001267'\n 2 \N 189.186.59.156 b4d4bf82-cbc3-4157-a51f-8cc845a17759 2020-08-15 23:57:30.700094 37717 1268 Product \N \N 4 User \N create ---\nsku: ACC-1268\nname: ARE-0101\ndescription: "ARETE ESTRELLA PEDRERIA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.9941E2\nprice_sale: !ruby/object:BigDecimal 18:0.319E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHJQ573113-yellow.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1268 fue creado. 189.186.59.156 d60bfb92-4258-4e2b-9e95-b1407773a1e3 2020-08-15 23:59:04.58574 37718 1268 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001268'\n 2 \N 189.186.59.156 d60bfb92-4258-4e2b-9e95-b1407773a1e3 2020-08-15 23:59:04.617004 37719 1269 Product \N \N 4 User \N create ---\nsku: ACC-1269\nname: ARE-0124\ndescription: "ARETE TRABA CON FLORES\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6861E2\nprice_sale: !ruby/object:BigDecimal 18:0.249E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHFT820114-Golden.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1269 fue creado. 189.186.59.156 7faaf721-02de-4199-ba39-7589677fd6e8 2020-08-16 00:00:52.138446 37720 1269 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001269'\n 2 \N 189.186.59.156 7faaf721-02de-4199-ba39-7589677fd6e8 2020-08-16 00:00:52.168592 37721 354 Purchase \N \N 4 User \N create ---\nsupplier_id: 3\npointsale_id: \npurchase_code: CEN-C-60\namount: !ruby/object:BigDecimal 18:0.64051E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.64051E3\nobservations: ''\npurchase_date: 2020-08-15\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-60 por $ 640.51 MXN creada. 189.186.59.156 641db7d5-c408-4058-bdac-d7475badfb51 2020-08-16 00:30:39.487432 37722 1031 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1006\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.2099E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.895E3\nphysical_cash: !ruby/object:BigDecimal 18:0.895E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.59.156 516fdc8b-c844-4345-a829-2268d46da464 2020-08-16 00:31:53.074747 37723 1006 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.59.156 516fdc8b-c844-4345-a829-2268d46da464 2020-08-16 00:31:53.089368 37724 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-15 21:30:01.695150000 Z\n- &1 2020-08-15 22:58:33.032146000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-16 00:58:13.769566520 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122884\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538003\n mask_addr: 4294967295\nsign_in_count:\n- 207\n- 208\n 416 \N 177.228.111.147 b7b9aba9-5e0d-4863-96ac-1c2b8fc6fe9f 2020-08-16 00:58:13.776486 37725 1 User \N \N 1 User \N update ---\nunique_session_id:\n- xEfsqrJZHyATroHxKbaW\n- 8Svyzt76pnofoybh6PtV\n 417 \N 177.228.111.147 b7b9aba9-5e0d-4863-96ac-1c2b8fc6fe9f 2020-08-16 00:58:13.792687 37726 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-15 19:09:15.617390000 Z\n- &1 2020-08-15 20:49:39.942327000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-16 01:29:47.366517191 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934059\n mask_addr: 4294967295\nsign_in_count:\n- 1725\n- 1726\n 3452 \N 200.68.134.107 2d40c97e-1819-4041-b095-aacd34c989d8 2020-08-16 01:29:47.373302 37727 4 User \N \N 4 User \N update ---\nunique_session_id:\n- cNi_Tq7Deq1f4J1A4Ky-\n- WHqurv8cXxFdy8Kzm5Rs\n 3453 \N 200.68.134.107 2d40c97e-1819-4041-b095-aacd34c989d8 2020-08-16 01:29:47.390679 37728 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-15 20:49:39.942327000 Z\n- &1 2020-08-16 01:29:47.366517000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-16 23:54:09.353233369 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934059\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934059\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147108040\n mask_addr: 4294967295\nsign_in_count:\n- 1726\n- 1727\n 3454 \N 187.149.14.200 5028d5c4-3bc8-47f7-a80a-07ac6732f316 2020-08-16 23:54:09.382071 37729 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WHqurv8cXxFdy8Kzm5Rs\n- LsUQ5Ze6HerdKAwhcmgz\n 3455 \N 187.149.14.200 5028d5c4-3bc8-47f7-a80a-07ac6732f316 2020-08-16 23:54:09.424839 37730 1270 Product \N \N 4 User \N create ---\nsku: ACC-1270\nname: ARE-0115\ndescription: "ARETE CORAZON Y FLOR\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.583E2\nprice_sale: !ruby/object:BigDecimal 18:0.229E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHFT808647-green.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1270 fue creado. 187.149.14.200 d20e11ca-bedf-4314-8fa2-19b4a99f3156 2020-08-17 00:01:28.979937 37731 1270 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001270'\n 2 \N 187.149.14.200 d20e11ca-bedf-4314-8fa2-19b4a99f3156 2020-08-17 00:01:29.018309 37732 2149 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1270\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.14.200 d20e11ca-bedf-4314-8fa2-19b4a99f3156 2020-08-17 00:01:29.059317 37733 1271 Product \N \N 4 User \N create ---\nsku: ACC-1271\nname: ARE-0113\ndescription: "ARETE CORAZON CON FLORES COLORES\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.9052E2\nprice_sale: !ruby/object:BigDecimal 18:0.32E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHMS780921-Main-Picture.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1271 fue creado. 187.149.14.200 e0efb6ae-cca3-457e-b0ef-ef59b832c1ba 2020-08-17 00:03:35.233306 37734 1271 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001271'\n 2 \N 187.149.14.200 e0efb6ae-cca3-457e-b0ef-ef59b832c1ba 2020-08-17 00:03:35.267296 37735 2150 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1271\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.14.200 e0efb6ae-cca3-457e-b0ef-ef59b832c1ba 2020-08-17 00:03:35.29835 37736 1272 Product \N \N 4 User \N create ---\nsku: ACC-1272\nname: ARE-0118\ndescription: "ARETE VERDE FLOR Y CORAZON\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6547E2\nprice_sale: !ruby/object:BigDecimal 18:0.299E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHFT808647-green.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1272 fue creado. 187.149.14.200 435a7388-04ab-4f11-8828-dd0545e373f0 2020-08-17 00:05:19.913142 37737 1272 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001272'\n 2 \N 187.149.14.200 435a7388-04ab-4f11-8828-dd0545e373f0 2020-08-17 00:05:19.943961 37738 2151 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1272\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.14.200 435a7388-04ab-4f11-8828-dd0545e373f0 2020-08-17 00:05:19.970964 37739 1273 Product \N \N 4 User \N create ---\nsku: ACC-1273\nname: ARE-0108\ndescription: "ARETE ESTRELLA CON PERLA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.8003E2\nprice_sale: !ruby/object:BigDecimal 18:0.269E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHPS751577-As-shown.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1273 fue creado. 187.149.14.200 a540309d-d268-40a1-9c1e-f89ad0839f7a 2020-08-17 00:07:06.496412 37740 1273 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001273'\n 2 \N 187.149.14.200 a540309d-d268-40a1-9c1e-f89ad0839f7a 2020-08-17 00:07:06.523852 37741 2152 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1273\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.14.200 a540309d-d268-40a1-9c1e-f89ad0839f7a 2020-08-17 00:07:06.549522 37742 1274 Product \N \N 4 User \N create ---\nsku: ACC-1274\nname: ARE-0119\ndescription: "ARETE ESTRELLA CON PERLAS DIF\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6032E2\nprice_sale: !ruby/object:BigDecimal 18:0.269E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHFT808725-Golden.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1274 fue creado. 187.149.14.200 81f6840d-dd17-4915-b952-da1a5d7cb37f 2020-08-17 00:12:42.132424 37743 1274 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001274'\n 2 \N 187.149.14.200 81f6840d-dd17-4915-b952-da1a5d7cb37f 2020-08-17 00:12:42.160012 37744 2153 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1274\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.14.200 81f6840d-dd17-4915-b952-da1a5d7cb37f 2020-08-17 00:12:42.186215 37745 1275 Product \N \N 4 User \N create ---\nsku: ACC-1275\nname: ARE-0116\ndescription: "ARETE LOVE\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5001E2\nprice_sale: !ruby/object:BigDecimal 18:0.229E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE116.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1275 fue creado. 187.149.14.200 f71ffb98-6b4a-455a-af6c-e44ef9d44290 2020-08-17 00:22:16.758379 37746 1275 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001275'\n 2 \N 187.149.14.200 f71ffb98-6b4a-455a-af6c-e44ef9d44290 2020-08-17 00:22:16.787238 37747 2154 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1275\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.14.200 f71ffb98-6b4a-455a-af6c-e44ef9d44290 2020-08-17 00:22:16.813532 37776 1751 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.14.200 ae9812ba-d506-40c9-b975-1633337caf53 2020-08-17 01:15:07.936268 37777 2148 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.14.200 697859a5-4016-463b-af81-c42fb8522bfb 2020-08-17 01:15:34.311759 37748 1276 Product \N \N 4 User \N create ---\nsku: ACC-1276\nname: ARE-0130\ndescription: "ARETE MARIPOSA\\t\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4535E2\nprice_sale: !ruby/object:BigDecimal 18:0.189E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHRN835140-Three-piece-golden-butterfly.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1276 fue creado. 187.149.14.200 eb70bf18-1fe1-4587-a6b5-a2feb62dbb5b 2020-08-17 00:29:43.149568 37749 1276 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001276'\n 2 \N 187.149.14.200 eb70bf18-1fe1-4587-a6b5-a2feb62dbb5b 2020-08-17 00:29:43.177894 37750 2155 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1276\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.14.200 eb70bf18-1fe1-4587-a6b5-a2feb62dbb5b 2020-08-17 00:29:43.203291 37751 355 Purchase \N \N 4 User \N create ---\nsupplier_id: 3\npointsale_id: 1\npurchase_code: PV1-C-139\namount: !ruby/object:BigDecimal 18:0.51861E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.51861E3\nobservations: ''\npurchase_date: 2020-08-16\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-139 por $ 518.61 MXN creada. 187.149.14.200 cda3612c-341c-459f-a015-2e84faf0b7a6 2020-08-17 00:30:04.071425 37752 2149 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.14.200 cda3612c-341c-459f-a015-2e84faf0b7a6 2020-08-17 00:30:04.094985 37753 2150 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.14.200 cda3612c-341c-459f-a015-2e84faf0b7a6 2020-08-17 00:30:04.12953 37754 2151 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.14.200 cda3612c-341c-459f-a015-2e84faf0b7a6 2020-08-17 00:30:04.158915 37755 2152 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.14.200 cda3612c-341c-459f-a015-2e84faf0b7a6 2020-08-17 00:30:04.188724 37756 2156 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1269\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.14.200 cda3612c-341c-459f-a015-2e84faf0b7a6 2020-08-17 00:30:04.215969 37757 2153 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.14.200 cda3612c-341c-459f-a015-2e84faf0b7a6 2020-08-17 00:30:04.24679 37758 2154 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.14.200 cda3612c-341c-459f-a015-2e84faf0b7a6 2020-08-17 00:30:04.27133 37759 2155 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.14.200 cda3612c-341c-459f-a015-2e84faf0b7a6 2020-08-17 00:30:04.305568 37760 1276 Product \N \N 4 User \N update ---\nname:\n- ARE-0130\n- ARE-0127\n 3 El producto ACC-1276 fue modificado. 187.149.14.200 95bda8ed-b277-4d6a-b647-d6885e3b0099 2020-08-17 00:33:56.58838 37761 1270 Product \N \N 4 User \N update ---\ndescription:\n- "ARETE CORAZON Y FLOR\\r\\n"\n- "ARETE CORAZON \\r\\n"\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '1270'\n is_parent: false\n sku: ACC-1270\n name: ARE-0115\n description: "ARETE CORAZON \\r\\n"\n price_base: '58.3'\n price_sale: '229.0'\n img_product: ARE115.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001270'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-17 00:01:28.965107'\n updated_at: &12 2020-08-17 00:44:03.640306267 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1270'\n sku: ACC-1270\n name: ARE-0115\n description: "ARETE CORAZON Y FLOR\\r\\n"\n price_base: '58.30'\n price_sale: '229.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-17 00:01:28.965107'\n updated_at: '2020-08-17 00:01:29.015434'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001270'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: NHFT808647-green.jpg\n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1270'\n type: *3\n value: 1270\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1270\n type: *7\n value: ACC-1270\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ARE-0115\n type: *8\n value: ARE-0115\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "ARETE CORAZON \\r\\n"\n type: *6\n value: "ARETE CORAZON \\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '58.3'\n type: *1\n value: !ruby/object:BigDecimal 18:0.583E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '229.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.229E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: ARE115.jpg\n type: *2\n value: ARE115.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001270'\n type: *2\n value: '0001270'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-17 00:01:28.965107'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n file: &15 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/NHFT808647-green.jpg"\n original_filename: \n content_type: \n versions: &16\n :thumb: &18 !ruby/object:ImageUploader::Uploader55922200\n model: *14\n mounted_as: :img_product\n parent_version: &17 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n file: *15\n versions: *16\n storage: &21 !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_NHFT808647-green.jpg"\n original_filename: \n content_type: \n versions: {}\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n :medium: &19 !ruby/object:ImageUploader::Uploader55909480\n model: *14\n mounted_as: :img_product\n parent_version: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_NHFT808647-green.jpg"\n original_filename: \n content_type: \n versions: {}\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n :small: &20 !ruby/object:ImageUploader::Uploader55904880\n model: *14\n mounted_as: :img_product\n parent_version: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_NHFT808647-green.jpg"\n original_filename: \n content_type: \n versions: {}\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *20\n storage: *21\n- ARE115.jpg\n 3 El producto ACC-1270 fue modificado. 187.149.14.200 7e8d4481-8c79-4676-a834-72de16997572 2020-08-17 00:44:03.688536 37762 1272 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '1272'\n is_parent: false\n sku: ACC-1272\n name: ARE-0118\n description: "ARETE VERDE FLOR Y CORAZON\\r\\n"\n price_base: '65.47'\n price_sale: '299.0'\n img_product: NHFT808647-green.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001272'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-17 00:05:19.90067'\n updated_at: &12 2020-08-17 00:45:36.249715733 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1272'\n sku: ACC-1272\n name: ARE-0118\n description: "ARETE VERDE FLOR Y CORAZON\\r\\n"\n price_base: '65.47'\n price_sale: '299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-17 00:05:19.90067'\n updated_at: '2020-08-17 00:05:19.941322'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001272'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: NHFT808647-green.jpg\n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1272'\n type: *3\n value: 1272\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1272\n type: *7\n value: ACC-1272\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ARE-0118\n type: *8\n value: ARE-0118\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "ARETE VERDE FLOR Y CORAZON\\r\\n"\n type: *6\n value: "ARETE VERDE FLOR Y CORAZON\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '65.47'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6547E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.299E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: NHFT808647-green.jpg\n type: *2\n value: NHFT808647-green.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001272'\n type: *2\n value: '0001272'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-17 00:05:19.90067'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n file: &15 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/NHFT808647-green.jpg"\n original_filename: \n content_type: \n versions: &16\n :thumb: &18 !ruby/object:ImageUploader::Uploader55922200\n model: *14\n mounted_as: :img_product\n parent_version: &17 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n file: *15\n versions: *16\n storage: &21 !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_NHFT808647-green.jpg"\n original_filename: \n content_type: \n versions: {}\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n :medium: &19 !ruby/object:ImageUploader::Uploader55909480\n model: *14\n mounted_as: :img_product\n parent_version: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_NHFT808647-green.jpg"\n original_filename: \n content_type: \n versions: {}\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n :small: &20 !ruby/object:ImageUploader::Uploader55904880\n model: *14\n mounted_as: :img_product\n parent_version: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_NHFT808647-green.jpg"\n original_filename: \n content_type: \n versions: {}\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *20\n storage: *21\n- NHFT808647-green.jpg\n 3 El producto ACC-1272 fue modificado. 187.149.14.200 c27ed49f-b8da-4dec-bae2-3b58da7e08e6 2020-08-17 00:45:36.294461 37763 656 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-08-16\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.14.200 fc437e03-4768-4cc0-b8f1-62661f3261d9 2020-08-17 00:50:01.690674 37764 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-07-11 20:11:11.845412000 Z\n- &1 2020-08-15 22:45:12.401173000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-17 00:50:23.829441507 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101421\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147108040\n mask_addr: 4294967295\nsign_in_count:\n- 88\n- 89\n 178 \N 187.149.14.200 1b09cfc6-79bf-4e2f-b093-fc26c09ec786 2020-08-17 00:50:23.838281 37765 25 User \N \N 25 User \N update ---\nunique_session_id:\n- dgAFRWSn-k6uxyJyxXjo\n- JPmf3fc696sjiEhchKAs\n 179 \N 187.149.14.200 1b09cfc6-79bf-4e2f-b093-fc26c09ec786 2020-08-17 00:50:23.856006 37766 656 Transfer \N \N 25 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 25\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-16\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.14.200 80ad7715-6399-4deb-a700-8767eb83661c 2020-08-17 00:50:45.80898 37767 2157 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1259\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.14.200 80ad7715-6399-4deb-a700-8767eb83661c 2020-08-17 00:50:45.830982 37768 2158 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1263\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.14.200 80ad7715-6399-4deb-a700-8767eb83661c 2020-08-17 00:50:45.853872 37769 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-16 01:29:47.366517000 Z\n- &1 2020-08-16 23:54:09.353233000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-17 00:50:58.693108909 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934059\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147108040\n mask_addr: 4294967295\nsign_in_count:\n- 1727\n- 1728\n 3456 \N 187.149.14.200 9fd918c2-008b-4887-bf79-b2c248eebfd3 2020-08-17 00:50:58.703783 37770 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LsUQ5Ze6HerdKAwhcmgz\n- 1waXMn8NWy34wG4oFKRU\n 3457 \N 187.149.14.200 9fd918c2-008b-4887-bf79-b2c248eebfd3 2020-08-17 00:50:58.727999 37771 1263 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1263'\n is_parent: false\n sku: ACC-1263\n name: ARE-0122\n description: "ARETE KISSES\\r\\n"\n price_base: '39.71'\n price_sale: '159.0'\n img_product: NHLA826246-Multicolor.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001263'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-15 23:49:03.283472'\n updated_at: &12 2020-08-17 00:52:31.562870683 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1263'\n sku: ACC-1263\n name: ARE-0122\n description: "ARETE KISSES\\r\\n"\n price_base: '39.71'\n price_sale: '159.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-15 23:49:03.283472'\n updated_at: '2020-08-15 23:49:03.32126'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001263'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1263'\n type: *3\n value: 1263\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1263\n type: *7\n value: ACC-1263\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ARE-0122\n type: *8\n value: ARE-0122\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "ARETE KISSES\\r\\n"\n type: *6\n value: "ARETE KISSES\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '39.71'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3971E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '159.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.159E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: NHLA826246-Multicolor.jpg\n type: *2\n value: NHLA826246-Multicolor.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001263'\n type: *2\n value: '0001263'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-15 23:49:03.283472'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- NHLA826246-Multicolor.jpg\n 3 El producto ACC-1263 fue modificado. 187.149.14.200 4cd4d7c5-b5bb-4b21-9a3c-125c1fc55467 2020-08-17 00:52:31.609365 37772 1747 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.14.200 fd6f1ae1-c191-4ae6-8387-6178145b0045 2020-08-17 01:10:58.044363 37773 1808 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.14.200 91438fea-c87f-4dc5-bdec-669e4e79f8b4 2020-08-17 01:13:44.094379 37774 1708 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.14.200 cc56bec1-0661-4315-afa8-a0ac999d55c1 2020-08-17 01:14:17.614406 37778 1744 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.14.200 ae25e515-2d10-480b-9fc4-7d74ddabd28e 2020-08-17 01:15:47.835254 37779 1699 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.14.200 e8b3c414-c15c-4198-8ab1-4660ee9198b2 2020-08-17 01:16:05.634612 37780 1733 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.14.200 d0b0a4cd-140a-44e5-9d62-abe6fed373d1 2020-08-17 01:16:16.540819 37781 876 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 187.149.14.200 a5043903-facc-429b-9632-3ad636eab3c8 2020-08-17 01:16:31.304249 37782 876 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.14.200 f82afe0d-74dc-434e-90e4-9efeedaf4e8c 2020-08-17 01:16:37.252773 37783 876 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 11 \N 187.149.14.200 0a586a95-85fb-4211-8944-c9243a3aea67 2020-08-17 01:16:58.947527 37784 1186 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.14.200 9087b0be-5600-47b6-8e45-79f5cec1dae3 2020-08-17 01:17:14.881502 37785 1700 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.14.200 86a66328-15b8-44bb-bc4b-f9369ac03d1d 2020-08-17 01:17:26.98252 37786 1804 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.14.200 444f0dfe-1ab7-4e2b-a3af-8483017217eb 2020-08-17 01:17:46.657327 37787 657 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-08-16\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.14.200 9e3d34a0-7bf7-4865-b41c-0dd564a28942 2020-08-17 01:18:18.520223 37788 1710 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.14.200 c2f4f008-5055-4c44-8de2-91b7a0b18199 2020-08-17 01:20:53.121054 37789 1729 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.14.200 e642d11a-c78d-481c-8f07-45c0ed621728 2020-08-17 01:21:04.986829 37790 1705 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.14.200 31d3d2b4-6fcc-462d-8441-c7563c59e74f 2020-08-17 01:21:25.141607 37791 658 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-08-16\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.14.200 e1a8bd92-1c2a-49d1-b47b-1fb056a015bb 2020-08-17 01:21:29.481619 37792 1277 Product \N \N 4 User \N create ---\nsku: ACC-1277\nname: DIA-0136\ndescription: "DIADEMA PIEDRAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6861E2\nprice_sale: !ruby/object:BigDecimal 18:0.239E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHMD818208-color.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1277 fue creado. 187.149.14.200 a0b8da18-4457-473f-985f-e170b52ef1a7 2020-08-17 01:52:28.634386 37793 1277 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001277'\n 2 \N 187.149.14.200 a0b8da18-4457-473f-985f-e170b52ef1a7 2020-08-17 01:52:28.680184 37794 2159 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1277\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.14.200 a0b8da18-4457-473f-985f-e170b52ef1a7 2020-08-17 01:52:28.71866 37795 356 Purchase \N \N 4 User \N create ---\nsupplier_id: 3\npointsale_id: 1\npurchase_code: PV1-C-140\namount: !ruby/object:BigDecimal 18:0.6861E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6861E2\nobservations: ''\npurchase_date: 2020-08-16\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-140 por $ 68.61 MXN creada. 187.149.14.200 6c026b84-040c-45c8-be26-42a073ef3a8b 2020-08-17 01:52:36.341085 37796 2159 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.14.200 6c026b84-040c-45c8-be26-42a073ef3a8b 2020-08-17 01:52:36.372967 37797 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-14 16:09:53.876872000 Z\n- &1 2020-08-15 16:05:04.682253000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-17 16:29:46.067752591 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183096771\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122884\n mask_addr: 4294967295\nsign_in_count:\n- 615\n- 616\n 1235 \N 187.149.72.196 5580d80a-b6e9-41e9-99b6-d09eb37e4aa1 2020-08-17 16:29:46.10063 37798 2 User \N \N 2 User \N update ---\nunique_session_id:\n- nVnzPpFFGqXCzESywqzo\n- Zyg6KCDzxx8AJefXnXKA\n 1236 \N 187.149.72.196 5580d80a-b6e9-41e9-99b6-d09eb37e4aa1 2020-08-17 16:29:46.12752 37799 1007 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1144E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1144.0 187.149.72.196 e58aff3f-8135-4249-a4e9-707bf5aee54b 2020-08-17 16:30:51.249902 37800 2723 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1007\namount: !ruby/object:BigDecimal 18:0.250044E4\ntax: !ruby/object:BigDecimal 18:0.9655E2\ndiscount: !ruby/object:BigDecimal 18:0.1547E4\ntotal: !ruby/object:BigDecimal 18:0.104999E4\nstatus: 0\ndate_sale: 2020-08-17\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1310\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.72.196 f0e74f8f-ced9-4e03-87e5-1f24a54a30bc 2020-08-17 16:33:56.101623 37801 162 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.72.196 f0e74f8f-ced9-4e03-87e5-1f24a54a30bc 2020-08-17 16:33:56.132666 37802 535 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.72.196 f0e74f8f-ced9-4e03-87e5-1f24a54a30bc 2020-08-17 16:33:56.167683 37803 670 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.72.196 f0e74f8f-ced9-4e03-87e5-1f24a54a30bc 2020-08-17 16:33:56.19556 37804 2723 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.72.196 fc4a23b1-3b23-477c-aadc-e5787a43da41 2020-08-17 16:34:05.941292 37828 2168 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1254\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 3527b557-e36e-4457-9853-b59239eb9538 2020-08-17 18:57:32.52781 37805 3655 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1007\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.104999E4\nmove_type: '1'\nsale_id: 2723\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1310\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.104999E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1310 187.149.72.196 fc4a23b1-3b23-477c-aadc-e5787a43da41 2020-08-17 16:34:05.964395 37806 2724 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1007\namount: !ruby/object:BigDecimal 18:0.283015E4\ntax: !ruby/object:BigDecimal 18:0.7585E2\ndiscount: !ruby/object:BigDecimal 18:0.2356E4\ntotal: !ruby/object:BigDecimal 18:0.55E3\nstatus: 0\ndate_sale: 2020-08-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1311\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.72.196 caa3124b-a531-4658-b31f-ad641cb63435 2020-08-17 16:56:06.451056 37807 215 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.72.196 caa3124b-a531-4658-b31f-ad641cb63435 2020-08-17 16:56:06.494183 37808 233 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.72.196 caa3124b-a531-4658-b31f-ad641cb63435 2020-08-17 16:56:06.5277 37809 204 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.72.196 caa3124b-a531-4658-b31f-ad641cb63435 2020-08-17 16:56:06.552361 37810 78 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.72.196 caa3124b-a531-4658-b31f-ad641cb63435 2020-08-17 16:56:06.575466 37811 2724 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.72.196 18eb6336-40da-4936-b3a1-d0c8d857f8cd 2020-08-17 16:56:10.205573 37812 3656 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1007\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.55E3\nmove_type: '1'\nsale_id: 2724\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1311\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.55E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1311 187.149.72.196 18eb6336-40da-4936-b3a1-d0c8d857f8cd 2020-08-17 16:56:10.241448 37813 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-16 23:54:09.353233000 Z\n- &1 2020-08-17 00:50:58.693108000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-17 18:43:56.174598270 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147108040\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103364\n mask_addr: 4294967295\nsign_in_count:\n- 1728\n- 1729\n 3458 \N 189.186.77.132 478d7bd7-6e9b-427a-a3aa-642d4326aabe 2020-08-17 18:43:56.182834 37814 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1waXMn8NWy34wG4oFKRU\n- xBGA472xrKSnc_NTQDrr\n 3459 \N 189.186.77.132 478d7bd7-6e9b-427a-a3aa-642d4326aabe 2020-08-17 18:43:56.200401 37815 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-15 19:02:15.195183000 Z\n- &1 2020-08-15 23:33:18.943429000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-17 18:44:13.983202567 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103364\n mask_addr: 4294967295\nsign_in_count:\n- 257\n- 258\n 517 \N 189.186.77.132 b10237eb-d9c6-4d47-b2d8-fa78d428d578 2020-08-17 18:44:13.989834 37816 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 69WFeiZfiQ-7XVpyiuY7\n- mTdbrKX3gowcHa9ugNqc\n 518 \N 189.186.77.132 b10237eb-d9c6-4d47-b2d8-fa78d428d578 2020-08-17 18:44:14.004517 37817 1008 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.895E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 895.0 189.186.77.132 61f4300e-7ecf-4d6e-8b17-134a9b3ad1c4 2020-08-17 18:46:48.521412 37818 659 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-08-17\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.77.132 6d3a2f00-3dc9-4758-8214-7b5d7f65b251 2020-08-17 18:56:31.703965 37819 659 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-17\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.77.132 3527b557-e36e-4457-9853-b59239eb9538 2020-08-17 18:57:32.271851 37820 2160 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1265\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 3527b557-e36e-4457-9853-b59239eb9538 2020-08-17 18:57:32.306286 37821 2161 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1252\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 3527b557-e36e-4457-9853-b59239eb9538 2020-08-17 18:57:32.363175 37822 2162 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1263\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 3527b557-e36e-4457-9853-b59239eb9538 2020-08-17 18:57:32.385789 37823 2163 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1256\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 3527b557-e36e-4457-9853-b59239eb9538 2020-08-17 18:57:32.407755 37824 2164 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1257\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 3527b557-e36e-4457-9853-b59239eb9538 2020-08-17 18:57:32.429095 37825 2165 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1267\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 3527b557-e36e-4457-9853-b59239eb9538 2020-08-17 18:57:32.45198 37826 2166 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1268\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 3527b557-e36e-4457-9853-b59239eb9538 2020-08-17 18:57:32.477491 37827 2167 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1255\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 3527b557-e36e-4457-9853-b59239eb9538 2020-08-17 18:57:32.503283 37829 2169 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1266\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 3527b557-e36e-4457-9853-b59239eb9538 2020-08-17 18:57:32.552769 37830 2170 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1264\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 3527b557-e36e-4457-9853-b59239eb9538 2020-08-17 18:57:32.594876 37831 2171 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1262\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 3527b557-e36e-4457-9853-b59239eb9538 2020-08-17 18:57:32.618397 37832 2172 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1258\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 3527b557-e36e-4457-9853-b59239eb9538 2020-08-17 18:57:32.642357 37833 1278 Product \N \N 4 User \N create ---\nsku: ACC-1278\nname: ARE-0100\ndescription: "AREE ESTRELLA ISRAEL Y LUNA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.8921E2\nprice_sale: !ruby/object:BigDecimal 18:0.299E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHJQ573107-color.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1278 fue creado. 189.186.77.132 b9279add-5fbb-4203-9352-539b4c9cfbaa 2020-08-17 19:02:59.049828 37834 1278 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001278'\n 2 \N 189.186.77.132 b9279add-5fbb-4203-9352-539b4c9cfbaa 2020-08-17 19:02:59.086564 37835 2173 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1278\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 b9279add-5fbb-4203-9352-539b4c9cfbaa 2020-08-17 19:02:59.118021 37836 1279 Product \N \N 4 User \N create ---\nsku: ACC-1279\nname: ARE-0120\ndescription: "ARETE VESTIDO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6793E2\nprice_sale: !ruby/object:BigDecimal 18:0.269E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHFT808731-black.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1279 fue creado. 189.186.77.132 1d94b7e2-04d7-4cbd-9359-14a645bb736c 2020-08-17 19:03:47.936292 37837 1279 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001279'\n 2 \N 189.186.77.132 1d94b7e2-04d7-4cbd-9359-14a645bb736c 2020-08-17 19:03:47.968164 37838 2174 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1279\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 1d94b7e2-04d7-4cbd-9359-14a645bb736c 2020-08-17 19:03:47.994924 37839 1280 Product \N \N 4 User \N create ---\nsku: ACC-1280\nname: ARE-0110\ndescription: "ARETE DONA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4531E2\nprice_sale: !ruby/object:BigDecimal 18:0.149E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHSC768069-3520mm-3813mm.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1280 fue creado. 189.186.77.132 41c1d49a-790a-49ce-8de9-6b17c38d10cb 2020-08-17 19:04:48.814088 37840 1280 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001280'\n 2 \N 189.186.77.132 41c1d49a-790a-49ce-8de9-6b17c38d10cb 2020-08-17 19:04:48.844068 37841 2175 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1280\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 41c1d49a-790a-49ce-8de9-6b17c38d10cb 2020-08-17 19:04:48.870384 37842 1281 Product \N \N 4 User \N create ---\nsku: ACC-1281\nname: ARE-0097\ndescription: "ARETE CORAZON NEGRO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.3478E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: are97.JPG\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1281 fue creado. 189.186.77.132 e8b9337b-cecd-4e6a-9867-1f030dc16d08 2020-08-17 19:07:14.393753 37843 1281 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001281'\n 2 \N 189.186.77.132 e8b9337b-cecd-4e6a-9867-1f030dc16d08 2020-08-17 19:07:14.422418 37844 2176 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1281\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 e8b9337b-cecd-4e6a-9867-1f030dc16d08 2020-08-17 19:07:14.448176 37845 1282 Product \N \N 4 User \N create ---\nsku: ACC-1282\nname: ARE-0104\ndescription: "ARETE CORAZONCITOS PLATA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.7174E2\nprice_sale: !ruby/object:BigDecimal 18:0.199E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE104.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1282 fue creado. 189.186.77.132 a194b763-0ece-43b4-ac6b-2e8dcd1c36e3 2020-08-17 19:10:23.083765 37846 1282 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001282'\n 2 \N 189.186.77.132 a194b763-0ece-43b4-ac6b-2e8dcd1c36e3 2020-08-17 19:10:23.117156 37847 2177 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1282\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 a194b763-0ece-43b4-ac6b-2e8dcd1c36e3 2020-08-17 19:10:23.147145 37867 357 Purchase \N \N 4 User \N create ---\nsupplier_id: 3\npointsale_id: 3\npurchase_code: PV3-C-78\namount: !ruby/object:BigDecimal 18:0.76679E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.76679E3\nobservations: ''\npurchase_date: 2020-08-17\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-78 por $ 766.79 MXN creada. 189.186.77.132 6522813d-9b8b-4acc-a462-e1d07ec4e322 2020-08-17 19:22:09.299792 37848 1283 Product \N \N 4 User \N create ---\nsku: ACC-1283\nname: ARE-0129\ndescription: "ARETE COCHA ROSA Y BLANCA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4173E2\nprice_sale: !ruby/object:BigDecimal 18:0.149E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHLA834957-powder.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1283 fue creado. 189.186.77.132 16c6cf8b-9273-4dc3-8423-dec82ea88b7b 2020-08-17 19:11:22.283206 37849 1283 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001283'\n 2 \N 189.186.77.132 16c6cf8b-9273-4dc3-8423-dec82ea88b7b 2020-08-17 19:11:22.311472 37850 2178 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1283\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 16c6cf8b-9273-4dc3-8423-dec82ea88b7b 2020-08-17 19:11:22.337009 37851 1284 Product \N \N 4 User \N create ---\nsku: ACC-1284\nname: ARE-0099\ndescription: "ARETE CIRCULO NEGRO PIEDRAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4397E2\nprice_sale: !ruby/object:BigDecimal 18:0.169E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE99.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1284 fue creado. 189.186.77.132 2f5d992d-59d7-4ca1-a56f-041f5bc737a4 2020-08-17 19:13:54.166815 37852 1284 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001284'\n 2 \N 189.186.77.132 2f5d992d-59d7-4ca1-a56f-041f5bc737a4 2020-08-17 19:13:54.197117 37853 2179 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1284\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 2f5d992d-59d7-4ca1-a56f-041f5bc737a4 2020-08-17 19:13:54.223412 37854 2725 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1008\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-08-17\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-494\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.77.132 7cb62fe8-c3fe-4e74-9ff8-d9ff6d94d19f 2020-08-17 19:16:11.74688 37855 1822 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 51 \N 189.186.77.132 7cb62fe8-c3fe-4e74-9ff8-d9ff6d94d19f 2020-08-17 19:16:11.774289 37856 2725 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.77.132 855b7f34-9aaa-48ff-ae92-0228ea11fb95 2020-08-17 19:16:58.267924 37857 3657 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1008\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 2725\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-494\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-494 189.186.77.132 855b7f34-9aaa-48ff-ae92-0228ea11fb95 2020-08-17 19:16:58.290638 37858 1285 Product \N \N 4 User \N create ---\nsku: ACC-1285\nname: ARE-0128\ndescription: "ARETE FLOR PIEDRA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.6032E2\nprice_sale: !ruby/object:BigDecimal 18:0.299E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHFT835264-white-925-silver.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1285 fue creado. 189.186.77.132 38c007f4-3515-424c-b34f-d485a2ef2895 2020-08-17 19:19:34.894119 37859 1285 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001285'\n 2 \N 189.186.77.132 38c007f4-3515-424c-b34f-d485a2ef2895 2020-08-17 19:19:34.923943 37860 2180 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1285\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 38c007f4-3515-424c-b34f-d485a2ef2895 2020-08-17 19:19:34.951548 37861 1286 Product \N \N 4 User \N create ---\nsku: ACC-1286\nname: ARE-0127\ndescription: "ARETE DIAMANTE ROSA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5565E2\nprice_sale: !ruby/object:BigDecimal 18:0.21E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHXR802184-Rose-Red-1930.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1286 fue creado. 189.186.77.132 10055669-2e4e-4dae-a8a0-e4279cb257a4 2020-08-17 19:20:36.573529 37862 1286 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001286'\n 2 \N 189.186.77.132 10055669-2e4e-4dae-a8a0-e4279cb257a4 2020-08-17 19:20:36.604277 37863 2181 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1286\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 10055669-2e4e-4dae-a8a0-e4279cb257a4 2020-08-17 19:20:36.633898 37864 1287 Product \N \N 4 User \N create ---\nsku: ACC-1287\nname: ARE-0126\ndescription: "ARETE CORAZON PIEDRA \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4701E2\nprice_sale: !ruby/object:BigDecimal 18:0.189E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1287 fue creado. 189.186.77.132 dd98c5f0-79d1-41ba-96b8-d3f15086de23 2020-08-17 19:22:05.544037 37865 1287 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001287'\n 2 \N 189.186.77.132 dd98c5f0-79d1-41ba-96b8-d3f15086de23 2020-08-17 19:22:05.574399 37866 2182 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1287\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 dd98c5f0-79d1-41ba-96b8-d3f15086de23 2020-08-17 19:22:05.60014 37868 2173 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.77.132 6522813d-9b8b-4acc-a462-e1d07ec4e322 2020-08-17 19:22:09.32148 37869 2174 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.77.132 6522813d-9b8b-4acc-a462-e1d07ec4e322 2020-08-17 19:22:09.346501 37870 2175 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.77.132 6522813d-9b8b-4acc-a462-e1d07ec4e322 2020-08-17 19:22:09.370705 37871 2176 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.77.132 6522813d-9b8b-4acc-a462-e1d07ec4e322 2020-08-17 19:22:09.395135 37872 2177 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.77.132 6522813d-9b8b-4acc-a462-e1d07ec4e322 2020-08-17 19:22:09.420257 37873 2178 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.77.132 6522813d-9b8b-4acc-a462-e1d07ec4e322 2020-08-17 19:22:09.444038 37874 2183 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1270\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 6522813d-9b8b-4acc-a462-e1d07ec4e322 2020-08-17 19:22:09.469825 37875 2184 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1271\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 6522813d-9b8b-4acc-a462-e1d07ec4e322 2020-08-17 19:22:09.498026 37876 2179 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.77.132 6522813d-9b8b-4acc-a462-e1d07ec4e322 2020-08-17 19:22:09.522468 37877 2180 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.77.132 6522813d-9b8b-4acc-a462-e1d07ec4e322 2020-08-17 19:22:09.545102 37878 2181 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.77.132 6522813d-9b8b-4acc-a462-e1d07ec4e322 2020-08-17 19:22:09.567705 37879 2185 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1274\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 6522813d-9b8b-4acc-a462-e1d07ec4e322 2020-08-17 19:22:09.593889 37880 2182 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.77.132 6522813d-9b8b-4acc-a462-e1d07ec4e322 2020-08-17 19:22:09.61766 37881 1288 Product \N \N 4 User \N create ---\nsku: ACC-1288\nname: ARE-0119\ndescription: "ARETE ESTRELLITAS PEQUEÑAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5629E2\nprice_sale: !ruby/object:BigDecimal 18:0.229E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHVA756425-yellow.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1288 fue creado. 189.186.77.132 86397c30-9841-427c-b0cd-97e9f9a90018 2020-08-17 19:23:45.092736 37882 1288 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001288'\n 2 \N 189.186.77.132 86397c30-9841-427c-b0cd-97e9f9a90018 2020-08-17 19:23:45.124331 37883 2186 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1288\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 86397c30-9841-427c-b0cd-97e9f9a90018 2020-08-17 19:23:45.155488 37884 1289 Product \N \N 4 User \N create ---\nsku: ACC-1289\nname: ARE-0098\ndescription: "ARETE ESTRELLA PIEDRAS Y PERLAS\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5629E2\nprice_sale: !ruby/object:BigDecimal 18:0.299E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE98.png\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1289 fue creado. 189.186.77.132 482b3a79-1a0a-471a-a845-fe01ad456b2a 2020-08-17 19:26:11.090978 37885 1289 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001289'\n 2 \N 189.186.77.132 482b3a79-1a0a-471a-a845-fe01ad456b2a 2020-08-17 19:26:11.120104 37886 2187 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1289\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 482b3a79-1a0a-471a-a845-fe01ad456b2a 2020-08-17 19:26:11.147149 37887 1290 Product \N \N 4 User \N create ---\nsku: ACC-1290\nname: ARE-0107\ndescription: "ARETE CORAZON COLORES \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.5113E2\nprice_sale: !ruby/object:BigDecimal 18:0.199E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE107.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1290 fue creado. 189.186.77.132 e262221e-abc5-4d1a-8a12-9213644a7d64 2020-08-17 19:27:37.304419 37888 1290 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001290'\n 2 \N 189.186.77.132 e262221e-abc5-4d1a-8a12-9213644a7d64 2020-08-17 19:27:37.333761 37889 2188 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1290\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 e262221e-abc5-4d1a-8a12-9213644a7d64 2020-08-17 19:27:37.360082 37890 1291 Product \N \N 4 User \N create ---\nsku: ACC-1291\nname: ARE-0106\ndescription: "ARETE CORAZON CUARZO\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4105E2\nprice_sale: !ruby/object:BigDecimal 18:0.239E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1291 fue creado. 189.186.77.132 9d856c12-534f-47d1-b230-455bdbcaacd2 2020-08-17 19:28:58.892489 37891 1291 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001291'\n 2 \N 189.186.77.132 9d856c12-534f-47d1-b230-455bdbcaacd2 2020-08-17 19:28:58.920646 37892 2189 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1291\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 9d856c12-534f-47d1-b230-455bdbcaacd2 2020-08-17 19:28:58.947648 37893 358 Purchase \N \N 4 User \N create ---\nsupplier_id: 3\npointsale_id: 3\npurchase_code: PV3-C-79\namount: !ruby/object:BigDecimal 18:0.27023E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.27023E3\nobservations: ''\npurchase_date: 2020-08-17\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-79 por $ 270.23 MXN creada. 189.186.77.132 7b017aef-9c9c-4952-aa73-a7b0f17e126e 2020-08-17 19:29:07.115415 37894 2190 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1272\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 7b017aef-9c9c-4952-aa73-a7b0f17e126e 2020-08-17 19:29:07.141498 37895 2186 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.77.132 7b017aef-9c9c-4952-aa73-a7b0f17e126e 2020-08-17 19:29:07.167889 37896 2187 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.77.132 7b017aef-9c9c-4952-aa73-a7b0f17e126e 2020-08-17 19:29:07.192832 37897 2188 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.77.132 7b017aef-9c9c-4952-aa73-a7b0f17e126e 2020-08-17 19:29:07.216672 37898 2189 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.77.132 7b017aef-9c9c-4952-aa73-a7b0f17e126e 2020-08-17 19:29:07.239559 37899 359 Purchase \N \N 4 User \N create ---\nsupplier_id: 3\npointsale_id: 3\npurchase_code: PV3-C-80\namount: !ruby/object:BigDecimal 18:0.6861E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6861E2\nobservations: ''\npurchase_date: 2020-08-17\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-80 por $ 68.61 MXN creada. 189.186.77.132 9385376a-7f75-4405-b928-d311f7778f2f 2020-08-17 19:29:42.88119 37900 2191 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1269\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 9385376a-7f75-4405-b928-d311f7778f2f 2020-08-17 19:29:42.906094 37901 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-15 22:58:33.032146000 Z\n- &1 2020-08-16 00:58:13.769566000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-17 19:34:09.450076695 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122884\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538003\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538003\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122884\n mask_addr: 4294967295\nsign_in_count:\n- 208\n- 209\n 418 \N 187.149.72.196 7ba48665-9277-4a3f-b5ae-df4e09b72226 2020-08-17 19:34:09.459979 37902 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 8Svyzt76pnofoybh6PtV\n- RmLR2vxVZM8-iP2-HwKm\n 419 \N 187.149.72.196 7ba48665-9277-4a3f-b5ae-df4e09b72226 2020-08-17 19:34:09.490806 37903 956 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.72.196 f5236c7f-8ee8-4fa8-90d1-85e587037d1b 2020-08-17 19:35:14.235603 37904 956 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.72.196 fa4595e5-9bf7-4acc-acb0-559ef90266ee 2020-08-17 19:35:27.498082 37905 660 Transfer \N \N 1 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-08-17\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.72.196 77c46b78-f71b-4de1-b494-77b41f93850c 2020-08-17 19:35:36.669808 37906 660 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-17\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.72.196 649c9451-74fc-4285-aea9-537f124eb8a3 2020-08-17 19:35:56.142824 37907 1883 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.72.196 649c9451-74fc-4285-aea9-537f124eb8a3 2020-08-17 19:35:56.164838 37908 2726 Sale \N \N 2 User \N create ---\ncustomer_id: 154\nuser_id: 2\nopen_cash_register_id: 1007\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-08-17\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1312\nexpiration_date: 2020-09-21\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.72.196 8254dd15-703a-4d9c-8779-00b52aa0cebd 2020-08-17 19:36:30.706734 37909 1883 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.72.196 8254dd15-703a-4d9c-8779-00b52aa0cebd 2020-08-17 19:36:30.736729 37910 3658 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1007\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2726\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1312\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1312 187.149.72.196 e7174066-4ad6-48a8-8a0b-b7dfd125abae 2020-08-17 19:36:37.030617 37911 2726 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.72.196 8d511182-b678-4c3c-98a7-bd74ad920228 2020-08-17 19:36:39.418774 37912 661 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-08-17\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.77.132 372e02c1-9d65-41e3-8ce6-afb8f0cc9424 2020-08-17 19:42:34.387396 37913 661 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-17\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.77.132 b16aa209-451d-46e4-bd24-c7dcbe26ac25 2020-08-17 19:42:50.197471 37914 2192 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1253\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 b16aa209-451d-46e4-bd24-c7dcbe26ac25 2020-08-17 19:42:50.218488 37915 1291 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1291'\n is_parent: false\n sku: ACC-1291\n name: ARE-0106\n description: "ARETE CORAZON CUARZO\\r\\n"\n price_base: '41.05'\n price_sale: '239.0'\n img_product: NHSC738775-4727mm.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001291'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-17 19:28:58.880053'\n updated_at: &12 2020-08-17 19:48:52.218428451 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1291'\n sku: ACC-1291\n name: ARE-0106\n description: "ARETE CORAZON CUARZO\\r\\n"\n price_base: '41.05'\n price_sale: '239.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-17 19:28:58.880053'\n updated_at: '2020-08-17 19:28:58.917865'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001291'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1291'\n type: *3\n value: 1291\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1291\n type: *7\n value: ACC-1291\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ARE-0106\n type: *8\n value: ARE-0106\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "ARETE CORAZON CUARZO\\r\\n"\n type: *6\n value: "ARETE CORAZON CUARZO\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '41.05'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4105E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '239.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.239E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: NHSC738775-4727mm.jpg\n type: *2\n value: NHSC738775-4727mm.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001291'\n type: *2\n value: '0001291'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-17 19:28:58.880053'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- NHSC738775-4727mm.jpg\n 3 El producto ACC-1291 fue modificado. 189.186.77.132 86f864b1-634e-4220-a55c-77ad7dfe8ee0 2020-08-17 19:48:52.262559 37916 1267 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1267'\n is_parent: false\n sku: ACC-1267\n name: ARE-0114\n description: "ARETE PERLAS\\r\\n"\n price_base: '57.63'\n price_sale: '159.0'\n img_product: NHYQ780383-Main-Picture-Color-_925-Silver-Post.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001267'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-15 23:57:30.647936'\n updated_at: &12 2020-08-17 20:00:26.710642355 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1267'\n sku: ACC-1267\n name: ARE-0114\n description: "ARETE PERLAS\\r\\n"\n price_base: '57.63'\n price_sale: '159.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-15 23:57:30.647936'\n updated_at: '2020-08-15 23:57:30.696894'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001267'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1267'\n type: *3\n value: 1267\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1267\n type: *7\n value: ACC-1267\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ARE-0114\n type: *8\n value: ARE-0114\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: "ARETE PERLAS\\r\\n"\n type: *6\n value: "ARETE PERLAS\\r\\n"\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '57.63'\n type: *1\n value: !ruby/object:BigDecimal 18:0.5763E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '159.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.159E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: NHYQ780383-Main-Picture-Color-_925-Silver-Post.jpg\n type: *2\n value: NHYQ780383-Main-Picture-Color-_925-Silver-Post.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001267'\n type: *2\n value: '0001267'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-15 23:57:30.647936'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- NHYQ780383-Main-Picture-Color-_925-Silver-Post.jpg\n 3 El producto ACC-1267 fue modificado. 189.186.77.132 5426dcec-21dd-4ce4-8a45-a3d1b3447d0e 2020-08-17 20:00:26.75079 37917 1286 Product \N \N 4 User \N update ---\nname:\n- ARE-0127\n- ARE-0117\n 3 El producto ACC-1286 fue modificado. 189.186.77.132 668baada-fb17-41b7-82bc-e8b466665616 2020-08-17 20:12:41.960853 37939 2056 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.137.127 ccf8d6cc-4577-478a-87bc-5c2236150ace 2020-08-18 18:08:16.510204 37918 1292 Product \N \N 4 User \N create ---\nsku: ACC-1292\nname: ARE-0105\ndescription: "ARETE ROSA CON LILA PIEDRA\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.4583E2\nprice_sale: !ruby/object:BigDecimal 18:0.21E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: ARE105.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1292 fue creado. 189.186.77.132 942d692e-ef7e-48cc-9ff7-242273f76138 2020-08-17 20:16:56.039984 37919 1292 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001292'\n 2 \N 189.186.77.132 942d692e-ef7e-48cc-9ff7-242273f76138 2020-08-17 20:16:56.07087 37920 2193 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1292\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 942d692e-ef7e-48cc-9ff7-242273f76138 2020-08-17 20:16:56.099453 37921 360 Purchase \N \N 4 User \N create ---\nsupplier_id: 3\npointsale_id: 3\npurchase_code: PV3-C-81\namount: !ruby/object:BigDecimal 18:0.4583E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4583E2\nobservations: ''\npurchase_date: 2020-08-17\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-81 por $ 45.83 MXN creada. 189.186.77.132 819a3e54-f8c7-45a6-bbf0-ee8d5d583d21 2020-08-17 20:16:59.036917 37922 2193 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.77.132 819a3e54-f8c7-45a6-bbf0-ee8d5d583d21 2020-08-17 20:16:59.069687 37923 361 Purchase \N \N 4 User \N create ---\nsupplier_id: 3\npointsale_id: 3\npurchase_code: PV3-C-81\namount: !ruby/object:BigDecimal 18:0.4583E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4583E2\nobservations: ''\npurchase_date: 2020-08-17\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-81 por $ 45.83 MXN creada. 189.186.77.132 f005dd59-f22d-4335-af36-b05f398cf789 2020-08-17 20:16:59.583675 37924 662 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-08-17\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.77.132 d74ddde2-517b-452b-acc9-ecc96a4dcb17 2020-08-17 20:17:26.16041 37925 662 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-17\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.77.132 c668979f-92b6-4c62-bae1-60bf60ba965f 2020-08-17 20:18:05.52937 37926 2194 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1261\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.77.132 c668979f-92b6-4c62-bae1-60bf60ba965f 2020-08-17 20:18:05.550301 37927 1032 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1007\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.179999E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.17E4\ncash_fund: !ruby/object:BigDecimal 18:0.1244E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2944E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.72.196 9962954c-bf05-403a-8e08-efe3e00725df 2020-08-17 23:53:16.067216 37928 1007 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.72.196 9962954c-bf05-403a-8e08-efe3e00725df 2020-08-17 23:53:16.08279 37929 1033 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1008\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1599E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.16E4\ncash_fund: !ruby/object:BigDecimal 18:0.811E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2411E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.77.132 ec136cd1-3ad8-4bb1-a3ad-4339f0fa9f19 2020-08-18 00:17:59.046536 37930 1008 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.77.132 ec136cd1-3ad8-4bb1-a3ad-4339f0fa9f19 2020-08-18 00:17:59.060223 37931 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-17 00:50:58.693108000 Z\n- &1 2020-08-17 18:43:56.174598000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-18 02:14:28.942737801 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147108040\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103364\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103364\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135077\n mask_addr: 4294967295\nsign_in_count:\n- 1729\n- 1730\n 3460 \N 189.186.201.101 34efb359-8486-48f7-94a7-70c78c49c7d1 2020-08-18 02:14:28.950669 37932 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xBGA472xrKSnc_NTQDrr\n- xJuAsaqFRx-GPxRyxsvS\n 3461 \N 189.186.201.101 34efb359-8486-48f7-94a7-70c78c49c7d1 2020-08-18 02:14:28.969112 37933 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-17 18:43:56.174598000 Z\n- &1 2020-08-18 02:14:28.942737000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-18 02:14:29.360153729 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103364\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135077\n mask_addr: 4294967295\nsign_in_count:\n- 1730\n- 1731\n 3462 \N 189.186.201.101 9ba82b7c-ceab-493d-a107-791f3369758f 2020-08-18 02:14:29.367192 37934 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xJuAsaqFRx-GPxRyxsvS\n- KNxXxfvZU4KkDbysqXkk\n 3463 \N 189.186.201.101 9ba82b7c-ceab-493d-a107-791f3369758f 2020-08-18 02:14:29.384117 37935 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-15 16:05:04.682253000 Z\n- &1 2020-08-17 16:29:46.067752000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-18 17:01:40.926959145 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122884\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139455\n mask_addr: 4294967295\nsign_in_count:\n- 616\n- 617\n 1237 \N 187.149.137.127 b1045a11-b44f-48f9-986a-cb536d515fb9 2020-08-18 17:01:40.955868 37936 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Zyg6KCDzxx8AJefXnXKA\n- vkNTxy9mmqebVz7SxK5v\n 1238 \N 187.149.137.127 b1045a11-b44f-48f9-986a-cb536d515fb9 2020-08-18 17:01:40.981288 37937 1009 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1244E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1244.0 187.149.137.127 1f776f1f-b1ba-4382-ad98-36a57389eea0 2020-08-18 17:03:46.759686 37938 2727 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1009\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2020-08-18\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1313\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.137.127 ccf8d6cc-4577-478a-87bc-5c2236150ace 2020-08-18 18:08:16.473788 37941 3659 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1009\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1899E4\nmove_type: '1'\nsale_id: 2727\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1313\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAM\n 1 movimiento de efectivo por venta con folio PV1-V-1313 187.149.137.127 edd0fb6e-548a-419a-8037-2b1ed56dff11 2020-08-18 18:08:33.830918 37942 2728 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1009\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-08-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1314\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.137.127 12ab4352-b79d-4d18-9647-9162052c6e23 2020-08-18 18:26:41.587031 37943 1936 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.137.127 12ab4352-b79d-4d18-9647-9162052c6e23 2020-08-18 18:26:41.631763 37944 2728 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.137.127 2a192641-01ec-451d-87d6-f17782e844f9 2020-08-18 18:26:45.935398 37945 3660 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1009\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2728\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1314\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1314 187.149.137.127 2a192641-01ec-451d-87d6-f17782e844f9 2020-08-18 18:26:45.957315 37946 323 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1009\nquantity: !ruby/object:BigDecimal 18:0.4E2\nstatus: 1\nobservations: CARTEL DE CLOE\nexpense_date: 2020-08-18\nexpense_code: PV1-E-225\n 1 Egreso por 40.0 registrado 187.149.137.127 3afa271f-e3eb-4f2c-9ee0-8c11cf145ec3 2020-08-18 18:40:12.858072 37947 3661 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1009\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 323\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.137.127 3afa271f-e3eb-4f2c-9ee0-8c11cf145ec3 2020-08-18 18:40:12.878142 37948 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-05 22:30:58.884938000 Z\n- &1 2020-08-06 22:27:02.486939000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-18 18:51:00.649733100 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103364\n mask_addr: 4294967295\nsign_in_count:\n- 172\n- 173\n 347 \N 189.186.77.132 1edd62da-e276-4b77-ad78-98d61d30c97d 2020-08-18 18:51:00.657567 37949 18 User \N \N 18 User \N update ---\nunique_session_id:\n- zCzSyLtyoaikpwEqoH9w\n- 541qGdpzF-xCHZsudQJ7\n 348 \N 189.186.77.132 1edd62da-e276-4b77-ad78-98d61d30c97d 2020-08-18 18:51:00.672735 37950 1010 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.811E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 811.0 189.186.77.132 98d33cec-c2f4-4017-91b8-61c6cab6f223 2020-08-18 18:51:55.313758 37951 359 Customer \N \N 18 User \N create ---\nnick_name: JESICA AISPURO\nphone: "(667) 462-8382"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JESICA AISPURO fue registrado. 189.186.77.132 2934a8b0-5e14-49df-a41a-f2fd387da22b 2020-08-18 18:52:13.20651 37952 2729 Sale \N \N 18 User \N create ---\ncustomer_id: 359\nuser_id: 18\nopen_cash_register_id: 1010\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-08-18\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-495\nexpiration_date: 2020-09-22\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.77.132 c3dede1b-9c59-4deb-b817-70bb417ae8c4 2020-08-18 18:52:22.831754 37953 2017 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.77.132 c3dede1b-9c59-4deb-b817-70bb417ae8c4 2020-08-18 18:52:22.856741 37954 3662 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1010\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2729\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-495\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-495 189.186.77.132 228686b2-78be-43f4-849d-728c477b34f1 2020-08-18 18:52:29.507799 37955 2729 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.77.132 442b656d-e516-442e-8727-28f42c76bc2e 2020-08-18 18:52:31.003455 37956 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-18 02:14:28.942737000 Z\n- &1 2020-08-18 02:14:29.360153000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-18 20:36:29.195664351 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135077\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938394\n mask_addr: 4294967295\nsign_in_count:\n- 1731\n- 1732\n 3464 \N 200.68.151.90 a71aff84-5a3e-4e1e-89a7-5cd2c3805a58 2020-08-18 20:36:29.202304 37957 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KNxXxfvZU4KkDbysqXkk\n- 4RK-fV7yByLS9ZsKhhKZ\n 3465 \N 200.68.151.90 a71aff84-5a3e-4e1e-89a7-5cd2c3805a58 2020-08-18 20:36:29.219013 37958 2730 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1010\namount: !ruby/object:BigDecimal 18:0.94741E3\ntax: !ruby/object:BigDecimal 18:0.15159E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2020-08-18\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-496\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.77.132 48143c80-cdf6-4c4f-b27a-45be02a6c9b3 2020-08-18 21:37:32.081553 37959 1533 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.77.132 48143c80-cdf6-4c4f-b27a-45be02a6c9b3 2020-08-18 21:37:32.119266 37960 2730 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.77.132 dbf0e8ef-b108-4832-9a0a-bdc046082c87 2020-08-18 21:39:54.452896 37961 3663 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1010\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 2730\ncardnumber: 2458\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-496\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-496 189.186.77.132 dbf0e8ef-b108-4832-9a0a-bdc046082c87 2020-08-18 21:39:54.479889 37962 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-06 22:27:02.486939000 Z\n- &1 2020-08-18 18:51:00.649733000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-18 22:23:31.499189935 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103364\n mask_addr: 4294967295\nsign_in_count:\n- 173\n- 174\n 349 \N 189.186.77.132 e5a9d082-9978-4017-b058-a1f8b8118fa7 2020-08-18 22:23:31.507046 37963 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 541qGdpzF-xCHZsudQJ7\n- vpx35x_ByQJsNCBxYkbt\n 350 \N 189.186.77.132 e5a9d082-9978-4017-b058-a1f8b8118fa7 2020-08-18 22:23:31.523359 37964 2731 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1010\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.35E3\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2020-08-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-497\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.77.132 11178eca-cc59-4e1d-a742-9504b01875a5 2020-08-18 22:24:24.370735 37965 1552 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 4 \N 189.186.77.132 11178eca-cc59-4e1d-a742-9504b01875a5 2020-08-18 22:24:24.411375 37966 2731 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.77.132 6f668f7f-a502-4e0f-bbe3-4c863ded1cf0 2020-08-18 22:24:28.33068 37967 3664 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1010\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.549E3\nmove_type: '1'\nsale_id: 2731\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-497\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-497 189.186.77.132 6f668f7f-a502-4e0f-bbe3-4c863ded1cf0 2020-08-18 22:24:28.352395 37968 2732 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1010\namount: !ruby/object:BigDecimal 18:0.559E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.559E3\nstatus: 0\ndate_sale: 2020-08-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-498\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.77.132 e307a5e2-ca32-484b-9729-64a511713f0e 2020-08-18 22:38:09.951262 37969 2191 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.77.132 e307a5e2-ca32-484b-9729-64a511713f0e 2020-08-18 22:38:09.979581 37970 2167 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.77.132 e307a5e2-ca32-484b-9729-64a511713f0e 2020-08-18 22:38:10.013682 37971 2732 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-498 cancelada. 189.186.77.132 e6b866a1-2f8e-475f-a2c3-1f113ec493bc 2020-08-18 22:39:24.045797 37972 2167 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.77.132 e6b866a1-2f8e-475f-a2c3-1f113ec493bc 2020-08-18 22:39:24.077197 37973 2191 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.77.132 e6b866a1-2f8e-475f-a2c3-1f113ec493bc 2020-08-18 22:39:24.104584 37974 2733 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1010\namount: !ruby/object:BigDecimal 18:0.858E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.858E3\nstatus: 0\ndate_sale: 2020-08-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-499\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.77.132 b03f96d7-8433-4182-a6a4-66b736356ba8 2020-08-18 22:45:21.638751 37975 2180 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.77.132 b03f96d7-8433-4182-a6a4-66b736356ba8 2020-08-18 22:45:21.671011 37976 2167 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.77.132 b03f96d7-8433-4182-a6a4-66b736356ba8 2020-08-18 22:45:21.697655 37977 2191 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.77.132 b03f96d7-8433-4182-a6a4-66b736356ba8 2020-08-18 22:45:21.723482 37978 2733 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.77.132 f425fbf8-785c-4d88-ba3a-be924006d5d0 2020-08-18 22:45:32.059621 37979 3665 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1010\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.858E3\nmove_type: '1'\nsale_id: 2733\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-499\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.858E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-499 189.186.77.132 f425fbf8-785c-4d88-ba3a-be924006d5d0 2020-08-18 22:45:32.079063 37980 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-18 02:14:29.360153000 Z\n- &1 2020-08-18 20:36:29.195664000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-18 22:49:12.047655244 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135077\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938394\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938394\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103364\n mask_addr: 4294967295\nsign_in_count:\n- 1732\n- 1733\n 3466 \N 189.186.77.132 f363f3bb-fa47-4b22-ae47-29edbf9f01ba 2020-08-18 22:49:12.054671 37981 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4RK-fV7yByLS9ZsKhhKZ\n- cKfXhegg5DqgKuvEMgzy\n 3467 \N 189.186.77.132 f363f3bb-fa47-4b22-ae47-29edbf9f01ba 2020-08-18 22:49:12.071401 37982 362 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-83\namount: !ruby/object:BigDecimal 18:0.7995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.7995E3\nobservations: ''\npurchase_date: 2020-08-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-83 por $ 799.5 MXN creada. 189.186.77.132 e207a5eb-7220-472d-a474-d38bdc01cef7 2020-08-18 23:08:42.480277 37983 1977 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.77.132 e207a5eb-7220-472d-a474-d38bdc01cef7 2020-08-18 23:08:42.506939 37984 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-18 18:51:00.649733000 Z\n- &1 2020-08-18 22:23:31.499189000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-18 23:09:04.650927996 Z\nsign_in_count:\n- 174\n- 175\n 351 \N 189.186.77.132 b2cec345-7602-42f3-baec-11c22f6f65be 2020-08-18 23:09:04.657893 37985 18 User \N \N 18 User \N update ---\nunique_session_id:\n- vpx35x_ByQJsNCBxYkbt\n- jWww6zaGJcjw6S5B9hNt\n 352 \N 189.186.77.132 b2cec345-7602-42f3-baec-11c22f6f65be 2020-08-18 23:09:04.672654 38006 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sZdqS6FQ8BktzGepEB3Q\n- CixK9VCcPtzdWzs1i9PN\n 3471 \N 189.186.250.46 4e26440f-ae51-4aaf-9154-8b2c4955eb45 2020-08-19 04:53:38.606249 37986 2734 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1010\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-08-18\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-500\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.77.132 ef9ed569-c566-4713-ac97-ed39cb3ad24f 2020-08-18 23:10:41.349108 37987 1977 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.77.132 ef9ed569-c566-4713-ac97-ed39cb3ad24f 2020-08-18 23:10:41.37844 37988 2734 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.77.132 3da9bb9c-d851-4eb3-94ac-8e679e713563 2020-08-18 23:10:47.111465 37989 3666 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1010\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2734\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-500\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-500 189.186.77.132 3da9bb9c-d851-4eb3-94ac-8e679e713563 2020-08-18 23:10:47.135001 37990 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-15 23:33:18.943429000 Z\n- &1 2020-08-17 18:44:13.983202000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-18 23:26:06.654107412 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103364\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103364\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135077\n mask_addr: 4294967295\nsign_in_count:\n- 258\n- 259\n 519 \N 189.186.201.101 b40fbafa-d8e0-4e82-bed9-97006b9e0fdd 2020-08-18 23:26:06.664866 37991 21 User \N \N 21 User \N update ---\nunique_session_id:\n- mTdbrKX3gowcHa9ugNqc\n- BvJYx8ryPZJpsgtchWxt\n 520 \N 189.186.201.101 b40fbafa-d8e0-4e82-bed9-97006b9e0fdd 2020-08-18 23:26:06.683056 37992 1034 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1009\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1999E4\namount_out: !ruby/object:BigDecimal 18:0.4E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1304E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1304E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.246 b7f6d6ec-40ca-4bc4-8ac8-8dca6a36eaaa 2020-08-18 23:53:46.50805 37993 1009 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.246 b7f6d6ec-40ca-4bc4-8ac8-8dca6a36eaaa 2020-08-18 23:53:46.522471 37994 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-17 16:29:46.067752000 Z\n- &1 2020-08-18 17:01:40.926959000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-19 00:01:03.891599075 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122884\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139455\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139455\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094518\n mask_addr: 4294967295\nsign_in_count:\n- 617\n- 618\n 1239 \N 189.186.42.246 5511934a-6d81-4310-b7a1-598f3d7b5015 2020-08-19 00:01:03.899551 37995 2 User \N \N 2 User \N update ---\nunique_session_id:\n- vkNTxy9mmqebVz7SxK5v\n- sN7tGCvGAJ6TbwNJxR7_\n 1240 \N 189.186.42.246 5511934a-6d81-4310-b7a1-598f3d7b5015 2020-08-19 00:01:03.917232 37996 1011 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1304E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1304.0 189.186.42.246 4bb4ab08-cc33-4425-91e4-83f06b1c06a1 2020-08-19 00:01:21.855407 37997 2735 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1011\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-08-18\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1315\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.42.246 464eda4a-eb51-4647-bc88-a9932b721b31 2020-08-19 00:03:06.801175 37998 1038 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.42.246 464eda4a-eb51-4647-bc88-a9932b721b31 2020-08-19 00:03:06.829745 37999 2735 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.42.246 dce4c315-9752-4a9b-8c88-17abf8a393c2 2020-08-19 00:03:10.980142 38000 3667 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1011\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2735\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1315\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1315 189.186.42.246 dce4c315-9752-4a9b-8c88-17abf8a393c2 2020-08-19 00:03:11.003175 38001 1035 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1010\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.4605E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.3558E4\ncash_fund: !ruby/object:BigDecimal 18:0.759E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4317E4\nobservations: VENTA DE ARETES FUE TERMINAL\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.77.132 e7220ced-68fd-47ec-b3f3-b19ee49b4a49 2020-08-19 00:27:50.982242 38002 1010 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.77.132 e7220ced-68fd-47ec-b3f3-b19ee49b4a49 2020-08-19 00:27:50.998311 38003 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-18 20:36:29.195664000 Z\n- &1 2020-08-18 22:49:12.047655000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-19 03:00:00.489092392 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938394\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103364\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103364\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539767\n mask_addr: 4294967295\nsign_in_count:\n- 1733\n- 1734\n 3468 \N 177.228.118.119 6f9edc9e-d186-4535-a770-d43ad03bfcb4 2020-08-19 03:00:00.498603 38004 4 User \N \N 4 User \N update ---\nunique_session_id:\n- cKfXhegg5DqgKuvEMgzy\n- sZdqS6FQ8BktzGepEB3Q\n 3469 \N 177.228.118.119 6f9edc9e-d186-4535-a770-d43ad03bfcb4 2020-08-19 03:00:00.517838 38005 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-18 22:49:12.047655000 Z\n- &1 2020-08-19 03:00:00.489092000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-19 04:53:38.582330683 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103364\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539767\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539767\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147566\n mask_addr: 4294967295\nsign_in_count:\n- 1734\n- 1735\n 3470 \N 189.186.250.46 4e26440f-ae51-4aaf-9154-8b2c4955eb45 2020-08-19 04:53:38.589714 38007 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-19 03:00:00.489092000 Z\n- &1 2020-08-19 04:53:38.582330000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-19 15:11:07.373372935 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539767\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147566\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147566\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539767\n mask_addr: 4294967295\nsign_in_count:\n- 1735\n- 1736\n 3472 \N 177.228.118.119 8fd47e26-1715-4ab4-b79c-564c70db84d6 2020-08-19 15:11:07.402877 38008 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CixK9VCcPtzdWzs1i9PN\n- 16-uwsQS2V2CbBV2J89F\n 3473 \N 177.228.118.119 8fd47e26-1715-4ab4-b79c-564c70db84d6 2020-08-19 15:11:07.430658 38009 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-18 17:01:40.926959000 Z\n- &1 2020-08-19 00:01:03.891599000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-19 16:01:34.356235497 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139455\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094518\n mask_addr: 4294967295\nsign_in_count:\n- 618\n- 619\n 1241 \N 189.186.42.246 68c70cf9-95d4-4b06-b9b1-c131ea4640f1 2020-08-19 16:01:34.362362 38010 2 User \N \N 2 User \N update ---\nunique_session_id:\n- sN7tGCvGAJ6TbwNJxR7_\n- mzXampHcYysjW35A6zy8\n 1242 \N 189.186.42.246 68c70cf9-95d4-4b06-b9b1-c131ea4640f1 2020-08-19 16:01:34.377996 38011 1036 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1011\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1599E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.16E4\ncash_fund: !ruby/object:BigDecimal 18:0.1303E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2903E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.42.246 f2374204-7e43-4d50-8900-ae67bdfddc69 2020-08-19 16:03:10.197829 38012 1011 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.42.246 f2374204-7e43-4d50-8900-ae67bdfddc69 2020-08-19 16:03:10.213987 38013 1012 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1303E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1303.0 189.186.42.246 fb4e85b9-2eec-4978-8f55-8f91358aed2c 2020-08-19 16:05:59.105167 38014 3668 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1012\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2680\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1278 189.186.42.246 77eba7b7-d521-4c65-a25c-a5a4155ade8e 2020-08-19 16:26:28.56588 38015 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-18 22:23:31.499189000 Z\n- &1 2020-08-18 23:09:04.650927000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-19 18:05:20.560821183 Z\nsign_in_count:\n- 175\n- 176\n 353 \N 189.186.77.132 eb789ecd-72e9-42bc-8921-078682d9e06f 2020-08-19 18:05:20.589933 38016 18 User \N \N 18 User \N update ---\nunique_session_id:\n- jWww6zaGJcjw6S5B9hNt\n- pFgzEzTtnGKEHH9kWeoA\n 354 \N 189.186.77.132 eb789ecd-72e9-42bc-8921-078682d9e06f 2020-08-19 18:05:20.612161 38017 1013 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.759E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 759.0 189.186.77.132 3c0d9097-7a57-47be-8a0d-4a05877109b2 2020-08-19 18:05:32.906717 38018 360 Customer \N \N 18 User \N create ---\nnick_name: MAYRA PATRICIA GUEVARA\nphone: "(669) 275-0177"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MAYRA PATRICIA GUEVARA fue registrado. 189.186.77.132 7db7baa5-7f20-4527-b1d0-173bd01bdd3c 2020-08-19 18:06:31.464935 38019 361 Customer \N \N 18 User \N create ---\nnick_name: MAYRA PATRICIA GUEVARA\nphone: "(669) 275-0177"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MAYRA PATRICIA GUEVARA fue registrado. 189.186.77.132 c08c8b8d-ca74-483e-b87c-9cfd85063ac2 2020-08-19 18:06:31.668102 38020 2736 Sale \N \N 18 User \N create ---\ncustomer_id: 361\nuser_id: 18\nopen_cash_register_id: 1013\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-08-19\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-501\nexpiration_date: 2020-09-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.77.132 0c86f497-0e0c-407c-9e62-ae54f8c2300e 2020-08-19 18:07:03.034876 38021 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.26E2\n- !ruby/object:BigDecimal 18:0.25E2\n 39 \N 189.186.77.132 0c86f497-0e0c-407c-9e62-ae54f8c2300e 2020-08-19 18:07:03.083897 38022 3669 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1013\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2736\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-501\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-501 189.186.77.132 d127d679-9d91-426c-a952-e306898fe41d 2020-08-19 18:07:09.340601 38023 2736 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.77.132 e0d5a0ec-25cf-41a5-bc29-afb9ca14a3c3 2020-08-19 18:07:10.94839 38024 3670 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1013\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2736\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-501 189.186.77.132 8efd14cd-881c-45a1-91a2-ffb5dbafa485 2020-08-19 18:09:11.466333 38025 3670 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1013\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2736\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.77.132 13bddda9-f750-41b5-8175-67fc37ab98bb 2020-08-19 18:09:23.207773 38026 3671 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1013\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2736\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-501 189.186.77.132 00340a91-ea8d-4177-ba70-69b86fb5ba2f 2020-08-19 18:09:29.189779 38027 3672 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1013\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E1\nmove_type: '1'\nsale_id: 2736\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E1\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-501 189.186.77.132 d8818a03-8225-48c9-9757-71b7c0a369cd 2020-08-19 18:09:41.976813 38028 2737 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1012\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.699E3\ntotal: !ruby/object:BigDecimal 18:0.7E3\nstatus: 0\ndate_sale: 2020-08-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1316\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.109.153 1ae13d09-52d7-443d-a971-570e15f7ce11 2020-08-19 21:15:07.048012 38029 647 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 187.149.109.153 1ae13d09-52d7-443d-a971-570e15f7ce11 2020-08-19 21:15:07.079193 38030 2737 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.109.153 7c439b33-8819-43c9-aaba-bdad104033e1 2020-08-19 21:15:16.522054 38031 3673 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1012\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.7E3\nmove_type: '1'\nsale_id: 2737\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1316\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1316 187.149.109.153 7c439b33-8819-43c9-aaba-bdad104033e1 2020-08-19 21:15:16.544741 38032 2738 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1012\namount: !ruby/object:BigDecimal 18:0.43452E3\ntax: !ruby/object:BigDecimal 18:0.3448E2\ndiscount: !ruby/object:BigDecimal 18:0.219E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-08-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1317\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.109.153 6de0baaf-fb88-4d02-8ff3-e83cfbf3f8da 2020-08-19 21:25:16.713194 38033 685 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.109.153 6de0baaf-fb88-4d02-8ff3-e83cfbf3f8da 2020-08-19 21:25:16.758219 38034 2738 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.109.153 b6ff884e-594b-400f-ba5b-f24fe880c0bb 2020-08-19 21:25:20.644537 38035 3674 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1012\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 2738\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1317\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1317 187.149.109.153 b6ff884e-594b-400f-ba5b-f24fe880c0bb 2020-08-19 21:25:20.664994 38036 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-19 04:53:38.582330000 Z\n- &1 2020-08-19 15:11:07.373372000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-19 21:37:16.605775944 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147566\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539767\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539767\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1736\n- 1737\n 3474 \N 189.186.90.81 f38e2b54-eeb1-4d9d-bd15-bc0f45d7c901 2020-08-19 21:37:16.613501 38037 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 16-uwsQS2V2CbBV2J89F\n- chf49LYYs986XFxx2ecZ\n 3475 \N 189.186.90.81 f38e2b54-eeb1-4d9d-bd15-bc0f45d7c901 2020-08-19 21:37:16.63214 38038 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-18 23:09:04.650927000 Z\n- &1 2020-08-19 18:05:20.560821000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-19 22:24:11.362319173 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103364\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 176\n- 177\n 355 \N 189.186.90.81 2d79c2fc-da30-4db4-8621-2aed55f41357 2020-08-19 22:24:11.370021 38039 18 User \N \N 18 User \N update ---\nunique_session_id:\n- pFgzEzTtnGKEHH9kWeoA\n- uR5_5UsbUyy4D7eCo3xD\n 356 \N 189.186.90.81 2d79c2fc-da30-4db4-8621-2aed55f41357 2020-08-19 22:24:11.384591 38040 2739 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1013\namount: !ruby/object:BigDecimal 18:0.56E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.28E3\ntotal: !ruby/object:BigDecimal 18:0.28E3\nstatus: 0\ndate_sale: 2020-08-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-502\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 ed7b764d-c05e-458d-b957-4d23bf52e1f2 2020-08-19 22:27:17.186637 38041 830 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 13 \N 189.186.90.81 ed7b764d-c05e-458d-b957-4d23bf52e1f2 2020-08-19 22:27:17.214543 38042 2739 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 e7893cb4-877b-4e27-8f5c-f4696fad747e 2020-08-19 22:27:29.27964 38043 3675 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1013\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.28E3\nmove_type: '1'\nsale_id: 2739\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-502\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.28E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-502 189.186.90.81 e7893cb4-877b-4e27-8f5c-f4696fad747e 2020-08-19 22:27:29.301759 38044 2740 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1013\namount: !ruby/object:BigDecimal 18:0.2616E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2616E4\nstatus: 0\ndate_sale: 2020-08-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-503\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 a40a3222-e879-4111-b517-800ebc7983b5 2020-08-19 22:37:15.368912 38045 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.25E2\n- !ruby/object:BigDecimal 18:0.24E2\n 40 \N 189.186.90.81 a40a3222-e879-4111-b517-800ebc7983b5 2020-08-19 22:37:15.418065 38046 2085 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.90.81 a40a3222-e879-4111-b517-800ebc7983b5 2020-08-19 22:37:15.457607 38047 2081 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.90.81 a40a3222-e879-4111-b517-800ebc7983b5 2020-08-19 22:37:15.484049 38048 2122 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.90.81 a40a3222-e879-4111-b517-800ebc7983b5 2020-08-19 22:37:15.509948 38049 1831 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.90.81 a40a3222-e879-4111-b517-800ebc7983b5 2020-08-19 22:37:15.54917 38050 2740 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 e6bb775e-70fb-4ff9-8ea8-475d0248050d 2020-08-19 22:37:56.152852 38051 3676 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1013\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2616E4\nmove_type: '1'\nsale_id: 2740\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-503\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.27E4\nchange: !ruby/object:BigDecimal 18:0.84E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-503 189.186.90.81 e6bb775e-70fb-4ff9-8ea8-475d0248050d 2020-08-19 22:37:56.177801 38052 2741 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1013\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-08-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-504\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 fa632a56-7b99-4e74-84a8-1bf9ea1e55ee 2020-08-19 22:44:22.274618 38053 1929 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.90.81 fa632a56-7b99-4e74-84a8-1bf9ea1e55ee 2020-08-19 22:44:22.301845 38054 2741 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 332944eb-ae20-497b-8f50-1920ae735124 2020-08-19 22:44:56.633924 38055 3677 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1013\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 2741\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-504\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-504 189.186.90.81 332944eb-ae20-497b-8f50-1920ae735124 2020-08-19 22:44:56.653741 38056 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-19 15:11:07.373372000 Z\n- &1 2020-08-19 21:37:16.605775000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-19 22:54:49.973132670 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539767\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1737\n- 1738\n 3476 \N 189.186.90.81 1def5a84-f677-43e4-b331-312a05fba334 2020-08-19 22:54:49.981542 38057 4 User \N \N 4 User \N update ---\nunique_session_id:\n- chf49LYYs986XFxx2ecZ\n- 2nydEyseY1sy1cRFbF_K\n 3477 \N 189.186.90.81 1def5a84-f677-43e4-b331-312a05fba334 2020-08-19 22:54:49.999459 38058 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-19 21:37:16.605775000 Z\n- &1 2020-08-19 22:54:49.973132000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-19 23:22:51.272685987 Z\nsign_in_count:\n- 1738\n- 1739\n 3478 \N 189.186.90.81 d0f01587-191f-4816-b261-789e6cc0b462 2020-08-19 23:22:51.278221 38059 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2nydEyseY1sy1cRFbF_K\n- AkpEkyoPxbsRjSJHCsq4\n 3479 \N 189.186.90.81 d0f01587-191f-4816-b261-789e6cc0b462 2020-08-19 23:22:51.292915 38060 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-19 18:05:20.560821000 Z\n- &1 2020-08-19 22:24:11.362319000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-19 23:24:29.990248777 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103364\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 177\n- 178\n 357 \N 189.186.90.81 22a6bd59-31a1-44aa-9e61-f31d7332e42c 2020-08-19 23:24:29.996842 38061 18 User \N \N 18 User \N update ---\nunique_session_id:\n- uR5_5UsbUyy4D7eCo3xD\n- 3qdGvnZsrxsjkyYpN2Gx\n 358 \N 189.186.90.81 22a6bd59-31a1-44aa-9e61-f31d7332e42c 2020-08-19 23:24:30.015568 38062 2742 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1013\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2020-08-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-505\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 f4818866-02e1-4b69-abfd-097aaab2fb8c 2020-08-19 23:29:49.835908 38063 1922 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.90.81 f4818866-02e1-4b69-abfd-097aaab2fb8c 2020-08-19 23:29:49.862139 38064 2742 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 70bb6b6f-b883-41a8-a2ca-974a5c895416 2020-08-19 23:30:05.636954 38065 3678 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1013\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.35E3\nmove_type: '1'\nsale_id: 2742\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-505\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-505 189.186.90.81 70bb6b6f-b883-41a8-a2ca-974a5c895416 2020-08-19 23:30:05.662223 38066 362 Customer \N \N 18 User \N create ---\nnick_name: BIANCA GOMEZ\nphone: "(667) 118-6028"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BIANCA GOMEZ fue registrado. 189.186.90.81 bd161b59-e825-4270-b8cb-9d87d759c03a 2020-08-19 23:30:41.733122 38067 2743 Sale \N \N 18 User \N create ---\ncustomer_id: 362\nuser_id: 18\nopen_cash_register_id: 1013\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-08-19\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-506\nexpiration_date: 2020-09-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 5303620d-436e-4ff3-b652-57c9ab1ce90d 2020-08-19 23:30:57.203585 38068 1921 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.90.81 5303620d-436e-4ff3-b652-57c9ab1ce90d 2020-08-19 23:30:57.240428 38069 3679 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1013\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '1'\nsale_id: 2743\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-506\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-506 189.186.90.81 24ea23da-c08e-4002-a44e-5a6cc52d53ea 2020-08-19 23:31:03.565708 38070 2743 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.90.81 512dc0e7-dce4-43c9-9b99-93982020ea99 2020-08-19 23:31:04.981925 38118 1661 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.90.81 401a016e-ac67-4ccf-8a38-b38406a54a67 2020-08-20 23:10:48.512561 38071 363 Customer \N \N 18 User \N create ---\nnick_name: LAURA SICAIROS\nphone: "(667) 231-1451"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LAURA SICAIROS fue registrado. 189.186.90.81 a0760863-71ba-409e-ab77-7f399c875dec 2020-08-19 23:42:50.504178 38072 2744 Sale \N \N 18 User \N create ---\ncustomer_id: 363\nuser_id: 18\nopen_cash_register_id: 1013\namount: !ruby/object:BigDecimal 18:0.3298E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3298E4\nstatus: 0\ndate_sale: 2020-08-19\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-507\nexpiration_date: 2020-09-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 d439eb8d-272f-4219-a540-c0258e623197 2020-08-19 23:43:48.912992 38073 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.24E2\n- !ruby/object:BigDecimal 18:0.23E2\n 41 \N 189.186.90.81 d439eb8d-272f-4219-a540-c0258e623197 2020-08-19 23:43:48.94014 38074 2044 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.90.81 d439eb8d-272f-4219-a540-c0258e623197 2020-08-19 23:43:48.966069 38075 3680 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1013\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2744\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-507\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-507 189.186.90.81 5dc4b8f1-d64f-4ec3-bd7d-2ac632815fa5 2020-08-19 23:44:18.340264 38076 2744 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.90.81 10c77efc-e92a-4d26-973b-a2c1199ac7c3 2020-08-19 23:44:25.701992 38077 2745 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1012\namount: !ruby/object:BigDecimal 18:0.214183E4\ntax: !ruby/object:BigDecimal 18:0.5517E2\ndiscount: !ruby/object:BigDecimal 18:0.1347E4\ntotal: !ruby/object:BigDecimal 18:0.85E3\nstatus: 0\ndate_sale: 2020-08-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1318\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.109.153 1c201187-8751-4197-bef9-06bc4b3b359b 2020-08-19 23:58:09.734491 38078 1693 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.109.153 1c201187-8751-4197-bef9-06bc4b3b359b 2020-08-19 23:58:09.759129 38079 234 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.109.153 1c201187-8751-4197-bef9-06bc4b3b359b 2020-08-19 23:58:09.78068 38080 101 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.109.153 1c201187-8751-4197-bef9-06bc4b3b359b 2020-08-19 23:58:09.801853 38081 2745 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.109.153 baeaa92b-0e7d-4b62-8ebc-e17eb138ce34 2020-08-19 23:58:14.635864 38082 3681 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1012\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.85E3\nmove_type: '1'\nsale_id: 2745\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1318\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.85E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1318 187.149.109.153 baeaa92b-0e7d-4b62-8ebc-e17eb138ce34 2020-08-19 23:58:14.655908 38083 2746 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1013\namount: !ruby/object:BigDecimal 18:0.11E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.11E3\nstatus: 0\ndate_sale: 2020-08-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-508\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 ba14a372-9a15-4738-a228-d16a53286ca3 2020-08-19 23:58:58.928677 38084 2168 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.90.81 ba14a372-9a15-4738-a228-d16a53286ca3 2020-08-19 23:58:58.95804 38085 2746 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 53739f14-63bb-4423-b4e7-381cde0829d8 2020-08-19 23:59:10.115578 38086 3682 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1013\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.11E3\nmove_type: '1'\nsale_id: 2746\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-508\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-508 189.186.90.81 53739f14-63bb-4423-b4e7-381cde0829d8 2020-08-19 23:59:10.141069 38087 1037 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1012\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.1303E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3303E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.109.153 47a7d714-c884-4310-bb40-eb677ab3359f 2020-08-20 00:01:25.599158 38088 1012 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.109.153 47a7d714-c884-4310-bb40-eb677ab3359f 2020-08-20 00:01:25.616701 38089 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-19 22:54:49.973132000 Z\n- &1 2020-08-19 23:22:51.272685000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-20 00:29:02.840411099 Z\nsign_in_count:\n- 1739\n- 1740\n 3480 \N 189.186.90.81 53fefe04-92f0-4ddf-b841-672d59f5a7f3 2020-08-20 00:29:02.846135 38090 4 User \N \N 4 User \N update ---\nunique_session_id:\n- AkpEkyoPxbsRjSJHCsq4\n- UHPsB7q6CsxoMm8erzc3\n 3481 \N 189.186.90.81 53fefe04-92f0-4ddf-b841-672d59f5a7f3 2020-08-20 00:29:02.86137 38091 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-19 22:24:11.362319000 Z\n- &1 2020-08-19 23:24:29.990248000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-20 00:40:47.233890721 Z\nsign_in_count:\n- 178\n- 179\n 359 \N 189.186.90.81 6197a6e0-e7bc-4222-8075-89c977c34223 2020-08-20 00:40:47.239833 38092 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 3qdGvnZsrxsjkyYpN2Gx\n- Jx5CvP29Yuk4igeQpzHb\n 360 \N 189.186.90.81 6197a6e0-e7bc-4222-8075-89c977c34223 2020-08-20 00:40:47.254723 38093 1038 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1013\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.5806E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.6E4\ncash_fund: !ruby/object:BigDecimal 18:0.565E3\nphysical_cash: !ruby/object:BigDecimal 18:0.6565E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.90.81 fdf1db4d-e7a5-4f57-beb8-83b61aa2ed03 2020-08-20 00:50:17.267938 38094 1013 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.90.81 fdf1db4d-e7a5-4f57-beb8-83b61aa2ed03 2020-08-20 00:50:17.282912 38095 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-16 00:58:13.769566000 Z\n- &1 2020-08-17 19:34:09.450076000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-20 01:36:34.275496976 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538003\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122884\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122884\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945841\n mask_addr: 4294967295\nsign_in_count:\n- 209\n- 210\n 420 \N 200.68.180.113 26f16ba6-69b1-4614-9dd2-576034c54bef 2020-08-20 01:36:34.283237 38096 1 User \N \N 1 User \N update ---\nunique_session_id:\n- RmLR2vxVZM8-iP2-HwKm\n- xDfVswuV_9WQro6Kvddi\n 421 \N 200.68.180.113 26f16ba6-69b1-4614-9dd2-576034c54bef 2020-08-20 01:36:34.2996 38097 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-19 23:22:51.272685000 Z\n- &1 2020-08-20 00:29:02.840411000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-20 04:46:00.159691733 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539927\n mask_addr: 4294967295\nsign_in_count:\n- 1740\n- 1741\n 3482 \N 177.228.119.23 91d71f98-bef2-4e23-8935-32e90aa101b3 2020-08-20 04:46:00.179229 38098 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UHPsB7q6CsxoMm8erzc3\n- zV31KG-ZFjBCEGbnAM7M\n 3483 \N 177.228.119.23 91d71f98-bef2-4e23-8935-32e90aa101b3 2020-08-20 04:46:00.202067 38099 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-17 19:34:09.450076000 Z\n- &1 2020-08-20 01:36:34.275496000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-20 06:14:05.502468080 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147122884\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945841\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945841\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729777\n mask_addr: 4294967295\nsign_in_count:\n- 210\n- 211\n 422 \N 201.175.158.113 e5460f0e-be3a-4cb0-9ed4-cf663020e0b0 2020-08-20 06:14:05.510104 38100 1 User \N \N 1 User \N update ---\nunique_session_id:\n- xDfVswuV_9WQro6Kvddi\n- xDiZx5saoJN_ysJEVF_n\n 423 \N 201.175.158.113 e5460f0e-be3a-4cb0-9ed4-cf663020e0b0 2020-08-20 06:14:05.527429 38101 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-19 00:01:03.891599000 Z\n- &1 2020-08-19 16:01:34.356235000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-20 18:23:11.361804510 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094270\n mask_addr: 4294967295\nsign_in_count:\n- 619\n- 620\n 1243 \N 189.186.41.254 a0a0b81f-77b4-4f27-8082-b86160199e5f 2020-08-20 18:23:11.390698 38102 2 User \N \N 2 User \N update ---\nunique_session_id:\n- mzXampHcYysjW35A6zy8\n- xHMykpTCEXvxo4NsTzxy\n 1244 \N 189.186.41.254 a0a0b81f-77b4-4f27-8082-b86160199e5f 2020-08-20 18:23:11.41475 38103 1014 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1303E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1303.0 189.186.41.254 47af2fef-1f89-4530-9033-1346032f5821 2020-08-20 19:14:07.164066 38104 2747 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1014\namount: !ruby/object:BigDecimal 18:0.111248E4\ntax: !ruby/object:BigDecimal 18:0.4552E2\ndiscount: !ruby/object:BigDecimal 18:0.578E3\ntotal: !ruby/object:BigDecimal 18:0.58E3\nstatus: 0\ndate_sale: 2020-08-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1319\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 3a33d2c9-7317-4019-8c99-70e6fec5c3b4 2020-08-20 19:21:28.064507 38105 671 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.41.254 3a33d2c9-7317-4019-8c99-70e6fec5c3b4 2020-08-20 19:21:28.099082 38106 2145 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.41.254 3a33d2c9-7317-4019-8c99-70e6fec5c3b4 2020-08-20 19:21:28.136277 38107 2747 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 d8b5796d-f2e7-42ca-a277-996427399a8a 2020-08-20 19:21:34.797638 38108 3683 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1014\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.58E3\nmove_type: '1'\nsale_id: 2747\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1319\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.58E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1319 189.186.41.254 d8b5796d-f2e7-42ca-a277-996427399a8a 2020-08-20 19:21:34.819856 38109 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-20 00:29:02.840411000 Z\n- &1 2020-08-20 04:46:00.159691000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-20 21:07:30.427104395 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539927\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539927\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1741\n- 1742\n 3484 \N 189.186.90.81 c09f10a3-2079-4956-9629-27cfa135567f 2020-08-20 21:07:30.435214 38110 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zV31KG-ZFjBCEGbnAM7M\n- HJTqEcpozdV3YsxsBcQs\n 3485 \N 189.186.90.81 c09f10a3-2079-4956-9629-27cfa135567f 2020-08-20 21:07:30.455919 38111 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-19 23:24:29.990248000 Z\n- &1 2020-08-20 00:40:47.233890000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-20 21:56:00.083528810 Z\nsign_in_count:\n- 179\n- 180\n 361 \N 189.186.90.81 525a86d5-1846-430d-b88a-4dc5791da7ae 2020-08-20 21:56:00.089526 38112 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Jx5CvP29Yuk4igeQpzHb\n- dH-GfdN3WiTqdAkJM4Jt\n 362 \N 189.186.90.81 525a86d5-1846-430d-b88a-4dc5791da7ae 2020-08-20 21:56:00.104557 38113 1015 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.565E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 565.0 189.186.90.81 4664024e-b861-481a-bd16-5f6834bcaef8 2020-08-20 23:07:04.890726 38114 2748 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1015\namount: !ruby/object:BigDecimal 18:0.128983E4\ntax: !ruby/object:BigDecimal 18:0.5517E2\ndiscount: !ruby/object:BigDecimal 18:0.299E3\ntotal: !ruby/object:BigDecimal 18:0.1046E4\nstatus: 0\ndate_sale: 2020-08-20\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-509\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 401a016e-ac67-4ccf-8a38-b38406a54a67 2020-08-20 23:10:48.395656 38115 2082 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.90.81 401a016e-ac67-4ccf-8a38-b38406a54a67 2020-08-20 23:10:48.426983 38116 2106 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.90.81 401a016e-ac67-4ccf-8a38-b38406a54a67 2020-08-20 23:10:48.454112 38117 2092 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.90.81 401a016e-ac67-4ccf-8a38-b38406a54a67 2020-08-20 23:10:48.483962 38120 3684 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1015\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1046E4\nmove_type: '1'\nsale_id: 2748\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-509\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.54E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-509 189.186.90.81 975769fc-54dd-41c2-b13d-e652a9f9d4d5 2020-08-20 23:10:55.893389 38121 1039 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1014\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.58E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1133E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2133E4\nobservations: 'HAY $250 MAS EN EFECTIVO EN CAJA DE UNA BLUSA QUE SE VENDIÓ Y ESTA\n EN SISTEMA DE LA CAMPIÑA '\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.254 b5ab4160-f974-44fa-a3c6-02836a5e3175 2020-08-20 23:51:48.148897 38122 1014 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.254 b5ab4160-f974-44fa-a3c6-02836a5e3175 2020-08-20 23:51:48.164112 38123 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-20 04:46:00.159691000 Z\n- &1 2020-08-20 21:07:30.427104000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-20 23:58:16.966615505 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539927\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1742\n- 1743\n 3486 \N 189.186.90.81 64daad17-6550-40f5-b57a-78528f854cdd 2020-08-20 23:58:16.973876 38124 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HJTqEcpozdV3YsxsBcQs\n- eqCMXP2wPk3MMPQDizri\n 3487 \N 189.186.90.81 64daad17-6550-40f5-b57a-78528f854cdd 2020-08-20 23:58:16.992166 38125 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-20 00:40:47.233890000 Z\n- &1 2020-08-20 21:56:00.083528000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-20 23:58:42.150488703 Z\nsign_in_count:\n- 180\n- 181\n 363 \N 189.186.90.81 cd200676-5517-4e61-842b-ff8107578670 2020-08-20 23:58:42.156475 38126 18 User \N \N 18 User \N update ---\nunique_session_id:\n- dH-GfdN3WiTqdAkJM4Jt\n- 1qDgdaxFx6fLhDtQyjG9\n 364 \N 189.186.90.81 cd200676-5517-4e61-842b-ff8107578670 2020-08-20 23:58:42.171543 38127 1040 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1015\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1046E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.611E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1611E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.90.81 3c508068-4d7c-4298-92d2-e840359d3c7e 2020-08-21 00:35:10.399792 38128 1015 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.90.81 3c508068-4d7c-4298-92d2-e840359d3c7e 2020-08-21 00:35:10.420555 38129 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-20 21:07:30.427104000 Z\n- &1 2020-08-20 23:58:16.966615000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-21 02:19:40.051487168 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147127100\n mask_addr: 4294967295\nsign_in_count:\n- 1743\n- 1744\n 3488 \N 187.149.89.60 66396a04-0061-4af7-a410-06bbbb6b15f8 2020-08-21 02:19:40.060135 38130 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eqCMXP2wPk3MMPQDizri\n- F16zoESVJLFWQgCT1fog\n 3489 \N 187.149.89.60 66396a04-0061-4af7-a410-06bbbb6b15f8 2020-08-21 02:19:40.082547 38131 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-20 23:58:16.966615000 Z\n- &1 2020-08-21 02:19:40.051487000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-21 02:23:55.902524634 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147127100\n mask_addr: 4294967295\nsign_in_count:\n- 1744\n- 1745\n 3490 \N 187.149.89.60 278c1bd2-f18f-408c-a89b-7ba30322b3d6 2020-08-21 02:23:55.909716 38132 4 User \N \N 4 User \N update ---\nunique_session_id:\n- F16zoESVJLFWQgCT1fog\n- QzyLzDKubTVJw_j3ZyNS\n 3491 \N 187.149.89.60 278c1bd2-f18f-408c-a89b-7ba30322b3d6 2020-08-21 02:23:55.928766 38133 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-20 01:36:34.275496000 Z\n- &1 2020-08-20 06:14:05.502468000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-21 03:28:53.240906148 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945841\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729777\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729777\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538003\n mask_addr: 4294967295\nsign_in_count:\n- 211\n- 212\n 424 \N 177.228.111.147 04c0bc1e-12d2-471f-b8fd-bd623b68283b 2020-08-21 03:28:53.249103 38134 1 User \N \N 1 User \N update ---\nunique_session_id:\n- xDiZx5saoJN_ysJEVF_n\n- yU7bDEPnRVupuRKuzEq2\n 425 \N 177.228.111.147 04c0bc1e-12d2-471f-b8fd-bd623b68283b 2020-08-21 03:28:53.270087 38135 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-21 02:19:40.051487000 Z\n- &1 2020-08-21 02:23:55.902524000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-21 16:06:15.933465603 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147127100\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\nsign_in_count:\n- 1745\n- 1746\n 3492 \N 177.228.118.215 98679b83-a278-4e3f-a9a7-1baff51bf544 2020-08-21 16:06:15.953797 38136 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QzyLzDKubTVJw_j3ZyNS\n- 1RyWSsoFqx8RBzRrTdRK\n 3493 \N 177.228.118.215 98679b83-a278-4e3f-a9a7-1baff51bf544 2020-08-21 16:06:15.979403 38137 1016 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1133E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1133.0 189.186.41.254 5c1e9ebc-cce1-4da8-b26f-8f554d3d3565 2020-08-21 16:54:31.286821 38138 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-21 02:23:55.902524000 Z\n- &1 2020-08-21 16:06:15.933465000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-21 18:11:29.957887457 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147127100\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1746\n- 1747\n 3494 \N 189.186.90.81 2060d677-28f3-4f3f-80a5-5ab0f0925142 2020-08-21 18:11:29.987192 38139 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1RyWSsoFqx8RBzRrTdRK\n- yL-jzqFEZCM16XQxBCxY\n 3495 \N 189.186.90.81 2060d677-28f3-4f3f-80a5-5ab0f0925142 2020-08-21 18:11:30.022758 38160 3689 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1017\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 2750\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-510\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-510 189.186.90.81 fee23963-38f3-4ee2-822c-40f69e01f8cd 2020-08-21 21:47:08.102841 38140 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-17 18:44:13.983202000 Z\n- &1 2020-08-18 23:26:06.654107000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-21 18:12:00.602828189 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103364\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135077\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135077\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 259\n- 260\n 521 \N 189.186.90.81 5a7baba4-c3ae-4690-864e-8e54d9936cc4 2020-08-21 18:12:00.610219 38141 21 User \N \N 21 User \N update ---\nunique_session_id:\n- BvJYx8ryPZJpsgtchWxt\n- CeDkdCxsKdDv9SAT4k4e\n 522 \N 189.186.90.81 5a7baba4-c3ae-4690-864e-8e54d9936cc4 2020-08-21 18:12:00.628068 38142 1017 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.611E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 611.0 189.186.90.81 edd7b944-65db-4c89-a8da-b2f9ee46bf96 2020-08-21 18:12:33.140639 38143 3685 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2485\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.90.81 356724a4-503d-4e5c-9f2c-73b0e1807342 2020-08-21 18:13:36.096036 38144 3685 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 933\n- 1017\n 2 movimiento de efectivo por venta con folio PV1-V-1209 189.186.90.81 356724a4-503d-4e5c-9f2c-73b0e1807342 2020-08-21 18:13:36.122718 38145 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-20 06:14:05.502468000 Z\n- &1 2020-08-21 03:28:53.240906000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-21 18:32:28.873527526 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729777\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538003\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538003\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938187\n mask_addr: 4294967295\nsign_in_count:\n- 212\n- 213\n 426 \N 200.68.150.139 d5101ddd-a6fd-4894-8489-a6a8808b113f 2020-08-21 18:32:28.881903 38146 1 User \N \N 1 User \N update ---\nunique_session_id:\n- yU7bDEPnRVupuRKuzEq2\n- wpsHZysXzPFMZ_sHmyr2\n 427 \N 200.68.150.139 d5101ddd-a6fd-4894-8489-a6a8808b113f 2020-08-21 18:32:28.915076 38147 3686 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1016\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2680\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.269E3\nchange: !ruby/object:BigDecimal 18:0.269E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1278 189.186.41.254 29394df9-3f66-4190-b0e2-56c4e4d0990e 2020-08-21 18:45:25.969753 38148 3686 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1016\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2680\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.269E3\nchange: !ruby/object:BigDecimal 18:0.269E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.41.254 9021291b-ef1b-4c97-ace1-af7e923ca86e 2020-08-21 18:45:47.236681 38149 3687 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1016\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.269E3\nmove_type: '1'\nsale_id: 2680\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.269E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1278 189.186.41.254 4195e2a9-2369-4e90-b648-8f3b6180b0b7 2020-08-21 18:45:57.81021 38150 2680 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.41.254 e566507a-70cb-42ff-8bae-acdf7da394a6 2020-08-21 18:45:59.718653 38151 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-21 16:06:15.933465000 Z\n- &1 2020-08-21 18:11:29.957887000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-21 19:11:34.027272128 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\nsign_in_count:\n- 1747\n- 1748\n 3496 \N 177.228.118.215 666d3464-54e3-438b-9ef3-10259003d9e4 2020-08-21 19:11:34.063365 38152 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yL-jzqFEZCM16XQxBCxY\n- xu_uQy2azohJExF7tmyu\n 3497 \N 177.228.118.215 666d3464-54e3-438b-9ef3-10259003d9e4 2020-08-21 19:11:34.082903 38153 2749 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1016\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.55E3\nstatus: 0\ndate_sale: 2020-08-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1320\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 840fd9b9-0d02-41d7-a79d-9e6145f90a0e 2020-08-21 21:18:49.080112 38154 506 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 9 \N 189.186.41.254 840fd9b9-0d02-41d7-a79d-9e6145f90a0e 2020-08-21 21:18:49.11804 38155 2749 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 271dca4e-ae35-4652-a119-5fc77f32eceb 2020-08-21 21:19:27.154282 38156 3688 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1016\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.55E3\nmove_type: '1'\nsale_id: 2749\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1320\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.55E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1320 189.186.41.254 271dca4e-ae35-4652-a119-5fc77f32eceb 2020-08-21 21:19:27.179581 38157 2750 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1017\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-08-21\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-510\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 31884810-78e1-421a-9cc1-7bd52985352b 2020-08-21 21:47:03.125119 38158 1845 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.90.81 31884810-78e1-421a-9cc1-7bd52985352b 2020-08-21 21:47:03.153571 38159 2750 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 fee23963-38f3-4ee2-822c-40f69e01f8cd 2020-08-21 21:47:08.082426 38161 2751 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1017\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-08-21\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-511\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 650d97b9-49f4-406a-91e2-cd59df338e4f 2020-08-21 22:59:40.596384 38162 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.23E2\n- !ruby/object:BigDecimal 18:0.22E2\n 42 \N 189.186.90.81 650d97b9-49f4-406a-91e2-cd59df338e4f 2020-08-21 22:59:40.636497 38163 2751 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 0308e306-c8b4-4ea6-a01c-05005561cc7f 2020-08-21 23:00:04.074667 38164 3690 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1017\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2751\ncardnumber: 1873\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-511\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-511 189.186.90.81 0308e306-c8b4-4ea6-a01c-05005561cc7f 2020-08-21 23:00:04.096875 38165 364 Customer \N \N 21 User \N create ---\nnick_name: MATTY BARRIOS\nphone: "(667) 117-4080"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MATTY BARRIOS fue registrado. 189.186.90.81 e5bd6c8d-5cca-423e-8953-d57f6ffcd0f2 2020-08-21 23:02:22.627474 38166 2752 Sale \N \N 21 User \N create ---\ncustomer_id: 364\nuser_id: 21\nopen_cash_register_id: 1017\namount: !ruby/object:BigDecimal 18:0.2998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2998E4\nstatus: 0\ndate_sale: 2020-08-21\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-512\nexpiration_date: 2020-09-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 fd7e2270-d06b-480e-aacd-b0d00c664c68 2020-08-21 23:02:33.344134 38167 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.22E2\n- !ruby/object:BigDecimal 18:0.2E2\n 43 \N 189.186.90.81 fd7e2270-d06b-480e-aacd-b0d00c664c68 2020-08-21 23:02:33.372253 38168 3691 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1017\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 2752\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-512\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.2E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-512 189.186.90.81 823c034c-a53c-4209-9714-f944313bae81 2020-08-21 23:02:38.899442 38169 2752 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.90.81 15d58ea6-ecb3-4106-a304-7930bf0fb91a 2020-08-21 23:02:42.14533 38170 3692 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1017\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2752\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-512 189.186.90.81 79dafd12-6b9e-437b-a6ad-e81b87773a7f 2020-08-21 23:03:04.173685 38171 3693 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1017\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2752\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-512 189.186.90.81 42373c84-3b96-40cc-a919-3191e9ca085d 2020-08-21 23:03:20.702011 38172 3693 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1017\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2752\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.90.81 1fccef5f-eba6-461b-8cbe-b1ca812b8912 2020-08-21 23:03:25.353643 38173 3692 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1017\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2752\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.90.81 161f0432-fb4c-4f14-a0ce-6ed92eaee646 2020-08-21 23:03:25.952939 38174 3694 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1017\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E1\nmove_type: '1'\nsale_id: 2752\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E1\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-512 189.186.90.81 a97ad050-5b8b-486b-9dcc-f3d3e2aa4b9e 2020-08-21 23:03:36.583162 38175 3695 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1017\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.199E3\nmove_type: '1'\nsale_id: 2752\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.199E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-512 189.186.90.81 b3cc6d2a-5cbd-4249-b9da-90022465ac84 2020-08-21 23:04:24.573969 38176 1041 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1016\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.819E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.1252E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1952E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.254 f4867660-8dc2-415a-b78e-a42424e49b9d 2020-08-22 00:07:39.890249 38177 1016 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.254 f4867660-8dc2-415a-b78e-a42424e49b9d 2020-08-22 00:07:39.903873 38178 1042 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1017\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.4498E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.61E3\nphysical_cash: !ruby/object:BigDecimal 18:0.361E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.90.81 37d99b51-7870-4da8-b588-22f94df311db 2020-08-22 00:32:18.883842 38180 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-19 16:01:34.356235000 Z\n- &1 2020-08-20 18:23:11.361804000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-22 17:00:53.463626637 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094518\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094270\n mask_addr: 4294967295\nsign_in_count:\n- 620\n- 621\n 1245 \N 189.186.41.254 42a14dbd-94f2-453d-a538-e46abdf408d0 2020-08-22 17:00:53.491879 38181 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xHMykpTCEXvxo4NsTzxy\n- vxMc6wwmhW-bSek5_MCK\n 1246 \N 189.186.41.254 42a14dbd-94f2-453d-a538-e46abdf408d0 2020-08-22 17:00:53.515587 38182 1018 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1252E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1252.0 189.186.41.254 5c3ad0e5-a9ca-46e7-947b-075bd5a6c211 2020-08-22 17:01:09.413961 38183 2753 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1018\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.449E3\ntotal: !ruby/object:BigDecimal 18:0.45E3\nstatus: 0\ndate_sale: 2020-08-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1321\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 cc02b4f1-9581-4f71-9ac9-5fcaee1eac62 2020-08-22 17:01:56.49342 38184 1693 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.41.254 cc02b4f1-9581-4f71-9ac9-5fcaee1eac62 2020-08-22 17:01:56.52221 38185 2753 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 1b28c867-3dac-4cd0-8b3c-b6681db4bd18 2020-08-22 17:02:01.311243 38186 3696 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1018\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.45E3\nmove_type: '1'\nsale_id: 2753\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1321\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.45E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1321 189.186.41.254 1b28c867-3dac-4cd0-8b3c-b6681db4bd18 2020-08-22 17:02:01.331796 38187 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-21 03:28:53.240906000 Z\n- &1 2020-08-21 18:32:28.873527000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-22 18:12:44.723832547 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538003\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938187\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938187\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094270\n mask_addr: 4294967295\nsign_in_count:\n- 213\n- 214\n 428 \N 189.186.41.254 8edc1876-7d52-4cb2-a130-a6265fa38c58 2020-08-22 18:12:44.731537 38188 1 User \N \N 1 User \N update ---\nunique_session_id:\n- wpsHZysXzPFMZ_sHmyr2\n- pGZ1ysqJhJK9ys5uxaYZ\n 429 \N 189.186.41.254 8edc1876-7d52-4cb2-a130-a6265fa38c58 2020-08-22 18:12:44.749252 38189 927 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.41.254 7ccd81d5-30b9-4786-8936-244667b0d1f5 2020-08-22 18:14:18.426204 38190 921 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.254 abc7bf65-e015-40e0-ac84-85b3ce78a20a 2020-08-22 18:14:34.062388 38191 929 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.41.254 d6946f32-0c38-419a-85a3-554f0740845b 2020-08-22 18:15:12.038287 38192 663 Transfer \N \N 1 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-08-22\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.41.254 dc435aa6-18ae-4346-8d4c-e9f17696284b 2020-08-22 18:15:15.960212 38193 663 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-22\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.41.254 0fbf5a09-7eb6-4d3d-9461-c27d8b5cbe15 2020-08-22 18:15:45.278707 38194 1998 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.41.254 0fbf5a09-7eb6-4d3d-9461-c27d8b5cbe15 2020-08-22 18:15:45.297626 38195 36 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.254 0fbf5a09-7eb6-4d3d-9461-c27d8b5cbe15 2020-08-22 18:15:45.315984 38196 1997 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.41.254 0fbf5a09-7eb6-4d3d-9461-c27d8b5cbe15 2020-08-22 18:15:45.334355 38197 2754 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1018\namount: !ruby/object:BigDecimal 18:0.178356E4\ntax: !ruby/object:BigDecimal 18:0.10344E3\ndiscount: !ruby/object:BigDecimal 18:0.1137E4\ntotal: !ruby/object:BigDecimal 18:0.75E3\nstatus: 0\ndate_sale: 2020-08-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1322\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 cc26d388-9afc-4c08-b242-425e3588fd6d 2020-08-22 18:16:40.041339 38198 1934 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.254 cc26d388-9afc-4c08-b242-425e3588fd6d 2020-08-22 18:16:40.071618 38199 36 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.254 cc26d388-9afc-4c08-b242-425e3588fd6d 2020-08-22 18:16:40.095121 38200 1567 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.41.254 cc26d388-9afc-4c08-b242-425e3588fd6d 2020-08-22 18:16:40.118369 38201 2754 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 b5e9b5f6-4f15-4387-a32d-f5d4d4021402 2020-08-22 18:16:44.444139 38202 3697 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1018\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.75E3\nmove_type: '1'\nsale_id: 2754\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1322\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.75E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1322 189.186.41.254 b5e9b5f6-4f15-4387-a32d-f5d4d4021402 2020-08-22 18:16:44.467159 38203 657 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-22\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.41.254 846861e8-6e8f-40db-ab0f-70669df5e96a 2020-08-22 18:20:03.172532 38204 2195 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1112\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.254 846861e8-6e8f-40db-ab0f-70669df5e96a 2020-08-22 18:20:03.221329 38205 2196 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1035\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.254 846861e8-6e8f-40db-ab0f-70669df5e96a 2020-08-22 18:20:03.244369 38206 2197 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 830\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.254 846861e8-6e8f-40db-ab0f-70669df5e96a 2020-08-22 18:20:03.266883 38207 2198 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 705\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.254 846861e8-6e8f-40db-ab0f-70669df5e96a 2020-08-22 18:20:03.289363 38208 2199 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1070\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.254 846861e8-6e8f-40db-ab0f-70669df5e96a 2020-08-22 18:20:03.313059 38209 2200 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1034\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.254 846861e8-6e8f-40db-ab0f-70669df5e96a 2020-08-22 18:20:03.333851 38210 2201 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1076\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.254 846861e8-6e8f-40db-ab0f-70669df5e96a 2020-08-22 18:20:03.35484 38211 2202 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1260\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.254 846861e8-6e8f-40db-ab0f-70669df5e96a 2020-08-22 18:20:03.379036 38212 2203 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1085\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.254 846861e8-6e8f-40db-ab0f-70669df5e96a 2020-08-22 18:20:03.399822 38213 2204 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1116\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.254 846861e8-6e8f-40db-ab0f-70669df5e96a 2020-08-22 18:20:03.420869 38214 2205 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1081\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.254 846861e8-6e8f-40db-ab0f-70669df5e96a 2020-08-22 18:20:03.441411 38215 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-18 23:26:06.654107000 Z\n- &1 2020-08-21 18:12:00.602828000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-22 18:30:31.925753385 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183135077\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 260\n- 261\n 523 \N 189.186.90.81 060cb0f8-e307-4258-bf59-4c826eb4c1f8 2020-08-22 18:30:31.933397 38216 21 User \N \N 21 User \N update ---\nunique_session_id:\n- CeDkdCxsKdDv9SAT4k4e\n- qrS9ZtG59G2c3xYrX9Pq\n 524 \N 189.186.90.81 060cb0f8-e307-4258-bf59-4c826eb4c1f8 2020-08-22 18:30:31.955465 38217 1019 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.61E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 610.0 189.186.90.81 e41115dc-d61f-42aa-8070-ec3d5bfc6025 2020-08-22 18:41:20.469157 38218 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-21 18:11:29.957887000 Z\n- &1 2020-08-21 19:11:34.027272000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-22 19:17:18.352539254 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1748\n- 1749\n 3498 \N 189.186.90.81 4f11788d-8c80-456b-b91d-d95c30473dda 2020-08-22 19:17:18.360544 38219 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xu_uQy2azohJExF7tmyu\n- 64CsA_JKShZ6TzBLwmCP\n 3499 \N 189.186.90.81 4f11788d-8c80-456b-b91d-d95c30473dda 2020-08-22 19:17:18.381272 38220 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-21 19:11:34.027272000 Z\n- &1 2020-08-22 19:17:18.352539000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-22 19:24:31.695826625 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\nsign_in_count:\n- 1749\n- 1750\n 3500 \N 177.228.118.215 8eb4791e-ef04-483d-b31f-3ea69d729fe6 2020-08-22 19:24:31.71628 38221 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 64CsA_JKShZ6TzBLwmCP\n- LJU4KodMUtuWzeSaZssQ\n 3501 \N 177.228.118.215 8eb4791e-ef04-483d-b31f-3ea69d729fe6 2020-08-22 19:24:31.739569 38222 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-22 19:17:18.352539000 Z\n- &1 2020-08-22 19:24:31.695826000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-22 20:37:13.375908639 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1750\n- 1751\n 3502 \N 189.186.90.81 d7dff7d1-38bf-45d5-9484-294f8dcdb82b 2020-08-22 20:37:13.386271 38223 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LJU4KodMUtuWzeSaZssQ\n- 7R7XyhRvYJQWwjm3jpz8\n 3503 \N 189.186.90.81 d7dff7d1-38bf-45d5-9484-294f8dcdb82b 2020-08-22 20:37:13.412321 38224 2755 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1019\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-08-22\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-513\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 5abaa746-46c9-4f25-97c1-1b3a27268749 2020-08-22 20:54:56.122713 38225 2050 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.90.81 5abaa746-46c9-4f25-97c1-1b3a27268749 2020-08-22 20:54:56.156175 38226 2755 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 5f1c6ab8-dcf1-4c6b-a7a7-0fd06acf680a 2020-08-22 20:55:34.886905 38227 3698 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1019\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 2755\ncardnumber: 6772\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-513\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-513 189.186.90.81 5f1c6ab8-dcf1-4c6b-a7a7-0fd06acf680a 2020-08-22 20:55:34.921419 38228 3699 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1019\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2729\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-495 189.186.90.81 dfba6ba8-bb1a-4a02-8303-e813ed8e3d68 2020-08-22 21:02:06.525546 38229 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-22 19:24:31.695826000 Z\n- &1 2020-08-22 20:37:13.375908000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-22 21:11:21.232879533 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\nsign_in_count:\n- 1751\n- 1752\n 3504 \N 177.228.118.215 a42768cf-eba7-4c8e-af20-a5972642c0bf 2020-08-22 21:11:21.262319 38230 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7R7XyhRvYJQWwjm3jpz8\n- iS3g_yBW_67-xH6AYxUq\n 3505 \N 177.228.118.215 a42768cf-eba7-4c8e-af20-a5972642c0bf 2020-08-22 21:11:21.289462 38231 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-22 20:37:13.375908000 Z\n- &1 2020-08-22 21:11:21.232879000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-22 21:24:07.126839270 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1752\n- 1753\n 3506 \N 189.186.90.81 d8fd5385-c300-4171-a839-6f7315e519a7 2020-08-22 21:24:07.134513 38232 4 User \N \N 4 User \N update ---\nunique_session_id:\n- iS3g_yBW_67-xH6AYxUq\n- 1WRh5hzRngZQJuoyn48U\n 3507 \N 189.186.90.81 d8fd5385-c300-4171-a839-6f7315e519a7 2020-08-22 21:24:07.154215 38233 1044 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.41.254 01548696-41b2-46a6-864e-69c575b79e53 2020-08-22 22:04:31.634048 38234 664 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-08-22\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.41.254 ed7764b6-ff2a-4b12-815f-b426d5a708b3 2020-08-22 22:04:34.513786 38235 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-21 18:32:28.873527000 Z\n- &1 2020-08-22 18:12:44.723832000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-22 22:36:19.096015805 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938187\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094270\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094270\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938544\n mask_addr: 4294967295\nsign_in_count:\n- 214\n- 215\n 430 \N 200.68.151.240 55528518-605a-4a66-bf35-805a24d3ca83 2020-08-22 22:36:19.127429 38236 1 User \N \N 1 User \N update ---\nunique_session_id:\n- pGZ1ysqJhJK9ys5uxaYZ\n- 3wuPx4kUNRp6fxXKfZte\n 431 \N 200.68.151.240 55528518-605a-4a66-bf35-805a24d3ca83 2020-08-22 22:36:19.153037 38237 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-22 21:11:21.232879000 Z\n- &1 2020-08-22 21:24:07.126839000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-22 23:01:07.527282956 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\nsign_in_count:\n- 1753\n- 1754\n 3508 \N 177.228.118.215 92efb63d-1418-40fc-9db9-8be06c4df531 2020-08-22 23:01:07.534602 38238 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1WRh5hzRngZQJuoyn48U\n- 61NzmbzzuE6-7hmdwiZz\n 3509 \N 177.228.118.215 92efb63d-1418-40fc-9db9-8be06c4df531 2020-08-22 23:01:07.553631 38239 1043 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1018\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.12E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.23E4\ncash_fund: !ruby/object:BigDecimal 18:0.1152E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3452E4\nobservations: "hay 1000 pesos mas de efectivo en caja, se vendió 3 cosas de sistema\n de campiña de $300 y 1 vestido de $100 que no esta en el sistema \\r\\nquedo apuntado\n los códigos"\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.254 1ec3e283-68bc-4947-9b1d-298da05d0018 2020-08-22 23:59:51.673289 38240 1018 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.254 1ec3e283-68bc-4947-9b1d-298da05d0018 2020-08-22 23:59:51.692298 38241 3700 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1019\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2744\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-507 189.186.90.81 2f8d862d-8d8d-44b8-ad5a-d2b5883da277 2020-08-23 00:13:05.233351 38242 365 Customer \N \N 21 User \N create ---\nnick_name: HEYDI SICAIROS\nphone: "(667) 406-6054"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente HEYDI SICAIROS fue registrado. 189.186.90.81 4dd8be3a-4f5c-4414-9967-ad668c9b5578 2020-08-23 00:16:30.930721 38243 2756 Sale \N \N 21 User \N create ---\ncustomer_id: 365\nuser_id: 21\nopen_cash_register_id: 1019\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-08-22\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-514\nexpiration_date: 2020-09-26\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 85ed6b09-3833-41ba-8fb7-4f5133191dda 2020-08-23 00:16:43.007553 38244 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E2\n- !ruby/object:BigDecimal 18:0.19E2\n 44 \N 189.186.90.81 85ed6b09-3833-41ba-8fb7-4f5133191dda 2020-08-23 00:16:43.03785 38268 3704 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 934\n- 1021\n 2 movimiento de efectivo por venta con folio PV1-V-1211 189.186.90.81 d3885d12-226d-4936-a489-f53e6c57fc20 2020-08-24 19:04:53.354084 38245 3701 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1019\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2756\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-514\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-514 189.186.90.81 3df96d86-59bb-41f7-8b1b-b732de227dae 2020-08-23 00:16:50.948571 38246 2756 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.90.81 38f392dc-e64f-4dbd-ac1d-c7c6c1af2480 2020-08-23 00:16:52.448032 38247 1044 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1019\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.2599E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.81E3\nphysical_cash: !ruby/object:BigDecimal 18:0.231E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.90.81 5bc2a9d5-ee27-46c8-9fb2-af3905363b20 2020-08-23 00:41:09.905411 38248 1019 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.90.81 5bc2a9d5-ee27-46c8-9fb2-af3905363b20 2020-08-23 00:41:09.919028 38249 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-22 21:24:07.126839000 Z\n- &1 2020-08-22 23:01:07.527282000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-23 03:54:23.345307781 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141331\n mask_addr: 4294967295\nsign_in_count:\n- 1754\n- 1755\n 3510 \N 189.186.225.211 4b861143-62e7-4c15-b607-610117a7d856 2020-08-23 03:54:23.355518 38250 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 61NzmbzzuE6-7hmdwiZz\n- WMyGAEnxzHx1py6dEndt\n 3511 \N 189.186.225.211 4b861143-62e7-4c15-b607-610117a7d856 2020-08-23 03:54:23.381946 38251 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-20 18:23:11.361804000 Z\n- &1 2020-08-22 17:00:53.463626000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-24 16:16:34.972444885 Z\nsign_in_count:\n- 621\n- 622\n 1247 \N 189.186.41.254 dc76801e-60b8-4147-bb4b-fc13eb7bcba3 2020-08-24 16:16:35.001773 38252 2 User \N \N 2 User \N update ---\nunique_session_id:\n- vxMc6wwmhW-bSek5_MCK\n- bA8mYzygdyzHK5oQxyuW\n 1248 \N 189.186.41.254 dc76801e-60b8-4147-bb4b-fc13eb7bcba3 2020-08-24 16:16:35.035304 38253 1020 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1152E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1152.0 189.186.41.254 32e55c07-09f6-4731-97fc-e4fcc7629ec6 2020-08-24 16:16:57.298036 38254 2757 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1020\namount: !ruby/object:BigDecimal 18:0.948E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.448E3\ntotal: !ruby/object:BigDecimal 18:0.5E3\nstatus: 0\ndate_sale: 2020-08-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1323\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 21097e62-3f35-40e4-909b-4b68e76adb25 2020-08-24 16:18:15.651783 38255 1854 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.254 21097e62-3f35-40e4-909b-4b68e76adb25 2020-08-24 16:18:15.681895 38256 741 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.41.254 21097e62-3f35-40e4-909b-4b68e76adb25 2020-08-24 16:18:15.716577 38257 2757 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 d5433e72-d27a-4c64-a1cf-7dc4a7f45ae0 2020-08-24 16:18:20.053583 38258 3702 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1020\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 2757\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1323\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1323 189.186.41.254 d5433e72-d27a-4c64-a1cf-7dc4a7f45ae0 2020-08-24 16:18:20.075336 38259 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-20 21:56:00.083528000 Z\n- &1 2020-08-20 23:58:42.150488000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-24 18:23:48.879261772 Z\nsign_in_count:\n- 181\n- 182\n 365 \N 189.186.90.81 b373b67e-b571-414f-96d0-a28702cdf8c2 2020-08-24 18:23:48.885957 38260 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 1qDgdaxFx6fLhDtQyjG9\n- zNJpZrNtkWQzH8qTvkZs\n 366 \N 189.186.90.81 b373b67e-b571-414f-96d0-a28702cdf8c2 2020-08-24 18:23:48.906062 38261 1021 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.81E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 810.0 189.186.90.81 58a3730f-4cd4-42cc-a87e-2d02202f125c 2020-08-24 18:24:03.824402 38262 2758 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1021\namount: !ruby/object:BigDecimal 18:0.369E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.369E3\nstatus: 0\ndate_sale: 2020-08-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-515\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 b03139d6-7301-4d74-a414-1d2f059856b0 2020-08-24 18:24:19.512147 38263 2116 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.90.81 b03139d6-7301-4d74-a414-1d2f059856b0 2020-08-24 18:24:19.537886 38264 2758 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 1e840f28-5c1a-42df-907e-114c2bf64a7a 2020-08-24 18:24:41.765217 38265 3703 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1021\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.369E3\nmove_type: '1'\nsale_id: 2758\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-515\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.131E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-515 189.186.90.81 1e840f28-5c1a-42df-907e-114c2bf64a7a 2020-08-24 18:24:41.78957 38266 3704 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 934\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8E3\nmove_type: '1'\nsale_id: 2489\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.90.81 d3885d12-226d-4936-a489-f53e6c57fc20 2020-08-24 19:04:53.295259 38267 2489 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.90.81 d3885d12-226d-4936-a489-f53e6c57fc20 2020-08-24 19:04:53.326299 38269 3705 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.631E3\nmove_type: '1'\nsale_id: 2480\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.631E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.90.81 9616f3cd-158e-40bf-9c9d-fd8c1a5270dc 2020-08-24 19:08:53.288635 38270 3705 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 931\n- 1021\n 2 movimiento de efectivo por venta con folio PV3-V-352 189.186.90.81 9616f3cd-158e-40bf-9c9d-fd8c1a5270dc 2020-08-24 19:08:53.313233 38271 2759 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1020\namount: !ruby/object:BigDecimal 18:0.3098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.463E3\ntotal: !ruby/object:BigDecimal 18:0.2635E4\nstatus: 0\ndate_sale: 2020-08-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1324\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 186dc389-ee94-4910-838d-17545221dc67 2020-08-24 19:34:26.115495 38272 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 30 \N 189.186.41.254 186dc389-ee94-4910-838d-17545221dc67 2020-08-24 19:34:26.143983 38273 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 18 \N 189.186.41.254 186dc389-ee94-4910-838d-17545221dc67 2020-08-24 19:34:26.170383 38274 2759 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 8f213061-190b-44e7-9b3a-97e75762433b 2020-08-24 19:34:51.131038 38275 3706 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1020\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2635E4\nmove_type: '1'\nsale_id: 2759\ncardnumber: 8036\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1324\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1324 189.186.41.254 8f213061-190b-44e7-9b3a-97e75762433b 2020-08-24 19:34:51.151382 38276 2760 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1020\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2020-08-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1325\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 fa339f28-6810-441c-8e07-482fd78b070e 2020-08-24 20:39:36.293272 38277 1782 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.41.254 fa339f28-6810-441c-8e07-482fd78b070e 2020-08-24 20:39:36.339934 38278 2760 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 5d9ce3df-f0a5-44f0-af1f-6c8311dbbe94 2020-08-24 20:39:45.906608 38279 3707 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1020\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 2760\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1325\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.15E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1325 189.186.41.254 5d9ce3df-f0a5-44f0-af1f-6c8311dbbe94 2020-08-24 20:39:45.929797 38280 2761 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1020\namount: !ruby/object:BigDecimal 18:0.1169E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.584E3\ntotal: !ruby/object:BigDecimal 18:0.585E3\nstatus: 0\ndate_sale: 2020-08-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1326\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 eb8b31d7-b111-462e-8a58-916d21ce07ac 2020-08-24 21:11:34.930934 38281 641 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.41.254 eb8b31d7-b111-462e-8a58-916d21ce07ac 2020-08-24 21:11:34.96513 38282 2761 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 53e6ba15-d49f-44be-a462-9bdd81900a7a 2020-08-24 21:11:41.372011 38283 3708 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1020\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.585E3\nmove_type: '1'\nsale_id: 2761\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1326\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.585E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1326 189.186.41.254 53e6ba15-d49f-44be-a462-9bdd81900a7a 2020-08-24 21:11:41.394159 38284 2762 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1020\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-08-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1327\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 7e8e9a27-a0b3-408c-a96a-1a539cbb7a5e 2020-08-24 21:37:58.835086 38285 1653 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.41.254 7e8e9a27-a0b3-408c-a96a-1a539cbb7a5e 2020-08-24 21:37:58.88808 38286 2762 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 6cd4f3b4-ba85-4051-b62d-9fccf8ee2a68 2020-08-24 21:38:04.009605 38287 3709 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1020\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 2762\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1327\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1327 189.186.41.254 6cd4f3b4-ba85-4051-b62d-9fccf8ee2a68 2020-08-24 21:38:04.030992 38288 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-08-05 21:20:35.001241000 Z\n- &1 2020-08-07 21:01:27.705250000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-24 22:01:40.232528028 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115358\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 142\n- 143\n 286 \N 189.186.90.81 d6a8c2ff-01d1-4ee7-a452-1818626e9c6b 2020-08-24 22:01:40.254321 38289 9 User \N \N 9 User \N update ---\nunique_session_id:\n- MR6zvJ91v1CcLzy6e9d-\n- DsGkHLyYyNkwyDfNtCUs\n 287 \N 189.186.90.81 d6a8c2ff-01d1-4ee7-a452-1818626e9c6b 2020-08-24 22:01:40.275145 38290 1872 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.90.81 74909279-5270-4bbf-a09a-09b8a1b11b46 2020-08-24 22:02:32.681806 38291 1872 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.90.81 342e77b4-644e-4d8e-8269-07bda98725b0 2020-08-24 22:02:38.448835 38292 665 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-08-24\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.90.81 7e838cda-ea3d-432f-8e20-d25bae8d7c48 2020-08-24 22:02:49.68011 38293 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-20 23:58:42.150488000 Z\n- &1 2020-08-24 18:23:48.879261000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-24 22:03:15.239044239 Z\nsign_in_count:\n- 182\n- 183\n 367 \N 189.186.90.81 1047f3e7-0c7c-4b64-b077-e49bb8e364d2 2020-08-24 22:03:15.245248 38294 18 User \N \N 18 User \N update ---\nunique_session_id:\n- zNJpZrNtkWQzH8qTvkZs\n- XAkEvqU-8vXxPsGN_Qa9\n 368 \N 189.186.90.81 1047f3e7-0c7c-4b64-b077-e49bb8e364d2 2020-08-24 22:03:15.262079 38295 665 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-24\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.90.81 29d68065-f926-4896-bd36-f1e5c2fb7b4d 2020-08-24 22:03:43.972893 38296 2206 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1004\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.90.81 29d68065-f926-4896-bd36-f1e5c2fb7b4d 2020-08-24 22:03:43.998612 38297 2763 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1021\namount: !ruby/object:BigDecimal 18:0.678E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.5E2\ntotal: !ruby/object:BigDecimal 18:0.628E3\nstatus: 0\ndate_sale: 2020-08-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-516\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 98933af9-4c6a-4655-97b5-80df4e83bda2 2020-08-24 22:04:43.637697 38298 2206 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.90.81 98933af9-4c6a-4655-97b5-80df4e83bda2 2020-08-24 22:04:43.672108 38299 2110 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.90.81 98933af9-4c6a-4655-97b5-80df4e83bda2 2020-08-24 22:04:43.701641 38300 2763 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 fe6735bb-beac-4f30-83c6-ac2060b049b4 2020-08-24 22:05:15.194488 38301 3710 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1021\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.628E3\nmove_type: '1'\nsale_id: 2763\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-516\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.72E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-516 189.186.90.81 fe6735bb-beac-4f30-83c6-ac2060b049b4 2020-08-24 22:05:15.2159 38302 664 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-24\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.90.81 ae5bd951-651a-48ea-bf46-9c375f089dcd 2020-08-24 22:12:20.997154 38303 2207 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 695\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.90.81 ae5bd951-651a-48ea-bf46-9c375f089dcd 2020-08-24 22:12:21.02775 38304 649 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-24\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.90.81 8f2e8fe3-8ec3-417b-ac49-7de858695dab 2020-08-24 22:12:48.220485 38305 2206 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.90.81 8f2e8fe3-8ec3-417b-ac49-7de858695dab 2020-08-24 22:12:48.237508 38306 2208 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1012\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.90.81 8f2e8fe3-8ec3-417b-ac49-7de858695dab 2020-08-24 22:12:48.25622 38307 2209 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 998\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.90.81 8f2e8fe3-8ec3-417b-ac49-7de858695dab 2020-08-24 22:12:48.274266 38308 988 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.90.81 8f2e8fe3-8ec3-417b-ac49-7de858695dab 2020-08-24 22:12:48.289276 38309 2210 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1005\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.90.81 8f2e8fe3-8ec3-417b-ac49-7de858695dab 2020-08-24 22:12:48.30975 38310 645 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-24\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.90.81 dec733c1-5b83-4901-9812-80a42a6add27 2020-08-24 22:13:00.589273 38311 988 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.90.81 dec733c1-5b83-4901-9812-80a42a6add27 2020-08-24 22:13:00.606099 38312 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-24 18:23:48.879261000 Z\n- &1 2020-08-24 22:03:15.239044000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-24 22:13:32.528343112 Z\nsign_in_count:\n- 183\n- 184\n 369 \N 189.186.90.81 3358fd09-dde9-4248-b445-79d57e3f88ad 2020-08-24 22:13:32.534388 38313 18 User \N \N 18 User \N update ---\nunique_session_id:\n- XAkEvqU-8vXxPsGN_Qa9\n- kGzyyPzxnSNdkDAgJN2h\n 370 \N 189.186.90.81 3358fd09-dde9-4248-b445-79d57e3f88ad 2020-08-24 22:13:32.548471 38314 2206 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.90.81 31ceacc4-4d1a-4c71-a858-108923073f3f 2020-08-24 22:13:53.817193 38315 2206 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.90.81 8d67e1f2-6714-412b-8151-3d3c865167ef 2020-08-24 22:13:57.384306 38316 666 Transfer \N \N 18 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-08-24\nuser_id: 18\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.90.81 acee06a3-0407-4066-96fd-2b8548f0f630 2020-08-24 22:13:59.19536 38365 1945 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.90.81 612c7c5a-9f62-49a1-86da-b8d70d83f7b4 2020-08-25 21:57:11.365295 38366 2767 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 6e6bffd7-8595-47b8-ac8e-ea5dfb25f90b 2020-08-25 21:57:19.467974 38317 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-22 23:01:07.527282000 Z\n- &1 2020-08-23 03:54:23.345307000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-24 22:14:21.743835728 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539863\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141331\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141331\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1755\n- 1756\n 3512 \N 189.186.90.81 c0ada5cc-6e31-4e05-bfd4-ccd1d98d5dde 2020-08-24 22:14:21.751496 38318 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WMyGAEnxzHx1py6dEndt\n- Ncfy42cHdTZhQyVuPzQp\n 3513 \N 189.186.90.81 c0ada5cc-6e31-4e05-bfd4-ccd1d98d5dde 2020-08-24 22:14:21.789647 38319 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 31 \N 189.186.41.254 1a19070c-be66-4458-88c1-4bc4f43a2919 2020-08-24 22:39:29.305472 38320 667 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-08-24\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.41.254 d14f2cc0-a0bf-417d-89c7-2baa9d7b5d30 2020-08-24 22:39:31.576747 38321 666 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-24\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.41.254 45cb1c71-70cc-40f0-a3c7-6c409c09a483 2020-08-24 22:39:48.579182 38322 1872 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.41.254 45cb1c71-70cc-40f0-a3c7-6c409c09a483 2020-08-24 22:39:48.595414 38323 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-24 22:03:15.239044000 Z\n- &1 2020-08-24 22:13:32.528343000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-24 22:54:20.762888114 Z\nsign_in_count:\n- 184\n- 185\n 371 \N 189.186.90.81 eaf360b2-d32c-4f9c-a963-565edb211ade 2020-08-24 22:54:20.768994 38324 18 User \N \N 18 User \N update ---\nunique_session_id:\n- kGzyyPzxnSNdkDAgJN2h\n- yx2obc2pK4PqK9Nsk_3S\n 372 \N 189.186.90.81 eaf360b2-d32c-4f9c-a963-565edb211ade 2020-08-24 22:54:20.782291 38325 2764 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1021\namount: !ruby/object:BigDecimal 18:0.1659E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1659E4\nstatus: 0\ndate_sale: 2020-08-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-517\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 e7f019d5-b094-4a72-b09c-b31644afcbeb 2020-08-24 22:54:56.879516 38326 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 52 \N 189.186.90.81 e7f019d5-b094-4a72-b09c-b31644afcbeb 2020-08-24 22:54:56.913323 38327 1481 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 5 \N 189.186.90.81 e7f019d5-b094-4a72-b09c-b31644afcbeb 2020-08-24 22:54:56.937109 38328 2764 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 d523ec8e-3e50-4f5c-8e4b-06a56037a810 2020-08-24 22:55:06.332037 38329 3711 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1021\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1659E4\nmove_type: '1'\nsale_id: 2764\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-517\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1659E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-517 189.186.90.81 d523ec8e-3e50-4f5c-8e4b-06a56037a810 2020-08-24 22:55:06.354334 38330 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-23 03:54:23.345307000 Z\n- &1 2020-08-24 22:14:21.743835000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-24 23:13:04.357960025 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141331\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1756\n- 1757\n 3514 \N 189.186.90.81 67c29133-26f7-4ef5-82cc-6be64a28e02d 2020-08-24 23:13:04.384659 38331 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Ncfy42cHdTZhQyVuPzQp\n- WFc2bz9cx1YLkKqzhnJc\n 3515 \N 189.186.90.81 67c29133-26f7-4ef5-82cc-6be64a28e02d 2020-08-24 23:13:04.407805 38332 1045 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1020\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.432E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.14E4\ncash_fund: !ruby/object:BigDecimal 18:0.1437E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2837E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.254 55a2d2ab-6850-496a-a9bc-b36ad531239e 2020-08-24 23:54:22.593976 38333 1020 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.254 55a2d2ab-6850-496a-a9bc-b36ad531239e 2020-08-24 23:54:22.610592 38334 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-24 22:13:32.528343000 Z\n- &1 2020-08-24 22:54:20.762888000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-25 00:00:06.215853878 Z\nsign_in_count:\n- 185\n- 186\n 373 \N 189.186.90.81 c0d62b7f-ebd6-4ac9-bc85-ac9f8f812a5e 2020-08-25 00:00:06.222016 38335 18 User \N \N 18 User \N update ---\nunique_session_id:\n- yx2obc2pK4PqK9Nsk_3S\n- sXZ3jM_z4roStLKmRbFs\n 374 \N 189.186.90.81 c0d62b7f-ebd6-4ac9-bc85-ac9f8f812a5e 2020-08-25 00:00:06.235667 38336 3712 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1021\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 2571\ncardnumber: 1554\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-413 189.186.90.81 aa06edc7-e6cc-4e30-8a61-3a0ecd8ecc0d 2020-08-25 00:01:05.959087 38337 2571 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.90.81 c3f52281-6b04-4ca7-bcaf-1c2c4cd94bc3 2020-08-25 00:01:08.196971 38338 2765 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1021\namount: !ruby/object:BigDecimal 18:0.419E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.169E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-08-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-518\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 c91f0114-704a-4f7e-a8d4-728fa470a664 2020-08-25 00:47:09.503778 38339 827 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.90.81 c91f0114-704a-4f7e-a8d4-728fa470a664 2020-08-25 00:47:09.53061 38340 2765 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 a13f1774-687a-4441-8acc-3ddc433050de 2020-08-25 00:47:13.654697 38484 2780 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 0a8ad80a-c6b3-4215-97f0-5594730d6abe 2020-08-26 23:45:12.424638 38341 3713 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1021\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 2765\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-518\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-518 189.186.90.81 a13f1774-687a-4441-8acc-3ddc433050de 2020-08-25 00:47:13.682595 38342 2766 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1021\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-08-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-519\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 40e193f1-36e6-40ed-85b7-98926273cbba 2020-08-25 00:49:31.43451 38343 818 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.49E2\n- !ruby/object:BigDecimal 18:0.48E2\n 24 \N 189.186.90.81 40e193f1-36e6-40ed-85b7-98926273cbba 2020-08-25 00:49:31.457635 38344 2766 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 689ed247-15c2-4ceb-8d3b-b7fe1e19f23a 2020-08-25 00:49:35.40065 38345 3714 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1021\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49E2\nmove_type: '1'\nsale_id: 2766\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-519\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-519 189.186.90.81 689ed247-15c2-4ceb-8d3b-b7fe1e19f23a 2020-08-25 00:49:35.423517 38346 1046 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1021\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.5385E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.4731E4\ncash_fund: !ruby/object:BigDecimal 18:0.465E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5196E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.90.81 577a777f-212e-413e-8186-794def16088c 2020-08-25 01:11:37.852421 38347 1021 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.90.81 577a777f-212e-413e-8186-794def16088c 2020-08-25 01:11:37.86464 38348 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-24 22:14:21.743835000 Z\n- &1 2020-08-24 23:13:04.357960000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-25 01:24:13.826818639 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140225\n mask_addr: 4294967295\nsign_in_count:\n- 1757\n- 1758\n 3516 \N 189.186.221.129 23a95e84-5798-493c-a371-f15a022799bf 2020-08-25 01:24:13.834133 38349 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WFc2bz9cx1YLkKqzhnJc\n- ausxo4AgZNxZkeHyQNE-\n 3517 \N 189.186.221.129 23a95e84-5798-493c-a371-f15a022799bf 2020-08-25 01:24:13.852824 38350 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-22 17:00:53.463626000 Z\n- &1 2020-08-24 16:16:34.972444000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-25 17:10:37.971323743 Z\nsign_in_count:\n- 622\n- 623\n 1249 \N 189.186.41.254 dc57747d-9e84-452d-b0f0-b33d3a32f5b1 2020-08-25 17:10:38.00072 38351 2 User \N \N 2 User \N update ---\nunique_session_id:\n- bA8mYzygdyzHK5oQxyuW\n- wM_U_24c-RHALFgTobKo\n 1250 \N 189.186.41.254 dc57747d-9e84-452d-b0f0-b33d3a32f5b1 2020-08-25 17:10:38.024342 38352 1022 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1437E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1437.0 189.186.41.254 fbb4feb2-422b-4e8c-9b29-acaadaf369da 2020-08-25 17:11:36.191532 38353 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-24 23:13:04.357960000 Z\n- &1 2020-08-25 01:24:13.826818000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-25 18:55:37.812936227 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140225\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140225\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1758\n- 1759\n 3518 \N 189.186.90.81 334b53da-e837-4a32-bfda-02d287bff1a2 2020-08-25 18:55:37.845196 38354 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ausxo4AgZNxZkeHyQNE-\n- RHxzm7J3ekpvHsseqXGt\n 3519 \N 189.186.90.81 334b53da-e837-4a32-bfda-02d287bff1a2 2020-08-25 18:55:37.87557 38355 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-24 22:54:20.762888000 Z\n- &1 2020-08-25 00:00:06.215853000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-25 21:28:17.604309661 Z\nsign_in_count:\n- 186\n- 187\n 375 \N 189.186.90.81 1f2ad3f0-2ab3-4990-a62c-6ed7b0a2c9f6 2020-08-25 21:28:17.633095 38356 18 User \N \N 18 User \N update ---\nunique_session_id:\n- sXZ3jM_z4roStLKmRbFs\n- sy_jycH_zT-MTUueo-aj\n 376 \N 189.186.90.81 1f2ad3f0-2ab3-4990-a62c-6ed7b0a2c9f6 2020-08-25 21:28:17.656796 38357 1023 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.465E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 465.0 189.186.90.81 062c09ae-6034-4976-a2d2-a9f47e214be7 2020-08-25 21:28:26.94741 38358 2767 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1023\namount: !ruby/object:BigDecimal 18:0.635244E4\ntax: !ruby/object:BigDecimal 18:0.22055E3\ndiscount: !ruby/object:BigDecimal 18:0.1806E4\ntotal: !ruby/object:BigDecimal 18:0.476699E4\nstatus: 0\ndate_sale: 2020-08-25\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-520\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 612c7c5a-9f62-49a1-86da-b8d70d83f7b4 2020-08-25 21:57:11.185052 38359 1552 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 5 \N 189.186.90.81 612c7c5a-9f62-49a1-86da-b8d70d83f7b4 2020-08-25 21:57:11.216646 38360 1533 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.90.81 612c7c5a-9f62-49a1-86da-b8d70d83f7b4 2020-08-25 21:57:11.25022 38361 1583 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.90.81 612c7c5a-9f62-49a1-86da-b8d70d83f7b4 2020-08-25 21:57:11.273566 38362 1538 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.90.81 612c7c5a-9f62-49a1-86da-b8d70d83f7b4 2020-08-25 21:57:11.296235 38363 970 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.90.81 612c7c5a-9f62-49a1-86da-b8d70d83f7b4 2020-08-25 21:57:11.318959 38364 1589 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.90.81 612c7c5a-9f62-49a1-86da-b8d70d83f7b4 2020-08-25 21:57:11.343416 38367 3715 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1023\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.476699E4\nmove_type: '1'\nsale_id: 2767\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-520\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.476699E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-520 189.186.90.81 6e6bffd7-8595-47b8-ac8e-ea5dfb25f90b 2020-08-25 21:57:19.491518 38368 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-25 01:24:13.826818000 Z\n- &1 2020-08-25 18:55:37.812936000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-25 22:18:45.446356667 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183140225\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1759\n- 1760\n 3520 \N 189.186.90.81 ce405a39-8173-4e49-861a-bc968177a508 2020-08-25 22:18:45.452966 38369 4 User \N \N 4 User \N update ---\nunique_session_id:\n- RHxzm7J3ekpvHsseqXGt\n- d1vQLtUQpY1N9wPN2P5N\n 3521 \N 189.186.90.81 ce405a39-8173-4e49-861a-bc968177a508 2020-08-25 22:18:45.469443 38370 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-25 00:00:06.215853000 Z\n- &1 2020-08-25 21:28:17.604309000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-25 22:22:17.141076448 Z\nsign_in_count:\n- 187\n- 188\n 377 \N 189.186.90.81 76df2bc2-99e9-401f-bcce-07d5dd253a4b 2020-08-25 22:22:17.147459 38371 18 User \N \N 18 User \N update ---\nunique_session_id:\n- sy_jycH_zT-MTUueo-aj\n- mqAhphdvbyxJecZ1WVcJ\n 378 \N 189.186.90.81 76df2bc2-99e9-401f-bcce-07d5dd253a4b 2020-08-25 22:22:17.163143 38372 667 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-25\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.90.81 2128b315-57ed-442d-b0ee-9fb02d786b96 2020-08-25 22:22:31.783055 38373 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.9E1\n 53 \N 189.186.90.81 2128b315-57ed-442d-b0ee-9fb02d786b96 2020-08-25 22:22:31.800359 38374 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 19 \N 189.186.41.254 7d50bc8f-4f9f-4424-9181-fa6c58aadbd7 2020-08-25 22:24:03.28186 38375 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 20 \N 189.186.41.254 ec27a572-cf0b-47a5-9ef4-0e1dba7f54b7 2020-08-25 22:24:06.262869 38376 668 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-08-25\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.41.254 0a92ac12-e477-4aa6-8a85-103120c867a0 2020-08-25 22:24:21.415432 38377 658 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-25\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.41.254 81279654-b536-4ab7-99d6-448f9de910d1 2020-08-25 22:24:56.604399 38378 2211 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1040\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.254 81279654-b536-4ab7-99d6-448f9de910d1 2020-08-25 22:24:56.684619 38379 2212 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1066\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.254 81279654-b536-4ab7-99d6-448f9de910d1 2020-08-25 22:24:56.744922 38380 2213 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1045\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.41.254 81279654-b536-4ab7-99d6-448f9de910d1 2020-08-25 22:24:56.788788 38381 668 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-25\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.90.81 df2d56f4-a23d-4e71-88ec-348777cb8b2d 2020-08-25 22:25:31.692599 38382 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.19E2\n- !ruby/object:BigDecimal 18:0.21E2\n 45 \N 189.186.90.81 df2d56f4-a23d-4e71-88ec-348777cb8b2d 2020-08-25 22:25:31.709988 38383 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 32 \N 189.186.41.254 f7ff2202-c9fa-429f-bdc2-b2ae8e348ab9 2020-08-25 22:25:56.747143 38384 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 33 \N 189.186.41.254 90c7f9d3-0f48-4f9b-a268-77c8ae00edf8 2020-08-25 22:26:33.856767 38385 2768 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1023\namount: !ruby/object:BigDecimal 18:0.1674E4\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.899E3\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-08-25\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-521\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 16b5f63e-5190-4a82-8f5e-c1ce51eda7be 2020-08-25 22:26:41.592174 38386 855 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.29E2\n- !ruby/object:BigDecimal 18:0.27E2\n 5 \N 189.186.90.81 16b5f63e-5190-4a82-8f5e-c1ce51eda7be 2020-08-25 22:26:41.625398 38387 2768 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 c26b6e24-fb03-49b7-abe8-644440cd177f 2020-08-25 22:27:00.202638 38388 3716 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1023\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 2768\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-521\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-521 189.186.90.81 c26b6e24-fb03-49b7-abe8-644440cd177f 2020-08-25 22:27:00.223377 38389 2769 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1022\namount: !ruby/object:BigDecimal 18:0.134972E4\ntax: !ruby/object:BigDecimal 18:0.4828E2\ndiscount: !ruby/object:BigDecimal 18:0.698E3\ntotal: !ruby/object:BigDecimal 18:0.7E3\nstatus: 0\ndate_sale: 2020-08-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1328\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 cba086ad-c9a8-49f5-a0de-a06fc49f0ccb 2020-08-25 22:50:33.890008 38390 58 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 11 \N 189.186.41.254 cba086ad-c9a8-49f5-a0de-a06fc49f0ccb 2020-08-25 22:50:33.915003 38391 1642 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.41.254 cba086ad-c9a8-49f5-a0de-a06fc49f0ccb 2020-08-25 22:50:33.93577 38392 2769 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 3b10e659-60b7-4b97-a5da-07c994ca9f76 2020-08-25 22:50:40.335488 38393 3717 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1022\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.7E3\nmove_type: '1'\nsale_id: 2769\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1328\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1328 189.186.41.254 3b10e659-60b7-4b97-a5da-07c994ca9f76 2020-08-25 22:50:40.355902 38394 2770 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1023\namount: !ruby/object:BigDecimal 18:0.1459E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.111E4\nstatus: 0\ndate_sale: 2020-08-25\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-522\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 88d59a10-3714-4733-a378-5e6a93bbc0f6 2020-08-25 22:59:28.320566 38395 777 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.90.81 88d59a10-3714-4733-a378-5e6a93bbc0f6 2020-08-25 22:59:28.34619 38396 1481 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 6 \N 189.186.90.81 88d59a10-3714-4733-a378-5e6a93bbc0f6 2020-08-25 22:59:28.366604 38397 2770 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 1e2690b7-2a84-46ae-b9a3-c4f82e04afc9 2020-08-25 23:00:18.127421 38398 3718 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1023\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.111E4\nmove_type: '1'\nsale_id: 2770\ncardnumber: 4512\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-522\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-522 189.186.90.81 1e2690b7-2a84-46ae-b9a3-c4f82e04afc9 2020-08-25 23:00:18.150604 38399 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-25 18:55:37.812936000 Z\n- &1 2020-08-25 22:18:45.446356000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-25 23:05:03.787373292 Z\nsign_in_count:\n- 1760\n- 1761\n 3522 \N 189.186.90.81 7b0695d2-0a92-413b-9ffd-c4549a7af6b0 2020-08-25 23:05:03.794091 38400 4 User \N \N 4 User \N update ---\nunique_session_id:\n- d1vQLtUQpY1N9wPN2P5N\n- MAwvEz2yHGB8SaCzdEAj\n 3523 \N 189.186.90.81 7b0695d2-0a92-413b-9ffd-c4549a7af6b0 2020-08-25 23:05:03.809488 38401 363 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-141\namount: !ruby/object:BigDecimal 18:0.7495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.7495E3\nobservations: ''\npurchase_date: 2020-08-25\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-141 por $ 749.5 MXN creada. 189.186.41.254 bf3e937a-578c-48e1-a195-c8f856d4c7e9 2020-08-25 23:10:18.687273 38402 601 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 15 \N 189.186.41.254 bf3e937a-578c-48e1-a195-c8f856d4c7e9 2020-08-25 23:10:18.710294 38403 2771 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1022\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.749E3\ntotal: !ruby/object:BigDecimal 18:0.75E3\nstatus: 0\ndate_sale: 2020-08-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1329\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 a46d0505-b140-47a0-9269-5c3a71f74ecb 2020-08-25 23:14:01.647197 38404 601 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 16 \N 189.186.41.254 a46d0505-b140-47a0-9269-5c3a71f74ecb 2020-08-25 23:14:01.673331 38405 2771 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 653816a9-265c-4071-b697-c7c65ee2d73b 2020-08-25 23:14:06.544221 38406 3719 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1022\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.75E3\nmove_type: '1'\nsale_id: 2771\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1329\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.75E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1329 189.186.41.254 653816a9-265c-4071-b697-c7c65ee2d73b 2020-08-25 23:14:06.56608 38407 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-25 21:28:17.604309000 Z\n- &1 2020-08-25 22:22:17.141076000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-25 23:46:20.346184933 Z\nsign_in_count:\n- 188\n- 189\n 379 \N 189.186.90.81 b199feb4-3fb4-492a-82dc-4857e21aca39 2020-08-25 23:46:20.365587 38408 18 User \N \N 18 User \N update ---\nunique_session_id:\n- mqAhphdvbyxJecZ1WVcJ\n- Exf3DTG8xMmuehURMstA\n 380 \N 189.186.90.81 b199feb4-3fb4-492a-82dc-4857e21aca39 2020-08-25 23:46:20.385368 38409 2772 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1023\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.749E3\ntotal: !ruby/object:BigDecimal 18:0.75E3\nstatus: 0\ndate_sale: 2020-08-25\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-523\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 d43b9732-2491-4969-861f-57590808ebe1 2020-08-25 23:50:07.67185 38410 1520 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.90.81 d43b9732-2491-4969-861f-57590808ebe1 2020-08-25 23:50:07.712462 38411 2772 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 02e18ecb-932f-4800-942b-87c6f538023e 2020-08-25 23:50:15.138685 38412 3720 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1023\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.75E3\nmove_type: '1'\nsale_id: 2772\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-523\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.15E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-523 189.186.90.81 02e18ecb-932f-4800-942b-87c6f538023e 2020-08-25 23:50:15.160298 38413 1047 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1022\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.145E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.1387E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2887E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.254 b63e0384-d3df-4ba7-a43a-e85808b9ad34 2020-08-25 23:54:06.319715 38414 1022 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.254 b63e0384-d3df-4ba7-a43a-e85808b9ad34 2020-08-25 23:54:06.334676 38524 2217 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1296\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.90.81 56fb1eab-e8ed-4e84-be99-032e524d1640 2020-08-27 19:29:32.464956 38415 3721 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1006\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2721\ncardnumber: 5566\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.90.81 f393a43e-c4ce-468a-bc75-65efedba36dc 2020-08-26 00:17:23.392655 38416 3721 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 1006\n- 1023\n 2 movimiento de efectivo por venta con folio PV3-V-493 189.186.90.81 f393a43e-c4ce-468a-bc75-65efedba36dc 2020-08-26 00:17:23.42429 38417 3722 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.7199E2\nmove_type: '1'\nsale_id: 2488\ncardnumber: 2366\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.90.81 ccd88012-f2ff-44e2-94c8-0e1e9920f5b9 2020-08-26 00:18:05.992922 38418 2488 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.90.81 ccd88012-f2ff-44e2-94c8-0e1e9920f5b9 2020-08-26 00:18:06.012656 38419 3722 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 931\n- 1023\n 2 movimiento de efectivo por venta con folio PV3-V-358 189.186.90.81 ccd88012-f2ff-44e2-94c8-0e1e9920f5b9 2020-08-26 00:18:06.026086 38420 3723 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.8E3\nmove_type: '1'\nsale_id: 2491\ncardnumber: 1155\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.90.81 10e994e5-d3cb-4c23-98d3-73e61405fd0a 2020-08-26 00:18:33.066019 38421 2491 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.90.81 10e994e5-d3cb-4c23-98d3-73e61405fd0a 2020-08-26 00:18:33.089763 38422 2516 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.90.81 10e994e5-d3cb-4c23-98d3-73e61405fd0a 2020-08-26 00:18:33.108175 38423 3723 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 931\n- 1023\n 2 movimiento de efectivo por venta con folio PV3-V-360 189.186.90.81 10e994e5-d3cb-4c23-98d3-73e61405fd0a 2020-08-26 00:18:33.121814 38424 3724 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 988\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2663\ncardnumber: 5456\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.90.81 5f839065-d7d9-4e22-b00e-9000d0485755 2020-08-26 00:19:27.518331 38425 3724 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 988\n- 1023\n 2 movimiento de efectivo por venta con folio PV3-V-472 189.186.90.81 5f839065-d7d9-4e22-b00e-9000d0485755 2020-08-26 00:19:27.540279 38426 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-25 22:18:45.446356000 Z\n- &1 2020-08-25 23:05:03.787373000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-26 00:27:40.386525552 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539375\n mask_addr: 4294967295\nsign_in_count:\n- 1761\n- 1762\n 3524 \N 177.228.116.239 691ff314-7656-4d3f-9a4f-d3df4985bda0 2020-08-26 00:27:40.393283 38427 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MAwvEz2yHGB8SaCzdEAj\n- W_3dV1nrVze4oU-5YxHG\n 3525 \N 177.228.116.239 691ff314-7656-4d3f-9a4f-d3df4985bda0 2020-08-26 00:27:40.40988 38428 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-25 22:22:17.141076000 Z\n- &1 2020-08-25 23:46:20.346184000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-26 00:47:24.208385958 Z\nsign_in_count:\n- 189\n- 190\n 381 \N 189.186.90.81 ae6379bb-307d-4061-80f8-67cb6dcfce3a 2020-08-26 00:47:24.214644 38429 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Exf3DTG8xMmuehURMstA\n- Wc9W4nDu65Sx8dXY1L4D\n 382 \N 189.186.90.81 ae6379bb-307d-4061-80f8-67cb6dcfce3a 2020-08-26 00:47:24.228927 38430 2773 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1023\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.284E3\ntotal: !ruby/object:BigDecimal 18:0.1615E4\nstatus: 0\ndate_sale: 2020-08-25\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-524\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 beab585f-a1c8-4810-95be-6e50dab76f22 2020-08-26 00:48:46.725007 38431 1036 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.90.81 beab585f-a1c8-4810-95be-6e50dab76f22 2020-08-26 00:48:46.750789 38432 2773 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 ca96a902-c462-4fde-b6cf-e232134fcbd6 2020-08-26 00:48:58.731785 38433 3725 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1023\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1615E4\nmove_type: '1'\nsale_id: 2773\ncardnumber: 1529\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-524\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-524 189.186.90.81 ca96a902-c462-4fde-b6cf-e232134fcbd6 2020-08-26 00:48:58.753318 38434 2774 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1023\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.749E3\ntotal: !ruby/object:BigDecimal 18:0.75E3\nstatus: 0\ndate_sale: 2020-08-25\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-525\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 ac5c1c52-cef7-46a3-836a-b2853ee9034c 2020-08-26 01:19:09.3328 38435 1520 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.90.81 ac5c1c52-cef7-46a3-836a-b2853ee9034c 2020-08-26 01:19:09.371832 38436 2774 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 757b0eb8-fdbc-496c-a81d-b656698a0f17 2020-08-26 01:19:16.951905 38437 3726 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1023\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.75E3\nmove_type: '1'\nsale_id: 2774\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-525\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.75E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-525 189.186.90.81 757b0eb8-fdbc-496c-a81d-b656698a0f17 2020-08-26 01:19:16.983537 38567 1642 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.41.254 f4de9dcc-e82d-468c-9f92-b587dd2ef750 2020-08-27 22:29:39.946113 38568 2784 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 1d6c66f0-0a98-4347-bc82-891cd5fce73b 2020-08-27 22:30:08.503639 38438 1048 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1023\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1226298E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.67E4\ncash_fund: !ruby/object:BigDecimal 18:0.93E3\nphysical_cash: !ruby/object:BigDecimal 18:0.763E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.90.81 bd35f95e-5933-44dc-8faa-9a2942d7f80f 2020-08-26 01:25:16.189951 38439 1023 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.90.81 bd35f95e-5933-44dc-8faa-9a2942d7f80f 2020-08-26 01:25:16.203737 38440 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-22 18:12:44.723832000 Z\n- &1 2020-08-22 22:36:19.096015000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-26 02:36:35.897765725 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094270\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938544\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938544\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538003\n mask_addr: 4294967295\nsign_in_count:\n- 215\n- 216\n 432 \N 177.228.111.147 deac8617-df9a-4d30-aaae-d4a25ef0a606 2020-08-26 02:36:35.926573 38441 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 3wuPx4kUNRp6fxXKfZte\n- WEcotfw5Khkh-jFZEkqk\n 433 \N 177.228.111.147 deac8617-df9a-4d30-aaae-d4a25ef0a606 2020-08-26 02:36:35.95129 38442 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-25 23:05:03.787373000 Z\n- &1 2020-08-26 00:27:40.386525000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-26 03:32:16.974008830 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539375\n mask_addr: 4294967295\nsign_in_count:\n- 1762\n- 1763\n 3526 \N 177.228.116.239 9451aa23-ac38-4649-9309-92a7c614bbc0 2020-08-26 03:32:16.980928 38443 4 User \N \N 4 User \N update ---\nunique_session_id:\n- W_3dV1nrVze4oU-5YxHG\n- ztqMbVxikb81bza4SiYm\n 3527 \N 177.228.116.239 9451aa23-ac38-4649-9309-92a7c614bbc0 2020-08-26 03:32:17.000906 38444 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-26 00:27:40.386525000 Z\n- &1 2020-08-26 03:32:16.974008000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-26 15:45:56.885039384 Z\nsign_in_count:\n- 1763\n- 1764\n 3528 \N 177.228.116.239 6d807061-9279-4e32-9a4e-d3a39667e73f 2020-08-26 15:45:56.911574 38445 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ztqMbVxikb81bza4SiYm\n- ZRruPPhM3NKUZAaNky5g\n 3529 \N 177.228.116.239 6d807061-9279-4e32-9a4e-d3a39667e73f 2020-08-26 15:45:56.937833 38446 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-24 16:16:34.972444000 Z\n- &1 2020-08-25 17:10:37.971323000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-26 15:56:21.820897822 Z\nsign_in_count:\n- 623\n- 624\n 1251 \N 189.186.41.254 0294ddf0-df67-425b-9ae6-6b2236faa1af 2020-08-26 15:56:21.826385 38447 2 User \N \N 2 User \N update ---\nunique_session_id:\n- wM_U_24c-RHALFgTobKo\n- o-QAQZZvvM4rCbz1NuzV\n 1252 \N 189.186.41.254 0294ddf0-df67-425b-9ae6-6b2236faa1af 2020-08-26 15:56:21.840947 38448 1024 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1387E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1387.0 189.186.41.254 82c2dd06-39c2-4f8d-8e6e-e072b557e36c 2020-08-26 15:57:22.867105 38449 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-21 18:12:00.602828000 Z\n- &1 2020-08-22 18:30:31.925753000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-26 18:32:02.179576849 Z\nsign_in_count:\n- 261\n- 262\n 525 \N 189.186.90.81 74b0e0e4-a5cf-48fb-bfc8-0a1f8535c1c5 2020-08-26 18:32:02.198869 38450 21 User \N \N 21 User \N update ---\nunique_session_id:\n- qrS9ZtG59G2c3xYrX9Pq\n- S-xb2M86F1zGRAx-EAqN\n 526 \N 189.186.90.81 74b0e0e4-a5cf-48fb-bfc8-0a1f8535c1c5 2020-08-26 18:32:02.219929 38451 1025 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.93E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 930.0 189.186.90.81 9c8933d4-9706-4e54-9964-3207c9277aee 2020-08-26 18:32:17.313772 38452 2775 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1025\namount: !ruby/object:BigDecimal 18:0.494E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.494E3\nstatus: 0\ndate_sale: 2020-08-26\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-526\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 2e14c255-4d90-41f6-87d4-1b9725cef38d 2020-08-26 18:32:54.525852 38453 1727 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.90.81 2e14c255-4d90-41f6-87d4-1b9725cef38d 2020-08-26 18:32:54.555376 38454 2775 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 1024f306-8b0b-4a4e-a258-49f940df4abc 2020-08-26 18:33:00.205066 38455 3727 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1025\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.494E3\nmove_type: '1'\nsale_id: 2775\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-526\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.6E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-526 189.186.90.81 1024f306-8b0b-4a4e-a258-49f940df4abc 2020-08-26 18:33:00.238963 38456 2776 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1025\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-08-26\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-527\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 bd0b9614-4a5b-4294-8277-76c55a0f6bc0 2020-08-26 19:15:28.427486 38457 1929 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.90.81 bd0b9614-4a5b-4294-8277-76c55a0f6bc0 2020-08-26 19:15:28.456387 38458 2776 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 42330032-d85a-490e-b538-9a4b5c153c67 2020-08-26 19:15:57.234367 38459 3728 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1025\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 2776\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-527\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-527 189.186.90.81 42330032-d85a-490e-b538-9a4b5c153c67 2020-08-26 19:15:57.262 38460 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-26 03:32:16.974008000 Z\n- &1 2020-08-26 15:45:56.885039000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-26 19:33:10.558515070 Z\nsign_in_count:\n- 1764\n- 1765\n 3530 \N 177.228.116.239 36d3390d-bfa6-4368-bf3b-c8e24f50c2ad 2020-08-26 19:33:10.564423 38461 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZRruPPhM3NKUZAaNky5g\n- G-C_1zTMe5Lz5hN3mM1J\n 3531 \N 177.228.116.239 36d3390d-bfa6-4368-bf3b-c8e24f50c2ad 2020-08-26 19:33:10.581062 38462 2777 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1024\namount: !ruby/object:BigDecimal 18:0.225666E4\ntax: !ruby/object:BigDecimal 18:0.11034E3\ndiscount: !ruby/object:BigDecimal 18:0.1567E4\ntotal: !ruby/object:BigDecimal 18:0.8E3\nstatus: 0\ndate_sale: 2020-08-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1330\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 bac554d2-3a19-46df-b25d-f3b94510985b 2020-08-26 20:26:35.22548 38463 235 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.41.254 bac554d2-3a19-46df-b25d-f3b94510985b 2020-08-26 20:26:35.253457 38464 627 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.41.254 bac554d2-3a19-46df-b25d-f3b94510985b 2020-08-26 20:26:35.290562 38465 84 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.41.254 bac554d2-3a19-46df-b25d-f3b94510985b 2020-08-26 20:26:35.314908 38466 2777 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 896bb244-37eb-41ef-b65d-142befe17cc2 2020-08-26 20:26:39.684976 38467 3729 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1024\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.8E3\nmove_type: '1'\nsale_id: 2777\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1330\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1330 189.186.41.254 896bb244-37eb-41ef-b65d-142befe17cc2 2020-08-26 20:26:39.705289 38468 2778 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1025\namount: !ruby/object:BigDecimal 18:0.189E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.189E3\nstatus: 0\ndate_sale: 2020-08-26\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-528\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 6ea623be-67c8-41d3-a0e1-d49083a8b4ff 2020-08-26 21:59:40.130151 38469 2121 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.90.81 6ea623be-67c8-41d3-a0e1-d49083a8b4ff 2020-08-26 21:59:40.155951 38470 2778 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 012f4115-e332-4ec2-af86-5d26b306ea76 2020-08-26 21:59:50.657957 38471 3730 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1025\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.189E3\nmove_type: '1'\nsale_id: 2778\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-528\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.311E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-528 189.186.90.81 012f4115-e332-4ec2-af86-5d26b306ea76 2020-08-26 21:59:50.67983 38472 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-26 15:45:56.885039000 Z\n- &1 2020-08-26 19:33:10.558515000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-26 22:35:37.829711547 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539375\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1765\n- 1766\n 3532 \N 189.186.90.81 cdb801e6-250a-460f-a285-1e188764c91d 2020-08-26 22:35:37.836067 38473 4 User \N \N 4 User \N update ---\nunique_session_id:\n- G-C_1zTMe5Lz5hN3mM1J\n- fyK7ea2ud6grQ5sV5rDG\n 3533 \N 189.186.90.81 cdb801e6-250a-460f-a285-1e188764c91d 2020-08-26 22:35:37.868586 38474 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-26 19:33:10.558515000 Z\n- &1 2020-08-26 22:35:37.829711000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-26 23:19:03.075294162 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539375\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946306\n mask_addr: 4294967295\nsign_in_count:\n- 1766\n- 1767\n 3534 \N 200.68.182.66 52b46c06-6ac3-4a77-9bd1-3c21185170ec 2020-08-26 23:19:03.082966 38475 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fyK7ea2ud6grQ5sV5rDG\n- 5y88_fDxzEqRkwgByzfn\n 3535 \N 200.68.182.66 52b46c06-6ac3-4a77-9bd1-3c21185170ec 2020-08-26 23:19:03.101423 38476 2779 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1025\namount: !ruby/object:BigDecimal 18:0.6196E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6196E4\nstatus: 0\ndate_sale: 2020-08-26\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-529\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 3a7ff0cf-1864-44ef-acb7-9ee3dc2b5164 2020-08-26 23:41:58.789589 38477 1832 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.5E1\n 14 \N 189.186.90.81 3a7ff0cf-1864-44ef-acb7-9ee3dc2b5164 2020-08-26 23:41:58.813844 38478 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.21E2\n- !ruby/object:BigDecimal 18:0.19E2\n 46 \N 189.186.90.81 3a7ff0cf-1864-44ef-acb7-9ee3dc2b5164 2020-08-26 23:41:58.834213 38479 2779 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 0dd93040-3589-403e-a436-1669f10b8dee 2020-08-26 23:42:40.381009 38480 3731 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1025\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E4\nmove_type: '1'\nsale_id: 2779\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-529\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-529 189.186.90.81 0dd93040-3589-403e-a436-1669f10b8dee 2020-08-26 23:42:40.401742 38481 3732 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1025\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.196E3\nmove_type: '1'\nsale_id: 2779\ncardnumber: 7799\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-529\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-529 189.186.90.81 d6ed9c84-1da0-4504-8aac-805435feb8fd 2020-08-26 23:43:01.193435 38482 2780 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1025\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-08-26\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-530\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 440e97c0-c583-4331-9412-b21619db2f82 2020-08-26 23:44:32.817533 38483 2028 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.90.81 440e97c0-c583-4331-9412-b21619db2f82 2020-08-26 23:44:32.847004 38485 3733 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1025\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2780\ncardnumber: 7799\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-530\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-530 189.186.90.81 0a8ad80a-c6b3-4215-97f0-5594730d6abe 2020-08-26 23:45:12.444773 38486 1049 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1024\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.8E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.9E3\ncash_fund: !ruby/object:BigDecimal 18:0.1287E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2187E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.254 08a59f93-ccd4-4c42-a913-bbf7b875474f 2020-08-26 23:52:23.348989 38487 1024 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.254 08a59f93-ccd4-4c42-a913-bbf7b875474f 2020-08-26 23:52:23.363576 38488 2781 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1025\namount: !ruby/object:BigDecimal 18:0.1667E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.548E3\ntotal: !ruby/object:BigDecimal 18:0.1119E4\nstatus: 0\ndate_sale: 2020-08-26\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-531\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 0f31c3b1-2b2f-42f8-abc9-d33024f59cd8 2020-08-27 00:12:18.660766 38489 1589 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.90.81 0f31c3b1-2b2f-42f8-abc9-d33024f59cd8 2020-08-27 00:12:18.689186 38490 970 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.90.81 0f31c3b1-2b2f-42f8-abc9-d33024f59cd8 2020-08-27 00:12:18.710938 38491 2111 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.90.81 0f31c3b1-2b2f-42f8-abc9-d33024f59cd8 2020-08-27 00:12:18.734671 38492 2781 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 44a7989f-7d03-4c6d-811e-74fe0ebfb23c 2020-08-27 00:12:26.506311 38493 3734 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1025\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1119E4\nmove_type: '1'\nsale_id: 2781\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-531\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1119E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-531 189.186.90.81 44a7989f-7d03-4c6d-811e-74fe0ebfb23c 2020-08-27 00:12:26.528745 38494 2782 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1025\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-08-26\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-532\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 7a13ab02-4bb1-4f6d-b73f-0d3418e0eb60 2020-08-27 01:17:41.964947 38495 1974 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.90.81 7a13ab02-4bb1-4f6d-b73f-0d3418e0eb60 2020-08-27 01:17:41.992307 38496 2782 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 a631633c-a2cd-4337-8536-69c91323098a 2020-08-27 01:17:51.773699 38497 3735 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1025\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 2782\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-532\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-532 189.186.90.81 a631633c-a2cd-4337-8536-69c91323098a 2020-08-27 01:17:51.80025 38498 324 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 1025\nquantity: !ruby/object:BigDecimal 18:0.1119E4\nstatus: 1\nobservations: ENTREGA DE SERVICIO A DOMICILIO\nexpense_date: 2020-08-26\nexpense_code: PV3-E-37\n 1 Egreso por 1119.0 registrado 189.186.90.81 26a18c9b-31ad-4aeb-8ff5-e692d7e9b810 2020-08-27 01:24:39.795694 38499 3736 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1025\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1119E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 324\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.90.81 26a18c9b-31ad-4aeb-8ff5-e692d7e9b810 2020-08-27 01:24:39.81711 38500 1050 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1025\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.11295E5\namount_out: !ruby/object:BigDecimal 18:0.1119E4\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.85E4\ncash_fund: !ruby/object:BigDecimal 18:0.911E3\nphysical_cash: !ruby/object:BigDecimal 18:0.9411E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.90.81 59996a2a-1cef-4047-bb73-b0e4ceaff4ff 2020-08-27 01:28:16.17451 38501 1025 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.90.81 59996a2a-1cef-4047-bb73-b0e4ceaff4ff 2020-08-27 01:28:16.202452 38502 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-26 22:35:37.829711000 Z\n- &1 2020-08-26 23:19:03.075294000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-27 02:09:59.085834563 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946306\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946306\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085197\n mask_addr: 4294967295\nsign_in_count:\n- 1767\n- 1768\n 3536 \N 189.186.6.141 f83f352d-1bb4-45b0-83b7-ca5229297d86 2020-08-27 02:09:59.107498 38503 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5y88_fDxzEqRkwgByzfn\n- 3pZ-jy_wzizS7whz3ese\n 3537 \N 189.186.6.141 f83f352d-1bb4-45b0-83b7-ca5229297d86 2020-08-27 02:09:59.134847 38504 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-26 23:19:03.075294000 Z\n- &1 2020-08-27 02:09:59.085834000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-27 02:10:16.004052141 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946306\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085197\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085197\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539375\n mask_addr: 4294967295\nsign_in_count:\n- 1768\n- 1769\n 3538 \N 177.228.116.239 df982bc5-7d75-42aa-aa77-4564e9a87fae 2020-08-27 02:10:16.011991 38505 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3pZ-jy_wzizS7whz3ese\n- cvfbMVq6G773svRK-57A\n 3539 \N 177.228.116.239 df982bc5-7d75-42aa-aa77-4564e9a87fae 2020-08-27 02:10:16.031538 38506 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-27 02:09:59.085834000 Z\n- &1 2020-08-27 02:10:16.004052000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-27 02:10:50.171175795 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085197\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539375\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539375\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085197\n mask_addr: 4294967295\nsign_in_count:\n- 1769\n- 1770\n 3540 \N 189.186.6.141 93269dba-fb40-4d89-8178-c4742baa442e 2020-08-27 02:10:50.182618 38507 4 User \N \N 4 User \N update ---\nunique_session_id:\n- cvfbMVq6G773svRK-57A\n- zdchjyE1DLnC7ytjtNo4\n 3541 \N 189.186.6.141 93269dba-fb40-4d89-8178-c4742baa442e 2020-08-27 02:10:50.206018 38508 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-22 18:30:31.925753000 Z\n- &1 2020-08-26 18:32:02.179576000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-27 04:26:09.063845755 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085197\n mask_addr: 4294967295\nsign_in_count:\n- 262\n- 263\n 527 \N 189.186.6.141 04bdd1e3-62c6-467b-b960-65aee4a1cea3 2020-08-27 04:26:09.073498 38509 21 User \N \N 21 User \N update ---\nunique_session_id:\n- S-xb2M86F1zGRAx-EAqN\n- VAsPRzxocroSG-KybxTT\n 528 \N 189.186.6.141 04bdd1e3-62c6-467b-b960-65aee4a1cea3 2020-08-27 04:26:09.102048 38510 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-27 02:10:16.004052000 Z\n- &1 2020-08-27 02:10:50.171175000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-27 06:03:42.270590495 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539375\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085197\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085197\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539375\n mask_addr: 4294967295\nsign_in_count:\n- 1770\n- 1771\n 3542 \N 177.228.116.239 51ac3eed-dcba-47a1-9457-d26fdee8f256 2020-08-27 06:03:42.27937 38511 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zdchjyE1DLnC7ytjtNo4\n- "-sz86arnPbpNhhPFvkCp"\n 3543 \N 177.228.116.239 51ac3eed-dcba-47a1-9457-d26fdee8f256 2020-08-27 06:03:42.297986 38512 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-25 17:10:37.971323000 Z\n- &1 2020-08-26 15:56:21.820897000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-27 16:11:23.336966008 Z\nsign_in_count:\n- 624\n- 625\n 1253 \N 189.186.41.254 80ccd036-ac3d-4dca-8506-4d0ea59ba2ed 2020-08-27 16:11:23.369442 38513 2 User \N \N 2 User \N update ---\nunique_session_id:\n- o-QAQZZvvM4rCbz1NuzV\n- 7xzsWbjb7WV7t6DS8Y19\n 1254 \N 189.186.41.254 80ccd036-ac3d-4dca-8506-4d0ea59ba2ed 2020-08-27 16:11:23.400922 38514 1026 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1287E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1287.0 189.186.41.254 22ac31af-385a-48d2-ab71-ea6c2c8c78b7 2020-08-27 16:11:42.698496 38515 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-27 02:10:50.171175000 Z\n- &1 2020-08-27 06:03:42.270590000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-27 19:10:45.202746962 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085197\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539375\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539375\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1771\n- 1772\n 3544 \N 189.186.90.81 8c29cf59-258c-4c63-b9f5-1045c7c43583 2020-08-27 19:10:45.211557 38516 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-sz86arnPbpNhhPFvkCp"\n- GtUYE6V1s3xqrgbrPF3V\n 3545 \N 189.186.90.81 8c29cf59-258c-4c63-b9f5-1045c7c43583 2020-08-27 19:10:45.248119 38517 1293 Product \N \N 4 User \N create ---\nsku: BOL-1293\nname: 1BLCV20290\ndescription: 'BOLSO CLOE '\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170819175'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1293 fue creado. 189.186.90.81 c1cd4075-8265-4d3e-9198-0b3478563d28 2020-08-27 19:25:04.006794 38518 2214 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1293\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.90.81 c1cd4075-8265-4d3e-9198-0b3478563d28 2020-08-27 19:25:04.06087 38519 1294 Product \N \N 4 User \N create ---\nsku: BOL-1294\nname: 1BLCV20295\ndescription: BOLSOS COLORES\nprice_base: !ruby/object:BigDecimal 18:0.4995E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170819342'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1294 fue creado. 189.186.90.81 8d68a96b-eeff-42ba-8440-417989161d4c 2020-08-27 19:26:42.281362 38520 2215 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1294\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.90.81 8d68a96b-eeff-42ba-8440-417989161d4c 2020-08-27 19:26:42.319638 38521 1295 Product \N \N 4 User \N create ---\nsku: BOL-1295\nname: 1BLCP20972\ndescription: BOLSO FLORES\nprice_base: !ruby/object:BigDecimal 18:0.9495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170796339'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1295 fue creado. 189.186.90.81 1e4836a0-2603-4585-b4e1-08dd29fcccf5 2020-08-27 19:27:56.740856 38522 2216 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1295\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.90.81 1e4836a0-2603-4585-b4e1-08dd29fcccf5 2020-08-27 19:27:56.780352 38523 1296 Product \N \N 4 User \N create ---\nsku: BOL-1296\nname: 1BLCV20275\ndescription: BACK PACK LETRAS\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170818789'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1296 fue creado. 189.186.90.81 56fb1eab-e8ed-4e84-be99-032e524d1640 2020-08-27 19:29:32.423829 38525 1297 Product \N \N 4 User \N create ---\nsku: BOL-1297\nname: 2BLCV20398\ndescription: BOLSO CLOE\nprice_base: !ruby/object:BigDecimal 18:0.6495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170822953'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1297 fue creado. 189.186.90.81 2133dad1-ac69-4d11-bb7c-d29cbc41b948 2020-08-27 19:31:24.988997 38526 2218 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1297\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.90.81 2133dad1-ac69-4d11-bb7c-d29cbc41b948 2020-08-27 19:31:25.057838 38527 1298 Product \N \N 4 User \N create ---\nsku: BOL-1298\nname: 2BLCV20399\ndescription: BOLSO CLOE\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170822991'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1298 fue creado. 189.186.90.81 e67771cf-ddf7-4974-9104-bfac552f14c4 2020-08-27 19:32:23.448823 38528 2219 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1298\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.90.81 e67771cf-ddf7-4974-9104-bfac552f14c4 2020-08-27 19:32:23.490617 38529 1299 Product \N \N 4 User \N create ---\nsku: ZAP-1299\nname: MATEJ\ndescription: 'TENNIS CLOE '\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170808537'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 13\nproduct_service_key: '01010101'\n 1 El producto ZAP-1299 fue creado. 189.186.90.81 c8040c4d-9ae2-40da-82b2-714864e8c14c 2020-08-27 19:33:38.184159 38530 2220 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1299\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.90.81 c8040c4d-9ae2-40da-82b2-714864e8c14c 2020-08-27 19:33:38.220139 38531 1300 Product \N \N 4 User \N create ---\nsku: ZAP-1300\nname: REINE\ndescription: TENNIS CLOE\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170803709'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 13\nproduct_service_key: '01010101'\n 1 El producto ZAP-1300 fue creado. 189.186.90.81 1ccfdc2f-bce9-4faa-a3ff-15952bfff4a9 2020-08-27 19:34:40.998839 38532 2221 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1300\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.90.81 1ccfdc2f-bce9-4faa-a3ff-15952bfff4a9 2020-08-27 19:34:41.038026 38533 364 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-84\namount: !ruby/object:BigDecimal 18:0.143395E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.143395E5\nobservations: ''\npurchase_date: 2020-08-27\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-84 por $ 14339.5 MXN creada. 189.186.90.81 5d9e4e39-6dcb-4cba-9f1d-1c919d90612f 2020-08-27 19:34:50.157681 38534 2215 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.9E1\n 2 \N 189.186.90.81 5d9e4e39-6dcb-4cba-9f1d-1c919d90612f 2020-08-27 19:34:50.191323 38535 2214 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.90.81 5d9e4e39-6dcb-4cba-9f1d-1c919d90612f 2020-08-27 19:34:50.236439 38536 2216 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.90.81 5d9e4e39-6dcb-4cba-9f1d-1c919d90612f 2020-08-27 19:34:50.263239 38537 2217 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.90.81 5d9e4e39-6dcb-4cba-9f1d-1c919d90612f 2020-08-27 19:34:50.285551 38538 1975 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.90.81 5d9e4e39-6dcb-4cba-9f1d-1c919d90612f 2020-08-27 19:34:50.309135 38539 2218 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.90.81 5d9e4e39-6dcb-4cba-9f1d-1c919d90612f 2020-08-27 19:34:50.33435 38540 2219 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.90.81 5d9e4e39-6dcb-4cba-9f1d-1c919d90612f 2020-08-27 19:34:50.357483 38541 2220 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.90.81 5d9e4e39-6dcb-4cba-9f1d-1c919d90612f 2020-08-27 19:34:50.380695 38542 2221 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.90.81 5d9e4e39-6dcb-4cba-9f1d-1c919d90612f 2020-08-27 19:34:50.420554 38543 1301 Product \N \N 4 User \N create ---\nsku: BOL-1301\nname: 3BLCV20804\ndescription: BOLSO NEGRO\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170860207'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1301 fue creado. 189.186.90.81 9185e399-67a9-4fb8-9bed-35336ac59686 2020-08-27 19:50:37.128181 38544 2222 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1301\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.90.81 9185e399-67a9-4fb8-9bed-35336ac59686 2020-08-27 19:50:37.167052 38771 256 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.41.254 529a7637-c2ba-4c0d-a95d-f3cfa68fc146 2020-08-29 22:07:29.648077 38545 1302 Product \N \N 4 User \N create ---\nsku: BOL-1302\nname: 1BLCV20259\ndescription: BOLSO MULTICOLOR\nprice_base: !ruby/object:BigDecimal 18:0.9495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170818352'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1302 fue creado. 189.186.90.81 874f9b19-cf7a-412a-80d6-eb6e6ec2e01f 2020-08-27 19:52:44.248821 38546 2223 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1302\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.90.81 874f9b19-cf7a-412a-80d6-eb6e6ec2e01f 2020-08-27 19:52:44.289703 38547 1303 Product \N \N 4 User \N create ---\nsku: BOL-1303\nname: 1BLCP20959\ndescription: BOLSA NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170795950'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1303 fue creado. 189.186.90.81 59daaecb-eedd-4ef9-9391-e9a9fe9af6cc 2020-08-27 19:54:27.744591 38548 2224 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1303\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.90.81 59daaecb-eedd-4ef9-9391-e9a9fe9af6cc 2020-08-27 19:54:27.783748 38549 365 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-142\namount: !ruby/object:BigDecimal 18:0.65455E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.65455E4\nobservations: ''\npurchase_date: 2020-08-27\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-142 por $ 6545.5 MXN creada. 189.186.90.81 68054659-268d-43cf-87f4-83db78a299dd 2020-08-27 19:56:19.537311 38550 2225 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1293\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.90.81 68054659-268d-43cf-87f4-83db78a299dd 2020-08-27 19:56:19.581328 38551 2226 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1294\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.90.81 68054659-268d-43cf-87f4-83db78a299dd 2020-08-27 19:56:19.609899 38552 2222 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.90.81 68054659-268d-43cf-87f4-83db78a299dd 2020-08-27 19:56:19.632569 38553 2223 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.90.81 68054659-268d-43cf-87f4-83db78a299dd 2020-08-27 19:56:19.655424 38554 2224 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.90.81 68054659-268d-43cf-87f4-83db78a299dd 2020-08-27 19:56:19.678615 38555 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-22 22:36:19.096015000 Z\n- &1 2020-08-26 02:36:35.897765000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-27 20:11:35.987180701 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938544\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538003\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538003\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094270\n mask_addr: 4294967295\nsign_in_count:\n- 216\n- 217\n 434 \N 189.186.41.254 ade615f2-e35c-46f5-90b9-5d0a592a72d3 2020-08-27 20:11:35.994749 38556 1 User \N \N 1 User \N update ---\nunique_session_id:\n- WEcotfw5Khkh-jFZEkqk\n- A-X5ozxihhGNr1-uofE3\n 435 \N 189.186.41.254 ade615f2-e35c-46f5-90b9-5d0a592a72d3 2020-08-27 20:11:36.011755 38557 2025 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.41.254 e75f0c44-c517-45ce-a2f0-f607e79a6ca1 2020-08-27 20:24:51.044063 38558 2060 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.254 b2e9c40d-f4e4-4465-8547-905efd1db8a8 2020-08-27 20:25:13.140337 38559 2000 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.254 a27f9123-68fb-4510-818c-0565df4dd48d 2020-08-27 20:26:33.121563 38560 669 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-08-27\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.41.254 cb7b5680-216c-4d86-ad1a-248b545e41b6 2020-08-27 20:27:11.676423 38561 2783 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1026\namount: !ruby/object:BigDecimal 18:0.769E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.369E3\ntotal: !ruby/object:BigDecimal 18:0.4E3\nstatus: 0\ndate_sale: 2020-08-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1331\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 f0f3723e-645b-4dad-872c-4dcc5bc542b6 2020-08-27 22:18:46.627364 38562 1632 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 189.186.41.254 f0f3723e-645b-4dad-872c-4dcc5bc542b6 2020-08-27 22:18:46.655538 38563 2783 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 768d2394-b105-40d4-8207-239b99cd7b79 2020-08-27 22:18:54.971495 38564 3737 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1026\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 2783\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1331\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1331 189.186.41.254 768d2394-b105-40d4-8207-239b99cd7b79 2020-08-27 22:18:54.994216 38565 2784 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1026\namount: !ruby/object:BigDecimal 18:0.1268E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.668E3\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2020-08-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1332\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 f4de9dcc-e82d-468c-9f92-b587dd2ef750 2020-08-27 22:29:39.882655 38566 740 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.41.254 f4de9dcc-e82d-468c-9f92-b587dd2ef750 2020-08-27 22:29:39.919425 38569 3738 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1026\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 2784\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1332\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1332 189.186.41.254 1d6c66f0-0a98-4347-bc82-891cd5fce73b 2020-08-27 22:30:08.54026 38570 2785 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1026\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.229E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-08-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1333\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 7f268f8f-91f7-4a32-b145-46fe34c5210b 2020-08-27 22:58:53.201651 38571 1635 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.41.254 7f268f8f-91f7-4a32-b145-46fe34c5210b 2020-08-27 22:58:53.247714 38572 2785 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 75b915cd-6390-41c4-9dfd-c3093ea2e328 2020-08-27 22:58:57.281946 38573 3739 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1026\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 2785\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1333\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1333 189.186.41.254 75b915cd-6390-41c4-9dfd-c3093ea2e328 2020-08-27 22:58:57.304976 38574 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-27 06:03:42.270590000 Z\n- &1 2020-08-27 19:10:45.202746000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-27 23:01:21.869073546 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539375\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147110661\n mask_addr: 4294967295\nsign_in_count:\n- 1772\n- 1773\n 3546 \N 187.149.25.5 a173b8f2-2aba-49b6-b0cb-6ad9869c21e8 2020-08-27 23:01:21.877955 38575 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GtUYE6V1s3xqrgbrPF3V\n- gBp3Xxw_1isKnuAtyJRy\n 3547 \N 187.149.25.5 a173b8f2-2aba-49b6-b0cb-6ad9869c21e8 2020-08-27 23:01:21.895973 38576 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-26 02:36:35.897765000 Z\n- &1 2020-08-27 20:11:35.987180000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-27 23:05:06.844860301 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538003\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094270\n mask_addr: 4294967295\nsign_in_count:\n- 217\n- 218\n 436 \N 189.186.41.254 ea856f40-fc09-4760-821a-3f46def79414 2020-08-27 23:05:06.85209 38577 1 User \N \N 1 User \N update ---\nunique_session_id:\n- A-X5ozxihhGNr1-uofE3\n- 4192cvX-oB4xDcoz_kUy\n 437 \N 189.186.41.254 ea856f40-fc09-4760-821a-3f46def79414 2020-08-27 23:05:06.869474 38578 2786 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1026\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-08-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1334\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 1a33539e-84c3-4a6e-bb8f-0ded0e53e8df 2020-08-27 23:18:17.90225 38579 1692 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.41.254 1a33539e-84c3-4a6e-bb8f-0ded0e53e8df 2020-08-27 23:18:17.931784 38580 2786 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 898cc934-1504-433b-88a3-15f5bc24e016 2020-08-27 23:18:57.58971 38581 3740 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1026\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 2786\ncardnumber: 7662\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1334\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1334 189.186.41.254 898cc934-1504-433b-88a3-15f5bc24e016 2020-08-27 23:18:57.611791 38582 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-27 19:10:45.202746000 Z\n- &1 2020-08-27 23:01:21.869073000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-27 23:24:44.582047922 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147110661\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147110661\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1773\n- 1774\n 3548 \N 189.186.90.81 4c953667-8412-4a46-8ed2-ac4f6f7d272e 2020-08-27 23:24:44.609223 38583 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gBp3Xxw_1isKnuAtyJRy\n- LYKogpGsx4WJ2Srkjx4D\n 3549 \N 189.186.90.81 4c953667-8412-4a46-8ed2-ac4f6f7d272e 2020-08-27 23:24:44.63475 38584 366 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-85\namount: !ruby/object:BigDecimal 18:0.6495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6495E3\nobservations: ''\npurchase_date: 2020-08-27\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-85 por $ 649.5 MXN creada. 189.186.90.81 72a0069f-7073-47cb-8a50-739aaf26b09a 2020-08-27 23:39:36.667866 38585 2218 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.90.81 72a0069f-7073-47cb-8a50-739aaf26b09a 2020-08-27 23:39:36.694149 38586 1051 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1026\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2149E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.18E4\ncash_fund: !ruby/object:BigDecimal 18:0.1087E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2887E4\nobservations: SE VENDIO UNA FALDA DE COMERCIAL EN $350\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.254 06ed7a64-793d-4285-aae4-5c60bba3a5ab 2020-08-27 23:56:44.912998 38587 1026 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.254 06ed7a64-793d-4285-aae4-5c60bba3a5ab 2020-08-27 23:56:44.926392 38588 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-25 23:46:20.346184000 Z\n- &1 2020-08-26 00:47:24.208385000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-28 00:14:17.874068747 Z\nsign_in_count:\n- 190\n- 191\n 383 \N 189.186.90.81 c8fe8347-74de-4fa5-9a7b-78d7cc5d750a 2020-08-28 00:14:17.880338 38589 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Wc9W4nDu65Sx8dXY1L4D\n- W4J_YcgJyAJzozxNqacx\n 384 \N 189.186.90.81 c8fe8347-74de-4fa5-9a7b-78d7cc5d750a 2020-08-28 00:14:17.895242 38772 2811 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 ec4796fd-21c2-404f-9708-cd5e3d9e3297 2020-08-29 22:07:35.610336 38590 1027 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.911E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 911.0 189.186.90.81 dd4e8ce1-2b01-49cd-b4ac-6438054b7618 2020-08-28 00:15:10.657988 38591 2787 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1027\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-08-27\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-533\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 d043b648-ae4e-404f-87f5-378f2edaf4a9 2020-08-28 00:15:30.169578 38592 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 54 \N 189.186.90.81 d043b648-ae4e-404f-87f5-378f2edaf4a9 2020-08-28 00:15:30.197271 38593 2787 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 45eaf5f5-a3f4-4938-be89-222e65363e6e 2020-08-28 00:16:38.6431 38594 3741 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1027\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2787\ncardnumber: 4525\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-533\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-533 189.186.90.81 45eaf5f5-a3f4-4938-be89-222e65363e6e 2020-08-28 00:16:38.665451 38595 2788 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1027\namount: !ruby/object:BigDecimal 18:0.42E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.42E3\nstatus: 0\ndate_sale: 2020-08-27\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-534\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 ddc4b915-a6f7-480b-a6eb-599f651abdae 2020-08-28 00:25:58.434772 38596 2117 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.90.81 ddc4b915-a6f7-480b-a6eb-599f651abdae 2020-08-28 00:25:58.491583 38597 2788 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 b9b837c9-b1a7-4ea8-92e2-ef551d438163 2020-08-28 00:27:15.28492 38598 3742 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1027\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.42E3\nmove_type: '1'\nsale_id: 2788\ncardnumber: 1522\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-534\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-534 189.186.90.81 b9b837c9-b1a7-4ea8-92e2-ef551d438163 2020-08-28 00:27:15.313092 38599 2789 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1027\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2020-08-27\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-535\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 9638b03b-8df5-4822-8931-09eba851a5b8 2020-08-28 01:02:33.86042 38600 2218 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.90.81 9638b03b-8df5-4822-8931-09eba851a5b8 2020-08-28 01:02:33.909567 38601 2789 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 0ae99365-965c-41ae-b129-104a4a468684 2020-08-28 01:04:15.261312 38602 3743 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1027\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 2789\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-535\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-535 189.186.90.81 0ae99365-965c-41ae-b129-104a4a468684 2020-08-28 01:04:15.283337 38603 3744 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1027\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2789\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-535\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.15E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-535 189.186.90.81 d0873b65-654b-4c84-81af-2df2b2548797 2020-08-28 01:04:15.479165 38604 3744 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1027\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2789\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-535\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.15E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.90.81 57a3d27a-3e65-42ad-8dc1-92fe2fb9291d 2020-08-28 01:04:18.57123 38605 325 Expense \N \N 18 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1027\nquantity: !ruby/object:BigDecimal 18:0.125E3\nstatus: 1\nobservations: COMIDA 125\nexpense_date: 2020-08-27\nexpense_code: PV3-E-38\n 1 Egreso por 125.0 registrado 189.186.90.81 67dd528e-869b-4936-a613-7973b1718706 2020-08-28 01:26:24.464092 38606 3745 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1027\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.125E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 325\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.90.81 67dd528e-869b-4936-a613-7973b1718706 2020-08-28 01:26:24.492002 38607 1052 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1027\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.3318E4\namount_out: !ruby/object:BigDecimal 18:0.125E3\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.585E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2085E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.90.81 b17a01ca-c57a-40d5-b086-ddb986b6bbe8 2020-08-28 01:27:56.901364 38608 1027 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.90.81 b17a01ca-c57a-40d5-b086-ddb986b6bbe8 2020-08-28 01:27:56.915591 38630 3750 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1029\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.79E2\nmove_type: '1'\nsale_id: 2792\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-537\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.79E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-537 189.186.90.81 9679b065-0242-41ea-ba90-ae803413bc66 2020-08-28 18:40:47.103407 38609 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-27 23:01:21.869073000 Z\n- &1 2020-08-27 23:24:44.582047000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-28 03:49:35.276223152 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147110661\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540023\n mask_addr: 4294967295\nsign_in_count:\n- 1774\n- 1775\n 3550 \N 177.228.119.119 5be6af53-d1e3-4c2a-9ec2-d5a6f6cea809 2020-08-28 03:49:35.285631 38610 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LYKogpGsx4WJ2Srkjx4D\n- zbqhMrzu23czBhNYqcz2\n 3551 \N 177.228.119.119 5be6af53-d1e3-4c2a-9ec2-d5a6f6cea809 2020-08-28 03:49:35.306622 38611 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-26 15:56:21.820897000 Z\n- &1 2020-08-27 16:11:23.336966000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-28 16:35:12.282759429 Z\nsign_in_count:\n- 625\n- 626\n 1255 \N 189.186.41.254 9f0f5404-f9c3-4154-b0f7-d64d2c5a9ad5 2020-08-28 16:35:12.309398 38612 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 7xzsWbjb7WV7t6DS8Y19\n- t6itUoC1sQ8PesSXZ3Zx\n 1256 \N 189.186.41.254 9f0f5404-f9c3-4154-b0f7-d64d2c5a9ad5 2020-08-28 16:35:12.330358 38613 1028 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1087E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1087.0 189.186.41.254 5c0898d3-1648-40e0-90ca-aadc7f621a6d 2020-08-28 16:48:03.789502 38614 2790 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1028\namount: !ruby/object:BigDecimal 18:0.729E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.379E3\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2020-08-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1335\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 6e9266ee-f0f9-4ea5-aa85-a5b80b22a25c 2020-08-28 17:01:50.039651 38615 1870 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.41.254 6e9266ee-f0f9-4ea5-aa85-a5b80b22a25c 2020-08-28 17:01:50.0884 38616 2790 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 bffd156f-837d-43dc-9146-b89f59bd222a 2020-08-28 17:01:54.532985 38617 3746 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1028\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.35E3\nmove_type: '1'\nsale_id: 2790\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1335\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1335 189.186.41.254 bffd156f-837d-43dc-9146-b89f59bd222a 2020-08-28 17:01:54.553484 38618 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-26 00:47:24.208385000 Z\n- &1 2020-08-28 00:14:17.874068000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-28 18:20:54.807787241 Z\nsign_in_count:\n- 191\n- 192\n 385 \N 189.186.90.81 2a56c883-48be-4db9-be7f-397075519635 2020-08-28 18:20:54.826401 38619 18 User \N \N 18 User \N update ---\nunique_session_id:\n- W4J_YcgJyAJzozxNqacx\n- QxyZ83oQj1iyw7xDqk_A\n 386 \N 189.186.90.81 2a56c883-48be-4db9-be7f-397075519635 2020-08-28 18:20:54.844627 38620 1029 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.585E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 585.0 189.186.90.81 e1870266-a3cd-4852-b536-ac0f2902afd5 2020-08-28 18:21:11.057221 38621 2791 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1029\namount: !ruby/object:BigDecimal 18:0.1998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1998E4\nstatus: 0\ndate_sale: 2020-08-28\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-536\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 b0f7fb7d-6eed-4aea-ae0f-1738ab041416 2020-08-28 18:21:56.253563 38622 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.7E1\n 3 \N 189.186.90.81 b0f7fb7d-6eed-4aea-ae0f-1738ab041416 2020-08-28 18:21:56.284664 38623 2791 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 ca44a33d-9c6f-4d1a-a0d0-19c2833d05a6 2020-08-28 18:22:01.554793 38624 3747 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1029\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.16E4\nmove_type: '1'\nsale_id: 2791\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-536\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-536 189.186.90.81 ca44a33d-9c6f-4d1a-a0d0-19c2833d05a6 2020-08-28 18:22:01.57585 38625 3748 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1029\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 2791\ncardnumber: 5523\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-536\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-536 189.186.90.81 89f7732b-cc91-4f18-a002-da6958b8a69d 2020-08-28 18:22:20.654271 38626 2792 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1029\namount: !ruby/object:BigDecimal 18:0.179E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.179E3\nstatus: 0\ndate_sale: 2020-08-28\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-537\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 11e917ed-2efd-4dcf-921a-a76c0010c3bf 2020-08-28 18:40:30.830745 38627 2105 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.90.81 11e917ed-2efd-4dcf-921a-a76c0010c3bf 2020-08-28 18:40:30.856541 38628 2792 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 b6f075d6-916f-47ba-8c3a-13e1b28193f9 2020-08-28 18:40:41.119099 38629 3749 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1029\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2792\ncardnumber: 1252\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-537\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-537 189.186.90.81 b6f075d6-916f-47ba-8c3a-13e1b28193f9 2020-08-28 18:40:41.139776 38676 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-28 21:15:45.163618000 Z\n- &1 2020-08-28 22:34:56.422139000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-28 23:39:38.113905788 Z\nsign_in_count:\n- 194\n- 195\n 391 \N 189.186.90.81 33b1da69-1d94-4f49-933d-b8fae74fdc1c 2020-08-28 23:39:38.119576 38631 2793 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1029\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-08-28\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-538\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 593c5bc0-7e2e-4681-b85e-03353869938b 2020-08-28 19:07:20.311404 38632 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.90.81 593c5bc0-7e2e-4681-b85e-03353869938b 2020-08-28 19:07:20.34499 38633 2793 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-538 cancelada. 189.186.90.81 195275d1-c774-4bc9-852c-e3387881aba5 2020-08-28 19:09:53.383441 38634 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 5 \N 189.186.90.81 195275d1-c774-4bc9-852c-e3387881aba5 2020-08-28 19:09:53.425076 38635 2794 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1029\namount: !ruby/object:BigDecimal 18:0.1059E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1059E4\nstatus: 0\ndate_sale: 2020-08-28\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-539\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 bc7f1337-b90c-4b5f-9d29-825b8efbfd81 2020-08-28 19:10:44.270374 38636 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 189.186.90.81 bc7f1337-b90c-4b5f-9d29-825b8efbfd81 2020-08-28 19:10:44.295632 38637 1481 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 7 \N 189.186.90.81 bc7f1337-b90c-4b5f-9d29-825b8efbfd81 2020-08-28 19:10:44.316301 38638 2794 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 35de676a-e0dc-43f4-b45a-9ffafea1bd74 2020-08-28 19:12:32.704377 38639 3751 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1029\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1059E4\nmove_type: '1'\nsale_id: 2794\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-539\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1059E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-539 189.186.90.81 35de676a-e0dc-43f4-b45a-9ffafea1bd74 2020-08-28 19:12:32.733706 38640 2795 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1029\namount: !ruby/object:BigDecimal 18:0.2098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2098E4\nstatus: 0\ndate_sale: 2020-08-28\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-540\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 0df2f0cc-cd50-49e4-9b5a-be8a9216118b 2020-08-28 19:15:56.437384 38641 2173 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.90.81 0df2f0cc-cd50-49e4-9b5a-be8a9216118b 2020-08-28 19:15:56.465225 38642 2214 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.90.81 0df2f0cc-cd50-49e4-9b5a-be8a9216118b 2020-08-28 19:15:56.488108 38643 2795 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 1c8c8720-6150-40aa-8316-d58241d3d53d 2020-08-28 19:17:13.190042 38644 3752 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1029\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2098E4\nmove_type: '1'\nsale_id: 2795\ncardnumber: 1525\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-540\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-540 189.186.90.81 1c8c8720-6150-40aa-8316-d58241d3d53d 2020-08-28 19:17:13.214983 38645 2796 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1028\namount: !ruby/object:BigDecimal 18:0.110903E4\ntax: !ruby/object:BigDecimal 18:0.6896E2\ndiscount: !ruby/object:BigDecimal 18:0.489E3\ntotal: !ruby/object:BigDecimal 18:0.68899E3\nstatus: 0\ndate_sale: 2020-08-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1336\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 044d4c52-813b-4c81-ae94-20d208ba4f95 2020-08-28 19:29:43.341942 38646 734 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.41.254 044d4c52-813b-4c81-ae94-20d208ba4f95 2020-08-28 19:29:43.389177 38647 2126 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.254 044d4c52-813b-4c81-ae94-20d208ba4f95 2020-08-28 19:29:43.423646 38648 2796 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 0d2c3ae5-d3cc-4a43-a760-381eb6bdd5b8 2020-08-28 19:29:51.32971 38649 3753 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1028\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49999E3\nmove_type: '1'\nsale_id: 2796\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1336\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1336 189.186.41.254 0d2c3ae5-d3cc-4a43-a760-381eb6bdd5b8 2020-08-28 19:29:51.350552 38650 3754 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1028\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.189E3\nmove_type: '1'\nsale_id: 2796\ncardnumber: 1365\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1336\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1336 189.186.41.254 a6735e88-e717-4629-aaf9-57ff6a60e4a0 2020-08-28 19:30:22.736361 38651 2797 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1029\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.34E2\ntotal: !ruby/object:BigDecimal 18:0.1565E4\nstatus: 0\ndate_sale: 2020-08-28\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-541\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 06512f4a-99b9-4eb4-bf77-e4fdfe2c453b 2020-08-28 19:35:17.81942 38652 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 55 \N 189.186.90.81 06512f4a-99b9-4eb4-bf77-e4fdfe2c453b 2020-08-28 19:35:17.863981 38653 2797 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 a9ddbbf7-3710-4a99-b22c-c97359b04b7e 2020-08-28 19:35:25.712493 38677 18 User \N \N 18 User \N update ---\nunique_session_id:\n- mjX9no8LDrsPdbPVXpKH\n- h5daveCxYdyMJPdBozoo\n 392 \N 189.186.90.81 33b1da69-1d94-4f49-933d-b8fae74fdc1c 2020-08-28 23:39:38.134658 38654 3755 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1029\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1565E4\nmove_type: '1'\nsale_id: 2797\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-541\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1565E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-541 189.186.90.81 a9ddbbf7-3710-4a99-b22c-c97359b04b7e 2020-08-28 19:35:25.735137 38655 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-27 23:24:44.582047000 Z\n- &1 2020-08-28 03:49:35.276223000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-28 21:00:59.302855435 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540023\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540023\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1775\n- 1776\n 3552 \N 189.186.90.81 2c3fcfc9-a421-481e-97e6-d2f26ef95921 2020-08-28 21:00:59.322348 38656 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zbqhMrzu23czBhNYqcz2\n- 9AZSe9dHsSQsfRy6g36W\n 3553 \N 189.186.90.81 2c3fcfc9-a421-481e-97e6-d2f26ef95921 2020-08-28 21:00:59.346365 38657 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-28 00:14:17.874068000 Z\n- &1 2020-08-28 18:20:54.807787000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-28 21:15:45.163618809 Z\nsign_in_count:\n- 192\n- 193\n 387 \N 189.186.90.81 3aa77463-d387-4fbe-bced-ac1c2e99c612 2020-08-28 21:15:45.16918 38658 18 User \N \N 18 User \N update ---\nunique_session_id:\n- QxyZ83oQj1iyw7xDqk_A\n- KJsAE7pa4H_7C-ASResH\n 388 \N 189.186.90.81 3aa77463-d387-4fbe-bced-ac1c2e99c612 2020-08-28 21:15:45.182928 38659 2798 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1029\namount: !ruby/object:BigDecimal 18:0.2307E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.807E3\ntotal: !ruby/object:BigDecimal 18:0.15E4\nstatus: 0\ndate_sale: 2020-08-28\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-542\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 c6d9619f-8805-463e-b7d5-77bd7d8df68f 2020-08-28 21:20:16.450509 38660 2207 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.90.81 c6d9619f-8805-463e-b7d5-77bd7d8df68f 2020-08-28 21:20:16.482041 38661 827 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.90.81 c6d9619f-8805-463e-b7d5-77bd7d8df68f 2020-08-28 21:20:16.513153 38662 2208 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.90.81 c6d9619f-8805-463e-b7d5-77bd7d8df68f 2020-08-28 21:20:16.534964 38663 2798 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 ffc13c54-ded6-44c6-8211-64b8088a75e7 2020-08-28 21:20:31.194272 38664 3756 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1029\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 2798\ncardnumber: 1526\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-542\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-542 189.186.90.81 ffc13c54-ded6-44c6-8211-64b8088a75e7 2020-08-28 21:20:31.215865 38665 3757 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1029\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2798\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-542\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.5E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-542 189.186.90.81 61c30369-8d39-41dc-af29-c89ed9a23fbb 2020-08-28 21:20:39.503515 38666 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-28 03:49:35.276223000 Z\n- &1 2020-08-28 21:00:59.302855000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-28 21:40:11.541539077 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540023\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1776\n- 1777\n 3554 \N 189.186.90.81 4465185c-145f-4076-b392-05fd2151e85d 2020-08-28 21:40:11.569581 38667 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9AZSe9dHsSQsfRy6g36W\n- w5AwjTK_3-Wi_e3XjB2w\n 3555 \N 189.186.90.81 4465185c-145f-4076-b392-05fd2151e85d 2020-08-28 21:40:11.595097 38668 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-28 18:20:54.807787000 Z\n- &1 2020-08-28 21:15:45.163618000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-28 22:34:56.422139434 Z\nsign_in_count:\n- 193\n- 194\n 389 \N 189.186.90.81 9d06651b-7db9-480a-b3ba-1cfccc5e417d 2020-08-28 22:34:56.42737 38669 18 User \N \N 18 User \N update ---\nunique_session_id:\n- KJsAE7pa4H_7C-ASResH\n- mjX9no8LDrsPdbPVXpKH\n 390 \N 189.186.90.81 9d06651b-7db9-480a-b3ba-1cfccc5e417d 2020-08-28 22:34:56.442117 38670 2799 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1029\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-08-28\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-543\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 de176cc2-a060-4fa9-9d8b-1c1a3eddb5e6 2020-08-28 22:35:39.212173 38671 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 189.186.90.81 de176cc2-a060-4fa9-9d8b-1c1a3eddb5e6 2020-08-28 22:35:39.241831 38672 2799 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 a230d2bb-2fe6-4b78-ba4f-997b7131a2a3 2020-08-28 22:35:47.877315 38673 3758 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1029\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2799\ncardnumber: 1524\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-543\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-543 189.186.90.81 a230d2bb-2fe6-4b78-ba4f-997b7131a2a3 2020-08-28 22:35:47.900672 38674 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-08-07 21:01:27.705250000 Z\n- &1 2020-08-24 22:01:40.232528000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-28 23:28:33.022813577 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116185\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 143\n- 144\n 288 \N 189.186.90.81 bdfb0da6-e091-4131-aa67-e40ae6f99ede 2020-08-28 23:28:33.043794 38675 9 User \N \N 9 User \N update ---\nunique_session_id:\n- DsGkHLyYyNkwyDfNtCUs\n- 5UPkY7H-2LZA7ayQjFMN\n 289 \N 189.186.90.81 bdfb0da6-e091-4131-aa67-e40ae6f99ede 2020-08-28 23:28:33.07843 38725 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 34 \N 189.186.41.254 26b2e8e2-bdf3-47f8-ad17-cf94aece0903 2020-08-29 17:19:43.516475 38678 2800 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1029\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.239E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-08-28\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-544\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 29a5efd6-3f0a-4e62-a357-73d9124ab96a 2020-08-28 23:40:49.533746 38679 1519 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.90.81 29a5efd6-3f0a-4e62-a357-73d9124ab96a 2020-08-28 23:40:49.561375 38680 2800 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 c53ecf1d-21f1-4132-b36e-43c17b41e05d 2020-08-28 23:40:56.796517 38681 3759 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1029\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 2800\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-544\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-544 189.186.90.81 c53ecf1d-21f1-4132-b36e-43c17b41e05d 2020-08-28 23:40:56.819308 38682 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-08-24 22:01:40.232528000 Z\n- &1 2020-08-28 23:28:33.022813000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-28 23:43:49.387215017 Z\nsign_in_count:\n- 144\n- 145\n 290 \N 189.186.90.81 63e1f21e-18ba-4062-89bb-3a22bba91524 2020-08-28 23:43:49.392644 38683 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 5UPkY7H-2LZA7ayQjFMN\n- mbuip9mr91TTExfjLzqS\n 291 \N 189.186.90.81 63e1f21e-18ba-4062-89bb-3a22bba91524 2020-08-28 23:43:49.404829 38684 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-28 22:34:56.422139000 Z\n- &1 2020-08-28 23:39:38.113905000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-28 23:49:56.909618578 Z\nsign_in_count:\n- 195\n- 196\n 393 \N 189.186.90.81 65334892-862c-4d70-9d8b-ed5d4f7a7e86 2020-08-28 23:49:56.916853 38685 18 User \N \N 18 User \N update ---\nunique_session_id:\n- h5daveCxYdyMJPdBozoo\n- g3fsntj8GqZGs9yy4dVa\n 394 \N 189.186.90.81 65334892-862c-4d70-9d8b-ed5d4f7a7e86 2020-08-28 23:49:56.931469 38686 1053 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1028\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.103899E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.937E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1937E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.254 a2ebdf24-342c-4d68-a0a5-4172b805c4d3 2020-08-28 23:50:05.724376 38687 1028 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.254 a2ebdf24-342c-4d68-a0a5-4172b805c4d3 2020-08-28 23:50:05.739987 38688 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-27 20:11:35.987180000 Z\n- &1 2020-08-27 23:05:06.844860000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-28 23:53:03.558873124 Z\nsign_in_count:\n- 218\n- 219\n 438 \N 189.186.41.254 86897a13-09df-4dd3-9392-9dc71abacd6b 2020-08-28 23:53:03.564621 38689 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 4192cvX-oB4xDcoz_kUy\n- SoX-yi8bGDx5j23b2cHn\n 439 \N 189.186.41.254 86897a13-09df-4dd3-9392-9dc71abacd6b 2020-08-28 23:53:03.578001 38690 2801 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1029\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.369E3\ntotal: !ruby/object:BigDecimal 18:0.5E3\nstatus: 0\ndate_sale: 2020-08-28\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-545\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 10c0ef7a-38e9-4e27-aa05-ca267542fc2b 2020-08-28 23:55:54.233992 38691 1906 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.90.81 10c0ef7a-38e9-4e27-aa05-ca267542fc2b 2020-08-28 23:55:54.259469 38692 2801 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 61dc5ecb-d128-4486-a7e1-be98fcc89b8e 2020-08-28 23:56:33.441119 38693 3760 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1029\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 2801\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-545\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-545 189.186.90.81 61dc5ecb-d128-4486-a7e1-be98fcc89b8e 2020-08-28 23:56:33.462113 38694 2800 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-544 cancelada. 189.186.90.81 1d992b90-0ffe-466e-b04c-fb104b55404f 2020-08-29 00:28:00.877767 38695 3759 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1029\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 2800\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-544\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.90.81 1d992b90-0ffe-466e-b04c-fb104b55404f 2020-08-29 00:28:00.899719 38696 1519 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.90.81 1d992b90-0ffe-466e-b04c-fb104b55404f 2020-08-29 00:28:00.92378 38697 2802 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1029\namount: !ruby/object:BigDecimal 18:0.589E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.339E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-08-28\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-546\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 9b4bdeef-ef94-40e4-acc7-144c3c698abe 2020-08-29 00:29:37.321549 38698 2208 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.90.81 9b4bdeef-ef94-40e4-acc7-144c3c698abe 2020-08-29 00:29:37.346263 38699 2802 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 2dff510f-2f94-4f5d-968b-f043382780f3 2020-08-29 00:29:48.632413 38700 3761 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1029\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 2802\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-546\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-546 189.186.90.81 2dff510f-2f94-4f5d-968b-f043382780f3 2020-08-29 00:29:48.652816 38726 2058 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.41.254 26b2e8e2-bdf3-47f8-ad17-cf94aece0903 2020-08-29 17:19:43.548568 38701 2803 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1029\namount: !ruby/object:BigDecimal 18:0.366472E4\ntax: !ruby/object:BigDecimal 18:0.13228E3\ndiscount: !ruby/object:BigDecimal 18:0.24E3\ntotal: !ruby/object:BigDecimal 18:0.3557E4\nstatus: 0\ndate_sale: 2020-08-28\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-547\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 a2bca9c2-26cb-4bad-969c-f848c64f6aa9 2020-08-29 00:43:51.745083 38702 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 189.186.90.81 a2bca9c2-26cb-4bad-969c-f848c64f6aa9 2020-08-29 00:43:51.787565 38703 2047 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.90.81 a2bca9c2-26cb-4bad-969c-f848c64f6aa9 2020-08-29 00:43:51.817843 38704 931 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.90.81 a2bca9c2-26cb-4bad-969c-f848c64f6aa9 2020-08-29 00:43:51.839344 38705 2803 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 974cd00f-499f-4bf0-a4b6-28a3a5fe8a50 2020-08-29 00:45:05.168069 38706 3762 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1029\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3557E4\nmove_type: '1'\nsale_id: 2803\ncardnumber: 1552\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-547\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-547 189.186.90.81 974cd00f-499f-4bf0-a4b6-28a3a5fe8a50 2020-08-29 00:45:05.191724 38707 2804 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1029\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-08-28\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-548\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 ba3bc9ba-e0d9-4260-b708-545716269d04 2020-08-29 00:48:05.863263 38708 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.19E2\n- !ruby/object:BigDecimal 18:0.18E2\n 47 \N 189.186.90.81 ba3bc9ba-e0d9-4260-b708-545716269d04 2020-08-29 00:48:05.890428 38709 2804 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 ce8e2b7f-164b-4279-9172-8065fbc50962 2020-08-29 00:48:59.764029 38710 3763 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1029\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2804\ncardnumber: 1525\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-548\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-548 189.186.90.81 ce8e2b7f-164b-4279-9172-8065fbc50962 2020-08-29 00:48:59.784153 38711 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-28 21:00:59.302855000 Z\n- &1 2020-08-28 21:40:11.541539000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-29 00:53:03.748061006 Z\nsign_in_count:\n- 1777\n- 1778\n 3556 \N 189.186.90.81 ddc9aa59-50d2-4a75-88cd-42e57c99096a 2020-08-29 00:53:03.754609 38712 4 User \N \N 4 User \N update ---\nunique_session_id:\n- w5AwjTK_3-Wi_e3XjB2w\n- 6r_sgsNoQNfneQGXdESP\n 3557 \N 189.186.90.81 ddc9aa59-50d2-4a75-88cd-42e57c99096a 2020-08-29 00:53:03.770535 38713 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-28 23:39:38.113905000 Z\n- &1 2020-08-28 23:49:56.909618000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-29 00:54:10.322717007 Z\nsign_in_count:\n- 196\n- 197\n 395 \N 189.186.90.81 844c0e3a-27b8-450a-ab46-81a1701e6ff9 2020-08-29 00:54:10.330807 38714 18 User \N \N 18 User \N update ---\nunique_session_id:\n- g3fsntj8GqZGs9yy4dVa\n- WjDBs9Rdv6vgCbrRpsLf\n 396 \N 189.186.90.81 844c0e3a-27b8-450a-ab46-81a1701e6ff9 2020-08-29 00:54:10.347718 38715 1054 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1029\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.15206E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.5347E4\ncash_fund: !ruby/object:BigDecimal 18:0.791E3\nphysical_cash: !ruby/object:BigDecimal 18:0.6138E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.90.81 32984e57-73b4-48a3-9e4c-2da0ea50ed23 2020-08-29 01:09:35.462861 38716 1029 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.90.81 32984e57-73b4-48a3-9e4c-2da0ea50ed23 2020-08-29 01:09:35.48127 38717 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-27 23:05:06.844860000 Z\n- &1 2020-08-28 23:53:03.558873000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-29 01:15:53.977330280 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094270\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729289\n mask_addr: 4294967295\nsign_in_count:\n- 219\n- 220\n 440 \N 201.175.156.137 358f3388-4356-42da-aa2d-89233c83d5a9 2020-08-29 01:15:54.00642 38718 1 User \N \N 1 User \N update ---\nunique_session_id:\n- SoX-yi8bGDx5j23b2cHn\n- 6gizgPk3PS_v4K36zHQG\n 441 \N 201.175.156.137 358f3388-4356-42da-aa2d-89233c83d5a9 2020-08-29 01:15:54.028243 38719 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-28 21:40:11.541539000 Z\n- &1 2020-08-29 00:53:03.748061000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-29 15:39:13.695462250 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539927\n mask_addr: 4294967295\nsign_in_count:\n- 1778\n- 1779\n 3558 \N 177.228.119.23 1a0b854e-0225-4aee-b0ee-57fcc5114df6 2020-08-29 15:39:13.725056 38720 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6r_sgsNoQNfneQGXdESP\n- pVJ8746d1SyJ2MxiiHn-\n 3559 \N 177.228.119.23 1a0b854e-0225-4aee-b0ee-57fcc5114df6 2020-08-29 15:39:13.751867 38721 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-27 16:11:23.336966000 Z\n- &1 2020-08-28 16:35:12.282759000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-29 17:18:02.908388735 Z\nsign_in_count:\n- 626\n- 627\n 1257 \N 189.186.41.254 36124bfe-0914-4c68-8877-c737e629ea1d 2020-08-29 17:18:02.913764 38722 2 User \N \N 2 User \N update ---\nunique_session_id:\n- t6itUoC1sQ8PesSXZ3Zx\n- x29ZZDtrutv2GdvrAVe8\n 1258 \N 189.186.41.254 36124bfe-0914-4c68-8877-c737e629ea1d 2020-08-29 17:18:02.927677 38723 1030 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.937E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 937.0 189.186.41.254 141e229a-c0d5-42c7-acc2-6b080ca1b9cb 2020-08-29 17:18:13.378125 38724 2805 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1030\namount: !ruby/object:BigDecimal 18:0.3298E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3298E4\nstatus: 0\ndate_sale: 2020-08-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1337\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 26b2e8e2-bdf3-47f8-ad17-cf94aece0903 2020-08-29 17:19:43.483174 38727 2805 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 e254d8a2-acd0-47d8-bda3-87a699e3a1a0 2020-08-29 17:19:51.310769 38728 3764 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1030\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3298E4\nmove_type: '1'\nsale_id: 2805\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1337\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3298E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1337 189.186.41.254 e254d8a2-acd0-47d8-bda3-87a699e3a1a0 2020-08-29 17:19:51.330871 38729 2806 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1030\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-08-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1338\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 a837a9c8-cf44-4690-aef5-ea92aa977c62 2020-08-29 17:41:33.941723 38730 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 21 \N 189.186.41.254 a837a9c8-cf44-4690-aef5-ea92aa977c62 2020-08-29 17:41:33.967959 38731 2806 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 6aea3c94-362e-412e-baa4-17fe07b82796 2020-08-29 17:41:38.445712 38732 3765 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1030\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2806\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1338\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1338 189.186.41.254 6aea3c94-362e-412e-baa4-17fe07b82796 2020-08-29 17:41:38.465786 38733 2807 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1030\namount: !ruby/object:BigDecimal 18:0.107042E4\ntax: !ruby/object:BigDecimal 18:0.2758E2\ndiscount: !ruby/object:BigDecimal 18:0.898E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-08-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1339\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 0de3f128-18e9-4016-83ad-4dd403ffd044 2020-08-29 18:04:55.805268 38734 215 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.41.254 0de3f128-18e9-4016-83ad-4dd403ffd044 2020-08-29 18:04:55.835808 38735 69 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.41.254 0de3f128-18e9-4016-83ad-4dd403ffd044 2020-08-29 18:04:55.875312 38736 2807 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 b52dc9e3-33b5-4d6c-b4a3-c96c241f4235 2020-08-29 18:05:03.675283 38737 3766 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1030\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2807\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1339\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1339 189.186.41.254 b52dc9e3-33b5-4d6c-b4a3-c96c241f4235 2020-08-29 18:05:03.697334 38738 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-28 23:53:03.558873000 Z\n- &1 2020-08-29 01:15:53.977330000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-29 18:07:47.582334675 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094270\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729289\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729289\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094270\n mask_addr: 4294967295\nsign_in_count:\n- 220\n- 221\n 442 \N 189.186.41.254 a9aba358-6488-47db-a321-545062d44a28 2020-08-29 18:07:47.591161 38739 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 6gizgPk3PS_v4K36zHQG\n- zXRRpLHMiXoqEVFSu4qJ\n 443 \N 189.186.41.254 a9aba358-6488-47db-a321-545062d44a28 2020-08-29 18:07:47.608797 38740 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-26 18:32:02.179576000 Z\n- &1 2020-08-27 04:26:09.063845000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-29 18:38:10.445686992 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085197\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085197\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 263\n- 264\n 529 \N 189.186.90.81 6b33a053-5cb6-40ba-ad6b-49f0f66273fe 2020-08-29 18:38:10.453336 38741 21 User \N \N 21 User \N update ---\nunique_session_id:\n- VAsPRzxocroSG-KybxTT\n- tTAyqPy5XhviGYtT1yu6\n 530 \N 189.186.90.81 6b33a053-5cb6-40ba-ad6b-49f0f66273fe 2020-08-29 18:38:10.475143 38742 2808 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1030\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.649E3\ntotal: !ruby/object:BigDecimal 18:0.65E3\nstatus: 0\ndate_sale: 2020-08-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1340\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 2d703772-f0b3-487a-8169-71f3f4feb503 2020-08-29 19:30:06.673028 38743 867 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.41.254 2d703772-f0b3-487a-8169-71f3f4feb503 2020-08-29 19:30:06.713736 38744 2808 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 c9a51db2-a369-49bb-bdaa-bebba615d077 2020-08-29 19:30:11.749842 38745 3767 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1030\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.65E3\nmove_type: '1'\nsale_id: 2808\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1340\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.65E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1340 189.186.41.254 c9a51db2-a369-49bb-bdaa-bebba615d077 2020-08-29 19:30:11.770546 38746 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-29 00:53:03.748061000 Z\n- &1 2020-08-29 15:39:13.695462000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-29 19:37:56.700012787 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539927\n mask_addr: 4294967295\nsign_in_count:\n- 1779\n- 1780\n 3560 \N 177.228.119.23 589a4567-5ed2-4d8c-9660-699392c439e0 2020-08-29 19:37:56.730583 38747 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pVJ8746d1SyJ2MxiiHn-\n- X8kvNZoaLaRD_TmZmasp\n 3561 \N 177.228.119.23 589a4567-5ed2-4d8c-9660-699392c439e0 2020-08-29 19:37:56.753982 38748 1031 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.791E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 791.0 189.186.90.81 cd4112e4-8097-4abe-92e5-2bbecc3df80b 2020-08-29 20:49:19.152913 38749 2809 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1031\namount: !ruby/object:BigDecimal 18:0.12E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.12E3\nstatus: 0\ndate_sale: 2020-08-29\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-549\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 72fb3875-0dce-4eaa-9fec-9df349877bd4 2020-08-29 20:49:36.862707 38750 1958 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.90.81 72fb3875-0dce-4eaa-9fec-9df349877bd4 2020-08-29 20:49:36.888871 38751 2809 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 01235a4d-66c8-47ea-9dad-77ecc08a2f50 2020-08-29 20:49:45.284257 38752 3768 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1031\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E3\nmove_type: '1'\nsale_id: 2809\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-549\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.8E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-549 189.186.90.81 01235a4d-66c8-47ea-9dad-77ecc08a2f50 2020-08-29 20:49:45.305553 38753 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-29 15:39:13.695462000 Z\n- &1 2020-08-29 19:37:56.700012000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-29 20:58:09.219278874 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539927\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1780\n- 1781\n 3562 \N 189.186.90.81 32d38ecb-0dd7-463c-a64c-5ffbd7f2b65f 2020-08-29 20:58:09.226466 38754 4 User \N \N 4 User \N update ---\nunique_session_id:\n- X8kvNZoaLaRD_TmZmasp\n- x4reFJXf975-zcjX7CGu\n 3563 \N 189.186.90.81 32d38ecb-0dd7-463c-a64c-5ffbd7f2b65f 2020-08-29 20:58:09.243834 38755 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-29 01:15:53.977330000 Z\n- &1 2020-08-29 18:07:47.582334000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-29 21:19:33.807187136 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729289\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094270\n mask_addr: 4294967295\nsign_in_count:\n- 221\n- 222\n 444 \N 189.186.41.254 65960b53-dfa3-407c-8760-ce74ddb4f323 2020-08-29 21:19:33.814714 38756 1 User \N \N 1 User \N update ---\nunique_session_id:\n- zXRRpLHMiXoqEVFSu4qJ\n- TPXmh16Hsk1PN9MS81Jg\n 445 \N 189.186.41.254 65960b53-dfa3-407c-8760-ce74ddb4f323 2020-08-29 21:19:33.830743 38757 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-29 19:37:56.700012000 Z\n- &1 2020-08-29 20:58:09.219278000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-29 21:23:35.874570776 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539927\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539927\n mask_addr: 4294967295\nsign_in_count:\n- 1781\n- 1782\n 3564 \N 177.228.119.23 d375fe4e-e7e9-435e-8dd1-f51b0c9abde0 2020-08-29 21:23:35.882472 38758 4 User \N \N 4 User \N update ---\nunique_session_id:\n- x4reFJXf975-zcjX7CGu\n- ct7rksxwt8yXFyVXxsjy\n 3565 \N 177.228.119.23 d375fe4e-e7e9-435e-8dd1-f51b0c9abde0 2020-08-29 21:23:35.901605 38759 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-29 18:07:47.582334000 Z\n- &1 2020-08-29 21:19:33.807187000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-29 22:03:10.959961311 Z\nsign_in_count:\n- 222\n- 223\n 446 \N 189.186.41.254 a4ed5e4e-d764-4575-83ed-efbe84b511e8 2020-08-29 22:03:10.968249 38760 1 User \N \N 1 User \N update ---\nunique_session_id:\n- TPXmh16Hsk1PN9MS81Jg\n- 4kRvvM4pGkBqAoV5W2PV\n 447 \N 189.186.41.254 a4ed5e4e-d764-4575-83ed-efbe84b511e8 2020-08-29 22:03:10.985046 38761 847 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.41.254 a8fd8c5a-b7ed-4fef-9d27-fecb4922ee99 2020-08-29 22:03:49.695273 38762 670 Transfer \N \N 1 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-08-29\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.41.254 882c4774-d4c0-494c-836d-3b3256af80c9 2020-08-29 22:03:56.308365 38763 670 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-29\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.41.254 f8f2b1e9-7ab7-4592-b157-ff4521c7f998 2020-08-29 22:04:35.301681 38764 256 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.41.254 f8f2b1e9-7ab7-4592-b157-ff4521c7f998 2020-08-29 22:04:35.317658 38765 2810 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1031\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-08-29\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-550\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 7e34b777-9336-4295-95d6-3501017a1653 2020-08-29 22:05:02.322914 38766 2042 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.90.81 7e34b777-9336-4295-95d6-3501017a1653 2020-08-29 22:05:02.347597 38767 2810 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 f4e7c752-f793-48eb-9b58-b718732e502e 2020-08-29 22:05:15.371886 38768 3769 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1031\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 2810\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-550\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: apartado\n 1 movimiento de efectivo por venta con folio PV3-V-550 189.186.90.81 f4e7c752-f793-48eb-9b58-b718732e502e 2020-08-29 22:05:15.400758 38769 3770 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1031\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 2810\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-550\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1399E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: apartado\n 1 movimiento de efectivo por venta con folio PV3-V-550 189.186.90.81 3c8be26b-b62f-4738-b443-44e692538f1e 2020-08-29 22:05:24.628953 38770 2811 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1030\namount: !ruby/object:BigDecimal 18:0.109969E4\ntax: !ruby/object:BigDecimal 18:0.9931E2\ndiscount: !ruby/object:BigDecimal 18:0.479E3\ntotal: !ruby/object:BigDecimal 18:0.72E3\nstatus: 0\ndate_sale: 2020-08-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1341\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 529a7637-c2ba-4c0d-a95d-f3cfa68fc146 2020-08-29 22:07:29.620818 38773 3771 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1030\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.72E3\nmove_type: '1'\nsale_id: 2811\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1341\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.72E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1341 189.186.41.254 ec4796fd-21c2-404f-9708-cd5e3d9e3297 2020-08-29 22:07:35.630417 38774 2812 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1030\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-08-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1342\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 9a4c33d7-8fb4-43b5-993e-97ab9341fe58 2020-08-29 22:26:09.146638 38775 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 22 \N 189.186.41.254 9a4c33d7-8fb4-43b5-993e-97ab9341fe58 2020-08-29 22:26:09.171594 38776 2812 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 d00b7a6a-ad1e-4901-b31c-0fb41df9616b 2020-08-29 22:26:19.251417 38777 3772 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1030\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2812\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1342\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1342 189.186.41.254 d00b7a6a-ad1e-4901-b31c-0fb41df9616b 2020-08-29 22:26:19.273259 38778 2813 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1030\namount: !ruby/object:BigDecimal 18:0.85521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.769E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-08-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1343\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 2cfa1d2f-4da2-4630-ac8f-caeb8203fd0a 2020-08-29 22:33:35.713755 38779 231 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.254 2cfa1d2f-4da2-4630-ac8f-caeb8203fd0a 2020-08-29 22:33:35.758047 38780 2813 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 5b9f1ce1-c43e-4455-80d4-ea0e4539c63a 2020-08-29 22:33:39.649478 38781 3773 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1030\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2813\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1343\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1343 189.186.41.254 5b9f1ce1-c43e-4455-80d4-ea0e4539c63a 2020-08-29 22:33:39.670148 38782 2814 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1030\namount: !ruby/object:BigDecimal 18:0.1998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.998E3\ntotal: !ruby/object:BigDecimal 18:0.1E4\nstatus: 0\ndate_sale: 2020-08-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1344\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 2b9e1e13-05d2-4b77-b5be-60d9fbc93bf7 2020-08-29 23:30:06.3623 38783 1381 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.41.254 2b9e1e13-05d2-4b77-b5be-60d9fbc93bf7 2020-08-29 23:30:06.387844 38784 1643 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.41.254 2b9e1e13-05d2-4b77-b5be-60d9fbc93bf7 2020-08-29 23:30:06.409264 38785 2814 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 b3e5f0f5-2093-48d0-8f8d-1833b20db811 2020-08-29 23:30:18.042355 38786 3774 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1030\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 2814\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1344\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1344 189.186.41.254 b3e5f0f5-2093-48d0-8f8d-1833b20db811 2020-08-29 23:30:18.063558 38787 326 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1030\nquantity: !ruby/object:BigDecimal 18:0.4E4\nstatus: 1\nobservations: UTILIDADES ROCÍO\nexpense_date: 2020-08-29\nexpense_code: PV1-E-226\n 1 Egreso por 4000.0 registrado 189.186.41.254 038fa3f8-f17b-49a2-83ff-48866bb6d1e2 2020-08-29 23:38:09.897047 38788 3775 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1030\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 326\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.254 038fa3f8-f17b-49a2-83ff-48866bb6d1e2 2020-08-29 23:38:09.938728 38789 1055 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1030\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.8966E4\namount_out: !ruby/object:BigDecimal 18:0.4E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.51E4\ncash_fund: !ruby/object:BigDecimal 18:0.803E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5903E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.254 aabd092a-dcac-48f0-b160-71db348efeb0 2020-08-29 23:44:00.955085 38790 1030 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.254 aabd092a-dcac-48f0-b160-71db348efeb0 2020-08-29 23:44:00.97145 38791 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-29 20:58:09.219278000 Z\n- &1 2020-08-29 21:23:35.874570000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-30 00:36:06.076184736 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539927\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539927\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1782\n- 1783\n 3566 \N 189.186.90.81 ce9f8f3d-e4a2-413b-81d6-d84fd22ae3c5 2020-08-30 00:36:06.08498 38792 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ct7rksxwt8yXFyVXxsjy\n- qdoyYCH1WyWRs4ogkLY7\n 3567 \N 189.186.90.81 ce9f8f3d-e4a2-413b-81d6-d84fd22ae3c5 2020-08-30 00:36:06.1036 38793 1299 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1299'\n is_parent: false\n sku: ZAP-1299\n name: MATEJ\n description: 'TENNIS CLOE '\n price_base: '799.5'\n price_sale: '1599.0'\n img_product: MATEJ.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '13'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170808537'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-27 19:33:38.172916'\n updated_at: &12 2020-08-30 00:36:34.039505606 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1299'\n sku: ZAP-1299\n name: MATEJ\n description: 'TENNIS CLOE '\n price_base: '799.50'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-27 19:33:38.172916'\n updated_at: '2020-08-27 19:33:38.172916'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170808537'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '13'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1299'\n type: *3\n value: 1299\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ZAP-1299\n type: *7\n value: ZAP-1299\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: MATEJ\n type: *8\n value: MATEJ\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'TENNIS CLOE '\n type: *6\n value: 'TENNIS CLOE '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '799.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: MATEJ.png\n type: *2\n value: MATEJ.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '13'\n type: *3\n value: 13\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170808537'\n type: *2\n value: '7509170808537'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-27 19:33:38.172916'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- MATEJ.png\n 2 El producto ZAP-1299 fue modificado. 189.186.90.81 b139c07c-3c31-4fae-abd0-bbc883265822 2020-08-30 00:36:34.083632 38885 2823 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-557 cancelada. 189.186.76.107 ad7ee733-c907-41cd-a269-f9ddcfa75dd3 2020-09-01 18:38:51.051783 38794 366 Customer \N \N 21 User \N create ---\nnick_name: MONICA BERNAL INSTAGRAM\nphone: "(667) 214-2253"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MONICA BERNAL INSTAGRAM fue registrado. 189.186.90.81 b61dca50-4e86-401b-9b3c-7670b9447f90 2020-08-30 00:37:27.408572 38795 2815 Sale \N \N 21 User \N create ---\ncustomer_id: 366\nuser_id: 21\nopen_cash_register_id: 1031\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-08-29\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-551\nexpiration_date: 2020-10-03\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 52c6a861-f6bb-4e26-95d4-29bbe08e91ca 2020-08-30 00:37:35.105868 38796 2220 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.90.81 52c6a861-f6bb-4e26-95d4-29bbe08e91ca 2020-08-30 00:37:35.135746 38797 3776 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1031\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2815\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-551\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-551 189.186.90.81 690b6b1a-ac50-4568-b91f-4de2baefeb8d 2020-08-30 00:37:46.834389 38798 2815 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.90.81 82b4694f-8566-49c3-8672-ef4531feace9 2020-08-30 00:37:48.769291 38799 1300 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1300'\n is_parent: false\n sku: ZAP-1300\n name: REINE\n description: TENNIS CLOE\n price_base: '799.5'\n price_sale: '1599.0'\n img_product: CHUNKY.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '13'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170803709'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-27 19:34:40.986881'\n updated_at: &12 2020-08-30 00:48:54.875536316 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1300'\n sku: ZAP-1300\n name: REINE\n description: TENNIS CLOE\n price_base: '799.50'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-27 19:34:40.986881'\n updated_at: '2020-08-27 19:34:40.986881'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170803709'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '13'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1300'\n type: *3\n value: 1300\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ZAP-1300\n type: *7\n value: ZAP-1300\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: REINE\n type: *8\n value: REINE\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: TENNIS CLOE\n type: *6\n value: TENNIS CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '799.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: CHUNKY.png\n type: *2\n value: CHUNKY.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '13'\n type: *3\n value: 13\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170803709'\n type: *2\n value: '7509170803709'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-27 19:34:40.986881'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- CHUNKY.png\n 2 El producto ZAP-1300 fue modificado. 189.186.90.81 580bccbc-cc43-407b-bfa9-7762c10fc6f5 2020-08-30 00:48:54.94647 38800 1056 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1031\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.2419E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.19E4\ncash_fund: !ruby/object:BigDecimal 18:0.91E3\nphysical_cash: !ruby/object:BigDecimal 18:0.281E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.90.81 19b7c628-46f6-4684-9c94-efa2dd0f3664 2020-08-30 01:03:21.106725 38801 1031 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.90.81 19b7c628-46f6-4684-9c94-efa2dd0f3664 2020-08-30 01:03:21.119508 38802 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-29 21:19:33.807187000 Z\n- &1 2020-08-29 22:03:10.959961000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-30 04:14:28.606730655 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094270\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538003\n mask_addr: 4294967295\nsign_in_count:\n- 223\n- 224\n 448 \N 177.228.111.147 8a0c408b-bb33-482a-a9fd-01127c30eecf 2020-08-30 04:14:28.613997 38803 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 4kRvvM4pGkBqAoV5W2PV\n- RnaP_hPExFtgabz9735B\n 449 \N 177.228.111.147 8a0c408b-bb33-482a-a9fd-01127c30eecf 2020-08-30 04:14:28.628837 38804 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-29 21:23:35.874570000 Z\n- &1 2020-08-30 00:36:06.076184000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-30 23:54:12.720405959 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539927\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539511\n mask_addr: 4294967295\nsign_in_count:\n- 1783\n- 1784\n 3568 \N 177.228.117.119 e739c75e-9856-4f41-abed-21a759f3ae0b 2020-08-30 23:54:12.751741 38805 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qdoyYCH1WyWRs4ogkLY7\n- 1eK42eq8wSrhJxS1w17L\n 3569 \N 177.228.117.119 e739c75e-9856-4f41-abed-21a759f3ae0b 2020-08-30 23:54:12.780522 38806 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-28 16:35:12.282759000 Z\n- &1 2020-08-29 17:18:02.908388000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-31 16:46:57.868587250 Z\nsign_in_count:\n- 627\n- 628\n 1259 \N 189.186.41.254 202086e8-0ea5-4bb2-8797-94457921a84c 2020-08-31 16:46:57.91285 38807 2 User \N \N 2 User \N update ---\nunique_session_id:\n- x29ZZDtrutv2GdvrAVe8\n- "-xX8dZXxGytCdY_BnyPj"\n 1260 \N 189.186.41.254 202086e8-0ea5-4bb2-8797-94457921a84c 2020-08-31 16:46:57.936208 38808 1032 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.803E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 803.0 189.186.41.254 40a510b4-c49c-44cb-bf64-ec550d705795 2020-08-31 17:03:25.212532 38809 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-28 23:49:56.909618000 Z\n- &1 2020-08-29 00:54:10.322717000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-31 18:54:41.641640357 Z\nsign_in_count:\n- 197\n- 198\n 397 \N 189.186.90.81 1b13cdb0-3281-4375-b7f1-984ea098f94c 2020-08-31 18:54:41.651895 38810 18 User \N \N 18 User \N update ---\nunique_session_id:\n- WjDBs9Rdv6vgCbrRpsLf\n- BWEFdVz9PiJfz1XogKzG\n 398 \N 189.186.90.81 1b13cdb0-3281-4375-b7f1-984ea098f94c 2020-08-31 18:54:41.673018 38811 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-30 00:36:06.076184000 Z\n- &1 2020-08-30 23:54:12.720405000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-31 19:34:29.166828283 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539511\n mask_addr: 4294967295\nsign_in_count:\n- 1784\n- 1785\n 3570 \N 177.228.117.119 8e63aa00-008c-45e1-9cf3-846331a6a953 2020-08-31 19:34:29.173818 38812 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1eK42eq8wSrhJxS1w17L\n- QzUGyEez-FYzWnU9D_eZ\n 3571 \N 177.228.117.119 8e63aa00-008c-45e1-9cf3-846331a6a953 2020-08-31 19:34:29.191114 38813 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-30 23:54:12.720405000 Z\n- &1 2020-08-31 19:34:29.166828000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-31 19:54:52.041503207 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539511\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1785\n- 1786\n 3572 \N 189.186.90.81 1fa7a134-0e53-4c24-9377-8a1ff769aa0b 2020-08-31 19:54:52.047877 38814 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QzUGyEez-FYzWnU9D_eZ\n- 41V_68DgDACk7sppZH6T\n 3573 \N 189.186.90.81 1fa7a134-0e53-4c24-9377-8a1ff769aa0b 2020-08-31 19:54:52.06531 38815 2816 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1032\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-08-31\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1345\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 f5bf2ef6-58e3-457d-90c7-38c817242308 2020-08-31 21:06:58.848697 38816 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 23 \N 189.186.41.254 f5bf2ef6-58e3-457d-90c7-38c817242308 2020-08-31 21:06:58.876631 38817 2816 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 c22b6f67-18eb-4cf1-9928-c13dca4bd51c 2020-08-31 21:07:07.821103 38818 3777 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1032\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2816\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1345\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1345 189.186.41.254 c22b6f67-18eb-4cf1-9928-c13dca4bd51c 2020-08-31 21:07:07.844789 38819 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-29 00:54:10.322717000 Z\n- &1 2020-08-31 18:54:41.641640000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-31 21:14:31.767253957 Z\nsign_in_count:\n- 198\n- 199\n 399 \N 189.186.90.81 63773505-ebf6-4302-a86b-271d970d64fa 2020-08-31 21:14:31.784911 38820 18 User \N \N 18 User \N update ---\nunique_session_id:\n- BWEFdVz9PiJfz1XogKzG\n- yqa9WyEXE859DnqsyikX\n 400 \N 189.186.90.81 63773505-ebf6-4302-a86b-271d970d64fa 2020-08-31 21:14:31.803991 38821 1033 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.91E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 910.0 189.186.90.81 7117d90c-0493-4400-b78f-51ab87ec24ba 2020-08-31 21:14:55.390946 38822 2817 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1033\namount: !ruby/object:BigDecimal 18:0.1948E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1948E4\nstatus: 0\ndate_sale: 2020-08-31\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-552\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 888274f2-9982-409e-ad62-340f036d08ad 2020-08-31 21:18:36.574844 38823 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 56 \N 189.186.90.81 888274f2-9982-409e-ad62-340f036d08ad 2020-08-31 21:18:36.615764 38824 2111 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.90.81 888274f2-9982-409e-ad62-340f036d08ad 2020-08-31 21:18:36.653229 38825 1913 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.90.81 888274f2-9982-409e-ad62-340f036d08ad 2020-08-31 21:18:36.680017 38826 2817 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 a617ebe1-2af1-41f1-a21d-f3b850c759de 2020-08-31 21:19:09.631545 38827 3778 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1033\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1948E4\nmove_type: '1'\nsale_id: 2817\ncardnumber: 889\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-552\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-552 189.186.90.81 a617ebe1-2af1-41f1-a21d-f3b850c759de 2020-08-31 21:19:09.659132 38828 2561 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.90.81 e58d1b0e-16e7-4963-90b2-262773457742 2020-08-31 21:28:30.458958 38829 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.18E2\n- !ruby/object:BigDecimal 18:0.19E2\n 48 \N 189.186.90.81 e58d1b0e-16e7-4963-90b2-262773457742 2020-08-31 21:28:30.48065 38830 367 Customer \N \N 18 User \N create ---\nnick_name: NABELI NAVIDAD\nphone: "(667) 252-5476"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente NABELI NAVIDAD fue registrado. 189.186.90.81 2173254e-48b5-403f-a26b-d5e79835baf0 2020-08-31 21:29:04.78079 38831 2818 Sale \N \N 18 User \N create ---\ncustomer_id: 367\nuser_id: 18\nopen_cash_register_id: 1033\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-08-31\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-553\nexpiration_date: 2020-10-05\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 d8d37fa4-c49b-4fca-b7e1-3c1dfa8bfb0b 2020-08-31 21:29:14.368809 38832 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.19E2\n- !ruby/object:BigDecimal 18:0.18E2\n 49 \N 189.186.90.81 d8d37fa4-c49b-4fca-b7e1-3c1dfa8bfb0b 2020-08-31 21:29:14.39395 38833 3779 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1033\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2818\ncardnumber: 4566\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-553\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-553 189.186.90.81 b949f472-e32d-497c-9634-b660a0cf044b 2020-08-31 21:29:35.600284 38834 2818 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.90.81 4128b825-4da6-4d33-8741-635b3481026a 2020-08-31 21:29:37.165143 38835 368 Customer \N \N 18 User \N create ---\nnick_name: VANESSA H\nphone: "(667) 497-8740"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente VANESSA H fue registrado. 189.186.90.81 30633822-8890-4138-b28c-206b7a501c96 2020-08-31 21:30:22.893119 38836 369 Customer \N \N 2 User \N create ---\nnick_name: BLANCA NEREYDA AVILES\nphone: "(667) 373-0605"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BLANCA NEREYDA AVILES fue registrado. 189.186.41.254 d75ea997-35d9-4dfb-b998-0f58b4094331 2020-08-31 21:30:27.480014 38837 2819 Sale \N \N 2 User \N create ---\ncustomer_id: 369\nuser_id: 2\nopen_cash_register_id: 1032\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-08-31\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1346\nexpiration_date: 2020-10-05\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 5c3e2723-5158-4ee4-a1e5-4022280e62a7 2020-08-31 21:31:15.18131 38838 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 24 \N 189.186.41.254 5c3e2723-5158-4ee4-a1e5-4022280e62a7 2020-08-31 21:31:15.20502 38839 2820 Sale \N \N 18 User \N create ---\ncustomer_id: 368\nuser_id: 18\nopen_cash_register_id: 1033\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-08-31\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-554\nexpiration_date: 2020-10-05\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 ea8af837-b47d-4291-ab84-cefbb369aef6 2020-08-31 21:31:22.293217 38840 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 189.186.90.81 ea8af837-b47d-4291-ab84-cefbb369aef6 2020-08-31 21:31:22.317223 38887 2227 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.76.107 ad7ee733-c907-41cd-a269-f9ddcfa75dd3 2020-09-01 18:38:51.116366 38841 3780 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1032\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2819\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1346\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1346 189.186.41.254 a614d613-ae38-402c-a069-64c83d90c070 2020-08-31 21:31:23.946616 38842 2819 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.41.254 a6f4b342-a97f-4ca2-a3ce-9034cd25daad 2020-08-31 21:31:26.712053 38843 3781 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1033\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2820\ncardnumber: 4265\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-554\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-554 189.186.90.81 dcea02da-5933-4ff3-96ce-5d8a75f9d881 2020-08-31 21:31:39.625857 38844 2820 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.90.81 a573585c-c1dc-4e03-81c0-39ebc8465b2b 2020-08-31 21:31:41.130765 38845 370 Customer \N \N 18 User \N create ---\nnick_name: PAOLA LASHES\nphone: "(667) 253-5658"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente PAOLA LASHES fue registrado. 189.186.90.81 2147a009-4e8c-4c9f-83b0-7242e3009910 2020-08-31 21:33:45.041863 38846 2821 Sale \N \N 18 User \N create ---\ncustomer_id: 370\nuser_id: 18\nopen_cash_register_id: 1033\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-08-31\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-555\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 4cc0fbf8-cb94-4260-be6e-dc8d9c849708 2020-08-31 21:34:14.973994 38847 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 189.186.90.81 4cc0fbf8-cb94-4260-be6e-dc8d9c849708 2020-08-31 21:34:14.998567 38848 2821 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.90.81 7c6e3bf7-3efb-4453-9207-70a9efd56386 2020-08-31 21:34:32.301813 38849 3782 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1033\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.47E3\nmove_type: '1'\nsale_id: 2821\ncardnumber: 4558\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-555\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-555 189.186.90.81 7c6e3bf7-3efb-4453-9207-70a9efd56386 2020-08-31 21:34:32.321033 38850 3782 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1033\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.47E3\nmove_type: '1'\nsale_id: 2821\ncardnumber: 4558\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-555\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.90.81 5d9bda1a-c618-4433-b911-28cf3123e16b 2020-08-31 21:34:41.806656 38851 3783 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1033\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.47E3\nmove_type: '1'\nsale_id: 2821\ncardnumber: 5455\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-555\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-555 189.186.90.81 f876c5ce-547a-44d5-825b-c0f069273492 2020-08-31 21:34:50.977099 38852 2821 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-555 cancelada. 189.186.90.81 29b24c44-897c-42d9-8d5c-1998f2a94d31 2020-08-31 21:34:59.117913 38853 3783 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1033\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.47E3\nmove_type: '1'\nsale_id: 2821\ncardnumber: 5455\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-555\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.90.81 29b24c44-897c-42d9-8d5c-1998f2a94d31 2020-08-31 21:34:59.138355 38854 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 189.186.90.81 29b24c44-897c-42d9-8d5c-1998f2a94d31 2020-08-31 21:34:59.160542 38855 2822 Sale \N \N 18 User \N create ---\ncustomer_id: 370\nuser_id: 18\nopen_cash_register_id: 1033\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-08-31\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-556\nexpiration_date: 2020-10-05\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.90.81 5188a7fe-20b5-4701-bd6c-eaa583f8ef25 2020-08-31 21:35:30.105764 38856 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 189.186.90.81 5188a7fe-20b5-4701-bd6c-eaa583f8ef25 2020-08-31 21:35:30.129854 38857 3784 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1033\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.47E3\nmove_type: '1'\nsale_id: 2822\ncardnumber: 4256\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-556\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-556 189.186.90.81 c9716916-8cb6-491d-bdb3-aafc54b43bcb 2020-08-31 21:35:41.780597 38858 2822 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.90.81 b08097ff-2ad4-4220-a75d-5062b994b379 2020-08-31 21:35:44.211519 38859 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-31 19:34:29.166828000 Z\n- &1 2020-08-31 19:54:52.041503000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-31 21:54:01.772273726 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539511\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\nsign_in_count:\n- 1786\n- 1787\n 3574 \N 189.186.90.81 5ce8458c-3957-4bfb-ab2e-2cdbe70d6a08 2020-08-31 21:54:01.779851 38860 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 41V_68DgDACk7sppZH6T\n- ANjF4STDFxhjwRnuxiKi\n 3575 \N 189.186.90.81 5ce8458c-3957-4bfb-ab2e-2cdbe70d6a08 2020-08-31 21:54:01.798711 38886 3785 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1034\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2823\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-557\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.76.107 ad7ee733-c907-41cd-a269-f9ddcfa75dd3 2020-09-01 18:38:51.083406 38861 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-29 22:03:10.959961000 Z\n- &1 2020-08-30 04:14:28.606730000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-31 23:17:27.286358479 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094270\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538003\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538003\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946148\n mask_addr: 4294967295\nsign_in_count:\n- 224\n- 225\n 450 \N 200.68.181.164 f9e20233-330a-4a45-9c8f-2392a185e262 2020-08-31 23:17:27.294317 38862 1 User \N \N 1 User \N update ---\nunique_session_id:\n- RnaP_hPExFtgabz9735B\n- xYPTeqGEWhq_hWLnJUwn\n 451 \N 200.68.181.164 f9e20233-330a-4a45-9c8f-2392a185e262 2020-08-31 23:17:27.310874 38863 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-31 18:54:41.641640000 Z\n- &1 2020-08-31 21:14:31.767253000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-31 23:25:21.857144283 Z\nsign_in_count:\n- 199\n- 200\n 401 \N 189.186.90.81 601ea613-6e6c-4816-8232-5ec15ea7c5dc 2020-08-31 23:25:21.862874 38864 18 User \N \N 18 User \N update ---\nunique_session_id:\n- yqa9WyEXE859DnqsyikX\n- 9RUbRjBy_mGGVzQwFuaR\n 402 \N 189.186.90.81 601ea613-6e6c-4816-8232-5ec15ea7c5dc 2020-08-31 23:25:21.876437 38865 669 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-08-31\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.90.81 575706c4-053d-4d15-97aa-60aa1ff929f3 2020-08-31 23:27:43.857074 38866 1984 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.90.81 575706c4-053d-4d15-97aa-60aa1ff929f3 2020-08-31 23:27:43.875871 38867 2043 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.90.81 575706c4-053d-4d15-97aa-60aa1ff929f3 2020-08-31 23:27:43.89897 38868 911 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.90.81 575706c4-053d-4d15-97aa-60aa1ff929f3 2020-08-31 23:27:43.921039 38869 154 Customer \N \N 2 User \N update ---\nstatus:\n- active\n- 0\n 2 \N 189.186.41.254 12c56061-126d-4340-a4cf-7f09d1924aa1 2020-08-31 23:42:14.483204 38870 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-27 04:26:09.063845000 Z\n- &1 2020-08-29 18:38:10.445686000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-08-31 23:54:40.567610662 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085197\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539511\n mask_addr: 4294967295\nsign_in_count:\n- 264\n- 265\n 531 \N 177.228.117.119 884bc1f6-5030-4000-9bb2-3c9d765ca93d 2020-08-31 23:54:40.578216 38871 21 User \N \N 21 User \N update ---\nunique_session_id:\n- tTAyqPy5XhviGYtT1yu6\n- tcdUkAQKok9izZyuzZXw\n 532 \N 177.228.117.119 884bc1f6-5030-4000-9bb2-3c9d765ca93d 2020-08-31 23:54:40.593984 38872 1057 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1032\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1999E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.18E4\ncash_fund: !ruby/object:BigDecimal 18:0.1002E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2802E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.254 361ff2f8-565d-4359-9765-ec6b93502125 2020-08-31 23:59:12.773466 38873 1032 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.254 361ff2f8-565d-4359-9765-ec6b93502125 2020-08-31 23:59:12.795384 38874 1058 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1033\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.3418E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.91E3\nphysical_cash: !ruby/object:BigDecimal 18:0.91E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.90.81 bd2f3649-f80d-43e3-82f8-d8fe851de79f 2020-09-01 00:32:30.862897 38875 1033 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.90.81 bd2f3649-f80d-43e3-82f8-d8fe851de79f 2020-09-01 00:32:30.876784 38876 1034 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.91E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 910.0 189.186.76.107 41ba4469-c2cc-4852-a0ae-bad443f2b4a3 2020-09-01 18:35:44.591649 38877 371 Customer \N \N 18 User \N create ---\nnick_name: ANA QUINTERO\nphone: "(667) 198-0475"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANA QUINTERO fue registrado. 189.186.76.107 fa59b760-d4c7-4ae3-b67d-2d41472a3916 2020-09-01 18:36:31.221831 38878 367 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-86\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nobservations: ''\npurchase_date: 2020-09-01\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-86 por $ 1399.0 MXN creada. 189.186.76.107 793ee34a-520a-41ab-ac15-03d32163a3fb 2020-09-01 18:38:11.874012 38879 2227 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1301\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.76.107 793ee34a-520a-41ab-ac15-03d32163a3fb 2020-09-01 18:38:11.908621 38880 2823 Sale \N \N 18 User \N create ---\ncustomer_id: 371\nuser_id: 18\nopen_cash_register_id: 1034\namount: !ruby/object:BigDecimal 18:0.2998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2998E4\nstatus: 0\ndate_sale: 2020-09-01\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-557\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.76.107 96d65373-a79b-43ee-a5e7-34225e73d056 2020-09-01 18:38:30.731792 38881 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 57 \N 189.186.76.107 96d65373-a79b-43ee-a5e7-34225e73d056 2020-09-01 18:38:30.758691 38882 2227 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.76.107 96d65373-a79b-43ee-a5e7-34225e73d056 2020-09-01 18:38:30.783638 38883 2823 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.76.107 09aa28c5-517e-435a-9e5a-0137fe894196 2020-09-01 18:38:43.205627 38884 3785 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1034\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 2823\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-557\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-557 189.186.76.107 09aa28c5-517e-435a-9e5a-0137fe894196 2020-09-01 18:38:43.22717 38888 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 58 \N 189.186.76.107 ad7ee733-c907-41cd-a269-f9ddcfa75dd3 2020-09-01 18:38:51.139716 38889 2824 Sale \N \N 18 User \N create ---\ncustomer_id: 371\nuser_id: 18\nopen_cash_register_id: 1034\namount: !ruby/object:BigDecimal 18:0.2998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2998E4\nstatus: 0\ndate_sale: 2020-09-01\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-558\nexpiration_date: 2020-10-06\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.76.107 5fd07a82-32a8-4c86-8a8f-2c2e32687df1 2020-09-01 18:39:19.09548 38890 2227 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.76.107 5fd07a82-32a8-4c86-8a8f-2c2e32687df1 2020-09-01 18:39:19.121784 38891 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 59 \N 189.186.76.107 5fd07a82-32a8-4c86-8a8f-2c2e32687df1 2020-09-01 18:39:19.145957 38892 3786 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1034\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2824\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-558\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-558 189.186.76.107 773cbb2f-bcfd-4d98-949a-a319fa9597c3 2020-09-01 18:39:24.963998 38893 2824 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.76.107 a169b4f5-8e66-4e2e-85dc-a3df1926b92e 2020-09-01 18:39:26.452923 38894 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-31 19:54:52.041503000 Z\n- &1 2020-08-31 21:54:01.772273000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-01 19:04:04.508921545 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103083\n mask_addr: 4294967295\nsign_in_count:\n- 1787\n- 1788\n 3576 \N 189.186.76.107 facedaa8-0fd9-40a0-a969-6fb5dc5f0458 2020-09-01 19:04:04.515948 38895 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ANjF4STDFxhjwRnuxiKi\n- g34X1RAqRRnDC7EMJzJD\n 3577 \N 189.186.76.107 facedaa8-0fd9-40a0-a969-6fb5dc5f0458 2020-09-01 19:04:04.533329 38896 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-29 17:18:02.908388000 Z\n- &1 2020-08-31 16:46:57.868587000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-01 19:04:41.029391172 Z\nsign_in_count:\n- 628\n- 629\n 1261 \N 189.186.41.254 411fc121-b259-4b3a-a7bf-3ba3179c7b8d 2020-09-01 19:04:41.034971 38897 2 User \N \N 2 User \N update ---\nunique_session_id:\n- "-xX8dZXxGytCdY_BnyPj"\n- pu9ZTt9tSc4zy3UELrXx\n 1262 \N 189.186.41.254 411fc121-b259-4b3a-a7bf-3ba3179c7b8d 2020-09-01 19:04:41.048255 38898 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-31 21:14:31.767253000 Z\n- &1 2020-08-31 23:25:21.857144000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-01 19:05:03.796875312 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103083\n mask_addr: 4294967295\nsign_in_count:\n- 200\n- 201\n 403 \N 189.186.76.107 1b0eca2a-09e3-40b7-ad02-d2822dbf0f60 2020-09-01 19:05:03.804246 38899 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 9RUbRjBy_mGGVzQwFuaR\n- 2UtCQ-xLA6vezrQw51FQ\n 404 \N 189.186.76.107 1b0eca2a-09e3-40b7-ad02-d2822dbf0f60 2020-09-01 19:05:03.821104 38900 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-08-31 21:54:01.772273000 Z\n- &1 2020-09-01 19:04:04.508921000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-01 21:06:39.178624457 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103083\n mask_addr: 4294967295\nsign_in_count:\n- 1788\n- 1789\n 3578 \N 189.186.76.107 44588dc5-3cb3-4f1e-93f3-e2a6f7377fee 2020-09-01 21:06:39.185034 38901 4 User \N \N 4 User \N update ---\nunique_session_id:\n- g34X1RAqRRnDC7EMJzJD\n- X58P57UsiXDS4xZHtqQ5\n 3579 \N 189.186.76.107 44588dc5-3cb3-4f1e-93f3-e2a6f7377fee 2020-09-01 21:06:39.201174 38902 1035 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1002E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1002.0 189.186.41.254 0a9dd04e-1dbd-498a-8970-ac3d0f5302f6 2020-09-01 22:02:52.310199 38903 2825 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1035\namount: !ruby/object:BigDecimal 18:0.52762E3\ntax: !ruby/object:BigDecimal 18:0.4138E2\ndiscount: !ruby/object:BigDecimal 18:0.269E3\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2020-09-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1347\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 ece6b1fd-bc9e-4e96-aaeb-5fbbbc185872 2020-09-01 22:04:17.165023 38904 139 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 189.186.41.254 ece6b1fd-bc9e-4e96-aaeb-5fbbbc185872 2020-09-01 22:04:17.193844 38905 2825 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 a165dd23-6211-4c41-af7b-b4dcb778e402 2020-09-01 22:04:46.922807 38906 3787 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1035\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 2825\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1347\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1347 189.186.41.254 a165dd23-6211-4c41-af7b-b4dcb778e402 2020-09-01 22:04:46.942697 38907 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-08-31 23:25:21.857144000 Z\n- &1 2020-09-01 19:05:03.796875000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-01 22:05:09.439164576 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103083\n mask_addr: 4294967295\nsign_in_count:\n- 201\n- 202\n 405 \N 189.186.76.107 be382f57-6581-4692-a977-61e8524b3c3b 2020-09-01 22:05:09.445841 38908 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 2UtCQ-xLA6vezrQw51FQ\n- V6m7sREp8r_n_xZXFYoE\n 406 \N 189.186.76.107 be382f57-6581-4692-a977-61e8524b3c3b 2020-09-01 22:05:09.460034 38909 2826 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1034\namount: !ruby/object:BigDecimal 18:0.258E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.258E3\nstatus: 0\ndate_sale: 2020-09-01\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-559\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.76.107 a0701c39-e5c5-4e09-94d0-2b1932818e82 2020-09-01 22:05:59.760618 38910 2176 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.76.107 a0701c39-e5c5-4e09-94d0-2b1932818e82 2020-09-01 22:05:59.786395 38911 2083 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.76.107 a0701c39-e5c5-4e09-94d0-2b1932818e82 2020-09-01 22:05:59.806924 38913 3788 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1034\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.258E3\nmove_type: '1'\nsale_id: 2826\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-559\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.258E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-559 189.186.76.107 4db94ebb-7e34-4324-850d-d18f8d1689ab 2020-09-01 22:06:49.706724 38914 2827 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1035\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-09-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1348\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 7121a69a-df8c-4141-aa33-0ab60af52f06 2020-09-01 22:56:41.633876 38915 1692 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.41.254 7121a69a-df8c-4141-aa33-0ab60af52f06 2020-09-01 22:56:41.659462 38916 2827 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 f21e9fa3-bfa5-43fb-bfa1-48d4836578a3 2020-09-01 22:56:46.17276 38917 3789 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1035\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 2827\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1348\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1348 189.186.41.254 f21e9fa3-bfa5-43fb-bfa1-48d4836578a3 2020-09-01 22:56:46.192549 38918 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-01 19:04:04.508921000 Z\n- &1 2020-09-01 21:06:39.178624000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-01 23:06:18.241854029 Z\nsign_in_count:\n- 1789\n- 1790\n 3580 \N 189.186.76.107 6d473ff9-0fc5-40af-b95e-16744acb6575 2020-09-01 23:06:18.264621 38919 4 User \N \N 4 User \N update ---\nunique_session_id:\n- X58P57UsiXDS4xZHtqQ5\n- dLkJ_t_Vn3tywY2TGrkT\n 3581 \N 189.186.76.107 6d473ff9-0fc5-40af-b95e-16744acb6575 2020-09-01 23:06:18.28563 38920 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-01 19:05:03.796875000 Z\n- &1 2020-09-01 22:05:09.439164000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-01 23:28:18.631174425 Z\nsign_in_count:\n- 202\n- 203\n 407 \N 189.186.76.107 b0915502-f01e-4c3a-8e4e-ed8b3365dcdc 2020-09-01 23:28:18.637939 38921 18 User \N \N 18 User \N update ---\nunique_session_id:\n- V6m7sREp8r_n_xZXFYoE\n- x43_uV4Vik4GELJMLXt7\n 408 \N 189.186.76.107 b0915502-f01e-4c3a-8e4e-ed8b3365dcdc 2020-09-01 23:28:18.651368 38922 2828 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1034\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2020-09-01\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-560\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.76.107 cd6e7a46-9ea6-4a10-a170-0615a13389f5 2020-09-01 23:28:37.665627 38923 831 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.76.107 cd6e7a46-9ea6-4a10-a170-0615a13389f5 2020-09-01 23:28:37.694195 38924 2828 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.76.107 dcefde2d-ff52-4416-b115-4eb67e10f8f0 2020-09-01 23:29:06.764301 38925 3790 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1034\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.869E3\nmove_type: '1'\nsale_id: 2828\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-560\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.131E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-560 189.186.76.107 dcefde2d-ff52-4416-b115-4eb67e10f8f0 2020-09-01 23:29:06.788739 38926 2829 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1034\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-01\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-561\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.76.107 3cfd04a5-df30-43de-befe-34a9a762d366 2020-09-01 23:49:16.97534 38927 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.18E2\n- !ruby/object:BigDecimal 18:0.17E2\n 50 \N 189.186.76.107 3cfd04a5-df30-43de-befe-34a9a762d366 2020-09-01 23:49:17.001407 38928 2829 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.76.107 8c364596-ee0f-4b64-a09e-c5fe9e2444b3 2020-09-01 23:49:24.177155 38929 3791 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1034\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2829\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-561\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-561 189.186.76.107 8c364596-ee0f-4b64-a09e-c5fe9e2444b3 2020-09-01 23:49:24.196186 38930 1059 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1035\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1199E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.13E4\ncash_fund: !ruby/object:BigDecimal 18:0.901E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2201E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.254 b08f4bbf-e17f-4d51-a587-1019848c4fe7 2020-09-01 23:51:37.51018 38931 1035 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.254 b08f4bbf-e17f-4d51-a587-1019848c4fe7 2020-09-01 23:51:37.524094 38932 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-01 21:06:39.178624000 Z\n- &1 2020-09-01 23:06:18.241854000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-01 23:56:18.200613188 Z\nsign_in_count:\n- 1790\n- 1791\n 3582 \N 189.186.76.107 a8c733a0-3971-4e1c-a277-b459b307b7be 2020-09-01 23:56:18.206508 38933 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dLkJ_t_Vn3tywY2TGrkT\n- ZAXiUhciKS4bJjBGW7Rx\n 3583 \N 189.186.76.107 a8c733a0-3971-4e1c-a277-b459b307b7be 2020-09-01 23:56:18.221006 38934 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-01 22:05:09.439164000 Z\n- &1 2020-09-01 23:28:18.631174000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-02 00:55:43.779558542 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103083\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117641\n mask_addr: 4294967295\nsign_in_count:\n- 203\n- 204\n 409 \N 189.186.133.73 4100ac53-e202-47d9-beda-6c5f139f2265 2020-09-02 00:55:43.786128 38935 18 User \N \N 18 User \N update ---\nunique_session_id:\n- x43_uV4Vik4GELJMLXt7\n- nZZuKrpSthN5wZozFPq2\n 410 \N 189.186.133.73 4100ac53-e202-47d9-beda-6c5f139f2265 2020-09-02 00:55:43.800076 38936 1060 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1034\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.3626E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.4E4\ncash_fund: !ruby/object:BigDecimal 18:0.536E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4536E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.133.73 c4802390-182e-4589-8cdd-778ea456d930 2020-09-02 01:17:24.128928 38937 1034 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.133.73 c4802390-182e-4589-8cdd-778ea456d930 2020-09-02 01:17:24.140894 38938 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-01 23:06:18.241854000 Z\n- &1 2020-09-01 23:56:18.200613000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-02 01:18:07.837140142 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103083\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117641\n mask_addr: 4294967295\nsign_in_count:\n- 1791\n- 1792\n 3584 \N 189.186.133.73 c2117749-af5d-4309-a94d-1c3dbd599bf4 2020-09-02 01:18:07.844627 38939 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZAXiUhciKS4bJjBGW7Rx\n- cC78pFX6uxAsEBPsNE33\n 3585 \N 189.186.133.73 c2117749-af5d-4309-a94d-1c3dbd599bf4 2020-09-02 01:18:07.860622 38940 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-01 23:28:18.631174000 Z\n- &1 2020-09-02 00:55:43.779558000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-02 01:29:12.109921118 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103083\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117641\n mask_addr: 4294967295\nsign_in_count:\n- 204\n- 205\n 411 \N 189.186.133.73 8df51a6b-2669-4735-bf2d-e1555101a39c 2020-09-02 01:29:12.117092 38941 18 User \N \N 18 User \N update ---\nunique_session_id:\n- nZZuKrpSthN5wZozFPq2\n- N2jR1MezCJmsJ4oZQXEY\n 412 \N 189.186.133.73 8df51a6b-2669-4735-bf2d-e1555101a39c 2020-09-02 01:29:12.13288 38942 1036 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.536E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 536.0 189.186.133.73 2154e628-72f4-4e4f-b63c-ae24a8112ebe 2020-09-02 01:29:41.532925 38943 372 Customer \N \N 18 User \N create ---\nnick_name: GLADIS URIAS\nphone: "(667) 145-4548"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente GLADIS URIAS fue registrado. 189.186.133.73 ca6d6eae-1b41-4b9f-94ff-7b7900824992 2020-09-02 01:30:25.720397 38944 2830 Sale \N \N 18 User \N create ---\ncustomer_id: 372\nuser_id: 18\nopen_cash_register_id: 1036\namount: !ruby/object:BigDecimal 18:0.137845E4\ntax: !ruby/object:BigDecimal 18:0.22055E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-09-01\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-562\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.133.73 8053ff22-2636-4068-a57c-890c23216f1a 2020-09-02 01:31:40.419448 38945 1994 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.133.73 8053ff22-2636-4068-a57c-890c23216f1a 2020-09-02 01:31:40.452379 38946 2830 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.133.73 5f137ada-2464-4561-a6ee-5c369b0ef1fb 2020-09-02 01:31:57.597672 38947 3792 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1036\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 2830\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-562\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-562 189.186.133.73 5f137ada-2464-4561-a6ee-5c369b0ef1fb 2020-09-02 01:31:57.617576 38948 2830 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-562 cancelada. 189.186.133.73 eabcb5ce-0e7b-48ce-be9f-c68b462ab666 2020-09-02 01:32:04.73758 38949 3792 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1036\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2830\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-562\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.133.73 eabcb5ce-0e7b-48ce-be9f-c68b462ab666 2020-09-02 01:32:04.759577 38950 1994 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.133.73 eabcb5ce-0e7b-48ce-be9f-c68b462ab666 2020-09-02 01:32:04.784529 38951 2831 Sale \N \N 18 User \N create ---\ncustomer_id: 194\nuser_id: 18\nopen_cash_register_id: 1036\namount: !ruby/object:BigDecimal 18:0.137845E4\ntax: !ruby/object:BigDecimal 18:0.22055E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-09-01\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-563\nexpiration_date: 2020-10-06\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.133.73 3d129188-37d6-4561-8dac-597e1d8acf3d 2020-09-02 01:32:53.095899 38952 1994 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.133.73 3d129188-37d6-4561-8dac-597e1d8acf3d 2020-09-02 01:32:53.120966 38953 3793 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1036\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2831\ncardnumber: 1526\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-563\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-563 189.186.133.73 7a75fdf0-1954-4653-9a3f-58a8790efbb7 2020-09-02 01:33:34.579217 38954 2831 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.133.73 d0bd4e30-0d66-49e5-ade0-1205b5ed6ae1 2020-09-02 01:33:36.418127 38955 1061 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1036\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.5E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.536E3\nphysical_cash: !ruby/object:BigDecimal 18:0.536E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.133.73 3b0e85fd-9326-4f03-82fa-029c82969c9d 2020-09-02 01:35:01.402165 38956 1036 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.133.73 3b0e85fd-9326-4f03-82fa-029c82969c9d 2020-09-02 01:35:01.416396 38977 3797 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1038\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1298E4\nmove_type: '1'\nsale_id: 2744\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.13E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-507 189.186.133.73 d675c904-eeeb-4138-b08e-96e408dbbab2 2020-09-02 19:11:20.974511 38957 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-01 23:56:18.200613000 Z\n- &1 2020-09-02 01:18:07.837140000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-02 06:16:17.526340027 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103083\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117641\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946106\n mask_addr: 4294967295\nsign_in_count:\n- 1792\n- 1793\n 3586 \N 200.68.181.122 140e0f5e-22af-437f-8b42-ec0052d8c178 2020-09-02 06:16:17.534853 38958 4 User \N \N 4 User \N update ---\nunique_session_id:\n- cC78pFX6uxAsEBPsNE33\n- zZRiCeRe49ZE8RAVx7c5\n 3587 \N 200.68.181.122 140e0f5e-22af-437f-8b42-ec0052d8c178 2020-09-02 06:16:17.553215 38959 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-08-31 16:46:57.868587000 Z\n- &1 2020-09-01 19:04:41.029391000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-02 16:01:09.674711901 Z\nsign_in_count:\n- 629\n- 630\n 1263 \N 189.186.41.254 ff973520-1168-48f9-87de-2e5d7fa9ddfe 2020-09-02 16:01:09.705459 38960 2 User \N \N 2 User \N update ---\nunique_session_id:\n- pu9ZTt9tSc4zy3UELrXx\n- F6TKg2NsANo_48jBo_ZC\n 1264 \N 189.186.41.254 ff973520-1168-48f9-87de-2e5d7fa9ddfe 2020-09-02 16:01:09.729257 38961 1037 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.901E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 901.0 189.186.41.254 8d513562-dad6-45a6-a15e-a7a8d64d1b7c 2020-09-02 16:01:43.610819 38962 2832 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1037\namount: !ruby/object:BigDecimal 18:0.139E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.139E3\nstatus: 0\ndate_sale: 2020-09-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1349\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 9932c620-14c9-4344-a485-5bdd8b82204e 2020-09-02 17:28:28.322882 38963 2074 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.41.254 9932c620-14c9-4344-a485-5bdd8b82204e 2020-09-02 17:28:28.4068 38964 2832 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 a73b8df0-90a3-47c0-8aa3-5a8036e5a038 2020-09-02 17:28:32.825636 38965 3794 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1037\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.139E3\nmove_type: '1'\nsale_id: 2832\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1349\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.139E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1349 189.186.41.254 a73b8df0-90a3-47c0-8aa3-5a8036e5a038 2020-09-02 17:28:32.848522 38966 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-30 04:14:28.606730000 Z\n- &1 2020-08-31 23:17:27.286358000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-02 17:31:35.375986754 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538003\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946148\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946148\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094270\n mask_addr: 4294967295\nsign_in_count:\n- 225\n- 226\n 452 \N 189.186.41.254 b2a24d2f-d376-4603-a280-9d80274151d7 2020-09-02 17:31:35.3853 38967 1 User \N \N 1 User \N update ---\nunique_session_id:\n- xYPTeqGEWhq_hWLnJUwn\n- JJsFrrSiQPmC6ncJ7uZv\n 453 \N 189.186.41.254 b2a24d2f-d376-4603-a280-9d80274151d7 2020-09-02 17:31:35.403257 38968 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-29 18:38:10.445686000 Z\n- &1 2020-08-31 23:54:40.567610000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-02 18:25:38.606260100 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539511\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539511\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117641\n mask_addr: 4294967295\nsign_in_count:\n- 265\n- 266\n 533 \N 189.186.133.73 bd762282-326c-431f-82bb-0db17947b484 2020-09-02 18:25:38.615082 38969 21 User \N \N 21 User \N update ---\nunique_session_id:\n- tcdUkAQKok9izZyuzZXw\n- pUVneEtPvN-M9m6w311P\n 534 \N 189.186.133.73 bd762282-326c-431f-82bb-0db17947b484 2020-09-02 18:25:38.631616 38970 2833 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1037\namount: !ruby/object:BigDecimal 18:0.95762E3\ntax: !ruby/object:BigDecimal 18:0.4138E2\ndiscount: !ruby/object:BigDecimal 18:0.699E3\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2020-09-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1350\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 6832c783-6780-4a7e-b461-1acf8424fa66 2020-09-02 18:44:26.435577 38971 236 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.41.254 6832c783-6780-4a7e-b461-1acf8424fa66 2020-09-02 18:44:26.46399 38972 2833 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 a0c7ccc1-37d6-481e-b17b-5003599a7d09 2020-09-02 18:44:31.369435 38973 3795 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1037\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 2833\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1350\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1350 189.186.41.254 a0c7ccc1-37d6-481e-b17b-5003599a7d09 2020-09-02 18:44:31.388879 38974 1038 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.536E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 536.0 189.186.133.73 cb20eea9-abdc-49a9-a112-aaad0fa66505 2020-09-02 19:10:39.80073 38975 3796 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1038\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2744\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.13E4\nchange: !ruby/object:BigDecimal 18:0.13E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-507 189.186.133.73 518bfe56-b31c-4286-ae7b-5d73aa820882 2020-09-02 19:11:05.988748 38976 3796 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1038\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2744\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.13E4\nchange: !ruby/object:BigDecimal 18:0.13E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.133.73 b95ce1ee-2d27-415c-8ea5-5a972ff9a9ae 2020-09-02 19:11:10.592954 38978 2744 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.133.73 bae6b0df-10bb-4f36-bc72-b31f477d049b 2020-09-02 19:11:29.429966 38979 2834 Sale \N \N 21 User \N create ---\ncustomer_id: 363\nuser_id: 21\nopen_cash_register_id: 1038\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-09-02\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-564\nexpiration_date: 2020-10-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.133.73 7cb92dbc-064f-429f-a57d-3d2ef693b314 2020-09-02 19:16:40.886557 38980 1822 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 60 \N 189.186.133.73 7cb92dbc-064f-429f-a57d-3d2ef693b314 2020-09-02 19:16:40.917016 38981 2834 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-564 cancelada. 189.186.133.73 1d967d95-103f-4715-9c9c-f4327d567ea6 2020-09-02 19:16:53.428335 38982 1822 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 61 \N 189.186.133.73 1d967d95-103f-4715-9c9c-f4327d567ea6 2020-09-02 19:16:53.450242 38983 2835 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1038\namount: !ruby/object:BigDecimal 18:0.189E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.189E3\nstatus: 0\ndate_sale: 2020-09-02\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-565\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.133.73 60706eaa-d299-45d0-abd5-a9f9fdaaeba0 2020-09-02 19:17:06.678681 38984 2182 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.133.73 60706eaa-d299-45d0-abd5-a9f9fdaaeba0 2020-09-02 19:17:06.706166 38985 2835 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.133.73 7af62b44-086f-492c-a953-b3dd167ef7d5 2020-09-02 19:17:14.067306 38986 3798 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1038\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.189E3\nmove_type: '1'\nsale_id: 2835\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-565\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-565 189.186.133.73 7af62b44-086f-492c-a953-b3dd167ef7d5 2020-09-02 19:17:14.090639 38987 2836 Sale \N \N 21 User \N create ---\ncustomer_id: 363\nuser_id: 21\nopen_cash_register_id: 1038\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-09-02\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-566\nexpiration_date: 2020-10-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.133.73 9bf9807c-57c9-489d-8335-6beaeb9005da 2020-09-02 19:17:53.074926 38988 1822 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 62 \N 189.186.133.73 9bf9807c-57c9-489d-8335-6beaeb9005da 2020-09-02 19:17:53.102055 38989 3799 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1038\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2836\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-566\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-566 189.186.133.73 4fd937be-0da6-4961-bfd5-45d5bbef23d5 2020-09-02 19:17:59.878329 38990 2836 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.133.73 5ea11e1c-66eb-45f5-b795-40f4a0f4c765 2020-09-02 19:18:01.560544 38991 2837 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1038\namount: !ruby/object:BigDecimal 18:0.3398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1599E4\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-09-02\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-567\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.133.73 feed8337-45c4-4b93-a13e-8284041956b2 2020-09-02 20:13:11.588532 38992 888 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.133.73 feed8337-45c4-4b93-a13e-8284041956b2 2020-09-02 20:13:11.613973 38993 1463 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.133.73 feed8337-45c4-4b93-a13e-8284041956b2 2020-09-02 20:13:11.636417 38994 2837 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.133.73 61711cb6-a524-4954-bbcd-6598e4cae33a 2020-09-02 20:13:21.822842 38995 3800 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1038\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 2837\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-567\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: trans\n 1 movimiento de efectivo por venta con folio PV3-V-567 189.186.133.73 61711cb6-a524-4954-bbcd-6598e4cae33a 2020-09-02 20:13:21.842922 38996 2838 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1037\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2020-09-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1351\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 68872036-2e24-4cfa-b6d2-3b2675821e5c 2020-09-02 20:19:28.902313 38997 809 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 15 \N 189.186.41.254 68872036-2e24-4cfa-b6d2-3b2675821e5c 2020-09-02 20:19:28.927918 38998 3801 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1038\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 2837\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-567\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: trans\n 1 movimiento de efectivo por venta con folio PV3-V-567 189.186.133.73 1565bc44-7b50-4bb9-baa3-cdbbf7c386c4 2020-09-02 20:19:29.956786 38999 3801 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1038\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 2837\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-567\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: trans\n 2 \N 189.186.133.73 43646c3f-e0d0-40c9-9d86-b80dca3e74d2 2020-09-02 20:19:32.269262 39000 2838 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 30291c2e-7847-414a-a373-8747e505b91b 2020-09-02 20:19:34.853087 39001 3802 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1037\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.35E3\nmove_type: '1'\nsale_id: 2838\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1351\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1351 189.186.41.254 30291c2e-7847-414a-a373-8747e505b91b 2020-09-02 20:19:34.879684 39002 3803 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1038\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 2837\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-567\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: trans\n 1 movimiento de efectivo por venta con folio PV3-V-567 189.186.133.73 1a32e92b-cdb2-448f-ad41-d18afefdaca7 2020-09-02 20:19:39.319205 39003 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-08-31 23:54:40.567610000 Z\n- &1 2020-09-02 18:25:38.606260000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 00:09:38.176110820 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539511\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117641\n mask_addr: 4294967295\nsign_in_count:\n- 266\n- 267\n 535 \N 189.186.133.73 ce0dfdb5-9b46-4053-8dc7-65ca7a40f96c 2020-09-03 00:09:38.198387 39004 21 User \N \N 21 User \N update ---\nunique_session_id:\n- pUVneEtPvN-M9m6w311P\n- emKVMDrieKt--7dp9BJr\n 536 \N 189.186.133.73 ce0dfdb5-9b46-4053-8dc7-65ca7a40f96c 2020-09-03 00:09:38.217551 39005 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-02 18:25:38.606260000 Z\n- &1 2020-09-03 00:09:38.176110000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 00:55:40.110632579 Z\nsign_in_count:\n- 267\n- 268\n 537 \N 189.186.133.73 41094cf8-b516-4b28-b75e-45b69990bba9 2020-09-03 00:55:40.116367 39006 21 User \N \N 21 User \N update ---\nunique_session_id:\n- emKVMDrieKt--7dp9BJr\n- "-DiMFp3ArTsbarNENwXT"\n 538 \N 189.186.133.73 41094cf8-b516-4b28-b75e-45b69990bba9 2020-09-03 00:55:40.130004 39007 327 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1037\nquantity: !ruby/object:BigDecimal 18:0.5E2\nstatus: 1\nobservations: oxxo refresco y vasos\nexpense_date: 2020-09-02\nexpense_code: PV1-E-227\n 1 Egreso por 50.0 registrado 189.186.41.254 0a076d67-5a81-47bf-bee2-9f98497c199a 2020-09-03 00:56:29.106054 39008 3804 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1037\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 327\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.41.254 0a076d67-5a81-47bf-bee2-9f98497c199a 2020-09-03 00:56:29.129721 39009 1062 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1037\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.789E3\namount_out: !ruby/object:BigDecimal 18:0.5E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.74E3\nphysical_cash: !ruby/object:BigDecimal 18:0.194E4\nobservations: hay $300 de mas de una venta de la campiña\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.41.254 4bcc3dcf-94bd-4fb4-9bc2-f90e1453c444 2020-09-03 00:58:42.464878 39010 1037 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.41.254 4bcc3dcf-94bd-4fb4-9bc2-f90e1453c444 2020-09-03 00:58:42.487718 39011 1063 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1038\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.3786E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.34E4\ncash_fund: !ruby/object:BigDecimal 18:0.522E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3922E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.133.73 e12350c0-d63a-4bf1-85c1-4695dbaee9e8 2020-09-03 00:58:42.709773 39012 1038 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.133.73 e12350c0-d63a-4bf1-85c1-4695dbaee9e8 2020-09-03 00:58:42.751833 39013 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 00:09:38.176110000 Z\n- &1 2020-09-03 00:55:40.110632000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 01:09:06.736732121 Z\nsign_in_count:\n- 268\n- 269\n 539 \N 189.186.133.73 c8a1609f-68aa-4745-a9fc-42c522ff1a67 2020-09-03 01:09:06.742593 39014 21 User \N \N 21 User \N update ---\nunique_session_id:\n- "-DiMFp3ArTsbarNENwXT"\n- EX7UE8LnT7n6PssJprbL\n 540 \N 189.186.133.73 c8a1609f-68aa-4745-a9fc-42c522ff1a67 2020-09-03 01:09:06.759926 39015 1039 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.522E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 522.0 189.186.133.73 2bb36c28-f5d5-4e6c-aed5-caab092294d5 2020-09-03 01:09:21.492524 39016 2839 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1039\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-09-02\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-568\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.133.73 65d8ee68-9369-4f5c-93a8-8493b93fe9fc 2020-09-03 01:09:59.792718 39017 2227 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.133.73 65d8ee68-9369-4f5c-93a8-8493b93fe9fc 2020-09-03 01:09:59.822964 39018 2839 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.133.73 a6d9f2ca-2f18-456f-ab81-bd9dabaacd29 2020-09-03 01:10:12.115083 39019 3805 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1039\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 2839\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-568\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-568 189.186.133.73 a6d9f2ca-2f18-456f-ab81-bd9dabaacd29 2020-09-03 01:10:12.136918 39020 1064 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1039\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1399E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.13E4\ncash_fund: !ruby/object:BigDecimal 18:0.621E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1921E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.133.73 6eba94cc-b6a6-472a-a76c-e7b357640e44 2020-09-03 01:13:19.444741 39021 1039 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.133.73 6eba94cc-b6a6-472a-a76c-e7b357640e44 2020-09-03 01:13:19.45802 39088 2234 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 143c9340-00f7-4531-881c-338b3390c399 2020-09-03 21:00:27.966613 39022 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-02 01:18:07.837140000 Z\n- &1 2020-09-02 06:16:17.526340000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 04:08:07.149334801 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946106\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946106\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539671\n mask_addr: 4294967295\nsign_in_count:\n- 1793\n- 1794\n 3588 \N 177.228.118.23 a51d344a-a192-4aac-9061-c25479d62d65 2020-09-03 04:08:07.157239 39023 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zZRiCeRe49ZE8RAVx7c5\n- QTezfkZ2qtaB9_rRr3zF\n 3589 \N 177.228.118.23 a51d344a-a192-4aac-9061-c25479d62d65 2020-09-03 04:08:07.176707 39024 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-01 19:04:41.029391000 Z\n- &1 2020-09-02 16:01:09.674711000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 16:00:47.876002204 Z\nsign_in_count:\n- 630\n- 631\n 1265 \N 189.186.41.254 5b20effc-0e0e-49f7-af7c-12f0be3b8e07 2020-09-03 16:00:47.903821 39025 2 User \N \N 2 User \N update ---\nunique_session_id:\n- F6TKg2NsANo_48jBo_ZC\n- pTdPRqeS81gSyRPghDH8\n 1266 \N 189.186.41.254 5b20effc-0e0e-49f7-af7c-12f0be3b8e07 2020-09-03 16:00:47.926766 39026 1040 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.74E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 740.0 189.186.41.254 a40d475c-d50d-4b03-96d0-49cbf19932c0 2020-09-03 16:25:13.857316 39027 2840 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1040\namount: !ruby/object:BigDecimal 18:0.41E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.41E3\nstatus: 0\ndate_sale: 2020-09-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1352\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.41.254 7b13a5c6-5135-4a20-b41a-1965c495e1ee 2020-09-03 16:26:21.245927 39028 2064 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.41.254 7b13a5c6-5135-4a20-b41a-1965c495e1ee 2020-09-03 16:26:21.275038 39029 2840 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.41.254 6f8dbc8b-6391-4277-8d17-b23ee4cb6426 2020-09-03 16:26:40.545479 39030 3806 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1040\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.41E3\nmove_type: '1'\nsale_id: 2840\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1352\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.41E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1352 189.186.41.254 6f8dbc8b-6391-4277-8d17-b23ee4cb6426 2020-09-03 16:26:40.567065 39031 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 00:55:40.110632000 Z\n- &1 2020-09-03 01:09:06.736732000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 18:39:26.398864122 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 269\n- 270\n 541 \N 189.186.101.127 e6da9fd7-97ec-4310-9d74-0ae9155ab066 2020-09-03 18:39:26.407386 39032 21 User \N \N 21 User \N update ---\nunique_session_id:\n- EX7UE8LnT7n6PssJprbL\n- ARgoNQZH-SgwjygFZXgq\n 542 \N 189.186.101.127 e6da9fd7-97ec-4310-9d74-0ae9155ab066 2020-09-03 18:39:26.424947 39033 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-02 06:16:17.526340000 Z\n- &1 2020-09-03 04:08:07.149334000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 18:41:02.505789753 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946106\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539671\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539671\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 1794\n- 1795\n 3590 \N 189.186.101.127 8cd2bfb7-7464-44ed-9fa2-40c4845b45d1 2020-09-03 18:41:02.513327 39034 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QTezfkZ2qtaB9_rRr3zF\n- FY8dnQU-sE8SSBBfR_Us\n 3591 \N 189.186.101.127 8cd2bfb7-7464-44ed-9fa2-40c4845b45d1 2020-09-03 18:41:02.535241 39035 1 PosConfig \N \N 4 User \N update ---\nticket_img:\n- !ruby/object:ImageUploader\n model: &13 !ruby/object:PosConfig\n raw_attributes:\n id: '1'\n cancel_partial_payment: '35'\n refund_sale: '15'\n days_cancel_sale: '15'\n days_cancel_purchase: '100'\n tax_percent: '16.0'\n time_zone: Chihuahua\n gain_margin: '100.0'\n ticket_description: "RFC. UIOS851003N7A\\r\\nMORELOS #297 LOC.4 \\r\\nCENTRO CP.8000\n \\r\\nCULIACAN, SIN \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n reserve_sale_percent: '10.0'\n days_cancel_reserved: '35'\n commission_percent: '1'\n ticket_footer: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN ETIQUETA\n O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img: IMG_0981.jpg\n haggle_in_sale_percent: '20'\n enable_haggle: 'true'\n add_iva_to_pre_sales: 'false'\n created_at: '2019-01-28 18:10:20.808419'\n updated_at: &10 2020-09-03 18:41:50.240382460 Z\n ticket_img_file_name: \n ticket_img_content_type: \n ticket_img_file_size: \n ticket_img_updated_at: \n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n cancel_partial_payment: *1\n refund_sale: *1\n days_cancel_sale: *1\n days_cancel_purchase: *1\n tax_percent: &2 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n time_zone: &6 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n gain_margin: *2\n created_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n updated_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n ticket_description: &7 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n days_cancel_reserved: *1\n reserve_sale_percent: &8 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n commission_percent: *1\n ticket_footer: &4 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n ticket_img_file_name: *4\n ticket_img_content_type: *4\n ticket_img_file_size: *1\n ticket_img_updated_at: &12 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n haggle_in_sale_percent: *1\n ticket_img: *4\n enable_haggle: &5 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n add_iva_to_pre_sales: *5\n values:\n id: '1'\n cancel_partial_payment: '35'\n refund_sale: '15'\n days_cancel_sale: '15'\n days_cancel_purchase: '100'\n tax_percent: '16.0'\n time_zone: Chihuahua\n gain_margin: '100.0'\n created_at: '2019-01-28 18:10:20.808419'\n updated_at: '2020-02-04 01:48:12.074935'\n ticket_description: "RFC. UIOS851003N7A\\r\\nMORELOS #297 LOC.4 \\r\\nCENTRO\n CP.8000 \\r\\nCULIACAN, SIN \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM:\n SUO.BOUTIQUE\\r\\nFACEBOOK: SUO BOUTIQUE\\r\\n"\n days_cancel_reserved: '35'\n reserve_sale_percent: '10.00'\n commission_percent: '1'\n ticket_footer: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN\n DEVOLUCIONES EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA,\n SIN ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img_file_name: \n ticket_img_content_type: \n ticket_img_file_size: \n ticket_img_updated_at: \n haggle_in_sale_percent: '20'\n ticket_img: Sin_título.png\n enable_haggle: t\n add_iva_to_pre_sales: f\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1'\n type: *1\n value: 1\n cancel_partial_payment: !ruby/object:ActiveRecord::Attribute::FromUser\n name: cancel_partial_payment\n value_before_type_cast: '35'\n type: *1\n value: 35\n refund_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: refund_sale\n value_before_type_cast: '15'\n type: *1\n value: 15\n days_cancel_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_sale\n value_before_type_cast: '15'\n type: *1\n value: 15\n days_cancel_purchase: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_purchase\n value_before_type_cast: '100'\n type: *1\n value: 100\n tax_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: tax_percent\n value_before_type_cast: '16.0'\n type: *2\n value: !ruby/object:BigDecimal 18:0.16E2\n time_zone: !ruby/object:ActiveRecord::Attribute::FromUser\n name: time_zone\n value_before_type_cast: Chihuahua\n type: *6\n value: Chihuahua\n gain_margin: !ruby/object:ActiveRecord::Attribute::FromUser\n name: gain_margin\n value_before_type_cast: '100.0'\n type: *2\n value: !ruby/object:BigDecimal 18:0.1E3\n ticket_description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_description\n value_before_type_cast: "RFC. UIOS851003N7A\\r\\nMORELOS #297 LOC.4 \\r\\nCENTRO\n CP.8000 \\r\\nCULIACAN, SIN \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM:\n SUO.BOUTIQUE\\r\\nFACEBOOK: SUO BOUTIQUE\\r\\n"\n type: *7\n value: "RFC. UIOS851003N7A\\r\\nMORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN,\n SIN \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n reserve_sale_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: reserve_sale_percent\n value_before_type_cast: '10.0'\n type: *8\n value: !ruby/object:BigDecimal 18:0.1E2\n days_cancel_reserved: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_reserved\n value_before_type_cast: '35'\n type: *1\n value: 35\n commission_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: commission_percent\n value_before_type_cast: '1'\n type: *1\n value: 1\n ticket_footer: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_footer\n value_before_type_cast: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n*\n NO APLICAN DEVOLUCIONES EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA\n MERCANCÍA DAÑADA, SIN ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN\n VIGENCIA 30 DÍAS "\n type: *4\n value: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN\n ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_img\n value_before_type_cast: IMG_0981.jpg\n type: *4\n value: IMG_0981.jpg\n haggle_in_sale_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: haggle_in_sale_percent\n value_before_type_cast: '20'\n type: *1\n value: 20\n enable_haggle: !ruby/object:ActiveRecord::Attribute::FromUser\n name: enable_haggle\n value_before_type_cast: 'true'\n type: *5\n value: true\n add_iva_to_pre_sales: !ruby/object:ActiveRecord::Attribute::FromUser\n name: add_iva_to_pre_sales\n value_before_type_cast: 'false'\n type: *5\n value: false\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-01-28 18:10:20.808419'\n type: *9\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *10\n type: *11\n value: *10\n ticket_img_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_file_name\n value_before_type_cast: \n type: *4\n ticket_img_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_content_type\n value_before_type_cast: \n type: *4\n ticket_img_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_file_size\n value_before_type_cast: \n type: *1\n ticket_img_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_updated_at\n value_before_type_cast: \n type: *12\n new_record: false\n mounted_as: :ticket_img\n storage: &14 !ruby/object:CarrierWave::Storage::File\n uploader: &15 !ruby/object:ImageUploader\n model: *13\n mounted_as: :ticket_img\n storage: *14\n file: &19 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/Sin_título.png"\n original_filename: \n content_type: \n versions: &20\n :thumb: &16 !ruby/object:ImageUploader::Uploader54444180\n model: *13\n mounted_as: :ticket_img\n parent_version: *15\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *16\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_Sin_título.png"\n original_filename: \n content_type: \n versions: {}\n :medium: &17 !ruby/object:ImageUploader::Uploader54439140\n model: *13\n mounted_as: :ticket_img\n parent_version: *15\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_Sin_título.png"\n original_filename: \n content_type: \n versions: {}\n :small: &18 !ruby/object:ImageUploader::Uploader54408900\n model: *13\n mounted_as: :ticket_img\n parent_version: *15\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_Sin_título.png"\n original_filename: \n content_type: \n versions: {}\n file: *19\n versions: *20\n- IMG_0981.jpg\n 16 Se actualizaron los parámetros generales 189.186.101.127 9bc8458d-e76e-439b-8f80-c1fa30cc2c1b 2020-09-03 18:41:50.290615 39036 1 PosConfig \N \N 4 User \N update ---\nticket_description:\n- "RFC. UIOS851003N7A\\r\\nMORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nCULIACAN, SIN \\r\\nTEL.\n 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK: SUO BOUTIQUE\\r\\n"\n- "RFC. UIOS851003N7A\\r\\nMORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nDR. MORA #1725\n LOC. 1F\\r\\nLA CAMPIÑA CP.80060\\r\\nCULIACAN, SIN \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM:\n SUO.BOUTIQUE\\r\\nFACEBOOK: SUO BOUTIQUE\\r\\n"\n 17 Se actualizaron los parámetros generales 189.186.101.127 542e172e-2588-43b2-a2f5-5147a9f8f86f 2020-09-03 18:46:18.792418 39037 3 Pointsale \N \N 4 User \N update ---\naddress:\n- 'Doctor Mora #1725, La compañia '\n- 'Doctor Mora #1725 Loc. 1F, La Campañia '\nimg_pointsale:\n- !ruby/object:ImageUploader\n model: !ruby/object:Pointsale\n raw_attributes:\n id: '3'\n name: SUO Comercial\n address: 'Doctor Mora #1725 Loc. 1F, La Campañia '\n notes: "Doctor Mora #1725 \\r\\nCENTRO C.P 80060\\r\\nCULIACAN, SIN\\r\\nTEL.6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nINSTAGRAM: SUO.BOUTIQUE"\n prefix: PV3\n img_pointsale: b02a7ab3-1fdb-437a-a687-a80f1adb3e23.JPG\n ticket_footer: "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO CAMBIOS NI DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS\\r\\n* NO SE REGRESA EFECTIVO POR NINGÚN MOTIVO\\r\\n*NO\n SE ACEPTA MERCANCÍA EN MAL ESTADO Y SIN ETIQUETA "\n haggle_percent: '100.0'\n tax_regime: '601'\n business_name: SUO BOUTIQUE\n federal_taxpayer_registration: UIOS8510033N1\n postal_code: '80060'\n status: '1'\n created_at: '2019-08-03 19:13:01.229465'\n updated_at: &7 2020-09-03 18:49:21.069717679 Z\n img_pointsale_file_name: \n img_pointsale_content_type: \n img_pointsale_file_size: \n img_pointsale_updated_at: \n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &2 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n name: &1 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n address: *1\n notes: &4 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n status: *2\n created_at: &6 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n updated_at: &8 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n prefix: *4\n img_pointsale_file_name: *1\n img_pointsale_content_type: *1\n img_pointsale_file_size: *2\n img_pointsale_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n ticket_footer: *1\n img_pointsale: *1\n haggle_percent: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n federal_taxpayer_registration: *1\n business_name: *1\n tax_regime: *2\n postal_code: *2\n values:\n id: '3'\n name: SUO Comercial\n address: 'Doctor Mora #1725, La compañia '\n notes: "Doctor Mora #1725 \\r\\nCENTRO C.P 80060\\r\\nCULIACAN, SIN\\r\\nTEL.6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nINSTAGRAM: SUO.BOUTIQUE"\n status: '1'\n created_at: '2019-08-03 19:13:01.229465'\n updated_at: '2020-02-04 01:49:49.805986'\n prefix: PV3\n img_pointsale_file_name: \n img_pointsale_content_type: \n img_pointsale_file_size: \n img_pointsale_updated_at: \n ticket_footer: "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO CAMBIOS NI\n DEVOLUCIONES EN PROMOCIONES Y APARTADOS\\r\\n* NO SE REGRESA EFECTIVO POR\n NINGÚN MOTIVO\\r\\n*NO SE ACEPTA MERCANCÍA EN MAL ESTADO Y SIN ETIQUETA "\n img_pointsale: \n haggle_percent: '100.00'\n federal_taxpayer_registration: UIOS8510033N1\n business_name: SUO BOUTIQUE\n tax_regime: '601'\n postal_code: '80060'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '3'\n type: *2\n value: 3\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: SUO Comercial\n type: *1\n value: SUO Comercial\n address: !ruby/object:ActiveRecord::Attribute::FromUser\n name: address\n value_before_type_cast: 'Doctor Mora #1725 Loc. 1F, La Campañia '\n type: *1\n value: 'Doctor Mora #1725 Loc. 1F, La Campañia '\n notes: !ruby/object:ActiveRecord::Attribute::FromUser\n name: notes\n value_before_type_cast: "Doctor Mora #1725 \\r\\nCENTRO C.P 80060\\r\\nCULIACAN,\n SIN\\r\\nTEL.6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nINSTAGRAM:\n SUO.BOUTIQUE"\n type: *4\n value: "Doctor Mora #1725 \\r\\nCENTRO C.P 80060\\r\\nCULIACAN, SIN\\r\\nTEL.6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nINSTAGRAM: SUO.BOUTIQUE"\n prefix: !ruby/object:ActiveRecord::Attribute::FromUser\n name: prefix\n value_before_type_cast: PV3\n type: *4\n value: PV3\n img_pointsale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_pointsale\n value_before_type_cast: b02a7ab3-1fdb-437a-a687-a80f1adb3e23.JPG\n type: *1\n value: b02a7ab3-1fdb-437a-a687-a80f1adb3e23.JPG\n ticket_footer: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_footer\n value_before_type_cast: "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO\n CAMBIOS NI DEVOLUCIONES EN PROMOCIONES Y APARTADOS\\r\\n* NO SE REGRESA\n EFECTIVO POR NINGÚN MOTIVO\\r\\n*NO SE ACEPTA MERCANCÍA EN MAL ESTADO\n Y SIN ETIQUETA "\n type: *1\n value: "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO CAMBIOS NI DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS\\r\\n* NO SE REGRESA EFECTIVO POR NINGÚN MOTIVO\\r\\n*NO\n SE ACEPTA MERCANCÍA EN MAL ESTADO Y SIN ETIQUETA "\n haggle_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: haggle_percent\n value_before_type_cast: '100.0'\n type: *5\n value: !ruby/object:BigDecimal 18:0.1E3\n tax_regime: !ruby/object:ActiveRecord::Attribute::FromUser\n name: tax_regime\n value_before_type_cast: '601'\n type: *2\n value: 601\n business_name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: business_name\n value_before_type_cast: SUO BOUTIQUE\n type: *1\n value: SUO BOUTIQUE\n federal_taxpayer_registration: !ruby/object:ActiveRecord::Attribute::FromUser\n name: federal_taxpayer_registration\n value_before_type_cast: UIOS8510033N1\n type: *1\n value: UIOS8510033N1\n postal_code: !ruby/object:ActiveRecord::Attribute::FromUser\n name: postal_code\n value_before_type_cast: '80060'\n type: *2\n value: 80060\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *2\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-08-03 19:13:01.229465'\n type: *6\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *7\n type: *8\n value: *7\n img_pointsale_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_pointsale_file_name\n value_before_type_cast: \n type: *1\n img_pointsale_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_pointsale_content_type\n value_before_type_cast: \n type: *1\n img_pointsale_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_pointsale_file_size\n value_before_type_cast: \n type: *2\n img_pointsale_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_pointsale_updated_at\n value_before_type_cast: \n type: *9\n new_record: false\n mounted_as: :img_pointsale\n- b02a7ab3-1fdb-437a-a687-a80f1adb3e23.JPG\n 4 \N 189.186.101.127 e10aaeeb-bdf2-412c-9bcf-b851f95537da 2020-09-03 18:49:21.102347 39038 1 Pointsale \N \N 4 User \N update ---\nimg_pointsale:\n- !ruby/object:ImageUploader\n model: &10 !ruby/object:Pointsale\n raw_attributes:\n id: '1'\n name: SUO\n address: 'MORELOS #297 LOC. 4 CENTRO'\n notes: "MORELOS #297 LOC. 4\\r\\nCENTRO C.P 80000\\r\\nCULIACAN, SIN\\r\\nTEL.6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nINSTAGRAM: SUO BOUTIQUE\\r\\n"\n prefix: PV1\n img_pointsale: b02a7ab3-1fdb-437a-a687-a80f1adb3e23.JPG\n ticket_footer: "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO CAMBIOS NI DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS\\r\\n* NO SE REGRESA EFECTIVO POR NINGÚN MOTIVO\\r\\n*NO\n SE ACEPTA MERCANCÍA EN MAL ESTADO Y SIN ETIQUETA "\n haggle_percent: '100.0'\n tax_regime: '601'\n business_name: Punto de venta 1\n federal_taxpayer_registration: PVV010101PVV\n postal_code: '85000'\n status: '1'\n created_at: '2019-02-01 04:44:58.201443'\n updated_at: &7 2020-09-03 18:50:03.107564931 Z\n img_pointsale_file_name: \n img_pointsale_content_type: \n img_pointsale_file_size: \n img_pointsale_updated_at: \n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &2 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n name: &1 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n address: *1\n notes: &4 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n status: *2\n created_at: &6 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n updated_at: &8 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n prefix: *4\n img_pointsale_file_name: *1\n img_pointsale_content_type: *1\n img_pointsale_file_size: *2\n img_pointsale_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n ticket_footer: *1\n img_pointsale: *1\n haggle_percent: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n federal_taxpayer_registration: *1\n business_name: *1\n tax_regime: *2\n postal_code: *2\n values:\n id: '1'\n name: SUO\n address: 'MORELOS #297 LOC. 4 CENTRO'\n notes: "MORELOS #297 LOC. 4\\r\\nCENTRO C.P 80000\\r\\nCULIACAN, SIN\\r\\nTEL.6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nINSTAGRAM: SUO BOUTIQUE\\r\\n"\n status: '1'\n created_at: '2019-02-01 04:44:58.201443'\n updated_at: '2019-02-07 01:54:16.288814'\n prefix: PV1\n img_pointsale_file_name: \n img_pointsale_content_type: \n img_pointsale_file_size: \n img_pointsale_updated_at: \n ticket_footer: "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO CAMBIOS NI\n DEVOLUCIONES EN PROMOCIONES Y APARTADOS\\r\\n* NO SE REGRESA EFECTIVO POR\n NINGÚN MOTIVO\\r\\n*NO SE ACEPTA MERCANCÍA EN MAL ESTADO Y SIN ETIQUETA "\n img_pointsale: foto.JPG\n haggle_percent: '100.00'\n federal_taxpayer_registration: PVV010101PVV\n business_name: Punto de venta 1\n tax_regime: '601'\n postal_code: '85000'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1'\n type: *2\n value: 1\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: SUO\n type: *1\n value: SUO\n address: !ruby/object:ActiveRecord::Attribute::FromUser\n name: address\n value_before_type_cast: 'MORELOS #297 LOC. 4 CENTRO'\n type: *1\n value: 'MORELOS #297 LOC. 4 CENTRO'\n notes: !ruby/object:ActiveRecord::Attribute::FromUser\n name: notes\n value_before_type_cast: "MORELOS #297 LOC. 4\\r\\nCENTRO C.P 80000\\r\\nCULIACAN,\n SIN\\r\\nTEL.6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nINSTAGRAM:\n SUO BOUTIQUE\\r\\n"\n type: *4\n value: "MORELOS #297 LOC. 4\\r\\nCENTRO C.P 80000\\r\\nCULIACAN, SIN\\r\\nTEL.6677138363\\r\\nCEL.\n 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nINSTAGRAM: SUO BOUTIQUE\\r\\n"\n prefix: !ruby/object:ActiveRecord::Attribute::FromUser\n name: prefix\n value_before_type_cast: PV1\n type: *4\n value: PV1\n img_pointsale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_pointsale\n value_before_type_cast: b02a7ab3-1fdb-437a-a687-a80f1adb3e23.JPG\n type: *1\n value: b02a7ab3-1fdb-437a-a687-a80f1adb3e23.JPG\n ticket_footer: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_footer\n value_before_type_cast: "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO\n CAMBIOS NI DEVOLUCIONES EN PROMOCIONES Y APARTADOS\\r\\n* NO SE REGRESA\n EFECTIVO POR NINGÚN MOTIVO\\r\\n*NO SE ACEPTA MERCANCÍA EN MAL ESTADO\n Y SIN ETIQUETA "\n type: *1\n value: "* CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\\r\\n* NO CAMBIOS NI DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS\\r\\n* NO SE REGRESA EFECTIVO POR NINGÚN MOTIVO\\r\\n*NO\n SE ACEPTA MERCANCÍA EN MAL ESTADO Y SIN ETIQUETA "\n haggle_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: haggle_percent\n value_before_type_cast: '100.0'\n type: *5\n value: !ruby/object:BigDecimal 18:0.1E3\n tax_regime: !ruby/object:ActiveRecord::Attribute::FromUser\n name: tax_regime\n value_before_type_cast: '601'\n type: *2\n value: 601\n business_name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: business_name\n value_before_type_cast: Punto de venta 1\n type: *1\n value: Punto de venta 1\n federal_taxpayer_registration: !ruby/object:ActiveRecord::Attribute::FromUser\n name: federal_taxpayer_registration\n value_before_type_cast: PVV010101PVV\n type: *1\n value: PVV010101PVV\n postal_code: !ruby/object:ActiveRecord::Attribute::FromUser\n name: postal_code\n value_before_type_cast: '85000'\n type: *2\n value: 85000\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *2\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-01 04:44:58.201443'\n type: *6\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *7\n type: *8\n value: *7\n img_pointsale_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_pointsale_file_name\n value_before_type_cast: \n type: *1\n img_pointsale_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_pointsale_content_type\n value_before_type_cast: \n type: *1\n img_pointsale_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_pointsale_file_size\n value_before_type_cast: \n type: *2\n img_pointsale_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_pointsale_updated_at\n value_before_type_cast: \n type: *9\n new_record: false\n mounted_as: :img_pointsale\n storage: &11 !ruby/object:CarrierWave::Storage::File\n uploader: &12 !ruby/object:ImageUploader\n model: *10\n mounted_as: :img_pointsale\n storage: *11\n file: &16 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/foto.JPG"\n original_filename: \n content_type: \n versions: &17\n :thumb: &13 !ruby/object:ImageUploader::Uploader54444180\n model: *10\n mounted_as: :img_pointsale\n parent_version: *12\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *13\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_foto.JPG"\n original_filename: \n content_type: \n versions: {}\n :medium: &14 !ruby/object:ImageUploader::Uploader54439140\n model: *10\n mounted_as: :img_pointsale\n parent_version: *12\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *14\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_foto.JPG"\n original_filename: \n content_type: \n versions: {}\n :small: &15 !ruby/object:ImageUploader::Uploader54408900\n model: *10\n mounted_as: :img_pointsale\n parent_version: *12\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *15\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_foto.JPG"\n original_filename: \n content_type: \n versions: {}\n file: *16\n versions: *17\n- b02a7ab3-1fdb-437a-a687-a80f1adb3e23.JPG\n 9 \N 189.186.101.127 9dd810ae-4995-4812-af6e-28b3db1d66e9 2020-09-03 18:50:03.143543 39039 1 PosConfig \N \N 4 User \N update ---\nticket_img:\n- !ruby/object:ImageUploader\n model: &13 !ruby/object:PosConfig\n raw_attributes:\n id: '1'\n cancel_partial_payment: '35'\n refund_sale: '15'\n days_cancel_sale: '15'\n days_cancel_purchase: '100'\n tax_percent: '16.0'\n time_zone: Chihuahua\n gain_margin: '100.0'\n ticket_description: "RFC. UIOS851003N7A\\r\\nMORELOS #297 LOC.4 \\r\\nCENTRO CP.8000\n \\r\\nDR. MORA #1725 LOC. 1F\\r\\nLA CAMPIÑA CP.80060\\r\\nCULIACAN, SIN \\r\\nTEL.\n 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK: SUO\n BOUTIQUE\\r\\n"\n reserve_sale_percent: '10.0'\n days_cancel_reserved: '35'\n commission_percent: '1'\n ticket_footer: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN ETIQUETA\n O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img: Sin_título.png\n haggle_in_sale_percent: '20'\n enable_haggle: 'true'\n add_iva_to_pre_sales: 'false'\n created_at: '2019-01-28 18:10:20.808419'\n updated_at: &10 2020-09-03 18:50:24.811309984 Z\n ticket_img_file_name: \n ticket_img_content_type: \n ticket_img_file_size: \n ticket_img_updated_at: \n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n cancel_partial_payment: *1\n refund_sale: *1\n days_cancel_sale: *1\n days_cancel_purchase: *1\n tax_percent: &2 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n time_zone: &6 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n gain_margin: *2\n created_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n updated_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n ticket_description: &7 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n days_cancel_reserved: *1\n reserve_sale_percent: &8 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n commission_percent: *1\n ticket_footer: &4 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n ticket_img_file_name: *4\n ticket_img_content_type: *4\n ticket_img_file_size: *1\n ticket_img_updated_at: &12 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n haggle_in_sale_percent: *1\n ticket_img: *4\n enable_haggle: &5 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n add_iva_to_pre_sales: *5\n values:\n id: '1'\n cancel_partial_payment: '35'\n refund_sale: '15'\n days_cancel_sale: '15'\n days_cancel_purchase: '100'\n tax_percent: '16.0'\n time_zone: Chihuahua\n gain_margin: '100.0'\n created_at: '2019-01-28 18:10:20.808419'\n updated_at: '2020-09-03 18:46:18.789435'\n ticket_description: "RFC. UIOS851003N7A\\r\\nMORELOS #297 LOC.4 \\r\\nCENTRO\n CP.8000 \\r\\nDR. MORA #1725 LOC. 1F\\r\\nLA CAMPIÑA CP.80060\\r\\nCULIACAN,\n SIN \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n days_cancel_reserved: '35'\n reserve_sale_percent: '10.00'\n commission_percent: '1'\n ticket_footer: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN\n DEVOLUCIONES EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA,\n SIN ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img_file_name: \n ticket_img_content_type: \n ticket_img_file_size: \n ticket_img_updated_at: \n haggle_in_sale_percent: '20'\n ticket_img: IMG_0981.jpg\n enable_haggle: t\n add_iva_to_pre_sales: f\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1'\n type: *1\n value: 1\n cancel_partial_payment: !ruby/object:ActiveRecord::Attribute::FromUser\n name: cancel_partial_payment\n value_before_type_cast: '35'\n type: *1\n value: 35\n refund_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: refund_sale\n value_before_type_cast: '15'\n type: *1\n value: 15\n days_cancel_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_sale\n value_before_type_cast: '15'\n type: *1\n value: 15\n days_cancel_purchase: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_purchase\n value_before_type_cast: '100'\n type: *1\n value: 100\n tax_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: tax_percent\n value_before_type_cast: '16.0'\n type: *2\n value: !ruby/object:BigDecimal 18:0.16E2\n time_zone: !ruby/object:ActiveRecord::Attribute::FromUser\n name: time_zone\n value_before_type_cast: Chihuahua\n type: *6\n value: Chihuahua\n gain_margin: !ruby/object:ActiveRecord::Attribute::FromUser\n name: gain_margin\n value_before_type_cast: '100.0'\n type: *2\n value: !ruby/object:BigDecimal 18:0.1E3\n ticket_description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_description\n value_before_type_cast: "RFC. UIOS851003N7A\\r\\nMORELOS #297 LOC.4 \\r\\nCENTRO\n CP.8000 \\r\\nDR. MORA #1725 LOC. 1F\\r\\nLA CAMPIÑA CP.80060\\r\\nCULIACAN,\n SIN \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n type: *7\n value: "RFC. UIOS851003N7A\\r\\nMORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nDR.\n MORA #1725 LOC. 1F\\r\\nLA CAMPIÑA CP.80060\\r\\nCULIACAN, SIN \\r\\nTEL.\n 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n reserve_sale_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: reserve_sale_percent\n value_before_type_cast: '10.0'\n type: *8\n value: !ruby/object:BigDecimal 18:0.1E2\n days_cancel_reserved: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_reserved\n value_before_type_cast: '35'\n type: *1\n value: 35\n commission_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: commission_percent\n value_before_type_cast: '1'\n type: *1\n value: 1\n ticket_footer: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_footer\n value_before_type_cast: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n*\n NO APLICAN DEVOLUCIONES EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA\n MERCANCÍA DAÑADA, SIN ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN\n VIGENCIA 30 DÍAS "\n type: *4\n value: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN\n ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_img\n value_before_type_cast: Sin_título.png\n type: *4\n value: Sin_título.png\n haggle_in_sale_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: haggle_in_sale_percent\n value_before_type_cast: '20'\n type: *1\n value: 20\n enable_haggle: !ruby/object:ActiveRecord::Attribute::FromUser\n name: enable_haggle\n value_before_type_cast: 'true'\n type: *5\n value: true\n add_iva_to_pre_sales: !ruby/object:ActiveRecord::Attribute::FromUser\n name: add_iva_to_pre_sales\n value_before_type_cast: 'false'\n type: *5\n value: false\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-01-28 18:10:20.808419'\n type: *9\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *10\n type: *11\n value: *10\n ticket_img_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_file_name\n value_before_type_cast: \n type: *4\n ticket_img_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_content_type\n value_before_type_cast: \n type: *4\n ticket_img_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_file_size\n value_before_type_cast: \n type: *1\n ticket_img_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_updated_at\n value_before_type_cast: \n type: *12\n new_record: false\n mounted_as: :ticket_img\n storage: &14 !ruby/object:CarrierWave::Storage::File\n uploader: &15 !ruby/object:ImageUploader\n model: *13\n mounted_as: :ticket_img\n storage: *14\n file: &19 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/IMG_0981.jpg"\n original_filename: \n content_type: \n versions: &20\n :thumb: &16 !ruby/object:ImageUploader::Uploader54444180\n model: *13\n mounted_as: :ticket_img\n parent_version: *15\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *16\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_IMG_0981.jpg"\n original_filename: \n content_type: \n versions: {}\n :medium: &17 !ruby/object:ImageUploader::Uploader54439140\n model: *13\n mounted_as: :ticket_img\n parent_version: *15\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_IMG_0981.jpg"\n original_filename: \n content_type: \n versions: {}\n :small: &18 !ruby/object:ImageUploader::Uploader54408900\n model: *13\n mounted_as: :ticket_img\n parent_version: *15\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_IMG_0981.jpg"\n original_filename: \n content_type: \n versions: {}\n file: *19\n versions: *20\n- Sin_título.png\n 18 Se actualizaron los parámetros generales 189.186.101.127 888e7294-6d8c-4f83-964b-93dd3333970c 2020-09-03 18:50:24.854933 39040 1 Pointsale \N \N 4 User \N update ---\nfederal_taxpayer_registration:\n- PVV010101PVV\n- UIOS8510033N1\n 10 \N 189.186.101.127 c8b91e4b-3659-4c28-90ba-0d0649f38eba 2020-09-03 18:51:49.948535 39041 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 01:09:06.736732000 Z\n- &1 2020-09-03 18:39:26.398864000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 18:53:42.501355332 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 270\n- 271\n 543 \N 189.186.101.127 c6ecd576-2af6-4480-b2f6-0da96a4c8cf6 2020-09-03 18:53:42.508635 39042 21 User \N \N 21 User \N update ---\nunique_session_id:\n- ARgoNQZH-SgwjygFZXgq\n- UV6P3KzQAJnTDscmSabY\n 544 \N 189.186.101.127 c6ecd576-2af6-4480-b2f6-0da96a4c8cf6 2020-09-03 18:53:42.522639 39043 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 04:08:07.149334000 Z\n- &1 2020-09-03 18:41:02.505789000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 18:54:28.535275087 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539671\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 1795\n- 1796\n 3592 \N 189.186.101.127 e01117cf-128d-43ee-b84c-7b09e456598e 2020-09-03 18:54:28.543749 39044 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FY8dnQU-sE8SSBBfR_Us\n- kwDmQZo4ucAqXyBvYfvX\n 3593 \N 189.186.101.127 e01117cf-128d-43ee-b84c-7b09e456598e 2020-09-03 18:54:28.563686 39135 1314 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001314'\n 2 \N 187.149.57.31 05f4e9b1-58ef-429b-96d8-adcd9f3ad232 2020-09-03 21:46:59.473298 39045 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 18:41:02.505789000 Z\n- &1 2020-09-03 18:54:28.535275000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 19:38:15.444616116 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\nsign_in_count:\n- 1796\n- 1797\n 3594 \N 187.149.57.31 b238538c-6cf1-4124-9f8d-6e2057503f38 2020-09-03 19:38:15.451609 39046 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kwDmQZo4ucAqXyBvYfvX\n- ssMqmdEpshTTA36YNQd9\n 3595 \N 187.149.57.31 b238538c-6cf1-4124-9f8d-6e2057503f38 2020-09-03 19:38:15.468326 39047 2841 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1040\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-03\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1353\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 106921d4-fa2c-4fe4-a1b3-6b7aa48a15bd 2020-09-03 19:58:53.990436 39048 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 25 \N 187.149.57.31 106921d4-fa2c-4fe4-a1b3-6b7aa48a15bd 2020-09-03 19:58:54.018105 39049 2841 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 092f87fb-1acf-4216-89e2-fb889601a158 2020-09-03 19:59:21.987196 39050 3807 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1040\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2841\ncardnumber: 1526\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1353\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1353 187.149.57.31 092f87fb-1acf-4216-89e2-fb889601a158 2020-09-03 19:59:22.012638 39051 1041 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.621E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 621.0 189.186.101.127 71137468-4935-4ad3-8a4d-877d9b6f4cd9 2020-09-03 20:01:15.538907 39052 2842 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1041\namount: !ruby/object:BigDecimal 18:0.139E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.139E3\nstatus: 0\ndate_sale: 2020-09-03\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-569\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 da6eac29-e8bb-44bd-aa63-dc841fce21cd 2020-09-03 20:02:46.144852 39053 2096 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.101.127 da6eac29-e8bb-44bd-aa63-dc841fce21cd 2020-09-03 20:02:46.169157 39054 2842 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 bbc22be5-5f9d-4270-adad-ef49e8afe3ce 2020-09-03 20:02:52.952033 39055 3808 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1041\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.139E3\nmove_type: '1'\nsale_id: 2842\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-569\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.361E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-569 189.186.101.127 bbc22be5-5f9d-4270-adad-ef49e8afe3ce 2020-09-03 20:02:52.97341 39056 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 18:54:28.535275000 Z\n- &1 2020-09-03 19:38:15.444616000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 20:16:59.161205905 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\nsign_in_count:\n- 1797\n- 1798\n 3596 \N 187.149.57.31 3965d028-afdd-400a-adf3-9de96c2d0c9e 2020-09-03 20:16:59.167784 39057 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ssMqmdEpshTTA36YNQd9\n- jn5sGsRxxMio18SHkgNs\n 3597 \N 187.149.57.31 3965d028-afdd-400a-adf3-9de96c2d0c9e 2020-09-03 20:16:59.190253 39058 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-08-28 23:28:33.022813000 Z\n- &1 2020-08-28 23:43:49.387215000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 20:18:49.069036862 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\nsign_in_count:\n- 145\n- 146\n 292 \N 187.149.57.31 05fb040a-e3ce-428e-ae01-7da878f5a5fe 2020-09-03 20:18:49.07624 39059 9 User \N \N 9 User \N update ---\nunique_session_id:\n- mbuip9mr91TTExfjLzqS\n- W7iNVxXG8DYhyTpmEdD9\n 293 \N 187.149.57.31 05fb040a-e3ce-428e-ae01-7da878f5a5fe 2020-09-03 20:18:49.091233 39060 1304 Product \N \N 4 User \N create ---\nsku: PAN-1304\nname: PNT-0030\ndescription: PANTALON PIEL EVENT\nprice_base: !ruby/object:BigDecimal 18:0.24365E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-1304 fue creado. 187.149.57.31 814dc06c-ed9b-4e35-88f6-00cd6e2f8b15 2020-09-03 20:34:31.400664 39061 1304 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001304'\n 2 \N 187.149.57.31 814dc06c-ed9b-4e35-88f6-00cd6e2f8b15 2020-09-03 20:34:31.436182 39062 2228 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1304\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 814dc06c-ed9b-4e35-88f6-00cd6e2f8b15 2020-09-03 20:34:31.481769 39063 1305 Product \N \N 4 User \N create ---\nsku: VES-1305\nname: VST-0115\ndescription: VESTIDO DOBLE LATISTE TINTO\nprice_base: !ruby/object:BigDecimal 18:0.57337E3\nprice_sale: !ruby/object:BigDecimal 18:0.1189E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1305 fue creado. 187.149.57.31 d2607db2-df3b-4a1d-9ded-3e9430457fdf 2020-09-03 20:41:12.746818 39064 1305 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001305'\n 2 \N 187.149.57.31 d2607db2-df3b-4a1d-9ded-3e9430457fdf 2020-09-03 20:41:12.776826 39065 2229 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1305\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 d2607db2-df3b-4a1d-9ded-3e9430457fdf 2020-09-03 20:41:12.803163 39342 1937 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 26 \N 187.149.57.31 4c1f93ae-5105-467f-b6b9-f3ee6370caea 2020-09-04 22:31:18.885188 39066 1306 Product \N \N 4 User \N create ---\nsku: VES-1306\nname: VST-0116\ndescription: 'BATITA MICKEY '\nprice_base: !ruby/object:BigDecimal 18:0.253E3\nprice_sale: !ruby/object:BigDecimal 18:0.549E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1306 fue creado. 187.149.57.31 dcc731aa-73ac-4d5a-ad62-35425fbe0391 2020-09-03 20:47:13.710049 39067 1306 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001306'\n 2 \N 187.149.57.31 dcc731aa-73ac-4d5a-ad62-35425fbe0391 2020-09-03 20:47:13.738794 39068 2230 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1306\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 dcc731aa-73ac-4d5a-ad62-35425fbe0391 2020-09-03 20:47:13.765264 39069 1307 Product \N \N 4 User \N create ---\nsku: BLU-1307\nname: BLS-0122\ndescription: 'BLUSA HOJAS VERDE '\nprice_base: !ruby/object:BigDecimal 18:0.275E3\nprice_sale: !ruby/object:BigDecimal 18:0.669E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1307 fue creado. 187.149.57.31 3b6477d3-c725-4d72-b1ff-c5c57243cd30 2020-09-03 20:52:01.384256 39070 1307 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001307'\n 2 \N 187.149.57.31 3b6477d3-c725-4d72-b1ff-c5c57243cd30 2020-09-03 20:52:01.411973 39071 2231 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1307\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 3b6477d3-c725-4d72-b1ff-c5c57243cd30 2020-09-03 20:52:01.438137 39072 1308 Product \N \N 4 User \N create ---\nsku: BLU-1308\nname: BLS-0123\ndescription: PLAYERA MODEL\nprice_base: !ruby/object:BigDecimal 18:0.22E3\nprice_sale: !ruby/object:BigDecimal 18:0.489E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1308 fue creado. 187.149.57.31 f504c8ee-1264-4451-a1af-eb90718ffc88 2020-09-03 20:54:06.662816 39073 1308 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001308'\n 2 \N 187.149.57.31 f504c8ee-1264-4451-a1af-eb90718ffc88 2020-09-03 20:54:06.692628 39074 2232 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1308\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 f504c8ee-1264-4451-a1af-eb90718ffc88 2020-09-03 20:54:06.721862 39075 1309 Product \N \N 4 User \N create ---\nsku: BLU-1309\nname: BLS-0124\ndescription: ROSA CON FLORES EN LA MANGA\nprice_base: !ruby/object:BigDecimal 18:0.275E3\nprice_sale: !ruby/object:BigDecimal 18:0.669E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1309 fue creado. 187.149.57.31 f0e08aa1-25d3-4449-9e79-70fea0568743 2020-09-03 20:56:32.248228 39076 1309 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001309'\n 2 \N 187.149.57.31 f0e08aa1-25d3-4449-9e79-70fea0568743 2020-09-03 20:56:32.273517 39077 2233 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1309\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 f0e08aa1-25d3-4449-9e79-70fea0568743 2020-09-03 20:56:32.297404 39078 1310 Product \N \N 4 User \N create ---\nsku: BLU-1310\nname: BLS-0125\ndescription: BLUSA BLANCA TEJIDA\nprice_base: !ruby/object:BigDecimal 18:0.242E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1310 fue creado. 187.149.57.31 aac87c38-ddbe-40cf-8fdf-f9d02e262326 2020-09-03 20:59:39.373139 39079 1310 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001310'\n 2 \N 187.149.57.31 aac87c38-ddbe-40cf-8fdf-f9d02e262326 2020-09-03 20:59:39.398017 39080 2234 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1310\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 aac87c38-ddbe-40cf-8fdf-f9d02e262326 2020-09-03 20:59:39.42089 39081 368 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-143\namount: !ruby/object:BigDecimal 18:0.1249212E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1249212E5\nobservations: ''\npurchase_date: 2020-09-03\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-143 por $ 12492.12 MXN creada. 187.149.57.31 143c9340-00f7-4531-881c-338b3390c399 2020-09-03 21:00:27.782259 39082 2228 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 143c9340-00f7-4531-881c-338b3390c399 2020-09-03 21:00:27.813035 39083 2229 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 143c9340-00f7-4531-881c-338b3390c399 2020-09-03 21:00:27.844149 39084 2230 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 143c9340-00f7-4531-881c-338b3390c399 2020-09-03 21:00:27.868423 39085 2231 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 143c9340-00f7-4531-881c-338b3390c399 2020-09-03 21:00:27.891674 39086 2232 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 143c9340-00f7-4531-881c-338b3390c399 2020-09-03 21:00:27.914902 39087 2233 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 143c9340-00f7-4531-881c-338b3390c399 2020-09-03 21:00:27.946172 39089 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-08-28 23:43:49.387215000 Z\n- &1 2020-09-03 20:18:49.069036000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 21:00:48.905740227 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\nsign_in_count:\n- 146\n- 147\n 294 \N 187.149.57.31 d7b2a898-fe5f-4804-bbd1-592d45d6ad0a 2020-09-03 21:00:48.913926 39090 9 User \N \N 9 User \N update ---\nunique_session_id:\n- W7iNVxXG8DYhyTpmEdD9\n- 8sz_Ayx_NwPNqPyUrQth\n 295 \N 187.149.57.31 d7b2a898-fe5f-4804-bbd1-592d45d6ad0a 2020-09-03 21:00:48.928535 39091 2843 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1040\namount: !ruby/object:BigDecimal 18:0.1598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.1249E4\nstatus: 0\ndate_sale: 2020-09-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1354\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 1e321778-8dd0-4185-a51e-87fae4afafb2 2020-09-03 21:01:41.41719 39092 2013 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.57.31 1e321778-8dd0-4185-a51e-87fae4afafb2 2020-09-03 21:01:41.44325 39093 506 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 10 \N 187.149.57.31 1e321778-8dd0-4185-a51e-87fae4afafb2 2020-09-03 21:01:41.465597 39094 2843 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 670a51bb-f76d-43c1-9949-f2ac5b517483 2020-09-03 21:01:55.333417 39095 3809 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1040\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1249E4\nmove_type: '1'\nsale_id: 2843\ncardnumber: 1552\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1354\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1354 187.149.57.31 670a51bb-f76d-43c1-9949-f2ac5b517483 2020-09-03 21:01:55.357423 39096 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 19:38:15.444616000 Z\n- &1 2020-09-03 20:16:59.161205000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 21:04:47.289772679 Z\nsign_in_count:\n- 1798\n- 1799\n 3598 \N 187.149.57.31 486029bb-9e45-44d1-abb1-558f75d6af5b 2020-09-03 21:04:47.294992 39097 4 User \N \N 4 User \N update ---\nunique_session_id:\n- jn5sGsRxxMio18SHkgNs\n- K1WSqeVgM3vWDb6dCUXt\n 3599 \N 187.149.57.31 486029bb-9e45-44d1-abb1-558f75d6af5b 2020-09-03 21:04:47.30956 39098 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 20:18:49.069036000 Z\n- &1 2020-09-03 21:00:48.905740000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 21:05:31.173102123 Z\nsign_in_count:\n- 147\n- 148\n 296 \N 187.149.57.31 52383f0a-5e4e-4a57-89a4-116e1a602577 2020-09-03 21:05:31.178899 39099 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 8sz_Ayx_NwPNqPyUrQth\n- zWusAakuxZLZB8D_dhnS\n 297 \N 187.149.57.31 52383f0a-5e4e-4a57-89a4-116e1a602577 2020-09-03 21:05:31.191575 39100 2844 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1040\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-09-03\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1355\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 898d9594-b8c0-46c0-9249-a9fea69049c7 2020-09-03 21:07:21.056701 39101 790 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 13 \N 187.149.57.31 898d9594-b8c0-46c0-9249-a9fea69049c7 2020-09-03 21:07:21.082616 39102 2844 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 03443e18-9a3d-49f4-b683-ba6f0bab52f0 2020-09-03 21:07:33.635564 39103 3810 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1040\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 2844\ncardnumber: 1556\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1355\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1355 187.149.57.31 03443e18-9a3d-49f4-b683-ba6f0bab52f0 2020-09-03 21:07:33.667058 39104 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 20:16:59.161205000 Z\n- &1 2020-09-03 21:04:47.289772000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 21:11:41.258315694 Z\nsign_in_count:\n- 1799\n- 1800\n 3600 \N 187.149.57.31 79796149-c91a-4b9c-ac77-ae2ae3286d4f 2020-09-03 21:11:41.263937 39105 4 User \N \N 4 User \N update ---\nunique_session_id:\n- K1WSqeVgM3vWDb6dCUXt\n- 549KsDyeDvQpGHj8Cs7L\n 3601 \N 187.149.57.31 79796149-c91a-4b9c-ac77-ae2ae3286d4f 2020-09-03 21:11:41.279685 39106 1311 Product \N \N 4 User \N create ---\nsku: VES-1311\nname: VST-0116\ndescription: VESTIDO HOJAS MOON VERDE\nprice_base: !ruby/object:BigDecimal 18:0.418E3\nprice_sale: !ruby/object:BigDecimal 18:0.1049E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1311 fue creado. 187.149.57.31 9cad3b37-c846-4ae4-9a23-49e8b9006940 2020-09-03 21:14:05.646832 39107 1311 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001311'\n 2 \N 187.149.57.31 9cad3b37-c846-4ae4-9a23-49e8b9006940 2020-09-03 21:14:05.689074 39108 2235 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1311\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 9cad3b37-c846-4ae4-9a23-49e8b9006940 2020-09-03 21:14:05.719925 39109 373 Customer \N \N 21 User \N create ---\nnick_name: MORGANA ETTEL\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MORGANA ETTEL fue registrado. 189.186.101.127 386dfe05-304b-4ae1-8cc1-995848303bce 2020-09-03 21:18:09.774507 39110 2845 Sale \N \N 21 User \N create ---\ncustomer_id: 373\nuser_id: 21\nopen_cash_register_id: 1041\namount: !ruby/object:BigDecimal 18:0.318966E4\ntax: !ruby/object:BigDecimal 18:0.51035E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.370001E4\nstatus: 0\ndate_sale: 2020-09-03\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-570\nexpiration_date: 2020-10-08\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 c8501ee4-81a5-4578-88ee-5b8ee7a8f2ad 2020-09-03 21:18:34.515676 39111 957 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.101.127 c8501ee4-81a5-4578-88ee-5b8ee7a8f2ad 2020-09-03 21:18:34.541018 39136 2238 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1314\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 05f4e9b1-58ef-429b-96d8-adcd9f3ad232 2020-09-03 21:46:59.497538 39112 3811 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1041\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2845\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-570\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-570 189.186.101.127 cce7e3cb-13e0-4c63-a4fa-8cc5da1b5616 2020-09-03 21:19:50.408543 39113 2845 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.101.127 bfa6b266-1899-42a1-94ae-debbe7636149 2020-09-03 21:20:10.800791 39114 2846 Sale \N \N 21 User \N create ---\ncustomer_id: 159\nuser_id: 21\nopen_cash_register_id: 1041\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2020-09-03\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-571\nexpiration_date: 2020-10-08\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 834411c6-01af-4cef-a1bd-4304aeab03ce 2020-09-03 21:30:42.162102 39115 1904 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.101.127 834411c6-01af-4cef-a1bd-4304aeab03ce 2020-09-03 21:30:42.186026 39116 1928 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.101.127 834411c6-01af-4cef-a1bd-4304aeab03ce 2020-09-03 21:30:42.205664 39117 2846 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-571 cancelada. 189.186.101.127 ca1ed416-6fd6-495e-ae8a-dae3ebf6a3fd 2020-09-03 21:31:15.413528 39118 1928 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.101.127 ca1ed416-6fd6-495e-ae8a-dae3ebf6a3fd 2020-09-03 21:31:15.43716 39119 1904 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.101.127 ca1ed416-6fd6-495e-ae8a-dae3ebf6a3fd 2020-09-03 21:31:15.458214 39120 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 21:00:48.905740000 Z\n- &1 2020-09-03 21:05:31.173102000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 21:31:28.213336959 Z\nsign_in_count:\n- 148\n- 149\n 298 \N 187.149.57.31 aaa143a0-ece0-4942-b100-369acd4cf9c8 2020-09-03 21:31:28.219351 39121 9 User \N \N 9 User \N update ---\nunique_session_id:\n- zWusAakuxZLZB8D_dhnS\n- r8s1QvK4so3SGA3Vt-xd\n 299 \N 187.149.57.31 aaa143a0-ece0-4942-b100-369acd4cf9c8 2020-09-03 21:31:28.231842 39122 2847 Sale \N \N 21 User \N create ---\ncustomer_id: 159\nuser_id: 21\nopen_cash_register_id: 1041\namount: !ruby/object:BigDecimal 18:0.195562E4\ntax: !ruby/object:BigDecimal 18:0.4138E2\ndiscount: !ruby/object:BigDecimal 18:0.299E3\ntotal: !ruby/object:BigDecimal 18:0.1698E4\nstatus: 0\ndate_sale: 2020-09-03\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-572\nexpiration_date: 2020-10-08\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 ba32cc80-5ff9-4ec5-ae97-5b965370bf96 2020-09-03 21:32:38.252108 39123 1844 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.101.127 ba32cc80-5ff9-4ec5-ae97-5b965370bf96 2020-09-03 21:32:38.277824 39124 1928 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.101.127 ba32cc80-5ff9-4ec5-ae97-5b965370bf96 2020-09-03 21:32:38.298543 39125 1904 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.101.127 ba32cc80-5ff9-4ec5-ae97-5b965370bf96 2020-09-03 21:32:38.319779 39126 1312 Product \N \N 4 User \N create ---\nsku: FAL-1312\nname: FLD-0031\ndescription: FALDA MEZCLILLA DESHILACHADA\nprice_base: !ruby/object:BigDecimal 18:0.286E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-1312 fue creado. 187.149.57.31 73ab0cac-dbee-4ad8-9410-c887e07f43ee 2020-09-03 21:35:07.436426 39127 1312 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001312'\n 2 \N 187.149.57.31 73ab0cac-dbee-4ad8-9410-c887e07f43ee 2020-09-03 21:35:07.478864 39128 2236 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1312\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 73ab0cac-dbee-4ad8-9410-c887e07f43ee 2020-09-03 21:35:07.516604 39129 1313 Product \N \N 4 User \N create ---\nsku: PAN-1313\nname: PNT-0031\ndescription: 'PANTALON DE VESTIR CON CINTO FLOREADO '\nprice_base: !ruby/object:BigDecimal 18:0.308E3\nprice_sale: !ruby/object:BigDecimal 18:0.769E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-1313 fue creado. 187.149.57.31 c0795ff0-9d97-47d4-a59c-cd82a974f9f2 2020-09-03 21:38:59.152543 39130 1313 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001313'\n 2 \N 187.149.57.31 c0795ff0-9d97-47d4-a59c-cd82a974f9f2 2020-09-03 21:38:59.178684 39131 2237 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1313\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 c0795ff0-9d97-47d4-a59c-cd82a974f9f2 2020-09-03 21:38:59.202919 39132 3812 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1041\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2847\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-572\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-572 189.186.101.127 a4f99b55-32be-4e3f-a32f-81e99b14d1e2 2020-09-03 21:39:51.913347 39133 2847 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.101.127 fe376dc2-f1c4-49f8-88f4-cc9cff5cbcb9 2020-09-03 21:39:55.096766 39134 1314 Product \N \N 4 User \N create ---\nsku: BLU-1314\nname: BLS-0126\ndescription: BLUSA CON HILO EN MANGA\nprice_base: !ruby/object:BigDecimal 18:0.198E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1314 fue creado. 187.149.57.31 05f4e9b1-58ef-429b-96d8-adcd9f3ad232 2020-09-03 21:46:59.444437 39137 1315 Product \N \N 4 User \N create ---\nsku: BLU-1315\nname: BLS-0127\ndescription: BLUSA GATITOS\nprice_base: !ruby/object:BigDecimal 18:0.143E3\nprice_sale: !ruby/object:BigDecimal 18:0.369E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1315 fue creado. 187.149.57.31 3c0ccb9f-8cd1-4273-ac95-c9b3a6d85471 2020-09-03 21:49:54.666264 39138 1315 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001315'\n 2 \N 187.149.57.31 3c0ccb9f-8cd1-4273-ac95-c9b3a6d85471 2020-09-03 21:49:54.694732 39139 2239 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1315\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 3c0ccb9f-8cd1-4273-ac95-c9b3a6d85471 2020-09-03 21:49:54.719035 39140 2848 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1041\namount: !ruby/object:BigDecimal 18:0.278E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.278E3\nstatus: 0\ndate_sale: 2020-09-03\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-573\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 f9bf3d73-c143-408f-8382-320d2928049a 2020-09-03 21:50:06.753686 39141 2089 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.101.127 f9bf3d73-c143-408f-8382-320d2928049a 2020-09-03 21:50:06.793814 39142 2096 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.101.127 f9bf3d73-c143-408f-8382-320d2928049a 2020-09-03 21:50:06.826094 39143 2848 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 069a17d0-18e5-4d1c-8459-c196c95cfdc4 2020-09-03 21:50:26.431009 39144 3813 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1041\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.278E3\nmove_type: '1'\nsale_id: 2848\ncardnumber: 9822\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-573\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-573 189.186.101.127 069a17d0-18e5-4d1c-8459-c196c95cfdc4 2020-09-03 21:50:26.453214 39145 1316 Product \N \N 4 User \N create ---\nsku: FAL-1316\nname: FLD-0032\ndescription: FALDA PLISADA BLANCA\nprice_base: !ruby/object:BigDecimal 18:0.242E3\nprice_sale: !ruby/object:BigDecimal 18:0.649E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-1316 fue creado. 187.149.57.31 b78b215e-684d-48b2-bcc1-fbfd8e7bacd6 2020-09-03 21:52:28.193645 39146 1316 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001316'\n 2 \N 187.149.57.31 b78b215e-684d-48b2-bcc1-fbfd8e7bacd6 2020-09-03 21:52:28.216683 39147 2240 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1316\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 b78b215e-684d-48b2-bcc1-fbfd8e7bacd6 2020-09-03 21:52:28.239575 39148 2849 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1041\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.369E3\ntotal: !ruby/object:BigDecimal 18:0.5E3\nstatus: 0\ndate_sale: 2020-09-03\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-574\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 d695948a-5996-4603-9eb8-889e7494df73 2020-09-03 21:54:31.302047 39149 1906 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.101.127 d695948a-5996-4603-9eb8-889e7494df73 2020-09-03 21:54:31.327729 39150 2849 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 1d129def-75a1-4a30-8fe2-70d492e5f11d 2020-09-03 21:54:48.649385 39151 3814 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1041\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 2849\ncardnumber: 8023\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-574\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-574 189.186.101.127 1d129def-75a1-4a30-8fe2-70d492e5f11d 2020-09-03 21:54:48.669822 39152 1317 Product \N \N 4 User \N create ---\nsku: FAL-1317\nname: FLD-0033\ndescription: FALDA PLISADA MCO CON CINTO\nprice_base: !ruby/object:BigDecimal 18:0.3355E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-1317 fue creado. 187.149.57.31 e03bcdae-d3d7-44c2-8eb4-5f15ffb9488e 2020-09-03 21:57:04.944508 39153 1317 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001317'\n 2 \N 187.149.57.31 e03bcdae-d3d7-44c2-8eb4-5f15ffb9488e 2020-09-03 21:57:04.97688 39154 2241 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1317\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 e03bcdae-d3d7-44c2-8eb4-5f15ffb9488e 2020-09-03 21:57:05.005198 39155 1318 Product \N \N 4 User \N create ---\nsku: PAN-1318\nname: PNT-0032\ndescription: 'PANTALON MCO CON PIEDRA '\nprice_base: !ruby/object:BigDecimal 18:0.462E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-1318 fue creado. 187.149.57.31 45ae9e54-7a3a-4f58-94eb-45fe085daff3 2020-09-03 22:02:25.350262 39156 1318 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001318'\n 2 \N 187.149.57.31 45ae9e54-7a3a-4f58-94eb-45fe085daff3 2020-09-03 22:02:25.379411 39157 2242 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1318\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 45ae9e54-7a3a-4f58-94eb-45fe085daff3 2020-09-03 22:02:25.407264 39158 369 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-144\namount: !ruby/object:BigDecimal 18:0.11517E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.11517E5\nobservations: ''\npurchase_date: 2020-09-03\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-144 por $ 11517.0 MXN creada. 187.149.57.31 8587d6da-b715-44d6-9369-9a03538dd750 2020-09-03 22:10:09.185297 39159 2235 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.57.31 8587d6da-b715-44d6-9369-9a03538dd750 2020-09-03 22:10:09.207995 39160 2236 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.57.31 8587d6da-b715-44d6-9369-9a03538dd750 2020-09-03 22:10:09.229902 39161 2237 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 8587d6da-b715-44d6-9369-9a03538dd750 2020-09-03 22:10:09.251064 39162 2238 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 8587d6da-b715-44d6-9369-9a03538dd750 2020-09-03 22:10:09.272645 39163 2239 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 8587d6da-b715-44d6-9369-9a03538dd750 2020-09-03 22:10:09.293282 39164 2240 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.57.31 8587d6da-b715-44d6-9369-9a03538dd750 2020-09-03 22:10:09.313694 39165 2241 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 8587d6da-b715-44d6-9369-9a03538dd750 2020-09-03 22:10:09.33832 39166 2242 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 8587d6da-b715-44d6-9369-9a03538dd750 2020-09-03 22:10:09.358514 39167 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 21:05:31.173102000 Z\n- &1 2020-09-03 21:31:28.213336000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 22:10:45.525459173 Z\nsign_in_count:\n- 149\n- 150\n 300 \N 187.149.57.31 03bb02e6-f289-4530-bbac-193a4ad568b2 2020-09-03 22:10:45.530979 39168 9 User \N \N 9 User \N update ---\nunique_session_id:\n- r8s1QvK4so3SGA3Vt-xd\n- nzw7hxKe831cKzv8hdST\n 301 \N 187.149.57.31 03bb02e6-f289-4530-bbac-193a4ad568b2 2020-09-03 22:10:45.543277 39169 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 21:04:47.289772000 Z\n- &1 2020-09-03 21:11:41.258315000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 22:16:08.015921720 Z\nsign_in_count:\n- 1800\n- 1801\n 3602 \N 187.149.57.31 238de758-cd94-4bd7-b181-267c636105c6 2020-09-03 22:16:08.022045 39170 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 549KsDyeDvQpGHj8Cs7L\n- apG6_7e9JLjjtJzLvH4m\n 3603 \N 187.149.57.31 238de758-cd94-4bd7-b181-267c636105c6 2020-09-03 22:16:08.037961 39171 1319 Product \N \N 4 User \N create ---\nsku: PAN-1319\nname: PNT-0032\ndescription: PANTALON MEZCLILLA MCO CON BRILLO\nprice_base: !ruby/object:BigDecimal 18:0.462E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-1319 fue creado. 187.149.57.31 66362025-809f-487b-9d8f-c9cf64e84de2 2020-09-03 22:19:18.345962 39172 1319 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001319'\n 2 \N 187.149.57.31 66362025-809f-487b-9d8f-c9cf64e84de2 2020-09-03 22:19:18.373721 39173 2243 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1319\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 66362025-809f-487b-9d8f-c9cf64e84de2 2020-09-03 22:19:18.400362 39174 1320 Product \N \N 4 User \N create ---\nsku: BLU-1320\nname: BLS-0128\ndescription: BLUSA DIVINE MOSTAZA\nprice_base: !ruby/object:BigDecimal 18:0.286E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1320 fue creado. 187.149.57.31 c3261e4b-63a7-4701-b163-c7ab18e19cea 2020-09-03 22:23:09.276027 39175 1320 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001320'\n 2 \N 187.149.57.31 c3261e4b-63a7-4701-b163-c7ab18e19cea 2020-09-03 22:23:09.326699 39176 2244 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1320\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 c3261e4b-63a7-4701-b163-c7ab18e19cea 2020-09-03 22:23:09.352477 39177 1321 Product \N \N 4 User \N create ---\nsku: FAL-1321\nname: FLD-0034\ndescription: FALDA PIEL CON ENCAJE\nprice_base: !ruby/object:BigDecimal 18:0.308E3\nprice_sale: !ruby/object:BigDecimal 18:0.749E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-1321 fue creado. 187.149.57.31 45d19c06-7771-4769-a3f6-129c045af881 2020-09-03 22:26:21.125385 39178 1321 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001321'\n 2 \N 187.149.57.31 45d19c06-7771-4769-a3f6-129c045af881 2020-09-03 22:26:21.152643 39179 2245 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1321\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 45d19c06-7771-4769-a3f6-129c045af881 2020-09-03 22:26:21.177698 39180 1322 Product \N \N 4 User \N create ---\nsku: BLU-1322\nname: BLS-0128\ndescription: BLUSA AMOUR\nprice_base: !ruby/object:BigDecimal 18:0.22E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1322 fue creado. 187.149.57.31 e2febb1a-d04a-4427-ac6d-4c56ec650025 2020-09-03 22:37:55.425949 39181 1322 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001322'\n 2 \N 187.149.57.31 e2febb1a-d04a-4427-ac6d-4c56ec650025 2020-09-03 22:37:55.455322 39316 1152 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1152'\n is_parent: false\n sku: BOL-1152\n name: 3BLCV20805\n description: BACK PACK CON LETRAS\n price_base: '699.5'\n price_sale: '1399.0'\n img_product: F3B02F08-B262-4D0F-B7A7-9A51558AC619.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170860252'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-07-13 21:11:59.822814'\n updated_at: &12 2020-09-04 19:37:03.582292751 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1152'\n sku: BOL-1152\n name: 3BLCV20805\n description: BACK PACK CON LETRAS\n price_base: '699.50'\n price_sale: '1399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-07-13 21:11:59.822814'\n updated_at: '2020-07-13 21:11:59.822814'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170860252'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1152'\n type: *3\n value: 1152\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1152\n type: *7\n value: BOL-1152\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 3BLCV20805\n type: *8\n value: 3BLCV20805\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BACK PACK CON LETRAS\n type: *6\n value: BACK PACK CON LETRAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '699.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1399E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: F3B02F08-B262-4D0F-B7A7-9A51558AC619.jpeg\n type: *2\n value: F3B02F08-B262-4D0F-B7A7-9A51558AC619.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170860252'\n type: *2\n value: '7509170860252'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-07-13 21:11:59.822814'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- F3B02F08-B262-4D0F-B7A7-9A51558AC619.jpeg\n 2 El producto BOL-1152 fue modificado. 187.149.57.31 f7fb46b9-1697-428d-87e9-303e8e4677f3 2020-09-04 19:37:03.622021 39182 2246 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1322\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 e2febb1a-d04a-4427-ac6d-4c56ec650025 2020-09-03 22:37:55.482688 39183 1323 Product \N \N 4 User \N create ---\nsku: BLU-1323\nname: BLS-0129\ndescription: PLAYERA PRETTY RED\nprice_base: !ruby/object:BigDecimal 18:0.22E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1323 fue creado. 187.149.57.31 5677c8a8-4fc5-45a4-bda4-533b1feca64a 2020-09-03 22:41:52.980711 39184 1323 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001323'\n 2 \N 187.149.57.31 5677c8a8-4fc5-45a4-bda4-533b1feca64a 2020-09-03 22:41:53.007991 39185 2247 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1323\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 5677c8a8-4fc5-45a4-bda4-533b1feca64a 2020-09-03 22:41:53.034226 39186 1324 Product \N \N 4 User \N create ---\nsku: BLU-1324\nname: BLS-0130\ndescription: 'PLAYERA FASHIONISTA '\nprice_base: !ruby/object:BigDecimal 18:0.286E3\nprice_sale: !ruby/object:BigDecimal 18:0.589E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1324 fue creado. 187.149.57.31 7c909098-38dc-4fdb-b738-051ead3c8b85 2020-09-03 22:44:19.130692 39187 1324 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001324'\n 2 \N 187.149.57.31 7c909098-38dc-4fdb-b738-051ead3c8b85 2020-09-03 22:44:19.159531 39188 2248 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1324\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 7c909098-38dc-4fdb-b738-051ead3c8b85 2020-09-03 22:44:19.188143 39189 1325 Product \N \N 4 User \N create ---\nsku: VES-1325\nname: 'VST-0117 '\ndescription: VESTIDO ROSA CON BOLITAS DE BRILLOS\nprice_base: !ruby/object:BigDecimal 18:0.374E3\nprice_sale: !ruby/object:BigDecimal 18:0.969E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1325 fue creado. 187.149.57.31 0221a853-bef3-4f20-8bfa-0e5114513041 2020-09-03 22:48:56.178066 39190 1325 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001325'\n 2 \N 187.149.57.31 0221a853-bef3-4f20-8bfa-0e5114513041 2020-09-03 22:48:56.204941 39191 2249 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1325\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 0221a853-bef3-4f20-8bfa-0e5114513041 2020-09-03 22:48:56.229186 39192 1326 Product \N \N 4 User \N create ---\nsku: VES-1326\nname: VST-0118\ndescription: VESTIDO ROSA CON BOLITAS NEGRAS\nprice_base: !ruby/object:BigDecimal 18:0.396E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1326 fue creado. 187.149.57.31 08c47b3b-49b1-49fc-9c92-cf972c56220b 2020-09-03 22:51:39.58483 39193 1326 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001326'\n 2 \N 187.149.57.31 08c47b3b-49b1-49fc-9c92-cf972c56220b 2020-09-03 22:51:39.613701 39194 2250 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1326\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 08c47b3b-49b1-49fc-9c92-cf972c56220b 2020-09-03 22:51:39.642285 39195 370 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-145\namount: !ruby/object:BigDecimal 18:0.1122E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1122E5\nobservations: ''\npurchase_date: 2020-09-03\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-145 por $ 11220.0 MXN creada. 187.149.57.31 c1caf922-19c1-4eba-924f-63c493b3b2be 2020-09-03 22:52:51.702911 39196 2243 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 c1caf922-19c1-4eba-924f-63c493b3b2be 2020-09-03 22:52:51.723459 39197 2244 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.57.31 c1caf922-19c1-4eba-924f-63c493b3b2be 2020-09-03 22:52:51.744307 39198 2245 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.57.31 c1caf922-19c1-4eba-924f-63c493b3b2be 2020-09-03 22:52:51.765696 39199 2246 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 c1caf922-19c1-4eba-924f-63c493b3b2be 2020-09-03 22:52:51.787171 39200 2247 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 c1caf922-19c1-4eba-924f-63c493b3b2be 2020-09-03 22:52:51.808134 39201 2248 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 c1caf922-19c1-4eba-924f-63c493b3b2be 2020-09-03 22:52:51.830347 39202 2250 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.57.31 c1caf922-19c1-4eba-924f-63c493b3b2be 2020-09-03 22:52:51.851216 39203 2249 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.57.31 c1caf922-19c1-4eba-924f-63c493b3b2be 2020-09-03 22:52:51.87347 39204 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 21:31:28.213336000 Z\n- &1 2020-09-03 22:10:45.525459000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 22:53:44.266643071 Z\nsign_in_count:\n- 150\n- 151\n 302 \N 187.149.57.31 fdb4979a-4793-4673-b484-a4e9fa20c06d 2020-09-03 22:53:44.272322 39205 9 User \N \N 9 User \N update ---\nunique_session_id:\n- nzw7hxKe831cKzv8hdST\n- ZApMdayyK4Yu_ji3wzyt\n 303 \N 187.149.57.31 fdb4979a-4793-4673-b484-a4e9fa20c06d 2020-09-03 22:53:44.284611 39206 2850 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1040\namount: !ruby/object:BigDecimal 18:0.1738E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1738E4\nstatus: 0\ndate_sale: 2020-09-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1356\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 e905fa8c-7458-4ffb-a3c5-abd3c59d4433 2020-09-03 22:54:58.170361 39207 1821 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 35 \N 187.149.57.31 e905fa8c-7458-4ffb-a3c5-abd3c59d4433 2020-09-03 22:54:58.19795 39208 1756 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.57.31 e905fa8c-7458-4ffb-a3c5-abd3c59d4433 2020-09-03 22:54:58.223413 39209 2850 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 840803d4-0ed7-4a7c-b912-ce47a0f070e5 2020-09-03 22:55:49.497616 39210 3815 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1040\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1738E4\nmove_type: '1'\nsale_id: 2850\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1356\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1738E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1356 187.149.57.31 840803d4-0ed7-4a7c-b912-ce47a0f070e5 2020-09-03 22:55:49.520295 39211 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 21:11:41.258315000 Z\n- &1 2020-09-03 22:16:08.015921000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-03 23:00:21.464768207 Z\nsign_in_count:\n- 1801\n- 1802\n 3604 \N 187.149.57.31 4fc6d3e0-d841-400a-a213-9aeaa36ab811 2020-09-03 23:00:21.471335 39212 4 User \N \N 4 User \N update ---\nunique_session_id:\n- apG6_7e9JLjjtJzLvH4m\n- A_5_kTbVdyYDG4wcgu9b\n 3605 \N 187.149.57.31 4fc6d3e0-d841-400a-a213-9aeaa36ab811 2020-09-03 23:00:21.48723 39213 2851 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1041\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-09-03\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-575\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 fce93060-c35c-4c2b-911a-73b444e579f9 2020-09-03 23:11:29.142803 39214 1822 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 63 \N 189.186.101.127 fce93060-c35c-4c2b-911a-73b444e579f9 2020-09-03 23:11:29.169682 39215 2851 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 c37a801b-e2df-4276-843c-f9b28dd107fe 2020-09-03 23:12:12.530315 39216 3816 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1041\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2851\ncardnumber: 8401\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-575\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-575 189.186.101.127 c37a801b-e2df-4276-843c-f9b28dd107fe 2020-09-03 23:12:12.550787 39217 1327 Product \N \N 4 User \N create ---\nsku: BLU-1327\nname: BLS-0131\ndescription: BLUSA BASICA NYLON\nprice_base: !ruby/object:BigDecimal 18:0.209E3\nprice_sale: !ruby/object:BigDecimal 18:0.469E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1327 fue creado. 187.149.57.31 3cd7b1bd-33d7-4174-9b8c-cf596df45147 2020-09-03 23:17:20.790382 39218 1327 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001327'\n 2 \N 187.149.57.31 3cd7b1bd-33d7-4174-9b8c-cf596df45147 2020-09-03 23:17:20.818216 39219 2251 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1327\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 3cd7b1bd-33d7-4174-9b8c-cf596df45147 2020-09-03 23:17:20.844109 39220 371 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-146\namount: !ruby/object:BigDecimal 18:0.2299E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2299E4\nobservations: ''\npurchase_date: 2020-09-03\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-146 por $ 2299.0 MXN creada. 187.149.57.31 38f8cc4e-7b17-4a11-8846-549cc327dbf4 2020-09-03 23:17:32.236878 39221 2251 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.11E2\n 2 \N 187.149.57.31 38f8cc4e-7b17-4a11-8846-549cc327dbf4 2020-09-03 23:17:32.261789 39222 1328 Product \N \N 4 User \N create ---\nsku: BLU-1328\nname: BLS-0132\ndescription: BLUSA MARIPOSA Y GARABATOS CRUZADA\nprice_base: !ruby/object:BigDecimal 18:0.264E3\nprice_sale: !ruby/object:BigDecimal 18:0.569E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1328 fue creado. 187.149.57.31 fc90766d-3f30-4623-93cd-073199fe19f0 2020-09-03 23:20:07.740014 39223 1328 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001328'\n 2 \N 187.149.57.31 fc90766d-3f30-4623-93cd-073199fe19f0 2020-09-03 23:20:07.769363 39224 2252 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1328\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 fc90766d-3f30-4623-93cd-073199fe19f0 2020-09-03 23:20:07.797004 39225 1329 Product \N \N 4 User \N create ---\nsku: BLU-1329\nname: BLS-0133\ndescription: BLUSA SIN MANGA BASICA\nprice_base: !ruby/object:BigDecimal 18:0.209E3\nprice_sale: !ruby/object:BigDecimal 18:0.479E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1329 fue creado. 187.149.57.31 a79dc9ec-8835-482b-8f4e-4e0a92440781 2020-09-03 23:22:11.383704 39226 1329 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001329'\n 2 \N 187.149.57.31 a79dc9ec-8835-482b-8f4e-4e0a92440781 2020-09-03 23:22:11.4114 39227 2253 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1329\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 a79dc9ec-8835-482b-8f4e-4e0a92440781 2020-09-03 23:22:11.438183 39228 1330 Product \N \N 4 User \N create ---\nsku: PAN-1330\nname: PNT-0033\ndescription: PANTALON MEZCLILLA\nprice_base: !ruby/object:BigDecimal 18:0.308E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-1330 fue creado. 187.149.57.31 eba9a4f5-40d3-4f89-a7e5-1e64a52544c6 2020-09-03 23:28:38.891761 39229 1330 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001330'\n 2 \N 187.149.57.31 eba9a4f5-40d3-4f89-a7e5-1e64a52544c6 2020-09-03 23:28:38.91805 39230 2254 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1330\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 eba9a4f5-40d3-4f89-a7e5-1e64a52544c6 2020-09-03 23:28:38.94302 39231 1331 Product \N \N 4 User \N create ---\nsku: BLU-1331\nname: BLS-0134\ndescription: BLUSA LILA Y BLANCA\nprice_base: !ruby/object:BigDecimal 18:0.17E3\nprice_sale: !ruby/object:BigDecimal 18:0.399E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1331 fue creado. 187.149.57.31 29d607b2-6c2d-45f8-b0a5-eee0104b1acb 2020-09-03 23:35:37.835908 39232 1331 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001331'\n 2 \N 187.149.57.31 29d607b2-6c2d-45f8-b0a5-eee0104b1acb 2020-09-03 23:35:37.860858 39233 2255 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1331\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 29d607b2-6c2d-45f8-b0a5-eee0104b1acb 2020-09-03 23:35:37.884618 39234 1332 Product \N \N 4 User \N create ---\nsku: BLU-1332\nname: BLS-0135\ndescription: BLUSA ROSA CON COLORES Y MANGA DE GAZA,NEGRA Y BLANCA\nprice_base: !ruby/object:BigDecimal 18:0.214E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1332 fue creado. 187.149.57.31 ae1046bb-3e7a-44bc-bb94-8bfc75921c07 2020-09-03 23:38:11.20899 39235 1332 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001332'\n 2 \N 187.149.57.31 ae1046bb-3e7a-44bc-bb94-8bfc75921c07 2020-09-03 23:38:11.235212 39236 2256 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1332\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 ae1046bb-3e7a-44bc-bb94-8bfc75921c07 2020-09-03 23:38:11.258898 39237 1333 Product \N \N 4 User \N create ---\nsku: FAL-1333\nname: FLD-0035\ndescription: FALDA NEGRA DAZZ\nprice_base: !ruby/object:BigDecimal 18:0.28E3\nprice_sale: !ruby/object:BigDecimal 18:0.629E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-1333 fue creado. 187.149.57.31 0b8b7cbf-1d02-4442-9e55-0181cad0bf9e 2020-09-03 23:41:20.245502 39238 1333 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001333'\n 2 \N 187.149.57.31 0b8b7cbf-1d02-4442-9e55-0181cad0bf9e 2020-09-03 23:41:20.273745 39239 2257 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1333\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 0b8b7cbf-1d02-4442-9e55-0181cad0bf9e 2020-09-03 23:41:20.299871 39240 372 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-147\namount: !ruby/object:BigDecimal 18:0.9312E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9312E4\nobservations: ''\npurchase_date: 2020-09-03\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-147 por $ 9312.0 MXN creada. 187.149.57.31 d9cbe926-e8b7-44ed-ac41-d71a63eb4835 2020-09-03 23:41:42.735799 39241 2252 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 d9cbe926-e8b7-44ed-ac41-d71a63eb4835 2020-09-03 23:41:42.758633 39242 2253 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 d9cbe926-e8b7-44ed-ac41-d71a63eb4835 2020-09-03 23:41:42.78156 39243 2254 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 d9cbe926-e8b7-44ed-ac41-d71a63eb4835 2020-09-03 23:41:42.803767 39244 2255 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 d9cbe926-e8b7-44ed-ac41-d71a63eb4835 2020-09-03 23:41:42.824545 39245 2256 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.9E1\n 2 \N 187.149.57.31 d9cbe926-e8b7-44ed-ac41-d71a63eb4835 2020-09-03 23:41:42.846068 39246 2257 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 d9cbe926-e8b7-44ed-ac41-d71a63eb4835 2020-09-03 23:41:42.866103 39247 1334 Product \N \N 4 User \N create ---\nsku: BLU-1334\nname: BLS-0136\ndescription: BLUSA MICKEY ROJA Y NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.187E3\nprice_sale: !ruby/object:BigDecimal 18:0.489E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1334 fue creado. 187.149.57.31 45cb4aa1-149b-466e-b213-f60dc66eb5ba 2020-09-03 23:51:41.389521 39248 1334 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001334'\n 2 \N 187.149.57.31 45cb4aa1-149b-466e-b213-f60dc66eb5ba 2020-09-03 23:51:41.413724 39249 2258 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1334\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 45cb4aa1-149b-466e-b213-f60dc66eb5ba 2020-09-03 23:51:41.439194 39317 1301 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1301'\n is_parent: false\n sku: BOL-1301\n name: 3BLCV20804\n description: BOLSO NEGRO\n price_base: '699.5'\n price_sale: '1399.0'\n img_product: 7AD742A3-A49E-4350-9AFC-9AEBBC17C9A3.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170860207'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-27 19:50:37.116734'\n updated_at: &12 2020-09-04 19:42:42.778930425 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1301'\n sku: BOL-1301\n name: 3BLCV20804\n description: BOLSO NEGRO\n price_base: '699.50'\n price_sale: '1399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-27 19:50:37.116734'\n updated_at: '2020-08-27 19:50:37.116734'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170860207'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1301'\n type: *3\n value: 1301\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1301\n type: *7\n value: BOL-1301\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 3BLCV20804\n type: *8\n value: 3BLCV20804\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO NEGRO\n type: *6\n value: BOLSO NEGRO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '699.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1399E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 7AD742A3-A49E-4350-9AFC-9AEBBC17C9A3.jpeg\n type: *2\n value: 7AD742A3-A49E-4350-9AFC-9AEBBC17C9A3.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170860207'\n type: *2\n value: '7509170860207'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-27 19:50:37.116734'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 7AD742A3-A49E-4350-9AFC-9AEBBC17C9A3.jpeg\n 2 El producto BOL-1301 fue modificado. 187.149.57.31 192dcda2-a583-4b91-bca6-88bc89e91c73 2020-09-04 19:42:42.822224 39250 1335 Product \N \N 4 User \N create ---\nsku: BLU-1335\nname: BLS-0138\ndescription: BLUSA PERLAS APEACH\nprice_base: !ruby/object:BigDecimal 18:0.275E3\nprice_sale: !ruby/object:BigDecimal 18:0.689E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1335 fue creado. 187.149.57.31 54b2488c-ed29-445a-ba44-d27ea8522d4c 2020-09-03 23:54:23.263448 39251 1335 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001335'\n 2 \N 187.149.57.31 54b2488c-ed29-445a-ba44-d27ea8522d4c 2020-09-03 23:54:23.289435 39252 2259 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1335\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 54b2488c-ed29-445a-ba44-d27ea8522d4c 2020-09-03 23:54:23.314548 39253 1336 Product \N \N 4 User \N create ---\nsku: BLU-1336\nname: BLS-0138\ndescription: PANTI FLORAL AMARILLA\nprice_base: !ruby/object:BigDecimal 18:0.209E3\nprice_sale: !ruby/object:BigDecimal 18:0.549E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1336 fue creado. 187.149.57.31 fddffb72-a991-43f4-83bd-4293d2e1d0b8 2020-09-03 23:56:05.886086 39254 1336 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001336'\n 2 \N 187.149.57.31 fddffb72-a991-43f4-83bd-4293d2e1d0b8 2020-09-03 23:56:05.914511 39255 2260 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1336\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 fddffb72-a991-43f4-83bd-4293d2e1d0b8 2020-09-03 23:56:05.966568 39256 373 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-148\namount: !ruby/object:BigDecimal 18:0.3201E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3201E4\nobservations: ''\npurchase_date: 2020-09-03\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-148 por $ 3201.0 MXN creada. 187.149.57.31 70cc2eb8-8823-421d-a799-e26d8592b556 2020-09-03 23:57:05.219382 39257 2258 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 70cc2eb8-8823-421d-a799-e26d8592b556 2020-09-03 23:57:05.242133 39258 2259 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.57.31 70cc2eb8-8823-421d-a799-e26d8592b556 2020-09-03 23:57:05.264178 39259 2260 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 70cc2eb8-8823-421d-a799-e26d8592b556 2020-09-03 23:57:05.286034 39260 2852 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1041\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-03\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-576\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 71dfb2bf-cf73-4ece-b5d0-7d66f777b4af 2020-09-03 23:59:45.374898 39261 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 13 \N 189.186.101.127 71dfb2bf-cf73-4ece-b5d0-7d66f777b4af 2020-09-03 23:59:45.398701 39262 2852 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 086f3165-c43a-434d-82dd-2b327035775e 2020-09-03 23:59:56.428928 39263 3817 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1041\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 2852\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-576\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-576 189.186.101.127 086f3165-c43a-434d-82dd-2b327035775e 2020-09-03 23:59:56.448896 39264 2853 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1041\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.5E3\nstatus: 0\ndate_sale: 2020-09-03\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-577\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 526d8fab-e6a3-4f5a-8d0c-b4ba4df39b93 2020-09-04 00:26:48.278941 39265 829 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.101.127 526d8fab-e6a3-4f5a-8d0c-b4ba4df39b93 2020-09-04 00:26:48.307697 39266 2853 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 2eccc7f9-0850-4f41-8b4e-8bbd26eee5d4 2020-09-04 00:27:00.877423 39267 3818 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1041\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 2853\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-577\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-577 189.186.101.127 2eccc7f9-0850-4f41-8b4e-8bbd26eee5d4 2020-09-04 00:27:00.898822 39268 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-02 16:01:09.674711000 Z\n- &1 2020-09-03 16:00:47.876002000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-04 00:36:27.326882796 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094270\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\nsign_in_count:\n- 631\n- 632\n 1267 \N 187.149.57.31 2076633c-e8c5-4205-9e87-5f878cd833a3 2020-09-04 00:36:27.345541 39269 2 User \N \N 2 User \N update ---\nunique_session_id:\n- pTdPRqeS81gSyRPghDH8\n- TSv-5GxKj9YQNQy9kF3a\n 1268 \N 187.149.57.31 2076633c-e8c5-4205-9e87-5f878cd833a3 2020-09-04 00:36:27.366169 39270 1065 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1040\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5595E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.19E4\ncash_fund: !ruby/object:BigDecimal 18:0.1088E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2988E4\nobservations: Se hizo una venta de $100 de una blusa que no estaba en sistema (blu-0011)\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.57.31 1a6ef68a-0bc5-4cf4-822a-216e4d284ce5 2020-09-04 00:46:19.03133 39271 1040 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.57.31 1a6ef68a-0bc5-4cf4-822a-216e4d284ce5 2020-09-04 00:46:19.046561 39272 328 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 1041\nquantity: !ruby/object:BigDecimal 18:0.4E3\nstatus: 1\nobservations: Apartado con tarjeta\nexpense_date: 2020-09-03\nexpense_code: PV3-E-39\n 1 Egreso por 400.0 registrado 189.186.101.127 9996f6b7-1d87-4fed-984f-a12f8d966df2 2020-09-04 00:51:41.105863 39273 3819 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1041\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 328\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.101.127 9996f6b7-1d87-4fed-984f-a12f8d966df2 2020-09-04 00:51:41.12838 39274 1066 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1041\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.5415E4\namount_out: !ruby/object:BigDecimal 18:0.4E3\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.14E4\ncash_fund: !ruby/object:BigDecimal 18:0.859E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2259E4\nobservations: Reloj 1000 de apartado con Transferencia. se marco como tarjeta\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.101.127 8b0a296a-f3a2-47cf-beac-4096107aa9e3 2020-09-04 00:56:56.130435 39275 1041 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.101.127 8b0a296a-f3a2-47cf-beac-4096107aa9e3 2020-09-04 00:56:56.14243 39276 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 22:16:08.015921000 Z\n- &1 2020-09-03 23:00:21.464768000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-04 01:33:42.242189224 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945833\n mask_addr: 4294967295\nsign_in_count:\n- 1802\n- 1803\n 3606 \N 200.68.180.105 11782e5f-c12d-4f3d-82f5-a22dbed3999b 2020-09-04 01:33:42.268262 39277 4 User \N \N 4 User \N update ---\nunique_session_id:\n- A_5_kTbVdyYDG4wcgu9b\n- NEPXNJcQdDa9EQjyFKp8\n 3607 \N 200.68.180.105 11782e5f-c12d-4f3d-82f5-a22dbed3999b 2020-09-04 01:33:42.293105 39278 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 16:00:47.876002000 Z\n- &1 2020-09-04 00:36:27.326882000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-04 16:03:03.085382776 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094270\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\nsign_in_count:\n- 632\n- 633\n 1269 \N 187.149.57.31 ef1fc927-a84e-41f3-a2dc-90a13a05f25d 2020-09-04 16:03:03.118004 39279 2 User \N \N 2 User \N update ---\nunique_session_id:\n- TSv-5GxKj9YQNQy9kF3a\n- HZ6h_Zeg5VsRaddcHwQt\n 1270 \N 187.149.57.31 ef1fc927-a84e-41f3-a2dc-90a13a05f25d 2020-09-04 16:03:03.145401 39280 1042 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1088E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1088.0 187.149.57.31 71194b87-e436-4fc5-8b41-c6c8bdd6fbb5 2020-09-04 16:08:04.27842 39281 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 23:00:21.464768000 Z\n- &1 2020-09-04 01:33:42.242189000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-04 17:29:07.198199943 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945833\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945833\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945512\n mask_addr: 4294967295\nsign_in_count:\n- 1803\n- 1804\n 3608 \N 200.68.179.40 5c90bb92-6a91-4d18-9067-c8c1e85a2964 2020-09-04 17:29:07.206674 39282 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NEPXNJcQdDa9EQjyFKp8\n- nPG2_W1b53NCWUhRKkH9\n 3609 \N 200.68.179.40 5c90bb92-6a91-4d18-9067-c8c1e85a2964 2020-09-04 17:29:07.229094 39283 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 18:39:26.398864000 Z\n- &1 2020-09-03 18:53:42.501355000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-04 17:30:19.566642351 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945512\n mask_addr: 4294967295\nsign_in_count:\n- 271\n- 272\n 545 \N 200.68.179.40 bcc43c26-83e3-4a52-92cd-e9c8016f1e89 2020-09-04 17:30:19.573479 39284 21 User \N \N 21 User \N update ---\nunique_session_id:\n- UV6P3KzQAJnTDscmSabY\n- icUtSiTqM2TkUThePFnG\n 546 \N 200.68.179.40 bcc43c26-83e3-4a52-92cd-e9c8016f1e89 2020-09-04 17:30:19.588185 39285 329 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1042\nquantity: !ruby/object:BigDecimal 18:0.3E2\nstatus: 1\nobservations: 'estacionamiento Rocío '\nexpense_date: 2020-09-04\nexpense_code: PV1-E-228\n 1 Egreso por 30.0 registrado 187.149.57.31 c4816809-ce9b-4206-8ab7-82250d793826 2020-09-04 18:04:04.0692 39286 3820 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1042\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 329\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.57.31 c4816809-ce9b-4206-8ab7-82250d793826 2020-09-04 18:04:04.111221 39287 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 18:53:42.501355000 Z\n- &1 2020-09-04 17:30:19.566642000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-04 18:17:35.680965961 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945512\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945512\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 272\n- 273\n 547 \N 189.186.101.127 e5a7d51d-b44c-4ce6-a9b7-1f0c286dbcd0 2020-09-04 18:17:35.688951 39288 21 User \N \N 21 User \N update ---\nunique_session_id:\n- icUtSiTqM2TkUThePFnG\n- rK-zU9GYwyuVekgqgJRU\n 548 \N 189.186.101.127 e5a7d51d-b44c-4ce6-a9b7-1f0c286dbcd0 2020-09-04 18:17:35.723849 39289 1043 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.859E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 859.0 189.186.101.127 128fdbd4-055f-46f9-9eab-9c84c4a04972 2020-09-04 18:17:59.819019 39290 3821 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E4\nmove_type: '1'\nsale_id: 2485\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.101.127 44d96d82-6de1-40e3-b80d-85f22fad63c4 2020-09-04 18:25:51.438298 39291 3821 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 933\n- 1043\n 2 movimiento de efectivo por venta con folio PV1-V-1209 189.186.101.127 44d96d82-6de1-40e3-b80d-85f22fad63c4 2020-09-04 18:25:51.492735 39340 1 User \N \N 1 User \N update ---\nunique_session_id:\n- yc9MKZYj6Nw_7FpgtNJy\n- gv-mgfr1iLNxi-drpTpF\n 459 \N 187.149.57.31 2eb6606a-fbb1-4316-85e0-f3b4d9148d7b 2020-09-04 22:10:40.242134 39341 2691 Sale \N \N 4 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV1-V-1283 cancelada. 187.149.57.31 4c1f93ae-5105-467f-b6b9-f3ee6370caea 2020-09-04 22:31:18.863941 39292 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-08-31 23:17:27.286358000 Z\n- &1 2020-09-02 17:31:35.375986000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-04 18:31:41.060016364 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946148\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094270\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094270\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\nsign_in_count:\n- 226\n- 227\n 454 \N 187.149.57.31 83898ac1-f7fa-4aaf-a07b-f7e26e48d2f1 2020-09-04 18:31:41.092042 39293 1 User \N \N 1 User \N update ---\nunique_session_id:\n- JJsFrrSiQPmC6ncJ7uZv\n- 2RWfanyzZdKxRQ4fdjEs\n 455 \N 187.149.57.31 83898ac1-f7fa-4aaf-a07b-f7e26e48d2f1 2020-09-04 18:31:41.115618 39294 2854 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1043\namount: !ruby/object:BigDecimal 18:0.2898E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.5E2\ntotal: !ruby/object:BigDecimal 18:0.2848E4\nstatus: 0\ndate_sale: 2020-09-04\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-578\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 930a574e-618b-4ab9-9f7b-de244dc18210 2020-09-04 18:38:19.113936 39295 1966 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.101.127 930a574e-618b-4ab9-9f7b-de244dc18210 2020-09-04 18:38:19.145834 39296 1984 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.101.127 930a574e-618b-4ab9-9f7b-de244dc18210 2020-09-04 18:38:19.192883 39297 2854 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 412f7d46-b61b-482f-aadb-7e9a1a5d2e1e 2020-09-04 18:38:31.956636 39298 3822 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1043\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.2848E4\nmove_type: '1'\nsale_id: 2854\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-578\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: INSTA\n 1 movimiento de efectivo por venta con folio PV3-V-578 189.186.101.127 412f7d46-b61b-482f-aadb-7e9a1a5d2e1e 2020-09-04 18:38:31.989287 39299 1293 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1293'\n is_parent: false\n sku: BOL-1293\n name: 1BLCV20290\n description: 'BOLSO CLOE '\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: E2B06436-22C9-4BDB-AD2F-956E4EA27120.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170819175'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-27 19:25:03.992897'\n updated_at: &12 2020-09-04 18:44:14.103375184 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1293'\n sku: BOL-1293\n name: 1BLCV20290\n description: 'BOLSO CLOE '\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-27 19:25:03.992897'\n updated_at: '2020-08-27 19:25:03.992897'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170819175'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1293'\n type: *3\n value: 1293\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1293\n type: *7\n value: BOL-1293\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCV20290\n type: *8\n value: 1BLCV20290\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'BOLSO CLOE '\n type: *6\n value: 'BOLSO CLOE '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: E2B06436-22C9-4BDB-AD2F-956E4EA27120.jpeg\n type: *2\n value: E2B06436-22C9-4BDB-AD2F-956E4EA27120.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170819175'\n type: *2\n value: '7509170819175'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-27 19:25:03.992897'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- E2B06436-22C9-4BDB-AD2F-956E4EA27120.jpeg\n 2 El producto BOL-1293 fue modificado. 187.149.57.31 3727e487-125e-409e-99e8-57b22104386d 2020-09-04 18:44:14.15677 39300 2855 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1042\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.499E3\ntotal: !ruby/object:BigDecimal 18:0.2E3\nstatus: 0\ndate_sale: 2020-09-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1357\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 8b309bb7-e2cc-457f-8301-88f0eb916dda 2020-09-04 18:46:36.452448 39301 1782 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.57.31 8b309bb7-e2cc-457f-8301-88f0eb916dda 2020-09-04 18:46:36.476896 39302 2855 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 24c44980-0100-4354-b83f-90422eea0efc 2020-09-04 18:46:40.672893 39303 3823 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1042\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 2855\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1357\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1357 187.149.57.31 24c44980-0100-4354-b83f-90422eea0efc 2020-09-04 18:46:40.69442 39304 1302 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1302'\n is_parent: false\n sku: BOL-1302\n name: 1BLCV20259\n description: BOLSO MULTICOLOR\n price_base: '949.5'\n price_sale: '1899.0'\n img_product: 2BFC0566-DA8B-4C3C-BD4A-E633D239A332.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170818352'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-27 19:52:44.236879'\n updated_at: &12 2020-09-04 18:50:08.232949490 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1302'\n sku: BOL-1302\n name: 1BLCV20259\n description: BOLSO MULTICOLOR\n price_base: '949.50'\n price_sale: '1899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-27 19:52:44.236879'\n updated_at: '2020-08-27 19:52:44.236879'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170818352'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1302'\n type: *3\n value: 1302\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1302\n type: *7\n value: BOL-1302\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCV20259\n type: *8\n value: 1BLCV20259\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO MULTICOLOR\n type: *6\n value: BOLSO MULTICOLOR\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '949.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.9495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1899E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 2BFC0566-DA8B-4C3C-BD4A-E633D239A332.jpeg\n type: *2\n value: 2BFC0566-DA8B-4C3C-BD4A-E633D239A332.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170818352'\n type: *2\n value: '7509170818352'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-27 19:52:44.236879'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 2BFC0566-DA8B-4C3C-BD4A-E633D239A332.jpeg\n 2 El producto BOL-1302 fue modificado. 187.149.57.31 f9e16c94-77fa-4118-b324-b3cf77f9c645 2020-09-04 18:50:08.27953 39305 1191 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1191'\n is_parent: false\n sku: BOL-1191\n name: 1BLCP20933\n description: 'BOLSITA ROSA '\n price_base: '649.5'\n price_sale: '1299.0'\n img_product: B62968E6-2241-495E-A7A2-59FA900D7B9B.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170795172'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-07 21:35:01.590584'\n updated_at: &12 2020-09-04 18:55:15.483307978 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1191'\n sku: BOL-1191\n name: 1BLCP20933\n description: 'BOLSITA ROSA '\n price_base: '649.50'\n price_sale: '1299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-07 21:35:01.590584'\n updated_at: '2020-08-07 21:35:01.590584'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170795172'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1191'\n type: *3\n value: 1191\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1191\n type: *7\n value: BOL-1191\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCP20933\n type: *8\n value: 1BLCP20933\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'BOLSITA ROSA '\n type: *6\n value: 'BOLSITA ROSA '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '649.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1299E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: B62968E6-2241-495E-A7A2-59FA900D7B9B.jpeg\n type: *2\n value: B62968E6-2241-495E-A7A2-59FA900D7B9B.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170795172'\n type: *2\n value: '7509170795172'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-07 21:35:01.590584'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- B62968E6-2241-495E-A7A2-59FA900D7B9B.jpeg\n 2 El producto BOL-1191 fue modificado. 187.149.57.31 d1e76748-652f-48b7-82a1-60a16b351512 2020-09-04 18:55:15.54609 39306 1295 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1295'\n is_parent: false\n sku: BOL-1295\n name: 1BLCP20972\n description: BOLSO FLORES\n price_base: '949.5'\n price_sale: '1899.0'\n img_product: DA1DE060-46EB-42EF-9EE6-1485D3942F89.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170796339'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-27 19:27:56.729088'\n updated_at: &12 2020-09-04 18:56:36.511014866 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1295'\n sku: BOL-1295\n name: 1BLCP20972\n description: BOLSO FLORES\n price_base: '949.50'\n price_sale: '1899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-27 19:27:56.729088'\n updated_at: '2020-08-27 19:27:56.729088'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170796339'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1295'\n type: *3\n value: 1295\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1295\n type: *7\n value: BOL-1295\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCP20972\n type: *8\n value: 1BLCP20972\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO FLORES\n type: *6\n value: BOLSO FLORES\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '949.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.9495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1899E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DA1DE060-46EB-42EF-9EE6-1485D3942F89.jpeg\n type: *2\n value: DA1DE060-46EB-42EF-9EE6-1485D3942F89.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170796339'\n type: *2\n value: '7509170796339'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-27 19:27:56.729088'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- DA1DE060-46EB-42EF-9EE6-1485D3942F89.jpeg\n 2 El producto BOL-1295 fue modificado. 187.149.57.31 1d3b3768-5b3c-4bb9-bbee-1b81b88dbe87 2020-09-04 18:56:36.55151 39307 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-04 01:33:42.242189000 Z\n- &1 2020-09-04 17:29:07.198199000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-04 19:03:57.747764204 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945833\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945512\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945512\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 1804\n- 1805\n 3610 \N 189.186.101.127 367a1f4b-32b5-4f94-8ec3-96a0d242936e 2020-09-04 19:03:57.756173 39308 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nPG2_W1b53NCWUhRKkH9\n- p8fGpjBZjxJ9xnuPD5EH\n 3611 \N 189.186.101.127 367a1f4b-32b5-4f94-8ec3-96a0d242936e 2020-09-04 19:03:57.776453 39309 1294 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1294'\n is_parent: false\n sku: BOL-1294\n name: 1BLCV20295\n description: BOLSOS COLORES\n price_base: '499.5'\n price_sale: '999.0'\n img_product: E0AD76AD-CA0E-40C8-B6E5-4EEA56E6A175.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170819342'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-27 19:26:42.270542'\n updated_at: &12 2020-09-04 19:04:35.971490071 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1294'\n sku: BOL-1294\n name: 1BLCV20295\n description: BOLSOS COLORES\n price_base: '499.50'\n price_sale: '999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-27 19:26:42.270542'\n updated_at: '2020-08-27 19:26:42.270542'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170819342'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1294'\n type: *3\n value: 1294\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1294\n type: *7\n value: BOL-1294\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCV20295\n type: *8\n value: 1BLCV20295\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSOS COLORES\n type: *6\n value: BOLSOS COLORES\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '499.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: E0AD76AD-CA0E-40C8-B6E5-4EEA56E6A175.jpeg\n type: *2\n value: E0AD76AD-CA0E-40C8-B6E5-4EEA56E6A175.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170819342'\n type: *2\n value: '7509170819342'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-27 19:26:42.270542'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- E0AD76AD-CA0E-40C8-B6E5-4EEA56E6A175.jpeg\n 2 El producto BOL-1294 fue modificado. 187.149.57.31 236a1194-4df7-4d4c-9aff-98cb9132275c 2020-09-04 19:04:36.012431 39310 2856 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1042\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-09-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1358\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 3fd92e80-994a-4d0c-b46e-7b3554b336cf 2020-09-04 19:06:48.988556 39311 2225 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.57.31 3fd92e80-994a-4d0c-b46e-7b3554b336cf 2020-09-04 19:06:49.017962 39312 2856 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 980d8517-beb8-4685-9ea2-54879ee7df35 2020-09-04 19:07:05.217152 39313 3824 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1042\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 2856\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1358\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1799E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1358 187.149.57.31 980d8517-beb8-4685-9ea2-54879ee7df35 2020-09-04 19:07:05.265892 39314 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-02 17:31:35.375986000 Z\n- &1 2020-09-04 18:31:41.060016000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-04 19:33:23.529812356 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183094270\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\nsign_in_count:\n- 227\n- 228\n 456 \N 187.149.57.31 26ff3b0a-f21d-48cc-8c9e-54fc0d0e89dd 2020-09-04 19:33:23.537233 39315 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 2RWfanyzZdKxRQ4fdjEs\n- yc9MKZYj6Nw_7FpgtNJy\n 457 \N 187.149.57.31 26ff3b0a-f21d-48cc-8c9e-54fc0d0e89dd 2020-09-04 19:33:23.553384 39318 2857 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1042\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-04\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1359\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 e0961045-263f-4465-9bee-034c09c4441e 2020-09-04 19:45:28.620784 39319 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.57.31 e0961045-263f-4465-9bee-034c09c4441e 2020-09-04 19:45:28.650621 39320 2857 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 e14786a7-4f32-40dd-a9dc-e4da44238f20 2020-09-04 19:45:43.58616 39321 3825 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1042\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2857\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1359\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAM\n 1 movimiento de efectivo por venta con folio PV1-V-1359 187.149.57.31 e14786a7-4f32-40dd-a9dc-e4da44238f20 2020-09-04 19:45:43.605666 39322 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-04 17:29:07.198199000 Z\n- &1 2020-09-04 19:03:57.747764000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-04 19:54:20.831225981 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945512\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\nsign_in_count:\n- 1805\n- 1806\n 3612 \N 187.149.57.31 6fe56386-8a34-4a0e-8c11-9970c2c128eb 2020-09-04 19:54:20.838794 39323 4 User \N \N 4 User \N update ---\nunique_session_id:\n- p8fGpjBZjxJ9xnuPD5EH\n- 1aJHb5355ZxWn1MoD4pk\n 3613 \N 187.149.57.31 6fe56386-8a34-4a0e-8c11-9970c2c128eb 2020-09-04 19:54:20.856817 39324 2858 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1043\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.5E3\nstatus: 0\ndate_sale: 2020-09-04\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-579\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 0305feaf-f1bd-46cc-a1a0-d0ecd11a35c9 2020-09-04 20:00:49.125034 39325 829 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.101.127 0305feaf-f1bd-46cc-a1a0-d0ecd11a35c9 2020-09-04 20:00:49.151619 39326 2858 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 fc372020-f551-4e6e-b82e-f0234e09406e 2020-09-04 20:01:33.323427 39327 3826 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1043\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 2858\ncardnumber: 4803\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-579\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-579 189.186.101.127 fc372020-f551-4e6e-b82e-f0234e09406e 2020-09-04 20:01:33.343909 39328 2859 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1043\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-09-04\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-580\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 425aae7b-a5a5-44cb-b855-3f21a82b40da 2020-09-04 20:24:48.30199 39329 1832 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 15 \N 189.186.101.127 425aae7b-a5a5-44cb-b855-3f21a82b40da 2020-09-04 20:24:48.3363 39330 2859 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 c075ce4b-1239-42c7-8274-e6113fcc54c3 2020-09-04 20:25:31.852426 39331 3827 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1043\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2859\ncardnumber: 5706\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-580\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-580 189.186.101.127 c075ce4b-1239-42c7-8274-e6113fcc54c3 2020-09-04 20:25:31.886589 39332 3828 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1043\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2687\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: TRANS\n 1 movimiento de efectivo por venta con folio PV3-V-487 189.186.101.127 7ca7d227-7d65-4ef8-9088-3d7a3900e493 2020-09-04 20:39:45.707695 39333 3829 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 939\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 2516\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: TRANS\n 1 \N 189.186.101.127 b8383f71-ccc1-4cf1-abdf-a1a491b9787a 2020-09-04 20:44:58.143772 39334 2516 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.101.127 b8383f71-ccc1-4cf1-abdf-a1a491b9787a 2020-09-04 20:44:58.167926 39335 2517 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.101.127 b8383f71-ccc1-4cf1-abdf-a1a491b9787a 2020-09-04 20:44:58.188014 39336 3829 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 939\n- 1043\n 2 movimiento de efectivo por venta con folio PV3-V-374 189.186.101.127 b8383f71-ccc1-4cf1-abdf-a1a491b9787a 2020-09-04 20:44:58.200724 39337 3830 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1043\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 2820\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: TRANS\n 1 movimiento de efectivo por venta con folio PV3-V-554 189.186.101.127 efd9156c-17f7-489d-9347-0edb20a47aad 2020-09-04 21:45:12.179572 39338 2820 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.101.127 50627503-72c0-495c-8b78-0a6feeb09f3d 2020-09-04 21:45:14.094199 39339 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-04 18:31:41.060016000 Z\n- &1 2020-09-04 19:33:23.529812000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-04 22:10:40.222011094 Z\nsign_in_count:\n- 228\n- 229\n 458 \N 187.149.57.31 2eb6606a-fbb1-4316-85e0-f3b4d9148d7b 2020-09-04 22:10:40.227959 39343 1821 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 36 \N 187.149.57.31 4c1f93ae-5105-467f-b6b9-f3ee6370caea 2020-09-04 22:31:18.904802 39344 1305 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1305'\n is_parent: false\n sku: VES-1305\n name: VST-0115\n description: VESTIDO DOBLE LATISTE TINTO\n price_base: '573.37'\n price_sale: '1189.0'\n img_product: 801B739E-53A9-430A-801A-21158694B57B.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001305'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 20:41:12.735741'\n updated_at: &12 2020-09-04 22:36:27.306129608 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1305'\n sku: VES-1305\n name: VST-0115\n description: VESTIDO DOBLE LATISTE TINTO\n price_base: '573.37'\n price_sale: '1189.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 20:41:12.735741'\n updated_at: '2020-09-03 20:41:12.774167'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001305'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1305'\n type: *3\n value: 1305\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1305\n type: *7\n value: VES-1305\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0115\n type: *8\n value: VST-0115\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO DOBLE LATISTE TINTO\n type: *6\n value: VESTIDO DOBLE LATISTE TINTO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '573.37'\n type: *1\n value: !ruby/object:BigDecimal 18:0.57337E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1189.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1189E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 801B739E-53A9-430A-801A-21158694B57B.jpeg\n type: *2\n value: 801B739E-53A9-430A-801A-21158694B57B.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001305'\n type: *2\n value: '0001305'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 20:41:12.735741'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 801B739E-53A9-430A-801A-21158694B57B.jpeg\n 3 El producto VES-1305 fue modificado. 187.149.57.31 5b94f5fb-a3c6-44c2-b505-8d7699232c22 2020-09-04 22:36:27.35121 39345 1306 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1306'\n is_parent: false\n sku: VES-1306\n name: VST-0116\n description: 'BATITA MICKEY '\n price_base: '253.0'\n price_sale: '549.0'\n img_product: 33DEA94D-F0BD-4184-A76D-64383BE9795D.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001306'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 20:47:13.697956'\n updated_at: &12 2020-09-04 22:36:59.663047162 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1306'\n sku: VES-1306\n name: VST-0116\n description: 'BATITA MICKEY '\n price_base: '253.00'\n price_sale: '549.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 20:47:13.697956'\n updated_at: '2020-09-03 20:47:13.736227'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001306'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1306'\n type: *3\n value: 1306\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1306\n type: *7\n value: VES-1306\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0116\n type: *8\n value: VST-0116\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'BATITA MICKEY '\n type: *6\n value: 'BATITA MICKEY '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '253.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.253E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '549.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.549E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 33DEA94D-F0BD-4184-A76D-64383BE9795D.jpeg\n type: *2\n value: 33DEA94D-F0BD-4184-A76D-64383BE9795D.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001306'\n type: *2\n value: '0001306'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 20:47:13.697956'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 33DEA94D-F0BD-4184-A76D-64383BE9795D.jpeg\n 3 El producto VES-1306 fue modificado. 187.149.57.31 396ebbfb-5d64-40cd-9cdf-6467e6ec96f5 2020-09-04 22:36:59.706447 39346 1311 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1311'\n is_parent: false\n sku: VES-1311\n name: VST-0116\n description: VESTIDO HOJAS MOON VERDE\n price_base: '418.0'\n price_sale: '1049.0'\n img_product: 47B4F530-86FD-4036-B247-8F243765EBAD.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001311'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 21:14:05.629209'\n updated_at: &12 2020-09-04 22:37:44.204352060 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1311'\n sku: VES-1311\n name: VST-0116\n description: VESTIDO HOJAS MOON VERDE\n price_base: '418.00'\n price_sale: '1049.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 21:14:05.629209'\n updated_at: '2020-09-03 21:14:05.685035'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001311'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1311'\n type: *3\n value: 1311\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1311\n type: *7\n value: VES-1311\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0116\n type: *8\n value: VST-0116\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO HOJAS MOON VERDE\n type: *6\n value: VESTIDO HOJAS MOON VERDE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '418.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.418E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1049.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1049E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 47B4F530-86FD-4036-B247-8F243765EBAD.jpeg\n type: *2\n value: 47B4F530-86FD-4036-B247-8F243765EBAD.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001311'\n type: *2\n value: '0001311'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 21:14:05.629209'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 47B4F530-86FD-4036-B247-8F243765EBAD.jpeg\n 3 El producto VES-1311 fue modificado. 187.149.57.31 4f165d0f-470b-431d-b0d1-29283fa5bded 2020-09-04 22:37:44.244924 39347 1325 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1325'\n is_parent: false\n sku: VES-1325\n name: 'VST-0117 '\n description: VESTIDO ROSA CON BOLITAS DE BRILLOS\n price_base: '374.0'\n price_sale: '969.0'\n img_product: ADE6E8D5-7A0F-4A9D-B8DE-CFF00939CE9D.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001325'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 22:48:56.166536'\n updated_at: &12 2020-09-04 22:39:24.731157661 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1325'\n sku: VES-1325\n name: 'VST-0117 '\n description: VESTIDO ROSA CON BOLITAS DE BRILLOS\n price_base: '374.00'\n price_sale: '969.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 22:48:56.166536'\n updated_at: '2020-09-03 22:48:56.202236'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001325'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1325'\n type: *3\n value: 1325\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1325\n type: *7\n value: VES-1325\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 'VST-0117 '\n type: *8\n value: 'VST-0117 '\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO ROSA CON BOLITAS DE BRILLOS\n type: *6\n value: VESTIDO ROSA CON BOLITAS DE BRILLOS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '374.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.374E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '969.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.969E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: ADE6E8D5-7A0F-4A9D-B8DE-CFF00939CE9D.jpeg\n type: *2\n value: ADE6E8D5-7A0F-4A9D-B8DE-CFF00939CE9D.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001325'\n type: *2\n value: '0001325'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 22:48:56.166536'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- ADE6E8D5-7A0F-4A9D-B8DE-CFF00939CE9D.jpeg\n 3 El producto VES-1325 fue modificado. 187.149.57.31 0916dfb8-7ff4-4df2-8bbc-70e09088f5d5 2020-09-04 22:39:24.77173 39348 1326 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1326'\n is_parent: false\n sku: VES-1326\n name: VST-0118\n description: VESTIDO ROSA CON BOLITAS NEGRAS\n price_base: '396.0'\n price_sale: '999.0'\n img_product: 4650432C-A180-4CBE-A0F8-32EF5CB0D339.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001326'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 22:51:39.571124'\n updated_at: &12 2020-09-04 22:41:00.734380711 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1326'\n sku: VES-1326\n name: VST-0118\n description: VESTIDO ROSA CON BOLITAS NEGRAS\n price_base: '396.00'\n price_sale: '999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 22:51:39.571124'\n updated_at: '2020-09-03 22:51:39.610792'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001326'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1326'\n type: *3\n value: 1326\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1326\n type: *7\n value: VES-1326\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0118\n type: *8\n value: VST-0118\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO ROSA CON BOLITAS NEGRAS\n type: *6\n value: VESTIDO ROSA CON BOLITAS NEGRAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '396.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.396E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 4650432C-A180-4CBE-A0F8-32EF5CB0D339.jpeg\n type: *2\n value: 4650432C-A180-4CBE-A0F8-32EF5CB0D339.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001326'\n type: *2\n value: '0001326'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 22:51:39.571124'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 4650432C-A180-4CBE-A0F8-32EF5CB0D339.jpeg\n 3 El producto VES-1326 fue modificado. 187.149.57.31 3ba115d8-7a9c-43a9-93df-010c8e928495 2020-09-04 22:41:00.77547 39349 1336 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1336'\n is_parent: false\n sku: BLU-1336\n name: BLS-0138\n description: PANTI FLORAL AMARILLA\n price_base: '209.0'\n price_sale: '549.0'\n img_product: 13A67412-BB2E-4747-9792-823E50820A43.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001336'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 23:56:05.874813'\n updated_at: &12 2020-09-04 22:41:44.274776550 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1336'\n sku: BLU-1336\n name: BLS-0138\n description: PANTI FLORAL AMARILLA\n price_base: '209.00'\n price_sale: '549.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 23:56:05.874813'\n updated_at: '2020-09-03 23:56:05.911586'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001336'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1336'\n type: *3\n value: 1336\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1336\n type: *7\n value: BLU-1336\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0138\n type: *8\n value: BLS-0138\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTI FLORAL AMARILLA\n type: *6\n value: PANTI FLORAL AMARILLA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '209.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.209E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '549.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.549E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 13A67412-BB2E-4747-9792-823E50820A43.jpeg\n type: *2\n value: 13A67412-BB2E-4747-9792-823E50820A43.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001336'\n type: *2\n value: '0001336'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 23:56:05.874813'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 13A67412-BB2E-4747-9792-823E50820A43.jpeg\n 3 El producto BLU-1336 fue modificado. 187.149.57.31 6ff4e03f-8bba-484c-9cf0-a63c84d75222 2020-09-04 22:41:44.314811 39350 1307 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1307'\n is_parent: false\n sku: BLU-1307\n name: BLS-0122\n description: 'BLUSA HOJAS VERDE '\n price_base: '275.0'\n price_sale: '669.0'\n img_product: 953CF379-51CD-4A86-959B-A2DC4088DF61.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001307'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 20:52:01.370951'\n updated_at: &12 2020-09-04 22:43:01.282146929 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1307'\n sku: BLU-1307\n name: BLS-0122\n description: 'BLUSA HOJAS VERDE '\n price_base: '275.00'\n price_sale: '669.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 20:52:01.370951'\n updated_at: '2020-09-03 20:52:01.409486'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001307'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1307'\n type: *3\n value: 1307\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1307\n type: *7\n value: BLU-1307\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0122\n type: *8\n value: BLS-0122\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'BLUSA HOJAS VERDE '\n type: *6\n value: 'BLUSA HOJAS VERDE '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '275.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.275E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '669.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.669E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 953CF379-51CD-4A86-959B-A2DC4088DF61.png\n type: *2\n value: 953CF379-51CD-4A86-959B-A2DC4088DF61.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001307'\n type: *2\n value: '0001307'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 20:52:01.370951'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 953CF379-51CD-4A86-959B-A2DC4088DF61.png\n 3 El producto BLU-1307 fue modificado. 187.149.57.31 4b47b06f-7a49-4fd8-a928-2af1d6fe9da0 2020-09-04 22:43:01.329356 39351 2860 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1043\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-09-04\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-581\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 19ec4cee-45ee-4dbc-b606-42188815e554 2020-09-04 22:43:26.078339 39352 2214 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.101.127 19ec4cee-45ee-4dbc-b606-42188815e554 2020-09-04 22:43:26.119042 39353 2860 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 1b8f4ca2-8a2b-4b1f-950c-2531d8caef30 2020-09-04 22:43:42.892091 39354 3831 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1043\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 2860\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-581\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-581 189.186.101.127 1b8f4ca2-8a2b-4b1f-950c-2531d8caef30 2020-09-04 22:43:42.918145 39355 1309 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1309'\n is_parent: false\n sku: BLU-1309\n name: BLS-0124\n description: ROSA CON FLORES EN LA MANGA\n price_base: '275.0'\n price_sale: '669.0'\n img_product: B2D03159-BED5-46F5-B8C4-42FF5DCEB336.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001309'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 20:56:32.237423'\n updated_at: &12 2020-09-04 22:45:02.046840115 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1309'\n sku: BLU-1309\n name: BLS-0124\n description: ROSA CON FLORES EN LA MANGA\n price_base: '275.00'\n price_sale: '669.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 20:56:32.237423'\n updated_at: '2020-09-03 20:56:32.271079'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001309'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1309'\n type: *3\n value: 1309\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1309\n type: *7\n value: BLU-1309\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0124\n type: *8\n value: BLS-0124\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: ROSA CON FLORES EN LA MANGA\n type: *6\n value: ROSA CON FLORES EN LA MANGA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '275.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.275E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '669.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.669E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: B2D03159-BED5-46F5-B8C4-42FF5DCEB336.png\n type: *2\n value: B2D03159-BED5-46F5-B8C4-42FF5DCEB336.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001309'\n type: *2\n value: '0001309'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 20:56:32.237423'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- B2D03159-BED5-46F5-B8C4-42FF5DCEB336.png\n 3 El producto BLU-1309 fue modificado. 187.149.57.31 a78b5e6a-0977-420c-856a-967beaef19fa 2020-09-04 22:45:02.087902 39356 1335 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1335'\n is_parent: false\n sku: BLU-1335\n name: BLS-0138\n description: BLUSA PERLAS APEACH\n price_base: '275.0'\n price_sale: '689.0'\n img_product: 36BFE5D1-8FA5-48E2-B614-BAA567B51238.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001335'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 23:54:23.247811'\n updated_at: &12 2020-09-04 22:45:52.170321911 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1335'\n sku: BLU-1335\n name: BLS-0138\n description: BLUSA PERLAS APEACH\n price_base: '275.00'\n price_sale: '689.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 23:54:23.247811'\n updated_at: '2020-09-03 23:54:23.286724'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001335'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1335'\n type: *3\n value: 1335\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1335\n type: *7\n value: BLU-1335\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0138\n type: *8\n value: BLS-0138\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA PERLAS APEACH\n type: *6\n value: BLUSA PERLAS APEACH\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '275.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.275E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '689.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.689E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 36BFE5D1-8FA5-48E2-B614-BAA567B51238.jpeg\n type: *2\n value: 36BFE5D1-8FA5-48E2-B614-BAA567B51238.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001335'\n type: *2\n value: '0001335'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 23:54:23.247811'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 36BFE5D1-8FA5-48E2-B614-BAA567B51238.jpeg\n 3 El producto BLU-1335 fue modificado. 187.149.57.31 c8a818c3-8dab-4216-a759-7428149736cd 2020-09-04 22:45:52.206829 39357 1310 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1310'\n is_parent: false\n sku: BLU-1310\n name: BLS-0125\n description: BLUSA BLANCA TEJIDA\n price_base: '242.0'\n price_sale: '599.0'\n img_product: DD6347A3-8F84-4989-9685-5037B5EE9A6E.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001310'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 20:59:39.362321'\n updated_at: &12 2020-09-04 22:47:31.214316759 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1310'\n sku: BLU-1310\n name: BLS-0125\n description: BLUSA BLANCA TEJIDA\n price_base: '242.00'\n price_sale: '599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 20:59:39.362321'\n updated_at: '2020-09-03 20:59:39.395559'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001310'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1310'\n type: *3\n value: 1310\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1310\n type: *7\n value: BLU-1310\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0125\n type: *8\n value: BLS-0125\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA BLANCA TEJIDA\n type: *6\n value: BLUSA BLANCA TEJIDA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '242.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.242E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.599E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DD6347A3-8F84-4989-9685-5037B5EE9A6E.png\n type: *2\n value: DD6347A3-8F84-4989-9685-5037B5EE9A6E.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001310'\n type: *2\n value: '0001310'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 20:59:39.362321'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- DD6347A3-8F84-4989-9685-5037B5EE9A6E.png\n 3 El producto BLU-1310 fue modificado. 187.149.57.31 1157b4d3-7e53-4a0b-a723-237b08ebf2d7 2020-09-04 22:47:31.251715 39358 1315 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1315'\n is_parent: false\n sku: BLU-1315\n name: BLS-0127\n description: BLUSA GATITOS\n price_base: '143.0'\n price_sale: '369.0'\n img_product: 179C4BA8-F795-48D1-87A3-2F8E1AAB9586.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001315'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 21:49:54.652403'\n updated_at: &12 2020-09-04 22:48:57.998177062 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1315'\n sku: BLU-1315\n name: BLS-0127\n description: BLUSA GATITOS\n price_base: '143.00'\n price_sale: '369.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 21:49:54.652403'\n updated_at: '2020-09-03 21:49:54.692241'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001315'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1315'\n type: *3\n value: 1315\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1315\n type: *7\n value: BLU-1315\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0127\n type: *8\n value: BLS-0127\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA GATITOS\n type: *6\n value: BLUSA GATITOS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '143.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.143E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '369.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.369E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 179C4BA8-F795-48D1-87A3-2F8E1AAB9586.jpeg\n type: *2\n value: 179C4BA8-F795-48D1-87A3-2F8E1AAB9586.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001315'\n type: *2\n value: '0001315'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 21:49:54.652403'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 179C4BA8-F795-48D1-87A3-2F8E1AAB9586.jpeg\n 3 El producto BLU-1315 fue modificado. 187.149.57.31 002395e8-4fbf-4ff8-87f7-fed07c7f93af 2020-09-04 22:48:58.036015 39359 1322 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1322'\n is_parent: false\n sku: BLU-1322\n name: BLS-0128\n description: BLUSA AMOUR\n price_base: '220.0'\n price_sale: '499.0'\n img_product: 9F9D270A-3B13-4F4E-9CBC-61C445BF779D.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001322'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 22:37:55.413971'\n updated_at: &12 2020-09-04 22:49:44.868116304 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1322'\n sku: BLU-1322\n name: BLS-0128\n description: BLUSA AMOUR\n price_base: '220.00'\n price_sale: '499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 22:37:55.413971'\n updated_at: '2020-09-03 22:37:55.45223'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001322'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1322'\n type: *3\n value: 1322\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1322\n type: *7\n value: BLU-1322\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0128\n type: *8\n value: BLS-0128\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA AMOUR\n type: *6\n value: BLUSA AMOUR\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '220.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.22E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.499E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 9F9D270A-3B13-4F4E-9CBC-61C445BF779D.jpeg\n type: *2\n value: 9F9D270A-3B13-4F4E-9CBC-61C445BF779D.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001322'\n type: *2\n value: '0001322'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 22:37:55.413971'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 9F9D270A-3B13-4F4E-9CBC-61C445BF779D.jpeg\n 3 El producto BLU-1322 fue modificado. 187.149.57.31 a64fa759-7d90-4d9c-b340-795c4f1af815 2020-09-04 22:49:44.903888 39360 1320 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1320'\n is_parent: false\n sku: BLU-1320\n name: BLS-0128\n description: BLUSA DIVINE MOSTAZA\n price_base: '286.0'\n price_sale: '599.0'\n img_product: '03587AB6-7E77-497E-BC20-AA417DE63BE3.jpeg'\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001320'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 22:23:09.264433'\n updated_at: &12 2020-09-04 22:51:09.217405891 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1320'\n sku: BLU-1320\n name: BLS-0128\n description: BLUSA DIVINE MOSTAZA\n price_base: '286.00'\n price_sale: '599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 22:23:09.264433'\n updated_at: '2020-09-03 22:23:09.323776'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001320'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1320'\n type: *3\n value: 1320\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1320\n type: *7\n value: BLU-1320\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0128\n type: *8\n value: BLS-0128\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA DIVINE MOSTAZA\n type: *6\n value: BLUSA DIVINE MOSTAZA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '286.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.286E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.599E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: '03587AB6-7E77-497E-BC20-AA417DE63BE3.jpeg'\n type: *2\n value: '03587AB6-7E77-497E-BC20-AA417DE63BE3.jpeg'\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001320'\n type: *2\n value: '0001320'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 22:23:09.264433'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- '03587AB6-7E77-497E-BC20-AA417DE63BE3.jpeg'\n 3 El producto BLU-1320 fue modificado. 187.149.57.31 590e7840-62ae-4ec7-bdf4-ca2c6415dca5 2020-09-04 22:51:09.268407 39361 1323 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1323'\n is_parent: false\n sku: BLU-1323\n name: BLS-0129\n description: PLAYERA PRETTY RED\n price_base: '220.0'\n price_sale: '499.0'\n img_product: EDCB67B4-758C-4C42-B293-78C44928E047.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001323'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 22:41:52.96889'\n updated_at: &12 2020-09-04 22:52:29.707118606 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1323'\n sku: BLU-1323\n name: BLS-0129\n description: PLAYERA PRETTY RED\n price_base: '220.00'\n price_sale: '499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 22:41:52.96889'\n updated_at: '2020-09-03 22:41:53.005421'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001323'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1323'\n type: *3\n value: 1323\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1323\n type: *7\n value: BLU-1323\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0129\n type: *8\n value: BLS-0129\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PLAYERA PRETTY RED\n type: *6\n value: PLAYERA PRETTY RED\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '220.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.22E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.499E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: EDCB67B4-758C-4C42-B293-78C44928E047.jpeg\n type: *2\n value: EDCB67B4-758C-4C42-B293-78C44928E047.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001323'\n type: *2\n value: '0001323'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 22:41:52.96889'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- EDCB67B4-758C-4C42-B293-78C44928E047.jpeg\n 3 El producto BLU-1323 fue modificado. 187.149.57.31 94757c28-08be-4405-b120-e25a818598fa 2020-09-04 22:52:29.745575 39362 1314 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1314'\n is_parent: false\n sku: BLU-1314\n name: BLS-0126\n description: BLUSA CON HILO EN MANGA\n price_base: '198.0'\n price_sale: '499.0'\n img_product: image.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001314'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 21:46:59.433082'\n updated_at: &12 2020-09-04 22:53:36.803936955 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1314'\n sku: BLU-1314\n name: BLS-0126\n description: BLUSA CON HILO EN MANGA\n price_base: '198.00'\n price_sale: '499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 21:46:59.433082'\n updated_at: '2020-09-03 21:46:59.470711'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001314'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1314'\n type: *3\n value: 1314\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1314\n type: *7\n value: BLU-1314\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0126\n type: *8\n value: BLS-0126\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA CON HILO EN MANGA\n type: *6\n value: BLUSA CON HILO EN MANGA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '198.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.198E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.499E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: image.jpg\n type: *2\n value: image.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001314'\n type: *2\n value: '0001314'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 21:46:59.433082'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- image.jpg\n 3 El producto BLU-1314 fue modificado. 187.149.57.31 c09629e5-e8f7-48c7-9558-204a33177243 2020-09-04 22:53:36.846809 39363 1324 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1324'\n is_parent: false\n sku: BLU-1324\n name: BLS-0130\n description: 'PLAYERA FASHIONISTA '\n price_base: '286.0'\n price_sale: '589.0'\n img_product: A5ABE20F-D9D4-4F59-AD8D-1D7431280FD3.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001324'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 22:44:19.118221'\n updated_at: &12 2020-09-04 22:54:46.454494079 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1324'\n sku: BLU-1324\n name: BLS-0130\n description: 'PLAYERA FASHIONISTA '\n price_base: '286.00'\n price_sale: '589.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 22:44:19.118221'\n updated_at: '2020-09-03 22:44:19.156716'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001324'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1324'\n type: *3\n value: 1324\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1324\n type: *7\n value: BLU-1324\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0130\n type: *8\n value: BLS-0130\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'PLAYERA FASHIONISTA '\n type: *6\n value: 'PLAYERA FASHIONISTA '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '286.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.286E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '589.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.589E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: A5ABE20F-D9D4-4F59-AD8D-1D7431280FD3.png\n type: *2\n value: A5ABE20F-D9D4-4F59-AD8D-1D7431280FD3.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001324'\n type: *2\n value: '0001324'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 22:44:19.118221'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- A5ABE20F-D9D4-4F59-AD8D-1D7431280FD3.png\n 3 El producto BLU-1324 fue modificado. 187.149.57.31 6a9f4e38-6927-4df9-9514-0413c381016b 2020-09-04 22:54:46.492544 39364 1329 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1329'\n is_parent: false\n sku: BLU-1329\n name: BLS-0133\n description: BLUSA SIN MANGA BASICA\n price_base: '209.0'\n price_sale: '479.0'\n img_product: 834A47D4-4B29-4B99-B324-57319F5BDED9.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001329'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 23:22:11.371902'\n updated_at: &12 2020-09-04 22:55:40.602374875 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1329'\n sku: BLU-1329\n name: BLS-0133\n description: BLUSA SIN MANGA BASICA\n price_base: '209.00'\n price_sale: '479.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 23:22:11.371902'\n updated_at: '2020-09-03 23:22:11.408494'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001329'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1329'\n type: *3\n value: 1329\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1329\n type: *7\n value: BLU-1329\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0133\n type: *8\n value: BLS-0133\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA SIN MANGA BASICA\n type: *6\n value: BLUSA SIN MANGA BASICA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '209.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.209E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '479.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.479E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 834A47D4-4B29-4B99-B324-57319F5BDED9.jpeg\n type: *2\n value: 834A47D4-4B29-4B99-B324-57319F5BDED9.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001329'\n type: *2\n value: '0001329'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 23:22:11.371902'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 834A47D4-4B29-4B99-B324-57319F5BDED9.jpeg\n 3 El producto BLU-1329 fue modificado. 187.149.57.31 b26fc5da-b5a1-4fa4-a5a0-8acd429d8194 2020-09-04 22:55:40.645914 39365 1327 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1327'\n is_parent: false\n sku: BLU-1327\n name: BLS-0131\n description: BLUSA BASICA NYLON\n price_base: '209.0'\n price_sale: '469.0'\n img_product: 50C7578B-482A-4AAD-8DDC-0E4FFAAC83A8.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001327'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 23:17:20.778363'\n updated_at: &12 2020-09-04 22:56:06.701388747 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1327'\n sku: BLU-1327\n name: BLS-0131\n description: BLUSA BASICA NYLON\n price_base: '209.00'\n price_sale: '469.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 23:17:20.778363'\n updated_at: '2020-09-03 23:17:20.815485'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001327'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1327'\n type: *3\n value: 1327\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1327\n type: *7\n value: BLU-1327\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0131\n type: *8\n value: BLS-0131\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA BASICA NYLON\n type: *6\n value: BLUSA BASICA NYLON\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '209.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.209E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '469.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.469E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 50C7578B-482A-4AAD-8DDC-0E4FFAAC83A8.jpeg\n type: *2\n value: 50C7578B-482A-4AAD-8DDC-0E4FFAAC83A8.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001327'\n type: *2\n value: '0001327'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 23:17:20.778363'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 50C7578B-482A-4AAD-8DDC-0E4FFAAC83A8.jpeg\n 3 El producto BLU-1327 fue modificado. 187.149.57.31 bec1119b-f0f9-42fc-89fb-892047979fa8 2020-09-04 22:56:06.750201 39366 1328 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1328'\n is_parent: false\n sku: BLU-1328\n name: BLS-0132\n description: BLUSA MARIPOSA Y GARABATOS CRUZADA\n price_base: '264.0'\n price_sale: '569.0'\n img_product: D5821CEB-3A97-41BE-95E3-F4B32001ECF0.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001328'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 23:20:07.728177'\n updated_at: &12 2020-09-04 22:56:34.548894280 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1328'\n sku: BLU-1328\n name: BLS-0132\n description: BLUSA MARIPOSA Y GARABATOS CRUZADA\n price_base: '264.00'\n price_sale: '569.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 23:20:07.728177'\n updated_at: '2020-09-03 23:20:07.766356'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001328'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1328'\n type: *3\n value: 1328\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1328\n type: *7\n value: BLU-1328\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0132\n type: *8\n value: BLS-0132\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA MARIPOSA Y GARABATOS CRUZADA\n type: *6\n value: BLUSA MARIPOSA Y GARABATOS CRUZADA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '264.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.264E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '569.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.569E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: D5821CEB-3A97-41BE-95E3-F4B32001ECF0.jpeg\n type: *2\n value: D5821CEB-3A97-41BE-95E3-F4B32001ECF0.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001328'\n type: *2\n value: '0001328'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 23:20:07.728177'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- D5821CEB-3A97-41BE-95E3-F4B32001ECF0.jpeg\n 3 El producto BLU-1328 fue modificado. 187.149.57.31 6b7372a5-23e4-45d4-8569-6a42ed27e412 2020-09-04 22:56:34.596667 39367 1331 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1331'\n is_parent: false\n sku: BLU-1331\n name: BLS-0134\n description: BLUSA LILA Y BLANCA\n price_base: '170.0'\n price_sale: '399.0'\n img_product: 3EDAA865-C268-4199-9023-F5BB3CC4FDBB.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001331'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 23:35:37.825261'\n updated_at: &12 2020-09-04 22:57:03.284173314 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1331'\n sku: BLU-1331\n name: BLS-0134\n description: BLUSA LILA Y BLANCA\n price_base: '170.00'\n price_sale: '399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 23:35:37.825261'\n updated_at: '2020-09-03 23:35:37.858352'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001331'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1331'\n type: *3\n value: 1331\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1331\n type: *7\n value: BLU-1331\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0134\n type: *8\n value: BLS-0134\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA LILA Y BLANCA\n type: *6\n value: BLUSA LILA Y BLANCA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '170.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.17E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.399E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 3EDAA865-C268-4199-9023-F5BB3CC4FDBB.jpeg\n type: *2\n value: 3EDAA865-C268-4199-9023-F5BB3CC4FDBB.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001331'\n type: *2\n value: '0001331'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 23:35:37.825261'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 3EDAA865-C268-4199-9023-F5BB3CC4FDBB.jpeg\n 3 El producto BLU-1331 fue modificado. 187.149.57.31 426256e5-95a1-41f7-8d8d-b9cf8d1cb3fb 2020-09-04 22:57:03.321109 39368 1332 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1332'\n is_parent: false\n sku: BLU-1332\n name: BLS-0135\n description: BLUSA ROSA CON COLORES Y MANGA DE GAZA,NEGRA Y BLANCA\n price_base: '214.0'\n price_sale: '499.0'\n img_product: 6D1D0417-69ED-4842-8593-ADB3EEA7EF0D.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001332'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 23:38:11.197118'\n updated_at: &12 2020-09-04 22:58:46.511097648 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1332'\n sku: BLU-1332\n name: BLS-0135\n description: BLUSA ROSA CON COLORES Y MANGA DE GAZA,NEGRA Y BLANCA\n price_base: '214.00'\n price_sale: '499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 23:38:11.197118'\n updated_at: '2020-09-03 23:38:11.232547'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001332'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1332'\n type: *3\n value: 1332\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1332\n type: *7\n value: BLU-1332\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0135\n type: *8\n value: BLS-0135\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA ROSA CON COLORES Y MANGA DE GAZA,NEGRA Y\n BLANCA\n type: *6\n value: BLUSA ROSA CON COLORES Y MANGA DE GAZA,NEGRA Y BLANCA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '214.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.214E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.499E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 6D1D0417-69ED-4842-8593-ADB3EEA7EF0D.png\n type: *2\n value: 6D1D0417-69ED-4842-8593-ADB3EEA7EF0D.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001332'\n type: *2\n value: '0001332'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 23:38:11.197118'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 6D1D0417-69ED-4842-8593-ADB3EEA7EF0D.png\n 3 El producto BLU-1332 fue modificado. 187.149.57.31 c7896a3f-1064-4a2a-8f55-75bcc33fc1b4 2020-09-04 22:58:46.55037 39369 1334 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1334'\n is_parent: false\n sku: BLU-1334\n name: BLS-0136\n description: BLUSA MICKEY ROJA Y NEGRA\n price_base: '187.0'\n price_sale: '489.0'\n img_product: image.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001334'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 23:51:41.378465'\n updated_at: &12 2020-09-04 23:00:28.065026942 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1334'\n sku: BLU-1334\n name: BLS-0136\n description: BLUSA MICKEY ROJA Y NEGRA\n price_base: '187.00'\n price_sale: '489.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 23:51:41.378465'\n updated_at: '2020-09-03 23:51:41.411373'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001334'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1334'\n type: *3\n value: 1334\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1334\n type: *7\n value: BLU-1334\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0136\n type: *8\n value: BLS-0136\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA MICKEY ROJA Y NEGRA\n type: *6\n value: BLUSA MICKEY ROJA Y NEGRA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '187.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.187E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '489.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.489E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: image.jpg\n type: *2\n value: image.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001334'\n type: *2\n value: '0001334'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 23:51:41.378465'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- image.jpg\n 3 El producto BLU-1334 fue modificado. 187.149.57.31 1fb60888-6c97-4fec-85f3-c9c5e9a2ef4a 2020-09-04 23:00:28.106524 39370 1314 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '1314'\n is_parent: false\n sku: BLU-1314\n name: BLS-0126\n description: BLUSA CON HILO EN MANGA\n price_base: '198.0'\n price_sale: '499.0'\n img_product: image.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001314'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 21:46:59.433082'\n updated_at: &12 2020-09-04 23:02:14.445239329 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1314'\n sku: BLU-1314\n name: BLS-0126\n description: BLUSA CON HILO EN MANGA\n price_base: '198.00'\n price_sale: '499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 21:46:59.433082'\n updated_at: '2020-09-04 22:53:36.803936'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001314'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: image.jpg\n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1314'\n type: *3\n value: 1314\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1314\n type: *7\n value: BLU-1314\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0126\n type: *8\n value: BLS-0126\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA CON HILO EN MANGA\n type: *6\n value: BLUSA CON HILO EN MANGA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '198.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.198E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.499E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: image.jpg\n type: *2\n value: image.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001314'\n type: *2\n value: '0001314'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 21:46:59.433082'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/image.jpg"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader51329040\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_image.jpg"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader51323040\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_image.jpg"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader51309900\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_image.jpg"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- image.jpg\n 4 El producto BLU-1314 fue modificado. 187.149.57.31 d0a451a0-4a52-47b0-9cdc-b6397ba59fd7 2020-09-04 23:02:14.501509 39371 1334 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '1334'\n is_parent: false\n sku: BLU-1334\n name: BLS-0136\n description: BLUSA MICKEY ROJA Y NEGRA\n price_base: '187.0'\n price_sale: '489.0'\n img_product: E56ECCC0-DDC3-45C6-AA24-391B11F1782C.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001334'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 23:51:41.378465'\n updated_at: &12 2020-09-04 23:04:34.088811850 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1334'\n sku: BLU-1334\n name: BLS-0136\n description: BLUSA MICKEY ROJA Y NEGRA\n price_base: '187.00'\n price_sale: '489.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 23:51:41.378465'\n updated_at: '2020-09-04 23:00:28.065026'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001334'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: image.jpg\n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1334'\n type: *3\n value: 1334\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1334\n type: *7\n value: BLU-1334\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0136\n type: *8\n value: BLS-0136\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA MICKEY ROJA Y NEGRA\n type: *6\n value: BLUSA MICKEY ROJA Y NEGRA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '187.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.187E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '489.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.489E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: E56ECCC0-DDC3-45C6-AA24-391B11F1782C.jpeg\n type: *2\n value: E56ECCC0-DDC3-45C6-AA24-391B11F1782C.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001334'\n type: *2\n value: '0001334'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 23:51:41.378465'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/image.jpg"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader51329040\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_image.jpg"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader51323040\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_image.jpg"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader51309900\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_image.jpg"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- E56ECCC0-DDC3-45C6-AA24-391B11F1782C.jpeg\n 4 El producto BLU-1334 fue modificado. 187.149.57.31 181c8ccc-3964-48a2-ac2a-9198d3ee77c8 2020-09-04 23:04:34.133705 39372 1314 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '1314'\n is_parent: false\n sku: BLU-1314\n name: BLS-0126\n description: BLUSA CON HILO EN MANGA\n price_base: '198.0'\n price_sale: '499.0'\n img_product: E7AF623B-F8D8-4062-9F32-8DE9B24BFDD4.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001314'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 21:46:59.433082'\n updated_at: &12 2020-09-04 23:07:27.690495184 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1314'\n sku: BLU-1314\n name: BLS-0126\n description: BLUSA CON HILO EN MANGA\n price_base: '198.00'\n price_sale: '499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 21:46:59.433082'\n updated_at: '2020-09-04 23:02:14.445239'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001314'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: image.jpg\n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1314'\n type: *3\n value: 1314\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1314\n type: *7\n value: BLU-1314\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0126\n type: *8\n value: BLS-0126\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA CON HILO EN MANGA\n type: *6\n value: BLUSA CON HILO EN MANGA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '198.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.198E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.499E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: E7AF623B-F8D8-4062-9F32-8DE9B24BFDD4.jpeg\n type: *2\n value: E7AF623B-F8D8-4062-9F32-8DE9B24BFDD4.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001314'\n type: *2\n value: '0001314'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 21:46:59.433082'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/image.jpg"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader51329040\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_image.jpg"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader51323040\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_image.jpg"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader51309900\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_image.jpg"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- E7AF623B-F8D8-4062-9F32-8DE9B24BFDD4.jpeg\n 5 El producto BLU-1314 fue modificado. 187.149.57.31 87691ca3-2af6-43bf-9963-6703b4140c2d 2020-09-04 23:07:27.736479 39373 1308 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1308'\n is_parent: false\n sku: BLU-1308\n name: BLS-0123\n description: PLAYERA MODEL\n price_base: '220.0'\n price_sale: '489.0'\n img_product: 3472120F-BA8C-4C51-85F1-F02508E232C4.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001308'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 20:54:06.650989'\n updated_at: &12 2020-09-04 23:08:20.550905085 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1308'\n sku: BLU-1308\n name: BLS-0123\n description: PLAYERA MODEL\n price_base: '220.00'\n price_sale: '489.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 20:54:06.650989'\n updated_at: '2020-09-03 20:54:06.689939'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001308'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1308'\n type: *3\n value: 1308\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1308\n type: *7\n value: BLU-1308\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0123\n type: *8\n value: BLS-0123\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PLAYERA MODEL\n type: *6\n value: PLAYERA MODEL\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '220.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.22E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '489.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.489E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 3472120F-BA8C-4C51-85F1-F02508E232C4.jpeg\n type: *2\n value: 3472120F-BA8C-4C51-85F1-F02508E232C4.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001308'\n type: *2\n value: '0001308'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 20:54:06.650989'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 3472120F-BA8C-4C51-85F1-F02508E232C4.jpeg\n 3 El producto BLU-1308 fue modificado. 187.149.57.31 7d0b3a35-03e3-42c4-9661-2bfcc2a9b202 2020-09-04 23:08:20.5942 39374 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-04 19:03:57.747764000 Z\n- &1 2020-09-04 19:54:20.831225000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-04 23:21:26.449878298 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 1806\n- 1807\n 3614 \N 189.186.101.127 33f1f0fc-1296-4e9f-9008-5e7f3a7f2343 2020-09-04 23:21:26.457127 39375 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1aJHb5355ZxWn1MoD4pk\n- wvzKjvD46x45GLjyy3sb\n 3615 \N 189.186.101.127 33f1f0fc-1296-4e9f-9008-5e7f3a7f2343 2020-09-04 23:21:26.474532 39376 1318 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1318'\n is_parent: false\n sku: PAN-1318\n name: PNT-0032\n description: 'PANTALON MCO CON PIEDRA '\n price_base: '462.0'\n price_sale: '999.0'\n img_product: 2CCC9074-60CC-43DC-B481-169205C4F9EE.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '8'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001318'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 22:02:25.339264'\n updated_at: &12 2020-09-04 23:23:00.540545816 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1318'\n sku: PAN-1318\n name: PNT-0032\n description: 'PANTALON MCO CON PIEDRA '\n price_base: '462.00'\n price_sale: '999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 22:02:25.339264'\n updated_at: '2020-09-03 22:02:25.376876'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001318'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '8'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1318'\n type: *3\n value: 1318\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAN-1318\n type: *7\n value: PAN-1318\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PNT-0032\n type: *8\n value: PNT-0032\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'PANTALON MCO CON PIEDRA '\n type: *6\n value: 'PANTALON MCO CON PIEDRA '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '462.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.462E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 2CCC9074-60CC-43DC-B481-169205C4F9EE.jpeg\n type: *2\n value: 2CCC9074-60CC-43DC-B481-169205C4F9EE.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '8'\n type: *3\n value: 8\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001318'\n type: *2\n value: '0001318'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 22:02:25.339264'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 2CCC9074-60CC-43DC-B481-169205C4F9EE.jpeg\n 3 El producto PAN-1318 fue modificado. 187.149.57.31 f290f80f-1278-4922-bd97-12ec1a08ccdc 2020-09-04 23:23:00.580818 39377 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-04 19:33:23.529812000 Z\n- &1 2020-09-04 22:10:40.222011000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-04 23:25:25.573793855 Z\nsign_in_count:\n- 229\n- 230\n 460 \N 187.149.57.31 fd332418-c37d-4010-a90d-fe91b3365015 2020-09-04 23:25:25.579608 39378 1 User \N \N 1 User \N update ---\nunique_session_id:\n- gv-mgfr1iLNxi-drpTpF\n- vyqx9TiuzzbjtMB4bEe_\n 461 \N 187.149.57.31 fd332418-c37d-4010-a90d-fe91b3365015 2020-09-04 23:25:25.593283 39379 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-04 00:36:27.326882000 Z\n- &1 2020-09-04 16:03:03.085382000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-04 23:38:01.589527638 Z\nsign_in_count:\n- 633\n- 634\n 1271 \N 187.149.57.31 7d1df65b-33ef-413b-a924-47362fe7aeb8 2020-09-04 23:38:01.595217 39380 2 User \N \N 2 User \N update ---\nunique_session_id:\n- HZ6h_Zeg5VsRaddcHwQt\n- "-5Q3vKQ7z552ffYcHMgq"\n 1272 \N 187.149.57.31 7d1df65b-33ef-413b-a924-47362fe7aeb8 2020-09-04 23:38:01.608863 39381 2861 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1042\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-09-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1360\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 e04dae80-40a3-4bc3-8815-8ba1ec3ff94d 2020-09-04 23:40:09.003722 39382 1852 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.57.31 e04dae80-40a3-4bc3-8815-8ba1ec3ff94d 2020-09-04 23:40:09.031244 39383 2861 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 f6fe20fd-6f97-4cb9-97cf-ecc58983b59f 2020-09-04 23:40:18.542042 39384 3832 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1042\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 2861\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1360\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1360 187.149.57.31 f6fe20fd-6f97-4cb9-97cf-ecc58983b59f 2020-09-04 23:40:18.565041 39385 2862 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1042\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-09-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1361\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 c4536e7c-4f38-488b-9974-df41daa17b40 2020-09-04 23:42:01.870593 39386 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 37 \N 187.149.57.31 c4536e7c-4f38-488b-9974-df41daa17b40 2020-09-04 23:42:01.898399 39387 2862 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 c8d7b35e-d7d8-4390-bb7d-c3fa734e517b 2020-09-04 23:42:37.269056 39388 3833 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1042\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 2862\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1361\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ANTICIPO DE APARTADO\n 1 movimiento de efectivo por venta con folio PV1-V-1361 187.149.57.31 c8d7b35e-d7d8-4390-bb7d-c3fa734e517b 2020-09-04 23:42:37.292582 39389 3834 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1042\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 2862\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1361\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ANTICIPO DE APARTADO\n 1 movimiento de efectivo por venta con folio PV1-V-1361 187.149.57.31 2b2fb8be-2461-4b21-a204-44331d4ec2a3 2020-09-04 23:42:47.832427 39390 1337 Product \N \N 2 User \N create ---\nsku: VES-1337\nname: VST-0119\ndescription: VESTIDO FLOREADO MULTICOLOR APEACH\nprice_base: !ruby/object:BigDecimal 18:0.4995E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1337 fue creado. 187.149.57.31 94701768-85e1-42d1-8702-338e8355e7e1 2020-09-04 23:45:12.251117 39391 1337 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001337'\n 2 \N 187.149.57.31 94701768-85e1-42d1-8702-338e8355e7e1 2020-09-04 23:45:12.285796 39392 2261 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1337\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 94701768-85e1-42d1-8702-338e8355e7e1 2020-09-04 23:45:12.312965 39393 374 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-149\namount: !ruby/object:BigDecimal 18:0.14985E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.14985E4\nobservations: ''\npurchase_date: 2020-09-04\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-149 por $ 1498.5 MXN creada. 187.149.57.31 71d499a1-b89d-4a6e-a44c-44c1b66b7248 2020-09-04 23:45:17.068341 39394 2261 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.57.31 71d499a1-b89d-4a6e-a44c-44c1b66b7248 2020-09-04 23:45:17.089279 39395 2863 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1042\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1362\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 2856759c-e9db-4401-9ef4-f0f8d3a6bd0e 2020-09-04 23:46:29.83794 39396 2261 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.57.31 2856759c-e9db-4401-9ef4-f0f8d3a6bd0e 2020-09-04 23:46:29.862413 39397 2863 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 c82fb1a2-bf9f-4c4a-80f5-f63444baade1 2020-09-04 23:46:33.623991 39398 3835 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1042\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2863\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1362\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1362 187.149.57.31 c82fb1a2-bf9f-4c4a-80f5-f63444baade1 2020-09-04 23:46:33.644062 39428 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-05 16:04:19.360262000 Z\n- &1 2020-09-05 16:10:03.723861000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-05 16:42:30.719716034 Z\nsign_in_count:\n- 233\n- 234\n 468 \N 187.149.57.31 bf5cd801-c374-495c-8bde-a7c88b4362a8 2020-09-05 16:42:30.737042 39399 330 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1042\nquantity: !ruby/object:BigDecimal 18:0.633E3\nstatus: 1\nobservations: "$518 AGUA (JAPAC) $15 MUDITO COOPERACION $100 IVAN POLICIA"\nexpense_date: 2020-09-04\nexpense_code: PV1-E-229\n 1 Egreso por 633.0 registrado 187.149.57.31 a56c60b1-ae03-49b9-8e9e-6b6a4c541120 2020-09-04 23:49:20.969811 39400 3836 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1042\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.633E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 330\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.57.31 a56c60b1-ae03-49b9-8e9e-6b6a4c541120 2020-09-04 23:49:20.993263 39401 1067 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1042\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6295E4\namount_out: !ruby/object:BigDecimal 18:0.663E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.41E4\ncash_fund: !ruby/object:BigDecimal 18:0.941E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5041E4\nobservations: HAY $320 MAS DE EFECTIVO EN CAJA, QUE SAMANTA ME DIO PARA TENER FERIA\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.57.31 b3894f35-fcaa-4931-a175-6921dc7ae92f 2020-09-05 00:04:45.150055 39402 1042 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.57.31 b3894f35-fcaa-4931-a175-6921dc7ae92f 2020-09-05 00:04:45.164411 39403 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-04 22:10:40.222011000 Z\n- &1 2020-09-04 23:25:25.573793000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-05 00:14:18.257083510 Z\nsign_in_count:\n- 230\n- 231\n 462 \N 187.149.57.31 137efb36-80f1-496f-b274-f4ac02a9b30a 2020-09-05 00:14:18.262573 39404 1 User \N \N 1 User \N update ---\nunique_session_id:\n- vyqx9TiuzzbjtMB4bEe_\n- cUKdcNS92JkoCmPYy_ti\n 463 \N 187.149.57.31 137efb36-80f1-496f-b274-f4ac02a9b30a 2020-09-05 00:14:18.275962 39405 1337 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1337'\n is_parent: false\n sku: VES-1337\n name: VST-0119\n description: VESTIDO FLOREADO MULTICOLOR APEACH\n price_base: '499.5'\n price_sale: '999.0'\n img_product: DF6245C0-1B59-48E1-AFE4-224A0B465468.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001337'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-04 23:45:12.239002'\n updated_at: &12 2020-09-05 00:15:46.219712647 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1337'\n sku: VES-1337\n name: VST-0119\n description: VESTIDO FLOREADO MULTICOLOR APEACH\n price_base: '499.50'\n price_sale: '999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-04 23:45:12.239002'\n updated_at: '2020-09-04 23:45:12.282952'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001337'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1337'\n type: *3\n value: 1337\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1337\n type: *7\n value: VES-1337\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0119\n type: *8\n value: VST-0119\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO FLOREADO MULTICOLOR APEACH\n type: *6\n value: VESTIDO FLOREADO MULTICOLOR APEACH\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '499.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DF6245C0-1B59-48E1-AFE4-224A0B465468.png\n type: *2\n value: DF6245C0-1B59-48E1-AFE4-224A0B465468.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001337'\n type: *2\n value: '0001337'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-04 23:45:12.239002'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- DF6245C0-1B59-48E1-AFE4-224A0B465468.png\n 3 El producto VES-1337 fue modificado. 187.149.57.31 4731cdc0-acd1-4370-becc-0424f77e40e7 2020-09-05 00:15:46.273216 39406 1337 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '1337'\n is_parent: false\n sku: VES-1337\n name: VST-0119\n description: VESTIDO FLOREADO MULTICOLOR APEACH\n price_base: '499.5'\n price_sale: '999.0'\n img_product: DF6245C0-1B59-48E1-AFE4-224A0B465468.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001337'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-04 23:45:12.239002'\n updated_at: &12 2020-09-05 00:16:20.714848307 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1337'\n sku: VES-1337\n name: VST-0119\n description: VESTIDO FLOREADO MULTICOLOR APEACH\n price_base: '499.50'\n price_sale: '999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-04 23:45:12.239002'\n updated_at: '2020-09-05 00:15:46.219712'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001337'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: DF6245C0-1B59-48E1-AFE4-224A0B465468.png\n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1337'\n type: *3\n value: 1337\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1337\n type: *7\n value: VES-1337\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0119\n type: *8\n value: VST-0119\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO FLOREADO MULTICOLOR APEACH\n type: *6\n value: VESTIDO FLOREADO MULTICOLOR APEACH\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '499.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DF6245C0-1B59-48E1-AFE4-224A0B465468.png\n type: *2\n value: DF6245C0-1B59-48E1-AFE4-224A0B465468.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001337'\n type: *2\n value: '0001337'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-04 23:45:12.239002'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/DF6245C0-1B59-48E1-AFE4-224A0B465468.png"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader51329040\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_DF6245C0-1B59-48E1-AFE4-224A0B465468.png"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader51323040\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_DF6245C0-1B59-48E1-AFE4-224A0B465468.png"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader51309900\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_DF6245C0-1B59-48E1-AFE4-224A0B465468.png"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- DF6245C0-1B59-48E1-AFE4-224A0B465468.png\n 4 El producto VES-1337 fue modificado. 187.149.57.31 7028a3da-ce63-4cbc-8824-078bec826d03 2020-09-05 00:16:20.76359 39407 1337 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '1337'\n is_parent: false\n sku: VES-1337\n name: VST-0119\n description: VESTIDO FLOREADO MULTICOLOR APEACH\n price_base: '499.5'\n price_sale: '999.0'\n img_product: DF6245C0-1B59-48E1-AFE4-224A0B465468.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001337'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-04 23:45:12.239002'\n updated_at: &12 2020-09-05 00:16:52.777431949 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1337'\n sku: VES-1337\n name: VST-0119\n description: VESTIDO FLOREADO MULTICOLOR APEACH\n price_base: '499.50'\n price_sale: '999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-04 23:45:12.239002'\n updated_at: '2020-09-05 00:16:20.714848'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001337'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: DF6245C0-1B59-48E1-AFE4-224A0B465468.png\n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1337'\n type: *3\n value: 1337\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1337\n type: *7\n value: VES-1337\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0119\n type: *8\n value: VST-0119\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO FLOREADO MULTICOLOR APEACH\n type: *6\n value: VESTIDO FLOREADO MULTICOLOR APEACH\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '499.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DF6245C0-1B59-48E1-AFE4-224A0B465468.png\n type: *2\n value: DF6245C0-1B59-48E1-AFE4-224A0B465468.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001337'\n type: *2\n value: '0001337'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-04 23:45:12.239002'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/DF6245C0-1B59-48E1-AFE4-224A0B465468.png"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader51329040\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_DF6245C0-1B59-48E1-AFE4-224A0B465468.png"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader51323040\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_DF6245C0-1B59-48E1-AFE4-224A0B465468.png"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader51309900\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_DF6245C0-1B59-48E1-AFE4-224A0B465468.png"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- DF6245C0-1B59-48E1-AFE4-224A0B465468.png\n 5 El producto VES-1337 fue modificado. 187.149.57.31 a9ebd3d2-85f4-4df0-876d-2da6f5c1b12b 2020-09-05 00:16:52.830728 39408 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-04 17:30:19.566642000 Z\n- &1 2020-09-04 18:17:35.680965000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-05 01:13:21.414832871 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945512\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 273\n- 274\n 549 \N 189.186.101.127 ac34d0c3-8464-4c72-bc68-ab85c34052a8 2020-09-05 01:13:21.421955 39409 21 User \N \N 21 User \N update ---\nunique_session_id:\n- rK-zU9GYwyuVekgqgJRU\n- jPX544JMPML3oX1aPPgx\n 550 \N 189.186.101.127 ac34d0c3-8464-4c72-bc68-ab85c34052a8 2020-09-05 01:13:21.437306 39410 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-04 19:54:20.831225000 Z\n- &1 2020-09-04 23:21:26.449878000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-05 01:15:53.375525586 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 1807\n- 1808\n 3616 \N 189.186.101.127 b983a9d0-c73e-482f-8aa0-95142b2be2f8 2020-09-05 01:15:53.38224 39411 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wvzKjvD46x45GLjyy3sb\n- Kx__LJ2xYcy7RX4LMshn\n 3617 \N 189.186.101.127 b983a9d0-c73e-482f-8aa0-95142b2be2f8 2020-09-05 01:15:53.417529 39412 1068 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1043\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.13345E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.65E4\ncash_fund: !ruby/object:BigDecimal 18:0.1158E4\nphysical_cash: !ruby/object:BigDecimal 18:0.7658E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.101.127 774b75be-9665-467d-8f4f-0d42d972ab3e 2020-09-05 01:20:13.821221 39413 1043 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.101.127 774b75be-9665-467d-8f4f-0d42d972ab3e 2020-09-05 01:20:13.841192 39414 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-04 23:21:26.449878000 Z\n- &1 2020-09-05 01:15:53.375525000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-05 03:05:01.127121614 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539303\n mask_addr: 4294967295\nsign_in_count:\n- 1808\n- 1809\n 3618 \N 177.228.116.167 c16a91e5-6826-40bb-974e-0f416da2a7c7 2020-09-05 03:05:01.133961 39415 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Kx__LJ2xYcy7RX4LMshn\n- zYAaQ_bWUt2GKzXShM5j\n 3619 \N 177.228.116.167 c16a91e5-6826-40bb-974e-0f416da2a7c7 2020-09-05 03:05:01.149923 39416 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-04 23:25:25.573793000 Z\n- &1 2020-09-05 00:14:18.257083000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-05 16:04:19.360262952 Z\nsign_in_count:\n- 231\n- 232\n 464 \N 187.149.57.31 20e6cab3-3d42-429e-ba0d-1b08665a3c08 2020-09-05 16:04:19.393211 39417 1 User \N \N 1 User \N update ---\nunique_session_id:\n- cUKdcNS92JkoCmPYy_ti\n- 6qMQa_GFH7tou79QnBA_\n 465 \N 187.149.57.31 20e6cab3-3d42-429e-ba0d-1b08665a3c08 2020-09-05 16:04:19.416377 39418 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-05 00:14:18.257083000 Z\n- &1 2020-09-05 16:04:19.360262000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-05 16:10:03.723861486 Z\nsign_in_count:\n- 232\n- 233\n 466 \N 187.149.57.31 b027920c-13a3-4704-8554-6dcf4635b645 2020-09-05 16:10:03.729491 39419 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 6qMQa_GFH7tou79QnBA_\n- z-Yjf2bRENo3RqEsyfYr\n 467 \N 187.149.57.31 b027920c-13a3-4704-8554-6dcf4635b645 2020-09-05 16:10:03.742742 39420 1312 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1312'\n is_parent: false\n sku: FAL-1312\n name: FLD-0031\n description: FALDA MEZCLILLA DESHILACHADA\n price_base: '286.0'\n price_sale: '699.0'\n img_product: 3E7B35C1-5825-4C63-83BE-808B0FB4104C.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001312'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 21:35:07.423055'\n updated_at: &12 2020-09-05 16:11:46.738365567 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1312'\n sku: FAL-1312\n name: FLD-0031\n description: FALDA MEZCLILLA DESHILACHADA\n price_base: '286.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 21:35:07.423055'\n updated_at: '2020-09-03 21:35:07.474166'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001312'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1312'\n type: *3\n value: 1312\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-1312\n type: *7\n value: FAL-1312\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0031\n type: *8\n value: FLD-0031\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA MEZCLILLA DESHILACHADA\n type: *6\n value: FALDA MEZCLILLA DESHILACHADA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '286.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.286E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 3E7B35C1-5825-4C63-83BE-808B0FB4104C.png\n type: *2\n value: 3E7B35C1-5825-4C63-83BE-808B0FB4104C.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001312'\n type: *2\n value: '0001312'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 21:35:07.423055'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 3E7B35C1-5825-4C63-83BE-808B0FB4104C.png\n 3 El producto FAL-1312 fue modificado. 187.149.57.31 b38055b5-00f8-481e-a109-4323cc69cff2 2020-09-05 16:11:46.784987 39421 1316 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1316'\n is_parent: false\n sku: FAL-1316\n name: FLD-0032\n description: FALDA PLISADA BLANCA\n price_base: '242.0'\n price_sale: '649.0'\n img_product: 93FB7413-B79E-4DDD-B77B-59F23F4288A8.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001316'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 21:52:28.181609'\n updated_at: &12 2020-09-05 16:12:50.714490028 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1316'\n sku: FAL-1316\n name: FLD-0032\n description: FALDA PLISADA BLANCA\n price_base: '242.00'\n price_sale: '649.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 21:52:28.181609'\n updated_at: '2020-09-03 21:52:28.214326'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001316'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1316'\n type: *3\n value: 1316\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-1316\n type: *7\n value: FAL-1316\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0032\n type: *8\n value: FLD-0032\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA PLISADA BLANCA\n type: *6\n value: FALDA PLISADA BLANCA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '242.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.242E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '649.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.649E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 93FB7413-B79E-4DDD-B77B-59F23F4288A8.jpeg\n type: *2\n value: 93FB7413-B79E-4DDD-B77B-59F23F4288A8.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001316'\n type: *2\n value: '0001316'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 21:52:28.181609'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 93FB7413-B79E-4DDD-B77B-59F23F4288A8.jpeg\n 3 El producto FAL-1316 fue modificado. 187.149.57.31 a3567d55-3756-4d82-8a91-27577041795d 2020-09-05 16:12:50.768298 39422 1317 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1317'\n is_parent: false\n sku: FAL-1317\n name: FLD-0033\n description: FALDA PLISADA MCO CON CINTO\n price_base: '335.5'\n price_sale: '799.0'\n img_product: EE4B2BA4-4D6B-4F41-A619-D3835902E34E.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001317'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 21:57:04.932076'\n updated_at: &12 2020-09-05 16:14:06.996605705 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1317'\n sku: FAL-1317\n name: FLD-0033\n description: FALDA PLISADA MCO CON CINTO\n price_base: '335.50'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 21:57:04.932076'\n updated_at: '2020-09-03 21:57:04.974119'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001317'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1317'\n type: *3\n value: 1317\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-1317\n type: *7\n value: FAL-1317\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0033\n type: *8\n value: FLD-0033\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA PLISADA MCO CON CINTO\n type: *6\n value: FALDA PLISADA MCO CON CINTO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '335.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3355E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: EE4B2BA4-4D6B-4F41-A619-D3835902E34E.png\n type: *2\n value: EE4B2BA4-4D6B-4F41-A619-D3835902E34E.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001317'\n type: *2\n value: '0001317'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 21:57:04.932076'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- EE4B2BA4-4D6B-4F41-A619-D3835902E34E.png\n 3 El producto FAL-1317 fue modificado. 187.149.57.31 5e015a35-fef0-485c-8e49-50ff0d466819 2020-09-05 16:14:07.038584 39423 1333 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1333'\n is_parent: false\n sku: FAL-1333\n name: FLD-0035\n description: FALDA NEGRA DAZZ\n price_base: '280.0'\n price_sale: '629.0'\n img_product: 75186064-E445-4B2A-B4C5-10ECD34E53F0.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001333'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 23:41:20.233833'\n updated_at: &12 2020-09-05 16:15:30.103827057 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1333'\n sku: FAL-1333\n name: FLD-0035\n description: FALDA NEGRA DAZZ\n price_base: '280.00'\n price_sale: '629.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 23:41:20.233833'\n updated_at: '2020-09-03 23:41:20.270899'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001333'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1333'\n type: *3\n value: 1333\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-1333\n type: *7\n value: FAL-1333\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0035\n type: *8\n value: FLD-0035\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA NEGRA DAZZ\n type: *6\n value: FALDA NEGRA DAZZ\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '280.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.28E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '629.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.629E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 75186064-E445-4B2A-B4C5-10ECD34E53F0.jpeg\n type: *2\n value: 75186064-E445-4B2A-B4C5-10ECD34E53F0.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001333'\n type: *2\n value: '0001333'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 23:41:20.233833'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 75186064-E445-4B2A-B4C5-10ECD34E53F0.jpeg\n 3 El producto FAL-1333 fue modificado. 187.149.57.31 e48e2d84-b9f5-4707-8b45-2611d956ed7b 2020-09-05 16:15:30.144895 39424 1321 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1321'\n is_parent: false\n sku: FAL-1321\n name: FLD-0034\n description: FALDA PIEL CON ENCAJE\n price_base: '308.0'\n price_sale: '749.0'\n img_product: ACA771A3-D528-43F8-88A4-595C14A67418.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001321'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 22:26:21.106994'\n updated_at: &12 2020-09-05 16:22:21.231431769 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1321'\n sku: FAL-1321\n name: FLD-0034\n description: FALDA PIEL CON ENCAJE\n price_base: '308.00'\n price_sale: '749.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 22:26:21.106994'\n updated_at: '2020-09-03 22:26:21.149889'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001321'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1321'\n type: *3\n value: 1321\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-1321\n type: *7\n value: FAL-1321\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0034\n type: *8\n value: FLD-0034\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: FALDA PIEL CON ENCAJE\n type: *6\n value: FALDA PIEL CON ENCAJE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '308.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.308E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '749.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.749E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: ACA771A3-D528-43F8-88A4-595C14A67418.jpeg\n type: *2\n value: ACA771A3-D528-43F8-88A4-595C14A67418.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001321'\n type: *2\n value: '0001321'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 22:26:21.106994'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- ACA771A3-D528-43F8-88A4-595C14A67418.jpeg\n 3 El producto FAL-1321 fue modificado. 187.149.57.31 d65fb352-6a57-48d6-9d2a-eac3a24d4e7a 2020-09-05 16:22:21.274957 39425 1304 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1304'\n is_parent: false\n sku: PAN-1304\n name: PNT-0030\n description: PANTALON PIEL EVENT\n price_base: '243.65'\n price_sale: '599.0'\n img_product: F8A1806E-1537-4533-A878-769DD06C54C0.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '8'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001304'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 20:34:31.376411'\n updated_at: &12 2020-09-05 16:23:48.304015815 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1304'\n sku: PAN-1304\n name: PNT-0030\n description: PANTALON PIEL EVENT\n price_base: '243.65'\n price_sale: '599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 20:34:31.376411'\n updated_at: '2020-09-03 20:34:31.433544'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001304'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '8'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1304'\n type: *3\n value: 1304\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAN-1304\n type: *7\n value: PAN-1304\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PNT-0030\n type: *8\n value: PNT-0030\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTALON PIEL EVENT\n type: *6\n value: PANTALON PIEL EVENT\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '243.65'\n type: *1\n value: !ruby/object:BigDecimal 18:0.24365E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.599E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: F8A1806E-1537-4533-A878-769DD06C54C0.jpeg\n type: *2\n value: F8A1806E-1537-4533-A878-769DD06C54C0.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '8'\n type: *3\n value: 8\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001304'\n type: *2\n value: '0001304'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 20:34:31.376411'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- F8A1806E-1537-4533-A878-769DD06C54C0.jpeg\n 3 El producto PAN-1304 fue modificado. 187.149.57.31 6c9c3938-9e03-481e-be49-2dc9b562cba1 2020-09-05 16:23:48.346726 39426 1313 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1313'\n is_parent: false\n sku: PAN-1313\n name: PNT-0031\n description: 'PANTALON DE VESTIR CON CINTO FLOREADO '\n price_base: '308.0'\n price_sale: '769.0'\n img_product: 9DB6E71B-722C-4D97-8745-14D135BE4FFC.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '8'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001313'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 21:38:59.141472'\n updated_at: &12 2020-09-05 16:28:02.361363673 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1313'\n sku: PAN-1313\n name: PNT-0031\n description: 'PANTALON DE VESTIR CON CINTO FLOREADO '\n price_base: '308.00'\n price_sale: '769.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 21:38:59.141472'\n updated_at: '2020-09-03 21:38:59.176065'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001313'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '8'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1313'\n type: *3\n value: 1313\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAN-1313\n type: *7\n value: PAN-1313\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PNT-0031\n type: *8\n value: PNT-0031\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'PANTALON DE VESTIR CON CINTO FLOREADO '\n type: *6\n value: 'PANTALON DE VESTIR CON CINTO FLOREADO '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '308.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.308E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '769.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.769E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 9DB6E71B-722C-4D97-8745-14D135BE4FFC.png\n type: *2\n value: 9DB6E71B-722C-4D97-8745-14D135BE4FFC.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '8'\n type: *3\n value: 8\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001313'\n type: *2\n value: '0001313'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 21:38:59.141472'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 9DB6E71B-722C-4D97-8745-14D135BE4FFC.png\n 3 El producto PAN-1313 fue modificado. 187.149.57.31 fe4bbc78-c173-403d-b4b2-0c815d8ec9a3 2020-09-05 16:28:02.40658 39427 1330 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1330'\n is_parent: false\n sku: PAN-1330\n name: PNT-0033\n description: PANTALON MEZCLILLA\n price_base: '308.0'\n price_sale: '699.0'\n img_product: E731A917-E745-479E-8A61-04F638A6DC7B.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '8'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001330'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-03 23:28:38.880253'\n updated_at: &12 2020-09-05 16:31:09.392991166 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1330'\n sku: PAN-1330\n name: PNT-0033\n description: PANTALON MEZCLILLA\n price_base: '308.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-03 23:28:38.880253'\n updated_at: '2020-09-03 23:28:38.915562'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001330'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '8'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1330'\n type: *3\n value: 1330\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAN-1330\n type: *7\n value: PAN-1330\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PNT-0033\n type: *8\n value: PNT-0033\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTALON MEZCLILLA\n type: *6\n value: PANTALON MEZCLILLA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '308.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.308E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: E731A917-E745-479E-8A61-04F638A6DC7B.png\n type: *2\n value: E731A917-E745-479E-8A61-04F638A6DC7B.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '8'\n type: *3\n value: 8\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001330'\n type: *2\n value: '0001330'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-03 23:28:38.880253'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- E731A917-E745-479E-8A61-04F638A6DC7B.png\n 3 El producto PAN-1330 fue modificado. 187.149.57.31 3a63d22f-d8c0-4085-b801-8611348001fd 2020-09-05 16:31:09.436241 39429 1 User \N \N 1 User \N update ---\nunique_session_id:\n- z-Yjf2bRENo3RqEsyfYr\n- y7j6sGz_9NhHsxfgXvAm\n 469 \N 187.149.57.31 bf5cd801-c374-495c-8bde-a7c88b4362a8 2020-09-05 16:42:30.750615 39430 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-04 16:03:03.085382000 Z\n- &1 2020-09-04 23:38:01.589527000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-05 16:43:04.506757925 Z\nsign_in_count:\n- 634\n- 635\n 1273 \N 187.149.57.31 329f3dc6-15b6-483a-b7b7-a5777144150c 2020-09-05 16:43:04.51468 39431 2 User \N \N 2 User \N update ---\nunique_session_id:\n- "-5Q3vKQ7z552ffYcHMgq"\n- xME42D9Zvpv_xHPDSxbm\n 1274 \N 187.149.57.31 329f3dc6-15b6-483a-b7b7-a5777144150c 2020-09-05 16:43:04.533684 39432 1338 Product \N \N 2 User \N create ---\nsku: VES-1338\nname: Vst-0120\ndescription: Vestido blanco floreado Apeach\nprice_base: !ruby/object:BigDecimal 18:0.363E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1338 fue creado. 187.149.57.31 3215e3f2-6be4-4489-87b4-d1326a4b87ce 2020-09-05 16:47:02.633772 39433 1338 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001338'\n 2 \N 187.149.57.31 3215e3f2-6be4-4489-87b4-d1326a4b87ce 2020-09-05 16:47:02.670015 39434 2262 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1338\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 3215e3f2-6be4-4489-87b4-d1326a4b87ce 2020-09-05 16:47:02.698799 39435 1339 Product \N \N 2 User \N create ---\nsku: BLU-1339\nname: Bls-0139\ndescription: 'Pantiblusa de colores '\nprice_base: !ruby/object:BigDecimal 18:0.209E3\nprice_sale: !ruby/object:BigDecimal 18:0.529E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1339 fue creado. 187.149.57.31 1bf228e7-fea7-488b-8965-209ef9692b14 2020-09-05 16:50:41.592433 39436 1339 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001339'\n 2 \N 187.149.57.31 1bf228e7-fea7-488b-8965-209ef9692b14 2020-09-05 16:50:41.618195 39437 2263 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1339\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 1bf228e7-fea7-488b-8965-209ef9692b14 2020-09-05 16:50:41.64301 39438 375 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-150\namount: !ruby/object:BigDecimal 18:0.2343E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2343E4\nobservations: ''\npurchase_date: 2020-09-05\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-150 por $ 2343.0 MXN creada. 187.149.57.31 cc911aaf-aa7c-4152-83dd-588c4792987a 2020-09-05 16:50:56.746275 39439 2262 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.57.31 cc911aaf-aa7c-4152-83dd-588c4792987a 2020-09-05 16:50:56.769107 39440 2263 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.57.31 cc911aaf-aa7c-4152-83dd-588c4792987a 2020-09-05 16:50:56.804518 39441 376 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-150\namount: !ruby/object:BigDecimal 18:0.2343E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2343E4\nobservations: ''\npurchase_date: 2020-09-05\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-150 por $ 2343.0 MXN creada. 187.149.57.31 c80e74aa-0675-407c-a597-c77518a0d8e7 2020-09-05 16:50:57.353124 39442 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-04 23:38:01.589527000 Z\n- &1 2020-09-05 16:43:04.506757000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-05 16:57:21.465797772 Z\nsign_in_count:\n- 635\n- 636\n 1275 \N 187.149.57.31 239bc7a9-2887-4eab-8dd0-f21d53eaccb4 2020-09-05 16:57:21.471447 39443 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xME42D9Zvpv_xHPDSxbm\n- uE1i1eBTN3aoEfQBYDD4\n 1276 \N 187.149.57.31 239bc7a9-2887-4eab-8dd0-f21d53eaccb4 2020-09-05 16:57:21.485373 39444 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-05 16:10:03.723861000 Z\n- &1 2020-09-05 16:42:30.719716000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-05 16:58:08.066814531 Z\nsign_in_count:\n- 234\n- 235\n 470 \N 187.149.57.31 74f18e43-79bb-40bf-82ba-cb12250e0af4 2020-09-05 16:58:08.075136 39445 1 User \N \N 1 User \N update ---\nunique_session_id:\n- y7j6sGz_9NhHsxfgXvAm\n- Pfdavhh7BeyRy4d3YWM1\n 471 \N 187.149.57.31 74f18e43-79bb-40bf-82ba-cb12250e0af4 2020-09-05 16:58:08.093555 39446 1338 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1338'\n is_parent: false\n sku: VES-1338\n name: Vst-0120\n description: Vestido blanco floreado Apeach\n price_base: '363.0'\n price_sale: '899.0'\n img_product: 01520DE2-71AC-4C29-9F85-1C05E991F942.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001338'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-05 16:47:02.621086'\n updated_at: &12 2020-09-05 16:59:26.984913199 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1338'\n sku: VES-1338\n name: Vst-0120\n description: Vestido blanco floreado Apeach\n price_base: '363.00'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-05 16:47:02.621086'\n updated_at: '2020-09-05 16:47:02.667424'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001338'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1338'\n type: *3\n value: 1338\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1338\n type: *7\n value: VES-1338\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: Vst-0120\n type: *8\n value: Vst-0120\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: Vestido blanco floreado Apeach\n type: *6\n value: Vestido blanco floreado Apeach\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '363.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.363E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 01520DE2-71AC-4C29-9F85-1C05E991F942.png\n type: *2\n value: 01520DE2-71AC-4C29-9F85-1C05E991F942.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001338'\n type: *2\n value: '0001338'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-05 16:47:02.621086'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 01520DE2-71AC-4C29-9F85-1C05E991F942.png\n 3 El producto VES-1338 fue modificado. 187.149.57.31 9b558e2b-ab78-4330-8658-e358b2cd7a4e 2020-09-05 16:59:27.026556 39447 1339 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1339'\n is_parent: false\n sku: BLU-1339\n name: Bls-0139\n description: 'Pantiblusa de colores '\n price_base: '209.0'\n price_sale: '529.0'\n img_product: 439646D8-3DD1-404A-ADC4-83776E26976E.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001339'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-05 16:50:41.581561'\n updated_at: &12 2020-09-05 17:00:15.029324435 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1339'\n sku: BLU-1339\n name: Bls-0139\n description: 'Pantiblusa de colores '\n price_base: '209.00'\n price_sale: '529.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-05 16:50:41.581561'\n updated_at: '2020-09-05 16:50:41.615721'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001339'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1339'\n type: *3\n value: 1339\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1339\n type: *7\n value: BLU-1339\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: Bls-0139\n type: *8\n value: Bls-0139\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'Pantiblusa de colores '\n type: *6\n value: 'Pantiblusa de colores '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '209.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.209E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '529.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.529E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 439646D8-3DD1-404A-ADC4-83776E26976E.jpeg\n type: *2\n value: 439646D8-3DD1-404A-ADC4-83776E26976E.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001339'\n type: *2\n value: '0001339'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-05 16:50:41.581561'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 439646D8-3DD1-404A-ADC4-83776E26976E.jpeg\n 3 El producto BLU-1339 fue modificado. 187.149.57.31 f55c19bc-8621-48ea-8605-20c2535520bf 2020-09-05 17:00:15.070129 39448 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-04 18:17:35.680965000 Z\n- &1 2020-09-05 01:13:21.414832000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-05 18:45:51.448561779 Z\nsign_in_count:\n- 274\n- 275\n 551 \N 189.186.101.127 496a49f2-26b5-48d2-ba52-c87b88c150cd 2020-09-05 18:45:51.455328 39449 21 User \N \N 21 User \N update ---\nunique_session_id:\n- jPX544JMPML3oX1aPPgx\n- 526UC-KmRg1W3uyrTshi\n 552 \N 189.186.101.127 496a49f2-26b5-48d2-ba52-c87b88c150cd 2020-09-05 18:45:51.469771 39450 377 Purchase \N \N 21 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-87\namount: !ruby/object:BigDecimal 18:0.23065E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.23065E5\nobservations: ''\npurchase_date: 2020-09-05\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-87 por $ 23065.0 MXN creada. 189.186.101.127 e9ce7e33-bbe7-4084-a79f-2bc8fc7e948b 2020-09-05 20:03:07.130755 39451 2264 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1312\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 e9ce7e33-bbe7-4084-a79f-2bc8fc7e948b 2020-09-05 20:03:07.155996 39452 2265 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1313\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 e9ce7e33-bbe7-4084-a79f-2bc8fc7e948b 2020-09-05 20:03:07.181053 39453 2266 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1314\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 e9ce7e33-bbe7-4084-a79f-2bc8fc7e948b 2020-09-05 20:03:07.205602 39454 2267 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1315\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 e9ce7e33-bbe7-4084-a79f-2bc8fc7e948b 2020-09-05 20:03:07.233146 39455 2268 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1316\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 e9ce7e33-bbe7-4084-a79f-2bc8fc7e948b 2020-09-05 20:03:07.257889 39456 2269 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1317\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 e9ce7e33-bbe7-4084-a79f-2bc8fc7e948b 2020-09-05 20:03:07.282368 39457 2270 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1320\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 e9ce7e33-bbe7-4084-a79f-2bc8fc7e948b 2020-09-05 20:03:07.305973 39458 2271 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1321\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 e9ce7e33-bbe7-4084-a79f-2bc8fc7e948b 2020-09-05 20:03:07.330255 39459 2272 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1322\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 e9ce7e33-bbe7-4084-a79f-2bc8fc7e948b 2020-09-05 20:03:07.358682 39460 2273 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1325\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 e9ce7e33-bbe7-4084-a79f-2bc8fc7e948b 2020-09-05 20:03:07.382008 39461 2274 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1326\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 e9ce7e33-bbe7-4084-a79f-2bc8fc7e948b 2020-09-05 20:03:07.404397 39462 2275 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1327\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.12E2\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 e9ce7e33-bbe7-4084-a79f-2bc8fc7e948b 2020-09-05 20:03:07.427113 39463 2276 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1328\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 e9ce7e33-bbe7-4084-a79f-2bc8fc7e948b 2020-09-05 20:03:07.450553 39464 2277 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1329\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 e9ce7e33-bbe7-4084-a79f-2bc8fc7e948b 2020-09-05 20:03:07.474001 39465 2278 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1330\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 e9ce7e33-bbe7-4084-a79f-2bc8fc7e948b 2020-09-05 20:03:07.505496 39466 2279 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1331\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 e9ce7e33-bbe7-4084-a79f-2bc8fc7e948b 2020-09-05 20:03:07.54065 39467 2280 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1332\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.9E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 e9ce7e33-bbe7-4084-a79f-2bc8fc7e948b 2020-09-05 20:03:07.574982 39468 2281 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1334\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 e9ce7e33-bbe7-4084-a79f-2bc8fc7e948b 2020-09-05 20:03:07.610338 39469 1044 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1158E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1158.0 189.186.101.127 ff4e0dc0-b667-4a9f-bd44-fd6cfaa5ec63 2020-09-05 20:03:53.959354 39470 2864 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1044\namount: !ruby/object:BigDecimal 18:0.299E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.299E3\nstatus: 0\ndate_sale: 2020-09-05\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-582\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 0bc090f0-5409-46da-9700-b0ecf4257129 2020-09-05 20:04:56.749861 39471 834 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 15 \N 189.186.101.127 0bc090f0-5409-46da-9700-b0ecf4257129 2020-09-05 20:04:56.775554 39472 2864 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 af2657c4-58d2-4e4f-be76-66c66838e30d 2020-09-05 20:05:19.530255 39473 3837 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1044\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.299E3\nmove_type: '1'\nsale_id: 2864\ncardnumber: 6518\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-582\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-582 189.186.101.127 af2657c4-58d2-4e4f-be76-66c66838e30d 2020-09-05 20:05:19.565635 39474 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-05 01:15:53.375525000 Z\n- &1 2020-09-05 03:05:01.127121000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-05 21:25:14.069732189 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539303\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1809\n- 1810\n 3620 \N 177.228.119.167 483de1ec-f5fe-4beb-b4f5-6ad980d56619 2020-09-05 21:25:14.092562 39475 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zYAaQ_bWUt2GKzXShM5j\n- KiRV-tPwyf2DbWk82ae5\n 3621 \N 177.228.119.167 483de1ec-f5fe-4beb-b4f5-6ad980d56619 2020-09-05 21:25:14.116371 39476 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-05 16:42:30.719716000 Z\n- &1 2020-09-05 16:58:08.066814000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-05 21:34:33.934488098 Z\nsign_in_count:\n- 235\n- 236\n 472 \N 187.149.57.31 8358ba08-fb85-4e99-83b7-e7bf08b9a703 2020-09-05 21:34:33.940067 39477 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Pfdavhh7BeyRy4d3YWM1\n- 48wHRK_sJxQsW1LBz1s2\n 473 \N 187.149.57.31 8358ba08-fb85-4e99-83b7-e7bf08b9a703 2020-09-05 21:34:33.954888 39478 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-05 03:05:01.127121000 Z\n- &1 2020-09-05 21:25:14.069732000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-05 22:24:02.736277233 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539303\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 1810\n- 1811\n 3622 \N 189.186.101.127 f9024cc6-c233-4e7d-a673-2fc63e91925b 2020-09-05 22:24:02.756909 39479 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KiRV-tPwyf2DbWk82ae5\n- tzBUSHUTQ8iZCoPXQnLx\n 3623 \N 189.186.101.127 f9024cc6-c233-4e7d-a673-2fc63e91925b 2020-09-05 22:24:02.78289 39480 1335 Product \N \N 4 User \N update ---\nname:\n- BLS-0138\n- BLS-0137\n 4 El producto BLU-1335 fue modificado. 189.186.101.127 4a2d9825-559a-44b2-bd8c-a8f3e58ef501 2020-09-05 22:26:36.929404 39481 378 Purchase \N \N 21 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-88\namount: !ruby/object:BigDecimal 18:0.38415E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.38415E4\nobservations: ''\npurchase_date: 2020-09-05\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-88 por $ 3841.5 MXN creada. 189.186.101.127 fe1f9560-4d0a-4801-bd6e-1cf3ab6b55dd 2020-09-05 22:37:58.823815 39482 2282 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1338\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 fe1f9560-4d0a-4801-bd6e-1cf3ab6b55dd 2020-09-05 22:37:58.857178 39483 2283 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1311\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 fe1f9560-4d0a-4801-bd6e-1cf3ab6b55dd 2020-09-05 22:37:58.897889 39484 2284 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1337\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 fe1f9560-4d0a-4801-bd6e-1cf3ab6b55dd 2020-09-05 22:37:58.928938 39485 379 Purchase \N \N 21 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-89\namount: !ruby/object:BigDecimal 18:0.2673E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2673E4\nobservations: ''\npurchase_date: 2020-09-05\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-89 por $ 2673.0 MXN creada. 189.186.101.127 0684ca10-badf-4716-9431-e850bb6880c7 2020-09-05 22:40:33.482904 39486 2285 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1335\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 0684ca10-badf-4716-9431-e850bb6880c7 2020-09-05 22:40:33.50627 39487 2271 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.9E1\n 2 \N 189.186.101.127 0684ca10-badf-4716-9431-e850bb6880c7 2020-09-05 22:40:33.530284 39488 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-05 21:25:14.069732000 Z\n- &1 2020-09-05 22:24:02.736277000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-05 23:24:12.728680580 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1811\n- 1812\n 3624 \N 177.228.119.167 1b137506-8627-46ca-909a-e396a7e8d50b 2020-09-05 23:24:12.763485 39489 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tzBUSHUTQ8iZCoPXQnLx\n- yaJdgH5csJBuzVnapqxD\n 3625 \N 177.228.119.167 1b137506-8627-46ca-909a-e396a7e8d50b 2020-09-05 23:24:12.792273 39490 1069 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1044\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.299E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1058E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1058E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.101.127 e4273110-d80b-4367-87ec-5d6d8ad0cc49 2020-09-06 01:00:29.907257 39491 1044 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.101.127 e4273110-d80b-4367-87ec-5d6d8ad0cc49 2020-09-06 01:00:29.945579 39492 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-05 22:24:02.736277000 Z\n- &1 2020-09-05 23:24:12.728680000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-06 01:44:51.075682796 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\nsign_in_count:\n- 1812\n- 1813\n 3626 \N 177.228.119.167 6da4739d-7b6e-4c76-a988-45e0c5d5c4db 2020-09-06 01:44:51.082283 39493 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yaJdgH5csJBuzVnapqxD\n- D1NRrf-8cnUEBam3rfmc\n 3627 \N 177.228.119.167 6da4739d-7b6e-4c76-a988-45e0c5d5c4db 2020-09-06 01:44:51.100244 39494 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-05 23:24:12.728680000 Z\n- &1 2020-09-06 01:44:51.075682000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-07 01:42:32.190415231 Z\nsign_in_count:\n- 1813\n- 1814\n 3628 \N 177.228.119.167 b79778af-3cb5-43e8-ae4f-9084a6c23a4d 2020-09-07 01:42:32.219478 39495 4 User \N \N 4 User \N update ---\nunique_session_id:\n- D1NRrf-8cnUEBam3rfmc\n- 8qr8oxkG3EoAyBfnt2jN\n 3629 \N 177.228.119.167 b79778af-3cb5-43e8-ae4f-9084a6c23a4d 2020-09-07 01:42:32.243942 39496 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-05 16:43:04.506757000 Z\n- &1 2020-09-05 16:57:21.465797000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-07 16:38:49.577906954 Z\nsign_in_count:\n- 636\n- 637\n 1277 \N 187.149.57.31 e95e7871-485d-40cf-ab71-ef0666a68496 2020-09-07 16:38:49.604528 39497 2 User \N \N 2 User \N update ---\nunique_session_id:\n- uE1i1eBTN3aoEfQBYDD4\n- gWCPfUSGXvMemYEfzxLz\n 1278 \N 187.149.57.31 e95e7871-485d-40cf-ab71-ef0666a68496 2020-09-07 16:38:49.626848 39498 1045 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.941E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 941.0 187.149.57.31 becf0047-6be3-41dc-b76b-ae3b4635fffa 2020-09-07 16:39:45.030577 40053 2234 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.57.31 f90b4367-388c-4054-be3a-f3a35e82354b 2020-09-14 19:34:52.821834 39499 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-05 16:58:08.066814000 Z\n- &1 2020-09-05 21:34:33.934488000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-07 16:42:00.189017316 Z\nsign_in_count:\n- 236\n- 237\n 474 \N 187.149.57.31 3e5ad754-eae7-4bc1-8d7d-40058161a256 2020-09-07 16:42:00.199113 39500 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 48wHRK_sJxQsW1LBz1s2\n- eMpYG9Z9jrgw9zZyRexn\n 475 \N 187.149.57.31 3e5ad754-eae7-4bc1-8d7d-40058161a256 2020-09-07 16:42:00.222886 39501 845 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.57.31 b22aac94-6f6e-4410-a894-16db86be692c 2020-09-07 16:42:40.927765 39502 844 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.57.31 3bb64d28-fb4d-4347-8187-06cd8b6b4a84 2020-09-07 16:42:48.863913 39503 853 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.57.31 0d9048f6-2c83-41ce-a265-19cf09c833b2 2020-09-07 16:43:09.157186 39504 853 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.57.31 0a44e110-d83e-4ab6-9e73-42eb40cb2e4f 2020-09-07 16:43:19.961518 39505 854 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.57.31 b2b40db0-482f-4e5e-bf84-15de8bf8c348 2020-09-07 16:44:11.986737 39506 848 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 187.149.57.31 24cd01f7-26f1-4a50-a3e7-49692e8e47cf 2020-09-07 16:44:40.73965 39507 848 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.57.31 2279c6ee-1e55-4e9d-9924-b4d192baccff 2020-09-07 16:45:00.049047 39508 855 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.27E2\n- !ruby/object:BigDecimal 18:0.26E2\n 6 \N 187.149.57.31 30b6fed4-13f8-47f3-bc09-b4cb30689e40 2020-09-07 16:45:24.114382 39509 855 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.26E2\n- !ruby/object:BigDecimal 18:0.18E2\n 7 \N 187.149.57.31 ecd5fb7b-9f22-447b-9deb-946bebe0cdb1 2020-09-07 16:45:58.665188 39510 855 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.18E2\n- !ruby/object:BigDecimal 18:0.17E2\n 8 \N 187.149.57.31 b4ee67e4-541e-4a61-b94d-d571bca7c510 2020-09-07 16:46:08.868464 39511 843 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.57.31 c456032d-e5a3-46e6-87d6-7b9515bbb817 2020-09-07 16:46:31.293506 39512 852 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.57.31 0364c43f-88ad-4df1-9209-7d8256f3f476 2020-09-07 16:46:48.508925 39513 1836 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.17E2\n- !ruby/object:BigDecimal 18:0.16E2\n 51 \N 187.149.57.31 deabce3c-1bf8-465f-aaf2-c9217d017201 2020-09-07 16:48:08.772501 39514 1836 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.9E1\n 52 \N 187.149.57.31 5800edb8-57d5-4b79-9052-885816f77678 2020-09-07 16:48:14.204513 39515 843 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.57.31 1eed1620-bef3-4c02-ac53-7bd053b62dfa 2020-09-07 16:49:11.843258 39516 2017 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 187.149.57.31 6b9b77c8-b5f5-4576-bc4f-bfe4cc842bc2 2020-09-07 16:49:39.775629 39517 2017 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 187.149.57.31 98f06bce-a6a1-42d2-9dc6-e8803eed571a 2020-09-07 16:49:46.158903 39518 671 Transfer \N \N 1 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-09-07\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.57.31 30133e7c-dbda-4e3e-b9e1-f310961eb7da 2020-09-07 16:49:47.969064 39519 671 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-07\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.57.31 da79ed10-a44b-43a3-828c-bf550ecbec21 2020-09-07 16:50:11.698475 39520 266 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 15 \N 187.149.57.31 da79ed10-a44b-43a3-828c-bf550ecbec21 2020-09-07 16:50:11.715635 39521 269 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.57.31 da79ed10-a44b-43a3-828c-bf550ecbec21 2020-09-07 16:50:11.742089 39522 272 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.57.31 da79ed10-a44b-43a3-828c-bf550ecbec21 2020-09-07 16:50:11.758467 39523 257 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.57.31 da79ed10-a44b-43a3-828c-bf550ecbec21 2020-09-07 16:50:11.775094 39524 496 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.7E1\n 6 \N 187.149.57.31 da79ed10-a44b-43a3-828c-bf550ecbec21 2020-09-07 16:50:11.791489 39525 267 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E2\n 6 \N 187.149.57.31 da79ed10-a44b-43a3-828c-bf550ecbec21 2020-09-07 16:50:11.808904 39526 262 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.57.31 da79ed10-a44b-43a3-828c-bf550ecbec21 2020-09-07 16:50:11.826017 39527 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.13E2\n 27 \N 187.149.57.31 da79ed10-a44b-43a3-828c-bf550ecbec21 2020-09-07 16:50:11.84391 39528 2286 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1159\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 da79ed10-a44b-43a3-828c-bf550ecbec21 2020-09-07 16:50:11.864993 39529 2865 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1045\namount: !ruby/object:BigDecimal 18:0.119141E4\ntax: !ruby/object:BigDecimal 18:0.10759E3\ndiscount: !ruby/object:BigDecimal 18:0.519E3\ntotal: !ruby/object:BigDecimal 18:0.78E3\nstatus: 0\ndate_sale: 2020-09-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1363\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 9a850617-df32-428c-966c-0829961d3bbb 2020-09-07 16:52:18.36877 39530 266 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 16 \N 187.149.57.31 9a850617-df32-428c-966c-0829961d3bbb 2020-09-07 16:52:18.39757 39531 2865 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 599ef037-2730-4bc0-8cb6-48f90ddc86a9 2020-09-07 16:52:23.9386 39532 3838 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1045\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.78E3\nmove_type: '1'\nsale_id: 2865\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1363\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.78E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1363 187.149.57.31 599ef037-2730-4bc0-8cb6-48f90ddc86a9 2020-09-07 16:52:23.96095 39533 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-05 01:13:21.414832000 Z\n- &1 2020-09-05 18:45:51.448561000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-07 18:36:54.074998300 Z\nsign_in_count:\n- 275\n- 276\n 553 \N 189.186.101.127 c235f416-3dc4-4616-9e53-f81fc0f13351 2020-09-07 18:36:54.081663 39534 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 526UC-KmRg1W3uyrTshi\n- xcYfPLqMixTKsw9HniGx\n 554 \N 189.186.101.127 c235f416-3dc4-4616-9e53-f81fc0f13351 2020-09-07 18:36:54.096703 39535 1046 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1058E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1058.0 189.186.101.127 d3470837-3f19-4b1e-a74c-b1ccd1d2bd09 2020-09-07 18:37:09.773843 39536 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-06 01:44:51.075682000 Z\n- &1 2020-09-07 01:42:32.190415000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-07 18:42:01.002281460 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 1814\n- 1815\n 3630 \N 189.186.101.127 d11cf2b3-0a39-4fd5-85bf-46a01e3bb50b 2020-09-07 18:42:01.01055 39537 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8qr8oxkG3EoAyBfnt2jN\n- q6PX-MVn2y6LRTNSxqrv\n 3631 \N 189.186.101.127 d11cf2b3-0a39-4fd5-85bf-46a01e3bb50b 2020-09-07 18:42:01.035975 39538 2245 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.57.31 f69d91a1-9569-4a71-88ae-a696e973ea99 2020-09-07 20:12:30.871211 39539 2245 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.57.31 af88f718-07e9-4146-b2e8-b8819db4867c 2020-09-07 20:12:33.764085 39540 672 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-09-07\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.57.31 486ea773-a31d-42f6-a125-1cc2a2980996 2020-09-07 20:12:34.617638 39541 380 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-90\namount: !ruby/object:BigDecimal 18:0.11E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.11E4\nobservations: ''\npurchase_date: 2020-09-07\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-90 por $ 1100.0 MXN creada. 189.186.101.127 e5f4cb67-1ba4-4379-9e73-a2029907c69a 2020-09-07 20:37:24.863232 39542 2272 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.101.127 e5f4cb67-1ba4-4379-9e73-a2029907c69a 2020-09-07 20:37:24.905341 39543 381 Purchase \N \N 21 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-91\namount: !ruby/object:BigDecimal 18:0.14188E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.14188E5\nobservations: ''\npurchase_date: 2020-09-07\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-91 por $ 14188.0 MXN creada. 189.186.101.127 b159e764-b76b-41ad-b5e0-b2d2ddd475d5 2020-09-07 23:00:42.93259 39544 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.13E2\n 53 \N 189.186.101.127 b159e764-b76b-41ad-b5e0-b2d2ddd475d5 2020-09-07 23:00:42.960973 39545 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.17E2\n 14 \N 189.186.101.127 b159e764-b76b-41ad-b5e0-b2d2ddd475d5 2020-09-07 23:00:42.994668 39546 2221 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.101.127 b159e764-b76b-41ad-b5e0-b2d2ddd475d5 2020-09-07 23:00:43.016644 39547 2866 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1046\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-07\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-583\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 16bc07b0-68e6-4580-9679-1ae6af50a954 2020-09-07 23:12:54.342794 39548 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.17E2\n- !ruby/object:BigDecimal 18:0.16E2\n 15 \N 189.186.101.127 16bc07b0-68e6-4580-9679-1ae6af50a954 2020-09-07 23:12:54.371002 39549 2866 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 6390d43d-c739-4cff-bed5-3dd513cd31e8 2020-09-07 23:13:10.064122 39550 3839 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1046\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 2866\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-583\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-583 189.186.101.127 6390d43d-c739-4cff-bed5-3dd513cd31e8 2020-09-07 23:13:10.088538 39551 382 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-152\namount: !ruby/object:BigDecimal 18:0.8643E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.8643E4\nobservations: ''\npurchase_date: 2020-09-07\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-152 por $ 8643.0 MXN creada. 189.186.101.127 ab5b07e6-131c-434d-a37d-9df0d6bfc6b9 2020-09-08 00:06:38.232015 39552 1937 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.16E2\n 28 \N 189.186.101.127 ab5b07e6-131c-434d-a37d-9df0d6bfc6b9 2020-09-08 00:06:38.259616 39553 2287 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1300\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 ab5b07e6-131c-434d-a37d-9df0d6bfc6b9 2020-09-08 00:06:38.296848 39554 2226 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E2\n 3 \N 189.186.101.127 ab5b07e6-131c-434d-a37d-9df0d6bfc6b9 2020-09-08 00:06:38.321023 39575 2289 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1341\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 d0c9a8bd-41a9-44ab-8162-1388dd0cb083 2020-09-08 00:43:51.390289 39555 3840 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1046\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2845\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: OXXO\n 1 movimiento de efectivo por venta con folio PV3-V-570 189.186.101.127 5d3a9d85-bf2d-47b7-a375-a5bcd84626df 2020-09-08 00:12:47.196557 39556 1070 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1045\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.78E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.8E3\ncash_fund: !ruby/object:BigDecimal 18:0.921E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1721E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.57.31 d010d384-7845-4767-b114-254b06e263be 2020-09-08 00:15:43.904165 39557 1045 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.57.31 d010d384-7845-4767-b114-254b06e263be 2020-09-08 00:15:43.919182 39558 2867 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1046\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-09-07\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-584\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 8e9b7830-428f-4422-832e-2393396f6921 2020-09-08 00:24:35.453529 39559 2044 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.101.127 8e9b7830-428f-4422-832e-2393396f6921 2020-09-08 00:24:35.478654 39560 2867 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 7463c6ce-6958-4480-ab82-3153a52deb28 2020-09-08 00:25:05.906724 39561 3841 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1046\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 2867\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-584\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.18E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-584 189.186.101.127 7463c6ce-6958-4480-ab82-3153a52deb28 2020-09-08 00:25:05.928609 39562 2736 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV3-V-501 cancelada. 189.186.101.127 ac439e30-c62d-472b-8042-6f784a723417 2020-09-08 00:30:28.187818 39563 3842 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1046\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.501E3\nmove_type: '0'\nsale_id: 2736\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.101.127 ac439e30-c62d-472b-8042-6f784a723417 2020-09-08 00:30:28.243533 39564 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.14E2\n 54 \N 189.186.101.127 ac439e30-c62d-472b-8042-6f784a723417 2020-09-08 00:30:28.30139 39565 2868 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1046\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-09-07\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-585\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 0fcd1fe2-4d45-44fe-aa86-34abb36c32f0 2020-09-08 00:30:51.734671 39566 777 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.101.127 0fcd1fe2-4d45-44fe-aa86-34abb36c32f0 2020-09-08 00:30:51.761962 39567 2868 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 0afa1a72-6606-447d-9063-904d40bf4093 2020-09-08 00:31:07.758375 39568 3843 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1046\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 2868\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-585\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: APARTADO\n 1 movimiento de efectivo por venta con folio PV3-V-585 189.186.101.127 0afa1a72-6606-447d-9063-904d40bf4093 2020-09-08 00:31:07.792186 39569 3844 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1046\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 2868\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-585\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: APARTADO\n 1 movimiento de efectivo por venta con folio PV3-V-585 189.186.101.127 3082e302-f264-42e7-a2a9-c457450b8f0c 2020-09-08 00:31:34.544146 39570 1340 Product \N \N 4 User \N create ---\nsku: BLU-1340\nname: BLS-0140\ndescription: PANTIBLUSA ROSA CON MARIPOSAS\nprice_base: !ruby/object:BigDecimal 18:0.209E3\nprice_sale: !ruby/object:BigDecimal 18:0.529E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1340 fue creado. 189.186.101.127 f696d31d-1c53-4d3f-8154-1524b9b74636 2020-09-08 00:43:14.107871 39571 1340 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001340'\n 2 \N 189.186.101.127 f696d31d-1c53-4d3f-8154-1524b9b74636 2020-09-08 00:43:14.150189 39572 2288 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1340\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 f696d31d-1c53-4d3f-8154-1524b9b74636 2020-09-08 00:43:14.181434 39573 1341 Product \N \N 4 User \N create ---\nsku: BLU-1341\nname: BLS-0141\ndescription: BLUSA BLANCA SORRY\nprice_base: !ruby/object:BigDecimal 18:0.22E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1341 fue creado. 189.186.101.127 d0c9a8bd-41a9-44ab-8162-1388dd0cb083 2020-09-08 00:43:51.336781 39574 1341 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001341'\n 2 \N 189.186.101.127 d0c9a8bd-41a9-44ab-8162-1388dd0cb083 2020-09-08 00:43:51.364999 39620 2651 Sale \N \N 25 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.57.31 f29bd51c-2253-4db2-8334-dea1cfd4b04f 2020-09-08 20:23:24.504552 39576 383 Purchase \N \N 4 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-92\namount: !ruby/object:BigDecimal 18:0.2574E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2574E4\nobservations: ''\npurchase_date: 2020-09-07\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-92 por $ 2574.0 MXN creada. 189.186.101.127 7a232a0a-23c5-4839-bde8-7c4120584768 2020-09-08 00:43:56.335658 39577 2288 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.101.127 7a232a0a-23c5-4839-bde8-7c4120584768 2020-09-08 00:43:56.356623 39578 2289 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.101.127 7a232a0a-23c5-4839-bde8-7c4120584768 2020-09-08 00:43:56.378136 39579 331 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 1046\nquantity: !ruby/object:BigDecimal 18:0.1E4\nstatus: 1\nobservations: DANIELA\nexpense_date: 2020-09-07\nexpense_code: PV3-E-40\n 1 Egreso por 1000.0 registrado 189.186.101.127 44973bfb-6ff3-4448-9dc3-e98a8b633d70 2020-09-08 01:00:35.838506 39580 3845 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1046\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 331\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.101.127 44973bfb-6ff3-4448-9dc3-e98a8b633d70 2020-09-08 01:00:35.861079 39581 1071 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1046\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.5197E4\namount_out: !ruby/object:BigDecimal 18:0.1501E4\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.22E4\ncash_fund: !ruby/object:BigDecimal 18:0.1054E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3254E4\nobservations: 'SE RETIRAN $2,700 POR LA CANCELACION CONQUE Y VENTA DE LA CANGURERA.\n DE LA SEÑORA MAYRA '\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.101.127 7c03af1a-684b-4a7a-83d9-8f048f1fc5d8 2020-09-08 01:09:45.030544 39582 1046 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.101.127 7c03af1a-684b-4a7a-83d9-8f048f1fc5d8 2020-09-08 01:09:45.04337 39583 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-07 01:42:32.190415000 Z\n- &1 2020-09-07 18:42:01.002281000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-08 15:35:14.095193240 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984540071\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539535\n mask_addr: 4294967295\nsign_in_count:\n- 1815\n- 1816\n 3632 \N 177.228.117.143 bf85ea93-6a57-48ee-bab5-7c8ee830c9aa 2020-09-08 15:35:14.125262 39584 4 User \N \N 4 User \N update ---\nunique_session_id:\n- q6PX-MVn2y6LRTNSxqrv\n- U3nR_jaqu5_MvCv_w6S_\n 3633 \N 177.228.117.143 bf85ea93-6a57-48ee-bab5-7c8ee830c9aa 2020-09-08 15:35:14.153665 39585 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-08-15 22:45:12.401173000 Z\n- &1 2020-08-17 00:50:23.829441000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-08 16:19:49.673830892 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098780\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147108040\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147108040\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\nsign_in_count:\n- 89\n- 90\n 180 \N 187.149.57.31 cd5c3283-34f5-4033-9d5f-dbfe5378dd6b 2020-09-08 16:19:49.681081 39586 25 User \N \N 25 User \N update ---\nunique_session_id:\n- JPmf3fc696sjiEhchKAs\n- 8xT7HT2hQn9XesyUbzpq\n 181 \N 187.149.57.31 cd5c3283-34f5-4033-9d5f-dbfe5378dd6b 2020-09-08 16:19:49.699646 39587 1342 Product \N \N 25 User \N create ---\nsku: BOL-1342\nname: EDRI673\ndescription: MOCHILA NEGRA DE TELA\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1342 fue creado. 187.149.57.31 dfdcd214-f589-4dce-8b71-f47edb8a296d 2020-09-08 16:31:20.050825 39588 1342 Product \N \N 25 User \N update ---\nbarcode:\n- ''\n- '0001342'\n 2 \N 187.149.57.31 dfdcd214-f589-4dce-8b71-f47edb8a296d 2020-09-08 16:31:20.082649 39589 2290 AvailableProduct \N \N 25 User \N create ---\nproduct_id: 1342\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.31 dfdcd214-f589-4dce-8b71-f47edb8a296d 2020-09-08 16:31:20.110988 39590 384 Purchase \N \N 25 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-153\namount: !ruby/object:BigDecimal 18:0.8495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.8495E3\nobservations: ''\npurchase_date: 2020-09-08\nuser_id: '25'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-153 por $ 849.5 MXN creada. 187.149.57.31 d1c89bfb-59fa-4ce3-a7ec-990b2bd411a7 2020-09-08 16:31:23.520026 39591 2290 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.57.31 d1c89bfb-59fa-4ce3-a7ec-990b2bd411a7 2020-09-08 16:31:23.557879 39592 1047 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.921E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 921.0 187.149.57.31 8c072499-658c-4799-9ec3-6719ccca353e 2020-09-08 16:32:20.227781 39593 374 Customer \N \N 25 User \N create ---\nnick_name: GLADYS REYES\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente GLADYS REYES fue registrado. 187.149.57.31 18d8fe66-dab1-42b3-bfbc-ad0097112ae2 2020-09-08 16:32:57.937106 39594 2869 Sale \N \N 25 User \N create ---\ncustomer_id: 374\nuser_id: 25\nopen_cash_register_id: 1047\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-09-08\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1364\nexpiration_date: 2020-10-13\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 5857cc9f-c358-4040-991a-781bf5ca0087 2020-09-08 16:33:44.085911 39595 2059 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.57.31 5857cc9f-c358-4040-991a-781bf5ca0087 2020-09-08 16:33:44.11347 39596 2869 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1364 cancelada. 187.149.57.31 566888c7-5be3-442d-bfdd-ce7cff9f06ee 2020-09-08 16:33:49.783576 39597 2059 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.57.31 566888c7-5be3-442d-bfdd-ce7cff9f06ee 2020-09-08 16:33:49.807178 39598 2870 Sale \N \N 25 User \N create ---\ncustomer_id: 374\nuser_id: 25\nopen_cash_register_id: 1047\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-09-08\nsaletype: 2\nseller_id: 25\nsale_code: PV1-V-1365\nexpiration_date: 2020-10-13\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 7bf3d38b-c3ef-4b92-8640-df423a9c7183 2020-09-08 16:34:42.5485 39599 2059 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.57.31 7bf3d38b-c3ef-4b92-8640-df423a9c7183 2020-09-08 16:34:42.574724 39600 3846 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 1047\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2870\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1365\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1365 187.149.57.31 aac98241-2f52-422b-a145-77551ba7a589 2020-09-08 16:36:53.892687 39601 2870 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.57.31 66f47b96-1ce7-4fa9-9757-5e601ceea012 2020-09-08 16:37:04.701327 39602 375 Customer \N \N 25 User \N create ---\nnick_name: ANDREA SALVATIERRA\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANDREA SALVATIERRA fue registrado. 187.149.57.31 e71c9b9f-dd53-4ef3-beae-4d60b4ac346c 2020-09-08 16:38:05.750235 39603 2871 Sale \N \N 25 User \N create ---\ncustomer_id: 375\nuser_id: 25\nopen_cash_register_id: 1047\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2020-09-08\nsaletype: 2\nseller_id: 25\nsale_code: PV1-V-1366\nexpiration_date: 2020-10-13\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 de7419b5-9da9-43a0-a5fc-da26be86c549 2020-09-08 16:38:19.791262 39604 2290 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.57.31 de7419b5-9da9-43a0-a5fc-da26be86c549 2020-09-08 16:38:19.820661 39605 3847 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 1047\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2871\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1366\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1366 187.149.57.31 ddd844ee-8df0-458b-bce1-3ba0ec0b2836 2020-09-08 16:38:32.604267 39606 2871 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.57.31 a1fe3162-7305-4d8f-b2d4-1cbea178697c 2020-09-08 16:38:35.317822 39607 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-05 18:45:51.448561000 Z\n- &1 2020-09-07 18:36:54.074998000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-08 18:38:24.545892770 Z\nsign_in_count:\n- 276\n- 277\n 555 \N 189.186.101.127 9b539904-22fa-400c-945f-97e10f9895b6 2020-09-08 18:38:24.553951 39608 21 User \N \N 21 User \N update ---\nunique_session_id:\n- xcYfPLqMixTKsw9HniGx\n- PYg3qEsKp_h6BxGigEsU\n 556 \N 189.186.101.127 9b539904-22fa-400c-945f-97e10f9895b6 2020-09-08 18:38:24.571497 39609 1048 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1054E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1054.0 189.186.101.127 dc1cff94-49b8-452d-8cfa-9745446051ca 2020-09-08 18:43:43.853229 39610 2872 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 1047\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-09-08\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1367\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 b9272f7e-e2cc-43b4-ba5b-af217b7060ec 2020-09-08 19:28:57.470481 39611 2241 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.57.31 b9272f7e-e2cc-43b4-ba5b-af217b7060ec 2020-09-08 19:28:57.513332 39612 2872 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 b0b0fbef-a40f-4054-b73a-efb54fb3a08f 2020-09-08 19:30:34.886681 39613 3848 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 1047\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 2872\ncardnumber: 3843\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1367\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1367 187.149.57.31 b0b0fbef-a40f-4054-b73a-efb54fb3a08f 2020-09-08 19:30:34.91165 39614 1072 CashOut \N \N 25 User \N create ---\nopen_cash_register_id: 1047\nuser_id: 25\namount_in: !ruby/object:BigDecimal 18:0.1799E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.921E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1921E4\nobservations: Retiro de apartado que fueron depositados\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.57.31 6ccefb73-0d22-42b1-b26c-6e56e5051f1d 2020-09-08 20:15:17.473815 39615 1047 OpenCashRegister \N \N 25 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.57.31 6ccefb73-0d22-42b1-b26c-6e56e5051f1d 2020-09-08 20:15:17.488292 39616 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-08-17 00:50:23.829441000 Z\n- &1 2020-09-08 16:19:49.673830000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-08 20:22:33.103617333 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147108040\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\nsign_in_count:\n- 90\n- 91\n 182 \N 187.149.57.31 8ff6e7e4-c589-4cc7-b2a7-8c07b26b7bf2 2020-09-08 20:22:33.112902 39617 25 User \N \N 25 User \N update ---\nunique_session_id:\n- 8xT7HT2hQn9XesyUbzpq\n- szobJiAighQ4P9fXFwDH\n 183 \N 187.149.57.31 8ff6e7e4-c589-4cc7-b2a7-8c07b26b7bf2 2020-09-08 20:22:33.127972 39618 1049 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.921E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 921.0 187.149.57.31 afe7d3bb-85b0-4e54-a802-ee19aff8683a 2020-09-08 20:22:46.995779 39619 3849 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 1049\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2651\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1269 187.149.57.31 d329971f-510e-47ba-a66e-eab7d516f14d 2020-09-08 20:23:16.378882 39621 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-07 18:42:01.002281000 Z\n- &1 2020-09-08 15:35:14.095193000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-08 20:23:52.241316264 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539535\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539535\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934105\n mask_addr: 4294967295\nsign_in_count:\n- 1816\n- 1817\n 3634 \N 200.68.134.153 a46deff7-f3c0-4a02-85ce-77a44e96d3f8 2020-09-08 20:23:52.249558 39622 4 User \N \N 4 User \N update ---\nunique_session_id:\n- U3nR_jaqu5_MvCv_w6S_\n- Ae4e_qpsFbkXm-LsKzAx\n 3635 \N 200.68.134.153 a46deff7-f3c0-4a02-85ce-77a44e96d3f8 2020-09-08 20:23:52.270046 39623 2873 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 1049\namount: !ruby/object:BigDecimal 18:0.8534E2\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9899E2\nstatus: 0\ndate_sale: 2020-09-08\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1368\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 9a92a767-0908-4920-a0af-bcd9e6197433 2020-09-08 20:25:55.56092 39624 486 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.22E2\n- !ruby/object:BigDecimal 18:0.21E2\n 30 \N 187.149.57.31 9a92a767-0908-4920-a0af-bcd9e6197433 2020-09-08 20:25:55.586234 39625 2873 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 dd0c011c-7915-42a5-859a-95caa84b7287 2020-09-08 20:26:06.449971 39626 3850 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 1049\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.9899E2\nmove_type: '1'\nsale_id: 2873\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1368\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.10101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1368 187.149.57.31 dd0c011c-7915-42a5-859a-95caa84b7287 2020-09-08 20:26:06.472114 39627 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-05 16:57:21.465797000 Z\n- &1 2020-09-07 16:38:49.577906000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-08 21:20:53.612785373 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 637\n- 638\n 1279 \N 189.186.101.127 440400ca-d388-4d71-b7c4-ea2a7edc805a 2020-09-08 21:20:53.619711 39628 2 User \N \N 2 User \N update ---\nunique_session_id:\n- gWCPfUSGXvMemYEfzxLz\n- N5RTczzJJRsNuo8vkfYS\n 1280 \N 189.186.101.127 440400ca-d388-4d71-b7c4-ea2a7edc805a 2020-09-08 21:20:53.63599 39629 2874 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1049\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2020-09-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1369\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 2fae7f2f-705a-44aa-913a-4ba0f4328623 2020-09-08 21:23:30.770877 39630 697 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 17 \N 189.186.101.127 2fae7f2f-705a-44aa-913a-4ba0f4328623 2020-09-08 21:23:30.797472 39631 2874 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 e5af82a4-8925-40b0-92a9-2ad08211bcae 2020-09-08 21:23:49.123023 39632 3851 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1049\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 2874\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1369\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAM\n 1 movimiento de efectivo por venta con folio PV1-V-1369 189.186.101.127 e5af82a4-8925-40b0-92a9-2ad08211bcae 2020-09-08 21:23:49.146038 39633 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-07 18:36:54.074998000 Z\n- &1 2020-09-08 18:38:24.545892000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-08 21:30:35.980931849 Z\nsign_in_count:\n- 277\n- 278\n 557 \N 189.186.101.127 0241baad-7d1e-421d-96e3-112e428817b4 2020-09-08 21:30:35.986917 39634 21 User \N \N 21 User \N update ---\nunique_session_id:\n- PYg3qEsKp_h6BxGigEsU\n- sP8oufoGJohicNiHMrNU\n 558 \N 189.186.101.127 0241baad-7d1e-421d-96e3-112e428817b4 2020-09-08 21:30:36.003151 39635 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-08 18:38:24.545892000 Z\n- &1 2020-09-08 21:30:35.980931000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-08 21:55:31.218422866 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938178\n mask_addr: 4294967295\nsign_in_count:\n- 278\n- 279\n 559 \N 200.68.150.130 66977c7e-423a-4ea3-9a52-7ea8822d55c6 2020-09-08 21:55:31.225247 39636 21 User \N \N 21 User \N update ---\nunique_session_id:\n- sP8oufoGJohicNiHMrNU\n- utcxJrVSaf2dPtn4oicC\n 560 \N 200.68.150.130 66977c7e-423a-4ea3-9a52-7ea8822d55c6 2020-09-08 21:55:31.241484 39637 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-08 21:30:35.980931000 Z\n- &1 2020-09-08 21:55:31.218422000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-08 23:20:14.571604119 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938178\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938178\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 279\n- 280\n 561 \N 189.186.101.127 7709f7d1-990a-4925-a55a-7b6e6acf335e 2020-09-08 23:20:14.579656 39638 21 User \N \N 21 User \N update ---\nunique_session_id:\n- utcxJrVSaf2dPtn4oicC\n- UKkMprFDbXgXyAFtTnB7\n 562 \N 189.186.101.127 7709f7d1-990a-4925-a55a-7b6e6acf335e 2020-09-08 23:20:14.594762 39639 2875 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1048\namount: !ruby/object:BigDecimal 18:0.2897E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.149E3\ntotal: !ruby/object:BigDecimal 18:0.2748E4\nstatus: 0\ndate_sale: 2020-09-08\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-586\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 c244fe40-f283-4e41-93d9-991dabfd2a86 2020-09-08 23:27:58.388592 39640 2214 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.101.127 c244fe40-f283-4e41-93d9-991dabfd2a86 2020-09-08 23:27:58.421745 39641 1974 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.101.127 c244fe40-f283-4e41-93d9-991dabfd2a86 2020-09-08 23:27:58.446077 39642 1795 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.101.127 c244fe40-f283-4e41-93d9-991dabfd2a86 2020-09-08 23:27:58.470337 39643 2875 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 bffb417b-dbfc-4d63-972d-8850742205d9 2020-09-08 23:28:12.413555 39644 3852 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1048\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2748E4\nmove_type: '1'\nsale_id: 2875\ncardnumber: 1034\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-586\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-586 189.186.101.127 bffb417b-dbfc-4d63-972d-8850742205d9 2020-09-08 23:28:12.449785 39645 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-08 21:55:31.218422000 Z\n- &1 2020-09-08 23:20:14.571604000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-08 23:50:01.697134434 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938178\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946262\n mask_addr: 4294967295\nsign_in_count:\n- 280\n- 281\n 563 \N 200.68.182.22 015aafd1-3e2e-4cca-a32f-787113359ea1 2020-09-08 23:50:01.704601 39646 21 User \N \N 21 User \N update ---\nunique_session_id:\n- UKkMprFDbXgXyAFtTnB7\n- X-YiCoDyDrSmyiPoHYmU\n 564 \N 200.68.182.22 015aafd1-3e2e-4cca-a32f-787113359ea1 2020-09-08 23:50:01.719948 39647 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-08 23:20:14.571604000 Z\n- &1 2020-09-08 23:50:01.697134000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-09 00:14:46.397434103 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946262\n mask_addr: 4294967295\nsign_in_count:\n- 281\n- 282\n 565 \N 200.68.182.22 de27b102-67f4-406d-be45-c4626550c205 2020-09-09 00:14:46.408272 39648 21 User \N \N 21 User \N update ---\nunique_session_id:\n- X-YiCoDyDrSmyiPoHYmU\n- VXBzD-neoqiiCs5jmzsq\n 566 \N 200.68.182.22 de27b102-67f4-406d-be45-c4626550c205 2020-09-09 00:14:46.433073 39649 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-08 23:50:01.697134000 Z\n- &1 2020-09-09 00:14:46.397434000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-09 00:29:21.725806619 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946262\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 282\n- 283\n 567 \N 189.186.101.127 f17d1c55-089f-4102-ae64-7d0940ea3097 2020-09-09 00:29:21.732828 39650 21 User \N \N 21 User \N update ---\nunique_session_id:\n- VXBzD-neoqiiCs5jmzsq\n- C7N4VZQLG-rzt2PQ866y\n 568 \N 189.186.101.127 f17d1c55-089f-4102-ae64-7d0940ea3097 2020-09-09 00:29:21.747714 39651 3853 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1048\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2752\ncardnumber: 6295\npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-512 189.186.101.127 13883a3d-5767-4dba-841f-2d9ca94b767d 2020-09-09 00:31:32.425982 39652 3854 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1048\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.498E3\nmove_type: '1'\nsale_id: 2752\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.498E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-512 189.186.101.127 71f1f7c0-e29e-4577-871a-0b39dee0aa9a 2020-09-09 00:31:42.820483 39653 3853 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1048\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2752\ncardnumber: 6295\npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.101.127 f7fd7181-2bca-4b4c-9624-0ce755549957 2020-09-09 00:31:49.021478 39654 3855 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1048\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.2E4\nmove_type: '1'\nsale_id: 2752\ncardnumber: 6295\npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-512 189.186.101.127 8e35d3ea-514c-4099-978e-bb8d54dde3c3 2020-09-09 00:32:11.698302 39655 2752 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.101.127 54a1ac6e-056e-438f-9ebe-b69d37a749b4 2020-09-09 00:32:14.468512 39656 2876 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1048\namount: !ruby/object:BigDecimal 18:0.1088E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1088E4\nstatus: 0\ndate_sale: 2020-09-08\nsaletype: 1\nseller_id: 23\nsale_code: PV3-V-587\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 7cb847ee-6df9-4be4-8e93-4a959cf7345d 2020-09-09 01:02:27.71769 39657 2279 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.101.127 7cb847ee-6df9-4be4-8e93-4a959cf7345d 2020-09-09 01:02:27.745456 39658 2285 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.101.127 7cb847ee-6df9-4be4-8e93-4a959cf7345d 2020-09-09 01:02:27.777901 39659 2876 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 2415a08f-11b4-42e8-9314-f942922ca0b4 2020-09-09 01:02:32.903482 39660 3856 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1048\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1088E4\nmove_type: '1'\nsale_id: 2876\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-587\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1088E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-587 189.186.101.127 2415a08f-11b4-42e8-9314-f942922ca0b4 2020-09-09 01:02:32.923177 39661 1073 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1048\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.6334E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 17\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.739E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3239E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.101.127 abe894d1-7d73-47ee-8536-235de677995d 2020-09-09 01:11:59.090414 39662 1048 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.101.127 abe894d1-7d73-47ee-8536-235de677995d 2020-09-09 01:11:59.104583 39770 2291 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.101.127 8e43302a-160d-4943-b6bb-74f7b70e222e 2020-09-10 01:04:19.912605 40054 2924 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 87779186-cb91-4c9b-9774-736c92aacd41 2020-09-14 19:35:20.283905 39663 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-09 00:14:46.397434000 Z\n- &1 2020-09-09 00:29:21.725806000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-09 01:58:25.447300180 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946262\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946262\n mask_addr: 4294967295\nsign_in_count:\n- 283\n- 284\n 569 \N 200.68.182.22 ddfee96c-afbb-4433-97e2-9407094eafd8 2020-09-09 01:58:25.456166 39664 21 User \N \N 21 User \N update ---\nunique_session_id:\n- C7N4VZQLG-rzt2PQ866y\n- HUM8hVXexFnCb86G-4Zj\n 570 \N 200.68.182.22 ddfee96c-afbb-4433-97e2-9407094eafd8 2020-09-09 01:58:25.473641 39665 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-08 15:35:14.095193000 Z\n- &1 2020-09-08 20:23:52.241316000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-09 05:16:24.991161335 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539535\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934105\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934105\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539631\n mask_addr: 4294967295\nsign_in_count:\n- 1817\n- 1818\n 3636 \N 177.228.117.239 cb6dfe15-bd6e-4a47-998f-b8dbe3f6d57e 2020-09-09 05:16:24.999165 39666 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Ae4e_qpsFbkXm-LsKzAx\n- E9y9ow3VzaC87pULezuB\n 3637 \N 177.228.117.239 cb6dfe15-bd6e-4a47-998f-b8dbe3f6d57e 2020-09-09 05:16:25.027612 39667 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-09-08 16:19:49.673830000 Z\n- &1 2020-09-08 20:22:33.103617000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-09 05:51:59.585225183 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112595\n mask_addr: 4294967295\nsign_in_count:\n- 91\n- 92\n 184 \N 187.149.32.147 f15c63be-637a-419a-bf29-a16013edc1c3 2020-09-09 05:51:59.592503 39668 25 User \N \N 25 User \N update ---\nunique_session_id:\n- szobJiAighQ4P9fXFwDH\n- 4kTRgueUDi51TFEBcn-x\n 185 \N 187.149.32.147 f15c63be-637a-419a-bf29-a16013edc1c3 2020-09-09 05:51:59.607886 39669 2877 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 1049\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2020-09-08\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1370\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.32.147 3ebc07df-a466-4f63-951d-143228797f60 2020-09-09 05:53:37.808172 39670 2230 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.32.147 3ebc07df-a466-4f63-951d-143228797f60 2020-09-09 05:53:37.83432 39671 2877 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.32.147 5ca940fb-bf64-442b-b817-16be92fde1c5 2020-09-09 05:53:54.512661 39672 3857 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 1049\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.549E3\nmove_type: '1'\nsale_id: 2877\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1370\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SESION\n 1 movimiento de efectivo por venta con folio PV1-V-1370 187.149.32.147 5ca940fb-bf64-442b-b817-16be92fde1c5 2020-09-09 05:53:54.540489 39673 1074 CashOut \N \N 25 User \N create ---\nopen_cash_register_id: 1049\nuser_id: 25\namount_in: !ruby/object:BigDecimal 18:0.274699E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.11E4\ncash_fund: !ruby/object:BigDecimal 18:0.92E3\nphysical_cash: !ruby/object:BigDecimal 18:0.202E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.32.151 0ea08871-5cd2-4280-a60b-2c698c8623e9 2020-09-09 05:58:05.24688 39674 1049 OpenCashRegister \N \N 25 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.32.151 0ea08871-5cd2-4280-a60b-2c698c8623e9 2020-09-09 05:58:05.261195 39675 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-07 16:38:49.577906000 Z\n- &1 2020-09-08 21:20:53.612785000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-09 15:52:23.992840891 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\nsign_in_count:\n- 638\n- 639\n 1281 \N 187.149.57.31 bca0061e-05d3-4a29-bb20-aed0a4ce27ca 2020-09-09 15:52:24.021022 39676 2 User \N \N 2 User \N update ---\nunique_session_id:\n- N5RTczzJJRsNuo8vkfYS\n- oysFEPfznMZuw9zMzs2R\n 1282 \N 187.149.57.31 bca0061e-05d3-4a29-bb20-aed0a4ce27ca 2020-09-09 15:52:24.045034 39677 1050 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.908E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 908.0 187.149.57.31 ccbc78ff-d0f0-43f9-b2c5-46c011a20940 2020-09-09 16:13:14.334906 39678 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-09 00:29:21.725806000 Z\n- &1 2020-09-09 01:58:25.447300000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-09 16:16:52.534668009 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946262\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946262\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\nsign_in_count:\n- 284\n- 285\n 571 \N 187.149.57.31 9f1d64e7-904f-4894-8b05-53e3ed548d7a 2020-09-09 16:16:52.543452 39679 21 User \N \N 21 User \N update ---\nunique_session_id:\n- HUM8hVXexFnCb86G-4Zj\n- rUXa9z1FMAtoG_ARxrUw\n 572 \N 187.149.57.31 9f1d64e7-904f-4894-8b05-53e3ed548d7a 2020-09-09 16:16:52.560759 39680 1051 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.739E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 739.0 187.149.57.31 b077800d-801d-4cbd-bb85-82b310df6563 2020-09-09 16:17:26.207012 39681 3858 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1051\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 2815\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-551 187.149.57.31 2fb336e1-43d8-43c2-860c-137bb73fc6e2 2020-09-09 16:18:35.626587 39682 2815 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.57.31 e0c40051-8ae7-4308-bd40-434522633605 2020-09-09 16:18:41.018116 39793 2205 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.57.31 b53e2985-4575-4600-9290-ade618c4c3c0 2020-09-10 19:39:00.081289 39683 2878 Sale \N \N 2 User \N create ---\ncustomer_id: 167\nuser_id: 2\nopen_cash_register_id: 1050\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2020-09-09\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1371\nexpiration_date: 2020-10-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 f45c96b8-118b-4328-ac91-c2971787f91b 2020-09-09 16:42:07.101769 39684 2224 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.57.31 f45c96b8-118b-4328-ac91-c2971787f91b 2020-09-09 16:42:07.137683 39685 3859 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1050\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2878\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1371\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1371 187.149.57.31 96d298a7-3b3b-4f98-8ef4-76d4dd92096d 2020-09-09 16:42:40.10775 39686 2878 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.57.31 2a73b21b-4f40-493d-af85-f67ee7164194 2020-09-09 16:42:44.432129 39687 2878 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV1-V-1371 cancelada. 187.149.57.31 209d14ab-5407-410e-a340-48491360a01a 2020-09-09 16:47:57.926785 39688 2224 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.57.31 209d14ab-5407-410e-a340-48491360a01a 2020-09-09 16:47:57.949289 39689 2879 Sale \N \N 2 User \N create ---\ncustomer_id: 167\nuser_id: 2\nopen_cash_register_id: 1050\namount: !ruby/object:BigDecimal 18:0.2248E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2248E4\nstatus: 0\ndate_sale: 2020-09-09\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1372\nexpiration_date: 2020-10-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 ee5c889a-0360-4bde-a9cd-378e859f931e 2020-09-09 16:49:08.113513 39690 2224 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.57.31 ee5c889a-0360-4bde-a9cd-378e859f931e 2020-09-09 16:49:08.138184 39691 2230 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.57.31 ee5c889a-0360-4bde-a9cd-378e859f931e 2020-09-09 16:49:08.159366 39692 3860 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1050\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2879\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1372\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1372 187.149.57.31 0a833aee-4809-41f0-be22-6e009ea3d864 2020-09-09 16:49:14.365385 39693 2879 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.57.31 644dd585-2f75-4d54-bf79-beda0d0d0ebe 2020-09-09 16:49:17.823667 39694 2880 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1050\namount: !ruby/object:BigDecimal 18:0.1327E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1327E4\nstatus: 0\ndate_sale: 2020-09-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1373\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 e906585d-7cd4-4c9f-95c6-62c92150636a 2020-09-09 17:58:11.872776 39695 1644 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 187.149.57.31 e906585d-7cd4-4c9f-95c6-62c92150636a 2020-09-09 17:58:11.909041 39696 2230 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.57.31 e906585d-7cd4-4c9f-95c6-62c92150636a 2020-09-09 17:58:11.946975 39697 2098 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.57.31 e906585d-7cd4-4c9f-95c6-62c92150636a 2020-09-09 17:58:11.96967 39698 2880 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 00e5d044-d46b-44bb-87f6-a32137c153e6 2020-09-09 18:07:09.928629 39699 3861 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1050\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1327E4\nmove_type: '1'\nsale_id: 2880\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1373\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1327E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1373 187.149.57.31 00e5d044-d46b-44bb-87f6-a32137c153e6 2020-09-09 18:07:09.951915 39700 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-08 20:23:52.241316000 Z\n- &1 2020-09-09 05:16:24.991161000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-09 18:45:32.094283330 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934105\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539631\n mask_addr: 4294967295\nsign_in_count:\n- 1818\n- 1819\n 3638 \N 177.228.117.239 0498d5db-8a0d-4fd0-8765-2766b09ef5ce 2020-09-09 18:45:32.10278 39701 4 User \N \N 4 User \N update ---\nunique_session_id:\n- E9y9ow3VzaC87pULezuB\n- 8AFLA5sgCsLzVU53d5nZ\n 3639 \N 177.228.117.239 0498d5db-8a0d-4fd0-8765-2766b09ef5ce 2020-09-09 18:45:32.121663 39702 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-09 01:58:25.447300000 Z\n- &1 2020-09-09 16:16:52.534668000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-09 18:49:02.071421817 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946262\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 285\n- 286\n 573 \N 189.186.101.127 41fb0896-e0b3-4c8c-96ab-4ea6209c3b4d 2020-09-09 18:49:02.079183 39703 21 User \N \N 21 User \N update ---\nunique_session_id:\n- rUXa9z1FMAtoG_ARxrUw\n- mhCqRF6q5YyXC-aRRyNi\n 574 \N 189.186.101.127 41fb0896-e0b3-4c8c-96ab-4ea6209c3b4d 2020-09-09 18:49:02.095099 39704 23 Seller \N \N 21 User \N update ---\nname:\n- KEYLA\n- ROCIO\nlast_name:\n- LIZARRAGA\n- GUEVARA\n 2 El vendedor KEYLA LIZARRAGA fue modificado. 189.186.101.127 ee30d4f4-b2f2-4999-821e-bf94663eced8 2020-09-09 18:49:56.422804 39705 376 Customer \N \N 2 User \N create ---\nnick_name: MELISSA CASTRO\nphone: "(667) 230-4806"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MELISSA CASTRO fue registrado. 187.149.57.31 ac28d6ae-318e-4f80-be2c-45d719c78402 2020-09-09 19:35:56.546935 39794 2893 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 7657094d-58ea-445b-8c95-0590234fd16a 2020-09-10 19:39:06.591587 39706 2881 Sale \N \N 2 User \N create ---\ncustomer_id: 376\nuser_id: 2\nopen_cash_register_id: 1050\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-09\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1374\nexpiration_date: 2020-10-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 d9256197-05b3-49f7-8c15-8e097cee92d0 2020-09-09 19:36:51.39909 39707 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 4 \N 187.149.57.31 d9256197-05b3-49f7-8c15-8e097cee92d0 2020-09-09 19:36:51.435163 39708 3862 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1050\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 2881\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1374\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1374 187.149.57.31 59a47690-380c-414e-9363-ce8205942ca4 2020-09-09 19:36:57.014381 39709 2881 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.57.31 a93bde88-69d4-4174-bed0-fa6585a841d7 2020-09-09 19:36:59.746855 39710 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-09 05:16:24.991161000 Z\n- &1 2020-09-09 18:45:32.094283000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-09 19:47:26.548554327 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539631\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 1819\n- 1820\n 3640 \N 189.186.101.127 0e3d7abe-e966-4537-a038-f555dcf8a61e 2020-09-09 19:47:26.568626 39711 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8AFLA5sgCsLzVU53d5nZ\n- BH-Vm_viZsjiyJ_z5mvz\n 3641 \N 189.186.101.127 0e3d7abe-e966-4537-a038-f555dcf8a61e 2020-09-09 19:47:26.591002 39712 2882 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1050\namount: !ruby/object:BigDecimal 18:0.134717E4\ntax: !ruby/object:BigDecimal 18:0.10083E3\ndiscount: !ruby/object:BigDecimal 18:0.218E3\ntotal: !ruby/object:BigDecimal 18:0.123E4\nstatus: 0\ndate_sale: 2020-09-09\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1375\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 30269993-6c1a-49c0-81f4-f788de8a58fa 2020-09-09 20:25:40.598585 39713 1008 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.57.31 30269993-6c1a-49c0-81f4-f788de8a58fa 2020-09-09 20:25:40.629595 39714 1631 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.57.31 30269993-6c1a-49c0-81f4-f788de8a58fa 2020-09-09 20:25:40.663664 39715 2882 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 e4cd6a43-75a6-446b-bf25-8bdc2cb4d26c 2020-09-09 20:25:52.474718 39716 3863 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1050\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.123E4\nmove_type: '1'\nsale_id: 2882\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1375\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAM\n 1 movimiento de efectivo por venta con folio PV1-V-1375 187.149.57.31 e4cd6a43-75a6-446b-bf25-8bdc2cb4d26c 2020-09-09 20:25:52.510236 39717 2883 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1050\namount: !ruby/object:BigDecimal 18:0.529E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.529E3\nstatus: 0\ndate_sale: 2020-09-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1376\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 7a86519c-7ad2-4414-8608-8bc2146236c3 2020-09-09 20:58:55.785821 39718 2263 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.57.31 7a86519c-7ad2-4414-8608-8bc2146236c3 2020-09-09 20:58:55.810528 39719 2883 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 810fcd24-0ce7-4c60-ad7c-7dcdf63d7d75 2020-09-09 20:59:04.772296 39720 3864 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1050\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.529E3\nmove_type: '1'\nsale_id: 2883\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1376\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.529E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1376 187.149.57.31 810fcd24-0ce7-4c60-ad7c-7dcdf63d7d75 2020-09-09 20:59:04.794673 39721 385 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-93\namount: !ruby/object:BigDecimal 18:0.26985E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.26985E4\nobservations: ''\npurchase_date: 2020-09-09\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-93 por $ 2698.5 MXN creada. 189.186.101.127 171036fb-777b-471d-a4be-d5e459541e7f 2020-09-09 21:51:38.892869 39722 2214 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.101.127 171036fb-777b-471d-a4be-d5e459541e7f 2020-09-09 21:51:38.919746 39723 386 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-154\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nobservations: ''\npurchase_date: 2020-09-09\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-154 por $ 1799.0 MXN creada. 189.186.101.127 cc304738-39c1-4da2-a6c8-b26751b6699b 2020-09-09 21:51:58.366657 39724 2225 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.101.127 cc304738-39c1-4da2-a6c8-b26751b6699b 2020-09-09 21:51:58.386233 39725 2884 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1051\namount: !ruby/object:BigDecimal 18:0.1919E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1919E4\nstatus: 0\ndate_sale: 2020-09-09\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-588\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 9993965d-6863-42bc-900a-1f0aadb2aaa0 2020-09-09 21:52:41.545081 39726 2214 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.101.127 9993965d-6863-42bc-900a-1f0aadb2aaa0 2020-09-09 21:52:41.571199 39727 1958 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.101.127 9993965d-6863-42bc-900a-1f0aadb2aaa0 2020-09-09 21:52:41.593384 39728 2884 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 8e2ed91d-bb7b-406a-a896-cb6ad3a0fc25 2020-09-09 21:52:53.610211 39729 3865 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1051\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1919E4\nmove_type: '1'\nsale_id: 2884\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-588\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEPOSITO\n 1 movimiento de efectivo por venta con folio PV3-V-588 189.186.101.127 8e2ed91d-bb7b-406a-a896-cb6ad3a0fc25 2020-09-09 21:52:53.643294 39730 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-09 18:45:32.094283000 Z\n- &1 2020-09-09 19:47:26.548554000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-09 22:03:33.085918184 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539631\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934001\n mask_addr: 4294967295\nsign_in_count:\n- 1820\n- 1821\n 3642 \N 200.68.134.49 b9b8fa82-f8f1-46eb-9e49-a6e81a5627fe 2020-09-09 22:03:33.095663 39731 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BH-Vm_viZsjiyJ_z5mvz\n- EFiXLxUWu7q_83o8nB4S\n 3643 \N 200.68.134.49 b9b8fa82-f8f1-46eb-9e49-a6e81a5627fe 2020-09-09 22:03:33.115007 39732 2885 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1051\namount: !ruby/object:BigDecimal 18:0.69E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.69E2\nstatus: 0\ndate_sale: 2020-09-09\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-589\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 2e2add5a-7095-42ee-b303-a85427f076a4 2020-09-09 22:18:11.534108 39733 1912 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.101.127 2e2add5a-7095-42ee-b303-a85427f076a4 2020-09-09 22:18:11.55998 39734 2885 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 158cb909-c27e-4fcc-9346-2e7764a88558 2020-09-09 22:18:30.15974 39735 3866 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1051\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.69E2\nmove_type: '1'\nsale_id: 2885\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-589\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E2\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-589 189.186.101.127 158cb909-c27e-4fcc-9346-2e7764a88558 2020-09-09 22:18:30.179095 39736 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-09-08 20:22:33.103617000 Z\n- &1 2020-09-09 05:51:59.585225000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-09 22:26:38.945009501 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112595\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112595\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 92\n- 93\n 186 \N 189.186.101.127 de02fdb1-79a4-4acf-917b-4322c89573e1 2020-09-09 22:26:38.952769 39737 25 User \N \N 25 User \N update ---\nunique_session_id:\n- 4kTRgueUDi51TFEBcn-x\n- TAUbRabtES1LTaNh6YvU\n 187 \N 189.186.101.127 de02fdb1-79a4-4acf-917b-4322c89573e1 2020-09-09 22:26:38.968338 39738 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-09 19:47:26.548554000 Z\n- &1 2020-09-09 22:03:33.085918000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-09 22:32:43.482675353 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934001\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934001\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 1821\n- 1822\n 3644 \N 189.186.101.127 8e50ed23-0801-4f25-8da1-284a9bb3e00e 2020-09-09 22:32:43.491153 39739 4 User \N \N 4 User \N update ---\nunique_session_id:\n- EFiXLxUWu7q_83o8nB4S\n- ARwivo4GHyyYiyhuhJzx\n 3645 \N 189.186.101.127 8e50ed23-0801-4f25-8da1-284a9bb3e00e 2020-09-09 22:32:43.521516 39740 2886 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1051\namount: !ruby/object:BigDecimal 18:0.689E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.689E3\nstatus: 0\ndate_sale: 2020-09-09\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-590\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 672d3278-9a51-4591-a0bb-930e2293cccc 2020-09-09 23:27:31.290441 39741 2285 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.101.127 672d3278-9a51-4591-a0bb-930e2293cccc 2020-09-09 23:27:31.317077 39742 2886 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 1f410904-b301-4598-af4d-272a47e07dba 2020-09-09 23:27:42.924126 39743 3867 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1051\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.689E3\nmove_type: '1'\nsale_id: 2886\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-590\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-590 189.186.101.127 1f410904-b301-4598-af4d-272a47e07dba 2020-09-09 23:27:42.945759 39744 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-09 22:03:33.085918000 Z\n- &1 2020-09-09 22:32:43.482675000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-09 23:31:21.291789351 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934001\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 1822\n- 1823\n 3646 \N 189.186.101.127 89c749ef-08e7-483b-b753-33aec3197880 2020-09-09 23:31:21.298372 39745 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ARwivo4GHyyYiyhuhJzx\n- SHiHD8KGuHptg6syaqsW\n 3647 \N 189.186.101.127 89c749ef-08e7-483b-b753-33aec3197880 2020-09-09 23:31:21.331049 39746 2887 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1051\namount: !ruby/object:BigDecimal 18:0.119E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.119E3\nstatus: 0\ndate_sale: 2020-09-09\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-591\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 e25a645c-113e-4b2d-aa98-1c6f159cac7b 2020-09-09 23:33:02.624134 39747 2111 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.101.127 e25a645c-113e-4b2d-aa98-1c6f159cac7b 2020-09-09 23:33:02.650543 39748 2887 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 cf35e9c2-4603-46d7-872a-97aba4641261 2020-09-09 23:33:11.858327 39817 2895 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 7e934977-2016-4ece-97af-f5d6b0ba1a4d 2020-09-10 23:50:05.354797 39749 3868 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1051\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.119E3\nmove_type: '1'\nsale_id: 2887\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-591\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.119E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-591 189.186.101.127 cf35e9c2-4603-46d7-872a-97aba4641261 2020-09-09 23:33:11.879215 39750 377 Customer \N \N 21 User \N create ---\nnick_name: BETTY RESPARDO\nphone: ''\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.2E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BETTY RESPARDO fue registrado. 189.186.101.127 a411d019-b653-4c31-a281-cf4e1b938dbf 2020-09-09 23:42:58.423039 39751 2888 Sale \N \N 21 User \N create ---\ncustomer_id: 377\nuser_id: 21\nopen_cash_register_id: 1051\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-09\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-592\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 4bcb4f81-4ad8-42f6-95aa-cc8ed82922a6 2020-09-09 23:43:30.186706 39752 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 55 \N 189.186.101.127 4bcb4f81-4ad8-42f6-95aa-cc8ed82922a6 2020-09-09 23:43:30.215935 39753 3869 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1051\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.51E2\nmove_type: '1'\nsale_id: 2888\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEPOSITO\n 1 \N 189.186.101.127 5878febd-999b-44b8-9e0a-883a701a3ee6 2020-09-09 23:44:05.386485 39754 2888 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.101.127 5878febd-999b-44b8-9e0a-883a701a3ee6 2020-09-09 23:44:05.408047 39755 3869 CashRegistersMove \N \N 21 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV3-V-592 189.186.101.127 5878febd-999b-44b8-9e0a-883a701a3ee6 2020-09-09 23:44:05.418903 39756 1075 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1050\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4386E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.24E4\ncash_fund: !ruby/object:BigDecimal 18:0.1164E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3564E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.57.31 a056a802-0f6f-4d7c-8ec8-d6113216a5d4 2020-09-09 23:58:54.674414 39757 1050 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.57.31 a056a802-0f6f-4d7c-8ec8-d6113216a5d4 2020-09-09 23:58:54.696324 39758 2889 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1051\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-09\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-593\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 298aaf44-10b3-47e4-983f-3a64eb7bf917 2020-09-09 23:59:29.036642 39759 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 56 \N 189.186.101.127 298aaf44-10b3-47e4-983f-3a64eb7bf917 2020-09-09 23:59:29.061949 39760 2889 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 cb47366b-cd1e-4d88-8b03-33035ef32ab6 2020-09-09 23:59:40.800015 39761 3870 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1051\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2889\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-593\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-593 189.186.101.127 cb47366b-cd1e-4d88-8b03-33035ef32ab6 2020-09-09 23:59:40.821677 39762 2890 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1051\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-09\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-594\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 7d20416a-8ee7-4d7f-bd14-ee0d3fb19d08 2020-09-10 00:25:13.782933 39763 2062 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.101.127 7d20416a-8ee7-4d7f-bd14-ee0d3fb19d08 2020-09-10 00:25:13.810001 39764 2890 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 c29f1470-bf73-4ffa-a50d-d3479927bcd9 2020-09-10 00:27:55.916786 39765 3871 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1051\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2890\ncardnumber: 7546\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-594\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-594 189.186.101.127 c29f1470-bf73-4ffa-a50d-d3479927bcd9 2020-09-10 00:27:55.937935 39766 1343 Product \N \N 21 User \N create ---\nsku: BLU-1343\nname: BLS-0142\ndescription: BLUSA FLORES MULTICOLOR APEACH\nprice_base: !ruby/object:BigDecimal 18:0.319E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1343 fue creado. 189.186.101.127 20a047ed-983f-4ba1-a993-2d1d078c4b7c 2020-09-10 01:04:12.769343 39767 1343 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001343'\n 2 \N 189.186.101.127 20a047ed-983f-4ba1-a993-2d1d078c4b7c 2020-09-10 01:04:12.815801 39768 2291 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1343\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.101.127 20a047ed-983f-4ba1-a993-2d1d078c4b7c 2020-09-10 01:04:12.844685 39769 387 Purchase \N \N 21 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-94\namount: !ruby/object:BigDecimal 18:0.1914E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1914E4\nobservations: ''\npurchase_date: 2020-09-09\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-94 por $ 1914.0 MXN creada. 189.186.101.127 8e43302a-160d-4943-b6bb-74f7b70e222e 2020-09-10 01:04:19.891186 39771 2891 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1051\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-09-09\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-595\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 a6eef8b7-e6d6-4581-8978-4a8e31a2f880 2020-09-10 01:04:52.110861 39772 2291 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.101.127 a6eef8b7-e6d6-4581-8978-4a8e31a2f880 2020-09-10 01:04:52.138773 39773 2891 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 0687c0ef-53d3-4b7f-af19-c12a7def607b 2020-09-10 01:05:01.902834 39774 3872 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1051\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 2891\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-595\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-595 189.186.101.127 0687c0ef-53d3-4b7f-af19-c12a7def607b 2020-09-10 01:05:01.924509 39775 1076 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1051\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.7643E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.43E4\ncash_fund: !ruby/object:BigDecimal 18:0.613E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4913E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.101.127 71542376-261e-4144-ac7c-d4e606b7cd2e 2020-09-10 01:08:15.998797 39776 1051 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.101.127 71542376-261e-4144-ac7c-d4e606b7cd2e 2020-09-10 01:08:16.011614 39777 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-09 22:32:43.482675000 Z\n- &1 2020-09-09 23:31:21.291789000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-10 02:58:36.158676710 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539183\n mask_addr: 4294967295\nsign_in_count:\n- 1823\n- 1824\n 3648 \N 177.228.116.47 406177ca-013e-41b0-a9e5-4973432a02c7 2020-09-10 02:58:36.165978 39778 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SHiHD8KGuHptg6syaqsW\n- LFKxA5poopycHgr8PxRF\n 3649 \N 177.228.116.47 406177ca-013e-41b0-a9e5-4973432a02c7 2020-09-10 02:58:36.186506 39779 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-09 23:31:21.291789000 Z\n- &1 2020-09-10 02:58:36.158676000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-10 04:50:24.437033295 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539183\n mask_addr: 4294967295\nsign_in_count:\n- 1824\n- 1825\n 3650 \N 177.228.116.47 a407b194-570b-4d28-a353-4e956a4212ba 2020-09-10 04:50:24.445906 39780 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LFKxA5poopycHgr8PxRF\n- FqUhKxaLUKYFk7JK6Y-X\n 3651 \N 177.228.116.47 a407b194-570b-4d28-a353-4e956a4212ba 2020-09-10 04:50:24.464347 39781 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-08 21:20:53.612785000 Z\n- &1 2020-09-09 15:52:23.992840000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-10 16:28:07.325412400 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\nsign_in_count:\n- 639\n- 640\n 1283 \N 187.149.57.31 ff000fb0-0adc-4ca4-97df-e476ba3b2cba 2020-09-10 16:28:07.355768 39782 2 User \N \N 2 User \N update ---\nunique_session_id:\n- oysFEPfznMZuw9zMzs2R\n- pMmBDGVu4EUYKKmQvgyd\n 1284 \N 187.149.57.31 ff000fb0-0adc-4ca4-97df-e476ba3b2cba 2020-09-10 16:28:07.380528 39783 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-02 00:55:43.779558000 Z\n- &1 2020-09-02 01:29:12.109921000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-10 19:05:36.036374477 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 205\n- 206\n 413 \N 189.186.101.127 0db592c3-a92f-45ca-ab65-74944ba105c6 2020-09-10 19:05:36.042626 39784 18 User \N \N 18 User \N update ---\nunique_session_id:\n- N2jR1MezCJmsJ4oZQXEY\n- yGMTZi8SstyAKp8BpvJd\n 414 \N 189.186.101.127 0db592c3-a92f-45ca-ab65-74944ba105c6 2020-09-10 19:05:36.057155 39785 1052 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.613E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 613.0 189.186.101.127 db67b0a0-1895-46e7-809b-886431f5aa8b 2020-09-10 19:06:28.174554 39786 2892 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1052\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-10\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-596\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 dd7bfdfe-bd95-4100-b55a-b8e236702db8 2020-09-10 19:25:48.829501 39787 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.15E2\n 16 \N 189.186.101.127 dd7bfdfe-bd95-4100-b55a-b8e236702db8 2020-09-10 19:25:48.861809 39788 2892 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 383cce56-1aa7-4ba2-82cd-9cff7a5e81c7 2020-09-10 19:25:57.803444 39789 3873 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1052\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2892\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-596\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-596 189.186.101.127 383cce56-1aa7-4ba2-82cd-9cff7a5e81c7 2020-09-10 19:25:57.826937 39790 1053 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1164E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1164.0 187.149.57.31 1d248868-866b-4024-a925-5b9f1c6c3cb9 2020-09-10 19:34:09.528364 39791 2893 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1053\namount: !ruby/object:BigDecimal 18:0.1628E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1628E4\nstatus: 0\ndate_sale: 2020-09-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1377\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 b53e2985-4575-4600-9290-ade618c4c3c0 2020-09-10 19:38:59.973148 39792 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.15E2\n 29 \N 187.149.57.31 b53e2985-4575-4600-9290-ade618c4c3c0 2020-09-10 19:39:00.030485 39795 3874 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1053\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1628E4\nmove_type: '1'\nsale_id: 2893\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1377\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1628E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1377 187.149.57.31 7657094d-58ea-445b-8c95-0590234fd16a 2020-09-10 19:39:06.615261 39796 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-10 02:58:36.158676000 Z\n- &1 2020-09-10 04:50:24.437033000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-10 20:29:51.175804665 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539183\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 1825\n- 1826\n 3652 \N 189.186.101.127 47ca2b65-b1f6-44a9-9ec1-51266b48f7aa 2020-09-10 20:29:51.184643 39797 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FqUhKxaLUKYFk7JK6Y-X\n- jQfA9qUwQFQ-aVeh7thu\n 3653 \N 189.186.101.127 47ca2b65-b1f6-44a9-9ec1-51266b48f7aa 2020-09-10 20:29:51.201887 39798 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-02 01:29:12.109921000 Z\n- &1 2020-09-10 19:05:36.036374000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-10 22:31:01.525224935 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 206\n- 207\n 415 \N 189.186.101.127 90c6faf0-8eed-4f58-a323-0c8d45e0fa13 2020-09-10 22:31:01.546067 39799 18 User \N \N 18 User \N update ---\nunique_session_id:\n- yGMTZi8SstyAKp8BpvJd\n- NDso3RjyshiyJX85GyLC\n 416 \N 189.186.101.127 90c6faf0-8eed-4f58-a323-0c8d45e0fa13 2020-09-10 22:31:01.565346 39800 3875 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1052\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2845\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '55665'\n 1 movimiento de efectivo por venta con folio PV3-V-570 189.186.101.127 792adf57-4c3e-47c5-bfda-49a85575272f 2020-09-10 22:32:04.139031 39801 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 22:10:45.525459000 Z\n- &1 2020-09-03 22:53:44.266643000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-10 22:33:29.406721436 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 151\n- 152\n 304 \N 189.186.101.127 a6ad27e6-4aea-4001-b3b3-f2323bcec271 2020-09-10 22:33:29.413643 39802 9 User \N \N 9 User \N update ---\nunique_session_id:\n- ZApMdayyK4Yu_ji3wzyt\n- 8v-4ydzvv2DsKoBtuCe3\n 305 \N 189.186.101.127 a6ad27e6-4aea-4001-b3b3-f2323bcec271 2020-09-10 22:33:29.431133 39803 3876 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1053\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 2870\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1552'\n 1 movimiento de efectivo por venta con folio PV1-V-1365 189.186.101.127 5bfb2c83-c94d-4872-9a92-2915c96c4195 2020-09-10 22:50:28.622977 39804 2870 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.101.127 a4a52ac5-463a-4363-a7d5-e59a34bfdbe8 2020-09-10 22:50:30.172538 39805 2260 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.57.31 9bcf29be-a060-4ae4-abee-304e38272ee4 2020-09-10 22:59:55.890644 39806 2260 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 187.149.57.31 790941b0-dfe7-48b3-9f80-f359e3c0ba55 2020-09-10 22:59:59.753867 39807 2259 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.57.31 798493f3-6382-4c16-9017-1d9975ade923 2020-09-10 23:00:46.165417 39808 673 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-09-10\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.57.31 7a979162-f7c7-4b00-8f35-0c6872f04a03 2020-09-10 23:01:41.71222 39809 2894 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1053\namount: !ruby/object:BigDecimal 18:0.189E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.189E3\nstatus: 0\ndate_sale: 2020-09-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1378\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 842ec383-b09c-4775-a635-7809b40bd776 2020-09-10 23:10:44.107703 39810 2125 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.57.31 842ec383-b09c-4775-a635-7809b40bd776 2020-09-10 23:10:44.136844 39811 2894 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 b617219f-6a73-4f2f-a034-239c4ee59c7c 2020-09-10 23:10:48.18534 39812 3877 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1053\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.189E3\nmove_type: '1'\nsale_id: 2894\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1378\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.189E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1378 187.149.57.31 b617219f-6a73-4f2f-a034-239c4ee59c7c 2020-09-10 23:10:48.206149 39813 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-10 04:50:24.437033000 Z\n- &1 2020-09-10 20:29:51.175804000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-10 23:45:56.807763052 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539183\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 1826\n- 1827\n 3654 \N 189.186.101.127 3e8ac793-d1a1-47f8-9e5b-ffc44638c545 2020-09-10 23:45:56.825973 39814 4 User \N \N 4 User \N update ---\nunique_session_id:\n- jQfA9qUwQFQ-aVeh7thu\n- sFsT9LrvgJbmYRvxx59N\n 3655 \N 189.186.101.127 3e8ac793-d1a1-47f8-9e5b-ffc44638c545 2020-09-10 23:45:56.847002 39815 2895 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1053\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1379\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 5766b71d-035a-4d09-8521-77fbaece8649 2020-09-10 23:49:40.844668 39816 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 30 \N 187.149.57.31 5766b71d-035a-4d09-8521-77fbaece8649 2020-09-10 23:49:40.872551 39818 3878 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1053\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2895\ncardnumber: 5312\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1379\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1379 187.149.57.31 7e934977-2016-4ece-97af-f5d6b0ba1a4d 2020-09-10 23:50:05.379697 39819 1077 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1053\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4615E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.981E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2981E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.57.31 f6bc8828-6148-4206-9012-d17e1fda0859 2020-09-11 00:04:46.276987 39820 1053 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.57.31 f6bc8828-6148-4206-9012-d17e1fda0859 2020-09-11 00:04:46.29174 39821 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-10 19:05:36.036374000 Z\n- &1 2020-09-10 22:31:01.525224000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-11 00:40:11.065029739 Z\nsign_in_count:\n- 207\n- 208\n 417 \N 189.186.101.127 83671b41-94d2-47d9-b72c-aaa1a7c0ad62 2020-09-11 00:40:11.07166 39822 18 User \N \N 18 User \N update ---\nunique_session_id:\n- NDso3RjyshiyJX85GyLC\n- aWpEWZ-EniN5kfcGpwac\n 418 \N 189.186.101.127 83671b41-94d2-47d9-b72c-aaa1a7c0ad62 2020-09-11 00:40:11.087291 39823 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-03 22:53:44.266643000 Z\n- &1 2020-09-10 22:33:29.406721000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-11 00:41:04.234328799 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 152\n- 153\n 306 \N 189.186.101.127 4f690ac3-49c2-429e-9d7c-9c20bf6f7c42 2020-09-11 00:41:04.242282 39824 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 8v-4ydzvv2DsKoBtuCe3\n- ttTQenbigtxm6YNsqJhF\n 307 \N 189.186.101.127 4f690ac3-49c2-429e-9d7c-9c20bf6f7c42 2020-09-11 00:41:04.2615 39825 1054 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.981E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 981.0 189.186.101.127 be335c19-0efd-423a-b1f9-9380b0a8a651 2020-09-11 00:41:07.927552 39826 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-10 22:31:01.525224000 Z\n- &1 2020-09-11 00:40:11.065029000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-11 00:42:07.016503874 Z\nsign_in_count:\n- 208\n- 209\n 419 \N 189.186.101.127 9e7acc17-45a1-4428-8a71-703407205b74 2020-09-11 00:42:07.022827 39827 18 User \N \N 18 User \N update ---\nunique_session_id:\n- aWpEWZ-EniN5kfcGpwac\n- jXZmvxQiTXFtELyxJcLc\n 420 \N 189.186.101.127 9e7acc17-45a1-4428-8a71-703407205b74 2020-09-11 00:42:07.037327 39828 2896 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1052\namount: !ruby/object:BigDecimal 18:0.164124E4\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1648E4\nstatus: 0\ndate_sale: 2020-09-10\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-597\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 73016b18-1bc7-49a3-8d39-ae23b47c3db7 2020-09-11 00:45:03.768163 39829 1483 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.101.127 73016b18-1bc7-49a3-8d39-ae23b47c3db7 2020-09-11 00:45:03.796049 39830 818 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.48E2\n- !ruby/object:BigDecimal 18:0.47E2\n 25 \N 189.186.101.127 73016b18-1bc7-49a3-8d39-ae23b47c3db7 2020-09-11 00:45:03.819034 39831 2896 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 bd2208df-d96a-4488-b08e-2ccb5447e8d8 2020-09-11 00:45:10.266359 39832 3879 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1052\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1648E4\nmove_type: '1'\nsale_id: 2896\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-597\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.18E4\nchange: !ruby/object:BigDecimal 18:0.152E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-597 189.186.101.127 bd2208df-d96a-4488-b08e-2ccb5447e8d8 2020-09-11 00:45:10.288543 39833 2897 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1052\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3E3\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-09-10\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-598\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 3b4aa975-f455-4ea4-88c8-e8980a31a65f 2020-09-11 01:02:41.959071 39834 1552 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 6 \N 189.186.101.127 3b4aa975-f455-4ea4-88c8-e8980a31a65f 2020-09-11 01:02:41.987574 39835 2897 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 2c72079d-1879-4629-8e7c-302786607876 2020-09-11 01:03:12.784811 39836 3880 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1052\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 2897\ncardnumber: 1526\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-598\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-598 189.186.101.127 2c72079d-1879-4629-8e7c-302786607876 2020-09-11 01:03:12.805923 39837 2898 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1052\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-10\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-599\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 c91765e0-3c8f-4073-a19a-48fd67c15f07 2020-09-11 01:13:26.968554 39838 2030 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.101.127 c91765e0-3c8f-4073-a19a-48fd67c15f07 2020-09-11 01:13:27.01047 39839 2898 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-599 cancelada. 189.186.101.127 c26bebd9-3b4c-4c7d-a513-efdc873d2f8f 2020-09-11 01:13:33.517836 39840 2030 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.101.127 c26bebd9-3b4c-4c7d-a513-efdc873d2f8f 2020-09-11 01:13:33.542041 39891 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-11 00:42:07.016503000 Z\n- &1 2020-09-11 20:30:58.554183000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-11 20:38:27.154998959 Z\nsign_in_count:\n- 210\n- 211\n 423 \N 189.186.101.127 d9b354a1-69d2-47b8-99a1-becd826d9623 2020-09-11 20:38:27.161435 39841 2899 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1052\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-10\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-600\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 a3f1e720-c581-4744-a6a8-40ad2fed86fb 2020-09-11 01:14:58.097211 39842 2030 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.101.127 a3f1e720-c581-4744-a6a8-40ad2fed86fb 2020-09-11 01:14:58.127109 39843 2899 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 7e0b04f0-9c69-4ee1-a542-7340db6374d8 2020-09-11 01:15:26.230791 39844 3881 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1052\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2899\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-600\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '15526'\n 1 movimiento de efectivo por venta con folio PV3-V-600 189.186.101.127 7e0b04f0-9c69-4ee1-a542-7340db6374d8 2020-09-11 01:15:26.253354 39845 1078 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1052\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.5745E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.27E4\ncash_fund: !ruby/object:BigDecimal 18:0.56E3\nphysical_cash: !ruby/object:BigDecimal 18:0.326E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.101.127 38aff5ac-d90c-41c2-a777-69e1a2c0dd9c 2020-09-11 01:26:35.345676 39846 1052 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.101.127 38aff5ac-d90c-41c2-a777-69e1a2c0dd9c 2020-09-11 01:26:35.358619 39847 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-10 22:33:29.406721000 Z\n- &1 2020-09-11 00:41:04.234328000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-11 01:27:08.281346418 Z\nsign_in_count:\n- 153\n- 154\n 308 \N 189.186.101.127 20ed3d9f-eb18-4f9f-b3f4-a785065bee78 2020-09-11 01:27:08.288008 39848 9 User \N \N 9 User \N update ---\nunique_session_id:\n- ttTQenbigtxm6YNsqJhF\n- AkU2J2ujwb_4kophuVTJ\n 309 \N 189.186.101.127 20ed3d9f-eb18-4f9f-b3f4-a785065bee78 2020-09-11 01:27:08.312873 39849 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-10 20:29:51.175804000 Z\n- &1 2020-09-10 23:45:56.807763000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-11 01:28:02.300333951 Z\nsign_in_count:\n- 1827\n- 1828\n 3656 \N 189.186.101.127 6986f7d0-5e29-448e-a9f9-aa14e7464339 2020-09-11 01:28:02.306734 39850 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sFsT9LrvgJbmYRvxx59N\n- LbX--AnPLiyRxA-EXENt\n 3657 \N 189.186.101.127 6986f7d0-5e29-448e-a9f9-aa14e7464339 2020-09-11 01:28:02.323217 39851 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-11 00:41:04.234328000 Z\n- &1 2020-09-11 01:27:08.281346000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-11 01:29:36.204547594 Z\nsign_in_count:\n- 154\n- 155\n 310 \N 189.186.101.127 9569c04d-6ba2-409a-ad9d-073bf9616e87 2020-09-11 01:29:36.2119 39852 9 User \N \N 9 User \N update ---\nunique_session_id:\n- AkU2J2ujwb_4kophuVTJ\n- 5uxVj8zMEX4Btk2ys6sS\n 311 \N 189.186.101.127 9569c04d-6ba2-409a-ad9d-073bf9616e87 2020-09-11 01:29:36.226007 39853 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-09 15:52:23.992840000 Z\n- &1 2020-09-10 16:28:07.325412000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-11 16:51:53.123341645 Z\nsign_in_count:\n- 640\n- 641\n 1285 \N 187.149.57.31 02ad4281-c63e-40cf-b3c1-9b972f5c64fe 2020-09-11 16:51:53.149971 39854 2 User \N \N 2 User \N update ---\nunique_session_id:\n- pMmBDGVu4EUYKKmQvgyd\n- GCexni8fynEgs332XDxj\n 1286 \N 187.149.57.31 02ad4281-c63e-40cf-b3c1-9b972f5c64fe 2020-09-11 16:51:53.170947 39855 2900 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1054\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-09-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1380\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 9aacc2b1-a422-4ce8-aa2e-ecb7b1ba40c4 2020-09-11 16:52:26.082312 39856 2236 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.57.31 9aacc2b1-a422-4ce8-aa2e-ecb7b1ba40c4 2020-09-11 16:52:26.108757 39857 2900 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 d69f0b60-5324-42a4-8cab-2da32cf9b6df 2020-09-11 16:52:30.773183 39858 3882 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1054\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 2900\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1380\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1380 187.149.57.31 d69f0b60-5324-42a4-8cab-2da32cf9b6df 2020-09-11 16:52:30.793669 39859 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-10 23:45:56.807763000 Z\n- &1 2020-09-11 01:28:02.300333000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-11 18:31:55.014835044 Z\nsign_in_count:\n- 1828\n- 1829\n 3658 \N 189.186.101.127 3c6cb689-9f60-4be6-ad33-e223ad37f32b 2020-09-11 18:31:55.04584 39860 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LbX--AnPLiyRxA-EXENt\n- ymrSUMCjKeabumEyX-7v\n 3659 \N 189.186.101.127 3c6cb689-9f60-4be6-ad33-e223ad37f32b 2020-09-11 18:31:55.07126 39861 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-11 00:40:11.065029000 Z\n- &1 2020-09-11 00:42:07.016503000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-11 20:30:58.554183660 Z\nsign_in_count:\n- 209\n- 210\n 421 \N 189.186.101.127 7e0fbc09-0c2b-40ee-a6f8-9eedfa5cfc8f 2020-09-11 20:30:58.560567 39862 18 User \N \N 18 User \N update ---\nunique_session_id:\n- jXZmvxQiTXFtELyxJcLc\n- q3nHW4ZTmg-dzk7Wy3Fy\n 422 \N 189.186.101.127 7e0fbc09-0c2b-40ee-a6f8-9eedfa5cfc8f 2020-09-11 20:30:58.577334 39863 1055 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.56E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 560.0 189.186.101.127 6325a1f7-bb2c-4739-bfa3-14cafcbb00d1 2020-09-11 20:31:45.268612 39864 2901 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1055\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-09-11\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-601\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 3386a318-df45-4cb0-b782-49ed3d99f946 2020-09-11 20:31:58.314708 39865 1528 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 189.186.101.127 3386a318-df45-4cb0-b782-49ed3d99f946 2020-09-11 20:31:58.35049 39866 2901 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 75b58a4f-2ae3-4561-bdde-7ebc48f7abae 2020-09-11 20:32:02.594514 39867 3883 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1055\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 2901\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-601\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-601 189.186.101.127 75b58a4f-2ae3-4561-bdde-7ebc48f7abae 2020-09-11 20:32:02.618568 39868 378 Customer \N \N 18 User \N create ---\nnick_name: JENNIFER MODELO\nphone: "(667) 197-8685"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JENNIFER MODELO fue registrado. 189.186.101.127 0af34b48-2dd4-4678-98a6-917a4810a759 2020-09-11 20:33:48.220551 39869 2902 Sale \N \N 18 User \N create ---\ncustomer_id: 378\nuser_id: 18\nopen_cash_register_id: 1055\namount: !ruby/object:BigDecimal 18:0.1098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1098E4\nstatus: 0\ndate_sale: 2020-09-11\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-602\nexpiration_date: 2020-10-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 2aedd35c-9321-43d8-a5eb-bfc2318a360c 2020-09-11 20:34:22.492987 39870 1528 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 189.186.101.127 2aedd35c-9321-43d8-a5eb-bfc2318a360c 2020-09-11 20:34:22.517496 39871 834 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 16 \N 189.186.101.127 2aedd35c-9321-43d8-a5eb-bfc2318a360c 2020-09-11 20:34:22.538278 39872 3884 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1055\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 2902\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-602\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-602 189.186.101.127 a4e79a14-1528-4446-b0f7-beac2c82cdac 2020-09-11 20:34:33.998569 39873 2902 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-602 cancelada. 189.186.101.127 d70b5973-5081-445a-82c1-362530da4cc5 2020-09-11 20:34:39.519271 39874 834 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.8E1\n 17 \N 189.186.101.127 d70b5973-5081-445a-82c1-362530da4cc5 2020-09-11 20:34:39.542414 39875 1528 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 14 \N 189.186.101.127 d70b5973-5081-445a-82c1-362530da4cc5 2020-09-11 20:34:39.563026 39876 379 Customer \N \N 18 User \N create ---\nnick_name: JENNIFER MODELO CREDITO\nphone: "(667) 125-2525"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JENNIFER MODELO CREDITO fue registrado. 189.186.101.127 ed5e6096-4e6b-468e-ae2b-637848a1ea44 2020-09-11 20:35:01.453443 39877 380 Customer \N \N 18 User \N create ---\nnick_name: JENNIFER CREDITO\nphone: "(667) 785-8585"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.3E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JENNIFER CREDITO fue registrado. 189.186.101.127 43b50be0-8b84-4e34-b9db-2d5156152004 2020-09-11 20:35:36.040704 39878 2903 Sale \N \N 18 User \N create ---\ncustomer_id: 380\nuser_id: 18\nopen_cash_register_id: 1055\namount: !ruby/object:BigDecimal 18:0.1098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1098E4\nstatus: 0\ndate_sale: 2020-09-11\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-603\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 c8ca02d6-9a2a-48b3-a95b-d3e5e7878a47 2020-09-11 20:35:54.452515 39879 1528 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 15 \N 189.186.101.127 c8ca02d6-9a2a-48b3-a95b-d3e5e7878a47 2020-09-11 20:35:54.501577 39880 834 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 18 \N 189.186.101.127 c8ca02d6-9a2a-48b3-a95b-d3e5e7878a47 2020-09-11 20:35:54.527906 39881 2903 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-603 cancelada. 189.186.101.127 0451853b-3e3c-4ae6-b17a-2cf24f8bd098 2020-09-11 20:36:00.71448 39882 834 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.8E1\n 19 \N 189.186.101.127 0451853b-3e3c-4ae6-b17a-2cf24f8bd098 2020-09-11 20:36:00.748884 39883 1528 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 16 \N 189.186.101.127 0451853b-3e3c-4ae6-b17a-2cf24f8bd098 2020-09-11 20:36:00.778212 39884 2904 Sale \N \N 18 User \N create ---\ncustomer_id: 380\nuser_id: 18\nopen_cash_register_id: 1055\namount: !ruby/object:BigDecimal 18:0.1098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1098E4\nstatus: 0\ndate_sale: 2020-09-11\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-604\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 5d5112f1-f16f-4f2d-9d7c-14d09c7999c5 2020-09-11 20:36:27.647581 39885 1528 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 17 \N 189.186.101.127 5d5112f1-f16f-4f2d-9d7c-14d09c7999c5 2020-09-11 20:36:27.678328 39886 834 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 20 \N 189.186.101.127 5d5112f1-f16f-4f2d-9d7c-14d09c7999c5 2020-09-11 20:36:27.702203 39887 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-11 01:27:08.281346000 Z\n- &1 2020-09-11 01:29:36.204547000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-11 20:36:47.907729911 Z\nsign_in_count:\n- 155\n- 156\n 312 \N 189.186.101.127 714d6870-e0f0-4b10-80aa-dc5e34b7f410 2020-09-11 20:36:47.913748 39888 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 5uxVj8zMEX4Btk2ys6sS\n- 9RX97YhD-KksDd5uyEYG\n 313 \N 189.186.101.127 714d6870-e0f0-4b10-80aa-dc5e34b7f410 2020-09-11 20:36:47.928466 39889 2905 Sale \N \N 9 User \N create ---\ncustomer_id: 380\nuser_id: 9\nopen_cash_register_id: 1054\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-09-11\nsaletype: 0\nseller_id: 3\nsale_code: PV1-V-1381\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 ca609be9-0ee0-4657-bd08-bb2f8d29efc7 2020-09-11 20:37:59.049994 39890 637 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.101.127 ca609be9-0ee0-4657-bd08-bb2f8d29efc7 2020-09-11 20:37:59.077685 39892 18 User \N \N 18 User \N update ---\nunique_session_id:\n- q3nHW4ZTmg-dzk7Wy3Fy\n- SMRyfjLyzavPUZn4Apvv\n 424 \N 189.186.101.127 d9b354a1-69d2-47b8-99a1-becd826d9623 2020-09-11 20:38:27.174136 39893 2906 Sale \N \N 18 User \N create ---\ncustomer_id: 377\nuser_id: 18\nopen_cash_register_id: 1055\namount: !ruby/object:BigDecimal 18:0.299E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.299E3\nstatus: 0\ndate_sale: 2020-09-11\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-605\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 184f9e34-63e2-4f69-bb98-e7eef64cd13d 2020-09-11 20:38:53.211956 39894 834 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 21 \N 189.186.101.127 184f9e34-63e2-4f69-bb98-e7eef64cd13d 2020-09-11 20:38:53.236934 39895 2907 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1054\namount: !ruby/object:BigDecimal 18:0.1178E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1178E4\nstatus: 0\ndate_sale: 2020-09-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1382\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 c6a66e61-9a9d-458a-8e55-497fc5938ba0 2020-09-11 21:43:22.7765 39896 2240 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.57.31 c6a66e61-9a9d-458a-8e55-497fc5938ba0 2020-09-11 21:43:22.810567 39897 2263 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.57.31 c6a66e61-9a9d-458a-8e55-497fc5938ba0 2020-09-11 21:43:22.839536 39898 2907 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 fd9d5051-6e10-4966-a62f-2a5ab2482313 2020-09-11 21:43:29.868314 39899 3885 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1054\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1178E4\nmove_type: '1'\nsale_id: 2907\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1382\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1178E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1382 187.149.57.31 fd9d5051-6e10-4966-a62f-2a5ab2482313 2020-09-11 21:43:29.887912 39900 2908 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1055\namount: !ruby/object:BigDecimal 18:0.1198E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1198E4\nstatus: 0\ndate_sale: 2020-09-11\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-606\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 a076bc74-fa9e-41b1-b20c-343d16bd2517 2020-09-11 22:14:44.693993 39901 2280 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 189.186.101.127 a076bc74-fa9e-41b1-b20c-343d16bd2517 2020-09-11 22:14:44.719672 39902 2291 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.101.127 a076bc74-fa9e-41b1-b20c-343d16bd2517 2020-09-11 22:14:44.742932 39903 2908 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 42997625-b1c7-4fd7-a3c8-f62bd51baab2 2020-09-11 22:16:14.556995 39904 3886 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1055\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1198E4\nmove_type: '1'\nsale_id: 2908\ncardnumber: 1525\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-606\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-606 189.186.101.127 42997625-b1c7-4fd7-a3c8-f62bd51baab2 2020-09-11 22:16:14.578056 39905 2909 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1055\namount: !ruby/object:BigDecimal 18:0.399E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.399E3\nstatus: 0\ndate_sale: 2020-09-11\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-607\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 fe599f3e-a6a3-4de0-ab71-154052f23be1 2020-09-11 22:22:58.329977 39906 2279 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.101.127 fe599f3e-a6a3-4de0-ab71-154052f23be1 2020-09-11 22:22:58.359815 39907 2909 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 82a9beae-f49b-485a-8e90-a6d829c44289 2020-09-11 22:23:37.387307 39908 3887 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1055\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.399E3\nmove_type: '1'\nsale_id: 2909\ncardnumber: 4555\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-607\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-607 189.186.101.127 82a9beae-f49b-485a-8e90-a6d829c44289 2020-09-11 22:23:37.409856 39909 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-11 01:28:02.300333000 Z\n- &1 2020-09-11 18:31:55.014835000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-11 22:27:51.352081382 Z\nsign_in_count:\n- 1829\n- 1830\n 3660 \N 189.186.101.127 48dac445-73b9-43b8-a469-5f266a7dc81b 2020-09-11 22:27:51.357851 39910 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ymrSUMCjKeabumEyX-7v\n- bE78EELRZRWHy1Sufow-\n 3661 \N 189.186.101.127 48dac445-73b9-43b8-a469-5f266a7dc81b 2020-09-11 22:27:51.376628 39911 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-11 20:30:58.554183000 Z\n- &1 2020-09-11 20:38:27.154998000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-11 23:30:50.815505997 Z\nsign_in_count:\n- 211\n- 212\n 425 \N 189.186.101.127 6a9782f5-7abd-4cbc-8831-b14d17ab0152 2020-09-11 23:30:50.821966 39912 18 User \N \N 18 User \N update ---\nunique_session_id:\n- SMRyfjLyzavPUZn4Apvv\n- 69YBvT4L6_bErPvXRxMV\n 426 \N 189.186.101.127 6a9782f5-7abd-4cbc-8831-b14d17ab0152 2020-09-11 23:30:50.837592 39913 2910 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1055\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-11\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-608\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 3bc9383d-ba06-448c-927d-4db096bf91f5 2020-09-11 23:31:43.75548 39914 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 17 \N 189.186.101.127 3bc9383d-ba06-448c-927d-4db096bf91f5 2020-09-11 23:31:43.785553 39915 2910 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 e2e1fe8c-a7fd-4a7b-8a7f-b48cfbe41a3c 2020-09-11 23:31:54.870221 39940 1057 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.659E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 659.0 189.186.101.127 8f9e6f29-baef-4682-82da-b53ca2fcf3fc 2020-09-12 20:33:06.387925 39916 3888 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1055\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2910\ncardnumber: 1565\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-608\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-608 189.186.101.127 e2e1fe8c-a7fd-4a7b-8a7f-b48cfbe41a3c 2020-09-11 23:31:54.894205 39917 1079 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1054\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1877E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.858E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2858E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.57.31 5e92ee23-e872-4ceb-b23f-24b57d986daa 2020-09-11 23:45:35.955272 39918 1054 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.57.31 5e92ee23-e872-4ceb-b23f-24b57d986daa 2020-09-11 23:45:35.972409 39919 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-11 18:31:55.014835000 Z\n- &1 2020-09-11 22:27:51.352081000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-11 23:51:46.558832070 Z\nsign_in_count:\n- 1830\n- 1831\n 3662 \N 189.186.101.127 40161ef4-e9d1-4c75-ab2c-37800479f724 2020-09-11 23:51:46.564411 39920 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bE78EELRZRWHy1Sufow-\n- RgEiLcWtEh_EFExytyay\n 3663 \N 189.186.101.127 40161ef4-e9d1-4c75-ab2c-37800479f724 2020-09-11 23:51:46.579393 39921 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-11 22:27:51.352081000 Z\n- &1 2020-09-11 23:51:46.558832000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-12 00:28:09.265712006 Z\nsign_in_count:\n- 1831\n- 1832\n 3664 \N 189.186.101.127 f709e3bb-3bdc-442e-a426-9d2646fa680f 2020-09-12 00:28:09.271186 39922 4 User \N \N 4 User \N update ---\nunique_session_id:\n- RgEiLcWtEh_EFExytyay\n- FPVuu3MXCkFPp4FYsZRR\n 3665 \N 189.186.101.127 f709e3bb-3bdc-442e-a426-9d2646fa680f 2020-09-12 00:28:09.286592 39923 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-11 20:38:27.154998000 Z\n- &1 2020-09-11 23:30:50.815505000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-12 00:57:23.895226292 Z\nsign_in_count:\n- 212\n- 213\n 427 \N 189.186.101.127 7fd1ec22-735b-4f1c-bbee-a175b5a68e8e 2020-09-12 00:57:23.901276 39924 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 69YBvT4L6_bErPvXRxMV\n- sQYPMS-wFLgqHnBEmr9j\n 428 \N 189.186.101.127 7fd1ec22-735b-4f1c-bbee-a175b5a68e8e 2020-09-12 00:57:23.915693 39925 1080 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1055\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.3395E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.659E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1359E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.101.127 ba81a70b-1d6f-4545-90f0-a97e226c5679 2020-09-12 01:03:26.496705 39926 1055 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.101.127 ba81a70b-1d6f-4545-90f0-a97e226c5679 2020-09-12 01:03:26.510462 39927 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-11 23:51:46.558832000 Z\n- &1 2020-09-12 00:28:09.265712000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-12 03:23:54.671518830 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534500\n mask_addr: 4294967295\nsign_in_count:\n- 1832\n- 1833\n 3666 \N 177.228.97.228 1aacc2a4-dbe1-4c9c-b730-e49caa096dc8 2020-09-12 03:23:54.678683 39928 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FPVuu3MXCkFPp4FYsZRR\n- 1RJzxBczRNW5Zxax-Bmx\n 3667 \N 177.228.97.228 1aacc2a4-dbe1-4c9c-b730-e49caa096dc8 2020-09-12 03:23:54.695446 39929 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-10 16:28:07.325412000 Z\n- &1 2020-09-11 16:51:53.123341000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-12 18:23:08.067030011 Z\nsign_in_count:\n- 641\n- 642\n 1287 \N 187.149.57.31 4cdea529-e0d0-4215-b589-686b85c53998 2020-09-12 18:23:08.093785 39930 2 User \N \N 2 User \N update ---\nunique_session_id:\n- GCexni8fynEgs332XDxj\n- RMdhEubNV2f2zrnPeSZS\n 1288 \N 187.149.57.31 4cdea529-e0d0-4215-b589-686b85c53998 2020-09-12 18:23:08.116266 39931 1056 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.858E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 858.0 187.149.57.31 969dc625-2aa3-415b-ab80-cebb3c61888d 2020-09-12 18:23:36.103294 39932 2911 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1056\namount: !ruby/object:BigDecimal 18:0.969E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.969E3\nstatus: 0\ndate_sale: 2020-09-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1383\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 31396cb0-f377-49ba-bd55-e2e844905e78 2020-09-12 18:24:54.847404 39933 2249 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.57.31 31396cb0-f377-49ba-bd55-e2e844905e78 2020-09-12 18:24:54.876235 39934 2911 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 c03d9368-2d6b-4ebd-b221-11705280508c 2020-09-12 18:25:29.678633 39935 3889 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1056\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.969E3\nmove_type: '1'\nsale_id: 2911\ncardnumber: 7192\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1383\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1383 187.149.57.31 c03d9368-2d6b-4ebd-b221-11705280508c 2020-09-12 18:25:29.702808 39936 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-12 00:28:09.265712000 Z\n- &1 2020-09-12 03:23:54.671518000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-12 19:37:35.239481611 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534500\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534500\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 1833\n- 1834\n 3668 \N 189.186.101.127 7ffcb813-f8ea-41db-a2f8-012208bd19b1 2020-09-12 19:37:35.247899 39937 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1RJzxBczRNW5Zxax-Bmx\n- FBK9zps2X6LVJ_7W4L_Q\n 3669 \N 189.186.101.127 7ffcb813-f8ea-41db-a2f8-012208bd19b1 2020-09-12 19:37:36.037958 39938 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-11 23:30:50.815505000 Z\n- &1 2020-09-12 00:57:23.895226000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-12 20:32:15.188639858 Z\nsign_in_count:\n- 213\n- 214\n 429 \N 189.186.101.127 05c75ac5-09fd-472a-92a4-7d8b3dd1f37b 2020-09-12 20:32:15.194473 39939 18 User \N \N 18 User \N update ---\nunique_session_id:\n- sQYPMS-wFLgqHnBEmr9j\n- H_A35Ksx9jKNaVf8wp2h\n 430 \N 189.186.101.127 05c75ac5-09fd-472a-92a4-7d8b3dd1f37b 2020-09-12 20:32:15.207777 39941 381 Customer \N \N 18 User \N create ---\nnick_name: INGRID PAOLA\nphone: "(667) 142-4241"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente INGRID PAOLA fue registrado. 189.186.101.127 3c45c626-d7a1-4cec-bc22-ea0c7c7c65a8 2020-09-12 20:33:28.130064 39942 2912 Sale \N \N 18 User \N create ---\ncustomer_id: 381\nuser_id: 18\nopen_cash_register_id: 1057\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-12\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-609\nexpiration_date: 2020-10-17\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 33a25c2a-6d6d-41eb-991e-d5698c28f775 2020-09-12 20:34:08.703699 39943 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 18 \N 189.186.101.127 33a25c2a-6d6d-41eb-991e-d5698c28f775 2020-09-12 20:34:08.73267 39944 2912 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-609 cancelada. 189.186.101.127 6e28efcb-970b-44b6-af28-69b19e068bd4 2020-09-12 20:37:50.387457 39945 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.14E2\n 19 \N 189.186.101.127 6e28efcb-970b-44b6-af28-69b19e068bd4 2020-09-12 20:37:50.410699 39946 2913 Sale \N \N 18 User \N create ---\ncustomer_id: 333\nuser_id: 18\nopen_cash_register_id: 1057\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-12\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-610\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 9e46fac5-4ebd-43c3-a8d7-fdc8a32a1ee5 2020-09-12 20:58:55.643288 39947 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 20 \N 189.186.101.127 9e46fac5-4ebd-43c3-a8d7-fdc8a32a1ee5 2020-09-12 20:58:55.669823 39948 2913 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 a9a7b20e-1f47-4077-87f5-d67198f98d85 2020-09-12 20:59:05.494538 39949 3890 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1057\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 2913\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-610\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1556'\n 1 movimiento de efectivo por venta con folio PV3-V-610 189.186.101.127 a9a7b20e-1f47-4077-87f5-d67198f98d85 2020-09-12 20:59:05.515999 39950 3890 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1057\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2913\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-610\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1556'\n 2 \N 189.186.101.127 ecb7d0b4-a788-4c2e-b6ef-ce84a3655d80 2020-09-12 20:59:08.54903 39951 3891 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1057\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 2913\ncardnumber: 1526\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-610\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1556'\n 1 movimiento de efectivo por venta con folio PV3-V-610 189.186.101.127 dcbaacd4-1f49-41b1-b990-57dd3aa3e490 2020-09-12 20:59:18.454668 39952 3891 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1057\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2913\ncardnumber: 1526\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-610\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1556'\n 2 \N 189.186.101.127 75e467aa-1f78-498a-af25-ca1a851d15e3 2020-09-12 20:59:56.355039 39953 3892 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1057\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 2913\ncardnumber: 1522\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-610\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1556'\n 1 movimiento de efectivo por venta con folio PV3-V-610 189.186.101.127 6935aa08-ad77-4829-b6f4-547338e5b0ee 2020-09-12 21:00:05.731131 39954 2913 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-610 cancelada. 189.186.101.127 b6ea7748-fc5c-446b-8a4b-fd1d9fab5f5a 2020-09-12 21:00:12.452628 39955 3892 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1057\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2913\ncardnumber: 1522\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-610\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1556'\n 2 \N 189.186.101.127 b6ea7748-fc5c-446b-8a4b-fd1d9fab5f5a 2020-09-12 21:00:12.474025 39956 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.14E2\n 21 \N 189.186.101.127 b6ea7748-fc5c-446b-8a4b-fd1d9fab5f5a 2020-09-12 21:00:12.499047 39957 2914 Sale \N \N 18 User \N create ---\ncustomer_id: 333\nuser_id: 18\nopen_cash_register_id: 1057\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-12\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-611\nexpiration_date: 2020-10-17\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 645559e3-3346-4229-998b-326a92000f72 2020-09-12 21:00:56.228739 39958 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 22 \N 189.186.101.127 645559e3-3346-4229-998b-326a92000f72 2020-09-12 21:00:56.258416 39959 3893 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1057\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2914\ncardnumber: 1225\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-611\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-611 189.186.101.127 cbb327fd-4b12-4421-a028-ffb744d1bdd1 2020-09-12 21:01:10.865693 39960 2914 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.101.127 00b988a4-b347-4e99-8caf-77151488fbae 2020-09-12 21:01:12.564182 40008 2919 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.101.127 28246d01-ad9a-4090-9959-4742f95a8e55 2020-09-12 23:49:15.887932 40121 2057 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.40.40 0be63c60-1b06-4d09-a480-fc9c913212fa 2020-09-15 19:33:21.346021 39961 3894 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1057\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.199E3\nmove_type: '1'\nsale_id: 2535\ncardnumber: 1225\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-384 189.186.101.127 db97ddda-0a29-4e69-8d09-126f4d0c698b 2020-09-12 21:47:25.358971 39962 2535 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.101.127 c8b30f6b-cac6-46fe-9299-468bc483d548 2020-09-12 21:47:27.055816 39963 3895 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1057\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 2650\ncardnumber: 1255\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-462 189.186.101.127 35446e98-cbc8-4dd0-9860-2a600085ca38 2020-09-12 21:48:31.998636 39964 2650 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.101.127 886ee4ed-4847-4cb0-995a-ef5edbca4868 2020-09-12 21:48:33.440122 39965 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-12 03:23:54.671518000 Z\n- &1 2020-09-12 19:37:35.239481000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-12 21:49:11.783895156 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534500\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 1834\n- 1835\n 3670 \N 189.186.101.127 d603ed73-065d-4636-ad9c-c96baaa87198 2020-09-12 21:49:11.790343 39966 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FBK9zps2X6LVJ_7W4L_Q\n- YkPsMdJn9FC-yqQDkgNX\n 3671 \N 189.186.101.127 d603ed73-065d-4636-ad9c-c96baaa87198 2020-09-12 21:49:11.806751 39967 2915 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1056\namount: !ruby/object:BigDecimal 18:0.659E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.659E3\nstatus: 0\ndate_sale: 2020-09-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1384\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 1ba0fb52-4fe3-4efd-bb6f-6d6005a8b7c5 2020-09-12 22:19:25.55326 39968 2159 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.57.31 1ba0fb52-4fe3-4efd-bb6f-6d6005a8b7c5 2020-09-12 22:19:25.593286 39969 2130 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.57.31 1ba0fb52-4fe3-4efd-bb6f-6d6005a8b7c5 2020-09-12 22:19:25.625772 39970 2915 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 b0b17259-989f-4c06-84bb-c8c80ff62e39 2020-09-12 22:19:30.322757 39971 3896 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1056\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.659E3\nmove_type: '1'\nsale_id: 2915\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1384\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.659E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1384 187.149.57.31 b0b17259-989f-4c06-84bb-c8c80ff62e39 2020-09-12 22:19:30.353052 39972 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-12 19:37:35.239481000 Z\n- &1 2020-09-12 21:49:11.783895000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-12 23:11:18.753342874 Z\nsign_in_count:\n- 1835\n- 1836\n 3672 \N 189.186.101.127 51563e6a-4858-4203-b398-c3e0bdfde75b 2020-09-12 23:11:18.775179 39973 4 User \N \N 4 User \N update ---\nunique_session_id:\n- YkPsMdJn9FC-yqQDkgNX\n- 1RUWgWpFYKbk2Y18p7yn\n 3673 \N 189.186.101.127 51563e6a-4858-4203-b398-c3e0bdfde75b 2020-09-12 23:11:18.798507 39974 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-12 00:57:23.895226000 Z\n- &1 2020-09-12 20:32:15.188639000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-12 23:15:07.269719355 Z\nsign_in_count:\n- 214\n- 215\n 431 \N 189.186.101.127 24495462-d0d8-4d0d-afc9-b268e1481098 2020-09-12 23:15:07.275718 39975 18 User \N \N 18 User \N update ---\nunique_session_id:\n- H_A35Ksx9jKNaVf8wp2h\n- PPUG7MK7THDWBedW2cys\n 432 \N 189.186.101.127 24495462-d0d8-4d0d-afc9-b268e1481098 2020-09-12 23:15:07.290198 39976 2916 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1057\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-12\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-612\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 637d8040-03f1-4a88-9a4e-a6f583e1d7c7 2020-09-12 23:15:27.593057 39977 2017 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.101.127 637d8040-03f1-4a88-9a4e-a6f583e1d7c7 2020-09-12 23:15:27.626336 39978 2916 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 213d20c3-fe09-4df8-822d-08e8ac4f5308 2020-09-12 23:15:35.608754 39979 3897 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1057\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2916\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-612\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-612 189.186.101.127 213d20c3-fe09-4df8-822d-08e8ac4f5308 2020-09-12 23:15:35.631185 39980 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-11 01:29:36.204547000 Z\n- &1 2020-09-11 20:36:47.907729000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-12 23:18:37.803361411 Z\nsign_in_count:\n- 156\n- 157\n 314 \N 189.186.101.127 df214ff7-ad10-4b13-b243-f9b6d58359cb 2020-09-12 23:18:37.809518 39981 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 9RX97YhD-KksDd5uyEYG\n- s_cgBzaGWoxHMxpHUkHp\n 315 \N 189.186.101.127 df214ff7-ad10-4b13-b243-f9b6d58359cb 2020-09-12 23:18:37.823731 39982 2917 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1056\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-12\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1385\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 34c74816-2647-4ed2-9fd0-d81b14f6b885 2020-09-12 23:19:12.587534 39983 2226 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 5 \N 189.186.101.127 34c74816-2647-4ed2-9fd0-d81b14f6b885 2020-09-12 23:19:12.614173 39984 2917 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 15a0ae12-23d7-4b53-b191-91205bcda294 2020-09-12 23:19:20.722466 39985 3898 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1056\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2917\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1385\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1385 189.186.101.127 15a0ae12-23d7-4b53-b191-91205bcda294 2020-09-12 23:19:20.74454 39986 332 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1056\nquantity: !ruby/object:BigDecimal 18:0.15E2\nstatus: 1\nobservations: barrenderos\nexpense_date: 2020-09-12\nexpense_code: PV1-E-230\n 1 Egreso por 15.0 registrado 187.149.57.31 9cb17a44-e42d-4cc1-b111-85065d747c14 2020-09-12 23:25:14.356238 39987 3899 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1056\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 332\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.57.31 9cb17a44-e42d-4cc1-b111-85065d747c14 2020-09-12 23:25:14.376182 39988 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-11 20:36:47.907729000 Z\n- &1 2020-09-12 23:18:37.803361000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-12 23:28:52.097364016 Z\nsign_in_count:\n- 157\n- 158\n 316 \N 189.186.101.127 2a890aeb-9783-45f4-b580-8992972cf43c 2020-09-12 23:28:52.103182 39989 9 User \N \N 9 User \N update ---\nunique_session_id:\n- s_cgBzaGWoxHMxpHUkHp\n- D3Hei61y5U7nz_ZVEzEB\n 317 \N 189.186.101.127 2a890aeb-9783-45f4-b580-8992972cf43c 2020-09-12 23:28:52.115308 39990 2918 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1056\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-12\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1386\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 ae2a0f32-f528-47b5-b7d0-388559bbdbd8 2020-09-12 23:33:59.446592 39991 2226 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 6 \N 189.186.101.127 ae2a0f32-f528-47b5-b7d0-388559bbdbd8 2020-09-12 23:33:59.473821 39992 2918 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 9d1676c3-b255-4315-9b5f-bb4cf6a2ba68 2020-09-12 23:34:24.273843 39993 3900 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1056\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2918\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1386\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1255'\n 1 movimiento de efectivo por venta con folio PV1-V-1386 189.186.101.127 9d1676c3-b255-4315-9b5f-bb4cf6a2ba68 2020-09-12 23:34:24.295508 39994 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-09 16:16:52.534668000 Z\n- &1 2020-09-09 18:49:02.071421000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-12 23:38:10.247560106 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147033\n mask_addr: 4294967295\nsign_in_count:\n- 286\n- 287\n 575 \N 189.186.248.25 f2185a6f-66a9-4d1e-9ed4-a1697fd729f9 2020-09-12 23:38:10.256087 39995 21 User \N \N 21 User \N update ---\nunique_session_id:\n- mhCqRF6q5YyXC-aRRyNi\n- dSz6hfcAAjsHP_SX5oxu\n 576 \N 189.186.248.25 f2185a6f-66a9-4d1e-9ed4-a1697fd729f9 2020-09-12 23:38:10.29983 39996 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-12 21:49:11.783895000 Z\n- &1 2020-09-12 23:11:18.753342000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-12 23:39:34.634719565 Z\nsign_in_count:\n- 1836\n- 1837\n 3674 \N 189.186.101.127 fefaf15c-e5fe-4aee-80e5-5e968dd795ac 2020-09-12 23:39:34.641206 39997 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1RUWgWpFYKbk2Y18p7yn\n- h-2RdxvJKemnXL3EDFyj\n 3675 \N 189.186.101.127 fefaf15c-e5fe-4aee-80e5-5e968dd795ac 2020-09-12 23:39:34.660988 39998 27 Seller \N \N 4 User \N create ---\npointsale_id: 1\nname: INSTAGRAM\nlast_name: SAMANTHA\nstatus: 1\n 1 El vendedor INSTAGRAM SAMANTHA fue registrado. 189.186.101.127 960432c9-4175-4c98-983d-65708b07021b 2020-09-12 23:39:55.821191 39999 28 Seller \N \N 4 User \N create ---\npointsale_id: 1\nname: INSTAGRAM\nlast_name: ROCIO\nstatus: 1\n 1 El vendedor INSTAGRAM ROCIO fue registrado. 189.186.101.127 a9f99c3e-fb96-4b04-bb0d-2b9670dacd9f 2020-09-12 23:40:10.182367 40000 29 Seller \N \N 4 User \N create ---\npointsale_id: 3\nname: INSTAGRAM\nlast_name: ROCIO\nstatus: 1\n 1 El vendedor INSTAGRAM ROCIO fue registrado. 189.186.101.127 03a9ebdc-2387-4d89-8447-73b1a0737a3a 2020-09-12 23:40:26.061911 40001 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-12 20:32:15.188639000 Z\n- &1 2020-09-12 23:15:07.269719000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-12 23:47:14.620546580 Z\nsign_in_count:\n- 215\n- 216\n 433 \N 189.186.101.127 c8e676ba-a2ae-4400-b2f1-946315537340 2020-09-12 23:47:14.62631 40002 18 User \N \N 18 User \N update ---\nunique_session_id:\n- PPUG7MK7THDWBedW2cys\n- 8X-XrRYiPBa_SXdUSamc\n 434 \N 189.186.101.127 c8e676ba-a2ae-4400-b2f1-946315537340 2020-09-12 23:47:14.640293 40003 382 Customer \N \N 18 User \N create ---\nnick_name: MARCO LEY\nphone: "(667) 390-3379"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.1E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARCO LEY fue registrado. 189.186.101.127 93fe46fe-f9f0-4b5f-8795-b5158814f482 2020-09-12 23:48:23.911965 40004 2919 Sale \N \N 18 User \N create ---\ncustomer_id: 382\nuser_id: 18\nopen_cash_register_id: 1057\namount: !ruby/object:BigDecimal 18:0.3698E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3698E4\nstatus: 0\ndate_sale: 2020-09-12\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-613\nexpiration_date: 2020-10-17\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 9b5354d4-0c71-46d9-bcfa-4f488bc7ce01 2020-09-12 23:49:07.463793 40005 2216 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.101.127 9b5354d4-0c71-46d9-bcfa-4f488bc7ce01 2020-09-12 23:49:07.493829 40006 2214 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.101.127 9b5354d4-0c71-46d9-bcfa-4f488bc7ce01 2020-09-12 23:49:07.52086 40007 3901 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1057\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2919\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-613\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-613 189.186.101.127 42322962-1ab4-4b4b-b3db-72d16bb4e7ae 2020-09-12 23:49:14.518845 40009 1081 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1056\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3626E4\namount_out: !ruby/object:BigDecimal 18:0.15E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.802E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1502E4\nobservations: hay efectivo en caja $1502+$999 que vendió samanta= 2501\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.57.31 e8588d52-a5d9-4e7f-9bc8-062e02c1f42c 2020-09-12 23:57:53.593156 40010 1056 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.57.31 e8588d52-a5d9-4e7f-9bc8-062e02c1f42c 2020-09-12 23:57:53.606791 40011 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-12 23:11:18.753342000 Z\n- &1 2020-09-12 23:39:34.634719000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-13 00:16:54.332479487 Z\nsign_in_count:\n- 1837\n- 1838\n 3676 \N 189.186.101.127 39e8dd67-51ab-4bf0-a732-606ceb05412a 2020-09-13 00:16:54.338598 40012 4 User \N \N 4 User \N update ---\nunique_session_id:\n- h-2RdxvJKemnXL3EDFyj\n- 7BwFzqxSxZG64scmfvQ2\n 3677 \N 189.186.101.127 39e8dd67-51ab-4bf0-a732-606ceb05412a 2020-09-13 00:16:54.354876 40013 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-05 21:34:33.934488000 Z\n- &1 2020-09-07 16:42:00.189017000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-13 00:57:13.610802665 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938280\n mask_addr: 4294967295\nsign_in_count:\n- 237\n- 238\n 476 \N 200.68.150.232 896a9a6e-8b09-4b70-8902-63bb29705758 2020-09-13 00:57:13.617818 40014 1 User \N \N 1 User \N update ---\nunique_session_id:\n- eMpYG9Z9jrgw9zZyRexn\n- svbfGuz4wifwWaGY1PC7\n 477 \N 200.68.150.232 896a9a6e-8b09-4b70-8902-63bb29705758 2020-09-13 00:57:13.633714 40015 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-12 23:15:07.269719000 Z\n- &1 2020-09-12 23:47:14.620546000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-13 01:24:33.315770568 Z\nsign_in_count:\n- 216\n- 217\n 435 \N 189.186.101.127 af601a8c-8b1f-40b8-86f1-a9cb32430dd8 2020-09-13 01:24:33.321326 40016 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 8X-XrRYiPBa_SXdUSamc\n- j6aGB_5ydNquyKbjWJXJ\n 436 \N 189.186.101.127 af601a8c-8b1f-40b8-86f1-a9cb32430dd8 2020-09-13 01:24:33.338512 40017 2920 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1057\namount: !ruby/object:BigDecimal 18:0.1999E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1999E4\nstatus: 0\ndate_sale: 2020-09-12\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-614\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 c29005cd-d255-46a4-9531-273ad9d76314 2020-09-13 01:30:16.115148 40018 1978 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.101.127 c29005cd-d255-46a4-9531-273ad9d76314 2020-09-13 01:30:16.1431 40019 2920 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 92595cca-0a85-425a-ba23-cc380441c5e9 2020-09-13 01:30:29.593517 40020 3902 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1057\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1999E4\nmove_type: '1'\nsale_id: 2920\ncardnumber: 1552\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-614\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-614 189.186.101.127 92595cca-0a85-425a-ba23-cc380441c5e9 2020-09-13 01:30:29.617116 40021 2921 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1057\namount: !ruby/object:BigDecimal 18:0.288E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.288E3\nstatus: 0\ndate_sale: 2020-09-12\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-615\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 80331607-70dd-4d0c-94bb-ea3a15e19eff 2020-09-13 01:38:48.165196 40022 2088 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.101.127 80331607-70dd-4d0c-94bb-ea3a15e19eff 2020-09-13 01:38:48.210759 40023 2110 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.101.127 80331607-70dd-4d0c-94bb-ea3a15e19eff 2020-09-13 01:38:48.243587 40024 2921 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 041896bd-d071-4cab-8b6a-7f22b48b00ba 2020-09-13 01:38:58.195473 40025 3903 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1057\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.288E3\nmove_type: '1'\nsale_id: 2921\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-615\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.288E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-615 189.186.101.127 041896bd-d071-4cab-8b6a-7f22b48b00ba 2020-09-13 01:38:58.218732 40026 1082 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1057\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.6284E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.2787E4\ncash_fund: !ruby/object:BigDecimal 18:0.659E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3446E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.101.127 13852583-25cb-48bd-85fb-ad5b9c544a1a 2020-09-13 01:47:37.189839 40027 1057 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.101.127 13852583-25cb-48bd-85fb-ad5b9c544a1a 2020-09-13 01:47:37.208261 40028 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-12 23:39:34.634719000 Z\n- &1 2020-09-13 00:16:54.332479000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-13 04:36:34.696089048 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534636\n mask_addr: 4294967295\nsign_in_count:\n- 1838\n- 1839\n 3678 \N 177.228.98.108 c2387b4c-6daa-49b7-afc7-20ecc19d9392 2020-09-13 04:36:34.724508 40029 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7BwFzqxSxZG64scmfvQ2\n- uKhCq_bvxYJHsD21tu-Q\n 3679 \N 177.228.98.108 c2387b4c-6daa-49b7-afc7-20ecc19d9392 2020-09-13 04:36:34.748692 40030 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-13 00:16:54.332479000 Z\n- &1 2020-09-13 04:36:34.696089000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-13 19:34:19.921629378 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534636\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534636\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534844\n mask_addr: 4294967295\nsign_in_count:\n- 1839\n- 1840\n 3680 \N 177.228.99.60 45e963b7-5c5d-4fcf-9960-e3adb55cff7b 2020-09-13 19:34:19.95318 40031 4 User \N \N 4 User \N update ---\nunique_session_id:\n- uKhCq_bvxYJHsD21tu-Q\n- zb-zS2sdQ9uJVrmfQZo_\n 3681 \N 177.228.99.60 45e963b7-5c5d-4fcf-9960-e3adb55cff7b 2020-09-13 19:34:19.981153 40032 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-09 18:49:02.071421000 Z\n- &1 2020-09-12 23:38:10.247560000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-13 22:24:50.142616496 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147033\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147033\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183133918\n mask_addr: 4294967295\nsign_in_count:\n- 287\n- 288\n 577 \N 189.186.196.222 de795e43-4058-4631-8052-6dba24db9f0a 2020-09-13 22:24:50.150014 40033 21 User \N \N 21 User \N update ---\nunique_session_id:\n- dSz6hfcAAjsHP_SX5oxu\n- y3iGtGxdyzG7sNsx1W9A\n 578 \N 189.186.196.222 de795e43-4058-4631-8052-6dba24db9f0a 2020-09-13 22:24:50.167835 40034 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-13 04:36:34.696089000 Z\n- &1 2020-09-13 19:34:19.921629000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-14 05:27:24.193083834 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534636\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534844\n mask_addr: 4294967295\nsign_in_count:\n- 1840\n- 1841\n 3682 \N 177.228.99.60 d4917644-cd8a-4510-b209-a01c30857acf 2020-09-14 05:27:24.200288 40035 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zb-zS2sdQ9uJVrmfQZo_\n- wbdpnQVz6bbcAizMuGM9\n 3683 \N 177.228.99.60 d4917644-cd8a-4510-b209-a01c30857acf 2020-09-14 05:27:24.219202 40036 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-11 16:51:53.123341000 Z\n- &1 2020-09-12 18:23:08.067030000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-14 17:41:27.024786302 Z\nsign_in_count:\n- 642\n- 643\n 1289 \N 187.149.57.31 20a26809-c8c1-4a95-821f-488b2ea7a7e1 2020-09-14 17:41:27.057511 40037 2 User \N \N 2 User \N update ---\nunique_session_id:\n- RMdhEubNV2f2zrnPeSZS\n- gasQdP_31hjQ_yPgB_So\n 1290 \N 187.149.57.31 20a26809-c8c1-4a95-821f-488b2ea7a7e1 2020-09-14 17:41:27.086136 40038 1058 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.802E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 802.0 187.149.57.31 068f0e11-f89b-4e9f-9b5e-8d3ec3b3656c 2020-09-14 17:46:40.997978 40039 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-12 23:38:10.247560000 Z\n- &1 2020-09-13 22:24:50.142616000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-14 18:07:30.400011793 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147033\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183133918\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183133918\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 288\n- 289\n 579 \N 189.186.101.127 295c31b3-c8a0-4c91-a9c0-76bdd02bf1f6 2020-09-14 18:07:30.446485 40040 21 User \N \N 21 User \N update ---\nunique_session_id:\n- y3iGtGxdyzG7sNsx1W9A\n- kV-fJtr2niW1iHZkb4bF\n 580 \N 189.186.101.127 295c31b3-c8a0-4c91-a9c0-76bdd02bf1f6 2020-09-14 18:07:30.480495 40041 1059 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.659E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 659.0 189.186.101.127 7b081ee2-41a6-429f-b46f-78e3dec8158b 2020-09-14 18:07:45.196806 40042 2922 Sale \N \N 21 User \N create ---\ncustomer_id: 194\nuser_id: 21\nopen_cash_register_id: 1059\namount: !ruby/object:BigDecimal 18:0.1538E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1538E4\nstatus: 0\ndate_sale: 2020-09-14\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-616\nexpiration_date: 2020-10-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 ecbccf66-4cc2-4b5a-bcf9-a25fb5203952 2020-09-14 18:29:44.494143 40043 2265 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.101.127 ecbccf66-4cc2-4b5a-bcf9-a25fb5203952 2020-09-14 18:29:44.538165 40044 3904 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1059\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2922\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-616\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-616 189.186.101.127 984db885-62e8-443c-9316-e09583af2d30 2020-09-14 18:30:47.090885 40045 2922 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.101.127 41e2862b-6446-4bb9-837b-9ccb19c23472 2020-09-14 18:30:48.273455 40046 2923 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1058\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-09-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1387\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 293f4cf9-cbf4-4937-b545-b7c4d8a978ef 2020-09-14 19:04:48.717509 40047 2247 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.57.31 293f4cf9-cbf4-4937-b545-b7c4d8a978ef 2020-09-14 19:04:48.75393 40048 2923 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.31 7cc57b72-b693-4f1b-b183-76c01ec9d768 2020-09-14 19:04:53.580031 40049 3905 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1058\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 2923\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1387\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1387 187.149.57.31 7cc57b72-b693-4f1b-b183-76c01ec9d768 2020-09-14 19:04:53.633186 40050 3906 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1058\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 2871\ncardnumber: 1041\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1366 187.149.57.31 5b596988-100b-480b-80ea-9d79b5577020 2020-09-14 19:07:43.151443 40051 2871 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.57.31 0603aea4-50ef-447d-8f5e-717c32a9372e 2020-09-14 19:07:44.388696 40052 2924 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1058\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-09-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1388\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 f90b4367-388c-4054-be3a-f3a35e82354b 2020-09-14 19:34:52.78662 40055 3907 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1058\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 2924\ncardnumber: 6399\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1388\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1388 187.149.57.31 87779186-cb91-4c9b-9774-736c92aacd41 2020-09-14 19:35:20.306325 40056 3908 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1051\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 2888\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.101.127 7575d79b-f3fe-4b5e-a83b-0263d4b14e77 2020-09-14 20:32:11.564342 40057 3908 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 1051\n- 1059\n 2 movimiento de efectivo por venta con folio PV3-V-592 189.186.101.127 7575d79b-f3fe-4b5e-a83b-0263d4b14e77 2020-09-14 20:32:11.610132 40058 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-13 19:34:19.921629000 Z\n- &1 2020-09-14 05:27:24.193083000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-14 20:44:21.187573259 Z\nsign_in_count:\n- 1841\n- 1842\n 3684 \N 177.228.99.60 80af5e95-49ca-40d9-bd71-69d76c318e6c 2020-09-14 20:44:21.215457 40059 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wbdpnQVz6bbcAizMuGM9\n- 4-A3UwtUsYyCyNXoEeGd\n 3685 \N 177.228.99.60 80af5e95-49ca-40d9-bd71-69d76c318e6c 2020-09-14 20:44:21.240549 40060 2925 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1059\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-14\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-617\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 8c6a9b79-a4d4-436d-8a99-20cc5bc74fd1 2020-09-14 21:05:02.243128 40061 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 23 \N 189.186.101.127 8c6a9b79-a4d4-436d-8a99-20cc5bc74fd1 2020-09-14 21:05:02.277593 40062 2925 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 e6be38f7-5371-4a1d-8d66-5129a27f38c5 2020-09-14 21:05:26.014893 40063 3909 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1059\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2925\ncardnumber: 725\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-617\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-617 189.186.101.127 e6be38f7-5371-4a1d-8d66-5129a27f38c5 2020-09-14 21:05:26.051066 40064 383 Customer \N \N 21 User \N create ---\nnick_name: TREJO\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente TREJO fue registrado. 189.186.101.127 5dcbcac1-1075-4d8a-8e56-83a32901622f 2020-09-14 21:09:38.623354 40065 2926 Sale \N \N 21 User \N create ---\ncustomer_id: 383\nuser_id: 21\nopen_cash_register_id: 1059\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-14\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-618\nexpiration_date: 2020-10-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 006323ac-7a3e-4ef0-8deb-cb372cd2a712 2020-09-14 21:10:16.90608 40066 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 24 \N 189.186.101.127 006323ac-7a3e-4ef0-8deb-cb372cd2a712 2020-09-14 21:10:16.933628 40067 3910 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1059\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2926\ncardnumber: 9876\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-618\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-618 189.186.101.127 7d78e3d1-fb5e-4f3f-8dda-b18995bd96ab 2020-09-14 21:10:42.860923 40068 2926 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.101.127 2be6b6d2-df36-440d-803a-1f52ec906d40 2020-09-14 21:10:48.626041 40069 384 Customer \N \N 2 User \N create ---\nnick_name: OLGA MIRIAM SERRANO\nphone: "(667) 264-0427"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente OLGA MIRIAM SERRANO fue registrado. 187.149.57.31 d5d8c87b-ebd2-4acd-baad-e93da3f2777e 2020-09-14 21:50:36.898794 40070 2927 Sale \N \N 2 User \N create ---\ncustomer_id: 384\nuser_id: 2\nopen_cash_register_id: 1058\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-14\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1389\nexpiration_date: 2020-10-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.31 592d990f-e6c5-459a-acf9-07d775b51fa7 2020-09-14 21:51:31.359852 40071 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 187.149.57.31 592d990f-e6c5-459a-acf9-07d775b51fa7 2020-09-14 21:51:31.39024 40072 3911 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1058\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2927\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1389\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1389 187.149.57.31 247d298e-81c8-4819-bea1-4e571244d9a5 2020-09-14 21:51:41.361856 40073 2927 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.57.31 4b1c5158-ee1d-4ef9-9f18-c1ad805d84e3 2020-09-14 21:51:42.697428 40074 1083 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1058\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2797E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.83E3\nphysical_cash: !ruby/object:BigDecimal 18:0.233E4\nobservations: HAY 1801 MAS 529= $2330 DE UNA BOLSA APARTADA DE PAOLA LASHES\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.57.31 22320d70-28c0-4a08-bae7-cd50fec50dae 2020-09-14 23:58:00.986555 40075 1058 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.57.31 22320d70-28c0-4a08-bae7-cd50fec50dae 2020-09-14 23:58:01.008113 40122 2053 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.40.40 db71193b-b6e7-4b03-8288-b0a0895b4854 2020-09-15 19:33:36.724473 40076 3912 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1059\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2818\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-553 189.186.101.127 0ee93fd1-027a-4a77-9535-93e60689b00b 2020-09-15 00:21:59.952455 40077 2818 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.101.127 9e269391-edf6-40e8-993e-8641a70b98f1 2020-09-15 00:22:03.008824 40078 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-14 05:27:24.193083000 Z\n- &1 2020-09-14 20:44:21.187573000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-15 00:43:35.672299021 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\nsign_in_count:\n- 1842\n- 1843\n 3686 \N 189.186.101.127 232bda25-d354-412d-9c43-7e063560b5d8 2020-09-15 00:43:35.692232 40079 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4-A3UwtUsYyCyNXoEeGd\n- XtZX4_RP9Qz-QwsRm375\n 3687 \N 189.186.101.127 232bda25-d354-412d-9c43-7e063560b5d8 2020-09-15 00:43:35.715969 40080 3913 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1059\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.529E3\nmove_type: '1'\nsale_id: 2822\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CENTRO\n 1 movimiento de efectivo por venta con folio PV3-V-556 189.186.101.127 1e8ddac6-754a-4263-a0a1-8562600a4a96 2020-09-15 00:45:00.672769 40081 2822 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.101.127 d4b9a5f3-3c31-4448-b4fb-a24ada7502c8 2020-09-15 00:45:04.039747 40082 2928 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1059\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-14\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-619\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.101.127 d8979a39-2670-438c-a236-29554c55198a 2020-09-15 00:58:23.577825 40083 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 25 \N 189.186.101.127 d8979a39-2670-438c-a236-29554c55198a 2020-09-15 00:58:23.610204 40084 2928 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.101.127 a2a8dd0c-5e61-4d07-9f9f-1bc9287b4e6c 2020-09-15 00:58:29.928591 40085 3914 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1059\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2928\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-619\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-619 189.186.101.127 a2a8dd0c-5e61-4d07-9f9f-1bc9287b4e6c 2020-09-15 00:58:29.951063 40086 3915 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1059\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.70001E3\nmove_type: '1'\nsale_id: 2845\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.70001E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-570 189.186.101.127 6bd951bb-f11e-4702-9a18-56c60c1cbb7a 2020-09-15 01:01:06.969733 40087 2845 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.101.127 9f294a5f-18c0-4aeb-bd5b-91b01a9c628a 2020-09-15 01:01:08.847229 40088 1084 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1059\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.542701E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.28E4\ncash_fund: !ruby/object:BigDecimal 18:0.1358E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4158E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.101.127 49b8411b-c3f9-4b2d-8eea-70c2e59ab800 2020-09-15 01:13:59.225788 40089 1059 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.101.127 49b8411b-c3f9-4b2d-8eea-70c2e59ab800 2020-09-15 01:13:59.241179 40090 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-14 20:44:21.187573000 Z\n- &1 2020-09-15 00:43:35.672299000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-15 03:31:43.092572998 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534844\n mask_addr: 4294967295\nsign_in_count:\n- 1843\n- 1844\n 3688 \N 177.228.99.60 31325ad4-c61f-4bf0-b93d-0a4d424a5c08 2020-09-15 03:31:43.124326 40091 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XtZX4_RP9Qz-QwsRm375\n- RHnyQ6aXqz_-YyqyVz8V\n 3689 \N 177.228.99.60 31325ad4-c61f-4bf0-b93d-0a4d424a5c08 2020-09-15 03:31:43.153337 40092 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-12 18:23:08.067030000 Z\n- &1 2020-09-14 17:41:27.024786000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-15 16:44:35.081643091 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\nsign_in_count:\n- 643\n- 644\n 1291 \N 189.186.40.40 4362fffc-6482-4461-8399-ff939f85e30b 2020-09-15 16:44:35.110915 40093 2 User \N \N 2 User \N update ---\nunique_session_id:\n- gasQdP_31hjQ_yPgB_So\n- x5Xyj3aVvc4WeMVeJgWy\n 1292 \N 189.186.40.40 4362fffc-6482-4461-8399-ff939f85e30b 2020-09-15 16:44:35.138568 40094 1060 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.83E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 830.0 189.186.40.40 3b9b1356-ad25-41a5-88c4-c7f630d2e6ed 2020-09-15 16:44:53.042691 40095 3916 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1060\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 2706\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.399E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1296 189.186.40.40 6a197e41-7ded-4a3c-9c58-0a517232c4e3 2020-09-15 16:47:36.163443 40096 2706 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.40.40 2d0d0f8d-c896-49fd-a27a-33ef6d544526 2020-09-15 16:47:39.420168 40123 2222 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.40.40 4ac4cc12-5b65-46f3-ad50-708ad83bb6b2 2020-09-15 19:34:13.063496 40097 2929 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1060\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1390\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 edec0ad7-b679-4ae8-90dc-c42007e79807 2020-09-15 18:26:43.32981 40098 2242 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.40.40 edec0ad7-b679-4ae8-90dc-c42007e79807 2020-09-15 18:26:43.372597 40099 2929 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 b8df63a6-243e-49f4-bf63-bcbf658dfdf2 2020-09-15 18:29:20.259672 40100 3917 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1060\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2929\ncardnumber: 2794\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1390\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1390 189.186.40.40 b8df63a6-243e-49f4-bf63-bcbf658dfdf2 2020-09-15 18:29:20.288597 40101 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-15 00:43:35.672299000 Z\n- &1 2020-09-15 03:31:43.092572000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-15 18:41:25.721351980 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534844\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 1844\n- 1845\n 3690 \N 189.186.86.233 31195e84-5395-4240-9fde-2e8cd7cfc633 2020-09-15 18:41:25.728537 40102 4 User \N \N 4 User \N update ---\nunique_session_id:\n- RHnyQ6aXqz_-YyqyVz8V\n- SDLcHsxWouNzQh2pUiD_\n 3691 \N 189.186.86.233 31195e84-5395-4240-9fde-2e8cd7cfc633 2020-09-15 18:41:25.74608 40103 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-12 23:47:14.620546000 Z\n- &1 2020-09-13 01:24:33.315770000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-15 18:45:25.159884936 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 217\n- 218\n 437 \N 189.186.86.233 04950742-9f5b-4c6c-a572-fcd73bd6fefc 2020-09-15 18:45:25.169385 40104 18 User \N \N 18 User \N update ---\nunique_session_id:\n- j6aGB_5ydNquyKbjWJXJ\n- Pn_PwL_Z5D7Hmmnp2Muh\n 438 \N 189.186.86.233 04950742-9f5b-4c6c-a572-fcd73bd6fefc 2020-09-15 18:45:25.189006 40105 1061 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1358E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1358.0 189.186.86.233 2a308b18-8466-46a9-bccc-c9fdd42389ed 2020-09-15 18:45:36.202477 40106 385 Customer \N \N 18 User \N create ---\nnick_name: BEATRIZ PEREZ\nphone: "(667) 154-7683"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BEATRIZ PEREZ fue registrado. 189.186.86.233 34ffcb19-922c-447b-9153-496e9f9906f7 2020-09-15 18:48:14.488173 40107 2930 Sale \N \N 18 User \N create ---\ncustomer_id: 385\nuser_id: 18\nopen_cash_register_id: 1061\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-15\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-620\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 daac4fa6-b71d-4ed3-a3ea-8f2949e86a95 2020-09-15 18:48:31.146025 40108 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 26 \N 189.186.86.233 daac4fa6-b71d-4ed3-a3ea-8f2949e86a95 2020-09-15 18:48:31.18336 40109 2930 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-620 cancelada. 189.186.86.233 8d911971-9c0e-4658-8844-5bad86c552c0 2020-09-15 18:48:38.02988 40110 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.1E2\n 27 \N 189.186.86.233 8d911971-9c0e-4658-8844-5bad86c552c0 2020-09-15 18:48:38.0571 40111 2931 Sale \N \N 18 User \N create ---\ncustomer_id: 385\nuser_id: 18\nopen_cash_register_id: 1061\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-15\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-621\nexpiration_date: 2020-10-20\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 6500590a-3a26-46a5-8eb9-43178e1c2610 2020-09-15 18:49:08.589539 40112 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 28 \N 189.186.86.233 6500590a-3a26-46a5-8eb9-43178e1c2610 2020-09-15 18:49:08.619578 40113 3918 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1061\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2931\ncardnumber: 1556\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-621\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-621 189.186.86.233 2f9f81c0-5fad-4a91-a3f9-3b9fbdee3664 2020-09-15 18:49:23.891804 40114 2931 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.86.233 fbd53655-d0fe-440d-8ca9-8d1cd979e845 2020-09-15 18:49:25.418496 40115 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-13 01:24:33.315770000 Z\n- &1 2020-09-15 18:45:25.159884000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-15 19:18:37.796665483 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 218\n- 219\n 439 \N 189.186.86.233 79a9e276-cfa1-4b2b-ad8d-88d9c84e57ba 2020-09-15 19:18:37.818086 40116 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Pn_PwL_Z5D7Hmmnp2Muh\n- odzYsnLLyzqQSf8A7X36\n 440 \N 189.186.86.233 79a9e276-cfa1-4b2b-ad8d-88d9c84e57ba 2020-09-15 19:18:37.838723 40117 672 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-15\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.86.233 1af79e7f-8bf9-4ecb-9e13-9143f39a30b4 2020-09-15 19:19:03.17901 40118 2271 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.9E1\n 3 \N 189.186.86.233 1af79e7f-8bf9-4ecb-9e13-9143f39a30b4 2020-09-15 19:19:03.201545 40119 673 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-15\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.86.233 a86cb431-c1c5-4735-9631-79d47a65281e 2020-09-15 19:19:10.308497 40120 2285 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.86.233 a86cb431-c1c5-4735-9631-79d47a65281e 2020-09-15 19:19:10.325224 40124 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-15 03:31:43.092572000 Z\n- &1 2020-09-15 18:41:25.721351000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-15 19:34:26.904024618 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534844\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 1845\n- 1846\n 3692 \N 189.186.86.233 1a3efc21-a5d6-4b78-bfad-b0e9dfc30647 2020-09-15 19:34:26.914377 40125 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SDLcHsxWouNzQh2pUiD_\n- i-NhbE5h1bG9FvRpBj8x\n 3693 \N 189.186.86.233 1a3efc21-a5d6-4b78-bfad-b0e9dfc30647 2020-09-15 19:34:26.942716 40126 2025 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.40.40 c6aea323-7fe1-4fc3-a0d8-1e9d95f39821 2020-09-15 19:35:15.962123 40127 730 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.40.40 11022fcf-c433-4750-9980-00b85917b34f 2020-09-15 19:35:57.998369 40128 2225 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.40.40 0c3b8b20-745a-4fdd-89cd-6fb397584e41 2020-09-15 19:37:33.338661 40129 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-15 18:45:25.159884000 Z\n- &1 2020-09-15 19:18:37.796665000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-15 19:48:41.563501025 Z\nsign_in_count:\n- 219\n- 220\n 441 \N 189.186.86.233 0552b94d-bea4-424c-b5c2-6d66fd89a4f7 2020-09-15 19:48:41.569958 40130 18 User \N \N 18 User \N update ---\nunique_session_id:\n- odzYsnLLyzqQSf8A7X36\n- 3PnsBFjo61Gq-DSz_Gc7\n 442 \N 189.186.86.233 0552b94d-bea4-424c-b5c2-6d66fd89a4f7 2020-09-15 19:48:41.585487 40131 2932 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1061\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-15\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-622\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 9a1f6a9a-07ad-4e8e-bd63-6119a5042e16 2020-09-15 20:14:37.376752 40132 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 57 \N 189.186.86.233 9a1f6a9a-07ad-4e8e-bd63-6119a5042e16 2020-09-15 20:14:37.410434 40133 2932 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-622 cancelada. 189.186.86.233 247a1566-7075-4082-8f34-eb2d08d39533 2020-09-15 20:14:49.146495 40134 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.12E2\n 58 \N 189.186.86.233 247a1566-7075-4082-8f34-eb2d08d39533 2020-09-15 20:14:49.176624 40135 2933 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1061\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-15\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-623\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 11336fba-f6f5-40d6-bbf1-52c27ab86725 2020-09-15 20:14:58.505569 40136 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 59 \N 189.186.86.233 11336fba-f6f5-40d6-bbf1-52c27ab86725 2020-09-15 20:14:58.541391 40137 2933 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 295c889d-1d18-4caa-b611-1fade31e05d2 2020-09-15 20:15:46.772355 40138 3919 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1061\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2933\ncardnumber: 1552\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-623\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-623 189.186.86.233 295c889d-1d18-4caa-b611-1fade31e05d2 2020-09-15 20:15:46.804861 40139 3920 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1061\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 2687\ncardnumber: 1552\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-487 189.186.86.233 3d61b9d9-f1ef-4ed0-b2bd-d9ac410fd0c6 2020-09-15 20:55:04.639961 40140 2687 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.86.233 981ee8d9-4af5-4b92-abe8-ac600662568e 2020-09-15 20:55:06.216549 40141 2934 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1061\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-624\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 0726649e-4604-4b8e-a720-339575182233 2020-09-15 21:10:10.631967 40142 2274 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.86.233 0726649e-4604-4b8e-a720-339575182233 2020-09-15 21:10:10.664765 40143 2934 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 fcd4b75a-7432-46f4-904c-edc3ca668334 2020-09-15 21:15:58.134527 40144 3921 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1061\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2934\ncardnumber: 1555\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-624\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-624 189.186.86.233 fcd4b75a-7432-46f4-904c-edc3ca668334 2020-09-15 21:15:58.158573 40145 2935 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1061\namount: !ruby/object:BigDecimal 18:0.119E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.119E3\nstatus: 0\ndate_sale: 2020-09-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-625\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 65248e4d-ac6d-4d3a-9176-797a93718cb4 2020-09-15 21:16:21.617593 40146 2119 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 65248e4d-ac6d-4d3a-9176-797a93718cb4 2020-09-15 21:16:21.655931 40147 2935 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 bb371665-e6da-469e-b5ac-2daec83af953 2020-09-15 21:16:28.75344 40170 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 60 \N 189.186.86.233 48b71aa0-f66d-45f8-8043-1ebccb2e44d9 2020-09-15 21:40:24.959557 40171 2938 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 4712be0d-62aa-49e4-ab49-b2deb2448d86 2020-09-15 21:40:29.785967 40148 3922 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1061\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.119E3\nmove_type: '1'\nsale_id: 2935\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-625\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.381E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-625 189.186.86.233 bb371665-e6da-469e-b5ac-2daec83af953 2020-09-15 21:16:28.774805 40149 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-15 18:41:25.721351000 Z\n- &1 2020-09-15 19:34:26.904024000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-15 21:18:57.759155579 Z\nsign_in_count:\n- 1846\n- 1847\n 3694 \N 189.186.86.233 bd2683fb-9468-45c9-8ad9-fb7ba825dc8f 2020-09-15 21:18:57.765222 40150 4 User \N \N 4 User \N update ---\nunique_session_id:\n- i-NhbE5h1bG9FvRpBj8x\n- y32qNTY4XZkFwGgqX-z1\n 3695 \N 189.186.86.233 bd2683fb-9468-45c9-8ad9-fb7ba825dc8f 2020-09-15 21:18:57.78241 40151 2225 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.40.40 0aaff3e5-e579-4b79-b6be-154bc0c715a5 2020-09-15 21:28:29.234889 40152 674 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-09-15\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.40.40 a934be99-d35d-462f-8236-197408425af4 2020-09-15 21:28:30.110294 40153 3923 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1060\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 2819\ncardnumber: 9949\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1346 189.186.40.40 27243304-acb3-4d72-820f-94e5cfe1004a 2020-09-15 21:30:12.58311 40154 2819 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.40.40 c801a86b-9110-4b92-b1cf-f1b42df353a9 2020-09-15 21:30:16.072356 40155 2936 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1060\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.219E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-09-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1391\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 e0695a6d-78bd-40f0-8ceb-ac7d05c10fc6 2020-09-15 21:34:56.863762 40156 1630 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.40.40 e0695a6d-78bd-40f0-8ceb-ac7d05c10fc6 2020-09-15 21:34:56.89815 40157 2936 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 1faa77a5-fb33-448e-8f20-c70aa011d87c 2020-09-15 21:36:41.551545 40158 3924 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1060\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 2936\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1391\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1391 189.186.40.40 1faa77a5-fb33-448e-8f20-c70aa011d87c 2020-09-15 21:36:41.583389 40159 388 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-155\namount: !ruby/object:BigDecimal 18:0.9495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9495E3\nobservations: ''\npurchase_date: 2020-09-15\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-155 por $ 949.5 MXN creada. 189.186.86.233 9dcbfc12-853b-4e93-a1bf-bb64678d944e 2020-09-15 21:37:43.109881 40160 2292 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1295\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.86.233 9dcbfc12-853b-4e93-a1bf-bb64678d944e 2020-09-15 21:37:43.137036 40161 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-12 23:18:37.803361000 Z\n- &1 2020-09-12 23:28:52.097364000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-15 21:38:04.392255687 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 158\n- 159\n 318 \N 189.186.86.233 c0b080ac-830a-48a9-8624-83b873dbd8c4 2020-09-15 21:38:04.398863 40162 9 User \N \N 9 User \N update ---\nunique_session_id:\n- D3Hei61y5U7nz_ZVEzEB\n- xBwnCny1YEUYykswkjsi\n 319 \N 189.186.86.233 c0b080ac-830a-48a9-8624-83b873dbd8c4 2020-09-15 21:38:04.415349 40163 2937 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1060\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2020-09-15\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1392\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 9cb3ca05-0e77-47e3-a1e9-3733c9f88522 2020-09-15 21:38:48.33167 40164 2292 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.86.233 9cb3ca05-0e77-47e3-a1e9-3733c9f88522 2020-09-15 21:38:48.370039 40165 2937 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 c7ba7f1e-097c-4860-ad34-e4a9a02c777c 2020-09-15 21:39:00.667702 40166 3925 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1060\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1899E4\nmove_type: '1'\nsale_id: 2937\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1392\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '12562'\n 1 movimiento de efectivo por venta con folio PV1-V-1392 189.186.86.233 c7ba7f1e-097c-4860-ad34-e4a9a02c777c 2020-09-15 21:39:00.689477 40167 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-15 19:18:37.796665000 Z\n- &1 2020-09-15 19:48:41.563501000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-15 21:40:06.693798785 Z\nsign_in_count:\n- 220\n- 221\n 443 \N 189.186.86.233 e3a28328-244e-4e88-b853-6b9b0276509a 2020-09-15 21:40:06.700443 40168 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 3PnsBFjo61Gq-DSz_Gc7\n- yRzxJugXLjaymzLtrv5e\n 444 \N 189.186.86.233 e3a28328-244e-4e88-b853-6b9b0276509a 2020-09-15 21:40:06.721506 40169 2938 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1061\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-15\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-626\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 48b71aa0-f66d-45f8-8043-1ebccb2e44d9 2020-09-15 21:40:24.933948 40172 3926 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1061\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2938\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-626\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-626 189.186.86.233 4712be0d-62aa-49e4-ab49-b2deb2448d86 2020-09-15 21:40:29.807124 40173 3927 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 965\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 2604\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '45556'\n 1 \N 189.186.86.233 db7ff09c-ee33-489f-86da-3d715175b3a3 2020-09-15 21:58:48.325112 40174 3927 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 965\n- 1061\n 2 movimiento de efectivo por venta con folio PV3-V-435 189.186.86.233 db7ff09c-ee33-489f-86da-3d715175b3a3 2020-09-15 21:58:48.362041 40175 386 Customer \N \N 2 User \N create ---\nnick_name: VIANETZY MELCHOR\nphone: "(667) 447-8111"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente VIANETZY MELCHOR fue registrado. 189.186.40.40 38dc90a0-aa68-4424-ac06-134b498138f0 2020-09-15 22:01:15.578703 40176 2939 Sale \N \N 2 User \N create ---\ncustomer_id: 386\nuser_id: 2\nopen_cash_register_id: 1060\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-09-15\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1393\nexpiration_date: 2020-10-20\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 d60c2143-f8df-44b5-af94-13b47e0fd0a8 2020-09-15 22:01:56.493678 40177 2225 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.40.40 d60c2143-f8df-44b5-af94-13b47e0fd0a8 2020-09-15 22:01:56.522686 40178 3928 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.298E3\nmove_type: '1'\nsale_id: 2463\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '5622'\n 1 \N 189.186.86.233 b14f2d67-5d81-47c6-8551-e5fd5affce38 2020-09-15 22:02:08.743214 40179 2463 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.86.233 b14f2d67-5d81-47c6-8551-e5fd5affce38 2020-09-15 22:02:08.770316 40180 3928 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 933\n- 1061\n 2 movimiento de efectivo por venta con folio PV1-V-1196 189.186.86.233 b14f2d67-5d81-47c6-8551-e5fd5affce38 2020-09-15 22:02:08.787369 40181 3929 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1060\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2939\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1393\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1393 189.186.40.40 6fc25112-325f-4974-8fc7-b3e5bf1ba822 2020-09-15 22:02:20.505024 40182 2939 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.40.40 fb1c4a0f-5b5e-4b3d-8b39-dc883f573d2d 2020-09-15 22:02:22.876146 40183 3930 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1006\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.449E3\nmove_type: '1'\nsale_id: 2721\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4566'\n 1 \N 189.186.86.233 b40b68bf-0872-460d-88b1-458f5546edbe 2020-09-15 22:02:37.102216 40184 2721 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.86.233 b40b68bf-0872-460d-88b1-458f5546edbe 2020-09-15 22:02:37.132089 40185 3930 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 1006\n- 1061\n 2 movimiento de efectivo por venta con folio PV3-V-493 189.186.86.233 b40b68bf-0872-460d-88b1-458f5546edbe 2020-09-15 22:02:37.152651 40186 3931 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 257\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 772\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '555'\n 1 \N 189.186.86.233 f65035d6-0f8c-4cc2-9682-41b58da85908 2020-09-15 22:04:43.445733 40187 772 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.86.233 f65035d6-0f8c-4cc2-9682-41b58da85908 2020-09-15 22:04:43.474342 40188 3931 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 257\n- 1061\n 2 movimiento de efectivo por venta con folio PV1-V-437 189.186.86.233 f65035d6-0f8c-4cc2-9682-41b58da85908 2020-09-15 22:04:43.49182 40189 2940 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1061\namount: !ruby/object:BigDecimal 18:0.689E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.689E3\nstatus: 0\ndate_sale: 2020-09-15\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-627\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 10beb003-133d-485f-ab43-1a1babbbae2f 2020-09-15 22:30:00.206457 40190 2285 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.86.233 10beb003-133d-485f-ab43-1a1babbbae2f 2020-09-15 22:30:00.235287 40191 2940 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 40dbbbb1-9211-4ee6-8118-03377a220789 2020-09-15 22:30:26.05607 40192 3932 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1061\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.689E3\nmove_type: '1'\nsale_id: 2940\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-627\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.111E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-627 189.186.86.233 40dbbbb1-9211-4ee6-8118-03377a220789 2020-09-15 22:30:26.091962 40193 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-15 19:34:26.904024000 Z\n- &1 2020-09-15 21:18:57.759155000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-15 22:52:53.780397164 Z\nsign_in_count:\n- 1847\n- 1848\n 3696 \N 189.186.86.233 8b386871-ada6-4be4-88b9-b767b4c5feb1 2020-09-15 22:52:53.787215 40194 4 User \N \N 4 User \N update ---\nunique_session_id:\n- y32qNTY4XZkFwGgqX-z1\n- yBaFgEfyEDBzzZU2cJsB\n 3697 \N 189.186.86.233 8b386871-ada6-4be4-88b9-b767b4c5feb1 2020-09-15 22:52:53.805799 40195 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-12 23:28:52.097364000 Z\n- &1 2020-09-15 21:38:04.392255000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-15 22:54:08.967633593 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 159\n- 160\n 320 \N 189.186.86.233 ec7c625b-146e-4ab4-a912-8ace90aa1fb1 2020-09-15 22:54:08.974604 40196 9 User \N \N 9 User \N update ---\nunique_session_id:\n- xBwnCny1YEUYykswkjsi\n- PyiNUuUCdgZhtK4Mw6Mc\n 321 \N 189.186.86.233 ec7c625b-146e-4ab4-a912-8ace90aa1fb1 2020-09-15 22:54:08.990481 40197 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-15 21:18:57.759155000 Z\n- &1 2020-09-15 22:52:53.780397000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-15 22:55:15.232755948 Z\nsign_in_count:\n- 1848\n- 1849\n 3698 \N 189.186.86.233 811cfe43-34c6-4a22-943f-761a78d681f0 2020-09-15 22:55:15.239224 40198 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yBaFgEfyEDBzzZU2cJsB\n- u3pz8TRF-5Je5xQJZWP9\n 3699 \N 189.186.86.233 811cfe43-34c6-4a22-943f-761a78d681f0 2020-09-15 22:55:15.255118 40199 2941 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1060\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1394\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 0a51e119-ce79-4e8f-b784-215341f0bf23 2020-09-15 23:08:04.337073 40200 2242 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.40.40 0a51e119-ce79-4e8f-b784-215341f0bf23 2020-09-15 23:08:04.365973 40201 2941 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 b50b0531-70a8-4492-8c08-93aa51b1461b 2020-09-15 23:08:48.640397 40202 3933 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1060\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2941\ncardnumber: 4996\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1394\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1394 189.186.40.40 b50b0531-70a8-4492-8c08-93aa51b1461b 2020-09-15 23:08:48.664052 40203 2942 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1060\namount: !ruby/object:BigDecimal 18:0.168003E4\ntax: !ruby/object:BigDecimal 18:0.6896E2\ndiscount: !ruby/object:BigDecimal 18:0.2E3\ntotal: !ruby/object:BigDecimal 18:0.154899E4\nstatus: 0\ndate_sale: 2020-09-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1395\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 8bddc231-caf5-4bcc-a6c9-0c367415bbee 2020-09-15 23:17:27.032829 40204 2235 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.40.40 8bddc231-caf5-4bcc-a6c9-0c367415bbee 2020-09-15 23:17:27.062345 40205 735 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.35E2\n- !ruby/object:BigDecimal 18:0.33E2\n 7 \N 189.186.40.40 8bddc231-caf5-4bcc-a6c9-0c367415bbee 2020-09-15 23:17:27.086991 40206 2942 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 c9d66c9d-b153-4109-b520-5680ee4ab14e 2020-09-15 23:18:02.840407 40207 3934 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1060\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1549E4\nmove_type: '1'\nsale_id: 2942\ncardnumber: 9465\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1395\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1395 189.186.40.40 c9d66c9d-b153-4109-b520-5680ee4ab14e 2020-09-15 23:18:02.877046 40208 2943 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1060\namount: !ruby/object:BigDecimal 18:0.369E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.69E2\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2020-09-15\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1396\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 2aba1db9-7d70-45cf-8062-885ffde257cc 2020-09-15 23:45:50.129881 40209 2136 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.40.40 2aba1db9-7d70-45cf-8062-885ffde257cc 2020-09-15 23:45:50.159453 40210 2943 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 0f910d9d-e5eb-4093-aed2-5472b1f504ae 2020-09-15 23:45:54.121767 40211 3935 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1060\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 2943\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1396\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1396 189.186.40.40 0f910d9d-e5eb-4093-aed2-5472b1f504ae 2020-09-15 23:45:54.144728 40212 1085 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1060\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.8394E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.779E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2779E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.40.40 8628eece-0dc0-4468-92d1-7914731e9676 2020-09-16 00:07:54.678375 40213 1060 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.40 8628eece-0dc0-4468-92d1-7914731e9676 2020-09-16 00:07:54.70257 40214 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-15 19:48:41.563501000 Z\n- &1 2020-09-15 21:40:06.693798000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-16 00:28:55.951454792 Z\nsign_in_count:\n- 221\n- 222\n 445 \N 189.186.86.233 9e0317fa-7a03-4781-a0db-a70565415392 2020-09-16 00:28:55.958411 40215 18 User \N \N 18 User \N update ---\nunique_session_id:\n- yRzxJugXLjaymzLtrv5e\n- 4NaFaHDQDtRhmc7EPWzv\n 446 \N 189.186.86.233 9e0317fa-7a03-4781-a0db-a70565415392 2020-09-16 00:28:55.978295 40216 2944 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1061\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-15\nsaletype: 1\nseller_id: 29\nsale_code: PV3-V-628\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 d9b8b0b0-c088-4928-9865-dd54c11d1dea 2020-09-16 00:39:56.233735 40217 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 61 \N 189.186.86.233 d9b8b0b0-c088-4928-9865-dd54c11d1dea 2020-09-16 00:39:56.264614 40218 2944 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 07143e77-2f2f-4ebd-8a4e-28f3b5576667 2020-09-16 00:40:06.617792 40219 3936 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1061\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 2944\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-628\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-628 189.186.86.233 07143e77-2f2f-4ebd-8a4e-28f3b5576667 2020-09-16 00:40:06.65294 40220 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-15 21:38:04.392255000 Z\n- &1 2020-09-15 22:54:08.967633000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-16 00:52:09.573184970 Z\nsign_in_count:\n- 160\n- 161\n 322 \N 189.186.86.233 f4c7ba4e-c4de-4296-a6fe-c76952f0c81e 2020-09-16 00:52:09.600466 40221 9 User \N \N 9 User \N update ---\nunique_session_id:\n- PyiNUuUCdgZhtK4Mw6Mc\n- zHkyc4x-JbWMHGtMt5Nc\n 323 \N 189.186.86.233 f4c7ba4e-c4de-4296-a6fe-c76952f0c81e 2020-09-16 00:52:09.622576 40222 1062 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.779E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 779.0 189.186.86.233 a21bf4cc-dd6c-4225-b5c3-8cea2ec7c275 2020-09-16 00:52:13.000639 40223 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-15 22:52:53.780397000 Z\n- &1 2020-09-15 22:55:15.232755000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-16 00:57:00.990173444 Z\nsign_in_count:\n- 1849\n- 1850\n 3700 \N 189.186.86.233 092f4a4c-86e8-4dff-a7ae-0a088ba9f355 2020-09-16 00:57:00.996112 40224 4 User \N \N 4 User \N update ---\nunique_session_id:\n- u3pz8TRF-5Je5xQJZWP9\n- nx2GfxzKP88HT-8FzhzX\n 3701 \N 189.186.86.233 092f4a4c-86e8-4dff-a7ae-0a088ba9f355 2020-09-16 00:57:01.01444 40225 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-15 21:40:06.693798000 Z\n- &1 2020-09-16 00:28:55.951454000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-16 00:59:25.554788704 Z\nsign_in_count:\n- 222\n- 223\n 447 \N 189.186.86.233 31853446-8b44-4786-af10-e2ba860560d7 2020-09-16 00:59:25.561269 40226 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 4NaFaHDQDtRhmc7EPWzv\n- 3U8z5YoXzKRk_q7hz_1p\n 448 \N 189.186.86.233 31853446-8b44-4786-af10-e2ba860560d7 2020-09-16 00:59:25.574522 40227 1086 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1061\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.9099E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.4E4\ncash_fund: !ruby/object:BigDecimal 18:0.1164E4\nphysical_cash: !ruby/object:BigDecimal 18:0.5164E4\nobservations: FALTAN $330\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.86.233 fb462a10-6c84-4c6d-82a1-d5eb8bd8b1b3 2020-09-16 01:17:22.595191 40228 1061 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.86.233 fb462a10-6c84-4c6d-82a1-d5eb8bd8b1b3 2020-09-16 01:17:22.611461 40229 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-07 16:42:00.189017000 Z\n- &1 2020-09-13 00:57:13.610802000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-16 04:58:35.098470182 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938280\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938280\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729326\n mask_addr: 4294967295\nsign_in_count:\n- 238\n- 239\n 478 \N 201.175.156.174 1cb12364-a0c8-496c-89c7-16406e492181 2020-09-16 04:58:35.133143 40230 1 User \N \N 1 User \N update ---\nunique_session_id:\n- svbfGuz4wifwWaGY1PC7\n- y-8UP8QVTcSxC9MpJD91\n 479 \N 201.175.156.174 1cb12364-a0c8-496c-89c7-16406e492181 2020-09-16 04:58:35.163095 40231 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-15 22:55:15.232755000 Z\n- &1 2020-09-16 00:57:00.990173000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-16 05:21:58.574904272 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534268\n mask_addr: 4294967295\nsign_in_count:\n- 1850\n- 1851\n 3702 \N 177.228.96.252 794891f4-ad72-4d49-8ad6-30e22dc553cc 2020-09-16 05:21:58.583471 40232 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nx2GfxzKP88HT-8FzhzX\n- 3bcL7S4zHMYwVFngx_cB\n 3703 \N 177.228.96.252 794891f4-ad72-4d49-8ad6-30e22dc553cc 2020-09-16 05:21:58.610365 40233 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-13 22:24:50.142616000 Z\n- &1 2020-09-14 18:07:30.400011000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-16 18:35:44.414373098 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183133918\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 289\n- 290\n 581 \N 189.186.86.233 61c440ea-a1ea-435f-8221-84f32c7d7705 2020-09-16 18:35:44.449469 40234 21 User \N \N 21 User \N update ---\nunique_session_id:\n- kV-fJtr2niW1iHZkb4bF\n- FEUv8wNM1zfuGRAu3YEx\n 582 \N 189.186.86.233 61c440ea-a1ea-435f-8221-84f32c7d7705 2020-09-16 18:35:44.475059 40235 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-14 17:41:27.024786000 Z\n- &1 2020-09-15 16:44:35.081643000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-16 19:21:29.083264503 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118879\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\nsign_in_count:\n- 644\n- 645\n 1293 \N 189.186.40.40 2151e3f6-b536-4a69-937d-74e1c49e53c1 2020-09-16 19:21:29.090623 40236 2 User \N \N 2 User \N update ---\nunique_session_id:\n- x5Xyj3aVvc4WeMVeJgWy\n- yWKuFN_zzQmYHzixxZzi\n 1294 \N 189.186.40.40 2151e3f6-b536-4a69-937d-74e1c49e53c1 2020-09-16 19:21:29.109109 40237 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-13 00:57:13.610802000 Z\n- &1 2020-09-16 04:58:35.098470000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-16 21:41:55.073892461 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938280\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729326\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729326\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\nsign_in_count:\n- 239\n- 240\n 480 \N 189.186.40.40 d8ac8226-6300-45d0-ad9c-801d6ff0008b 2020-09-16 21:41:55.082841 40238 1 User \N \N 1 User \N update ---\nunique_session_id:\n- y-8UP8QVTcSxC9MpJD91\n- Q5GJvxxp-esBgzDfsczc\n 481 \N 189.186.40.40 d8ac8226-6300-45d0-ad9c-801d6ff0008b 2020-09-16 21:41:55.099571 40239 1063 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1164E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1164.0 189.186.86.233 34d18b8f-365c-40ae-9d0f-1b1cfe9959e0 2020-09-16 21:42:20.067071 40240 387 Customer \N \N 21 User \N create ---\nnick_name: DIANA QUINTERO\nphone: "(667) 316-0740"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DIANA QUINTERO fue registrado. 189.186.86.233 860f0ab3-f494-44f0-83d2-254617fdbb9b 2020-09-16 21:43:06.268769 40241 2945 Sale \N \N 21 User \N create ---\ncustomer_id: 387\nuser_id: 21\nopen_cash_register_id: 1063\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-16\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-629\nexpiration_date: 2020-10-21\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 4e7af41b-a5b8-45ae-8c52-8ab6aa5aa46d 2020-09-16 21:43:17.77892 40242 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 62 \N 189.186.86.233 4e7af41b-a5b8-45ae-8c52-8ab6aa5aa46d 2020-09-16 21:43:17.808461 40243 3937 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1063\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2945\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-629\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-629 189.186.86.233 5633e3da-d647-432f-a3fe-28463c907915 2020-09-16 21:43:48.938013 40244 2945 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.86.233 caa548cd-491a-4513-adfa-e89d492fbf4a 2020-09-16 21:44:42.759065 40245 2946 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1062\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-09-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1397\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 fb0d69d9-40ff-4338-a915-59c32a91360f 2020-09-16 21:45:02.105517 40246 2241 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.40.40 fb0d69d9-40ff-4338-a915-59c32a91360f 2020-09-16 21:45:02.139117 40247 2946 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 4602a576-acca-48d9-8554-1cbc7fd9b3e1 2020-09-16 21:45:10.355466 40248 3938 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1062\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 2946\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1397\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1397 189.186.40.40 4602a576-acca-48d9-8554-1cbc7fd9b3e1 2020-09-16 21:45:10.391852 40249 2947 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1062\namount: !ruby/object:BigDecimal 18:0.48521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-09-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1398\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 b78a38c1-ce09-4a12-80b2-31a6b8769967 2020-09-16 21:47:31.543432 40250 88 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.40.40 b78a38c1-ce09-4a12-80b2-31a6b8769967 2020-09-16 21:47:31.573719 40251 2947 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 3a8d4670-7558-433d-bf4c-c4b26cb9cd88 2020-09-16 21:47:35.241993 40252 3939 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1062\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 2947\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1398\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1398 189.186.40.40 3a8d4670-7558-433d-bf4c-c4b26cb9cd88 2020-09-16 21:47:35.263082 40253 1087 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1062\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.899E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.978E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1678E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.40.40 3fa61188-3357-478b-b075-1716b62fd22f 2020-09-16 21:55:04.319522 40254 1062 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.40 3fa61188-3357-478b-b075-1716b62fd22f 2020-09-16 21:55:04.335099 40255 2948 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1063\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-16\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-630\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 3e261ffa-5be7-498a-b110-423283f9d7e7 2020-09-16 21:55:56.663195 40256 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 63 \N 189.186.86.233 3e261ffa-5be7-498a-b110-423283f9d7e7 2020-09-16 21:55:56.694643 40257 2948 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 ac27b54f-933a-4ab5-8467-8acd15413229 2020-09-16 21:56:45.860607 40258 3940 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1063\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.9E3\nmove_type: '1'\nsale_id: 2948\ncardnumber: 5091\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-630\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-630 189.186.86.233 ac27b54f-933a-4ab5-8467-8acd15413229 2020-09-16 21:56:45.886077 40259 3941 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1063\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 2948\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-630\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.401E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-630 189.186.86.233 02c4b935-057a-45cd-8ddd-8636e1f08a8a 2020-09-16 21:57:18.735887 40260 1088 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1063\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1699E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.963E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1963E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.86.233 5418fac9-5965-4791-91c2-32bfc171fb65 2020-09-16 22:19:21.145914 40261 1063 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.86.233 5418fac9-5965-4791-91c2-32bfc171fb65 2020-09-16 22:19:21.16584 40262 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-14 18:07:30.400011000 Z\n- &1 2020-09-16 18:35:44.414373000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-16 22:28:45.469156259 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 290\n- 291\n 583 \N 189.186.86.233 a54661ff-89fc-4809-b772-f64db670d436 2020-09-16 22:28:45.477949 40263 21 User \N \N 21 User \N update ---\nunique_session_id:\n- FEUv8wNM1zfuGRAu3YEx\n- 4bjXr7xFv35vdip6gHCZ\n 584 \N 189.186.86.233 a54661ff-89fc-4809-b772-f64db670d436 2020-09-16 22:28:45.49871 40264 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-16 18:35:44.414373000 Z\n- &1 2020-09-16 22:28:45.469156000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-17 01:39:20.342455462 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145296\n mask_addr: 4294967295\nsign_in_count:\n- 291\n- 292\n 585 \N 189.186.241.80 da6ac9de-399c-477c-a6aa-ce64b76d8fc9 2020-09-17 01:39:20.350312 40265 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 4bjXr7xFv35vdip6gHCZ\n- AFygbdX9KwV7ahdWCx9c\n 586 \N 189.186.241.80 da6ac9de-399c-477c-a6aa-ce64b76d8fc9 2020-09-17 01:39:20.367005 40266 1064 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.963E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 963.0 189.186.241.80 4ceb1994-b988-4717-9880-5093ea846c30 2020-09-17 01:39:35.521016 40267 2949 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1064\namount: !ruby/object:BigDecimal 18:0.1998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1998E4\nstatus: 0\ndate_sale: 2020-09-16\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-631\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.241.80 991212ba-9f9f-43b8-8926-011e18fe39dc 2020-09-17 01:40:13.889443 40268 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.7E1\n 29 \N 189.186.241.80 991212ba-9f9f-43b8-8926-011e18fe39dc 2020-09-17 01:40:13.922801 40269 2949 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.241.80 89b29768-bacf-4a31-8d8f-8320f8a18c92 2020-09-17 01:40:27.729507 40270 3942 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1064\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1998E4\nmove_type: '1'\nsale_id: 2949\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-631\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: INSTAG\n 1 movimiento de efectivo por venta con folio PV3-V-631 189.186.241.80 89b29768-bacf-4a31-8d8f-8320f8a18c92 2020-09-17 01:40:27.754696 40271 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-16 00:57:00.990173000 Z\n- &1 2020-09-16 05:21:58.574904000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-17 04:43:36.050286373 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534268\n mask_addr: 4294967295\nsign_in_count:\n- 1851\n- 1852\n 3704 \N 177.228.96.252 4a89703a-db46-4ede-87c3-109667d09478 2020-09-17 04:43:36.057871 40272 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3bcL7S4zHMYwVFngx_cB\n- t_N3ozfRUiPCKKhD5xM6\n 3705 \N 177.228.96.252 4a89703a-db46-4ede-87c3-109667d09478 2020-09-17 04:43:36.076521 40273 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-15 16:44:35.081643000 Z\n- &1 2020-09-16 19:21:29.083264000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-17 17:49:23.588480862 Z\nsign_in_count:\n- 645\n- 646\n 1295 \N 189.186.40.40 18317d94-1fec-47c3-ba60-eb3bdc9f2943 2020-09-17 17:49:23.634277 40274 2 User \N \N 2 User \N update ---\nunique_session_id:\n- yWKuFN_zzQmYHzixxZzi\n- NS_WhLxX6m1za4VS9Bg5\n 1296 \N 189.186.40.40 18317d94-1fec-47c3-ba60-eb3bdc9f2943 2020-09-17 17:49:23.669803 40275 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-16 22:28:45.469156000 Z\n- &1 2020-09-17 01:39:20.342455000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-17 18:47:26.726449897 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145296\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145296\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 292\n- 293\n 587 \N 189.186.86.233 458969b5-c01c-4b29-b7bb-138f9dda3eb1 2020-09-17 18:47:26.748476 40276 21 User \N \N 21 User \N update ---\nunique_session_id:\n- AFygbdX9KwV7ahdWCx9c\n- hGEt-FN4TMXPzRDFe_VM\n 588 \N 189.186.86.233 458969b5-c01c-4b29-b7bb-138f9dda3eb1 2020-09-17 18:47:26.766155 40277 1089 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1064\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1998E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.963E3\nphysical_cash: !ruby/object:BigDecimal 18:0.963E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.86.233 4c057af0-4c04-4ae2-a2a7-6c6c2452a6be 2020-09-17 18:49:01.625995 40278 1064 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.86.233 4c057af0-4c04-4ae2-a2a7-6c6c2452a6be 2020-09-17 18:49:01.646781 40279 1065 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.978E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 978.0 189.186.40.40 a42a5bc1-c5ab-474e-832a-60b9403b4869 2020-09-17 18:58:01.120513 40280 2950 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1065\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-09-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1399\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 713e7bec-efe1-4bca-a3fa-3577f981071a 2020-09-17 18:58:37.213174 40281 2013 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.40.40 713e7bec-efe1-4bca-a3fa-3577f981071a 2020-09-17 18:58:37.2486 40282 2950 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 d45b0a16-752e-4243-8432-30d2464ef0d5 2020-09-17 18:58:41.861423 40283 3943 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1065\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 2950\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1399\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1399 189.186.40.40 d45b0a16-752e-4243-8432-30d2464ef0d5 2020-09-17 18:58:41.890708 40521 1909 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.86.233 bba3dfae-058b-45d5-8920-1632003ab576 2020-09-19 21:54:37.413985 40284 1066 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.963E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 963.0 189.186.86.233 8886906d-7262-45fb-88d0-2cedff90685b 2020-09-17 19:22:57.224164 40285 388 Customer \N \N 21 User \N create ---\nnick_name: Mariem Instagram\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente Mariem Instagram fue registrado. 189.186.86.233 f758bc8c-05f5-459b-824b-8a7e7240fc1e 2020-09-17 19:23:50.411242 40286 2951 Sale \N \N 21 User \N create ---\ncustomer_id: 388\nuser_id: 21\nopen_cash_register_id: 1066\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2020-09-17\nsaletype: 2\nseller_id: 29\nsale_code: PV3-V-632\nexpiration_date: 2020-10-22\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 2a762e0a-b4cc-47e0-b0ab-a38d50bc1a77 2020-09-17 19:24:32.522014 40287 2045 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 2a762e0a-b4cc-47e0-b0ab-a38d50bc1a77 2020-09-17 19:24:32.562402 40288 3944 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1066\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2951\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-632\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-632 189.186.86.233 ee2f2840-9a9f-49c1-88de-6cbf26a42f20 2020-09-17 19:24:57.47462 40289 2951 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.86.233 fe1d05d5-7cc8-41b8-8c25-79dca9979df8 2020-09-17 19:25:19.976973 40290 2952 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1065\namount: !ruby/object:BigDecimal 18:0.969E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.969E3\nstatus: 0\ndate_sale: 2020-09-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1400\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 3d458d06-37c8-4ca0-afa9-b0f00d0082f2 2020-09-17 19:30:30.510401 40291 2249 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.40.40 3d458d06-37c8-4ca0-afa9-b0f00d0082f2 2020-09-17 19:30:30.543268 40292 2952 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 57b3a4ff-036e-4f9d-a02b-1a51621317dc 2020-09-17 19:30:35.381671 40293 3945 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1065\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.969E3\nmove_type: '1'\nsale_id: 2952\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1400\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.969E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1400 189.186.40.40 57b3a4ff-036e-4f9d-a02b-1a51621317dc 2020-09-17 19:30:35.403929 40294 2953 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1066\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2020-09-17\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-633\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 ec8eb59a-17cd-4ce4-807a-af4c76fe4498 2020-09-17 19:35:21.71265 40295 1975 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.86.233 ec8eb59a-17cd-4ce4-807a-af4c76fe4498 2020-09-17 19:35:21.739071 40296 2953 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 ca8e0ccf-fee2-4ad3-a804-cf999d05497f 2020-09-17 19:35:31.776934 40297 3946 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1066\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 2953\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-633\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.13E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-633 189.186.86.233 ca8e0ccf-fee2-4ad3-a804-cf999d05497f 2020-09-17 19:35:31.802364 40298 3947 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1065\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 2939\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1393 189.186.40.40 1a70464c-233f-4ccd-b58c-0d440122f121 2020-09-17 20:38:08.377551 40299 2939 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.40.40 4207e44d-987d-4c2b-949c-c0bc90c7c34e 2020-09-17 20:38:09.817218 40300 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-16 05:21:58.574904000 Z\n- &1 2020-09-17 04:43:36.050286000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-17 20:57:30.412175234 Z\nsign_in_count:\n- 1852\n- 1853\n 3706 \N 177.228.96.252 49dac8df-6d57-45ed-81d1-0abb7e506e88 2020-09-17 20:57:30.418097 40301 4 User \N \N 4 User \N update ---\nunique_session_id:\n- t_N3ozfRUiPCKKhD5xM6\n- AU1Tvg7VQNxMdbH1uza3\n 3707 \N 177.228.96.252 49dac8df-6d57-45ed-81d1-0abb7e506e88 2020-09-17 20:57:30.433989 40302 2954 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1066\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-17\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-634\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 8e585ccb-b96c-4033-ba1c-43f615c204be 2020-09-17 21:22:26.141962 40303 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 30 \N 189.186.86.233 8e585ccb-b96c-4033-ba1c-43f615c204be 2020-09-17 21:22:26.168345 40304 2954 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 87fb2762-4f5f-4ee8-b4e4-d11cc0db5083 2020-09-17 21:22:39.829862 40305 3948 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1066\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 2954\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-634\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-634 189.186.86.233 87fb2762-4f5f-4ee8-b4e4-d11cc0db5083 2020-09-17 21:22:39.856443 40306 2955 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1065\namount: !ruby/object:BigDecimal 18:0.1846E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.184E3\ntotal: !ruby/object:BigDecimal 18:0.1662E4\nstatus: 0\ndate_sale: 2020-09-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1401\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 e8c69d51-8078-44b1-93c7-ec745a8a1d26 2020-09-17 21:37:49.323402 40307 2246 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.40.40 e8c69d51-8078-44b1-93c7-ec745a8a1d26 2020-09-17 21:37:49.356003 40308 2239 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.40.40 e8c69d51-8078-44b1-93c7-ec745a8a1d26 2020-09-17 21:37:49.380932 40309 2258 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.40.40 e8c69d51-8078-44b1-93c7-ec745a8a1d26 2020-09-17 21:37:49.403097 40310 2955 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 d6e95852-2584-41c4-8aa8-a07609fcdf82 2020-09-17 21:38:01.917115 40311 3949 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1065\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1662E4\nmove_type: '1'\nsale_id: 2955\ncardnumber: 8036\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1401\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1401 189.186.40.40 d6e95852-2584-41c4-8aa8-a07609fcdf82 2020-09-17 21:38:01.947796 40312 2954 Sale \N \N 21 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-634 cancelada. 189.186.86.233 0a589c63-37b7-47d7-8fcb-4f6369a43e20 2020-09-17 22:03:28.499992 40313 3948 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1066\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 2954\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-634\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.86.233 0a589c63-37b7-47d7-8fcb-4f6369a43e20 2020-09-17 22:03:28.535856 40314 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 31 \N 189.186.86.233 0a589c63-37b7-47d7-8fcb-4f6369a43e20 2020-09-17 22:03:28.581671 40315 2956 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1066\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-17\nsaletype: 1\nseller_id: 29\nsale_code: PV3-V-635\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 ecc00d78-242e-485a-bc25-60a287d87c8d 2020-09-17 22:03:49.195896 40316 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 32 \N 189.186.86.233 ecc00d78-242e-485a-bc25-60a287d87c8d 2020-09-17 22:03:49.223751 40317 2956 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 c01e24cd-3caf-44b6-a5bf-8d6555861f17 2020-09-17 22:03:53.708007 40318 3950 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1066\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 2956\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-635\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-635 189.186.86.233 c01e24cd-3caf-44b6-a5bf-8d6555861f17 2020-09-17 22:03:53.731053 40319 389 Customer \N \N 21 User \N create ---\nnick_name: FERNANDA VALENZUELA\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente FERNANDA VALENZUELA fue registrado. 189.186.86.233 543b6d3a-ecc5-4fac-8570-861216ed7a75 2020-09-17 22:49:51.179853 40320 2957 Sale \N \N 21 User \N create ---\ncustomer_id: 389\nuser_id: 21\nopen_cash_register_id: 1066\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-17\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-636\nexpiration_date: 2020-10-22\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 daa09035-fbc0-42ab-8f26-a16a27cd1773 2020-09-17 22:53:00.165786 40321 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 33 \N 189.186.86.233 daa09035-fbc0-42ab-8f26-a16a27cd1773 2020-09-17 22:53:00.193196 40322 3951 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1066\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2957\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-636\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-636 189.186.86.233 9cbadbd7-eb8d-47b3-aaad-51016c47dd1c 2020-09-17 22:53:16.309919 40323 2957 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.86.233 e1665f28-f85d-4fd1-ad1f-ef6960367a97 2020-09-17 22:53:17.760746 40324 3952 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1066\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 2729\ncardnumber: 2272\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-495 189.186.86.233 839f78e7-afa8-4ab1-8d84-3bf6648a8955 2020-09-17 22:58:15.370304 40325 2729 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.86.233 e4cef720-b9b4-4779-969e-ef9650e75846 2020-09-17 22:58:17.111373 40326 333 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1065\nquantity: !ruby/object:BigDecimal 18:0.2135E4\nstatus: 1\nobservations: 'VACACIONES ROCÍO '\nexpense_date: 2020-09-17\nexpense_code: PV1-E-231\n 1 Egreso por 2135.0 registrado 189.186.40.40 36345f0b-988a-4624-a034-86ac0f9558fe 2020-09-17 23:07:33.437324 40327 3953 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1065\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2135E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 333\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.40.40 36345f0b-988a-4624-a034-86ac0f9558fe 2020-09-17 23:07:33.45883 40522 1909 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 70478cde-44ea-4d13-8805-30658f9d6ea5 2020-09-19 21:54:41.897731 40328 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-17 04:43:36.050286000 Z\n- &1 2020-09-17 20:57:30.412175000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-17 23:18:06.068271666 Z\nsign_in_count:\n- 1853\n- 1854\n 3708 \N 177.228.96.252 f872840a-8881-4713-96d4-1c8cd0a6e0dd 2020-09-17 23:18:06.075955 40329 4 User \N \N 4 User \N update ---\nunique_session_id:\n- AU1Tvg7VQNxMdbH1uza3\n- 42d_XHG34uNqQs3sY3yf\n 3709 \N 177.228.96.252 f872840a-8881-4713-96d4-1c8cd0a6e0dd 2020-09-17 23:18:06.093884 40330 389 Purchase \N \N 2 User \N create ---\nsupplier_id: 3\npointsale_id: 1\npurchase_code: PV1-C-156\namount: !ruby/object:BigDecimal 18:0.1035E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1035E3\nobservations: ''\npurchase_date: 2020-09-17\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-156 por $ 103.5 MXN creada. 189.186.40.40 80427fd2-53d0-4f38-a269-20b9a4a52adb 2020-09-17 23:32:44.057003 40331 1759 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.7E1\n 3 \N 189.186.40.40 80427fd2-53d0-4f38-a269-20b9a4a52adb 2020-09-17 23:32:44.081729 40332 2958 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1065\namount: !ruby/object:BigDecimal 18:0.69E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.69E2\nstatus: 0\ndate_sale: 2020-09-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1402\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 56a31faa-6a9a-4cbb-bb90-7bbe07db6f96 2020-09-17 23:33:00.230938 40333 1759 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.40.40 56a31faa-6a9a-4cbb-bb90-7bbe07db6f96 2020-09-17 23:33:00.25757 40334 2958 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 69e10f2f-e525-4cdd-b7c4-c3865c9a388f 2020-09-17 23:33:03.754065 40335 3954 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1065\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.69E2\nmove_type: '1'\nsale_id: 2958\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1402\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.69E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1402 189.186.40.40 69e10f2f-e525-4cdd-b7c4-c3865c9a388f 2020-09-17 23:33:03.774982 40336 2959 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1066\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-17\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-637\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 9baf0749-74c8-49ff-a64a-b2991e28c376 2020-09-17 23:35:30.183507 40337 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 34 \N 189.186.86.233 9baf0749-74c8-49ff-a64a-b2991e28c376 2020-09-17 23:35:30.210881 40338 2959 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 b0ef5e23-be66-4e97-9b88-76595254d83a 2020-09-17 23:36:20.982491 40339 3955 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1066\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 2959\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-637\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-637 189.186.86.233 b0ef5e23-be66-4e97-9b88-76595254d83a 2020-09-17 23:36:21.00787 40340 2960 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1066\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-17\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-638\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 a64ed917-7895-492e-b907-98fd45f01bce 2020-09-18 00:06:24.79666 40341 2017 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.86.233 a64ed917-7895-492e-b907-98fd45f01bce 2020-09-18 00:06:24.827661 40342 2961 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1065\namount: !ruby/object:BigDecimal 18:0.173486E4\ntax: !ruby/object:BigDecimal 18:0.16414E3\ndiscount: !ruby/object:BigDecimal 18:0.709E3\ntotal: !ruby/object:BigDecimal 18:0.119E4\nstatus: 0\ndate_sale: 2020-09-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1403\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 5c65e4b4-7c82-4af9-a90b-4c3ce3061e3d 2020-09-18 00:06:55.479561 40343 1840 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.40.40 5c65e4b4-7c82-4af9-a90b-4c3ce3061e3d 2020-09-18 00:06:55.508952 40344 2961 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 d4175f91-30d0-4914-94bd-a360269c8d5e 2020-09-18 00:07:03.90412 40345 3956 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1065\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E2\nmove_type: '1'\nsale_id: 2961\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1403\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1403 189.186.40.40 d4175f91-30d0-4914-94bd-a360269c8d5e 2020-09-18 00:07:03.928435 40346 2960 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 7c8f0a34-f9f1-4f6c-b98e-58951cebf7e8 2020-09-18 00:07:06.091178 40347 3957 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1066\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 2960\ncardnumber: 4618\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-638\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-638 189.186.86.233 7c8f0a34-f9f1-4f6c-b98e-58951cebf7e8 2020-09-18 00:07:06.131749 40348 3956 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1065\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E2\nmove_type: '1'\nsale_id: 2961\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1403\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.40.40 ba0f1da8-24d7-4a8f-a8c3-6fb307dd28e1 2020-09-18 00:07:06.187842 40416 2295 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1346\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 06cee12c-afdc-4308-bf3e-2e5f4d1b21a8 2020-09-19 00:22:45.098131 40349 3958 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1065\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.119E4\nmove_type: '1'\nsale_id: 2961\ncardnumber: 9307\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1403\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1403 189.186.40.40 677cbf2e-3288-43fc-962f-ad6165a3cb84 2020-09-18 00:08:18.839547 40350 1090 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1065\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5388E4\namount_out: !ruby/object:BigDecimal 18:0.2135E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.879E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1379E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.40.40 68f9dd24-2aa1-4a2a-afc4-1e9333e35454 2020-09-18 00:20:21.931941 40351 1065 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.40 68f9dd24-2aa1-4a2a-afc4-1e9333e35454 2020-09-18 00:20:21.947355 40352 1091 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1066\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.6995E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.32E4\ncash_fund: !ruby/object:BigDecimal 18:0.106E4\nphysical_cash: !ruby/object:BigDecimal 18:0.426E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.86.233 e32b4b89-21c8-4f99-a315-4bfbedf3237e 2020-09-18 01:02:36.937935 40353 1066 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.86.233 e32b4b89-21c8-4f99-a315-4bfbedf3237e 2020-09-18 01:02:36.955699 40354 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-17 20:57:30.412175000 Z\n- &1 2020-09-17 23:18:06.068271000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-18 16:23:35.665275178 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534268\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\nsign_in_count:\n- 1854\n- 1855\n 3710 \N 189.186.40.40 060249b2-9856-48a7-96cb-5c2a2559dae1 2020-09-18 16:23:35.704415 40355 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 42d_XHG34uNqQs3sY3yf\n- CK1QdsUrztbPUwy64ZeZ\n 3711 \N 189.186.40.40 060249b2-9856-48a7-96cb-5c2a2559dae1 2020-09-18 16:23:35.736787 40356 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-15 22:54:08.967633000 Z\n- &1 2020-09-16 00:52:09.573184000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-18 16:35:42.780807833 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\nsign_in_count:\n- 161\n- 162\n 324 \N 189.186.40.40 d10d11a7-f9ab-42da-9707-64633116fc47 2020-09-18 16:35:42.791286 40357 9 User \N \N 9 User \N update ---\nunique_session_id:\n- zHkyc4x-JbWMHGtMt5Nc\n- mFsbxYwG-jQxbwe82npf\n 325 \N 189.186.40.40 d10d11a7-f9ab-42da-9707-64633116fc47 2020-09-18 16:35:42.81181 40358 1067 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.879E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 879.0 189.186.40.40 dc30e950-c090-4714-9059-746eebc457bc 2020-09-18 16:35:46.260802 40359 3959 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1067\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2879\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1372 189.186.40.40 e2c7e3b2-b703-475c-afc9-8ca2dbff6478 2020-09-18 16:36:19.792029 40360 2962 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1067\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-09-18\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1404\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 c1394c17-6e55-4042-b77c-6ac2505e47a7 2020-09-18 16:56:56.715928 40361 1643 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.40.40 c1394c17-6e55-4042-b77c-6ac2505e47a7 2020-09-18 16:56:56.766997 40362 2962 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 8568655b-0f07-4def-8401-2ab196cb0b98 2020-09-18 16:58:24.066169 40363 3960 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1067\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 2962\ncardnumber: 1555\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1404\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1404 189.186.40.40 8568655b-0f07-4def-8401-2ab196cb0b98 2020-09-18 16:58:24.090683 40364 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-17 01:39:20.342455000 Z\n- &1 2020-09-17 18:47:26.726449000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-18 18:41:18.019501627 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145296\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 293\n- 294\n 589 \N 189.186.86.233 2011a9a2-fddc-4535-baf2-25893b4e62fb 2020-09-18 18:41:18.038959 40365 21 User \N \N 21 User \N update ---\nunique_session_id:\n- hGEt-FN4TMXPzRDFe_VM\n- v9Kh7Df3_jdRcS5Jvq-e\n 590 \N 189.186.86.233 2011a9a2-fddc-4535-baf2-25893b4e62fb 2020-09-18 18:41:18.059477 40366 1068 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.106E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1060.0 189.186.86.233 b208933b-2563-4d42-b499-65073989e5d1 2020-09-18 18:51:15.670085 40367 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-17 23:18:06.068271000 Z\n- &1 2020-09-18 16:23:35.665275000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-18 19:02:57.233790502 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534268\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\nsign_in_count:\n- 1855\n- 1856\n 3712 \N 189.186.40.40 c648eedd-9e32-4a39-bd3c-b3ad9e729d67 2020-09-18 19:02:57.262159 40368 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CK1QdsUrztbPUwy64ZeZ\n- z54vPbsa88jzCmcMhDrv\n 3713 \N 189.186.40.40 c648eedd-9e32-4a39-bd3c-b3ad9e729d67 2020-09-18 19:02:57.290042 40390 2967 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1067\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.649E3\ntotal: !ruby/object:BigDecimal 18:0.65E3\nstatus: 0\ndate_sale: 2020-09-18\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1408\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 81552fe8-6006-49f3-bae2-c8973d701189 2020-09-18 22:45:20.923343 40369 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-09-09 05:51:59.585225000 Z\n- &1 2020-09-09 22:26:38.945009000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-18 19:05:53.327275978 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147112595\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 93\n- 94\n 188 \N 189.186.86.233 e140010d-3bd6-47f8-bb92-a96f52cb5f1f 2020-09-18 19:05:53.337735 40370 25 User \N \N 25 User \N update ---\nunique_session_id:\n- TAUbRabtES1LTaNh6YvU\n- "-JqxuTxxwDXzAU1-byzv"\n 189 \N 189.186.86.233 e140010d-3bd6-47f8-bb92-a96f52cb5f1f 2020-09-18 19:05:53.360408 40371 2963 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1068\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2020-09-18\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-639\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 99b28f5d-2818-4846-ad29-dd72ca90bd89 2020-09-18 21:35:35.841327 40372 2281 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.86.233 99b28f5d-2818-4846-ad29-dd72ca90bd89 2020-09-18 21:35:35.902592 40373 2963 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 7cc70d0e-5fa8-40e1-b8a2-e007e395ff0d 2020-09-18 21:35:50.460658 40374 3961 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1068\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.489E3\nmove_type: '1'\nsale_id: 2963\ncardnumber: 2891\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-639\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-639 189.186.86.233 7cc70d0e-5fa8-40e1-b8a2-e007e395ff0d 2020-09-18 21:35:50.491665 40375 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-16 00:52:09.573184000 Z\n- &1 2020-09-18 16:35:42.780807000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-18 21:41:34.959571068 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\nsign_in_count:\n- 162\n- 163\n 326 \N 189.186.40.40 0e9ae1e8-cdaf-4879-8a2d-9b7765c80861 2020-09-18 21:41:34.988158 40376 9 User \N \N 9 User \N update ---\nunique_session_id:\n- mFsbxYwG-jQxbwe82npf\n- XBqztdQrXUKP1cPeP5tH\n 327 \N 189.186.40.40 0e9ae1e8-cdaf-4879-8a2d-9b7765c80861 2020-09-18 21:41:35.015966 40377 2964 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1067\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-09-18\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1405\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 2f509776-56fb-4c79-985d-4d60fe0bb3dc 2020-09-18 21:42:47.199584 40378 1858 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.40.40 2f509776-56fb-4c79-985d-4d60fe0bb3dc 2020-09-18 21:42:47.233908 40379 2964 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 927736e9-70e8-4d4e-8b92-eb075bee4346 2020-09-18 21:42:56.232771 40380 3962 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1067\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 2964\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1405\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1405 189.186.40.40 927736e9-70e8-4d4e-8b92-eb075bee4346 2020-09-18 21:42:56.262085 40381 2965 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1067\namount: !ruby/object:BigDecimal 18:0.107021E4\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1208E4\nstatus: 0\ndate_sale: 2020-09-18\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1406\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 5ab14811-76df-48be-b7ca-e6d45423035e 2020-09-18 22:33:40.203064 40382 670 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.40.40 5ab14811-76df-48be-b7ca-e6d45423035e 2020-09-18 22:33:40.255343 40383 2199 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.40.40 5ab14811-76df-48be-b7ca-e6d45423035e 2020-09-18 22:33:40.306042 40384 2965 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 323eae67-41aa-47f8-b4ce-88d5082085cf 2020-09-18 22:34:15.508921 40385 3963 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1067\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1208E4\nmove_type: '1'\nsale_id: 2965\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1406\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.192E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1406 189.186.40.40 323eae67-41aa-47f8-b4ce-88d5082085cf 2020-09-18 22:34:15.532006 40386 2966 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1067\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2020-09-18\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1407\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 02456925-1435-4f8f-8425-a6e167973528 2020-09-18 22:36:16.642855 40387 2251 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 3 \N 189.186.40.40 02456925-1435-4f8f-8425-a6e167973528 2020-09-18 22:36:16.668678 40388 2966 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 c2c855d7-e76a-48d1-9346-f46f651ef080 2020-09-18 22:37:19.694351 40389 3964 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1067\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 2966\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1407\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.469E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1407 189.186.40.40 c2c855d7-e76a-48d1-9346-f46f651ef080 2020-09-18 22:37:19.720678 40391 1044 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.40.40 81552fe8-6006-49f3-bae2-c8973d701189 2020-09-18 22:45:20.947456 40393 3965 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1067\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.65E3\nmove_type: '1'\nsale_id: 2967\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1408\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.65E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1408 189.186.40.40 8e53e662-c66f-49f1-a3ee-ff6ce1b01f36 2020-09-18 22:45:29.955201 40394 3966 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1068\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.449E3\nmove_type: '1'\nsale_id: 2743\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-506 189.186.86.233 614f538b-dd91-4f14-b2e0-04c37b6c353f 2020-09-18 23:03:12.756926 40395 2743 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.86.233 25b566dd-0cc9-42ba-908f-dcae78260565 2020-09-18 23:03:16.951304 40396 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-18 16:23:35.665275000 Z\n- &1 2020-09-18 19:02:57.233790000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-18 23:07:00.127413199 Z\nsign_in_count:\n- 1856\n- 1857\n 3714 \N 189.186.40.40 86b974e1-f48b-47b0-9e74-dee3bbc615bb 2020-09-18 23:07:00.135246 40397 4 User \N \N 4 User \N update ---\nunique_session_id:\n- z54vPbsa88jzCmcMhDrv\n- nMCzuQUee8wtEbMvySCw\n 3715 \N 189.186.40.40 86b974e1-f48b-47b0-9e74-dee3bbc615bb 2020-09-18 23:07:00.158015 40398 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-18 19:02:57.233790000 Z\n- &1 2020-09-18 23:07:00.127413000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 00:13:08.129173806 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 1857\n- 1858\n 3716 \N 189.186.86.233 1ebf92d1-cbed-496c-b73d-746767e7ce23 2020-09-19 00:13:08.136939 40399 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nMCzuQUee8wtEbMvySCw\n- kuLa8E7jfzNxzLgdn_NX\n 3717 \N 189.186.86.233 1ebf92d1-cbed-496c-b73d-746767e7ce23 2020-09-19 00:13:08.154731 40400 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-18 23:07:00.127413000 Z\n- &1 2020-09-19 00:13:08.129173000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 00:13:40.183688556 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\nsign_in_count:\n- 1858\n- 1859\n 3718 \N 189.186.40.40 71059a0d-fc92-4005-ac62-dc9b21ae6d5c 2020-09-19 00:13:40.191673 40401 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kuLa8E7jfzNxzLgdn_NX\n- vkQoFU1X1P5Zca-QsZ7A\n 3719 \N 189.186.40.40 71059a0d-fc92-4005-ac62-dc9b21ae6d5c 2020-09-19 00:13:40.209433 40402 5 Contact \N \N 4 User \N create ---\nname: SAMANTHA\nlast_name: OSUNA\nphone: ''\nemail: ''\nnotes: ''\nstatus: 1\n 1 \N 189.186.40.40 fe0551fb-256a-4417-9aa9-874afe0aac43 2020-09-19 00:14:52.644165 40403 4 Supplier \N \N 4 User \N create ---\nnick_name: RAPUNZEL\nphone: "(332) 531-8213"\nemail: SAMANTHA_URCISICHI@HOTMAIL.COM\nnotes: ''\ncontact_id: 5\nstatus: 1\n 1 El proveedor RAPUNZEL fue registrado. 189.186.40.40 fe0551fb-256a-4417-9aa9-874afe0aac43 2020-09-19 00:14:52.665181 40404 5 Supplier \N \N 21 User \N create ---\nnick_name: RAPUNZEL\nphone: "(333) 333-3333"\nemail: RAPUNZEL@GMAIL.COM\nnotes: ''\ncontact_id: \nstatus: 1\n 1 El proveedor RAPUNZEL fue registrado. 189.186.86.233 558f66cd-620c-4efd-bdf7-95505b1bbecb 2020-09-19 00:15:45.2607 40405 5 Supplier \N \N 21 User \N update ---\nstatus:\n- active\n- 0\n 2 \N 189.186.86.233 1e10b2f4-5d10-41e4-9733-27f06ee3ef83 2020-09-19 00:15:53.682082 40406 25 Category \N \N 4 User \N create ---\ncategory: RAPUNZEL\ndescription: ''\nstatus: 1\nparent_id: 17\n 1 La línea de producto RAPUNZEL fue creada. 189.186.40.40 bb859410-0e50-46cb-b04e-d674506f1367 2020-09-19 00:17:32.400549 40407 25 Category \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 2 La línea de producto RAPUNZEL fue eliminada. 189.186.40.40 0edd9dcf-d292-4168-8539-37a8502cbca4 2020-09-19 00:17:41.522497 40408 1344 Product \N \N 4 User \N create ---\nsku: ACC-1344\nname: RAP-001\ndescription: KIT SHAMPOO Y ACONDICIONADOR\nprice_base: !ruby/object:BigDecimal 18:0.3605E3\nprice_sale: !ruby/object:BigDecimal 18:0.549E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1344 fue creado. 189.186.40.40 4e0687d6-07f5-4be1-89a7-783168dd03c7 2020-09-19 00:19:40.600431 40409 1344 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001344'\n 2 \N 189.186.40.40 4e0687d6-07f5-4be1-89a7-783168dd03c7 2020-09-19 00:19:40.63841 40410 2293 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1344\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 4e0687d6-07f5-4be1-89a7-783168dd03c7 2020-09-19 00:19:40.67197 40411 1345 Product \N \N 4 User \N create ---\nsku: ACC-1345\nname: RAP-002\ndescription: MASCARILLA DE CRECMIENTO\nprice_base: !ruby/object:BigDecimal 18:0.296E3\nprice_sale: !ruby/object:BigDecimal 18:0.399E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1345 fue creado. 189.186.40.40 0c71ca78-c272-41c1-888b-969af3682ec2 2020-09-19 00:20:58.884512 40412 1345 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001345'\n 2 \N 189.186.40.40 0c71ca78-c272-41c1-888b-969af3682ec2 2020-09-19 00:20:58.914062 40413 2294 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1345\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 0c71ca78-c272-41c1-888b-969af3682ec2 2020-09-19 00:20:58.942115 40414 1346 Product \N \N 4 User \N create ---\nsku: ACC-1346\nname: RAP-003\ndescription: DESENREDANTE KIDS\nprice_base: !ruby/object:BigDecimal 18:0.137E3\nprice_sale: !ruby/object:BigDecimal 18:0.259E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1346 fue creado. 189.186.40.40 06cee12c-afdc-4308-bf3e-2e5f4d1b21a8 2020-09-19 00:22:45.03908 40417 1347 Product \N \N 4 User \N create ---\nsku: ACC-1347\nname: RAP-004\ndescription: RIZOS KIDS\nprice_base: !ruby/object:BigDecimal 18:0.215E3\nprice_sale: !ruby/object:BigDecimal 18:0.371E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1347 fue creado. 189.186.40.40 8b072e07-d5e9-4b19-b57b-0137623c44c9 2020-09-19 00:23:31.210467 40418 1347 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001347'\n 2 \N 189.186.40.40 8b072e07-d5e9-4b19-b57b-0137623c44c9 2020-09-19 00:23:31.241824 40419 2296 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1347\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 8b072e07-d5e9-4b19-b57b-0137623c44c9 2020-09-19 00:23:31.271048 40420 390 Purchase \N \N 4 User \N create ---\nsupplier_id: 4\npointsale_id: 3\npurchase_code: PV3-C-95\namount: !ruby/object:BigDecimal 18:0.20255E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.20255E4\nobservations: ''\npurchase_date: 2020-09-18\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-95 por $ 2025.5 MXN creada. 189.186.40.40 608fd9a7-0100-4ed2-9841-7e8b08585741 2020-09-19 00:23:35.702135 40421 2293 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.40.40 608fd9a7-0100-4ed2-9841-7e8b08585741 2020-09-19 00:23:35.734368 40422 2294 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.40.40 608fd9a7-0100-4ed2-9841-7e8b08585741 2020-09-19 00:23:35.763526 40423 2295 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.40.40 608fd9a7-0100-4ed2-9841-7e8b08585741 2020-09-19 00:23:35.786639 40424 2296 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.40.40 608fd9a7-0100-4ed2-9841-7e8b08585741 2020-09-19 00:23:35.810246 40425 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-16 00:28:55.951454000 Z\n- &1 2020-09-16 00:59:25.554788000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 00:23:54.582022807 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\nsign_in_count:\n- 223\n- 224\n 449 \N 189.186.40.40 aca67737-a046-415b-af7e-af2d1eca6b58 2020-09-19 00:23:54.590022 40426 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 3U8z5YoXzKRk_q7hz_1p\n- 33tVdERXy3tTrDaaK_7z\n 450 \N 189.186.40.40 aca67737-a046-415b-af7e-af2d1eca6b58 2020-09-19 00:23:54.609949 40427 2294 AvailableProduct \N \N 18 User \N update ---\nprice_sale:\n- \n- !ruby/object:BigDecimal 18:0.499E3\n 3 \N 189.186.40.40 192f4f8f-b7ec-49eb-8c30-3dd96e831744 2020-09-19 00:28:21.480509 40428 2968 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1068\namount: !ruby/object:BigDecimal 18:0.1678E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.62E2\ntotal: !ruby/object:BigDecimal 18:0.1616E4\nstatus: 0\ndate_sale: 2020-09-18\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-640\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 4735a1ba-28a7-44cf-a05d-e7ad26b6800e 2020-09-19 00:29:27.770971 40429 2295 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.40.40 4735a1ba-28a7-44cf-a05d-e7ad26b6800e 2020-09-19 00:29:27.79916 40430 2296 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.40.40 4735a1ba-28a7-44cf-a05d-e7ad26b6800e 2020-09-19 00:29:27.824311 40431 2294 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.40.40 4735a1ba-28a7-44cf-a05d-e7ad26b6800e 2020-09-19 00:29:27.849166 40432 2293 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.40.40 4735a1ba-28a7-44cf-a05d-e7ad26b6800e 2020-09-19 00:29:27.873008 40433 2968 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 1e511c2a-e0ef-49ef-8a9a-c32b97d3487a 2020-09-19 00:29:37.218008 40434 3967 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1068\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1616E4\nmove_type: '1'\nsale_id: 2968\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-640\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '15556'\n 1 movimiento de efectivo por venta con folio PV3-V-640 189.186.40.40 1e511c2a-e0ef-49ef-8a9a-c32b97d3487a 2020-09-19 00:29:37.25409 40435 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-17 18:47:26.726449000 Z\n- &1 2020-09-18 18:41:18.019501000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 00:30:06.933325611 Z\nsign_in_count:\n- 294\n- 295\n 591 \N 189.186.86.233 07403ab6-7abf-403e-9f52-190715018b20 2020-09-19 00:30:06.940129 40436 21 User \N \N 21 User \N update ---\nunique_session_id:\n- v9Kh7Df3_jdRcS5Jvq-e\n- WzbfuN3_jQRh88Qa4mXJ\n 592 \N 189.186.86.233 07403ab6-7abf-403e-9f52-190715018b20 2020-09-19 00:30:06.957829 40437 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-18 16:35:42.780807000 Z\n- &1 2020-09-18 21:41:34.959571000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 00:30:29.640478560 Z\nsign_in_count:\n- 163\n- 164\n 328 \N 189.186.40.40 2244cd4c-a826-4f49-9fe8-7c42b2634647 2020-09-19 00:30:29.64782 40438 9 User \N \N 9 User \N update ---\nunique_session_id:\n- XBqztdQrXUKP1cPeP5tH\n- owvxYyKyya8eoBup-oLi\n 329 \N 189.186.40.40 2244cd4c-a826-4f49-9fe8-7c42b2634647 2020-09-19 00:30:29.663563 40439 1092 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 1067\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.3825E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.34E4\ncash_fund: !ruby/object:BigDecimal 18:0.605E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4005E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.40.40 26630303-aece-461c-8a55-ccd43bbd0774 2020-09-19 00:32:06.992681 40440 1067 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.40 26630303-aece-461c-8a55-ccd43bbd0774 2020-09-19 00:32:07.008319 40441 2969 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1068\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2020-09-18\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-641\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 202ec3a6-e7ac-4293-b669-f9732060a9b4 2020-09-19 00:48:53.500047 40442 2293 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.86.233 202ec3a6-e7ac-4293-b669-f9732060a9b4 2020-09-19 00:48:53.531045 40444 3968 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1068\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.549E3\nmove_type: '1'\nsale_id: 2969\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-641\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-641 189.186.86.233 270c578d-4bf4-44b5-a260-ddafc0cd87f7 2020-09-19 00:49:02.803704 40445 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 00:13:08.129173000 Z\n- &1 2020-09-19 00:13:40.183688000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 01:00:54.691635275 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 1859\n- 1860\n 3720 \N 189.186.86.233 20a9c54c-f32d-4796-a356-a0eb7aa2a571 2020-09-19 01:00:54.71682 40446 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vkQoFU1X1P5Zca-QsZ7A\n- mfrYP35vVTVgvCZHKknX\n 3721 \N 189.186.86.233 20a9c54c-f32d-4796-a356-a0eb7aa2a571 2020-09-19 01:00:54.747409 40447 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-18 18:41:18.019501000 Z\n- &1 2020-09-19 00:30:06.933325000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 01:02:16.757250600 Z\nsign_in_count:\n- 295\n- 296\n 593 \N 189.186.86.233 80418722-86b6-4a00-95c3-4f754c1e4910 2020-09-19 01:02:16.762908 40448 21 User \N \N 21 User \N update ---\nunique_session_id:\n- WzbfuN3_jQRh88Qa4mXJ\n- sZj3sGsRQLjijMEtq29K\n 594 \N 189.186.86.233 80418722-86b6-4a00-95c3-4f754c1e4910 2020-09-19 01:02:16.776473 40449 1093 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1068\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.3103E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1058E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2058E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.86.233 4cbe2e15-f44e-4d7c-baaa-79d4640d058b 2020-09-19 01:08:43.150911 40450 1068 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.86.233 4cbe2e15-f44e-4d7c-baaa-79d4640d058b 2020-09-19 01:08:43.16782 40451 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 00:13:40.183688000 Z\n- &1 2020-09-19 01:00:54.691635000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 01:47:19.641210965 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938558\n mask_addr: 4294967295\nsign_in_count:\n- 1860\n- 1861\n 3722 \N 200.68.151.254 869e5fc2-03c2-45aa-b5f1-3a7aa4de553e 2020-09-19 01:47:19.648617 40452 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mfrYP35vVTVgvCZHKknX\n- XihhNs7UNyQBzaZT4CBH\n 3723 \N 200.68.151.254 869e5fc2-03c2-45aa-b5f1-3a7aa4de553e 2020-09-19 01:47:19.667526 40453 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-18 21:41:34.959571000 Z\n- &1 2020-09-19 00:30:29.640478000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 16:48:18.251482455 Z\nsign_in_count:\n- 164\n- 165\n 330 \N 189.186.40.40 f796cf91-cdcc-4969-8e83-fa1e0c9ba01b 2020-09-19 16:48:18.269974 40454 9 User \N \N 9 User \N update ---\nunique_session_id:\n- owvxYyKyya8eoBup-oLi\n- 8VtgoZ7Ku_Dqczkg5axQ\n 331 \N 189.186.40.40 f796cf91-cdcc-4969-8e83-fa1e0c9ba01b 2020-09-19 16:48:18.290868 40455 1069 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.605E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 605.0 189.186.40.40 c65c9e5d-2916-4457-b8fc-bccb02950b6e 2020-09-19 16:48:23.458936 40456 2970 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1069\namount: !ruby/object:BigDecimal 18:0.1097E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1097E4\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1409\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 eadd1985-f700-4a0e-844c-ba20f07de5d5 2020-09-19 17:17:56.184976 40457 2258 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.40.40 eadd1985-f700-4a0e-844c-ba20f07de5d5 2020-09-19 17:17:56.219492 40458 2251 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 4 \N 189.186.40.40 eadd1985-f700-4a0e-844c-ba20f07de5d5 2020-09-19 17:17:56.258763 40459 2077 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.40.40 eadd1985-f700-4a0e-844c-ba20f07de5d5 2020-09-19 17:17:56.285263 40460 2970 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 117fa0fa-2db3-4f53-a248-d75aa16ae78e 2020-09-19 17:18:05.911155 40461 3969 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1069\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1097E4\nmove_type: '1'\nsale_id: 2970\ncardnumber: 1256\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1409\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1409 189.186.40.40 117fa0fa-2db3-4f53-a248-d75aa16ae78e 2020-09-19 17:18:05.935974 40462 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 00:30:06.933325000 Z\n- &1 2020-09-19 01:02:16.757250000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 18:11:56.386187192 Z\nsign_in_count:\n- 296\n- 297\n 595 \N 189.186.86.233 7fa14e1c-5f95-44ec-9dea-f299652d1d45 2020-09-19 18:11:56.393494 40463 21 User \N \N 21 User \N update ---\nunique_session_id:\n- sZj3sGsRQLjijMEtq29K\n- rGiX8QKrnrVWKdTF_U4_\n 596 \N 189.186.86.233 7fa14e1c-5f95-44ec-9dea-f299652d1d45 2020-09-19 18:11:56.409597 40464 1070 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1058E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1058.0 189.186.86.233 ebdcb93c-e671-486b-b593-f803794a6d60 2020-09-19 18:24:47.799868 40465 2971 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1070\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-642\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 150a4c9b-3b2b-4627-a7cc-e09fcd4bb4cc 2020-09-19 18:25:14.457564 40466 1822 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 64 \N 189.186.86.233 150a4c9b-3b2b-4627-a7cc-e09fcd4bb4cc 2020-09-19 18:25:14.493058 40467 2971 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 a266598c-133e-4c36-bad5-a82133beb568 2020-09-19 18:25:18.150004 40468 3970 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1070\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2971\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-642\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-642 189.186.86.233 a266598c-133e-4c36-bad5-a82133beb568 2020-09-19 18:25:18.171998 40469 2971 Sale \N \N 21 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-642 cancelada. 189.186.86.233 eb1db1ef-7d24-4002-9b77-125c6a154a30 2020-09-19 18:29:58.326351 40470 3970 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1070\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 2971\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-642\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.86.233 eb1db1ef-7d24-4002-9b77-125c6a154a30 2020-09-19 18:29:58.444716 40471 1822 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 65 \N 189.186.86.233 eb1db1ef-7d24-4002-9b77-125c6a154a30 2020-09-19 18:29:58.873596 40472 2972 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1070\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-643\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 d82c9ee4-c029-465e-9792-980789940c38 2020-09-19 18:30:20.624322 40473 1822 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 66 \N 189.186.86.233 d82c9ee4-c029-465e-9792-980789940c38 2020-09-19 18:30:21.30488 40474 2972 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 4bb91bab-d5c3-4320-9404-269c1f5d22d9 2020-09-19 18:30:30.461529 40475 3971 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1070\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2972\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-643\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-643 189.186.86.233 4bb91bab-d5c3-4320-9404-269c1f5d22d9 2020-09-19 18:30:30.48882 40476 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 01:00:54.691635000 Z\n- &1 2020-09-19 01:47:19.641210000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 19:03:11.991670372 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938558\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938558\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\nsign_in_count:\n- 1861\n- 1862\n 3724 \N 189.186.40.40 f157289f-9df2-4ebd-a4b2-6069c9560b0f 2020-09-19 19:03:11.999002 40477 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XihhNs7UNyQBzaZT4CBH\n- 4vgDy4H_nirYevxdrGBJ\n 3725 \N 189.186.40.40 f157289f-9df2-4ebd-a4b2-6069c9560b0f 2020-09-19 19:03:12.017529 40478 363 Customer \N \N 21 User \N update ---\nphone:\n- "(667) 231-1451"\n- "(667) 231-1441"\n 2 El cliente LAURA SICAIROS fue registrado. 189.186.86.233 a4b16e23-f44a-4308-a17c-1e25d109e41a 2020-09-19 19:37:28.388884 40479 3972 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1070\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 2836\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-566 189.186.86.233 9ce146e3-cd4d-4110-8e28-d4cf98601f29 2020-09-19 19:38:08.732962 40480 2836 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.86.233 c897f71f-f63e-4ff7-8178-efde220fdf78 2020-09-19 19:38:12.678908 40481 3973 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1070\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 2756\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-514 189.186.86.233 4027216d-fb79-4e7f-8386-2da7d2d1da69 2020-09-19 19:41:29.515177 40482 2756 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.86.233 a67cae02-27d7-43f8-85f0-6c586865edd4 2020-09-19 19:41:30.685144 40483 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 00:30:29.640478000 Z\n- &1 2020-09-19 16:48:18.251482000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 20:13:27.426239870 Z\nsign_in_count:\n- 165\n- 166\n 332 \N 189.186.40.40 7cfe53cc-3909-46be-92ec-e204096208ca 2020-09-19 20:13:27.432162 40484 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 8VtgoZ7Ku_Dqczkg5axQ\n- y229iiwp_WjveCAmrskC\n 333 \N 189.186.40.40 7cfe53cc-3909-46be-92ec-e204096208ca 2020-09-19 20:13:27.446908 40485 2973 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1069\namount: !ruby/object:BigDecimal 18:0.120934E4\ntax: !ruby/object:BigDecimal 18:0.8965E2\ndiscount: !ruby/object:BigDecimal 18:0.649E3\ntotal: !ruby/object:BigDecimal 18:0.64999E3\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1410\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 8c9de900-58b7-4c1c-b1af-acb883e5f3f3 2020-09-19 20:14:25.268815 40486 218 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.40.40 8c9de900-58b7-4c1c-b1af-acb883e5f3f3 2020-09-19 20:14:25.308412 40487 2973 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 15686af1-042d-4392-9c54-a31f1788302b 2020-09-19 20:14:31.141094 40488 3974 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1069\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.64999E3\nmove_type: '1'\nsale_id: 2973\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1410\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.5001E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1410 189.186.40.40 15686af1-042d-4392-9c54-a31f1788302b 2020-09-19 20:14:31.166358 40549 4 User \N \N 4 User \N update ---\nunique_session_id:\n- EGuy1yDRxdt-HjsCAQtc\n- L3KL4WYu-APkdWvbrbgN\n 3733 \N 189.186.86.233 2a6bec26-b017-4e06-aa83-f55d6705b7df 2020-09-19 21:59:05.426277 40550 2974 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 67e04158-1276-4bb1-89b3-3563ff24c99c 2020-09-19 21:59:05.614886 40489 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 01:47:19.641210000 Z\n- &1 2020-09-19 19:03:11.991670000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 20:46:26.408489558 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938558\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\nsign_in_count:\n- 1862\n- 1863\n 3726 \N 189.186.40.40 c0008773-989e-4c9d-9b27-812b0acc3b14 2020-09-19 20:46:26.428091 40490 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4vgDy4H_nirYevxdrGBJ\n- nVgf4Wj4PGKUHw-GmMhE\n 3727 \N 189.186.40.40 c0008773-989e-4c9d-9b27-812b0acc3b14 2020-09-19 20:46:26.453795 40491 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 19:03:11.991670000 Z\n- &1 2020-09-19 20:46:26.408489000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 21:42:55.700939742 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 1863\n- 1864\n 3728 \N 189.186.86.233 e90697c8-1db1-4ad3-a1f9-965ca548ae86 2020-09-19 21:42:55.708086 40492 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nVgf4Wj4PGKUHw-GmMhE\n- 2FWik7Y8zBFd3hjsNDrh\n 3729 \N 189.186.86.233 e90697c8-1db1-4ad3-a1f9-965ca548ae86 2020-09-19 21:42:55.728583 40493 674 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-19\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.86.233 204ca8cf-dc01-47cd-bad2-3094039e98fa 2020-09-19 21:44:58.03675 40494 816 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.86.233 204ca8cf-dc01-47cd-bad2-3094039e98fa 2020-09-19 21:44:58.065234 40495 1984 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 189.186.86.233 204ca8cf-dc01-47cd-bad2-3094039e98fa 2020-09-19 21:44:58.092166 40496 2227 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.86.233 204ca8cf-dc01-47cd-bad2-3094039e98fa 2020-09-19 21:44:58.108806 40497 2297 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1191\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.86.233 204ca8cf-dc01-47cd-bad2-3094039e98fa 2020-09-19 21:44:58.130041 40498 2047 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.86.233 204ca8cf-dc01-47cd-bad2-3094039e98fa 2020-09-19 21:44:58.147294 40499 1020 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.86.233 a0eb9456-8786-4f35-8f9c-02dab99f8a4c 2020-09-19 21:46:00.08868 40500 1020 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.86.233 0cb1078e-873b-4444-a999-e4ef90394f77 2020-09-19 21:46:03.121484 40501 824 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.86.233 2df0682b-07a9-4e57-a4b9-46b21cb19b90 2020-09-19 21:46:36.19411 40502 824 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.86.233 92fa6b2a-68f5-41da-a1c2-e58cf686ba05 2020-09-19 21:46:39.224129 40503 1019 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.86.233 4cd3fe2e-5a91-4f87-92fa-68c887901977 2020-09-19 21:47:01.774065 40504 1019 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 48b8c4a8-fae7-41f1-b2ae-eee44d571946 2020-09-19 21:47:06.544929 40505 1018 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.86.233 3320f383-ff3d-4341-9a2f-cab21a7aa55a 2020-09-19 21:47:32.721597 40506 1018 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.86.233 54ea6443-e382-404c-9322-b3d6735bdb12 2020-09-19 21:47:35.662441 40507 1540 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.86.233 e105acfa-e9e6-4269-b382-69dafcb60e7f 2020-09-19 21:49:22.539826 40508 1540 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 c7e3d4df-12c8-43d3-ba1c-45bd28599c1d 2020-09-19 21:49:25.076382 40509 1663 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.86.233 6bc1061d-aca0-43f7-adcd-ad939dc2ce57 2020-09-19 21:50:02.601817 40510 1663 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 c83ab4ea-0be4-4cab-9bd5-75d0ede0d187 2020-09-19 21:50:06.405971 40511 1664 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.86.233 cb7642be-479b-4673-9046-bf59db1b9578 2020-09-19 21:51:11.002856 40512 1664 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.86.233 a7b79147-bea8-4b3e-97e7-6cf06a7cb558 2020-09-19 21:51:15.450664 40513 1544 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.86.233 c97acbdb-e28c-4d26-8017-942e85dcb154 2020-09-19 21:51:41.757572 40514 1544 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.86.233 3acee4a3-ab08-4526-a068-5e4e6ce3528c 2020-09-19 21:51:45.500942 40515 1503 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 692573a9-6a78-4279-84cb-3c56aeb4fc71 2020-09-19 21:52:15.45264 40516 1614 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.86.233 0c2f3747-2e8a-49ec-af56-d99e5709259c 2020-09-19 21:52:45.519698 40517 1509 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.86.233 d1d52794-8178-4cae-8993-bdb61244da34 2020-09-19 21:53:14.135256 40518 1509 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 11bc0458-1821-467c-afd5-545d0cd64acf 2020-09-19 21:53:18.419746 40519 2011 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.86.233 d549276c-ba5f-4f20-92cd-a39e219dc453 2020-09-19 21:53:55.633725 40520 2011 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 4000ccf3-506b-45ae-8634-952b62a5dec8 2020-09-19 21:54:00.082068 40523 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 20:46:26.408489000 Z\n- &1 2020-09-19 21:42:55.700939000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 21:55:36.305184574 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\nsign_in_count:\n- 1864\n- 1865\n 3730 \N 189.186.40.40 e70a4faf-3804-4d7d-b9e3-f31f5322a189 2020-09-19 21:55:36.312417 40524 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2FWik7Y8zBFd3hjsNDrh\n- EGuy1yDRxdt-HjsCAQtc\n 3731 \N 189.186.40.40 e70a4faf-3804-4d7d-b9e3-f31f5322a189 2020-09-19 21:55:36.32916 40525 1524 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.86.233 a3171689-ba5b-40f1-8f9a-58c2e347c935 2020-09-19 21:55:40.325721 40526 1521 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.86.233 85838e49-b54a-4893-ab6e-f9444931de80 2020-09-19 21:56:03.608843 40527 1521 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 8ae61d0f-c9bd-49df-805b-07347d9a8ba2 2020-09-19 21:56:07.733658 40528 1523 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.86.233 c4073581-d30a-417a-b909-14e7f23d137a 2020-09-19 21:56:28.248068 40529 1523 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 38813c13-0c63-4cd7-97db-c35cffcc330e 2020-09-19 21:56:32.953144 40530 1523 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.86.233 683d327e-fd82-41f8-8406-e14a92cc9ee1 2020-09-19 21:56:49.84951 40531 1523 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.86.233 af6b64cd-0c2e-4ea9-9bea-360037b22247 2020-09-19 21:56:53.081118 40532 1522 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.86.233 2cbf0825-9dc7-4c33-a223-38e98bdedaf5 2020-09-19 21:57:40.231941 40533 1348 Product \N \N 4 User \N create ---\nsku: BOL-1348\nname: 1BLCV20797\ndescription: CROSSBODY CLOE LETRAS\nprice_base: !ruby/object:BigDecimal 18:0.5495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1348 fue creado. 189.186.40.40 b801bc50-0eb9-4370-ba51-651eb0a3922c 2020-09-19 21:57:55.133322 40534 1348 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001348'\n 2 \N 189.186.40.40 b801bc50-0eb9-4370-ba51-651eb0a3922c 2020-09-19 21:57:55.169542 40535 2298 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1348\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 b801bc50-0eb9-4370-ba51-651eb0a3922c 2020-09-19 21:57:55.203366 40536 391 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-157\namount: !ruby/object:BigDecimal 18:0.68935E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.68935E4\nobservations: ''\npurchase_date: 2020-09-19\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-157 por $ 6893.5 MXN creada. 189.186.40.40 69ad9093-6d65-40be-816a-8e98942f97b1 2020-09-19 21:58:06.205654 40537 2299 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1299\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 69ad9093-6d65-40be-816a-8e98942f97b1 2020-09-19 21:58:06.231405 40538 2226 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.16E2\n 8 \N 189.186.40.40 69ad9093-6d65-40be-816a-8e98942f97b1 2020-09-19 21:58:06.258419 40539 2298 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.40.40 69ad9093-6d65-40be-816a-8e98942f97b1 2020-09-19 21:58:06.286042 40540 1542 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.86.233 a11a67f0-eee3-4a54-9e8f-5a0356081ed6 2020-09-19 21:58:07.074961 40541 1542 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.86.233 e57bb540-3e2a-4757-80c7-c3b5c227b1c4 2020-09-19 21:58:11.430324 40542 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 16:48:18.251482000 Z\n- &1 2020-09-19 20:13:27.426239000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 21:58:28.103593725 Z\nsign_in_count:\n- 166\n- 167\n 334 \N 189.186.40.40 2ad9d23b-e9fd-43a0-b576-466b49ec60f2 2020-09-19 21:58:28.109939 40543 9 User \N \N 9 User \N update ---\nunique_session_id:\n- y229iiwp_WjveCAmrskC\n- MbrUxUnyhTVLyRexnY1s\n 335 \N 189.186.40.40 2ad9d23b-e9fd-43a0-b576-466b49ec60f2 2020-09-19 21:58:28.124819 40544 1541 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.86.233 2caddacf-dc2f-4dec-bb60-575ed623f9dc 2020-09-19 21:58:32.537384 40545 1541 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 c1a19825-d600-4fdd-a6f5-da36ae02a513 2020-09-19 21:58:38.203562 40546 2974 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1069\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 1\nseller_id: 27\nsale_code: PV1-V-1411\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 7f59aa8c-b01b-40ea-a030-f0acfb33960f 2020-09-19 21:58:58.202425 40547 2299 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.40.40 7f59aa8c-b01b-40ea-a030-f0acfb33960f 2020-09-19 21:58:58.23031 40548 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 21:42:55.700939000 Z\n- &1 2020-09-19 21:55:36.305184000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 21:59:05.399709805 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 1865\n- 1866\n 3732 \N 189.186.86.233 2a6bec26-b017-4e06-aa83-f55d6705b7df 2020-09-19 21:59:05.407739 40551 3975 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1069\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 2974\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1411\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1411 189.186.40.40 67e04158-1276-4bb1-89b3-3563ff24c99c 2020-09-19 21:59:05.67739 40552 971 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.86.233 dddd1061-4912-447b-b891-a4d2bae19e0e 2020-09-19 21:59:41.866889 40553 971 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.86.233 05300bcb-570f-4200-8865-74325bc26d21 2020-09-19 21:59:45.724529 40554 1662 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.86.233 cb73f08e-a949-4d13-95da-76e20efee06c 2020-09-19 22:00:32.196289 40555 1662 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 f270c3d2-5bdd-4979-91c8-8b3a1d937f11 2020-09-19 22:01:14.455619 40556 2975 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1069\namount: !ruby/object:BigDecimal 18:0.86979E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.181E3\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1412\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 99af476f-ba37-49c9-bcbb-52f01c40a659 2020-09-19 22:01:38.832681 40557 161 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.40.40 99af476f-ba37-49c9-bcbb-52f01c40a659 2020-09-19 22:01:38.869957 40558 1948 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.86.233 b3b4d4d2-e2f8-44e1-82b7-000678c31dac 2020-09-19 22:01:38.999713 40559 2975 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 de8a0dd3-ed0c-40a0-a5ff-df0b9ca23453 2020-09-19 22:02:17.703195 40560 3976 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1069\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 2975\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1412\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1412 189.186.40.40 de8a0dd3-ed0c-40a0-a5ff-df0b9ca23453 2020-09-19 22:02:17.72732 40561 1951 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.86.233 96e3f65e-87d7-4f01-9f75-896f1949f295 2020-09-19 22:03:42.859873 40562 1951 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 d014ab9f-6164-4e2e-9b64-1d66b33b82c3 2020-09-19 22:03:51.735635 40563 1618 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.86.233 364a5782-95e5-4ce8-b59e-2d7165746984 2020-09-19 22:04:39.724179 40564 1618 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 db75cf5d-1796-4468-a9ee-ae3ba4505090 2020-09-19 22:04:46.951608 40565 1952 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.86.233 02c15526-a5eb-4db1-b47c-f3d11316f611 2020-09-19 22:06:19.083315 40566 1952 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 8e14bb84-ddec-4dba-896a-a792cd4fb7d6 2020-09-19 22:06:33.424937 40567 1226 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.86.233 c51c8447-4677-48ff-8b88-b8279677b5de 2020-09-19 22:07:00.055471 40568 1226 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 161e6076-61d4-430a-882f-84294f9663df 2020-09-19 22:07:11.098774 40569 1587 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.86.233 9ee28a63-d200-4502-bf6e-a4c2c1477ea8 2020-09-19 22:07:37.904046 40570 1587 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 0e13d7af-c06b-430c-a0b1-d0bb75cf5a8a 2020-09-19 22:07:48.238917 40571 979 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.86.233 514d6110-5e47-4374-9ef9-3161146c1e33 2020-09-19 22:08:52.707581 40572 979 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 d9532ce3-f64b-412d-b0c9-9afa05b6f8c4 2020-09-19 22:09:00.297175 40573 1485 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.86.233 d66f8341-0b7a-43ba-8130-52f800d8e83d 2020-09-19 22:09:57.884791 40574 1536 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.86.233 019376c3-a03b-4a9f-90fc-a9a25ed46eff 2020-09-19 22:10:29.449045 40575 838 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 11 \N 189.186.86.233 0949ec65-65ed-4871-8217-0ec748a6a722 2020-09-19 22:11:07.473396 40576 838 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 12 \N 189.186.86.233 aa722c33-2bc2-4735-8d28-11c8f2be896e 2020-09-19 22:11:33.928314 40577 1941 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.86.233 4042cb0c-b6bb-4b55-acf4-aba94810477e 2020-09-19 22:12:31.306837 40578 1941 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 3f4ada2c-d130-45e9-baa4-b37809de2ed0 2020-09-19 22:12:37.992039 40579 1619 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.86.233 f61a5e88-f2a3-4b9a-b2af-6b165a8f7a35 2020-09-19 22:13:04.40878 40580 1619 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.86.233 b24ae89d-7fe8-4ee2-851f-643a94bf3c91 2020-09-19 22:13:32.929348 40581 1577 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.86.233 70e51c0e-8c9c-4d76-a733-11a9834ebeb2 2020-09-19 22:14:39.48966 40582 1577 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 9bd7f5e5-3647-46ac-b53e-a59d506f4c5a 2020-09-19 22:15:01.018722 40583 2976 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1069\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1413\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 2bb1a989-d84e-4709-8af8-c769494cf383 2020-09-19 22:15:09.259993 40584 2226 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.15E2\n 9 \N 189.186.40.40 2bb1a989-d84e-4709-8af8-c769494cf383 2020-09-19 22:15:09.292088 40585 1918 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 1fd0f3b5-24d3-46bd-afef-db67b80b2cb9 2020-09-19 22:15:55.054168 40586 2976 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 2767fb7c-f2b0-4a07-98b6-85271cee83f2 2020-09-19 22:16:26.036682 40587 3977 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1069\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2976\ncardnumber: 1236\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1413\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1225'\n 1 movimiento de efectivo por venta con folio PV1-V-1413 189.186.40.40 2767fb7c-f2b0-4a07-98b6-85271cee83f2 2020-09-19 22:16:26.058989 40588 1927 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.86.233 ac3b51a6-42e2-4068-94a1-fc5a3e33101b 2020-09-19 22:16:34.436437 40589 1578 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.86.233 87286504-cbaa-435c-b1e1-a6e9a92881c4 2020-09-19 22:17:21.393006 40590 1578 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.86.233 ab634f36-ebee-4647-bc6a-028a7cd850dd 2020-09-19 22:17:28.354797 40591 950 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 3 \N 189.186.86.233 73cc2559-65fd-4138-85c8-e3a24afaedb5 2020-09-19 22:18:13.464056 40592 950 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.86.233 594b06d5-117b-42de-b287-4d6b88610f7f 2020-09-19 22:18:22.132286 40593 950 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.8E1\n 5 \N 189.186.86.233 c3b44201-e92d-42ac-be88-7c562de8cb5c 2020-09-19 22:18:35.145581 40594 1580 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.86.233 206f666b-1eb8-4660-b019-3d4d9400ef99 2020-09-19 22:19:04.407905 40595 1962 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.86.233 74196393-2ac9-41c8-a8bd-db096093f575 2020-09-19 22:19:39.077474 40596 1580 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 a3575562-865d-4720-a838-dde86a1ef0eb 2020-09-19 22:19:47.876852 40597 1927 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 805ff885-9bf4-4727-bb29-66d9db27fcd1 2020-09-19 22:19:51.148267 40598 1944 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.86.233 f36bc39e-3b92-476c-a0b0-090a4aae3826 2020-09-19 22:20:15.994677 40599 1943 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.86.233 d81a4c80-b33f-4276-b1bd-d9c21db7a06e 2020-09-19 22:21:20.840011 40600 390 Customer \N \N 9 User \N create ---\nnick_name: DIANA SANCHEZ\nphone: "(667) 368-6711"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DIANA SANCHEZ fue registrado. 189.186.40.40 45aeb159-ee99-4634-924d-71691df24507 2020-09-19 22:24:29.259268 40601 1663 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.86.233 73b650f9-71c8-4c6a-b645-bd296d6a5bf6 2020-09-19 22:24:35.485268 40602 2977 Sale \N \N 9 User \N create ---\ncustomer_id: 390\nuser_id: 9\nopen_cash_register_id: 1069\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 2\nseller_id: 3\nsale_code: PV1-V-1414\nexpiration_date: 2020-10-24\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 4000c12a-e299-404d-b69b-3d36d1c87e07 2020-09-19 22:24:47.923261 40603 2298 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.40.40 4000c12a-e299-404d-b69b-3d36d1c87e07 2020-09-19 22:24:47.95296 40604 1909 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.86.233 ce99b682-a680-46e1-946e-baa28f7f5fb0 2020-09-19 22:24:50.421504 40605 3978 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1069\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 2977\ncardnumber: 4525\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1414\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1414 189.186.40.40 4af52e99-7247-4218-8e68-7cb6d875272b 2020-09-19 22:25:20.482756 40606 2977 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.40.40 bf205572-410d-4943-ab8b-a44a10c513e3 2020-09-19 22:25:22.01036 40607 1948 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.86.233 b2d5ddc8-cd31-466a-a0d1-e4ff8614b758 2020-09-19 22:25:31.033232 40608 2978 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1069\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1415\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 ce2176b2-334c-48a5-b2fd-ccb19cd96228 2020-09-19 22:26:34.252041 40609 2226 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 10 \N 189.186.40.40 ce2176b2-334c-48a5-b2fd-ccb19cd96228 2020-09-19 22:26:34.280828 40610 2978 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 8735294e-8fce-4eac-b0c0-61694f78c3ab 2020-09-19 22:26:41.796053 40611 3979 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1069\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2978\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1415\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1415 189.186.40.40 8735294e-8fce-4eac-b0c0-61694f78c3ab 2020-09-19 22:26:41.823454 40612 1619 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.86.233 4e7d41c0-3c2e-42bb-9df1-5c8463396590 2020-09-19 22:28:30.40065 40613 971 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 189.186.86.233 545533f1-1854-48cf-a4c8-b1c4c6601567 2020-09-19 22:30:50.770798 40614 971 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 189.186.86.233 92dddef2-c497-4dc8-8184-8667484baadf 2020-09-19 22:31:15.387165 40615 971 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.86.233 2233ee40-1d74-4aaf-b7a6-42b91c152a01 2020-09-19 22:31:21.422089 40616 1523 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.86.233 2b439256-4fcf-4e6c-829c-ff5c8c90e361 2020-09-19 22:32:47.299509 40617 675 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-09-19\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.86.233 966645ab-a793-42e3-831c-8de314674fcd 2020-09-19 22:33:26.107073 40618 976 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.86.233 1b7b6497-9c41-431b-bb67-9c39b22ea6a9 2020-09-19 22:39:53.076693 40619 976 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.86.233 908a70e7-6b07-4d09-8052-cf7057bd250e 2020-09-19 22:39:56.167812 40620 2979 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1070\namount: !ruby/object:BigDecimal 18:0.369E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.369E3\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-644\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 c29927a9-c438-464b-80c2-fc4bf22e170c 2020-09-19 22:50:33.268061 40621 2267 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.86.233 c29927a9-c438-464b-80c2-fc4bf22e170c 2020-09-19 22:50:33.294876 40622 2979 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 4bd78c04-c331-4763-9863-fc72acb8c63e 2020-09-19 22:51:28.332753 40623 3980 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1070\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.369E3\nmove_type: '1'\nsale_id: 2979\ncardnumber: 9538\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-644\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-644 189.186.86.233 4bd78c04-c331-4763-9863-fc72acb8c63e 2020-09-19 22:51:28.355098 40624 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 21:55:36.305184000 Z\n- &1 2020-09-19 21:59:05.399709000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 23:00:24.856516717 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\nsign_in_count:\n- 1866\n- 1867\n 3734 \N 189.186.40.40 1f6395ed-c981-4dab-9f85-27e5d2b2d75e 2020-09-19 23:00:24.883887 40625 4 User \N \N 4 User \N update ---\nunique_session_id:\n- L3KL4WYu-APkdWvbrbgN\n- X5wBsJR18ZWRRrqRy6mz\n 3735 \N 189.186.40.40 1f6395ed-c981-4dab-9f85-27e5d2b2d75e 2020-09-19 23:00:24.909093 40626 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 20:13:27.426239000 Z\n- &1 2020-09-19 21:58:28.103593000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 23:01:27.550932440 Z\nsign_in_count:\n- 167\n- 168\n 336 \N 189.186.40.40 0be3e224-0be1-463d-9f8d-7ed6f1cf7f52 2020-09-19 23:01:27.561643 40627 9 User \N \N 9 User \N update ---\nunique_session_id:\n- MbrUxUnyhTVLyRexnY1s\n- jyQyNQ3vERG5yuNahrz3\n 337 \N 189.186.40.40 0be3e224-0be1-463d-9f8d-7ed6f1cf7f52 2020-09-19 23:01:27.582912 40628 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 21:59:05.399709000 Z\n- &1 2020-09-19 23:00:24.856516000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 23:09:53.554318321 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 1867\n- 1868\n 3736 \N 189.186.86.233 55cae912-7d6f-4d24-a38c-a3e1d4948501 2020-09-19 23:09:53.566137 40629 4 User \N \N 4 User \N update ---\nunique_session_id:\n- X5wBsJR18ZWRRrqRy6mz\n- wwyfuNMbZcWr8_-x83iy\n 3737 \N 189.186.86.233 55cae912-7d6f-4d24-a38c-a3e1d4948501 2020-09-19 23:09:53.595607 40630 30 User \N \N 4 User \N create ---\nuserid: DANIADMON\nfirst_name: DANIELA\nlast_name: URCISICHI OSUNA\nusertype: A\nemail: daniurci7@gmail.com\nencrypted_password: "$2a$10$uIvL3WVmebF/cLPNuuGzhea/786btvaQjSpCvfWjpmMvk2exDjhoG"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: \nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.186.86.233 187a832c-b1a0-41c1-8394-9ec5d98282ee 2020-09-19 23:11:41.02208 40631 30 User \N \N 30 User \N update ---\nlast_sign_in_at:\n- \n- &1 2020-09-19 23:12:02.027807350 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 189.186.86.233 46f074ed-1241-471a-90ec-c07bda6cc313 2020-09-19 23:12:02.04782 40632 30 User \N \N 30 User \N update ---\nunique_session_id:\n- \n- knLyxVsz9PkyjnPY2nPs\n 3 \N 189.186.86.233 46f074ed-1241-471a-90ec-c07bda6cc313 2020-09-19 23:12:02.063673 40659 3982 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1069\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2982\ncardnumber: 5551\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1418\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1418 189.186.40.40 89d42302-6199-4169-9f34-4977385c7ac3 2020-09-19 23:45:12.003807 40633 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 23:00:24.856516000 Z\n- &1 2020-09-19 23:09:53.554318000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 23:13:46.902486890 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\nsign_in_count:\n- 1868\n- 1869\n 3738 \N 189.186.40.40 04147738-1984-4790-b235-a5b474eb3288 2020-09-19 23:13:46.909514 40634 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wwyfuNMbZcWr8_-x83iy\n- 9URb-XGa8KhKmAwDt8Ms\n 3739 \N 189.186.40.40 04147738-1984-4790-b235-a5b474eb3288 2020-09-19 23:13:46.926449 40635 1663 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.86.233 3151bcb1-c92e-4cef-8242-98e1d8a07e60 2020-09-19 23:15:03.601869 40636 1663 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.86.233 02e269d3-88f6-4303-b012-4e9b6f9ce33a 2020-09-19 23:15:07.048407 40637 1909 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.86.233 8398c10e-4c44-4b72-87bc-c59c4d3417b2 2020-09-19 23:16:17.944781 40638 1909 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.86.233 65e5e6a9-8574-4ccb-8fa1-6bba22586eb4 2020-09-19 23:16:21.345293 40639 1505 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.86.233 af0341b5-8146-44ff-8840-5540c7a4ccb5 2020-09-19 23:17:55.182192 40640 1505 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.86.233 5539b724-f037-458e-8ea0-5c3d2a881167 2020-09-19 23:17:58.450148 40641 676 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-09-19\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.86.233 254039ef-b0d2-446d-9074-76b0b1e0bdc1 2020-09-19 23:24:25.694872 40642 1490 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.86.233 99f30a4b-d6ac-4fae-99d6-3d535b475e12 2020-09-19 23:26:40.977682 40643 1619 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.86.233 9691d8de-358a-43eb-b0f5-8711fba5c6f5 2020-09-19 23:27:57.653232 40644 1619 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.86.233 7a460862-5639-4c2e-9cb9-347b0c3af7a8 2020-09-19 23:28:00.938807 40645 677 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-09-19\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.86.233 4f21b9cd-3b16-468e-8ba2-80c3248b823f 2020-09-19 23:28:14.011325 40646 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 21:58:28.103593000 Z\n- &1 2020-09-19 23:01:27.550932000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-19 23:41:50.966341421 Z\nsign_in_count:\n- 168\n- 169\n 338 \N 189.186.40.40 e895aa98-d31e-494c-bda4-a0e7beb75c3f 2020-09-19 23:41:50.973323 40647 9 User \N \N 9 User \N update ---\nunique_session_id:\n- jyQyNQ3vERG5yuNahrz3\n- j1KCEzatJYU5hGDw6T6C\n 339 \N 189.186.40.40 e895aa98-d31e-494c-bda4-a0e7beb75c3f 2020-09-19 23:41:50.988135 40648 2980 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1069\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1416\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 89c1885e-1a4e-4e59-80c5-62b9b0cbaa8c 2020-09-19 23:42:07.449884 40649 1856 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 2 \N 189.186.40.40 89c1885e-1a4e-4e59-80c5-62b9b0cbaa8c 2020-09-19 23:42:07.483467 40650 2980 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1416 cancelada. 189.186.40.40 54232a64-8fc3-42df-88fd-5a22a351667b 2020-09-19 23:42:10.89214 40651 1856 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.8E1\n 3 \N 189.186.40.40 54232a64-8fc3-42df-88fd-5a22a351667b 2020-09-19 23:42:10.915554 40652 2981 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1069\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.219E3\ntotal: !ruby/object:BigDecimal 18:0.33E3\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1417\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 c6a1902c-dfcd-472f-9b11-30fd592042c8 2020-09-19 23:42:41.940665 40653 1856 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 4 \N 189.186.40.40 c6a1902c-dfcd-472f-9b11-30fd592042c8 2020-09-19 23:42:41.975478 40654 2981 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 c052476a-d2f0-46dd-97f0-33b53e00f4ac 2020-09-19 23:42:45.78688 40655 3981 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1069\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.33E3\nmove_type: '1'\nsale_id: 2981\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1417\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.33E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1417 189.186.40.40 c052476a-d2f0-46dd-97f0-33b53e00f4ac 2020-09-19 23:42:45.81168 40656 2982 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1069\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1418\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 22fcfa79-ebb3-49b8-ba34-4e7021c12550 2020-09-19 23:45:02.97005 40657 2226 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 11 \N 189.186.40.40 22fcfa79-ebb3-49b8-ba34-4e7021c12550 2020-09-19 23:45:02.998106 40658 2982 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 89d42302-6199-4169-9f34-4977385c7ac3 2020-09-19 23:45:11.980791 40682 147 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.40.40 6d61e3a3-f09c-4b44-af0e-48d431838688 2020-09-20 00:48:37.582231 40683 2987 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 799619e2-c565-4e9d-be30-dde316e731fe 2020-09-20 00:48:44.269911 40660 2983 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1069\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1419\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 02bc39ae-8cc7-4b6b-af6f-175519498c37 2020-09-20 00:05:39.922597 40661 2226 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 12 \N 189.186.40.40 02bc39ae-8cc7-4b6b-af6f-175519498c37 2020-09-20 00:05:39.953728 40662 2983 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 70419a3f-b4ed-4d14-9cc4-e79c911196be 2020-09-20 00:05:51.359011 40663 3983 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1069\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2983\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1419\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1419 189.186.40.40 70419a3f-b4ed-4d14-9cc4-e79c911196be 2020-09-20 00:05:51.392103 40664 2984 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1069\namount: !ruby/object:BigDecimal 18:0.92352E3\ntax: !ruby/object:BigDecimal 18:0.3448E2\ndiscount: !ruby/object:BigDecimal 18:0.219E3\ntotal: !ruby/object:BigDecimal 18:0.739E3\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1420\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 1cd2d49d-bd93-47bb-8256-d75a131df158 2020-09-20 00:26:18.143038 40665 2258 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.40.40 1cd2d49d-bd93-47bb-8256-d75a131df158 2020-09-20 00:26:18.173247 40666 1875 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.40.40 1cd2d49d-bd93-47bb-8256-d75a131df158 2020-09-20 00:26:18.20511 40667 2984 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 c51a84c9-2c5a-47bb-8c92-7251978c5e00 2020-09-20 00:26:55.257012 40668 3984 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1069\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.739E3\nmove_type: '1'\nsale_id: 2984\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1420\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.739E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1420 189.186.40.40 c51a84c9-2c5a-47bb-8c92-7251978c5e00 2020-09-20 00:26:55.281165 40669 334 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 1070\nquantity: !ruby/object:BigDecimal 18:0.1E3\nstatus: 1\nobservations: COMIDA\nexpense_date: 2020-09-19\nexpense_code: PV3-E-41\n 1 Egreso por 100.0 registrado 189.186.86.233 8930320e-e4f0-4b3a-b01d-37dac316a2ba 2020-09-20 00:30:16.945496 40670 3985 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1070\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 334\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.86.233 8930320e-e4f0-4b3a-b01d-37dac316a2ba 2020-09-20 00:30:16.968291 40671 2985 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1069\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1421\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 4e2bf792-aef9-4c73-aa7f-58cfd0b47bfb 2020-09-20 00:31:02.923903 40672 2226 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 13 \N 189.186.40.40 4e2bf792-aef9-4c73-aa7f-58cfd0b47bfb 2020-09-20 00:31:02.960992 40673 2985 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 e0e46db5-3988-413f-acb6-77ba4fbaac7d 2020-09-20 00:32:28.043145 40674 3986 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1069\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 2985\ncardnumber: 1552\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1421\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1421 189.186.40.40 e0e46db5-3988-413f-acb6-77ba4fbaac7d 2020-09-20 00:32:28.06724 40675 2986 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1069\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.65E3\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1422\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 89acb458-010b-4d64-b8d1-659b6e7dea7e 2020-09-20 00:33:25.470335 40676 2242 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.40.40 89acb458-010b-4d64-b8d1-659b6e7dea7e 2020-09-20 00:33:25.497997 40677 2986 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 9f8efa1a-adc5-4ab7-ab0d-fef0a7dec3cd 2020-09-20 00:34:46.736221 40678 3987 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1069\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.65E3\nmove_type: '1'\nsale_id: 2986\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1422\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.35E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1422 189.186.40.40 9f8efa1a-adc5-4ab7-ab0d-fef0a7dec3cd 2020-09-20 00:34:46.76976 40679 30 User \N \N 30 User \N update ---\ncurrent_sign_in_at:\n- 2020-09-19 23:12:02.027807000 Z\n- 2020-09-20 00:41:43.708323675 Z\nsign_in_count:\n- 1\n- 2\n 4 \N 189.186.86.233 35321a73-9553-4d43-ad70-d5039aaf8bf3 2020-09-20 00:41:43.715739 40680 30 User \N \N 30 User \N update ---\nunique_session_id:\n- knLyxVsz9PkyjnPY2nPs\n- TGdCZ2mvxE4njmDTUMRz\n 5 \N 189.186.86.233 35321a73-9553-4d43-ad70-d5039aaf8bf3 2020-09-20 00:41:43.731205 40681 2987 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1069\namount: !ruby/object:BigDecimal 18:0.43452E3\ntax: !ruby/object:BigDecimal 18:0.3448E2\ndiscount: !ruby/object:BigDecimal 18:0.219E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1423\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 6d61e3a3-f09c-4b44-af0e-48d431838688 2020-09-20 00:48:37.551281 40684 3988 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1069\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 2987\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1423\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1423 189.186.40.40 799619e2-c565-4e9d-be30-dde316e731fe 2020-09-20 00:48:44.304675 40685 391 Customer \N \N 9 User \N create ---\nnick_name: ALONDRA FIGUEROA\nphone: "(667) 195-2443"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ALONDRA FIGUEROA fue registrado. 189.186.40.40 54b80990-9c99-411e-887e-ae8ae8f2dc7e 2020-09-20 00:59:10.109237 40686 2988 Sale \N \N 9 User \N create ---\ncustomer_id: 391\nuser_id: 9\nopen_cash_register_id: 1069\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 2\nseller_id: 27\nsale_code: PV1-V-1424\nexpiration_date: 2020-10-24\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 96a24a18-24ea-4c39-837a-b0c54fbf18ad 2020-09-20 01:00:24.189107 40687 2226 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 14 \N 189.186.40.40 96a24a18-24ea-4c39-837a-b0c54fbf18ad 2020-09-20 01:00:24.218717 40688 3989 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1069\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2988\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1424\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1424 189.186.40.40 05e6a241-3a2a-41e2-bfba-68460299ca8c 2020-09-20 01:01:21.409395 40689 2988 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.40.40 0258cf46-ea7a-4534-a30c-d4987add9597 2020-09-20 01:01:26.224645 40690 2989 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1069\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 1\nseller_id: 27\nsale_code: PV1-V-1425\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 45b2b5e5-0403-49fd-86fe-b4dc37950b7a 2020-09-20 01:03:23.391952 40691 807 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.47E2\n- !ruby/object:BigDecimal 18:0.46E2\n 15 \N 189.186.40.40 45b2b5e5-0403-49fd-86fe-b4dc37950b7a 2020-09-20 01:03:23.42175 40692 2989 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 2e589c21-55fc-478b-b408-faaad045b185 2020-09-20 01:03:32.147827 40693 3990 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1069\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49E2\nmove_type: '1'\nsale_id: 2989\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1425\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1425 189.186.40.40 2e589c21-55fc-478b-b408-faaad045b185 2020-09-20 01:03:32.171964 40694 2990 Sale \N \N 9 User \N create ---\ncustomer_id: 391\nuser_id: 9\nopen_cash_register_id: 1069\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2020-09-19\nsaletype: 2\nseller_id: 27\nsale_code: PV1-V-1426\nexpiration_date: 2020-10-24\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 0c688b84-725f-4a1d-b674-12437308b383 2020-09-20 01:05:49.565811 40695 2298 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.40.40 0c688b84-725f-4a1d-b674-12437308b383 2020-09-20 01:05:49.600777 40696 3991 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1069\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2990\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1426\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1426 189.186.40.40 ce233d16-6684-437d-88ac-1fcb59d621fa 2020-09-20 01:05:58.819984 40697 2990 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.40.40 388f9eab-c04e-490d-a582-5f352b80a9d2 2020-09-20 01:06:01.273884 40698 1094 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1070\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.4066E4\namount_out: !ruby/object:BigDecimal 18:0.1E3\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.35E4\ncash_fund: !ruby/object:BigDecimal 18:0.1007E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4507E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.86.233 1ea0e3a6-e006-4beb-8628-04b68629ed7f 2020-09-20 01:18:10.088722 40699 1070 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.86.233 1ea0e3a6-e006-4beb-8628-04b68629ed7f 2020-09-20 01:18:10.107614 40700 1095 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 1069\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.1245799E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.743E4\ncash_fund: !ruby/object:BigDecimal 27:0.9389899999999998E3\nphysical_cash: !ruby/object:BigDecimal 18:0.836899E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.40.40 6c3aac81-03b2-4098-8687-c81de7b38895 2020-09-20 01:28:31.385122 40701 1069 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.40 6c3aac81-03b2-4098-8687-c81de7b38895 2020-09-20 01:28:31.400945 40702 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 23:09:53.554318000 Z\n- &1 2020-09-19 23:13:46.902486000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-20 01:34:08.894655573 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\nsign_in_count:\n- 1869\n- 1870\n 3740 \N 189.186.40.40 1cbc4a40-7116-4e0c-aeb7-150356bece04 2020-09-20 01:34:08.903462 40703 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9URb-XGa8KhKmAwDt8Ms\n- 2CMLsFt2BzvyC6swRy9J\n 3741 \N 189.186.40.40 1cbc4a40-7116-4e0c-aeb7-150356bece04 2020-09-20 01:34:08.924964 40704 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 23:13:46.902486000 Z\n- &1 2020-09-20 01:34:08.894655000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-20 01:51:09.502334259 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934168\n mask_addr: 4294967295\nsign_in_count:\n- 1870\n- 1871\n 3742 \N 200.68.134.216 13e3381f-dbf4-4266-bed9-2a2f6c39c81d 2020-09-20 01:51:09.509888 40705 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2CMLsFt2BzvyC6swRy9J\n- Pt88r5kME5strZSM4xmZ\n 3743 \N 200.68.134.216 13e3381f-dbf4-4266-bed9-2a2f6c39c81d 2020-09-20 01:51:09.529004 40706 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 01:02:16.757250000 Z\n- &1 2020-09-19 18:11:56.386187000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-20 18:05:57.426299295 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145296\n mask_addr: 4294967295\nsign_in_count:\n- 297\n- 298\n 597 \N 189.186.241.80 88030cb5-b1f2-4801-adc7-3ab7b7f79d3b 2020-09-20 18:05:57.446525 40707 21 User \N \N 21 User \N update ---\nunique_session_id:\n- rGiX8QKrnrVWKdTF_U4_\n- D9atac6DpBRTR_RS4qfs\n 598 \N 189.186.241.80 88030cb5-b1f2-4801-adc7-3ab7b7f79d3b 2020-09-20 18:05:57.46746 40708 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-20 01:34:08.894655000 Z\n- &1 2020-09-20 01:51:09.502334000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-21 03:42:54.875076391 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934168\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934168\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534940\n mask_addr: 4294967295\nsign_in_count:\n- 1871\n- 1872\n 3744 \N 177.228.99.156 fb496c3b-ed9c-478a-ac7f-3b936f084080 2020-09-21 03:42:54.887253 40709 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Pt88r5kME5strZSM4xmZ\n- omv91H6NjxsgYfFhLdPX\n 3745 \N 177.228.99.156 fb496c3b-ed9c-478a-ac7f-3b936f084080 2020-09-21 03:42:54.90783 40710 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-20 01:51:09.502334000 Z\n- &1 2020-09-21 03:42:54.875076000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-21 18:08:52.796303609 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934168\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534940\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534940\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\nsign_in_count:\n- 1872\n- 1873\n 3746 \N 189.186.40.40 a34643b7-184a-4b83-a95d-7d4487bf95bf 2020-09-21 18:08:52.828093 40711 4 User \N \N 4 User \N update ---\nunique_session_id:\n- omv91H6NjxsgYfFhLdPX\n- ppYKs5bLffNf9xxnf-tU\n 3747 \N 189.186.40.40 a34643b7-184a-4b83-a95d-7d4487bf95bf 2020-09-21 18:08:52.859876 40712 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 18:11:56.386187000 Z\n- &1 2020-09-20 18:05:57.426299000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-21 18:11:30.614361075 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145296\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145296\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 298\n- 299\n 599 \N 189.186.86.233 e57c7df3-1c40-4903-8c0f-7db01e6ba53b 2020-09-21 18:11:30.624622 40713 21 User \N \N 21 User \N update ---\nunique_session_id:\n- D9atac6DpBRTR_RS4qfs\n- yGR9hPbudy2iy4jNsLSB\n 600 \N 189.186.86.233 e57c7df3-1c40-4903-8c0f-7db01e6ba53b 2020-09-21 18:11:30.646339 40714 1071 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1007E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1007.0 189.186.86.233 cf248b8c-d642-4d1f-8b6a-be4b918c9b62 2020-09-21 18:15:42.273965 40715 1349 Product \N \N 21 User \N create ---\nsku: BOL-1349\nname: 1BLCV20797\ndescription: Bolsa Crossbody con Asa Estampada de Trama Icónic\nprice_base: !ruby/object:BigDecimal 18:0.5495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170859904'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 1BLCV20797.png\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1349 fue creado. 189.186.86.233 a51e1017-8106-42d1-92b8-dfa5b2016364 2020-09-21 18:27:12.802177 40716 2300 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1349\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.86.233 a51e1017-8106-42d1-92b8-dfa5b2016364 2020-09-21 18:27:12.860047 40717 1350 Product \N \N 21 User \N create ---\nsku: BOL-1350\nname: 1BLCP20990\ndescription: Mochila Estampado con Mascada de Limones BLANCA\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170796933'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 1BLCP20990.png\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1350 fue creado. 189.186.86.233 bcc8a53d-e720-4b79-8af1-384cc0202c3d 2020-09-21 18:30:31.544109 40718 2301 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1350\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.86.233 bcc8a53d-e720-4b79-8af1-384cc0202c3d 2020-09-21 18:30:31.584728 40719 1351 Product \N \N 21 User \N create ---\nsku: BOL-1351\nname: 3BLCI192526\ndescription: MOCHILA GRIS CON ESTAMPADO DE ROMBO\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170837476'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1351 fue creado. 189.186.86.233 0f1abe0f-c81e-4d72-a743-362330fc7358 2020-09-21 18:35:14.775579 40720 2302 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1351\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.86.233 0f1abe0f-c81e-4d72-a743-362330fc7358 2020-09-21 18:35:14.818309 40721 392 Purchase \N \N 21 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-96\namount: !ruby/object:BigDecimal 18:0.62945E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.62945E4\nobservations: ''\npurchase_date: 2020-09-21\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-96 por $ 6294.5 MXN creada. 189.186.86.233 ff716a5f-ba51-4493-959e-e6735183ebff 2020-09-21 18:36:17.419143 40722 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.11E2\n 35 \N 189.186.86.233 ff716a5f-ba51-4493-959e-e6735183ebff 2020-09-21 18:36:17.449228 40723 2300 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.86.233 ff716a5f-ba51-4493-959e-e6735183ebff 2020-09-21 18:36:17.491161 40724 2301 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.86.233 ff716a5f-ba51-4493-959e-e6735183ebff 2020-09-21 18:36:17.52069 40725 1975 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.86.233 ff716a5f-ba51-4493-959e-e6735183ebff 2020-09-21 18:36:17.54712 40726 2302 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.86.233 ff716a5f-ba51-4493-959e-e6735183ebff 2020-09-21 18:36:17.573305 40727 30 User \N \N 30 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 23:12:02.027807000 Z\n- &1 2020-09-20 00:41:43.708323000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-21 18:37:39.393314208 Z\nsign_in_count:\n- 2\n- 3\n 6 \N 189.186.86.233 c24142ef-18cc-4087-921d-de6868161ad4 2020-09-21 18:37:39.404874 40728 30 User \N \N 30 User \N update ---\nunique_session_id:\n- TGdCZ2mvxE4njmDTUMRz\n- whxE_DhGvwm58-u1pY83\n 7 \N 189.186.86.233 c24142ef-18cc-4087-921d-de6868161ad4 2020-09-21 18:37:39.424847 40729 1351 Product \N \N 30 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1351'\n is_parent: false\n sku: BOL-1351\n name: 3BLCI192526\n description: MOCHILA GRIS CON ESTAMPADO DE ROMBO\n price_base: '799.5'\n price_sale: '1599.0'\n img_product: WIN_20200921_12_40_00_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170837476'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-21 18:35:14.761772'\n updated_at: &12 2020-09-21 18:38:42.318966305 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1351'\n sku: BOL-1351\n name: 3BLCI192526\n description: MOCHILA GRIS CON ESTAMPADO DE ROMBO\n price_base: '799.50'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-21 18:35:14.761772'\n updated_at: '2020-09-21 18:35:14.761772'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170837476'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1351'\n type: *3\n value: 1351\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1351\n type: *7\n value: BOL-1351\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 3BLCI192526\n type: *8\n value: 3BLCI192526\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCHILA GRIS CON ESTAMPADO DE ROMBO\n type: *6\n value: MOCHILA GRIS CON ESTAMPADO DE ROMBO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '799.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20200921_12_40_00_Pro.jpg\n type: *2\n value: WIN_20200921_12_40_00_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170837476'\n type: *2\n value: '7509170837476'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-21 18:35:14.761772'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20200921_12_40_00_Pro.jpg\n 2 El producto BOL-1351 fue modificado. 189.186.86.233 1d6d5e99-65ac-403c-b0e1-c2ddca192ea2 2020-09-21 18:38:42.363973 40730 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 23:01:27.550932000 Z\n- &1 2020-09-19 23:41:50.966341000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-21 18:39:06.783710948 Z\nsign_in_count:\n- 169\n- 170\n 340 \N 189.186.40.40 888a1b84-c382-410f-b386-a5177808a191 2020-09-21 18:39:06.790331 40731 9 User \N \N 9 User \N update ---\nunique_session_id:\n- j1KCEzatJYU5hGDw6T6C\n- zv4Nj8h2PDBDwu11sTm-\n 341 \N 189.186.40.40 888a1b84-c382-410f-b386-a5177808a191 2020-09-21 18:39:06.806003 40732 1072 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.93899E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 938.99 189.186.40.40 fe6b69d2-abf6-4e64-bc4c-e8117d9493b1 2020-09-21 18:39:10.351083 40733 2991 Sale \N \N 21 User \N create ---\ncustomer_id: 389\nuser_id: 21\nopen_cash_register_id: 1071\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-21\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-645\nexpiration_date: 2020-10-26\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 0793bf21-060a-45a3-8688-0bdc5baabe93 2020-09-21 18:39:45.179249 40734 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 36 \N 189.186.86.233 0793bf21-060a-45a3-8688-0bdc5baabe93 2020-09-21 18:39:45.208734 40735 3992 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1071\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2991\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-645\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-645 189.186.86.233 6468fd29-a7c7-497c-be68-1f23b40a89f4 2020-09-21 18:40:06.644624 40736 2991 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.86.233 b8b07385-cb5d-46ef-bcd6-d19cfaaa6ad2 2020-09-21 18:40:10.116348 40737 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-21 03:42:54.875076000 Z\n- &1 2020-09-21 18:08:52.796303000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-21 18:40:23.513054165 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534940\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\nsign_in_count:\n- 1873\n- 1874\n 3748 \N 189.186.40.40 ea782d1b-1a9f-43a8-9d6d-e3f21d5944af 2020-09-21 18:40:23.523479 40738 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ppYKs5bLffNf9xxnf-tU\n- LBW2a7nAyssYGxUcTjJH\n 3749 \N 189.186.40.40 ea782d1b-1a9f-43a8-9d6d-e3f21d5944af 2020-09-21 18:40:23.545745 40739 393 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-158\namount: !ruby/object:BigDecimal 18:0.16485E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.16485E4\nobservations: ''\npurchase_date: 2020-09-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-158 por $ 1648.5 MXN creada. 189.186.40.40 f5b5afb1-1487-42de-a826-b3a1ddc8f6cd 2020-09-21 18:42:17.440489 40740 2298 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.40.40 f5b5afb1-1487-42de-a826-b3a1ddc8f6cd 2020-09-21 18:42:17.466761 40741 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 23:41:50.966341000 Z\n- &1 2020-09-21 18:39:06.783710000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-21 18:42:46.172455088 Z\nsign_in_count:\n- 170\n- 171\n 342 \N 189.186.40.40 a8859114-f5ec-4f1a-b4e6-a99ae23a8094 2020-09-21 18:42:46.179112 40742 9 User \N \N 9 User \N update ---\nunique_session_id:\n- zv4Nj8h2PDBDwu11sTm-\n- bJA1jnkHdXznF4LTskF5\n 343 \N 189.186.40.40 a8859114-f5ec-4f1a-b4e6-a99ae23a8094 2020-09-21 18:42:46.193831 40743 2992 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1072\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2020-09-21\nsaletype: 1\nseller_id: 27\nsale_code: PV1-V-1427\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 28f44ed0-37af-43f3-aae6-6e0e7be63e5a 2020-09-21 18:43:10.070943 40744 2298 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.40.40 28f44ed0-37af-43f3-aae6-6e0e7be63e5a 2020-09-21 18:43:10.106925 40745 2992 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 d411b6a1-1232-4bb1-905e-f2bbf1e77220 2020-09-21 18:43:34.441998 40746 3993 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1072\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 2992\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1427\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1427 189.186.40.40 d411b6a1-1232-4bb1-905e-f2bbf1e77220 2020-09-21 18:43:34.470732 40747 944 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.86.233 b0089666-fa04-4f68-b59c-6e1c3c0d5465 2020-09-21 18:43:55.841844 40748 944 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 5939b988-58c4-4b5d-8a46-5101bd49dae2 2020-09-21 18:43:58.888853 40749 941 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.86.233 8641d3a9-7b5a-4f8b-b2d9-3ad251f9e11a 2020-09-21 18:44:17.31255 40750 945 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.86.233 667feaff-14ae-4ef3-aa06-88563b16301c 2020-09-21 18:44:31.888051 40751 945 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 f18fa01d-8c10-4ee1-b8e2-ff49332d6529 2020-09-21 18:44:39.40974 40752 946 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.86.233 5c86d68a-741c-4226-ae34-4c3a18a4a7e1 2020-09-21 18:44:50.813341 40753 946 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 ef7cff05-f94d-4f5e-b7cb-6e0e233746c1 2020-09-21 18:44:54.108496 40754 947 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.86.233 6c44ef15-6999-4bcf-a191-2b556011a002 2020-09-21 18:45:02.072809 40755 947 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 0e93d3be-e2a5-4a3a-8f90-ceb1b59a7b6b 2020-09-21 18:45:05.759394 40756 392 Customer \N \N 9 User \N create ---\nnick_name: MARIA DEL CARMEN\nphone: "(672) 120-5694"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIA DEL CARMEN fue registrado. 189.186.40.40 73113e60-a92c-4ef5-9d8c-ad83ee84568c 2020-09-21 18:45:06.264478 40757 2993 Sale \N \N 9 User \N create ---\ncustomer_id: 392\nuser_id: 9\nopen_cash_register_id: 1072\namount: !ruby/object:BigDecimal 18:0.1189E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1189E4\nstatus: 0\ndate_sale: 2020-09-21\nsaletype: 2\nseller_id: 3\nsale_code: PV1-V-1428\nexpiration_date: 2020-10-26\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 1b878673-9ea1-41f8-b122-877bb5f5adc3 2020-09-21 18:45:22.297137 40758 2229 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.40.40 1b878673-9ea1-41f8-b122-877bb5f5adc3 2020-09-21 18:45:22.32755 40759 3994 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1072\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2993\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1428\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1428 189.186.40.40 464b1302-52c6-40ce-992a-b741bae7b94e 2020-09-21 18:45:28.202677 40760 2993 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.40.40 f6f3c59f-5a24-4eb4-9f5a-8e10f1ae6635 2020-09-21 18:45:29.365067 40761 1957 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.86.233 e1ea20e7-cc52-4146-8e8e-4252097a3863 2020-09-21 18:45:31.295042 40762 943 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.86.233 fd2a951b-d8cc-432a-acc6-66d475abc098 2020-09-21 18:45:55.291785 40763 948 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.86.233 1b321f63-78d8-43d1-b502-f1d509e75e33 2020-09-21 18:46:14.775319 40764 1956 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 3 \N 189.186.86.233 d13042f1-3f52-4742-b5c2-3026b2e805f5 2020-09-21 18:46:34.272088 40765 1955 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.86.233 fb0a8703-140c-4d1f-b585-f421178ef305 2020-09-21 18:46:42.061234 40766 1954 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.86.233 8160b26c-97c3-4d92-a658-a44e5d18e5bf 2020-09-21 18:46:52.096445 40767 1953 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.86.233 f8a382bb-3a68-45cc-b5eb-69b6ea7b5dc8 2020-09-21 18:47:13.24874 40768 1957 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.86.233 aca6fdbf-593c-4964-a72a-af51af52ee0a 2020-09-21 18:47:19.841952 40769 948 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 9121f60d-bd12-4e01-a8d3-2b1e21dcdfbc 2020-09-21 18:47:22.296538 40770 1956 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.86.233 6cd45754-024a-4307-86c0-2752453dec91 2020-09-21 18:47:24.986828 40771 1954 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.86.233 e3335e5e-5c5b-4b9d-9f23-e541eb28ba12 2020-09-21 18:47:29.597936 40772 1953 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.86.233 667713b8-1b46-4027-9d6f-6713168835cb 2020-09-21 18:47:30.933884 40773 1956 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.86.233 15c3a43a-6cd9-4ee2-9af9-143dc00cb788 2020-09-21 18:48:23.939987 40774 678 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-09-21\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.86.233 47a36951-c143-419f-9d60-81c9d6db4175 2020-09-21 18:48:59.468935 40775 2994 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1072\namount: !ruby/object:BigDecimal 18:0.738E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.738E3\nstatus: 0\ndate_sale: 2020-09-21\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1429\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 267129f0-8a24-4c67-ab12-5cabca4f61ac 2020-09-21 19:01:50.181949 40776 2239 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.40.40 267129f0-8a24-4c67-ab12-5cabca4f61ac 2020-09-21 19:01:50.218851 40777 2994 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 9aaa5318-7ea3-4439-b861-c6c4b751fd6c 2020-09-21 19:02:30.40303 40778 3995 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1072\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.738E3\nmove_type: '1'\nsale_id: 2994\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1429\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.262E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1429 189.186.40.40 9aaa5318-7ea3-4439-b861-c6c4b751fd6c 2020-09-21 19:02:30.428183 40779 675 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-21\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.460754 40780 142 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.481706 40781 237 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.501445 40782 2303 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 483\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.522754 40783 1687 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.539589 40784 5 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.557611 40785 1565 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.57532 40786 13 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.593532 40787 610 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.612321 40788 1563 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.631753 40789 1623 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.649949 40790 668 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.667233 40791 133 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.68477 40792 2304 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 324\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.705311 40793 144 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.722564 40794 811 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.7E1\n 10 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.740731 40795 147 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.758216 40796 15 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.774905 40797 2305 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 611\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.796175 40798 1442 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.815464 40799 253 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.836935 40800 711 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.8561 40801 2306 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 283\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.877576 40802 691 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.89616 40803 2307 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 415\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.917773 40804 188 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.935395 40805 207 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.953529 40806 2308 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 431\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.973471 40807 2309 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 432\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:17.9936 40808 2310 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 280\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:18.013887 40809 2311 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 279\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:18.03526 40908 1072 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.40.40 947e22b9-9486-4c83-b718-b587f5bdd027 2020-09-22 00:44:57.395043 40810 2312 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 291\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:18.057154 40811 107 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:18.075256 40812 628 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:18.092886 40813 2313 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 534\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:18.114822 40814 675 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.40.40 ef2748fd-c42b-4a76-bc63-d13ac1b4125e 2020-09-21 19:34:18.134252 40815 676 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-21\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.40.40 731256d2-df3f-4e2e-8b7f-181bd2c99d19 2020-09-21 19:34:27.717941 40816 211 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.40.40 731256d2-df3f-4e2e-8b7f-181bd2c99d19 2020-09-21 19:34:27.735845 40817 2314 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 635\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 731256d2-df3f-4e2e-8b7f-181bd2c99d19 2020-09-21 19:34:27.756159 40818 66 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.40.40 731256d2-df3f-4e2e-8b7f-181bd2c99d19 2020-09-21 19:34:27.773599 40819 202 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 189.186.40.40 731256d2-df3f-4e2e-8b7f-181bd2c99d19 2020-09-21 19:34:27.794839 40820 677 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-21\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.40.40 7cf252a0-f226-4d46-a7b8-01f2bc3c204a 2020-09-21 19:34:36.927686 40821 6 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.40.40 7cf252a0-f226-4d46-a7b8-01f2bc3c204a 2020-09-21 19:34:36.945811 40822 643 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.40.40 7cf252a0-f226-4d46-a7b8-01f2bc3c204a 2020-09-21 19:34:36.966822 40823 678 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-21\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.40.40 ea6c93a4-2597-4541-b186-2f29c8caa283 2020-09-21 19:34:46.106027 40824 2315 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 1101\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.7E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ea6c93a4-2597-4541-b186-2f29c8caa283 2020-09-21 19:34:46.128987 40825 2316 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 1104\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ea6c93a4-2597-4541-b186-2f29c8caa283 2020-09-21 19:34:46.152445 40826 2317 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 1103\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ea6c93a4-2597-4541-b186-2f29c8caa283 2020-09-21 19:34:46.178509 40827 2318 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 370\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ea6c93a4-2597-4541-b186-2f29c8caa283 2020-09-21 19:34:46.202118 40828 2319 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 386\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ea6c93a4-2597-4541-b186-2f29c8caa283 2020-09-21 19:34:46.225162 40829 2320 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 1102\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ea6c93a4-2597-4541-b186-2f29c8caa283 2020-09-21 19:34:46.24771 40830 2321 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 371\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ea6c93a4-2597-4541-b186-2f29c8caa283 2020-09-21 19:34:46.271538 40831 2322 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 377\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ea6c93a4-2597-4541-b186-2f29c8caa283 2020-09-21 19:34:46.293984 40832 2323 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 376\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ea6c93a4-2597-4541-b186-2f29c8caa283 2020-09-21 19:34:46.316305 40833 2324 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 375\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ea6c93a4-2597-4541-b186-2f29c8caa283 2020-09-21 19:34:46.338719 40834 2325 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 378\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ea6c93a4-2597-4541-b186-2f29c8caa283 2020-09-21 19:34:46.361109 40835 2326 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 374\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 ea6c93a4-2597-4541-b186-2f29c8caa283 2020-09-21 19:34:46.383417 40935 4 User \N \N 4 User \N update ---\nunique_session_id:\n- C8PijxVJeCA_WdF7z_RZ\n- XVmGisAx97-8qALzJzdW\n 3761 \N 189.186.40.40 8833cf78-0027-4712-8c99-52ac886a566f 2020-09-22 18:34:18.164831 40836 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-21 18:39:06.783710000 Z\n- &1 2020-09-21 18:42:46.172455000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-21 19:39:19.121325800 Z\nsign_in_count:\n- 171\n- 172\n 344 \N 189.186.40.40 b890d655-c98b-41cf-81ac-c17eaca2f277 2020-09-21 19:39:19.128315 40837 9 User \N \N 9 User \N update ---\nunique_session_id:\n- bJA1jnkHdXznF4LTskF5\n- 1fxygPEgu48FJsNAvm8E\n 345 \N 189.186.40.40 b890d655-c98b-41cf-81ac-c17eaca2f277 2020-09-21 19:39:19.143817 40838 2995 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1072\namount: !ruby/object:BigDecimal 18:0.1049E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1049E4\nstatus: 0\ndate_sale: 2020-09-21\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1430\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 63f3bd75-87b1-4408-85a7-482904367de1 2020-09-21 19:58:21.310325 40839 2235 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.40.40 63f3bd75-87b1-4408-85a7-482904367de1 2020-09-21 19:58:21.348601 40840 2995 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 a8844076-cb18-4734-b962-c180d8172754 2020-09-21 19:59:06.016492 40841 3996 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1072\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1049E4\nmove_type: '1'\nsale_id: 2995\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1430\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1430 189.186.40.40 a8844076-cb18-4734-b962-c180d8172754 2020-09-21 19:59:06.042216 40842 2996 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1071\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-09-21\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-646\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 07050ada-009e-4a81-bfab-99a9fa58b800 2020-09-21 20:09:38.902161 40843 1777 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.86.233 07050ada-009e-4a81-bfab-99a9fa58b800 2020-09-21 20:09:38.930615 40844 2996 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 b1e7eeac-21bc-4543-a0e2-024f0dbd652b 2020-09-21 20:09:49.5214 40845 3997 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1071\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 2996\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-646\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-646 189.186.86.233 b1e7eeac-21bc-4543-a0e2-024f0dbd652b 2020-09-21 20:09:49.546119 40846 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-21 18:08:52.796303000 Z\n- &1 2020-09-21 18:40:23.513054000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-21 20:14:01.811244090 Z\nsign_in_count:\n- 1874\n- 1875\n 3750 \N 189.186.40.40 0efe193c-f099-46b9-b001-f745c53c824d 2020-09-21 20:14:01.820084 40847 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LBW2a7nAyssYGxUcTjJH\n- tKzFH6YB2FDbYu24Q2Xp\n 3751 \N 189.186.40.40 0efe193c-f099-46b9-b001-f745c53c824d 2020-09-21 20:14:01.843704 40848 394 Purchase \N \N 21 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-97\namount: !ruby/object:BigDecimal 18:0.9495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9495E3\nobservations: ''\npurchase_date: 2020-09-21\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-97 por $ 949.5 MXN creada. 189.186.86.233 cb409d62-b330-471a-84e8-4bd42d5cf172 2020-09-21 21:10:03.038832 40849 2216 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.86.233 cb409d62-b330-471a-84e8-4bd42d5cf172 2020-09-21 21:10:03.06555 40850 2997 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1071\namount: !ruby/object:BigDecimal 18:0.3398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3398E4\nstatus: 0\ndate_sale: 2020-09-21\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-647\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 ec231715-956a-431a-b8f2-ee007d8ec6e8 2020-09-21 21:11:01.052594 40851 2216 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.86.233 ec231715-956a-431a-b8f2-ee007d8ec6e8 2020-09-21 21:11:01.079574 40852 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 64 \N 189.186.86.233 ec231715-956a-431a-b8f2-ee007d8ec6e8 2020-09-21 21:11:01.102434 40853 2997 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 0bed69df-1b4f-4baa-adf8-bd060ecc7d0e 2020-09-21 21:11:32.634132 40854 3998 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1071\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3398E4\nmove_type: '1'\nsale_id: 2997\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-647\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.34E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-647 189.186.86.233 0bed69df-1b4f-4baa-adf8-bd060ecc7d0e 2020-09-21 21:11:32.655105 40855 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-21 18:42:46.172455000 Z\n- &1 2020-09-21 19:39:19.121325000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-21 21:39:14.966764495 Z\nsign_in_count:\n- 172\n- 173\n 346 \N 189.186.40.40 f6fcf341-4fad-4064-9565-1e25e90604bf 2020-09-21 21:39:14.98722 40856 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 1fxygPEgu48FJsNAvm8E\n- cs9yDCVGPs9f26cM5UnC\n 347 \N 189.186.40.40 f6fcf341-4fad-4064-9565-1e25e90604bf 2020-09-21 21:39:15.007977 40857 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-21 18:40:23.513054000 Z\n- &1 2020-09-21 20:14:01.811244000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-21 21:40:28.318033747 Z\nsign_in_count:\n- 1875\n- 1876\n 3752 \N 189.186.40.40 f95b9dbd-f1f6-4543-9ab2-b93555acb228 2020-09-21 21:40:28.324418 40858 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tKzFH6YB2FDbYu24Q2Xp\n- z737kHfSJ3EWsrz4EU5G\n 3753 \N 189.186.40.40 f95b9dbd-f1f6-4543-9ab2-b93555acb228 2020-09-21 21:40:28.341589 40859 838 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 13 \N 189.186.86.233 f0f34e6c-3ebc-4947-8489-a57996c8f466 2020-09-21 21:47:13.822139 40860 838 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 14 \N 189.186.86.233 63363c68-25b0-4363-ae98-7d8563f9819c 2020-09-21 21:47:20.712009 40861 679 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-09-21\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.86.233 5cb7136a-5c21-4c67-80b1-e40e90728630 2020-09-21 21:47:21.997567 40862 2998 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1071\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-21\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-648\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 583af171-9771-4525-8e3e-1533c405896f 2020-09-21 21:59:52.092171 40863 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 37 \N 189.186.86.233 583af171-9771-4525-8e3e-1533c405896f 2020-09-21 21:59:52.119092 40864 2998 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 64a7bc78-1a49-4d63-b551-f65cc9297b41 2020-09-21 22:01:20.275144 40865 3999 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1071\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 2998\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-648\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-648 189.186.86.233 64a7bc78-1a49-4d63-b551-f65cc9297b41 2020-09-21 22:01:20.298789 40866 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-21 19:39:19.121325000 Z\n- &1 2020-09-21 21:39:14.966764000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-21 22:08:12.623017819 Z\nsign_in_count:\n- 173\n- 174\n 348 \N 189.186.40.40 108ae884-3741-4e66-8e0d-33288090249f 2020-09-21 22:08:12.629273 40867 9 User \N \N 9 User \N update ---\nunique_session_id:\n- cs9yDCVGPs9f26cM5UnC\n- FGJk8fcLeiNsy_gAcEpo\n 349 \N 189.186.40.40 108ae884-3741-4e66-8e0d-33288090249f 2020-09-21 22:08:12.64377 40868 393 Customer \N \N 9 User \N create ---\nnick_name: LUISA RODRIGUEZ\nphone: "(667) 756-7311"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LUISA RODRIGUEZ fue registrado. 189.186.40.40 57ac85c5-5fca-4873-9d16-3d1bc62cd2ab 2020-09-21 22:08:32.626783 40869 2999 Sale \N \N 9 User \N create ---\ncustomer_id: 393\nuser_id: 9\nopen_cash_register_id: 1072\namount: !ruby/object:BigDecimal 18:0.2136E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2136E4\nstatus: 0\ndate_sale: 2020-09-21\nsaletype: 2\nseller_id: 3\nsale_code: PV1-V-1431\nexpiration_date: 2020-10-26\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 2676c711-912d-4f76-b980-86068222e0a8 2020-09-21 22:09:47.126527 40870 2248 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.40.40 2676c711-912d-4f76-b980-86068222e0a8 2020-09-21 22:09:47.161718 40871 534 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.40.40 2676c711-912d-4f76-b980-86068222e0a8 2020-09-21 22:09:47.192027 40872 2258 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.40.40 2676c711-912d-4f76-b980-86068222e0a8 2020-09-21 22:09:47.216361 40873 2152 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.40.40 2676c711-912d-4f76-b980-86068222e0a8 2020-09-21 22:09:47.247622 40874 2157 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.40.40 2676c711-912d-4f76-b980-86068222e0a8 2020-09-21 22:09:47.286008 40875 4000 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1072\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 2999\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1431\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1431 189.186.40.40 f7b27b50-026d-4b6a-8435-065f5fb4f067 2020-09-21 22:09:58.41568 40876 2999 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.40.40 06a01fd9-a4dc-4e48-af26-27745103eb6f 2020-09-21 22:10:18.619587 40877 3000 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1072\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2020-09-21\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1432\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 07d3106e-a8be-4b9d-9f33-12adba66df12 2020-09-21 22:18:51.387464 40878 2230 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.40.40 07d3106e-a8be-4b9d-9f33-12adba66df12 2020-09-21 22:18:51.434835 40879 3000 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 afa2c579-b9e5-402e-bed8-c60426a9fd09 2020-09-21 22:19:32.953028 40880 4001 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1072\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.549E3\nmove_type: '1'\nsale_id: 3000\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1432\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1432 189.186.40.40 afa2c579-b9e5-402e-bed8-c60426a9fd09 2020-09-21 22:19:32.974899 40881 679 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-21\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.40.40 18f4091a-e3fd-424d-8aa8-8981c86234ee 2020-09-21 22:46:55.005221 40882 2146 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.40.40 18f4091a-e3fd-424d-8aa8-8981c86234ee 2020-09-21 22:46:55.052557 40883 3001 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1072\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2020-09-21\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1433\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 26ba0252-c189-42d5-8d68-7dc8f57c08f4 2020-09-21 23:01:42.397859 40884 2146 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.40.40 26ba0252-c189-42d5-8d68-7dc8f57c08f4 2020-09-21 23:01:42.425682 40885 3001 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 0e363fef-588d-4f10-84d0-186bd59ec537 2020-09-21 23:01:57.731079 40886 4002 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1072\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 3001\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1433\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.649E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1433 189.186.40.40 0e363fef-588d-4f10-84d0-186bd59ec537 2020-09-21 23:01:57.756921 40887 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-21 20:14:01.811244000 Z\n- &1 2020-09-21 21:40:28.318033000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-21 23:09:08.330190206 Z\nsign_in_count:\n- 1876\n- 1877\n 3754 \N 189.186.40.40 8336e6cb-e9bb-4e11-87b6-1408d587c0c9 2020-09-21 23:09:08.358131 40888 4 User \N \N 4 User \N update ---\nunique_session_id:\n- z737kHfSJ3EWsrz4EU5G\n- XEGjTmsZszy4rEKRCibw\n 3755 \N 189.186.40.40 8336e6cb-e9bb-4e11-87b6-1408d587c0c9 2020-09-21 23:09:08.383388 40889 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-21 21:40:28.318033000 Z\n- &1 2020-09-21 23:09:08.330190000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-21 23:25:03.714720124 Z\nsign_in_count:\n- 1877\n- 1878\n 3756 \N 189.186.40.40 394ed277-de66-40ca-a414-4b09deb8a79d 2020-09-21 23:25:03.735026 40890 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XEGjTmsZszy4rEKRCibw\n- K4bpxU42m48rxx7KurXp\n 3757 \N 189.186.40.40 394ed277-de66-40ca-a414-4b09deb8a79d 2020-09-21 23:25:03.759393 40891 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-21 21:39:14.966764000 Z\n- &1 2020-09-21 22:08:12.623017000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-21 23:25:36.067975265 Z\nsign_in_count:\n- 174\n- 175\n 350 \N 189.186.40.40 ecee53ca-71ee-47da-8197-83cea8140d11 2020-09-21 23:25:36.073335 40892 9 User \N \N 9 User \N update ---\nunique_session_id:\n- FGJk8fcLeiNsy_gAcEpo\n- w2yR2BjZesksv_YA4iPm\n 351 \N 189.186.40.40 ecee53ca-71ee-47da-8197-83cea8140d11 2020-09-21 23:25:36.086483 40893 3002 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1071\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-21\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-649\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 a7935c82-dced-46ce-865f-258fe0a4b105 2020-09-21 23:29:05.393617 40894 2301 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 a7935c82-dced-46ce-865f-258fe0a4b105 2020-09-21 23:29:05.42538 40895 3002 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 ab45660a-4f5e-4362-b643-4ee90f34058f 2020-09-21 23:29:15.988775 40896 4003 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1071\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 3002\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-649\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-649 189.186.86.233 ab45660a-4f5e-4362-b643-4ee90f34058f 2020-09-21 23:29:16.022659 40897 4004 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1072\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 2977\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1414 189.186.40.40 fae0597f-ce55-4d1f-8de7-4926773a89ae 2020-09-21 23:58:56.627973 40898 2977 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.40.40 9b9433e1-80c8-42d2-a77e-e1e162b89ea4 2020-09-21 23:58:57.820289 40899 3003 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1071\namount: !ruby/object:BigDecimal 18:0.529E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.529E3\nstatus: 0\ndate_sale: 2020-09-21\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-650\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 64cd78c0-2998-4df3-91b1-16876d84cc59 2020-09-22 00:06:58.526263 40900 2210 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.86.233 64cd78c0-2998-4df3-91b1-16876d84cc59 2020-09-22 00:06:58.553883 40901 3003 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 34734383-2e09-4fa8-a0a3-31f8afdd8385 2020-09-22 00:07:05.204075 40902 4005 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1071\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.529E3\nmove_type: '1'\nsale_id: 3003\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-650\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.529E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-650 189.186.86.233 34734383-2e09-4fa8-a0a3-31f8afdd8385 2020-09-22 00:07:05.226619 40903 3004 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1072\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2020-09-21\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1434\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 1b06eac7-b5e5-4448-ae5e-17ad357c240c 2020-09-22 00:37:02.965205 40904 2253 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.40.40 1b06eac7-b5e5-4448-ae5e-17ad357c240c 2020-09-22 00:37:02.99624 40905 3004 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 6ad0cad4-c324-485c-998a-1e55016bf2f1 2020-09-22 00:37:26.346116 40906 4006 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1072\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.479E3\nmove_type: '1'\nsale_id: 3004\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1434\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1434 189.186.40.40 6ad0cad4-c324-485c-998a-1e55016bf2f1 2020-09-22 00:37:26.369754 40907 1096 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 1072\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.5862E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.5967E4\ncash_fund: !ruby/object:BigDecimal 27:0.8339899999999998E3\nphysical_cash: !ruby/object:BigDecimal 18:0.680099E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.40.40 947e22b9-9486-4c83-b718-b587f5bdd027 2020-09-22 00:44:57.379182 40909 4007 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2480\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEPOSITO\n 1 \N 189.186.86.233 bd8f8eb0-46c5-4cc8-98d5-d6a4395fe6fc 2020-09-22 00:46:36.060094 40910 2480 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.86.233 bd8f8eb0-46c5-4cc8-98d5-d6a4395fe6fc 2020-09-22 00:46:36.086714 40911 2503 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.86.233 bd8f8eb0-46c5-4cc8-98d5-d6a4395fe6fc 2020-09-22 00:46:36.109288 40912 4007 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 931\n- 1071\n 2 movimiento de efectivo por venta con folio PV3-V-352 189.186.86.233 bd8f8eb0-46c5-4cc8-98d5-d6a4395fe6fc 2020-09-22 00:46:36.12342 40913 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-21 23:09:08.330190000 Z\n- &1 2020-09-21 23:25:03.714720000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-22 00:46:52.130616187 Z\nsign_in_count:\n- 1878\n- 1879\n 3758 \N 189.186.40.40 812b8089-b5c3-41a3-9f1e-271915b19486 2020-09-22 00:46:52.13764 40914 4 User \N \N 4 User \N update ---\nunique_session_id:\n- K4bpxU42m48rxx7KurXp\n- C8PijxVJeCA_WdF7z_RZ\n 3759 \N 189.186.40.40 812b8089-b5c3-41a3-9f1e-271915b19486 2020-09-22 00:46:52.175234 40915 395 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-159\namount: !ruby/object:BigDecimal 18:0.14985E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.14985E4\nobservations: ''\npurchase_date: 2020-09-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-159 por $ 1498.5 MXN creada. 189.186.40.40 f9e341ff-3916-4a86-9b23-340012ad7cf0 2020-09-22 00:55:53.709534 40916 2226 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.13E2\n 15 \N 189.186.40.40 f9e341ff-3916-4a86-9b23-340012ad7cf0 2020-09-22 00:55:53.732539 40917 1097 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1071\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.8524E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.7E4\ncash_fund: !ruby/object:BigDecimal 18:0.1131E4\nphysical_cash: !ruby/object:BigDecimal 18:0.8131E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.86.233 2bc22104-dda4-4167-8e70-c7080f20bfa9 2020-09-22 01:02:00.666951 40918 1071 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.86.233 2bc22104-dda4-4167-8e70-c7080f20bfa9 2020-09-22 01:02:00.68218 40919 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-20 18:05:57.426299000 Z\n- &1 2020-09-21 18:11:30.614361000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-22 17:40:11.097717484 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183145296\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 299\n- 300\n 601 \N 189.186.86.233 0c2d63ea-4941-40e3-b6d3-2779dcc43280 2020-09-22 17:40:11.127158 40920 21 User \N \N 21 User \N update ---\nunique_session_id:\n- yGR9hPbudy2iy4jNsLSB\n- LLY6SbxQQ_1Lxz-fitMi\n 602 \N 189.186.86.233 0c2d63ea-4941-40e3-b6d3-2779dcc43280 2020-09-22 17:40:11.151707 40921 1073 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1131E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1131.0 189.186.86.233 1099c629-75c3-4f72-aaaa-017c81b38939 2020-09-22 17:40:46.922808 40922 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-16 19:21:29.083264000 Z\n- &1 2020-09-17 17:49:23.588480000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-22 18:27:31.468680807 Z\nsign_in_count:\n- 646\n- 647\n 1297 \N 189.186.40.40 800e6ebf-a376-4ef1-b26b-b90b82adc15e 2020-09-22 18:27:31.505787 40923 2 User \N \N 2 User \N update ---\nunique_session_id:\n- NS_WhLxX6m1za4VS9Bg5\n- qWZ8_RbHv7a-y5NZMsP8\n 1298 \N 189.186.40.40 800e6ebf-a376-4ef1-b26b-b90b82adc15e 2020-09-22 18:27:31.538623 40924 1074 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.83399E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 833.99 189.186.40.40 bef56e09-2a99-4052-9a8f-39394ca29c57 2020-09-22 18:27:58.931951 40925 1582 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.86.233 893e09fc-cbf3-4de1-a383-c88ee6004c0e 2020-09-22 18:29:59.664642 40926 1582 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 6a307709-5085-474d-9240-be5803432e23 2020-09-22 18:30:03.329795 40927 680 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-09-22\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.86.233 0b4aaa5c-aa0a-4cb6-8730-5a5ee9d18db6 2020-09-22 18:30:05.492531 40928 680 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-22\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.40.40 9b765d93-f27b-435a-9f75-1d6ddb24862c 2020-09-22 18:31:29.369446 40929 617 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.40.40 9b765d93-f27b-435a-9f75-1d6ddb24862c 2020-09-22 18:31:29.399773 40930 3005 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1074\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.109E3\ntotal: !ruby/object:BigDecimal 18:0.99E3\nstatus: 0\ndate_sale: 2020-09-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1435\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 0115bf57-c85b-4791-b6cc-41f8891ddbb4 2020-09-22 18:32:17.847063 40931 617 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.40.40 0115bf57-c85b-4791-b6cc-41f8891ddbb4 2020-09-22 18:32:17.873199 40932 3005 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 799923e1-a95c-496a-899d-f0b50e4d76f5 2020-09-22 18:32:31.912872 40933 4008 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1074\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.99E3\nmove_type: '1'\nsale_id: 3005\ncardnumber: 8588\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1435\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1435 189.186.40.40 799923e1-a95c-496a-899d-f0b50e4d76f5 2020-09-22 18:32:31.937302 40934 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-21 23:25:03.714720000 Z\n- &1 2020-09-22 00:46:52.130616000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-22 18:34:18.141400341 Z\nsign_in_count:\n- 1879\n- 1880\n 3760 \N 189.186.40.40 8833cf78-0027-4712-8c99-52ac886a566f 2020-09-22 18:34:18.147562 40936 3006 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1073\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-09-22\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-651\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 b35df1f3-2bca-4eb1-b191-70c3df2a7423 2020-09-22 19:18:52.694635 40937 1822 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 67 \N 189.186.86.233 b35df1f3-2bca-4eb1-b191-70c3df2a7423 2020-09-22 19:18:52.733239 40938 3006 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 5c054a0b-66e6-4dad-80f7-779c7d1800b6 2020-09-22 19:19:39.005307 40939 4009 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1073\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 3006\ncardnumber: 2566\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-651\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-651 189.186.86.233 5c054a0b-66e6-4dad-80f7-779c7d1800b6 2020-09-22 19:19:39.030546 40940 3007 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1073\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-09-22\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-652\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 0d306399-6819-4081-a006-0e14e50feffc 2020-09-22 19:20:11.04903 40941 2291 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.86.233 0d306399-6819-4081-a006-0e14e50feffc 2020-09-22 19:20:11.088813 40942 3007 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 6076823d-69c1-4cbb-8525-e68387f45c7b 2020-09-22 19:20:24.685963 40943 4010 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1073\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 3007\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-652\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-652 189.186.86.233 6076823d-69c1-4cbb-8525-e68387f45c7b 2020-09-22 19:20:24.715697 40944 904 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.40.40 a42d5409-1d90-47f8-99c6-02abefb71da7 2020-09-22 19:45:13.721889 40945 901 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.40.40 8a3d99e9-6400-4820-8ca3-10f91a1852e2 2020-09-22 19:45:39.67125 40946 934 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.40.40 825dffed-5561-443f-9081-88389957f502 2020-09-22 19:45:47.619516 40947 890 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.40.40 ef85d078-8d6c-476b-ba6c-07e89c14e975 2020-09-22 19:45:55.071973 40948 681 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-09-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.40.40 6d2860a0-da7c-4d0c-a786-13915039a3ef 2020-09-22 19:46:04.328595 40949 396 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-160\namount: !ruby/object:BigDecimal 18:0.7995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.7995E3\nobservations: ''\npurchase_date: 2020-09-22\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-160 por $ 799.5 MXN creada. 189.186.40.40 d5f19fb1-6ab0-435a-9eb4-cd6fa0de169a 2020-09-22 19:47:42.985985 40950 2327 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1351\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 d5f19fb1-6ab0-435a-9eb4-cd6fa0de169a 2020-09-22 19:47:43.018122 40951 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-21 22:08:12.623017000 Z\n- &1 2020-09-21 23:25:36.067975000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-22 19:48:35.281763974 Z\nsign_in_count:\n- 175\n- 176\n 352 \N 189.186.40.40 533054fd-150a-406f-aa42-f4a1e3bd9f1a 2020-09-22 19:48:35.289474 40952 9 User \N \N 9 User \N update ---\nunique_session_id:\n- w2yR2BjZesksv_YA4iPm\n- "-xWuK8NQokvm_6yB_udj"\n 353 \N 189.186.40.40 533054fd-150a-406f-aa42-f4a1e3bd9f1a 2020-09-22 19:48:35.306296 40953 681 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-22\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.40.40 6f058ea2-70de-4a6c-a5e8-17da6a98212f 2020-09-22 19:48:50.608931 40954 587 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.40.40 6f058ea2-70de-4a6c-a5e8-17da6a98212f 2020-09-22 19:48:50.627764 40955 582 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.40.40 6f058ea2-70de-4a6c-a5e8-17da6a98212f 2020-09-22 19:48:50.64657 40956 2328 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 347\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 6f058ea2-70de-4a6c-a5e8-17da6a98212f 2020-09-22 19:48:50.668084 40957 589 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.40.40 6f058ea2-70de-4a6c-a5e8-17da6a98212f 2020-09-22 19:48:50.68633 40958 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-22 00:46:52.130616000 Z\n- &1 2020-09-22 18:34:18.141400000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-22 19:49:41.941194796 Z\nsign_in_count:\n- 1880\n- 1881\n 3762 \N 189.186.40.40 24e460ee-133e-4f04-8200-bba72a789921 2020-09-22 19:49:41.947931 40959 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XVmGisAx97-8qALzJzdW\n- uBzmfMJxrxumsVtWnhPG\n 3763 \N 189.186.40.40 24e460ee-133e-4f04-8200-bba72a789921 2020-09-22 19:49:41.966594 40960 1997 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.40.40 52ae21fc-42c9-41ec-9264-91da3a3640db 2020-09-22 19:55:14.28862 40961 682 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-09-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.40.40 9514f8a0-e6b0-44fd-97c3-9b87ebea4677 2020-09-22 19:55:15.735576 40962 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-21 23:25:36.067975000 Z\n- &1 2020-09-22 19:48:35.281763000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-22 19:58:32.015457605 Z\nsign_in_count:\n- 176\n- 177\n 354 \N 189.186.40.40 b6858793-2f19-4965-b766-9cb87b80594e 2020-09-22 19:58:32.021044 40963 9 User \N \N 9 User \N update ---\nunique_session_id:\n- "-xWuK8NQokvm_6yB_udj"\n- oSG7dM5xuPSX-dB6bdNn\n 355 \N 189.186.40.40 b6858793-2f19-4965-b766-9cb87b80594e 2020-09-22 19:58:32.03525 40964 3008 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1074\namount: !ruby/object:BigDecimal 18:0.1368E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1368E4\nstatus: 0\ndate_sale: 2020-09-22\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1436\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 5a239e5a-b699-4b32-b634-4b1b552c2815 2020-09-22 20:02:05.452663 40965 1685 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.40.40 5a239e5a-b699-4b32-b634-4b1b552c2815 2020-09-22 20:02:05.480572 40966 788 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 25 \N 189.186.40.40 5a239e5a-b699-4b32-b634-4b1b552c2815 2020-09-22 20:02:05.506704 40967 3008 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 3826368f-dc0b-49aa-9cef-5a2b7352e5e8 2020-09-22 20:02:39.155507 40968 4011 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1074\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1368E4\nmove_type: '1'\nsale_id: 3008\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1436\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.132E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1436 189.186.40.40 3826368f-dc0b-49aa-9cef-5a2b7352e5e8 2020-09-22 20:02:39.183728 40969 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-22 18:34:18.141400000 Z\n- &1 2020-09-22 19:49:41.941194000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-22 20:06:18.459348902 Z\nsign_in_count:\n- 1881\n- 1882\n 3764 \N 189.186.40.40 856a2326-9f62-483f-8571-feb3bf194a5b 2020-09-22 20:06:18.466053 40970 4 User \N \N 4 User \N update ---\nunique_session_id:\n- uBzmfMJxrxumsVtWnhPG\n- CdjY7trSakEEyr8pc-_s\n 3765 \N 189.186.40.40 856a2326-9f62-483f-8571-feb3bf194a5b 2020-09-22 20:06:18.488566 40971 1352 Product \N \N 4 User \N create ---\nsku: COS-1352\nname: 4CSCP20791\ndescription: COSMETIQUERA CLOE ROSA METALICA\nprice_base: !ruby/object:BigDecimal 18:0.2495E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170791754'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 14\nproduct_service_key: '01010101'\n 1 El producto COS-1352 fue creado. 189.186.40.40 857b79c6-314d-49d4-915a-d00d261fe67f 2020-09-22 20:14:07.966867 40972 2329 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1352\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 857b79c6-314d-49d4-915a-d00d261fe67f 2020-09-22 20:14:08.024747 40973 1353 Product \N \N 4 User \N create ---\nsku: COS-1353\nname: 4CSCP20802BLA\ndescription: 'COSMETIQUERA LIMON '\nprice_base: !ruby/object:BigDecimal 18:0.3495E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170791860'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 14\nproduct_service_key: '01010101'\n 1 El producto COS-1353 fue creado. 189.186.40.40 86f7f882-d206-41ec-9e1d-d0fb3c2391e7 2020-09-22 20:15:34.492627 40974 2330 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1353\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 86f7f882-d206-41ec-9e1d-d0fb3c2391e7 2020-09-22 20:15:34.550125 40975 1354 Product \N \N 4 User \N create ---\nsku: COS-1354\nname: 4CSCP20808\ndescription: COSMETIQUERA FLORES\nprice_base: !ruby/object:BigDecimal 18:0.2995E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170791921'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 14\nproduct_service_key: '01010101'\n 1 El producto COS-1354 fue creado. 189.186.40.40 483065d6-8a49-4810-bf61-8cc99960d839 2020-09-22 20:17:02.804697 40976 2331 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1354\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.40.40 483065d6-8a49-4810-bf61-8cc99960d839 2020-09-22 20:17:02.846336 40977 397 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-161\namount: !ruby/object:BigDecimal 18:0.8985E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.8985E3\nobservations: ''\npurchase_date: 2020-09-22\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-161 por $ 898.5 MXN creada. 189.186.40.40 e6d42057-6ea4-4ce4-8661-73eb2bdd62e8 2020-09-22 20:17:05.109838 40978 2329 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.40.40 e6d42057-6ea4-4ce4-8661-73eb2bdd62e8 2020-09-22 20:17:05.132735 40979 2330 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.40.40 e6d42057-6ea4-4ce4-8661-73eb2bdd62e8 2020-09-22 20:17:05.157345 40980 2331 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.40.40 e6d42057-6ea4-4ce4-8661-73eb2bdd62e8 2020-09-22 20:17:05.181986 40981 30 User \N \N 30 User \N update ---\nlast_sign_in_at:\n- 2020-09-20 00:41:43.708323000 Z\n- &1 2020-09-21 18:37:39.393314000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-22 20:38:43.282232613 Z\nsign_in_count:\n- 3\n- 4\n 8 \N 189.186.86.233 1e81ae18-5a6d-4657-9349-5021640a2c7d 2020-09-22 20:38:43.302142 40982 30 User \N \N 30 User \N update ---\nunique_session_id:\n- whxE_DhGvwm58-u1pY83\n- dKiHBsJcfSm7drqDtk9E\n 9 \N 189.186.86.233 1e81ae18-5a6d-4657-9349-5021640a2c7d 2020-09-22 20:38:43.321299 40983 791 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 10 \N 189.186.40.40 f85b53a4-fd4b-42ef-8e21-0dcdf8666e5c 2020-09-22 20:40:32.742295 40984 1629 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.40.40 b814213f-8016-4eb5-86e7-0e407581918f 2020-09-22 20:40:42.892138 40985 1634 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.40.40 3535a5bd-060d-43bd-8e6e-3a8a48ba23ad 2020-09-22 20:40:48.737728 40986 1647 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.40.40 4971cf83-a5cb-4d16-92aa-e056ba094d39 2020-09-22 20:41:03.401993 40987 1689 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.40.40 31629270-3651-40a0-803f-e146bb8bcf98 2020-09-22 20:41:10.002426 40988 1689 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.40.40 a3818450-46eb-4646-971c-fbe0bf8fc0e8 2020-09-22 20:41:18.471389 40989 1647 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.40.40 5bc618bb-10fc-4fcc-9fd5-ab025375e174 2020-09-22 20:41:19.801342 40990 1634 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.40.40 3d6f5cd8-68e9-4b2b-8ccf-02a676ae0d8a 2020-09-22 20:41:23.063357 40991 1629 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.40.40 852710f8-d63d-4f2c-a927-6d7285ee1350 2020-09-22 20:41:24.501731 40992 791 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.5E1\n 11 \N 189.186.40.40 1a8e6834-823d-4fab-8ca3-7fab60bb16d5 2020-09-22 20:41:27.747775 40993 683 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-09-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.40.40 9ee77bcc-6583-4b5d-9697-7e1861ae1aea 2020-09-22 20:41:28.699849 40994 937 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 2 \N 189.186.86.233 73652148-a0e2-4ae6-9d2a-3ca7f2c15b0e 2020-09-22 20:43:40.309101 40995 937 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.8E1\n 3 \N 189.186.86.233 fe12e7f2-50ba-40f3-bbc7-838663ac9a3a 2020-09-22 20:43:43.271765 40996 937 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.86.233 251d6452-4051-4a72-a6d1-49ef96f3f028 2020-09-22 20:43:51.28023 40997 684 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-09-22\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.86.233 e7a03ff2-f4f1-4532-9ad2-7fd14fcf6d20 2020-09-22 20:43:52.13157 40998 1610 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.86.233 0acdd8b1-abb1-41bf-83d0-5743c5800d51 2020-09-22 20:46:24.661287 40999 685 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-09-22\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.86.233 955636dc-832c-4d8b-bb2d-3cf7361010e7 2020-09-22 20:46:26.634546 41000 683 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-22\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.86.233 7da6be25-6588-4bc9-af6f-96954882835e 2020-09-22 20:47:19.190128 41001 830 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.7E1\n 14 \N 189.186.86.233 7da6be25-6588-4bc9-af6f-96954882835e 2020-09-22 20:47:19.227866 41002 2332 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 978\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.86.233 7da6be25-6588-4bc9-af6f-96954882835e 2020-09-22 20:47:19.295845 41003 2333 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 983\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.86.233 7da6be25-6588-4bc9-af6f-96954882835e 2020-09-22 20:47:19.338176 41004 2334 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 996\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.86.233 7da6be25-6588-4bc9-af6f-96954882835e 2020-09-22 20:47:19.377506 41005 2008 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.86.233 7da6be25-6588-4bc9-af6f-96954882835e 2020-09-22 20:47:19.412043 41006 682 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-22\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.86.233 54d290e2-c5c2-4039-b402-1a4d9316b885 2020-09-22 20:47:26.966173 41007 929 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.86.233 54d290e2-c5c2-4039-b402-1a4d9316b885 2020-09-22 20:47:26.984235 41008 2273 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.86.233 9b9fa7d2-03f1-4eee-9e24-4f0a44180321 2020-09-22 21:01:42.577378 41009 686 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-09-22\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.86.233 cf2cfa48-cae8-467c-be5c-940250daec7b 2020-09-22 21:01:44.972527 41010 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-22 19:49:41.941194000 Z\n- &1 2020-09-22 20:06:18.459348000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-22 21:12:51.555564681 Z\nsign_in_count:\n- 1882\n- 1883\n 3766 \N 189.186.40.40 1564fd0f-3ae1-4c1d-b0bb-9839b58f5635 2020-09-22 21:12:51.564297 41011 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CdjY7trSakEEyr8pc-_s\n- 1gZxaoYszFEUhaeQ5GkY\n 3767 \N 189.186.40.40 1564fd0f-3ae1-4c1d-b0bb-9839b58f5635 2020-09-22 21:12:51.584785 41012 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-17 17:49:23.588480000 Z\n- &1 2020-09-22 18:27:31.468680000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-22 21:22:48.377364640 Z\nsign_in_count:\n- 647\n- 648\n 1299 \N 189.186.40.40 97184ebe-b8ac-4d16-812b-81cbeed099bc 2020-09-22 21:22:48.383152 41013 2 User \N \N 2 User \N update ---\nunique_session_id:\n- qWZ8_RbHv7a-y5NZMsP8\n- SxMjSaoz4s7FpmtpqB8g\n 1300 \N 189.186.40.40 97184ebe-b8ac-4d16-812b-81cbeed099bc 2020-09-22 21:22:48.401317 41014 335 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1074\nquantity: !ruby/object:BigDecimal 18:0.2E2\nstatus: 1\nobservations: estacionamiento Samantha\nexpense_date: 2020-09-22\nexpense_code: PV1-E-232\n 1 Egreso por 20.0 registrado 189.186.40.40 8a8f1a6a-7086-4d10-bff4-b26c2140643c 2020-09-22 21:28:49.577917 41015 4012 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1074\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 335\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.40.40 8a8f1a6a-7086-4d10-bff4-b26c2140643c 2020-09-22 21:28:49.606436 41016 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-22 20:06:18.459348000 Z\n- &1 2020-09-22 21:12:51.555564000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-22 22:36:21.740349913 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946082\n mask_addr: 4294967295\nsign_in_count:\n- 1883\n- 1884\n 3768 \N 200.68.181.98 837c244b-c23f-4146-bc7a-c704343f16d6 2020-09-22 22:36:21.747306 41017 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1gZxaoYszFEUhaeQ5GkY\n- 8xPRzxwEHs3pH1MAQ4sZ\n 3769 \N 200.68.181.98 837c244b-c23f-4146-bc7a-c704343f16d6 2020-09-22 22:36:21.765301 41018 3009 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1074\namount: !ruby/object:BigDecimal 18:0.93003E3\ntax: !ruby/object:BigDecimal 18:0.6896E2\ndiscount: !ruby/object:BigDecimal 18:0.499E3\ntotal: !ruby/object:BigDecimal 18:0.49999E3\nstatus: 0\ndate_sale: 2020-09-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1437\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 163711c5-d406-4b16-9c76-94e58fe6b421 2020-09-22 22:53:50.549563 41019 570 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.40.40 163711c5-d406-4b16-9c76-94e58fe6b421 2020-09-22 22:53:50.586669 41020 3009 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 215d1b9a-6e90-4957-a7ef-dc328819579d 2020-09-22 22:53:57.505708 41021 4013 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1074\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49999E3\nmove_type: '1'\nsale_id: 3009\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1437\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1437 189.186.40.40 215d1b9a-6e90-4957-a7ef-dc328819579d 2020-09-22 22:53:57.526679 41022 3010 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1073\namount: !ruby/object:BigDecimal 18:0.459E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.459E3\nstatus: 0\ndate_sale: 2020-09-22\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-653\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 ac84aa57-5639-4849-946c-f3474effd16a 2020-09-22 23:13:46.040158 41023 1347 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.86.233 ac84aa57-5639-4849-946c-f3474effd16a 2020-09-22 23:13:46.08005 41024 1481 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 189.186.86.233 ac84aa57-5639-4849-946c-f3474effd16a 2020-09-22 23:13:46.11718 41025 3010 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 c4ff64a8-effc-47a5-9377-d30a37c69d78 2020-09-22 23:14:30.717262 41026 4014 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1073\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.459E3\nmove_type: '1'\nsale_id: 3010\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-653\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.41E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-653 189.186.86.233 c4ff64a8-effc-47a5-9377-d30a37c69d78 2020-09-22 23:14:30.743018 41027 3011 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1073\namount: !ruby/object:BigDecimal 18:0.11E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.11E3\nstatus: 0\ndate_sale: 2020-09-22\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-654\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 65129195-012e-4cad-a4fa-8d546e6527c5 2020-09-22 23:27:44.602307 41028 2161 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.86.233 65129195-012e-4cad-a4fa-8d546e6527c5 2020-09-22 23:27:44.630719 41029 3011 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 00e570ee-cf06-42ec-8151-2a9ca73ea2f8 2020-09-22 23:28:02.288161 41030 4015 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1073\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.11E3\nmove_type: '1'\nsale_id: 3011\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-654\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-654 189.186.86.233 00e570ee-cf06-42ec-8151-2a9ca73ea2f8 2020-09-22 23:28:02.311882 41031 3012 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1074\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.499E3\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2020-09-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1438\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.40.40 ebaf2a12-a105-4d3b-96dc-a9498ed13959 2020-09-22 23:38:10.947847 41032 644 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.40.40 ebaf2a12-a105-4d3b-96dc-a9498ed13959 2020-09-22 23:38:10.986097 41033 3012 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.40.40 603d2ddb-cab5-40db-8579-6e2d0726b5fb 2020-09-22 23:38:15.135819 41034 4016 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1074\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 3012\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1438\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1438 189.186.40.40 603d2ddb-cab5-40db-8579-6e2d0726b5fb 2020-09-22 23:38:15.167546 41035 1098 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1074\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.315799E4\namount_out: !ruby/object:BigDecimal 18:0.2E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.21E4\ncash_fund: !ruby/object:BigDecimal 18:0.882E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2982E4\nobservations: SE LLEVO SAM $1500 QUEDO EN SOBRE $600\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.40.40 d9598466-feaf-4eb1-a7b2-3bf0fd181774 2020-09-23 00:06:15.566079 41037 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-09-09 22:26:38.945009000 Z\n- &1 2020-09-18 19:05:53.327275000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-23 00:48:31.596095682 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109503\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 94\n- 95\n 190 \N 189.186.86.233 a323a457-b7fd-4321-bffd-39c9b47599f3 2020-09-23 00:48:31.60474 41038 25 User \N \N 25 User \N update ---\nunique_session_id:\n- "-JqxuTxxwDXzAU1-byzv"\n- "-wcWgTKh1wg8Jt5fQAv8"\n 191 \N 189.186.86.233 a323a457-b7fd-4321-bffd-39c9b47599f3 2020-09-23 00:48:31.623725 41039 1075 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.882E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 882.0 189.186.86.233 33ba1d6e-31dd-49df-a0d9-5a3347c3b64a 2020-09-23 00:49:19.253764 41040 3013 Sale \N \N 25 User \N create ---\ncustomer_id: 1\nuser_id: 25\nopen_cash_register_id: 1075\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-09-22\nsaletype: 1\nseller_id: 27\nsale_code: PV1-V-1439\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 87364da1-163e-4abe-bae2-076a57495139 2020-09-23 00:49:43.837449 41041 2059 AvailableProduct \N \N 25 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.86.233 87364da1-163e-4abe-bae2-076a57495139 2020-09-23 00:49:43.884636 41042 3013 Sale \N \N 25 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 66ce8357-6986-4ab3-bc5e-81eb182c2668 2020-09-23 00:49:55.33856 41043 4017 CashRegistersMove \N \N 25 User \N create ---\nopen_cash_register_id: 1075\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3013\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1439\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DOM\n 1 movimiento de efectivo por venta con folio PV1-V-1439 189.186.86.233 66ce8357-6986-4ab3-bc5e-81eb182c2668 2020-09-23 00:49:55.362463 41044 3014 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1073\namount: !ruby/object:BigDecimal 18:0.139E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.139E3\nstatus: 0\ndate_sale: 2020-09-22\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-655\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 5b9664d8-e25d-4a4b-b6ce-20c21364aa0d 2020-09-23 00:54:46.206803 41045 2106 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.86.233 5b9664d8-e25d-4a4b-b6ce-20c21364aa0d 2020-09-23 00:54:46.243554 41046 3014 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 df5b0251-afe4-4acf-8a29-7438c0d36f38 2020-09-23 00:54:51.964173 41047 4018 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1073\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.139E3\nmove_type: '1'\nsale_id: 3014\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-655\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-655 189.186.86.233 df5b0251-afe4-4acf-8a29-7438c0d36f38 2020-09-23 00:54:51.984429 41048 336 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 1073\nquantity: !ruby/object:BigDecimal 18:0.15E3\nstatus: 1\nobservations: "130 PAGO DE IMPUESTOS\\r\\n20 COMPRA DE PAPEL DE BAÑO"\nexpense_date: 2020-09-22\nexpense_code: PV3-E-42\n 1 Egreso por 150.0 registrado 189.186.86.233 2bd0ea4e-391d-497d-89f4-749abf78e8b0 2020-09-23 01:00:36.228649 41049 4019 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1073\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 336\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.86.233 2bd0ea4e-391d-497d-89f4-749abf78e8b0 2020-09-23 01:00:36.273211 41050 3015 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1073\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-22\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-656\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 ee001327-488b-40d8-ab29-052cedefca94 2020-09-23 01:01:03.676696 41051 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 38 \N 189.186.86.233 ee001327-488b-40d8-ab29-052cedefca94 2020-09-23 01:01:03.705496 41052 3015 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 dea27211-10cc-472a-b59e-9342ee5aa7a3 2020-09-23 01:01:09.133954 41053 4020 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1073\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 3015\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-656\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-656 189.186.86.233 dea27211-10cc-472a-b59e-9342ee5aa7a3 2020-09-23 01:01:09.154433 41054 1099 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1073\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.4005E4\namount_out: !ruby/object:BigDecimal 18:0.15E3\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.24E4\ncash_fund: !ruby/object:BigDecimal 18:0.987E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3387E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.86.233 1c3535e7-a0f5-48a8-b9c4-cb54b5532395 2020-09-23 01:07:45.999073 41055 1073 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.86.233 1c3535e7-a0f5-48a8-b9c4-cb54b5532395 2020-09-23 01:07:46.031173 41056 1100 CashOut \N \N 25 User \N create ---\nopen_cash_register_id: 1075\nuser_id: 25\namount_in: !ruby/object:BigDecimal 18:0.1799E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 25\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.882E3\nphysical_cash: !ruby/object:BigDecimal 18:0.882E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.86.233 42721ce0-ce0a-44f6-bce3-1418401de556 2020-09-23 01:08:56.542494 41057 1075 OpenCashRegister \N \N 25 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.86.233 42721ce0-ce0a-44f6-bce3-1418401de556 2020-09-23 01:08:56.559281 41328 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-24 21:47:55.046988000 Z\n- &1 2020-09-24 23:11:25.082162000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-25 20:25:15.936309036 Z\nsign_in_count:\n- 242\n- 243\n 486 \N 187.149.42.195 eb78fd6e-af0c-4ab4-97e4-35bb21093ec8 2020-09-25 20:25:15.941917 41058 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-22 21:12:51.555564000 Z\n- &1 2020-09-22 22:36:21.740349000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-23 04:14:25.910144619 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946082\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946082\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534100\n mask_addr: 4294967295\nsign_in_count:\n- 1884\n- 1885\n 3770 \N 177.228.96.84 b423eed9-0b94-4b8d-8245-b9c961ca20eb 2020-09-23 04:14:25.918966 41059 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8xPRzxwEHs3pH1MAQ4sZ\n- Nf2g6YJ392bHp8rpFfoi\n 3771 \N 177.228.96.84 b423eed9-0b94-4b8d-8245-b9c961ca20eb 2020-09-23 04:14:25.939505 41060 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-22 18:27:31.468680000 Z\n- &1 2020-09-22 21:22:48.377364000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-23 17:23:21.063808583 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\nsign_in_count:\n- 648\n- 649\n 1301 \N 187.149.42.195 da351280-8f0d-48a4-a780-9f4cd1e422dd 2020-09-23 17:23:21.093829 41061 2 User \N \N 2 User \N update ---\nunique_session_id:\n- SxMjSaoz4s7FpmtpqB8g\n- T9PC13bqPZXToAxkHxsB\n 1302 \N 187.149.42.195 da351280-8f0d-48a4-a780-9f4cd1e422dd 2020-09-23 17:23:21.117663 41062 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-22 22:36:21.740349000 Z\n- &1 2020-09-23 04:14:25.910144000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-23 18:54:24.908038425 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946082\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534100\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534100\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 1885\n- 1886\n 3772 \N 189.186.86.233 2116d707-8c12-409a-9d64-de867042218d 2020-09-23 18:54:24.915961 41063 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Nf2g6YJ392bHp8rpFfoi\n- "-2dYbQ8cBaxzaMAr5Ruw"\n 3773 \N 189.186.86.233 2116d707-8c12-409a-9d64-de867042218d 2020-09-23 18:54:24.938265 41064 1076 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.882E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 882.0 187.149.42.195 775cf1f9-9713-4dcf-9782-ce9e09010fe9 2020-09-23 19:02:52.188569 41065 3016 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1076\namount: !ruby/object:BigDecimal 18:0.1898E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.1549E4\nstatus: 0\ndate_sale: 2020-09-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1440\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 5ce59200-528e-4f95-a4cf-e5a68e747ea9 2020-09-23 19:04:09.700633 41066 1848 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.42.195 5ce59200-528e-4f95-a4cf-e5a68e747ea9 2020-09-23 19:04:09.760703 41067 645 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.42.195 5ce59200-528e-4f95-a4cf-e5a68e747ea9 2020-09-23 19:04:09.79975 41068 3016 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 c2c614d8-bb8e-4aad-9f69-39d81b9f0f1d 2020-09-23 19:04:34.329039 41069 4021 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1076\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1049E4\nmove_type: '1'\nsale_id: 3016\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1440\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEVOLUCION DE VESTIDO\n 1 movimiento de efectivo por venta con folio PV1-V-1440 187.149.42.195 c2c614d8-bb8e-4aad-9f69-39d81b9f0f1d 2020-09-23 19:04:34.354562 41070 4022 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1076\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 3016\ncardnumber: 4696\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1440\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEVOLUCION DE VESTIDO\n 1 movimiento de efectivo por venta con folio PV1-V-1440 187.149.42.195 3fae9c47-3340-4d89-b50d-4ca8d0ee91f7 2020-09-23 19:06:06.16893 41071 3017 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1076\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-23\nsaletype: 1\nseller_id: 3\nsale_code: PV1-V-1441\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 f32a832f-5c37-4e58-b25f-76f05b98636b 2020-09-23 20:09:29.827164 41072 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 16 \N 187.149.42.195 f32a832f-5c37-4e58-b25f-76f05b98636b 2020-09-23 20:09:29.858065 41073 3017 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 6dab434f-26fd-43b4-88ea-a95a34b25307 2020-09-23 20:09:38.773964 41074 4023 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1076\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3017\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1441\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1441 187.149.42.195 6dab434f-26fd-43b4-88ea-a95a34b25307 2020-09-23 20:09:38.798013 41075 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-22 19:48:35.281763000 Z\n- &1 2020-09-22 19:58:32.015457000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-23 20:15:02.646324771 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 177\n- 178\n 356 \N 189.186.86.233 4b113a41-cb8e-4d1f-83b5-73412a9ad652 2020-09-23 20:15:02.65331 41076 9 User \N \N 9 User \N update ---\nunique_session_id:\n- oSG7dM5xuPSX-dB6bdNn\n- YkeygPqANbocxJXkbTwX\n 357 \N 189.186.86.233 4b113a41-cb8e-4d1f-83b5-73412a9ad652 2020-09-23 20:15:02.668744 41077 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-23 04:14:25.910144000 Z\n- &1 2020-09-23 18:54:24.908038000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-23 20:18:46.652562898 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534100\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 1886\n- 1887\n 3774 \N 189.186.86.233 2deabe2a-c394-490c-9858-a94919cd6ad1 2020-09-23 20:18:46.65989 41078 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-2dYbQ8cBaxzaMAr5Ruw"\n- byVvz1G-ndfSzDQmTrfs\n 3775 \N 189.186.86.233 2deabe2a-c394-490c-9858-a94919cd6ad1 2020-09-23 20:18:46.680402 41079 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-16 00:59:25.554788000 Z\n- &1 2020-09-19 00:23:54.582022000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-23 20:35:57.511367910 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 224\n- 225\n 451 \N 189.186.86.233 391b1f16-e735-43b8-8da7-8eebf1023df9 2020-09-23 20:35:57.524771 41080 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 33tVdERXy3tTrDaaK_7z\n- 6xYTtxr-9z-8w_ptZxNM\n 452 \N 189.186.86.233 391b1f16-e735-43b8-8da7-8eebf1023df9 2020-09-23 20:35:57.551228 41081 1077 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.987E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 987.0 189.186.86.233 dee9b576-b9f5-4f91-aefe-ea984e99936a 2020-09-23 20:36:06.68498 41082 3018 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1077\namount: !ruby/object:BigDecimal 18:0.8448E2\ntax: !ruby/object:BigDecimal 18:0.1352E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.98E2\nstatus: 0\ndate_sale: 2020-09-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-657\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 dcd82d50-08cd-4a3c-a830-caaeaa50e765 2020-09-23 20:36:17.789913 41083 818 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.47E2\n- !ruby/object:BigDecimal 18:0.45E2\n 26 \N 189.186.86.233 dcd82d50-08cd-4a3c-a830-caaeaa50e765 2020-09-23 20:36:17.816658 41084 3018 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 527e62f6-5f11-4ae8-bac1-502f5ea2f3b2 2020-09-23 20:36:22.551044 41085 4024 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1077\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.98E2\nmove_type: '1'\nsale_id: 3018\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-657\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.98E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-657 189.186.86.233 527e62f6-5f11-4ae8-bac1-502f5ea2f3b2 2020-09-23 20:36:22.57132 41086 3019 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1076\namount: !ruby/object:BigDecimal 18:0.57124E3\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.578E3\nstatus: 0\ndate_sale: 2020-09-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1442\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 4060af59-d8d2-488c-b9a0-1a37e2c4d013 2020-09-23 21:23:59.938661 41087 2263 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.42.195 4060af59-d8d2-488c-b9a0-1a37e2c4d013 2020-09-23 21:23:59.970239 41088 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.46E2\n- !ruby/object:BigDecimal 18:0.45E2\n 16 \N 187.149.42.195 4060af59-d8d2-488c-b9a0-1a37e2c4d013 2020-09-23 21:23:59.997157 41089 3019 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 111b4a1b-cd21-4553-a8b6-2b921768f7e1 2020-09-23 21:24:23.487284 41090 4025 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1076\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.578E3\nmove_type: '1'\nsale_id: 3019\ncardnumber: 7355\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1442\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1442 187.149.42.195 111b4a1b-cd21-4553-a8b6-2b921768f7e1 2020-09-23 21:24:23.508992 41091 394 Customer \N \N 2 User \N create ---\nnick_name: MINERVA GAYTAN\nphone: "(667) 126-3941"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MINERVA GAYTAN fue registrado. 187.149.42.195 89095fea-4ba7-4a74-ae69-b236c67e4054 2020-09-23 21:27:09.090694 41092 3020 Sale \N \N 2 User \N create ---\ncustomer_id: 394\nuser_id: 2\nopen_cash_register_id: 1076\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2020-09-23\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1443\nexpiration_date: 2020-10-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 42816082-1d57-4ca0-81f7-98f63b03ac13 2020-09-23 21:27:27.225004 41093 2230 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.42.195 42816082-1d57-4ca0-81f7-98f63b03ac13 2020-09-23 21:27:27.262713 41094 4026 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1076\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 3020\ncardnumber: 7355\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1443\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1443 187.149.42.195 0ec46619-fdac-4337-8c2a-801b97a11ee8 2020-09-23 21:27:40.319419 41095 3020 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.195 82366b09-a9f0-44b6-9e4c-8cb0978b2793 2020-09-23 21:27:42.220675 41096 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-23 18:54:24.908038000 Z\n- &1 2020-09-23 20:18:46.652562000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-23 21:47:24.480094851 Z\nsign_in_count:\n- 1887\n- 1888\n 3776 \N 189.186.86.233 5ef2c4c3-b8a9-4521-91e0-7c8c2063c56d 2020-09-23 21:47:24.486299 41097 4 User \N \N 4 User \N update ---\nunique_session_id:\n- byVvz1G-ndfSzDQmTrfs\n- MoDzyzNxxEqSe4uAaByV\n 3777 \N 189.186.86.233 5ef2c4c3-b8a9-4521-91e0-7c8c2063c56d 2020-09-23 21:47:24.503919 41098 3021 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1076\namount: !ruby/object:BigDecimal 18:0.1228E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1228E4\nstatus: 0\ndate_sale: 2020-09-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1444\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 94cff421-d80e-4e77-b004-aeb71a9f440a 2020-09-23 22:05:31.41705 41099 2261 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.42.195 94cff421-d80e-4e77-b004-aeb71a9f440a 2020-09-23 22:05:31.446502 41100 2149 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.42.195 94cff421-d80e-4e77-b004-aeb71a9f440a 2020-09-23 22:05:31.471162 41101 3021 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 c8c5e7e5-7d57-43ff-ab08-e9cbbaa899ea 2020-09-23 22:06:12.536253 41102 4027 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1076\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1228E4\nmove_type: '1'\nsale_id: 3021\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1444\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1228E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1444 187.149.42.195 c8c5e7e5-7d57-43ff-ab08-e9cbbaa899ea 2020-09-23 22:06:12.558447 41103 3022 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1076\namount: !ruby/object:BigDecimal 18:0.369E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.369E3\nstatus: 0\ndate_sale: 2020-09-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1445\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 793093d1-12f6-4eb0-9ed2-19b41fbae4fe 2020-09-23 22:17:23.810445 41104 2239 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.42.195 793093d1-12f6-4eb0-9ed2-19b41fbae4fe 2020-09-23 22:17:23.838954 41105 3022 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 ec09143e-69f8-436e-9138-a18b59cc5128 2020-09-23 22:17:37.454917 41106 4028 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1076\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.369E3\nmove_type: '1'\nsale_id: 3022\ncardnumber: 3139\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1445\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1445 187.149.42.195 ec09143e-69f8-436e-9138-a18b59cc5128 2020-09-23 22:17:37.477077 41107 337 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1076\nquantity: !ruby/object:BigDecimal 18:0.65E3\nstatus: 1\nobservations: MANTENIMIENTO Y GAS DE AIRE ACONDICIONADO BOUTIQUE\nexpense_date: 2020-09-23\nexpense_code: PV1-E-233\n 1 Egreso por 650.0 registrado 187.149.42.195 a3d29591-55af-4fc0-864c-ee613e2eb824 2020-09-23 22:20:39.237026 41108 4029 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1076\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.65E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 337\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.42.195 a3d29591-55af-4fc0-864c-ee613e2eb824 2020-09-23 22:20:39.263667 41109 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-22 19:58:32.015457000 Z\n- &1 2020-09-23 20:15:02.646324000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-23 22:47:32.082274280 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 178\n- 179\n 358 \N 189.186.86.233 f8f98495-8391-42a7-b72c-919aae63bcc3 2020-09-23 22:47:32.097993 41110 9 User \N \N 9 User \N update ---\nunique_session_id:\n- YkeygPqANbocxJXkbTwX\n- 56YasvaAbKAzi8qn4o7a\n 359 \N 189.186.86.233 f8f98495-8391-42a7-b72c-919aae63bcc3 2020-09-23 22:47:32.113741 41111 684 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-23\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.86.233 613e2d7b-4f25-4795-8044-5f0b765a4641 2020-09-23 22:47:44.778784 41112 39 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.86.233 613e2d7b-4f25-4795-8044-5f0b765a4641 2020-09-23 22:47:44.801222 41113 685 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-23\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.86.233 0f34877e-2381-48f1-9ac7-3e074bdbb196 2020-09-23 22:47:53.009174 41114 762 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.86.233 0f34877e-2381-48f1-9ac7-3e074bdbb196 2020-09-23 22:47:53.026659 41115 2323 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.86.233 80c4cbaf-564f-4054-9590-67f6ac72cd1d 2020-09-23 22:48:24.136821 41116 687 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-09-23\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.86.233 11669e14-d4f2-42e9-b350-a2aeed05d141 2020-09-23 22:48:26.039948 41117 686 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-23\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.86.233 aa56b95f-1be0-4ee7-bf81-40af3c2855d7 2020-09-23 22:48:35.348153 41118 2249 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.86.233 aa56b95f-1be0-4ee7-bf81-40af3c2855d7 2020-09-23 22:48:35.366908 41119 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-19 00:23:54.582022000 Z\n- &1 2020-09-23 20:35:57.511367000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-23 22:49:02.809241861 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 225\n- 226\n 453 \N 189.186.86.233 4d636b07-f3e2-4ef9-b618-920a1ea7b5af 2020-09-23 22:49:02.816226 41120 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 6xYTtxr-9z-8w_ptZxNM\n- hR7_1d93ehGwJ9Pk9osc\n 454 \N 189.186.86.233 4d636b07-f3e2-4ef9-b618-920a1ea7b5af 2020-09-23 22:49:02.833133 41121 687 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-23\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.86.233 3b92a0ee-4edc-49a9-b643-70def4894fc7 2020-09-23 22:49:22.472525 41122 946 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.86.233 3b92a0ee-4edc-49a9-b643-70def4894fc7 2020-09-23 22:49:22.495558 41123 3023 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1077\namount: !ruby/object:BigDecimal 18:0.73003E3\ntax: !ruby/object:BigDecimal 18:0.6896E2\ndiscount: !ruby/object:BigDecimal 18:0.299E3\ntotal: !ruby/object:BigDecimal 18:0.49999E3\nstatus: 0\ndate_sale: 2020-09-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-658\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 4fac1b57-54a3-4412-a643-8b29e8570235 2020-09-23 22:50:26.831194 41124 946 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.86.233 4fac1b57-54a3-4412-a643-8b29e8570235 2020-09-23 22:50:26.861299 41125 3023 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 e77d1f67-e9ad-4358-bb9e-77ff42723821 2020-09-23 22:50:36.682246 41329 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 7MjfEszA7DEXnf352krA\n- LByyJxYrxHmLbzyZS4WR\n 487 \N 187.149.42.195 eb78fd6e-af0c-4ab4-97e4-35bb21093ec8 2020-09-25 20:25:15.956245 41126 4030 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1077\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49999E3\nmove_type: '1'\nsale_id: 3023\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-658\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E-1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-658 189.186.86.233 e77d1f67-e9ad-4358-bb9e-77ff42723821 2020-09-23 22:50:36.705639 41127 3024 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1076\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1446\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 478fd5a1-eb7b-45b2-a943-f6c8d706b229 2020-09-23 22:50:55.788839 41128 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 17 \N 187.149.42.195 478fd5a1-eb7b-45b2-a943-f6c8d706b229 2020-09-23 22:50:55.822544 41129 3024 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 597b00fd-54b9-4546-bece-2260c4707f34 2020-09-23 22:51:05.763648 41130 4031 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1076\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3024\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1446\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1446 187.149.42.195 597b00fd-54b9-4546-bece-2260c4707f34 2020-09-23 22:51:05.803396 41131 3025 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1077\namount: !ruby/object:BigDecimal 18:0.1049E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1049E4\nstatus: 0\ndate_sale: 2020-09-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-659\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 1d857cf2-cb23-4d99-8215-1222431d4356 2020-09-23 23:13:34.04106 41132 2283 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.86.233 1d857cf2-cb23-4d99-8215-1222431d4356 2020-09-23 23:13:34.071653 41133 3025 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 b409dbe1-db0c-4e42-89b7-90580a82545e 2020-09-23 23:13:40.778484 41134 4032 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1077\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1049E4\nmove_type: '1'\nsale_id: 3025\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-659\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.105E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-659 189.186.86.233 b409dbe1-db0c-4e42-89b7-90580a82545e 2020-09-23 23:13:40.799374 41135 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-23 20:18:46.652562000 Z\n- &1 2020-09-23 21:47:24.480094000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-23 23:28:14.114848110 Z\nsign_in_count:\n- 1888\n- 1889\n 3778 \N 189.186.86.233 d2e90ea2-ec3a-4cc5-95b5-3fa97fcb1abe 2020-09-23 23:28:14.13532 41136 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MoDzyzNxxEqSe4uAaByV\n- q1sE5omR52MKrihUN-W9\n 3779 \N 189.186.86.233 d2e90ea2-ec3a-4cc5-95b5-3fa97fcb1abe 2020-09-23 23:28:14.157996 41137 3026 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1076\namount: !ruby/object:BigDecimal 18:0.689E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.689E3\nstatus: 0\ndate_sale: 2020-09-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1447\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 a0750371-4621-4ed0-9c09-2b61f042ed57 2020-09-23 23:33:37.815912 41138 2259 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.42.195 a0750371-4621-4ed0-9c09-2b61f042ed57 2020-09-23 23:33:37.853219 41139 3026 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 5bf57f7f-0a90-4e60-825a-3c9c69640c5d 2020-09-23 23:36:42.878195 41140 4033 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1076\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.689E3\nmove_type: '1'\nsale_id: 3026\ncardnumber: 8559\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1447\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1447 187.149.42.195 5bf57f7f-0a90-4e60-825a-3c9c69640c5d 2020-09-23 23:36:42.905077 41141 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-23 20:35:57.511367000 Z\n- &1 2020-09-23 22:49:02.809241000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-23 23:41:54.999772307 Z\nsign_in_count:\n- 226\n- 227\n 455 \N 189.186.86.233 8410e956-2eaf-4b79-91b8-0900e1c173b6 2020-09-23 23:41:55.009196 41142 18 User \N \N 18 User \N update ---\nunique_session_id:\n- hR7_1d93ehGwJ9Pk9osc\n- C-6HsKCrvDZLSfmMumVz\n 456 \N 189.186.86.233 8410e956-2eaf-4b79-91b8-0900e1c173b6 2020-09-23 23:41:55.039531 41143 3027 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1077\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-09-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-660\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 7a856029-2281-4f30-a0b1-36764776abde 2020-09-23 23:46:17.332786 41144 1832 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 16 \N 189.186.86.233 7a856029-2281-4f30-a0b1-36764776abde 2020-09-23 23:46:17.362119 41145 3027 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 35ccc85a-54b9-4404-91bf-cfaeb000dea2 2020-09-23 23:46:24.520231 41146 4034 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1077\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 3027\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-660\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.401E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-660 189.186.86.233 35ccc85a-54b9-4404-91bf-cfaeb000dea2 2020-09-23 23:46:24.552076 41282 688 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-09-24\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.42.195 783ec070-3333-4a4b-aca8-2fdd69b70d9d 2020-09-25 00:45:09.516574 41147 3028 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1077\namount: !ruby/object:BigDecimal 18:0.369E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.369E3\nstatus: 0\ndate_sale: 2020-09-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-661\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 1689176b-9870-4961-a6a7-648ab9c4d60f 2020-09-23 23:49:22.615568 41148 2267 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.86.233 1689176b-9870-4961-a6a7-648ab9c4d60f 2020-09-23 23:49:22.643309 41149 3028 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 836d57d2-e25d-47ea-86b8-3bcd8f4bd606 2020-09-23 23:49:54.010318 41150 4035 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1077\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.369E3\nmove_type: '1'\nsale_id: 3028\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-661\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.131E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-661 189.186.86.233 836d57d2-e25d-47ea-86b8-3bcd8f4bd606 2020-09-23 23:49:54.035712 41151 3029 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1077\namount: !ruby/object:BigDecimal 18:0.738E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.119E3\ntotal: !ruby/object:BigDecimal 18:0.619E3\nstatus: 0\ndate_sale: 2020-09-23\nsaletype: 1\nseller_id: 23\nsale_code: PV3-V-662\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 d97f4610-7ebb-4601-b221-b078d7abccd6 2020-09-23 23:51:24.737691 41152 2267 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.86.233 d97f4610-7ebb-4601-b221-b078d7abccd6 2020-09-23 23:51:24.764818 41153 3029 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 094f9841-a5a3-4c6f-be56-5f6c9028a91a 2020-09-23 23:52:19.315982 41154 4036 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1077\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.619E3\nmove_type: '1'\nsale_id: 3029\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-662\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.81E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-662 189.186.86.233 094f9841-a5a3-4c6f-be56-5f6c9028a91a 2020-09-23 23:52:19.337704 41155 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-23 21:47:24.480094000 Z\n- &1 2020-09-23 23:28:14.114848000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-23 23:59:00.676514667 Z\nsign_in_count:\n- 1889\n- 1890\n 3780 \N 189.186.86.233 4756b36b-8c09-4e0d-ab64-aa2012ad0d5a 2020-09-23 23:59:00.683144 41156 4 User \N \N 4 User \N update ---\nunique_session_id:\n- q1sE5omR52MKrihUN-W9\n- eDPqyHYCqBTcapddWqDV\n 3781 \N 189.186.86.233 4756b36b-8c09-4e0d-ab64-aa2012ad0d5a 2020-09-23 23:59:00.700316 41157 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-23 22:49:02.809241000 Z\n- &1 2020-09-23 23:41:54.999772000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-24 00:08:44.087202429 Z\nsign_in_count:\n- 227\n- 228\n 457 \N 189.186.86.233 ec473d95-d30c-4166-8824-f9790ac0927d 2020-09-24 00:08:44.093248 41158 18 User \N \N 18 User \N update ---\nunique_session_id:\n- C-6HsKCrvDZLSfmMumVz\n- qiF8URjnxcxWsK7XVkye\n 458 \N 189.186.86.233 ec473d95-d30c-4166-8824-f9790ac0927d 2020-09-24 00:08:44.108111 41159 3030 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1077\namount: !ruby/object:BigDecimal 18:0.2457E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2457E4\nstatus: 0\ndate_sale: 2020-09-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-663\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 74a39e63-3b05-4294-8a1b-c3c80bad7284 2020-09-24 00:13:14.184131 41160 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 68 \N 189.186.86.233 74a39e63-3b05-4294-8a1b-c3c80bad7284 2020-09-24 00:13:14.215637 41161 2281 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.86.233 74a39e63-3b05-4294-8a1b-c3c80bad7284 2020-09-24 00:13:14.249532 41162 2267 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.86.233 74a39e63-3b05-4294-8a1b-c3c80bad7284 2020-09-24 00:13:14.280469 41163 3030 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.86.233 b48cd949-9c14-4728-800f-7ff8c4dc1373 2020-09-24 00:13:18.756577 41164 4037 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1077\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2457E4\nmove_type: '1'\nsale_id: 3030\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-663\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2457E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-663 189.186.86.233 b48cd949-9c14-4728-800f-7ff8c4dc1373 2020-09-24 00:13:18.777953 41165 3031 Sale \N \N 18 User \N create ---\ncustomer_id: 379\nuser_id: 18\nopen_cash_register_id: 1077\namount: !ruby/object:BigDecimal 18:0.169E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.169E3\nstatus: 0\ndate_sale: 2020-09-23\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-664\nexpiration_date: 2020-10-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 c9317cd5-2577-4699-b67c-a8ba8b945a0e 2020-09-24 00:17:52.357267 41166 2108 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 c9317cd5-2577-4699-b67c-a8ba8b945a0e 2020-09-24 00:17:52.389014 41167 3031 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-664 cancelada. 189.186.86.233 1c15e82c-5ec6-44d9-ae70-e06d40c4b2f5 2020-09-24 00:17:59.296645 41168 2108 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.86.233 1c15e82c-5ec6-44d9-ae70-e06d40c4b2f5 2020-09-24 00:17:59.322131 41169 3032 Sale \N \N 18 User \N create ---\ncustomer_id: 378\nuser_id: 18\nopen_cash_register_id: 1077\namount: !ruby/object:BigDecimal 18:0.169E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.169E3\nstatus: 0\ndate_sale: 2020-09-23\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-665\nexpiration_date: 2020-10-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 c0c06a2b-52f0-48e3-838d-d6412239c831 2020-09-24 00:18:41.369784 41170 2108 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.86.233 c0c06a2b-52f0-48e3-838d-d6412239c831 2020-09-24 00:18:41.398225 41171 4038 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1077\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 3032\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-665\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-665 189.186.86.233 99055dc4-5da8-4167-80d4-3e9382f503b0 2020-09-24 00:18:47.857799 41172 4039 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1077\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.17E2\nmove_type: '1'\nsale_id: 3032\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-665\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.17E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-665 189.186.86.233 a2d025b3-e151-4499-8515-bb6ccbbebe77 2020-09-24 00:19:06.186834 41173 4038 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1077\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 3032\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-665\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.86.233 ef9ae21d-0435-4335-a40c-bda0e37359df 2020-09-24 00:19:08.115766 41174 4039 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1077\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.17E2\nmove_type: '1'\nsale_id: 3032\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-665\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.17E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.86.233 73b2a3aa-7cf2-4115-9265-19f9ad2a9182 2020-09-24 00:19:09.288858 41175 4040 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1077\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.17E2\nmove_type: '1'\nsale_id: 3032\ncardnumber: 1225\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-665\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-665 189.186.86.233 3f05ef9a-6510-4654-b6fb-01e001b74285 2020-09-24 00:19:20.541853 41176 3032 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.86.233 47a84b62-62f9-4f4d-9f6a-3fa0a0c7dd79 2020-09-24 00:19:22.29546 41177 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-23 23:28:14.114848000 Z\n- &1 2020-09-23 23:59:00.676514000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-24 00:22:18.930334735 Z\nsign_in_count:\n- 1890\n- 1891\n 3782 \N 189.186.86.233 b540b889-14df-4845-8142-34143c5bc137 2020-09-24 00:22:18.936637 41178 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eDPqyHYCqBTcapddWqDV\n- CFJ7v22iyBETKmQzEsq6\n 3783 \N 189.186.86.233 b540b889-14df-4845-8142-34143c5bc137 2020-09-24 00:22:18.953198 41179 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-23 23:41:54.999772000 Z\n- &1 2020-09-24 00:08:44.087202000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-24 00:23:36.883660636 Z\nsign_in_count:\n- 228\n- 229\n 459 \N 189.186.86.233 265c079c-e81c-40dd-908f-b792c517ad98 2020-09-24 00:23:36.891911 41180 18 User \N \N 18 User \N update ---\nunique_session_id:\n- qiF8URjnxcxWsK7XVkye\n- weUakxRz_qX3hFUCM6wp\n 460 \N 189.186.86.233 265c079c-e81c-40dd-908f-b792c517ad98 2020-09-24 00:23:36.908801 41181 3033 Sale \N \N 18 User \N create ---\ncustomer_id: 379\nuser_id: 18\nopen_cash_register_id: 1077\namount: !ruby/object:BigDecimal 18:0.1098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1098E4\nstatus: 0\ndate_sale: 2020-09-23\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-666\nexpiration_date: 2020-10-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 0755131b-6f8a-4cb1-be7c-8bbc0576d8d0 2020-09-24 00:24:44.545624 41182 1528 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 18 \N 189.186.86.233 0755131b-6f8a-4cb1-be7c-8bbc0576d8d0 2020-09-24 00:24:44.589301 41183 834 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 22 \N 189.186.86.233 0755131b-6f8a-4cb1-be7c-8bbc0576d8d0 2020-09-24 00:24:44.616643 41184 4041 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1077\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.342E3\nmove_type: '1'\nsale_id: 3033\ncardnumber: 1255\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-666\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-666 189.186.86.233 b75f5cbe-7269-4689-a502-cbb91877ed47 2020-09-24 00:25:15.053094 41185 3033 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.86.233 952a22d3-41f7-48ce-8069-2b71cb33e95d 2020-09-24 00:25:16.639788 41186 1101 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1077\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.704999E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.69E4\ncash_fund: !ruby/object:BigDecimal 27:0.7779899999999998E3\nphysical_cash: !ruby/object:BigDecimal 18:0.767799E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.86.233 87914b87-3c77-45d9-b1e6-b20c1493261c 2020-09-24 00:43:10.707554 41187 1077 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.86.233 87914b87-3c77-45d9-b1e6-b20c1493261c 2020-09-24 00:43:10.724396 41188 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-23 20:15:02.646324000 Z\n- &1 2020-09-23 22:47:32.082274000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-24 00:45:53.282447422 Z\nsign_in_count:\n- 179\n- 180\n 360 \N 189.186.86.233 02c6aee0-e66e-4c10-b9e4-81f334978722 2020-09-24 00:45:53.288837 41189 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 56YasvaAbKAzi8qn4o7a\n- DDKdkZ3BLKBfB6N5EF6t\n 361 \N 189.186.86.233 02c6aee0-e66e-4c10-b9e4-81f334978722 2020-09-24 00:45:53.304125 41190 3016 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-1440 cancelada. 187.149.42.195 29ed4d44-084a-4419-aefb-298483140f60 2020-09-24 00:46:55.808939 41191 4021 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1076\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1049E4\nmove_type: '1'\nsale_id: 3016\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1440\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEVOLUCION DE VESTIDO\n 2 \N 187.149.42.195 29ed4d44-084a-4419-aefb-298483140f60 2020-09-24 00:46:55.838083 41305 1080 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1053E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1053.0 187.149.42.195 9e6f50fb-77cf-4662-b949-45f1b4639c53 2020-09-25 16:35:49.975914 41192 4022 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1076\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3016\ncardnumber: 4696\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1440\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DEVOLUCION DE VESTIDO\n 2 \N 187.149.42.195 29ed4d44-084a-4419-aefb-298483140f60 2020-09-24 00:46:55.866026 41193 645 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 187.149.42.195 29ed4d44-084a-4419-aefb-298483140f60 2020-09-24 00:46:55.899817 41194 1848 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.42.195 29ed4d44-084a-4419-aefb-298483140f60 2020-09-24 00:46:55.926578 41195 3034 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1076\namount: !ruby/object:BigDecimal 18:0.1898E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1398E4\ntotal: !ruby/object:BigDecimal 18:0.5E3\nstatus: 0\ndate_sale: 2020-09-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1448\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 ce2bb8b3-db84-4731-b6df-ca157ed0836c 2020-09-24 00:49:05.656922 41196 1848 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.42.195 ce2bb8b3-db84-4731-b6df-ca157ed0836c 2020-09-24 00:49:06.166652 41197 645 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 187.149.42.195 ce2bb8b3-db84-4731-b6df-ca157ed0836c 2020-09-24 00:49:06.345625 41198 3034 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 e3e99f32-f905-44a3-8172-25bb9fef6597 2020-09-24 00:49:28.814704 41199 4042 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1076\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 3034\ncardnumber: 4696\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1448\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1448 187.149.42.195 e3e99f32-f905-44a3-8172-25bb9fef6597 2020-09-24 00:49:28.845217 41200 1102 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1076\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5562E4\namount_out: !ruby/object:BigDecimal 18:0.65E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.958E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3458E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.195 9f7a0c49-75e7-4a13-ba77-1da65b3862e3 2020-09-24 00:53:19.189869 41201 1076 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.195 9f7a0c49-75e7-4a13-ba77-1da65b3862e3 2020-09-24 00:53:19.202745 41202 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-23 23:59:00.676514000 Z\n- &1 2020-09-24 00:22:18.930334000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-24 05:19:44.463976382 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534356\n mask_addr: 4294967295\nsign_in_count:\n- 1891\n- 1892\n 3784 \N 177.228.97.84 00f31ee7-41ce-4c47-bb78-12f20cf2d5db 2020-09-24 05:19:44.473786 41203 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CFJ7v22iyBETKmQzEsq6\n- i1_xu8t4UDSc3xeDzhX-\n 3785 \N 177.228.97.84 00f31ee7-41ce-4c47-bb78-12f20cf2d5db 2020-09-24 05:19:44.499862 41204 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-22 21:22:48.377364000 Z\n- &1 2020-09-23 17:23:21.063808000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-24 16:27:00.303112946 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\nsign_in_count:\n- 649\n- 650\n 1303 \N 187.149.42.195 d52460ba-e482-4472-a26d-eaf933c64c37 2020-09-24 16:27:00.333792 41205 2 User \N \N 2 User \N update ---\nunique_session_id:\n- T9PC13bqPZXToAxkHxsB\n- cRzcxvzp8ZNzLbvtrpEh\n 1304 \N 187.149.42.195 d52460ba-e482-4472-a26d-eaf933c64c37 2020-09-24 16:27:00.359155 41206 1078 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.958E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 958.0 187.149.42.195 9a65d5de-07f9-4cd3-a253-0f1eeebf7aa5 2020-09-24 16:51:22.794966 41207 3035 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1078\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-09-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1449\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 98760b4f-8579-4ab7-b55a-e32ccb741f13 2020-09-24 17:10:18.948783 41208 2222 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.42.195 98760b4f-8579-4ab7-b55a-e32ccb741f13 2020-09-24 17:10:18.996806 41209 3035 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 09b90c6d-9b89-4a47-a65a-2174497f082e 2020-09-24 17:10:28.690118 41210 4043 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1078\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3035\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1449\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1399E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1449 187.149.42.195 09b90c6d-9b89-4a47-a65a-2174497f082e 2020-09-24 17:10:28.71348 41211 3036 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1078\namount: !ruby/object:BigDecimal 18:0.8448E2\ntax: !ruby/object:BigDecimal 18:0.1352E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.98E2\nstatus: 0\ndate_sale: 2020-09-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1450\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 ca0110b6-5e56-419c-981d-1a3faa8d902a 2020-09-24 18:08:13.2901 41212 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.45E2\n- !ruby/object:BigDecimal 18:0.43E2\n 17 \N 187.149.42.195 ca0110b6-5e56-419c-981d-1a3faa8d902a 2020-09-24 18:08:13.326225 41213 3036 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 a8b02da2-5903-4b06-83ba-cfd6d9631b7f 2020-09-24 18:08:18.213398 41235 4048 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1079\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 3039\ncardnumber: 1255\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-669\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-669 189.186.86.233 142609b6-6a2b-481f-8fa4-56d26f81f405 2020-09-24 18:58:09.753233 41214 4044 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1078\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.98E2\nmove_type: '1'\nsale_id: 3036\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1450\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.98E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1450 187.149.42.195 a8b02da2-5903-4b06-83ba-cfd6d9631b7f 2020-09-24 18:08:18.235416 41215 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-24 00:08:44.087202000 Z\n- &1 2020-09-24 00:23:36.883660000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-24 18:22:14.950459256 Z\nsign_in_count:\n- 229\n- 230\n 461 \N 189.186.86.233 3a901831-7975-4218-8e27-1b06a9f0778a 2020-09-24 18:22:14.983966 41216 18 User \N \N 18 User \N update ---\nunique_session_id:\n- weUakxRz_qX3hFUCM6wp\n- b9F56DjMBNtmiRfcueQF\n 462 \N 189.186.86.233 3a901831-7975-4218-8e27-1b06a9f0778a 2020-09-24 18:22:15.007606 41217 1079 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.77799E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 777.99 189.186.86.233 ad4ee03b-20bf-4c9a-b080-6169d363b243 2020-09-24 18:22:29.291375 41218 395 Customer \N \N 18 User \N create ---\nnick_name: ALICIA ORONA\nphone: "(667) 466-7434"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ALICIA ORONA fue registrado. 189.186.86.233 a897383f-0dca-4dcf-a642-57996edf7bc3 2020-09-24 18:23:11.149808 41219 3037 Sale \N \N 18 User \N create ---\ncustomer_id: 395\nuser_id: 18\nopen_cash_register_id: 1079\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-09-24\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-667\nexpiration_date: 2020-10-29\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 ea5e6927-8d26-4f3c-b86d-d6908f57694c 2020-09-24 18:23:40.767873 41220 2227 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.86.233 ea5e6927-8d26-4f3c-b86d-d6908f57694c 2020-09-24 18:23:40.80132 41221 4045 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1079\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 3037\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-667\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-667 189.186.86.233 a906cc34-78f1-4620-b383-bb8686c1edb7 2020-09-24 18:23:51.27245 41222 3037 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.86.233 b070194c-92ca-44b1-8d5a-d6ae4e2bd6cb 2020-09-24 18:23:52.721375 41223 3038 Sale \N \N 18 User \N create ---\ncustomer_id: 395\nuser_id: 18\nopen_cash_register_id: 1079\namount: !ruby/object:BigDecimal 18:0.269E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.269E3\nstatus: 0\ndate_sale: 2020-09-24\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-668\nexpiration_date: 2020-10-29\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 e3a016f9-78d6-484e-b204-b7fd434b704d 2020-09-24 18:26:18.294374 41224 1746 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.86.233 e3a016f9-78d6-484e-b204-b7fd434b704d 2020-09-24 18:26:18.321668 41225 4046 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1079\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.27E2\nmove_type: '1'\nsale_id: 3038\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-668\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.27E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-668 189.186.86.233 7a45ef85-becc-40d3-8318-dd45f983866b 2020-09-24 18:26:36.385972 41226 3038 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.86.233 f923e131-3129-4376-ae02-065f27ac726f 2020-09-24 18:26:51.033935 41227 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-24 00:22:18.930334000 Z\n- &1 2020-09-24 05:19:44.463976000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-24 18:49:11.075071281 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534356\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534356\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 1892\n- 1893\n 3786 \N 189.186.86.233 8f2d5e10-5b68-4b39-8d7c-b9d53d4533a4 2020-09-24 18:49:11.083075 41228 4 User \N \N 4 User \N update ---\nunique_session_id:\n- i1_xu8t4UDSc3xeDzhX-\n- UPNWE7yzSxjzLS_MRYim\n 3787 \N 189.186.86.233 8f2d5e10-5b68-4b39-8d7c-b9d53d4533a4 2020-09-24 18:49:11.104488 41229 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-24 00:23:36.883660000 Z\n- &1 2020-09-24 18:22:14.950459000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-24 18:54:43.824404035 Z\nsign_in_count:\n- 230\n- 231\n 463 \N 189.186.86.233 74706fd1-fdc6-4312-8d8d-64ccc395df31 2020-09-24 18:54:43.831157 41230 18 User \N \N 18 User \N update ---\nunique_session_id:\n- b9F56DjMBNtmiRfcueQF\n- xjkz6uzpqjUx_grp4Uom\n 464 \N 189.186.86.233 74706fd1-fdc6-4312-8d8d-64ccc395df31 2020-09-24 18:54:43.854862 41231 4047 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1079\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 2926\ncardnumber: 2155\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-618 189.186.86.233 74f3f5fc-80fa-4e00-ac40-bef753e49e18 2020-09-24 18:56:51.937078 41232 2926 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.86.233 37dff9b6-474d-4d02-8c76-aef0a3a437ad 2020-09-24 18:56:55.737729 41233 3039 Sale \N \N 18 User \N create ---\ncustomer_id: 383\nuser_id: 18\nopen_cash_register_id: 1079\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-09-24\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-669\nexpiration_date: 2020-10-29\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 a9df7ae1-446d-4811-8697-eec5a4e69809 2020-09-24 18:58:00.072907 41234 2049 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.86.233 a9df7ae1-446d-4811-8697-eec5a4e69809 2020-09-24 18:58:00.108464 41236 3039 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.86.233 4d9ec06f-3468-459d-9b13-916be501ed69 2020-09-24 18:58:11.324026 41330 1961 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.61.181 b04f74c2-b8a7-4619-bc3b-34de5dc2db0d 2020-09-25 21:45:05.978907 41237 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-24 05:19:44.463976000 Z\n- &1 2020-09-24 18:49:11.075071000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-24 20:13:31.377844397 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534356\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\nsign_in_count:\n- 1893\n- 1894\n 3788 \N 189.186.86.233 9ecd1560-75ef-4afe-b0a2-ceee33442964 2020-09-24 20:13:31.386293 41238 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UPNWE7yzSxjzLS_MRYim\n- 4QGQVYQeQGuzx79PSe6f\n 3789 \N 189.186.86.233 9ecd1560-75ef-4afe-b0a2-ceee33442964 2020-09-24 20:13:31.404898 41239 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-24 18:22:14.950459000 Z\n- &1 2020-09-24 18:54:43.824404000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-24 20:44:17.516183089 Z\nsign_in_count:\n- 231\n- 232\n 465 \N 189.186.86.233 630339c6-a2d8-4dc4-a49e-2cde3e24c58b 2020-09-24 20:44:17.523011 41240 18 User \N \N 18 User \N update ---\nunique_session_id:\n- xjkz6uzpqjUx_grp4Uom\n- Exxbn1xHRVfATBdSdqnc\n 466 \N 189.186.86.233 630339c6-a2d8-4dc4-a49e-2cde3e24c58b 2020-09-24 20:44:17.536961 41241 396 Customer \N \N 18 User \N create ---\nnick_name: GLORIA FUENTES\nphone: "(667) 210-8946"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente GLORIA FUENTES fue registrado. 189.186.86.233 4458b2d1-e4fa-485f-854d-68569da69c1f 2020-09-24 20:45:13.569007 41242 3040 Sale \N \N 18 User \N create ---\ncustomer_id: 396\nuser_id: 18\nopen_cash_register_id: 1079\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-24\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-670\nexpiration_date: 2020-10-29\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.86.233 aa6b9abc-802f-4bb3-89c0-4d3007ab828e 2020-09-24 20:45:30.654617 41243 2043 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.86.233 aa6b9abc-802f-4bb3-89c0-4d3007ab828e 2020-09-24 20:45:30.679827 41244 4049 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1079\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3040\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-670\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-670 189.186.86.233 0e69708d-8a2c-457a-b8b7-5ddc34f418aa 2020-09-24 20:45:52.803796 41245 3040 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.86.233 0ab4da32-2b83-41c6-8b28-bae6a960370e 2020-09-24 20:45:57.744249 41246 4050 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1079\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 3037\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-667 189.186.86.233 1421c76d-265e-4513-a082-2da4fde1af17 2020-09-24 21:22:38.377031 41247 3037 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.86.233 a48f901a-3ddd-418c-9fb3-6d272c169640 2020-09-24 21:22:39.645185 41248 4051 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1079\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.242E3\nmove_type: '1'\nsale_id: 3038\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.242E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-668 189.186.86.233 c37b88a2-6186-461f-b399-b5315bf45d8f 2020-09-24 21:23:04.005263 41249 3038 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.86.233 f9f0dae8-ddbe-46f6-ae61-ccdc6a5f8c3b 2020-09-24 21:23:05.216576 41250 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-24 18:49:11.075071000 Z\n- &1 2020-09-24 20:13:31.377844000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-24 21:23:27.752273237 Z\nsign_in_count:\n- 1894\n- 1895\n 3790 \N 189.186.86.233 f63b7b6c-a472-4135-b0a1-385b6de48874 2020-09-24 21:23:27.759884 41251 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4QGQVYQeQGuzx79PSe6f\n- 3CQELjxp5-TK1Pz_czUF\n 3791 \N 189.186.86.233 f63b7b6c-a472-4135-b0a1-385b6de48874 2020-09-24 21:23:27.782017 41252 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-16 04:58:35.098470000 Z\n- &1 2020-09-16 21:41:55.073892000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-24 21:47:55.046988990 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729326\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\nsign_in_count:\n- 240\n- 241\n 482 \N 187.149.42.195 935022cb-8dc2-4dd0-80e5-4460344b832e 2020-09-24 21:47:55.077016 41253 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Q5GJvxxp-esBgzDfsczc\n- napeVwAszMseWfLXHCbr\n 483 \N 187.149.42.195 935022cb-8dc2-4dd0-80e5-4460344b832e 2020-09-24 21:47:55.10229 41254 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-16 21:41:55.073892000 Z\n- &1 2020-09-24 21:47:55.046988000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-24 23:11:25.082162824 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183093800\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\nsign_in_count:\n- 241\n- 242\n 484 \N 187.149.42.195 9656eabb-85cd-4411-811f-7a42c35e44e5 2020-09-24 23:11:25.088797 41255 1 User \N \N 1 User \N update ---\nunique_session_id:\n- napeVwAszMseWfLXHCbr\n- 7MjfEszA7DEXnf352krA\n 485 \N 187.149.42.195 9656eabb-85cd-4411-811f-7a42c35e44e5 2020-09-24 23:11:25.105788 41256 3041 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1078\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1451\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 0fd87283-3313-4901-8e88-a94d1844ed26 2020-09-24 23:50:29.015856 41257 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 18 \N 187.149.42.195 0fd87283-3313-4901-8e88-a94d1844ed26 2020-09-24 23:50:29.050843 41258 3041 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 48c08e27-1219-4f6a-b2cc-4fac54ba5292 2020-09-24 23:50:43.014059 41280 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3CQELjxp5-TK1Pz_czUF\n- qBsN8nsm1pt7gKfBc4AQ\n 3793 \N 200.68.135.173 5272e9e7-4c68-4d9b-bbc4-445d31f2ccd9 2020-09-25 00:44:57.794561 41281 1821 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 38 \N 187.149.42.195 7aac986d-c84a-4960-8fc3-037f8aa19755 2020-09-25 00:45:04.722515 41259 4052 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1078\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3041\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1451\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1451 187.149.42.195 48c08e27-1219-4f6a-b2cc-4fac54ba5292 2020-09-24 23:50:43.043144 41260 398 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-162\namount: !ruby/object:BigDecimal 18:0.6495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6495E3\nobservations: ''\npurchase_date: 2020-09-24\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-162 por $ 649.5 MXN creada. 189.186.110.229 6b8d8d65-fc13-4516-9afc-736267b0a134 2020-09-25 00:01:34.848137 41261 2335 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1139\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.110.229 6b8d8d65-fc13-4516-9afc-736267b0a134 2020-09-25 00:01:34.877673 41262 3042 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1078\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2020-09-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1452\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 368e7d67-e552-4298-a1c8-7a3db8ca631f 2020-09-25 00:02:11.360831 41263 2335 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.42.195 368e7d67-e552-4298-a1c8-7a3db8ca631f 2020-09-25 00:02:11.389401 41264 3042 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 c993a4b7-de0a-46c9-984c-552c48d8eaea 2020-09-25 00:02:15.729173 41265 4053 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1078\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 3042\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1452\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1452 187.149.42.195 c993a4b7-de0a-46c9-984c-552c48d8eaea 2020-09-25 00:02:15.761057 41266 3043 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1078\namount: !ruby/object:BigDecimal 18:0.818E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.818E3\nstatus: 0\ndate_sale: 2020-09-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1453\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 7c0a218e-b277-4c4d-b326-322ac25b9d98 2020-09-25 00:11:16.000069 41267 2233 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.42.195 7c0a218e-b277-4c4d-b326-322ac25b9d98 2020-09-25 00:11:16.034351 41268 2135 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.42.195 7c0a218e-b277-4c4d-b326-322ac25b9d98 2020-09-25 00:11:16.059758 41269 3043 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 d619dd08-5a9c-4e47-8dc1-54965b15890f 2020-09-25 00:11:31.634948 41270 4054 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1078\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.818E3\nmove_type: '1'\nsale_id: 3043\ncardnumber: 993\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1453\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1453 187.149.42.195 d619dd08-5a9c-4e47-8dc1-54965b15890f 2020-09-25 00:11:31.66972 41271 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-24 18:54:43.824404000 Z\n- &1 2020-09-24 20:44:17.516183000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-25 00:23:15.537057448 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111909\n mask_addr: 4294967295\nsign_in_count:\n- 232\n- 233\n 467 \N 189.186.110.229 5468a06b-69fd-4625-a402-aaa801704365 2020-09-25 00:23:15.544291 41272 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Exxbn1xHRVfATBdSdqnc\n- yZqHXHL3EyYzrJL4ZmoB\n 468 \N 189.186.110.229 5468a06b-69fd-4625-a402-aaa801704365 2020-09-25 00:23:15.560305 41273 3044 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1079\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-24\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-671\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.110.229 9e21e95b-3f96-44ee-9070-f32eb6d4ab0f 2020-09-25 00:28:51.175602 41274 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 65 \N 189.186.110.229 9e21e95b-3f96-44ee-9070-f32eb6d4ab0f 2020-09-25 00:28:51.203404 41275 3044 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.110.229 7ab23ab5-9706-4689-9365-d3cad8fe290a 2020-09-25 00:29:00.558046 41276 4055 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1079\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3044\ncardnumber: 1255\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-671\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-671 189.186.110.229 7ab23ab5-9706-4689-9365-d3cad8fe290a 2020-09-25 00:29:00.586588 41277 1103 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1079\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.4466E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.19E4\ncash_fund: !ruby/object:BigDecimal 27:0.10459899999999998E4\nphysical_cash: !ruby/object:BigDecimal 18:0.294599E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.110.229 37246a9a-2cb3-4725-93a8-a671f7ac27ac 2020-09-25 00:32:01.864087 41278 1079 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.110.229 37246a9a-2cb3-4725-93a8-a671f7ac27ac 2020-09-25 00:32:01.880711 41279 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-24 20:13:31.377844000 Z\n- &1 2020-09-24 21:23:27.752273000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-25 00:44:57.770184687 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934381\n mask_addr: 4294967295\nsign_in_count:\n- 1895\n- 1896\n 3792 \N 200.68.135.173 5272e9e7-4c68-4d9b-bbc4-445d31f2ccd9 2020-09-25 00:44:57.776934 41283 397 Customer \N \N 2 User \N create ---\nnick_name: BLANCA AGUADO\nphone: "(667) 349-2885"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BLANCA AGUADO fue registrado. 187.149.42.195 efb6b23b-3878-4f2c-b34f-62a32fbfa7fd 2020-09-25 00:47:17.419381 41284 3045 Sale \N \N 2 User \N create ---\ncustomer_id: 397\nuser_id: 2\nopen_cash_register_id: 1078\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-24\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1454\nexpiration_date: 2020-10-29\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 b73e90f1-316c-48aa-ad3e-1769f6a5a912 2020-09-25 00:47:39.658651 41285 2250 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.42.195 b73e90f1-316c-48aa-ad3e-1769f6a5a912 2020-09-25 00:47:39.688655 41286 4056 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1078\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3045\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1454\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1454 187.149.42.195 f216ec97-2985-4c24-a6ea-6344f6619b17 2020-09-25 00:47:44.738128 41287 3045 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.195 3ebfbbe9-e8b9-4b36-b01c-493c294fe133 2020-09-25 00:47:51.59166 41288 398 Customer \N \N 2 User \N create ---\nnick_name: GLADYS CASTRO\nphone: "(667) 211-1041"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente GLADYS CASTRO fue registrado. 187.149.42.195 34127a97-b97e-4250-9257-ee0c9e5234da 2020-09-25 00:49:16.150988 41289 3046 Sale \N \N 2 User \N create ---\ncustomer_id: 398\nuser_id: 2\nopen_cash_register_id: 1078\namount: !ruby/object:BigDecimal 18:0.969E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.969E3\nstatus: 0\ndate_sale: 2020-09-24\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1455\nexpiration_date: 2020-10-29\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 59d2cf98-f280-4c0d-83ba-20c3e73ec83f 2020-09-25 00:49:39.142815 41290 2249 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.42.195 59d2cf98-f280-4c0d-83ba-20c3e73ec83f 2020-09-25 00:49:39.168083 41291 4057 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1078\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3046\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1455\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1455 187.149.42.195 44cead80-8989-4717-b07b-d896e3edf20f 2020-09-25 00:50:08.088324 41292 3046 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.195 58f793f7-cea2-445e-a4a4-62948b55758b 2020-09-25 00:50:09.165172 41293 3047 Sale \N \N 2 User \N create ---\ncustomer_id: 398\nuser_id: 2\nopen_cash_register_id: 1078\namount: !ruby/object:BigDecimal 18:0.689E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.689E3\nstatus: 0\ndate_sale: 2020-09-24\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1456\nexpiration_date: 2020-10-29\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 e75dc61d-9de2-45d0-abb1-b4658c5bb5d9 2020-09-25 00:52:33.227823 41294 2259 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.42.195 e75dc61d-9de2-45d0-abb1-b4658c5bb5d9 2020-09-25 00:52:33.29817 41295 4058 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1078\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 3047\ncardnumber: 4294\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1456\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1456 187.149.42.195 d071d051-3e33-4869-a55f-023137a7ab74 2020-09-25 00:52:50.351919 41296 3047 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.195 d45d5490-8731-4d58-be7b-1556f37b1bc9 2020-09-25 00:52:52.080125 41297 1104 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1078\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5413E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.43E4\ncash_fund: !ruby/object:BigDecimal 18:0.1053E4\nphysical_cash: !ruby/object:BigDecimal 18:0.5353E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.195 76374874-9aa6-4a0b-ac15-1ed09dbab29c 2020-09-25 00:56:17.529361 41298 1078 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.195 76374874-9aa6-4a0b-ac15-1ed09dbab29c 2020-09-25 00:56:17.542059 41299 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-24 21:23:27.752273000 Z\n- &1 2020-09-25 00:44:57.770184000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-25 01:30:07.024005263 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934381\n mask_addr: 4294967295\nsign_in_count:\n- 1896\n- 1897\n 3794 \N 200.68.135.173 e8b82ebf-c3c8-4c89-a0a7-b9f88f13dbef 2020-09-25 01:30:07.032769 41300 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qBsN8nsm1pt7gKfBc4AQ\n- yWM1tsXRdJQdWKAr6PZX\n 3795 \N 200.68.135.173 e8b82ebf-c3c8-4c89-a0a7-b9f88f13dbef 2020-09-25 01:30:07.052417 41301 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-25 00:44:57.770184000 Z\n- &1 2020-09-25 01:30:07.024005000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-25 16:01:55.468805801 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934381\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534524\n mask_addr: 4294967295\nsign_in_count:\n- 1897\n- 1898\n 3796 \N 177.228.97.252 7da7c3e6-557a-4e94-93c6-f24f7618e9e4 2020-09-25 16:01:55.501407 41302 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yWM1tsXRdJQdWKAr6PZX\n- cn2DoCTKp97XFYbbigWD\n 3797 \N 177.228.97.252 7da7c3e6-557a-4e94-93c6-f24f7618e9e4 2020-09-25 16:01:55.539832 41303 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-23 17:23:21.063808000 Z\n- &1 2020-09-24 16:27:00.303112000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-25 16:35:16.828678582 Z\nsign_in_count:\n- 650\n- 651\n 1305 \N 187.149.42.195 a522941e-5e3d-4d38-a8d6-cb9523e0f6df 2020-09-25 16:35:16.834518 41304 2 User \N \N 2 User \N update ---\nunique_session_id:\n- cRzcxvzp8ZNzLbvtrpEh\n- r2itjGz4GDEvUqNrU1gh\n 1306 \N 187.149.42.195 a522941e-5e3d-4d38-a8d6-cb9523e0f6df 2020-09-25 16:35:16.850663 41331 1961 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.61.181 8b7c8c03-6eb3-42fc-aad5-0b80e9b6da4e 2020-09-25 21:45:08.950397 41306 1081 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.104599E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1045.99 189.186.61.181 d40770a2-7301-4eba-b8e5-6da6d6df48aa 2020-09-25 18:24:53.748238 41307 3048 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1081\namount: !ruby/object:BigDecimal 18:0.529E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.529E3\nstatus: 0\ndate_sale: 2020-09-25\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-672\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.61.181 c8d41a0b-31d3-4ae5-87e2-3f2a93f55d6d 2020-09-25 18:25:28.294715 41308 2288 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.61.181 c8d41a0b-31d3-4ae5-87e2-3f2a93f55d6d 2020-09-25 18:25:28.327922 41309 3048 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.61.181 4c5aaced-4542-414c-91e0-c7fececccd4b 2020-09-25 18:25:53.38643 41310 4059 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1081\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.529E3\nmove_type: '1'\nsale_id: 3048\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-672\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.71E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-672 189.186.61.181 4c5aaced-4542-414c-91e0-c7fececccd4b 2020-09-25 18:25:53.410181 41311 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-25 01:30:07.024005000 Z\n- &1 2020-09-25 16:01:55.468805000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-25 18:33:28.970832475 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934381\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534524\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534524\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\nsign_in_count:\n- 1898\n- 1899\n 3798 \N 189.186.61.181 10c57d12-5b6e-4707-bdd0-307aff07f3d7 2020-09-25 18:33:28.984425 41312 4 User \N \N 4 User \N update ---\nunique_session_id:\n- cn2DoCTKp97XFYbbigWD\n- xP6oni9uTKK82-rsVEJs\n 3799 \N 189.186.61.181 10c57d12-5b6e-4707-bdd0-307aff07f3d7 2020-09-25 18:33:29.007892 41313 3049 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1080\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1457\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 394bcef1-151f-4ef0-b253-7d2626bb862a 2020-09-25 19:46:25.201544 41314 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 19 \N 187.149.42.195 394bcef1-151f-4ef0-b253-7d2626bb862a 2020-09-25 19:46:25.226818 41315 3049 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 b2ff2eaf-3296-46fc-b794-59952c13a448 2020-09-25 19:46:36.883466 41316 4060 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1080\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3049\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1457\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1457 187.149.42.195 b2ff2eaf-3296-46fc-b794-59952c13a448 2020-09-25 19:46:36.913642 41317 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-24 20:44:17.516183000 Z\n- &1 2020-09-25 00:23:15.537057000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-25 19:56:18.155646246 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111909\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111909\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\nsign_in_count:\n- 233\n- 234\n 469 \N 189.186.61.181 3fc8bb90-f4ce-48bf-94c8-028ad54d8bb7 2020-09-25 19:56:18.163639 41318 18 User \N \N 18 User \N update ---\nunique_session_id:\n- yZqHXHL3EyYzrJL4ZmoB\n- Q67tPXNsR9jeqzYkZC9P\n 470 \N 189.186.61.181 3fc8bb90-f4ce-48bf-94c8-028ad54d8bb7 2020-09-25 19:56:18.182577 41319 3050 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1081\namount: !ruby/object:BigDecimal 18:0.1616E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1616E4\nstatus: 0\ndate_sale: 2020-09-25\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-673\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.61.181 89effba5-0558-4832-ad09-7ad6c4fa79cb 2020-09-25 20:08:00.262653 41320 2275 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 2 \N 189.186.61.181 89effba5-0558-4832-ad09-7ad6c4fa79cb 2020-09-25 20:08:00.299354 41321 2280 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 3 \N 189.186.61.181 89effba5-0558-4832-ad09-7ad6c4fa79cb 2020-09-25 20:08:00.330317 41322 2266 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.61.181 89effba5-0558-4832-ad09-7ad6c4fa79cb 2020-09-25 20:08:00.3611 41323 2110 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.61.181 89effba5-0558-4832-ad09-7ad6c4fa79cb 2020-09-25 20:08:00.389551 41324 3050 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.61.181 7b0296bd-8075-42fc-b9b9-f04591cbb406 2020-09-25 20:08:06.294458 41325 4061 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1081\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1616E4\nmove_type: '1'\nsale_id: 3050\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-673\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.384E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-673 189.186.61.181 7b0296bd-8075-42fc-b9b9-f04591cbb406 2020-09-25 20:08:06.315733 41326 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-25 16:01:55.468805000 Z\n- &1 2020-09-25 18:33:28.970832000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-25 20:11:15.992073110 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534524\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\nsign_in_count:\n- 1899\n- 1900\n 3800 \N 189.186.61.181 85abb8a6-7c71-417b-aa31-bc99f8d64a49 2020-09-25 20:11:15.999425 41327 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xP6oni9uTKK82-rsVEJs\n- sUMWmQ9GC7hqjQJaUzaG\n 3801 \N 189.186.61.181 85abb8a6-7c71-417b-aa31-bc99f8d64a49 2020-09-25 20:11:16.01892 41332 689 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-09-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.61.181 29c5a0a9-6b56-442f-8ea0-3106ce598c72 2020-09-25 21:45:09.956528 41333 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-24 23:11:25.082162000 Z\n- &1 2020-09-25 20:25:15.936309000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-25 22:03:01.017817631 Z\nsign_in_count:\n- 243\n- 244\n 488 \N 187.149.42.195 8a2a5274-fb2f-46a0-85f2-169eb14c6171 2020-09-25 22:03:01.023768 41334 1 User \N \N 1 User \N update ---\nunique_session_id:\n- LByyJxYrxHmLbzyZS4WR\n- 2sPeKYasz1xH1cjJMR5c\n 489 \N 187.149.42.195 8a2a5274-fb2f-46a0-85f2-169eb14c6171 2020-09-25 22:03:01.038206 41335 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-25 00:23:15.537057000 Z\n- &1 2020-09-25 19:56:18.155646000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-25 23:15:42.827838188 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183111909\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\nsign_in_count:\n- 234\n- 235\n 471 \N 189.186.61.181 9fb5bd81-90c4-4155-b4dc-1007047c75d6 2020-09-25 23:15:42.837232 41336 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Q67tPXNsR9jeqzYkZC9P\n- NR3moxaminKCMWR89Pec\n 472 \N 189.186.61.181 9fb5bd81-90c4-4155-b4dc-1007047c75d6 2020-09-25 23:15:42.856402 41337 3051 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1081\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-25\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-674\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.61.181 17510cf7-ed33-4db3-8f7a-da74ed6b9c3a 2020-09-25 23:16:04.135215 41338 1985 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.61.181 17510cf7-ed33-4db3-8f7a-da74ed6b9c3a 2020-09-25 23:16:04.162815 41339 3051 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.61.181 6f9798b2-989e-4cf2-b992-a7ee348ab5df 2020-09-25 23:17:03.735071 41340 4062 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1081\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3051\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-674\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-674 189.186.61.181 6f9798b2-989e-4cf2-b992-a7ee348ab5df 2020-09-25 23:17:03.757626 41341 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-25 18:33:28.970832000 Z\n- &1 2020-09-25 20:11:15.992073000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-25 23:29:15.943654366 Z\nsign_in_count:\n- 1900\n- 1901\n 3802 \N 189.186.61.181 59ca4a2e-86ff-4907-b16f-5f12e72f508f 2020-09-25 23:29:15.950113 41342 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sUMWmQ9GC7hqjQJaUzaG\n- iuXG4nCsoekpSkKkN4ud\n 3803 \N 189.186.61.181 59ca4a2e-86ff-4907-b16f-5f12e72f508f 2020-09-25 23:29:15.966497 41343 30 Seller \N \N 4 User \N create ---\npointsale_id: 1\nname: SAMANTHA\nlast_name: URCISICHI\nstatus: 1\n 1 El vendedor SAMANTHA URCISICHI fue registrado. 189.186.61.181 e26681e0-741b-4218-9e86-bd8e5a1b907a 2020-09-26 00:00:45.567006 41344 18 Seller \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 2 El vendedor KEYLA LIZARRAGA fue eliminado. 189.186.61.181 a4bbe0c4-1fd2-4e4d-8f1d-d70b4033fdc7 2020-09-26 00:01:18.67217 41345 19 Seller \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 2 El vendedor KEYLA LIZARRAGA fue eliminado. 189.186.61.181 528cebb8-bc4c-4e63-8695-4c57e4a527c4 2020-09-26 00:01:26.517459 41346 20 Seller \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 2 El vendedor KARLA BELTRAN fue eliminado. 189.186.61.181 fd68f44c-3fde-4fb6-8e38-58202eee8f72 2020-09-26 00:01:35.131693 41347 10 Seller \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 4 El vendedor MONTSERRAT BARRIOS fue eliminado. 189.186.61.181 3b443e34-6757-447d-8baa-21ab8b76ef7a 2020-09-26 00:01:40.775814 41348 17 Seller \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 3 El vendedor MONTSERRAT BARRIOS fue eliminado. 189.186.61.181 1a7d25d6-375a-4482-a886-fa71ed2162ee 2020-09-26 00:01:46.303034 41349 22 Seller \N \N 4 User \N update ---\nstatus:\n- inactive\n- 0\n 3 El vendedor KARLA BELTRAN fue eliminado. 189.186.61.181 8cc7b606-9e32-4645-80d6-d95c81d63592 2020-09-26 00:01:51.031656 41350 3 Seller \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 2 El vendedor SAMANTHA URCISICHI fue eliminado. 189.186.61.181 c1477769-ebee-4537-b392-51a495a7123a 2020-09-26 00:02:11.78992 41351 11 Seller \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 2 El vendedor ROCIO GUEVARA fue eliminado. 189.186.61.181 c4ac350b-4e3e-4d5c-a209-65718d2b0b51 2020-09-26 00:02:19.035148 41352 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-25 19:56:18.155646000 Z\n- &1 2020-09-25 23:15:42.827838000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-26 00:28:20.424301747 Z\nsign_in_count:\n- 235\n- 236\n 473 \N 189.186.61.181 083a3a45-ea97-4bf3-84ec-5ac2d32cc64b 2020-09-26 00:28:20.43027 41353 18 User \N \N 18 User \N update ---\nunique_session_id:\n- NR3moxaminKCMWR89Pec\n- SM_BTboiUBVTJm9_9cvC\n 474 \N 189.186.61.181 083a3a45-ea97-4bf3-84ec-5ac2d32cc64b 2020-09-26 00:28:20.444543 41354 3052 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1081\namount: !ruby/object:BigDecimal 18:0.938E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.938E3\nstatus: 0\ndate_sale: 2020-09-25\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-675\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.61.181 fde47508-34f0-4480-a0eb-ab650da4d1cb 2020-09-26 00:33:02.659479 41355 2276 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.61.181 fde47508-34f0-4480-a0eb-ab650da4d1cb 2020-09-26 00:33:02.687899 41356 2103 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.61.181 fde47508-34f0-4480-a0eb-ab650da4d1cb 2020-09-26 00:33:02.710373 41357 3052 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.61.181 16a08e7e-cc7e-4912-b752-38feeb46051d 2020-09-26 00:33:46.197262 41358 4063 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1081\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.938E3\nmove_type: '1'\nsale_id: 3052\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-675\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.62E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-675 189.186.61.181 16a08e7e-cc7e-4912-b752-38feeb46051d 2020-09-26 00:33:46.224941 41359 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-25 23:15:42.827838000 Z\n- &1 2020-09-26 00:28:20.424301000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-26 00:42:49.291965972 Z\nsign_in_count:\n- 236\n- 237\n 475 \N 189.186.61.181 8cd09409-ce3b-4a89-acef-9a112885b40b 2020-09-26 00:42:49.299267 41360 18 User \N \N 18 User \N update ---\nunique_session_id:\n- SM_BTboiUBVTJm9_9cvC\n- xg-uwikk9yXbe2dxeBus\n 476 \N 189.186.61.181 8cd09409-ce3b-4a89-acef-9a112885b40b 2020-09-26 00:42:49.313149 41361 3053 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1081\namount: !ruby/object:BigDecimal 18:0.1088E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1088E4\nstatus: 0\ndate_sale: 2020-09-25\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-676\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.61.181 da3c1aaf-dc95-45d9-9069-e642d36cd735 2020-09-26 00:43:47.359341 41362 2273 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.61.181 da3c1aaf-dc95-45d9-9069-e642d36cd735 2020-09-26 00:43:47.391605 41363 2119 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.61.181 da3c1aaf-dc95-45d9-9069-e642d36cd735 2020-09-26 00:43:47.417845 41364 3053 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.61.181 6642f3d7-acfa-45fb-bd4b-c0ca0ccb35e1 2020-09-26 00:44:13.316357 41365 4064 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1081\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1088E4\nmove_type: '1'\nsale_id: 3053\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-676\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.12E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-676 189.186.61.181 6642f3d7-acfa-45fb-bd4b-c0ca0ccb35e1 2020-09-26 00:44:13.340928 41366 1105 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1080\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.999E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1052E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2052E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.195 d4a25294-62be-4631-85e8-4fa1ffafb62c 2020-09-26 01:02:25.857694 41367 1080 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.195 d4a25294-62be-4631-85e8-4fa1ffafb62c 2020-09-26 01:02:25.872978 41368 1106 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1081\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.567E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.58E4\ncash_fund: !ruby/object:BigDecimal 27:0.9159899999999998E3\nphysical_cash: !ruby/object:BigDecimal 18:0.671599E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.61.181 3527917c-c9cc-46f6-9bb0-0733075f52a3 2020-09-26 01:02:33.808796 41369 1081 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.61.181 3527917c-c9cc-46f6-9bb0-0733075f52a3 2020-09-26 01:02:33.828233 41370 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-25 20:11:15.992073000 Z\n- &1 2020-09-25 23:29:15.943654000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-26 01:02:59.275520005 Z\nsign_in_count:\n- 1901\n- 1902\n 3804 \N 189.186.61.181 281ef8c9-60ce-4d67-ba58-3da4bbb3e40e 2020-09-26 01:02:59.284765 41371 4 User \N \N 4 User \N update ---\nunique_session_id:\n- iuXG4nCsoekpSkKkN4ud\n- Sb8guiu1xXW-b7Jx_Hed\n 3805 \N 189.186.61.181 281ef8c9-60ce-4d67-ba58-3da4bbb3e40e 2020-09-26 01:02:59.305579 41372 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-25 23:29:15.943654000 Z\n- &1 2020-09-26 01:02:59.275520000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-26 06:45:42.404767234 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534892\n mask_addr: 4294967295\nsign_in_count:\n- 1902\n- 1903\n 3806 \N 177.228.99.108 306397c0-2080-4fbc-bf04-7d3ac54cb83e 2020-09-26 06:45:42.416682 41373 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Sb8guiu1xXW-b7Jx_Hed\n- XcsqQN-pcHiuUNya61Ga\n 3807 \N 177.228.99.108 306397c0-2080-4fbc-bf04-7d3ac54cb83e 2020-09-26 06:45:42.438242 41374 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-23 22:47:32.082274000 Z\n- &1 2020-09-24 00:45:53.282447000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-26 16:33:51.096564225 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\nsign_in_count:\n- 180\n- 181\n 362 \N 187.149.42.195 e0ea4071-3eb7-406b-b9e8-57d388b37d77 2020-09-26 16:33:51.133696 41375 9 User \N \N 9 User \N update ---\nunique_session_id:\n- DDKdkZ3BLKBfB6N5EF6t\n- fzLY97cLZzHBK2hRTKHG\n 363 \N 187.149.42.195 e0ea4071-3eb7-406b-b9e8-57d388b37d77 2020-09-26 16:33:51.158494 41376 1082 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.1052E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1052.0 187.149.42.195 3a25e03c-2d0e-4b37-9d3e-7d3aafcd4b61 2020-09-26 17:45:10.83796 41377 3054 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1082\namount: !ruby/object:BigDecimal 18:0.1258E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1258E4\nstatus: 0\ndate_sale: 2020-09-26\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1458\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 036b66e7-03d5-471c-b877-48ad8e3f5286 2020-09-26 17:46:39.878545 41378 1685 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.42.195 036b66e7-03d5-471c-b877-48ad8e3f5286 2020-09-26 17:46:39.90846 41379 1644 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 187.149.42.195 036b66e7-03d5-471c-b877-48ad8e3f5286 2020-09-26 17:46:39.944147 41380 3054 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 a697a901-537f-4c29-befa-a7825df5a29f 2020-09-26 17:47:19.148471 41381 4065 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1082\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1258E4\nmove_type: '1'\nsale_id: 3054\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1458\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.242E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1458 187.149.42.195 a697a901-537f-4c29-befa-a7825df5a29f 2020-09-26 17:47:19.170172 41382 3055 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1082\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2020-09-26\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1459\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 e323767b-f6cf-4917-bbd1-c9ae5362efb6 2020-09-26 18:17:39.810109 41383 2252 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.42.195 e323767b-f6cf-4917-bbd1-c9ae5362efb6 2020-09-26 18:17:39.844441 41385 4066 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1082\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.569E3\nmove_type: '1'\nsale_id: 3055\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1459\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.431E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1459 187.149.42.195 8eff8f05-3a21-4b74-a8b7-2b0f34431b7c 2020-09-26 18:17:45.925364 41386 399 Customer \N \N 9 User \N create ---\nnick_name: ALMA ROSA CASTELLON\nphone: "(667) 406-6059"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ALMA ROSA CASTELLON fue registrado. 187.149.42.195 1bddb5a8-b370-427a-8afc-15e9064c84d5 2020-09-26 18:19:51.283779 41387 3056 Sale \N \N 9 User \N create ---\ncustomer_id: 399\nuser_id: 9\nopen_cash_register_id: 1082\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-26\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1460\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 34601ef7-44bc-4bbf-b1dc-f9ccbba2f31a 2020-09-26 18:20:21.621747 41388 2226 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 20 \N 187.149.42.195 34601ef7-44bc-4bbf-b1dc-f9ccbba2f31a 2020-09-26 18:20:21.649594 41389 3056 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 7e7709a9-0c0c-4d9d-85f2-df66a1277fd6 2020-09-26 18:20:28.967849 41390 4067 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1082\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.431E3\nmove_type: '1'\nsale_id: 3056\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1460\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.431E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1460 187.149.42.195 7e7709a9-0c0c-4d9d-85f2-df66a1277fd6 2020-09-26 18:20:28.989245 41391 3056 Sale \N \N 9 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-1460 cancelada. 187.149.42.195 3295aa7b-67ab-4bf7-938b-d3dbd540868a 2020-09-26 18:20:36.522504 41392 4067 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 1082\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.431E3\nmove_type: '1'\nsale_id: 3056\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1460\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.431E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.42.195 3295aa7b-67ab-4bf7-938b-d3dbd540868a 2020-09-26 18:20:36.543367 41393 2226 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.9E1\n 21 \N 187.149.42.195 3295aa7b-67ab-4bf7-938b-d3dbd540868a 2020-09-26 18:20:36.566258 41394 3057 Sale \N \N 9 User \N create ---\ncustomer_id: 399\nuser_id: 9\nopen_cash_register_id: 1082\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-26\nsaletype: 2\nseller_id: 30\nsale_code: PV1-V-1461\nexpiration_date: 2020-10-31\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 bb34316a-6fcb-4789-9288-41242864cb43 2020-09-26 18:20:59.959787 41395 2226 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 22 \N 187.149.42.195 bb34316a-6fcb-4789-9288-41242864cb43 2020-09-26 18:20:59.986816 41396 4068 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1082\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.431E3\nmove_type: '1'\nsale_id: 3057\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1461\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.431E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1461 187.149.42.195 dd4320fb-9612-4119-8678-b0c386bd9f5f 2020-09-26 18:21:06.399689 41397 3057 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.195 b0a3d497-1d3c-420c-a78d-9d9704d7798a 2020-09-26 18:21:07.606546 41398 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-21 18:11:30.614361000 Z\n- &1 2020-09-22 17:40:11.097717000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-26 18:34:59.349163917 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\nsign_in_count:\n- 300\n- 301\n 603 \N 189.186.61.181 485493c1-8b3b-4ed0-88f5-40b660a9b7d3 2020-09-26 18:34:59.356164 41399 21 User \N \N 21 User \N update ---\nunique_session_id:\n- LLY6SbxQQ_1Lxz-fitMi\n- mtRmDVzhkPSsjGEFWPcF\n 604 \N 189.186.61.181 485493c1-8b3b-4ed0-88f5-40b660a9b7d3 2020-09-26 18:34:59.371109 41400 3058 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1082\namount: !ruby/object:BigDecimal 18:0.43521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-09-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1462\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 10abcd75-6554-423f-8262-99d850b67d89 2020-09-26 19:00:43.033127 41401 121 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 1 \N 187.149.42.195 10abcd75-6554-423f-8262-99d850b67d89 2020-09-26 19:00:43.059062 41402 3058 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 e3017b3d-b1af-4055-b101-ed2bcb22955e 2020-09-26 19:01:05.549586 41403 4069 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1082\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 3058\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1462\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1462 187.149.42.195 e3017b3d-b1af-4055-b101-ed2bcb22955e 2020-09-26 19:01:05.57131 41404 3059 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1082\namount: !ruby/object:BigDecimal 18:0.139E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.139E3\nstatus: 0\ndate_sale: 2020-09-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1463\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 8477a1bd-3a02-4ab7-b1ce-ecdaf33a27d5 2020-09-26 19:23:36.674104 41405 1761 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.42.195 8477a1bd-3a02-4ab7-b1ce-ecdaf33a27d5 2020-09-26 19:23:36.725513 41406 3059 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 510fdc21-1111-4c23-9bb5-896b44349049 2020-09-26 19:23:40.956545 41407 4070 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1082\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.139E3\nmove_type: '1'\nsale_id: 3059\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1463\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.139E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1463 187.149.42.195 510fdc21-1111-4c23-9bb5-896b44349049 2020-09-26 19:23:40.97829 41408 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-24 16:27:00.303112000 Z\n- &1 2020-09-25 16:35:16.828678000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-26 20:14:42.925486630 Z\nsign_in_count:\n- 651\n- 652\n 1307 \N 187.149.42.195 b7f2ad9e-0575-4b4d-b209-220d6fc6d47c 2020-09-26 20:14:42.946101 41409 2 User \N \N 2 User \N update ---\nunique_session_id:\n- r2itjGz4GDEvUqNrU1gh\n- jBbVEbUsayAdjbcv_CPw\n 1308 \N 187.149.42.195 b7f2ad9e-0575-4b4d-b209-220d6fc6d47c 2020-09-26 20:14:42.968571 41410 4071 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1082\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 2927\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1389 187.149.42.195 68b3469f-fb5a-4259-9d8a-8c4381957149 2020-09-26 20:27:38.734005 41411 2927 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.42.195 7ab0e83a-0644-45e1-b0b7-799dad49bc15 2020-09-26 20:27:40.372718 41412 1083 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.91599E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 915.99 189.186.61.181 3d3f2f37-2758-4f5f-b0eb-de03b4a641b3 2020-09-26 20:43:08.47513 41413 3060 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1082\namount: !ruby/object:BigDecimal 18:0.298507E4\ntax: !ruby/object:BigDecimal 18:0.26193E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3247E4\nstatus: 0\ndate_sale: 2020-09-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1464\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 70595bba-fe39-4b66-b054-308f9c1cbc15 2020-09-26 23:09:10.361234 41414 2260 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.42.195 70595bba-fe39-4b66-b054-308f9c1cbc15 2020-09-26 23:09:10.407064 41415 2241 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.42.195 70595bba-fe39-4b66-b054-308f9c1cbc15 2020-09-26 23:09:10.454532 41416 39 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.42.195 70595bba-fe39-4b66-b054-308f9c1cbc15 2020-09-26 23:09:10.486696 41417 3060 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 d0411749-debc-4872-bc72-baf68db53fd5 2020-09-26 23:09:16.649034 41418 4072 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1082\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3247E4\nmove_type: '1'\nsale_id: 3060\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1464\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3247E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1464 187.149.42.195 d0411749-debc-4872-bc72-baf68db53fd5 2020-09-26 23:09:16.674332 41419 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-25 20:25:15.936309000 Z\n- &1 2020-09-25 22:03:01.017817000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-26 23:16:14.126841249 Z\nsign_in_count:\n- 244\n- 245\n 490 \N 187.149.42.195 63a9e84b-2273-4764-a169-38e8825f50ff 2020-09-26 23:16:14.146193 41420 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 2sPeKYasz1xH1cjJMR5c\n- VqRE4PWN9zjnw6okJy3r\n 491 \N 187.149.42.195 63a9e84b-2273-4764-a169-38e8825f50ff 2020-09-26 23:16:14.165085 41421 3061 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1083\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-09-26\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-677\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.61.181 d4b1a802-22b2-4776-85c5-b797c6a5ba45 2020-09-26 23:22:08.662045 41422 2272 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.61.181 d4b1a802-22b2-4776-85c5-b797c6a5ba45 2020-09-26 23:22:08.692936 41423 3061 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.61.181 b45b10f2-732a-4af3-ba86-8c1fe56fda70 2020-09-26 23:22:41.78699 41424 4073 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1083\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 3061\ncardnumber: 1225\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-677\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-677 189.186.61.181 b45b10f2-732a-4af3-ba86-8c1fe56fda70 2020-09-26 23:22:41.813082 41425 3062 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1083\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-09-26\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-678\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.61.181 527085f1-5bac-43cb-bfc3-5dd130508ed5 2020-09-26 23:56:48.526721 41426 2042 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.61.181 527085f1-5bac-43cb-bfc3-5dd130508ed5 2020-09-26 23:56:48.560299 41427 3062 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.61.181 9ac61af3-471f-445e-ab5b-720c63613e62 2020-09-26 23:57:35.411483 41428 4074 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1083\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3062\ncardnumber: 1522\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-678\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-678 189.186.61.181 9ac61af3-471f-445e-ab5b-720c63613e62 2020-09-26 23:57:35.457433 41471 1086 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1173E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1173.0 187.149.42.195 9a6932a4-9daf-4630-8072-e0c104c63863 2020-09-28 17:30:02.003574 41429 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-26 01:02:59.275520000 Z\n- &1 2020-09-26 06:45:42.404767000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-27 00:07:49.119333396 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534892\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534892\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\nsign_in_count:\n- 1903\n- 1904\n 3808 \N 189.186.61.181 b76ac5a4-549b-4812-9a4b-578a72470a02 2020-09-27 00:07:49.13912 41430 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XcsqQN-pcHiuUNya61Ga\n- 1pbye3FjxGzbyykuqcZJ\n 3809 \N 189.186.61.181 b76ac5a4-549b-4812-9a4b-578a72470a02 2020-09-27 00:07:49.163188 41431 1107 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1082\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6243E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.647E4\ncash_fund: !ruby/object:BigDecimal 18:0.825E3\nphysical_cash: !ruby/object:BigDecimal 18:0.7295E4\nobservations: 'DE LOS $6470: $170 SON DE ROCIO DE UNOS ARETES QUE VENDIO CON TARJETA\n Y $2500 SE LLEVO DE EXCEDENTE SAMANTHA $2670+$3800(RETIRO EN SOBRE)=$6470'\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.195 abfe8eb8-a50d-4b66-a89b-86269717324a 2020-09-27 00:48:49.654772 41432 1082 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.195 abfe8eb8-a50d-4b66-a89b-86269717324a 2020-09-27 00:48:49.66948 41433 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-24 00:45:53.282447000 Z\n- &1 2020-09-26 16:33:51.096564000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-27 00:56:43.023990694 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\nsign_in_count:\n- 181\n- 182\n 364 \N 189.186.61.181 3dbe4a01-fd07-4b5b-b528-9557eec3c671 2020-09-27 00:56:43.032256 41434 9 User \N \N 9 User \N update ---\nunique_session_id:\n- fzLY97cLZzHBK2hRTKHG\n- Z9MwnzdkZ87xzNqjy4Ly\n 365 \N 189.186.61.181 3dbe4a01-fd07-4b5b-b528-9557eec3c671 2020-09-27 00:56:43.049389 41435 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-26 00:28:20.424301000 Z\n- &1 2020-09-26 00:42:49.291965000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-27 00:57:29.536938538 Z\nsign_in_count:\n- 237\n- 238\n 477 \N 189.186.61.181 62121dd1-1a04-48d4-9b0c-97eadbb745dd 2020-09-27 00:57:29.542715 41436 18 User \N \N 18 User \N update ---\nunique_session_id:\n- xg-uwikk9yXbe2dxeBus\n- 5RD5-pnVJMuwkkg1cF3s\n 478 \N 189.186.61.181 62121dd1-1a04-48d4-9b0c-97eadbb745dd 2020-09-27 00:57:29.561082 41437 1108 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1083\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.2298E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.91599E3\nphysical_cash: !ruby/object:BigDecimal 18:0.91599E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.61.181 e39c5e76-5d3b-4ee3-90fe-4d4d8a11b4d2 2020-09-27 01:01:10.250738 41438 1083 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.61.181 e39c5e76-5d3b-4ee3-90fe-4d4d8a11b4d2 2020-09-27 01:01:10.264951 41439 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-25 16:35:16.828678000 Z\n- &1 2020-09-26 20:14:42.925486000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-27 01:03:05.545468153 Z\nsign_in_count:\n- 652\n- 653\n 1309 \N 187.149.42.195 b836a649-a8f0-459b-bc78-304e65c87793 2020-09-27 01:03:05.553355 41440 2 User \N \N 2 User \N update ---\nunique_session_id:\n- jBbVEbUsayAdjbcv_CPw\n- Pia43jG6xyf9hxNPP9BY\n 1310 \N 187.149.42.195 b836a649-a8f0-459b-bc78-304e65c87793 2020-09-27 01:03:05.572738 41441 1084 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.825E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 825.0 187.149.42.195 772b5ab9-7697-4570-b110-54f216dddcaa 2020-09-27 01:04:09.346968 41442 4075 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1084\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 2988\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1424 187.149.42.195 ddea9ce0-9b9c-4678-a1bf-e602ba552f44 2020-09-27 01:04:46.539209 41443 2988 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.42.195 81e02577-6d3d-4cfe-9946-d763f87bba8f 2020-09-27 01:04:50.546659 41444 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-22 17:40:11.097717000 Z\n- &1 2020-09-26 18:34:59.349163000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-27 01:07:01.636879929 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\nsign_in_count:\n- 301\n- 302\n 605 \N 189.186.61.181 466a2874-489a-4a7b-8251-114347044f18 2020-09-27 01:07:01.644355 41445 21 User \N \N 21 User \N update ---\nunique_session_id:\n- mtRmDVzhkPSsjGEFWPcF\n- yZRSWEWQ-TrH5xotdVUz\n 606 \N 189.186.61.181 466a2874-489a-4a7b-8251-114347044f18 2020-09-27 01:07:01.660249 41446 1085 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.91599E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 915.99 189.186.61.181 d3b73979-81bc-4c12-8f78-0a42e51aeae7 2020-09-27 01:07:13.379977 41447 3063 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1085\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-26\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-679\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.61.181 b0818861-c1fe-4dd1-8899-dd10366e78ba 2020-09-27 01:07:22.114514 41448 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 66 \N 189.186.61.181 b0818861-c1fe-4dd1-8899-dd10366e78ba 2020-09-27 01:07:22.143995 41449 3063 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.61.181 ee9fb978-0b18-4dc4-8837-25a300760ed7 2020-09-27 01:07:31.315873 41450 4076 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1085\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 3063\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-679\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-679 189.186.61.181 ee9fb978-0b18-4dc4-8837-25a300760ed7 2020-09-27 01:07:31.337515 41451 1109 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1085\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1499E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.914E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2414E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.61.181 85394f84-b0e2-4e73-b69f-bbaab15ca198 2020-09-27 01:08:25.911737 41452 1085 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.61.181 85394f84-b0e2-4e73-b69f-bbaab15ca198 2020-09-27 01:08:25.950945 41453 3064 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1084\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-09-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1465\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 a4728e34-9e1b-4a80-8d9b-6f375f48c646 2020-09-27 01:08:58.992665 41454 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.43E2\n- !ruby/object:BigDecimal 18:0.42E2\n 18 \N 187.149.42.195 a4728e34-9e1b-4a80-8d9b-6f375f48c646 2020-09-27 01:08:59.018148 41455 3064 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 3f3a033b-0fb2-4606-b7ae-7d17c138c6f1 2020-09-27 01:09:14.279621 41456 4077 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1084\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49E2\nmove_type: '1'\nsale_id: 3064\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1465\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1465 187.149.42.195 3f3a033b-0fb2-4606-b7ae-7d17c138c6f1 2020-09-27 01:09:14.303738 41457 4078 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1084\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 3064\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1465\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.49E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1465 187.149.42.195 e9e802b8-20af-41db-ba37-34eef7d205bf 2020-09-27 01:09:15.670218 41458 4078 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1084\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 3064\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1465\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.49E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.42.195 8b94ec7d-52ac-4521-9556-7b0f036a8fec 2020-09-27 01:09:22.281509 41459 1110 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1084\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.548E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.2E3\ncash_fund: !ruby/object:BigDecimal 18:0.1173E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1373E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.195 1957b15f-a0b1-4c02-9be4-b9a834bec794 2020-09-27 01:11:01.005643 41460 1084 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.195 1957b15f-a0b1-4c02-9be4-b9a834bec794 2020-09-27 01:11:01.018912 41461 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-26 06:45:42.404767000 Z\n- &1 2020-09-27 00:07:49.119333000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-27 01:25:53.919937324 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534892\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938542\n mask_addr: 4294967295\nsign_in_count:\n- 1904\n- 1905\n 3810 \N 200.68.151.238 a502a300-ed5e-44f7-a2fd-d6a9ffc3e9d0 2020-09-27 01:25:53.928187 41462 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1pbye3FjxGzbyykuqcZJ\n- hP5zMA4WU89Qy_zs79-8\n 3811 \N 200.68.151.238 a502a300-ed5e-44f7-a2fd-d6a9ffc3e9d0 2020-09-27 01:25:53.9495 41463 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-27 00:07:49.119333000 Z\n- &1 2020-09-27 01:25:53.919937000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-27 06:06:30.430074877 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938542\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938542\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945605\n mask_addr: 4294967295\nsign_in_count:\n- 1905\n- 1906\n 3812 \N 200.68.179.133 9a536b2a-1b61-4ea4-bdd8-552a3960473d 2020-09-27 06:06:30.437805 41464 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hP5zMA4WU89Qy_zs79-8\n- HoJEXxR6sWhogo8bo4AU\n 3813 \N 200.68.179.133 9a536b2a-1b61-4ea4-bdd8-552a3960473d 2020-09-27 06:06:30.458008 41465 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-27 01:25:53.919937000 Z\n- &1 2020-09-27 06:06:30.430074000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-27 17:36:31.634615868 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938542\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945605\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945605\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534916\n mask_addr: 4294967295\nsign_in_count:\n- 1906\n- 1907\n 3814 \N 177.228.99.132 81659cec-8926-47ea-9d8d-179066a4cadf 2020-09-27 17:36:31.668942 41466 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HoJEXxR6sWhogo8bo4AU\n- 71QbEM48wtuC8vEPbjBf\n 3815 \N 177.228.99.132 81659cec-8926-47ea-9d8d-179066a4cadf 2020-09-27 17:36:31.699877 41467 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-27 06:06:30.430074000 Z\n- &1 2020-09-27 17:36:31.634615000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-27 19:14:28.045095496 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945605\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534916\n mask_addr: 4294967295\nsign_in_count:\n- 1907\n- 1908\n 3816 \N 177.228.99.132 c1ee3721-83c7-4c37-9df4-765da8258d9f 2020-09-27 19:14:28.055192 41468 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 71QbEM48wtuC8vEPbjBf\n- 1Ry6a8hPQTyF1KE1cFo6\n 3817 \N 177.228.99.132 c1ee3721-83c7-4c37-9df4-765da8258d9f 2020-09-27 19:14:28.080406 41469 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-26 20:14:42.925486000 Z\n- &1 2020-09-27 01:03:05.545468000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-28 17:29:43.503946506 Z\nsign_in_count:\n- 653\n- 654\n 1311 \N 187.149.42.195 6b89c7e1-f5ec-4735-9543-632c9238cb16 2020-09-28 17:29:43.538793 41470 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Pia43jG6xyf9hxNPP9BY\n- Us8pWZyGKRzi37wgCWDG\n 1312 \N 187.149.42.195 6b89c7e1-f5ec-4735-9543-632c9238cb16 2020-09-28 17:29:43.569744 41494 30 User \N \N 30 User \N update ---\nunique_session_id:\n- dKiHBsJcfSm7drqDtk9E\n- n7J1iAmETs7kvNndn4UN\n 11 \N 189.186.61.181 40fe55f8-69eb-487b-a87e-6dd519e6dbb5 2020-09-28 19:22:32.980544 41472 3065 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1086\namount: !ruby/object:BigDecimal 18:0.969E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.869E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-09-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1466\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 6130cc6c-e736-42a9-8e4d-c4abbbfb6e98 2020-09-28 17:30:39.366179 41473 1604 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.42.195 6130cc6c-e736-42a9-8e4d-c4abbbfb6e98 2020-09-28 17:30:39.406462 41474 3065 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 b2b75a99-5f50-41fd-8a86-62e87622398a 2020-09-28 17:30:44.403118 41475 4079 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1086\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 3065\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1466\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1466 187.149.42.195 b2b75a99-5f50-41fd-8a86-62e87622398a 2020-09-28 17:30:44.425746 41476 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-26 18:34:59.349163000 Z\n- &1 2020-09-27 01:07:01.636879000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-28 18:59:09.335055579 Z\nsign_in_count:\n- 302\n- 303\n 607 \N 189.186.61.181 7cf65a15-ae60-477c-91ec-062af3e7ef31 2020-09-28 18:59:09.34367 41477 21 User \N \N 21 User \N update ---\nunique_session_id:\n- yZRSWEWQ-TrH5xotdVUz\n- bdbys-7UNPG_6rmMoFJf\n 608 \N 189.186.61.181 7cf65a15-ae60-477c-91ec-062af3e7ef31 2020-09-28 18:59:09.361069 41478 1355 Product \N \N 21 User \N create ---\nsku: BLU-1355\nname: BLS-0143\ndescription: BLUSA APEACH FLORES ROSAS Y LILAS\nprice_base: !ruby/object:BigDecimal 18:0.286E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1355 fue creado. 189.186.61.181 9a9e0abe-0c79-4cd3-ae35-e0e7f1046495 2020-09-28 19:09:10.045557 41479 1355 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001355'\n 2 \N 189.186.61.181 9a9e0abe-0c79-4cd3-ae35-e0e7f1046495 2020-09-28 19:09:10.098366 41480 2336 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1355\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.61.181 9a9e0abe-0c79-4cd3-ae35-e0e7f1046495 2020-09-28 19:09:10.14129 41481 1356 Product \N \N 21 User \N create ---\nsku: BLU-1356\nname: BLS-0144\ndescription: BLUSA BEIGE CON DESTELLOS DORADOS Y PLATEADOS\nprice_base: !ruby/object:BigDecimal 18:0.286E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1356 fue creado. 189.186.61.181 7142e128-a39f-4793-b88e-33f1b2a367ff 2020-09-28 19:10:47.349321 41482 1356 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001356'\n 2 \N 189.186.61.181 7142e128-a39f-4793-b88e-33f1b2a367ff 2020-09-28 19:10:47.378382 41483 2337 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1356\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.61.181 7142e128-a39f-4793-b88e-33f1b2a367ff 2020-09-28 19:10:47.406988 41484 399 Purchase \N \N 21 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-98\namount: !ruby/object:BigDecimal 18:0.1716E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1716E4\nobservations: ''\npurchase_date: 2020-09-28\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-98 por $ 1716.0 MXN creada. 189.186.61.181 b2a33086-6cf9-4302-91a9-f7c1d9166732 2020-09-28 19:11:21.400753 41485 2336 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.61.181 b2a33086-6cf9-4302-91a9-f7c1d9166732 2020-09-28 19:11:21.423112 41486 2337 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.61.181 b2a33086-6cf9-4302-91a9-f7c1d9166732 2020-09-28 19:11:21.450516 41487 1087 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.914E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 914.0 189.186.61.181 7293cb04-6918-43df-9e1c-5f3d8e673317 2020-09-28 19:12:30.671969 41488 400 Customer \N \N 21 User \N create ---\nnick_name: IRMA PAYAN\nphone: "(667) 239-0709"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente IRMA PAYAN fue registrado. 189.186.61.181 91abedba-2004-42cb-b3bb-0216152f997d 2020-09-28 19:13:16.183577 41489 3066 Sale \N \N 21 User \N create ---\ncustomer_id: 400\nuser_id: 21\nopen_cash_register_id: 1087\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-09-28\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-680\nexpiration_date: 2020-11-02\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.61.181 c6450090-32eb-43b1-b04d-267c9f7b8578 2020-09-28 19:13:38.826463 41490 2336 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.61.181 c6450090-32eb-43b1-b04d-267c9f7b8578 2020-09-28 19:13:38.856187 41491 4080 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1087\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3066\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-680\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-680 189.186.61.181 a028a27e-13a3-47d1-85d9-ddb070e28bde 2020-09-28 19:13:44.632781 41492 3066 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.61.181 ec73404a-c719-4188-af52-3d283161f4c8 2020-09-28 19:13:50.869384 41493 30 User \N \N 30 User \N update ---\nlast_sign_in_at:\n- 2020-09-21 18:37:39.393314000 Z\n- &1 2020-09-22 20:38:43.282232000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-28 19:22:32.956965687 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\nsign_in_count:\n- 4\n- 5\n 10 \N 189.186.61.181 40fe55f8-69eb-487b-a87e-6dd519e6dbb5 2020-09-28 19:22:32.964766 41495 400 Purchase \N \N 30 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-163\namount: !ruby/object:BigDecimal 18:0.2002E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2002E4\nobservations: ''\npurchase_date: 2020-09-28\nuser_id: '30'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-163 por $ 2002.0 MXN creada. 189.186.61.181 c82af4a4-9845-488c-94c3-d3038cc4fe94 2020-09-28 19:23:25.070702 41496 2338 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1355\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.61.181 c82af4a4-9845-488c-94c3-d3038cc4fe94 2020-09-28 19:23:25.109675 41497 2339 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1356\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.61.181 c82af4a4-9845-488c-94c3-d3038cc4fe94 2020-09-28 19:23:25.151091 41498 3067 Sale \N \N 2 User \N create ---\ncustomer_id: 20\nuser_id: 2\nopen_cash_register_id: 1086\namount: !ruby/object:BigDecimal 18:0.4334E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4334E4\nstatus: 0\ndate_sale: 2020-09-28\nsaletype: 0\nseller_id: 30\nsale_code: PV1-V-1467\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 41b0d240-7282-4eff-b55e-0ed42c4a25b5 2020-09-28 20:39:15.758005 41499 2234 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.42.195 41b0d240-7282-4eff-b55e-0ed42c4a25b5 2020-09-28 20:39:15.790156 41500 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 31 \N 187.149.42.195 41b0d240-7282-4eff-b55e-0ed42c4a25b5 2020-09-28 20:39:15.817032 41501 2298 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.42.195 41b0d240-7282-4eff-b55e-0ed42c4a25b5 2020-09-28 20:39:15.844351 41502 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 23 \N 187.149.42.195 41b0d240-7282-4eff-b55e-0ed42c4a25b5 2020-09-28 20:39:15.8735 41503 1759 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.42.195 41b0d240-7282-4eff-b55e-0ed42c4a25b5 2020-09-28 20:39:15.90126 41504 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-27 17:36:31.634615000 Z\n- &1 2020-09-27 19:14:28.045095000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-28 20:42:57.959914571 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534916\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946049\n mask_addr: 4294967295\nsign_in_count:\n- 1908\n- 1909\n 3818 \N 200.68.181.65 0c09c98f-6840-4ff3-bb8a-d250f92b3c4a 2020-09-28 20:42:57.967906 41505 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1Ry6a8hPQTyF1KE1cFo6\n- HDFwWosWLBysKntu3KeX\n 3819 \N 200.68.181.65 0c09c98f-6840-4ff3-bb8a-d250f92b3c4a 2020-09-28 20:42:57.984562 41506 3068 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1086\namount: !ruby/object:BigDecimal 18:0.1189E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1189E4\nstatus: 0\ndate_sale: 2020-09-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1468\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 75b83eee-f2c8-4040-8419-b47639150ef2 2020-09-28 22:46:37.62687 41507 2229 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.42.195 75b83eee-f2c8-4040-8419-b47639150ef2 2020-09-28 22:46:37.655191 41508 3068 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 fa43764b-2c8b-426b-8b12-844c4a55bb29 2020-09-28 22:46:42.129753 41509 4081 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1086\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1189E4\nmove_type: '1'\nsale_id: 3068\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1468\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1189E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1468 187.149.42.195 fa43764b-2c8b-426b-8b12-844c4a55bb29 2020-09-28 22:46:42.161079 41510 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-27 19:14:28.045095000 Z\n- &1 2020-09-28 20:42:57.959914000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-28 22:58:30.971773688 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534916\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946049\n mask_addr: 4294967295\nsign_in_count:\n- 1909\n- 1910\n 3820 \N 200.68.181.65 838d7185-bcf7-4bca-94e6-adec3816b604 2020-09-28 22:58:30.979316 41511 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HDFwWosWLBysKntu3KeX\n- JZdz4U73Ca1CvsvPjB4u\n 3821 \N 200.68.181.65 838d7185-bcf7-4bca-94e6-adec3816b604 2020-09-28 22:58:31.001854 41512 4082 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1087\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 2847\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-572 189.186.61.181 26234e78-0cd9-4a80-892f-89e3df0c7618 2020-09-29 00:45:42.5273 41513 1111 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1086\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1289E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.14E4\ncash_fund: !ruby/object:BigDecimal 18:0.1062E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2462E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.195 c69e90c6-d6e7-49a4-bce9-b3670cab2aa1 2020-09-29 00:49:44.65924 41514 1086 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.195 c69e90c6-d6e7-49a4-bce9-b3670cab2aa1 2020-09-29 00:49:44.676419 41515 338 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 1087\nquantity: !ruby/object:BigDecimal 18:0.85E2\nstatus: 1\nobservations: COMPRA DE BATERIAS\nexpense_date: 2020-09-28\nexpense_code: PV3-E-43\n 1 Egreso por 85.0 registrado 189.186.61.181 f3386d18-5a94-48ae-85dc-c5ccd432ce2a 2020-09-29 01:00:31.698834 41516 4083 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1087\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.85E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 338\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.61.181 f3386d18-5a94-48ae-85dc-c5ccd432ce2a 2020-09-29 01:00:31.720512 41517 3066 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV3-V-680 cancelada. 189.186.61.181 e55aa076-04d5-40d3-bc54-bc194f039e1c 2020-09-29 01:01:13.431009 41518 4080 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1087\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3066\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-680\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.61.181 e55aa076-04d5-40d3-bc54-bc194f039e1c 2020-09-29 01:01:13.462009 41519 2336 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.61.181 e55aa076-04d5-40d3-bc54-bc194f039e1c 2020-09-29 01:01:13.491822 41520 1112 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1087\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.3E3\namount_out: !ruby/object:BigDecimal 18:0.85E2\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.3E3\ncash_fund: !ruby/object:BigDecimal 18:0.829E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1129E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.61.181 e429d124-21cf-4d24-bac0-adbb7fd8f614 2020-09-29 01:05:03.389661 41521 1087 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.61.181 e429d124-21cf-4d24-bac0-adbb7fd8f614 2020-09-29 01:05:03.403073 41522 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-28 20:42:57.959914000 Z\n- &1 2020-09-28 22:58:30.971773000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-29 06:57:25.477337582 Z\nsign_in_count:\n- 1910\n- 1911\n 3822 \N 200.68.181.65 08f0b23e-0488-49ad-b857-5c864675a7fb 2020-09-29 06:57:25.487268 41523 4 User \N \N 4 User \N update ---\nunique_session_id:\n- JZdz4U73Ca1CvsvPjB4u\n- pUiqkjxJsjZ964YQoiws\n 3823 \N 200.68.181.65 08f0b23e-0488-49ad-b857-5c864675a7fb 2020-09-29 06:57:25.509111 41524 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-27 01:03:05.545468000 Z\n- &1 2020-09-28 17:29:43.503946000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-29 16:23:12.077770689 Z\nsign_in_count:\n- 654\n- 655\n 1313 \N 187.149.42.195 d7ffecf6-e3d3-4762-89f8-6118c75c5f7c 2020-09-29 16:23:12.098852 41525 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Us8pWZyGKRzi37wgCWDG\n- MyYJyK9QKvGxbU6mvio2\n 1314 \N 187.149.42.195 d7ffecf6-e3d3-4762-89f8-6118c75c5f7c 2020-09-29 16:23:12.125225 41526 1088 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1062E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1062.0 187.149.42.195 5dd1005b-400b-4327-a2bb-21db7ec695bc 2020-09-29 16:23:32.095948 41527 4084 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1088\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 2879\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1372 187.149.42.195 d123056b-ad4f-4466-a5ac-0b870925adc3 2020-09-29 16:24:20.946094 41528 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-28 22:58:30.971773000 Z\n- &1 2020-09-29 06:57:25.477337000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-29 18:34:46.672367258 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946049\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\nsign_in_count:\n- 1911\n- 1912\n 3824 \N 189.186.61.181 4c3d5c71-492f-4165-aec7-246fa7b4713c 2020-09-29 18:34:46.681275 41529 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pUiqkjxJsjZ964YQoiws\n- aPtL_7SnFceop_n4CV_y\n 3825 \N 189.186.61.181 4c3d5c71-492f-4165-aec7-246fa7b4713c 2020-09-29 18:34:46.701927 41530 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-26 00:42:49.291965000 Z\n- &1 2020-09-27 00:57:29.536938000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-29 18:54:50.303745405 Z\nsign_in_count:\n- 238\n- 239\n 479 \N 189.186.61.181 2c04fae5-876b-4d8d-9edb-1000646b0e04 2020-09-29 18:54:50.312946 41531 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 5RD5-pnVJMuwkkg1cF3s\n- j5yg5vt7YxjrqCm8RPxT\n 480 \N 189.186.61.181 2c04fae5-876b-4d8d-9edb-1000646b0e04 2020-09-29 18:54:50.334347 41532 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-29 06:57:25.477337000 Z\n- &1 2020-09-29 18:34:46.672367000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-29 19:44:29.470245098 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946049\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\nsign_in_count:\n- 1912\n- 1913\n 3826 \N 189.186.61.181 02b37821-98e5-473b-9563-51ee976e2797 2020-09-29 19:44:29.477923 41533 4 User \N \N 4 User \N update ---\nunique_session_id:\n- aPtL_7SnFceop_n4CV_y\n- 9kGocrsJDdqaCiHxPqCA\n 3827 \N 189.186.61.181 02b37821-98e5-473b-9563-51ee976e2797 2020-09-29 19:44:29.498786 41534 2263 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.61.181 4df26a0a-ade5-45d2-9926-0820725f54bc 2020-09-29 19:45:00.806227 41535 2263 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.61.181 a06dcc12-db61-4863-9ec1-58ef62abebcc 2020-09-29 19:45:04.198307 41536 690 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-09-29\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.61.181 8bb22be1-5e81-4280-8acd-2cb3bdc8214c 2020-09-29 19:45:05.678691 41537 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-27 00:57:29.536938000 Z\n- &1 2020-09-29 18:54:50.303745000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-29 19:46:04.226534501 Z\nsign_in_count:\n- 239\n- 240\n 481 \N 189.186.61.181 aa305528-e28f-4055-a0bb-cae32bef2da1 2020-09-29 19:46:04.232459 41538 18 User \N \N 18 User \N update ---\nunique_session_id:\n- j5yg5vt7YxjrqCm8RPxT\n- JpDea4sHzvad7reb3nw8\n 482 \N 189.186.61.181 aa305528-e28f-4055-a0bb-cae32bef2da1 2020-09-29 19:46:04.245728 41539 2252 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.42.195 fee033e6-9e5b-428f-a4a4-fd9f6cef1025 2020-09-29 19:46:53.457192 41540 2252 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.42.195 0f3525e7-1fc3-48d1-92c0-d9144233646b 2020-09-29 19:47:00.99129 41541 689 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-29\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.42.195 88d06fd2-da34-4f09-9acb-fae068f1bc17 2020-09-29 19:47:21.070092 41542 1568 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.42.195 88d06fd2-da34-4f09-9acb-fae068f1bc17 2020-09-29 19:47:21.103346 41543 1089 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.829E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 829.0 189.186.61.181 69806225-b7ba-47a3-9f9b-6d6ce7f7bb43 2020-09-29 19:47:37.178082 41544 690 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-29\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.61.181 3f473543-a73b-4fd2-954b-a2fa5e05b856 2020-09-29 19:47:59.17873 41545 2340 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1339\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.61.181 3f473543-a73b-4fd2-954b-a2fa5e05b856 2020-09-29 19:47:59.204277 41546 3069 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1089\namount: !ruby/object:BigDecimal 18:0.4726E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4726E4\nstatus: 0\ndate_sale: 2020-09-29\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-681\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.61.181 6d5b1082-6952-4453-8a34-c80811c094ac 2020-09-29 19:57:57.581784 41547 2340 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.61.181 6d5b1082-6952-4453-8a34-c80811c094ac 2020-09-29 19:57:57.617033 41548 2040 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.61.181 6d5b1082-6952-4453-8a34-c80811c094ac 2020-09-29 19:57:57.64492 41549 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 67 \N 189.186.61.181 6d5b1082-6952-4453-8a34-c80811c094ac 2020-09-29 19:57:57.670663 41550 2052 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.61.181 6d5b1082-6952-4453-8a34-c80811c094ac 2020-09-29 19:57:57.697301 41551 3069 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.61.181 2738428c-b3a8-41b7-a692-897188b2eef1 2020-09-29 19:58:05.882344 41552 4085 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1089\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.4726E4\nmove_type: '1'\nsale_id: 3069\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-681\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4726E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-681 189.186.61.181 2738428c-b3a8-41b7-a692-897188b2eef1 2020-09-29 19:58:05.909902 41553 4086 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1089\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 2914\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-611 189.186.61.181 0664b1d8-34a2-4c75-b772-b77112739721 2020-09-29 20:01:41.92665 41554 2914 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.61.181 cfd360d4-1840-4fcd-8e8b-1a479538a936 2020-09-29 20:01:43.779795 41555 3070 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1089\namount: !ruby/object:BigDecimal 18:0.2598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2598E4\nstatus: 0\ndate_sale: 2020-09-29\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-682\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.61.181 e0e4e8ea-a383-44a0-9e2e-df0ef557a17e 2020-09-29 20:34:08.81049 41556 2220 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.61.181 e0e4e8ea-a383-44a0-9e2e-df0ef557a17e 2020-09-29 20:34:08.839185 41557 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 39 \N 189.186.61.181 e0e4e8ea-a383-44a0-9e2e-df0ef557a17e 2020-09-29 20:34:08.864129 41558 3070 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.61.181 908d2195-3c80-42b9-84d9-aed0e2b87caa 2020-09-29 20:34:29.84395 41559 4087 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1089\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2598E4\nmove_type: '1'\nsale_id: 3070\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-682\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.26E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-682 189.186.61.181 908d2195-3c80-42b9-84d9-aed0e2b87caa 2020-09-29 20:34:29.866116 41560 688 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-29\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.61.181 af9d9a6a-ed52-4a5e-ad70-b5f424f1ee0a 2020-09-29 20:38:08.436551 41561 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 69 \N 189.186.61.181 af9d9a6a-ed52-4a5e-ad70-b5f424f1ee0a 2020-09-29 20:38:08.455183 41562 2059 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.42.195 4b341ad8-06ae-4eec-a1f7-08108e423495 2020-09-29 20:39:07.427382 41563 691 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-09-29\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.42.195 c5645ce4-795c-4ed1-839d-03dced7cf4ef 2020-09-29 20:39:09.470813 41564 691 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-09-29\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.61.181 fa07ab7f-be50-4dd8-b98e-451c16da2e6c 2020-09-29 20:39:54.232724 41565 2042 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.61.181 fa07ab7f-be50-4dd8-b98e-451c16da2e6c 2020-09-29 20:39:54.251262 41566 3071 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1089\namount: !ruby/object:BigDecimal 18:0.2398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2398E4\nstatus: 0\ndate_sale: 2020-09-29\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-683\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.61.181 607cc44b-fbe2-4358-9bc3-78130cc7802d 2020-09-29 20:41:53.866417 41567 2270 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.61.181 607cc44b-fbe2-4358-9bc3-78130cc7802d 2020-09-29 20:41:53.895768 41568 2042 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.61.181 607cc44b-fbe2-4358-9bc3-78130cc7802d 2020-09-29 20:41:53.922087 41569 3071 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.61.181 810f10ca-00a9-42d6-9cdd-ebe95b0b5a7c 2020-09-29 20:44:11.650379 41570 4088 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1089\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2398E4\nmove_type: '1'\nsale_id: 3071\ncardnumber: 2663\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-683\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-683 189.186.61.181 810f10ca-00a9-42d6-9cdd-ebe95b0b5a7c 2020-09-29 20:44:11.680848 41571 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-29 18:34:46.672367000 Z\n- &1 2020-09-29 19:44:29.470245000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-29 20:53:40.441821955 Z\nsign_in_count:\n- 1913\n- 1914\n 3828 \N 189.186.61.181 54e9b6a4-cf6f-404e-a159-96daba2d1aea 2020-09-29 20:53:40.448556 41572 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9kGocrsJDdqaCiHxPqCA\n- 4XYoo-_CsWtAwzdyngPz\n 3829 \N 189.186.61.181 54e9b6a4-cf6f-404e-a159-96daba2d1aea 2020-09-29 20:53:40.468681 41573 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-29 18:54:50.303745000 Z\n- &1 2020-09-29 19:46:04.226534000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-29 21:04:50.051570294 Z\nsign_in_count:\n- 240\n- 241\n 483 \N 189.186.61.181 e0aeb300-c795-41dc-b83c-068dfccc0331 2020-09-29 21:04:50.058209 41574 18 User \N \N 18 User \N update ---\nunique_session_id:\n- JpDea4sHzvad7reb3nw8\n- HGVHe8oUdDXzwhYCFFXH\n 484 \N 189.186.61.181 e0aeb300-c795-41dc-b83c-068dfccc0331 2020-09-29 21:04:50.073916 41575 3072 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1089\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-29\nsaletype: 1\nseller_id: 29\nsale_code: PV3-V-684\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.61.181 f89ea023-cb11-4f58-a5fc-e1e6831618fc 2020-09-29 21:06:08.393129 41576 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 40 \N 189.186.61.181 f89ea023-cb11-4f58-a5fc-e1e6831618fc 2020-09-29 21:06:08.418695 41577 3072 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.61.181 65d74de8-0139-47fc-b55a-7718446a15cd 2020-09-29 21:06:18.538615 41578 4089 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1089\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3072\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-684\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-684 189.186.61.181 65d74de8-0139-47fc-b55a-7718446a15cd 2020-09-29 21:06:18.561381 41579 401 Customer \N \N 18 User \N create ---\nnick_name: KARELY CARO\nphone: "(667) 160-4046"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KARELY CARO fue registrado. 189.186.61.181 e4ea27be-5024-4ac5-9239-ab3e6c6fcce5 2020-09-29 21:34:15.360564 41580 3073 Sale \N \N 18 User \N create ---\ncustomer_id: 401\nuser_id: 18\nopen_cash_register_id: 1089\namount: !ruby/object:BigDecimal 18:0.264524E4\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.2628E4\nstatus: 0\ndate_sale: 2020-09-29\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-685\nexpiration_date: 2020-11-03\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.61.181 2066fd84-82c1-4e6c-a267-f263a7f77388 2020-09-29 21:36:29.863725 41581 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 68 \N 189.186.61.181 2066fd84-82c1-4e6c-a267-f263a7f77388 2020-09-29 21:36:29.9115 41582 2340 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.61.181 2066fd84-82c1-4e6c-a267-f263a7f77388 2020-09-29 21:36:29.946365 41583 939 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E2\n- !ruby/object:BigDecimal 18:0.28E2\n 10 \N 189.186.61.181 2066fd84-82c1-4e6c-a267-f263a7f77388 2020-09-29 21:36:29.971531 41584 4090 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1089\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 3073\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-685\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-685 189.186.61.181 0feb75cf-2cf9-46a7-9a11-f1789e0359a5 2020-09-29 21:36:43.81979 41585 3073 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.61.181 9706395a-4135-48ba-b5bd-5d942df4d5e3 2020-09-29 21:36:45.041782 41586 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 69 \N 189.186.61.181 1da6556f-6d98-4e50-b08a-f0ce87d60ea3 2020-09-29 21:43:05.124534 41587 692 Transfer \N \N 18 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-09-29\nuser_id: 18\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.61.181 be1358c3-645e-4bf5-8eb8-febd25b7e5eb 2020-09-29 21:43:16.264849 41588 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-29 19:44:29.470245000 Z\n- &1 2020-09-29 20:53:40.441821000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-29 21:46:34.933877263 Z\nsign_in_count:\n- 1914\n- 1915\n 3830 \N 189.186.61.181 0b8097e1-8720-4a40-805a-5377b3c424fc 2020-09-29 21:46:34.941355 41589 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4XYoo-_CsWtAwzdyngPz\n- m48dUiazy3XY3EY-UUKZ\n 3831 \N 189.186.61.181 0b8097e1-8720-4a40-805a-5377b3c424fc 2020-09-29 21:46:34.962036 41590 3074 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1088\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-09-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1469\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 ff3fd621-4f57-4650-8f15-f4de021211b2 2020-09-29 22:23:54.169068 41591 11 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.42.195 ff3fd621-4f57-4650-8f15-f4de021211b2 2020-09-29 22:23:54.199367 41592 3074 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 08f54235-207e-4664-8615-b95a3f091cc6 2020-09-29 22:24:02.555389 41593 4091 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1088\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 3074\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1469\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1469 187.149.42.195 08f54235-207e-4664-8615-b95a3f091cc6 2020-09-29 22:24:02.582087 41594 3075 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1088\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-09-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1470\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 6cee9a9b-d0d0-439a-b94c-d2a92cbfd295 2020-09-29 22:35:38.690099 41595 1883 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.42.195 6cee9a9b-d0d0-439a-b94c-d2a92cbfd295 2020-09-29 22:35:38.742063 41596 3075 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 3b0bc1d2-9e86-40f8-88dd-7e037c391f00 2020-09-29 22:35:42.234393 41597 4092 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1088\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 3075\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1470\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1470 187.149.42.195 3b0bc1d2-9e86-40f8-88dd-7e037c391f00 2020-09-29 22:35:42.258695 41598 3076 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1088\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.55E3\nstatus: 0\ndate_sale: 2020-09-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1471\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 062f989e-1994-4e87-9c11-60c417d58cd6 2020-09-29 22:46:53.442361 41599 506 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 11 \N 187.149.42.195 062f989e-1994-4e87-9c11-60c417d58cd6 2020-09-29 22:46:53.471633 41600 3076 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 2da28f95-c827-484a-8a9a-a582a6ad57c1 2020-09-29 22:46:59.355891 41601 4093 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1088\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.55E3\nmove_type: '1'\nsale_id: 3076\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1471\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.55E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1471 187.149.42.195 2da28f95-c827-484a-8a9a-a582a6ad57c1 2020-09-29 22:46:59.376439 41602 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-27 01:07:01.636879000 Z\n- &1 2020-09-28 18:59:09.335055000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-29 22:51:56.246637266 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143200\n mask_addr: 4294967295\nsign_in_count:\n- 303\n- 304\n 609 \N 189.186.233.32 c1919478-cecd-4e8f-84a9-56e87eeeca95 2020-09-29 22:51:56.256535 41603 21 User \N \N 21 User \N update ---\nunique_session_id:\n- bdbys-7UNPG_6rmMoFJf\n- uPxX81xfoMoFhLUDN78q\n 610 \N 189.186.233.32 c1919478-cecd-4e8f-84a9-56e87eeeca95 2020-09-29 22:51:56.275472 41604 402 Customer \N \N 2 User \N create ---\nnick_name: TERESA MONTOYA\nphone: "(667) 473-9235"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente TERESA MONTOYA fue registrado. 187.149.42.195 a0cff536-20b4-4152-ab7d-cf0225ab964b 2020-09-29 23:58:48.788559 41605 3077 Sale \N \N 2 User \N create ---\ncustomer_id: 402\nuser_id: 2\nopen_cash_register_id: 1088\namount: !ruby/object:BigDecimal 18:0.1189E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1189E4\nstatus: 0\ndate_sale: 2020-09-29\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1472\nexpiration_date: 2020-11-03\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 4faf521c-ded4-48a5-8073-8f7be69e2209 2020-09-29 23:59:23.658563 41606 2229 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.42.195 4faf521c-ded4-48a5-8073-8f7be69e2209 2020-09-29 23:59:23.686787 41607 4094 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1088\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3077\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1472\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1472 187.149.42.195 827162e5-6b02-42e5-9125-fd786ee47ee9 2020-09-29 23:59:29.760534 41608 3077 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.195 e0db863c-c8cf-40de-af5f-4fa083759711 2020-09-29 23:59:32.382286 41609 3078 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1088\namount: !ruby/object:BigDecimal 18:0.258E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.258E3\nstatus: 0\ndate_sale: 2020-09-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1473\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 de070ae1-9360-4693-a99f-efb01593ce35 2020-09-30 00:02:04.32326 41610 2065 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.42.195 de070ae1-9360-4693-a99f-efb01593ce35 2020-09-30 00:02:04.354347 41611 2135 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.42.195 de070ae1-9360-4693-a99f-efb01593ce35 2020-09-30 00:02:04.380299 41612 3078 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 aca322a3-17f6-4ce7-be0d-57066ba62040 2020-09-30 00:02:08.276379 41613 4095 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1088\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.258E3\nmove_type: '1'\nsale_id: 3078\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1473\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.258E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1473 187.149.42.195 aca322a3-17f6-4ce7-be0d-57066ba62040 2020-09-30 00:02:08.305932 41614 3079 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1088\namount: !ruby/object:BigDecimal 18:0.868E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.868E3\nstatus: 0\ndate_sale: 2020-09-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1474\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 783d9c0b-b2a3-4d7a-a827-6e00bac9daa9 2020-09-30 00:39:00.121183 41615 2077 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.42.195 783d9c0b-b2a3-4d7a-a827-6e00bac9daa9 2020-09-30 00:39:00.148894 41616 1870 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.42.195 783d9c0b-b2a3-4d7a-a827-6e00bac9daa9 2020-09-30 00:39:00.176035 41617 3079 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 590db74d-e5b5-412d-a1af-bc25a965197d 2020-09-30 00:39:35.397434 41618 4096 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1088\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.868E3\nmove_type: '1'\nsale_id: 3079\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1474\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.868E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1474 187.149.42.195 590db74d-e5b5-412d-a1af-bc25a965197d 2020-09-30 00:39:35.422406 41619 1113 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1088\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3574E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.45E4\ncash_fund: !ruby/object:BigDecimal 18:0.636E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5136E4\nobservations: HAY $500 MAS DE APARTADO DE LIALIANA DE UNA BOLSA CLOE FLOREADA QUE\n LLEGARA EN ESTOS DIAS\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.195 8b126393-da6a-468c-a7f1-11241a0d1c3a 2020-09-30 00:50:06.006521 41620 1088 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.195 8b126393-da6a-468c-a7f1-11241a0d1c3a 2020-09-30 00:50:06.021944 41621 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-29 19:46:04.226534000 Z\n- &1 2020-09-29 21:04:50.051570000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-30 00:50:30.294033977 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123563\n mask_addr: 4294967295\nsign_in_count:\n- 241\n- 242\n 485 \N 189.186.156.107 051fb5b8-deba-4e01-8675-c659f3fa693d 2020-09-30 00:50:30.301089 41622 18 User \N \N 18 User \N update ---\nunique_session_id:\n- HGVHe8oUdDXzwhYCFFXH\n- G33-WvxrJ6Nm8A5yfY-y\n 486 \N 189.186.156.107 051fb5b8-deba-4e01-8675-c659f3fa693d 2020-09-30 00:50:30.316915 41623 1114 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1089\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1232E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.9725E4\ncash_fund: !ruby/object:BigDecimal 18:0.1026E4\nphysical_cash: !ruby/object:BigDecimal 18:0.10751E5\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.156.107 3abb76e8-bc19-42c7-816a-1f77c937d427 2020-09-30 00:57:24.683761 41624 1089 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.156.107 3abb76e8-bc19-42c7-816a-1f77c937d427 2020-09-30 00:57:24.699957 41625 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-29 20:53:40.441821000 Z\n- &1 2020-09-29 21:46:34.933877000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-30 00:57:53.011553049 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123563\n mask_addr: 4294967295\nsign_in_count:\n- 1915\n- 1916\n 3832 \N 189.186.156.107 9caa40c8-3a75-42bc-92e7-52b3390f20dd 2020-09-30 00:57:53.01938 41626 4 User \N \N 4 User \N update ---\nunique_session_id:\n- m48dUiazy3XY3EY-UUKZ\n- Bhhz7oc39eim4qDSwwEa\n 3833 \N 189.186.156.107 9caa40c8-3a75-42bc-92e7-52b3390f20dd 2020-09-30 00:57:53.043248 41627 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-29 21:46:34.933877000 Z\n- &1 2020-09-30 00:57:53.011553000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-30 18:24:29.925185206 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123563\n mask_addr: 4294967295\nsign_in_count:\n- 1916\n- 1917\n 3834 \N 189.186.156.107 ff95ea43-373a-489b-ad25-bbafbe22bc09 2020-09-30 18:24:29.958397 41628 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Bhhz7oc39eim4qDSwwEa\n- J_3__QdxZz_doxW_xp2D\n 3835 \N 189.186.156.107 ff95ea43-373a-489b-ad25-bbafbe22bc09 2020-09-30 18:24:29.992036 41629 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-25 22:03:01.017817000 Z\n- &1 2020-09-26 23:16:14.126841000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-30 18:34:48.358023346 Z\nsign_in_count:\n- 245\n- 246\n 492 \N 187.149.42.195 7cda0c58-bc74-4f93-9d11-4fed8076797f 2020-09-30 18:34:48.364364 41630 1 User \N \N 1 User \N update ---\nunique_session_id:\n- VqRE4PWN9zjnw6okJy3r\n- wYK27TUAERzkQ6tqu7c7\n 493 \N 187.149.42.195 7cda0c58-bc74-4f93-9d11-4fed8076797f 2020-09-30 18:34:48.379332 41631 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-28 17:29:43.503946000 Z\n- &1 2020-09-29 16:23:12.077770000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-30 18:42:24.616305677 Z\nsign_in_count:\n- 655\n- 656\n 1315 \N 187.149.42.195 c3136516-8a34-44e4-9166-a995245a14b1 2020-09-30 18:42:24.62494 41632 2 User \N \N 2 User \N update ---\nunique_session_id:\n- MyYJyK9QKvGxbU6mvio2\n- bsNZuvGij-dKmAg4tMvs\n 1316 \N 187.149.42.195 c3136516-8a34-44e4-9166-a995245a14b1 2020-09-30 18:42:24.64769 41633 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-29 21:04:50.051570000 Z\n- &1 2020-09-30 00:50:30.294033000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-30 19:27:24.809897929 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123563\n mask_addr: 4294967295\nsign_in_count:\n- 242\n- 243\n 487 \N 189.186.156.107 33bcb270-a8a4-48b6-a982-5272edefbb92 2020-09-30 19:27:24.817763 41634 18 User \N \N 18 User \N update ---\nunique_session_id:\n- G33-WvxrJ6Nm8A5yfY-y\n- PMFcbMrrPajsSUe9bFwd\n 488 \N 189.186.156.107 33bcb270-a8a4-48b6-a982-5272edefbb92 2020-09-30 19:27:24.837008 41635 1090 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1026E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1026.0 189.186.156.107 091dd73b-7f45-4e2f-93ee-17c45ab4a3c4 2020-09-30 19:28:05.864298 41636 1091 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.636E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 636.0 187.149.42.195 4914caec-bf89-423a-84fe-20b376a14552 2020-09-30 19:30:21.617174 41637 3080 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1091\namount: !ruby/object:BigDecimal 18:0.139E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.139E3\nstatus: 0\ndate_sale: 2020-09-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1475\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 06a4afe0-5ba0-4b38-abf5-7280e1fc2b2f 2020-09-30 19:31:06.678933 41638 2070 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.42.195 06a4afe0-5ba0-4b38-abf5-7280e1fc2b2f 2020-09-30 19:31:06.720615 41639 3080 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 08ce7ce2-22dc-48c9-a213-db0f2b62ca22 2020-09-30 19:31:10.752955 41640 4097 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1091\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.139E3\nmove_type: '1'\nsale_id: 3080\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1475\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.139E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1475 187.149.42.195 08ce7ce2-22dc-48c9-a213-db0f2b62ca22 2020-09-30 19:31:10.778107 41641 4098 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1091\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.568E3\nmove_type: '1'\nsale_id: 3057\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.568E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1461 187.149.42.195 9c697f53-d3f5-4465-8ef4-fcc951ab18ec 2020-09-30 19:31:35.055636 41642 3057 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.42.195 5776802b-2abd-41e8-85f0-a13c81bad466 2020-09-30 19:31:36.367363 41643 3081 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1090\namount: !ruby/object:BigDecimal 18:0.369E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.369E3\nstatus: 0\ndate_sale: 2020-09-30\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-686\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.156.107 d5c59f41-bfd2-4329-ac5c-10f3f2753e1e 2020-09-30 19:33:07.191556 41644 1964 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.156.107 d5c59f41-bfd2-4329-ac5c-10f3f2753e1e 2020-09-30 19:33:07.219324 41645 3081 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-686 cancelada. 189.186.156.107 7cffa3be-9771-4044-bf89-ceadfbd56b7f 2020-09-30 19:33:45.83758 41646 1964 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.156.107 7cffa3be-9771-4044-bf89-ceadfbd56b7f 2020-09-30 19:33:45.865999 41647 3082 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1090\namount: !ruby/object:BigDecimal 18:0.45348E3\ntax: !ruby/object:BigDecimal 18:0.1352E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.467E3\nstatus: 0\ndate_sale: 2020-09-30\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-687\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.156.107 b1303ab6-6643-4ae2-a45b-3549e3c42ffa 2020-09-30 19:34:28.261568 41648 1964 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.156.107 b1303ab6-6643-4ae2-a45b-3549e3c42ffa 2020-09-30 19:34:28.308476 41649 818 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.45E2\n- !ruby/object:BigDecimal 18:0.43E2\n 27 \N 189.186.156.107 b1303ab6-6643-4ae2-a45b-3549e3c42ffa 2020-09-30 19:34:28.346126 41650 3082 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.156.107 8382c788-a60b-461c-b43a-2b9a8ee8e969 2020-09-30 19:34:39.443504 41651 4099 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1090\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.467E3\nmove_type: '1'\nsale_id: 3082\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-687\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.47E3\nchange: !ruby/object:BigDecimal 18:0.3E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-687 189.186.156.107 8382c788-a60b-461c-b43a-2b9a8ee8e969 2020-09-30 19:34:39.60622 41652 3083 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1090\namount: !ruby/object:BigDecimal 18:0.299E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.299E3\nstatus: 0\ndate_sale: 2020-09-30\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-688\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.156.107 9bb49ef5-5e0b-4893-aa93-3d2be2c5258f 2020-09-30 19:38:17.938795 41653 2190 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.156.107 9bb49ef5-5e0b-4893-aa93-3d2be2c5258f 2020-09-30 19:38:17.967511 41654 3083 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.156.107 6f956aa2-2bd5-452d-9360-4fed57a994dd 2020-09-30 19:48:52.746281 41655 4100 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1090\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.299E3\nmove_type: '1'\nsale_id: 3083\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-688\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.299E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-688 189.186.156.107 6f956aa2-2bd5-452d-9360-4fed57a994dd 2020-09-30 19:48:52.769869 41656 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-30 00:57:53.011553000 Z\n- &1 2020-09-30 18:24:29.925185000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-30 20:02:27.085380350 Z\nsign_in_count:\n- 1917\n- 1918\n 3836 \N 189.186.156.107 1eeedf26-7794-498b-87bf-d80a6d689360 2020-09-30 20:02:27.111566 41657 4 User \N \N 4 User \N update ---\nunique_session_id:\n- J_3__QdxZz_doxW_xp2D\n- 84xrz_m4yQ2_BdweDnAD\n 3837 \N 189.186.156.107 1eeedf26-7794-498b-87bf-d80a6d689360 2020-09-30 20:02:27.147196 41658 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-30 00:50:30.294033000 Z\n- &1 2020-09-30 19:27:24.809897000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-30 20:24:04.741299266 Z\nsign_in_count:\n- 243\n- 244\n 489 \N 189.186.156.107 59b7ab70-3dee-4b65-b32f-567687ac80d4 2020-09-30 20:24:04.747811 41659 18 User \N \N 18 User \N update ---\nunique_session_id:\n- PMFcbMrrPajsSUe9bFwd\n- yoBUXj-aLq3xeXb-kXzs\n 490 \N 189.186.156.107 59b7ab70-3dee-4b65-b32f-567687ac80d4 2020-09-30 20:24:04.764224 41660 3084 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1090\namount: !ruby/object:BigDecimal 18:0.92345E3\ntax: !ruby/object:BigDecimal 18:0.9655E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.102E4\nstatus: 0\ndate_sale: 2020-09-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-689\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.156.107 b8080ca3-492c-4c30-89ab-501f9ab32702 2020-09-30 20:28:02.086554 41661 2184 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.156.107 b8080ca3-492c-4c30-89ab-501f9ab32702 2020-09-30 20:28:02.122137 41662 939 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.28E2\n- !ruby/object:BigDecimal 18:0.26E2\n 11 \N 189.186.156.107 b8080ca3-492c-4c30-89ab-501f9ab32702 2020-09-30 20:28:02.155922 41663 3084 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-689 cancelada. 189.186.156.107 7f1fcc49-a5f3-48d6-bf31-3691672e91ac 2020-09-30 20:30:53.464115 41664 939 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.26E2\n- !ruby/object:BigDecimal 18:0.28E2\n 12 \N 189.186.156.107 7f1fcc49-a5f3-48d6-bf31-3691672e91ac 2020-09-30 20:30:53.48838 41665 2184 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.156.107 7f1fcc49-a5f3-48d6-bf31-3691672e91ac 2020-09-30 20:30:53.511063 41666 3085 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1090\namount: !ruby/object:BigDecimal 18:0.61724E3\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2020-09-30\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-690\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.156.107 c22981ae-5814-4827-b148-18b3ca40fbfb 2020-09-30 20:34:38.370788 41667 939 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.28E2\n- !ruby/object:BigDecimal 18:0.26E2\n 13 \N 189.186.156.107 c22981ae-5814-4827-b148-18b3ca40fbfb 2020-09-30 20:34:38.403436 41668 3085 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.156.107 d35b99c3-38d7-4633-8452-b3d554a476f1 2020-09-30 20:34:55.091695 41669 4101 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1090\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 3085\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-690\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-690 189.186.156.107 d35b99c3-38d7-4633-8452-b3d554a476f1 2020-09-30 20:34:55.11519 41670 3086 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1091\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-09-30\nsaletype: 1\nseller_id: 27\nsale_code: PV1-V-1476\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 a06f5ac3-ac37-4f45-acf6-ab00d29d7af9 2020-09-30 21:11:51.346178 41671 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 32 \N 187.149.42.195 a06f5ac3-ac37-4f45-acf6-ab00d29d7af9 2020-09-30 21:11:51.386018 41672 3086 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 e691f941-ba21-4ae4-b08e-3feeb8460d67 2020-09-30 21:12:49.649524 41673 4102 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1091\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3086\ncardnumber: 6180\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1476\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1476 187.149.42.195 e691f941-ba21-4ae4-b08e-3feeb8460d67 2020-09-30 21:12:49.680843 41674 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-30 18:24:29.925185000 Z\n- &1 2020-09-30 20:02:27.085380000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-30 21:13:28.105484268 Z\nsign_in_count:\n- 1918\n- 1919\n 3838 \N 189.186.156.107 eafda46f-2ce4-4e20-adfe-497f5842d680 2020-09-30 21:13:28.112788 41675 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 84xrz_m4yQ2_BdweDnAD\n- PMre5WMzLJ2Rw4WCysr6\n 3839 \N 189.186.156.107 eafda46f-2ce4-4e20-adfe-497f5842d680 2020-09-30 21:13:28.130174 41676 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-30 20:02:27.085380000 Z\n- &1 2020-09-30 21:13:28.105484000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-30 22:11:18.482001438 Z\nsign_in_count:\n- 1919\n- 1920\n 3840 \N 189.186.156.107 6ce34b22-7cd6-4b9c-8daa-23875e6e6e6b 2020-09-30 22:11:18.490118 41677 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PMre5WMzLJ2Rw4WCysr6\n- MnztzDiEnD56_B4DJFz9\n 3841 \N 189.186.156.107 6ce34b22-7cd6-4b9c-8daa-23875e6e6e6b 2020-09-30 22:11:18.510014 41678 3087 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1091\namount: !ruby/object:BigDecimal 18:0.127159E4\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1368E4\nstatus: 0\ndate_sale: 2020-09-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1477\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 4170fb01-84f7-4704-96e2-4974eddb2697 2020-09-30 22:12:55.649912 41679 175 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.42.195 4170fb01-84f7-4704-96e2-4974eddb2697 2020-09-30 22:12:55.691766 41680 1636 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.42.195 4170fb01-84f7-4704-96e2-4974eddb2697 2020-09-30 22:12:55.726812 41681 3087 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 858fdcdd-73c6-44f2-bd28-2cc55d47b215 2020-09-30 22:13:00.700238 41682 4103 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1091\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1368E4\nmove_type: '1'\nsale_id: 3087\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1477\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1368E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1477 187.149.42.195 858fdcdd-73c6-44f2-bd28-2cc55d47b215 2020-09-30 22:13:00.721798 41683 3088 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1091\namount: !ruby/object:BigDecimal 18:0.1847E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1847E4\nstatus: 0\ndate_sale: 2020-09-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1478\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 31ab2737-6ea6-4252-995a-19b8205efa51 2020-09-30 22:49:08.821602 41684 2242 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.42.195 31ab2737-6ea6-4252-995a-19b8205efa51 2020-09-30 22:49:08.853913 41685 2129 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.195 31ab2737-6ea6-4252-995a-19b8205efa51 2020-09-30 22:49:08.875895 41686 2244 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.42.195 31ab2737-6ea6-4252-995a-19b8205efa51 2020-09-30 22:49:08.90286 41687 3088 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 1d19ba6a-20d5-4b7d-be34-44c4ea02e2e5 2020-09-30 22:49:29.287723 41712 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-30 22:11:18.482001000 Z\n- &1 2020-09-30 23:29:49.417092000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-01 00:14:49.381083066 Z\nsign_in_count:\n- 1921\n- 1922\n 3844 \N 189.186.156.107 f2805142-bfd9-42e3-b6e4-f275638751ff 2020-10-01 00:14:49.390048 41688 4104 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1091\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1847E4\nmove_type: '1'\nsale_id: 3088\ncardnumber: 2697\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1478\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1478 187.149.42.195 1d19ba6a-20d5-4b7d-be34-44c4ea02e2e5 2020-09-30 22:49:29.31382 41689 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-30 19:27:24.809897000 Z\n- &1 2020-09-30 20:24:04.741299000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-30 22:56:08.726291200 Z\nsign_in_count:\n- 244\n- 245\n 491 \N 189.186.156.107 217d891b-a649-4e6b-903f-fdb4d04f6745 2020-09-30 22:56:08.73282 41690 18 User \N \N 18 User \N update ---\nunique_session_id:\n- yoBUXj-aLq3xeXb-kXzs\n- e1rnxgYSQvxkYU8pyxRs\n 492 \N 189.186.156.107 217d891b-a649-4e6b-903f-fdb4d04f6745 2020-09-30 22:56:08.747664 41691 2539 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.156.107 5d14c0ed-44dd-468f-a09a-f9dc5e54ba08 2020-09-30 22:57:14.560362 41692 934 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.156.107 5d14c0ed-44dd-468f-a09a-f9dc5e54ba08 2020-09-30 22:57:14.585391 41693 403 Customer \N \N 2 User \N create ---\nnick_name: MARICELA FERNANDEZ\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARICELA FERNANDEZ fue registrado. 187.149.42.195 63fffafe-c389-4a5b-ae43-cf3282c356be 2020-09-30 22:57:52.784391 41694 3089 Sale \N \N 2 User \N create ---\ncustomer_id: 403\nuser_id: 2\nopen_cash_register_id: 1091\namount: !ruby/object:BigDecimal 18:0.249E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.249E3\nstatus: 0\ndate_sale: 2020-09-30\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1479\nexpiration_date: 2020-11-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 ca39902c-8cec-4918-907f-f00c31441a08 2020-09-30 22:58:46.951429 41695 2198 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.195 ca39902c-8cec-4918-907f-f00c31441a08 2020-09-30 22:58:46.980269 41696 4105 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1091\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.75E2\nmove_type: '1'\nsale_id: 3089\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1479\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.75E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1479 187.149.42.195 87d9306b-fa6c-46b2-835e-5fd18d840604 2020-09-30 22:59:05.14866 41697 3089 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.195 8ff65caa-15ec-4a60-8bb4-0e9aa52f995d 2020-09-30 22:59:06.641773 41698 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-30 21:13:28.105484000 Z\n- &1 2020-09-30 22:11:18.482001000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-30 23:29:49.417092866 Z\nsign_in_count:\n- 1920\n- 1921\n 3842 \N 189.186.156.107 aa955d16-0486-4f9e-85ba-2aabd49bb538 2020-09-30 23:29:49.423548 41699 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MnztzDiEnD56_B4DJFz9\n- vznUzXNX9vguanAWa-yW\n 3843 \N 189.186.156.107 aa955d16-0486-4f9e-85ba-2aabd49bb538 2020-09-30 23:29:49.440063 41700 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-30 20:24:04.741299000 Z\n- &1 2020-09-30 22:56:08.726291000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-09-30 23:47:08.364150643 Z\nsign_in_count:\n- 245\n- 246\n 493 \N 189.186.156.107 2fa3a158-74e9-4c89-bc49-4384ad284dbf 2020-09-30 23:47:08.373158 41701 18 User \N \N 18 User \N update ---\nunique_session_id:\n- e1rnxgYSQvxkYU8pyxRs\n- GWDxfoti2yJm6MHYxmdK\n 494 \N 189.186.156.107 2fa3a158-74e9-4c89-bc49-4384ad284dbf 2020-09-30 23:47:08.392041 41702 3090 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1090\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-09-30\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-691\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.156.107 684b7629-8369-4852-8410-50776932eb61 2020-09-30 23:48:23.240971 41703 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 41 \N 189.186.156.107 684b7629-8369-4852-8410-50776932eb61 2020-09-30 23:48:23.272746 41704 3090 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.156.107 93a7cd86-8a15-4994-baa9-5cabd0fa0f2a 2020-09-30 23:48:29.676917 41705 4106 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1090\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3090\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-691\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-691 189.186.156.107 93a7cd86-8a15-4994-baa9-5cabd0fa0f2a 2020-09-30 23:48:29.702019 41706 3091 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1090\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-09-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-692\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.156.107 f33d3e6b-a48f-45fe-9560-bfdd01f76b27 2020-09-30 23:59:33.526006 41707 1984 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 189.186.156.107 f33d3e6b-a48f-45fe-9560-bfdd01f76b27 2020-09-30 23:59:33.557423 41708 3091 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.156.107 8c2be851-3414-4e03-ba2d-a5b1767f1feb 2020-09-30 23:59:47.54093 41709 4107 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1090\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3091\ncardnumber: 2522\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-692\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-692 189.186.156.107 8c2be851-3414-4e03-ba2d-a5b1767f1feb 2020-09-30 23:59:47.563538 41710 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-26 23:16:14.126841000 Z\n- &1 2020-09-30 18:34:48.358023000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-01 00:01:47.179257167 Z\nsign_in_count:\n- 246\n- 247\n 494 \N 187.149.42.195 0bca4c49-63e9-4574-bafc-d32e5de959c3 2020-10-01 00:01:47.185634 41711 1 User \N \N 1 User \N update ---\nunique_session_id:\n- wYK27TUAERzkQ6tqu7c7\n- n5rqoQxyxgo8kouwbTbR\n 495 \N 187.149.42.195 0bca4c49-63e9-4574-bafc-d32e5de959c3 2020-10-01 00:01:47.202137 41783 3099 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.156.107 a16500f0-68ca-4783-a247-dc034754c273 2020-10-02 00:05:30.898147 41713 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vznUzXNX9vguanAWa-yW\n- HGuTrSLQoQat-rEsyd_f\n 3845 \N 189.186.156.107 f2805142-bfd9-42e3-b6e4-f275638751ff 2020-10-01 00:14:49.412293 41714 4108 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1091\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.489E3\nmove_type: '1'\nsale_id: 3047\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.489E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1456 187.149.42.195 16cbed0e-f880-4966-ab8d-715a16273ba8 2020-10-01 00:49:35.804139 41715 3047 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.42.195 dc8b2244-ceec-4a42-9dd3-90848b69bde6 2020-10-01 00:49:37.215365 41716 1115 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1091\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5985E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.775E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3275E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.195 805ebb29-5323-450b-99b2-609b596cfa9c 2020-10-01 01:00:22.839503 41717 1091 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.195 805ebb29-5323-450b-99b2-609b596cfa9c 2020-10-01 01:00:22.85943 41718 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-30 22:56:08.726291000 Z\n- &1 2020-09-30 23:47:08.364150000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-01 01:01:04.691314629 Z\nsign_in_count:\n- 246\n- 247\n 495 \N 189.186.156.107 46c01f76-6342-485b-af22-65f0e1ec3809 2020-10-01 01:01:04.700013 41719 18 User \N \N 18 User \N update ---\nunique_session_id:\n- GWDxfoti2yJm6MHYxmdK\n- 4uJS_GbvkJsMwKzJvNDy\n 496 \N 189.186.156.107 46c01f76-6342-485b-af22-65f0e1ec3809 2020-10-01 01:01:04.717183 41720 3092 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1090\namount: !ruby/object:BigDecimal 18:0.1049E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1049E4\nstatus: 0\ndate_sale: 2020-09-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-693\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.156.107 f078c289-4a17-4ade-bbe2-148bc8514e89 2020-10-01 01:03:07.222329 41721 2015 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.156.107 f078c289-4a17-4ade-bbe2-148bc8514e89 2020-10-01 01:03:07.253214 41722 3092 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.156.107 830a4b1b-fd89-44f1-9d3b-6e400b8a60dc 2020-10-01 01:03:13.911844 41723 4109 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1090\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1049E4\nmove_type: '1'\nsale_id: 3092\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-693\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1049E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-693 189.186.156.107 830a4b1b-fd89-44f1-9d3b-6e400b8a60dc 2020-10-01 01:03:13.940436 41724 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-09-30 23:29:49.417092000 Z\n- &1 2020-10-01 00:14:49.381083000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-01 01:08:21.778424433 Z\nsign_in_count:\n- 1922\n- 1923\n 3846 \N 189.186.156.107 aff2c16f-3939-4f39-8da1-a483d2243f7e 2020-10-01 01:08:21.785227 41725 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HGuTrSLQoQat-rEsyd_f\n- ks9j8wve5AvBiyVecKkc\n 3847 \N 189.186.156.107 aff2c16f-3939-4f39-8da1-a483d2243f7e 2020-10-01 01:08:21.802168 41726 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-09-30 23:47:08.364150000 Z\n- &1 2020-10-01 01:01:04.691314000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-01 01:25:39.697453424 Z\nsign_in_count:\n- 247\n- 248\n 497 \N 189.186.156.107 44bb56b4-4b1a-42c0-9d2d-c57bb50bb5e8 2020-10-01 01:25:39.704114 41727 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 4uJS_GbvkJsMwKzJvNDy\n- YvB3dVSz9Dsc5ds4Mc7u\n 498 \N 189.186.156.107 44bb56b4-4b1a-42c0-9d2d-c57bb50bb5e8 2020-10-01 01:25:39.720962 41728 1116 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1090\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.4813E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.33E4\ncash_fund: !ruby/object:BigDecimal 18:0.114E4\nphysical_cash: !ruby/object:BigDecimal 18:0.444E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.156.107 e561d7d2-e31d-46d0-843c-d69fe262b858 2020-10-01 01:45:23.0266 41729 1090 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.156.107 e561d7d2-e31d-46d0-843c-d69fe262b858 2020-10-01 01:45:23.041933 41730 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-01 00:14:49.381083000 Z\n- &1 2020-10-01 01:08:21.778424000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-01 01:46:06.550308679 Z\nsign_in_count:\n- 1923\n- 1924\n 3848 \N 189.186.156.107 ea1a7b19-b664-47b2-a69c-f93dae215ff9 2020-10-01 01:46:06.557605 41731 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ks9j8wve5AvBiyVecKkc\n- 5heq4QBxR3eT1zG_z3st\n 3849 \N 189.186.156.107 ea1a7b19-b664-47b2-a69c-f93dae215ff9 2020-10-01 01:46:06.574312 41732 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-09-30 18:34:48.358023000 Z\n- &1 2020-10-01 00:01:47.179257000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-01 02:09:52.331870227 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934222\n mask_addr: 4294967295\nsign_in_count:\n- 247\n- 248\n 496 \N 200.68.135.14 8a9e5e80-cb12-495f-9d22-1589ccbc4d1e 2020-10-01 02:09:52.341717 41733 1 User \N \N 1 User \N update ---\nunique_session_id:\n- n5rqoQxyxgo8kouwbTbR\n- UbfsimyVhKc5sogohD_g\n 497 \N 200.68.135.14 8a9e5e80-cb12-495f-9d22-1589ccbc4d1e 2020-10-01 02:09:52.359394 41734 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-01 01:08:21.778424000 Z\n- &1 2020-10-01 01:46:06.550308000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-01 04:02:08.143777909 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123563\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535012\n mask_addr: 4294967295\nsign_in_count:\n- 1924\n- 1925\n 3850 \N 177.228.99.228 6c0b931a-951c-469e-896f-f780bf07ce6d 2020-10-01 04:02:08.150892 41735 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5heq4QBxR3eT1zG_z3st\n- 3b48o-Cc-1swgxddxzmX\n 3851 \N 177.228.99.228 6c0b931a-951c-469e-896f-f780bf07ce6d 2020-10-01 04:02:08.167818 41736 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-29 16:23:12.077770000 Z\n- &1 2020-09-30 18:42:24.616305000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-01 16:20:23.044961340 Z\nsign_in_count:\n- 656\n- 657\n 1317 \N 187.149.42.195 94946f33-d7d5-4837-9316-3664909f0471 2020-10-01 16:20:23.074507 41737 2 User \N \N 2 User \N update ---\nunique_session_id:\n- bsNZuvGij-dKmAg4tMvs\n- JK6yQvS3_JHTsjqubGDa\n 1318 \N 187.149.42.195 94946f33-d7d5-4837-9316-3664909f0471 2020-10-01 16:20:23.098462 41738 1092 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.775E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 775.0 187.149.42.195 a79f8eaf-a81d-42b7-b39c-6d06c6454e82 2020-10-01 17:28:28.111886 41739 3093 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1092\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-10-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1480\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 69d63999-7690-4f7d-9e60-d201d5188c90 2020-10-01 17:28:37.526173 41740 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.42E2\n- !ruby/object:BigDecimal 18:0.41E2\n 19 \N 187.149.42.195 69d63999-7690-4f7d-9e60-d201d5188c90 2020-10-01 17:28:37.554353 41741 3093 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 f35f088d-c96d-4176-980d-2cd04ff1ab54 2020-10-01 17:28:41.770639 41742 4110 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1092\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49E2\nmove_type: '1'\nsale_id: 3093\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1480\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1480 187.149.42.195 f35f088d-c96d-4176-980d-2cd04ff1ab54 2020-10-01 17:28:41.795873 41743 3094 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1092\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2020-10-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1481\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 cd1b59f2-21c7-4773-820a-658ecf426a10 2020-10-01 18:57:43.282472 41744 2253 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.42.195 cd1b59f2-21c7-4773-820a-658ecf426a10 2020-10-01 18:57:43.314647 41745 3094 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 5f6f7c19-4465-4282-9106-6a38f9f9f4f7 2020-10-01 18:57:49.718045 41746 4111 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1092\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.479E3\nmove_type: '1'\nsale_id: 3094\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1481\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.479E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1481 187.149.42.195 5f6f7c19-4465-4282-9106-6a38f9f9f4f7 2020-10-01 18:57:49.737864 41747 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-01 01:01:04.691314000 Z\n- &1 2020-10-01 01:25:39.697453000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-01 19:05:18.811896607 Z\nsign_in_count:\n- 248\n- 249\n 499 \N 189.186.156.107 5ee3c80b-4c21-4fcb-8c94-f4473e37b883 2020-10-01 19:05:18.846444 41748 18 User \N \N 18 User \N update ---\nunique_session_id:\n- YvB3dVSz9Dsc5ds4Mc7u\n- KRxJFf5NGo7TPBGCNBLY\n 500 \N 189.186.156.107 5ee3c80b-4c21-4fcb-8c94-f4473e37b883 2020-10-01 19:05:18.867333 41749 1093 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.114E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1140.0 189.186.156.107 f21d110a-4261-408b-b368-7749618b55da 2020-10-01 19:06:09.326625 41750 4112 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1093\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1998E4\nmove_type: '1'\nsale_id: 2824\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1998E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-558 189.186.156.107 fa8c77dd-c771-4a47-a084-0404ed6fb696 2020-10-01 19:06:28.687057 41751 2824 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.156.107 38ce25bb-d403-4354-8fe0-d1cfa845f032 2020-10-01 19:06:29.929615 41752 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-01 01:46:06.550308000 Z\n- &1 2020-10-01 04:02:08.143777000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-01 19:38:59.493667872 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123563\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535012\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123563\n mask_addr: 4294967295\nsign_in_count:\n- 1925\n- 1926\n 3852 \N 189.186.156.107 873ad388-fb0f-41b8-8f8e-c34bbaa00503 2020-10-01 19:38:59.502287 41753 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3b48o-Cc-1swgxddxzmX\n- d6_cxMomz_BCTLBefRV9\n 3853 \N 189.186.156.107 873ad388-fb0f-41b8-8f8e-c34bbaa00503 2020-10-01 19:38:59.524018 41754 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-01 00:01:47.179257000 Z\n- &1 2020-10-01 02:09:52.331870000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-01 21:37:41.243770743 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934222\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934222\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\nsign_in_count:\n- 248\n- 249\n 498 \N 187.149.42.195 9283fa0c-abd1-456a-8df8-b0eb29fca278 2020-10-01 21:37:41.251699 41755 1 User \N \N 1 User \N update ---\nunique_session_id:\n- UbfsimyVhKc5sogohD_g\n- M-HfYKxjuBEL7R7gfE2_\n 499 \N 187.149.42.195 9283fa0c-abd1-456a-8df8-b0eb29fca278 2020-10-01 21:37:41.269328 41756 3095 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1092\namount: !ruby/object:BigDecimal 18:0.104124E4\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1048E4\nstatus: 0\ndate_sale: 2020-10-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1482\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 6a58500c-fa3c-41f1-b4c2-a399c592b430 2020-10-01 23:04:47.479055 41757 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 24 \N 187.149.42.195 6a58500c-fa3c-41f1-b4c2-a399c592b430 2020-10-01 23:04:47.510048 41758 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.41E2\n- !ruby/object:BigDecimal 18:0.4E2\n 20 \N 187.149.42.195 6a58500c-fa3c-41f1-b4c2-a399c592b430 2020-10-01 23:04:47.546303 41759 3095 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 09134d5a-b210-49c9-bb9a-2afa104ba04b 2020-10-01 23:04:53.369438 41826 1643 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.42.195 9bef632d-4e3a-4d8e-8501-dfd159390752 2020-10-02 21:00:43.207694 41760 4113 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1092\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1048E4\nmove_type: '1'\nsale_id: 3095\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1482\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1048E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1482 187.149.42.195 09134d5a-b210-49c9-bb9a-2afa104ba04b 2020-10-01 23:04:53.392438 41761 3096 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1092\namount: !ruby/object:BigDecimal 18:0.65521E3\ntax: !ruby/object:BigDecimal 18:0.1379E2\ndiscount: !ruby/object:BigDecimal 18:0.569E3\ntotal: !ruby/object:BigDecimal 18:0.1E3\nstatus: 0\ndate_sale: 2020-10-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1483\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 de52675d-febb-458d-ae4d-26eb70a515e8 2020-10-01 23:07:00.800733 41762 96 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 1 \N 187.149.42.195 de52675d-febb-458d-ae4d-26eb70a515e8 2020-10-01 23:07:00.828439 41763 3096 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 32db8658-5f9f-4311-ac28-57ff2057c72c 2020-10-01 23:07:05.248366 41764 4114 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1092\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 3096\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1483\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1483 187.149.42.195 32db8658-5f9f-4311-ac28-57ff2057c72c 2020-10-01 23:07:05.268674 41765 3097 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1092\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-10-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1484\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 95b6612a-311d-4405-8095-c098281dad21 2020-10-01 23:13:37.513817 41766 2236 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.42.195 95b6612a-311d-4405-8095-c098281dad21 2020-10-01 23:13:37.540115 41767 3097 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 ff1d9421-9cc6-4a69-9b2e-135c62ac71dd 2020-10-01 23:13:43.353197 41768 4115 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1092\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3097\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1484\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1484 187.149.42.195 ff1d9421-9cc6-4a69-9b2e-135c62ac71dd 2020-10-01 23:13:43.374751 41769 3098 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1092\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-10-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1485\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 621f0fc5-7429-4f58-9052-a20fb0bf80ac 2020-10-01 23:21:46.345585 41770 2338 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.42.195 621f0fc5-7429-4f58-9052-a20fb0bf80ac 2020-10-01 23:21:46.396873 41771 3098 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 6fa7dd2d-c678-46fa-b587-8e330d587d05 2020-10-01 23:22:21.336038 41772 4116 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1092\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3098\ncardnumber: 2255\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1485\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1485 187.149.42.195 6fa7dd2d-c678-46fa-b587-8e330d587d05 2020-10-01 23:22:21.371621 41773 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-01 02:09:52.331870000 Z\n- &1 2020-10-01 21:37:41.243770000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-01 23:41:51.804123580 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934222\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\nsign_in_count:\n- 249\n- 250\n 500 \N 187.149.42.195 66ec2334-5020-454c-878f-7d16664c86e4 2020-10-01 23:41:51.813142 41774 1 User \N \N 1 User \N update ---\nunique_session_id:\n- M-HfYKxjuBEL7R7gfE2_\n- wgnFeFVAgt58PXEZwJP5\n 501 \N 187.149.42.195 66ec2334-5020-454c-878f-7d16664c86e4 2020-10-01 23:41:51.829672 41775 692 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-10-01\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.42.195 cb49645b-99b7-44b3-9a73-a8f35b522a1d 2020-10-01 23:43:53.214121 41776 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.13E2\n 33 \N 187.149.42.195 cb49645b-99b7-44b3-9a73-a8f35b522a1d 2020-10-01 23:43:53.232231 41777 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-01 21:37:41.243770000 Z\n- &1 2020-10-01 23:41:51.804123000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-01 23:54:52.339021107 Z\nsign_in_count:\n- 250\n- 251\n 502 \N 187.149.42.195 756bba70-15df-4e0d-8fec-80f13cff8556 2020-10-01 23:54:52.358014 41778 1 User \N \N 1 User \N update ---\nunique_session_id:\n- wgnFeFVAgt58PXEZwJP5\n- 9pEd_cQhEw9mPCWNKbYW\n 503 \N 187.149.42.195 756bba70-15df-4e0d-8fec-80f13cff8556 2020-10-01 23:54:52.379087 41779 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-01 01:25:39.697453000 Z\n- &1 2020-10-01 19:05:18.811896000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-02 00:01:59.483019942 Z\nsign_in_count:\n- 249\n- 250\n 501 \N 189.186.156.107 eea1c939-7c33-4bde-8647-ea8ee20e0f56 2020-10-02 00:01:59.488963 41780 18 User \N \N 18 User \N update ---\nunique_session_id:\n- KRxJFf5NGo7TPBGCNBLY\n- yWFzVcKu6zMKND3sfU73\n 502 \N 189.186.156.107 eea1c939-7c33-4bde-8647-ea8ee20e0f56 2020-10-02 00:01:59.503488 41781 3099 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1093\namount: !ruby/object:BigDecimal 18:0.669E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2020-10-01\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-694\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.156.107 15f90d69-ab28-4c5d-bd14-d1a5f4e246cb 2020-10-02 00:05:22.19296 41782 1926 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.156.107 15f90d69-ab28-4c5d-bd14-d1a5f4e246cb 2020-10-02 00:05:22.223985 41784 4117 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1093\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.669E3\nmove_type: '1'\nsale_id: 3099\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-694\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-694 189.186.156.107 a16500f0-68ca-4783-a247-dc034754c273 2020-10-02 00:05:30.919898 41785 1117 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1093\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.2667E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.26E4\ncash_fund: !ruby/object:BigDecimal 18:0.1207E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3807E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.156.107 62d7acf3-8b95-432f-9d49-08b45676abf9 2020-10-02 00:17:19.428494 41786 1093 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.156.107 62d7acf3-8b95-432f-9d49-08b45676abf9 2020-10-02 00:17:19.442606 41787 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-01 04:02:08.143777000 Z\n- &1 2020-10-01 19:38:59.493667000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-02 00:17:36.922901461 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123563\n mask_addr: 4294967295\nsign_in_count:\n- 1926\n- 1927\n 3854 \N 189.186.156.107 9a6f5a0d-b250-4efa-a100-3ff4d5c661da 2020-10-02 00:17:36.930998 41788 4 User \N \N 4 User \N update ---\nunique_session_id:\n- d6_cxMomz_BCTLBefRV9\n- F16yZsa9XeC3V5g-XaaG\n 3855 \N 189.186.156.107 9a6f5a0d-b250-4efa-a100-3ff4d5c661da 2020-10-02 00:17:36.950957 41789 3100 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1092\namount: !ruby/object:BigDecimal 18:0.2498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.599E3\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2020-10-01\nsaletype: 1\nseller_id: 28\nsale_code: PV1-V-1486\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 35731543-bd81-423a-ba8d-dfba9eb61c4d 2020-10-02 00:52:03.812173 41790 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 25 \N 187.149.42.195 35731543-bd81-423a-ba8d-dfba9eb61c4d 2020-10-02 00:52:03.848081 41791 1027 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.42.195 35731543-bd81-423a-ba8d-dfba9eb61c4d 2020-10-02 00:52:03.898306 41792 3100 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 14b9bab6-3877-4fd4-9afe-af31dd5d6cf7 2020-10-02 00:52:26.168115 41793 4118 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1092\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1899E4\nmove_type: '1'\nsale_id: 3100\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1486\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: entrega a domicilio\n 1 movimiento de efectivo por venta con folio PV1-V-1486 187.149.42.195 14b9bab6-3877-4fd4-9afe-af31dd5d6cf7 2020-10-02 00:52:26.194837 41794 1118 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1092\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4973E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.22E4\ncash_fund: !ruby/object:BigDecimal 18:0.95E3\nphysical_cash: !ruby/object:BigDecimal 18:0.315E4\nobservations: Entregue a Sam corte :)\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.195 b78d4013-a5be-4332-9c69-5cdc81a2ced6 2020-10-02 00:56:15.16085 41795 1092 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.195 b78d4013-a5be-4332-9c69-5cdc81a2ced6 2020-10-02 00:56:15.17636 41796 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-01 19:38:59.493667000 Z\n- &1 2020-10-02 00:17:36.922901000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-02 15:03:45.113889073 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123563\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534708\n mask_addr: 4294967295\nsign_in_count:\n- 1927\n- 1928\n 3856 \N 177.228.98.180 b893b66a-c822-46c9-a09b-6eeb8993aaf2 2020-10-02 15:03:45.144642 41797 4 User \N \N 4 User \N update ---\nunique_session_id:\n- F16yZsa9XeC3V5g-XaaG\n- sADWmkWyzccNPx1z92qd\n 3857 \N 177.228.98.180 b893b66a-c822-46c9-a09b-6eeb8993aaf2 2020-10-02 15:03:45.173746 41798 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-09-30 18:42:24.616305000 Z\n- &1 2020-10-01 16:20:23.044961000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-02 16:13:15.030725238 Z\nsign_in_count:\n- 657\n- 658\n 1319 \N 187.149.42.195 09bc958b-b996-492b-ade5-001e62e7b769 2020-10-02 16:13:15.037961 41799 2 User \N \N 2 User \N update ---\nunique_session_id:\n- JK6yQvS3_JHTsjqubGDa\n- n322sw-pEyWCveNoLV7b\n 1320 \N 187.149.42.195 09bc958b-b996-492b-ade5-001e62e7b769 2020-10-02 16:13:15.067462 41800 1094 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.95E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 950.0 187.149.42.195 c36b14a6-5bde-4296-97c4-4f0cc00571a8 2020-10-02 16:14:13.051374 41801 3101 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1094\namount: !ruby/object:BigDecimal 18:0.100797E4\ntax: !ruby/object:BigDecimal 18:0.9104E2\ndiscount: !ruby/object:BigDecimal 18:0.439E3\ntotal: !ruby/object:BigDecimal 18:0.66001E3\nstatus: 0\ndate_sale: 2020-10-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1487\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 29c0d7a5-ff3e-4c01-b401-1654afa7fe40 2020-10-02 16:20:09.930385 41802 257 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.42.195 29c0d7a5-ff3e-4c01-b401-1654afa7fe40 2020-10-02 16:20:09.974464 41803 3101 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 9b770580-537f-489b-a7e6-ca24e39f94f1 2020-10-02 16:20:18.504597 41804 4119 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1094\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.66001E3\nmove_type: '1'\nsale_id: 3101\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1487\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.66001E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1487 187.149.42.195 9b770580-537f-489b-a7e6-ca24e39f94f1 2020-10-02 16:20:18.529073 41827 3102 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 e351c313-49e6-4287-89ec-fa555c6c2b89 2020-10-02 21:00:57.90544 41874 2346 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1174\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.156.107 eb7df1cf-6909-497e-86c6-13efedac58b9 2020-10-03 00:17:33.530498 41805 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-02 00:17:36.922901000 Z\n- &1 2020-10-02 15:03:45.113889000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-02 18:58:32.354538732 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123563\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534708\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534708\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123563\n mask_addr: 4294967295\nsign_in_count:\n- 1928\n- 1929\n 3858 \N 189.186.156.107 919c6213-3997-4fc3-b7d9-a0902ee6990c 2020-10-02 18:58:32.376388 41806 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sADWmkWyzccNPx1z92qd\n- 8S9rnyKApTPgJUDaQ_kC\n 3859 \N 189.186.156.107 919c6213-3997-4fc3-b7d9-a0902ee6990c 2020-10-02 18:58:32.401916 41807 1357 Product \N \N 4 User \N create ---\nsku: ZAP-1357\nname: BRISTOL\ndescription: TENNIS CLOE NUDE DE PLATAFORMA\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170806854'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 13\nproduct_service_key: '01010101'\n 1 El producto ZAP-1357 fue creado. 189.186.156.107 fc87ab97-49df-4271-b7f3-003f968334bf 2020-10-02 19:02:44.551427 41808 2341 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1357\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.156.107 fc87ab97-49df-4271-b7f3-003f968334bf 2020-10-02 19:02:44.597034 41809 1358 Product \N \N 4 User \N create ---\nsku: BOL-1358\nname: 1BLCV20286\ndescription: BACK PACK LORES AZUL,PETROLEO Y ROSA\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170819069'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1358 fue creado. 189.186.156.107 17cf17ff-52f0-4c75-b394-7639e993080f 2020-10-02 19:22:24.513219 41810 2342 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1358\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.156.107 17cf17ff-52f0-4c75-b394-7639e993080f 2020-10-02 19:22:24.557835 41811 1359 Product \N \N 4 User \N create ---\nsku: BOL-1359\nname: 2BLCP20044\ndescription: BOLSO NEGRO TRANSPARENTE\nprice_base: !ruby/object:BigDecimal 18:0.6495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170798937'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1359 fue creado. 189.186.156.107 e05cd14e-29bd-45e3-b12e-6ea585dd24a2 2020-10-02 19:29:29.200582 41812 2343 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1359\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.156.107 e05cd14e-29bd-45e3-b12e-6ea585dd24a2 2020-10-02 19:29:29.243607 41813 401 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-99\namount: !ruby/object:BigDecimal 18:0.16587E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.16587E5\nobservations: ''\npurchase_date: 2020-10-02\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-99 por $ 16587.0 MXN creada. 189.186.156.107 bc4f415b-916e-4f1f-bcfc-234167ae45aa 2020-10-02 19:40:29.299281 41814 2017 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 189.186.156.107 bc4f415b-916e-4f1f-bcfc-234167ae45aa 2020-10-02 19:40:29.333709 41815 2341 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.156.107 bc4f415b-916e-4f1f-bcfc-234167ae45aa 2020-10-02 19:40:29.380769 41816 2215 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.17E2\n 42 \N 189.186.156.107 bc4f415b-916e-4f1f-bcfc-234167ae45aa 2020-10-02 19:40:29.412001 41817 2044 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.156.107 bc4f415b-916e-4f1f-bcfc-234167ae45aa 2020-10-02 19:40:29.443823 41818 2218 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.156.107 bc4f415b-916e-4f1f-bcfc-234167ae45aa 2020-10-02 19:40:29.468842 41819 2342 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.156.107 bc4f415b-916e-4f1f-bcfc-234167ae45aa 2020-10-02 19:40:29.493629 41820 2343 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.156.107 bc4f415b-916e-4f1f-bcfc-234167ae45aa 2020-10-02 19:40:29.519496 41821 339 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1094\nquantity: !ruby/object:BigDecimal 18:0.272E3\nstatus: 1\nobservations: AGUA JAPAC\nexpense_date: 2020-10-02\nexpense_code: PV1-E-234\n 1 Egreso por 272.0 registrado 187.149.42.195 9c0f65d4-0595-4af4-897c-cbe84ab911c0 2020-10-02 19:52:10.04147 41822 4120 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1094\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.272E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 339\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.42.195 9c0f65d4-0595-4af4-897c-cbe84ab911c0 2020-10-02 19:52:10.089395 41823 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-01 23:41:51.804123000 Z\n- &1 2020-10-01 23:54:52.339021000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-02 20:29:10.458663404 Z\nsign_in_count:\n- 251\n- 252\n 504 \N 187.149.42.195 4a02a096-f2e8-4eae-bcdf-8e1c0505d006 2020-10-02 20:29:10.465357 41824 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 9pEd_cQhEw9mPCWNKbYW\n- FCC7FMA-zaJAzTKQH8uY\n 505 \N 187.149.42.195 4a02a096-f2e8-4eae-bcdf-8e1c0505d006 2020-10-02 20:29:10.483423 41825 3102 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1094\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-10-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1488\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 9bef632d-4e3a-4d8e-8501-dfd159390752 2020-10-02 21:00:43.177975 41828 4121 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1094\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3102\ncardnumber: 3177\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1488\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1488 187.149.42.195 e351c313-49e6-4287-89ec-fa555c6c2b89 2020-10-02 21:00:57.929289 41829 402 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-164\namount: !ruby/object:BigDecimal 18:0.67935E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.67935E4\nobservations: ''\npurchase_date: 2020-10-02\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-164 por $ 6793.5 MXN creada. 189.186.156.107 54010e74-64c4-4320-8a8c-794bfb8aa283 2020-10-02 21:32:53.7048 41830 2344 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1297\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.156.107 54010e74-64c4-4320-8a8c-794bfb8aa283 2020-10-02 21:32:53.731962 41831 2226 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.16E2\n 26 \N 189.186.156.107 54010e74-64c4-4320-8a8c-794bfb8aa283 2020-10-02 21:32:53.755198 41832 36 ProductsReturn \N \N 2 User \N create ---\nsale_id: 3019\nuser_id: 2\nreturn_code: PV1-D-13\npointsale_id: 1\nnew_amount: !ruby/object:BigDecimal 18:0.699E3\nreturned_amount: !ruby/object:BigDecimal 18:0.529E3\ndifference_amount: !ruby/object:BigDecimal 18:0.17E3\nis_money_returned: false\n 1 devolución PV1-D-13 creada. 187.149.42.195 c124f035-308a-4776-98dd-e84f79ae3c58 2020-10-02 21:42:31.898937 41833 2263 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.42.195 c124f035-308a-4776-98dd-e84f79ae3c58 2020-10-02 21:42:31.930288 41834 790 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 14 \N 187.149.42.195 c124f035-308a-4776-98dd-e84f79ae3c58 2020-10-02 21:42:31.958167 41835 4122 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1094\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.17E3\nmove_type: '1'\nsale_id: 3019\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.17E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 36\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV1-D-13 187.149.42.195 d6533f66-eee6-4d7c-b43d-89f743e5c576 2020-10-02 21:42:40.061873 41836 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-01 19:05:18.811896000 Z\n- &1 2020-10-02 00:01:59.483019000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-02 21:47:20.788122090 Z\nsign_in_count:\n- 250\n- 251\n 503 \N 189.186.156.107 f9fcdbdb-d3c1-490c-b162-5fa9e208b4a8 2020-10-02 21:47:20.795742 41837 18 User \N \N 18 User \N update ---\nunique_session_id:\n- yWFzVcKu6zMKND3sfU73\n- zLV5JGnNFEVGuegTfdvX\n 504 \N 189.186.156.107 f9fcdbdb-d3c1-490c-b162-5fa9e208b4a8 2020-10-02 21:47:20.812165 41838 1095 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1207E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1207.0 189.186.156.107 dd0a73e1-0dee-4db3-b3e7-660c76243308 2020-10-02 21:47:31.840219 41839 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-01 23:54:52.339021000 Z\n- &1 2020-10-02 20:29:10.458663000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-02 21:47:40.297832919 Z\nsign_in_count:\n- 252\n- 253\n 506 \N 187.149.42.195 611cf927-ef74-47fa-8d7e-a925ca9ce3e3 2020-10-02 21:47:40.30362 41840 1 User \N \N 1 User \N update ---\nunique_session_id:\n- FCC7FMA-zaJAzTKQH8uY\n- UTkjyskiaTrBWeviNE4V\n 507 \N 187.149.42.195 611cf927-ef74-47fa-8d7e-a925ca9ce3e3 2020-10-02 21:47:40.315169 41841 3103 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1095\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-10-02\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-695\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.156.107 411d0571-a41b-4d7d-92e5-d186e6d2b48c 2020-10-02 21:47:40.814259 41842 2284 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.156.107 411d0571-a41b-4d7d-92e5-d186e6d2b48c 2020-10-02 21:47:40.838928 41843 3103 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.156.107 18c1944d-09da-48a4-be06-2d2b630ef9b5 2020-10-02 21:48:30.217038 41844 4123 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1095\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3103\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-695\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-695 189.186.156.107 18c1944d-09da-48a4-be06-2d2b630ef9b5 2020-10-02 21:48:30.23945 41845 3104 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1094\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2020-10-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1489\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 2b675f06-c4b6-4b6e-9191-d4261457fc6e 2020-10-02 21:56:12.278803 41846 2344 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.42.195 2b675f06-c4b6-4b6e-9191-d4261457fc6e 2020-10-02 21:56:12.30928 41847 3104 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 101a77bc-08cd-449c-957c-2238d1fb75cd 2020-10-02 21:56:29.082384 41848 4124 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1094\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 3104\ncardnumber: 3177\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1489\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1489 187.149.42.195 101a77bc-08cd-449c-957c-2238d1fb75cd 2020-10-02 21:56:29.102818 41849 404 Customer \N \N 18 User \N create ---\nnick_name: BEATRIZ NUÑEZ\nphone: "(667) 790-4600"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente BEATRIZ NUÑEZ fue registrado. 189.186.156.107 0bd66d3c-40f3-410c-b243-d9b99b4ec549 2020-10-02 21:57:53.448245 41922 3111 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.42.195 18ae04aa-1d77-4eaa-903a-67bda82a88d9 2020-10-03 22:29:22.81262 41850 3105 Sale \N \N 18 User \N create ---\ncustomer_id: 404\nuser_id: 18\nopen_cash_register_id: 1095\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-10-02\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-696\nexpiration_date: 2020-11-06\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.156.107 cf83169a-116a-4d71-ad28-77f33f36f9bf 2020-10-02 21:58:37.013545 41851 2041 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.156.107 cf83169a-116a-4d71-ad28-77f33f36f9bf 2020-10-02 21:58:37.041917 41852 4125 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1095\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 3105\ncardnumber: 4252\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-696\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-696 189.186.156.107 f46fabe5-8af4-4ab2-9262-769af9cfb128 2020-10-02 21:58:54.903309 41853 3105 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.156.107 816cf154-269e-4695-bdb0-9898a2b62e90 2020-10-02 21:58:56.416737 41854 1297 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1297'\n is_parent: false\n sku: BOL-1297\n name: 2BLCV20398\n description: BOLSO CLOE\n price_base: '649.5'\n price_sale: '1299.0'\n img_product: BDDE60DD-4BDC-4D12-B946-05F0024AD5D4.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170822953'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-27 19:31:24.977745'\n updated_at: &12 2020-10-02 22:07:27.578768106 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1297'\n sku: BOL-1297\n name: 2BLCV20398\n description: BOLSO CLOE\n price_base: '649.50'\n price_sale: '1299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-27 19:31:24.977745'\n updated_at: '2020-08-27 19:31:24.977745'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170822953'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1297'\n type: *3\n value: 1297\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1297\n type: *7\n value: BOL-1297\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 2BLCV20398\n type: *8\n value: 2BLCV20398\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO CLOE\n type: *6\n value: BOLSO CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '649.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1299E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BDDE60DD-4BDC-4D12-B946-05F0024AD5D4.jpeg\n type: *2\n value: BDDE60DD-4BDC-4D12-B946-05F0024AD5D4.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170822953'\n type: *2\n value: '7509170822953'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-27 19:31:24.977745'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BDDE60DD-4BDC-4D12-B946-05F0024AD5D4.jpeg\n 2 El producto BOL-1297 fue modificado. 187.149.42.195 9436c885-e35d-4fe1-b710-54db4e543cdd 2020-10-02 22:07:27.642775 41855 1348 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1348'\n is_parent: false\n sku: BOL-1348\n name: 1BLCV20797\n description: CROSSBODY CLOE LETRAS\n price_base: '549.5'\n price_sale: '1099.0'\n img_product: 5778A103-2B06-4082-9888-1E1180BCD906.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001348'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-19 21:57:55.118708'\n updated_at: &12 2020-10-02 22:11:02.440075601 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1348'\n sku: BOL-1348\n name: 1BLCV20797\n description: CROSSBODY CLOE LETRAS\n price_base: '549.50'\n price_sale: '1099.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-19 21:57:55.118708'\n updated_at: '2020-09-19 21:57:55.16647'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001348'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1348'\n type: *3\n value: 1348\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1348\n type: *7\n value: BOL-1348\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCV20797\n type: *8\n value: 1BLCV20797\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CROSSBODY CLOE LETRAS\n type: *6\n value: CROSSBODY CLOE LETRAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '549.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.5495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1099.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1099E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 5778A103-2B06-4082-9888-1E1180BCD906.jpeg\n type: *2\n value: 5778A103-2B06-4082-9888-1E1180BCD906.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001348'\n type: *2\n value: '0001348'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-19 21:57:55.118708'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 5778A103-2B06-4082-9888-1E1180BCD906.jpeg\n 3 El producto BOL-1348 fue modificado. 187.149.42.195 05695d92-bad3-4c87-9c8f-3d5dd25d5751 2020-10-02 22:11:02.482294 41856 2034 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.42.195 2f1c873f-bbec-4665-ae3c-aa138711101b 2020-10-02 22:56:14.582545 41857 2036 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.42.195 1f694c47-525d-4408-8e91-7d1ad854ea22 2020-10-02 22:56:20.902123 41858 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-02 15:03:45.113889000 Z\n- &1 2020-10-02 18:58:32.354538000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-02 22:56:32.499917083 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534708\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123563\n mask_addr: 4294967295\nsign_in_count:\n- 1929\n- 1930\n 3860 \N 189.186.156.107 777f897e-1807-4e1e-87e2-be1e0105a4bf 2020-10-02 22:56:32.506627 41859 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8S9rnyKApTPgJUDaQ_kC\n- Pc_skLSJdzwxCr68Pixx\n 3861 \N 189.186.156.107 777f897e-1807-4e1e-87e2-be1e0105a4bf 2020-10-02 22:56:32.524534 41860 693 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-10-02\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.42.195 7371dfdd-bf58-42c7-b9a1-70ca7c20b6dd 2020-10-02 22:57:06.387372 41861 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-02 00:01:59.483019000 Z\n- &1 2020-10-02 21:47:20.788122000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-02 23:45:19.339977499 Z\nsign_in_count:\n- 251\n- 252\n 505 \N 189.186.156.107 e6df2cff-b3ff-4a84-bb38-dafd2335e60b 2020-10-02 23:45:19.345928 41862 18 User \N \N 18 User \N update ---\nunique_session_id:\n- zLV5JGnNFEVGuegTfdvX\n- Wsut9Z39-YHTHXHiB9TS\n 506 \N 189.186.156.107 e6df2cff-b3ff-4a84-bb38-dafd2335e60b 2020-10-02 23:45:19.359745 41863 3106 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1095\namount: !ruby/object:BigDecimal 18:0.209E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.209E3\nstatus: 0\ndate_sale: 2020-10-02\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-697\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.156.107 403fb950-e24f-4ff0-a21d-49b3063e90b7 2020-10-02 23:48:04.379027 41864 1706 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.156.107 403fb950-e24f-4ff0-a21d-49b3063e90b7 2020-10-02 23:48:04.406379 41865 3106 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.156.107 fc0a2ee0-2126-4c1c-8ede-c05bf4d1b63e 2020-10-02 23:48:11.476976 41866 4126 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1095\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.209E3\nmove_type: '1'\nsale_id: 3106\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-697\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.209E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-697 189.186.156.107 fc0a2ee0-2126-4c1c-8ede-c05bf4d1b63e 2020-10-02 23:48:11.504861 41867 3107 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1095\namount: !ruby/object:BigDecimal 18:0.1058E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.339E3\ntotal: !ruby/object:BigDecimal 18:0.719E3\nstatus: 0\ndate_sale: 2020-10-02\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-698\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.156.107 0d0d3351-76d5-4129-9f1b-95824581eebd 2020-10-03 00:11:20.649843 41868 2275 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 3 \N 189.186.156.107 0d0d3351-76d5-4129-9f1b-95824581eebd 2020-10-03 00:11:20.678723 41869 2208 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.156.107 0d0d3351-76d5-4129-9f1b-95824581eebd 2020-10-03 00:11:20.702563 41870 3107 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.156.107 f54506af-f91e-4fea-830a-77c2142a2627 2020-10-03 00:12:13.603176 41871 4127 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1095\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.719E3\nmove_type: '1'\nsale_id: 3107\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-698\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.75E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-698 189.186.156.107 f54506af-f91e-4fea-830a-77c2142a2627 2020-10-03 00:12:13.627805 41872 693 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-10-02\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.156.107 eb7df1cf-6909-497e-86c6-13efedac58b9 2020-10-03 00:17:33.441639 41873 2345 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1176\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.156.107 eb7df1cf-6909-497e-86c6-13efedac58b9 2020-10-03 00:17:33.491618 42242 2089 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.148.23 48fcd02c-2685-437a-9645-7ba2bb45f17b 2020-10-09 00:48:49.763015 41875 3108 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1095\namount: !ruby/object:BigDecimal 18:0.2198E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2198E4\nstatus: 0\ndate_sale: 2020-10-02\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-699\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.156.107 3394db61-4c7f-41be-9af0-04713887afda 2020-10-03 00:18:20.912127 41876 2345 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.156.107 3394db61-4c7f-41be-9af0-04713887afda 2020-10-03 00:18:20.939536 41877 2341 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.156.107 3394db61-4c7f-41be-9af0-04713887afda 2020-10-03 00:18:20.962294 41878 3108 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.156.107 5bbed766-0f88-485b-a24e-12b76945b6d8 2020-10-03 00:18:34.654415 41879 4128 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1095\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2198E4\nmove_type: '1'\nsale_id: 3108\ncardnumber: 1566\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-699\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-699 189.186.156.107 5bbed766-0f88-485b-a24e-12b76945b6d8 2020-10-03 00:18:34.680709 41880 4129 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1095\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.561E3\nmove_type: '1'\nsale_id: 3073\ncardnumber: 2525\npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-685 189.186.156.107 e4fcf4ca-e8d8-4564-be62-14d2847e79a4 2020-10-03 00:21:03.145171 41881 3109 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1095\namount: !ruby/object:BigDecimal 18:0.2498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2498E4\nstatus: 0\ndate_sale: 2020-10-02\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-700\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.156.107 9cacb108-c3ee-4638-bb18-af6594239f16 2020-10-03 00:21:51.227223 41882 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 70 \N 189.186.156.107 9cacb108-c3ee-4638-bb18-af6594239f16 2020-10-03 00:21:51.268626 41883 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.17E2\n- !ruby/object:BigDecimal 18:0.16E2\n 43 \N 189.186.156.107 9cacb108-c3ee-4638-bb18-af6594239f16 2020-10-03 00:21:51.30482 41884 3109 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.156.107 d684636f-4152-4664-8a55-0fdcf75596fd 2020-10-03 00:22:01.303064 41885 4130 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1095\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2498E4\nmove_type: '1'\nsale_id: 3109\ncardnumber: 1122\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-700\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-700 189.186.156.107 d684636f-4152-4664-8a55-0fdcf75596fd 2020-10-03 00:22:01.322807 41886 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-02 18:58:32.354538000 Z\n- &1 2020-10-02 22:56:32.499917000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-03 00:22:24.669007885 Z\nsign_in_count:\n- 1930\n- 1931\n 3862 \N 189.186.156.107 a3f45d72-ea4d-4d2f-bc03-6bf5dbd2d8c2 2020-10-03 00:22:24.676417 41887 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Pc_skLSJdzwxCr68Pixx\n- WoGyAT8GdLgpKfzsxWJM\n 3863 \N 189.186.156.107 a3f45d72-ea4d-4d2f-bc03-6bf5dbd2d8c2 2020-10-03 00:22:24.693845 41888 1119 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1094\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.282801E4\namount_out: !ruby/object:BigDecimal 18:0.272E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.808E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1508E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.195 a41b6120-b993-4bf3-934f-916bf3c8d1ef 2020-10-03 00:58:48.80201 41889 1094 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.195 a41b6120-b993-4bf3-934f-916bf3c8d1ef 2020-10-03 00:58:48.814994 41890 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-02 21:47:20.788122000 Z\n- &1 2020-10-02 23:45:19.339977000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-03 01:01:46.900686243 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123563\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115927\n mask_addr: 4294967295\nsign_in_count:\n- 252\n- 253\n 507 \N 189.186.126.151 c7d20ded-8d6b-4e6b-81f0-507008d27cf0 2020-10-03 01:01:46.907807 41891 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Wsut9Z39-YHTHXHiB9TS\n- nLzAgGXNu1insv5ZN4Dv\n 508 \N 189.186.126.151 c7d20ded-8d6b-4e6b-81f0-507008d27cf0 2020-10-03 01:01:46.923344 41892 1120 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1095\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.7584E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.1959E4\ncash_fund: !ruby/object:BigDecimal 18:0.1175E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3134E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.126.151 cc95908d-5aac-4e69-8666-d78b4a5ef9c0 2020-10-03 01:05:06.433595 41893 1095 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.126.151 cc95908d-5aac-4e69-8666-d78b4a5ef9c0 2020-10-03 01:05:06.447882 41894 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-02 22:56:32.499917000 Z\n- &1 2020-10-03 00:22:24.669007000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-03 05:50:58.513775492 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123563\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534868\n mask_addr: 4294967295\nsign_in_count:\n- 1931\n- 1932\n 3864 \N 177.228.99.84 9b18c122-a2aa-4d32-8bd6-d57107353add 2020-10-03 05:50:58.525172 41895 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WoGyAT8GdLgpKfzsxWJM\n- J78djw7r4sRHxMkP55da\n 3865 \N 177.228.99.84 9b18c122-a2aa-4d32-8bd6-d57107353add 2020-10-03 05:50:58.549143 41896 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-01 16:20:23.044961000 Z\n- &1 2020-10-02 16:13:15.030725000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-03 16:14:14.535731428 Z\nsign_in_count:\n- 658\n- 659\n 1321 \N 187.149.42.195 ec223d47-49d9-4584-bd68-f36a0c2233da 2020-10-03 16:14:14.564431 41897 2 User \N \N 2 User \N update ---\nunique_session_id:\n- n322sw-pEyWCveNoLV7b\n- 2vsFGGGToprvtPsuB-gx\n 1322 \N 187.149.42.195 ec223d47-49d9-4584-bd68-f36a0c2233da 2020-10-03 16:14:14.592718 42243 2105 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.148.23 48fcd02c-2685-437a-9645-7ba2bb45f17b 2020-10-09 00:48:49.788882 41898 1096 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.808E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 808.0 187.149.42.195 ad0e986b-c109-4a84-8cb9-de206f0f1fea 2020-10-03 17:32:05.05722 41899 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-02 20:29:10.458663000 Z\n- &1 2020-10-02 21:47:40.297832000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-03 18:39:49.304500156 Z\nsign_in_count:\n- 253\n- 254\n 508 \N 187.149.42.195 c3280947-4bab-4732-9d07-b0cfd62fec81 2020-10-03 18:39:49.332131 41900 1 User \N \N 1 User \N update ---\nunique_session_id:\n- UTkjyskiaTrBWeviNE4V\n- 1iVCjqZKf7xA_GnYK51v\n 509 \N 187.149.42.195 c3280947-4bab-4732-9d07-b0cfd62fec81 2020-10-03 18:39:49.352955 41901 1357 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1357'\n is_parent: false\n sku: ZAP-1357\n name: BRISTOL\n description: TENNIS CLOE NUDE DE PLATAFORMA\n price_base: '699.5'\n price_sale: '1399.0'\n img_product: 9FBC5AFB-BD38-4396-BB66-F807D0BEEA8D.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '13'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170806854'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-02 19:02:44.535891'\n updated_at: &12 2020-10-03 18:40:32.848770429 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1357'\n sku: ZAP-1357\n name: BRISTOL\n description: TENNIS CLOE NUDE DE PLATAFORMA\n price_base: '699.50'\n price_sale: '1399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-02 19:02:44.535891'\n updated_at: '2020-10-02 19:02:44.535891'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170806854'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '13'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1357'\n type: *3\n value: 1357\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ZAP-1357\n type: *7\n value: ZAP-1357\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BRISTOL\n type: *8\n value: BRISTOL\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: TENNIS CLOE NUDE DE PLATAFORMA\n type: *6\n value: TENNIS CLOE NUDE DE PLATAFORMA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '699.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1399E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 9FBC5AFB-BD38-4396-BB66-F807D0BEEA8D.jpeg\n type: *2\n value: 9FBC5AFB-BD38-4396-BB66-F807D0BEEA8D.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '13'\n type: *3\n value: 13\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170806854'\n type: *2\n value: '7509170806854'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-02 19:02:44.535891'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 9FBC5AFB-BD38-4396-BB66-F807D0BEEA8D.jpeg\n 2 El producto ZAP-1357 fue modificado. 187.149.42.195 9890d2e2-4726-4a9c-8b97-8f1bb623b076 2020-10-03 18:40:32.887988 41902 793 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.42.195 87869cde-fd0d-4c7b-9561-36afa894d1f3 2020-10-03 18:44:43.75565 41903 793 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.42.195 3b360ede-9fe8-4725-a1a4-a94df76021a2 2020-10-03 18:44:47.416615 41904 694 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-10-03\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.42.195 59975b52-0c40-41f4-985e-7e9b90f92aa9 2020-10-03 18:44:48.387505 41905 1938 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.42.195 8f4fe3d0-015e-40c5-9430-1f14d770d818 2020-10-03 18:45:02.805346 41906 695 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-10-03\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.42.195 51988c7f-c5a2-46cf-9f77-6b35b19fabde 2020-10-03 18:45:05.403248 41907 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-28 18:59:09.335055000 Z\n- &1 2020-09-29 22:51:56.246637000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-03 19:07:12.399851733 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143200\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143200\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115927\n mask_addr: 4294967295\nsign_in_count:\n- 304\n- 305\n 611 \N 189.186.126.151 47497fd7-9953-4fe3-b70f-6edd820d3d87 2020-10-03 19:07:12.407263 41908 21 User \N \N 21 User \N update ---\nunique_session_id:\n- uPxX81xfoMoFhLUDN78q\n- 5EZQxj93mm-BCsrYcGBx\n 612 \N 189.186.126.151 47497fd7-9953-4fe3-b70f-6edd820d3d87 2020-10-03 19:07:12.425138 41909 1097 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1175E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1175.0 189.186.126.151 d11385c9-0a2c-4de2-b2e5-172fd1b9d2cd 2020-10-03 19:39:14.667495 41910 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-03 00:22:24.669007000 Z\n- &1 2020-10-03 05:50:58.513775000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-03 20:47:01.052510052 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123563\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534868\n mask_addr: 4294967295\nsign_in_count:\n- 1932\n- 1933\n 3866 \N 177.228.99.84 9836e31a-20da-4c9e-ac79-c613a3460830 2020-10-03 20:47:01.059319 41911 4 User \N \N 4 User \N update ---\nunique_session_id:\n- J78djw7r4sRHxMkP55da\n- CZD5dEKsizodHxnR_vAt\n 3867 \N 177.228.99.84 9836e31a-20da-4c9e-ac79-c613a3460830 2020-10-03 20:47:01.07812 41912 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-02 21:47:40.297832000 Z\n- &1 2020-10-03 18:39:49.304500000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-03 20:53:57.885241315 Z\nsign_in_count:\n- 254\n- 255\n 510 \N 187.149.42.195 a11c7ec2-08df-4fdc-9a5b-9cc0123868d9 2020-10-03 20:53:57.891425 41913 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 1iVCjqZKf7xA_GnYK51v\n- yCdLpkFgapKULPzLRfBQ\n 511 \N 187.149.42.195 a11c7ec2-08df-4fdc-9a5b-9cc0123868d9 2020-10-03 20:53:57.90543 41914 3110 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1096\namount: !ruby/object:BigDecimal 18:0.399E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.399E3\nstatus: 0\ndate_sale: 2020-10-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1490\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 1fc86404-0133-4f6c-b6a2-6bbf0669b755 2020-10-03 22:27:47.895133 41915 2255 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.42.195 1fc86404-0133-4f6c-b6a2-6bbf0669b755 2020-10-03 22:27:47.922661 41916 3110 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 27c83684-5b2f-492c-9d38-fbc54c0b3f33 2020-10-03 22:27:51.944829 41917 4131 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1096\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.399E3\nmove_type: '1'\nsale_id: 3110\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1490\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.399E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1490 187.149.42.195 27c83684-5b2f-492c-9d38-fbc54c0b3f33 2020-10-03 22:27:51.966279 41918 405 Customer \N \N 2 User \N create ---\nnick_name: VANESSA GASTELUM\nphone: "(667) 470-9734"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente VANESSA GASTELUM fue registrado. 187.149.42.195 16fc57e0-7c3d-40b6-98f0-ca8f8649ce24 2020-10-03 22:28:47.160969 41919 3111 Sale \N \N 2 User \N create ---\ncustomer_id: 405\nuser_id: 2\nopen_cash_register_id: 1096\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-10-03\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1491\nexpiration_date: 2020-11-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 464d1682-4686-493d-b48a-47d60d3bc4a5 2020-10-03 22:29:12.967542 41920 2256 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 3 \N 187.149.42.195 464d1682-4686-493d-b48a-47d60d3bc4a5 2020-10-03 22:29:12.993264 41921 4132 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1096\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 3111\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1491\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1491 187.149.42.195 f3e3fdba-2b86-4c49-aac8-9c902321c2a7 2020-10-03 22:29:19.875532 41923 3112 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1096\namount: !ruby/object:BigDecimal 18:0.998E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.998E3\nstatus: 0\ndate_sale: 2020-10-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1492\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 dff477f8-830d-42f5-9fbd-4f139b5b32a3 2020-10-03 22:45:48.913252 41924 2255 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.42.195 dff477f8-830d-42f5-9fbd-4f139b5b32a3 2020-10-03 22:45:48.941601 41925 2234 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.42.195 dff477f8-830d-42f5-9fbd-4f139b5b32a3 2020-10-03 22:45:48.966831 41926 3112 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 1d78d85b-eaf8-4b3b-b2dc-3715681bfd2b 2020-10-03 22:46:11.830885 41927 4133 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1096\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.998E3\nmove_type: '1'\nsale_id: 3112\ncardnumber: 4497\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1492\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1492 187.149.42.195 1d78d85b-eaf8-4b3b-b2dc-3715681bfd2b 2020-10-03 22:46:11.853877 41928 695 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-10-03\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.126.151 d103dddf-53c7-4898-859e-473dd0b28beb 2020-10-03 23:17:43.698014 41929 1832 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 17 \N 189.186.126.151 d103dddf-53c7-4898-859e-473dd0b28beb 2020-10-03 23:17:43.717762 41930 694 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-10-03\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.126.151 fe031624-85fe-4601-9a26-7ead2080da05 2020-10-03 23:18:04.179195 41931 829 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.7E1\n 6 \N 189.186.126.151 fe031624-85fe-4601-9a26-7ead2080da05 2020-10-03 23:18:04.198503 41932 30 User \N \N 30 User \N update ---\nlast_sign_in_at:\n- 2020-09-22 20:38:43.282232000 Z\n- &1 2020-09-28 19:22:32.956965000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-03 23:18:50.430032874 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115927\n mask_addr: 4294967295\nsign_in_count:\n- 5\n- 6\n 12 \N 189.186.126.151 b3cf50c5-1ebf-4ec2-b6a7-a9f08a83fec3 2020-10-03 23:18:50.437774 41933 30 User \N \N 30 User \N update ---\nunique_session_id:\n- n7J1iAmETs7kvNndn4UN\n- U83aGwajRATkmzVL4efC\n 13 \N 189.186.126.151 b3cf50c5-1ebf-4ec2-b6a7-a9f08a83fec3 2020-10-03 23:18:50.453898 41934 340 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1096\nquantity: !ruby/object:BigDecimal 18:0.18E3\nstatus: 1\nobservations: 6 HORAS EXTRAS ROCIO\nexpense_date: 2020-10-03\nexpense_code: PV1-E-235\n 1 Egreso por 180.0 registrado 187.149.42.195 62eaf0a4-2bf8-4966-b4ef-85966a1bcbc8 2020-10-03 23:23:28.359899 41935 4134 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1096\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.18E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 340\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.42.195 62eaf0a4-2bf8-4966-b4ef-85966a1bcbc8 2020-10-03 23:23:28.411575 41936 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-03 18:39:49.304500000 Z\n- &1 2020-10-03 20:53:57.885241000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-03 23:31:20.712389907 Z\nsign_in_count:\n- 255\n- 256\n 512 \N 187.149.42.195 df061776-5bf7-440e-80fd-5c2eeef62558 2020-10-03 23:31:20.743988 41937 1 User \N \N 1 User \N update ---\nunique_session_id:\n- yCdLpkFgapKULPzLRfBQ\n- arogtnHEy-WPmAuGrzyG\n 513 \N 187.149.42.195 df061776-5bf7-440e-80fd-5c2eeef62558 2020-10-03 23:31:20.766453 41938 875 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.126.151 09ef5c6f-2393-4462-91da-a724836c2593 2020-10-03 23:37:36.678971 41939 875 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.126.151 e2bb2a00-eed9-4801-9749-ef9ab74d8d8f 2020-10-03 23:37:43.279126 41940 696 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-10-03\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.126.151 89f2f2e9-9a0d-4d58-861b-d18ea7024213 2020-10-03 23:37:50.743184 41941 966 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.126.151 7b5aae4f-dd87-4a71-98f0-55be9c949e54 2020-10-03 23:38:09.002039 41942 966 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.126.151 9088f0a0-2e04-4707-a854-dea259b9120f 2020-10-03 23:38:15.203081 41943 697 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-10-03\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.126.151 c62552c1-f0cf-4e03-ae24-21fde8a596bc 2020-10-03 23:38:16.190517 41944 3113 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1096\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.35E3\ntotal: !ruby/object:BigDecimal 18:0.849E3\nstatus: 0\ndate_sale: 2020-10-03\nsaletype: 1\nseller_id: 27\nsale_code: PV1-V-1493\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 efc3a999-5b3c-452d-8189-373067c3cb25 2020-10-03 23:51:50.090731 41945 1238 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.42.195 efc3a999-5b3c-452d-8189-373067c3cb25 2020-10-03 23:51:50.120594 41946 3113 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 aa781744-a69b-46cb-9cd0-91c447fd4493 2020-10-03 23:51:54.31457 41969 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-09-29 22:51:56.246637000 Z\n- &1 2020-10-03 19:07:12.399851000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-04 01:07:15.398846565 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183143200\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115927\n mask_addr: 4294967295\nsign_in_count:\n- 305\n- 306\n 613 \N 189.186.126.151 75986c1a-e8b4-4321-8e80-f39265a02ecf 2020-10-04 01:07:15.407268 41947 4135 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1096\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.849E3\nmove_type: '1'\nsale_id: 3113\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1493\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.849E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1493 187.149.42.195 aa781744-a69b-46cb-9cd0-91c447fd4493 2020-10-03 23:51:54.342088 41948 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-03 20:53:57.885241000 Z\n- &1 2020-10-03 23:31:20.712389000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-04 00:31:46.592187000 Z\nsign_in_count:\n- 256\n- 257\n 514 \N 187.149.42.195 cf7a0693-a9a6-4adb-bccf-fb16ca683b5d 2020-10-04 00:31:46.599052 41949 1 User \N \N 1 User \N update ---\nunique_session_id:\n- arogtnHEy-WPmAuGrzyG\n- "-1RxS9PaGEqPMbr-o1Hc"\n 515 \N 187.149.42.195 cf7a0693-a9a6-4adb-bccf-fb16ca683b5d 2020-10-04 00:31:46.613214 41950 696 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-10-03\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.42.195 d6f109ff-3c65-4b7d-858c-9dd70d211d70 2020-10-04 00:33:31.487278 41951 2347 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 704\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.195 d6f109ff-3c65-4b7d-858c-9dd70d211d70 2020-10-04 00:33:31.508935 41952 697 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-10-03\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.42.195 c68129b9-247a-42a7-9018-1dd09e520b6a 2020-10-04 00:33:45.535889 41953 2348 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 488\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.42.195 c68129b9-247a-42a7-9018-1dd09e520b6a 2020-10-04 00:33:45.557906 41954 3114 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1096\namount: !ruby/object:BigDecimal 18:0.349E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.349E3\nstatus: 0\ndate_sale: 2020-10-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1494\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 0935685f-492f-4728-b5b1-f435c2a63fd2 2020-10-04 00:37:52.405763 41955 2347 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.42.195 0935685f-492f-4728-b5b1-f435c2a63fd2 2020-10-04 00:37:52.433625 41956 3114 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 10fdbeba-fc1a-4b47-8a3b-ec4f1e116458 2020-10-04 00:38:10.060686 41957 4136 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1096\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.349E3\nmove_type: '1'\nsale_id: 3114\ncardnumber: 4497\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1494\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1494 187.149.42.195 10fdbeba-fc1a-4b47-8a3b-ec4f1e116458 2020-10-04 00:38:10.083455 41958 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-03 23:31:20.712389000 Z\n- &1 2020-10-04 00:31:46.592187000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-04 00:38:41.013377698 Z\nsign_in_count:\n- 257\n- 258\n 516 \N 187.149.42.195 aa9989c6-9e99-42a0-99e4-35d51807ce21 2020-10-04 00:38:41.021461 41959 1 User \N \N 1 User \N update ---\nunique_session_id:\n- "-1RxS9PaGEqPMbr-o1Hc"\n- GJ9b43zeH7mx6G3QsejW\n 517 \N 187.149.42.195 aa9989c6-9e99-42a0-99e4-35d51807ce21 2020-10-04 00:38:41.039801 41960 1121 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1096\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2695E4\namount_out: !ruby/object:BigDecimal 18:0.18E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.126E4\ncash_fund: !ruby/object:BigDecimal 18:0.716E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1976E4\nobservations: "ME PAGUE DOS ARETES PAGADOS CON TARJETA $560\\r\\nY RETIRE EN EL SOBRE\n $700 "\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.195 bc2301d0-5caf-49a6-9ce5-aab1422a642b 2020-10-04 00:53:25.432154 41961 1096 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.195 bc2301d0-5caf-49a6-9ce5-aab1422a642b 2020-10-04 00:53:25.446531 41962 1122 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1097\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1175E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1175E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.126.151 b81dc9db-eec8-42f9-8c59-25369c061e86 2020-10-04 00:56:56.482156 41963 1097 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.126.151 b81dc9db-eec8-42f9-8c59-25369c061e86 2020-10-04 00:56:56.499563 41964 1098 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1175E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1175.0 189.186.126.151 99334805-7510-4a19-8d1e-5d1acd8b00b5 2020-10-04 01:04:02.707296 41965 3115 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1098\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2020-10-03\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-701\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.126.151 2e1e0659-44c3-466a-82cb-d434f747ab8e 2020-10-04 01:04:53.022212 41966 1975 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.126.151 2e1e0659-44c3-466a-82cb-d434f747ab8e 2020-10-04 01:04:53.055909 41967 3115 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.126.151 f8d5d9f5-5a71-493f-a1b6-7d7d2f34a12e 2020-10-04 01:05:11.094025 41968 4137 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1098\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 3115\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-701\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-701 189.186.126.151 f8d5d9f5-5a71-493f-a1b6-7d7d2f34a12e 2020-10-04 01:05:11.116637 41970 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 5EZQxj93mm-BCsrYcGBx\n- GSTNWzbonKZdw6fukjpz\n 614 \N 189.186.126.151 75986c1a-e8b4-4321-8e80-f39265a02ecf 2020-10-04 01:07:15.423744 42244 3144 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 bde2d3bf-7a53-48e8-bcdb-01aba4c9ad75 2020-10-09 00:48:53.92084 41971 1123 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1098\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1299E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.974E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2474E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.126.151 b51aa4fd-85cf-40f5-837b-1b7f7935c1e4 2020-10-04 01:07:45.201764 41972 1098 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.126.151 b51aa4fd-85cf-40f5-837b-1b7f7935c1e4 2020-10-04 01:07:45.217223 41973 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-03 05:50:58.513775000 Z\n- &1 2020-10-03 20:47:01.052510000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-04 01:33:31.738135009 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534868\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938436\n mask_addr: 4294967295\nsign_in_count:\n- 1933\n- 1934\n 3868 \N 200.68.151.132 d33f6926-d412-4a7d-bf4c-42b985650a6a 2020-10-04 01:33:31.747373 41974 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CZD5dEKsizodHxnR_vAt\n- QcbuKpWqrpJz2g3WtzCN\n 3869 \N 200.68.151.132 d33f6926-d412-4a7d-bf4c-42b985650a6a 2020-10-04 01:33:31.766906 41975 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-04 00:31:46.592187000 Z\n- &1 2020-10-04 00:38:41.013377000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-05 16:00:47.189906152 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946171\n mask_addr: 4294967295\nsign_in_count:\n- 258\n- 259\n 518 \N 200.68.181.187 2a653152-155b-4352-bf6b-ba1d90eac356 2020-10-05 16:00:47.218234 41976 1 User \N \N 1 User \N update ---\nunique_session_id:\n- GJ9b43zeH7mx6G3QsejW\n- yiCf-kfN48oxVzxyHbF1\n 519 \N 200.68.181.187 2a653152-155b-4352-bf6b-ba1d90eac356 2020-10-05 16:00:47.240491 41977 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-10-03 19:07:12.399851000 Z\n- &1 2020-10-04 01:07:15.398846000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-05 18:44:07.374167883 Z\nsign_in_count:\n- 306\n- 307\n 615 \N 189.186.126.151 47c96c45-0703-4f25-a83e-8b39754e9f30 2020-10-05 18:44:07.379544 41978 21 User \N \N 21 User \N update ---\nunique_session_id:\n- GSTNWzbonKZdw6fukjpz\n- E5y6Z1XhoUPacS8X_fXq\n 616 \N 189.186.126.151 47c96c45-0703-4f25-a83e-8b39754e9f30 2020-10-05 18:44:07.396015 41979 1099 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.974E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 974.0 189.186.126.151 fc4a7b1d-3a57-4000-9738-9c99b1bdb57f 2020-10-05 18:44:26.313624 41980 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-02 16:13:15.030725000 Z\n- &1 2020-10-03 16:14:14.535731000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-05 19:15:15.922627087 Z\nsign_in_count:\n- 659\n- 660\n 1323 \N 187.149.42.195 0d1a9733-b627-4c1c-aaa7-adf3c6f406d1 2020-10-05 19:15:15.950989 41981 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 2vsFGGGToprvtPsuB-gx\n- a-KdTBYryhbGTUNe27Hb\n 1324 \N 187.149.42.195 0d1a9733-b627-4c1c-aaa7-adf3c6f406d1 2020-10-05 19:15:15.974242 41982 1100 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.716E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 716.0 187.149.42.195 b508b924-56c0-4921-98c4-f5dc86281eb1 2020-10-05 19:34:45.836446 41983 3116 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1100\namount: !ruby/object:BigDecimal 18:0.88707E3\ntax: !ruby/object:BigDecimal 18:0.14193E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1029E4\nstatus: 0\ndate_sale: 2020-10-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1495\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 13f21b11-8ecc-45b0-a7bb-641e7c7353ab 2020-10-05 19:37:02.794082 41984 237 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.42.195 13f21b11-8ecc-45b0-a7bb-641e7c7353ab 2020-10-05 19:37:02.831385 41985 3116 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 2b5c0c66-2716-45dc-a413-5431b1eac2ba 2020-10-05 19:37:41.642811 41986 4138 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1100\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1029E4\nmove_type: '1'\nsale_id: 3116\ncardnumber: 9797\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1495\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1495 187.149.42.195 2b5c0c66-2716-45dc-a413-5431b1eac2ba 2020-10-05 19:37:41.673748 41987 3117 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1100\namount: !ruby/object:BigDecimal 18:0.1028E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1028E4\nstatus: 0\ndate_sale: 2020-10-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1496\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 401f5230-b9e4-4eb8-a000-c3fe42da9c11 2020-10-05 20:11:28.652723 41988 2238 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.42.195 401f5230-b9e4-4eb8-a000-c3fe42da9c11 2020-10-05 20:11:28.68564 41989 1872 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.42.195 401f5230-b9e4-4eb8-a000-c3fe42da9c11 2020-10-05 20:11:28.718835 41990 3117 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 a5d628e4-f3f5-45e5-a337-8a71c6ea42a0 2020-10-05 20:11:33.604794 41991 4139 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1100\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1028E4\nmove_type: '1'\nsale_id: 3117\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1496\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1028E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1496 187.149.42.195 a5d628e4-f3f5-45e5-a337-8a71c6ea42a0 2020-10-05 20:11:33.635137 41992 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-03 20:47:01.052510000 Z\n- &1 2020-10-04 01:33:31.738135000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-05 20:17:47.384765901 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534868\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938436\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938436\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535012\n mask_addr: 4294967295\nsign_in_count:\n- 1934\n- 1935\n 3870 \N 177.228.99.228 2be06e3c-11ad-408c-a896-06c6e6c3e9e8 2020-10-05 20:17:47.42168 41993 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QcbuKpWqrpJz2g3WtzCN\n- FPr_MvRHJo1aLXDHhygt\n 3871 \N 177.228.99.228 2be06e3c-11ad-408c-a896-06c6e6c3e9e8 2020-10-05 20:17:47.447992 42103 3128 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 bcb869cd-2450-4c08-9d00-af75cb3d1092 2020-10-07 00:44:23.946842 41994 30 User \N \N 30 User \N update ---\nlast_sign_in_at:\n- 2020-09-28 19:22:32.956965000 Z\n- &1 2020-10-03 23:18:50.430032000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-05 20:46:05.555565448 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115927\n mask_addr: 4294967295\nsign_in_count:\n- 6\n- 7\n 14 \N 189.186.126.151 e01dc7f1-ccf6-4b4d-ae76-fc9e3ee788bc 2020-10-05 20:46:05.563048 41995 30 User \N \N 30 User \N update ---\nunique_session_id:\n- U83aGwajRATkmzVL4efC\n- _rUbxD4dWwyg2XyUx8Zc\n 15 \N 189.186.126.151 e01dc7f1-ccf6-4b4d-ae76-fc9e3ee788bc 2020-10-05 20:46:05.580968 41996 1360 Product \N \N 30 User \N create ---\nsku: BOL-1360\nname: 1BLCV20285\ndescription: BOLSO MULTICOLOR Y ROSA\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: WIN_20201005_15_00_26_Pro.jpg\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1360 fue creado. 189.186.126.151 99bee0d2-71c5-4403-845c-eede27353dfe 2020-10-05 21:00:25.28179 41997 1360 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001360'\n 2 \N 189.186.126.151 99bee0d2-71c5-4403-845c-eede27353dfe 2020-10-05 21:00:25.323961 41998 2349 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1360\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.126.151 99bee0d2-71c5-4403-845c-eede27353dfe 2020-10-05 21:00:25.354763 41999 403 Purchase \N \N 30 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-165\namount: !ruby/object:BigDecimal 18:0.26485E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.26485E4\nobservations: ''\npurchase_date: 2020-10-05\nuser_id: '30'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-165 por $ 2648.5 MXN creada. 189.186.126.151 7fff6d7c-75dd-463b-9de8-53625c059975 2020-10-05 21:00:30.207653 42000 2350 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1358\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.126.151 7fff6d7c-75dd-463b-9de8-53625c059975 2020-10-05 21:00:30.235235 42001 2351 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1182\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.126.151 7fff6d7c-75dd-463b-9de8-53625c059975 2020-10-05 21:00:30.276875 42002 2349 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.126.151 7fff6d7c-75dd-463b-9de8-53625c059975 2020-10-05 21:00:30.30332 42003 404 Purchase \N \N 30 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-100\namount: !ruby/object:BigDecimal 18:0.8495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.8495E3\nobservations: ''\npurchase_date: 2020-10-05\nuser_id: '30'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-100 por $ 849.5 MXN creada. 189.186.126.151 6d1b26a9-9bc5-4727-ab0d-d5a3edf4d22f 2020-10-05 21:00:57.487183 42004 2352 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1360\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.126.151 6d1b26a9-9bc5-4727-ab0d-d5a3edf4d22f 2020-10-05 21:00:57.512444 42005 3118 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1100\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2020-10-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1497\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 b363a04d-ef09-4a13-ae12-55da7ed6e2c1 2020-10-05 21:34:54.45286 42006 2230 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.42.195 b363a04d-ef09-4a13-ae12-55da7ed6e2c1 2020-10-05 21:34:54.479036 42007 3118 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 d46dd202-065b-45f6-acca-ec1dcb0fd290 2020-10-05 21:34:58.61445 42008 4140 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1100\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.549E3\nmove_type: '1'\nsale_id: 3118\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1497\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1497 187.149.42.195 d46dd202-065b-45f6-acca-ec1dcb0fd290 2020-10-05 21:34:58.638839 42009 1172 Product \N \N 30 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1172'\n is_parent: false\n sku: BOL-1172\n name: 1BLCP2095\n description: 'CANGURERA CLOE '\n price_base: '649.5'\n price_sale: '1299.0'\n img_product: 1BLCP20950.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170795660'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-03 19:54:09.762383'\n updated_at: &12 2020-10-05 22:12:45.971102967 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1172'\n sku: BOL-1172\n name: 1BLCP2095\n description: 'CANGURERA CLOE '\n price_base: '649.50'\n price_sale: '1299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-03 19:54:09.762383'\n updated_at: '2020-08-03 19:54:09.762383'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170795660'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1172'\n type: *3\n value: 1172\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1172\n type: *7\n value: BOL-1172\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCP2095\n type: *8\n value: 1BLCP2095\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'CANGURERA CLOE '\n type: *6\n value: 'CANGURERA CLOE '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '649.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1299E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 1BLCP20950.png\n type: *2\n value: 1BLCP20950.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170795660'\n type: *2\n value: '7509170795660'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-03 19:54:09.762383'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 1BLCP20950.png\n 2 El producto BOL-1172 fue modificado. 189.186.126.151 4bc0ec6a-1033-48bd-977e-0f935500d13b 2020-10-05 22:12:46.01579 42010 1359 Product \N \N 30 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1359'\n is_parent: false\n sku: BOL-1359\n name: 2BLCP20044\n description: BOLSO NEGRO TRANSPARENTE\n price_base: '649.5'\n price_sale: '1299.0'\n img_product: 2BLCP20044.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170798937'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-02 19:29:29.186874'\n updated_at: &12 2020-10-05 22:16:31.306050937 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1359'\n sku: BOL-1359\n name: 2BLCP20044\n description: BOLSO NEGRO TRANSPARENTE\n price_base: '649.50'\n price_sale: '1299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-02 19:29:29.186874'\n updated_at: '2020-10-02 19:29:29.186874'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170798937'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1359'\n type: *3\n value: 1359\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1359\n type: *7\n value: BOL-1359\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 2BLCP20044\n type: *8\n value: 2BLCP20044\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO NEGRO TRANSPARENTE\n type: *6\n value: BOLSO NEGRO TRANSPARENTE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '649.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1299E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 2BLCP20044.png\n type: *2\n value: 2BLCP20044.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170798937'\n type: *2\n value: '7509170798937'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-02 19:29:29.186874'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 2BLCP20044.png\n 2 El producto BOL-1359 fue modificado. 189.186.126.151 20f89571-dd2d-4515-adad-60a4c514ee74 2020-10-05 22:16:31.355197 42011 1361 Product \N \N 30 User \N create ---\nsku: CAR-1361\nname: 2BICV20319\ndescription: "Cartera-Cierre-Sencillo-Corte-Laser-Color-Rosa-en-Color-Rosa-|-Cloe\\r\\nCartera-Cierre-Sencillo-Corte-Laser-Color-Rosa-en-Color-Rosa-|-Cloe\\r\\nCartera-Cierre-Sencillo-Corte-Laser-Color-Rosa-en-Color-Rosa-|-Cloe\\r\\nCartera-Cierre-Sencillo-Corte-Laser-Color-Rosa-en-Color-Rosa-|-Cloe\\r\\nCartera-Cierre-Sencillo-Corte-Laser-Color-Rosa-en-Color-Rosa-|-Cloe\\r\\nCartera-Cierre-Sencillo-Corte-Laser-Color-Rosa-en-Color-Rosa-|-Cloe\\r\\nCartera-Cierre-Sencillo-Corte-Laser-Color-Rosa-en-Color-Rosa-|-Cloe\\r\\nCartera\n Cierre Sencillo Corte Laser Color Rosa"\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170820157'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 2BICV20319.png\ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1361 fue creado. 189.186.126.151 832d2594-c697-459d-b6a0-7dae36a4b79c 2020-10-05 22:21:22.141356 42012 2353 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1361\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.126.151 832d2594-c697-459d-b6a0-7dae36a4b79c 2020-10-05 22:21:22.184698 42169 3136 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 dfe2e8db-5a39-4962-90b1-b4104e8d39ec 2020-10-07 23:14:19.745276 42311 2354 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.148.23 b5cac915-55d2-4824-a53d-5af5c4ec47ae 2020-10-09 23:56:18.05969 42013 405 Purchase \N \N 30 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-101\namount: !ruby/object:BigDecimal 18:0.4495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4495E3\nobservations: ''\npurchase_date: 2020-10-05\nuser_id: '30'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-101 por $ 449.5 MXN creada. 189.186.126.151 96104a53-592c-433e-83a2-e7d0aa89350e 2020-10-05 22:21:39.683719 42014 2353 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.126.151 96104a53-592c-433e-83a2-e7d0aa89350e 2020-10-05 22:21:39.707078 42015 1296 Product \N \N 30 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1296'\n is_parent: false\n sku: BOL-1296\n name: 1BLCV20275\n description: BACK PACK LETRAS\n price_base: '799.5'\n price_sale: '1599.0'\n img_product: WIN_20201005_16_28_01_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170818789'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-08-27 19:29:32.408618'\n updated_at: &12 2020-10-05 22:26:01.441795030 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1296'\n sku: BOL-1296\n name: 1BLCV20275\n description: BACK PACK LETRAS\n price_base: '799.50'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-08-27 19:29:32.408618'\n updated_at: '2020-08-27 19:29:32.408618'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170818789'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1296'\n type: *3\n value: 1296\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1296\n type: *7\n value: BOL-1296\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCV20275\n type: *8\n value: 1BLCV20275\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BACK PACK LETRAS\n type: *6\n value: BACK PACK LETRAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '799.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20201005_16_28_01_Pro.jpg\n type: *2\n value: WIN_20201005_16_28_01_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170818789'\n type: *2\n value: '7509170818789'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-08-27 19:29:32.408618'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20201005_16_28_01_Pro.jpg\n 2 El producto BOL-1296 fue modificado. 189.186.126.151 a20bb758-20fc-426f-87bb-4bf2b6cbff92 2020-10-05 22:26:01.486237 42016 1358 Product \N \N 30 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1358'\n is_parent: false\n sku: BOL-1358\n name: 1BLCV20286\n description: BACK PACK LORES AZUL,PETROLEO Y ROSA\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: WIN_20201005_16_28_28_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170819069'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-02 19:22:24.491634'\n updated_at: &12 2020-10-05 22:27:03.845915860 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1358'\n sku: BOL-1358\n name: 1BLCV20286\n description: BACK PACK LORES AZUL,PETROLEO Y ROSA\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-02 19:22:24.491634'\n updated_at: '2020-10-02 19:22:24.491634'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170819069'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1358'\n type: *3\n value: 1358\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1358\n type: *7\n value: BOL-1358\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCV20286\n type: *8\n value: 1BLCV20286\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BACK PACK LORES AZUL,PETROLEO Y ROSA\n type: *6\n value: BACK PACK LORES AZUL,PETROLEO Y ROSA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20201005_16_28_28_Pro.jpg\n type: *2\n value: WIN_20201005_16_28_28_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170819069'\n type: *2\n value: '7509170819069'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-02 19:22:24.491634'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20201005_16_28_28_Pro.jpg\n 2 El producto BOL-1358 fue modificado. 189.186.126.151 6b15b545-4f61-4864-987d-555837ea5291 2020-10-05 22:27:03.88849 42017 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-04 00:38:41.013377000 Z\n- &1 2020-10-05 16:00:47.189906000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-05 22:31:14.411145044 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946171\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946171\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\nsign_in_count:\n- 259\n- 260\n 520 \N 187.149.42.195 a9c5b024-b05f-43e4-bd36-4f5f49cfe736 2020-10-05 22:31:14.420071 42018 1 User \N \N 1 User \N update ---\nunique_session_id:\n- yiCf-kfN48oxVzxyHbF1\n- dNWSJd6iGBYbV51W9xtP\n 521 \N 187.149.42.195 a9c5b024-b05f-43e4-bd36-4f5f49cfe736 2020-10-05 22:31:14.436602 42019 1122 Product \N \N 30 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1122'\n is_parent: false\n sku: ZAP-1122\n name: KESWI\n description: TENNIS PLATAFORMA CLOE\n price_base: '799.5'\n price_sale: '1599.0'\n img_product: WIN_20201005_16_34_37_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '13'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001122'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-05-04 00:23:42.526768'\n updated_at: &12 2020-10-05 22:31:45.530814673 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1122'\n sku: ZAP-1122\n name: KESWI\n description: TENNIS PLATAFORMA CLOE\n price_base: '799.50'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-05-04 00:23:42.526768'\n updated_at: '2020-05-04 00:23:42.567254'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001122'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '13'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1122'\n type: *3\n value: 1122\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ZAP-1122\n type: *7\n value: ZAP-1122\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: KESWI\n type: *8\n value: KESWI\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: TENNIS PLATAFORMA CLOE\n type: *6\n value: TENNIS PLATAFORMA CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '799.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20201005_16_34_37_Pro.jpg\n type: *2\n value: WIN_20201005_16_34_37_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '13'\n type: *3\n value: 13\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001122'\n type: *2\n value: '0001122'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-05-04 00:23:42.526768'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20201005_16_34_37_Pro.jpg\n 3 El producto ZAP-1122 fue modificado. 189.186.126.151 f2e5e4a3-20a7-4483-85ca-4ff90ddd37bc 2020-10-05 22:31:45.573381 42020 484 Product \N \N 30 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '484'\n is_parent: false\n sku: ZAP-484\n name: JUNAI851\n description: CALZADO CLOE\n price_base: '499.5'\n price_sale: '999.0'\n img_product: WIN_20201005_16_36_54_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '13'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170707984'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-21 00:33:09.946493'\n updated_at: &12 2020-10-05 22:36:03.741367416 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '484'\n sku: ZAP-484\n name: JUNAI851\n description: CALZADO CLOE\n price_base: '499.50'\n price_sale: '999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-21 00:33:09.946493'\n updated_at: '2019-02-21 00:33:09.946493'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170707984'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '13'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '484'\n type: *3\n value: 484\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ZAP-484\n type: *7\n value: ZAP-484\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: JUNAI851\n type: *8\n value: JUNAI851\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CALZADO CLOE\n type: *6\n value: CALZADO CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '499.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20201005_16_36_54_Pro.jpg\n type: *2\n value: WIN_20201005_16_36_54_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '13'\n type: *3\n value: 13\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170707984'\n type: *2\n value: '7509170707984'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-21 00:33:09.946493'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20201005_16_36_54_Pro.jpg\n 2 El producto ZAP-484 fue modificado. 189.186.126.151 c22b0080-d086-4bf8-b1f9-2ee7c10f666b 2020-10-05 22:36:03.785725 42021 269 Product \N \N 30 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '269'\n is_parent: false\n sku: ZAP-269\n name: MADX 691\n description: ZAPATO CLOE\n price_base: '449.5'\n price_sale: '899.0'\n img_product: WIN_20201005_16_40_03_Pro.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '13'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000269'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862847'\n updated_at: &12 2020-10-05 22:37:19.108158869 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '269'\n sku: ZAP-269\n name: MADX 691\n description: ZAPATO CLOE\n price_base: '449.50'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2019-02-02 01:39:44.862847'\n updated_at: '2019-02-04 09:10:18.371899'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '1'\n barcode: '0000269'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '13'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '269'\n type: *3\n value: 269\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ZAP-269\n type: *7\n value: ZAP-269\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: MADX 691\n type: *8\n value: MADX 691\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: ZAPATO CLOE\n type: *6\n value: ZAPATO CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '449.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: WIN_20201005_16_40_03_Pro.jpg\n type: *2\n value: WIN_20201005_16_40_03_Pro.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '13'\n type: *3\n value: 13\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '1'\n type: *3\n value: 1\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0000269'\n type: *2\n value: '0000269'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-02-02 01:39:44.862847'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- WIN_20201005_16_40_03_Pro.jpg\n 3 El producto ZAP-269 fue modificado. 189.186.126.151 6f127a14-54dd-4edd-8bc7-efcb7964a22a 2020-10-05 22:37:19.155361 42022 406 Purchase \N \N 30 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-102\namount: !ruby/object:BigDecimal 18:0.37475E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.37475E4\nobservations: ''\npurchase_date: 2020-10-05\nuser_id: '30'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-102 por $ 3747.5 MXN creada. 189.186.126.151 fcac5f3f-364d-4aa8-9455-606d28bee3bd 2020-10-06 00:08:21.594694 42023 1836 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 71 \N 189.186.126.151 fcac5f3f-364d-4aa8-9455-606d28bee3bd 2020-10-06 00:08:21.627101 42024 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-10-04 01:07:15.398846000 Z\n- &1 2020-10-05 18:44:07.374167000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-06 00:12:14.542349893 Z\nsign_in_count:\n- 307\n- 308\n 617 \N 189.186.126.151 aec7afe2-4616-44c0-8669-217b1a73aea5 2020-10-06 00:12:14.549685 42025 21 User \N \N 21 User \N update ---\nunique_session_id:\n- E5y6Z1XhoUPacS8X_fXq\n- N-bT6x9_Rgx2Axy1RSve\n 618 \N 189.186.126.151 aec7afe2-4616-44c0-8669-217b1a73aea5 2020-10-06 00:12:14.565506 42026 3119 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1099\namount: !ruby/object:BigDecimal 18:0.2498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2498E4\nstatus: 0\ndate_sale: 2020-10-05\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-702\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.126.151 cadcf443-2904-45b3-9323-905a45adcb6c 2020-10-06 00:12:54.947628 42027 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 72 \N 189.186.126.151 cadcf443-2904-45b3-9323-905a45adcb6c 2020-10-06 00:12:54.977275 42028 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.15E2\n 44 \N 189.186.126.151 cadcf443-2904-45b3-9323-905a45adcb6c 2020-10-06 00:12:55.005854 42029 3119 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.126.151 206ad1ff-77c4-4de7-ad2d-9d6d11ad9feb 2020-10-06 00:13:16.214764 42030 4141 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1099\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.2498E4\nmove_type: '1'\nsale_id: 3119\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-702\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: INS\n 1 movimiento de efectivo por venta con folio PV3-V-702 189.186.126.151 206ad1ff-77c4-4de7-ad2d-9d6d11ad9feb 2020-10-06 00:13:16.254905 42031 3120 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1099\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-10-05\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-703\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.126.151 84c54db2-f387-4ddc-837c-31dc06435132 2020-10-06 00:17:54.453655 42032 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 73 \N 189.186.126.151 84c54db2-f387-4ddc-837c-31dc06435132 2020-10-06 00:17:54.503622 42033 3120 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.126.151 34ef811b-9ef8-4c4a-bf0e-8260449ec790 2020-10-06 00:18:05.381263 42034 4142 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1099\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 3120\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-703\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-703 189.186.126.151 34ef811b-9ef8-4c4a-bf0e-8260449ec790 2020-10-06 00:18:05.40527 42035 3121 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1100\namount: !ruby/object:BigDecimal 18:0.56E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.56E3\nstatus: 0\ndate_sale: 2020-10-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1498\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 3e956181-72f4-4335-a217-92513027eaee 2020-10-06 00:18:55.629586 42036 791 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 12 \N 187.149.42.195 3e956181-72f4-4335-a217-92513027eaee 2020-10-06 00:18:55.65987 42037 3121 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 3cab6ed5-0241-4a4a-b0ce-a0075fad3cc6 2020-10-06 00:19:58.246633 42312 3151 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 2982b550-8228-42b7-b042-e6d161ff3840 2020-10-09 23:56:43.848946 42038 4143 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1100\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.56E3\nmove_type: '1'\nsale_id: 3121\ncardnumber: 2942\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1498\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1498 187.149.42.195 3cab6ed5-0241-4a4a-b0ce-a0075fad3cc6 2020-10-06 00:19:58.272807 42039 3122 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1099\namount: !ruby/object:BigDecimal 18:0.199E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.199E3\nstatus: 0\ndate_sale: 2020-10-05\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-704\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.126.151 23e62a07-5b41-4fc6-a292-9aefaf6c36d8 2020-10-06 00:29:44.959138 42040 2188 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.126.151 23e62a07-5b41-4fc6-a292-9aefaf6c36d8 2020-10-06 00:29:44.992175 42041 3122 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.126.151 8c25e46d-b694-4af7-b50e-f3c9f9915feb 2020-10-06 00:29:55.836735 42042 4144 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1099\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.199E3\nmove_type: '1'\nsale_id: 3122\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-704\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-704 189.186.126.151 8c25e46d-b694-4af7-b50e-f3c9f9915feb 2020-10-06 00:29:55.859157 42043 341 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1100\nquantity: !ruby/object:BigDecimal 18:0.25E2\nstatus: 1\nobservations: garrafon de agua\nexpense_date: 2020-10-05\nexpense_code: PV1-E-236\n 1 Egreso por 25.0 registrado 187.149.42.195 5ab4f6ed-18cd-4c18-902d-631afe50c02c 2020-10-06 00:51:24.992523 42044 4145 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1100\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 341\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.42.195 5ab4f6ed-18cd-4c18-902d-631afe50c02c 2020-10-06 00:51:25.033041 42045 1124 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1100\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3166E4\namount_out: !ruby/object:BigDecimal 18:0.25E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.768E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2268E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.195 77ecb320-1c99-44e8-8c21-426b5a44e877 2020-10-06 00:52:41.314288 42046 1100 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.195 77ecb320-1c99-44e8-8c21-426b5a44e877 2020-10-06 00:52:41.332403 42047 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-04 01:33:31.738135000 Z\n- &1 2020-10-05 20:17:47.384765000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-06 04:15:29.416260841 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938436\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535012\n mask_addr: 4294967295\nsign_in_count:\n- 1935\n- 1936\n 3872 \N 177.228.99.228 69629949-ff80-406e-9692-2050ab5de4b7 2020-10-06 04:15:29.438907 42048 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FPr_MvRHJo1aLXDHhygt\n- 5LQBJqxHeQq8_xxx7Wkg\n 3873 \N 177.228.99.228 69629949-ff80-406e-9692-2050ab5de4b7 2020-10-06 04:15:29.462314 42049 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-05 16:00:47.189906000 Z\n- &1 2020-10-05 22:31:14.411145000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-06 16:00:13.017356778 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946171\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946155\n mask_addr: 4294967295\nsign_in_count:\n- 260\n- 261\n 522 \N 200.68.181.171 72a00dee-3f92-4c79-9030-6cdd70087f68 2020-10-06 16:00:13.042355 42050 1 User \N \N 1 User \N update ---\nunique_session_id:\n- dNWSJd6iGBYbV51W9xtP\n- 8r_hcFGLxAyCv-QAJANn\n 523 \N 200.68.181.171 72a00dee-3f92-4c79-9030-6cdd70087f68 2020-10-06 16:00:13.067459 42051 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-05 22:31:14.411145000 Z\n- &1 2020-10-06 16:00:13.017356000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-06 16:08:32.986483658 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946155\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946155\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\nsign_in_count:\n- 261\n- 262\n 524 \N 187.149.42.195 3710f5b0-35c7-47aa-a7d7-186922432f2e 2020-10-06 16:08:32.993658 42052 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 8r_hcFGLxAyCv-QAJANn\n- p_wfUEsH9CKomAsAHBi_\n 525 \N 187.149.42.195 3710f5b0-35c7-47aa-a7d7-186922432f2e 2020-10-06 16:08:33.009119 42053 1101 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.768E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 768.0 187.149.42.195 7cc2a54a-51bc-4774-ba67-5eef178fb3ad 2020-10-06 16:39:24.247558 42054 3123 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1101\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2020-10-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1499\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 d1a7e1f6-a8aa-4543-919a-1c8e3b1592d4 2020-10-06 18:34:26.714505 42055 2252 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.42.195 d1a7e1f6-a8aa-4543-919a-1c8e3b1592d4 2020-10-06 18:34:26.74566 42056 3123 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.42.195 5942a64f-23c0-49d6-9e04-61e4351f9002 2020-10-06 18:34:30.745777 42057 4146 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1101\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.569E3\nmove_type: '1'\nsale_id: 3123\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1499\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.569E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1499 187.149.42.195 5942a64f-23c0-49d6-9e04-61e4351f9002 2020-10-06 18:34:30.780761 42358 2336 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.148.23 7ddab680-4b15-4ce8-abc5-94a077081e4a 2020-10-10 20:00:38.879181 42058 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-02 23:45:19.339977000 Z\n- &1 2020-10-03 01:01:46.900686000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-06 19:38:00.812414584 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123563\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115927\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115927\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\nsign_in_count:\n- 253\n- 254\n 509 \N 189.186.148.23 ce3acec1-e0c7-4928-9e1b-4750c6182a64 2020-10-06 19:38:00.852309 42059 18 User \N \N 18 User \N update ---\nunique_session_id:\n- nLzAgGXNu1insv5ZN4Dv\n- 4uNBfphzEBGhxcv-AnT3\n 510 \N 189.186.148.23 ce3acec1-e0c7-4928-9e1b-4750c6182a64 2020-10-06 19:38:00.889625 42060 3124 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1099\namount: !ruby/object:BigDecimal 18:0.568E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.568E3\nstatus: 0\ndate_sale: 2020-10-06\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-705\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 2f6c2aff-2a2f-4db9-86d7-90e96e2964f9 2020-10-06 19:45:53.95577 42061 834 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 23 \N 189.186.148.23 2f6c2aff-2a2f-4db9-86d7-90e96e2964f9 2020-10-06 19:45:53.991775 42062 2185 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.148.23 2f6c2aff-2a2f-4db9-86d7-90e96e2964f9 2020-10-06 19:45:54.030555 42063 3124 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 21290747-2036-4b05-ac9b-bb4ca1b48a46 2020-10-06 19:45:58.554624 42064 4147 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1099\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.568E3\nmove_type: '1'\nsale_id: 3124\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-705\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.32E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-705 189.186.148.23 21290747-2036-4b05-ac9b-bb4ca1b48a46 2020-10-06 19:45:58.587605 42065 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-05 20:17:47.384765000 Z\n- &1 2020-10-06 04:15:29.416260000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-06 20:23:47.746885864 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\nsign_in_count:\n- 1936\n- 1937\n 3874 \N 189.186.148.23 68e8a103-6d88-495e-afd6-98908f63591f 2020-10-06 20:23:47.765236 42066 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5LQBJqxHeQq8_xxx7Wkg\n- BpEpc15yst8MDD49g8J6\n 3875 \N 189.186.148.23 68e8a103-6d88-495e-afd6-98908f63591f 2020-10-06 20:23:47.787087 42067 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-03 01:01:46.900686000 Z\n- &1 2020-10-06 19:38:00.812414000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-06 22:21:14.397911392 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115927\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\nsign_in_count:\n- 254\n- 255\n 511 \N 189.186.148.23 4c655c9e-ed83-42c5-a7e5-f928d4a3fed3 2020-10-06 22:21:14.42523 42068 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 4uNBfphzEBGhxcv-AnT3\n- kUfLr3AJJDrHsULWdRmx\n 512 \N 189.186.148.23 4c655c9e-ed83-42c5-a7e5-f928d4a3fed3 2020-10-06 22:21:14.449141 42069 4148 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1099\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1038E4\nmove_type: '1'\nsale_id: 2922\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1038E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-616 189.186.148.23 be940597-117d-4abb-af94-8b579cbabe43 2020-10-06 22:44:16.995517 42070 4148 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1099\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1038E4\nmove_type: '1'\nsale_id: 2922\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1038E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.148.23 684cac11-79c0-4b15-9fc7-87d90fcd2763 2020-10-06 22:44:18.696563 42071 4149 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1099\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1038E4\nmove_type: '1'\nsale_id: 2922\ncardnumber: 1022\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-616 189.186.148.23 a4ca1ada-b18c-4cab-89cd-ef6c49bc0d50 2020-10-06 22:44:32.074286 42072 2922 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.148.23 3428116e-e821-4b6a-b911-5e442c65c256 2020-10-06 22:44:33.577894 42073 3125 Sale \N \N 18 User \N create ---\ncustomer_id: 194\nuser_id: 18\nopen_cash_register_id: 1099\namount: !ruby/object:BigDecimal 18:0.1927E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1927E4\nstatus: 0\ndate_sale: 2020-10-06\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-706\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 7fc16174-c392-465e-90fc-6f00947acc64 2020-10-06 22:48:20.722234 42074 1794 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.148.23 7fc16174-c392-465e-90fc-6f00947acc64 2020-10-06 22:48:20.75314 42075 2278 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.148.23 7fc16174-c392-465e-90fc-6f00947acc64 2020-10-06 22:48:20.793022 42076 3125 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 6fdf6bd0-7988-449c-8e1e-536ccb9a5dca 2020-10-06 22:48:28.226487 42077 4150 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1099\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 3125\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-706\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-706 189.186.148.23 6fdf6bd0-7988-449c-8e1e-536ccb9a5dca 2020-10-06 22:48:28.252085 42078 3125 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-706 cancelada. 189.186.148.23 feec17b1-fe5b-4971-9270-de3b0548d5d5 2020-10-06 22:48:35.902593 42191 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-07 23:13:50.648067000 Z\n- &1 2020-10-07 23:57:19.015937000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-08 00:48:34.553936914 Z\nsign_in_count:\n- 259\n- 260\n 521 \N 189.186.148.23 685c9fba-d34c-4190-bd35-5475fa69ab56 2020-10-08 00:48:34.560417 42079 4150 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1099\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3125\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-706\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.148.23 feec17b1-fe5b-4971-9270-de3b0548d5d5 2020-10-06 22:48:35.926693 42080 2278 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.148.23 feec17b1-fe5b-4971-9270-de3b0548d5d5 2020-10-06 22:48:35.955276 42081 1794 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.148.23 feec17b1-fe5b-4971-9270-de3b0548d5d5 2020-10-06 22:48:35.976288 42082 3126 Sale \N \N 18 User \N create ---\ncustomer_id: 194\nuser_id: 18\nopen_cash_register_id: 1099\namount: !ruby/object:BigDecimal 18:0.1927E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1927E4\nstatus: 0\ndate_sale: 2020-10-06\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-707\nexpiration_date: 2020-11-10\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 b8408394-db98-4803-ac8b-f63b7eed232f 2020-10-06 22:49:09.773305 42083 1794 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.148.23 b8408394-db98-4803-ac8b-f63b7eed232f 2020-10-06 22:49:09.798498 42084 2278 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.148.23 b8408394-db98-4803-ac8b-f63b7eed232f 2020-10-06 22:49:09.823261 42085 4151 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1099\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3126\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-707\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-707 189.186.148.23 3a843e02-b229-45f1-9f6e-d8d36c90449e 2020-10-06 22:49:18.482972 42086 3126 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.148.23 d31f8a32-2187-4a56-9e43-c6d9b492c5cb 2020-10-06 22:49:22.504428 42087 3127 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1099\namount: !ruby/object:BigDecimal 18:0.2248E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2248E4\nstatus: 0\ndate_sale: 2020-10-06\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-708\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 3e86e0ba-a19f-4076-b787-695e6bd72645 2020-10-06 23:05:20.135338 42088 829 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 189.186.148.23 3e86e0ba-a19f-4076-b787-695e6bd72645 2020-10-06 23:05:20.165945 42089 2341 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.148.23 3e86e0ba-a19f-4076-b787-695e6bd72645 2020-10-06 23:05:20.193354 42090 3127 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 7ce7d454-f023-41f8-ba62-bdbb8aba25e3 2020-10-06 23:05:34.319423 42091 4152 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1099\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2248E4\nmove_type: '1'\nsale_id: 3127\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-708\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.24E4\nchange: !ruby/object:BigDecimal 18:0.152E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-708 189.186.148.23 7ce7d454-f023-41f8-ba62-bdbb8aba25e3 2020-10-06 23:05:34.341752 42092 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-06 04:15:29.416260000 Z\n- &1 2020-10-06 20:23:47.746885000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-06 23:15:51.332757684 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535012\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\nsign_in_count:\n- 1937\n- 1938\n 3876 \N 189.186.148.23 3c3f2f22-e82f-403c-a81b-cc5451b8fc9a 2020-10-06 23:15:51.339284 42093 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BpEpc15yst8MDD49g8J6\n- Vyk67UTrqMuFEKGqyrjM\n 3877 \N 189.186.148.23 3c3f2f22-e82f-403c-a81b-cc5451b8fc9a 2020-10-06 23:15:51.356268 42094 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-06 16:00:13.017356000 Z\n- &1 2020-10-06 16:08:32.986483000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-07 00:23:48.240308843 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946155\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\nsign_in_count:\n- 262\n- 263\n 526 \N 187.149.42.195 a0dd3dd5-5aa3-4a77-b17e-5b85c0ca05b6 2020-10-07 00:23:48.248495 42095 1 User \N \N 1 User \N update ---\nunique_session_id:\n- p_wfUEsH9CKomAsAHBi_\n- jkYRRhx8Umg8wgnyz1R5\n 527 \N 187.149.42.195 a0dd3dd5-5aa3-4a77-b17e-5b85c0ca05b6 2020-10-07 00:23:48.268126 42096 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-06 19:38:00.812414000 Z\n- &1 2020-10-06 22:21:14.397911000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-07 00:24:51.133039711 Z\nsign_in_count:\n- 255\n- 256\n 513 \N 189.186.148.23 af1d5ed3-795d-4555-8c9a-698d02774fda 2020-10-07 00:24:51.139126 42097 18 User \N \N 18 User \N update ---\nunique_session_id:\n- kUfLr3AJJDrHsULWdRmx\n- dwjUhgHLpAN18FoNidu5\n 514 \N 189.186.148.23 af1d5ed3-795d-4555-8c9a-698d02774fda 2020-10-07 00:24:51.153458 42098 1125 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1099\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.855E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.49E4\ncash_fund: !ruby/object:BigDecimal 18:0.1088E4\nphysical_cash: !ruby/object:BigDecimal 18:0.5988E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.148.23 3aeb9e9c-8c0a-4b4f-896b-a2dbb31dbff5 2020-10-07 00:34:41.622952 42099 1099 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.148.23 3aeb9e9c-8c0a-4b4f-896b-a2dbb31dbff5 2020-10-07 00:34:41.638232 42100 3128 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1101\namount: !ruby/object:BigDecimal 18:0.1318E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1318E4\nstatus: 0\ndate_sale: 2020-10-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1500\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.42.195 88bfae9e-7638-4cd0-805e-7a6da43937a7 2020-10-07 00:44:03.142938 42101 2233 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.42.195 88bfae9e-7638-4cd0-805e-7a6da43937a7 2020-10-07 00:44:03.18959 42102 2240 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.42.195 88bfae9e-7638-4cd0-805e-7a6da43937a7 2020-10-07 00:44:03.234366 42104 4153 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1101\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1318E4\nmove_type: '1'\nsale_id: 3128\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1500\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1318E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1500 187.149.42.195 bcb869cd-2450-4c08-9d00-af75cb3d1092 2020-10-07 00:44:23.972661 42105 1126 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1101\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1887E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.21E4\ncash_fund: !ruby/object:BigDecimal 18:0.555E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2655E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.42.195 257485fc-123b-4ee4-8f22-64e2c15247f4 2020-10-07 00:50:29.340175 42106 1101 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.42.195 257485fc-123b-4ee4-8f22-64e2c15247f4 2020-10-07 00:50:29.35567 42107 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-06 20:23:47.746885000 Z\n- &1 2020-10-06 23:15:51.332757000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-07 00:56:00.726444163 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934352\n mask_addr: 4294967295\nsign_in_count:\n- 1938\n- 1939\n 3878 \N 200.68.135.144 6d60f44a-45a4-4375-874f-0d7ff4edf932 2020-10-07 00:56:00.758135 42108 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Vyk67UTrqMuFEKGqyrjM\n- e3vpqNPMvh7wLmPAmBy6\n 3879 \N 200.68.135.144 6d60f44a-45a4-4375-874f-0d7ff4edf932 2020-10-07 00:56:00.7847 42109 30 User \N \N 30 User \N update ---\nlast_sign_in_at:\n- 2020-10-03 23:18:50.430032000 Z\n- &1 2020-10-05 20:46:05.555565000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-07 02:26:13.819102481 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115927\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147131023\n mask_addr: 4294967295\nsign_in_count:\n- 7\n- 8\n 16 \N 187.149.104.143 c7114818-a6c7-454e-8345-baec4fdde8bd 2020-10-07 02:26:13.825976 42110 30 User \N \N 30 User \N update ---\nunique_session_id:\n- _rUbxD4dWwyg2XyUx8Zc\n- CCT43NRZLn2_Z3a1Rsb8\n 17 \N 187.149.104.143 c7114818-a6c7-454e-8345-baec4fdde8bd 2020-10-07 02:26:13.84151 42111 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-06 16:08:32.986483000 Z\n- &1 2020-10-07 00:23:48.240308000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-07 14:36:39.031448924 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729508\n mask_addr: 4294967295\nsign_in_count:\n- 263\n- 264\n 528 \N 201.175.157.100 b4c1b97b-1898-4929-8595-5d850dd9e519 2020-10-07 14:36:39.063998 42112 1 User \N \N 1 User \N update ---\nunique_session_id:\n- jkYRRhx8Umg8wgnyz1R5\n- 5GdscSxtQ7hmHKkdsAor\n 529 \N 201.175.157.100 b4c1b97b-1898-4929-8595-5d850dd9e519 2020-10-07 14:36:39.089373 42113 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-06 23:15:51.332757000 Z\n- &1 2020-10-07 00:56:00.726444000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-07 14:51:07.617692330 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934352\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534940\n mask_addr: 4294967295\nsign_in_count:\n- 1939\n- 1940\n 3880 \N 177.228.99.156 82406f59-b74e-4cfc-8a56-f33538fdab6b 2020-10-07 14:51:07.649207 42114 4 User \N \N 4 User \N update ---\nunique_session_id:\n- e3vpqNPMvh7wLmPAmBy6\n- 4UiwncTzJLAxixjtkjue\n 3881 \N 177.228.99.156 82406f59-b74e-4cfc-8a56-f33538fdab6b 2020-10-07 14:51:07.676904 42115 1102 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.555E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 555.0 189.186.9.45 fbf27744-5dc8-4d84-b17f-ba7e1a44bb9d 2020-10-07 16:16:04.276136 42116 3129 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1102\namount: !ruby/object:BigDecimal 18:0.43452E3\ntax: !ruby/object:BigDecimal 18:0.3448E2\ndiscount: !ruby/object:BigDecimal 18:0.219E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-10-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1501\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 08172f41-ea46-45f4-973c-72de126ce48b 2020-10-07 16:23:46.027494 42117 144 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.9.45 08172f41-ea46-45f4-973c-72de126ce48b 2020-10-07 16:23:46.076103 42118 3129 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 7cc28d10-c0a5-438b-b5b2-f07af430f482 2020-10-07 16:23:51.053189 42119 4154 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1102\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 3129\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1501\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1501 189.186.9.45 7cc28d10-c0a5-438b-b5b2-f07af430f482 2020-10-07 16:23:51.078211 42120 4155 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1102\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2879\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1372 189.186.9.45 fbb36edc-5eb5-4789-aa12-8a2f49290a9b 2020-10-07 16:32:07.490276 42121 3130 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1102\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2020-10-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1502\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 b8c5fc9e-8264-4d1e-ba51-f558314c00f8 2020-10-07 17:44:17.792811 42122 2252 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.9.45 b8c5fc9e-8264-4d1e-ba51-f558314c00f8 2020-10-07 17:44:17.833319 42123 3130 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 8b8af364-389d-4e34-a3f4-4f63fdfe7ab2 2020-10-07 17:44:21.638732 42192 18 User \N \N 18 User \N update ---\nunique_session_id:\n- _8gy6X2WABmame5YsPFc\n- ZaCyQTBoSkeHZzUyHzjs\n 522 \N 189.186.148.23 685c9fba-d34c-4190-bd35-5475fa69ab56 2020-10-08 00:48:34.575111 42359 834 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 24 \N 189.186.148.23 7ddab680-4b15-4ce8-abc5-94a077081e4a 2020-10-10 20:00:38.905254 42124 4156 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1102\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.569E3\nmove_type: '1'\nsale_id: 3130\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1502\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.569E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1502 189.186.9.45 8b8af364-389d-4e34-a3f4-4f63fdfe7ab2 2020-10-07 17:44:21.663647 42125 4157 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1102\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 2881\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1374 189.186.9.45 e16a7836-8ab1-4346-91cc-5fba13cf5091 2020-10-07 19:09:48.480628 42126 2881 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.9.45 04547e11-7d31-4fad-b293-e22d1dd0788e 2020-10-07 19:09:49.582243 42127 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-07 00:56:00.726444000 Z\n- &1 2020-10-07 14:51:07.617692000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-07 19:37:03.838127226 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534940\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534940\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945964\n mask_addr: 4294967295\nsign_in_count:\n- 1940\n- 1941\n 3882 \N 200.68.180.236 e174a01f-119e-4999-a5a3-9efe10eb5887 2020-10-07 19:37:03.848967 42128 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4UiwncTzJLAxixjtkjue\n- RjmXFP1ZDxiFCkR-mw5y\n 3883 \N 200.68.180.236 e174a01f-119e-4999-a5a3-9efe10eb5887 2020-10-07 19:37:03.871644 42129 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-10-05 18:44:07.374167000 Z\n- &1 2020-10-06 00:12:14.542349000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-07 19:53:44.580141847 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115927\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\nsign_in_count:\n- 308\n- 309\n 619 \N 189.186.148.23 cd96783d-234f-49b0-8552-3fd615ca68be 2020-10-07 19:53:44.606565 42130 21 User \N \N 21 User \N update ---\nunique_session_id:\n- N-bT6x9_Rgx2Axy1RSve\n- 5QavmyPbs2QigxvgVVEZ\n 620 \N 189.186.148.23 cd96783d-234f-49b0-8552-3fd615ca68be 2020-10-07 19:53:44.622414 42131 3131 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1102\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-10-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1503\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 20145f00-52da-45a9-a71a-c831d02a5f90 2020-10-07 20:28:42.270212 42132 2286 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.9.45 20145f00-52da-45a9-a71a-c831d02a5f90 2020-10-07 20:28:42.29691 42133 3131 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 21f59f60-d1ac-40e0-9293-e005c9444f47 2020-10-07 20:29:20.083643 42134 4158 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1102\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3131\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1503\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1503 189.186.9.45 21f59f60-d1ac-40e0-9293-e005c9444f47 2020-10-07 20:29:20.11578 42135 3132 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1102\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-10-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1504\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 6d3f2bfd-b2d0-411f-a2a7-9cdcf8efb2a4 2020-10-07 20:35:03.507528 42136 790 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 15 \N 189.186.9.45 6d3f2bfd-b2d0-411f-a2a7-9cdcf8efb2a4 2020-10-07 20:35:03.542181 42137 3132 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 4c432643-4d8c-427c-a01b-ddcb8a4a27ec 2020-10-07 20:35:30.625658 42138 4159 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1102\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3132\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1504\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1504 189.186.9.45 4c432643-4d8c-427c-a01b-ddcb8a4a27ec 2020-10-07 20:35:30.649529 42139 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-07 00:23:48.240308000 Z\n- &1 2020-10-07 14:36:39.031448000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-07 20:39:57.487828802 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729508\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729508\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\nsign_in_count:\n- 264\n- 265\n 530 \N 189.186.9.45 fa4d26db-1c43-4f7a-83f1-35627ab39903 2020-10-07 20:39:57.499538 42140 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 5GdscSxtQ7hmHKkdsAor\n- 6_5-Fk_AKCSuuA6EGWVe\n 531 \N 189.186.9.45 fa4d26db-1c43-4f7a-83f1-35627ab39903 2020-10-07 20:39:57.521651 42141 3133 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1102\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.679E3\ntotal: !ruby/object:BigDecimal 18:0.102E4\nstatus: 0\ndate_sale: 2020-10-07\nsaletype: 1\nseller_id: 27\nsale_code: PV1-V-1505\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 d908c99e-082e-46e1-ae82-20fd2b79e1bd 2020-10-07 21:11:03.547072 42142 504 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.9.45 d908c99e-082e-46e1-ae82-20fd2b79e1bd 2020-10-07 21:11:03.575863 42143 3133 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 4c421f9a-d61d-4af6-8d22-efeab76b476d 2020-10-07 21:11:43.020518 42360 2265 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.148.23 7ddab680-4b15-4ce8-abc5-94a077081e4a 2020-10-10 20:00:38.938761 42361 3156 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 3dc2f504-6226-4c1f-9371-32fff0854bd5 2020-10-10 20:01:31.017294 42144 4160 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1102\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.102E4\nmove_type: '1'\nsale_id: 3133\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1505\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SE PAGARA A SAM\n 1 movimiento de efectivo por venta con folio PV1-V-1505 189.186.9.45 4c421f9a-d61d-4af6-8d22-efeab76b476d 2020-10-07 21:11:43.047883 42145 3134 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1102\namount: !ruby/object:BigDecimal 18:0.708E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.708E3\nstatus: 0\ndate_sale: 2020-10-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1506\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 c0786f81-9fe5-4aac-9eda-e09c6660263c 2020-10-07 21:26:16.92175 42146 2234 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.9.45 c0786f81-9fe5-4aac-9eda-e09c6660263c 2020-10-07 21:26:16.990472 42147 2065 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.9.45 c0786f81-9fe5-4aac-9eda-e09c6660263c 2020-10-07 21:26:17.028538 42148 3134 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1506 cancelada. 189.186.9.45 248dc64f-31f2-47dc-b0ed-291787a218fb 2020-10-07 21:27:43.08114 42149 2065 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.9.45 248dc64f-31f2-47dc-b0ed-291787a218fb 2020-10-07 21:27:43.109216 42150 2234 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.9.45 248dc64f-31f2-47dc-b0ed-291787a218fb 2020-10-07 21:27:43.131856 42151 3135 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1102\namount: !ruby/object:BigDecimal 18:0.833E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.833E3\nstatus: 0\ndate_sale: 2020-10-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1507\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 d1f4fde9-ee58-4220-b494-984ef95e7d8a 2020-10-07 21:28:39.450228 42152 2234 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.9.45 d1f4fde9-ee58-4220-b494-984ef95e7d8a 2020-10-07 21:28:39.483128 42153 2065 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.9.45 d1f4fde9-ee58-4220-b494-984ef95e7d8a 2020-10-07 21:28:39.509543 42154 2079 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.9.45 d1f4fde9-ee58-4220-b494-984ef95e7d8a 2020-10-07 21:28:39.536788 42155 3135 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 ea5c6ff3-e188-4f5b-a6a6-68056fccccac 2020-10-07 21:29:35.812238 42156 4161 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1102\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.833E3\nmove_type: '1'\nsale_id: 3135\ncardnumber: 5695\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1507\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1507 189.186.9.45 ea5c6ff3-e188-4f5b-a6a6-68056fccccac 2020-10-07 21:29:35.836142 42157 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-09-18 19:05:53.327275000 Z\n- &1 2020-09-23 00:48:31.596095000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-07 21:41:09.000514657 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\nsign_in_count:\n- 95\n- 96\n 192 \N 189.186.148.23 1d9a2ef3-a19c-42dd-8074-1981f35c92a4 2020-10-07 21:41:09.008573 42158 25 User \N \N 25 User \N update ---\nunique_session_id:\n- "-wcWgTKh1wg8Jt5fQAv8"\n- YVNTxgTs56M8Jx8sBMWP\n 193 \N 189.186.148.23 1d9a2ef3-a19c-42dd-8074-1981f35c92a4 2020-10-07 21:41:09.023784 42159 30 User \N \N 30 User \N update ---\nlast_sign_in_at:\n- 2020-10-05 20:46:05.555565000 Z\n- &1 2020-10-07 02:26:13.819102000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-07 21:51:27.308095452 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115927\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147131023\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147131023\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\nsign_in_count:\n- 8\n- 9\n 18 \N 189.186.148.23 5ca5690b-24a6-4b20-a9ba-e1e577bdd3d3 2020-10-07 21:51:27.31679 42160 30 User \N \N 30 User \N update ---\nunique_session_id:\n- CCT43NRZLn2_Z3a1Rsb8\n- 3jq7qpBwjDS4G5LHb5Rh\n 19 \N 189.186.148.23 5ca5690b-24a6-4b20-a9ba-e1e577bdd3d3 2020-10-07 21:51:27.335687 42161 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-06 22:21:14.397911000 Z\n- &1 2020-10-07 00:24:51.133039000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-07 23:10:59.291878726 Z\nsign_in_count:\n- 256\n- 257\n 515 \N 189.186.148.23 9aad1c22-a1c5-4108-a6ca-ca9a22fa7198 2020-10-07 23:10:59.318023 42162 18 User \N \N 18 User \N update ---\nunique_session_id:\n- dwjUhgHLpAN18FoNidu5\n- youJj3gsMxZRSsXXEd_Z\n 516 \N 189.186.148.23 9aad1c22-a1c5-4108-a6ca-ca9a22fa7198 2020-10-07 23:10:59.338746 42163 1103 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1088E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1088.0 189.186.148.23 04011639-472a-4dfa-b2d4-93c9a0b29cf3 2020-10-07 23:11:24.695899 42164 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-07 00:24:51.133039000 Z\n- &1 2020-10-07 23:10:59.291878000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-07 23:13:50.648067083 Z\nsign_in_count:\n- 257\n- 258\n 517 \N 189.186.148.23 beaa1ecd-dd9b-4f6f-9ae8-3f47c31821d0 2020-10-07 23:13:50.653939 42165 18 User \N \N 18 User \N update ---\nunique_session_id:\n- youJj3gsMxZRSsXXEd_Z\n- zqBjYq2u-QCtbUNYhq7r\n 518 \N 189.186.148.23 beaa1ecd-dd9b-4f6f-9ae8-3f47c31821d0 2020-10-07 23:13:50.668484 42166 3136 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1103\namount: !ruby/object:BigDecimal 18:0.378E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.378E3\nstatus: 0\ndate_sale: 2020-10-07\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-709\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 4bc235d0-74e3-455e-848a-817d67d0bc1a 2020-10-07 23:14:15.049246 42167 2170 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.148.23 4bc235d0-74e3-455e-848a-817d67d0bc1a 2020-10-07 23:14:15.079546 42168 876 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 12 \N 189.186.148.23 4bc235d0-74e3-455e-848a-817d67d0bc1a 2020-10-07 23:14:15.11962 42170 4162 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1103\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.378E3\nmove_type: '1'\nsale_id: 3136\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-709\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.122E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-709 189.186.148.23 dfe2e8db-5a39-4962-90b1-b4104e8d39ec 2020-10-07 23:14:19.771829 42171 3137 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1103\namount: !ruby/object:BigDecimal 18:0.289E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.289E3\nstatus: 0\ndate_sale: 2020-10-07\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-710\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 a3ed5ee5-bf61-4670-b3db-b44690fe40cc 2020-10-07 23:15:00.391288 42172 2160 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.148.23 a3ed5ee5-bf61-4670-b3db-b44690fe40cc 2020-10-07 23:15:00.455532 42173 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-07 14:36:39.031448000 Z\n- &1 2020-10-07 20:39:57.487828000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-07 23:15:00.704188735 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729508\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\nsign_in_count:\n- 265\n- 266\n 532 \N 189.186.9.45 079380ea-2c0d-4d2f-a856-8db442bfbfd2 2020-10-07 23:15:00.735823 42174 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 6_5-Fk_AKCSuuA6EGWVe\n- E4QUPb7wfuYHv4c3z8ps\n 533 \N 189.186.9.45 079380ea-2c0d-4d2f-a856-8db442bfbfd2 2020-10-07 23:15:00.757777 42175 3137 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 0032fca6-d8ec-4d11-ba7a-8dec09e34fba 2020-10-07 23:15:28.610531 42176 4163 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1103\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.289E3\nmove_type: '1'\nsale_id: 3137\ncardnumber: 1111\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-710\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-710 189.186.148.23 0032fca6-d8ec-4d11-ba7a-8dec09e34fba 2020-10-07 23:15:28.63565 42177 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-07 14:51:07.617692000 Z\n- &1 2020-10-07 19:37:03.838127000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-07 23:29:25.171213173 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534940\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945964\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945964\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\nsign_in_count:\n- 1941\n- 1942\n 3884 \N 189.186.148.23 1823fbe5-fbd7-4419-bd79-d13106d3ca7c 2020-10-07 23:29:25.178409 42178 4 User \N \N 4 User \N update ---\nunique_session_id:\n- RjmXFP1ZDxiFCkR-mw5y\n- MxYyvsgzY-sETay9uxGY\n 3885 \N 189.186.148.23 1823fbe5-fbd7-4419-bd79-d13106d3ca7c 2020-10-07 23:29:25.196273 42179 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-07 23:10:59.291878000 Z\n- &1 2020-10-07 23:13:50.648067000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-07 23:57:19.015937851 Z\nsign_in_count:\n- 258\n- 259\n 519 \N 189.186.148.23 a550adc7-c77d-496e-9fcd-3c870d68557c 2020-10-07 23:57:19.047909 42180 18 User \N \N 18 User \N update ---\nunique_session_id:\n- zqBjYq2u-QCtbUNYhq7r\n- _8gy6X2WABmame5YsPFc\n 520 \N 189.186.148.23 a550adc7-c77d-496e-9fcd-3c870d68557c 2020-10-07 23:57:19.064452 42181 3138 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1103\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-10-07\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-711\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 8693764c-fc25-4599-a331-173fc4f313c4 2020-10-07 23:57:57.334962 42182 2291 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.148.23 8693764c-fc25-4599-a331-173fc4f313c4 2020-10-07 23:57:57.36947 42183 3138 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 88839326-b617-4d3a-b8b4-5415656ffd4c 2020-10-07 23:58:54.77313 42184 4164 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1103\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3138\ncardnumber: 1112\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-711\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-711 189.186.148.23 88839326-b617-4d3a-b8b4-5415656ffd4c 2020-10-07 23:58:54.798444 42185 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-07 19:37:03.838127000 Z\n- &1 2020-10-07 23:29:25.171213000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-08 00:20:29.343240208 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945964\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\nsign_in_count:\n- 1942\n- 1943\n 3886 \N 189.186.148.23 a76365b5-25b0-48c1-92d6-ad32b1449cb7 2020-10-08 00:20:29.349931 42186 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MxYyvsgzY-sETay9uxGY\n- GKnb3esevxLNKaRKh7Xe\n 3887 \N 189.186.148.23 a76365b5-25b0-48c1-92d6-ad32b1449cb7 2020-10-08 00:20:29.367543 42187 3139 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1102\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-10-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1508\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 dd063285-4d07-4209-92d5-3b141cffba2d 2020-10-08 00:31:34.425916 42188 1371 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.9.45 dd063285-4d07-4209-92d5-3b141cffba2d 2020-10-08 00:31:34.457226 42189 3139 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 e502239a-fab5-4189-ae81-9d58e0d5dd34 2020-10-08 00:31:38.737077 42190 4165 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1102\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3139\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1508\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1508 189.186.9.45 e502239a-fab5-4189-ae81-9d58e0d5dd34 2020-10-08 00:31:38.759615 42433 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ehy3vJ-A87zRTx95NtuU\n- zF1PMVyNADksjoDcbXbG\n 3919 \N 189.186.148.23 06e18441-29dc-4d02-beb3-f42e4a9d6fbc 2020-10-13 18:31:46.679086 42193 1127 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1103\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1366E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.966E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1466E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.148.23 3855b941-f243-47c2-a67a-fa97ad1d95e7 2020-10-08 00:49:50.288294 42194 1103 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.148.23 3855b941-f243-47c2-a67a-fa97ad1d95e7 2020-10-08 00:49:50.30804 42195 1128 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1102\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6468E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.44E4\ncash_fund: !ruby/object:BigDecimal 18:0.77E3\nphysical_cash: !ruby/object:BigDecimal 18:0.517E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.9.45 09fecdf5-5bf7-4425-9924-209db9771a33 2020-10-08 00:57:02.349497 42196 1102 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.9.45 09fecdf5-5bf7-4425-9924-209db9771a33 2020-10-08 00:57:02.375432 42197 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-07 23:29:25.171213000 Z\n- &1 2020-10-08 00:20:29.343240000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-08 15:12:14.642773916 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534820\n mask_addr: 4294967295\nsign_in_count:\n- 1943\n- 1944\n 3888 \N 177.228.99.36 2afc5e51-f817-46aa-a195-8e5e2d2e4aeb 2020-10-08 15:12:14.674365 42198 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GKnb3esevxLNKaRKh7Xe\n- qqY-zyhi52AehyJxLrUG\n 3889 \N 177.228.99.36 2afc5e51-f817-46aa-a195-8e5e2d2e4aeb 2020-10-08 15:12:14.706259 42199 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-07 20:39:57.487828000 Z\n- &1 2020-10-07 23:15:00.704188000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-08 16:22:39.153874077 Z\nsign_in_count:\n- 266\n- 267\n 534 \N 189.186.9.45 e2fa11bb-75d1-4ad3-88b8-46f2faa32509 2020-10-08 16:22:39.171724 42200 1 User \N \N 1 User \N update ---\nunique_session_id:\n- E4QUPb7wfuYHv4c3z8ps\n- CEP9DGJ-5eTAyUzxvKGy\n 535 \N 189.186.9.45 e2fa11bb-75d1-4ad3-88b8-46f2faa32509 2020-10-08 16:22:39.18747 42201 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-03 16:14:14.535731000 Z\n- &1 2020-10-05 19:15:15.922627000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-08 16:28:26.596103694 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\nsign_in_count:\n- 660\n- 661\n 1325 \N 189.186.9.45 fc54690d-a56d-4491-b60b-c46b5585398d 2020-10-08 16:28:26.603591 42202 2 User \N \N 2 User \N update ---\nunique_session_id:\n- a-KdTBYryhbGTUNe27Hb\n- CvLSoP3sXfdt7938j5zy\n 1326 \N 189.186.9.45 fc54690d-a56d-4491-b60b-c46b5585398d 2020-10-08 16:28:26.625853 42203 1104 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.77E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 770.0 189.186.9.45 ab6c9958-d3b3-49b9-acab-0712f295bd2a 2020-10-08 16:38:48.328318 42204 3140 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1104\namount: !ruby/object:BigDecimal 18:0.968E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.968E3\nstatus: 0\ndate_sale: 2020-10-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1509\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 e33c79a4-287b-43f5-97d4-209be2740da0 2020-10-08 18:12:40.646573 42205 2128 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.9.45 e33c79a4-287b-43f5-97d4-209be2740da0 2020-10-08 18:12:40.696824 42206 2075 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.9.45 e33c79a4-287b-43f5-97d4-209be2740da0 2020-10-08 18:12:40.738723 42207 3140 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 1ccad35c-2be8-4a89-b26f-c9c75e98ac00 2020-10-08 18:12:47.127028 42208 4166 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1104\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.968E3\nmove_type: '1'\nsale_id: 3140\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1509\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.968E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1509 189.186.9.45 1ccad35c-2be8-4a89-b26f-c9c75e98ac00 2020-10-08 18:12:47.150489 42209 3141 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1104\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2020-10-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1510\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 2b6bb13b-f600-4457-aed5-1dfeca01f046 2020-10-08 18:22:41.551701 42210 2244 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.9.45 2b6bb13b-f600-4457-aed5-1dfeca01f046 2020-10-08 18:22:41.612378 42211 2241 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.9.45 2b6bb13b-f600-4457-aed5-1dfeca01f046 2020-10-08 18:22:41.654025 42212 3141 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 9e2d560c-23ce-4559-b2dd-a677fb867f07 2020-10-08 18:22:46.531777 42213 4167 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1104\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1398E4\nmove_type: '1'\nsale_id: 3141\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1510\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1398E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1510 189.186.9.45 9e2d560c-23ce-4559-b2dd-a677fb867f07 2020-10-08 18:22:46.553673 42214 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-07 23:57:19.015937000 Z\n- &1 2020-10-08 00:48:34.553936000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-08 19:57:53.715161299 Z\nsign_in_count:\n- 260\n- 261\n 523 \N 189.186.148.23 37dbdaf2-0c9a-4e85-89f7-0e45d3952bdb 2020-10-08 19:57:53.75033 42215 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ZaCyQTBoSkeHZzUyHzjs\n- Jf_654Pyef37Y3Y2S8yU\n 524 \N 189.186.148.23 37dbdaf2-0c9a-4e85-89f7-0e45d3952bdb 2020-10-08 19:57:53.779562 42241 3144 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1105\namount: !ruby/object:BigDecimal 18:0.318E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.318E3\nstatus: 0\ndate_sale: 2020-10-08\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-713\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 48fcd02c-2685-437a-9645-7ba2bb45f17b 2020-10-09 00:48:49.730643 42216 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-08 00:20:29.343240000 Z\n- &1 2020-10-08 15:12:14.642773000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-08 20:01:43.863628230 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534820\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534820\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\nsign_in_count:\n- 1944\n- 1945\n 3890 \N 189.186.148.23 cabfe1ae-5f8b-4fcb-beb4-e992d1f166c0 2020-10-08 20:01:43.871319 42217 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qqY-zyhi52AehyJxLrUG\n- YYdgABMHxT_LYzeT_aaE\n 3891 \N 189.186.148.23 cabfe1ae-5f8b-4fcb-beb4-e992d1f166c0 2020-10-08 20:01:43.894857 42218 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-07 23:15:00.704188000 Z\n- &1 2020-10-08 16:22:39.153874000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-08 22:00:50.428492688 Z\nsign_in_count:\n- 267\n- 268\n 536 \N 189.186.9.45 8b8924bf-af2e-4dc5-b6ad-0e624ad59046 2020-10-08 22:00:50.435016 42219 1 User \N \N 1 User \N update ---\nunique_session_id:\n- CEP9DGJ-5eTAyUzxvKGy\n- _LYSsahgVM_ZWs4Ee3XP\n 537 \N 189.186.9.45 8b8924bf-af2e-4dc5-b6ad-0e624ad59046 2020-10-08 22:00:50.454258 42220 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-08 00:48:34.553936000 Z\n- &1 2020-10-08 19:57:53.715161000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-08 23:56:44.101210789 Z\nsign_in_count:\n- 261\n- 262\n 525 \N 189.186.148.23 d86a8fc8-9eb5-4d01-89e2-23efc40cb052 2020-10-08 23:56:44.110021 42221 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Jf_654Pyef37Y3Y2S8yU\n- uPt16hSZrrwkrL5wo2rF\n 526 \N 189.186.148.23 d86a8fc8-9eb5-4d01-89e2-23efc40cb052 2020-10-08 23:56:44.146151 42222 2268 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.148.23 e7e8504d-2c3e-49a3-b9df-3bb8dda73a5d 2020-10-08 23:57:44.572038 42223 2269 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.148.23 343e2c63-dbd2-4513-8c38-7e74ceb42895 2020-10-08 23:58:00.490646 42224 1903 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.148.23 af644c64-5b4b-46a7-9334-da1ae2173f59 2020-10-08 23:58:21.391285 42225 698 Transfer \N \N 18 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-10-08\nuser_id: 18\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.148.23 209159c3-d632-4438-9e07-aa975e22770b 2020-10-09 00:03:41.593768 42226 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-08 15:12:14.642773000 Z\n- &1 2020-10-08 20:01:43.863628000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-09 00:31:10.563074754 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984534820\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\nsign_in_count:\n- 1945\n- 1946\n 3892 \N 189.186.148.23 f1c693ea-0b6b-4668-9077-af8fb5966901 2020-10-09 00:31:10.570766 42227 4 User \N \N 4 User \N update ---\nunique_session_id:\n- YYdgABMHxT_LYzeT_aaE\n- YDWwt5ADvB6h4SPMbnju\n 3893 \N 189.186.148.23 f1c693ea-0b6b-4668-9077-af8fb5966901 2020-10-09 00:31:10.591364 42228 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-08 19:57:53.715161000 Z\n- &1 2020-10-08 23:56:44.101210000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-09 00:33:51.433607121 Z\nsign_in_count:\n- 262\n- 263\n 527 \N 189.186.148.23 7459c39c-1133-46fd-bb44-1d63e3e4e6a7 2020-10-09 00:33:51.439518 42229 18 User \N \N 18 User \N update ---\nunique_session_id:\n- uPt16hSZrrwkrL5wo2rF\n- 5mZqgyNwgnszhKTJaQnP\n 528 \N 189.186.148.23 7459c39c-1133-46fd-bb44-1d63e3e4e6a7 2020-10-09 00:33:51.454165 42230 1105 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.966E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 966.0 189.186.148.23 f3c20ce9-9f61-4aaf-b078-854b29771b45 2020-10-09 00:44:51.131363 42231 3142 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1104\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-10-08\nsaletype: 1\nseller_id: 28\nsale_code: PV1-V-1511\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 91dc1e65-9b18-483b-a451-ab56d45c6ef5 2020-10-09 00:45:14.751727 42232 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.15E2\n 27 \N 189.186.9.45 91dc1e65-9b18-483b-a451-ab56d45c6ef5 2020-10-09 00:45:14.778663 42233 3142 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 ef6d3d58-ddd3-4d8b-a60e-042825e84ef2 2020-10-09 00:45:22.667068 42234 4168 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1104\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3142\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1511\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1511 189.186.9.45 ef6d3d58-ddd3-4d8b-a60e-042825e84ef2 2020-10-09 00:45:22.692478 42235 406 Customer \N \N 18 User \N create ---\nnick_name: MARIA ERNESTINA LEON\nphone: "(667) 313-6426"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIA ERNESTINA LEON fue registrado. 189.186.148.23 9579fa6f-a506-499f-ad6b-4e8ba876433a 2020-10-09 00:45:25.517793 42236 3143 Sale \N \N 18 User \N create ---\ncustomer_id: 406\nuser_id: 18\nopen_cash_register_id: 1105\namount: !ruby/object:BigDecimal 18:0.2798E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2798E4\nstatus: 0\ndate_sale: 2020-10-08\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-712\nexpiration_date: 2020-11-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 a852f845-0d91-4dbc-b867-b0419f73fa4e 2020-10-09 00:47:33.091082 42237 816 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.148.23 a852f845-0d91-4dbc-b867-b0419f73fa4e 2020-10-09 00:47:33.122782 42238 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 45 \N 189.186.148.23 a852f845-0d91-4dbc-b867-b0419f73fa4e 2020-10-09 00:47:33.153779 42239 4169 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1105\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 3143\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-712\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-712 189.186.148.23 37e74a64-ff53-4a54-b23e-00dd2df1b44b 2020-10-09 00:47:44.816517 42240 3143 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.148.23 5b709bb4-a60b-4435-ba3c-5d9e1c6b833d 2020-10-09 00:47:54.358367 42245 4170 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1105\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.318E3\nmove_type: '1'\nsale_id: 3144\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-713\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.182E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-713 189.186.148.23 bde2d3bf-7a53-48e8-bcdb-01aba4c9ad75 2020-10-09 00:48:53.94975 42246 1129 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1104\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3365E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.35E4\ncash_fund: !ruby/object:BigDecimal 18:0.635E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4135E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.9.45 9b497f26-c7ad-4edb-b2b2-56f1bffc112d 2020-10-09 00:53:07.76159 42247 1104 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.9.45 9b497f26-c7ad-4edb-b2b2-56f1bffc112d 2020-10-09 00:53:07.783039 42248 1130 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1105\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1318E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.784E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2284E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.148.23 f7d39f4d-28b6-4c34-a6cf-539841b94423 2020-10-09 01:00:01.899731 42249 1105 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.148.23 f7d39f4d-28b6-4c34-a6cf-539841b94423 2020-10-09 01:00:01.916287 42250 1106 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.635E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 635.0 189.186.9.45 12825c6c-7c86-4afb-9132-824c55b12568 2020-10-09 16:13:02.716447 42251 4171 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1106\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 3111\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.399E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1491 189.186.9.45 56cb0499-4eb9-4366-8f5b-01237a649307 2020-10-09 16:40:42.229195 42252 3111 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.9.45 6350f7f5-edc5-4303-ba93-45d9cb5d4893 2020-10-09 16:40:44.006593 42253 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-08 20:01:43.863628000 Z\n- &1 2020-10-09 00:31:10.563074000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-09 18:04:01.416144767 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946377\n mask_addr: 4294967295\nsign_in_count:\n- 1946\n- 1947\n 3894 \N 200.68.182.137 4b9beaaa-50d4-4439-9878-21e126723da7 2020-10-09 18:04:01.425691 42254 4 User \N \N 4 User \N update ---\nunique_session_id:\n- YDWwt5ADvB6h4SPMbnju\n- xEtCh1GssmSzy4G-7cJe\n 3895 \N 200.68.182.137 4b9beaaa-50d4-4439-9878-21e126723da7 2020-10-09 18:04:01.44695 42255 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-08 23:56:44.101210000 Z\n- &1 2020-10-09 00:33:51.433607000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-09 18:05:04.606315157 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946377\n mask_addr: 4294967295\nsign_in_count:\n- 263\n- 264\n 529 \N 200.68.182.137 eba079fd-e374-4990-97e4-30fde025a508 2020-10-09 18:05:04.613323 42256 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 5mZqgyNwgnszhKTJaQnP\n- wswytHyxCCaDT3s7JcvT\n 530 \N 200.68.182.137 eba079fd-e374-4990-97e4-30fde025a508 2020-10-09 18:05:04.628287 42257 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-10-06 00:12:14.542349000 Z\n- &1 2020-10-07 19:53:44.580141000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-09 18:38:20.349424534 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183115927\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\nsign_in_count:\n- 309\n- 310\n 621 \N 189.186.148.23 25a8903b-73b9-49b9-8917-eeaf1bdc61a7 2020-10-09 18:38:20.35805 42258 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 5QavmyPbs2QigxvgVVEZ\n- eg2M8nX11BJCxU-5U7kw\n 622 \N 189.186.148.23 25a8903b-73b9-49b9-8917-eeaf1bdc61a7 2020-10-09 18:38:20.378612 42259 1107 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.784E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 784.0 189.186.148.23 925e11dd-59ae-42aa-88aa-efd945c12ec2 2020-10-09 18:39:33.117898 42260 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-09 00:31:10.563074000 Z\n- &1 2020-10-09 18:04:01.416144000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-09 19:50:22.440455348 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946377\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946377\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\nsign_in_count:\n- 1947\n- 1948\n 3896 \N 189.186.148.23 6548eaae-098b-42f9-9362-073af0cf6f98 2020-10-09 19:50:22.462548 42261 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xEtCh1GssmSzy4G-7cJe\n- uVJuccy2VFZJ_KGZRNzG\n 3897 \N 189.186.148.23 6548eaae-098b-42f9-9362-073af0cf6f98 2020-10-09 19:50:22.48722 42262 3145 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1106\namount: !ruby/object:BigDecimal 18:0.529E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.529E3\nstatus: 0\ndate_sale: 2020-10-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1512\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 6cab5908-27fc-444a-bf2b-a695be67645b 2020-10-09 20:05:38.501582 42263 1644 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 189.186.9.45 6cab5908-27fc-444a-bf2b-a695be67645b 2020-10-09 20:05:38.533355 42264 3145 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 874a135a-6d07-4e04-866d-09851114d487 2020-10-09 20:05:42.986655 42265 4172 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1106\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.529E3\nmove_type: '1'\nsale_id: 3145\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1512\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.529E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1512 189.186.9.45 874a135a-6d07-4e04-866d-09851114d487 2020-10-09 20:05:43.010162 42459 2264 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.148.23 c41a9dad-c68e-4b5f-aca9-4edb73ff0598 2020-10-13 21:28:32.471812 42266 1362 Product \N \N 4 User \N create ---\nsku: BOL-1362\nname: 3BLCP20113\ndescription: 'BACK PACK NUDE '\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170801354'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1362 fue creado. 189.186.148.23 1c5871c7-f591-4d37-a1fd-e7aad0ba2249 2020-10-09 20:45:22.454521 42267 2354 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1362\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.148.23 1c5871c7-f591-4d37-a1fd-e7aad0ba2249 2020-10-09 20:45:22.507608 42268 407 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-103\namount: !ruby/object:BigDecimal 18:0.8495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.8495E3\nobservations: ''\npurchase_date: 2020-10-09\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-103 por $ 849.5 MXN creada. 189.186.148.23 e351c50a-b7c2-453d-ad0d-6b89c91383b4 2020-10-09 20:45:26.715853 42269 2354 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.148.23 e351c50a-b7c2-453d-ad0d-6b89c91383b4 2020-10-09 20:45:26.741672 42270 408 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-166\namount: !ruby/object:BigDecimal 18:0.2798E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2798E4\nobservations: ''\npurchase_date: 2020-10-09\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-166 por $ 2798.0 MXN creada. 189.186.148.23 d07b7403-f88d-4de0-9fc6-9d7c2607661a 2020-10-09 20:47:25.407116 42271 2355 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1357\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.148.23 d07b7403-f88d-4de0-9fc6-9d7c2607661a 2020-10-09 20:47:25.437491 42272 409 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-104\namount: !ruby/object:BigDecimal 18:0.20985E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.20985E4\nobservations: ''\npurchase_date: 2020-10-09\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-104 por $ 2098.5 MXN creada. 189.186.148.23 9fa2417a-ad64-4cce-9c42-5a7e8bf18a83 2020-10-09 20:48:02.523621 42273 2341 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.7E1\n 5 \N 189.186.148.23 9fa2417a-ad64-4cce-9c42-5a7e8bf18a83 2020-10-09 20:48:02.571982 42274 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-09 00:33:51.433607000 Z\n- &1 2020-10-09 18:05:04.606315000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-09 21:24:24.853013414 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946377\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946377\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\nsign_in_count:\n- 264\n- 265\n 531 \N 189.186.148.23 160420ae-d551-419b-bffc-23243a5b47c7 2020-10-09 21:24:24.874173 42275 18 User \N \N 18 User \N update ---\nunique_session_id:\n- wswytHyxCCaDT3s7JcvT\n- ykN5xPhxpGrJ13AK8uPC\n 532 \N 189.186.148.23 160420ae-d551-419b-bffc-23243a5b47c7 2020-10-09 21:24:24.895573 42276 3146 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1107\namount: !ruby/object:BigDecimal 18:0.2798E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2798E4\nstatus: 0\ndate_sale: 2020-10-09\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-714\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 ef23a55d-e3c3-4737-abf5-db33e87abadf 2020-10-09 21:29:36.98208 42277 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 70 \N 189.186.148.23 ef23a55d-e3c3-4737-abf5-db33e87abadf 2020-10-09 21:29:37.017196 42278 1240 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 189.186.148.23 ef23a55d-e3c3-4737-abf5-db33e87abadf 2020-10-09 21:29:37.061874 42279 3146 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-714 cancelada. 189.186.148.23 2f789bde-0f50-414b-9eaa-1f8b1ab81b30 2020-10-09 21:29:40.634083 42280 1240 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 9 \N 189.186.148.23 2f789bde-0f50-414b-9eaa-1f8b1ab81b30 2020-10-09 21:29:40.668498 42281 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 71 \N 189.186.148.23 2f789bde-0f50-414b-9eaa-1f8b1ab81b30 2020-10-09 21:29:40.696313 42282 3147 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1107\namount: !ruby/object:BigDecimal 18:0.2798E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.35E3\ntotal: !ruby/object:BigDecimal 18:0.2448E4\nstatus: 0\ndate_sale: 2020-10-09\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-715\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 516bf450-f46b-4a45-82d0-a63a98dae9cf 2020-10-09 21:32:23.775997 42283 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 72 \N 189.186.148.23 516bf450-f46b-4a45-82d0-a63a98dae9cf 2020-10-09 21:32:23.805643 42284 1240 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 10 \N 189.186.148.23 516bf450-f46b-4a45-82d0-a63a98dae9cf 2020-10-09 21:32:23.834292 42285 3147 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 b5bf6a2e-2e7f-414f-a002-81844f5ca35f 2020-10-09 21:32:37.236797 42286 4173 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1107\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 3147\ncardnumber: 1255\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-715\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-715 189.186.148.23 b5bf6a2e-2e7f-414f-a002-81844f5ca35f 2020-10-09 21:32:37.263542 42287 4174 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1107\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.849E3\nmove_type: '1'\nsale_id: 3147\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-715\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.849E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-715 189.186.148.23 aeadb83b-ceef-4f24-8d34-ff37013d3466 2020-10-09 21:32:42.902416 42288 3148 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1107\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-10-09\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-716\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 5dede335-d1ed-4948-b577-1517468e9e0b 2020-10-09 21:33:55.636469 42289 2284 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.148.23 5dede335-d1ed-4948-b577-1517468e9e0b 2020-10-09 21:33:55.666078 42290 3148 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 e737f969-3091-4e24-82bd-5d2f9166f433 2020-10-09 21:34:09.387653 42291 4175 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1107\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3148\ncardnumber: 1111\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-716\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-716 189.186.148.23 e737f969-3091-4e24-82bd-5d2f9166f433 2020-10-09 21:34:09.412437 42292 3149 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1107\namount: !ruby/object:BigDecimal 18:0.1059E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1059E4\nstatus: 0\ndate_sale: 2020-10-09\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-717\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 21d1003e-6c15-42e6-9867-446eb93657bc 2020-10-09 21:48:16.525164 42293 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 46 \N 189.186.148.23 21d1003e-6c15-42e6-9867-446eb93657bc 2020-10-09 21:48:16.560743 42294 1481 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 189.186.148.23 21d1003e-6c15-42e6-9867-446eb93657bc 2020-10-09 21:48:16.590685 42295 3149 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 6cbb8902-1c49-42a7-b739-4851affe5eb2 2020-10-09 21:48:57.854119 42296 4176 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1107\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1059E4\nmove_type: '1'\nsale_id: 3149\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-717\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.141E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-717 189.186.148.23 6cbb8902-1c49-42a7-b739-4851affe5eb2 2020-10-09 21:48:57.879621 42297 3150 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1107\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-10-09\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-718\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 9e4292e0-df81-4dcd-b040-53fec61bc285 2020-10-09 21:50:29.196833 42298 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 47 \N 189.186.148.23 9e4292e0-df81-4dcd-b040-53fec61bc285 2020-10-09 21:50:29.225127 42299 3150 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 790f8e52-7a52-49cf-927d-55d953148658 2020-10-09 21:50:33.115052 42300 4177 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1107\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3150\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-718\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-718 189.186.148.23 790f8e52-7a52-49cf-927d-55d953148658 2020-10-09 21:50:33.13988 42301 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-09 18:04:01.416144000 Z\n- &1 2020-10-09 19:50:22.440455000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-09 22:10:17.402361356 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946377\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\nsign_in_count:\n- 1948\n- 1949\n 3898 \N 189.186.148.23 25149cf0-78cc-4df9-93a8-ad5e4a39fcd1 2020-10-09 22:10:17.409353 42302 4 User \N \N 4 User \N update ---\nunique_session_id:\n- uVJuccy2VFZJ_KGZRNzG\n- fvCMK6U3RkeMGSh_FGrC\n 3899 \N 189.186.148.23 25149cf0-78cc-4df9-93a8-ad5e4a39fcd1 2020-10-09 22:10:17.426712 42303 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-08 16:22:39.153874000 Z\n- &1 2020-10-08 22:00:50.428492000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-09 22:33:14.858489661 Z\nsign_in_count:\n- 268\n- 269\n 538 \N 189.186.9.45 9663d75e-8c8b-407a-ba1e-366b58371c17 2020-10-09 22:33:14.867343 42304 1 User \N \N 1 User \N update ---\nunique_session_id:\n- _LYSsahgVM_ZWs4Ee3XP\n- tx3tFCTeGars-AtB2tEx\n 539 \N 189.186.9.45 9663d75e-8c8b-407a-ba1e-366b58371c17 2020-10-09 22:33:14.897693 42305 37 ProductsReturn \N \N 2 User \N create ---\nsale_id: 3141\nuser_id: 2\nreturn_code: PV1-D-14\npointsale_id: 1\nnew_amount: !ruby/object:BigDecimal 18:0.569E3\nreturned_amount: !ruby/object:BigDecimal 18:0.599E3\ndifference_amount: !ruby/object:BigDecimal 18:0.0\nis_money_returned: false\n 1 devolución PV1-D-14 creada. 189.186.9.45 2d50e018-f7ca-46e1-bc5e-cba82ae2865d 2020-10-09 23:22:47.084986 42306 2244 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.9.45 2d50e018-f7ca-46e1-bc5e-cba82ae2865d 2020-10-09 23:22:47.120321 42307 2252 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.9.45 2d50e018-f7ca-46e1-bc5e-cba82ae2865d 2020-10-09 23:22:47.155366 42308 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-09 18:05:04.606315000 Z\n- &1 2020-10-09 21:24:24.853013000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-09 23:55:55.224599710 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946377\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\nsign_in_count:\n- 265\n- 266\n 533 \N 189.186.148.23 573f527d-5606-4a89-af25-fb9c52a13835 2020-10-09 23:55:55.231028 42309 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ykN5xPhxpGrJ13AK8uPC\n- 85k9GxgoaAF-TpR8stTN\n 534 \N 189.186.148.23 573f527d-5606-4a89-af25-fb9c52a13835 2020-10-09 23:55:55.245224 42310 3151 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1107\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2020-10-09\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-719\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 b5cac915-55d2-4824-a53d-5af5c4ec47ae 2020-10-09 23:56:18.031138 42313 4178 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1107\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 3151\ncardnumber: 1255\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-719\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-719 189.186.148.23 2982b550-8228-42b7-b042-e6d161ff3840 2020-10-09 23:56:43.880389 42314 4179 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1107\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 3151\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-719\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-719 189.186.148.23 626e108e-c515-4e9f-8c01-b513a0bba68c 2020-10-09 23:56:51.764249 42315 3152 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1107\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-10-09\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-720\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 e79ba56f-eea8-408f-92de-c4032ea5461a 2020-10-09 23:58:31.993451 42316 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 48 \N 189.186.148.23 e79ba56f-eea8-408f-92de-c4032ea5461a 2020-10-09 23:58:32.020293 42317 3152 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 e90d9d6e-09c0-41a1-8c13-8889fcc99ff7 2020-10-09 23:58:38.040357 42318 4180 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1107\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3152\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-720\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-720 189.186.148.23 e90d9d6e-09c0-41a1-8c13-8889fcc99ff7 2020-10-09 23:58:38.065008 42319 3153 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1106\namount: !ruby/object:BigDecimal 18:0.828E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.828E3\nstatus: 0\ndate_sale: 2020-10-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1513\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 cad8deba-a3f1-44fe-a4b3-de93022ecad2 2020-10-10 00:00:37.767656 42320 1441 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 189.186.9.45 cad8deba-a3f1-44fe-a4b3-de93022ecad2 2020-10-10 00:00:37.794286 42321 1759 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.9.45 cad8deba-a3f1-44fe-a4b3-de93022ecad2 2020-10-10 00:00:37.816311 42322 3153 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 d6055723-9600-4e12-8e37-de37ae86883d 2020-10-10 00:00:45.748619 42323 4181 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1106\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.828E3\nmove_type: '1'\nsale_id: 3153\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1513\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.828E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1513 189.186.9.45 d6055723-9600-4e12-8e37-de37ae86883d 2020-10-10 00:00:45.789686 42324 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-09 19:50:22.440455000 Z\n- &1 2020-10-09 22:10:17.402361000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-10 00:20:37.735928629 Z\nsign_in_count:\n- 1949\n- 1950\n 3900 \N 189.186.148.23 17d5140a-c0f9-4723-944c-5a9bed75ab6e 2020-10-10 00:20:37.741831 42325 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fvCMK6U3RkeMGSh_FGrC\n- 65ZgosZZDxGztW9SRsbY\n 3901 \N 189.186.148.23 17d5140a-c0f9-4723-944c-5a9bed75ab6e 2020-10-10 00:20:37.759162 42326 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-09 21:24:24.853013000 Z\n- &1 2020-10-09 23:55:55.224599000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-10 00:22:57.397906411 Z\nsign_in_count:\n- 266\n- 267\n 535 \N 189.186.148.23 eb57ec3a-deb6-4314-8c6e-d36b870da691 2020-10-10 00:22:57.403697 42327 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 85k9GxgoaAF-TpR8stTN\n- wvjekWCJLXykgSxSsyGi\n 536 \N 189.186.148.23 eb57ec3a-deb6-4314-8c6e-d36b870da691 2020-10-10 00:22:57.421747 42328 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-09 22:10:17.402361000 Z\n- &1 2020-10-10 00:20:37.735928000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-10 00:25:23.740485908 Z\nsign_in_count:\n- 1950\n- 1951\n 3902 \N 189.186.148.23 a48026a6-e76e-45fe-a5c1-72d3e22ab139 2020-10-10 00:25:23.746411 42329 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 65ZgosZZDxGztW9SRsbY\n- YJBXBjZUEzDAEt1sqk7p\n 3903 \N 189.186.148.23 a48026a6-e76e-45fe-a5c1-72d3e22ab139 2020-10-10 00:25:23.762061 42330 410 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-167\namount: !ruby/object:BigDecimal 18:0.9495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9495E3\nobservations: ''\npurchase_date: 2020-10-09\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-167 por $ 949.5 MXN creada. 189.186.148.23 1e316903-87dd-4e31-b5b0-ebc22859958f 2020-10-10 00:27:12.151439 42331 2292 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.148.23 1e316903-87dd-4e31-b5b0-ebc22859958f 2020-10-10 00:27:12.181834 42332 3154 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1106\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2020-10-09\nsaletype: 1\nseller_id: 27\nsale_code: PV1-V-1514\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 bd991225-90c9-4ecf-9643-b12ccec58d52 2020-10-10 00:28:08.293117 42333 2292 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.9.45 bd991225-90c9-4ecf-9643-b12ccec58d52 2020-10-10 00:28:08.329392 42334 3154 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 7ebfda7e-ed8b-4302-8e79-3fdcc5d8600e 2020-10-10 00:28:36.815795 42405 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-09 22:33:14.858489000 Z\n- &1 2020-10-10 20:34:18.695196000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-12 21:23:32.952669992 Z\nsign_in_count:\n- 270\n- 271\n 542 \N 189.186.9.45 0e4b3c4a-fbc0-4ad3-95f0-7b9d292a9fea 2020-10-12 21:23:32.959268 42406 1 User \N \N 1 User \N update ---\nunique_session_id:\n- eTVNjLjWCUJ9G2Vs_aSv\n- i-xczUWemBd1hSFsd1Me\n 543 \N 189.186.9.45 0e4b3c4a-fbc0-4ad3-95f0-7b9d292a9fea 2020-10-12 21:23:32.974648 42335 4182 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1106\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 3154\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1514\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ANTICIPO DE APARTADO\n 1 movimiento de efectivo por venta con folio PV1-V-1514 189.186.9.45 7ebfda7e-ed8b-4302-8e79-3fdcc5d8600e 2020-10-10 00:28:36.840601 42336 4183 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1106\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3154\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1514\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1399E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ANTICIPO DE APARTADO\n 1 movimiento de efectivo por venta con folio PV1-V-1514 189.186.9.45 ac8b7720-70c2-4a78-a997-8f3522fb30f2 2020-10-10 00:28:46.394642 42337 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-09 23:55:55.224599000 Z\n- &1 2020-10-10 00:22:57.397906000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-10 00:29:21.934491620 Z\nsign_in_count:\n- 267\n- 268\n 537 \N 189.186.148.23 b410462e-2c42-4088-8ada-44ed5fa0e307 2020-10-10 00:29:21.942903 42338 18 User \N \N 18 User \N update ---\nunique_session_id:\n- wvjekWCJLXykgSxSsyGi\n- 8nhEizqecaDJoxd5-Lv-\n 538 \N 189.186.148.23 b410462e-2c42-4088-8ada-44ed5fa0e307 2020-10-10 00:29:21.963318 42339 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-10 00:20:37.735928000 Z\n- &1 2020-10-10 00:25:23.740485000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-10 00:32:47.851714924 Z\nsign_in_count:\n- 1951\n- 1952\n 3904 \N 189.186.148.23 07d9c2da-7361-4a4d-8c5f-66848e016244 2020-10-10 00:32:47.858132 42340 4 User \N \N 4 User \N update ---\nunique_session_id:\n- YJBXBjZUEzDAEt1sqk7p\n- fN9-1KLa_StHx-kERgsz\n 3905 \N 189.186.148.23 07d9c2da-7361-4a4d-8c5f-66848e016244 2020-10-10 00:32:47.876774 42341 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-10 00:22:57.397906000 Z\n- &1 2020-10-10 00:29:21.934491000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-10 00:50:49.385883189 Z\nsign_in_count:\n- 268\n- 269\n 539 \N 189.186.148.23 67fd8ba9-ade4-4d41-8ae4-4c44cd7da844 2020-10-10 00:50:49.391953 42342 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 8nhEizqecaDJoxd5-Lv-\n- Koi7W28XuMF4CG-_xtB5\n 540 \N 189.186.148.23 67fd8ba9-ade4-4d41-8ae4-4c44cd7da844 2020-10-10 00:50:49.409677 42343 1131 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1107\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.8203E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.503E4\ncash_fund: !ruby/object:BigDecimal 18:0.859E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5889E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.148.23 e178bbf1-9470-4035-ab9d-222dbe4e0d87 2020-10-10 01:00:30.386808 42344 1107 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.148.23 e178bbf1-9470-4035-ab9d-222dbe4e0d87 2020-10-10 01:00:30.402078 42345 1132 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1106\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3655E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.29E4\ncash_fund: !ruby/object:BigDecimal 18:0.89E3\nphysical_cash: !ruby/object:BigDecimal 18:0.379E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.9.45 0467d18d-2cda-47b4-a9e5-852c73201d03 2020-10-10 01:33:35.081428 42346 1106 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.9.45 0467d18d-2cda-47b4-a9e5-852c73201d03 2020-10-10 01:33:35.116035 42347 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-10 00:25:23.740485000 Z\n- &1 2020-10-10 00:32:47.851714000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-10 06:15:58.347607371 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535808\n mask_addr: 4294967295\nsign_in_count:\n- 1952\n- 1953\n 3906 \N 177.228.103.0 8058c8b2-7932-490a-a58e-c21dc1764887 2020-10-10 06:15:58.357195 42348 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fN9-1KLa_StHx-kERgsz\n- LMQpaNxvuM3bsqudT5gm\n 3907 \N 177.228.103.0 8058c8b2-7932-490a-a58e-c21dc1764887 2020-10-10 06:15:58.375765 42349 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-10-07 19:53:44.580141000 Z\n- &1 2020-10-09 18:38:20.349424000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-10 19:35:42.545609010 Z\nsign_in_count:\n- 310\n- 311\n 623 \N 189.186.148.23 c27fffd2-16db-48d4-a4c8-7fc99ed776e0 2020-10-10 19:35:42.563977 42350 21 User \N \N 21 User \N update ---\nunique_session_id:\n- eg2M8nX11BJCxU-5U7kw\n- zhoTAZpxzgghtv-29mHB\n 624 \N 189.186.148.23 c27fffd2-16db-48d4-a4c8-7fc99ed776e0 2020-10-10 19:35:42.583171 42351 1108 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.859E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 859.0 189.186.148.23 66346f8f-ecb9-4e6b-bf9b-8428509d6223 2020-10-10 19:43:50.903987 42352 407 Customer \N \N 21 User \N create ---\nnick_name: LIZBETH FERNANDEZ\nphone: "(667) 344-1366"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LIZBETH FERNANDEZ fue registrado. 189.186.148.23 3c9b65ef-764a-4f08-a5ef-4b91be614b91 2020-10-10 19:44:45.999143 42353 3155 Sale \N \N 21 User \N create ---\ncustomer_id: 407\nuser_id: 21\nopen_cash_register_id: 1108\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-10-10\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-721\nexpiration_date: 2020-11-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 3656f7e8-1a91-4c75-b12b-05c76448b2ac 2020-10-10 19:45:01.70282 42354 2274 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.148.23 3656f7e8-1a91-4c75-b12b-05c76448b2ac 2020-10-10 19:45:01.734695 42355 4184 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1108\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3155\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-721\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.2E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-721 189.186.148.23 fa71f802-b789-46c3-b903-b71931b2d9a7 2020-10-10 19:45:41.000659 42356 3155 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.148.23 8f173e1c-ec6c-4378-8468-e294187a30f2 2020-10-10 19:45:48.618258 42357 3156 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1108\namount: !ruby/object:BigDecimal 18:0.1767E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1767E4\nstatus: 0\ndate_sale: 2020-10-10\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-722\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 7ddab680-4b15-4ce8-abc5-94a077081e4a 2020-10-10 20:00:38.849356 42362 4185 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1108\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 3156\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-722\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-722 189.186.148.23 3dc2f504-6226-4c1f-9371-32fff0854bd5 2020-10-10 20:01:31.044324 42363 4186 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1108\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.767E3\nmove_type: '1'\nsale_id: 3156\ncardnumber: 4445\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-722\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-722 189.186.148.23 a3a71878-d319-4497-b5b6-87921ea37ba3 2020-10-10 20:01:49.965279 42364 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-08 22:00:50.428492000 Z\n- &1 2020-10-09 22:33:14.858489000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-10 20:34:18.695196669 Z\nsign_in_count:\n- 269\n- 270\n 540 \N 189.186.9.45 96ab2477-9be0-4f59-86dc-6697508f86bf 2020-10-10 20:34:18.703071 42365 1 User \N \N 1 User \N update ---\nunique_session_id:\n- tx3tFCTeGars-AtB2tEx\n- eTVNjLjWCUJ9G2Vs_aSv\n 541 \N 189.186.9.45 96ab2477-9be0-4f59-86dc-6697508f86bf 2020-10-10 20:34:18.719066 42366 1109 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.89E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 890.0 189.186.9.45 d5c800ad-f1fc-48a8-ba96-af2cdef33198 2020-10-10 20:57:33.656863 42367 3157 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1109\namount: !ruby/object:BigDecimal 18:0.1498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1498E4\nstatus: 0\ndate_sale: 2020-10-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1515\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 3d5e132e-7b75-4cb9-b0ab-cabef61f3a8b 2020-10-10 21:02:09.698714 42368 1380 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.9.45 3d5e132e-7b75-4cb9-b0ab-cabef61f3a8b 2020-10-10 21:02:09.726798 42369 2339 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.9.45 3d5e132e-7b75-4cb9-b0ab-cabef61f3a8b 2020-10-10 21:02:09.755559 42370 3157 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 1d11eb64-93d9-4db3-a5f2-04587e45ddd0 2020-10-10 21:02:14.549348 42371 4187 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1109\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1498E4\nmove_type: '1'\nsale_id: 3157\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1515\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1498E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1515 189.186.9.45 1d11eb64-93d9-4db3-a5f2-04587e45ddd0 2020-10-10 21:02:14.569038 42372 3158 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1109\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2020-10-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1516\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 b9fe3af9-e5ac-436a-85b8-f89cffde1e25 2020-10-10 23:08:46.122667 42373 2240 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.9.45 b9fe3af9-e5ac-436a-85b8-f89cffde1e25 2020-10-10 23:08:46.150371 42374 3158 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 9e96df38-3e68-4fde-beca-985cfce3d4ad 2020-10-10 23:08:51.039971 42375 4188 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1109\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 3158\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1516\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.649E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1516 189.186.9.45 9e96df38-3e68-4fde-beca-985cfce3d4ad 2020-10-10 23:08:51.062149 42376 3159 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1108\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2020-10-10\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-723\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 5369fa00-265c-4774-9177-a24b6a8286d3 2020-10-10 23:12:22.25268 42377 2281 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.148.23 5369fa00-265c-4774-9177-a24b6a8286d3 2020-10-10 23:12:22.279756 42378 3159 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 80f1f20a-6e26-4fe8-ba6d-a31b53c55a47 2020-10-10 23:13:06.897569 42379 4189 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1108\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.489E3\nmove_type: '1'\nsale_id: 3159\ncardnumber: 8693\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-723\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-723 189.186.148.23 80f1f20a-6e26-4fe8-ba6d-a31b53c55a47 2020-10-10 23:13:06.923762 42380 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-10 00:32:47.851714000 Z\n- &1 2020-10-10 06:15:58.347607000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-10 23:29:28.963978364 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535808\n mask_addr: 4294967295\nsign_in_count:\n- 1953\n- 1954\n 3908 \N 177.228.103.0 c2fb6907-c4d2-49f3-811c-3f09b288368c 2020-10-10 23:29:28.974959 42381 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LMQpaNxvuM3bsqudT5gm\n- sr_9LEsJszmd5Q3yxeCW\n 3909 \N 177.228.103.0 c2fb6907-c4d2-49f3-811c-3f09b288368c 2020-10-10 23:29:29.00132 42382 3158 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-1516 cancelada. 189.186.9.45 0c57a616-38b7-454e-877f-381088527f20 2020-10-10 23:29:50.240426 42431 1111 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.148.23 f728813b-0e32-46c6-b76b-0f09dbebe7c8 2020-10-13 00:49:42.144361 42432 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-12 22:06:38.007406000 Z\n- &1 2020-10-12 23:10:16.880845000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-13 18:31:46.620093362 Z\nsign_in_count:\n- 1958\n- 1959\n 3918 \N 189.186.148.23 06e18441-29dc-4d02-beb3-f42e4a9d6fbc 2020-10-13 18:31:46.649931 42383 4188 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1109\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.649E3\nmove_type: '1'\nsale_id: 3158\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1516\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.649E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.9.45 0c57a616-38b7-454e-877f-381088527f20 2020-10-10 23:29:50.274931 42384 2240 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.9.45 0c57a616-38b7-454e-877f-381088527f20 2020-10-10 23:29:50.310895 42385 342 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1109\nquantity: !ruby/object:BigDecimal 18:0.28E3\nstatus: 1\nobservations: "$180 horas extras rocio $100 policia ivan "\nexpense_date: 2020-10-10\nexpense_code: PV1-E-237\n 1 Egreso por 280.0 registrado 189.186.9.45 2bbc5854-cea3-453e-a3b7-422956f8e3f4 2020-10-10 23:31:11.534473 42386 4190 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1109\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.28E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 342\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.9.45 2bbc5854-cea3-453e-a3b7-422956f8e3f4 2020-10-10 23:31:11.554794 42387 1133 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1109\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1498E4\namount_out: !ruby/object:BigDecimal 18:0.28E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.608E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2108E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.9.45 29891acb-ec23-404e-af08-d4bdc2a4cc6a 2020-10-11 00:40:59.469543 42388 1109 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.9.45 29891acb-ec23-404e-af08-d4bdc2a4cc6a 2020-10-11 00:40:59.49006 42389 1134 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1108\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.2556E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.14E4\ncash_fund: !ruby/object:BigDecimal 18:0.759E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2159E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.148.23 ca92f40d-8390-49e6-8d12-372305e1b3c8 2020-10-11 01:09:44.495762 42390 1108 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.148.23 ca92f40d-8390-49e6-8d12-372305e1b3c8 2020-10-11 01:09:44.508875 42391 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-10 06:15:58.347607000 Z\n- &1 2020-10-10 23:29:28.963978000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-12 01:38:17.678833841 Z\nsign_in_count:\n- 1954\n- 1955\n 3910 \N 177.228.103.0 324b6d80-afbc-4aab-b8a9-8fa801882be6 2020-10-12 01:38:17.706481 42392 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sr_9LEsJszmd5Q3yxeCW\n- wXw_bW3VPdQ5GTmdRx_e\n 3911 \N 177.228.103.0 324b6d80-afbc-4aab-b8a9-8fa801882be6 2020-10-12 01:38:17.73102 42393 1110 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.608E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 608.0 189.186.9.45 7f4cd52c-fae0-4670-a577-f0f6a77a325d 2020-10-12 17:09:56.199713 42394 408 Customer \N \N 2 User \N create ---\nnick_name: ROSABEL QUIROZ\nphone: "(667) 352-0676"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ROSABEL QUIROZ fue registrado. 189.186.9.45 7615b541-a879-4f76-b74a-a9780a70ebe8 2020-10-12 17:15:15.463236 42395 3160 Sale \N \N 2 User \N create ---\ncustomer_id: 408\nuser_id: 2\nopen_cash_register_id: 1110\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-10-12\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1517\nexpiration_date: 2020-11-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 237d0f6d-2a94-459b-a553-620984784669 2020-10-12 17:16:07.325452 42396 2242 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.9.45 237d0f6d-2a94-459b-a553-620984784669 2020-10-12 17:16:07.370057 42397 4191 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1110\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 3160\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1517\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1517 189.186.9.45 267e2da4-4acc-4148-b5f5-6889943996ad 2020-10-12 17:16:32.574135 42398 3160 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.9.45 615e215b-f59d-441b-954e-490d488bdbe2 2020-10-12 17:16:34.660058 42399 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-10 23:29:28.963978000 Z\n- &1 2020-10-12 01:38:17.678833000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-12 19:16:59.651046764 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\nsign_in_count:\n- 1955\n- 1956\n 3912 \N 189.186.148.23 95b34beb-8c13-4884-8d2c-708a06b983c3 2020-10-12 19:16:59.662016 42400 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wXw_bW3VPdQ5GTmdRx_e\n- egQw7V2s34nHy_6APw-k\n 3913 \N 189.186.148.23 95b34beb-8c13-4884-8d2c-708a06b983c3 2020-10-12 19:16:59.68477 42401 3161 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1110\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-10-12\nsaletype: 1\nseller_id: 28\nsale_code: PV1-V-1518\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 3c23bc82-17a5-4a92-89fa-4775110334bf 2020-10-12 21:06:12.227568 42402 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 34 \N 189.186.9.45 3c23bc82-17a5-4a92-89fa-4775110334bf 2020-10-12 21:06:12.264687 42403 3161 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 83be98fa-1359-4b95-a195-7a9a62148c23 2020-10-12 21:06:32.97691 42404 4192 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1110\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3161\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1518\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SERVICIO A DOMICILIO\n 1 movimiento de efectivo por venta con folio PV1-V-1518 189.186.9.45 83be98fa-1359-4b95-a195-7a9a62148c23 2020-10-12 21:06:32.999554 42407 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-26 16:33:51.096564000 Z\n- &1 2020-09-27 00:56:43.023990000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-12 22:05:09.549525771 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\nsign_in_count:\n- 182\n- 183\n 366 \N 189.186.148.23 46478173-fe48-44e8-96c3-ada36f921642 2020-10-12 22:05:09.570605 42408 9 User \N \N 9 User \N update ---\nunique_session_id:\n- Z9MwnzdkZ87xzNqjy4Ly\n- MY7jnvYBNwrcisbyHKZS\n 367 \N 189.186.148.23 46478173-fe48-44e8-96c3-ada36f921642 2020-10-12 22:05:09.592434 42409 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-12 01:38:17.678833000 Z\n- &1 2020-10-12 19:16:59.651046000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-12 22:06:38.007406489 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\nsign_in_count:\n- 1956\n- 1957\n 3914 \N 189.186.148.23 f258016f-7a9c-4c26-93d2-35e28766449f 2020-10-12 22:06:38.01407 42410 4 User \N \N 4 User \N update ---\nunique_session_id:\n- egQw7V2s34nHy_6APw-k\n- GsXKyj3jxJThB4Kwm2Cz\n 3915 \N 189.186.148.23 f258016f-7a9c-4c26-93d2-35e28766449f 2020-10-12 22:06:38.032149 42411 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-10 00:29:21.934491000 Z\n- &1 2020-10-10 00:50:49.385883000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-12 23:03:56.939626229 Z\nsign_in_count:\n- 269\n- 270\n 541 \N 189.186.148.23 7906c6c6-d663-4ebd-ac75-2c669c9f7fdd 2020-10-12 23:03:56.945697 42412 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Koi7W28XuMF4CG-_xtB5\n- n-gh8HyjNQr1NzLnWKSz\n 542 \N 189.186.148.23 7906c6c6-d663-4ebd-ac75-2c669c9f7fdd 2020-10-12 23:03:56.967698 42413 1111 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.759E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 759.0 189.186.148.23 90513917-8039-45b8-a1a8-08ed24ef7840 2020-10-12 23:04:05.824623 42414 3162 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1111\namount: !ruby/object:BigDecimal 18:0.1119E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1119E4\nstatus: 0\ndate_sale: 2020-10-12\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-724\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 ba388094-fe61-4036-95b9-5c6ef380173c 2020-10-12 23:04:49.641266 42415 2266 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.148.23 ba388094-fe61-4036-95b9-5c6ef380173c 2020-10-12 23:04:49.676607 42416 830 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 15 \N 189.186.148.23 ba388094-fe61-4036-95b9-5c6ef380173c 2020-10-12 23:04:49.70995 42417 1481 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 189.186.148.23 ba388094-fe61-4036-95b9-5c6ef380173c 2020-10-12 23:04:49.735284 42418 3162 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 5c89c51a-4521-488b-9f18-6deec054ed8c 2020-10-12 23:04:56.501842 42419 4193 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1111\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1119E4\nmove_type: '1'\nsale_id: 3162\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-724\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1119E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-724 189.186.148.23 5c89c51a-4521-488b-9f18-6deec054ed8c 2020-10-12 23:04:56.524403 42420 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-12 19:16:59.651046000 Z\n- &1 2020-10-12 22:06:38.007406000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-12 23:10:16.880845729 Z\nsign_in_count:\n- 1957\n- 1958\n 3916 \N 189.186.148.23 213abdff-ad29-46cc-b0f3-4ed2f6d9a1cb 2020-10-12 23:10:16.890193 42421 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GsXKyj3jxJThB4Kwm2Cz\n- ehy3vJ-A87zRTx95NtuU\n 3917 \N 189.186.148.23 213abdff-ad29-46cc-b0f3-4ed2f6d9a1cb 2020-10-12 23:10:16.914059 42422 3163 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1110\namount: !ruby/object:BigDecimal 18:0.1189E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1189E4\nstatus: 0\ndate_sale: 2020-10-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1519\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 f06a109c-afd6-40bd-96a8-3e54efdfbc9b 2020-10-12 23:12:46.013315 42423 2229 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.9.45 f06a109c-afd6-40bd-96a8-3e54efdfbc9b 2020-10-12 23:12:46.044397 42424 3163 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 98c94ad3-1874-48e0-9eb7-b9c6c1d0792d 2020-10-12 23:13:05.366185 42425 4194 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1110\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1189E4\nmove_type: '1'\nsale_id: 3163\ncardnumber: 1951\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1519\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1519 189.186.9.45 98c94ad3-1874-48e0-9eb7-b9c6c1d0792d 2020-10-12 23:13:05.38953 42426 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-10 00:50:49.385883000 Z\n- &1 2020-10-12 23:03:56.939626000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-13 00:46:27.387535353 Z\nsign_in_count:\n- 270\n- 271\n 543 \N 189.186.148.23 4d938246-0c86-4ad0-aa3f-af8a80ebe84d 2020-10-13 00:46:27.409531 42427 18 User \N \N 18 User \N update ---\nunique_session_id:\n- n-gh8HyjNQr1NzLnWKSz\n- ooWmYk_8F9vQTPC-vhHj\n 544 \N 189.186.148.23 4d938246-0c86-4ad0-aa3f-af8a80ebe84d 2020-10-13 00:46:27.430641 42428 1135 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1110\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2888E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.808E3\nphysical_cash: !ruby/object:BigDecimal 18:0.808E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.9.45 257839b0-e81d-4a2d-9a96-f25d7d7ba677 2020-10-13 00:47:49.285151 42429 1110 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.9.45 257839b0-e81d-4a2d-9a96-f25d7d7ba677 2020-10-13 00:47:49.301493 42430 1136 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1111\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1119E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.878E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1878E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.148.23 f728813b-0e32-46c6-b76b-0f09dbebe7c8 2020-10-13 00:49:42.129785 42434 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-12 23:03:56.939626000 Z\n- &1 2020-10-13 00:46:27.387535000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-13 18:32:13.767154226 Z\nsign_in_count:\n- 271\n- 272\n 545 \N 189.186.148.23 d9ce73ed-48ec-4b1f-b135-5f73c438f929 2020-10-13 18:32:13.77298 42435 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ooWmYk_8F9vQTPC-vhHj\n- 4xE3qekDydBRdtbLFjeg\n 546 \N 189.186.148.23 d9ce73ed-48ec-4b1f-b135-5f73c438f929 2020-10-13 18:32:13.78705 42436 1112 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.878E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 878.0 189.186.148.23 d3f86613-e07a-47ea-a582-1dcd75006461 2020-10-13 18:32:33.704994 42437 1363 Product \N \N 18 User \N create ---\nsku: ACC-1363\nname: LIGAS\ndescription: LIGAS BOLITAS\nprice_base: !ruby/object:BigDecimal 18:0.1E2\nprice_sale: !ruby/object:BigDecimal 18:0.49E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1363 fue creado. 189.186.148.23 2831ef36-c2c6-42f3-9589-740a01a3aaeb 2020-10-13 18:33:23.459424 42438 1363 Product \N \N 18 User \N update ---\nbarcode:\n- ''\n- '0001363'\n 2 \N 189.186.148.23 2831ef36-c2c6-42f3-9589-740a01a3aaeb 2020-10-13 18:33:23.508369 42439 2356 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1363\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.148.23 2831ef36-c2c6-42f3-9589-740a01a3aaeb 2020-10-13 18:33:23.561239 42440 411 Purchase \N \N 18 User \N create ---\nsupplier_id: 3\npointsale_id: 3\npurchase_code: PV3-C-105\namount: !ruby/object:BigDecimal 18:0.3E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3E2\nobservations: ''\npurchase_date: 2020-10-13\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-105 por $ 30.0 MXN creada. 189.186.148.23 4e1ca05a-755e-4fe2-9d45-b4428b3a3e7b 2020-10-13 18:33:29.595768 42441 2356 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.148.23 4e1ca05a-755e-4fe2-9d45-b4428b3a3e7b 2020-10-13 18:33:29.620226 42442 3164 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1112\namount: !ruby/object:BigDecimal 18:0.228E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.228E3\nstatus: 0\ndate_sale: 2020-10-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-725\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 62178dfb-4c52-4cfc-9af4-9fe8d775d165 2020-10-13 18:34:14.435406 42443 1745 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.148.23 62178dfb-4c52-4cfc-9af4-9fe8d775d165 2020-10-13 18:34:14.465309 42444 2356 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.148.23 62178dfb-4c52-4cfc-9af4-9fe8d775d165 2020-10-13 18:34:14.495709 42445 3164 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 316ebca8-d7ab-40ed-83bc-dc4a596150f1 2020-10-13 18:34:19.573989 42446 4195 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1112\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.228E3\nmove_type: '1'\nsale_id: 3164\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-725\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.228E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-725 189.186.148.23 316ebca8-d7ab-40ed-83bc-dc4a596150f1 2020-10-13 18:34:19.595372 42447 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-12 23:10:16.880845000 Z\n- &1 2020-10-13 18:31:46.620093000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-13 19:15:11.483196047 Z\nsign_in_count:\n- 1959\n- 1960\n 3920 \N 189.186.148.23 669617fd-40c6-4135-9453-475f34083ad9 2020-10-13 19:15:11.489168 42448 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zF1PMVyNADksjoDcbXbG\n- 8P5Et8GxDqcyyiNoofL2\n 3921 \N 189.186.148.23 669617fd-40c6-4135-9453-475f34083ad9 2020-10-13 19:15:11.507026 42449 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-05 19:15:15.922627000 Z\n- &1 2020-10-08 16:28:26.596103000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-13 19:36:14.844451324 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147115203\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\nsign_in_count:\n- 661\n- 662\n 1327 \N 189.186.9.45 4a68b0e5-9499-43c1-b0dd-d76efa13914b 2020-10-13 19:36:14.854963 42450 2 User \N \N 2 User \N update ---\nunique_session_id:\n- CvLSoP3sXfdt7938j5zy\n- u5WsCjzNm7r8Trw4ytXF\n 1328 \N 189.186.9.45 4a68b0e5-9499-43c1-b0dd-d76efa13914b 2020-10-13 19:36:14.877268 42451 1113 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.808E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 808.0 189.186.9.45 4b45b67f-52e6-4e18-b129-846340c7d280 2020-10-13 19:36:35.966346 42452 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-13 18:31:46.620093000 Z\n- &1 2020-10-13 19:15:11.483196000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-13 20:00:53.211834331 Z\nsign_in_count:\n- 1960\n- 1961\n 3922 \N 189.186.148.23 5cc5200b-f6e7-48ca-b285-61d893af7748 2020-10-13 20:00:53.231322 42453 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8P5Et8GxDqcyyiNoofL2\n- jmt1fNxdeQJ7_du6wq6v\n 3923 \N 189.186.148.23 5cc5200b-f6e7-48ca-b285-61d893af7748 2020-10-13 20:00:53.256429 42454 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-13 00:46:27.387535000 Z\n- &1 2020-10-13 18:32:13.767154000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-13 21:23:11.627785531 Z\nsign_in_count:\n- 272\n- 273\n 547 \N 189.186.148.23 dd4d3c7c-d089-4d7e-ba45-990dba8c2186 2020-10-13 21:23:11.636574 42455 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 4xE3qekDydBRdtbLFjeg\n- nEVAnipyYxiyuVpgBu55\n 548 \N 189.186.148.23 dd4d3c7c-d089-4d7e-ba45-990dba8c2186 2020-10-13 21:23:11.657041 42456 3165 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1112\namount: !ruby/object:BigDecimal 18:0.3156E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3156E4\nstatus: 0\ndate_sale: 2020-10-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-726\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 c41a9dad-c68e-4b5f-aca9-4edb73ff0598 2020-10-13 21:28:32.381519 42457 2221 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.148.23 c41a9dad-c68e-4b5f-aca9-4edb73ff0598 2020-10-13 21:28:32.416186 42458 2276 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.148.23 c41a9dad-c68e-4b5f-aca9-4edb73ff0598 2020-10-13 21:28:32.449674 42460 1701 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.148.23 c41a9dad-c68e-4b5f-aca9-4edb73ff0598 2020-10-13 21:28:32.495319 42461 3165 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 a12102c7-e775-4902-9091-0fbed81977ba 2020-10-13 21:28:44.901198 42462 4196 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1112\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3156E4\nmove_type: '1'\nsale_id: 3165\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-726\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3176E4\nchange: !ruby/object:BigDecimal 18:0.2E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-726 189.186.148.23 a12102c7-e775-4902-9091-0fbed81977ba 2020-10-13 21:28:44.923506 42463 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-13 19:15:11.483196000 Z\n- &1 2020-10-13 20:00:53.211834000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-13 22:38:01.131323866 Z\nsign_in_count:\n- 1961\n- 1962\n 3924 \N 189.186.148.23 4ed17bac-90b7-41ed-b785-ca9bd09747e6 2020-10-13 22:38:01.15945 42464 4 User \N \N 4 User \N update ---\nunique_session_id:\n- jmt1fNxdeQJ7_du6wq6v\n- nzFWK1xknRwsZMZBFXPu\n 3925 \N 189.186.148.23 4ed17bac-90b7-41ed-b785-ca9bd09747e6 2020-10-13 22:38:01.184969 42465 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-10 20:34:18.695196000 Z\n- &1 2020-10-12 21:23:32.952669000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-14 00:21:25.272498269 Z\nsign_in_count:\n- 271\n- 272\n 544 \N 189.186.9.45 e3f14626-f3e0-4965-97d0-4c58d801b136 2020-10-14 00:21:25.281007 42466 1 User \N \N 1 User \N update ---\nunique_session_id:\n- i-xczUWemBd1hSFsd1Me\n- s6yN9jjL2W7osTxPmtts\n 545 \N 189.186.9.45 e3f14626-f3e0-4965-97d0-4c58d801b136 2020-10-14 00:21:25.302153 42467 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-13 18:32:13.767154000 Z\n- &1 2020-10-13 21:23:11.627785000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-14 00:22:29.842080047 Z\nsign_in_count:\n- 273\n- 274\n 549 \N 189.186.148.23 676b4c45-efb0-4a90-831e-97d7aa4f6347 2020-10-14 00:22:29.847794 42468 18 User \N \N 18 User \N update ---\nunique_session_id:\n- nEVAnipyYxiyuVpgBu55\n- 8ynEzQMKqxfgx3yqXzr7\n 550 \N 189.186.148.23 676b4c45-efb0-4a90-831e-97d7aa4f6347 2020-10-14 00:22:29.865761 42469 3166 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1112\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2020-10-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-727\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 3cc576a6-1c14-4ee9-9444-19c5fcfd2237 2020-10-14 00:24:02.546234 42470 2277 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.148.23 3cc576a6-1c14-4ee9-9444-19c5fcfd2237 2020-10-14 00:24:02.597589 42471 3166 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 eefa39d0-2be1-4526-8231-2452568d0e8e 2020-10-14 00:24:33.884312 42472 4197 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1112\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.479E3\nmove_type: '1'\nsale_id: 3166\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-727\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-727 189.186.148.23 eefa39d0-2be1-4526-8231-2452568d0e8e 2020-10-14 00:24:33.927089 42473 3167 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1112\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-10-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-728\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 f70d4a37-ef99-4436-8838-8896cf6ce172 2020-10-14 00:32:24.952437 42474 2266 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.148.23 f70d4a37-ef99-4436-8838-8896cf6ce172 2020-10-14 00:32:24.983892 42475 3167 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 4423c67c-770c-4364-921b-f45dc61b1bd4 2020-10-14 00:32:29.422321 42476 4198 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1112\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 3167\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-728\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-728 189.186.148.23 4423c67c-770c-4364-921b-f45dc61b1bd4 2020-10-14 00:32:29.447332 42477 3168 Sale \N \N 18 User \N create ---\ncustomer_id: 275\nuser_id: 18\nopen_cash_register_id: 1112\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2020-10-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-729\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 8264f4c2-d5a8-4700-a53d-a75f281af1a8 2020-10-14 00:43:24.900703 42478 2278 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.148.23 8264f4c2-d5a8-4700-a53d-a75f281af1a8 2020-10-14 00:43:24.929958 42479 3168 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 436283dc-b01d-4bba-a48b-8b022680bafb 2020-10-14 00:43:31.386823 42480 4199 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1112\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.129E3\nmove_type: '1'\nsale_id: 3168\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-729\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.129E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-729 189.186.148.23 436283dc-b01d-4bba-a48b-8b022680bafb 2020-10-14 00:43:31.407864 42481 4199 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1112\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.129E3\nmove_type: '1'\nsale_id: 3168\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-729\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.129E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.148.23 c31f8923-0996-4233-841f-7945e2573887 2020-10-14 00:43:39.829512 42482 3168 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-729 cancelada. 189.186.148.23 7aff8b52-be2c-4b8d-8ad1-8720baabe87a 2020-10-14 00:43:42.103071 42483 2278 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.148.23 7aff8b52-be2c-4b8d-8ad1-8720baabe87a 2020-10-14 00:43:42.129959 42484 3169 Sale \N \N 18 User \N create ---\ncustomer_id: 275\nuser_id: 18\nopen_cash_register_id: 1112\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2020-10-13\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-730\nexpiration_date: 2020-11-17\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 12541786-9876-4e95-b9e0-7975656fa8f2 2020-10-14 00:44:04.306583 42485 2278 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.148.23 12541786-9876-4e95-b9e0-7975656fa8f2 2020-10-14 00:44:04.34144 42486 4200 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1112\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.129E3\nmove_type: '1'\nsale_id: 3169\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-730\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.129E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-730 189.186.148.23 63d06bcf-9e9c-40f5-86a2-22e2bc5af511 2020-10-14 00:44:11.595803 42487 3169 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-730 cancelada. 189.186.148.23 f6235aea-115f-4071-933e-90114439312f 2020-10-14 00:44:19.468133 42488 2278 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 189.186.148.23 f6235aea-115f-4071-933e-90114439312f 2020-10-14 00:44:19.492972 42489 3170 Sale \N \N 18 User \N create ---\ncustomer_id: 275\nuser_id: 18\nopen_cash_register_id: 1112\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2020-10-13\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-731\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 ae459c90-6b28-4207-82fd-7392431a7be5 2020-10-14 00:44:41.879783 42490 2278 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.148.23 ae459c90-6b28-4207-82fd-7392431a7be5 2020-10-14 00:44:41.919089 42491 4201 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 933\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.129E3\nmove_type: '1'\nsale_id: 2475\ncardnumber: 1256\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.148.23 9687cbff-8c97-4542-b992-4a222f7955bd 2020-10-14 00:45:15.94053 42492 4201 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 933\n- 1112\n 2 movimiento de efectivo por venta con folio PV1-V-1204 189.186.148.23 9687cbff-8c97-4542-b992-4a222f7955bd 2020-10-14 00:45:15.967306 42493 3171 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1112\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-10-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-732\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.148.23 71c9f2d4-36a7-429f-b57e-a943fefab527 2020-10-14 00:48:10.366493 42494 1362 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.148.23 71c9f2d4-36a7-429f-b57e-a943fefab527 2020-10-14 00:48:10.393916 42495 3171 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.148.23 aea91d5b-b81a-4cd5-8739-20cabf6aa3b4 2020-10-14 00:48:42.778229 42496 4202 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1112\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 3171\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-732\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-732 189.186.148.23 aea91d5b-b81a-4cd5-8739-20cabf6aa3b4 2020-10-14 00:48:42.799378 42497 1137 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1113\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.808E3\nphysical_cash: !ruby/object:BigDecimal 18:0.808E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.9.45 364ed946-a9cb-4c65-a66a-96408792b654 2020-10-14 00:51:22.541672 42498 1113 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.9.45 364ed946-a9cb-4c65-a66a-96408792b654 2020-10-14 00:51:22.559646 42499 1138 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1112\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.609E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.6E4\ncash_fund: !ruby/object:BigDecimal 18:0.839E3\nphysical_cash: !ruby/object:BigDecimal 18:0.6839E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.148.23 22558f7a-b4d7-4b2b-8393-61f292d320fa 2020-10-14 01:03:51.527984 42500 1112 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.148.23 22558f7a-b4d7-4b2b-8393-61f292d320fa 2020-10-14 01:03:51.542642 42501 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-13 20:00:53.211834000 Z\n- &1 2020-10-13 22:38:01.131323000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-14 01:04:26.616143491 Z\nsign_in_count:\n- 1962\n- 1963\n 3926 \N 189.186.148.23 067277a6-4702-4b9f-9f3f-64099b84688f 2020-10-14 01:04:26.625163 42502 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nzFWK1xknRwsZMZBFXPu\n- vv7jankiCYnVaXQynFxq\n 3927 \N 189.186.148.23 067277a6-4702-4b9f-9f3f-64099b84688f 2020-10-14 01:04:26.649012 42503 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-08 16:28:26.596103000 Z\n- &1 2020-10-13 19:36:14.844451000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-14 16:42:30.658570601 Z\nsign_in_count:\n- 662\n- 663\n 1329 \N 189.186.9.45 e12c7b9e-99b4-4569-aa5d-2454301d1057 2020-10-14 16:42:30.690108 42504 2 User \N \N 2 User \N update ---\nunique_session_id:\n- u5WsCjzNm7r8Trw4ytXF\n- nsz5ueACGdcNexGu3eyS\n 1330 \N 189.186.9.45 e12c7b9e-99b4-4569-aa5d-2454301d1057 2020-10-14 16:42:30.715976 42505 1114 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.808E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 808.0 189.186.9.45 7d0d9540-8cfe-4712-91b8-88849bd08d70 2020-10-14 16:43:00.449305 42506 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-13 22:38:01.131323000 Z\n- &1 2020-10-14 01:04:26.616143000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-14 18:25:18.232853986 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097919\n mask_addr: 4294967295\nsign_in_count:\n- 1963\n- 1964\n 3928 \N 189.186.56.63 c1ccb1d0-1251-4c97-8bde-d61f7fd7dec9 2020-10-14 18:25:18.239681 42507 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vv7jankiCYnVaXQynFxq\n- Gfzavc8so7g55SyamoTs\n 3929 \N 189.186.56.63 c1ccb1d0-1251-4c97-8bde-d61f7fd7dec9 2020-10-14 18:25:18.259123 42508 3172 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1114\namount: !ruby/object:BigDecimal 18:0.369E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.369E3\nstatus: 0\ndate_sale: 2020-10-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1520\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 91b0a0ce-bb27-4f6a-aa23-23b6e231fbb2 2020-10-14 18:45:14.141161 42509 2239 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.9.45 91b0a0ce-bb27-4f6a-aa23-23b6e231fbb2 2020-10-14 18:45:14.17166 42510 3172 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 b11d696e-5f7f-4ee5-ad64-da11f6a7c30c 2020-10-14 18:45:18.130355 42511 4203 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1114\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.369E3\nmove_type: '1'\nsale_id: 3172\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1520\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.369E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1520 189.186.9.45 b11d696e-5f7f-4ee5-ad64-da11f6a7c30c 2020-10-14 18:45:18.151439 42512 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-13 21:23:11.627785000 Z\n- &1 2020-10-14 00:22:29.842080000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-14 19:21:39.110308551 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097919\n mask_addr: 4294967295\nsign_in_count:\n- 274\n- 275\n 551 \N 189.186.56.63 c890612d-1b88-467a-a3ff-251e365bb6e9 2020-10-14 19:21:39.135183 42513 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 8ynEzQMKqxfgx3yqXzr7\n- ohrx8oWVyn3kf4KKMt5S\n 552 \N 189.186.56.63 c890612d-1b88-467a-a3ff-251e365bb6e9 2020-10-14 19:21:39.156911 42514 1115 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.839E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 839.0 189.186.56.63 d64f6199-39f7-4c2f-86c3-d576f919542b 2020-10-14 19:21:49.190381 42515 3173 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1115\namount: !ruby/object:BigDecimal 18:0.288783E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.3E3\ntotal: !ruby/object:BigDecimal 18:0.2767E4\nstatus: 0\ndate_sale: 2020-10-14\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-733\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 c1ee9dd5-75f6-4fcd-b203-481bdc15b806 2020-10-14 19:33:01.673595 42516 1994 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.56.63 c1ee9dd5-75f6-4fcd-b203-481bdc15b806 2020-10-14 19:33:01.727597 42517 1929 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.56.63 c1ee9dd5-75f6-4fcd-b203-481bdc15b806 2020-10-14 19:33:01.765345 42518 1902 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.56.63 c1ee9dd5-75f6-4fcd-b203-481bdc15b806 2020-10-14 19:33:01.794377 42519 3173 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.56.63 ee6f64ee-9212-4ebb-a7b0-90c03b1dd000 2020-10-14 19:34:04.110585 42520 4204 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1115\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2767E4\nmove_type: '1'\nsale_id: 3173\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-733\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E4\nchange: !ruby/object:BigDecimal 18:0.233E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-733 189.186.56.63 ee6f64ee-9212-4ebb-a7b0-90c03b1dd000 2020-10-14 19:34:04.13952 42521 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-14 01:04:26.616143000 Z\n- &1 2020-10-14 18:25:18.232853000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-14 20:12:07.214772225 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097919\n mask_addr: 4294967295\nsign_in_count:\n- 1964\n- 1965\n 3930 \N 189.186.56.63 583c5f10-0e49-4208-a038-5ac3e492795e 2020-10-14 20:12:07.255502 42522 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Gfzavc8so7g55SyamoTs\n- mqvkVc8bXjiBzDzsBQGd\n 3931 \N 189.186.56.63 583c5f10-0e49-4208-a038-5ac3e492795e 2020-10-14 20:12:07.292401 42523 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-12 21:23:32.952669000 Z\n- &1 2020-10-14 00:21:25.272498000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-14 21:25:53.681655296 Z\nsign_in_count:\n- 272\n- 273\n 546 \N 189.186.9.45 1691a8bf-824d-4cf8-9b95-81d29441489d 2020-10-14 21:25:53.687439 42524 1 User \N \N 1 User \N update ---\nunique_session_id:\n- s6yN9jjL2W7osTxPmtts\n- xnih1jzkRHznExCRkqfb\n 547 \N 189.186.9.45 1691a8bf-824d-4cf8-9b95-81d29441489d 2020-10-14 21:25:53.702095 42525 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-14 00:22:29.842080000 Z\n- &1 2020-10-14 19:21:39.110308000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-14 22:40:09.061408575 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097919\n mask_addr: 4294967295\nsign_in_count:\n- 275\n- 276\n 553 \N 189.186.56.63 08301947-4038-4cb1-a31c-8adb641cdf1a 2020-10-14 22:40:09.069557 42526 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ohrx8oWVyn3kf4KKMt5S\n- ajJ93civ7M-ohm5tCzP7\n 554 \N 189.186.56.63 08301947-4038-4cb1-a31c-8adb641cdf1a 2020-10-14 22:40:09.089389 42527 3174 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1115\namount: !ruby/object:BigDecimal 18:0.60072E3\ntax: !ruby/object:BigDecimal 18:0.4828E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2020-10-14\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-734\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 077daa89-d5c0-4b3c-9b83-b5091532a88a 2020-10-14 23:07:43.969863 42528 2172 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.56.63 077daa89-d5c0-4b3c-9b83-b5091532a88a 2020-10-14 23:07:44.012175 42529 939 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.26E2\n- !ruby/object:BigDecimal 18:0.25E2\n 14 \N 189.186.56.63 077daa89-d5c0-4b3c-9b83-b5091532a88a 2020-10-14 23:07:44.055475 42530 3174 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.56.63 a31cd7b5-0a99-4408-8685-934c5e81839e 2020-10-14 23:07:54.403075 42609 18 User \N \N 18 User \N update ---\nunique_session_id:\n- sNdkQjzeJiiUbA9oSVgw\n- sGqZW_qaatEt3DpsuFAP\n 570 \N 189.186.56.63 883bd595-7bd0-4c8c-ab22-31e37f8f674a 2020-10-15 01:27:51.064645 42531 4205 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1115\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 3174\ncardnumber: 4555\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-734\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-734 189.186.56.63 a31cd7b5-0a99-4408-8685-934c5e81839e 2020-10-14 23:07:54.431254 42532 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-14 18:25:18.232853000 Z\n- &1 2020-10-14 20:12:07.214772000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-14 23:08:14.248814415 Z\nsign_in_count:\n- 1965\n- 1966\n 3932 \N 189.186.56.63 00defa50-25f4-4c91-bafd-aa80316d8047 2020-10-14 23:08:14.254962 42533 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mqvkVc8bXjiBzDzsBQGd\n- fbT4R98Ek7VAbVzeDAsD\n 3933 \N 189.186.56.63 00defa50-25f4-4c91-bafd-aa80316d8047 2020-10-14 23:08:14.270688 42534 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-14 19:21:39.110308000 Z\n- &1 2020-10-14 22:40:09.061408000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-14 23:14:39.851492904 Z\nsign_in_count:\n- 276\n- 277\n 555 \N 189.186.56.63 af0e10ba-0103-4943-a09f-642947e98476 2020-10-14 23:14:39.858094 42535 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ajJ93civ7M-ohm5tCzP7\n- Ez22DRUK479s-_LveiBr\n 556 \N 189.186.56.63 af0e10ba-0103-4943-a09f-642947e98476 2020-10-14 23:14:39.871702 42536 4206 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1115\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 3155\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-721 189.186.56.63 f4073118-d940-4940-8a54-64dbee58e8f9 2020-10-14 23:15:56.049468 42537 3155 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.56.63 884c8b20-e92a-44bf-9adb-9f6bc234f2cc 2020-10-14 23:15:57.832162 42538 4207 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1114\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1357E4\nmove_type: '1'\nsale_id: 2999\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1357E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1431 189.186.9.45 610ae40b-e35b-46d6-b164-76fce0e622be 2020-10-14 23:17:32.312286 42539 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-14 20:12:07.214772000 Z\n- &1 2020-10-14 23:08:14.248814000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-14 23:28:35.323189422 Z\nsign_in_count:\n- 1966\n- 1967\n 3934 \N 189.186.56.63 841e416e-d3cb-40be-92e9-95f9e3c942d2 2020-10-14 23:28:35.331013 42540 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fbT4R98Ek7VAbVzeDAsD\n- FkBve-H_F94K3yurHwKV\n 3935 \N 189.186.56.63 841e416e-d3cb-40be-92e9-95f9e3c942d2 2020-10-14 23:28:35.35247 42541 1364 Product \N \N 4 User \N create ---\nsku: ACC-1364\nname: KIT-RA\ndescription: KIT DE SHAMPOO Y ACONDICIONADOR\nprice_base: !ruby/object:BigDecimal 18:0.356E3\nprice_sale: !ruby/object:BigDecimal 18:0.649E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1364 fue creado. 189.186.56.63 62fcf2f3-cb57-4464-8714-4c54488e15d3 2020-10-14 23:40:42.113671 42542 1364 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001364'\n 2 \N 189.186.56.63 62fcf2f3-cb57-4464-8714-4c54488e15d3 2020-10-14 23:40:42.149489 42543 2357 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1364\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.56.63 62fcf2f3-cb57-4464-8714-4c54488e15d3 2020-10-14 23:40:42.182186 42544 412 Purchase \N \N 4 User \N create ---\nsupplier_id: 4\npointsale_id: 3\npurchase_code: PV3-C-106\namount: !ruby/object:BigDecimal 18:0.356E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.356E3\nobservations: ''\npurchase_date: 2020-10-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-106 por $ 356.0 MXN creada. 189.186.56.63 673832ea-9f76-40d5-a80a-1d64b490ba77 2020-10-14 23:40:45.254963 42545 2357 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.56.63 673832ea-9f76-40d5-a80a-1d64b490ba77 2020-10-14 23:40:45.285207 42546 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-14 22:40:09.061408000 Z\n- &1 2020-10-14 23:14:39.851492000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-14 23:41:50.627119927 Z\nsign_in_count:\n- 277\n- 278\n 557 \N 189.186.56.63 27b7a3a8-9b51-40ed-9d0e-9be576f4588a 2020-10-14 23:41:50.63678 42547 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Ez22DRUK479s-_LveiBr\n- rxsfGzdk6gTDsMv57mDN\n 558 \N 189.186.56.63 27b7a3a8-9b51-40ed-9d0e-9be576f4588a 2020-10-14 23:41:50.653316 42548 3175 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1115\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2020-10-14\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-735\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 d5362da0-09ee-465b-befa-19f1cba88c09 2020-10-14 23:42:03.421385 42549 2357 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.56.63 d5362da0-09ee-465b-befa-19f1cba88c09 2020-10-14 23:42:03.451897 42550 3175 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.56.63 c99c2e10-08b2-43a7-baba-b81a3beef20f 2020-10-14 23:42:17.363156 42551 4208 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1115\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 3175\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-735\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '2525252'\n 1 movimiento de efectivo por venta con folio PV3-V-735 189.186.56.63 c99c2e10-08b2-43a7-baba-b81a3beef20f 2020-10-14 23:42:17.385098 42552 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-14 23:08:14.248814000 Z\n- &1 2020-10-14 23:28:35.323189000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-14 23:59:20.272353003 Z\nsign_in_count:\n- 1967\n- 1968\n 3936 \N 189.186.56.63 99bcf956-19ae-4ddb-8790-38ed7350bd50 2020-10-14 23:59:20.279425 42553 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FkBve-H_F94K3yurHwKV\n- WWd8TBf5uD1KVmxvtiar\n 3937 \N 189.186.56.63 99bcf956-19ae-4ddb-8790-38ed7350bd50 2020-10-14 23:59:20.298524 42611 18 User \N \N 18 User \N update ---\nunique_session_id:\n- sGqZW_qaatEt3DpsuFAP\n- tzSNASCi5yzYPmLRJswX\n 572 \N 189.186.56.63 00507243-4028-45c5-bfa6-12e499ece746 2020-10-15 01:29:06.82832 42554 3176 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1114\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-10-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1521\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 77e6abf3-4538-4942-97af-3ca161613df4 2020-10-15 00:13:06.558242 42555 2244 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.9.45 77e6abf3-4538-4942-97af-3ca161613df4 2020-10-15 00:13:06.605314 42556 3176 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 a7ef0d82-8c15-42fe-b08d-61b56fff7f00 2020-10-15 00:13:26.704944 42557 4209 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1114\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 3176\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1521\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1521 189.186.9.45 a7ef0d82-8c15-42fe-b08d-61b56fff7f00 2020-10-15 00:13:26.736991 42558 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-14 23:14:39.851492000 Z\n- &1 2020-10-14 23:41:50.627119000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 00:17:28.994749862 Z\nsign_in_count:\n- 278\n- 279\n 559 \N 189.186.56.63 ec1dbbf7-964c-4938-955f-64fd3a16598a 2020-10-15 00:17:29.002497 42559 18 User \N \N 18 User \N update ---\nunique_session_id:\n- rxsfGzdk6gTDsMv57mDN\n- gfBu5NehFxASumCcCn36\n 560 \N 189.186.56.63 ec1dbbf7-964c-4938-955f-64fd3a16598a 2020-10-15 00:17:29.018066 42560 3177 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1114\namount: !ruby/object:BigDecimal 18:0.118524E4\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.668E3\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2020-10-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1522\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 574fa432-3cb5-497e-b894-4a22aebb7aa8 2020-10-15 00:23:05.654864 42561 6 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.9.45 574fa432-3cb5-497e-b894-4a22aebb7aa8 2020-10-15 00:23:05.68488 42562 1565 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.9.45 574fa432-3cb5-497e-b894-4a22aebb7aa8 2020-10-15 00:23:05.710475 42563 3177 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 0fb8c3de-53c2-4cc6-8370-ede3b2b4d281 2020-10-15 00:23:10.328074 42564 4210 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1114\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 3177\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1522\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1522 189.186.9.45 0fb8c3de-53c2-4cc6-8370-ede3b2b4d281 2020-10-15 00:23:10.355265 42565 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-14 23:28:35.323189000 Z\n- &1 2020-10-14 23:59:20.272353000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 00:33:54.607269155 Z\nsign_in_count:\n- 1968\n- 1969\n 3938 \N 189.186.56.63 6b5195d1-50da-4224-9c3a-93c6d1a4d9bc 2020-10-15 00:33:54.626335 42566 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WWd8TBf5uD1KVmxvtiar\n- M-SGzT9asdZVR1A49vVE\n 3939 \N 189.186.56.63 6b5195d1-50da-4224-9c3a-93c6d1a4d9bc 2020-10-15 00:33:54.648578 42567 699 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-10-14\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.56.63 181b6425-0cfa-4d6c-b698-c84c9069c868 2020-10-15 00:34:44.181919 42568 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-14 23:41:50.627119000 Z\n- &1 2020-10-15 00:17:28.994749000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 00:46:57.780877792 Z\nsign_in_count:\n- 279\n- 280\n 561 \N 189.186.56.63 b9a7f33a-ffe1-44e6-a69a-91f614e8e90e 2020-10-15 00:46:57.786894 42569 18 User \N \N 18 User \N update ---\nunique_session_id:\n- gfBu5NehFxASumCcCn36\n- xadr6_E3xTdG2G5MpgPo\n 562 \N 189.186.56.63 b9a7f33a-ffe1-44e6-a69a-91f614e8e90e 2020-10-15 00:46:57.801748 42570 1139 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1114\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2925E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.733E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3733E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.9.45 8b7657b0-6506-48d5-ba74-32885db4a194 2020-10-15 01:03:24.087505 42571 1114 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.9.45 8b7657b0-6506-48d5-ba74-32885db4a194 2020-10-15 01:03:24.105871 42572 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 00:17:28.994749000 Z\n- &1 2020-10-15 00:46:57.780877000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 01:08:11.188682133 Z\nsign_in_count:\n- 280\n- 281\n 563 \N 189.186.56.63 d003d0f5-b497-4d3b-a40c-f1df99f8545e 2020-10-15 01:08:11.195862 42573 18 User \N \N 18 User \N update ---\nunique_session_id:\n- xadr6_E3xTdG2G5MpgPo\n- s8yaZXevjxzgdHomABe6\n 564 \N 189.186.56.63 d003d0f5-b497-4d3b-a40c-f1df99f8545e 2020-10-15 01:08:11.210985 42574 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 00:46:57.780877000 Z\n- &1 2020-10-15 01:08:11.188682000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 01:10:18.020223036 Z\nsign_in_count:\n- 281\n- 282\n 565 \N 189.186.56.63 82197328-1cea-4148-9d84-fa7ff2b8be7a 2020-10-15 01:10:18.025571 42575 18 User \N \N 18 User \N update ---\nunique_session_id:\n- s8yaZXevjxzgdHomABe6\n- "-XL9zHA188fBcqsEyVHU"\n 566 \N 189.186.56.63 82197328-1cea-4148-9d84-fa7ff2b8be7a 2020-10-15 01:10:18.042503 42576 409 Customer \N \N 18 User \N create ---\nnick_name: CLAUDIA CASTILLO 2\nphone: "(667) 715-1515"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CLAUDIA CASTILLO 2 fue registrado. 189.186.56.63 252a0a74-de2d-42db-9a1d-7ed57498c625 2020-10-15 01:16:18.641144 42577 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-14 23:59:20.272353000 Z\n- &1 2020-10-15 00:33:54.607269000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 01:20:06.915300632 Z\nsign_in_count:\n- 1969\n- 1970\n 3940 \N 189.186.56.63 d3766cd7-5a0c-4027-a43e-8bb3e93e6a73 2020-10-15 01:20:06.920959 42578 4 User \N \N 4 User \N update ---\nunique_session_id:\n- M-SGzT9asdZVR1A49vVE\n- s2vdF3WL4Uzp-e1NQumx\n 3941 \N 189.186.56.63 d3766cd7-5a0c-4027-a43e-8bb3e93e6a73 2020-10-15 01:20:06.937659 42610 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 01:22:14.245347000 Z\n- &1 2020-10-15 01:27:51.041748000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 01:29:06.809111764 Z\nsign_in_count:\n- 284\n- 285\n 571 \N 189.186.56.63 00507243-4028-45c5-bfa6-12e499ece746 2020-10-15 01:29:06.814829 42579 1365 Product \N \N 4 User \N create ---\nsku: BOL-1365\nname: 'BOLSA '\ndescription: BOLA MOÑO\nprice_base: !ruby/object:BigDecimal 18:0.9995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1999E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1365 fue creado. 189.186.56.63 69431458-3636-412a-8783-fc2a2a5f3093 2020-10-15 01:21:46.125351 42580 1365 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001365'\n 2 \N 189.186.56.63 69431458-3636-412a-8783-fc2a2a5f3093 2020-10-15 01:21:46.15684 42581 2358 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1365\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.56.63 69431458-3636-412a-8783-fc2a2a5f3093 2020-10-15 01:21:46.187425 42582 413 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-107\namount: !ruby/object:BigDecimal 18:0.9995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9995E3\nobservations: ''\npurchase_date: 2020-10-14\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-107 por $ 999.5 MXN creada. 189.186.56.63 1971c6db-5026-4bee-8e24-e9dac5deae23 2020-10-15 01:21:49.329185 42583 2358 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.56.63 1971c6db-5026-4bee-8e24-e9dac5deae23 2020-10-15 01:21:49.353652 42584 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 01:08:11.188682000 Z\n- &1 2020-10-15 01:10:18.020223000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 01:22:14.245347238 Z\nsign_in_count:\n- 282\n- 283\n 567 \N 189.186.56.63 07a15ce2-8d46-4276-8624-9d5cf05258d4 2020-10-15 01:22:14.251693 42585 18 User \N \N 18 User \N update ---\nunique_session_id:\n- "-XL9zHA188fBcqsEyVHU"\n- sNdkQjzeJiiUbA9oSVgw\n 568 \N 189.186.56.63 07a15ce2-8d46-4276-8624-9d5cf05258d4 2020-10-15 01:22:14.266153 42586 3178 Sale \N \N 18 User \N create ---\ncustomer_id: 409\nuser_id: 18\nopen_cash_register_id: 1115\namount: !ruby/object:BigDecimal 18:0.10001E5\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.10001E5\nstatus: 0\ndate_sale: 2020-10-14\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-736\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 42d1c72f-e164-4759-97b7-2e6cfe2b7fc9 2020-10-15 01:26:28.137523 42587 2271 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 4 \N 189.186.56.63 42d1c72f-e164-4759-97b7-2e6cfe2b7fc9 2020-10-15 01:26:28.181129 42588 2332 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.56.63 42d1c72f-e164-4759-97b7-2e6cfe2b7fc9 2020-10-15 01:26:28.215211 42589 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 73 \N 189.186.56.63 42d1c72f-e164-4759-97b7-2e6cfe2b7fc9 2020-10-15 01:26:28.24626 42590 2341 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 189.186.56.63 42d1c72f-e164-4759-97b7-2e6cfe2b7fc9 2020-10-15 01:26:28.28469 42591 2042 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.56.63 42d1c72f-e164-4759-97b7-2e6cfe2b7fc9 2020-10-15 01:26:28.312043 42592 2358 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.56.63 42d1c72f-e164-4759-97b7-2e6cfe2b7fc9 2020-10-15 01:26:28.341439 42593 1794 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.56.63 42d1c72f-e164-4759-97b7-2e6cfe2b7fc9 2020-10-15 01:26:28.370161 42594 2266 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.56.63 42d1c72f-e164-4759-97b7-2e6cfe2b7fc9 2020-10-15 01:26:28.402964 42595 834 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 25 \N 189.186.56.63 42d1c72f-e164-4759-97b7-2e6cfe2b7fc9 2020-10-15 01:26:28.438755 42596 830 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 16 \N 189.186.56.63 42d1c72f-e164-4759-97b7-2e6cfe2b7fc9 2020-10-15 01:26:28.474526 42597 3178 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-736 cancelada. 189.186.56.63 efddef1a-6c48-4a3c-a418-5a740ffa82a0 2020-10-15 01:26:53.384599 42598 830 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 17 \N 189.186.56.63 efddef1a-6c48-4a3c-a418-5a740ffa82a0 2020-10-15 01:26:53.411734 42599 834 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 26 \N 189.186.56.63 efddef1a-6c48-4a3c-a418-5a740ffa82a0 2020-10-15 01:26:53.437581 42600 2266 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.56.63 efddef1a-6c48-4a3c-a418-5a740ffa82a0 2020-10-15 01:26:53.464172 42601 1794 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.56.63 efddef1a-6c48-4a3c-a418-5a740ffa82a0 2020-10-15 01:26:53.48773 42602 2358 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.56.63 efddef1a-6c48-4a3c-a418-5a740ffa82a0 2020-10-15 01:26:53.510971 42603 2042 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.56.63 efddef1a-6c48-4a3c-a418-5a740ffa82a0 2020-10-15 01:26:53.5324 42604 2341 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 7 \N 189.186.56.63 efddef1a-6c48-4a3c-a418-5a740ffa82a0 2020-10-15 01:26:53.552951 42605 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 74 \N 189.186.56.63 efddef1a-6c48-4a3c-a418-5a740ffa82a0 2020-10-15 01:26:53.573567 42606 2332 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.56.63 efddef1a-6c48-4a3c-a418-5a740ffa82a0 2020-10-15 01:26:53.595485 42607 2271 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.9E1\n 5 \N 189.186.56.63 efddef1a-6c48-4a3c-a418-5a740ffa82a0 2020-10-15 01:26:53.61669 42608 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 01:10:18.020223000 Z\n- &1 2020-10-15 01:22:14.245347000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 01:27:51.041748453 Z\nsign_in_count:\n- 283\n- 284\n 569 \N 189.186.56.63 883bd595-7bd0-4c8c-ab22-31e37f8f674a 2020-10-15 01:27:51.047878 42612 410 Customer \N \N 18 User \N create ---\nnick_name: CLAUDIA CASTILLO 3\nphone: "(667) 714-2552"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.15E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CLAUDIA CASTILLO 3 fue registrado. 189.186.56.63 055942ec-922d-4539-8028-746e5346d838 2020-10-15 01:29:49.883052 42613 3179 Sale \N \N 18 User \N create ---\ncustomer_id: 410\nuser_id: 18\nopen_cash_register_id: 1115\namount: !ruby/object:BigDecimal 18:0.10001E5\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.10001E5\nstatus: 0\ndate_sale: 2020-10-14\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-737\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 cf25b24e-6f80-49f3-96c0-69989c60920e 2020-10-15 01:32:01.858213 42614 2341 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 189.186.56.63 cf25b24e-6f80-49f3-96c0-69989c60920e 2020-10-15 01:32:01.891191 42615 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 75 \N 189.186.56.63 cf25b24e-6f80-49f3-96c0-69989c60920e 2020-10-15 01:32:01.917348 42616 2042 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.56.63 cf25b24e-6f80-49f3-96c0-69989c60920e 2020-10-15 01:32:01.945822 42617 2358 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.56.63 cf25b24e-6f80-49f3-96c0-69989c60920e 2020-10-15 01:32:01.977557 42618 1794 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.56.63 cf25b24e-6f80-49f3-96c0-69989c60920e 2020-10-15 01:32:02.00829 42619 2266 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.56.63 cf25b24e-6f80-49f3-96c0-69989c60920e 2020-10-15 01:32:02.039151 42620 830 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 18 \N 189.186.56.63 cf25b24e-6f80-49f3-96c0-69989c60920e 2020-10-15 01:32:02.067428 42621 2271 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 6 \N 189.186.56.63 cf25b24e-6f80-49f3-96c0-69989c60920e 2020-10-15 01:32:02.092647 42622 2332 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.56.63 cf25b24e-6f80-49f3-96c0-69989c60920e 2020-10-15 01:32:02.118662 42623 834 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 27 \N 189.186.56.63 cf25b24e-6f80-49f3-96c0-69989c60920e 2020-10-15 01:32:02.143313 42624 1140 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1115\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.5065E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.4E4\ncash_fund: !ruby/object:BigDecimal 18:0.606E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4606E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.56.63 e008c6dd-80d6-4066-a4ab-9a5abc05a803 2020-10-15 01:42:37.647254 42625 1115 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.56.63 e008c6dd-80d6-4066-a4ab-9a5abc05a803 2020-10-15 01:42:37.664051 42626 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 00:33:54.607269000 Z\n- &1 2020-10-15 01:20:06.915300000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 01:43:13.807767582 Z\nsign_in_count:\n- 1970\n- 1971\n 3942 \N 189.186.56.63 91dcefa3-7f8f-49b4-88e2-8b24281a1f49 2020-10-15 01:43:13.813979 42627 4 User \N \N 4 User \N update ---\nunique_session_id:\n- s2vdF3WL4Uzp-e1NQumx\n- DRMoy8jJ8Q2y4A-hPun6\n 3943 \N 189.186.56.63 91dcefa3-7f8f-49b4-88e2-8b24281a1f49 2020-10-15 01:43:13.830835 42628 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-13 19:36:14.844451000 Z\n- &1 2020-10-14 16:42:30.658570000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 16:41:25.512585578 Z\nsign_in_count:\n- 663\n- 664\n 1331 \N 189.186.9.45 eab65242-4ce5-41eb-88af-0566883faf61 2020-10-15 16:41:25.544277 42629 2 User \N \N 2 User \N update ---\nunique_session_id:\n- nsz5ueACGdcNexGu3eyS\n- HQtWZfqhvjEFutpwZSXn\n 1332 \N 189.186.9.45 eab65242-4ce5-41eb-88af-0566883faf61 2020-10-15 16:41:25.573104 42630 1116 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.733E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 733.0 189.186.9.45 8ecaa76a-95ba-4ddd-a473-d30e0514a13a 2020-10-15 17:22:44.872475 42631 3180 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1116\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-10-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1523\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 05c3bbc5-de56-4ec9-9011-6fddcdb69df7 2020-10-15 18:10:22.451333 42632 2250 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.9.45 05c3bbc5-de56-4ec9-9011-6fddcdb69df7 2020-10-15 18:10:22.501344 42633 3180 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 880574b8-b679-48e4-96ce-e88e021354fc 2020-10-15 18:10:26.879735 42634 4211 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1116\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3180\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1523\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1523 189.186.9.45 880574b8-b679-48e4-96ce-e88e021354fc 2020-10-15 18:10:26.903408 42635 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-14 00:21:25.272498000 Z\n- &1 2020-10-14 21:25:53.681655000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 18:16:21.184954230 Z\nsign_in_count:\n- 273\n- 274\n 548 \N 189.186.9.45 8b64ff1b-a884-4c69-b856-8a915998e154 2020-10-15 18:16:21.220456 42636 1 User \N \N 1 User \N update ---\nunique_session_id:\n- xnih1jzkRHznExCRkqfb\n- vy1R4CNkJnWz9VJyb6F6\n 549 \N 189.186.9.45 8b64ff1b-a884-4c69-b856-8a915998e154 2020-10-15 18:16:21.252336 42637 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 01:27:51.041748000 Z\n- &1 2020-10-15 01:29:06.809111000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 18:22:25.076731898 Z\nsign_in_count:\n- 285\n- 286\n 573 \N 189.186.56.63 14534e21-990e-445b-88a7-439b352edc89 2020-10-15 18:22:25.082609 42638 18 User \N \N 18 User \N update ---\nunique_session_id:\n- tzSNASCi5yzYPmLRJswX\n- E_eUyApe6zYptpvoaUSL\n 574 \N 189.186.56.63 14534e21-990e-445b-88a7-439b352edc89 2020-10-15 18:22:25.098537 42639 1117 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.606E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 606.0 189.186.56.63 3a44afc7-3c74-4445-931d-ee8d25ff1eb8 2020-10-15 18:30:20.314471 42640 411 Customer \N \N 18 User \N create ---\nnick_name: CECILIA ARAMBURO\nphone: "(667) 137-2809"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CECILIA ARAMBURO fue registrado. 189.186.56.63 06072fb7-9484-4105-8c92-d82b429ac826 2020-10-15 18:30:42.989979 42641 3181 Sale \N \N 18 User \N create ---\ncustomer_id: 411\nuser_id: 18\nopen_cash_register_id: 1117\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-10-15\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-738\nexpiration_date: 2020-11-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 494044c4-8369-4d23-a5fa-63db83effe55 2020-10-15 18:35:26.691039 42642 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 74 \N 189.186.56.63 494044c4-8369-4d23-a5fa-63db83effe55 2020-10-15 18:35:26.729349 42643 4212 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1117\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3181\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-738\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-738 189.186.56.63 3dd5bf85-d37a-4e5d-bacd-85650241d398 2020-10-15 18:35:37.447618 42644 3181 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.56.63 bac67a5b-dc4d-44e7-be9a-65cf52198e71 2020-10-15 18:35:38.592811 42645 3182 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1117\namount: !ruby/object:BigDecimal 18:0.529E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.529E3\nstatus: 0\ndate_sale: 2020-10-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-739\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 4c27e2ef-b74d-4349-a06b-3dba0cd57ca6 2020-10-15 18:38:59.064981 42646 2210 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.56.63 4c27e2ef-b74d-4349-a06b-3dba0cd57ca6 2020-10-15 18:38:59.092006 42647 3182 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.56.63 772a4715-f050-4ee5-940b-585b5340f591 2020-10-15 18:40:24.05235 42648 4213 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1117\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.529E3\nmove_type: '1'\nsale_id: 3182\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-739\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.529E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-739 189.186.56.63 772a4715-f050-4ee5-940b-585b5340f591 2020-10-15 18:40:24.077715 42649 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 01:20:06.915300000 Z\n- &1 2020-10-15 01:43:13.807767000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 18:48:17.928767366 Z\nsign_in_count:\n- 1971\n- 1972\n 3944 \N 189.186.56.63 4c244ab5-ea03-45ae-89ce-96ffedbca95d 2020-10-15 18:48:17.934325 42650 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DRMoy8jJ8Q2y4A-hPun6\n- eR2xaWhwgzg3XjHu6Y9K\n 3945 \N 189.186.56.63 4c244ab5-ea03-45ae-89ce-96ffedbca95d 2020-10-15 18:48:17.950312 42651 3183 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1116\namount: !ruby/object:BigDecimal 18:0.1858E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.639E3\ntotal: !ruby/object:BigDecimal 18:0.1219E4\nstatus: 0\ndate_sale: 2020-10-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1524\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 4aa9dde8-60e9-4e67-bba1-b6f512120f08 2020-10-15 18:57:46.653002 42652 2201 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.9.45 4aa9dde8-60e9-4e67-bba1-b6f512120f08 2020-10-15 18:57:46.676248 42653 582 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.9.45 4aa9dde8-60e9-4e67-bba1-b6f512120f08 2020-10-15 18:57:46.696668 42654 3183 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 3b0e3bb5-19fa-4123-a347-24009916e361 2020-10-15 18:57:51.512781 42655 4214 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1116\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1219E4\nmove_type: '1'\nsale_id: 3183\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1524\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1219E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1524 189.186.9.45 3b0e3bb5-19fa-4123-a347-24009916e361 2020-10-15 18:57:51.534055 42656 4215 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1116\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 3160\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1517 189.186.9.45 4dcd4ff6-f6bf-443e-8ab6-5cc50216bd44 2020-10-15 18:59:28.055448 42657 3160 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.9.45 2e3d8e70-7684-45d8-92dd-9b95d0b62e8f 2020-10-15 18:59:31.888634 42658 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 01:29:06.809111000 Z\n- &1 2020-10-15 18:22:25.076731000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 19:28:03.286058497 Z\nsign_in_count:\n- 286\n- 287\n 575 \N 189.186.56.63 39d2fd8a-d5aa-4ea7-988e-aa91bec2b652 2020-10-15 19:28:03.291685 42659 18 User \N \N 18 User \N update ---\nunique_session_id:\n- E_eUyApe6zYptpvoaUSL\n- CXDtvjorzpCcp-LrAHth\n 576 \N 189.186.56.63 39d2fd8a-d5aa-4ea7-988e-aa91bec2b652 2020-10-15 19:28:03.305761 42660 3184 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1117\namount: !ruby/object:BigDecimal 18:0.1568E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1568E4\nstatus: 0\ndate_sale: 2020-10-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-740\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 22e33381-a044-4c95-b706-1557e9b64af1 2020-10-15 19:36:10.23111 42661 2017 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 189.186.56.63 22e33381-a044-4c95-b706-1557e9b64af1 2020-10-15 19:36:10.267059 42662 1773 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.56.63 22e33381-a044-4c95-b706-1557e9b64af1 2020-10-15 19:36:10.297591 42663 3184 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.56.63 dbb94c1c-5658-4f32-aba7-820ffdcdd774 2020-10-15 19:37:26.037346 42664 4216 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1117\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1568E4\nmove_type: '1'\nsale_id: 3184\ncardnumber: 2636\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-740\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-740 189.186.56.63 dbb94c1c-5658-4f32-aba7-820ffdcdd774 2020-10-15 19:37:26.063625 42665 4217 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1117\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3033\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-666 189.186.56.63 b4bdda09-91c8-46a2-b849-43ec8858b65d 2020-10-15 19:51:14.884601 42666 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 01:43:13.807767000 Z\n- &1 2020-10-15 18:48:17.928767000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 20:10:53.784295650 Z\nsign_in_count:\n- 1972\n- 1973\n 3946 \N 189.186.56.63 fd0d8c33-0226-4e49-89a3-42423390466d 2020-10-15 20:10:53.806116 42667 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eR2xaWhwgzg3XjHu6Y9K\n- smQGdCeK_yEnSdT2eJj4\n 3947 \N 189.186.56.63 fd0d8c33-0226-4e49-89a3-42423390466d 2020-10-15 20:10:53.832576 42668 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 18:22:25.076731000 Z\n- &1 2020-10-15 19:28:03.286058000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 20:44:25.272016058 Z\nsign_in_count:\n- 287\n- 288\n 577 \N 189.186.56.63 56691425-df22-4de3-aa42-b97cb51dde0c 2020-10-15 20:44:25.279629 42669 18 User \N \N 18 User \N update ---\nunique_session_id:\n- CXDtvjorzpCcp-LrAHth\n- Y8y7aaAUyHfpHKkwzUxG\n 578 \N 189.186.56.63 56691425-df22-4de3-aa42-b97cb51dde0c 2020-10-15 20:44:25.298057 42670 4218 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1117\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 2931\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4555'\n 1 movimiento de efectivo por venta con folio PV3-V-621 189.186.56.63 7ceaeda8-86e6-4a6d-8a12-74d701f83059 2020-10-15 20:45:00.906241 42671 2931 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.56.63 194fd03c-2fc3-493f-8ed5-cea3c1752f81 2020-10-15 20:45:02.363469 42672 3185 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1117\namount: !ruby/object:BigDecimal 18:0.149E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.149E3\nstatus: 0\ndate_sale: 2020-10-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-741\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 4d944404-37c2-466c-94fb-53910cca6839 2020-10-15 21:19:10.035136 42673 2175 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.56.63 4d944404-37c2-466c-94fb-53910cca6839 2020-10-15 21:19:10.072055 42674 3185 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.56.63 2d4ffba3-cf2c-41bd-9cad-a5af07fac65c 2020-10-15 21:20:35.350678 42675 4219 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1117\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.149E3\nmove_type: '1'\nsale_id: 3185\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-741\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.149E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-741 189.186.56.63 2d4ffba3-cf2c-41bd-9cad-a5af07fac65c 2020-10-15 21:20:35.373579 42676 3186 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1117\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.5E3\nstatus: 0\ndate_sale: 2020-10-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-742\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 5adb6185-3f21-45d7-adc1-9ca33c0d2519 2020-10-15 21:46:12.650133 42677 1924 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.56.63 5adb6185-3f21-45d7-adc1-9ca33c0d2519 2020-10-15 21:46:12.678378 42678 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-14 21:25:53.681655000 Z\n- &1 2020-10-15 18:16:21.184954000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 21:53:17.185464586 Z\nsign_in_count:\n- 274\n- 275\n 550 \N 189.186.9.45 a11e78f9-8fad-45c1-b657-776037230026 2020-10-15 21:53:17.192653 42679 1 User \N \N 1 User \N update ---\nunique_session_id:\n- vy1R4CNkJnWz9VJyb6F6\n- yyZx6Xj9-iDZDbAyGo4Q\n 551 \N 189.186.9.45 a11e78f9-8fad-45c1-b657-776037230026 2020-10-15 21:53:17.209948 42680 3186 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.56.63 eaff5048-cf18-47d5-a1e2-f1682c6fbef7 2020-10-15 21:54:56.921871 42681 4220 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1117\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 3186\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-742\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-742 189.186.56.63 eaff5048-cf18-47d5-a1e2-f1682c6fbef7 2020-10-15 21:54:56.943145 42682 3187 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1117\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-10-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-743\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 aa60ec7f-f907-4fe6-b44d-d429e54adde4 2020-10-15 21:55:09.484461 42683 2341 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 189.186.56.63 aa60ec7f-f907-4fe6-b44d-d429e54adde4 2020-10-15 21:55:09.509238 42684 3187 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.56.63 64193f14-bea1-4018-bc44-e35354945a1a 2020-10-15 21:55:27.186881 42685 4221 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1117\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 3187\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-743\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-743 189.186.56.63 64193f14-bea1-4018-bc44-e35354945a1a 2020-10-15 21:55:27.209666 42709 2663 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.56.63 db20466b-ab53-4b7b-8302-6162d98fff0d 2020-10-15 22:35:34.526581 42686 3188 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1116\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-10-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1525\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 9d05b885-3194-4bf6-93a6-2d76d3a3c27b 2020-10-15 22:02:33.150987 42687 661 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.9.45 9d05b885-3194-4bf6-93a6-2d76d3a3c27b 2020-10-15 22:02:33.180643 42688 3188 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 f0e2db1a-c142-48c2-88a9-61985b87493f 2020-10-15 22:03:00.737183 42689 4222 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1116\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 3188\ncardnumber: 9142\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1525\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1525 189.186.9.45 f0e2db1a-c142-48c2-88a9-61985b87493f 2020-10-15 22:03:00.75978 42690 4223 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1116\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.879E3\nmove_type: '1'\nsale_id: 3188\ncardnumber: 687\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1525\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1525 189.186.9.45 21575360-baa8-4263-9e8b-b151b86ad107 2020-10-15 22:03:37.987899 42691 4224 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1116\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.22E3\nmove_type: '1'\nsale_id: 3188\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1525\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.22E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1525 189.186.9.45 20599f35-e7b1-4c30-b8fe-a44b3a8067ae 2020-10-15 22:04:21.922209 42692 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 18:16:21.184954000 Z\n- &1 2020-10-15 21:53:17.185464000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 22:13:58.247530598 Z\nsign_in_count:\n- 275\n- 276\n 552 \N 189.186.9.45 53feae46-358d-4457-bf4a-c405648ef7ec 2020-10-15 22:13:58.253724 42693 1 User \N \N 1 User \N update ---\nunique_session_id:\n- yyZx6Xj9-iDZDbAyGo4Q\n- JckUNdG8k1YY3HMGXz_L\n 553 \N 189.186.9.45 53feae46-358d-4457-bf4a-c405648ef7ec 2020-10-15 22:13:58.26915 42694 3189 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1116\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-10-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1526\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 af6f2132-5f30-4bc0-89db-4832b70d54ba 2020-10-15 22:24:39.965835 42695 1858 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.9.45 af6f2132-5f30-4bc0-89db-4832b70d54ba 2020-10-15 22:24:40.003856 42696 3189 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 8a2f2dd5-628d-4f08-911e-16ef31ca5403 2020-10-15 22:25:58.687089 42697 4225 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1116\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 3189\ncardnumber: 9894\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1526\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1526 189.186.9.45 8a2f2dd5-628d-4f08-911e-16ef31ca5403 2020-10-15 22:25:58.710402 42698 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 18:48:17.928767000 Z\n- &1 2020-10-15 20:10:53.784295000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 22:27:04.923863784 Z\nsign_in_count:\n- 1973\n- 1974\n 3948 \N 189.186.56.63 3342b5eb-9418-4645-935a-c38f1bc68241 2020-10-15 22:27:04.931125 42699 4 User \N \N 4 User \N update ---\nunique_session_id:\n- smQGdCeK_yEnSdT2eJj4\n- Agb1iCgroJ8ps37VXss-\n 3949 \N 189.186.56.63 3342b5eb-9418-4645-935a-c38f1bc68241 2020-10-15 22:27:04.950859 42700 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 19:28:03.286058000 Z\n- &1 2020-10-15 20:44:25.272016000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 22:30:33.150109220 Z\nsign_in_count:\n- 288\n- 289\n 579 \N 189.186.56.63 47b59d5d-df8f-4f2d-b44c-775dca1f12bf 2020-10-15 22:30:33.15888 42701 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Y8y7aaAUyHfpHKkwzUxG\n- LsJUY3YQp8pQfTjd95Y7\n 580 \N 189.186.56.63 47b59d5d-df8f-4f2d-b44c-775dca1f12bf 2020-10-15 22:30:33.176437 42702 4226 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 965\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.17E4\nmove_type: '1'\nsale_id: 2604\ncardnumber: 1555\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '5221'\n 1 \N 189.186.56.63 ca7657d7-7551-411e-898b-fee200ce4ea7 2020-10-15 22:32:19.859403 42703 2604 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.56.63 ca7657d7-7551-411e-898b-fee200ce4ea7 2020-10-15 22:32:19.885357 42704 4226 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 965\n- 1117\n 2 movimiento de efectivo por venta con folio PV3-V-435 189.186.56.63 ca7657d7-7551-411e-898b-fee200ce4ea7 2020-10-15 22:32:19.903201 42705 4227 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1115\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.54E3\nmove_type: '1'\nsale_id: 3179\ncardnumber: 1225\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.56.63 b29fb7fc-f14b-4cf6-90c9-1679fb631421 2020-10-15 22:34:08.420911 42706 3179 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.56.63 b29fb7fc-f14b-4cf6-90c9-1679fb631421 2020-10-15 22:34:08.451624 42707 4227 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 1115\n- 1117\n 2 movimiento de efectivo por venta con folio PV3-V-737 189.186.56.63 b29fb7fc-f14b-4cf6-90c9-1679fb631421 2020-10-15 22:34:08.470654 42708 4228 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 988\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2663\ncardnumber: 1226\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.56.63 db20466b-ab53-4b7b-8302-6162d98fff0d 2020-10-15 22:35:34.503132 42710 4228 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 988\n- 1117\n 2 movimiento de efectivo por venta con folio PV3-V-472 189.186.56.63 db20466b-ab53-4b7b-8302-6162d98fff0d 2020-10-15 22:35:34.540961 42711 4229 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 939\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 2517\ncardnumber: 1212\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.56.63 e079128b-ead0-4d2c-8de5-530a17e48ee5 2020-10-15 22:37:29.293366 42712 2517 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.56.63 e079128b-ead0-4d2c-8de5-530a17e48ee5 2020-10-15 22:37:29.318811 42713 4229 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 939\n- 1117\n 2 movimiento de efectivo por venta con folio PV3-V-375 189.186.56.63 e079128b-ead0-4d2c-8de5-530a17e48ee5 2020-10-15 22:37:29.332715 42714 4230 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1086\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.8E3\nmove_type: '1'\nsale_id: 3067\ncardnumber: 1222\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.56.63 af71e635-31f1-40e6-9967-eb9553b75159 2020-10-15 22:43:09.151074 42715 3067 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.56.63 af71e635-31f1-40e6-9967-eb9553b75159 2020-10-15 22:43:09.183673 42716 4230 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 1086\n- 1117\n 2 movimiento de efectivo por venta con folio PV1-V-1467 189.186.56.63 af71e635-31f1-40e6-9967-eb9553b75159 2020-10-15 22:43:09.201659 42717 3190 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1117\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-10-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-744\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 55a622a5-fd0f-4a20-85d3-0db66ea79077 2020-10-15 23:16:47.854098 42718 2214 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.56.63 55a622a5-fd0f-4a20-85d3-0db66ea79077 2020-10-15 23:16:47.885504 42719 3190 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.56.63 4e8410ea-15ff-4da4-84e7-432bd63216ec 2020-10-15 23:16:58.411351 42720 4231 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1117\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3190\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-744\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '2222'\n 1 movimiento de efectivo por venta con folio PV3-V-744 189.186.56.63 4e8410ea-15ff-4da4-84e7-432bd63216ec 2020-10-15 23:16:58.433481 42721 3190 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-744 cancelada. 189.186.56.63 662013bf-ac3b-4867-9e89-f04edb893bf0 2020-10-15 23:17:15.190918 42722 4231 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1117\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 3190\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-744\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '2222'\n 2 \N 189.186.56.63 662013bf-ac3b-4867-9e89-f04edb893bf0 2020-10-15 23:17:15.221354 42723 2214 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.56.63 662013bf-ac3b-4867-9e89-f04edb893bf0 2020-10-15 23:17:15.255498 42724 3191 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1117\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-10-15\nsaletype: 1\nseller_id: 29\nsale_code: PV3-V-745\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 17c95823-07ac-4496-bd1c-df976f3c3035 2020-10-15 23:17:35.258844 42725 2214 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.56.63 17c95823-07ac-4496-bd1c-df976f3c3035 2020-10-15 23:17:35.284849 42726 3191 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.56.63 95db9a6f-5f56-42a6-bdae-ebb130fb2646 2020-10-15 23:17:45.660464 42727 4232 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1117\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3191\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-745\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1225'\n 1 movimiento de efectivo por venta con folio PV3-V-745 189.186.56.63 95db9a6f-5f56-42a6-bdae-ebb130fb2646 2020-10-15 23:17:45.683602 42728 3192 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1117\namount: !ruby/object:BigDecimal 18:0.101538E4\ntax: !ruby/object:BigDecimal 18:0.8262E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1098E4\nstatus: 0\ndate_sale: 2020-10-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-746\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 fb603972-d27a-4ae6-b37b-05269b1f1f41 2020-10-15 23:19:39.03312 42729 1844 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.56.63 fb603972-d27a-4ae6-b37b-05269b1f1f41 2020-10-15 23:19:39.058792 42730 2280 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.56.63 fb603972-d27a-4ae6-b37b-05269b1f1f41 2020-10-15 23:19:39.08305 42731 3192 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.56.63 41e88386-a211-4de0-ac71-c5cbf450848d 2020-10-15 23:20:13.351058 42732 4233 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1117\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1098E4\nmove_type: '1'\nsale_id: 3192\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-746\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-746 189.186.56.63 41e88386-a211-4de0-ac71-c5cbf450848d 2020-10-15 23:20:13.38001 42733 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 20:44:25.272016000 Z\n- &1 2020-10-15 22:30:33.150109000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 23:37:24.491853547 Z\nsign_in_count:\n- 289\n- 290\n 581 \N 189.186.56.63 bfac0189-9d1c-4d95-ac02-c2442976ffd7 2020-10-15 23:37:24.498238 42734 18 User \N \N 18 User \N update ---\nunique_session_id:\n- LsJUY3YQp8pQfTjd95Y7\n- o8SYRNDecyEjADjmw13M\n 582 \N 189.186.56.63 bfac0189-9d1c-4d95-ac02-c2442976ffd7 2020-10-15 23:37:24.512494 42735 4234 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1117\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 3040\ncardnumber: 1226\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-670 189.186.56.63 e8269565-5928-4ad1-a722-2f35cb1ed894 2020-10-15 23:39:18.773395 42736 3040 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.56.63 a7a28be9-397e-4fab-861a-8e708f324b7f 2020-10-15 23:39:20.610678 42737 412 Customer \N \N 18 User \N create ---\nnick_name: ANA ICELA\nphone: "(667) 405-8972"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANA ICELA fue registrado. 189.186.56.63 a3b8d8c2-bab9-4f90-928d-3dc2680a0269 2020-10-15 23:47:03.160169 42738 3193 Sale \N \N 18 User \N create ---\ncustomer_id: 412\nuser_id: 18\nopen_cash_register_id: 1117\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-10-15\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-747\nexpiration_date: 2020-11-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 5c0c763e-6913-4e15-b4a0-32395a1fe227 2020-10-15 23:47:13.275755 42739 1832 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 18 \N 189.186.56.63 5c0c763e-6913-4e15-b4a0-32395a1fe227 2020-10-15 23:47:13.302477 42740 4235 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1117\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3193\ncardnumber: 1202\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-747\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-747 189.186.56.63 1466b0b2-5122-4108-ba87-8daaea9544a8 2020-10-15 23:47:51.803429 42741 3193 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.56.63 1236027d-21cd-4514-8ab0-56f489619158 2020-10-15 23:47:54.149791 42742 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 20:10:53.784295000 Z\n- &1 2020-10-15 22:27:04.923863000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-15 23:58:38.298139978 Z\nsign_in_count:\n- 1974\n- 1975\n 3950 \N 189.186.56.63 aff14692-01c0-4538-897a-dbda852e76ab 2020-10-15 23:58:38.304064 42743 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Agb1iCgroJ8ps37VXss-\n- "-yvizEx596rSYxVa-FJX"\n 3951 \N 189.186.56.63 aff14692-01c0-4538-897a-dbda852e76ab 2020-10-15 23:58:38.321667 42744 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 22:30:33.150109000 Z\n- &1 2020-10-15 23:37:24.491853000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-16 00:14:45.137045666 Z\nsign_in_count:\n- 290\n- 291\n 583 \N 189.186.56.63 20e08694-4f03-4958-9c2d-1a073739d764 2020-10-16 00:14:45.143593 42745 18 User \N \N 18 User \N update ---\nunique_session_id:\n- o8SYRNDecyEjADjmw13M\n- C9sY5fg8n8-nG5s_BE3h\n 584 \N 189.186.56.63 20e08694-4f03-4958-9c2d-1a073739d764 2020-10-16 00:14:45.159237 42746 3194 Sale \N \N 2 User \N create ---\ncustomer_id: 385\nuser_id: 2\nopen_cash_register_id: 1116\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2020-10-15\nsaletype: 2\nseller_id: 30\nsale_code: PV1-V-1527\nexpiration_date: 2020-11-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 06e5912e-2bf1-459e-8f76-7332b1a831ac 2020-10-16 00:32:58.91657 42747 2223 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.9.45 06e5912e-2bf1-459e-8f76-7332b1a831ac 2020-10-16 00:32:58.963317 42748 3194 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1527 cancelada. 189.186.9.45 d8252df6-f230-470d-98e6-01178c5895f8 2020-10-16 00:33:36.613509 42749 2223 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.9.45 d8252df6-f230-470d-98e6-01178c5895f8 2020-10-16 00:33:36.636599 42750 3195 Sale \N \N 2 User \N create ---\ncustomer_id: 385\nuser_id: 2\nopen_cash_register_id: 1116\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2020-10-15\nsaletype: 2\nseller_id: 30\nsale_code: PV1-V-1528\nexpiration_date: 2020-11-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 d2fe8db9-d56c-4008-9e2e-d1495e98edde 2020-10-16 00:35:32.141281 42751 2223 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.9.45 d2fe8db9-d56c-4008-9e2e-d1495e98edde 2020-10-16 00:35:32.171404 42752 4236 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1116\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3195\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1528\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1528 189.186.9.45 6e56c075-f6bb-4b62-8b72-8a29a84789f3 2020-10-16 00:36:13.575579 42753 3195 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.9.45 82c84050-9541-4361-a1e4-b4d390cb530d 2020-10-16 00:36:16.050182 42754 1141 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1116\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5715E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.31E4\ncash_fund: !ruby/object:BigDecimal 18:0.87E3\nphysical_cash: !ruby/object:BigDecimal 18:0.397E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.9.45 ad84870e-0e9c-4ecb-8f94-ca872b0af0aa 2020-10-16 00:51:44.107486 42755 1116 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.9.45 ad84870e-0e9c-4ecb-8f94-ca872b0af0aa 2020-10-16 00:51:44.123375 42756 3196 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1117\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-10-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-748\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 6b0cc214-eadb-48e1-b6ce-d09e5a064280 2020-10-16 01:22:29.233427 42757 2282 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.56.63 6b0cc214-eadb-48e1-b6ce-d09e5a064280 2020-10-16 01:22:29.261738 42758 3196 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.56.63 7bafe45e-dcce-4350-95d1-b12f014bfaee 2020-10-16 01:22:45.867223 42759 4237 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1117\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 3196\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-748\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-748 189.186.56.63 7bafe45e-dcce-4350-95d1-b12f014bfaee 2020-10-16 01:22:45.889779 42760 2919 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV3-V-613 cancelada. 189.186.56.63 f5722c23-3d1d-4092-b387-045756b2c97a 2020-10-16 01:34:56.708727 42761 2214 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 189.186.56.63 f5722c23-3d1d-4092-b387-045756b2c97a 2020-10-16 01:34:56.732269 42762 2216 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.56.63 f5722c23-3d1d-4092-b387-045756b2c97a 2020-10-16 01:34:56.758943 42763 3197 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1117\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-10-15\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-749\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 e6ee2423-5d18-4c44-bcef-e64b5e6245e8 2020-10-16 01:35:16.822162 42764 2214 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 189.186.56.63 e6ee2423-5d18-4c44-bcef-e64b5e6245e8 2020-10-16 01:35:16.849114 42765 3197 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.56.63 5892b809-c954-4f3f-87aa-57244ca08c0f 2020-10-16 01:35:28.559856 42766 4238 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1117\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3197\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-749\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '22225'\n 1 movimiento de efectivo por venta con folio PV3-V-749 189.186.56.63 5892b809-c954-4f3f-87aa-57244ca08c0f 2020-10-16 01:35:28.585083 42767 4239 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1117\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1067E4\nmove_type: '1'\nsale_id: 3073\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '12233'\n 1 movimiento de efectivo por venta con folio PV3-V-685 189.186.56.63 a03a2e42-b00e-4471-9f66-d36d5e5dac81 2020-10-16 02:04:55.548918 42768 3073 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.56.63 4d699fdf-b89d-4c01-8cf4-ecdae36c8ff5 2020-10-16 02:04:56.743765 42769 4240 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1086\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.534E3\nmove_type: '1'\nsale_id: 3067\ncardnumber: 1223\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.56.63 c9ebdb73-4b12-463e-8b53-08924ab4615d 2020-10-16 02:12:28.841302 42770 4240 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 1086\n- 1117\n 2 movimiento de efectivo por venta con folio PV1-V-1467 189.186.56.63 c9ebdb73-4b12-463e-8b53-08924ab4615d 2020-10-16 02:12:28.870249 42771 1142 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1117\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.18879E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.52E4\ncash_fund: !ruby/object:BigDecimal 18:0.98E3\nphysical_cash: !ruby/object:BigDecimal 18:0.618E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.56.63 de986a70-460d-4780-abda-4399ceaf164a 2020-10-16 02:14:58.593046 42772 1117 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.56.63 de986a70-460d-4780-abda-4399ceaf164a 2020-10-16 02:14:58.614251 42773 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 21:53:17.185464000 Z\n- &1 2020-10-15 22:13:58.247530000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-16 03:09:52.580555610 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945668\n mask_addr: 4294967295\nsign_in_count:\n- 276\n- 277\n 554 \N 200.68.179.196 03838853-40f0-4107-971e-7afe3028e2be 2020-10-16 03:09:52.588121 42774 1 User \N \N 1 User \N update ---\nunique_session_id:\n- JckUNdG8k1YY3HMGXz_L\n- jU9f6DYxdwxHcyAvbeMN\n 555 \N 200.68.179.196 03838853-40f0-4107-971e-7afe3028e2be 2020-10-16 03:09:52.606033 42775 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 22:27:04.923863000 Z\n- &1 2020-10-15 23:58:38.298139000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-16 04:09:22.375214338 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097919\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984536000\n mask_addr: 4294967295\nsign_in_count:\n- 1975\n- 1976\n 3952 \N 177.228.103.192 2435c640-7312-407e-8a0c-e719f80e9546 2020-10-16 04:09:22.406029 42776 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-yvizEx596rSYxVa-FJX"\n- ao3h4v5hZ4qiK1s2NoXP\n 3953 \N 177.228.103.192 2435c640-7312-407e-8a0c-e719f80e9546 2020-10-16 04:09:22.436118 42777 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-10-09 18:38:20.349424000 Z\n- &1 2020-10-10 19:35:42.545609000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-16 05:41:15.032381874 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084645\n mask_addr: 4294967295\nsign_in_count:\n- 311\n- 312\n 625 \N 189.186.4.101 fcf0c71e-23a6-47ec-96d5-67162f3ab618 2020-10-16 05:41:15.038966 42778 21 User \N \N 21 User \N update ---\nunique_session_id:\n- zhoTAZpxzgghtv-29mHB\n- 1cdknTC56jrdT42r_rdU\n 626 \N 189.186.4.101 fcf0c71e-23a6-47ec-96d5-67162f3ab618 2020-10-16 05:41:15.056266 42779 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-14 16:42:30.658570000 Z\n- &1 2020-10-15 16:41:25.512585000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-16 16:28:21.238536959 Z\nsign_in_count:\n- 664\n- 665\n 1333 \N 189.186.9.45 6c475db7-e6b6-4229-a0d0-4fe8565ae8c6 2020-10-16 16:28:21.277996 42780 2 User \N \N 2 User \N update ---\nunique_session_id:\n- HQtWZfqhvjEFutpwZSXn\n- JuyoPZFsC-MCin8kyvpj\n 1334 \N 189.186.9.45 6c475db7-e6b6-4229-a0d0-4fe8565ae8c6 2020-10-16 16:28:21.313257 42781 1118 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.87E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 870.0 189.186.9.45 d2ad5c19-3ece-4aa8-8f83-f4db7eb07ff7 2020-10-16 16:28:35.104676 42803 2044 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.56.63 2d75edee-25ea-45be-a401-b5d331935c3e 2020-10-16 21:11:53.292877 42782 4241 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1118\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2879\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1372 189.186.9.45 10711d5b-4342-4e88-bef0-d4f1d0a0a2ba 2020-10-16 16:29:37.073748 42783 3198 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1118\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-10-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1529\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 04a132e2-39a7-429b-b68b-26443b3b0187 2020-10-16 18:01:14.290727 42784 2262 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.9.45 04a132e2-39a7-429b-b68b-26443b3b0187 2020-10-16 18:01:14.336837 42785 3198 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 607f2b83-c074-4741-a532-259f73846ba5 2020-10-16 18:01:21.800745 42786 4242 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1118\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 3198\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1529\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1529 189.186.9.45 607f2b83-c074-4741-a532-259f73846ba5 2020-10-16 18:01:21.834463 42787 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 23:37:24.491853000 Z\n- &1 2020-10-16 00:14:45.137045000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-16 18:47:31.706405376 Z\nsign_in_count:\n- 291\n- 292\n 585 \N 189.186.56.63 1125d525-e07a-496d-ab9d-3fd68cc5a41e 2020-10-16 18:47:31.716285 42788 18 User \N \N 18 User \N update ---\nunique_session_id:\n- C9sY5fg8n8-nG5s_BE3h\n- 2ijSgAHz8WbrTgyFJ_hD\n 586 \N 189.186.56.63 1125d525-e07a-496d-ab9d-3fd68cc5a41e 2020-10-16 18:47:31.735261 42789 1119 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.98E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 980.0 189.186.56.63 a0ac5098-fab4-492f-9085-cc57bfbbcda1 2020-10-16 18:47:45.591786 42790 3199 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1119\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-10-16\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-750\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 d445eda2-3bdc-4f37-a459-a36739566315 2020-10-16 18:48:15.567821 42791 2031 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.56.63 d445eda2-3bdc-4f37-a459-a36739566315 2020-10-16 18:48:15.625252 42792 3199 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.56.63 40e24f82-6372-409f-8795-bbddbc2c9d13 2020-10-16 18:48:33.143432 42793 4243 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1119\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3199\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-750\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1399E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-750 189.186.56.63 40e24f82-6372-409f-8795-bbddbc2c9d13 2020-10-16 18:48:33.16602 42794 343 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1118\nquantity: !ruby/object:BigDecimal 18:0.18E3\nstatus: 1\nobservations: 6 horas extras Rocio\nexpense_date: 2020-10-16\nexpense_code: PV1-E-238\n 1 Egreso por 180.0 registrado 189.186.9.45 33ffd7d1-f76c-4b60-afac-481bb4126c9a 2020-10-16 19:37:43.455684 42795 4244 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1118\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.18E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 343\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.9.45 33ffd7d1-f76c-4b60-afac-481bb4126c9a 2020-10-16 19:37:43.477663 42796 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 22:13:58.247530000 Z\n- &1 2020-10-16 03:09:52.580555000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-16 19:49:51.007207984 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945668\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945668\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\nsign_in_count:\n- 277\n- 278\n 556 \N 189.186.9.45 7bb48c18-4c1e-4737-9a75-69fad8d0c2e3 2020-10-16 19:49:51.020899 42797 1 User \N \N 1 User \N update ---\nunique_session_id:\n- jU9f6DYxdwxHcyAvbeMN\n- t7nMY8J9y8j_sGJ7yFg2\n 557 \N 189.186.9.45 7bb48c18-4c1e-4737-9a75-69fad8d0c2e3 2020-10-16 19:49:51.050202 42798 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 23:58:38.298139000 Z\n- &1 2020-10-16 04:09:22.375214000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-16 20:15:01.053211525 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097919\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984536000\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984536000\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097919\n mask_addr: 4294967295\nsign_in_count:\n- 1976\n- 1977\n 3954 \N 189.186.56.63 78589040-1e8c-431b-a8f8-fd601dd7cb02 2020-10-16 20:15:01.070282 42799 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ao3h4v5hZ4qiK1s2NoXP\n- rGTSJ4DiLt_XtRmVs-un\n 3955 \N 189.186.56.63 78589040-1e8c-431b-a8f8-fd601dd7cb02 2020-10-16 20:15:01.09262 42800 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-16 00:14:45.137045000 Z\n- &1 2020-10-16 18:47:31.706405000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-16 21:10:10.298363954 Z\nsign_in_count:\n- 292\n- 293\n 587 \N 189.186.56.63 c8067c86-6735-4bfd-9d8a-c5ce6bdaafd9 2020-10-16 21:10:10.306346 42801 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 2ijSgAHz8WbrTgyFJ_hD\n- 9xwZsyUoW8qYHEbAfayR\n 588 \N 189.186.56.63 c8067c86-6735-4bfd-9d8a-c5ce6bdaafd9 2020-10-16 21:10:10.321178 42802 3200 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1119\namount: !ruby/object:BigDecimal 18:0.3298E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3298E4\nstatus: 0\ndate_sale: 2020-10-16\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-751\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 2d75edee-25ea-45be-a401-b5d331935c3e 2020-10-16 21:11:53.25718 42804 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 75 \N 189.186.56.63 2d75edee-25ea-45be-a401-b5d331935c3e 2020-10-16 21:11:53.328556 42805 3200 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.56.63 3d77333c-6e06-4eed-a2a3-d69af82a18b5 2020-10-16 21:12:07.431507 42806 4245 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1119\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3298E4\nmove_type: '1'\nsale_id: 3200\ncardnumber: 2225\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-751\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-751 189.186.56.63 3d77333c-6e06-4eed-a2a3-d69af82a18b5 2020-10-16 21:12:07.458633 42807 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-16 03:09:52.580555000 Z\n- &1 2020-10-16 19:49:51.007207000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-16 21:31:27.040698973 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945668\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\nsign_in_count:\n- 278\n- 279\n 558 \N 189.186.9.45 778b22e9-3f4d-40ff-ab22-c859c5c6767a 2020-10-16 21:31:27.073398 42808 1 User \N \N 1 User \N update ---\nunique_session_id:\n- t7nMY8J9y8j_sGJ7yFg2\n- uZ7qZSn1nRqrMxCskV_N\n 559 \N 189.186.9.45 778b22e9-3f4d-40ff-ab22-c859c5c6767a 2020-10-16 21:31:27.102452 42809 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-16 04:09:22.375214000 Z\n- &1 2020-10-16 20:15:01.053211000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-16 21:43:48.667958782 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984536000\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097919\n mask_addr: 4294967295\nsign_in_count:\n- 1977\n- 1978\n 3956 \N 189.186.56.63 8dca8809-ccd1-4ad5-a62f-f9392535b44e 2020-10-16 21:43:48.675267 42810 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rGTSJ4DiLt_XtRmVs-un\n- qyWBU-3iJuk19ngxdQtK\n 3957 \N 189.186.56.63 8dca8809-ccd1-4ad5-a62f-f9392535b44e 2020-10-16 21:43:48.694538 42811 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-16 18:47:31.706405000 Z\n- &1 2020-10-16 21:10:10.298363000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-16 23:43:11.760703055 Z\nsign_in_count:\n- 293\n- 294\n 589 \N 189.186.56.63 1db84b39-7d6b-4b3f-8d4b-f77985a97457 2020-10-16 23:43:11.769157 42812 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 9xwZsyUoW8qYHEbAfayR\n- hzzC_c6auae9zYiYhk6p\n 590 \N 189.186.56.63 1db84b39-7d6b-4b3f-8d4b-f77985a97457 2020-10-16 23:43:11.789131 42813 3201 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1119\namount: !ruby/object:BigDecimal 18:0.369E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.69E2\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2020-10-16\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-752\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 6c69a28b-2fe2-417a-be8d-f6172d1bcb81 2020-10-16 23:45:13.468635 42814 2267 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.56.63 6c69a28b-2fe2-417a-be8d-f6172d1bcb81 2020-10-16 23:45:13.499136 42815 3201 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.56.63 80e02d6e-282a-457e-94f8-31b33036b63e 2020-10-16 23:45:17.800707 42816 4246 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1119\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 3201\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-752\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-752 189.186.56.63 80e02d6e-282a-457e-94f8-31b33036b63e 2020-10-16 23:45:17.824416 42817 4247 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1119\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 3181\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-738 189.186.56.63 6ee7db77-bf94-4c06-bd4c-aa49bc06ff93 2020-10-16 23:45:50.217939 42818 3181 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.56.63 bfe37a4f-5d48-4554-a7a2-99a144c6a92e 2020-10-16 23:45:51.231589 42819 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-16 20:15:01.053211000 Z\n- &1 2020-10-16 21:43:48.667958000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 00:07:08.453963936 Z\nsign_in_count:\n- 1978\n- 1979\n 3958 \N 189.186.56.63 391516c5-b588-42d2-b822-04ff205e909b 2020-10-17 00:07:08.459424 42820 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qyWBU-3iJuk19ngxdQtK\n- oKyXsUsqkatvfFCLr87k\n 3959 \N 189.186.56.63 391516c5-b588-42d2-b822-04ff205e909b 2020-10-17 00:07:08.476286 42821 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-16 21:10:10.298363000 Z\n- &1 2020-10-16 23:43:11.760703000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 00:10:06.953700727 Z\nsign_in_count:\n- 294\n- 295\n 591 \N 189.186.56.63 71035bf3-845b-4e60-8fcf-6610be70dbaf 2020-10-17 00:10:06.960935 42822 18 User \N \N 18 User \N update ---\nunique_session_id:\n- hzzC_c6auae9zYiYhk6p\n- 7bSX6-McD4FAshtgMqsz\n 592 \N 189.186.56.63 71035bf3-845b-4e60-8fcf-6610be70dbaf 2020-10-17 00:10:06.978253 42823 4248 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1119\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 3039\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.399E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-669 189.186.56.63 8ce9c62b-9493-488d-af92-266c92540ec0 2020-10-17 00:12:17.921287 42824 3039 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.56.63 8141a583-1db5-4b92-80eb-d0925408d0e0 2020-10-17 00:12:19.022694 42825 3202 Sale \N \N 18 User \N create ---\ncustomer_id: 383\nuser_id: 18\nopen_cash_register_id: 1119\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-10-16\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-753\nexpiration_date: 2020-11-20\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 a09b678c-ca24-45bf-8819-435e898f94eb 2020-10-17 00:15:14.084564 42826 2050 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.56.63 a09b678c-ca24-45bf-8819-435e898f94eb 2020-10-17 00:15:14.120914 42871 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 77Jr8mzgV8tjf9PrvqkZ\n- T8F-HxzZu87qz3VsQyPp\n 563 \N 189.186.56.63 8b1dbc13-2edf-4a9c-bfb9-a95026b7c2a6 2020-10-17 18:59:35.657292 42898 1761 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.9.45 eca44d4f-40d5-4f3f-b97c-90822bd2dd22 2020-10-17 20:15:17.76179 42827 4249 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1119\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3202\ncardnumber: 4444\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-753\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-753 189.186.56.63 b833af58-4c6f-4824-803e-67256d90fd42 2020-10-17 00:15:59.80779 42828 3202 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.56.63 b4a2e1ce-7152-4432-98c6-fbec15d9b060 2020-10-17 00:16:02.962208 42829 3203 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1119\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-10-16\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-754\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 c6792668-bbe5-4c44-98e7-8d3dff4b2bb3 2020-10-17 00:38:30.15847 42830 2017 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 189.186.56.63 c6792668-bbe5-4c44-98e7-8d3dff4b2bb3 2020-10-17 00:38:30.193438 42831 3203 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-754 cancelada. 189.186.56.63 58f49e1d-7786-4807-85cc-110042d31315 2020-10-17 00:40:41.888075 42832 2017 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 13 \N 189.186.56.63 58f49e1d-7786-4807-85cc-110042d31315 2020-10-17 00:40:41.915183 42833 3204 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1119\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-10-16\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-755\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 72d4f496-6eb2-458a-a3f5-bb68ddefa933 2020-10-17 00:41:07.497623 42834 2017 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 14 \N 189.186.56.63 72d4f496-6eb2-458a-a3f5-bb68ddefa933 2020-10-17 00:41:07.522929 42835 3204 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.56.63 1667e97f-5365-4c49-94c9-1410a6ba9264 2020-10-17 00:41:29.243662 42836 4250 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1119\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3204\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-755\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-755 189.186.56.63 1667e97f-5365-4c49-94c9-1410a6ba9264 2020-10-17 00:41:29.26708 42837 1143 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1119\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.8194E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.485E4\ncash_fund: !ruby/object:BigDecimal 18:0.726E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5576E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.56.63 458285ce-51c4-4495-853f-2a6430da4ef1 2020-10-17 00:57:17.302369 42838 1119 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.56.63 458285ce-51c4-4495-853f-2a6430da4ef1 2020-10-17 00:57:17.316736 42839 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-16 21:43:48.667958000 Z\n- &1 2020-10-17 00:07:08.453963000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 01:19:36.272382822 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097919\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946356\n mask_addr: 4294967295\nsign_in_count:\n- 1979\n- 1980\n 3960 \N 200.68.182.116 f72317cb-58f1-49d9-aea3-5e8a87c6bc1c 2020-10-17 01:19:36.291496 42840 4 User \N \N 4 User \N update ---\nunique_session_id:\n- oKyXsUsqkatvfFCLr87k\n- xFb1Y1hva_5vL48jegxz\n 3961 \N 200.68.182.116 f72317cb-58f1-49d9-aea3-5e8a87c6bc1c 2020-10-17 01:19:36.313886 42841 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 00:07:08.453963000 Z\n- &1 2020-10-17 01:19:36.272382000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 01:19:42.493525139 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097919\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946356\n mask_addr: 4294967295\nsign_in_count:\n- 1980\n- 1981\n 3962 \N 200.68.182.116 3b72f08f-4c5b-4f51-a9ea-0c8f7e6099cd 2020-10-17 01:19:42.500181 42842 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xFb1Y1hva_5vL48jegxz\n- H7xS2UpXNST4oLt2qp-x\n 3963 \N 200.68.182.116 3b72f08f-4c5b-4f51-a9ea-0c8f7e6099cd 2020-10-17 01:19:42.517421 42843 1144 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1118\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1099E4\namount_out: !ruby/object:BigDecimal 18:0.18E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.589E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1789E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.9.45 583af0dc-7b31-4321-bf7b-fb883735dcfc 2020-10-17 01:24:52.05704 42844 1118 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.9.45 583af0dc-7b31-4321-bf7b-fb883735dcfc 2020-10-17 01:24:52.072347 42845 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-10-10 19:35:42.545609000 Z\n- &1 2020-10-16 05:41:15.032381000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 16:45:43.086216681 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084645\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084645\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097919\n mask_addr: 4294967295\nsign_in_count:\n- 312\n- 313\n 627 \N 189.186.56.63 f4c62025-92b6-41db-95ab-d93973077193 2020-10-17 16:45:43.117395 42846 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 1cdknTC56jrdT42r_rdU\n- RM8YPzNNejKNHWFUjDZ5\n 628 \N 189.186.56.63 f4c62025-92b6-41db-95ab-d93973077193 2020-10-17 16:45:43.145678 42847 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 01:19:36.272382000 Z\n- &1 2020-10-17 01:19:42.493525000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 16:48:56.059430479 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946356\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\nsign_in_count:\n- 1981\n- 1982\n 3964 \N 189.186.9.45 e558d9b0-5453-4b39-8f48-4175a0ac91a3 2020-10-17 16:48:56.068252 42848 4 User \N \N 4 User \N update ---\nunique_session_id:\n- H7xS2UpXNST4oLt2qp-x\n- gH9Gf6z2XEGx3DuoLhWy\n 3965 \N 189.186.9.45 e558d9b0-5453-4b39-8f48-4175a0ac91a3 2020-10-17 16:48:56.090673 42897 2240 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.9.45 eca44d4f-40d5-4f3f-b97c-90822bd2dd22 2020-10-17 20:15:17.733448 42899 3210 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 fc4e9fbe-0c62-43d6-9e45-29d21cb4f074 2020-10-17 20:15:31.090758 42849 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-09-27 00:56:43.023990000 Z\n- &1 2020-10-12 22:05:09.549525000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 16:49:26.522678379 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\nsign_in_count:\n- 183\n- 184\n 368 \N 189.186.9.45 a83917db-5f38-4f50-a0f6-0100c79f8316 2020-10-17 16:49:26.530752 42850 9 User \N \N 9 User \N update ---\nunique_session_id:\n- MY7jnvYBNwrcisbyHKZS\n- QcH8-_vpEQk2hPMTQV7h\n 369 \N 189.186.9.45 a83917db-5f38-4f50-a0f6-0100c79f8316 2020-10-17 16:49:26.548227 42851 1120 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.589E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 589.0 189.186.9.45 2273ea43-7a59-4589-a97b-ea30dc9663f5 2020-10-17 16:49:31.320552 42852 3205 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1120\namount: !ruby/object:BigDecimal 18:0.928E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.928E3\nstatus: 0\ndate_sale: 2020-10-17\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1530\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 8d1b6467-4731-4134-bad8-94e44f8f13a2 2020-10-17 16:57:51.918481 42853 1940 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.9.45 8d1b6467-4731-4134-bad8-94e44f8f13a2 2020-10-17 16:57:51.946042 42854 2078 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.9.45 8d1b6467-4731-4134-bad8-94e44f8f13a2 2020-10-17 16:57:51.978261 42855 3205 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 9569fe96-6eae-4f4c-bfa5-8f461b6dd0d2 2020-10-17 16:58:04.191873 42856 4251 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1120\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.928E3\nmove_type: '1'\nsale_id: 3205\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1530\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.72E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1530 189.186.9.45 9569fe96-6eae-4f4c-bfa5-8f461b6dd0d2 2020-10-17 16:58:04.22494 42857 1121 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.726E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 726.0 189.186.56.63 46f9df8e-cd00-4f43-ba88-9105160aaea3 2020-10-17 17:22:59.924178 42858 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-16 23:43:11.760703000 Z\n- &1 2020-10-17 00:10:06.953700000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 17:35:15.538985143 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097919\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\nsign_in_count:\n- 295\n- 296\n 593 \N 189.186.9.45 42a2ac54-b33d-4dd6-bc78-d015ce324007 2020-10-17 17:35:15.555615 42859 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 7bSX6-McD4FAshtgMqsz\n- dq2evFk6swRJve1xJ4AW\n 594 \N 189.186.9.45 42a2ac54-b33d-4dd6-bc78-d015ce324007 2020-10-17 17:35:15.580639 42860 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-10-12 22:05:09.549525000 Z\n- &1 2020-10-17 16:49:26.522678000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 17:51:44.164839629 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\nsign_in_count:\n- 184\n- 185\n 370 \N 189.186.9.45 a3fa4cf1-a953-4285-aa9f-dd537cee15e7 2020-10-17 17:51:44.173227 42861 9 User \N \N 9 User \N update ---\nunique_session_id:\n- QcH8-_vpEQk2hPMTQV7h\n- 45FxWp47XdcRJVs7ZYqr\n 371 \N 189.186.9.45 a3fa4cf1-a953-4285-aa9f-dd537cee15e7 2020-10-17 17:51:44.191013 42862 4252 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1051\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2888\ncardnumber: 1122\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.9.45 26228264-a8eb-4631-ba8b-4d57f72b5d26 2020-10-17 17:52:32.858955 42863 4252 CashRegistersMove \N \N 9 User \N update ---\nopen_cash_register_id:\n- 1051\n- 1120\n 2 movimiento de efectivo por venta con folio PV3-V-592 189.186.9.45 26228264-a8eb-4631-ba8b-4d57f72b5d26 2020-10-17 17:52:32.893361 42864 3206 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1121\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-10-17\nsaletype: 1\nseller_id: 23\nsale_code: PV3-V-756\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 81041602-6ca7-44e0-ad8a-2a1162b29ff5 2020-10-17 17:58:07.841219 42865 2266 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.56.63 81041602-6ca7-44e0-ad8a-2a1162b29ff5 2020-10-17 17:58:07.874394 42866 3206 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.56.63 99dcdc85-b8e0-4bce-bb85-a328c2ed2b75 2020-10-17 17:58:34.969759 42867 4253 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1121\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 3206\ncardnumber: 402\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-756\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-756 189.186.56.63 99dcdc85-b8e0-4bce-bb85-a328c2ed2b75 2020-10-17 17:58:34.993265 42868 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-16 19:49:51.007207000 Z\n- &1 2020-10-16 21:31:27.040698000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 18:05:22.069186987 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097919\n mask_addr: 4294967295\nsign_in_count:\n- 279\n- 280\n 560 \N 189.186.56.63 400a6322-7f9b-4af8-8531-b1999ed3fc8b 2020-10-17 18:05:22.103176 42869 1 User \N \N 1 User \N update ---\nunique_session_id:\n- uZ7qZSn1nRqrMxCskV_N\n- 77Jr8mzgV8tjf9PrvqkZ\n 561 \N 189.186.56.63 400a6322-7f9b-4af8-8531-b1999ed3fc8b 2020-10-17 18:05:22.132281 42870 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-16 21:31:27.040698000 Z\n- &1 2020-10-17 18:05:22.069186000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 18:59:35.633699366 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097919\n mask_addr: 4294967295\nsign_in_count:\n- 280\n- 281\n 562 \N 189.186.56.63 8b1dbc13-2edf-4a9c-bfb9-a95026b7c2a6 2020-10-17 18:59:35.641052 42872 3207 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1120\namount: !ruby/object:BigDecimal 18:0.2598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2598E4\nstatus: 0\ndate_sale: 2020-10-17\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1531\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 c88c6dbc-dcf4-41d2-becc-542e072c3d95 2020-10-17 19:26:20.173602 42873 2236 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.9.45 c88c6dbc-dcf4-41d2-becc-542e072c3d95 2020-10-17 19:26:20.220084 42874 2223 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.9.45 c88c6dbc-dcf4-41d2-becc-542e072c3d95 2020-10-17 19:26:20.270582 42875 3207 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 6104629c-7369-4f5b-8352-2ebb0e4ff90b 2020-10-17 19:27:12.964902 42876 4254 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1120\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2598E4\nmove_type: '1'\nsale_id: 3207\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1531\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.26E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1531 189.186.9.45 6104629c-7369-4f5b-8352-2ebb0e4ff90b 2020-10-17 19:27:12.991445 42877 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 01:19:42.493525000 Z\n- &1 2020-10-17 16:48:56.059430000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 19:37:23.006631338 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946356\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\nsign_in_count:\n- 1982\n- 1983\n 3966 \N 189.186.9.45 74fe6ffc-52bd-4efd-82b8-e69c86c52c58 2020-10-17 19:37:23.0485 42878 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gH9Gf6z2XEGx3DuoLhWy\n- S1rqTCYSyjxG1Z4FW1Qw\n 3967 \N 189.186.9.45 74fe6ffc-52bd-4efd-82b8-e69c86c52c58 2020-10-17 19:37:23.084951 42879 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 18:05:22.069186000 Z\n- &1 2020-10-17 18:59:35.633699000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 19:40:55.933511328 Z\nsign_in_count:\n- 281\n- 282\n 564 \N 189.186.56.63 a587061e-4a31-4887-b435-9146436f95bd 2020-10-17 19:40:55.939654 42880 1 User \N \N 1 User \N update ---\nunique_session_id:\n- T8F-HxzZu87qz3VsQyPp\n- xbKU8FNrrBAMPeHTyGPx\n 565 \N 189.186.56.63 a587061e-4a31-4887-b435-9146436f95bd 2020-10-17 19:40:55.954906 42881 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 18:59:35.633699000 Z\n- &1 2020-10-17 19:40:55.933511000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 19:52:52.351615613 Z\nsign_in_count:\n- 282\n- 283\n 566 \N 189.186.56.63 db364931-9a41-4e9c-8b79-185a7a213af5 2020-10-17 19:52:52.357193 42882 1 User \N \N 1 User \N update ---\nunique_session_id:\n- xbKU8FNrrBAMPeHTyGPx\n- kSzLEtsZfpobQD8mV1HC\n 567 \N 189.186.56.63 db364931-9a41-4e9c-8b79-185a7a213af5 2020-10-17 19:52:52.373037 42883 3208 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1121\namount: !ruby/object:BigDecimal 18:0.12672E3\ntax: !ruby/object:BigDecimal 18:0.2028E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.147E3\nstatus: 0\ndate_sale: 2020-10-17\nsaletype: 1\nseller_id: 23\nsale_code: PV3-V-757\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 49067f66-14fe-4f7b-a2c2-50e203f97fad 2020-10-17 20:10:37.547592 42884 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.43E2\n- !ruby/object:BigDecimal 18:0.4E2\n 28 \N 189.186.56.63 49067f66-14fe-4f7b-a2c2-50e203f97fad 2020-10-17 20:10:37.586359 42885 3208 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.56.63 f546a365-47a3-45bc-b00e-49dff6b1dde3 2020-10-17 20:10:41.646705 42886 4255 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1121\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.147E3\nmove_type: '1'\nsale_id: 3208\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-757\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.147E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-757 189.186.56.63 f546a365-47a3-45bc-b00e-49dff6b1dde3 2020-10-17 20:10:41.67562 42887 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 16:49:26.522678000 Z\n- &1 2020-10-17 17:51:44.164839000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 20:11:47.148920525 Z\nsign_in_count:\n- 185\n- 186\n 372 \N 189.186.9.45 afc75597-19a3-45a7-9ef4-034797a677e2 2020-10-17 20:11:47.154892 42888 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 45FxWp47XdcRJVs7ZYqr\n- S4m2PzAiHA52W1T5J1z9\n 373 \N 189.186.9.45 afc75597-19a3-45a7-9ef4-034797a677e2 2020-10-17 20:11:47.170989 42889 3198 Sale \N \N 9 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-1529 cancelada. 189.186.9.45 26b63b9f-54eb-4790-bb25-7e66faf3db4d 2020-10-17 20:12:08.79274 42890 4256 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1120\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '0'\nsale_id: 3198\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1529\nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.9.45 26b63b9f-54eb-4790-bb25-7e66faf3db4d 2020-10-17 20:12:08.820187 42891 2262 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.9.45 26b63b9f-54eb-4790-bb25-7e66faf3db4d 2020-10-17 20:12:08.844335 42892 3209 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1120\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2020-10-17\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1532\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 561ddc59-42cb-4437-8c03-a9323ee9a98e 2020-10-17 20:14:52.798355 42893 2240 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.9.45 561ddc59-42cb-4437-8c03-a9323ee9a98e 2020-10-17 20:14:52.826158 42894 3209 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1532 cancelada. 189.186.9.45 4c61c5f9-3620-4189-96ee-3c427479024e 2020-10-17 20:15:00.253192 42895 2240 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.9.45 4c61c5f9-3620-4189-96ee-3c427479024e 2020-10-17 20:15:00.277683 42896 3210 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1120\namount: !ruby/object:BigDecimal 18:0.788E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.788E3\nstatus: 0\ndate_sale: 2020-10-17\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1533\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 eca44d4f-40d5-4f3f-b97c-90822bd2dd22 2020-10-17 20:15:17.700368 42900 4257 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1120\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.788E3\nmove_type: '1'\nsale_id: 3210\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1533\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '22255'\n 1 movimiento de efectivo por venta con folio PV1-V-1533 189.186.9.45 fc4e9fbe-0c62-43d6-9e45-29d21cb4f074 2020-10-17 20:15:31.116355 42901 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 16:48:56.059430000 Z\n- &1 2020-10-17 19:37:23.006631000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 20:28:20.485522705 Z\nsign_in_count:\n- 1983\n- 1984\n 3968 \N 189.186.9.45 31bb58cf-7f4d-4fd8-b169-3ce00788a38f 2020-10-17 20:28:20.491427 42902 4 User \N \N 4 User \N update ---\nunique_session_id:\n- S1rqTCYSyjxG1Z4FW1Qw\n- yWYfgSh7-E9yCMjSe8Cu\n 3969 \N 189.186.9.45 31bb58cf-7f4d-4fd8-b169-3ce00788a38f 2020-10-17 20:28:20.512684 42903 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 17:51:44.164839000 Z\n- &1 2020-10-17 20:11:47.148920000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 20:58:47.721391196 Z\nsign_in_count:\n- 186\n- 187\n 374 \N 189.186.9.45 77a0ede9-1cbc-4c60-aa90-a4591c057069 2020-10-17 20:58:47.727596 42904 9 User \N \N 9 User \N update ---\nunique_session_id:\n- S4m2PzAiHA52W1T5J1z9\n- GjTwB-nz5jAqa5o1Y6Dz\n 375 \N 189.186.9.45 77a0ede9-1cbc-4c60-aa90-a4591c057069 2020-10-17 20:58:47.741093 42905 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 19:40:55.933511000 Z\n- &1 2020-10-17 19:52:52.351615000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 21:20:32.409857834 Z\nsign_in_count:\n- 283\n- 284\n 568 \N 189.186.56.63 052a32ec-987e-43de-a7c9-924306a61d3d 2020-10-17 21:20:32.418693 42906 1 User \N \N 1 User \N update ---\nunique_session_id:\n- kSzLEtsZfpobQD8mV1HC\n- BCaX--zctyHCdfwPXK9R\n 569 \N 189.186.56.63 052a32ec-987e-43de-a7c9-924306a61d3d 2020-10-17 21:20:32.438817 42907 3211 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1120\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.619E3\ntotal: !ruby/object:BigDecimal 18:0.98E3\nstatus: 0\ndate_sale: 2020-10-17\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1534\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 e262f1c5-94d0-4259-8cdb-227955e41048 2020-10-17 21:21:12.278456 42908 1778 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.9.45 e262f1c5-94d0-4259-8cdb-227955e41048 2020-10-17 21:21:12.306684 42909 3211 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 f1867215-3576-466f-83fc-e266d4f9b3b1 2020-10-17 21:21:51.108952 42910 4258 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1120\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.98E3\nmove_type: '1'\nsale_id: 3211\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1534\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.2E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1534 189.186.9.45 f1867215-3576-466f-83fc-e266d4f9b3b1 2020-10-17 21:21:51.139997 42911 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 19:37:23.006631000 Z\n- &1 2020-10-17 20:28:20.485522000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 21:42:12.359408141 Z\nsign_in_count:\n- 1984\n- 1985\n 3970 \N 189.186.9.45 812d0a65-3bc8-4b47-b441-5efd94e3504d 2020-10-17 21:42:12.385226 42912 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yWYfgSh7-E9yCMjSe8Cu\n- ioiN3FtHnbWY9xZDEzjV\n 3971 \N 189.186.9.45 812d0a65-3bc8-4b47-b441-5efd94e3504d 2020-10-17 21:42:12.411881 42913 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 20:11:47.148920000 Z\n- &1 2020-10-17 20:58:47.721391000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 21:58:29.089868788 Z\nsign_in_count:\n- 187\n- 188\n 376 \N 189.186.9.45 8eec2b80-72ef-4ae6-ba8b-fe79a4c52ec1 2020-10-17 21:58:29.095632 42914 9 User \N \N 9 User \N update ---\nunique_session_id:\n- GjTwB-nz5jAqa5o1Y6Dz\n- "-pbGmNr-BEGUxZsw3NAe"\n 377 \N 189.186.9.45 8eec2b80-72ef-4ae6-ba8b-fe79a4c52ec1 2020-10-17 21:58:29.109561 42915 3212 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1120\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.99E2\ntotal: !ruby/object:BigDecimal 18:0.12E4\nstatus: 0\ndate_sale: 2020-10-17\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1535\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 f711952a-370e-4447-ae4a-4f0862d85260 2020-10-17 22:00:11.917701 42916 529 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.9.45 f711952a-370e-4447-ae4a-4f0862d85260 2020-10-17 22:00:11.968627 42917 3212 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 4a1ef66a-14f7-4207-8c1e-524fc39c4c0e 2020-10-17 22:02:27.150543 42918 4259 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1120\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.12E4\nmove_type: '1'\nsale_id: 3212\ncardnumber: 7829\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1535\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1535 189.186.9.45 4a1ef66a-14f7-4207-8c1e-524fc39c4c0e 2020-10-17 22:02:27.176433 42919 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 20:28:20.485522000 Z\n- &1 2020-10-17 21:42:12.359408000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 22:06:01.408993372 Z\nsign_in_count:\n- 1985\n- 1986\n 3972 \N 189.186.9.45 9842a6ca-3e0c-4949-b623-d01e0fd2ca7d 2020-10-17 22:06:01.415084 42920 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ioiN3FtHnbWY9xZDEzjV\n- 3Xd__xqV3ygDmvMdfrgp\n 3973 \N 189.186.9.45 9842a6ca-3e0c-4949-b623-d01e0fd2ca7d 2020-10-17 22:06:01.430098 42921 3213 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1121\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-10-17\nsaletype: 1\nseller_id: 23\nsale_code: PV3-V-758\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 34d9f86f-4eda-4dca-86c9-2d386537a41d 2020-10-17 22:11:12.590857 42922 2280 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.56.63 34d9f86f-4eda-4dca-86c9-2d386537a41d 2020-10-17 22:11:12.639744 42923 3213 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.56.63 810178b5-60e7-4109-90c7-b92f6f27b69e 2020-10-17 22:11:18.467947 42978 1147 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1122\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.872E3\nphysical_cash: !ruby/object:BigDecimal 18:0.872E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.72.137 91330b48-e9c0-49de-b575-2f0c0cc7f432 2020-10-18 22:00:23.797218 42924 4260 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1121\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 3213\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-758\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-758 189.186.56.63 810178b5-60e7-4109-90c7-b92f6f27b69e 2020-10-17 22:11:18.492732 42925 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 19:52:52.351615000 Z\n- &1 2020-10-17 21:20:32.409857000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 22:29:50.628629981 Z\nsign_in_count:\n- 284\n- 285\n 570 \N 189.186.56.63 bb0a910c-6095-481f-a32f-c8ccacdd5852 2020-10-17 22:29:50.647798 42926 1 User \N \N 1 User \N update ---\nunique_session_id:\n- BCaX--zctyHCdfwPXK9R\n- d4xh3uG-azUQDHdqXu6a\n 571 \N 189.186.56.63 bb0a910c-6095-481f-a32f-c8ccacdd5852 2020-10-17 22:29:50.666894 42927 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 21:42:12.359408000 Z\n- &1 2020-10-17 22:06:01.408993000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-17 23:36:28.958001908 Z\nsign_in_count:\n- 1986\n- 1987\n 3974 \N 189.186.9.45 d377fca0-0f1a-41cd-be15-542d23aec98d 2020-10-17 23:36:28.964888 42928 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3Xd__xqV3ygDmvMdfrgp\n- UNxgHU7qZxvGr-h-smPz\n 3975 \N 189.186.9.45 d377fca0-0f1a-41cd-be15-542d23aec98d 2020-10-17 23:36:28.986265 42929 1821 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 39 \N 189.186.9.45 923c78b3-8a25-4e1d-9aa9-30d41a8d07b8 2020-10-18 00:04:31.41234 42930 1821 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 40 \N 189.186.9.45 19214fdd-519e-40f4-ad8f-cf943bab1798 2020-10-18 00:04:35.923606 42931 1937 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 35 \N 189.186.9.45 12be44ae-9318-408e-b91b-58f00892654b 2020-10-18 00:04:39.923834 42932 1937 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.6E1\n 36 \N 189.186.9.45 c2267550-6f3c-46b2-a18b-0c8f777ceeae 2020-10-18 00:05:05.078466 42933 2238 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.9.45 73a66e9b-f3b6-4ac9-b51e-14b4d36fc29c 2020-10-18 00:05:25.704417 42934 2238 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.9.45 5148d237-ffe1-4203-9609-f88f980581c8 2020-10-18 00:05:31.007501 42935 1872 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.9.45 748c24b9-f29f-4e22-a44c-3f79fb72c352 2020-10-18 00:11:47.031868 42936 1872 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.9.45 d819611d-7bd5-4ead-9423-1622d9f993b7 2020-10-18 00:11:49.988239 42937 1871 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.9.45 3aafccd4-49b0-406b-91a3-235c546f914c 2020-10-18 00:12:00.283071 42938 1871 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.9.45 16467b5a-9805-449d-954f-ddbaf387a398 2020-10-18 00:12:03.26992 42939 2263 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.9.45 087f8b80-ff65-448a-884b-d1aade1f6fd8 2020-10-18 00:12:21.758778 42940 2231 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.9.45 ef045f24-b4ed-4c47-9d89-26bf9e3bf641 2020-10-18 00:12:51.893646 42941 2248 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.9.45 f232621c-42c1-4a01-a54d-a0f18f6e27f1 2020-10-18 00:13:00.89926 42942 2247 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.9.45 af38019a-9249-45e5-9f76-425773cdaae8 2020-10-18 00:13:06.723534 42943 2247 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.9.45 f5045bb6-62e6-4626-9b6a-aeaa85fa336a 2020-10-18 00:13:11.021984 42944 2247 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.9.45 3147b3cf-3b0b-4449-96e4-6d760fd462cc 2020-10-18 00:13:12.6298 42945 2248 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.9.45 486f5535-f5ea-4fed-9eed-3b82c4acdc1f 2020-10-18 00:13:20.321171 42946 2231 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.9.45 e3cdf0a8-46cc-448b-a11f-8740420b6a07 2020-10-18 00:13:24.974434 42947 700 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-10-17\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.9.45 a0dce73d-9fe2-44a9-96f6-a43ed995cd0a 2020-10-18 00:13:28.128728 42948 413 Customer \N \N 21 User \N create ---\nnick_name: KATYA RAMIREZ\nphone: "(667) 387-3989"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KATYA RAMIREZ fue registrado. 189.186.56.63 b7e0bc51-8041-46b2-a557-d3061db04251 2020-10-18 00:18:59.606179 42949 3214 Sale \N \N 21 User \N create ---\ncustomer_id: 413\nuser_id: 21\nopen_cash_register_id: 1121\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-10-17\nsaletype: 2\nseller_id: 23\nsale_code: PV3-V-759\nexpiration_date: 2020-11-21\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.56.63 ddf45730-1c43-449a-a8ab-469369c4bc19 2020-10-18 00:20:06.851451 42950 2017 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 15 \N 189.186.56.63 ddf45730-1c43-449a-a8ab-469369c4bc19 2020-10-18 00:20:06.890957 42951 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 20:58:47.721391000 Z\n- &1 2020-10-17 21:58:29.089868000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-18 00:20:50.326974622 Z\nsign_in_count:\n- 188\n- 189\n 378 \N 189.186.9.45 3806e1ab-28a1-4fb5-8dd2-31e56e09f80f 2020-10-18 00:20:50.3356 42952 9 User \N \N 9 User \N update ---\nunique_session_id:\n- "-pbGmNr-BEGUxZsw3NAe"\n- xReqXTg9emmWGV6sqa8e\n 379 \N 189.186.9.45 3806e1ab-28a1-4fb5-8dd2-31e56e09f80f 2020-10-18 00:20:50.354431 42979 1122 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.72.137 91330b48-e9c0-49de-b575-2f0c0cc7f432 2020-10-18 22:00:23.815489 43303 2277 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.72.137 1519ed88-6b2d-4417-a2e5-5638e893215c 2020-10-23 21:08:49.415102 42953 4261 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1121\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3214\ncardnumber: 2050\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-759\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-759 189.186.56.63 5dc38ad8-9088-424e-80ce-cad2db19c5bc 2020-10-18 00:21:35.423001 42954 3214 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.56.63 30283e8e-14a3-43a1-a5bd-df33e6c8b3de 2020-10-18 00:21:36.73661 42955 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 22:06:01.408993000 Z\n- &1 2020-10-17 23:36:28.958001000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-18 00:26:18.023489209 Z\nsign_in_count:\n- 1987\n- 1988\n 3976 \N 189.186.9.45 94dfb830-fcfa-4fc8-bd01-8469ae8b712a 2020-10-18 00:26:18.029407 42956 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UNxgHU7qZxvGr-h-smPz\n- hX8yHzFuNhFymqRyNnDP\n 3977 \N 189.186.9.45 94dfb830-fcfa-4fc8-bd01-8469ae8b712a 2020-10-18 00:26:18.045251 42957 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 21:58:29.089868000 Z\n- &1 2020-10-18 00:20:50.326974000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-18 00:46:21.661638153 Z\nsign_in_count:\n- 189\n- 190\n 380 \N 189.186.9.45 80a2a869-a29f-442d-86af-49fa888840b9 2020-10-18 00:46:21.667878 42958 9 User \N \N 9 User \N update ---\nunique_session_id:\n- xReqXTg9emmWGV6sqa8e\n- yR8PuhPpkEYNRRYcQcw-\n 381 \N 189.186.9.45 80a2a869-a29f-442d-86af-49fa888840b9 2020-10-18 00:46:21.68594 42959 1145 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 1120\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.6994E4\namount_out: !ruby/object:BigDecimal 18:0.899E3\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.4362E4\ncash_fund: !ruby/object:BigDecimal 18:0.733E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5095E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.9.45 17219f52-c8a5-4a0e-b6e5-278ae15deb96 2020-10-18 00:53:25.586093 42960 1120 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.9.45 17219f52-c8a5-4a0e-b6e5-278ae15deb96 2020-10-18 00:53:25.605795 42961 1146 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1121\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1645E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 17\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.872E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1372E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.56.63 083d0c9c-41f5-4593-bc13-4269a06d7bdf 2020-10-18 00:55:08.70875 42962 1121 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.56.63 083d0c9c-41f5-4593-bc13-4269a06d7bdf 2020-10-18 00:55:08.721685 42963 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-10-16 05:41:15.032381000 Z\n- &1 2020-10-17 16:45:43.086216000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-18 18:37:16.451296467 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183084645\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097919\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097919\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\nsign_in_count:\n- 313\n- 314\n 629 \N 189.186.72.137 c5a3b818-bc13-499f-8796-7891f28d0bfd 2020-10-18 18:37:16.482272 42964 21 User \N \N 21 User \N update ---\nunique_session_id:\n- RM8YPzNNejKNHWFUjDZ5\n- rretyTY-CcXG9X3EPdjb\n 630 \N 189.186.72.137 c5a3b818-bc13-499f-8796-7891f28d0bfd 2020-10-18 18:37:16.506655 42965 700 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-10-18\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.72.137 30beb39f-9c2a-4ffd-952c-79bc4544f493 2020-10-18 18:37:39.179312 42966 2359 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1307\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 30beb39f-9c2a-4ffd-952c-79bc4544f493 2020-10-18 18:37:39.222439 42967 2360 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1324\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 30beb39f-9c2a-4ffd-952c-79bc4544f493 2020-10-18 18:37:39.264153 42968 2361 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1323\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 30beb39f-9c2a-4ffd-952c-79bc4544f493 2020-10-18 18:37:39.29256 42969 2340 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.72.137 30beb39f-9c2a-4ffd-952c-79bc4544f493 2020-10-18 18:37:39.315342 42970 2210 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.72.137 30beb39f-9c2a-4ffd-952c-79bc4544f493 2020-10-18 18:37:39.33368 42971 2206 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.72.137 30beb39f-9c2a-4ffd-952c-79bc4544f493 2020-10-18 18:37:39.35167 42972 2266 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.6E1\n 9 \N 189.186.72.137 30beb39f-9c2a-4ffd-952c-79bc4544f493 2020-10-18 18:37:39.370704 42973 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.7E1\n 76 \N 189.186.72.137 30beb39f-9c2a-4ffd-952c-79bc4544f493 2020-10-18 18:37:39.389232 42974 1822 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 76 \N 189.186.72.137 30beb39f-9c2a-4ffd-952c-79bc4544f493 2020-10-18 18:37:39.407795 42975 1122 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.872E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 872.0 189.186.72.137 c787d2ec-7e1a-4d45-ae48-e5d25d35c7eb 2020-10-18 18:47:54.557313 42976 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 23:36:28.958001000 Z\n- &1 2020-10-18 00:26:18.023489000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-18 20:19:57.571375337 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535952\n mask_addr: 4294967295\nsign_in_count:\n- 1988\n- 1989\n 3978 \N 177.228.103.144 7a8965c5-eee2-40ce-9d63-562f587ed18b 2020-10-18 20:19:57.603664 42977 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hX8yHzFuNhFymqRyNnDP\n- _2ENRiYjTHZ7QysLWkwR\n 3979 \N 177.228.103.144 7a8965c5-eee2-40ce-9d63-562f587ed18b 2020-10-18 20:19:57.628585 43067 220 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.77.174 891dad77-8e20-451b-9efa-101f904292a7 2020-10-21 00:18:59.442221 42980 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-18 00:26:18.023489000 Z\n- &1 2020-10-18 20:19:57.571375000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-18 22:15:29.782690786 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535952\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535952\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946006\n mask_addr: 4294967295\nsign_in_count:\n- 1989\n- 1990\n 3980 \N 200.68.181.22 fda65a2d-cd65-4c8f-bd18-75caf4541bbc 2020-10-18 22:15:29.818017 42981 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _2ENRiYjTHZ7QysLWkwR\n- SHcQSjRkUv6d3yVnHAcC\n 3981 \N 200.68.181.22 fda65a2d-cd65-4c8f-bd18-75caf4541bbc 2020-10-18 22:15:29.844949 42982 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-18 20:19:57.571375000 Z\n- &1 2020-10-18 22:15:29.782690000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-19 16:44:45.969772716 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535952\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946006\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946006\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183148188\n mask_addr: 4294967295\nsign_in_count:\n- 1990\n- 1991\n 3982 \N 189.186.252.156 3b2cdebc-a934-493d-a174-f43313fa76ab 2020-10-19 16:44:45.999588 42983 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SHcQSjRkUv6d3yVnHAcC\n- Pk_AFQ9nzT3GDZxjjzaC\n 3983 \N 189.186.252.156 3b2cdebc-a934-493d-a174-f43313fa76ab 2020-10-19 16:44:46.026876 42984 30 User \N \N 30 User \N update ---\nlast_sign_in_at:\n- 2020-10-07 02:26:13.819102000 Z\n- &1 2020-10-07 21:51:27.308095000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-19 18:33:01.353452244 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147131023\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\nsign_in_count:\n- 9\n- 10\n 20 \N 189.186.72.137 c1fe736f-d752-47f7-994e-1a6c35d2fa35 2020-10-19 18:33:01.361 42985 30 User \N \N 30 User \N update ---\nunique_session_id:\n- 3jq7qpBwjDS4G5LHb5Rh\n- nqKuzcLNZrKyHUSonZUB\n 21 \N 189.186.72.137 c1fe736f-d752-47f7-994e-1a6c35d2fa35 2020-10-19 18:33:01.377583 42986 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-09-23 00:48:31.596095000 Z\n- &1 2020-10-07 21:41:09.000514000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-19 18:33:39.983483542 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183105769\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\nsign_in_count:\n- 96\n- 97\n 194 \N 189.186.72.137 7b9d10e0-1dad-49c9-9633-77b4682301aa 2020-10-19 18:33:39.993358 42987 25 User \N \N 25 User \N update ---\nunique_session_id:\n- YVNTxgTs56M8Jx8sBMWP\n- YwsbZxegqAxt4Uxb9_zs\n 195 \N 189.186.72.137 7b9d10e0-1dad-49c9-9633-77b4682301aa 2020-10-19 18:33:40.023094 42988 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 16:45:43.086216000 Z\n- &1 2020-10-18 18:37:16.451296000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-19 19:47:30.101378642 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097919\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\nsign_in_count:\n- 314\n- 315\n 631 \N 189.186.72.137 25e4ac18-035e-4ba1-80d0-60fe52187f35 2020-10-19 19:47:30.109027 42989 21 User \N \N 21 User \N update ---\nunique_session_id:\n- rretyTY-CcXG9X3EPdjb\n- SpAtG-ifh7jhLhxVi9-Y\n 632 \N 189.186.72.137 25e4ac18-035e-4ba1-80d0-60fe52187f35 2020-10-19 19:47:30.126091 42990 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-15 16:41:25.512585000 Z\n- &1 2020-10-16 16:28:21.238536000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-19 20:52:02.790800534 Z\nsign_in_count:\n- 665\n- 666\n 1335 \N 189.186.9.45 5964e79a-875c-442b-a7c3-5d234eee4131 2020-10-19 20:52:02.809106 42991 2 User \N \N 2 User \N update ---\nunique_session_id:\n- JuyoPZFsC-MCin8kyvpj\n- nSi2584d3yw2WhR4ZLq2\n 1336 \N 189.186.9.45 5964e79a-875c-442b-a7c3-5d234eee4131 2020-10-19 20:52:02.82996 42992 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-18 22:15:29.782690000 Z\n- &1 2020-10-19 16:44:45.969772000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-19 20:59:13.090068914 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946006\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183148188\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183148188\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945669\n mask_addr: 4294967295\nsign_in_count:\n- 1991\n- 1992\n 3984 \N 200.68.179.197 30dcd53a-4b09-4022-82d7-5a5e0a2b4df3 2020-10-19 20:59:13.119933 42993 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Pk_AFQ9nzT3GDZxjjzaC\n- CxqSWfvXAR59GC-vMyz3\n 3985 \N 200.68.179.197 30dcd53a-4b09-4022-82d7-5a5e0a2b4df3 2020-10-19 20:59:13.150046 42994 1123 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.733E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 733.0 189.186.9.45 2dfc8cc0-a5d5-4277-b065-8ec4cbaa2386 2020-10-19 21:00:53.365592 42995 4262 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1123\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.174E3\nmove_type: '1'\nsale_id: 3089\ncardnumber: 51\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1479 189.186.9.45 4e6ccb8b-5f7f-4c8a-9f1e-08f4a12d70b8 2020-10-19 21:03:10.681822 42996 3089 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.9.45 17e7e9b7-18f0-49cc-b007-e8002eebbf69 2020-10-19 21:03:16.319714 42997 3215 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1123\namount: !ruby/object:BigDecimal 18:0.189E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.189E3\nstatus: 0\ndate_sale: 2020-10-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1536\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.9.45 6b61e00f-3564-4c6d-b56b-93aef737d89a 2020-10-19 21:17:51.1524 42998 2073 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.9.45 6b61e00f-3564-4c6d-b56b-93aef737d89a 2020-10-19 21:17:51.18876 42999 3215 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.9.45 4909506a-48da-4bc3-9809-dae0428d2372 2020-10-19 21:18:09.112607 43000 4263 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1123\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.189E3\nmove_type: '1'\nsale_id: 3215\ncardnumber: 51\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1536\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1536 189.186.9.45 4909506a-48da-4bc3-9809-dae0428d2372 2020-10-19 21:18:09.14538 43001 1124 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.872E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 872.0 189.186.72.137 27c7fe78-4e92-445f-bc73-c777b908a7a3 2020-10-19 22:00:04.339392 43002 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 21:20:32.409857000 Z\n- &1 2020-10-17 22:29:50.628629000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-19 22:04:28.983348775 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097919\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\nsign_in_count:\n- 285\n- 286\n 572 \N 189.186.9.45 483fe915-ba6a-4d27-afd0-eabe85979b72 2020-10-19 22:04:28.992808 43003 1 User \N \N 1 User \N update ---\nunique_session_id:\n- d4xh3uG-azUQDHdqXu6a\n- XhdkPr_wmBVuqT-a6jXF\n 573 \N 189.186.9.45 483fe915-ba6a-4d27-afd0-eabe85979b72 2020-10-19 22:04:29.008789 43004 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 22:29:50.628629000 Z\n- &1 2020-10-19 22:04:28.983348000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-19 22:23:55.721991738 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097919\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\nsign_in_count:\n- 286\n- 287\n 574 \N 189.186.9.45 96d15307-bfe4-4eb2-babb-80740ecbac25 2020-10-19 22:23:55.731914 43005 1 User \N \N 1 User \N update ---\nunique_session_id:\n- XhdkPr_wmBVuqT-a6jXF\n- P2PMpuECwkUtcuAf5uob\n 575 \N 189.186.9.45 96d15307-bfe4-4eb2-babb-80740ecbac25 2020-10-19 22:23:55.747005 43006 414 Customer \N \N 21 User \N create ---\nnick_name: fernanda Gaxiola\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente fernanda Gaxiola fue registrado. 189.186.72.137 3c8b9931-74a7-4b03-bb5f-ccb0d7906ec6 2020-10-19 22:54:54.966452 43007 3216 Sale \N \N 21 User \N create ---\ncustomer_id: 414\nuser_id: 21\nopen_cash_register_id: 1124\namount: !ruby/object:BigDecimal 18:0.64569E3\ntax: !ruby/object:BigDecimal 18:0.10331E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2020-10-19\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-760\nexpiration_date: 2020-11-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 9d89566a-3845-4545-b6df-4681a529605b 2020-10-19 22:55:11.675917 43008 1949 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.72.137 9d89566a-3845-4545-b6df-4681a529605b 2020-10-19 22:55:11.701636 43009 4264 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1124\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 3216\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-760\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-760 189.186.72.137 1e0d36dc-3f89-4952-b7d3-0d05dd60d1c4 2020-10-19 22:55:27.340678 43010 3216 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.72.137 5520109d-b65f-4a11-860a-93c58ac4f5e7 2020-10-19 22:55:31.862367 43011 3217 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1124\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-10-19\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-761\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 20d7980e-b8fd-44e3-b4bd-b05fa2a4f22e 2020-10-20 00:56:30.701866 43012 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E2\n- !ruby/object:BigDecimal 18:0.39E2\n 29 \N 189.186.72.137 20d7980e-b8fd-44e3-b4bd-b05fa2a4f22e 2020-10-20 00:56:30.730031 43013 3217 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 afd50792-0424-4182-a8c0-ce63f639b4c5 2020-10-20 00:56:34.341624 43014 4265 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1124\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 3217\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-761\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E2\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-761 189.186.72.137 afd50792-0424-4182-a8c0-ce63f639b4c5 2020-10-20 00:56:34.3649 43015 1148 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1124\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.518E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.89E3\nphysical_cash: !ruby/object:BigDecimal 18:0.139E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.72.137 05545549-828e-4ace-9bad-8c1d308e75c1 2020-10-20 01:04:57.089831 43016 1124 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.72.137 05545549-828e-4ace-9bad-8c1d308e75c1 2020-10-20 01:04:57.107631 43017 1149 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1123\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.363E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.733E3\nphysical_cash: !ruby/object:BigDecimal 18:0.733E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.77.174 8fbede3c-45c9-448d-b7ba-ffbc3010a77a 2020-10-20 01:09:28.655408 43018 1123 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.174 8fbede3c-45c9-448d-b7ba-ffbc3010a77a 2020-10-20 01:09:28.669239 43019 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-16 16:28:21.238536000 Z\n- &1 2020-10-19 20:52:02.790800000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-20 17:03:27.423451039 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\nsign_in_count:\n- 666\n- 667\n 1337 \N 187.149.77.174 4089fcf4-f87e-4fdf-b750-b887a466a364 2020-10-20 17:03:27.450811 43020 2 User \N \N 2 User \N update ---\nunique_session_id:\n- nSi2584d3yw2WhR4ZLq2\n- W1iMfUskDTRhoAbH-9VH\n 1338 \N 187.149.77.174 4089fcf4-f87e-4fdf-b750-b887a466a364 2020-10-20 17:03:27.474353 43021 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-19 22:04:28.983348000 Z\n- &1 2020-10-19 22:23:55.721991000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-20 17:03:52.583624029 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\nsign_in_count:\n- 287\n- 288\n 576 \N 187.149.77.174 e36209f2-6a83-42f5-97b6-5b2d99c7ca2a 2020-10-20 17:03:52.590478 43022 1 User \N \N 1 User \N update ---\nunique_session_id:\n- P2PMpuECwkUtcuAf5uob\n- _WEB-xDLJMATPqtNPxQ2\n 577 \N 187.149.77.174 e36209f2-6a83-42f5-97b6-5b2d99c7ca2a 2020-10-20 17:03:52.605732 43068 3223 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 d2f1d152-b3f6-4e2c-9627-1f7403e4cdec 2020-10-21 00:19:03.041968 43023 1125 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.733E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 733.0 187.149.77.174 c421d7f6-0534-4cf3-9ad1-64d479f21606 2020-10-20 17:18:24.881269 43024 3218 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1125\namount: !ruby/object:BigDecimal 18:0.1088E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1088E4\nstatus: 0\ndate_sale: 2020-10-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1537\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 a49113f4-0722-47c9-97ea-4a77df667ace 2020-10-20 17:42:38.523961 43025 2338 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.77.174 a49113f4-0722-47c9-97ea-4a77df667ace 2020-10-20 17:42:38.558373 43026 2124 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.77.174 a49113f4-0722-47c9-97ea-4a77df667ace 2020-10-20 17:42:38.594648 43027 3218 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 75aa9901-d584-49db-8879-ad9c3709969f 2020-10-20 17:43:39.759576 43028 4266 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1125\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1088E4\nmove_type: '1'\nsale_id: 3218\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1537\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1088E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1537 187.149.77.174 75aa9901-d584-49db-8879-ad9c3709969f 2020-10-20 17:43:39.812501 43029 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-19 22:23:55.721991000 Z\n- &1 2020-10-20 17:03:52.583624000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-20 18:05:56.901651510 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\nsign_in_count:\n- 288\n- 289\n 578 \N 187.149.77.174 34407318-af25-4474-8421-9c12d76207d4 2020-10-20 18:05:56.908971 43030 1 User \N \N 1 User \N update ---\nunique_session_id:\n- _WEB-xDLJMATPqtNPxQ2\n- bSHLpe4w2XmVwro8tAxY\n 579 \N 187.149.77.174 34407318-af25-4474-8421-9c12d76207d4 2020-10-20 18:05:56.924275 43031 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-19 16:44:45.969772000 Z\n- &1 2020-10-19 20:59:13.090068000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-20 18:25:06.083452599 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183148188\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945669\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945669\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\nsign_in_count:\n- 1992\n- 1993\n 3986 \N 189.186.72.137 ed5ac825-62ad-4abf-a119-111c49297b7f 2020-10-20 18:25:06.092356 43032 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CxqSWfvXAR59GC-vMyz3\n- 8Ebe3otr8x1zeo1JVE6E\n 3987 \N 189.186.72.137 ed5ac825-62ad-4abf-a119-111c49297b7f 2020-10-20 18:25:06.114021 43033 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 00:10:06.953700000 Z\n- &1 2020-10-17 17:35:15.538985000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-20 19:41:21.276041746 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183097919\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\nsign_in_count:\n- 296\n- 297\n 595 \N 189.186.72.137 ccac4b27-ca01-4a2b-9ac3-73858355b4a1 2020-10-20 19:41:21.310095 43034 18 User \N \N 18 User \N update ---\nunique_session_id:\n- dq2evFk6swRJve1xJ4AW\n- yCBFVFxos_NQ1FUjzfX3\n 596 \N 189.186.72.137 ccac4b27-ca01-4a2b-9ac3-73858355b4a1 2020-10-20 19:41:21.343169 43035 1126 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.89E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 890.0 189.186.72.137 a7a11202-dced-4b72-bbdc-fcef4345a26b 2020-10-20 19:54:03.080129 43036 4267 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1126\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 2957\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '2255'\n 1 movimiento de efectivo por venta con folio PV3-V-636 189.186.72.137 dccf2162-c4e0-4bc5-b895-07520f2e47ef 2020-10-20 19:58:02.309704 43037 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-19 20:59:13.090068000 Z\n- &1 2020-10-20 18:25:06.083452000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-20 20:17:50.264025593 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945669\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\nsign_in_count:\n- 1993\n- 1994\n 3988 \N 189.186.72.137 4b61bfe2-19b9-4906-b3a4-cb1203f42e1d 2020-10-20 20:17:50.270581 43038 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8Ebe3otr8x1zeo1JVE6E\n- T8CbVU92EBhrLMGdfy9C\n 3989 \N 189.186.72.137 4b61bfe2-19b9-4906-b3a4-cb1203f42e1d 2020-10-20 20:17:50.288898 43039 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-17 17:35:15.538985000 Z\n- &1 2020-10-20 19:41:21.276041000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-20 22:35:18.305363833 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\nsign_in_count:\n- 297\n- 298\n 597 \N 189.186.72.137 2761c1d3-76b2-4708-bd60-f3cf05df7fed 2020-10-20 22:35:18.319446 43040 18 User \N \N 18 User \N update ---\nunique_session_id:\n- yCBFVFxos_NQ1FUjzfX3\n- haJGQMthBrtxLmFeyVY5\n 598 \N 189.186.72.137 2761c1d3-76b2-4708-bd60-f3cf05df7fed 2020-10-20 22:35:18.349358 43041 3219 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1126\namount: !ruby/object:BigDecimal 18:0.42E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.42E3\nstatus: 0\ndate_sale: 2020-10-20\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-762\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 7e720d91-7a7b-43d0-9b8c-559251d5ee29 2020-10-20 22:36:49.003908 43042 2117 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.72.137 7e720d91-7a7b-43d0-9b8c-559251d5ee29 2020-10-20 22:36:49.039604 43043 3219 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 db132b96-cec5-4b51-a4d6-40fe9eea4ad8 2020-10-20 22:37:30.146033 43114 1127 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.174 549e3b78-1b53-4c3a-8096-285945451239 2020-10-22 00:54:01.162744 43304 2275 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 4 \N 189.186.72.137 1519ed88-6b2d-4417-a2e5-5638e893215c 2020-10-23 21:08:49.441442 43044 4268 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1126\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.42E3\nmove_type: '1'\nsale_id: 3219\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-762\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.8E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-762 189.186.72.137 db132b96-cec5-4b51-a4d6-40fe9eea4ad8 2020-10-20 22:37:30.173013 43045 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-20 17:03:52.583624000 Z\n- &1 2020-10-20 18:05:56.901651000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-20 22:41:13.353925454 Z\nsign_in_count:\n- 289\n- 290\n 580 \N 187.149.77.174 23cf89eb-3dc1-4a0a-bb99-47994b70eccc 2020-10-20 22:41:13.359783 43046 1 User \N \N 1 User \N update ---\nunique_session_id:\n- bSHLpe4w2XmVwro8tAxY\n- 9aypExUDGRYpKRQmT4yY\n 581 \N 187.149.77.174 23cf89eb-3dc1-4a0a-bb99-47994b70eccc 2020-10-20 22:41:13.373867 43047 3220 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1125\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-10-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1538\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 7c338026-1908-4311-b45c-b3579fc08614 2020-10-20 23:51:08.864825 43048 1885 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.77.174 7c338026-1908-4311-b45c-b3579fc08614 2020-10-20 23:51:08.891257 43049 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 28 \N 187.149.77.174 7c338026-1908-4311-b45c-b3579fc08614 2020-10-20 23:51:08.913843 43050 3220 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 0feb220f-ecae-4172-b3e4-a169414d0f9b 2020-10-20 23:51:16.33672 43051 4269 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1125\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3220\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1538\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1538 187.149.77.174 0feb220f-ecae-4172-b3e4-a169414d0f9b 2020-10-20 23:51:16.364463 43052 3220 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-1538 cancelada. 187.149.77.174 a5102619-11bf-4894-a1f8-1addb9f8c17a 2020-10-20 23:55:14.882945 43053 4269 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1125\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 3220\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1538\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.77.174 a5102619-11bf-4894-a1f8-1addb9f8c17a 2020-10-20 23:55:14.916631 43054 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.15E2\n 29 \N 187.149.77.174 a5102619-11bf-4894-a1f8-1addb9f8c17a 2020-10-20 23:55:14.959309 43055 1885 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.77.174 a5102619-11bf-4894-a1f8-1addb9f8c17a 2020-10-20 23:55:14.988158 43056 3221 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1125\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-10-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1539\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 d0fffa48-7c09-4361-9f96-37bcd95a3ae1 2020-10-20 23:55:31.073964 43057 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 30 \N 187.149.77.174 d0fffa48-7c09-4361-9f96-37bcd95a3ae1 2020-10-20 23:55:31.099377 43058 3221 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 cba3a0bd-f8f8-4a22-8e80-38294ab59807 2020-10-20 23:55:34.942709 43059 4270 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1125\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3221\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1539\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1539 187.149.77.174 cba3a0bd-f8f8-4a22-8e80-38294ab59807 2020-10-20 23:55:34.964775 43060 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-20 18:25:06.083452000 Z\n- &1 2020-10-20 20:17:50.264025000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-20 23:57:36.582811763 Z\nsign_in_count:\n- 1994\n- 1995\n 3990 \N 189.186.72.137 ed14445c-a6c6-4348-859f-ca1d511226e7 2020-10-20 23:57:36.58947 43061 4 User \N \N 4 User \N update ---\nunique_session_id:\n- T8CbVU92EBhrLMGdfy9C\n- sLxykMbY6cmY149PRE2c\n 3991 \N 189.186.72.137 ed14445c-a6c6-4348-859f-ca1d511226e7 2020-10-20 23:57:36.606522 43062 3222 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1125\namount: !ruby/object:BigDecimal 18:0.132707E4\ntax: !ruby/object:BigDecimal 18:0.14193E3\ndiscount: !ruby/object:BigDecimal 18:0.44E3\ntotal: !ruby/object:BigDecimal 18:0.1029E4\nstatus: 0\ndate_sale: 2020-10-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1540\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 bb94b0de-197c-4c4e-9257-45415a98d8fc 2020-10-20 23:58:01.177643 43063 1885 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.77.174 bb94b0de-197c-4c4e-9257-45415a98d8fc 2020-10-20 23:58:01.206156 43064 3222 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 1ddb2d17-25c1-4053-b799-38e2c567baad 2020-10-20 23:58:23.099646 43065 4271 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1125\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1029E4\nmove_type: '1'\nsale_id: 3222\ncardnumber: 3324\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1540\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1540 187.149.77.174 1ddb2d17-25c1-4053-b799-38e2c567baad 2020-10-20 23:58:23.120436 43066 3223 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1125\namount: !ruby/object:BigDecimal 18:0.65762E3\ntax: !ruby/object:BigDecimal 18:0.4138E2\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2020-10-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1541\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 891dad77-8e20-451b-9efa-101f904292a7 2020-10-21 00:18:59.41419 43069 4272 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1125\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 3223\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1541\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1541 187.149.77.174 d2f1d152-b3f6-4e2c-9627-1f7403e4cdec 2020-10-21 00:19:03.064805 43070 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-20 19:41:21.276041000 Z\n- &1 2020-10-20 22:35:18.305363000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-21 00:51:22.997216206 Z\nsign_in_count:\n- 298\n- 299\n 599 \N 189.186.72.137 e8680c98-81e7-422f-bd70-b1562ca18648 2020-10-21 00:51:23.007067 43071 18 User \N \N 18 User \N update ---\nunique_session_id:\n- haJGQMthBrtxLmFeyVY5\n- QQDqWoF99JTnxwi-gUty\n 600 \N 189.186.72.137 e8680c98-81e7-422f-bd70-b1562ca18648 2020-10-21 00:51:23.028784 43072 1150 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1126\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.72E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.81E3\nphysical_cash: !ruby/object:BigDecimal 18:0.131E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.72.137 5e2a8ef3-d596-43ab-bc3b-b467aeb184ec 2020-10-21 00:54:50.236821 43073 1126 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.72.137 5e2a8ef3-d596-43ab-bc3b-b467aeb184ec 2020-10-21 00:54:50.257445 43074 1151 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1125\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3416E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.24E4\ncash_fund: !ruby/object:BigDecimal 18:0.72E3\nphysical_cash: !ruby/object:BigDecimal 18:0.312E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.77.174 360cb0e0-31aa-4a50-9d3d-937c3aea3ce7 2020-10-21 00:55:01.829193 43075 1125 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.174 360cb0e0-31aa-4a50-9d3d-937c3aea3ce7 2020-10-21 00:55:01.845868 43076 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-20 18:05:56.901651000 Z\n- &1 2020-10-20 22:41:13.353925000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-21 03:40:16.697356190 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729483\n mask_addr: 4294967295\nsign_in_count:\n- 290\n- 291\n 582 \N 201.175.157.75 1f13e9a7-307d-4717-952f-8731f357a98f 2020-10-21 03:40:16.705828 43077 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 9aypExUDGRYpKRQmT4yY\n- i9Nn-YihNS-cyHxpP1Hs\n 583 \N 201.175.157.75 1f13e9a7-307d-4717-952f-8731f357a98f 2020-10-21 03:40:16.724384 43078 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-20 22:41:13.353925000 Z\n- &1 2020-10-21 03:40:16.697356000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-21 13:54:21.014277424 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729483\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729483\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729206\n mask_addr: 4294967295\nsign_in_count:\n- 291\n- 292\n 584 \N 201.175.156.54 d3213982-d910-48db-8c04-ae534b843cec 2020-10-21 13:54:21.056181 43079 1 User \N \N 1 User \N update ---\nunique_session_id:\n- i9Nn-YihNS-cyHxpP1Hs\n- NsTwZHWh3hmfyNwV4box\n 585 \N 201.175.156.54 d3213982-d910-48db-8c04-ae534b843cec 2020-10-21 13:54:21.095605 43080 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-19 20:52:02.790800000 Z\n- &1 2020-10-20 17:03:27.423451000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-21 16:59:24.600811629 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\nsign_in_count:\n- 667\n- 668\n 1339 \N 187.149.77.174 30eaeeb4-814c-4a01-8e39-6bf4734c14d6 2020-10-21 16:59:24.609825 43081 2 User \N \N 2 User \N update ---\nunique_session_id:\n- W1iMfUskDTRhoAbH-9VH\n- 6ADmahJJYmwv4VxQWN7y\n 1340 \N 187.149.77.174 30eaeeb4-814c-4a01-8e39-6bf4734c14d6 2020-10-21 16:59:24.63248 43082 1127 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.72E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 720.0 187.149.77.174 915d2742-5641-4a78-9a1b-d5208045b311 2020-10-21 17:01:15.933322 43083 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-21 03:40:16.697356000 Z\n- &1 2020-10-21 13:54:21.014277000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-21 20:22:24.048906138 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729483\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729206\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729206\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\nsign_in_count:\n- 292\n- 293\n 586 \N 187.149.77.174 a71e4643-072a-4144-b690-3039b3f79558 2020-10-21 20:22:24.068785 43084 1 User \N \N 1 User \N update ---\nunique_session_id:\n- NsTwZHWh3hmfyNwV4box\n- Hs5NdeWLtpKd7_X6GCqe\n 587 \N 187.149.77.174 a71e4643-072a-4144-b690-3039b3f79558 2020-10-21 20:22:24.088886 43085 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-20 20:17:50.264025000 Z\n- &1 2020-10-20 23:57:36.582811000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-21 22:22:33.368706647 Z\nsign_in_count:\n- 1995\n- 1996\n 3992 \N 189.186.72.137 ca75f225-cc10-4202-8bd9-8dcc5cddf97d 2020-10-21 22:22:33.374181 43086 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sLxykMbY6cmY149PRE2c\n- YsS_aX6XisdPLsjw93Dp\n 3993 \N 189.186.72.137 ca75f225-cc10-4202-8bd9-8dcc5cddf97d 2020-10-21 22:22:33.390114 43087 3224 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1127\namount: !ruby/object:BigDecimal 18:0.529E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.529E3\nstatus: 0\ndate_sale: 2020-10-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1542\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 39c09693-7590-4d5e-b689-5eb5b59a4417 2020-10-21 22:23:46.019223 43088 1644 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 187.149.77.174 39c09693-7590-4d5e-b689-5eb5b59a4417 2020-10-21 22:23:46.06866 43089 3224 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 6d045bd2-321d-4d9f-b3ce-9326b32b69f4 2020-10-21 22:24:11.371937 43090 4273 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1127\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.529E3\nmove_type: '1'\nsale_id: 3224\ncardnumber: 7306\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1542\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1542 187.149.77.174 6d045bd2-321d-4d9f-b3ce-9326b32b69f4 2020-10-21 22:24:11.396387 43091 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-21 13:54:21.014277000 Z\n- &1 2020-10-21 20:22:24.048906000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-21 22:25:21.216389546 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729206\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\nsign_in_count:\n- 293\n- 294\n 588 \N 187.149.77.174 84aec042-c3eb-413c-9c98-1add8757b19a 2020-10-21 22:25:21.223152 43092 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Hs5NdeWLtpKd7_X6GCqe\n- 5xYF38G8SyetNrfTExyz\n 589 \N 187.149.77.174 84aec042-c3eb-413c-9c98-1add8757b19a 2020-10-21 22:25:21.251008 43093 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-20 22:35:18.305363000 Z\n- &1 2020-10-21 00:51:22.997216000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-21 23:47:40.750526669 Z\nsign_in_count:\n- 299\n- 300\n 601 \N 189.186.72.137 6493172a-a5f5-4116-b142-be93f7d573ed 2020-10-21 23:47:40.756439 43094 18 User \N \N 18 User \N update ---\nunique_session_id:\n- QQDqWoF99JTnxwi-gUty\n- d87xnyPYALKmCZYgsAyX\n 602 \N 189.186.72.137 6493172a-a5f5-4116-b142-be93f7d573ed 2020-10-21 23:47:40.77243 43095 1128 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.81E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 810.0 189.186.72.137 3717589c-e964-4ee4-ae6c-aed60b732a64 2020-10-21 23:48:55.58483 43096 3225 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1128\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-10-21\nsaletype: 1\nseller_id: 29\nsale_code: PV3-V-763\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 a46e8c54-68c5-4bba-9022-682716531709 2020-10-21 23:49:08.98223 43097 2017 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 16 \N 189.186.72.137 a46e8c54-68c5-4bba-9022-682716531709 2020-10-21 23:49:09.006827 43098 3225 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 dfd66a37-0d07-4a6d-a6eb-001f90d171b8 2020-10-21 23:49:14.119651 43099 4274 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1128\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3225\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-763\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-763 189.186.72.137 dfd66a37-0d07-4a6d-a6eb-001f90d171b8 2020-10-21 23:49:14.142149 43100 3226 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1128\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-10-21\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-764\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 cba7d465-c8b3-4678-a443-c998c1ff8f38 2020-10-21 23:52:44.199117 43101 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 49 \N 189.186.72.137 cba7d465-c8b3-4678-a443-c998c1ff8f38 2020-10-21 23:52:44.227252 43102 3226 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 f8bbe3b3-e1ce-417a-a814-7ccf9d2a2a1b 2020-10-21 23:52:51.572598 43103 4275 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1128\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3226\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-764\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-764 189.186.72.137 f8bbe3b3-e1ce-417a-a814-7ccf9d2a2a1b 2020-10-21 23:52:51.598362 43104 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-21 20:22:24.048906000 Z\n- &1 2020-10-21 22:25:21.216389000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-21 23:53:55.851691535 Z\nsign_in_count:\n- 294\n- 295\n 590 \N 187.149.77.174 e546a196-6c0a-4c03-9154-a4511df7bb3c 2020-10-21 23:53:55.858581 43105 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 5xYF38G8SyetNrfTExyz\n- nhH2H5JPs6Tvyn5_wiNx\n 591 \N 187.149.77.174 e546a196-6c0a-4c03-9154-a4511df7bb3c 2020-10-21 23:53:55.874084 43106 415 Customer \N \N 18 User \N create ---\nnick_name: ANDREA CASTAÑOS\nphone: "(667) 349-7228"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANDREA CASTAÑOS fue registrado. 189.186.72.137 a2ad4814-a53d-44f0-874a-c626f8674875 2020-10-22 00:00:42.651739 43107 3227 Sale \N \N 18 User \N create ---\ncustomer_id: 415\nuser_id: 18\nopen_cash_register_id: 1128\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-10-21\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-765\nexpiration_date: 2020-11-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 7eb9a631-c7e2-4e51-b7ca-a5f20d7f63f9 2020-10-22 00:00:52.143633 43108 2341 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 189.186.72.137 7eb9a631-c7e2-4e51-b7ca-a5f20d7f63f9 2020-10-22 00:00:52.17131 43109 4276 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1128\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 3227\ncardnumber: 5554\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-765\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-765 189.186.72.137 3204cd82-d5ae-4346-bace-77b789e6c445 2020-10-22 00:01:13.465269 43110 3227 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.72.137 a8b0150b-53de-44b9-b456-12876ff6d847 2020-10-22 00:01:14.998537 43111 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-20 23:57:36.582811000 Z\n- &1 2020-10-21 22:22:33.368706000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-22 00:18:03.454739761 Z\nsign_in_count:\n- 1996\n- 1997\n 3994 \N 189.186.72.137 61d2f3c3-47fc-42d8-b2c8-822914931f79 2020-10-22 00:18:03.476049 43112 4 User \N \N 4 User \N update ---\nunique_session_id:\n- YsS_aX6XisdPLsjw93Dp\n- dwt_o5zAAByiEmqTqt6C\n 3995 \N 189.186.72.137 61d2f3c3-47fc-42d8-b2c8-822914931f79 2020-10-22 00:18:03.501929 43113 1152 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1127\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.529E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.72E3\nphysical_cash: !ruby/object:BigDecimal 18:0.72E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.77.174 549e3b78-1b53-4c3a-8096-285945451239 2020-10-22 00:54:01.145976 43115 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-21 00:51:22.997216000 Z\n- &1 2020-10-21 23:47:40.750526000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-22 00:56:41.483723308 Z\nsign_in_count:\n- 300\n- 301\n 603 \N 189.186.72.137 3afa143e-244c-46c4-98b8-6a338c639f15 2020-10-22 00:56:41.489699 43116 18 User \N \N 18 User \N update ---\nunique_session_id:\n- d87xnyPYALKmCZYgsAyX\n- 9S7SNuQwy9pFLLgEf7jY\n 604 \N 189.186.72.137 3afa143e-244c-46c4-98b8-6a338c639f15 2020-10-22 00:56:41.50427 43117 1153 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1128\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.2898E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.808E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3308E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.72.137 f48f426d-38b0-447c-8637-799c04ddd4d6 2020-10-22 00:57:24.940938 43118 1128 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.72.137 f48f426d-38b0-447c-8637-799c04ddd4d6 2020-10-22 00:57:24.954744 43119 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-21 22:22:33.368706000 Z\n- &1 2020-10-22 00:18:03.454739000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-22 00:57:45.935930991 Z\nsign_in_count:\n- 1997\n- 1998\n 3996 \N 189.186.72.137 d8981c3d-94db-4443-9829-cd55e929fc9c 2020-10-22 00:57:45.943123 43120 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dwt_o5zAAByiEmqTqt6C\n- 41MKsJ2Zmzo1Apb1dcM3\n 3997 \N 189.186.72.137 d8981c3d-94db-4443-9829-cd55e929fc9c 2020-10-22 00:57:45.964992 43121 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-20 17:03:27.423451000 Z\n- &1 2020-10-21 16:59:24.600811000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-22 16:31:05.622725200 Z\nsign_in_count:\n- 668\n- 669\n 1341 \N 187.149.77.174 03ec2e06-5c5e-4fd4-a141-90c6d64ef625 2020-10-22 16:31:05.651258 43122 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 6ADmahJJYmwv4VxQWN7y\n- c_Wkz3HMkmap9fwEyCW8\n 1342 \N 187.149.77.174 03ec2e06-5c5e-4fd4-a141-90c6d64ef625 2020-10-22 16:31:05.673505 43123 1129 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.72E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 720.0 187.149.77.174 1bcefdd1-d2d8-4401-8751-3de8e645572f 2020-10-22 16:34:20.335469 43124 1892 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.77.174 56019591-4953-48c8-9022-9c2afabbf2af 2020-10-22 17:49:54.268882 43125 1892 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.77.174 021f9c42-9bd5-4430-a0eb-73790ce82dc7 2020-10-22 17:49:57.339262 43126 701 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-10-22\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.77.174 f9dbe6c6-1b71-41de-a29b-dec1dd7f25ac 2020-10-22 18:28:26.956507 43127 699 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-10-22\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.77.174 e1962954-d079-430e-bb7f-3995db0d5f0a 2020-10-22 18:29:33.951316 43128 2362 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 959\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.77.174 e1962954-d079-430e-bb7f-3995db0d5f0a 2020-10-22 18:29:33.973299 43129 698 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-10-22\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.77.174 f1e7d9d2-d417-418d-874a-f857b222befa 2020-10-22 18:29:54.189192 43130 1638 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.77.174 f1e7d9d2-d417-418d-874a-f857b222befa 2020-10-22 18:29:54.207064 43131 2241 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.77.174 f1e7d9d2-d417-418d-874a-f857b222befa 2020-10-22 18:29:54.224777 43132 2240 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.77.174 f1e7d9d2-d417-418d-874a-f857b222befa 2020-10-22 18:29:54.242235 43133 784 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 16 \N 187.149.77.174 41032791-7b90-4d39-ab9d-d64140b325a4 2020-10-22 18:30:14.825188 43134 784 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 17 \N 187.149.77.174 04682f27-5c3b-4af6-9b35-9db512aeffc9 2020-10-22 18:30:18.56603 43135 1058 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.77.174 ac7a84f8-9018-455a-bb01-d64e96342f7c 2020-10-22 18:30:30.179082 43136 1058 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.77.174 a00ed87e-8a45-4270-b8e5-02e26d51fb7a 2020-10-22 18:30:33.131295 43137 1646 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.77.174 acfa588a-a18c-451f-9516-e15cd9bdce56 2020-10-22 18:30:47.582976 43138 1636 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.77.174 64164909-1953-4c07-a771-ce6e26d205ad 2020-10-22 18:31:02.944457 43139 1636 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.77.174 641b1aa7-4402-4123-9932-01aabf23b85d 2020-10-22 18:31:06.192692 43140 709 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.77.174 bb2eeedc-e56a-4225-9d3b-bf1facaab29f 2020-10-22 18:31:22.740402 43141 709 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.77.174 b80f3a10-bef8-4876-9f92-268a8faf1f25 2020-10-22 18:31:27.988552 43142 8 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.77.174 59250e53-07ee-424f-b781-bd4badee0c38 2020-10-22 18:31:35.783231 43143 8 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.77.174 a4038598-ec87-4015-8e4f-05567cdc59ad 2020-10-22 18:31:39.873982 43144 702 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-10-22\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.77.174 6a76fe35-5e90-496b-ab69-62ced711439f 2020-10-22 18:31:41.609213 43305 2095 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.72.137 1519ed88-6b2d-4417-a2e5-5638e893215c 2020-10-23 21:08:49.468612 43145 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-22 00:18:03.454739000 Z\n- &1 2020-10-22 00:57:45.935930000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-22 18:33:42.053637868 Z\nsign_in_count:\n- 1998\n- 1999\n 3998 \N 189.186.72.137 dcb7b6d0-e5be-4570-84c4-de9497088fd7 2020-10-22 18:33:42.060009 43146 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 41MKsJ2Zmzo1Apb1dcM3\n- 77jJk2tRfu9c3hufb7xR\n 3999 \N 189.186.72.137 dcb7b6d0-e5be-4570-84c4-de9497088fd7 2020-10-22 18:33:42.076855 43147 1366 Product \N \N 4 User \N create ---\nsku: BOL-1366\nname: ENMI222\ndescription: BACK PACK NEGRA GRANDE\nprice_base: !ruby/object:BigDecimal 18:0.10495E4\nprice_sale: !ruby/object:BigDecimal 18:0.2099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170690354'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1366 fue creado. 189.186.72.137 fb607ce9-a269-417a-81aa-9f3a7db56134 2020-10-22 18:38:08.116493 43148 2363 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1366\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 fb607ce9-a269-417a-81aa-9f3a7db56134 2020-10-22 18:38:08.163113 43149 1367 Product \N \N 4 User \N create ---\nsku: BOL-1367\nname: 1BLCP20934\ndescription: BACK PACK NEGRO CON DETALLES ORO ROSADO\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170795189'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1367 fue creado. 189.186.72.137 fa0369c4-28e2-4c51-b428-e52bb75cbaa8 2020-10-22 18:41:13.083405 43150 2364 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1367\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 fa0369c4-28e2-4c51-b428-e52bb75cbaa8 2020-10-22 18:41:13.163826 43151 1368 Product \N \N 4 User \N create ---\nsku: BOL-1368\nname: 2BLCV20359\ndescription: 'CROSS BODY NEGRO '\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170821635'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1368 fue creado. 189.186.72.137 1d15e6ba-ba5d-48ef-a81f-7f0d46782e54 2020-10-22 18:45:14.677598 43152 2365 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1368\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 1d15e6ba-ba5d-48ef-a81f-7f0d46782e54 2020-10-22 18:45:14.734318 43153 1369 Product \N \N 4 User \N create ---\nsku: BOL-1369\nname: 1BLCV20264\ndescription: BACK PACK LETRAS\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170818468'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1369 fue creado. 189.186.72.137 65047356-122e-4dc4-8276-9abcb17937a8 2020-10-22 18:47:14.736133 43154 2366 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1369\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 65047356-122e-4dc4-8276-9abcb17937a8 2020-10-22 18:47:14.777008 43155 1370 Product \N \N 4 User \N create ---\nsku: BOL-1370\nname: 2BLCV20368\ndescription: CROSSBODY LETRAS\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170821956'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1370 fue creado. 189.186.72.137 2bf800a4-aab3-4899-bd5d-21cf12fd702e 2020-10-22 18:48:19.704736 43156 2367 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1370\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 2bf800a4-aab3-4899-bd5d-21cf12fd702e 2020-10-22 18:48:19.747583 43157 414 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-108\namount: !ruby/object:BigDecimal 18:0.6746E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6746E4\nobservations: ''\npurchase_date: 2020-10-22\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-108 por $ 6746.0 MXN creada. 189.186.72.137 2cc33618-c8e4-48f1-ba3b-caac9e1fd87a 2020-10-22 18:52:40.890028 43158 2364 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.72.137 2cc33618-c8e4-48f1-ba3b-caac9e1fd87a 2020-10-22 18:52:40.915102 43159 2365 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.72.137 2cc33618-c8e4-48f1-ba3b-caac9e1fd87a 2020-10-22 18:52:40.940787 43160 2366 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.72.137 2cc33618-c8e4-48f1-ba3b-caac9e1fd87a 2020-10-22 18:52:40.96435 43161 2363 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.72.137 2cc33618-c8e4-48f1-ba3b-caac9e1fd87a 2020-10-22 18:52:40.987833 43162 2367 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.72.137 2cc33618-c8e4-48f1-ba3b-caac9e1fd87a 2020-10-22 18:52:41.010949 43163 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-21 22:25:21.216389000 Z\n- &1 2020-10-21 23:53:55.851691000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-22 19:49:57.052586118 Z\nsign_in_count:\n- 295\n- 296\n 592 \N 187.149.77.174 ba6a82b2-d413-4bec-a858-540f0dffdda1 2020-10-22 19:49:57.080069 43164 1 User \N \N 1 User \N update ---\nunique_session_id:\n- nhH2H5JPs6Tvyn5_wiNx\n- nqxjoSjxZMiesCq2rwvw\n 593 \N 187.149.77.174 ba6a82b2-d413-4bec-a858-540f0dffdda1 2020-10-22 19:49:57.103031 43165 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-21 23:53:55.851691000 Z\n- &1 2020-10-22 19:49:57.052586000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-22 20:22:26.564450499 Z\nsign_in_count:\n- 296\n- 297\n 594 \N 187.149.77.174 e70aecb7-9c3f-45ce-8d44-198d813da181 2020-10-22 20:22:26.572452 43166 1 User \N \N 1 User \N update ---\nunique_session_id:\n- nqxjoSjxZMiesCq2rwvw\n- DQXxW_zof-3hXdLcYcV4\n 595 \N 187.149.77.174 e70aecb7-9c3f-45ce-8d44-198d813da181 2020-10-22 20:22:26.590771 43167 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-21 23:47:40.750526000 Z\n- &1 2020-10-22 00:56:41.483723000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-22 20:51:48.053568963 Z\nsign_in_count:\n- 301\n- 302\n 605 \N 189.186.72.137 98d18f0d-9081-4040-8291-19abc244cea2 2020-10-22 20:51:48.059334 43168 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 9S7SNuQwy9pFLLgEf7jY\n- jVvooyo9MVje-2sdVu18\n 606 \N 189.186.72.137 98d18f0d-9081-4040-8291-19abc244cea2 2020-10-22 20:51:48.074613 43169 1130 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.808E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 808.0 189.186.72.137 769abe9c-daec-421b-a5c4-e9dc27370672 2020-10-22 20:52:05.340465 43170 3228 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1130\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-10-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-766\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 2ca26f79-4f3a-486c-8a74-d435a0659c2d 2020-10-22 20:52:25.880534 43171 2367 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.72.137 2ca26f79-4f3a-486c-8a74-d435a0659c2d 2020-10-22 20:52:25.920152 43172 3228 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 0cc772bd-52e0-4e74-bf33-b8bd8068b218 2020-10-22 20:52:30.76532 43173 4277 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1130\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 3228\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-766\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-766 189.186.72.137 0cc772bd-52e0-4e74-bf33-b8bd8068b218 2020-10-22 20:52:30.785765 43174 3229 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1129\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-10-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1543\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 e32e7463-e693-448c-a95c-cb928e83a75d 2020-10-22 22:28:43.21691 43175 810 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 16 \N 187.149.77.174 e32e7463-e693-448c-a95c-cb928e83a75d 2020-10-22 22:28:43.242328 43176 3229 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 6642fdc7-d1d4-4857-97e9-6d2247336461 2020-10-22 22:28:47.380316 43177 4278 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1129\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3229\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1543\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1543 187.149.77.174 6642fdc7-d1d4-4857-97e9-6d2247336461 2020-10-22 22:28:47.39994 43178 4279 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1130\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2945\ncardnumber: 1222\npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-629 189.186.72.137 25afa8af-28a7-4041-beec-ec97cc0a5bdd 2020-10-22 23:33:57.589738 43179 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-22 00:57:45.935930000 Z\n- &1 2020-10-22 18:33:42.053637000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-22 23:35:31.017285922 Z\nsign_in_count:\n- 1999\n- 2000\n 4000 \N 189.186.72.137 71bd2146-9feb-46c2-8710-d9cef2fe52af 2020-10-22 23:35:31.022835 43180 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 77jJk2tRfu9c3hufb7xR\n- KcEzHq4ozW-WbEgzmttY\n 4001 \N 189.186.72.137 71bd2146-9feb-46c2-8710-d9cef2fe52af 2020-10-22 23:35:31.040644 43181 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-22 00:56:41.483723000 Z\n- &1 2020-10-22 20:51:48.053568000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-22 23:38:54.451514177 Z\nsign_in_count:\n- 302\n- 303\n 607 \N 189.186.72.137 1cea7c18-b465-4c63-aeb3-adc566dc57c3 2020-10-22 23:38:54.457776 43182 18 User \N \N 18 User \N update ---\nunique_session_id:\n- jVvooyo9MVje-2sdVu18\n- Z9MeQ8ZJe8gxSy8XygYW\n 608 \N 189.186.72.137 1cea7c18-b465-4c63-aeb3-adc566dc57c3 2020-10-22 23:38:54.470526 43183 3230 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1130\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-10-22\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-767\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 d81e7e0b-6a7c-44ed-a679-8cdeea66bbb5 2020-10-22 23:39:15.347281 43184 2367 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.72.137 d81e7e0b-6a7c-44ed-a679-8cdeea66bbb5 2020-10-22 23:39:15.377855 43185 3230 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 a9f3c00b-680b-4c7e-93ee-3f68e05854e6 2020-10-22 23:39:29.343676 43186 4280 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1130\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3230\ncardnumber: 1525\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-767\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-767 189.186.72.137 a9f3c00b-680b-4c7e-93ee-3f68e05854e6 2020-10-22 23:39:29.365659 43208 417 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-110\namount: !ruby/object:BigDecimal 18:0.20985E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.20985E4\nobservations: ''\npurchase_date: 2020-10-22\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-110 por $ 2098.5 MXN creada. 189.186.72.137 d22bba19-b1b3-45ef-81ae-59272222ccaa 2020-10-23 00:23:37.924663 43187 1371 Product \N \N 18 User \N create ---\nsku: ZAP-1371\nname: DIRAR\ndescription: TENNIS NEGRO Y ROSA\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170831276'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 13\nproduct_service_key: '01010101'\n 1 El producto ZAP-1371 fue creado. 189.186.72.137 53a5b408-5a5a-4900-b47b-86b748bae0f7 2020-10-22 23:48:04.893924 43188 2368 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1371\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 53a5b408-5a5a-4900-b47b-86b748bae0f7 2020-10-22 23:48:04.968502 43189 415 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-109\namount: !ruby/object:BigDecimal 18:0.224875E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.224875E5\nobservations: ''\npurchase_date: 2020-10-22\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-109 por $ 22487.5 MXN creada. 189.186.72.137 5099c3be-8e1e-4929-af93-4ced558b4e33 2020-10-22 23:48:19.311162 43190 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.25E2\n 2 \N 189.186.72.137 5099c3be-8e1e-4929-af93-4ced558b4e33 2020-10-22 23:48:19.343674 43191 3231 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1130\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-10-22\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-768\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 34613b05-8ccd-417e-8916-1dfa29b8bd04 2020-10-22 23:48:38.579859 43192 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.25E2\n- !ruby/object:BigDecimal 18:0.24E2\n 3 \N 189.186.72.137 34613b05-8ccd-417e-8916-1dfa29b8bd04 2020-10-22 23:48:38.620559 43193 3231 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 fc8c901e-1520-4b9f-aeac-dae3581428ed 2020-10-22 23:48:43.19465 43194 4281 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1130\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 3231\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-768\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-768 189.186.72.137 fc8c901e-1520-4b9f-aeac-dae3581428ed 2020-10-22 23:48:43.222424 43195 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-22 19:49:57.052586000 Z\n- &1 2020-10-22 20:22:26.564450000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-23 00:02:27.455953151 Z\nsign_in_count:\n- 297\n- 298\n 596 \N 187.149.77.174 a5105a27-d33c-4d61-84e4-b96e733aa6d0 2020-10-23 00:02:27.463407 43196 1 User \N \N 1 User \N update ---\nunique_session_id:\n- DQXxW_zof-3hXdLcYcV4\n- SVp_ZGwh2sFzLoSNnHYu\n 597 \N 187.149.77.174 a5105a27-d33c-4d61-84e4-b96e733aa6d0 2020-10-23 00:02:27.478477 43197 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-22 18:33:42.053637000 Z\n- &1 2020-10-22 23:35:31.017285000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-23 00:07:17.418989235 Z\nsign_in_count:\n- 2000\n- 2001\n 4002 \N 189.186.72.137 7494bf01-d4ad-4242-953b-260be04ac99d 2020-10-23 00:07:17.424563 43198 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KcEzHq4ozW-WbEgzmttY\n- 6DPtsrZG8b4wS-GrXbHt\n 4003 \N 189.186.72.137 7494bf01-d4ad-4242-953b-260be04ac99d 2020-10-23 00:07:17.442229 43199 1372 Product \N \N 4 User \N create ---\nsku: CAR-1372\nname: 2BICV20327\ndescription: CARTERA CROSSBODY NEGRA Y BEIGE\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170820461'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1372 fue creado. 189.186.72.137 17c54be2-9dbd-4e03-b43f-f9a7b00b7cd5 2020-10-23 00:15:38.129863 43200 2369 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1372\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 17c54be2-9dbd-4e03-b43f-f9a7b00b7cd5 2020-10-23 00:15:38.177414 43201 416 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-168\namount: !ruby/object:BigDecimal 18:0.198385E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.198385E5\nobservations: ''\npurchase_date: 2020-10-22\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-168 por $ 19838.5 MXN creada. 189.186.72.137 ab1b9230-d478-4553-ab4f-640d73614cc4 2020-10-23 00:20:57.835303 43202 2369 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.72.137 ab1b9230-d478-4553-ab4f-640d73614cc4 2020-10-23 00:20:57.858527 43203 2370 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1369\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 ab1b9230-d478-4553-ab4f-640d73614cc4 2020-10-23 00:20:57.891562 43204 2371 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1370\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 ab1b9230-d478-4553-ab4f-640d73614cc4 2020-10-23 00:20:57.927464 43205 2372 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1366\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 ab1b9230-d478-4553-ab4f-640d73614cc4 2020-10-23 00:20:57.964752 43206 2373 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1361\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 ab1b9230-d478-4553-ab4f-640d73614cc4 2020-10-23 00:20:58.002021 43207 2374 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1371\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.17E2\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 ab1b9230-d478-4553-ab4f-640d73614cc4 2020-10-23 00:20:58.037981 43301 2336 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.72.137 1519ed88-6b2d-4417-a2e5-5638e893215c 2020-10-23 21:08:49.366934 43209 2375 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1372\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 d22bba19-b1b3-45ef-81ae-59272222ccaa 2020-10-23 00:23:37.950136 43210 2369 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.72.137 f2eb178c-4f52-4fcb-8765-6d3d7cd986c7 2020-10-23 00:24:17.463579 43211 703 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-10-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.72.137 94b194f2-230e-4e9a-b61e-c7f5e816850c 2020-10-23 00:24:29.106481 43212 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-22 20:51:48.053568000 Z\n- &1 2020-10-22 23:38:54.451514000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-23 00:24:51.224827997 Z\nsign_in_count:\n- 303\n- 304\n 609 \N 189.186.72.137 96115c65-fd55-4cc7-99a8-4db2b123ee07 2020-10-23 00:24:51.230321 43213 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Z9MeQ8ZJe8gxSy8XygYW\n- JKtcvs4rTn5iX4f4CzqS\n 610 \N 189.186.72.137 96115c65-fd55-4cc7-99a8-4db2b123ee07 2020-10-23 00:24:51.242894 43214 703 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-10-22\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.72.137 d74ebdd0-1a0d-4642-892d-4915a8dd3833 2020-10-23 00:25:03.072032 43215 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.72.137 d74ebdd0-1a0d-4642-892d-4915a8dd3833 2020-10-23 00:25:03.096716 43216 702 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-10-22\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.72.137 d7e9daad-919d-41f8-9172-96f07352d77b 2020-10-23 00:25:15.457658 43217 2376 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 10\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 d7e9daad-919d-41f8-9172-96f07352d77b 2020-10-23 00:25:15.487042 43218 1529 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.72.137 d7e9daad-919d-41f8-9172-96f07352d77b 2020-10-23 00:25:15.507198 43219 1902 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.72.137 d7e9daad-919d-41f8-9172-96f07352d77b 2020-10-23 00:25:15.52765 43220 1766 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.72.137 d7e9daad-919d-41f8-9172-96f07352d77b 2020-10-23 00:25:15.551947 43221 857 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.72.137 d7e9daad-919d-41f8-9172-96f07352d77b 2020-10-23 00:25:15.577144 43222 831 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.6E1\n 9 \N 189.186.72.137 d7e9daad-919d-41f8-9172-96f07352d77b 2020-10-23 00:25:15.601886 43223 701 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-10-22\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.72.137 3880eef8-f307-4a54-a4ad-0393df402180 2020-10-23 00:25:26.45494 43224 1907 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.72.137 3880eef8-f307-4a54-a4ad-0393df402180 2020-10-23 00:25:26.473177 43225 416 Customer \N \N 18 User \N create ---\nnick_name: JOSEFINA\nphone: "(667) 202-5478"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JOSEFINA fue registrado. 189.186.72.137 9f7c94d8-ff93-4708-ba38-297659b89162 2020-10-23 00:26:39.426544 43226 3232 Sale \N \N 18 User \N create ---\ncustomer_id: 416\nuser_id: 18\nopen_cash_register_id: 1130\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-10-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-769\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 7feca458-c61f-4498-8f6d-942d9ebc2978 2020-10-23 00:26:54.758189 43227 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.72.137 7feca458-c61f-4498-8f6d-942d9ebc2978 2020-10-23 00:26:54.800652 43228 3232 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 04567ef8-bf8b-491b-a8a1-2f0dd8f5babc 2020-10-23 00:26:58.471912 43229 4282 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1130\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 3232\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-769\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-769 189.186.72.137 04567ef8-bf8b-491b-a8a1-2f0dd8f5babc 2020-10-23 00:26:58.493373 43230 3232 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-769 cancelada. 189.186.72.137 e077600d-180d-442d-a8f0-51ff3f2f4553 2020-10-23 00:27:06.733452 43231 4282 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1130\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3232\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-769\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.72.137 e077600d-180d-442d-a8f0-51ff3f2f4553 2020-10-23 00:27:06.768265 43232 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.72.137 e077600d-180d-442d-a8f0-51ff3f2f4553 2020-10-23 00:27:06.805378 43233 3233 Sale \N \N 18 User \N create ---\ncustomer_id: 416\nuser_id: 18\nopen_cash_register_id: 1130\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-10-22\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-770\nexpiration_date: 2020-11-26\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 c5882ef0-8ece-4416-8682-ef98cc79fe62 2020-10-23 00:27:27.2031 43234 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.72.137 c5882ef0-8ece-4416-8682-ef98cc79fe62 2020-10-23 00:27:27.228048 43302 2272 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.72.137 1519ed88-6b2d-4417-a2e5-5638e893215c 2020-10-23 21:08:49.389941 43235 4283 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1130\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3233\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-770\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-770 189.186.72.137 b4d1e481-fc70-4b1b-93e3-4b2a5babbead 2020-10-23 00:27:31.999395 43236 3233 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.72.137 81bedaa3-0355-4910-88f9-47d4c3484d1c 2020-10-23 00:27:33.058684 43237 1154 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1129\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.699E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.719E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1419E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.77.174 8458177f-9420-47ce-9f85-c4a8d7b3c2ad 2020-10-23 00:56:40.341096 43238 1129 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.174 8458177f-9420-47ce-9f85-c4a8d7b3c2ad 2020-10-23 00:56:40.359784 43239 1373 Product \N \N 18 User \N create ---\nsku: ZAP-1373\nname: GURMA\ndescription: TENNIS BLANCOS\nprice_base: !ruby/object:BigDecimal 18:0.5995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 13\nproduct_service_key: '01010101'\n 1 El producto ZAP-1373 fue creado. 189.186.72.137 0b5042b2-9e8a-467a-8457-0e0af7ef88ce 2020-10-23 01:00:35.611772 43240 1373 Product \N \N 18 User \N update ---\nbarcode:\n- ''\n- '0001373'\n 2 \N 189.186.72.137 0b5042b2-9e8a-467a-8457-0e0af7ef88ce 2020-10-23 01:00:35.645618 43241 2377 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1373\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 0b5042b2-9e8a-467a-8457-0e0af7ef88ce 2020-10-23 01:00:35.672277 43242 418 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-111\namount: !ruby/object:BigDecimal 18:0.41965E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.41965E4\nobservations: ''\npurchase_date: 2020-10-22\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-111 por $ 4196.5 MXN creada. 189.186.72.137 633f858f-8c71-45a8-8a2f-f555d35bbf40 2020-10-23 01:01:18.446365 43243 2377 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.7E1\n 2 \N 189.186.72.137 633f858f-8c71-45a8-8a2f-f555d35bbf40 2020-10-23 01:01:18.47385 43244 3234 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1130\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-10-22\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-771\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 5c031b3c-92d3-41d1-95ca-b741916f8e0f 2020-10-23 01:03:17.400056 43245 2377 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.72.137 5c031b3c-92d3-41d1-95ca-b741916f8e0f 2020-10-23 01:03:17.428605 43246 3234 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 3ac6c056-3c5a-4ff9-9caa-8c14468c954f 2020-10-23 01:03:30.65142 43247 4284 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1130\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 3234\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-771\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1122'\n 1 movimiento de efectivo por venta con folio PV3-V-771 189.186.72.137 3ac6c056-3c5a-4ff9-9caa-8c14468c954f 2020-10-23 01:03:30.684971 43248 4285 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1130\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 3234\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-771\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1122'\n 1 movimiento de efectivo por venta con folio PV3-V-771 189.186.72.137 da96a9e9-0d59-4c91-9b92-86c3c02d55d4 2020-10-23 01:03:38.302795 43249 1155 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1130\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.6996E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.45E4\ncash_fund: !ruby/object:BigDecimal 18:0.905E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5405E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.72.137 0a660346-86ab-47f5-9e12-0f590c48f60f 2020-10-23 01:16:31.109959 43250 1130 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.72.137 0a660346-86ab-47f5-9e12-0f590c48f60f 2020-10-23 01:16:31.129178 43251 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-22 23:35:31.017285000 Z\n- &1 2020-10-23 00:07:17.418989000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-23 01:18:26.295492130 Z\nsign_in_count:\n- 2001\n- 2002\n 4004 \N 189.186.72.137 ad949040-829f-408d-b5d7-094f2c0f4f0f 2020-10-23 01:18:26.303973 43252 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6DPtsrZG8b4wS-GrXbHt\n- HWuMFCDAc2amMYuxnzp7\n 4005 \N 189.186.72.137 ad949040-829f-408d-b5d7-094f2c0f4f0f 2020-10-23 01:18:26.323003 43253 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-22 20:22:26.564450000 Z\n- &1 2020-10-23 00:02:27.455953000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-23 01:40:45.885493226 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938556\n mask_addr: 4294967295\nsign_in_count:\n- 298\n- 299\n 598 \N 200.68.151.252 db325960-5d67-46b8-9458-dbdfff98fc58 2020-10-23 01:40:45.892997 43254 1 User \N \N 1 User \N update ---\nunique_session_id:\n- SVp_ZGwh2sFzLoSNnHYu\n- xyF9F3xt8BEssfchvVRZ\n 599 \N 200.68.151.252 db325960-5d67-46b8-9458-dbdfff98fc58 2020-10-23 01:40:45.919017 43255 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-23 00:07:17.418989000 Z\n- &1 2020-10-23 01:18:26.295492000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-23 05:18:22.343452017 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535296\n mask_addr: 4294967295\nsign_in_count:\n- 2002\n- 2003\n 4006 \N 177.228.101.0 789ca458-e929-4cc6-8348-30f017cc946f 2020-10-23 05:18:22.371765 43256 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HWuMFCDAc2amMYuxnzp7\n- kztR8UVyTwJzJQD9a-Cc\n 4007 \N 177.228.101.0 789ca458-e929-4cc6-8348-30f017cc946f 2020-10-23 05:18:22.396407 43257 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-21 16:59:24.600811000 Z\n- &1 2020-10-22 16:31:05.622725000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-23 16:35:42.999298382 Z\nsign_in_count:\n- 669\n- 670\n 1343 \N 187.149.77.174 46d593ae-a03e-41ae-a47d-7ce378d33949 2020-10-23 16:35:43.028485 43258 2 User \N \N 2 User \N update ---\nunique_session_id:\n- c_Wkz3HMkmap9fwEyCW8\n- WfuKyHGHzB6F_q7Cmr24\n 1344 \N 187.149.77.174 46d593ae-a03e-41ae-a47d-7ce378d33949 2020-10-23 16:35:43.054856 43259 1131 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.719E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 719.0 187.149.77.174 fb6c9b68-4989-495a-9fdd-4cf8922a2ccd 2020-10-23 16:36:01.374747 43260 4286 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1131\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.349E3\nmove_type: '1'\nsale_id: 3020\ncardnumber: 7355\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1443 187.149.77.174 3f94bc77-2149-4c15-b9c9-a29ac830d942 2020-10-23 16:36:46.425185 43261 3020 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.77.174 677a2078-eb56-4470-8548-0b109719b7ac 2020-10-23 16:36:51.60579 43262 4287 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1051\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 2888\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.77.174 0204593b-bfa6-4736-a290-42bf6522fea7 2020-10-23 18:02:36.658405 43263 4287 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 1051\n- 1131\n 2 movimiento de efectivo por venta con folio PV3-V-592 187.149.77.174 0204593b-bfa6-4736-a290-42bf6522fea7 2020-10-23 18:02:36.686014 43264 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-22 23:38:54.451514000 Z\n- &1 2020-10-23 00:24:51.224827000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-23 18:45:07.872300828 Z\nsign_in_count:\n- 304\n- 305\n 611 \N 189.186.72.137 d846b2c2-db56-406e-aa68-4b80029fc76e 2020-10-23 18:45:07.903175 43265 18 User \N \N 18 User \N update ---\nunique_session_id:\n- JKtcvs4rTn5iX4f4CzqS\n- DWFWWNqy-GCXAbBxnLkG\n 612 \N 189.186.72.137 d846b2c2-db56-406e-aa68-4b80029fc76e 2020-10-23 18:45:07.934747 43266 1132 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.905E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 905.0 189.186.72.137 be1a973b-7867-4545-8a49-0947e6bb4c01 2020-10-23 18:46:45.476766 43267 417 Customer \N \N 18 User \N create ---\nnick_name: MARIA GUADALUPE\nphone: "(667) 499-7133"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIA GUADALUPE fue registrado. 189.186.72.137 f98fc7aa-616c-4262-a6c1-a040eb52abae 2020-10-23 18:49:20.563935 43268 1374 Product \N \N 18 User \N create ---\nsku: ZAP-1374\nname: AHYAM\ndescription: MOCASINES NEGROS Y CAFES\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170830279'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 13\nproduct_service_key: '01010101'\n 1 El producto ZAP-1374 fue creado. 189.186.72.137 2ff3946d-7657-48e9-914a-2a903d9b2835 2020-10-23 18:51:52.063253 43269 2378 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1374\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 2ff3946d-7657-48e9-914a-2a903d9b2835 2020-10-23 18:51:52.114123 43270 1375 Product \N \N 18 User \N create ---\nsku: ZAP-1375\nname: MEIJAM\ndescription: TENNIS NEGROS CLOE\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 13\nproduct_service_key: '01010101'\n 1 El producto ZAP-1375 fue creado. 189.186.72.137 0e3adea7-4d95-45f3-a01f-90b2387c0ec9 2020-10-23 18:53:18.315717 43271 1375 Product \N \N 18 User \N update ---\nbarcode:\n- ''\n- '0001375'\n 2 \N 189.186.72.137 0e3adea7-4d95-45f3-a01f-90b2387c0ec9 2020-10-23 18:53:18.3473 43272 2379 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1375\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 0e3adea7-4d95-45f3-a01f-90b2387c0ec9 2020-10-23 18:53:18.37492 43273 1376 Product \N \N 18 User \N create ---\nsku: ZAP-1376\nname: GURMA\ndescription: TENNIS BLANCOS\nprice_base: !ruby/object:BigDecimal 18:0.5995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170810714'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 13\nproduct_service_key: '01010101'\n 1 El producto ZAP-1376 fue creado. 189.186.72.137 2a8b14af-fd1a-46d2-a5b1-0ed42ae40f54 2020-10-23 18:54:27.401515 43274 2380 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1376\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 2a8b14af-fd1a-46d2-a5b1-0ed42ae40f54 2020-10-23 18:54:27.463165 43275 419 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-112\namount: !ruby/object:BigDecimal 18:0.1489E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1489E5\nobservations: ''\npurchase_date: 2020-10-23\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-112 por $ 14890.0 MXN creada. 189.186.72.137 138a79fd-6b7f-487b-9950-06265ce04b21 2020-10-23 18:54:36.427853 43276 2378 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.7E1\n 2 \N 189.186.72.137 138a79fd-6b7f-487b-9950-06265ce04b21 2020-10-23 18:54:36.455905 43277 2379 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 189.186.72.137 138a79fd-6b7f-487b-9950-06265ce04b21 2020-10-23 18:54:36.495456 43278 2380 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.7E1\n 2 \N 189.186.72.137 138a79fd-6b7f-487b-9950-06265ce04b21 2020-10-23 18:54:36.519986 43279 3235 Sale \N \N 18 User \N create ---\ncustomer_id: 417\nuser_id: 18\nopen_cash_register_id: 1132\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-10-23\nsaletype: 2\nseller_id: 24\nsale_code: PV3-V-772\nexpiration_date: 2020-11-27\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 63db00a6-6afa-4106-ae13-9e064a6e8ca9 2020-10-23 18:56:10.679036 43280 2378 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.72.137 63db00a6-6afa-4106-ae13-9e064a6e8ca9 2020-10-23 18:56:10.715195 43281 4288 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1132\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3235\ncardnumber: 1225\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-772\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-772 189.186.72.137 d173d219-2de8-4f77-9224-241aafa59a3e 2020-10-23 18:56:38.947325 43282 3235 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.72.137 5e0a4f17-d492-4d20-b392-87da76e6ae94 2020-10-23 18:56:43.045042 43283 3236 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1132\namount: !ruby/object:BigDecimal 18:0.110159E4\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1198E4\nstatus: 0\ndate_sale: 2020-10-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-773\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 8c73e9db-247f-47a3-b349-51f4f567ad34 2020-10-23 18:58:02.486556 43284 949 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.72.137 8c73e9db-247f-47a3-b349-51f4f567ad34 2020-10-23 18:58:02.514511 43285 2280 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.72.137 8c73e9db-247f-47a3-b349-51f4f567ad34 2020-10-23 18:58:02.537514 43286 3236 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 81a63616-a885-4687-886f-b806c75af93e 2020-10-23 18:58:15.817593 43287 4289 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1132\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1198E4\nmove_type: '1'\nsale_id: 3236\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-773\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.802E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-773 189.186.72.137 81a63616-a885-4687-886f-b806c75af93e 2020-10-23 18:58:15.847336 43288 3236 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-773 cancelada. 189.186.72.137 57475d3f-5531-4224-84a7-9cc3ce0d8b0e 2020-10-23 18:58:24.480937 43289 4289 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1132\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1198E4\nmove_type: '1'\nsale_id: 3236\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-773\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.802E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.72.137 57475d3f-5531-4224-84a7-9cc3ce0d8b0e 2020-10-23 18:58:24.502701 43290 2280 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 189.186.72.137 57475d3f-5531-4224-84a7-9cc3ce0d8b0e 2020-10-23 18:58:24.528832 43291 949 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 189.186.72.137 57475d3f-5531-4224-84a7-9cc3ce0d8b0e 2020-10-23 18:58:24.550343 43292 4290 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1132\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 2951\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1122'\n 1 movimiento de efectivo por venta con folio PV3-V-632 189.186.72.137 8c9a0dfd-efaf-4314-a596-add9f0c826c9 2020-10-23 19:02:48.566832 43293 2951 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.72.137 af8cbbea-c308-4180-9b55-bb602da5793b 2020-10-23 19:02:51.993439 43294 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-23 00:02:27.455953000 Z\n- &1 2020-10-23 01:40:45.885493000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-23 19:37:35.762946559 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938556\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938556\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\nsign_in_count:\n- 299\n- 300\n 600 \N 187.149.77.174 1a7db16e-6351-412c-925f-0ba1355565e5 2020-10-23 19:37:35.770281 43295 1 User \N \N 1 User \N update ---\nunique_session_id:\n- xyF9F3xt8BEssfchvVRZ\n- vyg5aF2tbtZSbcXfDhgz\n 601 \N 187.149.77.174 1a7db16e-6351-412c-925f-0ba1355565e5 2020-10-23 19:37:35.786219 43296 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-23 01:18:26.295492000 Z\n- &1 2020-10-23 05:18:22.343452000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-23 20:36:33.167388686 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535296\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535296\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\nsign_in_count:\n- 2003\n- 2004\n 4008 \N 189.186.72.137 e620096c-fc29-4155-838d-c8da1cca2d38 2020-10-23 20:36:33.176377 43297 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kztR8UVyTwJzJQD9a-Cc\n- 4zNwpUsEDBMhUAUR1MfX\n 4009 \N 189.186.72.137 e620096c-fc29-4155-838d-c8da1cca2d38 2020-10-23 20:36:33.196454 43298 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-23 00:24:51.224827000 Z\n- &1 2020-10-23 18:45:07.872300000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-23 20:38:17.959837514 Z\nsign_in_count:\n- 305\n- 306\n 613 \N 189.186.72.137 efad098b-0afe-4119-ae6e-6cf109b3f30b 2020-10-23 20:38:17.968248 43299 18 User \N \N 18 User \N update ---\nunique_session_id:\n- DWFWWNqy-GCXAbBxnLkG\n- 7R3AKZ3A24GwpbzgrPF3\n 614 \N 189.186.72.137 efad098b-0afe-4119-ae6e-6cf109b3f30b 2020-10-23 20:38:17.988645 43300 3237 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1132\namount: !ruby/object:BigDecimal 18:0.3283E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3283E4\nstatus: 0\ndate_sale: 2020-10-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-774\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 1519ed88-6b2d-4417-a2e5-5638e893215c 2020-10-23 21:08:49.338595 43306 2115 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.72.137 1519ed88-6b2d-4417-a2e5-5638e893215c 2020-10-23 21:08:49.494471 43307 834 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 28 \N 189.186.72.137 1519ed88-6b2d-4417-a2e5-5638e893215c 2020-10-23 21:08:49.521574 43308 3237 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 23317ede-2337-464e-b58f-aaa9b109b005 2020-10-23 21:09:02.919117 43309 4291 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1132\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3283E4\nmove_type: '1'\nsale_id: 3237\ncardnumber: 1255\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-774\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-774 189.186.72.137 23317ede-2337-464e-b58f-aaa9b109b005 2020-10-23 21:09:02.955561 43310 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-23 01:40:45.885493000 Z\n- &1 2020-10-23 19:37:35.762946000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-23 21:19:32.621305372 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938556\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\nsign_in_count:\n- 300\n- 301\n 602 \N 187.149.77.174 537b887d-5f10-4c7f-83bf-b2ca2581faa9 2020-10-23 21:19:32.657879 43311 1 User \N \N 1 User \N update ---\nunique_session_id:\n- vyg5aF2tbtZSbcXfDhgz\n- VoXEze_bzBybp5GRnxZu\n 603 \N 187.149.77.174 537b887d-5f10-4c7f-83bf-b2ca2581faa9 2020-10-23 21:19:32.678175 43312 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-23 05:18:22.343452000 Z\n- &1 2020-10-23 20:36:33.167388000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-23 21:22:56.738582160 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535296\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\nsign_in_count:\n- 2004\n- 2005\n 4010 \N 189.186.72.137 5092a8e0-2736-4c96-baae-6d657abd83bb 2020-10-23 21:22:56.745156 43313 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4zNwpUsEDBMhUAUR1MfX\n- sjdz3E_hJq19ywp3hC3y\n 4011 \N 189.186.72.137 5092a8e0-2736-4c96-baae-6d657abd83bb 2020-10-23 21:22:56.762677 43314 786 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.23E2\n- !ruby/object:BigDecimal 18:0.22E2\n 21 \N 187.149.77.174 447c114d-7541-4aba-b3be-4d21f6b33c35 2020-10-23 21:29:26.22801 43315 704 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-10-23\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.77.174 0c8d6107-64a2-4e0d-a46c-6e9de7ed82d6 2020-10-23 21:29:28.622537 43316 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-23 18:45:07.872300000 Z\n- &1 2020-10-23 20:38:17.959837000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-23 21:33:24.736827539 Z\nsign_in_count:\n- 306\n- 307\n 615 \N 189.186.72.137 17664fb9-c669-416c-af47-33e82bc8b0d5 2020-10-23 21:33:24.743078 43317 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 7R3AKZ3A24GwpbzgrPF3\n- zjBwYTKSZQcMy8JYqJmq\n 616 \N 189.186.72.137 17664fb9-c669-416c-af47-33e82bc8b0d5 2020-10-23 21:33:24.757108 43318 3238 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1132\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-10-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-775\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 25970122-738a-4e8f-b65e-09392e420fcc 2020-10-23 21:33:54.445812 43319 2337 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.72.137 25970122-738a-4e8f-b65e-09392e420fcc 2020-10-23 21:33:54.475602 43320 3238 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 9150ccca-72d8-4701-8e6c-570a9ca74777 2020-10-23 21:35:36.56331 43321 4292 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1132\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 3238\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-775\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-775 189.186.72.137 9150ccca-72d8-4701-8e6c-570a9ca74777 2020-10-23 21:35:36.587704 43322 3239 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1132\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-10-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-776\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 7de04bdc-a62f-4b73-8398-49e3e202b026 2020-10-23 21:36:14.557146 43323 818 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.39E2\n- !ruby/object:BigDecimal 18:0.38E2\n 30 \N 189.186.72.137 7de04bdc-a62f-4b73-8398-49e3e202b026 2020-10-23 21:36:14.586964 43324 3239 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 10bc941d-f03b-48e7-a591-ed8b82575e90 2020-10-23 21:36:18.702942 43325 4293 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1132\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 3239\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-776\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.301E3\nchange: !ruby/object:BigDecimal 18:0.252E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-776 189.186.72.137 10bc941d-f03b-48e7-a591-ed8b82575e90 2020-10-23 21:36:18.72898 43326 3240 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1132\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-10-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-777\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 b79093f0-b05c-4d8a-bfe5-847f75d80d5c 2020-10-23 22:08:56.270642 43327 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.24E2\n- !ruby/object:BigDecimal 18:0.23E2\n 4 \N 189.186.72.137 b79093f0-b05c-4d8a-bfe5-847f75d80d5c 2020-10-23 22:08:56.297236 43328 3240 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 66e4d941-62f8-45d2-a131-1e7231ec64cd 2020-10-23 22:09:00.815481 43351 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-23 21:22:56.738582000 Z\n- &1 2020-10-23 22:38:55.424108000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-23 23:15:06.826432986 Z\nsign_in_count:\n- 2006\n- 2007\n 4014 \N 189.186.72.137 205518b7-4961-4ee0-aa6f-55d6429fc196 2020-10-23 23:15:06.832321 43352 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Z826NeXLAWtxRWbJJkKy\n- zAYttS5p6HReK6E9yZDJ\n 4015 \N 189.186.72.137 205518b7-4961-4ee0-aa6f-55d6429fc196 2020-10-23 23:15:06.851378 43329 4294 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1132\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 3240\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-777\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.19E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-777 189.186.72.137 66e4d941-62f8-45d2-a131-1e7231ec64cd 2020-10-23 22:09:00.838018 43330 3241 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1132\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2020-10-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-778\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 bb034a5e-9901-48ac-b662-59753acd7289 2020-10-23 22:11:34.89963 43331 1923 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.72.137 bb034a5e-9901-48ac-b662-59753acd7289 2020-10-23 22:11:34.929636 43332 1777 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.72.137 bb034a5e-9901-48ac-b662-59753acd7289 2020-10-23 22:11:34.955892 43333 3241 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 a8d561bf-cb06-41b8-b0af-73dc52d64808 2020-10-23 22:12:43.480323 43334 4295 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1132\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1398E4\nmove_type: '1'\nsale_id: 3241\ncardnumber: 1125\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-778\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-778 189.186.72.137 a8d561bf-cb06-41b8-b0af-73dc52d64808 2020-10-23 22:12:43.501569 43335 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-23 20:36:33.167388000 Z\n- &1 2020-10-23 21:22:56.738582000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-23 22:38:55.424108368 Z\nsign_in_count:\n- 2005\n- 2006\n 4012 \N 189.186.72.137 f90c5001-460f-4fdb-9e8a-060530458aa8 2020-10-23 22:38:55.430282 43336 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sjdz3E_hJq19ywp3hC3y\n- Z826NeXLAWtxRWbJJkKy\n 4013 \N 189.186.72.137 f90c5001-460f-4fdb-9e8a-060530458aa8 2020-10-23 22:38:55.446344 43337 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-23 20:38:17.959837000 Z\n- &1 2020-10-23 21:33:24.736827000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-23 22:55:25.862832524 Z\nsign_in_count:\n- 307\n- 308\n 617 \N 189.186.72.137 f467f118-1f0e-4f48-b998-fff709c69a40 2020-10-23 22:55:25.868553 43338 18 User \N \N 18 User \N update ---\nunique_session_id:\n- zjBwYTKSZQcMy8JYqJmq\n- mFM3oVTRLYoWkeWq-yms\n 618 \N 189.186.72.137 f467f118-1f0e-4f48-b998-fff709c69a40 2020-10-23 22:55:25.881 43339 4296 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1132\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E4\nmove_type: '1'\nsale_id: 2831\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-563 189.186.72.137 49214600-415e-45af-9fd1-f52ec38f6e56 2020-10-23 23:01:47.970085 43340 4296 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1132\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E4\nmove_type: '1'\nsale_id: 2831\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.72.137 26cf816f-6bc1-4375-a18d-15eb3b4de30f 2020-10-23 23:01:52.695392 43341 4297 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1132\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 2831\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-563 189.186.72.137 c3d83b0c-1aeb-4f6d-b66e-5f9119f00c02 2020-10-23 23:02:17.106628 43342 2831 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.72.137 e7e4263a-3afb-4a7a-a492-0c069b3fa23e 2020-10-23 23:02:19.187814 43343 3242 Sale \N \N 18 User \N create ---\ncustomer_id: 194\nuser_id: 18\nopen_cash_register_id: 1132\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-10-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-779\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 467adbf8-4007-4c87-8d2e-100b208b3018 2020-10-23 23:03:44.63599 43344 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.72.137 467adbf8-4007-4c87-8d2e-100b208b3018 2020-10-23 23:03:44.663578 43345 3242 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-779 cancelada. 189.186.72.137 91635c6c-dc48-4fa5-b65e-93d928b79586 2020-10-23 23:03:56.529405 43346 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.72.137 91635c6c-dc48-4fa5-b65e-93d928b79586 2020-10-23 23:03:56.553307 43347 3243 Sale \N \N 18 User \N create ---\ncustomer_id: 242\nuser_id: 18\nopen_cash_register_id: 1132\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-10-23\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-780\nexpiration_date: 2020-11-27\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 0d011107-d12d-4728-857c-75e82c2990ca 2020-10-23 23:05:22.684907 43348 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.72.137 0d011107-d12d-4728-857c-75e82c2990ca 2020-10-23 23:05:22.718857 43349 4298 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1132\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.401E3\nmove_type: '1'\nsale_id: 3243\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-780\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.401E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-780 189.186.72.137 9c5c9d32-0443-4c87-b378-b5b80bed65b9 2020-10-23 23:05:38.525728 43350 3243 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.72.137 4311c938-464d-4a05-bf13-d7f90818e18f 2020-10-23 23:05:40.236153 43353 3244 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1131\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-10-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1544\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 ff850b50-9d02-48dd-96b2-624299bdd5aa 2020-10-23 23:36:11.048536 43354 1638 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.77.174 ff850b50-9d02-48dd-96b2-624299bdd5aa 2020-10-23 23:36:11.076505 43355 3244 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 b722d8ef-c1e5-4c89-b0fd-ae7ec8da6554 2020-10-23 23:36:34.521536 43356 4299 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1131\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 3244\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1544\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1544 187.149.77.174 b722d8ef-c1e5-4c89-b0fd-ae7ec8da6554 2020-10-23 23:36:34.545741 43357 3245 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1131\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.33E3\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2020-10-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1545\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 656c5908-7523-47d1-8837-6882726be05d 2020-10-23 23:52:08.302992 43358 506 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 12 \N 187.149.77.174 656c5908-7523-47d1-8837-6882726be05d 2020-10-23 23:52:08.345152 43359 3245 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 0e3d5f83-f9f8-43ff-bcc9-150d0f06b076 2020-10-23 23:52:25.832965 43360 4300 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1131\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.549E3\nmove_type: '1'\nsale_id: 3245\ncardnumber: 8661\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1545\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1545 187.149.77.174 0e3d5f83-f9f8-43ff-bcc9-150d0f06b076 2020-10-23 23:52:25.856088 43361 4301 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1131\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E2\nmove_type: '1'\nsale_id: 3245\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1545\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1545 187.149.77.174 fa2b8ee1-cc40-47c6-9868-4c30e3fa6a07 2020-10-23 23:52:38.712621 43362 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-23 19:37:35.762946000 Z\n- &1 2020-10-23 21:19:32.621305000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 00:02:31.663598655 Z\nsign_in_count:\n- 301\n- 302\n 604 \N 187.149.77.174 1ebf13ae-6e7c-4fec-8a6b-92312ef732f6 2020-10-24 00:02:31.692344 43363 1 User \N \N 1 User \N update ---\nunique_session_id:\n- VoXEze_bzBybp5GRnxZu\n- 96Wxx51sRJ6dbDZx1PTy\n 605 \N 187.149.77.174 1ebf13ae-6e7c-4fec-8a6b-92312ef732f6 2020-10-24 00:02:31.715361 43364 3246 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1131\namount: !ruby/object:BigDecimal 18:0.1598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1598E4\nstatus: 0\ndate_sale: 2020-10-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1546\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 baca5f77-3578-455f-96db-ed831b2b05eb 2020-10-24 00:18:01.233724 43365 2298 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.77.174 baca5f77-3578-455f-96db-ed831b2b05eb 2020-10-24 00:18:01.275271 43366 2256 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 4 \N 187.149.77.174 baca5f77-3578-455f-96db-ed831b2b05eb 2020-10-24 00:18:01.311222 43367 3246 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 92db4dbb-254f-4338-a68a-0154c7ab3dce 2020-10-24 00:18:21.106722 43368 4302 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1131\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 3246\ncardnumber: 3342\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1546\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1546 187.149.77.174 92db4dbb-254f-4338-a68a-0154c7ab3dce 2020-10-24 00:18:21.145225 43369 4303 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1131\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.598E3\nmove_type: '1'\nsale_id: 3246\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1546\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.598E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1546 187.149.77.174 966db9a8-14e5-43e9-9692-dc95a14e1e1e 2020-10-24 00:18:44.524738 43370 3246 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-1546 cancelada. 187.149.77.174 d5e0eccc-3943-46aa-8033-009dab40d4c2 2020-10-24 00:24:32.400963 43371 4302 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1131\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 3246\ncardnumber: 3342\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1546\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.77.174 d5e0eccc-3943-46aa-8033-009dab40d4c2 2020-10-24 00:24:32.433194 43372 4303 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1131\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.598E3\nmove_type: '1'\nsale_id: 3246\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1546\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.598E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.77.174 d5e0eccc-3943-46aa-8033-009dab40d4c2 2020-10-24 00:24:32.455242 43373 2256 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.8E1\n 5 \N 187.149.77.174 d5e0eccc-3943-46aa-8033-009dab40d4c2 2020-10-24 00:24:32.483559 43374 2298 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.77.174 d5e0eccc-3943-46aa-8033-009dab40d4c2 2020-10-24 00:24:32.506294 43375 3247 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1131\namount: !ruby/object:BigDecimal 18:0.1698E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.1349E4\nstatus: 0\ndate_sale: 2020-10-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1547\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 bf7c117d-f2c2-4dac-bc0f-067b098bcbbc 2020-10-24 00:26:56.493352 43376 2256 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 6 \N 187.149.77.174 bf7c117d-f2c2-4dac-bc0f-067b098bcbbc 2020-10-24 00:26:56.520092 43377 1238 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.77.174 bf7c117d-f2c2-4dac-bc0f-067b098bcbbc 2020-10-24 00:26:56.544177 43378 3247 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 e96ed988-b58e-4537-84e7-99976394e0db 2020-10-24 00:27:13.046885 43379 4304 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1131\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 3247\ncardnumber: 3342\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1547\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1547 187.149.77.174 e96ed988-b58e-4537-84e7-99976394e0db 2020-10-24 00:27:13.070927 43380 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-23 21:33:24.736827000 Z\n- &1 2020-10-23 22:55:25.862832000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 00:49:46.648122636 Z\nsign_in_count:\n- 308\n- 309\n 619 \N 189.186.72.137 5049dba0-84a3-4c9a-b5b0-f983162ee715 2020-10-24 00:49:46.654312 43381 18 User \N \N 18 User \N update ---\nunique_session_id:\n- mFM3oVTRLYoWkeWq-yms\n- MhYJVCeduE5vcQQKzv8Y\n 620 \N 189.186.72.137 5049dba0-84a3-4c9a-b5b0-f983162ee715 2020-10-24 00:49:46.670102 43382 4305 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1131\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.349E3\nmove_type: '1'\nsale_id: 3247\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1547\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.349E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1547 187.149.77.174 8241e1a1-0f07-4588-b2a9-bf066406953d 2020-10-24 00:53:59.390509 43383 344 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1131\nquantity: !ruby/object:BigDecimal 18:0.18E3\nstatus: 1\nobservations: 6 HORAS EXTRAS ROCIO\nexpense_date: 2020-10-23\nexpense_code: PV1-E-239\n 1 Egreso por 180.0 registrado 187.149.77.174 cdaba0fc-b2c7-492c-9d9e-21d0ca582277 2020-10-24 00:55:58.251164 43384 4306 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1131\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.18E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 344\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.77.174 cdaba0fc-b2c7-492c-9d9e-21d0ca582277 2020-10-24 00:55:58.272333 43385 1156 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1132\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.10127E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.42E4\ncash_fund: !ruby/object:BigDecimal 18:0.752E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4952E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.72.137 8eb1d21d-0202-4ad7-9007-73ba6c4a3866 2020-10-24 01:00:42.510332 43386 1132 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.72.137 8eb1d21d-0202-4ad7-9007-73ba6c4a3866 2020-10-24 01:00:42.525212 43387 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-23 22:38:55.424108000 Z\n- &1 2020-10-23 23:15:06.826432000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 01:01:07.414301791 Z\nsign_in_count:\n- 2007\n- 2008\n 4016 \N 189.186.72.137 5855647b-1301-43a7-8346-e6d3cada6d5b 2020-10-24 01:01:07.420862 43388 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zAYttS5p6HReK6E9yZDJ\n- T1bc9xsQBN1pSWqX41cH\n 4017 \N 189.186.72.137 5855647b-1301-43a7-8346-e6d3cada6d5b 2020-10-24 01:01:07.435597 43389 1157 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1131\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3366E4\namount_out: !ruby/object:BigDecimal 18:0.18E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.807E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2007E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.77.174 89aaa779-5175-4662-8088-a07207a325d8 2020-10-24 01:01:47.416993 43390 1131 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.174 89aaa779-5175-4662-8088-a07207a325d8 2020-10-24 01:01:47.427494 43391 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-23 22:55:25.862832000 Z\n- &1 2020-10-24 00:49:46.648122000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 01:18:00.140415772 Z\nsign_in_count:\n- 309\n- 310\n 621 \N 189.186.72.137 c4ecebf2-0451-4d89-96c6-ee8419bb4b7c 2020-10-24 01:18:00.146354 43392 18 User \N \N 18 User \N update ---\nunique_session_id:\n- MhYJVCeduE5vcQQKzv8Y\n- 6ykAkGJXiA4hBBn7xFV2\n 622 \N 189.186.72.137 c4ecebf2-0451-4d89-96c6-ee8419bb4b7c 2020-10-24 01:18:00.160313 43393 1133 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.752E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 752.0 189.186.72.137 e7064daa-f010-4b24-a235-742a10a2d444 2020-10-24 01:18:09.08562 43394 3248 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1133\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-10-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-781\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 7591902e-2bea-4e98-b079-c096f20ac38e 2020-10-24 01:18:20.35769 43395 2264 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.72.137 7591902e-2bea-4e98-b079-c096f20ac38e 2020-10-24 01:18:20.390159 43396 3248 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 f072106a-20a8-4910-ae62-251bbaf50ae2 2020-10-24 01:18:31.611825 43397 4307 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1133\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3248\ncardnumber: 4225\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-781\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-781 189.186.72.137 f072106a-20a8-4910-ae62-251bbaf50ae2 2020-10-24 01:18:31.633077 43398 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-23 21:19:32.621305000 Z\n- &1 2020-10-24 00:02:31.663598000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 01:41:59.979908172 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934167\n mask_addr: 4294967295\nsign_in_count:\n- 302\n- 303\n 606 \N 200.68.134.215 7134f1e2-36b3-4a9a-b3fe-d3e24cbb1e7f 2020-10-24 01:41:59.987253 43399 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 96Wxx51sRJ6dbDZx1PTy\n- gFZABGB8ofqydWvPm_am\n 607 \N 200.68.134.215 7134f1e2-36b3-4a9a-b3fe-d3e24cbb1e7f 2020-10-24 01:42:00.010485 43400 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 00:02:31.663598000 Z\n- &1 2020-10-24 01:41:59.979908000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 04:34:43.521992434 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934167\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938354\n mask_addr: 4294967295\nsign_in_count:\n- 303\n- 304\n 608 \N 200.68.151.50 4e389fee-f2f0-4fca-a728-58425f788928 2020-10-24 04:34:43.529617 43401 1 User \N \N 1 User \N update ---\nunique_session_id:\n- gFZABGB8ofqydWvPm_am\n- HF-YAwi15-PaYWqkVypM\n 609 \N 200.68.151.50 4e389fee-f2f0-4fca-a728-58425f788928 2020-10-24 04:34:43.546075 43402 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 00:49:46.648122000 Z\n- &1 2020-10-24 01:18:00.140415000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 18:04:10.521335747 Z\nsign_in_count:\n- 310\n- 311\n 623 \N 189.186.72.137 a3756b53-47f5-48a4-818e-12fa0df23033 2020-10-24 18:04:10.549964 43403 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 6ykAkGJXiA4hBBn7xFV2\n- oimp8zCKskXtrRJGhRTb\n 624 \N 189.186.72.137 a3756b53-47f5-48a4-818e-12fa0df23033 2020-10-24 18:04:10.573992 43404 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 01:41:59.979908000 Z\n- &1 2020-10-24 04:34:43.521992000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 18:04:53.378416598 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934167\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938354\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938354\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\nsign_in_count:\n- 304\n- 305\n 610 \N 187.149.77.174 6cee25e4-3faf-4ed0-838a-d2112e87a40d 2020-10-24 18:04:53.386002 43405 1 User \N \N 1 User \N update ---\nunique_session_id:\n- HF-YAwi15-PaYWqkVypM\n- Y7JEj-MTBnLxxXyZEZRH\n 611 \N 187.149.77.174 6cee25e4-3faf-4ed0-838a-d2112e87a40d 2020-10-24 18:04:53.402924 43406 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-10-18 00:20:50.326974000 Z\n- &1 2020-10-18 00:46:21.661638000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 18:06:00.539633319 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\nsign_in_count:\n- 190\n- 191\n 382 \N 189.186.72.137 33eb5612-a731-46c7-aa37-f0bb508219d6 2020-10-24 18:06:00.547326 43407 9 User \N \N 9 User \N update ---\nunique_session_id:\n- yR8PuhPpkEYNRRYcQcw-\n- auXCRyzX8rFXnqy3uzMX\n 383 \N 189.186.72.137 33eb5612-a731-46c7-aa37-f0bb508219d6 2020-10-24 18:06:00.5667 43408 1134 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.807E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 807.0 189.186.72.137 0e35b9a9-1311-4390-8bf1-77814a037ca5 2020-10-24 18:06:03.861752 43409 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 01:18:00.140415000 Z\n- &1 2020-10-24 18:04:10.521335000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 18:06:46.474773966 Z\nsign_in_count:\n- 311\n- 312\n 625 \N 189.186.72.137 d6a69a10-5dc1-423c-b804-5518098d1b54 2020-10-24 18:06:46.480217 43410 18 User \N \N 18 User \N update ---\nunique_session_id:\n- oimp8zCKskXtrRJGhRTb\n- "-5cZsrrnTaYWhHXGWhEm"\n 626 \N 189.186.72.137 d6a69a10-5dc1-423c-b804-5518098d1b54 2020-10-24 18:06:46.492818 43411 3249 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1133\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-10-24\nsaletype: 1\nseller_id: 29\nsale_code: PV3-V-782\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 82aca258-7074-41b0-b51f-27312d09cedd 2020-10-24 18:08:51.940965 43412 2266 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 10 \N 189.186.72.137 82aca258-7074-41b0-b51f-27312d09cedd 2020-10-24 18:08:51.972673 43413 3249 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 4c53f43b-f0a5-4964-b842-180618874b22 2020-10-24 18:08:56.947551 43414 4308 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1133\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 3249\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-782\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-782 189.186.72.137 4c53f43b-f0a5-4964-b842-180618874b22 2020-10-24 18:08:56.972975 43415 1117 Product \N \N 1 User \N update ---\nname:\n- 2CZP20106\n- 2CZP20166\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1117'\n is_parent: false\n sku: ZAP-1117\n name: 2CZP20166\n description: CALZADO CLOE NEGRO SNEAKERS\n price_base: '799.5'\n price_sale: '1599.0'\n img_product: DEEE50E4-97DA-49C1-BCDD-2479DD0F1E1D.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '13'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001117'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-03-17 18:31:30.039084'\n updated_at: &12 2020-10-24 18:09:21.334516661 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1117'\n sku: ZAP-1117\n name: 2CZP20106\n description: CALZADO CLOE NEGRO SNEAKERS\n price_base: '799.50'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-03-17 18:31:30.039084'\n updated_at: '2020-03-17 18:31:30.084853'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001117'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '13'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1117'\n type: *3\n value: 1117\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ZAP-1117\n type: *7\n value: ZAP-1117\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 2CZP20166\n type: *8\n value: 2CZP20166\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CALZADO CLOE NEGRO SNEAKERS\n type: *6\n value: CALZADO CLOE NEGRO SNEAKERS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '799.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DEEE50E4-97DA-49C1-BCDD-2479DD0F1E1D.jpeg\n type: *2\n value: DEEE50E4-97DA-49C1-BCDD-2479DD0F1E1D.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '13'\n type: *3\n value: 13\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001117'\n type: *2\n value: '0001117'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-03-17 18:31:30.039084'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- DEEE50E4-97DA-49C1-BCDD-2479DD0F1E1D.jpeg\n 3 El producto ZAP-1117 fue modificado. 187.149.77.174 36b4142b-b769-44f5-9070-0db53984b7b5 2020-10-24 18:09:21.378748 43416 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-22 16:31:05.622725000 Z\n- &1 2020-10-23 16:35:42.999298000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 18:15:28.260474082 Z\nsign_in_count:\n- 670\n- 671\n 1345 \N 187.149.77.174 fe891e51-859c-40d7-ad93-8e89ee14a790 2020-10-24 18:15:28.26874 43417 2 User \N \N 2 User \N update ---\nunique_session_id:\n- WfuKyHGHzB6F_q7Cmr24\n- ijneEhDU6UKVG6zcrYzL\n 1346 \N 187.149.77.174 fe891e51-859c-40d7-ad93-8e89ee14a790 2020-10-24 18:15:28.288217 43418 3250 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1134\namount: !ruby/object:BigDecimal 18:0.3098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3098E4\nstatus: 0\ndate_sale: 2020-10-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1548\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 2c2e535d-d3d0-45e5-888d-33c1053674ee 2020-10-24 18:18:09.243807 43419 2287 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.77.174 2c2e535d-d3d0-45e5-888d-33c1053674ee 2020-10-24 18:18:09.274475 43420 2371 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.77.174 2c2e535d-d3d0-45e5-888d-33c1053674ee 2020-10-24 18:18:09.297733 43421 3250 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 d4648670-f58e-4386-983f-3ce55a73300a 2020-10-24 18:18:18.192326 43447 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 31 \N 187.149.77.174 0701b457-da3e-4dad-9367-f49d66989aeb 2020-10-24 20:27:31.678914 43422 4309 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1134\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3098E4\nmove_type: '1'\nsale_id: 3250\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1548\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3098E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1548 187.149.77.174 d4648670-f58e-4386-983f-3ce55a73300a 2020-10-24 18:18:18.212626 43423 1371 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1371'\n is_parent: false\n sku: ZAP-1371\n name: DIRAR\n description: TENNIS NEGRO Y ROSA\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: EC4451DC-AE33-4286-9922-BD0054B4CA09.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '13'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170831276'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-22 23:48:04.86758'\n updated_at: &12 2020-10-24 18:23:36.908479762 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1371'\n sku: ZAP-1371\n name: DIRAR\n description: TENNIS NEGRO Y ROSA\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-22 23:48:04.86758'\n updated_at: '2020-10-22 23:48:04.86758'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170831276'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '13'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1371'\n type: *3\n value: 1371\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ZAP-1371\n type: *7\n value: ZAP-1371\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIRAR\n type: *8\n value: DIRAR\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: TENNIS NEGRO Y ROSA\n type: *6\n value: TENNIS NEGRO Y ROSA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: EC4451DC-AE33-4286-9922-BD0054B4CA09.jpeg\n type: *2\n value: EC4451DC-AE33-4286-9922-BD0054B4CA09.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '13'\n type: *3\n value: 13\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170831276'\n type: *2\n value: '7509170831276'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-22 23:48:04.86758'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- EC4451DC-AE33-4286-9922-BD0054B4CA09.jpeg\n 2 El producto ZAP-1371 fue modificado. 187.149.77.174 0deccda8-ec05-4f54-9190-9a975b4c66a3 2020-10-24 18:23:36.951913 43424 1375 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1375'\n is_parent: false\n sku: ZAP-1375\n name: MEIJAM\n description: TENNIS NEGROS CLOE\n price_base: '849.5'\n price_sale: '1699.0'\n img_product: 98CD13BC-79D8-4E5A-AB04-87A9371E06EE.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '13'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001375'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-23 18:53:18.302915'\n updated_at: &12 2020-10-24 18:24:15.244390728 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1375'\n sku: ZAP-1375\n name: MEIJAM\n description: TENNIS NEGROS CLOE\n price_base: '849.50'\n price_sale: '1699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-23 18:53:18.302915'\n updated_at: '2020-10-23 18:53:18.344119'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001375'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '13'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1375'\n type: *3\n value: 1375\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ZAP-1375\n type: *7\n value: ZAP-1375\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: MEIJAM\n type: *8\n value: MEIJAM\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: TENNIS NEGROS CLOE\n type: *6\n value: TENNIS NEGROS CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '849.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1699E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 98CD13BC-79D8-4E5A-AB04-87A9371E06EE.jpeg\n type: *2\n value: 98CD13BC-79D8-4E5A-AB04-87A9371E06EE.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '13'\n type: *3\n value: 13\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001375'\n type: *2\n value: '0001375'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-23 18:53:18.302915'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 98CD13BC-79D8-4E5A-AB04-87A9371E06EE.jpeg\n 3 El producto ZAP-1375 fue modificado. 187.149.77.174 a53544ab-5e06-488e-b307-d9eb0d3e7666 2020-10-24 18:24:15.297601 43425 3251 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1133\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2020-10-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-783\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 f6c314f1-2781-4221-8602-bfaadee8ee96 2020-10-24 19:02:32.634928 43426 2300 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.72.137 f6c314f1-2781-4221-8602-bfaadee8ee96 2020-10-24 19:02:32.671345 43427 3251 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 3f06b28d-a352-4de1-985f-abcb80d2e55b 2020-10-24 19:03:15.022965 43428 4310 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1133\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 3251\ncardnumber: 1243\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-783\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-783 189.186.72.137 3f06b28d-a352-4de1-985f-abcb80d2e55b 2020-10-24 19:03:15.046023 43429 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 04:34:43.521992000 Z\n- &1 2020-10-24 18:04:53.378416000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 19:23:14.160735240 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938354\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\nsign_in_count:\n- 305\n- 306\n 612 \N 187.149.77.174 c0f56aa8-8724-4aec-ad85-b101ce810a32 2020-10-24 19:23:14.189707 43430 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Y7JEj-MTBnLxxXyZEZRH\n- yyBGRmsyLrdWjY-DqmNy\n 613 \N 187.149.77.174 c0f56aa8-8724-4aec-ad85-b101ce810a32 2020-10-24 19:23:14.213271 43431 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-23 16:35:42.999298000 Z\n- &1 2020-10-24 18:15:28.260474000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 19:26:49.899668566 Z\nsign_in_count:\n- 671\n- 672\n 1347 \N 187.149.77.174 8001a9e2-eac4-4306-8b56-83088995f9c7 2020-10-24 19:26:49.906635 43432 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ijneEhDU6UKVG6zcrYzL\n- wzDss8HyHYikjny_LXcM\n 1348 \N 187.149.77.174 8001a9e2-eac4-4306-8b56-83088995f9c7 2020-10-24 19:26:49.922639 43433 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 18:04:10.521335000 Z\n- &1 2020-10-24 18:06:46.474773000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 19:30:20.884515153 Z\nsign_in_count:\n- 312\n- 313\n 627 \N 189.186.72.137 a5766ecd-e396-475d-83e6-6898bd0fcddf 2020-10-24 19:30:20.898113 43434 18 User \N \N 18 User \N update ---\nunique_session_id:\n- "-5cZsrrnTaYWhHXGWhEm"\n- XFzWpu8fE5DwFz-srPtk\n 628 \N 189.186.72.137 a5766ecd-e396-475d-83e6-6898bd0fcddf 2020-10-24 19:30:20.92014 43435 704 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-10-24\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.72.137 0f26b206-c674-44f2-b950-e60851bbb9e9 2020-10-24 19:31:00.043309 43436 834 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 29 \N 189.186.72.137 0f26b206-c674-44f2-b950-e60851bbb9e9 2020-10-24 19:31:00.065542 43437 1240 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 11 \N 189.186.72.137 ae614b64-6b25-48e2-8154-f7d2b832260b 2020-10-24 19:31:31.173703 43438 705 Transfer \N \N 18 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-10-24\nuser_id: 18\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.72.137 da4ec3fb-ffcb-4ae3-9e3b-0fbfe2b6bab0 2020-10-24 19:31:34.594983 43439 3252 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1133\namount: !ruby/object:BigDecimal 18:0.2998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2998E4\nstatus: 0\ndate_sale: 2020-10-24\nsaletype: 1\nseller_id: 29\nsale_code: PV3-V-784\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 83f9ffc4-f5f3-4659-96fd-f78e790ebaee 2020-10-24 20:16:09.066124 43440 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.23E2\n- !ruby/object:BigDecimal 18:0.22E2\n 5 \N 189.186.72.137 83f9ffc4-f5f3-4659-96fd-f78e790ebaee 2020-10-24 20:16:09.094235 43441 2377 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.72.137 83f9ffc4-f5f3-4659-96fd-f78e790ebaee 2020-10-24 20:16:09.118319 43442 3252 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 0a22d2df-c5cb-4592-a54f-e01febfc8035 2020-10-24 20:16:16.308857 43443 4311 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1133\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2998E4\nmove_type: '1'\nsale_id: 3252\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-784\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-784 189.186.72.137 0a22d2df-c5cb-4592-a54f-e01febfc8035 2020-10-24 20:16:16.340094 43444 705 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-10-24\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.77.174 63b47789-22e5-46b4-b04a-625835bc519a 2020-10-24 20:25:28.533741 43445 1238 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.77.174 63b47789-22e5-46b4-b04a-625835bc519a 2020-10-24 20:25:28.553599 43446 3253 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1134\namount: !ruby/object:BigDecimal 18:0.2198E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.35E3\ntotal: !ruby/object:BigDecimal 18:0.1848E4\nstatus: 0\ndate_sale: 2020-10-24\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1549\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 0701b457-da3e-4dad-9367-f49d66989aeb 2020-10-24 20:27:31.644699 43448 1238 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.77.174 0701b457-da3e-4dad-9367-f49d66989aeb 2020-10-24 20:27:31.704396 43449 3253 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 b29b44f1-1af3-4c5b-a49e-69d185dfb1c0 2020-10-24 20:27:53.512823 43450 4312 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1134\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1848E4\nmove_type: '1'\nsale_id: 3253\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1549\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: Sam\n 1 movimiento de efectivo por venta con folio PV1-V-1549 187.149.77.174 b29b44f1-1af3-4c5b-a49e-69d185dfb1c0 2020-10-24 20:27:53.534368 43451 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 18:04:53.378416000 Z\n- &1 2020-10-24 19:23:14.160735000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 20:28:32.082815724 Z\nsign_in_count:\n- 306\n- 307\n 614 \N 187.149.77.174 1c7aaca1-8094-474c-91f1-8fec4fb5be4e 2020-10-24 20:28:32.088439 43452 1 User \N \N 1 User \N update ---\nunique_session_id:\n- yyBGRmsyLrdWjY-DqmNy\n- SuG3zMeRcyjTtQKvox1D\n 615 \N 187.149.77.174 1c7aaca1-8094-474c-91f1-8fec4fb5be4e 2020-10-24 20:28:32.101545 43453 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 19:23:14.160735000 Z\n- &1 2020-10-24 20:28:32.082815000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 21:07:17.970129917 Z\nsign_in_count:\n- 307\n- 308\n 616 \N 187.149.77.174 93f39db9-886c-4b55-8419-9d58ada4082c 2020-10-24 21:07:17.976052 43454 1 User \N \N 1 User \N update ---\nunique_session_id:\n- SuG3zMeRcyjTtQKvox1D\n- 5_cMdFmH5XGkd6taBnkx\n 617 \N 187.149.77.174 93f39db9-886c-4b55-8419-9d58ada4082c 2020-10-24 21:07:17.992844 43455 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-23 23:15:06.826432000 Z\n- &1 2020-10-24 01:01:07.414301000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 21:15:27.913857862 Z\nsign_in_count:\n- 2008\n- 2009\n 4018 \N 189.186.72.137 f013cb04-8647-43d8-ba2c-fe8fa66d8f99 2020-10-24 21:15:27.919343 43456 4 User \N \N 4 User \N update ---\nunique_session_id:\n- T1bc9xsQBN1pSWqX41cH\n- hV54a1yHaJ-xfLNPb2Bq\n 4019 \N 189.186.72.137 f013cb04-8647-43d8-ba2c-fe8fa66d8f99 2020-10-24 21:15:27.935147 43457 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 20:28:32.082815000 Z\n- &1 2020-10-24 21:07:17.970129000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 21:30:46.163744755 Z\nsign_in_count:\n- 308\n- 309\n 618 \N 187.149.77.174 0c3a58c3-fdc7-4675-b24a-481f8a151546 2020-10-24 21:30:46.169852 43458 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 5_cMdFmH5XGkd6taBnkx\n- 5ERoxEzTdhb77eUEVoRz\n 619 \N 187.149.77.174 0c3a58c3-fdc7-4675-b24a-481f8a151546 2020-10-24 21:30:46.184934 43459 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 21:07:17.970129000 Z\n- &1 2020-10-24 21:30:46.163744000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 21:48:58.668499776 Z\nsign_in_count:\n- 309\n- 310\n 620 \N 187.149.77.174 2e26bd82-b0eb-4ff5-a0f9-3ad0f8cffde7 2020-10-24 21:48:58.674552 43460 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 5ERoxEzTdhb77eUEVoRz\n- BhSVmzwatZFs8rySPJtF\n 621 \N 187.149.77.174 2e26bd82-b0eb-4ff5-a0f9-3ad0f8cffde7 2020-10-24 21:48:58.688686 43461 3254 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1133\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.33E3\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2020-10-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-785\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 31bc807a-580a-4e45-9ba1-82192c0c86ca 2020-10-24 22:34:35.120591 43462 1552 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 7 \N 189.186.72.137 31bc807a-580a-4e45-9ba1-82192c0c86ca 2020-10-24 22:34:35.148148 43463 3254 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 2d2f5b52-c119-470b-ac0f-2d4407943678 2020-10-24 22:34:43.571337 43464 4313 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1133\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.569E3\nmove_type: '1'\nsale_id: 3254\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-785\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.569E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-785 189.186.72.137 2d2f5b52-c119-470b-ac0f-2d4407943678 2020-10-24 22:34:43.595976 43465 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 21:30:46.163744000 Z\n- &1 2020-10-24 21:48:58.668499000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 22:43:16.679946573 Z\nsign_in_count:\n- 310\n- 311\n 622 \N 187.149.77.174 3b8cbd2b-3acb-43d2-8be2-f604a62c1115 2020-10-24 22:43:16.703222 43466 1 User \N \N 1 User \N update ---\nunique_session_id:\n- BhSVmzwatZFs8rySPJtF\n- 9bskDtGRfxmFpjyYWCEA\n 623 \N 187.149.77.174 3b8cbd2b-3acb-43d2-8be2-f604a62c1115 2020-10-24 22:43:16.725897 43467 418 Customer \N \N 18 User \N create ---\nnick_name: ELVIRA BELTRAN\nphone: "(667) 315-2851"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ELVIRA BELTRAN fue registrado. 189.186.72.137 6df7e2f5-356a-4b0d-a9e9-1330a670035c 2020-10-24 23:01:10.615813 43468 3255 Sale \N \N 18 User \N create ---\ncustomer_id: 418\nuser_id: 18\nopen_cash_register_id: 1133\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-10-24\nsaletype: 2\nseller_id: 29\nsale_code: PV3-V-786\nexpiration_date: 2020-11-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 2069a57e-2243-4eca-8203-ac20bc543090 2020-10-24 23:02:13.366374 43469 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.22E2\n- !ruby/object:BigDecimal 18:0.21E2\n 6 \N 189.186.72.137 2069a57e-2243-4eca-8203-ac20bc543090 2020-10-24 23:02:13.397032 43470 4314 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1133\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 3255\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-786\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-786 189.186.72.137 c299a038-c46c-4eca-97ee-964ac7bc6f7e 2020-10-24 23:02:28.315993 43471 3255 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.72.137 341addf9-1303-4a00-910e-dcda162d2409 2020-10-24 23:02:30.758204 43472 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 18:15:28.260474000 Z\n- &1 2020-10-24 19:26:49.899668000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 23:49:15.298990864 Z\nsign_in_count:\n- 672\n- 673\n 1349 \N 187.149.77.174 8d983ab2-069a-4803-a506-6174316a6bb4 2020-10-24 23:49:15.30487 43473 2 User \N \N 2 User \N update ---\nunique_session_id:\n- wzDss8HyHYikjny_LXcM\n- R5XYZJWEySq7tUkQ3brQ\n 1350 \N 187.149.77.174 8d983ab2-069a-4803-a506-6174316a6bb4 2020-10-24 23:49:15.323572 43474 419 Customer \N \N 2 User \N create ---\nnick_name: MICHEL CAMPOS\nphone: "(667) 118-5954"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MICHEL CAMPOS fue registrado. 187.149.77.174 f955fc37-e578-4b48-bf8a-63d5691a1cd6 2020-10-24 23:49:52.266452 43475 3256 Sale \N \N 2 User \N create ---\ncustomer_id: 419\nuser_id: 2\nopen_cash_register_id: 1134\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-10-24\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1550\nexpiration_date: 2020-11-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 ab80a004-9632-4987-b7a8-d249885db086 2020-10-24 23:50:14.063061 43476 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 32 \N 187.149.77.174 ab80a004-9632-4987-b7a8-d249885db086 2020-10-24 23:50:14.09093 43477 4315 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1134\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3256\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1550\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1550 187.149.77.174 bc7d2d47-4542-435a-a2b5-696088094b01 2020-10-24 23:50:43.317019 43478 3256 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.77.174 f94d10e9-db4a-4b2b-b4b1-00379b4e272c 2020-10-24 23:50:44.835571 43479 420 Customer \N \N 2 User \N create ---\nnick_name: KARELY (SANDRA CORRALES) INSTA\nphone: "(667) 470-8160"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KARELY (SANDRA CORRALES) INSTA fue registrado. 187.149.77.174 3c3e143d-a724-459c-839f-ffd76cd630e5 2020-10-24 23:54:25.291523 43480 3257 Sale \N \N 2 User \N create ---\ncustomer_id: 420\nuser_id: 2\nopen_cash_register_id: 1134\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-10-24\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1551\nexpiration_date: 2020-11-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 157bd093-2cd3-4f90-9d60-af534f3e0803 2020-10-24 23:55:47.970346 43481 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.17E2\n- !ruby/object:BigDecimal 18:0.16E2\n 2 \N 187.149.77.174 157bd093-2cd3-4f90-9d60-af534f3e0803 2020-10-24 23:55:48.000464 43482 4316 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1134\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 3257\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1551\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1551 187.149.77.174 f5f2c4e5-2949-42cc-b954-3863197df031 2020-10-24 23:56:18.349778 43483 3257 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.77.174 159164d8-4b7a-4a14-9949-2fbc33c54093 2020-10-24 23:57:00.314854 43484 3258 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1133\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-10-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-787\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 f94516ad-172e-4625-aedd-00760ccb37df 2020-10-24 23:59:33.896772 43485 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.72.137 f94516ad-172e-4625-aedd-00760ccb37df 2020-10-24 23:59:33.924022 43486 3258 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 75a0ab1c-9450-4445-b8e4-df8d7f8cd401 2020-10-24 23:59:42.300021 43487 4317 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1133\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 3258\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-787\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-787 189.186.72.137 75a0ab1c-9450-4445-b8e4-df8d7f8cd401 2020-10-24 23:59:42.321055 43488 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 21:48:58.668499000 Z\n- &1 2020-10-24 22:43:16.679946000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-24 23:59:42.886084835 Z\nsign_in_count:\n- 311\n- 312\n 624 \N 187.149.77.174 6d142ab5-4795-4660-b428-46d8e3a6f620 2020-10-24 23:59:42.892286 43489 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 9bskDtGRfxmFpjyYWCEA\n- 7yUqsYRAjgHRkRB_Sbny\n 625 \N 187.149.77.174 6d142ab5-4795-4660-b428-46d8e3a6f620 2020-10-24 23:59:42.904601 43490 1158 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1134\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6246E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.35E4\ncash_fund: !ruby/object:BigDecimal 18:0.705E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4205E4\nobservations: SE\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.77.174 735bdcea-e87e-4562-82e5-13a73d2d489c 2020-10-25 00:52:12.415234 43491 1134 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.174 735bdcea-e87e-4562-82e5-13a73d2d489c 2020-10-25 00:52:12.431646 43492 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 01:01:07.414301000 Z\n- &1 2020-10-24 21:15:27.913857000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-25 01:21:41.765120462 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938131\n mask_addr: 4294967295\nsign_in_count:\n- 2009\n- 2010\n 4020 \N 200.68.150.83 1d6c6bd7-912b-463f-b6ce-89e908b9366e 2020-10-25 01:21:41.771574 43493 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hV54a1yHaJ-xfLNPb2Bq\n- s895tuHBuKLk8Qhj2DdU\n 4021 \N 200.68.150.83 1d6c6bd7-912b-463f-b6ce-89e908b9366e 2020-10-25 01:21:41.790116 43494 345 Expense \N \N 18 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 1133\nquantity: !ruby/object:BigDecimal 18:0.4E3\nstatus: 1\nobservations: SUELDO DE NAYELLY\nexpense_date: 2020-10-24\nexpense_code: PV3-E-44\n 1 Egreso por 400.0 registrado 189.186.72.137 829ba652-0cbd-4c30-b2f8-549aa6c8144b 2020-10-25 01:37:07.976375 43495 4318 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1133\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 345\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.72.137 829ba652-0cbd-4c30-b2f8-549aa6c8144b 2020-10-25 01:37:07.998462 43496 1159 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1133\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.7963E4\namount_out: !ruby/object:BigDecimal 18:0.4E3\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.55E4\ncash_fund: !ruby/object:BigDecimal 18:0.1017E4\nphysical_cash: !ruby/object:BigDecimal 18:0.6517E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.72.137 a930cf2a-fc47-4619-9061-b289cd9e4421 2020-10-25 01:39:02.335175 43497 1133 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.72.137 a930cf2a-fc47-4619-9061-b289cd9e4421 2020-10-25 01:39:02.353273 43498 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 22:43:16.679946000 Z\n- &1 2020-10-24 23:59:42.886084000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-25 03:37:55.221121765 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539848\n mask_addr: 4294967295\nsign_in_count:\n- 312\n- 313\n 626 \N 177.228.118.200 5ead3516-c55a-44d1-b586-03f738c1452f 2020-10-25 03:37:55.227942 43499 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 7yUqsYRAjgHRkRB_Sbny\n- qKAv1neu9jk3gzwnsLHk\n 627 \N 177.228.118.200 5ead3516-c55a-44d1-b586-03f738c1452f 2020-10-25 03:37:55.242287 43500 30 User \N \N 30 User \N update ---\nlast_sign_in_at:\n- 2020-10-07 21:51:27.308095000 Z\n- &1 2020-10-19 18:33:01.353452000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-25 19:53:02.127728609 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147109126\n mask_addr: 4294967295\nsign_in_count:\n- 10\n- 11\n 22 \N 187.149.19.6 5add9079-d57b-436a-974f-0b9996db3720 2020-10-25 19:53:02.158187 43501 30 User \N \N 30 User \N update ---\nunique_session_id:\n- nqKuzcLNZrKyHUSonZUB\n- rUvcLymUJcxH_x6AgCTE\n 23 \N 187.149.19.6 5add9079-d57b-436a-974f-0b9996db3720 2020-10-25 19:53:02.181424 43502 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-10-18 18:37:16.451296000 Z\n- &1 2020-10-19 19:47:30.101378000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-25 20:49:27.519310388 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147109126\n mask_addr: 4294967295\nsign_in_count:\n- 315\n- 316\n 633 \N 187.149.19.6 b418738d-662c-46ab-a35b-4129b5490af2 2020-10-25 20:49:27.526006 43503 21 User \N \N 21 User \N update ---\nunique_session_id:\n- SpAtG-ifh7jhLhxVi9-Y\n- _NJCn19mVK2rwR_Zo9Vt\n 634 \N 187.149.19.6 b418738d-662c-46ab-a35b-4129b5490af2 2020-10-25 20:49:27.542486 43504 1209 Product \N \N 30 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.4589E2\n- !ruby/object:BigDecimal 27:0.458E2\n 3 El producto ACC-1209 fue modificado. 187.149.19.6 eb47fe02-6709-430e-8405-115f78553ea2 2020-10-25 20:51:27.898447 43505 1209 Product \N \N 30 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.458E2\n- !ruby/object:BigDecimal 27:0.4589E2\n 4 El producto ACC-1209 fue modificado. 187.149.19.6 2865dc36-4dcb-40dc-a642-b2bb314c9fcd 2020-10-25 20:51:28.523103 43506 1209 Product \N \N 30 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.139E3\n- !ruby/object:BigDecimal 27:0.189E3\n 5 \N 187.149.19.6 a24ba16c-0fcd-420f-847f-b4ebac329e6a 2020-10-25 20:51:47.129791 43507 1223 Product \N \N 30 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.12293E3\n- !ruby/object:BigDecimal 27:0.12393E3\n 3 El producto ACC-1223 fue modificado. 187.149.19.6 4b462e17-4239-4069-91ec-7074e3340427 2020-10-25 20:52:06.077385 43508 1223 Product \N \N 30 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.369E3\n- !ruby/object:BigDecimal 27:0.449E3\n 4 \N 187.149.19.6 da2ea7b0-55c2-4c9a-951b-80ad677f31a8 2020-10-25 20:54:38.730036 43509 1377 Product \N \N 30 User \N create ---\nsku: ACC-1377\nname: DIA-0147\ndescription: 'Perla terciopelo esponja elástica alta diadema de terciopelo ROSA, BLANCO\n Y GRIS '\nprice_base: !ruby/object:BigDecimal 18:0.3338E2\nprice_sale: !ruby/object:BigDecimal 18:0.189E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHAU1148854-ZMH0229fense.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1377 fue creado. 187.149.19.6 7dc99dc5-1b31-4a29-834f-335188f69e3c 2020-10-25 21:01:46.641725 43510 1377 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001377'\n 2 \N 187.149.19.6 7dc99dc5-1b31-4a29-834f-335188f69e3c 2020-10-25 21:01:46.676937 43511 2381 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1377\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 7dc99dc5-1b31-4a29-834f-335188f69e3c 2020-10-25 21:01:46.710765 43512 1378 Product \N \N 30 User \N create ---\nsku: ACC-1378\nname: DIA-0148\ndescription: 'diadema doble con diamantes y perlas retro '\nprice_base: !ruby/object:BigDecimal 18:0.4677E2\nprice_sale: !ruby/object:BigDecimal 18:0.289E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHYQ1137512-Main-color.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1378 fue creado. 187.149.19.6 040b181b-a790-4306-a43c-2921c51c97d9 2020-10-25 21:11:14.729339 43513 1378 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001378'\n 2 \N 187.149.19.6 040b181b-a790-4306-a43c-2921c51c97d9 2020-10-25 21:11:14.764945 43514 2382 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1378\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 040b181b-a790-4306-a43c-2921c51c97d9 2020-10-25 21:11:14.796343 43515 1379 Product \N \N 30 User \N create ---\nsku: ACC-1379\nname: DIA-0149\ndescription: Diadema anudada tela geométrica de la flor del diamante artificial del\n todo-fósforo NEGRA, BEIGE Y ROSA\nprice_base: !ruby/object:BigDecimal 18:0.13649E3\nprice_sale: !ruby/object:BigDecimal 18:0.379E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHWJ1149435-Off-white.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1379 fue creado. 187.149.19.6 ecebb28d-737e-4394-9a60-452f79ca04dd 2020-10-25 21:14:14.326827 43516 1379 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001379'\n 2 \N 187.149.19.6 ecebb28d-737e-4394-9a60-452f79ca04dd 2020-10-25 21:14:14.362104 43517 2383 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1379\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 ecebb28d-737e-4394-9a60-452f79ca04dd 2020-10-25 21:14:14.391426 43518 1380 Product \N \N 30 User \N create ---\nsku: ACC-1380\nname: DIA-0150\ndescription: Diadema anudada tela geométrica de la flor del diamante artificial del\n todo-fósforo\nprice_base: !ruby/object:BigDecimal 18:0.13649E3\nprice_sale: !ruby/object:BigDecimal 18:0.379E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1380 fue creado. 187.149.19.6 9e8bba82-4ef0-47b9-b01a-f31632fa78af 2020-10-25 21:24:22.587888 43519 1380 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001380'\n 2 \N 187.149.19.6 9e8bba82-4ef0-47b9-b01a-f31632fa78af 2020-10-25 21:24:22.617064 43520 2384 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1380\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 9e8bba82-4ef0-47b9-b01a-f31632fa78af 2020-10-25 21:24:22.645083 43521 1380 Product \N \N 30 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.13649E3\n- !ruby/object:BigDecimal 27:0.13749E3\n 3 El producto ACC-1380 fue modificado. 187.149.19.6 1522e479-96b9-4733-8b85-4d629889c395 2020-10-25 21:24:30.033097 43522 1380 Product \N \N 30 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.13749E3\n- !ruby/object:BigDecimal 27:0.13849E3\n 4 El producto ACC-1380 fue modificado. 187.149.19.6 1cb0cdc8-0705-4d42-a560-88f67293d7ab 2020-10-25 21:24:30.341769 43523 1380 Product \N \N 30 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.13849E3\n- !ruby/object:BigDecimal 27:0.13749E3\n 5 El producto ACC-1380 fue modificado. 187.149.19.6 4d496559-ace3-4776-82d8-e073e5b95488 2020-10-25 21:24:37.536936 43524 1380 Product \N \N 30 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.379E3\n- !ruby/object:BigDecimal 27:0.27498E3\n 6 \N 187.149.19.6 a5ba5a31-4229-4825-8b3c-f0d5aa5e4cef 2020-10-25 21:24:41.155716 43525 420 Purchase \N \N 30 User \N create ---\nsupplier_id: 3\npointsale_id: 1\npurchase_code: PV1-C-169\namount: !ruby/object:BigDecimal 18:0.119306E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.119306E4\nobservations: ''\npurchase_date: 2020-10-25\nuser_id: '30'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-169 por $ 1193.06 MXN creada. 187.149.19.6 c7e715ca-b753-450d-8a99-2918d8016888 2020-10-25 21:24:49.058339 43526 2382 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.19.6 c7e715ca-b753-450d-8a99-2918d8016888 2020-10-25 21:24:49.086474 43527 2383 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.19.6 c7e715ca-b753-450d-8a99-2918d8016888 2020-10-25 21:24:49.13407 43528 2384 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.19.6 c7e715ca-b753-450d-8a99-2918d8016888 2020-10-25 21:24:49.164493 43529 2077 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.7E1\n 5 \N 187.149.19.6 c7e715ca-b753-450d-8a99-2918d8016888 2020-10-25 21:24:49.193294 43530 2385 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1223\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 c7e715ca-b753-450d-8a99-2918d8016888 2020-10-25 21:24:49.222024 43531 2135 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.19.6 c7e715ca-b753-450d-8a99-2918d8016888 2020-10-25 21:24:49.246249 43532 2381 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.19.6 c7e715ca-b753-450d-8a99-2918d8016888 2020-10-25 21:24:49.269885 43533 1380 Product \N \N 30 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.13749E3\n- !ruby/object:BigDecimal 18:0.13649E3\nprice_sale:\n- !ruby/object:BigDecimal 18:0.27498E3\n- !ruby/object:BigDecimal 18:0.379E3\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1380'\n is_parent: false\n sku: ACC-1380\n name: DIA-0150\n description: Diadema anudada tela geométrica de la flor del diamante artificial\n del todo-fósforo\n price_base: '136.49'\n price_sale: '379'\n img_product: NHCW1150728-Pink.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001380'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-25 21:24:22.575233'\n updated_at: &12 2020-10-25 21:27:31.126559311 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1380'\n sku: ACC-1380\n name: DIA-0150\n description: Diadema anudada tela geométrica de la flor del diamante artificial\n del todo-fósforo\n price_base: '137.49'\n price_sale: '274.98'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-25 21:24:22.575233'\n updated_at: '2020-10-25 21:24:41.146613'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001380'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1380'\n type: *3\n value: 1380\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1380\n type: *7\n value: ACC-1380\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: DIA-0150\n type: *8\n value: DIA-0150\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: Diadema anudada tela geométrica de la flor del\n diamante artificial del todo-fósforo\n type: *6\n value: Diadema anudada tela geométrica de la flor del diamante artificial\n del todo-fósforo\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '136.49'\n type: *1\n value: !ruby/object:BigDecimal 18:0.13649E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '379'\n type: *1\n value: !ruby/object:BigDecimal 18:0.379E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: NHCW1150728-Pink.jpg\n type: *2\n value: NHCW1150728-Pink.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001380'\n type: *2\n value: '0001380'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-25 21:24:22.575233'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- NHCW1150728-Pink.jpg\n 7 El producto ACC-1380 fue modificado. 187.149.19.6 cebf4fdb-0d4d-4610-a63e-e0abf098e671 2020-10-25 21:27:31.175174 43534 1381 Product \N \N 30 User \N create ---\nsku: ACC-1381\nname: DIA-0156\ndescription: 'Diadema negra de terciopelo del metal de la perla '\nprice_base: !ruby/object:BigDecimal 18:0.19219E3\nprice_sale: !ruby/object:BigDecimal 18:0.389E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHCO1128684-BR01.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1381 fue creado. 187.149.19.6 584ecc94-a0af-458f-8d31-c10c1e4116e4 2020-10-25 21:35:35.382637 43535 1381 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001381'\n 2 \N 187.149.19.6 584ecc94-a0af-458f-8d31-c10c1e4116e4 2020-10-25 21:35:35.417307 43536 2386 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1381\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 584ecc94-a0af-458f-8d31-c10c1e4116e4 2020-10-25 21:35:35.443417 43537 1382 Product \N \N 30 User \N create ---\nsku: ACC-1382\nname: DIA-0154\ndescription: 'Diadema negra con aplicaciones negras '\nprice_base: !ruby/object:BigDecimal 18:0.4762E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHSM906878-black.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1382 fue creado. 187.149.19.6 0bca53ff-3a5d-4998-8c0b-bfe85f58b77c 2020-10-25 21:48:24.733294 43538 1382 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001382'\n 2 \N 187.149.19.6 0bca53ff-3a5d-4998-8c0b-bfe85f58b77c 2020-10-25 21:48:24.762184 43539 2387 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1382\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 0bca53ff-3a5d-4998-8c0b-bfe85f58b77c 2020-10-25 21:48:24.788412 43540 1383 Product \N \N 30 User \N create ---\nsku: ACC-1383\nname: DIA-0159\ndescription: "Diadema negra de terciopelo venda de la perla de la venda \\r\\n\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.14818E3\nprice_sale: !ruby/object:BigDecimal 18:0.369E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHCO1128658-Model-BZ04.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1383 fue creado. 187.149.19.6 5c4369cc-7ff3-4d32-a00d-218b8cb88655 2020-10-25 21:51:24.984718 43542 2388 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1383\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 5c4369cc-7ff3-4d32-a00d-218b8cb88655 2020-10-25 21:51:25.04785 43543 1384 Product \N \N 30 User \N create ---\nsku: ACC-1384\nname: DIA-0160\ndescription: 'Diadema geométrica con flor de perla grande barroca '\nprice_base: !ruby/object:BigDecimal 18:0.16307E3\nprice_sale: !ruby/object:BigDecimal 18:0.389E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHLN1167968-Golden.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1384 fue creado. 187.149.19.6 db491c98-7075-40a3-93a2-e291800202cf 2020-10-25 22:58:22.364617 43544 1384 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001384'\n 2 \N 187.149.19.6 db491c98-7075-40a3-93a2-e291800202cf 2020-10-25 22:58:22.397217 43545 2389 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1384\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 db491c98-7075-40a3-93a2-e291800202cf 2020-10-25 22:58:22.42747 43546 1385 Product \N \N 30 User \N create ---\nsku: ACC-1385\nname: DIA-0161\ndescription: "Joyería de cabeza de diadema de ladrillo de copo de nieve de moda coreana\n retro simple para mujeres NHCW263570\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.10184E3\nprice_sale: !ruby/object:BigDecimal 18:0.269E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHCW1150758-black.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1385 fue creado. 187.149.19.6 ab4725f1-6605-4a58-9092-415efbf12610 2020-10-25 23:00:37.697421 43547 1385 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001385'\n 2 \N 187.149.19.6 ab4725f1-6605-4a58-9092-415efbf12610 2020-10-25 23:00:37.724619 43548 2390 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1385\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 ab4725f1-6605-4a58-9092-415efbf12610 2020-10-25 23:00:37.748267 43549 1386 Product \N \N 30 User \N create ---\nsku: ACC-1386\nname: DIA-0162\ndescription: Exagerada Hecha A Mano De Nueva Piedra Preciosa De Cristal\nprice_base: !ruby/object:BigDecimal 18:0.2294E3\nprice_sale: !ruby/object:BigDecimal 18:0.569E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHWJ1104390-Hair-band.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1386 fue creado. 187.149.19.6 9fe5d508-90ea-47fa-974e-96339765f665 2020-10-25 23:07:56.695393 43550 1386 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001386'\n 2 \N 187.149.19.6 9fe5d508-90ea-47fa-974e-96339765f665 2020-10-25 23:07:56.737146 43551 2391 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1386\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 9fe5d508-90ea-47fa-974e-96339765f665 2020-10-25 23:07:56.764256 43552 1387 Product \N \N 30 User \N create ---\nsku: ACC-1387\nname: DIA-0163\ndescription: Perla Exagerada Pétalo De Encaje Diamante Cristal Geométrico\nprice_base: !ruby/object:BigDecimal 18:0.2294E3\nprice_sale: !ruby/object:BigDecimal 18:0.549E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHWJ1149433-Pink.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1387 fue creado. 187.149.19.6 151f3826-51f2-439a-8b41-863bbaa0444c 2020-10-25 23:16:36.41269 43553 1387 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001387'\n 2 \N 187.149.19.6 151f3826-51f2-439a-8b41-863bbaa0444c 2020-10-25 23:16:36.461135 43554 2392 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1387\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 151f3826-51f2-439a-8b41-863bbaa0444c 2020-10-25 23:16:36.507656 43555 1388 Product \N \N 30 User \N create ---\nsku: ACC-1388\nname: DIA-0164\ndescription: Perla Terciopelo Dorado Flor Rosa\nprice_base: !ruby/object:BigDecimal 18:0.827E2\nprice_sale: !ruby/object:BigDecimal 18:0.199E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHCW1139765-Transparent-brick.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1388 fue creado. 187.149.19.6 e55d59db-ac4f-4da9-9aef-09c61fd015ee 2020-10-25 23:23:37.715679 43556 1388 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001388'\n 2 \N 187.149.19.6 e55d59db-ac4f-4da9-9aef-09c61fd015ee 2020-10-25 23:23:37.748758 43557 2393 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1388\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 e55d59db-ac4f-4da9-9aef-09c61fd015ee 2020-10-25 23:23:37.777788 43558 1389 Product \N \N 30 User \N create ---\nsku: ACC-1389\nname: DIA-0165\ndescription: Diadema Retro Para El Cabello Estilo Barroco Agua Salvaje Ladrillo Perla\n Prensad\nprice_base: !ruby/object:BigDecimal 18:0.89E2\nprice_sale: !ruby/object:BigDecimal 18:0.229E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHCW1150756-black.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1389 fue creado. 187.149.19.6 2d38d675-5fcd-47d9-9f42-d2fe2d784a29 2020-10-25 23:25:54.071264 43559 1389 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001389'\n 2 \N 187.149.19.6 2d38d675-5fcd-47d9-9f42-d2fe2d784a29 2020-10-25 23:25:54.105252 43560 2394 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1389\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 2d38d675-5fcd-47d9-9f42-d2fe2d784a29 2020-10-25 23:25:54.136444 43561 1390 Product \N \N 30 User \N create ---\nsku: ACC-1390\nname: DIA-0166\ndescription: Diadema Trenzada Trenzada Con Cadena De Terciopelo Dorado De Metal\nprice_base: !ruby/object:BigDecimal 18:0.5422E2\nprice_sale: !ruby/object:BigDecimal 18:0.189E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHCW1150740-black.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1390 fue creado. 187.149.19.6 9b56826a-e443-4617-becb-92c2a7c79800 2020-10-25 23:27:37.210665 43562 1390 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001390'\n 2 \N 187.149.19.6 9b56826a-e443-4617-becb-92c2a7c79800 2020-10-25 23:27:37.23814 43563 2395 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1390\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 9b56826a-e443-4617-becb-92c2a7c79800 2020-10-25 23:27:37.271618 43564 1391 Product \N \N 30 User \N create ---\nsku: ACC-1391\nname: DIA-0171\ndescription: De La Aleación De La Moda Trenzó La Venda Anudada\nprice_base: !ruby/object:BigDecimal 18:0.3399E2\nprice_sale: !ruby/object:BigDecimal 18:0.199E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHSM1138357-Thin-edge-chain.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1391 fue creado. 187.149.19.6 5722e89d-e847-46b5-8189-9ea92fb6668f 2020-10-25 23:33:26.742839 43565 1391 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001391'\n 2 \N 187.149.19.6 5722e89d-e847-46b5-8189-9ea92fb6668f 2020-10-25 23:33:26.783063 43566 2396 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1391\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 5722e89d-e847-46b5-8189-9ea92fb6668f 2020-10-25 23:33:26.813285 43567 421 Purchase \N \N 30 User \N create ---\nsupplier_id: 3\npointsale_id: 1\npurchase_code: PV1-C-170\namount: !ruby/object:BigDecimal 18:0.137161E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.137161E4\nobservations: ''\npurchase_date: 2020-10-25\nuser_id: '30'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-170 por $ 1371.61 MXN creada. 187.149.19.6 db95cbad-fd04-450c-9340-e88ad7c0ac87 2020-10-25 23:33:38.680147 43568 2386 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.19.6 db95cbad-fd04-450c-9340-e88ad7c0ac87 2020-10-25 23:33:38.70484 43569 2387 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.19.6 db95cbad-fd04-450c-9340-e88ad7c0ac87 2020-10-25 23:33:38.730739 43570 2388 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.19.6 db95cbad-fd04-450c-9340-e88ad7c0ac87 2020-10-25 23:33:38.758684 43571 2389 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.19.6 db95cbad-fd04-450c-9340-e88ad7c0ac87 2020-10-25 23:33:38.789621 43572 2390 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.19.6 db95cbad-fd04-450c-9340-e88ad7c0ac87 2020-10-25 23:33:38.812688 43573 2391 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.19.6 db95cbad-fd04-450c-9340-e88ad7c0ac87 2020-10-25 23:33:38.840816 43574 2392 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.19.6 db95cbad-fd04-450c-9340-e88ad7c0ac87 2020-10-25 23:33:38.867799 43575 2393 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.19.6 db95cbad-fd04-450c-9340-e88ad7c0ac87 2020-10-25 23:33:38.896013 43576 2394 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.19.6 db95cbad-fd04-450c-9340-e88ad7c0ac87 2020-10-25 23:33:38.922813 43577 2395 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.19.6 db95cbad-fd04-450c-9340-e88ad7c0ac87 2020-10-25 23:33:38.946192 43578 2396 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.19.6 db95cbad-fd04-450c-9340-e88ad7c0ac87 2020-10-25 23:33:38.976395 43579 30 User \N \N 30 User \N update ---\nlast_sign_in_at:\n- 2020-10-19 18:33:01.353452000 Z\n- &1 2020-10-25 19:53:02.127728000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-26 00:15:49.943749008 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147109126\n mask_addr: 4294967295\nsign_in_count:\n- 11\n- 12\n 24 \N 187.149.19.6 61c59d46-d9fa-480c-b4bb-8d69bc056d41 2020-10-26 00:15:49.963483 43580 30 User \N \N 30 User \N update ---\nunique_session_id:\n- rUvcLymUJcxH_x6AgCTE\n- FsyFvEPf1MoTTPhjxhCu\n 25 \N 187.149.19.6 61c59d46-d9fa-480c-b4bb-8d69bc056d41 2020-10-26 00:15:49.98214 43581 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 21:15:27.913857000 Z\n- &1 2020-10-25 01:21:41.765120000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-26 00:27:49.061230927 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938131\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938131\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535648\n mask_addr: 4294967295\nsign_in_count:\n- 2010\n- 2011\n 4022 \N 177.228.102.96 01775f16-7a2a-4ff3-922d-fd4d69dd0d10 2020-10-26 00:27:49.070352 43582 4 User \N \N 4 User \N update ---\nunique_session_id:\n- s895tuHBuKLk8Qhj2DdU\n- Twbr_xJHmdVxcKY2r-1x\n 4023 \N 177.228.102.96 01775f16-7a2a-4ff3-922d-fd4d69dd0d10 2020-10-26 00:27:49.091682 43583 422 Purchase \N \N 30 User \N create ---\nsupplier_id: 3\npointsale_id: 1\npurchase_code: PV1-C-171\namount: !ruby/object:BigDecimal 18:0.27298E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.27298E3\nobservations: ''\npurchase_date: 2020-10-25\nuser_id: '30'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-171 por $ 272.98 MXN creada. 187.149.19.6 5f0a35a9-7bb2-4c75-9ddc-d50f351b29b9 2020-10-26 01:00:40.045853 43584 2384 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.19.6 5f0a35a9-7bb2-4c75-9ddc-d50f351b29b9 2020-10-26 01:00:40.07454 43625 2402 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.19.6 a5d5f1fc-45e4-4033-8c1e-24d7b19d561d 2020-10-26 02:17:45.274168 43585 1392 Product \N \N 30 User \N create ---\nsku: ACC-1392\nname: DIA-0158\ndescription: "Venta caliente venta al por mayor llena de la venda del diamante de\n la moda \\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.22812E3\nprice_sale: !ruby/object:BigDecimal 18:0.569E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHLN1128738-color.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1392 fue creado. 187.149.19.6 8ae6bf7b-cc31-40c3-8710-518168f570a0 2020-10-26 01:39:43.743829 43586 1392 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001392'\n 2 \N 187.149.19.6 8ae6bf7b-cc31-40c3-8710-518168f570a0 2020-10-26 01:39:43.780836 43587 2397 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1392\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 8ae6bf7b-cc31-40c3-8710-518168f570a0 2020-10-26 01:39:43.811557 43588 423 Purchase \N \N 30 User \N create ---\nsupplier_id: 3\npointsale_id: 3\npurchase_code: PV3-C-113\namount: !ruby/object:BigDecimal 18:0.152214E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.152214E4\nobservations: ''\npurchase_date: 2020-10-25\nuser_id: '30'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-113 por $ 1522.14 MXN creada. 187.149.19.6 1b164b9b-fced-4cd6-9029-465c38d8ac99 2020-10-26 01:50:57.058534 43589 2397 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.19.6 1b164b9b-fced-4cd6-9029-465c38d8ac99 2020-10-26 01:50:57.081134 43590 2110 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.19.6 1b164b9b-fced-4cd6-9029-465c38d8ac99 2020-10-26 01:50:57.10353 43591 2108 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.19.6 1b164b9b-fced-4cd6-9029-465c38d8ac99 2020-10-26 01:50:57.127609 43592 2088 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.8E1\n 3 \N 187.149.19.6 1b164b9b-fced-4cd6-9029-465c38d8ac99 2020-10-26 01:50:57.150522 43593 2398 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1377\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 1b164b9b-fced-4cd6-9029-465c38d8ac99 2020-10-26 01:50:57.177387 43594 2399 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1381\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 1b164b9b-fced-4cd6-9029-465c38d8ac99 2020-10-26 01:50:57.206836 43595 2400 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1378\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 1b164b9b-fced-4cd6-9029-465c38d8ac99 2020-10-26 01:50:57.235935 43596 2401 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1380\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 1b164b9b-fced-4cd6-9029-465c38d8ac99 2020-10-26 01:50:57.269343 43597 1393 Product \N \N 30 User \N create ---\nsku: ACC-1393\nname: DIA-0146\ndescription: Diadema De Perlas Finas De Cristal\nprice_base: !ruby/object:BigDecimal 18:0.1616E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHDP288435-Pink-3200.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1393 fue creado. 187.149.19.6 c120f58b-83d8-4d3f-8099-ff9359489e5c 2020-10-26 01:53:02.220538 43598 1393 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001393'\n 2 \N 187.149.19.6 c120f58b-83d8-4d3f-8099-ff9359489e5c 2020-10-26 01:53:02.251595 43599 2402 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1393\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 c120f58b-83d8-4d3f-8099-ff9359489e5c 2020-10-26 01:53:02.278473 43600 1394 Product \N \N 30 User \N create ---\nsku: ACC-1394\nname: DIA-0151\ndescription: Perla Rhinestone Diadema Aleación Abeja Flores\nprice_base: !ruby/object:BigDecimal 18:0.8908E2\nprice_sale: !ruby/object:BigDecimal 18:0.299E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHLN846944-red.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1394 fue creado. 187.149.19.6 6584e0b8-f329-4514-98ec-2a8fa6348d12 2020-10-26 01:55:31.403326 43601 1394 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001394'\n 2 \N 187.149.19.6 6584e0b8-f329-4514-98ec-2a8fa6348d12 2020-10-26 01:55:31.430913 43602 2403 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1394\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 6584e0b8-f329-4514-98ec-2a8fa6348d12 2020-10-26 01:55:31.457228 43603 1395 Product \N \N 30 User \N create ---\nsku: ACC-1395\nname: DIA-0152\ndescription: Diadema De Diamantes Coloridos\nprice_base: !ruby/object:BigDecimal 18:0.3381E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHUX864542-black.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1395 fue creado. 187.149.19.6 5d5c1857-ecca-4eb0-9001-bc30d445a279 2020-10-26 01:59:08.129202 43604 1395 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001395'\n 2 \N 187.149.19.6 5d5c1857-ecca-4eb0-9001-bc30d445a279 2020-10-26 01:59:08.157661 43605 2404 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1395\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 5d5c1857-ecca-4eb0-9001-bc30d445a279 2020-10-26 01:59:08.182355 43626 2403 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.19.6 a5d5f1fc-45e4-4033-8c1e-24d7b19d561d 2020-10-26 02:17:45.294622 43606 1396 Product \N \N 30 User \N create ---\nsku: ACC-1396\nname: DIA-0153\ndescription: Diadema Retro Cadena De Diamantes De Imitación Flor Ensanchada\nprice_base: !ruby/object:BigDecimal 18:0.11162E3\nprice_sale: !ruby/object:BigDecimal 18:0.359E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHHD876225-Dark-blue.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1396 fue creado. 187.149.19.6 adc4523e-b25b-46e9-bf16-46912e219221 2020-10-26 02:01:40.859753 43607 1396 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001396'\n 2 \N 187.149.19.6 adc4523e-b25b-46e9-bf16-46912e219221 2020-10-26 02:01:40.892115 43608 2405 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1396\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 adc4523e-b25b-46e9-bf16-46912e219221 2020-10-26 02:01:40.920167 43609 1397 Product \N \N 30 User \N create ---\nsku: ACC-1397\nname: DIA-0155\ndescription: Diadema de diamantes de color de aleación de tela creativa d\nprice_base: !ruby/object:BigDecimal 18:0.3551E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHJE907261-red.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1397 fue creado. 187.149.19.6 52d440ea-7a05-40f7-82cf-a8575dc0a775 2020-10-26 02:04:39.828495 43610 1397 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001397'\n 2 \N 187.149.19.6 52d440ea-7a05-40f7-82cf-a8575dc0a775 2020-10-26 02:04:39.863269 43611 2406 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1397\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 52d440ea-7a05-40f7-82cf-a8575dc0a775 2020-10-26 02:04:39.888838 43612 1398 Product \N \N 30 User \N create ---\nsku: ACC-1398\nname: DIA-0157\ndescription: Diadema De Ala Ancha De Abeja\nprice_base: !ruby/object:BigDecimal 18:0.8909E2\nprice_sale: !ruby/object:BigDecimal 18:0.299E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHCW925624-black.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1398 fue creado. 187.149.19.6 b7d284f1-fc23-4901-8699-7b9c30e07828 2020-10-26 02:06:36.595478 43613 1398 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001398'\n 2 \N 187.149.19.6 b7d284f1-fc23-4901-8699-7b9c30e07828 2020-10-26 02:06:36.624808 43614 2407 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1398\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 b7d284f1-fc23-4901-8699-7b9c30e07828 2020-10-26 02:06:36.663329 43615 1399 Product \N \N 30 User \N create ---\nsku: ACC-1399\nname: DIA-0168\ndescription: DIADEMA DE SATIN BRILLOSA NEGRA Y ROSA\nprice_base: !ruby/object:BigDecimal 18:0.2424E2\nprice_sale: !ruby/object:BigDecimal 18:0.109E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHMD1144539-Pink.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1399 fue creado. 187.149.19.6 296f1f4f-8002-4c8b-86b9-13a6753e2449 2020-10-26 02:10:14.826826 43616 1399 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001399'\n 2 \N 187.149.19.6 296f1f4f-8002-4c8b-86b9-13a6753e2449 2020-10-26 02:10:14.857479 43617 2408 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1399\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 296f1f4f-8002-4c8b-86b9-13a6753e2449 2020-10-26 02:10:14.8857 43618 1400 Product \N \N 30 User \N create ---\nsku: ACC-1400\nname: DIA-0169\ndescription: 'Diadema De Terciopelo Dorado Negro '\nprice_base: !ruby/object:BigDecimal 18:0.7292E2\nprice_sale: !ruby/object:BigDecimal 18:0.239E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHLN1151134-black.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1400 fue creado. 187.149.19.6 28c42bc3-7def-4eb8-9d4b-dd5842a4d4b3 2020-10-26 02:14:01.211297 43619 1400 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001400'\n 2 \N 187.149.19.6 28c42bc3-7def-4eb8-9d4b-dd5842a4d4b3 2020-10-26 02:14:01.248828 43620 2409 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1400\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 28c42bc3-7def-4eb8-9d4b-dd5842a4d4b3 2020-10-26 02:14:01.277463 43621 1401 Product \N \N 30 User \N create ---\nsku: ACC-1401\nname: DIA-0170\ndescription: "De La Aleación De La Moda Trenzó La Venda Anudada\\r\\n"\nprice_base: !ruby/object:BigDecimal 18:0.383E2\nprice_sale: !ruby/object:BigDecimal 18:0.159E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHSM1138356-Wide-side-chain.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1401 fue creado. 187.149.19.6 4b0b90ac-a8fa-4c02-8d8d-858f9063edc5 2020-10-26 02:17:36.61102 43622 1401 Product \N \N 30 User \N update ---\nbarcode:\n- ''\n- '0001401'\n 2 \N 187.149.19.6 4b0b90ac-a8fa-4c02-8d8d-858f9063edc5 2020-10-26 02:17:36.638947 43623 2410 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1401\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.19.6 4b0b90ac-a8fa-4c02-8d8d-858f9063edc5 2020-10-26 02:17:36.665308 43624 424 Purchase \N \N 30 User \N create ---\nsupplier_id: 3\npointsale_id: 3\npurchase_code: PV3-C-114\namount: !ruby/object:BigDecimal 18:0.63831E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.63831E3\nobservations: ''\npurchase_date: 2020-10-25\nuser_id: '30'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-114 por $ 638.31 MXN creada. 187.149.19.6 a5d5f1fc-45e4-4033-8c1e-24d7b19d561d 2020-10-26 02:17:45.254501 43627 2404 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.19.6 a5d5f1fc-45e4-4033-8c1e-24d7b19d561d 2020-10-26 02:17:45.315945 43628 2405 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.19.6 a5d5f1fc-45e4-4033-8c1e-24d7b19d561d 2020-10-26 02:17:45.345327 43629 2406 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.19.6 a5d5f1fc-45e4-4033-8c1e-24d7b19d561d 2020-10-26 02:17:45.36965 43630 2407 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.19.6 a5d5f1fc-45e4-4033-8c1e-24d7b19d561d 2020-10-26 02:17:45.390815 43631 2408 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.19.6 a5d5f1fc-45e4-4033-8c1e-24d7b19d561d 2020-10-26 02:17:45.412992 43632 2409 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.19.6 a5d5f1fc-45e4-4033-8c1e-24d7b19d561d 2020-10-26 02:17:45.433915 43633 2410 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.19.6 a5d5f1fc-45e4-4033-8c1e-24d7b19d561d 2020-10-26 02:17:45.454525 43634 1228 Product \N \N 30 User \N update ---\ndescription:\n- "DIADEMA CADENA ROJA\\r\\n"\n- "DIADEMA CADENA ROJA, ROSA Y BEIGE\\r\\n"\n 4 El producto ACC-1228 fue modificado. 187.149.19.6 d19a5f78-5a94-4ec9-81e0-66c50cbcbf87 2020-10-26 02:57:56.893737 43635 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 23:59:42.886084000 Z\n- &1 2020-10-25 03:37:55.221121000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-26 03:48:23.064684155 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539848\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539848\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984545270\n mask_addr: 4294967295\nsign_in_count:\n- 313\n- 314\n 628 \N 177.228.139.246 62d0a8c3-b20c-4b30-85a5-3d9f46a431bd 2020-10-26 03:48:23.073337 43636 1 User \N \N 1 User \N update ---\nunique_session_id:\n- qKAv1neu9jk3gzwnsLHk\n- e8eK2ur8nLSsKaDg-Lkj\n 629 \N 177.228.139.246 62d0a8c3-b20c-4b30-85a5-3d9f46a431bd 2020-10-26 03:48:23.090719 43637 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-10-19 19:47:30.101378000 Z\n- &1 2020-10-25 20:49:27.519310000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-26 19:34:03.989217272 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147109126\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147109126\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\nsign_in_count:\n- 316\n- 317\n 635 \N 189.186.72.137 490f515b-9bdc-4207-ada7-22e98a88a5ff 2020-10-26 19:34:04.018751 43638 21 User \N \N 21 User \N update ---\nunique_session_id:\n- _NJCn19mVK2rwR_Zo9Vt\n- FoLTfDYY_zCAdZFy9SzV\n 636 \N 189.186.72.137 490f515b-9bdc-4207-ada7-22e98a88a5ff 2020-10-26 19:34:04.041811 43639 1135 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1017E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1017.0 189.186.72.137 87d2c293-8355-423b-b397-df50adff6cec 2020-10-26 19:37:04.489516 43640 3259 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1135\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-10-26\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-788\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 7684f8d1-cfb2-499c-b1a1-8863e606ffb7 2020-10-26 19:39:19.159986 43641 971 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.72.137 7684f8d1-cfb2-499c-b1a1-8863e606ffb7 2020-10-26 19:39:19.192845 43642 3259 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 5b002b32-37fb-41a8-a302-7ecf8dd2cc0c 2020-10-26 19:39:59.787975 43643 4319 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1135\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.12E3\nmove_type: '1'\nsale_id: 3259\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-788\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-788 189.186.72.137 5b002b32-37fb-41a8-a302-7ecf8dd2cc0c 2020-10-26 19:39:59.822665 43644 3259 Sale \N \N 21 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-788 cancelada. 189.186.72.137 b9e542dc-fab7-4d78-af9f-ac5bd1ce7732 2020-10-26 19:40:58.954253 43645 4319 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1135\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E3\nmove_type: '1'\nsale_id: 3259\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-788\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.72.137 b9e542dc-fab7-4d78-af9f-ac5bd1ce7732 2020-10-26 19:40:58.98204 43646 971 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 189.186.72.137 b9e542dc-fab7-4d78-af9f-ac5bd1ce7732 2020-10-26 19:40:59.020587 43647 3260 Sale \N \N 21 User \N create ---\ncustomer_id: 316\nuser_id: 21\nopen_cash_register_id: 1135\namount: !ruby/object:BigDecimal 18:0.68879E3\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-10-26\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-789\nexpiration_date: 2020-11-30\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 ec39682d-47b3-413d-b19d-32a534df6cbd 2020-10-26 19:42:00.84354 43648 971 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 189.186.72.137 ec39682d-47b3-413d-b19d-32a534df6cbd 2020-10-26 19:42:00.871268 43649 4320 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1135\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8E2\nmove_type: '1'\nsale_id: 3260\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-789\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.2E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-789 189.186.72.137 82d0fbd4-ae2e-4309-ac10-a2d72b4fdc8f 2020-10-26 19:43:00.201406 43650 3260 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-789 cancelada. 189.186.72.137 c95579fa-7d75-40e6-a770-2ab6d2672a54 2020-10-26 19:43:42.55851 43651 971 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 13 \N 189.186.72.137 c95579fa-7d75-40e6-a770-2ab6d2672a54 2020-10-26 19:43:42.581105 43652 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-25 01:21:41.765120000 Z\n- &1 2020-10-26 00:27:49.061230000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-26 20:14:38.884796038 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938131\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535648\n mask_addr: 4294967295\nsign_in_count:\n- 2011\n- 2012\n 4024 \N 177.228.102.96 67a9eb0a-1d26-49f2-bb07-3ec672f98804 2020-10-26 20:14:38.891821 43653 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Twbr_xJHmdVxcKY2r-1x\n- 4-ozW5arzWN9yQsVSKky\n 4025 \N 177.228.102.96 67a9eb0a-1d26-49f2-bb07-3ec672f98804 2020-10-26 20:14:38.911839 43654 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 19:26:49.899668000 Z\n- &1 2020-10-24 23:49:15.298990000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-26 20:34:47.903014181 Z\nsign_in_count:\n- 673\n- 674\n 1351 \N 187.149.77.174 d99cf5c9-f34d-4846-8f6a-036445f1c8f7 2020-10-26 20:34:47.909001 43655 2 User \N \N 2 User \N update ---\nunique_session_id:\n- R5XYZJWEySq7tUkQ3brQ\n- 1PkogCqr6gyzxXizgHsw\n 1352 \N 187.149.77.174 d99cf5c9-f34d-4846-8f6a-036445f1c8f7 2020-10-26 20:34:47.924567 43656 1136 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.705E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 705.0 187.149.77.174 7f8dbcd2-afd4-4e7e-a86b-b8cb3a0ea442 2020-10-26 20:35:20.778864 43657 3261 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1136\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-10-26\nsaletype: 1\nseller_id: 28\nsale_code: PV1-V-1552\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 62f6cdb5-87a9-4337-a596-1c0d59166521 2020-10-26 20:36:20.902341 43658 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.15E2\n 3 \N 187.149.77.174 62f6cdb5-87a9-4337-a596-1c0d59166521 2020-10-26 20:36:20.937127 43659 3261 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 de31433d-cc3f-478b-b347-c1c287246405 2020-10-26 20:36:29.125713 43660 4321 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1136\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3261\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1552\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1799E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1552 187.149.77.174 de31433d-cc3f-478b-b347-c1c287246405 2020-10-26 20:36:29.151624 43661 3262 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1136\namount: !ruby/object:BigDecimal 18:0.369E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.369E3\nstatus: 0\ndate_sale: 2020-10-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1553\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 620aa1b7-0920-4b5b-bde0-892ce5ba43d2 2020-10-26 20:58:17.249073 43662 2136 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.77.174 620aa1b7-0920-4b5b-bde0-892ce5ba43d2 2020-10-26 20:58:17.276897 43663 3262 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 20d14e3a-3280-453d-8e65-a6fe0780bc03 2020-10-26 20:58:40.176509 43664 4322 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1136\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.369E3\nmove_type: '1'\nsale_id: 3262\ncardnumber: 4882\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1553\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1553 187.149.77.174 20d14e3a-3280-453d-8e65-a6fe0780bc03 2020-10-26 20:58:40.202386 43665 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-25 03:37:55.221121000 Z\n- &1 2020-10-26 03:48:23.064684000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-26 20:59:48.902795198 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539848\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984545270\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984545270\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\nsign_in_count:\n- 314\n- 315\n 630 \N 187.149.77.174 5ead3d91-0885-47d0-a8be-c43fbfa2d4c2 2020-10-26 20:59:48.924609 43666 1 User \N \N 1 User \N update ---\nunique_session_id:\n- e8eK2ur8nLSsKaDg-Lkj\n- URBT6qF9svanyEU_PxPb\n 631 \N 187.149.77.174 5ead3d91-0885-47d0-a8be-c43fbfa2d4c2 2020-10-26 20:59:48.941839 43667 3263 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1136\namount: !ruby/object:BigDecimal 18:0.399E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.149E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-10-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1554\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 f03c3e6f-8619-4c9b-bad1-ff00279631fb 2020-10-26 21:20:48.090127 43668 1781 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.77.174 f03c3e6f-8619-4c9b-bad1-ff00279631fb 2020-10-26 21:20:48.117634 43669 3263 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 680d77d6-83a8-4050-ac6d-cc1163e75189 2020-10-26 21:20:51.73475 43670 4323 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1136\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 3263\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1554\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1554 187.149.77.174 680d77d6-83a8-4050-ac6d-cc1163e75189 2020-10-26 21:20:51.757549 43671 3264 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1135\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-10-26\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-790\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 0ac4b686-db48-412c-9ead-24595e455ca5 2020-10-26 21:22:32.819529 43672 2280 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 189.186.72.137 0ac4b686-db48-412c-9ead-24595e455ca5 2020-10-26 21:22:32.85592 43673 3264 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 c28ebbce-5d6c-49c4-878e-f9d1946a38b5 2020-10-26 21:22:54.803095 43674 4324 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1135\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 3264\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-790\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-790 189.186.72.137 c28ebbce-5d6c-49c4-878e-f9d1946a38b5 2020-10-26 21:22:54.855827 43675 3265 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1135\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-10-26\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-791\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 9732f460-17a1-4ed6-9cf0-a3924765a9da 2020-10-26 21:35:15.215738 43676 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 77 \N 189.186.72.137 9732f460-17a1-4ed6-9cf0-a3924765a9da 2020-10-26 21:35:15.242935 43677 3265 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 53f77a5e-4034-47cf-b56d-90310e75376b 2020-10-26 21:35:32.758459 43678 4325 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1135\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 3265\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-791\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-791 189.186.72.137 53f77a5e-4034-47cf-b56d-90310e75376b 2020-10-26 21:35:32.780509 43679 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-26 03:48:23.064684000 Z\n- &1 2020-10-26 20:59:48.902795000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-26 21:45:16.380882432 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984545270\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\nsign_in_count:\n- 315\n- 316\n 632 \N 187.149.77.174 6b2ba8f2-5aa6-473a-bcdc-4c92ed8d88d6 2020-10-26 21:45:16.389748 43680 1 User \N \N 1 User \N update ---\nunique_session_id:\n- URBT6qF9svanyEU_PxPb\n- gY3Amah1D7KNJARk2aAJ\n 633 \N 187.149.77.174 6b2ba8f2-5aa6-473a-bcdc-4c92ed8d88d6 2020-10-26 21:45:16.405799 43681 1402 Product \N \N 21 User \N create ---\nsku: ZAP-1402\nname: SOMIL\ndescription: 'BOTAS NEGRAS ALTAS DE GAMUZA '\nprice_base: !ruby/object:BigDecimal 18:0.11495E4\nprice_sale: !ruby/object:BigDecimal 18:0.2299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: SOMIL.png\ncategory_id: 13\nproduct_service_key: '01010101'\n 1 El producto ZAP-1402 fue creado. 189.186.72.137 edab9585-7dfa-4f31-a077-e2bbb27d93c8 2020-10-26 21:51:12.712709 43682 1402 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001402'\n 2 \N 189.186.72.137 edab9585-7dfa-4f31-a077-e2bbb27d93c8 2020-10-26 21:51:12.754079 43683 2411 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1402\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 edab9585-7dfa-4f31-a077-e2bbb27d93c8 2020-10-26 21:51:12.783783 43684 30 User \N \N 30 User \N update ---\nlast_sign_in_at:\n- 2020-10-25 19:53:02.127728000 Z\n- &1 2020-10-26 00:15:49.943749000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-26 21:53:21.694687361 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147109126\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\nsign_in_count:\n- 12\n- 13\n 26 \N 189.186.72.137 f0cc305f-2ec3-4303-8765-df839c58db81 2020-10-26 21:53:21.702572 43685 30 User \N \N 30 User \N update ---\nunique_session_id:\n- FsyFvEPf1MoTTPhjxhCu\n- W6ye_osfx1ZsHq6n9ZR1\n 27 \N 189.186.72.137 f0cc305f-2ec3-4303-8765-df839c58db81 2020-10-26 21:53:21.723925 43686 1374 Product \N \N 30 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1374'\n is_parent: false\n sku: ZAP-1374\n name: AHYAM\n description: MOCASINES NEGROS Y CAFES\n price_base: '799.5'\n price_sale: '1599.0'\n img_product: AHYAM.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '13'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170830279'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-23 18:51:52.047824'\n updated_at: &12 2020-10-26 21:54:03.004085887 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1374'\n sku: ZAP-1374\n name: AHYAM\n description: MOCASINES NEGROS Y CAFES\n price_base: '799.50'\n price_sale: '1599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-23 18:51:52.047824'\n updated_at: '2020-10-23 18:51:52.047824'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170830279'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '13'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1374'\n type: *3\n value: 1374\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ZAP-1374\n type: *7\n value: ZAP-1374\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: AHYAM\n type: *8\n value: AHYAM\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: MOCASINES NEGROS Y CAFES\n type: *6\n value: MOCASINES NEGROS Y CAFES\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '799.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1599E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: AHYAM.png\n type: *2\n value: AHYAM.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '13'\n type: *3\n value: 13\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170830279'\n type: *2\n value: '7509170830279'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-23 18:51:52.047824'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- AHYAM.png\n 2 El producto ZAP-1374 fue modificado. 189.186.72.137 07f83548-3a23-476d-b3c3-335e41e937ff 2020-10-26 21:54:03.052922 43687 425 Purchase \N \N 21 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-115\namount: !ruby/object:BigDecimal 18:0.34485E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.34485E4\nobservations: ''\npurchase_date: 2020-10-26\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-115 por $ 3448.5 MXN creada. 189.186.72.137 52cfd062-3ded-4a26-b094-1255d1fccf05 2020-10-26 21:59:43.315049 43688 2411 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.72.137 52cfd062-3ded-4a26-b094-1255d1fccf05 2020-10-26 21:59:43.35986 43689 426 Purchase \N \N 21 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-116\namount: !ruby/object:BigDecimal 18:0.4598E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4598E4\nobservations: ''\npurchase_date: 2020-10-26\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-116 por $ 4598.0 MXN creada. 189.186.72.137 5c2b696d-1290-4c10-9cd0-3d7d3834256f 2020-10-26 22:13:19.370563 43690 2411 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.7E1\n 3 \N 189.186.72.137 5c2b696d-1290-4c10-9cd0-3d7d3834256f 2020-10-26 22:13:19.391186 43691 3266 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1135\namount: !ruby/object:BigDecimal 18:0.2299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2299E4\nstatus: 0\ndate_sale: 2020-10-26\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-792\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 8abe25c2-1bd8-432f-8bf9-d682729987ca 2020-10-26 22:26:23.430887 43692 2411 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.72.137 8abe25c2-1bd8-432f-8bf9-d682729987ca 2020-10-26 22:26:23.459168 43693 3266 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 9982fb0f-27d6-4cc6-b5a5-59e58f434131 2020-10-26 22:26:33.792925 43694 4326 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1135\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2299E4\nmove_type: '1'\nsale_id: 3266\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-792\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.22999E5\nchange: !ruby/object:BigDecimal 18:0.207E5\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-792 189.186.72.137 9982fb0f-27d6-4cc6-b5a5-59e58f434131 2020-10-26 22:26:33.815827 43716 2253 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.77.174 3751af89-d8b8-4616-bce7-840a6b59f313 2020-10-26 23:38:56.450923 43695 4326 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1135\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2299E4\nmove_type: '1'\nsale_id: 3266\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-792\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.22999E5\nchange: !ruby/object:BigDecimal 18:0.207E5\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.72.137 c212238a-3a2f-4fb5-be14-b1bfbb438120 2020-10-26 22:26:39.687649 43696 4327 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1135\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2299E4\nmove_type: '1'\nsale_id: 3266\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-792\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-792 189.186.72.137 1ad7703e-43db-4c2c-9fb6-faddf7a695fd 2020-10-26 22:26:58.048541 43697 4328 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1115\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.12E4\nmove_type: '1'\nsale_id: 3179\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '247'\n 1 \N 189.186.72.137 9409d39f-70ac-4f0a-a1a0-8645ff3890cb 2020-10-26 22:28:12.351846 43698 4328 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 1115\n- 1135\n 2 movimiento de efectivo por venta con folio PV3-V-737 189.186.72.137 9409d39f-70ac-4f0a-a1a0-8645ff3890cb 2020-10-26 22:28:12.395351 43699 4329 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 936\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2503\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '7431'\n 1 \N 189.186.72.137 2d65bbc2-6882-4ba2-8660-e08e2f1146bf 2020-10-26 22:28:45.818062 43700 4329 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 936\n- 1135\n 2 movimiento de efectivo por venta con folio PV3-V-363 189.186.72.137 2d65bbc2-6882-4ba2-8660-e08e2f1146bf 2020-10-26 22:28:45.842851 43701 4330 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 662\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 1667\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '8438'\n 1 \N 189.186.72.137 ce7db8ad-efaa-4b87-9d84-e991ab754f9c 2020-10-26 22:29:20.819773 43702 4330 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 662\n- 1135\n 2 movimiento de efectivo por venta con folio PV3-V-167 189.186.72.137 ce7db8ad-efaa-4b87-9d84-e991ab754f9c 2020-10-26 22:29:20.842342 43703 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-26 20:59:48.902795000 Z\n- &1 2020-10-26 21:45:16.380882000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-26 22:53:12.551126887 Z\nsign_in_count:\n- 316\n- 317\n 634 \N 187.149.77.174 5b82d87c-d34d-443e-a7d1-e2035cd642fd 2020-10-26 22:53:12.558419 43704 1 User \N \N 1 User \N update ---\nunique_session_id:\n- gY3Amah1D7KNJARk2aAJ\n- Bbwj8zbXo-Qvt78xpoYT\n 635 \N 187.149.77.174 5b82d87c-d34d-443e-a7d1-e2035cd642fd 2020-10-26 22:53:12.578946 43705 3267 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1136\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-10-26\nsaletype: 1\nseller_id: 28\nsale_code: PV1-V-1555\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 778ee1a7-d8af-40e6-a20e-87873c40d00b 2020-10-26 23:11:53.383581 43706 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 4 \N 187.149.77.174 778ee1a7-d8af-40e6-a20e-87873c40d00b 2020-10-26 23:11:53.416354 43707 3267 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 2413be95-34e8-48c8-980e-0629ef346509 2020-10-26 23:11:57.798488 43708 4331 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1136\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3267\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1555\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1799E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1555 187.149.77.174 2413be95-34e8-48c8-980e-0629ef346509 2020-10-26 23:11:57.822075 43709 3268 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1136\namount: !ruby/object:BigDecimal 18:0.3598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3598E4\nstatus: 0\ndate_sale: 2020-10-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1556\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 a068158f-2791-4385-927b-743f6b216138 2020-10-26 23:25:39.40917 43710 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.12E2\n 5 \N 187.149.77.174 a068158f-2791-4385-927b-743f6b216138 2020-10-26 23:25:39.463751 43711 3268 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 e4d709ac-c256-45ea-86be-1bb39b1326fa 2020-10-26 23:26:46.096992 43712 4332 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1136\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3598E4\nmove_type: '1'\nsale_id: 3268\ncardnumber: 1034\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1556\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1556 187.149.77.174 e4d709ac-c256-45ea-86be-1bb39b1326fa 2020-10-26 23:26:46.132743 43713 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-26 21:45:16.380882000 Z\n- &1 2020-10-26 22:53:12.551126000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-26 23:28:44.501489822 Z\nsign_in_count:\n- 317\n- 318\n 636 \N 187.149.77.174 0a9d0525-5929-4fec-bc06-a030087eb9f2 2020-10-26 23:28:44.508328 43714 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Bbwj8zbXo-Qvt78xpoYT\n- ZWW8Vx3tudn81HFmmqZy\n 637 \N 187.149.77.174 0a9d0525-5929-4fec-bc06-a030087eb9f2 2020-10-26 23:28:44.522947 43715 3269 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1136\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2020-10-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1557\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 3751af89-d8b8-4616-bce7-840a6b59f313 2020-10-26 23:38:56.422579 43717 3269 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 87025636-cfc5-4da9-8c93-d03e25109dfe 2020-10-26 23:39:01.445431 43718 4333 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1136\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.479E3\nmove_type: '1'\nsale_id: 3269\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1557\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.479E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1557 187.149.77.174 87025636-cfc5-4da9-8c93-d03e25109dfe 2020-10-26 23:39:01.465594 43719 3270 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1136\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-10-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1558\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 da98b4c1-ba1f-49c0-bb42-71817dac0ee4 2020-10-26 23:51:13.203666 43720 2241 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.77.174 da98b4c1-ba1f-49c0-bb42-71817dac0ee4 2020-10-26 23:51:13.261552 43721 3270 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 993d419d-9541-4660-9da7-f5e9e4835737 2020-10-26 23:51:16.748621 43722 4334 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1136\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 3270\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1558\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1558 187.149.77.174 993d419d-9541-4660-9da7-f5e9e4835737 2020-10-26 23:51:16.773708 43723 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-26 22:53:12.551126000 Z\n- &1 2020-10-26 23:28:44.501489000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-26 23:55:21.106035395 Z\nsign_in_count:\n- 318\n- 319\n 638 \N 187.149.77.174 1b12b3c1-35e6-4013-82c7-7758e54844c9 2020-10-26 23:55:21.113076 43724 1 User \N \N 1 User \N update ---\nunique_session_id:\n- ZWW8Vx3tudn81HFmmqZy\n- K9zHMt4HYgEEUDGyfKZH\n 639 \N 187.149.77.174 1b12b3c1-35e6-4013-82c7-7758e54844c9 2020-10-26 23:55:21.126731 43725 3271 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1136\namount: !ruby/object:BigDecimal 18:0.282921E4\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.47E3\ntotal: !ruby/object:BigDecimal 18:0.2497E4\nstatus: 0\ndate_sale: 2020-10-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1559\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.77.174 a8597734-275e-4760-850c-3ee32a1e4882 2020-10-27 00:04:38.133215 43726 2241 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.77.174 a8597734-275e-4760-850c-3ee32a1e4882 2020-10-27 00:04:38.168491 43727 1885 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.77.174 a8597734-275e-4760-850c-3ee32a1e4882 2020-10-27 00:04:38.197942 43728 810 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 17 \N 187.149.77.174 a8597734-275e-4760-850c-3ee32a1e4882 2020-10-27 00:04:38.228154 43729 3271 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.77.174 d1f93c96-d754-4a70-8fb2-69b38fe3a654 2020-10-27 00:04:44.452238 43730 4335 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1136\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3271\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1559\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1559 187.149.77.174 d1f93c96-d754-4a70-8fb2-69b38fe3a654 2020-10-27 00:04:44.479002 43731 4336 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1136\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1498E4\nmove_type: '1'\nsale_id: 3271\ncardnumber: 5586\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1559\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1559 187.149.77.174 691f4d79-3ca4-461f-befb-edd52f7b0e39 2020-10-27 00:04:58.820722 43732 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-26 23:28:44.501489000 Z\n- &1 2020-10-26 23:55:21.106035000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-27 00:39:07.951654520 Z\nsign_in_count:\n- 319\n- 320\n 640 \N 187.149.77.174 34f2c7b5-42fa-49e2-9446-53fe21389eee 2020-10-27 00:39:07.957609 43733 1 User \N \N 1 User \N update ---\nunique_session_id:\n- K9zHMt4HYgEEUDGyfKZH\n- YAzxYY7j8rJqv61n6YvS\n 641 \N 187.149.77.174 34f2c7b5-42fa-49e2-9446-53fe21389eee 2020-10-27 00:39:07.970686 43734 3272 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1135\namount: !ruby/object:BigDecimal 18:0.369E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.369E3\nstatus: 0\ndate_sale: 2020-10-26\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-793\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 446822c0-cb75-495b-aa34-4ed963555fb7 2020-10-27 01:10:05.575384 43735 2093 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.72.137 446822c0-cb75-495b-aa34-4ed963555fb7 2020-10-27 01:10:05.601037 43736 3272 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.72.137 7fdad055-4a55-42bc-ab70-d36d50fc7d86 2020-10-27 01:10:37.762241 43737 4337 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1135\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.369E3\nmove_type: '1'\nsale_id: 3272\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-793\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.369E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-793 189.186.72.137 7fdad055-4a55-42bc-ab70-d36d50fc7d86 2020-10-27 01:10:37.7841 43738 4337 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1135\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.369E3\nmove_type: '1'\nsale_id: 3272\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-793\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.369E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.72.137 6b6b5a72-c34e-4013-aa6c-8bcf796774fe 2020-10-27 01:10:47.408482 43760 1405 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001405'\n 2 \N 189.186.72.137 f84aa3fc-1fbb-4ec7-b964-510e11b4378c 2020-10-27 19:34:42.70918 43739 4338 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1135\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.369E3\nmove_type: '1'\nsale_id: 3272\ncardnumber: 8441\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-793\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-793 189.186.72.137 c624763f-0f1c-4d60-8f98-19a34c134316 2020-10-27 01:11:08.569827 43740 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-26 23:55:21.106035000 Z\n- &1 2020-10-27 00:39:07.951654000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-27 01:11:14.440642230 Z\nsign_in_count:\n- 320\n- 321\n 642 \N 187.149.77.174 70f4b90a-b8d6-49cc-8e71-5c6e2b9e0c9b 2020-10-27 01:11:14.447836 43741 1 User \N \N 1 User \N update ---\nunique_session_id:\n- YAzxYY7j8rJqv61n6YvS\n- oaJQr9iEZbxDf7FeCWhX\n 643 \N 187.149.77.174 70f4b90a-b8d6-49cc-8e71-5c6e2b9e0c9b 2020-10-27 01:11:14.476508 43742 1160 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1136\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1159E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.604E4\ncash_fund: !ruby/object:BigDecimal 18:0.79E3\nphysical_cash: !ruby/object:BigDecimal 18:0.683E4\nobservations: retire $5700+$340 me pague de unos aretes pagados con tarjeta\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.77.174 b63bef4d-12aa-4113-80ea-54a663494913 2020-10-27 02:00:09.228742 43743 1136 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.77.174 b63bef4d-12aa-4113-80ea-54a663494913 2020-10-27 02:00:09.244502 43744 1161 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1135\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.7166E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 19\nreceived_cash: !ruby/object:BigDecimal 18:0.45E4\ncash_fund: !ruby/object:BigDecimal 18:0.804E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5304E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.72.137 186c602b-c217-4ffe-a09e-1c58bae18dc3 2020-10-27 02:19:47.003116 43745 1135 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.72.137 186c602b-c217-4ffe-a09e-1c58bae18dc3 2020-10-27 02:19:47.016692 43746 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-27 00:39:07.951654000 Z\n- &1 2020-10-27 01:11:14.440642000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-27 04:01:44.075830829 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938321\n mask_addr: 4294967295\nsign_in_count:\n- 321\n- 322\n 644 \N 200.68.151.17 41cde5bc-79c8-4a1b-9182-b6b1a8c636cc 2020-10-27 04:01:44.106074 43747 1 User \N \N 1 User \N update ---\nunique_session_id:\n- oaJQr9iEZbxDf7FeCWhX\n- bJ7iuScohxB7wmd9grQB\n 645 \N 200.68.151.17 41cde5bc-79c8-4a1b-9182-b6b1a8c636cc 2020-10-27 04:01:44.138186 43748 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 23:49:15.298990000 Z\n- &1 2020-10-26 20:34:47.903014000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-27 17:15:48.389347001 Z\nsign_in_count:\n- 674\n- 675\n 1353 \N 187.149.77.174 29c7271a-5062-48ae-8984-2c04c775ec1a 2020-10-27 17:15:48.417069 43749 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 1PkogCqr6gyzxXizgHsw\n- q3aFQY384x7VPB1SDW3B\n 1354 \N 187.149.77.174 29c7271a-5062-48ae-8984-2c04c775ec1a 2020-10-27 17:15:48.440255 43750 1137 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.79E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 790.0 187.149.77.174 7bcb0ed7-7077-40df-9a50-cded91f26894 2020-10-27 17:16:46.107834 43751 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-26 00:27:49.061230000 Z\n- &1 2020-10-26 20:14:38.884796000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-27 19:18:54.983875819 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535648\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\nsign_in_count:\n- 2012\n- 2013\n 4026 \N 189.186.72.137 e5b5179a-ca94-4f6f-88ec-6f5d3b5d833c 2020-10-27 19:18:55.021534 43752 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4-ozW5arzWN9yQsVSKky\n- GhToi1y3aZ3gQYgxZBTu\n 4027 \N 189.186.72.137 e5b5179a-ca94-4f6f-88ec-6f5d3b5d833c 2020-10-27 19:18:55.046769 43753 1403 Product \N \N 4 User \N create ---\nsku: ACC-1403\nname: ARE-0127\ndescription: ARETE DE ESTRELL Y TIRAS COLGANTES\nprice_base: !ruby/object:BigDecimal 18:0.7882E2\nprice_sale: !ruby/object:BigDecimal 18:0.199E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: SC180504100810.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1403 fue creado. 189.186.72.137 18929a06-346f-4586-bcfc-37f1559d439c 2020-10-27 19:30:04.410369 43754 1403 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001403'\n 2 \N 189.186.72.137 18929a06-346f-4586-bcfc-37f1559d439c 2020-10-27 19:30:04.447178 43755 2412 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1403\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 18929a06-346f-4586-bcfc-37f1559d439c 2020-10-27 19:30:04.48664 43756 1404 Product \N \N 4 User \N create ---\nsku: ACC-1404\nname: ARE-0133\ndescription: ARETE SANDIA\nprice_base: !ruby/object:BigDecimal 18:0.3255E2\nprice_sale: !ruby/object:BigDecimal 18:0.249E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHJJ122938.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1404 fue creado. 189.186.72.137 2dd60561-7158-4041-bdb4-b697ade3cb27 2020-10-27 19:31:43.515457 43757 1404 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001404'\n 2 \N 189.186.72.137 2dd60561-7158-4041-bdb4-b697ade3cb27 2020-10-27 19:31:43.546015 43758 2413 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1404\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 2dd60561-7158-4041-bdb4-b697ade3cb27 2020-10-27 19:31:43.573214 43759 1405 Product \N \N 4 User \N create ---\nsku: ACC-1405\nname: ARE-0132\ndescription: ARETE MARIPOSA\nprice_base: !ruby/object:BigDecimal 18:0.398E2\nprice_sale: !ruby/object:BigDecimal 18:0.189E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1405 fue creado. 189.186.72.137 f84aa3fc-1fbb-4ec7-b964-510e11b4378c 2020-10-27 19:34:42.679549 43761 2414 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1405\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 f84aa3fc-1fbb-4ec7-b964-510e11b4378c 2020-10-27 19:34:42.737287 43762 1406 Product \N \N 4 User \N create ---\nsku: ACC-1406\nname: ARE-0131\ndescription: ARETE LOVE\nprice_base: !ruby/object:BigDecimal 18:0.3757E2\nprice_sale: !ruby/object:BigDecimal 18:0.189E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: SC18122797444.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1406 fue creado. 189.186.72.137 7835ee8f-5f4e-4a20-a6a4-3d4aaf6dc4da 2020-10-27 19:35:47.282332 43763 1406 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001406'\n 2 \N 189.186.72.137 7835ee8f-5f4e-4a20-a6a4-3d4aaf6dc4da 2020-10-27 19:35:47.314819 43764 2415 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1406\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 7835ee8f-5f4e-4a20-a6a4-3d4aaf6dc4da 2020-10-27 19:35:47.344896 43765 1407 Product \N \N 4 User \N create ---\nsku: ACC-1407\nname: ARE-0130\ndescription: ARETE CORAZÓN CON PERLAS\nprice_base: !ruby/object:BigDecimal 18:0.38E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1407 fue creado. 189.186.72.137 877b2adc-5445-48ac-845d-ab1ca9cce420 2020-10-27 19:37:09.910396 43766 1407 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001407'\n 2 \N 189.186.72.137 877b2adc-5445-48ac-845d-ab1ca9cce420 2020-10-27 19:37:09.94246 43767 2416 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1407\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 877b2adc-5445-48ac-845d-ab1ca9cce420 2020-10-27 19:37:09.971034 43768 1408 Product \N \N 4 User \N create ---\nsku: ACC-1408\nname: ARE.0132\ndescription: ARETE CUADRADO PIEDRAS\nprice_base: !ruby/object:BigDecimal 18:0.4384E2\nprice_sale: !ruby/object:BigDecimal 18:0.279E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1408 fue creado. 189.186.72.137 458ce741-38cb-41ad-8161-8aa1120085f0 2020-10-27 19:38:38.742729 43769 1408 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001408'\n 2 \N 189.186.72.137 458ce741-38cb-41ad-8161-8aa1120085f0 2020-10-27 19:38:38.771688 43770 2417 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1408\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 458ce741-38cb-41ad-8161-8aa1120085f0 2020-10-27 19:38:38.799102 43771 1409 Product \N \N 4 User \N create ---\nsku: ACC-1409\nname: ARE-0136\ndescription: ARETE CORAZÓN ROJO\nprice_base: !ruby/object:BigDecimal 18:0.49E2\nprice_sale: !ruby/object:BigDecimal 18:0.239E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHMS133870.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1409 fue creado. 189.186.72.137 b54baf70-dfc3-4dce-8670-077f4071cc98 2020-10-27 19:40:16.493325 43772 1409 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001409'\n 2 \N 189.186.72.137 b54baf70-dfc3-4dce-8670-077f4071cc98 2020-10-27 19:40:16.52882 43773 2418 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1409\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 b54baf70-dfc3-4dce-8670-077f4071cc98 2020-10-27 19:40:16.566073 43774 1410 Product \N \N 4 User \N create ---\nsku: ACC-1410\nname: ARE-0139\ndescription: ARETE MARIPOSA MORADA\nprice_base: !ruby/object:BigDecimal 18:0.1298E2\nprice_sale: !ruby/object:BigDecimal 18:0.89E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHNZ158369.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1410 fue creado. 189.186.72.137 cf520657-c1a2-403f-9a19-8102e23c01c0 2020-10-27 19:41:38.842115 43775 1410 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001410'\n 2 \N 189.186.72.137 cf520657-c1a2-403f-9a19-8102e23c01c0 2020-10-27 19:41:38.881889 43776 2419 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1410\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 cf520657-c1a2-403f-9a19-8102e23c01c0 2020-10-27 19:41:38.908492 43777 1411 Product \N \N 4 User \N create ---\nsku: ACC-1411\nname: ARE-0129\ndescription: ARETE CORAZÓN\nprice_base: !ruby/object:BigDecimal 18:0.4888E2\nprice_sale: !ruby/object:BigDecimal 18:0.159E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1411 fue creado. 189.186.72.137 2bd713bc-9758-4d60-89d3-76ebb2b9452a 2020-10-27 19:43:29.258522 43778 1411 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001411'\n 2 \N 189.186.72.137 2bd713bc-9758-4d60-89d3-76ebb2b9452a 2020-10-27 19:43:29.289168 43779 2420 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1411\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.72.137 2bd713bc-9758-4d60-89d3-76ebb2b9452a 2020-10-27 19:43:29.316316 43851 2431 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1422\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 c93a8d0c-bb8f-49e4-a0d2-b91f9927b6c9 2020-10-27 21:53:44.863673 43780 427 Purchase \N \N 4 User \N create ---\nsupplier_id: 3\npointsale_id: 3\npurchase_code: PV3-C-117\namount: !ruby/object:BigDecimal 18:0.38144E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.38144E3\nobservations: ''\npurchase_date: 2020-10-27\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-117 por $ 381.44 MXN creada. 189.186.72.137 b4fd279b-28c9-44ce-bf33-64f32b3e9596 2020-10-27 19:45:18.080523 43781 2412 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.72.137 b4fd279b-28c9-44ce-bf33-64f32b3e9596 2020-10-27 19:45:18.126265 43782 2413 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.72.137 b4fd279b-28c9-44ce-bf33-64f32b3e9596 2020-10-27 19:45:18.177327 43783 2414 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.72.137 b4fd279b-28c9-44ce-bf33-64f32b3e9596 2020-10-27 19:45:18.210737 43784 2415 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.72.137 b4fd279b-28c9-44ce-bf33-64f32b3e9596 2020-10-27 19:45:18.239948 43785 2416 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.72.137 b4fd279b-28c9-44ce-bf33-64f32b3e9596 2020-10-27 19:45:18.274608 43786 2417 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.72.137 b4fd279b-28c9-44ce-bf33-64f32b3e9596 2020-10-27 19:45:18.307845 43787 2418 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.72.137 b4fd279b-28c9-44ce-bf33-64f32b3e9596 2020-10-27 19:45:18.341249 43788 2419 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.72.137 b4fd279b-28c9-44ce-bf33-64f32b3e9596 2020-10-27 19:45:18.371879 43789 2420 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.72.137 b4fd279b-28c9-44ce-bf33-64f32b3e9596 2020-10-27 19:45:18.400932 43790 1408 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1408'\n is_parent: false\n sku: ACC-1408\n name: ARE.0132\n description: ARETE CUADRADO PIEDRAS\n price_base: '43.84'\n price_sale: '279.0'\n img_product: NHJE136332.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001408'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-27 19:38:38.731454'\n updated_at: &12 2020-10-27 19:57:11.330845249 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1408'\n sku: ACC-1408\n name: ARE.0132\n description: ARETE CUADRADO PIEDRAS\n price_base: '43.84'\n price_sale: '279.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-27 19:38:38.731454'\n updated_at: '2020-10-27 19:38:38.769052'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001408'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1408'\n type: *3\n value: 1408\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1408\n type: *7\n value: ACC-1408\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ARE.0132\n type: *8\n value: ARE.0132\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: ARETE CUADRADO PIEDRAS\n type: *6\n value: ARETE CUADRADO PIEDRAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '43.84'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4384E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '279.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.279E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: NHJE136332.jpg\n type: *2\n value: NHJE136332.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001408'\n type: *2\n value: '0001408'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-27 19:38:38.731454'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- NHJE136332.jpg\n 3 El producto ACC-1408 fue modificado. 189.186.72.137 93f92b04-1197-4cc3-83d4-7a68ad1f4e23 2020-10-27 19:57:11.376134 43791 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 18:06:46.474773000 Z\n- &1 2020-10-24 19:30:20.884515000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-27 20:13:55.996439147 Z\nsign_in_count:\n- 313\n- 314\n 629 \N 189.186.72.137 149da126-f2cc-408f-891a-a098bd3aca71 2020-10-27 20:13:56.002453 43792 18 User \N \N 18 User \N update ---\nunique_session_id:\n- XFzWpu8fE5DwFz-srPtk\n- 8PwxrT7yUorCkxbiAreN\n 630 \N 189.186.72.137 149da126-f2cc-408f-891a-a098bd3aca71 2020-10-27 20:13:56.015896 43793 1138 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.804E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 804.0 189.186.72.137 52b4a2de-7e2d-460a-a894-f768cc720f8c 2020-10-27 20:14:09.181054 43794 421 Customer \N \N 18 User \N create ---\nnick_name: KARELI GONZALEZ\nphone: "(667) 253-8371"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KARELI GONZALEZ fue registrado. 189.186.72.137 ca0b0117-4240-4389-9759-545c330ce876 2020-10-27 20:14:36.308901 43795 3273 Sale \N \N 18 User \N create ---\ncustomer_id: 421\nuser_id: 18\nopen_cash_register_id: 1138\namount: !ruby/object:BigDecimal 18:0.3598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3598E4\nstatus: 0\ndate_sale: 2020-10-27\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-794\nexpiration_date: 2020-12-01\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.72.137 3721f339-283c-4a67-bb88-28f3e4f19bdb 2020-10-27 20:14:47.314687 43796 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.21E2\n- !ruby/object:BigDecimal 18:0.19E2\n 7 \N 189.186.72.137 3721f339-283c-4a67-bb88-28f3e4f19bdb 2020-10-27 20:14:47.346403 43797 4339 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1138\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E4\nmove_type: '1'\nsale_id: 3273\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-794\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-794 189.186.72.137 9b1f8b86-d0e3-46f0-baaf-e88c0ea09863 2020-10-27 20:15:33.925601 43798 3273 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.72.137 40adba7c-0236-423d-ac51-30a1da143e46 2020-10-27 20:15:35.561395 43799 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-26 20:14:38.884796000 Z\n- &1 2020-10-27 19:18:54.983875000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-27 20:22:22.932511023 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535648\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\nsign_in_count:\n- 2013\n- 2014\n 4028 \N 189.186.72.137 5824667e-cba9-489c-a307-a8dcb07370d7 2020-10-27 20:22:22.942483 43800 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GhToi1y3aZ3gQYgxZBTu\n- V38U8WyfW5MaskMu1QAP\n 4029 \N 189.186.72.137 5824667e-cba9-489c-a307-a8dcb07370d7 2020-10-27 20:22:22.966386 43801 1405 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1405'\n is_parent: false\n sku: ACC-1405\n name: ARE-0132\n description: ARETE MARIPOSA\n price_base: '39.8'\n price_sale: '189.0'\n img_product: SC18122797693.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001405'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-27 19:34:42.667513'\n updated_at: &12 2020-10-27 20:28:00.883994050 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1405'\n sku: ACC-1405\n name: ARE-0132\n description: ARETE MARIPOSA\n price_base: '39.80'\n price_sale: '189.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-27 19:34:42.667513'\n updated_at: '2020-10-27 19:34:42.706541'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001405'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1405'\n type: *3\n value: 1405\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1405\n type: *7\n value: ACC-1405\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ARE-0132\n type: *8\n value: ARE-0132\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: ARETE MARIPOSA\n type: *6\n value: ARETE MARIPOSA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '39.8'\n type: *1\n value: !ruby/object:BigDecimal 18:0.398E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '189.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.189E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: SC18122797693.jpg\n type: *2\n value: SC18122797693.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001405'\n type: *2\n value: '0001405'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-27 19:34:42.667513'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- SC18122797693.jpg\n 3 El producto ACC-1405 fue modificado. 189.186.72.137 c8510b14-06fa-43f0-a2f4-e2b2eda5a46b 2020-10-27 20:28:00.928318 43802 1411 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1411'\n is_parent: false\n sku: ACC-1411\n name: ARE-0129\n description: ARETE CORAZÓN\n price_base: '48.88'\n price_sale: '159.0'\n img_product: NHNZ221185.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001411'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-27 19:43:29.245049'\n updated_at: &12 2020-10-27 20:29:50.270034857 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1411'\n sku: ACC-1411\n name: ARE-0129\n description: ARETE CORAZÓN\n price_base: '48.88'\n price_sale: '159.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-27 19:43:29.245049'\n updated_at: '2020-10-27 19:43:29.286564'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001411'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1411'\n type: *3\n value: 1411\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1411\n type: *7\n value: ACC-1411\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ARE-0129\n type: *8\n value: ARE-0129\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: ARETE CORAZÓN\n type: *6\n value: ARETE CORAZÓN\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '48.88'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4888E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '159.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.159E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: NHNZ221185.jpg\n type: *2\n value: NHNZ221185.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001411'\n type: *2\n value: '0001411'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-27 19:43:29.245049'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- NHNZ221185.jpg\n 3 El producto ACC-1411 fue modificado. 189.186.72.137 7405f50d-c6ef-4237-bc7c-cafde2bb52ec 2020-10-27 20:29:50.312227 43803 1411 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.159E3\n- !ruby/object:BigDecimal 18:0.179E3\n 4 El producto ACC-1411 fue modificado. 189.186.72.137 a820d1ca-400e-4e00-be7d-f99e6838521c 2020-10-27 20:30:28.12441 43804 1412 Product \N \N 4 User \N create ---\nsku: ACC-1412\nname: ARE-0138\ndescription: ARTE PIEDRAS CON HILO ROSA\nprice_base: !ruby/object:BigDecimal 18:0.1915E2\nprice_sale: !ruby/object:BigDecimal 18:0.169E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1412 fue creado. 189.186.91.88 3c754a14-e2e7-456d-a982-64bbec1159f1 2020-10-27 21:12:27.965564 43805 1412 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001412'\n 2 \N 189.186.91.88 3c754a14-e2e7-456d-a982-64bbec1159f1 2020-10-27 21:12:27.995313 43806 2421 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1412\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 3c754a14-e2e7-456d-a982-64bbec1159f1 2020-10-27 21:12:28.021368 43807 1413 Product \N \N 4 User \N create ---\nsku: ACC-1413\nname: ARE-0137\ndescription: ARETE DE CORAZÓN CON PIEDRA Y BOLITA\nprice_base: !ruby/object:BigDecimal 18:0.8385E2\nprice_sale: !ruby/object:BigDecimal 18:0.189E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1413 fue creado. 189.186.91.88 e482b64e-cc09-4482-b417-3d3e6ccdcaa4 2020-10-27 21:14:39.141257 43808 1413 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001413'\n 2 \N 189.186.91.88 e482b64e-cc09-4482-b417-3d3e6ccdcaa4 2020-10-27 21:14:39.177993 43809 2422 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1413\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 e482b64e-cc09-4482-b417-3d3e6ccdcaa4 2020-10-27 21:14:39.217478 43810 1414 Product \N \N 4 User \N create ---\nsku: ACC-1414\nname: ARE-0138\ndescription: ARETE ESTRELLA PIEDRA\nprice_base: !ruby/object:BigDecimal 18:0.52E2\nprice_sale: !ruby/object:BigDecimal 18:0.229E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHKQ123283.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1414 fue creado. 189.186.91.88 f38c4fcf-0657-4daf-b4b3-0bdf6a0c1984 2020-10-27 21:16:01.465459 43811 1414 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001414'\n 2 \N 189.186.91.88 f38c4fcf-0657-4daf-b4b3-0bdf6a0c1984 2020-10-27 21:16:01.497149 43812 2423 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1414\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 f38c4fcf-0657-4daf-b4b3-0bdf6a0c1984 2020-10-27 21:16:01.523481 43813 1415 Product \N \N 4 User \N create ---\nsku: ACC-1415\nname: ARE-0139\ndescription: ARETE FLOR Y LUNA\nprice_base: !ruby/object:BigDecimal 18:0.52E2\nprice_sale: !ruby/object:BigDecimal 18:0.269E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHKQ123004.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1415 fue creado. 189.186.91.88 a39795b2-dc20-4656-9e13-ca2c5c45e220 2020-10-27 21:17:23.710792 43814 1415 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001415'\n 2 \N 189.186.91.88 a39795b2-dc20-4656-9e13-ca2c5c45e220 2020-10-27 21:17:23.745458 43815 2424 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1415\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 a39795b2-dc20-4656-9e13-ca2c5c45e220 2020-10-27 21:17:23.772508 43816 428 Purchase \N \N 4 User \N create ---\nsupplier_id: 3\npointsale_id: 1\npurchase_code: PV1-C-172\namount: !ruby/object:BigDecimal 18:0.207E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.207E3\nobservations: ''\npurchase_date: 2020-10-27\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-172 por $ 207.0 MXN creada. 189.186.91.88 db29d537-1aba-4523-bd03-1476bf887921 2020-10-27 21:18:46.417268 43817 2421 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 db29d537-1aba-4523-bd03-1476bf887921 2020-10-27 21:18:46.441359 43818 2422 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 db29d537-1aba-4523-bd03-1476bf887921 2020-10-27 21:18:46.465652 43819 2423 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 db29d537-1aba-4523-bd03-1476bf887921 2020-10-27 21:18:46.490721 43820 2424 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 db29d537-1aba-4523-bd03-1476bf887921 2020-10-27 21:18:46.514577 43821 1412 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1412'\n is_parent: false\n sku: ACC-1412\n name: ARE-0138\n description: ARTE PIEDRAS CON HILO ROSA\n price_base: '19.15'\n price_sale: '169.0'\n img_product: SC180504101208.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001412'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-27 21:12:27.95238'\n updated_at: &12 2020-10-27 21:21:06.674621595 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1412'\n sku: ACC-1412\n name: ARE-0138\n description: ARTE PIEDRAS CON HILO ROSA\n price_base: '19.15'\n price_sale: '169.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-27 21:12:27.95238'\n updated_at: '2020-10-27 21:12:27.992544'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001412'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1412'\n type: *3\n value: 1412\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1412\n type: *7\n value: ACC-1412\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ARE-0138\n type: *8\n value: ARE-0138\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: ARTE PIEDRAS CON HILO ROSA\n type: *6\n value: ARTE PIEDRAS CON HILO ROSA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '19.15'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1915E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '169.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.169E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: SC180504101208.jpg\n type: *2\n value: SC180504101208.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001412'\n type: *2\n value: '0001412'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-27 21:12:27.95238'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- SC180504101208.jpg\n 3 El producto ACC-1412 fue modificado. 189.186.91.88 8916f76b-6d2e-455e-90af-d2534dd89fca 2020-10-27 21:21:06.721037 43822 1416 Product \N \N 4 User \N create ---\nsku: ACC-1416\nname: ARE-0142\ndescription: ARETE CIRCULO CON ESTRELLA\nprice_base: !ruby/object:BigDecimal 18:0.64E2\nprice_sale: !ruby/object:BigDecimal 18:0.179E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1416 fue creado. 189.186.91.88 a475ecb5-5a1d-429f-bd73-ab0d01c731e1 2020-10-27 21:30:23.456915 43823 1416 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001416'\n 2 \N 189.186.91.88 a475ecb5-5a1d-429f-bd73-ab0d01c731e1 2020-10-27 21:30:23.483789 43824 2425 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1416\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 a475ecb5-5a1d-429f-bd73-ab0d01c731e1 2020-10-27 21:30:23.508351 43825 1417 Product \N \N 4 User \N create ---\nsku: ACC-1417\nname: ARE-0147\ndescription: ARETE CORAZÓN CON PIEDRAS COLORES\nprice_base: !ruby/object:BigDecimal 18:0.68E2\nprice_sale: !ruby/object:BigDecimal 18:0.299E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHJE698853-Gold-color.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1417 fue creado. 189.186.91.88 19c6a9a1-5702-4634-8ffe-263ba4a829ac 2020-10-27 21:32:30.555263 43826 1417 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001417'\n 2 \N 189.186.91.88 19c6a9a1-5702-4634-8ffe-263ba4a829ac 2020-10-27 21:32:30.582255 43827 2426 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1417\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 19c6a9a1-5702-4634-8ffe-263ba4a829ac 2020-10-27 21:32:30.608744 43872 1428 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001428'\n 2 \N 189.186.91.88 bb7936aa-6466-4bc6-bfad-cca68bdace24 2020-10-27 22:17:40.995972 43915 1 User \N \N 1 User \N update ---\nunique_session_id:\n- bJ7iuScohxB7wmd9grQB\n- Y5Ui9rfxUqK7TJUtkTC-\n 647 \N 187.149.142.78 0f9e2b6a-c23b-4614-95ba-1c221795e52a 2020-10-27 22:55:26.04595 43828 1418 Product \N \N 4 User \N create ---\nsku: ACC-1418\nname: ARE-0150\ndescription: ARETE CORAZÓN PIDRAS PLATA Y DORADO\nprice_base: !ruby/object:BigDecimal 18:0.34E2\nprice_sale: !ruby/object:BigDecimal 18:0.289E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1418 fue creado. 189.186.91.88 599ca426-bfb0-479d-b41a-8a07fa5b4844 2020-10-27 21:34:27.050689 43829 1418 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001418'\n 2 \N 189.186.91.88 599ca426-bfb0-479d-b41a-8a07fa5b4844 2020-10-27 21:34:27.07983 43830 2427 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1418\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 599ca426-bfb0-479d-b41a-8a07fa5b4844 2020-10-27 21:34:27.106917 43831 1419 Product \N \N 4 User \N create ---\nsku: ACC-1419\nname: ARE-0141\ndescription: KISS Y BESO\nprice_base: !ruby/object:BigDecimal 18:0.51E2\nprice_sale: !ruby/object:BigDecimal 18:0.169E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHSC182639.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1419 fue creado. 189.186.91.88 7bc10244-cd72-4975-af22-1c96d7f9c783 2020-10-27 21:36:42.412461 43832 1419 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001419'\n 2 \N 189.186.91.88 7bc10244-cd72-4975-af22-1c96d7f9c783 2020-10-27 21:36:42.440018 43833 2428 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1419\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 7bc10244-cd72-4975-af22-1c96d7f9c783 2020-10-27 21:36:42.464616 43834 1420 Product \N \N 4 User \N create ---\nsku: ACC-1420\nname: ARE-0146\ndescription: ARETE ESTRELLA Y PIEDRAS\nprice_base: !ruby/object:BigDecimal 18:0.85E2\nprice_sale: !ruby/object:BigDecimal 18:0.299E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHMS205761.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1420 fue creado. 189.186.91.88 e69404a9-e495-4402-9f28-bf58e2bf378f 2020-10-27 21:39:15.072418 43835 1420 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001420'\n 2 \N 189.186.91.88 e69404a9-e495-4402-9f28-bf58e2bf378f 2020-10-27 21:39:15.108651 43836 2429 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1420\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 e69404a9-e495-4402-9f28-bf58e2bf378f 2020-10-27 21:39:15.146938 43837 1421 Product \N \N 4 User \N create ---\nsku: ACC-1421\nname: ARE-0144\ndescription: ARETE PALETA CON PIEDRAS\nprice_base: !ruby/object:BigDecimal 18:0.3E2\nprice_sale: !ruby/object:BigDecimal 18:0.199E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHJJ520852-color.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1421 fue creado. 189.186.91.88 fa162ef1-bdfc-4cc7-9026-1293a7805158 2020-10-27 21:40:35.935406 43838 1421 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001421'\n 2 \N 189.186.91.88 fa162ef1-bdfc-4cc7-9026-1293a7805158 2020-10-27 21:40:35.965061 43839 2430 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1421\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 fa162ef1-bdfc-4cc7-9026-1293a7805158 2020-10-27 21:40:35.990521 43840 429 Purchase \N \N 4 User \N create ---\nsupplier_id: 3\npointsale_id: 3\npurchase_code: PV3-C-118\namount: !ruby/object:BigDecimal 18:0.366E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.366E3\nobservations: ''\npurchase_date: 2020-10-27\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-118 por $ 366.0 MXN creada. 189.186.91.88 822bda0a-d011-444b-a644-534a62e68073 2020-10-27 21:42:41.905481 43841 2425 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 822bda0a-d011-444b-a644-534a62e68073 2020-10-27 21:42:41.929527 43842 2426 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 822bda0a-d011-444b-a644-534a62e68073 2020-10-27 21:42:41.950878 43843 2427 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.91.88 822bda0a-d011-444b-a644-534a62e68073 2020-10-27 21:42:41.972257 43844 2428 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 822bda0a-d011-444b-a644-534a62e68073 2020-10-27 21:42:41.993467 43845 2429 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 822bda0a-d011-444b-a644-534a62e68073 2020-10-27 21:42:42.014014 43846 2430 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 822bda0a-d011-444b-a644-534a62e68073 2020-10-27 21:42:42.034884 43847 1416 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1416'\n is_parent: false\n sku: ACC-1416\n name: ARE-0142\n description: ARETE CIRCULO CON ESTRELLA\n price_base: '64.0'\n price_sale: '179.0'\n img_product: NHSC187686.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001416'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-27 21:30:23.444655'\n updated_at: &12 2020-10-27 21:48:25.735089625 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1416'\n sku: ACC-1416\n name: ARE-0142\n description: ARETE CIRCULO CON ESTRELLA\n price_base: '64.00'\n price_sale: '179.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-27 21:30:23.444655'\n updated_at: '2020-10-27 21:30:23.481328'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001416'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1416'\n type: *3\n value: 1416\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1416\n type: *7\n value: ACC-1416\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ARE-0142\n type: *8\n value: ARE-0142\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: ARETE CIRCULO CON ESTRELLA\n type: *6\n value: ARETE CIRCULO CON ESTRELLA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '64.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.64E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '179.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.179E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: NHSC187686.jpg\n type: *2\n value: NHSC187686.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001416'\n type: *2\n value: '0001416'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-27 21:30:23.444655'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- NHSC187686.jpg\n 3 El producto ACC-1416 fue modificado. 189.186.91.88 a33d2053-c2b3-496f-94d0-631537f30016 2020-10-27 21:48:25.775177 43848 1418 Product \N \N 4 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1418'\n is_parent: false\n sku: ACC-1418\n name: ARE-0150\n description: ARETE CORAZÓN PIDRAS PLATA Y DORADO\n price_base: '34.0'\n price_sale: '289.0'\n img_product: NHDP237070.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '17'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001418'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-27 21:34:27.03872'\n updated_at: &12 2020-10-27 21:50:29.971213205 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1418'\n sku: ACC-1418\n name: ARE-0150\n description: ARETE CORAZÓN PIDRAS PLATA Y DORADO\n price_base: '34.00'\n price_sale: '289.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-27 21:34:27.03872'\n updated_at: '2020-10-27 21:34:27.07717'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001418'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '17'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1418'\n type: *3\n value: 1418\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: ACC-1418\n type: *7\n value: ACC-1418\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: ARE-0150\n type: *8\n value: ARE-0150\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: ARETE CORAZÓN PIDRAS PLATA Y DORADO\n type: *6\n value: ARETE CORAZÓN PIDRAS PLATA Y DORADO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '34.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.34E2\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '289.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.289E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: NHDP237070.jpg\n type: *2\n value: NHDP237070.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '17'\n type: *3\n value: 17\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001418'\n type: *2\n value: '0001418'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-27 21:34:27.03872'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- NHDP237070.jpg\n 3 El producto ACC-1418 fue modificado. 189.186.91.88 3f1f917f-5183-448c-a202-7c1c6b674f2f 2020-10-27 21:50:30.031857 43849 1422 Product \N \N 4 User \N create ---\nsku: ACC-1422\nname: ARE-0149\ndescription: ARETE CORAZÓN CON PERLA Y FLORES\nprice_base: !ruby/object:BigDecimal 18:0.52E2\nprice_sale: !ruby/object:BigDecimal 18:0.199E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1422 fue creado. 189.186.91.88 c93a8d0c-bb8f-49e4-a0d2-b91f9927b6c9 2020-10-27 21:53:44.810875 43850 1422 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001422'\n 2 \N 189.186.91.88 c93a8d0c-bb8f-49e4-a0d2-b91f9927b6c9 2020-10-27 21:53:44.838775 43852 1423 Product \N \N 4 User \N create ---\nsku: ACC-1423\nname: ARE-0143\ndescription: 'ARETE ESTRELLA '\nprice_base: !ruby/object:BigDecimal 18:0.49E2\nprice_sale: !ruby/object:BigDecimal 18:0.179E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHSC187675.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1423 fue creado. 189.186.91.88 0e31df56-a9f7-4ac2-9ba7-f8e584e6a7bd 2020-10-27 21:55:25.9136 43853 1423 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001423'\n 2 \N 189.186.91.88 0e31df56-a9f7-4ac2-9ba7-f8e584e6a7bd 2020-10-27 21:55:25.942174 43854 2432 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1423\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 0e31df56-a9f7-4ac2-9ba7-f8e584e6a7bd 2020-10-27 21:55:25.967227 43855 1424 Product \N \N 4 User \N create ---\nsku: ACC-1424\nname: ARE-0145\ndescription: ARETE ESTRELLA NEGRO\nprice_base: !ruby/object:BigDecimal 18:0.27E2\nprice_sale: !ruby/object:BigDecimal 18:0.129E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1424 fue creado. 189.186.91.88 4ea0e922-89ff-4829-af7d-6adc23b4d77d 2020-10-27 21:56:51.259774 43856 1424 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001424'\n 2 \N 189.186.91.88 4ea0e922-89ff-4829-af7d-6adc23b4d77d 2020-10-27 21:56:51.286649 43857 2433 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1424\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 4ea0e922-89ff-4829-af7d-6adc23b4d77d 2020-10-27 21:56:51.312522 43858 430 Purchase \N \N 4 User \N create ---\nsupplier_id: 3\npointsale_id: 1\npurchase_code: PV1-C-173\namount: !ruby/object:BigDecimal 18:0.128E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.128E3\nobservations: ''\npurchase_date: 2020-10-27\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-173 por $ 128.0 MXN creada. 189.186.91.88 765d58ca-3326-415d-b383-9f1efd6750e3 2020-10-27 21:57:02.17194 43859 2431 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 765d58ca-3326-415d-b383-9f1efd6750e3 2020-10-27 21:57:02.197254 43860 2432 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 765d58ca-3326-415d-b383-9f1efd6750e3 2020-10-27 21:57:02.223756 43861 2433 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 765d58ca-3326-415d-b383-9f1efd6750e3 2020-10-27 21:57:02.248284 43862 1425 Product \N \N 4 User \N create ---\nsku: ACC-1425\nname: ARE-0178\ndescription: ARETE MOÑO PIEDRAS\nprice_base: !ruby/object:BigDecimal 18:0.52E2\nprice_sale: !ruby/object:BigDecimal 18:0.169E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 21436771617_1401670587.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1425 fue creado. 189.186.91.88 44023704-f579-4818-9381-ca9143f8b604 2020-10-27 22:12:47.381716 43863 1425 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001425'\n 2 \N 189.186.91.88 44023704-f579-4818-9381-ca9143f8b604 2020-10-27 22:12:47.420159 43864 2434 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1425\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 44023704-f579-4818-9381-ca9143f8b604 2020-10-27 22:12:47.457177 43865 1426 Product \N \N 4 User \N create ---\nsku: ACC-1426\nname: ARE-0176\ndescription: ARETE LUNA COLGANTE\nprice_base: !ruby/object:BigDecimal 18:0.5E2\nprice_sale: !ruby/object:BigDecimal 18:0.289E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1426 fue creado. 189.186.91.88 2b2b51ab-b066-4e87-8555-69e9979cad53 2020-10-27 22:14:04.819012 43866 1426 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001426'\n 2 \N 189.186.91.88 2b2b51ab-b066-4e87-8555-69e9979cad53 2020-10-27 22:14:04.847042 43867 2435 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1426\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 2b2b51ab-b066-4e87-8555-69e9979cad53 2020-10-27 22:14:04.904656 43868 1427 Product \N \N 4 User \N create ---\nsku: ACC-1427\nname: ARE-0182\ndescription: 'ARETE MARIPOSA '\nprice_base: !ruby/object:BigDecimal 18:0.29E2\nprice_sale: !ruby/object:BigDecimal 18:0.12E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHMS265822.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1427 fue creado. 189.186.91.88 6318e9ff-d99d-4248-b665-b8d4bb35c245 2020-10-27 22:16:03.56205 43869 1427 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001427'\n 2 \N 189.186.91.88 6318e9ff-d99d-4248-b665-b8d4bb35c245 2020-10-27 22:16:03.590012 43870 2436 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1427\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 6318e9ff-d99d-4248-b665-b8d4bb35c245 2020-10-27 22:16:03.621473 43871 1428 Product \N \N 4 User \N create ---\nsku: ACC-1428\nname: ARE-0172\ndescription: ARETE CALAVERA REYNA\nprice_base: !ruby/object:BigDecimal 18:0.55E2\nprice_sale: !ruby/object:BigDecimal 18:0.249E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHJQ263586.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1428 fue creado. 189.186.91.88 bb7936aa-6466-4bc6-bfad-cca68bdace24 2020-10-27 22:17:40.963752 43873 2437 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1428\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 bb7936aa-6466-4bc6-bfad-cca68bdace24 2020-10-27 22:17:41.027433 43874 1429 Product \N \N 4 User \N create ---\nsku: ACC-1429\nname: ARE-0175\ndescription: ARETE LOVE LARGO\nprice_base: !ruby/object:BigDecimal 18:0.45E2\nprice_sale: !ruby/object:BigDecimal 18:0.199E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHKQ265105.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1429 fue creado. 189.186.91.88 bf6d3e91-53db-42d9-95f0-9e09e92056ba 2020-10-27 22:19:10.870063 43875 1429 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001429'\n 2 \N 189.186.91.88 bf6d3e91-53db-42d9-95f0-9e09e92056ba 2020-10-27 22:19:10.900746 43876 2438 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1429\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 bf6d3e91-53db-42d9-95f0-9e09e92056ba 2020-10-27 22:19:10.929722 43877 1430 Product \N \N 4 User \N create ---\nsku: ACC-1430\nname: ARE-0180\ndescription: ARETE CORAZÓN CON PERLAS COLGANDO\nprice_base: !ruby/object:BigDecimal 18:0.31E2\nprice_sale: !ruby/object:BigDecimal 18:0.159E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1430 fue creado. 189.186.91.88 fc0c1420-6757-47bd-8f76-65de1299bc30 2020-10-27 22:20:18.439726 43878 1430 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001430'\n 2 \N 189.186.91.88 fc0c1420-6757-47bd-8f76-65de1299bc30 2020-10-27 22:20:18.469951 43879 2439 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1430\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 fc0c1420-6757-47bd-8f76-65de1299bc30 2020-10-27 22:20:18.496098 43880 431 Purchase \N \N 4 User \N create ---\nsupplier_id: 3\npointsale_id: 3\npurchase_code: PV3-C-119\namount: !ruby/object:BigDecimal 18:0.262E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.262E3\nobservations: ''\npurchase_date: 2020-10-27\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-119 por $ 262.0 MXN creada. 189.186.91.88 06de944b-ff9b-4054-a08f-9e3e56a45f6d 2020-10-27 22:21:11.245887 43881 2434 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 06de944b-ff9b-4054-a08f-9e3e56a45f6d 2020-10-27 22:21:11.273367 43882 2435 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 06de944b-ff9b-4054-a08f-9e3e56a45f6d 2020-10-27 22:21:11.310742 43883 2436 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 06de944b-ff9b-4054-a08f-9e3e56a45f6d 2020-10-27 22:21:11.335667 43884 2437 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 06de944b-ff9b-4054-a08f-9e3e56a45f6d 2020-10-27 22:21:11.36376 43885 2438 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 06de944b-ff9b-4054-a08f-9e3e56a45f6d 2020-10-27 22:21:11.393077 43886 2439 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 06de944b-ff9b-4054-a08f-9e3e56a45f6d 2020-10-27 22:21:11.425708 43887 422 Customer \N \N 2 User \N create ---\nnick_name: OLGA SOTELO\nphone: ''\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.1E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente OLGA SOTELO fue registrado. 187.149.142.78 890c06e5-e371-4cd3-a4a6-05f2c8bdef23 2020-10-27 22:38:41.984878 43888 1431 Product \N \N 4 User \N create ---\nsku: ACC-1431\nname: ARE-0160\ndescription: FLORES DE COLORES\nprice_base: !ruby/object:BigDecimal 18:0.4E2\nprice_sale: !ruby/object:BigDecimal 18:0.269E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 10327766497_786828687.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1431 fue creado. 189.186.91.88 1f517617-5d7c-4751-bd5c-981f875c0870 2020-10-27 22:40:10.967588 43889 1431 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001431'\n 2 \N 189.186.91.88 1f517617-5d7c-4751-bd5c-981f875c0870 2020-10-27 22:40:10.997713 43890 2440 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1431\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 1f517617-5d7c-4751-bd5c-981f875c0870 2020-10-27 22:40:11.033446 43891 1432 Product \N \N 4 User \N create ---\nsku: ACC-1432\nname: ARE-0162\ndescription: ARETE CUADRO COLORES\nprice_base: !ruby/object:BigDecimal 18:0.37E2\nprice_sale: !ruby/object:BigDecimal 18:0.129E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 9375902800_786828687.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1432 fue creado. 189.186.91.88 d6adba2e-09f9-45e7-a6b5-9ff54a4bead0 2020-10-27 22:41:40.502897 43892 1432 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001432'\n 2 \N 189.186.91.88 d6adba2e-09f9-45e7-a6b5-9ff54a4bead0 2020-10-27 22:41:40.535651 43893 2441 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1432\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 d6adba2e-09f9-45e7-a6b5-9ff54a4bead0 2020-10-27 22:41:40.560018 43914 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-27 01:11:14.440642000 Z\n- &1 2020-10-27 04:01:44.075830000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-27 22:55:26.018469171 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938321\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938321\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140686\n mask_addr: 4294967295\nsign_in_count:\n- 322\n- 323\n 646 \N 187.149.142.78 0f9e2b6a-c23b-4614-95ba-1c221795e52a 2020-10-27 22:55:26.027654 43894 1433 Product \N \N 4 User \N create ---\nsku: ACC-1433\nname: ARE-0159\ndescription: ARETE CRUZ\nprice_base: !ruby/object:BigDecimal 18:0.34E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: XS19012117819.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1433 fue creado. 189.186.91.88 6ea37b1b-37fb-4ce9-bbd5-9cb98c8dc445 2020-10-27 22:43:02.350772 43895 1433 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001433'\n 2 \N 189.186.91.88 6ea37b1b-37fb-4ce9-bbd5-9cb98c8dc445 2020-10-27 22:43:02.380905 43896 2442 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1433\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 6ea37b1b-37fb-4ce9-bbd5-9cb98c8dc445 2020-10-27 22:43:02.40689 43897 1434 Product \N \N 4 User \N create ---\nsku: ACC-1434\nname: ARE-0158\ndescription: ARETE NEGRO ESTRELLA\nprice_base: !ruby/object:BigDecimal 18:0.32E2\nprice_sale: !ruby/object:BigDecimal 18:0.129E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: XS19012119132.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1434 fue creado. 189.186.91.88 a7a04be4-f26f-4d7d-ab0c-80f6be5d1e7e 2020-10-27 22:44:29.299554 43898 1434 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001434'\n 2 \N 189.186.91.88 a7a04be4-f26f-4d7d-ab0c-80f6be5d1e7e 2020-10-27 22:44:29.326167 43899 2443 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1434\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 a7a04be4-f26f-4d7d-ab0c-80f6be5d1e7e 2020-10-27 22:44:29.350325 43900 1435 Product \N \N 4 User \N create ---\nsku: ACC-1435\nname: ARE-0161\ndescription: ARETE LUNAS Y ESTRELLAS\nprice_base: !ruby/object:BigDecimal 18:0.122E3\nprice_sale: !ruby/object:BigDecimal 18:0.299E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: TM18120463096.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1435 fue creado. 189.186.91.88 55557fa4-be68-4475-931b-efd4b4b025a5 2020-10-27 22:47:54.300772 43901 1435 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001435'\n 2 \N 189.186.91.88 55557fa4-be68-4475-931b-efd4b4b025a5 2020-10-27 22:47:54.328185 43902 2444 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1435\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 55557fa4-be68-4475-931b-efd4b4b025a5 2020-10-27 22:47:54.352876 43903 3274 Sale \N \N 2 User \N create ---\ncustomer_id: 422\nuser_id: 2\nopen_cash_register_id: 1137\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2020-10-27\nsaletype: 0\nseller_id: 30\nsale_code: PV1-V-1560\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.142.78 68f588fb-4ef7-4f88-9ea2-09738dd0bb5a 2020-10-27 22:48:26.113317 43904 2254 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.142.78 68f588fb-4ef7-4f88-9ea2-09738dd0bb5a 2020-10-27 22:48:26.139894 43905 1436 Product \N \N 4 User \N create ---\nsku: ACC-1436\nname: ARE-0163\ndescription: ARETE DE CORAZÓN NEGRO\nprice_base: !ruby/object:BigDecimal 18:0.4E2\nprice_sale: !ruby/object:BigDecimal 18:0.169E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHLN251079.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1436 fue creado. 189.186.91.88 12d42dcf-a846-4938-a221-5e49d69309f8 2020-10-27 22:50:34.818831 43906 1436 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001436'\n 2 \N 189.186.91.88 12d42dcf-a846-4938-a221-5e49d69309f8 2020-10-27 22:50:34.845314 43907 2445 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1436\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 12d42dcf-a846-4938-a221-5e49d69309f8 2020-10-27 22:50:34.869461 43908 1437 Product \N \N 4 User \N create ---\nsku: ACC-1437\nname: ARE-0165\ndescription: ARETE PALETA LILA\nprice_base: !ruby/object:BigDecimal 18:0.19E2\nprice_sale: !ruby/object:BigDecimal 18:0.119E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHKQ260756.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1437 fue creado. 189.186.91.88 dabb8b36-94e1-44e4-abe4-a320ac2f8a06 2020-10-27 22:52:50.10911 43909 1437 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001437'\n 2 \N 189.186.91.88 dabb8b36-94e1-44e4-abe4-a320ac2f8a06 2020-10-27 22:52:50.135733 43910 2446 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1437\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 dabb8b36-94e1-44e4-abe4-a320ac2f8a06 2020-10-27 22:52:50.159937 43911 1438 Product \N \N 4 User \N create ---\nsku: ACC-1438\nname: ARE-0164\ndescription: ARETE ESTRELLA COLORES\nprice_base: !ruby/object:BigDecimal 18:0.32E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1438 fue creado. 189.186.91.88 25519501-f70f-44c3-8615-fe7a1ef62b96 2020-10-27 22:54:26.888105 43912 1438 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001438'\n 2 \N 189.186.91.88 25519501-f70f-44c3-8615-fe7a1ef62b96 2020-10-27 22:54:26.917237 43913 2447 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1438\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 25519501-f70f-44c3-8615-fe7a1ef62b96 2020-10-27 22:54:26.943043 43916 432 Purchase \N \N 4 User \N create ---\nsupplier_id: 3\npointsale_id: 3\npurchase_code: PV3-C-120\namount: !ruby/object:BigDecimal 18:0.356E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.356E3\nobservations: ''\npurchase_date: 2020-10-27\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-120 por $ 356.0 MXN creada. 189.186.91.88 1e6a6aed-22be-4d16-8d6d-bc653722fc47 2020-10-27 22:56:27.817656 43917 2440 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 1e6a6aed-22be-4d16-8d6d-bc653722fc47 2020-10-27 22:56:27.838696 43918 2441 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 1e6a6aed-22be-4d16-8d6d-bc653722fc47 2020-10-27 22:56:27.86054 43919 2442 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 1e6a6aed-22be-4d16-8d6d-bc653722fc47 2020-10-27 22:56:27.8807 43920 2443 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 1e6a6aed-22be-4d16-8d6d-bc653722fc47 2020-10-27 22:56:27.900667 43921 2444 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 1e6a6aed-22be-4d16-8d6d-bc653722fc47 2020-10-27 22:56:27.92842 43922 2445 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 1e6a6aed-22be-4d16-8d6d-bc653722fc47 2020-10-27 22:56:27.951619 43923 2446 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 1e6a6aed-22be-4d16-8d6d-bc653722fc47 2020-10-27 22:56:27.973005 43924 2447 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 1e6a6aed-22be-4d16-8d6d-bc653722fc47 2020-10-27 22:56:27.994723 43925 1374 Product \N \N 4 User \N update ---\nname:\n- AHYAM\n- AYHAM\n 3 El producto ZAP-1374 fue modificado. 189.186.91.88 1d7fd1bc-cb96-43a7-958a-a4d41d6a6289 2020-10-27 22:59:14.431387 43926 433 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-174\namount: !ruby/object:BigDecimal 18:0.6396E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6396E4\nobservations: ''\npurchase_date: 2020-10-27\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-174 por $ 6396.0 MXN creada. 189.186.91.88 2394615f-59bf-4ec4-9fd6-8f61779c6d75 2020-10-27 23:00:02.539764 43927 2448 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1374\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.8E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 2394615f-59bf-4ec4-9fd6-8f61779c6d75 2020-10-27 23:00:02.568533 43928 3275 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1137\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-10-27\nsaletype: 1\nseller_id: 28\nsale_code: PV1-V-1561\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.142.78 1e8e86e7-8f40-4eb6-808d-045c56bcf7a7 2020-10-27 23:00:45.048184 43929 2448 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 2 \N 187.149.142.78 1e8e86e7-8f40-4eb6-808d-045c56bcf7a7 2020-10-27 23:00:45.077823 43930 3275 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.142.78 2960b339-895d-4e16-8c15-f20e8c43495c 2020-10-27 23:00:55.937721 43931 4340 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1137\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 3275\ncardnumber: 141\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1561\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1561 187.149.142.78 2960b339-895d-4e16-8c15-f20e8c43495c 2020-10-27 23:00:55.963708 43932 1439 Product \N \N 4 User \N create ---\nsku: ACC-1439\nname: ARE-0155\ndescription: ARETE MARIPOSA PLATA\nprice_base: !ruby/object:BigDecimal 18:0.24E2\nprice_sale: !ruby/object:BigDecimal 18:0.189E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHHF246112.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1439 fue creado. 189.186.91.88 a2602005-3e26-4fc9-87f1-020d2e957ee5 2020-10-27 23:17:45.878761 43933 1439 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001439'\n 2 \N 189.186.91.88 a2602005-3e26-4fc9-87f1-020d2e957ee5 2020-10-27 23:17:45.907008 43934 2449 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1439\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 a2602005-3e26-4fc9-87f1-020d2e957ee5 2020-10-27 23:17:45.932132 43935 1440 Product \N \N 4 User \N create ---\nsku: ACC-1440\nname: ARE-0166\ndescription: ARETE DONAS\nprice_base: !ruby/object:BigDecimal 18:0.25E2\nprice_sale: !ruby/object:BigDecimal 18:0.199E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHPS261170.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1440 fue creado. 189.186.91.88 6279ba0b-c4bd-4287-a61b-e8a57d41a0d3 2020-10-27 23:19:12.455579 43936 1440 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001440'\n 2 \N 189.186.91.88 6279ba0b-c4bd-4287-a61b-e8a57d41a0d3 2020-10-27 23:19:12.484815 43937 2450 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1440\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 6279ba0b-c4bd-4287-a61b-e8a57d41a0d3 2020-10-27 23:19:12.5087 43938 1441 Product \N \N 4 User \N create ---\nsku: ACC-1441\nname: ARE-0167\ndescription: ARETE ESTRELLITAS\nprice_base: !ruby/object:BigDecimal 18:0.4E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHRN1141232-Golden.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1441 fue creado. 189.186.91.88 d9c6c3d0-b975-4c07-a8d2-58f7d4052718 2020-10-27 23:20:15.838928 43939 1441 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001441'\n 2 \N 189.186.91.88 d9c6c3d0-b975-4c07-a8d2-58f7d4052718 2020-10-27 23:20:15.868733 43940 2451 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1441\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 d9c6c3d0-b975-4c07-a8d2-58f7d4052718 2020-10-27 23:20:15.895711 43941 1442 Product \N \N 4 User \N create ---\nsku: ACC-1442\nname: ARE-0151\ndescription: ARETE GATITA\nprice_base: !ruby/object:BigDecimal 18:0.55E2\nprice_sale: !ruby/object:BigDecimal 18:0.189E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHFT238589.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1442 fue creado. 189.186.91.88 848c3fb8-abf9-4417-9f57-d7e8b3dea764 2020-10-27 23:21:37.245842 43942 1442 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001442'\n 2 \N 189.186.91.88 848c3fb8-abf9-4417-9f57-d7e8b3dea764 2020-10-27 23:21:37.295956 43943 2452 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1442\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 848c3fb8-abf9-4417-9f57-d7e8b3dea764 2020-10-27 23:21:37.323683 43944 3276 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1137\namount: !ruby/object:BigDecimal 18:0.669E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2020-10-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1562\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.142.78 5ed0f6f7-27a9-46c0-944f-46181861e372 2020-10-27 23:23:13.667117 43945 2233 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.142.78 5ed0f6f7-27a9-46c0-944f-46181861e372 2020-10-27 23:23:13.705708 43946 3276 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.142.78 4edab26b-1722-489b-9aae-e773f88dd328 2020-10-27 23:23:19.509125 43947 4341 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1137\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.669E3\nmove_type: '1'\nsale_id: 3276\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1562\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.669E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1562 187.149.142.78 4edab26b-1722-489b-9aae-e773f88dd328 2020-10-27 23:23:19.533148 43948 1443 Product \N \N 4 User \N create ---\nsku: ACC-1443\nname: ARE-0169\ndescription: ARETE CALAVERA\nprice_base: !ruby/object:BigDecimal 18:0.52E2\nprice_sale: !ruby/object:BigDecimal 18:0.249E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHJQ261710.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1443 fue creado. 189.186.91.88 4a8a0ebc-0f44-417f-901a-96b54a515f75 2020-10-27 23:24:40.931995 43949 1443 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001443'\n 2 \N 189.186.91.88 4a8a0ebc-0f44-417f-901a-96b54a515f75 2020-10-27 23:24:40.967865 43950 2453 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1443\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 4a8a0ebc-0f44-417f-901a-96b54a515f75 2020-10-27 23:24:40.999026 43951 1444 Product \N \N 4 User \N create ---\nsku: ACC-1444\nname: ARE-0171\ndescription: ARETE CUADRO DORADO\nprice_base: !ruby/object:BigDecimal 18:0.28E2\nprice_sale: !ruby/object:BigDecimal 18:0.109E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHXI261995.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1444 fue creado. 189.186.91.88 8b127c90-fd69-4578-975b-7adf3af97de0 2020-10-27 23:26:18.365991 43952 1444 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001444'\n 2 \N 189.186.91.88 8b127c90-fd69-4578-975b-7adf3af97de0 2020-10-27 23:26:18.403437 43953 2454 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1444\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 8b127c90-fd69-4578-975b-7adf3af97de0 2020-10-27 23:26:18.431856 43954 1445 Product \N \N 4 User \N create ---\nsku: ACC-1445\nname: ARE-0186\ndescription: ARETE TRABA Y ESTRELLA\nprice_base: !ruby/object:BigDecimal 18:0.35E2\nprice_sale: !ruby/object:BigDecimal 18:0.169E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHOA266597.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1445 fue creado. 189.186.91.88 72df8889-a430-41e4-bdb0-9edd08bf9df0 2020-10-27 23:28:01.527535 43955 1445 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001445'\n 2 \N 189.186.91.88 72df8889-a430-41e4-bdb0-9edd08bf9df0 2020-10-27 23:28:01.563051 43956 2455 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1445\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 72df8889-a430-41e4-bdb0-9edd08bf9df0 2020-10-27 23:28:01.587329 43957 1446 Product \N \N 4 User \N create ---\nsku: ACC-1446\nname: ARE-0136\ndescription: ARETE CHAMPANE\nprice_base: !ruby/object:BigDecimal 18:0.92E2\nprice_sale: !ruby/object:BigDecimal 18:0.249E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHPP266663.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1446 fue creado. 189.186.91.88 ae0af3bc-a7d1-4917-a2a8-22c94dbdb6e4 2020-10-27 23:30:00.775453 43958 1446 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001446'\n 2 \N 189.186.91.88 ae0af3bc-a7d1-4917-a2a8-22c94dbdb6e4 2020-10-27 23:30:00.813485 43959 2456 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1446\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 ae0af3bc-a7d1-4917-a2a8-22c94dbdb6e4 2020-10-27 23:30:00.842564 44025 1456 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001456'\n 2 \N 189.186.91.88 1ce60728-b0ee-4810-8fe4-40eb831855e9 2020-10-28 19:59:04.78607 43960 1447 Product \N \N 4 User \N create ---\nsku: ACC-1447\nname: ARE-0137\ndescription: ARETE MARIPOSA\nprice_base: !ruby/object:BigDecimal 18:0.17E2\nprice_sale: !ruby/object:BigDecimal 18:0.89E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHOT266470.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1447 fue creado. 189.186.91.88 4c078011-0dfa-4152-9c72-79f0e676d679 2020-10-27 23:31:47.367424 43961 1447 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001447'\n 2 \N 189.186.91.88 4c078011-0dfa-4152-9c72-79f0e676d679 2020-10-27 23:31:47.40724 43962 2457 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1447\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 4c078011-0dfa-4152-9c72-79f0e676d679 2020-10-27 23:31:47.446048 43963 434 Purchase \N \N 4 User \N create ---\nsupplier_id: 3\npointsale_id: 3\npurchase_code: PV3-C-121\namount: !ruby/object:BigDecimal 18:0.368E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.368E3\nobservations: ''\npurchase_date: 2020-10-27\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-121 por $ 368.0 MXN creada. 189.186.91.88 0bdf10b7-371e-416d-8c01-26808410d5d0 2020-10-27 23:53:06.234761 43964 2449 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 0bdf10b7-371e-416d-8c01-26808410d5d0 2020-10-27 23:53:06.257075 43965 2450 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 0bdf10b7-371e-416d-8c01-26808410d5d0 2020-10-27 23:53:06.282134 43966 2451 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 0bdf10b7-371e-416d-8c01-26808410d5d0 2020-10-27 23:53:06.307406 43967 2452 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 0bdf10b7-371e-416d-8c01-26808410d5d0 2020-10-27 23:53:06.332419 43968 2453 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 0bdf10b7-371e-416d-8c01-26808410d5d0 2020-10-27 23:53:06.355223 43969 2454 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 0bdf10b7-371e-416d-8c01-26808410d5d0 2020-10-27 23:53:06.377815 43970 2455 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 0bdf10b7-371e-416d-8c01-26808410d5d0 2020-10-27 23:53:06.402424 43971 2456 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 0bdf10b7-371e-416d-8c01-26808410d5d0 2020-10-27 23:53:06.428149 43972 2457 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 0bdf10b7-371e-416d-8c01-26808410d5d0 2020-10-27 23:53:06.451349 43973 1448 Product \N \N 4 User \N create ---\nsku: ACC-1448\nname: ARE-0154\ndescription: ARETE MARIPOSA\nprice_base: !ruby/object:BigDecimal 18:0.19E2\nprice_sale: !ruby/object:BigDecimal 18:0.139E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHHF246110.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1448 fue creado. 189.186.91.88 3da75a51-766c-469e-93b8-95ea70d64607 2020-10-28 00:14:25.5558 43974 1448 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001448'\n 2 \N 189.186.91.88 3da75a51-766c-469e-93b8-95ea70d64607 2020-10-28 00:14:25.604776 43975 2458 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1448\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 3da75a51-766c-469e-93b8-95ea70d64607 2020-10-28 00:14:25.654382 43976 435 Purchase \N \N 4 User \N create ---\nsupplier_id: 3\npointsale_id: 3\npurchase_code: PV3-C-122\namount: !ruby/object:BigDecimal 18:0.19E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.19E2\nobservations: ''\npurchase_date: 2020-10-27\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-122 por $ 19.0 MXN creada. 189.186.91.88 a020c18a-fa69-41e5-ac0a-9a7adad0c7a8 2020-10-28 00:14:28.743376 43977 2458 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 a020c18a-fa69-41e5-ac0a-9a7adad0c7a8 2020-10-28 00:14:28.783997 43978 436 Purchase \N \N 4 User \N create ---\nsupplier_id: 3\npointsale_id: 1\npurchase_code: PV1-C-175\namount: !ruby/object:BigDecimal 18:0.24057E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.24057E3\nobservations: ''\npurchase_date: 2020-10-27\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-175 por $ 240.57 MXN creada. 189.186.91.88 17fc879c-4a96-4f08-8012-30657adc0f1e 2020-10-28 00:24:00.074024 43979 2459 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1433\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 17fc879c-4a96-4f08-8012-30657adc0f1e 2020-10-28 00:24:00.097335 43980 2460 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1445\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 17fc879c-4a96-4f08-8012-30657adc0f1e 2020-10-28 00:24:00.125445 43981 2461 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1448\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 17fc879c-4a96-4f08-8012-30657adc0f1e 2020-10-28 00:24:00.151454 43982 2462 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1438\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 17fc879c-4a96-4f08-8012-30657adc0f1e 2020-10-28 00:24:00.180696 43983 2463 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1430\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 17fc879c-4a96-4f08-8012-30657adc0f1e 2020-10-28 00:24:00.207047 44049 2474 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 85318dc0-8722-4c1e-974e-eca00e9c268e 2020-10-28 20:32:36.845012 43984 2464 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1406\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 17fc879c-4a96-4f08-8012-30657adc0f1e 2020-10-28 00:24:00.235655 43985 2465 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1425\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 17fc879c-4a96-4f08-8012-30657adc0f1e 2020-10-28 00:24:00.273013 43986 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-27 04:01:44.075830000 Z\n- &1 2020-10-27 22:55:26.018469000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-28 00:28:23.034666622 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938321\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140686\n mask_addr: 4294967295\nsign_in_count:\n- 323\n- 324\n 648 \N 187.149.142.78 9b763dd2-5b56-4fbc-a929-2698bb338388 2020-10-28 00:28:23.044264 43987 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Y5Ui9rfxUqK7TJUtkTC-\n- SHWxY6VVFK-1_7-f26xS\n 649 \N 187.149.142.78 9b763dd2-5b56-4fbc-a929-2698bb338388 2020-10-28 00:28:23.064992 43988 4342 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1137\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 3257\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAM\n 1 movimiento de efectivo por venta con folio PV1-V-1551 187.149.142.78 4c40203d-5ea4-479b-82e2-a1c28a9f9033 2020-10-28 01:49:15.841484 43989 3257 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.142.78 3bb78d05-1f75-4e02-9237-d61582bd2fcc 2020-10-28 01:49:18.664445 43990 1162 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1137\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3067E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.959E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1459E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.142.78 26e581e1-f692-4303-b857-54cdd1a4f13e 2020-10-28 01:54:31.244833 43991 1137 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.142.78 26e581e1-f692-4303-b857-54cdd1a4f13e 2020-10-28 01:54:31.25854 43992 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 19:30:20.884515000 Z\n- &1 2020-10-27 20:13:55.996439000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-28 02:04:44.919015352 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 314\n- 315\n 631 \N 189.186.91.88 a861c396-72b0-4f27-af76-03ba267635c4 2020-10-28 02:04:44.926005 43993 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 8PwxrT7yUorCkxbiAreN\n- XqArMY3xYz_V8DkyzXH1\n 632 \N 189.186.91.88 a861c396-72b0-4f27-af76-03ba267635c4 2020-10-28 02:04:44.941164 43994 1163 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1138\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.2E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.804E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2804E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 5e4fa0a6-753b-436b-a09b-35bd4f24e689 2020-10-28 02:05:25.118671 43995 1138 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 5e4fa0a6-753b-436b-a09b-35bd4f24e689 2020-10-28 02:05:25.131161 43996 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-27 19:18:54.983875000 Z\n- &1 2020-10-27 20:22:22.932511000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-28 04:51:19.173041402 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535392\n mask_addr: 4294967295\nsign_in_count:\n- 2014\n- 2015\n 4030 \N 177.228.101.96 8af1cf6e-6064-48ea-83f2-b3e949bf7b0d 2020-10-28 04:51:19.200857 43997 4 User \N \N 4 User \N update ---\nunique_session_id:\n- V38U8WyfW5MaskMu1QAP\n- qKgay7NzAcGz4nFxEtLn\n 4031 \N 177.228.101.96 8af1cf6e-6064-48ea-83f2-b3e949bf7b0d 2020-10-28 04:51:19.226263 43998 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-26 20:34:47.903014000 Z\n- &1 2020-10-27 17:15:48.389347000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-28 18:07:21.964869923 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140686\n mask_addr: 4294967295\nsign_in_count:\n- 675\n- 676\n 1355 \N 187.149.142.78 996cdff8-8d26-4995-be01-9385f137388e 2020-10-28 18:07:21.992256 43999 2 User \N \N 2 User \N update ---\nunique_session_id:\n- q3aFQY384x7VPB1SDW3B\n- JkUdxoSsDyGUvbZh-uoJ\n 1356 \N 187.149.142.78 996cdff8-8d26-4995-be01-9385f137388e 2020-10-28 18:07:22.015254 44000 1139 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.959E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 959.0 187.149.142.78 56572a8e-8b72-4df5-bc81-a039c7af027d 2020-10-28 18:34:23.089841 44001 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-27 20:22:22.932511000 Z\n- &1 2020-10-28 04:51:19.173041000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-28 19:17:46.270493236 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535392\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2015\n- 2016\n 4032 \N 189.186.91.88 543dab69-4ab9-49ae-a1a6-49d1061f2256 2020-10-28 19:17:46.277906 44002 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qKgay7NzAcGz4nFxEtLn\n- _zaPwfM_fcxNQnnfLVqv\n 4033 \N 189.186.91.88 543dab69-4ab9-49ae-a1a6-49d1061f2256 2020-10-28 19:17:46.298193 44003 1449 Product \N \N 4 User \N create ---\nsku: ACC-1449\nname: ARE-0153\ndescription: ARETE MARIPOSA PIEDRAS LILAS\nprice_base: !ruby/object:BigDecimal 18:0.4608E2\nprice_sale: !ruby/object:BigDecimal 18:0.269E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1449 fue creado. 189.186.91.88 4557831b-8fd6-4178-85b6-bcd650bf5ce8 2020-10-28 19:39:12.135985 44004 1449 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001449'\n 2 \N 189.186.91.88 4557831b-8fd6-4178-85b6-bcd650bf5ce8 2020-10-28 19:39:12.17363 44005 2466 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1449\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 4557831b-8fd6-4178-85b6-bcd650bf5ce8 2020-10-28 19:39:12.214484 44006 1450 Product \N \N 4 User \N create ---\nsku: ACC-1450\nname: ARE-0152\ndescription: ARETE ESTRELLA PERLA Y LISTON\nprice_base: !ruby/object:BigDecimal 18:0.52E2\nprice_sale: !ruby/object:BigDecimal 18:0.179E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHFT238590.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1450 fue creado. 189.186.91.88 8133f676-9d98-443b-ad0b-c85de032f52e 2020-10-28 19:41:39.476247 44007 1450 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001450'\n 2 \N 189.186.91.88 8133f676-9d98-443b-ad0b-c85de032f52e 2020-10-28 19:41:39.508017 44008 2467 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1450\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 8133f676-9d98-443b-ad0b-c85de032f52e 2020-10-28 19:41:39.535312 44009 1451 Product \N \N 4 User \N create ---\nsku: ACC-1451\nname: ARE-0116\ndescription: ARETE ESTRELLAS Y PERLA\nprice_base: !ruby/object:BigDecimal 18:0.6E2\nprice_sale: !ruby/object:BigDecimal 18:0.269E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: KQ19030569394.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1451 fue creado. 189.186.91.88 08c0a447-0fd0-4dfe-908e-e845a1c692b2 2020-10-28 19:44:25.028965 44010 1451 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001451'\n 2 \N 189.186.91.88 08c0a447-0fd0-4dfe-908e-e845a1c692b2 2020-10-28 19:44:25.061722 44011 2468 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1451\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 08c0a447-0fd0-4dfe-908e-e845a1c692b2 2020-10-28 19:44:25.094846 44012 1452 Product \N \N 4 User \N create ---\nsku: ACC-1452\nname: ARE-0128\ndescription: 'ARETE DE MARIPOSA '\nprice_base: !ruby/object:BigDecimal 18:0.28E2\nprice_sale: !ruby/object:BigDecimal 18:0.149E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHXI251299.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1452 fue creado. 189.186.91.88 fc8cce34-2686-4fc7-909a-4fcbd48d87c1 2020-10-28 19:47:33.55137 44013 1452 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001452'\n 2 \N 189.186.91.88 fc8cce34-2686-4fc7-909a-4fcbd48d87c1 2020-10-28 19:47:33.596993 44014 2469 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1452\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 fc8cce34-2686-4fc7-909a-4fcbd48d87c1 2020-10-28 19:47:33.625379 44015 1453 Product \N \N 4 User \N create ---\nsku: ACC-1453\nname: ARE-0168\ndescription: 'ARETE DE FLOR LILA Y ROSA '\nprice_base: !ruby/object:BigDecimal 18:0.74E2\nprice_sale: !ruby/object:BigDecimal 18:0.199E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1453 fue creado. 189.186.91.88 53a0ed33-e86e-4abd-a81e-a7bef11d200c 2020-10-28 19:53:43.361666 44016 1453 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001453'\n 2 \N 189.186.91.88 53a0ed33-e86e-4abd-a81e-a7bef11d200c 2020-10-28 19:53:43.390489 44017 2470 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1453\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 53a0ed33-e86e-4abd-a81e-a7bef11d200c 2020-10-28 19:53:43.423906 44018 1454 Product \N \N 4 User \N create ---\nsku: ACC-1454\nname: ARE-0118\ndescription: ARETE DE MARIPOSA Y PIEDRAS\nprice_base: !ruby/object:BigDecimal 18:0.43E2\nprice_sale: !ruby/object:BigDecimal 18:0.199E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHRN263827.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1454 fue creado. 189.186.91.88 e1d551bc-9b55-4aa7-bb6e-91793e66090a 2020-10-28 19:55:48.251174 44019 1454 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001454'\n 2 \N 189.186.91.88 e1d551bc-9b55-4aa7-bb6e-91793e66090a 2020-10-28 19:55:48.280876 44020 2471 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1454\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 e1d551bc-9b55-4aa7-bb6e-91793e66090a 2020-10-28 19:55:48.306077 44021 1455 Product \N \N 4 User \N create ---\nsku: ACC-1455\nname: ARE-0173\ndescription: ARETE DE LUNA\nprice_base: !ruby/object:BigDecimal 18:0.25E2\nprice_sale: !ruby/object:BigDecimal 18:0.99E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHDP263835.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1455 fue creado. 189.186.91.88 f6bb1ed5-799c-40ac-88c8-1ff50c9909fc 2020-10-28 19:57:37.996343 44022 1455 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001455'\n 2 \N 189.186.91.88 f6bb1ed5-799c-40ac-88c8-1ff50c9909fc 2020-10-28 19:57:38.026537 44023 2472 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1455\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 f6bb1ed5-799c-40ac-88c8-1ff50c9909fc 2020-10-28 19:57:38.05404 44024 1456 Product \N \N 4 User \N create ---\nsku: ACC-1456\nname: ARE-0179\ndescription: ARETE MOÑO PIEDRA GRANDE\nprice_base: !ruby/object:BigDecimal 18:0.4E2\nprice_sale: !ruby/object:BigDecimal 18:0.289E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1456 fue creado. 189.186.91.88 1ce60728-b0ee-4810-8fe4-40eb831855e9 2020-10-28 19:59:04.760721 44026 2473 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1456\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 1ce60728-b0ee-4810-8fe4-40eb831855e9 2020-10-28 19:59:04.809729 44027 437 Purchase \N \N 4 User \N create ---\nsupplier_id: 3\npointsale_id: 1\npurchase_code: PV1-C-176\namount: !ruby/object:BigDecimal 18:0.36808E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.36808E3\nobservations: ''\npurchase_date: 2020-10-28\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-176 por $ 368.08 MXN creada. 189.186.91.88 9dddf201-78a0-4ca6-aea3-7b2f53330557 2020-10-28 20:01:12.221982 44028 2466 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 9dddf201-78a0-4ca6-aea3-7b2f53330557 2020-10-28 20:01:12.244392 44029 2467 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 9dddf201-78a0-4ca6-aea3-7b2f53330557 2020-10-28 20:01:12.278978 44030 2468 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 9dddf201-78a0-4ca6-aea3-7b2f53330557 2020-10-28 20:01:12.301328 44031 2469 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 9dddf201-78a0-4ca6-aea3-7b2f53330557 2020-10-28 20:01:12.323471 44032 2470 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 9dddf201-78a0-4ca6-aea3-7b2f53330557 2020-10-28 20:01:12.347096 44033 2471 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 9dddf201-78a0-4ca6-aea3-7b2f53330557 2020-10-28 20:01:12.368892 44034 2472 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 9dddf201-78a0-4ca6-aea3-7b2f53330557 2020-10-28 20:01:12.393295 44035 2473 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 9dddf201-78a0-4ca6-aea3-7b2f53330557 2020-10-28 20:01:12.417462 44036 1457 Product \N \N 4 User \N create ---\nsku: ACC-1457\nname: ARE-0140\ndescription: ARETE TORNASOL\nprice_base: !ruby/object:BigDecimal 18:0.65E2\nprice_sale: !ruby/object:BigDecimal 18:0.299E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHVA219349.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1457 fue creado. 189.186.91.88 4b6baa2a-d881-4b03-bd2d-4c89f8d6962b 2020-10-28 20:24:15.730656 44037 1457 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001457'\n 2 \N 189.186.91.88 4b6baa2a-d881-4b03-bd2d-4c89f8d6962b 2020-10-28 20:24:15.759732 44038 2474 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1457\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 4b6baa2a-d881-4b03-bd2d-4c89f8d6962b 2020-10-28 20:24:15.787072 44039 1458 Product \N \N 4 User \N create ---\nsku: ACC-1458\nname: ARE-0156\ndescription: ARETE ESTRELLA ARRIBA ABAJO\nprice_base: !ruby/object:BigDecimal 18:0.65E2\nprice_sale: !ruby/object:BigDecimal 18:0.23E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1458 fue creado. 189.186.91.88 279365fe-0a4f-4141-852e-abe502bd8872 2020-10-28 20:25:49.984284 44040 1458 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001458'\n 2 \N 189.186.91.88 279365fe-0a4f-4141-852e-abe502bd8872 2020-10-28 20:25:50.02599 44041 2475 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1458\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 279365fe-0a4f-4141-852e-abe502bd8872 2020-10-28 20:25:50.052784 44042 1459 Product \N \N 4 User \N create ---\nsku: ACC-1459\nname: ARE-0170\ndescription: ARETE PERLA FLOR\nprice_base: !ruby/object:BigDecimal 18:0.43E2\nprice_sale: !ruby/object:BigDecimal 18:0.179E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1459 fue creado. 189.186.91.88 877ec536-15dc-404d-9d21-8027380a499f 2020-10-28 20:27:55.070481 44043 1459 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001459'\n 2 \N 189.186.91.88 877ec536-15dc-404d-9d21-8027380a499f 2020-10-28 20:27:55.098942 44044 2476 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1459\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 877ec536-15dc-404d-9d21-8027380a499f 2020-10-28 20:27:55.126179 44045 1460 Product \N \N 4 User \N create ---\nsku: ACC-1460\nname: ARE-0111\ndescription: ARETE CORAZON CON MOÑO NEGRO\nprice_base: !ruby/object:BigDecimal 18:0.27E2\nprice_sale: !ruby/object:BigDecimal 18:0.129E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHLN265256.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1460 fue creado. 189.186.91.88 96ed9827-2786-4d13-ae64-725d1ca93bb0 2020-10-28 20:31:12.484809 44046 1460 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001460'\n 2 \N 189.186.91.88 96ed9827-2786-4d13-ae64-725d1ca93bb0 2020-10-28 20:31:12.522772 44047 2477 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1460\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 96ed9827-2786-4d13-ae64-725d1ca93bb0 2020-10-28 20:31:12.576731 44048 438 Purchase \N \N 4 User \N create ---\nsupplier_id: 3\npointsale_id: 1\npurchase_code: PV1-C-177\namount: !ruby/object:BigDecimal 18:0.2E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2E3\nobservations: ''\npurchase_date: 2020-10-28\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-177 por $ 200.0 MXN creada. 189.186.91.88 85318dc0-8722-4c1e-974e-eca00e9c268e 2020-10-28 20:32:36.824432 44050 2475 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 85318dc0-8722-4c1e-974e-eca00e9c268e 2020-10-28 20:32:36.865665 44051 2476 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 85318dc0-8722-4c1e-974e-eca00e9c268e 2020-10-28 20:32:36.886235 44052 2477 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 85318dc0-8722-4c1e-974e-eca00e9c268e 2020-10-28 20:32:36.907406 44053 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-28 04:51:19.173041000 Z\n- &1 2020-10-28 19:17:46.270493000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-28 20:33:06.553266397 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535392\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2016\n- 2017\n 4034 \N 189.186.91.88 156fe1b4-27af-481f-adf6-3f25e452ca67 2020-10-28 20:33:06.560528 44054 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _zaPwfM_fcxNQnnfLVqv\n- wW1zPzuRNgn5RpCiB8n2\n 4035 \N 189.186.91.88 156fe1b4-27af-481f-adf6-3f25e452ca67 2020-10-28 20:33:06.578749 44055 2300 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.91.88 eb6689dd-340a-419b-a382-e5f70c0259f4 2020-10-28 20:33:51.778181 44056 2300 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.91.88 b9d95862-de5a-4b49-bdc6-54c44b52a37c 2020-10-28 20:34:49.609114 44057 2300 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.91.88 63b8f10f-5d5c-4c20-8da5-37b1181d0a02 2020-10-28 20:36:08.407468 44058 706 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-10-28\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.91.88 f740b84d-9da9-479b-8d90-26bc90e6f7fc 2020-10-28 20:36:17.043878 44059 706 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-10-28\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.142.78 df1a9490-6c35-47aa-b4d6-e3bda8412a00 2020-10-28 20:37:29.262877 44060 2478 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1349\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.142.78 df1a9490-6c35-47aa-b4d6-e3bda8412a00 2020-10-28 20:37:29.282778 44061 3277 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1139\namount: !ruby/object:BigDecimal 18:0.5796E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.5796E4\nstatus: 0\ndate_sale: 2020-10-28\nsaletype: 1\nseller_id: 28\nsale_code: PV1-V-1563\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.142.78 06bc78ff-9e64-4a3a-935b-b587914592a6 2020-10-28 20:38:47.576989 44062 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.1E2\n 6 \N 187.149.142.78 06bc78ff-9e64-4a3a-935b-b587914592a6 2020-10-28 20:38:47.604895 44063 2298 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.142.78 06bc78ff-9e64-4a3a-935b-b587914592a6 2020-10-28 20:38:47.626844 44064 2478 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.142.78 06bc78ff-9e64-4a3a-935b-b587914592a6 2020-10-28 20:38:47.649476 44065 1461 Product \N \N 4 User \N create ---\nsku: ACC-1461\nname: ARE-0187\ndescription: ARETE LUNA Y ESTRELLA\nprice_base: !ruby/object:BigDecimal 18:0.23E2\nprice_sale: !ruby/object:BigDecimal 18:0.46E2\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHOA266603.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1461 fue creado. 189.186.91.88 6a346eae-1061-4a9f-8208-9c2aac03546c 2020-10-28 20:42:49.406933 44066 1461 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001461'\n 2 \N 189.186.91.88 6a346eae-1061-4a9f-8208-9c2aac03546c 2020-10-28 20:42:49.438216 44067 2479 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1461\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 6a346eae-1061-4a9f-8208-9c2aac03546c 2020-10-28 20:42:49.465461 44068 1462 Product \N \N 4 User \N create ---\nsku: ACC-1462\nname: ARE-0146\ndescription: ARETE ARCOIRIS\nprice_base: !ruby/object:BigDecimal 18:0.56E2\nprice_sale: !ruby/object:BigDecimal 18:0.299E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: NHKQ266702.jpg\ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1462 fue creado. 189.186.91.88 1e3d3a8e-a9a6-4b67-a14a-f545f43c5bb0 2020-10-28 20:44:47.710978 44069 1462 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001462'\n 2 \N 189.186.91.88 1e3d3a8e-a9a6-4b67-a14a-f545f43c5bb0 2020-10-28 20:44:47.740617 44070 2480 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1462\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 1e3d3a8e-a9a6-4b67-a14a-f545f43c5bb0 2020-10-28 20:44:47.765993 44071 1463 Product \N \N 4 User \N create ---\nsku: ACC-1463\nname: ARE-0184\ndescription: ARETE FLORES PERLAS\nprice_base: !ruby/object:BigDecimal 18:0.43E2\nprice_sale: !ruby/object:BigDecimal 18:0.149E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 17\nproduct_service_key: '01010101'\n 1 El producto ACC-1463 fue creado. 189.186.91.88 d73afb7e-2e5f-4ead-9649-33c911cc7775 2020-10-28 20:46:16.794162 44072 1463 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001463'\n 2 \N 189.186.91.88 d73afb7e-2e5f-4ead-9649-33c911cc7775 2020-10-28 20:46:16.830243 44073 2481 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1463\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 d73afb7e-2e5f-4ead-9649-33c911cc7775 2020-10-28 20:46:16.856537 44074 3277 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.142.78 adf9d0f5-b2c3-4adb-8018-e428992987cc 2020-10-28 20:53:29.350149 44075 4343 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1139\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5796E4\nmove_type: '1'\nsale_id: 3277\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1563\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5796E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1563 187.149.142.78 adf9d0f5-b2c3-4adb-8018-e428992987cc 2020-10-28 20:53:29.373416 44076 439 Purchase \N \N 4 User \N create ---\nsupplier_id: 3\npointsale_id: 1\npurchase_code: PV1-C-178\namount: !ruby/object:BigDecimal 18:0.122E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.122E3\nobservations: ''\npurchase_date: 2020-10-28\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-178 por $ 122.0 MXN creada. 189.186.91.88 fad7b896-2371-4e8a-a488-209185b0b009 2020-10-28 20:57:11.034599 44077 2479 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 fad7b896-2371-4e8a-a488-209185b0b009 2020-10-28 20:57:11.061754 44078 2480 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 fad7b896-2371-4e8a-a488-209185b0b009 2020-10-28 20:57:11.0903 44079 2481 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 fad7b896-2371-4e8a-a488-209185b0b009 2020-10-28 20:57:11.115359 44080 1461 Product \N \N 4 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.46E2\n- !ruby/object:BigDecimal 18:0.119E3\n 3 El producto ACC-1461 fue modificado. 189.186.91.88 6e375376-4c3b-4745-b1d6-8001223a5446 2020-10-28 21:01:21.097772 44081 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-27 20:13:55.996439000 Z\n- &1 2020-10-28 02:04:44.919015000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-28 21:02:51.826404495 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 315\n- 316\n 633 \N 189.186.91.88 921be4b0-6fe2-48e9-9282-ef0d293efb13 2020-10-28 21:02:51.833403 44082 18 User \N \N 18 User \N update ---\nunique_session_id:\n- XqArMY3xYz_V8DkyzXH1\n- 7f9DwHjTmnJ2QKzEiLeg\n 634 \N 189.186.91.88 921be4b0-6fe2-48e9-9282-ef0d293efb13 2020-10-28 21:02:51.849694 44083 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-27 22:55:26.018469000 Z\n- &1 2020-10-28 00:28:23.034666000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-28 21:03:42.774103753 Z\nsign_in_count:\n- 324\n- 325\n 650 \N 187.149.142.78 16edf44a-2634-497c-afab-3f0e85d991ca 2020-10-28 21:03:42.779919 44084 1 User \N \N 1 User \N update ---\nunique_session_id:\n- SHWxY6VVFK-1_7-f26xS\n- Bkrqiws23fym8i4S7afW\n 651 \N 187.149.142.78 16edf44a-2634-497c-afab-3f0e85d991ca 2020-10-28 21:03:42.792412 44085 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-28 00:28:23.034666000 Z\n- &1 2020-10-28 21:03:42.774103000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-28 21:40:49.529292554 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140686\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945660\n mask_addr: 4294967295\nsign_in_count:\n- 325\n- 326\n 652 \N 200.68.179.188 b7e434da-5152-4227-8f79-9bc0fe9e1cc3 2020-10-28 21:40:49.536885 44086 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Bkrqiws23fym8i4S7afW\n- VUxqTz9tPbiW-yATNGj9\n 653 \N 200.68.179.188 b7e434da-5152-4227-8f79-9bc0fe9e1cc3 2020-10-28 21:40:49.554097 44087 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-28 19:17:46.270493000 Z\n- &1 2020-10-28 20:33:06.553266000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-28 21:53:47.910023683 Z\nsign_in_count:\n- 2017\n- 2018\n 4036 \N 189.186.91.88 e0032d40-39fa-4070-b83e-29696fef65f1 2020-10-28 21:53:47.916158 44088 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wW1zPzuRNgn5RpCiB8n2\n- MUpPg3aU9qizfezAmRs4\n 4037 \N 189.186.91.88 e0032d40-39fa-4070-b83e-29696fef65f1 2020-10-28 21:53:47.932257 44089 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-28 02:04:44.919015000 Z\n- &1 2020-10-28 21:02:51.826404000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-28 22:56:54.639744904 Z\nsign_in_count:\n- 316\n- 317\n 635 \N 189.186.91.88 c5256253-5f1f-4acb-97af-3cdbdadd728c 2020-10-28 22:56:54.64598 44090 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 7f9DwHjTmnJ2QKzEiLeg\n- ZD-T-mzXxaaG2zxfbDkQ\n 636 \N 189.186.91.88 c5256253-5f1f-4acb-97af-3cdbdadd728c 2020-10-28 22:56:54.660821 44091 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-28 21:02:51.826404000 Z\n- &1 2020-10-28 22:56:54.639744000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-29 00:52:20.900159817 Z\nsign_in_count:\n- 317\n- 318\n 637 \N 189.186.91.88 db7deaef-0b77-41ae-a62a-4588a56b11e5 2020-10-29 00:52:20.906968 44092 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ZD-T-mzXxaaG2zxfbDkQ\n- TA5pB5QbPsin_CzZH2-W\n 638 \N 189.186.91.88 db7deaef-0b77-41ae-a62a-4588a56b11e5 2020-10-29 00:52:20.923992 44093 1140 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.804E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 804.0 189.186.91.88 c1c13f80-91e8-4b32-ae8d-901ac28edf95 2020-10-29 00:54:55.075239 44094 4344 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1140\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 3273\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-794 189.186.91.88 3b5edf4e-b976-4254-bb71-d7f72c7393d7 2020-10-29 00:55:12.283512 44095 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-28 20:33:06.553266000 Z\n- &1 2020-10-28 21:53:47.910023000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-29 01:00:14.018201915 Z\nsign_in_count:\n- 2018\n- 2019\n 4038 \N 189.186.91.88 2deade49-826d-40b6-9399-423060285eee 2020-10-29 01:00:14.024871 44096 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MUpPg3aU9qizfezAmRs4\n- "-hp6QCG_MshrdZwkXj2p"\n 4039 \N 189.186.91.88 2deade49-826d-40b6-9399-423060285eee 2020-10-29 01:00:14.042006 44097 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-28 21:03:42.774103000 Z\n- &1 2020-10-28 21:40:49.529292000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-29 01:26:08.089670188 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140686\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945660\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945660\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140686\n mask_addr: 4294967295\nsign_in_count:\n- 326\n- 327\n 654 \N 187.149.142.78 7bc45052-0625-42b0-9ccc-cea655c5370f 2020-10-29 01:26:08.097723 44098 1 User \N \N 1 User \N update ---\nunique_session_id:\n- VUxqTz9tPbiW-yATNGj9\n- n8Q6287YenYPJnNSnsnw\n 655 \N 187.149.142.78 7bc45052-0625-42b0-9ccc-cea655c5370f 2020-10-29 01:26:08.114531 44099 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-28 22:56:54.639744000 Z\n- &1 2020-10-29 00:52:20.900159000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-29 01:39:01.447770738 Z\nsign_in_count:\n- 318\n- 319\n 639 \N 189.186.91.88 630ee64b-5142-4c60-a65e-09d65c420497 2020-10-29 01:39:01.453743 44100 18 User \N \N 18 User \N update ---\nunique_session_id:\n- TA5pB5QbPsin_CzZH2-W\n- RXNPfdS4VycNajB_RbUU\n 640 \N 189.186.91.88 630ee64b-5142-4c60-a65e-09d65c420497 2020-10-29 01:39:01.467713 44101 3278 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1139\namount: !ruby/object:BigDecimal 18:0.969E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.969E3\nstatus: 0\ndate_sale: 2020-10-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1564\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.142.78 8eb51916-6657-494e-8984-b27eaae0bcf7 2020-10-29 01:41:27.261653 44102 2249 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.142.78 8eb51916-6657-494e-8984-b27eaae0bcf7 2020-10-29 01:41:27.292304 44103 3278 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.142.78 694dd222-b677-47ee-999c-785d507d87db 2020-10-29 01:41:47.032846 44104 4345 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1139\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.969E3\nmove_type: '1'\nsale_id: 3278\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1564\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.969E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1564 187.149.142.78 694dd222-b677-47ee-999c-785d507d87db 2020-10-29 01:41:47.057286 44105 1164 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1140\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.799E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.561E3\ncash_fund: !ruby/object:BigDecimal 18:0.1042E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1603E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 6833a8bb-a515-4207-a108-13de9043023a 2020-10-29 01:44:52.993171 44106 1140 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 6833a8bb-a515-4207-a108-13de9043023a 2020-10-29 01:44:53.007499 44107 1165 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1139\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6765E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.62E4\ncash_fund: !ruby/object:BigDecimal 18:0.1524E4\nphysical_cash: !ruby/object:BigDecimal 18:0.7724E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.142.78 debab2f6-7d1d-49b6-8e41-6c02f0816c24 2020-10-29 01:57:48.682071 44108 1139 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.142.78 debab2f6-7d1d-49b6-8e41-6c02f0816c24 2020-10-29 01:57:48.698553 44109 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-27 17:15:48.389347000 Z\n- &1 2020-10-28 18:07:21.964869000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-29 19:14:29.125834711 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147124142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140686\n mask_addr: 4294967295\nsign_in_count:\n- 676\n- 677\n 1357 \N 187.149.142.78 cff366c4-85f6-40e4-899e-aac28fe8e675 2020-10-29 19:14:29.155364 44110 2 User \N \N 2 User \N update ---\nunique_session_id:\n- JkUdxoSsDyGUvbZh-uoJ\n- RkPq2FBV-yGRkCRnMKDi\n 1358 \N 187.149.142.78 cff366c4-85f6-40e4-899e-aac28fe8e675 2020-10-29 19:14:29.180262 44111 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-29 00:52:20.900159000 Z\n- &1 2020-10-29 01:39:01.447770000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-29 20:05:26.413163290 Z\nsign_in_count:\n- 319\n- 320\n 641 \N 189.186.91.88 e8226e3e-658f-4bd3-af92-5d89162e1e78 2020-10-29 20:05:26.419805 44112 18 User \N \N 18 User \N update ---\nunique_session_id:\n- RXNPfdS4VycNajB_RbUU\n- Yap7MzwtzRhPk385UZpo\n 642 \N 189.186.91.88 e8226e3e-658f-4bd3-af92-5d89162e1e78 2020-10-29 20:05:26.43638 44113 1141 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1042E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1042.0 189.186.91.88 6632f2b7-1b0c-4a19-8a25-8a7483a2b24f 2020-10-29 20:05:47.666556 44114 3279 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1141\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-10-29\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-795\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 d09c86f8-17b2-41ac-b26a-df8d9071e99d 2020-10-29 20:06:31.212623 44115 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.19E2\n- !ruby/object:BigDecimal 18:0.18E2\n 8 \N 189.186.91.88 d09c86f8-17b2-41ac-b26a-df8d9071e99d 2020-10-29 20:06:31.242128 44116 3279 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 8f37aa99-99fc-4ebe-a4e6-66f2c1c8a82b 2020-10-29 20:06:54.593761 44117 4346 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1141\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 3279\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-795\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-795 189.186.91.88 8f37aa99-99fc-4ebe-a4e6-66f2c1c8a82b 2020-10-29 20:06:54.620009 44118 3280 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1141\namount: !ruby/object:BigDecimal 18:0.3598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3598E4\nstatus: 0\ndate_sale: 2020-10-29\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-796\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 68d3601d-40b8-498a-9035-9844848e0f46 2020-10-29 20:10:41.27069 44119 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.18E2\n- !ruby/object:BigDecimal 18:0.16E2\n 9 \N 189.186.91.88 68d3601d-40b8-498a-9035-9844848e0f46 2020-10-29 20:10:41.294931 44120 3280 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 ca0b2be0-6543-4b57-bd09-54d134b8a8aa 2020-10-29 20:10:53.538986 44121 4347 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1141\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3598E4\nmove_type: '1'\nsale_id: 3280\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-796\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3598E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-796 189.186.91.88 ca0b2be0-6543-4b57-bd09-54d134b8a8aa 2020-10-29 20:10:53.559294 44140 2365 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.91.88 92f801db-d2fc-4939-8411-12bfd7318cc0 2020-10-29 20:48:02.974978 44141 2375 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.7E1\n 10 \N 189.186.91.88 92f801db-d2fc-4939-8411-12bfd7318cc0 2020-10-29 20:48:02.998512 44122 3281 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1141\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-10-29\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-797\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 ee3f03d0-dc01-4825-9fbf-2e456bbe8945 2020-10-29 20:28:48.291715 44123 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 78 \N 189.186.91.88 ee3f03d0-dc01-4825-9fbf-2e456bbe8945 2020-10-29 20:28:48.319841 44124 3281 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 99686444-45b0-4507-8ccc-df8edac12b00 2020-10-29 20:29:09.360103 44125 4348 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1141\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3281\ncardnumber: 5222\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-797\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-797 189.186.91.88 99686444-45b0-4507-8ccc-df8edac12b00 2020-10-29 20:29:09.448497 44126 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-28 21:53:47.910023000 Z\n- &1 2020-10-29 01:00:14.018201000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-29 20:36:38.487567928 Z\nsign_in_count:\n- 2019\n- 2020\n 4040 \N 189.186.91.88 ee5627d4-a326-4f39-a3d7-b0f075ce8767 2020-10-29 20:36:38.513084 44127 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-hp6QCG_MshrdZwkXj2p"\n- ok5wHCLxNjxpYfdMKDvE\n 4041 \N 189.186.91.88 ee5627d4-a326-4f39-a3d7-b0f075ce8767 2020-10-29 20:36:38.537412 44128 1464 Product \N \N 4 User \N create ---\nsku: BOL-1464\nname: 2BLCV20386\ndescription: BOLSO CROSSBODY TELA\nprice_base: !ruby/object:BigDecimal 18:0.5995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170822540'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1464 fue creado. 189.186.91.88 5a96fcbe-34de-4073-a0ba-1c6b94df64d3 2020-10-29 20:42:42.50527 44129 2482 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1464\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 5a96fcbe-34de-4073-a0ba-1c6b94df64d3 2020-10-29 20:42:42.554253 44130 1465 Product \N \N 4 User \N create ---\nsku: BOL-1465\nname: 3BLCP20113\ndescription: BACK PACK CON BOLSITA ENFRENTE\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170801347'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1465 fue creado. 189.186.91.88 8148a4bd-dd7f-4e0f-b466-ffb2a587cb7c 2020-10-29 20:44:26.507417 44131 2483 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1465\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 8148a4bd-dd7f-4e0f-b466-ffb2a587cb7c 2020-10-29 20:44:26.557822 44132 1466 Product \N \N 4 User \N create ---\nsku: BOL-1466\nname: 1BLCV20263\ndescription: 'BOLSO LETRAS '\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170818444'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1466 fue creado. 189.186.91.88 76ad9d18-e353-4858-8cdc-694e34d4032e 2020-10-29 20:45:18.592399 44133 2484 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1466\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 76ad9d18-e353-4858-8cdc-694e34d4032e 2020-10-29 20:45:18.644767 44134 1467 Product \N \N 4 User \N create ---\nsku: BOL-1467\nname: 2BLCV20381\ndescription: BACK PACK NEGRO MULTICOLOR\nprice_base: !ruby/object:BigDecimal 18:0.10495E4\nprice_sale: !ruby/object:BigDecimal 18:0.2099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170822359'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1467 fue creado. 189.186.91.88 46a04e0e-63ee-47b6-acee-3c3e26828db0 2020-10-29 20:46:39.517479 44135 2485 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1467\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 46a04e0e-63ee-47b6-acee-3c3e26828db0 2020-10-29 20:46:39.556892 44136 1468 Product \N \N 4 User \N create ---\nsku: BOL-1468\nname: 3BLCV20449\ndescription: BOLSO CON PAÑUELO\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170824575'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1468 fue creado. 189.186.91.88 2b1d9618-b95e-4891-864b-40271c785cc0 2020-10-29 20:47:43.78498 44137 2486 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1468\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 2b1d9618-b95e-4891-864b-40271c785cc0 2020-10-29 20:47:43.83509 44138 440 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-123\namount: !ruby/object:BigDecimal 18:0.158895E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.158895E5\nobservations: ''\npurchase_date: 2020-10-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-123 por $ 15889.5 MXN creada. 189.186.91.88 92f801db-d2fc-4939-8411-12bfd7318cc0 2020-10-29 20:48:02.918988 44139 2042 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 11 \N 189.186.91.88 92f801db-d2fc-4939-8411-12bfd7318cc0 2020-10-29 20:48:02.942071 44142 2482 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.91.88 92f801db-d2fc-4939-8411-12bfd7318cc0 2020-10-29 20:48:03.019317 44143 2483 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 92f801db-d2fc-4939-8411-12bfd7318cc0 2020-10-29 20:48:03.040437 44144 2484 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 92f801db-d2fc-4939-8411-12bfd7318cc0 2020-10-29 20:48:03.063085 44145 2485 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 92f801db-d2fc-4939-8411-12bfd7318cc0 2020-10-29 20:48:03.095773 44146 2486 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 92f801db-d2fc-4939-8411-12bfd7318cc0 2020-10-29 20:48:03.11712 44147 441 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-179\namount: !ruby/object:BigDecimal 18:0.68455E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.68455E4\nobservations: ''\npurchase_date: 2020-10-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-179 por $ 6845.5 MXN creada. 189.186.91.88 3a4e0361-bacb-494f-aa2b-c5d34f0402f9 2020-10-29 20:53:15.16779 44148 2487 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1466\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 3a4e0361-bacb-494f-aa2b-c5d34f0402f9 2020-10-29 20:53:15.192915 44149 2488 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1465\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 3a4e0361-bacb-494f-aa2b-c5d34f0402f9 2020-10-29 20:53:15.218497 44150 2369 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.91.88 3a4e0361-bacb-494f-aa2b-c5d34f0402f9 2020-10-29 20:53:15.241787 44151 2489 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1464\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 3a4e0361-bacb-494f-aa2b-c5d34f0402f9 2020-10-29 20:53:15.265175 44152 2490 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1368\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 3a4e0361-bacb-494f-aa2b-c5d34f0402f9 2020-10-29 20:53:15.290104 44153 2059 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.91.88 3a4e0361-bacb-494f-aa2b-c5d34f0402f9 2020-10-29 20:53:15.311226 44154 1469 Product \N \N 4 User \N create ---\nsku: BOL-1469\nname: 3BLCP20124\ndescription: BOLSO CROSS BODY LETRAS\nprice_base: !ruby/object:BigDecimal 18:0.6495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1469 fue creado. 189.186.91.88 8ba8449f-8fe3-445a-bbd8-340592d68f9b 2020-10-29 20:56:07.582004 44155 1469 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001469'\n 2 \N 189.186.91.88 8ba8449f-8fe3-445a-bbd8-340592d68f9b 2020-10-29 20:56:07.61582 44156 2491 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1469\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 8ba8449f-8fe3-445a-bbd8-340592d68f9b 2020-10-29 20:56:07.644697 44157 442 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-180\namount: !ruby/object:BigDecimal 18:0.6495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6495E3\nobservations: ''\npurchase_date: 2020-10-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-180 por $ 649.5 MXN creada. 189.186.91.88 9a6b4dff-b589-4374-96a1-732b8598350e 2020-10-29 20:56:16.059681 44158 2491 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 9a6b4dff-b589-4374-96a1-732b8598350e 2020-10-29 20:56:16.086025 44159 1470 Product \N \N 4 User \N create ---\nsku: CAR-1470\nname: 3BICP20087\ndescription: CARTERA PEQUEÑA\nprice_base: !ruby/object:BigDecimal 18:0.3495E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170800449'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1470 fue creado. 189.186.91.88 937dcd14-a680-4cc2-89de-109d70e678bb 2020-10-29 21:19:16.7493 44160 2492 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1470\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 937dcd14-a680-4cc2-89de-109d70e678bb 2020-10-29 21:19:16.786191 44161 1471 Product \N \N 4 User \N create ---\nsku: CAR-1471\nname: 2BICV2033\ndescription: CARTERA PEQUEÑACON TARJETERO\nprice_base: !ruby/object:BigDecimal 18:0.3995E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170820584'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1471 fue creado. 189.186.91.88 f6ff2ea2-2258-46b1-91f1-4ae383636cd9 2020-10-29 21:20:31.688465 44162 2493 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1471\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 f6ff2ea2-2258-46b1-91f1-4ae383636cd9 2020-10-29 21:20:31.725466 44163 1142 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1524E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1524.0 187.149.142.78 ca1df073-2e97-4b7c-8a99-36b25ba92044 2020-10-29 21:23:27.064803 44185 2286 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.91.88 f5342d98-3b66-4cdf-84f6-c9d94d5f144b 2020-10-29 23:09:26.358183 44164 1472 Product \N \N 4 User \N create ---\nsku: CAR-1472\nname: NILE897\ndescription: CARTERA NEGRA CON TARJETERO\nprice_base: !ruby/object:BigDecimal 18:0.2495E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170723755'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1472 fue creado. 189.186.91.88 3074b831-d8a5-402f-aad3-3fdd159f02af 2020-10-29 21:24:47.448039 44165 2494 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1472\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 3074b831-d8a5-402f-aad3-3fdd159f02af 2020-10-29 21:24:47.490932 44166 1473 Product \N \N 4 User \N create ---\nsku: CAR-1473\nname: NILE898\ndescription: CARTERA ROJA\nprice_base: !ruby/object:BigDecimal 18:0.2495E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170723731'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1473 fue creado. 189.186.91.88 0e511ca8-e1a9-45b5-9565-ec6175d81fe3 2020-10-29 21:25:25.447585 44167 2495 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1473\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 0e511ca8-e1a9-45b5-9565-ec6175d81fe3 2020-10-29 21:25:25.493947 44168 1474 Product \N \N 4 User \N create ---\nsku: CAR-1474\nname: 2BICV20377\ndescription: 'CARTERA CLOE '\nprice_base: !ruby/object:BigDecimal 18:0.4995E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170822236'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1474 fue creado. 189.186.91.88 f14ace20-766b-423f-baf8-0dd51f983dd1 2020-10-29 21:26:05.67337 44169 2496 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1474\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 f14ace20-766b-423f-baf8-0dd51f983dd1 2020-10-29 21:26:05.73201 44170 443 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-124\namount: !ruby/object:BigDecimal 18:0.3546E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3546E4\nobservations: ''\npurchase_date: 2020-10-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-124 por $ 3546.0 MXN creada. 189.186.91.88 d890207a-5f74-4257-8505-74e95b675123 2020-10-29 21:26:09.444729 44171 2497 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1469\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 d890207a-5f74-4257-8505-74e95b675123 2020-10-29 21:26:09.472479 44172 2017 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 17 \N 189.186.91.88 d890207a-5f74-4257-8505-74e95b675123 2020-10-29 21:26:09.501616 44173 2492 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 d890207a-5f74-4257-8505-74e95b675123 2020-10-29 21:26:09.528097 44174 2493 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.91.88 d890207a-5f74-4257-8505-74e95b675123 2020-10-29 21:26:09.556935 44175 2494 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 d890207a-5f74-4257-8505-74e95b675123 2020-10-29 21:26:09.583317 44176 2495 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 d890207a-5f74-4257-8505-74e95b675123 2020-10-29 21:26:09.612471 44177 2496 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 d890207a-5f74-4257-8505-74e95b675123 2020-10-29 21:26:09.640947 44178 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-28 21:40:49.529292000 Z\n- &1 2020-10-29 01:26:08.089670000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-29 22:51:52.588744736 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945660\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140686\n mask_addr: 4294967295\nsign_in_count:\n- 327\n- 328\n 656 \N 187.149.142.78 f7069f00-b3ba-4cc4-8731-fd44b0d63388 2020-10-29 22:51:52.59671 44179 1 User \N \N 1 User \N update ---\nunique_session_id:\n- n8Q6287YenYPJnNSnsnw\n- LrEkgHSc-7xXscKP4XsG\n 657 \N 187.149.142.78 f7069f00-b3ba-4cc4-8731-fd44b0d63388 2020-10-29 22:51:52.61389 44180 1475 Product \N \N 4 User \N create ---\nsku: ZAP-1475\nname: POSITANO\ndescription: ZAPATILLA NUDE\nprice_base: !ruby/object:BigDecimal 18:0.7995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1599E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170804102'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 13\nproduct_service_key: '01010101'\n 1 El producto ZAP-1475 fue creado. 189.186.91.88 33ad784b-36f6-41cc-8cc9-b866484d003d 2020-10-29 23:03:07.482336 44181 2498 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1475\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 33ad784b-36f6-41cc-8cc9-b866484d003d 2020-10-29 23:03:07.528945 44182 444 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-181\namount: !ruby/object:BigDecimal 18:0.7945E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.7945E4\nobservations: ''\npurchase_date: 2020-10-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-181 por $ 7945.0 MXN creada. 189.186.91.88 f5342d98-3b66-4cdf-84f6-c9d94d5f144b 2020-10-29 23:09:26.267758 44183 2498 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.91.88 f5342d98-3b66-4cdf-84f6-c9d94d5f144b 2020-10-29 23:09:26.292554 44184 2448 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.12E2\n 3 \N 189.186.91.88 f5342d98-3b66-4cdf-84f6-c9d94d5f144b 2020-10-29 23:09:26.326234 44186 445 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-125\namount: !ruby/object:BigDecimal 18:0.7995E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.7995E4\nobservations: ''\npurchase_date: 2020-10-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-125 por $ 7995.0 MXN creada. 189.186.91.88 485d31a5-678a-4f66-8b0f-557bb3a17cc2 2020-10-29 23:10:10.197003 44187 2378 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.16E2\n 4 \N 189.186.91.88 485d31a5-678a-4f66-8b0f-557bb3a17cc2 2020-10-29 23:10:10.218622 44188 1476 Product \N \N 4 User \N create ---\nsku: COS-1476\nname: 5CSCP20622\ndescription: COSMETIQUERA LILA\nprice_base: !ruby/object:BigDecimal 18:0.1995E3\nprice_sale: !ruby/object:BigDecimal 18:0.399E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170839838'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 14\nproduct_service_key: '01010101'\n 1 El producto COS-1476 fue creado. 189.186.91.88 2fbdc86b-97c0-4342-bee8-d825f600f056 2020-10-29 23:12:37.31705 44189 2499 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1476\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 2fbdc86b-97c0-4342-bee8-d825f600f056 2020-10-29 23:12:37.357241 44190 1477 Product \N \N 4 User \N create ---\nsku: CAR-1477\nname: 1BICV20300\ndescription: CASTERA AMARILLA Y NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.4995E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170819519'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1477 fue creado. 189.186.91.88 47c2b33e-c85b-4fee-9037-da67343424ff 2020-10-29 23:13:24.498182 44191 2500 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1477\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 47c2b33e-c85b-4fee-9037-da67343424ff 2020-10-29 23:13:24.537392 44192 1478 Product \N \N 4 User \N create ---\nsku: CAR-1478\nname: 1BICV203000BLA\ndescription: CARTERA BLANCA\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170819526'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1478 fue creado. 189.186.91.88 2b22653b-c676-4adb-858d-849c5548cafa 2020-10-29 23:15:06.91145 44193 2501 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1478\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 2b22653b-c676-4adb-858d-849c5548cafa 2020-10-29 23:15:06.952536 44194 446 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-182\namount: !ruby/object:BigDecimal 18:0.2946E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2946E4\nobservations: ''\npurchase_date: 2020-10-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-182 por $ 2946.0 MXN creada. 189.186.91.88 2169fc8a-4235-4db5-b635-c41fb04efcbd 2020-10-29 23:15:10.126521 44195 2502 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1471\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 2169fc8a-4235-4db5-b635-c41fb04efcbd 2020-10-29 23:15:10.166051 44196 2503 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1472\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 2169fc8a-4235-4db5-b635-c41fb04efcbd 2020-10-29 23:15:10.20053 44197 2504 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1473\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 2169fc8a-4235-4db5-b635-c41fb04efcbd 2020-10-29 23:15:10.227475 44198 2499 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 2169fc8a-4235-4db5-b635-c41fb04efcbd 2020-10-29 23:15:10.251527 44199 2500 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.91.88 2169fc8a-4235-4db5-b635-c41fb04efcbd 2020-10-29 23:15:10.273543 44200 2501 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 2169fc8a-4235-4db5-b635-c41fb04efcbd 2020-10-29 23:15:10.295031 44201 1479 Product \N \N 4 User \N create ---\nsku: CAR-1479\nname: 2BICV20367\ndescription: CARTERA LETRAS\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170821925'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1479 fue creado. 189.186.91.88 e356bd80-2864-473e-9d1c-8d22d3b58fef 2020-10-29 23:19:37.150275 44202 2505 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1479\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 e356bd80-2864-473e-9d1c-8d22d3b58fef 2020-10-29 23:19:37.193597 44203 447 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-183\namount: !ruby/object:BigDecimal 18:0.4495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4495E3\nobservations: ''\npurchase_date: 2020-10-29\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-183 por $ 449.5 MXN creada. 189.186.91.88 657b32ab-3342-452a-ab6d-d4eb9f4e218c 2020-10-29 23:19:41.523517 44204 2505 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 657b32ab-3342-452a-ab6d-d4eb9f4e218c 2020-10-29 23:19:41.542666 44229 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 9njHDh4WYorTBdzzxSg_\n- 4LhVtCuXxWCzkdz6NYYX\n 661 \N 187.149.136.226 f7ab35de-0556-490d-84b2-8b1aa001829d 2020-10-30 01:56:57.687037 44205 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-29 01:39:01.447770000 Z\n- &1 2020-10-29 20:05:26.413163000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-29 23:25:05.007126244 Z\nsign_in_count:\n- 320\n- 321\n 643 \N 189.186.91.88 43f00bf2-c844-469a-940c-ddd342da332c 2020-10-29 23:25:05.024144 44206 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Yap7MzwtzRhPk385UZpo\n- ByJMT3Gqfk_PgsxXQWr6\n 644 \N 189.186.91.88 43f00bf2-c844-469a-940c-ddd342da332c 2020-10-29 23:25:05.042346 44207 4349 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1051\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 2888\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '5655'\n 1 \N 189.186.91.88 5995dabc-7863-4804-b1dd-a5c97e527d5f 2020-10-29 23:26:34.810512 44208 4349 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 1051\n- 1141\n 2 movimiento de efectivo por venta con folio PV3-V-592 189.186.91.88 5995dabc-7863-4804-b1dd-a5c97e527d5f 2020-10-29 23:26:34.849532 44209 2341 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 189.186.91.88 4796ec4a-d5ce-47c1-a92e-c235cd244f5d 2020-10-30 00:52:51.788734 44210 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 11 \N 189.186.91.88 9470d71a-08e2-4205-ac95-31e6422c32dc 2020-10-30 00:53:55.043978 44211 707 Transfer \N \N 18 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-10-29\nuser_id: 18\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.91.88 4a4fb314-ff36-417d-b9b2-247c973615eb 2020-10-30 00:53:58.489953 44212 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-29 01:00:14.018201000 Z\n- &1 2020-10-29 20:36:38.487567000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-30 00:54:28.349501219 Z\nsign_in_count:\n- 2020\n- 2021\n 4042 \N 189.186.91.88 9d9b5016-2b94-456c-9901-fe97696fa815 2020-10-30 00:54:28.355191 44213 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ok5wHCLxNjxpYfdMKDvE\n- MR25Pkt78oqgzG2AGH2w\n 4043 \N 189.186.91.88 9d9b5016-2b94-456c-9901-fe97696fa815 2020-10-30 00:54:28.372044 44214 4350 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1142\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 3045\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1454 187.149.105.232 4d1961f7-7885-4706-b7ca-e050823ca6f5 2020-10-30 00:59:30.741315 44215 3045 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.105.232 bfcf4fbd-1dba-4edd-923d-e3dac51ef68f 2020-10-30 00:59:31.73354 44216 4351 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1142\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.669E3\nmove_type: '1'\nsale_id: 3046\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.669E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1455 187.149.105.232 9dba4337-be15-4efe-ab17-8e3fde2cd62f 2020-10-30 01:01:02.193732 44217 3046 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.105.232 84e51a47-0bf3-49e7-918d-507bcf275e3f 2020-10-30 01:01:16.694789 44218 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-29 20:05:26.413163000 Z\n- &1 2020-10-29 23:25:05.007126000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-30 01:19:36.725404202 Z\nsign_in_count:\n- 321\n- 322\n 645 \N 189.186.91.88 aa47341d-7b9d-4ae4-85ea-1cf67bc55bc0 2020-10-30 01:19:36.731198 44219 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ByJMT3Gqfk_PgsxXQWr6\n- uh7GxhKXs8jPypsJ3tna\n 646 \N 189.186.91.88 aa47341d-7b9d-4ae4-85ea-1cf67bc55bc0 2020-10-30 01:19:36.744862 44220 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-29 01:26:08.089670000 Z\n- &1 2020-10-29 22:51:52.588744000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-30 01:19:46.360628681 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140686\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147131368\n mask_addr: 4294967295\nsign_in_count:\n- 328\n- 329\n 658 \N 187.149.105.232 9c02c4b7-37da-463a-82c0-6cb3a0d93073 2020-10-30 01:19:46.367322 44221 1 User \N \N 1 User \N update ---\nunique_session_id:\n- LrEkgHSc-7xXscKP4XsG\n- 9njHDh4WYorTBdzzxSg_\n 659 \N 187.149.105.232 9c02c4b7-37da-463a-82c0-6cb3a0d93073 2020-10-30 01:19:46.383982 44222 3282 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1141\namount: !ruby/object:BigDecimal 18:0.769E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.769E3\nstatus: 0\ndate_sale: 2020-10-29\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-798\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 7646cba6-cb41-442b-a1ea-b71ed955824d 2020-10-30 01:21:47.823555 44223 2265 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.91.88 7646cba6-cb41-442b-a1ea-b71ed955824d 2020-10-30 01:21:47.854889 44224 3282 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 c2fc0f7e-a7b9-4f4f-8b16-65811209ee34 2020-10-30 01:25:45.101809 44225 4352 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1141\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.769E3\nmove_type: '1'\nsale_id: 3282\ncardnumber: 4212\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-798\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-798 189.186.91.88 c2fc0f7e-a7b9-4f4f-8b16-65811209ee34 2020-10-30 01:25:45.123079 44226 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-29 20:36:38.487567000 Z\n- &1 2020-10-30 00:54:28.349501000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-30 01:45:15.921488007 Z\nsign_in_count:\n- 2021\n- 2022\n 4044 \N 189.186.91.88 75f380bc-c795-446e-8900-547b21e21072 2020-10-30 01:45:15.947533 44227 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MR25Pkt78oqgzG2AGH2w\n- Yu9MQsV96yAS25sQYUMW\n 4045 \N 189.186.91.88 75f380bc-c795-446e-8900-547b21e21072 2020-10-30 01:45:15.97292 44228 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-29 22:51:52.588744000 Z\n- &1 2020-10-30 01:19:46.360628000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-30 01:56:57.663368094 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140686\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147131368\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147131368\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\nsign_in_count:\n- 329\n- 330\n 660 \N 187.149.136.226 f7ab35de-0556-490d-84b2-8b1aa001829d 2020-10-30 01:56:57.670359 44230 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-29 23:25:05.007126000 Z\n- &1 2020-10-30 01:19:36.725404000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-30 01:59:47.964265638 Z\nsign_in_count:\n- 322\n- 323\n 647 \N 189.186.91.88 720d4548-ff85-47b6-ac05-ae1efe3f38fa 2020-10-30 01:59:47.970487 44231 18 User \N \N 18 User \N update ---\nunique_session_id:\n- uh7GxhKXs8jPypsJ3tna\n- N152dVQV51uMw1Asspjc\n 648 \N 189.186.91.88 720d4548-ff85-47b6-ac05-ae1efe3f38fa 2020-10-30 01:59:48.241155 44232 1166 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1142\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1368E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.1392E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2892E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.136.226 b2426bf3-3c98-490d-b45b-d6b6b7beb670 2020-10-30 02:04:15.779164 44233 1142 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.136.226 b2426bf3-3c98-490d-b45b-d6b6b7beb670 2020-10-30 02:04:15.795886 44234 3283 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1141\namount: !ruby/object:BigDecimal 18:0.1919E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1919E4\nstatus: 0\ndate_sale: 2020-10-29\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-799\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 30cd4bf4-21c8-4329-9a11-2918b693675b 2020-10-30 02:05:34.724501 44235 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.15E2\n 10 \N 189.186.91.88 30cd4bf4-21c8-4329-9a11-2918b693675b 2020-10-30 02:05:34.752741 44236 1958 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.91.88 30cd4bf4-21c8-4329-9a11-2918b693675b 2020-10-30 02:05:34.784383 44237 3283 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 248ab801-7e6b-495b-ba0a-ce42b6c3ba31 2020-10-30 02:05:46.041632 44238 4353 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1141\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1919E4\nmove_type: '1'\nsale_id: 3283\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-799\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1225'\n 1 movimiento de efectivo por venta con folio PV3-V-799 189.186.91.88 248ab801-7e6b-495b-ba0a-ce42b6c3ba31 2020-10-30 02:05:46.065031 44239 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-28 18:07:21.964869000 Z\n- &1 2020-10-29 19:14:29.125834000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-30 02:09:24.007688794 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140686\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\nsign_in_count:\n- 677\n- 678\n 1359 \N 187.149.136.226 093d19a5-391a-450f-8bfb-99ca41cbc146 2020-10-30 02:09:24.014847 44240 2 User \N \N 2 User \N update ---\nunique_session_id:\n- RkPq2FBV-yGRkCRnMKDi\n- UhMqAZKi6K79fes89yFi\n 1360 \N 187.149.136.226 093d19a5-391a-450f-8bfb-99ca41cbc146 2020-10-30 02:09:24.033721 44241 1143 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1392E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1392.0 187.149.136.226 87ab5a69-34bd-4888-b534-8c3a34523ed4 2020-10-30 02:09:41.263739 44242 3284 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1143\namount: !ruby/object:BigDecimal 18:0.2798E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2798E4\nstatus: 0\ndate_sale: 2020-10-29\nsaletype: 1\nseller_id: 28\nsale_code: PV1-V-1565\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 c0c6b79e-6324-478a-a936-5aec027a45d4 2020-10-30 02:11:15.199265 44243 2355 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 c0c6b79e-6324-478a-a936-5aec027a45d4 2020-10-30 02:11:15.224417 44244 2369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.136.226 c0c6b79e-6324-478a-a936-5aec027a45d4 2020-10-30 02:11:15.246608 44245 3284 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 9ee069ce-4e62-4cf4-baa2-ff2f2db96e18 2020-10-30 02:11:41.528596 44246 4354 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1143\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.2798E4\nmove_type: '1'\nsale_id: 3284\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1565\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: Sam\n 1 movimiento de efectivo por venta con folio PV1-V-1565 187.149.136.226 9ee069ce-4e62-4cf4-baa2-ff2f2db96e18 2020-10-30 02:11:41.548153 44247 1167 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1143\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2798E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1392E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1392E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.136.226 fbf93317-d340-491c-9e2b-9bfffa36115c 2020-10-30 02:15:01.898131 44248 1143 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.136.226 fbf93317-d340-491c-9e2b-9bfffa36115c 2020-10-30 02:15:01.913084 44249 1168 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1141\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.9883E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.5598E4\ncash_fund: !ruby/object:BigDecimal 18:0.841E3\nphysical_cash: !ruby/object:BigDecimal 18:0.6439E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 99e3d117-d8c2-483e-8c4e-0c43a4f5fc50 2020-10-30 02:18:43.700381 44250 1141 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 99e3d117-d8c2-483e-8c4e-0c43a4f5fc50 2020-10-30 02:18:43.713448 44251 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-29 19:14:29.125834000 Z\n- &1 2020-10-30 02:09:24.007688000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-30 17:01:55.766549560 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140686\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\nsign_in_count:\n- 678\n- 679\n 1361 \N 187.149.136.226 c5e168e8-7baf-4b3b-b5f8-b2abfe2da4f3 2020-10-30 17:01:55.795714 44252 2 User \N \N 2 User \N update ---\nunique_session_id:\n- UhMqAZKi6K79fes89yFi\n- jWryWFzzAvDmwJji8Ek8\n 1362 \N 187.149.136.226 c5e168e8-7baf-4b3b-b5f8-b2abfe2da4f3 2020-10-30 17:01:55.82064 44253 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-30 02:09:24.007688000 Z\n- &1 2020-10-30 17:01:55.766549000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-30 17:19:05.913449323 Z\nsign_in_count:\n- 679\n- 680\n 1363 \N 187.149.136.226 dc1b928e-163f-4045-ae52-7055ac84c0f6 2020-10-30 17:19:05.919128 44254 2 User \N \N 2 User \N update ---\nunique_session_id:\n- jWryWFzzAvDmwJji8Ek8\n- y2QbZZQbMWt9wUTsp1-s\n 1364 \N 187.149.136.226 dc1b928e-163f-4045-ae52-7055ac84c0f6 2020-10-30 17:19:05.934081 44255 1144 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1392E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1392.0 187.149.136.226 325e0132-25c5-4210-998c-6c71d14a6039 2020-10-30 17:19:21.217713 44256 4355 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1144\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2879\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1372 187.149.136.226 ef9fde6c-fe04-4712-bd35-f44c017e579f 2020-10-30 17:20:05.118271 44257 4356 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1144\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.889E3\nmove_type: '1'\nsale_id: 3077\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.889E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1472 187.149.136.226 29af7ea5-3049-4d60-ba27-e6b4d9442520 2020-10-30 17:44:59.115411 44258 3077 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.136.226 dbed77e0-a4f7-48b5-8b31-02e0fb0e7bdd 2020-10-30 17:44:59.981543 44259 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-30 01:19:36.725404000 Z\n- &1 2020-10-30 01:59:47.964265000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-30 18:49:09.648045018 Z\nsign_in_count:\n- 323\n- 324\n 649 \N 189.186.91.88 0993331e-6518-4d83-a2c1-fcf84e82ff07 2020-10-30 18:49:09.653775 44260 18 User \N \N 18 User \N update ---\nunique_session_id:\n- N152dVQV51uMw1Asspjc\n- w3iN-1mtFfQdRCJRECPw\n 650 \N 189.186.91.88 0993331e-6518-4d83-a2c1-fcf84e82ff07 2020-10-30 18:49:09.669605 44261 1145 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.841E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 841.0 189.186.91.88 55db9160-539c-439f-954d-35326dfe20f2 2020-10-30 18:54:00.24063 44262 3285 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1145\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-10-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-800\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 90c4a22f-e89a-4bc7-aa2b-9952b63058a8 2020-10-30 19:01:30.101065 44263 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 50 \N 189.186.91.88 90c4a22f-e89a-4bc7-aa2b-9952b63058a8 2020-10-30 19:01:30.130125 44264 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-30 01:19:46.360628000 Z\n- &1 2020-10-30 01:56:57.663368000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-30 19:01:47.365651235 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147131368\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\nsign_in_count:\n- 330\n- 331\n 662 \N 187.149.136.226 921b7287-b790-4b29-8d7f-89d7f7e2a0a6 2020-10-30 19:01:47.372887 44265 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 4LhVtCuXxWCzkdz6NYYX\n- xky_xX9QHvcHs6uUFr2X\n 663 \N 187.149.136.226 921b7287-b790-4b29-8d7f-89d7f7e2a0a6 2020-10-30 19:01:47.38903 44266 3285 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-800 cancelada. 189.186.91.88 670b33d3-f4b4-48a9-94a0-2539f9f323ec 2020-10-30 19:02:03.009729 44267 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.1E2\n 51 \N 189.186.91.88 670b33d3-f4b4-48a9-94a0-2539f9f323ec 2020-10-30 19:02:03.033705 44268 3286 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1145\namount: !ruby/object:BigDecimal 18:0.1998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1998E4\nstatus: 0\ndate_sale: 2020-10-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-801\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 cefcb977-3b58-4262-a281-3fc668f3fa8a 2020-10-30 19:02:22.188292 44269 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.8E1\n 52 \N 189.186.91.88 cefcb977-3b58-4262-a281-3fc668f3fa8a 2020-10-30 19:02:22.226529 44270 3286 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 3c34daa3-63da-471f-be90-085b518afc79 2020-10-30 19:04:46.868549 44271 4357 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1145\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1998E4\nmove_type: '1'\nsale_id: 3286\ncardnumber: 5245\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-801\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-801 189.186.91.88 3c34daa3-63da-471f-be90-085b518afc79 2020-10-30 19:04:46.890878 44272 3287 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1144\namount: !ruby/object:BigDecimal 18:0.18124E3\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.188E3\nstatus: 0\ndate_sale: 2020-10-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1566\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 7441b222-8a60-429c-bd8c-133af5ef17f3 2020-10-30 19:43:10.863763 44273 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E2\n- !ruby/object:BigDecimal 18:0.39E2\n 21 \N 187.149.136.226 7441b222-8a60-429c-bd8c-133af5ef17f3 2020-10-30 19:43:10.895084 44274 2387 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.136.226 7441b222-8a60-429c-bd8c-133af5ef17f3 2020-10-30 19:43:10.917285 44275 3287 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 be76d79f-2d3a-4450-a809-c92359a4c875 2020-10-30 19:43:15.508984 44276 4358 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1144\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.188E3\nmove_type: '1'\nsale_id: 3287\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1566\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.188E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1566 187.149.136.226 be76d79f-2d3a-4450-a809-c92359a4c875 2020-10-30 19:43:15.531978 44450 21 User \N \N 21 User \N update ---\nunique_session_id:\n- RyChrxBJp4yNP7oj-XW4\n- cT9fDg5EVhsCJuDjVt6E\n 648 \N 200.68.134.238 463ca729-33e7-4c4b-92b5-ba89257a5448 2020-11-01 21:15:51.321931 44277 423 Customer \N \N 18 User \N create ---\nnick_name: 'MARITZA '\nphone: "(667) 344-9928"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARITZA fue registrado. 189.186.91.88 3fc3a3f5-2032-4daf-8335-2b856d2dfc9d 2020-10-30 21:04:04.420506 44278 3288 Sale \N \N 18 User \N create ---\ncustomer_id: 423\nuser_id: 18\nopen_cash_register_id: 1145\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-10-30\nsaletype: 2\nseller_id: 12\nsale_code: PV3-V-802\nexpiration_date: 2020-12-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 a5de86e3-ddb4-44c6-aa76-71c6c7ab09d6 2020-10-30 21:04:21.689219 44279 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 11 \N 189.186.91.88 a5de86e3-ddb4-44c6-aa76-71c6c7ab09d6 2020-10-30 21:04:21.714423 44280 4359 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1145\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3288\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-802\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-802 189.186.91.88 e733c574-6285-4811-8d6b-332d2dba1f0c 2020-10-30 21:04:44.430266 44281 4359 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1145\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3288\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-802\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.91.88 fe626f37-de73-4f08-b0d7-9b2225dee822 2020-10-30 21:05:21.934743 44282 4360 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1145\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 3288\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-802\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-802 189.186.91.88 5d6cf4c8-ce1f-446e-bca1-2dc29f7d316d 2020-10-30 21:05:33.847358 44283 3288 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 614f8bcd-d71f-4d58-990c-86e65a00cb4f 2020-10-30 21:05:35.766588 44284 31 Seller \N \N 18 User \N create ---\npointsale_id: 3\nname: NAYELI\nlast_name: BELTRAN\nstatus: 1\n 1 El vendedor NAYELI BELTRAN fue registrado. 189.186.91.88 dc2d56fd-bb90-441e-a4fe-c488f8ffcfcf 2020-10-30 21:10:30.429291 44285 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-30 01:56:57.663368000 Z\n- &1 2020-10-30 19:01:47.365651000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-30 21:13:45.030570597 Z\nsign_in_count:\n- 331\n- 332\n 664 \N 187.149.136.226 f8cd944a-db85-433f-bf59-903cea17e0f3 2020-10-30 21:13:45.036179 44286 1 User \N \N 1 User \N update ---\nunique_session_id:\n- xky_xX9QHvcHs6uUFr2X\n- TSVe9R8iqZBpFb7CuE4Y\n 665 \N 187.149.136.226 f8cd944a-db85-433f-bf59-903cea17e0f3 2020-10-30 21:13:45.04932 44287 3289 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1145\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-10-30\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-803\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 a3f133bf-ea24-42aa-bfcd-d588f4a19264 2020-10-30 23:07:48.85938 44288 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 53 \N 189.186.91.88 a3f133bf-ea24-42aa-bfcd-d588f4a19264 2020-10-30 23:07:48.885382 44289 3289 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 92cfea49-6047-4848-92a7-14460fe9d741 2020-10-30 23:09:29.417256 44290 4361 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1145\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3289\ncardnumber: 522\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-803\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-803 189.186.91.88 92cfea49-6047-4848-92a7-14460fe9d741 2020-10-30 23:09:29.438366 44291 4362 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1054\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2905\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '585'\n 1 \N 189.186.91.88 dc4e07f4-862f-46e5-9136-57321f1ebf04 2020-10-30 23:28:24.694629 44292 2905 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 dc4e07f4-862f-46e5-9136-57321f1ebf04 2020-10-30 23:28:24.722197 44293 4362 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 1054\n- 1145\n 2 movimiento de efectivo por venta con folio PV1-V-1381 189.186.91.88 dc4e07f4-862f-46e5-9136-57321f1ebf04 2020-10-30 23:28:24.736217 44294 3290 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1144\namount: !ruby/object:BigDecimal 18:0.405562E4\ntax: !ruby/object:BigDecimal 18:0.4138E2\ndiscount: !ruby/object:BigDecimal 18:0.599E3\ntotal: !ruby/object:BigDecimal 18:0.3498E4\nstatus: 0\ndate_sale: 2020-10-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1567\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 f81eb7a8-7ec2-45e0-98fe-499dcfa3a08c 2020-10-30 23:29:09.13419 44295 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.136.226 f81eb7a8-7ec2-45e0-98fe-499dcfa3a08c 2020-10-30 23:29:09.166776 44296 2448 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 4 \N 187.149.136.226 f81eb7a8-7ec2-45e0-98fe-499dcfa3a08c 2020-10-30 23:29:09.191436 44297 253 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.136.226 f81eb7a8-7ec2-45e0-98fe-499dcfa3a08c 2020-10-30 23:29:09.215462 44298 3290 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 fb87acbf-7d71-4897-b1bf-f9f456b8e2e7 2020-10-30 23:29:15.360288 44341 1146 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.74E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 740.0 189.186.91.88 3319a8b5-e8fa-4aa9-a34d-008ecc4e6fa3 2020-10-31 19:22:06.523242 44774 2550 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.136.226 0812c92b-e68d-4270-9907-82e20c759820 2020-11-04 00:05:33.330367 44299 4363 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1144\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 3290\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1567\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1567 187.149.136.226 fb87acbf-7d71-4897-b1bf-f9f456b8e2e7 2020-10-30 23:29:15.383189 44300 4364 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1144\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3198E4\nmove_type: '1'\nsale_id: 3290\ncardnumber: 4804\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1567\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1567 187.149.136.226 f1e2dd5a-0b0b-4867-b036-87daca9acbcd 2020-10-30 23:29:30.119397 44301 346 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1144\nquantity: !ruby/object:BigDecimal 18:0.151E4\nstatus: 1\nobservations: electrico\nexpense_date: 2020-10-30\nexpense_code: PV1-E-240\n 1 Egreso por 1510.0 registrado 187.149.136.226 183dcacf-4214-417c-bb49-234eef440f90 2020-10-31 00:45:14.177834 44302 4365 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1144\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.151E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 346\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.136.226 183dcacf-4214-417c-bb49-234eef440f90 2020-10-31 00:45:14.204356 44303 347 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1144\nquantity: !ruby/object:BigDecimal 18:0.18E3\nstatus: 1\nobservations: 6 HORAS EXTRA ROCIO\nexpense_date: 2020-10-30\nexpense_code: PV1-E-241\n 1 Egreso por 180.0 registrado 187.149.136.226 8a678c63-f6e6-4920-9246-3aefbdf9fa6e 2020-10-31 00:45:39.434872 44304 4366 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1144\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.18E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 347\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.136.226 8a678c63-f6e6-4920-9246-3aefbdf9fa6e 2020-10-31 00:45:39.459673 44305 3291 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1145\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-10-30\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-804\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 9eaa23f3-c2dc-4bd4-af50-4efcdaec21e9 2020-10-31 01:26:04.711978 44306 1900 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.91.88 9eaa23f3-c2dc-4bd4-af50-4efcdaec21e9 2020-10-31 01:26:04.757645 44307 3292 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1144\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-10-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1568\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 14050212-3ed0-4eee-8c5d-75e19ab5672d 2020-10-31 01:26:07.637099 44308 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 37 \N 187.149.136.226 14050212-3ed0-4eee-8c5d-75e19ab5672d 2020-10-31 01:26:07.670901 44309 3292 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 a598c1cb-5fbf-4be5-8427-d522ac7cda7f 2020-10-31 01:26:46.87284 44310 4367 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1144\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3292\ncardnumber: 69\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1568\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1568 187.149.136.226 a598c1cb-5fbf-4be5-8427-d522ac7cda7f 2020-10-31 01:26:46.905724 44311 3291 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 07cfb05e-5200-47d1-ba3c-41d88a4a3fb8 2020-10-31 01:27:08.575675 44312 4368 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1145\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 3291\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-804\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-804 189.186.91.88 07cfb05e-5200-47d1-ba3c-41d88a4a3fb8 2020-10-31 01:27:08.59756 44313 424 Customer \N \N 18 User \N create ---\nnick_name: CONSUELO\nphone: "(667) 151-7796"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CONSUELO fue registrado. 189.186.91.88 0cc31c69-ff36-4797-b91d-8e77357bf633 2020-10-31 01:28:40.950913 44314 3293 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1144\namount: !ruby/object:BigDecimal 18:0.4396E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4396E4\nstatus: 0\ndate_sale: 2020-10-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1569\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 0a4b8c7c-be7d-4e18-97b0-b3fec35cd472 2020-10-31 01:30:08.744808 44315 1158 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 187.149.136.226 0a4b8c7c-be7d-4e18-97b0-b3fec35cd472 2020-10-31 01:30:08.827144 44316 2241 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.136.226 0a4b8c7c-be7d-4e18-97b0-b3fec35cd472 2020-10-31 01:30:08.854761 44317 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.136.226 0a4b8c7c-be7d-4e18-97b0-b3fec35cd472 2020-10-31 01:30:08.884176 44318 2369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.136.226 0a4b8c7c-be7d-4e18-97b0-b3fec35cd472 2020-10-31 01:30:08.921913 44319 3293 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 733232bc-0c9b-45f4-b146-0b814cb091b5 2020-10-31 01:30:17.187652 44362 2042 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 13 \N 189.186.91.88 d26c8c64-196f-45d4-8ed0-d3bee2b634a0 2020-10-31 20:55:49.50521 44320 4369 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1144\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4396E4\nmove_type: '1'\nsale_id: 3293\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1569\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.45E4\nchange: !ruby/object:BigDecimal 18:0.104E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1569 187.149.136.226 733232bc-0c9b-45f4-b146-0b814cb091b5 2020-10-31 01:30:17.208649 44321 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-30 19:01:47.365651000 Z\n- &1 2020-10-30 21:13:45.030570000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-31 01:32:41.195288683 Z\nsign_in_count:\n- 332\n- 333\n 666 \N 187.149.136.226 45fcaf54-7cad-49e6-99fb-089aa361e05b 2020-10-31 01:32:41.204678 44322 1 User \N \N 1 User \N update ---\nunique_session_id:\n- TSVe9R8iqZBpFb7CuE4Y\n- XLYGPKpPmC5AgLzjBv3w\n 667 \N 187.149.136.226 45fcaf54-7cad-49e6-99fb-089aa361e05b 2020-10-31 01:32:41.219694 44323 448 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-126\namount: !ruby/object:BigDecimal 18:0.4797E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4797E4\nobservations: ''\npurchase_date: 2020-10-30\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-126 por $ 4797.0 MXN creada. 189.186.91.88 9e1d9f25-0657-45ca-90da-ecf45047c62b 2020-10-31 01:37:26.879061 44324 2506 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1475\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 9e1d9f25-0657-45ca-90da-ecf45047c62b 2020-10-31 01:37:26.907421 44325 3294 Sale \N \N 18 User \N create ---\ncustomer_id: 424\nuser_id: 18\nopen_cash_register_id: 1145\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-10-30\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-805\nexpiration_date: 2020-12-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 dcd4ed16-b3ec-4409-ab40-2e5c9b36b455 2020-10-31 01:38:09.762252 44326 2506 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.91.88 dcd4ed16-b3ec-4409-ab40-2e5c9b36b455 2020-10-31 01:38:09.791603 44327 4370 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1145\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 3294\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-805\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-805 189.186.91.88 4b650e70-0ce7-4602-9a87-6620d63250ab 2020-10-31 01:38:18.101557 44328 3294 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 702ac847-716a-4010-ae5d-8522ee196506 2020-10-31 01:38:20.197229 44329 1169 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1145\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.6396E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.74E3\nphysical_cash: !ruby/object:BigDecimal 18:0.374E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 d792d27c-e31f-4abf-bf98-0daf27dc1c38 2020-10-31 02:03:58.837707 44330 1145 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 d792d27c-e31f-4abf-bf98-0daf27dc1c38 2020-10-31 02:03:58.851846 44331 1170 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1144\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1067E5\namount_out: !ruby/object:BigDecimal 18:0.169E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.45E4\ncash_fund: !ruby/object:BigDecimal 18:0.1175E4\nphysical_cash: !ruby/object:BigDecimal 18:0.5675E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.136.226 cc17218c-73c9-4704-96d7-6b23435974ec 2020-10-31 02:05:49.708423 44332 1144 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.136.226 cc17218c-73c9-4704-96d7-6b23435974ec 2020-10-31 02:05:49.720344 44333 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-30 21:13:45.030570000 Z\n- &1 2020-10-31 01:32:41.195288000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-31 02:27:59.206564078 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945853\n mask_addr: 4294967295\nsign_in_count:\n- 333\n- 334\n 668 \N 200.68.180.125 be59ad24-7d8b-4f9b-b4c3-69e0029fed41 2020-10-31 02:27:59.213426 44334 1 User \N \N 1 User \N update ---\nunique_session_id:\n- XLYGPKpPmC5AgLzjBv3w\n- W5Q2EheMdJw9z6wr3xZi\n 669 \N 200.68.180.125 be59ad24-7d8b-4f9b-b4c3-69e0029fed41 2020-10-31 02:27:59.228125 44335 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-30 00:54:28.349501000 Z\n- &1 2020-10-30 01:45:15.921488000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-31 04:02:12.868103745 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535512\n mask_addr: 4294967295\nsign_in_count:\n- 2022\n- 2023\n 4046 \N 177.228.101.216 5f533114-2030-4c15-807a-db79d9266aac 2020-10-31 04:02:12.874993 44336 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Yu9MQsV96yAS25sQYUMW\n- 35CrssPBw4oxnow1LsU6\n 4047 \N 177.228.101.216 5f533114-2030-4c15-807a-db79d9266aac 2020-10-31 04:02:12.893388 44337 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-31 01:32:41.195288000 Z\n- &1 2020-10-31 02:27:59.206564000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-31 05:02:48.678264497 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945853\n mask_addr: 4294967295\nsign_in_count:\n- 334\n- 335\n 670 \N 200.68.180.125 fac78f94-8c5b-4913-a94f-b9d923e19efc 2020-10-31 05:02:48.685083 44338 1 User \N \N 1 User \N update ---\nunique_session_id:\n- W5Q2EheMdJw9z6wr3xZi\n- rHUWqbvk3dtqR8ivnbxR\n 671 \N 200.68.180.125 fac78f94-8c5b-4913-a94f-b9d923e19efc 2020-10-31 05:02:48.699858 44339 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-10-25 20:49:27.519310000 Z\n- &1 2020-10-26 19:34:03.989217000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-31 19:21:53.720031693 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147109126\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 317\n- 318\n 637 \N 189.186.91.88 10e572d0-81a0-4fe8-9a58-36f84b0810c3 2020-10-31 19:21:53.748658 44340 21 User \N \N 21 User \N update ---\nunique_session_id:\n- FoLTfDYY_zCAdZFy9SzV\n- p45691FRrn4-7DXtbbxJ\n 638 \N 189.186.91.88 10e572d0-81a0-4fe8-9a58-36f84b0810c3 2020-10-31 19:21:53.771703 44405 1482 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001482'\n 2 \N 187.149.136.226 17b66ee4-4af7-4cba-91a9-8f523f7eecab 2020-11-01 02:08:12.02992 44342 3295 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1146\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-10-31\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-806\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 86106e12-0135-4600-aaf9-57606439e24e 2020-10-31 19:24:16.264187 44343 2378 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.15E2\n 5 \N 189.186.91.88 86106e12-0135-4600-aaf9-57606439e24e 2020-10-31 19:24:16.298638 44344 3295 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 6583c237-bcc6-45b7-b5ca-e34a090b9db8 2020-10-31 19:24:22.334762 44345 4371 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1146\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 3295\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-806\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-806 189.186.91.88 6583c237-bcc6-45b7-b5ca-e34a090b9db8 2020-10-31 19:24:22.360776 44346 3296 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1146\namount: !ruby/object:BigDecimal 18:0.379E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.379E3\nstatus: 0\ndate_sale: 2020-10-31\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-807\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 4914f977-a9a5-43f0-979c-d9cced6260df 2020-10-31 19:25:33.695042 44347 2401 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.91.88 4914f977-a9a5-43f0-979c-d9cced6260df 2020-10-31 19:25:33.736707 44348 3296 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 18011dbf-c9ff-4227-b4ff-d7c2a93cc983 2020-10-31 19:26:21.815185 44349 4372 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1146\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.379E3\nmove_type: '1'\nsale_id: 3296\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-807\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.379E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-807 189.186.91.88 18011dbf-c9ff-4227-b4ff-d7c2a93cc983 2020-10-31 19:26:21.835822 44350 4373 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1146\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 3288\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-802 189.186.91.88 2354a6e5-6cc0-4a0d-918a-69a9178d943f 2020-10-31 19:39:03.096984 44351 3288 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 944cad8e-63df-4631-994d-5d2cb8cf2d15 2020-10-31 19:39:04.605678 44352 30 User \N \N 30 User \N update ---\nlast_sign_in_at:\n- 2020-10-26 00:15:49.943749000 Z\n- &1 2020-10-26 21:53:21.694687000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-31 19:58:00.702512229 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147109126\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 13\n- 14\n 28 \N 189.186.91.88 c7bdd1a8-6028-422e-bfa8-c8d03b2848b7 2020-10-31 19:58:00.709549 44353 30 User \N \N 30 User \N update ---\nunique_session_id:\n- W6ye_osfx1ZsHq6n9ZR1\n- myj_NHseC__HM8AKSyUD\n 29 \N 189.186.91.88 c7bdd1a8-6028-422e-bfa8-c8d03b2848b7 2020-10-31 19:58:00.72631 44354 3297 Sale \N \N 21 User \N create ---\ncustomer_id: 424\nuser_id: 21\nopen_cash_register_id: 1146\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-10-31\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-808\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 4a68d022-2e95-4b07-84b2-6250cf229a7f 2020-10-31 20:55:01.388855 44355 2042 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 12 \N 189.186.91.88 4a68d022-2e95-4b07-84b2-6250cf229a7f 2020-10-31 20:55:01.41905 44356 3297 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 b6b9bed5-6389-4d91-a270-7077d36d256f 2020-10-31 20:55:20.574663 44357 4374 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1146\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 3297\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-808\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CAMBIO\n 1 movimiento de efectivo por venta con folio PV3-V-808 189.186.91.88 b6b9bed5-6389-4d91-a270-7077d36d256f 2020-10-31 20:55:20.602888 44358 4374 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1146\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 3297\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-808\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CAMBIO\n 2 \N 189.186.91.88 92a6fbf1-4a11-4cae-aa37-3c8bc0861429 2020-10-31 20:55:27.746673 44359 4375 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1146\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 3297\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-808\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CAMBIO\n 1 movimiento de efectivo por venta con folio PV3-V-808 189.186.91.88 dfcff9f0-57e4-4bf9-8aa1-12b63e0bca21 2020-10-31 20:55:39.227993 44360 3297 Sale \N \N 21 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-808 cancelada. 189.186.91.88 d26c8c64-196f-45d4-8ed0-d3bee2b634a0 2020-10-31 20:55:49.449094 44361 4375 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1146\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 3297\ncardnumber: 1234\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-808\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CAMBIO\n 2 \N 189.186.91.88 d26c8c64-196f-45d4-8ed0-d3bee2b634a0 2020-10-31 20:55:49.48038 44363 3298 Sale \N \N 21 User \N create ---\ncustomer_id: 424\nuser_id: 21\nopen_cash_register_id: 1146\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-10-31\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-809\nexpiration_date: 2020-12-05\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 27d4407e-6a94-4d9c-9f7b-ef1a19ffa8d1 2020-10-31 20:56:07.335355 44364 2042 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 14 \N 189.186.91.88 27d4407e-6a94-4d9c-9f7b-ef1a19ffa8d1 2020-10-31 20:56:07.364611 44365 4376 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1146\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 3298\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-809\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-809 189.186.91.88 db24e776-db2c-4ab1-b87d-4f4d9c54b43b 2020-10-31 20:56:26.770391 44366 3298 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 2dc339ed-e6f8-4f3e-8273-df2cd1530275 2020-10-31 20:56:28.682172 44367 3291 Sale \N \N 21 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-804 cancelada. 189.186.91.88 9f57544d-db9d-49a2-ad57-471955634a9d 2020-10-31 20:59:01.63698 44368 4377 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1146\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '0'\nsale_id: 3291\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-804\nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.91.88 9f57544d-db9d-49a2-ad57-471955634a9d 2020-10-31 20:59:01.663215 44369 1900 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.91.88 9f57544d-db9d-49a2-ad57-471955634a9d 2020-10-31 20:59:01.68602 44370 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-30 01:45:15.921488000 Z\n- &1 2020-10-31 04:02:12.868103000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-31 22:03:37.694208682 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535512\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535512\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945879\n mask_addr: 4294967295\nsign_in_count:\n- 2023\n- 2024\n 4048 \N 200.68.180.151 4fa42155-9da1-4974-8788-3fd8cd511349 2020-10-31 22:03:37.702788 44371 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 35CrssPBw4oxnow1LsU6\n- z8eBqhRpT69MzTUUvaaT\n 4049 \N 200.68.180.151 4fa42155-9da1-4974-8788-3fd8cd511349 2020-10-31 22:03:37.722053 44372 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-10-18 00:46:21.661638000 Z\n- &1 2020-10-24 18:06:00.539633000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-10-31 23:10:29.644838316 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183085869\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\nsign_in_count:\n- 191\n- 192\n 384 \N 187.149.136.226 89de9c4c-dd52-4a7d-a758-07d84f734d5f 2020-10-31 23:10:29.653232 44373 9 User \N \N 9 User \N update ---\nunique_session_id:\n- auXCRyzX8rFXnqy3uzMX\n- nyFhGstSv7bnFFiBLV4Z\n 385 \N 187.149.136.226 89de9c4c-dd52-4a7d-a758-07d84f734d5f 2020-10-31 23:10:29.67047 44374 1147 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.1175E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1175.0 187.149.136.226 68061822-6f4f-42fd-b90d-24092c5db854 2020-10-31 23:10:34.578819 44375 3299 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1147\namount: !ruby/object:BigDecimal 18:0.159E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.159E3\nstatus: 0\ndate_sale: 2020-10-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1570\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 8fd100be-bb3f-497e-8d33-1c40c8a45364 2020-10-31 23:10:57.325264 44376 2463 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.136.226 8fd100be-bb3f-497e-8d33-1c40c8a45364 2020-10-31 23:10:57.359411 44377 3299 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 675b9e6f-db2c-4bd4-986e-9254c3be8348 2020-10-31 23:11:01.331818 44378 4378 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1147\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.159E3\nmove_type: '1'\nsale_id: 3299\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1570\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.159E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1570 187.149.136.226 675b9e6f-db2c-4bd4-986e-9254c3be8348 2020-10-31 23:11:01.354744 44379 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-30 17:01:55.766549000 Z\n- &1 2020-10-30 17:19:05.913449000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-01 00:10:27.633806286 Z\nsign_in_count:\n- 680\n- 681\n 1365 \N 187.149.136.226 c181711c-954a-4aa2-81c3-e685cae32040 2020-11-01 00:10:27.653573 44380 2 User \N \N 2 User \N update ---\nunique_session_id:\n- y2QbZZQbMWt9wUTsp1-s\n- JDBkH47PF2a7s9gwy5Uz\n 1366 \N 187.149.136.226 c181711c-954a-4aa2-81c3-e685cae32040 2020-11-01 00:10:27.673366 44381 3300 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1147\namount: !ruby/object:BigDecimal 18:0.629E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.629E3\nstatus: 0\ndate_sale: 2020-10-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1571\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 68f7a164-ce5e-452c-941d-4f80a6094765 2020-11-01 00:13:49.942942 44382 2257 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.136.226 68f7a164-ce5e-452c-941d-4f80a6094765 2020-11-01 00:13:49.973463 44383 3300 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 ee0c6525-254e-45b7-85ed-cc73b01d8192 2020-11-01 00:13:55.04523 44384 4379 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1147\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.629E3\nmove_type: '1'\nsale_id: 3300\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1571\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.629E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1571 187.149.136.226 ee0c6525-254e-45b7-85ed-cc73b01d8192 2020-11-01 00:13:55.067924 44385 3301 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1146\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-10-31\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-810\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 7f0fff44-59d2-4756-81e3-beeabd9c609a 2020-11-01 00:37:07.456701 44386 2280 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 189.186.91.88 7f0fff44-59d2-4756-81e3-beeabd9c609a 2020-11-01 00:37:07.486627 44387 3301 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 91519fb1-0eec-46dc-926d-5912f4106113 2020-11-01 00:37:11.692805 44388 4380 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1146\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 3301\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-810\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-810 189.186.91.88 91519fb1-0eec-46dc-926d-5912f4106113 2020-11-01 00:37:11.714412 44389 4381 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1146\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 2991\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-645 189.186.91.88 eddfdf26-c6e2-4641-bcdb-cb995b80eb29 2020-11-01 01:44:43.810161 44390 2991 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.91.88 7120e4b7-345c-4984-b970-8ca25b76cd43 2020-11-01 01:47:23.707807 44391 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.8E1\n 54 \N 189.186.91.88 7120e4b7-345c-4984-b970-8ca25b76cd43 2020-11-01 01:47:23.741102 44392 4382 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1146\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 2957\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: CENT\n 1 movimiento de efectivo por venta con folio PV3-V-636 189.186.91.88 dd988503-a745-42d1-8684-d11d7ad43235 2020-11-01 01:47:51.029799 44393 2957 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 e8c0ced4-138e-401a-8085-0d234690a164 2020-11-01 01:47:53.307693 44394 348 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1147\nquantity: !ruby/object:BigDecimal 18:0.17E3\nstatus: 1\nobservations: comida\nexpense_date: 2020-10-31\nexpense_code: PV1-E-242\n 1 Egreso por 170.0 registrado 187.149.136.226 779ace94-a1e0-48bc-8544-06058bf84476 2020-11-01 01:57:29.13419 44395 4383 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1147\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.17E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 348\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.136.226 779ace94-a1e0-48bc-8544-06058bf84476 2020-11-01 01:57:29.160562 44396 1480 Product \N \N 2 User \N create ---\nsku: BLU-1480\nname: BLS-0145\ndescription: BLUSA NEGRA CON DESTELLOS DORADOS APECH\nprice_base: !ruby/object:BigDecimal 18:0.352E3\nprice_sale: !ruby/object:BigDecimal 18:0.889E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1480 fue creado. 187.149.136.226 a80a22db-c2b0-4b20-82ac-6fc2fe139c52 2020-11-01 02:04:55.507087 44397 1480 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001480'\n 2 \N 187.149.136.226 a80a22db-c2b0-4b20-82ac-6fc2fe139c52 2020-11-01 02:04:55.542465 44398 2507 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1480\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 a80a22db-c2b0-4b20-82ac-6fc2fe139c52 2020-11-01 02:04:55.58193 44399 349 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 1146\nquantity: !ruby/object:BigDecimal 18:0.8E3\nstatus: 1\nobservations: PAGO SEMANA NAYELI\nexpense_date: 2020-10-31\nexpense_code: PV3-E-45\n 1 Egreso por 800.0 registrado 189.186.91.88 fe8cd8a2-563f-4aa6-bc2e-061b0e190876 2020-11-01 02:05:49.009151 44400 4384 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1146\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 349\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.91.88 fe8cd8a2-563f-4aa6-bc2e-061b0e190876 2020-11-01 02:05:49.02874 44401 1481 Product \N \N 2 User \N create ---\nsku: BLU-1481\nname: BLS-0146\ndescription: CORSET BLANCO I TOO\nprice_base: !ruby/object:BigDecimal 18:0.435E3\nprice_sale: !ruby/object:BigDecimal 18:0.989E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1481 fue creado. 187.149.136.226 19a2bdc2-d12d-40f4-929a-49199a177c09 2020-11-01 02:06:27.292025 44402 1481 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001481'\n 2 \N 187.149.136.226 19a2bdc2-d12d-40f4-929a-49199a177c09 2020-11-01 02:06:27.321009 44403 2508 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1481\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 19a2bdc2-d12d-40f4-929a-49199a177c09 2020-11-01 02:06:27.347997 44404 1482 Product \N \N 2 User \N create ---\nsku: VES-1482\nname: VST-0120\ndescription: VESTIDO MOSTAZA PEGADO CON CINTO VALENTINE\nprice_base: !ruby/object:BigDecimal 18:0.352E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1482 fue creado. 187.149.136.226 17b66ee4-4af7-4cba-91a9-8f523f7eecab 2020-11-01 02:08:11.99054 44406 2509 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1482\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 17b66ee4-4af7-4cba-91a9-8f523f7eecab 2020-11-01 02:08:12.065546 44407 449 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-184\namount: !ruby/object:BigDecimal 18:0.4722E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4722E4\nobservations: ''\npurchase_date: 2020-10-31\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-184 por $ 4722.0 MXN creada. 187.149.136.226 cce2499e-23fd-4431-a089-d94351dac77f 2020-11-01 02:08:41.875714 44408 2507 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 cce2499e-23fd-4431-a089-d94351dac77f 2020-11-01 02:08:41.900942 44409 2508 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.136.226 cce2499e-23fd-4431-a089-d94351dac77f 2020-11-01 02:08:41.926716 44410 2509 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 cce2499e-23fd-4431-a089-d94351dac77f 2020-11-01 02:08:41.955238 44411 1171 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1146\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.4474E4\namount_out: !ruby/object:BigDecimal 18:0.1699E4\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.23E4\ncash_fund: !ruby/object:BigDecimal 18:0.922E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3222E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 60ca5160-08ef-43c7-a70e-f9f68483eda0 2020-11-01 02:10:12.313188 44412 1146 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 60ca5160-08ef-43c7-a70e-f9f68483eda0 2020-11-01 02:10:12.353153 44413 708 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-10-31\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 200.68.180.151 f5df7dfd-8179-4e08-8d85-6933b02671a6 2020-11-01 02:10:52.22707 44414 3302 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1147\namount: !ruby/object:BigDecimal 18:0.2777E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2777E4\nstatus: 0\ndate_sale: 2020-10-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1572\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 d39740b6-7589-4471-81c8-a9929ca50d5d 2020-11-01 02:11:19.657952 44415 2507 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.136.226 d39740b6-7589-4471-81c8-a9929ca50d5d 2020-11-01 02:11:19.686426 44416 2509 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.136.226 d39740b6-7589-4471-81c8-a9929ca50d5d 2020-11-01 02:11:19.710721 44417 2508 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.136.226 d39740b6-7589-4471-81c8-a9929ca50d5d 2020-11-01 02:11:19.780473 44418 3302 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 dd46a60f-4287-480b-8b4f-3c5122de768b 2020-11-01 02:12:52.457136 44419 4385 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1147\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.989E3\nmove_type: '1'\nsale_id: 3302\ncardnumber: 8518\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1572\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1572 187.149.136.226 dd46a60f-4287-480b-8b4f-3c5122de768b 2020-11-01 02:12:52.47956 44420 4386 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1147\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1788E4\nmove_type: '1'\nsale_id: 3302\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1572\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1788E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1572 187.149.136.226 b79ee940-84a1-4a21-afe2-20f05c02a121 2020-11-01 02:13:20.322505 44421 708 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-10-31\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.136.226 71b8341a-4c3e-4fed-acfe-4760d40c998d 2020-11-01 02:14:01.779171 44422 2510 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 971\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 71b8341a-4c3e-4fed-acfe-4760d40c998d 2020-11-01 02:14:01.81084 44423 3303 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1147\namount: !ruby/object:BigDecimal 18:0.879E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.28E3\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-10-31\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1573\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 fe1a29eb-036f-4c73-8cb1-7b335b3bbb31 2020-11-01 02:15:38.199428 44424 2510 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.136.226 fe1a29eb-036f-4c73-8cb1-7b335b3bbb31 2020-11-01 02:15:38.239122 44425 3303 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 74998904-bdc9-4f0f-811d-17df4fa22297 2020-11-01 02:15:41.771318 44426 4387 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1147\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 3303\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1573\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1573 187.149.136.226 74998904-bdc9-4f0f-811d-17df4fa22297 2020-11-01 02:15:41.793423 44427 1172 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1147\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4164E4\namount_out: !ruby/object:BigDecimal 18:0.17E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.118E4\nphysical_cash: !ruby/object:BigDecimal 18:0.418E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.136.226 98ea0269-c31e-4383-8b63-2f1bb96823e9 2020-11-01 02:22:20.364821 44428 1147 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.136.226 98ea0269-c31e-4383-8b63-2f1bb96823e9 2020-11-01 02:22:20.409299 44429 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-10-26 19:34:03.989217000 Z\n- &1 2020-10-31 19:21:53.720031000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-01 19:39:21.968995880 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 318\n- 319\n 639 \N 189.186.91.88 0cf096a4-f22b-4a66-8558-b1f40f398b8a 2020-11-01 19:39:21.998442 44430 21 User \N \N 21 User \N update ---\nunique_session_id:\n- p45691FRrn4-7DXtbbxJ\n- sygC7Uy6cwRSeVgRGoUX\n 640 \N 189.186.91.88 0cf096a4-f22b-4a66-8558-b1f40f398b8a 2020-11-01 19:39:22.02302 44431 1148 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.922E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 922.0 189.186.91.88 8d57323b-510d-4bba-8794-f0a41b3f3211 2020-11-01 19:39:59.259063 44432 3304 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1148\namount: !ruby/object:BigDecimal 18:0.249E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.249E3\nstatus: 0\ndate_sale: 2020-11-01\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-811\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 1ba6584f-5009-42a6-aa26-d6855f3014f5 2020-11-01 19:54:56.464959 44433 2437 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.91.88 1ba6584f-5009-42a6-aa26-d6855f3014f5 2020-11-01 19:54:56.503504 44434 3304 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 bdfb2b94-79e3-4edb-937f-56dc36f3852c 2020-11-01 19:55:16.046352 44435 4388 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1148\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.249E3\nmove_type: '1'\nsale_id: 3304\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-811\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-811 189.186.91.88 bdfb2b94-79e3-4edb-937f-56dc36f3852c 2020-11-01 19:55:16.085289 44436 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-31 04:02:12.868103000 Z\n- &1 2020-10-31 22:03:37.694208000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-01 20:52:04.073252236 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535512\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945879\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945879\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934047\n mask_addr: 4294967295\nsign_in_count:\n- 2024\n- 2025\n 4050 \N 200.68.134.95 ca426c37-4bfe-49d3-9ebd-b8264ff69a90 2020-11-01 20:52:04.081704 44437 4 User \N \N 4 User \N update ---\nunique_session_id:\n- z8eBqhRpT69MzTUUvaaT\n- KmHYKYbtLfcGaHzTzV_W\n 4051 \N 200.68.134.95 ca426c37-4bfe-49d3-9ebd-b8264ff69a90 2020-11-01 20:52:04.101842 44438 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-10-31 19:21:53.720031000 Z\n- &1 2020-11-01 19:39:21.968995000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-01 20:52:51.099380688 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934047\n mask_addr: 4294967295\nsign_in_count:\n- 319\n- 320\n 641 \N 200.68.134.95 b0184ab6-5669-4891-be3f-3a8493592a09 2020-11-01 20:52:51.106704 44439 21 User \N \N 21 User \N update ---\nunique_session_id:\n- sygC7Uy6cwRSeVgRGoUX\n- ufyZDssgPSYpS222si-F\n 642 \N 200.68.134.95 b0184ab6-5669-4891-be3f-3a8493592a09 2020-11-01 20:52:51.122222 44440 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-01 19:39:21.968995000 Z\n- &1 2020-11-01 20:52:51.099380000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-01 20:56:12.845325181 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934047\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934047\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 320\n- 321\n 643 \N 189.186.91.88 36dcf952-d0cc-425e-a191-9e7fb027006d 2020-11-01 20:56:12.854961 44441 21 User \N \N 21 User \N update ---\nunique_session_id:\n- ufyZDssgPSYpS222si-F\n- 2UYBy1Mf1cubtLQaUVjW\n 644 \N 189.186.91.88 36dcf952-d0cc-425e-a191-9e7fb027006d 2020-11-01 20:56:12.875721 44442 25 User \N \N 25 User \N update ---\nlast_sign_in_at:\n- 2020-10-07 21:41:09.000514000 Z\n- &1 2020-10-19 18:33:39.983483000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-01 20:57:44.505883542 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183121431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\nsign_in_count:\n- 97\n- 98\n 196 \N 189.186.227.197 500aa467-73f3-4069-8d99-466c1b6612c9 2020-11-01 20:57:44.51389 44443 25 User \N \N 25 User \N update ---\nunique_session_id:\n- YwsbZxegqAxt4Uxb9_zs\n- gWvRrezVvjRc1TBgkigv\n 197 \N 189.186.227.197 500aa467-73f3-4069-8d99-466c1b6612c9 2020-11-01 20:57:44.529175 44444 1149 OpenCashRegister \N \N 25 User \N create ---\ncash_register_id: 1\nuser_id: 25\ninitial_cash: !ruby/object:BigDecimal 18:0.118E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1180.0 200.68.134.95 2bb9ff77-ca04-4d69-9f70-736d809d2111 2020-11-01 21:00:09.161678 44445 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-30 01:59:47.964265000 Z\n- &1 2020-10-30 18:49:09.648045000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-01 21:09:00.746929009 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938421\n mask_addr: 4294967295\nsign_in_count:\n- 324\n- 325\n 651 \N 200.68.151.117 766bf4ab-1881-4ed3-b925-9dc723ce69b6 2020-11-01 21:09:00.75403 44446 18 User \N \N 18 User \N update ---\nunique_session_id:\n- w3iN-1mtFfQdRCJRECPw\n- FPiBDTU7Rd5mUmAiLnv6\n 652 \N 200.68.151.117 766bf4ab-1881-4ed3-b925-9dc723ce69b6 2020-11-01 21:09:00.769078 44447 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-01 20:52:51.099380000 Z\n- &1 2020-11-01 20:56:12.845325000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-01 21:11:09.461107990 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934047\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 321\n- 322\n 645 \N 189.186.91.88 788e52c8-d4bf-4e39-9199-4dcf402dc6e0 2020-11-01 21:11:09.469933 44448 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 2UYBy1Mf1cubtLQaUVjW\n- RyChrxBJp4yNP7oj-XW4\n 646 \N 189.186.91.88 788e52c8-d4bf-4e39-9199-4dcf402dc6e0 2020-11-01 21:11:09.489163 44449 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-01 20:56:12.845325000 Z\n- &1 2020-11-01 21:11:09.461107000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-01 21:15:51.292221770 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934190\n mask_addr: 4294967295\nsign_in_count:\n- 322\n- 323\n 647 \N 200.68.134.238 463ca729-33e7-4c4b-92b5-ba89257a5448 2020-11-01 21:15:51.300753 44451 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-01 21:11:09.461107000 Z\n- &1 2020-11-01 21:15:51.292221000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-01 21:20:11.802548618 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934190\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934190\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 323\n- 324\n 649 \N 189.186.91.88 ee7f60e0-c9bc-4cd5-9779-7dd52729dd4f 2020-11-01 21:20:11.811098 44452 21 User \N \N 21 User \N update ---\nunique_session_id:\n- cT9fDg5EVhsCJuDjVt6E\n- QDto8Pfz4s_D9YPy4h8d\n 650 \N 189.186.91.88 ee7f60e0-c9bc-4cd5-9779-7dd52729dd4f 2020-11-01 21:20:11.828705 44453 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-01 21:15:51.292221000 Z\n- &1 2020-11-01 21:20:11.802548000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-01 21:22:14.294384849 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934190\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934190\n mask_addr: 4294967295\nsign_in_count:\n- 324\n- 325\n 651 \N 200.68.134.238 fdd3add2-6cee-4d4e-b044-42db8409eb89 2020-11-01 21:22:14.302267 44454 21 User \N \N 21 User \N update ---\nunique_session_id:\n- QDto8Pfz4s_D9YPy4h8d\n- Qq19MCA-QNYQLAXRPuYk\n 652 \N 200.68.134.238 fdd3add2-6cee-4d4e-b044-42db8409eb89 2020-11-01 21:22:14.318733 44455 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-10-30 18:49:09.648045000 Z\n- &1 2020-11-01 21:09:00.746929000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-01 21:23:29.137160231 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938421\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938421\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 325\n- 326\n 653 \N 189.186.91.88 edc90ab8-0c82-48e6-b743-b176208c478c 2020-11-01 21:23:29.144989 44456 18 User \N \N 18 User \N update ---\nunique_session_id:\n- FPiBDTU7Rd5mUmAiLnv6\n- Ts8SJ6wyxi-JNis67WUA\n 654 \N 189.186.91.88 edc90ab8-0c82-48e6-b743-b176208c478c 2020-11-01 21:23:29.160786 44457 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-10-31 22:03:37.694208000 Z\n- &1 2020-11-01 20:52:04.073252000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-01 22:14:02.774637544 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945879\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934047\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934047\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945879\n mask_addr: 4294967295\nsign_in_count:\n- 2025\n- 2026\n 4052 \N 200.68.180.151 ca844024-f87d-467c-9bc5-4c14880855fc 2020-11-01 22:14:02.782445 44458 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KmHYKYbtLfcGaHzTzV_W\n- N4TLZ3pxgA33PgL2Hfuy\n 4053 \N 200.68.180.151 ca844024-f87d-467c-9bc5-4c14880855fc 2020-11-01 22:14:02.801366 44459 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-01 21:20:11.802548000 Z\n- &1 2020-11-01 21:22:14.294384000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-01 22:29:53.754033859 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934190\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934190\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\nsign_in_count:\n- 325\n- 326\n 653 \N 189.186.227.197 20497872-8041-4284-b1b4-d5148280d2cf 2020-11-01 22:29:53.761839 44460 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Qq19MCA-QNYQLAXRPuYk\n- 8Y297preKu2T9ACvsWH4\n 654 \N 189.186.227.197 20497872-8041-4284-b1b4-d5148280d2cf 2020-11-01 22:29:53.778572 44461 1173 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1148\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.249E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1171E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1171E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 51c12b6f-14d6-4171-ad0c-f8cda1f48275 2020-11-01 23:08:40.827613 44462 1148 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 51c12b6f-14d6-4171-ad0c-f8cda1f48275 2020-11-01 23:08:40.841905 44463 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-10-30 17:19:05.913449000 Z\n- &1 2020-11-01 00:10:27.633806000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-02 17:20:30.124432053 Z\nsign_in_count:\n- 681\n- 682\n 1367 \N 187.149.136.226 9f40a789-908a-4533-8332-88cbbe83a936 2020-11-02 17:20:30.16047 44464 2 User \N \N 2 User \N update ---\nunique_session_id:\n- JDBkH47PF2a7s9gwy5Uz\n- Mgzyz_QmoxGtmMyz_YbU\n 1368 \N 187.149.136.226 9f40a789-908a-4533-8332-88cbbe83a936 2020-11-02 17:20:30.184465 44465 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-31 02:27:59.206564000 Z\n- &1 2020-10-31 05:02:48.678264000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-02 18:47:15.059062062 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945853\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\nsign_in_count:\n- 335\n- 336\n 672 \N 187.149.136.226 c76ef256-e2d2-437c-b177-718cdb46831b 2020-11-02 18:47:15.079729 44466 1 User \N \N 1 User \N update ---\nunique_session_id:\n- rHUWqbvk3dtqR8ivnbxR\n- 4dAWEtzZeYbpeNRkUgsA\n 673 \N 187.149.136.226 c76ef256-e2d2-437c-b177-718cdb46831b 2020-11-02 18:47:15.110949 44467 1482 Product \N \N 1 User \N update ---\nname:\n- VST-0120\n- VST-0121\n 3 El producto VES-1482 fue modificado. 187.149.136.226 2d306762-110b-489e-aa2d-32c39e2bc15d 2020-11-02 18:48:46.228372 44468 1483 Product \N \N 2 User \N create ---\nsku: VES-1483\nname: VST-0122\ndescription: VESTIDO BLACK SHINE SILVER VALENTINE 8068\nprice_base: !ruby/object:BigDecimal 18:0.407E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1483 fue creado. 187.149.136.226 31367885-319a-4465-bffb-88b7912d01c4 2020-11-02 18:55:02.507779 44469 1483 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001483'\n 2 \N 187.149.136.226 31367885-319a-4465-bffb-88b7912d01c4 2020-11-02 18:55:02.547146 44470 2511 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1483\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 31367885-319a-4465-bffb-88b7912d01c4 2020-11-02 18:55:02.579612 44578 2523 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1495\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 a0594c34-a7af-4d31-b1c2-614084f3fa11 2020-11-03 19:38:16.199159 44471 1484 Product \N \N 2 User \N create ---\nsku: PAL-1484\nname: VST-0123\ndescription: PALAZZO SILVER VALENTINE 8057\nprice_base: !ruby/object:BigDecimal 18:0.561E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 9\nproduct_service_key: '01010101'\n 1 El producto PAL-1484 fue creado. 187.149.136.226 ff051426-992b-4b79-9a99-9294bf6846d2 2020-11-02 18:55:55.956479 44472 1484 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001484'\n 2 \N 187.149.136.226 ff051426-992b-4b79-9a99-9294bf6846d2 2020-11-02 18:55:55.98707 44473 2512 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1484\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 ff051426-992b-4b79-9a99-9294bf6846d2 2020-11-02 18:55:56.023865 44474 450 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-185\namount: !ruby/object:BigDecimal 18:0.4587E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4587E4\nobservations: ''\npurchase_date: 2020-11-02\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-185 por $ 4587.0 MXN creada. 187.149.136.226 54148a5b-5f68-407d-90a0-c6cae9545088 2020-11-02 19:06:10.46844 44475 2511 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 54148a5b-5f68-407d-90a0-c6cae9545088 2020-11-02 19:06:10.494304 44476 2512 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.136.226 54148a5b-5f68-407d-90a0-c6cae9545088 2020-11-02 19:06:10.530136 44477 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-01 21:22:14.294384000 Z\n- &1 2020-11-01 22:29:53.754033000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-02 19:06:31.862757828 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934190\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 326\n- 327\n 655 \N 189.186.91.88 a8883331-6da8-4262-8cbb-2ddd61efa5b0 2020-11-02 19:06:31.872783 44478 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 8Y297preKu2T9ACvsWH4\n- TFgy8otdNmQVzWwk8RYT\n 656 \N 189.186.91.88 a8883331-6da8-4262-8cbb-2ddd61efa5b0 2020-11-02 19:06:31.893175 44479 1150 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1171E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1171.0 189.186.91.88 f4143e53-84ed-4114-a8d0-0b8152ae11a4 2020-11-02 19:06:52.456308 44480 3305 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1150\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-02\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-812\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 551972d2-4d7c-40bd-9d55-0eed950decc9 2020-11-02 19:08:19.887852 44481 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 12 \N 189.186.91.88 551972d2-4d7c-40bd-9d55-0eed950decc9 2020-11-02 19:08:19.91488 44482 3305 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 cf00501b-207b-458a-ac6f-86a8740d4809 2020-11-02 19:08:30.003743 44483 4389 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1150\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 3305\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-812\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.18E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-812 189.186.91.88 cf00501b-207b-458a-ac6f-86a8740d4809 2020-11-02 19:08:30.047635 44484 1485 Product \N \N 2 User \N create ---\nsku: BLU-1485\nname: BLS-0146\ndescription: BLUSA TORNASOL APEACH 3521\nprice_base: !ruby/object:BigDecimal 18:0.33E3\nprice_sale: !ruby/object:BigDecimal 18:0.825E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1485 fue creado. 187.149.136.226 c73e2157-1dbf-4c2d-bd6a-cc55c000dfe1 2020-11-02 20:44:38.476569 44485 1485 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001485'\n 2 \N 187.149.136.226 c73e2157-1dbf-4c2d-bd6a-cc55c000dfe1 2020-11-02 20:44:38.502037 44486 2513 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1485\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 c73e2157-1dbf-4c2d-bd6a-cc55c000dfe1 2020-11-02 20:44:38.526895 44487 451 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-186\namount: !ruby/object:BigDecimal 18:0.99E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.99E3\nobservations: ''\npurchase_date: 2020-11-02\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-186 por $ 990.0 MXN creada. 187.149.136.226 7c62e561-7f1d-4068-991d-79c285c47a3c 2020-11-02 20:44:48.231594 44488 2513 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 7c62e561-7f1d-4068-991d-79c285c47a3c 2020-11-02 20:44:48.252098 44489 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-10-31 05:02:48.678264000 Z\n- &1 2020-11-02 18:47:15.059062000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-02 20:51:28.256218369 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945853\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\nsign_in_count:\n- 336\n- 337\n 674 \N 187.149.136.226 bd81e6fe-d48a-466e-8f29-cd4fe4a4ded8 2020-11-02 20:51:28.263391 44490 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 4dAWEtzZeYbpeNRkUgsA\n- cGNqtjyirwzUVZLbq4hX\n 675 \N 187.149.136.226 bd81e6fe-d48a-466e-8f29-cd4fe4a4ded8 2020-11-02 20:51:28.277891 44491 1485 Product \N \N 1 User \N update ---\nname:\n- BLS-0146\n- BLS-0147\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1485'\n is_parent: false\n sku: BLU-1485\n name: BLS-0147\n description: BLUSA TORNASOL APEACH 3521\n price_base: '330.0'\n price_sale: '825.0'\n img_product: 5AD71199-F179-42BA-9DF6-A17BB899A152.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001485'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-02 20:44:38.465562'\n updated_at: &12 2020-11-02 20:58:39.913388187 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1485'\n sku: BLU-1485\n name: BLS-0146\n description: BLUSA TORNASOL APEACH 3521\n price_base: '330.00'\n price_sale: '825.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-02 20:44:38.465562'\n updated_at: '2020-11-02 20:44:38.499538'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001485'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1485'\n type: *3\n value: 1485\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1485\n type: *7\n value: BLU-1485\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0147\n type: *8\n value: BLS-0147\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA TORNASOL APEACH 3521\n type: *6\n value: BLUSA TORNASOL APEACH 3521\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '330.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.33E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '825.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.825E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 5AD71199-F179-42BA-9DF6-A17BB899A152.jpeg\n type: *2\n value: 5AD71199-F179-42BA-9DF6-A17BB899A152.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001485'\n type: *2\n value: '0001485'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-02 20:44:38.465562'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 5AD71199-F179-42BA-9DF6-A17BB899A152.jpeg\n 3 El producto BLU-1485 fue modificado. 187.149.136.226 5485f9f0-f46b-46eb-b019-54f359cde56e 2020-11-02 20:58:39.988179 44608 21 User \N \N 21 User \N update ---\nunique_session_id:\n- MYB9STxKx4bzSwNRGytx\n- zVGjso9syyWCQQmnBXRP\n 662 \N 189.186.91.88 1e0b1c16-9dd4-4aad-9494-dd35dade6610 2020-11-03 20:24:06.303954 44775 2551 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.9E1\n 2 \N 187.149.136.226 0812c92b-e68d-4270-9907-82e20c759820 2020-11-04 00:05:33.349407 44492 3306 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1149\namount: !ruby/object:BigDecimal 18:0.825E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.825E3\nstatus: 0\ndate_sale: 2020-11-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1574\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 2c158bc5-5f52-4a05-a46d-54770609d6ad 2020-11-02 20:59:06.365801 44493 2513 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.136.226 2c158bc5-5f52-4a05-a46d-54770609d6ad 2020-11-02 20:59:06.391267 44494 3306 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 5a754a7d-976a-40ec-b6f4-0facadbb51a8 2020-11-02 20:59:12.145519 44495 4390 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1149\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.825E3\nmove_type: '1'\nsale_id: 3306\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1574\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.825E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1574 187.149.136.226 5a754a7d-976a-40ec-b6f4-0facadbb51a8 2020-11-02 20:59:12.168581 44496 1483 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1483'\n is_parent: false\n sku: VES-1483\n name: VST-0122\n description: VESTIDO BLACK SHINE SILVER VALENTINE 8068\n price_base: '407.0'\n price_sale: '1199.0'\n img_product: FE28D0E3-C805-4870-8F0C-A58A1D59C8D3.png\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001483'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-02 18:55:02.494379'\n updated_at: &12 2020-11-02 21:00:48.541471531 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1483'\n sku: VES-1483\n name: VST-0122\n description: VESTIDO BLACK SHINE SILVER VALENTINE 8068\n price_base: '407.00'\n price_sale: '1199.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-02 18:55:02.494379'\n updated_at: '2020-11-02 18:55:02.542895'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001483'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1483'\n type: *3\n value: 1483\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1483\n type: *7\n value: VES-1483\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0122\n type: *8\n value: VST-0122\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO BLACK SHINE SILVER VALENTINE 8068\n type: *6\n value: VESTIDO BLACK SHINE SILVER VALENTINE 8068\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '407.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.407E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1199.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1199E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: FE28D0E3-C805-4870-8F0C-A58A1D59C8D3.png\n type: *2\n value: FE28D0E3-C805-4870-8F0C-A58A1D59C8D3.png\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001483'\n type: *2\n value: '0001483'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-02 18:55:02.494379'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- FE28D0E3-C805-4870-8F0C-A58A1D59C8D3.png\n 3 El producto VES-1483 fue modificado. 187.149.136.226 b244c950-05dc-4afa-9673-48b59435dfda 2020-11-02 21:00:48.585302 44497 3307 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1149\namount: !ruby/object:BigDecimal 18:0.1119E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1119E4\nstatus: 0\ndate_sale: 2020-11-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1575\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 40a9866d-d5cf-47fb-8ada-a072009c8598 2020-11-02 21:01:37.4567 44498 1633 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.136.226 40a9866d-d5cf-47fb-8ada-a072009c8598 2020-11-02 21:01:37.494299 44499 3307 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 6a23576b-65d8-4ee7-b24b-110aeccf17bd 2020-11-02 21:05:08.16216 44500 4391 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1149\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1119E4\nmove_type: '1'\nsale_id: 3307\ncardnumber: 9495\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1575\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1575 187.149.136.226 6a23576b-65d8-4ee7-b24b-110aeccf17bd 2020-11-02 21:05:08.183663 44501 3308 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1150\namount: !ruby/object:BigDecimal 18:0.159E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.159E3\nstatus: 0\ndate_sale: 2020-11-02\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-813\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 7d0ed53f-c5eb-4dca-bbd5-79931275b34c 2020-11-02 21:11:47.118963 44502 2410 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.91.88 7d0ed53f-c5eb-4dca-bbd5-79931275b34c 2020-11-02 21:11:47.147279 44503 3308 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 75f203bb-7f4c-4d53-b1d5-caf8deae0364 2020-11-02 21:11:57.281119 44504 4392 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1150\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.159E3\nmove_type: '1'\nsale_id: 3308\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-813\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.341E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-813 189.186.91.88 75f203bb-7f4c-4d53-b1d5-caf8deae0364 2020-11-02 21:11:57.322695 44505 1480 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1480'\n is_parent: false\n sku: BLU-1480\n name: BLS-0145\n description: BLUSA NEGRA CON DESTELLOS DORADOS APECH\n price_base: '352.0'\n price_sale: '889.0'\n img_product: E1F882A6-D112-4B12-93D4-CCBE8F9D215E.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001480'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-01 02:04:55.493247'\n updated_at: &12 2020-11-02 21:25:18.635312432 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1480'\n sku: BLU-1480\n name: BLS-0145\n description: BLUSA NEGRA CON DESTELLOS DORADOS APECH\n price_base: '352.00'\n price_sale: '889.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-01 02:04:55.493247'\n updated_at: '2020-11-01 02:04:55.539327'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001480'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1480'\n type: *3\n value: 1480\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1480\n type: *7\n value: BLU-1480\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0145\n type: *8\n value: BLS-0145\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA NEGRA CON DESTELLOS DORADOS APECH\n type: *6\n value: BLUSA NEGRA CON DESTELLOS DORADOS APECH\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '352.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.352E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '889.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.889E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: E1F882A6-D112-4B12-93D4-CCBE8F9D215E.jpeg\n type: *2\n value: E1F882A6-D112-4B12-93D4-CCBE8F9D215E.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001480'\n type: *2\n value: '0001480'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-01 02:04:55.493247'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- E1F882A6-D112-4B12-93D4-CCBE8F9D215E.jpeg\n 3 El producto BLU-1480 fue modificado. 187.149.136.226 bc3923a2-f109-489a-afa4-23d1a22eef5d 2020-11-02 21:25:18.677045 44506 1481 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1481'\n is_parent: false\n sku: BLU-1481\n name: BLS-0146\n description: CORSET BLANCO I TOO\n price_base: '435.0'\n price_sale: '989.0'\n img_product: A9B064F9-11C9-4831-BEB2-D129005FE46D.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001481'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-01 02:06:27.280319'\n updated_at: &12 2020-11-02 21:26:52.780188993 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1481'\n sku: BLU-1481\n name: BLS-0146\n description: CORSET BLANCO I TOO\n price_base: '435.00'\n price_sale: '989.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-01 02:06:27.280319'\n updated_at: '2020-11-01 02:06:27.318018'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001481'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1481'\n type: *3\n value: 1481\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1481\n type: *7\n value: BLU-1481\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0146\n type: *8\n value: BLS-0146\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CORSET BLANCO I TOO\n type: *6\n value: CORSET BLANCO I TOO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '435.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.435E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '989.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.989E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: A9B064F9-11C9-4831-BEB2-D129005FE46D.jpeg\n type: *2\n value: A9B064F9-11C9-4831-BEB2-D129005FE46D.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001481'\n type: *2\n value: '0001481'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-01 02:06:27.280319'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- A9B064F9-11C9-4831-BEB2-D129005FE46D.jpeg\n 3 El producto BLU-1481 fue modificado. 187.149.136.226 c0261fd5-d5c1-478f-803c-827b68a0fe53 2020-11-02 21:26:52.826123 44507 1356 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1356'\n is_parent: false\n sku: BLU-1356\n name: BLS-0144\n description: BLUSA BEIGE CON DESTELLOS DORADOS Y PLATEADOS\n price_base: '286.0'\n price_sale: '699.0'\n img_product: image.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001356'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-28 19:10:47.337767'\n updated_at: &12 2020-11-02 21:29:01.719204944 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1356'\n sku: BLU-1356\n name: BLS-0144\n description: BLUSA BEIGE CON DESTELLOS DORADOS Y PLATEADOS\n price_base: '286.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-28 19:10:47.337767'\n updated_at: '2020-09-28 19:10:47.375606'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001356'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1356'\n type: *3\n value: 1356\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1356\n type: *7\n value: BLU-1356\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0144\n type: *8\n value: BLS-0144\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA BEIGE CON DESTELLOS DORADOS Y PLATEADOS\n type: *6\n value: BLUSA BEIGE CON DESTELLOS DORADOS Y PLATEADOS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '286.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.286E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: image.jpg\n type: *2\n value: image.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001356'\n type: *2\n value: '0001356'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-28 19:10:47.337767'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- image.jpg\n 3 El producto BLU-1356 fue modificado. 187.149.136.226 52ada235-4cde-4e9d-ab99-cee5b7fc033c 2020-11-02 21:29:01.770634 44508 1356 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '1356'\n is_parent: false\n sku: BLU-1356\n name: BLS-0144\n description: BLUSA BEIGE CON DESTELLOS DORADOS Y PLATEADOS\n price_base: '286.0'\n price_sale: '699.0'\n img_product: image.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001356'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-28 19:10:47.337767'\n updated_at: &12 2020-11-02 21:29:11.389973600 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1356'\n sku: BLU-1356\n name: BLS-0144\n description: BLUSA BEIGE CON DESTELLOS DORADOS Y PLATEADOS\n price_base: '286.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-28 19:10:47.337767'\n updated_at: '2020-11-02 21:29:01.719204'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001356'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: image.jpg\n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1356'\n type: *3\n value: 1356\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1356\n type: *7\n value: BLU-1356\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0144\n type: *8\n value: BLS-0144\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA BEIGE CON DESTELLOS DORADOS Y PLATEADOS\n type: *6\n value: BLUSA BEIGE CON DESTELLOS DORADOS Y PLATEADOS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '286.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.286E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: image.jpg\n type: *2\n value: image.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001356'\n type: *2\n value: '0001356'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-28 19:10:47.337767'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/image.jpg"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader59363120\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_image.jpg"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader59342220\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_image.jpg"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader59337740\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_image.jpg"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- image.jpg\n 4 El producto BLU-1356 fue modificado. 187.149.136.226 5eed6806-027e-4808-b725-1bca185a357b 2020-11-02 21:29:11.443026 44509 1482 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1482'\n is_parent: false\n sku: VES-1482\n name: VST-0121\n description: VESTIDO MOSTAZA PEGADO CON CINTO VALENTINE\n price_base: '352.0'\n price_sale: '899.0'\n img_product: CCC72555-0D95-4EB6-9C67-76E4BA251772.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001482'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-01 02:08:11.973958'\n updated_at: &12 2020-11-02 21:39:43.373809835 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1482'\n sku: VES-1482\n name: VST-0121\n description: VESTIDO MOSTAZA PEGADO CON CINTO VALENTINE\n price_base: '352.00'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-01 02:08:11.973958'\n updated_at: '2020-11-02 18:48:46.224153'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001482'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1482'\n type: *3\n value: 1482\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1482\n type: *7\n value: VES-1482\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0121\n type: *8\n value: VST-0121\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO MOSTAZA PEGADO CON CINTO VALENTINE\n type: *6\n value: VESTIDO MOSTAZA PEGADO CON CINTO VALENTINE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '352.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.352E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: CCC72555-0D95-4EB6-9C67-76E4BA251772.jpeg\n type: *2\n value: CCC72555-0D95-4EB6-9C67-76E4BA251772.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001482'\n type: *2\n value: '0001482'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-01 02:08:11.973958'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- CCC72555-0D95-4EB6-9C67-76E4BA251772.jpeg\n 4 El producto VES-1482 fue modificado. 187.149.136.226 855637be-038d-4d9e-8cb8-35c67b594a59 2020-11-02 21:39:43.414599 44510 1484 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1484'\n is_parent: false\n sku: PAL-1484\n name: VST-0123\n description: PALAZZO SILVER VALENTINE 8057\n price_base: '561.0'\n price_sale: '1399.0'\n img_product: CEF0F28B-AD1B-4C54-9E6C-70A86A3A68C3.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '9'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001484'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-02 18:55:55.944339'\n updated_at: &12 2020-11-02 21:40:26.375034830 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1484'\n sku: PAL-1484\n name: VST-0123\n description: PALAZZO SILVER VALENTINE 8057\n price_base: '561.00'\n price_sale: '1399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-02 18:55:55.944339'\n updated_at: '2020-11-02 18:55:55.983999'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001484'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '9'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1484'\n type: *3\n value: 1484\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAL-1484\n type: *7\n value: PAL-1484\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0123\n type: *8\n value: VST-0123\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PALAZZO SILVER VALENTINE 8057\n type: *6\n value: PALAZZO SILVER VALENTINE 8057\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '561.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.561E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1399E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: CEF0F28B-AD1B-4C54-9E6C-70A86A3A68C3.jpeg\n type: *2\n value: CEF0F28B-AD1B-4C54-9E6C-70A86A3A68C3.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '9'\n type: *3\n value: 9\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001484'\n type: *2\n value: '0001484'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-02 18:55:55.944339'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- CEF0F28B-AD1B-4C54-9E6C-70A86A3A68C3.jpeg\n 3 El producto PAL-1484 fue modificado. 187.149.136.226 1232c055-2071-4835-be8f-8cb86411c4bb 2020-11-02 21:40:26.434686 44511 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-01 20:52:04.073252000 Z\n- &1 2020-11-01 22:14:02.774637000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-02 22:48:07.154594608 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934047\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945879\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945879\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934039\n mask_addr: 4294967295\nsign_in_count:\n- 2026\n- 2027\n 4054 \N 200.68.134.87 ce8cbe58-6a44-442c-aa6a-77fca84e54be 2020-11-02 22:48:07.166484 44512 4 User \N \N 4 User \N update ---\nunique_session_id:\n- N4TLZ3pxgA33PgL2Hfuy\n- N8wyZXkLkC3yRNdNH6xw\n 4055 \N 200.68.134.87 ce8cbe58-6a44-442c-aa6a-77fca84e54be 2020-11-02 22:48:07.192419 44513 425 Customer \N \N 2 User \N create ---\nnick_name: CINTHIA ARACELI VALLES\nphone: "(667) 406-7477"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CINTHIA ARACELI VALLES fue registrado. 187.149.136.226 1857a256-0ef8-4475-a807-1572c13302b7 2020-11-02 23:27:58.13889 44514 3309 Sale \N \N 2 User \N create ---\ncustomer_id: 425\nuser_id: 2\nopen_cash_register_id: 1149\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-02\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1576\nexpiration_date: 2020-12-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 37001688-eaa3-4378-a51f-b620869c43b4 2020-11-02 23:28:45.761456 44515 2369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.136.226 37001688-eaa3-4378-a51f-b620869c43b4 2020-11-02 23:28:45.790411 44776 2552 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 0812c92b-e68d-4270-9907-82e20c759820 2020-11-04 00:05:33.369264 44516 4393 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1149\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3309\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1576\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1576 187.149.136.226 d6587974-1d52-4248-81e5-a0edd94513da 2020-11-02 23:28:53.805562 44517 3309 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.136.226 6da95ac3-a4c3-43a7-9f8f-9e910be2001c 2020-11-02 23:28:55.913624 44518 1486 Product \N \N 2 User \N create ---\nsku: PAN-1486\nname: PNT-0034\ndescription: OVEROL NEGRO LABANGA 12195\nprice_base: !ruby/object:BigDecimal 18:0.258E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-1486 fue creado. 187.149.136.226 e2c9d90d-4d37-45ac-a99d-11f17ab71842 2020-11-02 23:40:17.65531 44519 1486 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001486'\n 2 \N 187.149.136.226 e2c9d90d-4d37-45ac-a99d-11f17ab71842 2020-11-02 23:40:17.683271 44520 2514 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1486\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 e2c9d90d-4d37-45ac-a99d-11f17ab71842 2020-11-02 23:40:17.709468 44521 452 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-187\namount: !ruby/object:BigDecimal 18:0.129E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.129E4\nobservations: ''\npurchase_date: 2020-11-02\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-187 por $ 1290.0 MXN creada. 187.149.136.226 77a98721-7cda-4732-b687-1c8388992429 2020-11-02 23:40:39.27595 44522 2514 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.136.226 77a98721-7cda-4732-b687-1c8388992429 2020-11-02 23:40:39.309101 44523 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-01 22:29:53.754033000 Z\n- &1 2020-11-02 19:06:31.862757000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-02 23:47:15.858216871 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\nsign_in_count:\n- 327\n- 328\n 657 \N 189.186.227.197 83c3bd07-502d-4f9a-99e3-cd37d2e10740 2020-11-02 23:47:15.866222 44524 21 User \N \N 21 User \N update ---\nunique_session_id:\n- TFgy8otdNmQVzWwk8RYT\n- Bu-h4_LL7R6GHLyTeHWH\n 658 \N 189.186.227.197 83c3bd07-502d-4f9a-99e3-cd37d2e10740 2020-11-02 23:47:15.882677 44525 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-02 19:06:31.862757000 Z\n- &1 2020-11-02 23:47:15.858216000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-02 23:53:34.648976560 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 328\n- 329\n 659 \N 189.186.91.88 38c9d27c-b930-4767-bbe3-bc067d6269ca 2020-11-02 23:53:34.657017 44526 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Bu-h4_LL7R6GHLyTeHWH\n- MYB9STxKx4bzSwNRGytx\n 660 \N 189.186.91.88 38c9d27c-b930-4767-bbe3-bc067d6269ca 2020-11-02 23:53:34.67424 44527 3310 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1149\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-11-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1577\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 b7d338a3-f849-4a46-85f5-2b2a49164697 2020-11-02 23:58:25.832791 44528 2514 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.136.226 b7d338a3-f849-4a46-85f5-2b2a49164697 2020-11-02 23:58:25.862345 44529 3310 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 1745e2b8-225b-4373-86a6-3a3581d0e659 2020-11-03 00:00:20.849312 44530 4394 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1149\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3310\ncardnumber: 8887\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1577\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1577 187.149.136.226 1745e2b8-225b-4373-86a6-3a3581d0e659 2020-11-03 00:00:20.879659 44531 1174 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1150\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1958E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.1129E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3129E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 79d75ee6-b890-4f19-92fd-519ea51bcde2 2020-11-03 00:10:47.951546 44532 1150 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 79d75ee6-b890-4f19-92fd-519ea51bcde2 2020-11-03 00:10:47.97176 44533 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-02 18:47:15.059062000 Z\n- &1 2020-11-02 20:51:28.256218000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-03 00:23:18.507754237 Z\nsign_in_count:\n- 337\n- 338\n 676 \N 187.149.136.226 b36f8a96-830e-41ce-8897-996a5b762e3c 2020-11-03 00:23:18.514643 44534 1 User \N \N 1 User \N update ---\nunique_session_id:\n- cGNqtjyirwzUVZLbq4hX\n- 8vUEAo7vtfedasfGy_VZ\n 677 \N 187.149.136.226 b36f8a96-830e-41ce-8897-996a5b762e3c 2020-11-03 00:23:18.530239 44535 1486 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1486'\n is_parent: false\n sku: PAN-1486\n name: PNT-0034\n description: OVEROL NEGRO LABANGA 12195\n price_base: '258.0'\n price_sale: '699.0'\n img_product: 4211D334-DEC4-407F-AB12-F83AE101C1B1.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '8'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001486'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-02 23:40:17.642986'\n updated_at: &12 2020-11-03 00:24:18.494452707 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1486'\n sku: PAN-1486\n name: PNT-0034\n description: OVEROL NEGRO LABANGA 12195\n price_base: '258.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-02 23:40:17.642986'\n updated_at: '2020-11-02 23:40:17.680552'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001486'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '8'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1486'\n type: *3\n value: 1486\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAN-1486\n type: *7\n value: PAN-1486\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PNT-0034\n type: *8\n value: PNT-0034\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: OVEROL NEGRO LABANGA 12195\n type: *6\n value: OVEROL NEGRO LABANGA 12195\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '258.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.258E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 4211D334-DEC4-407F-AB12-F83AE101C1B1.jpeg\n type: *2\n value: 4211D334-DEC4-407F-AB12-F83AE101C1B1.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '8'\n type: *3\n value: 8\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001486'\n type: *2\n value: '0001486'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-02 23:40:17.642986'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 4211D334-DEC4-407F-AB12-F83AE101C1B1.jpeg\n 3 El producto PAN-1486 fue modificado. 187.149.136.226 55fc5986-cef2-4ca2-b731-56c0544124ca 2020-11-03 00:24:18.53646 44536 1175 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1149\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2943E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.13E4\ncash_fund: !ruby/object:BigDecimal 18:0.1005E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2305E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.136.226 50e5bc29-6675-408f-902d-fa74386f495d 2020-11-03 01:46:36.603327 44537 1149 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.136.226 50e5bc29-6675-408f-902d-fa74386f495d 2020-11-03 01:46:36.617805 44538 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-02 20:51:28.256218000 Z\n- &1 2020-11-03 00:23:18.507754000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-03 05:19:26.304562818 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729959\n mask_addr: 4294967295\nsign_in_count:\n- 338\n- 339\n 678 \N 201.175.159.39 96e6b63a-a5c2-4ad9-a8de-e14b68d19958 2020-11-03 05:19:26.333027 44539 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 8vUEAo7vtfedasfGy_VZ\n- xYg9WEknHf3Zy9kWJsPL\n 679 \N 201.175.159.39 96e6b63a-a5c2-4ad9-a8de-e14b68d19958 2020-11-03 05:19:26.355611 44540 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-01 00:10:27.633806000 Z\n- &1 2020-11-02 17:20:30.124432000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-03 18:08:38.414905615 Z\nsign_in_count:\n- 682\n- 683\n 1369 \N 187.149.136.226 b5e72a3d-6ab3-4a43-8cec-ee551c703652 2020-11-03 18:08:38.444503 44541 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Mgzyz_QmoxGtmMyz_YbU\n- GqYeBxmRsH5ZoWzoDmwZ\n 1370 \N 187.149.136.226 b5e72a3d-6ab3-4a43-8cec-ee551c703652 2020-11-03 18:08:38.46783 44542 1151 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1005E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1005.0 187.149.136.226 7804279b-a365-45c5-92f4-8db68748c76e 2020-11-03 18:30:18.214948 44543 707 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-03\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.136.226 7d261263-7573-4bd2-82f8-9806c23cbe5c 2020-11-03 18:33:26.166637 44544 2355 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.136.226 7d261263-7573-4bd2-82f8-9806c23cbe5c 2020-11-03 18:33:26.193142 44545 2369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.136.226 7d261263-7573-4bd2-82f8-9806c23cbe5c 2020-11-03 18:33:26.230549 44546 3311 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1151\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1578\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 5f211062-83d1-4622-87b7-0978c88875f0 2020-11-03 18:33:58.176945 44547 2369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.136.226 5f211062-83d1-4622-87b7-0978c88875f0 2020-11-03 18:33:58.203234 44548 3311 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 135ebfed-9595-4a34-9ab2-132f1adae924 2020-11-03 18:34:08.84086 44549 4395 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1151\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3311\ncardnumber: 3592\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1578\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1578 187.149.136.226 135ebfed-9595-4a34-9ab2-132f1adae924 2020-11-03 18:34:08.867259 44550 1487 Product \N \N 2 User \N create ---\nsku: CON-1487\nname: CON-0005\ndescription: SET COLORES PASTEL LABANGA 22385\nprice_base: !ruby/object:BigDecimal 18:0.412E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 10\nproduct_service_key: '01010101'\n 1 El producto CON-1487 fue creado. 187.149.136.226 bd9ba26b-3f14-4937-8233-d989b1097f14 2020-11-03 18:51:03.267845 44551 1487 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001487'\n 2 \N 187.149.136.226 bd9ba26b-3f14-4937-8233-d989b1097f14 2020-11-03 18:51:03.306184 44552 2515 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1487\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 bd9ba26b-3f14-4937-8233-d989b1097f14 2020-11-03 18:51:03.345477 44553 1488 Product \N \N 2 User \N create ---\nsku: PAN-1488\nname: PNT-0035\ndescription: PANTALON NEGRO LISO LABANGA 9683\nprice_base: !ruby/object:BigDecimal 18:0.275E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-1488 fue creado. 187.149.136.226 c2c06f61-d3ef-4419-afca-dcc22aad721e 2020-11-03 18:54:34.583158 44554 1488 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001488'\n 2 \N 187.149.136.226 c2c06f61-d3ef-4419-afca-dcc22aad721e 2020-11-03 18:54:34.612646 44555 2516 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1488\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 c2c06f61-d3ef-4419-afca-dcc22aad721e 2020-11-03 18:54:34.640051 44556 1489 Product \N \N 2 User \N create ---\nsku: PAN-1489\nname: PNT-0036\ndescription: PANTALON MAGENTA LISO LABANGA 9683\nprice_base: !ruby/object:BigDecimal 18:0.275E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-1489 fue creado. 187.149.136.226 d4a96377-778c-4668-a726-0b7efed747cc 2020-11-03 18:56:04.231258 44557 1489 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001489'\n 2 \N 187.149.136.226 d4a96377-778c-4668-a726-0b7efed747cc 2020-11-03 18:56:04.27157 44558 2517 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1489\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 d4a96377-778c-4668-a726-0b7efed747cc 2020-11-03 18:56:04.309037 44609 1152 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1129E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1129.0 189.186.91.88 aa1d49a7-58ff-4382-ba23-5a306477bd12 2020-11-03 20:24:30.600753 44777 2553 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 0812c92b-e68d-4270-9907-82e20c759820 2020-11-04 00:05:33.389721 44559 1490 Product \N \N 2 User \N create ---\nsku: BLU-1490\nname: BLS-0148\ndescription: PLAYERA MICKEY I TOO\nprice_base: !ruby/object:BigDecimal 18:0.231E3\nprice_sale: !ruby/object:BigDecimal 18:0.589E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1490 fue creado. 187.149.136.226 3844be4b-2a05-4133-8ed7-01547b0fbded 2020-11-03 18:58:23.98661 44560 1490 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001490'\n 2 \N 187.149.136.226 3844be4b-2a05-4133-8ed7-01547b0fbded 2020-11-03 18:58:24.031494 44561 2518 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1490\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 3844be4b-2a05-4133-8ed7-01547b0fbded 2020-11-03 18:58:24.071958 44562 4396 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1151\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 3309\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1576 187.149.136.226 36ea48a0-45b6-475c-9fca-70e2a37d02c7 2020-11-03 19:08:43.792831 44563 3309 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.136.226 046f37d3-16b6-4b8c-be2e-ab3dfae165c6 2020-11-03 19:08:44.781996 44564 1491 Product \N \N 2 User \N create ---\nsku: BLU-1491\nname: BLS-0149\ndescription: 'BLUSA DE LENTEJUELA BLANCA Y NEGRA CIEN '\nprice_base: !ruby/object:BigDecimal 18:0.363E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1491 fue creado. 187.149.136.226 6dd5dd7f-6008-44d2-add3-48c4e2468745 2020-11-03 19:31:29.838933 44565 1491 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001491'\n 2 \N 187.149.136.226 6dd5dd7f-6008-44d2-add3-48c4e2468745 2020-11-03 19:31:29.868028 44566 2519 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1491\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 6dd5dd7f-6008-44d2-add3-48c4e2468745 2020-11-03 19:31:29.893629 44567 1492 Product \N \N 2 User \N create ---\nsku: BLU-1492\nname: BLS-0150\ndescription: BLUSA CON PUNTITOS NEGRA Y BLANCA CIEN 20172\nprice_base: !ruby/object:BigDecimal 18:0.3245E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1492 fue creado. 187.149.136.226 c0b6e89b-78f0-4a33-8112-02adb7cc537a 2020-11-03 19:33:38.321306 44568 1492 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001492'\n 2 \N 187.149.136.226 c0b6e89b-78f0-4a33-8112-02adb7cc537a 2020-11-03 19:33:38.3505 44569 2520 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1492\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 c0b6e89b-78f0-4a33-8112-02adb7cc537a 2020-11-03 19:33:38.376121 44570 1493 Product \N \N 2 User \N create ---\nsku: BLU-1493\nname: BLS-0151\ndescription: 'BLUSA CON MECHITAS ROJO, ROSA Y NEGRO CIEN '\nprice_base: !ruby/object:BigDecimal 18:0.341E3\nprice_sale: !ruby/object:BigDecimal 18:0.869E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1493 fue creado. 187.149.136.226 43a7a355-6a87-4359-8db3-91270d1eb8b5 2020-11-03 19:34:46.749807 44571 1493 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001493'\n 2 \N 187.149.136.226 43a7a355-6a87-4359-8db3-91270d1eb8b5 2020-11-03 19:34:46.792446 44572 2521 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1493\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 43a7a355-6a87-4359-8db3-91270d1eb8b5 2020-11-03 19:34:46.828342 44573 1494 Product \N \N 2 User \N create ---\nsku: VES-1494\nname: VST-0124\ndescription: VESTIDO ROJO CON EVILLA CIEN 30050\nprice_base: !ruby/object:BigDecimal 18:0.561E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1494 fue creado. 187.149.136.226 a896c077-e76a-4d53-9401-bae73f321de4 2020-11-03 19:37:28.298536 44574 1494 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001494'\n 2 \N 187.149.136.226 a896c077-e76a-4d53-9401-bae73f321de4 2020-11-03 19:37:28.327157 44575 2522 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1494\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 a896c077-e76a-4d53-9401-bae73f321de4 2020-11-03 19:37:28.354416 44576 1495 Product \N \N 2 User \N create ---\nsku: VES-1495\nname: VST-0125\ndescription: 'VESTIDO DE PIEL NEGRO CIEN '\nprice_base: !ruby/object:BigDecimal 18:0.522E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1495 fue creado. 187.149.136.226 a0594c34-a7af-4d31-b1c2-614084f3fa11 2020-11-03 19:38:16.144092 44577 1495 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001495'\n 2 \N 187.149.136.226 a0594c34-a7af-4d31-b1c2-614084f3fa11 2020-11-03 19:38:16.173717 44629 1501 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001501'\n 2 \N 187.149.136.226 e91f4841-2229-4964-9b76-14f9845b6f26 2020-11-03 20:56:21.62841 44579 1496 Product \N \N 2 User \N create ---\nsku: VES-1496\nname: VST-0126\ndescription: VESTIDO NEGRO CON LENTEJUELA RRIBA CIEN 30106\nprice_base: !ruby/object:BigDecimal 18:0.495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1496 fue creado. 187.149.136.226 de4d66cc-c5dd-41ab-b343-1bf43623a327 2020-11-03 19:39:14.492992 44580 1496 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001496'\n 2 \N 187.149.136.226 de4d66cc-c5dd-41ab-b343-1bf43623a327 2020-11-03 19:39:14.534206 44581 2524 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1496\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 de4d66cc-c5dd-41ab-b343-1bf43623a327 2020-11-03 19:39:14.560355 44582 453 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-188\namount: !ruby/object:BigDecimal 18:0.18939E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.18939E5\nobservations: ''\npurchase_date: 2020-11-03\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-188 por $ 18939.0 MXN creada. 187.149.136.226 f6b197c1-84b5-4276-a173-b0bae6e6bf92 2020-11-03 19:45:12.250288 44583 2515 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 f6b197c1-84b5-4276-a173-b0bae6e6bf92 2020-11-03 19:45:12.307743 44584 2516 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.136.226 f6b197c1-84b5-4276-a173-b0bae6e6bf92 2020-11-03 19:45:12.33888 44585 2517 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.136.226 f6b197c1-84b5-4276-a173-b0bae6e6bf92 2020-11-03 19:45:12.359265 44586 2518 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.136.226 f6b197c1-84b5-4276-a173-b0bae6e6bf92 2020-11-03 19:45:12.379704 44587 2519 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.9E1\n 2 \N 187.149.136.226 f6b197c1-84b5-4276-a173-b0bae6e6bf92 2020-11-03 19:45:12.399222 44588 2520 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.136.226 f6b197c1-84b5-4276-a173-b0bae6e6bf92 2020-11-03 19:45:12.419372 44589 2521 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.9E1\n 2 \N 187.149.136.226 f6b197c1-84b5-4276-a173-b0bae6e6bf92 2020-11-03 19:45:12.439993 44590 2522 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 f6b197c1-84b5-4276-a173-b0bae6e6bf92 2020-11-03 19:45:12.460593 44591 2523 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 f6b197c1-84b5-4276-a173-b0bae6e6bf92 2020-11-03 19:45:12.480661 44592 2524 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 f6b197c1-84b5-4276-a173-b0bae6e6bf92 2020-11-03 19:45:12.501516 44593 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-03 00:23:18.507754000 Z\n- &1 2020-11-03 05:19:26.304562000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-03 19:46:01.060041918 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729959\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729959\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\nsign_in_count:\n- 339\n- 340\n 680 \N 187.149.136.226 f9b84423-d9f1-4a81-b254-7d9f322d5ac6 2020-11-03 19:46:01.072075 44594 1 User \N \N 1 User \N update ---\nunique_session_id:\n- xYg9WEknHf3Zy9kWJsPL\n- mydmJxk_q_Gufmmsng36\n 681 \N 187.149.136.226 f9b84423-d9f1-4a81-b254-7d9f322d5ac6 2020-11-03 19:46:01.094303 44595 1487 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1487'\n is_parent: false\n sku: CON-1487\n name: CON-0005\n description: SET COLORES PASTEL LABANGA 22385\n price_base: '412.0'\n price_sale: '999.0'\n img_product: ED7D11D2-1FC5-40E6-A3C9-6109A330DF4E.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '10'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001487'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 18:51:03.252318'\n updated_at: &12 2020-11-03 19:46:47.917429606 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1487'\n sku: CON-1487\n name: CON-0005\n description: SET COLORES PASTEL LABANGA 22385\n price_base: '412.00'\n price_sale: '999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 18:51:03.252318'\n updated_at: '2020-11-03 18:51:03.302754'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001487'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '10'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1487'\n type: *3\n value: 1487\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CON-1487\n type: *7\n value: CON-1487\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CON-0005\n type: *8\n value: CON-0005\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: SET COLORES PASTEL LABANGA 22385\n type: *6\n value: SET COLORES PASTEL LABANGA 22385\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '412.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.412E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: ED7D11D2-1FC5-40E6-A3C9-6109A330DF4E.jpeg\n type: *2\n value: ED7D11D2-1FC5-40E6-A3C9-6109A330DF4E.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '10'\n type: *3\n value: 10\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001487'\n type: *2\n value: '0001487'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 18:51:03.252318'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- ED7D11D2-1FC5-40E6-A3C9-6109A330DF4E.jpeg\n 3 El producto CON-1487 fue modificado. 187.149.136.226 95f76705-e46e-4cb3-a2bf-15391ae08958 2020-11-03 19:46:47.960486 44596 1490 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1490'\n is_parent: false\n sku: BLU-1490\n name: BLS-0148\n description: PLAYERA MICKEY I TOO\n price_base: '231.0'\n price_sale: '589.0'\n img_product: C0C35DEF-FC54-405F-B5CE-7F0850D6468E.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001490'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 18:58:23.966466'\n updated_at: &12 2020-11-03 19:51:54.895729791 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1490'\n sku: BLU-1490\n name: BLS-0148\n description: PLAYERA MICKEY I TOO\n price_base: '231.00'\n price_sale: '589.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 18:58:23.966466'\n updated_at: '2020-11-03 18:58:24.027083'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001490'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1490'\n type: *3\n value: 1490\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1490\n type: *7\n value: BLU-1490\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0148\n type: *8\n value: BLS-0148\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PLAYERA MICKEY I TOO\n type: *6\n value: PLAYERA MICKEY I TOO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '231.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.231E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '589.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.589E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: C0C35DEF-FC54-405F-B5CE-7F0850D6468E.jpeg\n type: *2\n value: C0C35DEF-FC54-405F-B5CE-7F0850D6468E.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001490'\n type: *2\n value: '0001490'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 18:58:23.966466'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- C0C35DEF-FC54-405F-B5CE-7F0850D6468E.jpeg\n 3 El producto BLU-1490 fue modificado. 187.149.136.226 6e9ac828-9eea-456f-99e1-f0dbb651f7ea 2020-11-03 19:51:54.938301 44597 1491 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1491'\n is_parent: false\n sku: BLU-1491\n name: BLS-0149\n description: 'BLUSA DE LENTEJUELA BLANCA Y NEGRA CIEN '\n price_base: '363.0'\n price_sale: '899.0'\n img_product: 18D10C2F-E2D9-46B6-A9E8-12B9CEA5BF61.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001491'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 19:31:29.825456'\n updated_at: &12 2020-11-03 19:52:31.981738089 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1491'\n sku: BLU-1491\n name: BLS-0149\n description: 'BLUSA DE LENTEJUELA BLANCA Y NEGRA CIEN '\n price_base: '363.00'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 19:31:29.825456'\n updated_at: '2020-11-03 19:31:29.86555'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001491'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1491'\n type: *3\n value: 1491\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1491\n type: *7\n value: BLU-1491\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0149\n type: *8\n value: BLS-0149\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'BLUSA DE LENTEJUELA BLANCA Y NEGRA CIEN '\n type: *6\n value: 'BLUSA DE LENTEJUELA BLANCA Y NEGRA CIEN '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '363.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.363E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 18D10C2F-E2D9-46B6-A9E8-12B9CEA5BF61.jpeg\n type: *2\n value: 18D10C2F-E2D9-46B6-A9E8-12B9CEA5BF61.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001491'\n type: *2\n value: '0001491'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 19:31:29.825456'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 18D10C2F-E2D9-46B6-A9E8-12B9CEA5BF61.jpeg\n 3 El producto BLU-1491 fue modificado. 187.149.136.226 621790b0-082c-4aed-bfd5-6667975ecf19 2020-11-03 19:52:32.020027 44598 1492 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1492'\n is_parent: false\n sku: BLU-1492\n name: BLS-0150\n description: BLUSA CON PUNTITOS NEGRA Y BLANCA CIEN 20172\n price_base: '324.5'\n price_sale: '799.0'\n img_product: 1F10AD73-37D8-4FDC-9C3B-C8A19CEE9205.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001492'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 19:33:38.310245'\n updated_at: &12 2020-11-03 20:06:53.907731970 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1492'\n sku: BLU-1492\n name: BLS-0150\n description: BLUSA CON PUNTITOS NEGRA Y BLANCA CIEN 20172\n price_base: '324.50'\n price_sale: '799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 19:33:38.310245'\n updated_at: '2020-11-03 19:33:38.347758'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001492'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1492'\n type: *3\n value: 1492\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1492\n type: *7\n value: BLU-1492\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0150\n type: *8\n value: BLS-0150\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA CON PUNTITOS NEGRA Y BLANCA CIEN 20172\n type: *6\n value: BLUSA CON PUNTITOS NEGRA Y BLANCA CIEN 20172\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '324.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.3245E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.799E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 1F10AD73-37D8-4FDC-9C3B-C8A19CEE9205.jpeg\n type: *2\n value: 1F10AD73-37D8-4FDC-9C3B-C8A19CEE9205.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001492'\n type: *2\n value: '0001492'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 19:33:38.310245'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 1F10AD73-37D8-4FDC-9C3B-C8A19CEE9205.jpeg\n 3 El producto BLU-1492 fue modificado. 187.149.136.226 fbb823e2-7fc9-4c4c-93b8-1e3974f6b4ec 2020-11-03 20:06:53.94911 44599 1493 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1493'\n is_parent: false\n sku: BLU-1493\n name: BLS-0151\n description: 'BLUSA CON MECHITAS ROJO, ROSA Y NEGRO CIEN '\n price_base: '341.0'\n price_sale: '869.0'\n img_product: B9D7B0BB-A08D-41F0-94F8-CF6FD5A73732.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001493'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 19:34:46.731629'\n updated_at: &12 2020-11-03 20:08:46.907153037 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1493'\n sku: BLU-1493\n name: BLS-0151\n description: 'BLUSA CON MECHITAS ROJO, ROSA Y NEGRO CIEN '\n price_base: '341.00'\n price_sale: '869.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 19:34:46.731629'\n updated_at: '2020-11-03 19:34:46.788459'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001493'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1493'\n type: *3\n value: 1493\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1493\n type: *7\n value: BLU-1493\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0151\n type: *8\n value: BLS-0151\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'BLUSA CON MECHITAS ROJO, ROSA Y NEGRO CIEN '\n type: *6\n value: 'BLUSA CON MECHITAS ROJO, ROSA Y NEGRO CIEN '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '341.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.341E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '869.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.869E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: B9D7B0BB-A08D-41F0-94F8-CF6FD5A73732.jpeg\n type: *2\n value: B9D7B0BB-A08D-41F0-94F8-CF6FD5A73732.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001493'\n type: *2\n value: '0001493'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 19:34:46.731629'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- B9D7B0BB-A08D-41F0-94F8-CF6FD5A73732.jpeg\n 3 El producto BLU-1493 fue modificado. 187.149.136.226 59b22675-c5c4-41da-9ccc-c86d94afdb5e 2020-11-03 20:08:46.945987 44600 1488 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1488'\n is_parent: false\n sku: PAN-1488\n name: PNT-0035\n description: PANTALON NEGRO LISO LABANGA 9683\n price_base: '275.0'\n price_sale: '699.0'\n img_product: 63BE75B5-C5E9-4E9A-97F2-8486DAD8C9CD.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '8'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001488'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 18:54:34.570791'\n updated_at: &12 2020-11-03 20:09:53.583653559 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1488'\n sku: PAN-1488\n name: PNT-0035\n description: PANTALON NEGRO LISO LABANGA 9683\n price_base: '275.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 18:54:34.570791'\n updated_at: '2020-11-03 18:54:34.60934'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001488'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '8'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1488'\n type: *3\n value: 1488\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAN-1488\n type: *7\n value: PAN-1488\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PNT-0035\n type: *8\n value: PNT-0035\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTALON NEGRO LISO LABANGA 9683\n type: *6\n value: PANTALON NEGRO LISO LABANGA 9683\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '275.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.275E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 63BE75B5-C5E9-4E9A-97F2-8486DAD8C9CD.jpeg\n type: *2\n value: 63BE75B5-C5E9-4E9A-97F2-8486DAD8C9CD.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '8'\n type: *3\n value: 8\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001488'\n type: *2\n value: '0001488'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 18:54:34.570791'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 63BE75B5-C5E9-4E9A-97F2-8486DAD8C9CD.jpeg\n 3 El producto PAN-1488 fue modificado. 187.149.136.226 57ccda54-fe9a-410f-a3f9-b1bedbe2e84b 2020-11-03 20:09:53.636996 44601 1489 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1489'\n is_parent: false\n sku: PAN-1489\n name: PNT-0036\n description: PANTALON MAGENTA LISO LABANGA 9683\n price_base: '275.0'\n price_sale: '699.0'\n img_product: 7B3DDEB5-E5A0-4B4C-845B-09F4006FD92C.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '8'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001489'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 18:56:04.213846'\n updated_at: &12 2020-11-03 20:11:30.696637711 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1489'\n sku: PAN-1489\n name: PNT-0036\n description: PANTALON MAGENTA LISO LABANGA 9683\n price_base: '275.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 18:56:04.213846'\n updated_at: '2020-11-03 18:56:04.267861'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001489'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '8'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1489'\n type: *3\n value: 1489\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAN-1489\n type: *7\n value: PAN-1489\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PNT-0036\n type: *8\n value: PNT-0036\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTALON MAGENTA LISO LABANGA 9683\n type: *6\n value: PANTALON MAGENTA LISO LABANGA 9683\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '275.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.275E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 7B3DDEB5-E5A0-4B4C-845B-09F4006FD92C.jpeg\n type: *2\n value: 7B3DDEB5-E5A0-4B4C-845B-09F4006FD92C.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '8'\n type: *3\n value: 8\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001489'\n type: *2\n value: '0001489'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 18:56:04.213846'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 7B3DDEB5-E5A0-4B4C-845B-09F4006FD92C.jpeg\n 3 El producto PAN-1489 fue modificado. 187.149.136.226 bcd39edf-3616-46fc-b892-4c7bb08d6c0d 2020-11-03 20:11:30.744781 44602 1494 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1494'\n is_parent: false\n sku: VES-1494\n name: VST-0124\n description: VESTIDO ROJO CON EVILLA CIEN 30050\n price_base: '561.0'\n price_sale: '1399.0'\n img_product: 953DE56A-D5B4-47DA-A18F-517C53C01427.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001494'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 19:37:28.286867'\n updated_at: &12 2020-11-03 20:12:16.329756321 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1494'\n sku: VES-1494\n name: VST-0124\n description: VESTIDO ROJO CON EVILLA CIEN 30050\n price_base: '561.00'\n price_sale: '1399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 19:37:28.286867'\n updated_at: '2020-11-03 19:37:28.324228'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001494'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1494'\n type: *3\n value: 1494\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1494\n type: *7\n value: VES-1494\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0124\n type: *8\n value: VST-0124\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO ROJO CON EVILLA CIEN 30050\n type: *6\n value: VESTIDO ROJO CON EVILLA CIEN 30050\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '561.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.561E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1399E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 953DE56A-D5B4-47DA-A18F-517C53C01427.jpeg\n type: *2\n value: 953DE56A-D5B4-47DA-A18F-517C53C01427.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001494'\n type: *2\n value: '0001494'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 19:37:28.286867'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 953DE56A-D5B4-47DA-A18F-517C53C01427.jpeg\n 3 El producto VES-1494 fue modificado. 187.149.136.226 ac7061f5-2dca-4afa-a928-cce898af8d9e 2020-11-03 20:12:16.371931 44603 1495 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1495'\n is_parent: false\n sku: VES-1495\n name: VST-0125\n description: 'VESTIDO DE PIEL NEGRO CIEN '\n price_base: '522.0'\n price_sale: '1399.0'\n img_product: 7D978CF7-30FE-4E91-B116-AA9DDBCFE5CB.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001495'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 19:38:16.131107'\n updated_at: &12 2020-11-03 20:13:05.606339877 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1495'\n sku: VES-1495\n name: VST-0125\n description: 'VESTIDO DE PIEL NEGRO CIEN '\n price_base: '522.00'\n price_sale: '1399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 19:38:16.131107'\n updated_at: '2020-11-03 19:38:16.170811'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001495'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1495'\n type: *3\n value: 1495\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1495\n type: *7\n value: VES-1495\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0125\n type: *8\n value: VST-0125\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'VESTIDO DE PIEL NEGRO CIEN '\n type: *6\n value: 'VESTIDO DE PIEL NEGRO CIEN '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '522.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.522E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1399E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 7D978CF7-30FE-4E91-B116-AA9DDBCFE5CB.jpeg\n type: *2\n value: 7D978CF7-30FE-4E91-B116-AA9DDBCFE5CB.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001495'\n type: *2\n value: '0001495'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 19:38:16.131107'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 7D978CF7-30FE-4E91-B116-AA9DDBCFE5CB.jpeg\n 3 El producto VES-1495 fue modificado. 187.149.136.226 f563ad87-ebc4-482f-91b4-0ee3824460e8 2020-11-03 20:13:05.655058 44604 1496 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1496'\n is_parent: false\n sku: VES-1496\n name: VST-0126\n description: VESTIDO NEGRO CON LENTEJUELA RRIBA CIEN 30106\n price_base: '495.0'\n price_sale: '1299.0'\n img_product: 4BAC7789-98AD-4EB8-A044-B349549A7115.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001496'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 19:39:14.475116'\n updated_at: &12 2020-11-03 20:13:42.938841450 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1496'\n sku: VES-1496\n name: VST-0126\n description: VESTIDO NEGRO CON LENTEJUELA RRIBA CIEN 30106\n price_base: '495.00'\n price_sale: '1299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 19:39:14.475116'\n updated_at: '2020-11-03 19:39:14.531481'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001496'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1496'\n type: *3\n value: 1496\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1496\n type: *7\n value: VES-1496\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0126\n type: *8\n value: VST-0126\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO NEGRO CON LENTEJUELA RRIBA CIEN 30106\n type: *6\n value: VESTIDO NEGRO CON LENTEJUELA RRIBA CIEN 30106\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '495.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1299E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 4BAC7789-98AD-4EB8-A044-B349549A7115.jpeg\n type: *2\n value: 4BAC7789-98AD-4EB8-A044-B349549A7115.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001496'\n type: *2\n value: '0001496'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 19:39:14.475116'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 4BAC7789-98AD-4EB8-A044-B349549A7115.jpeg\n 3 El producto VES-1496 fue modificado. 187.149.136.226 0ae60350-20db-422d-8325-11f9c0c03ab3 2020-11-03 20:13:42.980083 44605 4397 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1086\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 3067\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAM\n 1 \N 187.149.136.226 68b0c9cd-179b-4258-80cf-46d901326a5b 2020-11-03 20:23:34.421827 44606 4397 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 1086\n- 1151\n 2 movimiento de efectivo por venta con folio PV1-V-1467 187.149.136.226 68b0c9cd-179b-4258-80cf-46d901326a5b 2020-11-03 20:23:34.448755 44607 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-02 23:47:15.858216000 Z\n- &1 2020-11-02 23:53:34.648976000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-03 20:24:06.268656483 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 329\n- 330\n 661 \N 189.186.91.88 1e0b1c16-9dd4-4aad-9494-dd35dade6610 2020-11-03 20:24:06.278395 44610 3312 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1152\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-11-03\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-814\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 537fe16f-08d5-45db-ab8b-55c1696248d2 2020-11-03 20:26:59.098492 44611 2266 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 11 \N 189.186.91.88 537fe16f-08d5-45db-ab8b-55c1696248d2 2020-11-03 20:26:59.124759 44612 3312 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 a14a6c0c-06e4-4db2-8156-eb1c4822e6f5 2020-11-03 20:27:36.302651 44613 4398 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1152\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 3312\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-814\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1001E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-814 189.186.91.88 a14a6c0c-06e4-4db2-8156-eb1c4822e6f5 2020-11-03 20:27:36.327467 44614 30 User \N \N 30 User \N update ---\nlast_sign_in_at:\n- 2020-10-26 21:53:21.694687000 Z\n- &1 2020-10-31 19:58:00.702512000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-03 20:35:36.173574050 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\nsign_in_count:\n- 14\n- 15\n 30 \N 189.186.227.197 65932578-da1b-4b7b-a3a5-df5ecfdd1cdb 2020-11-03 20:35:36.180662 44615 30 User \N \N 30 User \N update ---\nunique_session_id:\n- myj_NHseC__HM8AKSyUD\n- gSoNEtKuwj3vVe8j5CXE\n 31 \N 189.186.227.197 65932578-da1b-4b7b-a3a5-df5ecfdd1cdb 2020-11-03 20:35:36.195219 44616 1497 Product \N \N 2 User \N create ---\nsku: BLU-1497\nname: BLS-0152\ndescription: BLUSA TIPO CORSET NEGRO CON FIGURAS DORADAS MUYMUY 20032\nprice_base: !ruby/object:BigDecimal 18:0.231E3\nprice_sale: !ruby/object:BigDecimal 18:0.629E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1497 fue creado. 187.149.136.226 1d55bf9a-6eba-4ccb-b83e-8bce46cc36df 2020-11-03 20:43:40.3429 44617 1497 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001497'\n 2 \N 187.149.136.226 1d55bf9a-6eba-4ccb-b83e-8bce46cc36df 2020-11-03 20:43:40.373721 44618 2525 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1497\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 1d55bf9a-6eba-4ccb-b83e-8bce46cc36df 2020-11-03 20:43:40.400545 44619 1498 Product \N \N 2 User \N create ---\nsku: BLU-1498\nname: BLS-0154\ndescription: PANTIBLUSA MANGA LARGA ROJA Y NEGRA MUYMUY\nprice_base: !ruby/object:BigDecimal 18:0.143E3\nprice_sale: !ruby/object:BigDecimal 18:0.399E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1498 fue creado. 187.149.136.226 0ecd206e-7029-4f50-9f36-e07a161a3a71 2020-11-03 20:45:14.287423 44620 1498 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001498'\n 2 \N 187.149.136.226 0ecd206e-7029-4f50-9f36-e07a161a3a71 2020-11-03 20:45:14.315656 44621 2526 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1498\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 0ecd206e-7029-4f50-9f36-e07a161a3a71 2020-11-03 20:45:14.341285 44622 1499 Product \N \N 2 User \N create ---\nsku: BLU-1499\nname: BLS-0154\ndescription: PLAYERA CON PERLAS ROSA Y NEGRA MUYMUY\nprice_base: !ruby/object:BigDecimal 18:0.187E3\nprice_sale: !ruby/object:BigDecimal 18:0.489E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1499 fue creado. 187.149.136.226 dd1c5b9e-bfbb-4c42-b083-c3cceab7a243 2020-11-03 20:51:28.13566 44623 1499 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001499'\n 2 \N 187.149.136.226 dd1c5b9e-bfbb-4c42-b083-c3cceab7a243 2020-11-03 20:51:28.16297 44624 2527 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1499\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 dd1c5b9e-bfbb-4c42-b083-c3cceab7a243 2020-11-03 20:51:28.187883 44625 1500 Product \N \N 2 User \N create ---\nsku: CHA-1500\nname: CHA-0025\ndescription: SUETER NEGRO CON LENTEJUELA VERDE M2\nprice_base: !ruby/object:BigDecimal 18:0.22E3\nprice_sale: !ruby/object:BigDecimal 18:0.689E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-1500 fue creado. 187.149.136.226 87841f9a-124b-42b1-89ab-dc79627c83a4 2020-11-03 20:55:13.200596 44626 1500 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001500'\n 2 \N 187.149.136.226 87841f9a-124b-42b1-89ab-dc79627c83a4 2020-11-03 20:55:13.227554 44627 2528 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1500\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 87841f9a-124b-42b1-89ab-dc79627c83a4 2020-11-03 20:55:13.253495 44628 1501 Product \N \N 2 User \N create ---\nsku: VES-1501\nname: VST-0127\ndescription: VESTIDO DE GAZA BEIGE THEMOON\nprice_base: !ruby/object:BigDecimal 18:0.44E3\nprice_sale: !ruby/object:BigDecimal 18:0.1109E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1501 fue creado. 187.149.136.226 e91f4841-2229-4964-9b76-14f9845b6f26 2020-11-03 20:56:21.599306 44630 2529 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1501\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 e91f4841-2229-4964-9b76-14f9845b6f26 2020-11-03 20:56:21.655014 44631 1502 Product \N \N 2 User \N create ---\nsku: BLU-1502\nname: BLS-0155\ndescription: BLUSA TRANSPARENTE NEGRA CON BOTONES DE ESTRELLA THEMOON\nprice_base: !ruby/object:BigDecimal 18:0.308E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1502 fue creado. 187.149.136.226 f2945265-9755-4925-a31f-ba8c165a16c9 2020-11-03 20:57:30.842642 44632 1502 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001502'\n 2 \N 187.149.136.226 f2945265-9755-4925-a31f-ba8c165a16c9 2020-11-03 20:57:30.869371 44633 2530 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1502\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 f2945265-9755-4925-a31f-ba8c165a16c9 2020-11-03 20:57:30.895408 44634 1503 Product \N \N 2 User \N create ---\nsku: BLU-1503\nname: BLS-0156\ndescription: BLUSA TIPO CAMISA NEGRA CON FIGURAS EN MANGA THEMOON\nprice_base: !ruby/object:BigDecimal 18:0.528E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1503 fue creado. 187.149.136.226 878652bf-e8d8-4d21-8125-1794d5029d64 2020-11-03 20:58:43.288606 44635 1503 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001503'\n 2 \N 187.149.136.226 878652bf-e8d8-4d21-8125-1794d5029d64 2020-11-03 20:58:43.314322 44636 2531 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1503\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 878652bf-e8d8-4d21-8125-1794d5029d64 2020-11-03 20:58:43.33783 44637 454 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-189\namount: !ruby/object:BigDecimal 18:0.7161E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.7161E4\nobservations: ''\npurchase_date: 2020-11-03\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-189 por $ 7161.0 MXN creada. 187.149.136.226 12f00619-b674-4b0b-a113-d01207c8f9f9 2020-11-03 20:58:59.945361 44638 2525 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 12f00619-b674-4b0b-a113-d01207c8f9f9 2020-11-03 20:58:59.968238 44639 2526 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.136.226 12f00619-b674-4b0b-a113-d01207c8f9f9 2020-11-03 20:58:59.991667 44640 2527 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.136.226 12f00619-b674-4b0b-a113-d01207c8f9f9 2020-11-03 20:59:00.024439 44641 2528 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 12f00619-b674-4b0b-a113-d01207c8f9f9 2020-11-03 20:59:00.046683 44642 2529 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 12f00619-b674-4b0b-a113-d01207c8f9f9 2020-11-03 20:59:00.074068 44643 2530 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 12f00619-b674-4b0b-a113-d01207c8f9f9 2020-11-03 20:59:00.096333 44644 2531 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 12f00619-b674-4b0b-a113-d01207c8f9f9 2020-11-03 20:59:00.119449 44645 1504 Product \N \N 2 User \N create ---\nsku: CHA-1504\nname: CHA-0026\ndescription: CHAMARRA TIPO SASTRE CON PIEL NEGRA LC\nprice_base: !ruby/object:BigDecimal 18:0.3245E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-1504 fue creado. 187.149.136.226 1077d2cc-cf81-4f8a-9a57-a1b9806a82b3 2020-11-03 21:04:05.096158 44646 1504 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001504'\n 2 \N 187.149.136.226 1077d2cc-cf81-4f8a-9a57-a1b9806a82b3 2020-11-03 21:04:05.127846 44647 2532 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1504\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 1077d2cc-cf81-4f8a-9a57-a1b9806a82b3 2020-11-03 21:04:05.154431 44648 1505 Product \N \N 2 User \N create ---\nsku: BLU-1505\nname: BLS-0157\ndescription: PLAYERA NEGRA CON PEDRERIA LC\nprice_base: !ruby/object:BigDecimal 18:0.209E3\nprice_sale: !ruby/object:BigDecimal 18:0.529E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1505 fue creado. 187.149.136.226 5cc69ef2-6920-4dfd-bb7a-d229d4145b8e 2020-11-03 21:05:05.049119 44649 1505 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001505'\n 2 \N 187.149.136.226 5cc69ef2-6920-4dfd-bb7a-d229d4145b8e 2020-11-03 21:05:05.083064 44650 2533 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1505\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 5cc69ef2-6920-4dfd-bb7a-d229d4145b8e 2020-11-03 21:05:05.111959 44673 2538 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 6777b0de-9d45-4af2-94ef-6725dfa7e92a 2020-11-03 21:14:24.428049 44674 1497 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1497'\n is_parent: false\n sku: BLU-1497\n name: BLS-0152\n description: BLUSA TIPO CORSET NEGRO CON FIGURAS DORADAS MUYMUY 20032\n price_base: '231.0'\n price_sale: '629.0'\n img_product: '09BB988C-A5EA-4355-BC91-149F133FB04F.jpeg'\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001497'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 20:43:40.331177'\n updated_at: &12 2020-11-03 21:18:33.613725643 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1497'\n sku: BLU-1497\n name: BLS-0152\n description: BLUSA TIPO CORSET NEGRO CON FIGURAS DORADAS MUYMUY 20032\n price_base: '231.00'\n price_sale: '629.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 20:43:40.331177'\n updated_at: '2020-11-03 20:43:40.371051'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001497'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1497'\n type: *3\n value: 1497\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1497\n type: *7\n value: BLU-1497\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0152\n type: *8\n value: BLS-0152\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA TIPO CORSET NEGRO CON FIGURAS DORADAS MUYMUY\n 20032\n type: *6\n value: BLUSA TIPO CORSET NEGRO CON FIGURAS DORADAS MUYMUY 20032\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '231.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.231E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '629.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.629E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: '09BB988C-A5EA-4355-BC91-149F133FB04F.jpeg'\n type: *2\n value: '09BB988C-A5EA-4355-BC91-149F133FB04F.jpeg'\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001497'\n type: *2\n value: '0001497'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 20:43:40.331177'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- '09BB988C-A5EA-4355-BC91-149F133FB04F.jpeg'\n 3 El producto BLU-1497 fue modificado. 187.149.136.226 3fa035c2-05b9-4885-956f-8a7482a86936 2020-11-03 21:18:33.662301 44675 1498 Product \N \N 1 User \N update ---\nname:\n- BLS-0154\n- BLS-0153\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1498'\n is_parent: false\n sku: BLU-1498\n name: BLS-0153\n description: PANTIBLUSA MANGA LARGA ROJA Y NEGRA MUYMUY\n price_base: '143.0'\n price_sale: '399.0'\n img_product: 31FDEF93-77DA-44F3-A851-A5BFECA391D3.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001498'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 20:45:14.275827'\n updated_at: &12 2020-11-03 21:20:27.093274450 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1498'\n sku: BLU-1498\n name: BLS-0154\n description: PANTIBLUSA MANGA LARGA ROJA Y NEGRA MUYMUY\n price_base: '143.00'\n price_sale: '399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 20:45:14.275827'\n updated_at: '2020-11-03 20:45:14.313177'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001498'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1498'\n type: *3\n value: 1498\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1498\n type: *7\n value: BLU-1498\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0153\n type: *8\n value: BLS-0153\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTIBLUSA MANGA LARGA ROJA Y NEGRA MUYMUY\n type: *6\n value: PANTIBLUSA MANGA LARGA ROJA Y NEGRA MUYMUY\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '143.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.143E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.399E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 31FDEF93-77DA-44F3-A851-A5BFECA391D3.jpeg\n type: *2\n value: 31FDEF93-77DA-44F3-A851-A5BFECA391D3.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001498'\n type: *2\n value: '0001498'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 20:45:14.275827'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 31FDEF93-77DA-44F3-A851-A5BFECA391D3.jpeg\n 3 El producto BLU-1498 fue modificado. 187.149.136.226 40165e5a-4830-4da9-aa9c-d323b0ed1090 2020-11-03 21:20:27.135843 44651 1506 Product \N \N 2 User \N create ---\nsku: BLU-1506\nname: BLS-0158\ndescription: PANTIBLUSA CON ENCAJE MOSTAZA Y NEGRA LC\nprice_base: !ruby/object:BigDecimal 18:0.165E3\nprice_sale: !ruby/object:BigDecimal 18:0.489E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1506 fue creado. 187.149.136.226 50b4586d-2d52-48ce-8a4b-ac366c315e91 2020-11-03 21:08:02.675156 44652 1506 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001506'\n 2 \N 187.149.136.226 50b4586d-2d52-48ce-8a4b-ac366c315e91 2020-11-03 21:08:02.731012 44653 2534 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1506\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 50b4586d-2d52-48ce-8a4b-ac366c315e91 2020-11-03 21:08:02.760704 44654 1507 Product \N \N 2 User \N create ---\nsku: BLU-1507\nname: BLS-0159\ndescription: BLUSA CON LISTON PAR MOÑO NEGRA Y BEIGE LC\nprice_base: !ruby/object:BigDecimal 18:0.275E3\nprice_sale: !ruby/object:BigDecimal 18:0.749E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1507 fue creado. 187.149.136.226 877fa577-9fe2-4bdb-8303-52ffcef0c81d 2020-11-03 21:09:27.517407 44655 1507 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001507'\n 2 \N 187.149.136.226 877fa577-9fe2-4bdb-8303-52ffcef0c81d 2020-11-03 21:09:27.543175 44656 2535 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1507\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 877fa577-9fe2-4bdb-8303-52ffcef0c81d 2020-11-03 21:09:27.568271 44657 1508 Product \N \N 2 User \N create ---\nsku: FAL-1508\nname: FLD-0036\ndescription: FALDA PIEL NEGRA DE CIERRE ONEBYONE\nprice_base: !ruby/object:BigDecimal 18:0.165E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-1508 fue creado. 187.149.136.226 40c28bf4-5be8-45ab-9378-bc4a9b41d9be 2020-11-03 21:11:19.719582 44658 1508 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001508'\n 2 \N 187.149.136.226 40c28bf4-5be8-45ab-9378-bc4a9b41d9be 2020-11-03 21:11:19.761798 44659 2536 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1508\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 40c28bf4-5be8-45ab-9378-bc4a9b41d9be 2020-11-03 21:11:19.802081 44660 1509 Product \N \N 2 User \N create ---\nsku: FAL-1509\nname: FLD-0037\ndescription: FALDA DE PIEL NEGRA CON ARGOLLAS ONEBYONE\nprice_base: !ruby/object:BigDecimal 18:0.209E3\nprice_sale: !ruby/object:BigDecimal 18:0.589E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-1509 fue creado. 187.149.136.226 3560fd71-e181-4227-91f1-20278a8cfe15 2020-11-03 21:13:34.351044 44661 1509 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001509'\n 2 \N 187.149.136.226 3560fd71-e181-4227-91f1-20278a8cfe15 2020-11-03 21:13:34.37871 44662 2537 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1509\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 3560fd71-e181-4227-91f1-20278a8cfe15 2020-11-03 21:13:34.404114 44663 1510 Product \N \N 2 User \N create ---\nsku: PAN-1510\nname: PNT-0037\ndescription: PANTALON DE PIEL NEGRO ONEBYONE\nprice_base: !ruby/object:BigDecimal 18:0.209E3\nprice_sale: !ruby/object:BigDecimal 18:0.589E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-1510 fue creado. 187.149.136.226 9f9bb5cb-a296-4cd2-8b0f-6039f5a53278 2020-11-03 21:14:17.803102 44664 1510 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001510'\n 2 \N 187.149.136.226 9f9bb5cb-a296-4cd2-8b0f-6039f5a53278 2020-11-03 21:14:17.832032 44665 2538 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1510\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 9f9bb5cb-a296-4cd2-8b0f-6039f5a53278 2020-11-03 21:14:17.859975 44666 455 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-190\namount: !ruby/object:BigDecimal 18:0.64405E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.64405E4\nobservations: ''\npurchase_date: 2020-11-03\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-190 por $ 6440.5 MXN creada. 187.149.136.226 6777b0de-9d45-4af2-94ef-6725dfa7e92a 2020-11-03 21:14:24.275448 44667 2532 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 6777b0de-9d45-4af2-94ef-6725dfa7e92a 2020-11-03 21:14:24.295844 44668 2533 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 6777b0de-9d45-4af2-94ef-6725dfa7e92a 2020-11-03 21:14:24.317361 44669 2534 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.136.226 6777b0de-9d45-4af2-94ef-6725dfa7e92a 2020-11-03 21:14:24.339199 44670 2535 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.136.226 6777b0de-9d45-4af2-94ef-6725dfa7e92a 2020-11-03 21:14:24.360767 44671 2536 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.7E1\n 2 \N 187.149.136.226 6777b0de-9d45-4af2-94ef-6725dfa7e92a 2020-11-03 21:14:24.382062 44672 2537 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.136.226 6777b0de-9d45-4af2-94ef-6725dfa7e92a 2020-11-03 21:14:24.405217 44688 4399 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1152\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 3233\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-770 189.186.91.88 1217720b-1f09-4ed9-9bae-33bf2a72f7f7 2020-11-03 21:47:25.847191 44689 3233 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 0c22ae2d-71bd-49a4-a065-fbb2fc46b6c4 2020-11-03 21:47:27.562401 44690 1511 Product \N \N 2 User \N create ---\nsku: BLU-1511\nname: BLS-0160\ndescription: BLUSA DE LENTEJUELA COLORES TORNASOL APEACH 6141\nprice_base: !ruby/object:BigDecimal 18:0.33E3\nprice_sale: !ruby/object:BigDecimal 18:0.825E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1511 fue creado. 187.149.136.226 3970c300-e067-4837-aea5-5b37fdb1876e 2020-11-03 21:59:19.347999 44691 1511 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001511'\n 2 \N 187.149.136.226 3970c300-e067-4837-aea5-5b37fdb1876e 2020-11-03 21:59:19.394765 44692 2539 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1511\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 3970c300-e067-4837-aea5-5b37fdb1876e 2020-11-03 21:59:19.459277 44693 1512 Product \N \N 2 User \N create ---\nsku: VES-1512\nname: VST-0128\ndescription: VESTIDO NEGRO CON MANGA DE GAZA APEACH 40270\nprice_base: !ruby/object:BigDecimal 18:0.4395E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1512 fue creado. 187.149.136.226 4b4692e0-7fdb-41b4-9118-d7858633b543 2020-11-03 22:01:48.67633 44694 1512 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001512'\n 2 \N 187.149.136.226 4b4692e0-7fdb-41b4-9118-d7858633b543 2020-11-03 22:01:48.705059 44695 2540 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1512\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 4b4692e0-7fdb-41b4-9118-d7858633b543 2020-11-03 22:01:48.731153 44696 1513 Product \N \N 2 User \N create ---\nsku: CHA-1513\nname: CHA-0027\ndescription: JACKET DRESS ROSA APEACH 40338\nprice_base: !ruby/object:BigDecimal 18:0.528E3\nprice_sale: !ruby/object:BigDecimal 18:0.1389E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-1513 fue creado. 187.149.136.226 99a6b179-55e8-4f35-949b-baa8fb407da8 2020-11-03 22:04:29.990535 44697 1513 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001513'\n 2 \N 187.149.136.226 99a6b179-55e8-4f35-949b-baa8fb407da8 2020-11-03 22:04:30.028871 44698 2541 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1513\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 99a6b179-55e8-4f35-949b-baa8fb407da8 2020-11-03 22:04:30.05547 44699 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-01 22:14:02.774637000 Z\n- &1 2020-11-02 22:48:07.154594000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-03 22:04:50.516591643 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945879\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934039\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934039\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945913\n mask_addr: 4294967295\nsign_in_count:\n- 2027\n- 2028\n 4056 \N 200.68.180.185 289a75d2-be1e-4680-bf24-324c5c518aa1 2020-11-03 22:04:50.52397 44700 4 User \N \N 4 User \N update ---\nunique_session_id:\n- N8wyZXkLkC3yRNdNH6xw\n- sGnfYuNFf31NmyWuT67T\n 4057 \N 200.68.180.185 289a75d2-be1e-4680-bf24-324c5c518aa1 2020-11-03 22:04:50.542766 44701 1514 Product \N \N 2 User \N create ---\nsku: VES-1514\nname: VST-0129\ndescription: VESTIDO NEGRO DE LENTEJUELA APEACH 31169\nprice_base: !ruby/object:BigDecimal 18:0.4785E3\nprice_sale: !ruby/object:BigDecimal 18:0.1249E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1514 fue creado. 187.149.136.226 2141c291-4ec5-40d1-a239-6250d2c2587c 2020-11-03 22:12:47.578005 44702 1514 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001514'\n 2 \N 187.149.136.226 2141c291-4ec5-40d1-a239-6250d2c2587c 2020-11-03 22:12:47.611241 44703 2542 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1514\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 2141c291-4ec5-40d1-a239-6250d2c2587c 2020-11-03 22:12:47.636168 44704 1515 Product \N \N 2 User \N create ---\nsku: BLU-1515\nname: BLS-0161\ndescription: BLUSA GRIS PLATA BRILLOSA APEACH 3527\nprice_base: !ruby/object:BigDecimal 18:0.231E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1515 fue creado. 187.149.136.226 02a4b9c0-1eb8-4e7e-a81a-5fc933e36370 2020-11-03 22:14:10.303316 44705 1515 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001515'\n 2 \N 187.149.136.226 02a4b9c0-1eb8-4e7e-a81a-5fc933e36370 2020-11-03 22:14:10.331226 44706 2543 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1515\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 02a4b9c0-1eb8-4e7e-a81a-5fc933e36370 2020-11-03 22:14:10.357584 44778 2554 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 0812c92b-e68d-4270-9907-82e20c759820 2020-11-04 00:05:33.408442 44707 456 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-191\namount: !ruby/object:BigDecimal 18:0.7011E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.7011E4\nobservations: ''\npurchase_date: 2020-11-03\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-191 por $ 7011.0 MXN creada. 187.149.136.226 0b7ac513-b219-47b0-b97d-ffee064a4758 2020-11-03 22:26:52.622051 44708 2539 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.136.226 0b7ac513-b219-47b0-b97d-ffee064a4758 2020-11-03 22:26:52.64547 44709 2540 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 0b7ac513-b219-47b0-b97d-ffee064a4758 2020-11-03 22:26:52.666405 44710 2541 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 0b7ac513-b219-47b0-b97d-ffee064a4758 2020-11-03 22:26:52.686562 44711 2542 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 0b7ac513-b219-47b0-b97d-ffee064a4758 2020-11-03 22:26:52.70736 44712 2543 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 0b7ac513-b219-47b0-b97d-ffee064a4758 2020-11-03 22:26:52.72805 44713 1480 Product \N \N 1 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.889E3\n- !ruby/object:BigDecimal 18:0.879E3\n 4 El producto BLU-1480 fue modificado. 187.149.136.226 ccc7ae29-3f94-492d-bf72-cc5c5c363c25 2020-11-03 22:31:33.628753 44714 1485 Product \N \N 1 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.825E3\n- !ruby/object:BigDecimal 18:0.799E3\n 4 El producto BLU-1485 fue modificado. 187.149.136.226 81b1912e-46c1-4ee0-ae9d-08ab4f422269 2020-11-03 22:32:42.23363 44715 1511 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1511'\n is_parent: false\n sku: BLU-1511\n name: BLS-0160\n description: BLUSA DE LENTEJUELA COLORES TORNASOL APEACH 6141\n price_base: '330.0'\n price_sale: '825.0'\n img_product: D4232A22-6F1B-45C5-860E-D41A07E97465.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001511'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 21:59:19.329394'\n updated_at: &12 2020-11-03 22:35:22.632508462 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1511'\n sku: BLU-1511\n name: BLS-0160\n description: BLUSA DE LENTEJUELA COLORES TORNASOL APEACH 6141\n price_base: '330.00'\n price_sale: '825.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 21:59:19.329394'\n updated_at: '2020-11-03 21:59:19.39064'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001511'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1511'\n type: *3\n value: 1511\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1511\n type: *7\n value: BLU-1511\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0160\n type: *8\n value: BLS-0160\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA DE LENTEJUELA COLORES TORNASOL APEACH 6141\n type: *6\n value: BLUSA DE LENTEJUELA COLORES TORNASOL APEACH 6141\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '330.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.33E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '825.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.825E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: D4232A22-6F1B-45C5-860E-D41A07E97465.jpeg\n type: *2\n value: D4232A22-6F1B-45C5-860E-D41A07E97465.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001511'\n type: *2\n value: '0001511'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 21:59:19.329394'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- D4232A22-6F1B-45C5-860E-D41A07E97465.jpeg\n 3 El producto BLU-1511 fue modificado. 187.149.136.226 255970bf-7397-40b2-88e1-97fb3a3056df 2020-11-03 22:35:22.674403 44716 4400 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1151\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.689E3\nmove_type: '1'\nsale_id: 2993\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.689E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1428 187.149.136.226 7f9f801d-0132-46c2-b235-be33dc23d392 2020-11-03 22:36:08.213824 44717 2993 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.136.226 3d8827dc-bdd9-435d-aab3-f28accb986d4 2020-11-03 22:36:20.84728 44718 3313 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1151\namount: !ruby/object:BigDecimal 18:0.1178E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1178E4\nstatus: 0\ndate_sale: 2020-11-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1579\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 e8f5cb1b-bd2e-405f-b55f-50338294f8f9 2020-11-03 22:50:15.60847 44719 2383 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.136.226 e8f5cb1b-bd2e-405f-b55f-50338294f8f9 2020-11-03 22:50:15.636332 44720 1380 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.136.226 e8f5cb1b-bd2e-405f-b55f-50338294f8f9 2020-11-03 22:50:15.661496 44721 3313 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 85f4416d-d828-4c1d-a88d-83553397001e 2020-11-03 22:50:20.480009 44722 4401 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1151\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1178E4\nmove_type: '1'\nsale_id: 3313\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1579\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.22E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1579 187.149.136.226 85f4416d-d828-4c1d-a88d-83553397001e 2020-11-03 22:50:20.500982 44723 1512 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1512'\n is_parent: false\n sku: VES-1512\n name: VST-0128\n description: VESTIDO NEGRO CON MANGA DE GAZA APEACH 40270\n price_base: '439.5'\n price_sale: '1199.0'\n img_product: F5138F53-7244-4AFE-B65D-C801CB634C15.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001512'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 22:01:48.66488'\n updated_at: &12 2020-11-03 22:57:42.598049183 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1512'\n sku: VES-1512\n name: VST-0128\n description: VESTIDO NEGRO CON MANGA DE GAZA APEACH 40270\n price_base: '439.50'\n price_sale: '1199.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 22:01:48.66488'\n updated_at: '2020-11-03 22:01:48.702535'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001512'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1512'\n type: *3\n value: 1512\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1512\n type: *7\n value: VES-1512\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0128\n type: *8\n value: VST-0128\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO NEGRO CON MANGA DE GAZA APEACH 40270\n type: *6\n value: VESTIDO NEGRO CON MANGA DE GAZA APEACH 40270\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '439.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4395E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1199.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1199E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: F5138F53-7244-4AFE-B65D-C801CB634C15.jpeg\n type: *2\n value: F5138F53-7244-4AFE-B65D-C801CB634C15.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001512'\n type: *2\n value: '0001512'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 22:01:48.66488'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- F5138F53-7244-4AFE-B65D-C801CB634C15.jpeg\n 3 El producto VES-1512 fue modificado. 187.149.136.226 83dee9c6-87cb-4a26-915f-6e881edca247 2020-11-03 22:57:42.653786 44724 1514 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1514'\n is_parent: false\n sku: VES-1514\n name: VST-0129\n description: VESTIDO NEGRO DE LENTEJUELA APEACH 31169\n price_base: '478.5'\n price_sale: '1249.0'\n img_product: 6E60851E-0D86-4FED-8AD9-54D72C8416A6.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001514'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 22:12:47.566767'\n updated_at: &12 2020-11-03 22:58:46.912080785 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1514'\n sku: VES-1514\n name: VST-0129\n description: VESTIDO NEGRO DE LENTEJUELA APEACH 31169\n price_base: '478.50'\n price_sale: '1249.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 22:12:47.566767'\n updated_at: '2020-11-03 22:12:47.608486'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001514'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1514'\n type: *3\n value: 1514\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1514\n type: *7\n value: VES-1514\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0129\n type: *8\n value: VST-0129\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO NEGRO DE LENTEJUELA APEACH 31169\n type: *6\n value: VESTIDO NEGRO DE LENTEJUELA APEACH 31169\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '478.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4785E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1249.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1249E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 6E60851E-0D86-4FED-8AD9-54D72C8416A6.jpeg\n type: *2\n value: 6E60851E-0D86-4FED-8AD9-54D72C8416A6.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001514'\n type: *2\n value: '0001514'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 22:12:47.566767'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 6E60851E-0D86-4FED-8AD9-54D72C8416A6.jpeg\n 3 El producto VES-1514 fue modificado. 187.149.136.226 3faf9422-0934-4a76-98cb-0a321cc6d16e 2020-11-03 22:58:46.963797 44725 1515 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1515'\n is_parent: false\n sku: BLU-1515\n name: BLS-0161\n description: BLUSA GRIS PLATA BRILLOSA APEACH 3527\n price_base: '231.0'\n price_sale: '599.0'\n img_product: B74D3248-32B9-4267-A47E-E90C2FB78212.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001515'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 22:14:10.291435'\n updated_at: &12 2020-11-03 23:01:05.830757720 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1515'\n sku: BLU-1515\n name: BLS-0161\n description: BLUSA GRIS PLATA BRILLOSA APEACH 3527\n price_base: '231.00'\n price_sale: '599.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 22:14:10.291435'\n updated_at: '2020-11-03 22:14:10.327936'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001515'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1515'\n type: *3\n value: 1515\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1515\n type: *7\n value: BLU-1515\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0161\n type: *8\n value: BLS-0161\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA GRIS PLATA BRILLOSA APEACH 3527\n type: *6\n value: BLUSA GRIS PLATA BRILLOSA APEACH 3527\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '231.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.231E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '599.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.599E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: B74D3248-32B9-4267-A47E-E90C2FB78212.jpeg\n type: *2\n value: B74D3248-32B9-4267-A47E-E90C2FB78212.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001515'\n type: *2\n value: '0001515'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 22:14:10.291435'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- B74D3248-32B9-4267-A47E-E90C2FB78212.jpeg\n 3 El producto BLU-1515 fue modificado. 187.149.136.226 ee985b0b-b8d7-4441-a908-97ffd56beb00 2020-11-03 23:01:05.888842 44726 1513 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1513'\n is_parent: false\n sku: CHA-1513\n name: CHA-0027\n description: JACKET DRESS ROSA APEACH 40338\n price_base: '528.0'\n price_sale: '1389.0'\n img_product: 18FED708-6016-4E8F-B2AD-730473256F70.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '24'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001513'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-03 22:04:29.977532'\n updated_at: &12 2020-11-03 23:01:48.709465343 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1513'\n sku: CHA-1513\n name: CHA-0027\n description: JACKET DRESS ROSA APEACH 40338\n price_base: '528.00'\n price_sale: '1389.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-03 22:04:29.977532'\n updated_at: '2020-11-03 22:04:30.02589'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001513'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '24'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1513'\n type: *3\n value: 1513\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CHA-1513\n type: *7\n value: CHA-1513\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: CHA-0027\n type: *8\n value: CHA-0027\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: JACKET DRESS ROSA APEACH 40338\n type: *6\n value: JACKET DRESS ROSA APEACH 40338\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '528.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.528E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1389.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1389E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 18FED708-6016-4E8F-B2AD-730473256F70.jpeg\n type: *2\n value: 18FED708-6016-4E8F-B2AD-730473256F70.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '24'\n type: *3\n value: 24\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001513'\n type: *2\n value: '0001513'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-03 22:04:29.977532'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 18FED708-6016-4E8F-B2AD-730473256F70.jpeg\n 3 El producto CHA-1513 fue modificado. 187.149.136.226 52060b38-433e-49ee-b60d-8756b7fd9642 2020-11-03 23:01:48.755257 44727 1516 Product \N \N 2 User \N create ---\nsku: VES-1516\nname: VST-0130\ndescription: 'VESTIDO DE COLORES VOILA '\nprice_base: !ruby/object:BigDecimal 18:0.44E3\nprice_sale: !ruby/object:BigDecimal 18:0.1069E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1516 fue creado. 187.149.136.226 581af77d-30f0-4f8e-9678-0a81645568a4 2020-11-03 23:14:43.098465 44728 1516 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001516'\n 2 \N 187.149.136.226 581af77d-30f0-4f8e-9678-0a81645568a4 2020-11-03 23:14:43.131724 44729 2544 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1516\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 581af77d-30f0-4f8e-9678-0a81645568a4 2020-11-03 23:14:43.161801 44730 1517 Product \N \N 2 User \N create ---\nsku: VES-1517\nname: VST-0131\ndescription: VESTIDO NEGRO CON TIRAS DE BRILLOS EN HOMBRO Y ESPALDA VOILA\nprice_base: !ruby/object:BigDecimal 18:0.44E3\nprice_sale: !ruby/object:BigDecimal 18:0.1249E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1517 fue creado. 187.149.136.226 4444649a-cd02-4f43-8346-e0ea26ec7d42 2020-11-03 23:25:22.378252 44731 1517 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001517'\n 2 \N 187.149.136.226 4444649a-cd02-4f43-8346-e0ea26ec7d42 2020-11-03 23:25:22.405481 44732 2545 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1517\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 4444649a-cd02-4f43-8346-e0ea26ec7d42 2020-11-03 23:25:22.430284 44733 1518 Product \N \N 2 User \N create ---\nsku: FAL-1518\nname: FLD-0038\ndescription: FALDA A CUADROS GRIS BALBOA\nprice_base: !ruby/object:BigDecimal 18:0.297E3\nprice_sale: !ruby/object:BigDecimal 18:0.749E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-1518 fue creado. 187.149.136.226 cb03e222-e326-41bd-9ab6-db12701010db 2020-11-03 23:28:32.272769 44734 1518 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001518'\n 2 \N 187.149.136.226 cb03e222-e326-41bd-9ab6-db12701010db 2020-11-03 23:28:32.299926 44735 2546 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1518\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 cb03e222-e326-41bd-9ab6-db12701010db 2020-11-03 23:28:32.32745 44736 1519 Product \N \N 2 User \N create ---\nsku: CHA-1519\nname: CHA-0028\ndescription: SUETER NEGRO CON BOTON DORADO BALBOA\nprice_base: !ruby/object:BigDecimal 18:0.231E3\nprice_sale: !ruby/object:BigDecimal 18:0.579E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-1519 fue creado. 187.149.136.226 181a7392-b0a4-4d6b-aa4b-f8c5545a51b4 2020-11-03 23:30:40.149035 44737 1519 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001519'\n 2 \N 187.149.136.226 181a7392-b0a4-4d6b-aa4b-f8c5545a51b4 2020-11-03 23:30:40.175125 44738 2547 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1519\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 181a7392-b0a4-4d6b-aa4b-f8c5545a51b4 2020-11-03 23:30:40.210949 44739 1520 Product \N \N 2 User \N create ---\nsku: VES-1520\nname: VST-0132\ndescription: VESTIDO TEJIDO GRIS PLATA THINKABLE\nprice_base: !ruby/object:BigDecimal 18:0.3245E3\nprice_sale: !ruby/object:BigDecimal 18:0.811E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1520 fue creado. 187.149.136.226 3df38413-3894-482f-b8f7-3931f145ab79 2020-11-03 23:44:57.284771 44740 1520 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001520'\n 2 \N 187.149.136.226 3df38413-3894-482f-b8f7-3931f145ab79 2020-11-03 23:44:57.313635 44741 2548 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1520\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 3df38413-3894-482f-b8f7-3931f145ab79 2020-11-03 23:44:57.341877 44742 3314 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1152\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-11-03\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-815\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 bbcb0d01-ae87-40cd-b958-8e03cf07543d 2020-11-03 23:48:34.210641 44743 1923 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.91.88 bbcb0d01-ae87-40cd-b958-8e03cf07543d 2020-11-03 23:48:34.23731 44744 3314 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 11f00a50-f3aa-4785-af17-bd3145091e5e 2020-11-03 23:49:08.972582 44745 4402 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1152\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 3314\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-815\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-815 189.186.91.88 11f00a50-f3aa-4785-af17-bd3145091e5e 2020-11-03 23:49:09.003331 44746 1521 Product \N \N 2 User \N create ---\nsku: BLU-1521\nname: BLS-0162\ndescription: PANTIBLUSA MOCA, BLANCO Y NEGRO THINKABLE\nprice_base: !ruby/object:BigDecimal 18:0.3025E3\nprice_sale: !ruby/object:BigDecimal 18:0.759E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1521 fue creado. 187.149.136.226 e0b2df65-33ed-44bb-9ad2-b608bed49511 2020-11-03 23:51:09.425883 44747 1521 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001521'\n 2 \N 187.149.136.226 e0b2df65-33ed-44bb-9ad2-b608bed49511 2020-11-03 23:51:09.451721 44748 2549 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1521\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 e0b2df65-33ed-44bb-9ad2-b608bed49511 2020-11-03 23:51:09.477977 44749 1522 Product \N \N 2 User \N create ---\nsku: CHA-1522\nname: CHA-0029\ndescription: SUETER TIPO BLUSON CON PERLAS THINKABLE\nprice_base: !ruby/object:BigDecimal 18:0.275E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-1522 fue creado. 187.149.136.226 2feb7216-5b0b-4437-a383-e84c58306798 2020-11-03 23:54:42.620308 44750 1522 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001522'\n 2 \N 187.149.136.226 2feb7216-5b0b-4437-a383-e84c58306798 2020-11-03 23:54:42.645525 44751 2550 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1522\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 2feb7216-5b0b-4437-a383-e84c58306798 2020-11-03 23:54:42.669811 44779 2555 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 187.149.136.226 0812c92b-e68d-4270-9907-82e20c759820 2020-11-04 00:05:33.427289 44780 1527 Product \N \N 1 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.19E3\n- !ruby/object:BigDecimal 18:0.18E3\nprice_sale:\n- !ruby/object:BigDecimal 18:0.479E3\n- !ruby/object:BigDecimal 18:0.469E3\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1527'\n is_parent: false\n sku: BLU-1527\n name: BLS-0164\n description: BLUSAS BASICAS ROJAS CUELLO TORTUGA NYLON\n price_base: '180.0'\n price_sale: '469.00'\n img_product: image.jpg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001527'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-04 00:05:10.164707'\n updated_at: &12 2020-11-04 00:08:33.503325117 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1527'\n sku: BLU-1527\n name: BLS-0164\n description: BLUSAS BASICAS ROJAS CUELLO TORTUGA NYLON\n price_base: '190.00'\n price_sale: '479.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-04 00:05:10.164707'\n updated_at: '2020-11-04 00:05:10.203745'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001527'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1527'\n type: *3\n value: 1527\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1527\n type: *7\n value: BLU-1527\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0164\n type: *8\n value: BLS-0164\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSAS BASICAS ROJAS CUELLO TORTUGA NYLON\n type: *6\n value: BLUSAS BASICAS ROJAS CUELLO TORTUGA NYLON\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '180.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.18E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '469.00'\n type: *1\n value: !ruby/object:BigDecimal 18:0.469E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: image.jpg\n type: *2\n value: image.jpg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001527'\n type: *2\n value: '0001527'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-04 00:05:10.164707'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- image.jpg\n 3 El producto BLU-1527 fue modificado. 187.149.136.226 a5786f0d-d5c8-460f-ba79-dc2d8432b4d4 2020-11-04 00:08:33.55077 44752 1523 Product \N \N 2 User \N create ---\nsku: CHA-1523\nname: CHA-0030\ndescription: SUETER TIPO BLUSITA ROSA, IVORY Y NEGRO THINKABLE\nprice_base: !ruby/object:BigDecimal 18:0.1815E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-1523 fue creado. 187.149.136.226 2615e478-b6c4-4a74-835d-6b841deb2364 2020-11-03 23:56:25.66461 44753 1523 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001523'\n 2 \N 187.149.136.226 2615e478-b6c4-4a74-835d-6b841deb2364 2020-11-03 23:56:25.690461 44754 2551 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1523\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 2615e478-b6c4-4a74-835d-6b841deb2364 2020-11-03 23:56:25.71582 44755 1524 Product \N \N 2 User \N create ---\nsku: CHA-1524\nname: CHA-0031\ndescription: SUETER ROSA TEJIDO OLGADO THINKABLE\nprice_base: !ruby/object:BigDecimal 18:0.2805E3\nprice_sale: !ruby/object:BigDecimal 18:0.739E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-1524 fue creado. 187.149.136.226 8a5a1ced-0677-4746-b5ba-909d5d2db334 2020-11-03 23:57:28.020779 44756 1524 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001524'\n 2 \N 187.149.136.226 8a5a1ced-0677-4746-b5ba-909d5d2db334 2020-11-03 23:57:28.04628 44757 2552 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1524\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 8a5a1ced-0677-4746-b5ba-909d5d2db334 2020-11-03 23:57:28.071257 44758 1525 Product \N \N 2 User \N create ---\nsku: BLU-1525\nname: BLS-0163\ndescription: BLUSA TEJIDA NEGRA CON RAYAS ROJAS THINKABLE\nprice_base: !ruby/object:BigDecimal 18:0.264E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1525 fue creado. 187.149.136.226 fc471b5d-da35-4c9c-88f3-9c6e9dd57fdd 2020-11-04 00:00:09.347433 44759 1525 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001525'\n 2 \N 187.149.136.226 fc471b5d-da35-4c9c-88f3-9c6e9dd57fdd 2020-11-04 00:00:09.378692 44760 2553 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1525\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 fc471b5d-da35-4c9c-88f3-9c6e9dd57fdd 2020-11-04 00:00:09.404544 44761 1526 Product \N \N 2 User \N create ---\nsku: CHA-1526\nname: CHA-0032\ndescription: SUETER NEGRO TEJIDO CUELLO DE TORTUGA THINKABLE\nprice_base: !ruby/object:BigDecimal 18:0.2585E3\nprice_sale: !ruby/object:BigDecimal 18:0.649E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 24\nproduct_service_key: '01010101'\n 1 El producto CHA-1526 fue creado. 187.149.136.226 445f7957-fe43-4288-a070-dec4b0330814 2020-11-04 00:02:00.557447 44762 1526 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001526'\n 2 \N 187.149.136.226 445f7957-fe43-4288-a070-dec4b0330814 2020-11-04 00:02:00.587225 44763 2554 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1526\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 445f7957-fe43-4288-a070-dec4b0330814 2020-11-04 00:02:00.616075 44764 1527 Product \N \N 2 User \N create ---\nsku: BLU-1527\nname: BLS-0164\ndescription: BLUSAS BASICAS ROJAS CUELLO TORTUGA NYLON\nprice_base: !ruby/object:BigDecimal 18:0.19E3\nprice_sale: !ruby/object:BigDecimal 18:0.479E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1527 fue creado. 187.149.136.226 fbe7077b-633a-4a29-b0b8-ab950b86b8eb 2020-11-04 00:05:10.176126 44765 1527 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001527'\n 2 \N 187.149.136.226 fbe7077b-633a-4a29-b0b8-ab950b86b8eb 2020-11-04 00:05:10.206864 44766 2555 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1527\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 fbe7077b-633a-4a29-b0b8-ab950b86b8eb 2020-11-04 00:05:10.235148 44767 457 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-192\namount: !ruby/object:BigDecimal 18:0.145625E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.145625E5\nobservations: ''\npurchase_date: 2020-11-03\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-192 por $ 14562.5 MXN creada. 187.149.136.226 0812c92b-e68d-4270-9907-82e20c759820 2020-11-04 00:05:33.167777 44768 2544 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 0812c92b-e68d-4270-9907-82e20c759820 2020-11-04 00:05:33.191223 44769 2545 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 0812c92b-e68d-4270-9907-82e20c759820 2020-11-04 00:05:33.213333 44770 2546 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 0812c92b-e68d-4270-9907-82e20c759820 2020-11-04 00:05:33.236214 44771 2547 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 0812c92b-e68d-4270-9907-82e20c759820 2020-11-04 00:05:33.260704 44772 2548 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.136.226 0812c92b-e68d-4270-9907-82e20c759820 2020-11-04 00:05:33.284559 44773 2549 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.9E1\n 2 \N 187.149.136.226 0812c92b-e68d-4270-9907-82e20c759820 2020-11-04 00:05:33.30896 44792 1528 Product \N \N 2 User \N create ---\nsku: FAL-1528\nname: FLD-0039\ndescription: 'FALDA TIPO SASTRE CON BOTON DE PERLAS BLANCA Y NEGRA '\nprice_base: !ruby/object:BigDecimal 18:0.2805E3\nprice_sale: !ruby/object:BigDecimal 18:0.698E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 11\nproduct_service_key: '01010101'\n 1 El producto FAL-1528 fue creado. 187.149.136.226 d5e7f1fa-2acf-42a9-8316-10c42118e2cc 2020-11-04 00:24:38.669863 44793 1528 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001528'\n 2 \N 187.149.136.226 d5e7f1fa-2acf-42a9-8316-10c42118e2cc 2020-11-04 00:24:38.703082 44794 2556 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1528\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 d5e7f1fa-2acf-42a9-8316-10c42118e2cc 2020-11-04 00:24:38.734857 44795 458 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-193\namount: !ruby/object:BigDecimal 18:0.1683E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1683E4\nobservations: ''\npurchase_date: 2020-11-03\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-193 por $ 1683.0 MXN creada. 187.149.136.226 c43a229b-fb71-45a3-a667-b3ac547519a9 2020-11-04 00:24:44.049151 44796 2556 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 2 \N 187.149.136.226 c43a229b-fb71-45a3-a667-b3ac547519a9 2020-11-04 00:24:44.069315 44797 1528 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1528'\n is_parent: false\n sku: FAL-1528\n name: FLD-0039\n description: 'FALDA TIPO SASTRE CON BOTON DE PERLAS BLANCA Y NEGRA '\n price_base: '280.5'\n price_sale: '698.0'\n img_product: D753B288-CC89-456A-BC7F-4EC4A74AA399.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '11'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001528'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-04 00:24:38.657612'\n updated_at: &12 2020-11-04 00:25:23.772933168 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1528'\n sku: FAL-1528\n name: FLD-0039\n description: 'FALDA TIPO SASTRE CON BOTON DE PERLAS BLANCA Y NEGRA '\n price_base: '280.50'\n price_sale: '698.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-04 00:24:38.657612'\n updated_at: '2020-11-04 00:24:38.699301'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001528'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '11'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1528'\n type: *3\n value: 1528\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: FAL-1528\n type: *7\n value: FAL-1528\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: FLD-0039\n type: *8\n value: FLD-0039\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'FALDA TIPO SASTRE CON BOTON DE PERLAS BLANCA\n Y NEGRA '\n type: *6\n value: 'FALDA TIPO SASTRE CON BOTON DE PERLAS BLANCA Y NEGRA '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '280.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2805E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '698.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.698E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: D753B288-CC89-456A-BC7F-4EC4A74AA399.jpeg\n type: *2\n value: D753B288-CC89-456A-BC7F-4EC4A74AA399.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '11'\n type: *3\n value: 11\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001528'\n type: *2\n value: '0001528'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-04 00:24:38.657612'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- D753B288-CC89-456A-BC7F-4EC4A74AA399.jpeg\n 3 El producto FAL-1528 fue modificado. 187.149.136.226 1f9617b3-81a0-48ae-9b23-642be0d17e99 2020-11-04 00:25:23.829336 44798 30 User \N \N 30 User \N update ---\nlast_sign_in_at:\n- 2020-10-31 19:58:00.702512000 Z\n- &1 2020-11-03 20:35:36.173574000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-04 00:57:32.918989830 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 15\n- 16\n 32 \N 189.186.91.88 a66ba9bb-b7f1-4375-a4b0-a21ba5538c68 2020-11-04 00:57:32.928018 44799 30 User \N \N 30 User \N update ---\nunique_session_id:\n- gSoNEtKuwj3vVe8j5CXE\n- 7yJxxMyPpykdpWYCMqP2\n 33 \N 189.186.91.88 a66ba9bb-b7f1-4375-a4b0-a21ba5538c68 2020-11-04 00:57:32.943645 44800 709 Transfer \N \N 30 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-11-03\nuser_id: 30\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.91.88 6000a659-1f86-4cd1-bb49-d737ae515c7b 2020-11-04 01:01:02.688367 44801 710 Transfer \N \N 30 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-11-03\nuser_id: 30\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.91.88 53d18ada-8ddf-4c04-b841-dd3a031200cb 2020-11-04 01:07:34.852025 44802 709 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-03\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.91.88 81b2f25c-524d-4481-b1ab-8584ce33e906 2020-11-04 01:08:14.537844 44803 993 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.91.88 81b2f25c-524d-4481-b1ab-8584ce33e906 2020-11-04 01:08:14.55727 44804 710 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-03\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.91.88 98b860e8-5e50-472b-83aa-51e8882cc168 2020-11-04 01:08:22.360054 44805 2557 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 725\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 98b860e8-5e50-472b-83aa-51e8882cc168 2020-11-04 01:08:22.383005 44806 1236 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.91.88 98b860e8-5e50-472b-83aa-51e8882cc168 2020-11-04 01:08:22.402167 44807 1128 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 189.186.91.88 98b860e8-5e50-472b-83aa-51e8882cc168 2020-11-04 01:08:22.422023 44808 2558 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 947\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 98b860e8-5e50-472b-83aa-51e8882cc168 2020-11-04 01:08:22.443987 44809 2559 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 870\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 98b860e8-5e50-472b-83aa-51e8882cc168 2020-11-04 01:08:22.467098 44810 2560 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 753\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 98b860e8-5e50-472b-83aa-51e8882cc168 2020-11-04 01:08:22.496531 44811 1151 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.91.88 98b860e8-5e50-472b-83aa-51e8882cc168 2020-11-04 01:08:22.523237 44812 1363 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.9E1\n 4 \N 189.186.91.88 98b860e8-5e50-472b-83aa-51e8882cc168 2020-11-04 01:08:22.548069 44813 1137 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.91.88 98b860e8-5e50-472b-83aa-51e8882cc168 2020-11-04 01:08:22.570953 44814 3315 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1152\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-03\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-816\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 a34e3170-18ce-4569-8075-b368794b9b4c 2020-11-04 01:14:58.747927 44815 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 13 \N 189.186.91.88 a34e3170-18ce-4569-8075-b368794b9b4c 2020-11-04 01:14:58.788336 44816 3315 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 fb208fc2-f697-486e-8c0e-be6912fc1ab1 2020-11-04 01:15:18.943994 44817 4403 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1152\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 3315\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-816\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.18E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-816 189.186.91.88 fb208fc2-f697-486e-8c0e-be6912fc1ab1 2020-11-04 01:15:18.968903 44818 3316 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1152\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-11-03\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-815\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 885d7fb6-f8fb-45da-bd78-93469a167021 2020-11-04 01:17:32.13909 44819 993 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.91.88 885d7fb6-f8fb-45da-bd78-93469a167021 2020-11-04 01:17:32.16337 44820 3316 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 01e0b13a-d202-406f-8576-e99a1167ff5b 2020-11-04 01:17:40.337215 44821 4404 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1152\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 3316\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-815\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-815 189.186.91.88 01e0b13a-d202-406f-8576-e99a1167ff5b 2020-11-04 01:17:40.358001 44822 1529 Product \N \N 30 User \N create ---\nsku: BOL-1529\nname: 2BLCV20389\ndescription: Crossbody Con Aplicación De Cadena En As\nprice_base: !ruby/object:BigDecimal 18:0.5995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1199E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170822656'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: 2BLCV2038.png\ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1529 fue creado. 189.186.91.88 cc89394a-56b3-4289-9094-f364022b3182 2020-11-04 01:39:18.685119 44823 2561 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1529\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 cc89394a-56b3-4289-9094-f364022b3182 2020-11-04 01:39:18.737759 44824 459 Purchase \N \N 30 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-194\namount: !ruby/object:BigDecimal 18:0.5995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.5995E3\nobservations: ''\npurchase_date: 2020-11-03\nuser_id: '30'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-194 por $ 599.5 MXN creada. 189.186.91.88 137fdee2-eeb6-48e4-bc1d-a3fd624e20f5 2020-11-04 01:39:20.688605 44825 2561 AvailableProduct \N \N 30 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 137fdee2-eeb6-48e4-bc1d-a3fd624e20f5 2020-11-04 01:39:20.71166 44826 460 Purchase \N \N 30 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-127\namount: !ruby/object:BigDecimal 18:0.29975E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.29975E4\nobservations: ''\npurchase_date: 2020-11-03\nuser_id: '30'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-127 por $ 2997.5 MXN creada. 189.186.91.88 f459ed4c-0fd8-4e44-92e1-f0105fc9cc12 2020-11-04 01:40:36.438349 44827 2562 AvailableProduct \N \N 30 User \N create ---\nproduct_id: 1529\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 f459ed4c-0fd8-4e44-92e1-f0105fc9cc12 2020-11-04 01:40:36.471079 44828 461 Purchase \N \N 21 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-127\namount: !ruby/object:BigDecimal 18:0.19039E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.19039E5\nobservations: ''\npurchase_date: 2020-11-03\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-127 por $ 19039.0 MXN creada. 189.186.91.88 85ccdf0c-040d-47b2-b7ee-339fc9747d08 2020-11-04 01:41:20.253393 44829 2017 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.6E1\n 18 \N 189.186.91.88 85ccdf0c-040d-47b2-b7ee-339fc9747d08 2020-11-04 01:41:20.27515 44830 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.29E2\n 14 \N 189.186.91.88 85ccdf0c-040d-47b2-b7ee-339fc9747d08 2020-11-04 01:41:20.297816 44831 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-03 05:19:26.304562000 Z\n- &1 2020-11-03 19:46:01.060041000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-04 01:58:15.120821369 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729959\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\nsign_in_count:\n- 340\n- 341\n 682 \N 187.149.136.226 0b9e5010-b68f-44fc-a957-d076e7414762 2020-11-04 01:58:15.128656 44832 1 User \N \N 1 User \N update ---\nunique_session_id:\n- mydmJxk_q_Gufmmsng36\n- LxfoivkChwsJYxHMhCsE\n 683 \N 187.149.136.226 0b9e5010-b68f-44fc-a957-d076e7414762 2020-11-04 01:58:15.143156 44833 3317 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1152\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-11-03\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-818\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 6dcc4329-92e2-455b-aa69-46ae73eac380 2020-11-04 02:18:17.182418 44834 1923 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.91.88 6dcc4329-92e2-455b-aa69-46ae73eac380 2020-11-04 02:18:17.217624 44835 3317 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 2d94b64c-9d22-439c-93b0-d65d1193198d 2020-11-04 02:18:21.141232 44836 4405 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1152\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3317\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-818\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-818 189.186.91.88 2d94b64c-9d22-439c-93b0-d65d1193198d 2020-11-04 02:18:21.168273 45146 1903 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.26.176 e85032d7-170f-4132-a5db-b80ee2e68631 2020-11-06 21:48:40.254606 44837 1176 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1152\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.5794E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 21\nreceived_cash: !ruby/object:BigDecimal 18:0.6E4\ncash_fund: !ruby/object:BigDecimal 18:0.923E3\nphysical_cash: !ruby/object:BigDecimal 18:0.6923E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 b58d60bc-a6ff-4859-9181-f625e9e50371 2020-11-04 02:19:35.568024 44838 1152 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 b58d60bc-a6ff-4859-9181-f625e9e50371 2020-11-04 02:19:35.583596 44839 1177 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1151\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4965E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.971E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3971E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.136.226 9de0854a-44ca-4047-83e3-e4b7a10fb572 2020-11-04 02:33:13.845456 44840 1151 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.136.226 9de0854a-44ca-4047-83e3-e4b7a10fb572 2020-11-04 02:33:13.864792 44841 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-03 19:46:01.060041000 Z\n- &1 2020-11-04 01:58:15.120821000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-04 16:45:05.573762559 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938250\n mask_addr: 4294967295\nsign_in_count:\n- 341\n- 342\n 684 \N 200.68.150.202 4293a015-d787-45cf-9d0e-e79b82f35ab5 2020-11-04 16:45:05.604356 44842 1 User \N \N 1 User \N update ---\nunique_session_id:\n- LxfoivkChwsJYxHMhCsE\n- eT51zXKBwBaaY9hRjfSV\n 685 \N 200.68.150.202 4293a015-d787-45cf-9d0e-e79b82f35ab5 2020-11-04 16:45:05.627981 44843 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-02 23:53:34.648976000 Z\n- &1 2020-11-03 20:24:06.268656000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-04 17:38:12.434337513 Z\nsign_in_count:\n- 330\n- 331\n 663 \N 189.186.91.88 cf14f8d4-9685-4617-a723-414d4c8db2ed 2020-11-04 17:38:12.462604 44844 21 User \N \N 21 User \N update ---\nunique_session_id:\n- zVGjso9syyWCQQmnBXRP\n- J_gmcBH1hhFNRq-9uyCE\n 664 \N 189.186.91.88 cf14f8d4-9685-4617-a723-414d4c8db2ed 2020-11-04 17:38:12.483581 44845 1153 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.923E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 923.0 189.186.91.88 15d6968c-0f22-400f-9e11-d0f0680519e7 2020-11-04 17:42:49.297687 44846 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-04 01:58:15.120821000 Z\n- &1 2020-11-04 16:45:05.573762000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-04 18:46:25.527789584 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938250\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938250\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\nsign_in_count:\n- 342\n- 343\n 686 \N 187.149.136.226 b8f08a7a-cd34-4109-9378-63eb034e3e13 2020-11-04 18:46:25.535283 44847 1 User \N \N 1 User \N update ---\nunique_session_id:\n- eT51zXKBwBaaY9hRjfSV\n- ya8EyG98pRUxJG14RhpS\n 687 \N 187.149.136.226 b8f08a7a-cd34-4109-9378-63eb034e3e13 2020-11-04 18:46:25.551414 44848 4406 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1153\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 3214\ncardnumber: 1256\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-759 189.186.91.88 92417338-bd57-4361-9a9f-75aa563fde3a 2020-11-04 20:50:12.878373 44849 3214 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 a3b9a9d2-d8dc-4667-a4fc-7076a17404d0 2020-11-04 20:50:14.532977 44850 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-02 17:20:30.124432000 Z\n- &1 2020-11-03 18:08:38.414905000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-04 21:29:29.080270451 Z\nsign_in_count:\n- 683\n- 684\n 1371 \N 187.149.136.226 eff427cc-e4f7-4917-8c1b-e1d432bbdde2 2020-11-04 21:29:29.109276 44851 2 User \N \N 2 User \N update ---\nunique_session_id:\n- GqYeBxmRsH5ZoWzoDmwZ\n- D5N1o_EiDwmbyHQLDVGN\n 1372 \N 187.149.136.226 eff427cc-e4f7-4917-8c1b-e1d432bbdde2 2020-11-04 21:29:29.133424 44852 1154 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.971E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 971.0 187.149.136.226 fa88085f-3bb6-42d4-ad5e-ff99a8e33167 2020-11-04 21:32:14.450303 44853 3318 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1154\namount: !ruby/object:BigDecimal 18:0.989E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.989E3\nstatus: 0\ndate_sale: 2020-11-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1580\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 af7d4f89-8821-442c-bee9-969e2f9acd73 2020-11-04 21:32:23.380133 44854 2508 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.136.226 af7d4f89-8821-442c-bee9-969e2f9acd73 2020-11-04 21:32:23.408043 44855 3318 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 8cde9c73-399d-46a7-b374-5545c73ef153 2020-11-04 21:32:28.041327 44856 4407 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1154\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.989E3\nmove_type: '1'\nsale_id: 3318\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1580\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.989E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1580 187.149.136.226 8cde9c73-399d-46a7-b374-5545c73ef153 2020-11-04 21:32:28.063222 44857 3319 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1153\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-11-04\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-819\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 a44dc02a-3279-4332-98b8-8305bc217e10 2020-11-04 22:01:44.97771 44858 2482 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.91.88 a44dc02a-3279-4332-98b8-8305bc217e10 2020-11-04 22:01:45.004022 44859 3319 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 31479dfd-7f1e-474b-9ab6-d3b49a030f3e 2020-11-04 22:03:19.679461 44928 2544 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.136.226 eb94243b-0e24-4bfa-a796-b2a0a7af60da 2020-11-05 19:54:33.959404 44860 4408 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1153\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 3319\ncardnumber: 5556\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-819\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-819 189.186.91.88 31479dfd-7f1e-474b-9ab6-d3b49a030f3e 2020-11-04 22:03:19.703596 44861 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-04 16:45:05.573762000 Z\n- &1 2020-11-04 18:46:25.527789000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-04 22:21:01.967057379 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938250\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\nsign_in_count:\n- 343\n- 344\n 688 \N 187.149.136.226 ce00123e-1ae1-4767-9c93-b5493c926ff5 2020-11-04 22:21:01.986443 44862 1 User \N \N 1 User \N update ---\nunique_session_id:\n- ya8EyG98pRUxJG14RhpS\n- K2CB-VKKPakMMJoLzi2G\n 689 \N 187.149.136.226 ce00123e-1ae1-4767-9c93-b5493c926ff5 2020-11-04 22:21:02.008153 44863 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-03 18:08:38.414905000 Z\n- &1 2020-11-04 21:29:29.080270000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-04 22:31:06.971700149 Z\nsign_in_count:\n- 684\n- 685\n 1373 \N 187.149.136.226 1dee5354-57d0-4346-9ef5-8a18348a3f68 2020-11-04 22:31:06.977322 44864 2 User \N \N 2 User \N update ---\nunique_session_id:\n- D5N1o_EiDwmbyHQLDVGN\n- _krNsQ3sqk6ygzyBMuzL\n 1374 \N 187.149.136.226 1dee5354-57d0-4346-9ef5-8a18348a3f68 2020-11-04 22:31:06.995185 44865 3320 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1154\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-11-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1581\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 5442dbcf-7737-4636-a45e-3d50ac034a7c 2020-11-04 22:33:44.531229 44866 2511 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.136.226 5442dbcf-7737-4636-a45e-3d50ac034a7c 2020-11-04 22:33:44.558725 44867 3320 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 1223a0ca-26db-4b6c-a6c7-7e6b61ffd7b1 2020-11-04 22:33:53.290609 44868 4409 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1154\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 3320\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1581\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1581 187.149.136.226 1223a0ca-26db-4b6c-a6c7-7e6b61ffd7b1 2020-11-04 22:33:53.323292 44869 3321 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1153\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-04\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-820\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 42793b4c-dd3e-4ad1-a08e-6e9896eb4dd4 2020-11-04 22:55:23.437198 44870 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.29E2\n- !ruby/object:BigDecimal 18:0.28E2\n 15 \N 189.186.91.88 42793b4c-dd3e-4ad1-a08e-6e9896eb4dd4 2020-11-04 22:55:23.464559 44871 3321 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 c79b98b9-a90b-4533-b63e-985e610f40da 2020-11-04 22:56:56.756995 44872 4410 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1153\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3321\ncardnumber: 2566\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-820\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-820 189.186.91.88 c79b98b9-a90b-4533-b63e-985e610f40da 2020-11-04 22:56:56.787653 44873 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-02 22:48:07.154594000 Z\n- &1 2020-11-03 22:04:50.516591000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-04 23:39:15.885964171 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934039\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945913\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945913\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2028\n- 2029\n 4058 \N 189.186.91.88 a9bd5e8c-e127-4500-b299-0f1ed92afa64 2020-11-04 23:39:15.894508 44874 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sGnfYuNFf31NmyWuT67T\n- 6YMxsY8S9peuM8jwXXxu\n 4059 \N 189.186.91.88 a9bd5e8c-e127-4500-b299-0f1ed92afa64 2020-11-04 23:39:15.92266 44875 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-04 21:29:29.080270000 Z\n- &1 2020-11-04 22:31:06.971700000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-04 23:46:22.560288617 Z\nsign_in_count:\n- 685\n- 686\n 1375 \N 187.149.136.226 40bb6e5e-fd19-46ac-8ddc-21d978f6762b 2020-11-04 23:46:22.565959 44876 2 User \N \N 2 User \N update ---\nunique_session_id:\n- _krNsQ3sqk6ygzyBMuzL\n- bvgAzXkHfW1x2t4NjcBy\n 1376 \N 187.149.136.226 40bb6e5e-fd19-46ac-8ddc-21d978f6762b 2020-11-04 23:46:22.582338 44877 3322 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1154\namount: !ruby/object:BigDecimal 18:0.1488E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1488E4\nstatus: 0\ndate_sale: 2020-11-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1582\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 8d727a53-02d9-439b-bd34-3b6475b3d6f7 2020-11-05 00:37:57.377528 44878 2519 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 3 \N 187.149.136.226 8d727a53-02d9-439b-bd34-3b6475b3d6f7 2020-11-05 00:37:57.407801 44879 2518 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.136.226 8d727a53-02d9-439b-bd34-3b6475b3d6f7 2020-11-05 00:37:57.430305 44880 3322 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 4d7a9b1c-cee9-4f76-a8aa-571b55c9afd6 2020-11-05 00:38:02.892345 44881 4411 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1154\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1448E4\nmove_type: '1'\nsale_id: 3322\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1582\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1448E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1582 187.149.136.226 4d7a9b1c-cee9-4f76-a8aa-571b55c9afd6 2020-11-05 00:38:02.913729 44882 4411 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1154\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1448E4\nmove_type: '1'\nsale_id: 3322\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1582\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1448E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.136.226 5a07618f-1af0-4e7a-95f9-d77c68e95c92 2020-11-05 00:38:15.624547 44883 4412 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1154\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1488E4\nmove_type: '1'\nsale_id: 3322\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1582\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1488E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1582 187.149.136.226 4182da99-b4b5-4a1a-ac50-4a2198883434 2020-11-05 00:38:24.893491 44884 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-04 18:46:25.527789000 Z\n- &1 2020-11-04 22:21:01.967057000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-05 00:43:22.601119547 Z\nsign_in_count:\n- 344\n- 345\n 690 \N 187.149.136.226 1695c80b-7562-4c72-b703-869303ea377a 2020-11-05 00:43:22.608311 44885 1 User \N \N 1 User \N update ---\nunique_session_id:\n- K2CB-VKKPakMMJoLzi2G\n- uhCb-3ztzeKwdcVYwnxq\n 691 \N 187.149.136.226 1695c80b-7562-4c72-b703-869303ea377a 2020-11-05 00:43:22.62435 44886 711 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-11-04\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.91.88 e2abc131-8a49-4ef7-b457-be27db008691 2020-11-05 00:58:36.389241 44887 712 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-11-04\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.91.88 e4238b93-2003-41e2-8dde-aea757a55d84 2020-11-05 00:59:02.574445 44888 712 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-04\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.136.226 b246e8e8-7003-40a5-90f8-32961ce3c95a 2020-11-05 01:01:29.043002 44889 2563 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 956\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 b246e8e8-7003-40a5-90f8-32961ce3c95a 2020-11-05 01:01:29.072751 44890 711 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-04\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.136.226 fafe3b53-5ba2-4294-80ea-a015bfd12729 2020-11-05 01:01:43.014287 44891 2563 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.136.226 fafe3b53-5ba2-4294-80ea-a015bfd12729 2020-11-05 01:01:43.031924 44892 3323 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1154\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-11-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1583\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 ad9376ed-458a-460e-ada7-487083947052 2020-11-05 01:02:09.896965 44893 2563 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.136.226 ad9376ed-458a-460e-ada7-487083947052 2020-11-05 01:02:09.922209 44894 3323 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 3b73ea34-a30c-40b9-8d6e-b18e9f29300b 2020-11-05 01:02:15.169353 44895 4413 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1154\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 3323\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1583\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1583 187.149.136.226 3b73ea34-a30c-40b9-8d6e-b18e9f29300b 2020-11-05 01:02:15.19297 44896 2531 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.136.226 7dd8c55a-6421-4812-a5ac-a0107bc08486 2020-11-05 01:04:46.994184 44897 713 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-11-04\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.136.226 845ffc96-d5a7-4ca6-abe6-b8757e045648 2020-11-05 01:04:49.034573 44898 462 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-195\namount: !ruby/object:BigDecimal 18:0.4895E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4895E4\nobservations: ''\npurchase_date: 2020-11-04\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-195 por $ 4895.0 MXN creada. 187.149.136.226 a54d83d6-543a-4075-9621-593d729562ff 2020-11-05 01:27:39.958297 44899 2528 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 187.149.136.226 a54d83d6-543a-4075-9621-593d729562ff 2020-11-05 01:27:39.981002 44900 2547 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.136.226 a54d83d6-543a-4075-9621-593d729562ff 2020-11-05 01:27:40.006626 44901 2543 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 187.149.136.226 a54d83d6-543a-4075-9621-593d729562ff 2020-11-05 01:27:40.042426 44902 2509 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.136.226 a54d83d6-543a-4075-9621-593d729562ff 2020-11-05 01:27:40.067319 44903 2507 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.136.226 a54d83d6-543a-4075-9621-593d729562ff 2020-11-05 01:27:40.100586 44904 2545 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 187.149.136.226 a54d83d6-543a-4075-9621-593d729562ff 2020-11-05 01:27:40.127975 44929 1156 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.922E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 922.0 189.186.91.88 436c302e-4bf7-4228-8e79-f61a60aa62f6 2020-11-05 19:55:12.976108 44905 1178 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1154\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4575E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.44E4\ncash_fund: !ruby/object:BigDecimal 18:0.1146E4\nphysical_cash: !ruby/object:BigDecimal 18:0.5546E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.136.226 7673d50d-e28f-42ad-8052-81768f3f6f1b 2020-11-05 01:55:56.093873 44906 1154 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.136.226 7673d50d-e28f-42ad-8052-81768f3f6f1b 2020-11-05 01:55:56.116635 44907 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-01 21:09:00.746929000 Z\n- &1 2020-11-01 21:23:29.137160000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-05 02:03:07.092546392 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938421\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 326\n- 327\n 655 \N 189.186.91.88 6420cbb7-2258-46ee-a52b-a92957fcf7d9 2020-11-05 02:03:07.10109 44908 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Ts8SJ6wyxi-JNis67WUA\n- izTxmzxy9Ch2viemaH4r\n 656 \N 189.186.91.88 6420cbb7-2258-46ee-a52b-a92957fcf7d9 2020-11-05 02:03:07.117771 44909 713 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-04\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.91.88 273ba962-2e67-41e9-a504-a5485927d25c 2020-11-05 02:12:28.272624 44910 2564 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1503\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 273ba962-2e67-41e9-a504-a5485927d25c 2020-11-05 02:12:28.294958 44911 3324 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1153\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-11-04\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-821\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 07d2f11c-f462-421a-9116-20fa545d60eb 2020-11-05 02:13:19.718753 44912 2564 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.91.88 07d2f11c-f462-421a-9116-20fa545d60eb 2020-11-05 02:13:19.74975 44913 3324 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 9313e161-4125-449d-bd46-362e3feba8b0 2020-11-05 02:13:23.789106 44914 4414 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1153\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3324\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-821\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-821 189.186.91.88 9313e161-4125-449d-bd46-362e3feba8b0 2020-11-05 02:13:23.810965 44915 1179 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1153\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.4996E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.922E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1922E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 3f192b7a-8dce-444b-adbe-7a093e5fc9f1 2020-11-05 02:16:12.041459 44916 1153 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 3f192b7a-8dce-444b-adbe-7a093e5fc9f1 2020-11-05 02:16:12.055548 44917 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-03 22:04:50.516591000 Z\n- &1 2020-11-04 23:39:15.885964000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-05 03:25:05.307703090 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945913\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535904\n mask_addr: 4294967295\nsign_in_count:\n- 2029\n- 2030\n 4060 \N 177.228.103.96 b7b48997-752b-4d33-bc43-92a73a6bfa22 2020-11-05 03:25:05.317703 44918 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6YMxsY8S9peuM8jwXXxu\n- 4tGuPkZW2srNyUWPuZm6\n 4061 \N 177.228.103.96 b7b48997-752b-4d33-bc43-92a73a6bfa22 2020-11-05 03:25:05.337792 44919 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-04 22:21:01.967057000 Z\n- &1 2020-11-05 00:43:22.601119000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-05 03:42:01.375899663 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538653\n mask_addr: 4294967295\nsign_in_count:\n- 345\n- 346\n 692 \N 177.228.114.29 e0a4fa60-faea-48bf-ace4-e7478b5ed4e2 2020-11-05 03:42:01.382844 44920 1 User \N \N 1 User \N update ---\nunique_session_id:\n- uhCb-3ztzeKwdcVYwnxq\n- "-ww-ktp6_TJpxAPjR6ie"\n 693 \N 177.228.114.29 e0a4fa60-faea-48bf-ace4-e7478b5ed4e2 2020-11-05 03:42:01.397929 44921 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-05 00:43:22.601119000 Z\n- &1 2020-11-05 03:42:01.375899000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-05 17:13:13.954828195 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538653\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538653\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\nsign_in_count:\n- 346\n- 347\n 694 \N 187.149.136.226 bdcd7fb0-d76e-40cf-bad0-047df4dcb16a 2020-11-05 17:13:13.987707 44922 1 User \N \N 1 User \N update ---\nunique_session_id:\n- "-ww-ktp6_TJpxAPjR6ie"\n- WhNzte9xXtZPxwabZNMj\n 695 \N 187.149.136.226 bdcd7fb0-d76e-40cf-bad0-047df4dcb16a 2020-11-05 17:13:14.013956 44923 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-04 22:31:06.971700000 Z\n- &1 2020-11-04 23:46:22.560288000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-05 18:44:03.653454542 Z\nsign_in_count:\n- 686\n- 687\n 1377 \N 187.149.136.226 65831fb6-da8b-4a2d-bb6a-d8136dacdda6 2020-11-05 18:44:03.660345 44924 2 User \N \N 2 User \N update ---\nunique_session_id:\n- bvgAzXkHfW1x2t4NjcBy\n- P8YzgZBckEsN2v37zvFu\n 1378 \N 187.149.136.226 65831fb6-da8b-4a2d-bb6a-d8136dacdda6 2020-11-05 18:44:03.677375 44925 1155 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1146E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1146.0 187.149.136.226 43efa032-d296-4bc6-ac16-a6f8c1d5dd95 2020-11-05 18:46:14.227632 44926 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-03 20:24:06.268656000 Z\n- &1 2020-11-04 17:38:12.434337000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-05 19:47:50.885476926 Z\nsign_in_count:\n- 331\n- 332\n 665 \N 189.186.91.88 b00e846d-378c-4b77-a5de-3e71bd28f4f6 2020-11-05 19:47:50.936731 44927 21 User \N \N 21 User \N update ---\nunique_session_id:\n- J_gmcBH1hhFNRq-9uyCE\n- K5qSUtGgYydeyFdD7-Rk\n 666 \N 189.186.91.88 b00e846d-378c-4b77-a5de-3e71bd28f4f6 2020-11-05 19:47:50.983867 44930 714 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-11-05\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.136.226 4ae386a7-6a68-4f32-b638-862dc7bf4a74 2020-11-05 19:56:43.36679 44931 714 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-05\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.91.88 1e62565a-583c-4e99-8329-7d5f2cf0ef17 2020-11-05 19:57:02.079196 44932 2565 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1516\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 1e62565a-583c-4e99-8329-7d5f2cf0ef17 2020-11-05 19:57:02.105457 44933 3325 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1156\namount: !ruby/object:BigDecimal 18:0.1069E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1069E4\nstatus: 0\ndate_sale: 2020-11-05\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-822\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 d07eedd8-ffb7-4995-9e21-4b49e5160243 2020-11-05 20:00:14.763355 44934 2565 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.91.88 d07eedd8-ffb7-4995-9e21-4b49e5160243 2020-11-05 20:00:14.792626 44935 3325 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 a009c039-8c3d-4b74-aae0-ab60ca0957d6 2020-11-05 20:00:35.254315 44936 4415 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1156\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1069E4\nmove_type: '1'\nsale_id: 3325\ncardnumber: 5425\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-822\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-822 189.186.91.88 a009c039-8c3d-4b74-aae0-ab60ca0957d6 2020-11-05 20:00:35.277008 44937 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-01 21:23:29.137160000 Z\n- &1 2020-11-05 02:03:07.092546000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-05 20:22:46.819192742 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938426\n mask_addr: 4294967295\nsign_in_count:\n- 327\n- 328\n 657 \N 200.68.151.122 ade1dd5e-5279-430d-9116-aa8a5c672d79 2020-11-05 20:22:46.82706 44938 18 User \N \N 18 User \N update ---\nunique_session_id:\n- izTxmzxy9Ch2viemaH4r\n- cct6jRNHEysNuPTcTvjh\n 658 \N 200.68.151.122 ade1dd5e-5279-430d-9116-aa8a5c672d79 2020-11-05 20:22:46.843193 44939 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-04 23:39:15.885964000 Z\n- &1 2020-11-05 03:25:05.307703000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-05 20:30:42.689565793 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535904\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938426\n mask_addr: 4294967295\nsign_in_count:\n- 2030\n- 2031\n 4062 \N 200.68.151.122 f4194bd4-06fb-4155-94a9-f1523dcf59ab 2020-11-05 20:30:42.700862 44940 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4tGuPkZW2srNyUWPuZm6\n- "-2VAzYRLzJetnb2LYsRb"\n 4063 \N 200.68.151.122 f4194bd4-06fb-4155-94a9-f1523dcf59ab 2020-11-05 20:30:42.729495 44941 2535 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.136.226 cd3485f4-08f1-4044-a8db-5e25fe3c7a20 2020-11-05 20:56:29.954855 44942 715 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-11-05\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.136.226 3e61f73e-56d2-4802-a2a5-85f4caaeaf4c 2020-11-05 20:56:32.229982 44943 715 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-05\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.91.88 c284a380-cf54-4ae3-bdd3-dc6c2e5c2d6b 2020-11-05 20:57:12.980042 44944 2566 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1507\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 c284a380-cf54-4ae3-bdd3-dc6c2e5c2d6b 2020-11-05 20:57:13.005805 44945 716 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-11-05\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 177.228.101.240 9af340a1-d180-4210-bc2c-9491214aacbb 2020-11-05 21:04:00.551394 44946 717 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-11-05\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 177.228.101.240 b87559c3-c243-46a8-90d8-15a2ac83d775 2020-11-05 21:04:48.961686 44947 718 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-11-05\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 177.228.101.240 36b96092-7231-456c-82dc-901b78074a77 2020-11-05 21:05:13.424174 44948 716 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-05\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.136.226 f76b3061-8607-4bd2-9e51-158a62f2371b 2020-11-05 21:05:18.873662 44949 2567 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 955\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 f76b3061-8607-4bd2-9e51-158a62f2371b 2020-11-05 21:05:18.892736 44950 3326 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1155\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-11-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1584\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 6b8289ce-76e2-4590-98b3-e2703e60bbd3 2020-11-05 21:07:46.849564 44951 2567 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.136.226 6b8289ce-76e2-4590-98b3-e2703e60bbd3 2020-11-05 21:07:46.882535 44952 3326 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 6ccbe90b-3221-4679-a2ea-b5b42d2caf59 2020-11-05 21:07:51.680559 44998 1919 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.136.226 09e092a7-e6bd-441b-a5fe-508997448911 2020-11-05 22:23:38.055786 44953 4416 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1155\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3326\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1584\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1584 187.149.136.226 6ccbe90b-3221-4679-a2ea-b5b42d2caf59 2020-11-05 21:07:51.702194 44954 717 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-05\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.136.226 723a847a-20b0-44a5-9af2-8ff10708eb6e 2020-11-05 21:08:43.549114 44955 2567 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.136.226 723a847a-20b0-44a5-9af2-8ff10708eb6e 2020-11-05 21:08:43.576593 44956 2538 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.136.226 903f18a6-1576-4016-92b1-4752adc438d4 2020-11-05 21:12:46.605772 44957 2550 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.136.226 378d8a2f-8696-4d68-acc5-1014854d6523 2020-11-05 21:13:38.378408 44958 719 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-11-05\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.136.226 35e76af4-dd81-4ddd-9390-6fa44be084de 2020-11-05 21:13:49.929405 44959 719 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-05\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.91.88 11e3df71-cafb-4ce9-9115-30301a9fb13f 2020-11-05 21:15:15.820739 44960 2568 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1522\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 11e3df71-cafb-4ce9-9115-30301a9fb13f 2020-11-05 21:15:15.842448 44961 2569 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1510\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 11e3df71-cafb-4ce9-9115-30301a9fb13f 2020-11-05 21:15:15.865301 44962 3327 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1156\namount: !ruby/object:BigDecimal 18:0.2294E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2294E4\nstatus: 0\ndate_sale: 2020-11-05\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-823\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 025f6c53-4a3a-44db-bffe-9c70550bb3b8 2020-11-05 21:20:40.082638 44963 2566 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.91.88 025f6c53-4a3a-44db-bffe-9c70550bb3b8 2020-11-05 21:20:40.124342 44964 2569 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.91.88 025f6c53-4a3a-44db-bffe-9c70550bb3b8 2020-11-05 21:20:40.15251 44965 2568 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.91.88 025f6c53-4a3a-44db-bffe-9c70550bb3b8 2020-11-05 21:20:40.176811 44966 2402 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.91.88 025f6c53-4a3a-44db-bffe-9c70550bb3b8 2020-11-05 21:20:40.202592 44967 1773 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.91.88 025f6c53-4a3a-44db-bffe-9c70550bb3b8 2020-11-05 21:20:40.228332 44968 3327 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 77fb8221-a1e3-47b3-9152-381e42d22938 2020-11-05 21:22:02.660102 44969 4417 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1156\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2294E4\nmove_type: '1'\nsale_id: 3327\ncardnumber: 5451\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-823\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-823 189.186.91.88 77fb8221-a1e3-47b3-9152-381e42d22938 2020-11-05 21:22:02.701039 44970 3328 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1156\namount: !ruby/object:BigDecimal 18:0.169E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.169E3\nstatus: 0\ndate_sale: 2020-11-05\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-824\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 c6920be2-9d3b-4a7c-b7c3-c9713dd7b5a6 2020-11-05 21:24:22.628135 44971 2179 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.91.88 c6920be2-9d3b-4a7c-b7c3-c9713dd7b5a6 2020-11-05 21:24:22.663649 44972 3328 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 8d221769-9161-48ba-af79-ef304ff59d66 2020-11-05 21:24:30.066958 44973 4418 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1156\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.169E3\nmove_type: '1'\nsale_id: 3328\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-824\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-824 189.186.91.88 8d221769-9161-48ba-af79-ef304ff59d66 2020-11-05 21:24:30.091633 44974 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-05 03:42:01.375899000 Z\n- &1 2020-11-05 17:13:13.954828000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-05 21:26:09.529277813 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538653\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946431\n mask_addr: 4294967295\nsign_in_count:\n- 347\n- 348\n 696 \N 200.68.182.191 f7392da2-3dbe-4a2d-b6ff-f7473aebae6a 2020-11-05 21:26:09.538837 44975 1 User \N \N 1 User \N update ---\nunique_session_id:\n- WhNzte9xXtZPxwabZNMj\n- nJPTzZEjzh2dUwJw9WHy\n 697 \N 200.68.182.191 f7392da2-3dbe-4a2d-b6ff-f7473aebae6a 2020-11-05 21:26:09.561661 44999 720 Transfer \N \N 1 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-11-05\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.136.226 340f028b-932b-4d4b-8626-5567fc391575 2020-11-05 22:23:38.31463 44976 4419 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1115\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.54E3\nmove_type: '1'\nsale_id: 3179\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '5242'\n 1 \N 189.186.91.88 149951d2-ae53-40e6-9f3e-b798bfe7f870 2020-11-05 21:28:38.907289 44977 4419 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 1115\n- 1156\n 2 movimiento de efectivo por venta con folio PV3-V-737 189.186.91.88 149951d2-ae53-40e6-9f3e-b798bfe7f870 2020-11-05 21:28:38.931786 44978 3329 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1155\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2020-11-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1585\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 646cc158-5313-4fe0-8e22-a577203bd99a 2020-11-05 21:42:23.880148 44979 1283 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 187.149.136.226 646cc158-5313-4fe0-8e22-a577203bd99a 2020-11-05 21:42:23.913182 44980 3329 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 1b5fa2c0-a386-4f89-9b47-bd00d80bc6f7 2020-11-05 21:42:29.736339 44981 4420 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1155\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 3329\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1585\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1585 187.149.136.226 1b5fa2c0-a386-4f89-9b47-bd00d80bc6f7 2020-11-05 21:42:29.759048 44982 3330 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1155\namount: !ruby/object:BigDecimal 18:0.179E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.179E3\nstatus: 0\ndate_sale: 2020-11-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1586\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 bba83d79-5c86-4ce7-9554-75462b69fcb9 2020-11-05 21:57:31.46785 44983 2134 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.136.226 bba83d79-5c86-4ce7-9554-75462b69fcb9 2020-11-05 21:57:31.516507 44984 3330 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 c075d1e5-10f2-4211-85f7-3115bed82dde 2020-11-05 21:57:37.840894 44985 4421 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1155\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.179E3\nmove_type: '1'\nsale_id: 3330\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1586\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.179E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1586 187.149.136.226 c075d1e5-10f2-4211-85f7-3115bed82dde 2020-11-05 21:57:37.863144 44986 350 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1155\nquantity: !ruby/object:BigDecimal 18:0.288E3\nstatus: 1\nobservations: agua japac $273 comisión oxxo $15 = $288\nexpense_date: 2020-11-05\nexpense_code: PV1-E-243\n 1 Egreso por 288.0 registrado 187.149.136.226 87bae89d-5616-4eac-9c73-b511765fbce9 2020-11-05 22:10:49.707278 44987 4422 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1155\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.288E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 350\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.136.226 87bae89d-5616-4eac-9c73-b511765fbce9 2020-11-05 22:10:49.727918 44988 3331 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1155\namount: !ruby/object:BigDecimal 18:0.811E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.811E3\nstatus: 0\ndate_sale: 2020-11-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1587\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 1a6da25c-5b81-4156-8b3d-7d4c58d0104c 2020-11-05 22:13:29.49078 44989 2548 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.136.226 1a6da25c-5b81-4156-8b3d-7d4c58d0104c 2020-11-05 22:13:29.523923 44990 3331 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 858081d4-26b6-4141-9962-07b7b9e5eaf5 2020-11-05 22:13:43.793159 44991 4423 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1155\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.811E3\nmove_type: '1'\nsale_id: 3331\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1587\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.811E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1587 187.149.136.226 858081d4-26b6-4141-9962-07b7b9e5eaf5 2020-11-05 22:13:43.814949 44992 718 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-05\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.136.226 359a4c38-c753-4f6b-a5d3-c0c324c59945 2020-11-05 22:19:37.018195 44993 2567 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.136.226 359a4c38-c753-4f6b-a5d3-c0c324c59945 2020-11-05 22:19:37.053861 44994 3332 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1156\namount: !ruby/object:BigDecimal 18:0.1168E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1168E4\nstatus: 0\ndate_sale: 2020-11-05\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-825\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 78fa12a8-2787-43ff-8a17-85c8bd488705 2020-11-05 22:22:26.697039 44995 2275 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 5 \N 189.186.91.88 78fa12a8-2787-43ff-8a17-85c8bd488705 2020-11-05 22:22:26.727004 44996 1923 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.91.88 78fa12a8-2787-43ff-8a17-85c8bd488705 2020-11-05 22:22:26.749427 44997 1919 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.136.226 936cef0d-28d4-44e9-8e71-316f9c474bd4 2020-11-05 22:23:32.800274 45000 3332 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 23cd5175-6e25-439c-9434-8d12c9f05efa 2020-11-05 22:23:49.491398 45001 4424 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1156\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1168E4\nmove_type: '1'\nsale_id: 3332\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-825\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1168E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-825 189.186.91.88 23cd5175-6e25-439c-9434-8d12c9f05efa 2020-11-05 22:23:49.518055 45002 720 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-05\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.136.226 5bb76e03-d403-4e05-95f0-1f2ddc9cbc3b 2020-11-05 22:24:07.061273 45003 2570 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 997\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.136.226 5bb76e03-d403-4e05-95f0-1f2ddc9cbc3b 2020-11-05 22:24:07.085212 45004 3333 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1155\namount: !ruby/object:BigDecimal 18:0.1169E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1169E4\nstatus: 0\ndate_sale: 2020-11-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1588\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 7c2921cf-66f4-408d-bea2-67dab93a77a8 2020-11-05 22:24:30.641263 45005 2570 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.136.226 7c2921cf-66f4-408d-bea2-67dab93a77a8 2020-11-05 22:24:30.670434 45006 3333 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 6c2ae802-7fd5-4eea-8ee6-851ec06d2c55 2020-11-05 22:24:34.746809 45007 4425 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1155\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1169E4\nmove_type: '1'\nsale_id: 3333\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1588\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1169E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1588 187.149.136.226 6c2ae802-7fd5-4eea-8ee6-851ec06d2c55 2020-11-05 22:24:34.770314 45008 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-05 17:13:13.954828000 Z\n- &1 2020-11-05 21:26:09.529277000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-05 22:25:11.512101130 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946431\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\nsign_in_count:\n- 348\n- 349\n 698 \N 187.149.136.226 a9cb00e4-1f0f-471f-b973-0e6ed5f58f5e 2020-11-05 22:25:11.521628 45009 1 User \N \N 1 User \N update ---\nunique_session_id:\n- nJPTzZEjzh2dUwJw9WHy\n- wmwLQvJ3PW5DT7mzYuzd\n 699 \N 187.149.136.226 a9cb00e4-1f0f-471f-b973-0e6ed5f58f5e 2020-11-05 22:25:11.538163 45010 2518 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.136.226 32259427-1c7c-41a5-9b73-c850e0fd1ab8 2020-11-05 22:47:39.75936 45011 3334 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1156\namount: !ruby/object:BigDecimal 18:0.1697E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1697E4\nstatus: 0\ndate_sale: 2020-11-05\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-826\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 cb755d51-9419-4967-82e3-f0743d7cd30b 2020-11-05 22:52:10.191811 45012 2206 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.91.88 cb755d51-9419-4967-82e3-f0743d7cd30b 2020-11-05 22:52:10.21984 45013 2275 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 6 \N 189.186.91.88 cb755d51-9419-4967-82e3-f0743d7cd30b 2020-11-05 22:52:10.243972 45014 1923 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.91.88 cb755d51-9419-4967-82e3-f0743d7cd30b 2020-11-05 22:52:10.265366 45015 3334 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-826 cancelada. 189.186.91.88 1e06f533-0c91-4feb-a7c1-ae001c5a83d0 2020-11-05 22:54:35.657706 45016 1923 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.91.88 1e06f533-0c91-4feb-a7c1-ae001c5a83d0 2020-11-05 22:54:35.680888 45017 2275 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.8E1\n 7 \N 189.186.91.88 1e06f533-0c91-4feb-a7c1-ae001c5a83d0 2020-11-05 22:54:35.699712 45018 2206 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.91.88 1e06f533-0c91-4feb-a7c1-ae001c5a83d0 2020-11-05 22:54:35.717831 45019 3335 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1156\namount: !ruby/object:BigDecimal 18:0.1697E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1697E4\nstatus: 0\ndate_sale: 2020-11-05\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-827\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 ac0f0e1e-023a-48c7-9f91-4025abb66433 2020-11-05 22:58:00.74647 45020 2206 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.91.88 ac0f0e1e-023a-48c7-9f91-4025abb66433 2020-11-05 22:58:00.784816 45021 2275 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 8 \N 189.186.91.88 ac0f0e1e-023a-48c7-9f91-4025abb66433 2020-11-05 22:58:00.816071 45022 1923 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.91.88 ac0f0e1e-023a-48c7-9f91-4025abb66433 2020-11-05 22:58:00.839667 45023 3335 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 6246949a-e025-4b1b-9c26-afb4d9ec6d15 2020-11-05 22:59:07.021395 45024 4426 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1156\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1697E4\nmove_type: '1'\nsale_id: 3335\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-827\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.303E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-827 189.186.91.88 6246949a-e025-4b1b-9c26-afb4d9ec6d15 2020-11-05 22:59:07.050723 45073 1155 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.26.176 3d49453b-ace8-44f7-8d6e-6f1f681b04f6 2020-11-06 02:06:37.545443 45025 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-05 21:26:09.529277000 Z\n- &1 2020-11-05 22:25:11.512101000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-05 23:10:11.700338087 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946431\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\nsign_in_count:\n- 349\n- 350\n 700 \N 187.149.136.226 1a5504cf-bfd5-4f2d-83c3-da16c7060b64 2020-11-05 23:10:11.707412 45026 1 User \N \N 1 User \N update ---\nunique_session_id:\n- wmwLQvJ3PW5DT7mzYuzd\n- QSXMratKTsz3mNXKzsXr\n 701 \N 187.149.136.226 1a5504cf-bfd5-4f2d-83c3-da16c7060b64 2020-11-05 23:10:11.724851 45027 1930 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.136.226 21f48cfc-3572-43bf-b086-a3a2c583866d 2020-11-05 23:10:49.754514 45028 1930 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.136.226 33726674-882e-4ea1-997e-316a8f41ea57 2020-11-05 23:10:57.830751 45029 721 Transfer \N \N 1 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-11-05\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.136.226 da3508cf-9070-4f74-8f17-b9358fa95fa5 2020-11-05 23:10:58.881103 45030 721 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-05\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.136.226 4d156434-a6ee-47fd-b9aa-6dd1c8ba33c3 2020-11-05 23:11:27.586316 45031 1626 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.136.226 4d156434-a6ee-47fd-b9aa-6dd1c8ba33c3 2020-11-05 23:11:27.608236 45032 3336 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1155\namount: !ruby/object:BigDecimal 18:0.2497E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2497E4\nstatus: 0\ndate_sale: 2020-11-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1589\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.136.226 4f4606cd-a158-4767-8cce-840e9b038df6 2020-11-05 23:15:09.900384 45033 1626 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.136.226 4f4606cd-a158-4767-8cce-840e9b038df6 2020-11-05 23:15:09.926817 45034 2513 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.136.226 4f4606cd-a158-4767-8cce-840e9b038df6 2020-11-05 23:15:09.947819 45035 2517 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.136.226 4f4606cd-a158-4767-8cce-840e9b038df6 2020-11-05 23:15:09.96918 45036 3336 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.136.226 72eea25c-ab48-4054-a368-0a83ed446198 2020-11-05 23:15:48.425106 45037 4427 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1155\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.2497E4\nmove_type: '1'\nsale_id: 3336\ncardnumber: 4399\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1589\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1589 187.149.136.226 72eea25c-ab48-4054-a368-0a83ed446198 2020-11-05 23:15:48.446378 45038 3337 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1156\namount: !ruby/object:BigDecimal 18:0.2998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2998E4\nstatus: 0\ndate_sale: 2020-11-05\nsaletype: 1\nseller_id: 29\nsale_code: PV3-V-828\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 c167e818-1966-44fe-aefc-26fd1babbe8f 2020-11-05 23:17:39.679722 45039 2506 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.91.88 c167e818-1966-44fe-aefc-26fd1babbe8f 2020-11-05 23:17:39.703949 45040 2375 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 12 \N 189.186.91.88 c167e818-1966-44fe-aefc-26fd1babbe8f 2020-11-05 23:17:39.72473 45041 3337 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 c196f9fd-f9e2-40b0-b83b-b1f1eb65fe40 2020-11-05 23:18:35.32237 45042 4428 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1156\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2998E4\nmove_type: '1'\nsale_id: 3337\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-828\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-828 189.186.91.88 c196f9fd-f9e2-40b0-b83b-b1f1eb65fe40 2020-11-05 23:18:35.353647 45043 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-05 22:25:11.512101000 Z\n- &1 2020-11-05 23:10:11.700338000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-06 00:32:11.366578181 Z\nsign_in_count:\n- 350\n- 351\n 702 \N 187.149.136.226 d8ffdd72-a7d5-4ebc-b0ef-24ae4b190884 2020-11-06 00:32:11.37279 45044 1 User \N \N 1 User \N update ---\nunique_session_id:\n- QSXMratKTsz3mNXKzsXr\n- yvhdKBb8D3jPTYxtuiBA\n 703 \N 187.149.136.226 d8ffdd72-a7d5-4ebc-b0ef-24ae4b190884 2020-11-06 00:32:11.387878 45045 3338 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1156\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-11-05\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-829\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 11e98978-eeee-4d3e-baed-51bbfcc51413 2020-11-06 00:43:14.254187 45046 2047 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.91.88 11e98978-eeee-4d3e-baed-51bbfcc51413 2020-11-06 00:43:14.280933 45047 3338 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 4d401e75-7b35-4804-a00b-a6735eda3bcf 2020-11-06 00:43:19.312682 45048 4429 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1156\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 3338\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-829\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-829 189.186.91.88 4d401e75-7b35-4804-a00b-a6735eda3bcf 2020-11-06 00:43:19.338983 45119 21 User \N \N 21 User \N update ---\nunique_session_id:\n- K5qSUtGgYydeyFdD7-Rk\n- 8bzgd6Wgjr8yzUqGWjAq\n 668 \N 189.186.26.176 3bf6c217-02f2-4801-b0f0-6ab806d8e307 2020-11-06 20:59:26.274715 45049 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-05 03:25:05.307703000 Z\n- &1 2020-11-05 20:30:42.689565000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-06 00:45:13.096033237 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938426\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938426\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2031\n- 2032\n 4064 \N 189.186.91.88 898eb23d-7b03-4934-ad41-7db820d97e8c 2020-11-06 00:45:13.104235 45050 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-2VAzYRLzJetnb2LYsRb"\n- bM52TUSQzQZoiAYLkx1x\n 4065 \N 189.186.91.88 898eb23d-7b03-4934-ad41-7db820d97e8c 2020-11-06 00:45:13.123471 45051 463 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-196\namount: !ruby/object:BigDecimal 18:0.506E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.506E4\nobservations: ''\npurchase_date: 2020-11-05\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-196 por $ 5060.0 MXN creada. 187.149.136.226 b49cbb2e-c7e7-4f44-a873-480b2050f9d2 2020-11-06 01:15:17.800164 45052 2544 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.136.226 b49cbb2e-c7e7-4f44-a873-480b2050f9d2 2020-11-06 01:15:17.822956 45053 2535 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 187.149.136.226 b49cbb2e-c7e7-4f44-a873-480b2050f9d2 2020-11-06 01:15:17.84582 45054 2538 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.136.226 b49cbb2e-c7e7-4f44-a873-480b2050f9d2 2020-11-06 01:15:17.869878 45055 2550 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 187.149.136.226 b49cbb2e-c7e7-4f44-a873-480b2050f9d2 2020-11-06 01:15:17.909208 45056 2513 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.136.226 b49cbb2e-c7e7-4f44-a873-480b2050f9d2 2020-11-06 01:15:17.938025 45057 2525 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 187.149.136.226 b49cbb2e-c7e7-4f44-a873-480b2050f9d2 2020-11-06 01:15:17.963343 45058 2530 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 187.149.136.226 b49cbb2e-c7e7-4f44-a873-480b2050f9d2 2020-11-06 01:15:17.986349 45059 2531 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.136.226 b49cbb2e-c7e7-4f44-a873-480b2050f9d2 2020-11-06 01:15:18.010868 45060 464 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-196\namount: !ruby/object:BigDecimal 18:0.33E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.33E3\nobservations: ''\npurchase_date: 2020-11-05\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-196 por $ 330.0 MXN creada. 187.149.136.226 30ad1e71-42e7-445e-9bfa-4fa54bf025c7 2020-11-06 01:17:18.783125 45061 2513 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.136.226 30ad1e71-42e7-445e-9bfa-4fa54bf025c7 2020-11-06 01:17:18.805715 45062 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-05 23:10:11.700338000 Z\n- &1 2020-11-06 00:32:11.366578000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-06 01:19:50.902941400 Z\nsign_in_count:\n- 351\n- 352\n 704 \N 187.149.136.226 54b10c35-46a2-427d-9fa8-c029e32a923e 2020-11-06 01:19:50.909643 45063 1 User \N \N 1 User \N update ---\nunique_session_id:\n- yvhdKBb8D3jPTYxtuiBA\n- ckLSmBSzreTt1zh3euZU\n 705 \N 187.149.136.226 54b10c35-46a2-427d-9fa8-c029e32a923e 2020-11-06 01:19:50.928608 45064 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-05 02:03:07.092546000 Z\n- &1 2020-11-05 20:22:46.819192000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-06 01:31:43.969347523 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938426\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938426\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 328\n- 329\n 659 \N 189.186.91.88 44a6922b-6795-40ba-a7eb-cdcfecc77cb3 2020-11-06 01:31:43.97754 45065 18 User \N \N 18 User \N update ---\nunique_session_id:\n- cct6jRNHEysNuPTcTvjh\n- 1R1538kG6rZDK_NQSSif\n 660 \N 189.186.91.88 44a6922b-6795-40ba-a7eb-cdcfecc77cb3 2020-11-06 01:31:43.996832 45066 3339 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1156\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-05\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-830\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 badc24fe-0f5e-46ed-b56f-b43f82046ed7 2020-11-06 01:32:15.600899 45067 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.28E2\n- !ruby/object:BigDecimal 18:0.27E2\n 16 \N 189.186.91.88 badc24fe-0f5e-46ed-b56f-b43f82046ed7 2020-11-06 01:32:15.629595 45068 3339 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 443f37bb-fb3b-4976-8721-6dde311eedb7 2020-11-06 01:32:26.590735 45069 4430 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1156\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 3339\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-830\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.18E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-830 189.186.91.88 443f37bb-fb3b-4976-8721-6dde311eedb7 2020-11-06 01:32:26.615937 45070 1180 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1156\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.13333E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.93E4\ncash_fund: !ruby/object:BigDecimal 18:0.1052E4\nphysical_cash: !ruby/object:BigDecimal 18:0.10352E5\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 793e8a20-0104-4445-a4c6-98011af105ec 2020-11-06 01:55:32.482067 45071 1156 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 793e8a20-0104-4445-a4c6-98011af105ec 2020-11-06 01:55:32.499683 45072 1181 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1155\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6754E4\namount_out: !ruby/object:BigDecimal 18:0.288E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.4E4\ncash_fund: !ruby/object:BigDecimal 18:0.1115E4\nphysical_cash: !ruby/object:BigDecimal 18:0.5115E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.26.176 3d49453b-ace8-44f7-8d6e-6f1f681b04f6 2020-11-06 02:06:37.533308 45074 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-06 00:32:11.366578000 Z\n- &1 2020-11-06 01:19:50.902941000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-06 03:58:05.731096880 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538653\n mask_addr: 4294967295\nsign_in_count:\n- 352\n- 353\n 706 \N 177.228.114.29 9e3cdb5a-7b40-4d11-918f-5b4a0643b5b3 2020-11-06 03:58:05.738516 45075 1 User \N \N 1 User \N update ---\nunique_session_id:\n- ckLSmBSzreTt1zh3euZU\n- c7JL6DPPt7rtCkUFso6U\n 707 \N 177.228.114.29 9e3cdb5a-7b40-4d11-918f-5b4a0643b5b3 2020-11-06 03:58:05.754356 45076 1157 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1052E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1052.0 189.186.91.88 46e7b7a8-3c63-4783-95f2-3d36107f5f14 2020-11-06 16:57:20.182761 45077 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-04 23:46:22.560288000 Z\n- &1 2020-11-05 18:44:03.653454000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-06 17:27:25.649506031 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\nsign_in_count:\n- 687\n- 688\n 1379 \N 189.186.26.176 adfdd6c9-76e3-4436-a32e-02ef4c081ea0 2020-11-06 17:27:25.682066 45078 2 User \N \N 2 User \N update ---\nunique_session_id:\n- P8YzgZBckEsN2v37zvFu\n- w5tEJJHmEZPsyHzsJLSx\n 1380 \N 189.186.26.176 adfdd6c9-76e3-4436-a32e-02ef4c081ea0 2020-11-06 17:27:25.706473 45079 1158 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1115E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1115.0 189.186.26.176 37cd0b4c-ea56-4ee2-99ee-3605b8b5596f 2020-11-06 17:27:43.698262 45080 3340 Sale \N \N 2 User \N create ---\ncustomer_id: 312\nuser_id: 2\nopen_cash_register_id: 1158\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-11-06\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1590\nexpiration_date: 2020-12-11\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 f6c3a976-932e-4a21-8408-0940fcd66f54 2020-11-06 17:52:08.79415 45081 2489 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.26.176 f6c3a976-932e-4a21-8408-0940fcd66f54 2020-11-06 17:52:08.823189 45082 4431 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1158\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3340\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1590\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1590 189.186.26.176 e576ee86-a79b-4753-94fe-505cb0eb27c0 2020-11-06 17:52:19.018593 45083 3340 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.26.176 f905dec2-092c-4590-877f-69396ccb8b4a 2020-11-06 17:52:21.30809 45084 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-05 20:30:42.689565000 Z\n- &1 2020-11-06 00:45:13.096033000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-06 18:35:31.339409403 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938426\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984536048\n mask_addr: 4294967295\nsign_in_count:\n- 2032\n- 2033\n 4066 \N 177.228.103.240 526a25ba-bea2-473d-83a9-1c184773538b 2020-11-06 18:35:31.351109 45085 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bM52TUSQzQZoiAYLkx1x\n- zSHDAx7d3V5L49QnqQPn\n 4067 \N 177.228.103.240 526a25ba-bea2-473d-83a9-1c184773538b 2020-11-06 18:35:31.379251 45086 2551 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 3 \N 189.186.26.176 288db3ee-934e-48c7-89f4-daac21f2b963 2020-11-06 18:50:21.949042 45087 722 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-11-06\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.26.176 ca3c0520-38da-4371-8fa8-859cc323fa2d 2020-11-06 18:50:25.022344 45088 722 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-06\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.91.88 224b98a7-8e35-4849-90a0-794b5c799dff 2020-11-06 18:50:48.212828 45089 2571 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1523\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 224b98a7-8e35-4849-90a0-794b5c799dff 2020-11-06 18:50:48.238007 45090 2572 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1490\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 224b98a7-8e35-4849-90a0-794b5c799dff 2020-11-06 18:50:48.260998 45091 426 Customer \N \N 18 User \N create ---\nnick_name: LOLIS GUERRERO\nphone: "(667) 103-0458"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LOLIS GUERRERO fue registrado. 189.186.91.88 716d1668-2cfe-4bea-b17e-ef17b94f01b1 2020-11-06 18:51:59.649954 45092 3341 Sale \N \N 18 User \N create ---\ncustomer_id: 426\nuser_id: 18\nopen_cash_register_id: 1157\namount: !ruby/object:BigDecimal 18:0.1987E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1987E4\nstatus: 0\ndate_sale: 2020-11-06\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-831\nexpiration_date: 2020-12-11\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 a2f5558b-e0f1-4c72-a8df-516f1182057c 2020-11-06 18:53:49.978465 45093 2572 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.91.88 a2f5558b-e0f1-4c72-a8df-516f1182057c 2020-11-06 18:53:50.014106 45094 2571 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.91.88 a2f5558b-e0f1-4c72-a8df-516f1182057c 2020-11-06 18:53:50.054699 45095 1900 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.91.88 a2f5558b-e0f1-4c72-a8df-516f1182057c 2020-11-06 18:53:50.079871 45120 466 Purchase \N \N 21 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-129\namount: !ruby/object:BigDecimal 18:0.297475E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.297475E5\nobservations: ''\npurchase_date: 2020-11-06\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-129 por $ 29747.5 MXN creada. 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:27.905632 45096 4432 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1157\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3341\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-831\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-831 189.186.91.88 64ac9ac9-2f40-4394-a229-ff5a96a61a70 2020-11-06 18:54:10.49377 45097 3341 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 fd80a1b9-aa03-429e-94ff-6a074c53b70d 2020-11-06 18:54:24.878826 45098 4433 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1157\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1427E4\nmove_type: '1'\nsale_id: 3126\ncardnumber: 2255\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-707 189.186.91.88 555da887-73a3-451a-ab9a-41dfc412b8a7 2020-11-06 19:06:34.490217 45099 3126 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 94dded7e-c947-4545-91b3-0f541e836fc9 2020-11-06 19:06:36.199648 45100 3342 Sale \N \N 18 User \N create ---\ncustomer_id: 194\nuser_id: 18\nopen_cash_register_id: 1157\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-11-06\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-832\nexpiration_date: 2020-12-11\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 23bad962-ebe0-4ee5-afb6-9421b582c356 2020-11-06 19:11:15.566566 45101 2506 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.91.88 23bad962-ebe0-4ee5-afb6-9421b582c356 2020-11-06 19:11:15.596949 45102 4434 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1157\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3342\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-832\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-832 189.186.91.88 d118bd51-65fb-4c54-b9d3-6472f37795a6 2020-11-06 19:11:31.847711 45103 3342 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 6948660b-d990-450c-a959-7ff42924a024 2020-11-06 19:11:35.772583 45104 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-05 18:44:03.653454000 Z\n- &1 2020-11-06 17:27:25.649506000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-06 20:47:46.779088610 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\nsign_in_count:\n- 688\n- 689\n 1381 \N 189.186.26.176 25a85ed2-d23b-487c-a772-403c73ca4fbe 2020-11-06 20:47:46.78573 45105 2 User \N \N 2 User \N update ---\nunique_session_id:\n- w5tEJJHmEZPsyHzsJLSx\n- icJC45PiYasjBRXE3mhk\n 1382 \N 189.186.26.176 25a85ed2-d23b-487c-a772-403c73ca4fbe 2020-11-06 20:47:46.801916 45106 2541 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.26.176 55dc6ea8-7e5a-4e3a-ab7b-7c6ea2e2c329 2020-11-06 20:48:54.295638 45107 723 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-11-06\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.26.176 b296b374-eb61-4714-81c3-c6a266fb5961 2020-11-06 20:48:58.244613 45108 723 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-06\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.91.88 a37efbda-dd45-487d-b866-9a5a40f7b2c3 2020-11-06 20:49:31.656392 45109 2573 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1513\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 a37efbda-dd45-487d-b866-9a5a40f7b2c3 2020-11-06 20:49:31.687658 45110 3343 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1157\namount: !ruby/object:BigDecimal 18:0.1389E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1389E4\nstatus: 0\ndate_sale: 2020-11-06\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-833\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 8f96be78-df1a-40c5-b6e7-23fc250ef803 2020-11-06 20:52:00.25807 45111 2573 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.91.88 8f96be78-df1a-40c5-b6e7-23fc250ef803 2020-11-06 20:52:00.288675 45112 3343 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 3804d3fa-ba71-4ad1-a929-081c27f58a47 2020-11-06 20:52:20.584025 45113 4435 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1157\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1389E4\nmove_type: '1'\nsale_id: 3343\ncardnumber: 4425\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-833\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-833 189.186.91.88 3804d3fa-ba71-4ad1-a929-081c27f58a47 2020-11-06 20:52:20.606684 45114 465 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-198\namount: !ruby/object:BigDecimal 18:0.9405E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9405E3\nobservations: ''\npurchase_date: 2020-11-06\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-198 por $ 940.5 MXN creada. 189.186.26.176 2bf7650d-b091-4f0f-8208-cbd463ff1c9a 2020-11-06 20:57:59.592156 45115 2518 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.26.176 2bf7650d-b091-4f0f-8208-cbd463ff1c9a 2020-11-06 20:57:59.619207 45116 2551 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.9E1\n 4 \N 189.186.26.176 2bf7650d-b091-4f0f-8208-cbd463ff1c9a 2020-11-06 20:57:59.643031 45117 2541 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.26.176 2bf7650d-b091-4f0f-8208-cbd463ff1c9a 2020-11-06 20:57:59.668797 45118 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-04 17:38:12.434337000 Z\n- &1 2020-11-05 19:47:50.885476000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-06 20:59:26.249877301 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\nsign_in_count:\n- 332\n- 333\n 667 \N 189.186.26.176 3bf6c217-02f2-4801-b0f0-6ab806d8e307 2020-11-06 20:59:26.257464 45121 2574 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1483\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:27.929901 45122 2575 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1520\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:27.955092 45123 2576 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1494\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:27.979566 45124 2577 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1495\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:28.003515 45125 2578 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1496\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:28.028092 45126 2579 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1501\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:28.060864 45127 2580 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1512\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:28.099247 45128 2581 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1514\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:28.137124 45129 2565 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:28.168472 45130 2572 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:28.191238 45131 2582 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1491\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.9E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:28.216129 45132 2583 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1492\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:28.242116 45133 2584 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1493\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.9E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:28.267814 45134 2585 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1498\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:28.294952 45135 2586 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1499\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:28.319416 45136 2587 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1505\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:28.360652 45137 2588 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1506\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:28.388323 45138 2566 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:28.411216 45139 2589 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1511\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:28.43455 45140 2590 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1521\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.9E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:28.46151 45141 2591 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1525\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 e5c482ac-e649-4cdc-bf9f-48907bafac60 2020-11-06 21:37:28.488938 45142 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-06 17:27:25.649506000 Z\n- &1 2020-11-06 20:47:46.779088000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-06 21:38:02.843962448 Z\nsign_in_count:\n- 689\n- 690\n 1383 \N 189.186.26.176 8476df0a-10b6-4961-ac41-b2c7e14db0a4 2020-11-06 21:38:02.851107 45143 2 User \N \N 2 User \N update ---\nunique_session_id:\n- icJC45PiYasjBRXE3mhk\n- rFE-r_6qCnyNyxadBXHE\n 1384 \N 189.186.26.176 8476df0a-10b6-4961-ac41-b2c7e14db0a4 2020-11-06 21:38:02.873656 45144 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-05 19:47:50.885476000 Z\n- &1 2020-11-06 20:59:26.249877000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-06 21:48:00.008915206 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\nsign_in_count:\n- 333\n- 334\n 669 \N 189.186.26.176 0d6e9dc0-d41b-4a4f-83be-23df3ade758d 2020-11-06 21:48:00.034036 45145 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 8bzgd6Wgjr8yzUqGWjAq\n- rrDLzSSkhMwy_KV_KhZu\n 670 \N 189.186.26.176 0d6e9dc0-d41b-4a4f-83be-23df3ade758d 2020-11-06 21:48:00.055735 45147 1903 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.26.176 2a044e0c-9c8c-46e2-b3d8-837580898ec5 2020-11-06 21:48:43.124687 45148 2283 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.26.176 f295a01e-2688-49fc-9ef2-953d828ba138 2020-11-06 21:48:58.623312 45149 2283 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.26.176 4f72eed0-e237-42a2-9b94-89df34534b15 2020-11-06 21:49:01.935143 45150 2273 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.26.176 a88e949b-1226-4dc7-80ae-4bbafb1ffceb 2020-11-06 21:49:13.435492 45151 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-06 01:19:50.902941000 Z\n- &1 2020-11-06 03:58:05.731096000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-06 21:49:29.203274972 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538653\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538653\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\nsign_in_count:\n- 353\n- 354\n 708 \N 189.186.26.176 10d51368-34e1-4c51-b354-d493f39b8940 2020-11-06 21:49:29.21086 45152 1 User \N \N 1 User \N update ---\nunique_session_id:\n- c7JL6DPPt7rtCkUFso6U\n- goBTtPsagDMvTG4Gszey\n 709 \N 189.186.26.176 10d51368-34e1-4c51-b354-d493f39b8940 2020-11-06 21:49:29.22676 45153 1531 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.26.176 382e3168-9845-4552-aee6-d4c4361e5ebc 2020-11-06 21:50:24.643349 45154 1531 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.26.176 777d2b6f-23a4-4d34-b8ee-e1c658a43c6b 2020-11-06 21:50:29.91046 45155 2284 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.26.176 dd4f8c89-6b8b-4a78-9eb7-9d488a19ebf0 2020-11-06 21:52:02.347781 45156 2015 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.26.176 aee5add2-eb77-4680-8685-4226bff0784f 2020-11-06 21:52:24.932136 45157 2016 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.26.176 9b38b4aa-976d-43b5-ae47-8ba68697b7f8 2020-11-06 21:52:40.731516 45158 2016 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.26.176 50592079-6deb-49de-8404-148d2de5030c 2020-11-06 21:52:49.142455 45159 2291 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.26.176 0f814bd8-cbe4-4f72-98c7-cd6a43c7402a 2020-11-06 21:53:58.143573 45160 2291 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.26.176 a5500de4-060c-47e6-a7e1-f33b63d86118 2020-11-06 21:54:07.11662 45161 2274 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.26.176 5955a481-757f-4003-972c-61012f9f82f5 2020-11-06 21:54:50.79733 45162 1417 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 189.186.26.176 2afc70b9-27a5-456c-a169-d998ac075e61 2020-11-06 21:55:08.838948 45163 1417 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 12 \N 189.186.26.176 1050e39a-42d3-4829-8957-af276d2a09c0 2020-11-06 21:56:09.454107 45164 1903 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.26.176 1a3ecf18-398c-4958-8843-5dc90f742fa3 2020-11-06 21:56:29.936335 45165 2283 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.26.176 1a3ecf18-398c-4958-8843-5dc90f742fa3 2020-11-06 21:56:29.952933 45166 2273 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.26.176 1a3ecf18-398c-4958-8843-5dc90f742fa3 2020-11-06 21:56:29.96907 45167 1531 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.26.176 1a3ecf18-398c-4958-8843-5dc90f742fa3 2020-11-06 21:56:29.987333 45168 2284 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.26.176 1a3ecf18-398c-4958-8843-5dc90f742fa3 2020-11-06 21:56:30.007002 45169 2015 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.26.176 1a3ecf18-398c-4958-8843-5dc90f742fa3 2020-11-06 21:56:30.034975 45170 2016 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.26.176 1a3ecf18-398c-4958-8843-5dc90f742fa3 2020-11-06 21:56:30.051949 45171 2291 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.26.176 1a3ecf18-398c-4958-8843-5dc90f742fa3 2020-11-06 21:56:30.069711 45172 2274 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.26.176 1a3ecf18-398c-4958-8843-5dc90f742fa3 2020-11-06 21:56:30.08988 45173 2015 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.26.176 ef8720c7-00b4-4d53-b0a0-bf665f9824e6 2020-11-06 21:56:44.392395 45174 2274 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.26.176 208e9c77-c816-4cda-90a1-607868661457 2020-11-06 21:56:51.480866 45175 2283 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.26.176 21529f72-e49d-43eb-9dd7-c4a1bbc39680 2020-11-06 21:57:02.323608 45176 1531 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.26.176 993af158-7cf0-45d1-9ecc-deda2202d630 2020-11-06 21:57:43.920081 45177 1531 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.26.176 50bd9d57-b792-4cb0-90fd-d940ea4df3cc 2020-11-06 21:57:48.985607 45178 1903 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.26.176 a148d9af-f854-4f84-9b71-a1e409bba3c9 2020-11-06 21:57:58.556478 45179 1903 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.26.176 8610b5d9-9aa3-4334-8af3-055f6854780d 2020-11-06 21:58:00.8861 45180 1921 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.26.176 09a0bff8-93df-491c-aea9-36ac0269f4c9 2020-11-06 21:58:17.708315 45181 1921 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.26.176 836c3df0-ca63-4a54-9f7b-cd97b1dc871d 2020-11-06 21:58:38.18811 45182 2291 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.26.176 494e14ca-ee91-42a3-95ff-492d988c0642 2020-11-06 21:59:16.779954 45183 2291 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.26.176 6175a856-7511-44b0-b065-d0faa950f053 2020-11-06 21:59:20.839242 45184 2016 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.26.176 ecb1eccd-e2ad-4397-b41f-16cb67d6855d 2020-11-06 21:59:43.930524 45185 2016 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.26.176 96b960ef-b231-4734-812d-47e86087bc08 2020-11-06 21:59:47.777054 45186 2273 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.26.176 e1eb142f-ae88-4753-8864-b5172cbdaf82 2020-11-06 22:00:07.294852 45187 2284 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.26.176 1a45255e-f966-40b1-a38a-28929e8496b1 2020-11-06 22:00:13.784589 45188 724 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-11-06\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.26.176 7dae27c7-c124-4fd5-9f25-3fb92b87cff2 2020-11-06 22:00:15.851062 45189 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-06 20:47:46.779088000 Z\n- &1 2020-11-06 21:38:02.843962000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-06 22:00:40.746198102 Z\nsign_in_count:\n- 690\n- 691\n 1385 \N 189.186.26.176 c842c354-1617-42f3-a133-a7a734230220 2020-11-06 22:00:40.752785 45190 2 User \N \N 2 User \N update ---\nunique_session_id:\n- rFE-r_6qCnyNyxadBXHE\n- Xq_J3SzPEwyG_xyuDxvU\n 1386 \N 189.186.26.176 c842c354-1617-42f3-a133-a7a734230220 2020-11-06 22:00:40.767285 45191 724 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-06\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.26.176 50634e17-c3e3-4e90-b662-9d04821425de 2020-11-06 22:03:31.666114 45192 2235 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.26.176 50634e17-c3e3-4e90-b662-9d04821425de 2020-11-06 22:03:31.684029 45193 2250 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.26.176 50634e17-c3e3-4e90-b662-9d04821425de 2020-11-06 22:03:31.70132 45194 1645 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.26.176 50634e17-c3e3-4e90-b662-9d04821425de 2020-11-06 22:03:31.719018 45195 2261 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.26.176 50634e17-c3e3-4e90-b662-9d04821425de 2020-11-06 22:03:31.736981 45196 2249 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.26.176 50634e17-c3e3-4e90-b662-9d04821425de 2020-11-06 22:03:31.754319 45197 1637 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.26.176 50634e17-c3e3-4e90-b662-9d04821425de 2020-11-06 22:03:31.774129 45198 2592 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1343\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 50634e17-c3e3-4e90-b662-9d04821425de 2020-11-06 22:03:31.793447 45199 2593 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1009\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 50634e17-c3e3-4e90-b662-9d04821425de 2020-11-06 22:03:31.814031 45200 1638 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 189.186.26.176 50634e17-c3e3-4e90-b662-9d04821425de 2020-11-06 22:03:31.830264 45201 1043 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.26.176 50634e17-c3e3-4e90-b662-9d04821425de 2020-11-06 22:03:31.84659 45202 2540 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.26.176 68e5d94d-7a71-4b92-8bd0-b53d9999eb26 2020-11-06 22:03:46.126937 45203 2540 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.26.176 62eb973e-9078-4c83-83bb-ebf18f317cce 2020-11-06 22:03:49.702678 45204 725 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-11-06\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.26.176 fab7a48b-469f-4d31-bfc6-0c20cf20cda8 2020-11-06 22:03:51.203565 45205 3344 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1158\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-11-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1591\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 3a912a63-e63b-463f-a3f2-1ff6df400e7a 2020-11-06 22:04:17.122538 45206 1638 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 189.186.26.176 3a912a63-e63b-463f-a3f2-1ff6df400e7a 2020-11-06 22:04:17.147739 45207 3344 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 5800b1e9-dee5-48b3-8ad7-1f8e35505950 2020-11-06 22:04:31.335025 45208 4436 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1158\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.35E3\nmove_type: '1'\nsale_id: 3344\ncardnumber: 2902\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1591\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1591 189.186.26.176 5800b1e9-dee5-48b3-8ad7-1f8e35505950 2020-11-06 22:04:31.355074 45232 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-06 21:38:02.843962000 Z\n- &1 2020-11-06 22:00:40.746198000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-06 22:30:27.367856645 Z\nsign_in_count:\n- 691\n- 692\n 1387 \N 189.186.26.176 02480d0f-c13f-44a2-b867-339051239cef 2020-11-06 22:30:27.373836 45233 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Xq_J3SzPEwyG_xyuDxvU\n- DdSbp3XPw-AuxSq5TArc\n 1388 \N 189.186.26.176 02480d0f-c13f-44a2-b867-339051239cef 2020-11-06 22:30:27.388721 45209 4437 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1158\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.449E3\nmove_type: '1'\nsale_id: 3344\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1591\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.449E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1591 189.186.26.176 99553463-1a4d-49a0-a964-7fbc70033bd2 2020-11-06 22:04:38.64324 45210 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-06 00:45:13.096033000 Z\n- &1 2020-11-06 18:35:31.339409000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-06 22:11:10.066043668 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984536048\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984536048\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2033\n- 2034\n 4068 \N 189.186.91.88 ae3f45a7-84b5-44ad-b8ef-3df58c102fcb 2020-11-06 22:11:10.074099 45211 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zSHDAx7d3V5L49QnqQPn\n- gcD_hoiwXcUoqRxtyt6H\n 4069 \N 189.186.91.88 ae3f45a7-84b5-44ad-b8ef-3df58c102fcb 2020-11-06 22:11:10.091842 45212 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-06 20:59:26.249877000 Z\n- &1 2020-11-06 21:48:00.008915000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-06 22:11:23.121005666 Z\nsign_in_count:\n- 334\n- 335\n 671 \N 189.186.26.176 746743c2-0153-4faa-8d34-a9fed1d6d1e4 2020-11-06 22:11:23.12741 45213 21 User \N \N 21 User \N update ---\nunique_session_id:\n- rrDLzSSkhMwy_KV_KhZu\n- wSky6PsbapJq-P12MuTy\n 672 \N 189.186.26.176 746743c2-0153-4faa-8d34-a9fed1d6d1e4 2020-11-06 22:11:23.140294 45214 725 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-06\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.26.176 11b1f35e-48a2-4b62-87c8-ed229ecf182c 2020-11-06 22:11:43.336638 45215 2580 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.26.176 11b1f35e-48a2-4b62-87c8-ed229ecf182c 2020-11-06 22:11:43.353639 45216 2283 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.26.176 24f8e582-40a0-4160-81de-adb4248d25dc 2020-11-06 22:13:45.026754 45217 726 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-11-06\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.26.176 6e4d7985-bbf3-4770-bccf-93ae051b8612 2020-11-06 22:14:37.750935 45218 31 User \N \N 4 User \N create ---\nuserid: 'NAYELI '\nfirst_name: 'NAYELI '\nlast_name: BELTRAN\nusertype: G\nemail: beltrannayeli95@gmail.com\nencrypted_password: "$2a$10$FIIXxKoo4P9wIp1XPp/LZOFextBsHqdtFk8qkj0LQNWdTQlJHBr8y"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 3\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.186.91.88 baaf9ff4-9b51-4a74-a552-103344e8937c 2020-11-06 22:18:34.303247 45219 467 Purchase \N \N 21 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-130\namount: !ruby/object:BigDecimal 18:0.107015E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.107015E5\nobservations: ''\npurchase_date: 2020-11-06\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-130 por $ 10701.5 MXN creada. 189.186.26.176 3aae6f58-fbcf-4504-b2be-9325d45c6dd7 2020-11-06 22:21:30.639461 45220 2569 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.26.176 3aae6f58-fbcf-4504-b2be-9325d45c6dd7 2020-11-06 22:21:30.66095 45221 2594 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1504\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 3aae6f58-fbcf-4504-b2be-9325d45c6dd7 2020-11-06 22:21:30.686488 45222 2573 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.26.176 3aae6f58-fbcf-4504-b2be-9325d45c6dd7 2020-11-06 22:21:30.709483 45223 2568 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.26.176 3aae6f58-fbcf-4504-b2be-9325d45c6dd7 2020-11-06 22:21:30.730077 45224 2571 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.8E1\n 3 \N 189.186.26.176 3aae6f58-fbcf-4504-b2be-9325d45c6dd7 2020-11-06 22:21:30.750472 45225 2595 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1518\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 3aae6f58-fbcf-4504-b2be-9325d45c6dd7 2020-11-06 22:21:30.774921 45226 2596 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1526\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 3aae6f58-fbcf-4504-b2be-9325d45c6dd7 2020-11-06 22:21:30.800362 45227 2597 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1524\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 3aae6f58-fbcf-4504-b2be-9325d45c6dd7 2020-11-06 22:21:30.826312 45228 2598 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1487\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 3aae6f58-fbcf-4504-b2be-9325d45c6dd7 2020-11-06 22:21:30.851577 45229 2599 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1528\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 3aae6f58-fbcf-4504-b2be-9325d45c6dd7 2020-11-06 22:21:30.877152 45230 468 Purchase \N \N 21 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-131\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nobservations: ''\npurchase_date: 2020-11-06\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-131 por $ 649.0 MXN creada. 189.186.26.176 55ce634d-bfd9-4c4c-955c-3cdf3b2fdba8 2020-11-06 22:23:18.280037 45231 2575 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.26.176 55ce634d-bfd9-4c4c-955c-3cdf3b2fdba8 2020-11-06 22:23:18.314118 45256 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 7 \N 189.186.26.176 2440f773-467a-43dd-94d6-77ba4e858647 2020-11-06 23:17:09.271796 45234 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-06 18:35:31.339409000 Z\n- &1 2020-11-06 22:11:10.066043000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-06 22:30:39.247271826 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984536048\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2034\n- 2035\n 4070 \N 189.186.91.88 9e25bdd2-21e9-4f35-a28d-40fd3d4e9572 2020-11-06 22:30:39.259605 45235 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gcD_hoiwXcUoqRxtyt6H\n- ESGzUZeQ6Wq-QQxcy2gY\n 4071 \N 189.186.91.88 9e25bdd2-21e9-4f35-a28d-40fd3d4e9572 2020-11-06 22:30:39.286348 45236 351 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1158\nquantity: !ruby/object:BigDecimal 18:0.18E3\nstatus: 1\nobservations: 6 HORAS EXTRAS ROCIO\nexpense_date: 2020-11-06\nexpense_code: PV1-E-244\n 1 Egreso por 180.0 registrado 189.186.26.176 fc275884-70ed-4097-b9f2-1af7f0467507 2020-11-06 22:31:01.206972 45237 4438 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1158\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.18E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 351\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.26.176 fc275884-70ed-4097-b9f2-1af7f0467507 2020-11-06 22:31:01.230875 45238 32 User \N \N 4 User \N create ---\nuserid: NAYELI1\nfirst_name: 'NAYELI '\nlast_name: BELTRAN\nusertype: G\nemail: beltrannayeli951@gmail.com\nencrypted_password: "$2a$10$9f0Sw4mjkAsrZuA/j5xKKuBQwHdsD53CBfUKv1A/j3DrXdNkdbkuK"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 3\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.186.91.88 6a6d9928-8675-461d-8452-89a029ecff8d 2020-11-06 22:33:06.488389 45239 32 User \N \N 32 User \N update ---\nlast_sign_in_at:\n- \n- &1 2020-11-06 22:33:41.518912031 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 189.186.91.88 684b4450-911b-4eaf-a5ec-8c047880be87 2020-11-06 22:33:41.526229 45240 32 User \N \N 32 User \N update ---\nunique_session_id:\n- \n- 6JUUrugVu6r9Rz67eRRH\n 3 \N 189.186.91.88 684b4450-911b-4eaf-a5ec-8c047880be87 2020-11-06 22:33:41.543917 45241 3345 Sale \N \N 32 User \N create ---\ncustomer_id: 1\nuser_id: 32\nopen_cash_register_id: 1157\namount: !ruby/object:BigDecimal 18:0.1508E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1508E4\nstatus: 0\ndate_sale: 2020-11-06\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-834\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 3c138498-a98e-4c58-ba4b-bc1d9c1dccb9 2020-11-06 22:48:09.009627 45242 2590 AvailableProduct \N \N 32 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 189.186.91.88 3c138498-a98e-4c58-ba4b-bc1d9c1dccb9 2020-11-06 22:48:09.059112 45243 2595 AvailableProduct \N \N 32 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.91.88 3c138498-a98e-4c58-ba4b-bc1d9c1dccb9 2020-11-06 22:48:09.113327 45244 3345 Sale \N \N 32 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 61938f4e-a001-4bd7-a31a-82c17f83e602 2020-11-06 22:48:53.327475 45245 4439 CashRegistersMove \N \N 32 User \N create ---\nopen_cash_register_id: 1157\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1508E4\nmove_type: '1'\nsale_id: 3345\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-834\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1508E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-834 189.186.91.88 61938f4e-a001-4bd7-a31a-82c17f83e602 2020-11-06 22:48:53.350041 45246 3346 Sale \N \N 32 User \N create ---\ncustomer_id: 1\nuser_id: 32\nopen_cash_register_id: 1157\namount: !ruby/object:BigDecimal 18:0.787E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.787E3\nstatus: 0\ndate_sale: 2020-11-06\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-835\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 64fc4a32-8ef6-4773-aa9d-d086c3f04ae9 2020-11-06 22:51:52.412164 45247 2409 AvailableProduct \N \N 32 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.91.88 64fc4a32-8ef6-4773-aa9d-d086c3f04ae9 2020-11-06 22:51:52.445421 45248 2401 AvailableProduct \N \N 32 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.91.88 64fc4a32-8ef6-4773-aa9d-d086c3f04ae9 2020-11-06 22:51:52.47902 45249 2445 AvailableProduct \N \N 32 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.91.88 64fc4a32-8ef6-4773-aa9d-d086c3f04ae9 2020-11-06 22:51:52.503912 45250 3346 Sale \N \N 32 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 2c3a8b79-5428-442c-8ee2-c859087d911e 2020-11-06 22:52:03.032605 45251 4440 CashRegistersMove \N \N 32 User \N create ---\nopen_cash_register_id: 1157\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.787E3\nmove_type: '1'\nsale_id: 3346\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-835\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.787E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-835 189.186.91.88 2c3a8b79-5428-442c-8ee2-c859087d911e 2020-11-06 22:52:03.056092 45252 3347 Sale \N \N 32 User \N create ---\ncustomer_id: 270\nuser_id: 32\nopen_cash_register_id: 1157\namount: !ruby/object:BigDecimal 18:0.143362E4\ntax: !ruby/object:BigDecimal 18:0.16538E3\ndiscount: !ruby/object:BigDecimal 18:0.4E3\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-11-06\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-836\nexpiration_date: 2020-12-11\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 f5721941-3eb6-4e88-9025-2dd49750bbea 2020-11-06 23:00:20.626657 45253 1994 AvailableProduct \N \N 32 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.91.88 f5721941-3eb6-4e88-9025-2dd49750bbea 2020-11-06 23:00:20.652621 45254 4441 CashRegistersMove \N \N 32 User \N create ---\nopen_cash_register_id: 1157\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3347\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-836\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-836 189.186.91.88 336939f8-3fcc-4aa3-b185-dc6b6c6d8427 2020-11-06 23:00:25.662341 45255 3347 Sale \N \N 32 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 3e865e22-b257-4abd-bae8-f126c8a6634f 2020-11-06 23:00:29.279447 45257 727 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-11-06\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.26.176 3b7e153b-67fa-473e-890b-8cf372e976ad 2020-11-06 23:17:11.532856 45258 727 Transfer \N \N 32 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 32\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-06\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.91.88 5ac02480-1293-4872-8172-1f90a1db8c03 2020-11-06 23:17:28.696405 45259 2368 AvailableProduct \N \N 32 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.27E2\n- !ruby/object:BigDecimal 18:0.28E2\n 17 \N 189.186.91.88 5ac02480-1293-4872-8172-1f90a1db8c03 2020-11-06 23:17:28.758638 45260 726 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-06\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.26.176 ea0700a3-92a6-4171-bb44-1e8ec1d43bff 2020-11-06 23:17:38.082552 45261 2235 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.26.176 ea0700a3-92a6-4171-bb44-1e8ec1d43bff 2020-11-06 23:17:38.101052 45262 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-06 22:11:10.066043000 Z\n- &1 2020-11-06 22:30:39.247271000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-06 23:28:29.854220007 Z\nsign_in_count:\n- 2035\n- 2036\n 4072 \N 189.186.91.88 215219eb-b8ec-4c59-b23d-99a3148f6f1e 2020-11-06 23:28:29.861397 45263 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ESGzUZeQ6Wq-QQxcy2gY\n- XHeDFzd2re4RYJcmfYTS\n 4073 \N 189.186.91.88 215219eb-b8ec-4c59-b23d-99a3148f6f1e 2020-11-06 23:28:29.878681 45264 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-05 20:22:46.819192000 Z\n- &1 2020-11-06 01:31:43.969347000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-07 00:01:41.346576498 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938426\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 329\n- 330\n 661 \N 189.186.91.88 0ea0ffd4-e797-4af0-a632-10dba4f40568 2020-11-07 00:01:41.353235 45265 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 1R1538kG6rZDK_NQSSif\n- 3yyPje9kzSz7qwJr5Yax\n 662 \N 189.186.91.88 0ea0ffd4-e797-4af0-a632-10dba4f40568 2020-11-07 00:01:41.369977 45266 3348 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1157\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-11-06\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-837\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 f5a605ca-b682-477a-8a7e-0c0aa8d9c31f 2020-11-07 00:01:56.43788 45267 2266 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 12 \N 189.186.91.88 f5a605ca-b682-477a-8a7e-0c0aa8d9c31f 2020-11-07 00:01:56.480871 45268 3348 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 e930b406-7bc1-471c-af49-f871b74db445 2020-11-07 00:02:06.463818 45269 4442 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1157\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 3348\ncardnumber: 5522\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-837\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-837 189.186.91.88 e930b406-7bc1-471c-af49-f871b74db445 2020-11-07 00:02:06.487464 45270 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-06 22:30:39.247271000 Z\n- &1 2020-11-06 23:28:29.854220000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-07 00:05:29.816956577 Z\nsign_in_count:\n- 2036\n- 2037\n 4074 \N 189.186.91.88 501097a6-e203-442b-8aaf-9605f3960bc1 2020-11-07 00:05:29.824112 45271 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XHeDFzd2re4RYJcmfYTS\n- 4Q3ui3G6UpjBqERjXBhF\n 4075 \N 189.186.91.88 501097a6-e203-442b-8aaf-9605f3960bc1 2020-11-07 00:05:29.841725 45272 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-06 01:31:43.969347000 Z\n- &1 2020-11-07 00:01:41.346576000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-07 00:23:18.721504620 Z\nsign_in_count:\n- 330\n- 331\n 663 \N 189.186.91.88 ab509fc9-533c-4ba6-9369-6f5d8d6bbf7f 2020-11-07 00:23:18.729081 45273 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 3yyPje9kzSz7qwJr5Yax\n- zkzHq16z93XiXNDE6TW6\n 664 \N 189.186.91.88 ab509fc9-533c-4ba6-9369-6f5d8d6bbf7f 2020-11-07 00:23:18.742833 45274 3349 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1157\namount: !ruby/object:BigDecimal 18:0.238E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.238E3\nstatus: 0\ndate_sale: 2020-11-06\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-838\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 9a9b5222-302a-4ba5-8025-8ddf3eafd85e 2020-11-07 00:23:48.38635 45275 2099 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.91.88 9a9b5222-302a-4ba5-8025-8ddf3eafd85e 2020-11-07 00:23:48.414099 45276 2404 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.91.88 9a9b5222-302a-4ba5-8025-8ddf3eafd85e 2020-11-07 00:23:48.439249 45277 3349 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 14bb6e50-02dd-4c70-abaa-9bf2d8d7d887 2020-11-07 00:24:02.055397 45278 4443 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1157\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.238E3\nmove_type: '1'\nsale_id: 3349\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-838\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.62E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-838 189.186.91.88 14bb6e50-02dd-4c70-abaa-9bf2d8d7d887 2020-11-07 00:24:02.078657 45279 3350 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1158\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2020-11-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1592\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 dd8d8e1e-9512-4afc-a975-7f40d4af3a39 2020-11-07 00:25:55.540636 45280 2488 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.26.176 dd8d8e1e-9512-4afc-a975-7f40d4af3a39 2020-11-07 00:25:55.569288 45281 3350 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 e0cd92fb-ea61-4331-874a-cda30b9f5bfa 2020-11-07 00:26:09.123325 45306 1159 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1184E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1184.0 189.186.26.176 35be9b5e-7a9d-4a8f-abda-301f69891504 2020-11-07 02:08:24.715669 45282 4444 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1158\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1699E4\nmove_type: '1'\nsale_id: 3350\ncardnumber: 8036\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1592\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1592 189.186.26.176 e0cd92fb-ea61-4331-874a-cda30b9f5bfa 2020-11-07 00:26:09.146074 45283 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-06 21:48:00.008915000 Z\n- &1 2020-11-06 22:11:23.121005000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-07 00:37:49.714152281 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\nsign_in_count:\n- 335\n- 336\n 673 \N 189.186.227.197 a3c59ce2-a8f3-4e8c-a815-a1c895957233 2020-11-07 00:37:49.72158 45284 21 User \N \N 21 User \N update ---\nunique_session_id:\n- wSky6PsbapJq-P12MuTy\n- qnatYzvz97MX6N8KFhGh\n 674 \N 189.186.227.197 a3c59ce2-a8f3-4e8c-a815-a1c895957233 2020-11-07 00:37:49.738043 45285 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.28E2\n- !ruby/object:BigDecimal 18:0.27E2\n 18 \N 189.186.91.88 adf5604e-0ace-4c2c-beaf-ebaee2dcd14d 2020-11-07 00:48:26.361345 45286 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.27E2\n- !ruby/object:BigDecimal 18:0.21E2\n 19 \N 189.186.91.88 8932ac2d-ff25-46d0-abd7-14eac72aa2d9 2020-11-07 00:48:30.779189 45287 728 Transfer \N \N 18 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-11-06\nuser_id: 18\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.91.88 534da4ec-fe2b-4598-9da3-16d6104dfb12 2020-11-07 00:48:31.770646 45288 3351 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1157\namount: !ruby/object:BigDecimal 18:0.2299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2299E4\nstatus: 0\ndate_sale: 2020-11-06\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-839\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 0034420b-3c61-4809-b535-39af8444eaef 2020-11-07 00:51:40.296568 45289 2411 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.91.88 0034420b-3c61-4809-b535-39af8444eaef 2020-11-07 00:51:40.330353 45290 3351 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 c2c07fd2-f523-40e2-aeef-bb58e0350dbd 2020-11-07 00:51:49.12226 45291 4445 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1157\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.2299E4\nmove_type: '1'\nsale_id: 3351\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-839\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1425'\n 1 movimiento de efectivo por venta con folio PV3-V-839 189.186.91.88 c2c07fd2-f523-40e2-aeef-bb58e0350dbd 2020-11-07 00:51:49.143822 45292 3352 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1157\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-11-06\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-840\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 d986eb4e-f11b-457b-9fb7-180be939221f 2020-11-07 00:52:58.467717 45293 2562 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.91.88 d986eb4e-f11b-457b-9fb7-180be939221f 2020-11-07 00:52:58.501642 45294 3352 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 20521b44-ef04-4853-b071-896595ba5477 2020-11-07 00:53:09.976171 45295 4446 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1157\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 3352\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-840\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1221'\n 1 movimiento de efectivo por venta con folio PV3-V-840 189.186.91.88 20521b44-ef04-4853-b071-896595ba5477 2020-11-07 00:53:10.01284 45296 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-06 23:28:29.854220000 Z\n- &1 2020-11-07 00:05:29.816956000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-07 00:54:45.938636061 Z\nsign_in_count:\n- 2037\n- 2038\n 4076 \N 189.186.91.88 4eeb3221-4e4f-44db-abca-ec2b039fe999 2020-11-07 00:54:45.944543 45297 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4Q3ui3G6UpjBqERjXBhF\n- foEkvzJcxhHJUP8qDExR\n 4077 \N 189.186.91.88 4eeb3221-4e4f-44db-abca-ec2b039fe999 2020-11-07 00:54:45.961672 45298 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-07 00:01:41.346576000 Z\n- &1 2020-11-07 00:23:18.721504000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-07 00:56:43.446576269 Z\nsign_in_count:\n- 331\n- 332\n 665 \N 189.186.91.88 60e80f54-0108-473a-9b11-df1a61398422 2020-11-07 00:56:43.452508 45299 18 User \N \N 18 User \N update ---\nunique_session_id:\n- zkzHq16z93XiXNDE6TW6\n- xzT6Dd5Qn1n5uypEaiTX\n 666 \N 189.186.91.88 60e80f54-0108-473a-9b11-df1a61398422 2020-11-07 00:56:43.466579 45300 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-07 00:05:29.816956000 Z\n- &1 2020-11-07 00:54:45.938636000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-07 01:18:49.095192086 Z\nsign_in_count:\n- 2038\n- 2039\n 4078 \N 189.186.91.88 bebbf585-a8b9-4245-b2d8-cf0d3c2e610b 2020-11-07 01:18:49.101293 45301 4 User \N \N 4 User \N update ---\nunique_session_id:\n- foEkvzJcxhHJUP8qDExR\n- W2mxyatfYeTA1J5XRmbc\n 4079 \N 189.186.91.88 bebbf585-a8b9-4245-b2d8-cf0d3c2e610b 2020-11-07 01:18:49.117596 45302 1182 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1158\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2798E4\namount_out: !ruby/object:BigDecimal 18:0.18E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.1184E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1684E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.26.176 e12777b3-0370-45d3-91cd-23ae9f0aac92 2020-11-07 01:48:08.568656 45303 1158 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.26.176 e12777b3-0370-45d3-91cd-23ae9f0aac92 2020-11-07 01:48:08.583781 45304 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-06 22:00:40.746198000 Z\n- &1 2020-11-06 22:30:27.367856000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-07 02:08:00.917523438 Z\nsign_in_count:\n- 692\n- 693\n 1389 \N 189.186.26.176 c4d1a6c2-de61-4675-a0ca-5a2d27edb721 2020-11-07 02:08:00.924877 45305 2 User \N \N 2 User \N update ---\nunique_session_id:\n- DdSbp3XPw-AuxSq5TArc\n- Eidn8uDn85QpRQLUGShu\n 1390 \N 189.186.26.176 c4d1a6c2-de61-4675-a0ca-5a2d27edb721 2020-11-07 02:08:00.945064 45396 2512 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.26.176 cf7ab2dd-b136-4277-a358-f82581a04de6 2020-11-08 01:02:44.275592 45307 3353 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1159\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1593\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 48ab9a4a-39bc-41ee-bba7-ee287ba41252 2020-11-07 02:08:39.092646 45308 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 8 \N 189.186.26.176 48ab9a4a-39bc-41ee-bba7-ee287ba41252 2020-11-07 02:08:39.122824 45309 3353 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 3f8c8e65-6534-4378-bfbe-a8a3f4e931da 2020-11-07 02:08:43.420684 45310 4447 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1159\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3353\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1593\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1799E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1593 189.186.26.176 3f8c8e65-6534-4378-bfbe-a8a3f4e931da 2020-11-07 02:08:43.4508 45311 1183 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1159\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1799E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.19E4\ncash_fund: !ruby/object:BigDecimal 18:0.1083E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2983E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.26.176 a10a4c87-09f7-4bd0-adaa-35d5815d9df2 2020-11-07 02:10:11.902979 45312 1159 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.26.176 a10a4c87-09f7-4bd0-adaa-35d5815d9df2 2020-11-07 02:10:11.917842 45313 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-07 00:23:18.721504000 Z\n- &1 2020-11-07 00:56:43.446576000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-07 02:18:55.338855310 Z\nsign_in_count:\n- 332\n- 333\n 667 \N 189.186.91.88 1e5d8c64-6c24-47d3-b33b-db6095c5f1a2 2020-11-07 02:18:55.344961 45314 18 User \N \N 18 User \N update ---\nunique_session_id:\n- xzT6Dd5Qn1n5uypEaiTX\n- N7t635nZMy18XTvuVoys\n 668 \N 189.186.91.88 1e5d8c64-6c24-47d3-b33b-db6095c5f1a2 2020-11-07 02:18:55.35947 45315 4448 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1157\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 3193\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-747 189.186.91.88 916a7c2f-6c74-415e-b141-b236f25cd284 2020-11-07 02:19:23.179133 45316 3193 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 ca59df68-a2ab-4101-bbe3-26b299f3d7ee 2020-11-07 02:19:40.392107 45317 3354 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1157\namount: !ruby/object:BigDecimal 18:0.1249E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1249E4\nstatus: 0\ndate_sale: 2020-11-06\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-841\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 bb80cde7-2d8a-484d-ad01-4a594e761769 2020-11-07 02:25:18.662151 45318 2581 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.91.88 bb80cde7-2d8a-484d-ad01-4a594e761769 2020-11-07 02:25:18.69095 45319 3354 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 5b8483b3-886b-457f-ab65-5628a6221fb3 2020-11-07 02:25:25.215538 45320 4449 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1157\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1249E4\nmove_type: '1'\nsale_id: 3354\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-841\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.125E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-841 189.186.91.88 5b8483b3-886b-457f-ab65-5628a6221fb3 2020-11-07 02:25:25.239846 45321 3355 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1157\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-11-06\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-842\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 6e128c9d-649b-4d20-bc6a-ae4c68c4eff0 2020-11-07 02:35:59.633596 45322 2353 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.91.88 6e128c9d-649b-4d20-bc6a-ae4c68c4eff0 2020-11-07 02:35:59.662387 45323 3355 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 afdff7be-edb6-41a7-afcd-7e3ff2047de5 2020-11-07 02:36:17.04465 45324 4450 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1157\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 3355\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-842\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-842 189.186.91.88 afdff7be-edb6-41a7-afcd-7e3ff2047de5 2020-11-07 02:36:17.06702 45325 1184 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1157\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.14093E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.7287E4\ncash_fund: !ruby/object:BigDecimal 18:0.1045E4\nphysical_cash: !ruby/object:BigDecimal 18:0.8332E4\nobservations: SE PUSO VENTA DE $787 EN EFECTIVO Y FUE TERMINAL\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 67f1934e-7101-45ce-a354-da117673c5d8 2020-11-07 02:53:30.212315 45326 1157 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 67f1934e-7101-45ce-a354-da117673c5d8 2020-11-07 02:53:30.231667 45327 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-06 03:58:05.731096000 Z\n- &1 2020-11-06 21:49:29.203274000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-07 03:43:33.577412073 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538653\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729609\n mask_addr: 4294967295\nsign_in_count:\n- 354\n- 355\n 710 \N 201.175.157.201 7091b491-234b-420a-9da0-dba9593a7a47 2020-11-07 03:43:33.606026 45328 1 User \N \N 1 User \N update ---\nunique_session_id:\n- goBTtPsagDMvTG4Gszey\n- zx2sXSuEJD2DpoDWKAuF\n 711 \N 201.175.157.201 7091b491-234b-420a-9da0-dba9593a7a47 2020-11-07 03:43:33.629735 45329 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-07 00:54:45.938636000 Z\n- &1 2020-11-07 01:18:49.095192000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-07 04:45:55.247441243 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535280\n mask_addr: 4294967295\nsign_in_count:\n- 2039\n- 2040\n 4080 \N 177.228.100.240 3bee10cc-31f5-4f6d-8036-d255ed6b833d 2020-11-07 04:45:55.254641 45330 4 User \N \N 4 User \N update ---\nunique_session_id:\n- W2mxyatfYeTA1J5XRmbc\n- fiQgK8zK_GytTfyqv44x\n 4081 \N 177.228.100.240 3bee10cc-31f5-4f6d-8036-d255ed6b833d 2020-11-07 04:45:55.274567 45331 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-06 22:11:23.121005000 Z\n- &1 2020-11-07 00:37:49.714152000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-07 17:01:27.236326421 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 336\n- 337\n 675 \N 189.186.91.88 2224009e-953a-4fa3-9b03-8722f0f1f7a1 2020-11-07 17:01:27.269194 45332 21 User \N \N 21 User \N update ---\nunique_session_id:\n- qnatYzvz97MX6N8KFhGh\n- Kbgc3GBDhkVwovixF66x\n 676 \N 189.186.91.88 2224009e-953a-4fa3-9b03-8722f0f1f7a1 2020-11-07 17:01:27.301999 45333 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-06 22:30:27.367856000 Z\n- &1 2020-11-07 02:08:00.917523000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-07 17:49:37.035541903 Z\nsign_in_count:\n- 693\n- 694\n 1391 \N 189.186.26.176 5429a90a-d060-4c83-9c9b-25115b90d36a 2020-11-07 17:49:37.043442 45334 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Eidn8uDn85QpRQLUGShu\n- nRyY78xBVAAPzLPuA6-R\n 1392 \N 189.186.26.176 5429a90a-d060-4c83-9c9b-25115b90d36a 2020-11-07 17:49:37.061289 45335 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-07 02:08:00.917523000 Z\n- &1 2020-11-07 17:49:37.035541000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-07 17:49:37.454855993 Z\nsign_in_count:\n- 694\n- 695\n 1393 \N 189.186.26.176 6d9fbe5c-1def-4e9f-8668-c4f443c2b05a 2020-11-07 17:49:37.46042 45336 2 User \N \N 2 User \N update ---\nunique_session_id:\n- nRyY78xBVAAPzLPuA6-R\n- fXxNzzyUwxqLMWeASw8z\n 1394 \N 189.186.26.176 6d9fbe5c-1def-4e9f-8668-c4f443c2b05a 2020-11-07 17:49:37.474435 45337 1160 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1083E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1083.0 189.186.26.176 38621827-69eb-4ffd-99ce-46a038b871fa 2020-11-07 17:49:52.926415 45338 3356 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1160\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-11-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1594\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 6887eba2-6247-4531-8c54-cbd770c597a7 2020-11-07 17:52:27.1774 45339 2550 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.26.176 6887eba2-6247-4531-8c54-cbd770c597a7 2020-11-07 17:52:27.205693 45340 3356 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 c38ddedf-99ca-4ac8-a8b4-33bfa0c56ff3 2020-11-07 17:53:06.518666 45341 4451 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1160\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3356\ncardnumber: 5626\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1594\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1594 189.186.26.176 c38ddedf-99ca-4ac8-a8b4-33bfa0c56ff3 2020-11-07 17:53:06.543419 45342 427 Customer \N \N 2 User \N create ---\nnick_name: MARISELA CERVANTES\nphone: "(667) 158-9467"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARISELA CERVANTES fue registrado. 189.186.26.176 64a4c16e-6f0c-4bf4-b809-b334a1506a95 2020-11-07 19:08:33.655543 45343 3357 Sale \N \N 2 User \N create ---\ncustomer_id: 427\nuser_id: 2\nopen_cash_register_id: 1160\namount: !ruby/object:BigDecimal 18:0.2698E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2698E4\nstatus: 0\ndate_sale: 2020-11-07\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1595\nexpiration_date: 2020-12-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 7bac69df-9e8c-4919-821b-a3b4093624de 2020-11-07 19:12:08.895642 45344 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.26.176 7bac69df-9e8c-4919-821b-a3b4093624de 2020-11-07 19:12:08.925131 45345 1283 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 189.186.26.176 7bac69df-9e8c-4919-821b-a3b4093624de 2020-11-07 19:12:08.959448 45346 4452 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1160\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 3357\ncardnumber: 2075\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1595\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1595 189.186.26.176 c33d2bdf-db70-4467-a38e-82d68b39c399 2020-11-07 19:12:48.10882 45347 3357 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.26.176 2085043c-b3f5-4d8f-92f1-b0fcb86182f9 2020-11-07 19:12:52.259129 45348 3358 Sale \N \N 2 User \N create ---\ncustomer_id: 427\nuser_id: 2\nopen_cash_register_id: 1160\namount: !ruby/object:BigDecimal 18:0.698E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.698E3\nstatus: 0\ndate_sale: 2020-11-07\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1596\nexpiration_date: 2020-12-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 68160cdb-0ea3-4aba-876b-b98f350cb4e1 2020-11-07 19:14:26.142172 45349 2556 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.26.176 68160cdb-0ea3-4aba-876b-b98f350cb4e1 2020-11-07 19:14:26.1703 45350 4453 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1160\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 3358\ncardnumber: 2585\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1596\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1596 189.186.26.176 9ca12d3e-be4a-458c-addf-fa6e07baee1a 2020-11-07 19:15:50.911644 45351 3358 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.26.176 60dbcc6d-84be-4845-93e8-5dedf8f7a666 2020-11-07 19:15:53.990955 45352 3359 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1160\namount: !ruby/object:BigDecimal 18:0.698E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.698E3\nstatus: 0\ndate_sale: 2020-11-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1597\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 469ec562-6321-4904-aca6-98fd446b807f 2020-11-07 19:55:28.348939 45353 2556 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.26.176 469ec562-6321-4904-aca6-98fd446b807f 2020-11-07 19:55:28.382306 45354 3359 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 68bbeb06-0abc-4a6e-b257-b056fa1eac3e 2020-11-07 19:55:32.285544 45355 4454 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1160\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.698E3\nmove_type: '1'\nsale_id: 3359\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1597\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.698E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1597 189.186.26.176 68bbeb06-0abc-4a6e-b257-b056fa1eac3e 2020-11-07 19:55:32.325046 45356 3360 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1160\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-11-07\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1598\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 5f689563-0118-4955-a067-869286cb713b 2020-11-07 19:57:33.28414 45357 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 33 \N 189.186.26.176 5f689563-0118-4955-a067-869286cb713b 2020-11-07 19:57:33.326527 45358 3360 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 f87f48e8-c2b2-4257-b6a0-6ecc456bb294 2020-11-07 19:57:51.499841 45359 4455 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1160\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3360\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1598\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SERVICIO A DOMICILIO\n 1 movimiento de efectivo por venta con folio PV1-V-1598 189.186.26.176 f87f48e8-c2b2-4257-b6a0-6ecc456bb294 2020-11-07 19:57:51.523592 45360 1161 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1045E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1045.0 189.186.91.88 6707871f-26ec-4d3e-b635-25e0416bd039 2020-11-07 20:06:38.854019 45361 428 Customer \N \N 2 User \N create ---\nnick_name: CELIDA VELASQUEZ VELASQUEZ\nphone: "(667) 119-9394"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CELIDA VELASQUEZ VELASQUEZ fue registrado. 189.186.26.176 53fd7b1c-ed31-4d96-90e4-4291161c6b9e 2020-11-07 20:54:06.24125 45362 3361 Sale \N \N 2 User \N create ---\ncustomer_id: 428\nuser_id: 2\nopen_cash_register_id: 1160\namount: !ruby/object:BigDecimal 18:0.879E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.879E3\nstatus: 0\ndate_sale: 2020-11-07\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1599\nexpiration_date: 2020-12-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 71c27a04-df1f-44ea-9750-880dec52595e 2020-11-07 20:54:54.762414 45363 2507 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.26.176 71c27a04-df1f-44ea-9750-880dec52595e 2020-11-07 20:54:54.802888 45364 4456 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1160\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3361\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1599\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1599 189.186.26.176 030ec57f-9d4d-4836-b213-0d0565d934dd 2020-11-07 20:55:01.164829 45365 3361 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.26.176 5ea69955-6577-4261-b73e-3c6c56e39f56 2020-11-07 20:55:19.932381 45366 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-06 21:49:29.203274000 Z\n- &1 2020-11-07 03:43:33.577412000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-07 20:56:51.481047608 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729609\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729609\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\nsign_in_count:\n- 355\n- 356\n 712 \N 189.186.26.176 669a0194-a01f-4fe6-9d93-7f7e653e3ba1 2020-11-07 20:56:51.489606 45367 1 User \N \N 1 User \N update ---\nunique_session_id:\n- zx2sXSuEJD2DpoDWKAuF\n- U9udZyJjqN97smv5jE32\n 713 \N 189.186.26.176 669a0194-a01f-4fe6-9d93-7f7e653e3ba1 2020-11-07 20:56:51.50527 45368 3362 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1160\namount: !ruby/object:BigDecimal 18:0.1947E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1947E4\nstatus: 0\ndate_sale: 2020-11-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1600\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 f313dc08-7c22-4b22-a3fd-8d8d28cc6a65 2020-11-07 22:36:01.125643 45369 2546 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.26.176 f313dc08-7c22-4b22-a3fd-8d8d28cc6a65 2020-11-07 22:36:01.166603 45370 2553 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.26.176 f313dc08-7c22-4b22-a3fd-8d8d28cc6a65 2020-11-07 22:36:01.225579 45371 2551 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 5 \N 189.186.26.176 f313dc08-7c22-4b22-a3fd-8d8d28cc6a65 2020-11-07 22:36:01.249834 45372 3362 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 91f1fd00-957c-4c84-86d2-89a359de05a7 2020-11-07 22:36:22.944254 45373 4457 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1160\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1947E4\nmove_type: '1'\nsale_id: 3362\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1600\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.53E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1600 189.186.26.176 91f1fd00-957c-4c84-86d2-89a359de05a7 2020-11-07 22:36:22.967031 45374 352 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1160\nquantity: !ruby/object:BigDecimal 18:0.2046E4\nstatus: 1\nobservations: "$2008 LUZ, $15 COMISION OXXO, $23 DIFERENCIA DIDI = $2046"\nexpense_date: 2020-11-07\nexpense_code: PV1-E-245\n 1 Egreso por 2046.0 registrado 189.186.26.176 9bfef7cd-e2c0-45b8-8e57-e79c016ad630 2020-11-07 23:53:30.624314 45375 4458 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1160\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2046E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 352\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.26.176 9bfef7cd-e2c0-45b8-8e57-e79c016ad630 2020-11-07 23:53:30.647386 45376 3363 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1160\namount: !ruby/object:BigDecimal 18:0.1798E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1798E4\nstatus: 0\ndate_sale: 2020-11-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1601\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 34b2372f-95a3-458c-a08d-3b6804dde8e3 2020-11-08 00:13:33.046029 45377 2532 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.26.176 34b2372f-95a3-458c-a08d-3b6804dde8e3 2020-11-08 00:13:33.07429 45378 2520 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.26.176 34b2372f-95a3-458c-a08d-3b6804dde8e3 2020-11-08 00:13:33.098231 45379 3363 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 63d980e7-7192-4ce9-ab25-6f0242c7c06b 2020-11-08 00:14:10.786487 45380 4459 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1160\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1798E4\nmove_type: '1'\nsale_id: 3363\ncardnumber: 8499\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1601\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1601 189.186.26.176 63d980e7-7192-4ce9-ab25-6f0242c7c06b 2020-11-08 00:14:10.815844 45381 3363 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-1601 cancelada. 189.186.26.176 d4a24b94-7e8f-4c5c-b0e9-d7b5272e60fb 2020-11-08 00:19:49.090048 45382 4459 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1160\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1798E4\nmove_type: '1'\nsale_id: 3363\ncardnumber: 8499\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1601\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.26.176 d4a24b94-7e8f-4c5c-b0e9-d7b5272e60fb 2020-11-08 00:19:49.111326 45383 2520 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.26.176 d4a24b94-7e8f-4c5c-b0e9-d7b5272e60fb 2020-11-08 00:19:49.136052 45384 2532 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.26.176 d4a24b94-7e8f-4c5c-b0e9-d7b5272e60fb 2020-11-08 00:19:49.156424 45385 3364 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1160\namount: !ruby/object:BigDecimal 18:0.1998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1998E4\nstatus: 0\ndate_sale: 2020-11-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1602\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 09be341d-72f8-43a1-9c71-10e658fbbf15 2020-11-08 00:21:25.95051 45386 2532 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.26.176 09be341d-72f8-43a1-9c71-10e658fbbf15 2020-11-08 00:21:25.977138 45387 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 34 \N 189.186.26.176 09be341d-72f8-43a1-9c71-10e658fbbf15 2020-11-08 00:21:26.000838 45388 3364 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 c17f7e3c-1671-4b40-9be1-012af41d0cd5 2020-11-08 00:21:42.942672 45389 4460 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1160\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1798E4\nmove_type: '1'\nsale_id: 3364\ncardnumber: 8499\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1602\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1602 189.186.26.176 c17f7e3c-1671-4b40-9be1-012af41d0cd5 2020-11-08 00:21:42.96262 45390 4461 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1160\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 3364\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1602\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1602 189.186.26.176 55f63a46-02aa-4de5-a16f-bf5007ef2a46 2020-11-08 00:21:48.795834 45391 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-07 03:43:33.577412000 Z\n- &1 2020-11-07 20:56:51.481047000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-08 00:23:00.799988709 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729609\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\nsign_in_count:\n- 356\n- 357\n 714 \N 189.186.26.176 cc3bacb7-77f4-4734-9d6d-df71a19cf288 2020-11-08 00:23:00.809234 45392 1 User \N \N 1 User \N update ---\nunique_session_id:\n- U9udZyJjqN97smv5jE32\n- vxyarqyKc2wWpw98aPfw\n 715 \N 189.186.26.176 cc3bacb7-77f4-4734-9d6d-df71a19cf288 2020-11-08 00:23:00.827272 45393 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-07 20:56:51.481047000 Z\n- &1 2020-11-08 00:23:00.799988000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-08 00:29:58.459836695 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938260\n mask_addr: 4294967295\nsign_in_count:\n- 357\n- 358\n 716 \N 200.68.150.212 b2f8724d-1234-416d-a232-971258d333d6 2020-11-08 00:29:58.468359 45394 1 User \N \N 1 User \N update ---\nunique_session_id:\n- vxyarqyKc2wWpw98aPfw\n- pRWqJjfDaLCYKYjw6mET\n 717 \N 200.68.150.212 b2f8724d-1234-416d-a232-971258d333d6 2020-11-08 00:29:58.492324 45395 3365 Sale \N \N 2 User \N create ---\ncustomer_id: 292\nuser_id: 2\nopen_cash_register_id: 1160\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-07\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1603\nexpiration_date: 2020-12-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 cf7ab2dd-b136-4277-a358-f82581a04de6 2020-11-08 01:02:44.248523 45397 4462 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1160\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3365\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1603\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1603 189.186.26.176 8f6eda67-be0b-4748-845d-255f7ce9f302 2020-11-08 01:02:49.745641 45398 3365 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.26.176 747fa9c7-7967-4ac4-a5d5-91a3f3dd94a6 2020-11-08 01:02:52.12014 45399 3366 Sale \N \N 2 User \N create ---\ncustomer_id: 292\nuser_id: 2\nopen_cash_register_id: 1160\namount: !ruby/object:BigDecimal 18:0.629E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.629E3\nstatus: 0\ndate_sale: 2020-11-07\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1604\nexpiration_date: 2020-12-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 3fc4917e-d823-4889-a85f-b3ae95c116a2 2020-11-08 01:07:09.468783 45400 2525 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.26.176 3fc4917e-d823-4889-a85f-b3ae95c116a2 2020-11-08 01:07:09.499996 45401 4463 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1160\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 3366\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1604\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1604 189.186.26.176 7ed846eb-631b-4c88-a53a-b35a24a67683 2020-11-08 01:07:17.200879 45402 3366 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.26.176 c74b611f-8eb4-4044-97f7-e5c9642c963a 2020-11-08 01:07:20.557812 45403 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-08 00:23:00.799988000 Z\n- &1 2020-11-08 00:29:58.459836000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-08 01:11:31.128429967 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938260\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938260\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\nsign_in_count:\n- 358\n- 359\n 718 \N 189.186.26.176 7dee165e-a28d-4176-906c-5797e86b4e06 2020-11-08 01:11:31.138197 45404 1 User \N \N 1 User \N update ---\nunique_session_id:\n- pRWqJjfDaLCYKYjw6mET\n- 7SS1AvX5tTcUko8NZSwu\n 719 \N 189.186.26.176 7dee165e-a28d-4176-906c-5797e86b4e06 2020-11-08 01:11:31.156365 45405 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-08 00:29:58.459836000 Z\n- &1 2020-11-08 01:11:31.128429000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-08 01:23:01.508002668 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938260\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\nsign_in_count:\n- 359\n- 360\n 720 \N 189.186.26.176 e21ab3c6-da2f-441d-8ef6-a95cd7108990 2020-11-08 01:23:01.518933 45406 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 7SS1AvX5tTcUko8NZSwu\n- tRQMsPfaLRL4exCetCkJ\n 721 \N 189.186.26.176 e21ab3c6-da2f-441d-8ef6-a95cd7108990 2020-11-08 01:23:01.540101 45407 1185 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1160\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.8241E4\namount_out: !ruby/object:BigDecimal 18:0.2046E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.19E4\ncash_fund: !ruby/object:BigDecimal 18:0.982E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2882E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.26.176 10065f98-4108-4bab-80ed-e7c114f94c6f 2020-11-08 01:48:17.027064 45408 1160 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.26.176 10065f98-4108-4bab-80ed-e7c114f94c6f 2020-11-08 01:48:17.044819 45409 3367 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1161\namount: !ruby/object:BigDecimal 18:0.4344E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4344E4\nstatus: 0\ndate_sale: 2020-11-07\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-843\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 495159c0-c5b4-40fe-9ac8-6cd6e14a904e 2020-11-08 02:10:09.399804 45410 2573 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.91.88 495159c0-c5b4-40fe-9ac8-6cd6e14a904e 2020-11-08 02:10:09.434996 45411 2506 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.91.88 495159c0-c5b4-40fe-9ac8-6cd6e14a904e 2020-11-08 02:10:09.456846 45412 2108 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.91.88 495159c0-c5b4-40fe-9ac8-6cd6e14a904e 2020-11-08 02:10:09.478821 45413 2399 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.91.88 495159c0-c5b4-40fe-9ac8-6cd6e14a904e 2020-11-08 02:10:09.501465 45414 2112 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.91.88 495159c0-c5b4-40fe-9ac8-6cd6e14a904e 2020-11-08 02:10:09.527684 45415 3367 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 2b86fe99-eb7d-47a3-991d-521771acf134 2020-11-08 02:12:25.836012 45416 4464 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1161\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.4344E4\nmove_type: '1'\nsale_id: 3367\ncardnumber: 5214\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-843\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-843 189.186.91.88 2b86fe99-eb7d-47a3-991d-521771acf134 2020-11-08 02:12:25.862631 45417 1186 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1161\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.4344E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.9E3\ncash_fund: !ruby/object:BigDecimal 18:0.145E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1045E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 9cffde1d-5d19-4bd7-9eaa-284e175ad353 2020-11-08 02:20:38.458596 45418 1161 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 9cffde1d-5d19-4bd7-9eaa-284e175ad353 2020-11-08 02:20:38.473152 45419 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-08 01:11:31.128429000 Z\n- &1 2020-11-08 01:23:01.508002000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-08 04:23:34.176760480 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729292\n mask_addr: 4294967295\nsign_in_count:\n- 360\n- 361\n 722 \N 201.175.156.140 72263027-1d09-47ab-b840-93fbdcdf10d5 2020-11-08 04:23:34.184895 45420 1 User \N \N 1 User \N update ---\nunique_session_id:\n- tRQMsPfaLRL4exCetCkJ\n- orm8SEFJsJHcYdtiqUnB\n 723 \N 201.175.156.140 72263027-1d09-47ab-b840-93fbdcdf10d5 2020-11-08 04:23:34.202274 45421 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-07 00:56:43.446576000 Z\n- &1 2020-11-07 02:18:55.338855000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-08 21:22:03.166251065 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535280\n mask_addr: 4294967295\nsign_in_count:\n- 333\n- 334\n 669 \N 177.228.100.240 57c4de8c-dda9-43e3-9ca0-c7a7adf1b683 2020-11-08 21:22:03.185741 45422 18 User \N \N 18 User \N update ---\nunique_session_id:\n- N7t635nZMy18XTvuVoys\n- "-Z3DYbRwpyxJPXXFAkKs"\n 670 \N 177.228.100.240 57c4de8c-dda9-43e3-9ca0-c7a7adf1b683 2020-11-08 21:22:03.208573 45423 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-07 17:49:37.035541000 Z\n- &1 2020-11-07 17:49:37.454855000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-09 18:54:42.464637299 Z\nsign_in_count:\n- 695\n- 696\n 1395 \N 189.186.26.176 661d9a26-5835-451b-868d-c7425084e46e 2020-11-09 18:54:42.492525 45424 2 User \N \N 2 User \N update ---\nunique_session_id:\n- fXxNzzyUwxqLMWeASw8z\n- sxDn9e3R-Moh3cWzHPm3\n 1396 \N 189.186.26.176 661d9a26-5835-451b-868d-c7425084e46e 2020-11-09 18:54:42.51931 45425 1162 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.982E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 982.0 189.186.26.176 dd4bed4e-8946-4c61-93ad-66a807c42662 2020-11-09 18:58:21.406134 45426 3368 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1162\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-09\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1605\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 edc371fe-ff4a-4c50-a9aa-75cd1b170166 2020-11-09 19:31:10.618696 45427 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 9 \N 189.186.26.176 edc371fe-ff4a-4c50-a9aa-75cd1b170166 2020-11-09 19:31:10.654498 45428 3368 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 5baadeec-e1ff-41c3-9e2c-53af714809d7 2020-11-09 19:31:42.746155 45429 4465 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1162\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3368\ncardnumber: 9539\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1605\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1605 189.186.26.176 5baadeec-e1ff-41c3-9e2c-53af714809d7 2020-11-09 19:31:42.778278 45430 3369 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1162\namount: !ruby/object:BigDecimal 18:0.103362E4\ntax: !ruby/object:BigDecimal 18:0.16538E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-11-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1606\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 bebeb9a8-4fed-4055-9b0b-782f5a4de5aa 2020-11-09 19:35:32.714877 45431 1999 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.26.176 bebeb9a8-4fed-4055-9b0b-782f5a4de5aa 2020-11-09 19:35:32.742314 45432 3369 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 79714f74-d847-4a04-8228-25fd80a36a3d 2020-11-09 19:35:37.031168 45433 4466 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1162\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 3369\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1606\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1606 189.186.26.176 79714f74-d847-4a04-8228-25fd80a36a3d 2020-11-09 19:35:37.055039 45434 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-08 01:23:01.508002000 Z\n- &1 2020-11-08 04:23:34.176760000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-09 21:17:52.466429039 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729292\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729292\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\nsign_in_count:\n- 361\n- 362\n 724 \N 189.186.26.176 b1aa4871-aed8-4258-9661-89a2dd7021be 2020-11-09 21:17:52.499957 45435 1 User \N \N 1 User \N update ---\nunique_session_id:\n- orm8SEFJsJHcYdtiqUnB\n- "-nv26ZiyHsbSvoDwxdTd"\n 725 \N 189.186.26.176 b1aa4871-aed8-4258-9661-89a2dd7021be 2020-11-09 21:17:52.532093 45436 1163 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.145E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 145.0 189.186.91.88 27d63590-ea66-4262-966a-9f8bbdab3b3e 2020-11-09 21:21:04.061948 45437 3370 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1162\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-11-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1607\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 f1eea4f2-e6b0-44de-92c0-6012a6fb5f48 2020-11-09 21:44:11.901684 45438 2007 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.26.176 f1eea4f2-e6b0-44de-92c0-6012a6fb5f48 2020-11-09 21:44:11.931828 45439 3370 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 11d331d0-7622-452f-aa99-e25ee271ade6 2020-11-09 21:44:55.605132 45440 4467 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1162\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3370\ncardnumber: 7572\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1607\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1607 189.186.26.176 11d331d0-7622-452f-aa99-e25ee271ade6 2020-11-09 21:44:55.641053 45441 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-08 04:23:34.176760000 Z\n- &1 2020-11-09 21:17:52.466429000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-09 21:47:06.940644752 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729292\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\nsign_in_count:\n- 362\n- 363\n 726 \N 189.186.26.176 a47b149f-f994-4978-8a6c-f4ce403e1137 2020-11-09 21:47:06.947357 45442 1 User \N \N 1 User \N update ---\nunique_session_id:\n- "-nv26ZiyHsbSvoDwxdTd"\n- FC81-47YPQvn74uzjz4v\n 727 \N 189.186.26.176 a47b149f-f994-4978-8a6c-f4ce403e1137 2020-11-09 21:47:06.961372 45443 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-07 02:18:55.338855000 Z\n- &1 2020-11-08 21:22:03.166251000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-09 23:04:10.829342525 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535280\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535280\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 334\n- 335\n 671 \N 189.186.91.88 934e3bd2-95ad-4db2-8b5c-656f336e62f9 2020-11-09 23:04:10.837048 45444 18 User \N \N 18 User \N update ---\nunique_session_id:\n- "-Z3DYbRwpyxJPXXFAkKs"\n- dpB8UPJ9Z9yber9wiLjF\n 672 \N 189.186.91.88 934e3bd2-95ad-4db2-8b5c-656f336e62f9 2020-11-09 23:04:10.853204 45445 429 Customer \N \N 18 User \N create ---\nnick_name: 'YARELI QUINTERO '\nphone: "(667) 710-7368"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente YARELI QUINTERO fue registrado. 189.186.91.88 c9726c86-b603-45a9-8ba9-96d7624131a7 2020-11-09 23:10:15.564684 45446 3371 Sale \N \N 18 User \N create ---\ncustomer_id: 429\nuser_id: 18\nopen_cash_register_id: 1163\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-09\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-844\nexpiration_date: 2020-12-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 cd138723-f07b-45d1-a474-9ae677d95910 2020-11-09 23:11:16.130862 45447 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 13 \N 189.186.91.88 cd138723-f07b-45d1-a474-9ae677d95910 2020-11-09 23:11:16.158038 45448 4468 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1163\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 3371\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-844\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-844 189.186.91.88 a02e68f1-601b-4c85-b13c-c20d436ca4f7 2020-11-09 23:11:21.796516 45449 3371 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 bb462550-4218-411d-95e7-b048a981fa99 2020-11-09 23:11:23.304662 45450 430 Customer \N \N 18 User \N create ---\nnick_name: ANAHI QUINTERO\nphone: "(667) 774-0311"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANAHI QUINTERO fue registrado. 189.186.91.88 7c91bfde-01b1-43ca-98e3-1bab79f81fb0 2020-11-09 23:43:12.91276 45451 3372 Sale \N \N 18 User \N create ---\ncustomer_id: 430\nuser_id: 18\nopen_cash_register_id: 1163\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-11-09\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-845\nexpiration_date: 2020-12-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 5521a30c-b5d3-415c-9de5-e4f89b5cc113 2020-11-09 23:44:00.980774 45452 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 55 \N 189.186.91.88 5521a30c-b5d3-415c-9de5-e4f89b5cc113 2020-11-09 23:44:01.028782 45453 4469 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1163\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 3372\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-845\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-845 189.186.91.88 e6b4b241-1426-417d-bd7c-118bda0f00f6 2020-11-09 23:44:07.097711 45454 3372 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 b34d3f37-8864-4060-86aa-880346816b6a 2020-11-09 23:44:09.771197 45455 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-09 21:17:52.466429000 Z\n- &1 2020-11-09 21:47:06.940644000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-09 23:53:50.045857530 Z\nsign_in_count:\n- 363\n- 364\n 728 \N 189.186.26.176 e42bfbfc-3233-44ba-b8ba-e708965c1679 2020-11-09 23:53:50.052239 45456 1 User \N \N 1 User \N update ---\nunique_session_id:\n- FC81-47YPQvn74uzjz4v\n- x6A8-FYLydwynmDq2zx2\n 729 \N 189.186.26.176 e42bfbfc-3233-44ba-b8ba-e708965c1679 2020-11-09 23:53:50.066896 45457 729 Transfer \N \N 1 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-11-09\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.26.176 62cd8062-0cea-492a-a8bf-100726af04b9 2020-11-09 23:54:53.614428 45458 729 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-09\n 2 Se dio entrada a traspaso de Almacen central a SUO 189.186.26.176 89afc6d4-f1a8-4682-9d24-7e7695602513 2020-11-09 23:55:20.173804 45459 1399 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.26.176 89afc6d4-f1a8-4682-9d24-7e7695602513 2020-11-09 23:55:20.194304 45460 3373 Sale \N \N 2 User \N create ---\ncustomer_id: 3\nuser_id: 2\nopen_cash_register_id: 1162\namount: !ruby/object:BigDecimal 18:0.6893E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6893E4\nstatus: 0\ndate_sale: 2020-11-09\nsaletype: 0\nseller_id: 30\nsale_code: PV1-V-1608\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 235d6c30-a2d0-45bf-bb65-cb0540d01d62 2020-11-09 23:56:23.709905 45461 2448 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 5 \N 189.186.26.176 235d6c30-a2d0-45bf-bb65-cb0540d01d62 2020-11-09 23:56:23.739268 45462 1283 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 189.186.26.176 235d6c30-a2d0-45bf-bb65-cb0540d01d62 2020-11-09 23:56:23.762648 45463 2540 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.26.176 235d6c30-a2d0-45bf-bb65-cb0540d01d62 2020-11-09 23:56:23.785209 45464 2554 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.26.176 235d6c30-a2d0-45bf-bb65-cb0540d01d62 2020-11-09 23:56:23.809022 45465 2535 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.26.176 235d6c30-a2d0-45bf-bb65-cb0540d01d62 2020-11-09 23:56:23.832592 45466 1399 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.26.176 235d6c30-a2d0-45bf-bb65-cb0540d01d62 2020-11-09 23:56:23.854652 45467 2551 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 6 \N 189.186.26.176 235d6c30-a2d0-45bf-bb65-cb0540d01d62 2020-11-09 23:56:23.879819 45468 4470 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1162\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E4\nmove_type: '1'\nsale_id: 3373\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.26.176 80b00cf3-8761-4447-bdc0-2f7109320134 2020-11-09 23:57:36.577939 45469 3373 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.26.176 80b00cf3-8761-4447-bdc0-2f7109320134 2020-11-09 23:57:36.605436 45470 4470 CashRegistersMove \N \N 2 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV1-V-1608 189.186.26.176 80b00cf3-8761-4447-bdc0-2f7109320134 2020-11-09 23:57:36.617984 45471 3374 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1162\namount: !ruby/object:BigDecimal 18:0.1549E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1549E4\nstatus: 0\ndate_sale: 2020-11-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1609\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 36b38dbf-161a-45c3-921b-9d2abfb31b3a 2020-11-10 00:01:39.261846 45472 791 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 13 \N 189.186.26.176 36b38dbf-161a-45c3-921b-9d2abfb31b3a 2020-11-10 00:01:39.289989 45473 2508 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.26.176 36b38dbf-161a-45c3-921b-9d2abfb31b3a 2020-11-10 00:01:39.316426 45474 3374 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 a2508dd8-2698-4d36-bb44-431673d37d4b 2020-11-10 00:01:46.845548 45475 4471 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1162\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1549E4\nmove_type: '1'\nsale_id: 3374\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1609\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1549E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1609 189.186.26.176 a2508dd8-2698-4d36-bb44-431673d37d4b 2020-11-10 00:01:46.867342 45476 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-07 01:18:49.095192000 Z\n- &1 2020-11-07 04:45:55.247441000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-10 00:07:48.673381665 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535280\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535280\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2040\n- 2041\n 4082 \N 189.186.91.88 47a9aa5a-6c54-41fe-ba06-77f6f2e76504 2020-11-10 00:07:48.681092 45477 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fiQgK8zK_GytTfyqv44x\n- rkqT7LEz1WAkFHTfwUBJ\n 4083 \N 189.186.91.88 47a9aa5a-6c54-41fe-ba06-77f6f2e76504 2020-11-10 00:07:48.700107 45478 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-08 21:22:03.166251000 Z\n- &1 2020-11-09 23:04:10.829342000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-10 00:23:11.790236278 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535280\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 335\n- 336\n 673 \N 189.186.91.88 8b296d18-5aa9-4e81-9489-717fe515fcd6 2020-11-10 00:23:11.797391 45479 18 User \N \N 18 User \N update ---\nunique_session_id:\n- dpB8UPJ9Z9yber9wiLjF\n- 51kWkahxFJYx8exjgN4R\n 674 \N 189.186.91.88 8b296d18-5aa9-4e81-9489-717fe515fcd6 2020-11-10 00:23:11.814322 45480 3375 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1163\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-09\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-846\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 871bb173-1186-4811-95d8-66d66d3f0e09 2020-11-10 00:24:19.685999 45481 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E2\n- !ruby/object:BigDecimal 18:0.19E2\n 20 \N 189.186.91.88 871bb173-1186-4811-95d8-66d66d3f0e09 2020-11-10 00:24:19.716124 45482 3375 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 ddffedfb-6c1d-44bf-94e4-630128968b48 2020-11-10 00:24:40.395466 45483 4472 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1163\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3375\ncardnumber: 1252\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-846\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-846 189.186.91.88 ddffedfb-6c1d-44bf-94e4-630128968b48 2020-11-10 00:24:40.417663 45484 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-07 04:45:55.247441000 Z\n- &1 2020-11-10 00:07:48.673381000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-10 00:49:02.953748877 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535280\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2041\n- 2042\n 4084 \N 189.186.91.88 1758a66f-1310-464a-8d57-497bba9309a2 2020-11-10 00:49:02.971913 45485 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rkqT7LEz1WAkFHTfwUBJ\n- qDgVJr7iZ1h7GYJrGobq\n 4085 \N 189.186.91.88 1758a66f-1310-464a-8d57-497bba9309a2 2020-11-10 00:49:02.994321 45486 3376 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1162\namount: !ruby/object:BigDecimal 18:0.278E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.278E3\nstatus: 0\ndate_sale: 2020-11-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1610\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 ec554924-052a-40ec-8092-04c075795284 2020-11-10 01:09:36.694424 45487 2067 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.26.176 ec554924-052a-40ec-8092-04c075795284 2020-11-10 01:09:36.725037 45488 2066 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.26.176 ec554924-052a-40ec-8092-04c075795284 2020-11-10 01:09:36.757631 45489 3376 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 2bcd9b8b-1327-4c3a-906c-b495eb47ea8f 2020-11-10 01:09:40.713217 45490 4473 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1162\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.278E3\nmove_type: '1'\nsale_id: 3376\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1610\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.222E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1610 189.186.26.176 2bcd9b8b-1327-4c3a-906c-b495eb47ea8f 2020-11-10 01:09:40.734851 45491 3377 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1162\namount: !ruby/object:BigDecimal 18:0.498E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.498E3\nstatus: 0\ndate_sale: 2020-11-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1611\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 fce12e4e-fd8e-4481-8875-bc5347c7fd76 2020-11-10 01:11:09.274512 45492 2127 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.26.176 fce12e4e-fd8e-4481-8875-bc5347c7fd76 2020-11-10 01:11:09.30711 45493 2384 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.26.176 fce12e4e-fd8e-4481-8875-bc5347c7fd76 2020-11-10 01:11:09.337793 45494 3377 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 1ffcdd29-ba26-41a6-a8c1-71473b7ca419 2020-11-10 01:11:14.2949 45495 4474 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1162\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.498E3\nmove_type: '1'\nsale_id: 3377\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1611\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.498E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1611 189.186.26.176 1ffcdd29-ba26-41a6-a8c1-71473b7ca419 2020-11-10 01:11:14.316805 45496 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-09 23:04:10.829342000 Z\n- &1 2020-11-10 00:23:11.790236000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-10 01:31:29.352706959 Z\nsign_in_count:\n- 336\n- 337\n 675 \N 189.186.91.88 6407e433-2148-45d4-b84b-36277fc524d7 2020-11-10 01:31:29.359257 45497 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 51kWkahxFJYx8exjgN4R\n- stzK_6A_hnEcKuzRYBxW\n 676 \N 189.186.91.88 6407e433-2148-45d4-b84b-36277fc524d7 2020-11-10 01:31:29.376115 45498 4475 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1163\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 3227\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '22225'\n 1 movimiento de efectivo por venta con folio PV3-V-765 189.186.91.88 ae9acd92-8e81-4f26-a8b8-d666d8d6ec4e 2020-11-10 01:31:54.99525 45499 3227 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 93854be4-e7d9-436c-ab47-f0a41df5bcd6 2020-11-10 01:31:57.305868 45500 1187 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1163\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.3598E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1232E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1232E4\nobservations: AGREGE FONDO EN LA CAJA\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 f92fe189-36c8-4b78-ad42-077a365620e0 2020-11-10 01:48:14.608454 45501 1163 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 f92fe189-36c8-4b78-ad42-077a365620e0 2020-11-10 01:48:14.626263 45502 1188 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1162\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.8822E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.6E4\ncash_fund: !ruby/object:BigDecimal 18:0.1006E4\nphysical_cash: !ruby/object:BigDecimal 18:0.7006E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.26.176 acb6a0af-f3df-4f61-967a-1c16ad17bab5 2020-11-10 02:08:03.675887 45503 1162 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.26.176 acb6a0af-f3df-4f61-967a-1c16ad17bab5 2020-11-10 02:08:03.691496 45504 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-10 00:07:48.673381000 Z\n- &1 2020-11-10 00:49:02.953748000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-10 02:32:48.319645808 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945604\n mask_addr: 4294967295\nsign_in_count:\n- 2042\n- 2043\n 4086 \N 200.68.179.132 d92381e5-3728-4cea-9925-d65890601a48 2020-11-10 02:32:48.347644 45505 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qDgVJr7iZ1h7GYJrGobq\n- dGJdajqV3_Ez_WL-Xfx4\n 4087 \N 200.68.179.132 d92381e5-3728-4cea-9925-d65890601a48 2020-11-10 02:32:48.372325 45506 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-10 00:23:11.790236000 Z\n- &1 2020-11-10 01:31:29.352706000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-10 02:33:56.529122365 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945604\n mask_addr: 4294967295\nsign_in_count:\n- 337\n- 338\n 677 \N 200.68.179.132 9a765190-f59f-4858-81de-6b1cb8a974ca 2020-11-10 02:33:56.536476 45507 18 User \N \N 18 User \N update ---\nunique_session_id:\n- stzK_6A_hnEcKuzRYBxW\n- YBJs8jNW1_LPCH1wVFYD\n 678 \N 200.68.179.132 9a765190-f59f-4858-81de-6b1cb8a974ca 2020-11-10 02:33:56.551895 45508 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-09 21:47:06.940644000 Z\n- &1 2020-11-09 23:53:50.045857000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-10 15:17:15.402532831 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729956\n mask_addr: 4294967295\nsign_in_count:\n- 364\n- 365\n 730 \N 201.175.159.36 3156363e-9874-4e02-a5be-7e687ef50fd1 2020-11-10 15:17:15.435215 45509 1 User \N \N 1 User \N update ---\nunique_session_id:\n- x6A8-FYLydwynmDq2zx2\n- _6_nioSyryo9Ec2Qr1A7\n 731 \N 201.175.159.36 3156363e-9874-4e02-a5be-7e687ef50fd1 2020-11-10 15:17:15.460607 45510 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-07 17:49:37.454855000 Z\n- &1 2020-11-09 18:54:42.464637000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-10 17:58:18.264429737 Z\nsign_in_count:\n- 696\n- 697\n 1397 \N 189.186.26.176 9f94ed70-79d8-4743-8d08-dfe3ca3ba77a 2020-11-10 17:58:18.270461 45511 2 User \N \N 2 User \N update ---\nunique_session_id:\n- sxDn9e3R-Moh3cWzHPm3\n- A6d3-AAzV4fCzuuzartq\n 1398 \N 189.186.26.176 9f94ed70-79d8-4743-8d08-dfe3ca3ba77a 2020-11-10 17:58:18.28526 45512 1164 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1006E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1006.0 189.186.26.176 23130a86-0538-42dd-bf88-80c4606a8ae1 2020-11-10 18:11:07.306224 45513 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-10 01:31:29.352706000 Z\n- &1 2020-11-10 02:33:56.529122000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-10 19:30:53.602800844 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945604\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945604\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 338\n- 339\n 679 \N 189.186.91.88 64e45728-be24-4d24-b73b-838b3db36168 2020-11-10 19:30:53.649643 45514 18 User \N \N 18 User \N update ---\nunique_session_id:\n- YBJs8jNW1_LPCH1wVFYD\n- 4WPnz5jQza8w3d1JV-Vr\n 680 \N 189.186.91.88 64e45728-be24-4d24-b73b-838b3db36168 2020-11-10 19:30:53.6856 45515 469 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-132\namount: !ruby/object:BigDecimal 18:0.4197E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4197E4\nobservations: ''\npurchase_date: 2020-11-10\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-132 por $ 4197.0 MXN creada. 189.186.91.88 86218dfc-6cfd-4b7f-9e44-475f6bd8c8b8 2020-11-10 20:01:04.8652 45516 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.1E2\n 14 \N 189.186.91.88 86218dfc-6cfd-4b7f-9e44-475f6bd8c8b8 2020-11-10 20:01:04.895086 45517 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-10 00:49:02.953748000 Z\n- &1 2020-11-10 02:32:48.319645000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-10 20:14:36.452464569 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945604\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945604\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2043\n- 2044\n 4088 \N 189.186.91.88 93f1dbdc-1a3e-4c33-88e9-adf6bc27964d 2020-11-10 20:14:36.461613 45518 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dGJdajqV3_Ez_WL-Xfx4\n- 3BdsTx5K5FVqRczrMXL3\n 4089 \N 189.186.91.88 93f1dbdc-1a3e-4c33-88e9-adf6bc27964d 2020-11-10 20:14:36.48253 45519 728 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-10\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.26.176 82bdbdcb-41ad-4263-bfd1-b6aa5706ea13 2020-11-10 20:48:18.117113 45520 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.14E2\n 10 \N 189.186.26.176 82bdbdcb-41ad-4263-bfd1-b6aa5706ea13 2020-11-10 20:48:18.143888 45521 1372 Product \N \N 4 User \N update --- {}\n 2 El producto CAR-1372 fue modificado. 189.186.91.88 96ec9a7a-41c5-42a3-9398-93676197084f 2020-11-10 20:52:20.770213 45522 470 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-199\namount: !ruby/object:BigDecimal 18:0.34975E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.34975E4\nobservations: ''\npurchase_date: 2020-11-10\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-199 por $ 3497.5 MXN creada. 189.186.91.88 22d61514-e2a5-4c8b-9146-d5b4c98666e3 2020-11-10 20:53:10.899734 45523 2369 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 10 \N 189.186.91.88 22d61514-e2a5-4c8b-9146-d5b4c98666e3 2020-11-10 20:53:10.932682 45524 3378 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1164\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1612\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 f16ea864-123f-45f3-ab94-8e623645a4c3 2020-11-10 21:17:14.176592 45525 2369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 11 \N 189.186.26.176 f16ea864-123f-45f3-ab94-8e623645a4c3 2020-11-10 21:17:14.204551 45526 3378 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 09133649-9dde-4bb3-9d31-2b865b853b5e 2020-11-10 21:17:41.27436 45527 4476 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1164\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3378\ncardnumber: 5876\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1612\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1612 189.186.26.176 09133649-9dde-4bb3-9d31-2b865b853b5e 2020-11-10 21:17:41.300261 45528 3379 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1164\namount: !ruby/object:BigDecimal 18:0.1448E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1448E4\nstatus: 0\ndate_sale: 2020-11-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1613\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 f94f4150-7cd5-479e-aa0c-a6263f62c0c4 2020-11-10 21:19:30.473027 45529 2240 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.26.176 f94f4150-7cd5-479e-aa0c-a6263f62c0c4 2020-11-10 21:19:30.4997 45530 2513 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.26.176 f94f4150-7cd5-479e-aa0c-a6263f62c0c4 2020-11-10 21:19:30.523374 45531 3379 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 71a387e6-e601-4637-a215-0b745e56100c 2020-11-10 21:20:45.994723 45532 4477 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1164\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 3379\ncardnumber: 2972\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1613\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1613 189.186.26.176 71a387e6-e601-4637-a215-0b745e56100c 2020-11-10 21:20:46.022583 45533 4478 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1164\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.448E3\nmove_type: '1'\nsale_id: 3379\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1613\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.448E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1613 189.186.26.176 a507e991-a187-4bf7-a9e4-90603c7ba443 2020-11-10 21:20:53.391655 45534 3380 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1164\namount: !ruby/object:BigDecimal 18:0.338E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.338E3\nstatus: 0\ndate_sale: 2020-11-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1614\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 9914d05c-080c-4c09-acb2-2cb50a36f339 2020-11-10 21:28:13.881511 45535 2464 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.26.176 9914d05c-080c-4c09-acb2-2cb50a36f339 2020-11-10 21:28:13.922518 45536 2135 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.26.176 9914d05c-080c-4c09-acb2-2cb50a36f339 2020-11-10 21:28:13.95584 45537 3380 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 0866ef91-92a4-4e6e-848c-eeb075944cd7 2020-11-10 21:28:59.77807 45538 4479 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1164\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 3380\ncardnumber: 6692\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1614\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1614 189.186.26.176 0866ef91-92a4-4e6e-848c-eeb075944cd7 2020-11-10 21:28:59.801339 45539 4480 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1164\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.38E2\nmove_type: '1'\nsale_id: 3380\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1614\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.38E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1614 189.186.26.176 ff70c98f-8976-4ff4-b003-348b3302b6b4 2020-11-10 21:29:10.767747 45540 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-09 23:53:50.045857000 Z\n- &1 2020-11-10 15:17:15.402532000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-10 22:44:46.516542486 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729956\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729956\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\nsign_in_count:\n- 365\n- 366\n 732 \N 189.186.26.176 77ee2b5a-2a6f-45a5-96c9-9fbbced7bc02 2020-11-10 22:44:46.523866 45541 1 User \N \N 1 User \N update ---\nunique_session_id:\n- _6_nioSyryo9Ec2Qr1A7\n- sFGsZLPE8bifo6nkE8Th\n 733 \N 189.186.26.176 77ee2b5a-2a6f-45a5-96c9-9fbbced7bc02 2020-11-10 22:44:46.540939 45542 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-10 15:17:15.402532000 Z\n- &1 2020-11-10 22:44:46.516542000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-10 23:24:55.160249539 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729956\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\nsign_in_count:\n- 366\n- 367\n 734 \N 189.186.26.176 71a11562-4c9d-478f-84b2-73f747b43700 2020-11-10 23:24:55.168111 45543 1 User \N \N 1 User \N update ---\nunique_session_id:\n- sFGsZLPE8bifo6nkE8Th\n- iUxnEvzsGExZJWehGGiu\n 735 \N 189.186.26.176 71a11562-4c9d-478f-84b2-73f747b43700 2020-11-10 23:24:55.186131 45544 4481 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1164\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 3340\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1590 189.186.26.176 45ad52fa-2b5c-4351-bfa5-7ea6592aeddb 2020-11-10 23:35:26.774393 45545 3340 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.26.176 bf27c4a8-f3d8-4d6a-9edd-dc99db330fc7 2020-11-10 23:35:27.9746 45546 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-10 02:33:56.529122000 Z\n- &1 2020-11-10 19:30:53.602800000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-10 23:54:18.444223140 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945604\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 339\n- 340\n 681 \N 189.186.91.88 80a6559f-f18b-4110-b6af-b7c218418003 2020-11-10 23:54:18.471589 45547 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 4WPnz5jQza8w3d1JV-Vr\n- 1KS78L6g_jnYCy3rRYKr\n 682 \N 189.186.91.88 80a6559f-f18b-4110-b6af-b7c218418003 2020-11-10 23:54:18.494765 45548 1165 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1232E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1232.0 189.186.91.88 66281ecc-c873-45dd-8a1f-f4d36fe169f3 2020-11-10 23:54:33.390437 45549 3381 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1165\namount: !ruby/object:BigDecimal 18:0.2798E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2798E4\nstatus: 0\ndate_sale: 2020-11-10\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-847\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 c6f275f1-1539-4288-a132-8d10db2929e2 2020-11-11 00:03:25.678308 45550 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.19E2\n- !ruby/object:BigDecimal 18:0.18E2\n 21 \N 189.186.91.88 c6f275f1-1539-4288-a132-8d10db2929e2 2020-11-11 00:03:25.724285 45551 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 56 \N 189.186.91.88 c6f275f1-1539-4288-a132-8d10db2929e2 2020-11-11 00:03:25.766978 45552 3381 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 9c2a46b4-9f1a-4941-b936-9354a534f6d1 2020-11-11 00:03:52.946874 45553 4482 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1165\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2798E4\nmove_type: '1'\nsale_id: 3381\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-847\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E4\nchange: !ruby/object:BigDecimal 18:0.202E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-847 189.186.91.88 9c2a46b4-9f1a-4941-b936-9354a534f6d1 2020-11-11 00:03:52.985548 45554 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-10 02:32:48.319645000 Z\n- &1 2020-11-10 20:14:36.452464000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-11 01:06:40.538223018 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945604\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2044\n- 2045\n 4090 \N 189.186.91.88 60b9fee9-2852-41f7-a051-62b5dceb04fa 2020-11-11 01:06:40.545446 45555 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3BdsTx5K5FVqRczrMXL3\n- xyMGb-jpa8eXsG9iFpdU\n 4091 \N 189.186.91.88 60b9fee9-2852-41f7-a051-62b5dceb04fa 2020-11-11 01:06:40.564435 45556 38 ProductsReturn \N \N 2 User \N create ---\nsale_id: 3331\nuser_id: 2\nreturn_code: PV1-D-15\npointsale_id: 1\nnew_amount: !ruby/object:BigDecimal 18:0.797E3\nreturned_amount: !ruby/object:BigDecimal 18:0.811E3\ndifference_amount: !ruby/object:BigDecimal 18:0.0\nis_money_returned: false\n 1 devolución PV1-D-15 creada. 189.186.26.176 95e90904-e25a-4451-a989-8b797359b882 2020-11-11 01:12:36.016062 45557 2548 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.26.176 95e90904-e25a-4451-a989-8b797359b882 2020-11-11 01:12:36.058644 45558 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.39E2\n- !ruby/object:BigDecimal 18:0.37E2\n 22 \N 189.186.26.176 95e90904-e25a-4451-a989-8b797359b882 2020-11-11 01:12:36.094945 45559 2550 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.26.176 95e90904-e25a-4451-a989-8b797359b882 2020-11-11 01:12:36.111542 45560 1189 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1164\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4084E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.891E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2391E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.26.176 96ebde58-efa6-469b-a9dc-a47103ad0393 2020-11-11 01:49:06.826653 45561 1164 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.26.176 96ebde58-efa6-469b-a9dc-a47103ad0393 2020-11-11 01:49:06.840658 45562 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-10 19:30:53.602800000 Z\n- &1 2020-11-10 23:54:18.444223000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-11 02:03:01.068057130 Z\nsign_in_count:\n- 340\n- 341\n 683 \N 189.186.91.88 cf16ff5a-ef7d-4ea9-899c-603e3052be05 2020-11-11 02:03:01.074736 45563 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 1KS78L6g_jnYCy3rRYKr\n- 6Cu_xMfvFrF6uSkgvnDZ\n 684 \N 189.186.91.88 cf16ff5a-ef7d-4ea9-899c-603e3052be05 2020-11-11 02:03:01.090579 45564 1190 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1165\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.2798E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.103E4\nphysical_cash: !ruby/object:BigDecimal 18:0.403E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 6ee77b41-07e5-4d79-82ac-c6dd877cb499 2020-11-11 02:04:16.56884 45565 1165 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 6ee77b41-07e5-4d79-82ac-c6dd877cb499 2020-11-11 02:04:16.58385 45566 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-10 20:14:36.452464000 Z\n- &1 2020-11-11 01:06:40.538223000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-11 07:49:28.233474510 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535208\n mask_addr: 4294967295\nsign_in_count:\n- 2045\n- 2046\n 4092 \N 177.228.100.168 5f722f67-c242-4e3b-b5c8-47ca421f5653 2020-11-11 07:49:28.265543 45567 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xyMGb-jpa8eXsG9iFpdU\n- tmsQ6qrow2PVPi8fMs7Y\n 4093 \N 177.228.100.168 5f722f67-c242-4e3b-b5c8-47ca421f5653 2020-11-11 07:49:28.290941 45568 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-09 18:54:42.464637000 Z\n- &1 2020-11-10 17:58:18.264429000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-11 17:35:22.960429276 Z\nsign_in_count:\n- 697\n- 698\n 1399 \N 189.186.26.176 3da8128e-833f-4696-97fc-a937db064ba0 2020-11-11 17:35:22.990165 45569 2 User \N \N 2 User \N update ---\nunique_session_id:\n- A6d3-AAzV4fCzuuzartq\n- LXD7f-QWbsAXzB1PnPj9\n 1400 \N 189.186.26.176 3da8128e-833f-4696-97fc-a937db064ba0 2020-11-11 17:35:23.013767 45570 1166 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.891E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 891.0 189.186.26.176 876ad062-38d2-4882-ada2-d7d078288b13 2020-11-11 17:44:24.191173 45571 3382 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1166\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-11-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1615\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 7caa009d-0b66-4b4a-88b5-6b7b2dbb915e 2020-11-11 18:47:35.799501 45572 2511 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.26.176 7caa009d-0b66-4b4a-88b5-6b7b2dbb915e 2020-11-11 18:47:35.849909 45573 3382 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 a3c00a09-4e82-4d68-a842-f57df5a9f930 2020-11-11 18:47:40.119382 45574 4483 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1166\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 3382\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1615\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1615 189.186.26.176 a3c00a09-4e82-4d68-a842-f57df5a9f930 2020-11-11 18:47:40.142049 45575 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-10 23:54:18.444223000 Z\n- &1 2020-11-11 02:03:01.068057000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-11 19:34:10.864128835 Z\nsign_in_count:\n- 341\n- 342\n 685 \N 189.186.91.88 bf2b1199-232a-4246-9256-83682a09ef9a 2020-11-11 19:34:10.889609 45576 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 6Cu_xMfvFrF6uSkgvnDZ\n- ZvVpBZu9Abd1a1kcj6s8\n 686 \N 189.186.91.88 bf2b1199-232a-4246-9256-83682a09ef9a 2020-11-11 19:34:10.918523 45577 1167 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.103E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1030.0 189.186.91.88 4961231f-dfdd-4be6-aac2-411b2a43a4f8 2020-11-11 19:34:30.352456 45578 3383 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1167\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-11\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-848\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 4445cf8a-7ddf-4a7e-ac21-8b2b96e90676 2020-11-11 19:34:45.320612 45579 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.18E2\n- !ruby/object:BigDecimal 18:0.17E2\n 22 \N 189.186.91.88 4445cf8a-7ddf-4a7e-ac21-8b2b96e90676 2020-11-11 19:34:45.361257 45580 3383 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 021a9fbe-d633-442d-8472-db341eb3c711 2020-11-11 19:34:53.620119 45581 4484 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1167\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3383\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-848\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1799E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-848 189.186.91.88 021a9fbe-d633-442d-8472-db341eb3c711 2020-11-11 19:34:53.658923 45582 431 Customer \N \N 2 User \N create ---\nnick_name: DENISSE MANJARREZ\nphone: "(667) 184-0579"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DENISSE MANJARREZ fue registrado. 189.186.26.176 03dd7fc2-4ac1-49b6-993b-36ba9635c329 2020-11-11 20:50:58.889165 45716 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 38 \N 189.186.26.176 3e5850a5-2edc-4c1e-a365-7d01fac1c956 2020-11-12 22:17:19.91524 45583 471 Purchase \N \N 2 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-200\namount: !ruby/object:BigDecimal 18:0.7995E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.7995E4\nobservations: ''\npurchase_date: 2020-11-11\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-200 por $ 7995.0 MXN creada. 189.186.26.176 5c8f0e28-5fc5-49c4-910d-be20f5ebaab8 2020-11-11 20:52:41.683802 45584 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.11E2\n 6 \N 189.186.26.176 5c8f0e28-5fc5-49c4-910d-be20f5ebaab8 2020-11-11 20:52:41.709912 45585 3384 Sale \N \N 2 User \N create ---\ncustomer_id: 431\nuser_id: 2\nopen_cash_register_id: 1166\namount: !ruby/object:BigDecimal 18:0.4597E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4597E4\nstatus: 0\ndate_sale: 2020-11-11\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1616\nexpiration_date: 2020-12-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 4d0b5323-408f-4473-9652-25d46d337028 2020-11-11 21:00:58.719991 45586 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.9E1\n 7 \N 189.186.26.176 4d0b5323-408f-4473-9652-25d46d337028 2020-11-11 21:00:58.762903 45587 2369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 12 \N 189.186.26.176 4d0b5323-408f-4473-9652-25d46d337028 2020-11-11 21:00:58.798194 45588 4485 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1166\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E4\nmove_type: '1'\nsale_id: 3384\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1616\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1616 189.186.26.176 d3d97805-dd3c-4738-944b-65639490cb76 2020-11-11 21:01:28.677824 45589 3384 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.26.176 6ca764dd-c302-4aac-ba32-523a2e00cf04 2020-11-11 21:01:29.733259 45590 3385 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1166\namount: !ruby/object:BigDecimal 18:0.629E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.629E3\nstatus: 0\ndate_sale: 2020-11-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1617\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 f2fa5a18-3e0b-43d5-bca1-dde9191b2c70 2020-11-11 21:18:40.728879 45591 2525 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.26.176 f2fa5a18-3e0b-43d5-bca1-dde9191b2c70 2020-11-11 21:18:40.755645 45592 3385 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 ae3d1858-7528-44c2-b330-24a6c024c6a6 2020-11-11 21:18:47.600478 45593 4486 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1166\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.629E3\nmove_type: '1'\nsale_id: 3385\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1617\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.65E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1617 189.186.26.176 ae3d1858-7528-44c2-b330-24a6c024c6a6 2020-11-11 21:18:47.624914 45594 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-10 22:44:46.516542000 Z\n- &1 2020-11-10 23:24:55.160249000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-11 21:20:59.918168365 Z\nsign_in_count:\n- 367\n- 368\n 736 \N 189.186.26.176 05d51e21-f6e6-4a88-ba18-4c10eb7768c4 2020-11-11 21:20:59.930052 45595 1 User \N \N 1 User \N update ---\nunique_session_id:\n- iUxnEvzsGExZJWehGGiu\n- Sn6ujcyuCxg2375dQgsd\n 737 \N 189.186.26.176 05d51e21-f6e6-4a88-ba18-4c10eb7768c4 2020-11-11 21:20:59.944397 45596 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-07 00:37:49.714152000 Z\n- &1 2020-11-07 17:01:27.236326000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-11 21:52:18.378315263 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\nsign_in_count:\n- 337\n- 338\n 677 \N 189.186.227.197 d8cd134f-c3d7-495e-be64-612000f6a39e 2020-11-11 21:52:18.386664 45597 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Kbgc3GBDhkVwovixF66x\n- qvnwijVZ2wLASWEG6xzE\n 678 \N 189.186.227.197 d8cd134f-c3d7-495e-be64-612000f6a39e 2020-11-11 21:52:18.405572 45598 3386 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1167\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-11\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-849\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 a78296fc-27e4-4d0b-a1f9-01b57563a7f2 2020-11-11 22:13:11.842635 45599 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.17E2\n- !ruby/object:BigDecimal 18:0.16E2\n 23 \N 189.186.91.88 a78296fc-27e4-4d0b-a1f9-01b57563a7f2 2020-11-11 22:13:11.877436 45600 3386 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-849 cancelada. 189.186.91.88 67125d26-dae2-4ae1-9862-9cc6ef2e741a 2020-11-11 22:13:59.351287 45601 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.17E2\n 24 \N 189.186.91.88 67125d26-dae2-4ae1-9862-9cc6ef2e741a 2020-11-11 22:13:59.377217 45602 3387 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1167\namount: !ruby/object:BigDecimal 18:0.2098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2098E4\nstatus: 0\ndate_sale: 2020-11-11\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-850\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 3faaffb7-05bc-4985-a523-f3d614e246c7 2020-11-11 22:14:22.369426 45603 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.17E2\n- !ruby/object:BigDecimal 18:0.16E2\n 25 \N 189.186.91.88 3faaffb7-05bc-4985-a523-f3d614e246c7 2020-11-11 22:14:22.396284 45604 2407 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.91.88 3faaffb7-05bc-4985-a523-f3d614e246c7 2020-11-11 22:14:22.422449 45605 3387 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 4748f91f-cc7e-4513-9bd1-9ce2a92a1026 2020-11-11 22:18:44.219836 45719 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-11 19:34:10.864128000 Z\n- &1 2020-11-12 01:46:13.200897000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-12 23:01:50.998225275 Z\nsign_in_count:\n- 343\n- 344\n 689 \N 189.186.91.88 a33902e0-1a73-4fb4-9c16-462fd54ee351 2020-11-12 23:01:51.032717 45606 4487 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1167\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2098E4\nmove_type: '1'\nsale_id: 3387\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-850\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2098E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-850 189.186.91.88 4748f91f-cc7e-4513-9bd1-9ce2a92a1026 2020-11-11 22:18:44.25276 45607 4488 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1167\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 3105\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '454565'\n 1 movimiento de efectivo por venta con folio PV3-V-696 189.186.91.88 932288d3-1f36-40ad-b5fa-24e8b5307d12 2020-11-11 23:00:17.263698 45608 3105 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 a6a2c7b1-ad8a-429a-ab72-c866bda26d7a 2020-11-11 23:00:20.444275 45609 3388 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1166\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-11-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1618\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 700d8678-a77d-404f-9a19-99936587cb84 2020-11-12 00:16:27.878018 45610 2551 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 189.186.26.176 700d8678-a77d-404f-9a19-99936587cb84 2020-11-12 00:16:27.913373 45611 3388 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 76501445-50e7-4795-a426-fb2145d39740 2020-11-12 00:16:33.384788 45612 4489 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1166\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 3388\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1618\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1618 189.186.26.176 76501445-50e7-4795-a426-fb2145d39740 2020-11-12 00:16:33.407979 45613 3389 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1166\namount: !ruby/object:BigDecimal 18:0.1667E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1667E4\nstatus: 0\ndate_sale: 2020-11-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1619\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 c3888d0f-f61d-4d8b-9d2e-d8129e26dd93 2020-11-12 00:42:43.498425 45614 2421 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.26.176 c3888d0f-f61d-4d8b-9d2e-d8129e26dd93 2020-11-12 00:42:43.532035 45615 2513 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.26.176 c3888d0f-f61d-4d8b-9d2e-d8129e26dd93 2020-11-12 00:42:43.557663 45616 2517 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.26.176 c3888d0f-f61d-4d8b-9d2e-d8129e26dd93 2020-11-12 00:42:43.580953 45617 3389 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 84bbdd40-04bc-48b9-bf22-c47876e4df96 2020-11-12 00:42:59.784048 45618 4490 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1166\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1667E4\nmove_type: '1'\nsale_id: 3389\ncardnumber: 5545\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1619\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1619 189.186.26.176 84bbdd40-04bc-48b9-bf22-c47876e4df96 2020-11-12 00:42:59.806906 45619 1530 Product \N \N 18 User \N create ---\nsku: BOL-1530\nname: 4BLGV20487\ndescription: BACK PACKGIRLS\nprice_base: !ruby/object:BigDecimal 18:0.2995E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170825664'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1530 fue creado. 189.186.91.88 1833be71-b3d9-43d0-9c23-c35746616a33 2020-11-12 00:46:23.532521 45620 2600 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1530\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 1833be71-b3d9-43d0-9c23-c35746616a33 2020-11-12 00:46:23.576872 45621 472 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-133\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nobservations: ''\npurchase_date: 2020-11-11\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-133 por $ 599.0 MXN creada. 189.186.91.88 7380068a-0fe7-416d-b0a0-69cb86c687f9 2020-11-12 00:46:28.47109 45622 2600 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.91.88 7380068a-0fe7-416d-b0a0-69cb86c687f9 2020-11-12 00:46:28.493747 45623 3390 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1166\namount: !ruby/object:BigDecimal 18:0.120072E4\ntax: !ruby/object:BigDecimal 18:0.4828E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1249E4\nstatus: 0\ndate_sale: 2020-11-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1620\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 89dc69e1-03da-4b60-abb7-e677944ef7fb 2020-11-12 01:02:27.25427 45624 735 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.33E2\n- !ruby/object:BigDecimal 18:0.32E2\n 8 \N 189.186.26.176 89dc69e1-03da-4b60-abb7-e677944ef7fb 2020-11-12 01:02:27.282219 45625 2362 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.26.176 89dc69e1-03da-4b60-abb7-e677944ef7fb 2020-11-12 01:02:27.306559 45626 3390 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 6ef1c800-94ca-4981-9d16-d26d2c758787 2020-11-12 01:02:46.342868 45720 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 9YquyiycwGcdU7sWHjAz\n- W2PkekGvmLzL2YiXBCx2\n 690 \N 189.186.91.88 a33902e0-1a73-4fb4-9c16-462fd54ee351 2020-11-12 23:01:51.074782 45927 2610 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.26.176 6f78b5ea-7466-4c59-9729-d2bd1906a4a0 2020-11-14 18:56:47.463801 45627 4491 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1166\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.65E3\nmove_type: '1'\nsale_id: 3390\ncardnumber: 5545\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1620\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1620 189.186.26.176 6ef1c800-94ca-4981-9d16-d26d2c758787 2020-11-12 01:02:46.365654 45628 4492 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1166\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 3390\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1620\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1620 189.186.26.176 aa3add9e-0636-414d-90c5-89ba91b820be 2020-11-12 01:02:56.574287 45629 3391 Sale \N \N 2 User \N create ---\ncustomer_id: 36\nuser_id: 2\nopen_cash_register_id: 1166\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.799E3\ntotal: !ruby/object:BigDecimal 18:0.8E3\nstatus: 0\ndate_sale: 2020-11-11\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1621\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 cd873b33-7f93-4ed9-8aed-fc796eef8b54 2020-11-12 01:14:25.627719 45630 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 8 \N 189.186.26.176 cd873b33-7f93-4ed9-8aed-fc796eef8b54 2020-11-12 01:14:25.670034 45631 3391 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 910f0c9c-2fb7-4872-baa5-016cca68aa71 2020-11-12 01:14:30.104264 45632 4493 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1166\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.8E3\nmove_type: '1'\nsale_id: 3391\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1621\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1621 189.186.26.176 910f0c9c-2fb7-4872-baa5-016cca68aa71 2020-11-12 01:14:30.131471 45633 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-10 23:24:55.160249000 Z\n- &1 2020-11-11 21:20:59.918168000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-12 01:15:12.162168127 Z\nsign_in_count:\n- 368\n- 369\n 738 \N 189.186.26.176 f3d6af52-4ba1-4380-a670-9fc6476fec14 2020-11-12 01:15:12.169085 45634 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Sn6ujcyuCxg2375dQgsd\n- reMgeb2uNZWPGnF4s1YA\n 739 \N 189.186.26.176 f3d6af52-4ba1-4380-a670-9fc6476fec14 2020-11-12 01:15:12.182351 45635 1531 Product \N \N 18 User \N create ---\nsku: BOL-1531\nname: 4BLGI199769\ndescription: BACK PACK GIRLS\nprice_base: !ruby/object:BigDecimal 18:0.2995E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170791297'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1531 fue creado. 189.186.91.88 9bdd0b9a-8622-4455-b58e-4c6bca7a0b1a 2020-11-12 01:15:19.193379 45636 2601 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1531\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 9bdd0b9a-8622-4455-b58e-4c6bca7a0b1a 2020-11-12 01:15:19.255989 45637 1532 Product \N \N 18 User \N create ---\nsku: BOL-1532\nname: 4BLGV20482\ndescription: BACK PACK MORADA\nprice_base: !ruby/object:BigDecimal 18:0.2495E3\nprice_sale: !ruby/object:BigDecimal 18:0.499E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170825534'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1532 fue creado. 189.186.91.88 e13ea0bd-b1ba-4f93-8008-b4e4a4cde1d6 2020-11-12 01:17:34.25216 45638 2602 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1532\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 e13ea0bd-b1ba-4f93-8008-b4e4a4cde1d6 2020-11-12 01:17:34.300922 45639 473 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-134\namount: !ruby/object:BigDecimal 18:0.8485E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.8485E3\nobservations: ''\npurchase_date: 2020-11-11\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-134 por $ 848.5 MXN creada. 189.186.91.88 43d23c57-e813-4215-acfe-cea6637f1a98 2020-11-12 01:17:36.700273 45640 2601 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.91.88 43d23c57-e813-4215-acfe-cea6637f1a98 2020-11-12 01:17:36.726645 45641 2602 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 43d23c57-e813-4215-acfe-cea6637f1a98 2020-11-12 01:17:36.755822 45642 3392 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1167\namount: !ruby/object:BigDecimal 18:0.3298E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3298E4\nstatus: 0\ndate_sale: 2020-11-11\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-851\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 d5e94a6a-e2cf-43ae-b291-17512d85c379 2020-11-12 01:42:21.654479 45643 2365 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.91.88 d5e94a6a-e2cf-43ae-b291-17512d85c379 2020-11-12 01:42:21.694961 45644 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.15E2\n 26 \N 189.186.91.88 d5e94a6a-e2cf-43ae-b291-17512d85c379 2020-11-12 01:42:21.72631 45645 3392 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 8cb4586b-a821-4ac5-b7fa-9d10a7d603df 2020-11-12 01:42:31.910458 45646 4494 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1167\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3298E4\nmove_type: '1'\nsale_id: 3392\ncardnumber: 1252\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-851\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-851 189.186.91.88 8cb4586b-a821-4ac5-b7fa-9d10a7d603df 2020-11-12 01:42:31.932141 45790 3410 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 b6f2ebd7-d934-4fdf-8352-e2ce7f0c5f72 2020-11-13 19:46:50.214145 45647 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-11 01:06:40.538223000 Z\n- &1 2020-11-11 07:49:28.233474000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-12 01:44:14.001618473 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535208\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535208\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2046\n- 2047\n 4094 \N 189.186.91.88 9a7aec4e-fda1-43da-92c5-600aee4d0b2f 2020-11-12 01:44:14.008827 45648 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tmsQ6qrow2PVPi8fMs7Y\n- v4Vm2hr97y7kNEKPmHzm\n 4095 \N 189.186.91.88 9a7aec4e-fda1-43da-92c5-600aee4d0b2f 2020-11-12 01:44:14.026971 45649 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-11 02:03:01.068057000 Z\n- &1 2020-11-11 19:34:10.864128000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-12 01:46:13.200897737 Z\nsign_in_count:\n- 342\n- 343\n 687 \N 189.186.91.88 658a847e-37b6-4af0-9c03-676fa3e15870 2020-11-12 01:46:13.207112 45650 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ZvVpBZu9Abd1a1kcj6s8\n- 9YquyiycwGcdU7sWHjAz\n 688 \N 189.186.91.88 658a847e-37b6-4af0-9c03-676fa3e15870 2020-11-12 01:46:13.222481 45651 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-11 21:20:59.918168000 Z\n- &1 2020-11-12 01:15:12.162168000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-12 01:48:03.512048112 Z\nsign_in_count:\n- 369\n- 370\n 740 \N 189.186.26.176 a3081af0-352b-40c0-bbd1-4c3b400e37b8 2020-11-12 01:48:03.518098 45652 1 User \N \N 1 User \N update ---\nunique_session_id:\n- reMgeb2uNZWPGnF4s1YA\n- dCa2bdQmU2EUJ-eTvBCz\n 741 \N 189.186.26.176 a3081af0-352b-40c0-bbd1-4c3b400e37b8 2020-11-12 01:48:03.533903 45653 3393 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1167\namount: !ruby/object:BigDecimal 18:0.2998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2998E4\nstatus: 0\ndate_sale: 2020-11-11\nsaletype: 1\nseller_id: 29\nsale_code: PV3-V-852\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 b0109976-b12f-41ce-88f9-5db23d7b1dd8 2020-11-12 01:48:10.225775 45654 2506 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.91.88 b0109976-b12f-41ce-88f9-5db23d7b1dd8 2020-11-12 01:48:10.253429 45655 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 15 \N 189.186.91.88 b0109976-b12f-41ce-88f9-5db23d7b1dd8 2020-11-12 01:48:10.276593 45656 3393 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 79462092-0217-4ce4-8624-b3e6d3f03f92 2020-11-12 01:48:24.411725 45657 4495 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1167\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.2998E4\nmove_type: '1'\nsale_id: 3393\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-852\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '11552'\n 1 movimiento de efectivo por venta con folio PV3-V-852 189.186.91.88 79462092-0217-4ce4-8624-b3e6d3f03f92 2020-11-12 01:48:24.434619 45658 1191 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1166\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.7243E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.49E4\ncash_fund: !ruby/object:BigDecimal 18:0.917E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5817E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.26.176 e3d03872-5369-485e-8a06-6ca89e10d637 2020-11-12 01:56:47.650299 45659 1166 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.26.176 e3d03872-5369-485e-8a06-6ca89e10d637 2020-11-12 01:56:47.673721 45660 1166 Product \N \N 18 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.10995E4\n- !ruby/object:BigDecimal 18:0.0\n 3 El producto BOL-1166 fue modificado. 189.186.91.88 ff80b846-dd57-4bed-ab13-ae932040c0e4 2020-11-12 01:57:09.126635 45661 1166 Product \N \N 18 User \N update ---\nprice_sale:\n- !ruby/object:BigDecimal 18:0.2199E4\n- !ruby/object:BigDecimal 27:0.15495E4\n 4 \N 189.186.91.88 6b2b824e-6b1c-43c6-a604-9d90f8418ea1 2020-11-12 01:57:35.512246 45662 1166 Product \N \N 18 User \N update ---\nprice_base:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 27:0.1E1\n 5 El producto BOL-1166 fue modificado. 189.186.91.88 d02b5534-a051-442d-81ca-cd5dcaa8068c 2020-11-12 01:57:40.439616 45663 1533 Product \N \N 18 User \N create ---\nsku: BOL-1533\nname: PAÑNEG\ndescription: PAÑALERA NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.15495E4\nprice_sale: !ruby/object:BigDecimal 18:0.3099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1533 fue creado. 189.186.91.88 848e01e3-bece-4f23-b26b-eddc4319d3e1 2020-11-12 01:58:28.325625 45664 1533 Product \N \N 18 User \N update ---\nbarcode:\n- ''\n- '0001533'\n 2 \N 189.186.91.88 848e01e3-bece-4f23-b26b-eddc4319d3e1 2020-11-12 01:58:28.35878 45665 2603 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1533\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 848e01e3-bece-4f23-b26b-eddc4319d3e1 2020-11-12 01:58:28.385522 45666 474 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-135\namount: !ruby/object:BigDecimal 18:0.15495E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.15495E4\nobservations: ''\npurchase_date: 2020-11-11\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-135 por $ 1549.5 MXN creada. 189.186.91.88 8174b701-d0c9-409b-a8c4-3396627f6233 2020-11-12 01:58:31.948028 45667 2603 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 8174b701-d0c9-409b-a8c4-3396627f6233 2020-11-12 01:58:31.973238 45668 3394 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1167\namount: !ruby/object:BigDecimal 18:0.3099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3099E4\nstatus: 0\ndate_sale: 2020-11-11\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-853\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 377d63a0-c476-4f81-81dc-8a74761fcbde 2020-11-12 01:58:51.411183 45669 2603 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.91.88 377d63a0-c476-4f81-81dc-8a74761fcbde 2020-11-12 01:58:51.437272 45670 3394 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 a34439a5-bacd-45bc-9558-d8e362a596eb 2020-11-12 01:59:00.154276 45928 2611 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.26.176 6f78b5ea-7466-4c59-9729-d2bd1906a4a0 2020-11-14 18:56:47.48511 45671 4496 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1167\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.3099E4\nmove_type: '1'\nsale_id: 3394\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-853\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '2255'\n 1 movimiento de efectivo por venta con folio PV3-V-853 189.186.91.88 a34439a5-bacd-45bc-9558-d8e362a596eb 2020-11-12 01:59:00.176081 45672 1192 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1167\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.14091E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.39E4\ncash_fund: !ruby/object:BigDecimal 18:0.1027E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4927E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 14b71f7e-76bb-4563-ba3f-82691bbcfc45 2020-11-12 02:01:49.870158 45673 1167 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 14b71f7e-76bb-4563-ba3f-82691bbcfc45 2020-11-12 02:01:49.883004 45674 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-11 07:49:28.233474000 Z\n- &1 2020-11-12 01:44:14.001618000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-12 02:10:30.450430067 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535208\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2047\n- 2048\n 4096 \N 189.186.91.88 779ec63d-3e2a-4e3c-a0df-869f13dc04bc 2020-11-12 02:10:30.469721 45675 4 User \N \N 4 User \N update ---\nunique_session_id:\n- v4Vm2hr97y7kNEKPmHzm\n- LbM78MzD4nJygJqsT8H_\n 4097 \N 189.186.91.88 779ec63d-3e2a-4e3c-a0df-869f13dc04bc 2020-11-12 02:10:30.493267 45676 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-10 17:58:18.264429000 Z\n- &1 2020-11-11 17:35:22.960429000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-12 19:01:11.837887642 Z\nsign_in_count:\n- 698\n- 699\n 1401 \N 189.186.26.176 18d18e0e-eadd-4f72-b44f-39a308dad207 2020-11-12 19:01:11.855432 45677 2 User \N \N 2 User \N update ---\nunique_session_id:\n- LXD7f-QWbsAXzB1PnPj9\n- vwCCgerjuQUxaNHwM7GT\n 1402 \N 189.186.26.176 18d18e0e-eadd-4f72-b44f-39a308dad207 2020-11-12 19:01:11.880316 45678 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-12 01:15:12.162168000 Z\n- &1 2020-11-12 01:48:03.512048000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-12 19:27:08.248955222 Z\nsign_in_count:\n- 370\n- 371\n 742 \N 189.186.26.176 b0587a33-7531-494d-93f0-d91860d3d5d7 2020-11-12 19:27:08.256802 45679 1 User \N \N 1 User \N update ---\nunique_session_id:\n- dCa2bdQmU2EUJ-eTvBCz\n- D1biRAYrkC-isPGWiK8B\n 743 \N 189.186.26.176 b0587a33-7531-494d-93f0-d91860d3d5d7 2020-11-12 19:27:08.274646 45680 1168 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.917E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 917.0 189.186.26.176 9038aa20-e93f-4cc7-9399-ac7b1e3335e0 2020-11-12 19:41:35.36129 45681 3395 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1168\namount: !ruby/object:BigDecimal 18:0.269E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.269E3\nstatus: 0\ndate_sale: 2020-11-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1622\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 ca226182-653f-4eb2-96d8-fc825d6d16ab 2020-11-12 19:43:00.280983 45682 2390 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.26.176 ca226182-653f-4eb2-96d8-fc825d6d16ab 2020-11-12 19:43:00.31127 45683 3395 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 247c5e01-ab6f-4e38-b4e6-f3030585a61f 2020-11-12 19:43:15.75061 45684 4497 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1168\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.269E3\nmove_type: '1'\nsale_id: 3395\ncardnumber: 977\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1622\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1622 189.186.26.176 247c5e01-ab6f-4e38-b4e6-f3030585a61f 2020-11-12 19:43:15.774812 45685 1169 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1027E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1027.0 189.186.91.88 65dc0aea-0bf8-4e66-8bee-fe1d66cb0301 2020-11-12 19:57:12.658222 45686 3396 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1169\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-11-12\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-854\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 b7ef4057-1a2a-4acd-aeb1-4b31f4eb309f 2020-11-12 19:57:42.539796 45687 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 79 \N 189.186.91.88 b7ef4057-1a2a-4acd-aeb1-4b31f4eb309f 2020-11-12 19:57:42.574833 45688 3396 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 796e0de0-4f4a-4e89-8f0f-a44a80f4eeb9 2020-11-12 19:57:49.336671 45689 4498 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1169\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3396\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-854\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-854 189.186.91.88 796e0de0-4f4a-4e89-8f0f-a44a80f4eeb9 2020-11-12 19:57:49.365233 45690 3397 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1169\namount: !ruby/object:BigDecimal 18:0.289E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.289E3\nstatus: 0\ndate_sale: 2020-11-12\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-855\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 0380b49b-2940-4e29-a570-001fe5997caf 2020-11-12 20:01:52.723216 45691 2427 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.91.88 0380b49b-2940-4e29-a570-001fe5997caf 2020-11-12 20:01:52.754923 45692 3397 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 545b4480-642c-4c0c-b1b1-d25a59d88872 2020-11-12 20:02:34.250618 45717 4503 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1168\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 3401\ncardnumber: 7226\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1623\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1623 189.186.26.176 5067ebed-d52e-497d-8ac6-905b0f81090c 2020-11-12 22:17:52.896505 45693 4499 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1169\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.289E3\nmove_type: '1'\nsale_id: 3397\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-855\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.111E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-855 189.186.91.88 545b4480-642c-4c0c-b1b1-d25a59d88872 2020-11-12 20:02:34.27468 45694 3398 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1169\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2020-11-12\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-856\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 d4a83461-1e91-4fa7-8b25-b3856f71ddd9 2020-11-12 20:22:36.363253 45695 1137 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.91.88 d4a83461-1e91-4fa7-8b25-b3856f71ddd9 2020-11-12 20:22:36.406776 45696 3398 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 aa1389ef-dc98-44ae-910d-4f1961b4533d 2020-11-12 20:22:49.256058 45697 4500 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1169\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.749E3\nmove_type: '1'\nsale_id: 3398\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-856\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.251E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-856 189.186.91.88 aa1389ef-dc98-44ae-910d-4f1961b4533d 2020-11-12 20:22:49.284996 45698 3399 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1169\namount: !ruby/object:BigDecimal 18:0.6E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6E2\nstatus: 0\ndate_sale: 2020-11-12\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-857\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 d8a77e3c-c985-4c85-b785-72ef1fa26ad8 2020-11-12 20:25:56.794669 45699 1481 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 189.186.91.88 d8a77e3c-c985-4c85-b785-72ef1fa26ad8 2020-11-12 20:25:56.828427 45700 3399 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 836bea24-f2e2-4750-bafd-fbc5cb3386a7 2020-11-12 20:26:01.281421 45701 4501 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1169\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E2\nmove_type: '1'\nsale_id: 3399\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-857\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.14E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-857 189.186.91.88 836bea24-f2e2-4750-bafd-fbc5cb3386a7 2020-11-12 20:26:01.305126 45702 3400 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1169\namount: !ruby/object:BigDecimal 18:0.1359E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1359E4\nstatus: 0\ndate_sale: 2020-11-12\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-858\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 d518b17a-fa36-48ad-8e20-666750bc8b2e 2020-11-12 20:31:40.099669 45703 2497 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.91.88 d518b17a-fa36-48ad-8e20-666750bc8b2e 2020-11-12 20:31:40.131061 45704 1481 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 189.186.91.88 d518b17a-fa36-48ad-8e20-666750bc8b2e 2020-11-12 20:31:40.159629 45705 3400 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 8cafc157-5838-49bf-ae9c-5b80eaadbd76 2020-11-12 20:31:43.972961 45706 4502 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1169\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1359E4\nmove_type: '1'\nsale_id: 3400\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-858\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.141E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-858 189.186.91.88 8cafc157-5838-49bf-ae9c-5b80eaadbd76 2020-11-12 20:31:43.994714 45707 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-12 01:48:03.512048000 Z\n- &1 2020-11-12 19:27:08.248955000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-12 21:08:49.056417178 Z\nsign_in_count:\n- 371\n- 372\n 744 \N 189.186.26.176 af672c98-1f9f-4254-900f-1455cbcffbb1 2020-11-12 21:08:49.079723 45708 1 User \N \N 1 User \N update ---\nunique_session_id:\n- D1biRAYrkC-isPGWiK8B\n- P1z8csn_Ujyhoy3Nx2kw\n 745 \N 189.186.26.176 af672c98-1f9f-4254-900f-1455cbcffbb1 2020-11-12 21:08:49.106296 45709 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-12 19:27:08.248955000 Z\n- &1 2020-11-12 21:08:49.056417000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-12 21:13:54.272402751 Z\nsign_in_count:\n- 372\n- 373\n 746 \N 189.186.26.176 20dce5e3-8684-4c38-ade5-6fc587cd4f7f 2020-11-12 21:13:54.278987 45710 1 User \N \N 1 User \N update ---\nunique_session_id:\n- P1z8csn_Ujyhoy3Nx2kw\n- d-cqPVg6RtAdvnuBsTGs\n 747 \N 189.186.26.176 20dce5e3-8684-4c38-ade5-6fc587cd4f7f 2020-11-12 21:13:54.293602 45711 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-12 01:44:14.001618000 Z\n- &1 2020-11-12 02:10:30.450430000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-12 21:15:04.446556017 Z\nsign_in_count:\n- 2048\n- 2049\n 4098 \N 189.186.91.88 5fe8882d-7c40-4d23-8c87-2f6db1a58ac6 2020-11-12 21:15:04.452441 45712 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LbM78MzD4nJygJqsT8H_\n- aSBkExqyMXYNKWDqLMM7\n 4099 \N 189.186.91.88 5fe8882d-7c40-4d23-8c87-2f6db1a58ac6 2020-11-12 21:15:04.470588 45713 432 Customer \N \N 2 User \N create ---\nnick_name: ALEJANDRA CORONSA\nphone: "(667) 175-3810"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ALEJANDRA CORONSA fue registrado. 189.186.26.176 39171236-ebff-4d9a-9df9-fd690bbcecab 2020-11-12 22:14:33.644475 45714 432 Customer \N \N 2 User \N update ---\nnick_name:\n- ALEJANDRA CORONSA\n- ALEJANDRA CORONA\n 2 El cliente ALEJANDRA CORONA fue registrado. 189.186.26.176 84a6f479-4252-483e-b36b-f81d78d0ad33 2020-11-12 22:16:35.666979 45715 3401 Sale \N \N 2 User \N create ---\ncustomer_id: 432\nuser_id: 2\nopen_cash_register_id: 1168\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-11-12\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1623\nexpiration_date: 2020-12-17\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 3e5850a5-2edc-4c1e-a365-7d01fac1c956 2020-11-12 22:17:19.883907 45721 3402 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1169\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-12\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-859\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 174e8c02-576b-42c4-acce-b9bd3092cf1f 2020-11-12 23:03:48.254 45722 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 16 \N 189.186.91.88 174e8c02-576b-42c4-acce-b9bd3092cf1f 2020-11-12 23:03:48.302146 45723 3402 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 2971d049-f10b-4a57-a651-d06ac6386230 2020-11-12 23:04:12.182533 45724 4504 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1169\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 3402\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-859\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-859 189.186.91.88 2971d049-f10b-4a57-a651-d06ac6386230 2020-11-12 23:04:12.210184 45725 3403 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1169\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-12\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-860\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 a39ef75c-5ba9-4a04-9b36-806093e0ae00 2020-11-12 23:19:30.680761 45726 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 27 \N 189.186.91.88 a39ef75c-5ba9-4a04-9b36-806093e0ae00 2020-11-12 23:19:30.710715 45727 3403 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 34c176b6-e52e-435b-a3ec-9b10c2526172 2020-11-12 23:19:35.048153 45728 4505 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1169\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3403\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-860\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1799E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-860 189.186.91.88 34c176b6-e52e-435b-a3ec-9b10c2526172 2020-11-12 23:19:35.070132 45729 3404 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1169\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-12\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-861\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 1034cda8-bb0a-4565-b215-66232ccd9e65 2020-11-12 23:26:28.399896 45730 2042 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 15 \N 189.186.91.88 1034cda8-bb0a-4565-b215-66232ccd9e65 2020-11-12 23:26:28.469251 45731 3404 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 9bdb2472-17ab-45f3-812e-eab721ab5350 2020-11-12 23:27:49.042548 45732 4506 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1169\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3404\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-861\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1799E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-861 189.186.91.88 9bdb2472-17ab-45f3-812e-eab721ab5350 2020-11-12 23:27:49.065646 45733 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-12 02:10:30.450430000 Z\n- &1 2020-11-12 21:15:04.446556000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-12 23:36:52.354369287 Z\nsign_in_count:\n- 2049\n- 2050\n 4100 \N 189.186.91.88 5ffd2e5a-bb6b-41a9-b013-1d3d5f1c9fa9 2020-11-12 23:36:52.361833 45734 4 User \N \N 4 User \N update ---\nunique_session_id:\n- aSBkExqyMXYNKWDqLMM7\n- 6te3cyG2WrvAYhwnnCiv\n 4101 \N 189.186.91.88 5ffd2e5a-bb6b-41a9-b013-1d3d5f1c9fa9 2020-11-12 23:36:52.383552 45735 433 Customer \N \N 2 User \N create ---\nnick_name: CLAUDIA LOPEZ\nphone: "(667) 470-5928"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CLAUDIA LOPEZ fue registrado. 189.186.26.176 2478fdc0-259f-44f3-813c-634398dcd96b 2020-11-12 23:50:06.505161 45736 3405 Sale \N \N 2 User \N create ---\ncustomer_id: 433\nuser_id: 2\nopen_cash_register_id: 1168\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-11-12\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1624\nexpiration_date: 2020-12-17\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 1d74e40b-50ff-4996-93c3-e4cee7b79edb 2020-11-12 23:50:16.084545 45737 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 9 \N 189.186.26.176 1d74e40b-50ff-4996-93c3-e4cee7b79edb 2020-11-12 23:50:16.121772 45738 4507 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1168\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.45E3\nmove_type: '1'\nsale_id: 3405\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1624\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.45E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1624 189.186.26.176 c1769cd1-79d2-48cf-be2c-d5b8192f7f36 2020-11-12 23:50:26.084719 45739 3405 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.26.176 e29bad41-a4cf-4e8f-a094-4d8c106bec3f 2020-11-12 23:50:29.218433 45740 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-12 01:46:13.200897000 Z\n- &1 2020-11-12 23:01:50.998225000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-12 23:50:44.635658621 Z\nsign_in_count:\n- 344\n- 345\n 691 \N 189.186.91.88 8a5a71ac-712f-438a-8f15-6be6767780fa 2020-11-12 23:50:44.641353 45741 18 User \N \N 18 User \N update ---\nunique_session_id:\n- W2PkekGvmLzL2YiXBCx2\n- 81tYz86zgnoZDwzqDFwa\n 692 \N 189.186.91.88 8a5a71ac-712f-438a-8f15-6be6767780fa 2020-11-12 23:50:44.655199 45742 4508 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1169\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 3273\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-794 189.186.91.88 150ef771-247f-4921-869c-08e57ba896d3 2020-11-12 23:51:15.590347 45743 4508 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1169\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 3273\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.91.88 2fcc8660-16a0-4dab-8559-fc712d9fdd06 2020-11-12 23:51:18.888564 45744 4509 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1169\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 3273\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-794 189.186.91.88 b96d88fd-0562-463e-8231-85f4149b4496 2020-11-12 23:51:31.349643 45745 3273 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 d66cfca2-4ceb-498f-8aac-4e0193b17ae4 2020-11-12 23:51:32.542081 45746 3405 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV1-V-1624 cancelada. 189.186.26.176 c58f2c9b-0f04-4f54-996c-957c659d9040 2020-11-12 23:51:45.211087 45747 4507 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1168\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.45E3\nmove_type: '1'\nsale_id: 3405\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1624\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.45E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.26.176 c58f2c9b-0f04-4f54-996c-957c659d9040 2020-11-12 23:51:45.234079 45748 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.8E1\n 10 \N 189.186.26.176 c58f2c9b-0f04-4f54-996c-957c659d9040 2020-11-12 23:51:45.257244 45749 3406 Sale \N \N 2 User \N create ---\ncustomer_id: 433\nuser_id: 2\nopen_cash_register_id: 1168\namount: !ruby/object:BigDecimal 18:0.2998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2998E4\nstatus: 0\ndate_sale: 2020-11-12\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1625\nexpiration_date: 2020-12-17\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 aa42f4b2-7b5d-4098-a333-837cef1ff561 2020-11-12 23:52:37.407548 45750 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 11 \N 189.186.26.176 aa42f4b2-7b5d-4098-a333-837cef1ff561 2020-11-12 23:52:37.442872 45751 2369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 13 \N 189.186.26.176 aa42f4b2-7b5d-4098-a333-837cef1ff561 2020-11-12 23:52:37.471808 45752 4510 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1168\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.45E3\nmove_type: '1'\nsale_id: 3406\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1625\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.45E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1625 189.186.26.176 f9d2556f-1f53-46c0-b537-c5614747901c 2020-11-12 23:52:49.518369 45753 3406 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.26.176 1dd81fed-3353-4d19-bb87-df588b3d60d4 2020-11-12 23:52:50.618295 45754 3407 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1168\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-11-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1626\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 ab7445cb-095c-4319-94d6-e87ba25a269f 2020-11-12 23:54:01.231331 45755 2536 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.26.176 ab7445cb-095c-4319-94d6-e87ba25a269f 2020-11-12 23:54:01.257025 45756 3407 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 35713fb1-90c8-4faf-aed2-00e827a6dcb6 2020-11-12 23:54:13.010506 45757 4511 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1168\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 3407\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1626\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1626 189.186.26.176 35713fb1-90c8-4faf-aed2-00e827a6dcb6 2020-11-12 23:54:13.043213 45758 3408 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1168\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-11-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1627\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 e7380b71-4bfd-4631-b445-eb2962cbff0c 2020-11-12 23:55:16.113373 45759 2536 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.26.176 e7380b71-4bfd-4631-b445-eb2962cbff0c 2020-11-12 23:55:16.145089 45760 3408 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 334ee102-8a5e-4e05-aafc-2ed91ff2e866 2020-11-12 23:55:20.158445 45761 4512 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1168\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 3408\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1627\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1627 189.186.26.176 334ee102-8a5e-4e05-aafc-2ed91ff2e866 2020-11-12 23:55:20.181724 45762 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-12 21:08:49.056417000 Z\n- &1 2020-11-12 21:13:54.272402000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-12 23:59:09.812773387 Z\nsign_in_count:\n- 373\n- 374\n 748 \N 189.186.26.176 ffd92239-c9fe-4456-8b9b-c902848690e8 2020-11-12 23:59:09.820797 45763 1 User \N \N 1 User \N update ---\nunique_session_id:\n- d-cqPVg6RtAdvnuBsTGs\n- VWokBNmUziku_sjsVatx\n 749 \N 189.186.26.176 ffd92239-c9fe-4456-8b9b-c902848690e8 2020-11-12 23:59:09.841764 45764 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-12 21:15:04.446556000 Z\n- &1 2020-11-12 23:36:52.354369000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-13 00:02:20.366981074 Z\nsign_in_count:\n- 2050\n- 2051\n 4102 \N 189.186.91.88 afdca4d5-80fe-455e-b573-adb82d67d52c 2020-11-13 00:02:20.372891 45765 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6te3cyG2WrvAYhwnnCiv\n- 5NJYJyyiv9PiJp-4WDit\n 4103 \N 189.186.91.88 afdca4d5-80fe-455e-b573-adb82d67d52c 2020-11-13 00:02:20.392174 45766 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-12 23:01:50.998225000 Z\n- &1 2020-11-12 23:50:44.635658000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-13 01:49:42.668679728 Z\nsign_in_count:\n- 345\n- 346\n 693 \N 189.186.91.88 fd9663f3-9768-40b1-9b4b-4e4155003701 2020-11-13 01:49:42.674698 45767 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 81tYz86zgnoZDwzqDFwa\n- 986sQz2s-BNS8y4-Hfvi\n 694 \N 189.186.91.88 fd9663f3-9768-40b1-9b4b-4e4155003701 2020-11-13 01:49:42.69054 45768 353 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1168\nquantity: !ruby/object:BigDecimal 18:0.5E3\nstatus: 1\nobservations: ETIQUETAS ROPA SUO\nexpense_date: 2020-11-12\nexpense_code: PV1-E-246\n 1 Egreso por 500.0 registrado 189.186.26.176 92331f78-8ba9-4976-868a-0467ce9e2251 2020-11-13 01:53:42.011844 45769 4513 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1168\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 353\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.26.176 92331f78-8ba9-4976-868a-0467ce9e2251 2020-11-13 01:53:42.033666 45770 1193 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1168\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2117E4\namount_out: !ruby/object:BigDecimal 18:0.5E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.865E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1865E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.26.176 8a0b0109-c429-4e0a-9a99-fa3fbdf6f0d7 2020-11-13 01:56:11.515919 45771 1168 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.26.176 8a0b0109-c429-4e0a-9a99-fa3fbdf6f0d7 2020-11-13 01:56:11.529689 45772 1194 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1169\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.9752E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.9E4\ncash_fund: !ruby/object:BigDecimal 18:0.1779E4\nphysical_cash: !ruby/object:BigDecimal 18:0.10779E5\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 08d0160a-9648-42ec-8e90-88bdf6f28dd3 2020-11-13 01:56:18.819122 45773 1169 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 08d0160a-9648-42ec-8e90-88bdf6f28dd3 2020-11-13 01:56:18.861423 45774 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-12 21:13:54.272402000 Z\n- &1 2020-11-12 23:59:09.812773000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-13 02:57:01.405179718 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538773\n mask_addr: 4294967295\nsign_in_count:\n- 374\n- 375\n 750 \N 177.228.114.149 c1439004-28b8-46ad-83a3-33b3dd08ef75 2020-11-13 02:57:01.413395 45775 1 User \N \N 1 User \N update ---\nunique_session_id:\n- VWokBNmUziku_sjsVatx\n- fW8GPx-khzwWbzeEWzQ7\n 751 \N 177.228.114.149 c1439004-28b8-46ad-83a3-33b3dd08ef75 2020-11-13 02:57:01.429386 45776 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-12 23:36:52.354369000 Z\n- &1 2020-11-13 00:02:20.366981000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-13 07:23:03.417220112 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535648\n mask_addr: 4294967295\nsign_in_count:\n- 2051\n- 2052\n 4104 \N 177.228.102.96 4f3fcedc-37fe-4e9e-a957-ae3f76cee1b6 2020-11-13 07:23:03.424425 45777 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5NJYJyyiv9PiJp-4WDit\n- qjic8sJgxKfJzNWsws6_\n 4105 \N 177.228.102.96 4f3fcedc-37fe-4e9e-a957-ae3f76cee1b6 2020-11-13 07:23:03.441826 45778 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-12 23:50:44.635658000 Z\n- &1 2020-11-13 01:49:42.668679000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-13 19:41:17.522804087 Z\nsign_in_count:\n- 346\n- 347\n 695 \N 189.186.91.88 031b95d4-adeb-4600-82e6-6eeaa3303124 2020-11-13 19:41:17.551073 45779 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 986sQz2s-BNS8y4-Hfvi\n- ZuNh8Z7uh--apunPRaP1\n 696 \N 189.186.91.88 031b95d4-adeb-4600-82e6-6eeaa3303124 2020-11-13 19:41:17.575926 45780 1170 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1779E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1779.0 189.186.91.88 1ced03be-a1c7-4877-b607-67e64e2e17ec 2020-11-13 19:45:34.882346 45781 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-11 17:35:22.960429000 Z\n- &1 2020-11-12 19:01:11.837887000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-13 19:46:02.233412553 Z\nsign_in_count:\n- 699\n- 700\n 1403 \N 189.186.26.176 dcef0386-9564-4434-a113-a6027a33dd31 2020-11-13 19:46:02.239358 45782 2 User \N \N 2 User \N update ---\nunique_session_id:\n- vwCCgerjuQUxaNHwM7GT\n- WZivg2qSWXRhpLqE7pza\n 1404 \N 189.186.26.176 dcef0386-9564-4434-a113-a6027a33dd31 2020-11-13 19:46:02.257811 45783 1171 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.865E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 865.0 189.186.26.176 35b86846-e215-489b-851b-de2b3a3d8372 2020-11-13 19:46:18.242441 45784 3409 Sale \N \N 18 User \N create ---\ncustomer_id: 426\nuser_id: 18\nopen_cash_register_id: 1170\namount: !ruby/object:BigDecimal 18:0.1178E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1178E4\nstatus: 0\ndate_sale: 2020-11-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-862\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 a60a7bc9-ca9c-45a7-a03a-bebd489a8440 2020-11-13 19:46:30.537301 45785 2572 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.91.88 a60a7bc9-ca9c-45a7-a03a-bebd489a8440 2020-11-13 19:46:30.580037 45786 3409 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 d507d5d1-6b09-4f0d-a4dd-051c42b1db5d 2020-11-13 19:46:36.713293 45787 4514 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1170\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.512E3\nmove_type: '1'\nsale_id: 3409\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-862\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.512E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-862 189.186.91.88 d507d5d1-6b09-4f0d-a4dd-051c42b1db5d 2020-11-13 19:46:36.736157 45788 3410 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1171\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-11-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1628\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 869de360-18a9-48cd-9412-ce49ff559a1a 2020-11-13 19:46:38.565417 45789 2372 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.26.176 869de360-18a9-48cd-9412-ce49ff559a1a 2020-11-13 19:46:38.590743 45791 4515 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2099E4\nmove_type: '1'\nsale_id: 3410\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1628\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1628 189.186.26.176 b6f2ebd7-d934-4fdf-8352-e2ce7f0c5f72 2020-11-13 19:46:50.248075 45792 3409 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-862 cancelada. 189.186.91.88 c2cd7a9e-20f8-4947-a135-2143afafa5da 2020-11-13 19:46:54.81928 45793 4514 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1170\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.512E3\nmove_type: '1'\nsale_id: 3409\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-862\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.512E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.91.88 c2cd7a9e-20f8-4947-a135-2143afafa5da 2020-11-13 19:46:54.856287 45794 2572 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.91.88 c2cd7a9e-20f8-4947-a135-2143afafa5da 2020-11-13 19:46:54.892116 45795 3411 Sale \N \N 18 User \N create ---\ncustomer_id: 426\nuser_id: 18\nopen_cash_register_id: 1170\namount: !ruby/object:BigDecimal 18:0.1178E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1178E4\nstatus: 0\ndate_sale: 2020-11-13\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-863\nexpiration_date: 2020-12-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 51425fd9-f4e2-4253-8891-1d1002ad814e 2020-11-13 19:47:10.390686 45796 2572 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.91.88 51425fd9-f4e2-4253-8891-1d1002ad814e 2020-11-13 19:47:10.419915 45797 4516 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1170\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.512E3\nmove_type: '1'\nsale_id: 3411\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-863\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.512E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-863 189.186.91.88 79e87403-ed0b-4fa1-81b6-06cc6702cb3a 2020-11-13 19:47:25.453441 45798 3411 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 897e4719-e36a-4439-9304-fe6c6f028514 2020-11-13 19:47:26.886955 45799 4517 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1170\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1487E4\nmove_type: '1'\nsale_id: 3341\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1487E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-831 189.186.91.88 6132123f-1e4a-4246-a1af-6a9f29e501dc 2020-11-13 19:50:24.391404 45800 3341 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 08a03cab-36cf-41fb-bd13-3aeae875f21c 2020-11-13 19:50:26.406059 45801 3412 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1170\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-11-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-864\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 e9d82295-c589-4619-8c5f-675124fe18aa 2020-11-13 20:12:09.534947 45802 2568 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.91.88 e9d82295-c589-4619-8c5f-675124fe18aa 2020-11-13 20:12:09.563387 45803 3412 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 132df095-8b2b-4a8c-9f5d-7cc94d06fdc7 2020-11-13 20:12:28.884216 45804 4518 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1170\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 3412\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-864\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-864 189.186.91.88 132df095-8b2b-4a8c-9f5d-7cc94d06fdc7 2020-11-13 20:12:28.907363 45805 434 Customer \N \N 18 User \N create ---\nnick_name: JUANA GARCIA\nphone: "(667) 227-8727"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JUANA GARCIA fue registrado. 189.186.91.88 5cdc386d-9800-43d3-b637-9a4466d98023 2020-11-13 20:28:38.57134 45806 3413 Sale \N \N 18 User \N create ---\ncustomer_id: 434\nuser_id: 18\nopen_cash_register_id: 1170\namount: !ruby/object:BigDecimal 18:0.1389E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1389E4\nstatus: 0\ndate_sale: 2020-11-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-865\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 d89f9cb7-477d-4b53-b0b8-58f6a6e65049 2020-11-13 20:28:46.229627 45807 2573 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.91.88 d89f9cb7-477d-4b53-b0b8-58f6a6e65049 2020-11-13 20:28:46.261591 45808 3413 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-865 cancelada. 189.186.91.88 ee08576f-ed66-4dab-83d3-3817c4d38e2a 2020-11-13 20:28:51.138226 45809 2573 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.91.88 ee08576f-ed66-4dab-83d3-3817c4d38e2a 2020-11-13 20:28:51.162774 45810 3414 Sale \N \N 18 User \N create ---\ncustomer_id: 434\nuser_id: 18\nopen_cash_register_id: 1170\namount: !ruby/object:BigDecimal 18:0.1389E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1389E4\nstatus: 0\ndate_sale: 2020-11-13\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-866\nexpiration_date: 2020-12-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 d786c41d-59e0-4639-a649-eac85728d15e 2020-11-13 20:29:05.371081 45811 2573 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.91.88 d786c41d-59e0-4639-a649-eac85728d15e 2020-11-13 20:29:05.399014 45832 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-13 07:23:03.417220000 Z\n- &1 2020-11-13 21:50:55.271412000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-13 23:58:09.051046866 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535648\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2053\n- 2054\n 4108 \N 189.186.91.88 72c685c3-d85a-4b9f-9898-8df71f63a799 2020-11-13 23:58:09.058055 45812 4519 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1170\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3414\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-866\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-866 189.186.91.88 fdfc19b3-337e-40cd-ae07-46ed1e202cfb 2020-11-13 20:29:11.911411 45813 3414 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 2df4640d-7bbe-41be-9793-00b8b77360ca 2020-11-13 20:29:13.197236 45814 3415 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1170\namount: !ruby/object:BigDecimal 18:0.811E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.811E3\nstatus: 0\ndate_sale: 2020-11-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-867\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 e84026a1-68a5-40ac-b3b2-bf99ab20afd8 2020-11-13 20:43:13.6771 45815 2575 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.91.88 e84026a1-68a5-40ac-b3b2-bf99ab20afd8 2020-11-13 20:43:13.715903 45816 3415 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 5c4cb49d-3e6c-4afc-bbe3-8a665c06f316 2020-11-13 20:44:12.806081 45817 4520 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1170\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.811E3\nmove_type: '1'\nsale_id: 3415\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-867\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.811E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-867 189.186.91.88 5c4cb49d-3e6c-4afc-bbe3-8a665c06f316 2020-11-13 20:44:12.828914 45818 3416 Sale \N \N 18 User \N create ---\ncustomer_id: 434\nuser_id: 18\nopen_cash_register_id: 1170\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-13\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-868\nexpiration_date: 2020-12-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 dd703d8c-042f-4741-be05-83b062219dec 2020-11-13 20:54:57.217062 45819 2577 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.91.88 dd703d8c-042f-4741-be05-83b062219dec 2020-11-13 20:54:57.244347 45820 4521 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1170\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.111E3\nmove_type: '1'\nsale_id: 3416\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-868\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.111E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-868 189.186.91.88 2b04ec7a-2b69-4186-9e6d-262c71daa283 2020-11-13 20:55:03.807534 45821 4521 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1170\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.111E3\nmove_type: '1'\nsale_id: 3416\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-868\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.111E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.91.88 518d64a0-e170-441b-8eba-60f40839e38f 2020-11-13 20:55:18.749597 45822 4522 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1170\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.14E3\nmove_type: '1'\nsale_id: 3416\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-868\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.14E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-868 189.186.91.88 95452814-6006-4eaf-b939-938d6b21d24f 2020-11-13 20:55:26.254792 45823 3416 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 1befe334-a13f-43f2-a704-8e04c76acf14 2020-11-13 20:55:27.230173 45824 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-13 00:02:20.366981000 Z\n- &1 2020-11-13 07:23:03.417220000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-13 21:50:55.271412485 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535648\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535648\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2052\n- 2053\n 4106 \N 189.186.91.88 9709c87a-446e-4664-95df-e853bd94071b 2020-11-13 21:50:55.280138 45825 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qjic8sJgxKfJzNWsws6_\n- BkxJj6vqeWype7BgubnE\n 4107 \N 189.186.91.88 9709c87a-446e-4664-95df-e853bd94071b 2020-11-13 21:50:55.302036 45826 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-13 01:49:42.668679000 Z\n- &1 2020-11-13 19:41:17.522804000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-13 21:52:15.455006927 Z\nsign_in_count:\n- 347\n- 348\n 697 \N 189.186.91.88 1b709c51-6a96-4f16-93bc-00cea004f122 2020-11-13 21:52:15.461029 45827 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ZuNh8Z7uh--apunPRaP1\n- 2_y6JExWwzbi5TTXz1wd\n 698 \N 189.186.91.88 1b709c51-6a96-4f16-93bc-00cea004f122 2020-11-13 21:52:15.475672 45828 4523 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1171\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 3195\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAM\n 1 movimiento de efectivo por venta con folio PV1-V-1528 189.186.26.176 5f10b25b-7007-46a3-aa2c-f8617e703a20 2020-11-13 21:58:20.617774 45829 3195 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.26.176 2208daaf-b94b-4821-b520-2212f28d89d4 2020-11-13 21:58:23.913212 45830 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-12 23:59:09.812773000 Z\n- &1 2020-11-13 02:57:01.405179000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-13 23:03:19.211669461 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538773\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538773\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934446\n mask_addr: 4294967295\nsign_in_count:\n- 375\n- 376\n 752 \N 200.68.135.238 31b34996-cd08-4169-aacd-ee6333a9ec70 2020-11-13 23:03:19.251805 45831 1 User \N \N 1 User \N update ---\nunique_session_id:\n- fW8GPx-khzwWbzeEWzQ7\n- YyBJSnBt1b3jVem1e8S6\n 753 \N 200.68.135.238 31b34996-cd08-4169-aacd-ee6333a9ec70 2020-11-13 23:03:19.30133 45833 4 User \N \N 4 User \N update ---\nunique_session_id:\n- BkxJj6vqeWype7BgubnE\n- QMefU2nU5KaHuvj2gVSU\n 4109 \N 189.186.91.88 72c685c3-d85a-4b9f-9898-8df71f63a799 2020-11-13 23:58:09.086648 45834 4524 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1171\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2548E4\nmove_type: '1'\nsale_id: 3406\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2548E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1625 189.186.26.176 87828bc1-1787-4ed9-b71c-4679dc7d5d47 2020-11-14 00:01:27.440854 45835 3406 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.26.176 d5d77bc4-ada0-4732-b39e-2695ef7a536e 2020-11-14 00:01:29.484828 45836 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-13 19:41:17.522804000 Z\n- &1 2020-11-13 21:52:15.455006000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-14 00:22:54.929170299 Z\nsign_in_count:\n- 348\n- 349\n 699 \N 189.186.91.88 c654fd14-defd-406b-a416-141df997896a 2020-11-14 00:22:54.935933 45837 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 2_y6JExWwzbi5TTXz1wd\n- mUQH-uExHrKFcM1kM2Mx\n 700 \N 189.186.91.88 c654fd14-defd-406b-a416-141df997896a 2020-11-14 00:22:54.96188 45838 4525 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1170\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 3347\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-836 189.186.91.88 0c3391aa-5c2c-4de6-badd-f1a3a2837dd5 2020-11-14 00:32:42.026088 45839 3347 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 bd87b255-ca8a-49d8-9012-7bc418fd893a 2020-11-14 00:32:43.702146 45840 3417 Sale \N \N 18 User \N create ---\ncustomer_id: 270\nuser_id: 18\nopen_cash_register_id: 1170\namount: !ruby/object:BigDecimal 18:0.811E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.811E3\nstatus: 0\ndate_sale: 2020-11-13\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-869\nexpiration_date: 2020-12-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 2f154229-c67a-4bc5-9807-f08111dbd769 2020-11-14 00:33:34.005397 45841 2575 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.91.88 2f154229-c67a-4bc5-9807-f08111dbd769 2020-11-14 00:33:34.034475 45842 4526 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1170\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.301E3\nmove_type: '1'\nsale_id: 3417\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-869\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.301E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-869 189.186.91.88 212f6fda-59b5-475e-a0fa-a1a28897d5a7 2020-11-14 00:33:45.887141 45843 3417 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 4f022006-f9c2-4e11-88fd-2bc1cb968912 2020-11-14 00:33:50.819014 45844 4527 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1170\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.51E3\nmove_type: '1'\nsale_id: 3417\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.51E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-869 189.186.91.88 0fb72f2c-df2a-43eb-af8c-516be733a789 2020-11-14 00:34:50.862455 45845 3417 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 93238cd8-1af7-4f9e-bac8-8b0daa0cfc62 2020-11-14 00:34:52.307288 45846 2518 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.26.176 e2c558e1-b5a8-462e-b0e5-94240638de02 2020-11-14 01:02:40.097519 45847 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 35 \N 189.186.26.176 a006773e-f549-42fb-9bb9-f858416b8bc4 2020-11-14 01:04:05.812865 45848 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.6E1\n 36 \N 189.186.26.176 dc7a195e-92de-4b5f-b615-bbd7ea1140c9 2020-11-14 01:04:36.753658 45849 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-13 21:50:55.271412000 Z\n- &1 2020-11-13 23:58:09.051046000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-14 01:07:47.363035914 Z\nsign_in_count:\n- 2054\n- 2055\n 4110 \N 189.186.91.88 a1b2fbcd-e671-41b2-acf6-2e93cd9ca518 2020-11-14 01:07:47.368737 45850 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QMefU2nU5KaHuvj2gVSU\n- NeZNxpsRTza3ncddJqzC\n 4111 \N 189.186.91.88 a1b2fbcd-e671-41b2-acf6-2e93cd9ca518 2020-11-14 01:07:47.387865 45851 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-13 21:52:15.455006000 Z\n- &1 2020-11-14 00:22:54.929170000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-14 01:09:33.055742318 Z\nsign_in_count:\n- 349\n- 350\n 701 \N 189.186.91.88 e482bffa-c733-48ab-9ed1-94315e6d1156 2020-11-14 01:09:33.061996 45852 18 User \N \N 18 User \N update ---\nunique_session_id:\n- mUQH-uExHrKFcM1kM2Mx\n- TGEV1T7cuVoYecsn5uPq\n 702 \N 189.186.91.88 e482bffa-c733-48ab-9ed1-94315e6d1156 2020-11-14 01:09:33.077477 45853 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-13 02:57:01.405179000 Z\n- &1 2020-11-13 23:03:19.211669000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-14 01:23:10.156133823 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538773\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934446\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934446\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\nsign_in_count:\n- 376\n- 377\n 754 \N 189.186.26.176 29606d78-1256-49eb-aa60-2b29e222a73c 2020-11-14 01:23:10.168336 45854 1 User \N \N 1 User \N update ---\nunique_session_id:\n- YyBJSnBt1b3jVem1e8S6\n- fgyKHD16ynW7DgWJLZ9n\n 755 \N 189.186.26.176 29606d78-1256-49eb-aa60-2b29e222a73c 2020-11-14 01:23:10.185535 45855 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-13 23:58:09.051046000 Z\n- &1 2020-11-14 01:07:47.363035000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-14 01:24:48.655161331 Z\nsign_in_count:\n- 2055\n- 2056\n 4112 \N 189.186.91.88 87b087f1-1300-4175-bf0c-c7c772532dc0 2020-11-14 01:24:48.662632 45856 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NeZNxpsRTza3ncddJqzC\n- Fgb3AfzNwN9w26Gzk_An\n 4113 \N 189.186.91.88 87b087f1-1300-4175-bf0c-c7c772532dc0 2020-11-14 01:24:48.694977 45857 730 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-11-13\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.26.176 231129d5-fef4-47de-a48a-b063dba5b594 2020-11-14 01:25:26.112457 45858 2546 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.26.176 86cb453d-b825-4857-9cbe-6f7bad749db9 2020-11-14 01:27:34.749671 45859 731 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-11-13\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.26.176 6a5e5625-4e50-498e-a40e-9c1d0786ef28 2020-11-14 01:27:42.014964 45860 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-14 00:22:54.929170000 Z\n- &1 2020-11-14 01:09:33.055742000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-14 01:43:52.382072456 Z\nsign_in_count:\n- 350\n- 351\n 703 \N 189.186.91.88 c5a573a2-75ab-4d14-8a92-dd1f6d411e57 2020-11-14 01:43:52.388095 45861 18 User \N \N 18 User \N update ---\nunique_session_id:\n- TGEV1T7cuVoYecsn5uPq\n- CZEzTopv2H4tyRE4zHUk\n 704 \N 189.186.91.88 c5a573a2-75ab-4d14-8a92-dd1f6d411e57 2020-11-14 01:43:52.40423 45862 730 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-13\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.91.88 5cd32d3c-3532-4502-ae96-a92c059a3d8d 2020-11-14 01:44:07.475353 45863 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.1E2\n 57 \N 189.186.91.88 5cd32d3c-3532-4502-ae96-a92c059a3d8d 2020-11-14 01:44:07.49747 45864 2572 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.91.88 5cd32d3c-3532-4502-ae96-a92c059a3d8d 2020-11-14 01:44:07.51652 45865 731 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-13\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.91.88 4f42c890-d5b5-4dc5-8555-5a4fb6e1691c 2020-11-14 01:44:15.529619 45866 2595 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.91.88 4f42c890-d5b5-4dc5-8555-5a4fb6e1691c 2020-11-14 01:44:15.546325 45867 1534 Product \N \N 2 User \N create ---\nsku: BLU-1534\nname: BLS-0165\ndescription: BLUSA APECH PLATA 3499\nprice_base: !ruby/object:BigDecimal 18:0.341E3\nprice_sale: !ruby/object:BigDecimal 18:0.849E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1534 fue creado. 189.186.26.176 36dae2fc-deaf-4a1d-8bdd-0b5f771332e5 2020-11-14 01:52:30.387186 45868 1534 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001534'\n 2 \N 189.186.26.176 36dae2fc-deaf-4a1d-8bdd-0b5f771332e5 2020-11-14 01:52:30.439334 45869 2604 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1534\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 36dae2fc-deaf-4a1d-8bdd-0b5f771332e5 2020-11-14 01:52:30.475673 45870 475 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-201\namount: !ruby/object:BigDecimal 18:0.341E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.341E3\nobservations: ''\npurchase_date: 2020-11-13\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-201 por $ 341.0 MXN creada. 189.186.26.176 cf7e8852-631e-4437-9bec-950bdeb5eb75 2020-11-14 01:54:25.136518 45871 2604 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.26.176 cf7e8852-631e-4437-9bec-950bdeb5eb75 2020-11-14 01:54:25.170929 45872 476 Purchase \N \N 2 User \N create ---\nsupplier_id: 3\npointsale_id: 1\npurchase_code: PV1-C-202\namount: !ruby/object:BigDecimal 18:0.3344E2\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3344E2\nobservations: ''\npurchase_date: 2020-11-13\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-202 por $ 33.44 MXN creada. 189.186.26.176 2bae5b34-f090-459e-8e3a-b928f89ef1e3 2020-11-14 01:55:04.565959 45873 2067 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.26.176 2bae5b34-f090-459e-8e3a-b928f89ef1e3 2020-11-14 01:55:04.591247 45874 3418 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1171\namount: !ruby/object:BigDecimal 18:0.99E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.99E2\nstatus: 0\ndate_sale: 2020-11-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1629\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 f185dff9-eed7-4671-a49c-d889707eb486 2020-11-14 01:55:41.010529 45875 2067 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.26.176 f185dff9-eed7-4671-a49c-d889707eb486 2020-11-14 01:55:41.040583 45876 3418 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 d6273b72-7f06-41b2-9399-e012544b6a9a 2020-11-14 01:55:57.559296 45877 4528 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1171\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.99E2\nmove_type: '1'\nsale_id: 3418\ncardnumber: 2091\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1629\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1629 189.186.26.176 d6273b72-7f06-41b2-9399-e012544b6a9a 2020-11-14 01:55:57.590878 45878 3419 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1170\namount: !ruby/object:BigDecimal 18:0.2998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2998E4\nstatus: 0\ndate_sale: 2020-11-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-870\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 72de7e66-720c-4779-aa52-fe251db3ef38 2020-11-14 01:57:45.405218 45879 2506 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.91.88 72de7e66-720c-4779-aa52-fe251db3ef38 2020-11-14 01:57:45.434099 45880 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 17 \N 189.186.91.88 72de7e66-720c-4779-aa52-fe251db3ef38 2020-11-14 01:57:45.463002 45881 3419 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 bbdefff9-114a-4d2e-a9e5-2226e1709813 2020-11-14 01:58:11.56074 45882 4529 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1170\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.2998E4\nmove_type: '1'\nsale_id: 3419\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-870\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1222'\n 1 movimiento de efectivo por venta con folio PV3-V-870 189.186.91.88 bbdefff9-114a-4d2e-a9e5-2226e1709813 2020-11-14 01:58:11.592508 45904 1538 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001538'\n 2 \N 189.186.26.176 2ee1504b-9025-4770-8210-742234ac9311 2020-11-14 18:40:55.537659 45883 1195 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1170\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.8657E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.5711E4\ncash_fund: !ruby/object:BigDecimal 18:0.1727E4\nphysical_cash: !ruby/object:BigDecimal 18:0.7438E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 2d095125-cc70-4b66-9499-7b1ea9a71612 2020-11-14 02:03:14.588628 45884 1170 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 2d095125-cc70-4b66-9499-7b1ea9a71612 2020-11-14 02:03:14.608773 45885 1196 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1171\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6145E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.46E4\ncash_fund: !ruby/object:BigDecimal 18:0.912E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5512E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.26.176 c6e2014d-6ece-4e43-bcee-11e417091792 2020-11-14 02:10:41.220806 45886 1171 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.26.176 c6e2014d-6ece-4e43-bcee-11e417091792 2020-11-14 02:10:41.245222 45887 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-14 01:07:47.363035000 Z\n- &1 2020-11-14 01:24:48.655161000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-14 06:44:19.271201812 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535344\n mask_addr: 4294967295\nsign_in_count:\n- 2056\n- 2057\n 4114 \N 177.228.101.48 6a3ee62b-eb7a-4111-ad9d-6b85df74bfcb 2020-11-14 06:44:19.278631 45888 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Fgb3AfzNwN9w26Gzk_An\n- j25d6QPqs6XBAxWyn91f\n 4115 \N 177.228.101.48 6a3ee62b-eb7a-4111-ad9d-6b85df74bfcb 2020-11-14 06:44:19.297584 45889 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-12 19:01:11.837887000 Z\n- &1 2020-11-13 19:46:02.233412000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-14 17:38:24.147310796 Z\nsign_in_count:\n- 700\n- 701\n 1405 \N 189.186.26.176 866ff3e4-afc6-4206-ab0e-d1cda05fb05d 2020-11-14 17:38:24.177232 45890 2 User \N \N 2 User \N update ---\nunique_session_id:\n- WZivg2qSWXRhpLqE7pza\n- zzGvLS6TqVr3K1ZQPC3c\n 1406 \N 189.186.26.176 866ff3e4-afc6-4206-ab0e-d1cda05fb05d 2020-11-14 17:38:24.199745 45891 1172 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.912E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 912.0 189.186.26.176 ff1661ae-d7ec-444b-ba05-045d54f2390c 2020-11-14 17:43:20.579197 45892 1535 Product \N \N 2 User \N create ---\nsku: BLU-1535\nname: BLS-0166\ndescription: BLUSA APEACH DORADA 2029\nprice_base: !ruby/object:BigDecimal 18:0.363E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1535 fue creado. 189.186.26.176 07148a28-2021-4e9b-a245-840fce1af643 2020-11-14 18:05:46.572424 45893 1535 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001535'\n 2 \N 189.186.26.176 07148a28-2021-4e9b-a245-840fce1af643 2020-11-14 18:05:46.622809 45894 2605 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1535\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 07148a28-2021-4e9b-a245-840fce1af643 2020-11-14 18:05:46.667849 45895 1536 Product \N \N 2 User \N create ---\nsku: BLU-1536\nname: BLS-0167\ndescription: BLUSA NEGRA MANGA LARGA APEACH 3578\nprice_base: !ruby/object:BigDecimal 18:0.275E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 7\nproduct_service_key: '01010101'\n 1 El producto BLU-1536 fue creado. 189.186.26.176 7bc309c5-ae82-43dd-b382-729e877504aa 2020-11-14 18:07:14.575249 45896 1536 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001536'\n 2 \N 189.186.26.176 7bc309c5-ae82-43dd-b382-729e877504aa 2020-11-14 18:07:14.601626 45897 2606 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1536\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 7bc309c5-ae82-43dd-b382-729e877504aa 2020-11-14 18:07:14.626507 45898 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-13 23:03:19.211669000 Z\n- &1 2020-11-14 01:23:10.156133000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-14 18:08:20.804309864 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934446\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\nsign_in_count:\n- 377\n- 378\n 756 \N 189.186.26.176 8a2a7b83-ce1f-4605-9749-6a483bf5c39f 2020-11-14 18:08:20.813956 45899 1 User \N \N 1 User \N update ---\nunique_session_id:\n- fgyKHD16ynW7DgWJLZ9n\n- iMoGk9r8sztYoWqY9z-v\n 757 \N 189.186.26.176 8a2a7b83-ce1f-4605-9749-6a483bf5c39f 2020-11-14 18:08:20.833515 45900 1537 Product \N \N 2 User \N create ---\nsku: VES-1537\nname: VST-0133\ndescription: VESTIDO NEGRO TIPO SACO APEACH\nprice_base: !ruby/object:BigDecimal 18:0.517E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1537 fue creado. 189.186.26.176 8c61def7-be24-4ebd-8385-897a857c06e5 2020-11-14 18:38:59.506802 45901 1537 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001537'\n 2 \N 189.186.26.176 8c61def7-be24-4ebd-8385-897a857c06e5 2020-11-14 18:38:59.550348 45902 2607 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1537\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 8c61def7-be24-4ebd-8385-897a857c06e5 2020-11-14 18:38:59.589039 45903 1538 Product \N \N 2 User \N create ---\nsku: VES-1538\nname: VST-0134\ndescription: VESTIDOS METALICOS CON HOMBRERAS\nprice_base: !ruby/object:BigDecimal 18:0.275E3\nprice_sale: !ruby/object:BigDecimal 18:0.699E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1538 fue creado. 189.186.26.176 2ee1504b-9025-4770-8210-742234ac9311 2020-11-14 18:40:55.503902 45905 2608 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1538\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 2ee1504b-9025-4770-8210-742234ac9311 2020-11-14 18:40:55.567587 45906 1539 Product \N \N 2 User \N create ---\nsku: VES-1539\nname: VST-0135\ndescription: VESTIDO ROJO TIPO SACO MUYMUY\nprice_base: !ruby/object:BigDecimal 18:0.418E3\nprice_sale: !ruby/object:BigDecimal 18:0.1045E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 12\nproduct_service_key: '01010101'\n 1 El producto VES-1539 fue creado. 189.186.26.176 a7d63996-6af4-4f21-aa9c-9089448d5dd5 2020-11-14 18:42:18.542094 45907 1539 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001539'\n 2 \N 189.186.26.176 a7d63996-6af4-4f21-aa9c-9089448d5dd5 2020-11-14 18:42:18.573723 45908 2609 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1539\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 a7d63996-6af4-4f21-aa9c-9089448d5dd5 2020-11-14 18:42:18.602725 45909 1540 Product \N \N 2 User \N create ---\nsku: CON-1540\nname: CON-0006\ndescription: 'PANS NEGRO PEGADO '\nprice_base: !ruby/object:BigDecimal 18:0.4785E3\nprice_sale: !ruby/object:BigDecimal 18:0.1196E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 10\nproduct_service_key: '01010101'\n 1 El producto CON-1540 fue creado. 189.186.26.176 f048493a-c294-42d7-94de-b47c2f864d7c 2020-11-14 18:46:59.152824 45910 1540 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001540'\n 2 \N 189.186.26.176 f048493a-c294-42d7-94de-b47c2f864d7c 2020-11-14 18:46:59.181598 45911 2610 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1540\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 f048493a-c294-42d7-94de-b47c2f864d7c 2020-11-14 18:46:59.211543 45912 1541 Product \N \N 2 User \N create ---\nsku: CON-1541\nname: CON-0007\ndescription: PANS DE COLORES PEGADO\nprice_base: !ruby/object:BigDecimal 18:0.5005E3\nprice_sale: !ruby/object:BigDecimal 18:0.1251E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 10\nproduct_service_key: '01010101'\n 1 El producto CON-1541 fue creado. 189.186.26.176 7c765f7e-adcf-4d38-8967-7ff477b97a51 2020-11-14 18:48:10.784941 45913 1541 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001541'\n 2 \N 189.186.26.176 7c765f7e-adcf-4d38-8967-7ff477b97a51 2020-11-14 18:48:10.812371 45914 2611 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1541\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 7c765f7e-adcf-4d38-8967-7ff477b97a51 2020-11-14 18:48:10.838053 45915 1542 Product \N \N 2 User \N create ---\nsku: PAN-1542\nname: PNT-0038\ndescription: PANTALON G NEGRO VALENTINE\nprice_base: !ruby/object:BigDecimal 18:0.341E3\nprice_sale: !ruby/object:BigDecimal 18:0.849E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 8\nproduct_service_key: '01010101'\n 1 El producto PAN-1542 fue creado. 189.186.26.176 b5c85c25-7f1c-4451-a10f-9a8e55b6dcfd 2020-11-14 18:51:20.253633 45916 1542 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001542'\n 2 \N 189.186.26.176 b5c85c25-7f1c-4451-a10f-9a8e55b6dcfd 2020-11-14 18:51:20.296242 45917 2612 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1542\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 b5c85c25-7f1c-4451-a10f-9a8e55b6dcfd 2020-11-14 18:51:20.334079 45918 1543 Product \N \N 2 User \N create ---\nsku: PAL-1543\nname: PLZ-0020\ndescription: PALAZO DE BLUSA LENTEJUELA VALENTINE\nprice_base: !ruby/object:BigDecimal 18:0.517E3\nprice_sale: !ruby/object:BigDecimal 18:0.1389E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 9\nproduct_service_key: '01010101'\n 1 El producto PAL-1543 fue creado. 189.186.26.176 5735e05a-719d-4d80-9a3f-1b7a6b16ebd1 2020-11-14 18:54:35.855605 45919 1543 Product \N \N 2 User \N update ---\nbarcode:\n- ''\n- '0001543'\n 2 \N 189.186.26.176 5735e05a-719d-4d80-9a3f-1b7a6b16ebd1 2020-11-14 18:54:35.883891 45920 2613 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1543\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 5735e05a-719d-4d80-9a3f-1b7a6b16ebd1 2020-11-14 18:54:35.913029 45921 477 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-203\namount: !ruby/object:BigDecimal 18:0.3685E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3685E4\nobservations: ''\npurchase_date: 2020-11-14\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-203 por $ 3685.0 MXN creada. 189.186.26.176 6f78b5ea-7466-4c59-9729-d2bd1906a4a0 2020-11-14 18:56:47.292769 45922 2605 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.26.176 6f78b5ea-7466-4c59-9729-d2bd1906a4a0 2020-11-14 18:56:47.323437 45923 2606 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.26.176 6f78b5ea-7466-4c59-9729-d2bd1906a4a0 2020-11-14 18:56:47.363059 45924 2607 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.26.176 6f78b5ea-7466-4c59-9729-d2bd1906a4a0 2020-11-14 18:56:47.387576 45925 2608 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.26.176 6f78b5ea-7466-4c59-9729-d2bd1906a4a0 2020-11-14 18:56:47.414467 45926 2609 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.26.176 6f78b5ea-7466-4c59-9729-d2bd1906a4a0 2020-11-14 18:56:47.440676 45929 2612 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.26.176 6f78b5ea-7466-4c59-9729-d2bd1906a4a0 2020-11-14 18:56:47.509436 45930 2613 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.26.176 6f78b5ea-7466-4c59-9729-d2bd1906a4a0 2020-11-14 18:56:47.531288 45931 1543 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1543'\n is_parent: false\n sku: PAL-1543\n name: PLZ-0020\n description: PALAZO DE BLUSA LENTEJUELA VALENTINE\n price_base: '517.0'\n price_sale: '1389.0'\n img_product: CC0BFEC9-CE6D-4AE5-9C75-DFF625368424.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '9'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001543'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-14 18:54:35.842576'\n updated_at: &12 2020-11-14 18:57:42.676310633 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1543'\n sku: PAL-1543\n name: PLZ-0020\n description: PALAZO DE BLUSA LENTEJUELA VALENTINE\n price_base: '517.00'\n price_sale: '1389.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-14 18:54:35.842576'\n updated_at: '2020-11-14 18:54:35.881115'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001543'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '9'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1543'\n type: *3\n value: 1543\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAL-1543\n type: *7\n value: PAL-1543\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PLZ-0020\n type: *8\n value: PLZ-0020\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PALAZO DE BLUSA LENTEJUELA VALENTINE\n type: *6\n value: PALAZO DE BLUSA LENTEJUELA VALENTINE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '517.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.517E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1389.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1389E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: CC0BFEC9-CE6D-4AE5-9C75-DFF625368424.jpeg\n type: *2\n value: CC0BFEC9-CE6D-4AE5-9C75-DFF625368424.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '9'\n type: *3\n value: 9\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001543'\n type: *2\n value: '0001543'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-14 18:54:35.842576'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- CC0BFEC9-CE6D-4AE5-9C75-DFF625368424.jpeg\n 3 El producto PAL-1543 fue modificado. 189.186.26.176 89a9192c-c107-403c-9730-d5d4c8fccb04 2020-11-14 18:57:42.723138 45932 1542 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1542'\n is_parent: false\n sku: PAN-1542\n name: PNT-0038\n description: PANTALON G NEGRO VALENTINE\n price_base: '341.0'\n price_sale: '849.0'\n img_product: 7B5F9443-B633-48F3-9D47-97805A8DB95B.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '8'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001542'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-14 18:51:20.23509'\n updated_at: &12 2020-11-14 18:58:34.981593340 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1542'\n sku: PAN-1542\n name: PNT-0038\n description: PANTALON G NEGRO VALENTINE\n price_base: '341.00'\n price_sale: '849.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-14 18:51:20.23509'\n updated_at: '2020-11-14 18:51:20.292322'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001542'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '8'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1542'\n type: *3\n value: 1542\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: PAN-1542\n type: *7\n value: PAN-1542\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: PNT-0038\n type: *8\n value: PNT-0038\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: PANTALON G NEGRO VALENTINE\n type: *6\n value: PANTALON G NEGRO VALENTINE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '341.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.341E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '849.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.849E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 7B5F9443-B633-48F3-9D47-97805A8DB95B.jpeg\n type: *2\n value: 7B5F9443-B633-48F3-9D47-97805A8DB95B.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '8'\n type: *3\n value: 8\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001542'\n type: *2\n value: '0001542'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-14 18:51:20.23509'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 7B5F9443-B633-48F3-9D47-97805A8DB95B.jpeg\n 3 El producto PAN-1542 fue modificado. 189.186.26.176 624ed9f7-e7dc-4fc5-9d3c-4e4b509ab25c 2020-11-14 18:58:35.041439 45933 1356 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '1356'\n is_parent: false\n sku: BLU-1356\n name: BLS-0144\n description: BLUSA BEIGE CON DESTELLOS DORADOS Y PLATEADOS\n price_base: '286.0'\n price_sale: '699.0'\n img_product: FE16BCDB-003C-4CAC-BAB6-C6A23030F87C.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001356'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-09-28 19:10:47.337767'\n updated_at: &12 2020-11-14 19:14:26.194209185 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1356'\n sku: BLU-1356\n name: BLS-0144\n description: BLUSA BEIGE CON DESTELLOS DORADOS Y PLATEADOS\n price_base: '286.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-09-28 19:10:47.337767'\n updated_at: '2020-11-02 21:29:11.389973'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001356'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: image.jpg\n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1356'\n type: *3\n value: 1356\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1356\n type: *7\n value: BLU-1356\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0144\n type: *8\n value: BLS-0144\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA BEIGE CON DESTELLOS DORADOS Y PLATEADOS\n type: *6\n value: BLUSA BEIGE CON DESTELLOS DORADOS Y PLATEADOS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '286.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.286E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: FE16BCDB-003C-4CAC-BAB6-C6A23030F87C.jpeg\n type: *2\n value: FE16BCDB-003C-4CAC-BAB6-C6A23030F87C.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001356'\n type: *2\n value: '0001356'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-09-28 19:10:47.337767'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/image.jpg"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader65216660\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_image.jpg"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader65211620\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_image.jpg"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader65181380\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_image.jpg"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- FE16BCDB-003C-4CAC-BAB6-C6A23030F87C.jpeg\n 5 El producto BLU-1356 fue modificado. 189.186.26.176 34473adc-53fb-4a4e-b051-892562f19474 2020-11-14 19:14:26.269376 45934 1536 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1536'\n is_parent: false\n sku: BLU-1536\n name: BLS-0167\n description: BLUSA NEGRA MANGA LARGA APEACH 3578\n price_base: '275.0'\n price_sale: '699.0'\n img_product: F3D4AB2C-FC75-4EF2-9C10-FAAF84DA5AB7.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001536'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-14 18:07:14.563987'\n updated_at: &12 2020-11-14 19:15:33.228050319 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1536'\n sku: BLU-1536\n name: BLS-0167\n description: BLUSA NEGRA MANGA LARGA APEACH 3578\n price_base: '275.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-14 18:07:14.563987'\n updated_at: '2020-11-14 18:07:14.599034'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001536'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1536'\n type: *3\n value: 1536\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1536\n type: *7\n value: BLU-1536\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0167\n type: *8\n value: BLS-0167\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA NEGRA MANGA LARGA APEACH 3578\n type: *6\n value: BLUSA NEGRA MANGA LARGA APEACH 3578\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '275.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.275E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: F3D4AB2C-FC75-4EF2-9C10-FAAF84DA5AB7.jpeg\n type: *2\n value: F3D4AB2C-FC75-4EF2-9C10-FAAF84DA5AB7.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001536'\n type: *2\n value: '0001536'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-14 18:07:14.563987'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- F3D4AB2C-FC75-4EF2-9C10-FAAF84DA5AB7.jpeg\n 3 El producto BLU-1536 fue modificado. 189.186.26.176 f96e069f-3e72-4b20-8a91-1d732c20ce42 2020-11-14 19:15:33.287471 45935 1527 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: &14 !ruby/object:Product\n raw_attributes:\n id: '1527'\n is_parent: false\n sku: BLU-1527\n name: BLS-0164\n description: BLUSAS BASICAS ROJAS CUELLO TORTUGA NYLON\n price_base: '180.0'\n price_sale: '469.0'\n img_product: 52F1519C-7623-445B-8A80-F6B7B5ED0D3B.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001527'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-04 00:05:10.164707'\n updated_at: &12 2020-11-14 19:27:23.074998308 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1527'\n sku: BLU-1527\n name: BLS-0164\n description: BLUSAS BASICAS ROJAS CUELLO TORTUGA NYLON\n price_base: '180.00'\n price_sale: '469.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-04 00:05:10.164707'\n updated_at: '2020-11-04 00:08:33.503325'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001527'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: image.jpg\n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1527'\n type: *3\n value: 1527\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1527\n type: *7\n value: BLU-1527\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0164\n type: *8\n value: BLS-0164\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSAS BASICAS ROJAS CUELLO TORTUGA NYLON\n type: *6\n value: BLUSAS BASICAS ROJAS CUELLO TORTUGA NYLON\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '180.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.18E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '469.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.469E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 52F1519C-7623-445B-8A80-F6B7B5ED0D3B.jpeg\n type: *2\n value: 52F1519C-7623-445B-8A80-F6B7B5ED0D3B.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001527'\n type: *2\n value: '0001527'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-04 00:05:10.164707'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n storage: &15 !ruby/object:CarrierWave::Storage::File\n uploader: &16 !ruby/object:ImageUploader\n model: *14\n mounted_as: :img_product\n storage: *15\n file: &20 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/image.jpg"\n original_filename: \n content_type: \n versions: &21\n :thumb: &17 !ruby/object:ImageUploader::Uploader65216660\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_image.jpg"\n original_filename: \n content_type: \n versions: {}\n :medium: &18 !ruby/object:ImageUploader::Uploader65211620\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_image.jpg"\n original_filename: \n content_type: \n versions: {}\n :small: &19 !ruby/object:ImageUploader::Uploader65181380\n model: *14\n mounted_as: :img_product\n parent_version: *16\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *19\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_image.jpg"\n original_filename: \n content_type: \n versions: {}\n file: *20\n versions: *21\n- 52F1519C-7623-445B-8A80-F6B7B5ED0D3B.jpeg\n 4 El producto BLU-1527 fue modificado. 189.186.26.176 b239b397-2e9c-4f85-bdad-373c150537e2 2020-11-14 19:27:23.123605 45936 1534 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1534'\n is_parent: false\n sku: BLU-1534\n name: BLS-0165\n description: BLUSA APECH PLATA 3499\n price_base: '341.0'\n price_sale: '849.0'\n img_product: BF7F15C7-47F7-403C-981A-5B909C99E3E3.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001534'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-14 01:52:30.372676'\n updated_at: &12 2020-11-14 19:29:07.865947948 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1534'\n sku: BLU-1534\n name: BLS-0165\n description: BLUSA APECH PLATA 3499\n price_base: '341.00'\n price_sale: '849.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-14 01:52:30.372676'\n updated_at: '2020-11-14 01:52:30.43551'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001534'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1534'\n type: *3\n value: 1534\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1534\n type: *7\n value: BLU-1534\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0165\n type: *8\n value: BLS-0165\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA APECH PLATA 3499\n type: *6\n value: BLUSA APECH PLATA 3499\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '341.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.341E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '849.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.849E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BF7F15C7-47F7-403C-981A-5B909C99E3E3.jpeg\n type: *2\n value: BF7F15C7-47F7-403C-981A-5B909C99E3E3.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001534'\n type: *2\n value: '0001534'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-14 01:52:30.372676'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BF7F15C7-47F7-403C-981A-5B909C99E3E3.jpeg\n 3 El producto BLU-1534 fue modificado. 189.186.26.176 37e155c8-1f07-4167-bdaa-cacc1fe3300f 2020-11-14 19:29:07.909609 45937 1535 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1535'\n is_parent: false\n sku: BLU-1535\n name: BLS-0166\n description: BLUSA APEACH DORADA 2029\n price_base: '363.0'\n price_sale: '899.0'\n img_product: DAF06D69-72FB-4AD2-8E5C-ABABFBCF8F3D.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '7'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001535'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-14 18:05:46.558964'\n updated_at: &12 2020-11-14 19:29:34.702253156 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1535'\n sku: BLU-1535\n name: BLS-0166\n description: BLUSA APEACH DORADA 2029\n price_base: '363.00'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-14 18:05:46.558964'\n updated_at: '2020-11-14 18:05:46.619565'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001535'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '7'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1535'\n type: *3\n value: 1535\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BLU-1535\n type: *7\n value: BLU-1535\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: BLS-0166\n type: *8\n value: BLS-0166\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BLUSA APEACH DORADA 2029\n type: *6\n value: BLUSA APEACH DORADA 2029\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '363.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.363E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: DAF06D69-72FB-4AD2-8E5C-ABABFBCF8F3D.jpeg\n type: *2\n value: DAF06D69-72FB-4AD2-8E5C-ABABFBCF8F3D.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '7'\n type: *3\n value: 7\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001535'\n type: *2\n value: '0001535'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-14 18:05:46.558964'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- DAF06D69-72FB-4AD2-8E5C-ABABFBCF8F3D.jpeg\n 3 El producto BLU-1535 fue modificado. 189.186.26.176 7cd834ab-58fa-4540-a453-77622757fbf3 2020-11-14 19:29:34.743956 45938 1537 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1537'\n is_parent: false\n sku: VES-1537\n name: VST-0133\n description: VESTIDO NEGRO TIPO SACO APEACH\n price_base: '517.0'\n price_sale: '1399.0'\n img_product: 527927D2-D81C-42D9-9DD6-E0E7573683EC.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001537'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-14 18:38:59.486904'\n updated_at: &12 2020-11-14 19:37:46.449456617 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1537'\n sku: VES-1537\n name: VST-0133\n description: VESTIDO NEGRO TIPO SACO APEACH\n price_base: '517.00'\n price_sale: '1399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-14 18:38:59.486904'\n updated_at: '2020-11-14 18:38:59.546567'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001537'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1537'\n type: *3\n value: 1537\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1537\n type: *7\n value: VES-1537\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0133\n type: *8\n value: VST-0133\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO NEGRO TIPO SACO APEACH\n type: *6\n value: VESTIDO NEGRO TIPO SACO APEACH\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '517.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.517E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1399E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 527927D2-D81C-42D9-9DD6-E0E7573683EC.jpeg\n type: *2\n value: 527927D2-D81C-42D9-9DD6-E0E7573683EC.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001537'\n type: *2\n value: '0001537'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-14 18:38:59.486904'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 527927D2-D81C-42D9-9DD6-E0E7573683EC.jpeg\n 3 El producto VES-1537 fue modificado. 189.186.26.176 4ae7155c-a5a9-4a69-8a41-ab9beb04e1b8 2020-11-14 19:37:46.499782 45939 1538 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1538'\n is_parent: false\n sku: VES-1538\n name: VST-0134\n description: VESTIDOS METALICOS CON HOMBRERAS\n price_base: '275.0'\n price_sale: '699.0'\n img_product: 9FEEFB13-BC38-48BF-AAB7-9E4ECE2D0AD4.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001538'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-14 18:40:55.488778'\n updated_at: &12 2020-11-14 19:38:18.105453915 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1538'\n sku: VES-1538\n name: VST-0134\n description: VESTIDOS METALICOS CON HOMBRERAS\n price_base: '275.00'\n price_sale: '699.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-14 18:40:55.488778'\n updated_at: '2020-11-14 18:40:55.53447'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001538'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1538'\n type: *3\n value: 1538\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1538\n type: *7\n value: VES-1538\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0134\n type: *8\n value: VST-0134\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDOS METALICOS CON HOMBRERAS\n type: *6\n value: VESTIDOS METALICOS CON HOMBRERAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '275.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.275E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '699.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.699E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 9FEEFB13-BC38-48BF-AAB7-9E4ECE2D0AD4.jpeg\n type: *2\n value: 9FEEFB13-BC38-48BF-AAB7-9E4ECE2D0AD4.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001538'\n type: *2\n value: '0001538'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-14 18:40:55.488778'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 9FEEFB13-BC38-48BF-AAB7-9E4ECE2D0AD4.jpeg\n 3 El producto VES-1538 fue modificado. 189.186.26.176 47f41f3e-027b-4b9e-86fb-4b746971568b 2020-11-14 19:38:18.171962 45940 1539 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1539'\n is_parent: false\n sku: VES-1539\n name: VST-0135\n description: VESTIDO ROJO TIPO SACO MUYMUY\n price_base: '418.0'\n price_sale: '1045.0'\n img_product: A7893392-6AFA-4D40-AC40-F65CF8A95D27.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '12'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001539'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-14 18:42:18.529952'\n updated_at: &12 2020-11-14 19:40:44.555972963 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1539'\n sku: VES-1539\n name: VST-0135\n description: VESTIDO ROJO TIPO SACO MUYMUY\n price_base: '418.00'\n price_sale: '1045.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-14 18:42:18.529952'\n updated_at: '2020-11-14 18:42:18.570654'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001539'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '12'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1539'\n type: *3\n value: 1539\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: VES-1539\n type: *7\n value: VES-1539\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: VST-0135\n type: *8\n value: VST-0135\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: VESTIDO ROJO TIPO SACO MUYMUY\n type: *6\n value: VESTIDO ROJO TIPO SACO MUYMUY\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '418.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.418E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1045.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1045E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: A7893392-6AFA-4D40-AC40-F65CF8A95D27.jpeg\n type: *2\n value: A7893392-6AFA-4D40-AC40-F65CF8A95D27.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '12'\n type: *3\n value: 12\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001539'\n type: *2\n value: '0001539'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-14 18:42:18.529952'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- A7893392-6AFA-4D40-AC40-F65CF8A95D27.jpeg\n 3 El producto VES-1539 fue modificado. 189.186.26.176 683400b1-f306-43bb-91c7-df725c6eb2ea 2020-11-14 19:40:44.602983 45941 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-14 01:09:33.055742000 Z\n- &1 2020-11-14 01:43:52.382072000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-14 19:41:39.187662332 Z\nsign_in_count:\n- 351\n- 352\n 705 \N 189.186.91.88 f058e082-907e-49bc-b207-60d866b73dfd 2020-11-14 19:41:39.194839 45942 18 User \N \N 18 User \N update ---\nunique_session_id:\n- CZEzTopv2H4tyRE4zHUk\n- cxjbg89mo4jmyryLAeAu\n 706 \N 189.186.91.88 f058e082-907e-49bc-b207-60d866b73dfd 2020-11-14 19:41:39.209053 45943 1173 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1727E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1727.0 189.186.91.88 7a68246d-602e-4bff-81f4-9a316f6345e9 2020-11-14 19:41:51.487411 45944 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-14 01:43:52.382072000 Z\n- &1 2020-11-14 19:41:39.187662000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-14 19:43:07.895260539 Z\nsign_in_count:\n- 352\n- 353\n 707 \N 189.186.91.88 8042cace-cacc-4c09-a07f-02f80ce88e23 2020-11-14 19:43:07.901466 45945 18 User \N \N 18 User \N update ---\nunique_session_id:\n- cxjbg89mo4jmyryLAeAu\n- zrwugSGn5igVe6ZBasyb\n 708 \N 189.186.91.88 8042cace-cacc-4c09-a07f-02f80ce88e23 2020-11-14 19:43:07.916058 45946 3420 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1173\namount: !ruby/object:BigDecimal 18:0.497E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.497E3\nstatus: 0\ndate_sale: 2020-11-14\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-871\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 0db6e0cb-016e-4c1b-9481-d7f2e84f370b 2020-11-14 19:43:41.086901 45947 2088 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.91.88 0db6e0cb-016e-4c1b-9481-d7f2e84f370b 2020-11-14 19:43:41.116989 45948 2404 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.91.88 0db6e0cb-016e-4c1b-9481-d7f2e84f370b 2020-11-14 19:43:41.143646 45949 3420 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 d907be13-353e-4a29-9b3e-7ea4a8937655 2020-11-14 19:44:24.519323 45950 4530 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1173\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.497E3\nmove_type: '1'\nsale_id: 3420\ncardnumber: 1215\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-871\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-871 189.186.91.88 d907be13-353e-4a29-9b3e-7ea4a8937655 2020-11-14 19:44:24.544112 45951 478 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-136\namount: !ruby/object:BigDecimal 18:0.286825E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.286825E5\nobservations: ''\npurchase_date: 2020-11-14\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-136 por $ 28682.5 MXN creada. 189.186.91.88 100f1f18-92b6-485e-9712-d81da9182259 2020-11-14 19:50:50.919817 45952 2506 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.18E2\n 8 \N 189.186.91.88 100f1f18-92b6-485e-9712-d81da9182259 2020-11-14 19:50:50.944761 45953 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.26E2\n 28 \N 189.186.91.88 100f1f18-92b6-485e-9712-d81da9182259 2020-11-14 19:50:50.970343 45954 2341 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.8E1\n 12 \N 189.186.91.88 100f1f18-92b6-485e-9712-d81da9182259 2020-11-14 19:50:51.005627 45955 479 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-204\namount: !ruby/object:BigDecimal 18:0.1375E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1375E4\nobservations: ''\npurchase_date: 2020-11-14\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-204 por $ 1375.0 MXN creada. 189.186.26.176 3433e90f-595b-4c05-9cfc-ea498a9295e1 2020-11-14 20:18:38.061766 45956 2608 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.26.176 3433e90f-595b-4c05-9cfc-ea498a9295e1 2020-11-14 20:18:38.092536 45957 3421 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1172\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.99E2\ntotal: !ruby/object:BigDecimal 18:0.1E4\nstatus: 0\ndate_sale: 2020-11-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1630\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 b79dd0da-f052-4331-a4ed-bdfbe0ccfd36 2020-11-14 21:13:51.362745 45958 697 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 18 \N 189.186.26.176 b79dd0da-f052-4331-a4ed-bdfbe0ccfd36 2020-11-14 21:13:51.398814 45960 4531 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1172\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 3421\ncardnumber: 4150\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1630\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1630 189.186.26.176 17e53593-0218-4ffb-b4c3-df2afbb460ee 2020-11-14 21:14:33.745833 45961 3422 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1173\namount: !ruby/object:BigDecimal 18:0.109E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.109E3\nstatus: 0\ndate_sale: 2020-11-14\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-872\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 2b98560b-86dc-4b69-8080-1038bc0420aa 2020-11-14 21:14:48.740936 45962 2408 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.91.88 2b98560b-86dc-4b69-8080-1038bc0420aa 2020-11-14 21:14:48.780968 45963 3422 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 23a449d1-bdb7-4e47-90f0-c8eb8e5e2aad 2020-11-14 21:14:52.906812 45964 4532 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1173\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.109E3\nmove_type: '1'\nsale_id: 3422\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-872\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.109E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-872 189.186.91.88 23a449d1-bdb7-4e47-90f0-c8eb8e5e2aad 2020-11-14 21:14:52.929684 45965 435 Customer \N \N 2 User \N create ---\nnick_name: 'LAURA ELENA QUINTERO '\nphone: "(667) 372-6779"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LAURA ELENA QUINTERO fue registrado. 189.186.26.176 f1edcb22-c5d8-4c06-8091-54a3a131e403 2020-11-14 21:54:43.688948 45966 3423 Sale \N \N 2 User \N create ---\ncustomer_id: 435\nuser_id: 2\nopen_cash_register_id: 1172\namount: !ruby/object:BigDecimal 18:0.1249E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1249E4\nstatus: 0\ndate_sale: 2020-11-14\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1631\nexpiration_date: 2020-12-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 fc3a323d-d555-4229-82ce-e12fcb2ddb36 2020-11-14 21:55:34.252186 45967 2542 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.26.176 fc3a323d-d555-4229-82ce-e12fcb2ddb36 2020-11-14 21:55:34.279599 45968 4533 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1172\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.625E3\nmove_type: '1'\nsale_id: 3423\ncardnumber: 5296\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1631\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1631 189.186.26.176 73f75596-ea5a-4ff8-a391-3774c42eea8a 2020-11-14 21:56:45.688694 45969 3423 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.26.176 6f9e2897-03df-4f6d-b763-f2439f18fd38 2020-11-14 21:56:48.604369 45970 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-14 01:24:48.655161000 Z\n- &1 2020-11-14 06:44:19.271201000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-14 22:15:55.539398467 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535344\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535344\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2057\n- 2058\n 4116 \N 189.186.91.88 e11cdb8c-c8ab-402c-9390-a2c6dfa5cc72 2020-11-14 22:15:55.573448 45971 4 User \N \N 4 User \N update ---\nunique_session_id:\n- j25d6QPqs6XBAxWyn91f\n- hCZU3RzpQTviXwxyaAHC\n 4117 \N 189.186.91.88 e11cdb8c-c8ab-402c-9390-a2c6dfa5cc72 2020-11-14 22:15:55.612723 45972 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-14 19:41:39.187662000 Z\n- &1 2020-11-14 19:43:07.895260000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-14 22:49:04.650968130 Z\nsign_in_count:\n- 353\n- 354\n 709 \N 189.186.91.88 0a58d224-6574-4666-8026-a6c5b7beb326 2020-11-14 22:49:04.657327 45973 18 User \N \N 18 User \N update ---\nunique_session_id:\n- zrwugSGn5igVe6ZBasyb\n- y_cDGx2hGzVQevDdP5jZ\n 710 \N 189.186.91.88 0a58d224-6574-4666-8026-a6c5b7beb326 2020-11-14 22:49:04.674629 45974 436 Customer \N \N 18 User \N create ---\nnick_name: COLUMBA\nphone: "(667) 474-5555"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente COLUMBA fue registrado. 189.186.91.88 4b86a91a-382b-4f0f-8612-9e9616763fe3 2020-11-14 22:49:26.513878 45975 3424 Sale \N \N 18 User \N create ---\ncustomer_id: 436\nuser_id: 18\nopen_cash_register_id: 1173\namount: !ruby/object:BigDecimal 18:0.1999E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1999E4\nstatus: 0\ndate_sale: 2020-11-14\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-873\nexpiration_date: 2020-12-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 3f40bbea-10ac-4005-993f-4e3a04c0177b 2020-11-14 22:50:10.00383 45976 1978 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.91.88 3f40bbea-10ac-4005-993f-4e3a04c0177b 2020-11-14 22:50:10.053826 45977 4534 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1173\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3424\ncardnumber: 1252\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-873\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-873 189.186.91.88 b97d0ef4-c27a-4219-b45e-4b1c85178a0a 2020-11-14 22:50:24.648028 45978 3424 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 14a9e646-d8f6-410d-9f64-6eef335a983d 2020-11-14 22:50:26.163665 45979 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-14 19:43:07.895260000 Z\n- &1 2020-11-14 22:49:04.650968000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-14 22:51:21.388635008 Z\nsign_in_count:\n- 354\n- 355\n 711 \N 189.186.91.88 00e06991-1e4b-4a82-83be-b924e977ddc7 2020-11-14 22:51:21.394611 45980 18 User \N \N 18 User \N update ---\nunique_session_id:\n- y_cDGx2hGzVQevDdP5jZ\n- PmW7PWKr4nLgiczG7QAV\n 712 \N 189.186.91.88 00e06991-1e4b-4a82-83be-b924e977ddc7 2020-11-14 22:51:21.410797 46208 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 3yyxvPsbPgw9D5FzecR2\n- jFya6N_DKvgiJzDxeCLx\n 724 \N 189.186.91.88 47f971d9-371b-4512-96ba-f92799c51f65 2020-11-18 01:35:41.206533 46456 21 User \N \N 21 User \N update ---\nunique_session_id:\n- r23NGYaZkWXeC3HT-apf\n- brxWbGVA2jT-1QfEsHUa\n 692 \N 189.186.91.88 7495c1c6-a57a-469b-b258-b6dc2becf08b 2020-11-21 17:03:02.324926 45981 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-14 06:44:19.271201000 Z\n- &1 2020-11-14 22:15:55.539398000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-14 22:52:07.448941748 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535344\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2058\n- 2059\n 4118 \N 189.186.91.88 f694f554-ef18-463f-8291-15ff1a4d20ac 2020-11-14 22:52:07.456229 45982 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hCZU3RzpQTviXwxyaAHC\n- sWx3MJJSqtxiArGEHajN\n 4119 \N 189.186.91.88 f694f554-ef18-463f-8291-15ff1a4d20ac 2020-11-14 22:52:07.474945 45983 732 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-11-14\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.91.88 4fcb8d1f-20f1-4d60-a2a5-18d807864d76 2020-11-14 22:56:15.686678 45984 733 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-11-14\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.91.88 e101a51f-18fa-481e-a8b0-68b4f01993ef 2020-11-14 22:56:39.67632 45985 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-14 22:49:04.650968000 Z\n- &1 2020-11-14 22:51:21.388635000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-14 23:39:45.491817256 Z\nsign_in_count:\n- 355\n- 356\n 713 \N 189.186.91.88 2f85ae43-7607-4c89-95be-30bd4565e670 2020-11-14 23:39:45.498951 45986 18 User \N \N 18 User \N update ---\nunique_session_id:\n- PmW7PWKr4nLgiczG7QAV\n- kQay6k4xxtvT7DwW7tYX\n 714 \N 189.186.91.88 2f85ae43-7607-4c89-95be-30bd4565e670 2020-11-14 23:39:45.514272 45987 733 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-14\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.91.88 84b098d4-6d74-4f43-a1b0-637e25058cbd 2020-11-14 23:40:09.195187 45988 2614 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 901\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 84b098d4-6d74-4f43-a1b0-637e25058cbd 2020-11-14 23:40:09.218571 45989 3425 Sale \N \N 2 User \N create ---\ncustomer_id: 41\nuser_id: 2\nopen_cash_register_id: 1172\namount: !ruby/object:BigDecimal 18:0.1648E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1648E4\nstatus: 0\ndate_sale: 2020-11-14\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1632\nexpiration_date: 2020-12-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 a967c655-bd74-4f91-bb73-f164c2780c24 2020-11-14 23:45:02.924411 45990 2554 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.26.176 a967c655-bd74-4f91-bb73-f164c2780c24 2020-11-14 23:45:02.950537 45991 2532 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.26.176 a967c655-bd74-4f91-bb73-f164c2780c24 2020-11-14 23:45:02.976436 45992 4535 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3425\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1632\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1632 189.186.26.176 9fc2b192-82bc-4c23-a8e8-d85c980d9083 2020-11-14 23:45:12.467083 45993 3425 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.26.176 d0d3bbae-4ba8-4711-b6e3-a9cdd0092a1e 2020-11-14 23:46:09.972267 45994 3426 Sale \N \N 2 User \N create ---\ncustomer_id: 159\nuser_id: 2\nopen_cash_register_id: 1172\namount: !ruby/object:BigDecimal 18:0.989E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.989E3\nstatus: 0\ndate_sale: 2020-11-14\nsaletype: 2\nseller_id: 30\nsale_code: PV1-V-1633\nexpiration_date: 2020-12-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 58a30df7-85af-4530-961e-b0a7efa3785b 2020-11-15 00:02:53.846484 45995 2508 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.26.176 58a30df7-85af-4530-961e-b0a7efa3785b 2020-11-15 00:02:53.880263 45996 4536 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 3426\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1633\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1633 189.186.26.176 86005bb7-1a42-4ef1-9eb3-3334b9145bab 2020-11-15 00:02:59.055564 45997 3426 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.26.176 6a5ca468-16da-4185-b367-368f3b61d183 2020-11-15 00:03:00.375226 45998 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-14 01:23:10.156133000 Z\n- &1 2020-11-14 18:08:20.804309000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-15 00:18:03.904035437 Z\nsign_in_count:\n- 378\n- 379\n 758 \N 189.186.26.176 7b236326-f211-4f6a-a665-201463990384 2020-11-15 00:18:03.927759 45999 1 User \N \N 1 User \N update ---\nunique_session_id:\n- iMoGk9r8sztYoWqY9z-v\n- e3h4bNeuYNbCRz5w3BDT\n 759 \N 189.186.26.176 7b236326-f211-4f6a-a665-201463990384 2020-11-15 00:18:03.949787 46000 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-14 22:15:55.539398000 Z\n- &1 2020-11-14 22:52:07.448941000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-15 00:23:43.776451902 Z\nsign_in_count:\n- 2059\n- 2060\n 4120 \N 189.186.91.88 2ff33913-285e-4676-b841-fddd1b8bb49e 2020-11-15 00:23:43.782709 46001 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sWx3MJJSqtxiArGEHajN\n- L4nzPegSDdds5FRXF_yo\n 4121 \N 189.186.91.88 2ff33913-285e-4676-b841-fddd1b8bb49e 2020-11-15 00:23:43.802844 46002 3427 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1172\namount: !ruby/object:BigDecimal 18:0.1877E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1877E4\nstatus: 0\ndate_sale: 2020-11-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1634\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 3f9ea250-f102-447b-a9c9-41f477db4486 2020-11-15 00:25:37.075936 46003 2538 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.26.176 3f9ea250-f102-447b-a9c9-41f477db4486 2020-11-15 00:25:37.107538 46004 2537 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.26.176 3f9ea250-f102-447b-a9c9-41f477db4486 2020-11-15 00:25:37.14494 46005 2608 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.26.176 3f9ea250-f102-447b-a9c9-41f477db4486 2020-11-15 00:25:37.175331 46007 4537 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1172\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1877E4\nmove_type: '1'\nsale_id: 3427\ncardnumber: 4534\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1634\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1634 189.186.26.176 9b962b50-2f1b-4c4a-9417-0d8e4e5ea67a 2020-11-15 00:26:05.699666 46008 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-14 22:51:21.388635000 Z\n- &1 2020-11-14 23:39:45.491817000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-15 00:32:10.439652810 Z\nsign_in_count:\n- 356\n- 357\n 715 \N 189.186.91.88 f14760f9-3a1b-4798-b7c7-22fada57265c 2020-11-15 00:32:10.467676 46009 18 User \N \N 18 User \N update ---\nunique_session_id:\n- kQay6k4xxtvT7DwW7tYX\n- Ms-8a3_rS5j6zFzhybLC\n 716 \N 189.186.91.88 f14760f9-3a1b-4798-b7c7-22fada57265c 2020-11-15 00:32:10.489526 46010 3428 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1173\namount: !ruby/object:BigDecimal 18:0.43017E3\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-11-14\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-874\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 f14382c2-7e74-4d26-8e58-034b153ad8c4 2020-11-15 00:33:07.325968 46011 1917 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.91.88 f14382c2-7e74-4d26-8e58-034b153ad8c4 2020-11-15 00:33:07.367293 46012 3428 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 687e9200-5247-42a1-a994-4980fc3d697c 2020-11-15 00:33:11.571169 46013 4538 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1173\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 3428\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-874\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-874 189.186.91.88 687e9200-5247-42a1-a994-4980fc3d697c 2020-11-15 00:33:11.594727 46014 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-14 22:52:07.448941000 Z\n- &1 2020-11-15 00:23:43.776451000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-15 00:35:51.824253365 Z\nsign_in_count:\n- 2060\n- 2061\n 4122 \N 189.186.91.88 e70670fc-db25-4282-aa18-a0685d3ce03a 2020-11-15 00:35:51.831654 46015 4 User \N \N 4 User \N update ---\nunique_session_id:\n- L4nzPegSDdds5FRXF_yo\n- Mjz_7xLTSE5sCHpG28zs\n 4123 \N 189.186.91.88 e70670fc-db25-4282-aa18-a0685d3ce03a 2020-11-15 00:35:51.855002 46016 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-14 23:39:45.491817000 Z\n- &1 2020-11-15 00:32:10.439652000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-15 00:41:12.770974542 Z\nsign_in_count:\n- 357\n- 358\n 717 \N 189.186.91.88 8c21c0af-749c-44e0-bd9e-a1bab59013d4 2020-11-15 00:41:12.776568 46017 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Ms-8a3_rS5j6zFzhybLC\n- 1DE24Js_Js4XqVNiRUUi\n 718 \N 189.186.91.88 8c21c0af-749c-44e0-bd9e-a1bab59013d4 2020-11-15 00:41:12.791084 46018 354 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1172\nquantity: !ruby/object:BigDecimal 18:0.3E3\nstatus: 1\nobservations: 10 HORAS EXTRAS ROCIO\nexpense_date: 2020-11-14\nexpense_code: PV1-E-247\n 1 Egreso por 300.0 registrado 189.186.26.176 300f180e-e3af-4322-b4a0-cf697f6583f4 2020-11-15 01:24:17.007205 46019 4539 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 354\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.26.176 300f180e-e3af-4322-b4a0-cf697f6583f4 2020-11-15 01:24:17.047258 46020 3429 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1172\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-11-14\nsaletype: 1\nseller_id: 28\nsale_code: PV1-V-1635\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 bbf44e8b-b311-47c2-8836-eea7b1888665 2020-11-15 01:48:32.714963 46021 2024 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.26.176 bbf44e8b-b311-47c2-8836-eea7b1888665 2020-11-15 01:48:32.777948 46022 3430 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1173\namount: !ruby/object:BigDecimal 18:0.3198E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3198E4\nstatus: 0\ndate_sale: 2020-11-14\nsaletype: 1\nseller_id: 23\nsale_code: PV3-V-875\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 66c30084-da9d-4e9e-a4fd-a09b3e6992aa 2020-11-15 01:50:54.232488 46023 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.26E2\n- !ruby/object:BigDecimal 18:0.25E2\n 29 \N 189.186.91.88 66c30084-da9d-4e9e-a4fd-a09b3e6992aa 2020-11-15 01:50:54.271918 46024 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 18 \N 189.186.91.88 66c30084-da9d-4e9e-a4fd-a09b3e6992aa 2020-11-15 01:50:54.301653 46025 3430 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 cacc5155-fa75-4ce1-8024-f80489d45486 2020-11-15 01:51:05.292746 46026 4540 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1173\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.3198E4\nmove_type: '1'\nsale_id: 3430\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-875\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1252'\n 1 movimiento de efectivo por venta con folio PV3-V-875 189.186.91.88 cacc5155-fa75-4ce1-8024-f80489d45486 2020-11-15 01:51:05.326358 46027 3429 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 7076bbce-5728-4aee-bcb4-731e90b5a3bc 2020-11-15 01:51:06.117246 46028 4541 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1172\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 3429\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1635\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1635 189.186.26.176 7076bbce-5728-4aee-bcb4-731e90b5a3bc 2020-11-15 01:51:06.145668 46294 1179 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 fe39eb47-93d6-4390-8ae6-505d060a0938 2020-11-19 02:13:12.365578 46483 1164 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1164'\n is_parent: false\n sku: CAR-1164\n name: 3BICV20422\n description: CARTERA CLOE BRONCE Y NEGRA\n price_base: '449.5'\n price_sale: '899.0'\n img_product: B9EB8825-0948-42E9-81D4-FB239B6E7786.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170823820'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-07-29 20:07:35.602508'\n updated_at: &12 2020-11-21 19:31:43.765477443 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1164'\n sku: CAR-1164\n name: 3BICV20422\n description: CARTERA CLOE BRONCE Y NEGRA\n price_base: '449.50'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-07-29 20:07:35.602508'\n updated_at: '2020-07-29 20:07:35.602508'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170823820'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1164'\n type: *3\n value: 1164\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-1164\n type: *7\n value: CAR-1164\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 3BICV20422\n type: *8\n value: 3BICV20422\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA CLOE BRONCE Y NEGRA\n type: *6\n value: CARTERA CLOE BRONCE Y NEGRA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '449.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: B9EB8825-0948-42E9-81D4-FB239B6E7786.jpeg\n type: *2\n value: B9EB8825-0948-42E9-81D4-FB239B6E7786.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170823820'\n type: *2\n value: '7509170823820'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-07-29 20:07:35.602508'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- B9EB8825-0948-42E9-81D4-FB239B6E7786.jpeg\n 2 El producto CAR-1164 fue modificado. 189.186.1.223 302491b7-25a4-40f2-8d17-b4a9a6385398 2020-11-21 19:31:43.809734 46029 1197 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1172\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5001E4\namount_out: !ruby/object:BigDecimal 18:0.3E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.129E4\ncash_fund: !ruby/object:BigDecimal 18:0.821E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2111E4\nobservations: 'RETIRE $1000, ME PAGUE $290 DE UNOS ARETES QUE VENDI CON TERMINAL '\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.26.176 ef4fee34-712f-4454-b292-58e77f99e49a 2020-11-15 01:57:40.291621 46030 1172 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.26.176 ef4fee34-712f-4454-b292-58e77f99e49a 2020-11-15 01:57:40.306046 46031 3431 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1173\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-11-14\nsaletype: 1\nseller_id: 29\nsale_code: PV3-V-876\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 1dd6eaa2-8f9c-4bd9-b57d-04de34857949 2020-11-15 02:12:25.827372 46032 2506 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.18E2\n- !ruby/object:BigDecimal 18:0.17E2\n 9 \N 189.186.91.88 1dd6eaa2-8f9c-4bd9-b57d-04de34857949 2020-11-15 02:12:25.87018 46033 3431 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 8a7bc97e-6aed-4ea8-8f8b-a237890c69a1 2020-11-15 02:13:01.285428 46034 4542 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1173\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 3431\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-876\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-876 189.186.91.88 8a7bc97e-6aed-4ea8-8f8b-a237890c69a1 2020-11-15 02:13:01.308662 46035 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-15 00:23:43.776451000 Z\n- &1 2020-11-15 00:35:51.824253000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-15 02:15:22.372069030 Z\nsign_in_count:\n- 2061\n- 2062\n 4124 \N 189.186.91.88 a230decb-dead-4290-b906-adebe083902a 2020-11-15 02:15:22.379153 46036 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Mjz_7xLTSE5sCHpG28zs\n- pT963qCV1qTyuSXVJsey\n 4125 \N 189.186.91.88 a230decb-dead-4290-b906-adebe083902a 2020-11-15 02:15:22.397192 46037 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-15 00:32:10.439652000 Z\n- &1 2020-11-15 00:41:12.770974000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-15 02:16:02.811638913 Z\nsign_in_count:\n- 358\n- 359\n 719 \N 189.186.91.88 0007231e-b428-452d-971c-f0586a647072 2020-11-15 02:16:02.81872 46038 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 1DE24Js_Js4XqVNiRUUi\n- 2KVDNAuhpZUJLfhA-MEs\n 720 \N 189.186.91.88 0007231e-b428-452d-971c-f0586a647072 2020-11-15 02:16:02.837344 46039 1198 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1173\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.6402E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.27E4\ncash_fund: !ruby/object:BigDecimal 18:0.1234E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3934E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 f23a3200-e143-498c-af84-4fc221946f01 2020-11-15 02:20:02.789291 46040 1173 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 f23a3200-e143-498c-af84-4fc221946f01 2020-11-15 02:20:02.806896 46041 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-13 19:46:02.233412000 Z\n- &1 2020-11-14 17:38:24.147310000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-15 19:27:26.461899014 Z\nsign_in_count:\n- 701\n- 702\n 1407 \N 189.186.26.176 8b0ebc35-bc6e-4b65-9617-34cd28867a2f 2020-11-15 19:27:26.493058 46042 2 User \N \N 2 User \N update ---\nunique_session_id:\n- zzGvLS6TqVr3K1ZQPC3c\n- uccgoBGZk4dBFRUKWesD\n 1408 \N 189.186.26.176 8b0ebc35-bc6e-4b65-9617-34cd28867a2f 2020-11-15 19:27:26.518717 46043 1174 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.821E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 821.0 189.186.26.176 9cf7427b-8245-4656-ba31-e54b70006b61 2020-11-15 19:28:32.024674 46044 3432 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1174\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1636\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 e6564436-5d76-4e0c-a976-cb538309ca3f 2020-11-15 19:28:46.205242 46045 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 11 \N 189.186.26.176 e6564436-5d76-4e0c-a976-cb538309ca3f 2020-11-15 19:28:46.233938 46046 3432 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 e965a1c7-2a1c-4a0c-90ee-ef1776391376 2020-11-15 19:28:57.037606 46047 4543 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1174\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3432\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1636\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1799E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1636 189.186.26.176 e965a1c7-2a1c-4a0c-90ee-ef1776391376 2020-11-15 19:28:57.06855 46048 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-15 00:35:51.824253000 Z\n- &1 2020-11-15 02:15:22.372069000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-15 20:04:59.003420812 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933980\n mask_addr: 4294967295\nsign_in_count:\n- 2062\n- 2063\n 4126 \N 200.68.134.28 3c262711-d729-42f0-9ba4-38e3eae3c5ce 2020-11-15 20:04:59.010758 46049 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pT963qCV1qTyuSXVJsey\n- QgjUYCeJXUTAAywAyK5i\n 4127 \N 200.68.134.28 3c262711-d729-42f0-9ba4-38e3eae3c5ce 2020-11-15 20:04:59.029078 46050 3433 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1174\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-11-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1637\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 91ce432c-9b2b-4c48-a0c2-564ca40d4223 2020-11-15 20:35:46.581488 46051 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 12 \N 189.186.26.176 91ce432c-9b2b-4c48-a0c2-564ca40d4223 2020-11-15 20:35:46.673967 46052 3433 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 926f5c52-6f37-4923-a128-6debdcedc0cf 2020-11-15 20:36:16.040481 46053 4544 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1174\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 3433\ncardnumber: 6509\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1637\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1637 189.186.26.176 926f5c52-6f37-4923-a128-6debdcedc0cf 2020-11-15 20:36:16.063615 46054 1199 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1174\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3398E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.17E4\ncash_fund: !ruby/object:BigDecimal 18:0.92E3\nphysical_cash: !ruby/object:BigDecimal 18:0.262E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.26.176 ed07760f-42d8-4e4f-8879-15b3f55f7ff7 2020-11-15 22:52:51.861386 46055 1174 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.26.176 ed07760f-42d8-4e4f-8879-15b3f55f7ff7 2020-11-15 22:52:51.879199 46056 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-15 02:15:22.372069000 Z\n- &1 2020-11-15 20:04:59.003420000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-15 23:14:29.144399188 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933980\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933980\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946207\n mask_addr: 4294967295\nsign_in_count:\n- 2063\n- 2064\n 4128 \N 200.68.181.223 d197e84c-2035-498c-9f70-1723aff12dfe 2020-11-15 23:14:29.174943 46057 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QgjUYCeJXUTAAywAyK5i\n- AvwKgC1bqsDPFqseRZwP\n 4129 \N 200.68.181.223 d197e84c-2035-498c-9f70-1723aff12dfe 2020-11-15 23:14:29.201817 46058 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-14 18:08:20.804309000 Z\n- &1 2020-11-15 00:18:03.904035000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-16 17:30:26.005930779 Z\nsign_in_count:\n- 379\n- 380\n 760 \N 189.186.26.176 15d0e986-6d96-42f6-b6e0-111e8cf818ef 2020-11-16 17:30:26.040498 46059 1 User \N \N 1 User \N update ---\nunique_session_id:\n- e3h4bNeuYNbCRz5w3BDT\n- Ge6WxY9-T1DexhRDoyj1\n 761 \N 189.186.26.176 15d0e986-6d96-42f6-b6e0-111e8cf818ef 2020-11-16 17:30:26.064427 46060 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-14 17:38:24.147310000 Z\n- &1 2020-11-15 19:27:26.461899000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-16 17:32:37.757633440 Z\nsign_in_count:\n- 702\n- 703\n 1409 \N 189.186.26.176 836c0847-5dc9-4cd8-803b-2b5dbd5bb5f0 2020-11-16 17:32:37.763348 46061 2 User \N \N 2 User \N update ---\nunique_session_id:\n- uccgoBGZk4dBFRUKWesD\n- nGFo2-3RYMhn5eD62YWm\n 1410 \N 189.186.26.176 836c0847-5dc9-4cd8-803b-2b5dbd5bb5f0 2020-11-16 17:32:37.782051 46062 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-15 00:18:03.904035000 Z\n- &1 2020-11-16 17:30:26.005930000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-16 17:39:11.668100914 Z\nsign_in_count:\n- 380\n- 381\n 762 \N 189.186.26.176 33138ec2-5ee3-475a-a4b2-9e6122745ef0 2020-11-16 17:39:11.673674 46063 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Ge6WxY9-T1DexhRDoyj1\n- UsHBvHfz6vb8U88mKZUj\n 763 \N 189.186.26.176 33138ec2-5ee3-475a-a4b2-9e6122745ef0 2020-11-16 17:39:11.687631 46064 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-15 20:04:59.003420000 Z\n- &1 2020-11-15 23:14:29.144399000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-16 18:02:13.656949751 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359933980\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946207\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946207\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535416\n mask_addr: 4294967295\nsign_in_count:\n- 2064\n- 2065\n 4130 \N 177.228.101.120 901d5381-1cbd-45f7-a8e6-ac92b6e5f63d 2020-11-16 18:02:13.665028 46065 4 User \N \N 4 User \N update ---\nunique_session_id:\n- AvwKgC1bqsDPFqseRZwP\n- H2oukR_g1kP1avq2eMmW\n 4131 \N 177.228.101.120 901d5381-1cbd-45f7-a8e6-ac92b6e5f63d 2020-11-16 18:02:13.695209 46066 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-07 17:01:27.236326000 Z\n- &1 2020-11-11 21:52:18.378315000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-16 18:38:43.291106411 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 338\n- 339\n 679 \N 189.186.91.88 c1e95bf9-72dd-445a-8015-2a79b2e60370 2020-11-16 18:38:43.299149 46067 21 User \N \N 21 User \N update ---\nunique_session_id:\n- qvnwijVZ2wLASWEG6xzE\n- czQVBsaJxxoc_p1Kof4N\n 680 \N 189.186.91.88 c1e95bf9-72dd-445a-8015-2a79b2e60370 2020-11-16 18:38:43.315198 46068 1175 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1234E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1234.0 189.186.91.88 b346c740-e532-47f6-9fde-9ded8d6bf143 2020-11-16 19:05:17.031033 46069 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-16 17:30:26.005930000 Z\n- &1 2020-11-16 17:39:11.668100000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-16 19:25:52.139620603 Z\nsign_in_count:\n- 381\n- 382\n 764 \N 189.186.26.176 ac60f0b6-358d-4e17-9f1f-87c9302d05d5 2020-11-16 19:25:52.162287 46070 1 User \N \N 1 User \N update ---\nunique_session_id:\n- UsHBvHfz6vb8U88mKZUj\n- GAr7Qy-famdZW-66okHR\n 765 \N 189.186.26.176 ac60f0b6-358d-4e17-9f1f-87c9302d05d5 2020-11-16 19:25:52.188338 46071 2541 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.26.176 757109a9-406b-4e39-9bb6-98f2f86f7e31 2020-11-16 20:23:07.643217 46072 2541 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.26.176 848ddc07-2cff-4559-9d39-1eab0878f8dc 2020-11-16 20:23:10.81182 46073 734 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-11-16\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.26.176 e174d896-e04d-4322-9bae-92efdf7ef1ad 2020-11-16 20:23:11.478215 46074 734 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-16\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.91.88 f77d80d1-f4ba-4e43-8740-6214b3d942c1 2020-11-16 20:46:59.367129 46075 2573 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.91.88 f77d80d1-f4ba-4e43-8740-6214b3d942c1 2020-11-16 20:46:59.386314 46076 1176 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.92E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 920.0 189.186.26.176 c9f5c5e4-b128-4f47-a450-e739aa41e0eb 2020-11-16 20:50:19.590106 46077 3434 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1176\namount: !ruby/object:BigDecimal 18:0.1967E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1967E4\nstatus: 0\ndate_sale: 2020-11-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1638\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 365a4d6a-ea1a-422f-a953-8bb7b2de14d5 2020-11-16 20:52:16.818517 46078 2544 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.26.176 365a4d6a-ea1a-422f-a953-8bb7b2de14d5 2020-11-16 20:52:16.849656 46079 2516 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.26.176 365a4d6a-ea1a-422f-a953-8bb7b2de14d5 2020-11-16 20:52:16.879781 46080 2470 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.26.176 365a4d6a-ea1a-422f-a953-8bb7b2de14d5 2020-11-16 20:52:16.908162 46081 3434 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 ce1cc61e-09cc-4956-bc63-c8d0741637d2 2020-11-16 20:52:27.686863 46082 4545 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1176\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1967E4\nmove_type: '1'\nsale_id: 3434\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1638\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1967E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1638 189.186.26.176 ce1cc61e-09cc-4956-bc63-c8d0741637d2 2020-11-16 20:52:27.716934 46083 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-11 21:52:18.378315000 Z\n- &1 2020-11-16 18:38:43.291106000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-16 20:54:10.801004261 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\nsign_in_count:\n- 339\n- 340\n 681 \N 189.186.26.176 0c6e29a2-9d16-4614-bc56-1cfb4cfc103f 2020-11-16 20:54:10.843149 46084 21 User \N \N 21 User \N update ---\nunique_session_id:\n- czQVBsaJxxoc_p1Kof4N\n- zmxvitButFjd7xwmfFmL\n 682 \N 189.186.26.176 0c6e29a2-9d16-4614-bc56-1cfb4cfc103f 2020-11-16 20:54:10.864438 46085 480 Purchase \N \N 21 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-137\namount: !ruby/object:BigDecimal 18:0.2937E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2937E4\nobservations: ''\npurchase_date: 2020-11-16\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-137 por $ 2937.0 MXN creada. 189.186.26.176 2d588983-f9d4-4b14-bf0a-ad99b85394ec 2020-11-16 20:55:31.997012 46086 2615 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1540\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 2d588983-f9d4-4b14-bf0a-ad99b85394ec 2020-11-16 20:55:32.021345 46087 2616 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1541\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 2d588983-f9d4-4b14-bf0a-ad99b85394ec 2020-11-16 20:55:32.049093 46088 481 Purchase \N \N 21 User \N create ---\nsupplier_id: 2\npointsale_id: 3\npurchase_code: PV3-C-138\namount: !ruby/object:BigDecimal 18:0.6567E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6567E4\nobservations: ''\npurchase_date: 2020-11-16\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-138 por $ 6567.0 MXN creada. 189.186.26.176 0c0c6e6a-c3a2-4bec-97b8-f7dddaf16c60 2020-11-16 20:59:41.256593 46089 2617 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1534\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 0c0c6e6a-c3a2-4bec-97b8-f7dddaf16c60 2020-11-16 20:59:41.282924 46090 2618 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1535\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 0c0c6e6a-c3a2-4bec-97b8-f7dddaf16c60 2020-11-16 20:59:41.312575 46091 2619 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1538\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 0c0c6e6a-c3a2-4bec-97b8-f7dddaf16c60 2020-11-16 20:59:41.342295 46092 2620 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1537\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 0c0c6e6a-c3a2-4bec-97b8-f7dddaf16c60 2020-11-16 20:59:41.377394 46093 2621 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1539\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.26.176 0c0c6e6a-c3a2-4bec-97b8-f7dddaf16c60 2020-11-16 20:59:41.417104 46094 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-16 17:39:11.668100000 Z\n- &1 2020-11-16 19:25:52.139620000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-16 21:22:14.116712132 Z\nsign_in_count:\n- 382\n- 383\n 766 \N 189.186.26.176 d14e4a4e-43e4-440c-9424-b94853eed3a8 2020-11-16 21:22:14.1228 46095 1 User \N \N 1 User \N update ---\nunique_session_id:\n- GAr7Qy-famdZW-66okHR\n- oj_bEDDeWxBdzzNxs1f3\n 767 \N 189.186.26.176 d14e4a4e-43e4-440c-9424-b94853eed3a8 2020-11-16 21:22:14.137728 46096 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-15 00:41:12.770974000 Z\n- &1 2020-11-15 02:16:02.811638000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-16 21:29:49.107872088 Z\nsign_in_count:\n- 359\n- 360\n 721 \N 189.186.91.88 4d7dd654-d786-45a5-8218-a5f0d052fe37 2020-11-16 21:29:49.116309 46097 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 2KVDNAuhpZUJLfhA-MEs\n- 3yyxvPsbPgw9D5FzecR2\n 722 \N 189.186.91.88 4d7dd654-d786-45a5-8218-a5f0d052fe37 2020-11-16 21:29:49.137368 46098 3435 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1175\namount: !ruby/object:BigDecimal 18:0.1251E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1251E4\nstatus: 0\ndate_sale: 2020-11-16\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-877\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 2fa1c191-eded-474e-bf25-fe14116f8af2 2020-11-16 21:57:37.954673 46099 2616 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.91.88 2fa1c191-eded-474e-bf25-fe14116f8af2 2020-11-16 21:57:37.984826 46101 4546 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1175\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1251E4\nmove_type: '1'\nsale_id: 3435\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-877\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1251E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-877 189.186.91.88 bec45052-fe8f-4066-a917-7d8f08e356eb 2020-11-16 21:57:41.878619 46102 3436 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1176\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-16\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1639\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 65181413-9dfa-444a-a1d9-be8757ae7890 2020-11-16 21:59:06.404075 46103 2369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 14 \N 189.186.26.176 65181413-9dfa-444a-a1d9-be8757ae7890 2020-11-16 21:59:06.444426 46104 3436 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 4a3f9512-1b28-435a-a57e-63ff6879724a 2020-11-16 21:59:10.687888 46105 4547 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1176\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3436\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1639\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1399E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1639 189.186.26.176 4a3f9512-1b28-435a-a57e-63ff6879724a 2020-11-16 21:59:10.717629 46106 3437 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1175\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-11-16\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-878\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 7ba59eec-ec93-44b7-830b-4f3270b469f0 2020-11-16 22:01:46.20384 46107 2378 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 6 \N 189.186.91.88 7ba59eec-ec93-44b7-830b-4f3270b469f0 2020-11-16 22:01:46.235208 46108 3437 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 0d996015-c74b-41ff-a057-a647facd4619 2020-11-16 22:01:54.90726 46109 4548 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1175\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 3437\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-878\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '12152'\n 1 movimiento de efectivo por venta con folio PV3-V-878 189.186.91.88 0d996015-c74b-41ff-a057-a647facd4619 2020-11-16 22:01:54.929748 46110 3438 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1175\namount: !ruby/object:BigDecimal 18:0.2846E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2846E4\nstatus: 0\ndate_sale: 2020-11-16\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-879\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 7eb23018-8624-4701-a2e1-c5ae6dfbe82f 2020-11-16 22:06:24.112889 46111 2595 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.91.88 7eb23018-8624-4701-a2e1-c5ae6dfbe82f 2020-11-16 22:06:24.139275 46112 2599 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.91.88 7eb23018-8624-4701-a2e1-c5ae6dfbe82f 2020-11-16 22:06:24.163541 46113 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 19 \N 189.186.91.88 7eb23018-8624-4701-a2e1-c5ae6dfbe82f 2020-11-16 22:06:24.186751 46114 3438 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 1b826aca-e09b-4aa7-8f6e-f72a80edadc6 2020-11-16 22:06:37.601796 46115 4549 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1175\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.2846E4\nmove_type: '1'\nsale_id: 3438\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-879\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '222'\n 1 movimiento de efectivo por venta con folio PV3-V-879 189.186.91.88 1b826aca-e09b-4aa7-8f6e-f72a80edadc6 2020-11-16 22:06:37.623282 46116 437 Customer \N \N 2 User \N create ---\nnick_name: FERNANDA CASTRO\nphone: "(667) 182-7903"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente FERNANDA CASTRO fue registrado. 189.186.26.176 7699bc5a-83ef-4524-9e5f-5c5a65db7550 2020-11-16 22:45:09.758364 46117 3439 Sale \N \N 2 User \N create ---\ncustomer_id: 437\nuser_id: 2\nopen_cash_register_id: 1176\namount: !ruby/object:BigDecimal 18:0.5397E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.5397E4\nstatus: 0\ndate_sale: 2020-11-16\nsaletype: 2\nseller_id: 28\nsale_code: PV1-V-1640\nexpiration_date: 2020-12-21\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 e7d62e13-7beb-47b3-8804-041444a92df9 2020-11-16 22:53:36.851541 46118 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.1E2\n 12 \N 189.186.26.176 e7d62e13-7beb-47b3-8804-041444a92df9 2020-11-16 22:53:36.884362 46119 4550 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1176\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.13E4\nmove_type: '1'\nsale_id: 3439\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1640\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.2E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1640 189.186.26.176 73a3b47a-c56f-4159-946e-703a4e25e239 2020-11-16 22:55:21.909598 46120 4550 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1176\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.13E4\nmove_type: '1'\nsale_id: 3439\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1640\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.2E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.26.176 a4354a1a-545c-4f21-af1a-4228477889dd 2020-11-16 22:55:28.681223 46454 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1-nnjvpEA-Ub_Hbxaueo\n- 5Vb2_omTgzfNcTm2w2zX\n 4155 \N 177.228.103.0 b7c6c3d9-10c6-4767-a0e8-9d20bc3d0744 2020-11-21 06:45:12.96915 46121 4551 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1176\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3439\ncardnumber: 2892\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1640\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1640 189.186.26.176 f3b15e79-0f04-4ece-9b14-773e921bb0b5 2020-11-16 22:56:19.474295 46122 4552 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1176\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E4\nmove_type: '1'\nsale_id: 3439\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1640\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1640 189.186.26.176 b9549b41-2c27-4080-985b-b4b4a218615d 2020-11-16 22:56:34.930997 46123 3439 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.26.176 19ceb230-5eb9-43d1-894d-7211d2ddd8a4 2020-11-16 22:56:38.806372 46124 3440 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1176\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-11-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1641\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 5d90f7e0-e1a7-4e15-8b77-7a1a40a73e4a 2020-11-16 23:50:32.530952 46125 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 13 \N 189.186.26.176 5d90f7e0-e1a7-4e15-8b77-7a1a40a73e4a 2020-11-16 23:50:32.560998 46126 3440 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 e7fab501-4b6d-4973-a9c1-4979c2f99f46 2020-11-16 23:50:44.867008 46127 4553 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1176\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 3440\ncardnumber: 4505\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1641\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1641 189.186.26.176 e7fab501-4b6d-4973-a9c1-4979c2f99f46 2020-11-16 23:50:44.889608 46128 1200 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1176\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.6465E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.45E4\ncash_fund: !ruby/object:BigDecimal 18:0.986E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5486E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.26.176 e5337fd8-d3b0-4e19-ae7e-5b2b0d28070e 2020-11-16 23:55:52.871916 46129 1176 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.26.176 e5337fd8-d3b0-4e19-ae7e-5b2b0d28070e 2020-11-16 23:55:52.892041 46130 3441 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1175\namount: !ruby/object:BigDecimal 18:0.868E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.868E3\nstatus: 0\ndate_sale: 2020-11-16\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-880\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 576a0039-156d-4bce-bd60-e8d7005e5605 2020-11-16 23:56:02.281658 46131 2454 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.91.88 576a0039-156d-4bce-bd60-e8d7005e5605 2020-11-16 23:56:02.323806 46132 2590 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 3 \N 189.186.91.88 576a0039-156d-4bce-bd60-e8d7005e5605 2020-11-16 23:56:02.362601 46133 3441 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 69e4d770-59d6-43ab-b9f1-3e10bc4e66c6 2020-11-16 23:56:22.117748 46134 4554 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1175\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.868E3\nmove_type: '1'\nsale_id: 3441\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-880\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.132E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-880 189.186.91.88 69e4d770-59d6-43ab-b9f1-3e10bc4e66c6 2020-11-16 23:56:22.152429 46135 3442 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1175\namount: !ruby/object:BigDecimal 18:0.149E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.149E3\nstatus: 0\ndate_sale: 2020-11-16\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-881\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 1c085047-6076-4d4f-86e1-f3c3bd521cda 2020-11-17 00:04:42.823505 46136 2094 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.91.88 1c085047-6076-4d4f-86e1-f3c3bd521cda 2020-11-17 00:04:42.859977 46137 3442 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 86330cc2-e658-4c7a-82ea-0567c2d5f476 2020-11-17 00:04:47.458759 46138 4555 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1175\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.149E3\nmove_type: '1'\nsale_id: 3442\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-881\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.149E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-881 189.186.91.88 86330cc2-e658-4c7a-82ea-0567c2d5f476 2020-11-17 00:04:47.49918 46139 438 Customer \N \N 18 User \N create ---\nnick_name: ENIA LEY\nphone: "(667) 110-1010"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ENIA LEY fue registrado. 189.186.91.88 a1e8e443-5ae5-4da0-9620-2211a50a7294 2020-11-17 00:14:54.52753 46140 3443 Sale \N \N 18 User \N create ---\ncustomer_id: 438\nuser_id: 18\nopen_cash_register_id: 1175\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-16\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-882\nexpiration_date: 2020-12-21\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 35b485d6-74e1-4f67-b560-4b5602195625 2020-11-17 00:15:23.365292 46141 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.25E2\n- !ruby/object:BigDecimal 18:0.24E2\n 30 \N 189.186.91.88 35b485d6-74e1-4f67-b560-4b5602195625 2020-11-17 00:15:23.392878 46484 1472 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1472'\n is_parent: false\n sku: CAR-1472\n name: NILE897\n description: CARTERA NEGRA CON TARJETERO\n price_base: '249.5'\n price_sale: '499.0'\n img_product: CD149B8B-04B0-4158-A802-7A0310368633.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170723755'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-29 21:24:47.434669'\n updated_at: &12 2020-11-21 19:32:37.673040287 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1472'\n sku: CAR-1472\n name: NILE897\n description: CARTERA NEGRA CON TARJETERO\n price_base: '249.50'\n price_sale: '499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-29 21:24:47.434669'\n updated_at: '2020-10-29 21:24:47.434669'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170723755'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1472'\n type: *3\n value: 1472\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-1472\n type: *7\n value: CAR-1472\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: NILE897\n type: *8\n value: NILE897\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA NEGRA CON TARJETERO\n type: *6\n value: CARTERA NEGRA CON TARJETERO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '249.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.499E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: CD149B8B-04B0-4158-A802-7A0310368633.jpeg\n type: *2\n value: CD149B8B-04B0-4158-A802-7A0310368633.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170723755'\n type: *2\n value: '7509170723755'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-29 21:24:47.434669'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- CD149B8B-04B0-4158-A802-7A0310368633.jpeg\n 2 El producto CAR-1472 fue modificado. 189.186.1.223 008e5958-b68e-4f88-8127-5464214abe92 2020-11-21 19:32:37.716954 46142 4556 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1175\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3443\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-882\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-882 189.186.91.88 259dd0f0-e7e4-490a-a64e-92155806ea16 2020-11-17 00:17:16.929146 46143 4556 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1175\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3443\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-882\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.91.88 af14e139-36ed-4c94-8737-05d0d26143b1 2020-11-17 00:17:18.642869 46144 4557 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1175\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3443\ncardnumber: 1122\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-882\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-882 189.186.91.88 7c3a5492-d4f3-4668-b526-db79c23d8862 2020-11-17 00:17:29.563367 46145 3443 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 bc63c318-ad0e-4757-a385-e29f296029f4 2020-11-17 00:17:45.532941 46146 1201 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1175\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.7213E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.2458E4\ncash_fund: !ruby/object:BigDecimal 18:0.1044E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3502E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 b9feedf9-8bca-42a9-b303-40de57f76cca 2020-11-17 01:04:53.916809 46147 1175 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 b9feedf9-8bca-42a9-b303-40de57f76cca 2020-11-17 01:04:53.937609 46148 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-15 23:14:29.144399000 Z\n- &1 2020-11-16 18:02:13.656949000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-17 05:38:44.036466621 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946207\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535416\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535416\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535160\n mask_addr: 4294967295\nsign_in_count:\n- 2065\n- 2066\n 4132 \N 177.228.100.120 f5d297b5-be22-47c8-ba43-b12b43fbb8d0 2020-11-17 05:38:44.066976 46149 4 User \N \N 4 User \N update ---\nunique_session_id:\n- H2oukR_g1kP1avq2eMmW\n- 6UQytFNzKr4RgX9Sg1Rc\n 4133 \N 177.228.100.120 f5d297b5-be22-47c8-ba43-b12b43fbb8d0 2020-11-17 05:38:44.095306 46150 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-16 18:38:43.291106000 Z\n- &1 2020-11-16 20:54:10.801004000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-17 17:36:46.393212410 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 340\n- 341\n 683 \N 189.186.91.88 2eefc771-0ec3-4318-a936-f10556fae384 2020-11-17 17:36:46.424269 46151 21 User \N \N 21 User \N update ---\nunique_session_id:\n- zmxvitButFjd7xwmfFmL\n- kLj7VDCnJKMpxxngzHCM\n 684 \N 189.186.91.88 2eefc771-0ec3-4318-a936-f10556fae384 2020-11-17 17:36:46.448318 46152 1177 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1044E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1044.0 189.186.91.88 06c7e6a1-8373-4135-a83d-a8abca6a8fd0 2020-11-17 17:40:10.748042 46153 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-15 19:27:26.461899000 Z\n- &1 2020-11-16 17:32:37.757633000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-17 17:41:23.332593193 Z\nsign_in_count:\n- 703\n- 704\n 1411 \N 189.186.26.176 406129d4-940c-43c3-810f-aa72df3ee166 2020-11-17 17:41:23.341722 46154 2 User \N \N 2 User \N update ---\nunique_session_id:\n- nGFo2-3RYMhn5eD62YWm\n- jU3zSqUyXJsuph96Cv7i\n 1412 \N 189.186.26.176 406129d4-940c-43c3-810f-aa72df3ee166 2020-11-17 17:41:23.366344 46155 1178 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.986E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 986.0 189.186.26.176 08592407-e27c-4c33-821e-db1f8079936a 2020-11-17 17:58:35.148853 46156 3444 Sale \N \N 21 User \N create ---\ncustomer_id: 363\nuser_id: 21\nopen_cash_register_id: 1177\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-17\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-883\nexpiration_date: 2020-12-22\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 3e77327d-8375-4ea7-bb9d-bfa775b50ed7 2020-11-17 18:08:15.621935 46157 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.24E2\n- !ruby/object:BigDecimal 18:0.23E2\n 31 \N 189.186.91.88 3e77327d-8375-4ea7-bb9d-bfa775b50ed7 2020-11-17 18:08:15.665372 46158 4558 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1177\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3444\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-883\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-883 189.186.91.88 79d251c3-5753-485f-8727-f2e5a488c0e7 2020-11-17 18:08:32.27657 46159 3444 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 518c3a46-4cc6-47c7-ab8c-de8649b4f5d2 2020-11-17 18:08:34.869479 46160 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-16 18:02:13.656949000 Z\n- &1 2020-11-17 05:38:44.036466000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-17 18:31:05.335756719 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535416\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535160\n mask_addr: 4294967295\nsign_in_count:\n- 2066\n- 2067\n 4134 \N 177.228.100.120 1b12eeb2-790c-4328-8bea-ae27060bb81e 2020-11-17 18:31:05.344015 46161 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6UQytFNzKr4RgX9Sg1Rc\n- 7zJ_38Y7MLmnjDBTaxjj\n 4135 \N 177.228.100.120 1b12eeb2-790c-4328-8bea-ae27060bb81e 2020-11-17 18:31:05.364213 46162 439 Customer \N \N 2 User \N create ---\nnick_name: NATALY ARMENTA INSUNZA\nphone: "(667) 210-3234"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente NATALY ARMENTA INSUNZA fue registrado. 189.186.26.176 741527b7-d876-4519-b348-b0e8b5ec88a7 2020-11-17 19:11:31.401664 46163 3445 Sale \N \N 2 User \N create ---\ncustomer_id: 439\nuser_id: 2\nopen_cash_register_id: 1178\namount: !ruby/object:BigDecimal 18:0.689E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.689E3\nstatus: 0\ndate_sale: 2020-11-17\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1642\nexpiration_date: 2020-12-22\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 a8f92e78-2c81-49ac-9ee4-b01a74f8b402 2020-11-17 19:12:55.078717 46164 2528 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.26.176 a8f92e78-2c81-49ac-9ee4-b01a74f8b402 2020-11-17 19:12:55.105785 46165 4559 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1178\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 3445\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1642\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1642 189.186.26.176 8abd0ca1-f710-44d3-8b10-00a9b543996f 2020-11-17 19:13:27.355938 46166 3445 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.26.176 a4681148-83e3-4041-ab56-4bf2f0ba411b 2020-11-17 19:13:28.387395 46167 3446 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1178\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.99E2\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2020-11-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1643\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 4b4ee4f0-edf7-464c-a070-fdcf2a15ffd8 2020-11-17 19:16:59.538319 46168 790 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 16 \N 189.186.26.176 4b4ee4f0-edf7-464c-a070-fdcf2a15ffd8 2020-11-17 19:16:59.569569 46169 3446 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 ccfdd5ba-b19d-4873-b785-69c9b80a3151 2020-11-17 19:17:03.089432 46170 4560 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1178\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 3446\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1643\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1643 189.186.26.176 ccfdd5ba-b19d-4873-b785-69c9b80a3151 2020-11-17 19:17:03.112725 46171 440 Customer \N \N 2 User \N create ---\nnick_name: ANNEL BARRON MALDONADO\nphone: "(667) 352-4713"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANNEL BARRON MALDONADO fue registrado. 189.186.26.176 669d4546-9920-4a51-bec2-f1e60e17268d 2020-11-17 20:30:39.761198 46172 3447 Sale \N \N 2 User \N create ---\ncustomer_id: 440\nuser_id: 2\nopen_cash_register_id: 1178\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-17\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1644\nexpiration_date: 2020-12-22\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 e8ac2543-2178-4851-84a3-ed1f9895b060 2020-11-17 20:30:48.98965 46173 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 13 \N 189.186.26.176 e8ac2543-2178-4851-84a3-ed1f9895b060 2020-11-17 20:30:49.0171 46174 4561 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1178\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3447\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1644\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1644 189.186.26.176 4ee36ca1-14d8-42d2-91d0-e8f98b8e7475 2020-11-17 20:35:44.313148 46175 3447 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.26.176 b1257c1f-f284-437f-ae08-b360b9310e11 2020-11-17 20:35:46.321077 46176 3448 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1178\namount: !ruby/object:BigDecimal 18:0.16921E4\ntax: !ruby/object:BigDecimal 18:0.2069E3\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.15E4\nstatus: 0\ndate_sale: 2020-11-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1645\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 21a96cd4-7ec4-44a1-bcbd-feb25d91c438 2020-11-17 20:43:19.713461 46177 39 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.26.176 21a96cd4-7ec4-44a1-bcbd-feb25d91c438 2020-11-17 20:43:19.742735 46178 3448 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 2bc87878-b6e6-405f-931e-b6f3b51b63ac 2020-11-17 20:43:51.997251 46179 4562 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1178\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.15E4\nmove_type: '1'\nsale_id: 3448\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1645\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1645 189.186.26.176 2bc87878-b6e6-405f-931e-b6f3b51b63ac 2020-11-17 20:43:52.019581 46180 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-16 19:25:52.139620000 Z\n- &1 2020-11-16 21:22:14.116712000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-17 20:59:23.212911195 Z\nsign_in_count:\n- 383\n- 384\n 768 \N 189.186.26.176 a28383a8-809b-4b28-9506-b2e36cb58d8b 2020-11-17 20:59:23.246281 46181 1 User \N \N 1 User \N update ---\nunique_session_id:\n- oj_bEDDeWxBdzzNxs1f3\n- vUNNcUMkxUxRgP2ASf6T\n 769 \N 189.186.26.176 a28383a8-809b-4b28-9506-b2e36cb58d8b 2020-11-17 20:59:23.265013 46182 3449 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1178\namount: !ruby/object:BigDecimal 18:0.2288E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2288E4\nstatus: 0\ndate_sale: 2020-11-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1646\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 2b9dadda-9c9f-4ea5-9ea1-f23fd6f2a8fa 2020-11-17 21:41:47.941599 46183 2448 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 6 \N 189.186.26.176 2b9dadda-9c9f-4ea5-9ea1-f23fd6f2a8fa 2020-11-17 21:41:47.982687 46184 2528 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.26.176 2b9dadda-9c9f-4ea5-9ea1-f23fd6f2a8fa 2020-11-17 21:41:48.014744 46185 3449 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 404ac91c-f18f-44db-95d1-396f7211fb48 2020-11-17 21:42:04.035201 46186 4563 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1178\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2288E4\nmove_type: '1'\nsale_id: 3449\ncardnumber: 119\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1646\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1646 189.186.26.176 404ac91c-f18f-44db-95d1-396f7211fb48 2020-11-17 21:42:04.062022 46187 441 Customer \N \N 2 User \N create ---\nnick_name: ARISA BEJARANO\nphone: "(667) 355-4254"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ARISA BEJARANO fue registrado. 189.186.26.176 ef1f2506-897c-4e4d-85b6-3e7baf233bb4 2020-11-17 22:15:49.002052 46188 3450 Sale \N \N 2 User \N create ---\ncustomer_id: 441\nuser_id: 2\nopen_cash_register_id: 1178\namount: !ruby/object:BigDecimal 18:0.2558E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2558E4\nstatus: 0\ndate_sale: 2020-11-17\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1647\nexpiration_date: 2020-12-22\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 42a7bfdc-dc5c-4570-bb83-ebf38dc11d7a 2020-11-17 22:16:12.657679 46189 2549 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 3 \N 189.186.26.176 42a7bfdc-dc5c-4570-bb83-ebf38dc11d7a 2020-11-17 22:16:12.691789 46190 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 14 \N 189.186.26.176 42a7bfdc-dc5c-4570-bb83-ebf38dc11d7a 2020-11-17 22:16:12.725657 46191 4564 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1178\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.76E3\nmove_type: '1'\nsale_id: 3450\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1647\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.76E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1647 189.186.26.176 463022bd-d24a-4606-a9b9-09ea21b5fc8d 2020-11-17 22:17:45.139456 46192 3450 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.26.176 270e0c16-55ec-4dfa-908a-08507894e72b 2020-11-17 22:17:46.443873 46193 3451 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1177\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-17\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-884\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 8f1eeb59-37f8-4dee-9081-910a007b85f4 2020-11-17 22:22:30.208622 46194 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.23E2\n- !ruby/object:BigDecimal 18:0.22E2\n 32 \N 189.186.91.88 8f1eeb59-37f8-4dee-9081-910a007b85f4 2020-11-17 22:22:30.246301 46195 3451 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 bd032ddf-6198-45e8-a4b6-c1745b0e52a1 2020-11-17 22:22:40.620464 46196 4565 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1177\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 3451\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-884\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-884 189.186.91.88 bd032ddf-6198-45e8-a4b6-c1745b0e52a1 2020-11-17 22:22:40.643408 46197 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-16 21:22:14.116712000 Z\n- &1 2020-11-17 20:59:23.212911000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-17 22:33:04.456954953 Z\nsign_in_count:\n- 384\n- 385\n 770 \N 189.186.26.176 a848434b-86b1-4c43-96c4-66f240d87755 2020-11-17 22:33:04.464167 46198 1 User \N \N 1 User \N update ---\nunique_session_id:\n- vUNNcUMkxUxRgP2ASf6T\n- J7UK9yeaj4AgLf6c6Lax\n 771 \N 189.186.26.176 a848434b-86b1-4c43-96c4-66f240d87755 2020-11-17 22:33:04.479622 46199 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-17 05:38:44.036466000 Z\n- &1 2020-11-17 18:31:05.335756000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-17 22:46:25.192149580 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535160\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945974\n mask_addr: 4294967295\nsign_in_count:\n- 2067\n- 2068\n 4136 \N 200.68.180.246 1cf200e3-9fcf-4502-93bc-36c716da465b 2020-11-17 22:46:25.19909 46200 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7zJ_38Y7MLmnjDBTaxjj\n- UxyWbcnHo1_Q65J5xyyv\n 4137 \N 200.68.180.246 1cf200e3-9fcf-4502-93bc-36c716da465b 2020-11-17 22:46:25.217894 46201 3452 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1177\namount: !ruby/object:BigDecimal 18:0.589E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.58E2\ntotal: !ruby/object:BigDecimal 18:0.531E3\nstatus: 0\ndate_sale: 2020-11-17\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-885\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 bcc4a5f6-7932-4ad1-8129-aa2386762f97 2020-11-18 00:32:49.065547 46202 2572 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.91.88 bcc4a5f6-7932-4ad1-8129-aa2386762f97 2020-11-18 00:32:49.098248 46203 3452 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 b2dd910e-099c-48ea-b255-1d9665b9ed21 2020-11-18 00:33:20.736915 46204 4566 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1177\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.531E3\nmove_type: '1'\nsale_id: 3452\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-885\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.531E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-885 189.186.91.88 b2dd910e-099c-48ea-b255-1d9665b9ed21 2020-11-18 00:33:20.759806 46205 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-17 18:31:05.335756000 Z\n- &1 2020-11-17 22:46:25.192149000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-18 01:24:53.692582653 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535160\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945974\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945974\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2068\n- 2069\n 4138 \N 189.186.91.88 b5534988-e5a5-490d-87c7-61c05f2e90c9 2020-11-18 01:24:53.71384 46206 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UxyWbcnHo1_Q65J5xyyv\n- 9j_7-edUHzfp9hTSQS4x\n 4139 \N 189.186.91.88 b5534988-e5a5-490d-87c7-61c05f2e90c9 2020-11-18 01:24:53.740049 46207 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-15 02:16:02.811638000 Z\n- &1 2020-11-16 21:29:49.107872000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-18 01:35:41.186717423 Z\nsign_in_count:\n- 360\n- 361\n 723 \N 189.186.91.88 47f971d9-371b-4512-96ba-f92799c51f65 2020-11-18 01:35:41.192365 46209 3453 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1177\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-17\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-886\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 1e1e7807-d513-4b2c-9072-6cb5563ff0cf 2020-11-18 01:46:25.706015 46210 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.22E2\n- !ruby/object:BigDecimal 18:0.21E2\n 33 \N 189.186.91.88 1e1e7807-d513-4b2c-9072-6cb5563ff0cf 2020-11-18 01:46:25.732982 46211 3453 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 0660296c-8616-4916-bc8e-3248b246b0a3 2020-11-18 01:46:35.855804 46212 4567 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1177\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 3453\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-886\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-886 189.186.91.88 0660296c-8616-4916-bc8e-3248b246b0a3 2020-11-18 01:46:35.876839 46213 1202 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1177\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.4629E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.5E4\ncash_fund: !ruby/object:BigDecimal 18:0.673E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5673E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 1a291233-7979-4776-a7fe-9ca7c456f798 2020-11-18 02:02:43.686837 46214 1177 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 1a291233-7979-4776-a7fe-9ca7c456f798 2020-11-18 02:02:43.704539 46215 1203 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1178\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5848E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.34E4\ncash_fund: !ruby/object:BigDecimal 18:0.1146E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4546E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.26.176 31c641ac-d2ba-447a-bb64-d6a394a5e644 2020-11-18 02:08:50.757124 46216 1178 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.26.176 31c641ac-d2ba-447a-bb64-d6a394a5e644 2020-11-18 02:08:50.771674 46217 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-16 20:54:10.801004000 Z\n- &1 2020-11-17 17:36:46.393212000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-18 17:05:31.745007382 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 341\n- 342\n 685 \N 189.186.91.88 d0516243-f079-4c1f-89cf-8b665155d0a6 2020-11-18 17:05:31.790743 46218 21 User \N \N 21 User \N update ---\nunique_session_id:\n- kLj7VDCnJKMpxxngzHCM\n- zXJTpqF-Fq689xEEcYs7\n 686 \N 189.186.91.88 d0516243-f079-4c1f-89cf-8b665155d0a6 2020-11-18 17:05:31.825232 46219 1179 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.673E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 673.0 189.186.91.88 72252c5c-01bd-4a21-8c1b-ac3d8463d074 2020-11-18 17:05:50.773548 46220 3454 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1179\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-18\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-887\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 840592a1-aaa3-4f56-9c54-3094aca49bad 2020-11-18 17:06:36.733416 46221 2042 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 16 \N 189.186.91.88 840592a1-aaa3-4f56-9c54-3094aca49bad 2020-11-18 17:06:36.765113 46222 3454 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 267e1eb0-da8d-4b05-8a7c-5a0075ba548f 2020-11-18 17:06:45.9539 46223 4568 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1179\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 3454\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-887\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-887 189.186.91.88 267e1eb0-da8d-4b05-8a7c-5a0075ba548f 2020-11-18 17:06:45.981225 46224 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-16 17:32:37.757633000 Z\n- &1 2020-11-17 17:41:23.332593000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-18 17:26:02.315272738 Z\nsign_in_count:\n- 704\n- 705\n 1413 \N 189.186.26.176 82f1f0f3-703d-469e-bf0f-84e1894bb969 2020-11-18 17:26:02.321383 46225 2 User \N \N 2 User \N update ---\nunique_session_id:\n- jU3zSqUyXJsuph96Cv7i\n- mFwVxR7Lm94FQDKkQFH2\n 1414 \N 189.186.26.176 82f1f0f3-703d-469e-bf0f-84e1894bb969 2020-11-18 17:26:02.339887 46226 1180 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1146E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1146.0 189.186.26.176 79a2544d-8dc3-4149-ac87-19f8a0557380 2020-11-18 17:37:02.630832 46227 3455 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1180\namount: !ruby/object:BigDecimal 18:0.199E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.199E3\nstatus: 0\ndate_sale: 2020-11-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1648\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 a1ae2d9c-fe80-4c6c-8b51-170ea88b8323 2020-11-18 17:48:28.606548 46228 2393 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.26.176 a1ae2d9c-fe80-4c6c-8b51-170ea88b8323 2020-11-18 17:48:28.630526 46229 3455 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 99c14ae6-d852-49da-b4f0-e12450a10693 2020-11-18 17:48:34.368717 46230 4569 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1180\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.199E3\nmove_type: '1'\nsale_id: 3455\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1648\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.199E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1648 189.186.26.176 99c14ae6-d852-49da-b4f0-e12450a10693 2020-11-18 17:48:34.389754 46485 1473 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1473'\n is_parent: false\n sku: CAR-1473\n name: NILE898\n description: CARTERA ROJA\n price_base: '249.5'\n price_sale: '499.0'\n img_product: 3A389419-8A57-4870-9A54-2ED6AA84BA49.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170723731'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-29 21:25:25.434261'\n updated_at: &12 2020-11-21 19:33:00.206246585 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1473'\n sku: CAR-1473\n name: NILE898\n description: CARTERA ROJA\n price_base: '249.50'\n price_sale: '499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-29 21:25:25.434261'\n updated_at: '2020-10-29 21:25:25.434261'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170723731'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1473'\n type: *3\n value: 1473\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-1473\n type: *7\n value: CAR-1473\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: NILE898\n type: *8\n value: NILE898\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA ROJA\n type: *6\n value: CARTERA ROJA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '249.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.499E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 3A389419-8A57-4870-9A54-2ED6AA84BA49.jpeg\n type: *2\n value: 3A389419-8A57-4870-9A54-2ED6AA84BA49.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170723731'\n type: *2\n value: '7509170723731'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-29 21:25:25.434261'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 3A389419-8A57-4870-9A54-2ED6AA84BA49.jpeg\n 2 El producto CAR-1473 fue modificado. 189.186.1.223 92ab22c5-f958-4cdf-a82a-afcef9deebe4 2020-11-21 19:33:00.250036 46231 4570 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1086\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 3067\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAM\n 1 \N 189.186.26.176 cbacdb67-46fa-4d3d-bf2a-6648a918d256 2020-11-18 17:51:00.945735 46232 4570 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 1086\n- 1180\n 2 movimiento de efectivo por venta con folio PV1-V-1467 189.186.26.176 cbacdb67-46fa-4d3d-bf2a-6648a918d256 2020-11-18 17:51:00.985935 46233 3455 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-1648 cancelada. 189.186.26.176 6bcdc7d6-eb99-4035-9d04-cfda9ebe5829 2020-11-18 18:17:02.203915 46234 4569 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1180\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.199E3\nmove_type: '1'\nsale_id: 3455\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1648\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.199E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.26.176 6bcdc7d6-eb99-4035-9d04-cfda9ebe5829 2020-11-18 18:17:02.229152 46235 2393 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.26.176 6bcdc7d6-eb99-4035-9d04-cfda9ebe5829 2020-11-18 18:17:02.254708 46236 3456 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1180\namount: !ruby/object:BigDecimal 18:0.199E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.199E3\nstatus: 0\ndate_sale: 2020-11-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1649\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 30e2c8cc-3ef5-4dab-833b-37a4adad4810 2020-11-18 18:17:22.495867 46237 2393 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.26.176 30e2c8cc-3ef5-4dab-833b-37a4adad4810 2020-11-18 18:17:22.521263 46238 3456 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 b768f13e-cb76-4f5e-92a3-82a0aefd6529 2020-11-18 18:19:00.306564 46239 4571 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1180\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.199E3\nmove_type: '1'\nsale_id: 3456\ncardnumber: 4489\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1649\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1649 189.186.26.176 b768f13e-cb76-4f5e-92a3-82a0aefd6529 2020-11-18 18:19:00.335559 46240 3457 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1179\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-11-18\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-888\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 02a25714-2adb-4335-a382-3697a4c94aeb 2020-11-18 18:37:50.176974 46241 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.38E2\n- !ruby/object:BigDecimal 18:0.37E2\n 31 \N 189.186.91.88 02a25714-2adb-4335-a382-3697a4c94aeb 2020-11-18 18:37:50.23224 46242 3457 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 0c0f59ec-facf-4f50-9601-c38a085693bf 2020-11-18 18:38:06.092977 46243 4572 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1179\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49E2\nmove_type: '1'\nsale_id: 3457\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-888\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-888 189.186.91.88 0c0f59ec-facf-4f50-9601-c38a085693bf 2020-11-18 18:38:06.115166 46244 3458 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1180\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-11-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1650\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 bb27cb49-acaa-4ede-b0d9-eb1aacda6e5f 2020-11-18 21:03:26.161113 46245 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 14 \N 189.186.26.176 bb27cb49-acaa-4ede-b0d9-eb1aacda6e5f 2020-11-18 21:03:26.188906 46246 3458 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 aa9d3f6f-540d-4e84-b323-2385a53a102a 2020-11-18 21:04:43.132667 46247 4573 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1180\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 3458\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1650\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1650 189.186.26.176 aa9d3f6f-540d-4e84-b323-2385a53a102a 2020-11-18 21:04:43.165237 46248 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-17 22:46:25.192149000 Z\n- &1 2020-11-18 01:24:53.692582000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-18 23:09:52.265528605 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945974\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945654\n mask_addr: 4294967295\nsign_in_count:\n- 2069\n- 2070\n 4140 \N 200.68.179.182 91654d9f-b046-470c-9cd2-c51d2caa06a7 2020-11-18 23:09:52.286074 46249 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9j_7-edUHzfp9hTSQS4x\n- cwuM4zmizqAHkfJwoWG5\n 4141 \N 200.68.179.182 91654d9f-b046-470c-9cd2-c51d2caa06a7 2020-11-18 23:09:52.310057 46250 442 Customer \N \N 21 User \N create ---\nnick_name: MARIA DE LOS ANGELES\nphone: "(667) 359-9521"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIA DE LOS ANGELES fue registrado. 189.186.91.88 07b84fb4-69f4-4ad7-95ce-f3571d2e1aa1 2020-11-18 23:18:25.506233 46295 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-18 23:09:52.265528000 Z\n- &1 2020-11-19 01:37:51.076033000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-19 03:06:04.556499315 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945654\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938254\n mask_addr: 4294967295\nsign_in_count:\n- 2071\n- 2072\n 4144 \N 200.68.150.206 ffbec618-62bc-472b-998b-c86dedba3f74 2020-11-19 03:06:04.588157 46251 1544 Product \N \N 21 User \N create ---\nsku: BOL-1544\nname: 2BLCV20379\ndescription: BOLSO CROSSBODY MULTICOLOR\nprice_base: !ruby/object:BigDecimal 18:0.9495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170822298'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1544 fue creado. 189.186.91.88 793b6e8f-9a3c-4995-b1fb-9954c4befb57 2020-11-19 00:29:05.120778 46252 2622 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1544\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 793b6e8f-9a3c-4995-b1fb-9954c4befb57 2020-11-19 00:29:05.195054 46253 482 Purchase \N \N 21 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-139\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nobservations: ''\npurchase_date: 2020-11-18\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-139 por $ 1899.0 MXN creada. 189.186.91.88 344429ac-3c68-4d11-809d-eed28899f88e 2020-11-19 00:29:09.398747 46254 2622 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.91.88 344429ac-3c68-4d11-809d-eed28899f88e 2020-11-19 00:29:09.433448 46255 3459 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1179\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2020-11-18\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-889\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 3b71dbb7-4107-4cc7-a475-533116fca854 2020-11-19 00:29:22.557193 46256 2622 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.91.88 3b71dbb7-4107-4cc7-a475-533116fca854 2020-11-19 00:29:22.585805 46257 3459 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-889 cancelada. 189.186.91.88 33eff875-f270-477c-9afb-98f2699f96e8 2020-11-19 00:29:59.579176 46258 2622 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.91.88 33eff875-f270-477c-9afb-98f2699f96e8 2020-11-19 00:29:59.603768 46259 443 Customer \N \N 21 User \N create ---\nnick_name: MARIA DE LOS ANGELES BOLSA MULTICOLOR\nphone: "(667) 110-1010"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIA DE LOS ANGELES BOLSA MULTICOLOR fue registrado. 189.186.91.88 5aaca89f-4a04-421e-900b-f3a1ed7b0169 2020-11-19 00:30:34.721747 46260 3460 Sale \N \N 21 User \N create ---\ncustomer_id: 443\nuser_id: 21\nopen_cash_register_id: 1179\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2020-11-18\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-890\nexpiration_date: 2020-12-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 23169daa-7faa-4e09-9ea3-9cb65f244d9a 2020-11-19 00:30:41.61963 46261 2622 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.91.88 23169daa-7faa-4e09-9ea3-9cb65f244d9a 2020-11-19 00:30:41.644919 46262 4574 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1179\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3460\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-890\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-890 189.186.91.88 d78a117c-7403-4c0b-beaf-707014c0a19d 2020-11-19 00:30:49.599291 46263 3460 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 cd7b21f3-ffd0-439d-867f-804b748d5002 2020-11-19 00:30:50.746305 46264 444 Customer \N \N 2 User \N create ---\nnick_name: DENISSE MONTENEGRO\nphone: "(667) 406-2880"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DENISSE MONTENEGRO fue registrado. 189.186.26.176 f210f78a-4964-4930-a91f-20ea104c2bfc 2020-11-19 00:45:34.82623 46265 3461 Sale \N \N 2 User \N create ---\ncustomer_id: 444\nuser_id: 2\nopen_cash_register_id: 1180\namount: !ruby/object:BigDecimal 18:0.1249E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1249E4\nstatus: 0\ndate_sale: 2020-11-18\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1651\nexpiration_date: 2020-12-23\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 f01601f3-9e44-4aaf-9c7f-797059b5bdea 2020-11-19 00:48:01.422903 46266 2545 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 189.186.26.176 f01601f3-9e44-4aaf-9c7f-797059b5bdea 2020-11-19 00:48:01.463992 46267 4575 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1180\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3461\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1651\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1651 189.186.26.176 3bc9d04a-aa73-4fae-bb75-dcdaf733c4ab 2020-11-19 00:48:06.576613 46268 3461 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.26.176 9fae3336-e302-4813-aa32-9c0e8f2873fd 2020-11-19 00:48:07.961753 46269 2375 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 20 \N 189.186.91.88 d050f8e5-2825-41b1-a7bd-88f94fcd5820 2020-11-19 00:48:24.442405 46270 2375 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 21 \N 189.186.91.88 d1443060-3dd8-4bd2-8e40-e77aa423c29c 2020-11-19 00:48:27.067048 46271 735 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-11-18\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.91.88 01bf3fb1-5de3-41d7-a680-54874b81a601 2020-11-19 00:48:28.023654 46296 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SUQY-8yLz1sArsCdCFvt\n- yAVAf3CTQaqjBNVtifCj\n 4145 \N 200.68.150.206 ffbec618-62bc-472b-998b-c86dedba3f74 2020-11-19 03:06:04.648933 46455 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-19 18:23:16.254618000 Z\n- &1 2020-11-20 17:36:53.109574000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-21 17:03:02.275437945 Z\nsign_in_count:\n- 344\n- 345\n 691 \N 189.186.91.88 7495c1c6-a57a-469b-b258-b6dc2becf08b 2020-11-21 17:03:02.303673 46272 1545 Product \N \N 21 User \N create ---\nsku: BOL-1545\nname: 2BLCO20741\ndescription: BOLSO NUDE Y NEGRO MEDIANO\nprice_base: !ruby/object:BigDecimal 18:0.9495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1899E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170845266'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1545 fue creado. 189.186.91.88 7cd56506-9fcb-407e-9219-9dbe23861532 2020-11-19 00:50:08.663826 46273 2623 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1545\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 7cd56506-9fcb-407e-9219-9dbe23861532 2020-11-19 00:50:08.706414 46274 1546 Product \N \N 21 User \N create ---\nsku: BOL-1546\nname: 2BLCO20737\ndescription: CROSS BODY VERDE Y NEGRO\nprice_base: !ruby/object:BigDecimal 18:0.10495E4\nprice_sale: !ruby/object:BigDecimal 18:0.2099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170845082'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1546 fue creado. 189.186.91.88 802fb751-9587-4a70-945d-0bd1b331e861 2020-11-19 00:58:02.378539 46275 2624 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1546\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 802fb751-9587-4a70-945d-0bd1b331e861 2020-11-19 00:58:02.427031 46276 483 Purchase \N \N 21 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-140\namount: !ruby/object:BigDecimal 18:0.11393E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.11393E5\nobservations: ''\npurchase_date: 2020-11-18\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-140 por $ 11393.0 MXN creada. 189.186.91.88 a3780a5d-404a-475c-999d-f72d8b0c1b88 2020-11-19 01:12:27.079059 46277 2623 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.91.88 a3780a5d-404a-475c-999d-f72d8b0c1b88 2020-11-19 01:12:27.109223 46278 2624 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.91.88 a3780a5d-404a-475c-999d-f72d8b0c1b88 2020-11-19 01:12:27.14444 46279 2043 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.91.88 a3780a5d-404a-475c-999d-f72d8b0c1b88 2020-11-19 01:12:27.177736 46280 2375 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.11E2\n 22 \N 189.186.91.88 a3780a5d-404a-475c-999d-f72d8b0c1b88 2020-11-19 01:12:27.210112 46281 3462 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1179\namount: !ruby/object:BigDecimal 18:0.1998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.35E3\ntotal: !ruby/object:BigDecimal 18:0.1648E4\nstatus: 0\ndate_sale: 2020-11-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-891\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 b1cba1ed-df4a-428d-8f7f-f5e53e2a5d33 2020-11-19 01:15:46.519729 46282 2493 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.91.88 b1cba1ed-df4a-428d-8f7f-f5e53e2a5d33 2020-11-19 01:15:46.551709 46283 1240 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 12 \N 189.186.91.88 b1cba1ed-df4a-428d-8f7f-f5e53e2a5d33 2020-11-19 01:15:46.580358 46284 3462 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 1aaf5183-58a2-47bf-a65b-35a9342ff188 2020-11-19 01:15:56.832449 46285 4576 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1179\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1648E4\nmove_type: '1'\nsale_id: 3462\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-891\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.17E4\nchange: !ruby/object:BigDecimal 18:0.52E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-891 189.186.91.88 1aaf5183-58a2-47bf-a65b-35a9342ff188 2020-11-19 01:15:56.8544 46286 2506 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.17E2\n- !ruby/object:BigDecimal 18:0.16E2\n 10 \N 189.186.91.88 ce522721-31d9-43c8-8a26-c38c50e8f651 2020-11-19 01:29:02.241562 46287 2506 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.12E2\n 11 \N 189.186.91.88 47df7bfb-a010-444c-b988-4f622a530df9 2020-11-19 01:29:05.766791 46288 736 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-11-18\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.91.88 b54b7978-790f-4003-93db-fbd0aa9c3cb0 2020-11-19 01:29:25.853389 46289 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-18 01:24:53.692582000 Z\n- &1 2020-11-18 23:09:52.265528000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-19 01:37:51.076033340 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945654\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945654\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2070\n- 2071\n 4142 \N 189.186.91.88 f2bfeee4-714f-4837-885a-73e480e5aa72 2020-11-19 01:37:51.083672 46290 4 User \N \N 4 User \N update ---\nunique_session_id:\n- cwuM4zmizqAHkfJwoWG5\n- SUQY-8yLz1sArsCdCFvt\n 4143 \N 189.186.91.88 f2bfeee4-714f-4837-885a-73e480e5aa72 2020-11-19 01:37:51.105565 46291 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-16 21:29:49.107872000 Z\n- &1 2020-11-18 01:35:41.186717000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-19 01:56:36.543401801 Z\nsign_in_count:\n- 361\n- 362\n 725 \N 189.186.91.88 c3d3aa8f-d40c-4caf-85c7-7ed669870849 2020-11-19 01:56:36.55091 46292 18 User \N \N 18 User \N update ---\nunique_session_id:\n- jFya6N_DKvgiJzDxeCLx\n- pn7bxa1tFyiDid5is84s\n 726 \N 189.186.91.88 c3d3aa8f-d40c-4caf-85c7-7ed669870849 2020-11-19 01:56:36.568769 46293 1204 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1179\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.3996E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.4E4\ncash_fund: !ruby/object:BigDecimal 18:0.669E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4669E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 fe39eb47-93d6-4390-8ae6-505d060a0938 2020-11-19 02:13:12.345166 46297 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-17 20:59:23.212911000 Z\n- &1 2020-11-17 22:33:04.456954000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-19 16:24:59.832861716 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729868\n mask_addr: 4294967295\nsign_in_count:\n- 385\n- 386\n 772 \N 201.175.158.204 01069151-7cfe-4903-a0d7-92990b68f3e3 2020-11-19 16:24:59.863697 46298 1 User \N \N 1 User \N update ---\nunique_session_id:\n- J7UK9yeaj4AgLf6c6Lax\n- zPoRJ1z-yVqyfhPvY8aQ\n 773 \N 201.175.158.204 01069151-7cfe-4903-a0d7-92990b68f3e3 2020-11-19 16:24:59.890214 46299 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-17 17:41:23.332593000 Z\n- &1 2020-11-18 17:26:02.315272000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-19 17:27:41.453700808 Z\nsign_in_count:\n- 705\n- 706\n 1415 \N 189.186.26.176 c99e3016-3ea6-4317-8924-28e13701c4ad 2020-11-19 17:27:41.480333 46300 2 User \N \N 2 User \N update ---\nunique_session_id:\n- mFwVxR7Lm94FQDKkQFH2\n- 3AeXgr6S6A3bxgY5-ets\n 1416 \N 189.186.26.176 c99e3016-3ea6-4317-8924-28e13701c4ad 2020-11-19 17:27:41.503338 46301 1205 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1180\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3298E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.22E4\ncash_fund: !ruby/object:BigDecimal 18:0.1045E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3245E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.26.176 6dc57a05-e734-4ac9-9a85-3bcc163f6cad 2020-11-19 17:40:17.256961 46302 1180 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.26.176 6dc57a05-e734-4ac9-9a85-3bcc163f6cad 2020-11-19 17:40:17.273273 46303 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-17 17:36:46.393212000 Z\n- &1 2020-11-18 17:05:31.745007000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-19 18:23:16.254618742 Z\nsign_in_count:\n- 342\n- 343\n 687 \N 189.186.91.88 d8b8a81a-62e5-4846-b5ff-409101aeacd6 2020-11-19 18:23:16.263055 46304 21 User \N \N 21 User \N update ---\nunique_session_id:\n- zXJTpqF-Fq689xEEcYs7\n- HJAxs7-smrzxiL7bqNXM\n 688 \N 189.186.91.88 d8b8a81a-62e5-4846-b5ff-409101aeacd6 2020-11-19 18:23:16.291869 46305 1181 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.669E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 669.0 189.186.91.88 1cb13c8c-ac2e-482c-acea-4863d35b2086 2020-11-19 18:26:28.726381 46306 1182 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1045E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1045.0 189.186.26.176 46878061-4229-4381-8380-daa592c37cc8 2020-11-19 18:29:06.766052 46307 3463 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1182\namount: !ruby/object:BigDecimal 18:0.969E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.969E3\nstatus: 0\ndate_sale: 2020-11-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1652\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 59d9df59-d768-4614-8f64-ebf032ab41a9 2020-11-19 18:33:31.978806 46308 1046 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.26.176 59d9df59-d768-4614-8f64-ebf032ab41a9 2020-11-19 18:33:32.014043 46309 3463 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 fd88c686-7e15-4e1f-8a05-c6fc1996a129 2020-11-19 18:33:57.22696 46310 4577 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1182\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.969E3\nmove_type: '1'\nsale_id: 3463\ncardnumber: 8674\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1652\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1652 189.186.26.176 fd88c686-7e15-4e1f-8a05-c6fc1996a129 2020-11-19 18:33:57.253961 46311 3464 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1182\namount: !ruby/object:BigDecimal 18:0.538E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.538E3\nstatus: 0\ndate_sale: 2020-11-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1653\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 02a37e20-ffc7-434f-99b2-f6f81a33aab6 2020-11-19 18:39:17.28364 46312 2383 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.26.176 02a37e20-ffc7-434f-99b2-f6f81a33aab6 2020-11-19 18:39:17.312882 46313 2068 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.26.176 02a37e20-ffc7-434f-99b2-f6f81a33aab6 2020-11-19 18:39:17.339107 46314 3464 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 bd6eb141-a2ab-4836-bf37-5e35156823aa 2020-11-19 18:42:14.646673 46315 4578 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1182\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.538E3\nmove_type: '1'\nsale_id: 3464\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1653\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.538E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1653 189.186.26.176 bd6eb141-a2ab-4836-bf37-5e35156823aa 2020-11-19 18:42:14.669373 46316 445 Customer \N \N 21 User \N create ---\nnick_name: MIRNA FELIX\nphone: "(667) 326-4328"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MIRNA FELIX fue registrado. 189.186.91.88 672fa807-323f-420f-9dcc-8a1f2d31b3b1 2020-11-19 19:29:23.341716 46317 3465 Sale \N \N 21 User \N create ---\ncustomer_id: 445\nuser_id: 21\nopen_cash_register_id: 1181\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-11-19\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-892\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 05ad9e57-b9c0-4db2-b4c0-353ec1be734d 2020-11-19 19:30:17.352428 46318 2043 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.91.88 05ad9e57-b9c0-4db2-b4c0-353ec1be734d 2020-11-19 19:30:17.38602 46319 3465 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-892 cancelada. 189.186.91.88 05b5ba79-6a28-44fb-a656-9a6825f60994 2020-11-19 19:31:54.147481 46320 2043 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.91.88 05b5ba79-6a28-44fb-a656-9a6825f60994 2020-11-19 19:31:54.171191 46365 2612 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.26.176 b933a21f-fd67-4b27-bd09-3a2d6003564a 2020-11-19 23:45:27.830961 46321 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-19 01:37:51.076033000 Z\n- &1 2020-11-19 03:06:04.556499000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-19 20:07:06.398248845 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938254\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535808\n mask_addr: 4294967295\nsign_in_count:\n- 2072\n- 2073\n 4146 \N 177.228.103.0 11317fe5-c1c6-4dfb-bd52-0ee18d22dec4 2020-11-19 20:07:06.409055 46322 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yAVAf3CTQaqjBNVtifCj\n- Frqgg5xAAdySfPsQmw6-\n 4147 \N 177.228.103.0 11317fe5-c1c6-4dfb-bd52-0ee18d22dec4 2020-11-19 20:07:06.431257 46323 3466 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1181\namount: !ruby/object:BigDecimal 18:0.3265E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3265E4\nstatus: 0\ndate_sale: 2020-11-19\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-893\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 af12400d-ac9e-4152-a136-1e62702bbb41 2020-11-19 20:20:46.545047 46324 2619 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.91.88 af12400d-ac9e-4152-a136-1e62702bbb41 2020-11-19 20:20:46.599416 46325 2591 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.91.88 af12400d-ac9e-4152-a136-1e62702bbb41 2020-11-19 20:20:46.644546 46326 2280 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.91.88 af12400d-ac9e-4152-a136-1e62702bbb41 2020-11-19 20:20:46.684559 46327 2584 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 189.186.91.88 af12400d-ac9e-4152-a136-1e62702bbb41 2020-11-19 20:20:46.71175 46328 3466 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 7eca8877-8b7e-43d3-a93e-cab5219601da 2020-11-19 20:21:45.68262 46329 4579 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1181\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3265E4\nmove_type: '1'\nsale_id: 3466\ncardnumber: 5215\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-893\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-893 189.186.91.88 7eca8877-8b7e-43d3-a93e-cab5219601da 2020-11-19 20:21:45.714086 46330 3467 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1181\namount: !ruby/object:BigDecimal 18:0.249E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.249E3\nstatus: 0\ndate_sale: 2020-11-19\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-894\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 d48b9b47-5c4f-476e-8665-380a2e863ba9 2020-11-19 20:23:16.160799 46331 2453 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.91.88 d48b9b47-5c4f-476e-8665-380a2e863ba9 2020-11-19 20:23:16.18693 46332 3467 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 ecde6d89-4a2f-4225-a9c0-104d761e78c2 2020-11-19 20:23:46.406476 46333 4580 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1181\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.249E3\nmove_type: '1'\nsale_id: 3467\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-894\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.62E3\nchange: !ruby/object:BigDecimal 18:0.371E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-894 189.186.91.88 ecde6d89-4a2f-4225-a9c0-104d761e78c2 2020-11-19 20:23:46.43022 46334 3468 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1182\namount: !ruby/object:BigDecimal 18:0.689E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.689E3\nstatus: 0\ndate_sale: 2020-11-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1654\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 8d389800-c3a8-433c-ab4f-b77466c315aa 2020-11-19 20:40:48.098039 46335 2528 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.26.176 8d389800-c3a8-433c-ab4f-b77466c315aa 2020-11-19 20:40:48.127022 46336 3468 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 25b064f1-9888-4244-99f6-450adff4f572 2020-11-19 20:41:16.958424 46337 4581 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1182\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.689E3\nmove_type: '1'\nsale_id: 3468\ncardnumber: 3749\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1654\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1654 189.186.26.176 25b064f1-9888-4244-99f6-450adff4f572 2020-11-19 20:41:16.983065 46338 3469 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1181\namount: !ruby/object:BigDecimal 18:0.3098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3098E4\nstatus: 0\ndate_sale: 2020-11-19\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-895\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 4acb92d4-2f55-4dcb-afc2-436725fb771a 2020-11-19 21:17:51.264719 46339 1832 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 19 \N 189.186.91.88 4acb92d4-2f55-4dcb-afc2-436725fb771a 2020-11-19 21:17:51.296355 46340 2017 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 19 \N 189.186.91.88 4acb92d4-2f55-4dcb-afc2-436725fb771a 2020-11-19 21:17:51.336084 46341 3469 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 941a62fb-4ddc-4945-9bc0-a21e086d7718 2020-11-19 21:18:28.490511 46342 4582 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1181\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3098E4\nmove_type: '1'\nsale_id: 3469\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-895\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E4\nchange: !ruby/object:BigDecimal 18:0.402E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-895 189.186.91.88 941a62fb-4ddc-4945-9bc0-a21e086d7718 2020-11-19 21:18:28.514004 46366 735 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.32E2\n- !ruby/object:BigDecimal 18:0.3E2\n 9 \N 189.186.26.176 b933a21f-fd67-4b27-bd09-3a2d6003564a 2020-11-19 23:45:27.873205 46367 3474 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 5211a01d-0b75-4a40-8a45-ecf9f6d2d2f9 2020-11-19 23:45:58.932177 46343 3470 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1181\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-11-19\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-896\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 22d9ccd2-3ccd-4045-a6f1-91fe7670f4ca 2020-11-19 21:23:15.283026 46344 2365 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.91.88 22d9ccd2-3ccd-4045-a6f1-91fe7670f4ca 2020-11-19 21:23:15.323745 46345 3470 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 b958a2ce-d21f-4414-b24a-20e44264ade3 2020-11-19 21:26:03.735572 46346 4583 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1181\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3470\ncardnumber: 5555\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-896\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-896 189.186.91.88 b958a2ce-d21f-4414-b24a-20e44264ade3 2020-11-19 21:26:03.755852 46347 446 Customer \N \N 2 User \N create ---\nnick_name: ESPERANZA RUSSELL\nphone: "(672) 131-977_"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ESPERANZA RUSSELL fue registrado. 189.186.26.176 75491399-5f39-4ea6-a0d1-425238bdff57 2020-11-19 21:31:51.250226 46348 3471 Sale \N \N 2 User \N create ---\ncustomer_id: 446\nuser_id: 2\nopen_cash_register_id: 1182\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-11-19\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1655\nexpiration_date: 2020-12-24\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 2fa45dd1-2211-485f-ba2e-2c82957205bb 2020-11-19 21:32:06.372797 46349 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 15 \N 189.186.26.176 2fa45dd1-2211-485f-ba2e-2c82957205bb 2020-11-19 21:32:06.407249 46350 4584 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1182\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 3471\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1655\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1655 189.186.26.176 56e2edd1-4bd6-452a-8052-05f9cb1bf0c1 2020-11-19 21:32:53.999561 46351 3471 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.26.176 fb305d27-debf-441a-8682-44086f38862b 2020-11-19 21:32:57.5246 46352 3472 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1182\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1656\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 c1975796-fedf-46ed-a3fb-3613e6ac2c55 2020-11-19 21:37:15.042951 46353 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 15 \N 189.186.26.176 c1975796-fedf-46ed-a3fb-3613e6ac2c55 2020-11-19 21:37:15.066629 46354 3472 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 faaeda01-c499-4495-8f93-4f1d131d2e33 2020-11-19 21:38:00.578079 46355 4585 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1182\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3472\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1656\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1799E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1656 189.186.26.176 faaeda01-c499-4495-8f93-4f1d131d2e33 2020-11-19 21:38:00.614613 46356 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-17 22:33:04.456954000 Z\n- &1 2020-11-19 16:24:59.832861000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-19 21:41:14.942011639 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729868\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729868\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\nsign_in_count:\n- 386\n- 387\n 774 \N 189.186.26.176 b74f9ec8-df4c-4372-a9d6-ec598d267836 2020-11-19 21:41:14.951146 46357 1 User \N \N 1 User \N update ---\nunique_session_id:\n- zPoRJ1z-yVqyfhPvY8aQ\n- xgcy4yWnhGs1F2m8NkAW\n 775 \N 189.186.26.176 b74f9ec8-df4c-4372-a9d6-ec598d267836 2020-11-19 21:41:14.966629 46358 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-19 03:06:04.556499000 Z\n- &1 2020-11-19 20:07:06.398248000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-19 22:28:00.095277828 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938254\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535808\n mask_addr: 4294967295\nsign_in_count:\n- 2073\n- 2074\n 4148 \N 177.228.103.0 6fac4869-93a6-4f39-94ba-3906167cf9e3 2020-11-19 22:28:00.102545 46359 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Frqgg5xAAdySfPsQmw6-\n- xVig8S-n52nCFzzkLsTs\n 4149 \N 177.228.103.0 6fac4869-93a6-4f39-94ba-3906167cf9e3 2020-11-19 22:28:00.121702 46360 3473 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1182\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.849E3\nstatus: 0\ndate_sale: 2020-11-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1657\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 3d06876c-1665-4558-8856-5434e2a2b66f 2020-11-19 23:42:23.201604 46361 2612 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.26.176 3d06876c-1665-4558-8856-5434e2a2b66f 2020-11-19 23:42:23.248543 46362 3473 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1657 cancelada. 189.186.26.176 7a6d37c8-d4b5-4b11-a778-5ad70b610520 2020-11-19 23:43:00.148705 46363 2612 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.26.176 7a6d37c8-d4b5-4b11-a778-5ad70b610520 2020-11-19 23:43:00.173771 46364 3474 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1182\namount: !ruby/object:BigDecimal 18:0.146624E4\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.1449E4\nstatus: 0\ndate_sale: 2020-11-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1658\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 b933a21f-fd67-4b27-bd09-3a2d6003564a 2020-11-19 23:45:27.800999 46368 4586 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1182\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1449E4\nmove_type: '1'\nsale_id: 3474\ncardnumber: 1309\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1658\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1658 189.186.26.176 5211a01d-0b75-4a40-8a45-ecf9f6d2d2f9 2020-11-19 23:45:58.955766 46369 735 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-19\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.26.176 11b34888-2074-4b11-9971-305f00dbf3ad 2020-11-19 23:48:59.861334 46370 2369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 15 \N 189.186.26.176 11b34888-2074-4b11-9971-305f00dbf3ad 2020-11-19 23:48:59.878844 46371 3475 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1182\namount: !ruby/object:BigDecimal 18:0.2298E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2298E4\nstatus: 0\ndate_sale: 2020-11-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1659\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.26.176 2429f3f3-f397-44ee-9cde-bba57322d8bf 2020-11-19 23:53:21.325607 46372 2563 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.26.176 2429f3f3-f397-44ee-9cde-bba57322d8bf 2020-11-19 23:53:21.357073 46373 2369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 16 \N 189.186.26.176 2429f3f3-f397-44ee-9cde-bba57322d8bf 2020-11-19 23:53:21.386566 46374 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-19 16:24:59.832861000 Z\n- &1 2020-11-19 21:41:14.942011000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-20 00:14:12.132319982 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729868\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\nsign_in_count:\n- 387\n- 388\n 776 \N 189.186.26.176 53ced49c-8c5a-4f6e-844e-3aa13754584a 2020-11-20 00:14:12.140174 46375 1 User \N \N 1 User \N update ---\nunique_session_id:\n- xgcy4yWnhGs1F2m8NkAW\n- u8AXTEzwwNDzFNbQsjhq\n 777 \N 189.186.26.176 53ced49c-8c5a-4f6e-844e-3aa13754584a 2020-11-20 00:14:12.154795 46376 3475 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.26.176 6fde3f84-d0c6-438e-8bdf-1ca3db492c53 2020-11-20 00:22:48.472466 46377 4587 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1182\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.2298E4\nmove_type: '1'\nsale_id: 3475\ncardnumber: 7740\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1659\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1659 189.186.26.176 6fde3f84-d0c6-438e-8bdf-1ca3db492c53 2020-11-20 00:22:48.493493 46378 4588 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1182\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 3365\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1603 189.186.26.176 a3d51477-3191-4b37-b388-8c31851c6ea4 2020-11-20 00:25:20.527425 46379 3365 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.26.176 5cbaf0b0-3170-403b-99c5-ec5cb5b0bbe9 2020-11-20 00:25:24.58682 46380 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-19 20:07:06.398248000 Z\n- &1 2020-11-19 22:28:00.095277000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-20 00:50:51.726439630 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945803\n mask_addr: 4294967295\nsign_in_count:\n- 2074\n- 2075\n 4150 \N 200.68.180.75 ecf60f26-e5af-4979-9675-89c3272604e1 2020-11-20 00:50:51.736931 46381 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xVig8S-n52nCFzzkLsTs\n- yJ9Q_nCEbNByXYYk_X6S\n 4151 \N 200.68.180.75 ecf60f26-e5af-4979-9675-89c3272604e1 2020-11-20 00:50:51.765109 46382 3476 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1182\namount: !ruby/object:BigDecimal 18:0.2998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2998E4\nstatus: 0\ndate_sale: 2020-11-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1660\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.56.129 1e107f80-50a1-4a6a-8f56-6bbc09c66e0f 2020-11-20 02:07:16.885749 46383 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 16 \N 187.149.56.129 1e107f80-50a1-4a6a-8f56-6bbc09c66e0f 2020-11-20 02:07:16.912943 46384 2369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 17 \N 187.149.56.129 1e107f80-50a1-4a6a-8f56-6bbc09c66e0f 2020-11-20 02:07:16.936638 46385 3476 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.56.129 935299ee-1664-41d9-a1c6-1e760b23bf87 2020-11-20 02:07:21.366808 46386 4589 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1182\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2998E4\nmove_type: '1'\nsale_id: 3476\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1660\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2998E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1660 187.149.56.129 935299ee-1664-41d9-a1c6-1e760b23bf87 2020-11-20 02:07:21.387522 46387 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-19 21:41:14.942011000 Z\n- &1 2020-11-20 00:14:12.132319000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-20 02:13:52.696051337 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118721\n mask_addr: 4294967295\nsign_in_count:\n- 388\n- 389\n 778 \N 187.149.56.129 5940ff07-ebc3-45e3-b74e-c7e1759fc565 2020-11-20 02:13:52.703024 46388 1 User \N \N 1 User \N update ---\nunique_session_id:\n- u8AXTEzwwNDzFNbQsjhq\n- nT6wC1e9k9Y-SjcP_25q\n 779 \N 187.149.56.129 5940ff07-ebc3-45e3-b74e-c7e1759fc565 2020-11-20 02:13:52.718623 46389 1206 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1181\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.8111E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.4E4\ncash_fund: !ruby/object:BigDecimal 18:0.885E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4885E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 268ecc6c-5e2b-46f7-b18d-586a0f4c84e1 2020-11-20 02:16:44.605529 46390 1181 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 268ecc6c-5e2b-46f7-b18d-586a0f4c84e1 2020-11-20 02:16:44.622146 46391 1207 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1182\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.13238E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.784E4\ncash_fund: !ruby/object:BigDecimal 18:0.1038E4\nphysical_cash: !ruby/object:BigDecimal 18:0.8878E4\nobservations: "ENTREGUE A SAM $4500 \\r\\nVENDI UNOS ARETES DE $340 CON TERMINAL \\r\\nY\n RETIRO FINAL $3000 \\r\\nTOTAL$7840"\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.56.129 5aac65b8-55ba-4458-bd63-d0829038c813 2020-11-20 02:21:03.885636 46392 1182 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.56.129 5aac65b8-55ba-4458-bd63-d0829038c813 2020-11-20 02:21:03.89836 46393 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-18 17:26:02.315272000 Z\n- &1 2020-11-19 17:27:41.453700000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-20 17:36:05.627281811 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083999\n mask_addr: 4294967295\nsign_in_count:\n- 706\n- 707\n 1417 \N 189.186.1.223 7e4c7f26-a2c3-470b-9fae-7961adf21360 2020-11-20 17:36:05.662373 46394 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 3AeXgr6S6A3bxgY5-ets\n- ihqbS52RvrcKjnZQAb7p\n 1418 \N 189.186.1.223 7e4c7f26-a2c3-470b-9fae-7961adf21360 2020-11-20 17:36:05.685043 46395 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-18 17:05:31.745007000 Z\n- &1 2020-11-19 18:23:16.254618000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-20 17:36:53.109574456 Z\nsign_in_count:\n- 343\n- 344\n 689 \N 189.186.91.88 db137665-de3c-4947-b095-1dd0e607ab57 2020-11-20 17:36:53.1148 46396 21 User \N \N 21 User \N update ---\nunique_session_id:\n- HJAxs7-smrzxiL7bqNXM\n- r23NGYaZkWXeC3HT-apf\n 690 \N 189.186.91.88 db137665-de3c-4947-b095-1dd0e607ab57 2020-11-20 17:36:53.130458 46397 1183 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.885E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 885.0 189.186.91.88 a513ecf5-a4b0-4ea3-94b5-01e26a6a117a 2020-11-20 17:37:09.835484 46398 1184 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1038E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1038.0 189.186.1.223 f2f13c85-4c72-4e1e-bfa1-e3053d85cb68 2020-11-20 17:38:04.833841 46399 3477 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1183\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-20\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-897\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 f173e7f5-645a-4e93-b57f-f03dfe569ac8 2020-11-20 18:06:54.973236 46400 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.21E2\n- !ruby/object:BigDecimal 18:0.2E2\n 34 \N 189.186.91.88 f173e7f5-645a-4e93-b57f-f03dfe569ac8 2020-11-20 18:06:55.002542 46401 3477 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 6a55c242-f6a3-4447-b0a1-494833c6131c 2020-11-20 18:07:26.792112 46402 4590 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1183\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 3477\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-897\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.18E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-897 189.186.91.88 6a55c242-f6a3-4447-b0a1-494833c6131c 2020-11-20 18:07:26.826793 46403 3478 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1184\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1661\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.223 49b1ed84-e3df-4509-ba55-1ee2b120c580 2020-11-20 18:14:33.632004 46404 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 16 \N 189.186.1.223 49b1ed84-e3df-4509-ba55-1ee2b120c580 2020-11-20 18:14:33.658094 46405 3478 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.223 4645241d-d130-457b-9354-1ba2f0f624a8 2020-11-20 18:15:50.214788 46406 4591 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1184\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3478\ncardnumber: 3054\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1661\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1661 189.186.1.223 4645241d-d130-457b-9354-1ba2f0f624a8 2020-11-20 18:15:50.238074 46407 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-20 00:14:12.132319000 Z\n- &1 2020-11-20 02:13:52.696051000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-20 18:57:17.499921867 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118721\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118721\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083999\n mask_addr: 4294967295\nsign_in_count:\n- 389\n- 390\n 780 \N 189.186.1.223 588e5232-a633-4096-a6ce-d16375fe95c7 2020-11-20 18:57:17.539119 46408 1 User \N \N 1 User \N update ---\nunique_session_id:\n- nT6wC1e9k9Y-SjcP_25q\n- shyaBoDBow6A3D3yByaC\n 781 \N 189.186.1.223 588e5232-a633-4096-a6ce-d16375fe95c7 2020-11-20 18:57:17.575462 46409 3479 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1183\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-20\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-898\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 cb25a56d-db0c-4fa0-bb0e-5f556a7c89fc 2020-11-20 19:13:11.836396 46410 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E2\n- !ruby/object:BigDecimal 18:0.19E2\n 35 \N 189.186.91.88 cb25a56d-db0c-4fa0-bb0e-5f556a7c89fc 2020-11-20 19:13:11.871215 46411 3479 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 ad49934e-bce8-4eef-b284-f88f7467dd6c 2020-11-20 19:13:47.833083 46412 4592 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1183\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3479\ncardnumber: 5511\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-898\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-898 189.186.91.88 ad49934e-bce8-4eef-b284-f88f7467dd6c 2020-11-20 19:13:47.860834 46413 447 Customer \N \N 21 User \N create ---\nnick_name: ALONDRA FELIX\nphone: "(667) 214-1672"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ALONDRA FELIX fue registrado. 189.186.91.88 fefeb23d-3a51-4cd6-bc1c-e36cad1a84ea 2020-11-20 21:49:12.967646 46414 3480 Sale \N \N 21 User \N create ---\ncustomer_id: 447\nuser_id: 21\nopen_cash_register_id: 1183\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-20\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-899\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 68ca54c4-5d31-4f20-9f4a-59f22866e960 2020-11-20 21:49:23.398144 46415 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.19E2\n- !ruby/object:BigDecimal 18:0.18E2\n 36 \N 189.186.91.88 68ca54c4-5d31-4f20-9f4a-59f22866e960 2020-11-20 21:49:23.422731 46416 3480 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 45030aaf-0d5a-45e7-85aa-1f0561f63cbc 2020-11-20 21:50:23.227798 46417 4593 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1183\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 3480\ncardnumber: 5246\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-899\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-899 189.186.91.88 45030aaf-0d5a-45e7-85aa-1f0561f63cbc 2020-11-20 21:50:23.258507 46418 4594 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1183\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 3480\ncardnumber: 5526\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-899\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-899 189.186.91.88 b2587218-3dad-4324-a7e7-5ae632ccdd2e 2020-11-20 21:51:07.668477 46419 4594 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1183\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 3480\ncardnumber: 5526\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-899\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.91.88 ee0a9f5e-9be3-4512-9aff-612c1d06505b 2020-11-20 21:51:15.477193 46420 3480 Sale \N \N 21 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-899 cancelada. 189.186.91.88 3805a398-06ad-4908-b325-2c883eb4593a 2020-11-20 21:52:10.148156 46421 4593 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1183\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3480\ncardnumber: 5246\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-899\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.91.88 3805a398-06ad-4908-b325-2c883eb4593a 2020-11-20 21:52:10.174725 46422 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.18E2\n- !ruby/object:BigDecimal 18:0.19E2\n 37 \N 189.186.91.88 3805a398-06ad-4908-b325-2c883eb4593a 2020-11-20 21:52:10.201195 46423 3481 Sale \N \N 21 User \N create ---\ncustomer_id: 447\nuser_id: 21\nopen_cash_register_id: 1183\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-20\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-900\nexpiration_date: 2020-12-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 088cd752-9580-4ab6-a4c6-5e5b7192bb41 2020-11-20 21:52:57.421829 46424 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.19E2\n- !ruby/object:BigDecimal 18:0.18E2\n 38 \N 189.186.91.88 088cd752-9580-4ab6-a4c6-5e5b7192bb41 2020-11-20 21:52:57.447582 46425 4595 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1183\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.18E3\nmove_type: '1'\nsale_id: 3481\ncardnumber: 5555\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-900\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-900 189.186.91.88 103178ee-587d-437b-ae92-cf745c748d56 2020-11-20 21:53:20.378231 46426 4596 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1183\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3481\ncardnumber: 5225\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-900\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-900 189.186.91.88 dcba63c4-d418-4782-b64c-89d683386f94 2020-11-20 21:53:43.970796 46427 4595 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1183\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.18E3\nmove_type: '1'\nsale_id: 3481\ncardnumber: 5555\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-900\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.91.88 2c3652e5-bdd0-421c-a8a5-72f5c271c568 2020-11-20 21:53:46.060981 46428 3481 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 4d7579cb-0cfd-4768-845a-b401da1a8a5b 2020-11-20 21:53:51.76285 46429 4597 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1183\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 3202\ncardnumber: 5524\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-753 189.186.91.88 35c7829a-ffd3-4477-9f59-0e49f23604ae 2020-11-21 00:19:31.291394 46430 3202 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 f75054db-f21a-4d6c-a320-b3f981df23be 2020-11-21 00:19:33.606938 46431 3482 Sale \N \N 2 User \N create ---\ncustomer_id: 21\nuser_id: 2\nopen_cash_register_id: 1184\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-20\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1662\nexpiration_date: 2020-12-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.223 af6f92d1-9001-4c5c-a1bf-af014cc4b276 2020-11-21 00:26:59.610986 46432 2369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 18 \N 189.186.1.223 af6f92d1-9001-4c5c-a1bf-af014cc4b276 2020-11-21 00:26:59.646721 46486 1546 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1546'\n is_parent: false\n sku: BOL-1546\n name: 2BLCO20737\n description: CROSS BODY VERDE Y NEGRO\n price_base: '1049.5'\n price_sale: '2099.0'\n img_product: 779EEA29-A6E5-4EC8-AFA8-D37FEE255241.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170845082'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-11-19 00:58:02.358414'\n updated_at: &12 2020-11-21 19:41:14.168824720 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1546'\n sku: BOL-1546\n name: 2BLCO20737\n description: CROSS BODY VERDE Y NEGRO\n price_base: '1049.50'\n price_sale: '2099.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-11-19 00:58:02.358414'\n updated_at: '2020-11-19 00:58:02.358414'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170845082'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1546'\n type: *3\n value: 1546\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1546\n type: *7\n value: BOL-1546\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 2BLCO20737\n type: *8\n value: 2BLCO20737\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CROSS BODY VERDE Y NEGRO\n type: *6\n value: CROSS BODY VERDE Y NEGRO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '1049.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.10495E4\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '2099.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2099E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 779EEA29-A6E5-4EC8-AFA8-D37FEE255241.jpeg\n type: *2\n value: 779EEA29-A6E5-4EC8-AFA8-D37FEE255241.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170845082'\n type: *2\n value: '7509170845082'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-11-19 00:58:02.358414'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 779EEA29-A6E5-4EC8-AFA8-D37FEE255241.jpeg\n 2 El producto BOL-1546 fue modificado. 189.186.1.223 22935d23-59ed-47e8-9f67-2aca563981e6 2020-11-21 19:41:14.210974 46433 4598 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1184\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3482\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1662\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1662 189.186.1.223 020e5986-610f-4956-8254-690f4cc33835 2020-11-21 00:27:28.177292 46434 3482 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.1.223 ab39d5fa-f764-4a09-b871-a2b265109823 2020-11-21 00:27:33.793254 46435 3483 Sale \N \N 2 User \N create ---\ncustomer_id: 21\nuser_id: 2\nopen_cash_register_id: 1184\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-20\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1663\nexpiration_date: 2020-12-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.223 832051c1-e241-423b-b3dc-b0987b35969c 2020-11-21 00:31:19.458972 46436 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 17 \N 189.186.1.223 832051c1-e241-423b-b3dc-b0987b35969c 2020-11-21 00:31:19.48621 46437 4599 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1184\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3483\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1663\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1663 189.186.1.223 f15b6591-5e60-411f-ba3f-893bded8a561 2020-11-21 00:31:53.453534 46438 3483 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.1.223 e2186a37-a5d1-4941-8161-10fa92642214 2020-11-21 00:31:55.036683 46439 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-20 02:13:52.696051000 Z\n- &1 2020-11-20 18:57:17.499921000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-21 00:49:19.102411383 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118721\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083999\n mask_addr: 4294967295\nsign_in_count:\n- 390\n- 391\n 782 \N 189.186.1.223 ec63a112-931f-44ad-95a4-dafae67370f2 2020-11-21 00:49:19.109156 46440 1 User \N \N 1 User \N update ---\nunique_session_id:\n- shyaBoDBow6A3D3yByaC\n- _b_N4KzGp62eDnjLKCNn\n 783 \N 189.186.1.223 ec63a112-931f-44ad-95a4-dafae67370f2 2020-11-21 00:49:19.125324 46441 355 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1184\nquantity: !ruby/object:BigDecimal 18:0.18E3\nstatus: 1\nobservations: mariposa Danna♥\nexpense_date: 2020-11-20\nexpense_code: PV1-E-248\n 1 Egreso por 180.0 registrado 189.186.1.223 49ca7691-5145-42ef-bd8d-7268eb1c051c 2020-11-21 01:43:03.116514 46442 4600 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1184\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.18E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 355\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.1.223 49ca7691-5145-42ef-bd8d-7268eb1c051c 2020-11-21 01:43:03.137108 46443 1208 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1184\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2799E4\namount_out: !ruby/object:BigDecimal 18:0.18E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.858E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1858E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.1.223 a6a6a3ab-f6a4-4742-904e-c7c96050ddea 2020-11-21 01:45:00.365504 46444 1184 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.1.223 a6a6a3ab-f6a4-4742-904e-c7c96050ddea 2020-11-21 01:45:00.379867 46445 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-19 22:28:00.095277000 Z\n- &1 2020-11-20 00:50:51.726439000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-21 01:50:53.565037192 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945803\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945803\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535808\n mask_addr: 4294967295\nsign_in_count:\n- 2075\n- 2076\n 4152 \N 177.228.103.0 da055c9c-666c-45d1-bc4f-44fc40d3486d 2020-11-21 01:50:53.573051 46446 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yJ9Q_nCEbNByXYYk_X6S\n- 1-nnjvpEA-Ub_Hbxaueo\n 4153 \N 177.228.103.0 da055c9c-666c-45d1-bc4f-44fc40d3486d 2020-11-21 01:50:53.595139 46447 3484 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1183\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-20\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-901\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 17ed8f16-df38-45d2-a8ae-35c2f5389b33 2020-11-21 02:03:20.796747 46448 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.18E2\n- !ruby/object:BigDecimal 18:0.17E2\n 39 \N 189.186.91.88 17ed8f16-df38-45d2-a8ae-35c2f5389b33 2020-11-21 02:03:20.823909 46449 3484 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 f5d258ce-6bf9-4ac0-9579-a60c1d1c78df 2020-11-21 02:03:36.479008 46450 4601 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1183\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 3484\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-901\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-901 189.186.91.88 f5d258ce-6bf9-4ac0-9579-a60c1d1c78df 2020-11-21 02:03:36.50141 46451 1209 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1183\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.6496E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.4E4\ncash_fund: !ruby/object:BigDecimal 18:0.991E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4991E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 17d3b5e4-1778-4bbc-b087-cc78aadb9379 2020-11-21 02:12:24.545441 46452 1183 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 17d3b5e4-1778-4bbc-b087-cc78aadb9379 2020-11-21 02:12:24.558878 46453 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-20 00:50:51.726439000 Z\n- &1 2020-11-21 01:50:53.565037000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-21 06:45:12.941758140 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945803\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535808\n mask_addr: 4294967295\nsign_in_count:\n- 2076\n- 2077\n 4154 \N 177.228.103.0 b7c6c3d9-10c6-4767-a0e8-9d20bc3d0744 2020-11-21 06:45:12.949553 46457 1185 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.991E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 991.0 189.186.91.88 a3aa2539-7baa-4795-b3bb-92cb7d4cf62d 2020-11-21 17:24:36.354758 46458 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-19 17:27:41.453700000 Z\n- &1 2020-11-20 17:36:05.627281000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-21 17:36:01.376334172 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090352\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083999\n mask_addr: 4294967295\nsign_in_count:\n- 707\n- 708\n 1419 \N 189.186.1.223 e71a8c0d-ba94-4dc4-b191-3521534aa731 2020-11-21 17:36:01.38464 46459 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ihqbS52RvrcKjnZQAb7p\n- "-KwBasY9dLychxyGyyzW"\n 1420 \N 189.186.1.223 e71a8c0d-ba94-4dc4-b191-3521534aa731 2020-11-21 17:36:01.402405 46460 1186 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.858E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 858.0 189.186.1.223 7c5fc035-8770-47fe-a07a-f4cd482b4f22 2020-11-21 17:36:17.093715 46461 4602 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1186\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1798E4\nmove_type: '1'\nsale_id: 3450\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1798E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1647 189.186.1.223 9000d44e-373e-4977-8118-9286b1c63b52 2020-11-21 17:48:53.64593 46462 3450 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.1.223 33873629-24fa-414c-8617-5c6ffe487d4a 2020-11-21 17:48:56.188155 46463 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-21 01:50:53.565037000 Z\n- &1 2020-11-21 06:45:12.941758000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-21 18:06:13.038672363 Z\nsign_in_count:\n- 2077\n- 2078\n 4156 \N 177.228.103.0 ca3534ce-29f0-4ad5-a504-c436a349633e 2020-11-21 18:06:13.045185 46464 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5Vb2_omTgzfNcTm2w2zX\n- XL6BeMFc7oxVXs1cG68B\n 4157 \N 177.228.103.0 ca3534ce-29f0-4ad5-a504-c436a349633e 2020-11-21 18:06:13.063217 46465 3485 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1185\namount: !ruby/object:BigDecimal 18:0.3048E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3048E4\nstatus: 0\ndate_sale: 2020-11-21\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-902\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 1a71c725-e862-4bfd-aa3b-bbfacba646b5 2020-11-21 18:46:49.565657 46466 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.17E2\n- !ruby/object:BigDecimal 18:0.16E2\n 40 \N 189.186.91.88 1a71c725-e862-4bfd-aa3b-bbfacba646b5 2020-11-21 18:46:49.596089 46467 2581 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.91.88 1a71c725-e862-4bfd-aa3b-bbfacba646b5 2020-11-21 18:46:49.63189 46468 3485 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 3ad1c596-ead8-4971-8d8a-5390bff1aff5 2020-11-21 18:47:38.567039 46469 4603 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1185\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3048E4\nmove_type: '1'\nsale_id: 3485\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-902\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.305E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-902 189.186.91.88 3ad1c596-ead8-4971-8d8a-5390bff1aff5 2020-11-21 18:47:38.589341 46470 484 Purchase \N \N 2 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-205\namount: !ruby/object:BigDecimal 18:0.4197E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4197E4\nobservations: ''\npurchase_date: 2020-11-21\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-205 por $ 4197.0 MXN creada. 189.186.1.223 7534973e-688a-44c6-b4ad-ba43e53f0cb4 2020-11-21 19:07:56.615316 46471 2369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 19 \N 189.186.1.223 7534973e-688a-44c6-b4ad-ba43e53f0cb4 2020-11-21 19:07:56.651323 46472 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-20 18:57:17.499921000 Z\n- &1 2020-11-21 00:49:19.102411000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-21 19:17:57.078671024 Z\nsign_in_count:\n- 391\n- 392\n 784 \N 189.186.1.223 de6b04d4-5c10-4202-a793-45adabeb8129 2020-11-21 19:17:57.084412 46473 1 User \N \N 1 User \N update ---\nunique_session_id:\n- _b_N4KzGp62eDnjLKCNn\n- CacXRrbozGF-nu3trENn\n 785 \N 189.186.1.223 de6b04d4-5c10-4202-a793-45adabeb8129 2020-11-21 19:17:57.098046 46474 1372 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1372'\n is_parent: false\n sku: CAR-1372\n name: 2BICV20327\n description: CARTERA CROSSBODY NEGRA Y BEIGE\n price_base: '699.5'\n price_sale: '1399.0'\n img_product: 38C4FCFE-F03E-46B5-8959-3639FCF81857.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170820461'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-23 00:15:38.117242'\n updated_at: &12 2020-11-21 19:20:07.824374374 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1372'\n sku: CAR-1372\n name: 2BICV20327\n description: CARTERA CROSSBODY NEGRA Y BEIGE\n price_base: '699.50'\n price_sale: '1399.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-23 00:15:38.117242'\n updated_at: '2020-10-23 00:15:38.117242'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170820461'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1372'\n type: *3\n value: 1372\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-1372\n type: *7\n value: CAR-1372\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 2BICV20327\n type: *8\n value: 2BICV20327\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA CROSSBODY NEGRA Y BEIGE\n type: *6\n value: CARTERA CROSSBODY NEGRA Y BEIGE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '699.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1399.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1399E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 38C4FCFE-F03E-46B5-8959-3639FCF81857.jpeg\n type: *2\n value: 38C4FCFE-F03E-46B5-8959-3639FCF81857.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170820461'\n type: *2\n value: '7509170820461'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-23 00:15:38.117242'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 38C4FCFE-F03E-46B5-8959-3639FCF81857.jpeg\n 3 El producto CAR-1372 fue modificado. 189.186.1.223 6570a1c8-0425-42e6-98c4-3105ff06f2be 2020-11-21 19:20:07.865453 46475 1469 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1469'\n is_parent: false\n sku: BOL-1469\n name: 3BLCP20124\n description: BOLSO CROSS BODY LETRAS\n price_base: '649.5'\n price_sale: '1299.0'\n img_product: '09075761-CB95-4898-8A6E-56051B9942FA.jpeg'\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001469'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-29 20:56:07.564333'\n updated_at: &12 2020-11-21 19:21:42.510827498 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1469'\n sku: BOL-1469\n name: 3BLCP20124\n description: BOLSO CROSS BODY LETRAS\n price_base: '649.50'\n price_sale: '1299.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-29 20:56:07.564333'\n updated_at: '2020-10-29 20:56:07.613081'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001469'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1469'\n type: *3\n value: 1469\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1469\n type: *7\n value: BOL-1469\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 3BLCP20124\n type: *8\n value: 3BLCP20124\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO CROSS BODY LETRAS\n type: *6\n value: BOLSO CROSS BODY LETRAS\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '649.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.6495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1299.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1299E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: '09075761-CB95-4898-8A6E-56051B9942FA.jpeg'\n type: *2\n value: '09075761-CB95-4898-8A6E-56051B9942FA.jpeg'\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001469'\n type: *2\n value: '0001469'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-29 20:56:07.564333'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- '09075761-CB95-4898-8A6E-56051B9942FA.jpeg'\n 3 El producto BOL-1469 fue modificado. 189.186.1.223 dde0c07e-5de8-47c2-9ab2-d87d573b8aab 2020-11-21 19:21:42.576422 46476 1464 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1464'\n is_parent: false\n sku: BOL-1464\n name: 2BLCV20386\n description: BOLSO CROSSBODY TELA\n price_base: '599.5'\n price_sale: '1199.0'\n img_product: 91DE631D-676E-4157-8054-88AF42C3F141.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170822540'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-29 20:42:42.491781'\n updated_at: &12 2020-11-21 19:22:42.939468941 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1464'\n sku: BOL-1464\n name: 2BLCV20386\n description: BOLSO CROSSBODY TELA\n price_base: '599.50'\n price_sale: '1199.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-29 20:42:42.491781'\n updated_at: '2020-10-29 20:42:42.491781'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170822540'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1464'\n type: *3\n value: 1464\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1464\n type: *7\n value: BOL-1464\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 2BLCV20386\n type: *8\n value: 2BLCV20386\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BOLSO CROSSBODY TELA\n type: *6\n value: BOLSO CROSSBODY TELA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '599.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.5995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1199.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1199E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 91DE631D-676E-4157-8054-88AF42C3F141.jpeg\n type: *2\n value: 91DE631D-676E-4157-8054-88AF42C3F141.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170822540'\n type: *2\n value: '7509170822540'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-29 20:42:42.491781'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 91DE631D-676E-4157-8054-88AF42C3F141.jpeg\n 2 El producto BOL-1464 fue modificado. 189.186.1.223 3644b05c-ab77-4903-85e9-72f61765470a 2020-11-21 19:22:42.988831 46477 3486 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1186\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1664\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.223 67d92921-7877-49f5-bd7f-bb23aa3cd987 2020-11-21 19:23:11.372085 46478 2369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 20 \N 189.186.1.223 67d92921-7877-49f5-bd7f-bb23aa3cd987 2020-11-21 19:23:11.39954 46479 3486 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.223 9ed92cd1-cd64-4c51-9dca-0a73dda239ec 2020-11-21 19:23:27.034593 46480 4604 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1186\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3486\ncardnumber: 5557\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1664\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1664 189.186.1.223 9ed92cd1-cd64-4c51-9dca-0a73dda239ec 2020-11-21 19:23:27.059722 46481 1477 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1477'\n is_parent: false\n sku: CAR-1477\n name: 1BICV20300\n description: CASTERA AMARILLA Y NEGRA\n price_base: '499.5'\n price_sale: '999.0'\n img_product: 94BF20FC-98C1-45D6-8BAE-12A933E6D728.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170819519'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-29 23:13:24.48553'\n updated_at: &12 2020-11-21 19:26:11.689054002 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1477'\n sku: CAR-1477\n name: 1BICV20300\n description: CASTERA AMARILLA Y NEGRA\n price_base: '499.50'\n price_sale: '999.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-29 23:13:24.48553'\n updated_at: '2020-10-29 23:13:24.48553'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170819519'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1477'\n type: *3\n value: 1477\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-1477\n type: *7\n value: CAR-1477\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BICV20300\n type: *8\n value: 1BICV20300\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CASTERA AMARILLA Y NEGRA\n type: *6\n value: CASTERA AMARILLA Y NEGRA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '499.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '999.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.999E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 94BF20FC-98C1-45D6-8BAE-12A933E6D728.jpeg\n type: *2\n value: 94BF20FC-98C1-45D6-8BAE-12A933E6D728.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170819519'\n type: *2\n value: '7509170819519'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-29 23:13:24.48553'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 94BF20FC-98C1-45D6-8BAE-12A933E6D728.jpeg\n 2 El producto CAR-1477 fue modificado. 189.186.1.223 d434f62d-eb65-4a52-b693-0e3a2f3c81c1 2020-11-21 19:26:11.735697 46482 1478 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1478'\n is_parent: false\n sku: CAR-1478\n name: 1BICV203000BLA\n description: CARTERA BLANCA\n price_base: '449.5'\n price_sale: '899.0'\n img_product: 8BFBBE03-EAC6-4EE5-966B-05BF2C699D59.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170819526'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-10-29 23:15:06.899536'\n updated_at: &12 2020-11-21 19:26:47.730303458 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1478'\n sku: CAR-1478\n name: 1BICV203000BLA\n description: CARTERA BLANCA\n price_base: '449.50'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-10-29 23:15:06.899536'\n updated_at: '2020-10-29 23:15:06.899536'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170819526'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1478'\n type: *3\n value: 1478\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-1478\n type: *7\n value: CAR-1478\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BICV203000BLA\n type: *8\n value: 1BICV203000BLA\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA BLANCA\n type: *6\n value: CARTERA BLANCA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '449.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 8BFBBE03-EAC6-4EE5-966B-05BF2C699D59.jpeg\n type: *2\n value: 8BFBBE03-EAC6-4EE5-966B-05BF2C699D59.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170819526'\n type: *2\n value: '7509170819526'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-10-29 23:15:06.899536'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 8BFBBE03-EAC6-4EE5-966B-05BF2C699D59.jpeg\n 2 El producto CAR-1478 fue modificado. 189.186.1.223 038c6c55-f797-4875-b715-12cb62e28330 2020-11-21 19:26:47.777103 46500 4605 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1185\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.11E4\nmove_type: '1'\nsale_id: 3255\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-786 189.186.91.88 be5c5eb2-f4e9-47af-9871-9194722f7ba4 2020-11-21 20:41:29.089864 46501 4605 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1185\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.11E4\nmove_type: '1'\nsale_id: 3255\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.91.88 ae7352fa-9a97-4650-b76c-498f53e059c2 2020-11-21 20:41:47.726407 46502 4606 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1185\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.11E4\nmove_type: '1'\nsale_id: 3255\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-786 189.186.91.88 3ee55a80-412e-43bb-bd4c-ec9832d2034d 2020-11-21 20:42:06.623033 46503 3255 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 de723b32-9a3a-4b41-afee-592bb75a7887 2020-11-21 20:42:09.449167 46504 3487 Sale \N \N 21 User \N create ---\ncustomer_id: 365\nuser_id: 21\nopen_cash_register_id: 1185\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-11-21\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-903\nexpiration_date: 2020-12-26\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 0acc038b-7fdc-4bcc-98a1-7bf24bcd3ac2 2020-11-21 20:56:33.55505 46505 2562 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.91.88 0acc038b-7fdc-4bcc-98a1-7bf24bcd3ac2 2020-11-21 20:56:33.59488 46506 4607 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1185\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3487\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-903\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-903 189.186.91.88 2dbf756c-05b0-40a9-98db-863b424cb964 2020-11-21 20:56:50.874949 46507 3487 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 1c150bb6-8334-4de9-bca1-baf4301ddbaf 2020-11-21 20:56:52.611588 46508 3488 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1185\namount: !ruby/object:BigDecimal 18:0.808E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.808E3\nstatus: 0\ndate_sale: 2020-11-21\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-904\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 ee26b230-cdc1-4c91-8980-2aefbec65e11 2020-11-21 21:09:45.366507 46509 2619 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.91.88 ee26b230-cdc1-4c91-8980-2aefbec65e11 2020-11-21 21:09:45.393699 46510 2408 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.91.88 ee26b230-cdc1-4c91-8980-2aefbec65e11 2020-11-21 21:09:45.417098 46511 3488 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 b5251e7e-29ef-45d6-be77-06244c36d3e8 2020-11-21 21:11:24.270263 46512 4608 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1185\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.808E3\nmove_type: '1'\nsale_id: 3488\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-904\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.112E4\nchange: !ruby/object:BigDecimal 18:0.312E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-904 189.186.91.88 b5251e7e-29ef-45d6-be77-06244c36d3e8 2020-11-21 21:11:24.294142 46513 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-21 00:49:19.102411000 Z\n- &1 2020-11-21 19:17:57.078671000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-21 21:21:23.905006342 Z\nsign_in_count:\n- 392\n- 393\n 786 \N 189.186.1.223 cc193f69-a10b-4b16-af46-af4df0da396f 2020-11-21 21:21:23.912881 46514 1 User \N \N 1 User \N update ---\nunique_session_id:\n- CacXRrbozGF-nu3trENn\n- zswyjX5eFFNFtjwYpHx7\n 787 \N 189.186.1.223 cc193f69-a10b-4b16-af46-af4df0da396f 2020-11-21 21:21:23.928432 46515 356 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 1185\nquantity: !ruby/object:BigDecimal 18:0.13E4\nstatus: 1\nobservations: SUELDO NAYELLI\nexpense_date: 2020-11-21\nexpense_code: PV3-E-46\n 1 Egreso por 1300.0 registrado 189.186.91.88 94a46a9f-af66-4932-bf2f-e0e259573323 2020-11-21 21:25:34.327976 46516 4609 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1185\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.13E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 356\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.91.88 94a46a9f-af66-4932-bf2f-e0e259573323 2020-11-21 21:25:34.351949 46517 3489 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1186\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1665\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.223 b26146c0-1de5-44fa-8d5b-85dd28a3264e 2020-11-21 21:53:00.33588 46518 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 18 \N 189.186.1.223 b26146c0-1de5-44fa-8d5b-85dd28a3264e 2020-11-21 21:53:00.373462 46519 3489 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.223 b0142a9e-a7da-418e-a3cf-5b30b7d90879 2020-11-21 21:53:14.740606 46520 4610 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1186\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3489\ncardnumber: 6147\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1665\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1665 189.186.1.223 b0142a9e-a7da-418e-a3cf-5b30b7d90879 2020-11-21 21:53:14.771887 46521 4611 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1186\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.3897E4\nmove_type: '1'\nsale_id: 3439\ncardnumber: 5429\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1640 189.186.1.223 2fcce378-0654-46a8-98cc-cee637ff5418 2020-11-21 23:15:28.540271 46522 3439 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.1.223 956d1dd0-f681-4be5-95ca-78ccabddf9c1 2020-11-21 23:15:30.951439 46523 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-21 19:17:57.078671000 Z\n- &1 2020-11-21 21:21:23.905006000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-21 23:19:46.581569521 Z\nsign_in_count:\n- 393\n- 394\n 788 \N 189.186.1.223 166e5b8b-5bf2-459e-9f6b-5411514e7f12 2020-11-21 23:19:46.587693 46524 1 User \N \N 1 User \N update ---\nunique_session_id:\n- zswyjX5eFFNFtjwYpHx7\n- AzVSEcax1rgbAghoEraP\n 789 \N 189.186.1.223 166e5b8b-5bf2-459e-9f6b-5411514e7f12 2020-11-21 23:19:46.604478 46525 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-21 21:21:23.905006000 Z\n- &1 2020-11-21 23:19:46.581569000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-21 23:42:55.816364282 Z\nsign_in_count:\n- 394\n- 395\n 790 \N 189.186.1.223 ba53358e-e0a7-45bc-b4aa-0ce1b12c491f 2020-11-21 23:42:55.822636 46526 1 User \N \N 1 User \N update ---\nunique_session_id:\n- AzVSEcax1rgbAghoEraP\n- 696rkUjQpoxRFASve_aM\n 791 \N 189.186.1.223 ba53358e-e0a7-45bc-b4aa-0ce1b12c491f 2020-11-21 23:42:55.83691 46527 39 ProductsReturn \N \N 2 User \N create ---\nsale_id: 3475\nuser_id: 2\nreturn_code: PV1-D-16\npointsale_id: 1\nnew_amount: !ruby/object:BigDecimal 18:0.1228E4\nreturned_amount: !ruby/object:BigDecimal 18:0.899E3\ndifference_amount: !ruby/object:BigDecimal 18:0.329E3\nis_money_returned: false\n 1 devolución PV1-D-16 creada. 189.186.1.223 3421adfd-8366-433e-8c9d-e6d1fa5e04a1 2020-11-22 00:25:41.394371 46528 2563 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.1.223 3421adfd-8366-433e-8c9d-e6d1fa5e04a1 2020-11-22 00:25:41.437224 46529 2549 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 4 \N 189.186.1.223 3421adfd-8366-433e-8c9d-e6d1fa5e04a1 2020-11-22 00:25:41.478052 46530 2251 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 5 \N 189.186.1.223 3421adfd-8366-433e-8c9d-e6d1fa5e04a1 2020-11-22 00:25:41.504897 46531 4612 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1186\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.329E3\nmove_type: '1'\nsale_id: 3475\ncardnumber: 4505\npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 39\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV1-D-16 189.186.1.223 23afe826-00d3-40d1-b012-60a1c5d0117d 2020-11-22 00:26:39.059228 46532 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-21 23:19:46.581569000 Z\n- &1 2020-11-21 23:42:55.816364000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-22 00:28:45.387603003 Z\nsign_in_count:\n- 395\n- 396\n 792 \N 189.186.1.223 119953c2-bb5e-481e-93a9-d659b52a771f 2020-11-22 00:28:45.394317 46533 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 696rkUjQpoxRFASve_aM\n- Np8Zy27qzC6CVHvrrqqZ\n 793 \N 189.186.1.223 119953c2-bb5e-481e-93a9-d659b52a771f 2020-11-22 00:28:45.410491 46534 357 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1186\nquantity: !ruby/object:BigDecimal 18:0.33E3\nstatus: 1\nobservations: 11 HORAS EXTRAS ROCIO\nexpense_date: 2020-11-21\nexpense_code: PV1-E-249\n 1 Egreso por 330.0 registrado 189.186.1.223 d1948ada-2387-42a5-8641-fc7c3e1045ae 2020-11-22 00:57:13.031314 46535 4613 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1186\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.33E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 357\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.1.223 d1948ada-2387-42a5-8641-fc7c3e1045ae 2020-11-22 00:57:13.060122 46536 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-21 06:45:12.941758000 Z\n- &1 2020-11-21 18:06:13.038672000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-22 01:18:58.262541276 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938539\n mask_addr: 4294967295\nsign_in_count:\n- 2078\n- 2079\n 4158 \N 200.68.151.235 457fe10d-5caf-45af-a7ff-4d18e6986c36 2020-11-22 01:18:58.27236 46537 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XL6BeMFc7oxVXs1cG68B\n- 4Wjm1R9VntUXt4_9Fpii\n 4159 \N 200.68.151.235 457fe10d-5caf-45af-a7ff-4d18e6986c36 2020-11-22 01:18:58.299033 46538 1210 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1186\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.9222E4\namount_out: !ruby/object:BigDecimal 18:0.33E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.826E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2326E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.1.223 8edbdabd-e4dd-4d89-8c11-8efaf2fd8a3c 2020-11-22 01:37:19.439039 46539 1186 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.1.223 8edbdabd-e4dd-4d89-8c11-8efaf2fd8a3c 2020-11-22 01:37:19.454523 46540 1211 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1185\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.5456E4\namount_out: !ruby/object:BigDecimal 18:0.13E4\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.5E4\ncash_fund: !ruby/object:BigDecimal 18:0.1256E4\nphysical_cash: !ruby/object:BigDecimal 18:0.6256E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 0968a6c2-ea71-4df9-8b60-63a39dc7d9df 2020-11-22 02:00:06.034762 46541 1185 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 0968a6c2-ea71-4df9-8b60-63a39dc7d9df 2020-11-22 02:00:06.048478 46542 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-21 18:06:13.038672000 Z\n- &1 2020-11-22 01:18:58.262541000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-22 08:24:26.432855514 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535808\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938539\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535552\n mask_addr: 4294967295\nsign_in_count:\n- 2079\n- 2080\n 4160 \N 177.228.102.0 8fe5d3fe-5c64-4e0e-8937-5d7a14102318 2020-11-22 08:24:26.451687 46543 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4Wjm1R9VntUXt4_9Fpii\n- iiFJWWLeRv-yWzUTDVvM\n 4161 \N 177.228.102.0 8fe5d3fe-5c64-4e0e-8937-5d7a14102318 2020-11-22 08:24:26.475427 46544 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-20 17:36:53.109574000 Z\n- &1 2020-11-21 17:03:02.275437000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-22 17:08:33.075977268 Z\nsign_in_count:\n- 345\n- 346\n 693 \N 189.186.91.88 18c780a7-77cf-4a30-b4fb-04ddd99f1b75 2020-11-22 17:08:33.105154 46545 21 User \N \N 21 User \N update ---\nunique_session_id:\n- brxWbGVA2jT-1QfEsHUa\n- cyUKRc6ZbRx9d8fQXum6\n 694 \N 189.186.91.88 18c780a7-77cf-4a30-b4fb-04ddd99f1b75 2020-11-22 17:08:33.127123 46546 1187 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1256E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1256.0 189.186.91.88 18822595-c820-4c52-9d20-59ea36dad646 2020-11-22 17:18:03.731289 46547 3490 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1187\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-11-22\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-905\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 9a6185f8-8c07-43b9-8865-8c8fbdc51aae 2020-11-22 17:41:20.646626 46548 2583 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.91.88 9a6185f8-8c07-43b9-8865-8c8fbdc51aae 2020-11-22 17:41:20.699753 46549 3490 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 75fe12fb-47ef-424f-943d-a5d0df55bc72 2020-11-22 17:41:32.850247 46550 4614 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1187\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 3490\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-905\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-905 189.186.91.88 75fe12fb-47ef-424f-943d-a5d0df55bc72 2020-11-22 17:41:32.875649 46551 3491 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1187\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-11-22\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-906\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 b2babfd2-e25e-4ed9-bcf0-d886eb0f3c46 2020-11-22 20:29:49.004356 46552 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 58 \N 189.186.91.88 b2babfd2-e25e-4ed9-bcf0-d886eb0f3c46 2020-11-22 20:29:49.053433 46553 3491 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 eb7b0a73-0053-4efc-ae40-7e5eaa2a76b1 2020-11-22 20:31:57.723209 46554 4615 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1187\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3491\ncardnumber: 5512\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-906\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-906 189.186.91.88 eb7b0a73-0053-4efc-ae40-7e5eaa2a76b1 2020-11-22 20:31:57.754958 46555 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-22 01:18:58.262541000 Z\n- &1 2020-11-22 08:24:26.432855000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-22 22:46:08.241647230 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938539\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535552\n mask_addr: 4294967295\nsign_in_count:\n- 2080\n- 2081\n 4162 \N 177.228.102.0 d06ff719-0c66-41c8-aeba-6716d0084511 2020-11-22 22:46:08.254787 46556 4 User \N \N 4 User \N update ---\nunique_session_id:\n- iiFJWWLeRv-yWzUTDVvM\n- AxAPoW7zcbS8jgmKxHVy\n 4163 \N 177.228.102.0 d06ff719-0c66-41c8-aeba-6716d0084511 2020-11-22 22:46:08.285551 46557 358 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1187\nquantity: !ruby/object:BigDecimal 18:0.25E3\nstatus: 1\nobservations: 'COMISIONES DE LA SEMANA '\nexpense_date: 2020-11-22\nexpense_code: PV3-E-47\n 1 Egreso por 250.0 registrado 189.186.91.88 ff50f339-9ab2-4249-bd3f-68d2c070ad55 2020-11-22 22:46:41.419956 46558 4616 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1187\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 358\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.91.88 ff50f339-9ab2-4249-bd3f-68d2c070ad55 2020-11-22 22:46:41.44156 46559 1212 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1187\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1798E4\namount_out: !ruby/object:BigDecimal 18:0.25E3\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1506E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1506E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 e2aba7ea-90db-4700-8be9-19680ab95b86 2020-11-22 22:50:51.599558 46560 1187 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 e2aba7ea-90db-4700-8be9-19680ab95b86 2020-11-22 22:50:51.615198 46561 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-10-24 18:06:00.539633000 Z\n- &1 2020-10-31 23:10:29.644838000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-23 17:26:17.133700743 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183102089\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535552\n mask_addr: 4294967295\nsign_in_count:\n- 192\n- 193\n 386 \N 177.228.102.0 f944e510-ab61-45a4-8492-707001cab4cb 2020-11-23 17:26:17.167148 46562 9 User \N \N 9 User \N update ---\nunique_session_id:\n- nyFhGstSv7bnFFiBLV4Z\n- rTJPdugUy98NzCxkWY1E\n 387 \N 177.228.102.0 f944e510-ab61-45a4-8492-707001cab4cb 2020-11-23 17:26:17.189776 46563 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-20 17:36:05.627281000 Z\n- &1 2020-11-21 17:36:01.376334000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-23 18:41:42.124348946 Z\nsign_in_count:\n- 708\n- 709\n 1421 \N 189.186.1.223 59aee1d8-a66f-4440-847d-a61c80be7bb8 2020-11-23 18:41:42.166104 46564 2 User \N \N 2 User \N update ---\nunique_session_id:\n- "-KwBasY9dLychxyGyyzW"\n- she_Yp1Y9k4uyewK4omn\n 1422 \N 189.186.1.223 59aee1d8-a66f-4440-847d-a61c80be7bb8 2020-11-23 18:41:42.194509 46565 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-21 17:03:02.275437000 Z\n- &1 2020-11-22 17:08:33.075977000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-23 18:48:52.932330792 Z\nsign_in_count:\n- 346\n- 347\n 695 \N 189.186.91.88 eac509db-7cc4-4624-b9df-d97f07bb4ece 2020-11-23 18:48:52.937753 46566 21 User \N \N 21 User \N update ---\nunique_session_id:\n- cyUKRc6ZbRx9d8fQXum6\n- mzyrAeYcH6qLJFVrsYRw\n 696 \N 189.186.91.88 eac509db-7cc4-4624-b9df-d97f07bb4ece 2020-11-23 18:48:52.951541 46567 1188 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1506E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1506.0 189.186.91.88 e388141b-11eb-4319-b896-a76a37511c49 2020-11-23 18:49:26.590513 46568 3492 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1188\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-23\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-907\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 35ec4c5b-c046-4b23-94f3-0026daedbad6 2020-11-23 18:49:47.450125 46569 2577 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.91.88 35ec4c5b-c046-4b23-94f3-0026daedbad6 2020-11-23 18:49:47.478285 46570 3492 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-907 cancelada. 189.186.91.88 3e895281-4bd6-4bfa-a717-8a996219ae2f 2020-11-23 18:49:53.098958 46571 2577 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.91.88 3e895281-4bd6-4bfa-a717-8a996219ae2f 2020-11-23 18:49:53.123587 46572 448 Customer \N \N 21 User \N create ---\nnick_name: YURISA ZAMORA\nphone: "(667) 232-7669"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente YURISA ZAMORA fue registrado. 189.186.91.88 4173169c-eb31-4c3a-8448-195a4b648061 2020-11-23 18:50:37.462413 46573 3493 Sale \N \N 21 User \N create ---\ncustomer_id: 448\nuser_id: 21\nopen_cash_register_id: 1188\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-23\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-908\nexpiration_date: 2020-12-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 6a985959-5590-417a-941e-858285b03d1f 2020-11-23 18:50:55.958836 46574 2577 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.91.88 6a985959-5590-417a-941e-858285b03d1f 2020-11-23 18:50:55.986446 46575 4617 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1188\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 3493\ncardnumber: 2542\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-908\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-908 189.186.91.88 a3c77add-8bf1-4b58-91f2-e785b9364ab7 2020-11-23 18:51:35.407855 46576 3493 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 cc323f93-b445-41a0-a2cd-05ae2053430c 2020-11-23 18:51:38.25412 46577 1189 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.826E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 826.0 189.186.1.223 0e5dd686-2dfb-4053-a9aa-730eb10aa03d 2020-11-23 18:55:34.999736 46578 449 Customer \N \N 2 User \N create ---\nnick_name: JANETZI QUIÑONES\nphone: "(667) 322-9517"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JANETZI QUIÑONES fue registrado. 189.186.1.223 fec46f3f-125f-4c67-8f1d-e9579b636bfe 2020-11-23 18:55:58.858604 46579 736 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-23\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.1.223 c88f6143-eec5-481e-a45d-da7ef22910ef 2020-11-23 19:02:07.33909 46580 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.7E1\n 17 \N 189.186.1.223 c88f6143-eec5-481e-a45d-da7ef22910ef 2020-11-23 19:02:07.366025 46581 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-21 23:42:55.816364000 Z\n- &1 2020-11-22 00:28:45.387603000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-23 19:11:04.794965731 Z\nsign_in_count:\n- 396\n- 397\n 794 \N 189.186.1.223 bbf969da-7d9c-44ef-ab80-bad260480c59 2020-11-23 19:11:04.801035 46582 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Np8Zy27qzC6CVHvrrqqZ\n- 7zPsA5-BFjc3j_KS7zjs\n 795 \N 189.186.1.223 bbf969da-7d9c-44ef-ab80-bad260480c59 2020-11-23 19:11:04.816371 46583 485 Purchase \N \N 2 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-206\namount: !ruby/object:BigDecimal 18:0.5097E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.5097E4\nobservations: ''\npurchase_date: 2020-11-23\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-206 por $ 5097.0 MXN creada. 189.186.1.223 080082d4-d35d-400a-b305-625e0c77fd7a 2020-11-23 19:16:17.997374 46584 2625 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1375\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.1.223 080082d4-d35d-400a-b305-625e0c77fd7a 2020-11-23 19:16:18.029884 46585 3494 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1189\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2020-11-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1666\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.223 018ed0a2-af75-4fc3-8d48-20e453572071 2020-11-23 19:16:29.787704 46586 2625 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.1.223 018ed0a2-af75-4fc3-8d48-20e453572071 2020-11-23 19:16:29.81527 46587 3494 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.223 916c256d-4b1f-4d69-aa0d-e2ccc9f53417 2020-11-23 19:16:43.869269 46588 4618 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1189\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1699E4\nmove_type: '1'\nsale_id: 3494\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1666\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1699E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1666 189.186.1.223 916c256d-4b1f-4d69-aa0d-e2ccc9f53417 2020-11-23 19:16:43.895692 46589 3494 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-1666 cancelada. 189.186.1.223 eca6ead9-1fad-43cd-be04-db3a1e2e30d8 2020-11-23 19:22:06.443172 46590 4618 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1189\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1699E4\nmove_type: '1'\nsale_id: 3494\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1666\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1699E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.1.223 eca6ead9-1fad-43cd-be04-db3a1e2e30d8 2020-11-23 19:22:06.469092 46591 2625 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.1.223 eca6ead9-1fad-43cd-be04-db3a1e2e30d8 2020-11-23 19:22:06.4946 46592 3495 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1189\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1667\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.223 b3841cb5-06de-418d-a2ec-90de2e29488d 2020-11-23 19:23:53.238283 46593 2355 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.1.223 b3841cb5-06de-418d-a2ec-90de2e29488d 2020-11-23 19:23:53.272397 46594 3495 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.223 d9ddf247-fa18-47b0-ba19-0f414b023874 2020-11-23 19:23:59.549034 46595 4619 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1189\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3495\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1667\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1399E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1667 189.186.1.223 d9ddf247-fa18-47b0-ba19-0f414b023874 2020-11-23 19:23:59.573418 46596 737 Transfer \N \N 1 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-11-23\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.1.223 579be669-e273-4c35-b8db-a297631a8108 2020-11-23 19:31:04.166392 46597 737 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-23\n 2 Se dio entrada a traspaso de Almacen central a SUO 189.186.1.223 082e89c1-394b-4b58-8df9-b7745963a06d 2020-11-23 19:31:25.41362 46598 1249 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.1.223 082e89c1-394b-4b58-8df9-b7745963a06d 2020-11-23 19:31:25.438864 46599 3496 Sale \N \N 2 User \N create ---\ncustomer_id: 449\nuser_id: 2\nopen_cash_register_id: 1189\namount: !ruby/object:BigDecimal 18:0.2468E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2468E4\nstatus: 0\ndate_sale: 2020-11-23\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1668\nexpiration_date: 2020-12-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.223 51e33fef-3e58-4c4d-9f93-9a37ba17e8ca 2020-11-23 19:34:16.812938 46600 1249 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.1.223 51e33fef-3e58-4c4d-9f93-9a37ba17e8ca 2020-11-23 19:34:16.83796 46601 2608 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.1.223 51e33fef-3e58-4c4d-9f93-9a37ba17e8ca 2020-11-23 19:34:16.861205 46602 4620 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1189\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.74E3\nmove_type: '1'\nsale_id: 3496\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1668\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.74E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1668 189.186.1.223 cc8ddae0-31f8-404c-8d90-2fd2cc4d234a 2020-11-23 19:34:36.303777 46603 3496 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.1.223 f4be4296-3e3e-4f2a-b269-2799c3eb1bab 2020-11-23 19:34:42.184829 46604 3497 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1188\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2020-11-23\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-909\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 163bb9aa-7615-4b30-a380-52e9b6b0d5c1 2020-11-23 20:12:24.363496 46605 2483 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.91.88 163bb9aa-7615-4b30-a380-52e9b6b0d5c1 2020-11-23 20:12:24.396189 46606 3497 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 2788552a-9a2d-4da1-9522-dc716f414e99 2020-11-23 20:12:53.625964 46607 4621 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1188\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1699E4\nmove_type: '1'\nsale_id: 3497\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-909\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.17E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-909 189.186.91.88 2788552a-9a2d-4da1-9522-dc716f414e99 2020-11-23 20:12:53.65129 46608 3498 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1189\namount: !ruby/object:BigDecimal 18:0.379E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.379E3\nstatus: 0\ndate_sale: 2020-11-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1669\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.223 b13acc6d-2243-4dd3-bd2d-baf797527bd0 2020-11-23 20:48:11.614864 46609 2384 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.1.223 b13acc6d-2243-4dd3-bd2d-baf797527bd0 2020-11-23 20:48:11.665285 46610 3498 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.223 28dce948-4fb9-409d-891b-6454c7cc1af4 2020-11-23 20:48:25.027959 46611 4622 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1189\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.379E3\nmove_type: '1'\nsale_id: 3498\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1669\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.379E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1669 189.186.1.223 28dce948-4fb9-409d-891b-6454c7cc1af4 2020-11-23 20:48:25.057341 46612 3499 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1188\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-23\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-910\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 02645f8d-8a0d-463d-a769-94070a1e5764 2020-11-23 21:02:54.921638 46613 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.15E2\n 41 \N 189.186.91.88 02645f8d-8a0d-463d-a769-94070a1e5764 2020-11-23 21:02:54.946814 46614 3499 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 cf3d0c33-be08-429c-b1ba-8b5c18ff3179 2020-11-23 21:03:07.904237 46615 4623 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1188\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3499\ncardnumber: 2537\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-910\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-910 189.186.91.88 cf3d0c33-be08-429c-b1ba-8b5c18ff3179 2020-11-23 21:03:07.927451 46616 450 Customer \N \N 2 User \N create ---\nnick_name: KENIA GAXIOLA\nphone: "(667) 306-8895"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente KENIA GAXIOLA fue registrado. 189.186.1.223 d8f95e7c-e1b5-47ab-b503-ae2c5646c98f 2020-11-23 21:15:33.270538 46617 3500 Sale \N \N 2 User \N create ---\ncustomer_id: 450\nuser_id: 2\nopen_cash_register_id: 1189\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-11-23\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1670\nexpiration_date: 2020-12-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.223 e8f144d5-cf61-4059-aeb1-e49194cdb1a1 2020-11-23 21:17:16.577851 46618 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 18 \N 189.186.1.223 e8f144d5-cf61-4059-aeb1-e49194cdb1a1 2020-11-23 21:17:16.605248 46619 4624 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1189\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 3500\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1670\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1670 189.186.1.223 ac8ba7fa-6473-4f79-8bdd-b891ebd8613e 2020-11-23 21:17:23.35188 46620 3500 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.1.223 3848b640-56be-499b-a08c-fe15515adf82 2020-11-23 21:17:26.116853 46621 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-22 00:28:45.387603000 Z\n- &1 2020-11-23 19:11:04.794965000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-23 21:23:48.140291686 Z\nsign_in_count:\n- 397\n- 398\n 796 \N 189.186.1.223 db565662-bb6c-496b-8be2-db8a4683ba14 2020-11-23 21:23:48.172763 46622 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 7zPsA5-BFjc3j_KS7zjs\n- VicYWVmxJFYpx-SPFy7n\n 797 \N 189.186.1.223 db565662-bb6c-496b-8be2-db8a4683ba14 2020-11-23 21:23:48.20076 46623 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-22 08:24:26.432855000 Z\n- &1 2020-11-22 22:46:08.241647000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-23 21:38:38.252084273 Z\nsign_in_count:\n- 2081\n- 2082\n 4164 \N 177.228.102.0 339e8797-66bb-475e-84ed-68b112dde2eb 2020-11-23 21:38:38.259115 46624 4 User \N \N 4 User \N update ---\nunique_session_id:\n- AxAPoW7zcbS8jgmKxHVy\n- kZ3BoYShhFUP3y44aUZw\n 4165 \N 177.228.102.0 339e8797-66bb-475e-84ed-68b112dde2eb 2020-11-23 21:38:38.278715 46625 3501 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1188\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-11-23\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-911\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 e0343fa6-4bd4-4b55-81e7-11f7a13b5f23 2020-11-23 23:46:10.736023 46626 2482 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.91.88 e0343fa6-4bd4-4b55-81e7-11f7a13b5f23 2020-11-23 23:46:10.764024 46627 3501 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 acca2c9a-9847-4417-9800-5ab473866de0 2020-11-23 23:47:13.026515 46628 4625 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1188\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 3501\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-911\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1225'\n 1 movimiento de efectivo por venta con folio PV3-V-911 189.186.91.88 acca2c9a-9847-4417-9800-5ab473866de0 2020-11-23 23:47:13.051352 46629 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-22 22:46:08.241647000 Z\n- &1 2020-11-23 21:38:38.252084000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-24 00:02:32.525680758 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535552\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2082\n- 2083\n 4166 \N 189.186.91.88 e751bb59-276c-4370-b063-d5f1d1aa83c1 2020-11-24 00:02:32.532173 46630 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kZ3BoYShhFUP3y44aUZw\n- dy4twtFVoFQQfjXipsAD\n 4167 \N 189.186.91.88 e751bb59-276c-4370-b063-d5f1d1aa83c1 2020-11-24 00:02:32.548662 46631 3502 Sale \N \N 2 User \N create ---\ncustomer_id: 437\nuser_id: 2\nopen_cash_register_id: 1189\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-23\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1671\nexpiration_date: 2020-12-28\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.223 e1fa19ac-df07-429d-b493-7d6315ffdba5 2020-11-24 01:03:00.357999 46632 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 19 \N 189.186.1.223 e1fa19ac-df07-429d-b493-7d6315ffdba5 2020-11-24 01:03:00.394019 46633 4626 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1189\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3502\ncardnumber: 4489\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1671\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1671 189.186.1.223 1f4e58f9-ba23-474a-be17-2840ac5f8d3e 2020-11-24 01:03:13.361707 46634 3502 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.1.223 1d304354-8128-4a8d-a59a-b9e431ee27cb 2020-11-24 01:03:15.229026 46635 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-23 19:11:04.794965000 Z\n- &1 2020-11-23 21:23:48.140291000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-24 01:03:49.443471689 Z\nsign_in_count:\n- 398\n- 399\n 798 \N 189.186.1.223 5b0cb444-fb40-47e7-81b1-9aa4ed92ac25 2020-11-24 01:03:49.452544 46636 1 User \N \N 1 User \N update ---\nunique_session_id:\n- VicYWVmxJFYpx-SPFy7n\n- Ai_zWwREttEFveuc_wcc\n 799 \N 189.186.1.223 5b0cb444-fb40-47e7-81b1-9aa4ed92ac25 2020-11-24 01:03:49.473104 46637 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-18 01:35:41.186717000 Z\n- &1 2020-11-19 01:56:36.543401000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-24 01:13:57.147645885 Z\nsign_in_count:\n- 362\n- 363\n 727 \N 189.186.91.88 1dd5dcff-3e67-4efe-8a61-ea4ae38fd21e 2020-11-24 01:13:57.153798 46638 18 User \N \N 18 User \N update ---\nunique_session_id:\n- pn7bxa1tFyiDid5is84s\n- uzbSCZdQMJyAv9dcxgzM\n 728 \N 189.186.91.88 1dd5dcff-3e67-4efe-8a61-ea4ae38fd21e 2020-11-24 01:13:57.168648 46639 3503 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1188\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2020-11-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-912\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 845202e0-016f-4ebd-93f7-d0d2f8d91119 2020-11-24 01:14:53.182469 46640 2586 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.91.88 845202e0-016f-4ebd-93f7-d0d2f8d91119 2020-11-24 01:14:53.210002 46641 3503 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 a62852fe-a16a-414d-855b-8fcf8c8a8a95 2020-11-24 01:14:57.715846 46642 4627 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1188\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.489E3\nmove_type: '1'\nsale_id: 3503\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-912\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-912 189.186.91.88 a62852fe-a16a-414d-855b-8fcf8c8a8a95 2020-11-24 01:14:57.750951 46643 4628 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1188\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 3235\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-772 189.186.91.88 09b5a9f7-404f-4286-a1c1-08c25940d60f 2020-11-24 01:39:54.86634 46644 3235 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 9d59cf28-33ff-41a8-a412-6a6cfb199803 2020-11-24 01:39:56.215459 46645 359 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1189\nquantity: !ruby/object:BigDecimal 18:0.2197E4\nstatus: 1\nobservations: LUZ (CFE) $2182 MAS COMISION DE OXXO\nexpense_date: 2020-11-23\nexpense_code: PV1-E-250\n 1 Egreso por 2197.0 registrado 189.186.1.223 e29f7a80-79f7-4909-b033-58168e833f41 2020-11-24 01:52:38.003661 46646 4629 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1189\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2197E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 359\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.1.223 e29f7a80-79f7-4909-b033-58168e833f41 2020-11-24 01:52:38.034927 46647 1213 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1189\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3718E4\namount_out: !ruby/object:BigDecimal 18:0.2197E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.11E4\ncash_fund: !ruby/object:BigDecimal 18:0.747E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1847E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.1.223 88c7eb50-c1dd-46c8-bcd2-587d26e4dd7b 2020-11-24 01:54:54.310041 46648 1189 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.1.223 88c7eb50-c1dd-46c8-bcd2-587d26e4dd7b 2020-11-24 01:54:54.328181 46649 4630 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1188\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.998E3\nmove_type: '1'\nsale_id: 2847\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '22525'\n 1 movimiento de efectivo por venta con folio PV3-V-572 189.186.91.88 a40a9b10-a5a1-4740-b6e4-a99d62315f17 2020-11-24 01:56:54.550511 46650 2847 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 aea34788-5faa-4a0b-9e3d-75d193306b39 2020-11-24 01:56:56.369984 46651 4631 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1188\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.152E3\nmove_type: '1'\nsale_id: 3032\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.152E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-665 189.186.91.88 6a08fb28-7d70-440b-ab72-0281f75d0a77 2020-11-24 01:57:34.426729 46652 3032 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 0c4e1767-b5b2-4f1a-bb91-a853da7032c0 2020-11-24 01:57:35.83349 46653 4632 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1188\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.256E3\nmove_type: '1'\nsale_id: 3033\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.256E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-666 189.186.91.88 730251f8-551a-44fc-b1c7-f259fb4e599c 2020-11-24 01:58:04.041742 46654 4632 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1188\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.256E3\nmove_type: '1'\nsale_id: 3033\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.256E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.91.88 714a0452-edcf-40a3-aa48-eacde1141ef5 2020-11-24 01:58:05.364486 46655 4633 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1188\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.256E3\nmove_type: '1'\nsale_id: 3033\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '222'\n 1 movimiento de efectivo por venta con folio PV3-V-666 189.186.91.88 7302d0ae-12a5-4389-9c8b-1313f7cd8b7f 2020-11-24 01:58:15.134943 46656 3033 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 0dd101da-5902-4de3-a4ed-833548879fbe 2020-11-24 01:58:16.506368 46657 3504 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1188\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-11-23\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-913\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 485c9c3b-15e5-48cb-ac0b-6ba5ea6127a8 2020-11-24 02:18:43.547287 46658 2624 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.91.88 485c9c3b-15e5-48cb-ac0b-6ba5ea6127a8 2020-11-24 02:18:43.580151 46660 4634 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1188\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.2099E4\nmove_type: '1'\nsale_id: 3504\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-913\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '52554'\n 1 movimiento de efectivo por venta con folio PV3-V-913 189.186.91.88 5be832a5-91fa-411f-b469-1e4499e25317 2020-11-24 02:18:53.34785 46661 1214 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1188\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1049E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.3953E4\ncash_fund: !ruby/object:BigDecimal 18:0.992E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4945E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 02c512c3-9b8e-4d52-a0b0-59b7d43beb0e 2020-11-24 02:41:20.196672 46662 1188 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 02c512c3-9b8e-4d52-a0b0-59b7d43beb0e 2020-11-24 02:41:20.212099 46663 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-19 01:56:36.543401000 Z\n- &1 2020-11-24 01:13:57.147645000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-24 03:05:20.098838111 Z\nsign_in_count:\n- 363\n- 364\n 729 \N 189.186.91.88 c8c9767d-fcfa-47fb-a20a-63a3061fb074 2020-11-24 03:05:20.124841 46664 18 User \N \N 18 User \N update ---\nunique_session_id:\n- uzbSCZdQMJyAv9dcxgzM\n- 6wkXbnqVsosEajyZhxLR\n 730 \N 189.186.91.88 c8c9767d-fcfa-47fb-a20a-63a3061fb074 2020-11-24 03:05:20.147617 46665 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-23 21:23:48.140291000 Z\n- &1 2020-11-24 01:03:49.443471000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-24 05:28:43.876660522 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083999\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729196\n mask_addr: 4294967295\nsign_in_count:\n- 399\n- 400\n 800 \N 201.175.156.44 43e96d2e-1e8a-4c88-9034-d31fd06e81dc 2020-11-24 05:28:43.886336 46666 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Ai_zWwREttEFveuc_wcc\n- puktx4_g4zjM6XsV9_zx\n 801 \N 201.175.156.44 43e96d2e-1e8a-4c88-9034-d31fd06e81dc 2020-11-24 05:28:43.908934 46667 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-21 17:36:01.376334000 Z\n- &1 2020-11-23 18:41:42.124348000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-24 17:25:59.959388187 Z\nsign_in_count:\n- 709\n- 710\n 1423 \N 189.186.1.223 4967d041-b94d-4656-9209-1a7d5a80415a 2020-11-24 17:26:00.003368 46668 2 User \N \N 2 User \N update ---\nunique_session_id:\n- she_Yp1Y9k4uyewK4omn\n- GqfTqb6xEXBjtn9L7Uyu\n 1424 \N 189.186.1.223 4967d041-b94d-4656-9209-1a7d5a80415a 2020-11-24 17:26:00.036876 46669 30 User \N \N 30 User \N update ---\nlast_sign_in_at:\n- 2020-11-03 20:35:36.173574000 Z\n- &1 2020-11-04 00:57:32.918989000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-24 17:34:09.318342870 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183141829\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107722\n mask_addr: 4294967295\nsign_in_count:\n- 16\n- 17\n 34 \N 187.149.13.138 d8dca4a8-43e6-4a44-9876-cd176ff8f0af 2020-11-24 17:34:09.330083 46670 30 User \N \N 30 User \N update ---\nunique_session_id:\n- 7yJxxMyPpykdpWYCMqP2\n- WTCfdmdxG94xagsd7yjd\n 35 \N 187.149.13.138 d8dca4a8-43e6-4a44-9876-cd176ff8f0af 2020-11-24 17:34:09.357163 46671 1190 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.747E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 747.0 189.186.1.223 c625a52f-4887-410d-9854-f48cb0c8c940 2020-11-24 17:46:19.04051 46672 4635 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1190\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 3401\ncardnumber: 7226\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1623 189.186.1.223 c249b8a7-0937-4b2f-84d4-1270942c780e 2020-11-24 18:00:18.094933 46673 3401 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.1.223 4129677d-63ff-4692-8162-c3ec6d8551eb 2020-11-24 18:00:19.685825 46674 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-22 17:08:33.075977000 Z\n- &1 2020-11-23 18:48:52.932330000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-24 21:20:42.207013620 Z\nsign_in_count:\n- 347\n- 348\n 697 \N 189.186.91.88 6f699b00-3caa-468c-8902-fff653e621da 2020-11-24 21:20:42.229723 46675 21 User \N \N 21 User \N update ---\nunique_session_id:\n- mzyrAeYcH6qLJFVrsYRw\n- xiXPsEk7sYyaw4oy-Xxb\n 698 \N 189.186.91.88 6f699b00-3caa-468c-8902-fff653e621da 2020-11-24 21:20:42.253874 46676 1191 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.992E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 992.0 189.186.91.88 82b00ac1-d7c6-4cea-b6d4-344dfd359163 2020-11-24 21:21:10.083622 46677 3505 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1190\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1672\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.223 a1ccafdd-5f73-4ac4-8e9f-bb09f1be125d 2020-11-24 21:24:15.990963 46678 2522 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.1.223 a1ccafdd-5f73-4ac4-8e9f-bb09f1be125d 2020-11-24 21:24:16.024581 46679 4636 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1191\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 3371\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-844 189.186.91.88 c8c09980-9b9c-4e3b-8c5a-7d531bc2f766 2020-11-24 21:24:16.770442 46680 3371 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 48f97623-7589-450e-9016-a6bd319e571e 2020-11-24 21:24:20.619405 46681 3505 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.223 24f89f0d-6e51-4327-9a7f-aa92950ecf0e 2020-11-24 21:24:24.981457 46682 4637 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1190\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3505\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1672\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1399E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1672 189.186.1.223 24f89f0d-6e51-4327-9a7f-aa92950ecf0e 2020-11-24 21:24:25.005985 46683 4638 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1191\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 3372\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-845 189.186.91.88 9f5e7320-9537-41c5-8852-2b74bd7f378c 2020-11-24 21:25:52.837096 46684 3372 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 d55e692c-1a91-46ae-9143-b5974807e31a 2020-11-24 21:25:54.194833 46685 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-24 01:03:49.443471000 Z\n- &1 2020-11-24 05:28:43.876660000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-24 21:26:41.074873215 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083999\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729196\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729196\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083999\n mask_addr: 4294967295\nsign_in_count:\n- 400\n- 401\n 802 \N 189.186.1.223 0ffb191a-ecee-4c5a-a631-8061de3b1bd9 2020-11-24 21:26:41.08749 46686 1 User \N \N 1 User \N update ---\nunique_session_id:\n- puktx4_g4zjM6XsV9_zx\n- csc77jGm1UFTSBMqzUy4\n 803 \N 189.186.1.223 0ffb191a-ecee-4c5a-a631-8061de3b1bd9 2020-11-24 21:26:41.112382 46687 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-23 21:38:38.252084000 Z\n- &1 2020-11-24 00:02:32.525680000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-24 23:21:45.051956319 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535552\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934084\n mask_addr: 4294967295\nsign_in_count:\n- 2083\n- 2084\n 4168 \N 200.68.134.132 c61fd880-4168-41a8-854e-3f9db798b4e0 2020-11-24 23:21:45.059616 46688 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dy4twtFVoFQQfjXipsAD\n- YdqbkTjezcLF1izvNj3L\n 4169 \N 200.68.134.132 c61fd880-4168-41a8-854e-3f9db798b4e0 2020-11-24 23:21:45.078009 46689 3506 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1190\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-11-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1673\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.223 d438cee1-9a95-41ee-9fe4-a642659a18f4 2020-11-24 23:42:24.033403 46690 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 19 \N 189.186.1.223 d438cee1-9a95-41ee-9fe4-a642659a18f4 2020-11-24 23:42:24.066789 46691 3506 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.223 96ef78b0-0dd1-433c-89d4-5f91040e4a7a 2020-11-24 23:42:30.241853 46692 4639 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1190\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 3506\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1673\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1673 189.186.1.223 96ef78b0-0dd1-433c-89d4-5f91040e4a7a 2020-11-24 23:42:30.270746 46693 4640 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1190\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 3445\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1642 189.186.1.223 c438221c-c373-4058-a841-acf57f5deaab 2020-11-24 23:48:09.81519 46694 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-24 05:28:43.876660000 Z\n- &1 2020-11-24 21:26:41.074873000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-24 23:51:39.739557507 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729196\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083999\n mask_addr: 4294967295\nsign_in_count:\n- 401\n- 402\n 804 \N 189.186.1.223 a98db7f5-3f07-4f95-b8e4-e235841cf153 2020-11-24 23:51:39.750349 46695 1 User \N \N 1 User \N update ---\nunique_session_id:\n- csc77jGm1UFTSBMqzUy4\n- SgArSdUFnfs-EGK9cXd9\n 805 \N 189.186.1.223 a98db7f5-3f07-4f95-b8e4-e235841cf153 2020-11-24 23:51:39.773251 46696 4641 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1191\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1798E4\nmove_type: '1'\nsale_id: 3143\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1798E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-712 189.186.91.88 e1856ac2-fa2e-4cd5-93d4-a0668f212f1f 2020-11-25 00:13:30.547189 46697 3143 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 b4989efe-6e4d-447e-a78f-b2118febcd84 2020-11-25 00:13:32.038691 46698 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-10-31 23:10:29.644838000 Z\n- &1 2020-11-23 17:26:17.133700000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-25 00:15:35.107954506 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147139298\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535552\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535552\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 193\n- 194\n 388 \N 189.186.91.88 24602d6d-1fd9-408e-9c3c-95e67b229fbe 2020-11-25 00:15:35.119949 46699 9 User \N \N 9 User \N update ---\nunique_session_id:\n- rTJPdugUy98NzCxkWY1E\n- mzoAW3GzMc5aUrBQVWNf\n 389 \N 189.186.91.88 24602d6d-1fd9-408e-9c3c-95e67b229fbe 2020-11-25 00:15:35.140407 46700 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-24 01:13:57.147645000 Z\n- &1 2020-11-24 03:05:20.098838000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-25 00:20:19.793419924 Z\nsign_in_count:\n- 364\n- 365\n 731 \N 189.186.91.88 e16336b0-740f-4aa0-8684-4db728d58791 2020-11-25 00:20:19.799033 46701 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 6wkXbnqVsosEajyZhxLR\n- 9saUP_79tsNtA4dvedCo\n 732 \N 189.186.91.88 e16336b0-740f-4aa0-8684-4db728d58791 2020-11-25 00:20:19.813306 46702 3507 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1191\namount: !ruby/object:BigDecimal 18:0.189E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.189E3\nstatus: 0\ndate_sale: 2020-11-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-914\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 1dcba537-c63e-4dbd-9b13-36ab7d1678b2 2020-11-25 00:20:38.303666 46703 2088 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.91.88 1dcba537-c63e-4dbd-9b13-36ab7d1678b2 2020-11-25 00:20:38.337855 46704 3507 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 c3bf6e3f-0771-45e5-8bc0-93206754f464 2020-11-25 00:20:58.644732 46705 4642 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1191\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.189E3\nmove_type: '1'\nsale_id: 3507\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-914\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.189E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-914 189.186.91.88 c3bf6e3f-0771-45e5-8bc0-93206754f464 2020-11-25 00:20:58.678785 46706 3508 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1190\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-11-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1674\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.1.223 88acd9ed-8ff7-426a-8855-626cc9ee51fe 2020-11-25 00:27:22.411811 46707 1626 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.1.223 88acd9ed-8ff7-426a-8855-626cc9ee51fe 2020-11-25 00:27:22.439057 46708 3508 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.1.223 80006ebb-b2f1-416c-b617-0eca9b678b5e 2020-11-25 00:28:07.219625 46709 4643 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1190\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3508\ncardnumber: 8996\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1674\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1674 189.186.1.223 80006ebb-b2f1-416c-b617-0eca9b678b5e 2020-11-25 00:28:07.241618 46710 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-24 21:26:41.074873000 Z\n- &1 2020-11-24 23:51:39.739557000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-25 00:44:43.546358054 Z\nsign_in_count:\n- 402\n- 403\n 806 \N 189.186.1.223 97d20001-b44a-475a-b707-71e1f1592c7d 2020-11-25 00:44:43.584066 46711 1 User \N \N 1 User \N update ---\nunique_session_id:\n- SgArSdUFnfs-EGK9cXd9\n- vz3Zjcou96wgHe-JxtbU\n 807 \N 189.186.1.223 97d20001-b44a-475a-b707-71e1f1592c7d 2020-11-25 00:44:43.605853 46712 3509 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1191\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-11-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-915\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 c95c8a45-216a-468d-9487-1c1c04fb84f9 2020-11-25 01:05:26.674254 46713 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 80 \N 189.186.91.88 c95c8a45-216a-468d-9487-1c1c04fb84f9 2020-11-25 01:05:26.705491 46714 3509 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 192222d5-2344-479c-a180-79915e616740 2020-11-25 01:06:19.361218 46715 4644 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1191\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3509\ncardnumber: 1122\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-915\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-915 189.186.91.88 192222d5-2344-479c-a180-79915e616740 2020-11-25 01:06:19.385107 46716 3510 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1191\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-916\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 9c316439-ff28-4d8c-9b4c-86d23cbf59bd 2020-11-25 01:12:32.442865 46717 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 42 \N 189.186.91.88 9c316439-ff28-4d8c-9b4c-86d23cbf59bd 2020-11-25 01:12:32.47607 46718 3510 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 b74e885b-76d2-4f5e-a18b-4a6aed11906b 2020-11-25 01:12:37.751526 46719 4645 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1191\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3510\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-916\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1799E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-916 189.186.91.88 b74e885b-76d2-4f5e-a18b-4a6aed11906b 2020-11-25 01:12:37.779831 46720 4645 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1191\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 3510\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-916\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1799E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.91.88 70349757-f99c-44d1-a8eb-b98063a2fdd3 2020-11-25 01:12:45.751073 46721 4646 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1191\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 3510\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-916\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-916 189.186.91.88 66f12fc6-3b8c-4e14-96e6-682b022e6a4d 2020-11-25 01:12:50.60514 46722 3511 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1191\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-11-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-917\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 cfb090ed-2fcc-4590-9d49-ddad945ff32a 2020-11-25 01:22:49.07559 46723 2494 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.91.88 cfb090ed-2fcc-4590-9d49-ddad945ff32a 2020-11-25 01:22:49.116512 46724 3511 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 a06b3b78-64cf-4bcc-bbae-e8a007ab86d4 2020-11-25 01:23:20.586327 46725 4647 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1191\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 3511\ncardnumber: 1455\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-917\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-917 189.186.91.88 a06b3b78-64cf-4bcc-bbae-e8a007ab86d4 2020-11-25 01:23:20.614587 46726 3512 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1191\namount: !ruby/object:BigDecimal 18:0.207845E4\ntax: !ruby/object:BigDecimal 18:0.22055E3\ndiscount: !ruby/object:BigDecimal 18:0.7E3\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-11-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-918\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 0fa9324a-bdc9-48d2-9631-742f4e5ec7c1 2020-11-25 01:36:15.042728 46727 935 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 9 \N 189.186.91.88 0fa9324a-bdc9-48d2-9631-742f4e5ec7c1 2020-11-25 01:36:15.070975 46728 3512 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 46bc70d5-79c8-4f5e-81b0-b4df27e5ee8f 2020-11-25 01:36:23.593309 46729 4648 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1191\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 3512\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-918\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-918 189.186.91.88 46bc70d5-79c8-4f5e-81b0-b4df27e5ee8f 2020-11-25 01:36:23.625898 46730 1215 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1190\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5346E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.29E4\ncash_fund: !ruby/object:BigDecimal 18:0.1095E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3995E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.1.223 e8cc5564-9e05-4267-adb4-de0bfa2f081e 2020-11-25 01:50:55.305385 46731 1190 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.1.223 e8cc5564-9e05-4267-adb4-de0bfa2f081e 2020-11-25 01:50:55.320486 46732 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-24 23:51:39.739557000 Z\n- &1 2020-11-25 00:44:43.546358000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-25 01:51:25.089530859 Z\nsign_in_count:\n- 403\n- 404\n 808 \N 189.186.1.223 c14a0037-9fb1-4de9-a282-3723c5f52f22 2020-11-25 01:51:25.096938 46733 1 User \N \N 1 User \N update ---\nunique_session_id:\n- vz3Zjcou96wgHe-JxtbU\n- 42midb-za2tPdDme6cP4\n 809 \N 189.186.1.223 c14a0037-9fb1-4de9-a282-3723c5f52f22 2020-11-25 01:51:25.111388 46734 1216 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1191\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.8983E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.6598E4\ncash_fund: !ruby/object:BigDecimal 18:0.1379E4\nphysical_cash: !ruby/object:BigDecimal 18:0.7977E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 13f2737f-9658-493b-8897-7be57c8421eb 2020-11-25 02:10:19.425723 46735 1191 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 13f2737f-9658-493b-8897-7be57c8421eb 2020-11-25 02:10:19.463149 46736 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-24 00:02:32.525680000 Z\n- &1 2020-11-24 23:21:45.051956000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-25 03:58:38.392610165 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934084\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934084\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945789\n mask_addr: 4294967295\nsign_in_count:\n- 2084\n- 2085\n 4170 \N 200.68.180.61 d032c4a2-78a5-4be3-9e71-1aa121afa25d 2020-11-25 03:58:38.402326 46737 4 User \N \N 4 User \N update ---\nunique_session_id:\n- YdqbkTjezcLF1izvNj3L\n- FJv2eAGJ1as9Fy9vBgfs\n 4171 \N 200.68.180.61 d032c4a2-78a5-4be3-9e71-1aa121afa25d 2020-11-25 03:58:38.426393 46738 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-23 18:48:52.932330000 Z\n- &1 2020-11-24 21:20:42.207013000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-25 17:09:24.317871484 Z\nsign_in_count:\n- 348\n- 349\n 699 \N 189.186.91.88 661e186b-e385-4edb-a9ac-4047033591d6 2020-11-25 17:09:24.352646 46739 21 User \N \N 21 User \N update ---\nunique_session_id:\n- xiXPsEk7sYyaw4oy-Xxb\n- B1WbYs7Vo4rvD438tg7b\n 700 \N 189.186.91.88 661e186b-e385-4edb-a9ac-4047033591d6 2020-11-25 17:09:24.379375 46740 1192 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1379E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1379.0 189.186.91.88 aff261b0-30da-49e8-8a97-465573976456 2020-11-25 17:11:29.484951 46741 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-11-23 17:26:17.133700000 Z\n- &1 2020-11-25 00:15:35.107954000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-25 18:17:48.499602422 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535552\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 194\n- 195\n 390 \N 189.186.20.144 ed3f29bf-9287-4fdc-8a48-d3883361da5f 2020-11-25 18:17:48.538161 46742 9 User \N \N 9 User \N update ---\nunique_session_id:\n- mzoAW3GzMc5aUrBQVWNf\n- _S29epz_5TuCUxfntjj7\n 391 \N 189.186.20.144 ed3f29bf-9287-4fdc-8a48-d3883361da5f 2020-11-25 18:17:48.562521 46743 1193 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.1095E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1095.0 189.186.20.144 1d1e7c67-c9ab-49f8-83ec-24f23ae419f6 2020-11-25 18:18:00.109524 46744 4649 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1193\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.749E3\nmove_type: '1'\nsale_id: 3461\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.75E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1651 189.186.20.144 28b461aa-d038-413c-b07c-85e8c58869cf 2020-11-25 18:21:25.501904 46745 3461 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 bb0254d6-ffdf-4d03-b3bf-919c10d6f6e3 2020-11-25 18:21:27.73125 46772 1067 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 189.186.20.144 66d0867c-6afe-49b4-8679-87bfb4fbee4d 2020-11-25 20:16:50.595288 46746 3513 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1192\namount: !ruby/object:BigDecimal 18:0.1078E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1078E4\nstatus: 0\ndate_sale: 2020-11-25\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-919\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 06981298-c6d1-4361-b312-5eda06a690fb 2020-11-25 19:10:57.838582 46747 2588 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.91.88 06981298-c6d1-4361-b312-5eda06a690fb 2020-11-25 19:10:57.88446 46748 2572 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.91.88 06981298-c6d1-4361-b312-5eda06a690fb 2020-11-25 19:10:57.93285 46749 3513 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 17c83667-ffc7-4836-b870-e8ee11daa782 2020-11-25 19:11:26.645179 46750 4650 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1192\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1078E4\nmove_type: '1'\nsale_id: 3513\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-919\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '2165'\n 1 movimiento de efectivo por venta con folio PV3-V-919 189.186.91.88 17c83667-ffc7-4836-b870-e8ee11daa782 2020-11-25 19:11:26.667268 46751 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-24 23:21:45.051956000 Z\n- &1 2020-11-25 03:58:38.392610000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-25 19:27:58.085107061 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934084\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945789\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945789\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 2085\n- 2086\n 4172 \N 189.186.20.144 199b2da5-d8f1-4a7c-9007-111fb3ca7d9d 2020-11-25 19:27:58.093348 46752 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FJv2eAGJ1as9Fy9vBgfs\n- A7jevt4-waVjUYTzdRQs\n 4173 \N 189.186.20.144 199b2da5-d8f1-4a7c-9007-111fb3ca7d9d 2020-11-25 19:27:58.114322 46753 738 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-11-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.20.144 a61b07ba-a43d-4849-b94a-3ccb74497bda 2020-11-25 19:40:17.222356 46754 739 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-11-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.20.144 31dc71bc-d2c6-4227-8a2a-24bf87d180a9 2020-11-25 20:10:44.833309 46755 740 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-11-25\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.20.144 37e2fcf3-1dcd-422d-bf2a-ceed24e5399f 2020-11-25 20:15:06.489401 46756 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-11-25 00:15:35.107954000 Z\n- &1 2020-11-25 18:17:48.499602000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-25 20:16:12.573100470 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 195\n- 196\n 392 \N 189.186.20.144 930754ce-b54f-4b70-bc40-fda65e7a7820 2020-11-25 20:16:12.580581 46757 9 User \N \N 9 User \N update ---\nunique_session_id:\n- _S29epz_5TuCUxfntjj7\n- C4Cxmvifj7uC6BgUnS8p\n 393 \N 189.186.20.144 930754ce-b54f-4b70-bc40-fda65e7a7820 2020-11-25 20:16:12.596079 46758 740 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-25\n 2 Se dio entrada a traspaso de Almacen central a SUO 189.186.20.144 93a7e110-6fd8-4995-b64c-445af9a35810 2020-11-25 20:16:37.145516 46759 1060 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.20.144 93a7e110-6fd8-4995-b64c-445af9a35810 2020-11-25 20:16:37.172842 46760 1369 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.20.144 93a7e110-6fd8-4995-b64c-445af9a35810 2020-11-25 20:16:37.191853 46761 2626 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 879\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.20.144 93a7e110-6fd8-4995-b64c-445af9a35810 2020-11-25 20:16:37.213334 46762 1297 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 18 \N 189.186.20.144 93a7e110-6fd8-4995-b64c-445af9a35810 2020-11-25 20:16:37.230918 46763 1241 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 14 \N 189.186.20.144 93a7e110-6fd8-4995-b64c-445af9a35810 2020-11-25 20:16:37.247945 46764 1468 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.20.144 93a7e110-6fd8-4995-b64c-445af9a35810 2020-11-25 20:16:37.26609 46765 739 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-25\n 2 Se dio entrada a traspaso de Almacen central a SUO 189.186.20.144 66d0867c-6afe-49b4-8679-87bfb4fbee4d 2020-11-25 20:16:50.466624 46766 1045 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 14 \N 189.186.20.144 66d0867c-6afe-49b4-8679-87bfb4fbee4d 2020-11-25 20:16:50.48336 46767 1408 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.20.144 66d0867c-6afe-49b4-8679-87bfb4fbee4d 2020-11-25 20:16:50.499915 46768 1593 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.20.144 66d0867c-6afe-49b4-8679-87bfb4fbee4d 2020-11-25 20:16:50.51555 46769 1432 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.20.144 66d0867c-6afe-49b4-8679-87bfb4fbee4d 2020-11-25 20:16:50.533395 46770 2627 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 774\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.20.144 66d0867c-6afe-49b4-8679-87bfb4fbee4d 2020-11-25 20:16:50.555183 46771 2628 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 779\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.20.144 66d0867c-6afe-49b4-8679-87bfb4fbee4d 2020-11-25 20:16:50.576805 46773 1078 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.20.144 66d0867c-6afe-49b4-8679-87bfb4fbee4d 2020-11-25 20:16:50.612956 46774 1458 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.20.144 66d0867c-6afe-49b4-8679-87bfb4fbee4d 2020-11-25 20:16:50.629608 46775 1073 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.20.144 66d0867c-6afe-49b4-8679-87bfb4fbee4d 2020-11-25 20:16:50.646831 46776 1592 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.20.144 66d0867c-6afe-49b4-8679-87bfb4fbee4d 2020-11-25 20:16:50.664981 46777 1072 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.20.144 66d0867c-6afe-49b4-8679-87bfb4fbee4d 2020-11-25 20:16:50.681729 46778 1517 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.20.144 66d0867c-6afe-49b4-8679-87bfb4fbee4d 2020-11-25 20:16:50.698968 46779 1434 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.20.144 66d0867c-6afe-49b4-8679-87bfb4fbee4d 2020-11-25 20:16:50.717513 46780 738 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-25\n 2 Se dio entrada a traspaso de Almacen central a SUO 189.186.20.144 d2f30a07-45c5-441e-a7be-a02c08d175ff 2020-11-25 20:21:05.697569 46781 1596 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.20.144 d2f30a07-45c5-441e-a7be-a02c08d175ff 2020-11-25 20:21:05.721659 46782 1273 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 14 \N 189.186.20.144 d2f30a07-45c5-441e-a7be-a02c08d175ff 2020-11-25 20:21:05.74109 46783 1436 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.20.144 d2f30a07-45c5-441e-a7be-a02c08d175ff 2020-11-25 20:21:05.759313 46784 2629 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 767\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.20.144 d2f30a07-45c5-441e-a7be-a02c08d175ff 2020-11-25 20:21:05.782164 46785 1247 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 189.186.20.144 d2f30a07-45c5-441e-a7be-a02c08d175ff 2020-11-25 20:21:05.803288 46786 1276 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.7E1\n 5 \N 189.186.20.144 d2f30a07-45c5-441e-a7be-a02c08d175ff 2020-11-25 20:21:05.821673 46787 1398 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.20.144 d2f30a07-45c5-441e-a7be-a02c08d175ff 2020-11-25 20:21:05.841169 46788 1595 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.20.144 d2f30a07-45c5-441e-a7be-a02c08d175ff 2020-11-25 20:21:05.862047 46789 732 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-25\n 2 Se dio entrada a traspaso de Almacen central a SUO 189.186.20.144 fdac8704-d994-4270-a3a9-d3ef7fc9aace 2020-11-25 20:21:18.653573 46790 1460 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 189.186.20.144 fdac8704-d994-4270-a3a9-d3ef7fc9aace 2020-11-25 20:21:18.673975 46791 1469 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.20.144 fdac8704-d994-4270-a3a9-d3ef7fc9aace 2020-11-25 20:21:18.692772 46792 1370 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 189.186.20.144 fdac8704-d994-4270-a3a9-d3ef7fc9aace 2020-11-25 20:21:18.71279 46793 1597 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.20.144 fdac8704-d994-4270-a3a9-d3ef7fc9aace 2020-11-25 20:21:18.731884 46794 1272 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.20.144 fdac8704-d994-4270-a3a9-d3ef7fc9aace 2020-11-25 20:21:18.751941 46795 2630 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 765\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.20.144 fdac8704-d994-4270-a3a9-d3ef7fc9aace 2020-11-25 20:21:18.77625 46796 1602 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.20.144 fdac8704-d994-4270-a3a9-d3ef7fc9aace 2020-11-25 20:21:18.796613 46797 1487 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.20.144 fdac8704-d994-4270-a3a9-d3ef7fc9aace 2020-11-25 20:21:18.815609 46798 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-25 03:58:38.392610000 Z\n- &1 2020-11-25 19:27:58.085107000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-25 21:29:14.988700195 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945789\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 2086\n- 2087\n 4174 \N 189.186.20.144 36748374-4ab5-48f9-84f0-02c1fc6396fa 2020-11-25 21:29:14.995933 46799 4 User \N \N 4 User \N update ---\nunique_session_id:\n- A7jevt4-waVjUYTzdRQs\n- igUbztKsbbQGJSwRuP4G\n 4175 \N 189.186.20.144 36748374-4ab5-48f9-84f0-02c1fc6396fa 2020-11-25 21:29:15.025284 46800 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-25 00:44:43.546358000 Z\n- &1 2020-11-25 01:51:25.089530000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-25 22:13:53.507736401 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083999\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538773\n mask_addr: 4294967295\nsign_in_count:\n- 404\n- 405\n 810 \N 177.228.114.149 f054325a-606f-4838-aab5-baf20099d7a3 2020-11-25 22:13:53.514657 46801 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 42midb-za2tPdDme6cP4\n- c1ay1sYsmcQ1b__NzsyY\n 811 \N 177.228.114.149 f054325a-606f-4838-aab5-baf20099d7a3 2020-11-25 22:13:53.529718 46802 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-11-25 18:17:48.499602000 Z\n- &1 2020-11-25 20:16:12.573100000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-25 23:40:32.962407364 Z\nsign_in_count:\n- 196\n- 197\n 394 \N 189.186.20.144 dc7b5247-9630-4c2d-a1c8-f29b203876ce 2020-11-25 23:40:32.968433 46803 9 User \N \N 9 User \N update ---\nunique_session_id:\n- C4Cxmvifj7uC6BgUnS8p\n- UybpwFdXHse8VVtbBTyP\n 395 \N 189.186.20.144 dc7b5247-9630-4c2d-a1c8-f29b203876ce 2020-11-25 23:40:32.981891 46804 4651 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1162\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 3373\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.20.144 9e88abf2-4a4a-4432-85e1-6cd68fbaee4f 2020-11-25 23:41:35.438364 46805 4651 CashRegistersMove \N \N 9 User \N update ---\nopen_cash_register_id:\n- 1162\n- 1193\n 2 movimiento de efectivo por venta con folio PV1-V-1608 189.186.20.144 9e88abf2-4a4a-4432-85e1-6cd68fbaee4f 2020-11-25 23:41:35.487373 46806 3514 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1192\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2020-11-25\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-920\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 dd9de784-24c8-4616-b007-6f566c320355 2020-11-26 00:09:15.732103 46807 2566 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.91.88 dd9de784-24c8-4616-b007-6f566c320355 2020-11-26 00:09:15.760189 46808 3514 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 17688335-b836-428a-b007-2eb39898bd62 2020-11-26 00:09:54.709188 46809 4652 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1192\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.749E3\nmove_type: '1'\nsale_id: 3514\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-920\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.251E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-920 189.186.91.88 17688335-b836-428a-b007-2eb39898bd62 2020-11-26 00:09:54.741575 46810 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-25 19:27:58.085107000 Z\n- &1 2020-11-25 21:29:14.988700000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-26 00:14:18.829141927 Z\nsign_in_count:\n- 2087\n- 2088\n 4176 \N 189.186.20.144 1ccfc446-72f3-416e-b5fa-026833f00f79 2020-11-26 00:14:18.835271 46811 4 User \N \N 4 User \N update ---\nunique_session_id:\n- igUbztKsbbQGJSwRuP4G\n- s3-CtwazzWBN11s-PxsQ\n 4177 \N 189.186.20.144 1ccfc446-72f3-416e-b5fa-026833f00f79 2020-11-26 00:14:18.85201 46812 4653 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1192\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 2945\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-629 189.186.91.88 7f66c351-ca8c-42b6-8dd8-0065c4ff8078 2020-11-26 00:52:45.909193 46813 2945 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 2f0e8c8f-6b7d-4fef-8994-cb9ac3b78549 2020-11-26 00:52:52.779494 46814 1217 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1192\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.2827E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.928E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2928E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 c09dd7c7-ee40-496f-b754-583640dc39d8 2020-11-26 00:57:27.376987 46815 1192 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 c09dd7c7-ee40-496f-b754-583640dc39d8 2020-11-26 00:57:27.391727 46816 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-11-25 20:16:12.573100000 Z\n- &1 2020-11-25 23:40:32.962407000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-26 01:31:36.377646365 Z\nsign_in_count:\n- 197\n- 198\n 396 \N 189.186.20.144 acd95d77-249f-4101-9e2f-e3b1e7f378d4 2020-11-26 01:31:36.385238 46817 9 User \N \N 9 User \N update ---\nunique_session_id:\n- UybpwFdXHse8VVtbBTyP\n- yBPFTS5yLM5FQ1xZsuZP\n 397 \N 189.186.20.144 acd95d77-249f-4101-9e2f-e3b1e7f378d4 2020-11-26 01:31:36.404109 46818 1218 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 1193\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.1749E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.17E4\ncash_fund: !ruby/object:BigDecimal 18:0.1144E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2844E4\nobservations: FALTARON $20 DEL INICIO DEL DIA\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.144 cf778f08-442d-4505-a037-90720bd5dda0 2020-11-26 01:35:22.740005 46819 1193 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.144 cf778f08-442d-4505-a037-90720bd5dda0 2020-11-26 01:35:22.755319 46820 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-23 18:41:42.124348000 Z\n- &1 2020-11-24 17:25:59.959388000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-26 17:21:01.052898723 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083999\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 710\n- 711\n 1425 \N 189.186.20.144 28555047-ac0f-4d34-b9b5-a978550d9e97 2020-11-26 17:21:01.09207 46821 2 User \N \N 2 User \N update ---\nunique_session_id:\n- GqfTqb6xEXBjtn9L7Uyu\n- SByzfyq_YSABMNWws3Wm\n 1426 \N 189.186.20.144 28555047-ac0f-4d34-b9b5-a978550d9e97 2020-11-26 17:21:01.123058 46822 1194 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1144E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1144.0 189.186.20.144 d0f22250-63ea-4e8d-9efa-b8416b5a1d10 2020-11-26 17:21:46.985563 46823 2990 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.20.144 7f934d82-cfdf-4d95-bfd0-0bd0a68189d4 2020-11-26 18:31:14.011699 46824 2298 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 189.186.20.144 7f934d82-cfdf-4d95-bfd0-0bd0a68189d4 2020-11-26 18:31:14.03868 46825 4654 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1194\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.579E3\nmove_type: '1'\nsale_id: 3361\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.579E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1599 189.186.20.144 94e6db30-1e08-4a74-be02-36c0ba6ce0dc 2020-11-26 18:38:53.387434 46826 3361 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 3a25da05-a131-48d2-ad17-1d8c1022fa06 2020-11-26 18:38:54.539958 46827 2551 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.20.144 7709a2da-c1d7-48cf-af9f-213232494968 2020-11-26 18:44:24.011958 46828 256 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.20.144 7709a2da-c1d7-48cf-af9f-213232494968 2020-11-26 18:44:24.035769 46829 3515 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1194\namount: !ruby/object:BigDecimal 18:0.689E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.139E3\ntotal: !ruby/object:BigDecimal 18:0.55E3\nstatus: 0\ndate_sale: 2020-11-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1675\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 124931c0-ee35-457b-b63a-b01f5c48e749 2020-11-26 19:09:35.557896 46830 2629 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.20.144 124931c0-ee35-457b-b63a-b01f5c48e749 2020-11-26 19:09:35.641733 46831 3515 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 686d8267-334b-491a-a31b-7b04c0812cef 2020-11-26 19:09:44.954879 46832 4655 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1194\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.55E3\nmove_type: '1'\nsale_id: 3515\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1675\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.55E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1675 189.186.20.144 686d8267-334b-491a-a31b-7b04c0812cef 2020-11-26 19:09:44.982438 46833 1195 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.928E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 928.0 189.186.91.88 a929dd71-dc46-48f4-a7f4-34146e6c1b07 2020-11-26 19:49:45.243587 46834 1547 Product \N \N 21 User \N create ---\nsku: BOL-1547\nname: 3BLCV20442\ndescription: BOLSO CROSSBODY ORO\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170824360'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1547 fue creado. 189.186.91.88 c6614381-1f67-4516-af85-22fd4bcee83e 2020-11-26 19:53:40.386883 46835 2631 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1547\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 c6614381-1f67-4516-af85-22fd4bcee83e 2020-11-26 19:53:40.454028 46836 486 Purchase \N \N 21 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-141\namount: !ruby/object:BigDecimal 18:0.37475E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.37475E4\nobservations: ''\npurchase_date: 2020-11-26\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-141 por $ 3747.5 MXN creada. 189.186.91.88 64e94bf5-b28a-4298-a0fd-a581ce87a3e8 2020-11-26 19:53:48.995827 46837 2631 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.91.88 64e94bf5-b28a-4298-a0fd-a581ce87a3e8 2020-11-26 19:53:49.019336 46838 3516 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1194\namount: !ruby/object:BigDecimal 18:0.589E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2020-11-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1676\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 4e37673e-8d47-465c-8c34-437a479d09c3 2020-11-26 20:01:37.104821 46839 2538 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.20.144 4e37673e-8d47-465c-8c34-437a479d09c3 2020-11-26 20:01:37.139414 46840 3516 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 21259a0d-b29b-4294-b4f2-e56eb83a1f54 2020-11-26 20:01:41.974029 46841 4656 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1194\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.589E3\nmove_type: '1'\nsale_id: 3516\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1676\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.589E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1676 189.186.20.144 21259a0d-b29b-4294-b4f2-e56eb83a1f54 2020-11-26 20:01:42.001769 46842 451 Customer \N \N 2 User \N create ---\nnick_name: FERNANDA URETA BASTIDAS\nphone: "(667) 430-1872"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente FERNANDA URETA BASTIDAS fue registrado. 189.186.20.144 15510447-4eef-4318-94e1-ddcab2642876 2020-11-26 20:13:55.034765 46843 3517 Sale \N \N 2 User \N create ---\ncustomer_id: 451\nuser_id: 2\nopen_cash_register_id: 1194\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-26\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1677\nexpiration_date: 2020-12-31\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 02bb5dae-b269-4750-a26a-3a4d880eeae3 2020-11-26 20:15:11.242964 46844 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 20 \N 189.186.20.144 02bb5dae-b269-4750-a26a-3a4d880eeae3 2020-11-26 20:15:11.267809 46845 4657 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1194\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3517\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1677\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1677 189.186.20.144 c7462dd7-1ec9-4eea-8f2f-03e5debb7d82 2020-11-26 20:15:17.325077 46846 3517 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.20.144 ca3150e8-391f-4389-acfe-7bc653f853a3 2020-11-26 20:15:21.106792 46847 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-25 21:29:14.988700000 Z\n- &1 2020-11-26 00:14:18.829141000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-26 20:17:59.063146473 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2088\n- 2089\n 4178 \N 189.186.91.88 a09cf33e-712f-4308-91f4-b08bccfac720 2020-11-26 20:17:59.073076 46848 4 User \N \N 4 User \N update ---\nunique_session_id:\n- s3-CtwazzWBN11s-PxsQ\n- nX86Usd7VbmFzp1jyEU_\n 4179 \N 189.186.91.88 a09cf33e-712f-4308-91f4-b08bccfac720 2020-11-26 20:17:59.096446 46849 452 Customer \N \N 2 User \N create ---\nnick_name: ZULEMA CHAIDEZ\nphone: "(667) 320-7049"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ZULEMA CHAIDEZ fue registrado. 189.186.20.144 d2462c4b-d52c-4ef8-8aea-4995cc5edd51 2020-11-26 20:18:51.011007 46850 3518 Sale \N \N 2 User \N create ---\ncustomer_id: 452\nuser_id: 2\nopen_cash_register_id: 1194\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-26\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1678\nexpiration_date: 2020-12-31\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 c1d1989e-9e0a-4e71-a1d7-3d2271719a70 2020-11-26 20:20:07.694921 46851 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 21 \N 189.186.20.144 c1d1989e-9e0a-4e71-a1d7-3d2271719a70 2020-11-26 20:20:07.719136 46852 4658 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1194\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 3518\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1678\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1678 189.186.20.144 fdfdd190-cad3-4857-88a4-26ab81aa05f7 2020-11-26 20:20:14.272407 46853 3518 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.20.144 706255e8-894f-48ff-8c6a-09cce8c95737 2020-11-26 20:20:18.338273 46854 487 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-207\namount: !ruby/object:BigDecimal 18:0.4347E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4347E4\nobservations: ''\npurchase_date: 2020-11-26\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-207 por $ 4347.0 MXN creada. 189.186.91.88 133e6d24-07dd-4f4b-ad13-d92e9a99f3a2 2020-11-26 20:23:39.498712 46855 2369 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.8E1\n 21 \N 189.186.91.88 133e6d24-07dd-4f4b-ad13-d92e9a99f3a2 2020-11-26 20:23:39.521906 46856 2632 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1547\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.91.88 133e6d24-07dd-4f4b-ad13-d92e9a99f3a2 2020-11-26 20:23:39.548486 46857 488 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-142\namount: !ruby/object:BigDecimal 18:0.2798E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2798E4\nobservations: ''\npurchase_date: 2020-11-26\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-142 por $ 2798.0 MXN creada. 189.186.91.88 2bce142a-3bad-479d-8468-ff0682e92a2b 2020-11-26 20:23:59.707819 46858 2375 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.15E2\n 23 \N 189.186.91.88 2bce142a-3bad-479d-8468-ff0682e92a2b 2020-11-26 20:23:59.730315 46859 3519 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1194\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-11-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1679\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 4acc2353-d437-4fb8-8a17-2685046b16d5 2020-11-26 20:26:18.963673 46860 2513 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.20.144 4acc2353-d437-4fb8-8a17-2685046b16d5 2020-11-26 20:26:18.992017 46861 3519 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 f4e4cf67-0a40-4195-9acb-a191f69e83d8 2020-11-26 20:26:47.967304 46862 4659 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1194\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 3519\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1679\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1679 189.186.20.144 f4e4cf67-0a40-4195-9acb-a191f69e83d8 2020-11-26 20:26:47.992638 46863 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-25 01:51:25.089530000 Z\n- &1 2020-11-25 22:13:53.507736000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-26 20:37:36.582719612 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083999\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538773\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538773\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 405\n- 406\n 812 \N 189.186.20.144 a8c980fa-84da-4e43-80db-aadd9dcd9007 2020-11-26 20:37:36.591908 46864 1 User \N \N 1 User \N update ---\nunique_session_id:\n- c1ay1sYsmcQ1b__NzsyY\n- zK1zWDzCBGaDkf6EoUp-\n 813 \N 189.186.20.144 a8c980fa-84da-4e43-80db-aadd9dcd9007 2020-11-26 20:37:36.61155 46865 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-24 03:05:20.098838000 Z\n- &1 2020-11-25 00:20:19.793419000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-26 21:57:26.440725405 Z\nsign_in_count:\n- 365\n- 366\n 733 \N 189.186.91.88 2d6d9e3d-167c-4d1a-b12d-7badf3c9bf9a 2020-11-26 21:57:26.447097 46866 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 9saUP_79tsNtA4dvedCo\n- sCYyrjozzTcZgWEf2d-b\n 734 \N 189.186.91.88 2d6d9e3d-167c-4d1a-b12d-7badf3c9bf9a 2020-11-26 21:57:26.460965 46867 3520 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1195\namount: !ruby/object:BigDecimal 18:0.249E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.249E3\nstatus: 0\ndate_sale: 2020-11-26\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-921\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 eeec2504-7733-42f1-b8ee-7e2df102edb0 2020-11-26 21:57:51.489022 46868 2109 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.91.88 eeec2504-7733-42f1-b8ee-7e2df102edb0 2020-11-26 21:57:51.51453 46869 3520 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 9b9d78f4-8257-4170-b74a-6276123592e8 2020-11-26 21:57:59.09184 46870 4660 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1195\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.249E3\nmove_type: '1'\nsale_id: 3520\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-921\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-921 189.186.91.88 9b9d78f4-8257-4170-b74a-6276123592e8 2020-11-26 21:57:59.11271 46919 1873 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.20.144 f0be5219-7080-4826-a805-3b09485528e1 2020-11-27 00:46:12.48457 46920 1140 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 12 \N 189.186.20.144 f0be5219-7080-4826-a805-3b09485528e1 2020-11-27 00:46:12.509206 46871 3521 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1194\namount: !ruby/object:BigDecimal 18:0.119E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.119E3\nstatus: 0\ndate_sale: 2020-11-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1680\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 fb767493-955d-42ed-a2e2-e69a8d04607a 2020-11-26 21:58:09.811652 46872 2479 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.20.144 fb767493-955d-42ed-a2e2-e69a8d04607a 2020-11-26 21:58:09.839908 46873 3521 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 90ccc6e2-e5d3-42ab-9bd6-96899f92998a 2020-11-26 21:58:13.545594 46874 4661 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1194\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.119E3\nmove_type: '1'\nsale_id: 3521\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1680\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.119E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1680 189.186.20.144 90ccc6e2-e5d3-42ab-9bd6-96899f92998a 2020-11-26 21:58:13.565375 46875 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-26 00:14:18.829141000 Z\n- &1 2020-11-26 20:17:59.063146000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-26 22:38:47.255049047 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2089\n- 2090\n 4180 \N 189.186.91.88 3ae09705-aa8d-46e6-acf1-9419dc7a40b2 2020-11-26 22:38:47.263377 46876 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nX86Usd7VbmFzp1jyEU_\n- JbKyXutv2FPJgGaJy1du\n 4181 \N 189.186.91.88 3ae09705-aa8d-46e6-acf1-9419dc7a40b2 2020-11-26 22:38:47.28853 46877 3522 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1194\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2020-11-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1681\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 596d6e9d-4535-4dcf-b911-689bacf59587 2020-11-26 22:58:24.072723 46878 2253 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.20.144 596d6e9d-4535-4dcf-b911-689bacf59587 2020-11-26 22:58:24.101829 46879 3522 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 cbbf4b78-e209-4f0a-9d73-a8641bff0dd4 2020-11-26 22:58:31.497371 46880 4662 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1194\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.479E3\nmove_type: '1'\nsale_id: 3522\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1681\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.479E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1681 189.186.20.144 cbbf4b78-e209-4f0a-9d73-a8641bff0dd4 2020-11-26 22:58:31.517176 46881 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-25 22:13:53.507736000 Z\n- &1 2020-11-26 20:37:36.582719000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-26 23:02:44.489951658 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984538773\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 406\n- 407\n 814 \N 189.186.20.144 238b0047-b09d-4847-ae28-20e52a62fe53 2020-11-26 23:02:44.498418 46882 1 User \N \N 1 User \N update ---\nunique_session_id:\n- zK1zWDzCBGaDkf6EoUp-\n- f4WRczpgW4Kpwp8FbxXT\n 815 \N 189.186.20.144 238b0047-b09d-4847-ae28-20e52a62fe53 2020-11-26 23:02:44.516076 46883 3523 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1194\namount: !ruby/object:BigDecimal 18:0.825E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.825E3\nstatus: 0\ndate_sale: 2020-11-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1682\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 88a9e9ca-d3da-4551-acaa-5999375290cf 2020-11-27 00:05:17.485261 46884 2539 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.20.144 88a9e9ca-d3da-4551-acaa-5999375290cf 2020-11-27 00:05:17.522638 46885 3523 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1682 cancelada. 189.186.20.144 2150c6e6-624a-4c78-9d1a-ba15e503fafd 2020-11-27 00:05:24.529079 46886 2539 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.20.144 2150c6e6-624a-4c78-9d1a-ba15e503fafd 2020-11-27 00:05:24.557535 46887 489 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-208\namount: !ruby/object:BigDecimal 18:0.1705E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1705E4\nobservations: ''\npurchase_date: 2020-11-26\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-208 por $ 1705.0 MXN creada. 189.186.20.144 e5902c30-685b-4669-8503-df0a38cfde93 2020-11-27 00:07:46.36344 46888 2612 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.20.144 e5902c30-685b-4669-8503-df0a38cfde93 2020-11-27 00:07:46.384689 46889 3524 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1194\namount: !ruby/object:BigDecimal 18:0.1674E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1674E4\nstatus: 0\ndate_sale: 2020-11-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1683\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 b0503ae8-ae1f-4cc7-9340-72a7b18acd2f 2020-11-27 00:08:29.852626 46890 2612 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.20.144 b0503ae8-ae1f-4cc7-9340-72a7b18acd2f 2020-11-27 00:08:29.886385 46891 2539 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.20.144 b0503ae8-ae1f-4cc7-9340-72a7b18acd2f 2020-11-27 00:08:29.917865 46892 3524 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 0f5900bc-d624-4072-ac55-f04db51d5303 2020-11-27 00:08:46.591818 46893 4663 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1194\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 3524\ncardnumber: 3674\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1683\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1683 189.186.20.144 0f5900bc-d624-4072-ac55-f04db51d5303 2020-11-27 00:08:46.61503 46894 4664 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1194\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.674E3\nmove_type: '1'\nsale_id: 3524\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1683\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.674E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1683 189.186.20.144 c9ad0b3c-3e70-4e2f-837a-14f66505597f 2020-11-27 00:08:54.257542 46895 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-25 00:20:19.793419000 Z\n- &1 2020-11-26 21:57:26.440725000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-27 00:12:44.605210363 Z\nsign_in_count:\n- 366\n- 367\n 735 \N 189.186.91.88 a85592c6-22f5-484b-9053-dafee7075f86 2020-11-27 00:12:44.610986 46896 18 User \N \N 18 User \N update ---\nunique_session_id:\n- sCYyrjozzTcZgWEf2d-b\n- 7v4AhU3UJ-zSahZR7ueC\n 736 \N 189.186.91.88 a85592c6-22f5-484b-9053-dafee7075f86 2020-11-27 00:12:44.625277 46897 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-26 20:17:59.063146000 Z\n- &1 2020-11-26 22:38:47.255049000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-27 00:14:26.218596441 Z\nsign_in_count:\n- 2090\n- 2091\n 4182 \N 189.186.91.88 8d8ef927-92b3-410d-8165-5fc8803bcc4d 2020-11-27 00:14:26.227153 46898 4 User \N \N 4 User \N update ---\nunique_session_id:\n- JbKyXutv2FPJgGaJy1du\n- FaxvW-dJx1WE9ys_wCtA\n 4183 \N 189.186.91.88 8d8ef927-92b3-410d-8165-5fc8803bcc4d 2020-11-27 00:14:26.249928 46899 741 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-11-26\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.91.88 82f1b32d-a2e1-4179-ada1-6d9733a3d64e 2020-11-27 00:15:23.59466 46900 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-26 21:57:26.440725000 Z\n- &1 2020-11-27 00:12:44.605210000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-27 00:15:45.298223769 Z\nsign_in_count:\n- 367\n- 368\n 737 \N 189.186.91.88 8be03a2a-3aec-4c2c-b29f-3ae3f21f6221 2020-11-27 00:15:45.321391 46901 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 7v4AhU3UJ-zSahZR7ueC\n- C7GatjqSiv685kMNU-dy\n 738 \N 189.186.91.88 8be03a2a-3aec-4c2c-b29f-3ae3f21f6221 2020-11-27 00:15:45.3401 46902 741 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-26\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.91.88 81e68c40-9fb3-4f82-a6ec-8a47cf35a80e 2020-11-27 00:15:56.107631 46903 1134 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 189.186.91.88 81e68c40-9fb3-4f82-a6ec-8a47cf35a80e 2020-11-27 00:15:56.129094 46904 3525 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1195\namount: !ruby/object:BigDecimal 18:0.1654E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1654E4\nstatus: 0\ndate_sale: 2020-11-26\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-922\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 2282d85b-52d5-4940-9b34-34a4f7620ccf 2020-11-27 00:17:33.173614 46905 1134 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 189.186.91.88 2282d85b-52d5-4940-9b34-34a4f7620ccf 2020-11-27 00:17:33.202709 46906 2589 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.91.88 2282d85b-52d5-4940-9b34-34a4f7620ccf 2020-11-27 00:17:33.226675 46907 3525 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 6b80cb78-4113-40d7-9475-85c905e5a8ce 2020-11-27 00:18:14.072467 46908 4665 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1195\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1654E4\nmove_type: '1'\nsale_id: 3525\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-922\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.18E4\nchange: !ruby/object:BigDecimal 18:0.146E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-922 189.186.91.88 6b80cb78-4113-40d7-9475-85c905e5a8ce 2020-11-27 00:18:14.095198 46909 3526 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1194\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-11-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1684\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 68bd6097-cdc3-42e6-828d-84a77c3230bf 2020-11-27 00:24:38.175752 46910 2511 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.20.144 68bd6097-cdc3-42e6-828d-84a77c3230bf 2020-11-27 00:24:38.205801 46911 3526 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 9372215e-de03-4255-bd0f-9c8fc0474255 2020-11-27 00:24:44.960765 46912 4666 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1194\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 3526\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1684\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1684 189.186.20.144 9372215e-de03-4255-bd0f-9c8fc0474255 2020-11-27 00:24:44.982921 46913 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-26 22:38:47.255049000 Z\n- &1 2020-11-27 00:14:26.218596000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-27 00:36:25.414189016 Z\nsign_in_count:\n- 2091\n- 2092\n 4184 \N 189.186.91.88 2afa7ca4-1644-4505-8553-62544cee495b 2020-11-27 00:36:25.420367 46914 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FaxvW-dJx1WE9ys_wCtA\n- 7hnyxqx74mwktLes1G75\n 4185 \N 189.186.91.88 2afa7ca4-1644-4505-8553-62544cee495b 2020-11-27 00:36:25.436822 46915 490 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-209\namount: !ruby/object:BigDecimal 18:0.29262E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.29262E4\nobservations: ''\npurchase_date: 2020-11-26\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-209 por $ 2926.2 MXN creada. 189.186.20.144 f0be5219-7080-4826-a805-3b09485528e1 2020-11-27 00:46:12.387791 46916 1443 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.20.144 f0be5219-7080-4826-a805-3b09485528e1 2020-11-27 00:46:12.411404 46917 1599 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.20.144 f0be5219-7080-4826-a805-3b09485528e1 2020-11-27 00:46:12.435895 46918 1598 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.20.144 f0be5219-7080-4826-a805-3b09485528e1 2020-11-27 00:46:12.461035 46921 3527 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1194\namount: !ruby/object:BigDecimal 18:0.589E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2020-11-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1685\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 7c9f97bd-fda9-4a46-9113-fa145583ff43 2020-11-27 00:46:31.752476 46922 1598 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.20.144 7c9f97bd-fda9-4a46-9113-fa145583ff43 2020-11-27 00:46:31.804032 46923 3527 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 a20ee91e-52c8-4116-b728-fcfe6bb91af1 2020-11-27 00:46:35.81738 46924 4667 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1194\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.589E3\nmove_type: '1'\nsale_id: 3527\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1685\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.589E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1685 189.186.20.144 a20ee91e-52c8-4116-b728-fcfe6bb91af1 2020-11-27 00:46:35.837914 46925 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-27 00:12:44.605210000 Z\n- &1 2020-11-27 00:15:45.298223000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-27 01:05:30.995321753 Z\nsign_in_count:\n- 368\n- 369\n 739 \N 189.186.91.88 46845e45-796b-4e26-9d12-e4f5e45ea1cf 2020-11-27 01:05:31.005373 46926 18 User \N \N 18 User \N update ---\nunique_session_id:\n- C7GatjqSiv685kMNU-dy\n- EQJzFHGV5vzbsspxHHoj\n 740 \N 189.186.91.88 46845e45-796b-4e26-9d12-e4f5e45ea1cf 2020-11-27 01:05:31.028395 46927 3528 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1195\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-11-26\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-923\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 98d460dc-15c2-4736-927c-cdb40a41a57c 2020-11-27 01:06:04.20391 46928 2482 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.91.88 98d460dc-15c2-4736-927c-cdb40a41a57c 2020-11-27 01:06:04.231692 46929 3528 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 1979bdb1-005d-47d9-a018-64f4c1c6d35d 2020-11-27 01:06:10.477486 46930 4668 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1195\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 3528\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-923\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-923 189.186.91.88 1979bdb1-005d-47d9-a018-64f4c1c6d35d 2020-11-27 01:06:10.498028 46931 3529 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1195\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-26\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-924\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 d248c270-f3b8-4091-a010-7aeaafccf002 2020-11-27 01:15:01.621592 46932 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 43 \N 189.186.91.88 d248c270-f3b8-4091-a010-7aeaafccf002 2020-11-27 01:15:01.648339 46933 3529 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 31808ac0-637a-4ad7-8f18-00a6cdbaba54 2020-11-27 01:19:30.434141 46934 4669 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1195\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3529\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-924\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '25255'\n 1 movimiento de efectivo por venta con folio PV3-V-924 189.186.91.88 31808ac0-637a-4ad7-8f18-00a6cdbaba54 2020-11-27 01:19:30.457843 46935 491 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-143\namount: !ruby/object:BigDecimal 18:0.26985E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.26985E4\nobservations: ''\npurchase_date: 2020-11-26\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-143 por $ 2698.5 MXN creada. 189.186.91.88 fa79db23-b5fa-48d5-95df-ddf5fc033d25 2020-11-27 01:20:46.194428 46936 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.16E2\n 44 \N 189.186.91.88 fa79db23-b5fa-48d5-95df-ddf5fc033d25 2020-11-27 01:20:46.21754 46937 3530 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1195\namount: !ruby/object:BigDecimal 18:0.2898E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2898E4\nstatus: 0\ndate_sale: 2020-11-26\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-925\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 bc0e2aba-fe1c-4c4b-bd1e-812a89ad2d26 2020-11-27 01:32:45.770587 46938 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.16E2\n- !ruby/object:BigDecimal 18:0.15E2\n 45 \N 189.186.91.88 bc0e2aba-fe1c-4c4b-bd1e-812a89ad2d26 2020-11-27 01:32:45.801301 46939 2300 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.91.88 bc0e2aba-fe1c-4c4b-bd1e-812a89ad2d26 2020-11-27 01:32:45.847953 46940 3530 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 cac4ee5a-9450-4c3b-8e81-4c1e0af83a53 2020-11-27 01:32:55.665141 46941 4670 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1195\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.2898E4\nmove_type: '1'\nsale_id: 3530\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-925\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1225'\n 1 movimiento de efectivo por venta con folio PV3-V-925 189.186.91.88 cac4ee5a-9450-4c3b-8e81-4c1e0af83a53 2020-11-27 01:32:55.68873 46942 4671 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1194\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.155E4\nmove_type: '1'\nsale_id: 3518\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.155E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1678 189.186.20.144 e72c914d-e1b1-4ee0-bd90-a54d79c31d0c 2020-11-27 01:36:59.915918 46943 4671 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1194\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.155E4\nmove_type: '1'\nsale_id: 3518\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.155E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.20.144 3c1d5ed2-17ce-4b73-9353-dfc8a6c92618 2020-11-27 01:37:10.438949 46944 4672 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1194\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1549E4\nmove_type: '1'\nsale_id: 3518\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1549E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1678 189.186.20.144 789cffd0-be84-4457-a8db-9310d6f02c90 2020-11-27 01:37:41.569775 46945 3518 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 3e8da5c1-2639-48ef-8d70-a1759a069651 2020-11-27 01:37:50.862414 46946 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-27 00:14:26.218596000 Z\n- &1 2020-11-27 00:36:25.414189000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-27 01:42:24.921458744 Z\nsign_in_count:\n- 2092\n- 2093\n 4186 \N 189.186.91.88 418aa993-7f77-42d9-9f62-ac7935122fc2 2020-11-27 01:42:24.930368 46947 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7hnyxqx74mwktLes1G75\n- Tw6dvKoK5LY2tmW42m5e\n 4187 \N 189.186.91.88 418aa993-7f77-42d9-9f62-ac7935122fc2 2020-11-27 01:42:24.953439 46948 1 PosConfig \N \N 4 User \N update ---\ncancel_partial_payment:\n- 35\n- 20\ndays_cancel_sale:\n- 15\n- 20\nticket_img:\n- !ruby/object:ImageUploader\n model: &13 !ruby/object:PosConfig\n raw_attributes:\n id: '1'\n cancel_partial_payment: '20'\n refund_sale: '15'\n days_cancel_sale: '20'\n days_cancel_purchase: '100'\n tax_percent: '16.0'\n time_zone: Chihuahua\n gain_margin: '100.0'\n ticket_description: "RFC. UIOS851003N7A\\r\\nMORELOS #297 LOC.4 \\r\\nCENTRO CP.8000\n \\r\\nDR. MORA #1725 LOC. 1F\\r\\nLA CAMPIÑA CP.80060\\r\\nCULIACAN, SIN \\r\\nTEL.\n 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK: SUO\n BOUTIQUE\\r\\n"\n reserve_sale_percent: '10.0'\n days_cancel_reserved: '35'\n commission_percent: '1'\n ticket_footer: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN ETIQUETA\n O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img: thumbnail_D5A04C3E-BCE1-49AA-BEAF-CFAC394D6790.png\n haggle_in_sale_percent: '20'\n enable_haggle: 'true'\n add_iva_to_pre_sales: 'false'\n created_at: '2019-01-28 18:10:20.808419'\n updated_at: &10 2020-11-27 01:44:08.634091780 Z\n ticket_img_file_name: \n ticket_img_content_type: \n ticket_img_file_size: \n ticket_img_updated_at: \n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n cancel_partial_payment: *1\n refund_sale: *1\n days_cancel_sale: *1\n days_cancel_purchase: *1\n tax_percent: &2 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n time_zone: &6 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n gain_margin: *2\n created_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n updated_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n ticket_description: &7 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n days_cancel_reserved: *1\n reserve_sale_percent: &8 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n commission_percent: *1\n ticket_footer: &4 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n ticket_img_file_name: *4\n ticket_img_content_type: *4\n ticket_img_file_size: *1\n ticket_img_updated_at: &12 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *3\n haggle_in_sale_percent: *1\n ticket_img: *4\n enable_haggle: &5 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n add_iva_to_pre_sales: *5\n values:\n id: '1'\n cancel_partial_payment: '35'\n refund_sale: '15'\n days_cancel_sale: '15'\n days_cancel_purchase: '100'\n tax_percent: '16.0'\n time_zone: Chihuahua\n gain_margin: '100.0'\n created_at: '2019-01-28 18:10:20.808419'\n updated_at: '2020-09-03 18:50:24.811309'\n ticket_description: "RFC. UIOS851003N7A\\r\\nMORELOS #297 LOC.4 \\r\\nCENTRO\n CP.8000 \\r\\nDR. MORA #1725 LOC. 1F\\r\\nLA CAMPIÑA CP.80060\\r\\nCULIACAN,\n SIN \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n days_cancel_reserved: '35'\n reserve_sale_percent: '10.00'\n commission_percent: '1'\n ticket_footer: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN\n DEVOLUCIONES EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA,\n SIN ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img_file_name: \n ticket_img_content_type: \n ticket_img_file_size: \n ticket_img_updated_at: \n haggle_in_sale_percent: '20'\n ticket_img: Sin_título.png\n enable_haggle: t\n add_iva_to_pre_sales: f\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1'\n type: *1\n value: 1\n cancel_partial_payment: !ruby/object:ActiveRecord::Attribute::FromUser\n name: cancel_partial_payment\n value_before_type_cast: '20'\n type: *1\n value: 20\n refund_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: refund_sale\n value_before_type_cast: '15'\n type: *1\n value: 15\n days_cancel_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_sale\n value_before_type_cast: '20'\n type: *1\n value: 20\n days_cancel_purchase: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_purchase\n value_before_type_cast: '100'\n type: *1\n value: 100\n tax_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: tax_percent\n value_before_type_cast: '16.0'\n type: *2\n value: !ruby/object:BigDecimal 18:0.16E2\n time_zone: !ruby/object:ActiveRecord::Attribute::FromUser\n name: time_zone\n value_before_type_cast: Chihuahua\n type: *6\n value: Chihuahua\n gain_margin: !ruby/object:ActiveRecord::Attribute::FromUser\n name: gain_margin\n value_before_type_cast: '100.0'\n type: *2\n value: !ruby/object:BigDecimal 18:0.1E3\n ticket_description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_description\n value_before_type_cast: "RFC. UIOS851003N7A\\r\\nMORELOS #297 LOC.4 \\r\\nCENTRO\n CP.8000 \\r\\nDR. MORA #1725 LOC. 1F\\r\\nLA CAMPIÑA CP.80060\\r\\nCULIACAN,\n SIN \\r\\nTEL. 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n type: *7\n value: "RFC. UIOS851003N7A\\r\\nMORELOS #297 LOC.4 \\r\\nCENTRO CP.8000 \\r\\nDR.\n MORA #1725 LOC. 1F\\r\\nLA CAMPIÑA CP.80060\\r\\nCULIACAN, SIN \\r\\nTEL.\n 6677138363\\r\\nCEL. 6674218811\\r\\nINSTAGRAM: SUO.BOUTIQUE\\r\\nFACEBOOK:\n SUO BOUTIQUE\\r\\n"\n reserve_sale_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: reserve_sale_percent\n value_before_type_cast: '10.0'\n type: *8\n value: !ruby/object:BigDecimal 18:0.1E2\n days_cancel_reserved: !ruby/object:ActiveRecord::Attribute::FromUser\n name: days_cancel_reserved\n value_before_type_cast: '35'\n type: *1\n value: 35\n commission_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: commission_percent\n value_before_type_cast: '1'\n type: *1\n value: 1\n ticket_footer: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_footer\n value_before_type_cast: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n*\n NO APLICAN DEVOLUCIONES EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA\n MERCANCÍA DAÑADA, SIN ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN\n VIGENCIA 30 DÍAS "\n type: *4\n value: "* SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\\r\\n* NO APLICAN DEVOLUCIONES\n EN PROMOCIONES Y APARTADOS \\r\\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN\n ETIQUETA O MAL ESTADO \\r\\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS "\n ticket_img: !ruby/object:ActiveRecord::Attribute::FromUser\n name: ticket_img\n value_before_type_cast: thumbnail_D5A04C3E-BCE1-49AA-BEAF-CFAC394D6790.png\n type: *4\n value: thumbnail_D5A04C3E-BCE1-49AA-BEAF-CFAC394D6790.png\n haggle_in_sale_percent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: haggle_in_sale_percent\n value_before_type_cast: '20'\n type: *1\n value: 20\n enable_haggle: !ruby/object:ActiveRecord::Attribute::FromUser\n name: enable_haggle\n value_before_type_cast: 'true'\n type: *5\n value: true\n add_iva_to_pre_sales: !ruby/object:ActiveRecord::Attribute::FromUser\n name: add_iva_to_pre_sales\n value_before_type_cast: 'false'\n type: *5\n value: false\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2019-01-28 18:10:20.808419'\n type: *9\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *10\n type: *11\n value: *10\n ticket_img_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_file_name\n value_before_type_cast: \n type: *4\n ticket_img_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_content_type\n value_before_type_cast: \n type: *4\n ticket_img_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_file_size\n value_before_type_cast: \n type: *1\n ticket_img_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: ticket_img_updated_at\n value_before_type_cast: \n type: *12\n new_record: false\n mounted_as: :ticket_img\n storage: &14 !ruby/object:CarrierWave::Storage::File\n uploader: &15 !ruby/object:ImageUploader\n model: *13\n mounted_as: :ticket_img\n storage: *14\n file: &19 !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/Sin_título.png"\n original_filename: \n content_type: \n versions: &20\n :thumb: &16 !ruby/object:ImageUploader::Uploader53222620\n model: *13\n mounted_as: :ticket_img\n parent_version: *15\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *16\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/thumb_Sin_título.png"\n original_filename: \n content_type: \n versions: {}\n :medium: &17 !ruby/object:ImageUploader::Uploader53216420\n model: *13\n mounted_as: :ticket_img\n parent_version: *15\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *17\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/medium_Sin_título.png"\n original_filename: \n content_type: \n versions: {}\n :small: &18 !ruby/object:ImageUploader::Uploader53203180\n model: *13\n mounted_as: :ticket_img\n parent_version: *15\n storage: !ruby/object:CarrierWave::Storage::File\n uploader: *18\n file: !ruby/object:CarrierWave::SanitizedFile\n file: "/var/www/pos-boutique/public/uploads/small_Sin_título.png"\n original_filename: \n content_type: \n versions: {}\n file: *19\n versions: *20\n- thumbnail_D5A04C3E-BCE1-49AA-BEAF-CFAC394D6790.png\n 19 Se actualizaron los parámetros generales 189.186.91.88 4c65388b-a6bc-4836-b5ff-07e80ba0614c 2020-11-27 01:44:08.685172 46949 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-27 00:15:45.298223000 Z\n- &1 2020-11-27 01:05:30.995321000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-27 01:47:15.833961920 Z\nsign_in_count:\n- 369\n- 370\n 741 \N 189.186.91.88 58ffebf8-7d60-4626-a9e1-0309ed798b88 2020-11-27 01:47:15.840279 46950 18 User \N \N 18 User \N update ---\nunique_session_id:\n- EQJzFHGV5vzbsspxHHoj\n- up5unADUah1xzKu9vfR2\n 742 \N 189.186.91.88 58ffebf8-7d60-4626-a9e1-0309ed798b88 2020-11-27 01:47:15.86878 46951 1219 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1194\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.8876E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.79E4\ncash_fund: !ruby/object:BigDecimal 18:0.112E4\nphysical_cash: !ruby/object:BigDecimal 18:0.902E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.144 47a96232-df55-470e-acea-ad5e686241c4 2020-11-27 01:52:49.055289 46952 1194 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.144 47a96232-df55-470e-acea-ad5e686241c4 2020-11-27 01:52:49.071077 46953 3531 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1195\namount: !ruby/object:BigDecimal 18:0.1251E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1251E4\nstatus: 0\ndate_sale: 2020-11-26\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-926\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 5e23ac87-e669-4926-98d7-3420feec1fde 2020-11-27 02:05:10.12015 46954 2616 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.91.88 5e23ac87-e669-4926-98d7-3420feec1fde 2020-11-27 02:05:10.156098 46955 3531 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 19f4e8fa-b58c-42b8-95f8-a1ab26ccda87 2020-11-27 02:06:33.796533 46956 4673 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1195\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1251E4\nmove_type: '1'\nsale_id: 3531\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-926\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1251E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-926 189.186.91.88 19f4e8fa-b58c-42b8-95f8-a1ab26ccda87 2020-11-27 02:06:33.819523 46957 1220 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1195\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.905E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.43E4\ncash_fund: !ruby/object:BigDecimal 18:0.981E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5281E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 1d905fd5-1c25-4fa1-afd6-0585a135038a 2020-11-27 02:11:02.42775 46958 1195 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 1d905fd5-1c25-4fa1-afd6-0585a135038a 2020-11-27 02:11:02.442376 46959 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-27 01:05:30.995321000 Z\n- &1 2020-11-27 01:47:15.833961000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-27 02:29:25.845464943 Z\nsign_in_count:\n- 370\n- 371\n 743 \N 189.186.91.88 b1542fe9-f135-42ce-b007-a00344b823b5 2020-11-27 02:29:25.851521 46960 18 User \N \N 18 User \N update ---\nunique_session_id:\n- up5unADUah1xzKu9vfR2\n- Wb7HVFux26XfjzPtgrcL\n 744 \N 189.186.91.88 b1542fe9-f135-42ce-b007-a00344b823b5 2020-11-27 02:29:25.865069 46961 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-24 21:20:42.207013000 Z\n- &1 2020-11-25 17:09:24.317871000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-27 17:59:51.320233086 Z\nsign_in_count:\n- 349\n- 350\n 701 \N 189.186.91.88 e48b6a50-2d6d-4a79-9125-7fd10a474b68 2020-11-27 17:59:51.346877 46962 21 User \N \N 21 User \N update ---\nunique_session_id:\n- B1WbYs7Vo4rvD438tg7b\n- wnSxeAnTdnMGdvo5sw8q\n 702 \N 189.186.91.88 e48b6a50-2d6d-4a79-9125-7fd10a474b68 2020-11-27 17:59:51.371868 46963 1196 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.981E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 981.0 189.186.91.88 f2cb9be5-cdfb-4251-ab69-bc6d3bb56ec7 2020-11-27 18:05:53.169572 46964 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-24 17:25:59.959388000 Z\n- &1 2020-11-26 17:21:01.052898000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-27 18:17:52.406785346 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183083999\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 711\n- 712\n 1427 \N 189.186.20.144 809acf6d-4fa2-4323-bbca-d66fb4635967 2020-11-27 18:17:52.437251 46965 2 User \N \N 2 User \N update ---\nunique_session_id:\n- SByzfyq_YSABMNWws3Wm\n- h4yPo9yEXnH8iUU2tGX9\n 1428 \N 189.186.20.144 809acf6d-4fa2-4323-bbca-d66fb4635967 2020-11-27 18:17:52.462616 46966 1197 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.112E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1120.0 189.186.20.144 711ba778-9374-45e0-9518-272427be0e4a 2020-11-27 18:59:02.852443 47012 1721 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.91.88 367eac56-061c-47ab-a025-2751a28daf43 2020-11-28 02:00:11.185797 46967 4674 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1196\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 3481\ncardnumber: 2548\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-900 189.186.91.88 d26b6770-d922-4613-af24-f436473d9859 2020-11-27 21:16:31.264444 46968 3481 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.91.88 09d6e200-910f-4ead-af5a-99ca7b9b16bd 2020-11-27 21:16:33.474418 46969 3532 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1196\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-27\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-927\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 7a25a2ee-4951-4cb7-9c47-aa91ffc5a7eb 2020-11-27 21:26:54.250188 46970 2375 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 24 \N 189.186.91.88 7a25a2ee-4951-4cb7-9c47-aa91ffc5a7eb 2020-11-27 21:26:54.285438 46971 3532 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 5c277b53-0e80-41b5-b9a4-b6f5e3a9ab62 2020-11-27 21:27:09.331453 46972 4675 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1196\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 3532\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-927\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-927 189.186.91.88 5c277b53-0e80-41b5-b9a4-b6f5e3a9ab62 2020-11-27 21:27:09.35617 46973 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-26 20:37:36.582719000 Z\n- &1 2020-11-26 23:02:44.489951000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-27 22:01:53.220091822 Z\nsign_in_count:\n- 407\n- 408\n 816 \N 189.186.20.144 f3f4140d-99f7-43e0-bf6b-6104fcb75b93 2020-11-27 22:01:53.230812 46974 1 User \N \N 1 User \N update ---\nunique_session_id:\n- f4WRczpgW4Kpwp8FbxXT\n- 5vq6yLtvGjGDMapckui8\n 817 \N 189.186.20.144 f3f4140d-99f7-43e0-bf6b-6104fcb75b93 2020-11-27 22:01:53.256471 46975 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-27 00:36:25.414189000 Z\n- &1 2020-11-27 01:42:24.921458000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-27 22:45:27.359127373 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938256\n mask_addr: 4294967295\nsign_in_count:\n- 2093\n- 2094\n 4188 \N 200.68.150.208 68118672-1455-495f-a8f9-f4da5f71eee3 2020-11-27 22:45:27.36576 46976 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Tw6dvKoK5LY2tmW42m5e\n- ahZPYs3Rmo7inu2qxinK\n 4189 \N 200.68.150.208 68118672-1455-495f-a8f9-f4da5f71eee3 2020-11-27 22:45:27.389675 46977 3533 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1196\namount: !ruby/object:BigDecimal 18:0.4198E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4198E4\nstatus: 0\ndate_sale: 2020-11-27\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-928\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 d0972765-6dde-4a9a-96e3-d709a8a6356a 2020-11-27 22:51:19.037622 46978 2363 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.91.88 d0972765-6dde-4a9a-96e3-d709a8a6356a 2020-11-27 22:51:19.067447 46979 3533 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-928 cancelada. 189.186.91.88 c0bfb9dc-3031-4eb0-a202-3616a783bf3b 2020-11-27 22:51:54.202467 46980 2363 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.91.88 c0bfb9dc-3031-4eb0-a202-3616a783bf3b 2020-11-27 22:51:54.238434 46981 3534 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1196\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-11-27\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-929\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 7ee100ef-5b9e-4e9d-a05d-509b33294167 2020-11-27 22:52:10.733519 46982 2363 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.91.88 7ee100ef-5b9e-4e9d-a05d-509b33294167 2020-11-27 22:52:10.759089 46983 3534 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 b6bd3b7a-9c42-41aa-b338-117f6b6ac7f2 2020-11-27 22:53:53.693328 46984 4676 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1196\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2099E4\nmove_type: '1'\nsale_id: 3534\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-929\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-929 189.186.91.88 b6bd3b7a-9c42-41aa-b338-117f6b6ac7f2 2020-11-27 22:53:53.718605 46985 3535 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1197\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-27\nsaletype: 1\nseller_id: 27\nsale_code: PV1-V-1686\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 e8129cbd-5f80-4ddc-a98b-56b4f75d9dc0 2020-11-27 23:39:04.606356 46986 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 22 \N 189.186.20.144 e8129cbd-5f80-4ddc-a98b-56b4f75d9dc0 2020-11-27 23:39:04.638838 46987 3535 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 3544265a-ce2f-4e47-9f10-cf03f1f24e1d 2020-11-27 23:39:16.519882 46988 4677 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1197\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3535\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1686\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SERVICIO A DOMICILIO\n 1 movimiento de efectivo por venta con folio PV1-V-1686 189.186.20.144 3544265a-ce2f-4e47-9f10-cf03f1f24e1d 2020-11-27 23:39:16.543054 47011 3539 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1196\namount: !ruby/object:BigDecimal 18:0.1576E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1576E4\nstatus: 0\ndate_sale: 2020-11-27\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-932\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 367eac56-061c-47ab-a025-2751a28daf43 2020-11-28 02:00:11.142067 46989 4678 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1197\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 3447\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1644 189.186.20.144 d95deec5-497b-45de-a939-c36e6798e3e6 2020-11-28 00:00:37.115054 46990 3536 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1197\namount: !ruby/object:BigDecimal 18:0.1249E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1249E4\nstatus: 0\ndate_sale: 2020-11-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1687\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 495d273d-9d62-4323-ad5c-37800b989bfc 2020-11-28 00:08:46.085737 46991 2542 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.20.144 495d273d-9d62-4323-ad5c-37800b989bfc 2020-11-28 00:08:46.114612 46992 3536 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 eaf25c2c-1588-4ba0-8130-07a025115a7a 2020-11-28 00:08:50.284036 46993 4679 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1197\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1249E4\nmove_type: '1'\nsale_id: 3536\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1687\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1249E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1687 189.186.20.144 eaf25c2c-1588-4ba0-8130-07a025115a7a 2020-11-28 00:08:50.303827 46994 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-27 01:42:24.921458000 Z\n- &1 2020-11-27 22:45:27.359127000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-28 00:35:32.071734944 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938256\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938256\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2094\n- 2095\n 4190 \N 189.186.91.88 e6204e3c-a3bf-4f7e-940a-2ed85defa066 2020-11-28 00:35:32.100518 46995 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ahZPYs3Rmo7inu2qxinK\n- yD5xuWLJUm4q3KiSkM8z\n 4191 \N 189.186.91.88 e6204e3c-a3bf-4f7e-940a-2ed85defa066 2020-11-28 00:35:32.133925 46996 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-27 01:47:15.833961000 Z\n- &1 2020-11-27 02:29:25.845464000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-28 00:47:15.341432971 Z\nsign_in_count:\n- 371\n- 372\n 745 \N 189.186.91.88 4e029ed5-f64d-4a27-ad5a-34e03535df42 2020-11-28 00:47:15.34769 46997 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Wb7HVFux26XfjzPtgrcL\n- duDm-AtcFvDupnfkwPJj\n 746 \N 189.186.91.88 4e029ed5-f64d-4a27-ad5a-34e03535df42 2020-11-28 00:47:15.362791 46998 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-27 22:45:27.359127000 Z\n- &1 2020-11-28 00:35:32.071734000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-28 00:47:56.100968128 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938256\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 2095\n- 2096\n 4192 \N 189.186.91.88 7e048280-e96b-4c2b-b665-0d9f4675bcf8 2020-11-28 00:47:56.108511 46999 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yD5xuWLJUm4q3KiSkM8z\n- ohaEwZXoiRNCXvo2zT1K\n 4193 \N 189.186.91.88 7e048280-e96b-4c2b-b665-0d9f4675bcf8 2020-11-28 00:47:56.128346 47000 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-27 02:29:25.845464000 Z\n- &1 2020-11-28 00:47:15.341432000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-28 01:03:16.964087822 Z\nsign_in_count:\n- 372\n- 373\n 747 \N 189.186.91.88 3ab54686-e153-4789-8fd0-10a6a999a977 2020-11-28 01:03:16.969536 47001 18 User \N \N 18 User \N update ---\nunique_session_id:\n- duDm-AtcFvDupnfkwPJj\n- LPtVNsaeVrWVcHkKnsEJ\n 748 \N 189.186.91.88 3ab54686-e153-4789-8fd0-10a6a999a977 2020-11-28 01:03:16.982965 47002 453 Customer \N \N 18 User \N create ---\nnick_name: AYLIN ZAMUDIO\nphone: "(667) 401-2466"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente AYLIN ZAMUDIO fue registrado. 189.186.91.88 5bdbf049-3243-4a54-b9d9-a652fcaddb00 2020-11-28 01:14:27.688188 47003 3537 Sale \N \N 18 User \N create ---\ncustomer_id: 453\nuser_id: 18\nopen_cash_register_id: 1196\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-27\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-930\nexpiration_date: 2021-01-01\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 cb8c09b7-bcc4-4205-b4bd-0737674f06ff 2020-11-28 01:14:47.667096 47004 2341 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 13 \N 189.186.91.88 cb8c09b7-bcc4-4205-b4bd-0737674f06ff 2020-11-28 01:14:47.697723 47005 4680 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1196\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3537\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-930\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-930 189.186.91.88 b65b9d20-6cae-4f6d-9f7e-d10e1c740eb3 2020-11-28 01:14:55.058 47006 3537 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 304b0120-bfec-4ce9-b02e-69ff209246fd 2020-11-28 01:14:57.588655 47007 3538 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1196\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-27\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-931\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 fb6b7e11-b2a0-4695-b14d-e75959e88010 2020-11-28 01:15:41.926738 47008 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.15E2\n- !ruby/object:BigDecimal 18:0.14E2\n 46 \N 189.186.91.88 fb6b7e11-b2a0-4695-b14d-e75959e88010 2020-11-28 01:15:41.954511 47009 3538 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 0761ffa0-2f98-4fd7-b115-f899dd16b4a5 2020-11-28 01:15:57.78925 47010 4681 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1196\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 3538\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-931\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.18E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-931 189.186.91.88 0761ffa0-2f98-4fd7-b115-f899dd16b4a5 2020-11-28 01:15:57.81528 47013 2596 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.91.88 367eac56-061c-47ab-a025-2751a28daf43 2020-11-28 02:00:11.219341 47014 2599 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.91.88 367eac56-061c-47ab-a025-2751a28daf43 2020-11-28 02:00:11.243847 47015 3539 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 a5c4bc4d-329c-4433-9379-6ba5ff10d55a 2020-11-28 02:00:42.425588 47016 4682 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1196\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1576E4\nmove_type: '1'\nsale_id: 3539\ncardnumber: 1252\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-932\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-932 189.186.91.88 a5c4bc4d-329c-4433-9379-6ba5ff10d55a 2020-11-28 02:00:42.452246 47017 1221 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1197\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3648E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.18E4\ncash_fund: !ruby/object:BigDecimal 18:0.1169E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2969E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.144 32c71940-f99d-4733-bd3c-d680b06d39d4 2020-11-28 02:02:52.670136 47018 1197 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.144 32c71940-f99d-4733-bd3c-d680b06d39d4 2020-11-28 02:02:52.684003 47019 3540 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1196\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-11-27\nsaletype: 1\nseller_id: 29\nsale_code: PV3-V-933\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 344c7855-ab12-4008-a895-86df24ca4f87 2020-11-28 02:13:48.697294 47020 2367 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.91.88 344c7855-ab12-4008-a895-86df24ca4f87 2020-11-28 02:13:48.724918 47021 3540 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 daa57cf1-81c3-489b-8ca4-e90115fb8737 2020-11-28 02:13:57.067602 47022 4683 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1196\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3540\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-933\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1155'\n 1 movimiento de efectivo por venta con folio PV3-V-933 189.186.91.88 daa57cf1-81c3-489b-8ca4-e90115fb8737 2020-11-28 02:13:57.087231 47023 1222 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1196\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.9971E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.5789E4\ncash_fund: !ruby/object:BigDecimal 18:0.789E3\nphysical_cash: !ruby/object:BigDecimal 18:0.6578E4\nobservations: ADELANTO DE NAYELY 400 VENTA DE VE-0047 500, PAGO TERMINAL 600\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 9b5244ce-ecf4-4b56-aa2d-b982631d2a2e 2020-11-28 02:36:33.973978 47024 1196 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 9b5244ce-ecf4-4b56-aa2d-b982631d2a2e 2020-11-28 02:36:33.993636 47025 1198 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.789E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 789.0 189.186.91.88 88413763-c722-4065-ab90-47e805965d67 2020-11-28 02:43:53.950471 47026 3541 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1198\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-27\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-934\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 d2fe650f-56bf-4e27-9b31-021b9058b467 2020-11-28 02:44:20.144743 47027 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 25 \N 189.186.91.88 d2fe650f-56bf-4e27-9b31-021b9058b467 2020-11-28 02:44:20.173844 47028 3541 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 2231e24f-7740-4e64-97a8-8bf75b1311d3 2020-11-28 02:44:29.986248 47029 4684 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1198\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 3541\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-934\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-934 189.186.91.88 2231e24f-7740-4e64-97a8-8bf75b1311d3 2020-11-28 02:44:30.024436 47030 1223 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1198\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1399E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.688E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2188E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 f1d0baff-2984-476f-98c0-7941e09bb111 2020-11-28 02:45:51.254839 47031 1198 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 f1d0baff-2984-476f-98c0-7941e09bb111 2020-11-28 02:45:51.267477 47032 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-28 00:35:32.071734000 Z\n- &1 2020-11-28 00:47:56.100968000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-28 05:08:26.476429337 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938151\n mask_addr: 4294967295\nsign_in_count:\n- 2096\n- 2097\n 4194 \N 200.68.150.103 73766f86-73fd-4f81-bef9-c55efa4ae1cf 2020-11-28 05:08:26.503954 47033 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ohaEwZXoiRNCXvo2zT1K\n- Gs3b-T2_d5BQhvSMuN83\n 4195 \N 200.68.150.103 73766f86-73fd-4f81-bef9-c55efa4ae1cf 2020-11-28 05:08:26.53625 47034 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-26 17:21:01.052898000 Z\n- &1 2020-11-27 18:17:52.406785000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-28 18:39:26.503165165 Z\nsign_in_count:\n- 712\n- 713\n 1429 \N 189.186.20.144 f5d4f7cb-0381-43df-ad5f-c3184d8b7f1d 2020-11-28 18:39:26.524477 47035 2 User \N \N 2 User \N update ---\nunique_session_id:\n- h4yPo9yEXnH8iUU2tGX9\n- GF6poyYqmpygnY9CxyJU\n 1430 \N 189.186.20.144 f5d4f7cb-0381-43df-ad5f-c3184d8b7f1d 2020-11-28 18:39:26.546143 47057 3544 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 0aafecd8-2ec2-4880-88a7-cf78e32b8c3f 2020-11-28 21:17:42.299556 47036 1199 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1169E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1169.0 189.186.20.144 ef29dc9d-6b74-4b11-a76a-9df01ba49d63 2020-11-28 18:39:56.437876 47037 4685 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1199\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.498E3\nmove_type: '1'\nsale_id: 3358\ncardnumber: 729\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1596 189.186.20.144 7cb9aa8f-861c-4004-8582-a0dff1a3ec33 2020-11-28 19:09:33.43476 47038 3358 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 e6f0aa4f-21ec-402f-bc6b-a0788666429e 2020-11-28 19:09:37.669778 47039 4686 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1199\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1249E4\nmove_type: '1'\nsale_id: 3357\ncardnumber: 729\npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1595 189.186.20.144 6454c973-3a53-48e9-9281-a5c12e95b55d 2020-11-28 19:10:27.239449 47040 454 Customer \N \N 2 User \N create ---\nnick_name: PATRICIA VELAZQUES\nphone: "(667) 418-7035"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente PATRICIA VELAZQUES fue registrado. 189.186.20.144 3728e5d7-7a28-4d90-82d8-d3330238ec2a 2020-11-28 19:39:10.371977 47041 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-25 17:09:24.317871000 Z\n- &1 2020-11-27 17:59:51.320233000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-28 19:52:50.142514620 Z\nsign_in_count:\n- 350\n- 351\n 703 \N 189.186.91.88 1115820a-9d05-42e2-a539-a9930c5f1dbf 2020-11-28 19:52:50.176747 47042 21 User \N \N 21 User \N update ---\nunique_session_id:\n- wnSxeAnTdnMGdvo5sw8q\n- Yf7bctcdycdLBsdHzR-2\n 704 \N 189.186.91.88 1115820a-9d05-42e2-a539-a9930c5f1dbf 2020-11-28 19:52:50.199322 47043 3542 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1199\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-11-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1688\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 9acb2f76-5d27-48df-bd8e-0563778720aa 2020-11-28 20:29:27.479039 47044 496 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 189.186.20.144 9acb2f76-5d27-48df-bd8e-0563778720aa 2020-11-28 20:29:27.517291 47045 3542 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 fe865e61-1e44-4195-a412-5e8572a1d352 2020-11-28 20:29:32.802018 47046 4687 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1199\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3542\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1688\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1688 189.186.20.144 fe865e61-1e44-4195-a412-5e8572a1d352 2020-11-28 20:29:32.824982 47047 4687 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1199\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 3542\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1688\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.20.144 03a1a6c6-e68e-45c4-bd81-c0de192de926 2020-11-28 20:29:44.141824 47048 4688 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1199\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3542\ncardnumber: 7402\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1688\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1688 189.186.20.144 52e8aa6d-80af-4ea2-889d-8a6fafe04d69 2020-11-28 20:30:09.380585 47049 3543 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1199\namount: !ruby/object:BigDecimal 18:0.1119E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1119E4\nstatus: 0\ndate_sale: 2020-11-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1689\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 80891879-4ce4-40bc-acff-1d8eec6bc42c 2020-11-28 21:09:25.121058 47050 1633 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.20.144 80891879-4ce4-40bc-acff-1d8eec6bc42c 2020-11-28 21:09:25.152662 47051 3543 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 ed191807-1e32-44e4-a1e6-41ae9811d9f2 2020-11-28 21:09:42.100066 47052 4689 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1199\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1119E4\nmove_type: '1'\nsale_id: 3543\ncardnumber: 5196\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1689\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1689 189.186.20.144 ed191807-1e32-44e4-a1e6-41ae9811d9f2 2020-11-28 21:09:42.135785 47053 492 Purchase \N \N 2 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-210\namount: !ruby/object:BigDecimal 18:0.5397E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.5397E4\nobservations: ''\npurchase_date: 2020-11-28\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-210 por $ 5397.0 MXN creada. 189.186.20.144 e3b3b348-b899-4f17-bf24-7f337471c7bf 2020-11-28 21:17:02.534451 47054 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 23 \N 189.186.20.144 e3b3b348-b899-4f17-bf24-7f337471c7bf 2020-11-28 21:17:02.561481 47055 3544 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1199\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1690\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 42515a44-ea3f-4cc4-bd89-34aa785edfd9 2020-11-28 21:17:21.294917 47056 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 24 \N 189.186.20.144 42515a44-ea3f-4cc4-bd89-34aa785edfd9 2020-11-28 21:17:21.329218 47058 4690 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1199\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3544\ncardnumber: 8155\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1690\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1690 189.186.20.144 0aafecd8-2ec2-4880-88a7-cf78e32b8c3f 2020-11-28 21:17:42.319807 47059 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-26 23:02:44.489951000 Z\n- &1 2020-11-27 22:01:53.220091000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-28 21:22:52.323591992 Z\nsign_in_count:\n- 408\n- 409\n 818 \N 189.186.20.144 95a15bd0-5fe6-4def-a311-d8d620e613dc 2020-11-28 21:22:52.329591 47060 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 5vq6yLtvGjGDMapckui8\n- dLzu-n6UEnbMhnkLXJbD\n 819 \N 189.186.20.144 95a15bd0-5fe6-4def-a311-d8d620e613dc 2020-11-28 21:22:52.343874 47061 4691 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1199\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.624E3\nmove_type: '1'\nsale_id: 3423\ncardnumber: 5296\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1631 189.186.20.144 47a86104-8586-41bc-afef-bc237364efba 2020-11-28 21:26:06.176174 47062 3423 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 22d5ddda-ab1e-4c9e-a948-2528d4b8128c 2020-11-28 21:26:18.771965 47063 455 Customer \N \N 2 User \N create ---\nnick_name: ALMA RANGEL\nphone: "(667) 131-2911"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ALMA RANGEL fue registrado. 189.186.20.144 5ccba32d-ce36-4cc6-a606-141224ef9b79 2020-11-28 22:12:27.143735 47064 3545 Sale \N \N 2 User \N create ---\ncustomer_id: 455\nuser_id: 2\nopen_cash_register_id: 1199\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-28\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1691\nexpiration_date: 2021-01-02\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 bedaf91e-c74c-4abf-a812-0c4b5d67094c 2020-11-28 22:14:17.888828 47065 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 25 \N 189.186.20.144 bedaf91e-c74c-4abf-a812-0c4b5d67094c 2020-11-28 22:14:17.927699 47066 4692 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1199\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3545\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1691\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1691 189.186.20.144 42d34441-d524-49e5-b7b2-e0555ae7630e 2020-11-28 22:14:23.858253 47067 3545 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.20.144 311f54b5-588d-4ad3-bf51-eb618e79fa9e 2020-11-28 22:14:27.15399 47068 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.14E2\n- !ruby/object:BigDecimal 18:0.13E2\n 47 \N 189.186.91.88 6eb869b2-500d-4544-a78e-c282cbcbdf18 2020-11-28 22:19:16.688146 47069 742 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-11-28\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.91.88 7294664f-6276-4e37-b929-b91b22d4a04f 2020-11-28 22:19:52.867932 47070 742 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-11-28\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.20.144 18c570e2-a4e1-4251-b36b-340302fe56e4 2020-11-28 22:20:24.241618 47071 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.5E1\n 26 \N 189.186.20.144 18c570e2-a4e1-4251-b36b-340302fe56e4 2020-11-28 22:20:24.263108 47072 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-27 22:01:53.220091000 Z\n- &1 2020-11-28 21:22:52.323591000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-28 22:42:58.244480029 Z\nsign_in_count:\n- 409\n- 410\n 820 \N 189.186.20.144 1d2f3794-909f-46d1-a395-9942eb0dc75e 2020-11-28 22:42:58.252116 47073 1 User \N \N 1 User \N update ---\nunique_session_id:\n- dLzu-n6UEnbMhnkLXJbD\n- spESyX3bwWfzkGFGYzQT\n 821 \N 189.186.20.144 1d2f3794-909f-46d1-a395-9942eb0dc75e 2020-11-28 22:42:58.267963 47074 4693 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1199\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.648E3\nmove_type: '1'\nsale_id: 2879\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.648E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1372 189.186.20.144 28ea8a48-9a7a-4642-99f1-6d65d44d2123 2020-11-28 23:23:05.702953 47075 2879 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 b6371970-c617-4856-bd17-f15413700ca3 2020-11-28 23:23:14.120096 47076 2999 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.20.144 cabe93a5-5953-4715-82c0-43f931a1629e 2020-11-28 23:24:22.745885 47077 2157 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.20.144 cabe93a5-5953-4715-82c0-43f931a1629e 2020-11-28 23:24:22.768332 47078 2152 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.20.144 cabe93a5-5953-4715-82c0-43f931a1629e 2020-11-28 23:24:22.792788 47079 2258 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.20.144 cabe93a5-5953-4715-82c0-43f931a1629e 2020-11-28 23:24:22.816897 47080 534 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.20.144 cabe93a5-5953-4715-82c0-43f931a1629e 2020-11-28 23:24:22.840073 47081 2248 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.20.144 cabe93a5-5953-4715-82c0-43f931a1629e 2020-11-28 23:24:22.8622 47082 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-28 00:47:56.100968000 Z\n- &1 2020-11-28 05:08:26.476429000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-28 23:29:16.652014027 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938151\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938151\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946195\n mask_addr: 4294967295\nsign_in_count:\n- 2097\n- 2098\n 4196 \N 200.68.181.211 f8f67ce1-85c1-45d3-8ce5-3ca07ce571ed 2020-11-28 23:29:16.659712 47083 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Gs3b-T2_d5BQhvSMuN83\n- S32MdM3TYxfxCWLvdap-\n 4197 \N 200.68.181.211 f8f67ce1-85c1-45d3-8ce5-3ca07ce571ed 2020-11-28 23:29:16.677367 47084 4694 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1199\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 2726\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1312 189.186.20.144 a45fddde-0f15-4586-898d-6f6d98f0352f 2020-11-28 23:29:58.18375 47085 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-28 21:22:52.323591000 Z\n- &1 2020-11-28 22:42:58.244480000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-28 23:33:24.183073793 Z\nsign_in_count:\n- 410\n- 411\n 822 \N 189.186.20.144 60d47e87-7c00-40c7-8544-bf3d87957bbf 2020-11-28 23:33:24.192765 47086 1 User \N \N 1 User \N update ---\nunique_session_id:\n- spESyX3bwWfzkGFGYzQT\n- xuspquk-sqYpoyo8zsRB\n 823 \N 189.186.20.144 60d47e87-7c00-40c7-8544-bf3d87957bbf 2020-11-28 23:33:24.215824 47087 1200 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.688E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 688.0 189.186.91.88 d452f11c-1cb9-4745-8cbc-71b738a0e977 2020-11-28 23:56:37.396946 47088 3546 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1200\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-11-28\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-935\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 aef9c98c-a172-4f7a-9680-749824862e9f 2020-11-28 23:57:04.716081 47089 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 59 \N 189.186.91.88 aef9c98c-a172-4f7a-9680-749824862e9f 2020-11-28 23:57:04.749467 47090 3546 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 772a2a37-426e-43c9-8f32-19d175b7a9bc 2020-11-28 23:57:18.195979 47091 4695 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1200\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 3546\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-935\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-935 189.186.91.88 772a2a37-426e-43c9-8f32-19d175b7a9bc 2020-11-28 23:57:18.217752 47092 3547 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1200\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-28\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-936\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 2f5bafca-5bf0-487e-b1f9-bbaacb86e71c 2020-11-29 00:20:48.841086 47093 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 48 \N 189.186.91.88 2f5bafca-5bf0-487e-b1f9-bbaacb86e71c 2020-11-29 00:20:48.875435 47094 3547 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 694ae75a-30da-4405-9535-687db075b509 2020-11-29 00:21:15.191201 47095 4696 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1200\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 3547\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-936\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-936 189.186.91.88 694ae75a-30da-4405-9535-687db075b509 2020-11-29 00:21:15.227885 47096 3548 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1199\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1692\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 060e6469-8bd7-42a8-92d4-a6895324a4cc 2020-11-29 00:22:56.819913 47097 2369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 22 \N 189.186.20.144 060e6469-8bd7-42a8-92d4-a6895324a4cc 2020-11-29 00:22:56.844828 47098 3548 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 96d64b4a-6d94-4678-8f16-153559078c09 2020-11-29 00:23:14.003139 47099 4697 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1199\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3548\ncardnumber: 3402\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1692\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1692 189.186.20.144 96d64b4a-6d94-4678-8f16-153559078c09 2020-11-29 00:23:14.023309 47100 4698 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1199\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 3483\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1663 189.186.20.144 44020c56-2027-487e-861e-b31fd25438f2 2020-11-29 00:30:44.606844 47101 4699 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1199\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 3482\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1662 189.186.20.144 8ff7739d-6130-4382-a94d-6803002095ba 2020-11-29 00:32:11.649605 47102 3549 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1200\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-11-28\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-937\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 f7212c86-399b-47d2-be01-365bddc457df 2020-11-29 00:54:51.31429 47103 2506 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 12 \N 189.186.91.88 f7212c86-399b-47d2-be01-365bddc457df 2020-11-29 00:54:51.34085 47105 4700 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1200\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 3549\ncardnumber: 2543\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-937\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-937 189.186.91.88 d7a9dc8f-886e-4661-9abc-ef5337a2ce9f 2020-11-29 00:55:55.05843 47106 3550 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1200\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-11-28\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-938\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 009777b3-e14d-4da7-9e53-5ec5be756f68 2020-11-29 01:00:28.422825 47107 2631 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.91.88 009777b3-e14d-4da7-9e53-5ec5be756f68 2020-11-29 01:00:28.448454 47108 3550 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 282dde87-1e2a-4047-bccd-a84ee36287bd 2020-11-29 01:01:32.744438 47109 4701 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1200\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3550\ncardnumber: 1521\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-938\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-938 189.186.91.88 282dde87-1e2a-4047-bccd-a84ee36287bd 2020-11-29 01:01:32.767403 47110 3551 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1200\namount: !ruby/object:BigDecimal 18:0.1196E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1196E4\nstatus: 0\ndate_sale: 2020-11-28\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-939\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 a181b7d0-62c3-41f2-86e7-d871ea83d1be 2020-11-29 01:07:41.2881 47111 2615 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.91.88 a181b7d0-62c3-41f2-86e7-d871ea83d1be 2020-11-29 01:07:41.312146 47112 3551 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 163030cb-730f-4f87-92c6-9d4351e1e259 2020-11-29 01:08:11.358157 47113 4702 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1200\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1196E4\nmove_type: '1'\nsale_id: 3551\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-939\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.4E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-939 189.186.91.88 163030cb-730f-4f87-92c6-9d4351e1e259 2020-11-29 01:08:11.378461 47114 40 ProductsReturn \N \N 21 User \N create ---\nsale_id: 3551\nuser_id: 21\nreturn_code: PV3-D-7\npointsale_id: 3\nnew_amount: !ruby/object:BigDecimal 18:0.1658E4\nreturned_amount: !ruby/object:BigDecimal 18:0.1196E4\ndifference_amount: !ruby/object:BigDecimal 18:0.462E3\nis_money_returned: false\n 1 devolución PV3-D-7 creada. 189.186.91.88 b514a144-4e35-4784-9e27-fed3d66e5439 2020-11-29 01:21:31.90052 47115 2615 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.91.88 b514a144-4e35-4784-9e27-fed3d66e5439 2020-11-29 01:21:31.931303 47116 2590 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.91.88 b514a144-4e35-4784-9e27-fed3d66e5439 2020-11-29 01:21:31.958965 47117 1900 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.91.88 b514a144-4e35-4784-9e27-fed3d66e5439 2020-11-29 01:21:31.978024 47118 4703 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1200\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.462E3\nmove_type: '1'\nsale_id: 3551\ncardnumber: 5121\npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 40\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV3-D-7 189.186.91.88 5799b22a-a6cb-4696-980a-d6e9d7305c22 2020-11-29 01:22:07.135219 47119 360 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1199\nquantity: !ruby/object:BigDecimal 18:0.2E2\nstatus: 1\nobservations: 'NAVIDAD DE LOS DE LA BASURA '\nexpense_date: 2020-11-28\nexpense_code: PV1-E-251\n 1 Egreso por 20.0 registrado 189.186.20.144 9e4a4670-e752-4ac8-983f-38f4be9c5a07 2020-11-29 01:25:05.120054 47120 4704 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1199\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 360\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.20.144 9e4a4670-e752-4ac8-983f-38f4be9c5a07 2020-11-29 01:25:05.144936 47121 1224 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1199\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.9835E4\namount_out: !ruby/object:BigDecimal 18:0.2E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.1297E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3297E4\nobservations: SE LLEVO SAMANTHA EXCEDENTE $1200 + $800 DE RETIRO FINAL, TOTAL DE $2000\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.144 160bbb87-305a-42cb-9934-fe8ef2b24730 2020-11-29 01:36:57.223484 47122 1199 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.144 160bbb87-305a-42cb-9934-fe8ef2b24730 2020-11-29 01:36:57.238284 47123 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-27 17:59:51.320233000 Z\n- &1 2020-11-28 19:52:50.142514000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-29 01:40:26.818291642 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 351\n- 352\n 705 \N 189.186.20.144 e6c0af55-2aa3-4725-b5fd-accfed8b76bc 2020-11-29 01:40:26.826665 47124 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Yf7bctcdycdLBsdHzR-2\n- QwrDMe3KUVtZBZaT9AZk\n 706 \N 189.186.20.144 e6c0af55-2aa3-4725-b5fd-accfed8b76bc 2020-11-29 01:40:26.843267 47125 3551 Sale \N \N 21 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-939 cancelada. 189.186.20.144 b4ced363-f4c2-4150-bcab-00a4bc48acf0 2020-11-29 01:40:57.638498 47172 456 Customer \N \N 2 User \N create ---\nnick_name: FERNANDA GONZALEZ\nphone: "(667) 265-3773"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente FERNANDA GONZALEZ fue registrado. 189.186.20.144 9791f01a-95d0-4835-b0a8-e68c6dbd6886 2020-11-30 20:46:14.500841 47126 4702 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1200\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1196E4\nmove_type: '1'\nsale_id: 3551\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-939\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.4E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.20.144 b4ced363-f4c2-4150-bcab-00a4bc48acf0 2020-11-29 01:40:57.663873 47127 4703 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1200\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.462E3\nmove_type: '1'\nsale_id: 3551\ncardnumber: 5121\npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 40\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.20.144 b4ced363-f4c2-4150-bcab-00a4bc48acf0 2020-11-29 01:40:57.68776 47128 2615 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.20.144 b4ced363-f4c2-4150-bcab-00a4bc48acf0 2020-11-29 01:40:57.716463 47129 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-28 00:47:15.341432000 Z\n- &1 2020-11-28 01:03:16.964087000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-29 01:41:26.950518240 Z\nsign_in_count:\n- 373\n- 374\n 749 \N 189.186.91.88 26abda5a-b778-41e5-8688-554d5e570e1a 2020-11-29 01:41:26.955998 47130 18 User \N \N 18 User \N update ---\nunique_session_id:\n- LPtVNsaeVrWVcHkKnsEJ\n- o3wBhBArboSkhZ-E_Mea\n 750 \N 189.186.91.88 26abda5a-b778-41e5-8688-554d5e570e1a 2020-11-29 01:41:26.968982 47131 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-28 22:42:58.244480000 Z\n- &1 2020-11-28 23:33:24.183073000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-29 02:24:30.878928829 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934004\n mask_addr: 4294967295\nsign_in_count:\n- 411\n- 412\n 824 \N 200.68.134.52 d7cd6633-52db-4f17-aac9-fcd05e55a248 2020-11-29 02:24:30.886585 47132 1 User \N \N 1 User \N update ---\nunique_session_id:\n- xuspquk-sqYpoyo8zsRB\n- ff83y3szr58yRUUTTLNC\n 825 \N 200.68.134.52 d7cd6633-52db-4f17-aac9-fcd05e55a248 2020-11-29 02:24:30.904877 47133 1225 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1200\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.5896E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.2804E4\ncash_fund: !ruby/object:BigDecimal 18:0.682E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3486E4\nobservations: 'NO SE REFLEJO LA CANCELACION DEL CON-0006 Y SI SE DESCONTO LA VENTA '\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 4abfaa18-db2d-4d6d-9c8e-1b4f4621986b 2020-11-29 02:27:11.518035 47134 1200 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 4abfaa18-db2d-4d6d-9c8e-1b4f4621986b 2020-11-29 02:27:11.533183 47135 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-28 19:52:50.142514000 Z\n- &1 2020-11-29 01:40:26.818291000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-29 18:10:47.270203110 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 352\n- 353\n 707 \N 189.186.91.88 25c71c93-9c18-4b7e-96f4-9aa76d5662a6 2020-11-29 18:10:47.311949 47136 21 User \N \N 21 User \N update ---\nunique_session_id:\n- QwrDMe3KUVtZBZaT9AZk\n- ubasMFbMMyHMrw_unQYX\n 708 \N 189.186.91.88 25c71c93-9c18-4b7e-96f4-9aa76d5662a6 2020-11-29 18:10:47.337554 47137 1201 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.682E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 682.0 189.186.91.88 11b5b512-16e4-4f97-bcc0-4b546139d4b7 2020-11-29 18:11:17.118672 47138 3552 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1201\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-29\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-940\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 e5d21a7a-176b-4c07-8183-a4dda5f8cc85 2020-11-29 18:11:49.738613 47139 2375 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 26 \N 189.186.91.88 e5d21a7a-176b-4c07-8183-a4dda5f8cc85 2020-11-29 18:11:49.777517 47140 3552 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-940 cancelada. 189.186.91.88 d5645163-a9ef-40ef-b1c7-eff776ad0714 2020-11-29 18:12:55.320485 47141 2375 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.13E2\n 27 \N 189.186.91.88 d5645163-a9ef-40ef-b1c7-eff776ad0714 2020-11-29 18:12:55.347287 47142 3553 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1201\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1399E3\ntotal: !ruby/object:BigDecimal 18:0.12591E4\nstatus: 0\ndate_sale: 2020-11-29\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-941\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 a2e25f42-7659-413f-89df-46483618b720 2020-11-29 18:14:07.835843 47143 2375 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 28 \N 189.186.91.88 a2e25f42-7659-413f-89df-46483618b720 2020-11-29 18:14:07.862091 47144 3553 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 16813055-e8a7-4e0a-897e-b0504f69bfde 2020-11-29 18:15:15.244915 47145 4705 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1201\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12591E4\nmove_type: '1'\nsale_id: 3553\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-941\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.1409E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-941 189.186.91.88 16813055-e8a7-4e0a-897e-b0504f69bfde 2020-11-29 18:15:15.269216 47146 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-28 05:08:26.476429000 Z\n- &1 2020-11-28 23:29:16.652014000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-29 20:12:45.415745272 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938151\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946195\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946195\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535600\n mask_addr: 4294967295\nsign_in_count:\n- 2098\n- 2099\n 4198 \N 177.228.102.48 fc6c6e11-0d21-471e-bec3-97111a93b793 2020-11-29 20:12:45.424005 47147 4 User \N \N 4 User \N update ---\nunique_session_id:\n- S32MdM3TYxfxCWLvdap-\n- LyXrzEx5PS5M93WKVpjC\n 4199 \N 177.228.102.48 fc6c6e11-0d21-471e-bec3-97111a93b793 2020-11-29 20:12:45.447322 47148 3554 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1201\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-11-29\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-942\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 159d7b02-9ec1-41de-aa5d-c32e77592a1d 2020-11-29 20:37:41.355087 47149 2482 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.91.88 159d7b02-9ec1-41de-aa5d-c32e77592a1d 2020-11-29 20:37:41.383152 47150 3554 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.91.88 bd0379b7-fa08-4ba7-8c5a-f42855e29e40 2020-11-29 20:37:50.273695 47151 4706 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1201\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 3554\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-942\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-942 189.186.91.88 bd0379b7-fa08-4ba7-8c5a-f42855e29e40 2020-11-29 20:37:50.295185 47152 1226 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1201\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.24581E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.64E3\nphysical_cash: !ruby/object:BigDecimal 18:0.314E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.91.88 1d56b7fc-ac7a-40e7-94e3-393a1520cab2 2020-11-29 22:45:08.287256 47153 1201 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.91.88 1d56b7fc-ac7a-40e7-94e3-393a1520cab2 2020-11-29 22:45:08.329128 47154 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-28 23:29:16.652014000 Z\n- &1 2020-11-29 20:12:45.415745000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-29 23:01:52.408143225 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946195\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535600\n mask_addr: 4294967295\nsign_in_count:\n- 2099\n- 2100\n 4200 \N 177.228.102.48 9e129bd0-f494-497b-a3aa-7444d74b2ba7 2020-11-29 23:01:52.415059 47155 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LyXrzEx5PS5M93WKVpjC\n- zn7M5yB_NYYwjec5fZA_\n 4201 \N 177.228.102.48 9e129bd0-f494-497b-a3aa-7444d74b2ba7 2020-11-29 23:01:52.432906 47156 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-27 18:17:52.406785000 Z\n- &1 2020-11-28 18:39:26.503165000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-30 17:33:26.021787885 Z\nsign_in_count:\n- 713\n- 714\n 1431 \N 189.186.20.144 0760be88-ef5c-4dce-b0e2-7f4b7ee60036 2020-11-30 17:33:26.049604 47157 2 User \N \N 2 User \N update ---\nunique_session_id:\n- GF6poyYqmpygnY9CxyJU\n- 2LJRMGF3u2gMGFS8_C5x\n 1432 \N 189.186.20.144 0760be88-ef5c-4dce-b0e2-7f4b7ee60036 2020-11-30 17:33:26.072223 47158 1202 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1297E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1297.0 189.186.20.144 ec63be70-5ebe-4fef-958e-44bbb006a432 2020-11-30 18:45:08.087782 47159 4707 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1202\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 3500\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1670 189.186.20.144 cd0c1866-2454-4e48-84cf-e2ea34f95e19 2020-11-30 18:45:37.216463 47160 3500 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 ca4323bc-6fda-46df-97ee-03abea314840 2020-11-30 18:45:38.348216 47161 3555 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1202\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2020-11-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1693\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 ec56fb47-3fc2-4e11-97c8-fd5f95e16924 2020-11-30 20:02:33.922976 47162 2251 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 6 \N 189.186.20.144 ec56fb47-3fc2-4e11-97c8-fd5f95e16924 2020-11-30 20:02:33.96509 47163 3555 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 9cd08143-045b-4b40-b14d-931205832374 2020-11-30 20:03:15.130516 47164 4708 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1202\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 3555\ncardnumber: 2503\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1693\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1693 189.186.20.144 9cd08143-045b-4b40-b14d-931205832374 2020-11-30 20:03:15.151765 47165 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-29 20:12:45.415745000 Z\n- &1 2020-11-29 23:01:52.408143000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-30 20:04:15.346842392 Z\nsign_in_count:\n- 2100\n- 2101\n 4202 \N 177.228.102.48 e4a4294a-ccb4-42d6-b04b-25391698a9d4 2020-11-30 20:04:15.353086 47166 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zn7M5yB_NYYwjec5fZA_\n- eu789n2AuEgKbM1oqVDw\n 4203 \N 177.228.102.48 e4a4294a-ccb4-42d6-b04b-25391698a9d4 2020-11-30 20:04:15.372095 47167 3556 Sale \N \N 2 User \N create ---\ncustomer_id: 124\nuser_id: 2\nopen_cash_register_id: 1202\namount: !ruby/object:BigDecimal 18:0.3398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3398E4\nstatus: 0\ndate_sale: 2020-11-30\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1694\nexpiration_date: 2021-01-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 a98a8673-8586-44f4-9309-49bf1fcf5533 2020-11-30 20:41:27.721535 47168 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 20 \N 189.186.20.144 a98a8673-8586-44f4-9309-49bf1fcf5533 2020-11-30 20:41:27.748565 47169 2059 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.20.144 a98a8673-8586-44f4-9309-49bf1fcf5533 2020-11-30 20:41:27.773624 47170 4709 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1202\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3556\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1694\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1694 189.186.20.144 cd3c9354-476f-48e3-af50-0e2fdfb45d1a 2020-11-30 20:41:34.840826 47173 3557 Sale \N \N 2 User \N create ---\ncustomer_id: 456\nuser_id: 2\nopen_cash_register_id: 1202\namount: !ruby/object:BigDecimal 18:0.989E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.989E3\nstatus: 0\ndate_sale: 2020-11-30\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1695\nexpiration_date: 2021-01-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 752f402e-874f-4aae-9d7f-48512fc64410 2020-11-30 20:46:46.195127 47174 2508 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.20.144 752f402e-874f-4aae-9d7f-48512fc64410 2020-11-30 20:46:46.219594 47175 4710 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1202\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.289E3\nmove_type: '1'\nsale_id: 3557\ncardnumber: 8396\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1695\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1695 189.186.20.144 86dce6fa-e423-411a-bd22-d2b9adee030d 2020-11-30 20:47:53.58449 47176 3557 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.20.144 76fffcc0-2796-481f-9df4-d78ccf82c299 2020-11-30 20:47:55.360015 47177 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-29 01:40:26.818291000 Z\n- &1 2020-11-29 18:10:47.270203000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-30 20:58:16.341179218 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\nsign_in_count:\n- 353\n- 354\n 709 \N 189.186.91.88 94d902af-34fb-4c08-a3c7-3fd4431045d1 2020-11-30 20:58:16.370148 47178 21 User \N \N 21 User \N update ---\nunique_session_id:\n- ubasMFbMMyHMrw_unQYX\n- sTYkLDN-2orrcZYQ9nTx\n 710 \N 189.186.91.88 94d902af-34fb-4c08-a3c7-3fd4431045d1 2020-11-30 20:58:16.392759 47179 1203 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.64E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 640.0 189.186.91.88 841dc544-9951-4df9-87f6-9267691d91be 2020-11-30 20:58:30.87702 47180 3558 Sale \N \N 21 User \N create ---\ncustomer_id: 346\nuser_id: 21\nopen_cash_register_id: 1203\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-30\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-943\nexpiration_date: 2021-01-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 8ada3e13-912d-42a2-babb-6b1c4d09eff1 2020-11-30 21:39:29.899061 47181 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 49 \N 189.186.91.88 8ada3e13-912d-42a2-babb-6b1c4d09eff1 2020-11-30 21:39:29.927367 47182 4711 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1203\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3558\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-943\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-943 189.186.91.88 b9516d17-8563-4ea2-bdc2-3fa04f25e2b9 2020-11-30 21:39:42.344649 47183 3558 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.91.88 c37ffb8a-85b3-4e15-a0e8-70335abdc389 2020-11-30 21:39:48.683627 47184 28 User \N \N 2 User \N update --- {}\n 5 Usuario MONTSE ha sido modificado. 189.186.20.144 b3bb0428-8269-4a0e-bb32-26b8bfab5c1d 2020-11-30 22:01:16.742932 47185 457 Customer \N \N 2 User \N create ---\nnick_name: JASIBE ARAUJO\nphone: "(667) 189-0146"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JASIBE ARAUJO fue registrado. 189.186.20.144 5e8b581e-d323-4720-a268-42a3fbbc902c 2020-11-30 22:02:16.123964 47186 3559 Sale \N \N 2 User \N create ---\ncustomer_id: 457\nuser_id: 2\nopen_cash_register_id: 1202\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-30\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1696\nexpiration_date: 2021-01-04\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 b0a43e6c-e66e-4531-9bed-3bd50677e4b7 2020-11-30 22:02:38.378255 47187 2369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 23 \N 189.186.20.144 b0a43e6c-e66e-4531-9bed-3bd50677e4b7 2020-11-30 22:02:38.407942 47188 4712 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1202\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 3559\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1696\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1696 189.186.20.144 5f4294ec-cbb5-4597-8d06-2406b11d04c0 2020-11-30 22:02:44.365086 47189 3559 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.20.144 f0a0b3d0-3e53-4ba4-9ed4-27f981a1d08a 2020-11-30 22:02:47.349586 47190 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-28 23:33:24.183073000 Z\n- &1 2020-11-29 02:24:30.878928000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-30 22:07:33.718044203 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934004\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934004\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 412\n- 413\n 826 \N 189.186.20.144 a9d09ea9-8b4d-497a-9776-88b57d9dfe35 2020-11-30 22:07:33.736693 47191 1 User \N \N 1 User \N update ---\nunique_session_id:\n- ff83y3szr58yRUUTTLNC\n- 5w4zwdRC1FYRK-vpfv9o\n 827 \N 189.186.20.144 a9d09ea9-8b4d-497a-9776-88b57d9dfe35 2020-11-30 22:07:33.7629 47192 28 User \N \N 1 User \N update ---\nusertype:\n- C\n- G\n 6 Usuario MONTSE ha sido modificado. 189.186.20.144 e46dc095-004c-4d62-a0b0-35ec66e54806 2020-11-30 22:09:26.052803 47193 28 User \N \N 1 User \N update ---\nusertype:\n- G\n- C\n 7 Usuario MONTSE ha sido modificado. 189.186.20.144 104a528e-c1ee-40dc-b5f0-0ecfaaf5f074 2020-11-30 22:12:05.709771 47194 33 User \N \N 1 User \N create ---\nuserid: MONTSE B.\nfirst_name: MONTSE\nlast_name: BARRIOS\nusertype: G\nemail: montsebarrios@hotmail.com\nencrypted_password: "$2a$10$6Ai0RVeCr8EvJbCCjemh8.H1p0Vvgwk5Ql35PUh/KIlnmwvhwM27a"\nreset_password_token: \nreset_password_sent_at: \nremember_created_at: \nsign_in_count: 0\ncurrent_sign_in_at: \nlast_sign_in_at: \ncurrent_sign_in_ip: \nlast_sign_in_ip: \npointsale_id: 1\nunique_session_id: \nstatus: 1\nwarehouse_id: \n 1 \N 189.186.20.144 473adb2c-d04a-4cae-acec-acf982c8b66c 2020-11-30 22:16:31.432864 47355 1638 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 189.186.20.144 fe6705d2-7033-42e9-8da7-24a80fb356d4 2020-12-02 22:00:00.448675 47195 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-28 18:39:26.503165000 Z\n- &1 2020-11-30 17:33:26.021787000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-11-30 22:17:26.816915396 Z\nsign_in_count:\n- 714\n- 715\n 1433 \N 189.186.20.144 935b839d-ca96-4724-ad19-a259893cdde8 2020-11-30 22:17:26.822934 47196 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 2LJRMGF3u2gMGFS8_C5x\n- g9V-Fif7fZWDasJA_dNa\n 1434 \N 189.186.20.144 935b839d-ca96-4724-ad19-a259893cdde8 2020-11-30 22:17:26.837732 47197 33 User \N \N 33 User \N update ---\nlast_sign_in_at:\n- \n- &1 2020-11-30 22:20:57.364710529 Z\ncurrent_sign_in_at:\n- \n- *1\nlast_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- \n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 0\n- 1\n 2 \N 189.186.20.144 68472147-7174-4eb9-b04c-cb4d9bbf0204 2020-11-30 22:20:57.37295 47198 33 User \N \N 33 User \N update ---\nunique_session_id:\n- \n- b6SZsu2jfAtYMbgkvYPp\n 3 \N 189.186.20.144 68472147-7174-4eb9-b04c-cb4d9bbf0204 2020-11-30 22:20:57.387979 47199 28 User \N \N 1 User \N update ---\nstatus:\n- active\n- 2\n 8 El usuario MONTSE fue desactivado. 189.186.20.144 1e842a14-421d-4e71-aa38-23e2557b2693 2020-11-30 22:21:49.925179 47200 28 User \N \N 1 User \N update ---\nstatus:\n- inactive\n- 1\n 9 El usuario MONTSE fue activado. 189.186.20.144 c342a0f0-fdb3-4411-811a-3ea659988957 2020-11-30 22:21:56.64841 47201 28 User \N \N 1 User \N update ---\nusertype:\n- C\n- G\n 10 Usuario MONTSE ha sido modificado. 189.186.20.144 6a407b30-1c89-4e9f-8c32-bfd5fd576b9a 2020-11-30 22:23:38.927838 47202 3560 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1203\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-944\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 f8d1eba1-6645-484d-b241-6d06a6fda3e3 2020-12-01 00:35:39.373028 47203 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 50 \N 189.186.91.88 f8d1eba1-6645-484d-b241-6d06a6fda3e3 2020-12-01 00:35:39.401341 47204 3560 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-944 cancelada. 189.186.91.88 5c15ef4f-af65-47bd-874e-9cad339fd60f 2020-12-01 00:36:58.061064 47205 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.11E2\n 51 \N 189.186.91.88 5c15ef4f-af65-47bd-874e-9cad339fd60f 2020-12-01 00:36:58.089086 47206 3561 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1203\namount: !ruby/object:BigDecimal 18:0.2288E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2288E4\nstatus: 0\ndate_sale: 2020-11-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-945\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.91.88 8a5421d5-9223-45de-bda9-87803c3450d2 2020-12-01 00:37:31.334673 47207 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 52 \N 189.186.91.88 8a5421d5-9223-45de-bda9-87803c3450d2 2020-12-01 00:37:31.363317 47208 2586 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.91.88 8a5421d5-9223-45de-bda9-87803c3450d2 2020-12-01 00:37:31.387464 47209 3509 Sale \N \N 21 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-915 cancelada. 189.186.153.13 a4a6770e-6ca4-4f6c-8972-7cf7c14e6904 2020-12-01 00:49:09.346763 47210 4713 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1203\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '0'\nsale_id: 3509\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-915\nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.153.13 a4a6770e-6ca4-4f6c-8972-7cf7c14e6904 2020-12-01 00:49:09.37429 47211 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.7E1\n 81 \N 189.186.153.13 a4a6770e-6ca4-4f6c-8972-7cf7c14e6904 2020-12-01 00:49:09.399584 47212 3562 Sale \N \N 33 User \N create ---\ncustomer_id: 1\nuser_id: 33\nopen_cash_register_id: 1202\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-11-30\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1697\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 3a310391-cc77-4ec3-a54c-db021f5f21d6 2020-12-01 00:55:00.079435 47213 2374 AvailableProduct \N \N 33 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 27 \N 189.186.20.144 3a310391-cc77-4ec3-a54c-db021f5f21d6 2020-12-01 00:55:00.109802 47214 3563 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1203\namount: !ruby/object:BigDecimal 18:0.1218E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1218E4\nstatus: 0\ndate_sale: 2020-11-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-946\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.153.13 0d8ce174-ba6d-4df6-8e14-526b7db84422 2020-12-01 00:55:07.311086 47215 1796 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.153.13 0d8ce174-ba6d-4df6-8e14-526b7db84422 2020-12-01 00:55:07.343283 47216 2300 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.153.13 0d8ce174-ba6d-4df6-8e14-526b7db84422 2020-12-01 00:55:07.376111 47217 3563 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.153.13 da98dba5-0be4-4bd9-a45d-1eb8be5fed61 2020-12-01 00:56:55.328937 47218 4714 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1203\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1218E4\nmove_type: '1'\nsale_id: 3563\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-946\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1218E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-946 189.186.153.13 da98dba5-0be4-4bd9-a45d-1eb8be5fed61 2020-12-01 00:56:55.359714 47219 3562 Sale \N \N 33 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 01f2a025-5d06-447e-af8b-7df911952b83 2020-12-01 00:58:51.998418 47220 4715 CashRegistersMove \N \N 33 User \N create ---\nopen_cash_register_id: 1202\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3562\ncardnumber: 7301\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1697\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1697 189.186.20.144 01f2a025-5d06-447e-af8b-7df911952b83 2020-12-01 00:58:52.021787 47221 3564 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1203\namount: !ruby/object:BigDecimal 18:0.58348E3\ntax: !ruby/object:BigDecimal 18:0.1352E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.597E3\nstatus: 0\ndate_sale: 2020-11-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-947\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.153.13 ebb019e6-f8c1-4699-baec-1faf351005f4 2020-12-01 00:59:19.065657 47222 2280 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.153.13 ebb019e6-f8c1-4699-baec-1faf351005f4 2020-12-01 00:59:19.123184 47223 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.37E2\n- !ruby/object:BigDecimal 18:0.35E2\n 32 \N 189.186.153.13 ebb019e6-f8c1-4699-baec-1faf351005f4 2020-12-01 00:59:19.1584 47224 3564 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.153.13 9edc7e09-a231-4011-a0ea-63861dd1082d 2020-12-01 00:59:24.090143 47225 4716 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1203\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.597E3\nmove_type: '1'\nsale_id: 3564\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-947\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.403E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-947 189.186.153.13 9edc7e09-a231-4011-a0ea-63861dd1082d 2020-12-01 00:59:24.116137 47226 3565 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1203\namount: !ruby/object:BigDecimal 18:0.2288E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2288E4\nstatus: 0\ndate_sale: 2020-11-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-948\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.153.13 aae98e05-9b8f-4265-abb4-871e7ca09be2 2020-12-01 01:56:12.195754 47227 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 53 \N 189.186.153.13 aae98e05-9b8f-4265-abb4-871e7ca09be2 2020-12-01 01:56:12.223956 47228 2586 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.153.13 aae98e05-9b8f-4265-abb4-871e7ca09be2 2020-12-01 01:56:12.24808 47229 3565 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.153.13 e0236909-0221-48ab-b4e4-2aa9de50f1f7 2020-12-01 01:56:19.241953 47230 4717 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1203\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2288E4\nmove_type: '1'\nsale_id: 3565\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-948\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2288E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-948 189.186.153.13 e0236909-0221-48ab-b4e4-2aa9de50f1f7 2020-12-01 01:56:19.26778 47231 3561 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-945 cancelada. 189.186.153.13 60161959-3e77-41af-9cd9-c17e7744d55a 2020-12-01 01:56:33.602372 47232 2586 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.153.13 60161959-3e77-41af-9cd9-c17e7744d55a 2020-12-01 01:56:33.636283 47233 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.1E2\n 54 \N 189.186.153.13 60161959-3e77-41af-9cd9-c17e7744d55a 2020-12-01 01:56:33.667891 47234 3566 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1203\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-11-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-949\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.153.13 44a0b88e-285c-4b30-b699-de753db448a9 2020-12-01 02:03:00.248179 47235 2341 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 14 \N 189.186.153.13 44a0b88e-285c-4b30-b699-de753db448a9 2020-12-01 02:03:00.288704 47236 3566 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.153.13 a8694f54-a0d6-4f56-8bd5-0cad20b01e6e 2020-12-01 02:03:05.363085 47237 4718 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1203\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3566\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-949\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1399E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-949 189.186.153.13 a8694f54-a0d6-4f56-8bd5-0cad20b01e6e 2020-12-01 02:03:05.38658 47238 1227 CashOut \N \N 33 User \N create ---\nopen_cash_register_id: 1202\nuser_id: 33\namount_in: !ruby/object:BigDecimal 18:0.4356E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.19E4\ncash_fund: !ruby/object:BigDecimal 18:0.1196E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3096E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.144 078d8b75-9bb3-4edb-aa68-acba7a8bfcd4 2020-12-01 02:04:48.505695 47239 1202 OpenCashRegister \N \N 33 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.144 078d8b75-9bb3-4edb-aa68-acba7a8bfcd4 2020-12-01 02:04:48.517398 47240 1228 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1203\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.6002E4\namount_out: !ruby/object:BigDecimal 18:0.1499E4\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.4531E4\ncash_fund: !ruby/object:BigDecimal 18:0.882E3\nphysical_cash: !ruby/object:BigDecimal 18:0.5413E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.153.13 4b10b767-648d-4226-9742-65c550c9207f 2020-12-01 02:18:41.118298 47241 1203 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.153.13 4b10b767-648d-4226-9742-65c550c9207f 2020-12-01 02:18:41.132132 47242 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-29 23:01:52.408143000 Z\n- &1 2020-11-30 20:04:15.346842000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-01 02:21:09.427324898 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535600\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122701\n mask_addr: 4294967295\nsign_in_count:\n- 2101\n- 2102\n 4204 \N 189.186.153.13 2bb62eaf-5d39-43cf-9d08-8d9ef0fac5e8 2020-12-01 02:21:09.433827 47243 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eu789n2AuEgKbM1oqVDw\n- sqW3pWwipGVwqAMGPyE3\n 4205 \N 189.186.153.13 2bb62eaf-5d39-43cf-9d08-8d9ef0fac5e8 2020-12-01 02:21:09.449953 47356 3578 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 646b24d6-5e9b-4a7b-aebf-316af5d6862d 2020-12-02 22:00:43.316494 47244 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-11-30 20:04:15.346842000 Z\n- &1 2020-12-01 02:21:09.427324000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-01 03:11:26.796907340 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535600\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122701\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122701\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938530\n mask_addr: 4294967295\nsign_in_count:\n- 2102\n- 2103\n 4206 \N 200.68.151.226 7429fed4-721d-451a-a9e2-3ebcc19dfa20 2020-12-01 03:11:26.808518 47245 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sqW3pWwipGVwqAMGPyE3\n- MiNgN99Nw6qikJ-6ubE9\n 4207 \N 200.68.151.226 7429fed4-721d-451a-a9e2-3ebcc19dfa20 2020-12-01 03:11:26.843137 47246 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-29 18:10:47.270203000 Z\n- &1 2020-11-30 20:58:16.341179000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-01 17:16:07.632139302 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103142\n mask_addr: 4294967295\nsign_in_count:\n- 354\n- 355\n 711 \N 189.186.76.166 27138eed-fbcf-4921-9dc6-502e101b3514 2020-12-01 17:16:07.670958 47247 21 User \N \N 21 User \N update ---\nunique_session_id:\n- sTYkLDN-2orrcZYQ9nTx\n- hou1ENC9caL_8oG-K7Rx\n 712 \N 189.186.76.166 27138eed-fbcf-4921-9dc6-502e101b3514 2020-12-01 17:16:07.700173 47248 1204 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.882E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 882.0 189.186.76.166 cf23048b-910f-49ca-b9e1-84c4c1dfb556 2020-12-01 17:16:28.670235 47249 3567 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1204\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-01\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-950\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.76.166 ac4f1b66-f10a-4311-8297-807945e23ea9 2020-12-01 17:18:42.358058 47250 2620 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.76.166 ac4f1b66-f10a-4311-8297-807945e23ea9 2020-12-01 17:18:42.389641 47251 3567 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.76.166 68d5aba6-d08e-4660-b072-3329c450e560 2020-12-01 17:18:50.266342 47252 4719 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1204\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 3567\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-950\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-950 189.186.76.166 68d5aba6-d08e-4660-b072-3329c450e560 2020-12-01 17:18:50.302046 47253 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-30 17:33:26.021787000 Z\n- &1 2020-11-30 22:17:26.816915000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-01 17:24:34.294473260 Z\nsign_in_count:\n- 715\n- 716\n 1435 \N 189.186.20.144 3efb4c93-6f48-4f87-bfb6-d7c6500c7eae 2020-12-01 17:24:34.300753 47254 2 User \N \N 2 User \N update ---\nunique_session_id:\n- g9V-Fif7fZWDasJA_dNa\n- 2kzPK1qQKfsEKmS_R26n\n 1436 \N 189.186.20.144 3efb4c93-6f48-4f87-bfb6-d7c6500c7eae 2020-12-01 17:24:34.318509 47255 1205 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1196E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1196.0 189.186.20.144 fb6945d8-d757-49f2-91de-945419b30f9a 2020-12-01 17:25:43.163026 47256 3568 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1205\namount: !ruby/object:BigDecimal 18:0.3398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3398E4\nstatus: 0\ndate_sale: 2020-12-01\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1698\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 28db2436-b2f1-4d1d-9ffb-05a98bf5675d 2020-12-01 19:46:52.655383 47257 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 21 \N 189.186.20.144 28db2436-b2f1-4d1d-9ffb-05a98bf5675d 2020-12-01 19:46:52.684817 47258 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 28 \N 189.186.20.144 28db2436-b2f1-4d1d-9ffb-05a98bf5675d 2020-12-01 19:46:52.710866 47259 3568 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 a256efae-6a80-49c1-b857-437f55cfa2c1 2020-12-01 19:47:50.827461 47260 4720 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1205\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3398E4\nmove_type: '1'\nsale_id: 3568\ncardnumber: 5799\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1698\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1698 189.186.20.144 a256efae-6a80-49c1-b857-437f55cfa2c1 2020-12-01 19:47:50.850468 47261 2373 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.20.144 0ccd76e7-b61f-4809-ba9c-cd4c1f14889b 2020-12-01 20:25:01.293737 47262 743 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-01\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.20.144 899c3ac1-c657-4b36-923d-7b609ce38c4f 2020-12-01 20:25:03.415492 47263 743 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-01\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.76.166 f3a95808-48c7-4940-8dcf-d3886c4cdb25 2020-12-01 20:25:40.531629 47264 2353 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.76.166 f3a95808-48c7-4940-8dcf-d3886c4cdb25 2020-12-01 20:25:40.714426 47265 3569 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1204\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-12-01\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-951\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.76.166 642f408e-6e76-460a-be8f-2d82b737740a 2020-12-01 20:26:20.150995 47266 2353 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.76.166 642f408e-6e76-460a-be8f-2d82b737740a 2020-12-01 20:26:20.183507 47267 3569 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.76.166 9dba4ba7-2ee5-40a1-9f54-105f5bc7d41a 2020-12-01 20:26:38.886821 47268 4721 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1204\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 3569\ncardnumber: 2585\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-951\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-951 189.186.76.166 9dba4ba7-2ee5-40a1-9f54-105f5bc7d41a 2020-12-01 20:26:38.910734 47269 493 Purchase \N \N 2 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-211\namount: !ruby/object:BigDecimal 18:0.4495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4495E3\nobservations: ''\npurchase_date: 2020-12-01\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-211 por $ 449.5 MXN creada. 189.186.20.144 c4d12d1c-ae9e-471d-af24-19a310e8eecf 2020-12-01 20:26:41.638393 47270 2373 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.20.144 c4d12d1c-ae9e-471d-af24-19a310e8eecf 2020-12-01 20:26:41.659373 47271 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-01 02:21:09.427324000 Z\n- &1 2020-12-01 03:11:26.796907000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-01 23:00:35.844729091 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183122701\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938530\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938530\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938438\n mask_addr: 4294967295\nsign_in_count:\n- 2103\n- 2104\n 4208 \N 200.68.151.134 214546b0-7da1-4afe-b783-5e5519c99827 2020-12-01 23:00:35.883613 47272 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MiNgN99Nw6qikJ-6ubE9\n- yip_7AjzsvoyCX1-bpuz\n 4209 \N 200.68.151.134 214546b0-7da1-4afe-b783-5e5519c99827 2020-12-01 23:00:35.915013 47273 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-01 03:11:26.796907000 Z\n- &1 2020-12-01 23:00:35.844729000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-02 00:15:31.306245485 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938530\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938438\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938438\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103142\n mask_addr: 4294967295\nsign_in_count:\n- 2104\n- 2105\n 4210 \N 189.186.76.166 f341d2df-5170-46f0-9162-6b75aa62058f 2020-12-02 00:15:31.316324 47274 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yip_7AjzsvoyCX1-bpuz\n- 2L4aVzbdAhHuXzwzAsVT\n 4211 \N 189.186.76.166 f341d2df-5170-46f0-9162-6b75aa62058f 2020-12-02 00:15:31.338233 47275 27 User \N \N 4 User \N update ---\nstatus:\n- active\n- 2\n 278 El usuario KEYLA fue desactivado. 189.186.76.166 df56dbdd-1fdb-4774-b8f8-92aa91c803c4 2020-12-02 00:16:35.405977 47276 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-28 01:03:16.964087000 Z\n- &1 2020-11-29 01:41:26.950518000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-02 00:31:42.880852190 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103142\n mask_addr: 4294967295\nsign_in_count:\n- 374\n- 375\n 751 \N 189.186.76.166 0cfb3caf-d376-4fd3-80da-3ad37ade6e46 2020-12-02 00:31:42.887985 47277 18 User \N \N 18 User \N update ---\nunique_session_id:\n- o3wBhBArboSkhZ-E_Mea\n- zHHc6T8Dxz4YB7MvESHJ\n 752 \N 189.186.76.166 0cfb3caf-d376-4fd3-80da-3ad37ade6e46 2020-12-02 00:31:42.904287 47278 3570 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1204\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-12-01\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-952\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.76.166 40e1c2da-07b9-405a-a926-ad4a64cd3d0d 2020-12-02 00:32:38.174744 47279 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 77 \N 189.186.76.166 40e1c2da-07b9-405a-a926-ad4a64cd3d0d 2020-12-02 00:32:38.201819 47280 3570 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.76.166 c37fa79a-f1c3-487f-83db-afe2fa416d48 2020-12-02 00:32:49.571807 47281 4722 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1204\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 3570\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-952\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.17E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-952 189.186.76.166 c37fa79a-f1c3-487f-83db-afe2fa416d48 2020-12-02 00:32:49.603904 47282 3571 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1205\namount: !ruby/object:BigDecimal 18:0.1249E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1249E4\nstatus: 0\ndate_sale: 2020-12-01\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1699\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 c480650f-7fb7-4f09-9b04-62d895659e7d 2020-12-02 00:36:00.247218 47283 2542 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.20.144 c480650f-7fb7-4f09-9b04-62d895659e7d 2020-12-02 00:36:00.280256 47284 3571 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 1e675739-d09b-4e5a-8d06-ebada72347b5 2020-12-02 00:36:05.68976 47285 4723 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1205\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1249E4\nmove_type: '1'\nsale_id: 3571\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1699\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1249E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1699 189.186.20.144 1e675739-d09b-4e5a-8d06-ebada72347b5 2020-12-02 00:36:05.757914 47286 4724 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1204\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 3487\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-903 189.186.76.166 523c85ac-100d-4ea2-b50b-a2f157d46c72 2020-12-02 00:36:06.923075 47287 3487 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.76.166 7ee300a4-c49f-4fb8-965c-c100b32c4b43 2020-12-02 00:36:08.08531 47378 2568 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.68.98 432874bb-0fe5-4671-8d32-e51529248959 2020-12-03 01:51:15.877416 47379 3582 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.68.98 194d297a-69bb-4a22-95e7-b5a2b6f1fac5 2020-12-03 01:51:19.365078 47288 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-01 23:00:35.844729000 Z\n- &1 2020-12-02 00:15:31.306245000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-02 01:31:14.873502151 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938438\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103142\n mask_addr: 4294967295\nsign_in_count:\n- 2105\n- 2106\n 4212 \N 189.186.76.166 11d07085-6f07-41eb-8052-be4ee7811dc4 2020-12-02 01:31:14.884223 47289 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2L4aVzbdAhHuXzwzAsVT\n- 5daAxPDLHVarnpn_8RhJ\n 4213 \N 189.186.76.166 11d07085-6f07-41eb-8052-be4ee7811dc4 2020-12-02 01:31:14.911444 47290 744 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-12-01\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.76.166 5ef2e114-1c80-45b0-8404-dad624ec1a20 2020-12-02 01:31:49.073818 47291 745 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-01\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.76.166 789dbd10-a4a9-47d3-ac0b-20549971b845 2020-12-02 01:32:17.822514 47292 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-11-29 01:41:26.950518000 Z\n- &1 2020-12-02 00:31:42.880852000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-02 01:32:52.305742128 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103142\n mask_addr: 4294967295\nsign_in_count:\n- 375\n- 376\n 753 \N 189.186.76.166 1a6fda67-4cf4-4293-b34e-93990a88c978 2020-12-02 01:32:52.313359 47293 18 User \N \N 18 User \N update ---\nunique_session_id:\n- zHHc6T8Dxz4YB7MvESHJ\n- MMw1t8eDepWZ4SR-cezK\n 754 \N 189.186.76.166 1a6fda67-4cf4-4293-b34e-93990a88c978 2020-12-02 01:32:52.329112 47294 745 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-01\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.76.166 ac278f61-178d-41e6-8cf6-740a6b6585dd 2020-12-02 01:33:35.391299 47295 1389 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 14 \N 189.186.76.166 ac278f61-178d-41e6-8cf6-740a6b6585dd 2020-12-02 01:33:35.410792 47296 3572 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1204\namount: !ruby/object:BigDecimal 18:0.3653E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3653E4\nstatus: 0\ndate_sale: 2020-12-01\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-953\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.76.166 7628a374-a781-4e6a-8f32-2cd65ccef0cf 2020-12-02 01:37:41.792026 47297 993 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.76.166 7628a374-a781-4e6a-8f32-2cd65ccef0cf 2020-12-02 01:37:41.819598 47298 1389 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 15 \N 189.186.76.166 7628a374-a781-4e6a-8f32-2cd65ccef0cf 2020-12-02 01:37:41.842621 47299 1901 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.76.166 7628a374-a781-4e6a-8f32-2cd65ccef0cf 2020-12-02 01:37:41.864063 47300 3572 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.76.166 0853c084-0e82-4cc3-a57e-5c8639c3b858 2020-12-02 01:37:46.077856 47301 4725 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1204\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3653E4\nmove_type: '1'\nsale_id: 3572\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-953\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.37E4\nchange: !ruby/object:BigDecimal 18:0.47E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-953 189.186.76.166 0853c084-0e82-4cc3-a57e-5c8639c3b858 2020-12-02 01:37:46.099393 47302 3573 Sale \N \N 18 User \N create ---\ncustomer_id: 283\nuser_id: 18\nopen_cash_register_id: 1204\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2020-12-01\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-954\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.76.166 88c3dde0-ce75-40f2-86e5-1343a7641f03 2020-12-02 01:49:05.874479 47303 1529 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.76.166 88c3dde0-ce75-40f2-86e5-1343a7641f03 2020-12-02 01:49:05.921941 47304 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-02 00:15:31.306245000 Z\n- &1 2020-12-02 01:31:14.873502000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-02 01:55:15.696376184 Z\nsign_in_count:\n- 2106\n- 2107\n 4214 \N 189.186.76.166 e9404241-1acf-45be-9650-125eaa314149 2020-12-02 01:55:15.702598 47305 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5daAxPDLHVarnpn_8RhJ\n- eD7S6Xcqu52CucpxVyai\n 4215 \N 189.186.76.166 e9404241-1acf-45be-9650-125eaa314149 2020-12-02 01:55:15.719694 47306 1229 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1205\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4647E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.14E4\ncash_fund: !ruby/object:BigDecimal 18:0.1203E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2603E4\nobservations: "efectivo en caja $2445 + \\r\\nmetí $158 a efectivo en caja de iva de\n factura de clienta "\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.144 404a3a4e-bc44-4b9c-a7ad-cc95570e2ced 2020-12-02 01:56:16.484478 47307 1205 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.144 404a3a4e-bc44-4b9c-a7ad-cc95570e2ced 2020-12-02 01:56:16.498281 47308 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-02 00:31:42.880852000 Z\n- &1 2020-12-02 01:32:52.305742000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-02 02:06:03.394452900 Z\nsign_in_count:\n- 376\n- 377\n 755 \N 189.186.76.166 19bfd5fc-2082-4614-99c8-9ae51baecabf 2020-12-02 02:06:03.400844 47309 18 User \N \N 18 User \N update ---\nunique_session_id:\n- MMw1t8eDepWZ4SR-cezK\n- ZbxBShvcAXzTUstouqoB\n 756 \N 189.186.76.166 19bfd5fc-2082-4614-99c8-9ae51baecabf 2020-12-02 02:06:03.414837 47310 1230 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1204\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.8249E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.75E4\ncash_fund: !ruby/object:BigDecimal 18:0.732E3\nphysical_cash: !ruby/object:BigDecimal 18:0.8232E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.76.166 747fde6c-7fec-416d-b42b-5215edea1b78 2020-12-02 02:19:18.957325 47311 1204 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.76.166 747fde6c-7fec-416d-b42b-5215edea1b78 2020-12-02 02:19:18.972093 47402 3583 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-958 cancelada. 189.186.68.98 9b631109-ad61-4e4f-a35f-ea3b14710b80 2020-12-03 18:56:27.17967 47312 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-11-30 22:17:26.816915000 Z\n- &1 2020-12-01 17:24:34.294473000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-02 03:27:20.072722333 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539077\n mask_addr: 4294967295\nsign_in_count:\n- 716\n- 717\n 1437 \N 177.228.115.197 b5f06252-367e-4abf-a42c-320a7f194778 2020-12-02 03:27:20.079678 47313 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 2kzPK1qQKfsEKmS_R26n\n- nzdvG1uAe3DmcJRvbqGw\n 1438 \N 177.228.115.197 b5f06252-367e-4abf-a42c-320a7f194778 2020-12-02 03:27:20.096153 47314 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-29 02:24:30.878928000 Z\n- &1 2020-11-30 22:07:33.718044000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-02 03:27:42.211670066 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934004\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539077\n mask_addr: 4294967295\nsign_in_count:\n- 413\n- 414\n 828 \N 177.228.115.197 e3536be1-9c33-417c-8786-3b2dba8c838e 2020-12-02 03:27:42.22083 47315 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 5w4zwdRC1FYRK-vpfv9o\n- ncYktauCPQvsCXeyizBq\n 829 \N 177.228.115.197 e3536be1-9c33-417c-8786-3b2dba8c838e 2020-12-02 03:27:42.242349 47316 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-02 01:31:14.873502000 Z\n- &1 2020-12-02 01:55:15.696376000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-02 06:35:42.015138293 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535600\n mask_addr: 4294967295\nsign_in_count:\n- 2107\n- 2108\n 4216 \N 177.228.102.48 587e9195-ef34-4670-8ea9-a12a7adf72d9 2020-12-02 06:35:42.046583 47317 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eD7S6Xcqu52CucpxVyai\n- iKBWb_w1KjspWPcX-rJC\n 4217 \N 177.228.102.48 587e9195-ef34-4670-8ea9-a12a7adf72d9 2020-12-02 06:35:42.075593 47318 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-01 17:24:34.294473000 Z\n- &1 2020-12-02 03:27:20.072722000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-02 18:19:31.643436004 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539077\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539077\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 717\n- 718\n 1439 \N 189.186.20.144 156ab64a-a937-43c8-b756-192f38dd3292 2020-12-02 18:19:31.674862 47319 2 User \N \N 2 User \N update ---\nunique_session_id:\n- nzdvG1uAe3DmcJRvbqGw\n- zpJj4byzoCn24NMGQz9h\n 1440 \N 189.186.20.144 156ab64a-a937-43c8-b756-192f38dd3292 2020-12-02 18:19:31.700879 47320 1206 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1203E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1203.0 189.186.20.144 42f1485f-f5f5-4259-a0e2-684a4757f4f3 2020-12-02 18:19:50.234069 47321 3574 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1206\namount: !ruby/object:BigDecimal 18:0.388E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.388E3\nstatus: 0\ndate_sale: 2020-12-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1700\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 edc366d0-2116-44bf-91ad-befb4958623f 2020-12-02 18:21:10.331126 47322 2381 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.20.144 edc366d0-2116-44bf-91ad-befb4958623f 2020-12-02 18:21:10.359288 47323 2396 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.20.144 edc366d0-2116-44bf-91ad-befb4958623f 2020-12-02 18:21:10.393767 47324 3574 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 ff2301de-e681-4015-802d-22291b915567 2020-12-02 18:21:14.066277 47325 4726 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1206\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.388E3\nmove_type: '1'\nsale_id: 3574\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1700\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.388E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1700 189.186.20.144 ff2301de-e681-4015-802d-22291b915567 2020-12-02 18:21:14.087408 47326 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-02 01:32:52.305742000 Z\n- &1 2020-12-02 02:06:03.394452000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-02 19:00:37.340020890 Z\nsign_in_count:\n- 377\n- 378\n 757 \N 189.186.76.166 4c20518e-bbad-465c-ad24-1ab0863cf4b4 2020-12-02 19:00:37.346283 47327 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ZbxBShvcAXzTUstouqoB\n- xy1yMWRprDhHapEtys3n\n 758 \N 189.186.76.166 4c20518e-bbad-465c-ad24-1ab0863cf4b4 2020-12-02 19:00:37.365081 47328 1207 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.732E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 732.0 189.186.76.166 b38602de-d207-4b02-ac8a-76928e8f0709 2020-12-02 19:01:26.644236 47329 458 Customer \N \N 18 User \N create ---\nnick_name: LORENZA PULIDO VARELA\nphone: "(667) 207-0054"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente LORENZA PULIDO VARELA fue registrado. 189.186.76.166 acedc09c-b8cc-49f3-a96d-53afdfd8e3d6 2020-12-02 19:02:42.4492 47330 3575 Sale \N \N 18 User \N create ---\ncustomer_id: 458\nuser_id: 18\nopen_cash_register_id: 1207\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-02\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-955\nexpiration_date: 2021-01-06\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.76.166 44949908-3282-4445-860b-0f51025086c5 2020-12-02 19:03:15.886006 47331 2147 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.76.166 44949908-3282-4445-860b-0f51025086c5 2020-12-02 19:03:15.911256 47332 4727 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1207\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 3575\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-955\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-955 189.186.76.166 959e58c0-150e-40ea-a6d0-36a55c48aeeb 2020-12-02 19:03:41.23352 47333 3575 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.76.166 2e6cc218-948c-4363-b79d-2694cab00a9c 2020-12-02 19:03:44.692893 47334 4728 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1207\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 3444\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-883 189.186.76.166 e5ea9696-4d6c-4de2-b18d-a94db7444671 2020-12-02 19:07:09.191364 47335 3444 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.76.166 f5e5a18a-6480-4635-99e9-30a0e51c0787 2020-12-02 19:07:10.310717 47336 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-02 01:55:15.696376000 Z\n- &1 2020-12-02 06:35:42.015138000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-02 20:34:53.891569869 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535600\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535600\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101026\n mask_addr: 4294967295\nsign_in_count:\n- 2108\n- 2109\n 4218 \N 189.186.68.98 881ecdee-820c-4f3d-8512-34d5bc58b02a 2020-12-02 20:34:53.912388 47337 4 User \N \N 4 User \N update ---\nunique_session_id:\n- iKBWb_w1KjspWPcX-rJC\n- XcZK4WudBDTeisYnombD\n 4219 \N 189.186.68.98 881ecdee-820c-4f3d-8512-34d5bc58b02a 2020-12-02 20:34:53.937383 47338 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-02 02:06:03.394452000 Z\n- &1 2020-12-02 19:00:37.340020000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-02 20:37:59.595368492 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101026\n mask_addr: 4294967295\nsign_in_count:\n- 378\n- 379\n 759 \N 189.186.68.98 dbd79584-9cfb-4421-8f70-183e7df35f0d 2020-12-02 20:37:59.602758 47339 18 User \N \N 18 User \N update ---\nunique_session_id:\n- xy1yMWRprDhHapEtys3n\n- hx4Q23xzEaP5jxz6PKeH\n 760 \N 189.186.68.98 dbd79584-9cfb-4421-8f70-183e7df35f0d 2020-12-02 20:37:59.618161 47340 4729 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1115\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.54E3\nmove_type: '1'\nsale_id: 3179\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1225'\n 1 \N 189.186.68.98 c7f22f86-ee68-4766-8775-b6ee6b189a1e 2020-12-02 20:38:36.015157 47341 4729 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 1115\n- 1207\n 2 movimiento de efectivo por venta con folio PV3-V-737 189.186.68.98 c7f22f86-ee68-4766-8775-b6ee6b189a1e 2020-12-02 20:38:36.056468 47342 4730 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1115\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 3179\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '22525'\n 1 \N 189.186.68.98 f7932c66-27e0-4e68-9307-724ffaae1c8b 2020-12-02 20:39:14.679208 47343 4730 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 1115\n- 1207\n 2 movimiento de efectivo por venta con folio PV3-V-737 189.186.68.98 f7932c66-27e0-4e68-9307-724ffaae1c8b 2020-12-02 20:39:14.706698 47344 3576 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1207\namount: !ruby/object:BigDecimal 18:0.759E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2020-12-02\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-956\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.68.98 0e09f1ac-11b8-41f4-aeaa-50d06c4611de 2020-12-02 21:30:31.158061 47345 2590 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.68.98 0e09f1ac-11b8-41f4-aeaa-50d06c4611de 2020-12-02 21:30:31.206556 47346 3576 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.68.98 395bf529-dfcc-48ba-9ea5-7422d2bc5944 2020-12-02 21:30:40.134907 47347 4731 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1207\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.759E3\nmove_type: '1'\nsale_id: 3576\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-956\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.759E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-956 189.186.68.98 395bf529-dfcc-48ba-9ea5-7422d2bc5944 2020-12-02 21:30:40.168007 47348 3577 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1206\namount: !ruby/object:BigDecimal 18:0.759E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2020-12-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1701\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 afebb3cf-8983-403e-aade-4144b39a1db8 2020-12-02 21:38:26.630855 47349 2549 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.20.144 afebb3cf-8983-403e-aade-4144b39a1db8 2020-12-02 21:38:26.68048 47350 3577 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 a0e5c9eb-5000-4ef8-bd89-74a7c0529ead 2020-12-02 21:38:31.540235 47351 4732 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1206\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.759E3\nmove_type: '1'\nsale_id: 3577\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1701\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.759E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1701 189.186.20.144 a0e5c9eb-5000-4ef8-bd89-74a7c0529ead 2020-12-02 21:38:31.563677 47352 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-02 06:35:42.015138000 Z\n- &1 2020-12-02 20:34:53.891569000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-02 21:57:33.692320773 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535600\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101026\n mask_addr: 4294967295\nsign_in_count:\n- 2109\n- 2110\n 4220 \N 189.186.68.98 058ef8ee-080b-40a5-9d7d-463f6fe1acde 2020-12-02 21:57:33.701118 47353 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XcZK4WudBDTeisYnombD\n- 9WETBfQsBbHH6-4G-kAw\n 4221 \N 189.186.68.98 058ef8ee-080b-40a5-9d7d-463f6fe1acde 2020-12-02 21:57:33.722338 47354 3578 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1206\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-12-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1702\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 fe6705d2-7033-42e9-8da7-24a80fb356d4 2020-12-02 22:00:00.387517 47357 4733 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1206\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 3578\ncardnumber: 141\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1702\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1702 189.186.20.144 646b24d6-5e9b-4a7b-aebf-316af5d6862d 2020-12-02 22:00:43.352464 47358 4734 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1162\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 3373\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.20.144 47a76132-1cf6-4f67-be7f-575dc3e29b9c 2020-12-02 22:24:13.945599 47359 4734 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 1162\n- 1206\n 2 movimiento de efectivo por venta con folio PV1-V-1608 189.186.20.144 47a76132-1cf6-4f67-be7f-575dc3e29b9c 2020-12-02 22:24:13.970356 47360 3579 Sale \N \N 2 User \N create ---\ncustomer_id: 3\nuser_id: 2\nopen_cash_register_id: 1206\namount: !ruby/object:BigDecimal 18:0.1251E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1251E4\nstatus: 0\ndate_sale: 2020-12-02\nsaletype: 0\nseller_id: 30\nsale_code: PV1-V-1703\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 a2047fa4-7df2-4f47-970c-44e18b3f8194 2020-12-02 22:36:49.102181 47361 2611 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.20.144 a2047fa4-7df2-4f47-970c-44e18b3f8194 2020-12-02 22:36:49.159936 47362 3580 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1206\namount: !ruby/object:BigDecimal 18:0.629E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.629E3\nstatus: 0\ndate_sale: 2020-12-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1704\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 26b8d600-148d-4358-b8b3-e74b7436c5f7 2020-12-02 22:43:48.970348 47363 2257 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.20.144 26b8d600-148d-4358-b8b3-e74b7436c5f7 2020-12-02 22:43:49.035186 47364 3580 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 42018769-6d97-4203-898b-9af9a8c4849f 2020-12-02 22:43:56.131241 47365 4735 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1206\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.629E3\nmove_type: '1'\nsale_id: 3580\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1704\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.629E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1704 189.186.20.144 42018769-6d97-4203-898b-9af9a8c4849f 2020-12-02 22:43:56.152933 47366 459 Customer \N \N 2 User \N create ---\nnick_name: 'CLAUDIA RIVAS '\nphone: "(667) 424-5289"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CLAUDIA RIVAS fue registrado. 189.186.20.144 f2f48111-21ea-4cfe-aa64-1e6ce1732587 2020-12-03 00:33:46.965145 47367 494 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-212\namount: !ruby/object:BigDecimal 18:0.1001E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1001E4\nobservations: ''\npurchase_date: 2020-12-02\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-212 por $ 1001.0 MXN creada. 189.186.20.144 83d31f70-48c2-4878-9573-8aa94a2ca20c 2020-12-03 00:35:06.22283 47368 2611 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.20.144 83d31f70-48c2-4878-9573-8aa94a2ca20c 2020-12-03 00:35:06.24843 47369 3581 Sale \N \N 2 User \N create ---\ncustomer_id: 459\nuser_id: 2\nopen_cash_register_id: 1206\namount: !ruby/object:BigDecimal 18:0.1251E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1251E4\nstatus: 0\ndate_sale: 2020-12-02\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1705\nexpiration_date: 2021-01-06\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 6585fc68-3540-4b80-bb3d-a64041026e9a 2020-12-03 00:35:34.199334 47370 2611 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.20.144 6585fc68-3540-4b80-bb3d-a64041026e9a 2020-12-03 00:35:34.227216 47371 4736 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1206\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3581\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1705\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1705 189.186.20.144 586d4c5a-4a1a-4e08-8a44-422bfcaa9086 2020-12-03 00:35:39.517493 47372 3581 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.20.144 eeaffceb-c1a5-424b-9f7a-3bdcb873bce1 2020-12-03 00:35:40.468012 47373 495 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-213\namount: !ruby/object:BigDecimal 18:0.957E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.957E3\nobservations: ''\npurchase_date: 2020-12-02\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-213 por $ 957.0 MXN creada. 189.186.20.144 5e216ccb-c819-49ec-a359-35dc31b74b42 2020-12-03 00:45:10.491269 47374 2610 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.20.144 5e216ccb-c819-49ec-a359-35dc31b74b42 2020-12-03 00:45:10.513733 47375 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-02 19:00:37.340020000 Z\n- &1 2020-12-02 20:37:59.595368000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-03 01:49:12.234571559 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101026\n mask_addr: 4294967295\nsign_in_count:\n- 379\n- 380\n 761 \N 189.186.68.98 9ffbb740-243f-4c95-9912-75c9e0f97d55 2020-12-03 01:49:12.243369 47376 18 User \N \N 18 User \N update ---\nunique_session_id:\n- hx4Q23xzEaP5jxz6PKeH\n- hZE8g1ndRdXRHd_Jrxdy\n 762 \N 189.186.68.98 9ffbb740-243f-4c95-9912-75c9e0f97d55 2020-12-03 01:49:12.25941 47377 3582 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1207\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-12-02\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-957\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.68.98 432874bb-0fe5-4671-8d32-e51529248959 2020-12-03 01:51:15.847047 47380 4737 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1207\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3582\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-957\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-957 189.186.68.98 194d297a-69bb-4a22-95e7-b5a2b6f1fac5 2020-12-03 01:51:19.384657 47381 1231 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1206\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3875E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.35E4\ncash_fund: !ruby/object:BigDecimal 18:0.779E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4279E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.144 7e0da0c6-d2e1-4e03-8f7f-56ce28d08835 2020-12-03 01:51:56.24275 47382 1206 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.144 7e0da0c6-d2e1-4e03-8f7f-56ce28d08835 2020-12-03 01:51:56.258673 47383 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-11-30 22:07:33.718044000 Z\n- &1 2020-12-02 03:27:42.211670000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-03 01:52:01.551318714 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539077\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539077\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 414\n- 415\n 830 \N 189.186.20.144 5b85e1f4-6366-45f8-8b93-acb6e0205bdd 2020-12-03 01:52:01.559844 47384 1 User \N \N 1 User \N update ---\nunique_session_id:\n- ncYktauCPQvsCXeyizBq\n- JKWNnp77wZVcS2Ummg_G\n 831 \N 189.186.20.144 5b85e1f4-6366-45f8-8b93-acb6e0205bdd 2020-12-03 01:52:01.578278 47385 2271 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 7 \N 189.186.68.98 215d4da9-2b87-44ee-a59d-362c011892a7 2020-12-03 01:55:41.797114 47386 2332 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.68.98 57524424-e6aa-4b96-95a5-31e702e81e39 2020-12-03 01:55:57.274935 47387 2332 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.68.98 b4da81f0-3e24-4a78-9dd6-511f0a21b923 2020-12-03 01:56:01.912356 47388 2271 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 189.186.68.98 d832d378-8afc-44f7-a1b4-02c091661605 2020-12-03 01:56:08.269507 47389 746 Transfer \N \N 18 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-12-02\nuser_id: 18\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.68.98 25da7b71-a986-483c-b3d9-78c68f4aaf1c 2020-12-03 01:56:09.372688 47390 1232 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1207\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.4897E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.3309E4\ncash_fund: !ruby/object:BigDecimal 18:0.78E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4089E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.68.98 71070f4d-ef26-47a6-92f6-c8b4d3705362 2020-12-03 02:02:51.341214 47391 1207 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.68.98 71070f4d-ef26-47a6-92f6-c8b4d3705362 2020-12-03 02:02:51.354591 47392 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-02 20:34:53.891569000 Z\n- &1 2020-12-02 21:57:33.692320000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-03 03:06:06.683315488 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101026\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934014\n mask_addr: 4294967295\nsign_in_count:\n- 2110\n- 2111\n 4222 \N 200.68.134.62 33fe5312-f6b0-47cc-98dc-a998c8bd7172 2020-12-03 03:06:06.711133 47393 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9WETBfQsBbHH6-4G-kAw\n- ntHiqtNCuYFbugL9cJJH\n 4223 \N 200.68.134.62 33fe5312-f6b0-47cc-98dc-a998c8bd7172 2020-12-03 03:06:06.736278 47394 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-02 03:27:42.211670000 Z\n- &1 2020-12-03 01:52:01.551318000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-03 03:19:20.107554570 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539077\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934044\n mask_addr: 4294967295\nsign_in_count:\n- 415\n- 416\n 832 \N 200.68.134.92 82a4ff91-3931-41f3-9c29-23c7985ed232 2020-12-03 03:19:20.116961 47395 1 User \N \N 1 User \N update ---\nunique_session_id:\n- JKWNnp77wZVcS2Ummg_G\n- 5iAstomh48s5fyrc-ZjB\n 833 \N 200.68.134.92 82a4ff91-3931-41f3-9c29-23c7985ed232 2020-12-03 03:19:20.13558 47396 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-11-30 20:58:16.341179000 Z\n- &1 2020-12-01 17:16:07.632139000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-03 17:47:29.008995804 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103142\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101026\n mask_addr: 4294967295\nsign_in_count:\n- 355\n- 356\n 713 \N 189.186.68.98 3f6ecd46-51d6-47a8-a94f-1650278dbeca 2020-12-03 17:47:29.038786 47397 21 User \N \N 21 User \N update ---\nunique_session_id:\n- hou1ENC9caL_8oG-K7Rx\n- maUSC6wy9qG27BbbB3jK\n 714 \N 189.186.68.98 3f6ecd46-51d6-47a8-a94f-1650278dbeca 2020-12-03 17:47:29.064142 47398 1208 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.78E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 780.0 189.186.68.98 a0028ca8-7526-4053-8cf6-f512e49d46b5 2020-12-03 17:57:01.972815 47399 460 Customer \N \N 21 User \N create ---\nnick_name: ARACELI OCHOA\nphone: "(667) 254-2884"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ARACELI OCHOA fue registrado. 189.186.68.98 68c7a124-7ead-4c87-b2b1-15b9632a0be5 2020-12-03 18:55:41.281791 47400 3583 Sale \N \N 21 User \N create ---\ncustomer_id: 460\nuser_id: 21\nopen_cash_register_id: 1208\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-03\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-958\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.68.98 f0589ec5-7448-4b37-8282-16837a0f1263 2020-12-03 18:56:10.646214 47401 2375 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 29 \N 189.186.68.98 f0589ec5-7448-4b37-8282-16837a0f1263 2020-12-03 18:56:10.67545 47403 2375 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.12E2\n 30 \N 189.186.68.98 9b631109-ad61-4e4f-a35f-ea3b14710b80 2020-12-03 18:56:27.215702 47404 3584 Sale \N \N 21 User \N create ---\ncustomer_id: 460\nuser_id: 21\nopen_cash_register_id: 1208\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-03\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-959\nexpiration_date: 2021-01-07\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.68.98 3585d5c4-a1e2-4bd6-b892-392fe7509ff7 2020-12-03 18:56:55.949152 47405 2375 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 31 \N 189.186.68.98 3585d5c4-a1e2-4bd6-b892-392fe7509ff7 2020-12-03 18:56:55.974838 47406 4738 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1208\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3584\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-959\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-959 189.186.68.98 4660a9e9-c53d-45ab-ae16-e75a509b0095 2020-12-03 18:57:06.499987 47407 3584 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.68.98 fd122502-56a8-44fd-961d-322e7fd76a14 2020-12-03 18:57:16.856153 47408 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-02 03:27:20.072722000 Z\n- &1 2020-12-02 18:19:31.643436000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-03 19:33:07.826476504 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984539077\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 718\n- 719\n 1441 \N 189.186.20.144 e705ad1c-e78a-443e-ae05-9ded83d0bafa 2020-12-03 19:33:07.83338 47409 2 User \N \N 2 User \N update ---\nunique_session_id:\n- zpJj4byzoCn24NMGQz9h\n- qYYZYLq5n5ytVzsgvxE1\n 1442 \N 189.186.20.144 e705ad1c-e78a-443e-ae05-9ded83d0bafa 2020-12-03 19:33:07.849296 47410 1209 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.779E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 779.0 189.186.20.144 7ca406cb-a505-4aa9-a060-675e6346b4d5 2020-12-03 19:33:23.563024 47411 3585 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1209\namount: !ruby/object:BigDecimal 18:0.629E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.629E3\nstatus: 0\ndate_sale: 2020-12-03\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1706\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 89250da2-3d98-4822-978e-dfa8fa6dbcaf 2020-12-03 19:34:18.687784 47412 2257 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.20.144 89250da2-3d98-4822-978e-dfa8fa6dbcaf 2020-12-03 19:34:18.723972 47413 3585 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 2ea67c79-26a7-45f1-980e-c1c8d3d39cfd 2020-12-03 19:34:23.651628 47414 4739 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1209\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.629E3\nmove_type: '1'\nsale_id: 3585\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1706\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.629E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1706 189.186.20.144 2ea67c79-26a7-45f1-980e-c1c8d3d39cfd 2020-12-03 19:34:23.683555 47415 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-02 21:57:33.692320000 Z\n- &1 2020-12-03 03:06:06.683315000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-03 19:51:08.544133018 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101026\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934014\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934014\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535184\n mask_addr: 4294967295\nsign_in_count:\n- 2111\n- 2112\n 4224 \N 177.228.100.144 4ace24be-6469-4bce-9a40-375a5700fa4a 2020-12-03 19:51:08.551967 47416 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ntHiqtNCuYFbugL9cJJH\n- yCeA4gn47aBPdzge6Xq-\n 4225 \N 177.228.100.144 4ace24be-6469-4bce-9a40-375a5700fa4a 2020-12-03 19:51:08.57302 47417 3586 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1209\namount: !ruby/object:BigDecimal 18:0.969E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.149E3\ntotal: !ruby/object:BigDecimal 18:0.82E3\nstatus: 0\ndate_sale: 2020-12-03\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1707\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 99a62cb1-c6cd-4a6e-84f6-63d0afea954e 2020-12-03 20:23:01.405916 47418 2249 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.20.144 99a62cb1-c6cd-4a6e-84f6-63d0afea954e 2020-12-03 20:23:01.433979 47419 3586 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 e5eb6c2c-dbca-473a-81d3-f1f32fe99020 2020-12-03 20:23:05.195015 47420 4740 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1209\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 3586\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1707\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1707 189.186.20.144 e5eb6c2c-dbca-473a-81d3-f1f32fe99020 2020-12-03 20:23:05.219515 47421 4741 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1209\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.32E3\nmove_type: '1'\nsale_id: 3586\ncardnumber: 9196\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1707\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1707 189.186.20.144 8fd81f7e-3846-4f7f-bfed-5b5cabb4e980 2020-12-03 20:23:18.553331 47422 3587 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1209\namount: !ruby/object:BigDecimal 18:0.2239E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2239E4\nstatus: 0\ndate_sale: 2020-12-03\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1708\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 d3dea80a-4bcc-42c8-bd05-02bc1b3cfbf6 2020-12-03 21:09:28.322719 47423 2228 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.20.144 d3dea80a-4bcc-42c8-bd05-02bc1b3cfbf6 2020-12-03 21:09:28.357972 47424 2611 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.20.144 d3dea80a-4bcc-42c8-bd05-02bc1b3cfbf6 2020-12-03 21:09:28.389391 47425 2124 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.20.144 d3dea80a-4bcc-42c8-bd05-02bc1b3cfbf6 2020-12-03 21:09:28.419054 47426 3587 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 fd97fe65-3cbe-4d19-be55-a72d435e9fef 2020-12-03 21:09:32.937474 47427 4742 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1209\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2239E4\nmove_type: '1'\nsale_id: 3587\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1708\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2239E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1708 189.186.20.144 fd97fe65-3cbe-4d19-be55-a72d435e9fef 2020-12-03 21:09:32.958307 47428 3588 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1209\namount: !ruby/object:BigDecimal 18:0.689E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.689E3\nstatus: 0\ndate_sale: 2020-12-03\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1709\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 3f709d60-6133-4bb3-8294-5e93b39eb4eb 2020-12-03 21:21:35.181717 47429 2528 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.20.144 3f709d60-6133-4bb3-8294-5e93b39eb4eb 2020-12-03 21:21:35.23353 47430 3588 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 242036cf-2c1e-4275-bb53-b8137917986f 2020-12-03 21:22:02.399121 47431 4743 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1209\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.689E3\nmove_type: '1'\nsale_id: 3588\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1709\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1709 189.186.20.144 242036cf-2c1e-4275-bb53-b8137917986f 2020-12-03 21:22:02.422254 47432 4744 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1086\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 3067\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAM\n 1 \N 189.186.20.144 8cab67a3-3d95-4244-b645-7a8ba0e97ee0 2020-12-03 22:44:52.250814 47433 4744 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 1086\n- 1209\n 2 movimiento de efectivo por venta con folio PV1-V-1467 189.186.20.144 8cab67a3-3d95-4244-b645-7a8ba0e97ee0 2020-12-03 22:44:52.278863 47434 4745 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1051\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 2888\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '11522'\n 1 \N 189.186.68.98 fe7f26ac-7653-4ffb-8104-450f5b5db9d3 2020-12-03 23:54:27.965784 47435 2906 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.68.98 fe7f26ac-7653-4ffb-8104-450f5b5db9d3 2020-12-03 23:54:27.9895 47436 2888 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.68.98 fe7f26ac-7653-4ffb-8104-450f5b5db9d3 2020-12-03 23:54:28.005963 47437 4745 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 1051\n- 1208\n 2 movimiento de efectivo por venta con folio PV3-V-592 189.186.68.98 fe7f26ac-7653-4ffb-8104-450f5b5db9d3 2020-12-03 23:54:28.020883 47438 3589 Sale \N \N 21 User \N create ---\ncustomer_id: 377\nuser_id: 21\nopen_cash_register_id: 1208\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-12-03\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-960\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.68.98 11ec2abb-5d29-48e2-ad29-b060c20e4f9a 2020-12-03 23:56:26.942698 47439 1151 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.68.98 11ec2abb-5d29-48e2-ad29-b060c20e4f9a 2020-12-03 23:56:26.980619 47440 3590 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1209\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-12-03\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1710\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 26e2c2b0-d39c-41bf-8c2e-ccd2e1abc70f 2020-12-04 00:29:19.457827 47441 872 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.20.144 26e2c2b0-d39c-41bf-8c2e-ccd2e1abc70f 2020-12-04 00:29:19.484854 47442 3590 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 467d7799-0ab1-4f2f-b1cd-0650d19888f5 2020-12-04 00:29:33.99347 47443 4746 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1209\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 3590\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1710\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1710 189.186.20.144 467d7799-0ab1-4f2f-b1cd-0650d19888f5 2020-12-04 00:29:34.017031 47444 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-03 03:06:06.683315000 Z\n- &1 2020-12-03 19:51:08.544133000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-04 00:47:37.259620034 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934014\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535184\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535184\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101026\n mask_addr: 4294967295\nsign_in_count:\n- 2112\n- 2113\n 4226 \N 189.186.68.98 383c7a8b-24d1-4873-a167-0a3c5d9e0c1c 2020-12-04 00:47:37.268982 47445 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yCeA4gn47aBPdzge6Xq-\n- shLDKxBr-HZSUvyqLjcZ\n 4227 \N 189.186.68.98 383c7a8b-24d1-4873-a167-0a3c5d9e0c1c 2020-12-04 00:47:37.288057 47471 2268 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.68.98 3c99f440-1c4c-4a5f-8c91-4936b10e3d70 2020-12-04 18:23:09.78267 47472 2268 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.68.98 465aeb9e-a690-4fb9-8773-ec897eb95b2c 2020-12-04 18:23:40.049749 47446 3591 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1209\namount: !ruby/object:BigDecimal 18:0.529E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.529E3\nstatus: 0\ndate_sale: 2020-12-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1711\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 69d6f9e9-4e52-4f05-a377-32a8bca34818 2020-12-04 00:48:02.943661 47447 2533 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.20.144 69d6f9e9-4e52-4f05-a377-32a8bca34818 2020-12-04 00:48:02.972683 47448 3591 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 8a596221-fe05-455d-a263-5a38435ff68f 2020-12-04 00:48:07.132854 47449 4747 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1209\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.529E3\nmove_type: '1'\nsale_id: 3591\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1711\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.529E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1711 189.186.20.144 8a596221-fe05-455d-a263-5a38435ff68f 2020-12-04 00:48:07.183533 47450 3592 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1209\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-12-03\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1712\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 03ab3ab5-830e-4c49-a0af-0e7ce01c741f 2020-12-04 01:49:12.219876 47451 2519 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 4 \N 189.186.20.144 03ab3ab5-830e-4c49-a0af-0e7ce01c741f 2020-12-04 01:49:12.250264 47452 3592 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 036b7d24-2487-4408-bcfc-19d9a5f70b07 2020-12-04 01:51:21.02999 47453 4748 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1209\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 3592\ncardnumber: 696\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1712\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1712 189.186.20.144 036b7d24-2487-4408-bcfc-19d9a5f70b07 2020-12-04 01:51:21.053414 47454 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-02 20:37:59.595368000 Z\n- &1 2020-12-03 01:49:12.234571000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-04 01:52:42.041891357 Z\nsign_in_count:\n- 380\n- 381\n 763 \N 189.186.68.98 3bc71949-e9c3-4fea-96c8-9418fdedd2e9 2020-12-04 01:52:42.048086 47455 18 User \N \N 18 User \N update ---\nunique_session_id:\n- hZE8g1ndRdXRHd_Jrxdy\n- 15zCgzeVsDDZG3DrUyup\n 764 \N 189.186.68.98 3bc71949-e9c3-4fea-96c8-9418fdedd2e9 2020-12-04 01:52:42.061869 47456 1233 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1208\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.78E3\nphysical_cash: !ruby/object:BigDecimal 18:0.128E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.68.98 d90e8244-6377-434e-9fb1-569f1caa643f 2020-12-04 02:02:48.867732 47457 1208 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.68.98 d90e8244-6377-434e-9fb1-569f1caa643f 2020-12-04 02:02:48.882804 47458 1234 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1209\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.7304E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.48E4\ncash_fund: !ruby/object:BigDecimal 18:0.1364E4\nphysical_cash: !ruby/object:BigDecimal 18:0.6164E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.144 1e71291a-102b-4758-9e8f-62b14ffdf3db 2020-12-04 02:11:00.041181 47459 1209 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.144 1e71291a-102b-4758-9e8f-62b14ffdf3db 2020-12-04 02:11:00.056993 47460 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-02 18:19:31.643436000 Z\n- &1 2020-12-03 19:33:07.826476000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-04 17:34:38.201564049 Z\nsign_in_count:\n- 719\n- 720\n 1443 \N 189.186.20.144 6768a121-e2c6-4327-8737-c2c281e7c8b2 2020-12-04 17:34:38.229285 47461 2 User \N \N 2 User \N update ---\nunique_session_id:\n- qYYZYLq5n5ytVzsgvxE1\n- wEn_kv26A7fN5YjpLERB\n 1444 \N 189.186.20.144 6768a121-e2c6-4327-8737-c2c281e7c8b2 2020-12-04 17:34:38.252737 47462 1210 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1364E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1364.0 189.186.20.144 cf34349c-ecf7-4abc-abb2-aed3a6b16bcc 2020-12-04 17:42:05.60307 47463 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-01 17:16:07.632139000 Z\n- &1 2020-12-03 17:47:29.008995000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-04 18:20:04.764688821 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183103142\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101026\n mask_addr: 4294967295\nsign_in_count:\n- 356\n- 357\n 715 \N 189.186.68.98 577ddaa9-cb27-4fe9-b6f3-0c0e108cd3a9 2020-12-04 18:20:04.771255 47464 21 User \N \N 21 User \N update ---\nunique_session_id:\n- maUSC6wy9qG27BbbB3jK\n- qrL9wPYHYhtvK4gTcZLC\n 716 \N 189.186.68.98 577ddaa9-cb27-4fe9-b6f3-0c0e108cd3a9 2020-12-04 18:20:04.786081 47465 744 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-04\n 2 Se dio entrada a traspaso de Almacen central a SUO 189.186.20.144 7cf6d0b3-7911-4cc8-8773-8f1bd925bad1 2020-12-04 18:20:21.458993 47466 1273 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.5E1\n 15 \N 189.186.20.144 7cf6d0b3-7911-4cc8-8773-8f1bd925bad1 2020-12-04 18:20:21.479136 47467 746 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-04\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.20.144 39b5262a-2d62-4220-9e0f-966b27257fb3 2020-12-04 18:21:32.953641 47468 2245 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.20.144 39b5262a-2d62-4220-9e0f-966b27257fb3 2020-12-04 18:21:32.977625 47469 1629 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.20.144 39b5262a-2d62-4220-9e0f-966b27257fb3 2020-12-04 18:21:32.998836 47470 1211 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.78E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 780.0 189.186.68.98 58043c9b-7d3e-4a36-af73-bbde5d4bfb17 2020-12-04 18:22:08.65225 47473 2268 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.68.98 4e7adf7a-9818-472c-9ede-c716197bf274 2020-12-04 18:23:46.233486 47474 2268 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.68.98 af8c17e7-5540-429b-9726-1ee316821e26 2020-12-04 18:23:49.590434 47475 747 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-12-04\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.68.98 dddfc52d-0fd2-4f2e-91b4-45230be74c4c 2020-12-04 18:23:53.242895 47476 747 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-04\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.20.144 d2809967-717a-4317-9b87-8c68df0a2005 2020-12-04 18:24:23.027809 47477 2240 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 189.186.20.144 d2809967-717a-4317-9b87-8c68df0a2005 2020-12-04 18:24:23.045286 47478 3593 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1210\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2020-12-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1713\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 db04ddc2-69d8-45f5-9a76-68bd161fba80 2020-12-04 18:25:06.018099 47479 2240 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 13 \N 189.186.20.144 db04ddc2-69d8-45f5-9a76-68bd161fba80 2020-12-04 18:25:06.047605 47480 3593 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 04311c5d-dc55-4cca-8944-9c199a4de094 2020-12-04 18:25:25.141073 47481 4749 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1210\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 3593\ncardnumber: 6476\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1713\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1713 189.186.20.144 04311c5d-dc55-4cca-8944-9c199a4de094 2020-12-04 18:25:25.16514 47482 3594 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1211\namount: !ruby/object:BigDecimal 18:0.119E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.119E3\nstatus: 0\ndate_sale: 2020-12-04\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-961\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.68.98 aef6124b-8dbb-4ce5-aa34-da7e7d144c58 2020-12-04 18:41:04.471802 47483 2402 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.68.98 aef6124b-8dbb-4ce5-aa34-da7e7d144c58 2020-12-04 18:41:04.497463 47484 3594 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.68.98 c6149e7c-6579-484a-bc2f-8c9bf73bc48c 2020-12-04 18:41:40.039156 47485 4750 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1211\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.119E3\nmove_type: '1'\nsale_id: 3594\ncardnumber: 5542\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-961\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-961 189.186.68.98 c6149e7c-6579-484a-bc2f-8c9bf73bc48c 2020-12-04 18:41:40.063085 47486 3595 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1210\namount: !ruby/object:BigDecimal 18:0.3087E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3087E4\nstatus: 0\ndate_sale: 2020-12-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1714\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 07508c82-9149-4628-976f-f1563edbe7ce 2020-12-04 19:28:49.452119 47487 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 29 \N 189.186.20.144 07508c82-9149-4628-976f-f1563edbe7ce 2020-12-04 19:28:49.498723 47488 2570 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.20.144 07508c82-9149-4628-976f-f1563edbe7ce 2020-12-04 19:28:49.530673 47489 1887 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.20.144 07508c82-9149-4628-976f-f1563edbe7ce 2020-12-04 19:28:49.55369 47490 3595 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 8d0e5e8d-6047-437a-8480-a613ef043abe 2020-12-04 19:29:20.926738 47491 4751 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1210\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.3087E4\nmove_type: '1'\nsale_id: 3595\ncardnumber: 3673\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1714\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1714 189.186.20.144 8d0e5e8d-6047-437a-8480-a613ef043abe 2020-12-04 19:29:20.949431 47492 461 Customer \N \N 2 User \N create ---\nnick_name: ANGELICA GOMEZ\nphone: "(667) 428-8366"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANGELICA GOMEZ fue registrado. 189.186.20.144 de03651e-9c95-45bb-8fab-08a45b4b60dc 2020-12-04 20:28:21.807693 47493 3596 Sale \N \N 2 User \N create ---\ncustomer_id: 461\nuser_id: 2\nopen_cash_register_id: 1210\namount: !ruby/object:BigDecimal 18:0.1249E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1249E4\nstatus: 0\ndate_sale: 2020-12-04\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1715\nexpiration_date: 2021-01-08\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 5c4affc4-5c04-4a39-aed8-8e3fda9dc021 2020-12-04 20:31:30.455964 47494 2545 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.20.144 5c4affc4-5c04-4a39-aed8-8e3fda9dc021 2020-12-04 20:31:30.48651 47495 4752 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1210\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 3596\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1715\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1715 189.186.20.144 2a475254-afae-42d9-8370-e914b899e9c2 2020-12-04 20:31:35.637359 47496 3596 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.20.144 3c168b19-5c84-4ece-91ef-7a0ab4cc75ce 2020-12-04 20:31:37.987806 47497 3597 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1211\namount: !ruby/object:BigDecimal 18:0.181917E4\ntax: !ruby/object:BigDecimal 18:0.6883E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1888E4\nstatus: 0\ndate_sale: 2020-12-04\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-962\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 d8ba0b6b-5b12-4a67-8233-d4d9f3a5a762 2020-12-04 20:32:10.717374 47498 2573 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.100.196 d8ba0b6b-5b12-4a67-8233-d4d9f3a5a762 2020-12-04 20:32:10.747568 47499 1917 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.100.196 d8ba0b6b-5b12-4a67-8233-d4d9f3a5a762 2020-12-04 20:32:10.771737 47500 3597 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.100.196 9b7eb155-b968-4fe4-bb3d-7452100bb824 2020-12-04 20:33:00.155342 47501 4753 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1211\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1888E4\nmove_type: '1'\nsale_id: 3597\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-962\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.112E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-962 189.186.100.196 9b7eb155-b968-4fe4-bb3d-7452100bb824 2020-12-04 20:33:00.176746 47502 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-03 19:51:08.544133000 Z\n- &1 2020-12-04 00:47:37.259620000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-04 20:38:36.512111840 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535184\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101026\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101026\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984536000\n mask_addr: 4294967295\nsign_in_count:\n- 2113\n- 2114\n 4228 \N 177.228.103.192 2e98c5c6-f9b2-4683-8e1b-e5c2dac361a8 2020-12-04 20:38:36.521907 47503 4 User \N \N 4 User \N update ---\nunique_session_id:\n- shLDKxBr-HZSUvyqLjcZ\n- sTU1vzPh4NqxNts1Cqk1\n 4229 \N 177.228.103.192 2e98c5c6-f9b2-4683-8e1b-e5c2dac361a8 2020-12-04 20:38:36.540882 47504 4754 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1210\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 3557\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1695 189.186.20.144 c9a5b39e-679f-40e0-9dee-3cdea6399ff6 2020-12-04 20:59:53.730152 47505 3557 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 b6f59300-d3dd-4b81-8da1-6346c03ce4e8 2020-12-04 20:59:55.628246 47506 3598 Sale \N \N 2 User \N create ---\ncustomer_id: 456\nuser_id: 2\nopen_cash_register_id: 1210\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2020-12-04\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1716\nexpiration_date: 2021-01-08\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 cddf9cfd-1974-49d6-98ef-063ab29dda0a 2020-12-04 21:03:50.252582 47507 2298 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 189.186.20.144 cddf9cfd-1974-49d6-98ef-063ab29dda0a 2020-12-04 21:03:50.296254 47508 4755 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1210\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 3598\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1716\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1716 189.186.20.144 eec96872-d6a3-4cb5-8197-86119a2e6e0b 2020-12-04 21:03:56.097749 47509 3598 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.20.144 2d1ffcb2-61ce-470a-afc8-99cd8a5a5a8a 2020-12-04 21:03:56.97403 47510 3599 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1210\namount: !ruby/object:BigDecimal 18:0.1598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1598E4\nstatus: 0\ndate_sale: 2020-12-04\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1717\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 b9457900-1e63-4e37-a867-7946d10e1f6f 2020-12-04 21:10:23.590432 47511 2612 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.20.144 b9457900-1e63-4e37-a867-7946d10e1f6f 2020-12-04 21:10:23.616613 47512 2535 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.20.144 b9457900-1e63-4e37-a867-7946d10e1f6f 2020-12-04 21:10:23.63918 47513 3599 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 881889cb-fd00-4c0c-83f9-bd7bd104ebef 2020-12-04 21:10:32.465304 47514 4756 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1210\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1598E4\nmove_type: '1'\nsale_id: 3599\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1717\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1598E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1717 189.186.20.144 881889cb-fd00-4c0c-83f9-bd7bd104ebef 2020-12-04 21:10:32.495743 47515 3600 Sale \N \N 2 User \N create ---\ncustomer_id: 456\nuser_id: 2\nopen_cash_register_id: 1210\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2020-12-04\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1718\nexpiration_date: 2021-01-08\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 d3c4f8a1-2656-497f-bd66-3e0a57bc7f66 2020-12-04 21:14:32.641059 47516 1166 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 10 \N 189.186.20.144 d3c4f8a1-2656-497f-bd66-3e0a57bc7f66 2020-12-04 21:14:32.672465 47517 4757 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1210\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 3600\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1718\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1718 189.186.20.144 2bbb3765-c5c6-49e6-aa45-e6fdc2da1401 2020-12-04 21:14:38.554828 47519 462 Customer \N \N 2 User \N create ---\nnick_name: GERARDO INSTAGRAM\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente GERARDO INSTAGRAM fue registrado. 189.186.20.144 c0668be6-791f-4f8e-985a-c3eb999df4ff 2020-12-04 21:40:59.941868 47520 3601 Sale \N \N 2 User \N create ---\ncustomer_id: 462\nuser_id: 2\nopen_cash_register_id: 1210\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-04\nsaletype: 2\nseller_id: 25\nsale_code: PV1-V-1719\nexpiration_date: 2021-01-08\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 cdb083a8-fa8c-4ea4-a99f-c37c87b012f6 2020-12-04 21:52:58.670776 47521 2369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 24 \N 189.186.20.144 cdb083a8-fa8c-4ea4-a99f-c37c87b012f6 2020-12-04 21:52:58.698388 47522 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-03 01:52:01.551318000 Z\n- &1 2020-12-03 03:19:20.107554000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-04 22:14:05.961644073 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934044\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934044\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 416\n- 417\n 834 \N 189.186.20.144 9761f746-ecaf-4f73-a8d8-f8b7acefa34f 2020-12-04 22:14:05.970413 47523 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 5iAstomh48s5fyrc-ZjB\n- MVsPf9s__H1kk_iHaodW\n 835 \N 189.186.20.144 9761f746-ecaf-4f73-a8d8-f8b7acefa34f 2020-12-04 22:14:05.987596 47524 4758 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1210\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 3601\ncardnumber: 0\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1719\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1719 189.186.20.144 66835c8e-e97a-47e3-953a-9431bfaad860 2020-12-04 22:28:13.551825 47525 3601 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.20.144 6cc0e34f-17cd-40f8-836c-f81c3d9b501b 2020-12-04 22:28:17.524696 47526 3602 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1210\namount: !ruby/object:BigDecimal 18:0.589E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2020-12-04\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1720\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 66ce85eb-c9dd-4ed3-8f48-8f5ab05fcd97 2020-12-04 23:07:16.831657 47527 2538 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.20.144 66ce85eb-c9dd-4ed3-8f48-8f5ab05fcd97 2020-12-04 23:07:16.862184 47528 3602 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 d4488ab2-4c30-42c0-aed2-cff69a60de65 2020-12-04 23:07:22.927731 47529 4759 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1210\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.589E3\nmove_type: '1'\nsale_id: 3602\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1720\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.589E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1720 189.186.20.144 d4488ab2-4c30-42c0-aed2-cff69a60de65 2020-12-04 23:07:22.959512 47530 4760 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1211\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 3584\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-959 189.186.100.196 1cb53751-0722-4aa1-ab4a-c92d4b129105 2020-12-04 23:09:14.766381 47531 3584 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.100.196 eddee662-19c2-4bb5-9d69-2e1149e801ca 2020-12-04 23:09:17.216472 47532 3603 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1211\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-12-04\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-963\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 bacf8bcf-a8bc-44f4-8abf-8ff7f48f2995 2020-12-04 23:18:47.781364 47533 2562 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.100.196 bacf8bcf-a8bc-44f4-8abf-8ff7f48f2995 2020-12-04 23:18:47.811654 47534 3603 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.100.196 ed71d3da-1889-4721-84df-b4b55e968618 2020-12-04 23:18:59.742439 47535 4761 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1211\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 3603\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-963\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-963 189.186.100.196 ed71d3da-1889-4721-84df-b4b55e968618 2020-12-04 23:18:59.766788 47536 3604 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1211\namount: !ruby/object:BigDecimal 18:0.529E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.529E3\nstatus: 0\ndate_sale: 2020-12-04\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-964\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 31da5f20-3fde-449f-99fb-3d6c22541e6f 2020-12-04 23:37:40.154323 47537 2587 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.100.196 31da5f20-3fde-449f-99fb-3d6c22541e6f 2020-12-04 23:37:40.188629 47538 3604 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.100.196 ab021b7a-1ea4-4ed9-9709-b4d656e1017b 2020-12-04 23:41:26.577741 47539 4762 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1211\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 3604\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-964\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-964 189.186.100.196 ab021b7a-1ea4-4ed9-9709-b4d656e1017b 2020-12-04 23:41:26.608874 47540 4762 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1211\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3604\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-964\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.100.196 651a2587-8b18-4aa0-8cc5-c893d030ee09 2020-12-04 23:41:36.199203 47541 4763 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1211\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 3604\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-964\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-964 189.186.100.196 d6be957d-f6b0-45d7-ae05-c3b9f78cc69e 2020-12-04 23:42:10.920657 47542 4763 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1211\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3604\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-964\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.100.196 d3185f15-b34d-4f40-a5a3-6a9addd5d8c4 2020-12-04 23:42:14.380156 47543 4764 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1211\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.529E3\nmove_type: '1'\nsale_id: 3604\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-964\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.529E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-964 189.186.100.196 b1fe040f-3960-4166-a9f8-6bb0b287f14d 2020-12-04 23:42:25.623021 47544 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-04 00:47:37.259620000 Z\n- &1 2020-12-04 20:38:36.512111000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-05 00:27:18.069977920 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101026\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984536000\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984536000\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\nsign_in_count:\n- 2114\n- 2115\n 4230 \N 189.186.100.196 4402cd7e-0232-46cd-a724-fff36bb03fc2 2020-12-05 00:27:18.07857 47545 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sTU1vzPh4NqxNts1Cqk1\n- hzJTDpxoyzo2FescdFq6\n 4231 \N 189.186.100.196 4402cd7e-0232-46cd-a724-fff36bb03fc2 2020-12-05 00:27:18.098463 47546 2560 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.100.196 78fc7909-93bd-4f34-9547-c4f0c1b67917 2020-12-05 00:36:46.587302 47547 2560 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.100.196 3e7283d2-1088-4ab5-89e0-2d017e43833d 2020-12-05 00:36:51.257089 47548 1137 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.100.196 6a321195-e5a2-40bb-8777-789a8e2c24d0 2020-12-05 00:37:23.358852 47549 1137 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.100.196 57cff76f-affc-4dd9-9a35-e11339b3a71c 2020-12-05 00:37:28.455074 47550 2569 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.100.196 e8abfbd2-07bf-44a3-8939-aaaa153c5d5a 2020-12-05 00:37:33.250102 47551 1134 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 189.186.100.196 5845c742-d3a3-43bb-81b8-ae67ee775677 2020-12-05 00:42:01.816102 47552 1134 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 189.186.100.196 4b6cf39f-5cd9-41e5-9f13-1cd3e57d6361 2020-12-05 00:42:16.982999 47553 1134 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 13 \N 189.186.100.196 51c86649-fed5-41c5-a3cd-866050561622 2020-12-05 00:42:31.081241 47554 1128 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 189.186.100.196 64eb14e0-2c17-473c-b0a5-f303017a95a1 2020-12-05 00:43:29.3234 47555 1128 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 189.186.100.196 011077b0-b996-44c2-9d61-078091019883 2020-12-05 00:43:57.900918 47556 1128 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 11 \N 189.186.100.196 a7f48701-661c-4da6-9427-dc9bfe5d1935 2020-12-05 00:44:04.198538 47557 1128 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 189.186.100.196 05ca94fd-3df2-49ff-be9f-f23a5db2114d 2020-12-05 00:44:40.280941 47558 1134 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 14 \N 189.186.100.196 0fa135fb-72dc-42a0-a43c-2d26b3ec09fc 2020-12-05 00:44:46.295322 47559 2569 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.100.196 da284ef4-74ca-4e02-84da-7df6ecfa6e39 2020-12-05 00:44:47.79186 47560 1236 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.100.196 6b4b874e-3e68-4fcb-850b-ad7a9958f292 2020-12-05 00:45:06.713521 47561 1236 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.100.196 84a35934-8b1c-41bd-86ab-493fed289026 2020-12-05 00:45:09.559996 47562 748 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-12-04\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.100.196 3e7e1972-e28b-4afc-a49e-0d6ac373f10e 2020-12-05 00:45:35.898086 47563 749 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-12-04\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.100.196 bbe953f6-d6ac-4f94-b019-6937169c292a 2020-12-05 00:46:06.95058 47718 1 User \N \N 1 User \N update ---\nunique_session_id:\n- WzrgmtL9iXFkgyiCN_i5\n- voZ72WBKx6zeWcfrzdNC\n 843 \N 189.186.20.144 8926dc26-4d8d-4a43-b350-7a34c7f14c3c 2020-12-07 22:47:36.311307 47790 2605 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.20.144 a1d7f076-30af-4db5-a8c4-c2915fb24eac 2020-12-08 23:42:08.167082 47564 3605 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1210\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-12-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1721\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 14ddb5d1-5edb-4da7-913e-253e074ce4b0 2020-12-05 01:41:06.878425 47565 2226 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 37 \N 189.186.20.144 14ddb5d1-5edb-4da7-913e-253e074ce4b0 2020-12-05 01:41:06.91018 47566 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-03 01:49:12.234571000 Z\n- &1 2020-12-04 01:52:42.041891000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-05 01:41:28.984938428 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101026\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\nsign_in_count:\n- 381\n- 382\n 765 \N 189.186.100.196 f45ff4aa-0b30-4d63-a90b-d52c2ab113fc 2020-12-05 01:41:28.992475 47567 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 15zCgzeVsDDZG3DrUyup\n- 4PkawLLr8Xcx9GpYNhu1\n 766 \N 189.186.100.196 f45ff4aa-0b30-4d63-a90b-d52c2ab113fc 2020-12-05 01:41:29.010181 47568 3605 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 ef1142e0-99b1-4b9e-b1ae-42c3c355bf16 2020-12-05 01:42:05.192509 47569 4765 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1210\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3605\ncardnumber: 9176\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1721\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1721 189.186.20.144 ef1142e0-99b1-4b9e-b1ae-42c3c355bf16 2020-12-05 01:42:05.213486 47570 4766 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1115\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.6181E4\nmove_type: '1'\nsale_id: 3179\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '22552'\n 1 \N 189.186.100.196 864ce7c1-1834-4311-98dc-faf5ddfea296 2020-12-05 01:44:17.617657 47571 3179 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.100.196 864ce7c1-1834-4311-98dc-faf5ddfea296 2020-12-05 01:44:17.648093 47572 4766 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 1115\n- 1211\n 2 movimiento de efectivo por venta con folio PV3-V-737 189.186.100.196 864ce7c1-1834-4311-98dc-faf5ddfea296 2020-12-05 01:44:17.665911 47573 1235 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1210\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.8822E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.38E4\ncash_fund: !ruby/object:BigDecimal 18:0.1251E4\nphysical_cash: !ruby/object:BigDecimal 18:0.5051E4\nobservations: "$400 DE APARTADO DE GERARDO FUE TRANSFERENCIA A SAMANTHA (PUSE TARJETA\n DEBITO)"\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.144 19435a81-1c03-4862-a8a3-ac18c74cfc85 2020-12-05 01:52:47.666077 47574 1210 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.144 19435a81-1c03-4862-a8a3-ac18c74cfc85 2020-12-05 01:52:47.682637 47575 1236 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1211\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.10815E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.414E4\ncash_fund: !ruby/object:BigDecimal 18:0.1155E4\nphysical_cash: !ruby/object:BigDecimal 18:0.5295E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.100.196 7b415976-3727-41a1-ad4b-b5cf86347a78 2020-12-05 02:03:35.505776 47576 1211 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.100.196 7b415976-3727-41a1-ad4b-b5cf86347a78 2020-12-05 02:03:35.519984 47577 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-04 20:38:36.512111000 Z\n- &1 2020-12-05 00:27:18.069977000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-05 02:04:13.988335482 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984536000\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\nsign_in_count:\n- 2115\n- 2116\n 4232 \N 189.186.100.196 bc6d7645-428c-4f27-a1ff-0731ca7603a6 2020-12-05 02:04:13.995421 47578 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hzJTDpxoyzo2FescdFq6\n- 8RqywaM21aPcsj_wWguu\n 4233 \N 189.186.100.196 bc6d7645-428c-4f27-a1ff-0731ca7603a6 2020-12-05 02:04:14.012797 47579 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-03 19:33:07.826476000 Z\n- &1 2020-12-04 17:34:38.201564000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-05 18:39:00.287912314 Z\nsign_in_count:\n- 720\n- 721\n 1445 \N 189.186.20.144 5a3c4d7c-2e67-4a03-953d-afb1d9f2f827 2020-12-05 18:39:00.318146 47580 2 User \N \N 2 User \N update ---\nunique_session_id:\n- wEn_kv26A7fN5YjpLERB\n- knfZD8-P3tMjSowBzyhc\n 1446 \N 189.186.20.144 5a3c4d7c-2e67-4a03-953d-afb1d9f2f827 2020-12-05 18:39:00.342146 47581 1212 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1251E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1251.0 189.186.20.144 310b536a-6870-4b12-90c3-93c930cd8d98 2020-12-05 19:04:20.200061 47582 3606 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1212\namount: !ruby/object:BigDecimal 18:0.879E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.879E3\nstatus: 0\ndate_sale: 2020-12-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1722\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 cd18f4e7-6ccf-49e0-ba7e-fabf3a4bd886 2020-12-05 19:23:36.62212 47583 2507 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.20.144 cd18f4e7-6ccf-49e0-ba7e-fabf3a4bd886 2020-12-05 19:23:36.657004 47584 3606 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 62a16f2d-3439-4c24-93f4-264a87398869 2020-12-05 19:23:45.085874 47585 4767 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1212\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.879E3\nmove_type: '1'\nsale_id: 3606\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1722\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.879E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1722 189.186.20.144 62a16f2d-3439-4c24-93f4-264a87398869 2020-12-05 19:23:45.109707 47765 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 3Eqx9SfwVEtvENzo8CaW\n- jWXTTgdYjPtU99sHTRiR\n 722 \N 189.186.100.196 8f127bf1-0fce-4a96-b376-d5023dbb8f4e 2020-12-08 17:50:17.918174 47791 2245 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.20.144 a1d7f076-30af-4db5-a8c4-c2915fb24eac 2020-12-08 23:42:08.195568 47586 3607 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1212\namount: !ruby/object:BigDecimal 18:0.698E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.598E3\nstatus: 0\ndate_sale: 2020-12-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1723\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 fbf7fee1-6318-448b-a410-26a5084ffa2a 2020-12-05 19:33:01.702362 47587 2556 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.20.144 fbf7fee1-6318-448b-a410-26a5084ffa2a 2020-12-05 19:33:01.750033 47588 3607 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 cb11e581-82d3-4055-96fd-b8b24e94c290 2020-12-05 19:33:06.44405 47589 4768 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1212\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.598E3\nmove_type: '1'\nsale_id: 3607\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1723\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.598E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1723 189.186.20.144 cb11e581-82d3-4055-96fd-b8b24e94c290 2020-12-05 19:33:06.467561 47590 3608 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1212\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1724\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 a88ad93f-8966-4346-8733-982d186989ee 2020-12-05 20:03:02.509832 47591 1937 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 39 \N 189.186.20.144 a88ad93f-8966-4346-8733-982d186989ee 2020-12-05 20:03:02.559628 47592 3608 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 326c8ae1-ca5d-40a9-8250-e5d23dcdb420 2020-12-05 20:03:17.823517 47593 4769 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1212\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3608\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1724\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1724 189.186.20.144 326c8ae1-ca5d-40a9-8250-e5d23dcdb420 2020-12-05 20:03:17.846816 47594 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-03 17:47:29.008995000 Z\n- &1 2020-12-04 18:20:04.764688000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-05 20:08:21.543062010 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101026\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\nsign_in_count:\n- 357\n- 358\n 717 \N 189.186.100.196 d2727353-3577-406c-af4c-45f8304e0e26 2020-12-05 20:08:21.552333 47595 21 User \N \N 21 User \N update ---\nunique_session_id:\n- qrL9wPYHYhtvK4gTcZLC\n- 2HgPWL9BKyJMqzWFo2ys\n 718 \N 189.186.100.196 d2727353-3577-406c-af4c-45f8304e0e26 2020-12-05 20:08:21.56851 47596 1213 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1155E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1155.0 189.186.100.196 ee207b6c-061b-4890-aac3-11c50ee46b9e 2020-12-05 20:08:58.981677 47597 4770 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1212\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 3447\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1644 189.186.20.144 4f678c5a-4793-478c-8723-b1d6a142beed 2020-12-05 20:19:12.595177 47598 3609 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1213\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-12-05\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-965\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 8ba5dd5d-1edc-4fab-8dbb-6228d10c7ce5 2020-12-05 20:21:54.427682 47599 2582 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 2 \N 189.186.100.196 8ba5dd5d-1edc-4fab-8dbb-6228d10c7ce5 2020-12-05 20:21:54.457011 47600 3609 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.100.196 83febbff-9f3a-44f8-b84f-53751414daf9 2020-12-05 20:22:52.562977 47601 4771 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1213\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 3609\ncardnumber: 5522\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-965\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-965 189.186.100.196 83febbff-9f3a-44f8-b84f-53751414daf9 2020-12-05 20:22:52.586934 47602 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-05 00:27:18.069977000 Z\n- &1 2020-12-05 02:04:13.988335000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-05 20:27:52.864077964 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535976\n mask_addr: 4294967295\nsign_in_count:\n- 2116\n- 2117\n 4234 \N 177.228.103.168 2abbe1b7-4f48-4f53-9ce8-2d7726b8d6cc 2020-12-05 20:27:52.871975 47603 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8RqywaM21aPcsj_wWguu\n- rK_LueUfPgsobYGTseoy\n 4235 \N 177.228.103.168 2abbe1b7-4f48-4f53-9ce8-2d7726b8d6cc 2020-12-05 20:27:52.890572 47604 3610 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1212\namount: !ruby/object:BigDecimal 18:0.3598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3598E4\nstatus: 0\ndate_sale: 2020-12-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1725\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 33334c89-1e16-4280-81af-dd7fd06a0249 2020-12-05 20:28:18.015078 47605 1032 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.20.144 33334c89-1e16-4280-81af-dd7fd06a0249 2020-12-05 20:28:18.041737 47606 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 30 \N 189.186.20.144 33334c89-1e16-4280-81af-dd7fd06a0249 2020-12-05 20:28:18.064817 47607 3610 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 d1796532-8076-4d32-9297-826cffebf4f9 2020-12-05 20:28:36.113448 47608 4772 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1212\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3598E4\nmove_type: '1'\nsale_id: 3610\ncardnumber: 1874\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1725\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1725 189.186.20.144 d1796532-8076-4d32-9297-826cffebf4f9 2020-12-05 20:28:36.137663 47609 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-03 03:19:20.107554000 Z\n- &1 2020-12-04 22:14:05.961644000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-05 20:32:11.927417753 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934044\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 417\n- 418\n 836 \N 189.186.20.144 3e38b3d9-abae-4fe6-b445-1f437b955399 2020-12-05 20:32:11.93452 47610 1 User \N \N 1 User \N update ---\nunique_session_id:\n- MVsPf9s__H1kk_iHaodW\n- "-BxELekuTToreBnBB5wy"\n 837 \N 189.186.20.144 3e38b3d9-abae-4fe6-b445-1f437b955399 2020-12-05 20:32:11.950204 47611 463 Customer \N \N 21 User \N create ---\nnick_name: MARIBEL TAPIA\nphone: "(667) 786-5799"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIBEL TAPIA fue registrado. 189.186.100.196 2f5060c7-b285-42a3-bb1a-de210c5eb8ab 2020-12-05 20:34:07.736702 47612 3611 Sale \N \N 21 User \N create ---\ncustomer_id: 463\nuser_id: 21\nopen_cash_register_id: 1213\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-05\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-966\nexpiration_date: 2021-01-09\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 cf6cd7a1-5650-4229-8023-564d8ef99a4e 2020-12-05 20:34:31.763687 47613 2341 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 15 \N 189.186.100.196 cf6cd7a1-5650-4229-8023-564d8ef99a4e 2020-12-05 20:34:32.150344 47614 3611 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-966 cancelada. 189.186.100.196 370cac3a-ba42-43e9-9bf7-9ba6b959e0f3 2020-12-05 20:35:44.392618 47615 2341 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 16 \N 189.186.100.196 370cac3a-ba42-43e9-9bf7-9ba6b959e0f3 2020-12-05 20:35:45.088149 47616 3612 Sale \N \N 21 User \N create ---\ncustomer_id: 463\nuser_id: 21\nopen_cash_register_id: 1213\namount: !ruby/object:BigDecimal 18:0.2798E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2798E4\nstatus: 0\ndate_sale: 2020-12-05\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-967\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 63352e04-9daf-46fc-9fcd-791ed789e639 2020-12-05 20:36:36.428588 47617 2341 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 17 \N 189.186.100.196 63352e04-9daf-46fc-9fcd-791ed789e639 2020-12-05 20:36:36.454485 47618 2375 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 32 \N 189.186.100.196 63352e04-9daf-46fc-9fcd-791ed789e639 2020-12-05 20:36:36.82625 47619 3612 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-967 cancelada. 189.186.100.196 dc41bc1d-b733-4ea0-a117-f23233ff7839 2020-12-05 20:37:45.257158 47620 2375 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.11E2\n 33 \N 189.186.100.196 dc41bc1d-b733-4ea0-a117-f23233ff7839 2020-12-05 20:37:45.59057 47621 2341 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 18 \N 189.186.100.196 dc41bc1d-b733-4ea0-a117-f23233ff7839 2020-12-05 20:37:45.838377 47622 3613 Sale \N \N 21 User \N create ---\ncustomer_id: 463\nuser_id: 21\nopen_cash_register_id: 1213\namount: !ruby/object:BigDecimal 18:0.2798E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2798E4\nstatus: 0\ndate_sale: 2020-12-05\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-968\nexpiration_date: 2021-01-09\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 0d93b566-991c-42c2-bb97-9f7c9aa68945 2020-12-05 20:50:04.524777 47623 2341 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 19 \N 189.186.100.196 0d93b566-991c-42c2-bb97-9f7c9aa68945 2020-12-05 20:50:04.555254 47624 2375 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 34 \N 189.186.100.196 0d93b566-991c-42c2-bb97-9f7c9aa68945 2020-12-05 20:50:04.580069 47625 4773 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1213\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 3613\ncardnumber: 5014\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-968\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-968 189.186.100.196 812ce2bf-2a92-4f19-921c-266e2792423f 2020-12-05 20:51:08.3719 47626 3613 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.100.196 f05dc9bc-a3c0-4921-bee1-a44b81b3e50a 2020-12-05 20:51:15.69212 47627 3614 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1212\namount: !ruby/object:BigDecimal 18:0.689E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.689E3\nstatus: 0\ndate_sale: 2020-12-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1726\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 9b142bc3-5980-4902-917a-307c6f3f725d 2020-12-05 20:52:46.631795 47628 2528 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.20.144 9b142bc3-5980-4902-917a-307c6f3f725d 2020-12-05 20:52:46.659616 47629 464 Customer \N \N 21 User \N create ---\nnick_name: MARIA TAPIA\nphone: "(667) 320-0971"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIA TAPIA fue registrado. 189.186.100.196 57dd9e30-0801-424d-b45f-37c0a64ff9c7 2020-12-05 20:53:08.133286 47630 3614 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 7159d160-ba50-4fc8-af56-00721d64498c 2020-12-05 20:53:23.224322 47631 4774 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1212\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.689E3\nmove_type: '1'\nsale_id: 3614\ncardnumber: 6193\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1726\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1726 189.186.20.144 7159d160-ba50-4fc8-af56-00721d64498c 2020-12-05 20:53:23.245899 47632 3615 Sale \N \N 21 User \N create ---\ncustomer_id: 464\nuser_id: 21\nopen_cash_register_id: 1213\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-12-05\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-966\nexpiration_date: 2021-01-09\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 ed32ad54-30b3-4314-b8a2-d53232157205 2020-12-05 20:53:28.733148 47633 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 55 \N 189.186.100.196 ed32ad54-30b3-4314-b8a2-d53232157205 2020-12-05 20:53:28.788123 47634 4775 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1213\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3615\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-966\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-966 189.186.100.196 c72c3ea0-ea57-47ea-bdc5-5e69563a204f 2020-12-05 20:53:55.004012 47635 3615 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.100.196 8d0a46af-bd23-4976-b455-ba040fe22d32 2020-12-05 20:54:14.851769 47636 4776 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1212\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.99E2\nmove_type: '1'\nsale_id: 3447\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.99E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1644 189.186.20.144 713bdf48-7045-4996-8a2b-5cae6d621e35 2020-12-05 21:36:53.977722 47637 3447 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 a46e6996-366c-4a35-9500-023657760d3e 2020-12-05 21:37:28.658191 47638 4777 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1213\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.11E4\nmove_type: '1'\nsale_id: 3537\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-930 189.186.100.196 337a1538-7e11-4778-88c3-a2f893157756 2020-12-05 23:28:38.381912 47639 3537 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.100.196 29b46870-4bd1-4cbc-9b8a-7549b1b59c70 2020-12-05 23:28:43.133927 47640 4778 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1212\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 3502\ncardnumber: 5429\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1671 189.186.20.144 01ce1ccf-0673-4c1c-b457-a314609df7e6 2020-12-06 00:07:58.2039 47641 3502 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 fbd9fe4d-2a62-461f-8178-a94f548cec3c 2020-12-06 00:08:00.17882 47642 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-04 17:34:38.201564000 Z\n- &1 2020-12-05 18:39:00.287912000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-06 00:28:35.074230443 Z\nsign_in_count:\n- 721\n- 722\n 1447 \N 189.186.20.144 e8e2f4b2-919a-4734-9ffa-600295fea89a 2020-12-06 00:28:35.080669 47643 2 User \N \N 2 User \N update ---\nunique_session_id:\n- knfZD8-P3tMjSowBzyhc\n- 5dAr9wsiV2y__P12wG8Q\n 1448 \N 189.186.20.144 e8e2f4b2-919a-4734-9ffa-600295fea89a 2020-12-06 00:28:35.099619 47644 4779 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1212\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 3483\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1663 189.186.20.144 d8f158a8-3843-42b0-8c0e-3647e93b9a28 2020-12-06 00:28:59.537778 47645 3483 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 def7d75f-2689-4b06-a740-ced7f032fb6e 2020-12-06 00:29:01.352577 47646 4780 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1212\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.951E3\nmove_type: '1'\nsale_id: 3581\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.951E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1705 189.186.20.144 a329cc47-6c4f-486f-90c8-49811c64ace5 2020-12-06 00:29:20.064878 47647 3581 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 0a9c78c1-0e96-4308-bf2b-aae94ba7db80 2020-12-06 00:29:25.511021 47648 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-04 22:14:05.961644000 Z\n- &1 2020-12-05 20:32:11.927417000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-06 00:30:06.202928078 Z\nsign_in_count:\n- 418\n- 419\n 838 \N 189.186.20.144 4d5d78aa-7cb7-41a7-a3cd-8a34aacb0da4 2020-12-06 00:30:06.211873 47649 1 User \N \N 1 User \N update ---\nunique_session_id:\n- "-BxELekuTToreBnBB5wy"\n- qKNVXbwKQ6sLHniyQukC\n 839 \N 189.186.20.144 4d5d78aa-7cb7-41a7-a3cd-8a34aacb0da4 2020-12-06 00:30:06.230447 47650 3616 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1212\namount: !ruby/object:BigDecimal 18:0.1568E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1568E4\nstatus: 0\ndate_sale: 2020-12-05\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1727\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 a78a0257-3038-41ec-84dd-dd79c49e8e8e 2020-12-06 01:09:21.639486 47651 1166 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 11 \N 189.186.20.144 a78a0257-3038-41ec-84dd-dd79c49e8e8e 2020-12-06 01:09:21.670441 47652 2532 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.20.144 a78a0257-3038-41ec-84dd-dd79c49e8e8e 2020-12-06 01:09:21.694043 47653 3616 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 ba2c9ab5-db95-4c8d-9468-faf85cffd050 2020-12-06 01:09:44.796895 47654 4781 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1212\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.27E3\nmove_type: '1'\nsale_id: 3616\ncardnumber: 6930\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1727\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1727 189.186.20.144 ba2c9ab5-db95-4c8d-9468-faf85cffd050 2020-12-06 01:09:44.818963 47655 4782 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1212\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1298E4\nmove_type: '1'\nsale_id: 3616\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1727\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1298E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1727 189.186.20.144 e7767748-8207-4f94-ab57-b2841ab16d44 2020-12-06 01:09:55.458468 47656 3617 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1212\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-12-05\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1728\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 50839e22-3d93-448e-831b-e526b640dac0 2020-12-06 01:53:42.602977 47657 2550 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.20.144 50839e22-3d93-448e-831b-e526b640dac0 2020-12-06 01:53:42.637991 47658 3617 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 a28f531d-68b3-4045-9706-b0e5ae53a267 2020-12-06 01:54:17.645633 47659 4783 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1212\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3617\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1728\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1728 189.186.20.144 a28f531d-68b3-4045-9706-b0e5ae53a267 2020-12-06 01:54:17.668102 47660 361 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1213\nquantity: !ruby/object:BigDecimal 18:0.1E4\nstatus: 1\nobservations: PAGO NAYELI\nexpense_date: 2020-12-05\nexpense_code: PV3-E-48\n 1 Egreso por 1000.0 registrado 189.186.100.196 6a4bc7e9-03ae-4939-961a-ebd3c397031e 2020-12-06 02:11:20.382305 47661 4784 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1213\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 361\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.100.196 6a4bc7e9-03ae-4939-961a-ebd3c397031e 2020-12-06 02:11:20.403518 47662 362 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1213\nquantity: !ruby/object:BigDecimal 18:0.5E3\nstatus: 1\nobservations: PAGO LUCES\nexpense_date: 2020-12-05\nexpense_code: PV3-E-49\n 1 Egreso por 500.0 registrado 189.186.100.196 16d36f75-32ef-4622-ab29-998feb4efb95 2020-12-06 02:12:13.543724 47663 4785 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1213\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 362\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.100.196 16d36f75-32ef-4622-ab29-998feb4efb95 2020-12-06 02:12:13.564877 47664 1237 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1213\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.3499E4\namount_out: !ruby/object:BigDecimal 18:0.15E4\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1255E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1255E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.100.196 d2b2c52f-bbaf-44ad-b57e-9a1c0adab438 2020-12-06 02:16:23.625304 47665 1213 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.100.196 d2b2c52f-bbaf-44ad-b57e-9a1c0adab438 2020-12-06 02:16:23.639152 47666 363 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1212\nquantity: !ruby/object:BigDecimal 18:0.12E4\nstatus: 1\nobservations: "sueldo Montse y 10 horas extras rocio\\r\\n"\nexpense_date: 2020-12-05\nexpense_code: PV1-E-252\n 1 Egreso por 1200.0 registrado 189.186.20.144 4e63964f-3190-4244-bebf-00a707bdf817 2020-12-06 02:28:16.540469 47667 4786 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1212\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 363\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.20.144 4e63964f-3190-4244-bebf-00a707bdf817 2020-12-06 02:28:16.563597 47668 1238 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1212\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.13178E5\namount_out: !ruby/object:BigDecimal 18:0.12E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.6E4\ncash_fund: !ruby/object:BigDecimal 18:0.1373E4\nphysical_cash: !ruby/object:BigDecimal 18:0.7373E4\nobservations: entregue a Samantha corte como excedente\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.144 ef2e4a96-865f-4903-a849-c9b826b90041 2020-12-06 02:33:55.857313 47669 1212 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.144 ef2e4a96-865f-4903-a849-c9b826b90041 2020-12-06 02:33:55.86923 47670 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-05 20:32:11.927417000 Z\n- &1 2020-12-06 00:30:06.202928000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-06 03:54:41.841966362 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535860\n mask_addr: 4294967295\nsign_in_count:\n- 419\n- 420\n 840 \N 177.228.103.52 91b034f5-81cf-4116-95b3-84e87dd43a38 2020-12-06 03:54:41.850767 47671 1 User \N \N 1 User \N update ---\nunique_session_id:\n- qKNVXbwKQ6sLHniyQukC\n- WzrgmtL9iXFkgyiCN_i5\n 841 \N 177.228.103.52 91b034f5-81cf-4116-95b3-84e87dd43a38 2020-12-06 03:54:41.867453 47672 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-05 18:39:00.287912000 Z\n- &1 2020-12-06 00:28:35.074230000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-06 17:16:08.139182668 Z\nsign_in_count:\n- 722\n- 723\n 1449 \N 189.186.20.144 ac0e223e-ce15-4bec-9986-af967867c989 2020-12-06 17:16:08.166736 47673 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 5dAr9wsiV2y__P12wG8Q\n- GiLPUTh2T3xqPABhzccZ\n 1450 \N 189.186.20.144 ac0e223e-ce15-4bec-9986-af967867c989 2020-12-06 17:16:08.188278 47674 1214 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1255E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1255.0 189.186.100.196 1629ba3f-ce75-498d-8468-4154866add0c 2020-12-06 19:05:13.438373 47766 1217 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1251E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1251.0 189.186.100.196 28c80d4f-2541-4226-b21f-17a371779029 2020-12-08 18:55:19.934161 47675 3618 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1214\namount: !ruby/object:BigDecimal 18:0.1198E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1198E4\nstatus: 0\ndate_sale: 2020-12-06\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-970\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 6b3916e8-86f5-41c1-863f-5f02b2a6e6c3 2020-12-06 19:08:10.519273 47676 1363 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.7E1\n 5 \N 189.186.100.196 6b3916e8-86f5-41c1-863f-5f02b2a6e6c3 2020-12-06 19:08:10.548046 47677 3618 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.100.196 cea225ff-75b4-4ef1-92ad-eb524350714d 2020-12-06 19:08:26.375372 47678 4787 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1214\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1198E4\nmove_type: '1'\nsale_id: 3618\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-970\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-970 189.186.100.196 cea225ff-75b4-4ef1-92ad-eb524350714d 2020-12-06 19:08:26.410549 47679 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-05 02:04:13.988335000 Z\n- &1 2020-12-05 20:27:52.864077000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-06 19:40:22.376771796 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535976\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535976\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535088\n mask_addr: 4294967295\nsign_in_count:\n- 2117\n- 2118\n 4236 \N 177.228.100.48 e17923e0-44b7-47c3-99a2-c70001afcb0b 2020-12-06 19:40:22.388219 47680 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rK_LueUfPgsobYGTseoy\n- R7c7xtBxNdmZ6fgmSHn-\n 4237 \N 177.228.100.48 e17923e0-44b7-47c3-99a2-c70001afcb0b 2020-12-06 19:40:22.44254 47681 1239 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1214\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1198E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.953E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2453E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.100.196 de59b1c1-8ddf-4048-9815-41a6547f3b8f 2020-12-06 22:59:11.43481 47682 1214 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.100.196 de59b1c1-8ddf-4048-9815-41a6547f3b8f 2020-12-06 22:59:11.447493 47683 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-05 20:27:52.864077000 Z\n- &1 2020-12-06 19:40:22.376771000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-07 16:47:35.247322418 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535976\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535088\n mask_addr: 4294967295\nsign_in_count:\n- 2118\n- 2119\n 4238 \N 177.228.100.48 8fb0381c-0e08-4e10-9c72-808a90ed69bd 2020-12-07 16:47:35.283296 47684 4 User \N \N 4 User \N update ---\nunique_session_id:\n- R7c7xtBxNdmZ6fgmSHn-\n- W51twNqArxWNzs5Ce6qk\n 4239 \N 177.228.100.48 8fb0381c-0e08-4e10-9c72-808a90ed69bd 2020-12-07 16:47:35.313108 47685 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-04 18:20:04.764688000 Z\n- &1 2020-12-05 20:08:21.543062000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-07 17:16:10.587043848 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101026\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\nsign_in_count:\n- 358\n- 359\n 719 \N 189.186.100.196 db56f065-9c9b-4754-b648-7d78427db4a6 2020-12-07 17:16:10.617229 47686 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 2HgPWL9BKyJMqzWFo2ys\n- 3Eqx9SfwVEtvENzo8CaW\n 720 \N 189.186.100.196 db56f065-9c9b-4754-b648-7d78427db4a6 2020-12-07 17:16:10.643438 47687 1215 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.953E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 953.0 189.186.100.196 5eb90dcc-d971-4e3e-9996-4b047a7a4bc6 2020-12-07 17:17:56.12314 47688 3619 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1215\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-12-07\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-971\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 a0e89d2e-becf-4372-b2ba-949a0c017cce 2020-12-07 17:18:51.39347 47689 2562 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.100.196 a0e89d2e-becf-4372-b2ba-949a0c017cce 2020-12-07 17:18:51.422519 47690 3619 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.100.196 33858baf-fec4-4812-9dce-72e796d0867c 2020-12-07 17:18:57.628215 47691 4788 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1215\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 3619\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-971\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-971 189.186.100.196 33858baf-fec4-4812-9dce-72e796d0867c 2020-12-07 17:18:57.651152 47692 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-06 00:28:35.074230000 Z\n- &1 2020-12-06 17:16:08.139182000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-07 17:56:35.269173014 Z\nsign_in_count:\n- 723\n- 724\n 1451 \N 189.186.20.144 3b80933f-edf4-4000-b38e-d51c78c1bccd 2020-12-07 17:56:35.300364 47693 2 User \N \N 2 User \N update ---\nunique_session_id:\n- GiLPUTh2T3xqPABhzccZ\n- UYpyN1aCrFa9tbZmbYQJ\n 1452 \N 189.186.20.144 3b80933f-edf4-4000-b38e-d51c78c1bccd 2020-12-07 17:56:35.326291 47694 1216 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1373E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1373.0 189.186.20.144 52f729d8-ce54-4aa1-8177-32d217ec893e 2020-12-07 18:07:14.590128 47695 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-06 19:40:22.376771000 Z\n- &1 2020-12-07 16:47:35.247322000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-07 20:02:18.474868784 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535088\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\nsign_in_count:\n- 2119\n- 2120\n 4240 \N 189.186.100.196 79f4bc4b-a466-4abe-9adf-41528b5ff1ef 2020-12-07 20:02:18.496209 47696 4 User \N \N 4 User \N update ---\nunique_session_id:\n- W51twNqArxWNzs5Ce6qk\n- bTqdnY_oapWS227hhJQ2\n 4241 \N 189.186.100.196 79f4bc4b-a466-4abe-9adf-41528b5ff1ef 2020-12-07 20:02:18.521427 47813 1217 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.100.196 42bfc0c0-64b9-41a3-a379-ecd81ac7ac52 2020-12-09 02:40:11.306074 47697 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-07 16:47:35.247322000 Z\n- &1 2020-12-07 20:02:18.474868000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-07 21:15:40.001173845 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535088\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\nsign_in_count:\n- 2120\n- 2121\n 4242 \N 189.186.100.196 ad1606d4-2c8e-47ba-bc61-8186dc5bd912 2020-12-07 21:15:40.009308 47698 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bTqdnY_oapWS227hhJQ2\n- FvsGnszsbwbcbfEZdscQ\n 4243 \N 189.186.100.196 ad1606d4-2c8e-47ba-bc61-8186dc5bd912 2020-12-07 21:15:40.039754 47699 4789 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1216\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.849E3\nmove_type: '1'\nsale_id: 3596\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.849E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1715 189.186.20.144 6692c737-a25f-45c7-899b-62aaba55d3dc 2020-12-07 21:19:19.639927 47700 3596 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 a1e30557-1f0b-410a-ac0d-aa6fcae3ebba 2020-12-07 21:19:24.45763 47701 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-07 20:02:18.474868000 Z\n- &1 2020-12-07 21:15:40.001173000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-07 21:31:44.153499619 Z\nsign_in_count:\n- 2121\n- 2122\n 4244 \N 189.186.100.196 a0d9e3bc-fb96-40ab-bf42-c408e12dc41d 2020-12-07 21:31:44.159218 47702 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FvsGnszsbwbcbfEZdscQ\n- pgYBPkv6MiM1FDtYT1Hz\n 4245 \N 189.186.100.196 a0d9e3bc-fb96-40ab-bf42-c408e12dc41d 2020-12-07 21:31:44.176424 47703 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-07 21:15:40.001173000 Z\n- &1 2020-12-07 21:31:44.153499000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-07 21:59:39.798240694 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945684\n mask_addr: 4294967295\nsign_in_count:\n- 2122\n- 2123\n 4246 \N 200.68.179.212 7fee2889-56f3-49a2-a0c6-7c13b67a4b8c 2020-12-07 21:59:39.805374 47704 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pgYBPkv6MiM1FDtYT1Hz\n- z-vurxMy7qAtxVJsnjxq\n 4247 \N 200.68.179.212 7fee2889-56f3-49a2-a0c6-7c13b67a4b8c 2020-12-07 21:59:39.821964 47705 364 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1216\nquantity: !ruby/object:BigDecimal 18:0.1E2\nstatus: 1\nobservations: navidad barrenderos\nexpense_date: 2020-12-07\nexpense_code: PV1-E-253\n 1 Egreso por 10.0 registrado 189.186.20.144 901c65ab-5252-4e56-ad87-1ff33a2d9829 2020-12-07 22:02:31.961985 47706 4790 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1216\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 364\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.20.144 901c65ab-5252-4e56-ad87-1ff33a2d9829 2020-12-07 22:02:31.985114 47707 465 Customer \N \N 2 User \N create ---\nnick_name: AUDREY CHIQUETE LOERA\nphone: "(667) 395-4875"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente AUDREY CHIQUETE LOERA fue registrado. 189.186.20.144 b1ee07f6-2bfc-475b-bd7d-6c6fc65fb6d8 2020-12-07 22:03:47.809384 47708 3620 Sale \N \N 2 User \N create ---\ncustomer_id: 465\nuser_id: 2\nopen_cash_register_id: 1216\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2020-12-07\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1729\nexpiration_date: 2021-01-11\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 f3a8a3a2-4b25-4707-bcaf-7c3884d4aef5 2020-12-07 22:04:44.14354 47709 2391 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.20.144 f3a8a3a2-4b25-4707-bcaf-7c3884d4aef5 2020-12-07 22:04:44.175787 47710 4791 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1216\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 3620\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1729\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1729 189.186.20.144 3f8f112e-3c6d-4439-b58d-b05966d8a78c 2020-12-07 22:04:55.376621 47711 3620 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.20.144 256c2423-0b77-400a-bad5-73d50b1cce84 2020-12-07 22:04:57.524709 47712 4792 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1216\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 3598\ncardnumber: 7821\npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1716 189.186.20.144 00b8ed30-dbc0-4336-a2a3-2024d2a4410b 2020-12-07 22:28:32.572402 47713 4793 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1216\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 3598\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1716 189.186.20.144 bcbfc970-0331-472f-886b-e0eb819d92a4 2020-12-07 22:28:48.314809 47714 3598 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 c1fc53a1-c52d-4a0d-b823-2f35bbb559c7 2020-12-07 22:28:51.106512 47715 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-04 01:52:42.041891000 Z\n- &1 2020-12-05 01:41:28.984938000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-07 22:44:29.432760820 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183101026\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\nsign_in_count:\n- 382\n- 383\n 767 \N 189.186.100.196 344c83bf-fb44-415f-a7e2-aec98443653b 2020-12-07 22:44:29.440477 47716 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 4PkawLLr8Xcx9GpYNhu1\n- sXGpKzF8tCBBR8m5pPRD\n 768 \N 189.186.100.196 344c83bf-fb44-415f-a7e2-aec98443653b 2020-12-07 22:44:29.459913 47717 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-06 00:30:06.202928000 Z\n- &1 2020-12-06 03:54:41.841966000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-07 22:47:36.286034030 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535860\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535860\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 420\n- 421\n 842 \N 189.186.20.144 8926dc26-4d8d-4a43-b350-7a34c7f14c3c 2020-12-07 22:47:36.294253 47719 4794 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1215\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.666E3\nmove_type: '1'\nsale_id: 3411\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1252'\n 1 movimiento de efectivo por venta con folio PV3-V-863 189.186.100.196 a541fd3a-2891-4a11-b84c-10085d2e46dd 2020-12-07 23:14:58.026511 47720 3411 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.100.196 12232cb6-e532-4db7-abfb-0df28ea0eb1e 2020-12-07 23:15:00.071646 47721 4795 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1216\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.239E3\nmove_type: '1'\nsale_id: 3445\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.239E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1642 189.186.20.144 93709fb3-6f19-4845-a26f-8bc0909c61fd 2020-12-07 23:19:07.922189 47722 3445 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 a41ac75c-693d-4155-b7d0-329e4c941546 2020-12-07 23:19:13.293129 47723 3621 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1216\namount: !ruby/object:BigDecimal 18:0.229E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.229E3\nstatus: 0\ndate_sale: 2020-12-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1730\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 ecd3532f-a52f-4939-9daa-01e0f2ab4813 2020-12-07 23:32:15.290324 47724 2394 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.20.144 ecd3532f-a52f-4939-9daa-01e0f2ab4813 2020-12-07 23:32:15.319197 47725 3621 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 6eb2ada7-4c12-4ba5-b37b-3590c96aadde 2020-12-07 23:32:19.98605 47726 4796 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1216\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.229E3\nmove_type: '1'\nsale_id: 3621\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1730\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.229E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1730 189.186.20.144 6eb2ada7-4c12-4ba5-b37b-3590c96aadde 2020-12-07 23:32:20.015001 47727 3622 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1216\namount: !ruby/object:BigDecimal 18:0.4824E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4824E4\nstatus: 0\ndate_sale: 2020-12-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1731\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 202fb2c7-51fd-4bb1-834c-5a12ba585ad8 2020-12-07 23:43:43.73849 47728 2508 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.20.144 202fb2c7-51fd-4bb1-834c-5a12ba585ad8 2020-12-07 23:43:43.76593 47729 1283 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 189.186.20.144 202fb2c7-51fd-4bb1-834c-5a12ba585ad8 2020-12-07 23:43:43.790685 47730 637 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.20.144 202fb2c7-51fd-4bb1-834c-5a12ba585ad8 2020-12-07 23:43:43.813127 47731 2536 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.20.144 202fb2c7-51fd-4bb1-834c-5a12ba585ad8 2020-12-07 23:43:43.83957 47732 2521 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 3 \N 189.186.20.144 202fb2c7-51fd-4bb1-834c-5a12ba585ad8 2020-12-07 23:43:43.865821 47733 1629 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.20.144 202fb2c7-51fd-4bb1-834c-5a12ba585ad8 2020-12-07 23:43:43.888072 47734 3622 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 c20ea3f2-e435-4adf-91ba-bcfee5055e83 2020-12-07 23:43:49.708908 47735 4797 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1216\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.4824E4\nmove_type: '1'\nsale_id: 3622\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1731\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4824E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1731 189.186.20.144 c20ea3f2-e435-4adf-91ba-bcfee5055e83 2020-12-07 23:43:49.729688 47736 3623 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1216\namount: !ruby/object:BigDecimal 18:0.1119E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1119E4\nstatus: 0\ndate_sale: 2020-12-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1732\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 4c1e29ca-23cf-464d-91b8-63d87bb8de84 2020-12-07 23:45:46.014897 47737 1633 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.20.144 4c1e29ca-23cf-464d-91b8-63d87bb8de84 2020-12-07 23:45:46.050965 47738 3623 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 1734eacd-e7ea-4e6f-9ed4-06387f91b5aa 2020-12-07 23:45:52.506787 47739 4798 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1216\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1119E4\nmove_type: '1'\nsale_id: 3623\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1732\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1119E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1732 189.186.20.144 1734eacd-e7ea-4e6f-9ed4-06387f91b5aa 2020-12-07 23:45:52.536187 47740 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-07 21:31:44.153499000 Z\n- &1 2020-12-07 21:59:39.798240000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-07 23:57:38.971433459 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945684\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945684\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\nsign_in_count:\n- 2123\n- 2124\n 4248 \N 189.186.100.196 364be21f-55c5-4250-865f-89b9e62b5aca 2020-12-07 23:57:38.98369 47741 4 User \N \N 4 User \N update ---\nunique_session_id:\n- z-vurxMy7qAtxVJsnjxq\n- KeEspvn-u6ARHKrxN4j9\n 4249 \N 189.186.100.196 364be21f-55c5-4250-865f-89b9e62b5aca 2020-12-07 23:57:39.01029 47742 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-06 03:54:41.841966000 Z\n- &1 2020-12-07 22:47:36.286034000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-07 23:58:23.078226353 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535860\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 421\n- 422\n 844 \N 189.186.20.144 2bbc147b-d80c-4615-9695-fe56e23bd2d5 2020-12-07 23:58:23.08531 47743 1 User \N \N 1 User \N update ---\nunique_session_id:\n- voZ72WBKx6zeWcfrzdNC\n- SyATFkJmei3VpsdpKvc3\n 845 \N 189.186.20.144 2bbc147b-d80c-4615-9695-fe56e23bd2d5 2020-12-07 23:58:23.102968 47744 3624 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1216\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.269E3\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2020-12-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1733\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 fc53d188-2e00-4dd2-b795-d981215e32e3 2020-12-08 00:12:45.335325 47745 746 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.20.144 fc53d188-2e00-4dd2-b795-d981215e32e3 2020-12-08 00:12:45.366732 47746 3624 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 613f8d01-0516-44f3-8fd9-1f6bd68e09f3 2020-12-08 00:12:49.782949 47747 4799 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1216\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 3624\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1733\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1733 189.186.20.144 613f8d01-0516-44f3-8fd9-1f6bd68e09f3 2020-12-08 00:12:49.80768 47748 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-05 01:41:28.984938000 Z\n- &1 2020-12-07 22:44:29.432760000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-08 01:01:57.066012014 Z\nsign_in_count:\n- 383\n- 384\n 769 \N 189.186.100.196 e5cba435-66d5-4127-acd9-44e65d79e7a1 2020-12-08 01:01:57.072106 47749 18 User \N \N 18 User \N update ---\nunique_session_id:\n- sXGpKzF8tCBBR8m5pPRD\n- dk4YhRbvUXa2bzJd8NNx\n 770 \N 189.186.100.196 e5cba435-66d5-4127-acd9-44e65d79e7a1 2020-12-08 01:01:57.086256 47750 3625 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1215\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-07\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-972\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 5c21697c-5d00-4020-8268-c8324132f277 2020-12-08 01:02:34.615945 47751 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 35 \N 189.186.100.196 5c21697c-5d00-4020-8268-c8324132f277 2020-12-08 01:02:34.654814 47752 3625 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.100.196 9babb4d0-a902-4192-b2d1-1603400b22b4 2020-12-08 01:02:39.172079 47753 4800 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1215\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 3625\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-972\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-972 189.186.100.196 9babb4d0-a902-4192-b2d1-1603400b22b4 2020-12-08 01:02:39.193852 47754 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-07 21:59:39.798240000 Z\n- &1 2020-12-07 23:57:38.971433000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-08 01:04:24.077641617 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945684\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\nsign_in_count:\n- 2124\n- 2125\n 4250 \N 189.186.100.196 d0ac2aba-999d-4b7d-9f85-eddaa4007d29 2020-12-08 01:04:24.085629 47755 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KeEspvn-u6ARHKrxN4j9\n- 35kTTDW-4qYXYibHE7x_\n 4251 \N 189.186.100.196 d0ac2aba-999d-4b7d-9f85-eddaa4007d29 2020-12-08 01:04:24.107711 47756 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-07 22:44:29.432760000 Z\n- &1 2020-12-08 01:01:57.066012000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-08 01:48:35.936488996 Z\nsign_in_count:\n- 384\n- 385\n 771 \N 189.186.100.196 d8a48b3b-db58-4c18-a96c-5cd2adbbf029 2020-12-08 01:48:35.9426 47757 18 User \N \N 18 User \N update ---\nunique_session_id:\n- dk4YhRbvUXa2bzJd8NNx\n- 5spkVLrH5CaecEWDFxwC\n 772 \N 189.186.100.196 d8a48b3b-db58-4c18-a96c-5cd2adbbf029 2020-12-08 01:48:35.957217 47758 1240 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1216\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.8959E4\namount_out: !ruby/object:BigDecimal 18:0.1E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.86E4\ncash_fund: !ruby/object:BigDecimal 18:0.1372E4\nphysical_cash: !ruby/object:BigDecimal 18:0.9972E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.144 85408d73-2cdf-42ab-84c9-de545db47942 2020-12-08 02:09:41.764557 47759 1216 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.144 85408d73-2cdf-42ab-84c9-de545db47942 2020-12-08 02:09:41.779997 47760 1241 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1215\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.3264E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.23E4\ncash_fund: !ruby/object:BigDecimal 18:0.1251E4\nphysical_cash: !ruby/object:BigDecimal 18:0.3551E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.100.196 16fd6757-db90-4724-adf0-35dc87234039 2020-12-08 02:11:43.132026 47761 1215 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.100.196 16fd6757-db90-4724-adf0-35dc87234039 2020-12-08 02:11:43.146475 47762 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-07 23:57:38.971433000 Z\n- &1 2020-12-08 01:04:24.077641000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-08 06:17:22.906900372 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535184\n mask_addr: 4294967295\nsign_in_count:\n- 2125\n- 2126\n 4252 \N 177.228.100.144 bfca2ad6-309b-45bc-9398-a5412285c655 2020-12-08 06:17:22.918113 47763 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 35kTTDW-4qYXYibHE7x_\n- zYjFSfXs_tvceXSLUUc4\n 4253 \N 177.228.100.144 bfca2ad6-309b-45bc-9398-a5412285c655 2020-12-08 06:17:22.94617 47764 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-05 20:08:21.543062000 Z\n- &1 2020-12-07 17:16:10.587043000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-08 17:50:17.863992666 Z\nsign_in_count:\n- 359\n- 360\n 721 \N 189.186.100.196 8f127bf1-0fce-4a96-b376-d5023dbb8f4e 2020-12-08 17:50:17.895427 47767 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-06 17:16:08.139182000 Z\n- &1 2020-12-07 17:56:35.269173000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-08 20:05:13.843047764 Z\nsign_in_count:\n- 724\n- 725\n 1453 \N 189.186.20.144 37964d32-9ef2-44e4-9e4d-c168f10cca0e 2020-12-08 20:05:13.876293 47768 2 User \N \N 2 User \N update ---\nunique_session_id:\n- UYpyN1aCrFa9tbZmbYQJ\n- pYzzm63DYLx45UiDGRbX\n 1454 \N 189.186.20.144 37964d32-9ef2-44e4-9e4d-c168f10cca0e 2020-12-08 20:05:13.905113 47769 1218 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1372E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1372.0 189.186.20.144 3783204a-3baa-47c6-a137-0d6f9c37577a 2020-12-08 20:05:31.987592 47770 466 Customer \N \N 2 User \N create ---\nnick_name: SOFIA SILVAS\nphone: "(667) 798-3682"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente SOFIA SILVAS fue registrado. 189.186.20.144 6cd25066-33d9-4dda-867f-538436232443 2020-12-08 20:09:30.522274 47771 3626 Sale \N \N 2 User \N create ---\ncustomer_id: 466\nuser_id: 2\nopen_cash_register_id: 1218\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-08\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1734\nexpiration_date: 2021-01-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 1b046723-f811-4e84-b641-4cb5a191bb90 2020-12-08 20:11:42.658662 47772 2512 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.20.144 1b046723-f811-4e84-b641-4cb5a191bb90 2020-12-08 20:11:42.692391 47773 4801 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1218\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3626\ncardnumber: 3028\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1734\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1734 189.186.20.144 e20a6eaf-79ea-4ebf-b87b-dbbc3b3d1a28 2020-12-08 20:11:58.878714 47774 3626 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.20.144 cc7b9460-d8dd-46b0-b4ba-8573f7f69ed5 2020-12-08 20:12:00.514049 47775 3627 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1217\namount: !ruby/object:BigDecimal 18:0.1698E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1698E4\nstatus: 0\ndate_sale: 2020-12-08\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-973\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 f2ba4918-65b6-4ca6-88ba-884f0e9f0f0d 2020-12-08 21:55:53.649227 47776 2492 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.100.196 f2ba4918-65b6-4ca6-88ba-884f0e9f0f0d 2020-12-08 21:55:53.688379 47777 2496 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.100.196 f2ba4918-65b6-4ca6-88ba-884f0e9f0f0d 2020-12-08 21:55:53.730047 47778 3627 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.100.196 8dc9e1bc-7f99-4978-8fa1-ece6572894dc 2020-12-08 21:56:21.867017 47779 4802 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1217\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1698E4\nmove_type: '1'\nsale_id: 3627\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-973\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.302E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-973 189.186.100.196 8dc9e1bc-7f99-4978-8fa1-ece6572894dc 2020-12-08 21:56:21.898615 47780 4803 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1217\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.9E3\nmove_type: '1'\nsale_id: 3298\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-809 189.186.100.196 0f8b4f50-a57a-4caa-a811-81e97ba5a3a8 2020-12-08 21:59:06.787102 47781 3298 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.100.196 8660ce88-4b30-48f4-a47f-3e714dc64180 2020-12-08 21:59:09.823113 47782 4804 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1217\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 3294\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-805 189.186.100.196 4fee8a90-4820-4ed9-85e3-a254e656fe34 2020-12-08 21:59:33.200794 47783 3294 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.100.196 d166a0ba-9438-40c3-b402-0e477686c1ee 2020-12-08 21:59:34.643089 47784 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-08 01:04:24.077641000 Z\n- &1 2020-12-08 06:17:22.906900000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-08 23:32:19.641933136 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535184\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535184\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938466\n mask_addr: 4294967295\nsign_in_count:\n- 2126\n- 2127\n 4254 \N 200.68.151.162 bd46410b-39a1-47d9-8053-6cb2c415c314 2020-12-08 23:32:19.656875 47785 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zYjFSfXs_tvceXSLUUc4\n- ZYNymrxjndTGEtrbfKfF\n 4255 \N 200.68.151.162 bd46410b-39a1-47d9-8053-6cb2c415c314 2020-12-08 23:32:19.689293 47786 3628 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1218\namount: !ruby/object:BigDecimal 18:0.1648E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1648E4\nstatus: 0\ndate_sale: 2020-12-08\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1735\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 23b59ac0-64e7-44b4-a6db-10357b91a607 2020-12-08 23:41:12.726334 47787 2245 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.20.144 23b59ac0-64e7-44b4-a6db-10357b91a607 2020-12-08 23:41:12.761826 47788 2605 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.20.144 23b59ac0-64e7-44b4-a6db-10357b91a607 2020-12-08 23:41:12.788574 47789 3628 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1735 cancelada. 189.186.20.144 a1d7f076-30af-4db5-a8c4-c2915fb24eac 2020-12-08 23:42:08.135033 47792 3629 Sale \N \N 21 User \N create ---\ncustomer_id: 359\nuser_id: 21\nopen_cash_register_id: 1217\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-12-08\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-974\nexpiration_date: 2021-01-12\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 b736b548-f891-426e-95cd-7096b2dd28d9 2020-12-09 00:58:55.123004 47793 2378 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.13E2\n- !ruby/object:BigDecimal 18:0.12E2\n 7 \N 189.186.100.196 b736b548-f891-426e-95cd-7096b2dd28d9 2020-12-09 00:58:55.152655 47794 4805 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1217\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3629\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-974\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-974 189.186.100.196 566d6323-5367-478d-8495-bc9d9c58916e 2020-12-09 00:59:08.699778 47795 3629 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.100.196 f5435ac3-fa6f-46cb-a8b2-4a2491bc1f0f 2020-12-09 00:59:11.859652 47796 3630 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1218\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-12-08\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1736\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 900e09d1-6651-4960-b361-67ec479741d2 2020-12-09 01:18:30.297203 47797 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 31 \N 189.186.20.144 900e09d1-6651-4960-b361-67ec479741d2 2020-12-09 01:18:30.323736 47798 3630 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 a663f12e-108d-4cd9-a8e2-9ba926452ff4 2020-12-09 01:18:57.458162 47799 4806 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1218\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3630\ncardnumber: 8506\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1736\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1736 189.186.20.144 a663f12e-108d-4cd9-a8e2-9ba926452ff4 2020-12-09 01:18:57.480978 47800 3631 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1218\namount: !ruby/object:BigDecimal 18:0.629E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.629E3\nstatus: 0\ndate_sale: 2020-12-08\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1737\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 9dc194d6-f8a9-4bd4-8ed9-708fa509b7b0 2020-12-09 01:25:32.430372 47801 2525 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.20.144 9dc194d6-f8a9-4bd4-8ed9-708fa509b7b0 2020-12-09 01:25:32.480693 47802 3631 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 c020ac97-971a-4d69-bfc7-b07ca408afb3 2020-12-09 01:26:13.833314 47803 4807 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1218\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.629E3\nmove_type: '1'\nsale_id: 3631\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1737\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.629E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1737 189.186.20.144 c020ac97-971a-4d69-bfc7-b07ca408afb3 2020-12-09 01:26:13.857305 47804 3632 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1217\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-12-08\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-975\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 212c1ec3-d79c-4d58-bff2-448da3ac21cb 2020-12-09 02:02:39.420538 47805 2506 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.1E2\n 13 \N 189.186.100.196 212c1ec3-d79c-4d58-bff2-448da3ac21cb 2020-12-09 02:02:39.456148 47806 3632 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.100.196 cc37c7b8-4ad8-4d42-93b1-291389c7b2d3 2020-12-09 02:03:40.966108 47807 4808 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1217\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 3632\ncardnumber: 452\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-975\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-975 189.186.100.196 cc37c7b8-4ad8-4d42-93b1-291389c7b2d3 2020-12-09 02:03:40.991074 47808 1242 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1218\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2728E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.7E3\ncash_fund: !ruby/object:BigDecimal 18:0.1301E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2001E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.144 fe5be3b0-81b9-4533-8305-05e3a3b041a6 2020-12-09 02:12:43.118174 47809 1218 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.144 fe5be3b0-81b9-4533-8305-05e3a3b041a6 2020-12-09 02:12:43.133846 47810 365 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1217\nquantity: !ruby/object:BigDecimal 18:0.16E2\nstatus: 1\nobservations: PAGO DE COPIAS\nexpense_date: 2020-12-08\nexpense_code: PV3-E-50\n 1 Egreso por 16.0 registrado 189.186.100.196 2173f69a-3951-4632-8610-1baae0babb53 2020-12-09 02:34:17.720181 47811 4809 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1217\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.16E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 365\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.100.196 2173f69a-3951-4632-8610-1baae0babb53 2020-12-09 02:34:17.747987 47812 1243 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1217\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.5296E4\namount_out: !ruby/object:BigDecimal 18:0.16E2\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.4E4\ncash_fund: !ruby/object:BigDecimal 18:0.932E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4932E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.100.196 42bfc0c0-64b9-41a3-a379-ecd81ac7ac52 2020-12-09 02:40:11.285752 47814 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-08 06:17:22.906900000 Z\n- &1 2020-12-08 23:32:19.641933000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-09 06:49:50.216473206 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535184\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938466\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938466\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535952\n mask_addr: 4294967295\nsign_in_count:\n- 2127\n- 2128\n 4256 \N 177.228.103.144 516fce65-9211-4ef8-a66f-81baf83f4f15 2020-12-09 06:49:50.225802 47815 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZYNymrxjndTGEtrbfKfF\n- stKfbG1xPFURURGvnxFK\n 4257 \N 177.228.103.144 516fce65-9211-4ef8-a66f-81baf83f4f15 2020-12-09 06:49:50.803441 47816 1219 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.932E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 932.0 189.186.100.196 da042b4b-8048-41c9-8963-22b2be198132 2020-12-09 17:40:31.258082 47817 4810 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1219\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 3493\ncardnumber: 5222\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-908 189.186.100.196 259fb6a4-0a98-4753-8497-ac86ca43590b 2020-12-09 17:43:09.301397 47818 3493 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.100.196 0af4c12c-d668-4c78-a1d0-ab2d9b9740c3 2020-12-09 17:43:11.83466 47819 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-11-25 23:40:32.962407000 Z\n- &1 2020-11-26 01:31:36.377646000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-09 18:16:40.426240094 Z\nsign_in_count:\n- 198\n- 199\n 398 \N 189.186.20.144 a6152c56-395b-4461-82c1-b949a03303d6 2020-12-09 18:16:40.433618 47820 9 User \N \N 9 User \N update ---\nunique_session_id:\n- yBPFTS5yLM5FQ1xZsuZP\n- V91dz8YcKXoQ5JXYLBvT\n 399 \N 189.186.20.144 a6152c56-395b-4461-82c1-b949a03303d6 2020-12-09 18:16:40.450338 47821 1220 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.1301E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1301.0 189.186.20.144 6e50c386-d5f3-486b-abf3-a4ef512a1e0a 2020-12-09 18:16:44.037179 47822 3633 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1220\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-12-09\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1738\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 b26d9358-3693-496e-98cd-8c5b4a2c3682 2020-12-09 18:57:18.475323 47823 2519 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.20.144 b26d9358-3693-496e-98cd-8c5b4a2c3682 2020-12-09 18:57:18.502885 47824 3633 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 4c252c76-ab00-4184-a4b5-02304e90ea5f 2020-12-09 18:57:30.05042 47825 4811 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1220\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 3633\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1738\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1738 189.186.20.144 4c252c76-ab00-4184-a4b5-02304e90ea5f 2020-12-09 18:57:30.082093 47826 4811 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 1220\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 3633\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1738\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.20.144 cdb96401-f709-42c8-bab0-34f5296a48f9 2020-12-09 18:57:45.535831 47827 4812 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1220\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 3633\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1738\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1738 189.186.20.144 4e923154-e6dd-41aa-8e8d-219fe855061b 2020-12-09 18:57:51.519309 47828 748 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-09\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.20.144 04a74598-6a5a-498c-b5f5-e83f11b343fc 2020-12-09 19:30:37.817392 47829 2633 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 862\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.20.144 04a74598-6a5a-498c-b5f5-e83f11b343fc 2020-12-09 19:30:37.851286 47830 2538 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.20.144 04a74598-6a5a-498c-b5f5-e83f11b343fc 2020-12-09 19:30:37.882083 47831 1141 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.20.144 04a74598-6a5a-498c-b5f5-e83f11b343fc 2020-12-09 19:30:37.905613 47832 1599 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.20.144 04a74598-6a5a-498c-b5f5-e83f11b343fc 2020-12-09 19:30:37.925854 47833 1383 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.20.144 04a74598-6a5a-498c-b5f5-e83f11b343fc 2020-12-09 19:30:37.945206 47834 1478 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.20.144 04a74598-6a5a-498c-b5f5-e83f11b343fc 2020-12-09 19:30:37.963664 47835 749 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-09\n 2 Se dio entrada a traspaso de Almacen central a SUO 189.186.20.144 9be048e3-b603-4d48-93cc-da3dbed67d6b 2020-12-09 19:30:49.028509 47836 2634 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 781\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.20.144 9be048e3-b603-4d48-93cc-da3dbed67d6b 2020-12-09 19:30:49.054862 47947 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 56 \N 189.186.100.196 1d339817-0c7c-4b00-bc25-40604a0aca73 2020-12-10 21:21:37.905043 47837 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-08 23:32:19.641933000 Z\n- &1 2020-12-09 06:49:50.216473000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-09 19:36:35.988314822 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938466\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535952\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535952\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 2128\n- 2129\n 4258 \N 189.186.20.144 ee104b82-8049-4cb0-b710-99ee983b70be 2020-12-09 19:36:35.998863 47838 4 User \N \N 4 User \N update ---\nunique_session_id:\n- stKfbG1xPFURURGvnxFK\n- hsvNm28v6iZFsurzZWkH\n 4259 \N 189.186.20.144 ee104b82-8049-4cb0-b710-99ee983b70be 2020-12-09 19:36:36.018735 47839 1548 Product \N \N 4 User \N create ---\nsku: CAR-1548\nname: 1BICP20978\ndescription: CARTERA ROSA\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1548 fue creado. 189.186.20.144 fb31d777-e49c-440f-a699-4886815a0b94 2020-12-09 19:37:56.353177 47840 1548 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001548'\n 2 \N 189.186.20.144 fb31d777-e49c-440f-a699-4886815a0b94 2020-12-09 19:37:56.391128 47841 2635 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1548\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.20.144 fb31d777-e49c-440f-a699-4886815a0b94 2020-12-09 19:37:56.421106 47842 496 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-214\namount: !ruby/object:BigDecimal 18:0.4495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4495E3\nobservations: ''\npurchase_date: 2020-12-09\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-214 por $ 449.5 MXN creada. 189.186.20.144 b953b74b-7775-4c32-8293-a875e3865210 2020-12-09 19:37:58.69253 47843 2635 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.20.144 b953b74b-7775-4c32-8293-a875e3865210 2020-12-09 19:37:58.715137 47844 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-08 01:01:57.066012000 Z\n- &1 2020-12-08 01:48:35.936488000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-09 19:38:18.080153442 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 385\n- 386\n 773 \N 189.186.20.144 65f51ec1-c06d-4290-b8ef-80e35e0cd34e 2020-12-09 19:38:18.086875 47845 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 5spkVLrH5CaecEWDFxwC\n- e9xSBskt9qKBsL5Q-fnF\n 774 \N 189.186.20.144 65f51ec1-c06d-4290-b8ef-80e35e0cd34e 2020-12-09 19:38:18.101548 47846 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-11-26 01:31:36.377646000 Z\n- &1 2020-12-09 18:16:40.426240000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-09 19:38:52.716050825 Z\nsign_in_count:\n- 199\n- 200\n 400 \N 189.186.20.144 9683fcdb-1282-465e-8b49-893e2d782671 2020-12-09 19:38:52.721845 47847 9 User \N \N 9 User \N update ---\nunique_session_id:\n- V91dz8YcKXoQ5JXYLBvT\n- qpNYxqGhAJt4pVth4UEV\n 401 \N 189.186.20.144 9683fcdb-1282-465e-8b49-893e2d782671 2020-12-09 19:38:52.734933 47848 3634 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1220\namount: !ruby/object:BigDecimal 18:0.2797E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2797E4\nstatus: 0\ndate_sale: 2020-12-09\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1739\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 54b0d691-c98f-44c8-a2e8-256c19f57395 2020-12-09 19:42:40.794386 47849 2552 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.20.144 54b0d691-c98f-44c8-a2e8-256c19f57395 2020-12-09 19:42:40.822409 47850 1383 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.20.144 54b0d691-c98f-44c8-a2e8-256c19f57395 2020-12-09 19:42:40.843982 47851 2064 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.20.144 54b0d691-c98f-44c8-a2e8-256c19f57395 2020-12-09 19:42:40.865749 47852 2635 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.20.144 54b0d691-c98f-44c8-a2e8-256c19f57395 2020-12-09 19:42:40.887076 47853 3634 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 dddad8e7-0fca-4cd0-a1e1-d8a8b6f9a947 2020-12-09 19:42:54.706372 47854 4813 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1220\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2797E4\nmove_type: '1'\nsale_id: 3634\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1739\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2797E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1739 189.186.20.144 dddad8e7-0fca-4cd0-a1e1-d8a8b6f9a947 2020-12-09 19:42:54.732649 47855 4814 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1220\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 3556\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.3E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1694 189.186.20.144 004b2493-e663-4365-9b39-e8e0da0c4a9a 2020-12-09 20:10:00.570487 47856 4814 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 1220\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 3556\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.3E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.20.144 1d548167-2966-495d-8e1e-affc7457358f 2020-12-09 20:10:16.891593 47857 4815 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1220\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3556\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1694 189.186.20.144 068123fe-dac3-435c-b125-8bb563604b05 2020-12-09 20:10:46.894208 47948 3645 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.100.196 14763b61-8264-4112-bd89-c1ffb1d09422 2020-12-10 21:22:42.85444 47858 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-09 06:49:50.216473000 Z\n- &1 2020-12-09 19:36:35.988314000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-09 21:36:45.840001490 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535952\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934297\n mask_addr: 4294967295\nsign_in_count:\n- 2129\n- 2130\n 4260 \N 200.68.135.89 debf9a3c-9107-4c85-a2f0-3c6cc229b521 2020-12-09 21:36:45.867483 47859 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hsvNm28v6iZFsurzZWkH\n- RhgQHoDH42qbKvQCDsMG\n 4261 \N 200.68.135.89 debf9a3c-9107-4c85-a2f0-3c6cc229b521 2020-12-09 21:36:45.893041 47860 467 Customer \N \N 9 User \N create ---\nnick_name: diana salas\nphone: "(667) 485-9775"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente diana salas fue registrado. 189.186.20.144 95e20360-fcc8-4a02-898c-503422430c20 2020-12-09 22:03:32.566942 47861 3635 Sale \N \N 9 User \N create ---\ncustomer_id: 467\nuser_id: 9\nopen_cash_register_id: 1220\namount: !ruby/object:BigDecimal 18:0.1196E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1196E4\nstatus: 0\ndate_sale: 2020-12-09\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1740\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 8da66f47-61a9-40b1-af91-ff8ab7bb02e7 2020-12-09 22:03:48.75322 47862 2610 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.20.144 8da66f47-61a9-40b1-af91-ff8ab7bb02e7 2020-12-09 22:03:48.78045 47863 3635 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 e50d6845-35cc-42f8-98a0-69c2715641f2 2020-12-09 22:03:55.728237 47864 4816 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1220\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 3635\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1740\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1740 189.186.20.144 e50d6845-35cc-42f8-98a0-69c2715641f2 2020-12-09 22:03:55.754751 47865 3635 Sale \N \N 9 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-1740 cancelada. 189.186.20.144 628519b2-06af-4407-8ec9-eb7d5dec0886 2020-12-09 22:04:01.636679 47866 4816 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 1220\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3635\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1740\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.20.144 628519b2-06af-4407-8ec9-eb7d5dec0886 2020-12-09 22:04:01.656746 47867 2610 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.20.144 628519b2-06af-4407-8ec9-eb7d5dec0886 2020-12-09 22:04:01.679326 47868 3636 Sale \N \N 9 User \N create ---\ncustomer_id: 467\nuser_id: 9\nopen_cash_register_id: 1220\namount: !ruby/object:BigDecimal 18:0.1196E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1196E4\nstatus: 0\ndate_sale: 2020-12-09\nsaletype: 2\nseller_id: 30\nsale_code: PV1-V-1741\nexpiration_date: 2021-01-13\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 91a00155-87c1-4275-ab62-a6ef7b02a71a 2020-12-09 22:04:25.041831 47869 2610 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.20.144 91a00155-87c1-4275-ab62-a6ef7b02a71a 2020-12-09 22:04:25.072574 47870 4817 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1220\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3636\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1741\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1741 189.186.20.144 18e14d4a-4901-4ddc-b789-dae61eaa35b6 2020-12-09 22:04:30.253956 47871 3636 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.20.144 a1d0545e-fa49-4598-9136-bf7c1139b12e 2020-12-09 22:04:32.353561 47872 3637 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1220\namount: !ruby/object:BigDecimal 18:0.289E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.289E3\nstatus: 0\ndate_sale: 2020-12-09\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1742\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 d99dac11-1155-41d3-bf60-a1bbc7da5a0e 2020-12-09 22:22:14.614788 47873 2382 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.20.144 d99dac11-1155-41d3-bf60-a1bbc7da5a0e 2020-12-09 22:22:14.645615 47874 3637 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1742 cancelada. 189.186.20.144 27a5ad1a-1ba9-4780-9c6b-816e6f216eac 2020-12-09 22:23:54.056285 47875 2382 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.20.144 27a5ad1a-1ba9-4780-9c6b-816e6f216eac 2020-12-09 22:23:54.086099 47876 3638 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1220\namount: !ruby/object:BigDecimal 18:0.1485E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1485E4\nstatus: 0\ndate_sale: 2020-12-09\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1743\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 84fcdae4-2fe1-4d82-8d44-3da7a86fd134 2020-12-09 22:25:58.299983 47877 2382 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.20.144 84fcdae4-2fe1-4d82-8d44-3da7a86fd134 2020-12-09 22:25:58.331898 47878 2610 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.20.144 84fcdae4-2fe1-4d82-8d44-3da7a86fd134 2020-12-09 22:25:58.362917 47879 3638 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 738354ad-6caa-46f3-a370-328efd27cfc3 2020-12-09 22:26:02.70187 47880 4818 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1220\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1485E4\nmove_type: '1'\nsale_id: 3638\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1743\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1485E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1743 189.186.20.144 738354ad-6caa-46f3-a370-328efd27cfc3 2020-12-09 22:26:02.722936 47881 3639 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1220\namount: !ruby/object:BigDecimal 18:0.759E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2020-12-09\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1744\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 4c12e86a-058b-472d-ba39-ca57549f4f73 2020-12-09 22:34:19.434826 47882 2549 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.20.144 4c12e86a-058b-472d-ba39-ca57549f4f73 2020-12-09 22:34:19.459893 47883 3639 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 319b219e-49cc-4feb-a6ee-f0f9bcb21697 2020-12-09 22:34:48.415206 47884 4819 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1220\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.759E3\nmove_type: '1'\nsale_id: 3639\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1744\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.76E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1744 189.186.20.144 319b219e-49cc-4feb-a6ee-f0f9bcb21697 2020-12-09 22:34:48.440998 47885 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-09 18:16:40.426240000 Z\n- &1 2020-12-09 19:38:52.716050000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-09 22:41:11.423098801 Z\nsign_in_count:\n- 200\n- 201\n 402 \N 189.186.20.144 0506e55c-886a-45e3-90c2-4fb0062d0c04 2020-12-09 22:41:11.4299 47886 9 User \N \N 9 User \N update ---\nunique_session_id:\n- qpNYxqGhAJt4pVth4UEV\n- Zg1-6MrQMoa9EYrXHPN9\n 403 \N 189.186.20.144 0506e55c-886a-45e3-90c2-4fb0062d0c04 2020-12-09 22:41:11.450676 47887 468 Customer \N \N 9 User \N create ---\nnick_name: HERMINIA GAXIOLA\nphone: "(667) 329-5133"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente HERMINIA GAXIOLA fue registrado. 189.186.20.144 5afc6ee8-641c-466c-8817-34b8efaf8a1d 2020-12-09 22:43:53.789127 47888 3640 Sale \N \N 9 User \N create ---\ncustomer_id: 468\nuser_id: 9\nopen_cash_register_id: 1220\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-12-09\nsaletype: 2\nseller_id: 30\nsale_code: PV1-V-1745\nexpiration_date: 2021-01-13\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 69d63854-85b6-494c-b689-8b850e752c9f 2020-12-09 22:44:09.941141 47889 810 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 18 \N 189.186.20.144 69d63854-85b6-494c-b689-8b850e752c9f 2020-12-09 22:44:09.972392 47890 4820 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1220\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 3640\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1745\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1745 189.186.20.144 de7904e6-6e4c-4171-a21c-6b93fb88153f 2020-12-09 22:44:17.03306 47891 3640 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.20.144 791d27c7-8279-4a77-b595-f99a052a81bb 2020-12-09 22:44:19.177201 47892 3641 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1220\namount: !ruby/object:BigDecimal 18:0.1658E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1658E4\nstatus: 0\ndate_sale: 2020-12-09\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1746\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 b535a1d2-d652-41f0-b82a-aed46f546ca6 2020-12-09 23:04:13.369306 47893 2537 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.20.144 b535a1d2-d652-41f0-b82a-aed46f546ca6 2020-12-09 23:04:13.400548 47894 2544 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.20.144 b535a1d2-d652-41f0-b82a-aed46f546ca6 2020-12-09 23:04:13.430547 47895 3641 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 7051407b-5ea5-49b7-a7bf-ca7f5020adea 2020-12-09 23:05:01.80253 47896 4821 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1220\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1658E4\nmove_type: '1'\nsale_id: 3641\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1746\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.18E4\nchange: !ruby/object:BigDecimal 18:0.142E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1746 189.186.20.144 7051407b-5ea5-49b7-a7bf-ca7f5020adea 2020-12-09 23:05:01.824535 47897 4822 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1086\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 3067\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.20.144 15c5a90d-d7ce-4eb6-98b0-6d28f91436f4 2020-12-09 23:09:05.484048 47898 3067 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 15c5a90d-d7ce-4eb6-98b0-6d28f91436f4 2020-12-09 23:09:05.509525 47899 4822 CashRegistersMove \N \N 9 User \N update ---\nopen_cash_register_id:\n- 1086\n- 1220\n 2 movimiento de efectivo por venta con folio PV1-V-1467 189.186.20.144 15c5a90d-d7ce-4eb6-98b0-6d28f91436f4 2020-12-09 23:09:05.523477 47900 4823 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1220\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.896E3\nmove_type: '1'\nsale_id: 3636\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.4E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1741 189.186.20.144 d2d6b218-a59b-4e1e-b5d7-b904422789b0 2020-12-09 23:12:03.406127 47901 3636 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 b3570f05-48ad-42df-a119-6ba70916a01f 2020-12-09 23:12:06.993051 47902 469 Customer \N \N 21 User \N create ---\nnick_name: DULCE MARIA\nphone: "(667) 995-0657"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DULCE MARIA fue registrado. 189.186.100.196 de8dbe70-dc56-4d0a-aad1-76a111b9c978 2020-12-09 23:17:26.183557 47924 1221 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1431E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1431.0 189.186.100.196 44d3e529-13a6-4bac-b044-9fb087b983e2 2020-12-10 17:29:33.003773 47903 3642 Sale \N \N 21 User \N create ---\ncustomer_id: 469\nuser_id: 21\nopen_cash_register_id: 1219\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-12-09\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-976\nexpiration_date: 2021-01-13\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 ff9b0715-cd61-4e4f-9d3e-41467298527f 2020-12-09 23:18:09.389271 47904 2506 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 14 \N 189.186.100.196 ff9b0715-cd61-4e4f-9d3e-41467298527f 2020-12-09 23:18:09.414631 47905 4824 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1219\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3642\ncardnumber: 5555\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-976\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-976 189.186.100.196 661317f9-b5fa-4a46-ad69-7f33ec179f38 2020-12-09 23:19:02.278631 47906 3642 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.100.196 483a8f50-72e7-48d7-82a4-1bf65c1b9b70 2020-12-09 23:19:05.608846 47907 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-09 19:36:35.988314000 Z\n- &1 2020-12-09 21:36:45.840001000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-10 00:20:06.578366820 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934297\n mask_addr: 4294967295\nsign_in_count:\n- 2130\n- 2131\n 4262 \N 200.68.135.89 9bb19490-7ee6-4403-b35c-03adeeb436ce 2020-12-10 00:20:06.585778 47908 4 User \N \N 4 User \N update ---\nunique_session_id:\n- RhgQHoDH42qbKvQCDsMG\n- QPUV5oQKs4Gy77_2fjeg\n 4263 \N 200.68.135.89 9bb19490-7ee6-4403-b35c-03adeeb436ce 2020-12-10 00:20:06.603852 47909 4825 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1220\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3545\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1691 189.186.20.144 9736df86-7d78-43d1-827a-59edeba963ce 2020-12-10 00:27:10.5529 47910 4826 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1220\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3397E4\nmove_type: '1'\nsale_id: 3384\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.34E4\nchange: !ruby/object:BigDecimal 18:0.3E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1616 189.186.20.144 59448ef1-d9e8-452e-a92a-5691224b60cb 2020-12-10 01:17:01.012904 47911 3384 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 0c6563f1-97a6-404a-a5d9-5b31c1833665 2020-12-10 01:17:02.734507 47912 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-07 22:47:36.286034000 Z\n- &1 2020-12-07 23:58:23.078226000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-10 01:37:24.447472104 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729535\n mask_addr: 4294967295\nsign_in_count:\n- 422\n- 423\n 846 \N 201.175.157.127 79bfd8dc-4349-48d9-9e88-e81ea424eea5 2020-12-10 01:37:24.497227 47913 1 User \N \N 1 User \N update ---\nunique_session_id:\n- SyATFkJmei3VpsdpKvc3\n- oy4vBnFosJhASMHxsq5c\n 847 \N 201.175.157.127 79bfd8dc-4349-48d9-9e88-e81ea424eea5 2020-12-10 01:37:24.523965 47914 3643 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1219\namount: !ruby/object:BigDecimal 18:0.529E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.529E3\nstatus: 0\ndate_sale: 2020-12-09\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-977\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 a0885a19-bae8-4760-b494-854691d2addc 2020-12-10 01:38:05.926742 47915 2206 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.100.196 a0885a19-bae8-4760-b494-854691d2addc 2020-12-10 01:38:05.961895 47916 3643 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.100.196 19cc1149-ea9c-4f42-b039-3f4f0d22d8b1 2020-12-10 01:38:18.921002 47917 4827 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1219\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.529E3\nmove_type: '1'\nsale_id: 3643\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-977\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.53E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-977 189.186.100.196 19cc1149-ea9c-4f42-b039-3f4f0d22d8b1 2020-12-10 01:38:18.944972 47918 1244 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 1220\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.13891E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.138E5\ncash_fund: !ruby/object:BigDecimal 18:0.1392E4\nphysical_cash: !ruby/object:BigDecimal 18:0.15192E5\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.144 dc1198e7-c7a6-4220-b0c7-c994b1bb6efe 2020-12-10 01:43:11.491999 47919 1220 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.144 dc1198e7-c7a6-4220-b0c7-c994b1bb6efe 2020-12-10 01:43:11.509152 47920 366 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1219\nquantity: !ruby/object:BigDecimal 18:0.3E2\nstatus: 1\nobservations: PAGO DE COPIAS\nexpense_date: 2020-12-09\nexpense_code: PV3-E-51\n 1 Egreso por 30.0 registrado 189.186.100.196 053ceade-38f6-4d3d-89a3-7095aee2f873 2020-12-10 01:54:35.576174 47921 4828 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1219\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 366\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.100.196 053ceade-38f6-4d3d-89a3-7095aee2f873 2020-12-10 01:54:35.601706 47922 1245 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1219\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1728E4\namount_out: !ruby/object:BigDecimal 18:0.3E2\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1431E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1431E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.100.196 58eac598-c383-484c-8954-179f08a60cd5 2020-12-10 01:57:44.891184 47923 1219 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.100.196 58eac598-c383-484c-8954-179f08a60cd5 2020-12-10 01:57:44.906445 47925 470 Customer \N \N 21 User \N create ---\nnick_name: RAFAELA QUINTERO\nphone: "(667) 356-7392"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente RAFAELA QUINTERO fue registrado. 189.186.100.196 937ee045-a9c4-4ae0-ae7d-490b6fc7df20 2020-12-10 17:45:50.207003 47926 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-07 17:56:35.269173000 Z\n- &1 2020-12-08 20:05:13.843047000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-10 17:47:32.952794931 Z\nsign_in_count:\n- 725\n- 726\n 1455 \N 189.186.20.144 0dd64a39-c9da-41b4-ab56-6e3c54dc48f8 2020-12-10 17:47:32.960516 47927 2 User \N \N 2 User \N update ---\nunique_session_id:\n- pYzzm63DYLx45UiDGRbX\n- mM3kDZS7gX2jTpresfgu\n 1456 \N 189.186.20.144 0dd64a39-c9da-41b4-ab56-6e3c54dc48f8 2020-12-10 17:47:32.978993 47928 1222 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1392E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1392.0 189.186.20.144 05604d04-a686-4068-ba46-a82535a4281b 2020-12-10 18:01:39.158452 47929 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-09 21:36:45.840001000 Z\n- &1 2020-12-10 00:20:06.578366000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-10 18:54:06.325268238 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934297\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946485\n mask_addr: 4294967295\nsign_in_count:\n- 2131\n- 2132\n 4264 \N 200.68.182.245 d8499a64-072e-42e4-a6ce-7e204d937838 2020-12-10 18:54:06.332402 47930 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QPUV5oQKs4Gy77_2fjeg\n- gyELf1fidyrxj1RabhaZ\n 4265 \N 200.68.182.245 d8499a64-072e-42e4-a6ce-7e204d937838 2020-12-10 18:54:06.351442 47931 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-10 00:20:06.578366000 Z\n- &1 2020-12-10 18:54:06.325268000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-10 19:55:30.974120797 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934297\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946485\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946485\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\nsign_in_count:\n- 2132\n- 2133\n 4266 \N 189.186.100.196 a9b580bd-d3a3-453d-b0fe-9485445b64d8 2020-12-10 19:55:30.983119 47932 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gyELf1fidyrxj1RabhaZ\n- HjWGjqKpkb5HQcJ7Wwqf\n 4267 \N 189.186.100.196 a9b580bd-d3a3-453d-b0fe-9485445b64d8 2020-12-10 19:55:31.007047 47933 750 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-10\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.100.196 ca36d1c9-8cb4-444b-9e52-36ea59bff462 2020-12-10 19:56:14.218856 47934 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-08 01:48:35.936488000 Z\n- &1 2020-12-09 19:38:18.080153000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-10 19:56:47.041199973 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\nsign_in_count:\n- 386\n- 387\n 775 \N 189.186.100.196 37755d66-0aff-4705-9ab7-5c9bf929212f 2020-12-10 19:56:47.052583 47935 18 User \N \N 18 User \N update ---\nunique_session_id:\n- e9xSBskt9qKBsL5Q-fnF\n- jogSm2FoR7zt-Rsshgix\n 776 \N 189.186.100.196 37755d66-0aff-4705-9ab7-5c9bf929212f 2020-12-10 19:56:47.073585 47936 750 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-10\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.100.196 9af26cbb-0157-4987-9708-871f1fb426f6 2020-12-10 19:57:03.733026 47937 2636 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 904\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.100.196 9af26cbb-0157-4987-9708-871f1fb426f6 2020-12-10 19:57:03.758981 47938 3644 Sale \N \N 18 User \N create ---\ncustomer_id: 470\nuser_id: 18\nopen_cash_register_id: 1221\namount: !ruby/object:BigDecimal 18:0.789E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.789E3\nstatus: 0\ndate_sale: 2020-12-10\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-978\nexpiration_date: 2021-01-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 576e38b1-81ae-4611-9e68-35f7bb42ecc5 2020-12-10 19:57:48.244991 47939 2636 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.100.196 576e38b1-81ae-4611-9e68-35f7bb42ecc5 2020-12-10 19:57:48.273955 47940 4829 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1221\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E3\nmove_type: '1'\nsale_id: 3644\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-978\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-978 189.186.100.196 f18ce257-8a28-40f9-9ce8-18a082f132cf 2020-12-10 19:58:11.156573 47941 3644 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.100.196 3e03441c-7c96-45a3-977c-a4fabd15bde1 2020-12-10 19:58:12.736851 47942 4830 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1221\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 3342\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-832 189.186.100.196 6391bab8-f6fd-46ce-8da1-2495146b5aff 2020-12-10 20:24:05.345782 47943 3342 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.100.196 fdfc8330-966d-42ee-8dc2-c2a1d4c567b3 2020-12-10 20:24:08.565138 47944 3645 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1221\namount: !ruby/object:BigDecimal 18:0.3597E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3597E4\nstatus: 0\ndate_sale: 2020-12-10\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-979\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 1d339817-0c7c-4b00-bc25-40604a0aca73 2020-12-10 21:21:37.830318 47945 2618 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.100.196 1d339817-0c7c-4b00-bc25-40604a0aca73 2020-12-10 21:21:37.857858 47946 2582 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 3 \N 189.186.100.196 1d339817-0c7c-4b00-bc25-40604a0aca73 2020-12-10 21:21:37.882054 47949 4831 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1221\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3597E4\nmove_type: '1'\nsale_id: 3645\ncardnumber: 1225\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-979\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-979 189.186.100.196 14763b61-8264-4112-bd89-c1ffb1d09422 2020-12-10 21:22:42.878325 47950 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-10 18:54:06.325268000 Z\n- &1 2020-12-10 19:55:30.974120000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-10 21:25:12.590685402 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946485\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\nsign_in_count:\n- 2133\n- 2134\n 4268 \N 189.186.100.196 438274c7-5399-4dc8-b592-c5b79ba39622 2020-12-10 21:25:12.602846 47951 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HjWGjqKpkb5HQcJ7Wwqf\n- nLD1hVFT9ykMCLc7_sYC\n 4269 \N 189.186.100.196 438274c7-5399-4dc8-b592-c5b79ba39622 2020-12-10 21:25:12.624312 47952 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-09 19:38:18.080153000 Z\n- &1 2020-12-10 19:56:47.041199000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-10 21:36:36.870161423 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\nsign_in_count:\n- 387\n- 388\n 777 \N 189.186.100.196 a9c7a8bb-860a-489c-a9fb-65fd24b78000 2020-12-10 21:36:36.877981 47953 18 User \N \N 18 User \N update ---\nunique_session_id:\n- jogSm2FoR7zt-Rsshgix\n- McRmnjiyrZtuYKXtuG1M\n 778 \N 189.186.100.196 a9c7a8bb-860a-489c-a9fb-65fd24b78000 2020-12-10 21:36:36.898208 47954 471 Customer \N \N 18 User \N create ---\nnick_name: IRMA PAYAN\nphone: "(667) 239-0709"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente IRMA PAYAN fue registrado. 189.186.100.196 01dc80fa-9a2c-44dd-8c78-4033dbaa368c 2020-12-10 21:36:58.30836 47955 3646 Sale \N \N 18 User \N create ---\ncustomer_id: 471\nuser_id: 18\nopen_cash_register_id: 1221\namount: !ruby/object:BigDecimal 18:0.998E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.998E3\nstatus: 0\ndate_sale: 2020-12-10\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-980\nexpiration_date: 2021-01-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 e6d87dc5-cb67-4f9f-8a4a-493da6bfeadf 2020-12-10 21:38:08.798397 47956 2571 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.100.196 e6d87dc5-cb67-4f9f-8a4a-493da6bfeadf 2020-12-10 21:38:08.831707 47957 4832 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1221\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 3646\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-980\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-980 189.186.100.196 4ac60307-ca0b-4d73-a701-6485bfe95d5b 2020-12-10 21:38:24.918873 47958 3646 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.100.196 2372e80b-a1e1-4c90-b058-ee8dedd14da9 2020-12-10 21:38:31.519706 47959 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-10 19:55:30.974120000 Z\n- &1 2020-12-10 21:25:12.590685000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-10 22:08:12.791290316 Z\nsign_in_count:\n- 2134\n- 2135\n 4270 \N 189.186.100.196 b294b8f3-228c-46d7-bc8c-259573c654d4 2020-12-10 22:08:12.797547 47960 4 User \N \N 4 User \N update ---\nunique_session_id:\n- nLD1hVFT9ykMCLc7_sYC\n- yvFqewsMeF1nscYbCo4S\n 4271 \N 189.186.100.196 b294b8f3-228c-46d7-bc8c-259573c654d4 2020-12-10 22:08:12.815366 47961 3647 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1222\namount: !ruby/object:BigDecimal 18:0.1234E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1234E4\nstatus: 0\ndate_sale: 2020-12-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1747\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 772cd180-6003-4c5b-b217-174d173f0223 2020-12-10 22:10:26.005406 47962 2077 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 189.186.20.144 772cd180-6003-4c5b-b217-174d173f0223 2020-12-10 22:10:26.036827 47963 2609 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.20.144 772cd180-6003-4c5b-b217-174d173f0223 2020-12-10 22:10:26.067063 47964 3647 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 6b077d79-c404-4ada-8709-a67f2f56f6c9 2020-12-10 22:10:51.937627 47965 4833 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1222\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1234E4\nmove_type: '1'\nsale_id: 3647\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1747\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1234E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1747 189.186.20.144 6b077d79-c404-4ada-8709-a67f2f56f6c9 2020-12-10 22:10:51.961944 47966 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-10 21:25:12.590685000 Z\n- &1 2020-12-10 22:08:12.791290000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-10 22:43:53.694245797 Z\nsign_in_count:\n- 2135\n- 2136\n 4272 \N 189.186.100.196 50ea0932-5f18-4c8b-8442-362bdd168dfc 2020-12-10 22:43:53.714009 47967 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yvFqewsMeF1nscYbCo4S\n- 4BtbvFuDqRh5Kp2szu7K\n 4273 \N 189.186.100.196 50ea0932-5f18-4c8b-8442-362bdd168dfc 2020-12-10 22:43:53.740095 47968 3648 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1222\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-12-10\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1748\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 3f030beb-f775-4feb-9612-cc6839606e26 2020-12-10 23:11:24.097403 47969 2228 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.20.144 3f030beb-f775-4feb-9612-cc6839606e26 2020-12-10 23:11:24.133311 47970 3648 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 45cf81d1-c5ef-4001-9554-3ddf4bccddac 2020-12-10 23:11:28.130806 47991 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-10 21:36:36.870161000 Z\n- &1 2020-12-11 00:28:53.777949000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-11 01:09:10.056864358 Z\nsign_in_count:\n- 389\n- 390\n 781 \N 189.186.100.196 bdf578b2-0ee7-4d88-8c18-90ad022e26ca 2020-12-11 01:09:10.062199 47992 18 User \N \N 18 User \N update ---\nunique_session_id:\n- yyrzZD6djxXWfGxcgJau\n- eHvzpVzUmWv26qo3_ait\n 782 \N 189.186.100.196 bdf578b2-0ee7-4d88-8c18-90ad022e26ca 2020-12-11 01:09:10.078409 47971 4834 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1222\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 3648\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1748\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1748 189.186.20.144 45cf81d1-c5ef-4001-9554-3ddf4bccddac 2020-12-10 23:11:28.154542 47972 3649 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1222\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-10\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1749\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 8d7a1029-f859-44ef-9153-63c5627bd446 2020-12-10 23:15:21.851981 47973 2512 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.20.144 8d7a1029-f859-44ef-9153-63c5627bd446 2020-12-10 23:15:21.894945 47974 3649 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 d5789d36-4ffd-47a8-bc1f-108768fc2b92 2020-12-10 23:16:34.17566 47975 4835 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1222\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3649\ncardnumber: 3405\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1749\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1749 189.186.20.144 d5789d36-4ffd-47a8-bc1f-108768fc2b92 2020-12-10 23:16:34.196176 47976 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-07 23:58:23.078226000 Z\n- &1 2020-12-10 01:37:24.447472000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-10 23:38:35.917434752 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729535\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729535\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 423\n- 424\n 848 \N 189.186.20.144 a1b9019a-9bde-45db-b7cd-a4e5fd51dc8c 2020-12-10 23:38:35.944638 47977 1 User \N \N 1 User \N update ---\nunique_session_id:\n- oy4vBnFosJhASMHxsq5c\n- si-vwgK9f8xyUyNGPU96\n 849 \N 189.186.20.144 a1b9019a-9bde-45db-b7cd-a4e5fd51dc8c 2020-12-10 23:38:35.969212 47978 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-10 22:08:12.791290000 Z\n- &1 2020-12-10 22:43:53.694245000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-10 23:58:04.258741398 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945640\n mask_addr: 4294967295\nsign_in_count:\n- 2136\n- 2137\n 4274 \N 200.68.179.168 35533869-abfe-4fd3-8e23-e3250a383c3e 2020-12-10 23:58:04.266305 47979 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4BtbvFuDqRh5Kp2szu7K\n- zpDJiErxoSgpcZCjuoo-\n 4275 \N 200.68.179.168 35533869-abfe-4fd3-8e23-e3250a383c3e 2020-12-10 23:58:04.284709 47980 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-10 19:56:47.041199000 Z\n- &1 2020-12-10 21:36:36.870161000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-11 00:28:53.777949207 Z\nsign_in_count:\n- 388\n- 389\n 779 \N 189.186.100.196 34cc887b-96ea-47fb-819a-ece3f11b9b4a 2020-12-11 00:28:53.78546 47981 18 User \N \N 18 User \N update ---\nunique_session_id:\n- McRmnjiyrZtuYKXtuG1M\n- yyrzZD6djxXWfGxcgJau\n 780 \N 189.186.100.196 34cc887b-96ea-47fb-819a-ece3f11b9b4a 2020-12-11 00:28:53.799174 47982 472 Customer \N \N 18 User \N create ---\nnick_name: DUNIA LOPEZ\nphone: "(667) 144-1976"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente DUNIA LOPEZ fue registrado. 189.186.100.196 32f14eb2-d947-46c6-9892-f71988aaef6e 2020-12-11 00:29:27.199453 47983 3650 Sale \N \N 18 User \N create ---\ncustomer_id: 472\nuser_id: 18\nopen_cash_register_id: 1221\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-10\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-981\nexpiration_date: 2021-01-14\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 d80d38a5-867d-4cd3-b80d-9b4fd16a669e 2020-12-11 00:29:54.061521 47984 2631 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.100.196 d80d38a5-867d-4cd3-b80d-9b4fd16a669e 2020-12-11 00:29:54.091278 47985 4836 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1221\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3650\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-981\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-981 189.186.100.196 94f284f7-5910-4140-9cfe-f42c432db1c9 2020-12-11 00:30:05.290356 47986 3650 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.100.196 89b3bb41-ab32-4f6a-925a-c58c6b352aea 2020-12-11 00:30:07.029339 47987 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-10 22:43:53.694245000 Z\n- &1 2020-12-10 23:58:04.258741000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-11 00:52:25.910217579 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945640\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945640\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945593\n mask_addr: 4294967295\nsign_in_count:\n- 2137\n- 2138\n 4276 \N 200.68.179.121 beaa0f1e-6054-4448-ba5c-bb44a99069aa 2020-12-11 00:52:25.929878 47988 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zpDJiErxoSgpcZCjuoo-\n- 7dw3Q25gsPobsxRhCSWx\n 4277 \N 200.68.179.121 beaa0f1e-6054-4448-ba5c-bb44a99069aa 2020-12-11 00:52:25.955858 47989 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-10 23:58:04.258741000 Z\n- &1 2020-12-11 00:52:25.910217000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-11 01:04:27.388582770 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945640\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945593\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945593\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\nsign_in_count:\n- 2138\n- 2139\n 4278 \N 189.186.100.196 7fa223c5-6f29-46bc-8caa-09480a993289 2020-12-11 01:04:27.398444 47990 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7dw3Q25gsPobsxRhCSWx\n- ydCE3AnKzM2yNR8NiAcW\n 4279 \N 189.186.100.196 7fa223c5-6f29-46bc-8caa-09480a993289 2020-12-11 01:04:27.426888 48020 1222 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.144 2295738b-3f8e-4f39-8937-8240a8c8fb54 2020-12-11 02:26:09.703089 47993 3651 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1221\namount: !ruby/object:BigDecimal 18:0.1198E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1198E4\nstatus: 0\ndate_sale: 2020-12-10\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-982\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 19d43029-c41d-4d21-b96c-b32cd49adf66 2020-12-11 01:15:26.181973 47994 2591 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.100.196 19d43029-c41d-4d21-b96c-b32cd49adf66 2020-12-11 01:15:26.214998 47995 2571 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.100.196 19d43029-c41d-4d21-b96c-b32cd49adf66 2020-12-11 01:15:26.26081 47996 3651 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.100.196 38c3944e-3bdc-4256-a863-ccce11f635f1 2020-12-11 01:15:30.084736 47997 4837 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1221\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1198E4\nmove_type: '1'\nsale_id: 3651\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-982\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-982 189.186.100.196 38c3944e-3bdc-4256-a863-ccce11f635f1 2020-12-11 01:15:30.114249 47998 3652 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1222\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-12-10\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1750\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 bb068d5c-d914-4f0a-8406-75c361a802e7 2020-12-11 01:19:41.247306 47999 2519 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.20.144 bb068d5c-d914-4f0a-8406-75c361a802e7 2020-12-11 01:19:41.280479 48000 3652 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 2653b8e2-77fb-4deb-b6f5-99470af7ffa0 2020-12-11 01:19:55.363858 48001 4838 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1222\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 3652\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1750\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1750 189.186.20.144 2653b8e2-77fb-4deb-b6f5-99470af7ffa0 2020-12-11 01:19:55.385491 48002 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-07 17:16:10.587043000 Z\n- &1 2020-12-08 17:50:17.863992000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-11 01:37:14.194502909 Z\nsign_in_count:\n- 360\n- 361\n 723 \N 189.186.100.196 dca39aff-b5e1-450f-ab53-62e29a435b0f 2020-12-11 01:37:14.200603 48003 21 User \N \N 21 User \N update ---\nunique_session_id:\n- jWXTTgdYjPtU99sHTRiR\n- ms3keA7AAy647Vhq5H7k\n 724 \N 189.186.100.196 dca39aff-b5e1-450f-ab53-62e29a435b0f 2020-12-11 01:37:14.214318 48004 2616 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.100.196 29c9262f-a25f-43c6-8ba8-5ee2b95e1980 2020-12-11 01:44:15.634476 48005 2615 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.100.196 c10f3215-76b4-4f1f-865c-0dfd607f7552 2020-12-11 01:45:06.222906 48006 2615 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.100.196 b4d487b8-4fdc-4e47-9486-9020f25d1545 2020-12-11 01:45:10.628458 48007 2615 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.100.196 9059b04f-8838-41b0-9fa4-f6c490f59dc5 2020-12-11 01:45:18.191311 48008 2615 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.100.196 b2b49ddd-62cc-441d-b36a-dca68e3012c0 2020-12-11 01:45:20.026986 48009 2599 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.100.196 f367d567-6e9d-4ea8-a508-4517f9f482c5 2020-12-11 01:46:38.287094 48010 2599 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.100.196 6ff0e977-f2d9-4d17-b570-2fbcb0b4697a 2020-12-11 01:46:49.212423 48011 2599 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.100.196 7ff95656-4567-432c-af70-a831a25b59d7 2020-12-11 01:46:52.884146 48012 2599 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.100.196 32f9016c-db16-46c8-988e-65f899002abd 2020-12-11 01:46:54.144315 48013 2599 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.100.196 b92dd8f4-eab4-4921-b5d7-30af7a7842c6 2020-12-11 01:46:59.825907 48014 2599 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.100.196 b02d7737-df85-4fdd-83f7-4047cd9cb8bc 2020-12-11 01:47:03.980343 48015 751 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-12-10\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.100.196 37f3b2d7-964a-4288-b687-cd84577f4537 2020-12-11 01:51:17.595048 48016 2582 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.100.196 eec90290-b8ba-4782-8aaa-dca934527dea 2020-12-11 01:52:12.758609 48017 2582 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.100.196 64caf287-f0bd-4a21-a118-06662c5f1775 2020-12-11 01:52:17.581094 48018 752 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-12-10\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.100.196 2aedd03e-d7f3-481c-9f7a-cfe80f753d4a 2020-12-11 01:54:05.960893 48019 1246 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1222\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4131E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.29E4\ncash_fund: !ruby/object:BigDecimal 18:0.1224E4\nphysical_cash: !ruby/object:BigDecimal 18:0.4124E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.144 2295738b-3f8e-4f39-8937-8240a8c8fb54 2020-12-11 02:26:09.6868 48021 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-11 00:52:25.910217000 Z\n- &1 2020-12-11 01:04:27.388582000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-11 02:29:13.617236754 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945593\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945593\n mask_addr: 4294967295\nsign_in_count:\n- 2139\n- 2140\n 4280 \N 200.68.179.121 33b25ee1-2aee-4e36-8e5b-994a4e9ba41e 2020-12-11 02:29:13.626469 48022 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ydCE3AnKzM2yNR8NiAcW\n- 9LCfXFLjawVKF26WiqWo\n 4281 \N 200.68.179.121 33b25ee1-2aee-4e36-8e5b-994a4e9ba41e 2020-12-11 02:29:13.648526 48023 3653 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1221\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-10\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-983\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.100.196 52fba62b-0403-43b1-92c4-18089ecbfbdb 2020-12-11 02:39:10.375301 48024 2620 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.100.196 52fba62b-0403-43b1-92c4-18089ecbfbdb 2020-12-11 02:39:10.410234 48025 3653 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.100.196 86a0aedd-2ef3-48b6-b198-2d28b4949ac3 2020-12-11 02:40:11.11345 48026 4839 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1221\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 3653\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-983\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-983 189.186.100.196 86a0aedd-2ef3-48b6-b198-2d28b4949ac3 2020-12-11 02:40:11.751576 48027 1247 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1221\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.8443E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.38E4\ncash_fund: !ruby/object:BigDecimal 18:0.2477E4\nphysical_cash: !ruby/object:BigDecimal 18:0.6277E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.100.196 86fb1fad-4e7c-4a2e-b0b5-76522102f4ef 2020-12-11 02:46:34.436562 48028 1221 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.100.196 86fb1fad-4e7c-4a2e-b0b5-76522102f4ef 2020-12-11 02:46:34.450123 48029 1248 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1221\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.8443E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.38E4\ncash_fund: !ruby/object:BigDecimal 18:0.2477E4\nphysical_cash: !ruby/object:BigDecimal 18:0.6277E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.100.196 02d148d9-748f-454f-a04e-242f5df48d95 2020-12-11 02:46:36.377569 48030 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-08 20:05:13.843047000 Z\n- &1 2020-12-10 17:47:32.952794000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-11 18:05:47.039243659 Z\nsign_in_count:\n- 726\n- 727\n 1457 \N 189.186.20.144 a27df65a-7831-4103-8138-c84124538437 2020-12-11 18:05:47.070471 48031 2 User \N \N 2 User \N update ---\nunique_session_id:\n- mM3kDZS7gX2jTpresfgu\n- pjiQzD-Jci2gfsLg4e5B\n 1458 \N 189.186.20.144 a27df65a-7831-4103-8138-c84124538437 2020-12-11 18:05:47.095895 48032 1223 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1224E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1224.0 189.186.20.144 2137e1db-94f1-4fb3-bfcb-4454367d1f15 2020-12-11 18:06:26.046397 48033 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-08 17:50:17.863992000 Z\n- &1 2020-12-11 01:37:14.194502000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-11 18:56:16.569290592 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\nsign_in_count:\n- 361\n- 362\n 725 \N 189.186.89.234 94f8a2f5-1164-43e2-8cc8-bac26af63d43 2020-12-11 18:56:16.59853 48034 21 User \N \N 21 User \N update ---\nunique_session_id:\n- ms3keA7AAy647Vhq5H7k\n- BB3Cq9Bf4rEFRBdSRL_M\n 726 \N 189.186.89.234 94f8a2f5-1164-43e2-8cc8-bac26af63d43 2020-12-11 18:56:16.620389 48035 1224 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.2477E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 2477.0 189.186.89.234 1d0f091e-2966-41f8-9b1b-813d2a7b861d 2020-12-11 18:57:15.443193 48036 3654 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1223\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.479E3\nstatus: 0\ndate_sale: 2020-12-11\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1751\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 6e68ae5e-bc45-4dbc-8cac-09fe968e027c 2020-12-11 20:04:34.537209 48037 1635 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.20.144 6e68ae5e-bc45-4dbc-8cac-09fe968e027c 2020-12-11 20:04:34.588329 48038 3654 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 6d884b0d-3be2-4dec-bf4f-a0a9a0273c28 2020-12-11 20:04:42.569835 48039 4840 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1223\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.479E3\nmove_type: '1'\nsale_id: 3654\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1751\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.479E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1751 189.186.20.144 6d884b0d-3be2-4dec-bf4f-a0a9a0273c28 2020-12-11 20:04:42.593396 48040 751 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-11\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.20.144 d702555a-fcba-4f86-a38a-d51eec8a4af6 2020-12-11 20:44:26.213048 48041 2556 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 189.186.20.144 d702555a-fcba-4f86-a38a-d51eec8a4af6 2020-12-11 20:44:26.241262 48042 2610 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.20.144 d702555a-fcba-4f86-a38a-d51eec8a4af6 2020-12-11 20:44:26.272761 48043 2611 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.20.144 d702555a-fcba-4f86-a38a-d51eec8a4af6 2020-12-11 20:44:26.293284 48044 1591 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.20.144 7dec729d-572a-4bc1-ac75-06a329b734ba 2020-12-11 20:45:44.118009 48045 2551 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 189.186.20.144 611d4f8d-6e0f-4191-b14e-6326a60511d7 2020-12-11 20:45:52.244553 48046 2518 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.20.144 449bf851-731d-4940-9196-47cacb3ab92b 2020-12-11 20:45:59.567693 48047 2536 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.20.144 034c373b-d7c0-48d7-b66c-b56574013b1d 2020-12-11 20:46:08.935206 48048 2547 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.20.144 bae4b017-128b-45e6-b7a9-e3ecd1cdd693 2020-12-11 20:46:24.397993 48049 1591 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.20.144 a136fb0d-c8dc-4b8f-b9cb-c406753f9c44 2020-12-11 20:46:30.696618 48050 2551 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.20.144 0944ea82-38fc-4c3f-ba53-33952ba3ea65 2020-12-11 20:46:34.446417 48051 2518 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.20.144 226d7c7f-0b28-4469-8714-ca346336dc7e 2020-12-11 20:47:08.643706 48052 2536 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.20.144 cdcfc187-c7f1-42aa-b834-d43b0fea2c6e 2020-12-11 20:47:12.544305 48053 2547 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.20.144 4d35fae0-abc0-4427-b5ce-6169c1cbdb81 2020-12-11 20:47:37.395627 48054 753 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-11\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.20.144 efbb38d3-bb3e-46e4-96d7-908a4fe34e05 2020-12-11 20:47:43.726797 48055 3655 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1223\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2020-12-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1752\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 e9ac4ce0-43a7-473c-8460-8e2449fa638f 2020-12-11 21:02:50.922213 48056 1045 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 15 \N 189.186.20.144 e9ac4ce0-43a7-473c-8460-8e2449fa638f 2020-12-11 21:02:50.964956 48057 3655 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 f3a200b2-dfd8-4f93-9dc1-fba8544c7cac 2020-12-11 21:03:25.320718 48058 4841 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1223\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 3655\ncardnumber: 2998\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1752\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1752 189.186.20.144 f3a200b2-dfd8-4f93-9dc1-fba8544c7cac 2020-12-11 21:03:25.36079 48059 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-11 01:04:27.388582000 Z\n- &1 2020-12-11 02:29:13.617236000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-11 21:20:17.624775535 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945593\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945593\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\nsign_in_count:\n- 2140\n- 2141\n 4282 \N 189.186.89.234 e24c846a-df45-4218-acfa-0befd08956ed 2020-12-11 21:20:17.656684 48060 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9LCfXFLjawVKF26WiqWo\n- aVYBz2LkxpHurtscvbc8\n 4283 \N 189.186.89.234 e24c846a-df45-4218-acfa-0befd08956ed 2020-12-11 21:20:17.692165 48061 1407 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.89.234 d51516ee-97bb-41b8-bc6d-d95272b8ea69 2020-12-11 21:29:28.193641 48062 1407 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.89.234 1ce4307f-e03d-4a1d-b4bf-0de34448ea87 2020-12-11 21:29:32.516605 48063 754 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-11\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.89.234 de241909-a637-43e8-a559-9dd36b0f8f5c 2020-12-11 21:29:33.529344 48064 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-11 00:28:53.777949000 Z\n- &1 2020-12-11 01:09:10.056864000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-11 21:29:58.528104936 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\nsign_in_count:\n- 390\n- 391\n 783 \N 189.186.89.234 ecd8467b-734c-42b5-a189-9398b2a8ee36 2020-12-11 21:29:58.535851 48065 18 User \N \N 18 User \N update ---\nunique_session_id:\n- eHvzpVzUmWv26qo3_ait\n- YKPjYuZRmPHF_a8pJJBC\n 784 \N 189.186.89.234 ecd8467b-734c-42b5-a189-9398b2a8ee36 2020-12-11 21:29:58.55294 48066 754 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-11\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.89.234 b59a4168-e835-460a-8f2e-a27b4de6ac4e 2020-12-11 21:30:16.50998 48067 2637 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 962\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.6E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.89.234 b59a4168-e835-460a-8f2e-a27b4de6ac4e 2020-12-11 21:30:16.536022 48068 3656 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1224\namount: !ruby/object:BigDecimal 18:0.1048E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1048E4\nstatus: 0\ndate_sale: 2020-12-11\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-984\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 c6ea14c4-69c1-48eb-9f6c-d3b006347932 2020-12-11 21:32:01.397086 48069 2637 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.89.234 c6ea14c4-69c1-48eb-9f6c-d3b006347932 2020-12-11 21:32:01.431076 48070 2438 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.89.234 c6ea14c4-69c1-48eb-9f6c-d3b006347932 2020-12-11 21:32:01.464439 48072 4842 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1224\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1048E4\nmove_type: '1'\nsale_id: 3656\ncardnumber: 1552\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-984\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-984 189.186.89.234 053ea428-ac71-4a2d-b923-79a846e5dfcb 2020-12-11 21:32:11.511496 48073 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-11 02:29:13.617236000 Z\n- &1 2020-12-11 21:20:17.624775000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-11 21:35:14.804596614 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945593\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\nsign_in_count:\n- 2141\n- 2142\n 4284 \N 189.186.89.234 0c5164e3-bd85-47ce-aafd-6b338965646e 2020-12-11 21:35:14.815502 48074 4 User \N \N 4 User \N update ---\nunique_session_id:\n- aVYBz2LkxpHurtscvbc8\n- pxLn_XQGvmWymV5__soP\n 4285 \N 189.186.89.234 0c5164e3-bd85-47ce-aafd-6b338965646e 2020-12-11 21:35:14.841038 48075 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-11 01:09:10.056864000 Z\n- &1 2020-12-11 21:29:58.528104000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-11 21:37:03.800389500 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\nsign_in_count:\n- 391\n- 392\n 785 \N 189.186.89.234 40416c55-14d6-4751-9127-64c50729829d 2020-12-11 21:37:03.810071 48076 18 User \N \N 18 User \N update ---\nunique_session_id:\n- YKPjYuZRmPHF_a8pJJBC\n- 1KK9yD5nrT2eJe5nWqjJ\n 786 \N 189.186.89.234 40416c55-14d6-4751-9127-64c50729829d 2020-12-11 21:37:03.832959 48077 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-11 21:20:17.624775000 Z\n- &1 2020-12-11 21:35:14.804596000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-11 22:14:12.745261063 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945618\n mask_addr: 4294967295\nsign_in_count:\n- 2142\n- 2143\n 4286 \N 200.68.179.146 ab0270ac-aad8-4f60-99d1-23ed26c26c8b 2020-12-11 22:14:12.753709 48078 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pxLn_XQGvmWymV5__soP\n- Q51GpG9y1C-rJBvNSige\n 4287 \N 200.68.179.146 ab0270ac-aad8-4f60-99d1-23ed26c26c8b 2020-12-11 22:14:12.775918 48079 3657 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1223\namount: !ruby/object:BigDecimal 18:0.759E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2020-12-11\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1753\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 df5fde6b-16df-4351-a3d4-28ae755d31a8 2020-12-11 22:17:01.882281 48080 2549 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.20.144 df5fde6b-16df-4351-a3d4-28ae755d31a8 2020-12-11 22:17:01.926357 48081 3657 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 0d3ae379-7164-4f60-8c83-0567a82fc744 2020-12-11 22:17:06.939604 48082 4843 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1223\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.759E3\nmove_type: '1'\nsale_id: 3657\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1753\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.759E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1753 189.186.20.144 0d3ae379-7164-4f60-8c83-0567a82fc744 2020-12-11 22:17:06.970646 48083 4844 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1224\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 3460\ncardnumber: 1552\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-890 189.186.89.234 577cc941-6bdc-4c64-a042-3c130b6a8963 2020-12-11 22:29:50.585964 48084 3460 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.89.234 70f5b126-7c0e-4a04-9b32-ff0b4dc2ab4a 2020-12-11 22:29:53.20508 48085 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-11 21:35:14.804596000 Z\n- &1 2020-12-11 22:14:12.745261000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-11 22:58:26.646079880 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945618\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945618\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\nsign_in_count:\n- 2143\n- 2144\n 4288 \N 189.186.89.234 872b7886-e049-4a64-9cd4-ec83cebe597a 2020-12-11 22:58:26.654407 48086 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Q51GpG9y1C-rJBvNSige\n- zHsbx3zrmqvuyczwDxPT\n 4289 \N 189.186.89.234 872b7886-e049-4a64-9cd4-ec83cebe597a 2020-12-11 22:58:26.685321 48087 3658 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1223\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2020-12-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1754\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 9bf97e03-33f5-4f27-8f80-7fccd412afa5 2020-12-11 23:05:21.722695 48088 1045 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 16 \N 189.186.20.144 9bf97e03-33f5-4f27-8f80-7fccd412afa5 2020-12-11 23:05:21.770823 48089 3658 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 5f390ced-601b-456d-bdd0-2f120b2d02e5 2020-12-11 23:05:48.396696 48090 4845 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1223\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 3658\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1754\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1754 189.186.20.144 5f390ced-601b-456d-bdd0-2f120b2d02e5 2020-12-11 23:05:48.433392 48091 367 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1223\nquantity: !ruby/object:BigDecimal 18:0.307E3\nstatus: 1\nobservations: "$292 AGUA JAPAC $15 COMISION OXXO"\nexpense_date: 2020-12-11\nexpense_code: PV1-E-254\n 1 Egreso por 307.0 registrado 189.186.20.144 08135137-f4ed-4bf2-871a-9f2007d9c426 2020-12-11 23:19:25.711241 48092 4846 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1223\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.307E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 367\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.20.144 08135137-f4ed-4bf2-871a-9f2007d9c426 2020-12-11 23:19:25.755522 48093 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-11 21:29:58.528104000 Z\n- &1 2020-12-11 21:37:03.800389000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-11 23:34:18.005921837 Z\nsign_in_count:\n- 392\n- 393\n 787 \N 189.186.89.234 7b60af8c-7520-4d75-8a2b-1a59cf25f14b 2020-12-11 23:34:18.013642 48094 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 1KK9yD5nrT2eJe5nWqjJ\n- 4SayGLJAs7MmhyQBkgES\n 788 \N 189.186.89.234 7b60af8c-7520-4d75-8a2b-1a59cf25f14b 2020-12-11 23:34:18.031204 48095 3659 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1224\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-12-11\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-985\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 273be776-cf18-45a3-990a-79b16a8315b5 2020-12-11 23:34:54.483831 48096 2568 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.89.234 273be776-cf18-45a3-990a-79b16a8315b5 2020-12-11 23:34:54.519006 48097 3659 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 f520a0a4-20be-47f3-a87c-9830a1ae4a5b 2020-12-11 23:34:58.572671 48098 4847 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1224\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3659\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-985\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-985 189.186.89.234 f520a0a4-20be-47f3-a87c-9830a1ae4a5b 2020-12-11 23:34:58.607769 48099 3660 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1224\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2020-12-11\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-986\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 2f31adcb-2166-4348-ab47-a8d056952ae4 2020-12-11 23:36:24.500777 48100 2596 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.89.234 2f31adcb-2166-4348-ab47-a8d056952ae4 2020-12-11 23:36:24.531454 48101 3660 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 9a4dff31-8a76-48be-a91d-26864629d69a 2020-12-11 23:36:52.854791 48102 4848 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1224\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 3660\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-986\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.649E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-986 189.186.89.234 9a4dff31-8a76-48be-a91d-26864629d69a 2020-12-11 23:36:52.882028 48103 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-11 22:14:12.745261000 Z\n- &1 2020-12-11 22:58:26.646079000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-11 23:41:15.007004187 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945618\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945618\n mask_addr: 4294967295\nsign_in_count:\n- 2144\n- 2145\n 4290 \N 200.68.179.146 a1c1462e-460b-4344-af57-356ef94534d2 2020-12-11 23:41:15.029824 48104 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zHsbx3zrmqvuyczwDxPT\n- fk5GpGzJvjhERyhzUXve\n 4291 \N 200.68.179.146 a1c1462e-460b-4344-af57-356ef94534d2 2020-12-11 23:41:15.052346 48105 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-10 01:37:24.447472000 Z\n- &1 2020-12-10 23:38:35.917434000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-12 00:08:13.556985943 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729535\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 424\n- 425\n 850 \N 189.186.20.144 b697ffb6-bbc2-4446-9ca7-d29116fc346d 2020-12-12 00:08:13.566444 48106 1 User \N \N 1 User \N update ---\nunique_session_id:\n- si-vwgK9f8xyUyNGPU96\n- WNTYE-FgBF9ACKh2CxHR\n 851 \N 189.186.20.144 b697ffb6-bbc2-4446-9ca7-d29116fc346d 2020-12-12 00:08:13.587157 48107 473 Customer \N \N 18 User \N create ---\nnick_name: CASANDRA MADUEÑO\nphone: "(667) 487-4344"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CASANDRA MADUEÑO fue registrado. 189.186.89.234 cd7a80e4-8c1f-436e-84d2-dd53e275ef4f 2020-12-12 00:26:05.728618 48108 3661 Sale \N \N 18 User \N create ---\ncustomer_id: 473\nuser_id: 18\nopen_cash_register_id: 1224\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-12-11\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-987\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 3217ab11-358f-41bd-88d5-43c4338d2c6e 2020-12-12 00:26:17.583574 48109 2618 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.89.234 3217ab11-358f-41bd-88d5-43c4338d2c6e 2020-12-12 00:26:17.619288 48110 3661 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 7131aec5-0db8-40ed-b637-cefbaceb30a1 2020-12-12 00:26:22.442387 48111 4849 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1224\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 3661\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-987\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-987 189.186.89.234 7131aec5-0db8-40ed-b637-cefbaceb30a1 2020-12-12 00:26:22.466852 48112 3661 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-987 cancelada. 189.186.89.234 ad78d9f0-0cd6-4d4d-b3d2-cbea16b9430c 2020-12-12 00:26:28.058534 48113 4849 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1224\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3661\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-987\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.89.234 ad78d9f0-0cd6-4d4d-b3d2-cbea16b9430c 2020-12-12 00:26:28.082275 48114 2618 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.89.234 ad78d9f0-0cd6-4d4d-b3d2-cbea16b9430c 2020-12-12 00:26:28.108693 48115 3662 Sale \N \N 18 User \N create ---\ncustomer_id: 473\nuser_id: 18\nopen_cash_register_id: 1224\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-12-11\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-988\nexpiration_date: 2021-01-15\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 000e435a-096c-4a9e-a137-d3f3a02b0352 2020-12-12 00:27:24.035804 48116 2618 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.89.234 000e435a-096c-4a9e-a137-d3f3a02b0352 2020-12-12 00:27:24.064073 48117 4850 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1224\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3662\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-988\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-988 189.186.89.234 df42f729-744c-4d63-a97a-b50d02a0c0a5 2020-12-12 00:27:30.042337 48118 3662 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.89.234 efeccb80-145b-4a93-aa61-98b70aedba16 2020-12-12 00:27:31.608107 48119 3663 Sale \N \N 18 User \N create ---\ncustomer_id: 473\nuser_id: 18\nopen_cash_register_id: 1224\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.849E3\nstatus: 0\ndate_sale: 2020-12-11\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-989\nexpiration_date: 2021-01-15\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 05ff7b28-d822-4424-8b24-2059565cea78 2020-12-12 00:33:01.305287 48120 2617 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.89.234 05ff7b28-d822-4424-8b24-2059565cea78 2020-12-12 00:33:01.332956 48121 4851 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1224\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3663\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-989\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-989 189.186.89.234 55967c8e-b22e-4fed-8bfe-049b08ef6dd0 2020-12-12 00:34:11.311629 48122 3663 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.89.234 2befa58a-ed0c-4771-b28c-33f05a81f78e 2020-12-12 00:34:12.387799 48123 3664 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1224\namount: !ruby/object:BigDecimal 18:0.1196E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1196E4\nstatus: 0\ndate_sale: 2020-12-11\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-990\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 e1ccf549-ec52-4885-8189-5ec75225783e 2020-12-12 00:42:09.968164 48124 2615 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.89.234 e1ccf549-ec52-4885-8189-5ec75225783e 2020-12-12 00:42:10.040486 48125 3664 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 858ed76f-c387-4abc-99f2-399e4436f469 2020-12-12 00:42:43.734613 48126 4852 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1224\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1196E4\nmove_type: '1'\nsale_id: 3664\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-990\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.4E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-990 189.186.89.234 858ed76f-c387-4abc-99f2-399e4436f469 2020-12-12 00:42:43.757788 48127 3665 Sale \N \N 18 User \N create ---\ncustomer_id: 70\nuser_id: 18\nopen_cash_register_id: 1224\namount: !ruby/object:BigDecimal 18:0.187745E4\ntax: !ruby/object:BigDecimal 18:0.22055E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2098E4\nstatus: 0\ndate_sale: 2020-12-11\nsaletype: 0\nseller_id: 14\nsale_code: PV3-V-991\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 6747efd2-2dea-42e4-a2dd-24a4eba47fb6 2020-12-12 00:55:33.520623 48128 2495 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.89.234 6747efd2-2dea-42e4-a2dd-24a4eba47fb6 2020-12-12 00:55:33.595395 48129 849 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.89.234 6747efd2-2dea-42e4-a2dd-24a4eba47fb6 2020-12-12 00:55:33.650667 48130 3666 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1224\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-12-11\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-992\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 7d16175a-f4d6-4960-a4b8-7f9adf45cf49 2020-12-12 01:39:58.82643 48131 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 57 \N 189.186.89.234 7d16175a-f4d6-4960-a4b8-7f9adf45cf49 2020-12-12 01:39:58.866213 48132 3666 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 3d858dca-a278-485c-99e5-2a8960320b67 2020-12-12 01:40:43.660852 48133 4853 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1224\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 3666\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-992\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.18E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-992 189.186.89.234 3d858dca-a278-485c-99e5-2a8960320b67 2020-12-12 01:40:43.684958 48134 1249 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1223\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3836E4\namount_out: !ruby/object:BigDecimal 18:0.307E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.954E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3454E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.144 2d713734-ed39-4175-b5af-fbfce3cc9c19 2020-12-12 02:23:11.859091 48135 1223 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.144 2d713734-ed39-4175-b5af-fbfce3cc9c19 2020-12-12 02:23:11.875632 48249 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8UNh_yUv_T25VayMtGoX\n- 4QTcmGh93ch1V1WyEsMw\n 4301 \N 200.68.182.98 280307e7-d2c8-4531-92a5-36fce985b42b 2020-12-13 02:34:46.52307 48136 3667 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1224\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-11\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-993\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 246724ec-68bf-4d63-a9d9-845140ec6a18 2020-12-12 02:29:56.499096 48137 2620 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.89.234 246724ec-68bf-4d63-a9d9-845140ec6a18 2020-12-12 02:29:56.527422 48138 3667 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-993 cancelada. 189.186.89.234 d9de1a14-031f-486c-aec3-d7a1182c4a55 2020-12-12 02:33:28.230118 48139 2620 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.89.234 d9de1a14-031f-486c-aec3-d7a1182c4a55 2020-12-12 02:33:28.255804 48140 3668 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1224\namount: !ruby/object:BigDecimal 18:0.1768E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1768E4\nstatus: 0\ndate_sale: 2020-12-11\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-994\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 114c610d-7274-4632-9f2b-0272f2bba9d5 2020-12-12 02:34:15.283902 48141 2620 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.89.234 114c610d-7274-4632-9f2b-0272f2bba9d5 2020-12-12 02:34:15.31076 48142 1177 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.89.234 114c610d-7274-4632-9f2b-0272f2bba9d5 2020-12-12 02:34:15.343098 48143 1183 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.89.234 114c610d-7274-4632-9f2b-0272f2bba9d5 2020-12-12 02:34:15.371717 48144 3668 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 2e9f8871-3fe1-4b5f-9a00-4eca2eb5f3ed 2020-12-12 02:35:20.460682 48145 4854 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1224\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1768E4\nmove_type: '1'\nsale_id: 3668\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-994\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.232E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-994 189.186.89.234 2e9f8871-3fe1-4b5f-9a00-4eca2eb5f3ed 2020-12-12 02:35:20.485629 48146 1250 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1224\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.9158E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.8049E4\ncash_fund: !ruby/object:BigDecimal 18:0.1139E4\nphysical_cash: !ruby/object:BigDecimal 18:0.9188E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.89.234 9af8066a-408c-4e65-b086-fe94ca6f568f 2020-12-12 02:56:09.434255 48147 1224 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.89.234 9af8066a-408c-4e65-b086-fe94ca6f568f 2020-12-12 02:56:09.455105 48148 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-11 22:58:26.646079000 Z\n- &1 2020-12-11 23:41:15.007004000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-12 05:19:00.126598513 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945618\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945618\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984536000\n mask_addr: 4294967295\nsign_in_count:\n- 2145\n- 2146\n 4292 \N 177.228.103.192 075c3ffc-f44c-4339-aa8b-326a80c8bab4 2020-12-12 05:19:00.136895 48149 4 User \N \N 4 User \N update ---\nunique_session_id:\n- fk5GpGzJvjhERyhzUXve\n- yMjVSEnrRfmMBqHALyDX\n 4293 \N 177.228.103.192 075c3ffc-f44c-4339-aa8b-326a80c8bab4 2020-12-12 05:19:00.161033 48150 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-11 23:41:15.007004000 Z\n- &1 2020-12-12 05:19:00.126598000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-12 16:27:44.586626117 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945618\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984536000\n mask_addr: 4294967295\nsign_in_count:\n- 2146\n- 2147\n 4294 \N 177.228.103.192 94c3c0a0-a324-40a5-8159-8312fa4b78cf 2020-12-12 16:27:44.616328 48151 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yMjVSEnrRfmMBqHALyDX\n- HB9bZdTzyRUAGxWDB9VM\n 4295 \N 177.228.103.192 94c3c0a0-a324-40a5-8159-8312fa4b78cf 2020-12-12 16:27:44.643764 48152 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-10 17:47:32.952794000 Z\n- &1 2020-12-11 18:05:47.039243000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-12 18:51:40.564935802 Z\nsign_in_count:\n- 727\n- 728\n 1459 \N 189.186.20.144 0dd3ba12-475d-4283-8b3d-ad5ca3361fce 2020-12-12 18:51:40.570435 48153 2 User \N \N 2 User \N update ---\nunique_session_id:\n- pjiQzD-Jci2gfsLg4e5B\n- 8vy7zYiRMQpJc5nRi-Fc\n 1460 \N 189.186.20.144 0dd3ba12-475d-4283-8b3d-ad5ca3361fce 2020-12-12 18:51:40.584699 48154 1225 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.954E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 954.0 189.186.20.144 da829a68-8c2d-4c83-9073-81f8f43828b3 2020-12-12 18:52:00.06078 48155 3669 Sale \N \N 2 User \N create ---\ncustomer_id: 312\nuser_id: 2\nopen_cash_register_id: 1225\namount: !ruby/object:BigDecimal 18:0.698E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.698E3\nstatus: 0\ndate_sale: 2020-12-12\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1755\nexpiration_date: 2021-01-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 c7e37cc9-e431-403f-8953-61068c85b1ff 2020-12-12 18:58:35.84109 48156 2556 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 189.186.20.144 c7e37cc9-e431-403f-8953-61068c85b1ff 2020-12-12 18:58:35.870803 48157 4855 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1225\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.398E3\nmove_type: '1'\nsale_id: 3669\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1755\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.398E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1755 189.186.20.144 ca456766-8151-484c-9841-bd2a64daa762 2020-12-12 18:58:43.144245 48158 3669 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.20.144 51e1cc42-25be-4c42-a70f-7d911eb6cd4f 2020-12-12 18:58:49.616639 48322 2519 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 8 \N 189.186.20.144 f2a720f0-d5ad-4453-944b-2bd90020b53a 2020-12-14 18:18:45.135094 48159 3670 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1225\namount: !ruby/object:BigDecimal 18:0.759E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2020-12-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1756\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 34fca4a8-e4f4-4e14-aae3-63d6e6a12a51 2020-12-12 19:01:23.612743 48160 2549 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.20.144 34fca4a8-e4f4-4e14-aae3-63d6e6a12a51 2020-12-12 19:01:23.649742 48161 3670 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 ceabc485-2669-4192-94d1-7a6d637d1a1e 2020-12-12 19:02:24.772915 48162 4856 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1225\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.759E3\nmove_type: '1'\nsale_id: 3670\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1756\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.759E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1756 189.186.20.144 ceabc485-2669-4192-94d1-7a6d637d1a1e 2020-12-12 19:02:24.796967 48163 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-10 23:38:35.917434000 Z\n- &1 2020-12-12 00:08:13.556985000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-12 19:03:28.780822395 Z\nsign_in_count:\n- 425\n- 426\n 852 \N 189.186.20.144 059d94e6-6c3f-4e0e-9027-cfff58c0030e 2020-12-12 19:03:28.786604 48164 1 User \N \N 1 User \N update ---\nunique_session_id:\n- WNTYE-FgBF9ACKh2CxHR\n- jmzKLLcfds7NTUknvB2e\n 853 \N 189.186.20.144 059d94e6-6c3f-4e0e-9027-cfff58c0030e 2020-12-12 19:03:28.801321 48165 474 Customer \N \N 2 User \N create ---\nnick_name: ALMA ROSA LOPEZ\nphone: "(667) 996-5718"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ALMA ROSA LOPEZ fue registrado. 189.186.20.144 16f63a90-ce77-4390-b622-272cd57869ff 2020-12-12 19:42:48.171235 48166 3671 Sale \N \N 2 User \N create ---\ncustomer_id: 474\nuser_id: 2\nopen_cash_register_id: 1225\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-12-12\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1757\nexpiration_date: 2021-01-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 dbdb4b55-918c-4800-bef9-fed3da1fa908 2020-12-12 19:42:55.827891 48167 2023 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.20.144 dbdb4b55-918c-4800-bef9-fed3da1fa908 2020-12-12 19:42:55.857056 48168 3671 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1757 cancelada. 189.186.20.144 67636155-3078-4c41-9b41-65009b4b6373 2020-12-12 19:44:20.032449 48169 2023 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.20.144 67636155-3078-4c41-9b41-65009b4b6373 2020-12-12 19:44:20.05581 48170 3672 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1225\namount: !ruby/object:BigDecimal 18:0.1248E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1248E4\nstatus: 0\ndate_sale: 2020-12-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1758\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 5dba7574-891d-42c5-a5f1-6f5b4b007b40 2020-12-12 20:04:51.590444 48171 2516 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 189.186.20.144 5dba7574-891d-42c5-a5f1-6f5b4b007b40 2020-12-12 20:04:51.619162 48172 1856 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.20.144 5dba7574-891d-42c5-a5f1-6f5b4b007b40 2020-12-12 20:04:51.642617 48173 3672 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 d2ebf4a5-6df1-4e4d-a78d-30be99ecb4d2 2020-12-12 20:05:00.784536 48174 4857 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1225\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1248E4\nmove_type: '1'\nsale_id: 3672\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1758\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1248E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1758 189.186.20.144 d2ebf4a5-6df1-4e4d-a78d-30be99ecb4d2 2020-12-12 20:05:00.810133 48175 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-11 01:37:14.194502000 Z\n- &1 2020-12-11 18:56:16.569290000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-12 20:12:10.096514709 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183109316\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\nsign_in_count:\n- 362\n- 363\n 727 \N 189.186.89.234 b2e30968-0197-44ec-8fd6-32b997b825be 2020-12-12 20:12:10.129144 48176 21 User \N \N 21 User \N update ---\nunique_session_id:\n- BB3Cq9Bf4rEFRBdSRL_M\n- wgz2zKfsJWsphx9bPG34\n 728 \N 189.186.89.234 b2e30968-0197-44ec-8fd6-32b997b825be 2020-12-12 20:12:10.162855 48177 497 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-215\namount: !ruby/object:BigDecimal 18:0.4395E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4395E3\nobservations: ''\npurchase_date: 2020-12-12\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-215 por $ 439.5 MXN creada. 189.186.20.144 72cc4760-f36c-45c1-b0d8-79b1550fec1a 2020-12-12 20:31:57.954941 48178 2540 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.20.144 72cc4760-f36c-45c1-b0d8-79b1550fec1a 2020-12-12 20:31:57.980421 48179 3673 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1225\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.15E3\ntotal: !ruby/object:BigDecimal 18:0.1049E4\nstatus: 0\ndate_sale: 2020-12-12\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1759\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 27921fbf-0e74-4284-9a75-0a70560768d8 2020-12-12 20:32:24.074138 48180 2540 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.20.144 27921fbf-0e74-4284-9a75-0a70560768d8 2020-12-12 20:32:24.106262 48181 3673 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 40c36342-3ac7-492f-858c-61d9551cf09b 2020-12-12 20:32:56.744041 48225 3679 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1226\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-12-12\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-995\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 d5964b25-67b3-4374-a3d9-8495f9c47688 2020-12-13 01:03:43.647772 48182 4858 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1225\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1049E4\nmove_type: '1'\nsale_id: 3673\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1759\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1049E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1759 189.186.20.144 40c36342-3ac7-492f-858c-61d9551cf09b 2020-12-12 20:32:56.766035 48183 3674 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1225\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1760\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 14115a1b-0732-4219-aecb-340eba8ba47a 2020-12-12 21:48:31.070839 48184 2632 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.20.144 14115a1b-0732-4219-aecb-340eba8ba47a 2020-12-12 21:48:31.129976 48185 3674 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 9eb69cca-69bc-458e-b3b5-df84abc2201f 2020-12-12 21:48:52.340537 48186 4859 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1225\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3674\ncardnumber: 3890\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1760\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1760 189.186.20.144 9eb69cca-69bc-458e-b3b5-df84abc2201f 2020-12-12 21:48:52.374309 48187 475 Customer \N \N 2 User \N create ---\nnick_name: ANA BALDERAS\nphone: "(667) 233-0259"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANA BALDERAS fue registrado. 189.186.20.144 7f685e36-81cc-4795-8149-b7c8c7894d3b 2020-12-12 22:18:03.899903 48188 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-12 05:19:00.126598000 Z\n- &1 2020-12-12 16:27:44.586626000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-12 22:58:40.146885733 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984536000\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\nsign_in_count:\n- 2147\n- 2148\n 4296 \N 189.186.89.234 9ee89814-4bd6-4a7e-91b1-9e24b0a018d6 2020-12-12 22:58:40.155791 48189 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HB9bZdTzyRUAGxWDB9VM\n- JW8i-X9p5gz3_JCZuKfK\n 4297 \N 189.186.89.234 9ee89814-4bd6-4a7e-91b1-9e24b0a018d6 2020-12-12 22:58:40.175529 48190 755 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-12-12\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.89.234 ed6cba27-e3ef-4969-bd5c-b06adee95475 2020-12-12 22:59:35.465123 48191 755 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-12\n 2 Se dio entrada a traspaso de Almacen central a SUO 189.186.20.144 8a8dfcae-7de2-47c9-b4b2-8eea8349c28b 2020-12-12 23:37:11.966309 48192 1411 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.7E1\n 22 \N 189.186.20.144 8a8dfcae-7de2-47c9-b4b2-8eea8349c28b 2020-12-12 23:37:11.991423 48193 3675 Sale \N \N 2 User \N create ---\ncustomer_id: 475\nuser_id: 2\nopen_cash_register_id: 1225\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-12-12\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1761\nexpiration_date: 2021-01-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 4fc3b80f-51a6-40b0-8c2b-840bf71a9e26 2020-12-12 23:38:10.27121 48194 1411 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 23 \N 189.186.20.144 4fc3b80f-51a6-40b0-8c2b-840bf71a9e26 2020-12-12 23:38:10.301775 48195 4860 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1225\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3675\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1761\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1761 189.186.20.144 8c660c7c-6390-439c-bafb-26d6de8de00d 2020-12-12 23:38:22.272616 48196 3675 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.20.144 d21e55c2-7089-45de-bcb0-83e96da19f64 2020-12-12 23:38:23.574219 48197 3676 Sale \N \N 2 User \N create ---\ncustomer_id: 217\nuser_id: 2\nopen_cash_register_id: 1225\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2020-12-12\nsaletype: 2\nseller_id: 16\nsale_code: PV1-V-1762\nexpiration_date: 2021-01-16\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 8e0d9888-6f10-4880-b177-ca00f36f6ee0 2020-12-12 23:44:53.521698 48198 2534 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.20.144 8e0d9888-6f10-4880-b177-ca00f36f6ee0 2020-12-12 23:44:53.548833 48199 4861 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1225\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 3676\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1762\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1762 189.186.20.144 fd7aa737-3199-4a03-95af-17726f478963 2020-12-12 23:45:01.192532 48200 3676 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.20.144 07a084f5-0577-4d45-ab9e-fcde84243fd2 2020-12-12 23:45:02.248806 48201 3677 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1225\namount: !ruby/object:BigDecimal 18:0.759E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2020-12-12\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1763\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 8c925530-5f73-4ae2-9f65-2c5d3d1fe582 2020-12-13 00:16:44.59721 48202 2549 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.20.144 8c925530-5f73-4ae2-9f65-2c5d3d1fe582 2020-12-13 00:16:44.63154 48203 3677 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 28eaab0d-c27e-44b1-afc4-d77827adb327 2020-12-13 00:17:00.045841 48204 4862 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1225\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.759E3\nmove_type: '1'\nsale_id: 3677\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1763\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.41E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1763 189.186.20.144 28eaab0d-c27e-44b1-afc4-d77827adb327 2020-12-13 00:17:00.077019 48205 498 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-216\namount: !ruby/object:BigDecimal 18:0.84E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.84E3\nobservations: ''\npurchase_date: 2020-12-12\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-216 por $ 840.0 MXN creada. 189.186.20.144 a592567b-d871-4a8f-b0a9-9b58c4e968c8 2020-12-13 00:35:24.164414 48206 2257 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.6E1\n 6 \N 189.186.20.144 a592567b-d871-4a8f-b0a9-9b58c4e968c8 2020-12-13 00:35:24.213029 48207 3678 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1225\namount: !ruby/object:BigDecimal 18:0.629E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.629E3\nstatus: 0\ndate_sale: 2020-12-12\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1764\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 7a68f95e-a163-45e1-87e4-b9004b460f8b 2020-12-13 00:35:44.180684 48208 2257 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 189.186.20.144 7a68f95e-a163-45e1-87e4-b9004b460f8b 2020-12-13 00:35:44.219082 48209 3678 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 2995eaac-3aa5-41f6-9470-787e2c69601d 2020-12-13 00:36:04.242924 48210 4863 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1225\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.629E3\nmove_type: '1'\nsale_id: 3678\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1764\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.71E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1764 189.186.20.144 2995eaac-3aa5-41f6-9470-787e2c69601d 2020-12-13 00:36:04.266457 48211 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-12 16:27:44.586626000 Z\n- &1 2020-12-12 22:58:40.146885000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-13 00:55:44.566375229 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984536000\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 2148\n- 2149\n 4298 \N 189.186.20.144 e7ccdb3c-c839-47ce-ade3-5f91eda15a85 2020-12-13 00:55:44.575222 48212 4 User \N \N 4 User \N update ---\nunique_session_id:\n- JW8i-X9p5gz3_JCZuKfK\n- 8UNh_yUv_T25VayMtGoX\n 4299 \N 189.186.20.144 e7ccdb3c-c839-47ce-ade3-5f91eda15a85 2020-12-13 00:55:44.597685 48213 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-09 19:38:52.716050000 Z\n- &1 2020-12-09 22:41:11.423098000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-13 00:56:29.639836498 Z\nsign_in_count:\n- 201\n- 202\n 404 \N 189.186.20.144 e2e27c55-08db-44d6-a410-e7d95fc7e83e 2020-12-13 00:56:29.645902 48214 9 User \N \N 9 User \N update ---\nunique_session_id:\n- Zg1-6MrQMoa9EYrXHPN9\n- K3wFNwMUQzzYevX5wBYK\n 405 \N 189.186.20.144 e2e27c55-08db-44d6-a410-e7d95fc7e83e 2020-12-13 00:56:29.659221 48215 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-11 21:37:03.800389000 Z\n- &1 2020-12-11 23:34:18.005921000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-13 00:57:36.501482168 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 393\n- 394\n 789 \N 189.186.20.144 846edbe7-7c07-4a02-b7ee-7fb78a558149 2020-12-13 00:57:36.508932 48216 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 4SayGLJAs7MmhyQBkgES\n- cLjQGy3wNo_mbwPwvWyw\n 790 \N 189.186.20.144 846edbe7-7c07-4a02-b7ee-7fb78a558149 2020-12-13 00:57:36.525339 48217 1549 Product \N \N 18 User \N create ---\nsku: BOL-1549\nname: 1BLCO20636\ndescription: 'CROSS BODY NEGRO Y ROJO '\nprice_base: !ruby/object:BigDecimal 18:0.10495E4\nprice_sale: !ruby/object:BigDecimal 18:0.2099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1549 fue creado. 189.186.20.144 004ae557-e72b-4e58-bb8c-3c032cd56a25 2020-12-13 01:02:20.075561 48218 1549 Product \N \N 18 User \N update ---\nbarcode:\n- ''\n- '0001549'\n 2 \N 189.186.20.144 004ae557-e72b-4e58-bb8c-3c032cd56a25 2020-12-13 01:02:20.127258 48219 2638 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1549\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.20.144 004ae557-e72b-4e58-bb8c-3c032cd56a25 2020-12-13 01:02:20.158669 48220 499 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-144\namount: !ruby/object:BigDecimal 18:0.12594E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.12594E5\nobservations: ''\npurchase_date: 2020-12-12\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-144 por $ 12594.0 MXN creada. 189.186.20.144 de19f413-3667-41b9-920f-c6d5f48f8103 2020-12-13 01:02:38.902209 48221 2638 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.12E2\n 2 \N 189.186.20.144 de19f413-3667-41b9-920f-c6d5f48f8103 2020-12-13 01:02:38.925565 48222 500 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-145\namount: !ruby/object:BigDecimal 18:0.8995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.8995E3\nobservations: ''\npurchase_date: 2020-12-12\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-145 por $ 899.5 MXN creada. 189.186.20.144 8ae95d85-a46c-4031-b675-57c9a4c87d83 2020-12-13 01:03:02.5293 48223 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.8E1\n 58 \N 189.186.20.144 8ae95d85-a46c-4031-b675-57c9a4c87d83 2020-12-13 01:03:02.549133 48224 1226 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1139E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1139.0 189.186.20.144 33b589b2-00fe-48cc-8846-84d79bdb97f8 2020-12-13 01:03:32.043397 48226 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 59 \N 189.186.20.144 d5964b25-67b3-4374-a3d9-8495f9c47688 2020-12-13 01:03:43.67201 48228 4864 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1226\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3679\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-995\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1152'\n 1 movimiento de efectivo por venta con folio PV3-V-995 189.186.20.144 ad254cbb-2414-4372-b3eb-208e37d14b28 2020-12-13 01:03:57.844581 48229 3680 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1226\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-12-12\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-996\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 252c3e6f-99c4-48e9-9797-127a3c8042c7 2020-12-13 01:04:31.587484 48230 2638 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 3 \N 189.186.20.144 252c3e6f-99c4-48e9-9797-127a3c8042c7 2020-12-13 01:04:31.619222 48231 3680 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 72279063-6d1e-4951-aed3-82180005d04d 2020-12-13 01:04:41.302641 48232 4865 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1226\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.2099E4\nmove_type: '1'\nsale_id: 3680\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-996\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1155'\n 1 movimiento de efectivo por venta con folio PV3-V-996 189.186.20.144 72279063-6d1e-4951-aed3-82180005d04d 2020-12-13 01:04:41.324156 48233 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-09 22:41:11.423098000 Z\n- &1 2020-12-13 00:56:29.639836000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-13 01:07:34.274223917 Z\nsign_in_count:\n- 202\n- 203\n 406 \N 189.186.20.144 4f59c4cd-88b5-419b-aa44-906981a0ea00 2020-12-13 01:07:34.280268 48234 9 User \N \N 9 User \N update ---\nunique_session_id:\n- K3wFNwMUQzzYevX5wBYK\n- qxQoXXCTEK69kfe_y5vm\n 407 \N 189.186.20.144 4f59c4cd-88b5-419b-aa44-906981a0ea00 2020-12-13 01:07:34.294119 48235 4866 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1225\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.429E3\nmove_type: '1'\nsale_id: 3366\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.429E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1604 189.186.20.144 19643691-74af-4c70-b236-0eca533d2493 2020-12-13 01:14:03.787954 48236 3366 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 a7559cc1-2daa-4161-b875-3f13fb4249c8 2020-12-13 01:14:06.07601 48237 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-11 23:34:18.005921000 Z\n- &1 2020-12-13 00:57:36.501482000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-13 01:30:55.323956292 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946338\n mask_addr: 4294967295\nsign_in_count:\n- 394\n- 395\n 791 \N 200.68.182.98 9bcf1bd8-568c-4ae2-b345-bef9d78733de 2020-12-13 01:30:55.344055 48238 18 User \N \N 18 User \N update ---\nunique_session_id:\n- cLjQGy3wNo_mbwPwvWyw\n- fU_bQaXizTuMgUjB7cTV\n 792 \N 200.68.182.98 9bcf1bd8-568c-4ae2-b345-bef9d78733de 2020-12-13 01:30:55.365721 48239 368 Expense \N \N 9 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1225\nquantity: !ruby/object:BigDecimal 18:0.21E2\nstatus: 1\nobservations: '20 DE TOALLAS 1 DE AGUJA '\nexpense_date: 2020-12-12\nexpense_code: PV1-E-255\n 1 Egreso por 21.0 registrado 189.186.20.144 9f775e21-068b-41be-a0bc-4953568df5db 2020-12-13 01:32:30.277964 48240 4867 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1225\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.21E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 368\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.20.144 9f775e21-068b-41be-a0bc-4953568df5db 2020-12-13 01:32:30.29985 48241 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-11 18:56:16.569290000 Z\n- &1 2020-12-12 20:12:10.096514000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-13 01:36:56.953842086 Z\nsign_in_count:\n- 363\n- 364\n 729 \N 189.186.89.234 466a4ee8-afe3-4358-8d83-7ba728750073 2020-12-13 01:36:56.95964 48242 21 User \N \N 21 User \N update ---\nunique_session_id:\n- wgz2zKfsJWsphx9bPG34\n- SxkynwZ1ZuhxSzUQbxKq\n 730 \N 189.186.89.234 466a4ee8-afe3-4358-8d83-7ba728750073 2020-12-13 01:36:56.974832 48243 1251 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 1225\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.727E4\namount_out: !ruby/object:BigDecimal 18:0.21E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.57E4\ncash_fund: !ruby/object:BigDecimal 18:0.1004E4\nphysical_cash: !ruby/object:BigDecimal 18:0.6704E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.144 ef2a10e8-2bac-48fc-aaa7-5dbc357b35d9 2020-12-13 01:38:42.860187 48244 1225 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.144 ef2a10e8-2bac-48fc-aaa7-5dbc357b35d9 2020-12-13 01:38:42.881455 48245 1227 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.1004E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1004.0 189.186.20.144 78f7dfc9-008c-47bc-86d1-5749d1533d03 2020-12-13 01:38:46.734329 48246 4868 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1226\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.13E4\nmove_type: '1'\nsale_id: 3558\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.13E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-943 189.186.89.234 a183a96c-571c-4c50-8c62-6ab54d981b4b 2020-12-13 01:55:28.341361 48247 3558 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.89.234 939e2663-6f65-4f66-a77d-23f7c2edf000 2020-12-13 01:55:30.554935 48248 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-12 22:58:40.146885000 Z\n- &1 2020-12-13 00:55:44.566375000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-13 02:34:46.498043508 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946338\n mask_addr: 4294967295\nsign_in_count:\n- 2149\n- 2150\n 4300 \N 200.68.182.98 280307e7-d2c8-4531-92a5-36fce985b42b 2020-12-13 02:34:46.505188 48250 369 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1226\nquantity: !ruby/object:BigDecimal 18:0.175E4\nstatus: 1\nobservations: SUELDO NAYELI\nexpense_date: 2020-12-12\nexpense_code: PV3-E-52\n 1 Egreso por 1750.0 registrado 189.186.89.234 e6d62482-dce2-4fb8-bc06-bb110c8d3d41 2020-12-13 02:42:53.692725 48251 4869 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1226\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.175E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 369\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.89.234 e6d62482-dce2-4fb8-bc06-bb110c8d3d41 2020-12-13 02:42:53.727613 48252 1252 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1226\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.5198E4\namount_out: !ruby/object:BigDecimal 18:0.175E4\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.689E3\nphysical_cash: !ruby/object:BigDecimal 18:0.689E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.89.234 9b389f8d-f65e-4258-b301-f2e11d7465f2 2020-12-13 03:01:50.984066 48253 1226 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.89.234 9b389f8d-f65e-4258-b301-f2e11d7465f2 2020-12-13 03:01:50.997947 48254 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-13 00:56:29.639836000 Z\n- &1 2020-12-13 01:07:34.274223000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-13 17:08:59.876363287 Z\nsign_in_count:\n- 203\n- 204\n 408 \N 189.186.20.144 bef37647-da0e-4647-8c82-6f59672d7dc0 2020-12-13 17:08:59.911167 48255 9 User \N \N 9 User \N update ---\nunique_session_id:\n- qxQoXXCTEK69kfe_y5vm\n- cCqowxX9BMQHYi2kmHVN\n 409 \N 189.186.20.144 bef37647-da0e-4647-8c82-6f59672d7dc0 2020-12-13 17:08:59.943107 48256 3681 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1227\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-13\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1765\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 c0b20619-f049-43e1-9284-ad6927b719af 2020-12-13 18:09:51.444724 48257 2607 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.20.144 c0b20619-f049-43e1-9284-ad6927b719af 2020-12-13 18:09:51.484117 48258 3681 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 0d1d858f-c68c-4d2f-8a4a-53cd9554e405 2020-12-13 18:10:25.806657 48259 4870 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1227\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 3681\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1765\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1765 189.186.20.144 0d1d858f-c68c-4d2f-8a4a-53cd9554e405 2020-12-13 18:10:25.835677 48260 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-12 00:08:13.556985000 Z\n- &1 2020-12-12 19:03:28.780822000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-13 19:21:40.279670306 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729367\n mask_addr: 4294967295\nsign_in_count:\n- 426\n- 427\n 854 \N 201.175.156.215 1e8b50f9-36fa-4d39-8f92-a2d26915faeb 2020-12-13 19:21:40.29876 48261 1 User \N \N 1 User \N update ---\nunique_session_id:\n- jmzKLLcfds7NTUknvB2e\n- uTvjT4mW9ZXnVxpXrQV-\n 855 \N 201.175.156.215 1e8b50f9-36fa-4d39-8f92-a2d26915faeb 2020-12-13 19:21:40.319411 48262 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-13 00:55:44.566375000 Z\n- &1 2020-12-13 02:34:46.498043000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-13 19:36:34.007561126 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946338\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946338\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535512\n mask_addr: 4294967295\nsign_in_count:\n- 2150\n- 2151\n 4302 \N 177.228.101.216 5e092ff7-132c-433b-bf96-19a1b9bcf276 2020-12-13 19:36:34.015699 48263 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4QTcmGh93ch1V1WyEsMw\n- xK5oeqUx-K-yLyBYDMH_\n 4303 \N 177.228.101.216 5e092ff7-132c-433b-bf96-19a1b9bcf276 2020-12-13 19:36:34.036836 48264 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-12 20:12:10.096514000 Z\n- &1 2020-12-13 01:36:56.953842000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-13 20:12:51.148963918 Z\nsign_in_count:\n- 364\n- 365\n 731 \N 189.186.89.234 3afb93ef-8fb2-4eaf-9a1a-7d9f6c3ed39c 2020-12-13 20:12:51.154212 48265 21 User \N \N 21 User \N update ---\nunique_session_id:\n- SxkynwZ1ZuhxSzUQbxKq\n- 4pfTR1KPRjyrcsuvKERf\n 732 \N 189.186.89.234 3afb93ef-8fb2-4eaf-9a1a-7d9f6c3ed39c 2020-12-13 20:12:51.171684 48266 1228 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.689E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 689.0 189.186.89.234 d5f43bbb-b7aa-4d6a-867f-a21786bdecdb 2020-12-13 20:13:05.806992 48267 3682 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1227\namount: !ruby/object:BigDecimal 18:0.1389E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1389E4\nstatus: 0\ndate_sale: 2020-12-13\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1766\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 b33464d1-8e56-4941-95c1-3f95cbddb80f 2020-12-13 20:26:12.163925 48268 2613 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.20.144 b33464d1-8e56-4941-95c1-3f95cbddb80f 2020-12-13 20:26:12.208494 48269 3682 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1766 cancelada. 189.186.20.144 8af7ddfa-212c-45b0-a04c-256c971ddb18 2020-12-13 20:26:33.69705 48270 2613 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.20.144 8af7ddfa-212c-45b0-a04c-256c971ddb18 2020-12-13 20:26:33.723119 48271 3683 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1227\namount: !ruby/object:BigDecimal 18:0.1389E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.15E3\ntotal: !ruby/object:BigDecimal 18:0.1239E4\nstatus: 0\ndate_sale: 2020-12-13\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1767\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 e044f12e-ca99-4352-99c5-570ca0e0810b 2020-12-13 20:27:09.61898 48272 2613 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.20.144 e044f12e-ca99-4352-99c5-570ca0e0810b 2020-12-13 20:27:09.646932 48273 3683 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 79f5c183-056b-45bb-9d8c-b34de64a13e6 2020-12-13 20:27:42.17499 48274 4871 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1227\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1239E4\nmove_type: '1'\nsale_id: 3683\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1767\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.261E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1767 189.186.20.144 79f5c183-056b-45bb-9d8c-b34de64a13e6 2020-12-13 20:27:42.206419 48275 3684 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1228\namount: !ruby/object:BigDecimal 18:0.2498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2498E4\nstatus: 0\ndate_sale: 2020-12-13\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-997\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 51af1e59-f5ba-4db7-b6f5-f508fc9b9779 2020-12-13 20:41:13.736434 48276 2033 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.89.234 51af1e59-f5ba-4db7-b6f5-f508fc9b9779 2020-12-13 20:41:13.785401 48277 2046 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.89.234 51af1e59-f5ba-4db7-b6f5-f508fc9b9779 2020-12-13 20:41:13.819314 48278 3684 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 54da143b-0594-46c3-bf49-5aaa73f618be 2020-12-13 20:41:56.925212 48279 4872 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1228\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2498E4\nmove_type: '1'\nsale_id: 3684\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-997\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-997 189.186.89.234 54da143b-0594-46c3-bf49-5aaa73f618be 2020-12-13 20:41:56.948646 48280 2536 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 177.228.101.216 b1925668-66f2-4652-bf61-2acfac49fa5c 2020-12-13 20:57:18.096622 48281 756 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-13\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 177.228.101.216 212ac83f-110a-4517-a60b-41e51df0e7fa 2020-12-13 20:57:22.063488 48282 753 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-13\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.89.234 02da4e21-1d05-4106-811f-dcdf9c2449d7 2020-12-13 21:04:19.28274 48283 2639 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1519\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.89.234 02da4e21-1d05-4106-811f-dcdf9c2449d7 2020-12-13 21:04:19.319998 48284 2640 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1508\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.89.234 02da4e21-1d05-4106-811f-dcdf9c2449d7 2020-12-13 21:04:19.364078 48285 2572 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.6E1\n 10 \N 189.186.89.234 02da4e21-1d05-4106-811f-dcdf9c2449d7 2020-12-13 21:04:19.386093 48286 2571 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.11E2\n 6 \N 189.186.89.234 02da4e21-1d05-4106-811f-dcdf9c2449d7 2020-12-13 21:04:19.40789 48287 1113 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.89.234 02da4e21-1d05-4106-811f-dcdf9c2449d7 2020-12-13 21:04:19.4275 48288 756 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-13\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.89.234 c83ecc07-4cdd-49b8-bf08-fc74d03671e3 2020-12-13 21:04:29.392714 48289 2640 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.89.234 c83ecc07-4cdd-49b8-bf08-fc74d03671e3 2020-12-13 21:04:29.409675 48290 3685 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1228\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-12-13\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-998\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 dee5720f-9052-4fb5-95d9-1366b9035358 2020-12-13 21:05:15.67564 48291 2640 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.89.234 dee5720f-9052-4fb5-95d9-1366b9035358 2020-12-13 21:05:15.729687 48292 3685 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 71efbb27-eabc-40a3-9985-08862548ecaf 2020-12-13 21:05:20.554391 48293 4873 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1228\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 3685\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-998\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-998 189.186.89.234 71efbb27-eabc-40a3-9985-08862548ecaf 2020-12-13 21:05:20.579468 48294 3686 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1228\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2020-12-13\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-999\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 e4155f73-da4c-41a4-9962-98bbc0f1ee5b 2020-12-13 21:21:41.752801 48295 2622 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.89.234 e4155f73-da4c-41a4-9962-98bbc0f1ee5b 2020-12-13 21:21:41.780814 48296 3686 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 f311578e-25fb-4a27-b0bc-0a23b400e3be 2020-12-13 21:22:54.173154 48297 4874 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1228\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1899E4\nmove_type: '1'\nsale_id: 3686\ncardnumber: 5225\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-999\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-999 189.186.89.234 f311578e-25fb-4a27-b0bc-0a23b400e3be 2020-12-13 21:22:54.195742 48298 3687 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1227\namount: !ruby/object:BigDecimal 18:0.629E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.629E3\nstatus: 0\ndate_sale: 2020-12-13\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1768\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 4382df02-3561-4ebf-ba32-8885e6fd41ae 2020-12-13 22:06:51.111863 48299 2525 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.20.144 4382df02-3561-4ebf-ba32-8885e6fd41ae 2020-12-13 22:06:51.138383 48300 3687 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 77b84fc8-4e8d-4d7a-976a-9dd977e9a3df 2020-12-13 22:10:32.257987 48301 4875 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1227\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.629E3\nmove_type: '1'\nsale_id: 3687\ncardnumber: 9034\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1768\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1768 189.186.20.144 77b84fc8-4e8d-4d7a-976a-9dd977e9a3df 2020-12-13 22:10:32.281221 48302 1253 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1228\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.4896E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.687E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3687E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.89.234 bc667108-6687-4352-91e0-7147bffb976a 2020-12-13 22:50:46.590786 48303 1228 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.89.234 bc667108-6687-4352-91e0-7147bffb976a 2020-12-13 22:50:46.607008 48304 1254 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 1227\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.3267E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.31E4\ncash_fund: !ruby/object:BigDecimal 18:0.542E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3642E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.144 652765df-e0fc-4f1f-bd87-bb4b78ac5aeb 2020-12-13 22:52:51.40663 48305 1227 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.144 652765df-e0fc-4f1f-bd87-bb4b78ac5aeb 2020-12-13 22:52:51.424908 48306 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-13 01:07:34.274223000 Z\n- &1 2020-12-13 17:08:59.876363000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-14 17:46:18.343609947 Z\nsign_in_count:\n- 204\n- 205\n 410 \N 189.186.20.144 79904546-71fd-4870-b3e4-6be596f6e193 2020-12-14 17:46:18.376494 48307 9 User \N \N 9 User \N update ---\nunique_session_id:\n- cCqowxX9BMQHYi2kmHVN\n- rsf8cGU_yubzLgUPJ5H2\n 411 \N 189.186.20.144 79904546-71fd-4870-b3e4-6be596f6e193 2020-12-14 17:46:18.39945 48308 1229 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.542E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 542.0 189.186.20.144 712d25a3-765e-4dd2-b851-9b7da01314eb 2020-12-14 17:46:23.595714 48309 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-13 02:34:46.498043000 Z\n- &1 2020-12-13 19:36:34.007561000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-14 17:47:04.728005798 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946338\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535512\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535512\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 2151\n- 2152\n 4304 \N 189.186.20.144 5cc66ab0-2086-4419-b7b3-f481b8f1df61 2020-12-14 17:47:04.735476 48310 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xK5oeqUx-K-yLyBYDMH_\n- HYw-AdVdYhYPz1dWPuHj\n 4305 \N 189.186.20.144 5cc66ab0-2086-4419-b7b3-f481b8f1df61 2020-12-14 17:47:04.759428 48311 757 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-12-14\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.20.144 674a86cd-3177-4383-abce-ac151a673f98 2020-12-14 17:47:37.140252 48312 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-13 17:08:59.876363000 Z\n- &1 2020-12-14 17:46:18.343609000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-14 17:48:01.041228990 Z\nsign_in_count:\n- 205\n- 206\n 412 \N 189.186.20.144 2f78bbff-a669-4102-bc54-34645436cbfc 2020-12-14 17:48:01.046964 48313 9 User \N \N 9 User \N update ---\nunique_session_id:\n- rsf8cGU_yubzLgUPJ5H2\n- i7zFyUBnWTyPVx-6rCTw\n 413 \N 189.186.20.144 2f78bbff-a669-4102-bc54-34645436cbfc 2020-12-14 17:48:01.0606 48314 757 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-14\n 2 Se dio entrada a traspaso de Almacen central a SUO 189.186.20.144 db835916-d245-4d53-a921-7275eee5ec45 2020-12-14 17:48:26.179019 48315 1605 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.20.144 db835916-d245-4d53-a921-7275eee5ec45 2020-12-14 17:48:26.20317 48316 3688 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1229\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-14\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1769\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 301b665d-01e7-4860-926c-c63e4ca0ccf1 2020-12-14 17:48:47.113072 48317 1605 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.20.144 301b665d-01e7-4860-926c-c63e4ca0ccf1 2020-12-14 17:48:47.139561 48318 3688 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 f8bc94dd-c1e5-4203-b2f0-1f1fe67d175a 2020-12-14 17:48:51.791724 48319 4876 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1229\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3688\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1769\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1399E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1769 189.186.20.144 f8bc94dd-c1e5-4203-b2f0-1f1fe67d175a 2020-12-14 17:48:51.818855 48320 752 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-14\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.20.144 e982a955-659a-4117-9fe7-b161a9231c92 2020-12-14 18:18:20.819154 48321 2519 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.12E2\n 7 \N 189.186.20.144 e982a955-659a-4117-9fe7-b161a9231c92 2020-12-14 18:18:20.838036 48323 2519 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.8E1\n 9 \N 189.186.20.144 d484bb54-09d9-435f-822c-4a402c596a75 2020-12-14 18:19:32.936767 48324 758 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-14\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.20.144 73f8e7f0-1ea1-4f17-a568-d045358b369e 2020-12-14 18:19:49.992983 48325 2502 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.20.144 5eb03bcb-988d-4c0c-8354-9f8ef6dd011e 2020-12-14 19:06:07.700371 48326 2373 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.20.144 9fbb150c-637d-44f4-b8cc-8897ddaf2f51 2020-12-14 19:06:16.654523 48327 2505 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.20.144 de4bf82a-01f2-481e-b6d0-bd4da42adf65 2020-12-14 19:06:55.659152 48328 2023 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.20.144 87e5c7d5-10b9-41e5-9dd8-107cac80a030 2020-12-14 19:07:24.678 48329 2023 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.20.144 022b3f81-703d-43ac-88e1-c802dfd6cc21 2020-12-14 19:07:57.151948 48330 759 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-14\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.20.144 5d0eef9b-c86c-44e0-980b-ea4a52d27ad8 2020-12-14 19:08:00.072164 48331 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-13 01:36:56.953842000 Z\n- &1 2020-12-13 20:12:51.148963000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-14 19:16:48.917958113 Z\nsign_in_count:\n- 365\n- 366\n 733 \N 189.186.89.234 9c3d3f08-3b4e-49bc-adf0-c8304a09ce06 2020-12-14 19:16:48.924981 48332 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 4pfTR1KPRjyrcsuvKERf\n- roG-P2wMqkz32ik-z4gD\n 734 \N 189.186.89.234 9c3d3f08-3b4e-49bc-adf0-c8304a09ce06 2020-12-14 19:16:48.939013 48333 1230 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.687E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 687.0 189.186.89.234 ee742189-c7f7-4a05-a8aa-976c1d2d40e2 2020-12-14 19:17:38.973812 48334 4877 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1230\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 3650\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-981 189.186.89.234 0e473f2d-79fb-4d47-8b74-5f2a2f58eae5 2020-12-14 19:19:54.355912 48335 3650 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.89.234 981b87f1-368b-4236-bf00-d4f3dcfc36d4 2020-12-14 19:19:57.026093 48336 3689 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1230\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-12-14\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1000\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 d670e49d-889a-4741-b321-b17463b99ca2 2020-12-14 19:22:27.238814 48337 2624 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.89.234 d670e49d-889a-4741-b321-b17463b99ca2 2020-12-14 19:22:27.267038 48338 3689 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 f847b74f-0d7a-41fe-b467-35c5be572aea 2020-12-14 19:23:35.136861 48339 4878 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1230\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2099E4\nmove_type: '1'\nsale_id: 3689\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1000\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1000 189.186.89.234 f847b74f-0d7a-41fe-b467-35c5be572aea 2020-12-14 19:23:35.169249 48340 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-13 19:36:34.007561000 Z\n- &1 2020-12-14 17:47:04.728005000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-14 19:42:50.562483577 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535512\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934370\n mask_addr: 4294967295\nsign_in_count:\n- 2152\n- 2153\n 4306 \N 200.68.135.162 cf997397-8f47-43c0-95ce-fd79e781bf46 2020-12-14 19:42:50.570734 48341 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HYw-AdVdYhYPz1dWPuHj\n- ZKy7L_SQ5XTJQzsW4EPf\n 4307 \N 200.68.135.162 cf997397-8f47-43c0-95ce-fd79e781bf46 2020-12-14 19:42:50.590309 48342 3690 Sale \N \N 21 User \N create ---\ncustomer_id: 470\nuser_id: 21\nopen_cash_register_id: 1230\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-12-14\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-1001\nexpiration_date: 2021-01-18\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 ae5e2841-d60b-456b-8843-dc701adeb379 2020-12-14 20:31:49.983743 48343 2568 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.89.234 ae5e2841-d60b-456b-8843-dc701adeb379 2020-12-14 20:31:50.027067 48344 4879 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1230\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 3690\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-1001\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1001 189.186.89.234 0e299ec7-1c24-44f1-b9a5-d91b6e56687e 2020-12-14 20:32:07.820723 48345 3690 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.89.234 06203db8-41e6-4087-b134-2290f47f2b96 2020-12-14 20:32:09.747911 48346 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-11 18:05:47.039243000 Z\n- &1 2020-12-12 18:51:40.564935000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-14 20:49:34.245629981 Z\nsign_in_count:\n- 728\n- 729\n 1461 \N 189.186.20.144 f6fadc7c-e25c-4020-86d9-519f2f270852 2020-12-14 20:49:34.251289 48347 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 8vy7zYiRMQpJc5nRi-Fc\n- 1MYzy6BHeTzCK2H9WFw2\n 1462 \N 189.186.20.144 f6fadc7c-e25c-4020-86d9-519f2f270852 2020-12-14 20:49:34.269569 48348 501 Purchase \N \N 21 User \N create ---\nsupplier_id: 3\npointsale_id: 3\npurchase_code: PV3-C-146\namount: !ruby/object:BigDecimal 18:0.228E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.228E3\nobservations: ''\npurchase_date: 2020-12-14\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-146 por $ 228.0 MXN creada. 189.186.89.234 f1c98b73-7689-412b-b702-17f2cd5bdda8 2020-12-14 21:50:04.500283 48349 2641 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1094\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.89.234 f1c98b73-7689-412b-b702-17f2cd5bdda8 2020-12-14 21:50:04.535344 48350 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-14 17:47:04.728005000 Z\n- &1 2020-12-14 19:42:50.562483000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-14 21:53:28.214353883 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934370\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934370\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\nsign_in_count:\n- 2153\n- 2154\n 4308 \N 189.186.89.234 17a2ccdc-4a10-4102-a1c6-ed957bd6af2e 2020-12-14 21:53:28.222075 48351 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZKy7L_SQ5XTJQzsW4EPf\n- vCxqvy3-qii1BuYW_Gvh\n 4309 \N 189.186.89.234 17a2ccdc-4a10-4102-a1c6-ed957bd6af2e 2020-12-14 21:53:28.2427 48352 2055 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.89.234 49618a27-e84a-43b0-af09-195021dfd14f 2020-12-14 21:57:38.812773 48353 760 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-14\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.89.234 39c498a0-031f-4d0d-89f0-f46ffb6c60ea 2020-12-14 21:57:40.740141 48354 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-13 00:57:36.501482000 Z\n- &1 2020-12-13 01:30:55.323956000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-14 21:58:08.052938233 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946338\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946338\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\nsign_in_count:\n- 395\n- 396\n 793 \N 189.186.89.234 7f6ae8b6-0c33-4885-8f75-d130e1f4e029 2020-12-14 21:58:08.061287 48355 18 User \N \N 18 User \N update ---\nunique_session_id:\n- fU_bQaXizTuMgUjB7cTV\n- wxa2Vz-nTfQA2PfEZAVJ\n 794 \N 189.186.89.234 7f6ae8b6-0c33-4885-8f75-d130e1f4e029 2020-12-14 21:58:08.082023 48356 760 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-14\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.89.234 af54d80e-590c-429c-ae34-427fc338837a 2020-12-14 21:58:44.567249 48357 1971 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.89.234 af54d80e-590c-429c-ae34-427fc338837a 2020-12-14 21:58:44.590999 48358 3691 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1230\namount: !ruby/object:BigDecimal 18:0.379E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.379E3\nstatus: 0\ndate_sale: 2020-12-14\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1002\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 5297b2ce-2718-4049-8191-23490b6b84d8 2020-12-14 22:02:47.988653 48359 2401 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.89.234 5297b2ce-2718-4049-8191-23490b6b84d8 2020-12-14 22:02:48.020903 48360 3691 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 c9a07ba6-77f6-4cf0-b467-df672f7fd66c 2020-12-14 22:03:15.152049 48361 4880 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1230\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.379E3\nmove_type: '1'\nsale_id: 3691\ncardnumber: 1225\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1002\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1002 189.186.89.234 c9a07ba6-77f6-4cf0-b467-df672f7fd66c 2020-12-14 22:03:15.18561 48362 3692 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1230\namount: !ruby/object:BigDecimal 18:0.1228E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1228E4\nstatus: 0\ndate_sale: 2020-12-14\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1003\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 95d7e676-6daf-472d-9412-2a6adbb805c8 2020-12-14 22:05:29.661921 48363 2641 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.89.234 95d7e676-6daf-472d-9412-2a6adbb805c8 2020-12-14 22:05:29.691721 48364 2590 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.89.234 95d7e676-6daf-472d-9412-2a6adbb805c8 2020-12-14 22:05:29.717912 48365 3692 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 da370a1c-80d2-46c6-b28a-4c5163406fb4 2020-12-14 22:05:36.679609 48366 4881 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1230\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1228E4\nmove_type: '1'\nsale_id: 3692\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1003\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1288E4\nchange: !ruby/object:BigDecimal 18:0.6E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1003 189.186.89.234 da370a1c-80d2-46c6-b28a-4c5163406fb4 2020-12-14 22:05:36.703777 48367 4881 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1230\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1228E4\nmove_type: '1'\nsale_id: 3692\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1003\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1288E4\nchange: !ruby/object:BigDecimal 18:0.6E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.89.234 12eafe08-5dae-475c-b2d4-602946f03859 2020-12-14 22:05:42.643253 48368 4882 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1230\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1228E4\nmove_type: '1'\nsale_id: 3692\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1003\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1228E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1003 189.186.89.234 58db7f09-6681-49b6-9217-89f256d05334 2020-12-14 22:05:47.495582 48369 3693 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1230\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-12-14\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-1004\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 c5f5a4f9-15b0-4497-a885-67d289920d2d 2020-12-14 22:06:54.853402 48370 1971 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.89.234 c5f5a4f9-15b0-4497-a885-67d289920d2d 2020-12-14 22:06:54.89496 48371 3693 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 f47ea953-39a5-484c-99c9-178bbbee7ad9 2020-12-14 22:06:58.765701 48372 4883 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1230\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 3693\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1004\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1004 189.186.89.234 f47ea953-39a5-484c-99c9-178bbbee7ad9 2020-12-14 22:06:58.795466 48373 4884 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1229\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 3556\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1694 189.186.20.144 53bcd792-1449-4234-9275-78a404c55e43 2020-12-14 22:17:08.137074 48374 4885 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1229\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 3600\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1718 189.186.20.144 417e32f2-1c69-45ed-9f37-3603de7749c4 2020-12-14 22:26:41.605913 48375 4885 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1229\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 3600\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.20.144 af2fc564-ad59-4a3a-89c8-4d2230bce875 2020-12-14 22:26:44.936904 48376 4886 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1229\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.369E3\nmove_type: '1'\nsale_id: 3600\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.369E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1718 189.186.20.144 b818d411-0d4f-4ebc-9f05-cbbbb45adf64 2020-12-14 22:27:50.222401 48377 3600 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 7af3fc92-93d3-47f3-8627-ebba45b414ec 2020-12-14 22:27:56.197035 48378 4887 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1229\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 3559\ncardnumber: 6679\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1696 189.186.20.144 27fa3ae6-e09c-4f7a-8368-54c30bd4d4e0 2020-12-14 22:56:19.376287 48379 3559 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 6b76b85e-7cae-4fbd-871f-b5973962b897 2020-12-14 22:56:21.091346 48380 3694 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1230\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-12-14\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1005\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 c30361e9-6d56-486f-9f9f-2a0d0c425716 2020-12-14 22:57:01.520896 48381 2591 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.89.234 c30361e9-6d56-486f-9f9f-2a0d0c425716 2020-12-14 22:57:01.545803 48382 3694 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 dbd9a726-dcb6-43ee-8fb3-d87d85280491 2020-12-14 22:57:35.486927 48383 4888 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1230\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 3694\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1005\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1005 189.186.89.234 dbd9a726-dcb6-43ee-8fb3-d87d85280491 2020-12-14 22:57:35.510707 48384 3695 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1230\namount: !ruby/object:BigDecimal 18:0.998E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.998E3\nstatus: 0\ndate_sale: 2020-12-14\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1006\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 db1d6b2b-1dce-4f8b-ab36-7234bfe90a73 2020-12-14 23:01:58.653502 48385 2571 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.9E1\n 7 \N 189.186.89.234 db1d6b2b-1dce-4f8b-ab36-7234bfe90a73 2020-12-14 23:01:58.683846 48386 3695 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 c440b6da-1ad0-42c9-b04a-ee660a72cab9 2020-12-14 23:02:21.746705 48387 4889 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1230\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.998E3\nmove_type: '1'\nsale_id: 3695\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1006\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.998E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1006 189.186.89.234 c440b6da-1ad0-42c9-b04a-ee660a72cab9 2020-12-14 23:02:21.773751 48433 1949 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.89.234 3c47df18-b865-4e10-9781-e4efe97ebcb4 2020-12-15 01:20:46.221439 48388 3696 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1229\namount: !ruby/object:BigDecimal 18:0.1119E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.15E3\ntotal: !ruby/object:BigDecimal 18:0.969E3\nstatus: 0\ndate_sale: 2020-12-14\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1770\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 80117de5-be24-4e2b-ae8d-efdb6efba773 2020-12-14 23:21:27.367102 48389 1633 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.20.144 80117de5-be24-4e2b-ae8d-efdb6efba773 2020-12-14 23:21:27.411793 48390 3696 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 a8977d4d-0a25-4221-88e9-c1cc244d2498 2020-12-14 23:21:51.447784 48391 4890 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1229\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.94E3\nmove_type: '1'\nsale_id: 3696\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1770\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.94E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1770 189.186.20.144 a8977d4d-0a25-4221-88e9-c1cc244d2498 2020-12-14 23:21:51.47711 48392 4890 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1229\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.94E3\nmove_type: '1'\nsale_id: 3696\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1770\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.94E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.20.144 a33135aa-cfef-4d19-9442-d9e5f285b142 2020-12-14 23:22:02.04528 48393 4891 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1229\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.969E3\nmove_type: '1'\nsale_id: 3696\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1770\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.97E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1770 189.186.20.144 31d1e004-7ecc-403d-bf27-7f10f04d0429 2020-12-14 23:22:09.427883 48394 3697 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1229\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-12-14\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1771\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 911794a7-2d7b-459c-9881-e52c79dcfa92 2020-12-14 23:33:57.4571 48395 2503 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.20.144 911794a7-2d7b-459c-9881-e52c79dcfa92 2020-12-14 23:33:57.48734 48396 3697 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 59ff8395-f109-4063-8af1-521b0261fba1 2020-12-14 23:34:13.55618 48397 4892 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1229\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 3697\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1771\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1771 189.186.20.144 59ff8395-f109-4063-8af1-521b0261fba1 2020-12-14 23:34:13.575654 48398 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-14 19:42:50.562483000 Z\n- &1 2020-12-14 21:53:28.214353000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-14 23:44:12.018642891 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934370\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\nsign_in_count:\n- 2154\n- 2155\n 4310 \N 189.186.89.234 8818c756-a3c1-4750-b267-25eb9f1bdcf4 2020-12-14 23:44:12.027146 48399 4 User \N \N 4 User \N update ---\nunique_session_id:\n- vCxqvy3-qii1BuYW_Gvh\n- tY_MzRBMPF-KGin--j1-\n 4311 \N 189.186.89.234 8818c756-a3c1-4750-b267-25eb9f1bdcf4 2020-12-14 23:44:12.044845 48400 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-13 01:30:55.323956000 Z\n- &1 2020-12-14 21:58:08.052938000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-14 23:54:48.662517617 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946338\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\nsign_in_count:\n- 396\n- 397\n 795 \N 189.186.89.234 0ab2608d-0b93-42fc-903c-35f2f054c0d0 2020-12-14 23:54:48.669534 48401 18 User \N \N 18 User \N update ---\nunique_session_id:\n- wxa2Vz-nTfQA2PfEZAVJ\n- LBAL_mUdrZyiZbzaHzEt\n 796 \N 189.186.89.234 0ab2608d-0b93-42fc-903c-35f2f054c0d0 2020-12-14 23:54:48.685334 48402 3698 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1230\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-12-14\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1007\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 7ff56826-8767-4066-a211-fdc9fa66dcb4 2020-12-15 00:04:35.954019 48403 2638 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 4 \N 189.186.89.234 7ff56826-8767-4066-a211-fdc9fa66dcb4 2020-12-15 00:04:35.983014 48404 3698 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 a5de4a3a-2d5e-4263-bd39-cc8819326f5d 2020-12-15 00:04:42.855276 48405 4893 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1230\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2099E4\nmove_type: '1'\nsale_id: 3698\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1007\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1007 189.186.89.234 a5de4a3a-2d5e-4263-bd39-cc8819326f5d 2020-12-15 00:04:42.875699 48406 4894 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1229\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 3545\ncardnumber: 4984\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1691 189.186.20.144 b3be5fb2-d165-47dc-8f58-b7a1f5b3dc57 2020-12-15 00:52:27.645339 48407 3545 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 9bb6a9ec-b290-486b-bd00-d9d6116b7b41 2020-12-15 00:52:30.669371 48503 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5yKMuZa_21MynAeKXUiP\n- ChHm2HvodN7_kyfdyXYi\n 4325 \N 189.186.89.234 76a43c98-8e27-4136-bf92-edfab2ad4538 2020-12-15 21:54:58.356323 48408 3699 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1230\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-14\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1008\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 fee62cfc-ac79-4405-9ebf-9ed1119496c8 2020-12-15 00:55:05.497846 48409 2631 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.89.234 fee62cfc-ac79-4405-9ebf-9ed1119496c8 2020-12-15 00:55:05.527917 48410 3699 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 de1bac99-9f99-43f9-a0b1-05e3b7e52450 2020-12-15 00:55:14.570043 48411 4895 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1230\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 3699\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1008\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1008 189.186.89.234 de1bac99-9f99-43f9-a0b1-05e3b7e52450 2020-12-15 00:55:14.591559 48412 4896 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1229\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1728E4\nmove_type: '1'\nsale_id: 3496\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1728E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1668 189.186.20.144 bc5c3fb1-5fae-422e-ae46-264529aa2b3b 2020-12-15 01:01:45.502886 48413 3496 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 e888ab10-d850-4bfe-a60f-8c3ff9f64a7d 2020-12-15 01:01:46.836469 48414 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-14 21:53:28.214353000 Z\n- &1 2020-12-14 23:44:12.018642000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-15 01:06:18.267969148 Z\nsign_in_count:\n- 2155\n- 2156\n 4312 \N 189.186.89.234 e219994b-8480-4bc6-b5f2-cd9e80d1c692 2020-12-15 01:06:18.276215 48415 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tY_MzRBMPF-KGin--j1-\n- EyfQc21NAD3otC4WWAie\n 4313 \N 189.186.89.234 e219994b-8480-4bc6-b5f2-cd9e80d1c692 2020-12-15 01:06:18.296347 48416 3700 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1229\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-12-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1772\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 72b3aab0-9951-4483-9e52-73e6ce11468e 2020-12-15 01:10:25.537094 48417 1599 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.20.144 72b3aab0-9951-4483-9e52-73e6ce11468e 2020-12-15 01:10:25.563699 48418 3700 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 42d2efb9-9728-476c-9cba-6409e5fd9b61 2020-12-15 01:10:32.337445 48419 4897 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1229\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 3700\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1772\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1772 189.186.20.144 42d2efb9-9728-476c-9cba-6409e5fd9b61 2020-12-15 01:10:32.367196 48420 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-14 23:44:12.018642000 Z\n- &1 2020-12-15 01:06:18.267969000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-15 01:18:19.731747167 Z\nsign_in_count:\n- 2156\n- 2157\n 4314 \N 189.186.89.234 5d0fb4b3-9adb-4b3c-aa67-84121c763616 2020-12-15 01:18:19.738392 48421 4 User \N \N 4 User \N update ---\nunique_session_id:\n- EyfQc21NAD3otC4WWAie\n- NXZT-v56R3eYRF8sC3Td\n 4315 \N 189.186.89.234 5d0fb4b3-9adb-4b3c-aa67-84121c763616 2020-12-15 01:18:19.753779 48422 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-14 21:58:08.052938000 Z\n- &1 2020-12-14 23:54:48.662517000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-15 01:18:37.929394879 Z\nsign_in_count:\n- 397\n- 398\n 797 \N 189.186.89.234 f031d65d-db2f-4fed-be0e-bf3523d20521 2020-12-15 01:18:37.935687 48423 18 User \N \N 18 User \N update ---\nunique_session_id:\n- LBAL_mUdrZyiZbzaHzEt\n- 4CMYe9wLpfz2DyjfEst3\n 798 \N 189.186.89.234 f031d65d-db2f-4fed-be0e-bf3523d20521 2020-12-15 01:18:37.967093 48424 3642 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV3-V-976 cancelada. 189.186.89.234 88db1cbf-d00d-4eb8-a4fc-c6f3b4c109c7 2020-12-15 01:19:19.3823 48425 4898 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1230\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '0'\nsale_id: 3642\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.89.234 88db1cbf-d00d-4eb8-a4fc-c6f3b4c109c7 2020-12-15 01:19:19.410831 48426 2506 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.1E2\n 15 \N 189.186.89.234 88db1cbf-d00d-4eb8-a4fc-c6f3b4c109c7 2020-12-15 01:19:19.436771 48427 3701 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1230\namount: !ruby/object:BigDecimal 18:0.568E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.568E3\nstatus: 0\ndate_sale: 2020-12-14\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1009\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 bb3e10e2-c292-407a-94ba-aa7805b8e45f 2020-12-15 01:20:00.397353 48428 2118 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.89.234 bb3e10e2-c292-407a-94ba-aa7805b8e45f 2020-12-15 01:20:00.424363 48429 2425 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.89.234 bb3e10e2-c292-407a-94ba-aa7805b8e45f 2020-12-15 01:20:00.452032 48430 3701 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 f9f98475-cc4b-488b-a211-70e6817d3dec 2020-12-15 01:20:04.442196 48431 4899 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1230\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.568E3\nmove_type: '1'\nsale_id: 3701\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1009\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.568E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1009 189.186.89.234 f9f98475-cc4b-488b-a211-70e6817d3dec 2020-12-15 01:20:04.474827 48432 3216 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.89.234 3c47df18-b865-4e10-9781-e4efe97ebcb4 2020-12-15 01:20:46.19896 48434 3702 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1230\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-12-14\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1010\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 3d6911e9-24f5-4bf7-8fe8-e7eb461358e8 2020-12-15 01:43:47.571734 48435 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 60 \N 189.186.89.234 3d6911e9-24f5-4bf7-8fe8-e7eb461358e8 2020-12-15 01:43:47.603247 48436 3702 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 167a758a-a1e5-420a-9087-a0b8eb6bb1fc 2020-12-15 01:43:57.107232 48437 4900 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1230\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3702\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1010\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '2122'\n 1 movimiento de efectivo por venta con folio PV3-V-1010 189.186.89.234 167a758a-a1e5-420a-9087-a0b8eb6bb1fc 2020-12-15 01:43:57.127578 48438 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-15 01:06:18.267969000 Z\n- &1 2020-12-15 01:18:19.731747000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-15 02:09:44.626007245 Z\nsign_in_count:\n- 2157\n- 2158\n 4316 \N 189.186.89.234 dc3cb0b3-3041-4c67-8255-8b42a08f7875 2020-12-15 02:09:44.654219 48439 4 User \N \N 4 User \N update ---\nunique_session_id:\n- NXZT-v56R3eYRF8sC3Td\n- MmZpzofQx2v2GoHDq6Cs\n 4317 \N 189.186.89.234 dc3cb0b3-3041-4c67-8255-8b42a08f7875 2020-12-15 02:09:44.680164 48440 370 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1229\nquantity: !ruby/object:BigDecimal 18:0.1E3\nstatus: 1\nobservations: señores silla de ruedas\nexpense_date: 2020-12-14\nexpense_code: PV1-E-256\n 1 Egreso por 100.0 registrado 189.186.20.144 b46f3035-233d-4220-8fcc-1816779e7ec2 2020-12-15 02:29:55.113018 48441 4901 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1229\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 370\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.20.144 b46f3035-233d-4220-8fcc-1816779e7ec2 2020-12-15 02:29:55.145383 48442 1255 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1229\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.7761E4\namount_out: !ruby/object:BigDecimal 18:0.1E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.517E4\ncash_fund: !ruby/object:BigDecimal 18:0.1235E4\nphysical_cash: !ruby/object:BigDecimal 18:0.6405E4\nobservations: "$5170 - $270 aretes Rocio queda en sobre $4900"\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.144 564deda7-bc23-4a85-8550-068f84aeaeda 2020-12-15 02:30:59.305502 48443 1229 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.144 564deda7-bc23-4a85-8550-068f84aeaeda 2020-12-15 02:30:59.320367 48444 3703 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1230\namount: !ruby/object:BigDecimal 18:0.289E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.289E3\nstatus: 0\ndate_sale: 2020-12-14\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1011\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 43a2f4e8-ff19-4f0c-b17d-08adc442aaaf 2020-12-15 02:41:20.398506 48445 2400 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.89.234 43a2f4e8-ff19-4f0c-b17d-08adc442aaaf 2020-12-15 02:41:20.451067 48446 3703 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-1011 cancelada. 189.186.89.234 e204ae0f-f754-4c66-af9f-a1e8881f1fc5 2020-12-15 02:41:47.66056 48447 2400 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.89.234 e204ae0f-f754-4c66-af9f-a1e8881f1fc5 2020-12-15 02:41:47.69228 48448 3704 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1230\namount: !ruby/object:BigDecimal 18:0.149E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.149E3\nstatus: 0\ndate_sale: 2020-12-14\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1012\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 cd83c1ac-2a7c-415c-9702-23860efec8dd 2020-12-15 02:42:01.629934 48449 2110 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.89.234 cd83c1ac-2a7c-415c-9702-23860efec8dd 2020-12-15 02:42:01.655321 48450 3704 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 9b6850f0-b467-44f9-8e94-359a25cc7ddc 2020-12-15 02:42:05.493365 48451 4902 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1230\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.149E3\nmove_type: '1'\nsale_id: 3704\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1012\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1012 189.186.89.234 9b6850f0-b467-44f9-8e94-359a25cc7ddc 2020-12-15 02:42:05.515078 48452 1256 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1230\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.14516E5\namount_out: !ruby/object:BigDecimal 18:0.5E3\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.1153E5\ncash_fund: !ruby/object:BigDecimal 18:0.995E3\nphysical_cash: !ruby/object:BigDecimal 18:0.12525E5\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.89.234 e03081de-c3a6-48ae-b01a-603f9c3b4386 2020-12-15 02:53:12.873175 48453 1230 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.89.234 e03081de-c3a6-48ae-b01a-603f9c3b4386 2020-12-15 02:53:12.890795 48454 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-12 18:51:40.564935000 Z\n- &1 2020-12-14 20:49:34.245629000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-15 17:22:03.155407455 Z\nsign_in_count:\n- 729\n- 730\n 1463 \N 189.186.20.144 a643d95c-2fee-4212-b20b-49b1577946c3 2020-12-15 17:22:03.183095 48455 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 1MYzy6BHeTzCK2H9WFw2\n- NzW8nA2KfQApyZz-t8vr\n 1464 \N 189.186.20.144 a643d95c-2fee-4212-b20b-49b1577946c3 2020-12-15 17:22:03.205394 48456 1231 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1235E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1235.0 189.186.20.144 5d625aff-31de-4cd7-bd1b-3c28a18e9842 2020-12-15 17:24:45.369011 48504 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-15 18:11:29.199408000 Z\n- &1 2020-12-15 21:41:38.909407000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-15 22:17:54.647822194 Z\nsign_in_count:\n- 400\n- 401\n 803 \N 189.186.89.234 75bf8251-7281-4968-ac08-f493fe187964 2020-12-15 22:17:54.66746 48457 3705 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1231\namount: !ruby/object:BigDecimal 18:0.2317E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2317E4\nstatus: 0\ndate_sale: 2020-12-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1773\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 6cc4bcda-4fe9-475a-83ef-b52457d5fdfa 2020-12-15 17:28:21.760633 48458 1877 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.20.144 6cc4bcda-4fe9-475a-83ef-b52457d5fdfa 2020-12-15 17:28:21.789617 48459 1241 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 15 \N 189.186.20.144 6cc4bcda-4fe9-475a-83ef-b52457d5fdfa 2020-12-15 17:28:21.82174 48460 1411 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 24 \N 189.186.20.144 6cc4bcda-4fe9-475a-83ef-b52457d5fdfa 2020-12-15 17:28:21.844533 48461 3705 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 d2bf6521-df49-4405-be52-1839502350e3 2020-12-15 17:28:27.689707 48462 4903 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1231\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2317E4\nmove_type: '1'\nsale_id: 3705\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1773\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2317E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1773 189.186.20.144 d2bf6521-df49-4405-be52-1839502350e3 2020-12-15 17:28:27.712953 48463 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-15 01:18:19.731747000 Z\n- &1 2020-12-15 02:09:44.626007000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-15 18:10:00.921971437 Z\nsign_in_count:\n- 2158\n- 2159\n 4318 \N 189.186.89.234 06b2b581-10b0-4cac-9fd7-e6b656235628 2020-12-15 18:10:00.931288 48464 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MmZpzofQx2v2GoHDq6Cs\n- 9S2inPZDMZ4h4TfxpMCM\n 4319 \N 189.186.89.234 06b2b581-10b0-4cac-9fd7-e6b656235628 2020-12-15 18:10:00.957084 48465 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-14 23:54:48.662517000 Z\n- &1 2020-12-15 01:18:37.929394000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-15 18:11:29.199408420 Z\nsign_in_count:\n- 398\n- 399\n 799 \N 189.186.89.234 fc552871-244b-4c5f-8348-1e1f94f3f8b8 2020-12-15 18:11:29.205143 48466 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 4CMYe9wLpfz2DyjfEst3\n- fqAhPQMqtT_znyH3cr_J\n 800 \N 189.186.89.234 fc552871-244b-4c5f-8348-1e1f94f3f8b8 2020-12-15 18:11:29.220081 48467 1232 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.995E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 995.0 189.186.89.234 ba39a987-469d-4af9-909f-de251a6c7ece 2020-12-15 18:12:41.76579 48468 476 Customer \N \N 18 User \N create ---\nnick_name: VALERIA VESTIDO ROJO\nphone: "(667) 252-8875"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente VALERIA VESTIDO ROJO fue registrado. 189.186.89.234 b9b8eb22-91a2-44a7-9999-71c69c387c8e 2020-12-15 18:13:05.457877 48469 3706 Sale \N \N 18 User \N create ---\ncustomer_id: 476\nuser_id: 18\nopen_cash_register_id: 1232\namount: !ruby/object:BigDecimal 18:0.1045E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1045E4\nstatus: 0\ndate_sale: 2020-12-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1013\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 25497637-b3bd-4cb7-88bd-609c665f839d 2020-12-15 18:13:24.811376 48470 2621 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.89.234 25497637-b3bd-4cb7-88bd-609c665f839d 2020-12-15 18:13:24.836054 48471 3706 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 1acb2e5c-6f74-4a51-b9b9-42036cc14137 2020-12-15 18:13:33.508761 48472 4904 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1232\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 3706\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1013\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1565'\n 1 movimiento de efectivo por venta con folio PV3-V-1013 189.186.89.234 1acb2e5c-6f74-4a51-b9b9-42036cc14137 2020-12-15 18:13:33.530195 48473 4904 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1232\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3706\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1013\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1565'\n 2 \N 189.186.89.234 8e274330-ab8e-486a-a782-122ea2f93ee1 2020-12-15 18:13:36.759469 48474 4905 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1232\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 3706\ncardnumber: 5599\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1013\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1565'\n 1 movimiento de efectivo por venta con folio PV3-V-1013 189.186.89.234 dd85cf97-0e22-4fcc-8353-cae3b7895419 2020-12-15 18:13:46.289121 48475 3706 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-1013 cancelada. 189.186.89.234 983d704e-c420-4456-a646-982513bbccfe 2020-12-15 18:13:52.909031 48476 4905 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1232\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3706\ncardnumber: 5599\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1013\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1565'\n 2 \N 189.186.89.234 983d704e-c420-4456-a646-982513bbccfe 2020-12-15 18:13:52.939249 48477 2621 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.89.234 983d704e-c420-4456-a646-982513bbccfe 2020-12-15 18:13:52.972892 48478 3707 Sale \N \N 18 User \N create ---\ncustomer_id: 476\nuser_id: 18\nopen_cash_register_id: 1232\namount: !ruby/object:BigDecimal 18:0.1045E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1045E4\nstatus: 0\ndate_sale: 2020-12-15\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-1014\nexpiration_date: 2021-01-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 5cb303f4-3179-4173-8b42-63923b44bf9b 2020-12-15 18:14:12.795384 48479 2621 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.89.234 5cb303f4-3179-4173-8b42-63923b44bf9b 2020-12-15 18:14:12.833319 48480 4906 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1232\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3707\ncardnumber: 5555\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-1014\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1014 189.186.89.234 908d49ef-1835-46df-91da-e881f071d669 2020-12-15 18:14:37.683988 48481 3707 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.89.234 13306675-2a8d-470a-a098-a322a0a6e66a 2020-12-15 18:14:39.31317 48482 4907 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1232\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.598E3\nmove_type: '1'\nsale_id: 3646\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.598E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-980 189.186.89.234 b71c525f-db53-43cc-9640-87bd333b5396 2020-12-15 18:29:43.086325 48483 3646 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.89.234 7ce2f833-cf54-447a-944b-69cd887518bf 2020-12-15 18:29:44.144524 48484 30 User \N \N 30 User \N update ---\nlast_sign_in_at:\n- 2020-11-04 00:57:32.918989000 Z\n- &1 2020-11-24 17:34:09.318342000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-15 19:20:47.972581647 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106904\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107722\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107722\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183144022\n mask_addr: 4294967295\nsign_in_count:\n- 17\n- 18\n 36 \N 189.186.236.86 92ac7968-b54e-4038-977c-935790cfd811 2020-12-15 19:20:47.982447 48485 30 User \N \N 30 User \N update ---\nunique_session_id:\n- WTCfdmdxG94xagsd7yjd\n- tNPhXQchiBe28w7CDYpX\n 37 \N 189.186.236.86 92ac7968-b54e-4038-977c-935790cfd811 2020-12-15 19:20:48.003463 48486 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-15 02:09:44.626007000 Z\n- &1 2020-12-15 18:10:00.921971000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-15 19:43:12.528783611 Z\nsign_in_count:\n- 2159\n- 2160\n 4320 \N 189.186.89.234 4957fc80-cbdd-4e01-b08d-2d795bfe6272 2020-12-15 19:43:12.534411 48487 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 9S2inPZDMZ4h4TfxpMCM\n- jRN-bXKXkzmLckn7LUMs\n 4321 \N 189.186.89.234 4957fc80-cbdd-4e01-b08d-2d795bfe6272 2020-12-15 19:43:12.549801 48488 4908 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1232\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 3575\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-955 189.186.89.234 13bfa4b9-865e-4628-8050-c97ced9d1c19 2020-12-15 19:54:04.335548 48489 3575 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.89.234 63a3ba05-4213-4797-a113-2497377ad834 2020-12-15 19:54:27.400173 48490 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-15 18:10:00.921971000 Z\n- &1 2020-12-15 19:43:12.528783000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-15 19:57:33.608860327 Z\nsign_in_count:\n- 2160\n- 2161\n 4322 \N 189.186.89.234 636f9981-8658-4503-972b-39a4287e4abe 2020-12-15 19:57:33.615371 48491 4 User \N \N 4 User \N update ---\nunique_session_id:\n- jRN-bXKXkzmLckn7LUMs\n- 5yKMuZa_21MynAeKXUiP\n 4323 \N 189.186.89.234 636f9981-8658-4503-972b-39a4287e4abe 2020-12-15 19:57:33.634253 48492 3708 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1231\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1774\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 4b51a58a-aac5-4bc9-afec-562f0bc6693f 2020-12-15 20:07:02.908267 48493 2632 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.20.144 4b51a58a-aac5-4bc9-afec-562f0bc6693f 2020-12-15 20:07:02.947536 48494 3708 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 0fbb3144-9d16-4102-8b5b-2c31691e3d3b 2020-12-15 20:07:13.490737 48495 4909 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1231\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3708\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1774\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1774 189.186.20.144 0fbb3144-9d16-4102-8b5b-2c31691e3d3b 2020-12-15 20:07:13.52018 48496 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-15 01:18:37.929394000 Z\n- &1 2020-12-15 18:11:29.199408000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-15 21:41:38.909407713 Z\nsign_in_count:\n- 399\n- 400\n 801 \N 189.186.89.234 303f6c0b-aec3-4941-be92-985447ad312d 2020-12-15 21:41:38.915292 48497 18 User \N \N 18 User \N update ---\nunique_session_id:\n- fqAhPQMqtT_znyH3cr_J\n- yV3ExFL7qLB9U8cRMWqJ\n 802 \N 189.186.89.234 303f6c0b-aec3-4941-be92-985447ad312d 2020-12-15 21:41:38.928747 48498 3709 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1232\namount: !ruby/object:BigDecimal 18:0.811E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.811E3\nstatus: 0\ndate_sale: 2020-12-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1015\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 87f1f016-a94c-4f8b-b988-94c48b7eca31 2020-12-15 21:42:20.327911 48499 2575 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.89.234 87f1f016-a94c-4f8b-b988-94c48b7eca31 2020-12-15 21:42:20.420772 48500 3709 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 7b1c7030-38ee-44f8-b412-088d2f9610a7 2020-12-15 21:42:23.688623 48501 4910 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1232\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.811E3\nmove_type: '1'\nsale_id: 3709\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1015\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.811E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1015 189.186.89.234 7b1c7030-38ee-44f8-b412-088d2f9610a7 2020-12-15 21:42:23.709105 48502 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-15 19:43:12.528783000 Z\n- &1 2020-12-15 19:57:33.608860000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-15 21:54:58.313102334 Z\nsign_in_count:\n- 2161\n- 2162\n 4324 \N 189.186.89.234 76a43c98-8e27-4136-bf92-edfab2ad4538 2020-12-15 21:54:58.333119 48505 18 User \N \N 18 User \N update ---\nunique_session_id:\n- yV3ExFL7qLB9U8cRMWqJ\n- zLKyY4et-btmCBYgjhUZ\n 804 \N 189.186.89.234 75bf8251-7281-4968-ac08-f493fe187964 2020-12-15 22:17:54.687595 48506 1550 Product \N \N 18 User \N create ---\nsku: BOL-1550\nname: 2BLCO20738\ndescription: CROSSBODY NEGRO VERDE BLANCO Y NUDE\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170845112'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1550 fue creado. 189.186.89.234 bcc34628-37fb-4405-bd03-cbe904d3824f 2020-12-15 22:20:16.411226 48507 2642 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1550\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.89.234 bcc34628-37fb-4405-bd03-cbe904d3824f 2020-12-15 22:20:16.469453 48508 502 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-147\namount: !ruby/object:BigDecimal 18:0.7495E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.7495E4\nobservations: ''\npurchase_date: 2020-12-15\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-147 por $ 7495.0 MXN creada. 189.186.89.234 1537af59-9aaa-4476-aeed-7f08d18d93fe 2020-12-15 22:20:21.846181 48509 2642 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E2\n 2 \N 189.186.89.234 1537af59-9aaa-4476-aeed-7f08d18d93fe 2020-12-15 22:20:21.871346 48510 3710 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1232\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1016\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 c3551bd0-8865-4082-bb84-f1ec7ba5b5b3 2020-12-15 22:20:40.313496 48511 2642 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 3 \N 189.186.89.234 c3551bd0-8865-4082-bb84-f1ec7ba5b5b3 2020-12-15 22:20:40.344003 48512 3710 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 af062423-df60-4d07-a2ea-1325256bbc62 2020-12-15 22:20:55.876915 48513 4911 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1232\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 3710\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1016\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1016 189.186.89.234 af062423-df60-4d07-a2ea-1325256bbc62 2020-12-15 22:20:55.899032 48514 759 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-15\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.89.234 d677781d-0c28-45e0-82d4-985d0450ac1e 2020-12-15 22:25:12.273552 48515 2493 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.89.234 d677781d-0c28-45e0-82d4-985d0450ac1e 2020-12-15 22:25:12.297777 48516 2353 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.89.234 d677781d-0c28-45e0-82d4-985d0450ac1e 2020-12-15 22:25:12.317782 48517 2643 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1479\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.89.234 d677781d-0c28-45e0-82d4-985d0450ac1e 2020-12-15 22:25:12.339143 48518 2644 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1164\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.89.234 d677781d-0c28-45e0-82d4-985d0450ac1e 2020-12-15 22:25:12.359859 48519 758 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-15\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.89.234 6708765d-b565-471a-9302-6142710230f2 2020-12-15 22:25:20.587001 48520 2582 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.89.234 6708765d-b565-471a-9302-6142710230f2 2020-12-15 22:25:20.608633 48521 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-15 19:57:33.608860000 Z\n- &1 2020-12-15 21:54:58.313102000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-15 22:27:03.746413616 Z\nsign_in_count:\n- 2162\n- 2163\n 4326 \N 189.186.89.234 d3eec1a3-05ed-4938-b081-b045eff0611e 2020-12-15 22:27:03.75231 48522 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ChHm2HvodN7_kyfdyXYi\n- A8ywFrgXGAE_uXpLrZAk\n 4327 \N 189.186.89.234 d3eec1a3-05ed-4938-b081-b045eff0611e 2020-12-15 22:27:03.776803 48523 503 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-217\namount: !ruby/object:BigDecimal 18:0.14991E5\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.14991E5\nobservations: ''\npurchase_date: 2020-12-15\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-217 por $ 14991.0 MXN creada. 189.186.89.234 2981671a-0e16-4e51-9c19-46198e979e5d 2020-12-15 22:29:20.47665 48524 2632 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.6E1\n 4 \N 189.186.89.234 2981671a-0e16-4e51-9c19-46198e979e5d 2020-12-15 22:29:20.500434 48525 2645 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1549\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.5E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.89.234 2981671a-0e16-4e51-9c19-46198e979e5d 2020-12-15 22:29:20.531429 48526 2646 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1550\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.8E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.89.234 2981671a-0e16-4e51-9c19-46198e979e5d 2020-12-15 22:29:20.561471 48527 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-15 21:41:38.909407000 Z\n- &1 2020-12-15 22:17:54.647822000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-15 22:47:28.610134360 Z\nsign_in_count:\n- 401\n- 402\n 805 \N 189.186.89.234 e7e71567-6ed3-4700-85b9-9aab7fab5b7f 2020-12-15 22:47:28.615841 48528 18 User \N \N 18 User \N update ---\nunique_session_id:\n- zLKyY4et-btmCBYgjhUZ\n- UhJeaz_3bFqCti9ZvBfg\n 806 \N 189.186.89.234 e7e71567-6ed3-4700-85b9-9aab7fab5b7f 2020-12-15 22:47:28.630251 48529 3711 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1232\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1017\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 8d699c7a-a581-477e-8356-90f888875b86 2020-12-15 22:48:14.061473 48530 2631 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.89.234 8d699c7a-a581-477e-8356-90f888875b86 2020-12-15 22:48:14.091048 48531 3711 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 fa7f3375-24e4-4ec3-89d4-0a7a61feb6e1 2020-12-15 22:48:52.787202 48532 4912 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1232\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 3711\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1017\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1017 189.186.89.234 fa7f3375-24e4-4ec3-89d4-0a7a61feb6e1 2020-12-15 22:48:52.807538 48533 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-15 21:54:58.313102000 Z\n- &1 2020-12-15 22:27:03.746413000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-15 22:52:01.912056317 Z\nsign_in_count:\n- 2163\n- 2164\n 4328 \N 189.186.89.234 e63e3d25-c8d9-4169-be0b-467017cbb123 2020-12-15 22:52:01.917774 48534 4 User \N \N 4 User \N update ---\nunique_session_id:\n- A8ywFrgXGAE_uXpLrZAk\n- 7zi7KvszEe5yzkYfyhKi\n 4329 \N 189.186.89.234 e63e3d25-c8d9-4169-be0b-467017cbb123 2020-12-15 22:52:01.932986 48535 3712 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1231\namount: !ruby/object:BigDecimal 18:0.111983E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2020-12-15\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1775\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 80020ab9-0012-463e-82bf-1d296259d213 2020-12-15 22:56:31.298864 48536 170 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.20.144 80020ab9-0012-463e-82bf-1d296259d213 2020-12-15 22:56:31.326663 48537 3712 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 02f9560c-22a3-4223-aa9b-c6eabe792964 2020-12-15 22:56:39.509316 48538 4913 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1231\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 3712\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1775\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1775 189.186.20.144 02f9560c-22a3-4223-aa9b-c6eabe792964 2020-12-15 22:56:39.529595 48539 504 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-218\namount: !ruby/object:BigDecimal 18:0.2585E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2585E4\nobservations: ''\npurchase_date: 2020-12-15\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-218 por $ 2585.0 MXN creada. 189.186.20.144 8b0c92f0-7f7f-4b7e-b5bd-1b844a55488b 2020-12-15 23:11:41.614582 48540 2613 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.20.144 8b0c92f0-7f7f-4b7e-b5bd-1b844a55488b 2020-12-15 23:11:41.63832 48541 3713 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1231\namount: !ruby/object:BigDecimal 18:0.1389E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1389E4\nstatus: 0\ndate_sale: 2020-12-15\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1776\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 8967b93e-c871-42ed-b09c-36e0e8022f3e 2020-12-15 23:15:45.150423 48542 2613 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.20.144 8967b93e-c871-42ed-b09c-36e0e8022f3e 2020-12-15 23:15:45.189453 48543 3713 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 fd59b9b6-b3c0-455f-8b20-b55fb7a072ad 2020-12-15 23:15:50.804275 48544 4914 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1231\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1389E4\nmove_type: '1'\nsale_id: 3713\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1776\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1389E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1776 189.186.20.144 fd59b9b6-b3c0-455f-8b20-b55fb7a072ad 2020-12-15 23:15:50.825983 48545 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-15 22:17:54.647822000 Z\n- &1 2020-12-15 22:47:28.610134000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-15 23:30:12.349105042 Z\nsign_in_count:\n- 402\n- 403\n 807 \N 189.186.89.234 fb0d6f63-7c4a-4d11-8e8b-1c0fee9c726b 2020-12-15 23:30:12.375419 48546 18 User \N \N 18 User \N update ---\nunique_session_id:\n- UhJeaz_3bFqCti9ZvBfg\n- 6q8GgXx7ErVKSDS3ySir\n 808 \N 189.186.89.234 fb0d6f63-7c4a-4d11-8e8b-1c0fee9c726b 2020-12-15 23:30:12.399297 48547 3714 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1232\namount: !ruby/object:BigDecimal 18:0.2638E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2638E4\nstatus: 0\ndate_sale: 2020-12-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1018\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 d2dea1c3-82d4-4382-b75b-8faa9bd33d3d 2020-12-15 23:31:20.703477 48548 2581 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.89.234 d2dea1c3-82d4-4382-b75b-8faa9bd33d3d 2020-12-15 23:31:20.736685 48549 2573 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.89.234 d2dea1c3-82d4-4382-b75b-8faa9bd33d3d 2020-12-15 23:31:20.780912 48550 3714 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 399d5a5f-8683-4481-a39b-96644126d12f 2020-12-15 23:32:01.877046 48551 4915 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1232\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2638E4\nmove_type: '1'\nsale_id: 3714\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1018\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2638E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1018 189.186.89.234 399d5a5f-8683-4481-a39b-96644126d12f 2020-12-15 23:32:01.898145 48552 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-15 22:27:03.746413000 Z\n- &1 2020-12-15 22:52:01.912056000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-15 23:38:30.939055386 Z\nsign_in_count:\n- 2164\n- 2165\n 4330 \N 189.186.89.234 7299461e-8b22-4454-a220-27cfaf96a8fa 2020-12-15 23:38:30.947501 48553 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7zi7KvszEe5yzkYfyhKi\n- mL2xQ_x6YASbo98kzn6g\n 4331 \N 189.186.89.234 7299461e-8b22-4454-a220-27cfaf96a8fa 2020-12-15 23:38:30.989145 48554 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-12 19:03:28.780822000 Z\n- &1 2020-12-13 19:21:40.279670000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-15 23:40:21.749475831 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729367\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729367\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 427\n- 428\n 856 \N 189.186.20.144 6f192d6b-3bba-4a97-953c-bb8b81998ee4 2020-12-15 23:40:21.757753 48555 1 User \N \N 1 User \N update ---\nunique_session_id:\n- uTvjT4mW9ZXnVxpXrQV-\n- 71NHN2GbUNMSKTgqxSuR\n 857 \N 189.186.20.144 6f192d6b-3bba-4a97-953c-bb8b81998ee4 2020-12-15 23:40:21.77851 48556 2600 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.89.234 646b533f-7a2d-4b69-9145-1d6cdbad6b42 2020-12-16 00:08:15.962196 48557 761 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-12-15\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.89.234 a69accba-1467-43e6-9112-8c84ecec4617 2020-12-16 00:08:19.639359 48558 761 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-15\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 189.186.20.144 d6bd4b26-88c3-4760-8885-43f9dd2f9bba 2020-12-16 00:11:58.004531 48559 2647 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1530\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.20.144 d6bd4b26-88c3-4760-8885-43f9dd2f9bba 2020-12-16 00:11:58.02475 48560 3715 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1231\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-12-15\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1777\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 f232f6ad-e2d5-4d7f-aed8-470095e95cad 2020-12-16 00:13:52.364071 48561 2647 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.20.144 f232f6ad-e2d5-4d7f-aed8-470095e95cad 2020-12-16 00:13:52.390486 48562 3715 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 7eb8d795-ebae-48a8-8c44-3ded2a9a414c 2020-12-16 00:13:57.897281 48563 4916 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1231\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 3715\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1777\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1777 189.186.20.144 7eb8d795-ebae-48a8-8c44-3ded2a9a414c 2020-12-16 00:13:57.916667 48564 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-15 22:47:28.610134000 Z\n- &1 2020-12-15 23:30:12.349105000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-16 01:13:06.489274362 Z\nsign_in_count:\n- 403\n- 404\n 809 \N 189.186.89.234 89f0bd90-0802-440b-8769-bb79709cf4cc 2020-12-16 01:13:06.507846 48565 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 6q8GgXx7ErVKSDS3ySir\n- nx7NsrCstEYyqLYfyw3Z\n 810 \N 189.186.89.234 89f0bd90-0802-440b-8769-bb79709cf4cc 2020-12-16 01:13:06.529451 48566 3716 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1231\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-12-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1778\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 1c6a9e8a-285c-4238-8c62-c6e23efc4f2f 2020-12-16 01:15:00.941904 48567 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 22 \N 189.186.20.144 1c6a9e8a-285c-4238-8c62-c6e23efc4f2f 2020-12-16 01:15:00.970518 48568 3716 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 0ab3ba90-630b-48ff-a2cb-d0e3c80541ca 2020-12-16 01:15:18.957488 48569 4917 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1231\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 3716\ncardnumber: 2862\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1778\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1778 189.186.20.144 0ab3ba90-630b-48ff-a2cb-d0e3c80541ca 2020-12-16 01:15:19.016503 48570 3717 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1232\namount: !ruby/object:BigDecimal 18:0.2998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2998E4\nstatus: 0\ndate_sale: 2020-12-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1019\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 42832d30-c1af-4f7e-a7ea-8b86989773ef 2020-12-16 01:16:22.345271 48571 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 36 \N 189.186.89.234 42832d30-c1af-4f7e-a7ea-8b86989773ef 2020-12-16 01:16:22.372123 48572 2506 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E2\n- !ruby/object:BigDecimal 18:0.9E1\n 16 \N 189.186.89.234 42832d30-c1af-4f7e-a7ea-8b86989773ef 2020-12-16 01:16:22.395682 48573 3717 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 e13a1486-ae5e-4570-bd0c-20217dc7094e 2020-12-16 01:16:33.442632 48574 4918 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1232\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2298E4\nmove_type: '1'\nsale_id: 3717\ncardnumber: 1255\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1019\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1019 189.186.89.234 e13a1486-ae5e-4570-bd0c-20217dc7094e 2020-12-16 01:16:33.467 48620 2 User \N \N 2 User \N update ---\nunique_session_id:\n- NzW8nA2KfQApyZz-t8vr\n- Z-2UA-AuSh6ez-swpuFk\n 1466 \N 189.186.20.144 24e2a592-d22a-4d84-9bc8-99852deba2f3 2020-12-16 18:11:05.355321 48575 4918 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1232\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.2298E4\nmove_type: '1'\nsale_id: 3717\ncardnumber: 1255\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1019\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.89.234 347ef60c-3ed4-4a4f-b846-c9c0223272d8 2020-12-16 01:16:54.50762 48576 4919 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1232\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2998E4\nmove_type: '1'\nsale_id: 3717\ncardnumber: 1255\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1019\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1019 189.186.89.234 650da0aa-3878-452e-83d9-6cd23a1ac238 2020-12-16 01:17:08.618341 48577 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-15 22:52:01.912056000 Z\n- &1 2020-12-15 23:38:30.939055000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-16 01:19:18.756728357 Z\nsign_in_count:\n- 2165\n- 2166\n 4332 \N 189.186.89.234 ba94fcf0-bd8f-4ee2-bf44-7244c9be0fcd 2020-12-16 01:19:18.767364 48578 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mL2xQ_x6YASbo98kzn6g\n- y3TAg5UokT8CN-S5cqWn\n 4333 \N 189.186.89.234 ba94fcf0-bd8f-4ee2-bf44-7244c9be0fcd 2020-12-16 01:19:18.79592 48579 4920 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1232\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1099E4\nmove_type: '1'\nsale_id: 3629\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-974 189.186.89.234 c205ab71-51cf-4e86-a541-5bdda7310e8a 2020-12-16 01:51:10.686707 48580 3629 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.89.234 9e9ff106-fbc5-46d0-93ef-84a0a11c009c 2020-12-16 01:51:12.192495 48581 3718 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1232\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2020-12-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1020\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 3bfeb447-5c2e-4bb2-99b6-3db00a77bbc3 2020-12-16 01:58:17.444576 48582 2379 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 189.186.89.234 3bfeb447-5c2e-4bb2-99b6-3db00a77bbc3 2020-12-16 01:58:17.479738 48583 3718 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 656b3cc2-b669-4971-9801-9664fdc101d4 2020-12-16 01:58:21.019747 48584 4921 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1232\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1699E4\nmove_type: '1'\nsale_id: 3718\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1020\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1699E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1020 189.186.89.234 656b3cc2-b669-4971-9801-9664fdc101d4 2020-12-16 01:58:21.044286 48585 477 Customer \N \N 18 User \N create ---\nnick_name: MARILYN MEDINA\nphone: "(667) 413-6565"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARILYN MEDINA fue registrado. 189.186.89.234 5eff4a25-8d09-47c6-815a-a2ebd5ba68f6 2020-12-16 01:58:54.467141 48586 3719 Sale \N \N 18 User \N create ---\ncustomer_id: 477\nuser_id: 18\nopen_cash_register_id: 1232\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1021\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 7199c27f-9b94-4475-8f7e-54a6a2627d8e 2020-12-16 01:59:16.719339 48587 2631 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.89.234 7199c27f-9b94-4475-8f7e-54a6a2627d8e 2020-12-16 01:59:16.750609 48588 3719 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-1021 cancelada. 189.186.89.234 5f09f3b5-f992-432c-ac08-00d1899da5b4 2020-12-16 01:59:21.340787 48589 2631 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 189.186.89.234 5f09f3b5-f992-432c-ac08-00d1899da5b4 2020-12-16 01:59:21.365606 48590 3720 Sale \N \N 18 User \N create ---\ncustomer_id: 477\nuser_id: 18\nopen_cash_register_id: 1232\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-15\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-1022\nexpiration_date: 2021-01-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 2fd59f4a-235d-4ace-b0f3-0005045b5182 2020-12-16 01:59:42.69903 48591 2631 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 189.186.89.234 2fd59f4a-235d-4ace-b0f3-0005045b5182 2020-12-16 01:59:42.724549 48592 4922 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1232\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 3720\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-1022\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1022 189.186.89.234 d8a6164e-0799-4eec-ad74-ed5498ddd433 2020-12-16 01:59:49.845361 48593 3720 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.89.234 cb957ef7-34b3-4a26-b796-3d48495de475 2020-12-16 01:59:50.787795 48594 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-13 19:21:40.279670000 Z\n- &1 2020-12-15 23:40:21.749475000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-16 02:06:54.890856104 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729367\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\nsign_in_count:\n- 428\n- 429\n 858 \N 189.186.20.144 2a4e62a0-565a-45a9-a11a-a3c8fc50323b 2020-12-16 02:06:54.89871 48595 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 71NHN2GbUNMSKTgqxSuR\n- EuTggAsBxy7Wq6yaMpzL\n 859 \N 189.186.20.144 2a4e62a0-565a-45a9-a11a-a3c8fc50323b 2020-12-16 02:06:54.916776 48621 1234 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.938E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 938.0 189.186.20.144 4f50b100-4e0f-4d40-acb7-e2a0cc915812 2020-12-16 18:11:37.483662 48596 1257 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1231\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.8702E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.74E4\ncash_fund: !ruby/object:BigDecimal 18:0.938E3\nphysical_cash: !ruby/object:BigDecimal 18:0.8338E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.144 aaae5798-9442-402f-985e-865d863f28c2 2020-12-16 02:29:33.909736 48597 1231 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.144 aaae5798-9442-402f-985e-865d863f28c2 2020-12-16 02:29:33.924609 48598 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-15 23:38:30.939055000 Z\n- &1 2020-12-16 01:19:18.756728000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-16 02:32:33.763901407 Z\nsign_in_count:\n- 2166\n- 2167\n 4334 \N 189.186.89.234 0d003f80-6ba6-4e2a-bc19-63d855cd8137 2020-12-16 02:32:33.770334 48599 4 User \N \N 4 User \N update ---\nunique_session_id:\n- y3TAg5UokT8CN-S5cqWn\n- cF-yoTtq-roH1KExSihU\n 4335 \N 189.186.89.234 0d003f80-6ba6-4e2a-bc19-63d855cd8137 2020-12-16 02:32:33.788814 48600 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-15 23:30:12.349105000 Z\n- &1 2020-12-16 01:13:06.489274000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-16 02:43:44.246356148 Z\nsign_in_count:\n- 404\n- 405\n 811 \N 189.186.89.234 e5e03c57-7a3b-4d22-8aef-03c04f2266ca 2020-12-16 02:43:44.252883 48601 18 User \N \N 18 User \N update ---\nunique_session_id:\n- nx7NsrCstEYyqLYfyw3Z\n- TQXw3jPPz2-J68_14G-N\n 812 \N 189.186.89.234 e5e03c57-7a3b-4d22-8aef-03c04f2266ca 2020-12-16 02:43:44.267721 48602 3721 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1232\namount: !ruby/object:BigDecimal 18:0.1798E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1798E4\nstatus: 0\ndate_sale: 2020-12-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1023\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 b7166d15-7211-46fe-8be0-2d4e6f55d07d 2020-12-16 03:30:04.950429 48603 2618 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.89.234 b7166d15-7211-46fe-8be0-2d4e6f55d07d 2020-12-16 03:30:04.988836 48604 1900 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.89.234 b7166d15-7211-46fe-8be0-2d4e6f55d07d 2020-12-16 03:30:05.034884 48605 3721 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 1368c106-ace8-4f02-b3b4-b2e19382a959 2020-12-16 03:30:09.274996 48606 4923 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1232\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1798E4\nmove_type: '1'\nsale_id: 3721\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1023\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1798E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1023 189.186.89.234 1368c106-ace8-4f02-b3b4-b2e19382a959 2020-12-16 03:30:09.303447 48607 478 Customer \N \N 18 User \N create ---\nnick_name: ITZEL CITLALY ABUNDIS LOPEZ\nphone: "(667) 795-6990"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ITZEL CITLALY ABUNDIS LOPEZ fue registrado. 189.186.89.234 aefad53c-9ff3-4c81-b2ac-06548d8ee572 2020-12-16 03:31:39.023584 48608 3722 Sale \N \N 18 User \N create ---\ncustomer_id: 478\nuser_id: 18\nopen_cash_register_id: 1232\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-15\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-1024\nexpiration_date: 2021-01-19\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 5585bbe2-4c44-4f4c-8342-b6b295457727 2020-12-16 03:32:01.835996 48609 2631 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 189.186.89.234 5585bbe2-4c44-4f4c-8342-b6b295457727 2020-12-16 03:32:01.877319 48610 4924 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1232\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3722\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-1024\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1024 189.186.89.234 9f73a08c-f683-49f8-90ba-abc0c3f62fc2 2020-12-16 03:32:07.111215 48611 3722 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.89.234 73988902-69a7-4e97-97e2-46afcb7a91c2 2020-12-16 03:32:08.116419 48612 1258 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1232\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.16738E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.13409E5\ncash_fund: !ruby/object:BigDecimal 18:0.1026E4\nphysical_cash: !ruby/object:BigDecimal 18:0.14435E5\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.89.234 40e4bf24-2728-4e74-b07c-a73e52a2f596 2020-12-16 03:52:10.058111 48613 1232 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.89.234 40e4bf24-2728-4e74-b07c-a73e52a2f596 2020-12-16 03:52:10.076148 48614 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-16 01:19:18.756728000 Z\n- &1 2020-12-16 02:32:33.763901000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-16 05:55:36.440551373 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535064\n mask_addr: 4294967295\nsign_in_count:\n- 2167\n- 2168\n 4336 \N 177.228.100.24 2ba66599-8cf3-4e17-8e73-7c90f6a63705 2020-12-16 05:55:36.471468 48615 4 User \N \N 4 User \N update ---\nunique_session_id:\n- cF-yoTtq-roH1KExSihU\n- pikBAc3GP-vCKCUuoCcW\n 4337 \N 177.228.100.24 2ba66599-8cf3-4e17-8e73-7c90f6a63705 2020-12-16 05:55:36.539037 48616 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-13 20:12:51.148963000 Z\n- &1 2020-12-14 19:16:48.917958000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-16 18:07:22.540943922 Z\nsign_in_count:\n- 366\n- 367\n 735 \N 189.186.89.234 417667fe-9fb0-4528-a159-bb0d5b82457e 2020-12-16 18:07:22.570002 48617 21 User \N \N 21 User \N update ---\nunique_session_id:\n- roG-P2wMqkz32ik-z4gD\n- bMPsKGmHwALaNBPjuRKz\n 736 \N 189.186.89.234 417667fe-9fb0-4528-a159-bb0d5b82457e 2020-12-16 18:07:22.59196 48618 1233 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1026E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1026.0 189.186.89.234 44dbd812-cc50-48df-8b14-5be33f4ffdf2 2020-12-16 18:10:35.624743 48619 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-14 20:49:34.245629000 Z\n- &1 2020-12-15 17:22:03.155407000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-16 18:11:05.335529956 Z\nsign_in_count:\n- 730\n- 731\n 1465 \N 189.186.20.144 24e2a592-d22a-4d84-9bc8-99852deba2f3 2020-12-16 18:11:05.341045 48622 505 Purchase \N \N 2 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-219\namount: !ruby/object:BigDecimal 18:0.3598E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3598E4\nobservations: ''\npurchase_date: 2020-12-16\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-219 por $ 3598.0 MXN creada. 189.186.20.144 e6d592bc-718a-4e50-9f1d-4e39bd0f144c 2020-12-16 18:12:41.131027 48623 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 32 \N 189.186.20.144 e6d592bc-718a-4e50-9f1d-4e39bd0f144c 2020-12-16 18:12:41.153354 48624 3723 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1234\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1779\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 b9d32cc4-ec61-4664-9627-a36c9cb769a3 2020-12-16 18:12:58.994305 48625 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 33 \N 189.186.20.144 b9d32cc4-ec61-4664-9627-a36c9cb769a3 2020-12-16 18:12:59.022139 48626 3723 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 a7d8a35a-46d7-43f3-a56a-99e89705cb4d 2020-12-16 18:13:13.48538 48627 4925 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1234\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3723\ncardnumber: 4516\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1779\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1779 189.186.20.144 a7d8a35a-46d7-43f3-a56a-99e89705cb4d 2020-12-16 18:13:13.508112 48628 3724 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1234\namount: !ruby/object:BigDecimal 18:0.30172E3\ntax: !ruby/object:BigDecimal 18:0.4828E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1780\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 45c7f81c-97d7-4083-b4b3-230b001dd0a2 2020-12-16 18:17:01.78308 48629 735 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E2\n- !ruby/object:BigDecimal 18:0.29E2\n 10 \N 189.186.20.144 45c7f81c-97d7-4083-b4b3-230b001dd0a2 2020-12-16 18:17:01.836669 48630 3724 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 7a70c508-0a77-4152-919f-8820b3a209ae 2020-12-16 18:17:47.977833 48631 4926 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1234\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.35E3\nmove_type: '1'\nsale_id: 3724\ncardnumber: 4516\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1780\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1780 189.186.20.144 7a70c508-0a77-4152-919f-8820b3a209ae 2020-12-16 18:17:48.006823 48632 3725 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1234\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1781\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 9966e198-c21c-4088-a202-dbc664cd09e0 2020-12-16 18:28:15.754962 48633 1606 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.20.144 9966e198-c21c-4088-a202-dbc664cd09e0 2020-12-16 18:28:15.788456 48634 3725 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 f646a789-48c1-4530-b19d-9ab3e5dec9c8 2020-12-16 18:30:57.208368 48635 4927 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1234\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3725\ncardnumber: 7302\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1781\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1781 189.186.20.144 f646a789-48c1-4530-b19d-9ab3e5dec9c8 2020-12-16 18:30:57.232509 48636 3726 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1234\namount: !ruby/object:BigDecimal 18:0.3027E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3027E4\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1782\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 fdc16997-ec56-47e7-ad29-953e94306cf3 2020-12-16 18:51:44.639016 48637 2523 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.20.144 fdc16997-ec56-47e7-ad29-953e94306cf3 2020-12-16 18:51:44.703054 48638 1487 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.20.144 fdc16997-ec56-47e7-ad29-953e94306cf3 2020-12-16 18:51:44.735999 48639 2424 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.20.144 fdc16997-ec56-47e7-ad29-953e94306cf3 2020-12-16 18:51:44.759532 48640 3726 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 a689fb08-0f4f-49b4-96d6-336eb66b5cf2 2020-12-16 18:53:57.586095 48641 4928 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1234\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3027E4\nmove_type: '1'\nsale_id: 3726\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1782\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3027E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1782 189.186.20.144 a689fb08-0f4f-49b4-96d6-336eb66b5cf2 2020-12-16 18:53:57.612577 48642 4928 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1234\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3027E4\nmove_type: '1'\nsale_id: 3726\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1782\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3027E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.20.144 a262c2bf-54f6-44f0-be8d-247ff4b13fd1 2020-12-16 18:54:47.206835 48685 2491 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.20.144 9db33d5b-b752-4bf3-a022-dca0668ed7fd 2020-12-16 22:33:28.066415 48686 2545 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.20.144 57df68f5-576b-4f7a-ab4f-61e17a93fd40 2020-12-16 22:34:47.983833 48643 4929 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1234\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3027E4\nmove_type: '1'\nsale_id: 3726\ncardnumber: 1931\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1782\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1782 189.186.20.144 c539a5a3-dbad-4d2f-a884-c2e3f660ed18 2020-12-16 18:55:00.735437 48644 3727 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1234\namount: !ruby/object:BigDecimal 18:0.189E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.189E3\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1783\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 122910ce-594d-4dbb-927e-7914b5fa7fb1 2020-12-16 19:32:49.945287 48645 2395 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.20.144 122910ce-594d-4dbb-927e-7914b5fa7fb1 2020-12-16 19:32:49.978637 48646 3727 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 e9663971-9504-400b-8c25-d76cb3ad7e3f 2020-12-16 19:33:10.85762 48647 4930 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1234\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.189E3\nmove_type: '1'\nsale_id: 3727\ncardnumber: 2813\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1783\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1783 189.186.20.144 e9663971-9504-400b-8c25-d76cb3ad7e3f 2020-12-16 19:33:10.882949 48648 3728 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1233\namount: !ruby/object:BigDecimal 18:0.1148E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1148E4\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1025\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 bd9c8af1-2435-4439-bbcd-ed03777603b1 2020-12-16 19:58:22.393661 48649 2397 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.89.234 bd9c8af1-2435-4439-bbcd-ed03777603b1 2020-12-16 19:58:22.423452 48650 1799 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.89.234 bd9c8af1-2435-4439-bbcd-ed03777603b1 2020-12-16 19:58:22.453741 48651 2193 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.89.234 bd9c8af1-2435-4439-bbcd-ed03777603b1 2020-12-16 19:58:22.487024 48652 3728 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 3b1d3785-b483-4446-ad0b-3fa8256decc1 2020-12-16 19:59:19.67434 48653 4931 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1233\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1148E4\nmove_type: '1'\nsale_id: 3728\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1025\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.115E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1025 189.186.89.234 3b1d3785-b483-4446-ad0b-3fa8256decc1 2020-12-16 19:59:19.701645 48654 3729 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1233\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1026\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 fcaed8ca-c5f8-4af3-a167-e0a7c8917229 2020-12-16 20:06:10.738215 48655 2642 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 4 \N 189.186.89.234 fcaed8ca-c5f8-4af3-a167-e0a7c8917229 2020-12-16 20:06:10.770768 48656 3729 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 69569f8e-f47d-4fbd-a116-6dd781d1a69a 2020-12-16 20:06:39.751969 48657 4932 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1233\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 3729\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1026\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1026 189.186.89.234 69569f8e-f47d-4fbd-a116-6dd781d1a69a 2020-12-16 20:06:39.774607 48658 3730 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1234\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1784\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 6096c638-f8d2-4843-a1a9-f338ae3117a1 2020-12-16 20:11:48.901774 48659 2500 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.20.144 6096c638-f8d2-4843-a1a9-f338ae3117a1 2020-12-16 20:11:48.927929 48660 3730 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 59f10cb7-18c8-4fd8-a23a-6b60d0b925d6 2020-12-16 20:12:32.410853 48661 4933 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1234\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3730\ncardnumber: 9054\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1784\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1784 189.186.20.144 59f10cb7-18c8-4fd8-a23a-6b60d0b925d6 2020-12-16 20:12:32.441533 48662 4934 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1234\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 3640\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1745 189.186.20.144 bf991864-e437-48d5-b48a-eed61cf6f7d8 2020-12-16 20:14:25.005328 48687 2545 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.20.144 ad3a80a0-8cd6-4654-8f30-6e7dc3eebace 2020-12-16 22:34:50.93405 48688 2632 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.20.144 d0f93bd5-33fa-4071-8364-9eafc98d3fb3 2020-12-16 22:36:25.325523 48663 4934 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1234\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.499E3\nmove_type: '1'\nsale_id: 3640\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.20.144 0bcddfaf-8ba0-4f0f-bf27-9d03256341af 2020-12-16 20:14:30.558034 48664 4935 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1234\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3640\ncardnumber: 1931\npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1745 189.186.20.144 40f9ca1e-55b5-4171-ab80-406b8bc453fc 2020-12-16 20:15:45.080559 48665 4936 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1234\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.199E3\nmove_type: '1'\nsale_id: 3640\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.199E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1745 189.186.20.144 c6433df7-2666-4d1e-ac34-ca452520e6b9 2020-12-16 20:15:57.428474 48666 3640 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 fe174c6b-c4ab-48fc-8916-aa20c072e284 2020-12-16 20:16:05.502192 48667 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-15 23:40:21.749475000 Z\n- &1 2020-12-16 02:06:54.890856000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-16 20:20:02.158357373 Z\nsign_in_count:\n- 429\n- 430\n 860 \N 189.186.20.144 43e9ca3e-56b6-4747-ae3d-cf8193ea007e 2020-12-16 20:20:02.16616 48668 1 User \N \N 1 User \N update ---\nunique_session_id:\n- EuTggAsBxy7Wq6yaMpzL\n- QbQkodmoA6-Bd_oYoszx\n 861 \N 189.186.20.144 43e9ca3e-56b6-4747-ae3d-cf8193ea007e 2020-12-16 20:20:02.181304 48669 3731 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1233\namount: !ruby/object:BigDecimal 18:0.3598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3598E4\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1027\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 82b725fb-f165-4d66-becd-88c7eae68e66 2020-12-16 21:07:40.333416 48670 2631 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 189.186.89.234 82b725fb-f165-4d66-becd-88c7eae68e66 2020-12-16 21:07:40.35895 48671 2624 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.89.234 82b725fb-f165-4d66-becd-88c7eae68e66 2020-12-16 21:07:40.380968 48672 3731 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 db8e097c-fd31-41c2-bded-2169a013056c 2020-12-16 21:08:32.607763 48673 4937 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1233\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3598E4\nmove_type: '1'\nsale_id: 3731\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1027\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.37E4\nchange: !ruby/object:BigDecimal 18:0.102E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1027 189.186.89.234 db8e097c-fd31-41c2-bded-2169a013056c 2020-12-16 21:08:32.632929 48674 3626 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV1-V-1734 cancelada. 189.186.20.144 f2ab1069-da35-4473-98a9-fe61c77c147e 2020-12-16 21:29:48.489206 48675 4938 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1234\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '0'\nsale_id: 3626\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.20.144 f2ab1069-da35-4473-98a9-fe61c77c147e 2020-12-16 21:29:48.528086 48676 2512 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.20.144 f2ab1069-da35-4473-98a9-fe61c77c147e 2020-12-16 21:29:48.560023 48677 3732 Sale \N \N 2 User \N create ---\ncustomer_id: 466\nuser_id: 2\nopen_cash_register_id: 1234\namount: !ruby/object:BigDecimal 18:0.61724E3\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1785\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 c7e0feaf-34f7-4475-83cd-8aa80292a627 2020-12-16 21:30:41.945509 48678 735 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.29E2\n- !ruby/object:BigDecimal 18:0.27E2\n 11 \N 189.186.20.144 c7e0feaf-34f7-4475-83cd-8aa80292a627 2020-12-16 21:30:41.98074 48679 3732 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 cdd1edc8-3ace-480d-8ae1-a3ce6ff1da98 2020-12-16 21:30:50.742328 48680 4939 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1234\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 3732\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1785\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1785 189.186.20.144 cdd1edc8-3ace-480d-8ae1-a3ce6ff1da98 2020-12-16 21:30:50.768504 48681 3733 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1233\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1027\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 b24d7075-caaf-4652-b810-9461aebddc63 2020-12-16 22:25:02.482335 48682 1929 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.89.234 b24d7075-caaf-4652-b810-9461aebddc63 2020-12-16 22:25:02.509022 48683 3733 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 9d19a28b-2b69-45dd-afaa-f1850c5362bc 2020-12-16 22:25:35.524361 48684 4940 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1233\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 3733\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1027\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1027 189.186.89.234 9d19a28b-2b69-45dd-afaa-f1850c5362bc 2020-12-16 22:25:35.545056 48689 2632 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.20.144 d2391473-6eeb-4bf7-bfdd-491c532eb8c5 2020-12-16 22:36:28.285199 48690 2528 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.20.144 b8fe0656-69f0-4831-8977-1972da13a145 2020-12-16 22:44:35.648683 48691 1602 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.20.144 6dd3dcde-c0cd-4eab-8852-1c96513846d0 2020-12-16 22:56:38.991223 48692 1272 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.20.144 c33eb8f3-de1d-4d0c-b96a-b5aea703a4e3 2020-12-16 22:57:11.358399 48693 1596 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.20.144 a8582549-5168-44b1-860f-39810eba152d 2020-12-16 22:57:37.521069 48694 1469 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.20.144 1aae132a-293e-4d4e-bf09-79f41d01ab51 2020-12-16 22:57:52.124825 48695 1469 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.20.144 aa789ea9-c379-4259-9478-8964f30c9b6e 2020-12-16 22:58:05.953521 48696 2550 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.20.144 0227794c-f1fe-4245-9c80-29eb6f9055ce 2020-12-16 22:58:18.973517 48697 2550 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.20.144 76f21526-af49-4e13-96a3-d070ee17301e 2020-12-16 22:58:27.214683 48698 3734 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1233\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1029\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 c57b5158-973f-4712-8469-4653ea89dfaf 2020-12-16 23:21:22.856965 48699 2378 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 8 \N 189.186.89.234 c57b5158-973f-4712-8469-4653ea89dfaf 2020-12-16 23:21:22.885727 48700 3734 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 f4442463-95ea-4f2d-b230-591fd0a54c9d 2020-12-16 23:21:28.479651 48701 4941 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1233\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 3734\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1029\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1029 189.186.89.234 f4442463-95ea-4f2d-b230-591fd0a54c9d 2020-12-16 23:21:28.509849 48702 3735 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1234\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1786\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 e078a258-fd59-4746-8052-2187ba344b9f 2020-12-16 23:26:12.217617 48703 2632 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.20.144 e078a258-fd59-4746-8052-2187ba344b9f 2020-12-16 23:26:12.357961 48704 3735 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 1710cf23-1c8d-4f9e-a54b-67eca1a2f71a 2020-12-16 23:26:35.416171 48705 4942 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1234\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3735\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1786\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1786 189.186.20.144 1710cf23-1c8d-4f9e-a54b-67eca1a2f71a 2020-12-16 23:26:35.446483 48706 1398 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.20.144 7b74b0d4-f433-4f20-a837-ee61b2e2cf4e 2020-12-16 23:30:03.306297 48707 1398 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.20.144 929a9167-e5c8-406b-ab71-a657cc032e21 2020-12-16 23:30:11.283618 48708 1595 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.20.144 8936d52d-075e-49d1-b1ea-d35a401d6227 2020-12-16 23:30:23.976568 48709 762 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-16\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.20.144 0858cfd7-6c08-443a-9b0c-22ffc2630f0d 2020-12-16 23:30:29.865518 48710 3736 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1233\namount: !ruby/object:BigDecimal 18:0.8534E2\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9899E2\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1030\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 76872702-8fb5-4b9e-bd32-903dd5ac61de 2020-12-16 23:36:40.921615 48711 840 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.32E2\n- !ruby/object:BigDecimal 18:0.31E2\n 9 \N 189.186.89.234 76872702-8fb5-4b9e-bd32-903dd5ac61de 2020-12-16 23:36:40.958823 48712 3736 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 d2771e8d-b931-41e6-8fe0-b45bbfce45ac 2020-12-16 23:43:52.98605 48713 4943 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1233\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.9899E2\nmove_type: '1'\nsale_id: 3736\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1030\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9899E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1030 189.186.89.234 d2771e8d-b931-41e6-8fe0-b45bbfce45ac 2020-12-16 23:43:53.007439 48736 479 Customer \N \N 18 User \N create ---\nnick_name: CINTHIA INSTAGRAM\nphone: "(667) 117-9103"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CINTHIA INSTAGRAM fue registrado. 189.186.89.234 25522486-4fb6-4b82-9fd0-cbf91cfae48c 2020-12-17 00:37:20.431698 48714 3737 Sale \N \N 21 User \N create ---\ncustomer_id: 478\nuser_id: 21\nopen_cash_register_id: 1233\namount: !ruby/object:BigDecimal 18:0.1389E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1389E4\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-1031\nexpiration_date: 2021-01-20\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 e31e2fa3-734a-4012-9b5c-4d7c561696ae 2020-12-16 23:44:48.50344 48715 2573 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.89.234 e31e2fa3-734a-4012-9b5c-4d7c561696ae 2020-12-16 23:44:48.527827 48716 4944 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1233\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3737\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-1031\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1031 189.186.89.234 e001d021-b37b-475c-be9c-64e00ddc6c80 2020-12-16 23:45:01.383829 48717 3737 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.89.234 29f1b026-5314-4432-aed5-d7a4dddecc42 2020-12-16 23:45:03.527047 48718 3738 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1234\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1787\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 c5c3ecc0-4c76-4a83-917f-faa427b1e937 2020-12-16 23:52:23.187107 48719 2286 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.20.144 c5c3ecc0-4c76-4a83-917f-faa427b1e937 2020-12-16 23:52:23.214051 48720 3738 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 029a7abe-6294-488c-be15-46f15ec8a0fc 2020-12-16 23:53:15.558625 48721 4945 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1234\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3738\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1787\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1787 189.186.20.144 029a7abe-6294-488c-be15-46f15ec8a0fc 2020-12-16 23:53:15.579921 48722 3739 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1234\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1788\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 8a098666-5c30-4c74-b891-64390cc2e9da 2020-12-16 23:58:18.858502 48723 2646 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 2 \N 189.186.20.144 8a098666-5c30-4c74-b891-64390cc2e9da 2020-12-16 23:58:18.884608 48724 3739 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 f5197788-3792-46db-b42a-71f17d5c5afc 2020-12-16 23:58:24.458305 48725 4946 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1234\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3739\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1788\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1788 189.186.20.144 f5197788-3792-46db-b42a-71f17d5c5afc 2020-12-16 23:58:24.477812 48726 3740 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1234\namount: !ruby/object:BigDecimal 18:0.1251E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1251E4\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1789\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 be545f8b-6a0a-494e-a7ea-7ff3c1dc4faf 2020-12-17 00:03:19.401014 48727 2611 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.20.144 be545f8b-6a0a-494e-a7ea-7ff3c1dc4faf 2020-12-17 00:03:19.42861 48728 3740 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 1d98b4ee-6e9a-480f-b5f9-6b6416d69dea 2020-12-17 00:03:27.410468 48729 4947 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1234\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1251E4\nmove_type: '1'\nsale_id: 3740\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1789\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1251E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1789 189.186.20.144 1d98b4ee-6e9a-480f-b5f9-6b6416d69dea 2020-12-17 00:03:27.430558 48730 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-16 02:32:33.763901000 Z\n- &1 2020-12-16 05:55:36.440551000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-17 00:18:54.584010530 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535064\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535064\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\nsign_in_count:\n- 2168\n- 2169\n 4338 \N 189.186.89.234 93705c58-ac17-4200-b4c3-fa1dfe821f9a 2020-12-17 00:18:54.612009 48731 4 User \N \N 4 User \N update ---\nunique_session_id:\n- pikBAc3GP-vCKCUuoCcW\n- 3B4AdSsPPAt3FXXzGkfy\n 4339 \N 189.186.89.234 93705c58-ac17-4200-b4c3-fa1dfe821f9a 2020-12-17 00:18:54.640609 48732 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-16 02:06:54.890856000 Z\n- &1 2020-12-16 20:20:02.158357000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-17 00:29:16.306485995 Z\nsign_in_count:\n- 430\n- 431\n 862 \N 189.186.20.144 725bb740-d2f3-4cc2-a9f8-37268b6428ab 2020-12-17 00:29:16.31368 48733 1 User \N \N 1 User \N update ---\nunique_session_id:\n- QbQkodmoA6-Bd_oYoszx\n- ahygDRSbGWfs6iy9Lj4A\n 863 \N 189.186.20.144 725bb740-d2f3-4cc2-a9f8-37268b6428ab 2020-12-17 00:29:16.332124 48734 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-16 01:13:06.489274000 Z\n- &1 2020-12-16 02:43:44.246356000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-17 00:33:31.606804098 Z\nsign_in_count:\n- 405\n- 406\n 813 \N 189.186.89.234 6c249777-677b-44bb-8bf1-0447c1a1d7f4 2020-12-17 00:33:31.612932 48735 18 User \N \N 18 User \N update ---\nunique_session_id:\n- TQXw3jPPz2-J68_14G-N\n- 8UYyGoUNVx2nAexUS6M-\n 814 \N 189.186.89.234 6c249777-677b-44bb-8bf1-0447c1a1d7f4 2020-12-17 00:33:31.628868 48737 3741 Sale \N \N 18 User \N create ---\ncustomer_id: 479\nuser_id: 18\nopen_cash_register_id: 1233\namount: !ruby/object:BigDecimal 18:0.3098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3098E4\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1032\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 562a6d04-4893-4986-ab5f-4f52823a0c92 2020-12-17 00:38:12.935535 48738 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 78 \N 189.186.89.234 562a6d04-4893-4986-ab5f-4f52823a0c92 2020-12-17 00:38:12.962341 48739 2642 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 5 \N 189.186.89.234 562a6d04-4893-4986-ab5f-4f52823a0c92 2020-12-17 00:38:12.99387 48740 3741 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 855a8c0d-c97c-4fbe-b79b-9020ae31e378 2020-12-17 00:38:27.558617 48741 4948 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1233\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 3741\ncardnumber: 1532\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1032\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1032 189.186.89.234 855a8c0d-c97c-4fbe-b79b-9020ae31e378 2020-12-17 00:38:27.580715 48742 4948 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1233\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 3741\ncardnumber: 1532\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1032\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.89.234 f78af701-b86b-4e21-a501-9bdc72f19005 2020-12-17 00:38:33.245071 48743 3741 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-1032 cancelada. 189.186.89.234 dd65aa2d-0e70-4bbb-a55a-10d3811d6050 2020-12-17 00:38:35.712265 48744 2642 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.8E1\n 6 \N 189.186.89.234 dd65aa2d-0e70-4bbb-a55a-10d3811d6050 2020-12-17 00:38:35.734313 48745 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 79 \N 189.186.89.234 dd65aa2d-0e70-4bbb-a55a-10d3811d6050 2020-12-17 00:38:35.753894 48746 3742 Sale \N \N 18 User \N create ---\ncustomer_id: 479\nuser_id: 18\nopen_cash_register_id: 1233\namount: !ruby/object:BigDecimal 18:0.3098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3098E4\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-1033\nexpiration_date: 2021-01-20\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 3c3fb9a0-01ce-4cc4-bce3-8f37afcac5ce 2020-12-17 00:39:05.388504 48747 1822 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 80 \N 189.186.89.234 3c3fb9a0-01ce-4cc4-bce3-8f37afcac5ce 2020-12-17 00:39:05.415291 48748 2642 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 7 \N 189.186.89.234 3c3fb9a0-01ce-4cc4-bce3-8f37afcac5ce 2020-12-17 00:39:05.438975 48749 4949 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1233\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 3742\ncardnumber: 5255\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-1033\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1033 189.186.89.234 978af322-f554-4ffb-8d1a-52c44a0ea8c1 2020-12-17 00:39:15.933151 48750 3742 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.89.234 f58f10d4-18fb-4b32-99b4-cfa2678ec6fa 2020-12-17 00:39:17.589056 48751 3743 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1234\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1790\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 a55470cb-39ea-4c4d-bfae-c672af6a058c 2020-12-17 00:42:42.622886 48752 2646 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 3 \N 189.186.20.144 a55470cb-39ea-4c4d-bfae-c672af6a058c 2020-12-17 00:42:42.64888 48753 3743 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 44f8d370-077d-4d90-ac7b-9d48d2f00e79 2020-12-17 00:48:17.055646 48754 4950 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1234\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3743\ncardnumber: 4754\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1790\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1790 189.186.20.144 44f8d370-077d-4d90-ac7b-9d48d2f00e79 2020-12-17 00:48:17.090057 48755 3744 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1233\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1034\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 288673f0-fa0b-4a82-8529-8e17a97141ea 2020-12-17 00:56:49.183745 48756 2017 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 20 \N 189.186.89.234 288673f0-fa0b-4a82-8529-8e17a97141ea 2020-12-17 00:56:49.20941 48757 3744 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 4b1993bf-8627-4932-8e93-f8c224e6e9b2 2020-12-17 00:57:16.260964 48758 4951 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1233\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3744\ncardnumber: 1552\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1034\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1034 189.186.89.234 4b1993bf-8627-4932-8e93-f8c224e6e9b2 2020-12-17 00:57:16.281543 48759 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-16 20:20:02.158357000 Z\n- &1 2020-12-17 00:29:16.306485000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-17 01:09:05.229082686 Z\nsign_in_count:\n- 431\n- 432\n 864 \N 189.186.20.144 34dcde63-389f-4ea1-82d0-22397022e8b2 2020-12-17 01:09:05.257286 48760 1 User \N \N 1 User \N update ---\nunique_session_id:\n- ahygDRSbGWfs6iy9Lj4A\n- KPJqdwDEUDRapoXH1X6u\n 865 \N 189.186.20.144 34dcde63-389f-4ea1-82d0-22397022e8b2 2020-12-17 01:09:05.283699 48761 3745 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1234\namount: !ruby/object:BigDecimal 18:0.107797E4\ntax: !ruby/object:BigDecimal 18:0.13104E3\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.110901E4\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1791\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 5a2255e9-36e6-4f8f-9556-128f9b28741c 2020-12-17 01:30:41.981914 48762 735 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.27E2\n- !ruby/object:BigDecimal 18:0.24E2\n 12 \N 189.186.20.144 5a2255e9-36e6-4f8f-9556-128f9b28741c 2020-12-17 01:30:42.021697 48763 2131 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.20.144 5a2255e9-36e6-4f8f-9556-128f9b28741c 2020-12-17 01:30:42.058087 48764 3745 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 5967521a-8465-4466-b4b8-ecd25ed2e724 2020-12-17 01:30:50.813772 48765 4952 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1234\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.110901E4\nmove_type: '1'\nsale_id: 3745\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1791\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.110901E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1791 189.186.20.144 5967521a-8465-4466-b4b8-ecd25ed2e724 2020-12-17 01:30:50.841569 48766 3746 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1233\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1035\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 75924a0c-63b2-4c6a-ba87-ee9595ca76da 2020-12-17 01:33:18.714356 48767 2582 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.89.234 75924a0c-63b2-4c6a-ba87-ee9595ca76da 2020-12-17 01:33:18.742716 48768 3746 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 79a2f185-cd2a-404c-89aa-732624fd9e1f 2020-12-17 01:34:50.345691 48769 4953 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1233\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 3746\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1035\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1035 189.186.89.234 79a2f185-cd2a-404c-89aa-732624fd9e1f 2020-12-17 01:34:50.377886 48770 4953 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1233\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 3746\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1035\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.89.234 0eb9eea3-1493-4f95-bd96-963fde7be2ad 2020-12-17 01:34:52.327766 48771 4954 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1233\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 3746\ncardnumber: 1255\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1035\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1035 189.186.89.234 28d682ad-adc5-4afc-9a54-e6e6f0b5d3f7 2020-12-17 01:35:04.720143 48772 480 Customer \N \N 18 User \N create ---\nnick_name: 'GLORIA VILLAREAL '\nphone: "(667) 796-4468"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente GLORIA VILLAREAL fue registrado. 189.186.89.234 8630304a-ef16-4d91-8fdf-2abb6325c4da 2020-12-17 01:39:46.518886 48773 762 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-16\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.89.234 ed5d8b0f-5794-4a73-af42-f98c388a4182 2020-12-17 01:40:52.282126 48774 2497 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.89.234 ed5d8b0f-5794-4a73-af42-f98c388a4182 2020-12-17 01:40:52.298434 48775 2648 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1517\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.89.234 ed5d8b0f-5794-4a73-af42-f98c388a4182 2020-12-17 01:40:52.317111 48776 2631 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 12 \N 189.186.89.234 ed5d8b0f-5794-4a73-af42-f98c388a4182 2020-12-17 01:40:52.332655 48777 2649 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1500\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.89.234 ed5d8b0f-5794-4a73-af42-f98c388a4182 2020-12-17 01:40:52.350716 48778 1269 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.89.234 ed5d8b0f-5794-4a73-af42-f98c388a4182 2020-12-17 01:40:52.365285 48779 2650 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 900\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.89.234 ed5d8b0f-5794-4a73-af42-f98c388a4182 2020-12-17 01:40:52.383093 48780 1234 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.89.234 ed5d8b0f-5794-4a73-af42-f98c388a4182 2020-12-17 01:40:52.397704 48781 1286 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 189.186.89.234 ed5d8b0f-5794-4a73-af42-f98c388a4182 2020-12-17 01:40:52.412053 48782 2568 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 189.186.89.234 ed5d8b0f-5794-4a73-af42-f98c388a4182 2020-12-17 01:40:52.426486 48783 1243 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.89.234 ed5d8b0f-5794-4a73-af42-f98c388a4182 2020-12-17 01:40:52.441267 48784 1235 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.89.234 ed5d8b0f-5794-4a73-af42-f98c388a4182 2020-12-17 01:40:52.45544 48785 3747 Sale \N \N 18 User \N create ---\ncustomer_id: 480\nuser_id: 18\nopen_cash_register_id: 1233\namount: !ruby/object:BigDecimal 18:0.2008E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2008E4\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1036\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 a2f0eff1-a84a-4f87-9fa6-a89b30a32f96 2020-12-17 01:41:10.969399 48786 2590 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.89.234 a2f0eff1-a84a-4f87-9fa6-a89b30a32f96 2020-12-17 01:41:10.995505 48787 2648 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.89.234 a2f0eff1-a84a-4f87-9fa6-a89b30a32f96 2020-12-17 01:41:11.018125 48788 3747 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 9c09d32e-2f47-4469-b320-26dfaccb0a69 2020-12-17 01:41:21.090474 48789 4955 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1233\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 3747\ncardnumber: 4125\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1036\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1036 189.186.89.234 9c09d32e-2f47-4469-b320-26dfaccb0a69 2020-12-17 01:41:21.119104 48790 3747 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-1036 cancelada. 189.186.89.234 bb2675eb-b524-4071-b036-8e709deae3fd 2020-12-17 01:41:42.093167 48791 4955 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1233\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3747\ncardnumber: 4125\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1036\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.89.234 bb2675eb-b524-4071-b036-8e709deae3fd 2020-12-17 01:41:42.12102 48792 2648 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.89.234 bb2675eb-b524-4071-b036-8e709deae3fd 2020-12-17 01:41:42.148126 48793 2590 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 189.186.89.234 bb2675eb-b524-4071-b036-8e709deae3fd 2020-12-17 01:41:42.170041 48794 3748 Sale \N \N 18 User \N create ---\ncustomer_id: 480\nuser_id: 18\nopen_cash_register_id: 1233\namount: !ruby/object:BigDecimal 18:0.2008E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2008E4\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-1037\nexpiration_date: 2021-01-20\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 0f48c7c7-ef84-4880-914d-b514108a514f 2020-12-17 01:43:33.908933 48795 2590 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 189.186.89.234 0f48c7c7-ef84-4880-914d-b514108a514f 2020-12-17 01:43:33.936848 48796 2648 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.89.234 0f48c7c7-ef84-4880-914d-b514108a514f 2020-12-17 01:43:33.963105 48797 4956 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1233\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3748\ncardnumber: 1225\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-1037\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1037 189.186.89.234 30db3586-7225-46b1-a53f-db365f9d1070 2020-12-17 01:43:43.29659 48798 3748 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.89.234 a15563b6-4637-40f2-a28f-45e98edb1e9a 2020-12-17 01:43:46.590014 48799 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-17 00:29:16.306485000 Z\n- &1 2020-12-17 01:09:05.229082000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-17 01:48:24.727958022 Z\nsign_in_count:\n- 432\n- 433\n 866 \N 189.186.20.144 8baf66cf-9cdc-4a3a-8d14-7b2f9b40d3de 2020-12-17 01:48:24.733903 48800 1 User \N \N 1 User \N update ---\nunique_session_id:\n- KPJqdwDEUDRapoXH1X6u\n- a8-fNaWbhMfsY9bABSuo\n 867 \N 189.186.20.144 8baf66cf-9cdc-4a3a-8d14-7b2f9b40d3de 2020-12-17 01:48:24.747184 48801 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-16 05:55:36.440551000 Z\n- &1 2020-12-17 00:18:54.584010000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-17 02:15:03.772652120 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535064\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\nsign_in_count:\n- 2169\n- 2170\n 4340 \N 189.186.89.234 034aeea9-36a1-45d2-8044-9255ab9ac757 2020-12-17 02:15:03.778793 48802 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3B4AdSsPPAt3FXXzGkfy\n- 68ZGhVLkYyHhpyHRTkas\n 4341 \N 189.186.89.234 034aeea9-36a1-45d2-8044-9255ab9ac757 2020-12-17 02:15:03.79658 48803 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-16 02:43:44.246356000 Z\n- &1 2020-12-17 00:33:31.606804000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-17 02:21:19.383322404 Z\nsign_in_count:\n- 406\n- 407\n 815 \N 189.186.89.234 2e55149a-535d-4c29-8b4c-3c57a17d41b5 2020-12-17 02:21:19.389829 48804 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 8UYyGoUNVx2nAexUS6M-\n- Y2H_gQ6BPWdvBP9XzsU4\n 816 \N 189.186.89.234 2e55149a-535d-4c29-8b4c-3c57a17d41b5 2020-12-17 02:21:19.409802 48805 1259 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1234\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1651801E5\namount_out: !ruby/object:BigDecimal 18:0.3E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.74E4\ncash_fund: !ruby/object:BigDecimal 18:0.894E3\nphysical_cash: !ruby/object:BigDecimal 18:0.8294E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.20.144 71cf9e2f-d5c8-439b-a60d-34c68bee9102 2020-12-17 02:23:43.125155 48806 1234 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.20.144 71cf9e2f-d5c8-439b-a60d-34c68bee9102 2020-12-17 02:23:43.140743 48807 1260 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1233\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1293999E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.933399E4\ncash_fund: !ruby/object:BigDecimal 18:0.734E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1006799E5\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.89.234 b329ba65-9fbb-459a-933b-97cd1462562d 2020-12-17 02:59:25.402822 48808 1233 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.89.234 b329ba65-9fbb-459a-933b-97cd1462562d 2020-12-17 02:59:25.421944 48809 1235 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.734E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 734.0 189.186.89.234 e8dd4b75-58c2-466f-9432-88ea5d207b43 2020-12-17 03:07:33.109836 48810 3749 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1235\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-16\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1038\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 f25c5196-c7c3-438d-ae99-eb36f1abef72 2020-12-17 03:08:13.430895 48811 2365 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.89.234 f25c5196-c7c3-438d-ae99-eb36f1abef72 2020-12-17 03:08:13.474952 48812 3749 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 18e12dfa-1c57-4288-b55f-39ef1571fa4d 2020-12-17 03:08:17.002261 48813 4957 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1235\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3749\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1038\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1038 189.186.89.234 18e12dfa-1c57-4288-b55f-39ef1571fa4d 2020-12-17 03:08:17.027614 48814 1261 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1235\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1499E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.733E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2233E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.89.234 58dd44b9-c497-414b-a522-a7d344f11d40 2020-12-17 03:10:35.975637 48815 1235 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.89.234 58dd44b9-c497-414b-a522-a7d344f11d40 2020-12-17 03:10:35.989986 48816 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-17 00:18:54.584010000 Z\n- &1 2020-12-17 02:15:03.772652000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-17 04:45:48.180502269 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535232\n mask_addr: 4294967295\nsign_in_count:\n- 2170\n- 2171\n 4342 \N 177.228.100.192 fdce5843-00ab-4b33-9299-ded8cb5b3191 2020-12-17 04:45:48.200084 48817 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 68ZGhVLkYyHhpyHRTkas\n- YgP9t1hNp6xZ36ZawMwr\n 4343 \N 177.228.100.192 fdce5843-00ab-4b33-9299-ded8cb5b3191 2020-12-17 04:45:48.225102 48818 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-15 17:22:03.155407000 Z\n- &1 2020-12-16 18:11:05.335529000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-17 17:54:13.181354084 Z\nsign_in_count:\n- 731\n- 732\n 1467 \N 189.186.20.144 5f77ab03-6e7e-407c-95f2-413e6de45e82 2020-12-17 17:54:13.205122 48819 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Z-2UA-AuSh6ez-swpuFk\n- eMsZE7TZbRXbYrmEpSEU\n 1468 \N 189.186.20.144 5f77ab03-6e7e-407c-95f2-413e6de45e82 2020-12-17 17:54:13.228119 48820 1236 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.894E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 894.0 189.186.20.144 097008d9-dea1-4e6c-8e3b-d113c574feb3 2020-12-17 17:54:29.552235 48821 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-14 19:16:48.917958000 Z\n- &1 2020-12-16 18:07:22.540943000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-17 17:57:11.755048682 Z\nsign_in_count:\n- 367\n- 368\n 737 \N 189.186.89.234 6d3b2781-bdc3-4d6d-8926-fd2d63497ce8 2020-12-17 17:57:11.76081 48822 21 User \N \N 21 User \N update ---\nunique_session_id:\n- bMPsKGmHwALaNBPjuRKz\n- q1ZbsHwvNS1HB9gLc5hW\n 738 \N 189.186.89.234 6d3b2781-bdc3-4d6d-8926-fd2d63497ce8 2020-12-17 17:57:11.778264 48823 1237 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.733E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 733.0 189.186.89.234 d7a2eeb1-b8fd-406a-a73a-21b74daf2b36 2020-12-17 18:03:42.148713 48824 3750 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1237\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-17\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1039\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.89.234 9a99cd5f-a26b-46de-b49e-2093ab0b403c 2020-12-17 18:05:35.286689 48825 1966 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.89.234 9a99cd5f-a26b-46de-b49e-2093ab0b403c 2020-12-17 18:05:35.313971 48826 3750 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.89.234 ea19ef3c-cdc0-4ff9-a678-55b6f332148c 2020-12-17 18:05:50.540764 48827 4958 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1237\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 3750\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1039\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1039 189.186.89.234 ea19ef3c-cdc0-4ff9-a678-55b6f332148c 2020-12-17 18:05:50.563364 48828 3751 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1236\namount: !ruby/object:BigDecimal 18:0.159E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.159E3\nstatus: 0\ndate_sale: 2020-12-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1792\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 67cd012f-b9d3-4e4f-811c-884b8e131892 2020-12-17 18:06:14.729546 48829 2131 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.20.144 67cd012f-b9d3-4e4f-811c-884b8e131892 2020-12-17 18:06:14.757825 48830 3751 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 25cd497e-39a1-4e99-895c-728d0800f2d6 2020-12-17 18:07:00.605246 48831 4959 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1236\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.159E3\nmove_type: '1'\nsale_id: 3751\ncardnumber: 2840\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1792\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1792 189.186.20.144 25cd497e-39a1-4e99-895c-728d0800f2d6 2020-12-17 18:07:00.627908 48832 481 Customer \N \N 2 User \N create ---\nnick_name: CHAYITO\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CHAYITO fue registrado. 189.186.20.144 2097cacc-1ba1-4fee-948b-9e929631e7be 2020-12-17 18:16:19.671269 48833 3752 Sale \N \N 2 User \N create ---\ncustomer_id: 481\nuser_id: 2\nopen_cash_register_id: 1236\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-12-17\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1793\nexpiration_date: 2021-01-21\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 af4344ad-4674-4534-b299-cb0cac43c74f 2020-12-17 18:16:27.621305 48834 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 34 \N 189.186.20.144 af4344ad-4674-4534-b299-cb0cac43c74f 2020-12-17 18:16:27.651774 48835 4960 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1236\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 3752\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1793\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1793 189.186.20.144 e0d08201-1e80-4f19-b2c4-52da725c8a28 2020-12-17 18:16:33.710214 48836 3752 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.20.144 c4c01772-27e9-4fc0-84a5-79ed763e0a3b 2020-12-17 18:16:35.852653 48837 3753 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1236\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2020-12-17\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1794\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 a49ba0e5-c9e1-4659-8b08-4e1f9b923d88 2020-12-17 20:13:28.750885 48838 2535 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.20.144 a49ba0e5-c9e1-4659-8b08-4e1f9b923d88 2020-12-17 20:13:28.784073 48839 3753 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 f5b95266-7796-412f-8a77-320bbc05c450 2020-12-17 20:13:37.640936 48840 4961 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1236\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 3753\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1794\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.749E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1794 189.186.20.144 f5b95266-7796-412f-8a77-320bbc05c450 2020-12-17 20:13:37.662909 48841 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-17 02:15:03.772652000 Z\n- &1 2020-12-17 04:45:48.180502000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-17 20:27:14.751910844 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535232\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535232\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934129\n mask_addr: 4294967295\nsign_in_count:\n- 2171\n- 2172\n 4344 \N 200.68.134.177 8d8888ba-24ff-4bb9-acee-9e7416b011b1 2020-12-17 20:27:14.781595 48842 4 User \N \N 4 User \N update ---\nunique_session_id:\n- YgP9t1hNp6xZ36ZawMwr\n- eMo9vxP_-wfSeGdvjJ-R\n 4345 \N 200.68.134.177 8d8888ba-24ff-4bb9-acee-9e7416b011b1 2020-12-17 20:27:14.807909 48843 3754 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1236\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-12-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1795\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 20245a51-b1a6-48f6-98d5-3a775cb339ce 2020-12-17 20:35:53.940037 48844 2516 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.20.144 20245a51-b1a6-48f6-98d5-3a775cb339ce 2020-12-17 20:35:53.97347 48845 3754 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 5528c881-8e15-4368-93ca-0ca22c88f19f 2020-12-17 20:36:23.972412 48846 4962 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1236\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3754\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1795\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1795 189.186.20.144 5528c881-8e15-4368-93ca-0ca22c88f19f 2020-12-17 20:36:23.995737 48847 3755 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1236\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1796\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 f1e1b635-00ac-4b0f-8683-131873d23275 2020-12-17 21:13:45.705265 48848 2369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 25 \N 189.186.20.144 f1e1b635-00ac-4b0f-8683-131873d23275 2020-12-17 21:13:45.731311 48849 3755 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 b68177f5-0cd7-4a72-968d-f40f22de36c9 2020-12-17 21:13:54.048039 48850 4963 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1236\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3755\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1796\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1399E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1796 189.186.20.144 b68177f5-0cd7-4a72-968d-f40f22de36c9 2020-12-17 21:13:54.068834 48851 3756 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1236\namount: !ruby/object:BigDecimal 18:0.379E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.379E3\nstatus: 0\ndate_sale: 2020-12-17\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1797\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.20.144 40cd1daf-fbe5-443b-9969-90ddee8e8449 2020-12-17 21:16:26.810846 48852 2384 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.20.144 40cd1daf-fbe5-443b-9969-90ddee8e8449 2020-12-17 21:16:26.838986 48853 3756 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.20.144 4332bdc2-94e5-48ba-a6cd-0c62b346f163 2020-12-17 21:16:32.792385 48899 2575 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 177.228.103.168 2ee0c336-d5c6-414c-89a2-d47e4f2a8649 2020-12-18 06:31:04.863528 48854 4964 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1236\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.379E3\nmove_type: '1'\nsale_id: 3756\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1797\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.379E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1797 189.186.20.144 4332bdc2-94e5-48ba-a6cd-0c62b346f163 2020-12-17 21:16:32.813704 48855 4965 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1236\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 3601\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1719 189.186.20.144 79e47757-a0a9-4a12-ad15-1a1aec2040a4 2020-12-17 21:20:48.945497 48856 3601 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.20.144 b3a76265-ada3-491b-abf9-9ca093c38e97 2020-12-17 21:20:50.547339 48857 41 ProductsReturn \N \N 2 User \N create ---\nsale_id: 3590\nuser_id: 2\nreturn_code: PV1-D-17\npointsale_id: 1\nnew_amount: !ruby/object:BigDecimal 18:0.798E3\nreturned_amount: !ruby/object:BigDecimal 18:0.799E3\ndifference_amount: !ruby/object:BigDecimal 18:0.0\nis_money_returned: false\n 1 devolución PV1-D-17 creada. 187.149.121.224 63f73e48-9017-4065-bd82-c8ef16382fb9 2020-12-18 00:03:50.557706 48858 872 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.121.224 63f73e48-9017-4065-bd82-c8ef16382fb9 2020-12-18 00:03:50.582865 48859 2516 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.121.224 63f73e48-9017-4065-bd82-c8ef16382fb9 2020-12-18 00:03:50.607608 48860 2472 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.121.224 63f73e48-9017-4065-bd82-c8ef16382fb9 2020-12-18 00:03:50.624455 48861 3757 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1236\namount: !ruby/object:BigDecimal 18:0.2998E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2998E4\nstatus: 0\ndate_sale: 2020-12-17\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1798\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 ca1b4c3c-2d0e-4f6a-840c-577fe11be31d 2020-12-18 00:15:21.751923 48862 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 23 \N 187.149.121.224 ca1b4c3c-2d0e-4f6a-840c-577fe11be31d 2020-12-18 00:15:21.779035 48863 2369 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 26 \N 187.149.121.224 ca1b4c3c-2d0e-4f6a-840c-577fe11be31d 2020-12-18 00:15:21.804311 48864 3757 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 e0663a00-22a7-42d8-be5a-ca18d5e869d8 2020-12-18 00:17:02.579577 48865 4966 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1236\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2998E4\nmove_type: '1'\nsale_id: 3757\ncardnumber: 7231\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1798\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1798 187.149.121.224 e0663a00-22a7-42d8-be5a-ca18d5e869d8 2020-12-18 00:17:02.601898 48866 3758 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1236\namount: !ruby/object:BigDecimal 18:0.8448E2\ntax: !ruby/object:BigDecimal 18:0.1352E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.98E2\nstatus: 0\ndate_sale: 2020-12-17\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1799\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 72fc6e1f-b8c4-4d36-b415-6cefae242d35 2020-12-18 00:18:40.292588 48867 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.37E2\n- !ruby/object:BigDecimal 18:0.35E2\n 23 \N 187.149.121.224 72fc6e1f-b8c4-4d36-b415-6cefae242d35 2020-12-18 00:18:40.320943 48868 3758 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 ec6d15c1-aac2-4af5-87c1-c4d7943c9be6 2020-12-18 00:18:45.088597 48869 4967 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1236\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.98E2\nmove_type: '1'\nsale_id: 3758\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1799\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.98E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1799 187.149.121.224 ec6d15c1-aac2-4af5-87c1-c4d7943c9be6 2020-12-18 00:18:45.109405 48870 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-17 01:09:05.229082000 Z\n- &1 2020-12-17 01:48:24.727958000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-18 00:23:33.234019726 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 433\n- 434\n 868 \N 187.149.121.224 aa259843-9a4c-4ccb-bbb8-6b2526de2489 2020-12-18 00:23:33.241114 48871 1 User \N \N 1 User \N update ---\nunique_session_id:\n- a8-fNaWbhMfsY9bABSuo\n- Mic9zjM9uphY4DxLVucy\n 869 \N 187.149.121.224 aa259843-9a4c-4ccb-bbb8-6b2526de2489 2020-12-18 00:23:33.258773 48872 4968 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1236\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.369E3\nmove_type: '1'\nsale_id: 3620\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.369E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1729 187.149.121.224 ee257472-8e45-449b-a939-8d3faaf01b30 2020-12-18 00:46:43.086841 48873 3620 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.121.224 e3e38ef8-4fee-4752-82be-81f3a261c462 2020-12-18 00:46:52.465902 48874 3759 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1236\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2020-12-17\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1800\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 6d2ebdc3-e8ce-4a7e-a2e4-31a616dcbee9 2020-12-18 01:12:34.924416 48875 2245 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.121.224 6d2ebdc3-e8ce-4a7e-a2e4-31a616dcbee9 2020-12-18 01:12:34.955856 48876 3759 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 40b7657e-b993-46cf-9381-0f29855c45ec 2020-12-18 01:12:39.105569 48877 4969 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1236\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 3759\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1800\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.749E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1800 187.149.121.224 40b7657e-b993-46cf-9381-0f29855c45ec 2020-12-18 01:12:39.129613 48878 1262 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1236\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.8948E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.5E4\ncash_fund: !ruby/object:BigDecimal 18:0.1685E4\nphysical_cash: !ruby/object:BigDecimal 18:0.6685E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 5c4679e1-bcd9-412c-9f21-b662a80c9359 2020-12-18 02:17:53.578367 48879 1236 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 5c4679e1-bcd9-412c-9f21-b662a80c9359 2020-12-18 02:17:53.59272 48880 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-17 04:45:48.180502000 Z\n- &1 2020-12-17 20:27:14.751910000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-18 05:22:13.229704858 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535232\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934129\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934129\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535976\n mask_addr: 4294967295\nsign_in_count:\n- 2172\n- 2173\n 4346 \N 177.228.103.168 6fa197a2-c415-40ed-b292-82e900e6e22d 2020-12-18 05:22:13.249934 48881 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eMo9vxP_-wfSeGdvjJ-R\n- 1iUhXJyWx4haNRw-GNik\n 4347 \N 177.228.103.168 6fa197a2-c415-40ed-b292-82e900e6e22d 2020-12-18 05:22:13.274951 48882 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-17 00:33:31.606804000 Z\n- &1 2020-12-17 02:21:19.383322000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-18 06:25:25.206720528 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535976\n mask_addr: 4294967295\nsign_in_count:\n- 407\n- 408\n 817 \N 177.228.103.168 d4004288-c02b-418d-a0b5-001a95f2b9c1 2020-12-18 06:25:25.2136 48883 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Y2H_gQ6BPWdvBP9XzsU4\n- WsyUR8jCSj5JFgpQF6Fj\n 818 \N 177.228.103.168 d4004288-c02b-418d-a0b5-001a95f2b9c1 2020-12-18 06:25:25.228184 48884 3760 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1237\namount: !ruby/object:BigDecimal 18:0.1629E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1629E4\nstatus: 0\ndate_sale: 2020-12-17\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1040\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.103.168 93267c9c-d205-4584-9f1b-37ae2778514d 2020-12-18 06:26:39.665853 48885 1389 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 16 \N 177.228.103.168 93267c9c-d205-4584-9f1b-37ae2778514d 2020-12-18 06:26:39.69921 48886 3760 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.103.168 07ed1639-746b-4f37-8003-e8dc7e70ff99 2020-12-18 06:26:43.528443 48887 4970 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1237\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1629E4\nmove_type: '1'\nsale_id: 3760\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1040\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1629E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1040 177.228.103.168 07ed1639-746b-4f37-8003-e8dc7e70ff99 2020-12-18 06:26:43.556577 48888 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-17 20:27:14.751910000 Z\n- &1 2020-12-18 05:22:13.229704000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-18 06:28:23.545793457 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934129\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535976\n mask_addr: 4294967295\nsign_in_count:\n- 2173\n- 2174\n 4348 \N 177.228.103.168 cb5270b7-9be5-485b-aa2a-433423b64777 2020-12-18 06:28:23.552967 48889 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1iUhXJyWx4haNRw-GNik\n- 1z8UyX7FWuznYyMXGRsc\n 4349 \N 177.228.103.168 cb5270b7-9be5-485b-aa2a-433423b64777 2020-12-18 06:28:23.572779 48890 2548 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 177.228.103.168 091f3ab6-3bd3-45aa-baee-10c9808f5c76 2020-12-18 06:28:50.725387 48891 2548 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 177.228.103.168 897c65c5-fe48-4a5f-b423-c2ae42100792 2020-12-18 06:28:54.942978 48892 763 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-17\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 177.228.103.168 86e98be3-955b-4330-92b2-1351b11b6854 2020-12-18 06:28:57.505399 48893 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-17 02:21:19.383322000 Z\n- &1 2020-12-18 06:25:25.206720000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-18 06:30:13.116045483 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535976\n mask_addr: 4294967295\nsign_in_count:\n- 408\n- 409\n 819 \N 177.228.103.168 9bd35579-85b4-4e11-8606-486a545fa8a5 2020-12-18 06:30:13.130055 48894 18 User \N \N 18 User \N update ---\nunique_session_id:\n- WsyUR8jCSj5JFgpQF6Fj\n- qnUTDQE9TvLzAjBssgix\n 820 \N 177.228.103.168 9bd35579-85b4-4e11-8606-486a545fa8a5 2020-12-18 06:30:13.155661 48895 763 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-17\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 177.228.103.168 6b01d9f1-f64d-4392-83e2-e68e1d3b6cfc 2020-12-18 06:30:25.506728 48896 2575 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 177.228.103.168 6b01d9f1-f64d-4392-83e2-e68e1d3b6cfc 2020-12-18 06:30:25.525789 48897 3761 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1237\namount: !ruby/object:BigDecimal 18:0.2648E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2648E4\nstatus: 0\ndate_sale: 2020-12-17\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1041\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.103.168 2ee0c336-d5c6-414c-89a2-d47e4f2a8649 2020-12-18 06:31:04.810203 48898 2588 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 177.228.103.168 2ee0c336-d5c6-414c-89a2-d47e4f2a8649 2020-12-18 06:31:04.839044 48900 2572 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 11 \N 177.228.103.168 2ee0c336-d5c6-414c-89a2-d47e4f2a8649 2020-12-18 06:31:04.892097 48901 2590 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 177.228.103.168 2ee0c336-d5c6-414c-89a2-d47e4f2a8649 2020-12-18 06:31:04.9135 48902 3761 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.103.168 56cb633a-153b-4cf9-8294-c7ab09d0c7ef 2020-12-18 06:31:08.604664 48903 4971 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1237\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2648E4\nmove_type: '1'\nsale_id: 3761\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1041\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2648E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1041 177.228.103.168 56cb633a-153b-4cf9-8294-c7ab09d0c7ef 2020-12-18 06:31:08.636029 48904 3762 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1237\namount: !ruby/object:BigDecimal 18:0.811E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.811E3\nstatus: 0\ndate_sale: 2020-12-17\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1042\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.103.168 4e49475b-da67-4b26-ba09-042ac83090dc 2020-12-18 06:31:27.254652 48905 2575 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 177.228.103.168 4e49475b-da67-4b26-ba09-042ac83090dc 2020-12-18 06:31:27.283873 48906 3762 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.103.168 9aaf67bd-fd37-4851-81c2-4b87394ea399 2020-12-18 06:31:33.392511 48907 4972 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1237\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.811E3\nmove_type: '1'\nsale_id: 3762\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1042\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.811E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1042 177.228.103.168 9aaf67bd-fd37-4851-81c2-4b87394ea399 2020-12-18 06:31:33.41553 48908 3763 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1237\namount: !ruby/object:BigDecimal 18:0.759E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2020-12-17\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1043\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.103.168 6615af13-a3b7-4d7a-ba78-9f330546d95b 2020-12-18 06:32:16.495174 48909 2590 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 177.228.103.168 6615af13-a3b7-4d7a-ba78-9f330546d95b 2020-12-18 06:32:16.521947 48910 3763 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.103.168 dedfde05-1690-4e89-aa3f-44fb6bcec0f1 2020-12-18 06:32:20.251478 48911 4973 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1237\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.759E3\nmove_type: '1'\nsale_id: 3763\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1043\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.759E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1043 177.228.103.168 dedfde05-1690-4e89-aa3f-44fb6bcec0f1 2020-12-18 06:32:20.277312 48912 3764 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1237\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-17\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1044\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.103.168 f8c65f77-2c7a-454d-8977-5241b3ba474d 2020-12-18 06:32:41.650455 48913 2631 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 13 \N 177.228.103.168 f8c65f77-2c7a-454d-8977-5241b3ba474d 2020-12-18 06:32:41.678774 48914 3764 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.103.168 8d061fe0-6a64-4c9d-bb3e-06f8eddd058b 2020-12-18 06:32:46.469883 48915 4974 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1237\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3764\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1044\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1044 177.228.103.168 8d061fe0-6a64-4c9d-bb3e-06f8eddd058b 2020-12-18 06:32:46.489273 48916 3765 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1237\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.849E3\nstatus: 0\ndate_sale: 2020-12-17\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1045\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.103.168 a4a1fcd0-7c26-4de2-a81e-6b0a7ec7070d 2020-12-18 06:33:03.402158 48917 2637 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 177.228.103.168 a4a1fcd0-7c26-4de2-a81e-6b0a7ec7070d 2020-12-18 06:33:03.438065 48918 3765 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.103.168 56745458-b7ec-4108-861d-b20391d070ff 2020-12-18 06:33:07.73515 48919 4975 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1237\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.849E3\nmove_type: '1'\nsale_id: 3765\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1045\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.849E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1045 177.228.103.168 56745458-b7ec-4108-861d-b20391d070ff 2020-12-18 06:33:07.756048 48920 3766 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1237\namount: !ruby/object:BigDecimal 18:0.297769E4\ntax: !ruby/object:BigDecimal 18:0.17931E3\ndiscount: !ruby/object:BigDecimal 18:0.1599E4\ntotal: !ruby/object:BigDecimal 18:0.1558E4\nstatus: 0\ndate_sale: 2020-12-17\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1046\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.103.168 79c5ab38-a0a0-4983-a35c-e823703acffb 2020-12-18 06:34:22.359847 48921 2087 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 177.228.103.168 79c5ab38-a0a0-4983-a35c-e823703acffb 2020-12-18 06:34:22.382952 48922 1771 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 177.228.103.168 79c5ab38-a0a0-4983-a35c-e823703acffb 2020-12-18 06:34:22.408169 48923 961 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 177.228.103.168 79c5ab38-a0a0-4983-a35c-e823703acffb 2020-12-18 06:34:22.430933 48924 3766 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.103.168 7ee65725-1c91-495f-afc8-693d40136c35 2020-12-18 06:34:27.177065 48925 4976 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1237\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1558E4\nmove_type: '1'\nsale_id: 3766\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1046\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1558E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1046 177.228.103.168 7ee65725-1c91-495f-afc8-693d40136c35 2020-12-18 06:34:27.197092 48926 3767 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1237\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.849E3\nstatus: 0\ndate_sale: 2020-12-17\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1047\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.103.168 d759474d-b989-4ee3-9c25-40d2a52d0586 2020-12-18 06:35:05.883125 48927 2637 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 177.228.103.168 d759474d-b989-4ee3-9c25-40d2a52d0586 2020-12-18 06:35:05.912026 48928 3767 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.103.168 74c25058-4373-46e1-99b7-d5a0db746505 2020-12-18 06:35:10.575523 48929 4977 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1237\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.849E3\nmove_type: '1'\nsale_id: 3767\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1047\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.849E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1047 177.228.103.168 74c25058-4373-46e1-99b7-d5a0db746505 2020-12-18 06:35:10.595293 48930 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-18 05:22:13.229704000 Z\n- &1 2020-12-18 06:28:23.545793000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-18 06:38:03.299448747 Z\nsign_in_count:\n- 2174\n- 2175\n 4350 \N 177.228.103.168 51626129-06cc-43f7-ad85-282a8c6648ba 2020-12-18 06:38:03.307586 48931 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1z8UyX7FWuznYyMXGRsc\n- zYmCTMQ1bnMX8CnVt-sc\n 4351 \N 177.228.103.168 51626129-06cc-43f7-ad85-282a8c6648ba 2020-12-18 06:38:03.328968 48932 1551 Product \N \N 4 User \N create ---\nsku: BOL-1551\nname: BACKP\ndescription: BACK PACK ROSA\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1551 fue creado. 177.228.103.168 868b59c2-fac2-4ee6-abf5-b64ecdcb02be 2020-12-18 06:44:58.435849 48933 1551 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001551'\n 2 \N 177.228.103.168 868b59c2-fac2-4ee6-abf5-b64ecdcb02be 2020-12-18 06:44:58.470121 48934 2651 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1551\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 177.228.103.168 868b59c2-fac2-4ee6-abf5-b64ecdcb02be 2020-12-18 06:44:58.498077 48935 506 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-148\namount: !ruby/object:BigDecimal 18:0.7495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.7495E3\nobservations: ''\npurchase_date: 2020-12-17\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-148 por $ 749.5 MXN creada. 177.228.103.168 43a8218a-ffdc-4db6-ad9b-fb1f1bc114f4 2020-12-18 06:45:01.402718 48936 2651 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 177.228.103.168 43a8218a-ffdc-4db6-ad9b-fb1f1bc114f4 2020-12-18 06:45:01.422517 48937 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-18 06:25:25.206720000 Z\n- &1 2020-12-18 06:30:13.116045000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-18 06:45:23.919105631 Z\nsign_in_count:\n- 409\n- 410\n 821 \N 177.228.103.168 ddcebe86-119d-4735-854a-4d92678cf5e4 2020-12-18 06:45:23.925178 48938 18 User \N \N 18 User \N update ---\nunique_session_id:\n- qnUTDQE9TvLzAjBssgix\n- Vbyo8ze6szMgUyTY5NXz\n 822 \N 177.228.103.168 ddcebe86-119d-4735-854a-4d92678cf5e4 2020-12-18 06:45:23.939289 48939 3768 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1237\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-17\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1048\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.103.168 4c0540ce-0326-409f-96b1-6a4c5f7a478c 2020-12-18 06:46:17.965469 48940 2651 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 177.228.103.168 4c0540ce-0326-409f-96b1-6a4c5f7a478c 2020-12-18 06:46:17.994839 48941 3768 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.103.168 b4584cbf-9cba-44e9-b9fd-30dc55665ed2 2020-12-18 06:46:22.114529 48942 4978 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1237\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3768\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1048\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1048 177.228.103.168 b4584cbf-9cba-44e9-b9fd-30dc55665ed2 2020-12-18 06:46:22.135027 48943 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-18 06:28:23.545793000 Z\n- &1 2020-12-18 06:38:03.299448000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-18 06:49:17.119829107 Z\nsign_in_count:\n- 2175\n- 2176\n 4352 \N 177.228.103.168 13990670-1cfd-4695-9532-e94021670cad 2020-12-18 06:49:17.126432 48944 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zYmCTMQ1bnMX8CnVt-sc\n- r5TByStiMy148xx74Mee\n 4353 \N 177.228.103.168 13990670-1cfd-4695-9532-e94021670cad 2020-12-18 06:49:17.148112 48945 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-18 06:30:13.116045000 Z\n- &1 2020-12-18 06:45:23.919105000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-18 06:50:26.830911731 Z\nsign_in_count:\n- 410\n- 411\n 823 \N 177.228.103.168 13660bc2-9b47-4354-9633-a72b0005d992 2020-12-18 06:50:26.838285 48946 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Vbyo8ze6szMgUyTY5NXz\n- QrAxGVs2hofxDbz1jU8V\n 824 \N 177.228.103.168 13660bc2-9b47-4354-9633-a72b0005d992 2020-12-18 06:50:26.852461 48947 3769 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1237\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-17\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1049\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.103.168 0ab2787b-6a25-455c-983d-9891d994580f 2020-12-18 06:51:52.039136 48948 2620 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 177.228.103.168 0ab2787b-6a25-455c-983d-9891d994580f 2020-12-18 06:51:52.065414 48949 3769 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.103.168 faa93282-989c-4629-a660-0d2576fe6070 2020-12-18 06:51:55.550227 48950 4979 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1237\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3769\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1049\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1399E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1049 177.228.103.168 faa93282-989c-4629-a660-0d2576fe6070 2020-12-18 06:51:55.570988 48951 1263 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1237\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.14999E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.14936E5\ncash_fund: !ruby/object:BigDecimal 18:0.796E3\nphysical_cash: !ruby/object:BigDecimal 18:0.15732E5\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 177.228.103.168 4e83ee36-963f-45fb-a6b4-5f79021c2322 2020-12-18 06:53:04.201158 48952 1237 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 177.228.103.168 4e83ee36-963f-45fb-a6b4-5f79021c2322 2020-12-18 06:53:04.218923 48953 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-18 06:38:03.299448000 Z\n- &1 2020-12-18 06:49:17.119829000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-18 06:53:37.796342554 Z\nsign_in_count:\n- 2176\n- 2177\n 4354 \N 177.228.103.168 4255257a-0073-454c-b6e6-c261cbd20e77 2020-12-18 06:53:37.824335 48954 4 User \N \N 4 User \N update ---\nunique_session_id:\n- r5TByStiMy148xx74Mee\n- 78cni6hMQdzdb2Yjvy2i\n 4355 \N 177.228.103.168 4255257a-0073-454c-b6e6-c261cbd20e77 2020-12-18 06:53:37.842311 48955 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-16 18:11:05.335529000 Z\n- &1 2020-12-17 17:54:13.181354000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-18 17:09:37.576108751 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 732\n- 733\n 1469 \N 187.149.121.224 ad5a46f0-c4f7-488b-a14d-32bf8b62d8b3 2020-12-18 17:09:37.606739 48956 2 User \N \N 2 User \N update ---\nunique_session_id:\n- eMsZE7TZbRXbYrmEpSEU\n- yU_5oGQVzpf_1tVqrm9g\n 1470 \N 187.149.121.224 ad5a46f0-c4f7-488b-a14d-32bf8b62d8b3 2020-12-18 17:09:37.631939 48957 1238 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1685E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1685.0 187.149.121.224 db58be45-aed5-4cd2-a713-7af57d70ba82 2020-12-18 17:09:52.564544 48958 3770 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1238\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-12-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1801\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 2d3b55d1-cadd-4f64-84ce-bd411567a7b6 2020-12-18 17:12:55.809102 48959 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 35 \N 187.149.121.224 2d3b55d1-cadd-4f64-84ce-bd411567a7b6 2020-12-18 17:12:55.838706 48960 3770 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 8df4c212-6e9e-4db9-aee8-a9d7ff6735d6 2020-12-18 17:13:00.189775 48961 4980 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1238\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3770\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1801\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1799E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1801 187.149.121.224 8df4c212-6e9e-4db9-aee8-a9d7ff6735d6 2020-12-18 17:13:00.211034 48962 3771 Sale \N \N 2 User \N create ---\ncustomer_id: 468\nuser_id: 2\nopen_cash_register_id: 1238\namount: !ruby/object:BigDecimal 18:0.1629E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1629E4\nstatus: 0\ndate_sale: 2020-12-18\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1802\nexpiration_date: 2021-01-22\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 334c6a28-fdf4-4542-ab74-1138dda4cfdc 2020-12-18 18:41:55.631528 48963 1273 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 16 \N 187.149.121.224 334c6a28-fdf4-4542-ab74-1138dda4cfdc 2020-12-18 18:41:55.658049 48964 4981 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1238\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3771\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1802\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1802 187.149.121.224 ee3e914a-2b29-454d-b2fe-10b997e23009 2020-12-18 18:42:01.851184 48965 3771 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.121.224 cd5d90e2-0baa-4b83-b563-08d0dcf90f40 2020-12-18 18:42:03.915004 48966 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-17 01:48:24.727958000 Z\n- &1 2020-12-18 00:23:33.234019000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-18 18:44:21.082408021 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 434\n- 435\n 870 \N 187.149.121.224 333748e9-9581-404e-bf6f-9ce324131dae 2020-12-18 18:44:21.089155 48967 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Mic9zjM9uphY4DxLVucy\n- zTmqxq3s_Pox_Rw3pu2z\n 871 \N 187.149.121.224 333748e9-9581-404e-bf6f-9ce324131dae 2020-12-18 18:44:21.104548 48991 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-18 18:44:21.082408000 Z\n- &1 2020-12-18 21:20:14.593035000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-18 23:31:02.708408143 Z\nsign_in_count:\n- 436\n- 437\n 874 \N 187.149.121.224 32344534-ce58-4cc0-85bc-5eb7e6fd2b83 2020-12-18 23:31:02.73551 48968 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-18 06:49:17.119829000 Z\n- &1 2020-12-18 06:53:37.796342000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-18 20:59:34.879774812 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535976\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938327\n mask_addr: 4294967295\nsign_in_count:\n- 2177\n- 2178\n 4356 \N 200.68.151.23 d58620d9-7254-417c-923c-feee3d703a0c 2020-12-18 20:59:34.898069 48969 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 78cni6hMQdzdb2Yjvy2i\n- oHt_1rtmByFnqFmphAi2\n 4357 \N 200.68.151.23 d58620d9-7254-417c-923c-feee3d703a0c 2020-12-18 20:59:34.920898 48970 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-18 00:23:33.234019000 Z\n- &1 2020-12-18 18:44:21.082408000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-18 21:20:14.593035155 Z\nsign_in_count:\n- 435\n- 436\n 872 \N 187.149.121.224 c1ee393e-9675-495a-9db7-248b54915a19 2020-12-18 21:20:14.600029 48971 1 User \N \N 1 User \N update ---\nunique_session_id:\n- zTmqxq3s_Pox_Rw3pu2z\n- c7ji9gfj2E_juADDdeBB\n 873 \N 187.149.121.224 c1ee393e-9675-495a-9db7-248b54915a19 2020-12-18 21:20:14.621199 48972 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-16 18:07:22.540943000 Z\n- &1 2020-12-17 17:57:11.755048000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-18 22:08:37.831471923 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 368\n- 369\n 739 \N 187.149.121.224 0f5f893a-a70f-4e73-90a1-7125965cac89 2020-12-18 22:08:37.856925 48973 21 User \N \N 21 User \N update ---\nunique_session_id:\n- q1ZbsHwvNS1HB9gLc5hW\n- "-QwkXze4yPk4s13hhhqE"\n 740 \N 187.149.121.224 0f5f893a-a70f-4e73-90a1-7125965cac89 2020-12-18 22:08:37.879145 48974 2574 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.121.224 e44eda27-46c1-41e5-b288-c951511abbaf 2020-12-18 22:09:32.437565 48975 2574 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.121.224 89b68088-7bbc-4b10-8d57-961452adc70c 2020-12-18 22:09:40.391012 48976 764 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-12-18\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.121.224 cff9c9e5-5503-4991-97da-6cf254af1d9d 2020-12-18 22:09:41.571111 48977 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-17 17:54:13.181354000 Z\n- &1 2020-12-18 17:09:37.576108000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-18 22:10:18.096721087 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 733\n- 734\n 1471 \N 187.149.121.224 a3bc6c73-b08b-4e9a-b2f0-6766dbfcbb26 2020-12-18 22:10:18.103271 48978 2 User \N \N 2 User \N update ---\nunique_session_id:\n- yU_5oGQVzpf_1tVqrm9g\n- xPsbWxMu5x42AmsX8XnK\n 1472 \N 187.149.121.224 a3bc6c73-b08b-4e9a-b2f0-6766dbfcbb26 2020-12-18 22:10:18.119769 48979 371 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1238\nquantity: !ruby/object:BigDecimal 18:0.25E2\nstatus: 1\nobservations: agua garrafon\nexpense_date: 2020-12-18\nexpense_code: PV1-E-257\n 1 Egreso por 25.0 registrado 187.149.121.224 c1dde785-fe79-43e1-8146-8c0b1a91e7ae 2020-12-18 22:11:46.329444 48980 4982 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1238\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.25E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 371\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.121.224 c1dde785-fe79-43e1-8146-8c0b1a91e7ae 2020-12-18 22:11:46.358766 48981 764 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-18\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.121.224 7afae4a3-6ce1-46d4-90d7-25742f30d127 2020-12-18 22:12:04.056605 48982 2511 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.121.224 7afae4a3-6ce1-46d4-90d7-25742f30d127 2020-12-18 22:12:04.080884 48983 3772 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1238\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-12-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1803\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 13976f5b-235e-4fd4-94b1-8e48ded2fd6e 2020-12-18 22:12:33.033072 48984 2511 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.121.224 13976f5b-235e-4fd4-94b1-8e48ded2fd6e 2020-12-18 22:12:33.062216 48985 3772 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 276bd848-2f34-4dc4-9256-93efe180b849 2020-12-18 22:12:37.81263 48986 4983 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1238\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 3772\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1803\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1803 187.149.121.224 276bd848-2f34-4dc4-9256-93efe180b849 2020-12-18 22:12:37.834899 48987 3773 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1238\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-12-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1804\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 b6985202-50e2-4922-a322-db94a7309a4d 2020-12-18 23:08:12.732883 48988 2509 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.121.224 b6985202-50e2-4922-a322-db94a7309a4d 2020-12-18 23:08:12.776903 48989 3773 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 c84749a5-c888-4b79-9b4c-1835965a3a3d 2020-12-18 23:08:55.201227 48990 4984 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1238\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 3773\ncardnumber: 7698\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1804\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1804 187.149.121.224 c84749a5-c888-4b79-9b4c-1835965a3a3d 2020-12-18 23:08:55.22785 48992 1 User \N \N 1 User \N update ---\nunique_session_id:\n- c7ji9gfj2E_juADDdeBB\n- zJhjE3x17vWaGB1LyJ3y\n 875 \N 187.149.121.224 32344534-ce58-4cc0-85bc-5eb7e6fd2b83 2020-12-18 23:31:02.759517 48993 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-18 06:45:23.919105000 Z\n- &1 2020-12-18 06:50:26.830911000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-19 00:21:44.560817557 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535976\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945683\n mask_addr: 4294967295\nsign_in_count:\n- 411\n- 412\n 825 \N 200.68.179.211 f464116c-6a69-4ed6-85e0-818483124051 2020-12-19 00:21:44.567656 48994 18 User \N \N 18 User \N update ---\nunique_session_id:\n- QrAxGVs2hofxDbz1jU8V\n- 2KBgDUxAqrhmRPprbyra\n 826 \N 200.68.179.211 f464116c-6a69-4ed6-85e0-818483124051 2020-12-19 00:21:44.584557 48995 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-18 06:53:37.796342000 Z\n- &1 2020-12-18 20:59:34.879774000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-19 00:38:40.155057936 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535976\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938327\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938327\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945683\n mask_addr: 4294967295\nsign_in_count:\n- 2178\n- 2179\n 4358 \N 200.68.179.211 293e182a-ca4e-420a-a107-c8936c6d14fa 2020-12-19 00:38:40.162683 48996 4 User \N \N 4 User \N update ---\nunique_session_id:\n- oHt_1rtmByFnqFmphAi2\n- asL966c-piMx5sziXxWp\n 4359 \N 200.68.179.211 293e182a-ca4e-420a-a107-c8936c6d14fa 2020-12-19 00:38:40.183318 48997 3774 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1238\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1805\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 24200077-4ad0-4040-bd82-140be6846c5f 2020-12-19 00:53:18.535635 48998 2632 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.121.224 24200077-4ad0-4040-bd82-140be6846c5f 2020-12-19 00:53:18.601744 48999 3774 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 64d22b44-df32-4fe0-972c-192933b2ac7c 2020-12-19 00:53:27.733479 49000 4985 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1238\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3774\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1805\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1805 187.149.121.224 64d22b44-df32-4fe0-972c-192933b2ac7c 2020-12-19 00:53:27.769387 49001 1264 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1238\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5896E4\namount_out: !ruby/object:BigDecimal 18:0.25E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.53E4\ncash_fund: !ruby/object:BigDecimal 18:0.1357E4\nphysical_cash: !ruby/object:BigDecimal 18:0.6657E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 62985669-dc5a-42c6-a415-98ff99036009 2020-12-19 01:58:26.404451 49002 1238 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 62985669-dc5a-42c6-a415-98ff99036009 2020-12-19 01:58:26.417216 49003 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-18 21:20:14.593035000 Z\n- &1 2020-12-18 23:31:02.708408000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-19 04:45:19.335938791 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729171\n mask_addr: 4294967295\nsign_in_count:\n- 437\n- 438\n 876 \N 201.175.156.19 c4fae90b-2c45-4421-86c9-4f08db8b477a 2020-12-19 04:45:19.345047 49004 1 User \N \N 1 User \N update ---\nunique_session_id:\n- zJhjE3x17vWaGB1LyJ3y\n- HZVLUSqtHTJ7kHmdzNso\n 877 \N 201.175.156.19 c4fae90b-2c45-4421-86c9-4f08db8b477a 2020-12-19 04:45:19.362845 49005 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-18 06:50:26.830911000 Z\n- &1 2020-12-19 00:21:44.560817000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-19 06:12:17.292689566 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535976\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945683\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945683\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535536\n mask_addr: 4294967295\nsign_in_count:\n- 412\n- 413\n 827 \N 177.228.101.240 93a0ecd9-7d3f-466c-b912-2acf4b210bf3 2020-12-19 06:12:17.301075 49006 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 2KBgDUxAqrhmRPprbyra\n- VyB-LyRKRPRWtuZUEY6x\n 828 \N 177.228.101.240 93a0ecd9-7d3f-466c-b912-2acf4b210bf3 2020-12-19 06:12:17.322654 49007 1239 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.796E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 796.0 177.228.101.240 e2dbcb53-09f8-4e73-8aaa-93876be51277 2020-12-19 06:12:47.028887 49008 3775 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1239\namount: !ruby/object:BigDecimal 18:0.1045E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1045E4\nstatus: 0\ndate_sale: 2020-12-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1050\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.101.240 9c34e7d3-d474-4303-8b20-c9863aa04fe4 2020-12-19 06:13:01.509205 49009 2621 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 177.228.101.240 9c34e7d3-d474-4303-8b20-c9863aa04fe4 2020-12-19 06:13:01.538564 49010 3775 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.101.240 b7ecc3d0-d9f1-4fd8-91a7-0cf2b6a58c64 2020-12-19 06:13:05.601011 49011 4986 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1239\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1045E4\nmove_type: '1'\nsale_id: 3775\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1050\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1045E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1050 177.228.101.240 b7ecc3d0-d9f1-4fd8-91a7-0cf2b6a58c64 2020-12-19 06:13:05.620746 49012 3776 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1239\namount: !ruby/object:BigDecimal 18:0.2409E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2409E4\nstatus: 0\ndate_sale: 2020-12-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1051\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.101.240 7d2685fe-3be0-4a19-a545-23c14849bc51 2020-12-19 06:14:07.334458 49013 2638 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 177.228.101.240 7d2685fe-3be0-4a19-a545-23c14849bc51 2020-12-19 06:14:07.361694 49014 1915 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 177.228.101.240 7d2685fe-3be0-4a19-a545-23c14849bc51 2020-12-19 06:14:07.385809 49015 3776 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.101.240 85ea064a-859b-45bd-bc89-770135023549 2020-12-19 06:14:15.0024 49016 4987 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1239\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2409E4\nmove_type: '1'\nsale_id: 3776\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1051\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2409E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1051 177.228.101.240 85ea064a-859b-45bd-bc89-770135023549 2020-12-19 06:14:15.042028 49017 3777 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1239\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2020-12-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1052\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.101.240 7075d1f2-4a9b-4330-b1fa-9f7443c20411 2020-12-19 06:14:29.435509 49018 2379 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 177.228.101.240 7075d1f2-4a9b-4330-b1fa-9f7443c20411 2020-12-19 06:14:29.469387 49019 3777 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.101.240 124bbdc7-38df-4fe7-8056-b29ebeb76dee 2020-12-19 06:14:33.498271 49020 4988 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1239\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1699E4\nmove_type: '1'\nsale_id: 3777\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1052\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1699E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1052 177.228.101.240 124bbdc7-38df-4fe7-8056-b29ebeb76dee 2020-12-19 06:14:33.534696 49021 3778 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1239\namount: !ruby/object:BigDecimal 18:0.2598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2598E4\nstatus: 0\ndate_sale: 2020-12-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1053\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.101.240 2f7c9fad-978c-4bef-b087-5817684e9979 2020-12-19 06:15:33.625556 49022 2506 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 17 \N 177.228.101.240 2f7c9fad-978c-4bef-b087-5817684e9979 2020-12-19 06:15:33.649634 49023 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 60 \N 177.228.101.240 2f7c9fad-978c-4bef-b087-5817684e9979 2020-12-19 06:15:33.67098 49024 3778 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.101.240 9d2c263d-a887-4a23-8904-253e47411e9a 2020-12-19 06:15:37.740116 49025 4989 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1239\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2598E4\nmove_type: '1'\nsale_id: 3778\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1053\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2598E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1053 177.228.101.240 9d2c263d-a887-4a23-8904-253e47411e9a 2020-12-19 06:15:37.771152 49026 3779 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1239\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-12-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1054\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.101.240 2900beb7-7d54-4d89-9f4c-e8c3154d3127 2020-12-19 06:16:59.827259 49027 2493 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 177.228.101.240 2900beb7-7d54-4d89-9f4c-e8c3154d3127 2020-12-19 06:16:59.854097 49028 3779 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.101.240 e3e91e64-53ad-4962-90a4-4553b2bad477 2020-12-19 06:17:04.750473 49029 4990 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1239\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.799E3\nmove_type: '1'\nsale_id: 3779\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1054\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1054 177.228.101.240 e3e91e64-53ad-4962-90a4-4553b2bad477 2020-12-19 06:17:04.782539 49030 4991 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1239\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 3690\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.299E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1001 177.228.101.240 64b70bdd-cb75-47b5-bdf4-e035fd8cdf78 2020-12-19 06:21:04.88566 49031 3690 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.101.240 aed894ab-23fd-4901-822e-7814945984d7 2020-12-19 06:21:40.674986 49032 4992 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1239\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.539E3\nmove_type: '1'\nsale_id: 3644\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.539E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-978 177.228.101.240 26fbc89b-5847-4c60-9f8a-b52003f5e670 2020-12-19 06:22:00.252617 49033 3644 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.101.240 5577fa85-2f76-4243-bbaf-5b19acb0243e 2020-12-19 06:22:02.113429 49034 1265 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1239\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.9388E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.9381E4\ncash_fund: !ruby/object:BigDecimal 18:0.803E3\nphysical_cash: !ruby/object:BigDecimal 18:0.10184E5\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 177.228.101.240 4f88924c-730e-4748-b25b-fc8556e7ac51 2020-12-19 06:30:34.264403 49035 1239 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 177.228.101.240 4f88924c-730e-4748-b25b-fc8556e7ac51 2020-12-19 06:30:34.284415 49036 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-18 20:59:34.879774000 Z\n- &1 2020-12-19 00:38:40.155057000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-19 07:17:36.822447441 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938327\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945683\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945683\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535536\n mask_addr: 4294967295\nsign_in_count:\n- 2179\n- 2180\n 4360 \N 177.228.101.240 8b9b91fa-47dc-4775-a3ef-7c321d903eff 2020-12-19 07:17:36.830277 49037 4 User \N \N 4 User \N update ---\nunique_session_id:\n- asL966c-piMx5sziXxWp\n- DCy1_1FNWN93HxbLXQmu\n 4361 \N 177.228.101.240 8b9b91fa-47dc-4775-a3ef-7c321d903eff 2020-12-19 07:17:36.848804 49038 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-18 17:09:37.576108000 Z\n- &1 2020-12-18 22:10:18.096721000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-19 18:17:27.539475648 Z\nsign_in_count:\n- 734\n- 735\n 1473 \N 187.149.121.224 a90e80d0-090a-4047-9a19-630042679436 2020-12-19 18:17:27.560854 49039 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xPsbWxMu5x42AmsX8XnK\n- zp_Sx27bPCmUKPWmLu9u\n 1474 \N 187.149.121.224 a90e80d0-090a-4047-9a19-630042679436 2020-12-19 18:17:27.583597 49040 1240 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1357E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1357.0 187.149.121.224 776f8b1b-4717-4e2b-a815-caf9fb71985e 2020-12-19 18:17:40.5197 49041 3780 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1240\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1806\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 b5dab595-e177-4c10-856b-f52787edd3f3 2020-12-19 18:18:03.254331 49042 2543 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.121.224 b5dab595-e177-4c10-856b-f52787edd3f3 2020-12-19 18:18:03.285445 49043 3780 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 3daf6a0c-621a-4f06-a872-40d907487e59 2020-12-19 18:18:39.106898 49044 4993 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1240\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 3780\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1806\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1806 187.149.121.224 3daf6a0c-621a-4f06-a872-40d907487e59 2020-12-19 18:18:39.128266 49045 4994 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1240\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.749E3\nmove_type: '1'\nsale_id: 3357\ncardnumber: 3010\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1595 187.149.121.224 f4d38a3e-3444-4cf5-b8e2-20bb1b3a87e9 2020-12-19 19:59:30.606822 49046 3357 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.121.224 84b8f8f5-76a0-4de4-bd8a-4a09fda0567d 2020-12-19 19:59:37.2181 49047 3781 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1240\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1807\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 316502fe-08a2-488b-8d96-ddd2d66d099f 2020-12-19 21:38:42.843146 49048 2605 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.121.224 316502fe-08a2-488b-8d96-ddd2d66d099f 2020-12-19 21:38:42.874692 49049 3781 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 f2406828-4fde-4484-b5df-497138564eb5 2020-12-19 21:38:51.825504 49050 4995 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1240\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 3781\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1807\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1807 187.149.121.224 f2406828-4fde-4484-b5df-497138564eb5 2020-12-19 21:38:51.847423 49051 3782 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1240\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1808\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 0609eaa4-3a28-4078-b034-f6ae854e024a 2020-12-19 23:56:33.93034 49052 810 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 19 \N 187.149.121.224 0609eaa4-3a28-4078-b034-f6ae854e024a 2020-12-19 23:56:33.976634 49053 3782 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 1805e28d-36e7-4fff-ab09-8a2d2420ad75 2020-12-19 23:56:48.588359 49054 4996 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1240\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3782\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1808\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1808 187.149.121.224 1805e28d-36e7-4fff-ab09-8a2d2420ad75 2020-12-19 23:56:48.624374 49055 3783 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1240\namount: !ruby/object:BigDecimal 18:0.199E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.199E3\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1809\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 aeb45d76-5f50-4377-9b71-ce435cba30ed 2020-12-20 00:33:35.561274 49056 2203 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.121.224 aeb45d76-5f50-4377-9b71-ce435cba30ed 2020-12-20 00:33:35.601919 49057 3783 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1809 cancelada. 187.149.121.224 5a39151a-3414-49db-b9e0-1c715ba40cf2 2020-12-20 00:38:30.034938 49058 2203 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.121.224 5a39151a-3414-49db-b9e0-1c715ba40cf2 2020-12-20 00:38:30.06225 49059 3784 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1240\namount: !ruby/object:BigDecimal 18:0.199E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.199E3\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1810\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 fa5180c2-0368-4415-a912-a3ce8ee3dfbd 2020-12-20 00:38:45.086158 49060 2203 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.121.224 fa5180c2-0368-4415-a912-a3ce8ee3dfbd 2020-12-20 00:38:45.116883 49061 3784 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 6d1021df-93dd-47a3-b744-474d5a8a2f5b 2020-12-20 00:38:50.452063 49062 4997 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1240\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.199E3\nmove_type: '1'\nsale_id: 3784\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1810\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.199E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1810 187.149.121.224 6d1021df-93dd-47a3-b744-474d5a8a2f5b 2020-12-20 00:38:50.477083 49063 3785 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1240\namount: !ruby/object:BigDecimal 18:0.549E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.549E3\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1811\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 7fd73535-4b88-420c-b690-217e162d716e 2020-12-20 00:43:43.213505 49064 1873 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.121.224 7fd73535-4b88-420c-b690-217e162d716e 2020-12-20 00:43:43.239418 49065 3785 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 46fa43dd-d2c7-4dd5-ac1c-e8d26eecf0ef 2020-12-20 00:43:50.871212 49066 4998 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1240\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.549E3\nmove_type: '1'\nsale_id: 3785\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1811\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1811 187.149.121.224 46fa43dd-d2c7-4dd5-ac1c-e8d26eecf0ef 2020-12-20 00:43:50.897178 49067 3786 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1240\namount: !ruby/object:BigDecimal 18:0.69E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.69E2\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1812\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 4c3ad008-bd17-49ae-a519-7ac72cb45ea9 2020-12-20 01:17:35.357187 49068 1759 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.121.224 4c3ad008-bd17-49ae-a519-7ac72cb45ea9 2020-12-20 01:17:35.383018 49069 3786 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 5e1197f7-6b59-4899-baa6-1f5bfd9a3e7d 2020-12-20 01:17:39.071085 49070 4999 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1240\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.69E2\nmove_type: '1'\nsale_id: 3786\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1812\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.69E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1812 187.149.121.224 5e1197f7-6b59-4899-baa6-1f5bfd9a3e7d 2020-12-20 01:17:39.089644 49071 3787 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1240\namount: !ruby/object:BigDecimal 18:0.189E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.189E3\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1813\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 84ea3e3d-c217-4aab-83ff-216e6d83f827 2020-12-20 01:45:07.598894 49072 2077 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 187.149.121.224 84ea3e3d-c217-4aab-83ff-216e6d83f827 2020-12-20 01:45:07.627475 49073 3787 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 62cb4de2-15f4-4e02-893d-ffe64f6be861 2020-12-20 01:45:15.720939 49074 5000 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1240\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.189E3\nmove_type: '1'\nsale_id: 3787\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1813\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.189E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1813 187.149.121.224 62cb4de2-15f4-4e02-893d-ffe64f6be861 2020-12-20 01:45:15.745994 49075 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-17 17:57:11.755048000 Z\n- &1 2020-12-18 22:08:37.831471000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-20 01:46:04.658261595 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183106538\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 369\n- 370\n 741 \N 187.149.121.224 b1748a05-4999-41ea-bdad-799b9ce59dab 2020-12-20 01:46:04.665596 49076 21 User \N \N 21 User \N update ---\nunique_session_id:\n- "-QwkXze4yPk4s13hhhqE"\n- xF13yukSe6t2r5ahGHxv\n 742 \N 187.149.121.224 b1748a05-4999-41ea-bdad-799b9ce59dab 2020-12-20 01:46:04.695238 49077 2506 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 18 \N 187.149.121.224 fb885d21-518e-4f82-a3ca-48de7c91bccf 2020-12-20 01:46:43.411774 49078 2506 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.3E1\n 19 \N 187.149.121.224 418e5b52-9226-4399-9a05-64e6b98da55d 2020-12-20 01:46:51.118387 49079 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 61 \N 187.149.121.224 f6f296ef-d7cd-4a2c-9316-f917ecbaa742 2020-12-20 01:46:59.554492 49080 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 62 \N 187.149.121.224 b13ca433-e7e7-4f7b-98ab-13b56c522a6c 2020-12-20 01:47:03.76946 49322 3825 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV3-V-1076 cancelada. 189.186.113.193 a4510d40-da65-4991-8b78-8de06a844090 2020-12-22 02:13:13.014798 49081 2594 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.121.224 c9685d66-2455-4ed9-b2ba-3860aa9d52a2 2020-12-20 01:47:14.727748 49082 2594 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.121.224 810dedf8-8996-4159-8eea-6aa45a454892 2020-12-20 01:47:18.012341 49083 765 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-12-19\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.121.224 041048e6-3a67-4f9c-a973-81eab6f8f653 2020-12-20 01:47:25.863705 49084 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-18 22:10:18.096721000 Z\n- &1 2020-12-19 18:17:27.539475000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-20 01:48:48.400713876 Z\nsign_in_count:\n- 735\n- 736\n 1475 \N 187.149.121.224 cbac3012-0c37-44ae-9ec2-8d3f754cdf43 2020-12-20 01:48:48.406955 49085 2 User \N \N 2 User \N update ---\nunique_session_id:\n- zp_Sx27bPCmUKPWmLu9u\n- R_yYdVAf65twzHf1AYeE\n 1476 \N 187.149.121.224 cbac3012-0c37-44ae-9ec2-8d3f754cdf43 2020-12-20 01:48:48.422042 49086 765 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-19\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.121.224 f519e698-73f3-4561-b0e8-589ede5c6dae 2020-12-20 01:49:04.181085 49087 2532 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.121.224 f519e698-73f3-4561-b0e8-589ede5c6dae 2020-12-20 01:49:04.199383 49088 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.3E1\n 36 \N 187.149.121.224 f519e698-73f3-4561-b0e8-589ede5c6dae 2020-12-20 01:49:04.216684 49089 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.6E1\n 24 \N 187.149.121.224 f519e698-73f3-4561-b0e8-589ede5c6dae 2020-12-20 01:49:04.233124 49090 3788 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1240\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1814\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 d4ae15cc-7a3d-40a4-849d-d246b8345911 2020-12-20 01:49:26.607175 49091 2532 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.121.224 d4ae15cc-7a3d-40a4-849d-d246b8345911 2020-12-20 01:49:26.633363 49092 3788 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 ee646992-871c-4343-a140-da5d4a43c407 2020-12-20 01:49:55.761464 49093 5001 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1240\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 3788\ncardnumber: 9007\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1814\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1814 187.149.121.224 ee646992-871c-4343-a140-da5d4a43c407 2020-12-20 01:49:55.785105 49094 1266 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1240\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4951E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.37E4\ncash_fund: !ruby/object:BigDecimal 18:0.86E3\nphysical_cash: !ruby/object:BigDecimal 18:0.456E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 ec56359a-ea4c-4252-9c5b-4e427e5c9fd4 2020-12-20 01:53:17.4606 49095 1240 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 ec56359a-ea4c-4252-9c5b-4e427e5c9fd4 2020-12-20 01:53:17.696584 49096 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-19 00:38:40.155057000 Z\n- &1 2020-12-19 07:17:36.822447000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-20 01:55:39.551452867 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945683\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535536\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535536\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946078\n mask_addr: 4294967295\nsign_in_count:\n- 2180\n- 2181\n 4362 \N 200.68.181.94 1736d9c9-03c5-4203-9af1-6795655f62d8 2020-12-20 01:55:39.560587 49097 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DCy1_1FNWN93HxbLXQmu\n- dVoMMKumVim9QdZbtno9\n 4363 \N 200.68.181.94 1736d9c9-03c5-4203-9af1-6795655f62d8 2020-12-20 01:55:39.579696 49098 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-19 00:21:44.560817000 Z\n- &1 2020-12-19 06:12:17.292689000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-20 06:07:43.568764980 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945683\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535536\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535536\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535624\n mask_addr: 4294967295\nsign_in_count:\n- 413\n- 414\n 829 \N 177.228.102.72 ad256ab5-954c-4ebb-84fe-2bd2f9494e32 2020-12-20 06:07:43.577526 49099 18 User \N \N 18 User \N update ---\nunique_session_id:\n- VyB-LyRKRPRWtuZUEY6x\n- "-4-bzxpsMcaiyvtn7i_c"\n 830 \N 177.228.102.72 ad256ab5-954c-4ebb-84fe-2bd2f9494e32 2020-12-20 06:07:43.595166 49100 1241 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.803E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 803.0 177.228.102.72 2527f9ff-e3f4-47db-9e06-f73357add5d2 2020-12-20 06:08:19.063372 49101 3789 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1241\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1055\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.102.72 c9fa97bb-43f8-4c4d-97dd-c92ab63a3d73 2020-12-20 06:08:36.139156 49102 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 82 \N 177.228.102.72 c9fa97bb-43f8-4c4d-97dd-c92ab63a3d73 2020-12-20 06:08:36.164378 49103 3789 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.102.72 b600c250-4978-4885-83ec-8a1b190f3265 2020-12-20 06:08:40.270877 49104 5002 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1241\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3789\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1055\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1055 177.228.102.72 b600c250-4978-4885-83ec-8a1b190f3265 2020-12-20 06:08:40.301485 49105 3790 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1241\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1056\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.102.72 fa1f51fb-26ad-4e66-aa30-7c4e9810fb52 2020-12-20 06:09:09.320143 49106 2631 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 14 \N 177.228.102.72 fa1f51fb-26ad-4e66-aa30-7c4e9810fb52 2020-12-20 06:09:09.349671 49107 3790 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.102.72 0f7c0165-9b1e-4218-8045-b62846bbba05 2020-12-20 06:09:12.705695 49108 5003 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1241\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3790\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1056\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1056 177.228.102.72 0f7c0165-9b1e-4218-8045-b62846bbba05 2020-12-20 06:09:12.727295 49109 3791 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1241\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1057\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.102.72 f7a22043-5371-4b0b-a42e-ed3464a0c833 2020-12-20 06:09:25.36282 49110 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 83 \N 177.228.102.72 f7a22043-5371-4b0b-a42e-ed3464a0c833 2020-12-20 06:09:25.3887 49111 3791 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.102.72 2457415b-19e1-4fcd-92b3-0d1031d7e48f 2020-12-20 06:09:28.961229 49112 5004 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1241\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3791\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1057\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1057 177.228.102.72 2457415b-19e1-4fcd-92b3-0d1031d7e48f 2020-12-20 06:09:28.985406 49113 3792 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1241\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1058\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.102.72 611ea6fc-c0d7-4588-a5fa-a72cda5670c4 2020-12-20 06:09:48.519881 49114 2218 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 177.228.102.72 611ea6fc-c0d7-4588-a5fa-a72cda5670c4 2020-12-20 06:09:48.544562 49115 3792 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.102.72 6e58f146-9449-49ef-8a67-a7ed256926cc 2020-12-20 06:09:52.630354 49116 5005 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1241\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 3792\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1058\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1058 177.228.102.72 6e58f146-9449-49ef-8a67-a7ed256926cc 2020-12-20 06:09:52.652037 49117 3793 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1241\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1059\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.102.72 0d348146-77bd-4aff-bffa-4a2bbba842e2 2020-12-20 06:10:29.324461 49118 2562 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 177.228.102.72 0d348146-77bd-4aff-bffa-4a2bbba842e2 2020-12-20 06:10:29.353369 49119 3793 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.102.72 2d8633a2-4d69-463c-94b9-11f4ddf55a18 2020-12-20 06:10:32.952391 49120 5006 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1241\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 3793\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1059\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1059 177.228.102.72 2d8633a2-4d69-463c-94b9-11f4ddf55a18 2020-12-20 06:10:32.974093 49121 3794 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1241\namount: !ruby/object:BigDecimal 18:0.119E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.119E3\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1060\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.102.72 1e13946e-3796-44af-8e7c-53936e2dc794 2020-12-20 06:10:49.770332 49122 2406 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 177.228.102.72 1e13946e-3796-44af-8e7c-53936e2dc794 2020-12-20 06:10:49.798843 49123 3794 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.102.72 01d0ef6d-ac71-4934-8049-0662363abd55 2020-12-20 06:10:55.960012 49124 5007 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1241\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.119E3\nmove_type: '1'\nsale_id: 3794\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1060\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.119E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1060 177.228.102.72 01d0ef6d-ac71-4934-8049-0662363abd55 2020-12-20 06:10:55.980508 49125 3795 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1241\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1061\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.102.72 9da012ff-931d-46e8-affa-596d227a2fa1 2020-12-20 06:11:13.538434 49126 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 84 \N 177.228.102.72 9da012ff-931d-46e8-affa-596d227a2fa1 2020-12-20 06:11:13.567644 49127 3795 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.102.72 52affc17-1bfc-47c6-9b3f-e1466927058d 2020-12-20 06:11:17.112496 49128 5008 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1241\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3795\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1061\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1061 177.228.102.72 52affc17-1bfc-47c6-9b3f-e1466927058d 2020-12-20 06:11:17.133307 49129 3796 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1241\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1062\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.102.72 8b3628a1-83c4-45fc-80f8-82bc5c57014b 2020-12-20 06:11:37.064924 49130 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 85 \N 177.228.102.72 8b3628a1-83c4-45fc-80f8-82bc5c57014b 2020-12-20 06:11:37.094594 49131 3796 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.102.72 c6d99b07-ee46-48b2-8460-0219c8e1bfd0 2020-12-20 06:11:40.285659 49132 5009 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1241\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3796\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1062\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1062 177.228.102.72 c6d99b07-ee46-48b2-8460-0219c8e1bfd0 2020-12-20 06:11:40.307494 49133 3797 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1241\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1063\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.102.72 9c700281-2ec4-4615-a644-510df7c71dbe 2020-12-20 06:13:10.361078 49134 2363 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 177.228.102.72 9c700281-2ec4-4615-a644-510df7c71dbe 2020-12-20 06:13:10.393486 49135 3797 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.102.72 d49428f6-0f7b-40c8-b6e2-0766a1948dfd 2020-12-20 06:14:18.997053 49136 5010 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1241\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2099E4\nmove_type: '1'\nsale_id: 3797\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1063\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1063 177.228.102.72 d49428f6-0f7b-40c8-b6e2-0766a1948dfd 2020-12-20 06:14:19.01714 49137 3798 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1241\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1064\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.102.72 c5dad388-8df3-4b57-a58c-c1468998387d 2020-12-20 06:17:40.348958 49138 2638 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 177.228.102.72 c5dad388-8df3-4b57-a58c-c1468998387d 2020-12-20 06:17:40.400635 49139 3798 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.102.72 1361bcc9-a64f-49af-9f24-4a04cc2a5f74 2020-12-20 06:17:44.422457 49140 5011 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1241\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2099E4\nmove_type: '1'\nsale_id: 3798\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1064\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1064 177.228.102.72 1361bcc9-a64f-49af-9f24-4a04cc2a5f74 2020-12-20 06:17:44.443042 49141 3797 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-1063 cancelada. 177.228.102.72 bd1d5245-260e-4de9-b8b1-b4038865a462 2020-12-20 06:18:07.958888 49142 5010 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1241\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2099E4\nmove_type: '1'\nsale_id: 3797\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1063\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 177.228.102.72 bd1d5245-260e-4de9-b8b1-b4038865a462 2020-12-20 06:18:07.981476 49143 2363 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 177.228.102.72 bd1d5245-260e-4de9-b8b1-b4038865a462 2020-12-20 06:18:08.008076 49144 3799 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1241\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1065\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.102.72 9e9a6a11-4286-4817-b361-6ea32e199fa5 2020-12-20 06:19:19.757127 49145 2485 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 177.228.102.72 9e9a6a11-4286-4817-b361-6ea32e199fa5 2020-12-20 06:19:19.786879 49146 3799 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.102.72 e5aae2ba-f5d1-4614-bff7-1b9d83096b9c 2020-12-20 06:19:24.018476 49147 5012 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1241\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2099E4\nmove_type: '1'\nsale_id: 3799\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1065\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1065 177.228.102.72 e5aae2ba-f5d1-4614-bff7-1b9d83096b9c 2020-12-20 06:19:24.040747 49148 5013 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1241\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.745E3\nmove_type: '1'\nsale_id: 3707\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.745E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1014 177.228.102.72 8e8ccc81-482a-4231-89f1-2550f06948e4 2020-12-20 06:19:48.887351 49149 3707 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 177.228.102.72 ef634d1d-67dd-459e-af22-6984230b551a 2020-12-20 06:19:51.247512 49150 3800 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1241\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1066\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.102.72 ca832713-3479-44cf-af43-66c63c854394 2020-12-20 06:20:58.780371 49151 2577 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 177.228.102.72 ca832713-3479-44cf-af43-66c63c854394 2020-12-20 06:20:58.814776 49152 3800 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-1066 cancelada. 177.228.102.72 6d60a8c5-f8a3-4eae-ac73-3501ffff971d 2020-12-20 06:21:02.135892 49153 2577 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 177.228.102.72 6d60a8c5-f8a3-4eae-ac73-3501ffff971d 2020-12-20 06:21:02.171253 49154 3801 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1241\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2020-12-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1067\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 177.228.102.72 6b5a8c7b-7436-4c21-a436-1b5f55fbddb4 2020-12-20 06:21:18.114595 49155 2577 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 177.228.102.72 6b5a8c7b-7436-4c21-a436-1b5f55fbddb4 2020-12-20 06:21:18.154086 49156 3801 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 177.228.102.72 39734d98-3090-4381-8fa9-c9c27a5bd06b 2020-12-20 06:21:25.086408 49157 5014 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1241\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 3801\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1067\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1067 177.228.102.72 39734d98-3090-4381-8fa9-c9c27a5bd06b 2020-12-20 06:21:25.109941 49158 3796 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-1062 cancelada. 177.228.102.72 65809e23-4b0d-43f2-aa6e-c133d5bcffb8 2020-12-20 06:24:38.401033 49159 5009 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1241\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 3796\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1062\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 177.228.102.72 65809e23-4b0d-43f2-aa6e-c133d5bcffb8 2020-12-20 06:24:38.434547 49160 1836 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 86 \N 177.228.102.72 65809e23-4b0d-43f2-aa6e-c133d5bcffb8 2020-12-20 06:24:38.468941 49161 1267 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1241\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.14855E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.14409E5\ncash_fund: !ruby/object:BigDecimal 18:0.1249E4\nphysical_cash: !ruby/object:BigDecimal 18:0.15658E5\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 177.228.102.72 18d072e9-56fb-4695-83c8-5f465a987bd0 2020-12-20 06:27:52.126658 49162 1241 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 177.228.102.72 18d072e9-56fb-4695-83c8-5f465a987bd0 2020-12-20 06:27:52.141101 49163 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-19 07:17:36.822447000 Z\n- &1 2020-12-20 01:55:39.551452000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-20 06:28:09.062988814 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535536\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946078\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946078\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535624\n mask_addr: 4294967295\nsign_in_count:\n- 2181\n- 2182\n 4364 \N 177.228.102.72 e408e343-6ee1-45a3-a576-31fb260178ab 2020-12-20 06:28:09.071259 49164 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dVoMMKumVim9QdZbtno9\n- ycV-ZDyWgjPTG6XEgUkb\n 4365 \N 177.228.102.72 e408e343-6ee1-45a3-a576-31fb260178ab 2020-12-20 06:28:09.090727 49165 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-20 01:55:39.551452000 Z\n- &1 2020-12-20 06:28:09.062988000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-20 17:11:05.344367888 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946078\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535624\n mask_addr: 4294967295\nsign_in_count:\n- 2182\n- 2183\n 4366 \N 177.228.102.72 2deb61cf-0c1a-4177-a662-c9247938d659 2020-12-20 17:11:05.370828 49166 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ycV-ZDyWgjPTG6XEgUkb\n- y7YmJdPFA7gmTL3vphyc\n 4367 \N 177.228.102.72 2deb61cf-0c1a-4177-a662-c9247938d659 2020-12-20 17:11:05.396723 49167 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-19 18:17:27.539475000 Z\n- &1 2020-12-20 01:48:48.400713000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-20 18:24:50.625248239 Z\nsign_in_count:\n- 736\n- 737\n 1477 \N 187.149.121.224 b8a7a042-b5a7-4626-adf4-22c113cc616f 2020-12-20 18:24:50.633132 49168 2 User \N \N 2 User \N update ---\nunique_session_id:\n- R_yYdVAf65twzHf1AYeE\n- mety9oTg49DosZc_T3b4\n 1478 \N 187.149.121.224 b8a7a042-b5a7-4626-adf4-22c113cc616f 2020-12-20 18:24:50.652424 49169 1242 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.86E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 860.0 187.149.121.224 8e0ca5cb-d283-4c0f-9cee-872869cf7087 2020-12-20 18:28:56.497442 49170 3802 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1242\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-12-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1815\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 2c2a955a-02e4-458e-a0a1-90eb097c4e81 2020-12-20 18:32:21.670115 49171 2516 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.121.224 2c2a955a-02e4-458e-a0a1-90eb097c4e81 2020-12-20 18:32:21.700914 49172 3802 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 90f91839-8655-4808-8f91-45ff21f945c1 2020-12-20 18:32:25.261118 49173 5015 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1242\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3802\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1815\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1815 187.149.121.224 90f91839-8655-4808-8f91-45ff21f945c1 2020-12-20 18:32:25.282459 49174 5016 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1242\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3669\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1755 187.149.121.224 7a389b2a-fdc5-4b14-9c4d-9308dbe56324 2020-12-20 18:55:52.426891 49175 3669 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.121.224 3436b711-cb0b-4bf5-b332-2ebe19f414c3 2020-12-20 18:55:54.288665 49176 372 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1242\nquantity: !ruby/object:BigDecimal 18:0.13E4\nstatus: 1\nobservations: SUELDO MOTSE\nexpense_date: 2020-12-20\nexpense_code: PV1-E-258\n 1 Egreso por 1300.0 registrado 187.149.121.224 20475975-8be0-4028-8bd1-9228ffdda4e0 2020-12-20 19:49:47.46163 49177 5017 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1242\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.13E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 372\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.121.224 20475975-8be0-4028-8bd1-9228ffdda4e0 2020-12-20 19:49:47.481466 49178 3803 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1242\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-12-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1816\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 e795b6d6-eeae-4f57-822a-3231d3b9d9a2 2020-12-20 21:30:52.562875 49179 2645 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 187.149.121.224 e795b6d6-eeae-4f57-822a-3231d3b9d9a2 2020-12-20 21:30:52.597113 49180 3803 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 15ebb4b5-82e7-4fb6-b134-109badf4a429 2020-12-20 21:31:16.688828 49181 5018 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1242\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2E4\nmove_type: '1'\nsale_id: 3803\ncardnumber: 9180\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1816\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1816 187.149.121.224 15ebb4b5-82e7-4fb6-b134-109badf4a429 2020-12-20 21:31:16.718604 49182 5019 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1242\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.99E2\nmove_type: '1'\nsale_id: 3803\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1816\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.99E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1816 187.149.121.224 33dbc410-3105-4777-92e2-b62538490c4d 2020-12-20 21:31:22.41505 49183 3804 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1242\namount: !ruby/object:BigDecimal 18:0.189E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.189E3\nstatus: 0\ndate_sale: 2020-12-20\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1817\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 95949b89-6d20-4e05-bc0b-cd662bbdba93 2020-12-20 22:34:19.05836 49184 2077 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 187.149.121.224 95949b89-6d20-4e05-bc0b-cd662bbdba93 2020-12-20 22:34:19.084861 49185 3804 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 6092f3fa-85c7-46d6-bc36-38da45769d30 2020-12-20 22:35:03.862559 49186 5020 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1242\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.189E3\nmove_type: '1'\nsale_id: 3804\ncardnumber: 4984\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1817\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1817 187.149.121.224 6092f3fa-85c7-46d6-bc36-38da45769d30 2020-12-20 22:35:03.884633 49187 373 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1242\nquantity: !ruby/object:BigDecimal 18:0.39E3\nstatus: 1\nobservations: 14 HORAS EXTRAS ROCIO MENOS 1 DE DESCUENTO=13\nexpense_date: 2020-12-20\nexpense_code: PV1-E-259\n 1 Egreso por 390.0 registrado 187.149.121.224 429dbcf2-348a-4ee9-97c3-9734ff4f9255 2020-12-20 22:36:30.542089 49188 5021 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1242\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.39E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 373\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.121.224 429dbcf2-348a-4ee9-97c3-9734ff4f9255 2020-12-20 22:36:30.564782 49189 3805 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1242\namount: !ruby/object:BigDecimal 18:0.69E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.69E2\nstatus: 0\ndate_sale: 2020-12-20\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1818\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 a017f7c7-17be-4a6b-bb57-c78c2f4260b6 2020-12-20 22:49:32.366184 49190 1759 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.121.224 a017f7c7-17be-4a6b-bb57-c78c2f4260b6 2020-12-20 22:49:32.393084 49191 3805 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 2dd785d7-80e4-4c14-9e5d-e8ab0fb06d87 2020-12-20 22:49:36.927474 49192 5022 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1242\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.69E2\nmove_type: '1'\nsale_id: 3805\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1818\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.69E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1818 187.149.121.224 2dd785d7-80e4-4c14-9e5d-e8ab0fb06d87 2020-12-20 22:49:36.95849 49193 1268 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1242\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3356E4\namount_out: !ruby/object:BigDecimal 18:0.169E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.337E3\nphysical_cash: !ruby/object:BigDecimal 18:0.337E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 e9f780c4-8cc2-4fe5-b81a-a528f83360e5 2020-12-20 22:53:53.852549 49194 1242 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 e9f780c4-8cc2-4fe5-b81a-a528f83360e5 2020-12-20 22:53:53.865689 49195 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-20 06:28:09.062988000 Z\n- &1 2020-12-20 17:11:05.344367000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-21 06:09:21.525609693 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535624\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535512\n mask_addr: 4294967295\nsign_in_count:\n- 2183\n- 2184\n 4368 \N 177.228.101.216 ab5e9691-87f1-4c09-8d2e-f42ef309a0f3 2020-12-21 06:09:21.533193 49196 4 User \N \N 4 User \N update ---\nunique_session_id:\n- y7YmJdPFA7gmTL3vphyc\n- dYAJTnseBxsRS9koeZYS\n 4369 \N 177.228.101.216 ab5e9691-87f1-4c09-8d2e-f42ef309a0f3 2020-12-21 06:09:21.553226 49197 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-20 17:11:05.344367000 Z\n- &1 2020-12-21 06:09:21.525609000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-21 17:44:10.778110272 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535624\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535512\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535512\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\nsign_in_count:\n- 2184\n- 2185\n 4370 \N 189.186.113.193 fd46a21a-95dc-4e0a-b09d-08148dd73937 2020-12-21 17:44:10.823779 49198 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dYAJTnseBxsRS9koeZYS\n- MfcLxhQ2dXyG_fPnGziR\n 4371 \N 189.186.113.193 fd46a21a-95dc-4e0a-b09d-08148dd73937 2020-12-21 17:44:10.8651 49199 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-18 22:08:37.831471000 Z\n- &1 2020-12-20 01:46:04.658261000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-21 17:50:37.870720297 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\nsign_in_count:\n- 370\n- 371\n 743 \N 189.186.113.193 8991a7c5-515f-4f49-a392-dd928b42148a 2020-12-21 17:50:37.87735 49200 21 User \N \N 21 User \N update ---\nunique_session_id:\n- xF13yukSe6t2r5ahGHxv\n- 9vb_3mpN6SaHH2VsxBYH\n 744 \N 189.186.113.193 8991a7c5-515f-4f49-a392-dd928b42148a 2020-12-21 17:50:37.893112 49201 1243 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1249E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1249.0 189.186.113.193 e0295310-0553-4e74-9e51-e5a8cc546028 2020-12-21 17:50:56.307408 49202 3806 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1243\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1068\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 76309912-74cc-4837-a217-c11763a6636c 2020-12-21 17:53:55.454278 49203 1832 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 20 \N 189.186.113.193 76309912-74cc-4837-a217-c11763a6636c 2020-12-21 17:53:55.499101 49204 3806 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 32bec341-7fd3-426e-91c8-37812ce36d48 2020-12-21 17:54:11.485594 49205 5023 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1243\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 3806\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1068\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '5245'\n 1 movimiento de efectivo por venta con folio PV3-V-1068 189.186.113.193 32bec341-7fd3-426e-91c8-37812ce36d48 2020-12-21 17:54:11.511632 49206 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-14 17:46:18.343609000 Z\n- &1 2020-12-14 17:48:01.041228000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-21 18:16:59.793618863 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 206\n- 207\n 414 \N 187.149.121.224 b1b328fa-067c-4077-8a33-8b2483c8e5a0 2020-12-21 18:16:59.801138 49207 9 User \N \N 9 User \N update ---\nunique_session_id:\n- i7zFyUBnWTyPVx-6rCTw\n- J_sBS3HGLTJYdig3okEB\n 415 \N 187.149.121.224 b1b328fa-067c-4077-8a33-8b2483c8e5a0 2020-12-21 18:16:59.817884 49208 1244 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.337E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 337.0 187.149.121.224 47c235a0-f3f0-4cf6-80cf-43e9aecb1f54 2020-12-21 18:17:04.9591 49209 3807 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1244\namount: !ruby/object:BigDecimal 18:0.163707E4\ntax: !ruby/object:BigDecimal 18:0.26193E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1819\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 6bf9f494-2dff-4815-b65b-4ca865aa586a 2020-12-21 18:23:19.689815 49210 39 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.121.224 6bf9f494-2dff-4815-b65b-4ca865aa586a 2020-12-21 18:23:19.715724 49211 3807 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 be154950-59b3-453d-8d4b-51a494146bbe 2020-12-21 18:23:47.958574 49212 5024 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1244\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1899E4\nmove_type: '1'\nsale_id: 3807\ncardnumber: 8791\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1819\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1819 187.149.121.224 be154950-59b3-453d-8d4b-51a494146bbe 2020-12-21 18:23:47.981758 49213 3808 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1243\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1069\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 921da7a4-b5ce-405c-bdb5-23b9201a2519 2020-12-21 18:34:14.92584 49214 2578 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.113.193 921da7a4-b5ce-405c-bdb5-23b9201a2519 2020-12-21 18:34:14.997685 49215 3808 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 7c952bc4-3960-4b9b-b2b4-755b9e699f52 2020-12-21 18:35:53.186993 49216 5025 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1243\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 3808\ncardnumber: 5555\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1069\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1069 189.186.113.193 7c952bc4-3960-4b9b-b2b4-755b9e699f52 2020-12-21 18:35:53.210003 49217 3809 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1243\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1069\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 c951fd46-6947-49e7-b442-f0c099831bed 2020-12-21 19:03:24.737614 49218 2482 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.113.193 c951fd46-6947-49e7-b442-f0c099831bed 2020-12-21 19:03:24.762048 49219 3809 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 2bd5db0a-14af-4cee-bddd-ffaf7f60ecf8 2020-12-21 19:04:39.226264 49220 5026 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1243\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 3809\ncardnumber: 2544\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1069\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1069 189.186.113.193 2bd5db0a-14af-4cee-bddd-ffaf7f60ecf8 2020-12-21 19:04:39.251014 49221 5027 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1244\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 3556\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1694 187.149.121.224 33797f72-91a3-4ec4-a006-5149059e084d 2020-12-21 19:35:15.446902 49222 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-21 06:09:21.525609000 Z\n- &1 2020-12-21 17:44:10.778110000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-21 19:43:44.275553234 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535512\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946211\n mask_addr: 4294967295\nsign_in_count:\n- 2185\n- 2186\n 4372 \N 200.68.181.227 357c8a07-0257-4554-ab45-6ff71cd69987 2020-12-21 19:43:44.284953 49223 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MfcLxhQ2dXyG_fPnGziR\n- APZob-yQtcsUwab-NGhm\n 4373 \N 200.68.181.227 357c8a07-0257-4554-ab45-6ff71cd69987 2020-12-21 19:43:44.307127 49224 3810 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1244\namount: !ruby/object:BigDecimal 18:0.155086E4\ntax: !ruby/object:BigDecimal 18:0.24814E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 1\nseller_id: 27\nsale_code: PV1-V-1820\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 625c57e7-491d-40ae-b0ad-0e2ec9b5971a 2020-12-21 20:53:18.766239 49225 43 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.121.224 625c57e7-491d-40ae-b0ad-0e2ec9b5971a 2020-12-21 20:53:18.794078 49226 3810 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1820 cancelada. 187.149.121.224 3d6b1fd5-ab92-4d61-991b-4c649dcca05f 2020-12-21 20:53:22.577186 49227 43 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.121.224 3d6b1fd5-ab92-4d61-991b-4c649dcca05f 2020-12-21 20:53:22.599899 49228 3811 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1244\namount: !ruby/object:BigDecimal 18:0.156466E4\ntax: !ruby/object:BigDecimal 18:0.23435E3\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.169901E4\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 1\nseller_id: 27\nsale_code: PV1-V-1821\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 94dbfe95-c605-4f58-bb8d-341da47ef27e 2020-12-21 20:53:38.057218 49229 43 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.121.224 94dbfe95-c605-4f58-bb8d-341da47ef27e 2020-12-21 20:53:38.091211 49230 3811 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 5fe281ba-4c8d-4623-9c0a-ea55ec03fc3a 2020-12-21 20:53:49.911297 49231 5028 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1244\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.169901E4\nmove_type: '1'\nsale_id: 3811\ncardnumber: 1555\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1821\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1821 187.149.121.224 5fe281ba-4c8d-4623-9c0a-ea55ec03fc3a 2020-12-21 20:53:49.939526 49232 3812 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1244\namount: !ruby/object:BigDecimal 18:0.8534E2\ntax: !ruby/object:BigDecimal 18:0.1365E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.9899E2\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1822\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 087bf1e9-6b93-4670-82b0-d691e4e8d554 2020-12-21 21:20:13.452532 49233 486 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.21E2\n- !ruby/object:BigDecimal 18:0.2E2\n 31 \N 187.149.121.224 087bf1e9-6b93-4670-82b0-d691e4e8d554 2020-12-21 21:20:13.48047 49234 3812 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 f2a187a2-981e-479d-81d3-b1d7031cfcee 2020-12-21 21:20:17.766059 49235 5029 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1244\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.9899E2\nmove_type: '1'\nsale_id: 3812\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1822\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9899E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1822 187.149.121.224 f2a187a2-981e-479d-81d3-b1d7031cfcee 2020-12-21 21:20:17.791365 49236 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-21 17:44:10.778110000 Z\n- &1 2020-12-21 19:43:44.275553000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-21 21:37:24.534852991 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946211\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 2186\n- 2187\n 4374 \N 187.149.121.224 c9604a78-889c-4cbd-942a-2e8cc7a67530 2020-12-21 21:37:24.566672 49237 4 User \N \N 4 User \N update ---\nunique_session_id:\n- APZob-yQtcsUwab-NGhm\n- wxZBu8Z6pbsyD2SwNfUa\n 4375 \N 187.149.121.224 c9604a78-889c-4cbd-942a-2e8cc7a67530 2020-12-21 21:37:24.597422 49238 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-19 06:12:17.292689000 Z\n- &1 2020-12-20 06:07:43.568764000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-21 21:47:54.870115605 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535536\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535624\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535624\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 414\n- 415\n 831 \N 187.149.121.224 a2720421-0973-4992-bcf6-073e4fd4539c 2020-12-21 21:47:54.877227 49239 18 User \N \N 18 User \N update ---\nunique_session_id:\n- "-4-bzxpsMcaiyvtn7i_c"\n- K7WFD9Mkv2y9WwoViygD\n 832 \N 187.149.121.224 a2720421-0973-4992-bcf6-073e4fd4539c 2020-12-21 21:47:54.893636 49240 3813 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1243\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-1071\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 4e9aabf0-de03-42b2-9096-9f6ac1962b69 2020-12-21 21:49:50.655983 49241 2221 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.121.224 4e9aabf0-de03-42b2-9096-9f6ac1962b69 2020-12-21 21:49:50.68296 49242 3813 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 021d660d-290e-41f8-b667-8a10069b2c6f 2020-12-21 21:49:58.704233 49243 5030 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1243\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 3813\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1071\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '12255'\n 1 movimiento de efectivo por venta con folio PV3-V-1071 187.149.121.224 021d660d-290e-41f8-b667-8a10069b2c6f 2020-12-21 21:49:58.733881 49244 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-14 17:48:01.041228000 Z\n- &1 2020-12-21 18:16:59.793618000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-21 22:10:55.981160104 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183088784\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 207\n- 208\n 416 \N 187.149.121.224 47536b5f-2316-4d84-b9c5-40b15a8f4852 2020-12-21 22:10:56.000809 49245 9 User \N \N 9 User \N update ---\nunique_session_id:\n- J_sBS3HGLTJYdig3okEB\n- pqUnxoqxgJ1Pscn6ZsVd\n 417 \N 187.149.121.224 47536b5f-2316-4d84-b9c5-40b15a8f4852 2020-12-21 22:10:56.026951 49246 2504 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.121.224 7fa3dae5-a71b-440c-a39f-3bbc026c1983 2020-12-21 22:12:34.204515 49247 766 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-21\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.121.224 680c2ea8-61fc-4859-ae93-d4a7e84b34c4 2020-12-21 22:12:35.867956 49248 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-21 19:43:44.275553000 Z\n- &1 2020-12-21 21:37:24.534852000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-21 22:13:04.420551702 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 2187\n- 2188\n 4376 \N 187.149.121.224 ed4fc435-bac3-428a-94d3-4450e65c3b5c 2020-12-21 22:13:04.430974 49249 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wxZBu8Z6pbsyD2SwNfUa\n- "-UTaFT9DgcVk8XtZTSjJ"\n 4377 \N 187.149.121.224 ed4fc435-bac3-428a-94d3-4450e65c3b5c 2020-12-21 22:13:04.45606 49250 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-21 18:16:59.793618000 Z\n- &1 2020-12-21 22:10:55.981160000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-21 22:13:55.365296098 Z\nsign_in_count:\n- 208\n- 209\n 418 \N 187.149.121.224 96a96d8c-8b6e-4034-a4bc-57ee8b2868b0 2020-12-21 22:13:55.370983 49251 9 User \N \N 9 User \N update ---\nunique_session_id:\n- pqUnxoqxgJ1Pscn6ZsVd\n- WFWAykCzkXuyGAKhUSSu\n 419 \N 187.149.121.224 96a96d8c-8b6e-4034-a4bc-57ee8b2868b0 2020-12-21 22:13:55.383548 49252 3814 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1244\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1823\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 e2882975-c144-48ce-ab74-2cd2b4430982 2020-12-21 22:14:20.930907 49253 807 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.35E2\n- !ruby/object:BigDecimal 18:0.34E2\n 24 \N 187.149.121.224 e2882975-c144-48ce-ab74-2cd2b4430982 2020-12-21 22:14:20.962142 49254 3814 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 42349349-ec15-485c-a227-e442d3830649 2020-12-21 22:14:27.2484 49255 5031 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1244\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49E2\nmove_type: '1'\nsale_id: 3814\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1823\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1823 187.149.121.224 42349349-ec15-485c-a227-e442d3830649 2020-12-21 22:14:27.270131 49348 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 9vb_3mpN6SaHH2VsxBYH\n- 8sYe2ckEpiRtxcBcVedh\n 746 \N 187.149.121.224 1915ef6c-599d-4964-b4f5-a5ba2c7c1d23 2020-12-22 18:07:02.256164 49256 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-21 21:37:24.534852000 Z\n- &1 2020-12-21 22:13:04.420551000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-21 22:32:22.332407161 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946211\n mask_addr: 4294967295\nsign_in_count:\n- 2188\n- 2189\n 4378 \N 200.68.181.227 fd1b919d-f80a-4dc0-a0ad-f7ce891aa635 2020-12-21 22:32:22.340014 49257 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-UTaFT9DgcVk8XtZTSjJ"\n- 1VnwdxsNjzCVmDAyfzct\n 4379 \N 200.68.181.227 fd1b919d-f80a-4dc0-a0ad-f7ce891aa635 2020-12-21 22:32:22.361972 49258 3815 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1243\namount: !ruby/object:BigDecimal 18:0.811E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.811E3\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1072\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 07c61021-c171-49dd-801c-d7db0033c552 2020-12-21 22:38:58.986523 49259 2575 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.113.193 07c61021-c171-49dd-801c-d7db0033c552 2020-12-21 22:38:59.023151 49260 3815 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 498947b9-b7ce-4586-9701-bb2e19b6948d 2020-12-21 22:40:16.438935 49261 5032 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1243\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.811E3\nmove_type: '1'\nsale_id: 3815\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1072\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.82E3\nchange: !ruby/object:BigDecimal 18:0.9E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1072 189.186.113.193 498947b9-b7ce-4586-9701-bb2e19b6948d 2020-12-21 22:40:16.462738 49262 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-21 22:13:04.420551000 Z\n- &1 2020-12-21 22:32:22.332407000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-21 22:44:05.247816542 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946211\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 2189\n- 2190\n 4380 \N 187.149.121.224 f0bdcb81-4f63-4398-bb68-67d0dbb232aa 2020-12-21 22:44:05.255648 49263 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1VnwdxsNjzCVmDAyfzct\n- gCov5U_YosLWi-yW6iNz\n 4381 \N 187.149.121.224 f0bdcb81-4f63-4398-bb68-67d0dbb232aa 2020-12-21 22:44:05.275797 49264 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-21 22:10:55.981160000 Z\n- &1 2020-12-21 22:13:55.365296000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-21 22:50:58.355591793 Z\nsign_in_count:\n- 209\n- 210\n 420 \N 187.149.121.224 3afe0670-4d84-4fe2-a8c4-d55d7c4fff07 2020-12-21 22:50:58.362316 49265 9 User \N \N 9 User \N update ---\nunique_session_id:\n- WFWAykCzkXuyGAKhUSSu\n- js68Up2P1_BDJmnFuefL\n 421 \N 187.149.121.224 3afe0670-4d84-4fe2-a8c4-d55d7c4fff07 2020-12-21 22:50:58.376676 49266 3816 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1244\namount: !ruby/object:BigDecimal 18:0.1498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1498E4\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1824\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 636b6773-615d-4f19-81a6-cfac19cb4fe3 2020-12-21 23:03:56.988145 49267 1369 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.121.224 636b6773-615d-4f19-81a6-cfac19cb4fe3 2020-12-21 23:03:57.014703 49268 2546 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.121.224 636b6773-615d-4f19-81a6-cfac19cb4fe3 2020-12-21 23:03:57.037435 49269 3816 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 03aa70c6-c471-4a90-8293-0625b06311aa 2020-12-21 23:04:33.514104 49270 5033 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1244\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1498E4\nmove_type: '1'\nsale_id: 3816\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1824\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.102E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1824 187.149.121.224 03aa70c6-c471-4a90-8293-0625b06311aa 2020-12-21 23:04:33.539409 49271 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-21 22:32:22.332407000 Z\n- &1 2020-12-21 22:44:05.247816000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-21 23:10:31.540931149 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946211\n mask_addr: 4294967295\nsign_in_count:\n- 2190\n- 2191\n 4382 \N 200.68.181.227 42a0d16f-6c72-4e0e-a4ae-7c1404c01fb2 2020-12-21 23:10:31.569166 49272 4 User \N \N 4 User \N update ---\nunique_session_id:\n- gCov5U_YosLWi-yW6iNz\n- 3WPxQtBZBZm3GiHxwJxd\n 4383 \N 200.68.181.227 42a0d16f-6c72-4e0e-a4ae-7c1404c01fb2 2020-12-21 23:10:31.597575 49273 3817 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1244\namount: !ruby/object:BigDecimal 18:0.4023E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4023E4\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1825\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 7b59783e-0a49-4849-b55e-04c2e6556d52 2020-12-21 23:37:51.869362 49274 2625 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.121.224 7b59783e-0a49-4849-b55e-04c2e6556d52 2020-12-21 23:37:51.897623 49275 2539 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 187.149.121.224 7b59783e-0a49-4849-b55e-04c2e6556d52 2020-12-21 23:37:51.934428 49276 2646 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.121.224 7b59783e-0a49-4849-b55e-04c2e6556d52 2020-12-21 23:37:51.95594 49277 3817 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 f6821608-68a9-468b-98a6-dd19443653de 2020-12-21 23:38:01.657927 49323 1129 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 189.186.113.193 a4510d40-da65-4991-8b78-8de06a844090 2020-12-22 02:13:13.038914 49324 2582 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 189.186.113.193 a4510d40-da65-4991-8b78-8de06a844090 2020-12-22 02:13:13.06042 49278 5034 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1244\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.4023E4\nmove_type: '1'\nsale_id: 3817\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1825\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '12555'\n 1 movimiento de efectivo por venta con folio PV1-V-1825 187.149.121.224 f6821608-68a9-468b-98a6-dd19443653de 2020-12-21 23:38:01.699286 49279 3818 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1244\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1826\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 e2779761-8397-4092-876a-b9fa8cdee859 2020-12-21 23:39:19.20056 49280 1434 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.121.224 e2779761-8397-4092-876a-b9fa8cdee859 2020-12-21 23:39:19.228391 49281 3818 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 1d2a6d84-74eb-402b-a28d-041ff4176fb8 2020-12-21 23:39:44.433534 49282 5035 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1244\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 3818\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1826\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1826 187.149.121.224 1d2a6d84-74eb-402b-a28d-041ff4176fb8 2020-12-21 23:39:44.456105 49283 3819 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1243\namount: !ruby/object:BigDecimal 18:0.1088E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1088E4\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1073\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 cf2d7d1b-17c3-4768-bda0-03b9b0f8a672 2020-12-22 00:28:30.884941 49284 2572 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 12 \N 189.186.113.193 cf2d7d1b-17c3-4768-bda0-03b9b0f8a672 2020-12-22 00:28:30.913872 49285 2272 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.113.193 cf2d7d1b-17c3-4768-bda0-03b9b0f8a672 2020-12-22 00:28:30.941808 49286 3819 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 800643bd-2cef-45f4-b7fe-cdf6f319c644 2020-12-22 00:29:13.61383 49287 5036 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1243\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1088E4\nmove_type: '1'\nsale_id: 3819\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1073\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.12E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1073 189.186.113.193 800643bd-2cef-45f4-b7fe-cdf6f319c644 2020-12-22 00:29:13.637679 49288 3820 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1243\namount: !ruby/object:BigDecimal 18:0.119E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.119E3\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1074\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 4fa6562a-954a-4869-a56d-f725895fca43 2020-12-22 00:30:29.270971 49289 2406 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.113.193 4fa6562a-954a-4869-a56d-f725895fca43 2020-12-22 00:30:29.30194 49290 3820 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 f0a3278b-c7d1-4bc3-bd38-1cdba2a3b3cd 2020-12-22 00:30:36.901076 49291 5037 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1243\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.119E3\nmove_type: '1'\nsale_id: 3820\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1074\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.119E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1074 189.186.113.193 f0a3278b-c7d1-4bc3-bd38-1cdba2a3b3cd 2020-12-22 00:30:36.946061 49292 3821 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1243\namount: !ruby/object:BigDecimal 18:0.1468E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1468E4\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1075\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 2b91b206-6458-45eb-a5cb-d8e6443bafb8 2020-12-22 01:04:05.123498 49293 2582 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.113.193 2b91b206-6458-45eb-a5cb-d8e6443bafb8 2020-12-22 01:04:05.148529 49294 1129 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.113.193 2b91b206-6458-45eb-a5cb-d8e6443bafb8 2020-12-22 01:04:05.171088 49295 3821 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 98860290-45d7-48d4-bc89-72d33692725c 2020-12-22 01:04:26.892349 49296 5038 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1243\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1468E4\nmove_type: '1'\nsale_id: 3821\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1075\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '6515'\n 1 movimiento de efectivo por venta con folio PV3-V-1075 189.186.113.193 98860290-45d7-48d4-bc89-72d33692725c 2020-12-22 01:04:26.914995 49297 3822 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1244\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1827\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 20d0f615-721f-4cdb-b4d7-f0019a7d3a35 2020-12-22 01:06:58.913013 49298 2374 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 37 \N 187.149.121.224 20d0f615-721f-4cdb-b4d7-f0019a7d3a35 2020-12-22 01:06:58.94378 49299 3822 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 6504a86b-06f7-46f6-b13e-6bb2b52d927a 2020-12-22 01:08:04.841862 49300 5039 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1244\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3822\ncardnumber: 5299\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1827\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1827 187.149.121.224 6504a86b-06f7-46f6-b13e-6bb2b52d927a 2020-12-22 01:08:04.862486 49301 3823 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1244\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1828\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 b14518ce-49a6-470e-a9e3-78ef7deb36a4 2020-12-22 01:48:47.172699 49302 2369 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 27 \N 187.149.121.224 b14518ce-49a6-470e-a9e3-78ef7deb36a4 2020-12-22 01:48:47.203231 49303 3823 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 97403024-a1cd-47d9-af50-cd0c06499e77 2020-12-22 01:50:19.863298 49304 5040 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1244\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3823\ncardnumber: 4952\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1828\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1828 187.149.121.224 97403024-a1cd-47d9-af50-cd0c06499e77 2020-12-22 01:50:19.887153 49305 3821 Sale \N \N 21 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-1075 cancelada. 189.186.113.193 93b79315-af5a-4819-b7a8-c973f71d11e9 2020-12-22 01:55:18.37301 49306 5038 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1243\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1468E4\nmove_type: '1'\nsale_id: 3821\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1075\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '6515'\n 2 \N 189.186.113.193 93b79315-af5a-4819-b7a8-c973f71d11e9 2020-12-22 01:55:18.4085 49307 1129 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 189.186.113.193 93b79315-af5a-4819-b7a8-c973f71d11e9 2020-12-22 01:55:18.437883 49308 2582 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 189.186.113.193 93b79315-af5a-4819-b7a8-c973f71d11e9 2020-12-22 01:55:18.459465 49309 3824 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1244\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1829\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 04023379-45c4-47b5-9ac4-4991e05f6018 2020-12-22 02:08:11.344976 49310 2490 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.121.224 04023379-45c4-47b5-9ac4-4991e05f6018 2020-12-22 02:08:11.380931 49311 3824 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 189198e4-03d4-4acb-9a3a-eaa2688322e8 2020-12-22 02:09:04.074818 49312 5041 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1244\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3824\ncardnumber: 4952\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1829\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1829 187.149.121.224 189198e4-03d4-4acb-9a3a-eaa2688322e8 2020-12-22 02:09:04.097484 49313 3825 Sale \N \N 21 User \N create ---\ncustomer_id: 438\nuser_id: 21\nopen_cash_register_id: 1243\namount: !ruby/object:BigDecimal 18:0.1468E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1468E4\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-1076\nexpiration_date: 2021-01-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 17283e03-23de-4846-8a50-2c355ec45cd3 2020-12-22 02:10:25.18239 49314 2582 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 189.186.113.193 17283e03-23de-4846-8a50-2c355ec45cd3 2020-12-22 02:10:25.210124 49315 1129 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 189.186.113.193 17283e03-23de-4846-8a50-2c355ec45cd3 2020-12-22 02:10:25.235337 49316 5042 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1243\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 3825\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-1076\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1076 189.186.113.193 cbce929a-7544-4e2b-80ad-56a035811621 2020-12-22 02:10:49.69172 49317 3825 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.113.193 fd0a6521-264d-4fdc-9415-014b66ef2774 2020-12-22 02:10:53.116957 49318 3826 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1244\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1830\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 1d3c2ac8-4949-46a1-9384-023423b224c2 2020-12-22 02:11:24.160987 49319 1937 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 40 \N 187.149.121.224 1d3c2ac8-4949-46a1-9384-023423b224c2 2020-12-22 02:11:24.186806 49320 3826 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 f36a6998-817c-4ab3-a517-b424d166db79 2020-12-22 02:11:39.483307 49321 5043 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1244\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3826\ncardnumber: 6198\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1830\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1830 187.149.121.224 f36a6998-817c-4ab3-a517-b424d166db79 2020-12-22 02:11:39.504167 49325 3827 Sale \N \N 21 User \N create ---\ncustomer_id: 438\nuser_id: 21\nopen_cash_register_id: 1243\namount: !ruby/object:BigDecimal 18:0.1468E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1468E4\nstatus: 0\ndate_sale: 2020-12-21\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-1077\nexpiration_date: 2021-01-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 b446b599-37c7-4829-b012-5941460601c4 2020-12-22 02:16:46.999803 49326 1129 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 189.186.113.193 b446b599-37c7-4829-b012-5941460601c4 2020-12-22 02:16:47.026852 49327 2582 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 189.186.113.193 b446b599-37c7-4829-b012-5941460601c4 2020-12-22 02:16:47.049794 49328 3827 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-1077 cancelada. 189.186.113.193 9391a8a9-3a4b-443c-aaa9-565cf383202b 2020-12-22 02:22:04.761866 49329 2582 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 13 \N 189.186.113.193 9391a8a9-3a4b-443c-aaa9-565cf383202b 2020-12-22 02:22:04.788784 49330 1129 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 12 \N 189.186.113.193 9391a8a9-3a4b-443c-aaa9-565cf383202b 2020-12-22 02:22:04.82063 49331 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-18 23:31:02.708408000 Z\n- &1 2020-12-19 04:45:19.335938000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 02:32:50.053310635 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729171\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729171\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945679\n mask_addr: 4294967295\nsign_in_count:\n- 438\n- 439\n 878 \N 200.68.179.207 d870b6c0-b9f4-4c39-8b22-9fd2437bcd31 2020-12-22 02:32:50.066059 49332 1 User \N \N 1 User \N update ---\nunique_session_id:\n- HZVLUSqtHTJ7kHmdzNso\n- yybnPxzt8ezRUGyfpECJ\n 879 \N 200.68.179.207 d870b6c0-b9f4-4c39-8b22-9fd2437bcd31 2020-12-22 02:32:50.090326 49333 1269 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 1244\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.17362E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.33E4\ncash_fund: !ruby/object:BigDecimal 27:0.5819899999999998E3\nphysical_cash: !ruby/object:BigDecimal 18:0.388199E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 009bdc21-f254-43a4-882d-b02224ac1755 2020-12-22 02:46:31.63053 49334 1244 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 009bdc21-f254-43a4-882d-b02224ac1755 2020-12-22 02:46:31.646341 49335 1270 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1243\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.8414E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.28E4\ncash_fund: !ruby/object:BigDecimal 18:0.711E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3511E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.113.193 35878072-2b0c-484b-8816-616f01a50ab6 2020-12-22 03:07:13.349345 49336 1243 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.113.193 35878072-2b0c-484b-8816-616f01a50ab6 2020-12-22 03:07:13.369589 49337 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-21 22:13:55.365296000 Z\n- &1 2020-12-21 22:50:58.355591000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 17:16:54.199997378 Z\nsign_in_count:\n- 210\n- 211\n 422 \N 187.149.121.224 5a976be0-7ffa-4be3-a5d2-14b9f36e221d 2020-12-22 17:16:54.22821 49338 9 User \N \N 9 User \N update ---\nunique_session_id:\n- js68Up2P1_BDJmnFuefL\n- jggAizP1zxNU4zstKLhH\n 423 \N 187.149.121.224 5a976be0-7ffa-4be3-a5d2-14b9f36e221d 2020-12-22 17:16:54.249475 49339 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-20 06:07:43.568764000 Z\n- &1 2020-12-21 21:47:54.870115000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 17:55:14.623767401 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535624\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\nsign_in_count:\n- 415\n- 416\n 833 \N 189.186.113.193 aadeb5ab-2fa9-4f3c-98e5-74c34ed72e25 2020-12-22 17:55:14.634448 49340 18 User \N \N 18 User \N update ---\nunique_session_id:\n- K7WFD9Mkv2y9WwoViygD\n- 1Sfjs7UWx3m1JBt2RJxC\n 834 \N 189.186.113.193 aadeb5ab-2fa9-4f3c-98e5-74c34ed72e25 2020-12-22 17:55:14.655325 49341 1245 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.711E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 711.0 189.186.113.193 62fd9fb9-d5bd-4d9b-ae06-528732c6395e 2020-12-22 18:00:14.773297 49342 3828 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.2398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2398E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1078\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 a0d07e6d-086d-4b59-a8e6-af13db5b4622 2020-12-22 18:00:59.12278 49343 2642 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 189.186.113.193 a0d07e6d-086d-4b59-a8e6-af13db5b4622 2020-12-22 18:00:59.155637 49344 2353 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.113.193 a0d07e6d-086d-4b59-a8e6-af13db5b4622 2020-12-22 18:00:59.1958 49345 3828 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 13282ef7-23c2-415b-860d-d81a5fb33abd 2020-12-22 18:01:10.053282 49346 5044 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2398E4\nmove_type: '1'\nsale_id: 3828\ncardnumber: 2255\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1078\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1078 189.186.113.193 13282ef7-23c2-415b-860d-d81a5fb33abd 2020-12-22 18:01:10.089835 49347 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-20 01:46:04.658261000 Z\n- &1 2020-12-21 17:50:37.870720000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 18:07:02.229319597 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 371\n- 372\n 745 \N 187.149.121.224 1915ef6c-599d-4964-b4f5-a5ba2c7c1d23 2020-12-22 18:07:02.237314 49349 3829 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.1598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1598E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1079\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 b8f756e6-b466-4215-aa01-4ac07bcb2490 2020-12-22 18:16:42.261974 49350 2568 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 189.186.113.193 b8f756e6-b466-4215-aa01-4ac07bcb2490 2020-12-22 18:16:42.294018 49351 2558 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.113.193 b8f756e6-b466-4215-aa01-4ac07bcb2490 2020-12-22 18:16:42.318445 49352 3829 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 eed515ab-5bc0-40e1-a665-5dc1551c1cbd 2020-12-22 18:16:51.488739 49353 5045 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1598E4\nmove_type: '1'\nsale_id: 3829\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1079\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1598E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1079 189.186.113.193 eed515ab-5bc0-40e1-a665-5dc1551c1cbd 2020-12-22 18:16:51.511483 49354 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-21 22:44:05.247816000 Z\n- &1 2020-12-21 23:10:31.540931000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 18:31:44.364961704 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946211\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\nsign_in_count:\n- 2191\n- 2192\n 4384 \N 189.186.113.193 ef3b7c5f-7f2d-4f3a-9a73-9b528c2a7e74 2020-12-22 18:31:44.373285 49355 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3WPxQtBZBZm3GiHxwJxd\n- ALFqc1X5XZ6Fw7jQEy6r\n 4385 \N 189.186.113.193 ef3b7c5f-7f2d-4f3a-9a73-9b528c2a7e74 2020-12-22 18:31:44.394779 49356 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-21 21:47:54.870115000 Z\n- &1 2020-12-22 17:55:14.623767000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 19:09:50.949343681 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\nsign_in_count:\n- 416\n- 417\n 835 \N 189.186.113.193 98b925d2-45ba-466c-855f-525bb88afff2 2020-12-22 19:09:50.959021 49357 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 1Sfjs7UWx3m1JBt2RJxC\n- 8sW6JBC6yyCxEPeLRLgh\n 836 \N 189.186.113.193 98b925d2-45ba-466c-855f-525bb88afff2 2020-12-22 19:09:50.976772 49358 3830 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1080\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 75d7360d-1283-4f35-8ad9-810f99258281 2020-12-22 19:11:27.705116 49359 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 37 \N 189.186.113.193 75d7360d-1283-4f35-8ad9-810f99258281 2020-12-22 19:11:27.731936 49360 3830 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 f4340980-cd9b-423d-a329-ba574f5a7e22 2020-12-22 19:11:35.274204 49361 5046 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3830\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1080\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1399E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1080 189.186.113.193 f4340980-cd9b-423d-a329-ba574f5a7e22 2020-12-22 19:11:35.293582 49362 3831 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1081\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 9a59e25e-f441-4125-bcbf-932643070d76 2020-12-22 19:20:51.403011 49363 2341 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 20 \N 189.186.113.193 9a59e25e-f441-4125-bcbf-932643070d76 2020-12-22 19:20:51.429108 49364 3831 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 8e7082cb-4da1-4dc0-900b-5942f4b5f991 2020-12-22 19:21:01.975578 49365 5047 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3831\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1081\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '25552'\n 1 movimiento de efectivo por venta con folio PV3-V-1081 189.186.113.193 8e7082cb-4da1-4dc0-900b-5942f4b5f991 2020-12-22 19:21:02.002041 49366 3832 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1082\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 12e8967e-713d-480f-ad0a-fa6d0c9a36a4 2020-12-22 19:29:22.824955 49367 2379 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.113.193 12e8967e-713d-480f-ad0a-fa6d0c9a36a4 2020-12-22 19:29:22.8723 49368 3832 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 b8c95ae1-ebca-4ed0-b0d5-d79e47fe63c8 2020-12-22 19:29:27.697883 49369 5048 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1699E4\nmove_type: '1'\nsale_id: 3832\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1082\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1699E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1082 189.186.113.193 b8c95ae1-ebca-4ed0-b0d5-d79e47fe63c8 2020-12-22 19:29:27.718588 49464 1 User \N \N 1 User \N update ---\nunique_session_id:\n- yybnPxzt8ezRUGyfpECJ\n- p9jxd2yTnCuqERUN34FC\n 881 \N 201.175.159.196 0cafe45d-0309-436e-b937-d78ac42dc42e 2020-12-22 21:45:29.76562 49370 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-21 23:10:31.540931000 Z\n- &1 2020-12-22 18:31:44.364961000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 20:06:53.026962762 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946211\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\nsign_in_count:\n- 2192\n- 2193\n 4386 \N 189.186.113.193 4c089ec4-589c-47b2-9184-7493d4eae48c 2020-12-22 20:06:53.065458 49371 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ALFqc1X5XZ6Fw7jQEy6r\n- KhSQZRuXzGzU4eT1ouvp\n 4387 \N 189.186.113.193 4c089ec4-589c-47b2-9184-7493d4eae48c 2020-12-22 20:06:53.101743 49372 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-21 22:50:58.355591000 Z\n- &1 2020-12-22 17:16:54.199997000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 20:12:10.807366926 Z\nsign_in_count:\n- 211\n- 212\n 424 \N 187.149.121.224 330bbc93-6326-4026-922c-f5d758ff0b89 2020-12-22 20:12:10.814674 49373 9 User \N \N 9 User \N update ---\nunique_session_id:\n- jggAizP1zxNU4zstKLhH\n- gmAxDye5NUgtdpDzW-Hz\n 425 \N 187.149.121.224 330bbc93-6326-4026-922c-f5d758ff0b89 2020-12-22 20:12:10.832738 49374 1246 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.58199E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 581.99 187.149.121.224 49b35096-63e7-45a3-b420-fbb29829e1a3 2020-12-22 20:12:15.740151 49375 3833 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1246\namount: !ruby/object:BigDecimal 18:0.1666E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1666E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1831\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 23e6c61c-7ad5-4d59-bb73-c44f7cd73c92 2020-12-22 20:21:23.181819 49376 2130 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.121.224 23e6c61c-7ad5-4d59-bb73-c44f7cd73c92 2020-12-22 20:21:23.209719 49377 2071 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.121.224 23e6c61c-7ad5-4d59-bb73-c44f7cd73c92 2020-12-22 20:21:23.241202 49378 2066 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.121.224 23e6c61c-7ad5-4d59-bb73-c44f7cd73c92 2020-12-22 20:21:23.262192 49379 2131 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.121.224 23e6c61c-7ad5-4d59-bb73-c44f7cd73c92 2020-12-22 20:21:23.282164 49380 2535 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.121.224 23e6c61c-7ad5-4d59-bb73-c44f7cd73c92 2020-12-22 20:21:23.302788 49381 3833 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 58d376f2-98de-4a8b-b156-0cdbf84f3b91 2020-12-22 20:21:37.01409 49382 5049 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1246\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1666E4\nmove_type: '1'\nsale_id: 3833\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1831\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.17E4\nchange: !ruby/object:BigDecimal 18:0.34E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1831 187.149.121.224 58d376f2-98de-4a8b-b156-0cdbf84f3b91 2020-12-22 20:21:37.03714 49383 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 17:55:14.623767000 Z\n- &1 2020-12-22 19:09:50.949343000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 20:21:56.896767771 Z\nsign_in_count:\n- 417\n- 418\n 837 \N 189.186.113.193 9dcbd59b-5b8e-4904-8218-38a5a2caa16d 2020-12-22 20:21:56.908035 49384 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 8sW6JBC6yyCxEPeLRLgh\n- UDLR6tgbYYQXYJ1B6xQg\n 838 \N 189.186.113.193 9dcbd59b-5b8e-4904-8218-38a5a2caa16d 2020-12-22 20:21:56.937184 49385 3834 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1246\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1832\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 f637f24d-0f5e-40bc-89ad-552e043ea2d7 2020-12-22 20:22:49.80885 49386 2286 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.121.224 f637f24d-0f5e-40bc-89ad-552e043ea2d7 2020-12-22 20:22:49.840809 49387 3835 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.2398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2398E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1083\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 74c70121-6d30-4a04-adc5-663c70447a02 2020-12-22 20:22:52.929202 49388 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 63 \N 189.186.113.193 74c70121-6d30-4a04-adc5-663c70447a02 2020-12-22 20:22:52.95398 49389 2600 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.113.193 74c70121-6d30-4a04-adc5-663c70447a02 2020-12-22 20:22:52.981485 49390 3835 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 b41cb34a-bff4-4830-b2fc-fb00a87a7f8d 2020-12-22 20:22:58.673269 49391 5050 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 3835\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1083\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1083 189.186.113.193 b41cb34a-bff4-4830-b2fc-fb00a87a7f8d 2020-12-22 20:22:58.700417 49392 3834 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 7d97b712-747b-4915-8b20-047f3e12d681 2020-12-22 20:23:01.372582 49393 5051 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1246\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 3834\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1832\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1832 187.149.121.224 7d97b712-747b-4915-8b20-047f3e12d681 2020-12-22 20:23:01.392922 49489 256 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.121.224 7b0cd299-ea5a-4b15-8130-07c189e78a7d 2020-12-22 22:34:41.690816 49394 5052 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3835\ncardnumber: 2251\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1083\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1083 189.186.113.193 d014ad95-e866-4145-9ae3-1b9bb3d4eb94 2020-12-22 20:23:31.503379 49395 766 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-22\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.113.193 6830454c-d5a4-4c52-9c71-2005203db851 2020-12-22 20:26:10.007721 49396 2495 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.113.193 6830454c-d5a4-4c52-9c71-2005203db851 2020-12-22 20:26:10.046033 49397 2040 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.113.193 12f07a43-735f-46c3-b7e4-c1423996cd1e 2020-12-22 20:26:29.428887 49398 767 Transfer \N \N 18 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-12-22\nuser_id: 18\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.113.193 4470605a-d3c6-4e09-90a6-076c1a00391a 2020-12-22 20:26:32.589691 49399 767 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-22\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.121.224 42fde5b3-5b15-4869-b26b-942b250da4bb 2020-12-22 20:27:17.623394 49400 2652 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 1178\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.121.224 42fde5b3-5b15-4869-b26b-942b250da4bb 2020-12-22 20:27:17.650081 49401 3836 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1246\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1833\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 bc36c575-c5e5-4f39-a4e7-c9a8337eb7c7 2020-12-22 20:27:45.52461 49402 2652 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.121.224 bc36c575-c5e5-4f39-a4e7-c9a8337eb7c7 2020-12-22 20:27:45.549771 49403 3836 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 14696d42-7390-4401-a598-34f4c41fa6cb 2020-12-22 20:28:05.910336 49404 5053 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1246\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1899E4\nmove_type: '1'\nsale_id: 3836\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1833\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.19E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1833 187.149.121.224 14696d42-7390-4401-a598-34f4c41fa6cb 2020-12-22 20:28:05.931634 49405 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 18:31:44.364961000 Z\n- &1 2020-12-22 20:06:53.026962000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 20:28:49.412111784 Z\nsign_in_count:\n- 2193\n- 2194\n 4388 \N 189.186.113.193 0b04ba37-2535-4fd4-8d95-e0f84f5c164f 2020-12-22 20:28:49.419016 49406 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KhSQZRuXzGzU4eT1ouvp\n- bev79JQYs1AFzBxLFgTC\n 4389 \N 189.186.113.193 0b04ba37-2535-4fd4-8d95-e0f84f5c164f 2020-12-22 20:28:49.443539 49407 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 19:09:50.949343000 Z\n- &1 2020-12-22 20:21:56.896767000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 20:36:18.255640467 Z\nsign_in_count:\n- 418\n- 419\n 839 \N 189.186.113.193 c6a3ca81-2d18-4852-b62d-571001b77840 2020-12-22 20:36:18.261449 49408 18 User \N \N 18 User \N update ---\nunique_session_id:\n- UDLR6tgbYYQXYJ1B6xQg\n- 4WW3TWFEqSpuEpppJwUM\n 840 \N 189.186.113.193 c6a3ca81-2d18-4852-b62d-571001b77840 2020-12-22 20:36:18.278313 49409 3837 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.163707E4\ntax: !ruby/object:BigDecimal 18:0.26193E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1084\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 31ac3c9c-bb0f-4fb7-b4c5-186c319804b7 2020-12-22 20:36:37.165363 49410 937 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 189.186.113.193 31ac3c9c-bb0f-4fb7-b4c5-186c319804b7 2020-12-22 20:36:37.193465 49411 3837 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 b9800cd5-628e-4784-84eb-38218e6b42bd 2020-12-22 20:37:35.683731 49412 5054 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1899E4\nmove_type: '1'\nsale_id: 3837\ncardnumber: 5555\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1084\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1084 189.186.113.193 b9800cd5-628e-4784-84eb-38218e6b42bd 2020-12-22 20:37:35.704846 49413 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 20:06:53.026962000 Z\n- &1 2020-12-22 20:28:49.412111000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 20:49:14.619022874 Z\nsign_in_count:\n- 2194\n- 2195\n 4390 \N 189.186.113.193 5d864042-decd-4416-8999-678359885984 2020-12-22 20:49:14.627105 49414 4 User \N \N 4 User \N update ---\nunique_session_id:\n- bev79JQYs1AFzBxLFgTC\n- eEKSBby6nk_HzJQWtsB5\n 4391 \N 189.186.113.193 5d864042-decd-4416-8999-678359885984 2020-12-22 20:49:14.664766 49415 1552 Product \N \N 4 User \N create ---\nsku: COS-1552\nname: 4CSAP20814\ndescription: COSMETIQUERA CORAZONES\nprice_base: !ruby/object:BigDecimal 18:0.2995E3\nprice_sale: !ruby/object:BigDecimal 18:0.599E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 14\nproduct_service_key: '01010101'\n 1 El producto COS-1552 fue creado. 189.186.113.193 038c8f4d-98c0-4db4-936b-8cc597b039a2 2020-12-22 20:51:37.031089 49416 1552 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001552'\n 2 \N 189.186.113.193 038c8f4d-98c0-4db4-936b-8cc597b039a2 2020-12-22 20:51:37.065817 49490 3845 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 635c1c4d-d324-4c6e-abb4-a1395151f3ec 2020-12-22 22:36:50.731507 49417 2653 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1552\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.113.193 038c8f4d-98c0-4db4-936b-8cc597b039a2 2020-12-22 20:51:37.095238 49418 507 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-149\namount: !ruby/object:BigDecimal 18:0.2995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2995E3\nobservations: ''\npurchase_date: 2020-12-22\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-149 por $ 299.5 MXN creada. 189.186.113.193 bbfb714e-9cc2-4e31-a559-909378dc8446 2020-12-22 20:51:48.36762 49419 2653 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.113.193 bbfb714e-9cc2-4e31-a559-909378dc8446 2020-12-22 20:51:48.390979 49420 1553 Product \N \N 4 User \N create ---\nsku: COS-1553\nname: 4CSAP20815\ndescription: COSMETIQUERA 3\nprice_base: !ruby/object:BigDecimal 18:0.3995E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 14\nproduct_service_key: '01010101'\n 1 El producto COS-1553 fue creado. 189.186.113.193 8a89b856-e6ab-498f-941b-8dfd5743e405 2020-12-22 20:52:39.258592 49421 1553 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001553'\n 2 \N 189.186.113.193 8a89b856-e6ab-498f-941b-8dfd5743e405 2020-12-22 20:52:39.305664 49422 2654 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1553\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.113.193 8a89b856-e6ab-498f-941b-8dfd5743e405 2020-12-22 20:52:39.335492 49423 508 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-150\namount: !ruby/object:BigDecimal 18:0.3995E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3995E3\nobservations: ''\npurchase_date: 2020-12-22\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-150 por $ 399.5 MXN creada. 189.186.113.193 87aaa300-4427-45de-b0ec-79824bfa1c9c 2020-12-22 20:52:43.471636 49424 2654 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.113.193 87aaa300-4427-45de-b0ec-79824bfa1c9c 2020-12-22 20:52:43.493973 49425 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 20:21:56.896767000 Z\n- &1 2020-12-22 20:36:18.255640000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 20:53:03.757264733 Z\nsign_in_count:\n- 419\n- 420\n 841 \N 189.186.113.193 ec50060c-6fdf-4e57-9196-3d57ce3ae0ea 2020-12-22 20:53:03.763697 49426 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 4WW3TWFEqSpuEpppJwUM\n- ZyGiiGByV31Y5BzEdQ_v\n 842 \N 189.186.113.193 ec50060c-6fdf-4e57-9196-3d57ce3ae0ea 2020-12-22 20:53:03.779203 49427 3838 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.318579E4\ntax: !ruby/object:BigDecimal 18:0.11021E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3296E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1085\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 2d14df52-3a42-43cd-bf88-b230d690efd0 2020-12-22 20:54:11.758837 49428 2654 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.113.193 2d14df52-3a42-43cd-bf88-b230d690efd0 2020-12-22 20:54:11.789068 49429 2019 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.113.193 2d14df52-3a42-43cd-bf88-b230d690efd0 2020-12-22 20:54:11.816539 49430 929 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.113.193 2d14df52-3a42-43cd-bf88-b230d690efd0 2020-12-22 20:54:11.850014 49431 2051 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.113.193 2d14df52-3a42-43cd-bf88-b230d690efd0 2020-12-22 20:54:11.882767 49432 3838 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 049b07da-f8dc-47f1-8cdc-fc953fc03c9b 2020-12-22 20:55:03.498903 49433 5055 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3296E4\nmove_type: '1'\nsale_id: 3838\ncardnumber: 1125\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1085\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1085 189.186.113.193 049b07da-f8dc-47f1-8cdc-fc953fc03c9b 2020-12-22 20:55:03.519849 49434 3839 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1246\namount: !ruby/object:BigDecimal 18:0.1907E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1907E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1834\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 c7d4fa0d-30e3-4393-bcba-b2b5e7a0dc1c 2020-12-22 21:00:28.508089 49435 2077 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 187.149.121.224 c7d4fa0d-30e3-4393-bcba-b2b5e7a0dc1c 2020-12-22 21:00:28.536547 49436 2448 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 7 \N 187.149.121.224 c7d4fa0d-30e3-4393-bcba-b2b5e7a0dc1c 2020-12-22 21:00:28.559971 49437 1887 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.121.224 c7d4fa0d-30e3-4393-bcba-b2b5e7a0dc1c 2020-12-22 21:00:28.583048 49438 3839 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 f3767fdd-785c-4184-9416-679f18dd89e8 2020-12-22 21:00:48.738846 49439 5056 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1246\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1907E4\nmove_type: '1'\nsale_id: 3839\ncardnumber: 9893\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1834\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1834 187.149.121.224 f3767fdd-785c-4184-9416-679f18dd89e8 2020-12-22 21:00:48.76799 49537 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 23:05:33.077161000 Z\n- &1 2020-12-22 23:24:50.991442000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 00:15:48.537968221 Z\nsign_in_count:\n- 426\n- 427\n 855 \N 189.186.113.193 edfac9ff-0339-437b-ad3b-eb9bc4fae100 2020-12-23 00:15:48.543253 49440 3840 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1246\namount: !ruby/object:BigDecimal 18:0.647E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.647E3\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1835\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 f32e4d97-abee-4100-84f4-351fe500d9d7 2020-12-22 21:05:21.786055 49441 2433 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.121.224 f32e4d97-abee-4100-84f4-351fe500d9d7 2020-12-22 21:05:21.812247 49442 1760 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.121.224 f32e4d97-abee-4100-84f4-351fe500d9d7 2020-12-22 21:05:21.836022 49443 2389 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.121.224 f32e4d97-abee-4100-84f4-351fe500d9d7 2020-12-22 21:05:21.85838 49444 3840 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 b646bfa8-58e5-416d-b200-a0da5be8fc34 2020-12-22 21:05:56.610392 49445 5057 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1246\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.647E3\nmove_type: '1'\nsale_id: 3840\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1835\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.53E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1835 187.149.121.224 b646bfa8-58e5-416d-b200-a0da5be8fc34 2020-12-22 21:05:56.632498 49446 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 20:36:18.255640000 Z\n- &1 2020-12-22 20:53:03.757264000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 21:09:20.817995188 Z\nsign_in_count:\n- 420\n- 421\n 843 \N 189.186.113.193 e6db72c3-f1a3-45b0-9067-fc1f91bce2ee 2020-12-22 21:09:20.825426 49447 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ZyGiiGByV31Y5BzEdQ_v\n- 2aLNwkb-3CTn9K9MdA4v\n 844 \N 189.186.113.193 e6db72c3-f1a3-45b0-9067-fc1f91bce2ee 2020-12-22 21:09:20.841462 49448 3841 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1246\namount: !ruby/object:BigDecimal 18:0.1196E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1196E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1836\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 2f21939d-378e-411e-b703-f2d070e03bc5 2020-12-22 21:19:40.430335 49449 2610 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.121.224 2f21939d-378e-411e-b703-f2d070e03bc5 2020-12-22 21:19:40.459156 49450 3841 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 4251b9c7-2926-4a27-9e3b-60a0c5e6574e 2020-12-22 21:19:51.518858 49451 5058 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1246\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1196E4\nmove_type: '1'\nsale_id: 3841\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1836\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.4E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1836 187.149.121.224 4251b9c7-2926-4a27-9e3b-60a0c5e6574e 2020-12-22 21:19:51.550873 49452 3842 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.2746E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2746E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1086\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 94ccb171-a7aa-47d5-8073-0f87ceb4590d 2020-12-22 21:23:28.939182 49453 2653 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.113.193 94ccb171-a7aa-47d5-8073-0f87ceb4590d 2020-12-22 21:23:28.966729 49454 2596 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.113.193 94ccb171-a7aa-47d5-8073-0f87ceb4590d 2020-12-22 21:23:28.989812 49455 2353 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.113.193 94ccb171-a7aa-47d5-8073-0f87ceb4590d 2020-12-22 21:23:29.012391 49456 2346 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.113.193 94ccb171-a7aa-47d5-8073-0f87ceb4590d 2020-12-22 21:23:29.034538 49457 3842 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 b4e6a2b9-2c21-45d8-b5bc-1d79699d30bb 2020-12-22 21:23:34.699998 49458 5059 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2746E4\nmove_type: '1'\nsale_id: 3842\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1086\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2746E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1086 189.186.113.193 b4e6a2b9-2c21-45d8-b5bc-1d79699d30bb 2020-12-22 21:23:34.722653 49459 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 20:28:49.412111000 Z\n- &1 2020-12-22 20:49:14.619022000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 21:26:01.706404598 Z\nsign_in_count:\n- 2195\n- 2196\n 4392 \N 189.186.113.193 f2bcc685-bcb9-4463-b9c1-463a7decb98d 2020-12-22 21:26:01.712466 49460 4 User \N \N 4 User \N update ---\nunique_session_id:\n- eEKSBby6nk_HzJQWtsB5\n- 2G1pd5HmQ3zXrLzTLiJ4\n 4393 \N 189.186.113.193 f2bcc685-bcb9-4463-b9c1-463a7decb98d 2020-12-22 21:26:01.728891 49461 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 20:53:03.757264000 Z\n- &1 2020-12-22 21:09:20.817995000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 21:27:02.675114042 Z\nsign_in_count:\n- 421\n- 422\n 845 \N 189.186.113.193 71d07acc-2ff9-4faa-8426-0b3700dd6fa6 2020-12-22 21:27:02.681442 49462 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 2aLNwkb-3CTn9K9MdA4v\n- cgaz6eN8KJpS5ku2sZnH\n 846 \N 189.186.113.193 71d07acc-2ff9-4faa-8426-0b3700dd6fa6 2020-12-22 21:27:02.695022 49463 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-19 04:45:19.335938000 Z\n- &1 2020-12-22 02:32:50.053310000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 21:45:29.739084672 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383729171\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945679\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945679\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730116\n mask_addr: 4294967295\nsign_in_count:\n- 439\n- 440\n 880 \N 201.175.159.196 0cafe45d-0309-436e-b937-d78ac42dc42e 2020-12-22 21:45:29.74712 49465 5060 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1246\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 3771\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.15E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1802 187.149.121.224 4bd9c0a1-553c-42f0-a929-e76409be55e4 2020-12-22 21:51:12.573798 49466 5060 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 1246\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 3771\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.15E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.121.224 59553ca1-a1d5-440b-895b-cb93a59a510d 2020-12-22 21:51:15.042288 49467 5061 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1246\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1129E4\nmove_type: '1'\nsale_id: 3771\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.371E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1802 187.149.121.224 7ef30b4e-eff3-496c-af90-e45c6b2352e4 2020-12-22 21:51:26.60899 49468 3771 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.121.224 d6c57deb-2e53-4a61-ba7a-eaa311910c54 2020-12-22 21:54:28.013207 49469 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 20:49:14.619022000 Z\n- &1 2020-12-22 21:26:01.706404000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 21:56:54.657774015 Z\nsign_in_count:\n- 2196\n- 2197\n 4394 \N 189.186.113.193 665a4c58-6a29-4b86-8c26-d5d8827f32b4 2020-12-22 21:56:54.663655 49470 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2G1pd5HmQ3zXrLzTLiJ4\n- DuY9c4XKurb-hAxjbHTW\n 4395 \N 189.186.113.193 665a4c58-6a29-4b86-8c26-d5d8827f32b4 2020-12-22 21:56:54.680103 49471 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 21:09:20.817995000 Z\n- &1 2020-12-22 21:27:02.675114000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 21:57:26.901537293 Z\nsign_in_count:\n- 422\n- 423\n 847 \N 189.186.113.193 02ef5c7a-cf2c-4892-b3c6-97055e70bd02 2020-12-22 21:57:26.907833 49472 18 User \N \N 18 User \N update ---\nunique_session_id:\n- cgaz6eN8KJpS5ku2sZnH\n- sbGUfhae_z8xNu2UtzrG\n 848 \N 189.186.113.193 02ef5c7a-cf2c-4892-b3c6-97055e70bd02 2020-12-22 21:57:26.921613 49473 3843 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.3338E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3338E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1087\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 c165c342-8530-4305-9c88-2e9ea46aca7f 2020-12-22 22:08:07.813227 49474 1268 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.113.193 c165c342-8530-4305-9c88-2e9ea46aca7f 2020-12-22 22:08:07.845512 49475 1267 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.113.193 c165c342-8530-4305-9c88-2e9ea46aca7f 2020-12-22 22:08:07.874323 49476 3843 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-1087 cancelada. 189.186.113.193 e3523ab6-7a03-49b4-89e5-eb827832a37f 2020-12-22 22:08:11.784904 49477 1267 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.113.193 e3523ab6-7a03-49b4-89e5-eb827832a37f 2020-12-22 22:08:11.811596 49478 1268 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.113.193 e3523ab6-7a03-49b4-89e5-eb827832a37f 2020-12-22 22:08:11.834975 49479 3844 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.3338E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.333E3\ntotal: !ruby/object:BigDecimal 18:0.3005E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1088\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 24447250-e01f-4dc3-9a96-e09cbbffd50d 2020-12-22 22:09:12.509148 49480 1267 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.113.193 24447250-e01f-4dc3-9a96-e09cbbffd50d 2020-12-22 22:09:12.538669 49481 1268 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.113.193 24447250-e01f-4dc3-9a96-e09cbbffd50d 2020-12-22 22:09:12.568391 49482 3844 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 474282eb-947b-4334-89a5-367873b5fbd1 2020-12-22 22:09:43.668147 49483 5062 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3005E4\nmove_type: '1'\nsale_id: 3844\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1088\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3005E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1088 189.186.113.193 474282eb-947b-4334-89a5-367873b5fbd1 2020-12-22 22:09:43.690723 49484 5063 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 3443\ncardnumber: 1255\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-882 189.186.113.193 161569b8-2acd-4623-8c4b-8aac2f362e82 2020-12-22 22:25:39.181019 49485 3443 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.113.193 822cc113-986f-4384-9ad0-f768ca158e2e 2020-12-22 22:25:42.746392 49486 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 21:26:01.706404000 Z\n- &1 2020-12-22 21:56:54.657774000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 22:30:59.278463830 Z\nsign_in_count:\n- 2197\n- 2198\n 4396 \N 189.186.113.193 8392884a-0e81-45c0-80a4-653b6e5609a3 2020-12-22 22:30:59.284874 49487 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DuY9c4XKurb-hAxjbHTW\n- dNaJ83DzjD6jSxabiXKQ\n 4397 \N 189.186.113.193 8392884a-0e81-45c0-80a4-653b6e5609a3 2020-12-22 22:30:59.302036 49488 3845 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1246\namount: !ruby/object:BigDecimal 18:0.103362E4\ntax: !ruby/object:BigDecimal 18:0.16538E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1837\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 7b0cd299-ea5a-4b15-8130-07c189e78a7d 2020-12-22 22:34:41.289838 49491 5064 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1246\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 3845\ncardnumber: 5214\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1837\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1837 187.149.121.224 635c1c4d-d324-4c6e-abb4-a1395151f3ec 2020-12-22 22:36:51.591818 49492 768 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.113.193 f5a41db4-a2c4-463f-90f1-beccccc0bbca 2020-12-22 22:39:07.882731 49493 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 21:27:02.675114000 Z\n- &1 2020-12-22 21:57:26.901537000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 22:41:06.760509730 Z\nsign_in_count:\n- 423\n- 424\n 849 \N 189.186.113.193 92f9fb1e-b11a-42cb-9b72-ad3b21a52cb3 2020-12-22 22:41:06.767333 49494 18 User \N \N 18 User \N update ---\nunique_session_id:\n- sbGUfhae_z8xNu2UtzrG\n- ikQ7P3UVoyMFLepo_srb\n 850 \N 189.186.113.193 92f9fb1e-b11a-42cb-9b72-ad3b21a52cb3 2020-12-22 22:41:07.470603 49495 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 02:32:50.053310000 Z\n- &1 2020-12-22 21:45:29.739084000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 22:52:42.381938608 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945679\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730116\n mask_addr: 4294967295\nsign_in_count:\n- 440\n- 441\n 882 \N 201.175.159.196 96797b41-248b-4d5a-a837-e61fb3a375a9 2020-12-22 22:52:42.389502 49496 1 User \N \N 1 User \N update ---\nunique_session_id:\n- p9jxd2yTnCuqERUN34FC\n- 9DbPEkJzyosGqFZ1hRUc\n 883 \N 201.175.159.196 96797b41-248b-4d5a-a837-e61fb3a375a9 2020-12-22 22:52:42.407729 49497 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 21:56:54.657774000 Z\n- &1 2020-12-22 22:30:59.278463000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 22:56:25.035521423 Z\nsign_in_count:\n- 2198\n- 2199\n 4398 \N 189.186.113.193 3e42aba3-87c4-4d63-8fb5-fac9634575c7 2020-12-22 22:56:25.042217 49498 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dNaJ83DzjD6jSxabiXKQ\n- A5BrBnqce-xFhZ1CbW2J\n 4399 \N 189.186.113.193 3e42aba3-87c4-4d63-8fb5-fac9634575c7 2020-12-22 22:56:25.060329 49499 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 21:57:26.901537000 Z\n- &1 2020-12-22 22:41:06.760509000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 23:05:33.077161418 Z\nsign_in_count:\n- 424\n- 425\n 851 \N 189.186.113.193 be7a8f5f-2810-4fa2-bf99-dc0472f13079 2020-12-22 23:05:33.08309 49500 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ikQ7P3UVoyMFLepo_srb\n- fKKL3eM_Bn6_zgs-9ijC\n 852 \N 189.186.113.193 be7a8f5f-2810-4fa2-bf99-dc0472f13079 2020-12-22 23:05:33.096952 49501 3846 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.38379E3\ntax: !ruby/object:BigDecimal 18:0.2621E2\ndiscount: !ruby/object:BigDecimal 18:0.16E3\ntotal: !ruby/object:BigDecimal 18:0.25E3\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1089\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 f4c01ba1-3efb-4c16-bf61-a621d6693949 2020-12-22 23:07:09.600674 49502 1481 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 13 \N 189.186.113.193 f4c01ba1-3efb-4c16-bf61-a621d6693949 2020-12-22 23:07:09.627092 49503 939 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.25E2\n- !ruby/object:BigDecimal 18:0.24E2\n 15 \N 189.186.113.193 f4c01ba1-3efb-4c16-bf61-a621d6693949 2020-12-22 23:07:09.651826 49504 3846 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 376c1c9c-16e4-438f-ac21-bffd9547e52a 2020-12-22 23:07:14.325483 49505 5065 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.25E3\nmove_type: '1'\nsale_id: 3846\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1089\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1089 189.186.113.193 376c1c9c-16e4-438f-ac21-bffd9547e52a 2020-12-22 23:07:14.351467 49506 482 Customer \N \N 18 User \N create ---\nnick_name: CINDY ORONA\nphone: "(667) 107-7348"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CINDY ORONA fue registrado. 189.186.113.193 cd76b193-44e9-4956-9efa-71ba0a5744c0 2020-12-22 23:08:26.006225 49507 3847 Sale \N \N 18 User \N create ---\ncustomer_id: 482\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-1090\nexpiration_date: 2021-01-26\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 6d35ffcd-f86e-48c3-aaff-debbcfbcab23 2020-12-22 23:08:47.414659 49508 2578 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.113.193 6d35ffcd-f86e-48c3-aaff-debbcfbcab23 2020-12-22 23:08:47.443413 49509 5066 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3847\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-1090\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1090 189.186.113.193 a657ef39-4a82-4d3f-9b1d-816f9515b21f 2020-12-22 23:08:55.456511 49510 3847 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.113.193 f7e5222f-17c9-4340-a9f1-91305fb4a7d5 2020-12-22 23:08:56.638814 49511 3848 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1091\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 313d51d8-8a7f-46b5-990f-a70d060a6123 2020-12-22 23:12:23.096951 49512 2568 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 189.186.113.193 313d51d8-8a7f-46b5-990f-a70d060a6123 2020-12-22 23:12:23.124605 49513 3848 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 9f35203f-d5f0-48a4-9bc2-54e8e5fd1909 2020-12-22 23:12:39.935447 49538 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 4FeQmpRaZqncXJsvh6gx\n- ot75akR2XKVePK4io1ye\n 856 \N 189.186.113.193 edfac9ff-0339-437b-ad3b-eb9bc4fae100 2020-12-23 00:15:48.556613 49514 5067 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 3848\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1091\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1091 189.186.113.193 9f35203f-d5f0-48a4-9bc2-54e8e5fd1909 2020-12-22 23:12:39.959171 49515 5068 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 3847\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.799E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1090 189.186.113.193 9d2bea2c-91eb-489a-a426-bf436b52d9db 2020-12-22 23:13:44.579123 49516 3847 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.113.193 2865d8fd-1b4b-4f65-bbac-f2970d598f76 2020-12-22 23:13:46.008136 49517 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 22:30:59.278463000 Z\n- &1 2020-12-22 22:56:25.035521000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 23:23:33.125331690 Z\nsign_in_count:\n- 2199\n- 2200\n 4400 \N 189.186.113.193 abcf7979-9abf-484a-97ac-c14a55a82746 2020-12-22 23:23:33.131811 49518 4 User \N \N 4 User \N update ---\nunique_session_id:\n- A5BrBnqce-xFhZ1CbW2J\n- Ze2-cnjexsswZFxt2GQf\n 4401 \N 189.186.113.193 abcf7979-9abf-484a-97ac-c14a55a82746 2020-12-22 23:23:33.162828 49519 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 22:41:06.760509000 Z\n- &1 2020-12-22 23:05:33.077161000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 23:24:50.991442620 Z\nsign_in_count:\n- 425\n- 426\n 853 \N 189.186.113.193 0aa60898-9f9c-4670-afcf-7c02a24aaa25 2020-12-22 23:24:50.997508 49520 18 User \N \N 18 User \N update ---\nunique_session_id:\n- fKKL3eM_Bn6_zgs-9ijC\n- 4FeQmpRaZqncXJsvh6gx\n 854 \N 189.186.113.193 0aa60898-9f9c-4670-afcf-7c02a24aaa25 2020-12-22 23:24:51.013248 49521 768 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-22\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.113.193 46a8f127-2c0c-43d0-8a54-32e33424e999 2020-12-22 23:38:00.08772 49522 1268 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 189.186.113.193 46a8f127-2c0c-43d0-8a54-32e33424e999 2020-12-22 23:38:00.113273 49523 1388 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.113.193 46a8f127-2c0c-43d0-8a54-32e33424e999 2020-12-22 23:38:00.137488 49524 3849 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.1469E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.469E3\ntotal: !ruby/object:BigDecimal 18:0.1E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1092\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 a7b66ac9-2d4f-4264-aaba-264efbb629ff 2020-12-22 23:38:35.001595 49525 1388 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.113.193 a7b66ac9-2d4f-4264-aaba-264efbb629ff 2020-12-22 23:38:35.042601 49526 3849 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 94ca3d6a-f702-434c-9c19-ce89e2876d95 2020-12-22 23:38:42.192939 49527 5069 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 3849\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1092\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1092 189.186.113.193 94ca3d6a-f702-434c-9c19-ce89e2876d95 2020-12-22 23:38:42.214517 49528 5069 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 3849\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1092\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.113.193 3455b617-75ba-41ba-a01e-5299fbf75b1a 2020-12-22 23:38:45.309298 49529 5070 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 3849\ncardnumber: 5525\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1092\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1092 189.186.113.193 2b19f3ad-f7be-44a0-9de6-6e7b56ebdee9 2020-12-22 23:38:54.419788 49530 3850 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.988E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.39E2\ntotal: !ruby/object:BigDecimal 18:0.949E3\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1093\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 da82e989-3a76-4ab5-a657-fdda5ee20d0f 2020-12-22 23:52:29.701686 49531 2568 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 189.186.113.193 da82e989-3a76-4ab5-a657-fdda5ee20d0f 2020-12-22 23:52:29.761374 49532 2400 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.113.193 da82e989-3a76-4ab5-a657-fdda5ee20d0f 2020-12-22 23:52:29.808144 49533 3850 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 6b75a6b1-ba74-4310-bfb0-7511a1ccc87c 2020-12-22 23:52:42.6136 49534 5071 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.949E3\nmove_type: '1'\nsale_id: 3850\ncardnumber: 4112\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1093\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1093 189.186.113.193 6b75a6b1-ba74-4310-bfb0-7511a1ccc87c 2020-12-22 23:52:42.63829 49535 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 22:56:25.035521000 Z\n- &1 2020-12-22 23:23:33.125331000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-22 23:59:18.089263202 Z\nsign_in_count:\n- 2200\n- 2201\n 4402 \N 189.186.113.193 f467a720-2ba2-4738-91e9-c497c503224d 2020-12-22 23:59:18.096555 49536 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Ze2-cnjexsswZFxt2GQf\n- rC5urw7s_QduH_CVzkVA\n 4403 \N 189.186.113.193 f467a720-2ba2-4738-91e9-c497c503224d 2020-12-22 23:59:18.11562 49539 3851 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.99E2\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.99E2\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1094\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 e57f98ef-08ac-4944-bb5a-65267ec2b28a 2020-12-23 00:16:03.827766 49540 1768 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.113.193 e57f98ef-08ac-4944-bb5a-65267ec2b28a 2020-12-23 00:16:03.8534 49541 3851 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 c1a1932a-90e7-4114-9f77-6bcfb7972546 2020-12-23 00:16:07.993234 49542 5072 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.99E2\nmove_type: '1'\nsale_id: 3851\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1094\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.99E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1094 189.186.113.193 c1a1932a-90e7-4114-9f77-6bcfb7972546 2020-12-23 00:16:08.015271 49543 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 23:23:33.125331000 Z\n- &1 2020-12-22 23:59:18.089263000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 00:20:16.323794248 Z\nsign_in_count:\n- 2201\n- 2202\n 4404 \N 189.186.113.193 28bdf466-dafc-4e23-900d-3e06185f6765 2020-12-23 00:20:16.333375 49544 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rC5urw7s_QduH_CVzkVA\n- XXiy41h_ydZfpFjpk6WT\n 4405 \N 189.186.113.193 28bdf466-dafc-4e23-900d-3e06185f6765 2020-12-23 00:20:16.359721 49545 2538 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.113.193 a7dccc4a-f4d9-48ea-97fa-934f81b53dd5 2020-12-23 00:21:09.515847 49546 2538 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.113.193 b4f168f9-e9bc-4deb-aac7-b1e4cf3ce048 2020-12-23 00:21:13.152773 49547 769 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.113.193 6964b175-dcd7-4fc8-89ef-158203358777 2020-12-23 00:21:13.647547 49548 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 23:24:50.991442000 Z\n- &1 2020-12-23 00:15:48.537968000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 00:21:52.569008990 Z\nsign_in_count:\n- 427\n- 428\n 857 \N 189.186.113.193 b0e0d54d-3e41-4086-a045-cf0929c7793c 2020-12-23 00:21:52.574603 49549 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ot75akR2XKVePK4io1ye\n- RXa2-gmvSK66cxRo4f-9\n 858 \N 189.186.113.193 b0e0d54d-3e41-4086-a045-cf0929c7793c 2020-12-23 00:21:52.588127 49550 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 23:59:18.089263000 Z\n- &1 2020-12-23 00:20:16.323794000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 00:22:27.498397739 Z\nsign_in_count:\n- 2202\n- 2203\n 4406 \N 189.186.113.193 7c52b717-f19a-4caf-8951-678f50cdf546 2020-12-23 00:22:27.503922 49551 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XXiy41h_ydZfpFjpk6WT\n- ngMz9rETrfEYa_mhKWkD\n 4407 \N 189.186.113.193 7c52b717-f19a-4caf-8951-678f50cdf546 2020-12-23 00:22:27.519042 49552 1380 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.113.193 3d235476-d31a-4e82-81b6-e8ebebe51f27 2020-12-23 00:22:48.98119 49553 770 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.113.193 a736f9e3-24d4-46d6-858f-22db83a9f3da 2020-12-23 00:22:56.463709 49554 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 00:15:48.537968000 Z\n- &1 2020-12-23 00:21:52.569008000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 00:23:23.857758085 Z\nsign_in_count:\n- 428\n- 429\n 859 \N 189.186.113.193 b7bea98c-02da-45e4-9338-713307cd5322 2020-12-23 00:23:23.865251 49555 18 User \N \N 18 User \N update ---\nunique_session_id:\n- RXa2-gmvSK66cxRo4f-9\n- HyfhLH5H-ymYkeh8j3gh\n 860 \N 189.186.113.193 b7bea98c-02da-45e4-9338-713307cd5322 2020-12-23 00:23:23.881117 49556 770 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-22\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.113.193 421122a2-8922-46e9-bf7a-8b13cf9dde9b 2020-12-23 00:23:33.595922 49557 859 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 189.186.113.193 421122a2-8922-46e9-bf7a-8b13cf9dde9b 2020-12-23 00:23:33.613768 49558 769 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-22\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.113.193 8315102c-9900-4751-b17a-49066865b8fc 2020-12-23 00:23:40.726152 49559 2569 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.113.193 8315102c-9900-4751-b17a-49066865b8fc 2020-12-23 00:23:40.751732 49560 3852 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.1388E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1388E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1095\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 3575422e-9e8a-401d-8590-4a476fe6ef91 2020-12-23 00:25:21.47424 49561 859 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 189.186.113.193 3575422e-9e8a-401d-8590-4a476fe6ef91 2020-12-23 00:25:21.509758 49562 2569 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.113.193 3575422e-9e8a-401d-8590-4a476fe6ef91 2020-12-23 00:25:21.536121 49563 3852 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 6dc9f0ff-e0b1-4d20-855f-efe551a880e4 2020-12-23 00:25:31.620824 49564 5073 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1388E4\nmove_type: '1'\nsale_id: 3852\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1095\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.112E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1095 189.186.113.193 6dc9f0ff-e0b1-4d20-855f-efe551a880e4 2020-12-23 00:25:31.643315 49661 1393 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.113.193 5a7128da-71d5-4cab-aece-4db847613f9a 2020-12-23 02:52:15.34751 49565 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 00:20:16.323794000 Z\n- &1 2020-12-23 00:22:27.498397000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 00:36:25.691228697 Z\nsign_in_count:\n- 2203\n- 2204\n 4408 \N 189.186.113.193 e4a0af04-124e-446c-ac37-019c99d73e15 2020-12-23 00:36:25.697273 49566 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ngMz9rETrfEYa_mhKWkD\n- xR2DsZgafhdyZJszcxjf\n 4409 \N 189.186.113.193 e4a0af04-124e-446c-ac37-019c99d73e15 2020-12-23 00:36:25.843607 49567 771 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-12-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.113.193 46c7e4c8-2083-4dda-8766-1abe01c25b17 2020-12-23 00:38:56.27988 49568 771 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-22\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.121.224 c03ff3fc-81b5-4ea7-9275-f48dabe88c8d 2020-12-23 00:41:17.368161 49569 1241 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 16 \N 187.149.121.224 c03ff3fc-81b5-4ea7-9275-f48dabe88c8d 2020-12-23 00:41:17.386534 49570 3853 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1246\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1838\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 d6700e0d-6e24-4d5c-8dd5-dc4d1cdb361d 2020-12-23 00:41:44.402976 49571 1241 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 17 \N 187.149.121.224 d6700e0d-6e24-4d5c-8dd5-dc4d1cdb361d 2020-12-23 00:41:44.443122 49572 3853 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 e634393d-b957-4cd8-aa5a-3e0a5273d2bc 2020-12-23 00:42:03.749484 49573 5074 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1246\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 3853\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1838\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1838 187.149.121.224 e634393d-b957-4cd8-aa5a-3e0a5273d2bc 2020-12-23 00:42:03.781116 49574 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 00:21:52.569008000 Z\n- &1 2020-12-23 00:23:23.857758000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 00:54:14.512884337 Z\nsign_in_count:\n- 429\n- 430\n 861 \N 189.186.113.193 0000e730-7ea6-4144-979a-77345ff7fee5 2020-12-23 00:54:14.519545 49575 18 User \N \N 18 User \N update ---\nunique_session_id:\n- HyfhLH5H-ymYkeh8j3gh\n- ZT_cgcCmv_z4tAQLYySq\n 862 \N 189.186.113.193 0000e730-7ea6-4144-979a-77345ff7fee5 2020-12-23 00:54:14.538369 49576 3854 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.1478E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1478E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1096\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 550a60c5-2ce9-4912-b3c7-423351e138b5 2020-12-23 00:55:12.49986 49577 1900 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.113.193 550a60c5-2ce9-4912-b3c7-423351e138b5 2020-12-23 00:55:12.534965 49578 2639 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.113.193 550a60c5-2ce9-4912-b3c7-423351e138b5 2020-12-23 00:55:12.573569 49579 3854 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 4982a571-cff5-4b2d-883a-527433864ed9 2020-12-23 00:55:16.836137 49580 5075 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1478E4\nmove_type: '1'\nsale_id: 3854\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1096\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.22E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1096 189.186.113.193 4982a571-cff5-4b2d-883a-527433864ed9 2020-12-23 00:55:16.870285 49581 483 Customer \N \N 18 User \N create ---\nnick_name: ADALIS SICAIROS\nphone: "(667) 471-3780"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ADALIS SICAIROS fue registrado. 189.186.113.193 47387cbe-c2d9-44f3-826b-b8c9ed79267e 2020-12-23 01:24:48.415342 49582 3855 Sale \N \N 18 User \N create ---\ncustomer_id: 483\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.1249E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1249E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-1097\nexpiration_date: 2021-01-26\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 48186913-4161-45ca-8149-93d55b27c2cd 2020-12-23 01:25:02.761724 49583 2648 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.113.193 48186913-4161-45ca-8149-93d55b27c2cd 2020-12-23 01:25:02.804423 49584 5076 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 3855\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-1097\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1097 189.186.113.193 34ce4a79-a255-4205-b099-311f77dcc96e 2020-12-23 01:25:09.503948 49585 3855 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.113.193 a4631aa5-d92c-4801-af23-f29531274cb8 2020-12-23 01:25:10.49358 49586 5077 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1049E4\nmove_type: '1'\nsale_id: 3855\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1049E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1097 189.186.113.193 f83cc9aa-1b8b-4a29-be19-40ccdc72e5cf 2020-12-23 01:29:40.984923 49587 3855 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.113.193 f5d0196e-054e-42e8-9d39-e9fb69ffc6e3 2020-12-23 01:29:41.957421 49662 3865 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 8b8584dc-3ac3-461a-bae8-b2486bfa8414 2020-12-23 02:52:23.619138 49588 3856 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.137845E4\ntax: !ruby/object:BigDecimal 18:0.22055E3\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1098\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 fa9f87b0-3445-40a0-b42b-7058351283ee 2020-12-23 01:30:08.797453 49589 849 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.113.193 fa9f87b0-3445-40a0-b42b-7058351283ee 2020-12-23 01:30:08.837086 49590 3856 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 c439fc41-7c2a-47dd-b925-a69ed4f58179 2020-12-23 01:30:21.515972 49591 5078 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 3856\ncardnumber: 1155\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1098\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1098 189.186.113.193 c439fc41-7c2a-47dd-b925-a69ed4f58179 2020-12-23 01:30:21.545335 49592 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 00:22:27.498397000 Z\n- &1 2020-12-23 00:36:25.691228000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 01:35:55.088694239 Z\nsign_in_count:\n- 2204\n- 2205\n 4410 \N 189.186.113.193 01b098f0-513e-415f-91cb-3db60ab2adc2 2020-12-23 01:35:55.095615 49593 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xR2DsZgafhdyZJszcxjf\n- sdPaxFvpu14sqX9QaoQ_\n 4411 \N 189.186.113.193 01b098f0-513e-415f-91cb-3db60ab2adc2 2020-12-23 01:35:55.114222 49594 2554 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.113.193 ec171201-2a75-4386-9bd4-d1ffb5680ac4 2020-12-23 01:37:35.353328 49595 772 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.113.193 9da9870c-73c1-479a-81f1-78fb1da30d43 2020-12-23 01:37:37.040802 49596 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 00:23:23.857758000 Z\n- &1 2020-12-23 00:54:14.512884000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 01:38:05.263913703 Z\nsign_in_count:\n- 430\n- 431\n 863 \N 189.186.113.193 3ae62af7-46b4-4422-965c-d73aadacc54d 2020-12-23 01:38:05.270461 49597 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ZT_cgcCmv_z4tAQLYySq\n- E4LLp16EvLWVHDE67Gbt\n 864 \N 189.186.113.193 3ae62af7-46b4-4422-965c-d73aadacc54d 2020-12-23 01:38:05.284936 49598 772 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-22\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.113.193 03994872-ebdd-4de9-b8a8-4aa3a81a7064 2020-12-23 01:38:51.086426 49599 2596 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.113.193 03994872-ebdd-4de9-b8a8-4aa3a81a7064 2020-12-23 01:38:51.112319 49600 3857 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.649E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.649E3\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1099\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 f441315a-14a6-4abb-8853-5a04166090ec 2020-12-23 01:39:20.80283 49601 2596 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.113.193 f441315a-14a6-4abb-8853-5a04166090ec 2020-12-23 01:39:20.840043 49602 3857 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 3619a7d1-f692-45d4-8dfd-963117b6b11b 2020-12-23 01:40:17.537843 49603 5079 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.649E3\nmove_type: '1'\nsale_id: 3857\ncardnumber: 1525\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1099\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1099 189.186.113.193 3619a7d1-f692-45d4-8dfd-963117b6b11b 2020-12-23 01:40:17.561955 49604 3858 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1246\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1839\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 746e6603-c74e-43ae-b167-de08e740f1ae 2020-12-23 01:40:47.529208 49605 2521 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 4 \N 187.149.121.224 746e6603-c74e-43ae-b167-de08e740f1ae 2020-12-23 01:40:47.578494 49606 3858 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 77b0ae7d-ba99-4019-b2a8-00840bdd293d 2020-12-23 01:41:39.936009 49607 5080 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1246\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.869E3\nmove_type: '1'\nsale_id: 3858\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1839\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.87E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1839 187.149.121.224 77b0ae7d-ba99-4019-b2a8-00840bdd293d 2020-12-23 01:41:39.967487 49608 3859 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.1249E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1249E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1100\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 ace7a368-6af2-4241-9065-74fb4532f0c1 2020-12-23 01:48:38.24255 49609 2648 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.113.193 ace7a368-6af2-4241-9065-74fb4532f0c1 2020-12-23 01:48:38.275209 49610 3859 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 81ab30ed-7a67-4022-8987-f654e6b7ace2 2020-12-23 01:48:59.827973 49633 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 01:35:55.088694000 Z\n- &1 2020-12-23 01:57:35.922039000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 02:25:56.652066081 Z\nsign_in_count:\n- 2206\n- 2207\n 4414 \N 189.186.113.193 bdd409d6-f823-4a6f-93c2-98c0a79af594 2020-12-23 02:25:56.660444 49634 4 User \N \N 4 User \N update ---\nunique_session_id:\n- hrSKeCETTPzR45DkJ7yC\n- itWy96heRKuQ4ZFDD324\n 4415 \N 189.186.113.193 bdd409d6-f823-4a6f-93c2-98c0a79af594 2020-12-23 02:25:56.685397 49611 5081 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1249E4\nmove_type: '1'\nsale_id: 3859\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1100\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.125E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1100 189.186.113.193 81ab30ed-7a67-4022-8987-f654e6b7ace2 2020-12-23 01:48:59.854249 49612 3860 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.827E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.827E3\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1101\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 83360c9a-1c16-410e-a655-e43c0d442bd4 2020-12-23 01:51:41.366427 49613 876 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 13 \N 189.186.113.193 83360c9a-1c16-410e-a655-e43c0d442bd4 2020-12-23 01:51:41.394938 49614 2088 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.113.193 83360c9a-1c16-410e-a655-e43c0d442bd4 2020-12-23 01:51:41.417616 49615 1802 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.113.193 83360c9a-1c16-410e-a655-e43c0d442bd4 2020-12-23 01:51:41.444172 49616 3860 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 d03cc268-63e3-4111-be69-d8d56e29cc00 2020-12-23 01:52:34.960977 49617 5082 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.827E3\nmove_type: '1'\nsale_id: 3860\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1101\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.827E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1101 189.186.113.193 d03cc268-63e3-4111-be69-d8d56e29cc00 2020-12-23 01:52:34.983656 49618 3861 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1102\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 56d58d75-a9be-414b-a0bb-65027eec33eb 2020-12-23 01:54:14.766357 49619 2379 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.113.193 56d58d75-a9be-414b-a0bb-65027eec33eb 2020-12-23 01:54:14.799301 49620 3861 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 dd2e8fc1-d5d9-46bf-8fc5-f5122f566168 2020-12-23 01:54:24.706262 49621 5083 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 3861\ncardnumber: 1222\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1102\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1102 189.186.113.193 dd2e8fc1-d5d9-46bf-8fc5-f5122f566168 2020-12-23 01:54:24.729262 49622 5084 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 3861\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1102\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1102 189.186.113.193 ad026ca4-acfe-4ef4-9835-97818e8a96fa 2020-12-23 01:54:35.671834 49623 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 00:36:25.691228000 Z\n- &1 2020-12-23 01:35:55.088694000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 01:57:35.922039307 Z\nsign_in_count:\n- 2205\n- 2206\n 4412 \N 189.186.113.193 6126e4a6-93af-40bd-aa35-99011fe1ac6d 2020-12-23 01:57:35.928729 49624 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sdPaxFvpu14sqX9QaoQ_\n- hrSKeCETTPzR45DkJ7yC\n 4413 \N 189.186.113.193 6126e4a6-93af-40bd-aa35-99011fe1ac6d 2020-12-23 01:57:35.948718 49625 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 00:54:14.512884000 Z\n- &1 2020-12-23 01:38:05.263913000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 02:03:00.188869246 Z\nsign_in_count:\n- 431\n- 432\n 865 \N 189.186.113.193 8cdf4071-116e-4f58-ae53-84180f7b7ef3 2020-12-23 02:03:00.199338 49626 18 User \N \N 18 User \N update ---\nunique_session_id:\n- E4LLp16EvLWVHDE67Gbt\n- XTZgxzPr5PZHUvyhAKNT\n 866 \N 189.186.113.193 8cdf4071-116e-4f58-ae53-84180f7b7ef3 2020-12-23 02:03:00.225607 49627 3862 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.3498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.15E3\ntotal: !ruby/object:BigDecimal 18:0.3348E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1103\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 70599a5b-f8e5-483d-8b85-9c121ed69976 2020-12-23 02:13:45.585189 49628 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 38 \N 189.186.113.193 70599a5b-f8e5-483d-8b85-9c121ed69976 2020-12-23 02:13:45.619791 49629 2638 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.113.193 70599a5b-f8e5-483d-8b85-9c121ed69976 2020-12-23 02:13:45.643981 49630 3862 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 415b5bc4-0a44-4fcb-93fa-27629ec4bfd3 2020-12-23 02:14:30.787042 49631 5085 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3348E4\nmove_type: '1'\nsale_id: 3862\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1103\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3348E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1103 189.186.113.193 415b5bc4-0a44-4fcb-93fa-27629ec4bfd3 2020-12-23 02:14:30.811005 49632 5086 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3720\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1022 189.186.113.193 40ea98a7-000e-4438-819d-b43c6769551c 2020-12-23 02:25:06.259483 49635 3863 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1246\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1840\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 879fdbfc-bb4f-481f-b22e-4d00115ef764 2020-12-23 02:26:40.689362 49636 2606 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.121.224 879fdbfc-bb4f-481f-b22e-4d00115ef764 2020-12-23 02:26:40.717239 49637 3863 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 9f0434ee-4970-4f8e-b8cf-8fe62cc3599b 2020-12-23 02:27:06.626517 49638 5087 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1246\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 3863\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1840\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1840 187.149.121.224 9f0434ee-4970-4f8e-b8cf-8fe62cc3599b 2020-12-23 02:27:06.648712 49639 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 01:38:05.263913000 Z\n- &1 2020-12-23 02:03:00.188869000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 02:38:42.169806995 Z\nsign_in_count:\n- 432\n- 433\n 867 \N 189.186.113.193 64c50c8e-8a99-4147-91d1-ba123bf47ac3 2020-12-23 02:38:42.177127 49640 18 User \N \N 18 User \N update ---\nunique_session_id:\n- XTZgxzPr5PZHUvyhAKNT\n- AphpsVpBZxkWjvugYabj\n 868 \N 189.186.113.193 64c50c8e-8a99-4147-91d1-ba123bf47ac3 2020-12-23 02:38:42.194344 49641 3864 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.769E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.769E3\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1104\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 9823aa55-2276-4da3-800b-74849b3c3a17 2020-12-23 02:41:49.954508 49642 1905 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.113.193 9823aa55-2276-4da3-800b-74849b3c3a17 2020-12-23 02:41:49.98384 49643 3864 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 ce8042e2-de5e-43ab-9445-854347797858 2020-12-23 02:42:15.096366 49644 5088 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.769E3\nmove_type: '1'\nsale_id: 3864\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1104\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.769E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1104 189.186.113.193 ce8042e2-de5e-43ab-9445-854347797858 2020-12-23 02:42:15.130979 49645 3748 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV3-V-1037 cancelada. 189.186.113.193 43d826e4-6f15-40a3-a344-ab753f860ef7 2020-12-23 02:44:46.563555 49646 5089 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '0'\nsale_id: 3748\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.113.193 43d826e4-6f15-40a3-a344-ab753f860ef7 2020-12-23 02:44:46.602576 49647 2648 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 189.186.113.193 43d826e4-6f15-40a3-a344-ab753f860ef7 2020-12-23 02:44:46.649284 49648 2590 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 189.186.113.193 43d826e4-6f15-40a3-a344-ab753f860ef7 2020-12-23 02:44:46.680862 49649 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 01:57:35.922039000 Z\n- &1 2020-12-23 02:25:56.652066000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 02:49:07.295285798 Z\nsign_in_count:\n- 2207\n- 2208\n 4416 \N 189.186.113.193 20c422e8-a135-4ac8-874b-746f87c34496 2020-12-23 02:49:07.30257 49650 4 User \N \N 4 User \N update ---\nunique_session_id:\n- itWy96heRKuQ4ZFDD324\n- zuvg4dy6xGuybu2ee-c2\n 4417 \N 189.186.113.193 20c422e8-a135-4ac8-874b-746f87c34496 2020-12-23 02:49:07.320548 49651 1517 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.113.193 0ea5c73f-131b-480d-8428-6720f0b89e6a 2020-12-23 02:50:50.355542 49652 773 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-22\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.113.193 be9981fb-4dab-4c5e-8f78-8ecf89f8d06f 2020-12-23 02:50:52.377153 49653 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 02:03:00.188869000 Z\n- &1 2020-12-23 02:38:42.169806000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 02:51:24.013302513 Z\nsign_in_count:\n- 433\n- 434\n 869 \N 189.186.113.193 6568a33c-ac67-4ea2-830b-8c9ba9313243 2020-12-23 02:51:24.023114 49654 18 User \N \N 18 User \N update ---\nunique_session_id:\n- AphpsVpBZxkWjvugYabj\n- 4PwzzTZHczrTUFbBSNn1\n 870 \N 189.186.113.193 6568a33c-ac67-4ea2-830b-8c9ba9313243 2020-12-23 02:51:24.042598 49655 773 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-22\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.113.193 1c9ccb77-3959-4623-9d35-ce8876721e1f 2020-12-23 02:51:42.722875 49656 1393 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.113.193 1c9ccb77-3959-4623-9d35-ce8876721e1f 2020-12-23 02:51:42.741454 49657 773 Transfer \N \N 18 User \N update --- {}\n 3 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.113.193 04ede020-b386-4426-b972-e4a6054abc02 2020-12-23 02:51:44.723181 49658 1393 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.113.193 04ede020-b386-4426-b972-e4a6054abc02 2020-12-23 02:51:44.736521 49659 3865 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1245\namount: !ruby/object:BigDecimal 18:0.2748E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2748E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1105\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 5a7128da-71d5-4cab-aece-4db847613f9a 2020-12-23 02:52:15.292716 49660 2590 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 13 \N 189.186.113.193 5a7128da-71d5-4cab-aece-4db847613f9a 2020-12-23 02:52:15.3211 49663 5090 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 3865\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1105\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1455'\n 1 movimiento de efectivo por venta con folio PV3-V-1105 189.186.113.193 8b8584dc-3ac3-461a-bae8-b2486bfa8414 2020-12-23 02:52:23.661733 49664 5091 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1245\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2248E4\nmove_type: '1'\nsale_id: 3865\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1105\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2248E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1455'\n 1 movimiento de efectivo por venta con folio PV3-V-1105 189.186.113.193 97b61145-229c-4462-944a-2195eee6e4ab 2020-12-23 02:52:30.054732 49665 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 02:25:56.652066000 Z\n- &1 2020-12-23 02:49:07.295285000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 02:52:50.983805313 Z\nsign_in_count:\n- 2208\n- 2209\n 4418 \N 189.186.113.193 07eb8abe-507e-48cc-bf67-f0965815926f 2020-12-23 02:52:50.993264 49666 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zuvg4dy6xGuybu2ee-c2\n- ok_7xPUU3syy4sx9autx\n 4419 \N 189.186.113.193 07eb8abe-507e-48cc-bf67-f0965815926f 2020-12-23 02:52:51.015873 49667 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 02:38:42.169806000 Z\n- &1 2020-12-23 02:51:24.013302000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 02:53:35.258507711 Z\nsign_in_count:\n- 434\n- 435\n 871 \N 189.186.113.193 a25eaa66-7be7-49c2-b00b-48c68d13f6ee 2020-12-23 02:53:35.265185 49668 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 4PwzzTZHczrTUFbBSNn1\n- oxg6kLYGx-JcdqQsKawS\n 872 \N 189.186.113.193 a25eaa66-7be7-49c2-b00b-48c68d13f6ee 2020-12-23 02:53:35.286398 49669 1271 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 1246\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.13309E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.1E5\ncash_fund: !ruby/object:BigDecimal 18:0.784E3\nphysical_cash: !ruby/object:BigDecimal 18:0.10784E5\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 27297456-c9b3-4120-8f4a-40c71cec2623 2020-12-23 02:57:42.034809 49670 1246 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 27297456-c9b3-4120-8f4a-40c71cec2623 2020-12-23 02:57:42.050831 49671 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 21:45:29.739084000 Z\n- &1 2020-12-22 22:52:42.381938000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 03:07:48.990635967 Z\nsign_in_count:\n- 441\n- 442\n 884 \N 201.175.159.196 e77c7e05-e296-4d4d-891e-e2b0d0638455 2020-12-23 03:07:48.99687 49672 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 9DbPEkJzyosGqFZ1hRUc\n- ou1AgexN9sdNDPdvcsUV\n 885 \N 201.175.159.196 e77c7e05-e296-4d4d-891e-e2b0d0638455 2020-12-23 03:07:49.011224 49673 1272 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1245\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.44935E5\namount_out: !ruby/object:BigDecimal 18:0.5E3\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.26944E5\ncash_fund: !ruby/object:BigDecimal 18:0.915E3\nphysical_cash: !ruby/object:BigDecimal 18:0.27859E5\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.113.193 b9e7a9e7-6f70-4c99-9a87-42afa7648bde 2020-12-23 03:31:40.709681 49674 1245 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.113.193 b9e7a9e7-6f70-4c99-9a87-42afa7648bde 2020-12-23 03:31:40.724472 49675 1247 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.915E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 915.0 189.186.113.193 795ff756-2a8d-4b67-b104-6c0e450c6df9 2020-12-23 03:32:18.216298 49676 3866 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1106\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 976dd13f-a382-46cc-8ddc-2b2cbfe1a768 2020-12-23 03:33:57.217042 49677 2631 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 15 \N 189.186.113.193 976dd13f-a382-46cc-8ddc-2b2cbfe1a768 2020-12-23 03:33:57.245843 49678 3866 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 68de7aae-556e-463a-9b34-48049b3ef277 2020-12-23 03:34:06.166963 49679 5092 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3866\ncardnumber: 1222\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1106\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1106 189.186.113.193 68de7aae-556e-463a-9b34-48049b3ef277 2020-12-23 03:34:06.202057 49680 3867 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.1328E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1328E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1107\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 0cc1a311-400c-49f8-88b3-1d59e6dfaf06 2020-12-23 03:34:25.086097 49681 2595 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.113.193 0cc1a311-400c-49f8-88b3-1d59e6dfaf06 2020-12-23 03:34:25.113361 49682 2639 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.113.193 0cc1a311-400c-49f8-88b3-1d59e6dfaf06 2020-12-23 03:34:25.141796 49683 3867 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 26523b24-ca6d-4109-a8fb-77545feb6c1a 2020-12-23 03:34:29.121752 49684 5093 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1328E4\nmove_type: '1'\nsale_id: 3867\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1107\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1328E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1107 189.186.113.193 26523b24-ca6d-4109-a8fb-77545feb6c1a 2020-12-23 03:34:29.150985 49730 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ok_7xPUU3syy4sx9autx\n- wE6sgXcvMohRfqhhmsdM\n 4421 \N 189.186.113.193 e312b00e-e7e0-4776-a344-c11dd898084a 2020-12-23 18:06:21.515086 49685 3868 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.1249E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1249E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1108\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 85510951-7edd-465b-a620-9475804fc5f9 2020-12-23 03:35:02.358263 49686 2648 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.113.193 85510951-7edd-465b-a620-9475804fc5f9 2020-12-23 03:35:02.396628 49687 3868 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 a6c9e62f-60d9-4916-9a3d-146bb617af64 2020-12-23 03:35:06.735023 49688 5094 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1249E4\nmove_type: '1'\nsale_id: 3868\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1108\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1249E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1108 189.186.113.193 a6c9e62f-60d9-4916-9a3d-146bb617af64 2020-12-23 03:35:06.766258 49689 3869 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1109\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 47749b95-d7b6-4a74-8aa0-31e624119f37 2020-12-23 03:35:26.427224 49690 2219 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.113.193 47749b95-d7b6-4a74-8aa0-31e624119f37 2020-12-23 03:35:26.470821 49691 3869 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 69541c1a-c0d7-4d55-9bf8-d5c663eec4be 2020-12-23 03:35:30.96145 49692 5095 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3869\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1109\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1109 189.186.113.193 69541c1a-c0d7-4d55-9bf8-d5c663eec4be 2020-12-23 03:35:30.982724 49693 3870 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.928E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.928E3\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1110\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 72f3bbf9-89c3-4fda-be89-4e80a99993b6 2020-12-23 03:35:53.991385 49694 2590 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 14 \N 189.186.113.193 72f3bbf9-89c3-4fda-be89-4e80a99993b6 2020-12-23 03:35:54.022663 49695 2108 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.113.193 72f3bbf9-89c3-4fda-be89-4e80a99993b6 2020-12-23 03:35:54.053229 49696 3870 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 d249f58e-3d25-4020-830e-b130df48560f 2020-12-23 03:35:57.758011 49697 5096 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.928E3\nmove_type: '1'\nsale_id: 3870\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1110\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.928E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1110 189.186.113.193 d249f58e-3d25-4020-830e-b130df48560f 2020-12-23 03:35:57.777791 49698 3871 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.1798E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1798E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1111\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 6c349fbb-6f0d-423c-a6c8-c128dbace821 2020-12-23 03:36:22.689548 49699 2644 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.113.193 6c349fbb-6f0d-423c-a6c8-c128dbace821 2020-12-23 03:36:22.721799 49700 3871 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 78435b34-5b70-422b-a742-0326f72af860 2020-12-23 03:36:27.779016 49701 5097 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1798E4\nmove_type: '1'\nsale_id: 3871\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1111\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1798E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1111 189.186.113.193 78435b34-5b70-422b-a742-0326f72af860 2020-12-23 03:36:27.802505 49702 3872 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1112\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 cd7a3732-2c2c-4080-a046-a4c7dac1d9af 2020-12-23 03:37:14.01933 49703 2642 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 189.186.113.193 cd7a3732-2c2c-4080-a046-a4c7dac1d9af 2020-12-23 03:37:14.061508 49704 3872 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 16cdc953-d671-4c80-b56b-c4569c5d6652 2020-12-23 03:37:18.164329 49705 5098 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 3872\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1112\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1112 189.186.113.193 16cdc953-d671-4c80-b56b-c4569c5d6652 2020-12-23 03:37:18.186378 49731 2006 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.113.193 b65deee0-6616-4657-81ab-d7646325352a 2020-12-23 18:07:20.405869 49706 3873 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.3266E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3266E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1113\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 49116105-3a33-43ce-96b3-c084b2d38d99 2020-12-23 03:39:10.940487 49707 2580 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 189.186.113.193 49116105-3a33-43ce-96b3-c084b2d38d99 2020-12-23 03:39:10.971371 49708 1129 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 13 \N 189.186.113.193 49116105-3a33-43ce-96b3-c084b2d38d99 2020-12-23 03:39:10.996146 49709 1928 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.113.193 49116105-3a33-43ce-96b3-c084b2d38d99 2020-12-23 03:39:11.020581 49710 2337 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.113.193 49116105-3a33-43ce-96b3-c084b2d38d99 2020-12-23 03:39:11.045055 49711 3873 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 56f77001-7a20-45a6-8688-238fa5319f6b 2020-12-23 03:39:15.72614 49712 5099 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3266E4\nmove_type: '1'\nsale_id: 3873\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1113\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3266E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1113 189.186.113.193 56f77001-7a20-45a6-8688-238fa5319f6b 2020-12-23 03:39:15.749215 49713 3874 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.1488E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1488E4\nstatus: 0\ndate_sale: 2020-12-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1114\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 a3d4f5cd-986c-4af1-8c47-b405ce3e3259 2020-12-23 03:39:48.946762 49714 1243 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.113.193 a3d4f5cd-986c-4af1-8c47-b405ce3e3259 2020-12-23 03:39:48.974741 49715 2649 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.113.193 a3d4f5cd-986c-4af1-8c47-b405ce3e3259 2020-12-23 03:39:49.000447 49716 3874 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 aa8baf72-7c15-43eb-bd18-d626c1d1b414 2020-12-23 03:39:53.441766 49717 5100 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1488E4\nmove_type: '1'\nsale_id: 3874\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1114\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1488E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1114 189.186.113.193 aa8baf72-7c15-43eb-bd18-d626c1d1b414 2020-12-23 03:39:53.462283 49718 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 02:51:24.013302000 Z\n- &1 2020-12-23 02:53:35.258507000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 17:36:59.458582185 Z\nsign_in_count:\n- 435\n- 436\n 873 \N 189.186.113.193 f13f05fd-b62b-4297-962b-952c7a404c20 2020-12-23 17:36:59.489092 49719 18 User \N \N 18 User \N update ---\nunique_session_id:\n- oxg6kLYGx-JcdqQsKawS\n- zra3kXebsFw8NGQgD1Yj\n 874 \N 189.186.113.193 f13f05fd-b62b-4297-962b-952c7a404c20 2020-12-23 17:36:59.511482 49720 3875 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1115\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 33b37ba3-f602-4221-adac-fd86dd6bb972 2020-12-23 17:37:29.051344 49721 2271 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.113.193 33b37ba3-f602-4221-adac-fd86dd6bb972 2020-12-23 17:37:29.083929 49722 3875 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 b6cff2ae-6508-4a07-9363-e4ca8e58bdfa 2020-12-23 17:37:39.287344 49723 5101 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 3875\ncardnumber: 5554\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1115\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1115 189.186.113.193 b6cff2ae-6508-4a07-9363-e4ca8e58bdfa 2020-12-23 17:37:39.393166 49724 3876 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.398E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.398E3\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1116\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 d7ddbfbf-c541-40bc-b207-8ae35b8ea1c2 2020-12-23 17:43:36.526703 49725 2186 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.113.193 d7ddbfbf-c541-40bc-b207-8ae35b8ea1c2 2020-12-23 17:43:36.55447 49726 2455 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.113.193 d7ddbfbf-c541-40bc-b207-8ae35b8ea1c2 2020-12-23 17:43:36.576934 49727 3876 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 1185264f-7901-42eb-a96a-c8a305c3044d 2020-12-23 17:43:48.629484 49728 5102 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.398E3\nmove_type: '1'\nsale_id: 3876\ncardnumber: 5255\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1116\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1116 189.186.113.193 1185264f-7901-42eb-a96a-c8a305c3044d 2020-12-23 17:43:48.654865 49729 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 02:49:07.295285000 Z\n- &1 2020-12-23 02:52:50.983805000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 18:06:21.467123505 Z\nsign_in_count:\n- 2209\n- 2210\n 4420 \N 189.186.113.193 e312b00e-e7e0-4776-a344-c11dd898084a 2020-12-23 18:06:21.48714 49732 2501 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.113.193 7b0c468f-cb4f-472e-a93a-3bb6deef15da 2020-12-23 18:07:30.998846 49733 2500 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.113.193 b1902858-1d46-472e-a8ab-93048fc36073 2020-12-23 18:07:42.464103 49734 2499 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.113.193 f42ca0ec-bd96-4cad-b239-fac410c1ba1e 2020-12-23 18:07:49.892872 49735 2330 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.113.193 4b57c69c-0286-4bbd-8e5a-9677afb3fe10 2020-12-23 18:07:58.825761 49736 2035 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.113.193 b3e4d04d-c76f-49b0-b949-c4e881f1bfb7 2020-12-23 18:08:11.143147 49737 2331 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.113.193 fdd2dcf9-ecd5-4183-8384-148803be72d2 2020-12-23 18:08:25.402186 49738 1861 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.113.193 c93045a4-8bff-4ed6-9382-7861c5c2d848 2020-12-23 18:08:47.504823 49739 2329 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.113.193 2e5b42fa-8204-4d77-a620-6aff00de241e 2020-12-23 18:09:00.833182 49740 2502 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.113.193 64211c37-07e9-425c-8eb8-feb2828471ad 2020-12-23 18:09:27.762273 49741 774 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-23\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.113.193 a7f5fac5-9ca7-4758-bf08-fbdd2ed7ac28 2020-12-23 18:09:32.438216 49742 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 02:53:35.258507000 Z\n- &1 2020-12-23 17:36:59.458582000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 18:26:07.068512865 Z\nsign_in_count:\n- 436\n- 437\n 875 \N 189.186.113.193 e2408ae2-e9cf-41a5-b40d-42c5acaba5b5 2020-12-23 18:26:07.073846 49743 18 User \N \N 18 User \N update ---\nunique_session_id:\n- zra3kXebsFw8NGQgD1Yj\n- 9syFbxzcsnmU9EqNjRKh\n 876 \N 189.186.113.193 e2408ae2-e9cf-41a5-b40d-42c5acaba5b5 2020-12-23 18:26:07.090583 49744 5103 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1224\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.2098E4\nmove_type: '1'\nsale_id: 3665\ncardnumber: 4144\npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '12565'\n 1 \N 189.186.113.193 9c846a04-88ed-4e1d-b15a-99aa2610a056 2020-12-23 18:28:43.775454 49745 3665 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 9c846a04-88ed-4e1d-b15a-99aa2610a056 2020-12-23 18:28:43.802458 49746 5103 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 1224\n- 1247\n 2 movimiento de efectivo por venta con folio PV3-V-991 189.186.113.193 9c846a04-88ed-4e1d-b15a-99aa2610a056 2020-12-23 18:28:43.81723 49747 5104 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1054\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1397E4\nmove_type: '1'\nsale_id: 2905\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '14144'\n 1 \N 189.186.113.193 a7073484-942d-4b40-909f-275c1bac6475 2020-12-23 18:29:11.760838 49748 2904 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 a7073484-942d-4b40-909f-275c1bac6475 2020-12-23 18:29:11.782713 49749 2905 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.113.193 a7073484-942d-4b40-909f-275c1bac6475 2020-12-23 18:29:11.798533 49750 5104 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 1054\n- 1247\n 2 movimiento de efectivo por venta con folio PV1-V-1381 189.186.113.193 a7073484-942d-4b40-909f-275c1bac6475 2020-12-23 18:29:11.812802 49751 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 02:52:50.983805000 Z\n- &1 2020-12-23 18:06:21.467123000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 18:33:12.114410249 Z\nsign_in_count:\n- 2210\n- 2211\n 4422 \N 189.186.113.193 ab816165-4462-4ef8-bcc4-6b3933c356e9 2020-12-23 18:33:12.120328 49752 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wE6sgXcvMohRfqhhmsdM\n- 8m3UyJyY3zhyK7L99JtK\n 4423 \N 189.186.113.193 ab816165-4462-4ef8-bcc4-6b3933c356e9 2020-12-23 18:33:12.139744 49753 2553 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.113.193 814f3216-2fff-4ff7-9813-4f0d510f2046 2020-12-23 18:36:32.42798 49754 2553 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.113.193 c7e159a2-02af-4314-b4b9-7a924ef08500 2020-12-23 18:36:36.99321 49755 775 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-23\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.113.193 1934da18-2415-40dd-b450-2280780d46c5 2020-12-23 18:36:38.276442 49756 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 17:36:59.458582000 Z\n- &1 2020-12-23 18:26:07.068512000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 18:37:00.540116267 Z\nsign_in_count:\n- 437\n- 438\n 877 \N 189.186.113.193 4adcbd77-c1f7-40db-a0e9-6e5bc8ce1c1f 2020-12-23 18:37:00.546011 49757 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 9syFbxzcsnmU9EqNjRKh\n- eMznrr9JSkTfq8iB9yya\n 878 \N 189.186.113.193 4adcbd77-c1f7-40db-a0e9-6e5bc8ce1c1f 2020-12-23 18:37:00.55881 49758 774 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-23\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.113.193 feeecccc-6344-41df-9065-749d4b3288df 2020-12-23 18:37:35.359124 49759 2493 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.113.193 feeecccc-6344-41df-9065-749d4b3288df 2020-12-23 18:37:35.383373 49760 2655 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1352\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.113.193 feeecccc-6344-41df-9065-749d4b3288df 2020-12-23 18:37:35.412091 49761 2656 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 341\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.113.193 feeecccc-6344-41df-9065-749d4b3288df 2020-12-23 18:37:35.432057 49762 2657 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1354\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.113.193 feeecccc-6344-41df-9065-749d4b3288df 2020-12-23 18:37:35.451123 49763 2658 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1175\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.113.193 feeecccc-6344-41df-9065-749d4b3288df 2020-12-23 18:37:35.471865 49764 2659 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1353\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.113.193 feeecccc-6344-41df-9065-749d4b3288df 2020-12-23 18:37:35.491464 49765 2660 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1476\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.113.193 feeecccc-6344-41df-9065-749d4b3288df 2020-12-23 18:37:35.511121 49766 2661 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1477\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.113.193 feeecccc-6344-41df-9065-749d4b3288df 2020-12-23 18:37:35.530241 49767 2662 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1478\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.113.193 feeecccc-6344-41df-9065-749d4b3288df 2020-12-23 18:37:35.549244 49768 2022 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.113.193 feeecccc-6344-41df-9065-749d4b3288df 2020-12-23 18:37:35.565176 49769 775 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-23\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.113.193 1bade264-7a08-4541-9661-faab2ce082e9 2020-12-23 18:38:14.067533 49770 2591 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.113.193 1bade264-7a08-4541-9661-faab2ce082e9 2020-12-23 18:38:14.091604 49771 1554 Product \N \N 18 User \N create ---\nsku: BOL-1554\nname: 2BLCO20734\ndescription: BOLSO CLOE\nprice_base: !ruby/object:BigDecimal 18:0.10495E4\nprice_sale: !ruby/object:BigDecimal 18:0.2099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1554 fue creado. 189.186.113.193 d8a09272-4498-495c-8a16-9075d2aa43fb 2020-12-23 18:40:45.441142 49772 1554 Product \N \N 18 User \N update ---\nbarcode:\n- ''\n- '0001554'\n 2 \N 189.186.113.193 d8a09272-4498-495c-8a16-9075d2aa43fb 2020-12-23 18:40:45.474893 49773 2663 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1554\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.113.193 d8a09272-4498-495c-8a16-9075d2aa43fb 2020-12-23 18:40:45.503423 49774 509 Purchase \N \N 18 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-151\namount: !ruby/object:BigDecimal 18:0.10495E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.10495E4\nobservations: ''\npurchase_date: 2020-12-23\nuser_id: '18'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-151 por $ 1049.5 MXN creada. 189.186.113.193 9dbef9be-22c5-4c7a-a872-ce610e636eb5 2020-12-23 18:40:47.68805 49775 2663 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.113.193 9dbef9be-22c5-4c7a-a872-ce610e636eb5 2020-12-23 18:40:47.71225 49776 3877 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.3267E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3267E4\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1117\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 7d9c03b4-bf1d-42ba-999a-3f80eca86d67 2020-12-23 18:41:19.720065 49777 2591 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.113.193 7d9c03b4-bf1d-42ba-999a-3f80eca86d67 2020-12-23 18:41:19.747408 49778 2663 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.113.193 7d9c03b4-bf1d-42ba-999a-3f80eca86d67 2020-12-23 18:41:19.772759 49779 2009 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.113.193 7d9c03b4-bf1d-42ba-999a-3f80eca86d67 2020-12-23 18:41:19.802061 49780 3877 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 15e22933-5cb1-4b8b-bfa1-599795efcae1 2020-12-23 18:42:49.615688 49781 5105 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3267E4\nmove_type: '1'\nsale_id: 3877\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1117\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E4\nchange: !ruby/object:BigDecimal 18:0.233E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1117 189.186.113.193 15e22933-5cb1-4b8b-bfa1-599795efcae1 2020-12-23 18:42:49.63947 49782 3878 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1118\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 929388db-aae8-449e-9ac3-f00bd8a1c458 2020-12-23 18:43:38.514125 49783 2506 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 20 \N 189.186.113.193 929388db-aae8-449e-9ac3-f00bd8a1c458 2020-12-23 18:43:38.55227 49784 3878 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 ce10a6b9-db61-4e00-9abe-ea37c6ad24e1 2020-12-23 18:44:33.79665 49833 18 User \N \N 18 User \N update ---\nunique_session_id:\n- inrb7LUUJVGyKfrU7uub\n- LnzfsPJsDbeK_8RAvKa2\n 882 \N 189.186.113.193 b1905a45-3804-4e10-ad41-fa169926469b 2020-12-23 22:09:04.96171 50114 2562 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.113.193 7e3ea17f-201c-49fe-aabd-13013c1a7240 2020-12-25 01:02:20.329669 49785 5106 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 3878\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1118\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1118 189.186.113.193 ce10a6b9-db61-4e00-9abe-ea37c6ad24e1 2020-12-23 18:44:33.824433 49786 3879 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1119\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 794f4e76-4324-4d60-9b44-b5862f2a4daa 2020-12-23 18:51:51.182772 49787 1907 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.113.193 794f4e76-4324-4d60-9b44-b5862f2a4daa 2020-12-23 18:51:51.213265 49788 3879 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 bd1ef463-1ef6-405b-bbd6-e2a9fc368413 2020-12-23 18:52:16.795704 49789 5107 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 3879\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1119\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1119 189.186.113.193 bd1ef463-1ef6-405b-bbd6-e2a9fc368413 2020-12-23 18:52:16.821925 49790 1248 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.784E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 784.0 187.149.121.224 228d1e4d-ff98-495c-90c9-abcc128e40ab 2020-12-23 18:52:28.014465 49791 3880 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1248\namount: !ruby/object:BigDecimal 18:0.2598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2598E4\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1841\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 82533f16-d3a4-4f65-8f31-ca01049cd922 2020-12-23 19:08:51.714052 49792 2511 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.121.224 82533f16-d3a4-4f65-8f31-ca01049cd922 2020-12-23 19:08:51.75685 49793 2369 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 28 \N 187.149.121.224 82533f16-d3a4-4f65-8f31-ca01049cd922 2020-12-23 19:08:51.784182 49794 3880 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 f8d0bc27-5118-45a5-b87d-74ad0bfd533f 2020-12-23 19:09:14.011117 49795 5108 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1248\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2598E4\nmove_type: '1'\nsale_id: 3880\ncardnumber: 5503\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1841\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1841 187.149.121.224 f8d0bc27-5118-45a5-b87d-74ad0bfd533f 2020-12-23 19:09:14.037937 49796 3881 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.189E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.189E3\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1120\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 c3d9c83f-d05f-4cb0-a6dd-13db7abe84ef 2020-12-23 19:12:20.077865 49797 2398 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.113.193 c3d9c83f-d05f-4cb0-a6dd-13db7abe84ef 2020-12-23 19:12:20.103915 49798 3881 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 ebb8fd75-099f-4aaa-ac43-cf6d790a5a30 2020-12-23 19:12:25.923274 49799 5109 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.189E3\nmove_type: '1'\nsale_id: 3881\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1120\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.189E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1120 189.186.113.193 ebb8fd75-099f-4aaa-ac43-cf6d790a5a30 2020-12-23 19:12:25.962078 49800 3882 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.799E3\ntotal: !ruby/object:BigDecimal 18:0.1E4\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1121\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 7bd3e81d-58cb-4ab3-8454-e375d68ae417 2020-12-23 19:42:43.013408 49801 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 64 \N 189.186.113.193 7bd3e81d-58cb-4ab3-8454-e375d68ae417 2020-12-23 19:42:43.039416 49802 3882 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-1121 cancelada. 189.186.113.193 082ccd5e-68af-43df-9823-7735d50bc875 2020-12-23 19:44:30.068586 49803 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 65 \N 189.186.113.193 082ccd5e-68af-43df-9823-7735d50bc875 2020-12-23 19:44:30.093747 49804 3883 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.2048E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.799E3\ntotal: !ruby/object:BigDecimal 18:0.1249E4\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1122\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 29ee0560-3ded-4f6c-b7be-67fed8ac46f5 2020-12-23 19:54:19.982827 49805 2164 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.113.193 29ee0560-3ded-4f6c-b7be-67fed8ac46f5 2020-12-23 19:54:20.023819 49806 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 66 \N 189.186.113.193 29ee0560-3ded-4f6c-b7be-67fed8ac46f5 2020-12-23 19:54:20.046378 49807 3883 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 dfbc079a-77f7-4814-9002-ddc678802e4b 2020-12-23 19:54:30.269175 49808 5110 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1249E4\nmove_type: '1'\nsale_id: 3883\ncardnumber: 4141\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1122\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1122 189.186.113.193 dfbc079a-77f7-4814-9002-ddc678802e4b 2020-12-23 19:54:30.289252 49809 3416 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.113.193 42ce1c40-30f0-45cb-9111-42d415de04b8 2020-12-23 20:11:41.745738 49810 2577 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.113.193 42ce1c40-30f0-45cb-9111-42d415de04b8 2020-12-23 20:11:41.775633 49811 3414 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.113.193 8b824bf5-99d2-4747-8fef-e9f9b318fbe0 2020-12-23 20:11:51.364575 49812 2573 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 189.186.113.193 8b824bf5-99d2-4747-8fef-e9f9b318fbe0 2020-12-23 20:11:51.424795 49813 3884 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1248\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1842\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 ac374285-7489-4b4c-8bf5-4b0bf4986d8f 2020-12-23 20:22:32.837927 49814 1937 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 41 \N 187.149.121.224 ac374285-7489-4b4c-8bf5-4b0bf4986d8f 2020-12-23 20:22:32.866615 49815 3884 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 df6b2763-4d87-4eea-81fe-b8ab165a2f46 2020-12-23 20:23:09.494132 49816 5111 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1248\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 3884\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1842\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1842 187.149.121.224 df6b2763-4d87-4eea-81fe-b8ab165a2f46 2020-12-23 20:23:09.516945 49817 3885 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.638E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.638E3\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1123\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 6c938bc8-adff-40a7-a2a4-919e8b51d6dc 2020-12-23 20:41:08.595917 49818 2107 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.113.193 6c938bc8-adff-40a7-a2a4-919e8b51d6dc 2020-12-23 20:41:08.627486 49819 2094 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.113.193 6c938bc8-adff-40a7-a2a4-919e8b51d6dc 2020-12-23 20:41:08.652862 49820 3885 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 deacc87e-8150-48e3-8bf7-0043bbe16814 2020-12-23 20:41:35.740451 49821 5112 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.638E3\nmove_type: '1'\nsale_id: 3885\ncardnumber: 1233\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1123\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1123 189.186.113.193 deacc87e-8150-48e3-8bf7-0043bbe16814 2020-12-23 20:41:35.763154 49822 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 18:06:21.467123000 Z\n- &1 2020-12-23 18:33:12.114410000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 20:55:13.937307988 Z\nsign_in_count:\n- 2211\n- 2212\n 4424 \N 189.186.113.193 86a36b4c-f168-4237-955b-7723ab9a5610 2020-12-23 20:55:13.947464 49823 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8m3UyJyY3zhyK7L99JtK\n- 5jeXgL5Aq8HSyGfMk_j_\n 4425 \N 189.186.113.193 86a36b4c-f168-4237-955b-7723ab9a5610 2020-12-23 20:55:13.971809 49824 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 18:26:07.068512000 Z\n- &1 2020-12-23 18:37:00.540116000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 21:41:02.322424722 Z\nsign_in_count:\n- 438\n- 439\n 879 \N 189.186.113.193 0096dfd1-c5e1-43e8-bf71-ae86ebd49b79 2020-12-23 21:41:02.328692 49825 18 User \N \N 18 User \N update ---\nunique_session_id:\n- eMznrr9JSkTfq8iB9yya\n- inrb7LUUJVGyKfrU7uub\n 880 \N 189.186.113.193 0096dfd1-c5e1-43e8-bf71-ae86ebd49b79 2020-12-23 21:41:02.344017 49826 3886 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.237931E4\ntax: !ruby/object:BigDecimal 18:0.22069E3\ndiscount: !ruby/object:BigDecimal 18:0.1E4\ntotal: !ruby/object:BigDecimal 18:0.16E4\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1124\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 fb893645-7dd9-4c26-aacc-4e8b520447d9 2020-12-23 21:44:31.102128 49827 964 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.113.193 fb893645-7dd9-4c26-aacc-4e8b520447d9 2020-12-23 21:44:31.134733 49828 3886 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 ea5a8e7a-7c28-4069-8f82-644167b4b42c 2020-12-23 21:44:56.433494 49829 5113 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.16E4\nmove_type: '1'\nsale_id: 3886\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1124\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1124 189.186.113.193 ea5a8e7a-7c28-4069-8f82-644167b4b42c 2020-12-23 21:44:56.462378 49830 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 18:33:12.114410000 Z\n- &1 2020-12-23 20:55:13.937307000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 22:03:56.372793972 Z\nsign_in_count:\n- 2212\n- 2213\n 4426 \N 189.186.113.193 95bb92ae-ebe2-4ab9-b935-a43722740962 2020-12-23 22:03:56.379101 49831 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5jeXgL5Aq8HSyGfMk_j_\n- 7qnusZps1FW13wQnHvc5\n 4427 \N 189.186.113.193 95bb92ae-ebe2-4ab9-b935-a43722740962 2020-12-23 22:03:56.398162 49832 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 18:37:00.540116000 Z\n- &1 2020-12-23 21:41:02.322424000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 22:09:04.920063097 Z\nsign_in_count:\n- 439\n- 440\n 881 \N 189.186.113.193 b1905a45-3804-4e10-ad41-fa169926469b 2020-12-23 22:09:04.926099 49834 5114 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.549E3\nmove_type: '1'\nsale_id: 3663\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.549E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-989 189.186.113.193 d099a129-2138-4429-baed-f9a57489697a 2020-12-23 22:10:32.523851 49835 3663 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.113.193 c22d2bb4-d2ce-42c9-90d3-a0df4d46ffa0 2020-12-23 22:10:33.574167 49836 5115 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 3662\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-988 189.186.113.193 631a6ce2-8499-4c3e-a9e1-386913034794 2020-12-23 22:10:56.480727 49837 3662 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.113.193 9938fca8-8ba1-41b3-8279-18cffa7a135f 2020-12-23 22:10:57.485149 49838 3887 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1248\namount: !ruby/object:BigDecimal 18:0.669E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1843\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 f4a8fabb-e192-43e0-b12b-69d53c040e87 2020-12-23 22:28:20.342972 49839 1636 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.121.224 f4a8fabb-e192-43e0-b12b-69d53c040e87 2020-12-23 22:28:20.373222 49840 3887 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 aab68a4b-c211-4a12-b63f-0eb2aa815fdb 2020-12-23 22:28:47.57476 49841 5116 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1248\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.669E3\nmove_type: '1'\nsale_id: 3887\ncardnumber: 1905\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1843\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1843 187.149.121.224 aab68a4b-c211-4a12-b63f-0eb2aa815fdb 2020-12-23 22:28:47.59764 49842 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 20:55:13.937307000 Z\n- &1 2020-12-23 22:03:56.372793000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 22:32:08.560611857 Z\nsign_in_count:\n- 2213\n- 2214\n 4428 \N 189.186.113.193 82ededdb-52fb-4eb2-abba-755860beeab1 2020-12-23 22:32:08.567092 49843 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7qnusZps1FW13wQnHvc5\n- Ru5CTLauF_opZpVJZ4uB\n 4429 \N 189.186.113.193 82ededdb-52fb-4eb2-abba-755860beeab1 2020-12-23 22:32:08.582689 49844 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 21:41:02.322424000 Z\n- &1 2020-12-23 22:09:04.920063000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 22:38:58.116731657 Z\nsign_in_count:\n- 440\n- 441\n 883 \N 189.186.113.193 1ce14584-f6a3-4d9b-bb88-cc2279127ab0 2020-12-23 22:38:58.123037 49845 18 User \N \N 18 User \N update ---\nunique_session_id:\n- LnzfsPJsDbeK_8RAvKa2\n- D2fuxxLFusfpAr6TKHZC\n 884 \N 189.186.113.193 1ce14584-f6a3-4d9b-bb88-cc2279127ab0 2020-12-23 22:38:58.136677 49846 3888 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.2547E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2547E4\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1125\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 e87865e4-9c37-41c9-b97a-42f36801fe2c 2020-12-23 22:44:53.646494 49847 2582 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 14 \N 189.186.113.193 e87865e4-9c37-41c9-b97a-42f36801fe2c 2020-12-23 22:44:53.682052 49848 1356 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.113.193 e87865e4-9c37-41c9-b97a-42f36801fe2c 2020-12-23 22:44:53.711729 49849 2642 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 189.186.113.193 e87865e4-9c37-41c9-b97a-42f36801fe2c 2020-12-23 22:44:53.741886 49850 3888 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 8daec70c-e2a4-4e24-abf5-fb0425d38d81 2020-12-23 22:45:36.634756 49851 5117 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2547E4\nmove_type: '1'\nsale_id: 3888\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1125\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.255E4\nchange: !ruby/object:BigDecimal 18:0.3E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1125 189.186.113.193 8daec70c-e2a4-4e24-abf5-fb0425d38d81 2020-12-23 22:45:36.661965 49852 3889 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1248\namount: !ruby/object:BigDecimal 18:0.299E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.299E3\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1844\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 10dd024e-81cb-4e8e-bd33-10438e24dceb 2020-12-23 23:03:22.517935 49853 786 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.22E2\n- !ruby/object:BigDecimal 18:0.21E2\n 22 \N 187.149.121.224 10dd024e-81cb-4e8e-bd33-10438e24dceb 2020-12-23 23:03:22.567642 49854 3889 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 78d8f276-8647-4835-94f4-bb7ef6888f87 2020-12-23 23:03:33.96078 49855 5118 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1248\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.299E3\nmove_type: '1'\nsale_id: 3889\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1844\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1844 187.149.121.224 78d8f276-8647-4835-94f4-bb7ef6888f87 2020-12-23 23:03:33.991984 49856 3890 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1126\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 be99d900-4deb-44ad-bbd5-ccac751855a8 2020-12-23 23:04:18.038021 49857 2638 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.113.193 be99d900-4deb-44ad-bbd5-ccac751855a8 2020-12-23 23:04:18.064988 49858 3890 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 bb06cd3c-4a52-4463-82a0-e25e9cdf01b3 2020-12-23 23:05:04.343306 49859 5119 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2099E4\nmove_type: '1'\nsale_id: 3890\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1126\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1126 189.186.113.193 bb06cd3c-4a52-4463-82a0-e25e9cdf01b3 2020-12-23 23:05:04.363206 49860 3891 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.2298E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2298E4\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1127\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 c5a50e64-ed2c-4911-9162-2561d60fc87b 2020-12-23 23:08:46.448511 49861 2642 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 189.186.113.193 c5a50e64-ed2c-4911-9162-2561d60fc87b 2020-12-23 23:08:46.489235 49862 2022 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.113.193 c5a50e64-ed2c-4911-9162-2561d60fc87b 2020-12-23 23:08:46.524444 49863 3891 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 ffd8b217-bd3c-411d-8360-85582b96c3d9 2020-12-23 23:08:54.82035 49864 5120 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2298E4\nmove_type: '1'\nsale_id: 3891\ncardnumber: 2255\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1127\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1127 189.186.113.193 ffd8b217-bd3c-411d-8360-85582b96c3d9 2020-12-23 23:08:54.851535 49865 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 22:03:56.372793000 Z\n- &1 2020-12-23 22:32:08.560611000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 23:11:02.378004809 Z\nsign_in_count:\n- 2214\n- 2215\n 4430 \N 189.186.113.193 10eeef93-7e70-4c1b-b12b-48ceba28148e 2020-12-23 23:11:02.38625 49866 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Ru5CTLauF_opZpVJZ4uB\n- V3bF-P253_Z8JCyduF2z\n 4431 \N 189.186.113.193 10eeef93-7e70-4c1b-b12b-48ceba28148e 2020-12-23 23:11:02.406917 49867 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 22:09:04.920063000 Z\n- &1 2020-12-23 22:38:58.116731000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 23:18:28.425196072 Z\nsign_in_count:\n- 441\n- 442\n 885 \N 189.186.113.193 748e9f0b-86e5-4f4b-ac49-cfb2b9f35c3d 2020-12-23 23:18:28.431289 49868 18 User \N \N 18 User \N update ---\nunique_session_id:\n- D2fuxxLFusfpAr6TKHZC\n- vQ2Z6eJ-kD-3SP2McztA\n 886 \N 189.186.113.193 748e9f0b-86e5-4f4b-ac49-cfb2b9f35c3d 2020-12-23 23:18:28.444383 49869 3892 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.699E3\ntotal: !ruby/object:BigDecimal 18:0.1E4\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1128\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 80bbd44b-4339-445c-bf25-e3d432522d91 2020-12-23 23:18:59.13015 49870 897 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.113.193 80bbd44b-4339-445c-bf25-e3d432522d91 2020-12-23 23:18:59.156833 49871 3892 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 307cc882-a55b-42e6-8d30-4b401926611c 2020-12-23 23:19:03.487742 49872 5121 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 3892\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1128\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1128 189.186.113.193 307cc882-a55b-42e6-8d30-4b401926611c 2020-12-23 23:19:03.509528 49873 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 22:32:08.560611000 Z\n- &1 2020-12-23 23:11:02.378004000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-23 23:29:29.800673873 Z\nsign_in_count:\n- 2215\n- 2216\n 4432 \N 189.186.113.193 18cd2252-f69a-43c0-b4f0-5362cbcc9a17 2020-12-23 23:29:29.807527 49874 4 User \N \N 4 User \N update ---\nunique_session_id:\n- V3bF-P253_Z8JCyduF2z\n- zGvrKeyZsyF1xidoF9x-\n 4433 \N 189.186.113.193 18cd2252-f69a-43c0-b4f0-5362cbcc9a17 2020-12-23 23:29:29.825473 49875 3893 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1248\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1845\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 0fee546e-91be-4265-b734-ffad5f4ece1f 2020-12-24 00:02:43.503594 49876 2514 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.121.224 0fee546e-91be-4265-b734-ffad5f4ece1f 2020-12-24 00:02:43.531897 49877 3893 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 5a62b201-cc03-4b2c-a44d-fad9c121a008 2020-12-24 00:03:33.572381 49878 5122 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1248\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 3893\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1845\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1845 187.149.121.224 5a62b201-cc03-4b2c-a44d-fad9c121a008 2020-12-24 00:03:33.593087 49879 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 22:38:58.116731000 Z\n- &1 2020-12-23 23:18:28.425196000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 00:18:38.661325602 Z\nsign_in_count:\n- 442\n- 443\n 887 \N 189.186.113.193 5b6546f8-e5ec-4808-9279-0dcb7fdb19ae 2020-12-24 00:18:38.668816 49880 18 User \N \N 18 User \N update ---\nunique_session_id:\n- vQ2Z6eJ-kD-3SP2McztA\n- 2xELcw48sou2ahhnwiCW\n 888 \N 189.186.113.193 5b6546f8-e5ec-4808-9279-0dcb7fdb19ae 2020-12-24 00:18:38.688273 49927 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 1w8Q8GyEykhjxBysjnpH\n- m_DSwnCHvoosxbFwRoxN\n 896 \N 189.186.113.193 68304977-5e96-4533-bdb0-cdbe60b5ee6b 2020-12-24 01:55:03.420441 49881 3894 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1129\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 f2466468-86d9-46c7-8d45-c50532a81629 2020-12-24 00:19:51.047089 49882 2497 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.113.193 f2466468-86d9-46c7-8d45-c50532a81629 2020-12-24 00:19:51.07752 49883 3894 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 1c4f0dd0-a204-49c9-9862-b415a7b09bac 2020-12-24 00:20:15.565031 49884 5123 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 3894\ncardnumber: 1255\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1129\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1129 189.186.113.193 1c4f0dd0-a204-49c9-9862-b415a7b09bac 2020-12-24 00:20:15.592791 49885 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 23:11:02.378004000 Z\n- &1 2020-12-23 23:29:29.800673000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 00:26:52.725148983 Z\nsign_in_count:\n- 2216\n- 2217\n 4434 \N 189.186.113.193 2ba9c30e-f720-4e38-b47f-cf9db49fb5a8 2020-12-24 00:26:52.733614 49886 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zGvrKeyZsyF1xidoF9x-\n- sEnmn3jMK4mEw-VxbAkS\n 4435 \N 189.186.113.193 2ba9c30e-f720-4e38-b47f-cf9db49fb5a8 2020-12-24 00:26:52.757938 49887 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 17:16:54.199997000 Z\n- &1 2020-12-22 20:12:10.807366000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 00:29:00.616385063 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\nsign_in_count:\n- 212\n- 213\n 426 \N 189.186.113.193 d0bc08e3-f4a9-4849-98fe-da35056ec9d7 2020-12-24 00:29:00.623699 49888 9 User \N \N 9 User \N update ---\nunique_session_id:\n- gmAxDye5NUgtdpDzW-Hz\n- "-vtC5tCFYxGcGML6HRhE"\n 427 \N 189.186.113.193 d0bc08e3-f4a9-4849-98fe-da35056ec9d7 2020-12-24 00:29:00.637166 49889 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 20:12:10.807366000 Z\n- &1 2020-12-24 00:29:00.616385000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 00:31:47.153203241 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 213\n- 214\n 428 \N 187.149.121.224 81e91c98-8357-4265-bc04-1d6963e525f4 2020-12-24 00:31:47.171045 49890 9 User \N \N 9 User \N update ---\nunique_session_id:\n- "-vtC5tCFYxGcGML6HRhE"\n- gFuAM9rjyKw7_zs2i3f_\n 429 \N 187.149.121.224 81e91c98-8357-4265-bc04-1d6963e525f4 2020-12-24 00:31:47.216588 49891 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 00:29:00.616385000 Z\n- &1 2020-12-24 00:31:47.153203000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 00:31:47.410699284 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 214\n- 215\n 430 \N 187.149.121.224 7a7962e6-a16a-45bf-9c61-3fc7bee33233 2020-12-24 00:31:47.426858 49892 9 User \N \N 9 User \N update ---\nunique_session_id:\n- gFuAM9rjyKw7_zs2i3f_\n- LpVUAujrTg2ScPq5Lh7i\n 431 \N 187.149.121.224 7a7962e6-a16a-45bf-9c61-3fc7bee33233 2020-12-24 00:31:47.45526 49893 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 00:31:47.153203000 Z\n- &1 2020-12-24 00:31:47.410699000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 00:32:30.384017878 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\nsign_in_count:\n- 215\n- 216\n 432 \N 189.186.113.193 122ff7c6-3980-41b0-8241-24975375b65a 2020-12-24 00:32:30.390972 49894 9 User \N \N 9 User \N update ---\nunique_session_id:\n- LpVUAujrTg2ScPq5Lh7i\n- SQpQGauYxBx12TN5ykru\n 433 \N 189.186.113.193 122ff7c6-3980-41b0-8241-24975375b65a 2020-12-24 00:32:30.405786 49895 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 23:18:28.425196000 Z\n- &1 2020-12-24 00:18:38.661325000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 00:33:58.009086497 Z\nsign_in_count:\n- 443\n- 444\n 889 \N 189.186.113.193 c0142fdc-c178-427d-a77a-30f144e55bc7 2020-12-24 00:33:58.015735 49896 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 2xELcw48sou2ahhnwiCW\n- nZka62opnV-sBD3nNzNy\n 890 \N 189.186.113.193 c0142fdc-c178-427d-a77a-30f144e55bc7 2020-12-24 00:33:58.031434 49897 5124 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 3720\ncardnumber: 1155\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1022 189.186.113.193 b31d0be3-6b2a-4373-94e2-fb4514457413 2020-12-24 00:38:19.969482 49898 3720 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.113.193 8b57aa44-79b1-4ac3-a2dc-bc678175bae2 2020-12-24 00:38:34.804394 49899 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 00:31:47.410699000 Z\n- &1 2020-12-24 00:32:30.384017000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 00:41:20.037362479 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\nsign_in_count:\n- 216\n- 217\n 434 \N 189.186.113.193 8a57a3d9-8c0c-477b-91b4-c9a1d227fb02 2020-12-24 00:41:20.044179 49900 9 User \N \N 9 User \N update ---\nunique_session_id:\n- SQpQGauYxBx12TN5ykru\n- xeBYQHEBsJnFKVn5AZx6\n 435 \N 189.186.113.193 8a57a3d9-8c0c-477b-91b4-c9a1d227fb02 2020-12-24 00:41:20.058825 49901 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 00:18:38.661325000 Z\n- &1 2020-12-24 00:33:58.009086000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 00:48:34.500876670 Z\nsign_in_count:\n- 444\n- 445\n 891 \N 189.186.113.193 024bd3c6-cad2-4d6d-9010-2269e20a8390 2020-12-24 00:48:34.509685 49902 18 User \N \N 18 User \N update ---\nunique_session_id:\n- nZka62opnV-sBD3nNzNy\n- h6WgTzHrqG9f67s8_dFn\n 892 \N 189.186.113.193 024bd3c6-cad2-4d6d-9010-2269e20a8390 2020-12-24 00:48:34.525733 49903 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 23:29:29.800673000 Z\n- &1 2020-12-24 00:26:52.725148000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 00:49:33.446341972 Z\nsign_in_count:\n- 2217\n- 2218\n 4436 \N 189.186.113.193 fcd43ff3-3ad2-405c-b1e3-24906c32248b 2020-12-24 00:49:33.452464 49904 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sEnmn3jMK4mEw-VxbAkS\n- LwW_8zmLoNCn7CbmSmzN\n 4437 \N 189.186.113.193 fcd43ff3-3ad2-405c-b1e3-24906c32248b 2020-12-24 00:49:33.468873 49905 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 00:33:58.009086000 Z\n- &1 2020-12-24 00:48:34.500876000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 01:00:23.075611618 Z\nsign_in_count:\n- 445\n- 446\n 893 \N 189.186.113.193 c509a701-ee6e-4b57-a458-a93a1bb4de48 2020-12-24 01:00:23.08395 49906 18 User \N \N 18 User \N update ---\nunique_session_id:\n- h6WgTzHrqG9f67s8_dFn\n- 1w8Q8GyEykhjxBysjnpH\n 894 \N 189.186.113.193 c509a701-ee6e-4b57-a458-a93a1bb4de48 2020-12-24 01:00:23.103854 49907 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 00:32:30.384017000 Z\n- &1 2020-12-24 00:41:20.037362000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 01:12:26.796278182 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 217\n- 218\n 436 \N 187.149.121.224 914fee83-c8c2-4695-bf06-0c3fa84e686c 2020-12-24 01:12:26.803653 49908 9 User \N \N 9 User \N update ---\nunique_session_id:\n- xeBYQHEBsJnFKVn5AZx6\n- NUR2ieXgqKmBadDDBJsy\n 437 \N 187.149.121.224 914fee83-c8c2-4695-bf06-0c3fa84e686c 2020-12-24 01:12:26.818931 49909 3895 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1248\namount: !ruby/object:BigDecimal 18:0.1728E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1728E4\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1846\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 a1a9d846-e922-4ddd-9972-4f2e04713dda 2020-12-24 01:14:54.813278 49910 1141 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.121.224 a1a9d846-e922-4ddd-9972-4f2e04713dda 2020-12-24 01:14:54.841133 49911 1297 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 19 \N 187.149.121.224 a1a9d846-e922-4ddd-9972-4f2e04713dda 2020-12-24 01:14:54.864739 49912 3895 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 c04c513c-58fc-47a7-8a8f-1c42c59c9f6c 2020-12-24 01:16:10.818704 49913 5125 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1248\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.75E3\nmove_type: '1'\nsale_id: 3895\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1846\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.75E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1846 187.149.121.224 c04c513c-58fc-47a7-8a8f-1c42c59c9f6c 2020-12-24 01:16:10.841239 49914 5125 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 1248\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.75E3\nmove_type: '1'\nsale_id: 3895\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1846\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.75E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.121.224 d3c1e86a-f393-482a-831d-452283fc3f2b 2020-12-24 01:16:17.655721 49915 5126 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1248\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1728E4\nmove_type: '1'\nsale_id: 3895\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1846\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.175E4\nchange: !ruby/object:BigDecimal 18:0.22E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1846 187.149.121.224 664db148-4bf4-442c-9233-bc7a568439bd 2020-12-24 01:16:40.835193 49916 3896 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1248\namount: !ruby/object:BigDecimal 18:0.159E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.159E3\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1847\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 3cc3d5f0-3acb-4c00-b075-cd622bb8f5d9 2020-12-24 01:18:21.713397 49917 2158 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.121.224 3cc3d5f0-3acb-4c00-b075-cd622bb8f5d9 2020-12-24 01:18:21.740024 49918 3896 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 7e4b816a-69f9-4657-8a31-2a683b1128e4 2020-12-24 01:19:47.649463 49919 5127 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1248\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.159E3\nmove_type: '1'\nsale_id: 3896\ncardnumber: 2455\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1847\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1847 187.149.121.224 7e4b816a-69f9-4657-8a31-2a683b1128e4 2020-12-24 01:19:47.671706 49920 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 00:26:52.725148000 Z\n- &1 2020-12-24 00:49:33.446341000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 01:38:49.743733582 Z\nsign_in_count:\n- 2218\n- 2219\n 4438 \N 189.186.113.193 1701645f-e96f-4d8c-92a7-738aab7bc798 2020-12-24 01:38:49.750518 49921 4 User \N \N 4 User \N update ---\nunique_session_id:\n- LwW_8zmLoNCn7CbmSmzN\n- Q777wDxysCTy2LLwLq-w\n 4439 \N 189.186.113.193 1701645f-e96f-4d8c-92a7-738aab7bc798 2020-12-24 01:38:49.76777 49922 3897 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1248\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1848\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 0bd3ec77-f7f0-4d1b-bc6e-85ad37b7413d 2020-12-24 01:42:53.212443 49923 2448 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 8 \N 187.149.121.224 0bd3ec77-f7f0-4d1b-bc6e-85ad37b7413d 2020-12-24 01:42:53.239432 49924 3897 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 65925fa5-ed36-488d-82a7-ca28dc98c6f1 2020-12-24 01:43:13.007443 49925 5128 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1248\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 3897\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1848\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1848 187.149.121.224 65925fa5-ed36-488d-82a7-ca28dc98c6f1 2020-12-24 01:43:13.031618 49926 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 00:48:34.500876000 Z\n- &1 2020-12-24 01:00:23.075611000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 01:55:03.399378606 Z\nsign_in_count:\n- 446\n- 447\n 895 \N 189.186.113.193 68304977-5e96-4533-bdb0-cdbe60b5ee6b 2020-12-24 01:55:03.405988 49928 3898 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.829E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.84E2\ntotal: !ruby/object:BigDecimal 18:0.745E3\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1130\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 055d4ef7-088b-4834-8c26-0e92c53f8d51 2020-12-24 01:58:36.188757 49929 1235 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.113.193 055d4ef7-088b-4834-8c26-0e92c53f8d51 2020-12-24 01:58:36.34604 49930 3898 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 d67c7eda-d3da-48db-bae7-e89d4921a5ff 2020-12-24 01:58:42.101419 49931 5129 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.745E3\nmove_type: '1'\nsale_id: 3898\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1130\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.255E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1130 189.186.113.193 d67c7eda-d3da-48db-bae7-e89d4921a5ff 2020-12-24 01:58:42.122589 49932 3899 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1248\namount: !ruby/object:BigDecimal 18:0.529E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.529E3\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1849\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 49487c12-8ee2-42ac-aa1b-4b72a4d79e11 2020-12-24 02:08:47.689768 49933 1644 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 187.149.121.224 49487c12-8ee2-42ac-aa1b-4b72a4d79e11 2020-12-24 02:08:47.716635 49934 3899 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 8c57021d-9b6d-4b9a-a931-6f7a25135581 2020-12-24 02:09:48.32587 49935 5130 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1248\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.529E3\nmove_type: '1'\nsale_id: 3899\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1849\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.529E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1849 187.149.121.224 8c57021d-9b6d-4b9a-a931-6f7a25135581 2020-12-24 02:09:48.348134 49936 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 00:49:33.446341000 Z\n- &1 2020-12-24 01:38:49.743733000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 02:17:19.660573393 Z\nsign_in_count:\n- 2219\n- 2220\n 4440 \N 189.186.113.193 4e6206f1-90aa-40e2-b935-2982557027cc 2020-12-24 02:17:19.66626 49937 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Q777wDxysCTy2LLwLq-w\n- c26_1q2tDuAy3KGiD5pX\n 4441 \N 189.186.113.193 4e6206f1-90aa-40e2-b935-2982557027cc 2020-12-24 02:17:19.683589 49938 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 01:00:23.075611000 Z\n- &1 2020-12-24 01:55:03.399378000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 02:30:50.949933100 Z\nsign_in_count:\n- 447\n- 448\n 897 \N 189.186.113.193 f2305007-0e10-4c77-97d2-4b34621a8294 2020-12-24 02:30:50.971191 49939 18 User \N \N 18 User \N update ---\nunique_session_id:\n- m_DSwnCHvoosxbFwRoxN\n- K46sLcYzDpBKRiP9poXz\n 898 \N 189.186.113.193 f2305007-0e10-4c77-97d2-4b34621a8294 2020-12-24 02:30:51.010821 49940 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 01:38:49.743733000 Z\n- &1 2020-12-24 02:17:19.660573000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 02:33:25.619682574 Z\nsign_in_count:\n- 2220\n- 2221\n 4442 \N 189.186.113.193 6c6da1ed-7742-4b80-b9a6-8c3b2bdef2b5 2020-12-24 02:33:25.625866 49941 4 User \N \N 4 User \N update ---\nunique_session_id:\n- c26_1q2tDuAy3KGiD5pX\n- p-j2aSxLTnNsqYXuBXE_\n 4443 \N 189.186.113.193 6c6da1ed-7742-4b80-b9a6-8c3b2bdef2b5 2020-12-24 02:33:25.646748 49942 2543 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.113.193 cc58268c-5f9e-4aa0-b0c2-4016a0b4d18d 2020-12-24 02:33:46.931794 49943 2543 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.113.193 7967daca-400f-469f-85fa-fe681dea0c36 2020-12-24 02:33:50.733846 49944 776 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-23\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.113.193 b832ed7c-58c0-40b0-abd4-f5d3741fb400 2020-12-24 02:33:51.522175 49945 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 01:55:03.399378000 Z\n- &1 2020-12-24 02:30:50.949933000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 02:34:20.817802253 Z\nsign_in_count:\n- 448\n- 449\n 899 \N 189.186.113.193 12960d46-6eaf-4236-9a97-f70244cbe382 2020-12-24 02:34:20.826977 49946 18 User \N \N 18 User \N update ---\nunique_session_id:\n- K46sLcYzDpBKRiP9poXz\n- szFyJnjkcVSxT5eXFaur\n 900 \N 189.186.113.193 12960d46-6eaf-4236-9a97-f70244cbe382 2020-12-24 02:34:20.84734 49947 776 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-23\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.113.193 3c52c334-692b-448b-9337-c007fff44066 2020-12-24 02:34:40.056339 49948 2664 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 1515\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.113.193 3c52c334-692b-448b-9337-c007fff44066 2020-12-24 02:34:40.079791 49949 3900 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1131\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 e72efd29-9172-4213-8fff-d4dcbabefdb4 2020-12-24 02:34:54.851451 49950 2664 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.113.193 e72efd29-9172-4213-8fff-d4dcbabefdb4 2020-12-24 02:34:54.879102 49951 3900 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 695c044a-6e7e-4771-a198-e1c1bcebefe6 2020-12-24 02:34:58.681104 49973 3903 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 53e92248-52b5-4712-a01a-e4914708b73b 2020-12-24 18:45:46.340014 50113 2642 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 12 \N 189.186.113.193 7e3ea17f-201c-49fe-aabd-13013c1a7240 2020-12-25 01:02:20.309766 49952 5131 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 3900\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1131\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1131 189.186.113.193 695c044a-6e7e-4771-a198-e1c1bcebefe6 2020-12-24 02:34:58.702681 49953 3901 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1247\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-12-23\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1132\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 f694fb46-248a-48b4-90c5-3f808376bc10 2020-12-24 02:39:37.749868 49954 2571 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 8 \N 189.186.113.193 f694fb46-248a-48b4-90c5-3f808376bc10 2020-12-24 02:39:37.779048 49955 3901 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 8b07a6f5-e230-4b42-9b81-2ead94c374c2 2020-12-24 02:39:47.541316 49956 5132 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1247\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 3901\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1132\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1132 189.186.113.193 8b07a6f5-e230-4b42-9b81-2ead94c374c2 2020-12-24 02:39:47.569554 49957 1273 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 1248\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.9779E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.65E4\ncash_fund: !ruby/object:BigDecimal 18:0.637E3\nphysical_cash: !ruby/object:BigDecimal 18:0.7137E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 0025e5cb-880a-40ac-ad5c-b80421c7ad59 2020-12-24 02:50:23.064579 49958 1248 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 0025e5cb-880a-40ac-ad5c-b80421c7ad59 2020-12-24 02:50:23.08875 49959 1249 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.637E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 637.0 187.149.121.224 da124ab9-e297-4d59-a913-7128317cc209 2020-12-24 02:50:52.895719 49960 1274 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1247\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.4137E5\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.29105E5\ncash_fund: !ruby/object:BigDecimal 18:0.956E3\nphysical_cash: !ruby/object:BigDecimal 18:0.30061E5\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.113.193 4b9fe5ab-418e-4e4e-b9ff-e3d2c1d24c8b 2020-12-24 03:19:19.40945 49961 1247 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.113.193 4b9fe5ab-418e-4e4e-b9ff-e3d2c1d24c8b 2020-12-24 03:19:19.42293 49962 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 02:17:19.660573000 Z\n- &1 2020-12-24 02:33:25.619682000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 17:54:40.165765312 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535926\n mask_addr: 4294967295\nsign_in_count:\n- 2221\n- 2222\n 4444 \N 177.228.103.118 272533ef-b5ed-4533-863a-3c161c64a47f 2020-12-24 17:54:40.194292 49963 4 User \N \N 4 User \N update ---\nunique_session_id:\n- p-j2aSxLTnNsqYXuBXE_\n- dVkrqyAs3Hz2b5z1vwmN\n 4445 \N 177.228.103.118 272533ef-b5ed-4533-863a-3c161c64a47f 2020-12-24 17:54:40.220269 49964 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-21 17:50:37.870720000 Z\n- &1 2020-12-22 18:07:02.229319000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 18:00:15.529485627 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\nsign_in_count:\n- 372\n- 373\n 747 \N 189.186.113.193 b35ccc36-6a62-4a44-82e3-eee65b6df71a 2020-12-24 18:00:15.536686 49965 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 8sYe2ckEpiRtxcBcVedh\n- TWj1F55zL-PvG8Etsoes\n 748 \N 189.186.113.193 b35ccc36-6a62-4a44-82e3-eee65b6df71a 2020-12-24 18:00:15.553874 49966 1250 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.956E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 956.0 189.186.113.193 048c83d8-f0d2-4a5a-8bbb-f0c1da6ffd9f 2020-12-24 18:00:39.407322 49967 3902 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1250\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1133\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 eefca3e9-882d-41bf-bff9-832e7142da1e 2020-12-24 18:00:49.375687 49968 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 67 \N 189.186.113.193 eefca3e9-882d-41bf-bff9-832e7142da1e 2020-12-24 18:00:49.40424 49969 3902 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 adde970f-7159-4edd-a9e3-412a058588bf 2020-12-24 18:02:05.149397 49970 5133 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 3902\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1133\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.18E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1133 189.186.113.193 adde970f-7159-4edd-a9e3-412a058588bf 2020-12-24 18:02:05.175903 49971 3903 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1250\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1134\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 394c75e1-ebb4-4f1c-91ab-920e99537115 2020-12-24 18:45:34.715014 49972 1243 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.113.193 394c75e1-ebb4-4f1c-91ab-920e99537115 2020-12-24 18:45:34.741314 49974 5134 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 3903\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1134\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1134 189.186.113.193 53e92248-52b5-4712-a01a-e4914708b73b 2020-12-24 18:45:46.360505 49975 3904 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1249\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1850\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 92b6a8a9-7c5a-4e44-845a-b515f2919f7d 2020-12-24 18:53:57.378082 49976 2625 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.121.224 92b6a8a9-7c5a-4e44-845a-b515f2919f7d 2020-12-24 18:53:57.404443 49977 3904 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 fc404305-3937-45ea-bb6f-ae018f9a456e 2020-12-24 18:54:14.543082 49978 5135 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1249\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1699E4\nmove_type: '1'\nsale_id: 3904\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1850\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.17E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1850 187.149.121.224 fc404305-3937-45ea-bb6f-ae018f9a456e 2020-12-24 18:54:14.563379 49979 2355 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.121.224 f66a9602-485d-4467-8798-f126fc2f5f49 2020-12-24 19:14:27.771345 49980 2625 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.121.224 d6211651-9088-47b0-b255-8b7bb8e5a496 2020-12-24 19:14:35.579521 49981 2355 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.121.224 efd4c885-42a8-44b3-abf5-717fe7660211 2020-12-24 19:14:40.24225 49982 2448 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 9 \N 187.149.121.224 7160f02c-a012-482d-80c7-2f4aa7ded5ea 2020-12-24 19:14:53.669831 49983 1468 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.121.224 a2a76059-31ee-4db5-a3e1-04a62fa5f012 2020-12-24 19:15:00.267732 49984 777 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-24\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.121.224 ed2a420d-33e4-4e72-ae01-890162de9aa3 2020-12-24 19:15:07.833367 49985 3905 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1249\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1851\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 b196b081-15ea-4700-8b3c-333c1cf8149c 2020-12-24 19:17:11.851822 49986 2517 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.121.224 b196b081-15ea-4700-8b3c-333c1cf8149c 2020-12-24 19:17:11.889064 49987 3905 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 2787eea5-7a49-4b3c-9e73-405753b8a7bc 2020-12-24 19:17:52.178367 49988 5136 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1249\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3905\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1851\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1851 187.149.121.224 2787eea5-7a49-4b3c-9e73-405753b8a7bc 2020-12-24 19:17:52.210912 49989 3906 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1250\namount: !ruby/object:BigDecimal 18:0.20124E3\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.208E3\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1135\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 07003f5b-fe23-4d50-a734-fe4ce4337ee9 2020-12-24 19:29:18.999605 49990 2162 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.113.193 07003f5b-fe23-4d50-a734-fe4ce4337ee9 2020-12-24 19:29:19.038862 49991 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.35E2\n- !ruby/object:BigDecimal 18:0.34E2\n 33 \N 189.186.113.193 07003f5b-fe23-4d50-a734-fe4ce4337ee9 2020-12-24 19:29:19.074022 49992 3906 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 33d0ca0d-e47a-4045-a544-519e2af8dfd3 2020-12-24 19:29:35.60268 49993 5137 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.208E3\nmove_type: '1'\nsale_id: 3906\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1135\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.42E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1135 189.186.113.193 33d0ca0d-e47a-4045-a544-519e2af8dfd3 2020-12-24 19:29:35.64785 49994 3907 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1250\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1136\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 3b1d778a-14c4-4d8a-a355-e79c5a72a686 2020-12-24 19:57:14.609399 49995 2623 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.113.193 3b1d778a-14c4-4d8a-a355-e79c5a72a686 2020-12-24 19:57:14.63725 49996 3907 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 6e8c942a-a1d6-40ab-a909-a06780411b48 2020-12-24 19:57:46.320965 50108 2489 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.121.224 8c5bcc87-041a-48d1-a06e-19c742b9324e 2020-12-25 00:18:30.640522 49997 5138 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1899E4\nmove_type: '1'\nsale_id: 3907\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1136\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1136 189.186.113.193 6e8c942a-a1d6-40ab-a909-a06780411b48 2020-12-24 19:57:46.34246 49998 3908 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1250\namount: !ruby/object:BigDecimal 18:0.589E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1137\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 f9add0d1-f5fb-407a-a0a3-fff3d223d251 2020-12-24 20:06:59.160911 49999 2572 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 13 \N 189.186.113.193 f9add0d1-f5fb-407a-a0a3-fff3d223d251 2020-12-24 20:06:59.197557 50000 3908 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 a1daf571-f8b6-4737-8ddc-e0422fdd80bb 2020-12-24 20:07:39.514586 50001 5139 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.589E3\nmove_type: '1'\nsale_id: 3908\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1137\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1137 189.186.113.193 a1daf571-f8b6-4737-8ddc-e0422fdd80bb 2020-12-24 20:07:39.536453 50002 3909 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1249\namount: !ruby/object:BigDecimal 18:0.1138E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1138E4\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1852\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 d96ba977-d277-4b01-8832-7bb68d0167fa 2020-12-24 21:03:39.602419 50003 2069 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.121.224 d96ba977-d277-4b01-8832-7bb68d0167fa 2020-12-24 21:03:39.632339 50004 2226 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 38 \N 187.149.121.224 d96ba977-d277-4b01-8832-7bb68d0167fa 2020-12-24 21:03:39.654462 50005 3909 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 a577b37b-4ac2-488d-ad05-7d7cfea89fc9 2020-12-24 21:03:43.977517 50006 5140 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1249\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1138E4\nmove_type: '1'\nsale_id: 3909\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1852\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1138E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1852 187.149.121.224 a577b37b-4ac2-488d-ad05-7d7cfea89fc9 2020-12-24 21:03:43.998217 50007 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 02:33:25.619682000 Z\n- &1 2020-12-24 17:54:40.165765000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 21:16:33.982470944 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535926\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535926\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\nsign_in_count:\n- 2222\n- 2223\n 4446 \N 189.186.113.193 02023168-a415-48af-abb7-77a6a6fe469c 2020-12-24 21:16:33.991738 50008 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dVkrqyAs3Hz2b5z1vwmN\n- TNizrFqPaXb5McziZiMv\n 4447 \N 189.186.113.193 02023168-a415-48af-abb7-77a6a6fe469c 2020-12-24 21:16:34.014144 50009 3910 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1249\namount: !ruby/object:BigDecimal 18:0.1345E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1345E4\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1853\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 d159372a-f5ea-4297-bb02-83bb95e5a438 2020-12-24 21:19:26.925582 50010 1014 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.121.224 d159372a-f5ea-4297-bb02-83bb95e5a438 2020-12-24 21:19:26.95281 50011 3910 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 50efdd8a-8f97-41ca-a5b6-961567b020b2 2020-12-24 21:19:38.170846 50012 5141 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1249\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1345E4\nmove_type: '1'\nsale_id: 3910\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1853\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1345E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1853 187.149.121.224 50efdd8a-8f97-41ca-a5b6-961567b020b2 2020-12-24 21:19:38.192467 50013 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 17:54:40.165765000 Z\n- &1 2020-12-24 21:16:33.982470000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 21:19:50.057432124 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535926\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\nsign_in_count:\n- 2223\n- 2224\n 4448 \N 189.186.113.193 aa13ffec-b5c4-4995-b3e0-03336a9307ab 2020-12-24 21:19:50.067625 50014 4 User \N \N 4 User \N update ---\nunique_session_id:\n- TNizrFqPaXb5McziZiMv\n- yyMQ1tB1x16bZxKvg1ES\n 4449 \N 189.186.113.193 aa13ffec-b5c4-4995-b3e0-03336a9307ab 2020-12-24 21:19:50.091264 50015 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 18:07:02.229319000 Z\n- &1 2020-12-24 18:00:15.529485000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 21:20:41.929279200 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\nsign_in_count:\n- 373\n- 374\n 749 \N 189.186.113.193 e9284573-6a54-4678-84ed-15a59248d73f 2020-12-24 21:20:41.935611 50016 21 User \N \N 21 User \N update ---\nunique_session_id:\n- TWj1F55zL-PvG8Etsoes\n- X9VjzWHhryFyXRusecgz\n 750 \N 189.186.113.193 e9284573-6a54-4678-84ed-15a59248d73f 2020-12-24 21:20:41.960167 50109 779 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-24\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.121.224 0a5ec74b-1c73-4a97-979b-1988acade236 2020-12-25 00:18:50.588256 50017 5142 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1249\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1449E4\nmove_type: '1'\nsale_id: 3752\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1449E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1793 187.149.121.224 b3d6631f-6d21-49eb-b33b-b7441e397b40 2020-12-24 21:31:27.745877 50018 3752 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.121.224 52471824-e8b8-437a-bdfb-639b30f7fd6f 2020-12-24 21:31:38.395813 50019 3911 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1250\namount: !ruby/object:BigDecimal 18:0.1359E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1359E4\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1138\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 d4497453-ee63-4b7b-8677-cbd7a6fba7b5 2020-12-24 21:36:41.989693 50020 2614 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.113.193 d4497453-ee63-4b7b-8677-cbd7a6fba7b5 2020-12-24 21:36:42.023233 50021 3911 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 52c0d660-76d7-4803-af0d-4c1052c6eb3e 2020-12-24 21:36:50.766615 50022 5143 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1359E4\nmove_type: '1'\nsale_id: 3911\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1138\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1255'\n 1 movimiento de efectivo por venta con folio PV3-V-1138 189.186.113.193 52c0d660-76d7-4803-af0d-4c1052c6eb3e 2020-12-24 21:36:50.795109 50023 3912 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1250\namount: !ruby/object:BigDecimal 18:0.139E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.139E3\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1139\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 97e5c7d6-9f1e-4b67-8f85-579aa08dcd39 2020-12-24 21:43:34.033598 50024 2442 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.113.193 97e5c7d6-9f1e-4b67-8f85-579aa08dcd39 2020-12-24 21:43:34.064533 50025 3912 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 38470d46-f138-4ccd-89c4-b340525301b7 2020-12-24 21:44:07.695412 50026 5144 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.139E3\nmove_type: '1'\nsale_id: 3912\ncardnumber: 1525\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1139\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1139 189.186.113.193 38470d46-f138-4ccd-89c4-b340525301b7 2020-12-24 21:44:07.722384 50027 3911 Sale \N \N 21 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-1138 cancelada. 189.186.113.193 6bf6e6a5-318c-4afd-af10-7e29e1a8314b 2020-12-24 21:45:12.419463 50028 5143 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1250\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1359E4\nmove_type: '1'\nsale_id: 3911\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1138\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1255'\n 2 \N 189.186.113.193 6bf6e6a5-318c-4afd-af10-7e29e1a8314b 2020-12-24 21:45:12.446994 50029 2614 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.113.193 6bf6e6a5-318c-4afd-af10-7e29e1a8314b 2020-12-24 21:45:12.47821 50030 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 21:16:33.982470000 Z\n- &1 2020-12-24 21:19:50.057432000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 21:46:05.656797783 Z\nsign_in_count:\n- 2224\n- 2225\n 4450 \N 189.186.113.193 a695b320-375c-4d19-a38e-d6ea43f11942 2020-12-24 21:46:05.663051 50031 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yyMQ1tB1x16bZxKvg1ES\n- ZmwRCb1JbHds1r2YYTdV\n 4451 \N 189.186.113.193 a695b320-375c-4d19-a38e-d6ea43f11942 2020-12-24 21:46:05.685647 50032 3913 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1250\namount: !ruby/object:BigDecimal 18:0.1359E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1359E4\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1140\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 1e49971c-3e29-481b-bdad-7a143a2010c2 2020-12-24 21:48:57.643121 50033 2614 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.113.193 1e49971c-3e29-481b-bdad-7a143a2010c2 2020-12-24 21:48:57.668635 50034 3913 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 2f4783db-02a1-4daf-b9b7-1dfe0ec6ab8d 2020-12-24 21:50:49.514401 50035 5145 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1359E4\nmove_type: '1'\nsale_id: 3913\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1140\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '2456'\n 1 movimiento de efectivo por venta con folio PV3-V-1140 189.186.113.193 2f4783db-02a1-4daf-b9b7-1dfe0ec6ab8d 2020-12-24 21:50:49.534145 50036 3914 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1250\namount: !ruby/object:BigDecimal 18:0.119E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.119E3\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1141\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 162b9b7d-38af-414f-a6ed-3be7a7d66325 2020-12-24 22:01:55.715677 50037 2080 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.113.193 162b9b7d-38af-414f-a6ed-3be7a7d66325 2020-12-24 22:01:55.749014 50038 3914 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 cfe23f3d-f669-4b70-9758-e739de8166ef 2020-12-24 22:02:06.201462 50110 484 Customer \N \N 2 User \N create ---\nnick_name: MONTSE BARRIOS\nphone: ''\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.1E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MONTSE BARRIOS fue registrado. 187.149.121.224 24726cb9-09a1-4568-986c-3fbb53f99997 2020-12-25 00:53:54.339582 50039 5146 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.119E3\nmove_type: '1'\nsale_id: 3914\ncardnumber: 4455\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1141\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1141 189.186.113.193 cfe23f3d-f669-4b70-9758-e739de8166ef 2020-12-24 22:02:06.228271 50040 3915 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1250\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1142\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 73fbedee-5ba2-4ad8-9da2-a2dd9c16006a 2020-12-24 22:22:26.424759 50041 2601 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.113.193 73fbedee-5ba2-4ad8-9da2-a2dd9c16006a 2020-12-24 22:22:26.451532 50042 3915 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 14454368-006c-4dda-8966-604254e6bf18 2020-12-24 22:24:08.138087 50043 5147 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 3915\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1142\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1142 189.186.113.193 14454368-006c-4dda-8966-604254e6bf18 2020-12-24 22:24:08.161071 50044 3916 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1250\namount: !ruby/object:BigDecimal 18:0.369E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.369E3\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1143\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 132fafaf-28ea-475b-a103-e369107163f8 2020-12-24 22:26:56.632491 50045 2116 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.113.193 132fafaf-28ea-475b-a103-e369107163f8 2020-12-24 22:26:56.661147 50046 3916 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 ab0aeacf-c56a-4ced-a87d-ce66342fdcdb 2020-12-24 22:27:07.447561 50047 5148 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.369E3\nmove_type: '1'\nsale_id: 3916\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1143\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1143 189.186.113.193 ab0aeacf-c56a-4ced-a87d-ce66342fdcdb 2020-12-24 22:27:07.475181 50048 3917 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1250\namount: !ruby/object:BigDecimal 18:0.189E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.189E3\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1144\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 facdc55a-68d1-40da-92af-6658d09a1afb 2020-12-24 22:28:13.903138 50049 2088 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.113.193 facdc55a-68d1-40da-92af-6658d09a1afb 2020-12-24 22:28:13.93185 50050 3917 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 ce6ee179-41a4-440f-9364-68728a519c01 2020-12-24 22:28:18.142226 50051 5149 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.189E3\nmove_type: '1'\nsale_id: 3917\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1144\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.189E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1144 189.186.113.193 ce6ee179-41a4-440f-9364-68728a519c01 2020-12-24 22:28:18.168481 50052 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 21:19:50.057432000 Z\n- &1 2020-12-24 21:46:05.656797000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 22:48:38.594634888 Z\nsign_in_count:\n- 2225\n- 2226\n 4452 \N 189.186.113.193 7e4dc89d-335b-4ee3-bdd6-17c2e43f17ac 2020-12-24 22:48:38.602952 50053 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZmwRCb1JbHds1r2YYTdV\n- 2wJ4mNh-atZQyyrqswNj\n 4453 \N 189.186.113.193 7e4dc89d-335b-4ee3-bdd6-17c2e43f17ac 2020-12-24 22:48:38.621584 50054 3918 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1249\namount: !ruby/object:BigDecimal 18:0.1598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1598E4\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1854\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 983dc205-c37b-4fff-a01e-32c42ee80fa2 2020-12-24 22:49:01.752799 50055 2226 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 39 \N 187.149.121.224 983dc205-c37b-4fff-a01e-32c42ee80fa2 2020-12-24 22:49:01.787653 50056 2139 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.121.224 983dc205-c37b-4fff-a01e-32c42ee80fa2 2020-12-24 22:49:01.826983 50057 778 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-24\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.113.193 9f2b03da-49cf-4904-ab86-64a186f8f27c 2020-12-24 22:49:08.523521 50058 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 02:30:50.949933000 Z\n- &1 2020-12-24 02:34:20.817802000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 22:49:37.168362278 Z\nsign_in_count:\n- 449\n- 450\n 901 \N 189.186.113.193 4e22e91c-9e8a-4707-a2c3-1a2ce64c7b37 2020-12-24 22:49:37.174085 50059 18 User \N \N 18 User \N update ---\nunique_session_id:\n- szFyJnjkcVSxT5eXFaur\n- SwUtZiESz1Ze4wA52Pte\n 902 \N 189.186.113.193 4e22e91c-9e8a-4707-a2c3-1a2ce64c7b37 2020-12-24 22:49:37.18825 50060 3918 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 a82b06b8-9921-4046-b54d-94a6ec62b630 2020-12-24 22:49:44.357815 50111 779 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-24\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.113.193 7e3ea17f-201c-49fe-aabd-13013c1a7240 2020-12-25 01:02:20.270839 50061 5150 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1249\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1598E4\nmove_type: '1'\nsale_id: 3918\ncardnumber: 7247\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1854\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1854 187.149.121.224 a82b06b8-9921-4046-b54d-94a6ec62b630 2020-12-24 22:49:44.380905 50062 777 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-24\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.113.193 434ce91f-2cbd-4378-a26f-3f6082a216e5 2020-12-24 22:49:53.569364 50063 2341 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.6E1\n 21 \N 189.186.113.193 434ce91f-2cbd-4378-a26f-3f6082a216e5 2020-12-24 22:49:53.589813 50064 2379 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 189.186.113.193 434ce91f-2cbd-4378-a26f-3f6082a216e5 2020-12-24 22:49:53.612084 50065 2378 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.11E2\n- !ruby/object:BigDecimal 18:0.12E2\n 9 \N 189.186.113.193 434ce91f-2cbd-4378-a26f-3f6082a216e5 2020-12-24 22:49:53.633441 50066 1094 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.113.193 434ce91f-2cbd-4378-a26f-3f6082a216e5 2020-12-24 22:49:53.64959 50067 778 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-24\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.113.193 b599e051-7908-4fbc-96f6-3407aff10c03 2020-12-24 22:50:20.535845 50068 1110 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.113.193 b599e051-7908-4fbc-96f6-3407aff10c03 2020-12-24 22:50:20.552908 50069 3919 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1250\namount: !ruby/object:BigDecimal 18:0.1235E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.235E3\ntotal: !ruby/object:BigDecimal 18:0.1E4\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1145\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 4345bbad-167e-4584-bbe9-3e6431a697aa 2020-12-24 22:50:47.831757 50070 1110 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.113.193 4345bbad-167e-4584-bbe9-3e6431a697aa 2020-12-24 22:50:47.858161 50071 3919 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 8f4060b7-2c72-46cc-b06f-7f0ec3b10f9e 2020-12-24 22:50:52.53481 50072 5151 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 3919\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1145\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1145 189.186.113.193 8f4060b7-2c72-46cc-b06f-7f0ec3b10f9e 2020-12-24 22:50:52.565493 50073 3918 Sale \N \N 9 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-1854 cancelada. 187.149.121.224 633effc8-f745-4fcd-b300-729615d5785d 2020-12-24 22:51:37.954383 50074 5150 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 1249\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1598E4\nmove_type: '1'\nsale_id: 3918\ncardnumber: 7247\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1854\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.121.224 633effc8-f745-4fcd-b300-729615d5785d 2020-12-24 22:51:37.974555 50075 2139 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.121.224 633effc8-f745-4fcd-b300-729615d5785d 2020-12-24 22:51:37.997369 50076 2226 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 40 \N 187.149.121.224 633effc8-f745-4fcd-b300-729615d5785d 2020-12-24 22:51:38.018606 50077 3920 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1250\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1146\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 cd924f9f-c0dc-41dc-b9f2-3b76e58081e7 2020-12-24 22:56:29.870929 50078 2341 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 22 \N 189.186.113.193 cd924f9f-c0dc-41dc-b9f2-3b76e58081e7 2020-12-24 22:56:29.901644 50079 3920 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 6c446ad8-0a6d-43e5-96ef-15c385c2f8a0 2020-12-24 22:57:10.607296 50080 5152 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3920\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1146\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1399E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1146 189.186.113.193 6c446ad8-0a6d-43e5-96ef-15c385c2f8a0 2020-12-24 22:57:10.635169 50081 3921 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1249\namount: !ruby/object:BigDecimal 18:0.1598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1598E4\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1855\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 6d8d9b73-b23c-4e6d-90d7-658fd8a869ab 2020-12-24 22:57:17.625855 50082 2226 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 41 \N 187.149.121.224 6d8d9b73-b23c-4e6d-90d7-658fd8a869ab 2020-12-24 22:57:17.657383 50083 2139 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.121.224 6d8d9b73-b23c-4e6d-90d7-658fd8a869ab 2020-12-24 22:57:17.678765 50084 3921 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 13d82a18-afaa-4c9f-aadd-f77c18b0c551 2020-12-24 22:57:21.76569 50112 2638 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 189.186.113.193 7e3ea17f-201c-49fe-aabd-13013c1a7240 2020-12-25 01:02:20.290746 50085 5153 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1249\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1598E4\nmove_type: '1'\nsale_id: 3921\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1855\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1598E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1855 187.149.121.224 13d82a18-afaa-4c9f-aadd-f77c18b0c551 2020-12-24 22:57:21.78695 50086 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 21:46:05.656797000 Z\n- &1 2020-12-24 22:48:38.594634000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 23:01:10.440329515 Z\nsign_in_count:\n- 2226\n- 2227\n 4454 \N 189.186.113.193 7a741910-e218-4a56-951a-b6350275a1d2 2020-12-24 23:01:10.447929 50087 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2wJ4mNh-atZQyyrqswNj\n- UgQxBRjk2WXWkzMqYfo2\n 4455 \N 189.186.113.193 7a741910-e218-4a56-951a-b6350275a1d2 2020-12-24 23:01:10.468394 50088 374 Expense \N \N 9 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1249\nquantity: !ruby/object:BigDecimal 18:0.1E4\nstatus: 1\nobservations: AGUINALDO MONTSE\nexpense_date: 2020-12-24\nexpense_code: PV1-E-260\n 1 Egreso por 1000.0 registrado 187.149.121.224 476491aa-e38c-44b3-8f32-800425914b01 2020-12-24 23:03:16.427859 50089 5154 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1249\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 374\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.121.224 476491aa-e38c-44b3-8f32-800425914b01 2020-12-24 23:03:16.449004 50090 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-20 01:48:48.400713000 Z\n- &1 2020-12-20 18:24:50.625248000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-24 23:07:16.195872940 Z\nsign_in_count:\n- 737\n- 738\n 1479 \N 187.149.121.224 48698e53-31bd-4e1d-bbaa-86e08e15ced3 2020-12-24 23:07:16.20363 50091 2 User \N \N 2 User \N update ---\nunique_session_id:\n- mety9oTg49DosZc_T3b4\n- mz9k7b-xVJwqMBV3GFSx\n 1480 \N 187.149.121.224 48698e53-31bd-4e1d-bbaa-86e08e15ced3 2020-12-24 23:07:16.221495 50092 2645 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 3 \N 187.149.121.224 db7557f3-40e3-49df-a0be-f1ab747af0a2 2020-12-24 23:54:52.038189 50093 2645 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.121.224 4c393b78-cf65-44b6-afb5-e4a230756c03 2020-12-24 23:54:56.53661 50094 3922 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1250\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1147\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 b0d3e8d9-fdaa-44d0-9ddd-8ab902ed8b18 2020-12-25 00:00:48.225875 50095 1981 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.113.193 b0d3e8d9-fdaa-44d0-9ddd-8ab902ed8b18 2020-12-25 00:00:48.25484 50096 3922 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 cb7d3654-b6ec-4c11-9e2d-e85d9cf5b6db 2020-12-25 00:01:07.689921 50097 5155 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 3922\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1147\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '14555'\n 1 movimiento de efectivo por venta con folio PV3-V-1147 189.186.113.193 cb7d3654-b6ec-4c11-9e2d-e85d9cf5b6db 2020-12-25 00:01:07.71718 50098 3923 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1250\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1148\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 eec45573-7df5-42e1-925a-21e93f1529e8 2020-12-25 00:09:58.890391 50099 2377 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.113.193 eec45573-7df5-42e1-925a-21e93f1529e8 2020-12-25 00:09:58.918729 50100 3923 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 1c05fa6e-6a28-425a-92fc-fb42b4d93908 2020-12-25 00:12:51.504097 50101 5156 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 3923\ncardnumber: 5225\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1148\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1148 189.186.113.193 1c05fa6e-6a28-425a-92fc-fb42b4d93908 2020-12-25 00:12:51.524643 50102 3924 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1249\namount: !ruby/object:BigDecimal 18:0.61724E3\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1856\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 73f93344-e4d4-46b0-bc84-8e0b9c323ab6 2020-12-25 00:13:13.241231 50103 735 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.24E2\n- !ruby/object:BigDecimal 18:0.22E2\n 13 \N 187.149.121.224 73f93344-e4d4-46b0-bc84-8e0b9c323ab6 2020-12-25 00:13:13.266498 50104 3924 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 af9880cc-3005-4e3a-8126-da0e5f11ba20 2020-12-25 00:13:23.12251 50105 5157 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1249\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 3924\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1856\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1856 187.149.121.224 af9880cc-3005-4e3a-8126-da0e5f11ba20 2020-12-25 00:13:23.148725 50106 2646 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.121.224 4d107c57-2567-4c4c-82eb-66a70fc9a371 2020-12-25 00:17:33.444157 50107 2561 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.121.224 6ce5cf0b-b3f6-4a9e-94d8-7971d16092a4 2020-12-25 00:17:55.125722 50115 2482 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.113.193 7e3ea17f-201c-49fe-aabd-13013c1a7240 2020-12-25 01:02:20.349632 50116 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-22 22:52:42.381938000 Z\n- &1 2020-12-23 03:07:48.990635000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-25 01:02:44.764427390 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730116\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 442\n- 443\n 886 \N 187.149.121.224 306e9a5a-b5c7-4ba2-b984-8f26bfe07475 2020-12-25 01:02:44.771385 50117 1 User \N \N 1 User \N update ---\nunique_session_id:\n- ou1AgexN9sdNDPdvcsUV\n- YK5gyGeYSiJwhQE8ts4d\n 887 \N 187.149.121.224 306e9a5a-b5c7-4ba2-b984-8f26bfe07475 2020-12-25 01:02:44.78639 50118 893 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.113.193 7ae15d72-595d-4b6d-aae7-7082cb3edaed 2020-12-25 01:02:52.340143 50119 780 Transfer \N \N 18 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-12-24\nuser_id: 18\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.113.193 f3a43261-bd52-4068-8fd0-768c8b83278d 2020-12-25 01:02:56.340376 50120 780 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-24\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.121.224 aafa37ed-b33e-4e58-b40f-68134b075226 2020-12-25 01:05:15.728277 50121 45 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.121.224 aafa37ed-b33e-4e58-b40f-68134b075226 2020-12-25 01:05:15.750257 50122 3925 Sale \N \N 2 User \N create ---\ncustomer_id: 484\nuser_id: 2\nopen_cash_register_id: 1249\namount: !ruby/object:BigDecimal 18:0.310145E4\ntax: !ruby/object:BigDecimal 18:0.9655E2\ndiscount: !ruby/object:BigDecimal 18:0.1598E4\ntotal: !ruby/object:BigDecimal 18:0.16E4\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 0\nseller_id: 1\nsale_code: PV1-V-1857\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 244c993e-a512-4789-9cd1-caf1344740fc 2020-12-25 01:05:47.486911 50123 498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.121.224 244c993e-a512-4789-9cd1-caf1344740fc 2020-12-25 01:05:47.524848 50124 45 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.121.224 244c993e-a512-4789-9cd1-caf1344740fc 2020-12-25 01:05:47.557567 50125 5158 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1249\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 3925\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.121.224 a55c5962-2414-42d2-a941-160623959700 2020-12-25 01:07:19.48709 50126 3925 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.121.224 a55c5962-2414-42d2-a941-160623959700 2020-12-25 01:07:19.520366 50127 5158 CashRegistersMove \N \N 2 User \N update --- {}\n 2 movimiento de efectivo por venta con folio PV1-V-1857 187.149.121.224 a55c5962-2414-42d2-a941-160623959700 2020-12-25 01:07:19.535407 50128 3926 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1250\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1149\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 4309e765-c45f-4bb2-af8b-2ff4d6027e9d 2020-12-25 01:12:22.472668 50129 2482 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.113.193 4309e765-c45f-4bb2-af8b-2ff4d6027e9d 2020-12-25 01:12:22.500506 50130 1275 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1249\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.8928E4\namount_out: !ruby/object:BigDecimal 18:0.1E4\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.8E4\ncash_fund: !ruby/object:BigDecimal 18:0.565E3\nphysical_cash: !ruby/object:BigDecimal 18:0.8565E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 f56f53a9-8b1f-499a-b519-2641e2927ad6 2020-12-25 01:18:09.252682 50131 1249 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 f56f53a9-8b1f-499a-b519-2641e2927ad6 2020-12-25 01:18:09.267289 50132 3926 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 746dbbdd-684f-4351-83c3-6d6008a397f5 2020-12-25 01:19:07.861219 50133 5159 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 3926\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1149\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1199E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1149 189.186.113.193 746dbbdd-684f-4351-83c3-6d6008a397f5 2020-12-25 01:19:07.884951 50134 3927 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1250\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1150\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 ea2b2b5a-9c1b-4479-b3cd-0c0accefe5c3 2020-12-25 01:24:03.19023 50135 2642 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 13 \N 189.186.113.193 ea2b2b5a-9c1b-4479-b3cd-0c0accefe5c3 2020-12-25 01:24:03.217515 50136 3927 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 baaaff52-92dd-4838-b4c9-7fda1f9b5e6f 2020-12-25 01:24:40.964506 50137 5160 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 3927\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1150\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1150 189.186.113.193 baaaff52-92dd-4838-b4c9-7fda1f9b5e6f 2020-12-25 01:24:40.986301 50159 1252 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.565E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 565.0 187.149.121.224 01dc55c7-dcfc-43a9-adce-0297905df0cd 2020-12-26 17:28:11.241754 50138 5161 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.11E4\nmove_type: '1'\nsale_id: 3737\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1031 189.186.113.193 1f091242-7f8c-44bd-b43d-565dccf195b5 2020-12-25 01:41:50.736675 50139 3737 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.113.193 f8821d5b-805d-4295-bd1b-84ac2483f6b5 2020-12-25 01:42:01.937424 50140 3928 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1250\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-12-24\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1151\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.113.193 37afa0c6-be05-42bd-b2ec-f683ab592c6f 2020-12-25 02:40:46.311439 50141 2215 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 61 \N 189.186.113.193 37afa0c6-be05-42bd-b2ec-f683ab592c6f 2020-12-25 02:40:46.343844 50142 3928 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.113.193 f6bc2aad-84e4-49cc-8d71-77412e17c8c6 2020-12-25 02:41:00.281892 50143 5162 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 3928\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1151\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1151 189.186.113.193 f6bc2aad-84e4-49cc-8d71-77412e17c8c6 2020-12-25 02:41:00.300392 50144 375 Expense \N \N 18 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1250\nquantity: !ruby/object:BigDecimal 18:0.71E3\nstatus: 1\nobservations: NAYELI\nexpense_date: 2020-12-24\nexpense_code: PV3-E-53\n 1 Egreso por 710.0 registrado 189.186.113.193 4497510b-bc8a-4411-bdef-d61eec9d8e5b 2020-12-25 02:45:25.567335 50145 5163 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1250\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.71E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 375\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.113.193 4497510b-bc8a-4411-bdef-d61eec9d8e5b 2020-12-25 02:45:25.589575 50146 1276 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1250\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.18262E5\namount_out: !ruby/object:BigDecimal 18:0.71E3\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.13E5\ncash_fund: !ruby/object:BigDecimal 18:0.893E3\nphysical_cash: !ruby/object:BigDecimal 18:0.13893E5\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.113.193 69a739bf-2126-49fe-90c6-8e39957caae8 2020-12-25 02:59:09.117635 50147 1250 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.113.193 69a739bf-2126-49fe-90c6-8e39957caae8 2020-12-25 02:59:09.132573 50148 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 22:48:38.594634000 Z\n- &1 2020-12-24 23:01:10.440329000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-25 23:41:15.221427196 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934351\n mask_addr: 4294967295\nsign_in_count:\n- 2227\n- 2228\n 4456 \N 200.68.135.143 6ca8de4d-187c-4ad3-844f-d5d5151d036d 2020-12-25 23:41:15.24969 50149 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UgQxBRjk2WXWkzMqYfo2\n- sGWVKsmwFLfBp-fxXM5j\n 4457 \N 200.68.135.143 6ca8de4d-187c-4ad3-844f-d5d5151d036d 2020-12-25 23:41:15.27523 50150 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 18:00:15.529485000 Z\n- &1 2020-12-24 21:20:41.929279000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-26 16:57:06.571984421 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112186\n mask_addr: 4294967295\nsign_in_count:\n- 374\n- 375\n 751 \N 189.186.111.250 7ebbb992-4972-42be-80b6-c12c0488dbd8 2020-12-26 16:57:06.603484 50151 21 User \N \N 21 User \N update ---\nunique_session_id:\n- X9VjzWHhryFyXRusecgz\n- yjniSz_R-oaW9vo96Kh4\n 752 \N 189.186.111.250 7ebbb992-4972-42be-80b6-c12c0488dbd8 2020-12-26 16:57:06.627819 50152 1251 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.893E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 893.0 189.186.111.250 e1a5b8b4-e17f-4c48-a4b3-b5ac9b7111a6 2020-12-26 16:57:22.055741 50153 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 23:01:10.440329000 Z\n- &1 2020-12-25 23:41:15.221427000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-26 17:04:05.726634543 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934351\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934351\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535342\n mask_addr: 4294967295\nsign_in_count:\n- 2228\n- 2229\n 4458 \N 177.228.101.46 cd5aaa10-9fc5-4fab-bb93-0eb0ca48c965 2020-12-26 17:04:05.73505 50154 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sGWVKsmwFLfBp-fxXM5j\n- QaGRV9nP-Dpe23B9TZ6p\n 4459 \N 177.228.101.46 cd5aaa10-9fc5-4fab-bb93-0eb0ca48c965 2020-12-26 17:04:05.760995 50155 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-23 03:07:48.990635000 Z\n- &1 2020-12-25 01:02:44.764427000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-26 17:24:29.543259421 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3383730116\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 443\n- 444\n 888 \N 187.149.121.224 6e69b86e-2cd4-4806-b2fd-7a5c6543943f 2020-12-26 17:24:29.550353 50156 1 User \N \N 1 User \N update ---\nunique_session_id:\n- YK5gyGeYSiJwhQE8ts4d\n- thVasz4yb1mKvXXzS2Re\n 889 \N 187.149.121.224 6e69b86e-2cd4-4806-b2fd-7a5c6543943f 2020-12-26 17:24:29.567129 50157 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 00:41:20.037362000 Z\n- &1 2020-12-24 01:12:26.796278000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-26 17:26:58.035464954 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 218\n- 219\n 438 \N 187.149.121.224 5e62ff4b-b817-4d41-b2e4-7417c0f8d23c 2020-12-26 17:26:58.045481 50158 9 User \N \N 9 User \N update ---\nunique_session_id:\n- NUR2ieXgqKmBadDDBJsy\n- SKMPnun3yF3zGNz4UsBj\n 439 \N 187.149.121.224 5e62ff4b-b817-4d41-b2e4-7417c0f8d23c 2020-12-26 17:26:58.06764 50208 3934 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.250 7bcee085-7494-474d-91ec-9d2d150b48b6 2020-12-27 01:06:05.532256 50160 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-20 18:24:50.625248000 Z\n- &1 2020-12-24 23:07:16.195872000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-26 17:28:40.184864945 Z\nsign_in_count:\n- 738\n- 739\n 1481 \N 187.149.121.224 89788e2c-24db-4f43-a9d6-53eae932854f 2020-12-26 17:28:40.191619 50161 2 User \N \N 2 User \N update ---\nunique_session_id:\n- mz9k7b-xVJwqMBV3GFSx\n- Bc4BHizJRbtWzNKGs58V\n 1482 \N 187.149.121.224 89788e2c-24db-4f43-a9d6-53eae932854f 2020-12-26 17:28:40.207367 50162 42 ProductsReturn \N \N 2 User \N create ---\nsale_id: 3887\nuser_id: 2\nreturn_code: PV1-D-18\npointsale_id: 1\nnew_amount: !ruby/object:BigDecimal 18:0.799E3\nreturned_amount: !ruby/object:BigDecimal 18:0.669E3\ndifference_amount: !ruby/object:BigDecimal 18:0.13E3\nis_money_returned: false\n 1 devolución PV1-D-18 creada. 187.149.121.224 df1e86ef-678f-4f97-9849-bd07497da049 2020-12-26 17:44:22.835237 50163 1636 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 187.149.121.224 df1e86ef-678f-4f97-9849-bd07497da049 2020-12-26 17:44:22.868668 50164 2520 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.121.224 df1e86ef-678f-4f97-9849-bd07497da049 2020-12-26 17:44:22.895864 50165 5164 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1252\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.13E3\nmove_type: '1'\nsale_id: 3887\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.37E3\nproducts_return_id: 42\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV1-D-18 187.149.121.224 f83b5e96-f7b7-4c66-a8c1-a9ede71eb40f 2020-12-26 17:44:32.639727 50166 3929 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1251\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2020-12-26\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1152\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.250 3b0a5200-ec54-47c0-b804-4f813a89ffcf 2020-12-26 18:28:52.143899 50167 2379 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.111.250 3b0a5200-ec54-47c0-b804-4f813a89ffcf 2020-12-26 18:28:52.178316 50168 3929 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.250 eb1b1aa8-85f2-4e6c-988c-673cfa6b7a36 2020-12-26 18:31:27.175981 50169 5165 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1251\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1699E4\nmove_type: '1'\nsale_id: 3929\ncardnumber: 2553\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1152\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1152 189.186.111.250 eb1b1aa8-85f2-4e6c-988c-673cfa6b7a36 2020-12-26 18:31:27.199657 50170 3930 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1251\namount: !ruby/object:BigDecimal 18:0.123448E4\ntax: !ruby/object:BigDecimal 18:0.16552E3\ndiscount: !ruby/object:BigDecimal 18:0.2E3\ntotal: !ruby/object:BigDecimal 18:0.12E4\nstatus: 0\ndate_sale: 2020-12-26\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1153\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.250 30f76a50-4022-4145-b7c6-015522b09118 2020-12-26 19:42:50.068712 50171 939 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.24E2\n- !ruby/object:BigDecimal 18:0.2E2\n 16 \N 189.186.111.250 30f76a50-4022-4145-b7c6-015522b09118 2020-12-26 19:42:50.1016 50172 3930 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.250 982182fd-f794-4a29-a536-4963a6c8a119 2020-12-26 19:43:10.75266 50173 5166 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1251\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.12E4\nmove_type: '1'\nsale_id: 3930\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1153\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1153 189.186.111.250 982182fd-f794-4a29-a536-4963a6c8a119 2020-12-26 19:43:10.776109 50174 589 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 177.228.101.46 5147ca24-87fd-4ff9-bdc9-94b0ac0fcd02 2020-12-26 19:48:23.814718 50175 781 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-26\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 177.228.101.46 d38046fe-5977-403b-a6c7-a6fa240b1fbc 2020-12-26 19:48:25.280898 50176 781 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-26\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.111.250 07fc054c-f121-4a16-a558-f248b5526e34 2020-12-26 19:49:42.135876 50177 904 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.111.250 07fc054c-f121-4a16-a558-f248b5526e34 2020-12-26 19:49:42.158969 50178 3931 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1251\namount: !ruby/object:BigDecimal 18:0.186121E4\ntax: !ruby/object:BigDecimal 18:0.13779E3\ndiscount: !ruby/object:BigDecimal 18:0.1E4\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-12-26\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1154\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.250 bdc69281-8981-4c3c-92fb-6d36201ef537 2020-12-26 19:50:45.007521 50179 904 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.111.250 bdc69281-8981-4c3c-92fb-6d36201ef537 2020-12-26 19:50:45.049107 50180 3931 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.111.250 f99c2022-99b7-4c3a-b698-b4d21e5092cd 2020-12-26 19:50:56.384036 50181 5167 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1251\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 3931\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1154\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1154 189.186.111.250 f99c2022-99b7-4c3a-b698-b4d21e5092cd 2020-12-26 19:50:56.413868 50275 1255 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.26E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 260.0 189.186.57.245 2864f832-1875-48c5-9bcb-320a64bb29e4 2020-12-28 23:44:24.528628 50182 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-25 23:41:15.221427000 Z\n- &1 2020-12-26 17:04:05.726634000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-26 21:02:55.322591445 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934351\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535342\n mask_addr: 4294967295\nsign_in_count:\n- 2229\n- 2230\n 4460 \N 177.228.101.46 aeaca546-70d5-454f-9f79-a9bacd4b32e5 2020-12-26 21:02:55.331728 50183 4 User \N \N 4 User \N update ---\nunique_session_id:\n- QaGRV9nP-Dpe23B9TZ6p\n- CVR47sX5VGSs_xdftVVi\n 4461 \N 177.228.101.46 aeaca546-70d5-454f-9f79-a9bacd4b32e5 2020-12-26 21:02:55.351336 50184 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 23:07:16.195872000 Z\n- &1 2020-12-26 17:28:40.184864000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-26 21:55:29.769974183 Z\nsign_in_count:\n- 739\n- 740\n 1483 \N 187.149.121.224 5c63c7dd-fd25-4630-8abc-13fd735ddd72 2020-12-26 21:55:29.779042 50185 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Bc4BHizJRbtWzNKGs58V\n- ajvn-F4vSa4HyQPCpuHy\n 1484 \N 187.149.121.224 5c63c7dd-fd25-4630-8abc-13fd735ddd72 2020-12-26 21:55:29.797292 50186 3932 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1252\namount: !ruby/object:BigDecimal 18:0.3744E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3744E4\nstatus: 0\ndate_sale: 2020-12-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1858\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 74c8fd08-2213-4972-8f4a-53d251014e4c 2020-12-26 22:22:47.908825 50187 2634 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.121.224 74c8fd08-2213-4972-8f4a-53d251014e4c 2020-12-26 22:22:47.937793 50188 1787 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.121.224 74c8fd08-2213-4972-8f4a-53d251014e4c 2020-12-26 22:22:47.961928 50189 2383 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.121.224 74c8fd08-2213-4972-8f4a-53d251014e4c 2020-12-26 22:22:47.986246 50190 1593 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.121.224 74c8fd08-2213-4972-8f4a-53d251014e4c 2020-12-26 22:22:48.008645 50191 2129 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.121.224 74c8fd08-2213-4972-8f4a-53d251014e4c 2020-12-26 22:22:48.030772 50192 1323 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.121.224 74c8fd08-2213-4972-8f4a-53d251014e4c 2020-12-26 22:22:48.053176 50193 3932 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 721f7a84-63ff-4fc5-ba70-b7483fbe4ba2 2020-12-26 22:23:34.223004 50194 5168 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1252\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3744E4\nmove_type: '1'\nsale_id: 3932\ncardnumber: 8372\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1858\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1858 187.149.121.224 721f7a84-63ff-4fc5-ba70-b7483fbe4ba2 2020-12-26 22:23:34.244652 50195 3933 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1252\namount: !ruby/object:BigDecimal 18:0.169E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.169E3\nstatus: 0\ndate_sale: 2020-12-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1859\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 8f1f0c94-12fe-492c-b6de-a69940cac889 2020-12-26 22:26:13.495298 50196 2465 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.121.224 8f1f0c94-12fe-492c-b6de-a69940cac889 2020-12-26 22:26:13.524151 50197 3933 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 2391d0cd-bda2-48c7-ad1c-2c8ad79e2e07 2020-12-26 22:26:17.598668 50198 5169 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1252\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.169E3\nmove_type: '1'\nsale_id: 3933\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1859\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.169E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1859 187.149.121.224 2391d0cd-bda2-48c7-ad1c-2c8ad79e2e07 2020-12-26 22:26:17.620971 50199 43 ProductsReturn \N \N 2 User \N create ---\nsale_id: 3904\nuser_id: 2\nreturn_code: PV1-D-19\npointsale_id: 1\nnew_amount: !ruby/object:BigDecimal 18:0.1697E4\nreturned_amount: !ruby/object:BigDecimal 18:0.1699E4\ndifference_amount: !ruby/object:BigDecimal 18:0.0\nis_money_returned: false\n 1 devolución PV1-D-19 creada. 187.149.121.224 2ec7a194-656a-4222-baf5-0b5aeb13f38a 2020-12-26 22:33:08.745406 50200 2625 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 187.149.121.224 2ec7a194-656a-4222-baf5-0b5aeb13f38a 2020-12-26 22:33:08.781207 50201 2287 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.121.224 2ec7a194-656a-4222-baf5-0b5aeb13f38a 2020-12-26 22:33:08.809646 50202 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.34E2\n- !ruby/object:BigDecimal 18:0.32E2\n 25 \N 187.149.121.224 2ec7a194-656a-4222-baf5-0b5aeb13f38a 2020-12-26 22:33:08.8281 50203 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-26 17:04:05.726634000 Z\n- &1 2020-12-26 21:02:55.322591000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-26 23:00:43.738665889 Z\nsign_in_count:\n- 2230\n- 2231\n 4462 \N 177.228.101.46 4b80aa16-d281-40be-8dcc-19eb485d783b 2020-12-26 23:00:43.748511 50204 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CVR47sX5VGSs_xdftVVi\n- 8YR7x9z9JoxgXUnpxUGC\n 4463 \N 177.228.101.46 4b80aa16-d281-40be-8dcc-19eb485d783b 2020-12-26 23:00:43.770709 50205 3934 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1251\namount: !ruby/object:BigDecimal 18:0.1718E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1718E4\nstatus: 0\ndate_sale: 2020-12-26\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1155\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.111.250 b7f76a20-1075-44f0-b384-a28010c32830 2020-12-27 01:05:35.201766 50206 2577 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.111.250 b7f76a20-1075-44f0-b384-a28010c32830 2020-12-27 01:05:35.229909 50207 2166 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.111.250 b7f76a20-1075-44f0-b384-a28010c32830 2020-12-27 01:05:35.253874 50209 5170 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1251\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1718E4\nmove_type: '1'\nsale_id: 3934\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1155\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.282E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1155 189.186.111.250 7bcee085-7494-474d-91ec-9d2d150b48b6 2020-12-27 01:06:05.567134 50210 1277 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1252\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.4043E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.864E3\nphysical_cash: !ruby/object:BigDecimal 18:0.864E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 2bd9f308-49ad-49e5-b1d7-80d69c5746eb 2020-12-27 01:47:17.066784 50211 1252 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 2bd9f308-49ad-49e5-b1d7-80d69c5746eb 2020-12-27 01:47:17.08776 50212 376 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1251\nquantity: !ruby/object:BigDecimal 18:0.105E4\nstatus: 1\nobservations: SUELDO NAYELI\nexpense_date: 2020-12-26\nexpense_code: PV3-E-54\n 1 Egreso por 1050.0 registrado 189.186.111.250 7c64ebf1-67f1-4e6d-b7d2-f1ee51d11efe 2020-12-27 02:48:20.295507 50213 5171 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1251\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.105E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 376\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.111.250 7c64ebf1-67f1-4e6d-b7d2-f1ee51d11efe 2020-12-27 02:48:20.319556 50214 1278 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1251\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.5616E4\namount_out: !ruby/object:BigDecimal 18:0.105E4\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.35E4\ncash_fund: !ruby/object:BigDecimal 18:0.26E3\nphysical_cash: !ruby/object:BigDecimal 18:0.376E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.111.250 8eb3f48f-5cbf-4174-9443-aa146fa8088b 2020-12-27 02:56:02.951422 50215 1251 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.111.250 8eb3f48f-5cbf-4174-9443-aa146fa8088b 2020-12-27 02:56:02.970428 50216 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-26 21:02:55.322591000 Z\n- &1 2020-12-26 23:00:43.738665000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-27 18:19:24.730924857 Z\nsign_in_count:\n- 2231\n- 2232\n 4464 \N 177.228.101.46 22619afc-0817-456a-8e40-2a00b2b77d5b 2020-12-27 18:19:24.750407 50217 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 8YR7x9z9JoxgXUnpxUGC\n- 5xEe26HkA2KXssyrmKLC\n 4465 \N 177.228.101.46 22619afc-0817-456a-8e40-2a00b2b77d5b 2020-12-27 18:19:24.775428 50218 1253 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.864E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 864.0 187.149.121.224 4c653db0-f915-44dc-aeb6-c313ef59ce32 2020-12-27 18:26:30.793752 50219 1279 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1253\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.864E3\nphysical_cash: !ruby/object:BigDecimal 18:0.864E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 d97a4d27-1667-4a5f-9c39-5dd6c246a1de 2020-12-27 21:49:49.197635 50220 1253 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 d97a4d27-1667-4a5f-9c39-5dd6c246a1de 2020-12-27 21:49:49.218834 50221 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-26 23:00:43.738665000 Z\n- &1 2020-12-27 18:19:24.730924000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-28 20:16:04.661639563 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535342\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938292\n mask_addr: 4294967295\nsign_in_count:\n- 2232\n- 2233\n 4466 \N 200.68.150.244 19125812-a2a3-452e-86a0-887a663df9b1 2020-12-28 20:16:04.681491 50222 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5xEe26HkA2KXssyrmKLC\n- jeu7bgyTvq53_rxRWRdz\n 4467 \N 200.68.150.244 19125812-a2a3-452e-86a0-887a663df9b1 2020-12-28 20:16:04.711791 50223 1254 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.864E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 864.0 187.149.121.224 e6abd5d5-1387-4d0f-8869-01cb6c1dc2b2 2020-12-28 20:31:32.152372 50224 3935 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1254\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.149E3\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2020-12-28\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1860\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 39623cda-ed24-4be0-be90-c508b7cd02f1 2020-12-28 20:32:00.866593 50225 2535 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.121.224 39623cda-ed24-4be0-be90-c508b7cd02f1 2020-12-28 20:32:00.897227 50226 3935 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 40a25b9f-61e3-4000-91e6-e0e528c8f05e 2020-12-28 20:32:05.821507 50227 5172 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1254\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 3935\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1860\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1860 187.149.121.224 40a25b9f-61e3-4000-91e6-e0e528c8f05e 2020-12-28 20:32:05.849643 50228 3936 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1254\namount: !ruby/object:BigDecimal 18:0.399E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.79E2\ntotal: !ruby/object:BigDecimal 18:0.32E3\nstatus: 0\ndate_sale: 2020-12-28\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1861\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 803bf5c2-7945-4a84-9e5d-6fda48d7b30d 2020-12-28 20:39:21.682524 50229 2526 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.121.224 803bf5c2-7945-4a84-9e5d-6fda48d7b30d 2020-12-28 20:39:21.711349 50230 3936 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 3d7d088e-b7ff-4989-9d3d-1fae8b257b03 2020-12-28 20:39:25.346291 50277 2375 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 39 \N 189.186.57.245 036b5967-8f10-43ce-9f2a-2e176d37a652 2020-12-28 23:44:36.883071 50231 5173 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1254\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.32E3\nmove_type: '1'\nsale_id: 3936\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1861\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.18E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1861 187.149.121.224 3d7d088e-b7ff-4989-9d3d-1fae8b257b03 2020-12-28 20:39:25.36598 50232 3937 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1254\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.113E3\ntotal: !ruby/object:BigDecimal 18:0.456E3\nstatus: 0\ndate_sale: 2020-12-28\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1862\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 3c6001a8-0e15-47d9-b2de-1b6c4c1a24ee 2020-12-28 20:53:41.145834 50233 1865 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.121.224 3c6001a8-0e15-47d9-b2de-1b6c4c1a24ee 2020-12-28 20:53:41.177129 50234 3937 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 8fae49fb-4317-4731-83f3-50622169a1bd 2020-12-28 20:54:17.59964 50235 5174 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1254\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.456E3\nmove_type: '1'\nsale_id: 3937\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1862\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.44E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1862 187.149.121.224 8fae49fb-4317-4731-83f3-50622169a1bd 2020-12-28 20:54:17.635508 50236 3938 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1254\namount: !ruby/object:BigDecimal 18:0.238E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.238E3\nstatus: 0\ndate_sale: 2020-12-28\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1863\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 8c5fd8bd-ceba-48f2-a463-4bba577f19a8 2020-12-28 21:15:21.377902 50237 2141 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.121.224 8c5fd8bd-ceba-48f2-a463-4bba577f19a8 2020-12-28 21:15:21.425329 50238 2076 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.121.224 8c5fd8bd-ceba-48f2-a463-4bba577f19a8 2020-12-28 21:15:21.459296 50239 3938 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 c9ce0637-359d-4cce-a6ab-afbb3cccdd57 2020-12-28 21:15:57.268888 50240 5175 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1254\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.238E3\nmove_type: '1'\nsale_id: 3938\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1863\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.62E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1863 187.149.121.224 c9ce0637-359d-4cce-a6ab-afbb3cccdd57 2020-12-28 21:15:57.290228 50241 3939 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1254\namount: !ruby/object:BigDecimal 18:0.468E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.468E3\nstatus: 0\ndate_sale: 2020-12-28\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1864\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 db50dce7-8b5d-4afb-950c-c108d933be66 2020-12-28 21:18:34.909467 50242 2432 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.121.224 db50dce7-8b5d-4afb-950c-c108d933be66 2020-12-28 21:18:34.935569 50243 2473 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.121.224 db50dce7-8b5d-4afb-950c-c108d933be66 2020-12-28 21:18:34.958807 50244 3939 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 0afcc45c-9cda-4f78-b74a-1f37c1d4790b 2020-12-28 21:19:35.221274 50245 5176 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1254\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.468E3\nmove_type: '1'\nsale_id: 3939\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1864\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.32E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1864 187.149.121.224 0afcc45c-9cda-4f78-b74a-1f37c1d4790b 2020-12-28 21:19:35.241861 50246 3425 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 187.149.121.224 72a8be11-9b47-464c-8066-84b371ef4643 2020-12-28 21:29:07.684119 50247 2532 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 187.149.121.224 72a8be11-9b47-464c-8066-84b371ef4643 2020-12-28 21:29:07.715374 50248 2554 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.121.224 72a8be11-9b47-464c-8066-84b371ef4643 2020-12-28 21:29:07.741314 50249 3940 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1254\namount: !ruby/object:BigDecimal 18:0.1327E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1327E4\nstatus: 0\ndate_sale: 2020-12-28\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1865\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 29c5eb0f-cb62-43b9-a431-3c86a6821c50 2020-12-28 21:31:50.988872 50250 2554 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.121.224 29c5eb0f-cb62-43b9-a431-3c86a6821c50 2020-12-28 21:31:51.016296 50251 2527 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 3 \N 187.149.121.224 29c5eb0f-cb62-43b9-a431-3c86a6821c50 2020-12-28 21:31:51.039163 50252 2077 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 187.149.121.224 29c5eb0f-cb62-43b9-a431-3c86a6821c50 2020-12-28 21:31:51.061558 50253 3940 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 ff5e5d3a-04c8-4070-8400-7639f30694f2 2020-12-28 21:31:57.196243 50276 3945 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1255\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-28\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1156\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 036b5967-8f10-43ce-9f2a-2e176d37a652 2020-12-28 23:44:36.855756 50254 5177 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1254\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1327E4\nmove_type: '1'\nsale_id: 3940\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1865\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.173E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1865 187.149.121.224 ff5e5d3a-04c8-4070-8400-7639f30694f2 2020-12-28 21:31:57.215904 50255 3941 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1254\namount: !ruby/object:BigDecimal 18:0.2988E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2988E4\nstatus: 0\ndate_sale: 2020-12-28\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1866\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 685e347d-7dab-4a8d-b633-876a310a2d74 2020-12-28 22:47:36.717705 50256 2613 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.121.224 685e347d-7dab-4a8d-b633-876a310a2d74 2020-12-28 22:47:36.753484 50257 2498 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 25 \N 187.149.121.224 685e347d-7dab-4a8d-b633-876a310a2d74 2020-12-28 22:47:36.790982 50258 3941 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 1fe2a3ee-5d76-4735-89c8-24cd11c42b7c 2020-12-28 22:48:17.904493 50259 5178 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1254\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2988E4\nmove_type: '1'\nsale_id: 3941\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1866\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E4\nchange: !ruby/object:BigDecimal 18:0.12E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1866 187.149.121.224 1fe2a3ee-5d76-4735-89c8-24cd11c42b7c 2020-12-28 22:48:17.930532 50260 3942 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1254\namount: !ruby/object:BigDecimal 18:0.299E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.299E3\nstatus: 0\ndate_sale: 2020-12-28\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1867\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 eafe95c8-690c-4c57-8c5c-16f41094634a 2020-12-28 22:54:08.949627 50261 2213 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.121.224 eafe95c8-690c-4c57-8c5c-16f41094634a 2020-12-28 22:54:08.979572 50262 3942 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 2131dd76-ef1b-4813-b8a3-3cd2dc6eb2a3 2020-12-28 22:54:14.12457 50263 5179 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1254\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.299E3\nmove_type: '1'\nsale_id: 3942\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1867\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.299E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1867 187.149.121.224 2131dd76-ef1b-4813-b8a3-3cd2dc6eb2a3 2020-12-28 22:54:14.145836 50264 485 Customer \N \N 2 User \N create ---\nnick_name: VIVIANA LUNA\nphone: "(222) 528-7841"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente VIVIANA LUNA fue registrado. 187.149.121.224 8f976bab-9587-4753-95fa-55ca7f0c9f51 2020-12-28 23:11:24.678623 50265 3943 Sale \N \N 2 User \N create ---\ncustomer_id: 485\nuser_id: 2\nopen_cash_register_id: 1254\namount: !ruby/object:BigDecimal 18:0.1196E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.119E3\ntotal: !ruby/object:BigDecimal 18:0.1077E4\nstatus: 0\ndate_sale: 2020-12-28\nsaletype: 2\nseller_id: 16\nsale_code: PV1-V-1868\nexpiration_date: 2021-02-01\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 1dd4dab1-31f1-4c31-91e2-8e6d8f30cdf5 2020-12-28 23:11:46.306139 50266 2610 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.121.224 1dd4dab1-31f1-4c31-91e2-8e6d8f30cdf5 2020-12-28 23:11:46.344277 50267 5180 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1254\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3943\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1868\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1868 187.149.121.224 b12fcfcd-efa8-4367-91e5-d0f224435f77 2020-12-28 23:11:55.758535 50268 3943 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.121.224 8c3f68d5-5516-4f0b-b500-15ad1c45bc3a 2020-12-28 23:11:58.171394 50269 3944 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1254\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-12-28\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1869\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 f2a76e41-7008-4ea4-a81a-18e16e5efd0d 2020-12-28 23:40:10.237565 50270 790 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 17 \N 187.149.121.224 f2a76e41-7008-4ea4-a81a-18e16e5efd0d 2020-12-28 23:40:10.263914 50271 3944 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 c6330a22-731a-4566-8504-fe284e88ff9d 2020-12-28 23:41:18.891668 50272 5181 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1254\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3944\ncardnumber: 1715\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1869\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1869 187.149.121.224 c6330a22-731a-4566-8504-fe284e88ff9d 2020-12-28 23:41:18.914632 50273 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 21:20:41.929279000 Z\n- &1 2020-12-26 16:57:06.571984000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-28 23:43:46.551627551 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112186\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112186\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098357\n mask_addr: 4294967295\nsign_in_count:\n- 375\n- 376\n 753 \N 189.186.57.245 068f66d5-3b75-4b62-b977-1efc26501456 2020-12-28 23:43:46.560885 50274 21 User \N \N 21 User \N update ---\nunique_session_id:\n- yjniSz_R-oaW9vo96Kh4\n- jSYx3srdqs5JFK1rFwrU\n 754 \N 189.186.57.245 068f66d5-3b75-4b62-b977-1efc26501456 2020-12-28 23:43:46.578189 50279 5182 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1255\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 3945\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1156\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1156 189.186.57.245 13d2cc63-8bb4-4f0b-b9d8-0cea8f7c4f83 2020-12-28 23:45:33.094614 50280 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-27 18:19:24.730924000 Z\n- &1 2020-12-28 20:16:04.661639000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-29 00:22:09.414951111 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535342\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938292\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938292\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 2233\n- 2234\n 4468 \N 187.149.121.224 5af80af1-4e5e-4db0-9c2c-aa96723a7e45 2020-12-29 00:22:09.427451 50281 4 User \N \N 4 User \N update ---\nunique_session_id:\n- jeu7bgyTvq53_rxRWRdz\n- 5vrCPuTzvYCkDx1iZHva\n 4469 \N 187.149.121.224 5af80af1-4e5e-4db0-9c2c-aa96723a7e45 2020-12-29 00:22:09.455813 50282 2506 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 21 \N 189.186.57.245 073a22c9-078a-405e-81b8-6a63fb85287a 2020-12-29 00:24:02.215351 50283 782 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-12-28\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.57.245 8ffe2459-6b8f-4530-bad2-d6dbe1a76674 2020-12-29 00:24:23.257608 50284 1060 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.121.224 01420482-8026-4be0-9568-1bf297aa7ac0 2020-12-29 00:25:13.513347 50285 783 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-28\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.121.224 1adacd90-004e-4bd5-bf38-ecda0602105f 2020-12-29 00:25:45.054286 50286 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-28 20:16:04.661639000 Z\n- &1 2020-12-29 00:22:09.414951000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-29 00:26:20.744357599 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938292\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938292\n mask_addr: 4294967295\nsign_in_count:\n- 2234\n- 2235\n 4470 \N 200.68.150.244 d35fbef4-bc58-4201-b397-41da74ec066b 2020-12-29 00:26:20.753366 50287 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5vrCPuTzvYCkDx1iZHva\n- qzqFbN4wzJrH2FwPosGv\n 4471 \N 200.68.150.244 d35fbef4-bc58-4201-b397-41da74ec066b 2020-12-29 00:26:20.773994 50288 783 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-28\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.57.245 183a91f8-d538-4f00-aed0-d194880b3ad9 2020-12-29 00:26:25.636076 50289 2665 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 733\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.57.245 183a91f8-d538-4f00-aed0-d194880b3ad9 2020-12-29 00:26:25.656748 50290 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 01:12:26.796278000 Z\n- &1 2020-12-26 17:26:58.035464000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-29 00:26:48.454912334 Z\nsign_in_count:\n- 219\n- 220\n 440 \N 187.149.121.224 6257298f-5ed5-4dac-9850-b4912cba92b2 2020-12-29 00:26:48.461009 50291 9 User \N \N 9 User \N update ---\nunique_session_id:\n- SKMPnun3yF3zGNz4UsBj\n- 19xRzt1idyMrWahWnjLf\n 441 \N 187.149.121.224 6257298f-5ed5-4dac-9850-b4912cba92b2 2020-12-29 00:26:48.475629 50292 782 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-28\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.121.224 a7e40a36-4ea7-449d-a5bb-0f3b5efe8a01 2020-12-29 00:27:34.464488 50293 2498 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 26 \N 187.149.121.224 a7e40a36-4ea7-449d-a5bb-0f3b5efe8a01 2020-12-29 00:27:34.482376 50294 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-29 00:22:09.414951000 Z\n- &1 2020-12-29 00:26:20.744357000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-29 00:28:32.008791935 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938292\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938292\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 2235\n- 2236\n 4472 \N 187.149.121.224 78bc16df-57a7-4f6b-b6f4-9e8fe78373f8 2020-12-29 00:28:32.016997 50295 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qzqFbN4wzJrH2FwPosGv\n- P9HMeRbEo8zjZJH9QBWc\n 4473 \N 187.149.121.224 78bc16df-57a7-4f6b-b6f4-9e8fe78373f8 2020-12-29 00:28:32.035063 50296 3946 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1255\namount: !ruby/object:BigDecimal 18:0.589E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2020-12-28\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1157\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 e0834985-5d97-4ce8-bd00-3dd1c845e50e 2020-12-29 00:28:54.515211 50297 2665 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.57.245 e0834985-5d97-4ce8-bd00-3dd1c845e50e 2020-12-29 00:28:54.542697 50298 3946 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.57.245 4d169397-bad7-456a-b1ad-eaf6002f7bc3 2020-12-29 00:29:12.517934 50299 5183 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1255\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.589E3\nmove_type: '1'\nsale_id: 3946\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1157\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.589E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1157 189.186.57.245 4d169397-bad7-456a-b1ad-eaf6002f7bc3 2020-12-29 00:29:12.545401 50300 3947 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1255\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-12-28\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1158\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 88269ac3-db8a-45ad-98d4-ae355e46d6a2 2020-12-29 01:09:37.415601 50301 993 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.57.245 88269ac3-db8a-45ad-98d4-ae355e46d6a2 2020-12-29 01:09:37.445539 50302 3947 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.57.245 8af47677-e504-447f-bbd7-f5ae1213e525 2020-12-29 01:18:36.379949 50303 5184 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1255\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 3947\ncardnumber: 1245\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1158\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1158 189.186.57.245 8af47677-e504-447f-bbd7-f5ae1213e525 2020-12-29 01:18:36.404395 50304 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 02:34:20.817802000 Z\n- &1 2020-12-24 22:49:37.168362000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-29 01:19:16.592265375 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 450\n- 451\n 903 \N 187.149.121.224 e2036a37-2d75-43fc-8ee3-f3e12c27bd4c 2020-12-29 01:19:16.599797 50305 18 User \N \N 18 User \N update ---\nunique_session_id:\n- SwUtZiESz1Ze4wA52Pte\n- sKyYfnzsLcmscPc5Es-2\n 904 \N 187.149.121.224 e2036a37-2d75-43fc-8ee3-f3e12c27bd4c 2020-12-29 01:19:16.616076 50306 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-29 00:26:20.744357000 Z\n- &1 2020-12-29 00:28:32.008791000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-29 01:24:17.988783771 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938292\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 2236\n- 2237\n 4474 \N 187.149.121.224 434b7398-afeb-4c7f-b19c-dfb42e309601 2020-12-29 01:24:17.997762 50307 4 User \N \N 4 User \N update ---\nunique_session_id:\n- P9HMeRbEo8zjZJH9QBWc\n- d3YBS9zjJpiA8y8xwo-C\n 4475 \N 187.149.121.224 434b7398-afeb-4c7f-b19c-dfb42e309601 2020-12-29 01:24:18.016678 50308 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-24 22:49:37.168362000 Z\n- &1 2020-12-29 01:19:16.592265000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-29 01:26:10.062814392 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112641\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 451\n- 452\n 905 \N 187.149.121.224 57d51927-93a3-4c2e-8496-182138a64e15 2020-12-29 01:26:10.072928 50309 18 User \N \N 18 User \N update ---\nunique_session_id:\n- sKyYfnzsLcmscPc5Es-2\n- A1zPaQStJxzzANXnQegS\n 906 \N 187.149.121.224 57d51927-93a3-4c2e-8496-182138a64e15 2020-12-29 01:26:10.09701 50310 3948 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1255\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2020-12-28\nsaletype: 1\nseller_id: 24\nsale_code: PV3-V-1159\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 d1a7bfee-01c2-49f4-9769-a645c2b5eafc 2020-12-29 01:26:35.423126 50311 2618 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.121.224 d1a7bfee-01c2-49f4-9769-a645c2b5eafc 2020-12-29 01:26:35.453664 50312 3948 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 77460028-5160-4529-bdbc-0f29f8e20cf2 2020-12-29 01:26:50.436802 50313 5185 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1255\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 3948\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1159\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '15225'\n 1 movimiento de efectivo por venta con folio PV3-V-1159 187.149.121.224 77460028-5160-4529-bdbc-0f29f8e20cf2 2020-12-29 01:26:50.466499 50314 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-29 00:28:32.008791000 Z\n- &1 2020-12-29 01:24:17.988783000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-29 01:32:40.527031268 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938292\n mask_addr: 4294967295\nsign_in_count:\n- 2237\n- 2238\n 4476 \N 200.68.150.244 6d05f4b3-aa55-4b9b-8047-f212021a3c9a 2020-12-29 01:32:40.534558 50315 4 User \N \N 4 User \N update ---\nunique_session_id:\n- d3YBS9zjJpiA8y8xwo-C\n- 1vSrr32G_boHJRzEKYrv\n 4477 \N 200.68.150.244 6d05f4b3-aa55-4b9b-8047-f212021a3c9a 2020-12-29 01:32:40.559174 50316 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-26 17:26:58.035464000 Z\n- &1 2020-12-29 00:26:48.454912000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-29 01:45:15.551343201 Z\nsign_in_count:\n- 220\n- 221\n 442 \N 187.149.121.224 a6a2879b-dd1b-4f3b-8c67-a1f07bcaf9c2 2020-12-29 01:45:15.559684 50317 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 19xRzt1idyMrWahWnjLf\n- "-idgBs3sPNtnfxfoAN36"\n 443 \N 187.149.121.224 a6a2879b-dd1b-4f3b-8c67-a1f07bcaf9c2 2020-12-29 01:45:15.575559 50318 1280 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 1254\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.7895E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.738E4\ncash_fund: !ruby/object:BigDecimal 18:0.68E3\nphysical_cash: !ruby/object:BigDecimal 18:0.806E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 66ae67c6-beea-491a-93ad-470d8654fa08 2020-12-29 01:49:22.879001 50319 1254 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 66ae67c6-beea-491a-93ad-470d8654fa08 2020-12-29 01:49:22.899947 50320 3949 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1255\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-12-28\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1160\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 e93e010e-999d-4401-861c-42424fa4917b 2020-12-29 02:47:35.513102 50321 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 68 \N 189.186.57.245 e93e010e-999d-4401-861c-42424fa4917b 2020-12-29 02:47:35.545828 50322 3949 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-1160 cancelada. 189.186.57.245 a3d6d7c8-b9d7-4ce7-a5e2-d8aced149d0e 2020-12-29 02:48:07.345776 50323 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 69 \N 189.186.57.245 a3d6d7c8-b9d7-4ce7-a5e2-d8aced149d0e 2020-12-29 02:48:07.377351 50390 785 Transfer \N \N 18 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-12-29\nuser_id: 18\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.121.224 b4f3d52a-32f6-41ce-b5d5-48ec10c13d4f 2020-12-30 00:14:43.857167 50324 3950 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1255\namount: !ruby/object:BigDecimal 18:0.3498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3498E4\nstatus: 0\ndate_sale: 2020-12-28\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1161\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 94580513-4ae0-4124-a3d1-33a4bce8c5e8 2020-12-29 02:48:53.063615 50325 2368 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 70 \N 189.186.57.245 94580513-4ae0-4124-a3d1-33a4bce8c5e8 2020-12-29 02:48:53.086202 50326 2379 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.57.245 94580513-4ae0-4124-a3d1-33a4bce8c5e8 2020-12-29 02:48:53.107339 50327 3950 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.57.245 cececbd7-3ff4-4e23-be51-3c0346e63575 2020-12-29 02:49:50.100884 50328 5186 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1255\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.3498E4\nmove_type: '1'\nsale_id: 3950\ncardnumber: 4142\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1161\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1161 189.186.57.245 cececbd7-3ff4-4e23-be51-3c0346e63575 2020-12-29 02:49:50.125012 50329 1281 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1255\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.7584E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.248E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2248E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.57.245 4c34778f-5eaf-44c9-88eb-83e08e7ba6b2 2020-12-29 02:55:47.994702 50330 1255 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.57.245 4c34778f-5eaf-44c9-88eb-83e08e7ba6b2 2020-12-29 02:55:48.00926 50331 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-29 01:24:17.988783000 Z\n- &1 2020-12-29 01:32:40.527031000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-29 06:07:00.501863789 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938292\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938292\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535278\n mask_addr: 4294967295\nsign_in_count:\n- 2238\n- 2239\n 4478 \N 177.228.100.238 1e5b1ff3-38de-46a1-b7f0-3f02a78b7367 2020-12-29 06:07:00.512749 50332 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1vSrr32G_boHJRzEKYrv\n- Eq9sHovAAFqaX9Jwj6FA\n 4479 \N 177.228.100.238 1e5b1ff3-38de-46a1-b7f0-3f02a78b7367 2020-12-29 06:07:00.537638 50333 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-29 01:32:40.527031000 Z\n- &1 2020-12-29 06:07:00.501863000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-29 16:45:23.118811273 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938292\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535278\n mask_addr: 4294967295\nsign_in_count:\n- 2239\n- 2240\n 4480 \N 177.228.100.238 0f187ce4-e0be-4222-81b6-1904b15fe9b1 2020-12-29 16:45:23.160587 50334 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Eq9sHovAAFqaX9Jwj6FA\n- 1Lx9YkHZeCsuQFeF9TT_\n 4481 \N 177.228.100.238 0f187ce4-e0be-4222-81b6-1904b15fe9b1 2020-12-29 16:45:23.194093 50335 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-29 00:26:48.454912000 Z\n- &1 2020-12-29 01:45:15.551343000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-29 17:18:04.763067471 Z\nsign_in_count:\n- 221\n- 222\n 444 \N 187.149.121.224 5d5c2404-f8f2-4039-9afb-18c42e9233c4 2020-12-29 17:18:04.804845 50336 9 User \N \N 9 User \N update ---\nunique_session_id:\n- "-idgBs3sPNtnfxfoAN36"\n- 6nnZ7muWfA1b-xHCDnT8\n 445 \N 187.149.121.224 5d5c2404-f8f2-4039-9afb-18c42e9233c4 2020-12-29 17:18:04.835541 50337 1256 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.68E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 680.0 187.149.121.224 5441d428-9d68-4841-9db5-b206d713ee5d 2020-12-29 18:16:34.073302 50338 5187 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1256\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3556\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1694 187.149.121.224 b16e6454-65ed-461c-bd6d-03a2828a8b7c 2020-12-29 18:17:12.977134 50339 5188 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1256\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 3943\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1868 187.149.121.224 3be5cad2-6427-4da0-a389-e432676d4b9a 2020-12-29 19:05:14.005411 50340 5188 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 1256\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7E3\nmove_type: '1'\nsale_id: 3943\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.121.224 92aac3ae-e4a5-46aa-8280-9c4093c09544 2020-12-29 19:05:20.408054 50341 5189 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1256\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.577E3\nmove_type: '1'\nsale_id: 3943\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.123E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1868 187.149.121.224 7bbf2cb7-1dc8-4a0c-bf16-a627c3850914 2020-12-29 19:05:50.45105 50342 3943 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.121.224 15350c62-1e3d-4b7c-8541-106e631d6a66 2020-12-29 19:06:22.12917 50343 3951 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1256\namount: !ruby/object:BigDecimal 18:0.249E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.249E3\nstatus: 0\ndate_sale: 2020-12-29\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1870\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 12dbd927-6f8f-4a1c-905e-ee0bfa4518b5 2020-12-29 19:19:26.924914 50344 2156 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.121.224 12dbd927-6f8f-4a1c-905e-ee0bfa4518b5 2020-12-29 19:19:26.955379 50346 5190 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1256\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.249E3\nmove_type: '1'\nsale_id: 3951\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1870\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.249E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1870 187.149.121.224 487c342c-4963-4538-8d84-6f4fb6a03bb3 2020-12-29 19:23:13.035674 50347 5190 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 1256\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.249E3\nmove_type: '1'\nsale_id: 3951\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1870\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.249E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.121.224 5c4128d6-2078-401e-a99d-804a28024421 2020-12-29 19:23:16.670292 50348 5191 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1256\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.249E3\nmove_type: '1'\nsale_id: 3951\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1870\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.25E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1870 187.149.121.224 a8e8e660-ef68-4c03-9241-9be7611297af 2020-12-29 19:23:27.291963 50349 3952 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1256\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.499E3\ntotal: !ruby/object:BigDecimal 18:0.9E3\nstatus: 0\ndate_sale: 2020-12-29\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1871\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 c8242b7a-af1f-43ea-b94c-b2f8d38a38ad 2020-12-29 19:34:16.263935 50350 2369 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 29 \N 187.149.121.224 c8242b7a-af1f-43ea-b94c-b2f8d38a38ad 2020-12-29 19:34:16.327072 50351 3952 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 7ccf5dc6-e024-4fef-897c-c05a44c432d3 2020-12-29 19:34:24.13558 50352 5192 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1256\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.9E3\nmove_type: '1'\nsale_id: 3952\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1871\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1871 187.149.121.224 7ccf5dc6-e024-4fef-897c-c05a44c432d3 2020-12-29 19:34:24.158124 50353 3953 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1256\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-12-29\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1872\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 bdd0b398-6549-4744-a1e5-56035143e3b1 2020-12-29 21:54:27.903962 50354 2532 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.121.224 bdd0b398-6549-4744-a1e5-56035143e3b1 2020-12-29 21:54:27.936733 50355 3953 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 5a5f637f-513f-4ede-b6d6-f5f0ed9c9d04 2020-12-29 21:55:14.893515 50356 5193 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1256\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 3953\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1872\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1872 187.149.121.224 5a5f637f-513f-4ede-b6d6-f5f0ed9c9d04 2020-12-29 21:55:14.928764 50357 3954 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1256\namount: !ruby/object:BigDecimal 18:0.1578E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.178E3\ntotal: !ruby/object:BigDecimal 18:0.14E4\nstatus: 0\ndate_sale: 2020-12-29\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1873\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 77df4640-b36a-4f55-a35a-fc909e4edff1 2020-12-29 23:06:16.853467 50358 1141 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.121.224 77df4640-b36a-4f55-a35a-fc909e4edff1 2020-12-29 23:06:16.885338 50359 2535 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.121.224 77df4640-b36a-4f55-a35a-fc909e4edff1 2020-12-29 23:06:16.91626 50360 3954 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 0bdcd794-5ae6-4a7f-8a82-08711dc7c596 2020-12-29 23:06:26.445849 50361 5194 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1256\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.14E4\nmove_type: '1'\nsale_id: 3954\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1873\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1873 187.149.121.224 0bdcd794-5ae6-4a7f-8a82-08711dc7c596 2020-12-29 23:06:26.473725 50362 486 Customer \N \N 9 User \N create ---\nnick_name: 'AIME FERRO '\nphone: "(667) 323-3680"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente AIME FERRO fue registrado. 187.149.121.224 90d23293-8e05-4407-8b1c-ed7f5ffe24b3 2020-12-29 23:46:50.343882 50363 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-26 16:57:06.571984000 Z\n- &1 2020-12-28 23:43:46.551627000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-29 23:46:59.621471517 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112186\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098357\n mask_addr: 4294967295\nsign_in_count:\n- 376\n- 377\n 755 \N 189.186.57.245 ef7c78ba-7068-415c-aa11-b64da2d55246 2020-12-29 23:46:59.629311 50364 21 User \N \N 21 User \N update ---\nunique_session_id:\n- jSYx3srdqs5JFK1rFwrU\n- Xsu9W2SZij1sfS8_z8W4\n 756 \N 189.186.57.245 ef7c78ba-7068-415c-aa11-b64da2d55246 2020-12-29 23:46:59.646732 50365 1257 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.248E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 248.0 189.186.57.245 83c35785-eb7e-4670-884d-f755971da155 2020-12-29 23:47:16.211059 50366 3955 Sale \N \N 9 User \N create ---\ncustomer_id: 486\nuser_id: 9\nopen_cash_register_id: 1256\namount: !ruby/object:BigDecimal 18:0.949E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.949E3\nstatus: 0\ndate_sale: 2020-12-29\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1874\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 a7c92bb3-0010-4e86-8539-41010ab5e3b4 2020-12-29 23:47:23.47178 50367 1067 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 187.149.121.224 a7c92bb3-0010-4e86-8539-41010ab5e3b4 2020-12-29 23:47:23.500985 50368 3955 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 85a1fbd4-39e2-4d64-bce9-58135f91f038 2020-12-29 23:47:31.81021 50369 5195 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1256\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 3955\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1874\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1874 187.149.121.224 85a1fbd4-39e2-4d64-bce9-58135f91f038 2020-12-29 23:47:31.831967 50370 3956 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1257\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-12-29\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1162\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 0e07915a-5d54-4e12-bbf2-cee02a2677ba 2020-12-29 23:47:38.793481 50371 2640 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.57.245 0e07915a-5d54-4e12-bbf2-cee02a2677ba 2020-12-29 23:47:38.818385 50372 3955 Sale \N \N 9 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-1874 cancelada. 187.149.121.224 555b68d7-e679-4aa2-9119-21da8e37cd64 2020-12-29 23:47:40.074715 50373 5195 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 1256\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 3955\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1874\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.121.224 555b68d7-e679-4aa2-9119-21da8e37cd64 2020-12-29 23:47:40.097614 50374 1067 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 11 \N 187.149.121.224 555b68d7-e679-4aa2-9119-21da8e37cd64 2020-12-29 23:47:40.122212 50375 3957 Sale \N \N 9 User \N create ---\ncustomer_id: 486\nuser_id: 9\nopen_cash_register_id: 1256\namount: !ruby/object:BigDecimal 18:0.949E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.949E3\nstatus: 0\ndate_sale: 2020-12-29\nsaletype: 2\nseller_id: 16\nsale_code: PV1-V-1875\nexpiration_date: 2021-02-02\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 e5e6c63a-a69f-4e96-9df7-8ca2a643c10f 2020-12-29 23:47:59.886433 50376 1067 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 12 \N 187.149.121.224 e5e6c63a-a69f-4e96-9df7-8ca2a643c10f 2020-12-29 23:47:59.913128 50377 5196 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1256\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 3957\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1875\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1875 187.149.121.224 f804cade-bc34-4b33-9193-916cd6aeef0c 2020-12-29 23:48:09.149445 50378 3957 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.121.224 e3163652-4d6f-465d-bcc3-92cbcf7573cd 2020-12-29 23:48:11.515701 50379 3956 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.57.245 4c5f34b0-f996-4505-b7f3-acff23d6b1be 2020-12-29 23:48:51.196561 50380 5197 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1257\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 3956\ncardnumber: 2224\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1162\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1162 189.186.57.245 4c5f34b0-f996-4505-b7f3-acff23d6b1be 2020-12-29 23:48:51.216305 50381 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-29 06:07:00.501863000 Z\n- &1 2020-12-29 16:45:23.118811000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-29 23:58:34.723071104 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535278\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945922\n mask_addr: 4294967295\nsign_in_count:\n- 2240\n- 2241\n 4482 \N 200.68.180.194 12ab2868-4570-449a-b248-89dde1f3c0cb 2020-12-29 23:58:34.729245 50382 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1Lx9YkHZeCsuQFeF9TT_\n- dEKa63RmA1VrBVb8FdUE\n 4483 \N 200.68.180.194 12ab2868-4570-449a-b248-89dde1f3c0cb 2020-12-29 23:58:34.746123 50383 2566 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 189.186.57.245 398a4f69-1c24-43e6-a6f6-17bdd406f0d8 2020-12-30 00:06:32.333434 50384 2566 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.57.245 4b70bc0f-44b0-4327-b2d0-058767c78c3e 2020-12-30 00:06:40.826522 50385 784 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-12-29\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.57.245 1a2fde68-90bd-447f-b37d-9275081abf38 2020-12-30 00:06:50.98073 50386 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-29 01:19:16.592265000 Z\n- &1 2020-12-29 01:26:10.062814000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 00:13:35.725849612 Z\nsign_in_count:\n- 452\n- 453\n 907 \N 187.149.121.224 a6983153-ca44-4b53-ad2f-2189e8cac249 2020-12-30 00:13:35.731337 50387 18 User \N \N 18 User \N update ---\nunique_session_id:\n- A1zPaQStJxzzANXnQegS\n- GfyytN8Fdyxu7Dkfu78g\n 908 \N 187.149.121.224 a6983153-ca44-4b53-ad2f-2189e8cac249 2020-12-30 00:13:35.747177 50388 1151 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.121.224 14a6f887-407f-40c8-be7e-62ca55ede30d 2020-12-30 00:14:38.0865 50389 1151 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.121.224 295a83f1-ccfc-4f86-afb9-32d3076c2550 2020-12-30 00:14:42.213664 50391 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-29 01:45:15.551343000 Z\n- &1 2020-12-29 17:18:04.763067000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 00:15:56.540869062 Z\nsign_in_count:\n- 222\n- 223\n 446 \N 187.149.121.224 76af5b27-9bf9-4785-8143-b711d0196def 2020-12-30 00:15:56.546748 50392 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 6nnZ7muWfA1b-xHCDnT8\n- LSRtxL9ch3_QPqehy27y\n 447 \N 187.149.121.224 76af5b27-9bf9-4785-8143-b711d0196def 2020-12-30 00:15:56.562111 50393 785 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-29\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.121.224 894bd0bf-a508-4082-b47d-67ba294bc4b8 2020-12-30 00:16:20.288228 50394 1155 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 11 \N 187.149.121.224 894bd0bf-a508-4082-b47d-67ba294bc4b8 2020-12-30 00:16:20.306572 50395 784 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-29\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.121.224 77331072-7eab-496d-9ef6-d2db403aede7 2020-12-30 00:16:29.740393 50396 2535 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 11 \N 187.149.121.224 77331072-7eab-496d-9ef6-d2db403aede7 2020-12-30 00:16:29.757189 50397 3958 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1256\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.239E3\ntotal: !ruby/object:BigDecimal 18:0.96E3\nstatus: 0\ndate_sale: 2020-12-29\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1876\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 2afab861-28a9-4151-b4e7-a8fdb883ad78 2020-12-30 00:17:19.916863 50398 1155 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 12 \N 187.149.121.224 2afab861-28a9-4151-b4e7-a8fdb883ad78 2020-12-30 00:17:19.942384 50399 3958 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 5663543c-9549-48bf-9dfd-b2dcdd7edad4 2020-12-30 00:17:23.811469 50400 5198 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1256\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.96E3\nmove_type: '1'\nsale_id: 3958\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1876\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.96E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1876 187.149.121.224 5663543c-9549-48bf-9dfd-b2dcdd7edad4 2020-12-30 00:17:23.842508 50401 3959 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1256\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.94E2\ntotal: !ruby/object:BigDecimal 18:0.1405E4\nstatus: 0\ndate_sale: 2020-12-29\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1877\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 f2c641ee-91ac-427c-a336-5f294fdba23a 2020-12-30 01:48:42.364709 50402 1067 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 13 \N 187.149.121.224 f2c641ee-91ac-427c-a336-5f294fdba23a 2020-12-30 01:48:42.396859 50403 1725 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.121.224 f2c641ee-91ac-427c-a336-5f294fdba23a 2020-12-30 01:48:42.439133 50404 3959 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 9a7001ab-dc57-4f0a-9d82-fa092e0c1aee 2020-12-30 01:48:47.891973 50405 5199 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1256\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1405E4\nmove_type: '1'\nsale_id: 3959\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1877\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.95E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1877 187.149.121.224 9a7001ab-dc57-4f0a-9d82-fa092e0c1aee 2020-12-30 01:48:47.925087 50406 1282 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 1256\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.719E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.71E4\ncash_fund: !ruby/object:BigDecimal 18:0.77E3\nphysical_cash: !ruby/object:BigDecimal 18:0.787E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 a94e9b9b-e48c-4c89-81f7-298510ccb566 2020-12-30 02:11:56.356154 50407 1256 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 a94e9b9b-e48c-4c89-81f7-298510ccb566 2020-12-30 02:11:56.370783 50408 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-29 16:45:23.118811000 Z\n- &1 2020-12-29 23:58:34.723071000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 02:29:46.211792169 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535278\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945922\n mask_addr: 4294967295\nsign_in_count:\n- 2241\n- 2242\n 4484 \N 200.68.180.194 ec6d1fec-9069-4417-8bc1-5cb24fcea1c6 2020-12-30 02:29:46.241222 50409 4 User \N \N 4 User \N update ---\nunique_session_id:\n- dEKa63RmA1VrBVb8FdUE\n- Dyqz_wTZ8CHyHhtM7KEQ\n 4485 \N 200.68.180.194 ec6d1fec-9069-4417-8bc1-5cb24fcea1c6 2020-12-30 02:29:46.260441 50410 1283 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1257\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.499E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.248E3\nphysical_cash: !ruby/object:BigDecimal 18:0.248E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.57.245 e2fb02be-28a6-4d25-a54a-52ddba1eaac7 2020-12-30 02:57:43.19004 50411 1257 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.57.245 e2fb02be-28a6-4d25-a54a-52ddba1eaac7 2020-12-30 02:57:43.208498 50412 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-29 01:26:10.062814000 Z\n- &1 2020-12-30 00:13:35.725849000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 17:32:08.253835532 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098357\n mask_addr: 4294967295\nsign_in_count:\n- 453\n- 454\n 909 \N 189.186.57.245 4be6ae58-2b49-4274-8743-aec07d1b46ec 2020-12-30 17:32:08.285897 50413 18 User \N \N 18 User \N update ---\nunique_session_id:\n- GfyytN8Fdyxu7Dkfu78g\n- 6DeHyaKM8sx8K443LfVS\n 910 \N 189.186.57.245 4be6ae58-2b49-4274-8743-aec07d1b46ec 2020-12-30 17:32:08.310808 50414 1258 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.248E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 248.0 189.186.57.245 9fbef62c-4fe6-4b7b-83a8-1636ededc87b 2020-12-30 17:43:49.633076 50415 487 Customer \N \N 18 User \N create ---\nnick_name: GALILEA\nphone: "(667) 333-1641"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente GALILEA fue registrado. 189.186.57.245 dbfbaede-4c9f-436b-8761-1119d26d0986 2020-12-30 17:44:56.919819 50416 3960 Sale \N \N 18 User \N create ---\ncustomer_id: 487\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.289382E4\ntax: !ruby/object:BigDecimal 18:0.25518E3\ndiscount: !ruby/object:BigDecimal 18:0.1299E4\ntotal: !ruby/object:BigDecimal 18:0.185E4\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-1163\nexpiration_date: 2021-02-03\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 e698c33e-fd4e-45fb-8570-495a8c8cbd53 2020-12-30 17:48:02.368498 50417 939 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E2\n- !ruby/object:BigDecimal 18:0.19E2\n 17 \N 189.186.57.245 e698c33e-fd4e-45fb-8570-495a8c8cbd53 2020-12-30 17:48:02.413359 50418 958 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.57.245 e698c33e-fd4e-45fb-8570-495a8c8cbd53 2020-12-30 17:48:02.449585 50419 5200 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 3960\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-1163\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1163 189.186.57.245 b84a02e3-dab1-4798-b013-6c945855ecdd 2020-12-30 17:48:50.5749 50420 5200 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 3960\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-1163\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.57.245 4c60410a-6d26-463b-b5da-6539dbe7716e 2020-12-30 17:49:18.244055 50421 5201 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '1'\nsale_id: 3960\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-1163\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1163 189.186.57.245 61f33a69-8a3b-49cc-9da6-a031b92211d5 2020-12-30 17:49:31.03309 50422 3960 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.57.245 d46743e9-e1eb-4312-8a2a-d2b6e2110def 2020-12-30 17:49:32.076 50423 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-29 17:18:04.763067000 Z\n- &1 2020-12-30 00:15:56.540869000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 17:50:26.058694328 Z\nsign_in_count:\n- 223\n- 224\n 448 \N 187.149.121.224 24152a87-8350-451a-abef-4ea251cbf762 2020-12-30 17:50:26.066305 50424 9 User \N \N 9 User \N update ---\nunique_session_id:\n- LSRtxL9ch3_QPqehy27y\n- mf1y5cC_a8L6DXyDsx_K\n 449 \N 187.149.121.224 24152a87-8350-451a-abef-4ea251cbf762 2020-12-30 17:50:26.080289 50425 1259 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.77E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 770.0 187.149.121.224 bb1a741f-5879-4b43-959b-f603ce868d62 2020-12-30 17:50:35.856295 50426 3961 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1259\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1878\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 32eef911-7c14-48da-9de8-63dd5c9ce330 2020-12-30 17:51:12.207144 50427 2226 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 42 \N 187.149.121.224 32eef911-7c14-48da-9de8-63dd5c9ce330 2020-12-30 17:51:12.23414 50428 3961 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 65486d39-1adc-4302-9e98-884bb200f672 2020-12-30 17:51:19.248604 50429 5202 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1259\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 3961\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1878\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1878 187.149.121.224 65486d39-1adc-4302-9e98-884bb200f672 2020-12-30 17:51:19.271367 50430 5202 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 1259\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '1'\nsale_id: 3961\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1878\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.121.224 874855ac-4b68-4a0d-9cf2-f7ee995110e6 2020-12-30 17:51:38.219243 50431 5203 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1259\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 3961\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1878\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1878 187.149.121.224 c023352f-72c0-41f5-8c07-195e002b97c1 2020-12-30 17:51:45.271573 50432 3962 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.579E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.579E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1164\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 2644fda1-3dd6-4f22-9161-ab42d2a30168 2020-12-30 17:54:32.309227 50433 2639 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.57.245 2644fda1-3dd6-4f22-9161-ab42d2a30168 2020-12-30 17:54:32.33585 50434 3962 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.57.245 10d0ff4c-2303-4d89-a51b-a766fed328bf 2020-12-30 17:55:05.309562 50533 2266 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 14 \N 189.186.57.245 bf11c278-7af0-4859-b061-03d4054680a7 2020-12-30 23:25:13.071966 50435 5204 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.579E3\nmove_type: '1'\nsale_id: 3962\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1164\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1164 189.186.57.245 10d0ff4c-2303-4d89-a51b-a766fed328bf 2020-12-30 17:55:05.330164 50436 3963 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1259\namount: !ruby/object:BigDecimal 18:0.1389E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1389E4\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1879\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 68c26c92-c111-4a15-937c-427b5cbbbd7b 2020-12-30 18:16:35.965778 50437 2613 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.121.224 68c26c92-c111-4a15-937c-427b5cbbbd7b 2020-12-30 18:16:35.992701 50438 3963 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 f96869f8-ba04-4a64-8c27-593cd2582e38 2020-12-30 18:16:50.015957 50439 5205 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1259\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1389E4\nmove_type: '1'\nsale_id: 3963\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1879\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.111E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1879 187.149.121.224 f96869f8-ba04-4a64-8c27-593cd2582e38 2020-12-30 18:16:50.042042 50440 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-29 23:58:34.723071000 Z\n- &1 2020-12-30 02:29:46.211792000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 18:17:12.948525383 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945922\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098357\n mask_addr: 4294967295\nsign_in_count:\n- 2242\n- 2243\n 4486 \N 189.186.57.245 0c493ea4-bab2-4711-8bbc-d650be333f7d 2020-12-30 18:17:12.959992 50441 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Dyqz_wTZ8CHyHhtM7KEQ\n- aBe6wCRnvEPj3A3wnnRx\n 4487 \N 189.186.57.245 0c493ea4-bab2-4711-8bbc-d650be333f7d 2020-12-30 18:17:12.99346 50442 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 00:13:35.725849000 Z\n- &1 2020-12-30 17:32:08.253835000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 18:27:45.097046760 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098357\n mask_addr: 4294967295\nsign_in_count:\n- 454\n- 455\n 911 \N 189.186.57.245 05f3a80f-75c8-444d-aac7-effd15a0d81c 2020-12-30 18:27:45.10471 50443 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 6DeHyaKM8sx8K443LfVS\n- 5xTK-o97AUqFpx6tT-f6\n 912 \N 189.186.57.245 05f3a80f-75c8-444d-aac7-effd15a0d81c 2020-12-30 18:27:45.121766 50444 3964 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.858E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.858E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1165\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 28c025eb-1998-4692-99a4-da27b922ce55 2020-12-30 18:29:49.339265 50445 1902 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.57.245 28c025eb-1998-4692-99a4-da27b922ce55 2020-12-30 18:29:49.367408 50446 2113 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.57.245 28c025eb-1998-4692-99a4-da27b922ce55 2020-12-30 18:29:49.392996 50447 3964 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.57.245 a7c2e670-5e55-4011-8862-dee51a78faa6 2020-12-30 18:30:01.551289 50448 5206 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.858E3\nmove_type: '1'\nsale_id: 3964\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1165\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.142E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1165 189.186.57.245 a7c2e670-5e55-4011-8862-dee51a78faa6 2020-12-30 18:30:01.583764 50449 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 02:29:46.211792000 Z\n- &1 2020-12-30 18:17:12.948525000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 18:47:23.593716159 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945922\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098357\n mask_addr: 4294967295\nsign_in_count:\n- 2243\n- 2244\n 4488 \N 189.186.57.245 241c8a22-e745-48c7-8838-b5223aee8513 2020-12-30 18:47:23.601062 50450 4 User \N \N 4 User \N update ---\nunique_session_id:\n- aBe6wCRnvEPj3A3wnnRx\n- 5-3z1Hds-6TA5HX8mYFz\n 4489 \N 189.186.57.245 241c8a22-e745-48c7-8838-b5223aee8513 2020-12-30 18:47:23.620834 50451 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 18:17:12.948525000 Z\n- &1 2020-12-30 18:47:23.593716000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 19:44:49.113152677 Z\nsign_in_count:\n- 2244\n- 2245\n 4490 \N 189.186.57.245 94a8c15b-984e-4aec-9127-4194a4eedead 2020-12-30 19:44:49.119113 50452 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 5-3z1Hds-6TA5HX8mYFz\n- mx9M1ajvTHHdVq1jbTvG\n 4491 \N 189.186.57.245 94a8c15b-984e-4aec-9127-4194a4eedead 2020-12-30 19:44:49.135945 50453 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 17:32:08.253835000 Z\n- &1 2020-12-30 18:27:45.097046000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 19:46:04.295399857 Z\nsign_in_count:\n- 455\n- 456\n 913 \N 189.186.57.245 e61efbb3-bee1-4a56-9f87-4587d8227a66 2020-12-30 19:46:04.301275 50454 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 5xTK-o97AUqFpx6tT-f6\n- X47kuaD_gcWnQT1zsVhn\n 914 \N 189.186.57.245 e61efbb3-bee1-4a56-9f87-4587d8227a66 2020-12-30 19:46:04.314571 50455 3965 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.1999E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1999E4\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1166\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 d45ce90f-227b-4e39-bdf0-38b09bd9c46b 2020-12-30 19:46:20.701898 50456 1982 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.57.245 d45ce90f-227b-4e39-bdf0-38b09bd9c46b 2020-12-30 19:46:20.727027 50457 3965 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.57.245 29167831-98f1-4794-be88-6c7fce3dcd70 2020-12-30 19:46:28.933557 50559 3979 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.57.245 4f981f6a-1b2c-4094-90bf-04d0f092a844 2020-12-30 23:39:02.402512 50458 5207 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1999E4\nmove_type: '1'\nsale_id: 3965\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1166\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '12555'\n 1 movimiento de efectivo por venta con folio PV3-V-1166 189.186.57.245 29167831-98f1-4794-be88-6c7fce3dcd70 2020-12-30 19:46:28.953853 50459 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-28 23:43:46.551627000 Z\n- &1 2020-12-29 23:46:59.621471000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 20:02:17.757992637 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098357\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 377\n- 378\n 757 \N 187.149.121.224 c2a12967-eaf5-488a-9c7f-1802c0dfcef4 2020-12-30 20:02:17.765696 50460 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Xsu9W2SZij1sfS8_z8W4\n- xVVpyeEpwuY89qNoge_y\n 758 \N 187.149.121.224 c2a12967-eaf5-488a-9c7f-1802c0dfcef4 2020-12-30 20:02:17.782692 50461 3948 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-1159 cancelada. 189.186.57.245 3ba620bf-778a-4be8-bc83-fc2aa85d73af 2020-12-30 20:29:31.281434 50462 5208 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '0'\nsale_id: 3948\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1159\nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.57.245 3ba620bf-778a-4be8-bc83-fc2aa85d73af 2020-12-30 20:29:31.308583 50463 2618 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 189.186.57.245 3ba620bf-778a-4be8-bc83-fc2aa85d73af 2020-12-30 20:29:31.35222 50464 3966 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1167\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 95ea90b3-1490-41f3-bfaf-3e8ea7a7e37c 2020-12-30 20:41:32.610429 50465 2375 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 40 \N 189.186.57.245 95ea90b3-1490-41f3-bfaf-3e8ea7a7e37c 2020-12-30 20:41:32.636127 50466 3966 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.57.245 3d6fbdf3-e2a3-4a7b-9d3f-f67d384806ba 2020-12-30 20:41:41.829343 50467 5209 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3966\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1167\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1566'\n 1 movimiento de efectivo por venta con folio PV3-V-1167 189.186.57.245 3d6fbdf3-e2a3-4a7b-9d3f-f67d384806ba 2020-12-30 20:41:41.851934 50468 3967 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.799E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.799E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1168\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 38d78435-756a-48f4-8304-598e41a9679e 2020-12-30 20:56:49.765311 50469 2583 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.57.245 38d78435-756a-48f4-8304-598e41a9679e 2020-12-30 20:56:49.79225 50470 3967 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.57.245 5e53e314-3448-4bbf-89df-8ae87375e128 2020-12-30 20:57:08.704059 50471 5210 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.799E3\nmove_type: '1'\nsale_id: 3967\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1168\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1168 189.186.57.245 5e53e314-3448-4bbf-89df-8ae87375e128 2020-12-30 20:57:08.727902 50472 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 18:47:23.593716000 Z\n- &1 2020-12-30 19:44:49.113152000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 20:59:00.819907625 Z\nsign_in_count:\n- 2245\n- 2246\n 4492 \N 189.186.57.245 d1b2ea66-6560-4805-833a-6457b506a98a 2020-12-30 20:59:00.82625 50473 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mx9M1ajvTHHdVq1jbTvG\n- r9rrC6QqDdFPopLCXGeZ\n 4493 \N 189.186.57.245 d1b2ea66-6560-4805-833a-6457b506a98a 2020-12-30 20:59:00.844627 50474 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 18:27:45.097046000 Z\n- &1 2020-12-30 19:46:04.295399000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 21:39:06.603434242 Z\nsign_in_count:\n- 456\n- 457\n 915 \N 189.186.57.245 8c4c53f6-9a17-4253-b139-7c8513ccb140 2020-12-30 21:39:06.610107 50475 18 User \N \N 18 User \N update ---\nunique_session_id:\n- X47kuaD_gcWnQT1zsVhn\n- fSNYMNWcdwS4vsdFDutH\n 916 \N 189.186.57.245 8c4c53f6-9a17-4253-b139-7c8513ccb140 2020-12-30 21:39:06.880929 50476 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 19:44:49.113152000 Z\n- &1 2020-12-30 20:59:00.819907000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 21:52:01.389537338 Z\nsign_in_count:\n- 2246\n- 2247\n 4494 \N 189.186.57.245 d3f6e669-b585-4ff4-b7af-57839b9df63e 2020-12-30 21:52:01.396101 50477 4 User \N \N 4 User \N update ---\nunique_session_id:\n- r9rrC6QqDdFPopLCXGeZ\n- xvGpz8gzAVcEYwAefrYP\n 4495 \N 189.186.57.245 d3f6e669-b585-4ff4-b7af-57839b9df63e 2020-12-30 21:52:01.412254 50478 786 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-12-30\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.57.245 1d2c393d-a9e3-41a9-a00f-8083cf93250e 2020-12-30 21:53:49.790931 50479 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 19:46:04.295399000 Z\n- &1 2020-12-30 21:39:06.603434000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 21:54:13.861500900 Z\nsign_in_count:\n- 457\n- 458\n 917 \N 189.186.57.245 ae5831ca-bd14-466b-9b50-adfea54952b1 2020-12-30 21:54:13.867472 50480 18 User \N \N 18 User \N update ---\nunique_session_id:\n- fSNYMNWcdwS4vsdFDutH\n- xjZHviSapmbzqyHA6dyF\n 918 \N 189.186.57.245 ae5831ca-bd14-466b-9b50-adfea54952b1 2020-12-30 21:54:13.882432 50481 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 20:59:00.819907000 Z\n- &1 2020-12-30 21:52:01.389537000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 21:56:59.025284201 Z\nsign_in_count:\n- 2247\n- 2248\n 4496 \N 189.186.57.245 824572cb-025a-4714-a2c3-5b4755cee420 2020-12-30 21:56:59.031733 50482 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xvGpz8gzAVcEYwAefrYP\n- 28rBm-TK_2zAosMNzyzo\n 4497 \N 189.186.57.245 824572cb-025a-4714-a2c3-5b4755cee420 2020-12-30 21:56:59.050208 50483 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 00:15:56.540869000 Z\n- &1 2020-12-30 17:50:26.058694000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 21:57:36.431690898 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098357\n mask_addr: 4294967295\nsign_in_count:\n- 224\n- 225\n 450 \N 189.186.57.245 0d12a47e-edaf-4b5c-baf2-875e7d5d8353 2020-12-30 21:57:36.438613 50484 9 User \N \N 9 User \N update ---\nunique_session_id:\n- mf1y5cC_a8L6DXyDsx_K\n- z64QsBE4vqeBhGgnFLsF\n 451 \N 189.186.57.245 0d12a47e-edaf-4b5c-baf2-875e7d5d8353 2020-12-30 21:57:36.452982 50485 786 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-30\n 2 Se dio entrada a traspaso de Almacen central a SUO 189.186.57.245 65a2e6d3-8524-4e03-b9d2-a131f445f5c2 2020-12-30 21:57:48.77904 50486 1369 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 12 \N 189.186.57.245 65a2e6d3-8524-4e03-b9d2-a131f445f5c2 2020-12-30 21:57:48.796037 50487 1369 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 13 \N 189.186.57.245 7f48d811-2ddf-4549-bc8b-ba68c06e0cec 2020-12-30 21:58:08.266834 50488 1369 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 14 \N 189.186.57.245 e88db7d7-5e4b-420a-8132-bccf15829a92 2020-12-30 21:58:12.124729 50489 787 Transfer \N \N 9 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-30\nuser_id: 9\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.57.245 aa51bd50-8099-4d0f-9826-bda64441a982 2020-12-30 21:58:12.579486 50490 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 21:39:06.603434000 Z\n- &1 2020-12-30 21:54:13.861500000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 21:58:35.949771389 Z\nsign_in_count:\n- 458\n- 459\n 919 \N 189.186.57.245 ea35c6d7-8aa2-4d77-9e68-5184720666fd 2020-12-30 21:58:35.956776 50491 18 User \N \N 18 User \N update ---\nunique_session_id:\n- xjZHviSapmbzqyHA6dyF\n- HzRmxp_cgXizUKxueR98\n 920 \N 189.186.57.245 ea35c6d7-8aa2-4d77-9e68-5184720666fd 2020-12-30 21:58:35.970852 50492 787 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-30\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.57.245 b248e120-7fe4-4a5c-a7d0-89e2dbd257b7 2020-12-30 21:58:57.224801 50493 1397 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 189.186.57.245 b248e120-7fe4-4a5c-a7d0-89e2dbd257b7 2020-12-30 21:58:57.248261 50494 3968 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1169\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 adf5b4a1-21f0-4424-8adb-9cf9e3095538 2020-12-30 21:59:12.56949 50495 1397 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 189.186.57.245 adf5b4a1-21f0-4424-8adb-9cf9e3095538 2020-12-30 21:59:12.596514 50496 3968 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-1169 cancelada. 189.186.57.245 3c0882d5-a234-4a3b-a2cd-06d9338b845f 2020-12-30 21:59:15.933675 50497 1397 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 189.186.57.245 3c0882d5-a234-4a3b-a2cd-06d9338b845f 2020-12-30 21:59:15.955901 50498 3969 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.149E3\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1170\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 bd2b6ada-b148-4959-b6f5-3c78aec470d7 2020-12-30 21:59:28.586044 50499 1397 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 10 \N 189.186.57.245 bd2b6ada-b148-4959-b6f5-3c78aec470d7 2020-12-30 21:59:28.613593 50500 3969 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.57.245 01e3d2ba-977f-4f1f-9402-d1e441f7e485 2020-12-30 21:59:32.295292 50501 5211 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 3969\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1170\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1170 189.186.57.245 01e3d2ba-977f-4f1f-9402-d1e441f7e485 2020-12-30 21:59:32.319201 50502 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 17:50:26.058694000 Z\n- &1 2020-12-30 21:57:36.431690000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 22:05:53.467479829 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098357\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098357\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 225\n- 226\n 452 \N 187.149.121.224 73939d79-3b36-4551-a55a-641c1cb06afc 2020-12-30 22:05:53.474843 50503 9 User \N \N 9 User \N update ---\nunique_session_id:\n- z64QsBE4vqeBhGgnFLsF\n- pxyZ-7oykfVqCwBRDdAy\n 453 \N 187.149.121.224 73939d79-3b36-4551-a55a-641c1cb06afc 2020-12-30 22:05:53.489888 50504 3970 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1259\namount: !ruby/object:BigDecimal 18:0.825E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.825E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1880\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 c90dc812-5fb1-415d-9f1d-9babd113d4bd 2020-12-30 22:06:37.527132 50505 2539 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.121.224 c90dc812-5fb1-415d-9f1d-9babd113d4bd 2020-12-30 22:06:37.554434 50506 3970 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 7650a8f6-9d5a-4896-8250-e87d6980cc21 2020-12-30 22:08:20.223841 50507 5212 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1259\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.825E3\nmove_type: '1'\nsale_id: 3970\ncardnumber: 2251\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1880\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1880 187.149.121.224 7650a8f6-9d5a-4896-8250-e87d6980cc21 2020-12-30 22:08:20.257302 50508 3971 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.86E2\ntotal: !ruby/object:BigDecimal 18:0.783E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1171\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 3d14979e-fb4a-452d-9733-d04efa287bc5 2020-12-30 22:18:18.095182 50509 2584 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 3 \N 189.186.57.245 3d14979e-fb4a-452d-9733-d04efa287bc5 2020-12-30 22:18:18.124226 50510 3971 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.57.245 dc2d506b-ba04-459f-b768-33155f161224 2020-12-30 22:18:21.774167 50511 5213 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.783E3\nmove_type: '1'\nsale_id: 3971\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1171\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.217E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1171 189.186.57.245 dc2d506b-ba04-459f-b768-33155f161224 2020-12-30 22:18:21.795121 50512 3972 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.74E2\ntotal: !ruby/object:BigDecimal 18:0.675E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1172\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 c1bf2ecb-67de-4831-9262-6cadaa3a6c70 2020-12-30 22:27:22.284968 50513 1397 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 11 \N 189.186.57.245 c1bf2ecb-67de-4831-9262-6cadaa3a6c70 2020-12-30 22:27:22.329636 50514 3972 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-1172 cancelada. 189.186.57.245 9ee32ac1-6545-44b3-85a7-72d6cd13933f 2020-12-30 22:30:06.800029 50515 1397 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 12 \N 189.186.57.245 9ee32ac1-6545-44b3-85a7-72d6cd13933f 2020-12-30 22:30:06.826142 50516 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 21:54:13.861500000 Z\n- &1 2020-12-30 21:58:35.949771000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 22:32:50.321904735 Z\nsign_in_count:\n- 459\n- 460\n 921 \N 189.186.57.245 cd4b14bb-3444-4e23-9d8d-ee7febdc29b3 2020-12-30 22:32:50.348953 50517 18 User \N \N 18 User \N update ---\nunique_session_id:\n- HzRmxp_cgXizUKxueR98\n- ShxBdK6WNnNxwcZhpxKx\n 922 \N 189.186.57.245 cd4b14bb-3444-4e23-9d8d-ee7febdc29b3 2020-12-30 22:32:50.368564 50518 3973 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.1607E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.204E3\ntotal: !ruby/object:BigDecimal 18:0.1403E4\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1173\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 e5458c8d-2e8c-4b49-a29b-a6a2e390db43 2020-12-30 22:33:38.786602 50519 1397 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 13 \N 189.186.57.245 e5458c8d-2e8c-4b49-a29b-a6a2e390db43 2020-12-30 22:33:38.814555 50520 1799 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.57.245 e5458c8d-2e8c-4b49-a29b-a6a2e390db43 2020-12-30 22:33:38.855276 50521 2107 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.57.245 e5458c8d-2e8c-4b49-a29b-a6a2e390db43 2020-12-30 22:33:38.878268 50522 3973 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.57.245 354599f8-9fe4-47dc-9fbe-66551684d2b8 2020-12-30 22:34:45.560484 50523 5214 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1403E4\nmove_type: '1'\nsale_id: 3973\ncardnumber: 1223\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1173\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1173 189.186.57.245 354599f8-9fe4-47dc-9fbe-66551684d2b8 2020-12-30 22:34:45.588929 50524 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 21:52:01.389537000 Z\n- &1 2020-12-30 21:56:59.025284000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 22:47:04.153176833 Z\nsign_in_count:\n- 2248\n- 2249\n 4498 \N 189.186.57.245 9ac5c164-4a2f-4a1f-9c91-83f2340cab90 2020-12-30 22:47:04.160852 50525 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 28rBm-TK_2zAosMNzyzo\n- 21CE6y5Lndytg_AHsppm\n 4499 \N 189.186.57.245 9ac5c164-4a2f-4a1f-9c91-83f2340cab90 2020-12-30 22:47:04.18424 50526 3974 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1259\namount: !ruby/object:BigDecimal 18:0.189E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.189E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1881\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 1ccc0d3e-3de2-453f-941a-7f9ea2633277 2020-12-30 23:16:45.042035 50527 2077 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.121.224 1ccc0d3e-3de2-453f-941a-7f9ea2633277 2020-12-30 23:16:45.068401 50528 3974 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 899a9c1f-9ee4-489a-841f-c334b91c1896 2020-12-30 23:16:57.420817 50529 5215 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1259\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.189E3\nmove_type: '1'\nsale_id: 3974\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1881\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1881 187.149.121.224 899a9c1f-9ee4-489a-841f-c334b91c1896 2020-12-30 23:16:57.445162 50530 3975 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1174\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 03e2e8fe-3689-47dd-80e6-58ca7f13b804 2020-12-30 23:24:43.402207 50531 2266 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 13 \N 189.186.57.245 03e2e8fe-3689-47dd-80e6-58ca7f13b804 2020-12-30 23:24:43.426247 50532 3975 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-1174 cancelada. 189.186.57.245 bf11c278-7af0-4859-b061-03d4054680a7 2020-12-30 23:25:13.048525 50534 3976 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.698E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.698E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1175\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 8c30c830-ef7c-4c03-af13-e53abb947060 2020-12-30 23:26:50.754668 50535 2266 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 15 \N 189.186.57.245 8c30c830-ef7c-4c03-af13-e53abb947060 2020-12-30 23:26:50.783301 50536 2430 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.57.245 8c30c830-ef7c-4c03-af13-e53abb947060 2020-12-30 23:26:50.806344 50537 3976 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.57.245 00e4f67e-2e4a-4551-9b6e-4f5aacc1f560 2020-12-30 23:27:00.724612 50538 5216 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.698E3\nmove_type: '1'\nsale_id: 3976\ncardnumber: 1552\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1175\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1175 189.186.57.245 00e4f67e-2e4a-4551-9b6e-4f5aacc1f560 2020-12-30 23:27:00.745304 50539 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 21:58:35.949771000 Z\n- &1 2020-12-30 22:32:50.321904000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 23:30:31.557053524 Z\nsign_in_count:\n- 460\n- 461\n 923 \N 189.186.57.245 6cb155da-368d-4584-967a-de47b8def124 2020-12-30 23:30:31.562821 50540 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ShxBdK6WNnNxwcZhpxKx\n- ehKcKW7hyvoviWTykFhr\n 924 \N 189.186.57.245 6cb155da-368d-4584-967a-de47b8def124 2020-12-30 23:30:31.577565 50541 3977 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.359E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.359E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1176\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 0dd88425-321f-4756-a0df-5ef988076d5a 2020-12-30 23:30:48.844619 50542 2405 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.57.245 0dd88425-321f-4756-a0df-5ef988076d5a 2020-12-30 23:30:48.875027 50543 3977 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.57.245 1b949c17-cb2d-43ff-b5dd-fd87cae6a7dc 2020-12-30 23:31:34.616727 50544 5217 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.359E3\nmove_type: '1'\nsale_id: 3977\ncardnumber: 5525\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1176\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1176 189.186.57.245 1b949c17-cb2d-43ff-b5dd-fd87cae6a7dc 2020-12-30 23:31:34.638036 50545 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 21:56:59.025284000 Z\n- &1 2020-12-30 22:47:04.153176000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 23:32:02.606218795 Z\nsign_in_count:\n- 2249\n- 2250\n 4500 \N 189.186.57.245 11ad6f45-65e9-4e1d-8f09-66d5821a2a2a 2020-12-30 23:32:02.61427 50546 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 21CE6y5Lndytg_AHsppm\n- qnXckzK4sZtLnkwZAipm\n 4501 \N 189.186.57.245 11ad6f45-65e9-4e1d-8f09-66d5821a2a2a 2020-12-30 23:32:02.644024 50547 788 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-30\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.57.245 0ade1353-f9a3-4dd9-8a05-f8280e9dc24b 2020-12-30 23:34:59.70434 50548 3978 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1259\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1882\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 5bae5fc3-a026-4393-83c0-a99ad52fdb09 2020-12-30 23:35:27.056879 50549 2543 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.121.224 5bae5fc3-a026-4393-83c0-a99ad52fdb09 2020-12-30 23:35:27.080984 50550 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 22:32:50.321904000 Z\n- &1 2020-12-30 23:30:31.557053000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 23:35:34.776445890 Z\nsign_in_count:\n- 461\n- 462\n 925 \N 189.186.57.245 a39f699b-7b24-4b12-84c7-2d229a1bbb12 2020-12-30 23:35:34.784525 50551 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ehKcKW7hyvoviWTykFhr\n- h1Fa4_HJAKBxi3xm1MqJ\n 926 \N 189.186.57.245 a39f699b-7b24-4b12-84c7-2d229a1bbb12 2020-12-30 23:35:34.80259 50552 3978 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 3e1be4e2-cb21-4de2-8410-ac19c2c0ac81 2020-12-30 23:35:55.039017 50553 5218 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1259\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 3978\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1882\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.401E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1882 187.149.121.224 3e1be4e2-cb21-4de2-8410-ac19c2c0ac81 2020-12-30 23:35:55.059448 50554 788 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-30\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.57.245 71c215a7-0da0-45b1-8cad-cc04c28983e8 2020-12-30 23:35:56.647126 50555 1394 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.57.245 71c215a7-0da0-45b1-8cad-cc04c28983e8 2020-12-30 23:35:56.664493 50556 3979 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.1488E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1488E4\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1177\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 89325a39-34b2-4a0b-85a3-a26267cbd68b 2020-12-30 23:38:48.044434 50557 1394 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.57.245 89325a39-34b2-4a0b-85a3-a26267cbd68b 2020-12-30 23:38:48.072849 50558 2572 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 14 \N 189.186.57.245 89325a39-34b2-4a0b-85a3-a26267cbd68b 2020-12-30 23:38:48.100478 50560 5219 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1488E4\nmove_type: '1'\nsale_id: 3979\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1177\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.12E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1177 189.186.57.245 4f981f6a-1b2c-4094-90bf-04d0f092a844 2020-12-30 23:39:02.426484 50561 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 22:47:04.153176000 Z\n- &1 2020-12-30 23:32:02.606218000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 23:51:21.773199888 Z\nsign_in_count:\n- 2250\n- 2251\n 4502 \N 189.186.57.245 d8a95caa-4c7c-436a-98c7-6c7b480f9487 2020-12-30 23:51:21.790628 50562 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qnXckzK4sZtLnkwZAipm\n- 4rGMHYBxfD4TZ2d3ymqx\n 4503 \N 189.186.57.245 d8a95caa-4c7c-436a-98c7-6c7b480f9487 2020-12-30 23:51:21.815321 50563 161 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.57.245 5c5382e5-7c1b-4542-aec4-0a6d678f8e86 2020-12-30 23:52:08.302717 50564 789 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-30\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.57.245 15d268df-4ada-484e-a1fc-3d25f10c1d43 2020-12-30 23:52:10.059239 50565 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 23:30:31.557053000 Z\n- &1 2020-12-30 23:35:34.776445000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 23:52:35.447839760 Z\nsign_in_count:\n- 462\n- 463\n 927 \N 189.186.57.245 112b2631-497e-4d79-942b-e35f7dbc6c66 2020-12-30 23:52:35.4536 50566 18 User \N \N 18 User \N update ---\nunique_session_id:\n- h1Fa4_HJAKBxi3xm1MqJ\n- GK6jetD9mjcJStxXDK-R\n 928 \N 189.186.57.245 112b2631-497e-4d79-942b-e35f7dbc6c66 2020-12-30 23:52:35.468395 50567 789 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-30\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.57.245 becab263-7b37-4e5c-9291-d62dec26773a 2020-12-30 23:52:48.474603 50568 2666 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 163\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.57.245 becab263-7b37-4e5c-9291-d62dec26773a 2020-12-30 23:52:48.495637 50569 3980 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.159624E4\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.579E3\ntotal: !ruby/object:BigDecimal 18:0.11E4\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1178\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 e6f86a93-1de3-4285-935a-0369b08b922b 2020-12-30 23:54:18.530238 50570 2591 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.57.245 e6f86a93-1de3-4285-935a-0369b08b922b 2020-12-30 23:54:18.558654 50571 2666 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.57.245 e6f86a93-1de3-4285-935a-0369b08b922b 2020-12-30 23:54:18.583771 50572 3980 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.57.245 d3ac8bbf-7534-404b-a415-1f9f52ce7886 2020-12-30 23:54:37.95882 50573 5220 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.11E4\nmove_type: '1'\nsale_id: 3980\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1178\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1178 189.186.57.245 d3ac8bbf-7534-404b-a415-1f9f52ce7886 2020-12-30 23:54:37.982208 50574 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 23:32:02.606218000 Z\n- &1 2020-12-30 23:51:21.773199000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-30 23:57:58.973198633 Z\nsign_in_count:\n- 2251\n- 2252\n 4504 \N 189.186.57.245 d4c32b82-169f-4c23-a516-41ec50b25116 2020-12-30 23:57:58.98172 50575 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4rGMHYBxfD4TZ2d3ymqx\n- mm1NHJoTBPFpmuokYRx6\n 4505 \N 189.186.57.245 d4c32b82-169f-4c23-a516-41ec50b25116 2020-12-30 23:57:59.005316 50576 488 Customer \N \N 9 User \N create ---\nnick_name: ANAI GONZALES\nphone: "(667) 775-1555"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANAI GONZALES fue registrado. 187.149.121.224 101b6dcd-39c4-44b9-a9a9-11d6e9fd3307 2020-12-30 23:58:10.746137 50577 3981 Sale \N \N 9 User \N create ---\ncustomer_id: 488\nuser_id: 9\nopen_cash_register_id: 1259\namount: !ruby/object:BigDecimal 18:0.1769E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1769E4\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 2\nseller_id: 16\nsale_code: PV1-V-1883\nexpiration_date: 2021-02-03\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 6bd89a76-1cc5-449a-b034-57b8ac1b34bc 2020-12-30 23:58:40.223351 50578 1249 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.121.224 6bd89a76-1cc5-449a-b034-57b8ac1b34bc 2020-12-30 23:58:40.252344 50579 3981 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1883 cancelada. 187.149.121.224 71904c9a-c32c-4ab5-a63f-83d7e97b5c51 2020-12-30 23:58:47.493644 50580 1249 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 187.149.121.224 71904c9a-c32c-4ab5-a63f-83d7e97b5c51 2020-12-30 23:58:47.519591 50581 3982 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1259\namount: !ruby/object:BigDecimal 18:0.1769E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.53E3\ntotal: !ruby/object:BigDecimal 18:0.1239E4\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1884\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 482f60ce-3dae-40ca-a147-b5ac9c6e7ee9 2020-12-30 23:59:26.864408 50582 1249 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.121.224 482f60ce-3dae-40ca-a147-b5ac9c6e7ee9 2020-12-30 23:59:26.890563 50583 3982 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1884 cancelada. 187.149.121.224 aa6f6a2b-e1c0-4396-aadb-6a54105ee746 2020-12-30 23:59:36.724693 50584 1249 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 187.149.121.224 aa6f6a2b-e1c0-4396-aadb-6a54105ee746 2020-12-30 23:59:36.747135 50630 4 User \N \N 4 User \N update ---\nunique_session_id:\n- de3RbDDLhJEnuX5MjWEe\n- z2oZRxxQ8YxuBhsbAyYA\n 4511 \N 189.186.62.49 8b7740cc-d42c-46bc-9c44-1f74cea314a5 2020-12-31 00:57:15.612889 50585 3983 Sale \N \N 9 User \N create ---\ncustomer_id: 488\nuser_id: 9\nopen_cash_register_id: 1259\namount: !ruby/object:BigDecimal 18:0.1769E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.53E3\ntotal: !ruby/object:BigDecimal 18:0.1239E4\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1885\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 68490a1d-fbfc-4572-a6cc-f33516f7bddc 2020-12-31 00:00:04.250545 50586 1249 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 13 \N 187.149.121.224 68490a1d-fbfc-4572-a6cc-f33516f7bddc 2020-12-31 00:00:04.280395 50587 3983 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1885 cancelada. 187.149.121.224 28741d49-00a6-41d2-b274-646dffebc8ac 2020-12-31 00:00:10.640082 50588 1249 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 14 \N 187.149.121.224 28741d49-00a6-41d2-b274-646dffebc8ac 2020-12-31 00:00:10.662954 50589 3984 Sale \N \N 9 User \N create ---\ncustomer_id: 488\nuser_id: 9\nopen_cash_register_id: 1259\namount: !ruby/object:BigDecimal 18:0.1769E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.53E3\ntotal: !ruby/object:BigDecimal 18:0.1239E4\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1886\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 1caef8ce-a63d-4307-a69c-47da2c15759b 2020-12-31 00:00:30.629205 50590 1249 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 15 \N 187.149.121.224 1caef8ce-a63d-4307-a69c-47da2c15759b 2020-12-31 00:00:30.654361 50591 3984 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 0a18e428-ec2c-46ae-ac87-513f9fca9da7 2020-12-31 00:00:49.38145 50592 5221 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1259\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 3984\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1886\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1886 187.149.121.224 0a18e428-ec2c-46ae-ac87-513f9fca9da7 2020-12-31 00:00:49.403285 50593 3984 Sale \N \N 9 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-1886 cancelada. 187.149.121.224 c281e239-30a9-4e06-9a07-afc7908c13d8 2020-12-31 00:00:54.894747 50594 5221 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 1259\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3984\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1886\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.121.224 c281e239-30a9-4e06-9a07-afc7908c13d8 2020-12-31 00:00:54.915975 50595 1249 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 16 \N 187.149.121.224 c281e239-30a9-4e06-9a07-afc7908c13d8 2020-12-31 00:00:54.940169 50596 3985 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1179\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 4693b77b-1308-422b-b212-413a1c716def 2020-12-31 00:02:11.979063 50597 1222 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.57.245 4693b77b-1308-422b-b212-413a1c716def 2020-12-31 00:02:12.003882 50598 3986 Sale \N \N 9 User \N create ---\ncustomer_id: 488\nuser_id: 9\nopen_cash_register_id: 1259\namount: !ruby/object:BigDecimal 18:0.1769E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.53E3\ntotal: !ruby/object:BigDecimal 18:0.1239E4\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 2\nseller_id: 16\nsale_code: PV1-V-1887\nexpiration_date: 2021-02-03\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 6655079d-c889-488b-af5f-0fff8bc15c6b 2020-12-31 00:02:15.245969 50599 1249 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 17 \N 187.149.121.224 6655079d-c889-488b-af5f-0fff8bc15c6b 2020-12-31 00:02:15.274036 50600 5222 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1259\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3986\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1887\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1887 187.149.121.224 7437c833-5c8c-4435-85db-8d3896f0d88e 2020-12-31 00:02:28.064979 50601 3986 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.121.224 5ac00bf9-174a-4c90-9370-372027e33147 2020-12-31 00:02:29.86976 50602 3985 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.57.245 7374ae2e-1238-4798-9180-cd218acbb447 2020-12-31 00:02:51.582628 50603 5223 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 3985\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1179\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1179 189.186.57.245 7374ae2e-1238-4798-9180-cd218acbb447 2020-12-31 00:02:51.604158 50604 3987 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.8448E2\ntax: !ruby/object:BigDecimal 18:0.1352E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.98E2\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1180\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 52eda06e-b811-43e0-bbb9-9951c6e93fff 2020-12-31 00:08:49.254566 50605 818 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.34E2\n- !ruby/object:BigDecimal 18:0.32E2\n 34 \N 189.186.57.245 52eda06e-b811-43e0-bbb9-9951c6e93fff 2020-12-31 00:08:49.289109 50606 3987 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.57.245 b632d31b-9a21-4fb5-9898-b87b99a3ed07 2020-12-31 00:08:55.264635 50631 2256 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 7 \N 189.186.62.49 01c2f43c-413e-4b38-982e-6ba03076ffbb 2020-12-31 00:57:39.851407 50632 2256 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.62.49 4a731373-55c3-40ae-a7b9-6dda47d967db 2020-12-31 00:57:43.487292 50607 5224 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.98E2\nmove_type: '1'\nsale_id: 3987\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1180\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.402E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1180 189.186.57.245 b632d31b-9a21-4fb5-9898-b87b99a3ed07 2020-12-31 00:08:55.285527 50608 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 23:51:21.773199000 Z\n- &1 2020-12-30 23:57:58.973198000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 00:09:47.054663002 Z\nsign_in_count:\n- 2252\n- 2253\n 4506 \N 189.186.57.245 72d80809-c002-41f7-8310-a43f9113e13f 2020-12-31 00:09:47.061384 50609 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mm1NHJoTBPFpmuokYRx6\n- sCq_qzRyjFM5UyDwzmrc\n 4507 \N 189.186.57.245 72d80809-c002-41f7-8310-a43f9113e13f 2020-12-31 00:09:47.078042 50610 790 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-12-30\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 189.186.57.245 10f693e9-677a-4dcf-a1b3-1c61c0d39dbf 2020-12-31 00:10:44.632002 50611 790 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-30\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.121.224 de0f6c2d-b5b7-41b5-ae78-b264682e1bf5 2020-12-31 00:11:01.805546 50612 1245 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.121.224 de0f6c2d-b5b7-41b5-ae78-b264682e1bf5 2020-12-31 00:11:01.828982 50613 3988 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1259\namount: !ruby/object:BigDecimal 18:0.1349E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1349E4\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1888\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 99c565ee-b8ac-427c-b010-8a96532cbe21 2020-12-31 00:11:23.34626 50614 1245 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.121.224 99c565ee-b8ac-427c-b010-8a96532cbe21 2020-12-31 00:11:23.37743 50615 3988 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 e82b9c8a-3e6a-45f1-bdb8-1d328f6e4fd1 2020-12-31 00:11:51.177552 50616 5225 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1259\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1349E4\nmove_type: '1'\nsale_id: 3988\ncardnumber: 9710\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1888\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1888 187.149.121.224 e82b9c8a-3e6a-45f1-bdb8-1d328f6e4fd1 2020-12-31 00:11:51.199737 50617 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 23:57:58.973198000 Z\n- &1 2020-12-31 00:09:47.054663000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 00:17:34.773439350 Z\nsign_in_count:\n- 2253\n- 2254\n 4508 \N 189.186.57.245 91e474ab-e575-4e94-9f33-c5286cdd3381 2020-12-31 00:17:34.779488 50618 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sCq_qzRyjFM5UyDwzmrc\n- de3RbDDLhJEnuX5MjWEe\n 4509 \N 189.186.57.245 91e474ab-e575-4e94-9f33-c5286cdd3381 2020-12-31 00:17:34.796643 50619 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 23:35:34.776445000 Z\n- &1 2020-12-30 23:52:35.447839000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 00:19:32.987656561 Z\nsign_in_count:\n- 463\n- 464\n 929 \N 189.186.57.245 fa5be4ae-5a4f-4f83-88dc-b7524b47a5f0 2020-12-31 00:19:32.993582 50620 18 User \N \N 18 User \N update ---\nunique_session_id:\n- GK6jetD9mjcJStxXDK-R\n- b_RzLPqp-3kzp7iMhcAf\n 930 \N 189.186.57.245 fa5be4ae-5a4f-4f83-88dc-b7524b47a5f0 2020-12-31 00:19:33.009142 50621 3989 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.60259E3\ntax: !ruby/object:BigDecimal 18:0.9641E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1181\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.57.245 022f6708-b75a-4b00-8288-d73b151be319 2020-12-31 00:19:52.103883 50622 1222 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.57.245 022f6708-b75a-4b00-8288-d73b151be319 2020-12-31 00:19:52.132747 50623 3989 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.57.245 4f86daf1-1f39-423c-bc10-869961edf3fb 2020-12-31 00:20:03.890115 50624 5226 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 3989\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1181\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1181 189.186.57.245 4f86daf1-1f39-423c-bc10-869961edf3fb 2020-12-31 00:20:03.925635 50625 3990 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1259\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1889\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 2da8d029-fa50-4041-a9c8-44ce5f1b7354 2020-12-31 00:31:45.410355 50626 2555 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 187.149.121.224 2da8d029-fa50-4041-a9c8-44ce5f1b7354 2020-12-31 00:31:45.440609 50627 3990 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 95d4ab7a-fd03-4499-bda1-d6e239011f4c 2020-12-31 00:32:18.767384 50628 5227 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1259\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.469E3\nmove_type: '1'\nsale_id: 3990\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1889\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1889 187.149.121.224 95d4ab7a-fd03-4499-bda1-d6e239011f4c 2020-12-31 00:32:18.78741 50629 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 00:09:47.054663000 Z\n- &1 2020-12-31 00:17:34.773439000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 00:57:15.579945326 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098357\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\nsign_in_count:\n- 2254\n- 2255\n 4510 \N 189.186.62.49 8b7740cc-d42c-46bc-9c44-1f74cea314a5 2020-12-31 00:57:15.589068 50633 791 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-30\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.62.49 9220698b-117e-425b-b313-bd1926d0791f 2020-12-31 00:57:44.086611 50634 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 23:52:35.447839000 Z\n- &1 2020-12-31 00:19:32.987656000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 00:59:04.384665754 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098357\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\nsign_in_count:\n- 464\n- 465\n 931 \N 189.186.62.49 8f7427cb-eea4-4703-9a9a-818d8b4e8f62 2020-12-31 00:59:04.391558 50635 18 User \N \N 18 User \N update ---\nunique_session_id:\n- b_RzLPqp-3kzp7iMhcAf\n- 9XRXKtbcyWzynm8sb3PQ\n 932 \N 189.186.62.49 8f7427cb-eea4-4703-9a9a-818d8b4e8f62 2020-12-31 00:59:04.407667 50636 791 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-30\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.62.49 461241b9-b135-435a-a365-03ed24574b59 2020-12-31 00:59:39.27901 50637 2280 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.7E1\n 12 \N 189.186.62.49 461241b9-b135-435a-a365-03ed24574b59 2020-12-31 00:59:39.297738 50638 3991 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.99E2\ntotal: !ruby/object:BigDecimal 18:0.4E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1182\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 e9d68f12-eb07-44da-822b-95862fc6a109 2020-12-31 01:00:01.82602 50639 2280 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 13 \N 189.186.62.49 e9d68f12-eb07-44da-822b-95862fc6a109 2020-12-31 01:00:01.853408 50640 3991 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 d2ab782c-e76f-4a0d-a596-5f36d86b1ba4 2020-12-31 01:00:44.460598 50641 5228 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 3991\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1182\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1182 189.186.62.49 d2ab782c-e76f-4a0d-a596-5f36d86b1ba4 2020-12-31 01:00:44.482718 50642 3992 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.399E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.399E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1183\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 9cc45a97-0ea5-4510-bdc5-d511761547e1 2020-12-31 01:02:25.370988 50643 2585 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.62.49 9cc45a97-0ea5-4510-bdc5-d511761547e1 2020-12-31 01:02:25.406435 50644 3992 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 0b8b4cf6-13f2-469c-82f8-1a66e9b09b5c 2020-12-31 01:02:48.745003 50645 5229 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 3992\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1183\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1183 189.186.62.49 0b8b4cf6-13f2-469c-82f8-1a66e9b09b5c 2020-12-31 01:02:48.769602 50646 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 00:17:34.773439000 Z\n- &1 2020-12-31 00:57:15.579945000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 01:09:06.729900625 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098357\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\nsign_in_count:\n- 2255\n- 2256\n 4512 \N 189.186.62.49 ee052752-0e3e-4784-9fdd-3e310d7132a6 2020-12-31 01:09:06.736706 50647 4 User \N \N 4 User \N update ---\nunique_session_id:\n- z2oZRxxQ8YxuBhsbAyYA\n- ZbYhEqWYDKy3C2EyQpid\n 4513 \N 189.186.62.49 ee052752-0e3e-4784-9fdd-3e310d7132a6 2020-12-31 01:09:06.803177 50648 3993 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1259\namount: !ruby/object:BigDecimal 18:0.825E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.825E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1890\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 8db44ed5-fc77-4642-bcd3-9e2bf486ae9b 2020-12-31 01:16:16.85263 50649 2539 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.121.224 8db44ed5-fc77-4642-bcd3-9e2bf486ae9b 2020-12-31 01:16:16.886206 50650 3993 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 4bba98dc-caec-469b-bb16-b3a48a98576f 2020-12-31 01:17:27.755243 50651 5230 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1259\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.825E3\nmove_type: '1'\nsale_id: 3993\ncardnumber: 8058\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1890\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1890 187.149.121.224 4bba98dc-caec-469b-bb16-b3a48a98576f 2020-12-31 01:17:27.779268 50652 3994 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.179E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.179E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1184\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 2d459228-b4eb-4176-a89c-0e6bc62613bd 2020-12-31 01:51:34.521804 50653 2101 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.62.49 2d459228-b4eb-4176-a89c-0e6bc62613bd 2020-12-31 01:51:34.548347 50654 3994 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 171a6e95-a8de-48a3-b547-163d7752c359 2020-12-31 01:51:40.468306 50675 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 9XRXKtbcyWzynm8sb3PQ\n- 4vPiQ9QYBYg8yrcDBHmR\n 934 \N 189.186.62.49 9332ce84-e9df-4029-b428-c9d73f769621 2020-12-31 02:34:23.166711 51122 2135 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.121.224 ceba1e94-9c99-4d6b-b666-37c8e565cee6 2021-01-08 02:10:04.587572 50655 5231 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.179E3\nmove_type: '1'\nsale_id: 3994\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1184\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.21E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1184 189.186.62.49 171a6e95-a8de-48a3-b547-163d7752c359 2020-12-31 01:51:40.490649 50656 3995 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1185\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 5ae973c9-1bf6-4402-88e7-405d78c69a17 2020-12-31 01:54:37.082531 50657 2266 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 16 \N 189.186.62.49 5ae973c9-1bf6-4402-88e7-405d78c69a17 2020-12-31 01:54:37.108037 50658 3995 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 4bedb726-3e4e-4583-9ceb-505af43ad4e1 2020-12-31 01:54:49.554242 50659 5232 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 3995\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1185\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1185 189.186.62.49 4bedb726-3e4e-4583-9ceb-505af43ad4e1 2020-12-31 01:54:49.57981 50660 3831 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-1081 cancelada. 189.186.62.49 e22f95bf-3766-4fc2-a8bc-127877c71ec1 2020-12-31 02:01:25.690704 50661 5233 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '0'\nsale_id: 3831\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1081\nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.62.49 e22f95bf-3766-4fc2-a8bc-127877c71ec1 2020-12-31 02:01:25.731773 50662 2341 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 23 \N 189.186.62.49 e22f95bf-3766-4fc2-a8bc-127877c71ec1 2020-12-31 02:01:25.770211 50663 3996 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1186\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 ee084aa5-e1f9-488a-a142-724b8cdad101 2020-12-31 02:01:44.002036 50664 2221 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 189.186.62.49 ee084aa5-e1f9-488a-a142-724b8cdad101 2020-12-31 02:01:44.028362 50665 3996 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 7b16eb39-7f5f-44bd-acf0-bea0cdaeaf9a 2020-12-31 02:01:53.272118 50666 5234 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 3996\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1186\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '12223'\n 1 movimiento de efectivo por venta con folio PV3-V-1186 189.186.62.49 7b16eb39-7f5f-44bd-acf0-bea0cdaeaf9a 2020-12-31 02:01:53.292899 50667 5235 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 3996\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1186\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '12223'\n 1 movimiento de efectivo por venta con folio PV3-V-1186 189.186.62.49 2fe04038-0dfd-4ec3-b057-52c2e796e7f1 2020-12-31 02:02:04.858888 50668 3997 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.825E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.825E3\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1187\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 7185ad82-ad17-4fc2-85ff-8525dfef8fd2 2020-12-31 02:09:19.726662 50669 2589 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.62.49 7185ad82-ad17-4fc2-85ff-8525dfef8fd2 2020-12-31 02:09:19.75568 50670 3997 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 f36988da-7b5b-4f3e-8de9-b6e06da9a949 2020-12-31 02:10:04.663927 50671 5236 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.825E3\nmove_type: '1'\nsale_id: 3997\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1187\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.825E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1187 189.186.62.49 f36988da-7b5b-4f3e-8de9-b6e06da9a949 2020-12-31 02:10:04.693598 50672 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 21:57:36.431690000 Z\n- &1 2020-12-30 22:05:53.467479000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 02:26:32.043142405 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098357\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\nsign_in_count:\n- 226\n- 227\n 454 \N 189.186.62.49 b3d06502-170e-4fd1-b0e8-725010dcfb20 2020-12-31 02:26:32.063855 50673 9 User \N \N 9 User \N update ---\nunique_session_id:\n- pxyZ-7oykfVqCwBRDdAy\n- 6KAcQRHNJfUMrfaiwJfL\n 455 \N 189.186.62.49 b3d06502-170e-4fd1-b0e8-725010dcfb20 2020-12-31 02:26:32.085605 50674 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 00:19:32.987656000 Z\n- &1 2020-12-31 00:59:04.384665000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 02:34:23.142947193 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098357\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\nsign_in_count:\n- 465\n- 466\n 933 \N 189.186.62.49 9332ce84-e9df-4029-b428-c9d73f769621 2020-12-31 02:34:23.150197 50741 2726 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.121.224 5965188e-53f9-4af7-bf65-f1ec702a3fa6 2020-12-31 20:37:29.94301 50676 5237 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 3722\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1024 189.186.62.49 4f9e55f0-4637-4b16-ae40-73e8fb6642cb 2020-12-31 02:35:08.361853 50677 3722 Sale \N \N 18 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.62.49 61109d00-de1d-40ad-9484-cb632ee4ddbb 2020-12-31 02:35:09.601815 50678 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 22:05:53.467479000 Z\n- &1 2020-12-31 02:26:32.043142000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 02:35:31.505241904 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\nsign_in_count:\n- 227\n- 228\n 456 \N 189.186.62.49 cf12b965-821e-44e7-ba16-1d5c6135805f 2020-12-31 02:35:31.511435 50679 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 6KAcQRHNJfUMrfaiwJfL\n- VDyVEdTqha-EnrEdMsZu\n 457 \N 189.186.62.49 cf12b965-821e-44e7-ba16-1d5c6135805f 2020-12-31 02:35:31.526152 50680 1284 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 1259\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.6944E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.4106E4\ncash_fund: !ruby/object:BigDecimal 18:0.609E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4715E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.62.49 16a2a0dd-c8bb-4279-92f0-be3585c3fb26 2020-12-31 02:37:09.217112 50681 1259 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.62.49 16a2a0dd-c8bb-4279-92f0-be3585c3fb26 2020-12-31 02:37:09.232087 50682 1260 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.609E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 609.0 189.186.62.49 8f17e483-c5d3-4a17-b2ed-dfa06873ae74 2020-12-31 02:37:13.145708 50683 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 02:26:32.043142000 Z\n- &1 2020-12-31 02:35:31.505241000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 02:37:43.721304891 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 228\n- 229\n 458 \N 187.149.121.224 6996129e-8d9c-472c-ba0b-f8a53d2548a6 2020-12-31 02:37:43.728161 50684 9 User \N \N 9 User \N update ---\nunique_session_id:\n- VDyVEdTqha-EnrEdMsZu\n- 7Dw-KNguqzHAR4szgZ_4\n 459 \N 187.149.121.224 6996129e-8d9c-472c-ba0b-f8a53d2548a6 2020-12-31 02:37:43.743201 50685 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 00:59:04.384665000 Z\n- &1 2020-12-31 02:34:23.142947000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 02:39:08.662179092 Z\nsign_in_count:\n- 466\n- 467\n 935 \N 189.186.62.49 ebcb751b-8f66-49a9-a526-d841e9d6887b 2020-12-31 02:39:08.667617 50686 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 4vPiQ9QYBYg8yrcDBHmR\n- kxNzsMivdXSg5cz6RoCo\n 936 \N 189.186.62.49 ebcb751b-8f66-49a9-a526-d841e9d6887b 2020-12-31 02:39:08.683405 50687 3998 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1258\namount: !ruby/object:BigDecimal 18:0.2099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2099E4\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1188\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 4125358b-3275-4a01-95ad-eb2acd245816 2020-12-31 02:44:07.181506 50688 2638 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 189.186.62.49 4125358b-3275-4a01-95ad-eb2acd245816 2020-12-31 02:44:07.212955 50689 3998 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 91e5e73c-3dc0-4c98-af41-3e40b3119fe1 2020-12-31 02:44:17.035481 50690 5238 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1258\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.2099E4\nmove_type: '1'\nsale_id: 3998\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1188\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '122233'\n 1 movimiento de efectivo por venta con folio PV3-V-1188 189.186.62.49 91e5e73c-3dc0-4c98-af41-3e40b3119fe1 2020-12-31 02:44:17.061776 50691 1285 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1258\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.2076E5\namount_out: !ruby/object:BigDecimal 18:0.2298E4\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.84E4\ncash_fund: !ruby/object:BigDecimal 18:0.954E3\nphysical_cash: !ruby/object:BigDecimal 18:0.9354E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.62.49 635db969-73f0-4f22-82fa-5d018b44ba58 2020-12-31 02:49:36.157077 50692 1258 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.62.49 635db969-73f0-4f22-82fa-5d018b44ba58 2020-12-31 02:49:36.173131 50693 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 02:34:23.142947000 Z\n- &1 2020-12-31 02:39:08.662179000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 03:09:48.901382808 Z\nsign_in_count:\n- 467\n- 468\n 937 \N 189.186.62.49 3906954e-bdf7-4be7-8e76-45fb85ae371a 2020-12-31 03:09:48.93803 50694 18 User \N \N 18 User \N update ---\nunique_session_id:\n- kxNzsMivdXSg5cz6RoCo\n- uuXKf5Ry8_MiegxgP8n1\n 938 \N 189.186.62.49 3906954e-bdf7-4be7-8e76-45fb85ae371a 2020-12-31 03:09:48.982311 50695 1261 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.954E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 954.0 189.186.62.49 f2ee5594-f226-426a-9115-48f3c64c2a30 2020-12-31 03:10:19.361959 50696 3999 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1261\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.139E3\ntotal: !ruby/object:BigDecimal 18:0.126E4\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1189\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 0f699630-5585-46e6-8fc8-d25c9a4ce9bd 2020-12-31 03:15:28.741927 50697 2341 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 24 \N 189.186.62.49 0f699630-5585-46e6-8fc8-d25c9a4ce9bd 2020-12-31 03:15:28.770781 50698 3999 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 e0190083-5169-47e5-8a59-7b9916290cdc 2020-12-31 03:15:53.459185 50742 793 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-31\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.121.224 eee3f008-64fc-4aa4-9dee-753ddd8a7ea9 2020-12-31 20:38:03.869567 51123 4047 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 e206df60-b35a-4205-b604-fa98f7b856f4 2021-01-08 02:10:15.259443 50699 5239 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1261\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.126E4\nmove_type: '1'\nsale_id: 3999\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1189\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1125'\n 1 movimiento de efectivo por venta con folio PV3-V-1189 189.186.62.49 e0190083-5169-47e5-8a59-7b9916290cdc 2020-12-31 03:15:53.495665 50700 4000 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1261\namount: !ruby/object:BigDecimal 18:0.3098E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.428E3\ntotal: !ruby/object:BigDecimal 18:0.267E4\nstatus: 0\ndate_sale: 2020-12-30\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1190\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 3bcb68a0-de34-45fb-af7e-b7f9139014e6 2020-12-31 03:24:29.591686 50701 2411 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 6 \N 189.186.62.49 3bcb68a0-de34-45fb-af7e-b7f9139014e6 2020-12-31 03:24:29.650894 50702 1094 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.62.49 3bcb68a0-de34-45fb-af7e-b7f9139014e6 2020-12-31 03:24:29.697433 50703 4000 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 fb375bd5-19da-4cf2-a779-0ae36efed3ab 2020-12-31 03:25:45.458765 50704 5240 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1261\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.207E4\nmove_type: '1'\nsale_id: 4000\ncardnumber: 1225\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1190\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1190 189.186.62.49 fb375bd5-19da-4cf2-a779-0ae36efed3ab 2020-12-31 03:25:45.484293 50705 5241 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1261\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 4000\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1190\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1190 189.186.62.49 6a927f84-73ea-4427-b129-20f18519e86a 2020-12-31 03:26:06.231593 50706 1286 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1261\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.393E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.6E3\ncash_fund: !ruby/object:BigDecimal 18:0.954E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1554E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.62.49 cd9c271b-edaa-4c6e-9b71-37c16deea6e0 2020-12-31 03:28:59.739556 50707 1261 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.62.49 cd9c271b-edaa-4c6e-9b71-37c16deea6e0 2020-12-31 03:28:59.75372 50708 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 00:57:15.579945000 Z\n- &1 2020-12-31 01:09:06.729900000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 18:14:48.101621585 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535110\n mask_addr: 4294967295\nsign_in_count:\n- 2256\n- 2257\n 4514 \N 177.228.100.70 72984f94-44c6-4032-9b7c-45d4c9710b99 2020-12-31 18:14:48.12087 50709 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZbYhEqWYDKy3C2EyQpid\n- Hs7LKswdyaWYtndZJzCy\n 4515 \N 177.228.100.70 72984f94-44c6-4032-9b7c-45d4c9710b99 2020-12-31 18:14:48.145191 50710 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-29 23:46:59.621471000 Z\n- &1 2020-12-30 20:02:17.757992000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 18:44:18.669326143 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183098357\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\nsign_in_count:\n- 378\n- 379\n 759 \N 189.186.62.49 1b91219f-ac52-4573-ae22-73c10d00b1ef 2020-12-31 18:44:18.679038 50711 21 User \N \N 21 User \N update ---\nunique_session_id:\n- xVVpyeEpwuY89qNoge_y\n- seYS81FyTyc6zLX_CQsE\n 760 \N 189.186.62.49 1b91219f-ac52-4573-ae22-73c10d00b1ef 2020-12-31 18:44:18.699111 50712 1262 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.954E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 954.0 189.186.62.49 d4371bf6-e838-460c-a20b-4f443007af32 2020-12-31 19:05:39.017686 50713 4001 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1262\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1191\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 47756b4e-4056-44ce-9d2d-19c7bef32462 2020-12-31 19:10:18.582149 50714 2659 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.62.49 47756b4e-4056-44ce-9d2d-19c7bef32462 2020-12-31 19:10:18.61147 50715 4001 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 feff6361-e694-4b31-85c5-24f7d4f92269 2020-12-31 19:10:40.610295 50716 5242 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1262\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 4001\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1191\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1191 189.186.62.49 feff6361-e694-4b31-85c5-24f7d4f92269 2020-12-31 19:10:40.632952 50717 4002 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1262\namount: !ruby/object:BigDecimal 18:0.1899E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1899E4\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1192\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 e2cb0192-7876-40d1-adde-faa376d8407d 2020-12-31 19:13:50.73763 50718 2623 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.62.49 e2cb0192-7876-40d1-adde-faa376d8407d 2020-12-31 19:13:50.76136 50719 4002 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 d0fc608d-adcd-4875-9e7e-f97ce0559906 2020-12-31 19:15:05.148997 51254 4060 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 8fa9c51c-dce5-4cba-a64e-2eebee9eb485 2021-01-10 20:36:50.023404 50720 5243 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1262\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1899E4\nmove_type: '1'\nsale_id: 4002\ncardnumber: 3578\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1192\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1192 189.186.62.49 d0fc608d-adcd-4875-9e7e-f97ce0559906 2020-12-31 19:15:05.173083 50721 4003 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1260\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1891\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 65ad0c89-c2d7-4f6d-a400-fd68929b1d2c 2020-12-31 20:10:58.090448 50722 2532 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 187.149.121.224 65ad0c89-c2d7-4f6d-a400-fd68929b1d2c 2020-12-31 20:10:58.115003 50723 4003 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 27d890cc-3dbe-48ff-a5d4-a019743e2fa5 2020-12-31 20:11:16.544274 50724 5244 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1260\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 4003\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1891\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1891 187.149.121.224 27d890cc-3dbe-48ff-a5d4-a019743e2fa5 2020-12-31 20:11:16.564434 50725 4004 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1260\namount: !ruby/object:BigDecimal 18:0.698E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.698E3\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1892\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 ac0da337-0ef7-47ad-951c-869574c6ae04 2020-12-31 20:20:44.297467 50726 2556 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 187.149.121.224 ac0da337-0ef7-47ad-951c-869574c6ae04 2020-12-31 20:20:44.323276 50727 4004 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 69be7937-c716-4ad9-aebd-aa2cd24f754e 2020-12-31 20:20:48.436544 50728 5245 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1260\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.698E3\nmove_type: '1'\nsale_id: 4004\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1892\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.302E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1892 187.149.121.224 69be7937-c716-4ad9-aebd-aa2cd24f754e 2020-12-31 20:20:48.460462 50729 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 02:35:31.505241000 Z\n- &1 2020-12-31 02:37:43.721304000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 20:22:29.975172613 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 229\n- 230\n 460 \N 187.149.121.224 8cc4fc68-4055-4442-aa58-24cb012a2258 2020-12-31 20:22:29.981959 50730 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 7Dw-KNguqzHAR4szgZ_4\n- _8ADUyPaA2sPuMHxRdhk\n 461 \N 187.149.121.224 8cc4fc68-4055-4442-aa58-24cb012a2258 2020-12-31 20:22:29.995939 50731 5246 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1260\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.939E3\nmove_type: '1'\nsale_id: 3986\ncardnumber: 1252\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1887 187.149.121.224 5ed6145c-d628-4625-9f62-af19eeec0a45 2020-12-31 20:23:08.346732 50732 3986 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.121.224 8ea4b1a8-43c1-45e4-a211-0251acce7b56 2020-12-31 20:23:10.167429 50733 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 01:09:06.729900000 Z\n- &1 2020-12-31 18:14:48.101621000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 20:25:43.850890517 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535110\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535110\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 2257\n- 2258\n 4516 \N 187.149.121.224 13beeadb-edee-4243-9885-c5351ebde81c 2020-12-31 20:25:43.859391 50734 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Hs7LKswdyaWYtndZJzCy\n- S2_j-YT9QTAwz4r8_dy8\n 4517 \N 187.149.121.224 13beeadb-edee-4243-9885-c5351ebde81c 2020-12-31 20:25:43.87709 50735 792 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-12-31\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.121.224 9d3ac409-a1a9-4da5-9265-d5ba37783b4b 2020-12-31 20:35:10.9477 50736 2451 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.121.224 fff1deae-8af7-466a-8ba1-fb7f88486415 2020-12-31 20:36:04.995739 50737 793 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-12-31\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.121.224 ac59c7ef-6700-45be-9439-6196d5bcbda8 2020-12-31 20:36:09.896549 50738 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 02:37:43.721304000 Z\n- &1 2020-12-31 20:22:29.975172000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 20:37:01.952170457 Z\nsign_in_count:\n- 230\n- 231\n 462 \N 187.149.121.224 029a9fab-e68c-4625-a8ec-c64fa7abd759 2020-12-31 20:37:01.957946 50739 9 User \N \N 9 User \N update ---\nunique_session_id:\n- _8ADUyPaA2sPuMHxRdhk\n- biWSswzdQnp5NNtrerrn\n 463 \N 187.149.121.224 029a9fab-e68c-4625-a8ec-c64fa7abd759 2020-12-31 20:37:01.972238 50740 5247 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1260\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 2726\ncardnumber: 1551\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1312 187.149.121.224 4e642ab7-fc54-4ff0-9d86-555ead5a07cf 2020-12-31 20:37:28.030366 50743 2667 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 1441\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.121.224 eee3f008-64fc-4aa4-9dee-753ddd8a7ea9 2020-12-31 20:38:03.892441 50744 792 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-31\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.121.224 a4a253d5-b69d-4b22-b6dd-c071d92aee84 2020-12-31 20:38:13.129896 50745 2668 AvailableProduct \N \N 9 User \N create ---\nproduct_id: 766\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.121.224 a4a253d5-b69d-4b22-b6dd-c071d92aee84 2020-12-31 20:38:13.1492 50746 4005 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1260\namount: !ruby/object:BigDecimal 18:0.1438E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1438E4\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1893\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 46d61d83-2aba-45dc-9465-cd782085642f 2020-12-31 20:38:54.761784 50747 2667 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.121.224 46d61d83-2aba-45dc-9465-cd782085642f 2020-12-31 20:38:54.78964 50748 2668 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.121.224 46d61d83-2aba-45dc-9465-cd782085642f 2020-12-31 20:38:54.811672 50749 4005 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 2da0573a-c2bd-4d36-ac19-58bb4cd5d18a 2020-12-31 20:39:05.206161 50750 5248 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1260\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1438E4\nmove_type: '1'\nsale_id: 4005\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1893\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1438E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1893 187.149.121.224 2da0573a-c2bd-4d36-ac19-58bb4cd5d18a 2020-12-31 20:39:05.233457 50751 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 18:14:48.101621000 Z\n- &1 2020-12-31 20:25:43.850890000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 20:39:34.276711306 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535110\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 2258\n- 2259\n 4518 \N 187.149.121.224 7f977a33-d582-4cb6-9521-8e6498bb809c 2020-12-31 20:39:34.28727 50752 4 User \N \N 4 User \N update ---\nunique_session_id:\n- S2_j-YT9QTAwz4r8_dy8\n- sr7hSv4TzCYay1HnhT6h\n 4519 \N 187.149.121.224 7f977a33-d582-4cb6-9521-8e6498bb809c 2020-12-31 20:39:34.310592 50753 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 20:22:29.975172000 Z\n- &1 2020-12-31 20:37:01.952170000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 20:40:52.284695210 Z\nsign_in_count:\n- 231\n- 232\n 464 \N 187.149.121.224 24a40128-9e96-4cb6-8951-f2837d91de55 2020-12-31 20:40:52.290678 50754 9 User \N \N 9 User \N update ---\nunique_session_id:\n- biWSswzdQnp5NNtrerrn\n- FzdtmHbuU-ayBef2rshn\n 465 \N 187.149.121.224 24a40128-9e96-4cb6-8951-f2837d91de55 2020-12-31 20:40:52.304627 50755 4006 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1262\namount: !ruby/object:BigDecimal 18:0.1389E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1389E4\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1193\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 c0de23c2-6b82-40fd-ad0a-4998f366bb71 2020-12-31 20:45:12.105744 50756 2573 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 13 \N 189.186.62.49 c0de23c2-6b82-40fd-ad0a-4998f366bb71 2020-12-31 20:45:12.13192 50757 4006 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 c370a7fd-974e-4a77-8789-f0e8aced82e0 2020-12-31 20:45:24.752343 50758 5249 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1262\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1389E4\nmove_type: '1'\nsale_id: 4006\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1193\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1193 189.186.62.49 c370a7fd-974e-4a77-8789-f0e8aced82e0 2020-12-31 20:45:24.776359 50759 4007 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1260\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 27\nsale_code: PV1-V-1894\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 69e86cc6-2943-4dc0-acff-2fe0a53cac66 2020-12-31 21:07:32.852745 50760 2498 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 27 \N 187.149.121.224 69e86cc6-2943-4dc0-acff-2fe0a53cac66 2020-12-31 21:07:32.88176 50761 4007 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 dd813a1f-3834-4eb5-b26e-7886207a52ee 2020-12-31 21:07:36.932882 50762 5250 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1260\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 4007\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1894\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.401E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1894 187.149.121.224 dd813a1f-3834-4eb5-b26e-7886207a52ee 2020-12-31 21:07:36.954123 50763 4008 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1262\namount: !ruby/object:BigDecimal 18:0.8448E2\ntax: !ruby/object:BigDecimal 18:0.1352E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.98E2\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1194\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 7a43d4f3-3ca7-45d5-a45c-fd55dd38f0a8 2020-12-31 21:13:13.920513 50764 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.32E2\n- !ruby/object:BigDecimal 18:0.3E2\n 35 \N 189.186.62.49 7a43d4f3-3ca7-45d5-a45c-fd55dd38f0a8 2020-12-31 21:13:13.950782 50765 4008 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 ceab3724-b570-4813-886c-2ec2b0a0673b 2020-12-31 21:13:23.089153 51323 2 User \N \N 2 User \N update ---\nunique_session_id:\n- knxcHT4h_bgzLNYwcUUj\n- nqQ9zgJ8Y_5fkHiikczR\n 1496 \N 187.149.121.224 193736c5-4e29-40d3-b3ae-82b316d0475b 2021-01-12 17:16:44.842614 50766 5251 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1262\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.98E2\nmove_type: '1'\nsale_id: 4008\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1194\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.98E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1194 189.186.62.49 ceab3724-b570-4813-886c-2ec2b0a0673b 2020-12-31 21:13:23.120268 50767 5251 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1262\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.98E2\nmove_type: '1'\nsale_id: 4008\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1194\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.98E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.62.49 4f0162ee-da87-48f3-8e46-7535a011bb31 2020-12-31 21:13:30.919788 50768 5252 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1262\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.98E2\nmove_type: '1'\nsale_id: 4008\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1194\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1194 189.186.62.49 9f08d200-87c9-4b6b-ae43-293b53481fdf 2020-12-31 21:13:43.839748 50769 3957 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 1\n 3 Venta PV1-V-1875 cancelada. 187.149.121.224 5556598b-0763-49d4-b6c8-45ee074e68c4 2020-12-31 21:32:03.366106 50770 5253 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1260\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '0'\nsale_id: 3957\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.121.224 5556598b-0763-49d4-b6c8-45ee074e68c4 2020-12-31 21:32:03.401654 50771 1067 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 14 \N 187.149.121.224 5556598b-0763-49d4-b6c8-45ee074e68c4 2020-12-31 21:32:03.433969 50772 4009 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1260\namount: !ruby/object:BigDecimal 18:0.399E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.399E3\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1895\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 bc7c6a65-34fd-431c-a493-a074bde75e91 2020-12-31 21:32:32.393119 50773 2526 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.121.224 bc7c6a65-34fd-431c-a493-a074bde75e91 2020-12-31 21:32:32.417385 50774 4009 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 73699d65-744f-4af5-a135-02563d615855 2020-12-31 21:32:59.006755 50775 5254 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1260\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.2E3\nmove_type: '1'\nsale_id: 4009\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1895\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1122'\n 1 movimiento de efectivo por venta con folio PV1-V-1895 187.149.121.224 73699d65-744f-4af5-a135-02563d615855 2020-12-31 21:32:59.033372 50776 5255 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1260\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.199E3\nmove_type: '1'\nsale_id: 4009\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1895\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.199E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1122'\n 1 movimiento de efectivo por venta con folio PV1-V-1895 187.149.121.224 781cb205-565d-4a68-8383-337552775373 2020-12-31 21:33:09.344906 50777 4010 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1260\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.119E3\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1896\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 a6639174-f45f-4bc8-9e42-38e4e77bb5bc 2020-12-31 21:40:09.521247 50778 1156 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 18 \N 187.149.121.224 a6639174-f45f-4bc8-9e42-38e4e77bb5bc 2020-12-31 21:40:09.568584 50779 4010 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 190d5e94-8384-421e-824e-d539edd8e68a 2020-12-31 21:40:36.663871 50780 5256 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1260\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.35E3\nmove_type: '1'\nsale_id: 4010\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1896\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.15E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1896 187.149.121.224 190d5e94-8384-421e-824e-d539edd8e68a 2020-12-31 21:40:36.686295 50781 4011 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1262\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1195\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 05ba9ec5-c015-4db9-af89-9682646a4c19 2020-12-31 21:46:47.629209 50782 2655 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.62.49 05ba9ec5-c015-4db9-af89-9682646a4c19 2020-12-31 21:46:47.672564 50783 4011 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 5e6061f1-9d87-4454-bee8-f7d36fc79b31 2020-12-31 21:47:25.03049 50784 5257 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1262\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 4011\ncardnumber: 4255\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1195\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1195 189.186.62.49 5e6061f1-9d87-4454-bee8-f7d36fc79b31 2020-12-31 21:47:25.071094 50900 378 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1264\nquantity: !ruby/object:BigDecimal 18:0.12E4\nstatus: 1\nobservations: SUELDO NAYELI\nexpense_date: 2021-01-02\nexpense_code: PV3-E-55\n 1 Egreso por 1200.0 registrado 189.186.62.49 ce1be8c8-aff5-4fc8-bb1a-26de5eab9555 2021-01-03 01:50:44.054021 50785 4012 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1262\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1196\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 f5c52ed9-5326-42fa-8215-a72b794585eb 2020-12-31 22:00:41.009327 50786 2375 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 41 \N 189.186.62.49 f5c52ed9-5326-42fa-8215-a72b794585eb 2020-12-31 22:00:41.034246 50787 4012 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 09937846-5953-499e-b63b-b98e1f146c68 2020-12-31 22:01:20.68086 50788 5258 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1262\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 4012\ncardnumber: 2112\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1196\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1196 189.186.62.49 09937846-5953-499e-b63b-b98e1f146c68 2020-12-31 22:01:20.702247 50789 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 20:25:43.850890000 Z\n- &1 2020-12-31 20:39:34.276711000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 22:05:51.720638698 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938317\n mask_addr: 4294967295\nsign_in_count:\n- 2259\n- 2260\n 4520 \N 200.68.151.13 7eec5abf-f113-493b-aabc-011ab63ebffe 2020-12-31 22:05:51.727712 50790 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sr7hSv4TzCYay1HnhT6h\n- 3iA2nRf5KR9o4Q5Gsy2B\n 4521 \N 200.68.151.13 7eec5abf-f113-493b-aabc-011ab63ebffe 2020-12-31 22:05:51.744955 50791 4013 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1260\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1897\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 3dd2844e-73e9-4728-be08-43279276088e 2020-12-31 22:06:15.762304 50792 1283 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 187.149.121.224 3dd2844e-73e9-4728-be08-43279276088e 2020-12-31 22:06:15.790841 50793 4013 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV1-V-1897 cancelada. 187.149.121.224 7f8737bf-baa0-4655-a237-e9a6733594e6 2020-12-31 22:06:59.276606 50794 1283 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 13 \N 187.149.121.224 7f8737bf-baa0-4655-a237-e9a6733594e6 2020-12-31 22:06:59.309185 50795 4014 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1260\namount: !ruby/object:BigDecimal 18:0.1218E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1218E4\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1898\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 c095c894-d699-43fa-b1f4-b5a48e367bc8 2020-12-31 22:07:15.066748 50796 1283 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 14 \N 187.149.121.224 c095c894-d699-43fa-b1f4-b5a48e367bc8 2020-12-31 22:07:15.09985 50797 2138 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.121.224 c095c894-d699-43fa-b1f4-b5a48e367bc8 2020-12-31 22:07:15.120316 50798 4015 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1262\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1197\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 0a58c563-586c-42c5-b59d-a6434991611d 2020-12-31 22:07:52.144281 50799 1269 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.62.49 0a58c563-586c-42c5-b59d-a6434991611d 2020-12-31 22:07:52.178221 50800 4014 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 5d70580e-4d9e-46f6-8a35-94cb0922c6c7 2020-12-31 22:08:06.670418 50801 5259 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1260\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1218E4\nmove_type: '1'\nsale_id: 4014\ncardnumber: 2252\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1898\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1898 187.149.121.224 5d70580e-4d9e-46f6-8a35-94cb0922c6c7 2020-12-31 22:08:06.693311 50802 4015 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 d7313584-7b00-4062-b53e-510e5b3606fd 2020-12-31 22:09:04.394127 50803 5260 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1262\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1199E4\nmove_type: '1'\nsale_id: 4015\ncardnumber: 5114\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1197\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1197 189.186.62.49 d7313584-7b00-4062-b53e-510e5b3606fd 2020-12-31 22:09:04.422005 50804 4016 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1260\namount: !ruby/object:BigDecimal 18:0.189E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.189E3\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1899\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 8fb80ea8-fa65-438c-8751-bcd1d2344edb 2020-12-31 22:33:18.166135 50805 2077 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 187.149.121.224 8fb80ea8-fa65-438c-8751-bcd1d2344edb 2020-12-31 22:33:18.195425 50806 4016 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 340b1aa8-b4b6-49cd-aa6e-59c3f58be039 2020-12-31 22:34:08.146317 50807 5261 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1260\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.189E3\nmove_type: '1'\nsale_id: 4016\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1899\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.311E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1899 187.149.121.224 340b1aa8-b4b6-49cd-aa6e-59c3f58be039 2020-12-31 22:34:08.168859 50808 4017 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1262\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1198\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 3e508ec6-d469-45b2-a403-10ba62d93a96 2020-12-31 22:35:46.254103 50809 2664 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.62.49 3e508ec6-d469-45b2-a403-10ba62d93a96 2020-12-31 22:35:46.279909 50810 4017 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 1dcae942-f8f5-4a1d-8e6b-8fd081ebffd7 2020-12-31 22:36:01.381477 50811 5262 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1262\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.599E3\nmove_type: '1'\nsale_id: 4017\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1198\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1198 189.186.62.49 1dcae942-f8f5-4a1d-8e6b-8fd081ebffd7 2020-12-31 22:36:01.401545 50812 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 20:39:34.276711000 Z\n- &1 2020-12-31 22:05:51.720638000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 22:36:17.816091728 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938317\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 2260\n- 2261\n 4522 \N 187.149.121.224 546a0340-4a2d-464f-8a9d-7e225d2d741a 2020-12-31 22:36:17.824293 50813 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3iA2nRf5KR9o4Q5Gsy2B\n- WkB3oKNa_GJyM5gk62kx\n 4523 \N 187.149.121.224 546a0340-4a2d-464f-8a9d-7e225d2d741a 2020-12-31 22:36:17.843287 50814 4018 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1262\namount: !ruby/object:BigDecimal 18:0.189E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.189E3\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1199\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 2173970c-ffce-4b6d-950f-4718918b636c 2020-12-31 22:37:07.756969 50815 2398 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.62.49 2173970c-ffce-4b6d-950f-4718918b636c 2020-12-31 22:37:07.78025 50816 4018 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 d575c612-a5ed-4a09-9663-5059930b09c3 2020-12-31 22:37:21.402825 50817 5263 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1262\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.189E3\nmove_type: '1'\nsale_id: 4018\ncardnumber: 2452\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1199\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1199 189.186.62.49 d575c612-a5ed-4a09-9663-5059930b09c3 2020-12-31 22:37:21.469536 50818 2606 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.121.224 9eafb826-84ed-4908-94f0-c8b558f24e26 2020-12-31 22:37:52.59284 50819 2606 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.121.224 6fce3586-d378-4e79-98ba-52b69de038df 2020-12-31 22:37:56.479385 50820 794 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2020-12-31\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.121.224 4c81f4a2-153f-4d09-ae32-ca0c42d96377 2020-12-31 22:37:57.021995 50821 794 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-31\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.62.49 f751863a-5f16-41ea-ad85-8df66c042ccd 2020-12-31 22:38:40.762645 50822 2669 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1536\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.3E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.62.49 f751863a-5f16-41ea-ad85-8df66c042ccd 2020-12-31 22:38:40.7856 50823 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 20:37:01.952170000 Z\n- &1 2020-12-31 20:40:52.284695000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 22:39:00.563772112 Z\nsign_in_count:\n- 232\n- 233\n 466 \N 187.149.121.224 4e439dd9-1053-4607-9f3d-8877f23ac7d3 2020-12-31 22:39:00.56971 50824 9 User \N \N 9 User \N update ---\nunique_session_id:\n- FzdtmHbuU-ayBef2rshn\n- pUgb4SMwydbR57WbCr6Y\n 467 \N 187.149.121.224 4e439dd9-1053-4607-9f3d-8877f23ac7d3 2020-12-31 22:39:00.583996 50825 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 22:05:51.720638000 Z\n- &1 2020-12-31 22:36:17.816091000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 22:40:56.692417529 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 2261\n- 2262\n 4524 \N 187.149.121.224 5d218b27-7709-4c1f-89b6-a0055710ff9a 2020-12-31 22:40:56.699638 50826 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WkB3oKNa_GJyM5gk62kx\n- "-fYW9sNzLDFbGtoFGCzx"\n 4525 \N 187.149.121.224 5d218b27-7709-4c1f-89b6-a0055710ff9a 2020-12-31 22:40:56.721308 50827 4019 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1262\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1200\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 67e4cb19-e535-450d-8eff-bf467ffeb040 2020-12-31 22:41:00.148329 50828 2669 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.62.49 67e4cb19-e535-450d-8eff-bf467ffeb040 2020-12-31 22:41:00.181505 50829 4019 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 8719f461-6f71-4b0c-9c5a-4096b7340a62 2020-12-31 22:41:13.330524 50830 5264 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1262\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 4019\ncardnumber: 5241\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1200\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1200 189.186.62.49 8719f461-6f71-4b0c-9c5a-4096b7340a62 2020-12-31 22:41:13.352809 50831 795 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2020-12-31\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.121.224 c4585385-6289-40ee-857d-cd6696fd4c81 2020-12-31 22:41:30.108476 50832 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 20:40:52.284695000 Z\n- &1 2020-12-31 22:39:00.563772000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 22:41:55.150599876 Z\nsign_in_count:\n- 233\n- 234\n 468 \N 187.149.121.224 e4b1cb2e-67e0-44c7-b391-68f071332fde 2020-12-31 22:41:55.156553 50833 9 User \N \N 9 User \N update ---\nunique_session_id:\n- pUgb4SMwydbR57WbCr6Y\n- SQts83qfzZQaW4DJxAyy\n 469 \N 187.149.121.224 e4b1cb2e-67e0-44c7-b391-68f071332fde 2020-12-31 22:41:55.16972 50834 795 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-31\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.121.224 93aba721-6041-4414-bfa7-bd30cb8e2b51 2020-12-31 22:42:19.557717 50835 1457 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.121.224 93aba721-6041-4414-bfa7-bd30cb8e2b51 2020-12-31 22:42:19.574524 50836 4020 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1260\namount: !ruby/object:BigDecimal 18:0.1698E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3E3\ntotal: !ruby/object:BigDecimal 18:0.1398E4\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1900\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 1a9f3a57-92b0-470b-98c3-a4bcf1e16234 2020-12-31 22:43:57.077104 50837 1457 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.121.224 1a9f3a57-92b0-470b-98c3-a4bcf1e16234 2020-12-31 22:43:57.106495 50838 786 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.21E2\n- !ruby/object:BigDecimal 18:0.2E2\n 23 \N 187.149.121.224 1a9f3a57-92b0-470b-98c3-a4bcf1e16234 2020-12-31 22:43:57.129587 50839 4020 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 db1e1acc-9568-4b3b-bf4c-79bc3802c296 2020-12-31 22:44:06.052063 50840 5265 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1260\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1398E4\nmove_type: '1'\nsale_id: 4020\ncardnumber: 1255\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1900\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1900 187.149.121.224 db1e1acc-9568-4b3b-bf4c-79bc3802c296 2020-12-31 22:44:06.074306 50841 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 22:36:17.816091000 Z\n- &1 2020-12-31 22:40:56.692417000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 22:45:09.542912638 Z\nsign_in_count:\n- 2262\n- 2263\n 4526 \N 187.149.121.224 46744866-8c3c-4f1d-bd8c-4c1621666715 2020-12-31 22:45:09.549212 50842 4 User \N \N 4 User \N update ---\nunique_session_id:\n- "-fYW9sNzLDFbGtoFGCzx"\n- erzwfndgZ-5r5xSsyxv-\n 4527 \N 187.149.121.224 46744866-8c3c-4f1d-bd8c-4c1621666715 2020-12-31 22:45:09.564993 50843 2618 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.121.224 8485115c-a29d-4cc5-9c51-011042ed99cc 2020-12-31 22:46:46.154459 50844 796 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2020-12-31\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.121.224 ec0d50e0-a505-477f-9b01-36892dbb9bea 2020-12-31 22:46:48.740051 50845 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 22:39:00.563772000 Z\n- &1 2020-12-31 22:41:55.150599000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 22:47:15.321841145 Z\nsign_in_count:\n- 234\n- 235\n 470 \N 187.149.121.224 1da9c8c5-486b-4746-aa9e-1e31a7546b6a 2020-12-31 22:47:15.328733 50846 9 User \N \N 9 User \N update ---\nunique_session_id:\n- SQts83qfzZQaW4DJxAyy\n- oBiYAqQNj7hk8Ggzjsx_\n 471 \N 187.149.121.224 1da9c8c5-486b-4746-aa9e-1e31a7546b6a 2020-12-31 22:47:15.355369 50847 796 Transfer \N \N 9 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 9\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2020-12-31\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.121.224 4ad60d0c-831d-4afc-94b9-362825270129 2020-12-31 22:47:37.360309 50848 2605 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.121.224 4ad60d0c-831d-4afc-94b9-362825270129 2020-12-31 22:47:37.386483 50849 4021 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1260\namount: !ruby/object:BigDecimal 18:0.3927E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.488E3\ntotal: !ruby/object:BigDecimal 18:0.3439E4\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1901\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 139b8929-390c-42b4-8234-0e0266354f55 2020-12-31 22:50:48.565029 50850 2605 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.121.224 139b8929-390c-42b4-8234-0e0266354f55 2020-12-31 22:50:48.603968 50851 1273 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 17 \N 187.149.121.224 139b8929-390c-42b4-8234-0e0266354f55 2020-12-31 22:50:48.63644 50852 2355 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.121.224 139b8929-390c-42b4-8234-0e0266354f55 2020-12-31 22:50:48.661735 50853 4021 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 22b7619b-5f9f-456a-bd86-317e4d5282bb 2020-12-31 22:51:00.093839 50854 5266 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1260\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3439E4\nmove_type: '1'\nsale_id: 4021\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1901\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E4\nchange: !ruby/object:BigDecimal 18:0.61E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1901 187.149.121.224 22b7619b-5f9f-456a-bd86-317e4d5282bb 2020-12-31 22:51:00.121951 50855 377 Expense \N \N 9 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 1260\nquantity: !ruby/object:BigDecimal 18:0.109E3\nstatus: 1\nobservations: comida monse\nexpense_date: 2020-12-31\nexpense_code: PV1-E-261\n 1 Egreso por 109.0 registrado 187.149.121.224 9ac142f3-7cd8-46ee-b575-ba3d0c7c3105 2020-12-31 23:24:02.629729 50856 5267 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1260\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.109E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 377\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.121.224 9ac142f3-7cd8-46ee-b575-ba3d0c7c3105 2020-12-31 23:24:02.653147 50857 1287 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 1260\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.13065E5\namount_out: !ruby/object:BigDecimal 18:0.309E3\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.8518E4\ncash_fund: !ruby/object:BigDecimal 18:0.693E3\nphysical_cash: !ruby/object:BigDecimal 18:0.9211E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 f7245269-40e4-4d35-b461-2c75837b029c 2020-12-31 23:27:32.976862 50858 1260 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 f7245269-40e4-4d35-b461-2c75837b029c 2020-12-31 23:27:32.993109 50859 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 22:40:56.692417000 Z\n- &1 2020-12-31 22:45:09.542912000 Z\ncurrent_sign_in_at:\n- *1\n- 2020-12-31 23:34:33.333273460 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938317\n mask_addr: 4294967295\nsign_in_count:\n- 2263\n- 2264\n 4528 \N 200.68.151.13 654e0491-a9af-48b8-9ec6-bab523b5b306 2020-12-31 23:34:33.341302 50860 4 User \N \N 4 User \N update ---\nunique_session_id:\n- erzwfndgZ-5r5xSsyxv-\n- 3JsnmGdtXJyFwz93qxLQ\n 4529 \N 200.68.151.13 654e0491-a9af-48b8-9ec6-bab523b5b306 2020-12-31 23:34:33.359315 50861 1263 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.693E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 693.0 187.149.121.224 94a94d59-4118-4b62-b7a2-8a7b7e9af8a8 2021-01-01 00:01:05.159632 50862 4022 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1263\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1902\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 dd3db199-2a20-4703-9b2a-34119e195d4b 2021-01-01 00:01:15.92084 50863 2374 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 38 \N 187.149.121.224 dd3db199-2a20-4703-9b2a-34119e195d4b 2021-01-01 00:01:15.946514 50864 4022 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 3ba9f88e-ad4e-4eb4-bf5e-b5ff6b706460 2021-01-01 00:02:29.036899 50865 5268 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1263\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1799E4\nmove_type: '1'\nsale_id: 4022\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1902\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E4\nchange: !ruby/object:BigDecimal 18:0.201E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1902 187.149.121.224 3ba9f88e-ad4e-4eb4-bf5e-b5ff6b706460 2021-01-01 00:02:29.056957 50866 4023 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1262\namount: !ruby/object:BigDecimal 18:0.189E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.189E3\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1201\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 55e1d63e-da77-48f6-9a55-854659534ec4 2021-01-01 00:14:36.795812 50867 2414 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.62.49 55e1d63e-da77-48f6-9a55-854659534ec4 2021-01-01 00:14:36.831352 50868 4023 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 2b2d1f56-fb69-4211-9be1-eebef8634f84 2021-01-01 00:14:42.955861 50869 5269 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1262\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.189E3\nmove_type: '1'\nsale_id: 4023\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1201\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.189E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1201 189.186.62.49 2b2d1f56-fb69-4211-9be1-eebef8634f84 2021-01-01 00:14:42.974884 50870 4024 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1262\namount: !ruby/object:BigDecimal 18:0.1045E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1045E4\nstatus: 0\ndate_sale: 2020-12-31\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1202\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 5ec194ce-ed13-4824-ad87-3f6294200eae 2021-01-01 01:05:53.669354 50871 2621 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.62.49 5ec194ce-ed13-4824-ad87-3f6294200eae 2021-01-01 01:05:53.70144 50872 4024 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 1fa9fc5c-e68e-4c15-b473-5f512e58f642 2021-01-01 01:06:16.91207 50873 5270 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1262\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1045E4\nmove_type: '1'\nsale_id: 4024\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1202\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.55E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1202 189.186.62.49 1fa9fc5c-e68e-4c15-b473-5f512e58f642 2021-01-01 01:06:16.935509 50874 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 22:45:09.542912000 Z\n- &1 2020-12-31 23:34:33.333273000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-01 01:10:51.693996861 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938317\n mask_addr: 4294967295\nsign_in_count:\n- 2264\n- 2265\n 4530 \N 200.68.151.13 793a957f-0b99-42b9-86fc-a42cc60797ce 2021-01-01 01:10:51.700811 50875 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3JsnmGdtXJyFwz93qxLQ\n- SZCv9vJqxzixMv_Kxb-a\n 4531 \N 200.68.151.13 793a957f-0b99-42b9-86fc-a42cc60797ce 2021-01-01 01:10:51.718237 50876 1288 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 1263\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.1799E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.1799E4\ncash_fund: !ruby/object:BigDecimal 18:0.693E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2492E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 89acdeeb-afb7-432f-a4b0-ce8123ddda0f 2021-01-01 01:17:54.67678 50877 1263 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 89acdeeb-afb7-432f-a4b0-ce8123ddda0f 2021-01-01 01:17:54.693272 50944 21 User \N \N 21 User \N update ---\nunique_session_id:\n- mW1NYeeTzrqrcxoeX4Rm\n- xuphm2Czzx8f8sT8SH5f\n 766 \N 189.186.62.49 39767890-8220-49de-9b83-801a3fb1e659 2021-01-04 23:43:38.43752 51419 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xdS9xSDY8AQnmNSvveys\n- smYgRcpupv_aKHwD1Fhj\n 1500 \N 187.149.121.224 397c82e9-0bb9-4d76-b2f3-4e35624f8c40 2021-01-14 17:18:07.780574 50878 1289 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1262\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.9903E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.4E4\ncash_fund: !ruby/object:BigDecimal 18:0.973E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4973E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.62.49 dbc7d118-dffe-47b8-8a8f-f3f407b12fad 2021-01-01 02:00:50.505681 50879 1262 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.62.49 dbc7d118-dffe-47b8-8a8f-f3f407b12fad 2021-01-01 02:00:50.534831 50880 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-30 20:02:17.757992000 Z\n- &1 2020-12-31 18:44:18.669326000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-02 21:34:34.523701944 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\nsign_in_count:\n- 379\n- 380\n 761 \N 189.186.62.49 2d43ff43-67b7-49ce-a240-451d664142cf 2021-01-02 21:34:34.554535 50881 21 User \N \N 21 User \N update ---\nunique_session_id:\n- seYS81FyTyc6zLX_CQsE\n- ATM8PSqx-JdRyuXK9RhM\n 762 \N 189.186.62.49 2d43ff43-67b7-49ce-a240-451d664142cf 2021-01-02 21:34:34.5797 50882 1264 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.973E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 973.0 189.186.62.49 f12bec3a-1f34-454b-8454-a6401f9aaacf 2021-01-02 23:22:47.981858 50883 4025 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1264\namount: !ruby/object:BigDecimal 18:0.1108E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.4432E3\ntotal: !ruby/object:BigDecimal 18:0.6648E3\nstatus: 0\ndate_sale: 2021-01-02\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1203\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 fcc5bd10-8cce-4768-b435-32094cbe3992 2021-01-02 23:25:35.419354 50884 2210 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.62.49 fcc5bd10-8cce-4768-b435-32094cbe3992 2021-01-02 23:25:35.462599 50885 2639 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.62.49 fcc5bd10-8cce-4768-b435-32094cbe3992 2021-01-02 23:25:35.502037 50886 4025 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 673df468-ef3b-45db-872a-cb2a6ef42f6a 2021-01-02 23:26:09.630164 50887 5271 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1264\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6648E3\nmove_type: '1'\nsale_id: 4025\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1203\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.352E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1203 189.186.62.49 673df468-ef3b-45db-872a-cb2a6ef42f6a 2021-01-02 23:26:09.664794 50888 4026 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1264\namount: !ruby/object:BigDecimal 18:0.849E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3396E3\ntotal: !ruby/object:BigDecimal 18:0.5094E3\nstatus: 0\ndate_sale: 2021-01-02\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1204\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 6caf23c8-5b48-421f-b929-69ad9682850f 2021-01-02 23:28:49.580395 50889 2637 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 189.186.62.49 6caf23c8-5b48-421f-b929-69ad9682850f 2021-01-02 23:28:49.607442 50890 4026 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 376ae872-525b-4a32-81bd-36238da8da91 2021-01-02 23:29:23.50079 50891 5272 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1264\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5094E3\nmove_type: '1'\nsale_id: 4026\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1204\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.52E3\nchange: !ruby/object:BigDecimal 18:0.106E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1204 189.186.62.49 376ae872-525b-4a32-81bd-36238da8da91 2021-01-02 23:29:23.523848 50892 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 23:34:33.333273000 Z\n- &1 2021-01-01 01:10:51.693996000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-02 23:48:22.475575225 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535718\n mask_addr: 4294967295\nsign_in_count:\n- 2265\n- 2266\n 4532 \N 177.228.102.166 088c496e-efb2-4966-aeed-c843db0c8ab1 2021-01-02 23:48:22.517529 50893 4 User \N \N 4 User \N update ---\nunique_session_id:\n- SZCv9vJqxzixMv_Kxb-a\n- EM2KsGswz_p2ZxjuquKj\n 4533 \N 177.228.102.166 088c496e-efb2-4966-aeed-c843db0c8ab1 2021-01-02 23:48:22.546203 50894 4027 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1264\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2021-01-02\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1205\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 8d5c9c6d-62ce-4786-be67-784594914ee4 2021-01-02 23:54:09.334374 50895 2642 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 14 \N 189.186.62.49 8d5c9c6d-62ce-4786-be67-784594914ee4 2021-01-02 23:54:09.364347 50896 4027 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 1b078c25-6dc0-451d-a2bb-9cacbabce855 2021-01-02 23:55:18.93605 50897 5273 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1264\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 4027\ncardnumber: 7542\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1205\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1205 189.186.62.49 1b078c25-6dc0-451d-a2bb-9cacbabce855 2021-01-02 23:55:18.970747 50898 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-01 01:10:51.693996000 Z\n- &1 2021-01-02 23:48:22.475575000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-03 01:18:03.075313420 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938317\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535718\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535718\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938418\n mask_addr: 4294967295\nsign_in_count:\n- 2266\n- 2267\n 4534 \N 200.68.151.114 fea3582b-b5ee-4f85-9ab5-ce08318d3a9a 2021-01-03 01:18:03.11123 50899 4 User \N \N 4 User \N update ---\nunique_session_id:\n- EM2KsGswz_p2ZxjuquKj\n- f3i7hd986R2VDJVwzZ-L\n 4535 \N 200.68.151.114 fea3582b-b5ee-4f85-9ab5-ce08318d3a9a 2021-01-03 01:18:03.155122 50901 5274 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1264\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 378\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.62.49 ce1be8c8-aff5-4fc8-bb1a-26de5eab9555 2021-01-03 01:50:44.081353 50902 1290 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1264\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.26732E4\namount_out: !ruby/object:BigDecimal 18:0.12E4\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.947E3\nphysical_cash: !ruby/object:BigDecimal 18:0.947E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.62.49 e4c45319-56df-4759-959a-6c92d8eb6cfa 2021-01-03 01:55:46.308081 50903 1264 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.62.49 e4c45319-56df-4759-959a-6c92d8eb6cfa 2021-01-03 01:55:46.32225 50904 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 18:44:18.669326000 Z\n- &1 2021-01-02 21:34:34.523701000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-03 19:47:30.219401702 Z\nsign_in_count:\n- 380\n- 381\n 763 \N 189.186.62.49 0488d2db-3488-4e5b-9de3-9828d490a7a9 2021-01-03 19:47:30.24587 50905 21 User \N \N 21 User \N update ---\nunique_session_id:\n- ATM8PSqx-JdRyuXK9RhM\n- mW1NYeeTzrqrcxoeX4Rm\n 764 \N 189.186.62.49 0488d2db-3488-4e5b-9de3-9828d490a7a9 2021-01-03 19:47:30.266432 50906 1265 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.947E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 947.0 189.186.62.49 4e224577-5667-40af-a3bc-024984fbd999 2021-01-03 19:47:43.58073 50907 4028 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1265\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2021-01-03\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1206\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 074e56fe-f50a-46ba-a3b9-c85ee08f91ed 2021-01-03 19:48:55.494236 50908 2506 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 22 \N 189.186.62.49 074e56fe-f50a-46ba-a3b9-c85ee08f91ed 2021-01-03 19:48:55.526863 50909 4028 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 189a3768-8871-411f-8ce0-5c933b03cc1e 2021-01-03 19:49:44.50831 50910 5275 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1265\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 4028\ncardnumber: 1245\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1206\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1206 189.186.62.49 189a3768-8871-411f-8ce0-5c933b03cc1e 2021-01-03 19:49:44.534431 50911 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-02 23:48:22.475575000 Z\n- &1 2021-01-03 01:18:03.075313000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-03 22:19:18.032488439 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535718\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938418\n mask_addr: 4294967295\nsign_in_count:\n- 2267\n- 2268\n 4536 \N 200.68.151.114 a8e7e890-deb5-49d4-a83e-ba838d358b5f 2021-01-03 22:19:18.063031 50912 4 User \N \N 4 User \N update ---\nunique_session_id:\n- f3i7hd986R2VDJVwzZ-L\n- HquFYRZ3TbyV5FNQxbjd\n 4537 \N 200.68.151.114 a8e7e890-deb5-49d4-a83e-ba838d358b5f 2021-01-03 22:19:18.091434 50913 1291 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1265\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1599E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.947E3\nphysical_cash: !ruby/object:BigDecimal 18:0.947E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.62.49 62b16e1c-1dca-4a53-a81c-e764e67f0208 2021-01-03 22:51:50.598666 50914 1265 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.62.49 62b16e1c-1dca-4a53-a81c-e764e67f0208 2021-01-03 22:51:50.617608 50915 1292 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1265\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1599E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.947E3\nphysical_cash: !ruby/object:BigDecimal 18:0.947E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.62.49 863b9dbd-5eb0-4776-b6fb-97330550acae 2021-01-03 22:51:50.781255 50916 1266 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.693E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 693.0 187.149.121.224 14ebc783-6764-42f9-8329-4d7f1a8c3a54 2021-01-04 17:00:45.925973 50917 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-03 01:18:03.075313000 Z\n- &1 2021-01-03 22:19:18.032488000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-04 18:00:10.932660487 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938418\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535742\n mask_addr: 4294967295\nsign_in_count:\n- 2268\n- 2269\n 4538 \N 177.228.102.190 c462df21-aa4d-4eb6-8645-5dc14f4821c1 2021-01-04 18:00:10.940049 50918 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HquFYRZ3TbyV5FNQxbjd\n- zWj_PoHv82nzVe25EQFJ\n 4539 \N 177.228.102.190 c462df21-aa4d-4eb6-8645-5dc14f4821c1 2021-01-04 18:00:10.961193 50919 4029 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1266\namount: !ruby/object:BigDecimal 18:0.978E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.489E3\ntotal: !ruby/object:BigDecimal 18:0.489E3\nstatus: 0\ndate_sale: 2021-01-04\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1903\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 aa795e63-3947-4611-9d35-2d6038975f91 2021-01-04 21:18:40.335382 50920 2534 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.121.224 aa795e63-3947-4611-9d35-2d6038975f91 2021-01-04 21:18:40.363167 50921 4029 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 3e266a57-7dee-4b35-adb9-3195e920ef17 2021-01-04 21:20:18.234322 50922 5276 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1266\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.489E3\nmove_type: '1'\nsale_id: 4029\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1903\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1903 187.149.121.224 3e266a57-7dee-4b35-adb9-3195e920ef17 2021-01-04 21:20:18.257444 50923 4030 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1266\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2021-01-04\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1904\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 a1efa884-0998-465a-a2da-78946a9a487e 2021-01-04 21:21:23.432737 50924 2374 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 39 \N 187.149.121.224 a1efa884-0998-465a-a2da-78946a9a487e 2021-01-04 21:21:23.457067 50925 4030 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 0040b5f7-d9b4-4dbc-8e21-dbd0f9857121 2021-01-04 21:22:51.289507 50926 5277 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1266\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 4030\ncardnumber: 5349\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1904\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1904 187.149.121.224 0040b5f7-d9b4-4dbc-8e21-dbd0f9857121 2021-01-04 21:22:51.31581 50927 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 22:41:55.150599000 Z\n- &1 2020-12-31 22:47:15.321841000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-04 21:36:23.234679494 Z\nsign_in_count:\n- 235\n- 236\n 472 \N 187.149.121.224 0fe6e231-55ba-4df6-92df-b6268151333c 2021-01-04 21:36:23.24108 50928 9 User \N \N 9 User \N update ---\nunique_session_id:\n- oBiYAqQNj7hk8Ggzjsx_\n- 1rzGiDHxSxMAjxJayytN\n 473 \N 187.149.121.224 0fe6e231-55ba-4df6-92df-b6268151333c 2021-01-04 21:36:23.256099 50929 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-03 22:19:18.032488000 Z\n- &1 2021-01-04 18:00:10.932660000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-04 21:36:55.295394049 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938418\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535742\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535742\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 2269\n- 2270\n 4540 \N 187.149.121.224 5f9e2fdf-1911-4f73-818e-8cfa28d3d8f8 2021-01-04 21:36:55.303115 50930 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zWj_PoHv82nzVe25EQFJ\n- ZGqzadEMPzybzhtNHYrn\n 4541 \N 187.149.121.224 5f9e2fdf-1911-4f73-818e-8cfa28d3d8f8 2021-01-04 21:36:55.323115 50931 1555 Product \N \N 4 User \N create ---\nsku: BOL-1555\nname: 1BLCV202669\ndescription: BOLSITA CROSSBOSY\nprice_base: !ruby/object:BigDecimal 18:0.6495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170818512'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1555 fue creado. 187.149.121.224 d1eccf5a-2a97-48e9-942f-0950594289c6 2021-01-04 21:39:28.297848 50932 1556 Product \N \N 4 User \N create ---\nsku: BOL-1556\nname: 3BLCBV20446\ndescription: BOLSO CROSSBODY RAYA EN MEDIO\nprice_base: !ruby/object:BigDecimal 18:0.6495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170824469'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1556 fue creado. 187.149.121.224 307d5f8c-bb4e-4e0f-a8df-51130196d4ab 2021-01-04 21:41:04.804023 50933 510 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: \npurchase_code: CEN-C-61\namount: !ruby/object:BigDecimal 18:0.2798E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2798E4\nobservations: ''\npurchase_date: 2021-01-04\nuser_id: '4'\nstatus: 0\nwarehouse_id: 1\nis_in_dollars: false\nexchange: \n 1 Compra CEN-C-61 por $ 2798.0 MXN creada. 187.149.121.224 678c5a5f-33ff-4d69-87aa-c2a78b518845 2021-01-04 21:41:21.844898 50934 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 22:47:15.321841000 Z\n- &1 2021-01-04 21:36:23.234679000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-04 21:44:38.162097095 Z\nsign_in_count:\n- 236\n- 237\n 474 \N 187.149.121.224 261b43dc-2b05-4736-b2e1-afedce6cbd2d 2021-01-04 21:44:38.167892 50935 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 1rzGiDHxSxMAjxJayytN\n- 9DLsDRUihf5e9aG3qEUL\n 475 \N 187.149.121.224 261b43dc-2b05-4736-b2e1-afedce6cbd2d 2021-01-04 21:44:38.182294 50936 5278 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1249\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3925\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1552'\n 1 \N 187.149.121.224 e7498511-6aea-4960-a543-bb5c59033c53 2021-01-04 21:45:21.809074 50937 5278 CashRegistersMove \N \N 9 User \N update ---\nopen_cash_register_id:\n- 1249\n- 1266\n 2 movimiento de efectivo por venta con folio PV1-V-1857 187.149.121.224 e7498511-6aea-4960-a543-bb5c59033c53 2021-01-04 21:45:21.835017 50938 5279 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1249\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.9E3\nmove_type: '1'\nsale_id: 3925\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.121.224 a85867e0-83d4-4849-8d22-51c648e03f0b 2021-01-04 21:47:28.52592 50939 3925 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.121.224 a85867e0-83d4-4849-8d22-51c648e03f0b 2021-01-04 21:47:28.560601 50940 5279 CashRegistersMove \N \N 9 User \N update ---\nopen_cash_register_id:\n- 1249\n- 1266\n 2 movimiento de efectivo por venta con folio PV1-V-1857 187.149.121.224 a85867e0-83d4-4849-8d22-51c648e03f0b 2021-01-04 21:47:28.579104 50941 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-04 18:00:10.932660000 Z\n- &1 2021-01-04 21:36:55.295394000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-04 21:48:12.224340326 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535742\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 2270\n- 2271\n 4542 \N 187.149.121.224 b6cb56d5-4118-4af7-ac10-c08d9d1dc2bd 2021-01-04 21:48:12.232058 50942 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZGqzadEMPzybzhtNHYrn\n- tpgtzNocq3hKF37Hmo_Z\n 4543 \N 187.149.121.224 b6cb56d5-4118-4af7-ac10-c08d9d1dc2bd 2021-01-04 21:48:12.249681 50943 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-02 21:34:34.523701000 Z\n- &1 2021-01-03 19:47:30.219401000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-04 23:43:38.417846154 Z\nsign_in_count:\n- 381\n- 382\n 765 \N 189.186.62.49 39767890-8220-49de-9b83-801a3fb1e659 2021-01-04 23:43:38.423589 50945 1267 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.947E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 947.0 189.186.62.49 531d7b50-4185-4cb7-b54f-65d984a9e42b 2021-01-04 23:43:51.716867 50946 1557 Product \N \N 21 User \N create ---\nsku: CAR-1557\nname: 2BICO207333\ndescription: CARTERA CADENA GRANDE\nprice_base: !ruby/object:BigDecimal 18:0.4995E3\nprice_sale: !ruby/object:BigDecimal 18:0.999E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170844887'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1557 fue creado. 189.186.62.49 b9312088-5666-448b-953a-91e29f4490b4 2021-01-04 23:53:40.348273 50947 2670 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1557\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.62.49 b9312088-5666-448b-953a-91e29f4490b4 2021-01-04 23:53:40.393387 50948 1558 Product \N \N 21 User \N create ---\nsku: BOL-1558\nname: 1BLCO20632\ndescription: BACK PACK TELA CHAMARRA\nprice_base: !ruby/object:BigDecimal 18:0.10495E4\nprice_sale: !ruby/object:BigDecimal 18:0.2099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170841299'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1558 fue creado. 189.186.62.49 80aab9da-3fff-465e-91d6-ea2f0690be6b 2021-01-04 23:54:48.224976 50949 2671 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1558\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.62.49 80aab9da-3fff-465e-91d6-ea2f0690be6b 2021-01-04 23:54:48.262947 50950 511 Purchase \N \N 21 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-152\namount: !ruby/object:BigDecimal 18:0.5746E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.5746E4\nobservations: ''\npurchase_date: 2021-01-04\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-152 por $ 5746.0 MXN creada. 189.186.62.49 8a93f400-12b4-494a-b400-f2c58fcfd426 2021-01-04 23:54:52.231273 50951 2631 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 16 \N 189.186.62.49 8a93f400-12b4-494a-b400-f2c58fcfd426 2021-01-04 23:54:52.258363 50952 2672 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1555\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.62.49 8a93f400-12b4-494a-b400-f2c58fcfd426 2021-01-04 23:54:52.292076 50953 2673 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1556\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.62.49 8a93f400-12b4-494a-b400-f2c58fcfd426 2021-01-04 23:54:52.320631 50954 2670 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.62.49 8a93f400-12b4-494a-b400-f2c58fcfd426 2021-01-04 23:54:52.344726 50955 2671 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.62.49 8a93f400-12b4-494a-b400-f2c58fcfd426 2021-01-04 23:54:52.369669 50956 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2021-01-04 21:36:23.234679000 Z\n- &1 2021-01-04 21:44:38.162097000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-05 00:05:38.188720398 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\nsign_in_count:\n- 237\n- 238\n 476 \N 189.186.62.49 dc5f37be-7a79-498b-a6a3-4734323be4c4 2021-01-05 00:05:38.195913 50957 9 User \N \N 9 User \N update ---\nunique_session_id:\n- 9DLsDRUihf5e9aG3qEUL\n- pqfSrLEjb7yx8ji9m9Bz\n 477 \N 189.186.62.49 dc5f37be-7a79-498b-a6a3-4734323be4c4 2021-01-05 00:05:38.212104 50958 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 02:39:08.662179000 Z\n- &1 2020-12-31 03:09:48.901382000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-05 00:14:26.785283526 Z\nsign_in_count:\n- 468\n- 469\n 939 \N 189.186.62.49 4b6fb284-98ba-442e-ac0a-0bebc59e1cd2 2021-01-05 00:14:26.791545 50959 18 User \N \N 18 User \N update ---\nunique_session_id:\n- uuXKf5Ry8_MiegxgP8n1\n- Bs1f5exWcVyLMSGLAGxC\n 940 \N 189.186.62.49 4b6fb284-98ba-442e-ac0a-0bebc59e1cd2 2021-01-05 00:14:26.806141 50960 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-04 21:36:55.295394000 Z\n- &1 2021-01-04 21:48:12.224340000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-05 00:36:33.551885674 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\nsign_in_count:\n- 2271\n- 2272\n 4544 \N 189.186.62.49 2e77bd4d-d434-4bb7-a0ab-50319f41b650 2021-01-05 00:36:33.559392 50961 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tpgtzNocq3hKF37Hmo_Z\n- 1MbaP4K_vuB5Pg-iJ6uT\n 4545 \N 189.186.62.49 2e77bd4d-d434-4bb7-a0ab-50319f41b650 2021-01-05 00:36:33.581589 50962 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2021-01-04 21:44:38.162097000 Z\n- &1 2021-01-05 00:05:38.188720000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-05 01:17:18.488528807 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 238\n- 239\n 478 \N 187.149.121.224 d33b26c6-939e-4662-b245-cdaa631b2252 2021-01-05 01:17:18.51716 50963 9 User \N \N 9 User \N update ---\nunique_session_id:\n- pqfSrLEjb7yx8ji9m9Bz\n- AGCxU7zBSWP_UpyMrKoG\n 479 \N 187.149.121.224 d33b26c6-939e-4662-b245-cdaa631b2252 2021-01-05 01:17:18.539874 50964 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2020-12-31 03:09:48.901382000 Z\n- &1 2021-01-05 00:14:26.785283000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-05 01:39:10.799724238 Z\nsign_in_count:\n- 469\n- 470\n 941 \N 189.186.62.49 5ff4c3e8-82b8-4c8f-981f-f854b15abd92 2021-01-05 01:39:10.817861 50965 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Bs1f5exWcVyLMSGLAGxC\n- xVP5vgvzRTYuJe6KN4eC\n 942 \N 189.186.62.49 5ff4c3e8-82b8-4c8f-981f-f854b15abd92 2021-01-05 01:39:10.836661 51032 489 Customer \N \N 9 User \N create ---\nnick_name: CHELA\nphone: "(667) 336-5667"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.1E5\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente CHELA fue registrado. 187.149.121.224 09e3bb9d-68f8-4196-a4dd-43326752e1a8 2021-01-06 23:49:20.230819 50966 4031 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1267\namount: !ruby/object:BigDecimal 18:0.1968E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.669E3\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2021-01-04\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1207\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 4f52592b-3400-445b-a2bc-eedb9790cee0 2021-01-05 01:42:09.343301 50967 1268 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 189.186.62.49 4f52592b-3400-445b-a2bc-eedb9790cee0 2021-01-05 01:42:09.372344 50968 2403 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.62.49 4f52592b-3400-445b-a2bc-eedb9790cee0 2021-01-05 01:42:09.403877 50969 4031 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 8f1f3400-a314-4b2a-87d5-b1835f759841 2021-01-05 01:42:15.277786 50970 5280 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1267\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 4031\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1207\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1207 189.186.62.49 8f1f3400-a314-4b2a-87d5-b1835f759841 2021-01-05 01:42:15.299759 50971 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2021-01-05 00:05:38.188720000 Z\n- &1 2021-01-05 01:17:18.488528000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-05 01:46:44.119005047 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\nsign_in_count:\n- 239\n- 240\n 480 \N 189.186.62.49 463d0637-6b0f-4959-91d5-445b48247fe1 2021-01-05 01:46:44.126217 50972 9 User \N \N 9 User \N update ---\nunique_session_id:\n- AGCxU7zBSWP_UpyMrKoG\n- eiszsVRPxQJUZuihm9Vd\n 481 \N 189.186.62.49 463d0637-6b0f-4959-91d5-445b48247fe1 2021-01-05 01:46:44.140802 50973 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2021-01-05 01:17:18.488528000 Z\n- &1 2021-01-05 01:46:44.119005000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-05 01:48:53.721211439 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 240\n- 241\n 482 \N 187.149.121.224 df5a1f06-4d21-4b52-be52-c3e5f1248d82 2021-01-05 01:48:53.728723 50974 9 User \N \N 9 User \N update ---\nunique_session_id:\n- eiszsVRPxQJUZuihm9Vd\n- nepxzz93W4axmAtfPKB4\n 483 \N 187.149.121.224 df5a1f06-4d21-4b52-be52-c3e5f1248d82 2021-01-05 01:48:53.745475 50975 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2021-01-05 01:46:44.119005000 Z\n- &1 2021-01-05 01:48:53.721211000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-05 01:53:22.494953770 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\nsign_in_count:\n- 241\n- 242\n 484 \N 189.186.62.49 85ec0064-b5dc-4656-8781-9c29c39e6f0f 2021-01-05 01:53:22.502128 50976 9 User \N \N 9 User \N update ---\nunique_session_id:\n- nepxzz93W4axmAtfPKB4\n- DNRVsrmEBRUycCA7otez\n 485 \N 189.186.62.49 85ec0064-b5dc-4656-8781-9c29c39e6f0f 2021-01-05 01:53:22.51864 50977 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2021-01-05 01:48:53.721211000 Z\n- &1 2021-01-05 01:53:22.494953000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-05 01:53:31.367565250 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 242\n- 243\n 486 \N 187.149.121.224 4dc2fc6a-3a0a-43db-b408-844d8e1e0223 2021-01-05 01:53:31.376384 50978 9 User \N \N 9 User \N update ---\nunique_session_id:\n- DNRVsrmEBRUycCA7otez\n- FNo-JfmFoZUdyxxkPx1h\n 487 \N 187.149.121.224 4dc2fc6a-3a0a-43db-b408-844d8e1e0223 2021-01-05 01:53:31.393771 50979 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-05 00:14:26.785283000 Z\n- &1 2021-01-05 01:39:10.799724000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-05 01:54:39.028300719 Z\nsign_in_count:\n- 470\n- 471\n 943 \N 189.186.62.49 c55459c4-932e-453f-9baf-a2c61be15338 2021-01-05 01:54:39.034977 50980 18 User \N \N 18 User \N update ---\nunique_session_id:\n- xVP5vgvzRTYuJe6KN4eC\n- Yfx16uX_eAuuA1mULLMw\n 944 \N 189.186.62.49 c55459c4-932e-453f-9baf-a2c61be15338 2021-01-05 01:54:39.050529 50981 1293 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 1266\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.3488E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 9\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1282E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1282E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 ec582c1b-807b-4f31-9631-1370d92f1bad 2021-01-05 01:54:52.196584 50982 1266 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 ec582c1b-807b-4f31-9631-1370d92f1bad 2021-01-05 01:54:52.212701 50983 1294 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1267\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1299E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.1046E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2246E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.62.49 c5b51ded-0fd0-4349-b312-0d3105adc960 2021-01-05 01:58:57.152705 50984 1267 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.62.49 c5b51ded-0fd0-4349-b312-0d3105adc960 2021-01-05 01:58:57.167402 50985 1268 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.1282E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1282.0 187.149.121.224 b02eb7c2-351c-45a4-afcf-2ebc66a60620 2021-01-05 17:04:13.381328 50986 5281 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1268\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3556\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1694 187.149.121.224 90079940-b45e-41a4-9532-811aa91404bf 2021-01-05 18:18:35.287322 50987 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-04 21:48:12.224340000 Z\n- &1 2021-01-05 00:36:33.551885000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-05 20:06:01.964351139 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535486\n mask_addr: 4294967295\nsign_in_count:\n- 2272\n- 2273\n 4546 \N 177.228.101.190 97d57d8e-672e-4184-bca9-cdbec8dbcfd3 2021-01-05 20:06:01.984054 50988 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 1MbaP4K_vuB5Pg-iJ6uT\n- w_C9Uabzs5T1Z7eawUyJ\n 4547 \N 177.228.101.190 97d57d8e-672e-4184-bca9-cdbec8dbcfd3 2021-01-05 20:06:02.009294 50989 4032 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1268\namount: !ruby/object:BigDecimal 18:0.45762E3\ntax: !ruby/object:BigDecimal 18:0.4138E2\ndiscount: !ruby/object:BigDecimal 18:0.199E3\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2021-01-05\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1905\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 1458fef0-97ea-4a94-8a05-47980ec89bfc 2021-01-05 20:19:01.477389 50990 11 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.121.224 1458fef0-97ea-4a94-8a05-47980ec89bfc 2021-01-05 20:19:01.517538 50991 4032 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 67b25dff-b0b4-4ec7-9e5f-ae8de9d18fd5 2021-01-05 20:19:09.664127 50992 5282 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1268\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 4032\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1905\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.1E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1905 187.149.121.224 67b25dff-b0b4-4ec7-9e5f-ae8de9d18fd5 2021-01-05 20:19:09.688648 50993 4033 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1268\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2021-01-05\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1906\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 7a5469cb-5120-4ba9-98ae-493d6148c6b3 2021-01-05 20:23:00.141264 50994 2632 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.121.224 7a5469cb-5120-4ba9-98ae-493d6148c6b3 2021-01-05 20:23:00.168689 50995 4033 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 2576ea7e-9690-454a-bd2c-9e7fbfb252f4 2021-01-05 20:23:15.91233 50996 5283 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1268\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 4033\ncardnumber: 9493\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1906\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1906 187.149.121.224 2576ea7e-9690-454a-bd2c-9e7fbfb252f4 2021-01-05 20:23:15.931701 50997 4034 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1268\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.359E3\ntotal: !ruby/object:BigDecimal 18:0.54E3\nstatus: 0\ndate_sale: 2021-01-05\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1907\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 fa17f394-8e15-42be-b6cf-2e6b9891a562 2021-01-05 22:51:27.921295 50998 1078 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.121.224 fa17f394-8e15-42be-b6cf-2e6b9891a562 2021-01-05 22:51:27.947462 50999 4034 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 e9f093d2-c27a-416f-bbfe-aa726131eb5f 2021-01-05 22:52:02.891361 51000 5284 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1268\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.54E3\nmove_type: '1'\nsale_id: 4034\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1907\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.54E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1907 187.149.121.224 e9f093d2-c27a-416f-bbfe-aa726131eb5f 2021-01-05 22:52:02.91537 51001 4035 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1268\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.469E3\ntotal: !ruby/object:BigDecimal 18:0.0\nstatus: 0\ndate_sale: 2021-01-05\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1908\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 1ea1d8ce-4816-49d7-8a12-16d0a948f8ed 2021-01-05 23:10:46.074324 51002 2555 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.121.224 1ea1d8ce-4816-49d7-8a12-16d0a948f8ed 2021-01-05 23:10:46.116382 51003 4035 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 ab295099-e56f-4387-ad7d-7a46b0b0a609 2021-01-05 23:10:54.808625 51004 5285 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1268\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 4035\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1908\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1908 187.149.121.224 ab295099-e56f-4387-ad7d-7a46b0b0a609 2021-01-05 23:10:54.844895 51005 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-05 01:39:10.799724000 Z\n- &1 2021-01-05 01:54:39.028300000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-05 23:53:40.470015983 Z\nsign_in_count:\n- 471\n- 472\n 945 \N 189.186.62.49 760b491e-36ca-4a64-9278-85900a582750 2021-01-05 23:53:40.511954 51006 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Yfx16uX_eAuuA1mULLMw\n- yXBzC4VxzqsK_bCzjsqw\n 946 \N 189.186.62.49 760b491e-36ca-4a64-9278-85900a582750 2021-01-05 23:53:40.539024 51007 1269 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1046E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1046.0 189.186.62.49 7aee4287-667c-4785-a9d7-30f7dcb3a40c 2021-01-05 23:54:01.565414 51055 1978 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.62.49 517c3fb4-1bf4-4817-bc2a-66f0dcead06a 2021-01-07 01:08:31.226334 51008 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-05 00:36:33.551885000 Z\n- &1 2021-01-05 20:06:01.964351000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-06 00:03:38.226717175 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535486\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535486\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\nsign_in_count:\n- 2273\n- 2274\n 4548 \N 189.186.62.49 552f3345-ab72-4eb5-993a-f969eda12a4b 2021-01-06 00:03:38.246644 51009 4 User \N \N 4 User \N update ---\nunique_session_id:\n- w_C9Uabzs5T1Z7eawUyJ\n- mkuy6voqwd5ZPWax2An3\n 4549 \N 189.186.62.49 552f3345-ab72-4eb5-993a-f969eda12a4b 2021-01-06 00:03:38.269961 51010 797 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2021-01-05\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.62.49 b3967f75-e4f3-4ed1-9d2d-e92329b5f0fe 2021-01-06 00:04:16.396324 51011 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-05 01:54:39.028300000 Z\n- &1 2021-01-05 23:53:40.470015000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-06 00:06:07.550769128 Z\nsign_in_count:\n- 472\n- 473\n 947 \N 189.186.62.49 fb4e056d-2c4a-40e4-a29b-863d8d3c22e5 2021-01-06 00:06:07.556704 51012 18 User \N \N 18 User \N update ---\nunique_session_id:\n- yXBzC4VxzqsK_bCzjsqw\n- 6NszT9GvhSynL33QZWbT\n 948 \N 189.186.62.49 fb4e056d-2c4a-40e4-a29b-863d8d3c22e5 2021-01-06 00:06:07.574667 51013 797 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-01-05\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.62.49 6b9dc904-28a2-4326-b2b4-d1f55b9b2f67 2021-01-06 00:06:28.025199 51014 1094 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 189.186.62.49 6b9dc904-28a2-4326-b2b4-d1f55b9b2f67 2021-01-06 00:06:28.047526 51015 4036 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1269\namount: !ruby/object:BigDecimal 18:0.1937E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.799E3\ntotal: !ruby/object:BigDecimal 18:0.1138E4\nstatus: 0\ndate_sale: 2021-01-05\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1208\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 711d8b17-8b47-479f-8fe1-2fa0b6350755 2021-01-06 00:07:39.96882 51016 2617 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.62.49 711d8b17-8b47-479f-8fe1-2fa0b6350755 2021-01-06 00:07:40.007011 51017 1094 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.62.49 711d8b17-8b47-479f-8fe1-2fa0b6350755 2021-01-06 00:07:40.045604 51018 2435 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.62.49 711d8b17-8b47-479f-8fe1-2fa0b6350755 2021-01-06 00:07:40.066223 51019 4036 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.49 baead768-bd51-43b3-b520-caf4638efc25 2021-01-06 00:08:47.946043 51020 5286 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1269\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1138E4\nmove_type: '1'\nsale_id: 4036\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1208\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1138E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1208 189.186.62.49 baead768-bd51-43b3-b520-caf4638efc25 2021-01-06 00:08:47.969856 51021 1295 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 1268\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.2839E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.19E4\ncash_fund: !ruby/object:BigDecimal 18:0.722E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2622E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 f0258270-92a5-41af-90aa-cb3d51563649 2021-01-06 01:48:41.785355 51022 1268 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 f0258270-92a5-41af-90aa-cb3d51563649 2021-01-06 01:48:41.803015 51023 1296 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1269\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1138E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1184E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2184E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.62.49 fb4b825e-bebf-4ced-961e-700188532dc1 2021-01-06 02:00:06.178352 51024 1269 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.62.49 fb4b825e-bebf-4ced-961e-700188532dc1 2021-01-06 02:00:06.193449 51025 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-05 20:06:01.964351000 Z\n- &1 2021-01-06 00:03:38.226717000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-06 05:23:55.784418026 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535486\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535342\n mask_addr: 4294967295\nsign_in_count:\n- 2274\n- 2275\n 4550 \N 177.228.101.46 76948f28-f055-4720-b661-934151a476bc 2021-01-06 05:23:55.793358 51026 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mkuy6voqwd5ZPWax2An3\n- C6js4gfdujs1fMWuaCyF\n 4551 \N 177.228.101.46 76948f28-f055-4720-b661-934151a476bc 2021-01-06 05:23:55.818673 51027 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-06 00:03:38.226717000 Z\n- &1 2021-01-06 05:23:55.784418000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-06 19:49:17.630035281 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535342\n mask_addr: 4294967295\nsign_in_count:\n- 2275\n- 2276\n 4552 \N 177.228.101.46 49e9aefc-9455-4eca-81ec-5f1374343371 2021-01-06 19:49:17.658496 51028 4 User \N \N 4 User \N update ---\nunique_session_id:\n- C6js4gfdujs1fMWuaCyF\n- wfL8oFR1r9NXdHsPUzjw\n 4553 \N 177.228.101.46 49e9aefc-9455-4eca-81ec-5f1374343371 2021-01-06 19:49:17.684321 51029 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-03 19:47:30.219401000 Z\n- &1 2021-01-04 23:43:38.417846000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-06 21:23:34.118566818 Z\nsign_in_count:\n- 382\n- 383\n 767 \N 189.186.62.49 9be365f2-7f8d-4949-8cb2-2f62d0e031f1 2021-01-06 21:23:34.126476 51030 21 User \N \N 21 User \N update ---\nunique_session_id:\n- xuphm2Czzx8f8sT8SH5f\n- LK7_D45CtJQnb9Xw9smn\n 768 \N 189.186.62.49 9be365f2-7f8d-4949-8cb2-2f62d0e031f1 2021-01-06 21:23:34.145646 51031 1270 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.722E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 722.0 187.149.121.224 0d38bb53-d69e-4a82-adf8-51ff316f2aec 2021-01-06 23:48:30.03257 51033 4037 Sale \N \N 9 User \N create ---\ncustomer_id: 489\nuser_id: 9\nopen_cash_register_id: 1270\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2021-01-06\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1909\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 aca99afc-e5dc-4b20-9647-d220ee158d8c 2021-01-06 23:49:55.568577 51034 2448 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 10 \N 187.149.121.224 aca99afc-e5dc-4b20-9647-d220ee158d8c 2021-01-06 23:49:55.597522 51035 4037 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 4692d880-a1b5-4e99-838a-8437e7211f62 2021-01-06 23:59:42.003409 51036 5287 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1270\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 4037\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1909\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1909 187.149.121.224 4692d880-a1b5-4e99-838a-8437e7211f62 2021-01-06 23:59:42.027047 51037 5287 CashRegistersMove \N \N 9 User \N destroy ---\nopen_cash_register_id: 1270\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 4037\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1909\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.0\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.121.224 04e8e4ce-440a-4b25-9100-f367507781e4 2021-01-06 23:59:48.76648 51038 4037 Sale \N \N 9 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-1909 cancelada. 187.149.121.224 daf67605-67d8-4a50-9954-b0ce35385e12 2021-01-07 00:00:02.675444 51039 2448 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 11 \N 187.149.121.224 daf67605-67d8-4a50-9954-b0ce35385e12 2021-01-07 00:00:02.699087 51040 4038 Sale \N \N 9 User \N create ---\ncustomer_id: 489\nuser_id: 9\nopen_cash_register_id: 1270\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2021-01-06\nsaletype: 0\nseller_id: 16\nsale_code: PV1-V-1910\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 aab8b8e9-4769-47ef-9211-be64ea84643b 2021-01-07 00:00:39.05442 51041 2448 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 12 \N 187.149.121.224 aab8b8e9-4769-47ef-9211-be64ea84643b 2021-01-07 00:00:39.080564 51042 4039 Sale \N \N 9 User \N create ---\ncustomer_id: 1\nuser_id: 9\nopen_cash_register_id: 1270\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2021-01-06\nsaletype: 1\nseller_id: 16\nsale_code: PV1-V-1911\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 cb52847d-8b93-4447-a191-2b4608625445 2021-01-07 00:54:39.485783 51043 807 AvailableProduct \N \N 9 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.32E2\n- !ruby/object:BigDecimal 18:0.31E2\n 26 \N 187.149.121.224 cb52847d-8b93-4447-a191-2b4608625445 2021-01-07 00:54:39.514908 51044 4039 Sale \N \N 9 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 a2a4c564-3f69-4086-b63b-016af2898748 2021-01-07 00:54:51.680897 51045 5288 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1270\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 4039\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1911\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E2\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1911 187.149.121.224 a2a4c564-3f69-4086-b63b-016af2898748 2021-01-07 00:54:51.714572 51046 1271 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1184E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1184.0 189.186.62.49 27d4e5e7-a82a-416c-82b6-c36344a22c6c 2021-01-07 00:59:35.775957 51047 5289 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1270\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.699E3\nmove_type: '1'\nsale_id: 3482\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.7E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1662 187.149.121.224 99d5b443-35e0-4765-8f3d-fd231c21678b 2021-01-07 01:00:19.351318 51048 3482 Sale \N \N 9 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.121.224 b884ff84-2297-4281-9b7c-aa162383faaa 2021-01-07 01:00:23.055431 51049 490 Customer \N \N 21 User \N create ---\nnick_name: JESICA GOMEZ MEDINA\nphone: "(667) 775-1885"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente JESICA GOMEZ MEDINA fue registrado. 189.186.62.49 80d6f420-1da1-4065-8929-faeafd13668b 2021-01-07 01:00:35.315952 51050 4040 Sale \N \N 21 User \N create ---\ncustomer_id: 490\nuser_id: 21\nopen_cash_register_id: 1271\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2021-01-06\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-1209\nexpiration_date: 2021-02-10\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.49 e1422169-2a3d-41d2-aec1-2b0ecce8ba9b 2021-01-07 01:00:50.337014 51051 2221 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.62.49 e1422169-2a3d-41d2-aec1-2b0ecce8ba9b 2021-01-07 01:00:50.367064 51052 5290 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1271\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 4040\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-1209\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1209 189.186.62.49 2dc06a15-d312-4600-9f4a-899183455618 2021-01-07 01:01:01.641889 51053 4040 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.62.49 a942b7da-ad4d-4121-a740-5727038485ca 2021-01-07 01:01:04.549957 51054 3424 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 189.186.62.49 517c3fb4-1bf4-4817-bc2a-66f0dcead06a 2021-01-07 01:08:31.204541 51056 5291 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1271\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.2098E4\nmove_type: '1'\nsale_id: 3742\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '12252'\n 1 movimiento de efectivo por venta con folio PV3-V-1033 189.186.62.49 229b4048-73ff-4a27-851f-f836242166af 2021-01-07 01:08:50.915599 51057 3742 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.62.49 964c1d7a-8bab-4ca9-add8-c94c620702d2 2021-01-07 01:09:18.819842 51058 379 Expense \N \N 9 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 1270\nquantity: !ruby/object:BigDecimal 18:0.38E3\nstatus: 1\nobservations: 'LONAS DE PUBLICIDAD DESCUENTOS '\nexpense_date: 2021-01-06\nexpense_code: PV1-E-262\n 1 Egreso por 380.0 registrado 187.149.121.224 82e4a72b-baf8-4693-b8fb-05b9e3d16a27 2021-01-07 01:47:29.793496 51059 5292 CashRegistersMove \N \N 9 User \N create ---\nopen_cash_register_id: 1270\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.38E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 379\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.121.224 82e4a72b-baf8-4693-b8fb-05b9e3d16a27 2021-01-07 01:47:29.822158 51060 1297 CashOut \N \N 9 User \N create ---\nopen_cash_register_id: 1270\nuser_id: 9\namount_in: !ruby/object:BigDecimal 18:0.748E3\namount_out: !ruby/object:BigDecimal 18:0.38E3\nreceived_by_id: 7\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.59E3\nphysical_cash: !ruby/object:BigDecimal 18:0.109E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 46844c93-da44-4ef5-af26-c22dc4f8732a 2021-01-07 01:48:44.506195 51061 1270 OpenCashRegister \N \N 9 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 46844c93-da44-4ef5-af26-c22dc4f8732a 2021-01-07 01:48:44.519556 51062 1298 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1271\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.2698E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.6E3\ncash_fund: !ruby/object:BigDecimal 18:0.1184E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1784E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.62.49 74cac69e-a014-4224-9f49-fffa031fca0b 2021-01-07 02:03:07.091937 51063 1271 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.62.49 74cac69e-a014-4224-9f49-fffa031fca0b 2021-01-07 02:03:07.103682 51064 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-25 01:02:44.764427000 Z\n- &1 2020-12-26 17:24:29.543259000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-07 15:56:03.110450830 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3149814443\n mask_addr: 4294967295\nsign_in_count:\n- 444\n- 445\n 890 \N 187.190.90.171 e369ef0a-5718-4be4-8b32-e99714db31dd 2021-01-07 15:56:03.139676 51065 1 User \N \N 1 User \N update ---\nunique_session_id:\n- thVasz4yb1mKvXXzS2Re\n- sD6jVmhSEGf6z9wMqKFC\n 891 \N 187.190.90.171 e369ef0a-5718-4be4-8b32-e99714db31dd 2021-01-07 15:56:03.165822 51066 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-05 23:53:40.470015000 Z\n- &1 2021-01-06 00:06:07.550769000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-07 17:32:32.644020249 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116660\n mask_addr: 4294967295\nsign_in_count:\n- 473\n- 474\n 949 \N 189.186.129.116 3f5e5af2-4c50-4489-8a95-21459745902b 2021-01-07 17:32:32.673365 51067 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 6NszT9GvhSynL33QZWbT\n- 3aH-3H9xNVrssHVxDYdQ\n 950 \N 189.186.129.116 3f5e5af2-4c50-4489-8a95-21459745902b 2021-01-07 17:32:32.697042 51068 1272 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.59E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 590.0 187.149.121.224 b9b83711-8679-484f-970d-71cad5b0a835 2021-01-07 18:01:35.355475 51069 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-26 17:28:40.184864000 Z\n- &1 2020-12-26 21:55:29.769974000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-07 18:01:51.414401499 Z\nsign_in_count:\n- 740\n- 741\n 1485 \N 187.149.121.224 86e4051c-dbbe-4518-8fa6-02b62b7305a3 2021-01-07 18:01:51.421198 51070 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ajvn-F4vSa4HyQPCpuHy\n- rE78wJNs1QQr2gFhozBM\n 1486 \N 187.149.121.224 86e4051c-dbbe-4518-8fa6-02b62b7305a3 2021-01-07 18:01:51.438008 51071 1273 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1184E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1184.0 189.186.129.116 e1cd671e-d5a0-4078-a734-38a84cf9ec21 2021-01-07 18:04:08.668243 51072 4041 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1273\namount: !ruby/object:BigDecimal 18:0.569E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2021-01-07\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-1210\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.129.116 eba2b299-ea2e-4846-b73e-259d8e2d2f7c 2021-01-07 18:06:19.64873 51073 815 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 189.186.129.116 eba2b299-ea2e-4846-b73e-259d8e2d2f7c 2021-01-07 18:06:19.691258 51074 4041 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.129.116 b13ad8cf-18fc-4478-a758-923173660261 2021-01-07 18:06:26.989981 51075 5293 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1273\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.569E3\nmove_type: '1'\nsale_id: 4041\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1210\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.31E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1210 189.186.129.116 b13ad8cf-18fc-4478-a758-923173660261 2021-01-07 18:06:27.014949 51076 4042 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1272\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.479E3\ntotal: !ruby/object:BigDecimal 18:0.72E3\nstatus: 0\ndate_sale: 2021-01-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1912\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 9a7a21c6-bf2b-40b1-ac14-d5c5b8a11c04 2021-01-07 19:04:20.954367 51077 640 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.121.224 9a7a21c6-bf2b-40b1-ac14-d5c5b8a11c04 2021-01-07 19:04:20.991424 51078 4042 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 49bbc5bf-7001-4615-a194-e819d2bcdda5 2021-01-07 19:04:26.429358 51079 5294 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1272\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.72E3\nmove_type: '1'\nsale_id: 4042\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1912\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.72E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1912 187.149.121.224 49bbc5bf-7001-4615-a194-e819d2bcdda5 2021-01-07 19:04:26.454178 51080 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-06 05:23:55.784418000 Z\n- &1 2021-01-06 19:49:17.630035000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-07 21:04:54.171654268 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535342\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984536046\n mask_addr: 4294967295\nsign_in_count:\n- 2276\n- 2277\n 4554 \N 177.228.103.238 d597f78e-c709-48b3-880d-771b7a2a9450 2021-01-07 21:04:54.217202 51081 4 User \N \N 4 User \N update ---\nunique_session_id:\n- wfL8oFR1r9NXdHsPUzjw\n- xxswSfUZJ2h76y7S97Wo\n 4555 \N 177.228.103.238 d597f78e-c709-48b3-880d-771b7a2a9450 2021-01-07 21:04:54.256945 51082 4043 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1272\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.559E3\ntotal: !ruby/object:BigDecimal 18:0.84E3\nstatus: 0\ndate_sale: 2021-01-07\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1913\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 870ffd12-bb3f-4fa6-a73c-d6d44e405b57 2021-01-07 21:48:45.27555 51083 2512 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.121.224 870ffd12-bb3f-4fa6-a73c-d6d44e405b57 2021-01-07 21:48:45.302111 51084 4043 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 64ffd5ea-dcf8-4ce2-b8ca-7dade54e6c7f 2021-01-07 21:48:54.559453 51085 5295 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1272\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.84E3\nmove_type: '1'\nsale_id: 4043\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1913\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.84E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1913 187.149.121.224 64ffd5ea-dcf8-4ce2-b8ca-7dade54e6c7f 2021-01-07 21:48:54.58587 51086 4044 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1273\namount: !ruby/object:BigDecimal 18:0.21121E3\ntax: !ruby/object:BigDecimal 18:0.3379E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.245E3\nstatus: 0\ndate_sale: 2021-01-07\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-1211\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.129.116 44fe8800-eba8-49f4-b30c-3d1a60473b85 2021-01-07 22:11:14.428323 51087 818 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E2\n- !ruby/object:BigDecimal 18:0.25E2\n 36 \N 189.186.129.116 44fe8800-eba8-49f4-b30c-3d1a60473b85 2021-01-07 22:11:14.454649 51088 4044 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.129.116 46bfb141-d45f-4eb2-9efa-42e6850ddee2 2021-01-07 22:12:16.952515 51089 5296 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1273\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.245E3\nmove_type: '1'\nsale_id: 4044\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1211\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.245E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1211 189.186.129.116 46bfb141-d45f-4eb2-9efa-42e6850ddee2 2021-01-07 22:12:16.983055 51090 2523 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.121.224 b226864c-3156-4c4b-a657-e265259d7f1b 2021-01-07 22:12:24.36691 51091 798 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2021-01-07\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.121.224 37cbe7b6-30c6-451e-adcc-32fbcefa454d 2021-01-07 22:12:25.776083 51092 798 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-01-07\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.129.116 47f3653d-e2aa-419f-a39a-999f2cc5e1da 2021-01-07 22:15:07.755413 51093 2577 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 189.186.129.116 47f3653d-e2aa-419f-a39a-999f2cc5e1da 2021-01-07 22:15:07.777766 51094 4045 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1273\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.559E3\ntotal: !ruby/object:BigDecimal 18:0.84E3\nstatus: 0\ndate_sale: 2021-01-07\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-1212\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.129.116 cbc5717c-8d40-42bb-95ed-131359b8688a 2021-01-07 22:16:33.650334 51095 2577 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 189.186.129.116 cbc5717c-8d40-42bb-95ed-131359b8688a 2021-01-07 22:16:33.679558 51096 4045 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.129.116 57fd68f1-41af-4be3-8424-472018e21ae5 2021-01-07 22:17:04.693607 51097 5297 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1273\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.84E3\nmove_type: '1'\nsale_id: 4045\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1212\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.84E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1212 189.186.129.116 57fd68f1-41af-4be3-8424-472018e21ae5 2021-01-07 22:17:04.718325 51098 380 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1272\nquantity: !ruby/object:BigDecimal 18:0.296E3\nstatus: 1\nobservations: agua japac $281 mas $15 de comision oxxo=$296\nexpense_date: 2021-01-07\nexpense_code: PV1-E-263\n 1 Egreso por 296.0 registrado 187.149.121.224 fcc0ce42-a08b-4f35-b9fc-010226dedbad 2021-01-07 23:20:40.408042 51099 5298 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1272\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.296E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 380\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.121.224 fcc0ce42-a08b-4f35-b9fc-010226dedbad 2021-01-07 23:20:40.458736 51121 2552 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.121.224 ceba1e94-9c99-4d6b-b666-37c8e565cee6 2021-01-08 02:10:04.563509 51100 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-06 19:49:17.630035000 Z\n- &1 2021-01-07 21:04:54.171654000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-07 23:41:31.439713275 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535342\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984536046\n mask_addr: 4294967295\nsign_in_count:\n- 2277\n- 2278\n 4556 \N 177.228.103.238 059ce751-a695-4080-8c70-e2c264131443 2021-01-07 23:41:31.451711 51101 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xxswSfUZJ2h76y7S97Wo\n- UxjLHUsm9wkbsQ1pYxzf\n 4557 \N 177.228.103.238 059ce751-a695-4080-8c70-e2c264131443 2021-01-07 23:41:31.478818 51102 4046 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1273\namount: !ruby/object:BigDecimal 18:0.1249E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.499E3\ntotal: !ruby/object:BigDecimal 18:0.75E3\nstatus: 0\ndate_sale: 2021-01-07\nsaletype: 1\nseller_id: 12\nsale_code: PV3-V-1213\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.129.116 b18a65f4-dd35-4075-8c25-8abbc9802898 2021-01-07 23:53:17.232292 51103 2648 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.129.116 b18a65f4-dd35-4075-8c25-8abbc9802898 2021-01-07 23:53:17.27263 51104 4046 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.129.116 5f46e848-40b0-4c3a-a01f-a78257fd0abe 2021-01-07 23:54:01.68569 51105 5299 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1273\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.75E3\nmove_type: '1'\nsale_id: 4046\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1213\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.8E3\nchange: !ruby/object:BigDecimal 18:0.5E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1213 189.186.129.116 5f46e848-40b0-4c3a-a01f-a78257fd0abe 2021-01-07 23:54:01.708852 51106 5300 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1208\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 3589\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: TRANS\n 1 \N 189.186.129.116 4fa4debf-976d-4c57-a655-1712c3fc07ce 2021-01-08 00:19:06.583477 51107 3589 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.129.116 4fa4debf-976d-4c57-a655-1712c3fc07ce 2021-01-08 00:19:06.608712 51108 5300 CashRegistersMove \N \N 18 User \N update ---\nopen_cash_register_id:\n- 1208\n- 1273\n 2 movimiento de efectivo por venta con folio PV3-V-960 189.186.129.116 4fa4debf-976d-4c57-a655-1712c3fc07ce 2021-01-08 00:19:06.623338 51109 5301 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1162\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.15E4\nmove_type: '1'\nsale_id: 3373\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.121.224 44bcb96c-2e37-426e-a6d3-3d87d4fe445b 2021-01-08 00:58:08.766814 51110 5301 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 1162\n- 1272\n 2 movimiento de efectivo por venta con folio PV1-V-1608 187.149.121.224 44bcb96c-2e37-426e-a6d3-3d87d4fe445b 2021-01-08 00:58:08.804031 51111 381 Expense \N \N 18 User \N create ---\nexpensesconcept_id: 2\nopen_cash_register_id: 1273\nquantity: !ruby/object:BigDecimal 18:0.8E3\nstatus: 1\nobservations: PAGA MONTSE\nexpense_date: 2021-01-07\nexpense_code: PV3-E-56\n 1 Egreso por 800.0 registrado 189.186.129.116 fdc7ffff-fa6c-4538-9206-9f234a4f41a1 2021-01-08 01:45:49.132111 51112 5302 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1273\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.8E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 381\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.129.116 fdc7ffff-fa6c-4538-9206-9f234a4f41a1 2021-01-08 01:45:49.166688 51113 1299 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1273\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.2904E4\namount_out: !ruby/object:BigDecimal 18:0.8E3\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1788E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2788E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.129.116 fb73f31d-bc35-4070-b516-b4f7c4f59cbe 2021-01-08 01:50:05.184546 51114 1273 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.129.116 fb73f31d-bc35-4070-b516-b4f7c4f59cbe 2021-01-08 01:50:05.19694 51115 5303 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1272\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.789E3\nmove_type: '1'\nsale_id: 3426\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.789E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1633 187.149.121.224 61d1be66-4820-450b-9208-47a610741aed 2021-01-08 02:03:39.894686 51116 5303 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1272\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.789E3\nmove_type: '1'\nsale_id: 3426\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.789E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.121.224 80ebc8ee-afd7-4185-9ba3-7ec6e9ae0b38 2021-01-08 02:05:16.264439 51117 5304 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1272\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.789E3\nmove_type: '1'\nsale_id: 3426\ncardnumber: 4274\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1633 187.149.121.224 5ffac784-6d39-4e6f-b9b3-a4ef555ff3b2 2021-01-08 02:05:24.4326 51118 3426 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.121.224 51658e62-547d-46c8-8faa-56d73c705516 2021-01-08 02:05:27.942594 51119 4047 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1272\namount: !ruby/object:BigDecimal 18:0.1487E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.549E3\ntotal: !ruby/object:BigDecimal 18:0.938E3\nstatus: 0\ndate_sale: 2021-01-07\nsaletype: 1\nseller_id: 30\nsale_code: PV1-V-1914\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 ceba1e94-9c99-4d6b-b666-37c8e565cee6 2021-01-08 02:10:04.501399 51120 2228 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 5 \N 187.149.121.224 ceba1e94-9c99-4d6b-b666-37c8e565cee6 2021-01-08 02:10:04.530617 51124 5305 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1272\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.938E3\nmove_type: '1'\nsale_id: 4047\ncardnumber: 4274\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1914\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1914 187.149.121.224 e206df60-b35a-4205-b604-fa98f7b856f4 2021-01-08 02:10:15.29017 51125 1300 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1272\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.306E4\namount_out: !ruby/object:BigDecimal 18:0.296E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.854E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3354E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 9883d166-c3ae-4185-9925-0ff906bd54ba 2021-01-08 02:11:04.001583 51126 1272 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 9883d166-c3ae-4185-9925-0ff906bd54ba 2021-01-08 02:11:04.013985 51127 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-04 23:43:38.417846000 Z\n- &1 2021-01-06 21:23:34.118566000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-08 18:18:28.285805047 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114905\n mask_addr: 4294967295\nsign_in_count:\n- 383\n- 384\n 769 \N 189.186.122.153 99e3a9cf-f2ea-4e32-8963-1105b158d0b1 2021-01-08 18:18:28.308955 51128 21 User \N \N 21 User \N update ---\nunique_session_id:\n- LK7_D45CtJQnb9Xw9smn\n- Bzx86z4sy_ohfMmC-5QR\n 770 \N 189.186.122.153 99e3a9cf-f2ea-4e32-8963-1105b158d0b1 2021-01-08 18:18:28.332277 51129 1274 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1788E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1788.0 189.186.122.153 a6ac8001-c7f6-4497-bb2a-c52f97ce8b6f 2021-01-08 18:18:45.808075 51130 4048 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1274\namount: !ruby/object:BigDecimal 18:0.825E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.33E3\ntotal: !ruby/object:BigDecimal 18:0.495E3\nstatus: 0\ndate_sale: 2021-01-08\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1214\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.122.153 0ff5302a-7cac-4981-a8e8-49cb08cbd337 2021-01-08 18:19:28.629685 51131 2589 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.122.153 0ff5302a-7cac-4981-a8e8-49cb08cbd337 2021-01-08 18:19:28.665563 51132 4048 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.122.153 10bcf3d8-a3ff-43a2-961a-5072618537b9 2021-01-08 18:19:40.553557 51133 5306 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1274\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.495E3\nmove_type: '1'\nsale_id: 4048\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1214\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.5E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1214 189.186.122.153 10bcf3d8-a3ff-43a2-961a-5072618537b9 2021-01-08 18:19:40.575094 51134 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2020-12-26 21:55:29.769974000 Z\n- &1 2021-01-07 18:01:51.414401000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-08 18:20:30.573638613 Z\nsign_in_count:\n- 741\n- 742\n 1487 \N 187.149.121.224 3b4a00ce-e777-4009-94e4-0fcace0d20ab 2021-01-08 18:20:30.579477 51135 2 User \N \N 2 User \N update ---\nunique_session_id:\n- rE78wJNs1QQr2gFhozBM\n- 5Ujr2sGeht5GsuVzzuQp\n 1488 \N 187.149.121.224 3b4a00ce-e777-4009-94e4-0fcace0d20ab 2021-01-08 18:20:30.595138 51136 1275 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.854E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 854.0 187.149.121.224 063bd60a-58ce-4977-a233-9ddb992c3b17 2021-01-08 18:20:48.232925 51137 4049 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1275\namount: !ruby/object:BigDecimal 18:0.1498E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.749E3\ntotal: !ruby/object:BigDecimal 18:0.749E3\nstatus: 0\ndate_sale: 2021-01-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1915\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 2ea83eeb-29c9-4c3b-bf17-d86e3adf1290 2021-01-08 19:06:02.275231 51138 1460 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.121.224 2ea83eeb-29c9-4c3b-bf17-d86e3adf1290 2021-01-08 19:06:02.300071 51139 2535 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 12 \N 187.149.121.224 2ea83eeb-29c9-4c3b-bf17-d86e3adf1290 2021-01-08 19:06:02.325251 51140 4049 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 11b55228-d25b-4999-a574-c3bae2420c69 2021-01-08 19:06:09.092983 51141 5307 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1275\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.749E3\nmove_type: '1'\nsale_id: 4049\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1915\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.749E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1915 187.149.121.224 11b55228-d25b-4999-a574-c3bae2420c69 2021-01-08 19:06:09.114001 51142 4050 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1275\namount: !ruby/object:BigDecimal 18:0.1128E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.529E3\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2021-01-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1916\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 310d7d59-d9b2-44ac-8cb3-37a3f5f83d03 2021-01-08 19:30:10.361699 51143 1241 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 18 \N 187.149.121.224 310d7d59-d9b2-44ac-8cb3-37a3f5f83d03 2021-01-08 19:30:10.410492 51144 1644 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 13 \N 187.149.121.224 310d7d59-d9b2-44ac-8cb3-37a3f5f83d03 2021-01-08 19:30:10.44383 51145 4050 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 d0c5f47b-c7c6-471e-b59f-b38dbff2d179 2021-01-08 19:30:13.962443 51275 656 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.121.224 570ad8fb-6a53-48d6-948c-faf3084d2453 2021-01-11 20:25:52.449576 51276 4063 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 685ccb6e-63b5-459e-b506-c376fa6aee53 2021-01-11 20:25:56.819906 51146 5308 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1275\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 4050\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1916\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1916 187.149.121.224 d0c5f47b-c7c6-471e-b59f-b38dbff2d179 2021-01-08 19:30:13.996111 51147 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2020-12-26 17:24:29.543259000 Z\n- &1 2021-01-07 15:56:03.110450000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-08 19:59:35.571211292 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3149814443\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3149814443\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 445\n- 446\n 892 \N 187.149.121.224 d0bb0eb0-497c-462f-bbb1-49f009180bd0 2021-01-08 19:59:35.583849 51148 1 User \N \N 1 User \N update ---\nunique_session_id:\n- sD6jVmhSEGf6z9wMqKFC\n- F4ifzSwrzDBhosBi9jxw\n 893 \N 187.149.121.224 d0bb0eb0-497c-462f-bbb1-49f009180bd0 2021-01-08 19:59:35.600461 51149 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-07 21:04:54.171654000 Z\n- &1 2021-01-07 23:41:31.439713000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-08 21:36:25.193606174 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984536046\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938059\n mask_addr: 4294967295\nsign_in_count:\n- 2278\n- 2279\n 4558 \N 200.68.150.11 da7b3dbb-a083-467d-96c5-719052ef8b1f 2021-01-08 21:36:25.200993 51150 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UxjLHUsm9wkbsQ1pYxzf\n- GRUn7giqMqxzGj2NaPxh\n 4559 \N 200.68.150.11 da7b3dbb-a083-467d-96c5-719052ef8b1f 2021-01-08 21:36:25.220316 51151 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-01-07 15:56:03.110450000 Z\n- &1 2021-01-08 19:59:35.571211000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-08 21:38:05.702868401 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3149814443\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\nsign_in_count:\n- 446\n- 447\n 894 \N 187.149.121.224 557493a7-3054-4ca3-a5a5-f2dc3901450a 2021-01-08 21:38:05.709713 51152 1 User \N \N 1 User \N update ---\nunique_session_id:\n- F4ifzSwrzDBhosBi9jxw\n- WNHXg2AP3pGfwrRxHpWU\n 895 \N 187.149.121.224 557493a7-3054-4ca3-a5a5-f2dc3901450a 2021-01-08 21:38:05.723781 51153 799 Transfer \N \N 1 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2021-01-08\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.121.224 41092771-c2db-4907-b753-6f57f1adbc0c 2021-01-08 21:39:02.570117 51154 799 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-01-08\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.121.224 358adc4f-805b-4fa9-82e5-18a7490b62ad 2021-01-08 21:39:31.822869 51155 1622 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.121.224 358adc4f-805b-4fa9-82e5-18a7490b62ad 2021-01-08 21:39:31.841782 51156 4051 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1275\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2021-01-08\nsaletype: 1\nseller_id: 25\nsale_code: PV1-V-1917\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 e48f60ad-fbf5-4b9e-bf52-9b5d1df0ada0 2021-01-08 22:14:37.475134 51157 2632 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.121.224 e48f60ad-fbf5-4b9e-bf52-9b5d1df0ada0 2021-01-08 22:14:37.509546 51158 4051 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 2acb0057-cb3c-4ac7-9614-3e6fb028f633 2021-01-08 22:14:50.161887 51159 5309 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1275\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 4051\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1917\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SERVICIO A DOMICILIO\n 1 movimiento de efectivo por venta con folio PV1-V-1917 187.149.121.224 2acb0057-cb3c-4ac7-9614-3e6fb028f633 2021-01-08 22:14:50.195808 51160 4052 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1275\namount: !ruby/object:BigDecimal 18:0.2568E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1099E4\ntotal: !ruby/object:BigDecimal 18:0.1469E4\nstatus: 0\ndate_sale: 2021-01-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1918\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 01c3c150-7683-4be7-b995-67749544388c 2021-01-08 22:25:23.53332 51161 1622 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.121.224 01c3c150-7683-4be7-b995-67749544388c 2021-01-08 22:25:23.57809 51162 1597 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.121.224 01c3c150-7683-4be7-b995-67749544388c 2021-01-08 22:25:23.609321 51163 4052 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 37a624a1-19f2-4bec-addd-a227e1860e6f 2021-01-08 22:25:31.049176 51164 5310 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1275\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1469E4\nmove_type: '1'\nsale_id: 4052\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1918\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1469E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1918 187.149.121.224 37a624a1-19f2-4bec-addd-a227e1860e6f 2021-01-08 22:25:31.073542 51165 4053 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1274\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2796E3\ntotal: !ruby/object:BigDecimal 18:0.4194E3\nstatus: 0\ndate_sale: 2021-01-08\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1215\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.122.153 68fecbd5-8b03-438f-9129-b97ce0907e09 2021-01-08 23:37:29.874388 51166 2568 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 189.186.122.153 68fecbd5-8b03-438f-9129-b97ce0907e09 2021-01-08 23:37:29.906555 51167 4053 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.122.153 e44f26f1-ca30-461c-a624-bf9958d09c31 2021-01-08 23:39:21.833531 51168 5311 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1274\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.419E3\nmove_type: '1'\nsale_id: 4053\ncardnumber: 4251\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1215\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1215 189.186.122.153 e44f26f1-ca30-461c-a624-bf9958d09c31 2021-01-08 23:39:21.86544 51169 5311 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1274\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.419E3\nmove_type: '1'\nsale_id: 4053\ncardnumber: 4251\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1215\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.122.153 58f311d9-6740-43ae-9956-bf9bd3fc4513 2021-01-08 23:39:44.178773 51170 5312 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1274\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.419E3\nmove_type: '1'\nsale_id: 4053\ncardnumber: 4551\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1215\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1215 189.186.122.153 440770d9-06dd-4042-9b74-cdae4660785a 2021-01-08 23:39:54.233335 51171 5312 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1274\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.419E3\nmove_type: '1'\nsale_id: 4053\ncardnumber: 4551\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1215\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.122.153 1242016f-55f1-48fd-9ace-af8e9b5e6b07 2021-01-08 23:40:19.750196 51172 5313 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1274\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.419E3\nmove_type: '1'\nsale_id: 4053\ncardnumber: 1245\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1215\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1215 189.186.122.153 3f4288c2-3a01-4487-8db1-7adfeaecb992 2021-01-08 23:41:00.554628 51173 5313 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1274\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 18:0.419E3\nmove_type: '1'\nsale_id: 4053\ncardnumber: 1245\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1215\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.122.153 b31d5f12-33cc-4c51-9519-3c13769f4b2e 2021-01-08 23:43:18.131658 51174 5314 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1274\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.4194E3\nmove_type: '1'\nsale_id: 4053\ncardnumber: 4521\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1215\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1215 189.186.122.153 5dffeaee-8151-4a5b-8058-f328329e321c 2021-01-08 23:43:36.239606 51175 4054 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1275\namount: !ruby/object:BigDecimal 18:0.489E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.195E3\ntotal: !ruby/object:BigDecimal 18:0.294E3\nstatus: 0\ndate_sale: 2021-01-08\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1919\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 193d8596-555a-48b3-a511-4671c46ee45a 2021-01-09 01:15:28.593992 51176 2258 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.121.224 193d8596-555a-48b3-a511-4671c46ee45a 2021-01-09 01:15:28.632888 51177 4054 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 5bbdd03a-5f86-432c-a22b-3bde3babc4ae 2021-01-09 01:15:33.785138 51178 5315 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1275\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.294E3\nmove_type: '1'\nsale_id: 4054\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1919\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.294E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1919 187.149.121.224 5bbdd03a-5f86-432c-a22b-3bde3babc4ae 2021-01-09 01:15:33.812106 51179 4055 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1274\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2021-01-08\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1216\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.122.153 2b371631-8dda-4764-8d73-ac7c43f7aa7e 2021-01-09 01:39:49.922791 51180 2643 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.122.153 2b371631-8dda-4764-8d73-ac7c43f7aa7e 2021-01-09 01:39:49.986959 51181 4055 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.122.153 a23c24a9-9783-48db-9225-758936239f5e 2021-01-09 01:40:04.126222 51182 5316 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1274\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 4055\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1216\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1216 189.186.122.153 a23c24a9-9783-48db-9225-758936239f5e 2021-01-09 01:40:04.151709 51183 1301 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1275\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.461E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.3E4\ncash_fund: !ruby/object:BigDecimal 18:0.965E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3965E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 10fda689-50b7-46bf-acca-5a08fc59e536 2021-01-09 01:53:54.988839 51184 1275 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 10fda689-50b7-46bf-acca-5a08fc59e536 2021-01-09 01:53:55.015498 51298 1481 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.1E1\n 14 \N 189.186.62.27 606dc9ed-885d-4fc0-b182-32c6ee7d5909 2021-01-11 22:59:54.323934 51299 4066 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 a9077bfc-5b21-40b1-b335-2d2f67606467 2021-01-11 23:00:12.923123 51185 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-07 23:41:31.439713000 Z\n- &1 2021-01-08 21:36:25.193606000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-09 02:17:12.148433979 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984536046\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938059\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938059\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114905\n mask_addr: 4294967295\nsign_in_count:\n- 2279\n- 2280\n 4560 \N 189.186.122.153 21dee44d-0aca-42c8-9cc9-7f0b0b60c878 2021-01-09 02:17:12.15725 51186 4 User \N \N 4 User \N update ---\nunique_session_id:\n- GRUn7giqMqxzGj2NaPxh\n- oGGeXWCHcCDsNx5V3nU-\n 4561 \N 189.186.122.153 21dee44d-0aca-42c8-9cc9-7f0b0b60c878 2021-01-09 02:17:12.179015 51187 2567 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.122.153 c463a0b2-8ba5-4df4-aeba-9f512dbe8cf0 2021-01-09 02:17:41.685962 51188 2563 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.122.153 7242c543-4203-45c9-b7a6-e9e2f364dcbb 2021-01-09 02:17:54.705088 51189 800 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2021-01-08\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.122.153 724c70fb-43dd-4099-9202-0f56343e742d 2021-01-09 02:17:56.463794 51190 2567 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.122.153 822668cb-83c7-4eeb-9351-aa6e2518d3c7 2021-01-09 02:18:20.926681 51191 801 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2021-01-08\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.122.153 e03bfbf1-0dfb-4780-a9d0-75343a6a2b89 2021-01-09 02:18:22.358544 51192 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-06 00:06:07.550769000 Z\n- &1 2021-01-07 17:32:32.644020000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-09 02:18:55.762121567 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116660\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116660\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114905\n mask_addr: 4294967295\nsign_in_count:\n- 474\n- 475\n 951 \N 189.186.122.153 7796639e-456a-44ac-baa1-cc6d71dcb5ab 2021-01-09 02:18:55.774708 51193 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 3aH-3H9xNVrssHVxDYdQ\n- xcs6SxYWvNgAJfwXM-r-\n 952 \N 189.186.122.153 7796639e-456a-44ac-baa1-cc6d71dcb5ab 2021-01-09 02:18:55.804144 51194 801 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-01-08\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.122.153 2cb09c2e-8df2-414a-a49b-868aeaec2994 2021-01-09 02:19:28.13354 51195 2674 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 955\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.122.153 2cb09c2e-8df2-414a-a49b-868aeaec2994 2021-01-09 02:19:28.155701 51196 800 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-01-08\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.122.153 79d0831e-d5a8-4a4b-a381-80839ece31cd 2021-01-09 02:19:37.400813 51197 2675 AvailableProduct \N \N 18 User \N create ---\nproduct_id: 956\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.122.153 79d0831e-d5a8-4a4b-a381-80839ece31cd 2021-01-09 02:19:37.428081 51198 2674 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.122.153 79d0831e-d5a8-4a4b-a381-80839ece31cd 2021-01-09 02:19:37.449671 51199 4056 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1274\namount: !ruby/object:BigDecimal 18:0.3196E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1498E4\ntotal: !ruby/object:BigDecimal 18:0.1698E4\nstatus: 0\ndate_sale: 2021-01-08\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1217\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.122.153 c78ea6c9-e93d-4787-97a6-4bc63e39ad5c 2021-01-09 02:31:31.476154 51200 2674 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.122.153 c78ea6c9-e93d-4787-97a6-4bc63e39ad5c 2021-01-09 02:31:31.512714 51201 2675 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.122.153 c78ea6c9-e93d-4787-97a6-4bc63e39ad5c 2021-01-09 02:31:31.547124 51202 1286 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 189.186.122.153 c78ea6c9-e93d-4787-97a6-4bc63e39ad5c 2021-01-09 02:31:31.582052 51203 2664 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.122.153 c78ea6c9-e93d-4787-97a6-4bc63e39ad5c 2021-01-09 02:31:31.620033 51204 4056 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.122.153 1936bcf7-1dfd-4d6c-b166-99615eec5b15 2021-01-09 02:32:20.350124 51205 5317 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1274\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1698E4\nmove_type: '1'\nsale_id: 4056\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1217\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.171E4\nchange: !ruby/object:BigDecimal 18:0.12E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1217 189.186.122.153 1936bcf7-1dfd-4d6c-b166-99615eec5b15 2021-01-09 02:32:20.382086 51206 1302 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1274\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.35114E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.37E4\ncash_fund: !ruby/object:BigDecimal 18:0.118E4\nphysical_cash: !ruby/object:BigDecimal 18:0.488E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.122.153 23714a2a-e60d-429d-9521-54068856dacf 2021-01-09 02:38:26.247545 51207 1274 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.122.153 23714a2a-e60d-429d-9521-54068856dacf 2021-01-09 02:38:26.261594 51320 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-10 19:52:45.799333000 Z\n- &1 2021-01-11 21:46:42.156432000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-12 16:58:51.366746420 Z\nsign_in_count:\n- 387\n- 388\n 777 \N 189.186.62.27 9260197e-5f81-4d36-88eb-97b2d80f1121 2021-01-12 16:58:51.395689 51208 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-08 21:36:25.193606000 Z\n- &1 2021-01-09 02:17:12.148433000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-09 04:44:04.656790566 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938059\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114905\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114905\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938245\n mask_addr: 4294967295\nsign_in_count:\n- 2280\n- 2281\n 4562 \N 200.68.150.197 65920d3c-8783-4645-b876-9cfa3b4fbf7b 2021-01-09 04:44:04.6848 51209 4 User \N \N 4 User \N update ---\nunique_session_id:\n- oGGeXWCHcCDsNx5V3nU-\n- Bje8Na5zpuQjsudtD8Eb\n 4563 \N 200.68.150.197 65920d3c-8783-4645-b876-9cfa3b4fbf7b 2021-01-09 04:44:04.718352 51210 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-09 02:17:12.148433000 Z\n- &1 2021-01-09 04:44:04.656790000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-09 19:36:10.199694224 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114905\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938245\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535390\n mask_addr: 4294967295\nsign_in_count:\n- 2281\n- 2282\n 4564 \N 177.228.101.94 681689d8-7a1b-414e-b0cc-643c5a5d4613 2021-01-09 19:36:10.228992 51211 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Bje8Na5zpuQjsudtD8Eb\n- TqyGyLhL-egEi-W8RdwS\n 4565 \N 177.228.101.94 681689d8-7a1b-414e-b0cc-643c5a5d4613 2021-01-09 19:36:10.255954 51212 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-07 18:01:51.414401000 Z\n- &1 2021-01-08 18:20:30.573638000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-09 21:19:29.796127476 Z\nsign_in_count:\n- 742\n- 743\n 1489 \N 187.149.121.224 bcacaa84-54d9-4433-bd2f-de709f4a0c2b 2021-01-09 21:19:29.802958 51213 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 5Ujr2sGeht5GsuVzzuQp\n- MES-QVNdG_Espgn-AC5w\n 1490 \N 187.149.121.224 bcacaa84-54d9-4433-bd2f-de709f4a0c2b 2021-01-09 21:19:29.820857 51214 1276 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.965E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 965.0 187.149.121.224 13a37476-e8de-428b-898f-05985170cd66 2021-01-09 21:19:59.352719 51215 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-06 21:23:34.118566000 Z\n- &1 2021-01-08 18:18:28.285805000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-09 21:30:42.785247352 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114905\n mask_addr: 4294967295\nsign_in_count:\n- 384\n- 385\n 771 \N 189.186.122.153 b4fa5077-fb7e-427e-aa1f-16cc3be1ec23 2021-01-09 21:30:42.792932 51216 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Bzx86z4sy_ohfMmC-5QR\n- rpRe7edJZA-S7QmFxejP\n 772 \N 189.186.122.153 b4fa5077-fb7e-427e-aa1f-16cc3be1ec23 2021-01-09 21:30:42.810013 51217 4057 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1276\namount: !ruby/object:BigDecimal 18:0.5313E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2457E4\ntotal: !ruby/object:BigDecimal 18:0.2856E4\nstatus: 0\ndate_sale: 2021-01-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1920\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 d9027787-f356-44b0-8fa6-132de6eba562 2021-01-09 21:37:50.470847 51218 2629 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.121.224 d9027787-f356-44b0-8fa6-132de6eba562 2021-01-09 21:37:50.506087 51219 1622 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.121.224 d9027787-f356-44b0-8fa6-132de6eba562 2021-01-09 21:37:50.545314 51220 2556 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 187.149.121.224 d9027787-f356-44b0-8fa6-132de6eba562 2021-01-09 21:37:50.572774 51221 1629 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 187.149.121.224 d9027787-f356-44b0-8fa6-132de6eba562 2021-01-09 21:37:50.60587 51222 2613 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.121.224 d9027787-f356-44b0-8fa6-132de6eba562 2021-01-09 21:37:50.639835 51223 2246 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 4 \N 187.149.121.224 d9027787-f356-44b0-8fa6-132de6eba562 2021-01-09 21:37:50.669067 51224 4057 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 11a320f9-f19a-446b-aa69-1d33abc62997 2021-01-09 21:37:54.850626 51225 5318 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1276\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2856E4\nmove_type: '1'\nsale_id: 4057\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1920\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2856E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1920 187.149.121.224 11a320f9-f19a-446b-aa69-1d33abc62997 2021-01-09 21:37:54.87748 51226 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-09 04:44:04.656790000 Z\n- &1 2021-01-09 19:36:10.199694000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-09 21:44:44.446726482 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938245\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535390\n mask_addr: 4294967295\nsign_in_count:\n- 2282\n- 2283\n 4566 \N 177.228.101.94 3e9dc60a-c14f-4ef4-9d42-b3decf9aa1e9 2021-01-09 21:44:44.475794 51227 4 User \N \N 4 User \N update ---\nunique_session_id:\n- TqyGyLhL-egEi-W8RdwS\n- MA4167R7piWpnTtvh1nr\n 4567 \N 177.228.101.94 3e9dc60a-c14f-4ef4-9d42-b3decf9aa1e9 2021-01-09 21:44:44.501343 51228 4058 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1276\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.239E3\ntotal: !ruby/object:BigDecimal 18:0.36E3\nstatus: 0\ndate_sale: 2021-01-09\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1921\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 9fbce52b-4c19-429b-aa34-a8d661327d33 2021-01-10 00:45:38.248853 51229 1858 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.121.224 9fbce52b-4c19-429b-aa34-a8d661327d33 2021-01-10 00:45:38.284785 51230 4058 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 49b11458-1945-428d-acee-9b3c2f376704 2021-01-10 00:45:42.334524 51321 21 User \N \N 21 User \N update ---\nunique_session_id:\n- HSyhUEsv-cB4Cbo2J5mW\n- LyR5N8xZ928iozzi388_\n 778 \N 189.186.62.27 9260197e-5f81-4d36-88eb-97b2d80f1121 2021-01-12 16:58:51.418282 51322 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-10 20:19:23.657539000 Z\n- &1 2021-01-11 18:44:46.359777000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-12 17:16:44.820735601 Z\nsign_in_count:\n- 745\n- 746\n 1495 \N 187.149.121.224 193736c5-4e29-40d3-b3ae-82b316d0475b 2021-01-12 17:16:44.827431 51231 5319 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1276\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.36E3\nmove_type: '1'\nsale_id: 4058\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1921\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.36E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1921 187.149.121.224 49b11458-1945-428d-acee-9b3c2f376704 2021-01-10 00:45:42.380618 51232 1303 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1276\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3216E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.34E4\ncash_fund: !ruby/object:BigDecimal 18:0.781E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4181E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 282a6d41-8046-4982-be44-0ce0d1b9904e 2021-01-10 01:46:12.627913 51233 1276 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 282a6d41-8046-4982-be44-0ce0d1b9904e 2021-01-10 01:46:12.647092 51234 1277 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.118E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1180.0 189.186.122.153 e64b1ff0-4f53-4e13-9ee1-6971b135bea9 2021-01-10 01:50:48.011267 51235 382 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1277\nquantity: !ruby/object:BigDecimal 18:0.1E3\nstatus: 1\nobservations: SUELDO NAYELI\nexpense_date: 2021-01-09\nexpense_code: PV3-E-57\n 1 Egreso por 100.0 registrado 189.186.122.153 dc5bd3e9-1205-4f56-b5b7-065ca8f8b647 2021-01-10 01:51:28.310231 51236 5320 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1277\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 382\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.122.153 dc5bd3e9-1205-4f56-b5b7-065ca8f8b647 2021-01-10 01:51:28.336443 51237 1304 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1277\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.1E3\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.108E4\ncash_fund: !ruby/object:BigDecimal 18:0.0\nphysical_cash: !ruby/object:BigDecimal 18:0.108E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.122.153 8af74048-65f5-4cc6-ad05-0dec74ed22b5 2021-01-10 01:52:31.047643 51238 1277 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.122.153 8af74048-65f5-4cc6-ad05-0dec74ed22b5 2021-01-10 01:52:31.062393 51239 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-09 19:36:10.199694000 Z\n- &1 2021-01-09 21:44:44.446726000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-10 02:05:44.004983308 Z\nsign_in_count:\n- 2283\n- 2284\n 4568 \N 177.228.101.94 06439a20-2620-45ac-8e74-0c64a596c202 2021-01-10 02:05:44.025259 51240 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MA4167R7piWpnTtvh1nr\n- cyhMk8hTyxdF1SG9vqxA\n 4569 \N 177.228.101.94 06439a20-2620-45ac-8e74-0c64a596c202 2021-01-10 02:05:44.050825 51241 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-09 21:44:44.446726000 Z\n- &1 2021-01-10 02:05:44.004983000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-10 18:46:18.841058311 Z\nsign_in_count:\n- 2284\n- 2285\n 4570 \N 177.228.101.94 c2ab4ad5-ae5a-4d82-ae49-2a685918d56f 2021-01-10 18:46:18.869064 51242 4 User \N \N 4 User \N update ---\nunique_session_id:\n- cyhMk8hTyxdF1SG9vqxA\n- CxHEZKEBu5DxLBzMpeWR\n 4571 \N 177.228.101.94 c2ab4ad5-ae5a-4d82-ae49-2a685918d56f 2021-01-10 18:46:18.896511 51243 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-08 18:18:28.285805000 Z\n- &1 2021-01-09 21:30:42.785247000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-10 19:52:45.799333412 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114905\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\nsign_in_count:\n- 385\n- 386\n 773 \N 189.186.62.27 f9ed8034-a7aa-4dca-8245-ad9fa85a7a1e 2021-01-10 19:52:45.820929 51244 21 User \N \N 21 User \N update ---\nunique_session_id:\n- rpRe7edJZA-S7QmFxejP\n- 9UqcBy4SPzjpr3SE5Dme\n 774 \N 189.186.62.27 f9ed8034-a7aa-4dca-8245-ad9fa85a7a1e 2021-01-10 19:52:45.845168 51245 1278 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.0\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 0.0 189.186.62.27 7e91be6c-d516-4d1f-9fac-64de49c21d5e 2021-01-10 19:53:00.301351 51246 4059 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1278\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1996E3\ntotal: !ruby/object:BigDecimal 18:0.2994E3\nstatus: 0\ndate_sale: 2021-01-10\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1218\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 82ac7fdb-28ed-4288-b817-dd58fd511dd8 2021-01-10 19:53:57.043586 51247 2571 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 9 \N 189.186.62.27 82ac7fdb-28ed-4288-b817-dd58fd511dd8 2021-01-10 19:53:57.071707 51248 4059 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 574ad19b-25d8-49f5-9f4c-90dbdf5648e6 2021-01-10 19:54:16.045113 51249 5321 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1278\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2994E3\nmove_type: '1'\nsale_id: 4059\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1218\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.6E0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1218 189.186.62.27 574ad19b-25d8-49f5-9f4c-90dbdf5648e6 2021-01-10 19:54:16.069456 51250 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-08 18:20:30.573638000 Z\n- &1 2021-01-09 21:19:29.796127000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-10 20:19:23.657539477 Z\nsign_in_count:\n- 743\n- 744\n 1491 \N 187.149.121.224 41bb1518-04d3-441c-8b50-fcb64a91675e 2021-01-10 20:19:23.665385 51251 2 User \N \N 2 User \N update ---\nunique_session_id:\n- MES-QVNdG_Espgn-AC5w\n- AMsMsxBarR1Zjs1nPDqA\n 1492 \N 187.149.121.224 41bb1518-04d3-441c-8b50-fcb64a91675e 2021-01-10 20:19:23.685017 51252 4060 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1278\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2021-01-10\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1219\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 d56da8be-0a99-4231-9e0c-3ae1e1efa001 2021-01-10 20:36:38.209885 51253 1836 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 87 \N 189.186.62.27 d56da8be-0a99-4231-9e0c-3ae1e1efa001 2021-01-10 20:36:38.259713 51255 5322 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1278\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 4060\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1219\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1219 189.186.62.27 8fa9c51c-dce5-4cba-a64e-2eebee9eb485 2021-01-10 20:36:50.048049 51256 4061 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1278\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3596E3\ntotal: !ruby/object:BigDecimal 18:0.5394E3\nstatus: 0\ndate_sale: 2021-01-10\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1220\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 1de9b88f-87c0-46f4-a49f-efc7ef56c3e3 2021-01-10 21:12:49.3715 51257 2618 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.62.27 1de9b88f-87c0-46f4-a49f-efc7ef56c3e3 2021-01-10 21:12:49.399434 51258 4061 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 3239d9ed-c9df-4519-9d22-f6861aa93843 2021-01-10 21:13:04.640179 51259 5323 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1278\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5394E3\nmove_type: '1'\nsale_id: 4061\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1220\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.606E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1220 189.186.62.27 3239d9ed-c9df-4519-9d22-f6861aa93843 2021-01-10 21:13:04.660706 51260 4062 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1278\namount: !ruby/object:BigDecimal 18:0.739E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2956E3\ntotal: !ruby/object:BigDecimal 18:0.4434E3\nstatus: 0\ndate_sale: 2021-01-10\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1221\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 0a0b53de-ec2e-4863-8117-ace45f74191c 2021-01-10 21:39:11.441639 51261 2597 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.62.27 0a0b53de-ec2e-4863-8117-ace45f74191c 2021-01-10 21:39:11.476182 51262 4062 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 cc5cbe23-b5c1-4b3c-a543-749b1c1b0607 2021-01-10 21:39:47.412034 51263 5324 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1278\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.443E3\nmove_type: '1'\nsale_id: 4062\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1221\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.443E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1221 189.186.62.27 cc5cbe23-b5c1-4b3c-a543-749b1c1b0607 2021-01-10 21:39:47.447132 51264 5324 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1278\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.443E3\nmove_type: '1'\nsale_id: 4062\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1221\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.443E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.62.27 48f7b25c-d6c1-46e0-9c4d-d93b15b4feaf 2021-01-10 21:40:02.935026 51265 5325 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1278\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.4434E3\nmove_type: '1'\nsale_id: 4062\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1221\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4434E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1221 189.186.62.27 60a549b2-bb42-47a7-858c-1d3136a52e6b 2021-01-10 21:40:19.47136 51266 1305 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1278\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.27812E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.2E4\ncash_fund: !ruby/object:BigDecimal 18:0.781E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2781E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.62.27 6a08ebc7-6530-43a7-ba47-ad3c3f349400 2021-01-10 22:55:29.835935 51267 1278 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.62.27 6a08ebc7-6530-43a7-ba47-ad3c3f349400 2021-01-10 22:55:29.859552 51268 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-07 17:32:32.644020000 Z\n- &1 2021-01-09 02:18:55.762121000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-11 18:33:05.927146189 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183116660\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114905\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114905\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535390\n mask_addr: 4294967295\nsign_in_count:\n- 475\n- 476\n 953 \N 177.228.101.94 618b014d-5caf-4d67-b76d-9c32305752ab 2021-01-11 18:33:05.970466 51269 18 User \N \N 18 User \N update ---\nunique_session_id:\n- xcs6SxYWvNgAJfwXM-r-\n- ws_-4WywqwwVm2JDb_7d\n 954 \N 177.228.101.94 618b014d-5caf-4d67-b76d-9c32305752ab 2021-01-11 18:33:05.99629 51270 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-09 21:19:29.796127000 Z\n- &1 2021-01-10 20:19:23.657539000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-11 18:44:46.359777758 Z\nsign_in_count:\n- 744\n- 745\n 1493 \N 187.149.121.224 dc8e1fe0-c761-4bcc-98fa-de44ca7be1d6 2021-01-11 18:44:46.368229 51271 2 User \N \N 2 User \N update ---\nunique_session_id:\n- AMsMsxBarR1Zjs1nPDqA\n- knxcHT4h_bgzLNYwcUUj\n 1494 \N 187.149.121.224 dc8e1fe0-c761-4bcc-98fa-de44ca7be1d6 2021-01-11 18:44:46.394161 51272 1279 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.781E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 781.0 187.149.121.224 c3bb6e44-834d-4b94-a845-8903ea21ba4e 2021-01-11 20:22:50.15999 51273 4063 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1279\namount: !ruby/object:BigDecimal 18:0.1574E4\ntax: !ruby/object:BigDecimal 18:0.124E3\ndiscount: !ruby/object:BigDecimal 18:0.799E3\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2021-01-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1922\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 570ad8fb-6a53-48d6-948c-faf3084d2453 2021-01-11 20:25:52.363543 51274 136 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.121.224 570ad8fb-6a53-48d6-948c-faf3084d2453 2021-01-11 20:25:52.405505 51277 5326 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1279\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.899E3\nmove_type: '1'\nsale_id: 4063\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1922\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.899E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1922 187.149.121.224 685ccb6e-63b5-459e-b506-c376fa6aee53 2021-01-11 20:25:56.846331 51278 4064 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1279\namount: !ruby/object:BigDecimal 18:0.121745E4\ntax: !ruby/object:BigDecimal 18:0.10055E3\ndiscount: !ruby/object:BigDecimal 18:0.589E3\ntotal: !ruby/object:BigDecimal 18:0.729E3\nstatus: 0\ndate_sale: 2021-01-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1923\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 95ef20a1-c778-4e03-88be-6a9b986c6830 2021-01-11 20:32:22.693694 51279 1065 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.121.224 95ef20a1-c778-4e03-88be-6a9b986c6830 2021-01-11 20:32:22.719879 51280 2248 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.121.224 95ef20a1-c778-4e03-88be-6a9b986c6830 2021-01-11 20:32:22.743043 51281 4064 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 70e66422-2a32-42d6-be4e-14870815f111 2021-01-11 20:32:27.141732 51282 5327 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1279\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.729E3\nmove_type: '1'\nsale_id: 4064\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1923\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.729E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1923 187.149.121.224 70e66422-2a32-42d6-be4e-14870815f111 2021-01-11 20:32:27.163566 51283 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-09 21:30:42.785247000 Z\n- &1 2021-01-10 19:52:45.799333000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-11 21:46:42.156432261 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114905\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\nsign_in_count:\n- 386\n- 387\n 775 \N 189.186.62.27 f341b92d-6a80-43c2-b109-d89ff33584c1 2021-01-11 21:46:42.164684 51284 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 9UqcBy4SPzjpr3SE5Dme\n- HSyhUEsv-cB4Cbo2J5mW\n 776 \N 189.186.62.27 f341b92d-6a80-43c2-b109-d89ff33584c1 2021-01-11 21:46:42.18011 51285 4065 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1279\namount: !ruby/object:BigDecimal 18:0.2894E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1345E4\ntotal: !ruby/object:BigDecimal 18:0.1549E4\nstatus: 0\ndate_sale: 2021-01-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1924\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 0c2ce330-5461-46b4-9277-2e6b6dcaf386 2021-01-11 22:22:56.521766 51286 1432 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.121.224 0c2ce330-5461-46b4-9277-2e6b6dcaf386 2021-01-11 22:22:56.55295 51287 1014 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.121.224 0c2ce330-5461-46b4-9277-2e6b6dcaf386 2021-01-11 22:22:56.580304 51288 4065 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 31407288-e81d-4ff1-b2a2-0c2302187cf3 2021-01-11 22:23:02.476982 51289 5328 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1279\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1549E4\nmove_type: '1'\nsale_id: 4065\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1924\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1549E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1924 187.149.121.224 31407288-e81d-4ff1-b2a2-0c2302187cf3 2021-01-11 22:23:02.508836 51290 1280 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.781E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 781.0 189.186.62.27 165e1fdd-6c89-43d4-8f87-0a247bd03e45 2021-01-11 22:53:26.411756 51291 1559 Product \N \N 21 User \N create ---\nsku: CAR-1559\nname: 1BICO20964\ndescription: CARTERA CROSSBODY MENTA, ROSA, NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.5495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170864830'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1559 fue creado. 189.186.62.27 5438a2fe-0d29-4816-84dc-d2f2b10dcecd 2021-01-11 22:55:03.398917 51292 2676 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1559\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.62.27 5438a2fe-0d29-4816-84dc-d2f2b10dcecd 2021-01-11 22:55:03.461807 51293 512 Purchase \N \N 21 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-153\namount: !ruby/object:BigDecimal 18:0.27475E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.27475E4\nobservations: ''\npurchase_date: 2021-01-11\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-153 por $ 2747.5 MXN creada. 189.186.62.27 bce0e765-1af2-4702-a4eb-43961b8de4b6 2021-01-11 22:55:16.622984 51294 2676 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.62.27 bce0e765-1af2-4702-a4eb-43961b8de4b6 2021-01-11 22:55:16.645012 51295 4066 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1280\namount: !ruby/object:BigDecimal 18:0.2218E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2218E4\nstatus: 0\ndate_sale: 2021-01-11\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1222\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 606dc9ed-885d-4fc0-b182-32c6ee7d5909 2021-01-11 22:59:54.237536 51296 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 62 \N 189.186.62.27 606dc9ed-885d-4fc0-b182-32c6ee7d5909 2021-01-11 22:59:54.268138 51297 2676 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.62.27 606dc9ed-885d-4fc0-b182-32c6ee7d5909 2021-01-11 22:59:54.294843 51300 5329 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1280\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2158E4\nmove_type: '1'\nsale_id: 4066\ncardnumber: 1125\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1222\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1222 189.186.62.27 a9077bfc-5b21-40b1-b335-2d2f67606467 2021-01-11 23:00:12.958203 51301 5330 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1280\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E2\nmove_type: '1'\nsale_id: 4066\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1222\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1222 189.186.62.27 e8a99eb1-bc7e-447f-8da7-5870ca5b6edd 2021-01-11 23:00:20.035918 51302 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-10 02:05:44.004983000 Z\n- &1 2021-01-10 18:46:18.841058000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-11 23:26:02.798991581 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535390\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\nsign_in_count:\n- 2285\n- 2286\n 4572 \N 189.186.62.27 ebce7a16-f60a-41ea-aaae-2120ebbc8a5a 2021-01-11 23:26:02.807806 51303 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CxHEZKEBu5DxLBzMpeWR\n- UdxXpgvw_iHxsaWE7bP4\n 4573 \N 189.186.62.27 ebce7a16-f60a-41ea-aaae-2120ebbc8a5a 2021-01-11 23:26:02.828295 51304 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-09 02:18:55.762121000 Z\n- &1 2021-01-11 18:33:05.927146000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-12 00:56:25.494935986 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183114905\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535390\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535390\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\nsign_in_count:\n- 476\n- 477\n 955 \N 189.186.62.27 ca2d2db7-6c4e-4835-89db-6bf8d073a798 2021-01-12 00:56:25.516053 51305 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ws_-4WywqwwVm2JDb_7d\n- gt4F8ZPcftV44drR61wS\n 956 \N 189.186.62.27 ca2d2db7-6c4e-4835-89db-6bf8d073a798 2021-01-12 00:56:25.539791 51306 4067 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1280\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.359E3\ntotal: !ruby/object:BigDecimal 18:0.54E3\nstatus: 0\ndate_sale: 2021-01-11\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1223\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 1f741eee-5dcb-48d3-9443-3bdd6f0245b8 2021-01-12 01:00:18.949611 51307 2582 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 15 \N 189.186.62.27 1f741eee-5dcb-48d3-9443-3bdd6f0245b8 2021-01-12 01:00:18.991633 51308 4067 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 897467cc-eaa0-4d76-bad7-8dd48ddb91a1 2021-01-12 01:00:23.317612 51309 5331 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1280\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.54E3\nmove_type: '1'\nsale_id: 4067\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1223\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.54E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1223 189.186.62.27 897467cc-eaa0-4d76-bad7-8dd48ddb91a1 2021-01-12 01:00:23.343379 51310 1306 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1279\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3177E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.31E4\ncash_fund: !ruby/object:BigDecimal 18:0.858E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3958E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 ff51749f-0995-4ddb-807f-1a20ffc77524 2021-01-12 01:54:50.725611 51311 1279 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 ff51749f-0995-4ddb-807f-1a20ffc77524 2021-01-12 01:54:50.750626 51312 4068 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1280\namount: !ruby/object:BigDecimal 18:0.769E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.307E3\ntotal: !ruby/object:BigDecimal 18:0.462E3\nstatus: 0\ndate_sale: 2021-01-11\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1224\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 da41f29a-b7f2-4fff-a01d-db61f92a48dc 2021-01-12 01:59:02.435685 51313 1905 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.62.27 da41f29a-b7f2-4fff-a01d-db61f92a48dc 2021-01-12 01:59:02.467765 51314 4068 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 cb0c9e4c-145d-484a-9315-8de975981ad0 2021-01-12 01:59:07.145332 51315 5332 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1280\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.462E3\nmove_type: '1'\nsale_id: 4068\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1224\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.462E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1224 189.186.62.27 cb0c9e4c-145d-484a-9315-8de975981ad0 2021-01-12 01:59:07.165362 51316 1307 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1280\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.322E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.961E3\ncash_fund: !ruby/object:BigDecimal 18:0.882E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1843E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.62.27 0cc2b0ca-2c2c-45eb-a97c-5115da4a29ad 2021-01-12 02:06:32.59821 51317 1280 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.62.27 0cc2b0ca-2c2c-45eb-a97c-5115da4a29ad 2021-01-12 02:06:32.611984 51318 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-10 18:46:18.841058000 Z\n- &1 2021-01-11 23:26:02.798991000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-12 02:23:52.823952113 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535390\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938107\n mask_addr: 4294967295\nsign_in_count:\n- 2286\n- 2287\n 4574 \N 200.68.150.59 b1be6b00-1335-41b2-8c21-3112b96940de 2021-01-12 02:23:52.85564 51319 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UdxXpgvw_iHxsaWE7bP4\n- MEo3rMsMLdBsyeiUTczE\n 4575 \N 200.68.150.59 b1be6b00-1335-41b2-8c21-3112b96940de 2021-01-12 02:23:52.883425 51324 1281 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.858E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 858.0 187.149.121.224 ce3a0da3-8d2e-4318-8b8e-77f3914706e4 2021-01-12 17:19:48.664413 51325 4069 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1281\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2021-01-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1925\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 8d19335c-d423-4aea-9fc7-28fa3a93fa53 2021-01-12 18:59:40.385915 51326 2350 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.121.224 8d19335c-d423-4aea-9fc7-28fa3a93fa53 2021-01-12 18:59:40.438956 51327 4069 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 d70078b7-b2ab-49da-9c5b-4a6b5aebb36e 2021-01-12 19:00:17.540776 51328 5333 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1281\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 4069\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1925\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1799E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1925 187.149.121.224 d70078b7-b2ab-49da-9c5b-4a6b5aebb36e 2021-01-12 19:00:17.564322 51329 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-11 23:26:02.798991000 Z\n- &1 2021-01-12 02:23:52.823952000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-12 20:52:27.761155756 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938107\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938107\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535462\n mask_addr: 4294967295\nsign_in_count:\n- 2287\n- 2288\n 4576 \N 177.228.101.166 4c5e111a-4b7e-48dd-ad3f-fc51b569256a 2021-01-12 20:52:27.789243 51330 4 User \N \N 4 User \N update ---\nunique_session_id:\n- MEo3rMsMLdBsyeiUTczE\n- tguBkHy14deqZCnxbb7D\n 4577 \N 177.228.101.166 4c5e111a-4b7e-48dd-ad3f-fc51b569256a 2021-01-12 20:52:27.817081 51331 1282 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.882E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 882.0 189.186.62.27 9dbdd1a0-14b0-4d72-90f6-ae891fd8a2ad 2021-01-12 21:05:20.979795 51332 4070 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1282\namount: !ruby/object:BigDecimal 18:0.739E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2956E3\ntotal: !ruby/object:BigDecimal 18:0.4434E3\nstatus: 0\ndate_sale: 2021-01-12\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1225\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 4bb4db22-51a5-499f-8bb5-640108ee15eb 2021-01-12 21:06:46.295366 51333 2597 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.62.27 4bb4db22-51a5-499f-8bb5-640108ee15eb 2021-01-12 21:06:46.332441 51334 4070 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 e2b1a66e-7920-4d68-a08c-1cbccae289b1 2021-01-12 21:06:59.025718 51335 5334 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1282\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4434E3\nmove_type: '1'\nsale_id: 4070\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1225\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.45E3\nchange: !ruby/object:BigDecimal 18:0.66E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1225 189.186.62.27 e2b1a66e-7920-4d68-a08c-1cbccae289b1 2021-01-12 21:06:59.052097 51336 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-12 02:23:52.823952000 Z\n- &1 2021-01-12 20:52:27.761155000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-12 21:21:19.220912354 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938107\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535462\n mask_addr: 4294967295\nsign_in_count:\n- 2288\n- 2289\n 4578 \N 177.228.101.166 306f6b70-0655-4fa5-b6d8-cd861fa800cf 2021-01-12 21:21:19.228131 51337 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tguBkHy14deqZCnxbb7D\n- xuY9T9WUKC7kaDNCTbV9\n 4579 \N 177.228.101.166 306f6b70-0655-4fa5-b6d8-cd861fa800cf 2021-01-12 21:21:19.25157 51338 1656 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 177.228.101.166 2b66edb3-4191-4496-b2c1-16efbf5d6e3e 2021-01-12 21:22:54.054178 51339 1656 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 177.228.101.166 2f9c2490-c572-45db-bdcf-a44a6ba257d5 2021-01-12 21:22:58.950282 51340 802 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2021-01-12\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 177.228.101.166 cd4d851e-b391-4dde-b598-1bce53c8dd4f 2021-01-12 21:23:02.257177 51341 802 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-01-12\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.121.224 b6603c7a-a621-42fc-8812-58865230d102 2021-01-12 21:48:49.098975 51342 1157 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 7 \N 187.149.121.224 b6603c7a-a621-42fc-8812-58865230d102 2021-01-12 21:48:49.119066 51343 4071 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1281\namount: !ruby/object:BigDecimal 18:0.1468E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.599E3\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2021-01-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1926\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 00986eb1-02d5-423b-a7ed-9e97b2a65d23 2021-01-12 21:51:05.635603 51344 1157 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.121.224 00986eb1-02d5-423b-a7ed-9e97b2a65d23 2021-01-12 21:51:05.6801 51345 1617 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.121.224 00986eb1-02d5-423b-a7ed-9e97b2a65d23 2021-01-12 21:51:05.715608 51346 4071 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 fe7c5ed4-b4d7-4695-8dae-309a84e8a40f 2021-01-12 21:51:10.826925 51418 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-12 17:16:44.820735000 Z\n- &1 2021-01-13 19:04:57.068543000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-14 17:18:07.732305735 Z\nsign_in_count:\n- 747\n- 748\n 1499 \N 187.149.121.224 397c82e9-0bb9-4d76-b2f3-4e35624f8c40 2021-01-14 17:18:07.759756 51347 5335 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1281\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.869E3\nmove_type: '1'\nsale_id: 4071\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1926\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.869E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1926 187.149.121.224 fe7c5ed4-b4d7-4695-8dae-309a84e8a40f 2021-01-12 21:51:10.860046 51348 383 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1282\nquantity: !ruby/object:BigDecimal 18:0.2E3\nstatus: 1\nobservations: 'LUCES '\nexpense_date: 2021-01-12\nexpense_code: PV3-E-58\n 1 Egreso por 200.0 registrado 189.186.62.27 584fa67e-4909-47fd-a306-93446efc306d 2021-01-12 23:40:53.219196 51349 5336 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1282\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 383\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.62.27 584fa67e-4909-47fd-a306-93446efc306d 2021-01-12 23:40:53.246813 51350 1560 Product \N \N 21 User \N create ---\nsku: CAR-1560\nname: 1BICO20963\ndescription: CARTERA GRANDE CLOE\nprice_base: !ruby/object:BigDecimal 18:0.5495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1099E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170864755'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1560 fue creado. 189.186.62.27 fed25246-8310-4ed7-833d-09637ad1515a 2021-01-13 00:11:00.657269 51351 2677 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1560\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.62.27 fed25246-8310-4ed7-833d-09637ad1515a 2021-01-13 00:11:00.722522 51352 1561 Product \N \N 21 User \N create ---\nsku: CAR-1561\nname: SAMI945\ndescription: CARTERA CON TARJETERO\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1561 fue creado. 189.186.62.27 2894d627-7c4e-4501-84fd-4d344cc7b1da 2021-01-13 00:12:06.630792 51353 1561 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001561'\n 2 \N 189.186.62.27 2894d627-7c4e-4501-84fd-4d344cc7b1da 2021-01-13 00:12:06.664804 51354 2678 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1561\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.62.27 2894d627-7c4e-4501-84fd-4d344cc7b1da 2021-01-13 00:12:06.69094 51355 1562 Product \N \N 21 User \N create ---\nsku: CAR-1562\nname: 2BICV20328\ndescription: CARTERA CHICA NEGRA\nprice_base: !ruby/object:BigDecimal 18:0.3995E3\nprice_sale: !ruby/object:BigDecimal 18:0.799E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170820508'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1562 fue creado. 189.186.62.27 63a22543-bc90-44fb-bd0d-ed7edbeeb1b3 2021-01-13 00:13:21.874623 51356 2679 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1562\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.62.27 63a22543-bc90-44fb-bd0d-ed7edbeeb1b3 2021-01-13 00:13:21.91247 51357 513 Purchase \N \N 21 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-154\namount: !ruby/object:BigDecimal 18:0.2847E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2847E4\nobservations: ''\npurchase_date: 2021-01-12\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-154 por $ 2847.0 MXN creada. 189.186.62.27 b0de8020-827b-41f6-b1e1-9ae651bcf6a5 2021-01-13 00:13:24.580752 51358 2677 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.62.27 b0de8020-827b-41f6-b1e1-9ae651bcf6a5 2021-01-13 00:13:24.603538 51359 2678 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.62.27 b0de8020-827b-41f6-b1e1-9ae651bcf6a5 2021-01-13 00:13:24.6281 51360 2679 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.62.27 b0de8020-827b-41f6-b1e1-9ae651bcf6a5 2021-01-13 00:13:24.650968 51361 1563 Product \N \N 21 User \N create ---\nsku: BOL-1563\nname: 2BLCO20751\ndescription: BACK PACK CLOE LETRAS MAGENTA NEGRO\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170845563'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1563 fue creado. 189.186.62.27 b127d9d5-76bb-4ca4-b15d-f1bbc08042de 2021-01-13 00:21:47.973663 51362 2680 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1563\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.62.27 b127d9d5-76bb-4ca4-b15d-f1bbc08042de 2021-01-13 00:21:48.020238 51363 1564 Product \N \N 21 User \N create ---\nsku: CAR-1564\nname: 2BICO20732\ndescription: CATERA CHICA CON CADENA\nprice_base: !ruby/object:BigDecimal 18:0.4495E3\nprice_sale: !ruby/object:BigDecimal 18:0.899E3\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: '7509170844849'\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 4\nproduct_service_key: '01010101'\n 1 El producto CAR-1564 fue creado. 189.186.62.27 f0c869cd-eea1-4a6b-8f12-b0d63b8fb34d 2021-01-13 00:22:39.765755 51364 2681 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1564\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.62.27 f0c869cd-eea1-4a6b-8f12-b0d63b8fb34d 2021-01-13 00:22:39.81053 51365 514 Purchase \N \N 21 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-155\namount: !ruby/object:BigDecimal 18:0.22485E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.22485E4\nobservations: ''\npurchase_date: 2021-01-12\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-155 por $ 2248.5 MXN creada. 189.186.62.27 5920b17a-8065-48f1-9979-5c6bd9372c94 2021-01-13 00:23:04.002832 51366 2680 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.62.27 5920b17a-8065-48f1-9979-5c6bd9372c94 2021-01-13 00:23:04.027718 51367 2681 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.62.27 5920b17a-8065-48f1-9979-5c6bd9372c94 2021-01-13 00:23:04.050683 51368 515 Purchase \N \N 2 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-220\namount: !ruby/object:BigDecimal 18:0.4996E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.4996E4\nobservations: ''\npurchase_date: 2021-01-12\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-220 por $ 4996.0 MXN creada. 187.149.121.224 f3a9ac3b-3f3e-4de6-a8ad-3aae9e791806 2021-01-13 00:25:16.292448 51369 2682 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1560\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.121.224 f3a9ac3b-3f3e-4de6-a8ad-3aae9e791806 2021-01-13 00:25:16.322153 51370 2683 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1563\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.121.224 f3a9ac3b-3f3e-4de6-a8ad-3aae9e791806 2021-01-13 00:25:16.352163 51371 2684 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1564\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.121.224 f3a9ac3b-3f3e-4de6-a8ad-3aae9e791806 2021-01-13 00:25:16.386524 51372 2685 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1559\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.4E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.121.224 f3a9ac3b-3f3e-4de6-a8ad-3aae9e791806 2021-01-13 00:25:16.415362 51373 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-12 20:52:27.761155000 Z\n- &1 2021-01-12 21:21:19.220912000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-13 00:37:06.004860902 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535462\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\nsign_in_count:\n- 2289\n- 2290\n 4580 \N 189.186.62.27 d73a8573-b225-4990-bc2c-005df5889964 2021-01-13 00:37:06.013023 51374 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xuY9T9WUKC7kaDNCTbV9\n- KAZJznQTPgWbzsX5y7mf\n 4581 \N 189.186.62.27 d73a8573-b225-4990-bc2c-005df5889964 2021-01-13 00:37:06.034156 51375 1308 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1281\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2668E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.29E4\ncash_fund: !ruby/object:BigDecimal 18:0.626E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3526E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 acfacc14-b04e-446b-aa81-f97147fde840 2021-01-13 01:40:01.798728 51376 1281 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 acfacc14-b04e-446b-aa81-f97147fde840 2021-01-13 01:40:01.818472 51377 1925 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 2 \N 189.186.62.27 36117b4a-ffdf-4545-9744-7ba90d621793 2021-01-13 01:43:18.830893 51378 1925 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.62.27 c5f5a976-47e5-4ae4-a737-76272e526005 2021-01-13 01:43:23.128056 51379 1774 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.62.27 442dc419-e065-4bfa-b897-b5a202c6318f 2021-01-13 01:45:55.533054 51380 1774 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.62.27 11ab48cf-6897-405f-8364-141670835bbf 2021-01-13 01:45:58.449635 51381 1775 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.62.27 7625eb05-a4b5-4a0d-9967-15fad8461c5d 2021-01-13 01:46:04.782803 51382 1775 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.62.27 c545135b-c8d0-4fe2-a268-e9e6d6f58a9b 2021-01-13 01:46:07.873262 51383 1660 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.62.27 6063ec9e-8231-47b1-818f-714b1939e83c 2021-01-13 01:46:37.1264 51384 1660 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.62.27 9a32aa89-9ad8-42ad-a5f8-9683d1f7ac46 2021-01-13 01:46:40.264521 51385 2569 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.62.27 23b5250e-5268-438b-bef5-79b4dd49e9ba 2021-01-13 01:51:10.742589 51386 803 Transfer \N \N 4 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2021-01-12\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.62.27 a541ec86-de8f-4cb1-a910-eb0639627651 2021-01-13 01:51:15.003606 51387 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-11 18:33:05.927146000 Z\n- &1 2021-01-12 00:56:25.494935000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-13 01:53:07.627591590 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535390\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\nsign_in_count:\n- 477\n- 478\n 957 \N 189.186.62.27 39fe5646-48c3-4194-a0b7-db26871c47f3 2021-01-13 01:53:07.637653 51388 18 User \N \N 18 User \N update ---\nunique_session_id:\n- gt4F8ZPcftV44drR61wS\n- "-yL2wXYcxC9WCo9KDDD1"\n 958 \N 189.186.62.27 39fe5646-48c3-4194-a0b7-db26871c47f3 2021-01-13 01:53:07.65426 51389 1309 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1282\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.4434E3\namount_out: !ruby/object:BigDecimal 18:0.2E3\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.2E3\ncash_fund: !ruby/object:BigDecimal 27:0.9254000000000001E3\nphysical_cash: !ruby/object:BigDecimal 18:0.11254E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.62.27 9a7c5748-9732-4abb-ba9d-625055c75b86 2021-01-13 01:57:39.179494 51390 1282 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.62.27 9a7c5748-9732-4abb-ba9d-625055c75b86 2021-01-13 01:57:39.192149 51391 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-12 21:21:19.220912000 Z\n- &1 2021-01-13 00:37:06.004860000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-13 18:25:07.395813925 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535462\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\nsign_in_count:\n- 2290\n- 2291\n 4582 \N 189.186.62.27 66603032-e29d-4b6a-a4c0-76df25834740 2021-01-13 18:25:07.427965 51392 4 User \N \N 4 User \N update ---\nunique_session_id:\n- KAZJznQTPgWbzsX5y7mf\n- YX2L-n7sfGNRWjVGUXoU\n 4583 \N 189.186.62.27 66603032-e29d-4b6a-a4c0-76df25834740 2021-01-13 18:25:07.457597 51393 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-11 18:44:46.359777000 Z\n- &1 2021-01-12 17:16:44.820735000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-13 19:04:57.068543110 Z\nsign_in_count:\n- 746\n- 747\n 1497 \N 187.149.121.224 91d4bd4a-199c-4777-aded-6bdfcc7ddec8 2021-01-13 19:04:57.07599 51394 2 User \N \N 2 User \N update ---\nunique_session_id:\n- nqQ9zgJ8Y_5fkHiikczR\n- xdS9xSDY8AQnmNSvveys\n 1498 \N 187.149.121.224 91d4bd4a-199c-4777-aded-6bdfcc7ddec8 2021-01-13 19:04:57.096352 51395 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-12 00:56:25.494935000 Z\n- &1 2021-01-13 01:53:07.627591000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-13 19:25:40.976116503 Z\nsign_in_count:\n- 478\n- 479\n 959 \N 189.186.62.27 e6656f9b-e695-4ded-8081-bce8109dbcb0 2021-01-13 19:25:40.983254 51396 18 User \N \N 18 User \N update ---\nunique_session_id:\n- "-yL2wXYcxC9WCo9KDDD1"\n- oGBNYsHNBSuCKznHa7Km\n 960 \N 189.186.62.27 e6656f9b-e695-4ded-8081-bce8109dbcb0 2021-01-13 19:25:41.001282 51397 1283 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.9254E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 925.4 189.186.62.27 11c7062d-1f63-4da9-9300-f26b297263a1 2021-01-13 19:25:49.875539 51398 4072 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1283\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2021-01-13\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1226\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 33f460b2-709c-4d41-98de-567f32d85e84 2021-01-13 19:26:26.572076 51399 2631 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 17 \N 189.186.62.27 33f460b2-709c-4d41-98de-567f32d85e84 2021-01-13 19:26:26.603072 51400 4072 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 06a98d81-7a88-40d9-912a-42c421de9cf0 2021-01-13 19:27:41.974469 51401 5337 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1283\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 4072\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1226\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1226 189.186.62.27 06a98d81-7a88-40d9-912a-42c421de9cf0 2021-01-13 19:27:42.005641 51402 1284 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.626E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 626.0 187.149.121.224 921936c3-451e-4aac-b499-af4cb4cebc65 2021-01-13 21:30:26.579417 51403 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-13 00:37:06.004860000 Z\n- &1 2021-01-13 18:25:07.395813000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-13 22:47:16.292085732 Z\nsign_in_count:\n- 2291\n- 2292\n 4584 \N 189.186.62.27 04b028ba-f0c9-42ca-859e-670b508777ac 2021-01-13 22:47:16.298095 51404 4 User \N \N 4 User \N update ---\nunique_session_id:\n- YX2L-n7sfGNRWjVGUXoU\n- s2RhsNQmRrKyCipDZxz-\n 4585 \N 189.186.62.27 04b028ba-f0c9-42ca-859e-670b508777ac 2021-01-13 22:47:16.317535 51405 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-13 18:25:07.395813000 Z\n- &1 2021-01-13 22:47:16.292085000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-13 23:05:32.893488573 Z\nsign_in_count:\n- 2292\n- 2293\n 4586 \N 189.186.62.27 2f54f459-a770-4092-9fa3-687ed582fbfa 2021-01-13 23:05:32.899134 51406 4 User \N \N 4 User \N update ---\nunique_session_id:\n- s2RhsNQmRrKyCipDZxz-\n- UsZDFu9uoNGgzL9p5CUR\n 4587 \N 189.186.62.27 2f54f459-a770-4092-9fa3-687ed582fbfa 2021-01-13 23:05:32.914889 51407 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-01-08 19:59:35.571211000 Z\n- &1 2021-01-08 21:38:05.702868000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-14 01:39:45.681756860 Z\nsign_in_count:\n- 447\n- 448\n 896 \N 187.149.121.224 d8975dc4-3643-4d54-ba0a-38b6a06f1542 2021-01-14 01:39:45.70036 51408 1 User \N \N 1 User \N update ---\nunique_session_id:\n- WNHXg2AP3pGfwrRxHpWU\n- yrGsx9sjqxLNiyz-mB2q\n 897 \N 187.149.121.224 d8975dc4-3643-4d54-ba0a-38b6a06f1542 2021-01-14 01:39:45.722772 51409 1310 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1284\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.626E3\nphysical_cash: !ruby/object:BigDecimal 18:0.626E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 ff9b5792-bd6d-4e00-89e7-5b5f52848e8c 2021-01-14 01:41:23.059819 51410 1284 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 ff9b5792-bd6d-4e00-89e7-5b5f52848e8c 2021-01-14 01:41:23.074895 51411 1563 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1563'\n is_parent: false\n sku: BOL-1563\n name: 2BLCO20751\n description: BACK PACK CLOE LETRAS MAGENTA NEGRO\n price_base: '899.5'\n price_sale: '1799.0'\n img_product: BF858F4B-21F3-4C0E-8BC4-111D8E0F8E0C.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170845563'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2021-01-13 00:21:47.960329'\n updated_at: &12 2021-01-14 01:49:51.449019798 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1563'\n sku: BOL-1563\n name: 2BLCO20751\n description: BACK PACK CLOE LETRAS MAGENTA NEGRO\n price_base: '899.50'\n price_sale: '1799.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2021-01-13 00:21:47.960329'\n updated_at: '2021-01-13 00:21:47.960329'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170845563'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1563'\n type: *3\n value: 1563\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1563\n type: *7\n value: BOL-1563\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 2BLCO20751\n type: *8\n value: 2BLCO20751\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: BACK PACK CLOE LETRAS MAGENTA NEGRO\n type: *6\n value: BACK PACK CLOE LETRAS MAGENTA NEGRO\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '899.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.8995E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1799.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1799E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: BF858F4B-21F3-4C0E-8BC4-111D8E0F8E0C.jpeg\n type: *2\n value: BF858F4B-21F3-4C0E-8BC4-111D8E0F8E0C.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170845563'\n type: *2\n value: '7509170845563'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2021-01-13 00:21:47.960329'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- BF858F4B-21F3-4C0E-8BC4-111D8E0F8E0C.jpeg\n 2 El producto BOL-1563 fue modificado. 187.149.121.224 7214cdf3-843c-45c1-91a4-9ea7ae1227b3 2021-01-14 01:49:51.499775 51412 1560 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1560'\n is_parent: false\n sku: CAR-1560\n name: 1BICO20963\n description: CARTERA GRANDE CLOE\n price_base: '549.5'\n price_sale: '1099.0'\n img_product: 5B395EAB-E482-4FA0-823B-97173307F663.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170864755'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2021-01-13 00:11:00.636256'\n updated_at: &12 2021-01-14 01:55:01.819332417 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1560'\n sku: CAR-1560\n name: 1BICO20963\n description: CARTERA GRANDE CLOE\n price_base: '549.50'\n price_sale: '1099.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2021-01-13 00:11:00.636256'\n updated_at: '2021-01-13 00:11:00.636256'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170864755'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1560'\n type: *3\n value: 1560\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-1560\n type: *7\n value: CAR-1560\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BICO20963\n type: *8\n value: 1BICO20963\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA GRANDE CLOE\n type: *6\n value: CARTERA GRANDE CLOE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '549.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.5495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1099.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1099E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 5B395EAB-E482-4FA0-823B-97173307F663.jpeg\n type: *2\n value: 5B395EAB-E482-4FA0-823B-97173307F663.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170864755'\n type: *2\n value: '7509170864755'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2021-01-13 00:11:00.636256'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 5B395EAB-E482-4FA0-823B-97173307F663.jpeg\n 2 El producto CAR-1560 fue modificado. 187.149.121.224 fd5c5206-fd31-4e0e-b38f-0e59c690379a 2021-01-14 01:55:01.868936 51413 1559 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1559'\n is_parent: false\n sku: CAR-1559\n name: 1BICO20964\n description: CARTERA CROSSBODY MENTA, ROSA, NEGRA\n price_base: '549.5'\n price_sale: '1099.0'\n img_product: 6071FACC-9DE9-49D6-B389-D8DA093FBBD2.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170864830'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2021-01-11 22:55:03.383484'\n updated_at: &12 2021-01-14 01:58:07.805768324 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1559'\n sku: CAR-1559\n name: 1BICO20964\n description: CARTERA CROSSBODY MENTA, ROSA, NEGRA\n price_base: '549.50'\n price_sale: '1099.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2021-01-11 22:55:03.383484'\n updated_at: '2021-01-11 22:55:03.383484'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170864830'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1559'\n type: *3\n value: 1559\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-1559\n type: *7\n value: CAR-1559\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BICO20964\n type: *8\n value: 1BICO20964\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CARTERA CROSSBODY MENTA, ROSA, NEGRA\n type: *6\n value: CARTERA CROSSBODY MENTA, ROSA, NEGRA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '549.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.5495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1099.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1099E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 6071FACC-9DE9-49D6-B389-D8DA093FBBD2.jpeg\n type: *2\n value: 6071FACC-9DE9-49D6-B389-D8DA093FBBD2.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170864830'\n type: *2\n value: '7509170864830'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2021-01-11 22:55:03.383484'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 6071FACC-9DE9-49D6-B389-D8DA093FBBD2.jpeg\n 2 El producto CAR-1559 fue modificado. 187.149.121.224 83e34859-21c1-4f15-bf03-a0a9dddf5a95 2021-01-14 01:58:07.870086 51414 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-13 01:53:07.627591000 Z\n- &1 2021-01-13 19:25:40.976116000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-14 02:04:35.368285184 Z\nsign_in_count:\n- 479\n- 480\n 961 \N 189.186.62.27 64819f1b-78fc-42d7-9e4c-5f28e92525ab 2021-01-14 02:04:35.377619 51415 18 User \N \N 18 User \N update ---\nunique_session_id:\n- oGBNYsHNBSuCKznHa7Km\n- T-2hyZcP1eWkbuw_-kY4\n 962 \N 189.186.62.27 64819f1b-78fc-42d7-9e4c-5f28e92525ab 2021-01-14 02:04:35.399645 51416 1311 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1283\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1499E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.144E4\ncash_fund: !ruby/object:BigDecimal 27:0.9844000000000001E3\nphysical_cash: !ruby/object:BigDecimal 18:0.24244E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.62.27 fd100608-f8e2-4d59-b5b3-4d7598012b2b 2021-01-14 02:08:16.449905 51417 1283 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.62.27 fd100608-f8e2-4d59-b5b3-4d7598012b2b 2021-01-14 02:08:16.465371 51420 1285 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.626E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 626.0 187.149.121.224 409f8dd9-91bd-423b-b108-3cc44ff10810 2021-01-14 17:18:28.943204 51421 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-01-08 21:38:05.702868000 Z\n- &1 2021-01-14 01:39:45.681756000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-14 19:28:18.899908783 Z\nsign_in_count:\n- 448\n- 449\n 898 \N 187.149.121.224 f967247e-17e0-46be-82b6-ffaec3076e40 2021-01-14 19:28:18.929187 51422 1 User \N \N 1 User \N update ---\nunique_session_id:\n- yrGsx9sjqxLNiyz-mB2q\n- _SuMHk67QR_yVmsrJFwr\n 899 \N 187.149.121.224 f967247e-17e0-46be-82b6-ffaec3076e40 2021-01-14 19:28:18.951851 51423 1550 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1550'\n is_parent: false\n sku: BOL-1550\n name: 2BLCO20738\n description: CROSSBODY NEGRO VERDE BLANCO Y NUDE\n price_base: '749.5'\n price_sale: '1499.0'\n img_product: 016F42A1-8647-4BF5-A2B4-2FE1CB45BB18.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170845112'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-12-15 22:20:16.395641'\n updated_at: &12 2021-01-14 19:30:19.154426589 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1550'\n sku: BOL-1550\n name: 2BLCO20738\n description: CROSSBODY NEGRO VERDE BLANCO Y NUDE\n price_base: '749.50'\n price_sale: '1499.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-12-15 22:20:16.395641'\n updated_at: '2020-12-15 22:20:16.395641'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170845112'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1550'\n type: *3\n value: 1550\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1550\n type: *7\n value: BOL-1550\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 2BLCO20738\n type: *8\n value: 2BLCO20738\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CROSSBODY NEGRO VERDE BLANCO Y NUDE\n type: *6\n value: CROSSBODY NEGRO VERDE BLANCO Y NUDE\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '749.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.7495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '1499.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.1499E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 016F42A1-8647-4BF5-A2B4-2FE1CB45BB18.jpeg\n type: *2\n value: 016F42A1-8647-4BF5-A2B4-2FE1CB45BB18.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170845112'\n type: *2\n value: '7509170845112'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-12-15 22:20:16.395641'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 016F42A1-8647-4BF5-A2B4-2FE1CB45BB18.jpeg\n 2 El producto BOL-1550 fue modificado. 187.149.121.224 d976b483-674d-4e75-b131-174762d8ed4d 2021-01-14 19:30:19.201621 51424 1549 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1549'\n is_parent: false\n sku: BOL-1549\n name: 1BLCO20636\n description: 'CROSS BODY NEGRO Y ROJO '\n price_base: '1049.5'\n price_sale: '2099.0'\n img_product: 96B2C1BB-E424-4DA1-9288-9977F6DDBED8.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '6'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001549'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2020-12-13 01:02:20.059921'\n updated_at: &12 2021-01-14 19:31:04.457875265 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1549'\n sku: BOL-1549\n name: 1BLCO20636\n description: 'CROSS BODY NEGRO Y ROJO '\n price_base: '1049.50'\n price_sale: '2099.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2020-12-13 01:02:20.059921'\n updated_at: '2020-12-13 01:02:20.123377'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '0001549'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '6'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1549'\n type: *3\n value: 1549\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: BOL-1549\n type: *7\n value: BOL-1549\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 1BLCO20636\n type: *8\n value: 1BLCO20636\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: 'CROSS BODY NEGRO Y ROJO '\n type: *6\n value: 'CROSS BODY NEGRO Y ROJO '\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '1049.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.10495E4\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '2099.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.2099E4\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: 96B2C1BB-E424-4DA1-9288-9977F6DDBED8.jpeg\n type: *2\n value: 96B2C1BB-E424-4DA1-9288-9977F6DDBED8.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '6'\n type: *3\n value: 6\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '0001549'\n type: *2\n value: '0001549'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2020-12-13 01:02:20.059921'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- 96B2C1BB-E424-4DA1-9288-9977F6DDBED8.jpeg\n 3 El producto BOL-1549 fue modificado. 187.149.121.224 f7e9d91b-59c6-4ce5-afee-6bea6d2edd10 2021-01-14 19:31:04.504362 51425 1564 Product \N \N 1 User \N update ---\nimg_product:\n- !ruby/object:ImageUploader\n model: !ruby/object:Product\n raw_attributes:\n id: '1564'\n is_parent: false\n sku: CAR-1564\n name: 2BICO20732\n description: CATERA CHICA CON CADENA\n price_base: '449.5'\n price_sale: '899.0'\n img_product: D4528659-14AB-47A8-BDBB-FFE3A19BA1FD.jpeg\n presentation: 'false'\n inventory: 'true'\n unit_id: '3'\n category_id: '4'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170844849'\n is_in_dollars: 'false'\n price_base_dollars: ''\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n content: \n status: '1'\n created_at: '2021-01-13 00:22:39.75127'\n updated_at: &12 2021-01-14 19:35:05.234778130 Z\n parent_id: \n attributes_json: \n product_service_key: '01010101'\n attributes: !ruby/object:ActiveRecord::AttributeSet\n attributes: !ruby/object:ActiveRecord::LazyAttributeHash\n types:\n id: &3 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer\n precision: \n scale: \n limit: \n range: !ruby/range\n begin: -2147483648\n end: 2147483648\n excl: true\n sku: &7 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 30\n name: &8 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: 255\n description: &6 !ruby/object:ActiveRecord::Type::Text\n precision: \n scale: \n limit: \n price_base: &1 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: 10\n scale: 2\n limit: \n price_sale: *1\n img_product_file_name: &2 !ruby/object:ActiveRecord::Type::String\n precision: \n scale: \n limit: \n img_product_content_type: *2\n img_product_file_size: *3\n img_product_updated_at: &9 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: &5 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::DateTime\n precision: \n scale: \n limit: \n presentation: &4 !ruby/object:ActiveRecord::Type::Boolean\n precision: \n scale: \n limit: \n inventory: *4\n content: &10 !ruby/object:ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Decimal\n precision: \n scale: \n limit: \n status: *3\n created_at: &11 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n updated_at: &13 !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter\n subtype: *5\n unit_id: *3\n include_purchase_tax: *3\n include_sale_tax: *3\n barcode: *2\n parent_id: *3\n attributes_json: *6\n is_parent: *4\n is_in_dollars: *4\n price_base_dollars: *1\n img_product: *2\n category_id: *3\n product_service_key: *2\n values:\n id: '1564'\n sku: CAR-1564\n name: 2BICO20732\n description: CATERA CHICA CON CADENA\n price_base: '449.50'\n price_sale: '899.00'\n img_product_file_name: \n img_product_content_type: \n img_product_file_size: \n img_product_updated_at: \n presentation: f\n inventory: t\n content: \n status: '1'\n created_at: '2021-01-13 00:22:39.75127'\n updated_at: '2021-01-13 00:22:39.75127'\n unit_id: '3'\n include_purchase_tax: '0'\n include_sale_tax: '0'\n barcode: '7509170844849'\n parent_id: \n attributes_json: \n is_parent: f\n is_in_dollars: f\n price_base_dollars: \n img_product: \n category_id: '4'\n product_service_key: '01010101'\n additional_types: {}\n materialized: true\n delegate_hash:\n id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: id\n value_before_type_cast: '1564'\n type: *3\n value: 1564\n is_parent: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_parent\n value_before_type_cast: false\n type: *4\n value: false\n sku: !ruby/object:ActiveRecord::Attribute::FromUser\n name: sku\n value_before_type_cast: CAR-1564\n type: *7\n value: CAR-1564\n name: !ruby/object:ActiveRecord::Attribute::FromUser\n name: name\n value_before_type_cast: 2BICO20732\n type: *8\n value: 2BICO20732\n description: !ruby/object:ActiveRecord::Attribute::FromUser\n name: description\n value_before_type_cast: CATERA CHICA CON CADENA\n type: *6\n value: CATERA CHICA CON CADENA\n price_base: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base\n value_before_type_cast: '449.5'\n type: *1\n value: !ruby/object:BigDecimal 18:0.4495E3\n price_sale: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_sale\n value_before_type_cast: '899.0'\n type: *1\n value: !ruby/object:BigDecimal 18:0.899E3\n img_product: !ruby/object:ActiveRecord::Attribute::FromUser\n name: img_product\n value_before_type_cast: D4528659-14AB-47A8-BDBB-FFE3A19BA1FD.jpeg\n type: *2\n value: D4528659-14AB-47A8-BDBB-FFE3A19BA1FD.jpeg\n presentation: !ruby/object:ActiveRecord::Attribute::FromUser\n name: presentation\n value_before_type_cast: 'false'\n type: *4\n value: false\n inventory: !ruby/object:ActiveRecord::Attribute::FromUser\n name: inventory\n value_before_type_cast: 'true'\n type: *4\n value: true\n unit_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: unit_id\n value_before_type_cast: '3'\n type: *3\n value: 3\n category_id: !ruby/object:ActiveRecord::Attribute::FromUser\n name: category_id\n value_before_type_cast: '4'\n type: *3\n value: 4\n include_purchase_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_purchase_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n include_sale_tax: !ruby/object:ActiveRecord::Attribute::FromUser\n name: include_sale_tax\n value_before_type_cast: '0'\n type: *3\n value: 0\n barcode: !ruby/object:ActiveRecord::Attribute::FromUser\n name: barcode\n value_before_type_cast: '7509170844849'\n type: *2\n value: '7509170844849'\n is_in_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: is_in_dollars\n value_before_type_cast: 'false'\n type: *4\n value: false\n price_base_dollars: !ruby/object:ActiveRecord::Attribute::FromUser\n name: price_base_dollars\n value_before_type_cast: ''\n type: *1\n value: \n img_product_file_name: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_name\n value_before_type_cast: \n type: *2\n img_product_content_type: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_content_type\n value_before_type_cast: \n type: *2\n img_product_file_size: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_file_size\n value_before_type_cast: \n type: *3\n img_product_updated_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: img_product_updated_at\n value_before_type_cast: \n type: *9\n content: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: content\n value_before_type_cast: \n type: *10\n status: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: status\n value_before_type_cast: '1'\n type: *3\n created_at: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: created_at\n value_before_type_cast: '2021-01-13 00:22:39.75127'\n type: *11\n updated_at: !ruby/object:ActiveRecord::Attribute::FromUser\n name: updated_at\n value_before_type_cast: *12\n type: *13\n value: *12\n parent_id: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: parent_id\n value_before_type_cast: \n type: *3\n attributes_json: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: attributes_json\n value_before_type_cast: \n type: *6\n product_service_key: !ruby/object:ActiveRecord::Attribute::FromDatabase\n name: product_service_key\n value_before_type_cast: '01010101'\n type: *2\n new_record: false\n mounted_as: :img_product\n- D4528659-14AB-47A8-BDBB-FFE3A19BA1FD.jpeg\n 2 El producto CAR-1564 fue modificado. 187.149.121.224 2bea8481-cc86-4973-9307-d293b63cebe1 2021-01-14 19:35:05.274569 51426 4073 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1285\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2021-01-14\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1927\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 11904971-8d53-4d65-9edd-95b61aef786f 2021-01-14 20:00:02.111152 51427 2685 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.121.224 11904971-8d53-4d65-9edd-95b61aef786f 2021-01-14 20:00:02.145472 51428 4073 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 89bc82a9-45a3-47ca-b8db-b9905d9a194e 2021-01-14 20:00:06.674972 51429 5338 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1285\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 4073\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1927\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1927 187.149.121.224 89bc82a9-45a3-47ca-b8db-b9905d9a194e 2021-01-14 20:00:06.707471 51430 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-13 22:47:16.292085000 Z\n- &1 2021-01-13 23:05:32.893488000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-14 21:55:28.285729300 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945971\n mask_addr: 4294967295\nsign_in_count:\n- 2293\n- 2294\n 4588 \N 200.68.180.243 bb406b76-e878-48cc-9743-3df2467b0e9c 2021-01-14 21:55:28.313475 51431 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UsZDFu9uoNGgzL9p5CUR\n- ZfSBGFQ-7v2KwnRnFZp-\n 4589 \N 200.68.180.243 bb406b76-e878-48cc-9743-3df2467b0e9c 2021-01-14 21:55:28.340145 51432 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-11 21:46:42.156432000 Z\n- &1 2021-01-12 16:58:51.366746000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-14 22:51:47.387697956 Z\nsign_in_count:\n- 388\n- 389\n 779 \N 189.186.62.27 d036467f-9afb-4266-8ecb-25aa3f3d01b0 2021-01-14 22:51:47.393246 51433 21 User \N \N 21 User \N update ---\nunique_session_id:\n- LyR5N8xZ928iozzi388_\n- 8ibFDenbKqC4DxfdRv7Z\n 780 \N 189.186.62.27 d036467f-9afb-4266-8ecb-25aa3f3d01b0 2021-01-14 22:51:47.40994 51434 1286 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.9844E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 984.4 189.186.62.27 3a537213-f02f-453c-ad86-dd90cc7a3f24 2021-01-14 22:52:01.424483 51435 4074 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1286\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2021-01-14\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1227\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 9e64b781-e476-45e6-88f3-1d48f5ecd565 2021-01-14 22:53:13.655495 51436 2678 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.62.27 9e64b781-e476-45e6-88f3-1d48f5ecd565 2021-01-14 22:53:13.694658 51437 4074 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 8d114bad-ca83-4e0b-b3a8-14bdc30d2744 2021-01-14 22:53:24.382548 51438 5339 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1286\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 4074\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1227\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1227 189.186.62.27 8d114bad-ca83-4e0b-b3a8-14bdc30d2744 2021-01-14 22:53:24.412824 51439 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-13 23:05:32.893488000 Z\n- &1 2021-01-14 21:55:28.285729000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-14 23:30:36.460718940 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945971\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945971\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938333\n mask_addr: 4294967295\nsign_in_count:\n- 2294\n- 2295\n 4590 \N 200.68.151.29 b153d8aa-fba5-48a9-893a-e39c58bb801c 2021-01-14 23:30:36.468339 51440 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ZfSBGFQ-7v2KwnRnFZp-\n- tokB6KdexmTygBrDRpmC\n 4591 \N 200.68.151.29 b153d8aa-fba5-48a9-893a-e39c58bb801c 2021-01-14 23:30:36.486352 51441 4075 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1286\namount: !ruby/object:BigDecimal 18:0.61724E3\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.1E3\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2021-01-14\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1228\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 bb20575e-ac6a-432c-a76f-a1dffa959fc1 2021-01-14 23:48:00.781201 51442 939 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.19E2\n- !ruby/object:BigDecimal 18:0.17E2\n 18 \N 189.186.62.27 bb20575e-ac6a-432c-a76f-a1dffa959fc1 2021-01-14 23:48:00.830276 51443 4075 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 735777e4-63d0-4845-808f-255dff1720b5 2021-01-14 23:48:23.66889 51559 2278 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.62.27 5beee659-cd8e-4aaf-9e64-7488488443f1 2021-01-16 18:28:47.632789 51444 5340 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1286\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 4075\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1228\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.4E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1228 189.186.62.27 735777e4-63d0-4845-808f-255dff1720b5 2021-01-14 23:48:23.706157 51445 4076 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1286\namount: !ruby/object:BigDecimal 18:0.238E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.238E3\nstatus: 0\ndate_sale: 2021-01-14\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1229\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 acdb8cb6-20b4-4564-b19c-24bcae81eb87 2021-01-15 01:07:43.15204 51446 2406 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.62.27 acdb8cb6-20b4-4564-b19c-24bcae81eb87 2021-01-15 01:07:43.228409 51447 2099 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.62.27 acdb8cb6-20b4-4564-b19c-24bcae81eb87 2021-01-15 01:07:43.282752 51448 4076 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 861290a6-db69-4fe7-9743-d8e187985d63 2021-01-15 01:07:47.759555 51449 5341 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1286\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.238E3\nmove_type: '1'\nsale_id: 4076\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1229\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.262E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1229 189.186.62.27 861290a6-db69-4fe7-9743-d8e187985d63 2021-01-15 01:07:47.781592 51450 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-14 21:55:28.285729000 Z\n- &1 2021-01-14 23:30:36.460718000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-15 01:44:07.892910611 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359945971\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938333\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938333\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\nsign_in_count:\n- 2295\n- 2296\n 4592 \N 189.186.62.27 a0e33ff7-bd20-4404-b455-97e473566156 2021-01-15 01:44:07.916606 51451 4 User \N \N 4 User \N update ---\nunique_session_id:\n- tokB6KdexmTygBrDRpmC\n- s-JmcGAEiSm_nJZoquCv\n 4593 \N 189.186.62.27 a0e33ff7-bd20-4404-b455-97e473566156 2021-01-15 01:44:07.943278 51452 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-13 19:25:40.976116000 Z\n- &1 2021-01-14 02:04:35.368285000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-15 01:48:31.356230771 Z\nsign_in_count:\n- 480\n- 481\n 963 \N 189.186.62.27 9af2fc2b-3ce8-4595-bfe6-9575e851d64e 2021-01-15 01:48:31.36409 51453 18 User \N \N 18 User \N update ---\nunique_session_id:\n- T-2hyZcP1eWkbuw_-kY4\n- 92reFvy9zsFoA8a3cAgh\n 964 \N 189.186.62.27 9af2fc2b-3ce8-4595-bfe6-9575e851d64e 2021-01-15 01:48:31.385301 51454 1312 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1285\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1099E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.12E4\ncash_fund: !ruby/object:BigDecimal 18:0.525E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1725E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 d4513119-cda6-4f9c-8f3f-7cd1c23f6d8f 2021-01-15 01:51:54.135288 51455 1285 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 d4513119-cda6-4f9c-8f3f-7cd1c23f6d8f 2021-01-15 01:51:54.149693 51456 1313 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1286\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1737E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.901E3\ncash_fund: !ruby/object:BigDecimal 18:0.13704E4\nphysical_cash: !ruby/object:BigDecimal 18:0.22714E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.62.27 e3d03c97-ba12-4a58-80bd-0b612205f4b1 2021-01-15 01:57:57.581429 51457 1286 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.62.27 e3d03c97-ba12-4a58-80bd-0b612205f4b1 2021-01-15 01:57:57.598426 51458 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-14 23:30:36.460718000 Z\n- &1 2021-01-15 01:44:07.892910000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-15 16:49:59.425197506 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938333\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535462\n mask_addr: 4294967295\nsign_in_count:\n- 2296\n- 2297\n 4594 \N 177.228.101.166 45b98953-6a2e-4613-be72-c55b592f24ca 2021-01-15 16:49:59.453066 51459 4 User \N \N 4 User \N update ---\nunique_session_id:\n- s-JmcGAEiSm_nJZoquCv\n- UysyhiCGs3uVPpBGFYzN\n 4595 \N 177.228.101.166 45b98953-6a2e-4613-be72-c55b592f24ca 2021-01-15 16:49:59.482059 51460 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-12 16:58:51.366746000 Z\n- &1 2021-01-14 22:51:47.387697000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-15 17:51:18.203555148 Z\nsign_in_count:\n- 389\n- 390\n 781 \N 189.186.62.27 4f1ae492-d612-44ed-ae24-b02b5ec84efe 2021-01-15 17:51:18.21192 51461 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 8ibFDenbKqC4DxfdRv7Z\n- q5uc_wxfS9xhXTeGdrzw\n 782 \N 189.186.62.27 4f1ae492-d612-44ed-ae24-b02b5ec84efe 2021-01-15 17:51:18.230369 51462 1287 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.13704E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1370.4 189.186.62.27 527e7707-b85c-432f-a49a-063a8c2ed867 2021-01-15 17:52:12.643029 51463 4077 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1287\namount: !ruby/object:BigDecimal 18:0.749E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2996E3\ntotal: !ruby/object:BigDecimal 18:0.4494E3\nstatus: 0\ndate_sale: 2021-01-15\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1230\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 48d61330-5b8a-455d-b7d1-3577a11cc5dc 2021-01-15 17:52:56.954345 51464 1397 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 14 \N 189.186.62.27 48d61330-5b8a-455d-b7d1-3577a11cc5dc 2021-01-15 17:52:56.997973 51465 4077 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 cd128a88-97be-4577-a749-62cfe8749ac3 2021-01-15 17:53:06.190551 51560 2615 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.62.27 5beee659-cd8e-4aaf-9e64-7488488443f1 2021-01-16 18:28:47.667728 51466 5342 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1287\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4494E3\nmove_type: '1'\nsale_id: 4077\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1230\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.506E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1230 189.186.62.27 cd128a88-97be-4577-a749-62cfe8749ac3 2021-01-15 17:53:06.215743 51467 491 Customer \N \N 21 User \N create ---\nnick_name: MARIELO VAZQUEZ\nphone: "(667) 188-2464"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.4E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente MARIELO VAZQUEZ fue registrado. 189.186.62.27 0e85be08-a813-42cb-9087-38207bf2ffcb 2021-01-15 17:57:24.296053 51468 4078 Sale \N \N 21 User \N create ---\ncustomer_id: 491\nuser_id: 21\nopen_cash_register_id: 1287\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2021-01-15\nsaletype: 0\nseller_id: 31\nsale_code: PV3-V-1231\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 068dfc9a-da1c-4a93-bdc2-0cb3c6cfac1c 2021-01-15 17:58:35.215256 51469 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 63 \N 189.186.62.27 068dfc9a-da1c-4a93-bdc2-0cb3c6cfac1c 2021-01-15 17:58:35.242418 51470 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-13 19:04:57.068543000 Z\n- &1 2021-01-14 17:18:07.732305000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-15 18:17:48.551276148 Z\nsign_in_count:\n- 748\n- 749\n 1501 \N 187.149.121.224 af51e669-d963-4d44-8b2f-319a59ce667f 2021-01-15 18:17:48.578422 51471 2 User \N \N 2 User \N update ---\nunique_session_id:\n- smYgRcpupv_aKHwD1Fhj\n- xkuejkfLMFn6y_yoV28-\n 1502 \N 187.149.121.224 af51e669-d963-4d44-8b2f-319a59ce667f 2021-01-15 18:17:48.600329 51472 1288 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.525E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 525.0 187.149.121.224 6ffcf7ed-5d72-4baf-81e2-ca8eb5b4917c 2021-01-15 18:46:50.378801 51473 4079 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1288\namount: !ruby/object:BigDecimal 18:0.3328E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1624E4\ntotal: !ruby/object:BigDecimal 18:0.1704E4\nstatus: 0\ndate_sale: 2021-01-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1928\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 aaddc3d5-580d-47af-b23c-f9655cda60f0 2021-01-15 23:20:53.086205 51474 2507 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.121.224 aaddc3d5-580d-47af-b23c-f9655cda60f0 2021-01-15 23:20:53.137276 51475 2539 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.121.224 aaddc3d5-580d-47af-b23c-f9655cda60f0 2021-01-15 23:20:53.170918 51476 2513 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.121.224 aaddc3d5-580d-47af-b23c-f9655cda60f0 2021-01-15 23:20:53.194195 51477 4079 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 0c68ec27-b656-4e7d-a2d4-381544ae7144 2021-01-15 23:20:59.471557 51478 5343 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1288\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1704E4\nmove_type: '1'\nsale_id: 4079\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1928\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1704E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1928 187.149.121.224 0c68ec27-b656-4e7d-a2d4-381544ae7144 2021-01-15 23:20:59.497346 51479 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-15 01:44:07.892910000 Z\n- &1 2021-01-15 16:49:59.425197000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-15 23:35:02.253480052 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535462\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535462\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\nsign_in_count:\n- 2297\n- 2298\n 4596 \N 189.186.62.27 76dc1c51-84ca-413e-a585-a89fab592a38 2021-01-15 23:35:02.280516 51480 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UysyhiCGs3uVPpBGFYzN\n- EpVTwBoVDXMQE-3h77wm\n 4597 \N 189.186.62.27 76dc1c51-84ca-413e-a585-a89fab592a38 2021-01-15 23:35:02.307294 51481 804 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2021-01-15\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.62.27 20821a60-6c52-4060-99ea-3a9da9fea8f5 2021-01-15 23:36:16.687305 51482 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-14 02:04:35.368285000 Z\n- &1 2021-01-15 01:48:31.356230000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-15 23:36:48.768955313 Z\nsign_in_count:\n- 481\n- 482\n 965 \N 189.186.62.27 ec8582f3-b336-4144-b7fc-d2996bebe977 2021-01-15 23:36:48.774643 51483 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 92reFvy9zsFoA8a3cAgh\n- 7qGNpKctH8Br4otsNnGv\n 966 \N 189.186.62.27 ec8582f3-b336-4144-b7fc-d2996bebe977 2021-01-15 23:36:48.792158 51484 804 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-01-15\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.62.27 24c05a7e-fd54-4112-baf8-6dd44de6403b 2021-01-15 23:37:01.329627 51485 1231 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 189.186.62.27 24c05a7e-fd54-4112-baf8-6dd44de6403b 2021-01-15 23:37:01.357121 51486 4080 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1287\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.519E3\ntotal: !ruby/object:BigDecimal 18:0.78E3\nstatus: 0\ndate_sale: 2021-01-15\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1232\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 7be7fe76-b1ce-425a-adc6-09e040af2503 2021-01-15 23:40:09.523639 51487 1231 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 189.186.62.27 7be7fe76-b1ce-425a-adc6-09e040af2503 2021-01-15 23:40:09.551281 51488 4080 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 3ccdbc2f-b15a-48a6-aa95-66fd90b6ebf8 2021-01-15 23:41:09.190452 51561 4085 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 4510585d-befb-471b-ad77-26fb422b5367 2021-01-16 18:30:38.847164 51489 5344 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1287\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.78E3\nmove_type: '1'\nsale_id: 4080\ncardnumber: 1222\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1232\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1232 189.186.62.27 3ccdbc2f-b15a-48a6-aa95-66fd90b6ebf8 2021-01-15 23:41:09.217178 51490 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-15 16:49:59.425197000 Z\n- &1 2021-01-15 23:35:02.253480000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-16 01:18:02.422654621 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535462\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\nsign_in_count:\n- 2298\n- 2299\n 4598 \N 189.186.62.27 95593ac7-3b76-4266-8c88-d50f869abb9a 2021-01-16 01:18:02.44378 51491 4 User \N \N 4 User \N update ---\nunique_session_id:\n- EpVTwBoVDXMQE-3h77wm\n- XzJvysBo87fshcnoPy6s\n 4599 \N 189.186.62.27 95593ac7-3b76-4266-8c88-d50f869abb9a 2021-01-16 01:18:02.46668 51492 1565 Product \N \N 4 User \N create ---\nsku: BOL-1565\nname: 1BLCV20303\ndescription: CANGURERA Y CROSSBODY VERDE,AZUL Y NEGRO\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1565 fue creado. 189.186.62.27 3a3fba1f-ee5e-4b3f-883e-f3314e58722c 2021-01-16 01:20:42.024639 51493 1565 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001565'\n 2 \N 189.186.62.27 3a3fba1f-ee5e-4b3f-883e-f3314e58722c 2021-01-16 01:20:42.068771 51494 2686 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1565\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.62.27 3a3fba1f-ee5e-4b3f-883e-f3314e58722c 2021-01-16 01:20:42.108594 51495 1566 Product \N \N 4 User \N create ---\nsku: BOL-1566\nname: 1BLCV20269\ndescription: BACK PACK MEDIANO CON EVILLA NEGRO Y CAMEL\nprice_base: !ruby/object:BigDecimal 18:0.7495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1499E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1566 fue creado. 189.186.62.27 5848de3b-4730-4f05-82af-55b3d37e36dd 2021-01-16 01:21:48.939576 51496 1566 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001566'\n 2 \N 189.186.62.27 5848de3b-4730-4f05-82af-55b3d37e36dd 2021-01-16 01:21:49.002264 51497 2687 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1566\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.62.27 5848de3b-4730-4f05-82af-55b3d37e36dd 2021-01-16 01:21:49.04235 51498 1567 Product \N \N 4 User \N create ---\nsku: BOL-1567\nname: 2BLCV20504\ndescription: CROSSBODY GRANDE CORAL,NEGRO Y GRIS\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1567 fue creado. 189.186.62.27 dcdcbf1c-58c1-46e2-b99c-107f3e7e77cd 2021-01-16 01:22:58.306992 51499 1567 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001567'\n 2 \N 189.186.62.27 dcdcbf1c-58c1-46e2-b99c-107f3e7e77cd 2021-01-16 01:22:58.353981 51500 2688 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1567\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.62.27 dcdcbf1c-58c1-46e2-b99c-107f3e7e77cd 2021-01-16 01:22:58.388864 51501 1568 Product \N \N 4 User \N create ---\nsku: BOL-1568\nname: 2BLCV20506\ndescription: ",BACK PACK GRANDE CORAL,NEGRO, GRIS"\nprice_base: !ruby/object:BigDecimal 18:0.8995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1799E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1568 fue creado. 189.186.62.27 592d724d-f4e1-4c87-937a-18d69053bc09 2021-01-16 01:26:29.608402 51502 1568 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001568'\n 2 \N 189.186.62.27 592d724d-f4e1-4c87-937a-18d69053bc09 2021-01-16 01:26:29.637035 51503 2689 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1568\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.62.27 592d724d-f4e1-4c87-937a-18d69053bc09 2021-01-16 01:26:29.662913 51504 516 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-156\namount: !ruby/object:BigDecimal 18:0.67455E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.67455E4\nobservations: ''\npurchase_date: 2021-01-15\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-156 por $ 6745.5 MXN creada. 189.186.62.27 e1212017-015b-4a87-a8d8-b6c826fc1137 2021-01-16 01:26:33.094392 51505 2686 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.62.27 e1212017-015b-4a87-a8d8-b6c826fc1137 2021-01-16 01:26:33.121037 51506 2687 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.62.27 e1212017-015b-4a87-a8d8-b6c826fc1137 2021-01-16 01:26:33.159505 51507 2688 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 189.186.62.27 e1212017-015b-4a87-a8d8-b6c826fc1137 2021-01-16 01:26:33.185495 51508 2689 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.62.27 e1212017-015b-4a87-a8d8-b6c826fc1137 2021-01-16 01:26:33.212405 51509 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-15 01:48:31.356230000 Z\n- &1 2021-01-15 23:36:48.768955000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-16 01:37:07.198293225 Z\nsign_in_count:\n- 482\n- 483\n 967 \N 189.186.62.27 f88a6f6a-2537-470f-ba4b-5619c0ecd99c 2021-01-16 01:37:07.205084 51510 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 7qGNpKctH8Br4otsNnGv\n- S8CaMBsy8TQmkc_qbHEz\n 968 \N 189.186.62.27 f88a6f6a-2537-470f-ba4b-5619c0ecd99c 2021-01-16 01:37:07.22199 51511 4081 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1287\namount: !ruby/object:BigDecimal 18:0.3598E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.3598E4\nstatus: 0\ndate_sale: 2021-01-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1233\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 4789ae93-5736-451f-b9f9-fd1b183dc4d0 2021-01-16 01:40:08.203721 51512 2631 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 18 \N 189.186.62.27 4789ae93-5736-451f-b9f9-fd1b183dc4d0 2021-01-16 01:40:08.232813 51513 2638 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 189.186.62.27 4789ae93-5736-451f-b9f9-fd1b183dc4d0 2021-01-16 01:40:08.262565 51514 4081 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 410f3986-c12b-4e6b-a109-7b9799d59db0 2021-01-16 01:40:13.271514 51515 5345 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1287\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E4\nmove_type: '1'\nsale_id: 4081\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1233\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1233 189.186.62.27 410f3986-c12b-4e6b-a109-7b9799d59db0 2021-01-16 01:40:13.295391 51516 5346 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1287\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 4081\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1233\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1233 189.186.62.27 a09b6e33-38ee-4739-b30e-7ef38ce28fd7 2021-01-16 01:40:19.889423 51517 5347 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1287\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.2498E4\nmove_type: '1'\nsale_id: 4081\ncardnumber: 5255\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1233\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1233 189.186.62.27 c1f7a061-63a0-4ddb-8ba0-fd718b73a478 2021-01-16 01:40:34.427552 51518 4082 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1287\namount: !ruby/object:BigDecimal 18:0.1469E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.589E3\ntotal: !ruby/object:BigDecimal 18:0.88E3\nstatus: 0\ndate_sale: 2021-01-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1234\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 4a4f526e-4066-47c8-a4c8-65ae3576b379 2021-01-16 01:43:53.8595 51519 1388 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.62.27 4a4f526e-4066-47c8-a4c8-65ae3576b379 2021-01-16 01:43:53.883921 51520 4082 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 2ab60404-7927-4574-955d-2dbadf7b980a 2021-01-16 01:44:02.564938 51521 5348 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1287\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.88E3\nmove_type: '1'\nsale_id: 4082\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1234\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.12E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1234 189.186.62.27 2ab60404-7927-4574-955d-2dbadf7b980a 2021-01-16 01:44:02.59164 51522 803 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-01-15\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.121.224 8d228f63-3922-438a-b9ea-86bfe2214c84 2021-01-16 01:44:33.58071 51523 2538 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 187.149.121.224 8d228f63-3922-438a-b9ea-86bfe2214c84 2021-01-16 01:44:33.59858 51524 681 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.121.224 8d228f63-3922-438a-b9ea-86bfe2214c84 2021-01-16 01:44:33.616179 51525 2690 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 416\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.2E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.121.224 8d228f63-3922-438a-b9ea-86bfe2214c84 2021-01-16 01:44:33.636091 51526 159 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.121.224 8d228f63-3922-438a-b9ea-86bfe2214c84 2021-01-16 01:44:33.651759 51527 1159 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 5 \N 187.149.121.224 8d228f63-3922-438a-b9ea-86bfe2214c84 2021-01-16 01:44:33.668901 51528 517 Purchase \N \N 2 User \N create ---\nsupplier_id: 2\npointsale_id: 1\npurchase_code: PV1-C-221\namount: !ruby/object:BigDecimal 18:0.836E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.836E3\nobservations: ''\npurchase_date: 2021-01-15\nuser_id: '2'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-221 por $ 836.0 MXN creada. 187.149.121.224 3faa58fb-ba8c-47a9-9eff-8ad262e9da47 2021-01-16 01:50:08.123818 51529 2609 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 187.149.121.224 3faa58fb-ba8c-47a9-9eff-8ad262e9da47 2021-01-16 01:50:08.150718 51530 4083 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1288\namount: !ruby/object:BigDecimal 18:0.1045E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.31E3\ntotal: !ruby/object:BigDecimal 18:0.735E3\nstatus: 0\ndate_sale: 2021-01-15\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1929\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 f93fa5b0-d5af-4325-b213-ea6711b9e233 2021-01-16 01:50:58.650803 51531 2609 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.121.224 f93fa5b0-d5af-4325-b213-ea6711b9e233 2021-01-16 01:50:58.678917 51532 4083 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 a0a50775-8476-4978-b00c-b33392fd25cf 2021-01-16 01:51:14.322332 51558 4085 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1289\namount: !ruby/object:BigDecimal 18:0.1895E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2796E3\ntotal: !ruby/object:BigDecimal 18:0.16154E4\nstatus: 0\ndate_sale: 2021-01-16\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1236\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 5beee659-cd8e-4aaf-9e64-7488488443f1 2021-01-16 18:28:47.600648 51533 5349 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1288\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.735E3\nmove_type: '1'\nsale_id: 4083\ncardnumber: 8692\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1929\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1929 187.149.121.224 a0a50775-8476-4978-b00c-b33392fd25cf 2021-01-16 01:51:14.343183 51534 1314 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1287\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.57074E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 27:0.12998000000000002E4\nphysical_cash: !ruby/object:BigDecimal 18:0.37998E4\nobservations: SOBRAN 191 BODY\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.62.27 3a910e86-f853-4425-8486-d8946eef2ea6 2021-01-16 01:53:59.425884 51535 1287 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.62.27 3a910e86-f853-4425-8486-d8946eef2ea6 2021-01-16 01:53:59.442853 51536 1315 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1288\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2439E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.178E4\ncash_fund: !ruby/object:BigDecimal 18:0.449E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2229E4\nobservations: EN SOBRE HAY $1500 $280 FUERON DE ARETES VENDIDOS CON TERMINAL\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 6977d82c-bb26-4d75-8e64-9249b88ea14d 2021-01-16 01:54:56.28409 51537 1288 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 6977d82c-bb26-4d75-8e64-9249b88ea14d 2021-01-16 01:54:56.306339 51538 1289 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.12998E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1299.8 189.186.62.27 6679ada0-909c-4d66-a0e1-b63960a72179 2021-01-16 02:11:00.593078 51539 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-15 23:35:02.253480000 Z\n- &1 2021-01-16 01:18:02.422654000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-16 02:11:27.078112161 Z\nsign_in_count:\n- 2299\n- 2300\n 4600 \N 189.186.62.27 a75c006c-c517-4a81-a40f-dcb458cdf6f9 2021-01-16 02:11:27.087979 51540 4 User \N \N 4 User \N update ---\nunique_session_id:\n- XzJvysBo87fshcnoPy6s\n- Cs97YZgGJptMbs-ta4H9\n 4601 \N 189.186.62.27 a75c006c-c517-4a81-a40f-dcb458cdf6f9 2021-01-16 02:11:27.108083 51541 805 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2021-01-15\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO Comercial creado. 189.186.62.27 fbb645bf-6fcb-449f-8ec3-26a6333d14b3 2021-01-16 02:12:49.209773 51542 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-15 23:36:48.768955000 Z\n- &1 2021-01-16 01:37:07.198293000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-16 02:14:28.903536287 Z\nsign_in_count:\n- 483\n- 484\n 969 \N 189.186.62.27 1610830c-84a8-4c15-9e62-bd9efff62c31 2021-01-16 02:14:28.909634 51543 18 User \N \N 18 User \N update ---\nunique_session_id:\n- S8CaMBsy8TQmkc_qbHEz\n- qsZznmKx2SjPzv9q-a4f\n 970 \N 189.186.62.27 1610830c-84a8-4c15-9e62-bd9efff62c31 2021-01-16 02:14:28.925456 51544 805 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-01-15\n 2 Se dio entrada a traspaso de Almacen central a SUO Comercial 189.186.62.27 ea695645-5705-4451-a536-b93311af1038 2021-01-16 02:15:46.972025 51545 1537 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 189.186.62.27 ea695645-5705-4451-a536-b93311af1038 2021-01-16 02:15:46.999198 51546 4084 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1289\namount: !ruby/object:BigDecimal 18:0.1927E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.88E3\ntotal: !ruby/object:BigDecimal 18:0.1047E4\nstatus: 0\ndate_sale: 2021-01-15\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1235\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 2d80d880-f725-482a-86ed-7d2ca2364d48 2021-01-16 02:28:45.3328 51547 2278 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 189.186.62.27 2d80d880-f725-482a-86ed-7d2ca2364d48 2021-01-16 02:28:45.366841 51548 1537 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 189.186.62.27 2d80d880-f725-482a-86ed-7d2ca2364d48 2021-01-16 02:28:45.392524 51549 2639 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 189.186.62.27 2d80d880-f725-482a-86ed-7d2ca2364d48 2021-01-16 02:28:45.418052 51550 4084 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 c5650149-ad29-4924-8b62-159b6513404a 2021-01-16 02:28:59.183938 51551 5350 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1289\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1047E4\nmove_type: '1'\nsale_id: 4084\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1235\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1525'\n 1 movimiento de efectivo por venta con folio PV3-V-1235 189.186.62.27 c5650149-ad29-4924-8b62-159b6513404a 2021-01-16 02:28:59.216266 51552 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-16 01:18:02.422654000 Z\n- &1 2021-01-16 02:11:27.078112000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-16 17:55:57.267069777 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535878\n mask_addr: 4294967295\nsign_in_count:\n- 2300\n- 2301\n 4602 \N 177.228.103.70 03fdcc65-b149-4278-85dc-771c38f887d2 2021-01-16 17:55:57.295643 51553 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Cs97YZgGJptMbs-ta4H9\n- C1sv6WxtVC8EUmHTseHn\n 4603 \N 177.228.103.70 03fdcc65-b149-4278-85dc-771c38f887d2 2021-01-16 17:55:57.324941 51554 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-14 17:18:07.732305000 Z\n- &1 2021-01-15 18:17:48.551276000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-16 18:06:59.360077286 Z\nsign_in_count:\n- 749\n- 750\n 1503 \N 187.149.121.224 6d7e6abb-9a56-4a6f-9ac8-90664cc58d09 2021-01-16 18:06:59.365611 51555 2 User \N \N 2 User \N update ---\nunique_session_id:\n- xkuejkfLMFn6y_yoV28-\n- EHRoHys2pgwYbkSpSzMX\n 1504 \N 187.149.121.224 6d7e6abb-9a56-4a6f-9ac8-90664cc58d09 2021-01-16 18:06:59.382335 51556 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-14 22:51:47.387697000 Z\n- &1 2021-01-15 17:51:18.203555000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-16 18:15:11.486227360 Z\nsign_in_count:\n- 390\n- 391\n 783 \N 189.186.62.27 8a17032a-4021-4f84-bf22-7809104f1a9b 2021-01-16 18:15:11.492026 51557 21 User \N \N 21 User \N update ---\nunique_session_id:\n- q5uc_wxfS9xhXTeGdrzw\n- w5rzNkwZtXreNGsxTWNJ\n 784 \N 189.186.62.27 8a17032a-4021-4f84-bf22-7809104f1a9b 2021-01-16 18:15:11.50692 51562 5351 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1289\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1615E4\nmove_type: '1'\nsale_id: 4085\ncardnumber: 1245\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1236\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1236 189.186.62.27 4510585d-befb-471b-ad77-26fb422b5367 2021-01-16 18:30:38.880624 51563 5351 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1289\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1615E4\nmove_type: '1'\nsale_id: 4085\ncardnumber: 1245\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1236\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.62.27 d1a0d3f0-cf18-47f1-8bc1-4549c0fe8f7d 2021-01-16 18:31:24.289425 51564 1290 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.449E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 449.0 187.149.121.224 469a3925-b602-4b14-a80d-2886004af9ac 2021-01-16 18:31:29.292392 51565 5352 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1289\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.16154E4\nmove_type: '1'\nsale_id: 4085\ncardnumber: 1245\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1236\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1236 189.186.62.27 0317170c-557a-471c-8960-8bd1f17d0094 2021-01-16 18:31:49.156803 51566 4086 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1289\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2021-01-16\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1237\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 b5af3bfd-2f03-4c63-bdc0-e5875c3a623e 2021-01-16 20:03:28.3135 51567 2375 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 42 \N 189.186.62.27 b5af3bfd-2f03-4c63-bdc0-e5875c3a623e 2021-01-16 20:03:28.338909 51568 4086 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-1237 cancelada. 189.186.62.27 c1eea672-9a21-46e0-9c45-a9a8ae2e65ce 2021-01-16 20:03:41.986154 51569 2375 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.3E1\n 43 \N 189.186.62.27 c1eea672-9a21-46e0-9c45-a9a8ae2e65ce 2021-01-16 20:03:42.024521 51570 4087 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1289\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2021-01-16\nsaletype: 1\nseller_id: 29\nsale_code: PV3-V-1238\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 cabb3b45-3eb8-4d88-9af8-2fe4a3d0bb01 2021-01-16 20:04:51.158182 51571 2375 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 44 \N 189.186.62.27 cabb3b45-3eb8-4d88-9af8-2fe4a3d0bb01 2021-01-16 20:04:51.189503 51572 4087 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 1ad8c6df-18d7-440d-865e-bebf41bd8b35 2021-01-16 20:05:07.942558 51573 5353 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1289\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 4087\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1238\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '2145'\n 1 movimiento de efectivo por venta con folio PV3-V-1238 189.186.62.27 1ad8c6df-18d7-440d-865e-bebf41bd8b35 2021-01-16 20:05:07.964157 51574 4088 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1289\namount: !ruby/object:BigDecimal 18:0.1898E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1898E4\nstatus: 0\ndate_sale: 2021-01-16\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1239\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 982026bf-0968-4117-b50f-8276c3f07ac9 2021-01-16 21:09:03.120807 51575 2679 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.62.27 982026bf-0968-4117-b50f-8276c3f07ac9 2021-01-16 21:09:03.153242 51576 2677 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.62.27 982026bf-0968-4117-b50f-8276c3f07ac9 2021-01-16 21:09:03.175538 51577 4088 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 d513eb24-0917-4330-b4cf-650614994498 2021-01-16 21:10:03.22607 51578 5354 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1289\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1898E4\nmove_type: '1'\nsale_id: 4088\ncardnumber: 4512\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1239\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1239 189.186.62.27 d513eb24-0917-4330-b4cf-650614994498 2021-01-16 21:10:03.247879 51579 5355 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1290\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.498E3\nmove_type: '1'\nsale_id: 3556\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.498E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1694 187.149.121.224 d5d8c62a-b578-4c7a-b1fb-42265e1b7924 2021-01-16 21:53:30.292091 51580 3556 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.121.224 abeee59a-0ec4-405e-a403-39c6a4fa0d3f 2021-01-16 21:53:34.584656 51581 4089 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1289\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2021-01-16\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1240\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 1f6d177f-54ac-4a1f-a8ef-db93a5f88eb1 2021-01-16 22:33:22.71473 51582 2688 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.62.27 1f6d177f-54ac-4a1f-a8ef-db93a5f88eb1 2021-01-16 22:33:22.749218 51583 4089 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 5e8c00d9-23ee-4c74-b325-172d355f61ed 2021-01-16 22:34:07.899427 51584 5356 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1289\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1399E4\nmove_type: '1'\nsale_id: 4089\ncardnumber: 7854\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1240\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1240 189.186.62.27 5e8c00d9-23ee-4c74-b325-172d355f61ed 2021-01-16 22:34:07.924092 51585 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-16 02:11:27.078112000 Z\n- &1 2021-01-16 17:55:57.267069000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-16 22:49:37.202102930 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535878\n mask_addr: 4294967295\nsign_in_count:\n- 2301\n- 2302\n 4604 \N 177.228.103.70 6e1d03fe-ba98-4297-8b3f-414af8c69e80 2021-01-16 22:49:37.211413 51586 4 User \N \N 4 User \N update ---\nunique_session_id:\n- C1sv6WxtVC8EUmHTseHn\n- HNtN2jQ3QzmVE7QSnkCD\n 4605 \N 177.228.103.70 6e1d03fe-ba98-4297-8b3f-414af8c69e80 2021-01-16 22:49:37.234429 51587 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-16 17:55:57.267069000 Z\n- &1 2021-01-16 22:49:37.202102000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-16 23:13:05.895481298 Z\nsign_in_count:\n- 2302\n- 2303\n 4606 \N 177.228.103.70 a0ab8135-856a-4b77-991c-2dcd0fabb8de 2021-01-16 23:13:05.913711 51588 4 User \N \N 4 User \N update ---\nunique_session_id:\n- HNtN2jQ3QzmVE7QSnkCD\n- DyxZynPvLdT-2xoRxyEU\n 4607 \N 177.228.103.70 a0ab8135-856a-4b77-991c-2dcd0fabb8de 2021-01-16 23:13:05.941119 51589 4090 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1290\namount: !ruby/object:BigDecimal 18:0.949E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.38E3\ntotal: !ruby/object:BigDecimal 18:0.569E3\nstatus: 0\ndate_sale: 2021-01-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1930\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 b2527d88-5f05-4dfc-b3f1-6fa06c34caee 2021-01-16 23:44:25.185697 51590 1410 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 16 \N 187.149.121.224 b2527d88-5f05-4dfc-b3f1-6fa06c34caee 2021-01-16 23:44:25.22557 51591 4090 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 677c59d6-b0be-4828-8a6a-780ba29a2d92 2021-01-16 23:44:49.629034 51592 5357 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1290\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.569E3\nmove_type: '1'\nsale_id: 4090\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1930\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.569E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1930 187.149.121.224 677c59d6-b0be-4828-8a6a-780ba29a2d92 2021-01-16 23:44:49.654392 51593 4091 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1290\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2021-01-16\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1931\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 a79c5295-c578-4550-bc38-a852a3c01845 2021-01-17 00:20:32.143117 51594 2685 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 187.149.121.224 a79c5295-c578-4550-bc38-a852a3c01845 2021-01-17 00:20:32.188679 51595 4091 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 ed601313-d9d7-463d-8c37-cbeb77cab2c1 2021-01-17 00:20:43.931976 51596 5358 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1290\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1099E4\nmove_type: '1'\nsale_id: 4091\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1931\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1099E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1931 187.149.121.224 ed601313-d9d7-463d-8c37-cbeb77cab2c1 2021-01-17 00:20:43.953997 51597 384 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1290\nquantity: !ruby/object:BigDecimal 18:0.18E3\nstatus: 1\nobservations: horas extras rocio\nexpense_date: 2021-01-16\nexpense_code: PV1-E-264\n 1 Egreso por 180.0 registrado 187.149.121.224 cc943b88-14c4-4ca7-8208-c0be51d0b9ff 2021-01-17 00:29:21.61827 51598 5359 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1290\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.18E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 384\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.121.224 cc943b88-14c4-4ca7-8208-c0be51d0b9ff 2021-01-17 00:29:21.643588 51599 1316 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1290\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2166E4\namount_out: !ruby/object:BigDecimal 18:0.18E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.18E4\ncash_fund: !ruby/object:BigDecimal 18:0.635E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2435E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 6db7d412-51cc-4f50-9365-249ca533fe74 2021-01-17 01:43:52.107601 51600 1290 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 6db7d412-51cc-4f50-9365-249ca533fe74 2021-01-17 01:43:52.122088 51601 385 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1289\nquantity: !ruby/object:BigDecimal 18:0.105E4\nstatus: 1\nobservations: SUELDO NAYELI\nexpense_date: 2021-01-16\nexpense_code: PV3-E-59\n 1 Egreso por 1050.0 registrado 189.186.62.27 ccab9fd4-a969-4b33-9334-18f3e3c99a83 2021-01-17 01:46:08.936971 51602 5360 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1289\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.105E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 385\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.62.27 ccab9fd4-a969-4b33-9334-18f3e3c99a83 2021-01-17 01:46:08.960634 51603 1317 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1289\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.73584E4\namount_out: !ruby/object:BigDecimal 18:0.105E4\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.249E3\nphysical_cash: !ruby/object:BigDecimal 18:0.249E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.62.27 ee3a796c-653f-4f66-92a7-a8c5c0f4291f 2021-01-17 02:01:39.906492 51604 1289 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.62.27 ee3a796c-653f-4f66-92a7-a8c5c0f4291f 2021-01-17 02:01:39.92054 51680 2686 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 3 \N 189.186.62.27 8a1509e8-9698-4059-8b3c-3cd82d110e9b 2021-01-19 19:46:18.731272 51605 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-16 22:49:37.202102000 Z\n- &1 2021-01-16 23:13:05.895481000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-17 02:06:57.432560801 Z\nsign_in_count:\n- 2303\n- 2304\n 4608 \N 177.228.103.70 fd6493a8-c246-4852-a1d0-7ce497b30e61 2021-01-17 02:06:57.4403 51606 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DyxZynPvLdT-2xoRxyEU\n- DNRQBJxzeiG2zy86U9W1\n 4609 \N 177.228.103.70 fd6493a8-c246-4852-a1d0-7ce497b30e61 2021-01-17 02:06:57.457701 51607 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-15 17:51:18.203555000 Z\n- &1 2021-01-16 18:15:11.486227000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-17 22:54:28.188234780 Z\nsign_in_count:\n- 391\n- 392\n 785 \N 189.186.62.27 9b52b683-4c71-434e-92fc-d35e7dd29fef 2021-01-17 22:54:28.217366 51608 21 User \N \N 21 User \N update ---\nunique_session_id:\n- w5rzNkwZtXreNGsxTWNJ\n- Qrx8k6deYJgouHWr7s5c\n 786 \N 189.186.62.27 9b52b683-4c71-434e-92fc-d35e7dd29fef 2021-01-17 22:54:28.239373 51609 1291 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.249E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 249.0 189.186.62.27 8b8f7901-e678-4fdf-adc7-8698e8fd2636 2021-01-17 22:54:42.445524 51610 1318 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1291\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.249E3\nphysical_cash: !ruby/object:BigDecimal 18:0.249E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.62.27 72dd2156-3412-4515-8170-0696f7f1d2d0 2021-01-17 22:55:15.148913 51611 1291 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.62.27 72dd2156-3412-4515-8170-0696f7f1d2d0 2021-01-17 22:55:15.16684 51612 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-16 23:13:05.895481000 Z\n- &1 2021-01-17 02:06:57.432560000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-17 23:36:20.044374949 Z\nsign_in_count:\n- 2304\n- 2305\n 4610 \N 177.228.103.70 e8953dd6-bf7c-4f40-b1d7-e6da813a6e1b 2021-01-17 23:36:20.051521 51613 4 User \N \N 4 User \N update ---\nunique_session_id:\n- DNRQBJxzeiG2zy86U9W1\n- cQoCdseAtQxPCMiiYWw_\n 4611 \N 177.228.103.70 e8953dd6-bf7c-4f40-b1d7-e6da813a6e1b 2021-01-17 23:36:20.07241 51614 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-15 18:17:48.551276000 Z\n- &1 2021-01-16 18:06:59.360077000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-18 18:20:17.199388793 Z\nsign_in_count:\n- 750\n- 751\n 1505 \N 187.149.121.224 7b2727c7-bc1a-4212-a590-2830881cbc06 2021-01-18 18:20:17.228498 51615 2 User \N \N 2 User \N update ---\nunique_session_id:\n- EHRoHys2pgwYbkSpSzMX\n- MRWJeayxqrJgbU6MQeFi\n 1506 \N 187.149.121.224 7b2727c7-bc1a-4212-a590-2830881cbc06 2021-01-18 18:20:17.25421 51616 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-16 18:06:59.360077000 Z\n- &1 2021-01-18 18:20:17.199388000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-18 19:48:07.559734437 Z\nsign_in_count:\n- 751\n- 752\n 1507 \N 187.149.121.224 c11aecb2-9f1a-43a8-b86e-0ff337b84276 2021-01-18 19:48:07.565545 51617 2 User \N \N 2 User \N update ---\nunique_session_id:\n- MRWJeayxqrJgbU6MQeFi\n- WUp6P6L_MwM4CFsvbcvv\n 1508 \N 187.149.121.224 c11aecb2-9f1a-43a8-b86e-0ff337b84276 2021-01-18 19:48:07.585949 51618 1292 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.635E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 635.0 187.149.121.224 ee296c5b-9385-407c-a433-e83b6af87cad 2021-01-18 19:48:36.842449 51619 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-01-14 01:39:45.681756000 Z\n- &1 2021-01-14 19:28:18.899908000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-19 00:02:03.730619540 Z\nsign_in_count:\n- 449\n- 450\n 900 \N 187.149.121.224 94e2a8a8-bb2a-43d0-b1ab-e41333f109ee 2021-01-19 00:02:03.748861 51620 1 User \N \N 1 User \N update ---\nunique_session_id:\n- _SuMHk67QR_yVmsrJFwr\n- 35jy1zBLH1r6mQnFsjwp\n 901 \N 187.149.121.224 94e2a8a8-bb2a-43d0-b1ab-e41333f109ee 2021-01-19 00:02:03.771166 51621 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-16 01:37:07.198293000 Z\n- &1 2021-01-16 02:14:28.903536000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-19 00:03:48.518560323 Z\nsign_in_count:\n- 484\n- 485\n 971 \N 189.186.62.27 783b99b8-73c5-4320-a383-641a6edc4798 2021-01-19 00:03:48.524594 51622 18 User \N \N 18 User \N update ---\nunique_session_id:\n- qsZznmKx2SjPzv9q-a4f\n- Auyrbq3qgDpWGRDubN5C\n 972 \N 189.186.62.27 783b99b8-73c5-4320-a383-641a6edc4798 2021-01-19 00:03:48.537903 51623 1293 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.249E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 249.0 189.186.62.27 cd48b276-8d9a-47ff-af0d-6db60f2e599f 2021-01-19 00:04:06.915791 51624 4092 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1293\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2021-01-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1241\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 d3bd4ede-a684-4a34-9652-d673d112b1b4 2021-01-19 00:05:06.78046 51625 2280 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 14 \N 189.186.62.27 d3bd4ede-a684-4a34-9652-d673d112b1b4 2021-01-19 00:05:06.815904 51626 4092 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-1241 cancelada. 189.186.62.27 81585346-c693-460b-b0fd-89ef6caa9c34 2021-01-19 00:05:11.586614 51627 2280 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.6E1\n 15 \N 189.186.62.27 81585346-c693-460b-b0fd-89ef6caa9c34 2021-01-19 00:05:11.609714 51628 4093 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1293\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.199E3\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2021-01-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1242\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 5bf79158-dd0e-45b6-a727-3060f866bc5d 2021-01-19 00:05:37.88388 51629 2280 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 16 \N 189.186.62.27 5bf79158-dd0e-45b6-a727-3060f866bc5d 2021-01-19 00:05:37.910176 51630 4093 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 5b0dc50a-520f-4cfd-ae41-ab36af6c6ce5 2021-01-19 00:05:42.891429 51631 5361 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1293\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 4093\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1242\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.2E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1242 189.186.62.27 5b0dc50a-520f-4cfd-ae41-ab36af6c6ce5 2021-01-19 00:05:42.912456 51632 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-17 02:06:57.432560000 Z\n- &1 2021-01-17 23:36:20.044374000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-19 00:06:47.418944795 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535878\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\nsign_in_count:\n- 2305\n- 2306\n 4612 \N 189.186.62.27 ec30d05d-ffb4-4f74-b367-ca5b5dd7ebdc 2021-01-19 00:06:47.426741 51633 4 User \N \N 4 User \N update ---\nunique_session_id:\n- cQoCdseAtQxPCMiiYWw_\n- H37DovKpbjyfNZRhuCVi\n 4613 \N 189.186.62.27 ec30d05d-ffb4-4f74-b367-ca5b5dd7ebdc 2021-01-19 00:06:47.446937 51634 496 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 8 \N 189.186.62.27 095f0471-4dc6-4c1c-a2c5-145baef06800 2021-01-19 00:07:12.970744 51635 806 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2021-01-18\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.62.27 46bab155-af84-4706-a909-e074a709e7d3 2021-01-19 00:07:15.918622 51636 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-16 02:14:28.903536000 Z\n- &1 2021-01-19 00:03:48.518560000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-19 00:07:43.585553857 Z\nsign_in_count:\n- 485\n- 486\n 973 \N 189.186.62.27 9374acc5-402a-4963-b2b3-7176ecaf9baf 2021-01-19 00:07:43.591187 51637 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Auyrbq3qgDpWGRDubN5C\n- f1pUsR1LvKQj2BGeHzGX\n 974 \N 189.186.62.27 9374acc5-402a-4963-b2b3-7176ecaf9baf 2021-01-19 00:07:43.606113 51638 806 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-01-18\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.62.27 a8ed27f5-4d4c-43f4-b552-96741686bfe5 2021-01-19 00:07:55.386943 51639 848 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.62.27 a8ed27f5-4d4c-43f4-b552-96741686bfe5 2021-01-19 00:07:55.407275 51640 4094 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1293\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2021-01-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1243\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 d7b2c28e-2efc-4a4a-afc6-ed80ab281ddd 2021-01-19 00:08:13.768477 51641 848 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.62.27 d7b2c28e-2efc-4a4a-afc6-ed80ab281ddd 2021-01-19 00:08:13.794997 51642 4094 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 715bf53b-40c3-4c64-9f5f-8b22281ffaee 2021-01-19 00:08:17.693144 51643 5362 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1293\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 4094\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1243\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1243 189.186.62.27 715bf53b-40c3-4c64-9f5f-8b22281ffaee 2021-01-19 00:08:17.714017 51644 4094 Sale \N \N 18 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV3-V-1243 cancelada. 189.186.62.27 548044d5-719b-411c-b035-0adeadd3de8b 2021-01-19 00:08:21.982185 51645 5362 CashRegistersMove \N \N 18 User \N destroy ---\nopen_cash_register_id: 1293\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 4094\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1243\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.62.27 548044d5-719b-411c-b035-0adeadd3de8b 2021-01-19 00:08:22.006858 51646 848 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 11 \N 189.186.62.27 548044d5-719b-411c-b035-0adeadd3de8b 2021-01-19 00:08:22.032266 51647 4095 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1293\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.499E3\ntotal: !ruby/object:BigDecimal 18:0.5E3\nstatus: 0\ndate_sale: 2021-01-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1244\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 102e7148-39bc-4ca2-a4dd-b2baa532e0fe 2021-01-19 00:08:37.096756 51648 848 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 12 \N 189.186.62.27 102e7148-39bc-4ca2-a4dd-b2baa532e0fe 2021-01-19 00:08:37.126488 51649 4095 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 5fbf4956-b255-4aa2-b53a-6891b19c649c 2021-01-19 00:08:43.305865 51650 5363 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1293\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 4095\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1244\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1244 189.186.62.27 5fbf4956-b255-4aa2-b53a-6891b19c649c 2021-01-19 00:08:43.329941 51651 492 Customer \N \N 2 User \N create ---\nnick_name: ROSY VALLE\nphone: ''\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ROSY VALLE fue registrado. 187.149.121.224 9227c32e-434b-40ed-ae04-ef10356ffa37 2021-01-19 01:14:12.766516 51652 4096 Sale \N \N 2 User \N create ---\ncustomer_id: 492\nuser_id: 2\nopen_cash_register_id: 1292\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2021-01-18\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1932\nexpiration_date: 2021-02-22\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 666ccd44-d5e6-456e-aea3-7df600c2035d 2021-01-19 01:17:01.626079 51653 2646 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 6 \N 187.149.121.224 666ccd44-d5e6-456e-aea3-7df600c2035d 2021-01-19 01:17:01.654187 51654 5364 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1292\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 4096\ncardnumber: 680\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1932\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1932 187.149.121.224 52434c9c-5c6a-4def-90ca-a6b27fa61790 2021-01-19 01:19:00.881093 51655 4096 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.121.224 e306bc7e-e41c-4cc7-9875-71a4efb1610e 2021-01-19 01:19:03.342321 51656 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-18 18:20:17.199388000 Z\n- &1 2021-01-18 19:48:07.559734000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-19 01:37:34.230605136 Z\nsign_in_count:\n- 752\n- 753\n 1509 \N 187.149.121.224 255a835e-043d-42d6-ab23-9feb4be5f211 2021-01-19 01:37:34.237604 51657 2 User \N \N 2 User \N update ---\nunique_session_id:\n- WUp6P6L_MwM4CFsvbcvv\n- GRMbytZA4qnxazCjQDuw\n 1510 \N 187.149.121.224 255a835e-043d-42d6-ab23-9feb4be5f211 2021-01-19 01:37:34.252368 51658 386 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1292\nquantity: !ruby/object:BigDecimal 18:0.2E2\nstatus: 1\nobservations: barrenderos\nexpense_date: 2021-01-18\nexpense_code: PV1-E-265\n 1 Egreso por 20.0 registrado 187.149.121.224 35ee0918-0f13-424e-9939-6516cd52f667 2021-01-19 01:38:33.788794 51659 5365 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1292\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 386\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.121.224 35ee0918-0f13-424e-9939-6516cd52f667 2021-01-19 01:38:33.819369 51660 1319 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1292\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.5E3\namount_out: !ruby/object:BigDecimal 18:0.2E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.615E3\nphysical_cash: !ruby/object:BigDecimal 18:0.615E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 31c23d1e-0623-4244-b95a-9d80d115a536 2021-01-19 01:46:07.222467 51661 1292 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 31c23d1e-0623-4244-b95a-9d80d115a536 2021-01-19 01:46:07.23543 51662 1320 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1293\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.8E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1249E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1249E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.62.27 18a47a7b-0c3a-4f3a-9f74-79f0bceed899 2021-01-19 02:08:24.003387 51663 1293 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.62.27 18a47a7b-0c3a-4f3a-9f74-79f0bceed899 2021-01-19 02:08:24.021172 51664 1294 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1249E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1249.0 189.186.62.27 5fa07557-ef95-4184-bfd4-85a4ecb5dff3 2021-01-19 02:56:27.655676 51665 4097 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1294\namount: !ruby/object:BigDecimal 18:0.1988E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1988E4\nstatus: 0\ndate_sale: 2021-01-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1245\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 69329533-a4c3-4cfc-bf0b-6f37b639ce40 2021-01-19 02:57:56.06748 51666 2368 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 71 \N 189.186.62.27 69329533-a4c3-4cfc-bf0b-6f37b639ce40 2021-01-19 02:57:56.097265 51667 2120 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.62.27 69329533-a4c3-4cfc-bf0b-6f37b639ce40 2021-01-19 02:57:56.131409 51668 4097 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 c62e4dbf-5e4a-460f-a290-fd6ce43a9215 2021-01-19 02:58:24.097011 51669 5366 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1294\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1988E4\nmove_type: '1'\nsale_id: 4097\ncardnumber: 4452\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1245\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1245 189.186.62.27 c62e4dbf-5e4a-460f-a290-fd6ce43a9215 2021-01-19 02:58:24.127216 51670 1321 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1294\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1988E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1249E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1249E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.62.27 6e0e0218-3a90-40d6-b556-0101d68baa31 2021-01-19 03:03:37.999255 51671 1294 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.62.27 6e0e0218-3a90-40d6-b556-0101d68baa31 2021-01-19 03:03:38.020838 51672 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-17 23:36:20.044374000 Z\n- &1 2021-01-19 00:06:47.418944000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-19 03:04:45.419516227 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535878\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\nsign_in_count:\n- 2306\n- 2307\n 4614 \N 189.186.62.27 0963c817-9858-4596-a243-9d0dec99f229 2021-01-19 03:04:45.429504 51673 4 User \N \N 4 User \N update ---\nunique_session_id:\n- H37DovKpbjyfNZRhuCVi\n- su-sA32vbjgNmEcqENGp\n 4615 \N 189.186.62.27 0963c817-9858-4596-a243-9d0dec99f229 2021-01-19 03:04:45.455745 51674 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-19 00:06:47.418944000 Z\n- &1 2021-01-19 03:04:45.419516000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-19 19:12:25.777306355 Z\nsign_in_count:\n- 2307\n- 2308\n 4616 \N 189.186.62.27 f23621e7-031f-44db-8a4c-a8076820a6cc 2021-01-19 19:12:25.808417 51675 4 User \N \N 4 User \N update ---\nunique_session_id:\n- su-sA32vbjgNmEcqENGp\n- zEcXC4WPQMrmaPLbzXjJ\n 4617 \N 189.186.62.27 f23621e7-031f-44db-8a4c-a8076820a6cc 2021-01-19 19:12:25.836574 51676 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-19 00:03:48.518560000 Z\n- &1 2021-01-19 00:07:43.585553000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-19 19:44:50.058381949 Z\nsign_in_count:\n- 486\n- 487\n 975 \N 189.186.62.27 af1f430e-e552-498e-b9d0-990580a7d966 2021-01-19 19:44:50.065271 51677 18 User \N \N 18 User \N update ---\nunique_session_id:\n- f1pUsR1LvKQj2BGeHzGX\n- nWtHnNJqHZ99icULbshy\n 976 \N 189.186.62.27 af1f430e-e552-498e-b9d0-990580a7d966 2021-01-19 19:44:50.08157 51678 1295 OpenCashRegister \N \N 18 User \N create ---\ncash_register_id: 3\nuser_id: 18\ninitial_cash: !ruby/object:BigDecimal 18:0.1249E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1249.0 189.186.62.27 876f15a3-28b8-4e1c-9cee-505bc003ac89 2021-01-19 19:44:59.487299 51679 4098 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1295\namount: !ruby/object:BigDecimal 18:0.39911E4\ntax: !ruby/object:BigDecimal 18:0.2069E3\ndiscount: !ruby/object:BigDecimal 18:0.1299E4\ntotal: !ruby/object:BigDecimal 18:0.2899E4\nstatus: 0\ndate_sale: 2021-01-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1246\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 8a1509e8-9698-4059-8b3c-3cd82d110e9b 2021-01-19 19:46:18.701181 51681 958 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.62.27 8a1509e8-9698-4059-8b3c-3cd82d110e9b 2021-01-19 19:46:18.7676 51682 4098 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 014bc37e-71b2-422b-a676-acea826b69a7 2021-01-19 19:46:47.868832 51683 5367 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1295\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.2899E4\nmove_type: '1'\nsale_id: 4098\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1246\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2899E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1246 189.186.62.27 014bc37e-71b2-422b-a676-acea826b69a7 2021-01-19 19:46:47.907822 51684 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-19 03:04:45.419516000 Z\n- &1 2021-01-19 19:12:25.777306000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-19 20:03:30.418186553 Z\nsign_in_count:\n- 2308\n- 2309\n 4618 \N 189.186.62.27 9bd465f2-f3c7-4e3f-8266-99f05495e658 2021-01-19 20:03:30.424295 51685 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zEcXC4WPQMrmaPLbzXjJ\n- V85hzDJzs4CR6mtat7oz\n 4619 \N 189.186.62.27 9bd465f2-f3c7-4e3f-8266-99f05495e658 2021-01-19 20:03:30.441838 51686 2254 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.62.27 302ebf32-3b03-4e82-8b63-7a4827ed1c2d 2021-01-19 20:03:57.340433 51687 2254 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.62.27 c115f526-3ab8-4633-b399-27fafec2fbdc 2021-01-19 20:04:00.768685 51688 807 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2021-01-19\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.62.27 e0e8bd27-2592-4c43-afed-925cfd022e21 2021-01-19 20:04:02.318074 51689 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-19 00:07:43.585553000 Z\n- &1 2021-01-19 19:44:50.058381000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-19 20:04:24.715809334 Z\nsign_in_count:\n- 487\n- 488\n 977 \N 189.186.62.27 b0ff728c-7a6d-4b59-9aef-8731058d1686 2021-01-19 20:04:24.724118 51690 18 User \N \N 18 User \N update ---\nunique_session_id:\n- nWtHnNJqHZ99icULbshy\n- Ev2vnrXEY-X3sd1uEcDg\n 978 \N 189.186.62.27 b0ff728c-7a6d-4b59-9aef-8731058d1686 2021-01-19 20:04:24.743042 51691 807 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-01-19\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.62.27 6c3c896e-82d0-453c-b2c6-9ec7bd3de9bb 2021-01-19 20:04:53.920664 51692 2278 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.4E1\n 12 \N 189.186.62.27 6c3c896e-82d0-453c-b2c6-9ec7bd3de9bb 2021-01-19 20:04:53.94002 51693 4099 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1295\namount: !ruby/object:BigDecimal 18:0.1538E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.699E3\ntotal: !ruby/object:BigDecimal 18:0.839E3\nstatus: 0\ndate_sale: 2021-01-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1247\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 80e99d77-3f14-465c-b786-e0581d63b1d0 2021-01-19 20:05:55.578384 51694 1535 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.62.27 80e99d77-3f14-465c-b786-e0581d63b1d0 2021-01-19 20:05:55.609226 51695 2278 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 13 \N 189.186.62.27 80e99d77-3f14-465c-b786-e0581d63b1d0 2021-01-19 20:05:55.632904 51696 4099 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 defa12be-cc4a-4e74-b312-bf4cceef260a 2021-01-19 20:06:19.66048 51697 5368 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1295\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 27:0.5E3\nmove_type: '1'\nsale_id: 4099\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1247\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '2255'\n 1 movimiento de efectivo por venta con folio PV3-V-1247 189.186.62.27 defa12be-cc4a-4e74-b312-bf4cceef260a 2021-01-19 20:06:19.684135 51698 5369 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1295\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.339E3\nmove_type: '1'\nsale_id: 4099\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1247\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.161E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '2255'\n 1 movimiento de efectivo por venta con folio PV3-V-1247 189.186.62.27 8d67ad8a-2020-4ad1-9e8e-7a44ef43aa6e 2021-01-19 20:06:54.897685 51699 4100 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1295\namount: !ruby/object:BigDecimal 18:0.1398E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.699E3\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2021-01-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1248\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 8c134e59-2f29-45dd-9b82-2023c1e62fb4 2021-01-19 20:10:30.297799 51700 2278 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.1E1\n 14 \N 189.186.62.27 8c134e59-2f29-45dd-9b82-2023c1e62fb4 2021-01-19 20:10:30.327421 51701 4100 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 4e961fee-1162-4d42-86df-67212a0667a0 2021-01-19 20:10:59.66016 51702 5370 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1295\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 4100\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1248\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.699E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1248 189.186.62.27 4e961fee-1162-4d42-86df-67212a0667a0 2021-01-19 20:10:59.685632 51703 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-18 19:48:07.559734000 Z\n- &1 2021-01-19 01:37:34.230605000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-19 21:21:05.093764263 Z\nsign_in_count:\n- 753\n- 754\n 1511 \N 187.149.121.224 8c7edad3-e6b3-4ffd-88b1-35355b8b4a31 2021-01-19 21:21:05.099726 51704 2 User \N \N 2 User \N update ---\nunique_session_id:\n- GRMbytZA4qnxazCjQDuw\n- CZPg8oF1BacKQ-p4yPVt\n 1512 \N 187.149.121.224 8c7edad3-e6b3-4ffd-88b1-35355b8b4a31 2021-01-19 21:21:05.113978 51705 1296 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.615E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 615.0 187.149.121.224 58978454-261a-41d2-b044-d3a9643b9be0 2021-01-19 21:21:18.05111 51706 4101 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1296\namount: !ruby/object:BigDecimal 18:0.151731E4\ntax: !ruby/object:BigDecimal 18:0.2069E2\ndiscount: !ruby/object:BigDecimal 18:0.944E3\ntotal: !ruby/object:BigDecimal 18:0.594E3\nstatus: 0\ndate_sale: 2021-01-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1933\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 b9a2ea14-7266-472f-bacc-0fc09ed4553d 2021-01-19 21:40:50.833786 51707 2552 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.121.224 b9a2ea14-7266-472f-bacc-0fc09ed4553d 2021-01-19 21:40:50.866295 51708 206 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.121.224 b9a2ea14-7266-472f-bacc-0fc09ed4553d 2021-01-19 21:40:50.894508 51709 4101 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 9e409a97-6e19-4cc4-ae18-5bccfbe6d9da 2021-01-19 21:40:58.276971 51710 5371 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1296\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.594E3\nmove_type: '1'\nsale_id: 4101\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1933\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.594E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1933 187.149.121.224 9e409a97-6e19-4cc4-ae18-5bccfbe6d9da 2021-01-19 21:40:58.299217 51711 4102 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1296\namount: !ruby/object:BigDecimal 18:0.137972E4\ntax: !ruby/object:BigDecimal 18:0.4828E2\ndiscount: !ruby/object:BigDecimal 18:0.616E3\ntotal: !ruby/object:BigDecimal 18:0.812E3\nstatus: 0\ndate_sale: 2021-01-19\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1934\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.121.224 892ae360-0337-4ded-b6ff-28baa6e0334a 2021-01-19 22:55:25.651718 51712 1384 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 187.149.121.224 892ae360-0337-4ded-b6ff-28baa6e0334a 2021-01-19 22:55:25.708473 51713 1862 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.121.224 892ae360-0337-4ded-b6ff-28baa6e0334a 2021-01-19 22:55:25.746979 51714 4102 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.121.224 bfe117d8-ae65-41f8-8fd5-5dbe95cd0682 2021-01-19 22:55:34.554572 51715 5372 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1296\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.812E3\nmove_type: '1'\nsale_id: 4102\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1934\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.812E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1934 187.149.121.224 bfe117d8-ae65-41f8-8fd5-5dbe95cd0682 2021-01-19 22:55:34.583298 51716 2686 AvailableProduct \N \N 18 User \N update ---\nprice_sale:\n- \n- !ruby/object:BigDecimal 18:0.1199E4\n 4 \N 189.186.62.27 354f8021-81ae-4f47-82a8-be183dc74bed 2021-01-19 23:02:03.589 51717 4103 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1295\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2021-01-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1249\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 2a78acaa-f1d0-4553-905a-bcc04de2a3b6 2021-01-19 23:02:36.076454 51718 2686 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 189.186.62.27 2a78acaa-f1d0-4553-905a-bcc04de2a3b6 2021-01-19 23:02:36.101764 51719 4103 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 8422ab85-ae97-4e11-8459-670653e6c2f3 2021-01-19 23:03:08.776752 51720 5373 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1295\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 4103\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1249\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1249 189.186.62.27 8422ab85-ae97-4e11-8459-670653e6c2f3 2021-01-19 23:03:08.798283 51721 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-19 19:12:25.777306000 Z\n- &1 2021-01-19 20:03:30.418186000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-19 23:16:29.145855395 Z\nsign_in_count:\n- 2309\n- 2310\n 4620 \N 189.186.62.27 9e4750b8-24d0-48e3-899b-424ce775d1d1 2021-01-19 23:16:29.152533 51722 4 User \N \N 4 User \N update ---\nunique_session_id:\n- V85hzDJzs4CR6mtat7oz\n- Hy5zZ8JxoARzyjv3Lruk\n 4621 \N 189.186.62.27 9e4750b8-24d0-48e3-899b-424ce775d1d1 2021-01-19 23:16:29.249627 51723 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-01-14 19:28:18.899908000 Z\n- &1 2021-01-19 00:02:03.730619000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-19 23:22:26.897937746 Z\nsign_in_count:\n- 450\n- 451\n 902 \N 187.149.121.224 68c4e1b7-4f74-472f-aece-7dab57f2b7fe 2021-01-19 23:22:26.903681 51724 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 35jy1zBLH1r6mQnFsjwp\n- "-iFcEKUoBbR_HZFsCiAD"\n 903 \N 187.149.121.224 68c4e1b7-4f74-472f-aece-7dab57f2b7fe 2021-01-19 23:22:26.920277 51725 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-19 19:44:50.058381000 Z\n- &1 2021-01-19 20:04:24.715809000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-20 00:14:16.947149306 Z\nsign_in_count:\n- 488\n- 489\n 979 \N 189.186.62.27 417857e2-edf9-4a1c-a5c7-63f8f72d8654 2021-01-20 00:14:16.953486 51726 18 User \N \N 18 User \N update ---\nunique_session_id:\n- Ev2vnrXEY-X3sd1uEcDg\n- vgNHKv_-zVPPTmLvVkc6\n 980 \N 189.186.62.27 417857e2-edf9-4a1c-a5c7-63f8f72d8654 2021-01-20 00:14:16.967681 51727 4104 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1295\namount: !ruby/object:BigDecimal 18:0.84383E3\ntax: !ruby/object:BigDecimal 18:0.5517E2\ndiscount: !ruby/object:BigDecimal 18:0.499E3\ntotal: !ruby/object:BigDecimal 18:0.4E3\nstatus: 0\ndate_sale: 2021-01-19\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1250\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.62.27 72c5e382-d735-4a97-8e4d-26b96082cedc 2021-01-20 00:14:42.246932 51728 855 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.17E2\n- !ruby/object:BigDecimal 18:0.16E2\n 9 \N 189.186.62.27 72c5e382-d735-4a97-8e4d-26b96082cedc 2021-01-20 00:14:42.279924 51729 4104 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.62.27 f460db54-bc0c-48f3-ae48-d1f8c641580a 2021-01-20 00:14:55.929763 51841 807 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.31E2\n- !ruby/object:BigDecimal 18:0.3E2\n 27 \N 187.149.57.44 9a535b15-2667-4792-8074-dea61b0c1567 2021-01-22 23:04:42.769679 51842 4114 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.44 f870a5f3-b5d4-4fa2-8f77-b39bf4ed974f 2021-01-22 23:05:15.706404 51730 5374 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1295\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.4E3\nmove_type: '1'\nsale_id: 4104\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1250\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1250 189.186.62.27 f460db54-bc0c-48f3-ae48-d1f8c641580a 2021-01-20 00:14:55.97271 51731 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-19 20:03:30.418186000 Z\n- &1 2021-01-19 23:16:29.145855000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-20 00:40:15.647814133 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\nsign_in_count:\n- 2310\n- 2311\n 4622 \N 189.186.132.86 1b6a4361-bd05-4326-ab47-d795183a0197 2021-01-20 00:40:15.66612 51732 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Hy5zZ8JxoARzyjv3Lruk\n- 16_1J4Djy2utvDtQcj3q\n 4623 \N 189.186.132.86 1b6a4361-bd05-4326-ab47-d795183a0197 2021-01-20 00:40:15.692428 51733 1322 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1296\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1406E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1601E4\ncash_fund: !ruby/object:BigDecimal 18:0.42E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2021E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.121.224 ec7c2765-88eb-4f19-81a8-f42dd2aa599d 2021-01-20 01:35:31.266912 51734 1296 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.121.224 ec7c2765-88eb-4f19-81a8-f42dd2aa599d 2021-01-20 01:35:31.288526 51735 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-19 20:04:24.715809000 Z\n- &1 2021-01-20 00:14:16.947149000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-20 02:20:12.030751903 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\nsign_in_count:\n- 489\n- 490\n 981 \N 189.186.132.86 40d40e3b-303a-4104-9feb-5879238c5757 2021-01-20 02:20:12.053406 51736 18 User \N \N 18 User \N update ---\nunique_session_id:\n- vgNHKv_-zVPPTmLvVkc6\n- 43_9pNY3HabXr1qmwHG6\n 982 \N 189.186.132.86 40d40e3b-303a-4104-9feb-5879238c5757 2021-01-20 02:20:12.076237 51737 1323 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1295\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.6036E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.5606E4\ncash_fund: !ruby/object:BigDecimal 18:0.1179E4\nphysical_cash: !ruby/object:BigDecimal 18:0.6785E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 4969f07b-4534-443f-ab0b-1b66b32fffd0 2021-01-20 02:23:34.864862 51738 1295 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 4969f07b-4534-443f-ab0b-1b66b32fffd0 2021-01-20 02:23:34.879374 51739 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-19 23:16:29.145855000 Z\n- &1 2021-01-20 00:40:15.647814000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-20 20:15:26.792523641 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140331\n mask_addr: 4294967295\nsign_in_count:\n- 2311\n- 2312\n 4624 \N 187.149.140.235 488c7937-19f3-4f8e-aab5-3f3d99101c1c 2021-01-20 20:15:26.826873 51740 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 16_1J4Djy2utvDtQcj3q\n- 3roexG47orynX15izYTY\n 4625 \N 187.149.140.235 488c7937-19f3-4f8e-aab5-3f3d99101c1c 2021-01-20 20:15:26.874764 51741 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-20 00:14:16.947149000 Z\n- &1 2021-01-20 02:20:12.030751000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-20 21:12:28.413058761 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140331\n mask_addr: 4294967295\nsign_in_count:\n- 490\n- 491\n 983 \N 187.149.140.235 e0c39c69-c3a8-4586-bbd8-a3ce9e19b4ea 2021-01-20 21:12:28.425053 51742 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 43_9pNY3HabXr1qmwHG6\n- fQ3xMPLuSLSSVYmgEc52\n 984 \N 187.149.140.235 e0c39c69-c3a8-4586-bbd8-a3ce9e19b4ea 2021-01-20 21:12:28.452538 51743 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-19 01:37:34.230605000 Z\n- &1 2021-01-19 21:21:05.093764000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-20 21:51:18.070519543 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140331\n mask_addr: 4294967295\nsign_in_count:\n- 754\n- 755\n 1513 \N 187.149.140.235 363ffc18-e922-4807-9bb3-6936d3f2e5d2 2021-01-20 21:51:18.076912 51744 2 User \N \N 2 User \N update ---\nunique_session_id:\n- CZPg8oF1BacKQ-p4yPVt\n- HmGGsBb7jL4YZ9fzWNJA\n 1514 \N 187.149.140.235 363ffc18-e922-4807-9bb3-6936d3f2e5d2 2021-01-20 21:51:18.095044 51745 1297 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.42E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 420.0 187.149.140.235 69a976b1-09b5-4ece-b4ad-c318144e19e7 2021-01-20 22:36:20.880065 51746 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-16 18:15:11.486227000 Z\n- &1 2021-01-17 22:54:28.188234000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-20 23:02:51.659061201 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\nsign_in_count:\n- 392\n- 393\n 787 \N 189.186.132.86 7e74d6e4-5866-442d-8ad7-0fcfec95f2d6 2021-01-20 23:02:51.687704 51747 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Qrx8k6deYJgouHWr7s5c\n- yzxQ9YaD6H5uwx-A5gPe\n 788 \N 189.186.132.86 7e74d6e4-5866-442d-8ad7-0fcfec95f2d6 2021-01-20 23:02:51.709914 51748 1298 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1179E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1179.0 189.186.132.86 cdc947e2-cba0-4770-a4d8-399c548027f6 2021-01-20 23:03:05.744564 51749 4105 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1298\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1199E4\nstatus: 0\ndate_sale: 2021-01-20\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1251\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 e53073c7-32b8-427e-a8e6-415911e46c32 2021-01-20 23:03:34.028018 51750 2562 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.132.86 e53073c7-32b8-427e-a8e6-415911e46c32 2021-01-20 23:03:34.064061 51751 4105 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 ed2758e2-573c-408f-aec1-e6210dbc544a 2021-01-20 23:03:44.515757 51752 5375 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1298\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1199E4\nmove_type: '1'\nsale_id: 4105\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1251\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.301E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1251 189.186.132.86 ed2758e2-573c-408f-aec1-e6210dbc544a 2021-01-20 23:03:44.538983 51753 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-20 00:40:15.647814000 Z\n- &1 2021-01-20 20:15:26.792523000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-21 01:41:01.018457716 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140331\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140331\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\nsign_in_count:\n- 2312\n- 2313\n 4626 \N 189.186.132.86 b491528a-cdda-4feb-bc6b-26789be55224 2021-01-21 01:41:01.038212 51754 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 3roexG47orynX15izYTY\n- rRYbUn4RBYt1PtgNW-7b\n 4627 \N 189.186.132.86 b491528a-cdda-4feb-bc6b-26789be55224 2021-01-21 01:41:01.062556 51755 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-01-19 00:02:03.730619000 Z\n- &1 2021-01-19 23:22:26.897937000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-21 02:03:25.505656658 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140331\n mask_addr: 4294967295\nsign_in_count:\n- 451\n- 452\n 904 \N 187.149.140.235 5ed67e5a-d963-4dfe-b75f-74e62cc170ed 2021-01-21 02:03:25.514257 51756 1 User \N \N 1 User \N update ---\nunique_session_id:\n- "-iFcEKUoBbR_HZFsCiAD"\n- SV6KFfTtySjc83_QqjN3\n 905 \N 187.149.140.235 5ed67e5a-d963-4dfe-b75f-74e62cc170ed 2021-01-21 02:03:25.537395 51757 808 Transfer \N \N 1 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2021-01-20\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.140.235 23b4d041-2d5d-4d4e-ab5d-aebeb23845b0 2021-01-21 02:04:15.408547 51758 808 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-01-20\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.140.235 254218c6-4ebc-45a1-bc0b-a403959294ad 2021-01-21 02:04:35.697287 51759 1435 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 4 \N 187.149.140.235 254218c6-4ebc-45a1-bc0b-a403959294ad 2021-01-21 02:04:35.725628 51760 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-20 02:20:12.030751000 Z\n- &1 2021-01-20 21:12:28.413058000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-21 02:06:55.129136665 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140331\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140331\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\nsign_in_count:\n- 491\n- 492\n 985 \N 189.186.132.86 e170d46a-9a22-4a66-9fd8-1bde0b8b9095 2021-01-21 02:06:55.137408 51761 18 User \N \N 18 User \N update ---\nunique_session_id:\n- fQ3xMPLuSLSSVYmgEc52\n- 6UXXzGefSSidsDHjkbut\n 986 \N 189.186.132.86 e170d46a-9a22-4a66-9fd8-1bde0b8b9095 2021-01-21 02:06:55.156742 51762 4106 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1297\namount: !ruby/object:BigDecimal 18:0.66831E3\ntax: !ruby/object:BigDecimal 18:0.2069E2\ndiscount: !ruby/object:BigDecimal 18:0.539E3\ntotal: !ruby/object:BigDecimal 18:0.15E3\nstatus: 0\ndate_sale: 2021-01-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1935\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.140.235 4921f502-2851-4ba1-8cec-27583b8c84d7 2021-01-21 02:09:37.149505 51763 188 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.140.235 4921f502-2851-4ba1-8cec-27583b8c84d7 2021-01-21 02:09:37.181189 51764 4106 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.140.235 79737607-6585-4574-a17b-ff20f69d443e 2021-01-21 02:09:48.278545 51765 5376 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1297\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.15E3\nmove_type: '1'\nsale_id: 4106\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1935\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1935 187.149.140.235 79737607-6585-4574-a17b-ff20f69d443e 2021-01-21 02:09:48.303579 51766 1324 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1298\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1199E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.878E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2378E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 1c13e006-a1d4-4cdc-ae98-7694b84e6246 2021-01-21 02:10:05.718726 51767 1298 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 1c13e006-a1d4-4cdc-ae98-7694b84e6246 2021-01-21 02:10:05.73942 51768 4107 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1297\namount: !ruby/object:BigDecimal 18:0.2898E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1399E4\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2021-01-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1935\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.140.235 cb185036-cd6c-4156-b712-01cabfcee18a 2021-01-21 02:18:57.051408 51769 4107 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.140.235 ba2dab65-622a-4dfb-af87-ffca9a2420c5 2021-01-21 02:19:03.968393 51770 5377 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1297\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 4107\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1935\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1935 187.149.140.235 ba2dab65-622a-4dfb-af87-ffca9a2420c5 2021-01-21 02:19:03.994708 51771 4107 Sale \N \N 2 User \N update ---\nstatus:\n- paid\n- 1\n 3 Venta PV1-V-1935 cancelada. 187.149.140.235 4d8d647b-0349-484e-b988-c79e007a8672 2021-01-21 02:20:19.198365 51815 519 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 1\npurchase_code: PV1-C-222\namount: !ruby/object:BigDecimal 18:0.6495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.6495E3\nobservations: ''\npurchase_date: 2021-01-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV1-C-222 por $ 649.5 MXN creada. 189.186.132.86 f3a7802d-8aa7-4b69-8318-9058174e6fd3 2021-01-22 00:30:37.885735 51772 5377 CashRegistersMove \N \N 2 User \N destroy ---\nopen_cash_register_id: 1297\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1499E4\nmove_type: '1'\nsale_id: 4107\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1935\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 187.149.140.235 4d8d647b-0349-484e-b988-c79e007a8672 2021-01-21 02:20:19.226636 51773 4108 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1297\namount: !ruby/object:BigDecimal 18:0.2898E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1399E4\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2021-01-20\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1937\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.140.235 aeae92a3-eba8-4e34-b181-ba5a0e62cefc 2021-01-21 02:20:55.179546 51774 1435 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 5 \N 187.149.140.235 aeae92a3-eba8-4e34-b181-ba5a0e62cefc 2021-01-21 02:20:55.206567 51775 1470 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.140.235 aeae92a3-eba8-4e34-b181-ba5a0e62cefc 2021-01-21 02:20:55.232301 51776 4108 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.140.235 3a72f979-0559-4a64-8f47-3236fabea5c8 2021-01-21 02:21:00.125706 51777 5378 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1297\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 4108\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1937\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1937 187.149.140.235 3a72f979-0559-4a64-8f47-3236fabea5c8 2021-01-21 02:21:00.150138 51778 1325 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1297\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1649E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.569E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2069E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.140.235 1aee6506-adc9-4928-8e9f-2a2877bbc119 2021-01-21 02:25:40.883767 51779 1297 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.140.235 1aee6506-adc9-4928-8e9f-2a2877bbc119 2021-01-21 02:25:40.897211 51780 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-17 22:54:28.188234000 Z\n- &1 2021-01-20 23:02:51.659061000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-21 18:22:53.345385389 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099419\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\nsign_in_count:\n- 393\n- 394\n 789 \N 189.186.132.86 01f9b0c9-1c8b-4912-b7a3-32685e30b4ff 2021-01-21 18:22:53.374284 51781 21 User \N \N 21 User \N update ---\nunique_session_id:\n- yzxQ9YaD6H5uwx-A5gPe\n- C3yWv836hsquZvFxiWxE\n 790 \N 189.186.132.86 01f9b0c9-1c8b-4912-b7a3-32685e30b4ff 2021-01-21 18:22:53.396686 51782 1299 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.878E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 878.0 189.186.132.86 cb595cf5-99cd-44a3-add5-7775d72f18c0 2021-01-21 18:23:11.108129 51783 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-19 21:21:05.093764000 Z\n- &1 2021-01-20 21:51:18.070519000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-21 18:25:23.480179886 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140331\n mask_addr: 4294967295\nsign_in_count:\n- 755\n- 756\n 1515 \N 187.149.140.235 82be400c-d902-4286-ae29-28ac6c7cc223 2021-01-21 18:25:23.486965 51784 2 User \N \N 2 User \N update ---\nunique_session_id:\n- HmGGsBb7jL4YZ9fzWNJA\n- vBwh6uJxpqXs729F4JP6\n 1516 \N 187.149.140.235 82be400c-d902-4286-ae29-28ac6c7cc223 2021-01-21 18:25:23.50411 51785 587 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.140.235 8177664c-9585-4850-8206-d55e5711f283 2021-01-21 18:25:57.186542 51786 809 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2021-01-21\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.140.235 fc5d3f59-854e-4d32-891b-c7b2ba77e9cf 2021-01-21 18:25:59.050732 51787 809 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-01-21\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.132.86 3bde7f89-48bc-4697-ba7a-b94ea9d91ddd 2021-01-21 18:26:20.454097 51788 890 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.132.86 3bde7f89-48bc-4697-ba7a-b94ea9d91ddd 2021-01-21 18:26:20.472518 51789 4109 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1299\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.7196E3\ntotal: !ruby/object:BigDecimal 18:0.10794E4\nstatus: 0\ndate_sale: 2021-01-21\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1252\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 beb59449-8885-4015-91e5-4b120c66c48f 2021-01-21 18:26:52.892158 51790 890 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.132.86 beb59449-8885-4015-91e5-4b120c66c48f 2021-01-21 18:26:52.921769 51791 4109 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 fdb1f6d7-2ff8-4314-8d2b-4bace6e74d63 2021-01-21 18:27:08.18807 51792 5379 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1299\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.10794E4\nmove_type: '1'\nsale_id: 4109\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1252\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.11E4\nchange: !ruby/object:BigDecimal 18:0.206E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1252 189.186.132.86 fdb1f6d7-2ff8-4314-8d2b-4bace6e74d63 2021-01-21 18:27:08.215139 51793 1300 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.569E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 569.0 187.149.140.235 c7aed4ee-a001-4277-bbb2-81c553ebd6d2 2021-01-21 18:31:25.339191 51816 2692 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1569\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.132.86 f3a7802d-8aa7-4b69-8318-9058174e6fd3 2021-01-22 00:30:37.919265 51794 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-20 20:15:26.792523000 Z\n- &1 2021-01-21 01:41:01.018457000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-21 19:03:12.416498787 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140331\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535318\n mask_addr: 4294967295\nsign_in_count:\n- 2313\n- 2314\n 4628 \N 177.228.101.22 76c75267-d73b-4190-be8f-81d090818b2d 2021-01-21 19:03:12.429429 51795 4 User \N \N 4 User \N update ---\nunique_session_id:\n- rRYbUn4RBYt1PtgNW-7b\n- 6E_k3D6fWYz9FXDsy-yw\n 4629 \N 177.228.101.22 76c75267-d73b-4190-be8f-81d090818b2d 2021-01-21 19:03:12.476064 51796 4110 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1300\namount: !ruby/object:BigDecimal 18:0.1458E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.699E3\ntotal: !ruby/object:BigDecimal 18:0.759E3\nstatus: 0\ndate_sale: 2021-01-21\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1938\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.140.235 d4a6fdc0-de9a-4ba2-bf71-8c8adfbe57a4 2021-01-21 21:03:17.209006 51797 1441 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 187.149.140.235 d4a6fdc0-de9a-4ba2-bf71-8c8adfbe57a4 2021-01-21 21:03:17.259285 51798 810 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 20 \N 187.149.140.235 d4a6fdc0-de9a-4ba2-bf71-8c8adfbe57a4 2021-01-21 21:03:17.299108 51799 4110 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.140.235 fdc05f9b-f915-463c-aea4-7b0aca0def01 2021-01-21 21:03:25.188925 51800 5380 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1300\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.759E3\nmove_type: '1'\nsale_id: 4110\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1938\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.759E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1938 187.149.140.235 fdc05f9b-f915-463c-aea4-7b0aca0def01 2021-01-21 21:03:25.214318 51801 493 Customer \N \N 21 User \N create ---\nnick_name: 'NADIA '\nphone: "(667) 341-4428"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente NADIA fue registrado. 189.186.132.86 3b16b77b-14f9-4ad3-a42e-9f2f460d3e38 2021-01-21 21:33:00.343345 51802 4111 Sale \N \N 21 User \N create ---\ncustomer_id: 493\nuser_id: 21\nopen_cash_register_id: 1299\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2021-01-21\nsaletype: 2\nseller_id: 31\nsale_code: PV3-V-1253\nexpiration_date: 2021-02-25\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 7d1d92e6-65df-49a1-ae64-193cea3de11b 2021-01-21 21:33:35.82868 51803 2689 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.132.86 7d1d92e6-65df-49a1-ae64-193cea3de11b 2021-01-21 21:33:35.871737 51804 5381 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1299\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 4111\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-1253\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1253 189.186.132.86 a8183232-446f-400c-9cbb-5a3f62d20f1e 2021-01-21 21:33:52.820721 51805 4111 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.132.86 de76ff7c-2727-4dfc-ac78-c6b7c9a8927e 2021-01-21 21:33:57.772157 51806 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-21 01:41:01.018457000 Z\n- &1 2021-01-21 19:03:12.416498000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-22 00:21:03.667263048 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535318\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535318\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\nsign_in_count:\n- 2314\n- 2315\n 4630 \N 189.186.132.86 7f8157f2-1fc3-443e-9030-acc43960bade 2021-01-22 00:21:03.67688 51807 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 6E_k3D6fWYz9FXDsy-yw\n- 2aidaxC5ELCbc2a6Lbwh\n 4631 \N 189.186.132.86 7f8157f2-1fc3-443e-9030-acc43960bade 2021-01-22 00:21:03.700104 51808 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-21 19:03:12.416498000 Z\n- &1 2021-01-22 00:21:03.667263000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-22 00:28:45.988949451 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535318\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\nsign_in_count:\n- 2315\n- 2316\n 4632 \N 189.186.132.86 b28315b0-b54d-400a-bd43-35a3ab4d7c58 2021-01-22 00:28:45.995578 51809 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 2aidaxC5ELCbc2a6Lbwh\n- APsNdxQrc-zHT2xxmky1\n 4633 \N 189.186.132.86 b28315b0-b54d-400a-bd43-35a3ab4d7c58 2021-01-22 00:28:46.013791 51810 1569 Product \N \N 4 User \N create ---\nsku: BOL-1569\nname: 3BLCV20446NEG\ndescription: 'CROSSBODY MEDIO CIRCULO '\nprice_base: !ruby/object:BigDecimal 18:0.6495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1299E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1569 fue creado. 189.186.132.86 f03487af-ee69-4336-95e1-fab6de694a8e 2021-01-22 00:30:10.318534 51811 1569 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001569'\n 2 \N 189.186.132.86 f03487af-ee69-4336-95e1-fab6de694a8e 2021-01-22 00:30:10.354672 51812 2691 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1569\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.132.86 f03487af-ee69-4336-95e1-fab6de694a8e 2021-01-22 00:30:10.385366 51813 518 Purchase \N \N 4 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-157\namount: !ruby/object:BigDecimal 18:0.1299E4\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nobservations: ''\npurchase_date: 2021-01-21\nuser_id: '4'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-157 por $ 1299.0 MXN creada. 189.186.132.86 204011c0-fea8-4c31-9edc-be8f0713b9dc 2021-01-22 00:30:18.042014 51814 2691 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 189.186.132.86 204011c0-fea8-4c31-9edc-be8f0713b9dc 2021-01-22 00:30:18.063214 51818 1326 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1300\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.759E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.6E3\ncash_fund: !ruby/object:BigDecimal 18:0.728E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1328E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.140.235 d2e18bc4-c642-4c5d-9646-02c675b23ce3 2021-01-22 02:03:04.156917 51819 1300 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.140.235 d2e18bc4-c642-4c5d-9646-02c675b23ce3 2021-01-22 02:03:04.175239 51820 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-22 00:21:03.667263000 Z\n- &1 2021-01-22 00:28:45.988949000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-22 02:34:28.178900992 Z\nsign_in_count:\n- 2316\n- 2317\n 4634 \N 189.186.132.86 dbb400c7-69db-49cc-953b-83251f58a33f 2021-01-22 02:34:28.196512 51821 4 User \N \N 4 User \N update ---\nunique_session_id:\n- APsNdxQrc-zHT2xxmky1\n- UWkVxwaaMFQVNsvcxNF_\n 4635 \N 189.186.132.86 dbb400c7-69db-49cc-953b-83251f58a33f 2021-01-22 02:34:28.218921 51822 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-20 21:12:28.413058000 Z\n- &1 2021-01-21 02:06:55.129136000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-22 02:34:50.881231635 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140331\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\nsign_in_count:\n- 492\n- 493\n 987 \N 189.186.132.86 15396404-15f8-4264-81b0-87455b0bb247 2021-01-22 02:34:50.887694 51823 18 User \N \N 18 User \N update ---\nunique_session_id:\n- 6UXXzGefSSidsDHjkbut\n- jsKcxveDwmjrxM2v8bqt\n 988 \N 189.186.132.86 15396404-15f8-4264-81b0-87455b0bb247 2021-01-22 02:34:50.902883 51824 1327 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1299\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.16794E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.10574E4\nphysical_cash: !ruby/object:BigDecimal 18:0.25574E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 7eaed1d9-8fac-437c-aa92-f957f1cf4a41 2021-01-22 02:37:49.362148 51825 1299 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 7eaed1d9-8fac-437c-aa92-f957f1cf4a41 2021-01-22 02:37:49.37736 51826 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-20 21:51:18.070519000 Z\n- &1 2021-01-21 18:25:23.480179000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-22 18:11:49.390182259 Z\nsign_in_count:\n- 756\n- 757\n 1517 \N 187.149.140.235 c0622e33-7395-400a-84a2-82091cd89cf3 2021-01-22 18:11:49.418609 51827 2 User \N \N 2 User \N update ---\nunique_session_id:\n- vBwh6uJxpqXs729F4JP6\n- uzU41jDknQwKWvZ_7y9x\n 1518 \N 187.149.140.235 c0622e33-7395-400a-84a2-82091cd89cf3 2021-01-22 18:11:49.442336 51828 1301 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.728E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 728.0 187.149.140.235 9c520ada-c3c1-48fc-8324-fb4a4479e62d 2021-01-22 18:14:43.24272 51829 4112 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1301\namount: !ruby/object:BigDecimal 18:0.241883E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.1299E4\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2021-01-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1939\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.140.235 879b504a-28d2-445f-a50a-9be33cb32358 2021-01-22 18:20:44.879125 51830 169 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 187.149.140.235 879b504a-28d2-445f-a50a-9be33cb32358 2021-01-22 18:20:44.908478 51831 4112 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.140.235 41cf1f77-2d59-4b73-8c83-9b3f74e6840b 2021-01-22 18:20:49.292637 51832 5382 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1301\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 4112\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1939\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1939 187.149.140.235 41cf1f77-2d59-4b73-8c83-9b3f74e6840b 2021-01-22 18:20:49.322705 51833 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-20 23:02:51.659061000 Z\n- &1 2021-01-21 18:22:53.345385000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-22 18:23:37.623401575 Z\nsign_in_count:\n- 394\n- 395\n 791 \N 189.186.132.86 509d695e-f46a-4dbb-88d6-9a34fd8353d8 2021-01-22 18:23:37.630059 51834 21 User \N \N 21 User \N update ---\nunique_session_id:\n- C3yWv836hsquZvFxiWxE\n- 41JfsM-CJKeKFyvTngcL\n 792 \N 189.186.132.86 509d695e-f46a-4dbb-88d6-9a34fd8353d8 2021-01-22 18:23:37.644998 51835 1302 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.10574E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1057.4 189.186.132.86 5951e0b9-a26f-4859-a34a-7456da9e3a49 2021-01-22 18:23:55.689632 51836 4113 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1301\namount: !ruby/object:BigDecimal 18:0.47831E3\ntax: !ruby/object:BigDecimal 18:0.2069E2\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.15E3\nstatus: 0\ndate_sale: 2021-01-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1940\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.140.235 861a5f53-2faa-4a7c-b769-08ac22878215 2021-01-22 20:09:52.995284 51837 5 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 7 \N 187.149.140.235 861a5f53-2faa-4a7c-b769-08ac22878215 2021-01-22 20:09:53.02256 51838 4113 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.140.235 69ae0bba-dfab-4563-9d8f-2d3506db25f8 2021-01-22 20:09:57.409227 51839 5383 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1301\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.15E3\nmove_type: '1'\nsale_id: 4113\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1940\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1940 187.149.140.235 69ae0bba-dfab-4563-9d8f-2d3506db25f8 2021-01-22 20:09:57.434015 51840 4114 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1301\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2021-01-22\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1941\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.44 9a535b15-2667-4792-8074-dea61b0c1567 2021-01-22 23:04:42.696482 51843 5384 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1301\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49E2\nmove_type: '1'\nsale_id: 4114\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1941\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1941 187.149.57.44 f870a5f3-b5d4-4fa2-8f77-b39bf4ed974f 2021-01-22 23:05:15.728815 51844 4115 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1302\namount: !ruby/object:BigDecimal 18:0.399E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.1596E3\ntotal: !ruby/object:BigDecimal 18:0.2394E3\nstatus: 0\ndate_sale: 2021-01-22\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1254\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 3b2d2d4c-98a3-4881-8723-7317993ffef1 2021-01-22 23:38:26.647052 51845 2585 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 3 \N 189.186.132.86 3b2d2d4c-98a3-4881-8723-7317993ffef1 2021-01-22 23:38:26.684141 51846 4115 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 6b392f64-6779-465d-8f66-e75ff6c6f2b4 2021-01-22 23:38:32.894114 51847 5385 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1302\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2394E3\nmove_type: '1'\nsale_id: 4115\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1254\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.2606E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1254 189.186.132.86 6b392f64-6779-465d-8f66-e75ff6c6f2b4 2021-01-22 23:38:32.927074 51848 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-22 00:28:45.988949000 Z\n- &1 2021-01-22 02:34:28.178900000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-22 23:42:34.850031578 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946446\n mask_addr: 4294967295\nsign_in_count:\n- 2317\n- 2318\n 4636 \N 200.68.182.206 6c885889-90ea-402d-ae45-a26c31e389e2 2021-01-22 23:42:34.858029 51849 4 User \N \N 4 User \N update ---\nunique_session_id:\n- UWkVxwaaMFQVNsvcxNF_\n- xYRyScFfMQ9zApNCJMTT\n 4637 \N 200.68.182.206 6c885889-90ea-402d-ae45-a26c31e389e2 2021-01-22 23:42:34.877288 51850 1570 Product \N \N 21 User \N create ---\nsku: BOL-1570\nname: 2BLCO20740\ndescription: MOCHILA CLOE\nprice_base: !ruby/object:BigDecimal 18:0.8495E3\nprice_sale: !ruby/object:BigDecimal 18:0.1699E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 6\nproduct_service_key: '01010101'\n 1 El producto BOL-1570 fue creado. 189.186.132.86 b5a81c99-c6e8-4f86-a13f-8932def17a9c 2021-01-23 00:54:20.19124 51851 1570 Product \N \N 21 User \N update ---\nbarcode:\n- ''\n- '0001570'\n 2 \N 189.186.132.86 b5a81c99-c6e8-4f86-a13f-8932def17a9c 2021-01-23 00:54:20.223702 51852 2693 AvailableProduct \N \N 21 User \N create ---\nproduct_id: 1570\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.132.86 b5a81c99-c6e8-4f86-a13f-8932def17a9c 2021-01-23 00:54:20.254335 51853 520 Purchase \N \N 21 User \N create ---\nsupplier_id: 1\npointsale_id: 3\npurchase_code: PV3-C-158\namount: !ruby/object:BigDecimal 18:0.8495E3\ntax: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.8495E3\nobservations: ''\npurchase_date: 2021-01-22\nuser_id: '21'\nstatus: 0\nwarehouse_id: \nis_in_dollars: false\nexchange: \n 1 Compra PV3-C-158 por $ 849.5 MXN creada. 189.186.132.86 47306404-cc96-492a-8bc1-4038af3a0110 2021-01-23 00:54:24.124814 51854 2693 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.132.86 47306404-cc96-492a-8bc1-4038af3a0110 2021-01-23 00:54:24.146848 51855 4116 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1302\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2021-01-22\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1255\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 b3a42099-34ae-40d4-99e3-9fc2d115bec4 2021-01-23 00:55:00.946711 51856 2693 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.132.86 b3a42099-34ae-40d4-99e3-9fc2d115bec4 2021-01-23 00:55:00.970938 51857 4116 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 fa792f28-77ca-4127-af16-eb52a4c01870 2021-01-23 00:55:10.184257 51858 5386 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1302\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1699E4\nmove_type: '1'\nsale_id: 4116\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1255\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1699E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1255 189.186.132.86 fa792f28-77ca-4127-af16-eb52a4c01870 2021-01-23 00:55:10.209685 51859 5387 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1302\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 4040\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1209 189.186.132.86 e2f5dd2c-2ff1-4142-bbd1-65616f23a26a 2021-01-23 00:57:37.759401 51860 4040 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.132.86 6cda7a25-1ca1-4a99-bf79-75a43f299e65 2021-01-23 00:57:39.535309 51861 4117 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1302\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.559E3\ntotal: !ruby/object:BigDecimal 18:0.84E3\nstatus: 0\ndate_sale: 2021-01-22\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1256\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 b1c2a509-2c6e-48dc-b0ca-20f28d7068cc 2021-01-23 01:04:40.751185 51862 2620 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 189.186.132.86 b1c2a509-2c6e-48dc-b0ca-20f28d7068cc 2021-01-23 01:04:40.79736 51863 4117 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 44844fa4-392c-4358-8eb6-81c386de3b71 2021-01-23 01:05:29.044108 52163 2140 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.48.98 1d0462fd-db5d-45cb-9770-cc2aaa2fde5d 2021-01-31 00:52:32.913959 51864 5388 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1302\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.84E3\nmove_type: '1'\nsale_id: 4117\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1256\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.84E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1256 189.186.132.86 44844fa4-392c-4358-8eb6-81c386de3b71 2021-01-23 01:05:29.075823 51865 2017 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 21 \N 189.186.132.86 b007d0f1-b2b5-4882-a965-3a00146c9be4 2021-01-23 01:34:17.134122 51866 2017 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 22 \N 189.186.132.86 5ef0255f-0e0a-4938-a2b5-04a7db20f33c 2021-01-23 01:34:20.696041 51867 810 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2021-01-22\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.132.86 ecce2a46-3eb0-4349-b9e0-f36546993c31 2021-01-23 01:34:25.058007 51868 810 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-01-22\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.57.44 d05c0404-9f00-4815-acbc-dd8b11f178e2 2021-01-23 01:53:37.765169 51869 2286 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.57.44 d05c0404-9f00-4815-acbc-dd8b11f178e2 2021-01-23 01:53:37.795396 51870 2625 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.57.44 822ad27e-3f40-4adb-9bb4-3ad43364cbbc 2021-01-23 01:53:56.745992 51871 2625 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.57.44 1dc0ec01-5175-45f8-8ad5-7e58feefcda6 2021-01-23 01:54:00.323231 51872 2625 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.57.44 510c39ee-a07e-4812-bd79-dc9c27f59f9d 2021-01-23 01:54:32.951492 51873 811 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2021-01-22\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.57.44 94eb5a5f-75c6-4086-933b-382196a7779e 2021-01-23 01:54:34.679225 51874 1328 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1301\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1498E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.726E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2226E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.57.44 25b66957-e79e-4051-b8e7-aefe63e283ba 2021-01-23 01:55:26.921194 51875 1301 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.57.44 25b66957-e79e-4051-b8e7-aefe63e283ba 2021-01-23 01:55:26.941119 51876 1329 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1302\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.37774E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.4E4\ncash_fund: !ruby/object:BigDecimal 27:0.8348000000000002E3\nphysical_cash: !ruby/object:BigDecimal 18:0.48348E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 b281e7e2-a921-4f66-a0e0-a7e803db4cd9 2021-01-23 02:40:09.525028 51877 1302 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 b281e7e2-a921-4f66-a0e0-a7e803db4cd9 2021-01-23 02:40:09.539065 51878 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-21 18:25:23.480179000 Z\n- &1 2021-01-22 18:11:49.390182000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-23 18:12:57.943822406 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140331\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118892\n mask_addr: 4294967295\nsign_in_count:\n- 757\n- 758\n 1519 \N 187.149.57.44 88c4f929-1166-43ea-8973-2190b25e8ace 2021-01-23 18:12:57.974777 51879 2 User \N \N 2 User \N update ---\nunique_session_id:\n- uzU41jDknQwKWvZ_7y9x\n- m6ZY6aMyy1n_pKpQA3Ji\n 1520 \N 187.149.57.44 88c4f929-1166-43ea-8973-2190b25e8ace 2021-01-23 18:12:58.002936 51880 1303 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.726E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 726.0 187.149.57.44 75d296ef-f8d7-496a-87ed-16e8d0761d91 2021-01-23 18:13:56.622214 51881 4118 Sale \N \N 2 User \N create ---\ncustomer_id: 376\nuser_id: 2\nopen_cash_register_id: 1303\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2021-01-23\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1942\nexpiration_date: 2021-02-27\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.44 483cf4af-2608-4916-bf7b-d6c6657b80d2 2021-01-23 19:04:00.885992 51882 2286 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.57.44 483cf4af-2608-4916-bf7b-d6c6657b80d2 2021-01-23 19:04:00.927592 51883 5389 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1303\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 4118\ncardnumber: 4501\npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1942\nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1942 187.149.57.44 a16d34ba-d9e9-41b5-b841-27ec27aad7dc 2021-01-23 19:04:47.224339 51884 4118 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.57.44 cf0b789a-c258-4ccd-948c-fb9b98f04adc 2021-01-23 19:04:49.097216 51885 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-21 18:22:53.345385000 Z\n- &1 2021-01-22 18:23:37.623401000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-23 19:36:01.946877622 Z\nsign_in_count:\n- 395\n- 396\n 793 \N 189.186.132.86 535dcf3e-69b2-47d2-86a9-a6a23b5338bd 2021-01-23 19:36:01.953063 51886 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 41JfsM-CJKeKFyvTngcL\n- 4BY6RoTvPHHsTqw_euwN\n 794 \N 189.186.132.86 535dcf3e-69b2-47d2-86a9-a6a23b5338bd 2021-01-23 19:36:01.967657 51887 1304 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.8348E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 834.8 189.186.132.86 c6ddfe39-393b-4723-b29e-8141e5085c7c 2021-01-23 19:36:15.434266 51910 812 Transfer \N \N 1 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2021-01-23\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.57.44 34b28f85-0c70-41b8-a466-ea7eb007dcfe 2021-01-23 22:14:55.187421 51888 4119 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1304\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2021-01-23\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1257\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 5b962414-3220-43d4-9acf-d6878c983022 2021-01-23 19:36:51.339208 51889 2687 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.132.86 5b962414-3220-43d4-9acf-d6878c983022 2021-01-23 19:36:51.370127 51890 4119 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 369a2e89-f893-4c66-b418-c9c6282d0232 2021-01-23 19:37:44.845058 51891 5390 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1304\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 4119\ncardnumber: 1254\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1257\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1257 189.186.132.86 369a2e89-f893-4c66-b418-c9c6282d0232 2021-01-23 19:37:44.88346 51892 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-22 18:11:49.390182000 Z\n- &1 2021-01-23 18:12:57.943822000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-23 20:16:16.921543962 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140331\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118892\n mask_addr: 4294967295\nsign_in_count:\n- 758\n- 759\n 1521 \N 187.149.57.44 fdcc9934-1acc-408d-8e6c-dab29a02a9db 2021-01-23 20:16:16.929557 51893 2 User \N \N 2 User \N update ---\nunique_session_id:\n- m6ZY6aMyy1n_pKpQA3Ji\n- bziHYyLser5-qsMhyNLV\n 1522 \N 187.149.57.44 fdcc9934-1acc-408d-8e6c-dab29a02a9db 2021-01-23 20:16:16.948843 51894 4120 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1303\namount: !ruby/object:BigDecimal 18:0.1345E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.538E3\ntotal: !ruby/object:BigDecimal 18:0.807E3\nstatus: 0\ndate_sale: 2021-01-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1943\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.44 df4dbb60-5ece-403d-be99-2a964ea9b85f 2021-01-23 20:18:23.986053 51895 1014 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.57.44 df4dbb60-5ece-403d-be99-2a964ea9b85f 2021-01-23 20:18:24.012851 51896 4120 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.44 e838e181-8fdd-4a5b-ae7b-160d9fa86556 2021-01-23 20:18:32.173904 51897 5391 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1303\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.807E3\nmove_type: '1'\nsale_id: 4120\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1943\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.807E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1943 187.149.57.44 e838e181-8fdd-4a5b-ae7b-160d9fa86556 2021-01-23 20:18:32.198454 51898 2625 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.57.44 198ac0e1-2d7b-409e-bef5-bfb279a9ec10 2021-01-23 20:44:25.423451 51899 2625 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 187.149.57.44 8d8fa2f8-d72d-4703-b9d8-a9efa9d45e58 2021-01-23 20:44:29.759877 51900 494 Customer \N \N 21 User \N create ---\nnick_name: 'ARELI PADILLA '\nphone: "(667) 473-7131"\nemail: ''\ncredit: true\ncredit_limit: !ruby/object:BigDecimal 18:0.5E4\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ARELI PADILLA fue registrado. 189.186.132.86 11d306ef-f058-4470-9b91-55f1570e45d1 2021-01-23 21:50:32.607202 51901 4121 Sale \N \N 21 User \N create ---\ncustomer_id: 494\nuser_id: 21\nopen_cash_register_id: 1304\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2021-01-23\nsaletype: 0\nseller_id: 31\nsale_code: PV3-V-1258\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 2b0d6e6e-4e1f-4148-a228-ef9bdc745bc8 2021-01-23 21:51:38.333289 51902 2642 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.9E1\n- !ruby/object:BigDecimal 18:0.8E1\n 15 \N 189.186.132.86 2b0d6e6e-4e1f-4148-a228-ef9bdc745bc8 2021-01-23 21:51:38.360275 51903 4122 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1304\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.899E3\nstatus: 0\ndate_sale: 2021-01-23\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1259\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 03b4d377-0dc7-4457-919d-3d26e98081c1 2021-01-23 21:52:41.790672 51904 2678 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.132.86 03b4d377-0dc7-4457-919d-3d26e98081c1 2021-01-23 21:52:41.816039 51905 4122 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 8e2e7aa6-5cdb-452f-8eb9-f2ad6237f85b 2021-01-23 21:52:56.349285 51906 5392 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1304\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 4122\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1259\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.9E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1259 189.186.132.86 8e2e7aa6-5cdb-452f-8eb9-f2ad6237f85b 2021-01-23 21:52:56.378093 51907 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-01-19 23:22:26.897937000 Z\n- &1 2021-01-21 02:03:25.505656000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-23 22:13:32.274852255 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140331\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140331\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118892\n mask_addr: 4294967295\nsign_in_count:\n- 452\n- 453\n 906 \N 187.149.57.44 884cf981-bd7a-4651-bb19-7ff989011323 2021-01-23 22:13:32.285714 51908 1 User \N \N 1 User \N update ---\nunique_session_id:\n- SV6KFfTtySjc83_QqjN3\n- PRGzHujHR-RnF2odwQFj\n 907 \N 187.149.57.44 884cf981-bd7a-4651-bb19-7ff989011323 2021-01-23 22:13:32.304025 51909 1523 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 187.149.57.44 ccacd2a3-702b-487c-af0c-be89cc9bd8b9 2021-01-23 22:14:52.746089 51935 1303 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.57.44 fa8385de-1459-426a-bd27-dd71e322867e 2021-01-24 01:52:51.315054 51911 812 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-01-23\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.57.44 cb095f57-d55a-4a88-92f1-f1a879dfe741 2021-01-23 22:15:22.131828 51912 2694 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 292\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.57.44 cb095f57-d55a-4a88-92f1-f1a879dfe741 2021-01-23 22:15:22.154436 51913 4123 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1303\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.348E3\ntotal: !ruby/object:BigDecimal 18:0.521E3\nstatus: 0\ndate_sale: 2021-01-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1944\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.44 72d839c4-0614-46be-8e8f-21d1a7caca98 2021-01-23 22:19:05.4334 51914 1157 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.57.44 72d839c4-0614-46be-8e8f-21d1a7caca98 2021-01-23 22:19:05.461999 51915 4123 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.44 0de2f44e-e5ed-4c6a-a290-dd10aeaaf61d 2021-01-23 22:19:09.438565 51916 5393 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1303\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.521E3\nmove_type: '1'\nsale_id: 4123\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1944\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.522E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1944 187.149.57.44 0de2f44e-e5ed-4c6a-a290-dd10aeaaf61d 2021-01-23 22:19:09.462842 51917 4124 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1303\namount: !ruby/object:BigDecimal 18:0.542924E4\ntax: !ruby/object:BigDecimal 18:0.8276E2\ndiscount: !ruby/object:BigDecimal 18:0.4013E4\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2021-01-23\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1945\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.44 b038e5b4-a479-413f-a225-59cb7242a7ed 2021-01-23 22:34:31.6586 51918 2694 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.57.44 b038e5b4-a479-413f-a225-59cb7242a7ed 2021-01-23 22:34:31.689122 51919 2311 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.57.44 b038e5b4-a479-413f-a225-59cb7242a7ed 2021-01-23 22:34:31.713991 51920 1563 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.57.44 b038e5b4-a479-413f-a225-59cb7242a7ed 2021-01-23 22:34:31.736736 51921 611 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.57.44 b038e5b4-a479-413f-a225-59cb7242a7ed 2021-01-23 22:34:31.759431 51922 253 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 6 \N 187.149.57.44 b038e5b4-a479-413f-a225-59cb7242a7ed 2021-01-23 22:34:31.782012 51923 711 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 8 \N 187.149.57.44 b038e5b4-a479-413f-a225-59cb7242a7ed 2021-01-23 22:34:31.806813 51924 2244 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.57.44 b038e5b4-a479-413f-a225-59cb7242a7ed 2021-01-23 22:34:31.830253 51925 2248 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 8 \N 187.149.57.44 b038e5b4-a479-413f-a225-59cb7242a7ed 2021-01-23 22:34:31.853637 51926 4124 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.44 d5a204fe-c1d6-43b6-8870-4547525b157e 2021-01-23 22:34:36.710514 51927 5394 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1303\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 4124\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1945\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1945 187.149.57.44 d5a204fe-c1d6-43b6-8870-4547525b157e 2021-01-23 22:34:36.731642 51928 4125 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1304\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2021-01-23\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1260\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 feeba26e-9db6-4170-a1ac-d5970358b18f 2021-01-24 01:06:24.518414 51929 2215 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 64 \N 189.186.132.86 feeba26e-9db6-4170-a1ac-d5970358b18f 2021-01-24 01:06:24.552764 51930 4125 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 52beec59-9e9e-4273-872a-d086591ed5d8 2021-01-24 01:07:24.186198 51931 5395 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1304\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 4125\ncardnumber: 4521\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1260\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1260 189.186.132.86 52beec59-9e9e-4273-872a-d086591ed5d8 2021-01-24 01:07:24.218094 51932 387 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1303\nquantity: !ruby/object:BigDecimal 18:0.6E2\nstatus: 1\nobservations: dos horas extras rocio\nexpense_date: 2021-01-23\nexpense_code: PV1-E-266\n 1 Egreso por 60.0 registrado 187.149.57.44 77812381-7dd1-40af-b469-d31caeb83813 2021-01-24 01:44:22.962994 51933 5396 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1303\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E2\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 387\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.57.44 77812381-7dd1-40af-b469-d31caeb83813 2021-01-24 01:44:22.994705 51934 1330 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1303\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3327E4\namount_out: !ruby/object:BigDecimal 18:0.6E2\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.25E4\ncash_fund: !ruby/object:BigDecimal 18:0.993E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3493E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.57.44 fa8385de-1459-426a-bd27-dd71e322867e 2021-01-24 01:52:51.299044 51936 388 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1304\nquantity: !ruby/object:BigDecimal 18:0.95E3\nstatus: 1\nobservations: SUELDO NAYELI\nexpense_date: 2021-01-23\nexpense_code: PV3-E-60\n 1 Egreso por 950.0 registrado 189.186.132.86 e771cef2-b68c-40bd-a10b-6abc9058ffb9 2021-01-24 01:59:22.574745 51937 5397 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1304\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.95E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 388\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.132.86 e771cef2-b68c-40bd-a10b-6abc9058ffb9 2021-01-24 01:59:22.610338 51938 1331 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1304\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.3397E4\namount_out: !ruby/object:BigDecimal 18:0.95E3\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.783E3\nphysical_cash: !ruby/object:BigDecimal 18:0.783E3\nobservations: " "\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 de827b9a-de81-4bc8-be5b-481f0d4cb380 2021-01-24 02:02:21.690482 51939 1304 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 de827b9a-de81-4bc8-be5b-481f0d4cb380 2021-01-24 02:02:21.704519 51940 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-22 02:34:28.178900000 Z\n- &1 2021-01-22 23:42:34.850031000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-24 20:06:12.286434321 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946446\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946446\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535926\n mask_addr: 4294967295\nsign_in_count:\n- 2318\n- 2319\n 4638 \N 177.228.103.118 b78414c5-dd40-4891-858a-2f714fdb96ea 2021-01-24 20:06:12.330517 51941 4 User \N \N 4 User \N update ---\nunique_session_id:\n- xYRyScFfMQ9zApNCJMTT\n- _xuWXfMRV7bnH5dHR_b-\n 4639 \N 177.228.103.118 b78414c5-dd40-4891-858a-2f714fdb96ea 2021-01-24 20:06:12.365545 51942 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-22 18:23:37.623401000 Z\n- &1 2021-01-23 19:36:01.946877000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-24 20:19:13.999916059 Z\nsign_in_count:\n- 396\n- 397\n 795 \N 189.186.132.86 113b2c63-062b-40f0-ba8f-5a9e10c7e327 2021-01-24 20:19:14.005108 51943 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 4BY6RoTvPHHsTqw_euwN\n- MomYmUUDtTNdyBG_eZ-x\n 796 \N 189.186.132.86 113b2c63-062b-40f0-ba8f-5a9e10c7e327 2021-01-24 20:19:14.01833 51944 1305 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.783E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 783.0 189.186.132.86 d971b6af-b9ce-41d0-9cd5-fca643297a3d 2021-01-24 20:19:27.312036 51945 4126 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1305\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2021-01-24\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1261\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 4d3fab1c-8311-4ef1-968b-90f7cd641123 2021-01-24 20:19:41.722436 51946 2378 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.12E2\n- !ruby/object:BigDecimal 18:0.11E2\n 10 \N 189.186.132.86 4d3fab1c-8311-4ef1-968b-90f7cd641123 2021-01-24 20:19:41.75032 51947 4126 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 facbe61e-c94b-4d63-b422-8fc864897cfe 2021-01-24 20:20:23.112245 51948 5398 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1305\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1599E4\nmove_type: '1'\nsale_id: 4126\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1261\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.16E4\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1261 189.186.132.86 facbe61e-c94b-4d63-b422-8fc864897cfe 2021-01-24 20:20:23.136111 51949 1332 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1305\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1599E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.882E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2382E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 bf776c7c-deb4-4881-8008-4a46c56dd26e 2021-01-24 22:57:16.244597 51950 1305 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 bf776c7c-deb4-4881-8008-4a46c56dd26e 2021-01-24 22:57:16.255945 51951 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-23 18:12:57.943822000 Z\n- &1 2021-01-23 20:16:16.921543000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-25 17:08:05.757835091 Z\nsign_in_count:\n- 759\n- 760\n 1523 \N 187.149.57.44 3a277f84-203b-424c-acf6-d8ba4cf1af5e 2021-01-25 17:08:05.78837 51952 2 User \N \N 2 User \N update ---\nunique_session_id:\n- bziHYyLser5-qsMhyNLV\n- wqtzyDsMvQ9x2yRWK5GE\n 1524 \N 187.149.57.44 3a277f84-203b-424c-acf6-d8ba4cf1af5e 2021-01-25 17:08:05.811804 51953 1306 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.993E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 993.0 187.149.57.44 cb2e20e2-17c9-41cd-8eb5-bb9fb3e3343a 2021-01-25 18:04:55.804968 51954 4127 Sale \N \N 2 User \N create ---\ncustomer_id: 391\nuser_id: 2\nopen_cash_register_id: 1306\namount: !ruby/object:BigDecimal 18:0.1099E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1099E4\nstatus: 0\ndate_sale: 2021-01-25\nsaletype: 2\nseller_id: 1\nsale_code: PV1-V-1946\nexpiration_date: 2021-03-01\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.44 86194edf-72f5-42d5-8ffb-f4fb6487a055 2021-01-25 20:05:51.465087 51955 2685 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.57.44 86194edf-72f5-42d5-8ffb-f4fb6487a055 2021-01-25 20:05:51.508766 51956 5399 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1306\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 4127\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV1-V-1946\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1946 187.149.57.44 8caf99a1-90c7-491e-852d-0e27aff3a4c5 2021-01-25 20:05:57.590972 51957 4127 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.57.44 7ff7c35d-0ad9-459d-b654-1041021fae99 2021-01-25 20:05:59.040516 51980 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _xuWXfMRV7bnH5dHR_b-\n- ywpTB1tazo3r9fXzGQS9\n 4641 \N 200.68.186.46 1829c49a-ce89-47ab-9c38-e0c30510f1e6 2021-01-26 01:33:27.309447 51958 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-23 19:36:01.946877000 Z\n- &1 2021-01-24 20:19:13.999916000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-25 21:53:30.646116579 Z\nsign_in_count:\n- 397\n- 398\n 797 \N 189.186.132.86 69b99be3-bfa2-4b4a-9a3a-18cc02c0992d 2021-01-25 21:53:30.676698 51959 21 User \N \N 21 User \N update ---\nunique_session_id:\n- MomYmUUDtTNdyBG_eZ-x\n- qCagS4obz5ssFsWgyAzz\n 798 \N 189.186.132.86 69b99be3-bfa2-4b4a-9a3a-18cc02c0992d 2021-01-25 21:53:30.704383 51960 1307 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.882E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 882.0 189.186.132.86 f6082a5b-0356-4fdd-a849-1d1439b451c8 2021-01-25 21:53:43.295455 51961 4128 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1307\namount: !ruby/object:BigDecimal 18:0.2898E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.2898E4\nstatus: 0\ndate_sale: 2021-01-25\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1262\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 1ba2d396-26c8-41e1-b311-f7a632d069e3 2021-01-25 21:54:36.733088 51962 2680 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 189.186.132.86 1ba2d396-26c8-41e1-b311-f7a632d069e3 2021-01-25 21:54:36.769757 51963 2676 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.132.86 1ba2d396-26c8-41e1-b311-f7a632d069e3 2021-01-25 21:54:36.821671 51964 4128 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 169a2c87-4c80-4f77-99de-54216fab306f 2021-01-25 21:56:02.013677 51965 5400 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1307\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.289E4\nmove_type: '1'\nsale_id: 4128\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1262\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.289E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1262 189.186.132.86 169a2c87-4c80-4f77-99de-54216fab306f 2021-01-25 21:56:02.048779 51966 5400 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1307\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.289E4\nmove_type: '1'\nsale_id: 4128\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1262\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.289E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.132.86 7bdfca4c-4260-408c-8e00-05bfd2ba7a65 2021-01-25 21:56:10.943044 51967 5401 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1307\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2898E4\nmove_type: '1'\nsale_id: 4128\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1262\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.29E4\nchange: !ruby/object:BigDecimal 18:0.2E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1262 189.186.132.86 8b96c0fe-a4ed-4514-8149-ec5c7e2c4563 2021-01-25 21:57:16.553768 51968 4129 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1306\namount: !ruby/object:BigDecimal 18:0.1429E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.56E3\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2021-01-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1947\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.44 d19eaded-6b43-4a69-b530-d8f12f8a24a7 2021-01-25 21:59:07.068001 51969 2521 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.6E1\n 5 \N 187.149.57.44 d19eaded-6b43-4a69-b530-d8f12f8a24a7 2021-01-25 21:59:07.096176 51970 791 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 14 \N 187.149.57.44 d19eaded-6b43-4a69-b530-d8f12f8a24a7 2021-01-25 21:59:07.119502 51971 4129 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.44 f516756c-8619-4283-8da3-fd6edc92138e 2021-01-25 21:59:16.233517 51972 5402 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1306\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.869E3\nmove_type: '1'\nsale_id: 4129\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1947\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.869E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1947 187.149.57.44 f516756c-8619-4283-8da3-fd6edc92138e 2021-01-25 21:59:16.260598 51973 4130 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1306\namount: !ruby/object:BigDecimal 18:0.1067E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.409E3\ntotal: !ruby/object:BigDecimal 18:0.658E3\nstatus: 0\ndate_sale: 2021-01-25\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1948\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.44 ffb8197f-1af7-4412-9ae6-a95de7f11659 2021-01-25 23:28:46.897362 51974 1012 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 12 \N 187.149.57.44 ffb8197f-1af7-4412-9ae6-a95de7f11659 2021-01-25 23:28:46.935766 51975 2141 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.57.44 ffb8197f-1af7-4412-9ae6-a95de7f11659 2021-01-25 23:28:46.967691 51976 2381 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.57.44 ffb8197f-1af7-4412-9ae6-a95de7f11659 2021-01-25 23:28:46.992679 51977 4130 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.44 f5bbdf2a-60df-43f4-bead-044a0fb97560 2021-01-25 23:29:01.660772 51978 5403 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1306\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.658E3\nmove_type: '1'\nsale_id: 4130\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1948\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.658E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1948 187.149.57.44 f5bbdf2a-60df-43f4-bead-044a0fb97560 2021-01-25 23:29:01.689829 51979 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-22 23:42:34.850031000 Z\n- &1 2021-01-24 20:06:12.286434000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-26 01:33:27.283025711 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359946446\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535926\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535926\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359947310\n mask_addr: 4294967295\nsign_in_count:\n- 2319\n- 2320\n 4640 \N 200.68.186.46 1829c49a-ce89-47ab-9c38-e0c30510f1e6 2021-01-26 01:33:27.290824 51981 1333 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1306\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1827E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.18E4\ncash_fund: !ruby/object:BigDecimal 18:0.102E4\nphysical_cash: !ruby/object:BigDecimal 18:0.282E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.57.44 d7ac193f-b18a-4840-b23d-cffe9e4b7a78 2021-01-26 01:51:55.491225 51982 1306 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.57.44 d7ac193f-b18a-4840-b23d-cffe9e4b7a78 2021-01-26 01:51:55.505465 51983 1334 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1307\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.2898E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.29E4\ncash_fund: !ruby/object:BigDecimal 18:0.88E3\nphysical_cash: !ruby/object:BigDecimal 18:0.378E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 77b8b641-9200-4983-9c85-0b4191007c4b 2021-01-26 01:53:10.824421 51984 1307 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 77b8b641-9200-4983-9c85-0b4191007c4b 2021-01-26 01:53:10.837736 51985 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-23 20:16:16.921543000 Z\n- &1 2021-01-25 17:08:05.757835000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-26 17:06:00.530188698 Z\nsign_in_count:\n- 760\n- 761\n 1525 \N 187.149.57.44 db1d9ccf-da61-4640-9471-dc79827e5039 2021-01-26 17:06:00.559584 51986 2 User \N \N 2 User \N update ---\nunique_session_id:\n- wqtzyDsMvQ9x2yRWK5GE\n- wbtRWGiWY2aahXy7_ZfM\n 1526 \N 187.149.57.44 db1d9ccf-da61-4640-9471-dc79827e5039 2021-01-26 17:06:00.583186 51987 1308 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.102E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1020.0 187.149.57.44 bb768a50-9a26-46d7-a184-e1d6c6fd5b33 2021-01-26 17:52:44.21433 51988 4131 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1308\namount: !ruby/object:BigDecimal 18:0.1599E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1599E4\nstatus: 0\ndate_sale: 2021-01-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1949\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.44 dfe68ce1-6ddd-462f-82e5-e65b72a9cf46 2021-01-26 18:51:07.43396 51989 2448 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 13 \N 187.149.57.44 dfe68ce1-6ddd-462f-82e5-e65b72a9cf46 2021-01-26 18:51:07.472803 51990 4131 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.44 a604ccc5-d257-4e73-938f-3eb83a83d718 2021-01-26 18:51:54.323155 51991 5404 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1308\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1599E4\nmove_type: '1'\nsale_id: 4131\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1949\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1599E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1949 187.149.57.44 a604ccc5-d257-4e73-938f-3eb83a83d718 2021-01-26 18:51:54.346244 51992 4132 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1308\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2021-01-26\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1950\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.57.44 5a4cb6ee-9216-4070-809d-72d893e0667b 2021-01-26 18:55:52.157656 51993 2286 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.57.44 5a4cb6ee-9216-4070-809d-72d893e0667b 2021-01-26 18:55:52.185363 51994 4132 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.57.44 c2a5fa1b-a0e0-48ba-9ad3-d64351f6e74e 2021-01-26 18:55:59.167822 51995 5405 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1308\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 4132\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1950\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1499E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1950 187.149.57.44 c2a5fa1b-a0e0-48ba-9ad3-d64351f6e74e 2021-01-26 18:55:59.195661 51996 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-01-21 02:03:25.505656000 Z\n- &1 2021-01-23 22:13:32.274852000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-26 19:07:15.691900347 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147140331\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118892\n mask_addr: 4294967295\nsign_in_count:\n- 453\n- 454\n 908 \N 187.149.57.44 354bbde0-4d85-4d77-a0b0-b406b93c6145 2021-01-26 19:07:15.700558 51997 1 User \N \N 1 User \N update ---\nunique_session_id:\n- PRGzHujHR-RnF2odwQFj\n- uzDLuMFF-8HcFyoq6Gfu\n 909 \N 187.149.57.44 354bbde0-4d85-4d77-a0b0-b406b93c6145 2021-01-26 19:07:15.719914 51998 30 User \N \N 30 User \N update ---\nlast_sign_in_at:\n- 2020-11-24 17:34:09.318342000 Z\n- &1 2020-12-15 19:20:47.972581000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-27 00:41:18.052812388 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147107722\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183144022\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183144022\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147672\n mask_addr: 4294967295\nsign_in_count:\n- 18\n- 19\n 38 \N 189.186.250.152 3b0976e0-5c68-47fe-8692-0fb4e673d857 2021-01-27 00:41:18.072988 51999 30 User \N \N 30 User \N update ---\nunique_session_id:\n- tNPhXQchiBe28w7CDYpX\n- eUeX8YLxz_r_yxEqqA_8\n 39 \N 189.186.250.152 3b0976e0-5c68-47fe-8692-0fb4e673d857 2021-01-27 00:41:18.09426 52000 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-24 20:19:13.999916000 Z\n- &1 2021-01-25 21:53:30.646116000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-27 00:44:12.850250109 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147672\n mask_addr: 4294967295\nsign_in_count:\n- 398\n- 399\n 799 \N 189.186.250.152 7f24b4aa-b298-4551-98d4-9242db3f102a 2021-01-27 00:44:12.857818 52001 21 User \N \N 21 User \N update ---\nunique_session_id:\n- qCagS4obz5ssFsWgyAzz\n- 4eTkwS2Hes7K9ZuFUTBz\n 800 \N 189.186.250.152 7f24b4aa-b298-4551-98d4-9242db3f102a 2021-01-27 00:44:12.875229 52002 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-01-23 22:13:32.274852000 Z\n- &1 2021-01-26 19:07:15.691900000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-27 01:27:51.370830597 Z\nsign_in_count:\n- 454\n- 455\n 910 \N 187.149.57.44 e34e85cf-355b-47a8-9eaf-ea489b8b7f76 2021-01-27 01:27:51.377163 52003 1 User \N \N 1 User \N update ---\nunique_session_id:\n- uzDLuMFF-8HcFyoq6Gfu\n- uxGsLA6eZCe5-3pWsE2h\n 911 \N 187.149.57.44 e34e85cf-355b-47a8-9eaf-ea489b8b7f76 2021-01-27 01:27:51.393584 52004 1335 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1308\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3098E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.32E4\ncash_fund: !ruby/object:BigDecimal 18:0.918E3\nphysical_cash: !ruby/object:BigDecimal 18:0.4118E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.57.44 aaa12e1c-36bf-4135-bc1d-6fdecc11fae7 2021-01-27 01:46:50.46054 52005 1308 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.57.44 aaa12e1c-36bf-4135-bc1d-6fdecc11fae7 2021-01-27 01:46:50.478422 52006 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-25 21:53:30.646116000 Z\n- &1 2021-01-27 00:44:12.850250000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-27 01:51:55.523946811 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147672\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147672\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\nsign_in_count:\n- 399\n- 400\n 801 \N 189.186.132.86 7bfe9f00-8024-4c97-8ff4-b2a0148fab64 2021-01-27 01:51:55.532381 52007 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 4eTkwS2Hes7K9ZuFUTBz\n- TPGgX-zgfedJMbXoeyQJ\n 802 \N 189.186.132.86 7bfe9f00-8024-4c97-8ff4-b2a0148fab64 2021-01-27 01:51:55.550563 52008 1309 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.88E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 880.0 189.186.132.86 27f9c8cd-933f-43f5-8a6a-85cfdfb0cf1c 2021-01-27 01:52:33.8996 52009 1336 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1309\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.88E3\nphysical_cash: !ruby/object:BigDecimal 18:0.88E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 7b187a66-ce1d-4a4d-bc9f-71a7c89d0480 2021-01-27 01:53:03.855957 52010 1309 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 7b187a66-ce1d-4a4d-bc9f-71a7c89d0480 2021-01-27 01:53:03.870831 52011 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-24 20:06:12.286434000 Z\n- &1 2021-01-26 01:33:27.283025000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-27 04:45:02.534827096 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535926\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359947310\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359947310\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359940438\n mask_addr: 4294967295\nsign_in_count:\n- 2320\n- 2321\n 4642 \N 200.68.159.86 0f38bec4-8ba5-44b7-be09-cb769fd97ebf 2021-01-27 04:45:02.545139 52012 4 User \N \N 4 User \N update ---\nunique_session_id:\n- ywpTB1tazo3r9fXzGQS9\n- j2Y79VtnygLRRMygPY54\n 4643 \N 200.68.159.86 0f38bec4-8ba5-44b7-be09-cb769fd97ebf 2021-01-27 04:45:02.570987 52013 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-25 17:08:05.757835000 Z\n- &1 2021-01-26 17:06:00.530188000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-27 17:15:10.582556204 Z\nsign_in_count:\n- 761\n- 762\n 1527 \N 187.149.57.44 b520463a-cbc6-4101-9f84-5af83bf4a454 2021-01-27 17:15:10.610421 52014 2 User \N \N 2 User \N update ---\nunique_session_id:\n- wbtRWGiWY2aahXy7_ZfM\n- on_Y_8Xo6swynqPiruca\n 1528 \N 187.149.57.44 b520463a-cbc6-4101-9f84-5af83bf4a454 2021-01-27 17:15:10.634182 52015 1310 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.918E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 918.0 187.149.57.44 4e023647-83c9-4cc1-8be9-05e011303a4f 2021-01-27 17:15:23.021247 52016 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-27 00:44:12.850250000 Z\n- &1 2021-01-27 01:51:55.523946000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-27 17:29:57.388364901 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147672\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\nsign_in_count:\n- 400\n- 401\n 803 \N 189.186.132.86 6a14a1f4-b01c-438f-8381-9ef1e6821b2a 2021-01-27 17:29:57.418106 52017 21 User \N \N 21 User \N update ---\nunique_session_id:\n- TPGgX-zgfedJMbXoeyQJ\n- KtJQjCAaAAN-GhFZZf_x\n 804 \N 189.186.132.86 6a14a1f4-b01c-438f-8381-9ef1e6821b2a 2021-01-27 17:29:57.441886 52018 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-01-26 19:07:15.691900000 Z\n- &1 2021-01-27 01:27:51.370830000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-27 17:40:44.347135805 Z\nsign_in_count:\n- 455\n- 456\n 912 \N 187.149.57.44 04fd9777-696e-4529-b880-67c7f579196d 2021-01-27 17:40:44.352578 52019 1 User \N \N 1 User \N update ---\nunique_session_id:\n- uxGsLA6eZCe5-3pWsE2h\n- MfYxFYwTshvqPhyQR_Ty\n 913 \N 187.149.57.44 04fd9777-696e-4529-b880-67c7f579196d 2021-01-27 17:40:44.366738 52020 3517 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 4\n 3 \N 187.149.57.44 b558a13b-0f02-4f12-ba20-cf2cbdabae5c 2021-01-27 17:43:44.957454 52021 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 40 \N 187.149.57.44 b558a13b-0f02-4f12-ba20-cf2cbdabae5c 2021-01-27 17:43:45.027758 52022 1311 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.88E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 880.0 189.186.132.86 e3f65bb9-b089-4479-948f-af0bf51c90ae 2021-01-27 18:00:25.05283 52023 4133 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1311\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1399E4\nstatus: 0\ndate_sale: 2021-01-27\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1263\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 37c7a120-9b48-4e40-991f-ac94edc2bb5b 2021-01-27 18:07:28.458274 52024 2688 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.132.86 37c7a120-9b48-4e40-991f-ac94edc2bb5b 2021-01-27 18:07:28.51205 52025 4133 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 0b8c5d5e-2aae-4659-9696-5d7e5a47a647 2021-01-27 18:07:39.110255 52026 5406 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1311\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1399E4\nmove_type: '1'\nsale_id: 4133\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1263\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E4\nchange: !ruby/object:BigDecimal 18:0.101E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1263 189.186.132.86 0b8c5d5e-2aae-4659-9696-5d7e5a47a647 2021-01-27 18:07:39.135329 52050 3615 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.132.86 f9b52456-6ef0-427e-8946-76819e2a3102 2021-01-29 01:34:26.2121 52164 4148 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 bf3342ca-dade-489a-a2be-afeebf633097 2021-01-31 00:52:36.424327 52027 4134 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1311\namount: !ruby/object:BigDecimal 18:0.17155E3\ntax: !ruby/object:BigDecimal 18:0.2745E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.199E3\nstatus: 0\ndate_sale: 2021-01-27\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1264\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 bcb6a825-322a-48b2-a2d5-c89af03a7a5b 2021-01-27 18:09:00.423719 52028 2656 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.132.86 bcb6a825-322a-48b2-a2d5-c89af03a7a5b 2021-01-27 18:09:00.450438 52029 4134 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 a3aaf6da-7b8e-4901-933a-8aa778d82fc2 2021-01-27 18:09:10.087161 52030 5407 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1311\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.199E3\nmove_type: '1'\nsale_id: 4134\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1264\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1264 189.186.132.86 a3aaf6da-7b8e-4901-933a-8aa778d82fc2 2021-01-27 18:09:10.110671 52031 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-01-27 01:27:51.370830000 Z\n- &1 2021-01-27 17:40:44.347135000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-28 00:49:10.052208319 Z\nsign_in_count:\n- 456\n- 457\n 914 \N 187.149.57.44 f66d7256-6f6d-47a6-833e-950ac172b2b4 2021-01-28 00:49:10.069815 52032 1 User \N \N 1 User \N update ---\nunique_session_id:\n- MfYxFYwTshvqPhyQR_Ty\n- yE_psDs4gVJzZ1yzosGd\n 915 \N 187.149.57.44 f66d7256-6f6d-47a6-833e-950ac172b2b4 2021-01-28 00:49:10.089659 52033 1337 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1310\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.918E3\nphysical_cash: !ruby/object:BigDecimal 18:0.918E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.57.44 f769d2ac-585a-4a62-8779-426d9a642d2e 2021-01-28 01:48:30.297933 52034 1310 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.57.44 f769d2ac-585a-4a62-8779-426d9a642d2e 2021-01-28 01:48:30.313996 52035 1338 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1311\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.1598E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.978E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2478E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 273ca1d9-1a86-4c54-b111-34f809356c31 2021-01-28 02:00:16.638164 52036 1311 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 273ca1d9-1a86-4c54-b111-34f809356c31 2021-01-28 02:00:16.652861 52037 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-26 01:33:27.283025000 Z\n- &1 2021-01-27 04:45:02.534827000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-28 07:49:25.982873006 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359947310\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359940438\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359940438\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359947328\n mask_addr: 4294967295\nsign_in_count:\n- 2321\n- 2322\n 4644 \N 200.68.186.64 84e82c67-5185-4731-84e3-99a4e71f85a7 2021-01-28 07:49:26.012286 52038 4 User \N \N 4 User \N update ---\nunique_session_id:\n- j2Y79VtnygLRRMygPY54\n- V2-dc9aK68p-ixg_32GP\n 4645 \N 200.68.186.64 84e82c67-5185-4731-84e3-99a4e71f85a7 2021-01-28 07:49:26.03926 52039 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-26 17:06:00.530188000 Z\n- &1 2021-01-27 17:15:10.582556000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-28 18:24:22.850880017 Z\nsign_in_count:\n- 762\n- 763\n 1529 \N 187.149.57.44 f04f86a9-adc6-4ba1-9abf-9a187394d9be 2021-01-28 18:24:22.881345 52040 2 User \N \N 2 User \N update ---\nunique_session_id:\n- on_Y_8Xo6swynqPiruca\n- w_-S7tzqxL2SSyisej-v\n 1530 \N 187.149.57.44 f04f86a9-adc6-4ba1-9abf-9a187394d9be 2021-01-28 18:24:22.90668 52041 1312 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.918E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 918.0 187.149.48.98 5156bbcb-5c9b-4952-a6aa-934bea8e17ff 2021-01-29 01:00:41.632669 52042 4135 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1312\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.26E3\ntotal: !ruby/object:BigDecimal 18:0.609E3\nstatus: 0\ndate_sale: 2021-01-28\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1951\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 643442f9-a962-47c0-91d9-34d1e11817a1 2021-01-29 01:02:06.967223 52043 2521 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 6 \N 187.149.48.98 643442f9-a962-47c0-91d9-34d1e11817a1 2021-01-29 01:02:07.015713 52044 4135 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 83b4833b-7f46-4cb9-998e-025352f4e570 2021-01-29 01:02:42.604656 52045 5408 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1312\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.609E3\nmove_type: '1'\nsale_id: 4135\ncardnumber: 3315\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1951\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1951 187.149.48.98 83b4833b-7f46-4cb9-998e-025352f4e570 2021-01-29 01:02:42.647841 52046 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-27 01:51:55.523946000 Z\n- &1 2021-01-27 17:29:57.388364000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-29 01:30:42.442590568 Z\nsign_in_count:\n- 401\n- 402\n 805 \N 189.186.132.86 2ae42053-c121-4c00-af01-c514651531f8 2021-01-29 01:30:42.454596 52047 21 User \N \N 21 User \N update ---\nunique_session_id:\n- KtJQjCAaAAN-GhFZZf_x\n- vyu-6E-x8oHb1vKN6EX4\n 806 \N 189.186.132.86 2ae42053-c121-4c00-af01-c514651531f8 2021-01-29 01:30:42.475022 52048 1313 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.978E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 978.0 189.186.132.86 83e87deb-68cb-42fc-b28f-819960ffbb93 2021-01-29 01:30:55.944398 52049 5409 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1313\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1299E4\nmove_type: '1'\nsale_id: 3615\ncardnumber: 4512\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-966 189.186.132.86 e19798ed-dc27-4e2a-a78e-8d780a34086b 2021-01-29 01:34:22.969747 52051 389 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1312\nquantity: !ruby/object:BigDecimal 18:0.1E3\nstatus: 1\nobservations: SIEM CANACO\nexpense_date: 2021-01-28\nexpense_code: PV1-E-267\n 1 Egreso por 100.0 registrado 187.149.48.98 8e22385a-a300-4146-aa22-b35cd884187e 2021-01-29 01:34:54.714669 52052 5410 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1312\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 389\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.48.98 8e22385a-a300-4146-aa22-b35cd884187e 2021-01-29 01:34:54.76342 52053 5411 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1313\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.1798E4\nmove_type: '1'\nsale_id: 3613\ncardnumber: 4521\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-968 189.186.132.86 644aa434-b179-427a-89f3-b53a374dcee7 2021-01-29 01:38:29.166775 52054 3613 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.132.86 26c346ca-e5c5-49dd-afa8-191897623d9d 2021-01-29 01:38:30.996001 52055 4136 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1313\namount: !ruby/object:BigDecimal 18:0.998E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3992E3\ntotal: !ruby/object:BigDecimal 18:0.5988E3\nstatus: 0\ndate_sale: 2021-01-28\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1265\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 cb334a8e-c5b9-4144-b6f1-bdf51646f654 2021-01-29 01:43:42.030221 52056 2571 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.5E1\n 10 \N 189.186.132.86 cb334a8e-c5b9-4144-b6f1-bdf51646f654 2021-01-29 01:43:42.062301 52057 1339 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1312\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.609E3\namount_out: !ruby/object:BigDecimal 18:0.1E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.818E3\nphysical_cash: !ruby/object:BigDecimal 18:0.818E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.48.98 e034f1c2-c5c8-46aa-a2c0-e29cae16cd25 2021-01-29 01:45:08.277906 52058 1312 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.48.98 e034f1c2-c5c8-46aa-a2c0-e29cae16cd25 2021-01-29 01:45:08.291159 52059 4136 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 03814df6-335e-45bb-b9d4-ed97158d0569 2021-01-29 01:45:56.036995 52060 5412 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1313\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 4136\ncardnumber: 4521\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1265\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1265 189.186.132.86 03814df6-335e-45bb-b9d4-ed97158d0569 2021-01-29 01:45:56.062376 52061 4137 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1313\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2021-01-28\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1266\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 9e2a2e1e-3488-478f-baad-292b1ed43f7d 2021-01-29 01:46:31.164827 52062 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.25E2\n- !ruby/object:BigDecimal 18:0.24E2\n 37 \N 189.186.132.86 9e2a2e1e-3488-478f-baad-292b1ed43f7d 2021-01-29 01:46:31.193381 52063 4137 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 df453806-59c1-4c50-a196-e79765ae07bb 2021-01-29 01:46:42.903125 52064 5413 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1313\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 4137\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1266\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.451E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1266 189.186.132.86 df453806-59c1-4c50-a196-e79765ae07bb 2021-01-29 01:46:42.925735 52065 1340 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1313\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.3746E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.5E3\ncash_fund: !ruby/object:BigDecimal 18:0.527E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1027E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 a21f265c-968d-4687-9e5a-a5f7310a9a93 2021-01-29 01:51:03.43957 52066 1313 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 a21f265c-968d-4687-9e5a-a5f7310a9a93 2021-01-29 01:51:03.455186 52067 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-27 04:45:02.534827000 Z\n- &1 2021-01-28 07:49:25.982873000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-29 07:19:08.686101097 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359940438\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359947328\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359947328\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359947268\n mask_addr: 4294967295\nsign_in_count:\n- 2322\n- 2323\n 4646 \N 200.68.186.4 f25f83d1-00fd-4fff-a1c1-1fdd5b146b1c 2021-01-29 07:19:08.694305 52068 4 User \N \N 4 User \N update ---\nunique_session_id:\n- V2-dc9aK68p-ixg_32GP\n- WFyHB2v18QgDuum29W-8\n 4647 \N 200.68.186.4 f25f83d1-00fd-4fff-a1c1-1fdd5b146b1c 2021-01-29 07:19:08.713121 52069 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-27 17:15:10.582556000 Z\n- &1 2021-01-28 18:24:22.850880000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-29 18:36:22.007078305 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118892\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116642\n mask_addr: 4294967295\nsign_in_count:\n- 763\n- 764\n 1531 \N 187.149.48.98 4e3d5143-b2a6-4590-9c3c-ca49adfddacb 2021-01-29 18:36:22.036083 52070 2 User \N \N 2 User \N update ---\nunique_session_id:\n- w_-S7tzqxL2SSyisej-v\n- hPTR-JVtGGe6PXZqjwtt\n 1532 \N 187.149.48.98 4e3d5143-b2a6-4590-9c3c-ca49adfddacb 2021-01-29 18:36:22.062975 52071 1314 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.818E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 818.0 187.149.48.98 1dc73fef-d0bc-4574-8ee8-131dcb3f4776 2021-01-29 18:36:59.729873 52116 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.24E2\n- !ruby/object:BigDecimal 18:0.23E2\n 38 \N 189.186.132.86 ada6f8d5-ec35-4510-9fe8-961274817721 2021-01-29 23:51:37.859917 52072 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-01-27 17:40:44.347135000 Z\n- &1 2021-01-28 00:49:10.052208000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-29 19:07:32.315559395 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118892\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116642\n mask_addr: 4294967295\nsign_in_count:\n- 457\n- 458\n 916 \N 187.149.48.98 d6d8c952-aa37-4d62-b5d7-027cba157daf 2021-01-29 19:07:32.326023 52073 1 User \N \N 1 User \N update ---\nunique_session_id:\n- yE_psDs4gVJzZ1yzosGd\n- si_-qgHqn1mAA6bWfeMA\n 917 \N 187.149.48.98 d6d8c952-aa37-4d62-b5d7-027cba157daf 2021-01-29 19:07:32.349743 52074 2450 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.48.98 45069f40-a975-4ce2-a3c5-1fcf6b157044 2021-01-29 19:08:18.041665 52075 2446 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.48.98 d3cd26ce-2a63-4f8a-8e2f-416c6c08d635 2021-01-29 19:08:46.719198 52076 813 Transfer \N \N 1 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2021-01-29\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.48.98 d0075575-49d0-4b25-87db-77045aeeb739 2021-01-29 19:08:58.797032 52077 813 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-01-29\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.48.98 eb321453-d986-4879-90c5-abee67a1cf28 2021-01-29 19:13:04.037192 52078 2695 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1437\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.48.98 eb321453-d986-4879-90c5-abee67a1cf28 2021-01-29 19:13:04.063138 52079 2696 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1440\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.48.98 eb321453-d986-4879-90c5-abee67a1cf28 2021-01-29 19:13:04.096449 52080 4138 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1314\namount: !ruby/object:BigDecimal 18:0.318E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.318E3\nstatus: 0\ndate_sale: 2021-01-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1952\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 3dc47371-f426-4af6-a258-247ddfa005e4 2021-01-29 19:13:41.217448 52081 2695 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.48.98 3dc47371-f426-4af6-a258-247ddfa005e4 2021-01-29 19:13:41.245621 52082 2696 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.48.98 3dc47371-f426-4af6-a258-247ddfa005e4 2021-01-29 19:13:41.267142 52083 4138 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 454838de-cab1-4c51-b172-cb8aba245da7 2021-01-29 19:13:45.934216 52084 5414 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1314\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.318E3\nmove_type: '1'\nsale_id: 4138\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1952\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.318E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1952 187.149.48.98 454838de-cab1-4c51-b172-cb8aba245da7 2021-01-29 19:13:45.958524 52085 4139 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1314\namount: !ruby/object:BigDecimal 18:0.469E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.189E3\ntotal: !ruby/object:BigDecimal 18:0.28E3\nstatus: 0\ndate_sale: 2021-01-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1953\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 c06806a7-ceb8-43e9-b202-863c48d1a058 2021-01-29 21:45:48.725196 52086 2555 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.48.98 c06806a7-ceb8-43e9-b202-863c48d1a058 2021-01-29 21:45:48.767358 52087 4139 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 5aeeb320-4226-4fe9-be6d-9a2c5e38d8ae 2021-01-29 21:45:54.804162 52088 5415 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1314\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.28E3\nmove_type: '1'\nsale_id: 4139\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1953\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.28E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1953 187.149.48.98 5aeeb320-4226-4fe9-be6d-9a2c5e38d8ae 2021-01-29 21:45:54.832004 52089 4140 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1314\namount: !ruby/object:BigDecimal 18:0.1055E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.399E3\ntotal: !ruby/object:BigDecimal 18:0.656E3\nstatus: 0\ndate_sale: 2021-01-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1954\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 2e6c3a8a-4ec0-4d4f-b159-6747f2d3685d 2021-01-29 22:22:14.540609 52090 1759 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 187.149.48.98 2e6c3a8a-4ec0-4d4f-b159-6747f2d3685d 2021-01-29 22:22:14.578772 52091 2132 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.48.98 2e6c3a8a-4ec0-4d4f-b159-6747f2d3685d 2021-01-29 22:22:14.609539 52092 1809 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 187.149.48.98 2e6c3a8a-4ec0-4d4f-b159-6747f2d3685d 2021-01-29 22:22:14.636712 52093 2526 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.2E1\n 5 \N 187.149.48.98 2e6c3a8a-4ec0-4d4f-b159-6747f2d3685d 2021-01-29 22:22:14.660749 52094 4140 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 3d0c20da-41cd-40ac-80bd-2426768ca4d7 2021-01-29 22:22:19.609183 52095 5416 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1314\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.656E3\nmove_type: '1'\nsale_id: 4140\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1954\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.656E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1954 187.149.48.98 3d0c20da-41cd-40ac-80bd-2426768ca4d7 2021-01-29 22:22:19.630462 52117 4143 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 4ce51b88-aa10-4b36-9fa1-51eca671994b 2021-01-29 23:52:16.837952 52096 390 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1314\nquantity: !ruby/object:BigDecimal 18:0.18E3\nstatus: 1\nobservations: 6 horas extras Rocío\nexpense_date: 2021-01-29\nexpense_code: PV1-E-268\n 1 Egreso por 180.0 registrado 187.149.48.98 a98cf92b-fe34-419d-8412-c49d742ebfd3 2021-01-29 22:32:49.076358 52097 5417 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1314\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.18E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 390\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.48.98 a98cf92b-fe34-419d-8412-c49d742ebfd3 2021-01-29 22:32:49.110643 52098 4141 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1314\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2021-01-29\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1955\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 41a53777-e62f-4947-a099-479116a081c3 2021-01-29 23:04:13.084528 52099 2374 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 41 \N 187.149.48.98 41a53777-e62f-4947-a099-479116a081c3 2021-01-29 23:04:13.114892 52100 4141 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 6aa7258a-1827-4a8a-a637-afd444994361 2021-01-29 23:05:00.176158 52101 5418 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1314\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 4141\ncardnumber: 395\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1955\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1955 187.149.48.98 6aa7258a-1827-4a8a-a637-afd444994361 2021-01-29 23:05:00.198853 52102 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-27 17:29:57.388364000 Z\n- &1 2021-01-29 01:30:42.442590000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-29 23:21:56.744916888 Z\nsign_in_count:\n- 402\n- 403\n 807 \N 189.186.132.86 cbf47b9d-0307-49a0-bb16-517ca6462f43 2021-01-29 23:21:56.775354 52103 21 User \N \N 21 User \N update ---\nunique_session_id:\n- vyu-6E-x8oHb1vKN6EX4\n- BKmu7yY8XsgzcuKwK_no\n 808 \N 189.186.132.86 cbf47b9d-0307-49a0-bb16-517ca6462f43 2021-01-29 23:21:56.798335 52104 1315 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.527E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 527.0 189.186.132.86 9785ff98-f467-44dc-96e0-24e53a7aa464 2021-01-29 23:22:10.43306 52105 4142 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1315\namount: !ruby/object:BigDecimal 18:0.1527E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.4952E3\ntotal: !ruby/object:BigDecimal 18:0.10318E4\nstatus: 0\ndate_sale: 2021-01-29\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1267\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 feedfda9-9862-4ffd-8b3d-18d4f40a9b95 2021-01-29 23:47:21.030088 52106 2588 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 4 \N 189.186.132.86 feedfda9-9862-4ffd-8b3d-18d4f40a9b95 2021-01-29 23:47:21.06143 52107 2271 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 189.186.132.86 feedfda9-9862-4ffd-8b3d-18d4f40a9b95 2021-01-29 23:47:21.092502 52108 2427 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.132.86 feedfda9-9862-4ffd-8b3d-18d4f40a9b95 2021-01-29 23:47:21.115512 52109 4142 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 19f7257e-c75e-4a4b-a601-0931956a00ba 2021-01-29 23:48:18.956289 52110 5419 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1315\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.10318E4\nmove_type: '1'\nsale_id: 4142\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1267\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.1682E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1267 189.186.132.86 19f7257e-c75e-4a4b-a601-0931956a00ba 2021-01-29 23:48:18.989769 52111 5420 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1315\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 4142\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1267\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.12E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1267 189.186.132.86 94a3c74f-c399-4357-beef-af9b0b35fab4 2021-01-29 23:48:19.07229 52112 5419 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1315\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.10318E4\nmove_type: '1'\nsale_id: 4142\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1267\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.1682E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.132.86 ed64ce7f-44fa-4c12-a1d2-1042962b9d81 2021-01-29 23:48:25.719293 52113 5420 CashRegistersMove \N \N 21 User \N destroy ---\nopen_cash_register_id: 1315\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.0\nmove_type: '1'\nsale_id: 4142\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1267\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.12E4\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 2 \N 189.186.132.86 9bd72057-f6e0-4435-bc20-5a0254090c49 2021-01-29 23:48:26.769225 52114 5421 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1315\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.10318E4\nmove_type: '1'\nsale_id: 4142\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1267\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E4\nchange: !ruby/object:BigDecimal 18:0.1682E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1267 189.186.132.86 d18539da-be73-4bf9-8d57-8d2b558a3736 2021-01-29 23:48:56.03437 52115 4143 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1315\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2021-01-29\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1268\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 ada6f8d5-ec35-4510-9fe8-961274817721 2021-01-29 23:51:37.835847 52118 5422 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1315\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.49E2\nmove_type: '1'\nsale_id: 4143\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1268\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E2\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1268 189.186.132.86 4ce51b88-aa10-4b36-9fa1-51eca671994b 2021-01-29 23:52:16.85773 52119 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-01-28 00:49:10.052208000 Z\n- &1 2021-01-29 19:07:32.315559000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-29 23:53:31.535019049 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118892\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116642\n mask_addr: 4294967295\nsign_in_count:\n- 458\n- 459\n 918 \N 187.149.48.98 19ada529-dfcd-41f2-b17e-ac4fb180b4a6 2021-01-29 23:53:31.544055 52120 1 User \N \N 1 User \N update ---\nunique_session_id:\n- si_-qgHqn1mAA6bWfeMA\n- Zix_Nqd5kLXgxBxtDY1L\n 919 \N 187.149.48.98 19ada529-dfcd-41f2-b17e-ac4fb180b4a6 2021-01-29 23:53:31.564008 52121 496 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 9 \N 187.149.48.98 704b4d17-5bd3-4e13-8ce1-4f93331a37c4 2021-01-30 00:45:45.497365 52122 496 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.0\n 10 \N 187.149.48.98 d2353241-8e96-44b3-9101-6755ab8f6f91 2021-01-30 00:45:52.759374 52123 814 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2021-01-29\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.48.98 02ac32fa-c9b5-46cc-a725-0c76c6314d83 2021-01-30 00:45:53.437314 52124 811 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-01-29\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.132.86 42217e41-99a3-436c-aef9-34e26893a981 2021-01-30 00:47:26.940293 52125 2379 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.4E1\n 10 \N 189.186.132.86 42217e41-99a3-436c-aef9-34e26893a981 2021-01-30 00:47:26.958034 52126 814 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-01-29\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.132.86 2df5ea76-892e-4b0a-b7b8-3f7cb7b0019b 2021-01-30 00:47:35.575075 52127 848 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.5E1\n 13 \N 189.186.132.86 2df5ea76-892e-4b0a-b7b8-3f7cb7b0019b 2021-01-30 00:47:35.59184 52128 4144 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1315\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.55E3\ntotal: !ruby/object:BigDecimal 18:0.449E3\nstatus: 0\ndate_sale: 2021-01-29\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1269\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 cc239ac4-5d24-4079-ac2b-d592a4e49cb8 2021-01-30 00:49:34.966959 52129 848 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 14 \N 189.186.132.86 cc239ac4-5d24-4079-ac2b-d592a4e49cb8 2021-01-30 00:49:34.995732 52130 4144 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 7c482e6b-e1ab-43b8-84ac-ec4e340f8af3 2021-01-30 00:50:13.912363 52131 5423 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1315\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.449E3\nmove_type: '1'\nsale_id: 4144\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1269\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.45E3\nchange: !ruby/object:BigDecimal 18:0.1E1\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1269 189.186.132.86 7c482e6b-e1ab-43b8-84ac-ec4e340f8af3 2021-01-30 00:50:13.932538 52132 1341 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1314\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3053E4\namount_out: !ruby/object:BigDecimal 18:0.18E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.892E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1892E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.48.98 cbcfeaf2-b2ba-4ff5-9b42-10971b963ad7 2021-01-30 01:48:11.922774 52133 1314 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.48.98 cbcfeaf2-b2ba-4ff5-9b42-10971b963ad7 2021-01-30 01:48:11.936829 52134 1342 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1315\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.15298E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.1056E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2056E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 254557f2-feaa-479a-a89f-7035dd018b2e 2021-01-30 02:00:47.934908 52135 1315 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 254557f2-feaa-479a-a89f-7035dd018b2e 2021-01-30 02:00:47.949792 52136 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-01-29 19:07:32.315559000 Z\n- &1 2021-01-29 23:53:31.535019000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-30 03:58:41.935918748 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116642\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3149814443\n mask_addr: 4294967295\nsign_in_count:\n- 459\n- 460\n 920 \N 187.190.90.171 46c0da88-8032-49d9-aa43-87144c0a2066 2021-01-30 03:58:41.974884 52137 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Zix_Nqd5kLXgxBxtDY1L\n- hsgC-7tuU9ZmsDSzTzER\n 921 \N 187.190.90.171 46c0da88-8032-49d9-aa43-87144c0a2066 2021-01-30 03:58:41.998889 52138 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-28 18:24:22.850880000 Z\n- &1 2021-01-29 18:36:22.007078000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-30 18:36:26.654304125 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147118892\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116642\n mask_addr: 4294967295\nsign_in_count:\n- 764\n- 765\n 1533 \N 187.149.48.98 0c505fca-3a09-4d6d-97e1-c11a3f66eea6 2021-01-30 18:36:26.68714 52139 2 User \N \N 2 User \N update ---\nunique_session_id:\n- hPTR-JVtGGe6PXZqjwtt\n- UTMEj55Ret5osK5VsnU6\n 1534 \N 187.149.48.98 0c505fca-3a09-4d6d-97e1-c11a3f66eea6 2021-01-30 18:36:26.712702 52162 4148 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1317\namount: !ruby/object:BigDecimal 18:0.149E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.149E3\nstatus: 0\ndate_sale: 2021-01-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1957\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 1d0462fd-db5d-45cb-9770-cc2aaa2fde5d 2021-01-31 00:52:32.87932 52140 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-28 07:49:25.982873000 Z\n- &1 2021-01-29 07:19:08.686101000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-30 19:18:16.196271850 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359947328\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359947268\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359947268\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535574\n mask_addr: 4294967295\nsign_in_count:\n- 2323\n- 2324\n 4648 \N 177.228.102.22 35f173cc-df05-44d1-a221-eb568c0ebd7a 2021-01-30 19:18:16.20447 52141 4 User \N \N 4 User \N update ---\nunique_session_id:\n- WFyHB2v18QgDuum29W-8\n- _ffLGfjRPVQs1x5d6z9x\n 4649 \N 177.228.102.22 35f173cc-df05-44d1-a221-eb568c0ebd7a 2021-01-30 19:18:16.224213 52142 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-29 01:30:42.442590000 Z\n- &1 2021-01-29 23:21:56.744916000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-30 21:15:38.624746852 Z\nsign_in_count:\n- 403\n- 404\n 809 \N 189.186.132.86 5ecc439e-340a-4800-9f99-3760a0fcbb6b 2021-01-30 21:15:38.631237 52143 21 User \N \N 21 User \N update ---\nunique_session_id:\n- BKmu7yY8XsgzcuKwK_no\n- pD_h-xev3o8Nm8wSRLzG\n 810 \N 189.186.132.86 5ecc439e-340a-4800-9f99-3760a0fcbb6b 2021-01-30 21:15:38.646222 52144 1316 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.1056E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 1056.0 189.186.132.86 c0ca23ad-e693-48d0-a6b1-04df04bdf3ff 2021-01-30 21:15:52.671155 52145 5424 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1316\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 4111\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1253 189.186.132.86 06262410-78a2-4843-a7ae-fa15308c0813 2021-01-30 21:21:10.354167 52146 4145 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1316\namount: !ruby/object:BigDecimal 18:0.4224E2\ntax: !ruby/object:BigDecimal 18:0.676E1\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.49E2\nstatus: 0\ndate_sale: 2021-01-30\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1270\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 37834e79-7f4b-43e5-882e-63e4744fbeb9 2021-01-30 22:06:41.690096 52147 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.23E2\n- !ruby/object:BigDecimal 18:0.22E2\n 39 \N 189.186.132.86 37834e79-7f4b-43e5-882e-63e4744fbeb9 2021-01-30 22:06:41.722374 52148 4145 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 1\n 2 Venta PV3-V-1270 cancelada. 189.186.132.86 92c14c7a-428a-4f03-8415-da6c1c5ec51f 2021-01-30 22:06:47.585972 52149 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.22E2\n- !ruby/object:BigDecimal 18:0.23E2\n 40 \N 189.186.132.86 92c14c7a-428a-4f03-8415-da6c1c5ec51f 2021-01-30 22:06:47.611303 52150 4146 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1316\namount: !ruby/object:BigDecimal 18:0.8448E2\ntax: !ruby/object:BigDecimal 18:0.1352E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.98E2\nstatus: 0\ndate_sale: 2021-01-30\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1271\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 1107535e-107b-4458-881d-d691f2b4f59e 2021-01-30 22:07:02.614297 52151 818 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.23E2\n- !ruby/object:BigDecimal 18:0.21E2\n 41 \N 189.186.132.86 1107535e-107b-4458-881d-d691f2b4f59e 2021-01-30 22:07:02.656941 52152 4146 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 5167f049-7e5d-40b7-adb2-ea2e3364ca54 2021-01-30 22:07:37.131227 52153 5425 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1316\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.98E2\nmove_type: '1'\nsale_id: 4146\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1271\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.98E2\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1271 189.186.132.86 5167f049-7e5d-40b7-adb2-ea2e3364ca54 2021-01-30 22:07:37.15617 52154 1317 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.892E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 892.0 187.149.48.98 79df88fe-5433-416e-92ef-684c0a3ae747 2021-01-30 22:12:26.050281 52155 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-01-29 23:53:31.535019000 Z\n- &1 2021-01-30 03:58:41.935918000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-30 22:16:32.453234335 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116642\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3149814443\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3149814443\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116642\n mask_addr: 4294967295\nsign_in_count:\n- 460\n- 461\n 922 \N 187.149.48.98 5b404cc3-70aa-4d53-a96f-735f35f2e431 2021-01-30 22:16:32.461916 52156 1 User \N \N 1 User \N update ---\nunique_session_id:\n- hsgC-7tuU9ZmsDSzTzER\n- UcPMzvcKxgwPs56pzx2_\n 923 \N 187.149.48.98 5b404cc3-70aa-4d53-a96f-735f35f2e431 2021-01-30 22:16:32.482522 52157 4147 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1317\namount: !ruby/object:BigDecimal 18:0.241883E4\ntax: !ruby/object:BigDecimal 18:0.17917E3\ndiscount: !ruby/object:BigDecimal 18:0.1299E4\ntotal: !ruby/object:BigDecimal 18:0.1299E4\nstatus: 0\ndate_sale: 2021-01-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1956\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 5446d90f-8520-4224-beb1-17587936d5aa 2021-01-30 22:37:56.759633 52158 1637 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 7 \N 187.149.48.98 5446d90f-8520-4224-beb1-17587936d5aa 2021-01-30 22:37:56.786194 52159 170 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.48.98 5446d90f-8520-4224-beb1-17587936d5aa 2021-01-30 22:37:56.8077 52160 4147 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 2bf6ec2c-33bb-410c-9a49-46a09fd3763e 2021-01-30 22:38:01.148873 52161 5426 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1317\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1299E4\nmove_type: '1'\nsale_id: 4147\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1956\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1299E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1956 187.149.48.98 2bf6ec2c-33bb-410c-9a49-46a09fd3763e 2021-01-30 22:38:01.178775 52235 1320 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.48.98 dbe73c6c-4edf-42f7-b699-2dbe6d32d3c0 2021-02-03 01:46:57.624781 52165 5427 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1317\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.149E3\nmove_type: '1'\nsale_id: 4148\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1957\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.149E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1957 187.149.48.98 bf3342ca-dade-489a-a2be-afeebf633097 2021-01-31 00:52:36.45482 52166 4149 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1317\namount: !ruby/object:BigDecimal 18:0.1399E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.419E3\ntotal: !ruby/object:BigDecimal 18:0.98E3\nstatus: 0\ndate_sale: 2021-01-30\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1958\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 cb72760f-fda7-4a52-9cdc-6a9044db5c7c 2021-01-31 01:01:33.837862 52167 1066 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 187.149.48.98 cb72760f-fda7-4a52-9cdc-6a9044db5c7c 2021-01-31 01:01:33.894458 52168 4149 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 9936fec9-8ccc-4f0a-9034-02fb6754a7d2 2021-01-31 01:02:01.547035 52169 5428 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1317\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.98E3\nmove_type: '1'\nsale_id: 4149\ncardnumber: 5059\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1958\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1958 187.149.48.98 9936fec9-8ccc-4f0a-9034-02fb6754a7d2 2021-01-31 01:02:01.5695 52170 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-01-30 03:58:41.935918000 Z\n- &1 2021-01-30 22:16:32.453234000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-01-31 01:09:31.083205790 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3149814443\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116642\n mask_addr: 4294967295\nsign_in_count:\n- 461\n- 462\n 924 \N 187.149.48.98 e2d4f216-1859-4c49-9f49-39bbb517d87b 2021-01-31 01:09:31.123235 52171 1 User \N \N 1 User \N update ---\nunique_session_id:\n- UcPMzvcKxgwPs56pzx2_\n- "-F9CwGYM_WGgkirYsqya"\n 925 \N 187.149.48.98 e2d4f216-1859-4c49-9f49-39bbb517d87b 2021-01-31 01:09:31.173579 52172 391 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1316\nquantity: !ruby/object:BigDecimal 18:0.13E4\nstatus: 1\nobservations: SUELDO NAYELI\nexpense_date: 2021-01-30\nexpense_code: PV3-E-61\n 1 Egreso por 1300.0 registrado 189.186.132.86 84584651-563d-4e50-a2b8-f3363f064427 2021-01-31 01:31:47.686624 52173 5429 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1316\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.13E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 391\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.132.86 84584651-563d-4e50-a2b8-f3363f064427 2021-01-31 01:31:47.71672 52174 1343 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1317\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2428E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E4\ncash_fund: !ruby/object:BigDecimal 18:0.84E3\nphysical_cash: !ruby/object:BigDecimal 18:0.234E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.48.98 8f4c836d-c666-40a9-bcc8-4035ae0a15a1 2021-01-31 01:45:42.003969 52175 1317 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.48.98 8f4c836d-c666-40a9-bcc8-4035ae0a15a1 2021-01-31 01:45:42.019471 52176 1344 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1316\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.698E3\namount_out: !ruby/object:BigDecimal 18:0.13E4\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.454E3\nphysical_cash: !ruby/object:BigDecimal 18:0.454E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 096ffaea-d852-4a1f-8ed3-3a1f684c9033 2021-01-31 01:52:33.44191 52177 1316 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 096ffaea-d852-4a1f-8ed3-3a1f684c9033 2021-01-31 01:52:33.459377 52178 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-01-30 22:16:32.453234000 Z\n- &1 2021-01-31 01:09:31.083205000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-01 17:34:07.082686620 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116642\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3149814443\n mask_addr: 4294967295\nsign_in_count:\n- 462\n- 463\n 926 \N 187.190.90.171 9c3f142c-84de-46bf-81ca-373b400aea87 2021-02-01 17:34:07.116036 52179 1 User \N \N 1 User \N update ---\nunique_session_id:\n- "-F9CwGYM_WGgkirYsqya"\n- E15Sy14AK4mSZb83MNqa\n 927 \N 187.190.90.171 9c3f142c-84de-46bf-81ca-373b400aea87 2021-02-01 17:34:07.143141 52180 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-29 07:19:08.686101000 Z\n- &1 2021-01-30 19:18:16.196271000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-01 22:41:00.011082079 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359947268\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535574\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535574\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535878\n mask_addr: 4294967295\nsign_in_count:\n- 2324\n- 2325\n 4650 \N 177.228.103.70 5ca8f76a-1d8d-45da-a3e1-44321f4c1e5e 2021-02-01 22:41:00.051136 52181 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _ffLGfjRPVQs1x5d6z9x\n- kgEcwsFeCGwFqQYjs3sE\n 4651 \N 177.228.103.70 5ca8f76a-1d8d-45da-a3e1-44321f4c1e5e 2021-02-01 22:41:00.079115 52182 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-29 23:21:56.744916000 Z\n- &1 2021-01-30 21:15:38.624746000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-01 22:50:09.243525172 Z\nsign_in_count:\n- 404\n- 405\n 811 \N 189.186.132.86 7e4fc847-ac29-4abd-8f2b-277d3251000d 2021-02-01 22:50:09.249011 52183 21 User \N \N 21 User \N update ---\nunique_session_id:\n- pD_h-xev3o8Nm8wSRLzG\n- QTw_D3nvx_AaztRhmf7p\n 812 \N 189.186.132.86 7e4fc847-ac29-4abd-8f2b-277d3251000d 2021-02-01 22:50:09.26291 52184 1318 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.454E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 454.0 189.186.132.86 baf31613-064d-4d5e-b069-f6895201256e 2021-02-01 22:51:13.97008 52185 1345 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1318\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.454E3\nphysical_cash: !ruby/object:BigDecimal 18:0.454E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 80c60f78-74b1-4a20-b8f8-1d9dc2312e1d 2021-02-01 22:51:45.224613 52186 1318 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 80c60f78-74b1-4a20-b8f8-1d9dc2312e1d 2021-02-01 22:51:45.237509 52187 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-01-31 01:09:31.083205000 Z\n- &1 2021-02-01 17:34:07.082686000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-02 00:11:51.707909904 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116642\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3149814443\n mask_addr: 4294967295\nsign_in_count:\n- 463\n- 464\n 928 \N 187.190.90.171 cdc0834e-11af-4784-b6fb-977ea68e2fbd 2021-02-02 00:11:51.714223 52188 1 User \N \N 1 User \N update ---\nunique_session_id:\n- E15Sy14AK4mSZb83MNqa\n- xXw9DbZTxyh-zAxis_zr\n 929 \N 187.190.90.171 cdc0834e-11af-4784-b6fb-977ea68e2fbd 2021-02-02 00:11:51.729701 52189 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-02-01 17:34:07.082686000 Z\n- &1 2021-02-02 00:11:51.707909000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-02 00:36:16.562019977 Z\nsign_in_count:\n- 464\n- 465\n 930 \N 187.190.90.171 ddff2939-be81-471b-b76a-e18d762ae73f 2021-02-02 00:36:16.567866 52190 1 User \N \N 1 User \N update ---\nunique_session_id:\n- xXw9DbZTxyh-zAxis_zr\n- GT1EM3g7haANskfyPazn\n 931 \N 187.190.90.171 ddff2939-be81-471b-b76a-e18d762ae73f 2021-02-02 00:36:16.58237 52191 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-01-30 21:15:38.624746000 Z\n- &1 2021-02-01 22:50:09.243525000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-02 17:14:23.441878733 Z\nsign_in_count:\n- 405\n- 406\n 813 \N 189.186.132.86 458048fc-a2a7-457d-a23a-1855552cf506 2021-02-02 17:14:23.48193 52192 21 User \N \N 21 User \N update ---\nunique_session_id:\n- QTw_D3nvx_AaztRhmf7p\n- 2vWXJz7CNkgm4RtqiHaD\n 814 \N 189.186.132.86 458048fc-a2a7-457d-a23a-1855552cf506 2021-02-02 17:14:23.514138 52193 1319 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.454E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 454.0 189.186.132.86 17521b00-d430-4955-af64-5cadc6310fe4 2021-02-02 17:14:44.909574 52194 4150 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1319\namount: !ruby/object:BigDecimal 18:0.1799E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1799E4\nstatus: 0\ndate_sale: 2021-02-02\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1272\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 c3b7e848-cd9a-426a-b715-79ff207342d9 2021-02-02 17:15:25.415292 52195 2680 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.132.86 c3b7e848-cd9a-426a-b715-79ff207342d9 2021-02-02 17:15:25.445232 52196 4150 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 6c095771-dbc5-45ba-bb52-afc959740c9f 2021-02-02 17:15:36.86589 52197 5430 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1319\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1799E4\nmove_type: '1'\nsale_id: 4150\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1272\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1799E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1272 189.186.132.86 6c095771-dbc5-45ba-bb52-afc959740c9f 2021-02-02 17:15:36.890615 52198 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-29 18:36:22.007078000 Z\n- &1 2021-01-30 18:36:26.654304000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-02 17:31:10.383839087 Z\nsign_in_count:\n- 765\n- 766\n 1535 \N 187.149.48.98 12ced812-1c75-406d-9976-1f5e24ae7d39 2021-02-02 17:31:10.389417 52199 2 User \N \N 2 User \N update ---\nunique_session_id:\n- UTMEj55Ret5osK5VsnU6\n- YuwDD3gURjjtSF2oSnSo\n 1536 \N 187.149.48.98 12ced812-1c75-406d-9976-1f5e24ae7d39 2021-02-02 17:31:10.403479 52200 1320 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.84E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 840.0 187.149.48.98 1b401b3c-2582-4ce4-866c-24b96d0e760d 2021-02-02 17:31:21.160973 52201 4151 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1320\namount: !ruby/object:BigDecimal 18:0.1138E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.469E3\ntotal: !ruby/object:BigDecimal 18:0.669E3\nstatus: 0\ndate_sale: 2021-02-02\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1959\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 88b606bf-ed68-440d-966f-da4690964863 2021-02-02 17:32:12.756564 52202 1857 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.48.98 88b606bf-ed68-440d-966f-da4690964863 2021-02-02 17:32:12.782771 52203 1630 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 8 \N 187.149.48.98 88b606bf-ed68-440d-966f-da4690964863 2021-02-02 17:32:12.813302 52204 4151 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 5ef6f559-86c1-4911-82cd-786252522ed9 2021-02-02 17:32:18.229269 52205 5431 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1320\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.669E3\nmove_type: '1'\nsale_id: 4151\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1959\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.669E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1959 187.149.48.98 5ef6f559-86c1-4911-82cd-786252522ed9 2021-02-02 17:32:18.258731 52206 5432 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1270\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 4038\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAM\n 1 \N 187.149.48.98 b9f78cee-9ae8-43e6-9cee-fc3d5dc8f29d 2021-02-02 18:17:09.028481 52207 4038 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.48.98 b9f78cee-9ae8-43e6-9cee-fc3d5dc8f29d 2021-02-02 18:17:09.051355 52208 5432 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 1270\n- 1320\n 2 movimiento de efectivo por venta con folio PV1-V-1910 187.149.48.98 b9f78cee-9ae8-43e6-9cee-fc3d5dc8f29d 2021-02-02 18:17:09.062522 52209 5433 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 901\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.2198E4\nmove_type: '1'\nsale_id: 2363\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SAM\n 1 \N 187.149.48.98 e1fe3360-1625-44f2-9393-cd92f4849551 2021-02-02 18:18:20.224367 52210 2363 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 e1fe3360-1625-44f2-9393-cd92f4849551 2021-02-02 18:18:20.246739 52211 2473 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 e1fe3360-1625-44f2-9393-cd92f4849551 2021-02-02 18:18:20.261951 52212 2479 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 e1fe3360-1625-44f2-9393-cd92f4849551 2021-02-02 18:18:20.275881 52213 5433 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 901\n- 1320\n 2 movimiento de efectivo por venta con folio PV1-V-1167 187.149.48.98 e1fe3360-1625-44f2-9393-cd92f4849551 2021-02-02 18:18:20.288515 52214 5434 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1304\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 4121\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1254'\n 1 \N 189.186.132.86 d3755fe5-4262-44ec-a101-ebeab7b3e079 2021-02-02 18:28:50.614158 52215 4121 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.132.86 d3755fe5-4262-44ec-a101-ebeab7b3e079 2021-02-02 18:28:50.656663 52216 5434 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 1304\n- 1319\n 2 movimiento de efectivo por venta con folio PV3-V-1258 189.186.132.86 d3755fe5-4262-44ec-a101-ebeab7b3e079 2021-02-02 18:28:50.68073 52217 44 ProductsReturn \N \N 2 User \N create ---\nsale_id: 4132\nuser_id: 2\nreturn_code: PV1-D-20\npointsale_id: 1\nnew_amount: !ruby/object:BigDecimal 18:0.1599E4\nreturned_amount: !ruby/object:BigDecimal 18:0.1499E4\ndifference_amount: !ruby/object:BigDecimal 18:0.1E3\nis_money_returned: false\n 1 devolución PV1-D-20 creada. 187.149.48.98 e97864d4-666b-4e5f-b5ad-b66e2617544c 2021-02-02 21:44:09.547738 52218 2286 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.48.98 e97864d4-666b-4e5f-b5ad-b66e2617544c 2021-02-02 21:44:09.576103 52219 2448 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 14 \N 187.149.48.98 e97864d4-666b-4e5f-b5ad-b66e2617544c 2021-02-02 21:44:09.601806 52220 5435 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1320\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1E3\nmove_type: '1'\nsale_id: 4132\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 5\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.1E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: 44\ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por devolución con folio PV1-D-20 187.149.48.98 124dc895-a082-48ec-a76a-2dc2aa905941 2021-02-02 21:44:15.891821 52221 4152 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1319\namount: !ruby/object:BigDecimal 18:0.899E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.3596E3\ntotal: !ruby/object:BigDecimal 18:0.5394E3\nstatus: 0\ndate_sale: 2021-02-02\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1273\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 09515ec1-1813-4b90-862f-12671636c9a6 2021-02-02 22:22:34.349157 52222 2582 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 16 \N 189.186.132.86 09515ec1-1813-4b90-862f-12671636c9a6 2021-02-02 22:22:34.37706 52223 4152 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 778385d5-ffb9-4a39-b9da-2edc02d1f137 2021-02-02 22:23:42.764651 52224 5436 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1319\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5394E3\nmove_type: '1'\nsale_id: 4152\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1273\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.55E3\nchange: !ruby/object:BigDecimal 18:0.106E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1273 189.186.132.86 778385d5-ffb9-4a39-b9da-2edc02d1f137 2021-02-02 22:23:42.78771 52225 392 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1319\nquantity: !ruby/object:BigDecimal 18:0.2E3\nstatus: 1\nobservations: LUCES\nexpense_date: 2021-02-02\nexpense_code: PV3-E-62\n 1 Egreso por 200.0 registrado 189.186.132.86 d56993c5-f7f3-4b65-9d1d-2d69caf4e5cd 2021-02-02 23:43:52.022865 52226 5437 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1319\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 392\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.132.86 d56993c5-f7f3-4b65-9d1d-2d69caf4e5cd 2021-02-02 23:43:52.043068 52227 495 Customer \N \N 21 User \N create ---\nnick_name: ANABEL RODRIGUEZ\nphone: "(667) 255-7599"\nemail: ''\ncredit: false\ncredit_limit: !ruby/object:BigDecimal 18:0.0\ntime_limit: 0\nnotes: ''\nstatus: 1\ncontact_id: \nis_public: 0\n 1 El cliente ANABEL RODRIGUEZ fue registrado. 189.186.132.86 84edc6ce-d098-40ba-840f-3a36309268b4 2021-02-03 01:18:06.548366 52228 4153 Sale \N \N 21 User \N create ---\ncustomer_id: 495\nuser_id: 21\nopen_cash_register_id: 1319\namount: !ruby/object:BigDecimal 18:0.1699E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1699E4\nstatus: 0\ndate_sale: 2021-02-02\nsaletype: 2\nseller_id: 14\nsale_code: PV3-V-1274\nexpiration_date: 2021-03-09\ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 1b7b953e-b9ab-4c97-8cab-552be883cc87 2021-02-03 01:18:21.149365 52229 2379 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 11 \N 189.186.132.86 1b7b953e-b9ab-4c97-8cab-552be883cc87 2021-02-03 01:18:21.176806 52230 5438 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1319\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 4153\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 6\nticket: PV3-V-1274\nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1274 189.186.132.86 c9b73916-5df1-4bb7-8066-6824308cf967 2021-02-03 01:18:28.243186 52231 4153 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.132.86 a2aa5ec1-32de-454f-8001-be47b411137e 2021-02-03 01:18:29.81863 52232 1346 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1319\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.31384E4\namount_out: !ruby/object:BigDecimal 18:0.2E3\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.21E4\ncash_fund: !ruby/object:BigDecimal 27:0.8924000000000001E3\nphysical_cash: !ruby/object:BigDecimal 18:0.29924E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 cd8e7451-b258-4a9d-a3a0-b5efdf70b575 2021-02-03 01:31:10.571041 52233 1319 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 cd8e7451-b258-4a9d-a3a0-b5efdf70b575 2021-02-03 01:31:10.592696 52234 1347 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1320\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3467E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.609E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1609E4\nobservations: se\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.48.98 dbe73c6c-4edf-42f7-b699-2dbe6d32d3c0 2021-02-03 01:46:57.610349 52236 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-01-30 18:36:26.654304000 Z\n- &1 2021-02-02 17:31:10.383839000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-03 19:02:36.698767718 Z\nsign_in_count:\n- 766\n- 767\n 1537 \N 187.149.48.98 eafba3ae-acdc-4de3-be3c-bb6e552e1d9c 2021-02-03 19:02:36.727642 52237 2 User \N \N 2 User \N update ---\nunique_session_id:\n- YuwDD3gURjjtSF2oSnSo\n- WM9H34WzCz8tXAsovDL3\n 1538 \N 187.149.48.98 eafba3ae-acdc-4de3-be3c-bb6e552e1d9c 2021-02-03 19:02:36.752424 52238 1321 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.609E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 609.0 187.149.48.98 a739aa75-288d-4f20-908b-373fc8eb9617 2021-02-03 19:13:51.246906 52239 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-02-01 22:50:09.243525000 Z\n- &1 2021-02-02 17:14:23.441878000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-03 19:14:27.319283820 Z\nsign_in_count:\n- 406\n- 407\n 815 \N 189.186.132.86 e38a0d66-bec5-44ae-8fb5-8d1d4acdd821 2021-02-03 19:14:27.329891 52240 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 2vWXJz7CNkgm4RtqiHaD\n- Bxr6qX_6cT_435VmfDC6\n 816 \N 189.186.132.86 e38a0d66-bec5-44ae-8fb5-8d1d4acdd821 2021-02-03 19:14:27.351251 52241 4154 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1321\namount: !ruby/object:BigDecimal 18:0.87038E3\ntax: !ruby/object:BigDecimal 18:0.7862E2\ndiscount: !ruby/object:BigDecimal 18:0.379E3\ntotal: !ruby/object:BigDecimal 18:0.57E3\nstatus: 0\ndate_sale: 2021-02-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1960\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 0968453b-4a70-445a-be32-59e38e9b797c 2021-02-03 19:15:48.260757 52242 1008 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 187.149.48.98 0968453b-4a70-445a-be32-59e38e9b797c 2021-02-03 19:15:48.289022 52243 4154 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 d1d17f8d-d828-4525-ba6a-d3abbc55971d 2021-02-03 19:15:52.338494 52244 5439 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1321\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.57E3\nmove_type: '1'\nsale_id: 4154\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1960\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.57E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1960 187.149.48.98 d1d17f8d-d828-4525-ba6a-d3abbc55971d 2021-02-03 19:15:52.360146 52245 1322 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.8924E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 892.4 189.186.132.86 2cf1fe66-2fb2-4735-9947-0faed88ab056 2021-02-03 20:13:44.062164 52246 4155 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1322\namount: !ruby/object:BigDecimal 18:0.1199E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.4796E3\ntotal: !ruby/object:BigDecimal 18:0.7194E3\nstatus: 0\ndate_sale: 2021-02-03\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1275\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 5c11bfb1-acf1-4cd4-b3d3-3595743bdc38 2021-02-03 20:30:49.322747 52247 2580 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 4 \N 189.186.132.86 5c11bfb1-acf1-4cd4-b3d3-3595743bdc38 2021-02-03 20:30:49.353723 52248 4155 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 cac206e6-15e5-4141-af5d-05a1c75b8077 2021-02-03 20:31:21.872039 52249 5440 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1322\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.7194E3\nmove_type: '1'\nsale_id: 4155\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1275\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.75E3\nchange: !ruby/object:BigDecimal 18:0.306E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1275 189.186.132.86 cac206e6-15e5-4141-af5d-05a1c75b8077 2021-02-03 20:31:21.901621 52250 4156 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1321\namount: !ruby/object:BigDecimal 18:0.1748E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.799E3\ntotal: !ruby/object:BigDecimal 18:0.949E3\nstatus: 0\ndate_sale: 2021-02-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1961\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 9723a312-d932-4502-ace3-9a8587b87476 2021-02-03 21:15:38.927005 52251 1067 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 15 \N 187.149.48.98 9723a312-d932-4502-ace3-9a8587b87476 2021-02-03 21:15:38.954142 52252 1380 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 187.149.48.98 9723a312-d932-4502-ace3-9a8587b87476 2021-02-03 21:15:38.976892 52253 4156 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 cca6192a-3a0b-48c5-a311-6dd4e6872f66 2021-02-03 21:15:42.670103 52254 5441 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1321\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.949E3\nmove_type: '1'\nsale_id: 4156\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1961\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.949E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1961 187.149.48.98 cca6192a-3a0b-48c5-a311-6dd4e6872f66 2021-02-03 21:15:42.690222 52255 5442 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1321\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 4127\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 4\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.4E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1946 187.149.48.98 cf99bc63-af80-420c-a53a-11352adea003 2021-02-03 21:30:55.079723 52256 4157 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1322\namount: !ruby/object:BigDecimal 18:0.1499E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.1499E4\nstatus: 0\ndate_sale: 2021-02-03\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1276\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 f6f659df-7b55-46e5-a1cb-6518dff7959f 2021-02-03 21:43:25.278537 52257 2364 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.132.86 f6f659df-7b55-46e5-a1cb-6518dff7959f 2021-02-03 21:43:25.326845 52258 4157 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 06d7960f-ed1d-4ba9-a8be-772ed7675277 2021-02-03 21:44:35.436439 52444 3579 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 187.149.48.98 955f0e6b-a09d-4bde-9c43-510db89308a4 2021-02-11 01:04:11.882916 52259 5443 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1322\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.1499E4\nmove_type: '1'\nsale_id: 4157\ncardnumber: 1245\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1276\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1276 189.186.132.86 06d7960f-ed1d-4ba9-a8be-772ed7675277 2021-02-03 21:44:35.460443 52260 4158 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1321\namount: !ruby/object:BigDecimal 18:0.47831E3\ntax: !ruby/object:BigDecimal 18:0.2069E2\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.15E3\nstatus: 0\ndate_sale: 2021-02-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1962\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 34ca9532-8350-4dd9-93a5-3a72000be4b7 2021-02-03 23:30:10.269761 52261 1563 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.48.98 34ca9532-8350-4dd9-93a5-3a72000be4b7 2021-02-03 23:30:10.321127 52262 4158 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 183bcdb3-ac30-470d-ac2a-dee1705fa05f 2021-02-03 23:30:14.896798 52263 5444 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1321\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.15E3\nmove_type: '1'\nsale_id: 4158\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1962\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1962 187.149.48.98 183bcdb3-ac30-470d-ac2a-dee1705fa05f 2021-02-03 23:30:14.931619 52264 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-01-30 19:18:16.196271000 Z\n- &1 2021-02-01 22:41:00.011082000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-04 00:01:22.415243094 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535574\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535878\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535878\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535718\n mask_addr: 4294967295\nsign_in_count:\n- 2325\n- 2326\n 4652 \N 177.228.102.166 c83f2b1f-332b-4bb5-8b28-5a649edf01f4 2021-02-04 00:01:22.42547 52265 4 User \N \N 4 User \N update ---\nunique_session_id:\n- kgEcwsFeCGwFqQYjs3sE\n- 7muTXLXxE3jVkka7BgK_\n 4653 \N 177.228.102.166 c83f2b1f-332b-4bb5-8b28-5a649edf01f4 2021-02-04 00:01:22.446337 52266 4159 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1321\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.239E3\ntotal: !ruby/object:BigDecimal 18:0.36E3\nstatus: 0\ndate_sale: 2021-02-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1963\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 e8b3a3aa-fcd5-44fd-ad59-69694a4833c6 2021-02-04 00:06:52.809541 52267 1241 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 19 \N 187.149.48.98 e8b3a3aa-fcd5-44fd-ad59-69694a4833c6 2021-02-04 00:06:52.846142 52268 4159 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 2fc71427-afc7-444a-b9cd-9520c05fb6e2 2021-02-04 00:06:57.401564 52269 5445 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1321\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.36E3\nmove_type: '1'\nsale_id: 4159\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1963\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.36E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1963 187.149.48.98 2fc71427-afc7-444a-b9cd-9520c05fb6e2 2021-02-04 00:06:57.423855 52270 393 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1321\nquantity: !ruby/object:BigDecimal 18:0.297E3\nstatus: 1\nobservations: agua japac $282 $15 comision oxxo\nexpense_date: 2021-02-03\nexpense_code: PV1-E-269\n 1 Egreso por 297.0 registrado 187.149.48.98 ad77735c-9612-4ce8-a808-4ff6974cbaf6 2021-02-04 00:46:36.083717 52271 5446 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1321\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.297E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 393\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.48.98 ad77735c-9612-4ce8-a808-4ff6974cbaf6 2021-02-04 00:46:36.119843 52272 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-02-02 00:11:51.707909000 Z\n- &1 2021-02-02 00:36:16.562019000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-04 00:47:52.374051570 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3149814443\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116642\n mask_addr: 4294967295\nsign_in_count:\n- 465\n- 466\n 932 \N 187.149.48.98 a6d13f73-d247-4ab0-944c-6f1990c1565a 2021-02-04 00:47:52.381817 52273 1 User \N \N 1 User \N update ---\nunique_session_id:\n- GT1EM3g7haANskfyPazn\n- fW19Gx8XbLN42fszvpUC\n 933 \N 187.149.48.98 a6d13f73-d247-4ab0-944c-6f1990c1565a 2021-02-04 00:47:52.398327 52274 815 Transfer \N \N 1 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2021-02-03\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.48.98 20e5958b-a661-432f-9071-75c3b988c244 2021-02-04 00:49:35.001433 52275 815 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-02-03\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.48.98 9198f586-c5b7-4073-86c1-df8da79ce3f8 2021-02-04 00:50:09.99894 52276 1600 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.48.98 9198f586-c5b7-4073-86c1-df8da79ce3f8 2021-02-04 00:50:10.038123 52277 4160 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1321\namount: !ruby/object:BigDecimal 18:0.479E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.329E3\ntotal: !ruby/object:BigDecimal 18:0.15E3\nstatus: 0\ndate_sale: 2021-02-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1964\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 33e2c11e-f1bd-42c3-babb-35ba952a8660 2021-02-04 00:51:06.02838 52278 1600 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 187.149.48.98 33e2c11e-f1bd-42c3-babb-35ba952a8660 2021-02-04 00:51:06.063305 52279 4160 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 25165858-8abc-476c-a2bb-e69ef0d1b02b 2021-02-04 00:51:10.202267 52445 5468 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 1162\n- 1330\n 2 movimiento de efectivo por venta con folio PV1-V-1608 187.149.48.98 955f0e6b-a09d-4bde-9c43-510db89308a4 2021-02-11 01:04:11.894344 52280 5447 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1321\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.15E3\nmove_type: '1'\nsale_id: 4160\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1964\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1964 187.149.48.98 25165858-8abc-476c-a2bb-e69ef0d1b02b 2021-02-04 00:51:10.233552 52281 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-02-02 00:36:16.562019000 Z\n- &1 2021-02-04 00:47:52.374051000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-04 00:52:10.707077092 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3149814443\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116642\n mask_addr: 4294967295\nsign_in_count:\n- 466\n- 467\n 934 \N 187.149.48.98 87482fe6-debb-4a5f-bc7a-ffd89d3fde17 2021-02-04 00:52:10.714234 52282 1 User \N \N 1 User \N update ---\nunique_session_id:\n- fW19Gx8XbLN42fszvpUC\n- o15Pu-Nx2M7kPzKDteHV\n 935 \N 187.149.48.98 87482fe6-debb-4a5f-bc7a-ffd89d3fde17 2021-02-04 00:52:10.730814 52283 394 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1322\nquantity: !ruby/object:BigDecimal 18:0.1E3\nstatus: 1\nobservations: NAYELI\nexpense_date: 2021-02-03\nexpense_code: PV3-E-63\n 1 Egreso por 100.0 registrado 189.186.132.86 5ee016cb-6319-48c5-972e-b009db546ec2 2021-02-04 01:51:05.82142 52284 5448 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1322\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 394\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.132.86 5ee016cb-6319-48c5-972e-b009db546ec2 2021-02-04 01:51:05.843748 52285 1348 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1321\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2579E4\namount_out: !ruby/object:BigDecimal 18:0.297E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.221E4\ncash_fund: !ruby/object:BigDecimal 18:0.681E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2891E4\nobservations: retire $1900 y $310 fueron de unos aretes pagados en terminal\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.48.98 858b364f-b213-4fe2-bf9a-457ad98c35f1 2021-02-04 01:52:19.153944 52286 1321 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.48.98 858b364f-b213-4fe2-bf9a-457ad98c35f1 2021-02-04 01:52:19.167732 52287 1349 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1322\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.22184E4\namount_out: !ruby/object:BigDecimal 18:0.1E3\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.1E4\ncash_fund: !ruby/object:BigDecimal 18:0.511E3\nphysical_cash: !ruby/object:BigDecimal 18:0.1511E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 4f5c6d97-6f8c-4cd2-b60d-3b3cd4bd1609 2021-02-04 01:55:18.517638 52288 1322 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 4f5c6d97-6f8c-4cd2-b60d-3b3cd4bd1609 2021-02-04 01:55:18.529554 52289 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-02-02 17:31:10.383839000 Z\n- &1 2021-02-03 19:02:36.698767000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-04 18:01:55.321811518 Z\nsign_in_count:\n- 767\n- 768\n 1539 \N 187.149.48.98 656242d5-a0fa-45bb-8a99-d3624405e4ae 2021-02-04 18:01:55.351192 52290 2 User \N \N 2 User \N update ---\nunique_session_id:\n- WM9H34WzCz8tXAsovDL3\n- QQBrigbivUBXYgi9F6y1\n 1540 \N 187.149.48.98 656242d5-a0fa-45bb-8a99-d3624405e4ae 2021-02-04 18:01:55.374128 52291 1323 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.681E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 681.0 187.149.48.98 a83becfb-364d-4b43-96f8-ca0ee25919d9 2021-02-04 18:02:08.514693 52292 4161 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1323\namount: !ruby/object:BigDecimal 18:0.675E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.525E3\ntotal: !ruby/object:BigDecimal 18:0.15E3\nstatus: 0\ndate_sale: 2021-02-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1965\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 95783bac-c94c-42b7-9570-a30b33991172 2021-02-04 18:03:00.482072 52293 1935 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 2 \N 187.149.48.98 95783bac-c94c-42b7-9570-a30b33991172 2021-02-04 18:03:00.521927 52294 4161 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 bb70009f-ed66-4e51-8879-838f77799ed0 2021-02-04 18:03:06.717556 52295 5449 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1323\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.15E3\nmove_type: '1'\nsale_id: 4161\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1965\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1965 187.149.48.98 bb70009f-ed66-4e51-8879-838f77799ed0 2021-02-04 18:03:06.743705 52296 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-02-02 17:14:23.441878000 Z\n- &1 2021-02-03 19:14:27.319283000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-04 19:55:33.385137275 Z\nsign_in_count:\n- 407\n- 408\n 817 \N 189.186.132.86 1100b86a-f594-42ec-9b7f-0b97e6242591 2021-02-04 19:55:33.391998 52297 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Bxr6qX_6cT_435VmfDC6\n- HDqN4-6Vzx18wzWC_MRo\n 818 \N 189.186.132.86 1100b86a-f594-42ec-9b7f-0b97e6242591 2021-02-04 19:55:33.407957 52298 1324 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.511E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 511.0 189.186.132.86 95e137b0-6129-4a72-818b-0c8745d74e98 2021-02-04 19:55:52.235283 52299 2135 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 187.149.48.98 f58b8c6c-b67f-4a5b-93e2-19650275f2d7 2021-02-04 20:23:45.304972 52300 816 Transfer \N \N 2 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2021-02-04\nuser_id: 2\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 187.149.48.98 ecbcf9a3-49ea-43e5-9e1f-54a67e10f27b 2021-02-04 20:23:54.228304 52301 816 Transfer \N \N 21 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 21\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-02-04\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.132.86 c3300686-9b9b-45c6-b4b0-5f85dc0f2570 2021-02-04 20:51:49.11382 52302 2110 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 8 \N 189.186.132.86 c3300686-9b9b-45c6-b4b0-5f85dc0f2570 2021-02-04 20:51:49.139116 52702 4 User \N \N 4 User \N update ---\nunique_session_id:\n- svwdKoZsLsdwzHqUsJso\n- P5vD3Tzqb-MFRbk4CDo3\n 4687 \N 189.186.112.255 c28758ba-077d-4d7d-b458-56feefec7e97 2021-03-05 23:09:32.318836 52303 4162 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1324\namount: !ruby/object:BigDecimal 18:0.149E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.149E3\nstatus: 0\ndate_sale: 2021-02-04\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1277\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 b115ada9-69f9-4e75-a1b3-b398855bdd3f 2021-02-04 20:53:48.408767 52304 2110 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 9 \N 189.186.132.86 b115ada9-69f9-4e75-a1b3-b398855bdd3f 2021-02-04 20:53:48.438073 52305 4162 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 68085516-1fe2-4ca8-bb73-7fad6406bc19 2021-02-04 20:53:52.537948 52306 5450 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1324\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.149E3\nmove_type: '1'\nsale_id: 4162\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1277\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.2E3\nchange: !ruby/object:BigDecimal 18:0.51E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1277 189.186.132.86 68085516-1fe2-4ca8-bb73-7fad6406bc19 2021-02-04 20:53:52.559817 52307 1615 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.132.86 db0f49cd-c104-43a0-b2e5-82517be633cd 2021-02-04 20:56:59.030104 52308 817 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2021-02-04\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.132.86 501db846-4ecc-4edb-8400-68c0947853b7 2021-02-04 20:57:01.639194 52309 817 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-02-04\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.48.98 c43d4363-6c16-4370-be76-711b6962fee0 2021-02-04 20:57:44.629692 52310 2697 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 310\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.48.98 c43d4363-6c16-4370-be76-711b6962fee0 2021-02-04 20:57:44.649658 52311 4163 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1323\namount: !ruby/object:BigDecimal 18:0.67831E3\ntax: !ruby/object:BigDecimal 18:0.2069E2\ndiscount: !ruby/object:BigDecimal 18:0.549E3\ntotal: !ruby/object:BigDecimal 18:0.15E3\nstatus: 0\ndate_sale: 2021-02-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1966\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 5b665201-81ee-4f4a-994a-c1b61aa272d7 2021-02-04 20:58:36.859679 52312 2697 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.48.98 5b665201-81ee-4f4a-994a-c1b61aa272d7 2021-02-04 20:58:36.897733 52313 4163 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 f3b6f1ed-9473-4d99-a1b8-c775364006c5 2021-02-04 20:58:40.824866 52314 5451 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1323\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.15E3\nmove_type: '1'\nsale_id: 4163\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1966\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1966 187.149.48.98 f3b6f1ed-9473-4d99-a1b8-c775364006c5 2021-02-04 20:58:40.85341 52315 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-02-03 19:14:27.319283000 Z\n- &1 2021-02-04 19:55:33.385137000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-04 23:02:39.743481724 Z\nsign_in_count:\n- 408\n- 409\n 819 \N 189.186.132.86 63dc4f90-4c27-4302-a7c0-f09f0c92e781 2021-02-04 23:02:39.754411 52316 21 User \N \N 21 User \N update ---\nunique_session_id:\n- HDqN4-6Vzx18wzWC_MRo\n- Bk8sVYosgxXgWXL_-w9u\n 820 \N 189.186.132.86 63dc4f90-4c27-4302-a7c0-f09f0c92e781 2021-02-04 23:02:39.774104 52317 4164 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1323\namount: !ruby/object:BigDecimal 18:0.95662E3\ntax: !ruby/object:BigDecimal 18:0.4138E2\ndiscount: !ruby/object:BigDecimal 18:0.698E3\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2021-02-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1967\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 7fc4aaa2-f770-4e72-9dad-3a091421f41a 2021-02-04 23:35:47.840418 52318 1563 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.48.98 7fc4aaa2-f770-4e72-9dad-3a091421f41a 2021-02-04 23:35:47.870403 52319 5 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.5E1\n- !ruby/object:BigDecimal 18:0.4E1\n 8 \N 187.149.48.98 7fc4aaa2-f770-4e72-9dad-3a091421f41a 2021-02-04 23:35:47.894838 52320 4164 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 a1adea20-9b80-4b09-81f5-6e4c9662c8df 2021-02-04 23:35:56.423078 52321 5452 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1323\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 4164\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1967\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1967 187.149.48.98 a1adea20-9b80-4b09-81f5-6e4c9662c8df 2021-02-04 23:35:56.474525 52322 4165 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1323\namount: !ruby/object:BigDecimal 18:0.260462E4\ntax: !ruby/object:BigDecimal 18:0.4138E2\ndiscount: !ruby/object:BigDecimal 18:0.2046E4\ntotal: !ruby/object:BigDecimal 18:0.6E3\nstatus: 0\ndate_sale: 2021-02-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1968\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 446338be-6c93-4889-ad26-ade041075814 2021-02-04 23:42:55.063756 52323 5 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.4E1\n- !ruby/object:BigDecimal 18:0.3E1\n 9 \N 187.149.48.98 446338be-6c93-4889-ad26-ade041075814 2021-02-04 23:42:55.09188 52324 1563 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 187.149.48.98 446338be-6c93-4889-ad26-ade041075814 2021-02-04 23:42:55.116765 52325 611 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.48.98 446338be-6c93-4889-ad26-ade041075814 2021-02-04 23:42:55.141361 52326 711 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 9 \N 187.149.48.98 446338be-6c93-4889-ad26-ade041075814 2021-02-04 23:42:55.163123 52327 4165 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 a5e4e124-9e2a-47c8-89dc-53ebf80b5459 2021-02-04 23:42:59.24438 52328 5453 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1323\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.6E3\nmove_type: '1'\nsale_id: 4165\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1968\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1968 187.149.48.98 a5e4e124-9e2a-47c8-89dc-53ebf80b5459 2021-02-04 23:42:59.265049 52329 4166 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1323\namount: !ruby/object:BigDecimal 18:0.122731E4\ntax: !ruby/object:BigDecimal 18:0.2069E2\ndiscount: !ruby/object:BigDecimal 18:0.948E3\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2021-02-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1969\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 aed497b8-2ae0-4a19-ac60-e0e7c8ba28ff 2021-02-04 23:43:58.39644 52330 5 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 187.149.48.98 aed497b8-2ae0-4a19-ac60-e0e7c8ba28ff 2021-02-04 23:43:58.423376 52331 711 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.48.98 aed497b8-2ae0-4a19-ac60-e0e7c8ba28ff 2021-02-04 23:43:58.445175 52332 4166 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 ea90ee8c-e453-4bb9-9a07-364524bcbb48 2021-02-04 23:44:02.799906 52333 5454 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1323\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 4166\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1969\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1969 187.149.48.98 ea90ee8c-e453-4bb9-9a07-364524bcbb48 2021-02-04 23:44:02.819498 52334 4167 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1323\namount: !ruby/object:BigDecimal 18:0.889E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.539E3\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2021-02-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1970\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 d0121839-dccf-4708-a815-5238efd6c75c 2021-02-04 23:46:50.666979 52335 478 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.48.98 d0121839-dccf-4708-a815-5238efd6c75c 2021-02-04 23:46:50.698326 52336 4167 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 d2e9ab6a-330c-4fee-b09b-ad110f46f537 2021-02-04 23:46:58.020275 52337 5455 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1323\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.35E3\nmove_type: '1'\nsale_id: 4167\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1970\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1970 187.149.48.98 d2e9ab6a-330c-4fee-b09b-ad110f46f537 2021-02-04 23:46:58.043579 52338 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-02-04 00:47:52.374051000 Z\n- &1 2021-02-04 00:52:10.707077000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-04 23:50:38.372663757 Z\nsign_in_count:\n- 467\n- 468\n 936 \N 187.149.48.98 a3d9e040-9785-4b71-9004-80017a57f2ca 2021-02-04 23:50:38.378392 52339 1 User \N \N 1 User \N update ---\nunique_session_id:\n- o15Pu-Nx2M7kPzKDteHV\n- x4sDyukCXHUTTsPzUnpd\n 937 \N 187.149.48.98 a3d9e040-9785-4b71-9004-80017a57f2ca 2021-02-04 23:50:38.393014 52340 818 Transfer \N \N 1 User \N create ---\norigin_id: 1\ndestiny_id: 1\ntransfer_date: 2021-02-04\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 0\ndestiny_is_pointsale: 1\n 1 Traspaso de Almacen central a SUO creado. 187.149.48.98 c0962d88-094a-4ca4-96d1-b4feea22cb8f 2021-02-04 23:51:15.069162 52341 818 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-02-04\n 2 Se dio entrada a traspaso de Almacen central a SUO 187.149.48.98 d3761f64-b731-4bf1-ac39-779004e038a1 2021-02-04 23:51:48.273065 52342 2698 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 752\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.48.98 d3761f64-b731-4bf1-ac39-779004e038a1 2021-02-04 23:51:48.292268 52343 4168 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1323\namount: !ruby/object:BigDecimal 18:0.1129E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.452E3\ntotal: !ruby/object:BigDecimal 18:0.677E3\nstatus: 0\ndate_sale: 2021-02-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1971\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 f29f43f2-2ea6-4525-8d70-6ef9a9d8eff3 2021-02-04 23:53:18.34357 52344 2698 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.48.98 f29f43f2-2ea6-4525-8d70-6ef9a9d8eff3 2021-02-04 23:53:18.372052 52345 4168 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 204c595d-7d65-456f-b632-96897fca087f 2021-02-04 23:53:45.607958 52346 5456 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1323\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.677E3\nmove_type: '1'\nsale_id: 4168\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1971\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.677E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1971 187.149.48.98 204c595d-7d65-456f-b632-96897fca087f 2021-02-04 23:53:45.630247 52347 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-02-01 22:41:00.011082000 Z\n- &1 2021-02-04 00:01:22.415243000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-05 01:30:05.279362513 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535878\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535718\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535718\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934094\n mask_addr: 4294967295\nsign_in_count:\n- 2326\n- 2327\n 4654 \N 200.68.134.142 12b7f39b-05c3-4a27-8ad6-705248c0a755 2021-02-05 01:30:05.287482 52348 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 7muTXLXxE3jVkka7BgK_\n- mLuT1x_snyK-h2E6q4_Y\n 4655 \N 200.68.134.142 12b7f39b-05c3-4a27-8ad6-705248c0a755 2021-02-05 01:30:05.307388 52349 395 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1323\nquantity: !ruby/object:BigDecimal 18:0.2E3\nstatus: 1\nobservations: paqueteria\nexpense_date: 2021-02-04\nexpense_code: PV1-E-270\n 1 Egreso por 200.0 registrado 187.149.48.98 4750ef50-7783-43c1-8f45-bfc15ea3b410 2021-02-05 01:49:29.409506 52350 5457 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1323\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.2E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 395\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.48.98 4750ef50-7783-43c1-8f45-bfc15ea3b410 2021-02-05 01:49:29.434646 52351 1350 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1323\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.2527E4\namount_out: !ruby/object:BigDecimal 18:0.2E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.22E4\ncash_fund: !ruby/object:BigDecimal 18:0.808E3\nphysical_cash: !ruby/object:BigDecimal 18:0.3008E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.48.98 4ab4aa0d-2a6d-48fd-a971-773f1a688bf8 2021-02-05 01:53:15.99945 52352 1323 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.48.98 4ab4aa0d-2a6d-48fd-a971-773f1a688bf8 2021-02-05 01:53:16.0134 52353 1351 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1324\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.149E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.66E3\nphysical_cash: !ruby/object:BigDecimal 18:0.66E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 91904582-01d8-418f-8352-c072bcecd699 2021-02-05 02:14:21.4483 52354 1324 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 91904582-01d8-418f-8352-c072bcecd699 2021-02-05 02:14:21.465024 52355 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-02-04 00:01:22.415243000 Z\n- &1 2021-02-05 01:30:05.279362000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-05 18:57:19.030233801 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535718\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934094\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934094\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535718\n mask_addr: 4294967295\nsign_in_count:\n- 2327\n- 2328\n 4656 \N 177.228.102.166 d6a312ba-28a9-4398-9e1b-fd3576005029 2021-02-05 18:57:19.059442 52356 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mLuT1x_snyK-h2E6q4_Y\n- FjToTzY71-syFizifYp-\n 4657 \N 177.228.102.166 d6a312ba-28a9-4398-9e1b-fd3576005029 2021-02-05 18:57:19.086371 52357 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-02-05 01:30:05.279362000 Z\n- &1 2021-02-05 18:57:19.030233000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-05 22:48:03.174962293 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359934094\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535718\n mask_addr: 4294967295\nsign_in_count:\n- 2328\n- 2329\n 4658 \N 177.228.102.166 a9dace00-6459-431e-a462-f68f4f8accc3 2021-02-05 22:48:03.182364 52358 4 User \N \N 4 User \N update ---\nunique_session_id:\n- FjToTzY71-syFizifYp-\n- J2EbiTBfgGM9DUT4Xt9G\n 4659 \N 177.228.102.166 a9dace00-6459-431e-a462-f68f4f8accc3 2021-02-05 22:48:03.202133 52359 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-02-05 18:57:19.030233000 Z\n- &1 2021-02-05 22:48:03.174962000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-06 17:01:22.344074094 Z\nsign_in_count:\n- 2329\n- 2330\n 4660 \N 177.228.102.166 6eba4b9c-5056-4472-a6cf-d65941699e13 2021-02-06 17:01:22.373795 52360 4 User \N \N 4 User \N update ---\nunique_session_id:\n- J2EbiTBfgGM9DUT4Xt9G\n- JRGpD33SHs4447RFtSzV\n 4661 \N 177.228.102.166 6eba4b9c-5056-4472-a6cf-d65941699e13 2021-02-06 17:01:22.401165 52361 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-02-03 19:02:36.698767000 Z\n- &1 2021-02-04 18:01:55.321811000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-06 17:55:16.109131753 Z\nsign_in_count:\n- 768\n- 769\n 1541 \N 187.149.48.98 8853a86b-2757-475e-b5e1-49e63e74cc7f 2021-02-06 17:55:16.115293 52362 2 User \N \N 2 User \N update ---\nunique_session_id:\n- QQBrigbivUBXYgi9F6y1\n- Y8PsF1SrB_Rk6DyjJLgm\n 1542 \N 187.149.48.98 8853a86b-2757-475e-b5e1-49e63e74cc7f 2021-02-06 17:55:16.129182 52363 1325 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.808E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 808.0 187.149.48.98 7eb65466-2aa7-4ee8-b398-7bad2fdd6655 2021-02-06 18:12:17.911632 52364 4169 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1325\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.348E3\ntotal: !ruby/object:BigDecimal 18:0.521E3\nstatus: 0\ndate_sale: 2021-02-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1972\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 eed5a311-51e2-4e07-a486-bb58a61422b4 2021-02-06 18:20:15.029266 52365 1157 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 10 \N 187.149.48.98 eed5a311-51e2-4e07-a486-bb58a61422b4 2021-02-06 18:20:15.057981 52366 4169 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 a6aaedd0-652d-492e-802d-b390446a407a 2021-02-06 18:20:21.934372 52367 5458 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1325\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.521E3\nmove_type: '1'\nsale_id: 4169\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1972\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.521E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1972 187.149.48.98 a6aaedd0-652d-492e-802d-b390446a407a 2021-02-06 18:20:21.966801 52368 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-02-04 00:52:10.707077000 Z\n- &1 2021-02-04 23:50:38.372663000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-06 19:18:04.798672764 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116642\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938462\n mask_addr: 4294967295\nsign_in_count:\n- 468\n- 469\n 938 \N 200.68.151.158 d35d354a-63ac-4262-83ae-c520b18e511c 2021-02-06 19:18:04.80645 52369 1 User \N \N 1 User \N update ---\nunique_session_id:\n- x4sDyukCXHUTTsPzUnpd\n- 4cxUkuGtAn59wmE41Tmz\n 939 \N 200.68.151.158 d35d354a-63ac-4262-83ae-c520b18e511c 2021-02-06 19:18:04.822439 52370 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-02-04 19:55:33.385137000 Z\n- &1 2021-02-04 23:02:39.743481000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-06 20:45:35.692437972 Z\nsign_in_count:\n- 409\n- 410\n 821 \N 189.186.132.86 8b7f2c6f-29ae-4253-8f18-41cf1893c308 2021-02-06 20:45:35.70049 52371 21 User \N \N 21 User \N update ---\nunique_session_id:\n- Bk8sVYosgxXgWXL_-w9u\n- E1dsEUe545xeVJ8g9Yqz\n 822 \N 189.186.132.86 8b7f2c6f-29ae-4253-8f18-41cf1893c308 2021-02-06 20:45:35.716131 52372 1326 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.66E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 660.0 189.186.132.86 507a3293-83d0-4260-88f1-80aec5e1ac53 2021-02-06 20:47:53.87164 52373 4170 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1326\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.2796E3\ntotal: !ruby/object:BigDecimal 18:0.4194E3\nstatus: 0\ndate_sale: 2021-02-06\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1278\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 078f71d5-9ab6-43db-8eaf-a856d585979b 2021-02-06 20:48:21.580101 52374 1922 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.132.86 078f71d5-9ab6-43db-8eaf-a856d585979b 2021-02-06 20:48:21.611684 52375 4170 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 e8fed3db-831b-4d45-a14d-6256e05975df 2021-02-06 20:51:22.53023 52376 5459 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1326\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4194E3\nmove_type: '1'\nsale_id: 4170\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1278\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.42E3\nchange: !ruby/object:BigDecimal 18:0.6E0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1278 189.186.132.86 e8fed3db-831b-4d45-a14d-6256e05975df 2021-02-06 20:51:22.562595 52377 5460 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1326\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.6E3\nmove_type: '1'\nsale_id: 4111\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1253 189.186.132.86 752b9dcc-0051-4c4f-8407-2b535f61fb59 2021-02-06 21:10:30.198483 52378 4111 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.132.86 651ba0f5-0191-40d2-aa75-13e8c34fd57c 2021-02-06 21:10:31.997326 52379 4171 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1325\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.549E3\ntotal: !ruby/object:BigDecimal 18:0.15E3\nstatus: 0\ndate_sale: 2021-02-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1973\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 554dec18-5417-423c-9007-3649d915958f 2021-02-07 00:27:57.529639 52380 2630 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.48.98 554dec18-5417-423c-9007-3649d915958f 2021-02-07 00:27:57.561293 52381 4171 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 d74ec024-40aa-4286-ba71-6fb0d2b1e873 2021-02-07 00:28:05.76362 52382 5461 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1325\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.15E3\nmove_type: '1'\nsale_id: 4171\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1973\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1973 187.149.48.98 d74ec024-40aa-4286-ba71-6fb0d2b1e873 2021-02-07 00:28:05.798778 52383 4172 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1325\namount: !ruby/object:BigDecimal 18:0.211431E4\ntax: !ruby/object:BigDecimal 18:0.2069E2\ndiscount: !ruby/object:BigDecimal 18:0.1397E4\ntotal: !ruby/object:BigDecimal 18:0.738E3\nstatus: 0\ndate_sale: 2021-02-06\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1974\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 85d7d438-de80-4a9b-9c45-ee0cd7ca2751 2021-02-07 00:52:15.764175 52384 1888 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.48.98 85d7d438-de80-4a9b-9c45-ee0cd7ca2751 2021-02-07 00:52:15.818458 52385 2381 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.48.98 85d7d438-de80-4a9b-9c45-ee0cd7ca2751 2021-02-07 00:52:15.856839 52386 1936 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 5 \N 187.149.48.98 85d7d438-de80-4a9b-9c45-ee0cd7ca2751 2021-02-07 00:52:15.923765 52387 2630 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.48.98 85d7d438-de80-4a9b-9c45-ee0cd7ca2751 2021-02-07 00:52:15.946907 52388 2308 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 2 \N 187.149.48.98 85d7d438-de80-4a9b-9c45-ee0cd7ca2751 2021-02-07 00:52:15.969245 52389 4172 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 a02e5066-6834-4c82-a943-8be7178a2d45 2021-02-07 00:53:01.50104 52390 5462 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1325\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.738E3\nmove_type: '1'\nsale_id: 4172\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1974\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.738E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1974 187.149.48.98 a02e5066-6834-4c82-a943-8be7178a2d45 2021-02-07 00:53:01.53883 52391 1352 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1326\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.10194E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.1019E4\ncash_fund: !ruby/object:BigDecimal 18:0.0\nphysical_cash: !ruby/object:BigDecimal 18:0.1019E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 363117ad-5bc2-45db-a2bd-7fea246a8e31 2021-02-07 01:44:43.630173 52392 1326 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 363117ad-5bc2-45db-a2bd-7fea246a8e31 2021-02-07 01:44:43.650629 52393 396 Expense \N \N 2 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1325\nquantity: !ruby/object:BigDecimal 18:0.12E3\nstatus: 1\nobservations: 4 HORAS EXTRAS\nexpense_date: 2021-02-06\nexpense_code: PV1-E-271\n 1 Egreso por 120.0 registrado 187.149.48.98 65cb76f0-9c8b-4d92-a7f0-d52d7588b491 2021-02-07 01:52:48.406162 52394 5463 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1325\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.12E3\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 396\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.48.98 65cb76f0-9c8b-4d92-a7f0-d52d7588b491 2021-02-07 01:52:48.436001 52537 2700 AvailableProduct \N \N 4 User \N create ---\nproduct_id: 1571\npointsale_id: 3\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.0\nprice_sale: \nproducts_variant_id: \n 1 \N 189.186.132.86 12407d2f-bbd6-42f6-9433-aca2dcdfa5d3 2021-02-16 00:55:27.147008 52395 1353 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1325\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1409E4\namount_out: !ruby/object:BigDecimal 18:0.12E3\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.14E4\ncash_fund: !ruby/object:BigDecimal 18:0.886E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2286E4\nobservations: HAY 189 MAS DE UNOS ARETES QUE VENDI Y NO ESTABAN EN EL SISTEMA COD.\n ARE-0155\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.48.98 7e7461e3-ed90-49a5-9e22-fdd4e1583abe 2021-02-07 02:01:03.922391 52396 1325 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.48.98 7e7461e3-ed90-49a5-9e22-fdd4e1583abe 2021-02-07 02:01:03.937926 52397 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-02-05 22:48:03.174962000 Z\n- &1 2021-02-06 17:01:22.344074000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-08 04:29:25.705024433 Z\nsign_in_count:\n- 2330\n- 2331\n 4662 \N 177.228.102.166 01e358a0-f943-4a53-8fcc-10f12bae1d54 2021-02-08 04:29:25.732393 52398 4 User \N \N 4 User \N update ---\nunique_session_id:\n- JRGpD33SHs4447RFtSzV\n- PcyKs5gzZjMWZYnunftj\n 4663 \N 177.228.102.166 01e358a0-f943-4a53-8fcc-10f12bae1d54 2021-02-08 04:29:25.762495 52399 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-02-04 18:01:55.321811000 Z\n- &1 2021-02-06 17:55:16.109131000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-08 18:19:55.517678247 Z\nsign_in_count:\n- 769\n- 770\n 1543 \N 187.149.48.98 25d68380-f313-498b-bf8d-830e80f18865 2021-02-08 18:19:55.54486 52400 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Y8PsF1SrB_Rk6DyjJLgm\n- uwfXxzyi-UzTxiy_9yge\n 1544 \N 187.149.48.98 25d68380-f313-498b-bf8d-830e80f18865 2021-02-08 18:19:55.566607 52401 1327 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.886E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 886.0 187.149.48.98 e18a0ad4-5c77-4389-ac62-fdfede018620 2021-02-08 18:20:32.280856 52402 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-02-06 17:01:22.344074000 Z\n- &1 2021-02-08 04:29:25.705024000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-08 20:43:20.862371835 Z\nsign_in_count:\n- 2331\n- 2332\n 4664 \N 177.228.102.166 d9e44d5a-92e3-4f45-9e4b-577989dbbce0 2021-02-08 20:43:20.904186 52403 4 User \N \N 4 User \N update ---\nunique_session_id:\n- PcyKs5gzZjMWZYnunftj\n- AjjTQJjgJqwn5EsxHzU6\n 4665 \N 177.228.102.166 d9e44d5a-92e3-4f45-9e4b-577989dbbce0 2021-02-08 20:43:20.942967 52404 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-21 02:06:55.129136000 Z\n- &1 2021-01-22 02:34:50.881231000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-08 20:48:16.963782655 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535718\n mask_addr: 4294967295\nsign_in_count:\n- 493\n- 494\n 989 \N 177.228.102.166 175067d1-0a87-4cc3-bdeb-adfd6c5f8afd 2021-02-08 20:48:16.97118 52405 18 User \N \N 18 User \N update ---\nunique_session_id:\n- jsKcxveDwmjrxM2v8bqt\n- gzGfk3u-sxU1S6L_5T7D\n 990 \N 177.228.102.166 175067d1-0a87-4cc3-bdeb-adfd6c5f8afd 2021-02-08 20:48:16.989872 52406 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-02-04 23:02:39.743481000 Z\n- &1 2021-02-06 20:45:35.692437000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-08 21:43:35.439331700 Z\nsign_in_count:\n- 410\n- 411\n 823 \N 189.186.132.86 c5ecb363-0307-43eb-b309-105e85059f6d 2021-02-08 21:43:35.445924 52407 21 User \N \N 21 User \N update ---\nunique_session_id:\n- E1dsEUe545xeVJ8g9Yqz\n- 3YMwdPLEXKvB2CorCBD-\n 824 \N 189.186.132.86 c5ecb363-0307-43eb-b309-105e85059f6d 2021-02-08 21:43:35.465124 52408 1328 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.0\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 0.0 189.186.132.86 f52b6769-eab6-45c4-b2a1-ab8a8bb50822 2021-02-08 21:43:48.599256 52409 4173 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1328\namount: !ruby/object:BigDecimal 18:0.529E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.529E3\nstatus: 0\ndate_sale: 2021-02-08\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1279\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 ebb1cce7-f831-414a-81b8-971b12be71a9 2021-02-08 21:44:07.784 52410 2206 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 11 \N 189.186.132.86 ebb1cce7-f831-414a-81b8-971b12be71a9 2021-02-08 21:44:07.812096 52411 4173 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 d123be1c-f9e3-4a2a-83ff-04196541bf4b 2021-02-08 21:44:20.510719 52412 5464 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1328\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.529E3\nmove_type: '1'\nsale_id: 4173\ncardnumber: 4521\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1279\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1279 189.186.132.86 d123be1c-f9e3-4a2a-83ff-04196541bf4b 2021-02-08 21:44:20.535001 52413 1354 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1328\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.529E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.0\nphysical_cash: !ruby/object:BigDecimal 18:0.0\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 527809e6-fe51-4d3f-894e-b43792e231e2 2021-02-08 23:52:06.302943 52414 1328 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 527809e6-fe51-4d3f-894e-b43792e231e2 2021-02-08 23:52:06.322059 52415 1355 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1327\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.886E3\nphysical_cash: !ruby/object:BigDecimal 18:0.886E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.48.98 64e3b1ca-a3df-447b-b931-58cd6bb5e289 2021-02-09 01:43:33.404195 52416 1327 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.48.98 64e3b1ca-a3df-447b-b931-58cd6bb5e289 2021-02-09 01:43:33.424559 52417 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-02-06 17:55:16.109131000 Z\n- &1 2021-02-08 18:19:55.517678000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-09 18:03:12.435209487 Z\nsign_in_count:\n- 770\n- 771\n 1545 \N 187.149.48.98 ead8def8-de09-4378-930a-aa55fa3563ee 2021-02-09 18:03:12.46312 52418 2 User \N \N 2 User \N update ---\nunique_session_id:\n- uwfXxzyi-UzTxiy_9yge\n- A_M9seAnKJvRByKQH-BK\n 1546 \N 187.149.48.98 ead8def8-de09-4378-930a-aa55fa3563ee 2021-02-09 18:03:12.486025 52419 1329 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.886E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 886.0 187.149.48.98 7b809a1c-d890-476b-a70d-90d53caac027 2021-02-09 18:03:32.147239 52420 1356 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1329\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.1125E4\nphysical_cash: !ruby/object:BigDecimal 18:0.1125E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.48.98 76539008-4440-42e9-9b0c-78536d34a52f 2021-02-10 02:04:58.898544 52421 1329 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.48.98 76539008-4440-42e9-9b0c-78536d34a52f 2021-02-10 02:04:58.92058 52422 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-02-08 18:19:55.517678000 Z\n- &1 2021-02-09 18:03:12.435209000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-10 17:59:02.700317739 Z\nsign_in_count:\n- 771\n- 772\n 1547 \N 187.149.48.98 d3546e2c-ca7e-472f-81a0-bfef16a83ae3 2021-02-10 17:59:02.732078 52423 2 User \N \N 2 User \N update ---\nunique_session_id:\n- A_M9seAnKJvRByKQH-BK\n- _RsiGmbwWNDvRnFQNpxs\n 1548 \N 187.149.48.98 d3546e2c-ca7e-472f-81a0-bfef16a83ae3 2021-02-10 17:59:02.757865 52424 1330 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1125E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1125.0 187.149.48.98 5796c317-a3e8-4504-a1ed-b53db34cfa9b 2021-02-10 18:01:01.345002 52425 4174 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1330\namount: !ruby/object:BigDecimal 18:0.79831E3\ntax: !ruby/object:BigDecimal 18:0.2069E2\ndiscount: !ruby/object:BigDecimal 18:0.669E3\ntotal: !ruby/object:BigDecimal 18:0.15E3\nstatus: 0\ndate_sale: 2021-02-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1975\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 f809e2e0-39c7-44b3-a1d3-4522e441216c 2021-02-10 18:05:07.215237 52426 1882 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.48.98 f809e2e0-39c7-44b3-a1d3-4522e441216c 2021-02-10 18:05:07.242272 52427 4174 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 06916a74-178a-4518-b353-76e59f9aa4d6 2021-02-10 18:05:11.262425 52428 5465 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1330\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.15E3\nmove_type: '1'\nsale_id: 4174\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1975\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1975 187.149.48.98 06916a74-178a-4518-b353-76e59f9aa4d6 2021-02-10 18:05:11.285934 52429 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-02-06 20:45:35.692437000 Z\n- &1 2021-02-08 21:43:35.439331000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-10 23:17:43.831989965 Z\nsign_in_count:\n- 411\n- 412\n 825 \N 189.186.132.86 c75cd03a-8f91-443e-af71-ba14f5f25ce2 2021-02-10 23:17:43.859699 52430 21 User \N \N 21 User \N update ---\nunique_session_id:\n- 3YMwdPLEXKvB2CorCBD-\n- cyoajNyx5nd4VxyWq_k6\n 826 \N 189.186.132.86 c75cd03a-8f91-443e-af71-ba14f5f25ce2 2021-02-10 23:17:43.883488 52431 1331 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.0\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 0.0 189.186.132.86 b10af01e-4723-4841-a7e8-bd5bdae5a30b 2021-02-10 23:24:00.376948 52432 2436 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.132.86 08e7edd2-1c5e-4a9f-84bc-1f4a36c1b290 2021-02-10 23:27:43.504542 52433 819 Transfer \N \N 21 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2021-02-10\nuser_id: 21\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 189.186.132.86 ba8b6e97-dbc2-4b63-b69b-6c3e4509ac6a 2021-02-10 23:27:45.907048 52434 5466 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1330\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 4127\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.399E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1946 187.149.48.98 bf3f90ec-9bcf-4b41-b21d-bec6244427af 2021-02-10 23:33:17.907093 52435 4127 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.48.98 05e7c80b-69cf-4332-ad8c-ab9f0add2a66 2021-02-10 23:33:19.368063 52436 819 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-02-10\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.48.98 cd27704f-6b5b-416e-8932-b7016b79484c 2021-02-11 00:20:56.57605 52437 2699 AvailableProduct \N \N 2 User \N create ---\nproduct_id: 1427\npointsale_id: 1\nstock_min: !ruby/object:BigDecimal 18:0.0\nstock_max: !ruby/object:BigDecimal 18:0.0\nstock: !ruby/object:BigDecimal 18:0.1E1\nprice_sale: \nproducts_variant_id: \n 1 \N 187.149.48.98 cd27704f-6b5b-416e-8932-b7016b79484c 2021-02-11 00:20:56.614727 52438 4175 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1330\namount: !ruby/object:BigDecimal 18:0.12E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.12E3\nstatus: 0\ndate_sale: 2021-02-10\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1976\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 e493659e-0c9f-4c09-a2f5-41a486260d5f 2021-02-11 00:21:17.486602 52439 2699 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 187.149.48.98 e493659e-0c9f-4c09-a2f5-41a486260d5f 2021-02-11 00:21:17.543542 52440 4175 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 5369c93e-8da9-4d0d-b7ce-86ad9e1a1075 2021-02-11 00:21:21.16823 52441 5467 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1330\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.12E3\nmove_type: '1'\nsale_id: 4175\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1976\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.12E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1976 187.149.48.98 5369c93e-8da9-4d0d-b7ce-86ad9e1a1075 2021-02-11 00:21:21.191793 52442 5468 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1162\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '1'\nsale_id: 3373\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.48.98 955f0e6b-a09d-4bde-9c43-510db89308a4 2021-02-11 01:04:11.837887 52443 3373 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.48.98 955f0e6b-a09d-4bde-9c43-510db89308a4 2021-02-11 01:04:11.861835 52446 1357 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1330\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1669E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1669E4\ncash_fund: !ruby/object:BigDecimal 18:0.1125E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2794E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.48.98 7feb3742-157d-4cfd-ac6f-92d4cb37ead9 2021-02-11 01:23:42.775673 52447 1330 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.48.98 7feb3742-157d-4cfd-ac6f-92d4cb37ead9 2021-02-11 01:23:42.789861 52448 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-02-09 18:03:12.435209000 Z\n- &1 2021-02-10 17:59:02.700317000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-11 19:57:50.210653633 Z\nsign_in_count:\n- 772\n- 773\n 1549 \N 187.149.48.98 ba8380c8-d3ae-41dd-b702-4e889093e73d 2021-02-11 19:57:50.238294 52449 2 User \N \N 2 User \N update ---\nunique_session_id:\n- _RsiGmbwWNDvRnFQNpxs\n- _emF8NXAHDVT6qyVhydJ\n 1550 \N 187.149.48.98 ba8380c8-d3ae-41dd-b702-4e889093e73d 2021-02-11 19:57:50.260799 52450 1332 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1125E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1125.0 187.149.48.98 c165c060-502d-4b2e-b21a-263a77b39788 2021-02-11 21:21:40.494626 52451 4176 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1332\namount: !ruby/object:BigDecimal 18:0.67831E3\ntax: !ruby/object:BigDecimal 18:0.2069E2\ndiscount: !ruby/object:BigDecimal 18:0.549E3\ntotal: !ruby/object:BigDecimal 18:0.15E3\nstatus: 0\ndate_sale: 2021-02-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1977\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 d806c2d4-c3a7-4f4a-b2bb-7a6eb136c561 2021-02-11 23:05:50.222603 52452 627 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.48.98 d806c2d4-c3a7-4f4a-b2bb-7a6eb136c561 2021-02-11 23:05:50.254572 52453 4176 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 b3252547-33c3-4ee8-8f19-8526db3c811b 2021-02-11 23:05:53.968697 52454 5469 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1332\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.15E3\nmove_type: '1'\nsale_id: 4176\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1977\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1977 187.149.48.98 b3252547-33c3-4ee8-8f19-8526db3c811b 2021-02-11 23:05:53.993913 52455 4177 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1332\namount: !ruby/object:BigDecimal 18:0.1458E4\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.189E3\ntotal: !ruby/object:BigDecimal 18:0.1269E4\nstatus: 0\ndate_sale: 2021-02-11\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1978\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.48.98 2c48d419-ba98-4549-a21c-3075b75e58a1 2021-02-12 01:55:23.138279 52456 2592 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 187.149.48.98 2c48d419-ba98-4549-a21c-3075b75e58a1 2021-02-12 01:55:23.175809 52457 1441 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 10 \N 187.149.48.98 2c48d419-ba98-4549-a21c-3075b75e58a1 2021-02-12 01:55:23.214895 52458 4177 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.48.98 3e607c1f-8a14-4073-a81e-7fc8dcad8828 2021-02-12 01:55:28.350072 52459 5470 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1332\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.1269E4\nmove_type: '1'\nsale_id: 4177\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1978\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1269E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1978 187.149.48.98 3e607c1f-8a14-4073-a81e-7fc8dcad8828 2021-02-12 01:55:28.372945 52460 1358 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1332\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1419E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1419E4\ncash_fund: !ruby/object:BigDecimal 18:0.1125E4\nphysical_cash: !ruby/object:BigDecimal 18:0.2544E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.48.98 78ccecf7-e2a2-4d18-8640-77b86bcca925 2021-02-12 02:04:41.741013 52461 1332 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.48.98 78ccecf7-e2a2-4d18-8640-77b86bcca925 2021-02-12 02:04:41.756331 52462 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-02-10 17:59:02.700317000 Z\n- &1 2021-02-11 19:57:50.210653000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-12 20:10:54.711617855 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116642\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090600\n mask_addr: 4294967295\nsign_in_count:\n- 773\n- 774\n 1551 \N 189.186.27.168 3f788170-0785-4930-8231-d419240ed5e5 2021-02-12 20:10:54.752223 52463 2 User \N \N 2 User \N update ---\nunique_session_id:\n- _emF8NXAHDVT6qyVhydJ\n- C25X5pp7V1MJD9RcMT1e\n 1552 \N 189.186.27.168 3f788170-0785-4930-8231-d419240ed5e5 2021-02-12 20:10:54.785618 52464 1333 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.1033E4\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 1033.0 189.186.27.168 f9600c53-0d89-4feb-8449-9f6f4db21db5 2021-02-12 20:11:26.810072 52465 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-02-08 21:43:35.439331000 Z\n- &1 2021-02-10 23:17:43.831989000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-12 22:05:55.410720016 Z\nsign_in_count:\n- 412\n- 413\n 827 \N 189.186.132.86 309a8045-e572-4d85-9704-aea9dd8706bc 2021-02-12 22:05:55.416732 52466 21 User \N \N 21 User \N update ---\nunique_session_id:\n- cyoajNyx5nd4VxyWq_k6\n- ZhWCLTmTc_18z5jsde2y\n 828 \N 189.186.132.86 309a8045-e572-4d85-9704-aea9dd8706bc 2021-02-12 22:05:55.431928 52467 4178 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1333\namount: !ruby/object:BigDecimal 18:0.93003E3\ntax: !ruby/object:BigDecimal 18:0.6896E2\ndiscount: !ruby/object:BigDecimal 18:0.499E3\ntotal: !ruby/object:BigDecimal 18:0.49999E3\nstatus: 0\ndate_sale: 2021-02-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1979\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.27.168 343570fa-1083-4fea-a605-3ea45458cf64 2021-02-12 22:52:47.170539 52468 2307 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 2 \N 189.186.27.168 343570fa-1083-4fea-a605-3ea45458cf64 2021-02-12 22:52:47.214532 52469 4178 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.27.168 de1419a1-5a91-4e48-a11c-96634f0ad808 2021-02-12 22:52:53.20101 52470 5471 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1333\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.49999E3\nmove_type: '1'\nsale_id: 4178\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1979\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.49999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1979 189.186.27.168 de1419a1-5a91-4e48-a11c-96634f0ad808 2021-02-12 22:52:53.225681 52471 5472 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1270\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.5E3\nmove_type: '1'\nsale_id: 4038\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.27.168 082f3779-1121-4b01-9d8c-4f261275603b 2021-02-13 00:10:15.544805 52472 5472 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 1270\n- 1333\n 2 movimiento de efectivo por venta con folio PV1-V-1910 189.186.27.168 082f3779-1121-4b01-9d8c-4f261275603b 2021-02-13 00:10:15.580974 52473 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-02-08 04:29:25.705024000 Z\n- &1 2021-02-08 20:43:20.862371000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-13 01:22:15.602903452 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535718\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\nsign_in_count:\n- 2332\n- 2333\n 4666 \N 189.186.132.86 5689f3f8-d426-4928-a2b2-e3482620c181 2021-02-13 01:22:15.612157 52474 4 User \N \N 4 User \N update ---\nunique_session_id:\n- AjjTQJjgJqwn5EsxHzU6\n- 4G4AC4FzjkhJnxucjcmp\n 4667 \N 189.186.132.86 5689f3f8-d426-4928-a2b2-e3482620c181 2021-02-13 01:22:15.633266 52475 133 AvailableProduct \N \N 4 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 12 \N 189.186.132.86 ea884011-a2fa-4e3a-b4e3-710797fdefa7 2021-02-13 01:22:45.097134 52476 820 Transfer \N \N 4 User \N create ---\norigin_id: 1\ndestiny_id: 3\ntransfer_date: 2021-02-12\nuser_id: 4\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO a SUO Comercial creado. 189.186.132.86 5dca745b-4136-49f9-8469-dda03d8b1cbe 2021-02-13 01:22:47.731685 52477 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-01-22 02:34:50.881231000 Z\n- &1 2021-02-08 20:48:16.963782000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-13 01:23:10.874565521 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535718\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535718\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\nsign_in_count:\n- 494\n- 495\n 991 \N 189.186.132.86 61a0d5f4-9416-4703-b952-dce4849b8bab 2021-02-13 01:23:10.887087 52478 18 User \N \N 18 User \N update ---\nunique_session_id:\n- gzGfk3u-sxU1S6L_5T7D\n- FgT-vGtyR9prXGJWqpEd\n 992 \N 189.186.132.86 61a0d5f4-9416-4703-b952-dce4849b8bab 2021-02-13 01:23:10.915186 52479 820 Transfer \N \N 18 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 18\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-02-12\n 2 Se dio entrada a traspaso de SUO a SUO Comercial 189.186.132.86 671b98a4-cfcc-4e80-a9fb-4b4a3b52227d 2021-02-13 01:23:21.732991 52480 1540 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.1E1\n 4 \N 189.186.132.86 671b98a4-cfcc-4e80-a9fb-4b4a3b52227d 2021-02-13 01:23:21.749749 52481 4179 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1333\namount: !ruby/object:BigDecimal 18:0.599E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.599E3\nstatus: 0\ndate_sale: 2021-02-12\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1980\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.27.168 160c2e28-86a6-40a8-9465-50476967f9b3 2021-02-13 01:31:39.007273 52482 2234 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 9 \N 189.186.27.168 160c2e28-86a6-40a8-9465-50476967f9b3 2021-02-13 01:31:39.036837 52483 4179 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.27.168 6be73679-6239-44f6-a816-583cdd994154 2021-02-13 01:31:49.246402 52484 5473 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1333\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.599E3\nmove_type: '1'\nsale_id: 4179\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1980\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.599E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1980 189.186.27.168 6be73679-6239-44f6-a816-583cdd994154 2021-02-13 01:31:49.269788 52485 4180 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1331\namount: !ruby/object:BigDecimal 18:0.40431E3\ntax: !ruby/object:BigDecimal 18:0.6469E2\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.469E3\nstatus: 0\ndate_sale: 2021-02-12\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1280\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 86278712-968c-42e2-8a7c-06892dcc61ad 2021-02-13 01:37:06.645327 52486 1540 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 189.186.132.86 86278712-968c-42e2-8a7c-06892dcc61ad 2021-02-13 01:37:06.670487 52487 4180 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 69f18ef9-2a1f-4dee-bbce-ada38cd221fa 2021-02-13 01:37:21.404916 52488 5474 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1331\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.469E3\nmove_type: '1'\nsale_id: 4180\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1280\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.469E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1280 189.186.132.86 69f18ef9-2a1f-4dee-bbce-ada38cd221fa 2021-02-13 01:37:21.4275 52489 4181 Sale \N \N 2 User \N create ---\ncustomer_id: 36\nuser_id: 2\nopen_cash_register_id: 1333\namount: !ruby/object:BigDecimal 18:0.161003E4\ntax: !ruby/object:BigDecimal 18:0.6896E2\ndiscount: !ruby/object:BigDecimal 18:0.829E3\ntotal: !ruby/object:BigDecimal 18:0.84999E3\nstatus: 0\ndate_sale: 2021-02-12\nsaletype: 0\nseller_id: 30\nsale_code: PV1-V-1981\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.27.168 e8dc6556-2575-4d62-a616-792912c5dfd1 2021-02-13 01:38:56.632792 52490 1606 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 3 \N 189.186.27.168 e8dc6556-2575-4d62-a616-792912c5dfd1 2021-02-13 01:38:56.669231 52491 159 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.27.168 e8dc6556-2575-4d62-a616-792912c5dfd1 2021-02-13 01:38:56.693411 52492 1359 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1333\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.159899E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 29\nreceived_cash: !ruby/object:BigDecimal 18:0.21E4\ncash_fund: !ruby/object:BigDecimal 18:0.851E3\nphysical_cash: !ruby/object:BigDecimal 18:0.2951E4\nobservations: "PUSE 500 ABONO DE CHELA EN EFECTIVO FUE TRANSFERENCIA \\r\\nSE VENDIO\n EN SISTEMA NUEVO $999 EN EFECT\\r\\nY 1599 EN TARJETA \\r\\nSE VENDIO EN SISTEMA VIEJO\n $1099 EN EFECTIVO\\r\\n"\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.27.168 54c98cfc-3395-458a-b83d-9b534f624374 2021-02-13 01:56:02.695067 52493 1333 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.27.168 54c98cfc-3395-458a-b83d-9b534f624374 2021-02-13 01:56:02.716864 52494 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-02-11 19:57:50.210653000 Z\n- &1 2021-02-12 20:10:54.711617000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-13 22:27:46.508089904 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116642\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090600\n mask_addr: 4294967295\nsign_in_count:\n- 774\n- 775\n 1553 \N 189.186.27.168 d6a3884d-6862-4223-9450-cafd17410feb 2021-02-13 22:27:46.538299 52495 2 User \N \N 2 User \N update ---\nunique_session_id:\n- C25X5pp7V1MJD9RcMT1e\n- BmPEoaHF_sKqh8MAkyLd\n 1554 \N 189.186.27.168 d6a3884d-6862-4223-9450-cafd17410feb 2021-02-13 22:27:46.573251 52496 1334 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.851E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 851.0 189.186.27.168 e0ecc3a8-2f1b-4807-91c7-1581fb388fa9 2021-02-13 22:32:25.650906 52497 4182 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1334\namount: !ruby/object:BigDecimal 18:0.109731E4\ntax: !ruby/object:BigDecimal 18:0.2069E2\ndiscount: !ruby/object:BigDecimal 18:0.499E3\ntotal: !ruby/object:BigDecimal 18:0.619E3\nstatus: 0\ndate_sale: 2021-02-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1982\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.27.168 d6db5521-8941-4669-932d-f478cc0118fb 2021-02-13 22:33:39.752034 52498 2555 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.27.168 d6db5521-8941-4669-932d-f478cc0118fb 2021-02-13 22:33:39.792424 52499 2312 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.27.168 d6db5521-8941-4669-932d-f478cc0118fb 2021-02-13 22:33:39.827807 52500 4182 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.27.168 9a9ac6ea-66f4-4728-b91e-bc8496f3efa6 2021-02-13 22:33:44.581835 52501 5475 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1334\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.619E3\nmove_type: '1'\nsale_id: 4182\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1982\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.619E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1982 189.186.27.168 9a9ac6ea-66f4-4728-b91e-bc8496f3efa6 2021-02-13 22:33:44.605868 52502 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-02-10 23:17:43.831989000 Z\n- &1 2021-02-12 22:05:55.410720000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-13 23:08:03.297102340 Z\nsign_in_count:\n- 413\n- 414\n 829 \N 189.186.132.86 cd174958-b20f-4fe7-b6ab-f53d627a2887 2021-02-13 23:08:03.3089 52503 21 User \N \N 21 User \N update ---\nunique_session_id:\n- ZhWCLTmTc_18z5jsde2y\n- MJxuGU6j-d1R6GxQ13tY\n 830 \N 189.186.132.86 cd174958-b20f-4fe7-b6ab-f53d627a2887 2021-02-13 23:08:03.335416 52504 4183 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1331\namount: !ruby/object:BigDecimal 18:0.869E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.869E3\nstatus: 0\ndate_sale: 2021-02-13\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1281\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 7290d3c5-a59a-4952-bd90-655a060e7463 2021-02-13 23:11:06.664006 52505 831 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 10 \N 189.186.132.86 7290d3c5-a59a-4952-bd90-655a060e7463 2021-02-13 23:11:06.694143 52506 4183 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 1a862cfe-4bc3-4e43-acc7-97ca2a6ece6f 2021-02-13 23:11:18.909926 52507 5476 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1331\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.869E3\nmove_type: '1'\nsale_id: 4183\ncardnumber: 4521\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1281\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1281 189.186.132.86 1a862cfe-4bc3-4e43-acc7-97ca2a6ece6f 2021-02-13 23:11:18.931965 52508 5477 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1331\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.14E4\nmove_type: '1'\nsale_id: 4153\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: !ruby/object:BigDecimal 18:0.14E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1274 189.186.132.86 1576e207-6796-4d5c-abce-2a27b4df7645 2021-02-14 00:03:45.67089 52509 4153 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.132.86 a7376ba3-f324-476b-82a2-cda021450c8b 2021-02-14 00:04:07.066896 52510 4184 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1331\namount: !ruby/object:BigDecimal 18:0.589E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.589E3\nstatus: 0\ndate_sale: 2021-02-13\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1282\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 3fca6af6-c888-4d77-b9a0-755626ea0f2f 2021-02-14 00:26:12.666518 52511 2572 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 15 \N 189.186.132.86 3fca6af6-c888-4d77-b9a0-755626ea0f2f 2021-02-14 00:26:12.698219 52512 4184 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 de210db6-dab6-488a-a2b9-5761dfd3c390 2021-02-14 00:26:18.942184 52513 5478 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1331\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.589E3\nmove_type: '1'\nsale_id: 4184\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1282\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.6E3\nchange: !ruby/object:BigDecimal 18:0.11E2\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1282 189.186.132.86 de210db6-dab6-488a-a2b9-5761dfd3c390 2021-02-14 00:26:18.96257 52562 1336 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.27.168 c9384545-c9f1-451c-a415-1c4272de0827 2021-02-18 02:17:26.653884 52514 4185 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1334\namount: !ruby/object:BigDecimal 18:0.180562E4\ntax: !ruby/object:BigDecimal 18:0.4138E2\ndiscount: !ruby/object:BigDecimal 18:0.1397E4\ntotal: !ruby/object:BigDecimal 18:0.45E3\nstatus: 0\ndate_sale: 2021-02-13\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1983\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.27.168 542b74ae-be2f-4754-975c-937fa5bb3450 2021-02-14 01:07:17.960976 52515 2630 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 4 \N 189.186.27.168 542b74ae-be2f-4754-975c-937fa5bb3450 2021-02-14 01:07:17.996563 52516 668 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 7 \N 189.186.27.168 542b74ae-be2f-4754-975c-937fa5bb3450 2021-02-14 01:07:18.021354 52517 2309 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.27.168 542b74ae-be2f-4754-975c-937fa5bb3450 2021-02-14 01:07:18.049267 52518 4185 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.27.168 a4d42d07-aa47-4013-b61b-e9a278fac48a 2021-02-14 01:07:23.539621 52519 5479 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1334\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.45E3\nmove_type: '1'\nsale_id: 4185\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1983\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.45E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1983 189.186.27.168 a4d42d07-aa47-4013-b61b-e9a278fac48a 2021-02-14 01:07:23.558953 52520 1360 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1334\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1069E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1069E4\ncash_fund: !ruby/object:BigDecimal 18:0.851E3\nphysical_cash: !ruby/object:BigDecimal 18:0.192E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.27.168 f1e9ece1-06c7-40b6-862c-0fd2827dd47d 2021-02-14 01:57:17.244884 52521 1334 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.27.168 f1e9ece1-06c7-40b6-862c-0fd2827dd47d 2021-02-14 01:57:17.265788 52522 397 Expense \N \N 21 User \N create ---\nexpensesconcept_id: 1\nopen_cash_register_id: 1331\nquantity: !ruby/object:BigDecimal 18:0.1E4\nstatus: 1\nobservations: SUELDO NAYELI\nexpense_date: 2021-02-13\nexpense_code: PV3-E-64\n 1 Egreso por 1000.0 registrado 189.186.132.86 5c154d3a-db02-4f79-be96-5af939945b0f 2021-02-14 02:09:55.282581 52523 5480 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1331\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1E4\nmove_type: '0'\nsale_id: \ncardnumber: \npurchase_id: \nexpense_id: 397\nconcept: 2\nticket: \nstatus: 1\nreceived: \nchange: \nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.132.86 5c154d3a-db02-4f79-be96-5af939945b0f 2021-02-14 02:09:55.305023 52524 1361 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1331\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.3327E4\namount_out: !ruby/object:BigDecimal 18:0.1E4\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.989E3\ncash_fund: !ruby/object:BigDecimal 18:0.0\nphysical_cash: !ruby/object:BigDecimal 18:0.989E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 ada99fec-baaa-4370-a392-def54f841c9d 2021-02-14 02:12:15.343 52525 1331 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 ada99fec-baaa-4370-a392-def54f841c9d 2021-02-14 02:12:15.356765 52526 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-02-12 22:05:55.410720000 Z\n- &1 2021-02-13 23:08:03.297102000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-15 17:29:18.626920654 Z\nsign_in_count:\n- 414\n- 415\n 831 \N 189.186.132.86 60095eac-7996-4457-85cc-523c14e13b64 2021-02-15 17:29:18.657403 52527 21 User \N \N 21 User \N update ---\nunique_session_id:\n- MJxuGU6j-d1R6GxQ13tY\n- WZFYP1GUrHitMu-iKVB1\n 832 \N 189.186.132.86 60095eac-7996-4457-85cc-523c14e13b64 2021-02-15 17:29:18.68311 52528 1335 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.0\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 0.0 189.186.132.86 08262169-ce67-4192-a30b-439ac515fe91 2021-02-15 17:29:43.322164 52529 4186 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1335\namount: !ruby/object:BigDecimal 18:0.699E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.699E3\nstatus: 0\ndate_sale: 2021-02-15\nsaletype: 1\nseller_id: 31\nsale_code: PV3-V-1283\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 de8579ae-3dc7-4984-9606-2d6955e8a86d 2021-02-15 21:06:13.308057 52530 2336 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 7 \N 189.186.132.86 de8579ae-3dc7-4984-9606-2d6955e8a86d 2021-02-15 21:06:13.336757 52531 4186 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 9f460542-338e-4534-acfe-6f7524d02956 2021-02-15 21:07:14.141921 52532 5481 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1335\npayment_method_id: 4\nquantity: !ruby/object:BigDecimal 27:0.699E3\nmove_type: '1'\nsale_id: 4186\ncardnumber: 7854\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1283\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1283 189.186.132.86 9f460542-338e-4534-acfe-6f7524d02956 2021-02-15 21:07:14.18081 52533 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-02-08 20:43:20.862371000 Z\n- &1 2021-02-13 01:22:15.602903000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-16 00:54:16.416003289 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535718\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\nsign_in_count:\n- 2333\n- 2334\n 4668 \N 189.186.132.86 5f431e0d-9062-41e2-a27a-e6232d965fc1 2021-02-16 00:54:16.448766 52534 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4G4AC4FzjkhJnxucjcmp\n- owfmcVvgGqQhT1StxUh5\n 4669 \N 189.186.132.86 5f431e0d-9062-41e2-a27a-e6232d965fc1 2021-02-16 00:54:16.48766 52535 1571 Product \N \N 4 User \N create ---\nsku: ZAP-1571\nname: GURMA\ndescription: TENNIS\nprice_base: !ruby/object:BigDecimal 18:0.6995E3\nprice_sale: !ruby/object:BigDecimal 18:0.1399E4\nimg_product_file_name: \nimg_product_content_type: \nimg_product_file_size: \nimg_product_updated_at: \npresentation: false\ninventory: true\ncontent: \nstatus: 1\nunit_id: 3\ninclude_purchase_tax: 0\ninclude_sale_tax: 0\nbarcode: ''\nparent_id: \nattributes_json: \nis_parent: false\nis_in_dollars: false\nprice_base_dollars: \nimg_product: \ncategory_id: 13\nproduct_service_key: '01010101'\n 1 El producto ZAP-1571 fue creado. 189.186.132.86 12407d2f-bbd6-42f6-9433-aca2dcdfa5d3 2021-02-16 00:55:27.061008 52536 1571 Product \N \N 4 User \N update ---\nbarcode:\n- ''\n- '0001571'\n 2 \N 189.186.132.86 12407d2f-bbd6-42f6-9433-aca2dcdfa5d3 2021-02-16 00:55:27.107462 52538 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-02-08 20:48:16.963782000 Z\n- &1 2021-02-13 01:23:10.874565000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-16 01:07:15.252348857 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535718\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\nsign_in_count:\n- 495\n- 496\n 993 \N 189.186.132.86 eb15060e-cc43-4387-a141-504da1bba987 2021-02-16 01:07:15.26028 52539 18 User \N \N 18 User \N update ---\nunique_session_id:\n- FgT-vGtyR9prXGJWqpEd\n- ivFvRB17WZ-NkHNRyVtc\n 994 \N 189.186.132.86 eb15060e-cc43-4387-a141-504da1bba987 2021-02-16 01:07:15.277346 52540 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-02-13 01:22:15.602903000 Z\n- &1 2021-02-16 00:54:16.416003000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-16 01:12:55.355399956 Z\nsign_in_count:\n- 2334\n- 2335\n 4670 \N 189.186.132.86 b646e1a4-4c29-411b-b3a3-546d6e7d85a8 2021-02-16 01:12:55.363552 52541 4 User \N \N 4 User \N update ---\nunique_session_id:\n- owfmcVvgGqQhT1StxUh5\n- zruFpBfjsnFx6fi5CYa4\n 4671 \N 189.186.132.86 b646e1a4-4c29-411b-b3a3-546d6e7d85a8 2021-02-16 01:12:55.387388 52542 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-02-13 23:08:03.297102000 Z\n- &1 2021-02-15 17:29:18.626920000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-16 19:33:34.956616246 Z\nsign_in_count:\n- 415\n- 416\n 833 \N 189.186.132.86 5e1e759b-4b52-43ee-8743-bfbc9c4295e5 2021-02-16 19:33:34.9849 52543 21 User \N \N 21 User \N update ---\nunique_session_id:\n- WZFYP1GUrHitMu-iKVB1\n- gQDv7TrHDkd3_ECs8Sib\n 834 \N 189.186.132.86 5e1e759b-4b52-43ee-8743-bfbc9c4295e5 2021-02-16 19:33:35.008179 52544 5482 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1304\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 4121\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '4124102'\n 1 \N 189.186.132.86 889ed7cf-9299-418b-9264-9ddbc3748643 2021-02-16 19:37:08.879091 52545 5482 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 1304\n- \n 2 movimiento de efectivo por venta con folio PV3-V-1258 189.186.132.86 889ed7cf-9299-418b-9264-9ddbc3748643 2021-02-16 19:37:08.981858 52546 4187 Sale \N \N 21 User \N create ---\ncustomer_id: 1\nuser_id: 21\nopen_cash_register_id: 1335\namount: !ruby/object:BigDecimal 18:0.598E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.598E3\nstatus: 0\ndate_sale: 2021-02-16\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1284\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 653cf698-a2c3-4f99-bc2e-4f633fac7a21 2021-02-16 20:58:09.248095 52547 834 AvailableProduct \N \N 21 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.0\n 30 \N 189.186.132.86 653cf698-a2c3-4f99-bc2e-4f633fac7a21 2021-02-16 20:58:09.280702 52548 4187 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 7dade80e-2e06-4715-8e4b-ba6831197cb8 2021-02-16 20:59:57.947202 52549 5483 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1335\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.598E3\nmove_type: '1'\nsale_id: 4187\ncardnumber: 1254\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1284\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1284 189.186.132.86 7dade80e-2e06-4715-8e4b-ba6831197cb8 2021-02-16 20:59:57.978068 52550 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-02-16 00:54:16.416003000 Z\n- &1 2021-02-16 01:12:55.355399000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-16 23:48:08.924028315 Z\nsign_in_count:\n- 2335\n- 2336\n 4672 \N 189.186.132.86 832a3c22-311f-4545-8ff3-e0ca3f7f4e48 2021-02-16 23:48:08.931293 52551 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zruFpBfjsnFx6fi5CYa4\n- mTouufbKht-FQz6sVYmB\n 4673 \N 189.186.132.86 832a3c22-311f-4545-8ff3-e0ca3f7f4e48 2021-02-16 23:48:08.949501 52552 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-02-12 20:10:54.711617000 Z\n- &1 2021-02-13 22:27:46.508089000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-17 20:31:57.920275865 Z\nsign_in_count:\n- 775\n- 776\n 1555 \N 189.186.27.168 bba0a51a-14e2-438d-80be-be0ff6154c1f 2021-02-17 20:31:57.94698 52553 2 User \N \N 2 User \N update ---\nunique_session_id:\n- BmPEoaHF_sKqh8MAkyLd\n- KnQjFkytJtoT94-7hGyi\n 1556 \N 189.186.27.168 bba0a51a-14e2-438d-80be-be0ff6154c1f 2021-02-17 20:31:57.971687 52554 1336 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.614E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 614.0 189.186.27.168 fcc297a5-a26b-4ce8-b8f4-a937ab06d293 2021-02-17 20:32:52.201619 52555 5484 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1336\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 18:0.999E3\nmove_type: '1'\nsale_id: 4118\ncardnumber: 3075\npurchase_id: \nexpense_id: \nconcept: 7\nticket: \nstatus: 0\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1942 189.186.27.168 bfc2fd73-30ad-4ca3-9db3-3ff1bde94af5 2021-02-17 20:34:19.015802 52556 4118 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.27.168 99f13ecd-4898-424a-95b2-0144879137d1 2021-02-17 20:34:20.886084 52557 30 User \N \N 30 User \N update ---\nlast_sign_in_at:\n- 2020-12-15 19:20:47.972581000 Z\n- &1 2021-01-27 00:41:18.052812000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-17 23:15:37.473005993 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183144022\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147672\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183147672\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147110570\n mask_addr: 4294967295\nsign_in_count:\n- 19\n- 20\n 40 \N 187.149.24.170 b2135600-d574-4583-96fe-e9d30efba53c 2021-02-17 23:15:37.4805 52558 30 User \N \N 30 User \N update ---\nunique_session_id:\n- eUeX8YLxz_r_yxEqqA_8\n- xvgs8zX6rwuEbvfxNrat\n 41 \N 187.149.24.170 b2135600-d574-4583-96fe-e9d30efba53c 2021-02-17 23:15:37.500073 52559 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-02-16 01:12:55.355399000 Z\n- &1 2021-02-16 23:48:08.924028000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-18 00:32:02.397367827 Z\nsign_in_count:\n- 2336\n- 2337\n 4674 \N 189.186.132.86 7398601b-b5c8-4cd4-a98d-b8cc53ba7d3e 2021-02-18 00:32:02.403007 52560 4 User \N \N 4 User \N update ---\nunique_session_id:\n- mTouufbKht-FQz6sVYmB\n- D3Kxog9GG-ps-UKe6vPx\n 4675 \N 189.186.132.86 7398601b-b5c8-4cd4-a98d-b8cc53ba7d3e 2021-02-18 00:32:02.418501 52561 1362 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1336\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.999E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.614E3\nphysical_cash: !ruby/object:BigDecimal 18:0.614E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.27.168 c9384545-c9f1-451c-a415-1c4272de0827 2021-02-18 02:17:26.636444 52563 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-02-04 23:50:38.372663000 Z\n- &1 2021-02-06 19:18:04.798672000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-18 18:22:34.916536013 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147116642\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938462\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938462\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938256\n mask_addr: 4294967295\nsign_in_count:\n- 469\n- 470\n 940 \N 200.68.150.208 fb27b796-7cc4-4898-b163-9101e28fc80c 2021-02-18 18:22:34.94761 52564 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 4cxUkuGtAn59wmE41Tmz\n- KaheW9jmFnt3sZ3emogU\n 941 \N 200.68.150.208 fb27b796-7cc4-4898-b163-9101e28fc80c 2021-02-18 18:22:34.974368 52565 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-02-16 23:48:08.924028000 Z\n- &1 2021-02-18 00:32:02.397367000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-18 19:35:00.545916110 Z\nsign_in_count:\n- 2337\n- 2338\n 4676 \N 189.186.132.86 2a705f29-aef2-4cb5-af0f-7a05b5defb41 2021-02-18 19:35:00.574134 52566 4 User \N \N 4 User \N update ---\nunique_session_id:\n- D3Kxog9GG-ps-UKe6vPx\n- cZWqX4hssyX2zkCpthWY\n 4677 \N 189.186.132.86 2a705f29-aef2-4cb5-af0f-7a05b5defb41 2021-02-18 19:35:00.598865 52567 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-02-13 22:27:46.508089000 Z\n- &1 2021-02-17 20:31:57.920275000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-18 22:24:21.627748798 Z\nsign_in_count:\n- 776\n- 777\n 1557 \N 189.186.27.168 0806eed7-bd46-4ee8-b7c2-51cd2a246d48 2021-02-18 22:24:21.633478 52568 2 User \N \N 2 User \N update ---\nunique_session_id:\n- KnQjFkytJtoT94-7hGyi\n- ZzWcCM4gHHU8sm9WnmW-\n 1558 \N 189.186.27.168 0806eed7-bd46-4ee8-b7c2-51cd2a246d48 2021-02-18 22:24:21.648321 52569 1337 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.614E3\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 614.0 189.186.27.168 3522a197-1c92-41b2-afa6-cad8e3d00fa5 2021-02-18 22:24:37.149319 52570 4188 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1337\namount: !ruby/object:BigDecimal 18:0.999E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.999E3\nstatus: 0\ndate_sale: 2021-02-18\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1984\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.27.168 2db79b89-4f1b-4e4b-b29c-359c1d3d3442 2021-02-18 22:24:55.716848 52571 2261 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 6 \N 189.186.27.168 2db79b89-4f1b-4e4b-b29c-359c1d3d3442 2021-02-18 22:24:55.762501 52572 4188 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.27.168 4bfbb499-1c2b-42f0-b718-3fc9c3302543 2021-02-18 22:25:17.173128 52573 5485 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1337\npayment_method_id: 1\nquantity: !ruby/object:BigDecimal 27:0.999E3\nmove_type: '1'\nsale_id: 4188\ncardnumber: 1085\npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1984\nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1984 189.186.27.168 4bfbb499-1c2b-42f0-b718-3fc9c3302543 2021-02-18 22:25:17.202689 52574 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-02-13 01:23:10.874565000 Z\n- &1 2021-02-16 01:07:15.252348000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-19 00:17:15.228012613 Z\nsign_in_count:\n- 496\n- 497\n 995 \N 189.186.132.86 0e113e68-385e-49fd-b028-c40711ea4d43 2021-02-19 00:17:15.23359 52575 18 User \N \N 18 User \N update ---\nunique_session_id:\n- ivFvRB17WZ-NkHNRyVtc\n- GA-H7aCcoEdcvDiBCWJt\n 996 \N 189.186.132.86 0e113e68-385e-49fd-b028-c40711ea4d43 2021-02-19 00:17:15.246805 52576 4189 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1335\namount: !ruby/object:BigDecimal 18:0.449E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.449E3\nstatus: 0\ndate_sale: 2021-02-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1285\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.132.86 8e28a6f7-f43e-4be6-944e-6b69cdc46815 2021-02-19 00:17:34.08323 52577 2658 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 2 \N 189.186.132.86 8e28a6f7-f43e-4be6-944e-6b69cdc46815 2021-02-19 00:17:34.109525 52578 4189 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 7f387511-c027-41de-a57e-01821a7fbf31 2021-02-19 00:17:41.393177 52579 5486 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1335\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.449E3\nmove_type: '1'\nsale_id: 4189\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1285\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.449E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1285 189.186.132.86 7f387511-c027-41de-a57e-01821a7fbf31 2021-02-19 00:17:41.415047 52580 1363 CashOut \N \N 18 User \N create ---\nopen_cash_register_id: 1335\nuser_id: 18\namount_in: !ruby/object:BigDecimal 18:0.1746E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 18\nreceived_cash: !ruby/object:BigDecimal 18:0.449E3\ncash_fund: !ruby/object:BigDecimal 18:0.0\nphysical_cash: !ruby/object:BigDecimal 18:0.449E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 ccc769ac-6329-4b41-95ff-697d54cd0ae9 2021-02-19 01:52:01.541406 52581 1335 OpenCashRegister \N \N 18 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 ccc769ac-6329-4b41-95ff-697d54cd0ae9 2021-02-19 01:52:01.555374 52582 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-02-06 19:18:04.798672000 Z\n- &1 2021-02-18 18:22:34.916536000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-19 17:24:36.309443639 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938462\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938256\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938256\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090600\n mask_addr: 4294967295\nsign_in_count:\n- 470\n- 471\n 942 \N 189.186.27.168 68f60495-afa9-491d-bc61-f116d13689f7 2021-02-19 17:24:36.339689 52583 1 User \N \N 1 User \N update ---\nunique_session_id:\n- KaheW9jmFnt3sZ3emogU\n- ZW3nvLa7vWi3dKzJvQWD\n 943 \N 189.186.27.168 68f60495-afa9-491d-bc61-f116d13689f7 2021-02-19 17:24:36.364597 52584 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-02-17 20:31:57.920275000 Z\n- &1 2021-02-18 22:24:21.627748000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-19 22:32:35.692305556 Z\nsign_in_count:\n- 777\n- 778\n 1559 \N 189.186.27.168 88964d3a-12a4-4f7e-98f9-1fcfb7b8f5e3 2021-02-19 22:32:35.721041 52585 2 User \N \N 2 User \N update ---\nunique_session_id:\n- ZzWcCM4gHHU8sm9WnmW-\n- pH_r927GMR9G2HWU3u-b\n 1560 \N 189.186.27.168 88964d3a-12a4-4f7e-98f9-1fcfb7b8f5e3 2021-02-19 22:32:35.744712 52703 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-03-03 18:08:18.480516000 Z\n- &1 2021-03-04 18:49:40.124043000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-05 23:24:38.526865673 Z\nsign_in_count:\n- 784\n- 785\n 1573 \N 187.149.110.86 9c0b6561-b3f0-45b8-a5d5-97ad5ceda605 2021-03-05 23:24:38.532672 52586 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-02-18 00:32:02.397367000 Z\n- &1 2021-02-18 19:35:00.545916000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-20 17:07:00.040397978 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535998\n mask_addr: 4294967295\nsign_in_count:\n- 2338\n- 2339\n 4678 \N 177.228.103.190 042195c2-1927-4f46-bd92-39cd1b8c76ef 2021-02-20 17:07:00.069786 52587 4 User \N \N 4 User \N update ---\nunique_session_id:\n- cZWqX4hssyX2zkCpthWY\n- yVkyu6Y-7W67Qv6qspnx\n 4679 \N 177.228.103.190 042195c2-1927-4f46-bd92-39cd1b8c76ef 2021-02-20 17:07:00.101487 52588 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-02-15 17:29:18.626920000 Z\n- &1 2021-02-16 19:33:34.956616000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-20 20:00:24.665133295 Z\nsign_in_count:\n- 416\n- 417\n 835 \N 189.186.132.86 01b25911-c3f9-4029-9fbe-cef6dde37682 2021-02-20 20:00:24.692833 52589 21 User \N \N 21 User \N update ---\nunique_session_id:\n- gQDv7TrHDkd3_ECs8Sib\n- qSSNVvS8nLhBDyRb-EPr\n 836 \N 189.186.132.86 01b25911-c3f9-4029-9fbe-cef6dde37682 2021-02-20 20:00:24.715481 52590 5487 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1270\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 4038\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.5E3\nchange: !ruby/object:BigDecimal 18:0.1E3\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.132.86 e7709b28-07e8-4700-8907-0a521f864a23 2021-02-20 20:01:58.223933 52591 5487 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 1270\n- \n 2 movimiento de efectivo por venta con folio PV1-V-1910 189.186.132.86 e7709b28-07e8-4700-8907-0a521f864a23 2021-02-20 20:01:58.249913 52592 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-02-18 22:24:21.627748000 Z\n- &1 2021-02-19 22:32:35.692305000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-20 21:10:07.329568251 Z\nsign_in_count:\n- 778\n- 779\n 1561 \N 189.186.27.168 b83dbf07-6567-4486-b287-b16b7e742507 2021-02-20 21:10:07.362683 52593 2 User \N \N 2 User \N update ---\nunique_session_id:\n- pH_r927GMR9G2HWU3u-b\n- VLnVu5FzSUwnN8Uhg4Yj\n 1562 \N 189.186.27.168 b83dbf07-6567-4486-b287-b16b7e742507 2021-02-20 21:10:07.390863 52594 1338 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.0\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 0.0 189.186.132.86 f95721ee-2928-491e-9fe2-6a12c0eb6d77 2021-02-21 01:53:13.520986 52595 1364 CashOut \N \N 21 User \N create ---\nopen_cash_register_id: 1338\nuser_id: 21\namount_in: !ruby/object:BigDecimal 18:0.0\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 31\nreceived_cash: !ruby/object:BigDecimal 18:0.4E3\ncash_fund: !ruby/object:BigDecimal 18:0.0\nphysical_cash: !ruby/object:BigDecimal 18:0.4E3\nobservations: ABONO CHELA CREDITO\ninvoice_num: \n 1 Corte de caja de SUO Comercial Principal realizado correctamente 189.186.132.86 21934e06-7eae-4902-8eab-20c1f4bd1bc7 2021-02-21 01:55:45.05665 52596 1338 OpenCashRegister \N \N 21 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.132.86 21934e06-7eae-4902-8eab-20c1f4bd1bc7 2021-02-21 01:55:45.071561 52597 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-02-18 18:22:34.916536000 Z\n- &1 2021-02-19 17:24:36.309443000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-22 01:12:57.746601311 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3359938256\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090600\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090600\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984545270\n mask_addr: 4294967295\nsign_in_count:\n- 471\n- 472\n 944 \N 177.228.139.246 47abbd2e-baa7-4c69-a470-1af132ea1e38 2021-02-22 01:12:57.776117 52598 1 User \N \N 1 User \N update ---\nunique_session_id:\n- ZW3nvLa7vWi3dKzJvQWD\n- jeth6CpN7vTQ5_xGUHZT\n 945 \N 177.228.139.246 47abbd2e-baa7-4c69-a470-1af132ea1e38 2021-02-22 01:12:57.808019 52599 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-02-19 17:24:36.309443000 Z\n- &1 2021-02-22 01:12:57.746601000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-22 01:13:00.915550429 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090600\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984545270\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984545270\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723156\n mask_addr: 4294967295\nsign_in_count:\n- 472\n- 473\n 946 \N 189.195.194.148 9a1791a2-83dc-4ba3-ad99-605320dc4871 2021-02-22 01:13:00.922668 52600 1 User \N \N 1 User \N update ---\nunique_session_id:\n- jeth6CpN7vTQ5_xGUHZT\n- hK9MNx35ykT1EBMqYysL\n 947 \N 189.195.194.148 9a1791a2-83dc-4ba3-ad99-605320dc4871 2021-02-22 01:13:00.938756 52601 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-02-22 01:12:57.746601000 Z\n- &1 2021-02-22 01:13:00.915550000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-22 01:13:16.388018041 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984545270\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723156\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723156\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984545270\n mask_addr: 4294967295\nsign_in_count:\n- 473\n- 474\n 948 \N 177.228.139.246 7d96983c-0b25-4eea-a405-b1179fdfbc9b 2021-02-22 01:13:16.395901 52602 1 User \N \N 1 User \N update ---\nunique_session_id:\n- hK9MNx35ykT1EBMqYysL\n- 7w9mo-YtX8UDTa_U6sx5\n 949 \N 177.228.139.246 7d96983c-0b25-4eea-a405-b1179fdfbc9b 2021-02-22 01:13:16.412081 52603 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-02-22 01:13:00.915550000 Z\n- &1 2021-02-22 01:13:16.388018000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-22 01:14:13.809854332 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723156\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984545270\n mask_addr: 4294967295\nsign_in_count:\n- 474\n- 475\n 950 \N 177.228.139.246 bb6c2337-39b8-491c-82f7-fb86e10d689c 2021-02-22 01:14:13.816464 52604 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 7w9mo-YtX8UDTa_U6sx5\n- x2sCyJhz2fP5zTC1whQJ\n 951 \N 177.228.139.246 bb6c2337-39b8-491c-82f7-fb86e10d689c 2021-02-22 01:14:13.831322 52605 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-02-22 01:13:16.388018000 Z\n- &1 2021-02-22 01:14:13.809854000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-22 01:14:51.320274668 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984545270\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723156\n mask_addr: 4294967295\nsign_in_count:\n- 475\n- 476\n 952 \N 189.195.194.148 cf867992-4a04-4426-94f8-7f5d8408ebb9 2021-02-22 01:14:51.326876 52606 1 User \N \N 1 User \N update ---\nunique_session_id:\n- x2sCyJhz2fP5zTC1whQJ\n- SAMq3Wxjvbob5zymTWMr\n 953 \N 189.195.194.148 cf867992-4a04-4426-94f8-7f5d8408ebb9 2021-02-22 01:14:51.34196 52632 5492 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1208\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 3589\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '444'\n 1 \N 189.186.132.86 1e30f616-9924-48f7-baf4-ae4493e429bb 2021-02-24 01:35:18.317177 52607 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-02-22 01:14:13.809854000 Z\n- &1 2021-02-22 01:14:51.320274000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-22 01:15:08.700766542 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984545270\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723156\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723156\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984545270\n mask_addr: 4294967295\nsign_in_count:\n- 476\n- 477\n 954 \N 177.228.139.246 551aff97-056e-4606-9081-2246dcb7ef63 2021-02-22 01:15:08.711934 52608 1 User \N \N 1 User \N update ---\nunique_session_id:\n- SAMq3Wxjvbob5zymTWMr\n- T_L78upEN7i3LFiQBjyS\n 955 \N 177.228.139.246 551aff97-056e-4606-9081-2246dcb7ef63 2021-02-22 01:15:08.734907 52609 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-02-16 19:33:34.956616000 Z\n- &1 2021-02-20 20:00:24.665133000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-23 19:35:22.952263405 Z\nsign_in_count:\n- 417\n- 418\n 837 \N 189.186.132.86 a4f5b923-65cc-4b43-8c08-00e174ad2551 2021-02-23 19:35:22.979529 52610 21 User \N \N 21 User \N update ---\nunique_session_id:\n- qSSNVvS8nLhBDyRb-EPr\n- e1k8y67LyxbUyN2zSxL7\n 838 \N 189.186.132.86 a4f5b923-65cc-4b43-8c08-00e174ad2551 2021-02-23 19:35:23.002164 52611 1339 OpenCashRegister \N \N 21 User \N create ---\ncash_register_id: 3\nuser_id: 21\ninitial_cash: !ruby/object:BigDecimal 18:0.0\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja SUO Comercial Principal abierta con 0.0 189.186.132.86 6afb9ff7-be3b-40df-88ad-42e1c14d89ab 2021-02-23 19:37:25.790386 52612 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-02-19 22:32:35.692305000 Z\n- &1 2021-02-20 21:10:07.329568000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-23 21:25:48.799938156 Z\nsign_in_count:\n- 779\n- 780\n 1563 \N 189.186.27.168 c0478093-fce6-4faa-b0ee-b6a074bfad39 2021-02-23 21:25:48.80603 52613 2 User \N \N 2 User \N update ---\nunique_session_id:\n- VLnVu5FzSUwnN8Uhg4Yj\n- osraNxEQU24EzQgx9mSt\n 1564 \N 189.186.27.168 c0478093-fce6-4faa-b0ee-b6a074bfad39 2021-02-23 21:25:48.822353 52614 1365 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1337\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.999E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.0\ncash_fund: !ruby/object:BigDecimal 18:0.614E3\nphysical_cash: !ruby/object:BigDecimal 18:0.614E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.27.168 0618483b-6920-44b6-807f-6b12c710c860 2021-02-23 21:26:28.116005 52615 1337 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.27.168 0618483b-6920-44b6-807f-6b12c710c860 2021-02-23 21:26:28.128965 52616 1340 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.0\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 0.0 189.186.27.168 189ad9dd-275f-4433-b526-4a2972be3744 2021-02-23 21:26:41.811926 52617 5488 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1333\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.34999E3\nmove_type: '1'\nsale_id: 4181\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.34999E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 189.186.27.168 f60a4a4f-0387-40cb-a725-b0310e970fab 2021-02-23 21:27:11.10863 52618 4181 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 3\n 2 \N 189.186.27.168 f60a4a4f-0387-40cb-a725-b0310e970fab 2021-02-23 21:27:11.131959 52619 5488 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 1333\n- 1340\n 2 movimiento de efectivo por venta con folio PV1-V-1981 189.186.27.168 f60a4a4f-0387-40cb-a725-b0310e970fab 2021-02-23 21:27:11.142651 52620 5489 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 662\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.899E3\nmove_type: '1'\nsale_id: 1667\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: DD\n 1 \N 189.186.132.86 c6ecedfe-6fc0-4605-a8d8-eb529db2c19e 2021-02-24 00:53:13.128417 52621 1667 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.132.86 c6ecedfe-6fc0-4605-a8d8-eb529db2c19e 2021-02-24 00:53:13.150077 52622 5489 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 662\n- 1339\n 2 movimiento de efectivo por venta con folio PV3-V-167 189.186.132.86 c6ecedfe-6fc0-4605-a8d8-eb529db2c19e 2021-02-24 00:53:13.163038 52623 1366 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1340\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.34999E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.35E3\ncash_fund: !ruby/object:BigDecimal 18:0.0\nphysical_cash: !ruby/object:BigDecimal 18:0.35E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 189.186.27.168 6314d52b-ba16-4ff7-b379-a826203b7308 2021-02-24 01:27:28.42754 52624 1340 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 189.186.27.168 6314d52b-ba16-4ff7-b379-a826203b7308 2021-02-24 01:27:28.448052 52625 5490 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 931\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.399E3\nmove_type: '1'\nsale_id: 2459\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '44'\n 1 \N 189.186.132.86 aed09856-a19b-4f28-adbe-beaa063d6f72 2021-02-24 01:28:56.926901 52626 2459 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.132.86 aed09856-a19b-4f28-adbe-beaa063d6f72 2021-02-24 01:28:56.950708 52627 5490 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 931\n- 1339\n 2 movimiento de efectivo por venta con folio PV3-V-349 189.186.132.86 aed09856-a19b-4f28-adbe-beaa063d6f72 2021-02-24 01:28:56.965478 52628 5491 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 936\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.3651E4\nmove_type: '1'\nsale_id: 2503\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '455'\n 1 \N 189.186.132.86 745b1b97-a15d-4222-a256-886a5599292a 2021-02-24 01:30:29.012981 52629 2503 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.132.86 745b1b97-a15d-4222-a256-886a5599292a 2021-02-24 01:30:29.036637 52630 3573 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.132.86 745b1b97-a15d-4222-a256-886a5599292a 2021-02-24 01:30:29.05153 52631 5491 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 936\n- 1339\n 2 movimiento de efectivo por venta con folio PV3-V-363 189.186.132.86 745b1b97-a15d-4222-a256-886a5599292a 2021-02-24 01:30:29.065152 52633 5492 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 1208\n- 1339\n 2 movimiento de efectivo por venta con folio PV3-V-960 189.186.132.86 1e30f616-9924-48f7-baf4-ae4493e429bb 2021-02-24 01:35:18.344466 52634 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-02-18 19:35:00.545916000 Z\n- &1 2021-02-20 17:07:00.040397000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-24 20:35:36.687060883 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535998\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535998\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\nsign_in_count:\n- 2339\n- 2340\n 4680 \N 189.186.132.86 72fc681b-4541-44bc-92a3-1655ca811dbf 2021-02-24 20:35:36.714524 52635 4 User \N \N 4 User \N update ---\nunique_session_id:\n- yVkyu6Y-7W67Qv6qspnx\n- Bw4Zab5Z4pV1jDr9dC_x\n 4681 \N 189.186.132.86 72fc681b-4541-44bc-92a3-1655ca811dbf 2021-02-24 20:35:36.742382 52636 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-02-20 20:00:24.665133000 Z\n- &1 2021-02-23 19:35:22.952263000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-25 16:51:53.805855166 Z\nsign_in_count:\n- 418\n- 419\n 839 \N 189.186.132.86 35507381-244a-40f4-993a-07bb60b0201a 2021-02-25 16:51:53.849575 52637 21 User \N \N 21 User \N update ---\nunique_session_id:\n- e1k8y67LyxbUyN2zSxL7\n- hw2tMNXumPM86Dztxndz\n 840 \N 189.186.132.86 35507381-244a-40f4-993a-07bb60b0201a 2021-02-25 16:51:53.878155 52638 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-02-20 21:10:07.329568000 Z\n- &1 2021-02-23 21:25:48.799938000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-02-28 01:46:00.868273450 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090600\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132502\n mask_addr: 4294967295\nsign_in_count:\n- 780\n- 781\n 1565 \N 187.149.110.86 6ac2576d-7cba-4192-9a87-56f80b16b586 2021-02-28 01:46:00.898072 52639 2 User \N \N 2 User \N update ---\nunique_session_id:\n- osraNxEQU24EzQgx9mSt\n- 6sfwhdcyFc3RqyRn2BMP\n 1566 \N 187.149.110.86 6ac2576d-7cba-4192-9a87-56f80b16b586 2021-02-28 01:46:00.923687 52640 1341 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.0\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 0.0 187.149.110.86 fe4e07a4-b9bd-451f-8d83-1ee06f69d636 2021-02-28 01:46:20.099204 52641 4190 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1341\namount: !ruby/object:BigDecimal 18:0.130662E4\ntax: !ruby/object:BigDecimal 18:0.4138E2\ndiscount: !ruby/object:BigDecimal 18:0.1048E4\ntotal: !ruby/object:BigDecimal 18:0.3E3\nstatus: 0\ndate_sale: 2021-02-27\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1985\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.110.86 f2b9bb1d-5b30-4acd-a707-73052ed2f4a6 2021-02-28 01:49:53.64324 52642 2308 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 3 \N 187.149.110.86 f2b9bb1d-5b30-4acd-a707-73052ed2f4a6 2021-02-28 01:49:53.671839 52643 211 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.3E1\n- !ruby/object:BigDecimal 18:0.2E1\n 6 \N 187.149.110.86 f2b9bb1d-5b30-4acd-a707-73052ed2f4a6 2021-02-28 01:49:53.702996 52644 4190 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.110.86 ef6aa3c6-b1d2-4101-9486-0a58512589ee 2021-02-28 01:49:58.297084 52645 5493 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1341\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.3E3\nmove_type: '1'\nsale_id: 4190\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1985\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.3E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1985 187.149.110.86 ef6aa3c6-b1d2-4101-9486-0a58512589ee 2021-02-28 01:49:58.320571 52646 1367 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1341\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.3E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.3E3\ncash_fund: !ruby/object:BigDecimal 18:0.0\nphysical_cash: !ruby/object:BigDecimal 18:0.3E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.110.86 dda819f5-4637-4bed-8b5c-8637d23ebe5d 2021-02-28 02:22:54.483277 52647 1341 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.110.86 dda819f5-4637-4bed-8b5c-8637d23ebe5d 2021-02-28 02:22:54.497162 52648 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-02-23 21:25:48.799938000 Z\n- &1 2021-02-28 01:46:00.868273000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-01 19:19:36.515234606 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183090600\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132502\n mask_addr: 4294967295\nsign_in_count:\n- 781\n- 782\n 1567 \N 187.149.110.86 a5e3b72a-3991-4a62-95d6-9afb982b6134 2021-03-01 19:19:36.542948 52649 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 6sfwhdcyFc3RqyRn2BMP\n- Yw3UweRugjCCjnR3pDRh\n 1568 \N 187.149.110.86 a5e3b72a-3991-4a62-95d6-9afb982b6134 2021-03-01 19:19:36.566194 52650 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-02-23 19:35:22.952263000 Z\n- &1 2021-02-25 16:51:53.805855000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-01 19:45:03.230046636 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183104934\n mask_addr: 4294967295\nsign_in_count:\n- 419\n- 420\n 841 \N 189.186.83.166 e87c143f-3c1d-4096-8edc-7fc0cc486200 2021-03-01 19:45:03.239494 52651 21 User \N \N 21 User \N update ---\nunique_session_id:\n- hw2tMNXumPM86Dztxndz\n- YZGMYGp-HPGPV8WXYUZm\n 842 \N 189.186.83.166 e87c143f-3c1d-4096-8edc-7fc0cc486200 2021-03-01 19:45:03.310813 52652 5494 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1304\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.4E3\nmove_type: '1'\nsale_id: 4121\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '1245'\n 1 \N 189.186.83.166 3481de35-d006-4e2c-bacf-6146c6edc4f7 2021-03-01 19:46:43.515881 52653 5494 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 1304\n- \n 2 movimiento de efectivo por venta con folio PV3-V-1258 189.186.83.166 3481de35-d006-4e2c-bacf-6146c6edc4f7 2021-03-01 19:46:43.559111 52654 1342 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.0\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 0.0 187.149.110.86 07064bf9-07d8-4a37-9dc2-bbd13762cc67 2021-03-02 00:00:58.483733 52655 4191 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1342\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.349E3\ntotal: !ruby/object:BigDecimal 18:0.15E3\nstatus: 0\ndate_sale: 2021-03-01\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1986\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.110.86 5366762c-3e5a-447c-a38c-3c43aecaf32f 2021-03-02 00:30:10.079284 52656 1936 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 6 \N 187.149.110.86 5366762c-3e5a-447c-a38c-3c43aecaf32f 2021-03-02 00:30:10.114814 52658 5495 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1342\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.15E3\nmove_type: '1'\nsale_id: 4191\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1986\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.15E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1986 187.149.110.86 c2030029-83cb-4efc-ba17-6b756749469d 2021-03-02 00:30:14.847445 52659 1368 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1342\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.15E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.15E3\ncash_fund: !ruby/object:BigDecimal 18:0.0\nphysical_cash: !ruby/object:BigDecimal 18:0.15E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.110.86 62d7c84f-857c-475e-ad27-282f79c9c2b2 2021-03-02 01:30:23.220179 52660 1342 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.110.86 62d7c84f-857c-475e-ad27-282f79c9c2b2 2021-03-02 01:30:23.264741 52661 5496 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1208\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.3E3\nmove_type: '1'\nsale_id: 3589\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: '445'\n 1 \N 189.186.112.255 beac9770-b42c-4ee4-b892-a452a16707de 2021-03-02 02:04:36.963608 52662 3589 Sale \N \N 21 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 189.186.112.255 beac9770-b42c-4ee4-b892-a452a16707de 2021-03-02 02:04:37.005773 52663 5496 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 1208\n- \n 2 movimiento de efectivo por venta con folio PV3-V-960 189.186.112.255 beac9770-b42c-4ee4-b892-a452a16707de 2021-03-02 02:04:37.020927 52664 5497 CashRegistersMove \N \N 21 User \N create ---\nopen_cash_register_id: 1137\npayment_method_id: 3\nquantity: !ruby/object:BigDecimal 18:0.1398E4\nmove_type: '1'\nsale_id: 3274\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: \nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: SS\n 1 \N 189.186.112.255 54453685-78b5-446e-99fa-2be10d711345 2021-03-02 02:06:15.233447 52665 3274 Sale \N \N 21 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.112.255 54453685-78b5-446e-99fa-2be10d711345 2021-03-02 02:06:15.25676 52666 5497 CashRegistersMove \N \N 21 User \N update ---\nopen_cash_register_id:\n- 1137\n- \n 2 movimiento de efectivo por venta con folio PV1-V-1560 189.186.112.255 54453685-78b5-446e-99fa-2be10d711345 2021-03-02 02:06:15.270272 52667 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-02-20 17:07:00.040397000 Z\n- &1 2021-02-24 20:35:36.687060000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-03 00:49:46.325440276 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535998\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112447\n mask_addr: 4294967295\nsign_in_count:\n- 2340\n- 2341\n 4682 \N 189.186.112.255 4f9993b1-2e05-465c-b783-f14b6ff2b030 2021-03-03 00:49:46.355981 52668 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Bw4Zab5Z4pV1jDr9dC_x\n- zGZtETwba6Yy5J2z4pwb\n 4683 \N 189.186.112.255 4f9993b1-2e05-465c-b783-f14b6ff2b030 2021-03-03 00:49:46.384005 52669 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-02-28 01:46:00.868273000 Z\n- &1 2021-03-01 19:19:36.515234000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-03 18:08:18.480516332 Z\nsign_in_count:\n- 782\n- 783\n 1569 \N 187.149.110.86 437fd545-98a0-42e4-a057-837c5e2185fe 2021-03-03 18:08:18.507383 52670 2 User \N \N 2 User \N update ---\nunique_session_id:\n- Yw3UweRugjCCjnR3pDRh\n- 5Lsxs9u_Byn53MELpA_V\n 1570 \N 187.149.110.86 437fd545-98a0-42e4-a057-837c5e2185fe 2021-03-03 18:08:18.530249 52671 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-02-25 16:51:53.805855000 Z\n- &1 2021-03-01 19:45:03.230046000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-03 22:54:32.128296657 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183104934\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183104934\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112447\n mask_addr: 4294967295\nsign_in_count:\n- 420\n- 421\n 843 \N 189.186.112.255 0cacb971-e92e-4ac1-9fb7-3f8e4d7ef43b 2021-03-03 22:54:32.13525 52672 21 User \N \N 21 User \N update ---\nunique_session_id:\n- YZGMYGp-HPGPV8WXYUZm\n- yKB9m7tXmJdwyePL2A48\n 844 \N 189.186.112.255 0cacb971-e92e-4ac1-9fb7-3f8e4d7ef43b 2021-03-03 22:54:32.150767 52673 1343 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.0\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 0.0 187.149.110.86 ecdd46e5-d281-49fb-a9f8-fe4ba5199bd9 2021-03-03 23:21:52.203356 52674 5498 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1206\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 18:0.1144E4\nmove_type: '1'\nsale_id: 3579\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 3\nticket: \nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.1144E4\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 \N 187.149.110.86 bab85ec4-ad34-4043-a981-fe2e62a081bc 2021-03-03 23:25:23.54269 52675 3579 Sale \N \N 2 User \N update ---\nstatus:\n- parcial\n- 2\n 3 \N 187.149.110.86 bab85ec4-ad34-4043-a981-fe2e62a081bc 2021-03-03 23:25:23.57156 52676 5498 CashRegistersMove \N \N 2 User \N update ---\nopen_cash_register_id:\n- 1206\n- 1343\n 2 movimiento de efectivo por venta con folio PV1-V-1703 187.149.110.86 bab85ec4-ad34-4043-a981-fe2e62a081bc 2021-03-03 23:25:23.586649 52677 4192 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1343\namount: !ruby/object:BigDecimal 18:0.609E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.304E3\ntotal: !ruby/object:BigDecimal 18:0.305E3\nstatus: 0\ndate_sale: 2021-03-03\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1987\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.110.86 35db4556-da69-432c-9562-0d2d2df8acf3 2021-03-04 01:09:21.709879 52678 675 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.1E1\n- !ruby/object:BigDecimal 18:0.0\n 5 \N 187.149.110.86 35db4556-da69-432c-9562-0d2d2df8acf3 2021-03-04 01:09:21.738297 52679 4192 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.110.86 3eea61e0-a42e-4f91-966e-b8f7e65071db 2021-03-04 01:09:30.602928 52704 2 User \N \N 2 User \N update ---\nunique_session_id:\n- y9d2srAHf6LMDx1CUkyD\n- G_MzrVmMqoyt9S17Pifx\n 1574 \N 187.149.110.86 9c0b6561-b3f0-45b8-a5d5-97ad5ceda605 2021-03-05 23:24:38.54878 52705 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-03-04 18:49:40.124043000 Z\n- &1 2021-03-05 23:24:38.526865000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-06 20:25:20.758816549 Z\nsign_in_count:\n- 785\n- 786\n 1575 \N 187.149.110.86 d82734a9-8280-4a6b-acba-415b1ba55bb4 2021-03-06 20:25:20.787767 52680 5499 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1343\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.305E3\nmove_type: '1'\nsale_id: 4192\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1987\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.305E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1987 187.149.110.86 3eea61e0-a42e-4f91-966e-b8f7e65071db 2021-03-04 01:09:30.631504 52681 1369 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1343\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.1449E4\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.1449E4\ncash_fund: !ruby/object:BigDecimal 18:0.0\nphysical_cash: !ruby/object:BigDecimal 18:0.1449E4\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.110.86 a3b67cee-bc4c-4861-b02a-09ad72d74395 2021-03-04 01:35:56.548696 52682 1343 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.110.86 a3b67cee-bc4c-4861-b02a-09ad72d74395 2021-03-04 01:35:56.569895 52683 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-02-24 20:35:36.687060000 Z\n- &1 2021-03-03 00:49:46.325440000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-04 18:43:36.214646069 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112447\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112447\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535062\n mask_addr: 4294967295\nsign_in_count:\n- 2341\n- 2342\n 4684 \N 177.228.100.22 3509b86a-f25f-4177-9c21-b6c927844c24 2021-03-04 18:43:36.255414 52684 4 User \N \N 4 User \N update ---\nunique_session_id:\n- zGZtETwba6Yy5J2z4pwb\n- svwdKoZsLsdwzHqUsJso\n 4685 \N 177.228.100.22 3509b86a-f25f-4177-9c21-b6c927844c24 2021-03-04 18:43:36.293446 52685 2 User \N \N 2 User \N update ---\nlast_sign_in_at:\n- 2021-03-01 19:19:36.515234000 Z\n- &1 2021-03-03 18:08:18.480516000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-04 18:49:40.124043604 Z\nsign_in_count:\n- 783\n- 784\n 1571 \N 187.149.110.86 a5a2e4a5-415b-471d-969f-daa673117355 2021-03-04 18:49:40.153631 52686 2 User \N \N 2 User \N update ---\nunique_session_id:\n- 5Lsxs9u_Byn53MELpA_V\n- y9d2srAHf6LMDx1CUkyD\n 1572 \N 187.149.110.86 a5a2e4a5-415b-471d-969f-daa673117355 2021-03-04 18:49:40.184981 52687 1344 OpenCashRegister \N \N 2 User \N create ---\ncash_register_id: 1\nuser_id: 2\ninitial_cash: !ruby/object:BigDecimal 18:0.0\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 0.0 187.149.110.86 47de413d-affb-4719-86f4-2d04ba779d16 2021-03-05 01:27:23.0117 52688 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-02-22 01:14:51.320274000 Z\n- &1 2021-02-22 01:15:08.700766000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-05 01:30:01.068834593 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723156\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984545270\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984545270\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132502\n mask_addr: 4294967295\nsign_in_count:\n- 477\n- 478\n 956 \N 187.149.110.86 c0cfa47e-d244-4028-a5b0-d9928ea756a9 2021-03-05 01:30:01.078449 52689 1 User \N \N 1 User \N update ---\nunique_session_id:\n- T_L78upEN7i3LFiQBjyS\n- 9vrouE1PuDAv3gaFjz6a\n 957 \N 187.149.110.86 c0cfa47e-d244-4028-a5b0-d9928ea756a9 2021-03-05 01:30:01.097071 52690 950 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.8E1\n- !ruby/object:BigDecimal 18:0.7E1\n 6 \N 187.149.110.86 5e0b7393-01b8-445c-b946-bd2ba21c1f98 2021-03-05 01:30:47.981263 52691 950 AvailableProduct \N \N 1 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.7E1\n- !ruby/object:BigDecimal 18:0.2E1\n 7 \N 187.149.110.86 893af230-d495-418e-a5d0-965b05f6358b 2021-03-05 01:32:02.496504 52692 821 Transfer \N \N 1 User \N create ---\norigin_id: 3\ndestiny_id: 1\ntransfer_date: 2021-03-04\nuser_id: 1\nstatus: 1\nreceived_by_id: \nobservations: \nreception_date: \norigin_is_pointsale: 1\ndestiny_is_pointsale: 1\n 1 Traspaso de SUO Comercial a SUO creado. 187.149.110.86 7893373f-7ed7-4697-9999-fac904e5c832 2021-03-05 01:32:06.159056 52693 821 Transfer \N \N 2 User \N update ---\nobservations:\n- \n- ''\nreceived_by_id:\n- \n- 2\nstatus:\n- pending\n- 2\nreception_date:\n- \n- 2021-03-04\n 2 Se dio entrada a traspaso de SUO Comercial a SUO 187.149.110.86 d7ce21a0-5fce-4fc7-b168-2493bcd4ac25 2021-03-05 01:32:33.264785 52694 3 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.0\n- !ruby/object:BigDecimal 18:0.6E1\n 8 \N 187.149.110.86 d7ce21a0-5fce-4fc7-b168-2493bcd4ac25 2021-03-05 01:32:33.284148 52695 4193 Sale \N \N 2 User \N create ---\ncustomer_id: 1\nuser_id: 2\nopen_cash_register_id: 1344\namount: !ruby/object:BigDecimal 18:0.64072E3\ntax: !ruby/object:BigDecimal 18:0.4828E2\ndiscount: !ruby/object:BigDecimal 18:0.339E3\ntotal: !ruby/object:BigDecimal 18:0.35E3\nstatus: 0\ndate_sale: 2021-03-04\nsaletype: 1\nseller_id: 1\nsale_code: PV1-V-1988\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 187.149.110.86 93ae441c-a1be-44b5-9871-35c4b8abdb17 2021-03-05 01:33:14.670256 52696 3 AvailableProduct \N \N 2 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.6E1\n- !ruby/object:BigDecimal 18:0.5E1\n 9 \N 187.149.110.86 93ae441c-a1be-44b5-9871-35c4b8abdb17 2021-03-05 01:33:14.700352 52697 4193 Sale \N \N 2 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 187.149.110.86 80e98dd3-136f-4086-8bc0-e6105d18d8c8 2021-03-05 01:33:19.258615 52698 5500 CashRegistersMove \N \N 2 User \N create ---\nopen_cash_register_id: 1344\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.35E3\nmove_type: '1'\nsale_id: 4193\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV1-V-1988\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.35E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV1-V-1988 187.149.110.86 80e98dd3-136f-4086-8bc0-e6105d18d8c8 2021-03-05 01:33:19.288551 52699 1370 CashOut \N \N 2 User \N create ---\nopen_cash_register_id: 1344\nuser_id: 2\namount_in: !ruby/object:BigDecimal 18:0.35E3\namount_out: !ruby/object:BigDecimal 18:0.0\nreceived_by_id: 2\nreceived_cash: !ruby/object:BigDecimal 18:0.35E3\ncash_fund: !ruby/object:BigDecimal 18:0.0\nphysical_cash: !ruby/object:BigDecimal 18:0.35E3\nobservations: ''\ninvoice_num: \n 1 Corte de caja de Punto de venta 1 Principal realizado correctamente 187.149.110.86 d93369b7-fa94-4dee-a2c0-3547afbf7ba9 2021-03-05 01:59:49.548103 52700 1344 OpenCashRegister \N \N 2 User \N update ---\nstatus:\n- open\n- 1\n 2 \N 187.149.110.86 d93369b7-fa94-4dee-a2c0-3547afbf7ba9 2021-03-05 01:59:49.561921 52701 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-03-03 00:49:46.325440000 Z\n- &1 2021-03-04 18:43:36.214646000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-05 23:09:32.227999008 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112447\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535062\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535062\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112447\n mask_addr: 4294967295\nsign_in_count:\n- 2342\n- 2343\n 4686 \N 189.186.112.255 c28758ba-077d-4d7d-b458-56feefec7e97 2021-03-05 23:09:32.274222 52706 2 User \N \N 2 User \N update ---\nunique_session_id:\n- G_MzrVmMqoyt9S17Pifx\n- H4hhYNkhCizSSwj2gU3b\n 1576 \N 187.149.110.86 d82734a9-8280-4a6b-acba-415b1ba55bb4 2021-03-06 20:25:20.80945 52707 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-03-01 19:45:03.230046000 Z\n- &1 2021-03-03 22:54:32.128296000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-08 19:41:39.731802319 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183104934\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112447\n mask_addr: 4294967295\nsign_in_count:\n- 421\n- 422\n 845 \N 189.186.112.255 7a491c2c-8acd-4c07-b6f2-e8c71f61777f 2021-03-08 19:41:39.761524 52708 21 User \N \N 21 User \N update ---\nunique_session_id:\n- yKB9m7tXmJdwyePL2A48\n- kLYs_jpH3CUrc2RPihwA\n 846 \N 189.186.112.255 7a491c2c-8acd-4c07-b6f2-e8c71f61777f 2021-03-08 19:41:39.787103 52709 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-03-04 18:43:36.214646000 Z\n- &1 2021-03-05 23:09:32.227999000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-08 20:45:35.311973017 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984535062\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112447\n mask_addr: 4294967295\nsign_in_count:\n- 2343\n- 2344\n 4688 \N 189.186.112.255 604d3f1e-7c1a-44bb-90ca-6635be79f19a 2021-03-08 20:45:35.322162 52710 4 User \N \N 4 User \N update ---\nunique_session_id:\n- P5vD3Tzqb-MFRbk4CDo3\n- qX32j-mVucEi3QMiZKN1\n 4689 \N 189.186.112.255 604d3f1e-7c1a-44bb-90ca-6635be79f19a 2021-03-08 20:45:35.349396 52711 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-03-05 23:09:32.227999000 Z\n- &1 2021-03-08 20:45:35.311973000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-10 21:20:14.138588215 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112447\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132502\n mask_addr: 4294967295\nsign_in_count:\n- 2344\n- 2345\n 4690 \N 187.149.110.86 9cf6e9bf-4c5b-4d0d-a808-bdbeae3e0341 2021-03-10 21:20:14.166221 52712 4 User \N \N 4 User \N update ---\nunique_session_id:\n- qX32j-mVucEi3QMiZKN1\n- iQDzooyaoGnmyYKexgyz\n 4691 \N 187.149.110.86 9cf6e9bf-4c5b-4d0d-a808-bdbeae3e0341 2021-03-10 21:20:14.191569 52713 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-03-08 20:45:35.311973000 Z\n- &1 2021-03-10 21:20:14.138588000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-11 21:28:32.335937295 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183112447\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132502\n mask_addr: 4294967295\nsign_in_count:\n- 2345\n- 2346\n 4692 \N 187.149.110.86 992a80b8-9ae1-489d-8338-fb6e5fc77a89 2021-03-11 21:28:32.366505 52714 4 User \N \N 4 User \N update ---\nunique_session_id:\n- iQDzooyaoGnmyYKexgyz\n- Q8PLWEQgVkSMyDEi5ywY\n 4693 \N 187.149.110.86 992a80b8-9ae1-489d-8338-fb6e5fc77a89 2021-03-11 21:28:32.393982 52715 9 User \N \N 9 User \N update ---\nlast_sign_in_at:\n- 2021-01-05 01:53:22.494953000 Z\n- &1 2021-01-05 01:53:31.367565000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-11 21:52:01.889087329 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183099441\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147135456\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132502\n mask_addr: 4294967295\nsign_in_count:\n- 243\n- 244\n 488 \N 187.149.110.86 225b68de-12ea-4a77-a6bd-7dc73340fd81 2021-03-11 21:52:01.915556 52716 9 User \N \N 9 User \N update ---\nunique_session_id:\n- FNo-JfmFoZUdyxxkPx1h\n- sgFYfEqXMwtyuGU_zsqD\n 489 \N 187.149.110.86 225b68de-12ea-4a77-a6bd-7dc73340fd81 2021-03-11 21:52:01.939636 52717 1345 OpenCashRegister \N \N 9 User \N create ---\ncash_register_id: 1\nuser_id: 9\ninitial_cash: !ruby/object:BigDecimal 18:0.0\nfinal_cash: !ruby/object:BigDecimal 18:0.0\nstatus: 0\n 1 Caja Punto de venta 1 Principal abierta con 0.0 187.149.110.86 38c127a1-ef85-436c-8a11-a4afc1a8c17b 2021-03-11 21:52:06.149041 52718 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-02-16 01:07:15.252348000 Z\n- &1 2021-02-19 00:17:15.228012000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-11 21:52:32.297902108 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132502\n mask_addr: 4294967295\nsign_in_count:\n- 497\n- 498\n 997 \N 187.149.110.86 e1acab3f-0e82-4720-8291-e28b2abcd315 2021-03-11 21:52:32.304219 52719 18 User \N \N 18 User \N update ---\nunique_session_id:\n- GA-H7aCcoEdcvDiBCWJt\n- V9jP1Jc2UCRD7HzQpqU9\n 998 \N 187.149.110.86 e1acab3f-0e82-4720-8291-e28b2abcd315 2021-03-11 21:52:32.32065 52720 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-03-10 21:20:14.138588000 Z\n- &1 2021-03-11 21:28:32.335937000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-12 01:13:09.419580510 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132502\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120525\n mask_addr: 4294967295\nsign_in_count:\n- 2346\n- 2347\n 4694 \N 187.149.63.141 088406aa-53f1-4f06-a785-b21514176082 2021-03-12 01:13:09.428456 52721 4 User \N \N 4 User \N update ---\nunique_session_id:\n- Q8PLWEQgVkSMyDEi5ywY\n- sCRUNJa6hCSH9yZiao7u\n 4695 \N 187.149.63.141 088406aa-53f1-4f06-a785-b21514176082 2021-03-12 01:13:09.453711 52722 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-02-22 01:15:08.700766000 Z\n- &1 2021-03-05 01:30:01.068834000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-12 21:15:43.314158450 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2984545270\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132502\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132502\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3149814443\n mask_addr: 4294967295\nsign_in_count:\n- 478\n- 479\n 958 \N 187.190.90.171 4eebbe28-f1a1-433c-a149-bcdf3de472ea 2021-03-12 21:15:43.344836 52723 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 9vrouE1PuDAv3gaFjz6a\n- m13eJ82dt8zNAnrb6Dhs\n 959 \N 187.190.90.171 4eebbe28-f1a1-433c-a149-bcdf3de472ea 2021-03-12 21:15:43.368313 52724 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-03-05 01:30:01.068834000 Z\n- &1 2021-03-12 21:15:43.314158000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-13 20:14:48.313830659 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132502\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3149814443\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3149814443\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723406\n mask_addr: 4294967295\nsign_in_count:\n- 479\n- 480\n 960 \N 189.195.195.142 aea3a193-49f3-4c3d-b295-02ec2552bef0 2021-03-13 20:14:48.343475 52725 1 User \N \N 1 User \N update ---\nunique_session_id:\n- m13eJ82dt8zNAnrb6Dhs\n- WTraDvb-QusWYMdqFyyd\n 961 \N 189.195.195.142 aea3a193-49f3-4c3d-b295-02ec2552bef0 2021-03-13 20:14:48.369471 52726 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-03-11 21:28:32.335937000 Z\n- &1 2021-03-12 01:13:09.419580000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-13 20:17:47.276869872 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132502\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120525\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120525\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723406\n mask_addr: 4294967295\nsign_in_count:\n- 2347\n- 2348\n 4696 \N 189.195.195.142 53968ce4-bfbe-4c9a-9e58-e67d3a7b2e51 2021-03-13 20:17:47.283995 52727 4 User \N \N 4 User \N update ---\nunique_session_id:\n- sCRUNJa6hCSH9yZiao7u\n- CWQR-xctfUc_EAEZ5nRV\n 4697 \N 189.195.195.142 53968ce4-bfbe-4c9a-9e58-e67d3a7b2e51 2021-03-13 20:17:47.303482 52728 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-03-12 01:13:09.419580000 Z\n- &1 2021-03-13 20:17:47.276869000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-13 20:36:33.091142205 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120525\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723406\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723406\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2985875251\n mask_addr: 4294967295\nsign_in_count:\n- 2348\n- 2349\n 4698 \N 177.248.215.51 e9d849ca-eb7e-43b3-8582-01e3f5b40bc9 2021-03-13 20:36:33.098242 52729 4 User \N \N 4 User \N update ---\nunique_session_id:\n- CWQR-xctfUc_EAEZ5nRV\n- _K4PpA-7ykZTYyEZo-Ec\n 4699 \N 177.248.215.51 e9d849ca-eb7e-43b3-8582-01e3f5b40bc9 2021-03-13 20:36:33.118633 52730 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-03-12 21:15:43.314158000 Z\n- &1 2021-03-13 20:14:48.313830000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-13 20:37:01.583469729 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3149814443\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723406\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723406\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2985875251\n mask_addr: 4294967295\nsign_in_count:\n- 480\n- 481\n 962 \N 177.248.215.51 bd92cf37-9cba-4b0b-9489-9e852ed0ac1c 2021-03-13 20:37:01.595367 52731 1 User \N \N 1 User \N update ---\nunique_session_id:\n- WTraDvb-QusWYMdqFyyd\n- 4uC_CHpkxEs1UbUDj6Az\n 963 \N 177.248.215.51 bd92cf37-9cba-4b0b-9489-9e852ed0ac1c 2021-03-13 20:37:01.618312 52732 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-03-13 20:14:48.313830000 Z\n- &1 2021-03-13 20:37:01.583469000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-13 20:38:14.400651348 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723406\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2985875251\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2985875251\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723406\n mask_addr: 4294967295\nsign_in_count:\n- 481\n- 482\n 964 \N 189.195.195.142 f24a724e-a021-4693-9443-9215d16a8261 2021-03-13 20:38:14.407655 52733 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 4uC_CHpkxEs1UbUDj6Az\n- d4Yw2c1mB4hvJsLiG3yS\n 965 \N 189.195.195.142 f24a724e-a021-4693-9443-9215d16a8261 2021-03-13 20:38:14.426752 52734 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-03-13 20:17:47.276869000 Z\n- &1 2021-03-13 20:36:33.091142000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-13 20:39:23.199061837 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723406\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2985875251\n mask_addr: 4294967295\nsign_in_count:\n- 2349\n- 2350\n 4700 \N 177.248.215.51 594a0ff6-3a6b-4ee3-989e-464006ff7b8d 2021-03-13 20:39:23.205605 52735 4 User \N \N 4 User \N update ---\nunique_session_id:\n- _K4PpA-7ykZTYyEZo-Ec\n- JmHem79HGmGZ4yCWhJc3\n 4701 \N 177.248.215.51 594a0ff6-3a6b-4ee3-989e-464006ff7b8d 2021-03-13 20:39:23.223147 52736 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-03-13 20:36:33.091142000 Z\n- &1 2021-03-13 20:39:23.199061000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-13 23:11:59.770072224 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2985875251\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120525\n mask_addr: 4294967295\nsign_in_count:\n- 2350\n- 2351\n 4702 \N 187.149.63.141 07ee0be0-c088-4a01-91e9-8a61ac0ad126 2021-03-13 23:11:59.804259 52737 4 User \N \N 4 User \N update ---\nunique_session_id:\n- JmHem79HGmGZ4yCWhJc3\n- 4g2gDu-2TJ2yTR9BnbLs\n 4703 \N 187.149.63.141 07ee0be0-c088-4a01-91e9-8a61ac0ad126 2021-03-13 23:11:59.836276 52738 21 User \N \N 21 User \N update ---\nlast_sign_in_at:\n- 2021-03-03 22:54:32.128296000 Z\n- &1 2021-03-08 19:41:39.731802000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-14 01:39:06.943835579 Z\nsign_in_count:\n- 422\n- 423\n 847 \N 189.186.112.255 d76b4aaa-95c0-4f43-9605-cd0c28d5116d 2021-03-14 01:39:06.972023 52739 21 User \N \N 21 User \N update ---\nunique_session_id:\n- kLYs_jpH3CUrc2RPihwA\n- UNwsFQU-mohxmxxLE4Ui\n 848 \N 189.186.112.255 d76b4aaa-95c0-4f43-9605-cd0c28d5116d 2021-03-14 01:39:06.995227 52740 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-03-13 20:39:23.199061000 Z\n- &1 2021-03-13 23:11:59.770072000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-17 00:50:59.109535455 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2985875251\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120525\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120525\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123667\n mask_addr: 4294967295\nsign_in_count:\n- 2351\n- 2352\n 4704 \N 189.186.156.211 a78f9286-2bb7-4392-ab14-91c91845e001 2021-03-17 00:50:59.138027 52741 4 User \N \N 4 User \N update ---\nunique_session_id:\n- 4g2gDu-2TJ2yTR9BnbLs\n- if8YtdWTPPqzyLvLqM3n\n 4705 \N 189.186.156.211 a78f9286-2bb7-4392-ab14-91c91845e001 2021-03-17 00:50:59.176424 52742 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-03-13 20:37:01.583469000 Z\n- &1 2021-03-13 20:38:14.400651000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-17 06:51:30.760015176 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2985875251\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723406\n mask_addr: 4294967295\nsign_in_count:\n- 482\n- 483\n 966 \N 189.195.195.142 b1547884-dc37-44ba-a836-68e8effa857f 2021-03-17 06:51:30.791906 52743 1 User \N \N 1 User \N update ---\nunique_session_id:\n- d4Yw2c1mB4hvJsLiG3yS\n- 3ZpdScwGGQTt_sVWy-8Y\n 967 \N 189.195.195.142 b1547884-dc37-44ba-a836-68e8effa857f 2021-03-17 06:51:30.817079 52744 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-03-13 20:38:14.400651000 Z\n- &1 2021-03-17 06:51:30.760015000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-17 23:48:26.651163890 Z\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723406\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2985875251\n mask_addr: 4294967295\nsign_in_count:\n- 483\n- 484\n 968 \N 177.248.215.51 df33e260-4613-4bcf-b961-6c9840b7f52f 2021-03-17 23:48:26.671108 52745 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 3ZpdScwGGQTt_sVWy-8Y\n- 31cZnYyRwhxz9KMCLmdS\n 969 \N 177.248.215.51 df33e260-4613-4bcf-b961-6c9840b7f52f 2021-03-17 23:48:26.692861 52746 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-03-17 06:51:30.760015000 Z\n- &1 2021-03-17 23:48:26.651163000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-18 04:28:48.833335017 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723406\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2985875251\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2985875251\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723406\n mask_addr: 4294967295\nsign_in_count:\n- 484\n- 485\n 970 \N 189.195.195.142 2e7df2c4-63c6-4722-94a8-15dd598a377d 2021-03-18 04:28:48.865325 52747 1 User \N \N 1 User \N update ---\nunique_session_id:\n- 31cZnYyRwhxz9KMCLmdS\n- i_1k8xDyfDmyKtN_yNjT\n 971 \N 189.195.195.142 2e7df2c4-63c6-4722-94a8-15dd598a377d 2021-03-18 04:28:48.891389 52748 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-03-17 23:48:26.651163000 Z\n- &1 2021-03-18 04:28:48.833335000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-19 00:19:10.210680380 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2985875251\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723406\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723406\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2985875251\n mask_addr: 4294967295\nsign_in_count:\n- 485\n- 486\n 972 \N 177.248.215.51 b6902d03-a8f9-48b3-af6a-951cc07d54d2 2021-03-19 00:19:10.242795 52749 1 User \N \N 1 User \N update ---\nunique_session_id:\n- i_1k8xDyfDmyKtN_yNjT\n- rFbqFts5m7LHzMCryNpo\n 973 \N 177.248.215.51 b6902d03-a8f9-48b3-af6a-951cc07d54d2 2021-03-19 00:19:10.26874 52750 26 Category \N \N 1 User \N create ---\ncategory: ROPA\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto ROPA fue creada. 177.248.215.51 f8c47a80-4513-4fe1-a07c-918c246bbec8 2021-03-19 00:33:49.87424 52751 27 Category \N \N 1 User \N create ---\ncategory: CANGURERA\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto CANGURERA fue creada. 177.248.215.51 afcf5611-ccd2-4729-ae73-a35b4d0d2657 2021-03-19 00:35:51.028758 52752 13 Category \N \N 1 User \N update ---\ncategory:\n- ZAPATO\n- CALZADO\n 2 La línea de producto CALZADO fue modificada. 177.248.215.51 aa9ae90f-a977-410d-8172-4c07a01e9255 2021-03-19 00:37:11.378378 52753 28 Category \N \N 1 User \N create ---\ncategory: MOCASIN\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto MOCASIN fue creada. 177.248.215.51 0addcbc8-d631-4bfb-923d-31c516b2493f 2021-03-19 00:37:56.029533 52754 29 Category \N \N 1 User \N create ---\ncategory: Sin categoría\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto Sin categoría fue creada. 177.248.215.51 36a07745-a62b-4560-bf3d-be4c2dd6fd23 2021-03-19 00:41:57.384414 52755 13 Category \N \N 1 User \N update ---\ncategory:\n- CALZADO\n- ZAPATOS\n 3 La línea de producto ZAPATOS fue modificada. 177.248.215.51 ec2d8178-8cd4-4500-9098-75a8fa8c1e6f 2021-03-19 00:44:20.566029 52756 30 Category \N \N 1 User \N create ---\ncategory: CALZADO\ndescription: ''\nstatus: 1\nparent_id: 0\n 1 La línea de producto CALZADO fue creada. 177.248.215.51 a236b699-4ebe-40a1-96ac-134d96283507 2021-03-19 00:44:28.607286 52757 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-03-18 04:28:48.833335000 Z\n- &1 2021-03-19 00:19:10.210680000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-19 00:56:39.223842234 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723406\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2985875251\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2985875251\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723406\n mask_addr: 4294967295\nsign_in_count:\n- 486\n- 487\n 974 \N 189.195.195.142 d481e5a1-615d-4849-b6a9-71814f02f631 2021-03-19 00:56:39.231099 52758 1 User \N \N 1 User \N update ---\nunique_session_id:\n- rFbqFts5m7LHzMCryNpo\n- Uvmy2hVzzr7-yxxseDuP\n 975 \N 189.195.195.142 d481e5a1-615d-4849-b6a9-71814f02f631 2021-03-19 00:56:39.252057 52759 4 User \N \N 4 User \N update ---\nlast_sign_in_at:\n- 2021-03-13 23:11:59.770072000 Z\n- &1 2021-03-17 00:50:59.109535000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-19 01:00:14.809565651 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147120525\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123667\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123667\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723406\n mask_addr: 4294967295\nsign_in_count:\n- 2352\n- 2353\n 4706 \N 189.195.195.142 c710a9b5-acc0-47cd-83dd-3a4ec37caf9d 2021-03-19 01:00:14.818736 52760 4 User \N \N 4 User \N update ---\nunique_session_id:\n- if8YtdWTPPqzyLvLqM3n\n- Wu_zWJTjUX53Zn1G-gyZ\n 4707 \N 189.195.195.142 c710a9b5-acc0-47cd-83dd-3a4ec37caf9d 2021-03-19 01:00:14.843216 52761 1 User \N \N 1 User \N update ---\nlast_sign_in_at:\n- 2021-03-19 00:19:10.210680000 Z\n- &1 2021-03-19 00:56:39.223842000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-19 01:00:38.635837836 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 2985875251\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723406\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183723406\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 2985875251\n mask_addr: 4294967295\nsign_in_count:\n- 487\n- 488\n 976 \N 177.248.215.51 970a96a3-ba57-4766-9ecb-01311434d3a2 2021-03-19 01:00:38.647612 52762 1 User \N \N 1 User \N update ---\nunique_session_id:\n- Uvmy2hVzzr7-yxxseDuP\n- 6kEtL8tyFyrHxt2rmeD8\n 977 \N 177.248.215.51 970a96a3-ba57-4766-9ecb-01311434d3a2 2021-03-19 01:00:38.677298 52763 952 Product \N \N 4 User \N update ---\nstatus:\n- active\n- 0\n 3 El producto 1BLCI19315 fue eliminado. 189.195.195.142 6f8e4546-e1ca-4d2c-9f91-bed844684cf8 2021-03-19 01:14:40.485646 52764 18 User \N \N 18 User \N update ---\nlast_sign_in_at:\n- 2021-02-19 00:17:15.228012000 Z\n- &1 2021-03-11 21:52:32.297902000 Z\ncurrent_sign_in_at:\n- *1\n- 2021-03-19 01:29:11.384489071 Z\nlast_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3183117398\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132502\n mask_addr: 4294967295\ncurrent_sign_in_ip:\n- !ruby/object:IPAddr\n family: 2\n addr: 3147132502\n mask_addr: 4294967295\n- !ruby/object:IPAddr\n family: 2\n addr: 3183123667\n mask_addr: 4294967295\nsign_in_count:\n- 498\n- 499\n 999 \N 189.186.156.211 95efb5e2-2f5f-4db6-9667-0ffddee4ced9 2021-03-19 01:29:11.415927 52765 18 User \N \N 18 User \N update ---\nunique_session_id:\n- V9jP1Jc2UCRD7HzQpqU9\n- 8uWXngAJZAV4f3vjA2bR\n 1000 \N 189.186.156.211 95efb5e2-2f5f-4db6-9667-0ffddee4ced9 2021-03-19 01:29:11.441825 52766 4194 Sale \N \N 18 User \N create ---\ncustomer_id: 1\nuser_id: 18\nopen_cash_register_id: 1339\namount: !ruby/object:BigDecimal 18:0.499E3\ntax: !ruby/object:BigDecimal 18:0.0\ndiscount: !ruby/object:BigDecimal 18:0.0\ntotal: !ruby/object:BigDecimal 18:0.499E3\nstatus: 0\ndate_sale: 2021-03-18\nsaletype: 1\nseller_id: 14\nsale_code: PV3-V-1286\nexpiration_date: \ncredit_note: ''\ninvoice_num: \nrequire_invoice: false\n 1 \N 189.186.156.211 151a8785-c458-4a46-9161-f13a02b1154a 2021-03-19 01:29:31.778937 52767 1348 AvailableProduct \N \N 18 User \N update ---\nstock:\n- !ruby/object:BigDecimal 18:0.2E1\n- !ruby/object:BigDecimal 18:0.1E1\n 2 \N 189.186.156.211 151a8785-c458-4a46-9161-f13a02b1154a 2021-03-19 01:29:31.808251 52768 4194 Sale \N \N 18 User \N update ---\nstatus:\n- notpaid\n- 2\n 2 \N 189.186.156.211 715a7f31-b1f6-4238-b257-6814750dff91 2021-03-19 01:29:37.642114 52769 5501 CashRegistersMove \N \N 18 User \N create ---\nopen_cash_register_id: 1339\npayment_method_id: 2\nquantity: !ruby/object:BigDecimal 27:0.499E3\nmove_type: '1'\nsale_id: 4194\ncardnumber: \npurchase_id: \nexpense_id: \nconcept: 0\nticket: PV3-V-1286\nstatus: 1\nreceived: !ruby/object:BigDecimal 18:0.499E3\nchange: !ruby/object:BigDecimal 18:0.0\nproducts_return_id: \ncredit_payment_id: \nbank_name: ''\ncheck_number: ''\ncustomer_account: ''\ncustomer_code: ''\n 1 movimiento de efectivo por venta con folio PV3-V-1286 189.186.156.211 715a7f31-b1f6-4238-b257-6814750dff91 2021-03-19 01:29:37.676039 \. -- -- Name: audits_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.audits_id_seq', 52769, true); -- -- Data for Name: available_products; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.available_products (id, product_id, pointsale_id, stock_min, stock_max, stock, created_at, updated_at, price_sale, products_variant_id) FROM stdin; 95 97 1 0 0 1 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 48 50 1 0 0 0.0 2019-02-03 00:00:00 2019-12-24 17:52:30.538776 \N \N 94 96 1 0 0 0 2019-02-03 00:00:00 2019-06-13 16:51:48.397791 \N \N 40 42 1 0 0 0.0 2019-02-03 00:00:00 2019-09-04 19:44:47.003802 \N \N 90 92 1 0 0 1.0 2019-02-03 00:00:00 2020-06-25 00:49:15.540383 \N \N 3 5 1 0 0 5.0 2019-02-03 00:00:00 2021-03-05 01:33:14.694045 \N \N 55 57 1 0 0 0.0 2019-02-03 00:00:00 2019-03-10 17:31:53.462803 \N \N 16 18 1 0 0 1 2019-02-03 00:00:00 2020-08-07 21:30:12.433459 \N \N 17 19 1 0 0 0.0 2019-02-03 00:00:00 2019-02-12 17:43:58.560318 \N \N 44 46 1 0 0 0.0 2019-02-03 00:00:00 2019-09-03 18:55:00.87104 \N \N 2 4 1 0 0 0.0 2019-02-03 00:00:00 2019-08-21 20:10:13.19336 \N \N 108 110 1 0 0 0.0 2019-02-03 00:00:00 2019-08-11 16:35:30.9348 \N \N 69 71 1 0 0 3.0 2019-02-03 00:00:00 2020-08-29 18:04:55.866521 \N \N 10 12 1 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 98 100 1 0 0 0.0 2019-02-03 00:00:00 2019-09-13 01:15:00.076261 \N \N 9 11 1 0 0 0.0 2019-02-03 00:00:00 2019-10-02 22:50:01.593998 \N \N 49 51 1 0 0 0.0 2019-02-03 00:00:00 2019-09-03 18:54:29.400659 \N \N 66 68 1 0 0 4.0 2019-02-03 00:00:00 2020-09-21 19:34:27.767203 \N \N 103 105 1 0 0 0.0 2019-02-03 00:00:00 2019-05-14 16:42:33.393855 \N \N 80 82 1 0 0 0.0 2019-02-03 00:00:00 2019-09-25 16:28:43.471716 \N \N 50 52 1 0 0 0.0 2019-02-03 00:00:00 2019-03-02 00:04:41.608841 \N \N 15 17 1 0 0 5.0 2019-02-03 00:00:00 2020-09-21 19:34:17.769187 \N \N 53 55 1 0 0 0.0 2019-02-03 00:00:00 2020-07-23 19:06:53.568796 \N \N 67 69 1 0 0 4 2019-02-03 00:00:00 2020-07-01 22:48:35.745748 \N \N 46 48 1 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 104 106 1 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 87 89 1 0 0 0.0 2019-02-03 00:00:00 2020-06-25 20:02:46.182682 \N \N 11 13 1 0 0 2.0 2019-02-03 00:00:00 2021-01-05 20:19:01.50877 \N \N 96 98 1 0 0 0.0 2019-02-03 00:00:00 2020-10-01 23:07:00.822086 \N \N 102 104 1 0 0 0.0 2019-02-03 00:00:00 2019-07-23 01:29:35.405418 \N \N 42 44 1 0 0 0.0 2019-02-03 00:00:00 2019-04-05 21:45:38.183055 \N \N 84 86 1 0 0 1.0 2019-02-03 00:00:00 2020-08-26 20:26:35.308273 \N \N 61 63 1 0 0 0.0 2019-02-03 00:00:00 2020-07-03 22:13:58.504036 749.00 \N 107 109 1 0 0 3.0 2019-02-03 00:00:00 2020-09-21 19:34:18.069024 \N \N 41 43 1 0 0 0.0 2019-02-03 00:00:00 2019-05-09 18:00:00.607496 \N \N 62 64 1 0 0 3.0 2019-02-03 00:00:00 2020-08-13 21:53:33.937149 \N \N 70 72 1 0 0 3.0 2019-02-03 00:00:00 2020-07-01 22:48:36.008028 \N \N 60 62 1 0 0 2.0 2019-02-03 00:00:00 2020-06-25 00:49:15.561477 \N \N 56 58 1 0 0 0.0 2019-02-03 00:00:00 2019-09-03 21:05:19.878085 \N \N 14 16 1 0 0 0.0 2019-02-03 00:00:00 2019-07-18 01:22:46.461065 \N \N 97 99 1 0 0 0.0 2019-02-03 00:00:00 2019-08-11 16:35:31.009204 \N \N 105 107 1 0 0 0.0 2019-02-03 00:00:00 2019-05-14 16:42:33.476403 \N \N 106 108 1 0 0 0.0 2019-02-03 00:00:00 2019-05-14 16:42:33.513166 \N \N 13 15 1 0 0 2.0 2019-02-03 00:00:00 2020-09-21 19:34:17.587212 \N \N 91 93 1 0 0 0.0 2019-02-03 00:00:00 2019-05-14 18:49:07.919069 \N \N 18 20 1 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 59 61 1 0 0 1.0 2019-02-03 00:00:00 2019-05-24 01:21:06.948957 \N \N 72 74 1 0 0 0.0 2019-02-03 00:00:00 2019-08-05 16:26:26.285476 \N \N 85 87 1 0 0 0.0 2019-02-03 00:00:00 2019-09-02 17:33:19.289172 \N \N 75 77 1 0 0 1.0 2019-02-03 00:00:00 2020-06-25 00:49:15.518772 \N \N 73 75 1 0 0 0 2019-02-03 00:00:00 2019-10-15 21:44:25.002283 \N \N 74 76 1 0 0 0.0 2019-02-03 00:00:00 2019-11-03 18:30:22.122252 \N \N 45 47 1 0 0 0.0 2019-02-03 00:00:00 2020-12-25 01:05:47.54856 \N \N 71 73 1 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 39 41 1 0 0 3.0 2019-02-03 00:00:00 2020-12-21 18:23:19.710094 \N \N 51 53 1 0 0 0 2019-02-03 00:00:00 2019-09-03 18:52:56.447307 \N \N 93 95 1 0 0 0.0 2019-02-03 00:00:00 2019-07-07 00:30:44.185893 \N \N 57 59 1 0 0 0.0 2019-02-03 00:00:00 2019-07-13 20:18:30.861162 \N \N 89 91 1 0 0 0.0 2019-02-03 00:00:00 2019-07-13 23:55:38.996165 \N \N 77 79 1 0 0 3.0 2019-02-03 00:00:00 2020-06-25 00:49:28.267427 \N \N 63 65 1 0 0 0.0 2019-02-03 00:00:00 2019-08-17 21:02:14.361875 \N \N 12 14 1 0 0 0.0 2019-02-03 00:00:00 2019-10-11 20:16:03.391045 \N \N 37 39 1 0 0 0.0 2019-02-03 00:00:00 2019-09-03 20:43:47.946969 \N \N 8 10 1 0 0 0.0 2019-02-03 00:00:00 2020-10-22 18:31:39.867805 \N \N 31 33 1 0 0 0.0 2019-02-03 00:00:00 2020-07-17 19:44:05.794244 \N \N 35 37 1 0 0 0.0 2019-02-03 00:00:00 2019-09-03 20:48:36.493211 \N \N 34 36 1 0 0 0.0 2019-02-03 00:00:00 2020-07-03 21:58:03.054726 \N \N 33 35 1 0 0 0.0 2019-02-03 00:00:00 2019-09-03 20:45:06.720749 \N \N 36 38 1 0 0 0.0 2019-02-03 00:00:00 2020-08-22 18:16:40.089215 \N \N 38 40 1 0 0 0.0 2019-02-03 00:00:00 2020-07-17 19:44:18.07782 \N \N 30 32 1 0 0 0.0 2019-02-03 00:00:00 2019-09-03 20:45:46.389287 \N \N 29 31 1 0 0 0.0 2019-02-03 00:00:00 2020-07-17 19:43:22.271074 \N \N 32 34 1 0 0 0.0 2019-02-03 00:00:00 2019-09-03 20:48:49.641765 \N \N 27 29 1 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:10:25.855649 \N \N 25 27 1 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:10:35.028993 \N \N 19 21 1 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:10:40.464282 \N \N 24 26 1 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:10:51.770208 \N \N 28 30 1 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:11:03.138687 \N \N 21 23 1 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:13:05.778024 \N \N 20 22 1 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:11:28.17739 \N \N 22 24 1 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:13:09.329289 \N \N 7 9 1 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:42:24.561373 \N \N 76 78 1 0 0 1.0 2019-02-03 00:00:00 2020-08-15 17:48:08.040232 \N \N 43 45 1 0 0 0.0 2019-02-03 00:00:00 2020-12-21 20:53:38.084438 \N \N 101 103 1 0 0 0.0 2019-02-03 00:00:00 2020-08-19 23:58:09.796432 \N \N 64 66 1 0 0 10.0 2019-02-03 00:00:00 2020-07-01 22:48:35.710314 \N \N 52 54 1 0 0 0 2019-02-03 00:00:00 2020-06-24 00:10:50.60649 \N \N 88 90 1 0 0 0.0 2019-02-03 00:00:00 2020-09-16 21:47:31.566533 \N \N 83 85 1 0 0 1.0 2019-02-03 00:00:00 2019-12-04 22:44:46.969655 \N \N 5 7 1 0 0 2.0 2019-02-03 00:00:00 2021-02-04 23:43:58.417672 \N \N 82 84 1 0 0 0.0 2019-02-03 00:00:00 2020-08-15 16:17:40.619066 \N \N 92 94 1 0 0 1.0 2019-02-03 00:00:00 2020-07-01 22:48:35.851882 \N \N 65 67 1 0 0 0.0 2019-02-03 00:00:00 2020-02-02 00:10:17.613574 \N \N 54 56 1 0 0 0.0 2019-02-03 00:00:00 2019-12-21 17:53:20.438719 \N \N 47 49 1 0 0 0.0 2019-02-03 00:00:00 2019-12-21 17:54:20.139179 \N \N 68 70 1 0 0 0 2019-02-03 00:00:00 2019-02-04 09:18:59.695299 \N \N 78 80 1 0 0 1.0 2019-02-03 00:00:00 2020-08-17 16:56:06.569678 \N \N 79 81 1 0 0 1.0 2019-02-03 00:00:00 2020-08-15 16:24:22.032639 \N \N 58 60 1 0 0 5.0 2019-02-03 00:00:00 2020-08-25 22:50:33.909362 \N \N 6 8 1 0 0 3.0 2019-02-03 00:00:00 2020-10-15 00:23:05.678149 \N \N 110 112 1 0 0 1 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 129 131 1 0 0 3 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 172 174 1 0 0 2 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 182 184 1 0 0 1 2019-02-03 00:00:00 2019-05-31 01:26:18.41868 \N \N 109 111 1 0 0 0 2019-02-03 00:00:00 2019-10-01 17:18:58.849183 \N \N 200 202 1 0 0 0.0 2019-02-03 00:00:00 2019-05-04 20:55:04.592709 \N \N 157 159 1 0 0 0 2019-02-03 00:00:00 2019-04-12 16:35:39.690174 \N \N 125 127 1 0 0 0.0 2019-02-03 00:00:00 2019-05-14 16:42:33.344341 \N \N 177 179 1 0 0 0.0 2019-02-03 00:00:00 2019-05-19 19:17:15.254667 \N \N 121 123 1 0 0 1.0 2019-02-03 00:00:00 2020-09-26 19:00:43.053233 \N \N 203 205 1 0 0 1.0 2019-02-03 00:00:00 2020-03-19 00:58:59.671295 \N \N 176 178 1 0 0 0.0 2019-02-03 00:00:00 2019-07-15 23:21:20.509507 \N \N 124 126 1 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 158 160 1 0 0 2.0 2019-02-03 00:00:00 2020-06-25 19:08:27.274617 \N \N 160 162 1 0 0 0.0 2019-02-03 00:00:00 2019-04-01 19:55:52.215543 \N \N 140 142 1 0 0 0.0 2019-02-03 00:00:00 2020-06-26 19:08:16.322516 \N \N 138 140 1 0 0 0.0 2019-02-03 00:00:00 2019-12-01 19:57:43.003826 \N \N 119 121 1 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 131 133 1 0 0 0.0 2019-02-03 00:00:00 2019-05-20 22:00:36.490775 \N \N 193 195 1 0 0 0.0 2019-02-03 00:00:00 2019-04-16 01:09:30.478202 \N \N 207 209 1 0 0 4.0 2019-02-03 00:00:00 2020-09-21 19:34:17.947236 \N \N 194 196 1 0 0 0.0 2019-02-03 00:00:00 2019-10-12 19:38:38.323999 \N \N 159 161 1 0 0 1.0 2019-02-03 00:00:00 2021-02-13 01:38:56.687294 \N \N 199 201 1 0 0 2.0 2019-02-03 00:00:00 2020-06-25 01:08:21.780315 \N \N 169 171 1 0 0 1.0 2019-02-03 00:00:00 2021-01-22 18:20:44.901326 \N \N 122 124 1 0 0 0.0 2019-02-03 00:00:00 2019-12-15 01:15:23.624243 \N \N 196 198 1 0 0 1.0 2019-02-03 00:00:00 2020-06-25 19:08:01.424653 \N \N 183 185 1 0 0 1.0 2019-02-03 00:00:00 2020-08-15 21:33:05.414352 \N \N 136 138 1 0 0 1.0 2019-02-03 00:00:00 2021-01-11 20:25:52.395598 \N \N 113 115 1 0 0 0.0 2019-02-03 00:00:00 2019-09-13 20:58:44.111433 \N \N 115 117 1 0 0 0.0 2019-02-03 00:00:00 2020-02-02 00:10:17.585444 \N \N 195 197 1 0 0 1.0 2019-02-03 00:00:00 2020-07-18 18:29:15.626263 \N \N 135 137 1 0 0 0.0 2019-02-03 00:00:00 2019-03-15 00:58:28.940685 \N \N 133 135 1 0 0 1.0 2019-02-03 00:00:00 2021-02-13 01:22:45.089607 \N \N 148 150 1 0 0 0 2019-02-03 00:00:00 2019-05-24 00:41:48.020836 \N \N 152 154 1 0 0 0.0 2019-02-03 00:00:00 2019-08-25 00:56:38.532284 \N \N 165 167 1 0 0 0.0 2019-02-03 00:00:00 2020-02-22 18:52:17.837739 \N \N 181 183 1 0 0 0.0 2019-02-03 00:00:00 2019-03-16 22:06:01.451913 \N \N 151 153 1 0 0 0.0 2019-02-03 00:00:00 2019-10-05 18:04:20.18452 \N \N 139 141 1 0 0 2.0 2019-02-03 00:00:00 2020-09-01 22:04:17.187268 \N \N 142 144 1 0 0 5.0 2019-02-03 00:00:00 2020-09-21 19:34:17.475452 \N \N 202 204 1 0 0 4.0 2019-02-03 00:00:00 2020-09-21 19:34:27.787013 \N \N 162 164 1 0 0 2.0 2019-02-03 00:00:00 2020-08-17 16:33:56.12538 \N \N 187 189 1 0 0 0.0 2019-02-03 00:00:00 2019-03-23 22:36:08.420409 \N \N 192 194 1 0 0 0.0 2019-02-03 00:00:00 2019-03-23 17:21:21.898361 \N \N 146 148 1 0 0 0 2019-02-03 00:00:00 2019-03-16 21:48:35.585646 \N \N 166 168 1 0 0 0.0 2019-02-03 00:00:00 2020-02-14 18:33:58.971766 \N \N 118 120 1 0 0 0.0 2019-02-03 00:00:00 2020-01-26 00:58:25.131935 \N \N 156 158 1 0 0 0.0 2019-02-03 00:00:00 2019-10-05 16:58:19.078255 \N \N 147 149 1 0 0 3 2019-02-03 00:00:00 2020-09-21 19:34:17.752263 \N \N 161 163 1 0 0 0.0 2019-02-03 00:00:00 2020-12-30 23:52:08.294401 \N \N 206 208 1 0 0 0.0 2019-02-03 00:00:00 2021-01-19 21:40:50.887139 \N \N 112 114 1 0 0 0.0 2019-02-03 00:00:00 2020-02-04 18:55:08.308104 \N \N 163 165 1 0 0 0.0 2019-02-03 00:00:00 2020-01-29 18:23:44.571636 \N \N 198 200 1 0 0 0.0 2019-02-03 00:00:00 2020-08-15 17:48:08.014224 \N \N 116 118 1 0 0 0.0 2019-02-03 00:00:00 2020-03-14 00:34:29.820829 \N \N 209 211 1 0 0 0.0 2019-02-03 00:00:00 2019-05-24 20:15:03.45976 \N \N 174 176 1 0 0 1.0 2019-02-03 00:00:00 2020-03-15 19:50:33.81364 \N \N 201 203 1 0 0 0 2019-02-03 00:00:00 2019-05-22 01:59:11.751801 \N \N 117 119 1 0 0 0.0 2019-02-03 00:00:00 2020-08-13 21:53:34.033034 \N \N 134 136 1 0 0 0.0 2019-02-03 00:00:00 2019-06-19 23:59:11.811694 \N \N 186 188 1 0 0 0.0 2019-02-03 00:00:00 2019-07-06 00:58:49.949884 \N \N 180 182 1 0 0 0.0 2019-02-03 00:00:00 2019-08-05 23:31:10.643908 \N \N 153 155 1 0 0 0.0 2019-02-03 00:00:00 2020-07-01 20:21:23.282914 \N \N 123 125 1 0 0 1.0 2019-02-03 00:00:00 2020-06-25 00:49:56.562932 \N \N 212 214 1 0 0 0.0 2019-02-03 00:00:00 2019-08-11 16:35:30.974804 \N \N 179 181 1 0 0 1.0 2019-02-03 00:00:00 2020-06-26 19:08:16.217793 \N \N 189 191 1 0 0 0.0 2019-02-03 00:00:00 2020-01-28 18:23:31.075041 \N \N 211 213 1 0 0 2.0 2019-02-03 00:00:00 2021-02-28 01:49:53.696837 \N \N 168 170 1 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:36:11.501656 \N \N 191 193 1 0 0 0.0 2019-02-03 00:00:00 2020-03-08 01:02:38.421683 \N \N 154 156 1 0 0 0.0 2019-02-03 00:00:00 2020-01-24 23:23:35.236176 \N \N 185 187 1 0 0 0.0 2019-02-03 00:00:00 2019-09-24 19:04:58.013591 \N \N 155 157 1 0 0 0.0 2019-02-03 00:00:00 2019-10-06 16:29:35.409866 \N \N 204 206 1 0 0 1.0 2019-02-03 00:00:00 2020-08-17 16:56:06.546655 \N \N 150 152 1 0 0 1.0 2019-02-03 00:00:00 2020-07-21 22:32:37.837842 \N \N 208 210 1 0 0 0.0 2019-02-03 00:00:00 2019-11-03 17:46:35.70604 \N \N 188 190 1 0 0 1.0 2019-02-03 00:00:00 2021-01-21 02:09:37.173719 \N \N 111 113 1 0 0 1.0 2019-02-03 00:00:00 2020-07-01 22:48:35.804396 \N \N 215 217 1 0 0 1.0 2019-02-03 00:00:00 2020-08-29 18:04:55.829068 \N \N 127 129 1 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 126 128 1 0 0 0.0 2019-02-03 00:00:00 2019-11-03 19:25:53.13478 \N \N 178 180 1 0 0 2 2019-02-03 00:00:00 2020-05-14 21:19:30.991194 \N \N 114 116 1 0 0 0.0 2019-02-03 00:00:00 2020-01-31 01:40:21.811976 \N \N 171 173 1 0 0 0.0 2019-02-03 00:00:00 2019-12-21 21:16:00.889223 \N \N 145 147 1 0 0 0.0 2019-02-03 00:00:00 2020-08-14 16:44:07.036716 \N \N 120 122 1 0 0 0.0 2019-02-03 00:00:00 2020-01-25 22:09:17.70127 \N \N 128 130 1 0 0 0.0 2019-02-03 00:00:00 2020-01-26 02:10:51.050102 \N \N 190 192 1 0 0 2.0 2019-02-03 00:00:00 2020-01-27 23:58:48.582302 \N \N 164 166 1 0 0 0.0 2019-02-03 00:00:00 2020-02-05 01:45:28.514727 \N \N 214 216 1 0 0 1.0 2019-02-03 00:00:00 2020-02-25 22:29:40.535701 \N \N 130 132 1 0 0 0 2019-02-03 00:00:00 2019-11-03 18:42:49.461063 \N \N 132 134 1 0 0 0.0 2019-02-03 00:00:00 2020-02-13 19:00:53.266121 \N \N 167 169 1 0 0 0.0 2019-02-03 00:00:00 2020-02-15 19:14:45.138082 \N \N 170 172 1 0 0 0.0 2019-02-03 00:00:00 2021-01-30 22:37:56.801767 \N \N 173 175 1 0 0 1.0 2019-02-03 00:00:00 2020-03-04 21:58:57.622554 \N \N 213 215 1 0 0 0.0 2019-02-03 00:00:00 2020-03-04 21:58:57.584251 \N \N 205 207 1 0 0 0.0 2019-02-03 00:00:00 2020-03-16 19:31:36.926295 \N \N 210 212 1 0 0 0.0 2019-02-03 00:00:00 2020-08-07 21:03:24.827667 \N \N 175 177 1 0 0 1.0 2019-02-03 00:00:00 2020-09-30 22:12:55.682028 \N \N 241 243 1 0 0 4 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 242 244 1 0 0 3 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 274 276 2 0 0 0.0 2019-02-03 00:00:00 2019-03-02 18:24:02.399329 \N \N 301 303 2 0 0 0.0 2019-02-03 00:00:00 2019-02-06 01:47:26.580148 \N \N 250 252 1 0 0 0.0 2019-02-03 00:00:00 2020-01-25 17:45:14.005728 \N \N 280 282 2 0 0 0.0 2019-02-03 00:00:00 2019-02-06 21:49:55.811995 \N \N 264 266 1 0 0 0.0 2019-02-03 00:00:00 2020-07-11 17:22:01.303507 \N \N 228 230 1 0 0 0.0 2019-02-03 00:00:00 2020-01-29 22:05:37.469575 \N \N 269 271 1 0 0 1.0 2019-02-03 00:00:00 2020-09-07 16:50:11.735977 \N \N 267 269 1 0 0 10.0 2019-02-03 00:00:00 2020-09-07 16:50:11.802913 \N \N 311 313 2 0 0 0.0 2019-02-03 00:00:00 2019-02-09 21:25:30.453395 \N \N 220 222 1 0 0 0.0 2019-02-03 00:00:00 2020-10-21 00:18:59.435854 \N \N 257 259 1 0 0 0.0 2019-02-03 00:00:00 2020-10-02 16:20:09.96709 \N \N 302 304 2 0 0 0.0 2019-02-03 00:00:00 2019-02-16 00:30:35.96579 \N \N 297 299 2 0 0 0.0 2019-02-03 00:00:00 2020-06-24 22:04:34.333313 \N \N 300 302 2 0 0 0.0 2019-02-03 00:00:00 2020-06-24 22:06:03.957682 \N \N 320 322 2 0 0 0.0 2019-02-03 00:00:00 2019-09-06 17:04:01.939957 \N \N 262 264 1 0 0 2.0 2019-02-03 00:00:00 2020-09-07 16:50:11.819996 \N \N 292 294 2 0 0 0.0 2019-02-03 00:00:00 2020-06-24 22:18:46.156053 \N \N 256 258 1 0 0 0.0 2019-02-03 00:00:00 2020-12-22 22:34:41.684361 \N \N 221 223 1 0 0 0.0 2019-02-03 00:00:00 2020-03-14 00:34:29.856942 \N \N 286 288 2 0 0 0.0 2019-02-03 00:00:00 2019-05-05 17:09:47.833433 \N \N 303 305 2 0 0 0.0 2019-02-03 00:00:00 2019-05-14 00:23:59.530552 \N \N 238 240 1 0 0 0.0 2019-02-03 00:00:00 2019-05-02 20:34:33.198098 \N \N 265 267 1 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 321 323 2 0 0 0.0 2019-02-03 00:00:00 2020-06-24 22:39:16.236804 \N \N 253 255 1 0 0 3.0 2019-02-03 00:00:00 2021-01-23 22:34:31.775829 \N \N 259 261 1 0 0 0.0 2019-02-03 00:00:00 2019-08-29 22:17:49.796673 \N \N 226 228 1 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 254 256 1 0 0 0 2019-02-03 00:00:00 2019-03-05 01:52:24.973702 \N \N 310 312 2 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 307 309 2 0 0 0.0 2019-02-03 00:00:00 2020-06-24 22:32:21.073219 \N \N 255 257 1 0 0 0.0 2019-02-03 00:00:00 2020-08-15 16:07:25.984186 \N \N 222 224 1 0 0 0.0 2019-02-03 00:00:00 2020-03-04 21:58:57.650519 \N \N 252 254 1 0 0 1.0 2019-02-03 00:00:00 2019-10-12 21:40:32.433746 \N \N 258 260 1 0 0 0.0 2019-02-03 00:00:00 2019-03-15 19:13:02.99776 \N \N 227 229 1 0 0 0.0 2019-02-03 00:00:00 2020-06-25 20:02:46.114257 \N \N 233 235 1 0 0 0.0 2019-02-03 00:00:00 2020-08-17 16:56:06.521976 \N \N 285 287 2 0 0 0.0 2019-02-03 00:00:00 2019-05-05 17:18:19.946864 \N \N 229 231 1 0 0 2.0 2019-02-03 00:00:00 2020-08-08 20:07:40.664405 \N \N 248 250 1 0 0 0.0 2019-02-03 00:00:00 2019-04-18 00:12:46.722992 \N \N 249 251 1 0 0 0.0 2019-02-03 00:00:00 2019-05-31 01:26:18.44325 \N \N 318 320 2 0 0 0.0 2019-02-03 00:00:00 2020-06-24 22:38:55.266651 \N \N 294 296 2 0 0 1.0 2019-02-03 00:00:00 2019-08-24 17:28:47.25727 \N \N 230 232 1 0 0 1.0 2019-02-03 00:00:00 2019-07-15 23:47:17.028991 \N \N 316 318 2 0 0 0.0 2019-02-03 00:00:00 2019-07-14 00:35:11.740502 \N \N 276 278 2 0 0 0 2019-02-03 00:00:00 2020-06-24 22:19:08.076924 \N \N 287 289 2 0 0 0.0 2019-02-03 00:00:00 2019-05-05 17:17:58.120104 \N \N 304 306 2 0 0 0.0 2019-02-03 00:00:00 2019-05-14 00:23:59.588854 \N \N 231 233 1 0 0 0.0 2019-02-03 00:00:00 2020-08-29 22:33:35.751248 \N \N 232 234 1 0 0 0.0 2019-02-03 00:00:00 2019-05-14 16:42:33.664764 \N \N 319 321 2 0 0 0.0 2019-02-03 00:00:00 2019-07-03 02:11:55.478086 \N \N 305 307 2 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 239 241 1 0 0 1.0 2019-02-03 00:00:00 2019-06-22 21:00:16.999837 \N \N 240 242 1 0 0 0.0 2019-02-03 00:00:00 2019-05-27 21:45:47.674592 \N \N 218 220 1 0 0 0.0 2019-02-03 00:00:00 2020-09-19 20:14:25.298746 \N \N 268 270 1 0 0 0.0 2019-02-03 00:00:00 2020-07-08 19:26:34.30986 \N \N 282 284 2 0 0 0.0 2019-02-03 00:00:00 2019-06-01 21:12:45.753476 \N \N 244 246 1 0 0 0.0 2019-02-03 00:00:00 2020-08-08 20:07:40.59193 \N \N 313 315 2 0 0 0.0 2019-02-03 00:00:00 2019-11-06 00:15:27.033736 \N \N 246 248 1 0 0 0 2019-02-03 00:00:00 2019-06-29 22:43:07.75956 \N \N 251 253 1 0 0 0.0 2019-02-03 00:00:00 2019-09-04 01:01:28.903833 \N \N 314 316 2 0 0 0.0 2019-02-03 00:00:00 2020-06-24 22:38:48.462531 \N \N 288 290 2 0 0 0.0 2019-02-03 00:00:00 2019-07-14 01:27:18.887271 \N \N 315 317 2 0 0 0 2019-02-03 00:00:00 2020-01-06 22:56:33.774602 \N \N 296 298 2 0 0 0.0 2019-02-03 00:00:00 2020-06-24 22:17:02.151531 \N \N 277 279 2 0 0 0.0 2019-02-03 00:00:00 2020-01-24 23:26:28.910014 \N \N 219 221 1 0 0 0.0 2019-02-03 00:00:00 2020-07-03 22:17:16.49944 \N \N 260 262 1 0 0 0.0 2019-02-03 00:00:00 2019-08-29 22:17:32.630383 \N \N 291 293 2 0 0 0.0 2019-02-03 00:00:00 2019-11-06 00:16:27.97313 \N \N 236 238 1 0 0 0.0 2019-02-03 00:00:00 2020-09-02 18:44:26.457835 \N \N 237 239 1 0 0 0.0 2019-02-03 00:00:00 2020-10-05 19:37:02.821096 \N \N 216 218 1 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:34:58.890398 \N \N 306 308 2 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 309 311 2 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 217 219 1 0 0 0.0 2019-02-03 00:00:00 2019-11-03 17:47:49.944355 \N \N 243 245 1 0 0 0 2019-02-03 00:00:00 2019-03-10 00:28:59.825473 \N \N 322 324 2 0 0 0.0 2019-02-03 00:00:00 2020-01-31 19:49:45.596015 \N \N 275 277 2 0 0 0.0 2019-02-03 00:00:00 2020-07-03 23:29:05.430651 \N \N 223 225 1 0 0 0.0 2019-02-03 00:00:00 2020-08-08 20:07:40.774122 \N \N 281 283 2 0 0 0.0 2019-02-03 00:00:00 2019-10-21 21:06:14.284112 \N \N 308 310 2 0 0 0.0 2019-02-03 00:00:00 2020-01-31 19:49:56.012227 \N \N 261 263 1 0 0 0.0 2019-02-03 00:00:00 2020-07-11 17:21:23.476418 \N \N 234 236 1 0 0 0.0 2019-02-03 00:00:00 2020-08-19 23:58:09.775332 \N \N 245 247 1 0 0 3 2019-02-03 00:00:00 2020-07-20 20:01:05.570225 \N \N 271 273 1 0 0 0.0 2019-02-03 00:00:00 2020-07-11 17:22:40.793135 \N \N 289 291 2 0 0 0.0 2019-02-03 00:00:00 2020-01-24 23:24:33.094455 \N \N 279 281 2 0 0 0.0 2019-02-03 00:00:00 2020-06-25 19:21:34.804715 \N \N 273 275 2 0 0 0.0 2019-02-03 00:00:00 2020-01-24 23:05:40.764888 \N \N 278 280 2 0 0 0.0 2019-02-03 00:00:00 2020-01-24 23:26:08.356733 \N \N 290 292 2 0 0 0.0 2019-02-03 00:00:00 2020-01-24 23:24:46.057776 \N \N 295 297 2 0 0 0.0 2019-02-03 00:00:00 2020-06-25 19:20:45.111504 \N \N 312 314 2 0 0 1.0 2019-02-03 00:00:00 2020-01-25 19:02:00.598592 \N \N 284 286 2 0 0 0.0 2019-02-03 00:00:00 2020-03-13 17:21:50.435138 \N \N 224 226 1 0 0 1.0 2019-02-03 00:00:00 2020-01-31 20:12:30.49646 \N \N 283 285 2 0 0 0.0 2019-02-03 00:00:00 2020-01-31 21:36:02.310334 \N \N 293 295 2 0 0 0.0 2019-02-03 00:00:00 2020-02-13 21:31:25.233321 \N \N 299 301 2 0 0 0.0 2019-02-03 00:00:00 2020-06-25 19:20:55.988888 \N \N 317 319 2 0 0 0.0 2019-02-03 00:00:00 2020-06-24 22:38:50.096395 \N \N 270 272 1 0 0 0.0 2019-02-03 00:00:00 2020-07-11 17:21:33.806912 \N \N 366 368 2 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 424 426 2 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 377 379 2 0 0 0.0 2019-02-03 00:00:00 2019-02-20 19:57:16.897905 \N \N 358 360 2 0 0 0.0 2019-02-03 00:00:00 2019-05-09 19:44:57.939205 \N \N 323 325 2 0 0 0.0 2019-02-03 00:00:00 2019-03-26 20:48:35.812547 \N \N 387 389 2 0 0 0.0 2019-02-03 00:00:00 2019-07-05 17:18:38.200456 \N \N 428 430 2 0 0 0 2019-02-03 00:00:00 2020-06-25 19:12:01.274473 \N \N 422 424 2 0 0 0.0 2019-02-03 00:00:00 2019-03-27 20:55:49.710854 \N \N 396 398 2 0 0 0.0 2019-02-03 00:00:00 2020-01-18 01:27:36.872633 \N \N 343 345 2 0 0 0.0 2019-02-03 00:00:00 2019-04-17 23:37:06.137026 \N \N 378 380 2 0 0 0.0 2019-02-03 00:00:00 2019-05-09 01:43:45.637906 \N \N 332 334 2 0 0 0.0 2019-02-03 00:00:00 2019-03-01 22:11:54.015097 \N \N 419 421 2 0 0 0.0 2019-02-03 00:00:00 2020-06-24 22:51:44.234328 \N \N 325 327 2 0 0 0.0 2019-02-03 00:00:00 2019-08-30 01:07:28.835058 \N \N 426 428 2 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 427 429 2 0 0 0.0 2019-02-03 00:00:00 2019-02-14 20:22:29.168527 \N \N 337 339 2 0 0 0.0 2019-02-03 00:00:00 2019-09-03 20:38:42.471741 \N \N 389 391 2 0 0 0.0 2019-02-03 00:00:00 2020-06-25 00:30:27.423768 \N \N 380 382 2 0 0 0.0 2019-02-03 00:00:00 2019-02-20 19:57:16.937709 \N \N 381 383 2 0 0 0.0 2019-02-03 00:00:00 2019-02-20 23:56:35.201354 \N \N 340 342 2 0 0 0.0 2019-02-03 00:00:00 2019-10-02 00:54:16.065959 \N \N 417 419 2 0 0 0.0 2019-02-03 00:00:00 2019-07-13 17:59:42.44228 \N \N 342 344 2 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 407 409 2 0 0 0.0 2019-02-03 00:00:00 2020-01-25 19:03:09.825424 \N \N 392 394 2 0 0 0.0 2019-02-03 00:00:00 2020-06-25 19:21:30.417251 \N \N 338 340 2 0 0 0.0 2019-02-03 00:00:00 2019-05-08 00:38:34.548401 \N \N 391 393 2 0 0 0.0 2019-02-03 00:00:00 2019-03-02 23:09:13.024335 \N \N 394 396 2 0 0 0.0 2019-02-03 00:00:00 2019-07-27 23:43:17.433745 \N \N 383 385 2 0 0 0.0 2019-02-03 00:00:00 2019-12-22 22:05:56.960074 \N \N 356 358 2 0 0 0.0 2019-02-03 00:00:00 2019-07-02 22:28:42.411902 \N \N 413 415 2 0 0 0.0 2019-02-03 00:00:00 2020-02-13 18:42:23.643642 \N \N 328 330 2 0 0 0.0 2019-02-03 00:00:00 2019-03-26 22:50:38.594331 \N \N 326 328 2 0 0 0.0 2019-02-03 00:00:00 2020-06-24 22:35:16.318223 \N \N 350 352 2 0 0 0.0 2019-02-03 00:00:00 2019-09-03 18:45:05.556141 \N \N 401 403 2 0 0 0.0 2019-02-03 00:00:00 2019-07-14 00:38:41.769432 \N \N 398 400 2 0 0 0.0 2019-02-03 00:00:00 2019-04-15 18:07:16.239476 \N \N 414 416 2 0 0 0.0 2019-02-03 00:00:00 2020-02-22 18:29:56.215556 \N \N 397 399 2 0 0 0.0 2019-02-03 00:00:00 2020-01-25 19:02:15.103111 \N \N 370 372 2 0 0 0.0 2019-02-03 00:00:00 2019-07-13 23:49:50.856059 \N \N 367 369 2 0 0 0.0 2019-02-03 00:00:00 2020-06-24 22:03:58.318323 \N \N 347 349 2 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 416 418 2 0 0 0.0 2019-02-03 00:00:00 2019-04-23 23:39:52.738303 \N \N 410 412 2 0 0 0.0 2019-02-03 00:00:00 2020-02-14 20:29:04.071836 \N \N 411 413 2 0 0 0.0 2019-02-03 00:00:00 2020-02-14 20:29:35.161624 \N \N 425 427 2 0 0 0.0 2019-02-03 00:00:00 2020-06-25 00:33:30.628806 \N \N 379 381 2 0 0 0.0 2019-02-03 00:00:00 2019-05-09 22:56:48.778422 \N \N 359 361 2 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:16:32.416277 \N \N 382 384 2 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 354 356 2 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 386 388 2 0 0 0.0 2019-02-03 00:00:00 2019-09-03 23:31:18.113472 \N \N 334 336 2 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 344 346 2 0 0 0 2019-02-03 00:00:00 2019-02-03 00:00:00 \N \N 360 362 2 0 0 0 2019-02-03 00:00:00 2019-02-13 23:58:51.438276 \N \N 324 326 2 0 0 0.0 2019-02-03 00:00:00 2019-05-20 22:52:37.904409 \N \N 393 395 2 0 0 0.0 2019-02-03 00:00:00 2019-06-04 00:57:38.435607 \N \N 345 347 2 0 0 0.0 2019-02-03 00:00:00 2019-09-03 18:43:03.727586 \N \N 368 370 2 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:08:57.487196 \N \N 420 422 2 0 0 0.0 2019-02-03 00:00:00 2020-06-24 22:54:44.672647 \N \N 341 343 2 0 0 0.0 2019-02-03 00:00:00 2019-07-20 18:01:59.615416 \N \N 339 341 2 0 0 0.0 2019-02-03 00:00:00 2020-06-24 22:03:43.077475 \N \N 402 404 2 0 0 0.0 2019-02-03 00:00:00 2019-07-14 00:39:12.023691 \N \N 390 392 2 0 0 0.0 2019-02-03 00:00:00 2019-07-27 23:43:42.505608 \N \N 373 375 2 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:07:04.434898 \N \N 388 390 2 0 0 0.0 2019-02-03 00:00:00 2019-07-27 23:44:29.465021 \N \N 364 366 2 0 0 0.0 2019-02-03 00:00:00 2019-09-03 18:43:10.074107 \N \N 348 350 2 0 0 0.0 2019-02-03 00:00:00 2019-09-03 18:43:19.472682 \N \N 349 351 2 0 0 0.0 2019-02-03 00:00:00 2019-09-03 18:43:28.132031 \N \N 346 348 2 0 0 0.0 2019-02-03 00:00:00 2019-09-03 18:45:17.541437 \N \N 351 353 2 0 0 0.0 2019-02-03 00:00:00 2019-09-03 18:43:47.217372 \N \N 363 365 2 0 0 0.0 2019-02-03 00:00:00 2019-09-03 18:44:12.448475 \N \N 353 355 2 0 0 0.0 2019-02-03 00:00:00 2019-09-03 18:44:19.997421 \N \N 357 359 2 0 0 0.0 2019-02-03 00:00:00 2019-09-03 18:44:29.192134 \N \N 362 364 2 0 0 0.0 2019-02-03 00:00:00 2019-09-03 18:44:39.916667 \N \N 335 337 2 0 0 0.0 2019-02-03 00:00:00 2019-09-03 20:38:32.093339 \N \N 333 335 2 0 0 0.0 2019-02-03 00:00:00 2019-09-03 20:37:16.489169 \N \N 336 338 2 0 0 0.0 2019-02-03 00:00:00 2019-09-03 20:39:06.036737 \N \N 385 387 2 0 0 0.0 2019-02-03 00:00:00 2020-07-03 23:44:49.597482 \N \N 331 333 2 0 0 0.0 2019-02-03 00:00:00 2019-09-03 20:41:23.065275 \N \N 376 378 2 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:05:28.015692 \N \N 374 376 2 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:07:06.54748 \N \N 375 377 2 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:07:08.904376 \N \N 352 354 2 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:14:41.121274 \N \N 369 371 2 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:06:42.421229 \N \N 372 374 2 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:06:57.948912 \N \N 355 357 2 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:14:48.289351 \N \N 361 363 2 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:14:54.596833 \N \N 423 425 2 0 0 0.0 2019-02-03 00:00:00 2020-01-25 19:00:23.707219 \N \N 329 331 2 0 0 0.0 2019-02-03 00:00:00 2020-06-24 22:39:30.758347 \N \N 415 417 2 0 0 0.0 2019-02-03 00:00:00 2019-09-11 20:05:58.333222 \N \N 408 410 2 0 0 0.0 2019-02-03 00:00:00 2019-10-04 23:49:26.792829 \N \N 403 405 2 0 0 0.0 2019-02-03 00:00:00 2020-07-03 23:08:38.60508 \N \N 429 431 2 0 0 0.0 2019-02-03 00:00:00 2020-01-24 23:07:11.808872 \N \N 400 402 2 0 0 0.0 2019-02-03 00:00:00 2020-01-25 19:02:38.036331 \N \N 406 408 2 0 0 0.0 2019-02-03 00:00:00 2020-06-25 00:24:12.766659 \N \N 405 407 2 0 0 0.0 2019-02-03 00:00:00 2020-07-03 23:27:48.199565 \N \N 404 406 2 0 0 0.0 2019-02-03 00:00:00 2020-01-25 19:03:37.304122 \N \N 412 414 2 0 0 0.0 2019-02-03 00:00:00 2020-01-25 19:04:36.900431 \N \N 395 397 2 0 0 0.0 2019-02-03 00:00:00 2020-06-24 22:41:50.885662 \N \N 421 423 2 0 0 0.0 2019-02-03 00:00:00 2020-06-25 00:58:11.933157 \N \N 384 386 2 0 0 0.0 2019-02-03 00:00:00 2020-07-04 00:09:37.612049 \N \N 100 102 1 0 0 1 2019-02-03 00:00:00 2019-02-04 09:17:54.605616 \N \N 447 448 1 0 0 0 2019-02-07 02:32:59.56975 2019-02-07 02:32:59.56975 100.00 \N 448 6 1 0 0 0 2019-02-07 02:41:34.176865 2019-02-07 02:41:34.176865 \N \N 507 276 1 0 0 0.0 2019-03-02 18:24:25.427701 2019-08-15 20:40:13.575011 \N \N 453 453 1 0 0 0.0 2019-02-08 18:38:44.769965 2019-09-03 18:53:37.976324 \N \N 480 13 2 0 0 0 2019-02-12 17:37:09.320543 2020-06-25 00:27:05.373952 \N \N 494 483 2 0 0 0.0 2019-02-19 17:47:42.636652 2020-07-03 22:27:57.136437 \N \N 456 456 2 0 0 0.0 2019-02-08 18:50:30.438623 2019-11-06 01:57:32.451263 \N \N 430 432 2 0 0 0.0 2019-02-03 00:00:00 2020-01-24 23:06:34.37024 \N \N 458 458 2 0 0 0.0 2019-02-08 18:52:28.435844 2019-07-03 21:11:46.360727 \N \N 247 249 1 0 0 0.0 2019-02-03 00:00:00 2019-07-05 18:18:45.932309 \N \N 449 449 1 0 0 0.0 2019-02-08 18:11:38.295924 2019-12-21 17:52:26.03841 \N \N 149 151 1 0 0 1.0 2019-02-03 00:00:00 2020-06-25 00:49:15.601506 \N \N 492 481 1 0 0 0.0 2019-02-16 00:11:25.212969 2019-02-16 00:12:53.323934 \N \N 462 462 1 0 0 0.0 2019-02-09 23:15:27.49619 2019-05-11 19:52:20.607012 489.00 \N 463 463 2 0 0 0.0 2019-02-11 17:35:42.004086 2019-09-03 20:42:55.535168 \N \N 444 447 1 0 0 0.0 2019-02-07 01:41:46.22316 2019-05-20 19:19:14.978858 1399.00 \N 506 494 1 0 0 7.0 2019-03-02 17:10:27.179255 2020-10-23 23:52:08.338483 \N \N 467 467 1 0 0 0.0 2019-02-11 18:36:24.192924 2019-09-03 20:43:59.934001 \N \N 266 268 1 0 0 0.0 2019-02-03 00:00:00 2020-09-07 16:52:18.391162 \N \N 468 468 1 0 0 0.0 2019-02-11 18:48:34.714677 2019-09-03 21:02:57.155034 \N \N 491 480 1 0 0 0.0 2019-02-13 23:46:26.966378 2019-12-23 21:54:33.850554 \N \N 465 465 1 0 0 0.0 2019-02-11 18:21:09.550833 2019-09-03 20:45:32.383567 \N \N 518 434 1 0 0 0.0 2019-03-05 01:49:46.94298 2019-09-04 00:30:38.633696 \N \N 472 472 1 0 0 0.0 2019-02-11 20:44:41.509617 2019-02-11 20:49:26.756639 \N \N 440 440 1 0 0 0.0 2019-02-06 01:20:45.961958 2019-09-03 18:52:27.660299 1599.00 \N 466 466 1 0 0 0.0 2019-02-11 18:23:27.680791 2019-09-03 20:43:53.570924 \N \N 452 452 1 0 0 0.0 2019-02-08 18:37:40.921204 2019-02-11 22:12:53.638506 \N \N 502 490 2 0 0 0.0 2019-02-23 20:10:56.691995 2020-03-19 23:03:27.845845 \N \N 457 457 2 0 0 0.0 2019-02-08 18:51:32.59801 2020-01-24 19:02:11.671527 \N \N 475 474 2 0 0 0 2019-02-12 01:43:22.146801 2019-02-12 01:43:22.146801 \N \N 263 265 1 0 0 2.0 2019-02-03 00:00:00 2020-07-07 18:33:18.020122 \N \N 510 182 2 0 0 0.0 2019-03-02 19:49:10.733308 2019-07-27 23:44:01.411107 \N \N 470 470 1 0 0 0.0 2019-02-11 19:01:44.707375 2019-07-12 22:25:51.324053 \N \N 493 482 1 0 0 0.0 2019-02-16 00:14:47.599055 2019-02-16 00:15:22.591029 \N \N 513 72 2 0 0 0.0 2019-03-02 19:49:10.815448 2019-11-06 00:36:10.909789 \N \N 450 450 1 0 0 0.0 2019-02-08 18:12:59.172505 2019-02-12 21:02:22.098573 \N \N 503 491 2 0 0 0.0 2019-02-23 20:12:41.527918 2019-09-11 17:08:12.413315 \N \N 517 181 2 0 0 0 2019-03-02 19:49:10.921449 2020-06-25 18:56:05.478182 \N \N 481 156 2 0 0 0.0 2019-02-12 17:37:09.360485 2019-07-24 21:38:33.274648 \N \N 512 207 2 0 0 0.0 2019-03-02 19:49:10.77628 2019-10-06 00:12:37.757642 \N \N 489 478 2 0 0 0 2019-02-13 23:35:40.858487 2019-02-13 23:35:40.858487 \N \N 442 439 1 0 0 0.0 2019-02-06 01:21:40.858122 2019-12-21 17:52:59.052696 1799.00 \N 486 476 1 0 0 20.0 2019-02-12 19:33:40.002485 2020-12-21 21:20:13.474415 \N \N 496 484 1 0 0 0.0 2019-02-21 00:33:10.038984 2021-01-30 00:45:52.753076 \N \N 446 444 2 0 0 0.0 2019-02-07 01:43:33.36734 2019-02-13 23:58:51.475824 1699.00 \N 460 460 2 0 0 0.0 2019-02-08 18:54:42.190866 2019-11-06 01:57:59.926508 \N \N 478 475 1 0 0 1.0 2019-02-12 17:36:18.864855 2021-02-04 23:46:50.690559 \N \N 434 151 2 0 0 0 2019-02-02 23:55:39.623449 2020-06-25 00:09:03.016456 479.00 \N 487 476 2 0 0 0.0 2019-02-12 20:26:05.624767 2020-06-25 19:30:34.649874 \N \N 505 493 1 0 0 0.0 2019-03-02 00:50:34.386656 2019-03-02 00:52:34.253808 \N \N 495 202 2 0 0 0.0 2019-02-19 18:40:53.217093 2020-06-25 01:55:00.529616 \N \N 454 454 1 0 0 0.0 2019-02-08 18:40:20.694161 2019-05-09 01:22:05.625832 \N \N 439 442 1 0 0 0 2019-02-06 01:18:57.014801 2019-02-06 01:18:57.014801 1899.00 \N 498 486 1 0 0 0.0 2019-02-22 19:25:21.901102 2020-12-25 01:05:47.515837 \N \N 451 451 1 0 0 0.0 2019-02-08 18:36:27.510355 2019-09-03 18:53:28.731918 \N \N 86 88 1 0 0 0.0 2019-02-03 00:00:00 2020-06-25 20:02:46.088574 \N \N 500 488 2 0 0 0.0 2019-02-23 19:55:36.402221 2019-09-04 00:17:25.696945 \N \N 435 143 2 0 0 0.0 2019-02-02 23:55:58.984452 2019-06-22 19:30:31.440828 599.00 \N 476 475 2 0 0 0.0 2019-02-12 01:52:45.29613 2019-10-30 17:36:15.690014 \N \N 501 489 2 0 0 0.0 2019-02-23 20:09:45.770813 2020-02-23 00:19:58.405583 \N \N 141 143 1 0 0 0.0 2019-02-03 00:00:00 2019-05-04 22:42:09.329178 \N \N 515 253 2 0 0 0.0 2019-03-02 19:49:10.863663 2019-07-13 18:45:13.018155 \N \N 432 434 2 0 0 0.0 2019-02-03 00:00:00 2019-05-02 21:13:37.528123 \N \N 474 17 2 0 0 0.0 2019-02-12 00:31:33.354774 2020-07-01 22:41:29.974797 \N \N 438 200 2 0 0 0.0 2019-02-02 23:56:28.208475 2020-07-03 23:10:58.933588 529.00 \N 327 329 2 0 0 0.0 2019-02-03 00:00:00 2020-06-25 00:16:17.229947 \N \N 471 471 1 0 0 0.0 2019-02-11 20:42:17.351355 2019-03-04 16:35:47.368637 \N \N 514 155 2 0 0 0.0 2019-03-02 19:49:10.838446 2019-03-04 17:12:02.322011 \N \N 433 435 2 0 0 0.0 2019-02-03 00:00:00 2020-06-24 22:40:21.437014 \N \N 479 254 2 0 0 0.0 2019-02-12 17:37:09.275573 2019-06-04 00:57:56.352593 \N \N 504 492 1 0 0 0.0 2019-02-24 01:25:27.211247 2020-10-07 21:11:03.569595 \N \N 441 441 1 0 0 0.0 2019-02-06 01:21:14.102302 2019-09-01 03:16:25.538282 1699.00 \N 431 433 2 0 0 0.0 2019-02-03 00:00:00 2019-10-04 23:35:26.968502 \N \N 482 19 2 0 0 0.0 2019-02-12 17:37:09.402248 2019-10-06 00:11:22.132017 \N \N 445 446 1 0 0 0.0 2019-02-07 01:43:04.437779 2019-08-19 01:00:13.022292 1699.00 \N 437 199 2 0 0 0.0 2019-02-02 23:56:17.39648 2019-06-28 23:18:56.176661 749.00 \N 519 162 2 0 0 0 2019-03-06 19:17:29.7829 2019-03-06 19:22:25.239523 \N \N 488 477 1 0 0 0.0 2019-02-12 23:55:04.53461 2019-08-01 01:25:14.696672 \N \N 477 257 2 0 0 0.0 2019-02-12 17:29:56.555343 2020-03-13 17:14:48.292423 \N \N 483 142 2 0 0 0.0 2019-02-12 19:07:41.723926 2019-04-29 22:32:06.122815 \N \N 511 18 2 0 0 0.0 2019-03-02 19:49:10.754629 2020-07-03 23:29:42.566977 \N \N 469 469 2 0 0 0.0 2019-02-11 19:00:00.369554 2019-05-08 17:12:33.619531 \N \N 330 332 2 0 0 0.0 2019-02-03 00:00:00 2019-08-21 00:26:49.066929 \N \N 197 199 1 0 0 0.0 2019-02-03 00:00:00 2020-02-17 22:46:55.759697 \N \N 455 455 2 0 0 0.0 2019-02-08 18:49:37.061615 2019-11-06 01:57:17.114985 \N \N 464 464 2 0 0 0 2019-02-11 17:38:27.787037 2019-02-11 17:38:31.556895 \N \N 485 138 2 0 0 0.0 2019-02-12 19:07:41.791234 2019-09-11 18:16:05.308049 \N \N 497 485 2 0 0 0.0 2019-02-21 01:29:05.361152 2019-10-30 21:37:26.682636 \N \N 443 445 1 0 0 0.0 2019-02-07 01:32:47.343795 2019-09-03 18:51:54.883643 1999.00 \N 508 232 2 0 0 0.0 2019-03-02 19:46:00.751987 2019-07-15 22:37:03.341959 \N \N 459 459 2 0 0 0 2019-02-08 18:53:47.848897 2019-02-08 18:53:51.711137 \N \N 516 7 2 0 0 0.0 2019-03-02 19:49:10.891244 2019-07-13 18:02:58.123578 \N \N 484 144 2 0 0 0.0 2019-02-12 19:07:41.756358 2019-07-15 22:46:10.517309 \N \N 473 473 1 0 0 0.0 2019-02-11 20:52:05.915406 2019-09-03 18:52:18.775706 \N \N 499 487 1 0 0 0 2019-02-22 19:41:23.229567 2019-09-03 18:53:03.318376 \N \N 490 479 2 0 0 0.0 2019-02-13 23:37:00.39871 2019-11-06 00:12:19.690342 \N \N 461 461 2 0 0 0 2019-02-08 18:55:45.716378 2019-02-08 18:55:49.845687 \N \N 409 411 2 0 0 0.0 2019-02-03 00:00:00 2020-03-13 17:23:34.875966 \N \N 526 499 1 0 0 0.0 2019-03-21 22:33:29.621837 2020-01-29 19:46:34.864246 \N \N 524 497 1 0 0 0.0 2019-03-21 22:27:46.205943 2020-02-13 19:52:59.97476 \N \N 521 485 1 0 0 0.0 2019-03-15 20:51:57.014536 2020-07-03 22:25:26.718604 \N \N 523 88 2 0 0 0 2019-03-20 21:37:56.12738 2019-03-20 21:37:56.12738 \N \N 543 92 2 0 0 0.0 2019-03-23 17:28:59.095532 2020-06-25 00:06:12.561494 \N \N 613 560 1 0 0 0.0 2019-05-04 18:53:31.141555 2019-05-04 19:20:27.069811 \N \N 619 549 2 0 0 0.0 2019-05-04 19:48:43.275685 2020-03-07 21:19:56.815857 \N \N 601 548 1 0 0 0.0 2019-05-04 01:11:05.936029 2020-08-25 23:14:01.667417 \N \N 617 564 1 0 0 2.0 2019-05-04 19:02:57.92807 2020-09-22 18:32:17.867428 \N \N 579 60 2 0 0 0 2019-04-16 17:48:02.878061 2020-06-24 22:16:34.59211 \N \N 570 427 1 0 0 0.0 2019-03-28 23:12:32.857386 2020-09-22 22:53:50.578037 \N \N 544 145 2 0 0 0.0 2019-03-23 17:28:59.134871 2019-10-11 18:16:34.12376 \N \N 137 139 1 0 0 0 2019-02-03 00:00:00 2019-05-08 00:50:08.278905 \N \N 555 519 2 0 0 0.0 2019-03-26 01:21:26.758579 2020-03-01 01:04:20.941495 \N \N 585 543 1 0 0 0.0 2019-04-16 19:30:01.199385 2019-05-31 19:40:08.636327 \N \N 539 512 1 0 0 1.0 2019-03-21 23:43:07.970139 2020-07-01 21:45:49.502823 \N \N 536 509 1 0 0 0.0 2019-03-21 23:36:55.225317 2019-09-20 17:28:43.632617 \N \N 609 556 1 0 0 0.0 2019-05-04 18:38:01.869745 2019-05-19 19:01:08.339429 \N \N 595 209 2 0 0 0.0 2019-04-29 22:13:00.552096 2019-10-06 00:12:09.720923 \N \N 540 513 1 0 0 1.0 2019-03-21 23:44:15.628685 2020-07-18 16:13:33.105504 \N \N 578 537 2 0 0 0.0 2019-04-16 17:47:10.990107 2020-01-24 23:08:04.915059 \N \N 568 327 1 0 0 0.0 2019-03-28 23:12:32.805004 2019-08-30 01:06:01.792878 \N \N 550 517 2 0 0 0.0 2019-03-25 17:52:49.016128 2020-02-18 00:10:29.580271 \N \N 538 511 1 0 0 0.0 2019-03-21 23:40:19.430604 2019-09-04 00:31:18.097051 \N \N 533 506 1 0 0 0.0 2019-03-21 22:54:12.615135 2020-07-02 21:54:19.067486 \N \N 532 505 1 0 0 0 2019-03-21 22:52:28.759803 2019-05-25 22:38:11.360694 \N \N 590 546 1 0 0 0.0 2019-04-16 20:33:08.480599 2019-04-16 20:37:29.565321 \N \N 548 499 2 0 0 0.0 2019-03-23 17:29:10.53609 2019-09-04 00:23:26.521246 \N \N 546 194 2 0 0 0 2019-03-23 17:28:59.178465 2019-10-04 00:13:05.490141 \N \N 541 514 1 0 0 0.0 2019-03-21 23:45:14.593158 2019-12-23 20:22:37.139812 \N \N 554 518 2 0 0 0.0 2019-03-26 01:14:47.200155 2019-03-26 01:19:34.881549 \N \N 571 469 1 0 0 1.0 2019-03-28 23:12:54.250716 2019-05-14 20:01:05.837264 \N \N 558 522 2 0 0 0.0 2019-03-26 01:44:37.594847 2019-03-26 01:46:22.317649 \N \N 559 523 2 0 0 0.0 2019-03-26 01:47:14.830344 2019-11-06 19:01:09.017998 \N \N 545 201 2 0 0 0.0 2019-03-23 17:28:59.155784 2020-06-25 01:01:50.46362 \N \N 582 540 1 0 0 0.0 2019-04-16 19:24:37.541442 2020-10-15 18:57:46.690901 \N \N 576 535 2 0 0 0.0 2019-04-16 17:41:46.531998 2019-09-11 18:15:42.987413 \N \N 573 532 2 0 0 0.0 2019-04-08 22:48:24.129696 2020-06-24 22:36:52.168125 \N \N 527 500 1 0 0 0.0 2019-03-21 22:37:36.927822 2019-08-30 22:41:06.730694 \N \N 597 146 2 0 0 0.0 2019-04-29 22:13:00.602072 2019-09-20 22:22:38.41494 \N \N 557 521 2 0 0 0.0 2019-03-26 01:39:31.346944 2019-09-04 00:38:03.044107 \N \N 587 545 1 0 0 0.0 2019-04-16 19:32:59.990403 2021-01-21 18:25:57.179584 \N \N 563 527 2 0 0 0.0 2019-03-26 02:06:05.829326 2019-07-15 22:48:24.980317 \N \N 599 506 2 0 0 0.0 2019-04-29 22:21:56.58768 2020-02-22 20:54:12.260567 \N \N 556 520 2 0 0 0.0 2019-03-26 01:30:15.20604 2020-06-25 01:33:04.390152 \N \N 567 330 1 0 0 0.0 2019-03-28 23:12:32.778961 2019-07-21 19:23:30.586597 \N \N 572 531 2 0 0 0.0 2019-04-08 22:46:56.814999 2019-09-04 00:20:08.081817 \N \N 616 563 1 0 0 0.0 2019-05-04 19:01:39.989363 2019-05-09 17:14:58.424602 \N \N 564 528 2 0 0 0.0 2019-03-26 02:12:43.44068 2019-09-04 00:26:43.202975 \N \N 535 508 1 0 0 0.0 2019-03-21 23:04:00.268171 2020-08-17 16:33:56.161239 \N \N 607 554 1 0 0 0.0 2019-05-04 18:23:45.401437 2020-08-15 18:53:08.003439 \N \N 583 541 1 0 0 0.0 2019-04-16 19:25:22.406489 2019-09-03 21:02:58.006863 \N \N 581 539 1 0 0 0.0 2019-04-16 19:23:44.819093 2019-10-15 17:56:08.003239 \N \N 610 557 1 0 0 1.0 2019-05-04 18:40:21.168251 2020-09-21 19:34:17.6059 \N \N 577 536 2 0 0 0.0 2019-04-16 17:43:09.420286 2019-06-24 22:05:53.741036 \N \N 529 502 1 0 0 0.0 2019-03-21 22:44:11.27317 2020-10-17 22:00:11.95518 \N \N 566 530 1 0 0 0.0 2019-03-28 23:02:31.734098 2019-09-03 18:54:10.363786 \N \N 531 504 1 0 0 0.0 2019-03-21 22:49:59.693711 2019-10-05 18:32:37.261188 \N \N 574 533 1 0 0 0.0 2019-04-16 00:41:54.530034 2019-06-04 21:33:23.752168 \N \N 600 525 1 0 0 0.0 2019-04-29 22:33:04.537309 2020-07-04 23:06:34.721394 \N \N 592 443 1 0 0 0.0 2019-04-16 20:34:42.397593 2019-04-23 22:49:16.546763 \N \N 596 508 2 0 0 0.0 2019-04-29 22:13:00.574294 2020-06-25 19:21:37.453106 \N \N 547 140 2 0 0 0.0 2019-03-23 17:29:05.407884 2019-07-14 00:35:27.377958 \N \N 591 547 1 0 0 0.0 2019-04-16 20:34:33.512836 2019-08-29 22:10:49.553763 \N \N 606 553 1 0 0 2.0 2019-05-04 18:21:45.191391 2019-09-04 23:21:39.044301 \N \N 225 227 1 0 0 0.0 2019-02-03 00:00:00 2019-05-21 20:45:03.548986 \N \N 561 525 2 0 0 0.0 2019-03-26 01:58:06.372479 2019-04-29 22:31:49.319726 \N \N 565 529 2 0 0 0.0 2019-03-26 02:15:08.77701 2020-06-24 22:39:22.833332 \N \N 542 515 1 0 0 0.0 2019-03-21 23:50:14.124855 2019-05-11 18:39:15.836932 \N \N 608 555 1 0 0 0 2019-05-04 18:26:53.23239 2019-06-07 01:13:40.452297 \N \N 537 510 1 0 0 1 2019-03-21 23:37:55.314787 2019-07-12 18:01:31.943306 \N \N 593 205 2 0 0 0.0 2019-04-29 22:13:00.485449 2019-10-06 00:12:24.019522 \N \N 611 558 1 0 0 2.0 2019-05-04 18:48:29.009465 2021-02-04 23:42:55.132752 \N \N 588 358 1 0 0 0 2019-04-16 19:33:09.078204 2019-04-16 19:33:09.078204 \N \N 614 561 1 0 0 0 2019-05-04 18:56:51.386397 2019-05-04 18:56:51.386397 \N \N 525 498 1 0 0 1.0 2019-03-21 22:30:28.827942 2020-08-14 20:09:21.300529 \N \N 602 549 1 0 0 0.0 2019-05-04 17:49:20.74608 2020-03-07 21:30:18.699053 \N \N 612 559 1 0 0 0.0 2019-05-04 18:50:36.055029 2019-05-04 19:20:31.302578 \N \N 528 501 1 0 0 0.0 2019-03-21 22:41:12.808006 2019-07-15 23:19:26.335726 \N \N 575 534 2 0 0 0.0 2019-04-16 17:40:35.798909 2020-01-31 19:50:03.910702 \N \N 615 562 1 0 0 0.0 2019-05-04 19:00:07.587096 2019-05-27 18:18:22.010494 \N \N 604 551 1 0 0 3.0 2019-05-04 18:01:44.073084 2020-07-18 20:59:36.570012 \N \N 589 351 1 0 0 1.0 2019-04-16 19:33:09.10748 2020-12-26 19:48:23.808471 \N \N 598 147 2 0 0 0.0 2019-04-29 22:13:00.624822 2020-06-25 00:07:08.65591 \N \N 586 544 1 0 0 0.0 2019-04-16 19:31:26.188544 2019-09-03 18:53:10.762495 \N \N 553 517 1 0 0 0.0 2019-03-25 17:55:23.840994 2019-09-11 17:29:31.590495 \N \N 560 524 2 0 0 0.0 2019-03-26 01:51:04.678331 2019-09-04 00:38:23.808843 \N \N 603 550 1 0 0 0.0 2019-05-04 17:56:07.883453 2019-07-14 01:19:07.778382 \N \N 549 516 2 0 0 0.0 2019-03-23 23:36:56.277751 2019-07-13 18:01:25.716734 \N \N 580 538 1 0 0 0 2019-04-16 19:22:13.723924 2019-05-18 16:47:10.476459 \N \N 584 542 1 0 0 0.0 2019-04-16 19:26:34.884911 2019-05-25 22:42:27.445031 \N \N 530 503 1 0 0 1.0 2019-03-21 22:46:57.681483 2019-07-02 01:38:51.668196 \N \N 618 565 1 0 0 0.0 2019-05-04 19:04:20.965275 2020-01-24 23:20:03.418144 \N \N 552 187 2 0 0 0.0 2019-03-25 17:54:12.474234 2019-06-28 23:18:36.066339 \N \N 534 507 1 0 0 1.0 2019-03-21 22:58:54.933025 2020-11-28 23:24:22.833909 \N \N 594 219 2 0 0 0.0 2019-04-29 22:13:00.518923 2019-07-15 22:58:06.545632 \N \N 562 526 2 0 0 0.0 2019-03-26 02:03:24.394581 2019-07-24 01:10:45.521071 \N \N 569 322 1 0 0 0.0 2019-03-28 23:12:32.827432 2019-09-06 17:14:48.953946 \N \N 605 552 1 0 0 3.0 2019-05-04 18:20:38.833729 2020-07-18 16:12:45.600101 \N \N 551 189 2 0 0 0.0 2019-03-25 17:54:12.448432 2019-10-25 16:41:45.533512 \N \N 520 495 1 0 0 1.0 2019-03-11 21:07:39.122836 2020-06-24 00:10:50.587616 \N \N 634 568 1 0 0 0.0 2019-05-16 23:26:52.596669 2020-01-31 01:55:57.689937 \N \N 509 494 2 0 0 0.0 2019-03-02 19:49:10.703407 2020-02-14 20:28:50.620635 \N \N 630 340 1 0 0 0.0 2019-05-08 00:39:36.824039 2019-05-08 00:41:30.31024 \N \N 418 420 2 0 0 0.0 2019-02-03 00:00:00 2019-05-22 01:39:06.364059 \N \N 632 516 1 0 0 0.0 2019-05-15 19:43:36.409584 2020-02-22 18:31:12.529423 \N \N 624 559 2 0 0 0.0 2019-05-04 19:48:43.426592 2019-10-25 16:32:50.302212 \N \N 652 572 2 0 0 1.0 2019-05-17 22:19:55.490234 2019-11-16 02:14:13.502641 \N \N 692 550 2 0 0 0.0 2019-07-14 01:22:24.713205 2020-01-28 23:46:33.225437 \N \N 625 558 2 0 0 0.0 2019-05-04 21:40:02.982839 2020-06-24 22:49:46.802886 \N \N 642 576 1 0 0 0.0 2019-05-16 23:42:23.911655 2020-02-19 17:59:19.949915 \N \N 99 101 1 0 0 0.0 2019-02-03 00:00:00 2019-05-14 16:42:33.554016 \N \N 702 595 1 0 0 0.0 2019-07-15 19:20:01.251615 2020-01-11 22:31:42.086827 \N \N 653 575 2 0 0 0.0 2019-05-17 22:19:55.526123 2020-06-24 22:54:10.477726 \N \N 646 580 1 0 0 0.0 2019-05-17 00:20:43.402591 2019-12-28 19:51:49.081613 \N \N 673 589 1 0 0 0.0 2019-06-21 01:27:48.578594 2019-06-21 01:28:49.63324 \N \N 709 602 1 0 0 0.0 2019-07-15 22:34:22.586998 2020-10-22 18:31:27.982788 \N \N 690 403 1 0 0 0.0 2019-07-14 01:18:25.956547 2019-11-22 17:41:27.336489 \N \N 654 581 2 0 0 0.0 2019-05-17 22:19:55.560199 2019-08-03 00:35:48.515739 \N \N 666 586 2 0 0 0.0 2019-05-23 20:24:18.012663 2019-09-04 00:57:04.904495 \N \N 663 587 1 0 0 0.0 2019-05-23 18:23:42.786062 2019-12-16 21:20:20.324232 \N \N 659 583 1 1.0 6.0 0.0 2019-05-23 01:53:40.650095 2019-05-31 00:22:41.837322 \N \N 649 567 2 0 0 0.0 2019-05-17 22:19:55.381653 2020-01-25 19:04:46.255753 \N \N 648 573 2 0 0 0.0 2019-05-17 18:16:49.130512 2019-05-17 18:18:32.410778 \N \N 660 584 1 0 0 0.0 2019-05-23 17:40:31.857736 2019-06-29 17:46:44.346083 \N \N 700 593 1 0 0 0.0 2019-07-15 19:15:21.649943 2019-09-11 17:32:08.652093 \N \N 705 598 1 0 0 0.0 2019-07-15 22:30:32.881856 2020-01-24 01:06:09.358081 \N \N 688 278 1 0 0 0 2019-07-14 01:18:25.903954 2020-06-25 00:49:28.332704 \N \N 650 568 2 0 0 0.0 2019-05-17 22:19:55.4195 2019-09-11 18:24:42.412936 \N \N 638 572 1 0 0 0.0 2019-05-16 23:31:11.364779 2019-05-17 22:10:02.0674 \N \N 656 519 1 0 0 1.0 2019-05-20 23:43:52.98551 2021-01-11 20:25:52.440728 \N \N 637 571 1 0 0 0.0 2019-05-16 23:30:11.167497 2020-12-07 23:43:43.806847 \N \N 712 527 1 0 0 0.0 2019-07-15 23:47:16.957636 2020-01-28 20:03:19.860175 \N \N 621 555 2 0 0 0.0 2019-05-04 19:48:43.347767 2019-06-04 00:58:35.834741 \N \N 665 585 2 0 0 0.0 2019-05-23 20:24:17.983406 2020-06-25 00:42:29.681465 \N \N 640 574 1 0 0 1.0 2019-05-16 23:38:12.418353 2021-01-07 19:04:20.982402 \N \N 623 565 2 0 0 0.0 2019-05-04 19:48:43.400009 2019-06-04 00:58:47.851231 \N \N 662 586 1 0 0 0.0 2019-05-23 18:19:58.195588 2019-05-23 20:12:13.804227 \N \N 696 290 1 0 0 0.0 2019-07-14 01:43:24.853731 2019-08-19 18:44:50.279226 \N \N 620 551 2 0 0 0.0 2019-05-04 19:48:43.319775 2019-05-23 20:15:52.011501 \N \N 627 299 1 0 0 0.0 2019-05-05 17:19:13.22322 2021-02-11 23:05:50.247886 \N \N 689 329 1 0 0 0 2019-07-14 01:18:25.934843 2020-06-25 00:49:03.271674 \N \N 671 435 1 0 0 0.0 2019-06-10 20:38:58.367247 2020-08-20 19:21:28.091975 \N \N 675 536 1 0 0 0.0 2019-06-29 21:31:35.136521 2021-03-04 01:09:21.731363 \N \N 655 578 2 0 0 0.0 2019-05-17 22:19:55.593158 2019-10-05 21:35:43.885505 \N \N 672 512 2 0 0 1.0 2019-06-20 21:45:51.319107 2020-06-24 22:19:42.950556 \N \N 704 597 1 0 0 0.0 2019-07-15 22:29:19.15097 2019-10-05 19:04:34.855193 \N \N 681 419 1 0 0 3.0 2019-07-13 18:24:48.235533 2021-01-16 01:44:33.609971 \N \N 633 567 1 0 0 3.0 2019-05-16 23:22:35.896916 2020-01-26 00:00:59.267246 \N \N 685 323 1 0 0 1.0 2019-07-14 01:18:25.791497 2020-08-19 21:25:16.748044 \N \N 707 600 1 0 0 0.0 2019-07-15 22:32:19.36096 2020-08-14 18:56:27.895556 \N \N 680 398 1 0 0 0.0 2019-07-13 18:24:35.715872 2019-10-05 18:02:28.183501 \N \N 622 560 2 0 0 0 2019-05-04 19:48:43.373867 2019-05-10 00:25:14.917998 \N \N 661 585 1 0 0 0.0 2019-05-23 18:01:24.077922 2020-10-15 22:02:33.173551 1599.00 \N 667 587 2 0 0 0.0 2019-05-23 20:24:18.039806 2019-07-14 01:28:00.390567 \N \N 657 576 2 0 0 0.0 2019-05-20 23:48:47.495698 2019-07-13 18:00:42.62337 \N \N 651 569 2 0 0 0.0 2019-05-17 22:19:55.454407 2020-01-24 23:45:20.064713 \N \N 522 496 1 0 0 4.0 2019-03-15 21:02:35.631677 2020-06-25 19:08:53.21175 \N \N 715 496 2 0 0 0.0 2019-07-16 00:08:51.531932 2019-09-11 20:06:31.179509 \N \N 698 591 1 0 0 2 2019-07-15 19:13:11.325171 2020-07-20 20:01:05.394248 \N \N 697 590 1 0 0 1.0 2019-07-15 19:11:41.446907 2020-11-14 21:13:51.39236 \N \N 635 569 1 0 0 0.0 2019-05-16 23:28:06.030967 2019-07-28 01:01:26.418691 \N \N 658 206 2 0 0 0.0 2019-05-20 23:48:47.525634 2019-07-15 22:38:01.149417 \N \N 691 404 1 0 0 3.0 2019-07-14 01:18:25.976829 2020-09-21 19:34:17.889475 \N \N 235 237 1 0 0 0.0 2019-02-03 00:00:00 2020-08-26 20:26:35.247151 \N \N 706 599 1 0 0 0.0 2019-07-15 22:31:24.732195 2019-10-29 19:48:33.766841 \N \N 687 320 1 0 0 2.0 2019-07-14 01:18:25.88031 2020-08-15 16:24:22.007283 \N \N 686 277 1 0 0 1.0 2019-07-14 01:18:25.858446 2020-07-06 21:37:35.63775 \N \N 629 318 1 0 0 0.0 2019-05-06 16:53:47.557634 2020-01-07 23:44:56.09748 \N \N 143 145 1 0 0 0.0 2019-02-03 00:00:00 2019-10-05 18:07:17.003881 \N \N 714 178 2 0 0 0.0 2019-07-16 00:08:51.506085 2020-02-04 21:14:55.455895 \N \N 636 570 1 0 0 0.0 2019-05-16 23:28:51.929764 2019-09-04 00:40:14.910116 \N \N 639 573 1 0 0 0.0 2019-05-16 23:32:11.518661 2019-09-14 20:38:12.251582 \N \N 699 592 1 0 0 0.0 2019-07-15 19:14:01.986186 2019-10-04 01:28:52.62073 \N \N 670 395 1 0 0 3.0 2019-06-04 01:38:16.105732 2020-09-18 22:33:40.242987 \N \N 703 596 1 0 0 0.0 2019-07-15 19:52:56.741867 2020-08-15 21:57:38.78462 \N \N 626 289 1 0 0 0.0 2019-05-05 17:19:13.201129 2020-01-26 00:02:42.1848 \N \N 664 588 1 0 0 0.0 2019-05-23 18:24:49.32817 2019-08-13 19:03:10.090256 \N \N 647 581 1 0 0 3.0 2019-05-17 00:22:55.221678 2020-08-19 21:15:07.072614 \N \N 716 501 2 0 0 0.0 2019-07-16 00:08:51.554466 2019-09-04 00:39:04.884949 \N \N 669 247 2 0 0 0.0 2019-06-04 00:56:48.940882 2019-09-04 01:00:32.368243 \N \N 682 10 2 0 0 1.0 2019-07-13 18:32:13.385843 2020-06-25 00:24:24.036572 \N \N 645 579 1 0 0 0.0 2019-05-16 23:49:09.924909 2020-09-24 00:49:06.339165 \N \N 694 502 2 0 0 0.0 2019-07-14 01:22:24.763713 2020-06-25 00:42:22.043011 \N \N 628 287 1 0 0 2.0 2019-05-05 17:19:13.25853 2020-09-21 19:34:18.086722 \N \N 695 532 1 0 0 1.0 2019-07-14 01:43:24.822411 2020-06-25 00:49:56.50099 \N \N 631 566 1 0 0 0.0 2019-05-15 18:03:58.683272 2020-03-14 17:42:36.111962 \N \N 679 15 2 0 0 0.0 2019-07-13 18:14:52.302201 2019-10-06 00:11:02.605318 \N \N 693 548 2 0 0 0.0 2019-07-14 01:22:24.738378 2019-10-11 20:01:43.293713 \N \N 683 185 2 0 0 0.0 2019-07-13 18:32:22.74138 2019-10-30 17:47:26.425912 \N \N 643 577 1 0 0 1.0 2019-05-16 23:44:44.534958 2020-09-21 19:34:36.959451 \N \N 644 578 1 0 0 2.0 2019-05-16 23:47:09.720125 2020-09-22 23:38:10.978219 \N \N 678 8 2 0 0 0.0 2019-07-13 18:14:52.247783 2020-03-13 17:23:01.946053 \N \N 641 575 1 0 0 1.0 2019-05-16 23:40:29.583692 2020-08-24 21:11:34.957848 \N \N 668 284 1 0 0 1.0 2019-06-04 00:10:07.769916 2021-02-14 01:07:18.015228 \N \N 713 163 2 0 0 0.0 2019-07-16 00:08:51.473621 2020-06-25 19:04:06.213961 \N \N 701 594 1 0 0 0.0 2019-07-15 19:16:30.062524 2020-02-10 17:37:56.744967 \N \N 711 604 1 0 0 1.0 2019-07-15 22:38:29.614579 2021-02-04 23:43:58.439149 \N \N 674 236 2 0 0 0.0 2019-06-24 22:05:27.63178 2020-06-25 00:37:42.501236 \N \N 677 160 2 0 0 0.0 2019-07-13 17:58:58.517196 2020-06-25 19:04:14.486367 \N \N 684 239 2 0 0 0 2019-07-13 18:32:22.768987 2020-07-03 22:27:36.613622 \N \N 730 613 1 0 0 0.0 2019-07-17 23:02:37.951861 2020-09-15 19:35:57.992232 \N \N 726 607 2 0 0 0.0 2019-07-16 01:00:22.057948 2019-08-28 00:19:37.03957 \N \N 776 653 3 0 0 0.0 2019-08-19 00:05:27.505882 2020-07-27 21:45:48.717539 \N \N 767 645 3 0 0 0.0 2019-08-18 23:36:05.235346 2020-01-31 18:05:09.278807 \N \N 721 237 2 0 0 0.0 2019-07-16 00:09:46.671757 2020-03-13 17:15:11.862386 \N \N 798 681 2 0 0 0.0 2019-08-22 15:14:17.733159 2020-06-24 22:25:35.062108 \N \N 744 623 1 0 0 0.0 2019-07-23 18:28:49.920463 2019-10-03 20:19:48.39507 \N \N 718 597 2 0 0 0.0 2019-07-16 00:09:20.546788 2020-01-26 20:21:16.480055 \N \N 778 655 3 0 0 0.0 2019-08-19 00:37:35.300176 2019-12-15 19:45:39.018373 \N \N 736 343 1 0 0 0.0 2019-07-20 18:05:48.068848 2019-07-20 18:29:13.399272 \N \N 792 674 1 0 0 0.0 2019-08-22 01:05:19.560968 2019-12-21 21:30:22.640821 \N \N 738 617 1 0 0 0 2019-07-21 19:59:14.723808 2019-07-21 19:59:14.723808 \N \N 731 614 1 0 0 0.0 2019-07-17 23:05:19.259388 2019-07-22 18:02:35.361692 \N \N 720 238 2 0 0 0.0 2019-07-16 00:09:46.650674 2020-03-13 17:17:22.664534 \N \N 780 657 3 0 0 0.0 2019-08-19 00:45:32.206566 2020-07-01 20:57:49.427948 \N \N 758 637 2 0 0 0.0 2019-07-23 19:34:49.055999 2019-10-05 21:37:58.163331 \N \N 747 626 1 0 0 0.0 2019-07-23 18:33:31.605701 2020-02-05 01:45:28.551456 \N \N 814 670 3 0 0 0 2019-08-24 02:21:20.59188 2020-01-31 19:33:36.119866 \N \N 752 631 2 0 0 0.0 2019-07-23 19:25:35.455475 2019-10-06 00:08:01.420371 \N \N 717 600 2 0 0 0.0 2019-07-16 00:09:20.521802 2020-06-24 22:20:04.176055 \N \N 757 636 2 0 0 0.0 2019-07-23 19:33:28.186492 2019-09-20 17:39:52.949865 \N \N 745 624 1 0 0 0.0 2019-07-23 18:30:23.183048 2019-09-11 17:36:40.600541 \N \N 787 669 1 0 0 0 2019-08-22 00:26:33.311208 2020-06-25 00:49:56.705651 \N \N 754 633 2 0 0 0.0 2019-07-23 19:28:21.482922 2019-10-09 19:59:18.994431 \N \N 813 672 3 0 0 0.0 2019-08-24 02:20:48.022332 2019-12-15 21:21:35.107317 \N \N 761 392 1 0 0 0.0 2019-07-28 00:57:11.709208 2020-02-07 21:53:19.182873 \N \N 771 649 3 0 0 0.0 2019-08-18 23:44:45.861538 2020-01-29 18:24:53.58169 \N \N 728 611 2 0 0 0.0 2019-07-16 01:15:20.858866 2020-01-24 23:10:46.398757 \N \N 789 671 1 0 0 4.0 2019-08-22 00:30:26.216036 2020-06-25 00:49:56.665222 \N \N 810 664 1 0 0 2.0 2019-08-22 23:12:25.063868 2021-01-21 21:03:17.291808 \N \N 749 628 2 0 0 0.0 2019-07-23 19:14:59.903874 2019-08-28 00:19:05.678924 \N \N 769 647 3 0 0 0.0 2019-08-18 23:41:02.152091 2020-01-29 18:22:24.454622 \N \N 786 668 1 0 0 20.0 2019-08-22 00:25:25.014182 2020-12-31 22:43:57.123474 \N \N 740 619 1 0 0 1.0 2019-07-23 18:23:42.536641 2020-08-27 22:29:39.911697 \N \N 729 612 1 0 0 0 2019-07-17 23:00:12.311215 2019-07-17 23:06:30.075082 \N \N 742 621 1 0 0 0 2019-07-23 18:26:49.328187 2020-01-04 21:11:34.873971 \N \N 365 367 2 0 0 0 2019-02-03 00:00:00 2020-06-25 01:36:11.375889 \N \N 23 25 1 0 0 0.0 2019-02-03 00:00:00 2019-07-25 19:44:28.813376 \N \N 760 390 1 0 0 0.0 2019-07-28 00:57:11.618991 2020-03-11 23:04:46.960657 \N \N 785 667 1 0 0 0 2019-08-22 00:22:47.52637 2019-08-22 00:22:47.52637 \N \N 751 630 2 0 0 0.0 2019-07-23 19:22:21.815787 2019-09-04 22:27:37.63789 \N \N 773 651 3 0 0 0.0 2019-08-18 23:47:20.476696 2020-01-19 01:29:05.577718 \N \N 801 686 2 0 0 0.0 2019-08-22 15:14:17.819386 2020-06-25 00:44:27.461017 \N \N 722 606 2 0 0 0.0 2019-07-16 01:00:21.887154 2019-10-22 21:57:18.732367 \N \N 741 620 1 0 0 0.0 2019-07-23 18:26:06.465518 2020-08-24 16:18:15.7106 \N \N 750 629 2 0 0 0.0 2019-07-23 19:20:13.5351 2020-06-25 01:05:56.399715 \N \N 765 643 3 0 0 3.0 2019-08-18 23:31:40.635057 2020-07-18 22:57:00.116605 \N \N 759 638 2 0 0 0.0 2019-07-23 19:35:57.394045 2020-01-24 23:04:02.11662 \N \N 779 656 3 0 0 0.0 2019-08-19 00:42:31.341196 2019-09-13 01:12:01.459669 \N \N 719 590 2 0 0 0.0 2019-07-16 00:09:20.567544 2019-09-04 17:05:21.123369 \N \N 790 672 1 0 0 1.0 2019-08-22 00:33:52.113288 2020-12-28 23:40:10.257892 \N \N 804 682 2 0 0 0.0 2019-08-22 15:29:06.762486 2020-06-25 01:33:07.30689 \N \N 807 369 1 0 0 30.0 2019-08-22 23:11:28.734137 2021-01-22 23:04:42.758564 \N \N 748 627 1 0 0 0.0 2019-07-23 18:34:10.290581 2019-10-11 20:16:51.076616 \N \N 764 641 3 0 0 0 2019-08-18 20:33:51.374613 2019-08-18 20:33:51.374613 \N \N 782 659 3 0 0 0 2019-08-19 00:51:05.178935 2019-12-08 18:02:54.636455 \N \N 788 670 1 0 0 1.0 2019-08-22 00:27:16.552206 2020-09-22 20:02:05.499466 \N \N 756 635 2 0 0 0.0 2019-07-23 19:31:39.094453 2020-06-25 01:14:47.543377 \N \N 781 658 3 0 0 0.0 2019-08-19 00:47:32.031623 2020-06-10 23:04:19.821063 \N \N 812 623 3 0 0 0 2019-08-24 02:20:37.806765 2019-10-03 20:20:41.517607 \N \N 725 608 2 0 0 0.0 2019-07-16 01:00:22.022862 2019-10-04 22:53:06.20979 \N \N 739 618 1 0 0 1.0 2019-07-23 18:22:52.697739 2020-07-02 18:46:32.777239 \N \N 774 642 3 0 0 0.0 2019-08-18 23:48:07.453055 2019-12-12 21:43:43.520416 \N \N 735 367 1 0 0 22.0 2019-07-20 18:05:48.048396 2020-12-25 00:13:13.260639 \N \N 710 603 1 0 0 0.0 2019-07-15 22:36:18.376704 2019-10-02 21:43:49.320793 \N \N 777 654 3 0 0 0.0 2019-08-19 00:06:58.247828 2020-09-08 00:30:51.755922 \N \N 799 683 2 0 0 0.0 2019-08-22 15:14:17.76019 2020-01-18 21:56:15.8547 \N \N 811 665 1 0 0 7.0 2019-08-22 23:12:25.0888 2020-09-21 19:34:17.734832 \N \N 755 634 2 0 0 0.0 2019-07-23 19:29:16.489667 2019-12-31 21:16:49.234968 \N \N 795 685 3 0 0 0.0 2019-08-22 04:48:23.402386 2020-02-18 18:13:27.804845 \N \N 805 668 2 0 0 1.0 2019-08-22 15:39:52.13811 2020-06-25 19:32:47.070223 \N \N 793 675 1 0 0 2.0 2019-08-22 01:06:51.619109 2020-10-03 18:44:47.407318 \N \N 724 610 2 0 0 0.0 2019-07-16 01:00:21.980347 2020-01-04 20:27:46.688832 \N \N 734 295 1 0 0 0.0 2019-07-20 18:05:32.96295 2020-08-28 19:29:43.381983 \N \N 806 623 2 0 0 0.0 2019-08-22 16:36:57.455753 2019-12-26 20:07:37.043398 \N \N 732 615 1 0 0 0.0 2019-07-17 23:06:25.874615 2019-09-03 20:44:17.668471 \N \N 796 653 2 0 0 0.0 2019-08-22 15:14:09.83735 2019-08-23 18:37:21.616113 \N \N 797 652 2 0 0 0.0 2019-08-22 15:14:09.887821 2020-01-07 21:22:53.712713 \N \N 743 622 1 0 0 0.0 2019-07-23 18:27:38.896018 2019-10-05 19:04:19.31385 \N \N 808 662 1 0 0 0.0 2019-08-22 23:12:25.002611 2019-12-10 21:17:27.329254 \N \N 794 684 2 0 0 0.0 2019-08-22 04:15:26.957867 2020-01-24 23:42:40.701308 \N \N 763 639 1 0 0 0.0 2019-07-29 23:15:23.448473 2020-02-09 01:30:50.078406 \N \N 772 650 3 0 0 0.0 2019-08-18 23:46:36.791857 2020-01-29 18:22:53.59653 \N \N 737 616 2 0 0 0 2019-07-21 19:41:59.023561 2019-07-22 23:38:13.246984 \N \N 753 632 2 0 0 0.0 2019-07-23 19:26:36.573394 2020-06-24 22:39:20.898076 \N \N 723 609 2 0 0 0.0 2019-07-16 01:00:21.936257 2019-09-04 22:27:57.671305 \N \N 770 648 3 0 0 0.0 2019-08-18 23:43:39.315711 2019-10-04 17:09:32.801977 \N \N 783 660 3 0 0 0.0 2019-08-19 00:52:54.591978 2019-09-10 22:17:28.975936 \N \N 766 644 3 0 0 0.0 2019-08-18 23:33:45.312798 2020-02-14 20:27:58.838126 \N \N 436 152 2 0 0 0.0 2019-02-02 23:56:07.666884 2020-06-25 00:13:04.242071 669.00 \N 762 396 1 0 0 1.0 2019-07-28 00:57:11.743266 2020-09-23 22:47:53.020339 \N \N 733 16 2 0 0 0.0 2019-07-18 01:23:32.312933 2019-09-27 19:52:59.151796 \N \N 791 673 1 0 0 2.0 2019-08-22 00:48:24.574974 2021-01-25 21:59:07.113639 \N \N 815 683 3 0 0 6.0 2019-08-24 02:21:35.783478 2021-01-07 18:06:19.680569 \N \N 768 646 3 0 0 0.0 2019-08-18 23:39:05.512844 2020-01-29 18:21:54.778414 \N \N 800 664 2 0 0 0.0 2019-08-22 15:14:17.79057 2020-06-24 22:23:02.595013 \N \N 803 670 2 0 0 0.0 2019-08-22 15:28:58.930071 2019-12-24 23:40:04.616309 \N \N 775 652 3 0 0 0.0 2019-08-19 00:03:42.980725 2020-03-10 02:50:41.856285 \N \N 746 625 1 0 0 1.0 2019-07-23 18:31:04.986486 2020-12-08 00:12:45.360079 \N \N 809 663 1 0 0 5.0 2019-08-22 23:12:25.039764 2020-09-02 20:19:28.922054 \N \N 802 672 2 0 0 0 2019-08-22 15:28:49.898722 2020-06-25 01:02:11.056547 \N \N 819 154 2 0 0 0.0 2019-08-25 00:50:12.17818 2019-08-25 00:50:23.633962 \N \N 835 662 3 0 0 0.0 2019-08-28 03:58:08.997939 2019-10-25 21:36:41.11204 \N \N 887 53 3 0 0 0.0 2019-09-03 19:26:33.807 2019-10-28 22:39:58.478282 \N \N 861 694 2 0 0 0 2019-08-30 05:04:31.525628 2020-06-25 00:21:09.969673 \N \N 833 628 1 0 0 0.0 2019-08-28 00:20:41.469789 2020-01-24 23:19:53.028953 \N \N 848 484 3 0 0 4.0 2019-08-30 05:03:35.428212 2021-01-30 00:49:34.989677 \N \N 842 547 3 0 0 1.0 2019-08-30 05:03:35.252822 2019-08-30 05:03:35.252822 \N \N 850 262 3 0 0 2.0 2019-08-30 05:03:35.475074 2019-08-30 05:03:35.475074 \N \N 816 613 3 0 0 0.0 2019-08-24 02:21:47.78315 2020-10-09 00:47:33.11511 \N \N 862 699 2 0 0 0.0 2019-08-30 05:04:31.549523 2019-10-05 23:57:38.526633 \N \N 817 446 3 0 0 0 2019-08-24 02:21:47.807838 2019-08-24 02:21:47.807838 \N \N 904 351 3 0 0 0.0 2019-09-03 19:26:39.68106 2020-12-26 19:50:45.042755 \N \N 863 700 2 0 0 0.0 2019-08-30 05:04:31.578297 2019-09-20 17:27:35.0642 \N \N 869 700 3 0 0 6.0 2019-08-31 03:52:29.08356 2019-08-31 03:52:29.08356 \N \N 897 492 3 0 0 0.0 2019-09-03 19:26:34.040566 2020-12-23 23:18:59.150718 \N \N 868 699 3 0 0 0.0 2019-08-31 03:52:19.923162 2020-07-01 21:39:51.649579 \N \N 873 703 3 0 0 0.0 2019-09-01 03:07:33.106308 2019-09-26 23:22:16.640805 \N \N 829 675 3 0 0 6.0 2019-08-25 19:44:05.588021 2020-10-06 23:05:20.159386 \N \N 899 46 3 0 0 0.0 2019-09-03 19:26:34.089485 2020-07-04 00:40:03.860708 \N \N 909 364 3 0 0 0 2019-09-03 19:26:39.779511 2019-09-03 19:26:39.779511 \N \N 859 697 3 0 0 0.0 2019-08-30 05:03:43.756033 2020-12-23 00:25:21.502513 \N \N 874 441 3 0 0 0.0 2019-09-01 03:17:21.529954 2019-09-01 03:17:53.581461 \N \N 824 665 3 0 0 0.0 2019-08-25 19:43:57.966966 2020-09-19 21:46:39.217701 \N \N 915 39 3 0 0 0 2019-09-03 20:53:43.887295 2019-09-03 20:53:43.887295 \N \N 905 353 3 0 0 0.0 2019-09-03 19:26:39.701016 2019-11-28 20:09:09.287183 \N \N 911 348 3 0 0 0 2019-09-03 19:26:39.81904 2020-08-31 23:27:43.911978 \N \N 891 451 3 0 0 0 2019-09-03 19:26:33.90714 2019-09-03 19:26:33.90714 \N \N 892 453 3 0 0 1.0 2019-09-03 19:26:33.928565 2019-09-03 19:26:33.928565 \N \N 818 369 3 0 0 21.0 2019-08-24 02:22:00.461611 2021-01-30 22:07:02.650666 \N \N 914 34 3 0 0 2.0 2019-09-03 20:53:31.31204 2019-09-03 20:53:44.137012 \N \N 875 704 3 0 0 0.0 2019-09-01 03:22:58.850851 2020-10-03 23:37:43.273253 \N \N 898 486 3 0 0 1.0 2019-09-03 19:26:34.067693 2020-07-11 20:13:30.407324 \N \N 821 679 3 0 0 0.0 2019-08-25 19:43:57.876962 2019-11-20 19:29:43.393518 \N \N 902 366 3 0 0 0.0 2019-09-03 19:26:39.639932 2019-10-19 23:27:06.89287 \N \N 823 661 3 0 0 0.0 2019-08-25 19:43:57.946984 2019-10-17 21:08:42.011992 \N \N 866 692 1 0 0 1.0 2019-08-30 05:05:08.274554 2020-06-25 00:49:43.09374 \N \N 916 466 3 0 0 0.0 2019-09-03 20:53:43.911754 2019-12-10 02:31:30.786028 \N \N 885 440 3 0 0 0.0 2019-09-03 19:26:33.766565 2019-10-02 23:44:03.153696 \N \N 784 666 1 0 0 0.0 2019-08-21 23:38:42.322985 2020-10-22 18:30:18.556657 \N \N 822 681 3 0 0 0.0 2019-08-25 19:43:57.920306 2019-12-05 18:30:01.860838 \N \N 893 47 3 0 0 0.0 2019-09-03 19:26:33.950066 2020-12-25 01:02:52.333871 \N \N 870 677 2 0 0 0.0 2019-08-31 04:20:35.052455 2019-09-21 21:05:18.321534 \N \N 854 259 3 0 0 2.0 2019-08-30 05:03:35.564018 2020-09-07 16:44:11.979727 \N \N 918 615 3 0 0 0.0 2019-09-03 20:53:43.96286 2019-12-27 20:10:13.319563 \N \N 841 689 1 0 0 0.0 2019-08-29 22:08:49.330775 2019-12-22 20:39:38.23585 \N \N 878 706 3 0 0 0.0 2019-09-03 19:02:09.627222 2019-12-23 19:32:47.596723 \N \N 912 33 3 0 0 1.0 2019-09-03 20:53:31.270436 2020-08-04 23:08:29.481636 \N \N 832 607 1 0 0 0.0 2019-08-28 00:20:41.438161 2020-01-25 17:47:15.437791 \N \N 880 708 3 0 0 0.0 2019-09-03 19:24:07.041454 2019-10-03 00:49:53.937245 \N \N 908 359 3 0 0 0.0 2019-09-03 19:26:39.760183 2020-01-30 22:07:12.221212 \N \N 843 265 3 0 0 1.0 2019-08-30 05:03:35.285962 2020-09-07 16:49:11.837457 \N \N 907 355 3 0 0 0.0 2019-09-03 19:26:39.740982 2019-12-30 19:25:49.58477 \N \N 864 696 2 0 0 0.0 2019-08-30 05:04:31.605546 2019-12-17 23:41:23.305479 \N \N 858 702 3 0 0 0.0 2019-08-30 05:03:43.735546 2020-01-31 19:32:12.643254 \N \N 849 273 3 0 0 3.0 2019-08-30 05:03:35.452623 2020-12-23 01:30:08.828051 \N \N 871 688 3 0 0 0.0 2019-08-31 04:21:11.836979 2019-11-14 17:26:05.74063 \N \N 855 269 3 0 0 16.0 2019-08-30 05:03:35.585309 2021-01-20 00:14:42.271587 \N \N 913 37 3 0 0 0 2019-09-03 20:53:31.291192 2019-09-03 20:53:31.291192 \N \N 825 687 3 0 0 0.0 2019-08-25 19:43:57.986614 2019-10-17 21:09:34.23878 \N \N 901 347 3 0 0 0.0 2019-09-03 19:26:39.617617 2020-09-22 19:45:39.664083 \N \N 895 530 3 0 0 0.0 2019-09-03 19:26:33.993691 2020-06-10 23:04:19.858091 \N \N 856 698 3 0 0 0.0 2019-08-30 05:03:43.696742 2020-01-18 02:16:21.663985 \N \N 900 495 3 0 0 0.0 2019-09-03 19:26:34.114774 2020-06-26 19:00:37.407195 \N \N 846 270 3 0 0 0.0 2019-08-30 05:03:35.368667 2020-07-08 19:35:56.154275 \N \N 903 350 3 0 0 0.0 2019-09-03 19:26:39.66018 2019-11-17 01:13:06.044589 \N \N 837 678 3 0 0 0.0 2019-08-29 14:37:49.555503 2019-12-27 20:27:40.626056 \N \N 847 258 3 0 0 2.0 2019-08-30 05:03:35.400703 2020-08-29 22:03:49.689091 \N \N 889 544 3 0 0 0.0 2019-09-03 19:26:33.85358 2019-12-24 02:33:37.815949 \N \N 917 467 3 0 0 0.0 2019-09-03 20:53:43.939212 2019-12-24 19:27:14.399321 \N \N 896 51 3 0 0 0.0 2019-09-03 19:26:34.01662 2019-12-24 20:08:42.799457 \N \N 876 705 3 0 0 2.0 2019-09-01 03:24:26.363579 2020-12-23 01:51:41.388739 \N \N 826 663 3 0 0 0.0 2019-08-25 19:43:58.006705 2020-02-13 23:13:43.355718 \N \N 820 135 2 0 0 0.0 2019-08-25 00:50:12.223425 2020-01-24 23:07:45.806878 \N \N 836 664 3 0 0 0.0 2019-08-29 14:37:39.590376 2020-01-31 18:05:31.521055 \N \N 884 473 3 0 0 0.0 2019-09-03 19:26:33.744744 2020-03-10 02:50:41.882185 \N \N 879 707 3 0 0 0.0 2019-09-03 19:09:38.642631 2020-03-12 02:13:39.215207 \N \N 839 680 3 0 0 0.0 2019-08-29 14:47:49.570446 2020-03-28 19:01:36.145455 \N \N 881 709 3 0 0 0.0 2019-09-03 19:26:02.90165 2020-04-30 23:11:20.557219 \N \N 882 445 3 0 0 0 2019-09-03 19:26:33.692711 2020-04-30 23:11:20.52295 \N \N 906 365 3 0 0 0 2019-09-03 19:26:39.72143 2019-09-03 19:26:39.72143 \N \N 860 693 2 0 0 0.0 2019-08-30 05:04:31.498136 2020-06-26 19:02:31.089295 \N \N 883 55 3 0 0 0.0 2019-09-03 19:26:33.717976 2020-06-23 23:57:09.004689 \N \N 886 45 3 0 0 0.0 2019-09-03 19:26:33.786976 2020-06-23 23:57:17.755153 \N \N 910 352 3 0 0 0.0 2019-09-03 19:26:39.798721 2020-06-26 19:02:55.640266 \N \N 877 692 2 0 0 0.0 2019-09-02 22:20:28.097707 2020-06-24 22:54:01.014393 \N \N 851 261 3 0 0 0.0 2019-08-30 05:03:35.497329 2020-07-14 00:08:18.375105 \N \N 838 682 3 0 0 0.0 2019-08-29 14:37:57.00833 2020-09-21 21:47:20.705936 \N \N 919 36 3 0 0 0.0 2019-09-03 20:53:44.002331 2020-07-03 21:50:39.766895 \N \N 857 701 3 0 0 2.0 2019-08-30 05:03:43.716373 2020-10-23 00:25:15.568142 \N \N 853 274 3 0 0 0.0 2019-08-30 05:03:35.541071 2020-09-07 16:43:19.954055 \N \N 840 476 3 0 0 31.0 2019-08-29 14:47:58.861826 2020-12-16 23:36:40.951447 \N \N 872 690 1 0 0 1.0 2019-08-31 05:01:05.144534 2020-12-18 00:03:50.576952 \N \N 852 264 3 0 0 0.0 2019-08-30 05:03:35.520305 2020-09-07 16:46:48.502378 \N \N 867 691 1 0 0 1.0 2019-08-30 05:05:08.294737 2020-08-29 19:30:06.706823 \N \N 844 271 3 0 0 0.0 2019-08-30 05:03:35.313242 2020-09-07 16:42:48.857196 \N \N 888 487 3 0 0 0.0 2019-09-03 19:26:33.827634 2020-09-02 20:13:11.608226 \N \N 827 669 3 0 0 1.0 2019-08-25 19:44:05.546951 2020-08-28 21:20:16.507295 \N \N 845 268 3 0 0 0.0 2019-08-30 05:03:35.339908 2020-09-07 16:42:40.920831 \N \N 890 545 3 0 0 0.0 2019-09-03 19:26:33.882111 2021-01-21 18:26:52.915179 \N \N 830 673 3 0 0 5.0 2019-08-25 19:44:05.610172 2020-10-15 01:32:02.060667 \N \N 831 666 3 0 0 5.0 2019-08-25 19:44:14.953608 2021-02-13 23:11:06.687826 \N \N 922 465 3 0 0 1.0 2019-09-03 20:53:44.067007 2019-09-03 20:53:44.067007 \N \N 932 468 3 0 0 1 2019-09-03 21:03:23.731239 2019-09-03 21:03:23.731239 \N \N 999 660 1 0 0 0.0 2019-09-10 22:20:47.840862 2019-09-10 22:22:16.518436 \N \N 962 27 3 0 0 0.0 2019-09-04 00:51:56.253196 2019-10-23 23:33:15.956782 \N \N 993 710 3 0 0 1.0 2019-09-05 03:30:31.038149 2020-12-29 01:09:37.438904 \N \N 936 387 3 0 0 0 2019-09-03 23:33:05.350252 2019-09-03 23:33:05.350252 \N \N 371 373 2 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:06:06.966911 \N \N 26 28 1 0 0 0.0 2019-02-03 00:00:00 2019-09-04 00:11:15.603753 \N \N 942 373 3 0 0 1.0 2019-09-04 00:51:26.617408 2019-09-04 00:51:26.617408 \N \N 959 30 3 0 0 1.0 2019-09-04 00:51:56.185276 2019-09-04 00:51:56.185276 \N \N 960 26 3 0 0 1.0 2019-09-04 00:51:56.209068 2019-09-04 00:51:56.209068 \N \N 965 23 3 0 0 1.0 2019-09-04 00:52:02.146158 2019-09-04 00:52:02.146158 \N \N 978 218 3 0 0 5.0 2019-09-04 00:52:56.802184 2019-09-04 00:52:56.802184 \N \N 986 253 3 0 0 3.0 2019-09-04 01:08:33.143843 2019-09-04 01:08:33.143843 \N \N 920 35 3 0 0 0.0 2019-09-03 20:53:44.023411 2019-11-16 00:35:41.056316 \N \N 727 605 2 0 0 0.0 2019-07-16 01:00:22.097486 2019-09-04 22:28:09.585767 \N \N 1000 507 2 0 0 0.0 2019-09-11 17:48:39.034225 2020-06-25 00:09:55.917208 \N \N 934 540 3 0 0 0 2019-09-03 21:03:23.794048 2020-09-30 22:57:14.578684 \N \N 941 378 3 0 0 0.0 2019-09-04 00:51:26.594059 2020-09-21 18:44:17.30543 \N \N 1009 622 2 0 0 0 2019-09-13 21:54:41.511189 2019-10-05 21:09:22.024124 \N \N 981 247 3 0 0 3.0 2019-09-04 01:08:26.788693 2020-07-18 23:41:43.868521 \N \N 976 204 3 0 0 0.0 2019-09-04 00:52:56.754808 2020-09-19 22:39:56.158102 \N \N 1013 666 2 0 0 0.0 2019-09-17 22:52:19.834879 2019-09-17 22:53:09.393103 \N \N 1005 149 2 0 0 0.0 2019-09-11 17:48:39.277522 2019-09-20 22:23:06.572219 \N \N 987 557 2 0 0 0.0 2019-09-04 16:37:23.338192 2020-06-25 01:54:58.301689 \N \N 1011 673 2 0 0 0.0 2019-09-14 20:59:12.523879 2020-06-25 01:02:50.216041 \N \N 927 335 3 0 0 0.0 2019-09-03 20:53:56.919933 2020-08-22 18:14:18.419616 \N \N 940 640 3 0 0 0.0 2019-09-03 23:55:57.085816 2019-12-12 21:44:15.439372 \N \N 955 528 3 0 0 0.0 2019-09-04 00:51:43.36817 2020-07-18 23:40:59.186008 \N \N 952 531 3 0 0 5.0 2019-09-04 00:51:43.297318 2020-02-11 00:58:19.709971 \N \N 994 42 3 0 0 0 2019-09-05 03:30:37.105505 2019-09-05 03:30:37.105505 \N \N 970 501 3 0 0 2.0 2019-09-04 00:52:31.917004 2020-08-27 00:12:18.705278 \N \N 988 590 3 0 0 2.0 2019-09-04 17:06:44.498367 2020-08-24 22:13:00.600371 \N \N 1006 535 1 0 0 0.0 2019-09-11 19:52:02.87783 2019-10-05 16:49:52.393698 \N \N 1008 417 1 0 0 0.0 2019-09-11 22:11:05.081244 2021-02-03 19:15:48.282302 \N \N 989 526 1 0 0 0.0 2019-09-04 18:03:02.889869 2019-10-11 00:34:14.755558 \N \N 980 170 3 0 0 4.0 2019-09-04 00:52:56.850854 2020-07-17 21:33:43.446504 \N \N 969 319 3 0 0 0.0 2019-09-04 00:52:31.894315 2019-10-17 21:08:00.100527 \N \N 975 581 3 0 0 0.0 2019-09-04 00:52:56.732878 2020-07-01 21:00:20.619164 \N \N 973 511 3 0 0 4.0 2019-09-04 00:52:56.686043 2020-06-26 19:19:47.109446 \N \N 938 58 3 0 0 0.0 2019-09-03 23:33:18.744077 2019-11-01 20:34:14.297814 \N \N 1020 149 3 0 0 0.0 2019-09-21 00:04:06.938717 2020-09-19 21:46:03.115481 \N \N 971 144 3 0 0 1.0 2019-09-04 00:52:56.634094 2020-10-26 19:43:42.575118 \N \N 1010 711 2 0 0 0.0 2019-09-13 21:54:47.751269 2019-11-06 00:40:06.780936 \N \N 1002 593 2 0 0 0.0 2019-09-11 17:48:39.145439 2020-03-21 23:37:55.377775 \N \N 998 625 2 0 0 1.0 2019-09-05 03:33:14.11131 2020-06-25 00:42:58.143853 \N \N 1015 671 2 0 0 0.0 2019-09-20 17:29:32.73662 2020-06-24 22:27:02.656311 \N \N 1001 624 2 0 0 0.0 2019-09-11 17:48:39.084329 2020-01-24 23:08:51.650211 \N \N 828 674 3 0 0 0.0 2019-08-25 19:44:05.569085 2019-11-30 18:32:50.416727 \N \N 1014 700 1 0 0 2.0 2019-09-20 17:28:58.297371 2021-01-23 20:18:24.007022 \N \N 963 29 3 0 0 0.0 2019-09-04 00:51:56.277959 2019-12-13 02:58:00.823109 \N \N 1016 509 2 0 0 0.0 2019-09-20 17:29:32.757292 2020-01-17 19:54:57.523205 \N \N 967 521 3 0 0 0.0 2019-09-04 00:52:31.851552 2020-08-15 17:38:17.410131 \N \N 961 21 3 0 0 0.0 2019-09-04 00:51:56.232631 2020-12-18 06:34:22.425129 \N \N 990 605 1 0 0 0.0 2019-09-04 23:22:58.841724 2020-01-25 17:44:21.261294 \N \N 996 176 2 0 0 0.0 2019-09-05 03:33:07.577694 2020-01-28 19:12:29.844562 \N \N 997 164 2 0 0 0.0 2019-09-05 03:33:07.607739 2020-01-28 19:12:45.851508 \N \N 950 5 3 0 0 2.0 2019-09-04 00:51:32.682348 2021-03-05 01:32:02.49006 \N \N 1017 712 2 0 0 0.0 2019-09-20 23:17:42.343953 2020-01-31 22:06:15.498317 \N \N 1003 619 2 0 0 0.0 2019-09-11 17:48:39.173278 2020-06-24 22:21:34.709425 \N \N 924 32 3 0 0 0.0 2019-09-03 20:53:44.110253 2020-02-14 18:23:05.271519 \N \N 1007 711 1 0 0 0.0 2019-09-11 19:56:50.314097 2020-02-15 19:14:45.07432 \N \N 974 519 3 0 0 0.0 2019-09-04 00:52:56.711481 2020-02-14 20:27:34.31729 \N \N 983 152 3 0 0 2.0 2019-09-04 01:08:33.077059 2020-07-21 22:33:51.657993 \N \N 992 630 1 0 0 0.0 2019-09-04 23:22:58.893877 2020-02-19 17:55:25.330321 \N \N 956 529 3 0 0 1.0 2019-09-04 00:51:43.39206 2020-08-17 19:35:27.492271 \N \N 929 339 3 0 0 0.0 2019-09-03 20:53:56.966252 2020-12-22 20:54:11.840792 \N \N 926 463 3 0 0 0.0 2019-09-03 20:53:50.498339 2020-05-04 00:03:05.35364 \N \N 933 541 3 0 0 1.0 2019-09-03 21:03:23.758355 2020-06-10 23:04:19.884129 \N \N 708 601 1 0 0 0.0 2019-07-15 22:33:26.981116 2020-06-24 21:41:50.94747 \N \N 1004 62 2 0 0 0.0 2019-09-11 17:48:39.196225 2020-06-25 00:09:17.044315 \N \N 953 60 3 0 0 7 2019-09-04 00:51:43.320384 2019-09-04 00:51:43.320384 \N \N 951 570 3 0 0 2 2019-09-04 00:51:37.506355 2020-02-23 03:12:25.630199 \N \N 985 395 3 0 0 0.0 2019-09-04 01:08:33.122194 2020-07-01 21:03:09.32565 \N \N 984 551 3 0 0 0.0 2019-09-04 01:08:33.099957 2020-07-01 21:37:11.700632 \N \N 923 40 3 0 0 0.0 2019-09-03 20:53:44.088645 2020-08-06 22:31:10.651157 \N \N 930 338 3 0 0 0 2019-09-03 20:53:56.98925 2019-09-03 20:53:56.98925 \N \N 982 586 3 0 0 3.0 2019-09-04 01:08:26.815599 2020-07-03 00:37:55.077113 \N \N 928 337 3 0 0 0 2019-09-03 20:53:56.942349 2019-09-03 20:53:56.942349 \N \N 921 38 3 0 0 0.0 2019-09-03 20:53:44.046261 2020-08-22 18:14:34.056497 \N \N 958 22 3 0 0 0.0 2019-09-04 00:51:56.164487 2021-01-19 19:46:18.761292 \N \N 949 9 3 0 0 4.0 2019-09-04 00:51:32.661114 2020-10-23 18:58:24.544105 \N \N 931 333 3 0 0 0.0 2019-09-03 20:53:57.017655 2020-08-29 00:43:51.833631 \N \N 957 28 3 0 0 0.0 2019-09-04 00:51:56.143126 2020-09-03 21:18:34.535239 \N \N 972 434 3 0 0 2.0 2019-09-04 00:52:56.661106 2020-07-16 18:59:03.581476 \N \N 925 31 3 0 0 0.0 2019-09-03 20:53:44.157045 2020-07-20 19:11:16.732988 \N \N 977 591 3 0 0 2.0 2019-09-04 00:52:56.77996 2020-07-19 00:16:55.376 \N \N 935 388 3 0 0 10.0 2019-09-03 23:33:05.30806 2020-11-25 01:36:15.064424 \N \N 979 255 3 0 0 0.0 2019-09-04 00:52:56.82438 2020-09-19 22:09:00.290855 \N \N 1019 146 3 0 0 0.0 2019-09-21 00:04:06.916034 2020-09-19 21:47:06.539007 \N \N 944 374 3 0 0 0.0 2019-09-04 00:51:26.659637 2020-09-21 18:43:58.882122 \N \N 943 371 3 0 0 0.0 2019-09-04 00:51:26.638646 2020-09-21 18:45:55.281642 \N \N 945 375 3 0 0 0.0 2019-09-04 00:51:26.681114 2020-09-21 18:44:39.402279 \N \N 946 376 3 0 0 0.0 2019-09-04 00:51:26.706155 2020-09-23 22:50:26.853875 \N \N 947 377 3 0 0 0.0 2019-09-04 00:51:26.728914 2020-09-21 18:45:05.752877 \N \N 964 24 3 0 0 0.0 2019-09-04 00:52:02.122343 2020-12-23 21:44:31.127155 \N \N 948 370 3 0 0 0.0 2019-09-04 00:51:26.752262 2020-09-21 18:47:22.290324 \N \N 966 488 3 0 0 0.0 2019-09-04 00:52:10.596807 2020-10-03 23:38:15.196914 \N \N 937 41 3 0 0 5.0 2019-09-03 23:33:13.17822 2020-12-22 20:36:37.187012 \N \N 939 367 3 0 0 17.0 2019-09-03 23:45:39.605267 2021-01-14 23:48:00.8238 \N \N 1012 681 1 0 0 2.0 2019-09-14 21:20:29.521065 2021-01-25 23:28:46.926327 \N \N 1048 552 2 0 0 0.0 2019-10-05 21:04:51.655191 2020-01-31 19:36:28.651939 \N \N 1072 742 1 0 0 1.0 2019-10-07 20:32:14.911582 2020-11-25 20:16:50.675929 \N \N 1023 713 1 0 0 3.0 2019-09-21 20:59:30.001269 2020-07-18 16:15:46.708789 \N \N 1099 761 2 0 0 0.0 2019-10-11 05:22:03.372996 2020-06-24 22:38:31.7718 \N \N 1096 758 1 0 0 0.0 2019-10-11 03:10:40.991687 2019-12-18 00:36:11.894514 \N \N 1031 720 1 0 0 0.0 2019-09-26 23:13:32.162699 2019-12-08 02:47:46.063112 \N \N 1097 760 1 0 0 0.0 2019-10-11 03:10:41.0106 2019-12-30 20:12:23.600941 \N \N 1040 725 2 0 0 0.0 2019-10-05 17:35:28.054704 2020-03-07 21:37:19.487602 \N \N 1043 608 1 0 0 3.0 2019-10-05 19:05:11.983629 2020-11-06 22:03:31.840907 \N \N 1052 220 2 0 0 0.0 2019-10-05 21:05:08.970508 2020-06-25 00:33:17.078766 \N \N 1084 751 2 0 0 0.0 2019-10-10 20:59:46.092284 2020-01-27 19:22:59.49488 \N \N 1047 728 2 0 0 0.0 2019-10-05 19:07:34.99667 2020-03-07 21:28:18.574928 \N \N 1088 755 2 0 0 0.0 2019-10-10 21:27:12.121889 2020-02-16 01:59:09.891262 \N \N 1100 762 2 0 0 0.0 2019-10-11 05:23:59.236591 2020-01-03 20:14:57.865301 \N \N 1041 726 2 0 0 0.0 2019-10-05 17:36:07.501685 2019-11-07 18:45:26.143367 \N \N 1034 723 1 0 0 0.0 2019-09-26 23:19:17.80764 2019-10-02 20:09:19.709667 \N \N 1027 716 1 0 0 0.0 2019-09-26 23:05:41.229188 2020-10-02 00:52:03.891191 \N \N 865 695 2 0 0 0.0 2019-08-30 05:04:31.630146 2019-10-04 22:53:56.691904 \N \N 1070 740 1 0 0 1.0 2019-10-07 20:27:58.52698 2020-01-29 16:44:12.10453 \N \N 1069 739 1 0 0 0.0 2019-10-07 20:26:09.2582 2020-01-26 00:12:28.675011 \N \N 1038 703 1 0 0 0.0 2019-10-03 00:55:34.604419 2020-08-19 00:03:06.823032 \N \N 1039 724 2 0 0 0.0 2019-10-05 17:34:42.372045 2020-03-07 21:30:59.201518 \N \N 1081 633 1 0 0 3.0 2019-10-09 19:59:47.477701 2020-01-03 18:25:28.052778 \N \N 1079 749 2 0 0 0.0 2019-10-08 06:01:33.374406 2020-01-24 17:38:55.90877 \N \N 1037 708 1 0 0 0.0 2019-10-03 00:55:34.583461 2019-10-05 23:55:48.585549 \N \N 1105 761 1 0 0 0.0 2019-10-11 05:41:28.642009 2020-08-14 18:16:54.391766 \N \N 1076 746 1 0 0 0.0 2019-10-07 20:41:44.798933 2019-12-22 18:54:33.339452 \N \N 1091 758 2 0 0 0 2019-10-11 02:59:08.607306 2020-01-02 20:03:05.858887 \N \N 1042 727 2 0 0 0.0 2019-10-05 17:37:00.648832 2020-01-01 00:36:34.15781 \N \N 1035 717 3 0 0 0.0 2019-09-28 00:46:15.123719 2020-07-13 22:09:29.789816 \N \N 1107 766 3 0 0 0.0 2019-10-11 19:05:32.963017 2020-01-29 02:14:50.357052 \N \N 1115 774 3 0 0 0.0 2019-10-11 19:12:09.006071 2020-01-29 02:19:03.010413 \N \N 1066 699 1 0 0 3.0 2019-10-07 20:19:09.123474 2021-01-31 01:01:33.884485 \N \N 1029 718 1 0 0 0.0 2019-09-26 23:10:45.241757 2019-11-02 01:34:11.93646 \N \N 1055 729 1 0 0 0.0 2019-10-05 23:52:43.838336 2020-02-05 19:37:58.116268 \N \N 1059 732 1 0 0 0.0 2019-10-07 20:09:43.667002 2020-06-25 20:23:59.512772 \N \N 1114 773 3 0 0 0.0 2019-10-11 19:11:25.389991 2020-01-29 18:25:02.352927 \N \N 1119 778 3 0 0 0.0 2019-10-11 19:15:30.101784 2020-01-29 18:21:35.519156 \N \N 1049 504 2 0 0 0.0 2019-10-05 21:04:57.818171 2020-02-06 20:17:22.990572 \N \N 1021 669 2 0 0 0.0 2019-09-21 20:45:29.073246 2020-06-24 22:24:28.178953 \N \N 1036 722 3 0 0 0.0 2019-09-28 00:46:15.15282 2020-08-26 00:48:46.744781 \N \N 1092 759 2 0 0 0.0 2019-10-11 03:00:34.600274 2019-12-26 20:00:56.875027 \N \N 1094 757 3 0 0 1.0 2019-10-11 03:10:08.058517 2021-01-06 00:07:40.039991 \N \N 1064 724 1 0 0 0.0 2019-10-07 20:19:09.073241 2019-12-31 18:33:04.599139 599.00 \N 1103 764 1 0 0 0 2019-10-11 05:29:26.47099 2019-11-18 22:27:41.59676 \N \N 1078 748 1 0 0 0.0 2019-10-07 20:43:39.256262 2021-01-05 22:51:27.941587 \N \N 1102 764 2 0 0 0.0 2019-10-11 05:26:40.550114 2019-10-12 18:52:20.358924 \N \N 1022 677 1 0 0 0.0 2019-09-21 20:59:21.404802 2020-07-01 21:46:10.660051 \N \N 1087 754 2 0 0 0.0 2019-10-10 21:26:27.043307 2020-02-13 23:32:22.761041 \N \N 1063 736 1 0 0 0.0 2019-10-07 20:17:54.346911 2020-06-25 20:49:58.69799 \N \N 1086 753 2 0 0 0.0 2019-10-10 21:20:54.189523 2019-12-23 22:46:12.768928 \N \N 1098 754 1 0 0 0.0 2019-10-11 03:10:50.322495 2020-06-25 20:54:58.149028 \N \N 1062 735 1 0 0 2.0 2019-10-07 20:15:58.617635 2020-01-11 19:25:23.468113 \N \N 1106 765 3 0 0 0.0 2019-10-11 19:04:50.534673 2020-01-29 02:16:08.487363 \N \N 1074 744 1 0 0 0.0 2019-10-07 20:37:05.478182 2020-01-31 01:22:18.759482 \N \N 1080 676 3 0 0 0.0 2019-10-08 06:08:12.701096 2020-01-25 18:23:11.075939 \N \N 1065 631 1 0 0 0.0 2019-10-07 20:19:09.097244 2021-01-11 20:32:22.714119 \N \N 1051 109 2 0 0 0.0 2019-10-05 21:05:08.884995 2020-06-24 22:04:57.863156 \N \N 1093 760 2 0 0 0.0 2019-10-11 03:05:31.076174 2019-10-13 17:20:08.438319 \N \N 1060 733 1 0 0 0.0 2019-10-07 20:12:11.684004 2020-12-29 00:25:13.505484 \N \N 1101 763 2 0 0 0.0 2019-10-11 05:25:21.124517 2019-10-11 05:28:09.706292 \N \N 1033 722 1 0 0 0.0 2019-09-26 23:17:29.826169 2020-06-24 00:15:54.377099 \N \N 1082 722 2 0 0 0.0 2019-10-10 18:42:51.679078 2020-01-07 21:22:46.998219 \N \N 1108 767 3 0 0 0.0 2019-10-11 19:06:12.549675 2020-01-29 02:15:49.398177 \N \N 1110 769 3 0 0 2.0 2019-10-11 19:08:10.499944 2020-12-24 22:50:47.851816 \N \N 1111 770 3 0 0 0.0 2019-10-11 19:08:49.325339 2020-01-29 02:15:13.73452 \N \N 1109 768 3 0 0 0.0 2019-10-11 19:07:19.374246 2019-12-23 19:36:04.102259 \N \N 1089 756 2 0 0 0 2019-10-11 02:55:51.299401 2019-10-11 03:05:38.791135 \N \N 1025 636 1 0 0 1.0 2019-09-21 21:03:35.046742 2020-07-01 22:48:35.927515 \N \N 1116 775 3 0 0 0.0 2019-10-11 19:13:04.758062 2020-01-29 02:16:23.432927 \N \N 1117 776 3 0 0 0.0 2019-10-11 19:13:58.386231 2020-01-29 02:16:40.758411 \N \N 1118 777 3 0 0 0.0 2019-10-11 19:14:46.258541 2019-12-18 22:42:12.973119 \N \N 1095 758 3 0 0 1 2019-10-11 03:10:08.078173 2019-10-11 03:10:08.078173 \N \N 1045 676 1 0 0 0.0 2019-10-05 19:05:31.330339 2020-12-11 23:05:21.760726 \N \N 1028 717 1 0 0 0.0 2019-09-26 23:07:45.171589 2020-07-06 19:13:06.094685 \N \N 1032 721 1 0 0 0.0 2019-09-26 23:15:58.551196 2020-12-05 20:28:18.035836 \N \N 1057 731 1 0 0 0.0 2019-10-07 19:11:43.410674 2020-06-25 20:23:49.395348 \N \N 1071 741 1 0 0 0.0 2019-10-07 20:30:03.99065 2020-01-26 01:38:31.456201 \N \N 1068 738 1 0 0 1.0 2019-10-07 20:24:07.417373 2020-02-15 17:15:06.103151 \N \N 1054 153 2 0 0 0.0 2019-10-05 21:05:09.023895 2019-11-10 17:38:30.98095 \N \N 1053 89 2 0 0 0 2019-10-05 21:05:08.989109 2019-11-06 00:31:09.612455 \N \N 1077 747 1 0 0 0.0 2019-10-07 20:42:44.867211 2019-12-11 17:41:24.52214 \N \N 1083 750 2 0 0 0.0 2019-10-10 20:57:15.277554 2019-10-31 02:15:51.039759 \N \N 1112 771 3 0 0 0.0 2019-10-11 19:09:42.218264 2020-01-29 18:46:25.331737 \N \N 1030 719 1 0 0 0.0 2019-09-26 23:12:23.57739 2020-06-23 23:39:41.073607 \N \N 1026 665 2 0 0 0 2019-09-23 20:47:24.919924 2020-06-24 22:27:39.642914 \N \N 1075 745 1 0 0 0.0 2019-10-07 20:38:02.97405 2019-11-13 22:19:20.282358 \N \N 1061 734 1 0 0 0.0 2019-10-07 20:14:12.620595 2019-12-12 21:58:54.793371 \N \N 1113 772 3 0 0 2.0 2019-10-11 19:10:20.63818 2020-12-13 21:04:19.420663 \N \N 1090 757 2 0 0 0.0 2019-10-11 02:57:35.529147 2020-02-13 19:07:29.185417 \N \N 1024 714 1 0 0 0.0 2019-09-21 20:59:30.037396 2020-02-13 19:03:31.746524 \N \N 1056 730 1 0 0 0.0 2019-10-05 23:59:52.328833 2019-12-31 23:47:34.213658 \N \N 1085 752 2 0 0 0.0 2019-10-10 21:10:47.89722 2020-03-07 21:32:22.05909 \N \N 1046 715 1 0 0 0.0 2019-10-05 19:05:31.352616 2020-11-19 18:33:32.005922 \N \N 1067 737 1 0 0 2.0 2019-10-07 20:21:21.938269 2021-02-03 21:15:38.947493 \N \N 1058 701 1 0 0 0.0 2019-10-07 19:58:03.440846 2020-10-22 18:30:33.125003 \N \N 1050 223 2 0 0 0.0 2019-10-05 21:05:08.863749 2020-01-25 18:59:30.285958 \N \N 1044 695 1 0 0 0.0 2019-10-05 19:05:19.863133 2020-09-18 22:45:20.941851 \N \N 1104 763 1 0 0 0 2019-10-11 05:29:26.490552 2019-10-11 05:29:26.490552 \N \N 995 710 2 0 0 0.0 2019-09-05 03:33:02.598234 2020-06-25 00:45:32.969807 \N \N 1120 779 3 0 0 0.0 2019-10-11 19:16:32.16273 2020-01-29 02:19:19.647925 \N \N 1121 780 3 0 0 0.0 2019-10-11 19:17:10.065299 2020-01-29 18:21:18.49259 \N \N 1122 781 3 0 0 0.0 2019-10-11 19:17:56.037984 2020-01-29 02:20:17.248172 \N \N 1176 820 3 0 0 0.0 2019-10-19 19:51:13.73321 2019-11-01 20:34:14.320368 \N \N 1136 792 3 0 0 0.0 2019-10-12 20:29:15.317709 2020-01-29 18:20:06.484706 \N \N 1199 843 1 0 0 0.0 2019-10-21 17:22:12.767517 2019-10-29 20:58:36.685208 \N \N 1151 796 3 0 0 0.0 2019-10-14 19:11:18.19393 2020-12-30 00:14:42.207219 \N \N 1177 821 3 0 0 0.0 2019-10-19 19:56:35.664098 2020-12-12 02:34:15.336024 \N \N 1166 782 1 0 0 6.0 2019-10-19 18:51:52.701717 2020-12-06 01:09:21.664034 \N \N 1157 802 1 0 0 1.0 2019-10-14 19:19:24.659616 2021-02-06 18:20:15.051131 \N \N 1219 172 2 0 0 0.0 2019-10-22 00:30:52.142384 2020-07-04 00:00:50.335901 \N \N 1211 850 2 0 0 0.0 2019-10-21 20:54:54.82667 2019-10-31 21:42:37.044624 \N \N 1198 842 1 0 0 0.0 2019-10-21 17:21:04.478392 2019-12-24 02:23:21.171176 \N \N 954 499 3 0 0 2.0 2019-09-04 00:51:43.343107 2020-07-01 23:04:17.034334 \N \N 1216 849 2 0 0 0.0 2019-10-21 20:54:54.943933 2019-10-31 02:18:09.150028 \N \N 1158 803 1 0 0 5.0 2019-10-14 19:19:52.45335 2020-10-31 01:30:08.820732 \N \N 1204 848 1 0 0 0.0 2019-10-21 17:30:34.410815 2019-11-18 19:35:04.716549 \N \N 1140 791 1 0 0 3.0 2019-10-12 21:09:02.374665 2020-11-27 00:46:12.502925 \N \N 1179 823 3 0 0 2.0 2019-10-19 20:39:27.301765 2020-03-18 18:54:23.858226 \N \N 1174 818 3 0 0 0.0 2019-10-19 19:40:13.608671 2019-11-03 18:23:11.575146 \N \N 1160 805 1 0 0 0.0 2019-10-14 19:32:52.075292 2019-12-20 21:31:45.889457 \N \N 1164 809 2 0 0 0.0 2019-10-19 18:05:18.144503 2019-12-23 20:37:35.692131 \N \N 1202 846 1 0 0 0.0 2019-10-21 17:28:31.431501 2019-12-07 23:26:36.758386 \N \N 1139 788 2 0 0 0.0 2019-10-12 20:45:51.109839 2020-06-25 19:04:25.606259 \N \N 1129 782 3 0 0 3.0 2019-10-11 22:13:34.052511 2020-12-23 03:39:10.989791 \N \N 1159 804 1 0 0 5.0 2019-10-14 19:20:27.028181 2021-01-16 01:44:33.6624 \N \N 1143 795 2 0 0 0.0 2019-10-13 16:42:29.432169 2019-10-13 17:09:44.641374 \N \N 1145 797 2 0 0 0.0 2019-10-13 16:47:12.417021 2019-10-13 17:11:48.498346 \N \N 1144 796 2 0 0 0.0 2019-10-13 16:44:02.696719 2019-10-13 17:15:11.592134 \N \N 1142 794 2 0 0 0 2019-10-13 16:40:36.00931 2019-10-13 16:52:29.831183 \N \N 1126 784 2 0 0 0.0 2019-10-11 21:26:16.92374 2019-12-27 23:42:12.782745 \N \N 1197 841 1 0 0 0.0 2019-10-21 17:19:52.398471 2019-10-25 21:46:44.094653 \N \N 1135 791 3 0 0 0.0 2019-10-12 20:21:26.105696 2020-01-29 18:19:27.035312 \N \N 1149 801 2 0 0 1.0 2019-10-14 19:06:52.225215 2019-10-14 19:14:56.614189 \N \N 1148 800 2 0 0 0.0 2019-10-14 19:06:07.224766 2019-10-23 23:59:23.906298 \N \N 1162 807 2 0 0 0.0 2019-10-15 05:30:28.612558 2019-12-17 23:42:04.455768 \N \N 1123 782 2 0 0 0 2019-10-11 21:10:25.934165 2019-12-24 00:51:13.467708 \N \N 1185 829 3 0 0 0.0 2019-10-19 21:49:15.706353 2019-11-23 21:03:40.198594 \N \N 1169 813 3 0 0 0.0 2019-10-19 19:02:00.821334 2020-07-21 23:30:34.415806 \N \N 1170 814 3 0 0 1.0 2019-10-19 19:05:29.713194 2020-03-01 02:38:39.054258 \N \N 1168 812 3 0 0 0.0 2019-10-19 19:00:33.11324 2019-12-21 20:23:59.42251 \N \N 1125 783 2 0 0 0.0 2019-10-11 21:20:23.138837 2020-06-25 01:30:18.218183 \N \N 1173 817 3 0 0 1.0 2019-10-19 19:33:00.947121 2020-03-18 18:54:07.24646 \N \N 1146 798 2 0 0 0.0 2019-10-13 16:52:24.120951 2020-06-24 22:38:34.772034 \N \N 1218 661 2 0 0 0.0 2019-10-21 20:55:22.392493 2020-06-25 00:43:29.127896 \N \N 1152 798 3 0 0 0.0 2019-10-14 19:11:18.214204 2020-01-31 18:04:06.111455 \N \N 1128 786 3 0 0 0.0 2019-10-11 22:13:24.212369 2020-12-05 00:44:40.273896 \N \N 1215 851 2 0 0 0.0 2019-10-21 20:54:54.921738 2019-12-17 00:35:48.229479 \N \N 1183 827 3 0 0 0.0 2019-10-19 20:57:42.161475 2020-12-12 02:34:15.364295 \N \N 1147 799 2 0 0 0.0 2019-10-14 18:44:45.780817 2020-06-24 22:30:18.707884 \N \N 1209 853 1 0 0 0.0 2019-10-21 17:36:03.943656 2019-10-23 17:40:58.977852 \N \N 1167 811 3 0 0 1.0 2019-10-19 18:57:00.879083 2020-03-18 18:54:07.274517 \N \N 1155 796 1 0 0 3.0 2019-10-14 19:14:00.528514 2020-12-30 00:17:19.936284 \N \N 1182 826 3 0 0 0 2019-10-19 20:49:59.609035 2019-10-19 22:56:00.660436 \N \N 1187 831 3 0 0 0.0 2019-10-19 22:53:14.139341 2019-12-21 20:23:59.355133 \N \N 1137 793 3 0 0 0.0 2019-10-12 20:30:02.096416 2020-12-05 00:37:28.44855 \N \N 1191 835 3 0 0 0.0 2019-10-20 00:08:47.44916 2019-11-07 19:53:36.780228 \N \N 1194 838 3 0 0 0.0 2019-10-20 00:16:17.387501 2019-11-07 19:54:02.706192 \N \N 1193 837 3 0 0 0.0 2019-10-20 00:14:06.041562 2019-11-07 19:54:29.080822 \N \N 1195 839 3 0 0 0.0 2019-10-20 00:22:04.79242 2019-11-07 19:54:08.752414 \N \N 1172 816 3 0 0 0.0 2019-10-19 19:14:46.038101 2019-11-07 23:38:24.698509 \N \N 1192 836 3 0 0 0.0 2019-10-20 00:10:28.282225 2019-11-07 19:54:19.167717 \N \N 1203 847 1 0 0 0.0 2019-10-21 17:29:26.163299 2019-10-21 18:21:38.743264 \N \N 1175 819 3 0 0 0.0 2019-10-19 19:47:05.403628 2019-11-05 03:06:44.325622 \N \N 1156 800 1 0 0 4.0 2019-10-14 19:17:17.322837 2020-12-31 21:40:09.561779 \N \N 1131 764 3 0 0 0 2019-10-12 18:53:19.452287 2019-10-12 18:53:19.452287 \N \N 1133 789 3 0 0 0.0 2019-10-12 20:14:57.768638 2020-01-19 00:02:52.022539 \N \N 1206 850 1 0 0 0.0 2019-10-21 17:32:16.646552 2019-10-21 18:21:44.375828 \N \N 1205 849 1 0 0 0.0 2019-10-21 17:31:34.866195 2019-12-07 23:26:36.780417 \N \N 1141 790 1 0 0 1.0 2019-10-12 21:09:02.585432 2020-12-29 23:06:16.876842 \N \N 1134 790 3 0 0 0.0 2019-10-12 20:16:24.706382 2020-12-05 00:44:46.288995 \N \N 1190 834 3 0 0 0.0 2019-10-20 00:02:44.689532 2019-11-07 19:53:28.984155 \N \N 1161 806 1 0 0 0.0 2019-10-14 19:35:34.581678 2019-12-13 23:28:56.913155 \N \N 1200 844 1 0 0 0.0 2019-10-21 17:23:24.550766 2019-10-25 21:50:32.205515 \N \N 1221 680 2 0 0 0.0 2019-10-22 01:35:57.048838 2020-06-25 00:17:42.039457 \N \N 1207 851 1 0 0 0.0 2019-10-21 17:33:56.585455 2019-10-27 00:38:28.31648 \N \N 1165 810 2 0 0 0.0 2019-10-19 18:06:52.086649 2020-06-25 00:38:30.065034 \N \N 1212 847 2 0 0 0.0 2019-10-21 20:54:54.84693 2019-10-27 19:47:36.613591 \N \N 1189 833 3 0 0 0.0 2019-10-20 00:01:32.982832 2020-07-02 18:02:55.860013 \N \N 1127 786 2 0 0 0.0 2019-10-11 22:09:07.679304 2020-03-07 21:36:15.63353 \N \N 1186 830 3 0 0 0.0 2019-10-19 21:56:42.593103 2020-08-17 01:17:14.875471 \N \N 1124 620 2 0 0 0.0 2019-10-11 21:10:34.318256 2020-06-24 22:21:31.715155 \N \N 1208 852 1 0 0 0.0 2019-10-21 17:35:21.034518 2019-11-16 22:48:56.695291 \N \N 1181 825 3 0 0 0.0 2019-10-19 20:48:05.681102 2019-12-03 01:34:45.592002 \N \N 1214 845 2 0 0 0.0 2019-10-21 20:54:54.896798 2019-10-31 21:45:19.24469 \N \N 1201 845 1 0 0 0.0 2019-10-21 17:25:20.625233 2019-10-31 21:46:32.497607 \N \N 1213 841 2 0 0 0.0 2019-10-21 20:54:54.869419 2019-12-24 18:07:51.367416 \N \N 1180 824 3 0 0 0.0 2019-10-19 20:41:33.90775 2019-12-22 21:09:10.417584 \N \N 1210 843 2 0 0 0.0 2019-10-21 20:54:54.804538 2019-12-23 00:25:03.035573 \N \N 1154 760 3 0 0 0.0 2019-10-14 19:11:25.802245 2019-11-23 17:10:11.899044 \N \N 1188 832 3 0 0 0.0 2019-10-19 22:55:26.616507 2019-12-21 20:23:59.331774 \N \N 1138 789 2 0 0 0.0 2019-10-12 20:45:51.089488 2020-06-24 22:43:10.11486 \N \N 1196 840 1 0 0 0.0 2019-10-20 16:42:53.629139 2020-01-24 01:04:04.851868 \N \N 1132 788 3 0 0 0.0 2019-10-12 20:14:17.126168 2020-01-29 18:19:39.863616 \N \N 1178 822 3 0 0 0.0 2019-10-19 19:58:52.348616 2019-12-17 22:50:21.357981 \N \N 1153 795 3 0 0 0.0 2019-10-14 19:11:18.235508 2019-12-23 18:16:19.708223 \N \N 1184 828 3 0 0 0.0 2019-10-19 21:46:44.006818 2019-12-24 22:52:29.422738 \N \N 1150 797 3 0 0 0 2019-10-14 19:11:18.170219 2019-12-12 21:44:40.784338 \N \N 1220 171 2 0 0 0.0 2019-10-22 00:30:52.163249 2020-06-25 00:38:20.089034 \N \N 1171 815 3 0 0 0.0 2019-10-19 19:07:58.753035 2020-02-08 20:50:35.383299 \N \N 1217 687 2 0 0 0.0 2019-10-21 20:55:22.372132 2020-03-12 18:38:19.612653 \N \N 1277 868 1 0 0 0.0 2019-11-05 19:41:19.165945 2020-06-24 21:49:28.82192 \N \N 1289 882 2 0 0 0.0 2019-11-09 19:21:15.196603 2020-01-16 02:05:08.678272 \N \N 1297 877 1 0 0 0.0 2019-11-09 21:27:59.945691 2020-12-24 01:14:54.858318 \N \N 1230 856 3 0 0 0.0 2019-10-25 17:16:54.273608 2020-01-29 18:20:27.741951 \N \N 1231 857 3 0 0 5.0 2019-10-25 17:17:53.05406 2021-01-15 23:40:09.545005 \N \N 1232 858 3 0 0 0.0 2019-10-25 17:18:33.796983 2020-01-29 02:13:52.838036 \N \N 1237 863 3 0 0 0.0 2019-10-25 17:23:55.185478 2020-01-29 18:21:47.468554 \N \N 1269 888 3 0 0 1 2019-11-04 19:07:10.951534 2020-12-31 22:07:52.170403 \N \N 1266 873 3 0 0 0.0 2019-11-04 19:07:10.88055 2020-06-26 19:19:47.139105 \N \N 1286 893 3 0 0 1.0 2019-11-06 18:21:13.911074 2021-01-09 02:31:31.569767 \N \N 1293 838 1 0 0 0.0 2019-11-09 21:27:47.313387 2020-02-14 23:26:11.282344 \N \N 1245 866 1 0 0 2.0 2019-10-30 02:29:43.321811 2020-12-31 00:11:23.370257 \N \N 1284 885 1 0 0 0.0 2019-11-06 01:30:53.92738 2020-06-25 20:54:59.795478 \N \N 1130 787 2 0 0 0.0 2019-10-12 18:42:55.696052 2020-01-24 23:09:18.220639 \N \N 1287 884 2 0 0 0.0 2019-11-09 19:21:15.157486 2019-12-15 00:50:56.251675 \N \N 1299 880 1 0 0 0.0 2019-11-09 21:27:59.988693 2019-12-30 23:06:28.194891 \N \N 1302 784 1 0 0 0.0 2019-11-12 02:35:01.86616 2019-11-13 22:38:01.278736 \N \N 1255 873 2 0 0 0 2019-10-30 04:05:05.193967 2020-01-02 19:56:29.449049 \N \N 1271 891 3 0 0 0.0 2019-11-04 19:07:10.999411 2020-01-07 20:50:42.261776 \N \N 1309 929 1 0 0 0.0 2019-11-13 19:45:13.370287 2019-11-19 19:10:08.693904 \N \N 1264 908 2 0 0 0.0 2019-11-02 21:27:40.648058 2020-07-03 22:31:31.490908 \N \N 1294 839 1 0 0 0.0 2019-11-09 21:27:47.333665 2020-07-06 21:29:51.719554 \N \N 1261 905 2 0 0 0.0 2019-11-02 21:25:21.852756 2020-07-03 22:31:20.271321 \N \N 1262 906 2 0 0 0.0 2019-11-02 21:25:58.419625 2020-07-03 22:31:04.504828 \N \N 1276 897 1 0 0 7.0 2019-11-05 19:41:19.145624 2020-11-25 20:21:05.815555 \N \N 1275 889 1 1 1 0.0 2019-11-05 19:41:19.123571 2020-01-11 19:25:23.426437 \N \N 1296 837 1 0 0 0.0 2019-11-09 21:27:47.378326 2020-01-24 20:38:43.832422 \N \N 1295 836 1 0 0 0.0 2019-11-09 21:27:47.35506 2020-03-14 01:40:00.682782 \N \N 1311 927 1 0 0 1.0 2019-11-13 19:45:13.412777 2019-12-21 21:27:19.969761 \N \N 1257 898 2 0 0 0.0 2019-10-30 04:22:44.337377 2020-02-14 01:16:20.358949 \N \N 1274 892 1 0 0 0.0 2019-11-05 19:41:19.101061 2019-12-14 20:39:50.31719 \N \N 1249 902 1 0 0 1.0 2019-10-30 02:30:08.571165 2020-12-31 00:02:15.267863 \N \N 1310 928 1 0 0 0.0 2019-11-13 19:45:13.393882 2019-11-28 20:42:03.792641 \N \N 1252 891 2 0 0 0.0 2019-10-30 04:04:48.047383 2020-03-07 21:23:16.391487 \N \N 1243 783 3 0 0 0.0 2019-10-30 02:01:56.857854 2020-12-24 18:45:34.73503 \N \N 1298 870 1 0 0 0.0 2019-11-09 21:27:59.969241 2019-12-18 00:35:13.304643 \N \N 1306 934 1 0 0 0.0 2019-11-13 19:45:13.284914 2020-07-21 22:38:16.584769 \N \N 1239 864 2 0 0 0.0 2019-10-28 18:26:20.18239 2020-06-25 18:40:12.358486 \N \N 1163 808 3 0 0 0.0 2019-10-16 19:58:41.344405 2019-12-12 21:44:57.058427 \N \N 1303 940 1 0 0 0.0 2019-11-13 19:45:13.220976 2019-12-04 20:41:09.13976 \N \N 1315 923 1 0 0 0.0 2019-11-13 19:45:13.485652 2019-12-22 18:03:43.787685 \N \N 1254 874 2 0 0 0.0 2019-10-30 04:05:05.171629 2019-12-17 23:43:53.667411 \N \N 1304 937 1 0 0 0.0 2019-11-13 19:45:13.245763 2019-11-13 22:43:01.629117 \N \N 1307 933 1 0 0 0.0 2019-11-13 19:45:13.322845 2019-12-24 23:08:09.064866 \N \N 1308 932 1 0 0 0.0 2019-11-13 19:45:13.343509 2019-11-15 20:28:46.975177 \N \N 1267 897 3 0 0 1 2019-11-04 19:07:10.900963 2020-12-22 22:09:12.532407 \N \N 298 300 2 0 0 0.0 2019-02-03 00:00:00 2020-06-24 22:06:44.761856 \N \N 1285 909 1 0 0 0.0 2019-11-06 17:50:18.84645 2019-12-09 19:55:33.788865 \N \N 1227 539 3 0 0 0.0 2019-10-25 16:42:57.731209 2020-06-26 18:55:14.618088 \N \N 1242 872 1 0 0 0.0 2019-10-29 18:34:40.543451 2019-12-15 01:15:23.601911 \N \N 1241 871 1 0 0 0.0 2019-10-29 18:34:40.510292 2021-02-04 00:06:52.837437 \N \N 1313 925 1 0 0 0.0 2019-11-13 19:45:13.448422 2019-12-23 00:43:30.549477 \N \N 1248 899 1 0 0 0.0 2019-10-30 02:30:08.542698 2020-02-07 01:59:02.742731 \N \N 1273 895 1 0 0 3.0 2019-11-05 19:41:19.079954 2020-12-31 22:50:48.627454 \N \N 1316 922 1 0 0 0.0 2019-11-13 19:45:13.503867 2019-11-25 19:42:47.820703 \N \N 1224 286 3 0 0 0.0 2019-10-25 16:42:43.37605 2020-01-31 18:04:57.300461 \N \N 1305 935 1 0 0 0.0 2019-11-13 19:45:13.265054 2019-12-26 20:37:40.118651 \N \N 1233 859 3 0 0 0.0 2019-10-25 17:19:21.896616 2020-01-29 02:34:45.24605 \N \N 1253 875 2 0 0 0.0 2019-10-30 04:05:05.148697 2020-02-07 21:15:43.112795 \N \N 1300 911 1 0 0 0.0 2019-11-09 21:28:07.011203 2020-01-30 22:48:20.414404 \N \N 1235 861 3 0 0 0.0 2019-10-25 17:21:08.043682 2020-12-24 01:58:36.33868 \N \N 1270 886 3 0 0 0.0 2019-11-04 19:07:10.978761 2019-11-23 17:10:10.321388 \N \N 1246 886 1 0 0 0.0 2019-10-30 02:30:08.49742 2019-12-18 01:10:00.999997 \N \N 1283 887 1 0 0 1.0 2019-11-06 01:30:53.892223 2020-12-31 22:07:15.094049 \N \N 1278 867 2 0 0 0.0 2019-11-05 19:43:39.411744 2020-01-15 18:04:48.500814 \N \N 1314 924 1 0 0 0.0 2019-11-13 19:45:13.466701 2019-11-30 01:52:05.865977 \N \N 1251 900 2 0 0 0 2019-10-30 04:04:34.761889 2019-11-05 19:30:52.373308 \N \N 1244 875 1 0 0 1.0 2019-10-30 02:29:31.346759 2019-12-20 17:25:14.251592 \N \N 1228 854 3 0 0 0.0 2019-10-25 17:15:15.383931 2020-01-04 01:29:16.998834 \N \N 1301 883 1 0 0 0.0 2019-11-11 21:41:15.102923 2020-07-02 20:56:13.30752 \N \N 1240 864 3 0 0 3.0 2019-10-28 18:27:05.520972 2020-11-19 01:15:46.573418 \N \N 1222 189 3 0 0 1.0 2019-10-25 16:42:36.057 2020-12-31 00:19:52.126141 \N \N 1247 896 1 0 0 6.0 2019-10-30 02:30:08.518996 2020-11-25 20:21:05.795421 \N \N 1250 903 2 0 0 0.0 2019-10-30 04:04:19.270104 2020-03-07 21:26:43.351098 \N \N 1268 896 3 0 0 3.0 2019-11-04 19:07:10.922112 2021-01-05 01:42:09.365709 \N \N 1312 926 1 0 0 1.0 2019-11-13 19:45:13.430875 2020-06-25 01:43:18.313283 \N \N 1234 860 3 0 0 1.0 2019-10-25 17:20:21.052371 2020-12-17 01:40:52.392749 \N \N 1225 559 3 0 0 2.0 2019-10-25 16:42:43.397729 2020-07-21 22:27:35.566533 \N \N 1260 904 1 0 0 0.0 2019-10-31 16:40:42.239722 2020-06-24 21:49:21.126466 \N \N 1258 897 2 0 0 0.0 2019-10-30 04:22:44.357465 2020-06-25 01:54:19.528817 \N \N 1288 910 2 0 0 0.0 2019-11-09 19:21:15.178313 2020-01-04 19:57:39.130154 \N \N 1256 869 2 0 0 0.0 2019-10-30 04:05:05.216034 2020-03-07 21:33:15.559217 \N \N 1265 874 3 0 0 0.0 2019-11-04 19:07:10.848135 2020-01-31 19:32:27.2139 \N \N 1229 855 3 0 0 0.0 2019-10-25 17:16:05.080714 2020-01-29 02:14:18.675831 \N \N 1223 300 3 0 0 0.0 2019-10-25 16:42:43.3542 2020-01-31 18:03:11.733615 \N \N 1291 834 1 0 0 0.0 2019-11-09 21:27:47.259156 2020-07-02 21:46:16.697334 \N \N 1236 862 3 0 0 0.0 2019-10-25 17:22:31.117134 2020-12-05 00:45:09.55276 \N \N 1272 900 1 0 0 0.0 2019-11-05 19:41:08.516924 2020-12-16 22:57:11.352079 \N \N 1292 835 1 0 0 0.0 2019-11-09 21:27:47.287952 2020-07-07 23:32:18.663098 \N \N 1263 907 2 0 0 0.0 2019-11-02 21:26:31.727775 2020-07-03 22:31:29.215233 \N \N 1238 864 1 0 0 0.0 2019-10-28 18:25:54.313989 2020-10-24 20:27:31.697711 \N \N 1290 833 1 0 0 0.0 2019-11-09 21:27:47.230478 2020-07-20 23:47:46.130255 \N \N 1226 283 3 0 0 0.0 2019-10-25 16:42:52.161297 2020-09-19 22:07:11.092598 \N \N 1321 915 1 0 0 0.0 2019-11-13 19:45:13.598776 2019-11-13 22:30:41.316004 \N \N 1317 920 1 0 0 0.0 2019-11-13 19:45:13.52185 2019-11-13 22:43:01.649363 \N \N 1319 918 1 0 0 0.0 2019-11-13 19:45:13.558831 2019-11-15 19:31:15.935127 \N \N 1358 921 3 0 0 0.0 2019-11-14 00:55:55.976928 2019-12-24 02:27:59.023943 \N \N 1353 932 3 0 0 0.0 2019-11-14 00:55:55.859166 2019-11-16 01:14:09.786671 \N \N 1393 944 3 0 0 1.0 2019-11-21 18:10:16.618808 2020-12-23 02:52:15.341505 \N \N 1418 674 2 0 0 0.0 2019-11-30 18:57:54.25805 2019-12-21 21:35:53.12814 \N \N 1330 934 2 0 0 0.0 2019-11-13 20:47:26.837893 2020-06-25 01:39:27.399979 \N \N 1324 943 2 0 0 0.0 2019-11-13 20:47:26.687905 2019-11-16 20:35:33.6377 \N \N 1359 919 3 0 0 0.0 2019-11-14 00:55:55.997274 2020-01-25 19:39:05.779134 \N \N 1416 955 2 0 0 0.0 2019-11-26 23:16:41.565271 2020-03-07 21:23:21.336336 \N \N 1328 936 2 0 0 0.0 2019-11-13 20:47:26.795654 2019-11-16 20:36:41.203561 \N \N 1339 917 2 0 0 0.0 2019-11-13 20:47:27.034342 2019-11-16 20:36:55.162507 \N \N 1325 942 2 0 0 0.0 2019-11-13 20:47:26.711017 2019-11-16 21:03:39.956614 \N \N 1346 924 3 0 0 0.0 2019-11-14 00:55:25.397812 2019-11-16 21:46:55.565374 \N \N 1357 927 3 0 0 0.0 2019-11-14 00:55:55.957096 2019-11-17 02:09:02.77828 \N \N 184 186 1 0 0 0.0 2019-02-03 00:00:00 2019-11-18 19:17:13.521316 \N \N 1322 916 1 0 0 0.0 2019-11-13 19:45:13.618553 2019-11-19 19:10:08.673335 \N \N 1410 963 1 0 0 0.0 2019-11-26 22:51:39.860972 2021-01-16 23:44:25.218712 \N \N 1338 919 2 0 0 0.0 2019-11-13 20:47:27.013536 2020-03-12 01:42:26.217209 \N \N 1360 914 3 0 0 0.0 2019-11-14 00:55:56.018333 2019-12-24 03:20:59.140189 \N \N 1326 940 2 0 0 0.0 2019-11-13 20:47:26.75254 2019-12-15 19:42:22.169663 \N \N 1384 792 1 0 0 3.0 2019-11-20 21:18:21.236699 2021-01-19 22:55:25.700828 \N \N 1394 877 3 0 0 0.0 2019-11-21 18:13:28.128135 2020-12-30 23:38:48.066136 \N \N 1402 953 3 0 0 0.0 2019-11-26 01:32:46.024676 2020-03-22 01:18:46.857824 \N \N 1337 920 2 0 0 0.0 2019-11-13 20:47:26.992081 2020-06-25 19:08:11.565609 \N \N 1327 938 2 0 0 0.0 2019-11-13 20:47:26.773521 2019-12-18 23:31:47.244558 \N \N 1365 943 1 0 0 0.0 2019-11-20 20:29:59.22908 2019-11-29 23:30:10.115067 \N \N 1344 916 2 0 0 0.0 2019-11-13 21:28:57.943236 2019-11-21 23:11:15.922435 \N \N 1354 931 3 0 0 0.0 2019-11-14 00:55:55.880425 2020-01-16 23:42:27.591731 \N \N 1399 903 1 0 0 0.0 2019-11-21 23:46:21.24676 2020-11-09 23:56:23.848646 \N \N 1398 783 1 0 0 0.0 2019-11-21 23:46:21.219244 2020-12-16 23:30:11.276843 \N \N 1351 942 3 0 0 0.0 2019-11-14 00:55:55.809386 2019-11-23 22:07:33.146907 \N \N 1329 935 2 0 0 0.0 2019-11-13 20:47:26.816556 2019-12-28 00:17:44.850037 \N \N 1380 697 1 0 0 1.0 2019-11-20 21:18:21.151193 2021-02-03 21:15:38.970699 \N \N 1349 460 3 0 0 0.0 2019-11-14 00:55:46.471391 2020-07-24 19:26:05.403365 \N \N 1389 895 3 0 0 0.0 2019-11-21 18:06:48.938389 2020-12-18 06:26:39.691457 \N \N 1318 919 1 0 0 1.0 2019-11-13 19:45:13.539916 2019-12-26 20:37:27.583084 \N \N 1352 936 3 0 0 1.0 2019-11-14 00:55:55.832055 2020-07-07 23:39:57.114486 \N \N 1356 928 3 0 0 0.0 2019-11-14 00:55:55.937139 2020-12-23 22:44:53.703246 \N \N 1415 956 2 0 0 0.0 2019-11-26 23:16:41.539781 2020-03-07 21:25:38.063951 \N \N 1388 898 3 0 0 2.0 2019-11-21 18:06:48.882157 2021-01-16 01:43:53.878021 \N \N 1411 954 1 0 0 5.0 2019-11-26 22:51:39.882977 2020-12-15 17:28:21.838449 \N \N 1392 889 3 0 0 0.0 2019-11-21 18:06:49.004898 2019-12-05 23:18:05.701257 \N \N 1340 915 2 0 0 0.0 2019-11-13 20:47:27.055618 2020-06-25 01:28:35.901983 \N \N 1343 937 2 0 0 0.0 2019-11-13 20:47:39.029432 2019-12-19 02:51:36.292812 \N \N 1373 951 2 0 0 0.0 2019-11-20 20:54:35.3792 2019-12-17 23:43:24.796085 \N \N 1347 455 3 0 0 0.0 2019-11-14 00:55:46.427815 2020-09-22 23:13:46.070002 \N \N 1391 892 3 0 0 0.0 2019-11-21 18:06:48.983194 2019-12-07 20:19:43.697489 \N \N 1336 922 2 0 0 0.0 2019-11-13 20:47:26.970529 2019-12-16 18:24:47.410893 \N \N 1376 950 2 0 0 0.0 2019-11-20 21:04:17.696398 2020-06-25 00:12:19.860084 \N \N 1372 911 2 0 0 0.0 2019-11-20 20:48:26.348867 2019-12-31 22:49:20.489206 \N \N 1378 702 2 0 0 0.0 2019-11-20 21:04:29.815675 2020-03-14 02:22:58.998106 \N \N 1341 914 2 0 0 0.0 2019-11-13 20:47:27.079607 2019-12-11 21:11:11.126953 \N \N 1369 946 1 0 0 0.0 2019-11-20 20:34:20.42267 2020-12-30 21:58:12.116815 \N \N 1386 890 1 0 0 0.0 2019-11-20 21:22:19.629309 2019-12-31 21:41:07.488759 \N \N 1403 952 3 0 0 0 2019-11-26 01:32:46.059846 2019-11-26 01:32:46.059846 \N \N 1366 894 1 0 0 0.0 2019-11-20 20:30:19.355684 2020-01-13 23:48:22.491745 \N \N 1387 945 3 0 0 0.0 2019-11-21 18:06:48.850231 2020-01-29 02:20:00.197123 \N \N 1409 961 1 0 0 0.0 2019-11-26 22:51:39.837804 2019-12-19 01:20:38.968071 \N \N 1368 947 1 0 0 0.0 2019-11-20 20:34:20.382008 2020-01-22 01:35:38.953681 \N \N 1320 917 1 0 0 0.0 2019-11-13 19:45:13.578546 2019-12-10 23:27:35.423689 \N \N 1364 936 1 0 0 0.0 2019-11-20 20:29:59.174797 2020-07-07 23:37:48.101199 \N \N 1383 793 1 0 0 1.0 2019-11-20 21:18:21.215233 2020-12-09 19:42:40.838115 \N \N 1345 924 2 0 0 0.0 2019-11-13 21:28:57.976505 2019-12-17 00:58:29.526475 \N \N 1406 958 1 3 3 0.0 2019-11-26 22:51:39.753176 2020-01-24 17:47:32.115404 \N \N 1375 948 2 0 0 0.0 2019-11-20 21:04:17.676345 2019-12-18 21:40:24.887608 \N \N 1397 946 3 0 0 1.0 2019-11-21 18:13:28.193453 2021-01-15 17:52:56.986948 \N \N 1323 913 1 0 0 1.0 2019-11-13 19:45:13.636514 2020-12-26 22:22:48.047066 \N \N 1331 929 2 0 0 0.0 2019-11-13 20:47:26.858793 2019-12-17 00:35:48.262413 \N \N 1400 952 1 0 0 0 2019-11-23 20:55:21.948658 2019-11-23 20:55:21.948658 \N \N 1395 911 3 0 0 0.0 2019-11-21 18:13:28.151002 2020-01-29 18:24:37.453013 \N \N 1407 962 1 0 0 0.0 2019-11-26 22:51:39.778373 2020-12-11 21:29:32.510177 \N \N 1374 949 2 0 0 0.0 2019-11-20 21:04:17.656303 2020-06-25 00:12:39.885065 \N \N 1385 688 1 0 0 2.0 2019-11-20 21:19:16.872295 2020-06-25 00:49:56.62702 \N \N 1379 663 2 0 0 0 2019-11-20 21:04:29.85745 2020-06-24 22:22:31.6608 \N \N 1355 930 3 0 0 0.0 2019-11-14 00:55:55.902442 2020-01-25 19:39:19.769742 \N \N 1367 865 1 0 0 0.0 2019-11-20 20:34:20.361553 2019-12-20 23:55:39.956098 \N \N 1404 361 3 0 0 0.0 2019-11-26 02:16:47.433175 2020-06-23 23:57:26.271358 \N \N 1414 959 2 0 0 0.0 2019-11-26 23:16:41.515889 2020-06-25 01:50:53.442374 \N \N 1333 927 2 0 0 0.0 2019-11-13 20:47:26.901524 2019-12-21 21:24:25.279755 \N \N 1363 871 3 0 0 7.0 2019-11-18 23:39:46.382053 2020-12-06 19:08:10.541242 \N \N 1396 949 3 0 0 0.0 2019-11-21 18:13:28.171982 2020-01-31 18:05:26.855918 \N \N 1413 960 2 0 0 0.0 2019-11-26 23:16:41.490365 2019-12-21 22:27:06.274904 \N \N 1335 925 2 0 0 0.0 2019-11-13 20:47:26.94804 2019-12-22 22:58:12.894184 \N \N 1350 933 3 0 0 0.0 2019-11-14 00:55:55.788959 2019-12-24 02:27:58.997802 \N \N 1412 954 2 0 0 0.0 2019-11-26 23:16:41.463216 2020-06-25 01:30:47.031112 \N \N 1342 913 2 0 0 0.0 2019-11-13 20:47:27.100792 2020-06-25 01:36:39.749007 \N \N 1401 890 3 0 0 0.0 2019-11-23 22:26:41.205751 2020-01-25 18:22:45.353991 \N \N 1382 679 1 0 0 0.0 2019-11-20 21:18:21.194657 2020-02-01 20:47:48.888888 \N \N 1370 945 1 0 0 5.0 2019-11-20 20:34:20.442517 2020-11-25 20:21:18.706145 \N \N 1361 913 3 0 0 0.0 2019-11-14 00:55:56.038219 2020-01-25 19:39:00.579851 \N \N 1348 456 3 0 0 1.0 2019-11-14 00:55:46.448677 2021-03-19 01:29:31.800818 \N \N 1408 957 1 0 0 4.0 2019-11-26 22:51:39.802335 2020-11-25 20:16:50.494276 \N \N 1405 354 3 0 0 0.0 2019-11-26 02:16:47.457404 2020-07-27 21:54:36.270953 \N \N 1332 928 2 0 0 0.0 2019-11-13 20:47:26.879539 2020-06-25 01:26:06.322885 \N \N 1334 926 2 0 0 0.0 2019-11-13 20:47:26.924504 2020-06-25 01:37:34.723779 \N \N 1362 909 3 0 0 0.0 2019-11-16 01:28:17.52035 2020-10-14 00:48:10.387965 \N \N 1381 678 1 0 0 0.0 2019-11-20 21:18:21.173292 2020-08-29 23:30:06.382184 \N \N 1371 950 1 0 0 0.0 2019-11-20 20:34:20.46247 2020-10-08 00:31:34.449232 \N \N 1443 807 1 0 0 2.0 2019-12-18 00:13:46.757042 2020-11-27 00:46:12.40505 \N \N 1461 960 1 0 0 0.0 2019-12-21 22:27:46.147867 2020-01-21 01:44:10.547405 \N \N 1423 965 1 0 0 0 2019-12-06 17:41:57.743516 2019-12-31 01:10:34.81516 \N \N 1437 944 2 0 0 0 2019-12-14 21:39:05.858419 2020-01-25 18:58:36.296211 \N \N 1427 716 3 0 0 0.0 2019-12-08 23:38:31.914119 2020-06-23 23:55:40.27095 \N \N 1466 449 3 0 0 0.0 2019-12-22 00:39:12.661499 2020-06-26 19:00:37.357972 \N \N 1417 887 3 0 0 4.0 2019-11-28 20:12:27.84984 2020-11-06 21:56:09.444434 \N \N 1434 797 1 0 0 0.0 2019-12-13 00:47:15.350966 2020-12-21 23:39:19.222291 \N \N 1428 720 3 0 0 0 2019-12-08 23:38:31.945041 2019-12-08 23:38:31.945041 \N \N 1281 893 2 0 0 0.0 2019-11-05 19:43:39.471823 2020-03-07 21:30:30.700496 \N \N 1488 970 3 0 0 0.0 2020-01-07 19:08:20.4393 2020-07-01 18:58:52.757563 \N \N 1503 536 3 0 0 0.0 2020-01-07 19:09:46.963844 2020-09-19 21:52:15.446075 \N \N 1438 775 2 0 0 0.0 2019-12-14 21:39:05.880281 2019-12-22 19:03:06.027122 \N \N 1452 804 2 0 0 0.0 2019-12-18 01:13:03.328607 2020-06-25 01:33:02.908936 \N \N 1457 776 1 0 0 0.0 2019-12-18 23:40:44.243271 2020-12-31 22:43:57.100259 \N \N 1377 895 2 0 0 0.0 2019-11-20 21:04:17.716951 2020-06-25 01:54:17.992846 \N \N 1456 948 1 0 0 0.0 2019-12-18 23:40:28.598134 2019-12-31 23:17:27.474409 \N \N 1475 768 2 0 0 0.0 2019-12-23 19:54:07.912272 2019-12-24 21:14:11.672542 \N \N 1451 125 2 0 0 0.0 2019-12-18 01:13:03.28947 2020-06-24 22:33:06.046969 \N \N 1446 701 2 0 0 0.0 2019-12-18 01:13:03.134208 2020-06-25 00:56:07.912534 \N \N 1424 966 1 0 0 0.0 2019-12-06 17:48:04.767634 2020-07-08 23:14:22.262151 \N \N 1419 698 1 0 0 0.0 2019-12-04 23:18:00.715766 2019-12-28 21:59:59.513669 \N \N 1435 640 1 0 0 4.0 2019-12-13 00:47:15.369362 2021-01-21 02:20:55.199146 \N \N 1462 953 1 0 0 0.0 2019-12-21 22:44:22.089808 2020-07-17 21:29:40.305589 \N \N 1478 753 1 0 0 4.0 2019-12-23 22:47:34.130948 2020-12-09 19:30:37.957719 \N \N 1455 791 2 0 0 0.0 2019-12-18 01:13:03.388173 2020-06-24 22:43:33.231519 \N \N 1471 954 3 0 0 0.0 2019-12-22 19:56:05.356287 2020-01-25 18:23:02.084198 \N \N 1473 869 3 0 0 3.0 2019-12-22 19:56:14.82419 2019-12-22 19:56:14.82419 \N \N 1469 893 1 0 0 0.0 2019-12-22 00:42:31.261768 2020-12-16 22:58:05.947749 \N \N 1465 439 3 0 0 0.0 2019-12-22 00:39:12.643806 2020-01-30 22:07:12.251289 \N \N 1444 696 1 0 0 2.0 2019-12-18 00:13:46.775627 2020-01-13 23:11:32.647843 \N \N 1499 235 3 0 0 0.0 2020-01-07 19:09:46.889963 2020-07-01 19:00:54.582579 \N \N 1436 642 1 0 0 6.0 2019-12-13 00:47:15.387582 2020-11-25 20:21:05.753045 \N \N 1440 968 1 0 0 0.0 2019-12-17 23:34:26.678107 2020-06-24 00:18:37.547363 \N \N 1431 689 3 0 0 0 2019-12-11 00:06:15.709781 2020-05-20 01:22:34.320564 \N \N 1493 210 3 0 0 0.0 2020-01-07 19:09:46.774729 2020-03-10 02:50:41.911582 \N \N 1483 912 3 1 1 0.0 2019-12-24 19:35:38.451423 2020-09-11 00:45:03.789877 \N \N 1421 912 1 0 0 0.0 2019-12-05 18:30:27.992047 2020-01-24 20:34:14.746876 \N \N 1464 56 3 0 0 0.0 2019-12-22 00:39:12.626009 2020-08-03 18:39:11.782686 \N \N 1476 862 2 0 0 0.0 2019-12-23 19:54:07.935656 2020-03-07 21:28:08.070862 \N \N 1477 867 1 0 0 0.0 2019-12-23 22:45:02.65633 2020-01-15 18:46:46.006272 \N \N 1449 688 2 0 0 0.0 2019-12-18 01:13:03.234126 2020-06-24 22:27:57.175357 \N \N 1439 790 2 0 0 0.0 2019-12-14 21:39:05.899519 2020-03-07 21:35:56.291096 \N \N 1259 901 2 0 0 0.0 2019-10-30 04:22:44.378111 2020-01-04 21:28:40.984347 \N \N 1280 896 2 0 0 0.0 2019-11-05 19:43:39.451602 2020-03-07 21:27:46.627064 \N \N 1459 793 2 0 0 0.0 2019-12-19 02:05:07.035279 2020-06-25 01:50:48.537918 \N \N 1487 901 1 0 0 1.0 2020-01-04 21:31:55.705137 2020-12-16 18:51:44.730279 \N \N 1501 76 3 0 0 1.0 2020-01-07 19:09:46.926197 2020-01-07 19:09:46.926197 \N \N 1484 969 2 0 0 0 2019-12-24 23:49:52.868987 2019-12-26 21:29:59.823316 \N \N 1282 889 2 0 0 0 2019-11-05 19:43:48.028915 2020-01-05 02:41:19.701015 \N \N 1430 967 3 0 0 0.0 2019-12-11 00:05:59.527107 2020-03-22 01:19:06.453548 \N \N 1504 219 3 0 0 3.0 2020-01-07 19:09:46.98219 2020-01-07 19:09:46.98219 \N \N 1508 128 3 0 0 1.0 2020-01-07 19:09:47.055445 2020-01-07 19:09:47.055445 \N \N 1426 966 3 0 0 0.0 2019-12-08 18:02:54.609271 2020-06-24 00:06:17.220135 \N \N 1422 964 1 0 0 0.0 2019-12-06 17:36:32.553642 2020-01-24 18:58:37.303397 \N \N 1450 870 2 0 0 0.0 2019-12-18 01:13:03.251989 2020-06-25 01:50:43.720942 \N \N 1445 886 2 0 0 0.0 2019-12-18 01:12:49.673044 2020-01-24 22:35:16.929775 \N \N 1448 738 2 0 0 0.0 2019-12-18 01:13:03.175384 2020-01-25 18:59:13.739473 \N \N 1447 739 2 0 0 0.0 2019-12-18 01:13:03.155426 2020-01-25 18:59:45.93397 \N \N 1479 737 3 0 0 0.0 2019-12-23 23:09:47.106339 2020-01-29 02:19:37.017418 \N \N 1441 874 1 0 0 2.0 2019-12-18 00:13:46.691985 2021-02-12 01:55:23.208324 \N \N 1458 777 1 0 0 1.0 2019-12-18 23:40:44.263713 2020-11-25 20:16:50.623902 \N \N 834 668 3 0 0 0.0 2019-08-28 03:58:08.976525 2021-02-16 20:58:09.273652 \N \N 1491 66 3 0 0 0.0 2020-01-07 19:09:36.801044 2020-07-01 18:56:29.937453 \N \N 1490 577 3 0 0 0.0 2020-01-07 19:09:36.780478 2020-09-19 23:26:40.971465 \N \N 1279 894 2 0 0 0 2019-11-05 19:43:39.432203 2020-01-05 01:21:51.589456 \N \N 1454 957 2 0 0 0.0 2019-12-18 01:13:03.367967 2020-06-25 01:50:50.868113 \N \N 1512 119 3 0 0 0.0 2020-01-07 19:09:47.131116 2020-02-26 01:12:48.051524 \N \N 1485 951 3 0 0 0.0 2019-12-25 00:07:44.643825 2020-09-19 22:09:57.87829 \N \N 1513 90 3 0 0 1.0 2020-01-07 19:09:47.150265 2020-07-01 18:53:56.770646 \N \N 1486 634 1 0 0 1.0 2019-12-31 21:17:10.936552 2020-03-15 20:49:18.781353 \N \N 1472 571 3 0 0 0.0 2019-12-22 19:56:05.3767 2020-03-12 03:04:08.460148 \N \N 1467 721 3 0 0 0.0 2019-12-22 00:39:12.680678 2020-06-23 23:56:35.388839 \N \N 1481 907 3 0 0 1.0 2019-12-24 19:28:26.907219 2021-01-11 22:59:54.314798 \N \N 1433 808 1 0 0 0.0 2019-12-13 00:47:15.332023 2020-06-24 21:48:22.852425 \N \N 1453 678 2 0 0 1.0 2019-12-18 01:13:03.348285 2020-06-25 00:43:41.970433 \N \N 1514 868 2 0 0 0.0 2020-01-07 23:42:25.779946 2020-06-25 01:30:45.992977 \N \N 1470 775 1 0 0 0.0 2019-12-22 19:03:46.043311 2021-01-21 02:20:55.224763 \N \N 1429 697 2 0 0 0.0 2019-12-10 23:10:09.592515 2020-06-26 19:02:36.157995 \N \N 1505 213 3 0 0 0.0 2020-01-07 19:09:47.000198 2020-09-19 23:17:58.443443 \N \N 1480 480 3 0 0 0.0 2019-12-23 23:11:20.756545 2020-06-26 19:00:37.382796 \N \N 1496 212 3 0 0 0.0 2020-01-07 19:09:46.830966 2020-07-01 18:49:41.844653 \N \N 1489 206 3 0 0 0.0 2020-01-07 19:09:30.204658 2020-07-01 18:47:09.671817 \N \N 1495 246 3 0 0 0.0 2020-01-07 19:09:46.812309 2020-07-01 18:47:58.287978 \N \N 1510 94 3 0 0 0.0 2020-01-07 19:09:47.092627 2020-07-01 18:50:22.096433 \N \N 1502 113 3 0 0 0.0 2020-01-07 19:09:46.944528 2020-07-01 18:51:02.224762 \N \N 1498 208 3 0 0 0.0 2020-01-07 19:09:46.872 2020-07-01 18:51:58.703041 \N \N 1506 69 3 0 0 0.0 2020-01-07 19:09:47.018578 2020-07-01 18:55:10.198889 \N \N 1507 64 3 0 0 0.0 2020-01-07 19:09:47.036609 2020-07-01 18:55:54.062032 \N \N 1492 84 3 0 0 0.0 2020-01-07 19:09:36.822188 2020-07-01 18:57:07.337016 \N \N 1497 217 3 0 0 0.0 2020-01-07 19:09:46.852493 2020-07-01 18:58:16.561476 \N \N 1500 233 3 0 0 0.0 2020-01-07 19:09:46.908152 2020-07-01 19:01:44.377401 \N \N 1494 231 3 0 0 0.0 2020-01-07 19:09:46.794258 2020-07-01 19:00:12.960659 \N \N 1420 958 3 0 0 0 2019-12-05 17:48:30.762724 2019-12-05 17:48:30.762724 \N \N 1432 646 1 0 0 1.0 2019-12-13 00:47:15.271331 2021-01-11 22:22:56.547211 \N \N 1460 891 1 0 0 1.0 2019-12-20 02:13:09.695171 2021-01-08 19:06:02.294353 \N \N 1482 50 3 0 0 0.0 2019-12-24 19:35:22.787565 2020-08-05 00:28:25.876923 \N \N 1463 49 3 0 0 0.0 2019-12-22 00:39:12.606708 2020-09-02 20:13:11.630416 \N \N 1468 757 1 0 0 0.0 2019-12-22 00:42:31.21444 2020-12-24 19:15:00.26164 \N \N 1509 287 3 0 0 0.0 2020-01-07 19:09:47.073809 2020-09-19 21:53:18.410983 \N \N 1442 951 1 0 0 1.0 2019-12-18 00:13:46.722006 2020-09-21 19:34:17.808469 \N \N 1515 413 1 0 0 0.0 2020-01-07 23:43:27.718195 2020-01-07 23:44:56.076775 \N \N 1474 957 3 0 0 0.0 2019-12-22 19:56:14.847325 2020-01-29 18:23:58.822399 \N \N 1594 780 1 0 0 0.0 2020-01-30 22:47:23.260638 2020-06-24 21:49:43.242086 \N \N 1390 894 3 0 0 0 2019-11-21 18:06:48.960973 2019-11-21 18:06:48.960973 \N \N 1518 599 3 0 0 6.0 2020-01-24 23:48:06.440967 2020-01-24 23:48:06.440967 \N \N 1527 156 3 0 0 1.0 2020-01-24 23:48:35.606278 2020-01-24 23:48:35.606278 \N \N 991 609 1 0 0 0.0 2019-09-04 23:22:58.868802 2020-01-25 17:46:37.152188 \N \N 1547 947 2 0 0 0.0 2020-01-25 18:58:17.178923 2020-03-07 21:36:38.381386 \N \N 1557 122 2 0 0 0.0 2020-01-25 22:10:02.557439 2020-01-25 22:13:04.628571 \N \N 1565 405 1 0 0 0.0 2020-01-26 00:00:59.203185 2020-10-15 00:23:05.704473 \N \N 1566 406 1 0 0 0.0 2020-01-26 00:00:59.238223 2020-01-26 18:56:11.640239 \N \N 81 83 1 0 0 0.0 2019-02-03 00:00:00 2020-01-27 23:28:41.790545 \N \N 1562 402 1 0 0 0.0 2020-01-26 00:00:59.123531 2020-02-16 00:00:34.364419 \N \N 1532 565 3 0 0 2.0 2020-01-24 23:48:35.741716 2020-07-01 19:34:29.435855 \N \N 1575 293 1 0 0 2.0 2020-01-28 21:00:55.461203 2020-02-22 22:24:59.524727 \N \N 1599 786 1 0 0 5.0 2020-01-30 22:47:23.469437 2020-12-15 01:10:25.557712 \N \N 1564 409 1 0 0 0.0 2020-01-26 00:00:59.176159 2020-01-28 18:46:38.158138 \N \N 1549 890 2 0 0 0.0 2020-01-25 18:58:36.373242 2020-01-28 19:46:02.945884 \N \N 1554 609 3 0 0 4.0 2020-01-25 19:38:43.039172 2020-03-18 21:41:56.79705 \N \N 1576 315 1 0 0 2.0 2020-01-28 21:00:55.498122 2020-01-28 21:00:55.498122 \N \N 1579 14 3 0 0 4.0 2020-01-29 01:30:02.84451 2020-01-29 01:30:02.84451 \N \N 1581 550 3 0 0 1.0 2020-01-29 01:30:11.408396 2020-01-29 01:30:11.408396 \N \N 1591 772 1 0 0 0.0 2020-01-30 22:47:04.734464 2020-12-11 20:46:30.690595 \N \N 1605 869 1 0 0 0.0 2020-01-31 01:01:06.952039 2020-12-14 17:48:47.133681 \N \N 1592 863 1 0 0 1.0 2020-01-30 22:47:23.217727 2020-11-25 20:16:50.658516 \N \N 1563 408 1 0 0 0.0 2020-01-26 00:00:59.149538 2021-02-04 23:42:55.110663 \N \N 1573 77 2 0 0 0.0 2020-01-27 23:33:51.150891 2020-06-25 00:05:15.377408 \N \N 1586 498 3 0 0 1.0 2020-01-29 01:30:19.661398 2020-07-27 21:44:05.897343 \N \N 1552 494 3 0 0 11.0 2020-01-25 19:38:35.342577 2020-10-24 22:34:35.142047 \N \N 1537 787 3 0 0 3.0 2020-01-24 23:48:43.626776 2021-01-16 02:28:45.386271 \N \N 1545 457 3 0 0 0.0 2020-01-24 23:48:50.863752 2020-03-10 21:05:35.785256 \N \N 1585 637 3 0 0 0.0 2020-01-29 01:30:19.62868 2020-07-01 20:39:37.985665 \N \N 1519 569 3 0 0 3.0 2020-01-24 23:48:13.245702 2020-08-29 00:28:00.917827 \N \N 1553 607 3 0 0 3.0 2020-01-25 19:38:43.01142 2020-02-04 23:24:49.610917 \N \N 1569 78 2 0 0 0.0 2020-01-27 23:33:51.043 2020-06-24 22:18:47.537311 \N \N 1548 676 2 0 0 0 2020-01-25 18:58:36.322561 2020-01-25 18:58:36.322561 \N \N 1614 534 3 0 0 0.0 2020-01-31 19:56:15.508121 2020-09-19 21:52:45.512422 \N \N 1520 684 3 0 0 0.0 2020-01-24 23:48:20.45215 2020-08-26 01:19:09.362877 \N \N 1551 971 2 0 0 0.0 2020-01-25 19:33:24.187859 2020-03-07 21:31:55.774798 \N \N 1610 396 3 0 0 1.0 2020-01-31 18:27:17.709729 2020-09-22 20:46:24.654207 \N \N 1538 624 3 0 0 3.0 2020-01-24 23:48:43.647046 2020-08-25 21:57:11.29026 \N \N 1598 788 1 0 0 3.0 2020-01-30 22:47:23.429646 2020-11-27 00:46:31.797954 \N \N 1580 7 3 0 0 0.0 2020-01-29 01:30:02.874602 2020-09-19 22:19:47.870194 \N \N 1559 425 1 0 0 2 2020-01-26 00:00:59.046293 2020-02-15 00:21:23.445954 \N \N 1556 605 3 0 0 3.0 2020-01-25 19:38:43.08915 2020-02-21 21:53:03.457498 \N \N 1517 944 1 0 0 0.0 2020-01-12 02:04:26.371171 2020-12-23 02:50:50.349308 \N \N 1524 291 3 0 0 0.0 2020-01-24 23:48:27.602423 2020-09-19 21:55:40.316723 \N \N 1607 877 2 0 0 0.0 2020-01-31 18:11:08.394791 2020-03-07 21:26:10.390657 \N \N 1560 314 1 0 0 0.0 2020-01-26 00:00:59.07409 2020-03-10 17:14:23.112243 \N \N 1526 618 3 0 0 0.0 2020-01-24 23:48:35.556307 2020-03-12 03:03:45.481569 \N \N 1534 803 3 0 0 0.0 2020-01-24 23:48:35.824307 2020-03-12 03:03:56.789739 \N \N 1558 930 2 0 0 0.0 2020-01-25 22:10:12.243785 2020-03-14 22:11:03.689636 \N \N 1523 292 3 0 0 1.0 2020-01-24 23:48:27.576716 2021-01-23 22:14:52.738491 \N \N 1571 83 2 0 0 0.0 2020-01-27 23:33:51.096332 2020-03-18 21:38:39.379239 \N \N 1535 714 3 0 0 2.0 2020-01-24 23:48:35.896932 2021-01-19 20:05:55.603117 \N \N 1596 860 1 0 0 0.0 2020-01-30 22:47:23.305293 2020-12-16 22:57:37.51444 \N \N 1593 778 1 0 0 1.0 2020-01-30 22:47:23.240159 2020-12-26 22:22:48.002761 \N \N 1609 643 2 0 0 0.0 2020-01-31 18:11:08.489741 2020-06-24 22:08:35.418743 \N \N 1603 650 1 0 0 0.0 2020-01-30 22:47:23.648552 2020-06-24 21:47:00.396328 \N \N 1590 972 1 0 0 0.0 2020-01-29 18:40:31.961569 2020-06-24 21:47:54.948305 \N \N 1595 861 1 0 0 0.0 2020-01-30 22:47:23.283379 2020-12-16 23:30:23.968511 \N \N 1608 645 2 0 0 0.0 2020-01-31 18:11:08.441409 2020-06-24 22:15:20.027228 \N \N 1572 79 2 0 0 0.0 2020-01-27 23:33:51.118162 2020-06-24 22:17:25.87267 \N \N 1570 80 2 0 0 0.0 2020-01-27 23:33:51.073813 2020-06-25 00:04:26.848426 \N \N 1529 602 3 0 0 2.0 2020-01-24 23:48:35.658396 2020-12-02 01:49:05.911255 \N \N 1550 732 2 0 0 0.0 2020-01-25 19:15:54.033175 2020-06-25 19:24:46.377742 \N \N 1516 871 2 0 0 0.0 2020-01-11 19:48:15.886275 2020-06-25 01:50:45.558244 \N \N 1600 773 1 0 0 0.0 2020-01-30 22:47:23.544553 2021-02-04 00:51:06.055345 \N \N 1574 81 2 0 0 0 2020-01-27 23:33:51.219997 2020-06-25 19:03:07.125262 \N \N 1601 649 1 0 0 0.0 2020-01-30 22:47:23.568648 2020-06-25 20:23:38.484596 \N \N 1546 964 3 0 0 0 2020-01-24 23:48:57.462685 2020-01-24 23:48:57.462685 \N \N 1542 432 3 0 0 0.0 2020-01-24 23:48:43.747987 2020-09-19 21:58:11.422634 \N \N 1613 479 3 0 0 0.0 2020-01-31 19:52:23.730821 2020-07-01 18:38:49.673197 \N \N 1612 141 3 0 0 0.0 2020-01-31 19:52:23.700133 2020-07-01 18:39:40.089166 \N \N 1611 72 3 0 0 0.0 2020-01-31 19:52:23.669968 2020-07-01 18:40:28.457904 \N \N 1530 636 3 0 0 1.0 2020-01-24 23:48:35.685934 2020-07-01 18:44:57.492089 \N \N 1539 537 3 0 0 0 2020-01-24 23:48:43.667837 2020-07-01 18:38:31.903108 \N \N 1588 578 3 0 0 0.0 2020-01-29 01:30:19.725137 2020-07-01 20:39:47.985815 \N \N 1555 252 3 0 0 2 2020-01-25 19:38:43.064078 2020-01-25 19:38:43.064078 \N \N 1543 275 3 0 0 1.0 2020-01-24 23:48:43.772028 2020-07-04 01:07:01.340764 \N \N 1589 527 3 0 0 0.0 2020-01-29 01:30:26.014186 2020-08-27 00:12:18.683502 \N \N 1578 15 3 0 0 0.0 2020-01-29 01:30:02.820253 2020-09-19 22:17:28.347837 \N \N 1525 513 3 0 0 2.0 2020-01-24 23:48:35.511716 2020-07-18 22:57:00.097146 \N \N 1567 414 1 0 0 1.0 2020-01-26 00:00:59.290656 2020-08-22 18:16:40.112819 \N \N 1583 627 3 0 0 1.0 2020-01-29 01:30:19.536744 2020-08-25 21:57:11.267439 \N \N 1584 579 3 0 0 0.0 2020-01-29 01:30:19.564295 2020-08-15 16:29:07.076593 \N \N 1533 628 3 0 0 2.0 2020-01-24 23:48:35.768494 2020-08-25 21:57:11.243826 \N \N 1531 608 3 0 0 0.0 2020-01-24 23:48:35.71433 2020-11-06 21:57:48.979381 \N \N 1540 135 3 0 0 0.0 2020-01-24 23:48:43.692814 2021-02-13 01:37:06.664928 \N \N 1522 280 3 0 0 0.0 2020-01-24 23:48:27.548718 2020-09-19 21:57:40.224641 \N \N 1521 279 3 0 0 0.0 2020-01-24 23:48:27.521758 2020-09-19 21:56:07.726636 \N \N 1615 310 3 0 0 0.0 2020-01-31 19:56:15.534687 2021-02-04 20:56:59.023488 \N \N 1541 431 3 0 0 0.0 2020-01-24 23:48:43.722021 2020-09-19 21:58:38.196524 \N \N 1587 604 3 0 0 0.0 2020-01-29 01:30:19.693044 2020-09-19 22:07:48.231196 \N \N 1577 408 3 0 0 0.0 2020-01-29 01:30:02.795991 2020-09-19 22:15:01.011769 \N \N 1582 564 3 0 0 0.0 2020-01-29 01:30:19.511376 2020-09-22 18:30:03.323354 \N \N 1604 647 1 0 0 0.0 2020-01-30 22:47:23.670291 2020-09-28 17:30:39.398372 \N \N 1568 407 1 0 0 2.0 2020-01-26 00:00:59.320184 2020-09-29 19:47:21.095643 \N \N 1597 856 1 0 0 0.0 2020-01-30 22:47:23.328231 2021-01-08 22:25:23.603587 \N \N 1602 888 1 0 0 1.0 2020-01-30 22:47:23.590083 2020-12-16 22:56:38.982004 \N \N 1606 771 1 0 0 0.0 2020-01-31 02:13:05.448052 2021-02-13 01:38:56.66144 \N \N 1561 399 1 0 0 0.0 2020-01-26 00:00:59.099316 2020-02-05 02:22:50.121517 \N \N 1646 995 1 0 0 2.0 2020-02-19 01:50:08.8829 2020-10-22 18:30:47.576621 \N \N 1631 980 1 0 0 2.0 2020-02-18 21:18:17.601242 2020-09-09 20:25:40.657677 \N \N 1620 134 2 0 0 0 2020-02-13 21:32:29.860791 2020-02-13 21:32:29.860791 \N \N 1706 1041 3 0 0 0.0 2020-03-01 00:39:59.792214 2020-10-02 23:48:04.400236 \N \N 1707 1042 3 0 0 1 2020-03-01 00:43:49.404207 2020-03-18 00:18:06.052185 \N \N 1627 976 1 0 0 3 2020-02-18 20:54:22.927424 2020-02-18 20:54:31.300939 \N \N 1630 979 1 0 0 0.0 2020-02-18 21:14:57.855828 2021-02-02 17:32:12.804331 \N \N 1652 1001 2 0 0 0.0 2020-02-19 02:41:55.619367 2020-06-25 01:48:50.068512 \N \N 1694 1026 2 0 0 0.0 2020-02-29 22:58:09.594262 2020-06-25 01:28:05.005352 \N \N 1671 1007 2 0 0 0.0 2020-02-19 20:13:29.310426 2020-06-25 01:33:11.435901 \N \N 1712 1048 3 0 0 0.0 2020-03-01 01:15:18.188987 2020-03-10 02:50:41.830075 \N \N 1637 986 1 0 0 3.0 2020-02-19 00:04:45.607809 2021-01-30 22:37:56.780595 \N \N 1625 713 2 0 0 0.0 2020-02-18 19:18:51.599845 2020-06-24 22:38:25.492992 \N \N 1664 284 3 0 0 0.0 2020-02-19 17:59:03.797106 2020-09-19 21:51:15.444174 \N \N 1658 516 3 0 0 2.0 2020-02-19 17:48:04.34424 2020-03-11 23:35:32.549891 \N \N 1621 644 2 0 0 0 2020-02-13 21:32:40.152064 2020-06-25 19:27:49.904287 \N \N 1639 988 1 0 0 0.0 2020-02-19 00:24:08.789922 2020-07-01 05:40:54.016728 \N \N 1683 1018 2 0 0 0 2020-02-19 22:51:16.810959 2020-06-25 00:22:03.81685 \N \N 1642 991 1 0 0 0.0 2020-02-19 01:22:27.292383 2020-08-27 22:29:39.939508 \N \N 1681 993 2 0 0 0.0 2020-02-19 21:44:25.2749 2020-06-25 00:12:35.843751 \N \N 1641 990 1 0 0 0.0 2020-02-19 00:47:55.809759 2020-06-25 20:54:50.432767 \N \N 1661 630 3 0 0 4.0 2020-02-19 17:59:03.709806 2020-08-20 23:10:48.505484 \N \N 1644 993 1 0 0 1.0 2020-02-19 01:34:40.861667 2021-01-08 19:30:10.437057 \N \N 1689 1021 1 0 0 0.0 2020-02-24 23:58:32.587227 2020-09-22 20:41:18.464922 \N \N 1619 8 3 0 0 0 2020-02-13 19:01:01.850698 2020-09-19 23:28:00.933039 \N \N 1645 994 1 0 0 3.0 2020-02-19 01:45:20.227374 2020-11-06 22:03:31.712477 \N \N 1697 1030 2 0 0 0.0 2020-02-29 23:59:11.182018 2020-03-05 22:18:39.049224 \N \N 1622 898 1 0 0 0.0 2020-02-14 02:05:09.380773 2021-01-09 21:37:50.538008 \N \N 1659 497 3 0 0 0 2020-02-19 17:48:04.368471 2020-02-19 17:48:04.368471 \N \N 1649 998 2 0 0 0.0 2020-02-19 02:28:40.701671 2020-03-10 21:36:58.066479 \N \N 1654 412 3 0 0 2.0 2020-02-19 17:37:39.508635 2020-03-02 23:42:02.600016 \N \N 1675 1011 2 0 0 0.0 2020-02-19 20:38:50.614453 2020-06-25 00:14:47.787805 \N \N 1700 1035 3 0 0 0.0 2020-03-01 00:21:22.886911 2020-08-17 01:17:26.975603 \N \N 1667 1003 2 0 0 0.0 2020-02-19 18:59:37.299205 2020-06-25 01:33:01.375721 \N \N 1632 981 1 0 0 3.0 2020-02-18 21:21:44.476416 2020-08-27 22:18:46.649581 \N \N 1674 1010 2 0 0 0.0 2020-02-19 20:28:31.084751 2020-06-25 00:14:51.039588 \N \N 1647 996 1 0 0 0.0 2020-02-19 01:53:01.856164 2020-09-22 20:41:19.794956 \N \N 1698 1031 1 0 0 1.0 2020-03-01 00:04:49.692683 2020-03-01 00:04:54.573287 \N \N 1677 1013 2 0 0 0.0 2020-02-19 20:44:24.160125 2020-06-10 23:28:41.049291 \N \N 1679 1015 2 0 0 0.0 2020-02-19 20:56:28.369489 2020-03-10 21:35:45.958835 \N \N 1680 1016 2 0 0 0.0 2020-02-19 21:00:49.016741 2020-06-24 22:38:41.981636 \N \N 1668 1004 2 0 0 0.0 2020-02-19 19:26:47.972641 2020-06-24 22:44:28.728028 \N \N 1634 983 1 0 0 0.0 2020-02-18 23:27:28.120602 2020-09-22 20:41:23.057134 \N \N 1684 1019 2 0 0 0 2020-02-19 22:52:07.764007 2020-06-25 00:23:05.634019 \N \N 1648 997 2 0 0 0.0 2020-02-19 02:24:19.637226 2020-06-25 01:49:32.136942 \N \N 1655 413 3 0 0 0 2020-02-19 17:37:39.533199 2020-02-19 17:37:39.533199 \N \N 1626 975 1 0 0 0.0 2020-02-18 20:46:05.144179 2020-11-25 00:27:22.433222 \N \N 1709 1044 3 0 0 0.0 2020-03-01 00:51:51.951163 2020-03-06 22:01:46.91472 \N \N 1701 1036 3 0 0 0.0 2020-03-01 00:25:12.193061 2020-10-13 21:28:32.489257 \N \N 1623 638 1 0 0 2.0 2020-02-14 20:52:13.415882 2020-09-21 19:34:17.643867 \N \N 1672 1008 2 0 0 0.0 2020-02-19 20:23:11.544469 2020-06-25 01:49:30.248406 \N \N 1682 1017 2 0 0 0.0 2020-02-19 22:47:45.635965 2020-06-25 01:33:13.85789 \N \N 1688 489 1 0 0 0.0 2020-02-23 00:22:45.232262 2020-02-23 00:25:20.16215 \N \N 1650 999 2 0 0 0.0 2020-02-19 02:34:03.571074 2020-06-25 00:47:04.108274 \N \N 1695 1027 2 0 0 0.0 2020-02-29 23:07:24.497087 2020-06-25 01:26:33.985807 \N \N 1691 1023 1 0 0 0.0 2020-02-25 00:07:57.444239 2020-03-08 20:11:51.52957 \N \N 1670 1006 2 0 0 0.0 2020-02-19 20:12:04.652381 2020-06-25 01:33:09.357766 \N \N 1685 1020 1 0 0 0.0 2020-02-19 22:54:03.234928 2020-09-26 17:46:39.901423 \N \N 1616 973 1 0 0 0.0 2020-02-05 02:21:48.976273 2020-06-25 20:50:00.735048 \N \N 1676 1012 2 0 0 0.0 2020-02-19 20:42:22.67871 2020-06-25 00:14:44.639551 \N \N 1651 1000 2 0 0 0.0 2020-02-19 02:36:57.072688 2020-06-24 22:49:50.528808 \N \N 1425 965 3 0 0 0.0 2019-12-08 18:02:54.578665 2020-02-29 20:35:25.883563 \N \N 1643 992 1 0 0 0.0 2020-02-19 01:26:03.615879 2020-10-02 21:00:43.200547 \N \N 1653 1002 1 0 0 0.0 2020-02-19 02:48:40.26187 2020-08-24 21:37:58.881496 \N \N 1692 1024 1 0 0 2.0 2020-02-25 00:15:07.268903 2020-09-01 22:56:41.653621 \N \N 1710 1045 3 0 0 0.0 2020-03-01 00:55:40.183667 2020-08-17 01:20:53.106444 \N \N 1636 985 1 0 0 1.0 2020-02-18 23:36:51.963696 2020-12-26 17:44:22.86138 \N \N 1702 1037 3 0 0 1.0 2020-03-01 00:33:41.991901 2020-03-01 01:03:06.412181 \N \N 1640 989 1 0 0 0.0 2020-02-19 00:25:06.656307 2020-07-01 05:41:27.424147 \N \N 1699 1034 3 0 0 2.0 2020-03-01 00:18:15.985211 2020-08-17 01:16:05.628655 \N \N 1638 987 1 0 0 0.0 2020-02-19 00:15:34.279194 2020-12-02 22:00:00.442344 \N \N 1704 1039 3 0 0 0.0 2020-03-01 00:34:28.52483 2020-03-18 00:18:06.077983 \N \N 1708 1043 3 0 0 1.0 2020-03-01 00:47:47.907064 2020-08-17 01:14:36.85885 \N \N 1716 1052 3 0 0 0.0 2020-03-01 01:31:52.185597 2020-03-06 22:01:46.994703 \N \N 1705 1040 3 0 0 0.0 2020-03-01 00:37:10.936593 2020-08-17 01:21:25.131697 \N \N 1673 1009 2 0 0 0.0 2020-02-19 20:25:45.371065 2020-06-25 01:37:05.961385 \N \N 1713 1049 3 0 0 1.0 2020-03-01 01:18:01.243194 2020-03-01 01:42:29.667717 \N \N 1714 1050 3 0 0 1.0 2020-03-01 01:25:50.102271 2020-03-01 01:42:29.695319 \N \N 1715 1051 3 0 0 1.0 2020-03-01 01:26:24.909414 2020-03-01 01:42:29.722147 \N \N 1617 661 1 0 0 0.0 2020-02-09 00:41:53.700811 2021-01-12 21:51:05.705682 \N \N 1669 1005 2 0 0 0.0 2020-02-19 20:05:12.932115 2020-06-24 22:45:04.652997 \N \N 1690 1022 1 0 0 0.0 2020-02-25 00:04:42.931087 2020-06-25 20:36:45.70741 \N \N 1624 685 2 0 0 0.0 2020-02-18 19:18:51.548726 2020-03-10 21:45:44.588856 \N \N 1657 576 3 0 0 2.0 2020-02-19 17:48:04.317671 2020-03-11 23:35:50.062137 \N \N 1686 981 2 0 0 0.0 2020-02-21 02:05:53.328698 2020-06-25 01:55:25.901357 \N \N 1666 690 3 0 0 0.0 2020-02-19 17:59:03.848821 2020-03-12 03:04:26.332836 \N \N 1696 1028 2 0 0 0.0 2020-02-29 23:26:49.60839 2020-06-25 01:37:45.941362 \N \N 1633 982 1 0 0 1.0 2020-02-18 21:27:53.169336 2020-12-14 23:21:27.402327 \N \N 1635 984 1 0 0 0.0 2020-02-18 23:30:21.314107 2020-12-11 20:04:34.579972 \N \N 1703 1038 1 0 0 0.0 2020-03-01 00:34:15.001681 2020-07-04 18:43:56.270167 \N \N 1629 978 1 0 0 1.0 2020-02-18 21:11:56.626873 2021-01-09 21:37:50.596533 \N \N 1678 1014 2 0 0 0.0 2020-02-19 20:54:43.947021 2020-06-25 00:15:26.215271 \N \N 1660 419 3 0 0 0.0 2020-02-19 17:59:03.682449 2021-01-13 01:46:40.258721 \N \N 1687 401 1 0 0 5.0 2020-02-22 22:49:03.12371 2020-09-21 19:34:17.533908 \N \N 1628 977 1 0 0 1.0 2020-02-18 21:08:49.232945 2020-07-02 19:04:16.867883 \N \N 1693 1025 1 0 0 0.0 2020-02-25 00:20:46.001862 2020-08-22 17:01:56.515161 \N \N 1662 209 3 0 0 0.0 2020-02-19 17:59:03.734761 2020-09-19 22:01:14.449594 \N \N 1618 415 3 0 0 0.0 2020-02-13 19:00:38.031762 2020-09-19 22:04:46.945391 \N \N 1663 68 3 0 0 0.0 2020-02-19 17:59:03.766945 2020-09-19 23:15:07.039193 \N \N 1656 802 3 0 0 0.0 2020-02-19 17:44:56.676985 2021-01-12 21:22:58.943993 \N \N 1720 1057 1 0 0 0.0 2020-03-01 01:40:43.877539 2020-03-08 19:01:53.322022 \N \N 1718 1055 3 0 0 1.0 2020-03-01 01:36:34.159525 2020-03-01 01:42:29.820927 \N \N 1719 1056 3 0 0 3.0 2020-03-01 01:38:53.345381 2020-03-01 01:42:29.849083 \N \N 1789 980 2 0 0 0.0 2020-03-14 22:38:41.686362 2020-03-19 18:01:36.786786 \N \N 1759 1029 1 0 0 0.0 2020-03-07 21:21:56.839969 2021-01-29 22:22:14.570287 \N \N 1756 1090 1 0 0 1.0 2020-03-02 23:50:39.76324 2020-09-03 22:54:58.21622 \N \N 1788 983 2 0 0 0.0 2020-03-14 22:38:41.653804 2020-03-19 18:01:36.716231 \N \N 1742 1074 3 0 0 0.0 2020-03-01 02:12:30.705923 2020-03-10 01:23:08.767388 \N \N 1728 1065 3 0 0 0.0 2020-03-01 01:56:32.068623 2020-03-10 02:50:41.966618 \N \N 1791 1102 2 0 0 0.0 2020-03-15 00:46:37.158713 2020-07-04 00:10:15.634025 \N \N 1780 1015 1 0 0 3.0 2020-03-14 19:19:36.098683 2020-08-15 18:53:08.064338 \N \N 1737 1053 2 0 0 0.0 2020-03-01 02:06:21.820067 2020-06-25 01:34:34.161715 \N \N 1740 1072 2 0 0 0.0 2020-03-01 02:09:17.016106 2020-03-01 02:34:04.216798 \N \N 1734 1029 2 0 0 0.0 2020-03-01 02:05:51.145837 2020-07-04 00:04:32.566188 \N \N 1808 1116 3 0 0 0.0 2020-03-16 20:32:22.605387 2020-08-17 01:13:44.087402 \N \N 1749 1083 3 0 0 1.0 2020-03-01 02:26:20.950887 2020-03-01 02:38:38.710315 \N \N 1764 1079 2 0 0 0.0 2020-03-11 01:48:05.788403 2020-03-11 01:48:23.374378 \N \N 1744 1076 3 0 0 0.0 2020-03-01 02:14:13.680778 2020-08-17 01:15:47.82878 \N \N 1767 1079 3 0 0 1.0 2020-03-11 23:34:34.353234 2020-03-11 23:34:34.353234 \N \N 1796 1097 3 0 0 0.0 2020-03-15 18:57:25.341501 2020-12-01 00:55:07.335291 \N \N 1768 1077 3 0 0 0.0 2020-03-11 23:34:42.326243 2020-12-23 00:16:03.847087 \N \N 1724 1061 3 0 0 1.0 2020-03-01 01:47:10.409889 2020-03-01 02:38:38.988629 \N \N 1795 1099 3 0 0 1.0 2020-03-15 18:57:16.996611 2020-09-08 23:27:58.464181 \N \N 1731 1068 3 0 0 1.0 2020-03-01 02:01:47.763735 2020-03-01 02:38:39.122268 \N \N 1732 1069 3 0 0 1.0 2020-03-01 02:03:36.176319 2020-03-01 02:38:39.151078 \N \N 1804 1112 3 0 0 0.0 2020-03-16 20:20:37.709576 2020-08-17 01:17:46.650561 \N \N 1739 1071 3 0 0 1.0 2020-03-01 02:07:15.411029 2020-03-01 02:38:39.204028 \N \N 1741 1073 3 0 0 1.0 2020-03-01 02:11:12.845372 2020-03-01 02:38:39.236793 \N \N 1779 998 1 0 0 0.0 2020-03-14 19:19:36.06152 2020-08-13 17:52:47.971327 \N \N 1733 1070 3 0 0 0.0 2020-03-01 02:05:24.227806 2020-08-17 01:16:16.534773 \N \N 1794 993 3 0 0 0.0 2020-03-15 18:57:03.381573 2020-10-15 01:32:02.000818 \N \N 1763 1077 2 0 0 0.0 2020-03-11 01:47:57.932871 2020-06-25 01:38:26.192028 \N \N 1782 687 1 0 0 4.0 2020-03-14 19:20:02.768355 2020-09-04 18:46:36.471436 \N \N 1783 1094 2 0 0 0.0 2020-03-14 19:46:54.429471 2020-05-14 21:26:34.123767 \N \N 1814 1096 2 0 0 0.0 2020-03-16 21:20:31.794254 2020-06-25 01:40:03.05265 \N \N 1754 1088 3 0 0 0.0 2020-03-01 02:36:11.094332 2020-03-06 22:01:46.846173 \N \N 1717 1054 3 0 0 0.0 2020-03-01 01:35:10.671991 2020-03-06 22:01:46.956674 \N \N 1752 1086 3 0 0 1.0 2020-03-01 02:32:15.493387 2020-03-06 22:01:47.037519 \N \N 1711 1046 3 0 0 0.0 2020-03-01 01:09:33.593983 2020-03-06 22:01:47.090455 \N \N 1726 1063 3 0 0 0.0 2020-03-01 01:49:30.715685 2020-03-06 22:05:57.196778 \N \N 1753 1087 3 0 0 0.0 2020-03-01 02:34:42.465745 2020-03-06 22:05:57.228086 \N \N 1778 702 1 0 0 0.0 2020-03-14 02:24:19.169437 2020-10-17 21:21:12.300569 \N \N 1750 1084 3 0 0 0.0 2020-03-01 02:27:50.686826 2020-03-06 22:05:57.294241 \N \N 1745 1078 3 0 0 0.0 2020-03-01 02:18:04.853609 2020-10-13 18:34:14.458714 \N \N 1765 991 3 0 0 0.0 2020-03-11 23:33:47.87512 2020-03-11 23:36:22.988555 \N \N 1772 1032 3 0 0 1.0 2020-03-11 23:35:13.985044 2020-03-12 01:10:00.361226 \N \N 1665 177 3 0 0 0.0 2020-02-19 17:59:03.822068 2020-03-12 03:04:19.597936 \N \N 1776 1093 2 0 0 0.0 2020-03-13 02:38:47.63568 2020-03-13 02:39:36.509958 \N \N 1803 1111 3 0 0 0.0 2020-03-16 20:17:35.21136 2020-07-18 23:14:03.372665 \N \N 1766 995 3 0 0 3.0 2020-03-11 23:33:47.912474 2020-10-23 00:25:15.542738 \N \N 1784 411 1 0 0 3.0 2020-03-14 19:54:35.572723 2020-03-14 19:54:35.572723 \N \N 1785 286 1 0 0 2.0 2020-03-14 19:54:35.636731 2020-03-14 19:54:35.636731 \N \N 1747 1081 3 0 0 0.0 2020-03-01 02:23:36.788227 2020-08-17 01:10:58.037824 \N \N 1743 1075 1 0 0 0.0 2020-03-01 02:13:09.720232 2020-06-25 21:01:41.504669 \N \N 1725 1062 1 0 0 0.0 2020-03-01 01:48:32.238748 2020-12-30 01:48:42.430213 \N \N 1790 1101 2 0 0 0.0 2020-03-15 00:04:52.975671 2020-07-04 00:10:09.719006 \N \N 1781 685 1 0 0 5.0 2020-03-14 19:19:47.001701 2020-10-26 21:20:48.11111 \N \N 1792 1103 2 0 0 0.0 2020-03-15 00:49:24.021079 2020-07-04 00:10:44.673225 \N \N 1793 1104 2 0 0 0.0 2020-03-15 00:50:32.456748 2020-07-04 00:10:55.925038 \N \N 1802 1110 3 0 0 0.0 2020-03-16 20:16:16.034242 2020-12-23 01:51:41.434785 \N \N 1797 1105 3 0 0 1.0 2020-03-16 19:54:13.165211 2020-03-16 20:34:05.029646 \N \N 1777 1006 3 0 0 1.0 2020-03-13 22:49:47.441458 2020-10-23 22:11:34.949017 \N \N 1771 1033 3 0 0 0.0 2020-03-11 23:35:07.288487 2020-12-18 06:34:22.401865 \N \N 1800 1108 3 0 0 1.0 2020-03-16 20:06:54.47486 2020-03-16 20:34:05.113457 \N \N 1748 1082 3 0 0 0.0 2020-03-01 02:24:36.750361 2020-07-22 21:29:50.322408 \N \N 1787 1098 1 0 0 0.0 2020-03-14 20:30:16.580043 2020-12-26 22:22:47.955458 \N \N 1769 1053 3 0 0 1.0 2020-03-11 23:34:48.702995 2020-07-20 21:26:19.087892 \N \N 1729 1066 3 0 0 2.0 2020-03-01 01:57:34.110787 2020-08-17 01:21:04.980614 \N \N 1807 1115 3 0 0 0.0 2020-03-16 20:29:57.900835 2020-03-18 00:18:05.965909 \N \N 1798 1106 3 0 0 0.0 2020-03-16 19:57:22.460109 2020-07-13 19:44:11.726722 \N \N 1806 1114 3 0 0 0.0 2020-03-16 20:26:48.969346 2020-03-18 00:18:06.025911 \N \N 1751 1085 3 0 0 0.0 2020-03-01 02:29:47.298288 2020-08-17 01:15:07.929951 \N \N 1810 1099 1 0 0 0.0 2020-03-16 20:45:26.388887 2020-06-25 01:31:43.843094 \N \N 1805 1113 3 0 0 0.0 2020-03-16 20:23:45.695472 2020-03-18 00:13:40.826893 \N \N 1722 1059 1 0 0 0.0 2020-03-01 01:44:51.284226 2020-03-18 01:28:39.861705 \N \N 1815 690 2 0 0 0.0 2020-03-16 21:21:47.62392 2020-06-25 00:17:59.371651 \N \N 1816 177 2 0 0 0.0 2020-03-16 21:21:47.658605 2020-06-24 22:54:27.816748 \N \N 1755 1089 2 0 0 0.0 2020-03-02 23:44:43.014263 2020-06-25 01:19:08.240147 \N \N 1813 1097 2 0 0 0.0 2020-03-16 21:19:27.65075 2020-06-25 01:20:20.570512 \N \N 1786 1095 2 0 0 0.0 2020-03-14 20:04:54.982577 2020-06-25 01:38:51.20762 \N \N 1757 1091 1 0 0 0.0 2020-03-02 23:55:58.831484 2020-06-25 01:32:21.212788 \N \N 1735 1032 2 0 0 0.0 2020-03-01 02:06:00.347831 2020-06-25 01:37:54.152484 \N \N 1736 1033 2 0 0 0.0 2020-03-01 02:06:10.037899 2020-06-25 01:37:59.076529 \N \N 1738 1047 2 0 0 0.0 2020-03-01 02:06:30.252747 2020-06-25 01:38:13.043695 \N \N 1730 1067 2 0 0 0.0 2020-03-01 02:00:16.388841 2020-06-25 01:38:17.10588 \N \N 1812 1100 2 0 0 0.0 2020-03-16 21:18:51.029732 2020-06-25 01:38:45.334067 \N \N 1811 1100 1 0 0 2.0 2020-03-16 20:45:37.99022 2020-06-25 01:43:18.172132 \N \N 1723 1060 3 0 0 0.0 2020-03-01 01:45:49.796054 2020-07-21 21:13:33.08461 \N \N 1770 1047 3 0 0 1.0 2020-03-11 23:34:59.864695 2020-07-04 23:58:48.956933 \N \N 1536 611 3 0 0 0.0 2020-01-24 23:48:43.588964 2020-09-19 22:10:29.442729 \N \N 1762 1077 1 0 0 0.0 2020-03-07 21:26:36.290294 2020-07-20 23:47:46.094391 \N \N 1799 1107 3 0 0 0.0 2020-03-16 20:01:34.266912 2020-12-30 22:33:38.849488 \N \N 1760 1033 1 0 0 0.0 2020-03-07 21:26:16.20994 2020-12-22 21:05:21.828856 \N \N 1761 1047 1 0 0 0.0 2020-03-07 21:26:27.916358 2020-10-17 20:15:17.754247 \N \N 1809 1096 1 0 0 1.0 2020-03-16 20:44:58.765668 2021-01-29 22:22:14.630812 \N \N 1746 1080 3 0 0 0.0 2020-03-01 02:21:50.673409 2020-09-24 18:26:18.315214 \N \N 1801 1109 3 0 0 1.0 2020-03-16 20:09:06.234752 2020-07-21 23:30:34.386408 \N \N 1727 1064 3 0 0 0.0 2020-03-01 01:52:47.348244 2020-08-26 18:32:54.548395 \N \N 1721 1058 3 0 0 0.0 2020-03-01 01:44:02.900067 2020-11-28 02:00:11.179221 \N \N 1774 161 3 0 0 0.0 2020-03-11 23:35:32.526224 2021-01-13 01:45:58.44297 \N \N 1775 416 3 0 0 0.0 2020-03-11 23:35:42.281939 2021-01-13 01:46:07.866537 \N \N 1846 719 3 0 0 1.0 2020-06-24 21:58:23.288385 2020-06-24 21:58:23.288385 \N \N 1856 949 1 0 0 6.0 2020-06-25 00:49:15.66609 2020-12-12 20:04:51.636516 \N \N 1820 513 2 0 0 0.0 2020-03-16 21:21:47.757226 2020-06-24 22:20:24.695185 \N \N 1819 618 2 0 0 0.0 2020-03-16 21:21:47.733567 2020-06-24 22:20:33.784789 \N \N 1823 1016 3 0 0 0.0 2020-03-19 00:34:33.432441 2020-03-19 00:37:45.487969 \N \N 1824 490 1 0 0 0.0 2020-03-19 23:05:22.831331 2020-03-19 23:06:06.679557 \N \N 1818 803 2 0 0 0.0 2020-03-16 21:21:47.710342 2020-06-24 22:38:40.508531 \N \N 1825 593 3 0 0 0.0 2020-03-21 23:38:33.322543 2020-03-21 23:38:52.145413 \N \N 676 574 2 0 0 0.0 2019-07-13 17:58:58.48629 2020-06-24 22:54:08.941645 \N \N 1894 394 1 0 0 1.0 2020-06-25 19:41:24.929335 2020-06-25 19:41:24.929335 \N \N 1826 1119 1 0 0 0 2020-04-30 01:26:50.955024 2020-04-30 01:26:50.955024 \N \N 1827 1120 3 0 0 0.0 2020-04-30 22:33:00.83825 2020-04-30 22:34:21.979078 \N \N 1849 686 1 0 0 2.0 2020-06-25 00:48:43.142651 2020-06-25 00:48:43.142651 \N \N 1850 810 1 0 0 1.0 2020-06-25 00:48:52.68845 2020-06-25 00:48:52.68845 \N \N 1851 391 1 0 0 1.0 2020-06-25 00:49:03.063697 2020-06-25 00:49:03.063697 \N \N 1853 1018 1 0 0 3.0 2020-06-25 00:49:03.187085 2020-06-25 00:49:03.187085 \N \N 1878 798 1 0 0 0 2020-06-25 00:49:56.440325 2020-07-23 17:19:34.124713 \N \N 1828 1011 3 0 0 0.0 2020-05-03 23:36:09.071903 2020-05-04 00:09:36.845858 \N \N 1863 300 1 0 0 1.0 2020-06-25 00:49:28.154001 2020-06-25 00:49:28.154001 \N \N 1867 294 1 0 0 2.0 2020-06-25 00:49:28.285242 2020-06-25 00:49:28.285242 \N \N 1869 421 1 0 0 1.0 2020-06-25 00:49:43.110806 2020-06-25 00:49:43.110806 \N \N 1834 1124 3 0 0 0.0 2020-05-04 00:27:55.299402 2020-05-04 00:30:24.158978 \N \N 1833 1123 3 0 0 0.0 2020-05-04 00:27:02.03407 2020-05-04 00:30:24.183611 \N \N 1829 1121 3 0 0 0.0 2020-05-03 23:55:49.545763 2020-08-05 19:58:36.626301 \N \N 1835 1125 3 0 0 0.0 2020-05-04 00:39:44.283365 2020-05-04 00:40:41.995805 \N \N 1874 397 1 0 0 2.0 2020-06-25 00:49:43.282952 2020-06-25 00:49:43.282952 \N \N 1837 1127 3 0 0 0.0 2020-05-04 00:50:25.741 2020-05-04 00:51:24.422142 \N \N 1876 316 1 0 0 4.0 2020-06-25 00:49:56.375428 2020-06-25 00:49:56.375428 \N \N 1879 328 1 0 0 1.0 2020-06-25 00:49:56.519194 2020-06-25 00:49:56.519194 \N \N 1880 309 1 0 0 1.0 2020-06-25 00:49:56.581793 2020-06-25 00:49:56.581793 \N \N 1899 693 1 0 0 3.0 2020-06-26 19:03:59.127729 2020-06-26 19:03:59.127729 \N \N 1881 799 1 0 0 1.0 2020-06-25 00:49:56.604944 2020-06-25 00:49:56.604944 \N \N 1838 1128 3 0 0 0.0 2020-05-14 20:52:36.663358 2020-05-14 20:53:47.903313 \N \N 1839 1129 3 0 0 0.0 2020-05-14 20:53:21.804814 2020-05-14 20:53:47.927406 \N \N 1862 302 1 0 0 0.0 2020-06-25 00:49:28.13307 2021-01-19 22:55:25.737864 \N \N 1885 423 1 0 0 0.0 2020-06-25 01:08:21.799916 2020-10-27 00:04:38.19051 \N \N 1830 967 1 0 0 0.0 2020-05-04 00:08:12.105112 2020-06-10 23:26:05.163862 \N \N 1897 281 1 0 0 4.0 2020-06-25 19:41:25.055434 2020-06-25 19:41:25.055434 \N \N 894 54 3 0 0 0.0 2019-09-03 19:26:33.971694 2020-06-23 23:58:37.594557 \N \N 1842 361 1 0 0 1.0 2020-06-24 00:10:50.548622 2020-06-24 00:10:50.548622 \N \N 1844 155 3 0 0 1.0 2020-06-24 21:57:34.640219 2020-10-15 23:19:39.052934 \N \N 1886 629 1 0 0 2.0 2020-06-25 01:30:32.921958 2020-06-25 01:30:32.921958 \N \N 399 401 2 0 0 0.0 2019-02-03 00:00:00 2020-06-25 01:32:12.925328 \N \N 1889 1067 1 0 0 1.0 2020-06-25 01:43:18.207615 2020-06-25 01:43:18.207615 \N \N 1890 1032 1 0 0 1.0 2020-06-25 01:43:18.266042 2020-06-25 01:43:18.266042 \N \N 1891 1028 1 0 0 1.0 2020-06-25 01:43:18.287135 2020-06-25 01:43:18.287135 \N \N 1883 529 1 0 0 0.0 2020-06-25 00:49:56.768558 2020-09-29 22:35:38.734718 \N \N 1864 643 1 0 0 0.0 2020-06-25 00:49:28.176313 2020-07-18 16:13:18.927191 \N \N 1817 571 2 0 0 0 2020-03-16 21:21:47.685693 2020-06-25 18:56:05.447635 \N \N 1758 1092 2 0 0 0.0 2020-03-03 00:00:32.212764 2020-06-25 19:03:49.920712 \N \N 1843 354 1 0 0 0.0 2020-06-24 00:10:50.567975 2020-06-26 19:08:16.168117 \N \N 1848 710 1 0 0 0.0 2020-06-25 00:48:43.101802 2020-09-24 00:49:06.160457 \N \N 1841 653 1 0 0 0.0 2020-06-24 00:10:50.492823 2020-07-27 16:19:41.061631 \N \N 1868 422 1 0 0 0.0 2020-06-25 00:49:43.020569 2020-06-26 19:08:16.243299 \N \N 1896 297 1 0 0 0.0 2020-06-25 19:41:25.031642 2020-06-26 19:08:16.345798 \N \N 1895 301 1 0 0 0.0 2020-06-25 19:41:24.980823 2020-06-26 19:08:16.369948 \N \N 1908 920 3 0 0 1.0 2020-06-26 19:15:37.603012 2020-06-26 19:15:37.603012 \N \N 1854 680 1 0 0 0.0 2020-06-25 00:49:03.240197 2020-08-24 16:18:15.674612 \N \N 1910 1100 3 0 0 1.0 2020-06-26 19:16:05.417149 2020-06-26 19:16:05.417149 \N \N 1914 1089 3 0 0 1.0 2020-06-26 19:16:05.512137 2020-07-04 18:39:10.430585 \N \N 1911 1026 3 0 0 4.0 2020-06-26 19:16:05.438229 2020-06-26 19:16:11.375464 \N \N 1861 341 1 0 0 0.0 2020-06-25 00:49:28.054563 2020-12-23 18:08:47.497262 \N \N 1900 885 3 0 0 0.0 2020-06-26 19:14:49.550936 2020-12-23 00:55:12.526566 \N \N 1866 298 1 0 0 2.0 2020-06-25 00:49:28.24129 2020-07-01 19:35:33.381999 \N \N 1901 754 3 0 0 2.0 2020-06-26 19:14:49.574569 2020-12-02 01:37:41.858212 \N \N 1904 990 3 0 0 1.0 2020-06-26 19:14:49.638487 2020-09-03 21:32:38.314333 \N \N 1852 1019 1 0 0 2.0 2020-06-25 00:49:03.161423 2020-09-04 23:40:09.025348 \N \N 1847 999 1 0 0 0.0 2020-06-25 00:48:43.080071 2020-07-08 20:29:47.30202 \N \N 1859 1011 1 0 0 1.0 2020-06-25 00:49:15.783985 2020-07-02 19:07:00.619597 \N \N 1860 1012 1 0 0 0.0 2020-06-25 00:49:15.806217 2020-08-13 17:53:03.684868 \N \N 1898 430 1 0 0 0.0 2020-06-25 19:41:47.286831 2020-08-08 20:07:40.813623 \N \N 1893 644 1 0 0 1.0 2020-06-25 19:41:00.048725 2020-08-13 21:53:33.996988 \N \N 1892 1001 1 0 0 0.0 2020-06-25 19:08:38.667754 2020-10-22 17:49:57.312666 \N \N 1906 1022 3 0 0 3.0 2020-06-26 19:15:02.841241 2020-09-03 21:54:31.321715 \N \N 1873 789 1 0 0 3.0 2020-06-25 00:49:43.262376 2020-12-20 00:43:43.233501 \N \N 1884 632 1 0 0 1.0 2020-06-25 00:49:56.801845 2020-07-23 17:19:34.096216 \N \N 1888 1095 1 0 0 0.0 2020-06-25 01:43:18.150059 2021-02-07 00:52:15.811488 \N \N 1877 1016 1 0 0 0.0 2020-06-25 00:49:56.397639 2020-12-15 17:28:21.783044 \N \N 1905 981 3 0 0 3.0 2020-06-26 19:15:02.820868 2021-01-12 01:59:02.460885 \N \N 1821 1118 1 0 0 0.0 2020-03-18 00:52:07.094167 2020-10-18 00:04:35.916844 \N \N 1845 968 3 0 0 0.0 2020-06-24 21:58:07.004118 2020-08-21 21:47:03.147464 \N \N 1870 1000 1 0 0 0.0 2020-06-25 00:49:43.163735 2020-09-30 00:39:00.167929 \N \N 1913 1067 3 0 0 0.0 2020-06-26 19:16:05.493395 2020-08-31 21:18:36.672295 \N \N 1773 1029 3 0 0 3.0 2020-03-11 23:35:21.232257 2020-11-05 21:20:40.22196 \N \N 1871 1005 1 0 0 0.0 2020-06-25 00:49:43.202543 2020-10-18 00:12:03.263529 \N \N 1855 1014 1 0 0 0.0 2020-06-25 00:49:03.294727 2020-08-15 20:11:04.289463 \N \N 1831 1091 3 0 0 0.0 2020-05-04 00:08:45.651784 2020-08-19 22:37:15.542889 \N \N 1912 1096 3 0 0 0.0 2020-06-26 19:16:05.473853 2020-09-09 22:18:11.554401 \N \N 1887 1092 1 0 0 0.0 2020-06-25 01:43:00.439886 2020-12-22 21:00:28.577023 \N \N 1073 743 1 0 0 1.0 2019-10-07 20:34:51.993956 2020-11-25 20:16:50.640343 1149.00 \N 1840 352 1 0 0 0.0 2020-06-24 00:10:50.472622 2020-09-18 00:06:55.502914 \N \N 1909 635 3 0 0 0.0 2020-06-26 19:15:57.74581 2020-09-19 23:16:21.338497 \N \N 1875 319 1 0 0 0.0 2020-06-25 00:49:56.35403 2020-09-20 00:26:18.195412 \N \N 1872 1004 1 0 0 0.0 2020-06-25 00:49:43.22353 2020-10-18 00:11:49.981622 \N \N 1865 645 1 0 0 0.0 2020-06-25 00:49:28.201841 2020-12-28 20:53:41.169811 \N \N 1858 1010 1 0 0 1.0 2020-06-25 00:49:15.760089 2021-01-10 00:45:38.277113 \N \N 1903 987 3 0 0 0.0 2020-06-26 19:14:49.61734 2020-11-06 21:58:00.879165 \N \N 1832 1122 3 0 0 1.0 2020-05-04 00:23:42.589197 2020-12-21 17:53:55.488091 \N \N 1907 1001 3 0 0 3.0 2020-06-26 19:15:02.860584 2020-12-23 18:51:51.205115 \N \N 1902 985 3 0 0 3.0 2020-06-26 19:14:49.595766 2020-12-30 18:29:49.360553 \N \N 1857 1003 1 0 0 1.0 2020-06-25 00:49:15.734932 2021-02-02 17:32:12.776655 \N \N 1882 331 1 0 0 1.0 2020-06-25 00:49:56.74517 2021-02-10 18:05:07.235714 \N \N 1940 637 1 0 0 2.0 2020-07-02 18:04:06.630318 2020-10-17 16:57:51.93934 \N \N 968 524 3 0 0 0.0 2019-09-04 00:52:31.873248 2020-07-01 18:43:16.91511 \N \N 1973 1137 3 0 0 0.0 2020-07-04 20:44:16.699962 2020-08-07 20:16:14.140957 \N \N 1511 71 3 0 0 0.0 2020-01-07 19:09:47.111927 2020-07-01 19:13:50.109449 \N \N 1962 405 3 0 0 0.0 2020-07-04 18:31:25.539798 2020-09-19 22:19:39.071019 \N \N 1931 677 3 0 0 3.0 2020-07-01 22:11:57.175479 2020-07-01 22:11:57.175479 \N \N 1932 970 1 0 0 3.0 2020-07-01 22:48:35.655828 2020-07-01 22:48:35.655828 \N \N 1933 524 1 0 0 5.0 2020-07-01 22:48:35.963958 2020-07-01 22:48:35.963958 \N \N 1930 975 3 0 0 0.0 2020-07-01 18:34:29.098009 2020-11-05 23:10:57.824484 \N \N 1950 158 3 0 0 2.0 2020-07-03 23:25:20.67335 2020-07-03 23:25:20.67335 \N \N 1963 200 3 0 0 0.0 2020-07-04 18:31:25.567229 2020-08-15 17:32:54.851505 \N \N 1944 483 3 0 0 0.0 2020-07-03 23:24:05.809467 2020-09-19 22:20:15.987997 \N \N 1957 386 3 0 0 0.0 2020-07-04 18:29:12.520915 2020-09-21 18:47:19.835037 \N \N 1956 1101 3 0 0 1.0 2020-07-04 18:29:12.467216 2020-09-21 18:48:23.932115 \N \N 1928 989 3 0 0 1.0 2020-07-01 18:34:29.019608 2020-12-23 03:39:11.014213 \N \N 1955 1102 3 0 0 0.0 2020-07-04 18:29:12.391692 2020-09-21 18:46:42.053172 \N \N 1954 1103 3 0 0 0.0 2020-07-04 18:29:12.318018 2020-09-21 18:47:29.591243 \N \N 1961 407 3 0 0 2.0 2020-07-04 18:31:25.515622 2020-09-25 21:45:08.942851 \N \N 1942 1089 1 0 0 0.0 2020-07-02 20:01:18.387275 2020-07-04 18:37:32.391479 \N \N 1917 202 3 0 0 0.0 2020-06-26 19:16:22.097509 2020-12-04 20:32:10.765765 \N \N 1939 657 1 0 0 0.0 2020-07-02 18:04:06.553144 2020-07-06 21:45:51.316504 \N \N 1929 988 3 0 0 1.0 2020-07-01 18:34:29.074045 2020-12-16 22:25:02.502769 \N \N 1988 1131 1 0 0 0.0 2020-07-06 21:35:26.30837 2020-07-06 21:45:51.349936 \N \N 1948 485 3 0 0 0 2020-07-03 23:24:31.442755 2020-09-19 22:25:31.025853 \N \N 2006 1157 1 0 0 0.0 2020-07-17 19:48:01.382171 2020-12-23 18:07:20.39821 \N \N 1972 1136 3 0 0 1.0 2020-07-04 20:41:31.040929 2020-07-04 22:15:46.485698 \N \N 1971 1135 3 0 0 0.0 2020-07-04 20:38:42.723622 2020-12-14 22:06:54.884516 \N \N 1997 339 1 0 0 0.0 2020-07-13 17:01:32.417841 2020-09-22 19:55:14.280861 \N \N 1970 1134 3 0 0 0.0 2020-07-04 20:32:18.377519 2020-07-31 21:23:59.127691 \N \N 1964 1038 3 0 0 0.0 2020-07-04 18:44:26.633665 2020-09-30 19:34:28.297308 \N \N 1945 221 3 0 0 4.0 2020-07-03 23:24:31.377451 2020-08-25 21:57:11.359212 \N \N 1979 1143 3 0 0 0.0 2020-07-04 21:41:37.628898 2020-07-24 18:40:15.583569 \N \N 2013 528 1 0 0 1.0 2020-07-20 20:01:05.295783 2020-09-17 18:58:37.238459 \N \N 1969 1133 3 0 0 0 2020-07-04 20:29:17.381056 2020-07-04 22:15:46.393224 \N \N 1965 1098 3 0 0 0.0 2020-07-04 18:58:25.414332 2020-07-04 22:33:10.713991 \N \N 1980 1144 3 0 0 0.0 2020-07-04 22:00:00.951293 2020-07-18 23:08:00.08573 \N \N 1983 1147 3 0 0 0.0 2020-07-04 23:23:15.549025 2020-07-04 23:24:42.213236 \N \N 1993 435 3 0 0 1.0 2020-07-08 19:28:02.702404 2020-07-08 19:28:02.702404 \N \N 1982 1146 3 0 0 0.0 2020-07-04 22:15:32.60183 2020-12-30 19:46:20.720993 \N \N 272 274 1 0 0 5.0 2019-02-03 00:00:00 2020-09-07 16:50:11.75286 \N \N 1986 1150 3 0 0 0.0 2020-07-04 23:30:11.739473 2020-07-04 23:40:12.343687 \N \N 1967 1131 3 0 0 0.0 2020-07-04 20:15:20.425622 2020-07-06 21:09:24.18456 \N \N 1989 387 1 0 0 2.0 2020-07-06 21:37:04.877191 2020-07-06 21:37:04.877191 \N \N 1953 1104 3 0 0 0.0 2020-07-04 18:29:12.243994 2020-09-21 18:47:30.926654 \N \N 1987 1151 3 0 0 0.0 2020-07-04 23:37:09.784169 2020-07-07 00:52:46.018877 \N \N 1974 1138 3 0 0 0.0 2020-07-04 20:47:04.764084 2020-09-08 23:27:58.439867 \N \N 1990 1146 1 0 0 1.0 2020-07-07 18:33:18.050914 2020-07-07 18:33:18.050914 \N \N 1995 272 3 0 0 1.0 2020-07-11 20:20:20.803408 2020-07-11 20:20:20.803408 \N \N 1916 1027 3 0 0 0.0 2020-06-26 19:16:11.393203 2020-07-07 23:37:37.099936 \N \N 1991 1027 1 0 0 0.0 2020-07-07 23:38:00.244019 2020-07-07 23:38:20.38864 \N \N 1992 19 3 0 0 4.0 2020-07-07 23:54:13.567986 2020-07-08 00:13:35.763778 \N \N 1996 263 3 0 0 1.0 2020-07-11 20:20:20.826798 2020-07-11 20:20:20.826798 \N \N 1976 1140 3 0 0 0.0 2020-07-04 21:09:39.787257 2020-07-09 21:29:48.262796 \N \N 2001 1152 3 0 0 0.0 2020-07-13 21:11:59.871932 2020-07-29 23:57:44.835467 \N \N 1978 1142 3 0 0 1.0 2020-07-04 21:36:40.108944 2021-01-07 01:08:31.220645 \N \N 2002 1153 3 0 0 0.0 2020-07-13 21:13:31.349359 2020-07-13 21:26:13.275812 \N \N 2003 1154 3 0 0 0.0 2020-07-13 23:23:31.747443 2020-07-13 23:28:52.673211 \N \N 2004 1155 3 0 0 0.0 2020-07-15 23:49:11.0906 2020-07-15 23:49:40.252417 \N \N 1934 275 1 0 0 0.0 2020-07-01 22:48:35.985921 2020-08-22 18:16:40.066004 \N \N 2005 1156 1 0 0 0.0 2020-07-17 18:53:23.398999 2020-07-17 18:55:07.561456 \N \N 2008 1021 3 0 0 4.0 2020-07-18 22:57:00.033815 2020-09-22 20:47:19.4004 \N \N 2009 800 3 0 0 2.0 2020-07-18 22:57:00.135825 2020-12-23 18:41:19.795311 \N \N 1949 63 3 0 0 1.0 2020-07-03 23:24:47.395226 2020-12-15 01:20:46.215413 \N \N 1919 997 3 0 0 0.0 2020-06-26 19:16:27.703194 2020-11-05 22:23:38.049343 \N \N 1528 713 3 0 0 0.0 2020-01-24 23:48:35.633534 2020-09-24 00:24:44.58186 \N \N 2010 552 3 0 0 2.0 2020-07-18 22:57:00.157897 2020-07-18 22:57:00.157897 \N \N 1984 1148 3 0 0 0.0 2020-07-04 23:25:58.5384 2020-09-30 23:59:33.551397 \N \N 1920 1008 3 0 0 2.0 2020-06-26 19:16:27.725212 2020-07-21 23:30:34.317323 \N \N 1968 1132 3 0 0 0.0 2020-07-04 20:24:50.970168 2020-07-21 23:35:00.156025 \N \N 2000 348 1 0 0 0.0 2020-07-13 17:01:32.517285 2020-08-27 20:26:33.115322 \N \N 1921 1009 3 0 0 0.0 2020-06-26 19:16:33.147118 2020-11-06 21:58:38.180721 \N \N 1959 906 3 0 0 0.0 2020-07-04 18:30:20.213001 2020-08-05 00:04:29.769273 \N \N 1924 520 3 0 0 2.0 2020-06-26 19:16:40.366301 2020-10-15 21:46:12.671862 \N \N 1960 908 3 0 0 0.0 2020-07-04 18:30:20.26712 2020-08-06 22:31:10.62844 \N \N 1977 1141 3 0 0 0 2020-07-04 21:12:37.247715 2020-08-18 23:10:41.372253 \N \N 1936 537 1 0 0 0.0 2020-07-01 22:48:36.06449 2021-03-02 00:30:10.106497 \N \N 1935 479 1 0 0 3.0 2020-07-01 22:48:36.043503 2021-02-04 18:03:00.511819 \N \N 1947 185 3 0 0 0.0 2020-07-03 23:24:31.420131 2020-08-15 21:31:56.335179 \N \N 1998 335 1 0 0 1.0 2020-07-13 17:01:32.442092 2020-08-22 18:15:45.29195 \N \N 1822 1118 3 0 0 0.0 2020-03-18 00:55:14.650344 2020-12-17 00:39:05.409357 \N \N 1985 1149 3 0 0 0.0 2020-07-04 23:28:20.336452 2020-09-25 23:16:04.156616 \N \N 1994 266 3 0 0 0.0 2020-07-11 20:20:20.739016 2020-11-06 23:00:20.646849 \N \N 1915 915 3 0 0 0.0 2020-06-26 19:16:11.354345 2020-12-19 06:14:07.379093 \N \N 1999 333 1 0 0 0.0 2020-07-13 17:01:32.490842 2020-11-09 19:35:32.736543 \N \N 2011 109 3 0 0 0.0 2020-07-18 22:57:00.180564 2020-09-19 21:54:00.075068 \N \N 1918 557 3 0 0 0.0 2020-06-26 19:16:22.11871 2020-09-19 22:15:55.044985 \N \N 1951 190 3 0 0 0.0 2020-07-03 23:25:44.384066 2020-09-19 22:03:51.725875 \N \N 1952 404 3 0 0 0.0 2020-07-03 23:25:44.407126 2020-09-19 22:06:33.397242 \N \N 1941 17 3 0 0 0.0 2020-07-02 19:50:34.391132 2020-09-19 22:12:37.985278 \N \N 1927 401 3 0 0 0.0 2020-06-26 19:16:40.425138 2020-09-19 22:19:51.14017 \N \N 1943 239 3 0 0 0.0 2020-07-03 23:24:05.775547 2020-09-19 22:21:20.830624 \N \N 1923 1007 3 0 0 0.0 2020-06-26 19:16:40.311631 2020-11-05 22:58:00.833195 \N \N 1926 1003 3 0 0 2.0 2020-06-26 19:16:40.405207 2020-10-02 00:05:22.216694 \N \N 1938 1122 1 0 0 0.0 2020-07-02 18:03:53.510681 2020-10-03 18:45:02.798021 \N \N 1958 905 3 0 0 3.0 2020-07-04 18:30:20.183996 2020-10-30 02:05:34.778334 \N \N 2007 1158 1 0 0 0.0 2020-07-17 19:49:28.442472 2020-11-09 21:44:11.924546 \N \N 1966 1130 3 0 0 0.0 2020-07-04 20:08:57.60407 2020-12-17 18:05:35.307387 \N \N 1981 1145 3 0 0 0.0 2020-07-04 22:04:55.166113 2020-12-25 00:00:48.248525 \N \N 1937 1126 1 0 0 1.0 2020-07-02 18:03:53.47904 2020-12-23 20:22:32.859947 \N \N 1925 804 3 0 0 0.0 2020-06-26 19:16:40.385986 2021-01-13 01:43:23.121907 \N \N 1922 1017 3 0 0 0.0 2020-06-26 19:16:40.291083 2021-02-06 20:48:21.605175 \N \N 2014 934 3 0 0 0.0 2020-07-21 22:38:43.392876 2020-07-21 22:39:16.157885 \N \N 2057 1185 1 0 0 0.0 2020-08-08 23:10:12.842655 2020-09-15 19:33:21.338339 \N \N 2050 1188 3 0 0 0.0 2020-08-07 20:53:15.426461 2020-10-17 00:15:14.112369 \N \N 2015 994 3 0 0 0.0 2020-07-23 20:02:46.365385 2020-11-06 21:56:44.385674 \N \N 2109 1229 3 0 0 0.0 2020-08-14 22:47:29.956774 2020-11-26 21:57:51.508401 \N \N 2113 1233 3 0 0 0.0 2020-08-14 23:21:13.574525 2020-12-30 18:29:49.386817 \N \N 2051 1189 3 0 0 1.0 2020-08-07 21:04:10.0084 2020-12-22 20:54:11.873465 \N \N 2020 1162 3 0 0 1.0 2020-07-29 19:47:37.029437 2020-07-29 19:48:27.569907 \N \N 2022 1157 3 0 0 1.0 2020-07-29 19:48:27.541364 2020-12-23 23:08:46.516759 \N \N 2023 1164 1 0 0 0.0 2020-07-29 20:07:35.65156 2020-12-14 19:07:57.142651 \N \N 2025 1148 1 0 0 0.0 2020-07-29 20:10:07.210029 2020-09-15 19:35:15.954738 \N \N 2073 1205 1 0 0 0.0 2020-08-14 05:04:24.58269 2020-10-19 21:17:51.181281 \N \N 2054 1192 3 0 0 0.0 2020-08-08 00:56:24.567107 2020-08-08 00:57:21.306816 \N \N 2060 1181 1 0 0 0.0 2020-08-08 23:10:12.926788 2020-08-27 20:25:13.130932 \N \N 2026 1166 3 0 0 0.0 2020-07-31 22:31:37.519659 2020-07-31 22:32:05.284861 \N \N 2111 1231 3 0 0 0.0 2020-08-14 22:51:21.769383 2020-09-09 23:33:02.643909 \N \N 2061 1193 3 0 0 1.0 2020-08-13 18:56:11.21741 2020-08-13 19:06:58.757126 \N \N 2030 1170 3 0 0 0.0 2020-08-03 19:51:46.312678 2020-09-11 01:14:58.120748 \N \N 2021 1163 3 0 0 0.0 2020-07-29 19:48:21.249327 2020-08-01 23:52:27.141453 \N \N 2038 1173 1 0 0 0 2020-08-03 20:10:53.636829 2020-08-14 21:51:19.887194 \N \N 2085 1203 3 0 0 0.0 2020-08-14 19:33:48.641189 2020-08-19 22:37:15.451407 \N \N 2045 1183 3 0 0 0.0 2020-08-07 19:50:16.356956 2020-09-17 19:24:32.550853 \N \N 2063 1195 3 0 0 1.0 2020-08-13 19:28:13.121466 2020-08-13 19:28:20.704971 \N \N 2093 1214 3 0 0 0.0 2020-08-14 20:06:49.432786 2020-10-27 01:10:05.59515 \N \N 2044 1182 3 0 0 0.0 2020-08-07 19:43:47.551009 2020-10-16 21:11:53.28344 \N \N 2032 1172 3 0 0 1.0 2020-08-03 19:54:09.803922 2020-08-03 19:55:21.549552 \N \N 2046 1184 3 0 0 1.0 2020-08-07 20:02:02.105731 2020-12-13 20:41:13.812699 \N \N 2037 1168 1 0 0 1.0 2020-08-03 20:10:53.518138 2020-08-03 20:10:53.518138 \N \N 2036 1176 1 0 0 0.0 2020-08-03 19:59:00.160439 2020-10-02 22:56:20.896051 \N \N 2069 1201 1 0 0 0.0 2020-08-14 04:53:21.916094 2020-12-24 21:03:39.626533 \N \N 2065 1197 1 0 0 0.0 2020-08-14 04:42:47.839201 2020-10-07 21:28:39.502651 \N \N 2027 1167 3 0 0 0.0 2020-08-03 19:47:58.347288 2020-08-03 20:12:07.736742 \N \N 2018 1160 3 0 0 0.0 2020-07-29 19:35:58.263454 2020-08-03 22:22:16.989478 \N \N 2029 1169 3 0 0 0.0 2020-08-03 19:50:41.084628 2020-08-03 22:41:27.899883 \N \N 2039 1177 3 0 0 1.0 2020-08-07 18:52:40.241689 2020-08-07 20:14:49.150547 \N \N 2034 1174 1 0 0 0.0 2020-08-03 19:57:13.469548 2020-10-02 22:56:14.576256 \N \N 2052 1190 3 0 0 0.0 2020-08-07 21:15:28.10212 2020-09-29 19:57:57.691218 \N \N 2083 1202 3 0 0 0.0 2020-08-14 19:33:48.581797 2020-09-01 22:05:59.801499 \N \N 2070 1202 1 0 0 1.0 2020-08-14 04:54:47.613309 2020-09-30 19:31:06.707704 \N \N 2082 1204 3 0 0 0.0 2020-08-14 19:33:48.553351 2020-08-20 23:10:48.420836 \N \N 2055 1135 1 0 0 0.0 2020-08-08 23:09:51.927042 2020-12-14 21:57:38.803195 \N \N 2058 1184 1 0 0 0.0 2020-08-08 23:10:12.86369 2020-08-29 17:19:43.542571 \N \N 2048 1186 3 0 0 1.0 2020-08-07 20:11:47.254991 2020-08-07 20:14:49.40942 \N \N 2024 1165 1 0 0 0.0 2020-07-29 20:08:38.639412 2020-11-15 01:48:32.770391 \N \N 2041 1179 3 0 0 0.0 2020-08-07 19:12:02.431179 2020-10-02 21:58:37.035901 \N \N 2087 1210 3 0 0 0.0 2020-08-14 19:33:48.701313 2020-12-18 06:34:22.377316 \N \N 2043 1181 3 0 0 1.0 2020-08-07 19:25:01.414261 2020-11-19 19:31:54.165195 \N \N 2040 1178 3 0 0 0.0 2020-08-07 19:01:27.156505 2020-12-22 20:26:29.421691 \N \N 2108 1228 3 0 0 1.0 2020-08-14 22:46:20.530281 2020-12-23 03:35:54.044905 \N \N 2080 1208 3 0 0 1.0 2020-08-14 19:33:48.493642 2020-12-24 22:01:55.741629 \N \N 2066 1198 1 0 0 0.0 2020-08-14 04:46:31.151668 2020-12-22 20:21:23.256537 \N \N 2072 1204 1 0 0 1.0 2020-08-14 05:02:05.497261 2020-08-14 05:22:50.543175 \N \N 2095 1216 3 0 0 0.0 2020-08-14 20:11:13.734465 2020-10-23 21:08:49.461388 \N \N 2076 1208 1 0 0 2.0 2020-08-14 05:12:38.006442 2020-12-28 21:15:21.453112 \N \N 2089 1206 3 0 0 0.0 2020-08-14 19:33:48.760064 2020-10-09 00:48:49.755133 \N \N 2016 986 3 0 0 0.0 2020-07-24 21:40:59.814116 2020-11-06 21:59:47.770419 \N \N 2097 851 3 0 0 0.0 2020-08-14 20:56:43.633149 2020-08-14 20:56:59.726851 \N \N 2101 1221 3 0 0 0.0 2020-08-14 22:32:21.378951 2020-12-31 01:51:34.542475 \N \N 2075 1207 1 0 0 0.0 2020-08-14 05:09:52.424059 2020-10-08 18:12:40.73195 \N \N 2084 1200 3 0 0 1.0 2020-08-14 19:33:48.611708 2020-08-14 19:33:48.611708 \N \N 2086 1199 3 0 0 2.0 2020-08-14 19:33:48.672069 2020-08-14 19:33:48.672069 \N \N 2091 1212 3 0 0 1.0 2020-08-14 19:58:08.206573 2020-08-14 20:13:05.809967 \N \N 2105 1225 3 0 0 1.0 2020-08-14 22:37:34.659203 2020-10-09 00:48:49.782151 \N \N 2047 1185 3 0 0 0.0 2020-08-07 20:07:42.198098 2020-11-06 00:43:14.274121 \N \N 2115 1235 3 0 0 0.0 2020-08-14 23:23:28.194005 2020-10-23 21:08:49.487106 \N \N 2042 1180 3 0 0 1.0 2020-08-07 19:19:48.780041 2020-11-18 17:06:36.757611 \N \N 2078 1210 1 0 0 1.0 2020-08-14 05:18:28.182619 2020-10-17 16:57:51.97212 \N \N 2062 1194 3 0 0 0.0 2020-08-13 19:01:09.540409 2020-09-10 00:25:13.803642 \N \N 2106 1226 3 0 0 0.0 2020-08-14 22:43:05.271242 2020-09-23 00:54:46.234097 \N \N 2035 1175 1 0 0 0.0 2020-08-03 19:58:07.812385 2020-12-23 18:08:11.134829 \N \N 2100 1220 3 0 0 2.0 2020-08-14 22:30:53.363572 2020-08-14 22:51:28.005001 \N \N 2077 1209 1 0 0 0.0 2020-08-14 05:16:28.083385 2020-12-31 22:33:18.188998 \N \N 2102 1222 3 0 0 1.0 2020-08-14 22:33:29.265113 2020-08-14 22:51:28.06713 \N \N 2064 1196 1 0 0 0.0 2020-08-14 04:40:19.99502 2020-12-09 19:42:40.859842 \N \N 2104 1224 3 0 0 2.0 2020-08-14 22:36:32.335869 2020-08-14 22:51:28.129364 \N \N 2012 1152 1 0 0 0 2020-07-20 20:01:05.120035 2020-08-03 16:32:34.20195 \N \N 2092 1213 3 0 0 0.0 2020-08-14 20:04:49.799688 2020-08-20 23:10:48.476895 \N \N 2067 1199 1 0 0 0.0 2020-08-14 04:48:49.45392 2020-11-14 01:55:41.033848 \N \N 2049 1187 3 0 0 0.0 2020-08-07 20:14:38.395604 2020-09-24 18:58:00.100656 \N \N 2059 1180 1 0 0 1.0 2020-08-08 23:10:12.887033 2020-11-30 20:41:27.767568 \N \N 2068 1200 1 0 0 0.0 2020-08-14 04:51:30.501237 2020-11-19 18:39:17.33271 \N \N 2112 1232 3 0 0 0.0 2020-08-14 23:19:12.473001 2020-11-08 02:10:09.521334 \N \N 2099 1219 3 0 0 0.0 2020-08-14 22:29:26.284576 2021-01-15 01:07:43.272526 \N \N 2114 1234 3 0 0 1.0 2020-08-14 23:22:36.075885 2020-08-14 23:35:48.440037 \N \N 2033 1173 3 0 0 0.0 2020-08-03 19:55:10.179707 2020-12-13 20:41:13.778365 \N \N 2090 1207 3 0 0 0.0 2020-08-14 19:33:48.788492 2020-08-14 23:54:46.992947 \N \N 2056 1137 1 0 0 0.0 2020-08-08 23:09:51.950855 2020-08-18 18:08:16.503199 \N \N 2081 1196 3 0 0 0.0 2020-08-14 19:33:48.523905 2020-08-19 22:37:15.477914 \N \N 2079 1211 1 0 0 0.0 2020-08-14 05:21:06.256383 2020-10-07 21:28:39.529679 \N \N 2028 1168 3 0 0 0 2020-08-03 19:49:05.449148 2020-08-26 23:44:32.841233 \N \N 2031 1171 3 0 0 0.0 2020-08-03 19:52:45.184132 2020-10-16 18:48:15.614588 \N \N 2019 1161 3 0 0 0.0 2020-07-29 19:46:00.429989 2020-12-22 20:54:11.8093 \N \N 2074 1206 1 0 0 0.0 2020-08-14 05:06:33.994806 2020-09-02 17:28:28.39986 \N \N 2096 1217 3 0 0 0.0 2020-08-14 20:12:47.760716 2020-09-03 21:50:06.818104 \N \N 2098 1218 1 0 0 0.0 2020-08-14 21:02:00.371617 2020-09-09 17:58:11.963736 \N \N 2103 1223 3 0 0 0.0 2020-08-14 22:34:59.042729 2020-09-26 00:33:02.704593 \N \N 2053 1191 1 0 0 0.0 2020-08-07 21:35:01.641343 2020-09-15 19:33:36.715247 \N \N 2110 1230 3 0 0 0.0 2020-08-14 22:48:37.131026 2021-02-04 20:53:48.432032 \N \N 2071 1203 1 0 0 0.0 2020-08-14 04:57:40.338875 2020-12-22 20:21:23.235321 \N \N 2094 1215 3 0 0 1.0 2020-08-14 20:09:28.764877 2020-12-23 20:41:08.646054 \N \N 2088 1209 3 0 0 3.0 2020-08-14 19:33:48.731778 2020-12-24 22:28:13.925268 \N \N 2211 1040 1 0 0 1.0 2020-08-25 22:24:56.659924 2020-08-25 22:24:56.659924 \N \N 2193 1292 3 0 0 0.0 2020-08-17 20:16:56.089332 2020-12-16 19:58:22.478475 \N \N 2179 1284 3 0 0 0.0 2020-08-17 19:13:54.214133 2020-11-05 21:24:22.654693 \N \N 2141 1247 1 0 0 0.0 2020-08-15 00:31:27.903805 2021-01-25 23:28:46.960703 \N \N 2202 1260 1 0 0 1.0 2020-08-22 18:20:03.369828 2020-08-22 18:20:03.369828 \N \N 2173 1278 3 0 0 0.0 2020-08-17 19:02:59.107874 2020-08-28 19:15:56.458962 \N \N 2158 1263 1 0 0 0.0 2020-08-17 00:50:45.844142 2020-12-24 01:18:21.733756 \N \N 2123 1225 1 0 0 2.0 2020-08-15 00:14:02.924831 2020-08-15 00:14:02.924831 \N \N 2133 1224 1 0 0 2.0 2020-08-15 00:14:03.222229 2020-08-15 00:14:03.222229 \N \N 2137 1243 1 0 0 2.0 2020-08-15 00:19:06.004688 2020-08-15 00:28:07.731315 \N \N 2210 1005 3 0 0 2.0 2020-08-24 22:12:48.299522 2021-01-02 23:25:35.452563 \N \N 2166 1268 3 0 0 0.0 2020-08-17 18:57:32.466588 2020-12-27 01:05:35.247801 \N \N 2135 1230 1 0 0 0.0 2020-08-15 00:14:03.27882 2021-02-04 20:23:45.286305 \N \N 2213 1045 1 0 0 0.0 2020-08-25 22:24:56.770179 2020-12-28 22:54:08.97318 \N \N 2142 1248 1 0 0 1.0 2020-08-15 00:32:48.768487 2020-08-15 00:35:44.264839 \N \N 2143 1249 1 0 0 1.0 2020-08-15 00:33:50.318528 2020-08-15 00:35:44.28692 \N \N 2144 1250 1 0 0 1.0 2020-08-15 00:35:35.525483 2020-08-15 00:35:44.310033 \N \N 1946 475 3 0 0 0.0 2020-07-03 23:24:31.399619 2020-08-15 20:09:05.803922 \N \N 2146 682 1 0 0 4.0 2020-08-15 20:06:55.403714 2020-09-21 23:01:42.419543 \N \N 2124 1238 1 0 0 0.0 2020-08-15 00:14:02.954375 2020-12-03 21:09:28.411184 \N \N 2190 1272 3 0 0 0.0 2020-08-17 19:29:07.131893 2020-09-30 19:38:17.961219 \N \N 2150 1271 1 0 0 1.0 2020-08-17 00:03:35.287675 2020-08-17 00:30:04.12319 \N \N 2151 1272 1 0 0 1.0 2020-08-17 00:05:19.961841 2020-08-17 00:30:04.149526 \N \N 2152 1273 1 0 0 1.0 2020-08-17 00:07:06.540906 2020-11-28 23:24:22.785726 \N \N 2153 1274 1 0 0 1.0 2020-08-17 00:12:42.177204 2020-08-17 00:30:04.240853 \N \N 2154 1275 1 0 0 1.0 2020-08-17 00:22:16.804345 2020-08-17 00:30:04.264668 \N \N 2155 1276 1 0 0 1.0 2020-08-17 00:29:43.194091 2020-08-17 00:30:04.299403 \N \N 2148 1260 3 0 0 0.0 2020-08-15 23:30:59.515336 2020-08-17 01:15:34.305571 \N \N 2131 1242 1 0 0 0.0 2020-08-15 00:14:03.164056 2020-12-22 20:21:23.276506 \N \N 2163 1256 3 0 0 1.0 2020-08-17 18:57:32.398136 2020-08-17 18:57:32.398136 \N \N 2165 1267 3 0 0 1.0 2020-08-17 18:57:32.442349 2020-08-17 18:57:32.442349 \N \N 2169 1266 3 0 0 1.0 2020-08-17 18:57:32.541358 2020-08-17 18:57:32.541358 \N \N 2171 1262 3 0 0 2.0 2020-08-17 18:57:32.609418 2020-08-17 18:57:32.609418 \N \N 2119 1239 3 0 0 0.0 2020-08-14 23:31:02.071754 2020-09-26 00:43:47.411247 \N \N 2174 1279 3 0 0 1.0 2020-08-17 19:03:47.985811 2020-08-17 19:22:09.33897 \N \N 2203 1085 1 0 0 0.0 2020-08-22 18:20:03.391054 2020-12-20 00:38:45.109158 \N \N 2182 1287 3 0 0 0.0 2020-08-17 19:22:05.591094 2020-09-02 19:17:06.699956 \N \N 2177 1282 3 0 0 1.0 2020-08-17 19:10:23.13636 2020-08-17 19:22:09.413645 \N \N 2178 1283 3 0 0 1.0 2020-08-17 19:11:22.327881 2020-08-17 19:22:09.438245 \N \N 2183 1270 3 0 0 1.0 2020-08-17 19:22:09.460974 2020-08-17 19:22:09.460974 \N \N 2134 1221 1 0 0 1.0 2020-08-15 00:14:03.252419 2020-11-05 21:57:31.50946 \N \N 2204 1116 1 0 0 1.0 2020-08-22 18:20:03.411906 2020-08-22 18:20:03.411906 \N \N 2181 1286 3 0 0 1.0 2020-08-17 19:20:36.622606 2020-08-17 19:22:09.561802 \N \N 2205 1081 1 0 0 0.0 2020-08-22 18:20:03.432427 2020-09-10 19:39:00.072143 \N \N 2164 1257 3 0 0 0.0 2020-08-17 18:57:32.420013 2020-12-23 19:54:20.007302 \N \N 2187 1289 3 0 0 1.0 2020-08-17 19:26:11.138082 2020-08-17 19:29:07.186452 \N \N 2185 1274 3 0 0 0.0 2020-08-17 19:22:09.584783 2020-10-06 19:45:54.024925 \N \N 2189 1291 3 0 0 1.0 2020-08-17 19:28:58.937917 2020-08-17 19:29:07.233724 \N \N 2192 1253 3 0 0 1.0 2020-08-17 19:42:50.209152 2020-08-17 19:42:50.209152 \N \N 2017 1159 3 0 0 2.0 2020-07-29 19:21:15.660461 2021-01-23 01:34:20.68798 \N \N 2194 1261 3 0 0 1.0 2020-08-17 20:18:05.540974 2020-08-17 20:18:05.540974 \N \N 2139 1245 1 0 0 0.0 2020-08-15 00:26:35.548471 2020-12-24 22:57:17.672993 \N \N 2180 1285 3 0 0 0.0 2020-08-17 19:19:34.94198 2020-08-18 22:45:21.664431 \N \N 2167 1255 3 0 0 0.0 2020-08-17 18:57:32.492984 2020-08-18 22:45:21.691083 \N \N 2191 1269 3 0 0 0.0 2020-08-17 19:29:42.896829 2020-08-18 22:45:21.716924 \N \N 2122 1242 3 0 0 0.0 2020-08-14 23:35:42.53306 2020-08-19 22:37:15.503601 \N \N 2168 1254 3 0 0 0.0 2020-08-17 18:57:32.51844 2020-08-19 23:58:58.952008 \N \N 2145 521 1 0 0 1.0 2020-08-15 17:39:49.861403 2020-08-20 19:21:28.13024 \N \N 2195 1112 1 0 0 1.0 2020-08-22 18:20:03.189935 2020-08-22 18:20:03.189935 \N \N 2196 1035 1 0 0 1.0 2020-08-22 18:20:03.235061 2020-08-22 18:20:03.235061 \N \N 2197 830 1 0 0 1.0 2020-08-22 18:20:03.256861 2020-08-22 18:20:03.256861 \N \N 2200 1034 1 0 0 1.0 2020-08-22 18:20:03.325026 2020-08-22 18:20:03.325026 \N \N 2209 998 3 0 0 2.0 2020-08-24 22:12:48.265799 2020-08-24 22:12:48.265799 \N \N 2212 1066 1 0 0 1.0 2020-08-25 22:24:56.724613 2020-08-25 22:24:56.724613 \N \N 2121 1241 3 0 0 0.0 2020-08-14 23:33:23.889192 2020-08-26 21:59:40.14993 \N \N 2126 1240 1 0 0 0.0 2020-08-15 00:14:03.012506 2020-08-28 19:29:43.416849 \N \N 2206 1004 3 0 0 0.0 2020-08-24 22:03:43.988652 2021-02-08 21:44:07.805001 \N \N 2157 1259 1 0 0 1.0 2020-08-17 00:50:45.821557 2020-11-28 23:24:22.76248 \N \N 2207 695 3 0 0 0.0 2020-08-24 22:12:21.017312 2020-08-28 21:20:16.475238 \N \N 2176 1281 3 0 0 0.0 2020-08-17 19:07:14.439344 2020-09-01 22:05:59.78047 \N \N 2188 1290 3 0 0 0.0 2020-08-17 19:27:37.350708 2020-10-06 00:29:44.986525 \N \N 2214 1293 3 0 0 0.0 2020-08-27 19:25:04.049775 2020-10-16 01:35:16.842725 \N \N 2125 1233 1 0 0 0.0 2020-08-15 00:14:02.982628 2020-09-10 23:10:44.131088 \N \N 2159 1277 1 0 0 0.0 2020-08-17 01:52:28.705419 2020-09-12 22:19:25.583583 \N \N 2199 1070 1 0 0 0.0 2020-08-22 18:20:03.303239 2020-09-18 22:33:40.298275 \N \N 2208 1012 3 0 0 0.0 2020-08-24 22:12:48.247846 2020-10-03 00:11:20.696369 \N \N 2147 1251 3 0 0 0.0 2020-08-15 20:22:01.42554 2020-12-02 19:03:15.905482 \N \N 2201 1076 1 0 0 0.0 2020-08-22 18:20:03.345321 2020-10-15 18:57:46.671 \N \N 2161 1252 3 0 0 0.0 2020-08-17 18:57:32.353419 2020-09-22 23:27:44.624604 \N \N 2149 1270 1 0 0 0.0 2020-08-17 00:01:29.047764 2020-09-23 22:05:31.464247 \N \N 2136 1236 1 0 0 0.0 2020-08-15 00:14:03.305835 2020-10-26 20:58:17.270483 \N \N 2198 705 1 0 0 1.0 2020-08-22 18:20:03.280053 2020-09-30 22:58:46.973863 \N \N 2184 1271 3 0 0 1.0 2020-08-17 19:22:09.488684 2020-09-30 20:30:53.504579 \N \N 2175 1280 3 0 0 0.0 2020-08-17 19:04:48.861554 2020-10-15 21:19:10.064937 \N \N 2170 1264 3 0 0 0.0 2020-08-17 18:57:32.582983 2020-10-07 23:14:15.072322 \N \N 2160 1265 3 0 0 0.0 2020-08-17 18:57:32.293661 2020-10-07 23:15:00.441469 \N \N 2128 1232 1 0 0 1.0 2020-08-15 00:14:03.073415 2020-10-08 18:12:40.68904 \N \N 2172 1258 3 0 0 0.0 2020-08-17 18:57:32.631723 2020-10-14 23:07:44.002989 \N \N 2127 1234 1 0 0 1.0 2020-08-15 00:14:03.040878 2020-11-10 01:11:09.298363 \N \N 2216 1295 3 0 0 0 2020-08-27 19:27:56.771085 2020-10-16 01:34:56.752297 \N \N 2117 1237 3 0 0 0.0 2020-08-14 23:27:24.569439 2020-10-20 22:36:49.031608 \N \N 2118 1238 3 0 0 0.0 2020-08-14 23:29:13.392567 2020-12-15 01:20:00.417531 \N \N 2120 1240 3 0 0 0.0 2020-08-14 23:32:15.043402 2021-01-19 02:57:56.122647 \N \N 2186 1288 3 0 0 0.0 2020-08-17 19:23:45.145653 2020-12-23 17:43:36.548457 \N \N 2130 1237 1 0 0 0.0 2020-08-15 00:14:03.134764 2020-12-22 20:21:23.20293 \N \N 2132 1239 1 0 0 0.0 2020-08-15 00:14:03.193376 2021-01-29 22:22:14.600936 \N \N 2162 1263 3 0 0 0.0 2020-08-17 18:57:32.376369 2020-12-24 19:29:19.029567 \N \N 2116 1236 3 0 0 0.0 2020-08-14 23:25:14.639519 2020-12-24 22:26:56.654899 \N \N 2140 1246 1 0 0 1.0 2020-08-15 00:27:58.565796 2021-01-31 00:52:32.907101 \N \N 2156 1269 1 0 0 0.0 2020-08-17 00:30:04.206659 2020-12-29 19:19:26.94829 \N \N 2107 1227 3 0 0 1.0 2020-08-14 22:45:05.267332 2020-12-30 22:33:38.872531 \N \N 2217 1296 3 0 0 1.0 2020-08-27 19:29:32.454967 2020-08-27 19:34:50.279188 \N \N 2255 1331 1 0 0 4.0 2020-09-03 23:35:37.875508 2020-10-03 22:45:48.935177 \N \N 2286 1159 1 0 0 1.0 2020-09-07 16:50:11.854982 2021-02-02 21:44:09.569319 \N \N 2221 1300 3 0 0 1.0 2020-08-27 19:34:41.028648 2021-01-07 01:00:50.359808 \N \N 2243 1319 1 0 0 0 2020-09-03 22:19:18.390356 2020-09-03 22:52:51.717654 \N \N 2282 1338 3 0 0 2.0 2020-09-05 22:37:58.845927 2020-10-16 01:22:29.255181 \N \N 2219 1298 3 0 0 0.0 2020-08-27 19:32:23.481436 2020-12-23 03:35:26.460856 \N \N 2273 1325 3 0 0 0.0 2020-09-05 20:03:07.373649 2020-11-06 22:00:07.288234 \N \N 2308 431 1 0 0 1.0 2020-09-21 19:34:17.964461 2021-02-28 01:49:53.665342 \N \N 2272 1322 3 0 0 3.0 2020-09-05 20:03:07.347774 2020-12-22 00:28:30.934027 \N \N 2277 1329 3 0 0 4.0 2020-09-05 20:03:07.465239 2020-10-23 21:08:49.408224 \N \N 2227 1301 3 0 0 0.0 2020-09-01 18:38:11.891925 2020-09-24 18:23:40.793407 \N \N 2248 1324 1 0 0 2.0 2020-09-03 22:44:19.178105 2021-01-23 22:34:31.847586 \N \N 2223 1302 1 0 0 0.0 2020-08-27 19:52:44.278832 2020-10-17 19:26:20.26245 \N \N 2287 1300 1 0 0 1.0 2020-09-08 00:06:38.286257 2020-12-26 22:33:08.803322 \N \N 2304 324 1 0 0 4.0 2020-09-21 19:34:17.695902 2020-09-21 19:34:17.695902 \N \N 2284 1337 3 0 0 0.0 2020-09-05 22:37:58.918101 2020-11-06 22:00:13.778585 \N \N 2231 1307 1 0 0 3.0 2020-09-03 20:52:01.428691 2020-10-18 00:13:24.965767 \N \N 2232 1308 1 0 0 6.0 2020-09-03 20:54:06.709575 2020-09-03 21:00:27.908567 \N \N 2238 1314 1 0 0 0.0 2020-09-03 21:46:59.488647 2020-10-18 00:05:30.999583 \N \N 2281 1334 3 0 0 3.0 2020-09-05 20:03:07.596864 2020-10-10 23:12:22.273134 \N \N 2251 1327 1 0 0 7.0 2020-09-03 23:17:20.834143 2020-11-30 20:02:33.958014 \N \N 2237 1313 1 0 0 6.0 2020-09-03 21:38:59.194018 2020-09-03 22:10:09.24498 \N \N 2230 1306 1 0 0 0.0 2020-09-03 20:47:13.755775 2020-10-05 21:34:54.473402 \N \N 2265 1313 3 0 0 2.0 2020-09-05 20:03:07.171848 2020-10-30 01:21:47.848909 \N \N 1836 1126 3 0 0 3.0 2020-05-04 00:44:51.716579 2021-01-10 20:36:38.2511 \N \N 2242 1318 1 0 0 1.0 2020-09-03 22:02:25.39808 2020-10-12 17:16:07.359203 \N \N 2241 1317 1 0 0 0.0 2020-09-03 21:57:04.993143 2020-10-31 01:30:08.847179 \N \N 2297 1191 3 0 0 1.0 2020-09-19 21:44:58.119812 2020-09-19 21:44:58.119812 \N \N 2215 1294 3 0 0 4.0 2020-08-27 19:26:42.310756 2021-01-24 01:06:24.544962 \N \N 2260 1336 1 0 0 5.0 2020-09-03 23:56:05.93295 2020-09-26 23:09:10.396801 \N \N 2305 611 1 0 0 1.0 2020-09-21 19:34:17.786361 2020-09-21 19:34:17.786361 \N \N 2280 1332 3 0 0 5.0 2020-09-05 20:03:07.562304 2021-01-19 00:05:37.90433 \N \N 2228 1304 1 0 0 3.0 2020-09-03 20:34:31.471151 2021-01-08 02:10:04.52372 \N \N 2249 1325 1 0 0 0.0 2020-09-03 22:48:56.220188 2020-12-03 20:23:01.427221 \N \N 1018 324 3 0 0 0.0 2019-09-21 00:04:06.891873 2020-09-19 21:47:35.656123 \N \N 2311 279 1 0 0 3.0 2020-09-21 19:34:18.026229 2021-01-23 22:34:31.705777 \N \N 2236 1312 1 0 0 0.0 2020-09-03 21:35:07.505156 2020-10-17 19:26:20.209121 \N \N 2233 1309 1 0 0 3.0 2020-09-03 20:56:32.28855 2020-10-27 23:23:13.696902 \N \N 2264 1312 3 0 0 1.0 2020-09-05 20:03:07.146964 2020-10-24 01:18:20.381761 \N \N 2258 1334 1 0 0 1.0 2020-09-03 23:51:41.429049 2021-01-09 01:15:28.624334 \N \N 2283 1311 3 0 0 0.0 2020-09-05 22:37:58.887706 2020-11-06 22:13:45.012689 \N \N 2289 1341 3 0 0 6.0 2020-09-08 00:43:51.381251 2020-09-08 00:43:56.372424 \N \N 2290 1342 1 0 0 0.0 2020-09-08 16:31:20.101064 2020-09-08 16:38:19.813207 \N \N 2298 1348 1 0 0 0.0 2020-09-19 21:57:55.191925 2020-12-04 21:03:50.286576 \N \N 2220 1299 3 0 0 0.0 2020-08-27 19:33:38.21157 2020-09-29 20:34:08.832544 \N \N 2268 1316 3 0 0 0.0 2020-09-05 20:03:07.248761 2020-12-04 18:23:49.582523 \N \N 1544 638 3 0 0 0.0 2020-01-24 23:48:43.796755 2020-09-19 21:51:45.49445 \N \N 2276 1328 3 0 0 4.0 2020-09-05 20:03:07.441899 2020-10-13 21:28:32.443487 \N \N 2292 1295 1 0 0 0.0 2020-09-15 21:37:43.12701 2020-10-10 00:28:08.321684 \N \N 2240 1316 1 0 0 1.0 2020-09-03 21:52:28.23102 2020-12-04 18:25:06.041356 \N \N 2295 1346 3 0 0 0.0 2020-09-19 00:22:45.088773 2020-09-19 00:29:27.792962 \N \N 2245 1321 1 0 0 2.0 2020-09-03 22:26:21.168732 2020-12-18 01:12:34.949175 \N \N 2226 1294 1 0 0 2.0 2020-08-27 19:56:19.600756 2020-12-30 17:51:12.228044 \N \N 2224 1303 1 0 0 0.0 2020-08-27 19:54:27.77325 2020-09-09 16:49:08.131959 \N \N 2274 1326 3 0 0 0.0 2020-09-05 20:03:07.396165 2020-11-06 21:56:51.474757 \N \N 2301 1350 3 0 0 0.0 2020-09-21 18:30:31.575265 2020-09-21 23:29:05.418066 \N \N 2239 1315 1 0 0 1.0 2020-09-03 21:49:54.709767 2020-10-14 18:45:14.164641 \N \N 2296 1347 3 0 0 0.0 2020-09-19 00:23:31.260696 2020-09-19 00:29:27.817094 \N \N 2294 1345 3 0 0 1.0 2020-09-19 00:20:58.932466 2020-09-19 00:29:27.842922 499.00 \N 2229 1305 1 0 0 2.0 2020-09-03 20:41:12.793416 2020-10-12 23:12:46.037552 \N \N 2225 1293 1 0 0 0 2020-08-27 19:56:19.554876 2020-09-15 22:01:56.516255 \N \N 2279 1331 3 0 0 4.0 2020-09-05 20:03:07.528036 2020-09-11 22:22:58.353345 \N \N 2285 1335 3 0 0 1.0 2020-09-05 22:40:33.497046 2020-09-15 22:30:00.228856 \N \N 2266 1314 3 0 0 1.0 2020-09-05 20:03:07.196252 2020-12-31 01:54:37.102338 \N \N 2293 1344 3 0 0 1.0 2020-09-19 00:19:40.660657 2020-09-19 00:48:53.524508 \N \N 2267 1315 3 0 0 0.0 2020-09-05 20:03:07.224318 2020-10-16 23:45:13.492123 \N \N 2218 1297 3 0 0 1.0 2020-08-27 19:31:25.048923 2020-12-20 06:09:48.538821 \N \N 2278 1330 3 0 0 1.0 2020-09-05 20:03:07.492435 2021-01-19 20:10:30.320991 \N \N 2247 1323 1 0 0 0.0 2020-09-03 22:41:53.02502 2020-10-18 00:13:12.623147 \N \N 2302 1351 3 0 0 0 2020-09-21 18:35:14.808457 2020-09-21 18:36:17.566945 \N \N 2252 1328 1 0 0 2.0 2020-09-03 23:20:07.786962 2020-10-09 23:22:47.147906 \N \N 2299 1299 1 0 0 0.0 2020-09-19 21:58:06.221829 2020-09-19 21:58:58.224463 \N \N 2222 1301 1 0 0 0.0 2020-08-27 19:50:37.15738 2020-09-24 17:10:18.989951 \N \N 2263 1339 1 0 0 0.0 2020-09-05 16:50:41.634222 2020-10-18 00:12:21.752649 \N \N 2306 283 1 0 0 3.0 2020-09-21 19:34:17.867532 2020-09-21 19:34:17.867532 \N \N 2259 1335 1 0 0 0.0 2020-09-03 23:54:23.304955 2020-09-25 00:52:33.292108 \N \N 2303 483 1 0 0 1.0 2020-09-21 19:34:17.513415 2020-09-21 19:34:17.513415 \N \N 2310 280 1 0 0 1.0 2020-09-21 19:34:18.004576 2020-09-21 19:34:18.004576 \N \N 2313 534 1 0 0 1.0 2020-09-21 19:34:18.10389 2020-09-21 19:34:18.10389 \N \N 2314 635 1 0 0 6.0 2020-09-21 19:34:27.747194 2020-09-21 19:34:27.747194 \N \N 2315 1101 1 0 0 7.0 2020-09-21 19:34:46.119063 2020-09-21 19:34:46.119063 \N \N 2270 1320 3 0 0 2.0 2020-09-05 20:03:07.297394 2020-09-29 20:41:53.889367 \N \N 2288 1340 3 0 0 5.0 2020-09-08 00:43:14.171403 2020-09-25 18:25:28.319637 \N \N 2262 1338 1 0 0 3.0 2020-09-05 16:47:02.688793 2020-10-17 20:12:08.838388 \N \N 2250 1326 1 0 0 2.0 2020-09-03 22:51:39.630859 2020-11-06 22:03:31.695431 \N \N 2291 1343 3 0 0 0.0 2020-09-10 01:04:12.834492 2020-11-06 21:59:20.831865 \N \N 2254 1330 1 0 0 0.0 2020-09-03 23:28:38.933613 2021-01-19 20:04:00.762666 \N \N 2256 1332 1 0 0 0.0 2020-09-03 23:38:11.25024 2020-12-31 00:57:43.479382 \N \N 2246 1322 1 0 0 4.0 2020-09-03 22:37:55.472783 2021-01-09 21:37:50.661771 \N \N 2269 1317 3 0 0 5.0 2020-09-05 20:03:07.273624 2020-10-08 23:58:00.484438 \N \N 2300 1349 3 0 0 0.0 2020-09-21 18:27:12.848107 2020-12-01 00:55:07.367708 \N \N 2275 1327 3 0 0 7.0 2020-09-05 20:03:07.418721 2020-11-05 22:58:00.807757 \N \N 2257 1333 1 0 0 5.0 2020-09-03 23:41:20.290021 2020-12-13 00:35:44.211812 \N \N 2271 1321 3 0 0 0.0 2020-09-05 20:03:07.321612 2021-01-29 23:47:21.086779 \N \N 2253 1329 1 0 0 2.0 2020-09-03 23:22:11.428246 2020-11-26 22:58:24.095938 \N \N 2244 1320 1 0 0 0.0 2020-09-03 22:23:09.34284 2021-01-23 22:34:31.824052 \N \N 2307 415 1 0 0 5.0 2020-09-21 19:34:17.908047 2021-02-12 22:52:47.204169 \N \N 2312 291 1 0 0 0.0 2020-09-21 19:34:18.047462 2021-02-13 22:33:39.821501 \N \N 2309 432 1 0 0 1.0 2020-09-21 19:34:17.984488 2021-02-14 01:07:18.042785 \N \N 2261 1337 1 0 0 1.0 2020-09-04 23:45:12.303953 2021-02-18 22:24:55.751202 \N \N 2316 1104 1 0 0 2.0 2020-09-21 19:34:46.141949 2020-09-21 19:34:46.141949 \N \N 2317 1103 1 0 0 2.0 2020-09-21 19:34:46.164993 2020-09-21 19:34:46.164993 \N \N 2318 370 1 0 0 2.0 2020-09-21 19:34:46.191574 2020-09-21 19:34:46.191574 \N \N 2319 386 1 0 0 4.0 2020-09-21 19:34:46.214425 2020-09-21 19:34:46.214425 \N \N 2320 1102 1 0 0 1.0 2020-09-21 19:34:46.237519 2020-09-21 19:34:46.237519 \N \N 2321 371 1 0 0 1.0 2020-09-21 19:34:46.261249 2020-09-21 19:34:46.261249 \N \N 2322 377 1 0 0 2.0 2020-09-21 19:34:46.283941 2020-09-21 19:34:46.283941 \N \N 2324 375 1 0 0 4.0 2020-09-21 19:34:46.329194 2020-09-21 19:34:46.329194 \N \N 2325 378 1 0 0 1.0 2020-09-21 19:34:46.350722 2020-09-21 19:34:46.350722 \N \N 2326 374 1 0 0 3.0 2020-09-21 19:34:46.373625 2020-09-21 19:34:46.373625 \N \N 2327 1351 1 0 0 1.0 2020-09-22 19:47:43.005995 2020-09-22 19:47:43.005995 \N \N 2328 347 1 0 0 1.0 2020-09-22 19:48:50.658526 2020-09-22 19:48:50.658526 \N \N 2398 1377 3 0 0 1.0 2020-10-26 01:50:57.167094 2020-12-31 22:37:07.774697 \N \N 2331 1354 1 0 0 0.0 2020-09-22 20:17:02.836547 2020-12-23 18:08:25.392596 \N \N 2329 1352 1 0 0 0.0 2020-09-22 20:14:08.014295 2020-12-23 18:09:00.826885 \N \N 2334 996 3 0 0 4.0 2020-09-22 20:47:19.359322 2020-09-22 20:47:19.359322 \N \N 2333 983 3 0 0 3 2020-09-22 20:47:19.320426 2020-09-22 20:47:19.320426 \N \N 2409 1400 3 0 0 0.0 2020-10-26 02:14:01.267081 2020-11-06 22:51:52.436077 \N \N 2323 376 1 0 0 1.0 2020-09-21 19:34:46.306233 2020-09-23 22:48:24.130282 \N \N 2335 1139 1 0 0 0.0 2020-09-25 00:01:34.867015 2020-09-25 00:02:11.382985 \N \N 2338 1355 1 0 0 2.0 2020-09-28 19:23:25.094057 2020-10-20 17:42:38.551272 \N \N 2386 1381 1 0 0 1.0 2020-10-25 21:35:35.433955 2020-10-25 23:33:38.697792 \N \N 2235 1311 1 0 0 4.0 2020-09-03 21:14:05.710879 2020-11-06 23:17:38.095284 \N \N 2410 1401 3 0 0 0.0 2020-10-26 02:17:36.655499 2020-11-02 21:11:47.14109 \N \N 2389 1384 1 0 0 0.0 2020-10-25 22:58:22.416979 2020-12-22 21:05:21.852345 \N \N 2408 1399 3 0 0 0.0 2020-10-26 02:10:14.874917 2020-11-21 21:09:45.411214 \N \N 2344 1297 1 0 0 1.0 2020-10-02 21:32:53.722444 2020-10-02 21:56:12.301966 \N \N 2345 1176 3 0 0 0.0 2020-10-03 00:17:33.474131 2020-10-03 00:18:20.93378 \N \N 2348 488 1 0 0 3.0 2020-10-04 00:33:45.548441 2020-10-04 00:33:45.548441 \N \N 2347 704 1 0 0 3.0 2020-10-04 00:33:31.498707 2020-10-04 00:37:52.427324 \N \N 1975 1139 3 0 0 0.0 2020-07-04 20:53:34.322961 2020-10-04 01:04:53.049781 \N \N 2351 1182 1 0 0 1.0 2020-10-05 21:00:30.266602 2020-10-05 21:00:30.266602 \N \N 2349 1360 1 0 0 1.0 2020-10-05 21:00:25.3435 2020-10-05 21:00:30.296838 \N \N 2352 1360 3 0 0 1.0 2020-10-05 21:00:57.50269 2020-10-05 21:00:57.50269 \N \N 2399 1381 3 0 0 0.0 2020-10-26 01:50:57.195208 2020-11-08 02:10:09.495352 \N \N 144 146 1 0 0 1.0 2019-02-03 00:00:00 2020-10-07 16:23:46.069399 \N \N 2336 1355 3 0 0 0.0 2020-09-28 19:09:10.125927 2021-02-15 21:06:13.329945 \N \N 2381 1377 1 0 0 0.0 2020-10-25 21:01:46.695607 2021-02-07 00:52:15.849962 \N \N 2353 1361 3 0 0 0.0 2020-10-05 22:21:22.17487 2020-12-22 21:23:29.005947 \N \N 2354 1362 3 0 0 0.0 2020-10-09 20:45:22.495308 2020-10-09 23:56:18.053218 \N \N 2388 1383 1 0 0 1.0 2020-10-25 21:51:25.038822 2020-10-25 23:33:38.749732 \N \N 2339 1356 1 0 0 2.0 2020-09-28 19:23:25.136435 2020-10-10 21:02:09.747386 \N \N 2366 1369 3 0 0 1.0 2020-10-22 18:47:14.76681 2020-10-22 18:52:40.957882 \N \N 2356 1363 3 0 0 2.0 2020-10-13 18:33:23.545579 2020-10-13 18:34:14.486815 \N \N 2391 1386 1 0 0 0.0 2020-10-25 23:07:56.754371 2020-12-07 22:04:44.165536 \N \N 2357 1364 3 0 0 0.0 2020-10-14 23:40:42.171332 2020-10-14 23:42:03.445367 \N \N 2346 1174 3 0 0 0.0 2020-10-03 00:17:33.518875 2020-12-22 21:23:29.028708 \N \N 2371 1370 1 0 0 0.0 2020-10-23 00:20:57.913901 2020-10-24 18:18:09.291847 \N \N 2364 1367 3 0 0 0.0 2020-10-22 18:41:13.152216 2021-02-03 21:43:25.319722 \N \N 2403 1394 3 0 0 0.0 2020-10-26 01:55:31.447648 2021-01-05 01:42:09.397813 \N \N 2394 1389 1 0 0 0.0 2020-10-25 23:25:54.126061 2020-12-07 23:32:15.312802 \N \N 2369 1372 1 0 0 0.0 2020-10-23 00:15:38.167743 2020-12-29 19:34:16.320523 \N \N 2358 1365 3 0 0 0.0 2020-10-15 01:21:46.1757 2020-10-15 01:32:01.968201 \N \N 2332 978 3 0 0 0.0 2020-09-22 20:47:19.275634 2020-12-03 01:56:01.905272 \N \N 2384 1380 1 0 0 0.0 2020-10-25 21:24:22.634275 2020-12-17 21:16:26.83299 \N \N 2359 1307 3 0 0 3.0 2020-10-18 18:37:39.20614 2020-10-18 18:37:39.20614 \N \N 2360 1324 3 0 0 2.0 2020-10-18 18:37:39.250481 2020-10-18 18:37:39.250481 \N \N 2361 1323 3 0 0 5.0 2020-10-18 18:37:39.279514 2020-10-18 18:37:39.279514 \N \N 2340 1339 3 0 0 2.0 2020-09-29 19:47:59.192158 2020-10-18 18:37:39.307384 \N \N 2370 1369 1 0 0 1.0 2020-10-23 00:20:57.877729 2020-10-23 00:20:57.877729 \N \N 2383 1379 1 0 0 0.0 2020-10-25 21:14:14.381112 2020-12-26 22:22:47.98004 \N \N 2376 10 3 0 0 4.0 2020-10-23 00:25:15.47593 2020-10-23 00:25:15.47593 \N \N 2387 1382 1 0 0 0.0 2020-10-25 21:48:24.779036 2020-10-30 19:43:10.911333 \N \N 2392 1387 1 0 0 1.0 2020-10-25 23:16:36.488584 2020-10-25 23:33:38.860651 \N \N 2367 1370 3 0 0 0.0 2020-10-22 18:48:19.737432 2020-11-28 02:13:48.718852 \N \N 2395 1390 1 0 0 0.0 2020-10-25 23:27:37.253034 2020-12-16 19:32:49.970027 \N \N 2380 1376 3 0 0 0 2020-10-23 18:54:27.448528 2020-10-23 18:54:36.512884 \N \N 2382 1378 1 0 0 0.0 2020-10-25 21:11:14.786247 2020-12-09 22:25:58.325523 \N \N 2330 1353 1 0 0 0.0 2020-09-22 20:15:34.535638 2020-12-23 18:07:58.81954 \N \N 2373 1361 1 0 0 0.0 2020-10-23 00:20:57.988525 2020-12-14 19:06:16.645068 \N \N 2404 1395 3 0 0 1.0 2020-10-26 01:59:08.1732 2020-11-14 19:43:41.13457 \N \N 2385 1223 1 0 0 1.0 2020-10-25 21:24:49.212176 2020-10-25 21:24:49.212176 \N \N 2396 1391 1 0 0 0.0 2020-10-25 23:33:26.802768 2020-12-02 18:21:10.387686 \N \N 2355 1357 1 0 0 0.0 2020-10-09 20:47:25.427158 2020-12-31 22:50:48.655095 \N \N 2397 1392 3 0 0 0.0 2020-10-26 01:39:43.800666 2020-12-16 19:58:22.417323 \N \N 2337 1356 3 0 0 1.0 2020-09-28 19:10:47.396805 2020-12-23 03:39:11.038771 \N \N 2390 1385 1 0 0 0.0 2020-10-25 23:00:37.739719 2020-11-12 19:43:00.304596 \N \N 2341 1357 3 0 0 5.0 2020-10-02 19:02:44.585486 2020-12-31 03:15:28.763543 \N \N 2407 1398 3 0 0 0.0 2020-10-26 02:06:36.654336 2020-11-11 22:14:22.413559 \N \N 2350 1358 1 0 0 0.0 2020-10-05 21:00:30.224928 2021-01-12 18:59:40.431849 \N \N 2378 1374 3 0 0 11.0 2020-10-23 18:51:52.101411 2021-01-24 20:19:41.743501 \N \N 2411 1402 3 0 0 4.0 2020-10-26 21:51:12.773235 2020-12-31 03:24:29.6406 \N \N 2375 1372 3 0 0 2.0 2020-10-23 00:23:37.940649 2021-01-16 20:04:51.182928 \N \N 2362 959 1 0 0 0.0 2020-10-22 18:29:33.963589 2020-11-12 01:02:27.300414 \N \N 2343 1359 3 0 0 0 2020-10-02 19:29:29.233211 2020-10-02 19:40:29.512758 \N \N 2342 1358 3 0 0 2 2020-10-02 19:22:24.547653 2020-10-02 19:40:29.486521 \N \N 2365 1368 3 0 0 0.0 2020-10-22 18:45:14.721146 2020-12-17 03:08:13.463331 \N \N 2414 1405 3 0 0 0.0 2020-10-27 19:34:42.726439 2021-01-01 00:14:36.825125 \N \N 2402 1393 3 0 0 1.0 2020-10-26 01:53:02.269078 2020-12-04 18:41:04.49159 \N \N 2374 1371 1 0 0 0.0 2020-10-23 00:20:58.024516 2021-01-29 23:04:13.108118 \N \N 2379 1375 3 0 0 3.0 2020-10-23 18:53:18.36461 2021-02-03 01:18:21.17024 \N \N 2372 1366 1 0 0 0.0 2020-10-23 00:20:57.950705 2020-11-13 19:46:38.584756 \N \N 2368 1371 3 0 0 2.0 2020-10-22 23:48:04.958083 2021-01-19 02:57:56.090804 \N \N 2129 1229 1 0 0 0.0 2020-08-15 00:14:03.105876 2020-12-26 22:22:48.024964 \N \N 2363 1366 3 0 0 1.0 2020-10-22 18:38:08.15278 2020-12-20 06:18:08.001516 \N \N 2393 1388 1 0 0 0.0 2020-10-25 23:23:37.766956 2020-11-18 18:17:22.515102 \N \N 2401 1380 3 0 0 0.0 2020-10-26 01:50:57.254276 2020-12-14 22:02:48.014536 \N \N 2234 1310 1 0 0 1.0 2020-09-03 20:59:39.412334 2021-02-13 01:31:39.029693 \N \N 2400 1378 3 0 0 0.0 2020-10-26 01:50:57.225705 2020-12-22 23:52:29.800156 \N \N 2377 1373 3 0 0 4.0 2020-10-23 01:00:35.662829 2020-12-25 00:09:58.912338 \N \N 2405 1396 3 0 0 0.0 2020-10-26 02:01:40.910518 2020-12-30 23:30:48.867722 \N \N 2406 1397 3 0 0 0.0 2020-10-26 02:04:39.879183 2021-01-15 01:07:43.217081 \N \N 2412 1403 3 0 0 1.0 2020-10-27 19:30:04.475056 2020-10-27 19:45:18.116539 \N \N 2413 1404 3 0 0 1.0 2020-10-27 19:31:43.563198 2020-10-27 19:45:18.167446 \N \N 2415 1406 3 0 0 1.0 2020-10-27 19:35:47.334264 2020-10-27 19:45:18.232345 \N \N 2416 1407 3 0 0 1.0 2020-10-27 19:37:09.961251 2020-10-27 19:45:18.264898 \N \N 2417 1408 3 0 0 1.0 2020-10-27 19:38:38.789794 2020-10-27 19:45:18.298501 \N \N 2418 1409 3 0 0 1.0 2020-10-27 19:40:16.550364 2020-10-27 19:45:18.333203 \N \N 2419 1410 3 0 0 1.0 2020-10-27 19:41:38.898898 2020-10-27 19:45:18.364581 \N \N 2420 1411 3 0 0 1.0 2020-10-27 19:43:29.305864 2020-10-27 19:45:18.393582 \N \N 2479 1461 1 0 0 0.0 2020-10-28 20:42:49.455759 2020-11-26 21:58:09.83345 \N \N 2422 1413 1 0 0 1.0 2020-10-27 21:14:39.201923 2020-10-27 21:18:46.459166 \N \N 2423 1414 1 0 0 1.0 2020-10-27 21:16:01.514066 2020-10-27 21:18:46.483055 \N \N 2499 1476 1 0 0 0.0 2020-10-29 23:12:37.347986 2020-12-23 18:07:49.88597 \N \N 2435 1426 3 0 0 0.0 2020-10-27 22:14:04.894734 2021-01-06 00:07:40.060466 \N \N 2426 1417 3 0 0 1.0 2020-10-27 21:32:30.599312 2020-10-27 21:42:41.944778 \N \N 2472 1455 1 0 0 0.0 2020-10-28 19:57:38.043626 2020-12-18 00:03:50.618547 \N \N 2428 1419 3 0 0 1.0 2020-10-27 21:36:42.45553 2020-10-27 21:42:41.987433 \N \N 2429 1420 3 0 0 1.0 2020-10-27 21:39:15.132578 2020-10-27 21:42:42.008356 \N \N 2451 1441 3 0 0 0.0 2020-10-27 23:20:15.886192 2020-12-31 20:36:04.989427 \N \N 2431 1422 1 0 0 1.0 2020-10-27 21:53:44.854516 2020-10-27 21:57:02.189397 \N \N 2473 1456 1 0 0 0.0 2020-10-28 19:59:04.801113 2020-12-28 21:18:34.95293 \N \N 2455 1445 3 0 0 0.0 2020-10-27 23:28:01.577965 2020-12-23 17:43:36.570783 \N \N 2434 1425 3 0 0 1.0 2020-10-27 22:12:47.44633 2020-10-27 22:21:11.266557 \N \N 2450 1440 3 0 0 0.0 2020-10-27 23:19:12.499865 2021-01-29 19:08:18.03346 \N \N 2512 1484 1 0 0 3.0 2020-11-02 18:55:56.009987 2021-01-07 21:48:45.295774 \N \N 2439 1430 3 0 0 1.0 2020-10-27 22:20:18.486692 2020-10-27 22:21:11.416793 \N \N 2440 1431 3 0 0 1.0 2020-10-27 22:40:11.018967 2020-10-27 22:56:27.832649 \N \N 2441 1432 3 0 0 1.0 2020-10-27 22:41:40.551039 2020-10-27 22:56:27.854663 \N \N 2489 1464 1 0 0 0.0 2020-10-29 20:53:15.256055 2020-12-25 00:18:30.633836 \N \N 2443 1434 3 0 0 1.0 2020-10-27 22:44:29.341794 2020-10-27 22:56:27.894974 \N \N 2444 1435 3 0 0 1.0 2020-10-27 22:47:54.343327 2020-10-27 22:56:27.922006 \N \N 2488 1465 1 0 0 0.0 2020-10-29 20:53:15.20937 2020-11-07 00:25:55.563387 \N \N 2427 1418 3 0 0 0.0 2020-10-27 21:34:27.097327 2021-01-29 23:47:21.10926 \N \N 2447 1438 3 0 0 1.0 2020-10-27 22:54:26.933916 2020-10-27 22:56:27.988609 \N \N 2449 1439 3 0 0 1.0 2020-10-27 23:17:45.9229 2020-10-27 23:53:06.250979 \N \N 2446 1437 3 0 0 0.0 2020-10-27 22:52:50.151206 2021-01-29 19:08:46.713059 \N \N 2498 1475 1 0 0 5.0 2020-10-29 23:03:07.519349 2020-12-31 21:07:32.875394 \N \N 2452 1442 3 0 0 1.0 2020-10-27 23:21:37.313641 2020-10-27 23:53:06.325591 \N \N 2425 1416 3 0 0 0.0 2020-10-27 21:30:23.49924 2020-12-15 01:20:00.445812 \N \N 2433 1424 1 0 0 0.0 2020-10-27 21:56:51.303073 2020-12-22 21:05:21.805554 \N \N 2501 1478 1 0 0 0.0 2020-10-29 23:15:06.942993 2020-12-23 18:07:30.991938 \N \N 2456 1446 3 0 0 1.0 2020-10-27 23:30:00.832792 2020-10-27 23:53:06.421222 \N \N 2457 1447 3 0 0 1.0 2020-10-27 23:31:47.431018 2020-10-27 23:53:06.44496 \N \N 2458 1448 3 0 0 1.0 2020-10-28 00:14:25.638204 2020-10-28 00:14:28.773685 \N \N 2459 1433 1 0 0 1.0 2020-10-28 00:24:00.088523 2020-10-28 00:24:00.088523 \N \N 2460 1445 1 0 0 1.0 2020-10-28 00:24:00.11506 2020-10-28 00:24:00.11506 \N \N 2461 1448 1 0 0 1.0 2020-10-28 00:24:00.142159 2020-10-28 00:24:00.142159 \N \N 2462 1438 1 0 0 1.0 2020-10-28 00:24:00.170091 2020-10-28 00:24:00.170091 \N \N 2466 1449 1 0 0 1.0 2020-10-28 19:39:12.20282 2020-10-28 20:01:12.238371 \N \N 2467 1450 1 0 0 1.0 2020-10-28 19:41:39.525924 2020-10-28 20:01:12.272688 \N \N 2468 1451 1 0 0 1.0 2020-10-28 19:44:25.083314 2020-10-28 20:01:12.295285 \N \N 2469 1452 1 0 0 1.0 2020-10-28 19:47:33.615814 2020-10-28 20:01:12.317319 \N \N 2509 1482 1 0 0 3.0 2020-11-01 02:08:12.052451 2020-12-18 23:08:12.765151 \N \N 2471 1454 1 0 0 1.0 2020-10-28 19:55:48.296913 2020-10-28 20:01:12.362795 \N \N 2485 1467 3 0 0 0.0 2020-10-29 20:46:39.547873 2020-12-20 06:19:19.779085 \N \N 2430 1421 3 0 0 0.0 2020-10-27 21:40:35.981146 2020-12-30 23:26:50.800268 \N \N 2474 1457 1 0 0 1.0 2020-10-28 20:24:15.77742 2020-10-28 20:32:36.839571 \N \N 2475 1458 1 0 0 1.0 2020-10-28 20:25:50.042977 2020-10-28 20:32:36.859892 \N \N 2476 1459 1 0 0 1.0 2020-10-28 20:27:55.116577 2020-10-28 20:32:36.880087 \N \N 2477 1460 1 0 0 1.0 2020-10-28 20:31:12.559427 2020-10-28 20:32:36.900928 \N \N 2478 1349 1 0 0 0.0 2020-10-28 20:37:29.273675 2020-10-28 20:38:47.643299 \N \N 2497 1469 3 0 0 0.0 2020-10-29 21:26:09.461957 2020-12-24 00:19:51.068849 \N \N 2480 1462 1 0 0 1.0 2020-10-28 20:44:47.756849 2020-10-28 20:57:11.083544 \N \N 2481 1463 1 0 0 1.0 2020-10-28 20:46:16.847085 2020-10-28 20:57:11.108833 \N \N 2421 1412 1 0 0 0.0 2020-10-27 21:12:28.011439 2020-11-12 00:42:43.526342 \N \N 2494 1472 3 0 0 0.0 2020-10-29 21:24:47.480831 2020-11-25 01:22:49.10721 \N \N 2484 1466 3 0 0 1.0 2020-10-29 20:45:18.6353 2020-10-29 20:48:03.056209 \N \N 2482 1464 3 0 0 0.0 2020-10-29 20:42:42.543526 2020-12-25 01:12:22.494162 \N \N 2486 1468 3 0 0 1.0 2020-10-29 20:47:43.825844 2020-10-29 20:48:03.111201 \N \N 2487 1466 1 0 0 1.0 2020-10-29 20:53:15.183175 2020-10-29 20:53:15.183175 \N \N 2442 1433 3 0 0 0.0 2020-10-27 22:43:02.397481 2020-12-24 21:43:34.055437 \N \N 2496 1474 3 0 0 0.0 2020-10-29 21:26:05.71748 2020-12-08 21:55:53.72069 \N \N 2453 1443 3 0 0 0.0 2020-10-27 23:24:40.986711 2020-11-19 20:23:16.180674 \N \N 2436 1427 3 0 0 0.0 2020-10-27 22:16:03.610228 2021-02-10 23:27:43.497753 \N \N 2493 1471 3 0 0 2.0 2020-10-29 21:20:31.716459 2020-12-23 18:37:35.377441 \N \N 2491 1469 1 0 0 0.0 2020-10-29 20:56:07.634334 2020-12-16 22:33:28.060248 \N \N 2504 1473 1 0 0 0.0 2020-10-29 23:15:10.217754 2020-12-21 22:12:34.193255 \N \N 2508 1481 1 0 0 0.0 2020-11-01 02:06:27.33869 2020-12-07 23:43:43.759932 \N \N 2502 1471 1 0 0 0.0 2020-10-29 23:15:10.149612 2020-12-23 18:09:27.754981 \N \N 2507 1480 1 0 0 2.0 2020-11-01 02:04:55.571729 2021-01-15 23:20:53.130103 \N \N 2500 1477 1 0 0 0.0 2020-10-29 23:13:24.528231 2020-12-23 18:07:42.454611 \N \N 2503 1472 1 0 0 0.0 2020-10-29 23:15:10.190968 2020-12-14 23:33:57.481167 \N \N 2465 1425 1 0 0 0.0 2020-10-28 00:24:00.258189 2020-12-26 22:26:13.517728 \N \N 2463 1430 1 0 0 0.0 2020-10-28 00:24:00.197885 2020-10-31 23:10:57.353121 \N \N 2492 1470 3 0 0 0.0 2020-10-29 21:19:16.77753 2020-12-08 21:55:53.680063 \N \N 2510 971 1 0 0 0.0 2020-11-01 02:14:01.793652 2020-11-01 02:15:38.232623 \N \N 2438 1429 3 0 0 0.0 2020-10-27 22:19:10.919468 2020-12-11 21:32:01.454478 \N \N 2464 1406 1 0 0 0.0 2020-10-28 00:24:00.22539 2020-11-10 21:28:13.913282 \N \N 2437 1428 3 0 0 0.0 2020-10-27 22:17:41.015231 2020-11-01 19:54:56.494542 \N \N 2511 1483 1 0 0 1.0 2020-11-02 18:55:02.568532 2020-12-23 19:08:51.746462 \N \N 2448 1374 1 0 0 3.0 2020-10-27 23:00:02.559424 2021-02-02 21:44:09.595949 \N \N 2445 1436 3 0 0 0.0 2020-10-27 22:50:34.860721 2020-11-06 22:51:52.49811 \N \N 2506 1475 3 0 0 0.0 2020-10-31 01:37:26.896525 2021-01-03 19:48:55.519384 \N \N 2483 1465 3 0 0 0.0 2020-10-29 20:44:26.543408 2020-11-23 20:12:24.388169 \N \N 2454 1444 3 0 0 0.0 2020-10-27 23:26:18.421941 2020-11-16 23:56:02.313635 \N \N 2513 1485 1 0 0 0.0 2020-11-02 20:44:38.517933 2021-01-15 23:20:53.18813 \N \N 2470 1453 1 0 0 0.0 2020-10-28 19:53:43.409283 2020-11-16 20:52:16.901896 \N \N 2505 1479 1 0 0 0.0 2020-10-29 23:19:37.184715 2020-12-14 19:06:55.652385 \N \N 2424 1415 1 0 0 0.0 2020-10-27 21:17:23.762961 2020-12-16 18:51:44.752919 \N \N 2490 1368 1 0 0 0.0 2020-10-29 20:53:15.281403 2020-12-22 02:08:11.373641 \N \N 2495 1473 3 0 0 1.0 2020-10-29 21:25:25.483647 2020-12-22 20:26:10.03855 \N \N 2432 1423 1 0 0 0.0 2020-10-27 21:55:25.958142 2020-12-28 21:18:34.929629 \N \N 2515 1487 1 0 0 3.0 2020-11-03 18:51:03.330842 2020-11-03 19:45:12.300768 \N \N 2541 1513 1 0 0 0.0 2020-11-03 22:04:30.04482 2020-11-16 20:23:10.805835 \N \N 2556 1528 1 0 0 3.0 2020-11-04 00:24:38.725071 2021-01-09 21:37:50.564775 \N \N 2602 1532 3 0 0 1.0 2020-11-12 01:17:34.290504 2020-11-12 01:17:36.747056 \N \N 2519 1491 1 0 0 8.0 2020-11-03 19:31:29.884799 2020-12-14 18:19:32.929804 \N \N 2528 1500 1 0 0 0.0 2020-11-03 20:55:13.244259 2020-12-16 22:44:35.642824 \N \N 2524 1496 1 0 0 3.0 2020-11-03 19:39:14.550861 2020-11-03 19:45:12.495383 \N \N 2572 1490 3 0 0 1.0 2020-11-06 18:50:48.25158 2021-02-14 00:26:12.69125 \N \N 2583 1492 3 0 0 4.0 2020-11-06 21:37:28.233253 2020-12-30 20:56:49.786118 \N \N 2576 1494 3 0 0 3.0 2020-11-06 21:37:27.971 2020-11-06 21:37:27.971 \N \N 2529 1501 1 0 0 3.0 2020-11-03 20:56:21.645568 2020-11-03 20:59:00.065513 \N \N 2584 1493 3 0 0 7.0 2020-11-06 21:37:28.258391 2020-12-30 22:18:18.117929 \N \N 2615 1540 3 0 0 0.0 2020-11-16 20:55:32.012092 2021-01-16 18:28:47.661187 \N \N 2549 1521 1 0 0 2.0 2020-11-03 23:51:09.468458 2020-12-13 00:16:44.624227 \N \N 2579 1501 3 0 0 3.0 2020-11-06 21:37:28.046207 2020-11-06 21:37:28.046207 \N \N 2534 1506 1 0 0 3.0 2020-11-03 21:08:02.750065 2021-01-04 21:18:40.356524 \N \N 2542 1514 1 0 0 0.0 2020-11-03 22:12:47.627282 2020-12-02 00:36:00.271178 \N \N 2532 1504 1 0 0 0.0 2020-11-03 21:04:05.144526 2020-12-31 20:10:58.108981 \N \N 2565 1516 3 0 0 2.0 2020-11-05 19:57:02.093125 2020-11-06 21:37:28.161823 \N \N 2518 1490 1 0 0 0.0 2020-11-03 18:58:24.05693 2020-12-11 20:47:08.634335 \N \N 2540 1512 1 0 0 0.0 2020-11-03 22:01:48.721973 2020-12-12 20:32:24.100506 \N \N 2566 1507 3 0 0 0.0 2020-11-05 20:57:12.992868 2020-12-30 00:06:40.820291 \N \N 2523 1495 1 0 0 1.0 2020-11-03 19:38:16.189704 2021-01-07 22:12:24.355767 \N \N 2550 1522 1 0 0 0.0 2020-11-03 23:54:42.661054 2020-12-16 22:58:27.206388 \N \N 2607 1537 1 0 0 0.0 2020-11-14 18:38:59.574796 2020-12-13 18:09:51.477437 \N \N 2571 1523 3 0 0 5.0 2020-11-06 18:50:48.225401 2021-01-29 01:43:42.055665 \N \N 2604 1534 1 0 0 1.0 2020-11-14 01:52:30.463129 2020-11-14 01:54:25.163726 \N \N 2557 725 3 0 0 1.0 2020-11-04 01:08:22.372888 2020-11-04 01:08:22.372888 \N \N 2559 870 3 0 0 2.0 2020-11-04 01:08:22.456878 2020-11-04 01:08:22.456878 \N \N 2585 1498 3 0 0 4.0 2020-11-06 21:37:28.285649 2021-01-22 23:38:26.677393 \N \N 2570 997 1 0 0 0.0 2020-11-05 22:24:07.074192 2020-12-04 19:28:49.524759 \N \N 2551 1523 1 0 0 0.0 2020-11-03 23:56:25.706226 2020-12-11 20:46:34.44015 \N \N 2611 1541 1 0 0 0.0 2020-11-14 18:48:10.828679 2020-12-17 00:03:19.42231 \N \N 2605 1535 1 0 0 0.0 2020-11-14 18:05:46.65461 2020-12-31 22:50:48.594771 \N \N 2525 1497 1 0 0 2.0 2020-11-03 20:43:40.391343 2020-12-13 22:06:51.132285 \N \N 2564 1503 3 0 0 0.0 2020-11-05 02:12:28.285071 2020-11-05 02:13:19.741973 \N \N 2598 1487 3 0 0 3.0 2020-11-06 22:21:30.842814 2020-11-06 22:21:30.842814 \N \N 2554 1526 1 0 0 0.0 2020-11-04 00:02:00.605045 2020-12-28 21:31:51.010426 \N \N 2613 1543 1 0 0 1.0 2020-11-14 18:54:35.901985 2021-01-09 21:37:50.630749 \N \N 2535 1507 1 0 0 3.0 2020-11-03 21:09:27.558402 2021-01-08 19:06:02.31674 \N \N 2546 1518 1 0 0 0.0 2020-11-03 23:28:32.317992 2020-12-21 23:03:57.031587 \N \N 2563 956 1 0 0 0.0 2020-11-05 01:01:29.061024 2021-01-09 02:17:54.698647 \N \N 2545 1517 1 0 0 0.0 2020-11-03 23:25:22.421171 2020-12-16 22:34:50.928078 \N \N 2593 1009 1 0 0 3.0 2020-11-06 22:03:31.805113 2020-11-06 22:03:31.805113 \N \N 2526 1498 1 0 0 2.0 2020-11-03 20:45:14.33242 2021-01-29 22:22:14.65426 \N \N 2591 1525 3 0 0 0.0 2020-11-06 21:37:28.479759 2020-12-30 23:54:18.552368 \N \N 2544 1516 1 0 0 1.0 2020-11-03 23:14:43.151686 2020-12-09 23:04:13.421762 \N \N 2553 1525 1 0 0 0.0 2020-11-04 00:00:09.394924 2020-12-23 18:36:36.987301 \N \N 2530 1502 1 0 0 6.0 2020-11-03 20:57:30.885733 2020-11-06 01:15:17.980303 \N \N 2531 1503 1 0 0 5.0 2020-11-03 20:58:43.329098 2020-11-06 01:15:18.004415 \N \N 2567 955 1 0 0 0.0 2020-11-05 21:05:18.883509 2021-01-09 02:18:20.918729 \N \N 2587 1505 3 0 0 2.0 2020-11-06 21:37:28.348006 2020-12-04 23:37:40.180484 \N \N 2562 1529 3 0 0 0.0 2020-11-04 01:40:36.456697 2021-01-20 23:03:34.054141 \N \N 2573 1513 3 0 0 0.0 2020-11-06 20:49:31.672744 2020-12-31 20:45:12.125821 \N \N 2589 1511 3 0 0 3.0 2020-11-06 21:37:28.425916 2021-01-08 18:19:28.658844 \N \N 2558 947 3 0 0 0.0 2020-11-04 01:08:22.433493 2020-12-22 18:16:42.312231 \N \N 2539 1511 1 0 0 0.0 2020-11-03 21:59:19.444517 2021-01-15 23:20:53.164672 \N \N 2561 1529 1 0 0 0.0 2020-11-04 01:39:18.726417 2020-12-25 00:17:55.11935 \N \N 2608 1538 1 0 0 4.0 2020-11-14 18:40:55.556803 2020-11-23 19:34:16.85539 \N \N 2609 1539 1 0 0 1.0 2020-11-14 18:42:18.592788 2021-01-16 01:50:58.672505 \N \N 2600 1530 3 0 0 0.0 2020-11-12 00:46:23.56738 2020-12-22 20:22:52.972859 \N \N 2568 1522 3 0 0 0.0 2020-11-05 21:15:15.832563 2021-01-08 23:37:29.899263 \N \N 2548 1520 1 0 0 0.0 2020-11-03 23:44:57.331627 2020-12-18 06:28:54.9369 \N \N 2577 1495 3 0 0 0.0 2020-11-06 21:37:27.994778 2021-01-07 22:16:33.673594 \N \N 2588 1506 3 0 0 3.0 2020-11-06 21:37:28.378702 2021-01-29 23:47:21.054964 \N \N 2614 901 3 0 0 0.0 2020-11-14 23:40:09.207248 2020-12-24 21:48:57.662758 \N \N 2603 1533 3 0 0 0.0 2020-11-12 01:58:28.375768 2020-11-12 01:58:51.431172 \N \N 2547 1519 1 0 0 0.0 2020-11-03 23:30:40.200849 2020-12-11 20:47:37.3883 \N \N 2581 1514 3 0 0 0.0 2020-11-06 21:37:28.122688 2020-12-15 23:31:20.729129 \N \N 2520 1492 1 0 0 5.0 2020-11-03 19:33:38.366633 2020-12-26 17:44:22.889553 \N \N 2595 1518 3 0 0 1.0 2020-11-06 22:21:30.766172 2020-12-23 03:34:25.106988 \N \N 2610 1540 1 0 0 1.0 2020-11-14 18:46:59.201147 2020-12-28 23:11:46.335498 \N \N 2552 1524 1 0 0 0.0 2020-11-03 23:57:28.062076 2021-01-19 21:40:50.858849 \N \N 2517 1489 1 0 0 3.0 2020-11-03 18:56:04.295132 2020-12-24 19:17:11.879153 \N \N 2578 1496 3 0 0 1.0 2020-11-06 21:37:28.019068 2020-12-22 23:08:47.436774 \N \N 2514 1486 1 0 0 3.0 2020-11-02 23:40:17.700087 2020-12-24 00:02:43.524948 \N \N 2527 1499 1 0 0 5.0 2020-11-03 20:51:28.17891 2020-12-28 21:31:51.033272 \N \N 2536 1508 1 0 0 1.0 2020-11-03 21:11:19.786709 2020-12-13 20:57:18.072863 \N \N 2612 1542 1 0 0 3.0 2020-11-14 18:51:20.31963 2020-12-04 21:10:23.610903 \N \N 2521 1493 1 0 0 5.0 2020-11-03 19:34:46.817208 2021-01-29 01:02:07.008994 \N \N 2592 1343 1 0 0 1.0 2020-11-06 22:03:31.784529 2021-02-12 01:55:23.168527 \N \N 2586 1499 3 0 0 3.0 2020-11-06 21:37:28.310524 2020-12-01 01:56:33.62864 \N \N 2543 1515 1 0 0 1.0 2020-11-03 22:14:10.348763 2020-12-30 23:35:27.075078 \N \N 2533 1505 1 0 0 2.0 2020-11-03 21:05:05.101486 2020-12-04 00:48:02.966531 \N \N 2516 1488 1 0 0 1.0 2020-11-03 18:54:34.630707 2020-12-20 18:32:21.693688 \N \N 2522 1494 1 0 0 2.0 2020-11-03 19:37:28.344611 2020-11-24 21:24:16.015879 \N \N 2582 1491 3 0 0 0.0 2020-11-06 21:37:28.20664 2021-02-02 22:22:34.370689 \N \N 2537 1509 1 0 0 0.0 2020-11-03 21:13:34.394989 2020-12-09 23:04:13.39412 \N \N 2599 1528 3 0 0 1.0 2020-11-06 22:21:30.86738 2020-12-11 01:47:03.973798 \N \N 2596 1526 3 0 0 0.0 2020-11-06 22:21:30.791243 2020-12-23 01:39:20.829766 \N \N 2560 753 3 0 0 0.0 2020-11-04 01:08:22.481881 2020-12-05 00:36:51.248494 \N \N 2597 1524 3 0 0 1.0 2020-11-06 22:21:30.816795 2021-01-12 21:06:46.324175 \N \N 2574 1483 3 0 0 0.0 2020-11-06 21:37:27.920955 2020-12-18 22:09:40.385017 \N \N 2594 1504 3 0 0 1.0 2020-11-06 22:21:30.676547 2020-12-20 01:47:18.003807 \N \N 2575 1520 3 0 0 0.0 2020-11-06 21:37:27.945781 2020-12-21 22:38:59.013548 \N \N 2606 1536 1 0 0 2.0 2020-11-14 18:07:14.617285 2020-12-31 22:37:56.472302 \N \N 2569 1510 3 0 0 0.0 2020-11-05 21:15:15.855154 2021-01-13 01:51:10.736557 \N \N 2601 1531 3 0 0 1.0 2020-11-12 01:15:19.245552 2020-12-24 22:22:26.445154 \N \N 2538 1510 1 0 0 1.0 2020-11-03 21:14:17.850269 2021-01-16 01:44:33.592745 \N \N 2580 1512 3 0 0 2.0 2020-11-06 21:37:28.084549 2021-02-03 20:30:49.344949 \N \N 2555 1527 1 0 0 1.0 2020-11-04 00:05:10.222345 2021-02-13 22:33:39.785214 \N \N 2686 1565 3 0 0 1.0 2021-01-16 01:20:42.096829 2021-01-19 23:02:36.095781 1199.00 \N 2663 1554 3 0 0 0.0 2020-12-23 18:40:45.493602 2020-12-23 18:41:19.765381 \N \N 2672 1555 3 0 0 1.0 2021-01-04 23:54:52.281454 2021-01-04 23:54:52.281454 \N \N 2673 1556 3 0 0 2.0 2021-01-04 23:54:52.310811 2021-01-04 23:54:52.310811 \N \N 2670 1557 3 0 0 1.0 2021-01-04 23:53:40.379892 2021-01-04 23:54:52.338472 \N \N 2671 1558 3 0 0 1.0 2021-01-04 23:54:48.253586 2021-01-04 23:54:52.362483 \N \N 2619 1538 3 0 0 4.0 2020-11-16 20:59:41.331912 2020-11-21 21:09:45.387375 \N \N 2689 1568 3 0 0 1.0 2021-01-16 01:26:29.65328 2021-01-21 21:33:35.860911 \N \N 2626 879 1 0 0 1.0 2020-11-25 20:16:37.203472 2020-11-25 20:16:37.203472 \N \N 2627 774 1 0 0 3.0 2020-11-25 20:16:50.545197 2020-11-25 20:16:50.545197 \N \N 2628 779 1 0 0 4.0 2020-11-25 20:16:50.566495 2020-11-25 20:16:50.566495 \N \N 2650 900 3 0 0 1.0 2020-12-17 01:40:52.375103 2020-12-17 01:40:52.375103 \N \N 2617 1534 3 0 0 1.0 2020-11-16 20:59:41.273297 2021-01-06 00:07:39.997546 \N \N 2648 1517 3 0 0 0.0 2020-12-17 01:40:52.308473 2021-01-07 23:53:17.262061 \N \N 2632 1547 1 0 0 0.0 2020-11-26 20:23:39.537922 2021-01-08 22:14:37.502162 \N \N 2633 862 1 0 0 2.0 2020-12-09 19:30:37.838129 2020-12-09 19:30:37.838129 \N \N 2643 1479 3 0 0 0.0 2020-12-15 22:25:12.329448 2021-01-09 01:39:49.978126 \N \N 2635 1548 1 0 0 0.0 2020-12-09 19:37:56.410461 2020-12-09 19:42:40.881231 \N \N 2636 904 3 0 0 2.0 2020-12-10 19:57:03.746765 2020-12-10 19:57:48.26764 \N \N 2645 1549 1 0 0 2.0 2020-12-15 22:29:20.519591 2020-12-24 23:54:56.530552 \N \N 2616 1541 3 0 0 0.0 2020-11-16 20:55:32.039502 2020-12-11 01:44:15.627607 \N \N 2634 781 1 0 0 1.0 2020-12-09 19:30:49.041865 2020-12-26 22:22:47.931597 \N \N 2642 1550 3 0 0 8.0 2020-12-15 22:20:16.457291 2021-01-23 21:51:38.353926 \N \N 2674 955 3 0 0 1.0 2021-01-09 02:19:28.145639 2021-01-09 02:31:31.5035 \N \N 2665 733 3 0 0 0.0 2020-12-29 00:26:25.646653 2020-12-29 00:28:54.536672 \N \N 2651 1551 3 0 0 0.0 2020-12-18 06:44:58.488426 2020-12-18 06:46:17.986789 \N \N 2675 956 3 0 0 0.0 2021-01-09 02:19:37.417155 2021-01-09 02:31:31.538145 \N \N 2678 1561 3 0 0 1.0 2021-01-13 00:12:06.681594 2021-01-23 21:52:41.810122 \N \N 2664 1515 3 0 0 0.0 2020-12-24 02:34:40.069972 2021-01-09 02:31:31.610325 \N \N 2622 1544 3 0 0 0.0 2020-11-19 00:29:05.17779 2020-12-13 21:21:41.774748 \N \N 2641 1094 3 0 0 0.0 2020-12-14 21:50:04.519679 2020-12-14 22:05:29.684782 \N \N 2629 767 1 0 0 0.0 2020-11-25 20:21:05.771755 2021-01-09 21:37:50.499003 \N \N 2618 1535 3 0 0 0.0 2020-11-16 20:59:41.301677 2021-01-10 21:12:49.393402 \N \N 2640 1508 3 0 0 1.0 2020-12-13 21:04:19.35217 2020-12-29 23:47:38.812587 \N \N 2697 310 1 0 0 0.0 2021-02-04 20:57:44.640709 2021-02-04 20:58:36.889131 \N \N 2666 163 3 0 0 0.0 2020-12-30 23:52:48.485639 2020-12-30 23:54:18.576889 \N \N 2691 1569 3 0 0 2.0 2021-01-22 00:30:10.375129 2021-01-22 00:30:18.057367 \N \N 2652 1178 1 0 0 0.0 2020-12-22 20:27:17.640151 2020-12-22 20:27:45.54377 \N \N 2647 1530 1 0 0 0.0 2020-12-16 00:11:58.015591 2020-12-16 00:13:52.384776 \N \N 2659 1353 3 0 0 0.0 2020-12-23 18:37:35.48252 2020-12-31 19:10:18.604439 \N \N 2623 1545 3 0 0 0.0 2020-11-19 00:50:08.696338 2020-12-31 19:13:50.755605 \N \N 2624 1546 3 0 0 0.0 2020-11-19 00:58:02.417665 2020-12-16 21:07:40.37495 \N \N 2654 1553 3 0 0 0.0 2020-12-22 20:52:39.324905 2020-12-22 20:54:11.782682 \N \N 2667 1441 1 0 0 0.0 2020-12-31 20:38:03.88219 2020-12-31 20:38:54.783033 \N \N 2653 1552 3 0 0 0.0 2020-12-22 20:51:37.085984 2020-12-22 21:23:28.960442 \N \N 2668 766 1 0 0 2.0 2020-12-31 20:38:13.139844 2020-12-31 20:38:54.805565 \N \N 2655 1352 3 0 0 0.0 2020-12-23 18:37:35.40281 2020-12-31 21:46:47.663945 \N \N 2138 1244 1 0 0 1.0 2020-08-15 00:20:38.434969 2020-12-31 22:07:15.115153 \N \N 2692 1569 1 0 0 1.0 2021-01-22 00:30:37.908409 2021-01-22 00:30:37.908409 \N \N 2683 1563 1 0 0 3 2021-01-13 00:25:16.341414 2021-01-13 00:25:16.341414 \N \N 2669 1536 3 0 0 2.0 2020-12-31 22:38:40.775688 2020-12-31 22:41:00.173276 \N \N 2631 1547 3 0 0 3 2020-11-26 19:53:40.441631 2021-01-16 01:40:08.226764 \N \N 2590 1521 3 0 0 0.0 2020-11-06 21:37:28.45136 2020-12-23 03:35:54.014296 \N \N 2644 1164 3 0 0 0.0 2020-12-15 22:25:12.350747 2020-12-23 03:36:22.715328 \N \N 2694 292 1 0 0 0.0 2021-01-23 22:15:22.143955 2021-01-23 22:34:31.683044 \N \N 2649 1500 3 0 0 0.0 2020-12-17 01:40:52.34234 2020-12-23 03:39:48.993565 \N \N 2657 1354 3 0 0 1.0 2020-12-23 18:37:35.442416 2020-12-23 18:37:35.442416 \N \N 2660 1476 3 0 0 1.0 2020-12-23 18:37:35.502079 2020-12-23 18:37:35.502079 \N \N 2661 1477 3 0 0 1.0 2020-12-23 18:37:35.521644 2020-12-23 18:37:35.521644 \N \N 2662 1478 3 0 0 1.0 2020-12-23 18:37:35.540483 2020-12-23 18:37:35.540483 \N \N 2685 1559 1 0 0 1.0 2021-01-13 00:25:16.405438 2021-01-25 20:05:51.498107 \N \N 2621 1539 3 0 0 0.0 2020-11-16 20:59:41.402341 2021-01-01 01:05:53.694609 \N \N 2693 1570 3 0 0 0.0 2021-01-23 00:54:20.243755 2021-01-23 00:55:00.965424 \N \N 2637 962 3 0 0 2.0 2020-12-11 21:30:16.524859 2021-01-02 23:28:49.60118 \N \N 2698 752 1 0 0 0.0 2021-02-04 23:51:48.283345 2021-02-04 23:53:18.365818 \N \N 2681 1564 3 0 0 1.0 2021-01-13 00:22:39.798933 2021-01-13 00:23:04.044909 \N \N 2682 1560 1 0 0 1.0 2021-01-13 00:25:16.311683 2021-01-13 00:25:16.311683 \N \N 2684 1564 1 0 0 1.0 2021-01-13 00:25:16.375923 2021-01-13 00:25:16.375923 \N \N 2620 1537 3 0 0 0.0 2020-11-16 20:59:41.363318 2021-01-23 01:04:40.786842 \N \N 2638 1549 3 0 0 3.0 2020-12-13 01:02:20.147831 2021-01-16 01:40:08.253935 \N \N 2690 416 1 0 0 2.0 2021-01-16 01:44:33.627009 2021-01-16 01:44:33.627009 \N \N 2639 1519 3 0 0 0.0 2020-12-13 21:04:19.304416 2021-01-16 02:28:45.410744 \N \N 2679 1562 3 0 0 0.0 2021-01-13 00:13:21.903008 2021-01-16 21:09:03.147422 \N \N 2677 1560 3 0 0 1.0 2021-01-13 00:11:00.707399 2021-01-16 21:09:03.169546 \N \N 2646 1550 1 0 0 7.0 2020-12-15 22:29:20.550606 2021-01-19 01:17:01.647416 \N \N 2676 1559 3 0 0 3.0 2021-01-11 22:55:03.44984 2021-01-25 21:54:36.812574 \N \N 2688 1567 3 0 0 1.0 2021-01-16 01:22:58.378475 2021-01-27 18:07:28.503726 \N \N 2656 341 3 0 0 0.0 2020-12-23 18:37:35.423193 2021-01-27 18:09:00.444408 \N \N 2687 1566 3 0 0 0.0 2021-01-16 01:21:49.027467 2021-01-23 19:36:51.363114 \N \N 2625 1375 1 0 0 1.0 2020-11-23 19:16:18.018191 2021-01-23 20:44:29.753263 \N \N 2695 1437 1 0 0 0.0 2021-01-29 19:13:04.053198 2021-01-29 19:13:41.23944 \N \N 2696 1440 1 0 0 0.0 2021-01-29 19:13:04.086288 2021-01-29 19:13:41.261199 \N \N 2680 1563 3 0 0 0.0 2021-01-13 00:21:48.010029 2021-02-02 17:15:25.438401 \N \N 2699 1427 1 0 0 0.0 2021-02-11 00:20:56.601737 2021-02-11 00:21:17.51175 \N \N 2630 765 1 0 0 0.0 2020-11-25 20:21:18.766277 2021-02-14 01:07:17.990084 \N \N 2700 1571 3 0 0 0 2021-02-16 00:55:27.135694 2021-02-16 00:55:27.135694 \N \N 2658 1175 3 0 0 0.0 2020-12-23 18:37:35.462549 2021-02-19 00:17:34.10328 \N \N \. -- -- Name: available_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.available_products_id_seq', 2700, true); -- -- Data for Name: billing_informations; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.billing_informations (id, customer_id, name, rfc, address, zipcode, num_ext, num_int, state_id, county_id, city, suburb, status, created_at, updated_at, supplier_id, cfdi_use_key) FROM stdin; 1 0 CLOE OE RUVEL COMPANI XXXXXXXX 80000 14 941 1 2019-02-02 01:46:06.594267 2019-02-02 01:46:06.594267 1 G03 2 2 x x 5555 25 180 1 2019-02-05 22:20:36.179364 2019-02-05 22:20:36.179364 0 3 3 x X POMPEI 80050 25 180 CUIACAN 1 2019-02-05 22:28:37.530144 2019-02-05 22:28:37.530144 0 4 5 x X POMPEI 80050 25 486 CUIACAN 1 2019-02-05 22:34:53.145771 2019-02-05 22:34:53.145771 0 5 0 NAHIO JEWELS NAH121015 ramon f iturbe 379 80000 25 180 culiacan 1 2020-08-15 23:43:38.781158 2020-08-15 23:43:38.781158 3 G03 6 0 SSSS452562 XXXXXXXXXX MORELOS 00297/00004 8000 25 486 CULIACAN 1 2020-09-19 00:14:52.657408 2020-09-19 00:14:52.657408 4 G03 7 0 RAPUNZEL RAPS170415 ramon f iturbe 379 80000 25 180 culiacan 0 2020-09-19 00:15:45.255127 2020-09-19 00:15:53.69421 5 G03 \. -- -- Name: billing_informations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.billing_informations_id_seq', 7, true); -- -- Data for Name: cash_out_details; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.cash_out_details (id, cash_out_id, payment_method_id, created_at, updated_at, incoming, total, adjustment, observations, outgoing) FROM stdin; 1 1 2 2019-02-06 02:48:24.114516 2019-02-06 02:48:24.114516 14413.00 15138.00 0.00 \N 0.00 2 1 4 2019-02-06 02:48:24.118059 2019-02-06 02:48:24.118059 1299.00 1299.00 0.00 \N 0.00 3 1 1 2019-02-06 02:48:24.120656 2019-02-06 02:48:24.120656 2537.00 2537.00 0.00 \N 0.00 4 2 4 2019-02-06 03:04:31.312954 2019-02-06 03:04:31.312954 3815.00 3815.00 0.00 \N 0.00 5 2 2 2019-02-06 03:04:31.315621 2019-02-06 03:04:31.315621 2595.00 2595.00 0.00 \N 0.00 6 3 2 2019-02-07 02:58:45.330986 2019-02-07 02:58:45.330986 4165.20 4890.20 0.00 \N 0.00 7 3 1 2019-02-07 02:58:45.333958 2019-02-07 02:58:45.333958 3125.00 3125.00 0.00 \N 0.00 8 4 2 2019-02-07 03:03:19.143407 2019-02-07 03:03:19.143407 1368.00 2313.00 0.00 \N 0.00 9 4 4 2019-02-07 03:03:19.145472 2019-02-07 03:03:19.145472 1477.00 1477.00 0.00 \N 0.00 10 4 1 2019-02-07 03:03:19.147629 2019-02-07 03:03:19.147629 799.00 799.00 0.00 \N 0.00 11 5 2 2019-02-09 02:37:52.713735 2019-02-09 02:37:52.713735 1218.00 2139.00 0.00 \N 0.00 12 6 2 2019-02-09 03:12:31.523036 2019-02-09 03:12:31.523036 4038.00 4673.00 0.00 \N 0.00 13 6 1 2019-02-09 03:12:31.526401 2019-02-09 03:12:31.526401 2397.00 2397.00 0.00 \N 0.00 14 7 2 2019-02-10 02:06:04.578708 2019-02-10 02:06:04.578708 988.00 1933.00 0.00 \N 0.00 15 7 4 2019-02-10 02:06:04.58203 2019-02-10 02:06:04.58203 1387.01 1387.01 0.00 \N 0.00 16 8 1 2019-02-10 02:12:16.405921 2019-02-10 02:12:16.405921 749.00 749.00 0.00 \N 0.00 17 8 2 2019-02-10 02:12:16.408235 2019-02-10 02:12:16.408235 1768.00 2420.00 0.00 \N 0.00 18 9 2 2019-02-12 02:32:02.62361 2019-02-12 02:32:02.62361 3226.00 4171.00 0.00 \N 0.00 19 10 2 2019-02-12 02:37:52.181271 2019-02-12 02:37:52.181271 3487.00 4149.00 0.00 \N 0.00 20 11 2 2019-02-13 02:36:20.818212 2019-02-13 02:36:20.818212 1379.00 2078.00 0.00 \N 0.00 21 11 1 2019-02-13 02:36:20.82145 2019-02-13 02:36:20.82145 499.00 499.00 0.00 \N 0.00 22 12 2 2019-02-13 17:57:13.669342 2019-02-13 17:57:13.669342 848.00 1861.00 0.00 \N 0.00 23 13 2 2019-02-14 02:48:20.492567 2019-02-14 02:48:20.492567 2018.30 2696.30 0.00 \N 0.00 24 14 2 2019-02-14 02:54:59.196548 2019-02-14 02:54:59.196548 2567.99 3928.99 0.00 \N 0.00 25 14 4 2019-02-14 02:54:59.199294 2019-02-14 02:54:59.199294 800.00 800.00 0.00 \N 0.00 26 15 1 2019-02-15 02:50:55.494241 2019-02-15 02:50:55.494241 698.00 698.00 0.00 \N 0.00 27 16 4 2019-02-15 03:03:52.257332 2019-02-15 03:03:52.257332 1407.00 1407.00 0.00 \N 0.00 28 16 2 2019-02-15 03:03:52.259885 2019-02-15 03:03:52.259885 1477.00 2462.00 0.00 \N 0.00 29 17 2 2019-02-16 02:49:06.453324 2019-02-16 02:49:06.453324 3176.00 3787.00 0.00 \N 86.00 30 17 1 2019-02-16 02:49:06.456495 2019-02-16 02:49:06.456495 1198.00 1198.00 0.00 \N 0.00 31 18 1 2019-02-16 02:56:21.175435 2019-02-16 02:56:21.175435 489.00 489.00 0.00 \N 0.00 32 18 2 2019-02-16 02:56:21.178132 2019-02-16 02:56:21.178132 1268.00 1830.00 0.00 \N 0.00 33 19 4 2019-02-17 02:45:16.138426 2019-02-17 02:45:16.138426 2736.00 2736.00 0.00 \N 0.00 34 19 2 2019-02-17 02:45:16.142384 2019-02-17 02:45:16.142384 3478.00 3582.00 0.00 \N 783.00 35 19 1 2019-02-17 02:45:16.145403 2019-02-17 02:45:16.145403 699.00 699.00 0.00 \N 0.00 36 20 4 2019-02-17 02:53:14.882282 2019-02-17 02:53:14.882282 749.00 749.00 0.00 \N 0.00 37 20 2 2019-02-17 02:53:14.884864 2019-02-17 02:53:14.884864 1828.00 2390.00 0.00 \N 0.00 38 21 1 2019-02-17 21:46:29.755761 2019-02-17 21:46:29.755761 1174.00 1174.00 0.00 \N 0.00 39 22 4 2019-02-17 22:02:51.615084 2019-02-17 22:02:51.615084 2236.00 2236.00 0.00 \N 0.00 40 22 2 2019-02-17 22:02:51.617767 2019-02-17 22:02:51.617767 3203.99 4085.99 0.00 \N 0.00 41 23 2 2019-02-19 02:35:03.614081 2019-02-19 02:35:03.614081 930.00 1492.00 0.00 \N 0.00 42 23 1 2019-02-19 02:35:03.616701 2019-02-19 02:35:03.616701 319.00 319.00 0.00 \N 0.00 43 24 1 2019-02-19 02:43:45.586607 2019-02-19 02:43:45.586607 2048.00 2048.00 0.00 \N 0.00 44 24 2 2019-02-19 02:43:45.589835 2019-02-19 02:43:45.589835 0.00 513.00 0.00 \N 72.00 45 25 2 2019-02-20 02:31:16.152402 2019-02-20 02:31:16.152402 3175.99 3688.99 0.00 \N 0.00 46 26 1 2019-02-20 02:50:40.429715 2019-02-20 02:50:40.429715 619.00 619.00 0.00 \N 0.00 47 27 2 2019-02-21 02:14:44.644394 2019-02-21 02:14:44.644394 2896.00 3385.00 0.00 \N 0.00 48 27 4 2019-02-21 02:14:44.64712 2019-02-21 02:14:44.64712 469.00 469.00 0.00 \N 0.00 49 28 2 2019-02-21 02:29:37.8234 2019-02-21 02:29:37.8234 2795.99 3487.99 0.00 \N 0.00 50 28 3 2019-02-21 02:29:37.826684 2019-02-21 02:29:37.826684 899.00 899.00 0.00 \N 0.00 51 29 2 2019-02-22 02:22:05.357017 2019-02-22 02:22:05.357017 897.00 1582.00 0.00 \N 0.00 52 29 1 2019-02-22 02:22:05.360351 2019-02-22 02:22:05.360351 2417.00 2417.00 0.00 \N 0.00 53 32 2 2019-02-23 02:20:45.995153 2019-02-23 02:20:45.995153 2624.00 3456.00 0.00 \N 50.00 54 32 1 2019-02-23 02:20:45.99862 2019-02-23 02:20:45.99862 300.00 300.00 0.00 \N 0.00 55 32 4 2019-02-23 02:20:46.001347 2019-02-23 02:20:46.001347 3798.00 3798.00 0.00 \N 0.00 56 33 1 2019-02-23 02:33:26.206797 2019-02-23 02:33:26.206797 210.00 210.00 0.00 \N 0.00 57 34 2 2019-02-24 01:30:26.661124 2019-02-24 01:30:26.661124 2529.00 2717.00 0.00 \N 768.00 58 34 1 2019-02-24 01:30:26.663872 2019-02-24 01:30:26.663872 1169.00 1169.00 0.00 \N 0.00 59 35 2 2019-02-24 01:49:47.670239 2019-02-24 01:49:47.670239 1875.00 2567.00 0.00 \N 0.00 60 36 2 2019-02-24 21:46:09.384345 2019-02-24 21:46:09.384345 419.00 1446.00 0.00 \N 0.00 61 37 2 2019-02-24 22:09:28.661194 2019-02-24 22:09:28.661194 2268.00 2820.00 0.00 \N 0.00 62 38 2 2019-02-26 01:55:39.924922 2019-02-26 01:55:39.924922 250.00 1096.00 0.00 \N 0.00 63 40 1 2019-02-26 23:50:45.912259 2019-02-26 23:50:45.912259 588.00 588.00 0.00 \N 0.00 64 41 1 2019-02-27 01:55:54.054973 2019-02-27 01:55:54.054973 1299.00 1299.00 0.00 \N 0.00 65 41 2 2019-02-27 01:55:54.058232 2019-02-27 01:55:54.058232 99.00 943.00 0.00 \N 0.00 66 41 4 2019-02-27 01:55:54.060219 2019-02-27 01:55:54.060219 699.00 699.00 0.00 \N 0.00 67 42 2 2019-02-28 01:56:59.271666 2019-02-28 01:56:59.271666 1000.00 1844.00 0.00 \N 0.00 68 42 1 2019-02-28 01:56:59.273524 2019-02-28 01:56:59.273524 1098.00 1098.00 0.00 \N 0.00 69 43 1 2019-02-28 02:30:20.903604 2019-02-28 02:30:20.903604 998.00 998.00 0.00 \N 0.00 70 43 2 2019-02-28 02:30:20.906562 2019-02-28 02:30:20.906562 839.00 1359.00 0.00 \N 0.00 71 44 2 2019-03-01 01:57:47.950844 2019-03-01 01:57:47.950844 989.00 1833.00 0.00 \N 0.00 72 46 2 2019-03-02 02:12:24.540991 2019-03-02 02:12:24.540991 3824.00 4039.00 0.00 \N 618.00 73 47 2 2019-03-02 02:16:42.110151 2019-03-02 02:16:42.110151 499.00 1439.00 0.00 \N 0.00 74 48 4 2019-03-02 02:36:24.012478 2019-03-02 02:36:24.012478 1149.00 1149.00 0.00 \N 0.00 75 48 2 2019-03-02 02:36:24.015144 2019-03-02 02:36:24.015144 899.00 1239.00 0.00 \N 0.00 76 48 1 2019-03-02 02:36:24.017405 2019-03-02 02:36:24.017405 898.00 898.00 0.00 \N 0.00 77 49 2 2019-03-03 01:49:17.250319 2019-03-03 01:49:17.250319 876.00 1766.00 0.00 \N 50.00 78 50 2 2019-03-03 01:49:47.015918 2019-03-03 01:49:47.015918 1878.00 2117.00 0.00 \N 0.00 79 50 4 2019-03-03 01:49:47.017683 2019-03-03 01:49:47.017683 459.00 459.00 0.00 \N 0.00 80 51 2 2019-03-03 21:42:31.958688 2019-03-03 21:42:31.958688 3832.01 4071.01 0.00 \N 0.00 81 51 1 2019-03-03 21:42:31.961658 2019-03-03 21:42:31.961658 1987.00 1987.00 0.00 \N 0.00 82 52 2 2019-03-03 21:56:15.184768 2019-03-03 21:56:15.184768 1717.00 2483.00 0.00 \N 0.00 83 52 1 2019-03-03 21:56:15.189182 2019-03-03 21:56:15.189182 3165.00 3165.00 0.00 \N 0.00 84 53 2 2019-03-05 02:16:23.352236 2019-03-05 02:16:23.352236 680.01 1396.01 0.00 \N 50.00 86 56 2 2019-03-06 02:00:35.467946 2019-03-06 02:00:35.467946 1447.00 2011.00 0.00 \N 0.00 87 57 2 2019-03-07 02:00:49.801167 2019-03-07 02:00:49.801167 1748.00 2166.00 0.00 \N 0.00 88 58 2 2019-03-07 02:02:14.528236 2019-03-07 02:02:14.528236 1973.00 2484.00 0.00 \N 0.00 89 58 1 2019-03-07 02:02:14.529914 2019-03-07 02:02:14.529914 749.00 749.00 0.00 \N 0.00 90 59 2 2019-03-08 02:00:54.553351 2019-03-08 02:00:54.553351 1798.00 2264.00 0.00 \N 0.00 91 61 1 2019-03-09 01:58:06.490497 2019-03-09 01:58:06.490497 1798.00 1798.00 0.00 \N 0.00 92 62 3 2019-03-09 02:07:28.934114 2019-03-09 02:07:28.934114 400.00 400.00 0.00 \N 0.00 93 62 2 2019-03-09 02:07:28.937192 2019-03-09 02:07:28.937192 679.00 1263.00 0.00 \N 0.00 94 63 4 2019-03-10 02:01:59.708354 2019-03-10 02:01:59.708354 1168.00 1168.00 0.00 \N 0.00 95 63 2 2019-03-10 02:01:59.71193 2019-03-10 02:01:59.71193 2815.01 2450.01 0.00 \N 928.00 96 64 2 2019-03-10 02:03:10.514611 2019-03-10 02:03:10.514611 4274.99 4688.99 0.00 \N 0.00 97 64 1 2019-03-10 02:03:10.517309 2019-03-10 02:03:10.517309 489.00 489.00 0.00 \N 0.00 85 54 2 2019-03-05 02:55:08.261543 2019-03-05 02:55:08.261543 3898.00 4701.00 0.00 \N 0.00 98 65 2 2019-03-10 21:56:43.763281 2019-03-10 21:56:43.763281 1199.00 1849.00 0.00 \N 0.00 99 67 2 2019-03-12 01:58:06.423555 2019-03-12 01:58:06.423555 1688.00 2287.00 0.00 \N 50.00 100 68 2 2019-03-12 02:06:14.232408 2019-03-12 02:06:14.232408 49.00 487.00 0.00 \N 0.00 101 69 2 2019-03-13 02:00:36.662725 2019-03-13 02:00:36.662725 500.00 1087.00 0.00 \N 0.00 102 71 1 2019-03-14 02:00:47.156548 2019-03-14 02:00:47.156548 1288.00 1288.00 0.00 \N 0.00 103 71 4 2019-03-14 02:00:47.15844 2019-03-14 02:00:47.15844 1418.00 1418.00 0.00 \N 0.00 104 71 2 2019-03-14 02:00:47.159823 2019-03-14 02:00:47.159823 1348.00 535.00 0.00 \N 1300.00 105 72 1 2019-03-15 01:56:08.631265 2019-03-15 01:56:08.631265 599.00 599.00 0.00 \N 0.00 106 72 2 2019-03-15 01:56:08.633207 2019-03-15 01:56:08.633207 968.00 1555.00 0.00 \N 0.00 107 73 4 2019-03-15 02:00:00.35608 2019-03-15 02:00:00.35608 889.00 889.00 0.00 \N 0.00 108 73 2 2019-03-15 02:00:00.357666 2019-03-15 02:00:00.357666 1499.00 2034.00 0.00 \N 0.00 109 74 3 2019-03-16 01:57:23.190288 2019-03-16 01:57:23.190288 999.99 999.99 0.00 \N 0.00 110 74 4 2019-03-16 01:57:23.193559 2019-03-16 01:57:23.193559 1049.00 1049.00 0.00 \N 0.00 111 74 2 2019-03-16 01:57:23.195907 2019-03-16 01:57:23.195907 3636.00 4141.00 0.00 \N 50.00 112 75 2 2019-03-16 02:12:04.003224 2019-03-16 02:12:04.003224 3256.01 3790.01 0.00 \N 0.00 113 75 1 2019-03-16 02:12:04.005354 2019-03-16 02:12:04.005354 669.00 669.00 0.00 \N 0.00 114 76 2 2019-03-17 01:53:54.331602 2019-03-17 01:53:54.331602 1568.00 951.00 0.00 \N 1000.00 115 77 2 2019-03-17 02:02:06.535868 2019-03-17 02:02:06.535868 0.00 863.00 0.00 \N 50.00 116 77 1 2019-03-17 02:02:06.537846 2019-03-17 02:02:06.537846 1518.00 1518.00 0.00 \N 0.00 117 78 2 2019-03-17 21:45:29.058253 2019-03-17 21:45:29.058253 489.00 1352.00 0.00 \N 0.00 118 80 1 2019-03-20 02:04:11.577485 2019-03-20 02:04:11.577485 2158.00 2158.00 0.00 \N 0.00 119 81 3 2019-03-20 02:08:46.738196 2019-03-20 02:08:46.738196 2800.00 2800.00 0.00 \N 0.00 120 82 2 2019-03-21 01:56:10.677135 2019-03-21 01:56:10.677135 300.00 706.00 0.00 \N 0.00 121 82 4 2019-03-21 01:56:10.679225 2019-03-21 01:56:10.679225 1683.00 1683.00 0.00 \N 0.00 122 83 2 2019-03-21 17:05:07.968901 2019-03-21 17:05:07.968901 768.00 1568.00 0.00 \N 50.00 123 84 2 2019-03-22 01:54:27.27156 2019-03-22 01:54:27.27156 499.00 1005.00 0.00 \N 0.00 124 85 2 2019-03-22 17:19:29.375952 2019-03-22 17:19:29.375952 649.00 947.00 0.00 \N 770.00 125 86 1 2019-03-23 01:43:08.3379 2019-03-23 01:43:08.3379 1188.00 1188.00 0.00 \N 0.00 126 87 1 2019-03-23 01:59:08.963119 2019-03-23 01:59:08.963119 769.00 769.00 0.00 \N 0.00 127 87 2 2019-03-23 01:59:08.965294 2019-03-23 01:59:08.965294 1268.00 1115.00 0.00 \N 1100.00 128 88 1 2019-03-24 01:56:57.385801 2019-03-24 01:56:57.385801 599.00 599.00 0.00 \N 0.00 130 89 2 2019-03-24 01:58:29.237129 2019-03-24 01:58:29.237129 733.01 1019.01 0.00 \N 678.00 131 90 2 2019-03-24 21:53:30.668678 2019-03-24 21:53:30.668678 2796.00 3814.00 0.00 \N 0.00 132 91 2 2019-03-24 21:56:40.248225 2019-03-24 21:56:40.248225 1000.00 1555.00 0.00 \N 0.00 133 92 2 2019-03-26 02:06:03.696807 2019-03-26 02:06:03.696807 2747.00 3712.00 0.00 \N 50.00 134 93 2 2019-03-26 02:28:50.312506 2019-03-26 02:28:50.312506 200.00 755.00 0.00 \N 0.00 135 94 2 2019-03-27 01:49:19.66394 2019-03-27 01:49:19.66394 988.00 1743.00 0.00 \N 0.00 136 95 2 2019-03-27 01:54:20.836001 2019-03-27 01:54:20.836001 369.00 1257.00 0.00 \N 24.00 137 96 1 2019-03-28 01:40:02.65962 2019-03-28 01:40:02.65962 869.00 869.00 0.00 \N 0.00 138 96 2 2019-03-28 01:40:02.662781 2019-03-28 01:40:02.662781 357.00 1100.00 0.00 \N 0.00 139 97 2 2019-03-28 01:54:53.590689 2019-03-28 01:54:53.590689 699.00 956.00 0.00 \N 500.00 140 97 4 2019-03-28 01:54:53.593726 2019-03-28 01:54:53.593726 529.00 529.00 0.00 \N 0.00 141 98 2 2019-03-29 01:53:37.115551 2019-03-29 01:53:37.115551 1499.00 2256.00 0.00 \N 0.00 142 100 2 2019-03-30 01:48:10.637533 2019-03-30 01:48:10.637533 550.00 1257.00 0.00 \N 50.00 143 101 2 2019-03-30 01:55:54.442938 2019-03-30 01:55:54.442938 729.00 1025.00 0.00 \N 0.00 144 102 2 2019-03-31 01:56:36.256516 2019-03-31 01:56:36.256516 1598.00 1620.00 0.00 \N 500.00 145 103 1 2019-03-31 01:59:30.982406 2019-03-31 01:59:30.982406 1398.00 1398.00 0.00 \N 0.00 146 103 2 2019-03-31 01:59:30.985841 2019-03-31 01:59:30.985841 2218.00 2297.00 0.00 \N 678.00 147 104 1 2019-03-31 21:42:41.869663 2019-03-31 21:42:41.869663 1474.00 1474.00 0.00 \N 0.00 148 105 1 2019-03-31 21:52:35.067936 2019-03-31 21:52:35.067936 1099.00 1099.00 0.00 \N 0.00 149 105 2 2019-03-31 21:52:35.06978 2019-03-31 21:52:35.06978 1399.00 2096.00 0.00 \N 0.00 150 106 2 2019-04-02 02:01:42.052506 2019-04-02 02:01:42.052506 2066.00 1599.00 0.00 \N 1063.00 151 106 4 2019-04-02 02:01:42.055414 2019-04-02 02:01:42.055414 1438.00 1438.00 0.00 \N 0.00 152 107 2 2019-04-03 02:00:15.995607 2019-04-03 02:00:15.995607 1368.00 1967.00 0.00 \N 0.00 153 108 2 2019-04-03 02:02:42.5044 2019-04-03 02:02:42.5044 200.00 800.00 0.00 \N 0.00 154 109 2 2019-04-04 01:58:42.690034 2019-04-04 01:58:42.690034 842.00 1509.00 0.00 \N 0.00 155 110 1 2019-04-04 02:02:55.834174 2019-04-04 02:02:55.834174 998.00 998.00 0.00 \N 0.00 156 111 2 2019-04-05 01:52:22.910428 2019-04-05 01:52:22.910428 589.00 1355.00 0.00 \N 0.00 157 111 4 2019-04-05 01:52:22.913314 2019-04-05 01:52:22.913314 2598.00 2598.00 0.00 \N 0.00 158 112 1 2019-04-05 02:05:01.829786 2019-04-05 02:05:01.829786 999.00 999.00 0.00 \N 0.00 159 112 2 2019-04-05 02:05:01.832857 2019-04-05 02:05:01.832857 919.00 1219.00 0.00 \N 0.00 160 112 4 2019-04-05 02:05:01.835119 2019-04-05 02:05:01.835119 1678.00 1678.00 0.00 \N 0.00 161 113 2 2019-04-06 01:28:16.311389 2019-04-06 01:28:16.311389 868.00 1573.00 0.00 \N 50.00 162 113 4 2019-04-06 01:28:16.314098 2019-04-06 01:28:16.314098 1699.01 1699.01 0.00 \N 0.00 163 114 1 2019-04-06 01:43:26.887435 2019-04-06 01:43:26.887435 968.00 968.00 0.00 \N 0.00 164 114 2 2019-04-06 01:43:26.889937 2019-04-06 01:43:26.889937 5325.00 5860.00 0.00 \N 0.00 165 115 2 2019-04-07 01:54:06.298851 2019-04-07 01:54:06.298851 799.00 1759.00 0.00 \N 0.00 166 116 2 2019-04-07 02:03:18.261019 2019-04-07 02:03:18.261019 649.00 484.00 0.00 \N 738.00 167 116 4 2019-04-07 02:03:18.263747 2019-04-07 02:03:18.263747 4244.00 4244.00 0.00 \N 0.00 168 117 2 2019-04-07 20:54:13.247494 2019-04-07 20:54:13.247494 599.00 1358.00 0.00 \N 0.00 169 118 2 2019-04-07 20:54:35.584269 2019-04-07 20:54:35.584269 479.00 963.00 0.00 \N 0.00 170 120 2 2019-04-09 01:58:50.598584 2019-04-09 01:58:50.598584 659.00 1072.00 0.00 \N 50.00 171 122 1 2019-04-10 01:54:52.230161 2019-04-10 01:54:52.230161 1000.00 1000.00 0.00 \N 0.00 172 122 2 2019-04-10 01:54:52.233115 2019-04-10 01:54:52.233115 199.00 771.00 0.00 \N 0.00 173 123 1 2019-04-11 01:56:25.482896 2019-04-11 01:56:25.482896 1049.00 1049.00 0.00 \N 0.00 174 123 2 2019-04-11 01:56:25.485821 2019-04-11 01:56:25.485821 1175.00 1747.00 0.00 \N 0.00 175 124 1 2019-04-11 01:58:27.334286 2019-04-11 01:58:27.334286 599.00 599.00 0.00 \N 0.00 176 124 2 2019-04-11 01:58:27.33699 2019-04-11 01:58:27.33699 3366.00 4124.00 0.00 \N 0.00 177 124 4 2019-04-11 01:58:27.339249 2019-04-11 01:58:27.339249 579.00 579.00 0.00 \N 0.00 178 125 4 2019-04-12 01:33:47.874075 2019-04-12 01:33:47.874075 699.00 699.00 0.00 \N 0.00 179 126 2 2019-04-12 01:50:30.511531 2019-04-12 01:50:30.511531 1498.00 2222.00 0.00 \N 0.00 180 127 2 2019-04-13 01:56:18.219264 2019-04-13 01:56:18.219264 4204.00 2951.00 0.00 \N 1800.00 181 127 4 2019-04-13 01:56:18.222755 2019-04-13 01:56:18.222755 1298.00 1298.00 0.00 \N 0.00 182 128 2 2019-04-13 02:01:27.895243 2019-04-13 02:01:27.895243 599.00 562.00 0.00 \N 800.00 183 129 2 2019-04-14 01:36:50.807934 2019-04-14 01:36:50.807934 480.00 328.00 0.00 \N 703.00 184 129 3 2019-04-14 01:36:50.811308 2019-04-14 01:36:50.811308 1299.00 1299.00 0.00 \N 0.00 185 130 2 2019-04-14 01:56:39.902271 2019-04-14 01:56:39.902271 1149.00 1711.00 0.00 \N 0.00 186 131 1 2019-04-14 20:51:54.630636 2019-04-14 20:51:54.630636 1499.00 1499.00 0.00 \N 0.00 187 131 2 2019-04-14 20:51:54.633017 2019-04-14 20:51:54.633017 350.00 960.00 0.00 \N 0.00 188 132 1 2019-04-14 20:55:07.79358 2019-04-14 20:55:07.79358 899.00 899.00 0.00 \N 0.00 189 133 2 2019-04-16 01:40:42.603342 2019-04-16 01:40:42.603342 2627.00 3105.00 0.00 \N 50.00 190 134 2 2019-04-16 01:56:03.036756 2019-04-16 01:56:03.036756 1816.00 2776.00 0.00 \N 0.00 191 136 2 2019-04-17 02:06:32.49817 2019-04-17 02:06:32.49817 1498.00 2053.00 0.00 \N 50.00 192 136 3 2019-04-17 02:06:32.500197 2019-04-17 02:06:32.500197 750.00 750.00 0.00 \N 0.00 193 137 2 2019-04-18 01:53:14.013631 2019-04-18 01:53:14.013631 6030.00 6206.00 0.00 \N 500.00 194 137 3 2019-04-18 01:53:14.015918 2019-04-18 01:53:14.015918 300.00 300.00 0.00 \N 0.00 195 138 2 2019-04-18 01:56:00.212024 2019-04-18 01:56:00.212024 2217.00 1570.00 0.00 \N 1200.00 196 138 4 2019-04-18 01:56:00.214567 2019-04-18 01:56:00.214567 1049.00 1049.00 0.00 \N 0.00 197 139 1 2019-04-23 01:56:23.587067 2019-04-23 01:56:23.587067 500.00 500.00 0.00 \N 0.00 198 139 2 2019-04-23 01:56:23.590253 2019-04-23 01:56:23.590253 3080.01 3651.01 0.00 \N 0.00 199 139 3 2019-04-23 01:56:23.593051 2019-04-23 01:56:23.593051 1498.00 1498.00 0.00 \N 0.00 200 140 4 2019-04-23 01:56:45.538351 2019-04-23 01:56:45.538351 469.00 469.00 0.00 \N 0.00 201 141 1 2019-04-24 01:53:10.359684 2019-04-24 01:53:10.359684 1868.00 1868.00 0.00 \N 0.00 202 141 2 2019-04-24 01:53:10.362694 2019-04-24 01:53:10.362694 899.00 1555.00 0.00 \N 0.00 203 142 2 2019-04-24 01:55:52.13125 2019-04-24 01:55:52.13125 3945.00 4596.00 0.00 \N 0.00 204 143 1 2019-04-25 01:54:34.853292 2019-04-25 01:54:34.853292 579.00 579.00 0.00 \N 0.00 205 143 2 2019-04-25 01:54:34.85553 2019-04-25 01:54:34.85553 1799.00 2355.00 0.00 \N 0.00 206 144 2 2019-04-25 01:56:04.827176 2019-04-25 01:56:04.827176 1488.00 2184.00 0.00 \N 0.00 207 144 3 2019-04-25 01:56:04.829495 2019-04-25 01:56:04.829495 1500.00 1500.00 0.00 \N 0.00 129 88 2 2019-03-24 01:56:57.388407 2019-03-24 01:56:57.388407 2356.00 2356.00 0.00 \N 500.00 208 145 3 2019-04-26 01:50:06.431421 2019-04-26 01:50:06.431421 3599.00 3599.00 0.00 \N 0.00 209 146 2 2019-04-26 01:56:01.750333 2019-04-26 01:56:01.750333 300.00 984.00 0.00 \N 0.00 210 147 2 2019-04-27 01:56:07.597647 2019-04-27 01:56:07.597647 299.00 983.00 0.00 \N 0.00 211 147 4 2019-04-27 01:56:07.600539 2019-04-27 01:56:07.600539 1399.00 1399.00 0.00 \N 0.00 212 148 2 2019-04-27 01:59:31.50685 2019-04-27 01:59:31.50685 649.00 1505.00 0.00 \N 0.00 213 149 2 2019-04-28 01:55:55.815473 2019-04-28 01:55:55.815473 3844.00 3057.00 0.00 \N 1270.00 214 149 4 2019-04-28 01:55:55.818463 2019-04-28 01:55:55.818463 1169.00 1169.00 0.00 \N 0.00 215 150 2 2019-04-28 01:56:22.362231 2019-04-28 01:56:22.362231 1798.00 2322.00 0.00 \N 0.00 216 151 1 2019-04-30 01:54:49.503736 2019-04-30 01:54:49.503736 699.00 699.00 0.00 \N 0.00 217 151 2 2019-04-30 01:54:49.507255 2019-04-30 01:54:49.507255 0.00 607.00 0.00 \N 50.00 218 151 4 2019-04-30 01:54:49.509559 2019-04-30 01:54:49.509559 899.00 899.00 0.00 \N 0.00 219 152 2 2019-04-30 02:00:05.02526 2019-04-30 02:00:05.02526 799.00 1323.00 0.00 \N 0.00 220 152 4 2019-04-30 02:00:05.02704 2019-04-30 02:00:05.02704 203.00 203.00 0.00 \N 0.00 221 153 2 2019-05-01 01:55:15.107224 2019-05-01 01:55:15.107224 1158.01 1682.01 0.00 \N 0.00 222 153 3 2019-05-01 01:55:15.110139 2019-05-01 01:55:15.110139 1000.00 1000.00 0.00 \N 0.00 223 154 2 2019-05-01 01:58:20.372549 2019-05-01 01:58:20.372549 3948.00 3777.00 0.00 \N 778.00 224 155 2 2019-05-01 21:55:18.077662 2019-05-01 21:55:18.077662 1699.00 2276.00 0.00 \N 0.00 225 157 1 2019-05-03 01:55:41.563767 2019-05-03 01:55:41.563767 1299.00 1299.00 0.00 \N 0.00 226 157 2 2019-05-03 01:55:41.566761 2019-05-03 01:55:41.566761 3747.00 3273.00 0.00 \N 1150.00 227 158 2 2019-05-03 01:57:28.617931 2019-05-03 01:57:28.617931 1498.00 1980.00 0.00 \N 0.00 228 159 2 2019-05-04 01:47:52.622923 2019-05-04 01:47:52.622923 669.00 1249.00 0.00 \N 0.00 273 185 2 2019-05-16 02:02:56.104969 2019-05-16 02:02:56.104969 864.00 1796.00 0.00 \N 50.00 229 160 2 2019-05-04 02:08:30.847488 2019-05-04 02:08:30.847488 3666.00 4289.00 0.00 \N 250.00 230 161 2 2019-05-05 01:49:11.427238 2019-05-05 01:49:11.427238 3197.00 3746.00 0.00 \N 0.00 231 161 4 2019-05-05 01:49:11.429762 2019-05-05 01:49:11.429762 1368.00 1368.00 0.00 \N 0.00 232 162 2 2019-05-05 02:01:55.808758 2019-05-05 02:01:55.808758 4675.00 4066.00 0.00 \N 1398.00 233 162 4 2019-05-05 02:01:55.811265 2019-05-05 02:01:55.811265 1427.00 1427.00 0.00 \N 0.00 234 163 3 2019-05-05 21:01:38.835726 2019-05-05 21:01:38.835726 2567.00 2567.00 0.00 \N 0.00 235 164 2 2019-05-05 21:06:34.212485 2019-05-05 21:06:34.212485 1718.00 2414.00 0.00 \N 0.00 236 164 3 2019-05-05 21:06:34.214234 2019-05-05 21:06:34.214234 2215.00 2215.00 0.00 \N 0.00 237 165 2 2019-05-07 01:36:02.739834 2019-05-07 01:36:02.739834 4634.99 5302.99 0.00 \N 0.00 238 166 1 2019-05-07 01:40:14.140336 2019-05-07 01:40:14.140336 1468.00 1468.00 0.00 \N 0.00 239 166 2 2019-05-07 01:40:14.142093 2019-05-07 01:40:14.142093 3694.99 4010.99 0.00 \N 750.00 240 167 2 2019-05-08 01:54:51.259511 2019-05-08 01:54:51.259511 252.00 1155.00 0.00 \N 0.00 241 167 4 2019-05-08 01:54:51.261583 2019-05-08 01:54:51.261583 1718.00 1718.00 0.00 \N 0.00 242 168 1 2019-05-08 01:58:05.93403 2019-05-08 01:58:05.93403 899.00 899.00 0.00 \N 0.00 243 168 2 2019-05-08 01:58:05.936929 2019-05-08 01:58:05.936929 4274.99 5735.99 0.00 \N 50.00 244 168 4 2019-05-08 01:58:05.939248 2019-05-08 01:58:05.939248 1867.01 1867.01 0.00 \N 0.00 245 169 1 2019-05-09 01:54:29.485013 2019-05-09 01:54:29.485013 589.00 589.00 0.00 \N 0.00 246 169 2 2019-05-09 01:54:29.487556 2019-05-09 01:54:29.487556 7598.00 8753.00 0.00 \N 0.00 247 169 4 2019-05-09 01:54:29.489507 2019-05-09 01:54:29.489507 469.00 469.00 0.00 \N 0.00 248 170 1 2019-05-09 02:00:53.240217 2019-05-09 02:00:53.240217 3047.00 3047.00 0.00 \N 0.00 249 170 2 2019-05-09 02:00:53.243265 2019-05-09 02:00:53.243265 10504.00 11690.00 0.00 \N 50.00 250 170 4 2019-05-09 02:00:53.246281 2019-05-09 02:00:53.246281 1548.00 1548.00 0.00 \N 0.00 251 171 2 2019-05-09 02:07:09.995592 2019-05-09 02:07:09.995592 589.00 1379.00 0.00 \N 0.00 252 172 1 2019-05-10 02:17:11.58325 2019-05-10 02:17:11.58325 935.00 935.00 0.00 \N 0.00 253 172 2 2019-05-10 02:17:11.586412 2019-05-10 02:17:11.586412 8329.00 8725.00 0.00 \N 483.00 254 172 4 2019-05-10 02:17:11.589044 2019-05-10 02:17:11.589044 1698.00 1698.00 0.00 \N 0.00 255 173 2 2019-05-10 02:37:40.185934 2019-05-10 02:37:40.185934 7553.99 8506.99 0.00 \N 0.00 256 173 4 2019-05-10 02:37:40.188195 2019-05-10 02:37:40.188195 1898.00 1898.00 0.00 \N 0.00 257 174 2 2019-05-10 21:51:07.202851 2019-05-10 21:51:07.202851 499.00 1206.00 0.00 \N 0.00 258 174 4 2019-05-10 21:51:07.205068 2019-05-10 21:51:07.205068 2298.00 2298.00 0.00 \N 0.00 259 175 2 2019-05-10 21:57:05.332686 2019-05-10 21:57:05.332686 2567.00 3292.00 0.00 \N 0.00 260 176 2 2019-05-12 01:55:35.72955 2019-05-12 01:55:35.72955 1818.00 2524.00 0.00 \N 0.00 261 177 2 2019-05-12 02:45:15.095147 2019-05-12 02:45:15.095147 5573.00 2227.00 0.00 \N 4138.00 262 177 4 2019-05-12 02:45:15.098584 2019-05-12 02:45:15.098584 1080.00 1080.00 0.00 \N 0.00 263 178 2 2019-05-12 20:48:31.247289 2019-05-12 20:48:31.247289 500.00 1027.00 0.00 \N 0.00 264 179 2 2019-05-12 20:53:47.969229 2019-05-12 20:53:47.969229 1149.00 1773.00 0.00 \N 0.00 265 180 1 2019-05-14 01:59:11.035172 2019-05-14 01:59:11.035172 1499.00 1499.00 0.00 \N 0.00 266 180 2 2019-05-14 01:59:11.038791 2019-05-14 01:59:11.038791 0.00 457.00 0.00 \N 70.00 267 181 3 2019-05-14 02:02:56.367831 2019-05-14 02:02:56.367831 749.00 749.00 0.00 \N 0.00 268 182 2 2019-05-15 01:56:09.34129 2019-05-15 01:56:09.34129 1759.10 2532.10 0.00 \N 0.00 269 183 3 2019-05-15 02:12:30.738047 2019-05-15 02:12:30.738047 3448.00 3448.00 0.00 \N 0.00 270 183 2 2019-05-15 02:12:30.740936 2019-05-15 02:12:30.740936 3377.00 3584.00 0.00 \N 250.00 271 184 4 2019-05-16 01:57:01.71631 2019-05-16 01:57:01.71631 3997.00 3997.00 0.00 \N 0.00 272 184 2 2019-05-16 01:57:01.719462 2019-05-16 01:57:01.719462 1575.00 2348.00 0.00 \N 0.00 274 185 3 2019-05-16 02:02:56.109188 2019-05-16 02:02:56.109188 297.01 297.01 0.00 \N 0.00 275 185 1 2019-05-16 02:02:56.113366 2019-05-16 02:02:56.113366 2377.00 2377.00 0.00 \N 0.00 276 186 1 2019-05-17 01:57:03.181779 2019-05-17 01:57:03.181779 1598.00 1598.00 0.00 \N 0.00 277 187 2 2019-05-17 02:03:40.699505 2019-05-17 02:03:40.699505 3387.00 4134.00 0.00 \N 250.00 278 187 1 2019-05-17 02:03:40.703347 2019-05-17 02:03:40.703347 1339.00 1339.00 0.00 \N 0.00 279 188 2 2019-05-18 01:53:29.126037 2019-05-18 01:53:29.126037 1658.00 2165.00 0.00 \N 0.00 280 189 2 2019-05-18 02:02:02.676211 2019-05-18 02:02:02.676211 2591.00 3475.00 0.00 \N 50.00 281 189 1 2019-05-18 02:02:02.68137 2019-05-18 02:02:02.68137 1268.00 1268.00 0.00 \N 0.00 282 190 2 2019-05-19 01:55:45.989066 2019-05-19 01:55:45.989066 1071.00 1016.00 0.00 \N 720.00 283 191 2 2019-05-19 01:59:29.517077 2019-05-19 01:59:29.517077 2374.00 1171.00 0.00 \N 2178.00 284 191 4 2019-05-19 01:59:29.520442 2019-05-19 01:59:29.520442 1399.00 1399.00 0.00 \N 0.00 285 192 4 2019-05-19 20:55:51.541801 2019-05-19 20:55:51.541801 599.00 599.00 0.00 \N 0.00 286 193 2 2019-05-19 20:59:39.086767 2019-05-19 20:59:39.086767 1249.00 2020.00 0.00 \N 0.00 287 193 4 2019-05-19 20:59:39.089448 2019-05-19 20:59:39.089448 949.00 949.00 0.00 \N 0.00 288 193 1 2019-05-19 20:59:39.091683 2019-05-19 20:59:39.091683 699.00 699.00 0.00 \N 0.00 289 194 2 2019-05-21 01:46:31.890638 2019-05-21 01:46:31.890638 3177.00 3932.00 0.00 \N 71.00 290 195 2 2019-05-21 02:00:52.181045 2019-05-21 02:00:52.181045 2357.00 2873.00 0.00 \N 0.00 291 196 2 2019-05-22 01:55:07.441308 2019-05-22 01:55:07.441308 1680.00 2153.00 0.00 \N 0.00 292 196 4 2019-05-22 01:55:07.445594 2019-05-22 01:55:07.445594 619.00 619.00 0.00 \N 0.00 293 197 2 2019-05-22 02:09:08.04306 2019-05-22 02:09:08.04306 3695.19 4527.19 0.00 \N 0.00 294 197 4 2019-05-22 02:09:08.047392 2019-05-22 02:09:08.047392 3477.00 3477.00 0.00 \N 0.00 295 198 4 2019-05-23 01:56:53.632316 2019-05-23 01:56:53.632316 1500.00 1500.00 0.00 \N 0.00 296 198 2 2019-05-23 01:56:53.6364 2019-05-23 01:56:53.6364 4695.99 5348.99 0.00 \N 0.00 297 199 2 2019-05-23 02:00:58.598672 2019-05-23 02:00:58.598672 1698.00 2277.00 0.00 \N 50.00 298 199 4 2019-05-23 02:00:58.603305 2019-05-23 02:00:58.603305 2068.00 2068.00 0.00 \N 0.00 299 200 1 2019-05-24 01:51:33.014385 2019-05-24 01:51:33.014385 2816.01 2816.01 0.00 \N 0.00 300 200 2 2019-05-24 01:51:33.017832 2019-05-24 01:51:33.017832 2632.00 3228.00 0.00 \N 50.00 301 201 2 2019-05-24 01:53:14.823022 2019-05-24 01:53:14.823022 3692.00 4541.00 0.00 \N 0.00 302 201 1 2019-05-24 01:53:14.824953 2019-05-24 01:53:14.824953 799.00 799.00 0.00 \N 0.00 303 202 4 2019-05-25 01:56:20.868126 2019-05-25 01:56:20.868126 1798.00 1798.00 0.00 \N 0.00 304 202 2 2019-05-25 01:56:20.87078 2019-05-25 01:56:20.87078 1089.00 1330.00 0.00 \N 500.00 305 203 2 2019-05-25 02:02:39.643338 2019-05-25 02:02:39.643338 1388.00 2116.00 0.00 \N 0.00 306 203 1 2019-05-25 02:02:39.645605 2019-05-25 02:02:39.645605 1518.00 1518.00 0.00 \N 0.00 307 204 4 2019-05-26 01:56:44.447407 2019-05-26 01:56:44.447407 1857.00 1857.00 0.00 \N 0.00 308 204 1 2019-05-26 01:56:44.451134 2019-05-26 01:56:44.451134 699.00 699.00 0.00 \N 0.00 309 204 2 2019-05-26 01:56:44.45385 2019-05-26 01:56:44.45385 4262.31 3550.31 0.00 \N 1328.00 310 205 4 2019-05-26 01:57:44.150768 2019-05-26 01:57:44.150768 4696.00 4696.00 0.00 \N 0.00 311 205 2 2019-05-26 01:57:44.15299 2019-05-26 01:57:44.15299 1448.00 2078.00 0.00 \N 0.00 312 206 2 2019-05-26 20:50:21.349379 2019-05-26 20:50:21.349379 889.00 1677.00 0.00 \N 0.00 313 206 4 2019-05-26 20:50:21.351361 2019-05-26 20:50:21.351361 969.00 969.00 0.00 \N 0.00 314 207 2 2019-05-26 21:02:34.072416 2019-05-26 21:02:34.072416 1378.00 1728.00 0.00 \N 200.00 315 208 1 2019-05-28 01:49:07.119409 2019-05-28 01:49:07.119409 1099.00 1099.00 0.00 \N 0.00 316 208 2 2019-05-28 01:49:07.121554 2019-05-28 01:49:07.121554 2786.00 3064.00 0.00 \N 450.00 317 209 2 2019-05-29 01:54:53.368471 2019-05-29 01:54:53.368471 1599.00 2276.00 0.00 \N 0.00 318 210 2 2019-05-29 02:02:17.270959 2019-05-29 02:02:17.270959 1388.00 2452.00 0.00 \N 0.00 319 210 1 2019-05-29 02:02:17.273709 2019-05-29 02:02:17.273709 2138.00 2138.00 0.00 \N 0.00 320 213 1 2019-05-31 01:58:54.202963 2019-05-31 01:58:54.202963 300.00 300.00 0.00 \N 0.00 321 213 2 2019-05-31 01:58:54.206095 2019-05-31 01:58:54.206095 669.00 1345.00 0.00 \N 100.00 322 214 5 2019-05-31 02:03:42.399071 2019-05-31 02:03:42.399071 1649.00 1649.00 0.00 \N 0.00 323 214 2 2019-05-31 02:03:42.400866 2019-05-31 02:03:42.400866 1569.00 1921.00 0.00 \N 400.00 324 214 4 2019-05-31 02:03:42.402471 2019-05-31 02:03:42.402471 20.00 20.00 0.00 \N 0.00 325 214 1 2019-05-31 02:03:42.404018 2019-05-31 02:03:42.404018 779.00 779.00 0.00 \N 0.00 326 215 3 2019-06-01 01:55:48.569029 2019-06-01 01:55:48.569029 3000.00 3000.00 0.00 \N 0.00 327 215 1 2019-06-01 01:55:48.571507 2019-06-01 01:55:48.571507 2757.00 2757.00 0.00 \N 0.00 328 216 2 2019-06-01 02:06:21.308889 2019-06-01 02:06:21.308889 3807.00 4218.00 0.00 \N 0.00 329 217 2 2019-06-02 01:44:05.942939 2019-06-02 01:44:05.942939 1249.00 1030.00 0.00 \N 1238.00 330 218 2 2019-06-02 01:53:02.374045 2019-06-02 01:53:02.374045 1679.00 2524.00 0.00 \N 0.00 331 219 4 2019-06-02 20:55:37.154029 2019-06-02 20:55:37.154029 1098.00 1098.00 0.00 \N 0.00 332 220 2 2019-06-04 01:45:31.98492 2019-06-04 01:45:31.98492 0.00 480.00 0.00 \N 50.00 333 220 1 2019-06-04 01:45:31.987617 2019-06-04 01:45:31.987617 489.00 489.00 0.00 \N 0.00 334 222 2 2019-06-05 01:54:50.476698 2019-06-05 01:54:50.476698 2249.00 2335.00 0.00 \N 394.00 335 223 2 2019-06-05 01:57:22.950836 2019-06-05 01:57:22.950836 1199.00 2273.00 0.00 \N 0.00 336 225 2 2019-06-06 01:19:13.893931 2019-06-06 01:19:13.893931 0.00 785.00 0.00 \N 50.00 337 225 1 2019-06-06 01:19:13.897967 2019-06-06 01:19:13.897967 500.00 500.00 0.00 \N 0.00 338 226 2 2019-06-07 01:49:06.769083 2019-06-07 01:49:06.769083 2717.00 3216.00 0.00 \N 306.00 339 226 3 2019-06-07 01:49:06.771634 2019-06-07 01:49:06.771634 299.00 299.00 0.00 \N 0.00 340 227 2 2019-06-07 01:59:26.417476 2019-06-07 01:59:26.417476 1475.00 2359.00 0.00 \N 0.00 341 228 2 2019-06-08 02:54:36.438603 2019-06-08 02:54:36.438603 0.00 659.00 0.00 \N 200.00 342 229 2 2019-06-08 23:11:08.112792 2019-06-08 23:11:08.112792 579.00 567.00 0.00 \N 1028.00 343 230 2 2019-06-09 02:04:14.547006 2019-06-09 02:04:14.547006 2791.00 2500.00 0.00 \N 950.00 344 231 2 2019-06-09 02:18:35.956858 2019-06-09 02:18:35.956858 1448.00 2015.00 0.00 \N 0.00 345 232 4 2019-06-09 20:52:59.074624 2019-06-09 20:52:59.074624 1499.00 1499.00 0.00 \N 0.00 346 233 2 2019-06-09 20:58:15.074178 2019-06-09 20:58:15.074178 0.00 564.00 0.00 \N 157.00 347 233 4 2019-06-09 20:58:15.077574 2019-06-09 20:58:15.077574 1599.00 1599.00 0.00 \N 0.00 348 235 2 2019-06-11 02:07:16.685307 2019-06-11 02:07:16.685307 2008.00 2575.00 0.00 \N 0.00 349 236 2 2019-06-12 01:54:19.584698 2019-06-12 01:54:19.584698 1599.00 2369.00 0.00 \N 0.00 350 237 2 2019-06-12 01:59:02.919784 2019-06-12 01:59:02.919784 2256.00 2831.00 0.00 \N 0.00 351 239 2 2019-06-13 02:01:51.519576 2019-06-13 02:01:51.519576 892.00 1723.00 0.00 \N 0.00 352 240 2 2019-06-14 01:58:42.185598 2019-06-14 01:58:42.185598 1519.00 2232.00 0.00 \N 10.00 353 240 1 2019-06-14 01:58:42.189403 2019-06-14 01:58:42.189403 689.01 689.01 0.00 \N 0.00 354 240 4 2019-06-14 01:58:42.192311 2019-06-14 01:58:42.192311 1249.00 1249.00 0.00 \N 0.00 355 241 4 2019-06-14 02:10:16.980752 2019-06-14 02:10:16.980752 500.00 500.00 0.00 \N 0.00 356 241 2 2019-06-14 02:10:16.982463 2019-06-14 02:10:16.982463 397.00 1066.00 0.00 \N 0.00 357 242 2 2019-06-15 01:59:04.948892 2019-06-15 01:59:04.948892 1395.00 1961.00 0.00 \N 0.00 358 243 3 2019-06-15 02:02:45.81702 2019-06-15 02:02:45.81702 300.00 300.00 0.00 \N 0.00 359 243 2 2019-06-15 02:02:45.820148 2019-06-15 02:02:45.820148 1578.00 1260.00 0.00 \N 1050.00 360 244 2 2019-06-16 01:58:23.357835 2019-06-16 01:58:23.357835 599.00 1010.00 0.00 \N 50.00 361 244 4 2019-06-16 01:58:23.360075 2019-06-16 01:58:23.360075 1478.00 1478.00 0.00 \N 0.00 362 245 1 2019-06-16 02:00:12.215075 2019-06-16 02:00:12.215075 2752.00 2752.00 0.00 \N 0.00 363 245 4 2019-06-16 02:00:12.217737 2019-06-16 02:00:12.217737 1767.99 1767.99 0.00 \N 0.00 364 245 2 2019-06-16 02:00:12.219501 2019-06-16 02:00:12.219501 2298.00 1270.00 0.00 \N 1788.00 365 246 2 2019-06-16 20:51:19.340829 2019-06-16 20:51:19.340829 604.00 1424.00 0.00 \N 0.00 366 249 4 2019-06-18 01:53:36.444565 2019-06-18 01:53:36.444565 699.00 699.00 0.00 \N 0.00 367 250 2 2019-06-19 01:56:20.771344 2019-06-19 01:56:20.771344 3587.00 4511.00 0.00 \N 0.00 368 250 1 2019-06-19 01:56:20.773946 2019-06-19 01:56:20.773946 399.00 399.00 0.00 \N 0.00 369 251 2 2019-06-19 02:06:11.287279 2019-06-19 02:06:11.287279 1863.00 2373.00 0.00 \N 0.00 370 252 2 2019-06-20 01:57:36.470365 2019-06-20 01:57:36.470365 1357.00 2368.00 0.00 \N 0.00 371 252 1 2019-06-20 01:57:36.473908 2019-06-20 01:57:36.473908 200.00 200.00 0.00 \N 0.00 372 253 2 2019-06-20 02:04:47.527957 2019-06-20 02:04:47.527957 1098.00 1671.00 0.00 \N 0.00 373 254 2 2019-06-21 02:07:11.674907 2019-06-21 02:07:11.674907 4946.00 4914.00 0.00 \N 1000.00 374 255 2 2019-06-21 02:11:26.634571 2019-06-21 02:11:26.634571 2997.00 3651.00 0.00 \N 0.00 375 255 1 2019-06-21 02:11:26.636719 2019-06-21 02:11:26.636719 1198.00 1198.00 0.00 \N 0.00 376 256 2 2019-06-22 01:56:47.045583 2019-06-22 01:56:47.045583 1888.00 2702.00 0.00 \N 0.00 377 256 1 2019-06-22 01:56:47.04813 2019-06-22 01:56:47.04813 599.00 599.00 0.00 \N 0.00 378 257 2 2019-06-22 02:05:40.896426 2019-06-22 02:05:40.896426 1837.00 2353.00 0.00 \N 100.00 379 257 4 2019-06-22 02:05:40.899468 2019-06-22 02:05:40.899468 350.00 350.00 0.00 \N 0.00 380 258 4 2019-06-23 01:58:10.596823 2019-06-23 01:58:10.596823 2795.00 2795.00 0.00 \N 0.00 381 258 2 2019-06-23 01:58:10.59945 2019-06-23 01:58:10.59945 2288.00 2260.00 0.00 \N 750.00 382 259 2 2019-06-23 02:02:16.540864 2019-06-23 02:02:16.540864 2912.30 2986.30 0.00 \N 628.00 383 263 2 2019-06-25 02:08:10.93873 2019-06-25 02:08:10.93873 500.00 1061.00 0.00 \N 0.00 384 264 2 2019-06-26 01:56:53.346569 2019-06-26 01:56:53.346569 1199.00 1665.00 0.00 \N 520.00 385 265 2 2019-06-26 02:01:58.178359 2019-06-26 02:01:58.178359 759.00 1320.00 0.00 \N 0.00 386 267 2 2019-06-28 01:58:33.455187 2019-06-28 01:58:33.455187 1874.00 2739.00 0.00 \N 200.00 387 268 2 2019-06-28 02:09:17.836491 2019-06-28 02:09:17.836491 489.00 489.00 0.00 \N 0.00 388 269 2 2019-06-29 02:03:04.691648 2019-06-29 02:03:04.691648 0.00 689.00 0.00 \N 550.00 389 270 2 2019-06-29 02:07:20.480416 2019-06-29 02:07:20.480416 0.00 662.00 0.00 \N 50.00 390 270 4 2019-06-29 02:07:20.483763 2019-06-29 02:07:20.483763 1299.00 1299.00 0.00 \N 0.00 391 271 1 2019-06-30 01:53:42.807408 2019-06-30 01:53:42.807408 1399.00 1399.00 0.00 \N 0.00 392 271 2 2019-06-30 01:53:42.810086 2019-06-30 01:53:42.810086 2362.00 1973.00 0.00 \N 1078.00 393 272 2 2019-06-30 02:06:45.683856 2019-06-30 02:06:45.683856 2457.00 2219.00 0.00 \N 900.00 394 272 4 2019-06-30 02:06:45.686921 2019-06-30 02:06:45.686921 869.00 869.00 0.00 \N 0.00 395 273 2 2019-06-30 20:56:00.393221 2019-06-30 20:56:00.393221 300.00 1073.00 0.00 \N 0.00 396 275 2 2019-07-02 01:56:30.833064 2019-07-02 01:56:30.833064 2727.00 3800.00 0.00 \N 0.00 397 275 3 2019-07-02 01:56:30.835353 2019-07-02 01:56:30.835353 479.00 479.00 0.00 \N 0.00 398 275 4 2019-07-02 01:56:30.8373 2019-07-02 01:56:30.8373 1299.00 1299.00 0.00 \N 0.00 399 277 2 2019-07-03 01:58:06.382968 2019-07-03 01:58:06.382968 1199.00 2199.00 0.00 \N 0.00 400 278 3 2019-07-03 02:03:33.717113 2019-07-03 02:03:33.717113 1398.30 1398.30 0.00 \N 0.00 401 278 2 2019-07-03 02:03:33.719709 2019-07-03 02:03:33.719709 1758.00 2477.00 0.00 \N 0.00 402 279 2 2019-07-03 02:14:32.054496 2019-07-03 02:14:32.054496 1407.00 2084.00 0.00 \N 0.00 403 280 2 2019-07-04 01:51:50.209304 2019-07-04 01:51:50.209304 1698.00 2697.00 0.00 \N 0.00 404 281 4 2019-07-04 01:58:24.543629 2019-07-04 01:58:24.543629 889.01 889.01 0.00 \N 0.00 405 282 2 2019-07-05 01:58:01.732663 2019-07-05 01:58:01.732663 3027.00 3224.00 0.00 \N 800.00 406 282 3 2019-07-05 01:58:01.73487 2019-07-05 01:58:01.73487 1799.00 1799.00 0.00 \N 0.00 407 283 2 2019-07-05 02:09:21.29128 2019-07-05 02:09:21.29128 0.00 634.00 0.00 \N 50.00 408 285 1 2019-07-06 02:07:35.780937 2019-07-06 02:07:35.780937 1479.00 1479.00 0.00 \N 0.00 409 285 2 2019-07-06 02:07:35.784158 2019-07-06 02:07:35.784158 1681.00 1406.00 0.00 \N 1099.00 410 286 2 2019-07-06 02:08:07.217509 2019-07-06 02:08:07.217509 1399.00 1333.00 0.00 \N 700.00 411 287 2 2019-07-07 01:49:01.70746 2019-07-07 01:49:01.70746 630.00 1401.00 0.00 \N 135.00 412 291 2 2019-07-09 01:54:16.152707 2019-07-09 01:54:16.152707 400.00 1201.00 0.00 \N 0.00 413 292 2 2019-07-09 02:04:19.64983 2019-07-09 02:04:19.64983 1169.00 1802.00 0.00 \N 0.00 414 293 1 2019-07-10 01:54:57.177438 2019-07-10 01:54:57.177438 1599.00 1599.00 0.00 \N 0.00 415 293 2 2019-07-10 01:54:57.179647 2019-07-10 01:54:57.179647 1790.00 2591.00 0.00 \N 0.00 416 294 2 2019-07-10 02:05:26.162929 2019-07-10 02:05:26.162929 599.00 1201.00 0.00 \N 0.00 417 295 4 2019-07-11 01:57:48.480417 2019-07-11 01:57:48.480417 799.00 799.00 0.00 \N 0.00 418 298 2 2019-07-12 02:10:28.414877 2019-07-12 02:10:28.414877 299.00 909.00 0.00 \N 100.00 419 299 2 2019-07-13 01:55:23.155655 2019-07-13 01:55:23.155655 1379.01 1920.01 0.00 \N 550.00 420 299 5 2019-07-13 01:55:23.158054 2019-07-13 01:55:23.158054 1399.00 1399.00 0.00 \N 0.00 421 301 4 2019-07-14 01:55:48.059037 2019-07-14 01:55:48.059037 599.00 599.00 0.00 \N 0.00 422 301 2 2019-07-14 01:55:48.061052 2019-07-14 01:55:48.061052 499.00 179.00 0.00 \N 720.00 423 302 1 2019-07-14 02:22:41.344067 2019-07-14 02:22:41.344067 435.00 435.00 0.00 \N 0.00 424 302 2 2019-07-14 02:22:41.345959 2019-07-14 02:22:41.345959 1498.00 1740.00 0.00 \N 678.00 425 304 2 2019-07-16 01:56:11.470439 2019-07-16 01:56:11.470439 2797.00 3176.00 0.00 \N 0.00 426 305 2 2019-07-16 01:56:30.786424 2019-07-16 01:56:30.786424 500.00 850.00 0.00 \N 170.00 427 306 2 2019-07-17 01:55:05.603236 2019-07-17 01:55:05.603236 0.00 70.00 0.00 \N 726.00 428 307 2 2019-07-17 16:22:21.465107 2019-07-17 16:22:21.465107 1299.00 1299.00 0.00 \N 0.00 429 308 2 2019-07-18 02:07:17.367153 2019-07-18 02:07:17.367153 8140.00 8439.00 0.00 \N 0.00 430 309 2 2019-07-18 02:14:44.71155 2019-07-18 02:14:44.71155 2048.00 2118.00 0.00 \N 0.00 431 309 4 2019-07-18 02:14:44.714065 2019-07-18 02:14:44.714065 1299.00 1299.00 0.00 \N 0.00 432 312 2 2019-07-20 02:00:52.480965 2019-07-20 02:00:52.480965 1278.00 1294.00 0.00 \N 850.00 433 313 2 2019-07-20 02:09:17.705499 2019-07-20 02:09:17.705499 1748.00 2437.00 0.00 \N 50.00 434 314 1 2019-07-21 01:38:30.887813 2019-07-21 01:38:30.887813 1299.00 1299.00 0.00 \N 0.00 435 314 2 2019-07-21 01:38:30.891148 2019-07-21 01:38:30.891148 2049.00 2187.00 0.00 \N 498.00 436 314 5 2019-07-21 01:38:30.893944 2019-07-21 01:38:30.893944 2446.01 2446.01 0.00 \N 0.00 437 315 2 2019-07-21 01:57:36.353117 2019-07-21 01:57:36.353117 2086.00 2680.00 0.00 \N 0.00 438 316 2 2019-07-21 20:56:27.527061 2019-07-21 20:56:27.527061 579.00 1159.00 0.00 \N 0.00 439 317 2 2019-07-21 21:06:27.730925 2019-07-21 21:06:27.730925 1098.20 1785.20 0.00 \N 0.00 440 317 4 2019-07-21 21:06:27.733592 2019-07-21 21:06:27.733592 1898.00 1898.00 0.00 \N 0.00 441 318 2 2019-07-23 01:59:53.121817 2019-07-23 01:59:53.121817 695.00 1030.00 0.00 \N 250.00 442 319 2 2019-07-23 02:14:52.058394 2019-07-23 02:14:52.058394 648.00 1207.00 0.00 \N 0.00 443 320 2 2019-07-24 01:56:56.059377 2019-07-24 01:56:56.059377 1299.00 1829.00 0.00 \N 0.00 444 320 3 2019-07-24 01:56:56.061622 2019-07-24 01:56:56.061622 999.00 999.00 0.00 \N 0.00 445 320 5 2019-07-24 01:56:56.063279 2019-07-24 01:56:56.063279 1799.00 1799.00 0.00 \N 0.00 446 321 2 2019-07-24 02:00:50.296903 2019-07-24 02:00:50.296903 1149.00 1957.00 0.00 \N 0.00 447 321 3 2019-07-24 02:00:50.298644 2019-07-24 02:00:50.298644 300.00 300.00 0.00 \N 0.00 448 322 2 2019-07-25 02:01:49.278323 2019-07-25 02:01:49.278323 3727.00 4336.00 0.00 \N 20.00 449 323 2 2019-07-25 02:06:33.518001 2019-07-25 02:06:33.518001 1648.00 2405.00 0.00 \N 0.00 450 324 2 2019-07-26 02:00:15.352704 2019-07-26 02:00:15.352704 519.20 1275.20 0.00 \N 50.00 451 325 2 2019-07-26 02:06:38.033332 2019-07-26 02:06:38.033332 6065.00 6701.00 0.00 \N 0.00 452 326 2 2019-07-27 01:55:02.422166 2019-07-27 01:55:02.422166 3226.00 3299.00 0.00 \N 628.00 453 326 4 2019-07-27 01:55:02.424406 2019-07-27 01:55:02.424406 2138.00 2138.00 0.00 \N 0.00 454 327 2 2019-07-27 02:38:00.267797 2019-07-27 02:38:00.267797 909.00 1684.00 0.00 \N 0.00 455 328 2 2019-07-28 01:49:14.065233 2019-07-28 01:49:14.065233 1947.00 2625.00 0.00 \N 0.00 456 328 4 2019-07-28 01:49:14.067332 2019-07-28 01:49:14.067332 729.00 729.00 0.00 \N 0.00 457 329 1 2019-07-28 01:57:06.330548 2019-07-28 01:57:06.330548 1268.00 1268.00 0.00 \N 0.00 458 329 2 2019-07-28 01:57:06.33238 2019-07-28 01:57:06.33238 3266.00 3135.00 0.00 \N 930.00 459 331 2 2019-07-28 20:55:44.033298 2019-07-28 20:55:44.033298 499.00 1134.00 0.00 \N 0.00 460 332 2 2019-07-30 01:59:23.601751 2019-07-30 01:59:23.601751 0.00 619.00 0.00 \N 15.00 461 333 1 2019-07-31 02:00:41.385666 2019-07-31 02:00:41.385666 1299.00 1299.00 0.00 \N 0.00 462 333 2 2019-07-31 02:00:41.388478 2019-07-31 02:00:41.388478 649.00 1268.00 0.00 \N 0.00 463 334 2 2019-07-31 02:00:51.506453 2019-07-31 02:00:51.506453 1268.00 1693.00 0.00 \N 200.00 464 335 2 2019-08-01 01:43:25.311819 2019-08-01 01:43:25.311819 838.00 2056.00 0.00 \N 50.00 465 335 3 2019-08-01 01:43:25.314158 2019-08-01 01:43:25.314158 500.00 500.00 0.00 \N 0.00 466 335 4 2019-08-01 01:43:25.315975 2019-08-01 01:43:25.315975 1399.00 1399.00 0.00 \N 0.00 467 336 2 2019-08-01 01:59:33.0932 2019-08-01 01:59:33.0932 669.00 1164.00 0.00 \N 0.00 468 336 4 2019-08-01 01:59:33.095475 2019-08-01 01:59:33.095475 729.00 729.00 0.00 \N 0.00 469 337 2 2019-08-02 02:04:21.578377 2019-08-02 02:04:21.578377 1299.00 2305.00 0.00 \N 50.00 470 338 1 2019-08-02 02:04:23.927565 2019-08-02 02:04:23.927565 999.00 999.00 0.00 \N 0.00 471 339 2 2019-08-03 01:56:53.239852 2019-08-03 01:56:53.239852 2099.00 1476.00 0.00 \N 1428.00 472 339 3 2019-08-03 01:56:53.245875 2019-08-03 01:56:53.245875 1999.00 1999.00 0.00 \N 0.00 473 340 2 2019-08-03 02:01:54.651681 2019-08-03 02:01:54.651681 0.00 64.00 0.00 \N 700.00 474 341 1 2019-08-04 01:47:01.805688 2019-08-04 01:47:01.805688 699.00 699.00 0.00 \N 0.00 475 341 2 2019-08-04 01:47:01.807636 2019-08-04 01:47:01.807636 539.00 1007.00 0.00 \N 50.00 476 341 4 2019-08-04 01:47:01.809388 2019-08-04 01:47:01.809388 1318.00 1318.00 0.00 \N 0.00 477 342 1 2019-08-04 01:52:02.834144 2019-08-04 01:52:02.834144 899.00 899.00 0.00 \N 0.00 478 342 2 2019-08-04 01:52:02.837222 2019-08-04 01:52:02.837222 2269.00 3195.00 0.00 \N 50.00 479 342 4 2019-08-04 01:52:02.839834 2019-08-04 01:52:02.839834 999.00 999.00 0.00 \N 0.00 480 344 1 2019-08-06 01:57:32.499154 2019-08-06 01:57:32.499154 1998.00 1998.00 0.00 \N 0.00 481 344 2 2019-08-06 01:57:32.501867 2019-08-06 01:57:32.501867 250.00 1245.00 0.00 \N 0.00 482 346 2 2019-08-07 01:54:00.787598 2019-08-07 01:54:00.787598 649.00 1256.00 0.00 \N 0.00 483 348 2 2019-08-08 01:57:21.020606 2019-08-08 01:57:21.020606 200.00 606.00 0.00 \N 50.00 484 349 2 2019-08-08 01:58:45.436212 2019-08-08 01:58:45.436212 180.00 925.00 0.00 \N 0.00 485 351 2 2019-08-09 01:37:04.798401 2019-08-09 01:37:04.798401 1583.00 2138.00 0.00 \N 370.00 486 352 2 2019-08-10 01:29:00.185099 2019-08-10 01:29:00.185099 998.00 754.00 0.00 \N 850.00 487 353 2 2019-08-10 01:32:32.072924 2019-08-10 01:32:32.072924 419.00 1007.00 0.00 \N 50.00 488 353 4 2019-08-10 01:32:32.075289 2019-08-10 01:32:32.075289 2268.00 2268.00 0.00 \N 0.00 489 354 1 2019-08-11 01:58:01.017328 2019-08-11 01:58:01.017328 732.00 732.00 0.00 \N 0.00 490 354 2 2019-08-11 01:58:01.021333 2019-08-11 01:58:01.021333 1749.00 1957.00 0.00 \N 799.00 491 354 3 2019-08-11 01:58:01.024434 2019-08-11 01:58:01.024434 2200.00 2200.00 0.00 \N 0.00 492 356 2 2019-08-11 20:57:58.197826 2019-08-11 20:57:58.197826 1623.00 2280.00 0.00 \N 0.00 493 357 2 2019-08-13 01:01:32.545207 2019-08-13 01:01:32.545207 549.00 1303.00 0.00 \N 0.00 494 358 2 2019-08-13 01:06:18.258194 2019-08-13 01:06:18.258194 250.00 1030.00 0.00 \N 0.00 495 359 2 2019-08-14 00:56:50.838346 2019-08-14 00:56:50.838346 200.00 1230.00 0.00 \N 0.00 496 359 4 2019-08-14 00:56:50.840863 2019-08-14 00:56:50.840863 2037.00 2037.00 0.00 \N 0.00 497 360 1 2019-08-14 01:08:15.912368 2019-08-14 01:08:15.912368 829.00 829.00 0.00 \N 0.00 498 361 2 2019-08-15 01:01:47.725753 2019-08-15 01:01:47.725753 3596.00 4399.00 0.00 \N 0.00 499 361 4 2019-08-15 01:01:47.72885 2019-08-15 01:01:47.72885 1000.00 1000.00 0.00 \N 0.00 500 362 2 2019-08-15 01:13:46.593303 2019-08-15 01:13:46.593303 699.00 1429.00 0.00 \N 0.00 501 363 2 2019-08-15 01:13:46.701476 2019-08-15 01:13:46.701476 699.00 1429.00 0.00 \N 0.00 502 364 2 2019-08-15 01:13:46.789728 2019-08-15 01:13:46.789728 699.00 1429.00 0.00 \N 0.00 503 365 2 2019-08-16 00:55:58.461592 2019-08-16 00:55:58.461592 0.00 499.00 0.00 \N 200.00 504 366 2 2019-08-16 01:07:36.256967 2019-08-16 01:07:36.256967 560.00 339.00 0.00 \N 1000.00 505 366 4 2019-08-16 01:07:36.260231 2019-08-16 01:07:36.260231 499.00 499.00 0.00 \N 0.00 506 367 2 2019-08-17 01:17:43.707872 2019-08-17 01:17:43.707872 1367.99 1546.99 0.00 \N 160.00 507 367 4 2019-08-17 01:17:43.711177 2019-08-17 01:17:43.711177 669.00 669.00 0.00 \N 0.00 508 368 2 2019-08-17 01:33:49.751943 2019-08-17 01:33:49.751943 0.00 450.00 0.00 \N 50.00 509 369 2 2019-08-18 01:03:45.807026 2019-08-18 01:03:45.807026 0.00 400.00 0.00 \N 50.00 510 370 1 2019-08-18 01:43:40.63234 2019-08-18 01:43:40.63234 2626.00 2626.00 0.00 \N 0.00 511 370 2 2019-08-18 01:43:40.634647 2019-08-18 01:43:40.634647 1704.00 633.00 0.00 \N 1618.00 512 370 5 2019-08-18 01:43:40.636515 2019-08-18 01:43:40.636515 200.00 200.00 0.00 \N 0.00 513 371 2 2019-08-18 21:01:09.141769 2019-08-18 21:01:09.141769 999.00 1632.00 0.00 \N 0.00 514 372 2 2019-08-20 00:58:04.931604 2019-08-20 00:58:04.931604 1249.00 1449.00 0.00 \N 200.00 515 373 1 2019-08-20 01:14:44.235096 2019-08-20 01:14:44.235096 732.00 732.00 0.00 \N 0.00 516 373 2 2019-08-20 01:14:44.237429 2019-08-20 01:14:44.237429 250.00 882.00 0.00 \N 0.00 517 374 2 2019-08-21 01:03:50.58121 2019-08-21 01:03:50.58121 557.10 782.10 0.00 \N 0.00 518 375 2 2019-08-22 01:24:21.253919 2019-08-22 01:24:21.253919 2645.99 3277.99 0.00 \N 0.00 519 376 4 2019-08-22 01:41:46.13049 2019-08-22 01:41:46.13049 829.00 829.00 0.00 \N 0.00 520 377 2 2019-08-23 00:49:29.935161 2019-08-23 00:49:29.935161 1488.00 2216.00 0.00 \N 50.00 521 378 2 2019-08-23 00:55:00.266437 2019-08-23 00:55:00.266437 639.00 922.00 0.00 \N 0.00 522 379 2 2019-08-24 00:51:53.095078 2019-08-24 00:51:53.095078 700.00 1066.00 0.00 \N 350.00 523 380 2 2019-08-24 00:52:57.133925 2019-08-24 00:52:57.133925 500.00 420.00 0.00 \N 500.00 524 381 2 2019-08-25 01:05:17.877857 2019-08-25 01:05:17.877857 1896.00 2316.00 0.00 \N 0.00 525 382 2 2019-08-25 01:10:40.887616 2019-08-25 01:10:40.887616 987.00 1553.00 0.00 \N 0.00 526 382 4 2019-08-25 01:10:40.889459 2019-08-25 01:10:40.889459 649.00 649.00 0.00 \N 0.00 527 384 2 2019-08-27 00:55:36.889424 2019-08-27 00:55:36.889424 699.00 1252.00 0.00 \N 0.00 528 385 2 2019-08-28 00:33:15.315709 2019-08-28 00:33:15.315709 0.00 416.00 0.00 \N 100.00 529 387 2 2019-08-28 04:03:51.703765 2019-08-28 04:03:51.703765 699.00 1363.00 0.00 \N 0.00 530 388 2 2019-08-29 00:57:05.437129 2019-08-29 00:57:05.437129 1398.00 1814.00 0.00 \N 0.00 531 391 2 2019-08-30 01:16:49.11166 2019-08-30 01:16:49.11166 1638.00 2164.00 0.00 \N 200.00 532 392 2 2019-08-31 00:56:13.411495 2019-08-31 00:56:13.411495 2467.00 1099.00 0.00 \N 2120.00 533 393 2 2019-08-31 00:58:03.74665 2019-08-31 00:58:03.74665 1398.00 1918.00 0.00 \N 0.00 534 394 2 2019-08-31 05:30:53.236512 2019-08-31 05:30:53.236512 600.00 1963.00 0.00 \N 0.00 535 395 2 2019-09-01 00:57:37.933775 2019-09-01 00:57:37.933775 717.00 1132.00 0.00 \N 0.00 536 396 2 2019-09-01 01:22:26.767557 2019-09-01 01:22:26.767557 4566.00 4317.00 0.00 \N 1348.00 537 396 4 2019-09-01 01:22:26.769478 2019-09-01 01:22:26.769478 2798.00 2798.00 0.00 \N 0.00 538 397 2 2019-09-01 03:28:08.120554 2019-09-01 03:28:08.120554 5402.00 6065.00 0.00 \N 0.00 539 398 2 2019-09-01 20:53:28.710265 2019-09-01 20:53:28.710265 210.00 655.50 0.00 \N 0.00 540 400 2 2019-09-03 01:31:54.377769 2019-09-03 01:31:54.377769 1038.00 1483.50 0.00 \N 0.00 541 401 2 2019-09-03 01:40:09.958302 2019-09-03 01:40:09.958302 4705.00 5422.00 0.00 \N 0.00 542 401 4 2019-09-03 01:40:09.960043 2019-09-03 01:40:09.960043 1393.00 1393.00 0.00 \N 0.00 543 402 4 2019-09-04 00:50:04.913583 2019-09-04 00:50:04.913583 1197.00 1197.00 0.00 \N 0.00 544 403 2 2019-09-04 01:01:01.29797 2019-09-04 01:01:01.29797 500.00 1383.50 0.00 \N 100.00 545 403 3 2019-09-04 01:01:01.300046 2019-09-04 01:01:01.300046 1000.00 1000.00 0.00 \N 0.00 546 403 4 2019-09-04 01:01:01.301872 2019-09-04 01:01:01.301872 479.00 479.00 0.00 \N 0.00 547 405 1 2019-09-05 00:15:08.593602 2019-09-05 00:15:08.593602 200.00 200.00 0.00 \N 0.00 548 405 2 2019-09-05 00:15:08.595698 2019-09-05 00:15:08.595698 1060.00 1943.50 0.00 \N 0.00 549 405 3 2019-09-05 00:15:08.597107 2019-09-05 00:15:08.597107 400.00 400.00 0.00 \N 0.00 550 406 2 2019-09-05 01:06:10.958472 2019-09-05 01:06:10.958472 250.00 1172.00 0.00 \N 0.00 551 407 2 2019-09-06 00:58:18.138308 2019-09-06 00:58:18.138308 699.00 1642.50 0.00 \N 0.00 552 408 2 2019-09-06 00:58:41.744538 2019-09-06 00:58:41.744538 699.00 1871.00 0.00 \N 0.00 553 408 5 2019-09-06 00:58:41.746293 2019-09-06 00:58:41.746293 1599.00 1599.00 0.00 \N 0.00 554 409 1 2019-09-07 01:10:06.091051 2019-09-07 01:10:06.091051 499.00 499.00 0.00 \N 0.00 555 409 2 2019-09-07 01:10:06.093506 2019-09-07 01:10:06.093506 300.00 171.00 0.00 \N 1000.00 556 409 5 2019-09-07 01:10:06.095391 2019-09-07 01:10:06.095391 958.00 958.00 0.00 \N 0.00 557 410 2 2019-09-07 01:19:58.778541 2019-09-07 01:19:58.778541 1097.99 1190.49 0.00 \N 850.00 558 411 1 2019-09-07 01:51:44.233281 2019-09-07 01:51:44.233281 1549.00 1549.00 0.00 \N 0.00 559 411 2 2019-09-07 01:51:44.235914 2019-09-07 01:51:44.235914 699.00 1048.00 0.00 \N 816.00 560 412 2 2019-09-08 01:05:59.473155 2019-09-08 01:05:59.473155 3416.00 3587.00 0.00 \N 0.00 561 413 2 2019-09-08 01:12:35.223115 2019-09-08 01:12:35.223115 1538.00 2242.50 0.00 \N 0.00 562 414 2 2019-09-08 02:10:42.081031 2019-09-08 02:10:42.081031 3096.00 4144.00 0.00 \N 0.00 563 415 2 2019-09-10 01:05:29.523658 2019-09-10 01:05:29.523658 0.00 883.00 0.00 \N 20.00 564 416 2 2019-09-10 01:08:37.678946 2019-09-10 01:08:37.678946 699.00 1462.00 0.00 \N 0.00 565 417 2 2019-09-10 03:10:59.639619 2019-09-10 03:10:59.639619 3261.00 4378.00 0.00 \N 0.00 566 417 4 2019-09-10 03:10:59.642361 2019-09-10 03:10:59.642361 820.00 820.00 0.00 \N 0.00 567 418 2 2019-09-11 01:12:51.75802 2019-09-11 01:12:51.75802 500.00 1252.00 0.00 \N 10.00 568 419 2 2019-09-11 01:37:22.706171 2019-09-11 01:37:22.706171 580.00 1524.00 0.00 \N 0.00 569 419 3 2019-09-11 01:37:22.708741 2019-09-11 01:37:22.708741 299.00 299.00 0.00 \N 0.00 570 420 2 2019-09-11 01:59:24.292102 2019-09-11 01:59:24.292102 979.01 1913.01 0.00 \N 0.00 571 422 2 2019-09-12 01:14:43.501744 2019-09-12 01:14:43.501744 1947.30 2451.30 0.00 \N 520.00 572 423 2 2019-09-12 02:07:37.529019 2019-09-12 02:07:37.529019 599.00 1719.01 0.00 \N 100.00 573 424 2 2019-09-13 01:04:14.027285 2019-09-13 01:04:14.027285 1149.00 2000.30 0.00 \N 0.00 574 425 2 2019-09-13 01:30:16.957241 2019-09-13 01:30:16.957241 1767.00 1819.00 0.00 \N 700.00 575 426 2 2019-09-13 02:03:40.309728 2019-09-13 02:03:40.309728 508.00 1627.00 0.00 \N 0.00 576 427 1 2019-09-14 01:39:50.61497 2019-09-14 01:39:50.61497 1667.00 1667.00 0.00 \N 0.00 577 427 2 2019-09-14 01:39:50.61727 2019-09-14 01:39:50.61727 1285.00 2285.30 0.00 \N 0.00 578 427 3 2019-09-14 01:39:50.618952 2019-09-14 01:39:50.618952 400.00 400.00 0.00 \N 0.00 579 428 2 2019-09-14 01:59:36.196185 2019-09-14 01:59:36.196185 625.00 1710.30 0.00 \N 0.00 580 429 1 2019-09-14 02:05:15.002645 2019-09-14 02:05:15.002645 1299.00 1299.00 0.00 \N 0.00 581 429 2 2019-09-14 02:05:15.004917 2019-09-14 02:05:15.004917 1583.00 2262.00 0.00 \N 440.00 582 430 2 2019-09-15 01:16:59.962798 2019-09-15 01:16:59.962798 6074.00 6308.00 0.00 \N 528.00 583 430 4 2019-09-15 01:16:59.964881 2019-09-15 01:16:59.964881 619.00 619.00 0.00 \N 0.00 584 431 2 2019-09-15 01:31:50.362166 2019-09-15 01:31:50.362166 7512.00 8597.30 0.00 \N 0.00 585 432 2 2019-09-15 02:07:36.360149 2019-09-15 02:07:36.360149 3598.00 4725.00 0.00 \N 0.00 586 433 2 2019-09-15 20:59:39.557725 2019-09-15 20:59:39.557725 679.00 1737.00 0.00 \N 0.00 587 434 4 2019-09-15 21:10:53.439987 2019-09-15 21:10:53.439987 625.00 625.00 0.00 \N 0.00 588 435 1 2019-09-18 01:06:34.199554 2019-09-18 01:06:34.199554 699.00 699.00 0.00 \N 0.00 589 435 2 2019-09-18 01:06:34.202757 2019-09-18 01:06:34.202757 500.00 1525.00 0.00 \N 0.00 590 436 2 2019-09-18 01:47:32.267174 2019-09-18 01:47:32.267174 1600.00 2637.00 0.00 \N 0.00 591 437 1 2019-09-19 01:27:56.31386 2019-09-19 01:27:56.31386 1299.00 1299.00 0.00 \N 0.00 592 437 2 2019-09-19 01:27:56.316045 2019-09-19 01:27:56.316045 1807.00 2544.00 0.00 \N 0.00 593 440 2 2019-09-20 00:54:47.775246 2019-09-20 00:54:47.775246 1998.00 2642.00 0.00 \N 500.00 594 441 2 2019-09-20 01:13:14.53882 2019-09-20 01:13:14.53882 200.00 1225.00 0.00 \N 0.00 595 442 1 2019-09-21 01:25:13.39937 2019-09-21 01:25:13.39937 1598.00 1598.00 0.00 \N 0.00 596 442 2 2019-09-21 01:25:13.401361 2019-09-21 01:25:13.401361 639.00 1781.00 0.00 \N 0.00 597 443 2 2019-09-21 01:30:14.585063 2019-09-21 01:30:14.585063 2218.00 3314.00 0.00 \N 0.00 598 444 1 2019-09-21 02:00:07.994743 2019-09-21 02:00:07.994743 799.00 799.00 0.00 \N 0.00 599 444 2 2019-09-21 02:00:07.996683 2019-09-21 02:00:07.996683 699.00 1924.00 0.00 \N 0.00 600 445 1 2019-09-22 01:28:26.437008 2019-09-22 01:28:26.437008 1348.00 1348.00 0.00 \N 0.00 601 445 2 2019-09-22 01:28:26.439268 2019-09-22 01:28:26.439268 2138.00 2181.00 0.00 \N 738.00 602 445 4 2019-09-22 01:28:26.441359 2019-09-22 01:28:26.441359 198.00 198.00 0.00 \N 0.00 603 445 5 2019-09-22 01:28:26.443001 2019-09-22 01:28:26.443001 525.00 525.00 0.00 \N 0.00 604 446 2 2019-09-22 01:30:04.597585 2019-09-22 01:30:04.597585 2298.00 1181.00 0.00 \N 1580.00 605 447 1 2019-09-22 01:59:00.235133 2019-09-22 01:59:00.235133 1378.00 1378.00 0.00 \N 0.00 606 449 2 2019-09-22 21:59:33.411599 2019-09-22 21:59:33.411599 1599.00 2824.00 0.00 \N 0.00 607 451 1 2019-09-24 01:36:53.569741 2019-09-24 01:36:53.569741 639.00 639.00 0.00 \N 0.00 608 451 2 2019-09-24 01:36:53.572892 2019-09-24 01:36:53.572892 4424.00 5110.00 0.00 \N 0.00 609 452 1 2019-09-25 01:30:40.073521 2019-09-25 01:30:40.073521 1049.00 1049.00 0.00 \N 0.00 610 452 5 2019-09-25 01:30:40.075651 2019-09-25 01:30:40.075651 1350.01 1350.01 0.00 \N 0.00 611 453 5 2019-09-25 01:34:53.072147 2019-09-25 01:34:53.072147 464.25 464.25 0.00 \N 0.00 612 454 2 2019-09-26 01:24:50.064139 2019-09-26 01:24:50.064139 969.00 1750.00 0.00 \N 0.00 613 456 1 2019-09-27 01:28:40.798584 2019-09-27 01:28:40.798584 2469.00 2469.00 0.00 \N 0.00 614 456 2 2019-09-27 01:28:40.800723 2019-09-27 01:28:40.800723 1099.00 1849.00 0.00 \N 0.00 615 456 4 2019-09-27 01:28:40.8023 2019-09-27 01:28:40.8023 2540.00 2540.00 0.00 \N 0.00 616 457 2 2019-09-27 01:39:03.432901 2019-09-27 01:39:03.432901 1469.00 2819.00 0.00 \N 0.00 617 458 1 2019-09-27 02:03:12.573506 2019-09-27 02:03:12.573506 939.00 939.00 0.00 \N 0.00 618 458 2 2019-09-27 02:03:12.575417 2019-09-27 02:03:12.575417 2250.00 3275.00 0.00 \N 200.00 619 458 3 2019-09-27 02:03:12.577045 2019-09-27 02:03:12.577045 200.00 200.00 0.00 \N 0.00 620 459 1 2019-09-28 01:43:20.05505 2019-09-28 01:43:20.05505 1270.00 1270.00 0.00 \N 0.00 621 459 2 2019-09-28 01:43:20.057371 2019-09-28 01:43:20.057371 200.00 1024.00 0.00 \N 25.00 622 460 1 2019-09-28 01:57:43.028528 2019-09-28 01:57:43.028528 600.00 600.00 0.00 \N 0.00 623 460 2 2019-09-28 01:57:43.030411 2019-09-28 01:57:43.030411 1897.00 3074.00 0.00 \N 0.00 624 461 1 2019-09-28 01:59:16.841363 2019-09-28 01:59:16.841363 849.00 849.00 0.00 \N 0.00 625 461 2 2019-09-28 01:59:16.843054 2019-09-28 01:59:16.843054 419.00 1739.00 0.00 \N 0.00 626 461 3 2019-09-28 01:59:16.844617 2019-09-28 01:59:16.844617 200.00 200.00 0.00 \N 0.00 627 461 4 2019-09-28 01:59:16.8462 2019-09-28 01:59:16.8462 2980.00 2980.00 0.00 \N 0.00 628 463 2 2019-09-29 01:43:52.067597 2019-09-29 01:43:52.067597 2356.00 1747.00 0.00 \N 1353.00 629 464 1 2019-09-29 02:00:31.797449 2019-09-29 02:00:31.797449 649.00 649.00 0.00 \N 0.00 630 464 2 2019-09-29 02:00:31.799482 2019-09-29 02:00:31.799482 1387.00 1261.00 0.00 \N 1200.00 631 465 1 2019-09-29 21:00:36.356309 2019-09-29 21:00:36.356309 717.99 717.99 0.00 \N 0.00 632 466 2 2019-09-30 20:14:49.338874 2019-09-30 20:14:49.338874 984.00 1731.00 0.00 \N 0.00 633 467 2 2019-10-02 01:27:39.707938 2019-10-02 01:27:39.707938 2014.00 2845.00 0.00 \N 0.00 634 468 2 2019-10-02 01:33:02.937799 2019-10-02 01:33:02.937799 299.00 1338.00 0.00 \N 0.00 635 468 4 2019-10-02 01:33:02.939981 2019-10-02 01:33:02.939981 1667.00 1667.00 0.00 \N 0.00 636 469 2 2019-10-02 02:02:48.125092 2019-10-02 02:02:48.125092 650.00 1706.00 0.00 \N 0.00 637 470 1 2019-10-03 01:31:42.447193 2019-10-03 01:31:42.447193 1268.00 1268.00 0.00 \N 0.00 638 470 2 2019-10-03 01:31:42.449421 2019-10-03 01:31:42.449421 3848.00 4893.00 0.00 \N 0.00 639 470 5 2019-10-03 01:31:42.450973 2019-10-03 01:31:42.450973 1125.00 1125.00 0.00 \N 0.00 640 472 2 2019-10-03 01:58:20.787542 2019-10-03 01:58:20.787542 700.00 1906.00 0.00 \N 0.00 641 473 1 2019-10-04 01:32:34.003807 2019-10-04 01:32:34.003807 1299.00 1299.00 0.00 \N 0.00 642 473 2 2019-10-04 01:32:34.005942 2019-10-04 01:32:34.005942 1418.00 2311.00 0.00 \N 0.00 643 474 1 2019-10-04 01:34:53.757131 2019-10-04 01:34:53.757131 250.00 250.00 0.00 \N 0.00 644 475 2 2019-10-04 02:00:05.470194 2019-10-04 02:00:05.470194 1099.00 2305.00 0.00 \N 0.00 645 475 3 2019-10-04 02:00:05.472305 2019-10-04 02:00:05.472305 500.00 500.00 0.00 \N 0.00 646 475 4 2019-10-04 02:00:05.473996 2019-10-04 02:00:05.473996 569.00 569.00 0.00 \N 0.00 647 477 1 2019-10-05 01:31:14.146922 2019-10-05 01:31:14.146922 2566.00 2566.00 0.00 \N 0.00 648 477 2 2019-10-05 01:31:14.149625 2019-10-05 01:31:14.149625 2985.00 3823.00 0.00 \N 0.00 649 478 1 2019-10-05 02:09:16.358672 2019-10-05 02:09:16.358672 2578.00 2578.00 0.00 \N 0.00 650 478 2 2019-10-05 02:09:16.36095 2019-10-05 02:09:16.36095 1247.00 2452.00 0.00 \N 0.00 651 479 1 2019-10-06 01:31:12.177096 2019-10-06 01:31:12.177096 1138.00 1138.00 0.00 \N 0.00 652 479 2 2019-10-06 01:31:12.179383 2019-10-06 01:31:12.179383 789.00 1829.00 0.00 \N 0.00 653 480 2 2019-10-06 01:38:08.694915 2019-10-06 01:38:08.694915 3298.00 3181.00 0.00 \N 1328.00 654 480 4 2019-10-06 01:38:08.697168 2019-10-06 01:38:08.697168 1468.00 1468.00 0.00 \N 0.00 655 481 1 2019-10-06 02:01:12.574499 2019-10-06 02:01:12.574499 1000.00 1000.00 0.00 \N 0.00 656 481 2 2019-10-06 02:01:12.576624 2019-10-06 02:01:12.576624 759.00 2012.00 0.00 \N 0.00 657 482 2 2019-10-06 20:47:15.942434 2019-10-06 20:47:15.942434 300.00 1081.00 0.00 \N 0.00 658 483 2 2019-10-06 20:49:02.221128 2019-10-06 20:49:02.221128 799.00 1908.00 0.00 \N 0.00 659 484 2 2019-10-06 22:02:24.763919 2019-10-06 22:02:24.763919 1299.00 1111.00 0.00 \N 1200.00 660 485 2 2019-10-08 01:12:44.860339 2019-10-08 01:12:44.860339 180.00 1288.00 0.00 \N 0.00 661 486 2 2019-10-08 01:29:20.411286 2019-10-08 01:29:20.411286 919.00 1700.00 0.00 \N 0.00 662 487 1 2019-10-08 01:59:58.592827 2019-10-08 01:59:58.592827 350.00 350.00 0.00 \N 0.00 663 488 2 2019-10-09 00:56:15.517622 2019-10-09 00:56:15.517622 648.00 1659.00 0.00 \N 0.00 664 490 2 2019-10-10 01:54:36.028639 2019-10-10 01:54:36.028639 1648.00 2936.00 0.00 \N 0.00 665 490 3 2019-10-10 01:54:36.030755 2019-10-10 01:54:36.030755 199.00 199.00 0.00 \N 0.00 666 491 1 2019-10-10 01:58:00.117256 2019-10-10 01:58:00.117256 817.99 817.99 0.00 \N 0.00 667 492 2 2019-10-10 02:00:07.182467 2019-10-10 02:00:07.182467 1599.00 2758.00 0.00 \N 0.00 668 493 2 2019-10-11 01:24:48.230471 2019-10-11 01:24:48.230471 999.00 1699.00 0.00 \N 0.00 669 494 2 2019-10-11 01:58:46.306746 2019-10-11 01:58:46.306746 300.00 1458.00 0.00 \N 0.00 670 495 2 2019-10-11 02:03:11.501893 2019-10-11 02:03:11.501893 3166.00 4402.00 0.00 \N 0.00 671 496 2 2019-10-12 01:24:04.193906 2019-10-12 01:24:04.193906 2198.00 2797.00 0.00 \N 100.00 672 496 3 2019-10-12 01:24:04.196521 2019-10-12 01:24:04.196521 1899.00 1899.00 0.00 \N 0.00 673 496 4 2019-10-12 01:24:04.198521 2019-10-12 01:24:04.198521 877.99 877.99 0.00 \N 0.00 674 497 1 2019-10-12 01:39:44.960103 2019-10-12 01:39:44.960103 1228.30 1228.30 0.00 \N 0.00 675 497 2 2019-10-12 01:39:44.962333 2019-10-12 01:39:44.962333 2189.31 3491.31 0.00 \N 0.00 676 498 1 2019-10-12 02:09:16.210079 2019-10-12 02:09:16.210079 1697.99 1697.99 0.00 \N 0.00 677 498 2 2019-10-12 02:09:16.212456 2019-10-12 02:09:16.212456 419.00 1577.00 0.00 \N 0.00 678 499 2 2019-10-13 01:23:43.943261 2019-10-13 01:23:43.943261 901.00 430.00 0.00 \N 1168.00 679 500 2 2019-10-13 01:26:17.107724 2019-10-13 01:26:17.107724 2386.00 3747.31 0.00 \N 0.00 680 501 2 2019-10-13 02:41:36.47921 2019-10-13 02:41:36.47921 1199.00 2254.00 0.00 \N 0.00 681 502 2 2019-10-13 21:05:46.21769 2019-10-13 21:05:46.21769 500.00 930.00 0.00 \N 0.00 682 503 2 2019-10-13 21:24:26.969536 2019-10-13 21:24:26.969536 339.00 1647.00 0.00 \N 0.00 683 504 1 2019-10-15 00:59:40.515658 2019-10-15 00:59:40.515658 1000.00 1000.00 0.00 \N 0.00 684 504 2 2019-10-15 00:59:40.518511 2019-10-15 00:59:40.518511 0.00 654.00 0.00 \N 400.00 685 505 1 2019-10-15 01:12:53.796231 2019-10-15 01:12:53.796231 500.00 500.00 0.00 \N 0.00 686 505 2 2019-10-15 01:12:53.798319 2019-10-15 01:12:53.798319 1487.00 2634.00 0.00 \N 0.00 687 506 2 2019-10-15 01:17:02.26028 2019-10-15 01:17:02.26028 650.00 1580.00 0.00 \N 0.00 688 507 1 2019-10-16 00:47:43.374959 2019-10-16 00:47:43.374959 1467.00 1467.00 0.00 \N 0.00 689 507 2 2019-10-16 00:47:43.37797 2019-10-16 00:47:43.37797 3198.00 4332.00 0.00 \N 0.00 690 508 2 2019-10-16 01:20:25.653539 2019-10-16 01:20:25.653539 1436.00 2016.00 0.00 \N 0.00 691 509 1 2019-10-17 01:15:20.634519 2019-10-17 01:15:20.634519 1398.00 1398.00 0.00 \N 0.00 692 509 2 2019-10-17 01:15:20.637413 2019-10-17 01:15:20.637413 500.00 1154.00 0.00 \N 0.00 693 510 2 2019-10-17 01:26:52.578784 2019-10-17 01:26:52.578784 848.00 1364.00 0.00 \N 0.00 694 510 4 2019-10-17 01:26:52.58089 2019-10-17 01:26:52.58089 569.00 569.00 0.00 \N 0.00 695 511 1 2019-10-17 01:34:22.234187 2019-10-17 01:34:22.234187 589.00 589.00 0.00 \N 0.00 696 512 2 2019-10-17 22:47:15.259764 2019-10-17 22:47:15.259764 3927.00 4581.00 0.00 \N 0.00 697 512 3 2019-10-17 22:47:15.261879 2019-10-17 22:47:15.261879 900.00 900.00 0.00 \N 0.00 698 513 1 2019-10-19 16:32:38.367437 2019-10-19 16:32:38.367437 798.00 798.00 0.00 \N 0.00 699 513 3 2019-10-19 16:32:38.369521 2019-10-19 16:32:38.369521 350.00 350.00 0.00 \N 0.00 700 514 2 2019-10-20 01:19:49.610003 2019-10-20 01:19:49.610003 4764.00 5728.00 0.00 \N 0.00 701 514 3 2019-10-20 01:19:49.612144 2019-10-20 01:19:49.612144 319.00 319.00 0.00 \N 0.00 702 515 1 2019-10-20 01:42:00.620136 2019-10-20 01:42:00.620136 6925.00 6925.00 0.00 \N 0.00 703 515 2 2019-10-20 01:42:00.622015 2019-10-20 01:42:00.622015 249.00 1294.00 0.00 \N 100.00 704 516 2 2019-10-20 01:57:07.780472 2019-10-20 01:57:07.780472 3298.00 3979.00 0.00 \N 0.00 705 517 1 2019-10-20 21:06:06.166479 2019-10-20 21:06:06.166479 1899.00 1899.00 0.00 \N 0.00 706 517 2 2019-10-20 21:06:06.168547 2019-10-20 21:06:06.168547 2478.00 3606.00 0.00 \N 0.00 707 518 1 2019-10-22 01:39:05.061076 2019-10-22 01:39:05.061076 1217.99 1217.99 0.00 \N 0.00 708 518 2 2019-10-22 01:39:05.063126 2019-10-22 01:39:05.063126 819.00 1625.00 0.00 \N 400.00 709 519 2 2019-10-22 01:47:36.819958 2019-10-22 01:47:36.819958 299.00 1593.00 0.00 \N 0.00 710 519 5 2019-10-22 01:47:36.821982 2019-10-22 01:47:36.821982 696.00 696.00 0.00 \N 0.00 711 520 2 2019-10-22 01:56:43.531785 2019-10-22 01:56:43.531785 2799.00 3478.00 0.00 \N 0.00 712 521 1 2019-10-23 01:17:37.312873 2019-10-23 01:17:37.312873 600.00 600.00 0.00 \N 0.00 713 521 2 2019-10-23 01:17:37.315574 2019-10-23 01:17:37.315574 500.00 1625.00 0.00 \N 0.00 714 522 2 2019-10-23 01:25:20.033621 2019-10-23 01:25:20.033621 1797.00 2859.00 0.00 \N 0.00 715 523 2 2019-10-24 01:25:54.725522 2019-10-24 01:25:54.725522 2037.00 3127.00 0.00 \N 35.00 716 524 2 2019-10-24 01:25:54.844431 2019-10-24 01:25:54.844431 2037.00 3127.00 0.00 \N 35.00 717 525 2 2019-10-24 01:25:54.962238 2019-10-24 01:25:54.962238 2037.00 3127.00 0.00 \N 35.00 718 526 1 2019-10-24 01:37:05.138564 2019-10-24 01:37:05.138564 1300.00 1300.00 0.00 \N 0.00 719 526 2 2019-10-24 01:37:05.140967 2019-10-24 01:37:05.140967 1129.00 1988.00 0.00 \N 0.00 720 527 1 2019-10-24 02:00:27.088251 2019-10-24 02:00:27.088251 1000.00 1000.00 0.00 \N 0.00 721 527 2 2019-10-24 02:00:27.090393 2019-10-24 02:00:27.090393 2199.00 2877.00 0.00 \N 0.00 722 528 2 2019-10-25 01:31:58.873469 2019-10-25 01:31:58.873469 1259.00 2247.00 0.00 \N 0.00 723 528 4 2019-10-25 01:31:58.875712 2019-10-25 01:31:58.875712 699.00 699.00 0.00 \N 0.00 724 529 1 2019-10-25 02:11:35.363325 2019-10-25 02:11:35.363325 399.00 399.00 0.00 \N 0.00 725 529 2 2019-10-25 02:11:35.365467 2019-10-25 02:11:35.365467 800.00 1477.00 0.00 \N 0.00 726 530 1 2019-10-26 01:45:20.695112 2019-10-26 01:45:20.695112 699.00 699.00 0.00 \N 0.00 727 530 2 2019-10-26 01:45:20.69755 2019-10-26 01:45:20.69755 1598.00 2725.00 0.00 \N 0.00 728 530 4 2019-10-26 01:45:20.698946 2019-10-26 01:45:20.698946 378.00 378.00 0.00 \N 0.00 729 531 2 2019-10-26 01:49:26.194042 2019-10-26 01:49:26.194042 1888.00 2735.00 0.00 \N 0.00 730 532 2 2019-10-26 02:01:42.850023 2019-10-26 02:01:42.850023 1848.00 3326.00 0.00 \N 0.00 731 533 2 2019-10-27 01:32:28.757893 2019-10-27 01:32:28.757893 0.00 1056.00 0.00 \N 970.00 732 534 1 2019-10-27 01:46:01.292344 2019-10-27 01:46:01.292344 869.00 869.00 0.00 \N 0.00 733 534 2 2019-10-27 01:46:01.295254 2019-10-27 01:46:01.295254 1798.00 1695.00 0.00 \N 1328.00 734 535 2 2019-10-27 01:56:59.207067 2019-10-27 01:56:59.207067 2698.00 4022.00 0.00 \N 0.00 735 536 2 2019-10-27 22:09:22.354429 2019-10-27 22:09:22.354429 3001.00 4057.00 0.00 \N 0.00 736 537 1 2019-10-29 02:40:15.06244 2019-10-29 02:40:15.06244 1199.00 1199.00 0.00 \N 0.00 737 537 2 2019-10-29 02:40:15.064443 2019-10-29 02:40:15.064443 1599.00 2294.00 0.00 \N 0.00 738 538 2 2019-10-29 03:03:20.936955 2019-10-29 03:03:20.936955 2398.00 3455.00 0.00 \N 0.00 739 539 1 2019-10-29 03:03:41.232798 2019-10-29 03:03:41.232798 1299.00 1299.00 0.00 \N 0.00 740 539 2 2019-10-29 03:03:41.234573 2019-10-29 03:03:41.234573 0.00 822.00 0.00 \N 500.00 741 539 3 2019-10-29 03:03:41.236497 2019-10-29 03:03:41.236497 478.00 478.00 0.00 \N 0.00 742 540 2 2019-10-30 02:58:15.266316 2019-10-30 02:58:15.266316 1198.00 1992.00 0.00 \N 0.00 743 541 1 2019-10-30 03:02:04.678374 2019-10-30 03:02:04.678374 699.00 699.00 0.00 \N 0.00 744 541 2 2019-10-30 03:02:04.680269 2019-10-30 03:02:04.680269 599.00 1554.00 0.00 \N 0.00 745 543 2 2019-10-31 03:00:43.732894 2019-10-31 03:00:43.732894 1473.00 2013.00 0.00 \N 0.00 746 544 2 2019-10-31 03:02:06.480682 2019-10-31 03:02:06.480682 228.00 1220.00 0.00 \N 0.00 747 545 2 2019-10-31 03:16:11.794217 2019-10-31 03:16:11.794217 589.00 1751.00 0.00 \N 160.00 748 546 1 2019-11-01 02:48:13.53689 2019-11-01 02:48:13.53689 569.00 569.00 0.00 \N 0.00 749 546 2 2019-11-01 02:48:13.538771 2019-11-01 02:48:13.538771 5155.00 5975.00 0.00 \N 0.00 750 547 2 2019-11-01 02:59:28.328136 2019-11-01 02:59:28.328136 3344.00 4367.00 0.00 \N 0.00 751 548 2 2019-11-01 03:06:26.533545 2019-11-01 03:06:26.533545 548.00 1599.00 0.00 \N 0.00 752 549 1 2019-11-02 02:48:01.378562 2019-11-02 02:48:01.378562 1599.00 1599.00 0.00 \N 0.00 753 549 2 2019-11-02 02:48:01.381088 2019-11-02 02:48:01.381088 4084.00 5059.00 0.00 \N 0.00 754 550 1 2019-11-02 02:55:47.061605 2019-11-02 02:55:47.061605 1528.00 1528.00 0.00 \N 0.00 755 550 2 2019-11-02 02:55:47.063633 2019-11-02 02:55:47.063633 1468.00 2567.00 0.00 \N 0.00 756 551 1 2019-11-02 03:01:27.286707 2019-11-02 03:01:27.286707 599.00 599.00 0.00 \N 0.00 757 551 2 2019-11-02 03:01:27.288346 2019-11-02 03:01:27.288346 839.00 1996.00 0.00 \N 0.00 758 552 2 2019-11-02 23:06:57.340854 2019-11-02 23:06:57.340854 1799.00 1930.00 0.00 \N 928.00 759 553 2 2019-11-02 23:10:40.722766 2019-11-02 23:10:40.722766 959.00 844.00 0.00 \N 900.00 760 553 4 2019-11-02 23:10:40.724376 2019-11-02 23:10:40.724376 1358.00 1358.00 0.00 \N 0.00 761 554 2 2019-11-03 22:08:33.181407 2019-11-03 22:08:33.181407 300.00 855.00 0.00 \N 0.00 762 555 2 2019-11-03 22:55:43.387683 2019-11-03 22:55:43.387683 1597.00 2284.00 0.00 \N 380.00 763 556 2 2019-11-05 02:32:41.032951 2019-11-05 02:32:41.032951 3149.00 3579.00 0.00 \N 0.00 764 558 2 2019-11-05 03:14:03.987525 2019-11-05 03:14:03.987525 1897.00 2681.00 0.00 \N 0.00 765 558 3 2019-11-05 03:14:03.98955 2019-11-05 03:14:03.98955 500.00 500.00 0.00 \N 0.00 766 558 4 2019-11-05 03:14:03.991002 2019-11-05 03:14:03.991002 1000.00 1000.00 0.00 \N 0.00 767 559 2 2019-11-06 02:44:37.799184 2019-11-06 02:44:37.799184 599.00 1478.00 0.00 \N 0.00 768 560 2 2019-11-06 02:58:44.729165 2019-11-06 02:58:44.729165 250.00 1105.00 0.00 \N 0.00 769 561 2 2019-11-07 02:49:38.531153 2019-11-07 02:49:38.531153 200.00 678.00 0.00 \N 0.00 770 561 3 2019-11-07 02:49:38.533072 2019-11-07 02:49:38.533072 800.00 800.00 0.00 \N 0.00 771 562 2 2019-11-07 03:01:17.360425 2019-11-07 03:01:17.360425 4045.00 5141.00 0.00 \N 0.00 772 563 2 2019-11-07 03:06:29.316635 2019-11-07 03:06:29.316635 2748.00 3729.00 0.00 \N 0.00 773 564 2 2019-11-08 01:59:21.154687 2019-11-08 01:59:21.154687 3035.00 4076.00 0.00 \N 0.00 774 566 2 2019-11-08 02:53:46.40889 2019-11-08 02:53:46.40889 1224.00 1953.00 0.00 \N 0.00 775 567 1 2019-11-09 02:35:22.383376 2019-11-09 02:35:22.383376 789.00 789.00 0.00 \N 0.00 776 567 2 2019-11-09 02:35:22.385306 2019-11-09 02:35:22.385306 299.00 977.00 0.00 \N 0.00 777 568 2 2019-11-09 02:55:52.587906 2019-11-09 02:55:52.587906 2699.00 3452.00 0.00 \N 0.00 778 569 2 2019-11-09 02:57:04.608342 2019-11-09 02:57:04.608342 849.00 1525.00 0.00 \N 0.00 779 570 2 2019-11-10 02:52:47.122902 2019-11-10 02:52:47.122902 4036.00 3685.00 0.00 \N 1328.00 780 571 2 2019-11-10 03:01:46.960267 2019-11-10 03:01:46.960267 2807.00 2632.00 0.00 \N 700.00 781 572 2 2019-11-10 03:08:05.195343 2019-11-10 03:08:05.195343 0.00 712.00 0.00 \N 40.00 782 573 1 2019-11-10 22:20:33.59041 2019-11-10 22:20:33.59041 3247.00 3247.00 0.00 \N 0.00 783 573 3 2019-11-10 22:20:33.592181 2019-11-10 22:20:33.592181 660.00 660.00 0.00 \N 0.00 784 574 2 2019-11-10 22:28:25.22085 2019-11-10 22:28:25.22085 499.00 1131.00 0.00 \N 0.00 785 575 1 2019-11-12 02:55:57.181077 2019-11-12 02:55:57.181077 600.00 600.00 0.00 \N 0.00 786 575 2 2019-11-12 02:55:57.182985 2019-11-12 02:55:57.182985 1584.99 2439.99 0.00 \N 0.00 787 575 5 2019-11-12 02:55:57.184401 2019-11-12 02:55:57.184401 1198.50 1198.50 0.00 \N 0.00 788 576 2 2019-11-12 03:00:09.045378 2019-11-12 03:00:09.045378 200.00 839.00 0.00 \N 0.00 789 577 2 2019-11-12 03:07:19.808931 2019-11-12 03:07:19.808931 500.00 1132.00 0.00 \N 80.00 790 578 1 2019-11-13 02:51:13.081097 2019-11-13 02:51:13.081097 1658.00 1658.00 0.00 \N 0.00 791 578 2 2019-11-13 02:51:13.083829 2019-11-13 02:51:13.083829 979.00 1819.00 0.00 \N 0.00 792 578 4 2019-11-13 02:51:13.085878 2019-11-13 02:51:13.085878 598.00 598.00 0.00 \N 0.00 793 579 2 2019-11-13 02:53:48.210119 2019-11-13 02:53:48.210119 799.00 1931.00 0.00 \N 0.00 794 579 4 2019-11-13 02:53:48.211849 2019-11-13 02:53:48.211849 899.00 899.00 0.00 \N 0.00 795 580 2 2019-11-13 02:57:41.292685 2019-11-13 02:57:41.292685 459.00 1298.00 0.00 \N 0.00 796 581 1 2019-11-14 02:53:53.837075 2019-11-14 02:53:53.837075 2046.99 2046.99 0.00 \N 0.00 797 581 2 2019-11-14 02:53:53.839245 2019-11-14 02:53:53.839245 2091.00 3010.00 0.00 \N 0.00 798 581 5 2019-11-14 02:53:53.840943 2019-11-14 02:53:53.840943 4643.00 4643.00 0.00 \N 0.00 799 582 2 2019-11-14 03:00:52.461918 2019-11-14 03:00:52.461918 699.00 1493.00 0.00 \N 0.00 800 583 2 2019-11-14 03:18:34.448457 2019-11-14 03:18:34.448457 4944.00 6025.00 0.00 \N 50.00 801 584 2 2019-11-15 02:54:28.003145 2019-11-15 02:54:28.003145 1268.00 2293.00 0.00 \N 0.00 802 586 2 2019-11-15 03:03:50.110179 2019-11-15 03:03:50.110179 2446.00 2939.00 0.00 \N 0.00 803 587 2 2019-11-16 02:51:42.979053 2019-11-16 02:51:42.979053 2455.00 2087.00 0.00 \N 1378.00 804 588 2 2019-11-16 02:53:44.088644 2019-11-16 02:53:44.088644 7526.00 8519.00 0.00 \N 0.00 805 589 2 2019-11-16 02:58:43.551899 2019-11-16 02:58:43.551899 5513.00 5944.00 0.00 \N 0.00 806 590 2 2019-11-17 02:47:23.623876 2019-11-17 02:47:23.623876 3370.00 4257.00 0.00 \N 0.00 807 590 4 2019-11-17 02:47:23.625921 2019-11-17 02:47:23.625921 1429.00 1429.00 0.00 \N 0.00 808 591 2 2019-11-17 02:56:51.800223 2019-11-17 02:56:51.800223 3143.99 3687.99 0.00 \N 900.00 809 592 1 2019-11-17 03:02:37.992035 2019-11-17 03:02:37.992035 1448.00 1448.00 0.00 \N 0.00 810 592 2 2019-11-17 03:02:37.993691 2019-11-17 03:02:37.993691 3326.99 3309.99 0.00 \N 1036.00 811 593 2 2019-11-17 22:04:59.46382 2019-11-17 22:04:59.46382 1204.00 2391.99 0.00 \N 0.00 812 594 2 2019-11-17 22:24:25.250783 2019-11-17 22:24:25.250783 200.00 1591.00 0.00 \N 0.00 813 596 1 2019-11-18 23:18:52.654575 2019-11-18 23:18:52.654575 75.00 75.00 0.00 \N 0.00 814 596 2 2019-11-18 23:18:52.656382 2019-11-18 23:18:52.656382 6290.00 7047.00 0.00 \N 0.00 815 597 1 2019-11-19 03:07:44.589032 2019-11-19 03:07:44.589032 210.00 210.00 0.00 \N 0.00 816 597 2 2019-11-19 03:07:44.590784 2019-11-19 03:07:44.590784 594.15 1393.15 0.00 \N 10.00 817 598 2 2019-11-20 02:50:02.151587 2019-11-20 02:50:02.151587 718.00 1765.00 0.00 \N 0.00 818 598 4 2019-11-20 02:50:02.154362 2019-11-20 02:50:02.154362 589.00 589.00 0.00 \N 0.00 819 599 2 2019-11-20 02:52:54.732785 2019-11-20 02:52:54.732785 799.00 1690.00 0.00 \N 0.00 820 600 2 2019-11-20 02:57:30.277403 2019-11-20 02:57:30.277403 500.00 1891.00 0.00 \N 0.00 821 600 4 2019-11-20 02:57:30.278989 2019-11-20 02:57:30.278989 1946.00 1946.00 0.00 \N 0.00 822 601 2 2019-11-21 02:45:58.108678 2019-11-21 02:45:58.108678 3887.00 4652.00 0.00 \N 0.00 823 603 2 2019-11-22 02:48:04.130028 2019-11-22 02:48:04.130028 969.00 1621.00 0.00 \N 0.00 824 603 5 2019-11-22 02:48:04.132106 2019-11-22 02:48:04.132106 3997.00 3997.00 0.00 \N 0.00 825 604 2 2019-11-22 02:51:21.962835 2019-11-22 02:51:21.962835 399.00 1289.00 0.00 \N 0.00 826 605 2 2019-11-22 02:56:55.046968 2019-11-22 02:56:55.046968 1931.00 2922.00 0.00 \N 0.00 827 605 5 2019-11-22 02:56:55.048723 2019-11-22 02:56:55.048723 1538.00 1538.00 0.00 \N 0.00 828 606 1 2019-11-23 02:35:39.374844 2019-11-23 02:35:39.374844 1808.00 1808.00 0.00 \N 0.00 829 606 2 2019-11-23 02:35:39.377915 2019-11-23 02:35:39.377915 4442.00 5363.00 0.00 \N 0.00 830 607 2 2019-11-23 02:55:24.73884 2019-11-23 02:55:24.73884 449.00 1871.00 0.00 \N 0.00 831 609 2 2019-11-24 02:58:05.781058 2019-11-24 02:58:05.781058 2995.00 3394.00 0.00 \N 530.00 832 610 1 2019-11-24 02:58:19.066221 2019-11-24 02:58:19.066221 729.00 729.00 0.00 \N 0.00 833 610 2 2019-11-24 02:58:19.072152 2019-11-24 02:58:19.072152 3146.00 3077.00 0.00 \N 1040.00 834 611 1 2019-11-24 02:58:19.187943 2019-11-24 02:58:19.187943 729.00 729.00 0.00 \N 0.00 835 611 2 2019-11-24 02:58:19.191164 2019-11-24 02:58:19.191164 3146.00 3077.00 0.00 \N 1040.00 836 612 2 2019-11-24 03:07:22.277707 2019-11-24 03:07:22.277707 2045.00 1480.00 0.00 \N 1328.00 837 612 4 2019-11-24 03:07:22.280291 2019-11-24 03:07:22.280291 500.00 500.00 0.00 \N 0.00 838 613 1 2019-11-24 21:59:15.695708 2019-11-24 21:59:15.695708 1099.00 1099.00 0.00 \N 0.00 839 615 1 2019-11-26 02:39:07.975713 2019-11-26 02:39:07.975713 700.00 700.00 0.00 \N 0.00 840 615 2 2019-11-26 02:39:07.97828 2019-11-26 02:39:07.97828 1148.00 1978.00 0.00 \N 50.00 841 616 1 2019-11-26 03:01:01.3664 2019-11-26 03:01:01.3664 1299.00 1299.00 0.00 \N 0.00 842 616 2 2019-11-26 03:01:01.369646 2019-11-26 03:01:01.369646 649.00 1726.00 0.00 \N 0.00 843 618 1 2019-11-27 02:48:23.538853 2019-11-27 02:48:23.538853 3216.00 3216.00 0.00 \N 0.00 844 618 2 2019-11-27 02:48:23.54191 2019-11-27 02:48:23.54191 3197.00 2675.00 0.00 \N 1500.00 845 619 2 2019-11-27 02:59:05.526023 2019-11-27 02:59:05.526023 1049.00 1843.00 0.00 \N 0.00 846 620 2 2019-11-27 03:13:33.170171 2019-11-27 03:13:33.170171 1099.00 1284.00 0.00 \N 541.00 847 620 4 2019-11-27 03:13:33.172677 2019-11-27 03:13:33.172677 699.00 699.00 0.00 \N 0.00 848 622 2 2019-11-28 02:55:30.952901 2019-11-28 02:55:30.952901 1048.00 1846.00 0.00 \N 0.00 849 622 5 2019-11-28 02:55:30.958087 2019-11-28 02:55:30.958087 1498.00 1498.00 0.00 \N 0.00 850 623 2 2019-11-28 02:55:31.267913 2019-11-28 02:55:31.267913 1048.00 1846.00 0.00 \N 0.00 851 623 5 2019-11-28 02:55:31.274288 2019-11-28 02:55:31.274288 1498.00 1498.00 0.00 \N 0.00 852 624 2 2019-11-28 03:02:48.959076 2019-11-28 03:02:48.959076 2198.00 3041.00 0.00 \N 0.00 853 625 2 2019-11-29 02:44:46.937788 2019-11-29 02:44:46.937788 1598.00 2273.00 0.00 \N 0.00 854 626 2 2019-11-29 02:53:11.719931 2019-11-29 02:53:11.719931 2346.00 3192.00 0.00 \N 0.00 855 627 2 2019-11-29 02:56:21.426827 2019-11-29 02:56:21.426827 1200.00 1741.00 0.00 \N 0.00 856 628 1 2019-11-30 02:59:09.133029 2019-11-30 02:59:09.133029 1848.00 1848.00 0.00 \N 0.00 857 628 2 2019-11-30 02:59:09.136554 2019-11-30 02:59:09.136554 1568.00 2341.00 0.00 \N 0.00 858 629 1 2019-11-30 03:00:10.376449 2019-11-30 03:00:10.376449 2398.00 2398.00 0.00 \N 0.00 859 630 1 2019-12-01 02:48:59.398901 2019-12-01 02:48:59.398901 2357.00 2357.00 0.00 \N 0.00 860 630 2 2019-12-01 02:48:59.401347 2019-12-01 02:48:59.401347 2056.00 1574.00 0.00 \N 880.00 861 632 2 2019-12-01 03:05:06.115805 2019-12-01 03:05:06.115805 2329.00 1822.00 0.00 \N 1348.00 862 633 2 2019-12-01 03:06:24.760739 2019-12-01 03:06:24.760739 2188.00 2201.00 0.00 \N 528.00 863 633 4 2019-12-01 03:06:24.763698 2019-12-01 03:06:24.763698 1599.00 1599.00 0.00 \N 0.00 864 634 1 2019-12-01 22:02:21.292189 2019-12-01 22:02:21.292189 649.00 649.00 0.00 \N 0.00 865 634 2 2019-12-01 22:02:21.294986 2019-12-01 22:02:21.294986 1049.00 1871.00 0.00 \N 0.00 866 636 2 2019-12-01 23:07:25.801791 2019-12-01 23:07:25.801791 2228.00 2929.00 0.00 \N 0.00 867 637 2 2019-12-03 02:55:12.08704 2019-12-03 02:55:12.08704 2178.00 2607.00 0.00 \N 0.00 868 638 2 2019-12-03 02:57:58.691798 2019-12-03 02:57:58.691798 1048.00 1622.00 0.00 \N 0.00 869 639 1 2019-12-03 03:07:14.087745 2019-12-03 03:07:14.087745 899.00 899.00 0.00 \N 0.00 870 639 2 2019-12-03 03:07:14.089523 2019-12-03 03:07:14.089523 1699.00 2568.00 0.00 \N 0.00 871 639 3 2019-12-03 03:07:14.090998 2019-12-03 03:07:14.090998 799.00 799.00 0.00 \N 0.00 872 640 2 2019-12-04 02:03:28.647742 2019-12-04 02:03:28.647742 1979.00 2497.00 0.00 \N 250.00 873 641 1 2019-12-04 02:13:25.929562 2019-12-04 02:13:25.929562 899.00 899.00 0.00 \N 0.00 874 641 2 2019-12-04 02:13:25.931586 2019-12-04 02:13:25.931586 149.00 771.00 0.00 \N 0.00 875 642 2 2019-12-04 02:54:53.253425 2019-12-04 02:54:53.253425 569.00 1176.00 0.00 \N 0.00 876 643 1 2019-12-05 02:57:54.547855 2019-12-05 02:57:54.547855 500.00 500.00 0.00 \N 0.00 877 643 2 2019-12-05 02:57:54.549768 2019-12-05 02:57:54.549768 1248.00 1924.00 0.00 \N 0.00 878 643 4 2019-12-05 02:57:54.552755 2019-12-05 02:57:54.552755 799.00 799.00 0.00 \N 0.00 879 644 1 2019-12-05 02:59:16.200146 2019-12-05 02:59:16.200146 1199.00 1199.00 0.00 \N 0.00 880 644 2 2019-12-05 02:59:16.201774 2019-12-05 02:59:16.201774 3214.99 4111.99 0.00 \N 0.00 881 644 5 2019-12-05 02:59:16.20312 2019-12-05 02:59:16.20312 1222.30 1222.30 0.00 \N 0.00 882 645 1 2019-12-05 03:04:57.915431 2019-12-05 03:04:57.915431 899.00 899.00 0.00 \N 0.00 883 645 2 2019-12-05 03:04:57.91728 2019-12-05 03:04:57.91728 499.00 1270.00 0.00 \N 0.00 884 646 1 2019-12-06 02:52:53.409633 2019-12-06 02:52:53.409633 1488.00 1488.00 0.00 \N 0.00 885 646 2 2019-12-06 02:52:53.411687 2019-12-06 02:52:53.411687 789.00 1513.00 0.00 \N 0.00 886 647 1 2019-12-06 03:00:10.844396 2019-12-06 03:00:10.844396 899.00 899.00 0.00 \N 0.00 887 647 2 2019-12-06 03:00:10.849384 2019-12-06 03:00:10.849384 699.00 1269.00 0.00 \N 0.00 888 647 5 2019-12-06 03:00:10.853273 2019-12-06 03:00:10.853273 1129.00 1129.00 0.00 \N 0.00 889 648 1 2019-12-06 03:00:10.969412 2019-12-06 03:00:10.969412 899.00 899.00 0.00 \N 0.00 890 648 2 2019-12-06 03:00:10.971405 2019-12-06 03:00:10.971405 699.00 1269.00 0.00 \N 0.00 891 648 5 2019-12-06 03:00:10.973205 2019-12-06 03:00:10.973205 1129.00 1129.00 0.00 \N 0.00 892 649 2 2019-12-06 03:00:34.575675 2019-12-06 03:00:34.575675 4587.00 5488.00 0.00 \N 10.00 893 649 5 2019-12-06 03:00:34.577451 2019-12-06 03:00:34.577451 599.00 599.00 0.00 \N 0.00 894 650 2 2019-12-07 03:02:17.142426 2019-12-07 03:02:17.142426 1398.00 1667.00 0.00 \N 0.00 895 650 4 2019-12-07 03:02:17.145418 2019-12-07 03:02:17.145418 1948.00 1948.00 0.00 \N 0.00 896 651 2 2019-12-07 03:02:17.29382 2019-12-07 03:02:17.29382 1398.00 1667.00 0.00 \N 0.00 897 651 4 2019-12-07 03:02:17.295646 2019-12-07 03:02:17.295646 1948.00 1948.00 0.00 \N 0.00 898 652 2 2019-12-07 03:05:55.315975 2019-12-07 03:05:55.315975 1728.00 2816.00 0.00 \N 0.00 899 653 1 2019-12-08 02:58:13.191545 2019-12-08 02:58:13.191545 1970.00 1970.00 0.00 \N 0.00 900 653 2 2019-12-08 02:58:13.193425 2019-12-08 02:58:13.193425 1558.00 2271.00 0.00 \N 0.00 901 653 3 2019-12-08 02:58:13.194839 2019-12-08 02:58:13.194839 499.00 499.00 0.00 \N 0.00 902 654 1 2019-12-08 03:02:30.869985 2019-12-08 03:02:30.869985 3971.00 3971.00 0.00 \N 0.00 903 654 2 2019-12-08 03:02:30.872078 2019-12-08 03:02:30.872078 3488.00 3327.00 0.00 \N 877.00 904 655 2 2019-12-08 03:12:03.931021 2019-12-08 03:12:03.931021 1996.00 1333.00 0.00 \N 1130.00 905 655 4 2019-12-08 03:12:03.932788 2019-12-08 03:12:03.932788 899.00 899.00 0.00 \N 0.00 906 656 2 2019-12-08 22:02:07.994401 2019-12-08 22:02:07.994401 949.00 1496.00 0.00 \N 0.00 907 657 2 2019-12-08 22:06:50.937633 2019-12-08 22:06:50.937633 549.00 1370.00 0.00 \N 0.00 908 659 2 2019-12-10 03:01:29.186087 2019-12-10 03:01:29.186087 1898.00 2268.00 0.00 \N 0.00 909 660 2 2019-12-10 03:02:36.181636 2019-12-10 03:02:36.181636 5923.00 6419.00 0.00 \N 0.00 910 660 4 2019-12-10 03:02:36.183316 2019-12-10 03:02:36.183316 1599.00 1599.00 0.00 \N 0.00 911 661 1 2019-12-10 03:16:48.126923 2019-12-10 03:16:48.126923 749.00 749.00 0.00 \N 0.00 912 661 2 2019-12-10 03:16:48.128783 2019-12-10 03:16:48.128783 5415.00 4671.00 0.00 \N 1415.00 913 662 2 2019-12-11 03:01:05.507207 2019-12-11 03:01:05.507207 1488.00 2059.00 0.00 \N 0.00 914 663 1 2019-12-11 03:11:47.539486 2019-12-11 03:11:47.539486 3977.00 3977.00 0.00 \N 0.00 915 663 2 2019-12-11 03:11:47.541529 2019-12-11 03:11:47.541529 6763.00 7757.00 0.00 \N 25.00 916 663 4 2019-12-11 03:11:47.543417 2019-12-11 03:11:47.543417 699.00 699.00 0.00 \N 0.00 917 663 5 2019-12-11 03:11:47.545126 2019-12-11 03:11:47.545126 747.00 747.00 0.00 \N 0.00 918 664 1 2019-12-11 03:12:16.543971 2019-12-11 03:12:16.543971 649.00 649.00 0.00 \N 0.00 919 664 2 2019-12-11 03:12:16.545618 2019-12-11 03:12:16.545618 1997.00 2765.00 0.00 \N 0.00 920 664 4 2019-12-11 03:12:16.547104 2019-12-11 03:12:16.547104 699.00 699.00 0.00 \N 0.00 921 665 1 2019-12-12 03:02:04.273785 2019-12-12 03:02:04.273785 2098.00 2098.00 0.00 \N 0.00 922 665 2 2019-12-12 03:02:04.275816 2019-12-12 03:02:04.275816 3026.00 3709.00 0.00 \N 0.00 923 666 1 2019-12-12 03:18:31.766399 2019-12-12 03:18:31.766399 1804.00 1804.00 0.00 \N 0.00 924 666 2 2019-12-12 03:18:31.769029 2019-12-12 03:18:31.769029 2678.00 3535.00 0.00 \N 0.00 925 667 2 2019-12-12 03:19:06.032927 2019-12-12 03:19:06.032927 3013.00 3572.00 0.00 \N 0.00 926 668 1 2019-12-13 03:03:49.861333 2019-12-13 03:03:49.861333 1998.00 1998.00 0.00 \N 0.00 927 668 2 2019-12-13 03:03:49.863597 2019-12-13 03:03:49.863597 949.00 1658.00 0.00 \N 0.00 928 669 1 2019-12-13 03:04:44.263718 2019-12-13 03:04:44.263718 1899.00 1899.00 0.00 \N 0.00 929 669 2 2019-12-13 03:04:44.266171 2019-12-13 03:04:44.266171 3246.00 4281.00 0.00 \N 0.00 930 670 2 2019-12-13 03:16:22.471347 2019-12-13 03:16:22.471347 2199.00 3271.00 0.00 \N 0.00 931 671 2 2019-12-14 02:55:18.754731 2019-12-14 02:55:18.754731 6630.99 7411.99 0.00 \N 0.00 932 672 2 2019-12-14 02:59:58.15505 2019-12-14 02:59:58.15505 1028.00 1699.00 0.00 \N 0.00 933 673 2 2019-12-14 03:02:10.393601 2019-12-14 03:02:10.393601 1698.00 2456.00 0.00 \N 0.00 934 673 4 2019-12-14 03:02:10.395487 2019-12-14 03:02:10.395487 759.00 759.00 0.00 \N 0.00 935 674 1 2019-12-15 03:03:40.411417 2019-12-15 03:03:40.411417 1847.00 1847.00 0.00 \N 0.00 936 674 2 2019-12-15 03:03:40.413314 2019-12-15 03:03:40.413314 4874.00 4880.00 0.00 \N 1350.00 937 674 4 2019-12-15 03:03:40.414872 2019-12-15 03:03:40.414872 1099.00 1099.00 0.00 \N 0.00 938 675 2 2019-12-15 03:13:53.132686 2019-12-15 03:13:53.132686 2099.00 2798.00 0.00 \N 0.00 939 675 5 2019-12-15 03:13:53.134292 2019-12-15 03:13:53.134292 1763.16 1763.16 0.00 \N 0.00 940 676 1 2019-12-15 03:16:35.686003 2019-12-15 03:16:35.686003 8230.00 8230.00 0.00 \N 0.00 941 676 2 2019-12-15 03:16:35.687556 2019-12-15 03:16:35.687556 5162.99 5021.99 0.00 \N 1153.00 942 676 3 2019-12-15 03:16:35.689146 2019-12-15 03:16:35.689146 739.00 739.00 0.00 \N 0.00 943 677 1 2019-12-15 23:14:38.303711 2019-12-15 23:14:38.303711 1998.00 1998.00 0.00 \N 0.00 944 677 2 2019-12-15 23:14:38.305687 2019-12-15 23:14:38.305687 1008.00 1630.00 0.00 \N 300.00 945 677 4 2019-12-15 23:14:38.308066 2019-12-15 23:14:38.308066 269.00 269.00 0.00 \N 0.00 946 678 1 2019-12-15 23:26:30.251253 2019-12-15 23:26:30.251253 1188.00 1188.00 0.00 \N 0.00 947 678 2 2019-12-15 23:26:30.252991 2019-12-15 23:26:30.252991 4087.00 4895.00 0.00 \N 0.00 948 678 4 2019-12-15 23:26:30.254533 2019-12-15 23:26:30.254533 799.00 799.00 0.00 \N 0.00 949 679 1 2019-12-16 01:04:00.815556 2019-12-16 01:04:00.815556 589.00 589.00 0.00 \N 0.00 950 679 2 2019-12-16 01:04:00.817689 2019-12-16 01:04:00.817689 0.00 198.00 0.00 \N 100.00 951 680 2 2019-12-17 02:47:54.407766 2019-12-17 02:47:54.407766 4024.00 5154.00 0.00 \N 0.00 952 681 2 2019-12-17 03:00:30.150825 2019-12-17 03:00:30.150825 905.00 1300.00 0.00 \N 0.00 953 681 4 2019-12-17 03:00:30.152984 2019-12-17 03:00:30.152984 899.00 899.00 0.00 \N 0.00 954 682 4 2019-12-17 03:07:26.762347 2019-12-17 03:07:26.762347 1989.00 1989.00 0.00 \N 0.00 955 683 2 2019-12-18 03:01:13.086255 2019-12-18 03:01:13.086255 999.00 1538.00 0.00 \N 0.00 956 684 2 2019-12-18 03:01:13.191277 2019-12-18 03:01:13.191277 999.00 1538.00 0.00 \N 0.00 957 685 1 2019-12-18 03:05:04.32051 2019-12-18 03:05:04.32051 1599.00 1599.00 0.00 \N 0.00 958 685 2 2019-12-18 03:05:04.322515 2019-12-18 03:05:04.322515 2807.00 4261.00 0.00 \N 0.00 959 686 2 2019-12-18 03:05:56.945243 2019-12-18 03:05:56.945243 4166.00 4705.00 0.00 \N 0.00 960 687 1 2019-12-19 02:53:32.092237 2019-12-19 02:53:32.092237 2098.00 2098.00 0.00 \N 0.00 961 687 2 2019-12-19 02:53:32.094266 2019-12-19 02:53:32.094266 1907.00 3168.00 0.00 \N 0.00 962 687 5 2019-12-19 02:53:32.095951 2019-12-19 02:53:32.095951 1953.00 1953.00 0.00 \N 0.00 963 688 1 2019-12-19 03:02:29.656818 2019-12-19 03:02:29.656818 4944.00 4944.00 0.00 \N 0.00 964 688 2 2019-12-19 03:02:29.658559 2019-12-19 03:02:29.658559 2905.00 3543.00 0.00 \N 0.00 965 689 1 2019-12-19 03:09:08.854198 2019-12-19 03:09:08.854198 1328.00 1328.00 0.00 \N 0.00 966 689 2 2019-12-19 03:09:08.855893 2019-12-19 03:09:08.855893 2447.00 3652.00 0.00 \N 0.00 967 690 1 2019-12-20 02:59:42.527244 2019-12-20 02:59:42.527244 499.00 499.00 0.00 \N 0.00 968 690 2 2019-12-20 02:59:42.52923 2019-12-20 02:59:42.52923 4897.00 5123.00 0.00 \N 1042.00 969 690 3 2019-12-20 02:59:42.530953 2019-12-20 02:59:42.530953 1720.32 1720.32 0.00 \N 0.00 970 691 2 2019-12-20 03:03:50.901469 2019-12-20 03:03:50.901469 3735.00 4978.00 0.00 \N 0.00 971 692 1 2019-12-20 03:07:33.571472 2019-12-20 03:07:33.571472 1859.00 1859.00 0.00 \N 0.00 972 692 2 2019-12-20 03:07:33.573139 2019-12-20 03:07:33.573139 699.00 1851.00 0.00 \N 0.00 973 693 2 2019-12-21 03:03:40.992891 2019-12-21 03:03:40.992891 3148.00 4371.00 0.00 \N 0.00 974 694 1 2019-12-21 03:07:38.716306 2019-12-21 03:07:38.716306 799.00 799.00 0.00 \N 0.00 975 694 2 2019-12-21 03:07:38.718338 2019-12-21 03:07:38.718338 3107.10 4585.10 0.00 \N 0.00 976 695 2 2019-12-21 03:16:28.539386 2019-12-21 03:16:28.539386 1858.00 2809.00 0.00 \N 0.00 977 695 3 2019-12-21 03:16:28.541033 2019-12-21 03:16:28.541033 1000.00 1000.00 0.00 \N 0.00 978 696 3 2019-12-22 02:57:11.684266 2019-12-22 02:57:11.684266 990.00 990.00 0.00 \N 0.00 979 696 2 2019-12-22 02:57:11.686294 2019-12-22 02:57:11.686294 6632.20 7959.20 0.00 \N 44.00 980 696 5 2019-12-22 02:57:11.687958 2019-12-22 02:57:11.687958 1458.00 1458.00 0.00 \N 0.00 981 696 4 2019-12-22 02:57:11.689456 2019-12-22 02:57:11.689456 855.00 855.00 0.00 \N 0.00 982 696 1 2019-12-22 02:57:11.690824 2019-12-22 02:57:11.690824 3120.00 3120.00 0.00 \N 0.00 983 697 4 2019-12-22 03:14:32.385004 2019-12-22 03:14:32.385004 459.00 459.00 0.00 \N 0.00 984 697 3 2019-12-22 03:14:32.386741 2019-12-22 03:14:32.386741 1762.00 1762.00 0.00 \N 0.00 985 697 1 2019-12-22 03:14:32.388199 2019-12-22 03:14:32.388199 1389.00 1389.00 0.00 \N 0.00 986 697 2 2019-12-22 03:14:32.389819 2019-12-22 03:14:32.389819 13712.45 15190.45 0.00 \N 0.00 987 698 2 2019-12-22 03:33:58.462689 2019-12-22 03:33:58.462689 3012.40 3821.40 0.00 \N 0.00 988 699 1 2019-12-23 00:14:29.887553 2019-12-23 00:14:29.887553 2978.00 2978.00 0.00 \N 0.00 989 699 2 2019-12-23 00:14:29.889742 2019-12-23 00:14:29.889742 10464.00 11701.00 0.00 \N 0.00 990 700 1 2019-12-23 01:26:08.313149 2019-12-23 01:26:08.313149 3097.00 3097.00 0.00 \N 0.00 991 700 2 2019-12-23 01:26:08.315522 2019-12-23 01:26:08.315522 9287.29 10687.74 0.00 \N 0.00 992 701 1 2019-12-23 03:08:59.603353 2019-12-23 03:08:59.603353 670.00 670.00 0.00 \N 0.00 993 701 2 2019-12-23 03:08:59.605574 2019-12-23 03:08:59.605574 3570.50 4391.50 0.00 \N 0.00 994 702 1 2019-12-24 03:07:23.837111 2019-12-24 03:07:23.837111 839.00 839.00 0.00 \N 0.00 995 702 2 2019-12-24 03:07:23.83909 2019-12-24 03:07:23.83909 8151.00 6334.00 0.00 \N 2901.00 996 703 1 2019-12-24 03:20:26.608858 2019-12-24 03:20:26.608858 4094.00 4094.00 0.00 \N 0.00 997 703 2 2019-12-24 03:20:26.610505 2019-12-24 03:20:26.610505 4798.20 7076.94 0.00 \N 0.00 998 704 1 2019-12-24 03:46:58.231909 2019-12-24 03:46:58.231909 1487.00 1487.00 0.00 \N 0.00 999 704 2 2019-12-24 03:46:58.233681 2019-12-24 03:46:58.233681 9325.50 8914.30 0.00 \N 1303.20 1000 705 2 2019-12-25 01:20:47.320958 2019-12-25 01:20:47.320958 2119.00 3253.00 0.00 \N 0.00 1001 705 4 2019-12-25 01:20:47.323527 2019-12-25 01:20:47.323527 1388.00 1388.00 0.00 \N 0.00 1002 706 1 2019-12-25 01:31:54.426783 2019-12-25 01:31:54.426783 3024.99 3024.99 0.00 \N 0.00 1003 706 2 2019-12-25 01:31:54.428932 2019-12-25 01:31:54.428932 6333.40 7583.40 0.00 \N 0.00 1004 706 3 2019-12-25 01:31:54.430749 2019-12-25 01:31:54.430749 600.00 600.00 0.00 \N 0.00 1005 706 4 2019-12-25 01:31:54.432485 2019-12-25 01:31:54.432485 328.00 328.00 0.00 \N 0.00 1006 707 1 2019-12-25 02:33:07.344886 2019-12-25 02:33:07.344886 3321.00 3321.00 0.00 \N 0.00 1007 707 2 2019-12-25 02:33:07.346603 2019-12-25 02:33:07.346603 4289.40 6003.40 0.00 \N 200.00 1008 708 1 2019-12-27 02:43:24.359751 2019-12-27 02:43:24.359751 1409.00 1409.00 0.00 \N 0.00 1009 708 2 2019-12-27 02:43:24.361708 2019-12-27 02:43:24.361708 2190.30 2273.70 0.00 \N 0.00 1010 709 1 2019-12-27 02:59:36.144021 2019-12-27 02:59:36.144021 3249.00 3249.00 0.00 \N 0.00 1011 709 2 2019-12-27 02:59:36.145948 2019-12-27 02:59:36.145948 1578.99 2531.99 0.00 \N 0.00 1012 710 2 2019-12-27 03:03:38.618904 2019-12-27 03:03:38.618904 3978.00 5481.00 0.00 \N 0.00 1013 711 2 2019-12-28 02:42:36.840867 2019-12-28 02:42:36.840867 4910.00 5517.00 0.00 \N 425.00 1014 711 4 2019-12-28 02:42:36.842873 2019-12-28 02:42:36.842873 1360.00 1360.00 0.00 \N 0.00 1015 712 1 2019-12-28 02:53:15.858058 2019-12-28 02:53:15.858058 599.00 599.00 0.00 \N 0.00 1016 712 2 2019-12-28 02:53:15.859765 2019-12-28 02:53:15.859765 3023.20 3855.20 0.00 \N 0.00 1017 713 2 2019-12-28 02:58:35.361456 2019-12-28 02:58:35.361456 899.00 1912.00 0.00 \N 468.00 1018 714 2 2019-12-29 02:05:56.107483 2019-12-29 02:05:56.107483 2387.40 3242.40 0.00 \N 0.00 1019 714 4 2019-12-29 02:05:56.109588 2019-12-29 02:05:56.109588 110.00 110.00 0.00 \N 0.00 1020 715 1 2019-12-29 02:06:51.093883 2019-12-29 02:06:51.093883 171.00 171.00 0.00 \N 0.00 1021 715 2 2019-12-29 02:06:51.095416 2019-12-29 02:06:51.095416 4459.00 3648.00 0.00 \N 1728.00 1022 716 2 2019-12-29 02:39:21.989376 2019-12-29 02:39:21.989376 3134.80 4046.80 0.00 \N 0.00 1023 717 2 2019-12-29 21:57:56.706761 2019-12-29 21:57:56.706761 3175.00 4123.00 0.00 \N 200.00 1024 717 4 2019-12-29 21:57:56.708871 2019-12-29 21:57:56.708871 1099.00 1099.00 0.00 \N 0.00 1025 718 2 2019-12-30 01:28:00.536395 2019-12-30 01:28:00.536395 2569.10 3515.10 0.00 \N 0.00 1026 719 1 2019-12-31 02:59:50.731237 2019-12-31 02:59:50.731237 2230.00 2230.00 0.00 \N 0.00 1027 719 2 2019-12-31 02:59:50.733385 2019-12-31 02:59:50.733385 4715.00 4087.00 0.00 \N 1643.00 1028 720 2 2019-12-31 03:02:31.136093 2019-12-31 03:02:31.136093 5616.50 5858.90 0.00 \N 0.00 1029 721 2 2019-12-31 03:14:24.145117 2019-12-31 03:14:24.145117 5004.00 6127.00 0.00 \N 0.00 1030 722 1 2020-01-01 00:56:21.842966 2020-01-01 00:56:21.842966 1818.00 1818.00 0.00 \N 0.00 1031 722 2 2020-01-01 00:56:21.845433 2020-01-01 00:56:21.845433 3318.45 4177.35 0.00 \N 0.00 1032 722 4 2020-01-01 00:56:21.847048 2020-01-01 00:56:21.847048 989.00 989.00 0.00 \N 0.00 1033 723 2 2020-01-01 01:13:57.227701 2020-01-01 01:13:57.227701 12968.99 14090.99 0.00 \N 5.00 1034 723 4 2020-01-01 01:13:57.229771 2020-01-01 01:13:57.229771 630.00 630.00 0.00 \N 0.00 1035 723 5 2020-01-01 01:13:57.231274 2020-01-01 01:13:57.231274 2243.00 2243.00 0.00 \N 0.00 1036 724 1 2020-01-01 01:14:59.93903 2020-01-01 01:14:59.93903 749.00 749.00 0.00 \N 0.00 1037 724 2 2020-01-01 01:14:59.941033 2020-01-01 01:14:59.941033 2071.10 3138.10 0.00 \N 0.00 1038 725 1 2020-01-03 02:14:05.279749 2020-01-03 02:14:05.279749 1000.00 1000.00 0.00 \N 0.00 1039 725 2 2020-01-03 02:14:05.282381 2020-01-03 02:14:05.282381 1524.30 1201.65 0.00 \N 1000.00 1040 726 2 2020-01-03 02:51:06.992177 2020-01-03 02:51:06.992177 679.00 1270.00 0.00 \N 0.00 1041 728 2 2020-01-04 02:57:40.538313 2020-01-04 02:57:40.538313 1100.00 2370.00 0.00 \N 0.00 1042 729 2 2020-01-04 03:01:02.043439 2020-01-04 03:01:02.043439 2758.00 3895.00 0.00 \N 0.00 1043 730 2 2020-01-04 03:02:05.131709 2020-01-04 03:02:05.131709 2326.60 3528.25 0.00 \N 0.00 1044 731 2 2020-01-05 02:27:22.963624 2020-01-05 02:27:22.963624 4397.00 3477.00 0.00 \N 1890.00 1045 732 2 2020-01-05 02:49:33.956958 2020-01-05 02:49:33.956958 2609.99 1748.24 0.00 \N 1890.00 1046 733 2 2020-01-05 02:56:23.133936 2020-01-05 02:56:23.133936 0.00 1246.00 0.00 \N 50.00 1047 734 2 2020-01-07 02:54:54.903473 2020-01-07 02:54:54.903473 330.00 1107.00 0.00 \N 0.00 1048 735 2 2020-01-07 02:54:55.04101 2020-01-07 02:54:55.04101 330.00 1107.00 0.00 \N 0.00 1049 736 2 2020-01-07 03:00:36.742635 2020-01-07 03:00:36.742635 281.40 1029.40 0.00 \N 0.00 1050 737 2 2020-01-07 03:00:36.845028 2020-01-07 03:00:36.845028 281.40 1029.40 0.00 \N 0.00 1051 738 2 2020-01-07 03:00:40.429208 2020-01-07 03:00:40.429208 281.40 1029.40 0.00 \N 0.00 1052 739 2 2020-01-07 03:00:40.621569 2020-01-07 03:00:40.621569 281.40 1029.40 0.00 \N 0.00 1053 740 2 2020-01-07 03:00:40.802555 2020-01-07 03:00:40.802555 281.40 1029.40 0.00 \N 0.00 1054 741 2 2020-01-07 03:00:40.936448 2020-01-07 03:00:40.936448 281.40 1029.40 0.00 \N 0.00 1055 742 2 2020-01-07 03:00:41.110909 2020-01-07 03:00:41.110909 281.40 1029.40 0.00 \N 0.00 1056 743 1 2020-01-08 02:52:04.806619 2020-01-08 02:52:04.806619 899.00 899.00 0.00 \N 0.00 1057 743 2 2020-01-08 02:52:04.808869 2020-01-08 02:52:04.808869 898.80 2144.80 0.00 \N 0.00 1058 744 2 2020-01-08 02:52:20.859436 2020-01-08 02:52:20.859436 1477.00 2584.00 0.00 \N 0.00 1059 745 2 2020-01-08 02:57:35.691813 2020-01-08 02:57:35.691813 419.40 1448.80 0.00 \N 0.00 1060 746 2 2020-01-09 02:10:59.858431 2020-01-09 02:10:59.858431 1640.00 2624.00 0.00 \N 0.00 1061 746 5 2020-01-09 02:10:59.860516 2020-01-09 02:10:59.860516 1008.00 1008.00 0.00 \N 0.00 1062 747 2 2020-01-09 02:24:44.840889 2020-01-09 02:24:44.840889 550.00 1998.00 0.00 \N 0.00 1063 748 2 2020-01-09 02:24:44.94577 2020-01-09 02:24:44.94577 550.00 1998.00 0.00 \N 0.00 1064 749 2 2020-01-09 03:01:34.377353 2020-01-09 03:01:34.377353 977.40 2077.40 0.00 \N 0.00 1065 750 2 2020-01-10 01:57:18.398905 2020-01-10 01:57:18.398905 350.00 1174.00 0.00 \N 0.00 1066 751 2 2020-01-10 02:01:41.943712 2020-01-10 02:01:41.943712 299.40 1097.40 0.00 \N 0.00 1067 752 2 2020-01-11 02:01:27.502839 2020-01-11 02:01:27.502839 275.40 1372.40 0.00 \N 0.00 1068 753 2 2020-01-11 02:04:26.656138 2020-01-11 02:04:26.656138 2628.00 3802.00 0.00 \N 0.00 1069 754 2 2020-01-11 03:04:08.295736 2020-01-11 03:04:08.295736 1267.70 2344.70 0.00 \N 0.00 1070 756 1 2020-01-12 02:21:02.689042 2020-01-12 02:21:02.689042 449.40 449.40 0.00 \N 0.00 1071 756 2 2020-01-12 02:21:02.691466 2020-01-12 02:21:02.691466 6172.40 4696.40 0.00 \N 2478.00 1072 757 2 2020-01-14 01:36:54.853102 2020-01-14 01:36:54.853102 2974.00 3670.00 0.00 \N 0.00 1073 761 2 2020-01-15 02:03:13.263157 2020-01-15 02:03:13.263157 700.00 1370.00 0.00 \N 0.00 1074 762 2 2020-01-15 02:58:12.669861 2020-01-15 02:58:12.669861 1599.00 2643.00 0.00 \N 0.00 1075 763 2 2020-01-16 02:04:20.083344 2020-01-16 02:04:20.083344 2268.00 2938.00 0.00 \N 0.00 1076 763 3 2020-01-16 02:04:20.085445 2020-01-16 02:04:20.085445 700.00 700.00 0.00 \N 0.00 1077 764 2 2020-01-16 02:08:07.221606 2020-01-16 02:08:07.221606 779.40 2151.40 0.00 \N 0.00 1078 765 2 2020-01-16 02:57:24.121888 2020-01-16 02:57:24.121888 0.00 1013.00 0.00 \N 130.00 1079 766 2 2020-01-17 02:03:43.610635 2020-01-17 02:03:43.610635 897.99 2048.99 0.00 \N 0.00 1080 767 2 2020-01-17 02:07:31.896192 2020-01-17 02:07:31.896192 299.01 1237.01 0.00 \N 0.00 1081 767 3 2020-01-17 02:07:31.89852 2020-01-17 02:07:31.89852 900.00 900.00 0.00 \N 0.00 1082 768 2 2020-01-17 03:00:46.071531 2020-01-17 03:00:46.071531 145.00 1158.00 0.00 \N 0.00 1083 769 2 2020-01-18 02:01:51.129404 2020-01-18 02:01:51.129404 450.00 1167.00 0.00 \N 120.00 1084 769 3 2020-01-18 02:01:51.13145 2020-01-18 02:01:51.13145 300.00 300.00 0.00 \N 0.00 1085 770 2 2020-01-18 02:02:09.835913 2020-01-18 02:02:09.835913 970.20 2018.20 0.00 \N 0.00 1086 770 4 2020-01-18 02:02:09.83741 2020-01-18 02:02:09.83741 419.31 419.31 0.00 \N 0.00 1087 771 1 2020-01-18 03:01:59.467086 2020-01-18 03:01:59.467086 399.50 399.50 0.00 \N 0.00 1088 771 2 2020-01-18 03:01:59.469108 2020-01-18 03:01:59.469108 1079.00 2237.00 0.00 \N 0.00 1089 772 2 2020-01-19 02:02:47.628464 2020-01-19 02:02:47.628464 2290.00 2632.00 0.00 \N 325.00 1090 772 4 2020-01-19 02:02:47.631168 2020-01-19 02:02:47.631168 600.00 600.00 0.00 \N 0.00 1091 773 2 2020-01-19 02:58:04.869583 2020-01-19 02:58:04.869583 749.40 1986.40 0.00 \N 0.00 1092 774 2 2020-01-21 01:53:11.950535 2020-01-21 01:53:11.950535 600.00 1307.00 0.00 \N 25.00 1093 775 2 2020-01-21 17:20:53.75427 2020-01-21 17:20:53.75427 400.00 1386.00 0.00 \N 0.00 1094 775 4 2020-01-21 17:20:53.756438 2020-01-21 17:20:53.756438 1099.00 1099.00 0.00 \N 0.00 1095 777 2 2020-01-22 02:04:49.256496 2020-01-22 02:04:49.256496 736.80 1754.80 0.00 \N 0.00 1096 779 2 2020-01-23 02:05:23.095279 2020-01-23 02:05:23.095279 720.00 1327.00 0.00 \N 0.00 1097 780 2 2020-01-23 02:59:41.714916 2020-01-23 02:59:41.714916 500.00 1886.00 0.00 \N 0.00 1098 781 2 2020-01-24 02:01:40.720393 2020-01-24 02:01:40.720393 1549.00 971.00 0.00 \N 1205.00 1099 782 2 2020-01-24 02:02:38.663041 2020-01-24 02:02:38.663041 820.80 1575.60 0.00 \N 0.00 1100 784 2 2020-01-25 02:05:10.098256 2020-01-25 02:05:10.098256 1012.80 1883.80 0.00 \N 704.00 1101 785 2 2020-01-25 02:05:10.215967 2020-01-25 02:05:10.215967 1012.80 1883.80 0.00 \N 704.00 1102 786 2 2020-01-25 02:12:07.481942 2020-01-25 02:12:07.481942 2500.00 3471.00 0.00 \N 0.00 1103 786 4 2020-01-25 02:12:07.483948 2020-01-25 02:12:07.483948 1599.00 1599.00 0.00 \N 0.00 1104 788 2 2020-01-26 02:10:19.889387 2020-01-26 02:10:19.889387 1457.00 2340.00 0.00 \N 0.00 1105 789 2 2020-01-26 02:30:07.237038 2020-01-26 02:30:07.237038 2488.00 2824.00 0.00 \N 135.00 1106 790 2 2020-01-26 03:01:06.038488 2020-01-26 03:01:06.038488 569.00 1455.00 0.00 \N 0.00 1107 791 2 2020-01-26 22:04:52.546769 2020-01-26 22:04:52.546769 820.00 1644.00 0.00 \N 0.00 1108 792 2 2020-01-26 22:13:37.025806 2020-01-26 22:13:37.025806 389.40 1229.40 0.00 \N 0.00 1109 793 2 2020-01-28 01:57:43.236466 2020-01-28 01:57:43.236466 200.00 1834.00 0.00 \N 10.00 1110 794 2 2020-01-28 02:08:51.859909 2020-01-28 02:08:51.859909 659.40 1888.40 0.00 \N 0.00 1111 795 2 2020-01-28 02:08:51.987387 2020-01-28 02:08:51.987387 659.40 1888.40 0.00 \N 0.00 1112 796 2 2020-01-28 03:06:07.467493 2020-01-28 03:06:07.467493 1329.00 2284.00 0.00 \N 0.00 1113 797 2 2020-01-29 02:09:30.337902 2020-01-29 02:09:30.337902 600.00 1488.40 0.00 \N 0.00 1114 798 2 2020-01-29 02:13:14.301018 2020-01-29 02:13:14.301018 800.00 1634.00 0.00 \N 0.00 1115 799 2 2020-01-29 02:58:34.04898 2020-01-29 02:58:34.04898 400.00 1284.00 0.00 \N 0.00 1116 800 2 2020-01-30 01:55:35.684166 2020-01-30 01:55:35.684166 3429.00 4063.00 0.00 \N 0.00 1117 802 2 2020-01-30 03:31:57.888 2020-01-30 03:31:57.888 419.00 1705.00 0.00 \N 0.00 1118 802 3 2020-01-30 03:31:57.890546 2020-01-30 03:31:57.890546 250.00 250.00 0.00 \N 0.00 1119 803 1 2020-01-31 02:04:45.261064 2020-01-31 02:04:45.261064 489.30 489.30 0.00 \N 0.00 1120 803 2 2020-01-31 02:04:45.263563 2020-01-31 02:04:45.263563 1348.20 2336.20 0.00 \N 0.00 1121 804 2 2020-01-31 02:24:58.505669 2020-01-31 02:24:58.505669 1985.00 1643.00 0.00 \N 1205.00 1122 804 4 2020-01-31 02:24:58.508177 2020-01-31 02:24:58.508177 2728.00 2728.00 0.00 \N 0.00 1123 804 5 2020-01-31 02:24:58.51002 2020-01-31 02:24:58.51002 1595.00 1595.00 0.00 \N 0.00 1124 805 2 2020-01-31 03:01:36.798098 2020-01-31 03:01:36.798098 500.00 1205.00 0.00 \N 0.00 1125 806 2 2020-02-01 02:01:53.214207 2020-02-01 02:01:53.214207 1440.80 2476.80 0.00 \N 0.00 1126 807 2 2020-02-01 02:05:46.227924 2020-02-01 02:05:46.227924 1340.00 2053.00 0.00 \N 0.00 1127 807 3 2020-02-01 02:05:46.229591 2020-02-01 02:05:46.229591 500.00 500.00 0.00 \N 0.00 1128 808 2 2020-02-01 02:51:29.467401 2020-02-01 02:51:29.467401 49.00 1254.00 0.00 \N 0.00 1129 808 3 2020-02-01 02:51:29.469275 2020-02-01 02:51:29.469275 4598.00 4598.00 0.00 \N 0.00 1130 809 2 2020-02-02 01:56:22.855003 2020-02-02 01:56:22.855003 2540.00 1993.00 0.00 \N 1100.00 1131 810 2 2020-02-02 02:01:53.149804 2020-02-02 02:01:53.149804 250.00 1726.00 0.00 \N 0.00 1132 812 1 2020-02-04 02:06:34.080729 2020-02-04 02:06:34.080729 49.00 49.00 0.00 \N 0.00 1133 813 2 2020-02-05 02:00:16.37635 2020-02-05 02:00:16.37635 1148.80 2874.80 0.00 \N 0.00 1134 814 2 2020-02-05 02:23:57.837511 2020-02-05 02:23:57.837511 1560.00 2353.00 0.00 \N 0.00 1135 815 2 2020-02-05 02:46:18.685273 2020-02-05 02:46:18.685273 2288.00 3542.00 0.00 \N 0.00 1136 816 2 2020-02-06 02:04:24.666173 2020-02-06 02:04:24.666173 560.00 1213.00 0.00 \N 0.00 1137 817 2 2020-02-06 02:05:40.562239 2020-02-06 02:05:40.562239 600.00 2474.00 0.00 \N 0.00 1138 818 2 2020-02-06 02:54:24.696796 2020-02-06 02:54:24.696796 400.00 1083.00 0.00 \N 859.00 1139 819 2 2020-02-07 01:59:52.88982 2020-02-07 01:59:52.88982 1070.00 1983.00 0.00 \N 0.00 1140 820 2 2020-02-07 02:12:56.80348 2020-02-07 02:12:56.80348 1554.60 4028.60 0.00 \N 0.00 1141 821 2 2020-02-07 02:56:14.203977 2020-02-07 02:56:14.203977 100.00 583.00 0.00 \N 600.00 1142 822 2 2020-02-08 02:01:08.519231 2020-02-08 02:01:08.519231 359.40 1987.40 0.00 \N 0.00 1143 823 2 2020-02-08 02:12:54.437262 2020-02-08 02:12:54.437262 400.00 1358.00 0.00 \N 25.00 1144 824 2 2020-02-08 02:52:10.537965 2020-02-08 02:52:10.537965 948.00 1531.00 0.00 \N 0.00 1145 825 2 2020-02-09 02:12:34.003052 2020-02-09 02:12:34.003052 1125.00 1278.00 0.00 \N 1205.00 1146 826 2 2020-02-09 02:12:51.226008 2020-02-09 02:12:51.226008 2197.80 3172.80 0.00 \N 1012.00 1147 827 1 2020-02-09 03:02:55.645731 2020-02-09 03:02:55.645731 329.00 329.00 0.00 \N 0.00 1148 827 2 2020-02-09 03:02:55.647853 2020-02-09 03:02:55.647853 349.00 1380.00 0.00 \N 0.00 1149 830 2 2020-02-11 02:04:23.687473 2020-02-11 02:04:23.687473 1089.00 2167.00 0.00 \N 0.00 1150 831 2 2020-02-11 03:10:49.521398 2020-02-11 03:10:49.521398 1928.00 3278.00 0.00 \N 30.00 1151 833 2 2020-02-12 02:03:00.173677 2020-02-12 02:03:00.173677 1299.00 2266.00 0.00 \N 0.00 1152 834 2 2020-02-12 03:01:43.930264 2020-02-12 03:01:43.930264 600.00 1878.00 0.00 \N 0.00 1153 836 2 2020-02-13 02:24:36.925569 2020-02-13 02:24:36.925569 1420.00 2686.00 0.00 \N 0.00 1154 837 4 2020-02-13 02:36:48.9913 2020-02-13 02:36:48.9913 400.00 400.00 0.00 \N 0.00 1155 839 2 2020-02-14 02:08:32.392198 2020-02-14 02:08:32.392198 900.00 1886.00 0.00 \N 0.00 1156 840 2 2020-02-14 02:57:55.688839 2020-02-14 02:57:55.688839 500.00 1878.00 0.00 \N 0.00 1157 841 2 2020-02-14 03:07:28.657204 2020-02-14 03:07:28.657204 1059.00 1937.00 0.00 \N 0.00 1158 842 1 2020-02-15 02:01:06.84435 2020-02-15 02:01:06.84435 239.00 239.00 0.00 \N 0.00 1159 842 2 2020-02-15 02:01:06.846393 2020-02-15 02:01:06.846393 500.00 1486.00 0.00 \N 0.00 1160 843 1 2020-02-15 02:03:17.357798 2020-02-15 02:03:17.357798 350.00 350.00 0.00 \N 0.00 1161 843 2 2020-02-15 02:03:17.359976 2020-02-15 02:03:17.359976 250.00 1222.00 0.00 \N 0.00 1162 844 2 2020-02-15 03:02:35.177906 2020-02-15 03:02:35.177906 2887.00 3824.00 0.00 \N 0.00 1163 844 3 2020-02-15 03:02:35.179769 2020-02-15 03:02:35.179769 700.00 700.00 0.00 \N 0.00 1164 845 2 2020-02-16 02:16:42.694013 2020-02-16 02:16:42.694013 1196.80 818.80 0.00 \N 1100.00 1165 846 1 2020-02-16 02:32:35.130388 2020-02-16 02:32:35.130388 1049.00 1049.00 0.00 \N 0.00 1166 846 2 2020-02-16 02:32:35.132322 2020-02-16 02:32:35.132322 750.00 1736.00 0.00 \N 0.00 1167 847 2 2020-02-16 02:56:21.521675 2020-02-16 02:56:21.521675 100.00 1224.00 0.00 \N 0.00 1168 848 2 2020-02-18 02:53:06.247761 2020-02-18 02:53:06.247761 999.00 2223.00 0.00 \N 0.00 1169 849 2 2020-02-18 02:59:46.553256 2020-02-18 02:59:46.553256 359.40 1177.40 0.00 \N 0.00 1170 850 2 2020-02-18 03:09:57.900054 2020-02-18 03:09:57.900054 450.00 1456.00 0.00 \N 170.00 1171 852 2 2020-02-19 02:56:06.892039 2020-02-19 02:56:06.892039 699.00 1922.00 0.00 \N 0.00 1172 853 2 2020-02-19 03:00:34.24641 2020-02-19 03:00:34.24641 0.00 1006.00 0.00 \N 50.00 1173 854 1 2020-02-20 02:03:03.831911 2020-02-20 02:03:03.831911 1169.00 1169.00 0.00 \N 0.00 1174 855 1 2020-02-20 02:03:03.999793 2020-02-20 02:03:03.999793 699.00 699.00 0.00 \N 0.00 1175 855 2 2020-02-20 02:03:04.002778 2020-02-20 02:03:04.002778 969.00 1975.00 0.00 \N 0.00 1176 857 2 2020-02-21 02:33:20.314328 2020-02-21 02:33:20.314328 848.00 1923.00 0.00 \N 0.00 1177 857 4 2020-02-21 02:33:20.316513 2020-02-21 02:33:20.316513 1299.00 1299.00 0.00 \N 0.00 1178 858 2 2020-02-21 02:58:54.344736 2020-02-21 02:58:54.344736 597.99 1519.99 0.00 \N 0.00 1179 858 3 2020-02-21 02:58:54.346685 2020-02-21 02:58:54.346685 300.00 300.00 0.00 \N 0.00 1180 858 4 2020-02-21 02:58:54.348332 2020-02-21 02:58:54.348332 600.00 600.00 0.00 \N 0.00 1181 859 1 2020-02-22 02:27:48.275978 2020-02-22 02:27:48.275978 799.00 799.00 0.00 \N 0.00 1182 859 2 2020-02-22 02:27:48.27809 2020-02-22 02:27:48.27809 2667.00 3890.00 0.00 \N 0.00 1183 861 1 2020-02-22 03:00:45.948242 2020-02-22 03:00:45.948242 999.00 999.00 0.00 \N 0.00 1184 862 1 2020-02-23 02:30:32.839976 2020-02-23 02:30:32.839976 729.00 729.00 0.00 \N 0.00 1185 863 1 2020-02-23 02:33:35.056241 2020-02-23 02:33:35.056241 3372.00 3372.00 0.00 \N 0.00 1186 863 2 2020-02-23 02:33:35.058062 2020-02-23 02:33:35.058062 4435.00 3570.00 0.00 \N 2255.00 1187 864 2 2020-02-23 03:14:04.720066 2020-02-23 03:14:04.720066 120.00 1140.00 0.00 \N 0.00 1188 865 2 2020-02-25 02:42:18.344409 2020-02-25 02:42:18.344409 200.00 1155.00 0.00 \N 115.00 1189 865 4 2020-02-25 02:42:18.347411 2020-02-25 02:42:18.347411 699.00 699.00 0.00 \N 0.00 1190 867 1 2020-02-26 02:31:29.813551 2020-02-26 02:31:29.813551 400.00 400.00 0.00 \N 0.00 1191 867 2 2020-02-26 02:31:29.815489 2020-02-26 02:31:29.815489 499.00 1676.00 0.00 \N 0.00 1192 868 1 2020-02-26 02:31:30.050977 2020-02-26 02:31:30.050977 400.00 400.00 0.00 \N 0.00 1193 868 2 2020-02-26 02:31:30.052569 2020-02-26 02:31:30.052569 499.00 1676.00 0.00 \N 0.00 1194 869 2 2020-02-26 02:36:44.137779 2020-02-26 02:36:44.137779 2418.00 3573.00 0.00 \N 0.00 1195 870 2 2020-02-26 02:50:34.098989 2020-02-26 02:50:34.098989 100.00 1240.00 0.00 \N 0.00 1196 871 2 2020-02-27 02:30:04.939602 2020-02-27 02:30:04.939602 397.99 1370.99 0.00 \N 0.00 1197 874 1 2020-02-27 03:01:44.065083 2020-02-27 03:01:44.065083 699.00 699.00 0.00 \N 0.00 1198 874 2 2020-02-27 03:01:44.066978 2020-02-27 03:01:44.066978 300.00 1043.00 0.00 \N 550.00 1199 875 2 2020-02-28 02:29:48.588016 2020-02-28 02:29:48.588016 200.00 1377.00 0.00 \N 0.00 1200 876 2 2020-02-28 02:29:48.707077 2020-02-28 02:29:48.707077 200.00 1377.00 0.00 \N 0.00 1201 877 2 2020-02-28 02:33:01.323862 2020-02-28 02:33:01.323862 968.00 934.00 0.00 \N 1205.00 1202 878 2 2020-02-29 02:31:34.709923 2020-02-29 02:31:34.709923 2547.99 2830.99 0.00 \N 651.00 1203 879 2 2020-02-29 02:45:53.290184 2020-02-29 02:45:53.290184 100.00 823.00 0.00 \N 320.00 1204 880 1 2020-03-01 02:23:53.665516 2020-03-01 02:23:53.665516 849.00 849.00 0.00 \N 0.00 1205 880 2 2020-03-01 02:23:53.668268 2020-03-01 02:23:53.668268 300.00 1240.00 0.00 \N 90.00 1206 881 1 2020-03-01 02:37:25.401619 2020-03-01 02:37:25.401619 699.00 699.00 0.00 \N 0.00 1207 881 2 2020-03-01 02:37:25.403625 2020-03-01 02:37:25.403625 3555.00 3732.00 0.00 \N 1200.00 1208 882 1 2020-03-01 03:01:07.232265 2020-03-01 03:01:07.232265 1699.00 1699.00 0.00 \N 0.00 1209 883 2 2020-03-01 22:01:04.783209 2020-03-01 22:01:04.783209 649.00 951.00 0.00 \N 0.00 1210 884 4 2020-03-03 02:34:57.654477 2020-03-03 02:34:57.654477 1568.00 1568.00 0.00 \N 0.00 1211 885 4 2020-03-03 02:34:57.977146 2020-03-03 02:34:57.977146 1568.00 1568.00 0.00 \N 0.00 1212 886 2 2020-03-03 02:39:05.424816 2020-03-03 02:39:05.424816 529.00 1480.00 0.00 \N 0.00 1213 887 1 2020-03-03 03:01:33.8459 2020-03-03 03:01:33.8459 569.00 569.00 0.00 \N 0.00 1214 888 1 2020-03-03 03:01:34.039044 2020-03-03 03:01:34.039044 569.00 569.00 0.00 \N 0.00 1215 889 2 2020-03-04 02:25:57.411909 2020-03-04 02:25:57.411909 450.00 740.00 0.00 \N 550.00 1216 889 3 2020-03-04 02:25:57.414103 2020-03-04 02:25:57.414103 500.00 500.00 0.00 \N 0.00 1217 889 4 2020-03-04 02:25:57.416194 2020-03-04 02:25:57.416194 849.00 849.00 0.00 \N 0.00 1218 891 2 2020-03-04 03:06:59.599402 2020-03-04 03:06:59.599402 100.00 523.00 0.00 \N 400.00 1219 892 2 2020-03-05 02:16:29.962203 2020-03-05 02:16:29.962203 400.00 1140.00 0.00 \N 0.00 1220 893 2 2020-03-05 02:30:04.930462 2020-03-05 02:30:04.930462 599.00 1579.00 0.00 \N 0.00 1221 895 2 2020-03-06 02:25:48.536306 2020-03-06 02:25:48.536306 200.00 1140.00 0.00 \N 0.00 1222 896 1 2020-03-06 02:33:27.452263 2020-03-06 02:33:27.452263 849.00 849.00 0.00 \N 0.00 1223 896 2 2020-03-06 02:33:27.45437 2020-03-06 02:33:27.45437 339.00 918.00 0.00 \N 0.00 1224 898 1 2020-03-07 02:51:41.235404 2020-03-07 02:51:41.235404 400.00 400.00 0.00 \N 0.00 1225 898 2 2020-03-07 02:51:41.237986 2020-03-07 02:51:41.237986 1278.00 2418.00 0.00 \N 0.00 1226 899 2 2020-03-07 18:24:06.785036 2020-03-07 18:24:06.785036 956.00 679.00 0.00 \N 800.00 1227 899 4 2020-03-07 18:24:06.787404 2020-03-07 18:24:06.787404 1199.00 1199.00 0.00 \N 0.00 1228 900 1 2020-03-08 02:21:13.506014 2020-03-08 02:21:13.506014 500.00 500.00 0.00 \N 0.00 1229 900 2 2020-03-08 02:21:13.508345 2020-03-08 02:21:13.508345 1368.00 1681.00 0.00 \N 1105.00 1230 900 4 2020-03-08 02:21:13.510484 2020-03-08 02:21:13.510484 1190.00 1190.00 0.00 \N 0.00 1231 901 2 2020-03-08 02:31:00.16783 2020-03-08 02:31:00.16783 1399.00 2317.00 0.00 \N 0.00 1232 901 4 2020-03-08 02:31:00.169353 2020-03-08 02:31:00.169353 528.99 528.99 0.00 \N 0.00 1233 903 2 2020-03-08 22:00:40.832986 2020-03-08 22:00:40.832986 1398.00 2549.00 0.00 \N 0.00 1234 904 2 2020-03-08 22:15:49.688741 2020-03-08 22:15:49.688741 0.00 767.00 0.00 \N 1050.00 1235 906 2 2020-03-10 02:59:05.93405 2020-03-10 02:59:05.93405 1048.00 1727.00 0.00 \N 0.00 1236 907 2 2020-03-11 02:20:59.69014 2020-03-11 02:20:59.69014 100.00 849.00 0.00 \N 0.00 1237 908 2 2020-03-11 02:58:20.054237 2020-03-11 02:58:20.054237 5473.00 6240.00 0.00 \N 0.00 1238 910 2 2020-03-12 02:23:28.766047 2020-03-12 02:23:28.766047 300.00 1049.00 0.00 \N 100.00 1239 911 1 2020-03-12 02:32:29.324865 2020-03-12 02:32:29.324865 884.00 884.00 0.00 \N 0.00 1240 912 2 2020-03-12 02:39:10.410685 2020-03-12 02:39:10.410685 1199.00 2148.00 0.00 \N 0.00 1241 913 1 2020-03-12 03:02:40.943227 2020-03-12 03:02:40.943227 1798.00 1798.00 0.00 \N 0.00 1242 913 2 2020-03-12 03:02:40.945697 2020-03-12 03:02:40.945697 699.00 1426.00 0.00 \N 0.00 1243 913 3 2020-03-12 03:02:40.947925 2020-03-12 03:02:40.947925 1699.00 1699.00 0.00 \N 0.00 1244 914 2 2020-03-13 02:47:58.442684 2020-03-13 02:47:58.442684 2094.99 3034.99 0.00 \N 0.00 1245 915 2 2020-03-14 02:32:39.05172 2020-03-14 02:32:39.05172 2597.00 3632.00 0.00 \N 0.00 1246 916 1 2020-03-14 02:35:05.630544 2020-03-14 02:35:05.630544 2593.99 2593.99 0.00 \N 0.00 1247 916 2 2020-03-14 02:35:05.632213 2020-03-14 02:35:05.632213 2698.00 3646.00 0.00 \N 0.00 1248 916 3 2020-03-14 02:35:05.633858 2020-03-14 02:35:05.633858 500.00 500.00 0.00 \N 0.00 1249 917 2 2020-03-14 03:01:41.619234 2020-03-14 03:01:41.619234 699.00 1625.00 0.00 \N 0.00 1250 918 1 2020-03-15 02:23:34.979227 2020-03-15 02:23:34.979227 769.00 769.00 0.00 \N 0.00 1251 918 2 2020-03-15 02:23:34.981349 2020-03-15 02:23:34.981349 2939.00 2821.00 0.00 \N 1050.00 1252 919 2 2020-03-15 02:35:11.815859 2020-03-15 02:35:11.815859 149.00 1045.00 0.00 \N 0.00 1253 919 4 2020-03-15 02:35:11.817775 2020-03-15 02:35:11.817775 899.00 899.00 0.00 \N 0.00 1254 920 2 2020-03-15 03:00:35.320469 2020-03-15 03:00:35.320469 899.00 1924.00 0.00 \N 100.00 1255 921 2 2020-03-15 22:00:18.450795 2020-03-15 22:00:18.450795 2229.10 3274.10 0.00 \N 0.00 1256 922 2 2020-03-16 22:05:36.072789 2020-03-16 22:05:36.072789 189.00 1019.00 0.00 \N 0.00 1257 923 1 2020-03-16 22:07:20.817599 2020-03-16 22:07:20.817599 1428.00 1428.00 0.00 \N 0.00 1258 923 2 2020-03-16 22:07:20.819492 2020-03-16 22:07:20.819492 1199.00 2173.00 0.00 \N 0.00 1259 924 1 2020-03-17 02:18:46.965288 2020-03-17 02:18:46.965288 2099.00 2099.00 0.00 \N 0.00 1260 925 2 2020-03-18 02:24:12.88918 2020-03-18 02:24:12.88918 4794.00 5972.00 0.00 \N 25.00 1261 926 2 2020-03-18 02:30:41.02726 2020-03-18 02:30:41.02726 869.00 1388.00 0.00 \N 0.00 1262 927 1 2020-03-18 02:59:14.875186 2020-03-18 02:59:14.875186 677.00 677.00 0.00 \N 0.00 1263 927 2 2020-03-18 02:59:14.87711 2020-03-18 02:59:14.87711 1247.00 2021.00 0.00 \N 150.00 1264 928 2 2020-03-19 02:26:01.896142 2020-03-19 02:26:01.896142 1545.00 2907.00 0.00 \N 0.00 1265 929 4 2020-03-19 02:29:53.923049 2020-03-19 02:29:53.923049 1157.00 1157.00 0.00 \N 0.00 1266 930 4 2020-03-19 02:49:17.845276 2020-03-19 02:49:17.845276 1398.00 1398.00 0.00 \N 0.00 1267 930 2 2020-03-19 02:49:17.847267 2020-03-19 02:49:17.847267 299.00 1020.00 0.00 \N 0.00 1268 931 3 2020-03-20 02:27:08.083872 2020-03-20 02:27:08.083872 600.00 600.00 0.00 \N 0.00 1269 931 1 2020-03-20 02:27:08.088085 2020-03-20 02:27:08.088085 230.00 230.00 0.00 \N 0.00 1270 931 2 2020-03-20 02:27:08.089741 2020-03-20 02:27:08.089741 1298.00 2505.00 0.00 \N 0.00 1271 932 3 2020-03-20 02:55:00.947597 2020-03-20 02:55:00.947597 823.00 823.00 0.00 \N 0.00 1272 933 3 2020-03-20 02:55:01.115205 2020-03-20 02:55:01.115205 823.00 823.00 0.00 \N 0.00 1273 934 2 2020-03-20 02:55:26.901487 2020-03-20 02:55:26.901487 1735.00 1123.00 0.00 \N 1500.00 1274 934 3 2020-03-20 02:55:26.903221 2020-03-20 02:55:26.903221 2500.00 2500.00 0.00 \N 0.00 1275 935 1 2020-03-21 02:25:20.041923 2020-03-21 02:25:20.041923 479.00 479.00 0.00 \N 0.00 1276 935 2 2020-03-21 02:25:20.04384 2020-03-21 02:25:20.04384 49.00 1054.00 0.00 \N 0.00 1277 937 4 2020-03-21 02:50:33.50716 2020-03-21 02:50:33.50716 1599.00 1599.00 0.00 \N 0.00 1278 937 2 2020-03-21 02:50:33.508686 2020-03-21 02:50:33.508686 1697.00 2217.00 0.00 \N 0.00 1279 938 2 2020-03-22 01:39:15.139907 2020-03-22 01:39:15.139907 200.00 823.00 0.00 \N 0.00 1280 939 2 2020-03-22 01:43:08.033492 2020-03-22 01:43:08.033492 1947.00 1796.00 0.00 \N 1205.00 1281 939 1 2020-03-22 01:43:08.035232 2020-03-22 01:43:08.035232 1119.00 1119.00 0.00 \N 0.00 1282 940 2 2020-03-22 02:52:36.794158 2020-03-22 02:52:36.794158 2038.00 2755.00 0.00 \N 0.00 1283 943 2 2020-03-24 02:27:19.039935 2020-03-24 02:27:19.039935 1105.99 1728.99 0.00 \N 0.00 1284 944 2 2020-03-24 02:28:11.870788 2020-03-24 02:28:11.870788 918.00 1754.00 0.00 \N 0.00 1285 945 4 2020-03-25 02:01:01.23449 2020-03-25 02:01:01.23449 1588.00 1588.00 0.00 \N 0.00 1286 946 3 2020-03-25 02:10:35.432133 2020-03-25 02:10:35.432133 600.00 600.00 0.00 \N 0.00 1287 948 2 2020-03-29 01:08:28.49231 2020-03-29 01:08:28.49231 1845.00 2600.00 0.00 \N 0.00 1288 949 3 2020-03-31 19:16:02.278579 2020-03-31 19:16:02.278579 519.00 519.00 0.00 \N 0.00 1289 949 2 2020-03-31 19:16:02.280577 2020-03-31 19:16:02.280577 348.00 877.00 0.00 \N 0.00 1290 950 3 2020-05-04 05:34:18.662141 2020-05-04 05:34:18.662141 14944.00 14944.00 0.00 \N 0.00 1291 950 4 2020-05-04 05:34:18.664265 2020-05-04 05:34:18.664265 500.00 500.00 0.00 \N 0.00 1292 950 1 2020-05-04 05:34:18.676547 2020-05-04 05:34:18.676547 1000.00 1000.00 0.00 \N 0.00 1293 951 3 2020-05-04 05:35:13.268772 2020-05-04 05:35:13.268772 10243.01 10243.01 0.00 \N 0.00 1294 951 1 2020-05-04 05:35:13.270351 2020-05-04 05:35:13.270351 2000.00 2000.00 0.00 \N 0.00 1295 953 3 2020-05-04 05:36:31.891914 2020-05-04 05:36:31.891914 1248.00 1248.00 0.00 \N 0.00 1296 954 4 2020-06-26 21:06:25.504635 2020-06-26 21:06:25.504635 2397.00 2397.00 0.00 \N 0.00 1297 954 1 2020-06-26 21:06:25.506748 2020-06-26 21:06:25.506748 3346.00 3346.00 0.00 \N 0.00 1298 954 3 2020-06-26 21:06:25.508256 2020-06-26 21:06:25.508256 6343.00 6343.00 0.00 \N 0.00 1299 954 2 2020-06-26 21:06:25.509786 2020-06-26 21:06:25.509786 2077.00 2831.00 0.00 \N 0.00 1300 955 4 2020-07-01 19:10:44.771962 2020-07-01 19:10:44.771962 599.00 599.00 0.00 \N 0.00 1301 955 3 2020-07-01 19:10:44.774084 2020-07-01 19:10:44.774084 3503.10 3503.10 0.00 \N 0.00 1302 955 1 2020-07-01 19:10:44.775514 2020-07-01 19:10:44.775514 1749.00 1749.00 0.00 \N 0.00 1303 956 4 2020-07-02 21:59:01.962139 2020-07-02 21:59:01.962139 519.00 519.00 0.00 \N 0.00 1304 956 1 2020-07-02 21:59:01.964122 2020-07-02 21:59:01.964122 569.00 569.00 0.00 \N 0.00 1305 956 2 2020-07-02 21:59:01.965613 2020-07-02 21:59:01.965613 4532.00 5466.00 0.00 \N 220.00 1306 957 3 2020-07-03 01:50:57.232279 2020-07-03 01:50:57.232279 31724.50 31724.50 0.00 \N 0.00 1307 957 1 2020-07-03 01:50:57.234229 2020-07-03 01:50:57.234229 7024.15 7024.15 0.00 \N 0.00 1308 957 4 2020-07-03 01:50:57.23571 2020-07-03 01:50:57.23571 3958.00 3958.00 0.00 \N 0.00 1309 957 2 2020-07-03 01:50:57.237068 2020-07-03 01:50:57.237068 549.00 1249.00 0.00 \N 0.00 1310 958 2 2020-07-03 22:00:17.927138 2020-07-03 22:00:17.927138 2117.00 2183.00 0.00 \N 900.00 1311 959 1 2020-07-04 01:19:03.628814 2020-07-04 01:19:03.628814 1396.00 1396.00 0.00 \N 0.00 1312 960 3 2020-07-04 23:09:30.481239 2020-07-04 23:09:30.481239 879.20 879.20 0.00 \N 0.00 1313 961 3 2020-07-05 00:07:14.361375 2020-07-05 00:07:14.361375 2317.00 2317.00 0.00 \N 0.00 1314 961 1 2020-07-05 00:07:14.363404 2020-07-05 00:07:14.363404 139.00 139.00 0.00 \N 0.00 1315 961 2 2020-07-05 00:07:14.364935 2020-07-05 00:07:14.364935 7497.00 4697.00 0.00 \N 3000.00 1316 962 1 2020-07-06 01:52:19.459378 2020-07-06 01:52:19.459378 500.00 500.00 0.00 \N 0.00 1317 962 3 2020-07-06 01:52:19.461525 2020-07-06 01:52:19.461525 4697.00 4697.00 0.00 \N 0.00 1318 963 1 2020-07-06 01:53:20.903331 2020-07-06 01:53:20.903331 1599.00 1599.00 0.00 \N 0.00 1319 964 2 2020-07-07 00:18:01.167133 2020-07-07 00:18:01.167133 8150.00 8833.00 0.00 \N 0.00 1320 965 2 2020-07-07 00:58:50.823929 2020-07-07 00:58:50.823929 7345.00 7987.00 0.00 \N 0.00 1321 966 2 2020-07-07 23:41:04.769351 2020-07-07 23:41:04.769351 5879.00 6752.00 0.00 \N 0.00 1322 967 3 2020-07-08 00:31:58.00388 2020-07-08 00:31:58.00388 3600.00 3600.00 0.00 \N 0.00 1323 967 2 2020-07-08 00:31:58.00578 2020-07-08 00:31:58.00578 2294.00 2934.00 0.00 \N 0.00 1324 968 2 2020-07-08 23:24:51.804926 2020-07-08 23:24:51.804926 3947.00 4699.00 0.00 \N 0.00 1325 969 1 2020-07-09 00:29:40.842869 2020-07-09 00:29:40.842869 2798.00 2798.00 0.00 \N 0.00 1326 969 2 2020-07-09 00:29:40.845273 2020-07-09 00:29:40.845273 2599.20 3544.20 0.00 \N 0.00 1327 970 2 2020-07-10 00:01:18.578461 2020-07-10 00:01:18.578461 969.00 1768.00 0.00 \N 0.00 1328 971 2 2020-07-10 00:39:09.473387 2020-07-10 00:39:09.473387 9155.00 10598.00 0.00 \N 0.00 1329 971 1 2020-07-10 00:39:09.475159 2020-07-10 00:39:09.475159 500.00 500.00 0.00 \N 0.00 1330 973 4 2020-07-11 00:42:22.546648 2020-07-11 00:42:22.546648 411.00 411.00 0.00 \N 0.00 1331 973 1 2020-07-11 00:42:22.548677 2020-07-11 00:42:22.548677 2798.00 2798.00 0.00 \N 0.00 1332 974 3 2020-07-11 22:31:44.230224 2020-07-11 22:31:44.230224 1499.00 1499.00 0.00 \N 0.00 1333 974 2 2020-07-11 22:31:44.232361 2020-07-11 22:31:44.232361 0.00 468.00 0.00 \N 400.00 1334 975 2 2020-07-13 23:58:00.423212 2020-07-13 23:58:00.423212 1098.99 1566.99 0.00 \N 0.00 1335 976 2 2020-07-14 01:06:03.265107 2020-07-14 01:06:03.265107 7705.00 9006.00 0.00 \N 0.00 1336 976 3 2020-07-14 01:06:03.267002 2020-07-14 01:06:03.267002 2079.00 2079.00 0.00 \N 0.00 1337 976 1 2020-07-14 01:06:03.268774 2020-07-14 01:06:03.268774 500.00 500.00 0.00 \N 0.00 1338 978 2 2020-07-15 00:03:31.240081 2020-07-15 00:03:31.240081 1499.00 2717.00 0.00 \N 0.00 1339 979 3 2020-07-15 23:07:27.448377 2020-07-15 23:07:27.448377 3198.00 3198.00 0.00 \N 0.00 1340 980 1 2020-07-16 00:04:00.082441 2020-07-16 00:04:00.082441 1499.00 1499.00 0.00 \N 0.00 1341 980 2 2020-07-16 00:04:00.085506 2020-07-16 00:04:00.085506 1658.00 2875.00 0.00 \N 0.00 1342 981 2 2020-07-16 23:14:42.618542 2020-07-16 23:14:42.618542 2949.99 3924.99 0.00 \N 0.00 1343 982 1 2020-07-17 23:52:22.608132 2020-07-17 23:52:22.608132 2137.00 2137.00 0.00 \N 0.00 1344 982 2 2020-07-17 23:52:22.609977 2020-07-17 23:52:22.609977 3417.00 2859.00 0.00 \N 1125.00 1345 983 2 2020-07-18 00:46:29.717084 2020-07-18 00:46:29.717084 2294.01 3119.00 0.00 \N 400.00 1346 983 3 2020-07-18 00:46:29.718954 2020-07-18 00:46:29.718954 2000.00 2000.00 0.00 \N 0.00 1347 984 2 2020-07-18 23:43:33.874357 2020-07-18 23:43:33.874357 1924.00 2243.00 0.00 \N 340.00 1348 985 3 2020-07-19 00:37:23.705793 2020-07-19 00:37:23.705793 847.00 847.00 0.00 \N 0.00 1349 985 1 2020-07-19 00:37:23.707843 2020-07-19 00:37:23.707843 2598.00 2598.00 0.00 \N 0.00 1350 985 2 2020-07-19 00:37:23.709427 2020-07-19 00:37:23.709427 1898.00 1674.01 0.00 \N 1348.99 1351 986 2 2020-07-20 23:53:20.764077 2020-07-20 23:53:20.764077 947.00 1690.00 0.00 \N 0.00 1352 987 1 2020-07-21 00:36:49.485775 2020-07-21 00:36:49.485775 400.00 400.00 0.00 \N 0.00 1353 987 2 2020-07-21 00:36:49.488284 2020-07-21 00:36:49.488284 1204.50 2227.50 0.00 \N 0.00 1354 988 3 2020-07-22 00:32:43.972241 2020-07-22 00:32:43.972241 7050.00 7050.00 0.00 \N 0.00 1355 988 2 2020-07-22 00:32:43.974523 2020-07-22 00:32:43.974523 1117.00 2145.00 0.00 \N 0.00 1356 988 1 2020-07-22 00:32:43.976546 2020-07-22 00:32:43.976546 3185.00 3185.00 0.00 \N 0.00 1357 989 2 2020-07-23 00:21:45.415922 2020-07-23 00:21:45.415922 2207.00 3152.00 0.00 \N 0.00 1358 990 4 2020-07-24 00:07:16.322459 2020-07-24 00:07:16.322459 1417.00 1417.00 0.00 \N 0.00 1359 990 1 2020-07-24 00:07:16.325069 2020-07-24 00:07:16.325069 1599.00 1599.00 0.00 \N 0.00 1360 990 2 2020-07-24 00:07:16.326818 2020-07-24 00:07:16.326818 1360.00 2050.00 0.00 \N 0.00 1361 991 3 2020-07-24 00:41:36.434634 2020-07-24 00:41:36.434634 1799.00 1799.00 0.00 \N 0.00 1362 991 2 2020-07-24 00:41:36.436439 2020-07-24 00:41:36.436439 1648.00 2600.00 0.00 \N 0.00 1363 992 2 2020-07-25 00:17:25.529141 2020-07-25 00:17:25.529141 1998.00 1108.00 0.00 \N 1440.00 1364 992 3 2020-07-25 00:17:25.531143 2020-07-25 00:17:25.531143 1099.00 1099.00 0.00 \N 0.00 1365 993 2 2020-07-25 00:17:25.740654 2020-07-25 00:17:25.740654 1998.00 1108.00 0.00 \N 1440.00 1366 993 3 2020-07-25 00:17:25.742221 2020-07-25 00:17:25.742221 1099.00 1099.00 0.00 \N 0.00 1367 994 1 2020-07-25 01:11:46.49006 2020-07-25 01:11:46.49006 600.00 600.00 0.00 \N 0.00 1368 994 2 2020-07-25 01:11:46.491964 2020-07-25 01:11:46.491964 5996.00 6896.00 0.00 \N 0.00 1369 994 3 2020-07-25 01:11:46.493382 2020-07-25 01:11:46.493382 599.00 599.00 0.00 \N 0.00 1370 995 4 2020-07-26 00:36:19.779615 2020-07-26 00:36:19.779615 1449.50 1449.50 0.00 \N 0.00 1371 996 2 2020-07-28 00:01:46.846612 2020-07-28 00:01:46.846612 225.01 833.01 0.00 \N 0.00 1372 997 2 2020-07-28 00:25:51.741088 2020-07-28 00:25:51.741088 2798.00 3563.00 0.00 \N 0.00 1373 997 3 2020-07-28 00:25:51.743906 2020-07-28 00:25:51.743906 1000.00 1000.00 0.00 \N 0.00 1374 998 2 2020-07-28 23:59:44.766824 2020-07-28 23:59:44.766824 4446.00 5079.00 0.00 \N 0.00 1375 999 2 2020-07-29 00:30:37.164811 2020-07-29 00:30:37.164811 500.00 1563.00 0.00 \N 0.00 1376 1002 1 2020-07-30 00:34:59.031931 2020-07-30 00:34:59.031931 1399.00 1399.00 0.00 \N 0.00 1377 1002 2 2020-07-30 00:34:59.034013 2020-07-30 00:34:59.034013 996.99 2059.99 0.00 \N 0.00 1378 1003 2 2020-07-31 00:39:56.429076 2020-07-31 00:39:56.429076 2098.00 2957.99 0.00 \N 0.00 1379 1003 1 2020-07-31 00:39:56.431079 2020-07-31 00:39:56.431079 3098.00 3098.00 0.00 \N 0.00 1380 1006 2 2020-08-01 00:30:03.834668 2020-08-01 00:30:03.834668 5397.00 6154.00 0.00 \N 0.00 1381 1007 2 2020-08-01 00:49:08.839746 2020-08-01 00:49:08.839746 1000.00 1840.00 0.00 \N 0.00 1382 1008 2 2020-08-01 23:57:23.105882 2020-08-01 23:57:23.105882 499.99 338.99 0.00 \N 740.00 1383 1009 2 2020-08-02 00:35:09.113759 2020-08-02 00:35:09.113759 2398.00 3238.00 0.00 \N 0.00 1384 1010 2 2020-08-04 00:00:28.937056 2020-08-04 00:00:28.937056 1998.00 1637.00 0.00 \N 700.00 1385 1010 3 2020-08-04 00:00:28.939226 2020-08-04 00:00:28.939226 500.00 500.00 0.00 \N 0.00 1386 1011 2 2020-08-04 00:49:37.128742 2020-08-04 00:49:37.128742 10716.15 11454.15 0.00 \N 0.00 1387 1011 1 2020-08-04 00:49:37.130384 2020-08-04 00:49:37.130384 1900.00 1900.00 0.00 \N 0.00 1388 1012 2 2020-08-04 23:51:11.951952 2020-08-04 23:51:11.951952 2049.00 2222.00 0.00 \N 564.00 1389 1012 1 2020-08-04 23:51:11.954371 2020-08-04 23:51:11.954371 849.00 849.00 0.00 \N 0.00 1390 1013 2 2020-08-05 00:56:34.651873 2020-08-05 00:56:34.651873 4123.00 4861.15 0.00 \N 0.00 1391 1014 1 2020-08-06 00:06:57.111379 2020-08-06 00:06:57.111379 1499.00 1499.00 0.00 \N 0.00 1392 1014 2 2020-08-06 00:06:57.113467 2020-08-06 00:06:57.113467 49.00 771.00 0.00 \N 0.00 1393 1015 3 2020-08-06 00:40:18.501171 2020-08-06 00:40:18.501171 4419.00 4419.00 0.00 \N 0.00 1394 1015 2 2020-08-06 00:40:18.502886 2020-08-06 00:40:18.502886 5011.00 5785.15 0.00 \N 0.00 1395 1016 1 2020-08-06 23:05:07.1227 2020-08-06 23:05:07.1227 1499.00 1499.00 0.00 \N 0.00 1396 1016 2 2020-08-06 23:05:07.124965 2020-08-06 23:05:07.124965 440.00 1125.15 0.00 \N 0.00 1397 1017 2 2020-08-08 00:28:47.61728 2020-08-08 00:28:47.61728 550.00 1321.00 0.00 \N 0.00 1398 1018 3 2020-08-08 00:37:23.6149 2020-08-08 00:37:23.6149 600.00 600.00 0.00 \N 0.00 1399 1018 2 2020-08-08 00:37:23.616555 2020-08-08 00:37:23.616555 2198.00 2823.00 0.00 \N 0.00 1400 1019 2 2020-08-08 02:42:41.106034 2020-08-08 02:42:41.106034 1099.00 2022.00 0.00 \N 0.00 1401 1020 2 2020-08-08 23:56:01.500414 2020-08-08 23:56:01.500414 1654.00 1035.00 0.00 \N 1440.00 1402 1021 2 2020-08-10 21:49:10.163049 2020-08-10 21:49:10.163049 1299.00 2222.00 0.00 \N 0.00 1403 1021 3 2020-08-10 21:49:10.165179 2020-08-10 21:49:10.165179 999.00 999.00 0.00 \N 0.00 1404 1022 2 2020-08-11 16:31:49.469651 2020-08-11 16:31:49.469651 1399.00 2621.00 0.00 \N 0.00 1405 1023 2 2020-08-12 00:30:17.857391 2020-08-12 00:30:17.857391 3098.00 4019.00 0.00 \N 0.00 1406 1024 3 2020-08-13 00:19:04.0295 2020-08-13 00:19:04.0295 800.00 800.00 0.00 \N 0.00 1407 1024 1 2020-08-13 00:19:04.031435 2020-08-13 00:19:04.031435 500.00 500.00 0.00 \N 0.00 1408 1025 2 2020-08-13 00:38:25.862952 2020-08-13 00:38:25.862952 2098.00 3017.00 0.00 \N 0.00 1409 1026 2 2020-08-13 23:56:41.728682 2020-08-13 23:56:41.728682 1735.00 2770.00 0.00 \N 0.00 1410 1027 2 2020-08-14 01:01:51.765649 2020-08-14 01:01:51.765649 709.00 1626.00 0.00 \N 0.00 1411 1028 2 2020-08-14 23:39:38.217003 2020-08-14 23:39:38.217003 3545.00 4690.00 0.00 \N 25.00 1412 1028 1 2020-08-14 23:39:38.219108 2020-08-14 23:39:38.219108 2298.00 2298.00 0.00 \N 0.00 1413 1029 2 2020-08-15 19:03:07.572038 2020-08-15 19:03:07.572038 569.00 1495.00 0.00 \N 0.00 1414 1030 2 2020-08-15 23:50:58.173124 2020-08-15 23:50:58.173124 7144.00 7744.00 0.00 \N 690.00 1415 1031 3 2020-08-16 00:31:53.060068 2020-08-16 00:31:53.060068 500.00 500.00 0.00 \N 0.00 1416 1031 1 2020-08-16 00:31:53.062043 2020-08-16 00:31:53.062043 1599.00 1599.00 0.00 \N 0.00 1417 1032 2 2020-08-17 23:53:16.052972 2020-08-17 23:53:16.052972 1799.99 2943.99 0.00 \N 0.00 1418 1033 2 2020-08-18 00:17:59.03411 2020-08-18 00:17:59.03411 1599.00 2494.00 0.00 \N 0.00 1419 1034 3 2020-08-18 23:53:46.492282 2020-08-18 23:53:46.492282 1899.00 1899.00 0.00 \N 0.00 1420 1034 2 2020-08-18 23:53:46.494221 2020-08-18 23:53:46.494221 100.00 1304.00 0.00 \N 40.00 1421 1035 2 2020-08-19 00:27:50.966092 2020-08-19 00:27:50.966092 3506.00 4317.00 0.00 \N 0.00 1422 1035 1 2020-08-19 00:27:50.968105 2020-08-19 00:27:50.968105 1099.00 1099.00 0.00 \N 0.00 1423 1036 2 2020-08-19 16:03:10.182632 2020-08-19 16:03:10.182632 1599.00 2903.00 0.00 \N 0.00 1424 1037 2 2020-08-20 00:01:25.583966 2020-08-20 00:01:25.583966 2000.00 3303.00 0.00 \N 0.00 1425 1038 2 2020-08-20 00:50:17.254232 2020-08-20 00:50:17.254232 5806.00 6565.00 0.00 \N 0.00 1426 1039 2 2020-08-20 23:51:48.133543 2020-08-20 23:51:48.133543 580.00 1883.00 0.00 \N 0.00 1427 1040 2 2020-08-21 00:35:10.38559 2020-08-21 00:35:10.38559 1046.00 1611.00 0.00 \N 0.00 1428 1041 2 2020-08-22 00:07:39.876252 2020-08-22 00:07:39.876252 819.00 1952.00 0.00 \N 0.00 1429 1042 2 2020-08-22 00:32:18.869462 2020-08-22 00:32:18.869462 2999.00 3610.00 0.00 \N 0.00 1430 1042 4 2020-08-22 00:32:18.871074 2020-08-22 00:32:18.871074 1499.00 1499.00 0.00 \N 0.00 1431 1043 2 2020-08-22 23:59:51.645317 2020-08-22 23:59:51.645317 1200.00 2452.00 0.00 \N 0.00 1432 1044 1 2020-08-23 00:41:09.89118 2020-08-23 00:41:09.89118 899.00 899.00 0.00 \N 0.00 1433 1044 2 2020-08-23 00:41:09.892831 2020-08-23 00:41:09.892831 1700.00 2310.00 0.00 \N 0.00 1434 1045 2 2020-08-24 23:54:22.578289 2020-08-24 23:54:22.578289 1685.00 2837.00 0.00 \N 0.00 1435 1045 1 2020-08-24 23:54:22.580109 2020-08-24 23:54:22.580109 2635.00 2635.00 0.00 \N 0.00 1436 1046 4 2020-08-25 01:11:37.836971 2020-08-25 01:11:37.836971 999.00 999.00 0.00 \N 0.00 1437 1046 2 2020-08-25 01:11:37.83879 2020-08-25 01:11:37.83879 4386.00 5196.00 0.00 \N 0.00 1438 1047 2 2020-08-25 23:54:06.305527 2020-08-25 23:54:06.305527 1450.00 2887.00 0.00 \N 0.00 1439 1048 2 2020-08-26 01:25:16.172834 2020-08-26 01:25:16.172834 7165.99 7630.99 0.00 \N 0.00 1440 1048 1 2020-08-26 01:25:16.174894 2020-08-26 01:25:16.174894 5096.99 5096.99 0.00 \N 0.00 1441 1049 2 2020-08-26 23:52:23.326753 2020-08-26 23:52:23.326753 800.00 2187.00 0.00 \N 0.00 1442 1050 2 2020-08-27 01:28:16.159413 2020-08-27 01:28:16.159413 9600.00 9411.00 0.00 \N 1119.00 1443 1050 1 2020-08-27 01:28:16.16126 2020-08-27 01:28:16.16126 1695.00 1695.00 0.00 \N 0.00 1444 1051 1 2020-08-27 23:56:44.896987 2020-08-27 23:56:44.896987 899.00 899.00 0.00 \N 0.00 1445 1051 2 2020-08-27 23:56:44.898883 2020-08-27 23:56:44.898883 1250.00 2537.00 0.00 \N 0.00 1446 1052 1 2020-08-28 01:27:56.883258 2020-08-28 01:27:56.883258 420.00 420.00 0.00 \N 0.00 1447 1052 2 2020-08-28 01:27:56.885299 2020-08-28 01:27:56.885299 1299.00 2085.00 0.00 \N 125.00 1448 1052 4 2020-08-28 01:27:56.887002 2020-08-28 01:27:56.887002 1599.00 1599.00 0.00 \N 0.00 1449 1053 1 2020-08-28 23:50:05.707989 2020-08-28 23:50:05.707989 189.00 189.00 0.00 \N 0.00 1450 1053 2 2020-08-28 23:50:05.710137 2020-08-28 23:50:05.710137 849.99 1936.99 0.00 \N 0.00 1451 1054 1 2020-08-29 01:09:35.43882 2020-08-29 01:09:35.43882 9653.00 9653.00 0.00 \N 0.00 1452 1054 2 2020-08-29 01:09:35.44184 2020-08-29 01:09:35.44184 5553.00 6138.00 0.00 \N 0.00 1453 1055 2 2020-08-29 23:44:00.941392 2020-08-29 23:44:00.941392 8966.00 5903.00 0.00 \N 4000.00 1454 1056 2 2020-08-30 01:03:21.092653 2020-08-30 01:03:21.092653 2019.00 2810.00 0.00 \N 0.00 1455 1056 3 2020-08-30 01:03:21.094496 2020-08-30 01:03:21.094496 400.00 400.00 0.00 \N 0.00 1456 1057 2 2020-08-31 23:59:12.757635 2020-08-31 23:59:12.757635 1999.00 2802.00 0.00 \N 0.00 1457 1058 1 2020-09-01 00:32:30.838768 2020-09-01 00:32:30.838768 2448.00 2448.00 0.00 \N 0.00 1458 1058 4 2020-09-01 00:32:30.841451 2020-09-01 00:32:30.841451 970.00 970.00 0.00 \N 0.00 1459 1059 2 2020-09-01 23:51:37.496223 2020-09-01 23:51:37.496223 1199.00 2201.00 0.00 \N 0.00 1460 1060 2 2020-09-02 01:17:24.116249 2020-09-02 01:17:24.116249 3626.00 4536.00 0.00 \N 0.00 1461 1061 1 2020-09-02 01:35:01.389207 2020-09-02 01:35:01.389207 500.00 500.00 0.00 \N 0.00 1462 1062 2 2020-09-03 00:58:42.43947 2020-09-03 00:58:42.43947 789.00 1640.00 0.00 \N 50.00 1463 1063 3 2020-09-03 00:58:42.679309 2020-09-03 00:58:42.679309 400.00 400.00 0.00 \N 0.00 1464 1063 2 2020-09-03 00:58:42.681128 2020-09-03 00:58:42.681128 3386.00 3922.00 0.00 \N 0.00 1465 1064 2 2020-09-03 01:13:19.431083 2020-09-03 01:13:19.431083 1399.00 1921.00 0.00 \N 0.00 1466 1065 2 2020-09-04 00:46:19.015093 2020-09-04 00:46:19.015093 2148.00 2888.00 0.00 \N 0.00 1467 1065 1 2020-09-04 00:46:19.017063 2020-09-04 00:46:19.017063 3447.00 3447.00 0.00 \N 0.00 1468 1066 2 2020-09-04 00:56:56.11466 2020-09-04 00:56:56.11466 2038.00 2259.00 0.00 \N 400.00 1469 1066 1 2020-09-04 00:56:56.11648 2020-09-04 00:56:56.11648 2099.00 2099.00 0.00 \N 0.00 1470 1066 4 2020-09-04 00:56:56.117926 2020-09-04 00:56:56.117926 1278.00 1278.00 0.00 \N 0.00 1471 1067 2 2020-09-05 00:04:45.133339 2020-09-05 00:04:45.133339 4296.00 4721.00 0.00 \N 663.00 1472 1067 3 2020-09-05 00:04:45.135341 2020-09-05 00:04:45.135341 1999.00 1999.00 0.00 \N 0.00 1473 1068 3 2020-09-05 01:20:13.796742 2020-09-05 01:20:13.796742 4447.00 4447.00 0.00 \N 0.00 1474 1068 4 2020-09-05 01:20:13.79867 2020-09-05 01:20:13.79867 1599.00 1599.00 0.00 \N 0.00 1475 1068 1 2020-09-05 01:20:13.800269 2020-09-05 01:20:13.800269 500.00 500.00 0.00 \N 0.00 1476 1068 2 2020-09-05 01:20:13.801853 2020-09-05 01:20:13.801853 6799.00 7658.00 0.00 \N 0.00 1477 1069 1 2020-09-06 01:00:29.892556 2020-09-06 01:00:29.892556 299.00 299.00 0.00 \N 0.00 1478 1070 2 2020-09-08 00:15:43.889627 2020-09-08 00:15:43.889627 780.00 1721.00 0.00 \N 0.00 1479 1071 2 2020-09-08 01:09:45.004836 2020-09-08 01:09:45.004836 3697.00 3254.00 0.00 \N 1501.00 1480 1071 3 2020-09-08 01:09:45.006988 2020-09-08 01:09:45.006988 1500.00 1500.00 0.00 \N 0.00 1481 1072 2 2020-09-08 20:15:17.458724 2020-09-08 20:15:17.458724 1000.00 1921.00 0.00 \N 0.00 1482 1072 1 2020-09-08 20:15:17.460547 2020-09-08 20:15:17.460547 799.00 799.00 0.00 \N 0.00 1483 1073 1 2020-09-09 01:11:59.074554 2020-09-09 01:11:59.074554 4748.00 4748.00 0.00 \N 0.00 1484 1073 2 2020-09-09 01:11:59.076353 2020-09-09 01:11:59.076353 1586.00 2640.00 0.00 \N 0.00 1485 1074 3 2020-09-09 05:58:05.231373 2020-09-09 05:58:05.231373 1648.00 1648.00 0.00 \N 0.00 1486 1074 2 2020-09-09 05:58:05.233424 2020-09-09 05:58:05.233424 1098.99 2019.99 0.00 \N 0.00 1487 1075 2 2020-09-09 23:58:54.655217 2020-09-09 23:58:54.655217 3156.00 4064.00 0.00 \N 0.00 1488 1075 3 2020-09-09 23:58:54.657358 2020-09-09 23:58:54.657358 1230.00 1230.00 0.00 \N 0.00 1489 1076 2 2020-09-10 01:08:15.982982 2020-09-10 01:08:15.982982 4174.00 4913.00 0.00 \N 0.00 1490 1076 4 2020-09-10 01:08:15.984711 2020-09-10 01:08:15.984711 1499.00 1499.00 0.00 \N 0.00 1491 1076 3 2020-09-10 01:08:15.986158 2020-09-10 01:08:15.986158 1970.00 1970.00 0.00 \N 0.00 1492 1077 3 2020-09-11 00:04:46.259004 2020-09-11 00:04:46.259004 1299.00 1299.00 0.00 \N 0.00 1493 1077 4 2020-09-11 00:04:46.261055 2020-09-11 00:04:46.261055 1499.00 1499.00 0.00 \N 0.00 1494 1077 2 2020-09-11 00:04:46.262493 2020-09-11 00:04:46.262493 1817.00 2981.00 0.00 \N 0.00 1495 1078 2 2020-09-11 01:26:35.328865 2020-09-11 01:26:35.328865 2647.00 3260.00 0.00 \N 0.00 1496 1078 3 2020-09-11 01:26:35.33075 2020-09-11 01:26:35.33075 2499.00 2499.00 0.00 \N 0.00 1497 1078 1 2020-09-11 01:26:35.332324 2020-09-11 01:26:35.332324 599.00 599.00 0.00 \N 0.00 1498 1079 2 2020-09-11 23:45:35.939737 2020-09-11 23:45:35.939737 1877.00 2858.00 0.00 \N 0.00 1499 1080 1 2020-09-12 01:03:26.482295 2020-09-12 01:03:26.482295 2596.00 2596.00 0.00 \N 0.00 1500 1080 2 2020-09-12 01:03:26.483965 2020-09-12 01:03:26.483965 799.00 1359.00 0.00 \N 0.00 1501 1081 2 2020-09-12 23:57:53.57572 2020-09-12 23:57:53.57572 1658.00 2501.00 0.00 \N 15.00 1502 1081 3 2020-09-12 23:57:53.577797 2020-09-12 23:57:53.577797 999.00 999.00 0.00 \N 0.00 1503 1081 1 2020-09-12 23:57:53.57944 2020-09-12 23:57:53.57944 969.00 969.00 0.00 \N 0.00 1504 1082 1 2020-09-13 01:47:37.172567 2020-09-13 01:47:37.172567 3497.00 3497.00 0.00 \N 0.00 1505 1082 2 2020-09-13 01:47:37.175503 2020-09-13 01:47:37.175503 2787.00 3446.00 0.00 \N 0.00 1506 1083 2 2020-09-14 23:58:00.95382 2020-09-14 23:58:00.95382 999.00 1801.00 0.00 \N 0.00 1507 1083 1 2020-09-14 23:58:00.956157 2020-09-14 23:58:00.956157 1798.00 1798.00 0.00 \N 0.00 1508 1084 3 2020-09-15 01:13:59.202159 2020-09-15 01:13:59.202159 529.00 529.00 0.00 \N 0.00 1509 1084 4 2020-09-15 01:13:59.205272 2020-09-15 01:13:59.205272 1399.00 1399.00 0.00 \N 0.00 1510 1084 2 2020-09-15 01:13:59.207596 2020-09-15 01:13:59.207596 3499.01 4158.01 0.00 \N 0.00 1511 1085 1 2020-09-16 00:07:54.652389 2020-09-16 00:07:54.652389 4546.00 4546.00 0.00 \N 0.00 1512 1085 2 2020-09-16 00:07:54.655102 2020-09-16 00:07:54.655102 1949.00 2779.00 0.00 \N 0.00 1513 1085 3 2020-09-16 00:07:54.657705 2020-09-16 00:07:54.657705 1899.00 1899.00 0.00 \N 0.00 1514 1086 1 2020-09-16 01:17:22.577759 2020-09-16 01:17:22.577759 3297.00 3297.00 0.00 \N 0.00 1515 1086 2 2020-09-16 01:17:22.579626 2020-09-16 01:17:22.579626 3806.00 5164.00 0.00 \N 0.00 1516 1086 3 2020-09-16 01:17:22.5812 2020-09-16 01:17:22.5812 1996.00 1996.00 0.00 \N 0.00 1517 1087 2 2020-09-16 21:55:04.304464 2020-09-16 21:55:04.304464 899.00 1678.00 0.00 \N 0.00 1518 1088 2 2020-09-16 22:19:21.112326 2020-09-16 22:19:21.112326 799.00 1963.00 0.00 \N 0.00 1519 1088 1 2020-09-16 22:19:21.114517 2020-09-16 22:19:21.114517 900.00 900.00 0.00 \N 0.00 1520 1089 3 2020-09-17 18:49:01.609235 2020-09-17 18:49:01.609235 1998.00 1998.00 0.00 \N 0.00 1521 1090 2 2020-09-18 00:20:21.912753 2020-09-18 00:20:21.912753 2536.00 1379.00 0.00 \N 2135.00 1522 1090 1 2020-09-18 00:20:21.915374 2020-09-18 00:20:21.915374 1662.00 1662.00 0.00 \N 0.00 1523 1090 4 2020-09-18 00:20:21.917224 2020-09-18 00:20:21.917224 1190.00 1190.00 0.00 \N 0.00 1524 1091 4 2020-09-18 01:02:36.909743 2020-09-18 01:02:36.909743 1400.00 1400.00 0.00 \N 0.00 1525 1091 2 2020-09-18 01:02:36.911666 2020-09-18 01:02:36.911666 3297.00 4260.00 0.00 \N 0.00 1526 1091 1 2020-09-18 01:02:36.913059 2020-09-18 01:02:36.913059 2298.00 2298.00 0.00 \N 0.00 1527 1092 2 2020-09-19 00:32:06.974685 2020-09-19 00:32:06.974685 3126.00 4005.00 0.00 \N 0.00 1528 1092 1 2020-09-19 00:32:06.977345 2020-09-19 00:32:06.977345 699.00 699.00 0.00 \N 0.00 1529 1093 2 2020-09-19 01:08:43.132169 2020-09-19 01:08:43.132169 998.00 2058.00 0.00 \N 0.00 1530 1093 1 2020-09-19 01:08:43.134326 2020-09-19 01:08:43.134326 489.00 489.00 0.00 \N 0.00 1531 1093 3 2020-09-19 01:08:43.135898 2020-09-19 01:08:43.135898 1616.00 1616.00 0.00 \N 0.00 1532 1094 1 2020-09-20 01:18:10.068246 2020-09-20 01:18:10.068246 369.00 369.00 0.00 \N 0.00 1533 1094 2 2020-09-20 01:18:10.070525 2020-09-20 01:18:10.070525 3697.00 4655.00 0.00 \N 100.00 1534 1095 2 2020-09-20 01:28:31.367835 2020-09-20 01:28:31.367835 7763.99 8368.99 0.00 \N 0.00 1535 1095 1 2020-09-20 01:28:31.369552 2020-09-20 01:28:31.369552 3695.00 3695.00 0.00 \N 0.00 1536 1095 4 2020-09-20 01:28:31.37103 2020-09-20 01:28:31.37103 999.00 999.00 0.00 \N 0.00 1537 1096 2 2020-09-22 00:44:57.363143 2020-09-22 00:44:57.363143 5862.00 6800.99 0.00 \N 0.00 1538 1097 4 2020-09-22 01:02:00.650105 2020-09-22 01:02:00.650105 400.00 400.00 0.00 \N 0.00 1539 1097 3 2020-09-22 01:02:00.651777 2020-09-22 01:02:00.651777 1000.00 1000.00 0.00 \N 0.00 1540 1097 2 2020-09-22 01:02:00.653514 2020-09-22 01:02:00.653514 7124.00 8131.00 0.00 \N 0.00 1541 1098 1 2020-09-23 00:06:15.530495 2020-09-23 00:06:15.530495 990.00 990.00 0.00 \N 0.00 1542 1098 2 2020-09-23 00:06:15.53249 2020-09-23 00:06:15.53249 2167.99 2981.98 0.00 \N 20.00 1543 1099 2 2020-09-23 01:07:45.981627 2020-09-23 01:07:45.981627 2406.00 3387.00 0.00 \N 150.00 1544 1099 1 2020-09-23 01:07:45.983732 2020-09-23 01:07:45.983732 1599.00 1599.00 0.00 \N 0.00 1545 1100 3 2020-09-23 01:08:56.527535 2020-09-23 01:08:56.527535 1799.00 1799.00 0.00 \N 0.00 1546 1101 2 2020-09-24 00:43:10.691574 2020-09-24 00:43:10.691574 6690.99 7677.99 0.00 \N 0.00 1547 1101 1 2020-09-24 00:43:10.693613 2020-09-24 00:43:10.693613 359.00 359.00 0.00 \N 0.00 1548 1102 4 2020-09-24 00:53:19.173497 2020-09-24 00:53:19.173497 778.00 778.00 0.00 \N 0.00 1549 1102 1 2020-09-24 00:53:19.175109 2020-09-24 00:53:19.175109 1558.00 1558.00 0.00 \N 0.00 1550 1102 2 2020-09-24 00:53:19.176606 2020-09-24 00:53:19.176606 3226.00 3458.00 0.00 \N 650.00 1551 1103 2 2020-09-25 00:32:01.847239 2020-09-25 00:32:01.847239 2168.00 2945.99 0.00 \N 0.00 1552 1103 1 2020-09-25 00:32:01.849528 2020-09-25 00:32:01.849528 2298.00 2298.00 0.00 \N 0.00 1553 1104 1 2020-09-25 00:56:17.515536 2020-09-25 00:56:17.515536 1018.00 1018.00 0.00 \N 0.00 1554 1104 2 2020-09-25 00:56:17.517116 2020-09-25 00:56:17.517116 4395.00 5353.00 0.00 \N 0.00 1555 1105 2 2020-09-26 01:02:25.841996 2020-09-26 01:02:25.841996 999.00 2052.00 0.00 \N 0.00 1556 1106 2 2020-09-26 01:02:33.787781 2020-09-26 01:02:33.787781 5670.00 6715.99 0.00 \N 0.00 1557 1107 2 2020-09-27 00:48:49.64018 2020-09-27 00:48:49.64018 6243.00 7295.00 0.00 \N 0.00 1558 1108 4 2020-09-27 01:01:10.235941 2020-09-27 01:01:10.235941 1799.00 1799.00 0.00 \N 0.00 1559 1108 1 2020-09-27 01:01:10.237569 2020-09-27 01:01:10.237569 499.00 499.00 0.00 \N 0.00 1560 1109 2 2020-09-27 01:08:25.891747 2020-09-27 01:08:25.891747 1499.00 2414.99 0.00 \N 0.00 1561 1110 2 2020-09-27 01:11:00.991381 2020-09-27 01:11:00.991381 548.00 1373.00 0.00 \N 0.00 1562 1111 2 2020-09-29 00:49:44.643434 2020-09-29 00:49:44.643434 1289.00 2462.00 0.00 \N 0.00 1563 1112 2 2020-09-29 01:05:03.371314 2020-09-29 01:05:03.371314 300.00 1129.00 0.00 \N 85.00 1564 1113 2 2020-09-30 00:50:05.991693 2020-09-30 00:50:05.991693 3574.00 4636.00 0.00 \N 0.00 1565 1114 2 2020-09-30 00:57:24.662759 2020-09-30 00:57:24.662759 9922.00 10751.00 0.00 \N 0.00 1566 1114 1 2020-09-30 00:57:24.665209 2020-09-30 00:57:24.665209 2398.00 2398.00 0.00 \N 0.00 1567 1115 1 2020-10-01 01:00:22.82155 2020-10-01 01:00:22.82155 1847.00 1847.00 0.00 \N 0.00 1568 1115 4 2020-10-01 01:00:22.823526 2020-10-01 01:00:22.823526 1499.00 1499.00 0.00 \N 0.00 1569 1115 2 2020-10-01 01:00:22.825032 2020-10-01 01:00:22.825032 2639.00 3275.00 0.00 \N 0.00 1570 1116 1 2020-10-01 01:45:23.010493 2020-10-01 01:45:23.010493 1399.00 1399.00 0.00 \N 0.00 1571 1116 2 2020-10-01 01:45:23.012239 2020-10-01 01:45:23.012239 3414.00 4440.00 0.00 \N 0.00 1572 1117 2 2020-10-02 00:17:19.412975 2020-10-02 00:17:19.412975 2667.00 3807.00 0.00 \N 0.00 1573 1118 4 2020-10-02 00:56:15.142183 2020-10-02 00:56:15.142183 699.00 699.00 0.00 \N 0.00 1574 1118 2 2020-10-02 00:56:15.144272 2020-10-02 00:56:15.144272 2375.00 3150.00 0.00 \N 0.00 1575 1118 3 2020-10-02 00:56:15.145753 2020-10-02 00:56:15.145753 1899.00 1899.00 0.00 \N 0.00 1576 1119 2 2020-10-03 00:58:48.786528 2020-10-03 00:58:48.786528 830.01 1508.01 0.00 \N 272.00 1577 1119 1 2020-10-03 00:58:48.788573 2020-10-03 00:58:48.788573 1998.00 1998.00 0.00 \N 0.00 1578 1120 2 2020-10-03 01:05:06.4165 2020-10-03 01:05:06.4165 1927.00 3134.00 0.00 \N 0.00 1579 1120 1 2020-10-03 01:05:06.418224 2020-10-03 01:05:06.418224 4696.00 4696.00 0.00 \N 0.00 1580 1120 4 2020-10-03 01:05:06.419809 2020-10-03 01:05:06.419809 961.00 961.00 0.00 \N 0.00 1581 1121 1 2020-10-04 00:53:25.414414 2020-10-04 00:53:25.414414 1347.00 1347.00 0.00 \N 0.00 1582 1121 2 2020-10-04 00:53:25.416701 2020-10-04 00:53:25.416701 1348.00 1976.00 0.00 \N 180.00 1583 1123 2 2020-10-04 01:07:45.187078 2020-10-04 01:07:45.187078 1299.00 2474.00 0.00 \N 0.00 1584 1124 2 2020-10-06 00:52:41.296086 2020-10-06 00:52:41.296086 1577.00 2268.00 0.00 \N 25.00 1585 1124 1 2020-10-06 00:52:41.298281 2020-10-06 00:52:41.298281 1589.00 1589.00 0.00 \N 0.00 1586 1125 2 2020-10-07 00:34:41.605226 2020-10-07 00:34:41.605226 5014.00 5988.00 0.00 \N 0.00 1587 1125 1 2020-10-07 00:34:41.607247 2020-10-07 00:34:41.607247 1038.00 1038.00 0.00 \N 0.00 1588 1125 3 2020-10-07 00:34:41.608697 2020-10-07 00:34:41.608697 2498.00 2498.00 0.00 \N 0.00 1589 1126 2 2020-10-07 00:50:29.325597 2020-10-07 00:50:29.325597 1887.00 2655.00 0.00 \N 0.00 1590 1127 2 2020-10-08 00:49:50.261174 2020-10-08 00:49:50.261174 378.00 1466.00 0.00 \N 0.00 1591 1127 4 2020-10-08 00:49:50.263678 2020-10-08 00:49:50.263678 289.00 289.00 0.00 \N 0.00 1592 1127 1 2020-10-08 00:49:50.265709 2020-10-08 00:49:50.265709 699.00 699.00 0.00 \N 0.00 1593 1128 1 2020-10-08 00:57:02.315546 2020-10-08 00:57:02.315546 833.00 833.00 0.00 \N 0.00 1594 1128 3 2020-10-08 00:57:02.317753 2020-10-08 00:57:02.317753 1020.00 1020.00 0.00 \N 0.00 1595 1128 2 2020-10-08 00:57:02.31927 2020-10-08 00:57:02.31927 4615.00 5170.00 0.00 \N 0.00 1596 1129 2 2020-10-09 00:53:07.719479 2020-10-09 00:53:07.719479 3365.00 4135.00 0.00 \N 0.00 1597 1130 2 2020-10-09 01:00:01.885442 2020-10-09 01:00:01.885442 1318.00 2284.00 0.00 \N 0.00 1598 1131 2 2020-10-10 01:00:30.370162 2020-10-10 01:00:30.370162 5105.00 5889.00 0.00 \N 0.00 1599 1131 1 2020-10-10 01:00:30.372376 2020-10-10 01:00:30.372376 3098.00 3098.00 0.00 \N 0.00 1600 1132 3 2020-10-10 01:33:35.051189 2020-10-10 01:33:35.051189 500.00 500.00 0.00 \N 0.00 1601 1132 2 2020-10-10 01:33:35.053136 2020-10-10 01:33:35.053136 3155.00 3790.00 0.00 \N 0.00 1602 1133 2 2020-10-11 00:40:59.436731 2020-10-11 00:40:59.436731 1498.00 2108.00 0.00 \N 280.00 1603 1134 1 2020-10-11 01:09:44.480629 2020-10-11 01:09:44.480629 1256.00 1256.00 0.00 \N 0.00 1604 1134 2 2020-10-11 01:09:44.48293 2020-10-11 01:09:44.48293 1300.00 2159.00 0.00 \N 0.00 1605 1135 2 2020-10-13 00:47:49.266197 2020-10-13 00:47:49.266197 200.00 808.00 0.00 \N 0.00 1606 1135 1 2020-10-13 00:47:49.268009 2020-10-13 00:47:49.268009 1189.00 1189.00 0.00 \N 0.00 1607 1135 3 2020-10-13 00:47:49.269555 2020-10-13 00:47:49.269555 1499.00 1499.00 0.00 \N 0.00 1608 1136 2 2020-10-13 00:49:42.113224 2020-10-13 00:49:42.113224 1119.00 1878.00 0.00 \N 0.00 1609 1138 2 2020-10-14 01:03:51.512955 2020-10-14 01:03:51.512955 5961.00 6839.00 0.00 \N 0.00 1610 1138 1 2020-10-14 01:03:51.514849 2020-10-14 01:03:51.514849 129.00 129.00 0.00 \N 0.00 1611 1139 2 2020-10-15 01:03:24.061486 2020-10-15 01:03:24.061486 2925.00 3733.00 0.00 \N 0.00 1612 1140 3 2020-10-15 01:42:37.629422 2020-10-15 01:42:37.629422 649.00 649.00 0.00 \N 0.00 1613 1140 1 2020-10-15 01:42:37.631402 2020-10-15 01:42:37.631402 649.00 649.00 0.00 \N 0.00 1614 1140 2 2020-10-15 01:42:37.633001 2020-10-15 01:42:37.633001 3767.00 4606.00 0.00 \N 0.00 1615 1141 2 2020-10-16 00:51:44.089716 2020-10-16 00:51:44.089716 3237.00 3970.00 0.00 \N 0.00 1616 1141 1 2020-10-16 00:51:44.091748 2020-10-16 00:51:44.091748 1599.00 1599.00 0.00 \N 0.00 1617 1141 4 2020-10-16 00:51:44.093397 2020-10-16 00:51:44.093397 879.00 879.00 0.00 \N 0.00 1618 1142 1 2020-10-16 02:14:58.567061 2020-10-16 02:14:58.567061 8041.00 8041.00 0.00 \N 0.00 1619 1142 2 2020-10-16 02:14:58.569939 2020-10-16 02:14:58.569939 5574.00 6180.00 0.00 \N 0.00 1620 1142 3 2020-10-16 02:14:58.572362 2020-10-16 02:14:58.572362 5264.00 5264.00 0.00 \N 0.00 1621 1143 2 2020-10-17 00:57:17.286454 2020-10-17 00:57:17.286454 4596.00 5576.00 0.00 \N 0.00 1622 1143 1 2020-10-17 00:57:17.288518 2020-10-17 00:57:17.288518 3598.00 3598.00 0.00 \N 0.00 1623 1144 2 2020-10-17 01:24:52.039789 2020-10-17 01:24:52.039789 1099.00 1789.00 0.00 \N 180.00 1624 1145 2 2020-10-18 00:53:25.567971 2020-10-18 00:53:25.567971 4506.00 4196.00 0.00 \N 899.00 1625 1145 1 2020-10-18 00:53:25.569877 2020-10-18 00:53:25.569877 1700.00 1700.00 0.00 \N 0.00 1626 1145 3 2020-10-18 00:53:25.571531 2020-10-18 00:53:25.571531 788.00 788.00 0.00 \N 0.00 1627 1146 2 2020-10-18 00:55:08.694435 2020-10-18 00:55:08.694435 646.00 1372.00 0.00 \N 0.00 1628 1146 1 2020-10-18 00:55:08.695995 2020-10-18 00:55:08.695995 999.00 999.00 0.00 \N 0.00 1629 1148 2 2020-10-20 01:04:57.064829 2020-10-20 01:04:57.064829 518.00 1390.00 0.00 \N 0.00 1630 1149 4 2020-10-20 01:09:28.642497 2020-10-20 01:09:28.642497 363.00 363.00 0.00 \N 0.00 1631 1150 2 2020-10-21 00:54:50.210623 2020-10-21 00:54:50.210623 420.00 1310.00 0.00 \N 0.00 1632 1150 3 2020-10-21 00:54:50.213957 2020-10-21 00:54:50.213957 300.00 300.00 0.00 \N 0.00 1633 1151 2 2020-10-21 00:55:01.814298 2020-10-21 00:55:01.814298 2387.00 3120.00 0.00 \N 0.00 1634 1151 1 2020-10-21 00:55:01.815827 2020-10-21 00:55:01.815827 1029.00 1029.00 0.00 \N 0.00 1635 1152 1 2020-10-22 00:54:01.130058 2020-10-22 00:54:01.130058 529.00 529.00 0.00 \N 0.00 1636 1153 1 2020-10-22 00:57:24.926144 2020-10-22 00:57:24.926144 400.00 400.00 0.00 \N 0.00 1637 1153 2 2020-10-22 00:57:24.927884 2020-10-22 00:57:24.927884 2498.00 3308.00 0.00 \N 0.00 1638 1154 2 2020-10-23 00:56:40.326909 2020-10-23 00:56:40.326909 699.00 1419.00 0.00 \N 0.00 1639 1155 3 2020-10-23 01:16:31.072926 2020-10-23 01:16:31.072926 400.00 400.00 0.00 \N 0.00 1640 1155 1 2020-10-23 01:16:31.075613 2020-10-23 01:16:31.075613 1999.00 1999.00 0.00 \N 0.00 1641 1155 2 2020-10-23 01:16:31.07783 2020-10-23 01:16:31.07783 4597.00 5405.00 0.00 \N 0.00 1642 1156 1 2020-10-24 01:00:42.490517 2020-10-24 01:00:42.490517 5181.00 5181.00 0.00 \N 0.00 1643 1156 2 2020-10-24 01:00:42.492989 2020-10-24 01:00:42.492989 4047.00 4952.00 0.00 \N 0.00 1644 1156 3 2020-10-24 01:00:42.495081 2020-10-24 01:00:42.495081 899.00 899.00 0.00 \N 0.00 1645 1157 1 2020-10-24 01:01:47.401434 2020-10-24 01:01:47.401434 1549.00 1549.00 0.00 \N 0.00 1646 1157 4 2020-10-24 01:01:47.402953 2020-10-24 01:01:47.402953 349.00 349.00 0.00 \N 0.00 1647 1157 2 2020-10-24 01:01:47.404376 2020-10-24 01:01:47.404376 1468.00 2007.00 0.00 \N 180.00 1648 1158 3 2020-10-25 00:52:12.397025 2020-10-25 00:52:12.397025 1848.00 1848.00 0.00 \N 0.00 1649 1158 2 2020-10-25 00:52:12.399004 2020-10-25 00:52:12.399004 3398.00 4205.00 0.00 \N 0.00 1650 1158 1 2020-10-25 00:52:12.400648 2020-10-25 00:52:12.400648 1000.00 1000.00 0.00 \N 0.00 1651 1159 2 2020-10-25 01:39:02.312308 2020-10-25 01:39:02.312308 6165.00 6517.00 0.00 \N 400.00 1652 1159 1 2020-10-25 01:39:02.315064 2020-10-25 01:39:02.315064 1798.00 1798.00 0.00 \N 0.00 1653 1160 2 2020-10-27 02:00:09.201291 2020-10-27 02:00:09.201291 6125.00 6830.00 0.00 \N 0.00 1654 1160 4 2020-10-27 02:00:09.204249 2020-10-27 02:00:09.204249 369.00 369.00 0.00 \N 0.00 1655 1160 1 2020-10-27 02:00:09.206611 2020-10-27 02:00:09.206611 5096.00 5096.00 0.00 \N 0.00 1656 1161 1 2020-10-27 02:19:46.986376 2020-10-27 02:19:46.986376 369.00 369.00 0.00 \N 0.00 1657 1161 2 2020-10-27 02:19:46.988155 2020-10-27 02:19:46.988155 4297.00 5314.00 0.00 \N 0.00 1658 1161 3 2020-10-27 02:19:46.989654 2020-10-27 02:19:46.989654 2500.00 2500.00 0.00 \N 0.00 1659 1162 2 2020-10-28 01:54:31.227256 2020-10-28 01:54:31.227256 669.00 1459.00 0.00 \N 0.00 1660 1162 4 2020-10-28 01:54:31.229579 2020-10-28 01:54:31.229579 1599.00 1599.00 0.00 \N 0.00 1661 1162 3 2020-10-28 01:54:31.230919 2020-10-28 01:54:31.230919 799.00 799.00 0.00 \N 0.00 1662 1163 2 2020-10-28 02:05:25.106428 2020-10-28 02:05:25.106428 2000.00 2804.00 0.00 \N 0.00 1663 1164 2 2020-10-29 01:44:52.978229 2020-10-29 01:44:52.978229 799.00 1603.00 0.00 \N 0.00 1664 1165 2 2020-10-29 01:57:48.661647 2020-10-29 01:57:48.661647 6765.00 7724.00 0.00 \N 0.00 1665 1166 2 2020-10-30 02:04:15.763015 2020-10-30 02:04:15.763015 1368.00 2892.00 0.00 \N 0.00 1666 1167 3 2020-10-30 02:15:01.884596 2020-10-30 02:15:01.884596 2798.00 2798.00 0.00 \N 0.00 1667 1168 1 2020-10-30 02:18:43.682125 2020-10-30 02:18:43.682125 769.00 769.00 0.00 \N 0.00 1668 1168 4 2020-10-30 02:18:43.683861 2020-10-30 02:18:43.683861 1499.00 1499.00 0.00 \N 0.00 1669 1168 3 2020-10-30 02:18:43.685492 2020-10-30 02:18:43.685492 2218.00 2218.00 0.00 \N 0.00 1670 1168 2 2020-10-30 02:18:43.687008 2020-10-30 02:18:43.687008 5397.00 6439.00 0.00 \N 0.00 1671 1169 1 2020-10-31 02:03:58.819987 2020-10-31 02:03:58.819987 2997.00 2997.00 0.00 \N 0.00 1672 1169 3 2020-10-31 02:03:58.822017 2020-10-31 02:03:58.822017 500.00 500.00 0.00 \N 0.00 1673 1169 2 2020-10-31 02:03:58.823491 2020-10-31 02:03:58.823491 2899.00 3740.00 0.00 \N 0.00 1674 1170 1 2020-10-31 02:05:49.693281 2020-10-31 02:05:49.693281 4697.00 4697.00 0.00 \N 0.00 1675 1170 2 2020-10-31 02:05:49.694917 2020-10-31 02:05:49.694917 5973.00 5675.00 0.00 \N 1690.00 1676 1171 2 2020-11-01 02:10:12.291775 2020-11-01 02:10:12.291775 3276.00 2317.00 0.00 \N 1699.00 1677 1171 4 2020-11-01 02:10:12.294949 2020-11-01 02:10:12.294949 899.00 899.00 0.00 \N 0.00 1678 1171 3 2020-11-01 02:10:12.297137 2020-11-01 02:10:12.297137 299.00 299.00 0.00 \N 0.00 1679 1172 1 2020-11-01 02:22:20.344357 2020-11-01 02:22:20.344357 989.00 989.00 0.00 \N 0.00 1680 1172 2 2020-11-01 02:22:20.346707 2020-11-01 02:22:20.346707 3175.00 4180.00 0.00 \N 170.00 1681 1173 2 2020-11-01 23:08:40.812107 2020-11-01 23:08:40.812107 249.00 1171.00 0.00 \N 0.00 1682 1174 2 2020-11-03 00:10:47.926544 2020-11-03 00:10:47.926544 1958.00 3129.00 0.00 \N 0.00 1683 1175 2 2020-11-03 01:46:36.584459 2020-11-03 01:46:36.584459 1125.00 2305.00 0.00 \N 0.00 1684 1175 1 2020-11-03 01:46:36.586844 2020-11-03 01:46:36.586844 1818.00 1818.00 0.00 \N 0.00 1685 1176 2 2020-11-04 02:19:35.553471 2020-11-04 02:19:35.553471 5794.00 6923.00 0.00 \N 0.00 1686 1177 3 2020-11-04 02:33:13.820379 2020-11-04 02:33:13.820379 600.00 600.00 0.00 \N 0.00 1687 1177 2 2020-11-04 02:33:13.822946 2020-11-04 02:33:13.822946 2966.00 3971.00 0.00 \N 0.00 1688 1177 1 2020-11-04 02:33:13.825155 2020-11-04 02:33:13.825155 1399.00 1399.00 0.00 \N 0.00 1689 1178 2 2020-11-05 01:55:56.079214 2020-11-05 01:55:56.079214 4575.00 5546.00 0.00 \N 0.00 1690 1179 2 2020-11-05 02:16:12.026135 2020-11-05 02:16:12.026135 999.00 1922.00 0.00 \N 0.00 1691 1179 1 2020-11-05 02:16:12.027674 2020-11-05 02:16:12.027674 2998.00 2998.00 0.00 \N 0.00 1692 1179 4 2020-11-05 02:16:12.029099 2020-11-05 02:16:12.029099 999.00 999.00 0.00 \N 0.00 1693 1180 2 2020-11-06 01:55:32.461754 2020-11-06 01:55:32.461754 9430.00 10352.00 0.00 \N 0.00 1694 1180 3 2020-11-06 01:55:32.463672 2020-11-06 01:55:32.463672 540.00 540.00 0.00 \N 0.00 1695 1180 1 2020-11-06 01:55:32.465124 2020-11-06 01:55:32.465124 3363.00 3363.00 0.00 \N 0.00 1696 1181 2 2020-11-06 02:06:37.518513 2020-11-06 02:06:37.518513 4257.00 5115.00 0.00 \N 288.00 1697 1181 4 2020-11-06 02:06:37.520499 2020-11-06 02:06:37.520499 2497.00 2497.00 0.00 \N 0.00 1698 1182 1 2020-11-07 01:48:08.549498 2020-11-07 01:48:08.549498 1699.00 1699.00 0.00 \N 0.00 1699 1182 2 2020-11-07 01:48:08.551636 2020-11-07 01:48:08.551636 749.00 1684.00 0.00 \N 180.00 1700 1182 4 2020-11-07 01:48:08.554072 2020-11-07 01:48:08.554072 350.00 350.00 0.00 \N 0.00 1701 1183 2 2020-11-07 02:10:11.889585 2020-11-07 02:10:11.889585 1799.00 2983.00 0.00 \N 0.00 1702 1184 3 2020-11-07 02:53:30.189636 2020-11-07 02:53:30.189636 3498.00 3498.00 0.00 \N 0.00 1703 1184 1 2020-11-07 02:53:30.192957 2020-11-07 02:53:30.192957 3315.00 3315.00 0.00 \N 0.00 1704 1184 2 2020-11-07 02:53:30.195467 2020-11-07 02:53:30.195467 7280.00 8332.00 0.00 \N 0.00 1705 1185 2 2020-11-08 01:48:17.004297 2020-11-08 01:48:17.004297 3845.00 2882.00 0.00 \N 2046.00 1706 1185 4 2020-11-08 01:48:17.006549 2020-11-08 01:48:17.006549 699.00 699.00 0.00 \N 0.00 1707 1185 3 2020-11-08 01:48:17.008484 2020-11-08 01:48:17.008484 999.00 999.00 0.00 \N 0.00 1708 1185 1 2020-11-08 01:48:17.010104 2020-11-08 01:48:17.010104 2698.00 2698.00 0.00 \N 0.00 1709 1186 1 2020-11-08 02:20:38.444023 2020-11-08 02:20:38.444023 4344.00 4344.00 0.00 \N 0.00 1710 1187 3 2020-11-10 01:48:14.578776 2020-11-10 01:48:14.578776 999.00 999.00 0.00 \N 0.00 1711 1187 2 2020-11-10 01:48:14.580751 2020-11-10 01:48:14.580751 800.00 945.00 0.00 \N 0.00 1712 1187 1 2020-11-10 01:48:14.582122 2020-11-10 01:48:14.582122 1799.00 1799.00 0.00 \N 0.00 1713 1188 2 2020-11-10 02:08:03.655944 2020-11-10 02:08:03.655944 6024.00 7006.00 0.00 \N 0.00 1714 1188 1 2020-11-10 02:08:03.657839 2020-11-10 02:08:03.657839 2798.00 2798.00 0.00 \N 0.00 1715 1189 1 2020-11-11 01:49:06.809633 2020-11-11 01:49:06.809633 1699.00 1699.00 0.00 \N 0.00 1716 1189 2 2020-11-11 01:49:06.811497 2020-11-11 01:49:06.811497 1385.00 2391.00 0.00 \N 0.00 1717 1189 4 2020-11-11 01:49:06.812948 2020-11-11 01:49:06.812948 1000.00 1000.00 0.00 \N 0.00 1718 1190 2 2020-11-11 02:04:16.551602 2020-11-11 02:04:16.551602 2798.00 4030.00 0.00 \N 0.00 1719 1191 2 2020-11-12 01:56:47.624629 2020-11-12 01:56:47.624629 4926.00 5817.00 0.00 \N 0.00 1720 1191 4 2020-11-12 01:56:47.627384 2020-11-12 01:56:47.627384 2317.00 2317.00 0.00 \N 0.00 1721 1192 3 2020-11-12 02:01:49.853194 2020-11-12 02:01:49.853194 6896.00 6896.00 0.00 \N 0.00 1722 1192 2 2020-11-12 02:01:49.85497 2020-11-12 02:01:49.85497 3897.00 4927.00 0.00 \N 0.00 1723 1192 1 2020-11-12 02:01:49.856604 2020-11-12 02:01:49.856604 3298.00 3298.00 0.00 \N 0.00 1724 1193 2 2020-11-13 01:56:11.49959 2020-11-13 01:56:11.49959 1448.00 1865.00 0.00 \N 500.00 1725 1193 1 2020-11-13 01:56:11.501659 2020-11-13 01:56:11.501659 669.00 669.00 0.00 \N 0.00 1726 1194 2 2020-11-13 01:56:18.805366 2020-11-13 01:56:18.805366 9752.00 10779.00 0.00 \N 0.00 1727 1195 2 2020-11-14 02:03:14.572237 2020-11-14 02:03:14.572237 5659.00 7438.00 0.00 \N 0.00 1728 1195 3 2020-11-14 02:03:14.574188 2020-11-14 02:03:14.574188 2998.00 2998.00 0.00 \N 0.00 1729 1196 1 2020-11-14 02:10:41.204388 2020-11-14 02:10:41.204388 99.00 99.00 0.00 \N 0.00 1730 1196 3 2020-11-14 02:10:41.206041 2020-11-14 02:10:41.206041 1399.00 1399.00 0.00 \N 0.00 1731 1196 2 2020-11-14 02:10:41.207531 2020-11-14 02:10:41.207531 4647.00 5512.00 0.00 \N 0.00 1732 1197 4 2020-11-15 01:57:40.274568 2020-11-15 01:57:40.274568 1877.00 1877.00 0.00 \N 0.00 1733 1197 2 2020-11-15 01:57:40.276484 2020-11-15 01:57:40.276484 1499.00 2111.00 0.00 \N 300.00 1734 1197 1 2020-11-15 01:57:40.278038 2020-11-15 01:57:40.278038 1625.00 1625.00 0.00 \N 0.00 1735 1198 3 2020-11-15 02:20:02.772441 2020-11-15 02:20:02.772441 3198.00 3198.00 0.00 \N 0.00 1736 1198 2 2020-11-15 02:20:02.774415 2020-11-15 02:20:02.774415 2207.00 3934.00 0.00 \N 0.00 1737 1198 1 2020-11-15 02:20:02.775788 2020-11-15 02:20:02.775788 997.00 997.00 0.00 \N 0.00 1738 1199 1 2020-11-15 22:52:51.833036 2020-11-15 22:52:51.833036 1599.00 1599.00 0.00 \N 0.00 1739 1199 2 2020-11-15 22:52:51.834996 2020-11-15 22:52:51.834996 1799.00 2620.00 0.00 \N 0.00 1740 1200 1 2020-11-16 23:55:52.848651 2020-11-16 23:55:52.848651 1899.00 1899.00 0.00 \N 0.00 1741 1200 2 2020-11-16 23:55:52.851168 2020-11-16 23:55:52.851168 4566.00 5486.00 0.00 \N 0.00 1742 1201 2 2020-11-17 01:04:53.883813 2020-11-17 01:04:53.883813 2268.00 3502.00 0.00 \N 0.00 1743 1201 1 2020-11-17 01:04:53.88594 2020-11-17 01:04:53.88594 500.00 500.00 0.00 \N 0.00 1744 1201 3 2020-11-17 01:04:53.88746 2020-11-17 01:04:53.88746 4445.00 4445.00 0.00 \N 0.00 1745 1202 2 2020-11-18 02:02:43.666763 2020-11-18 02:02:43.666763 4629.00 5673.00 0.00 \N 0.00 1746 1203 1 2020-11-18 02:08:50.736924 2020-11-18 02:08:50.736924 2288.00 2288.00 0.00 \N 0.00 1747 1203 2 2020-11-18 02:08:50.738672 2020-11-18 02:08:50.738672 3560.00 4546.00 0.00 \N 0.00 1748 1204 2 2020-11-19 02:13:12.330066 2020-11-19 02:13:12.330066 3996.00 4669.00 0.00 \N 0.00 1749 1205 1 2020-11-19 17:40:17.237486 2020-11-19 17:40:17.237486 199.00 199.00 0.00 \N 0.00 1750 1205 3 2020-11-19 17:40:17.239516 2020-11-19 17:40:17.239516 1000.00 1000.00 0.00 \N 0.00 1751 1205 2 2020-11-19 17:40:17.241198 2020-11-19 17:40:17.241198 2099.00 3245.00 0.00 \N 0.00 1752 1206 1 2020-11-20 02:16:44.588413 2020-11-20 02:16:44.588413 4764.00 4764.00 0.00 \N 0.00 1753 1206 2 2020-11-20 02:16:44.590337 2020-11-20 02:16:44.590337 3347.00 4016.00 0.00 \N 0.00 1754 1207 2 2020-11-20 02:21:03.870407 2020-11-20 02:21:03.870407 7833.00 8878.00 0.00 \N 0.00 1755 1207 1 2020-11-20 02:21:03.871915 2020-11-20 02:21:03.871915 1658.00 1658.00 0.00 \N 0.00 1756 1207 4 2020-11-20 02:21:03.87335 2020-11-20 02:21:03.87335 3747.00 3747.00 0.00 \N 0.00 1757 1208 2 2020-11-21 01:45:00.348138 2020-11-21 01:45:00.348138 1000.00 1858.00 0.00 \N 180.00 1758 1208 4 2020-11-21 01:45:00.350327 2020-11-21 01:45:00.350327 1799.00 1799.00 0.00 \N 0.00 1759 1209 4 2020-11-21 02:12:24.528875 2020-11-21 02:12:24.528875 1099.00 1099.00 0.00 \N 0.00 1760 1209 2 2020-11-21 02:12:24.530542 2020-11-21 02:12:24.530542 3598.00 4483.00 0.00 \N 0.00 1761 1209 1 2020-11-21 02:12:24.532012 2020-11-21 02:12:24.532012 1799.00 1799.00 0.00 \N 0.00 1762 1210 4 2020-11-22 01:37:19.420639 2020-11-22 01:37:19.420639 5696.00 5696.00 0.00 \N 0.00 1763 1210 2 2020-11-22 01:37:19.422686 2020-11-22 01:37:19.422686 1798.00 2326.00 0.00 \N 330.00 1764 1210 1 2020-11-22 01:37:19.42451 2020-11-22 01:37:19.42451 1728.00 1728.00 0.00 \N 0.00 1765 1211 2 2020-11-22 02:00:06.019302 2020-11-22 02:00:06.019302 5456.00 5147.00 0.00 \N 1300.00 1766 1212 2 2020-11-22 22:50:51.583051 2020-11-22 22:50:51.583051 799.00 1805.00 0.00 \N 250.00 1767 1212 1 2020-11-22 22:50:51.585218 2020-11-22 22:50:51.585218 999.00 999.00 0.00 \N 0.00 1768 1213 1 2020-11-24 01:54:54.290711 2020-11-24 01:54:54.290711 500.00 500.00 0.00 \N 0.00 1769 1213 2 2020-11-24 01:54:54.292663 2020-11-24 01:54:54.292663 3218.00 1847.00 0.00 \N 2197.00 1770 1214 1 2020-11-24 02:41:20.178731 2020-11-24 02:41:20.178731 2499.00 2499.00 0.00 \N 0.00 1771 1214 2 2020-11-24 02:41:20.180435 2020-11-24 02:41:20.180435 3439.00 4945.00 0.00 \N 0.00 1772 1214 3 2020-11-24 02:41:20.181932 2020-11-24 02:41:20.181932 4552.00 4552.00 0.00 \N 0.00 1773 1215 2 2020-11-25 01:50:55.28923 2020-11-25 01:50:55.28923 3248.00 3995.00 0.00 \N 0.00 1774 1215 1 2020-11-25 01:50:55.291109 2020-11-25 01:50:55.291109 2098.00 2098.00 0.00 \N 0.00 1775 1216 2 2020-11-25 02:10:19.410263 2020-11-25 02:10:19.410263 6985.00 7977.00 0.00 \N 0.00 1776 1216 1 2020-11-25 02:10:19.412063 2020-11-25 02:10:19.412063 1998.00 1998.00 0.00 \N 0.00 1777 1217 2 2020-11-26 00:57:27.337679 2020-11-26 00:57:27.337679 1749.00 3128.00 0.00 \N 0.00 1778 1217 3 2020-11-26 00:57:27.339879 2020-11-26 00:57:27.339879 1078.00 1078.00 0.00 \N 0.00 1779 1218 2 2020-11-26 01:35:22.726622 2020-11-26 01:35:22.726622 1749.00 2844.00 0.00 \N 0.00 1780 1219 2 2020-11-27 01:52:49.037832 2020-11-27 01:52:49.037832 7876.00 9020.00 0.00 \N 0.00 1781 1219 1 2020-11-27 01:52:49.039794 2020-11-27 01:52:49.039794 1000.00 1000.00 0.00 \N 0.00 1782 1220 3 2020-11-27 02:11:02.412315 2020-11-27 02:11:02.412315 4697.00 4697.00 0.00 \N 0.00 1783 1220 2 2020-11-27 02:11:02.414083 2020-11-27 02:11:02.414083 4353.00 5281.00 0.00 \N 0.00 1784 1221 2 2020-11-28 02:02:52.654029 2020-11-28 02:02:52.654029 1849.00 2969.00 0.00 \N 0.00 1785 1221 3 2020-11-28 02:02:52.655939 2020-11-28 02:02:52.655939 1799.00 1799.00 0.00 \N 0.00 1786 1222 1 2020-11-28 02:36:33.947497 2020-11-28 02:36:33.947497 1576.00 1576.00 0.00 \N 0.00 1787 1222 3 2020-11-28 02:36:33.949864 2020-11-28 02:36:33.949864 1499.00 1499.00 0.00 \N 0.00 1788 1222 2 2020-11-28 02:36:33.951898 2020-11-28 02:36:33.951898 5597.00 6578.00 0.00 \N 0.00 1789 1222 4 2020-11-28 02:36:33.95393 2020-11-28 02:36:33.95393 1299.00 1299.00 0.00 \N 0.00 1790 1223 2 2020-11-28 02:45:51.239101 2020-11-28 02:45:51.239101 1399.00 2188.00 0.00 \N 0.00 1791 1224 2 2020-11-29 01:36:57.20395 2020-11-29 01:36:57.20395 2148.00 3297.00 0.00 \N 20.00 1792 1224 1 2020-11-29 01:36:57.206284 2020-11-29 01:36:57.206284 5888.00 5888.00 0.00 \N 0.00 1793 1224 4 2020-11-29 01:36:57.208082 2020-11-29 01:36:57.208082 1799.00 1799.00 0.00 \N 0.00 1794 1225 4 2020-11-29 02:27:11.502261 2020-11-29 02:27:11.502261 3098.00 3098.00 0.00 \N 0.00 1795 1225 2 2020-11-29 02:27:11.504048 2020-11-29 02:27:11.504048 2798.00 3486.00 0.00 \N 0.00 1796 1226 2 2020-11-29 22:45:08.270313 2020-11-29 22:45:08.270313 2458.10 3140.10 0.00 \N 0.00 1797 1227 1 2020-12-01 02:04:48.489417 2020-12-01 02:04:48.489417 2557.00 2557.00 0.00 \N 0.00 1798 1227 2 2020-12-01 02:04:48.49181 2020-12-01 02:04:48.49181 1799.00 3096.00 0.00 \N 0.00 1799 1228 2 2020-12-01 02:18:41.103482 2020-12-01 02:18:41.103482 6002.00 5143.00 0.00 \N 1499.00 1800 1229 2 2020-12-02 01:56:16.467232 2020-12-02 01:56:16.467232 1249.00 2445.00 0.00 \N 0.00 1801 1229 1 2020-12-02 01:56:16.469333 2020-12-02 01:56:16.469333 3398.00 3398.00 0.00 \N 0.00 1802 1230 4 2020-12-02 02:19:18.939451 2020-12-02 02:19:18.939451 899.00 899.00 0.00 \N 0.00 1803 1230 2 2020-12-02 02:19:18.941429 2020-12-02 02:19:18.941429 7350.00 8232.00 0.00 \N 0.00 1804 1231 2 2020-12-03 01:51:56.224481 2020-12-03 01:51:56.224481 3076.00 4279.00 0.00 \N 0.00 1805 1231 4 2020-12-03 01:51:56.226428 2020-12-03 01:51:56.226428 799.00 799.00 0.00 \N 0.00 1806 1232 3 2020-12-03 02:02:51.324274 2020-12-03 02:02:51.324274 1540.00 1540.00 0.00 \N 0.00 1807 1232 2 2020-12-03 02:02:51.326019 2020-12-03 02:02:51.326019 3357.00 4089.00 0.00 \N 0.00 1808 1233 3 2020-12-04 02:02:48.849833 2020-12-04 02:02:48.849833 500.00 500.00 0.00 \N 0.00 1809 1233 2 2020-12-04 02:02:48.852252 2020-12-04 02:02:48.852252 500.00 1280.00 0.00 \N 0.00 1810 1234 3 2020-12-04 02:11:00.020763 2020-12-04 02:11:00.020763 700.00 700.00 0.00 \N 0.00 1811 1234 4 2020-12-04 02:11:00.022815 2020-12-04 02:11:00.022815 899.00 899.00 0.00 \N 0.00 1812 1234 2 2020-12-04 02:11:00.024603 2020-12-04 02:11:00.024603 5385.00 6164.00 0.00 \N 0.00 1813 1234 1 2020-12-04 02:11:00.026375 2020-12-04 02:11:00.026375 320.00 320.00 0.00 \N 0.00 1814 1235 2 2020-12-05 01:52:47.64585 2020-12-05 01:52:47.64585 3687.00 5051.00 0.00 \N 0.00 1815 1235 4 2020-12-05 01:52:47.647984 2020-12-05 01:52:47.647984 3087.00 3087.00 0.00 \N 0.00 1816 1235 1 2020-12-05 01:52:47.649777 2020-12-05 01:52:47.649777 2048.00 2048.00 0.00 \N 0.00 1817 1236 4 2020-12-05 02:03:35.488496 2020-12-05 02:03:35.488496 119.00 119.00 0.00 \N 0.00 1818 1236 3 2020-12-05 02:03:35.490512 2020-12-05 02:03:35.490512 6181.00 6181.00 0.00 \N 0.00 1819 1236 2 2020-12-05 02:03:35.492254 2020-12-05 02:03:35.492254 4515.00 5295.00 0.00 \N 0.00 1820 1237 2 2020-12-06 02:16:23.607694 2020-12-06 02:16:23.607694 1600.00 1255.00 0.00 \N 1500.00 1821 1237 4 2020-12-06 02:16:23.609908 2020-12-06 02:16:23.609908 1899.00 1899.00 0.00 \N 0.00 1822 1238 2 2020-12-06 02:33:55.841499 2020-12-06 02:33:55.841499 7322.00 7373.00 0.00 \N 1200.00 1823 1238 1 2020-12-06 02:33:55.843278 2020-12-06 02:33:55.843278 4557.00 4557.00 0.00 \N 0.00 1824 1238 4 2020-12-06 02:33:55.844855 2020-12-06 02:33:55.844855 1299.00 1299.00 0.00 \N 0.00 1825 1239 2 2020-12-06 22:59:11.420152 2020-12-06 22:59:11.420152 1198.00 2453.00 0.00 \N 0.00 1826 1240 2 2020-12-08 02:09:41.747647 2020-12-08 02:09:41.747647 8609.00 9972.00 0.00 \N 10.00 1827 1240 1 2020-12-08 02:09:41.749837 2020-12-08 02:09:41.749837 350.00 350.00 0.00 \N 0.00 1828 1241 2 2020-12-08 02:11:43.116475 2020-12-08 02:11:43.116475 2598.00 3551.00 0.00 \N 0.00 1829 1241 3 2020-12-08 02:11:43.118017 2020-12-08 02:11:43.118017 666.00 666.00 0.00 \N 0.00 1830 1242 2 2020-12-09 02:12:43.101809 2020-12-09 02:12:43.101809 629.00 2001.00 0.00 \N 0.00 1831 1242 1 2020-12-09 02:12:43.103789 2020-12-09 02:12:43.103789 2099.00 2099.00 0.00 \N 0.00 1832 1243 4 2020-12-09 02:40:11.262246 2020-12-09 02:40:11.262246 1599.00 1599.00 0.00 \N 0.00 1833 1243 2 2020-12-09 02:40:11.264856 2020-12-09 02:40:11.264856 3697.00 4932.00 0.00 \N 16.00 1834 1244 2 2020-12-10 01:43:11.468917 2020-12-10 01:43:11.468917 13891.00 15192.00 0.00 \N 0.00 1835 1245 4 2020-12-10 01:57:44.874916 2020-12-10 01:57:44.874916 1199.00 1199.00 0.00 \N 0.00 1836 1245 2 2020-12-10 01:57:44.876993 2020-12-10 01:57:44.876993 529.00 1431.00 0.00 \N 30.00 1837 1246 1 2020-12-11 02:26:09.669981 2020-12-11 02:26:09.669981 1399.00 1399.00 0.00 \N 0.00 1838 1246 2 2020-12-11 02:26:09.671966 2020-12-11 02:26:09.671966 2732.00 4124.00 0.00 \N 0.00 1839 1247 1 2020-12-11 02:46:34.421766 2020-12-11 02:46:34.421766 3597.00 3597.00 0.00 \N 0.00 1840 1247 2 2020-12-11 02:46:34.423401 2020-12-11 02:46:34.423401 4846.00 6277.00 0.00 \N 0.00 1841 1248 1 2020-12-11 02:46:36.345098 2020-12-11 02:46:36.345098 3597.00 3597.00 0.00 \N 0.00 1842 1248 2 2020-12-11 02:46:36.347141 2020-12-11 02:46:36.347141 4846.00 6277.00 0.00 \N 0.00 1843 1249 1 2020-12-12 02:23:11.840155 2020-12-12 02:23:11.840155 1299.00 1299.00 0.00 \N 0.00 1844 1249 2 2020-12-12 02:23:11.842807 2020-12-12 02:23:11.842807 2537.00 3454.00 0.00 \N 307.00 1845 1250 2 2020-12-12 02:56:09.410862 2020-12-12 02:56:09.410862 6711.00 9188.00 0.00 \N 0.00 1846 1250 1 2020-12-12 02:56:09.41334 2020-12-12 02:56:09.41334 2447.00 2447.00 0.00 \N 0.00 1847 1251 1 2020-12-13 01:38:42.838372 2020-12-13 01:38:42.838372 1499.00 1499.00 0.00 \N 0.00 1848 1251 2 2020-12-13 01:38:42.841558 2020-12-13 01:38:42.841558 5771.00 6704.00 0.00 \N 21.00 1849 1252 2 2020-12-13 03:01:50.968049 2020-12-13 03:01:50.968049 1300.00 689.00 0.00 \N 1750.00 1850 1252 3 2020-12-13 03:01:50.970057 2020-12-13 03:01:50.970057 3898.00 3898.00 0.00 \N 0.00 1851 1253 2 2020-12-13 22:50:46.565597 2020-12-13 22:50:46.565597 2997.00 3686.00 0.00 \N 0.00 1852 1253 4 2020-12-13 22:50:46.568643 2020-12-13 22:50:46.568643 1899.00 1899.00 0.00 \N 0.00 1853 1254 4 2020-12-13 22:52:51.386347 2020-12-13 22:52:51.386347 629.00 629.00 0.00 \N 0.00 1854 1254 2 2020-12-13 22:52:51.38882 2020-12-13 22:52:51.38882 2638.00 3642.00 0.00 \N 0.00 1855 1255 2 2020-12-15 02:30:59.287576 2020-12-15 02:30:59.287576 5963.00 6405.00 0.00 \N 100.00 1856 1255 1 2020-12-15 02:30:59.289937 2020-12-15 02:30:59.289937 1798.00 1798.00 0.00 \N 0.00 1857 1256 1 2020-12-15 02:53:12.849306 2020-12-15 02:53:12.849306 379.00 379.00 0.00 \N 0.00 1858 1256 3 2020-12-15 02:53:12.851884 2020-12-15 02:53:12.851884 1799.00 1799.00 0.00 \N 0.00 1859 1256 2 2020-12-15 02:53:12.853741 2020-12-15 02:53:12.853741 12338.00 12525.00 0.00 \N 500.00 1860 1257 1 2020-12-16 02:29:33.894734 2020-12-16 02:29:33.894734 1599.00 1599.00 0.00 \N 0.00 1861 1257 2 2020-12-16 02:29:33.896646 2020-12-16 02:29:33.896646 7103.00 8338.00 0.00 \N 0.00 1862 1258 2 2020-12-16 03:52:10.041459 2020-12-16 03:52:10.041459 13440.00 14435.00 0.00 \N 0.00 1863 1258 1 2020-12-16 03:52:10.043151 2020-12-16 03:52:10.043151 2998.00 2998.00 0.00 \N 0.00 1864 1258 4 2020-12-16 03:52:10.044675 2020-12-16 03:52:10.044675 300.00 300.00 0.00 \N 0.00 1865 1259 2 2020-12-17 02:23:43.106306 2020-12-17 02:23:43.106306 7656.01 8294.01 0.00 \N 300.00 1866 1259 1 2020-12-17 02:23:43.108291 2020-12-17 02:23:43.108291 5714.00 5714.00 0.00 \N 0.00 1867 1259 4 2020-12-17 02:23:43.109961 2020-12-17 02:23:43.109961 3148.00 3148.00 0.00 \N 0.00 1868 1260 2 2020-12-17 02:59:25.378485 2020-12-17 02:59:25.378485 9041.99 10067.99 0.00 \N 0.00 1869 1260 1 2020-12-17 02:59:25.380823 2020-12-17 02:59:25.380823 2399.00 2399.00 0.00 \N 0.00 1870 1260 4 2020-12-17 02:59:25.383006 2020-12-17 02:59:25.383006 1499.00 1499.00 0.00 \N 0.00 1871 1261 2 2020-12-17 03:10:35.961652 2020-12-17 03:10:35.961652 1499.00 2233.00 0.00 \N 0.00 1872 1262 1 2020-12-18 02:17:53.563173 2020-12-18 02:17:53.563173 3157.00 3157.00 0.00 \N 0.00 1873 1262 2 2020-12-18 02:17:53.56511 2020-12-18 02:17:53.56511 5791.00 6685.00 0.00 \N 0.00 1874 1263 2 2020-12-18 06:53:04.180695 2020-12-18 06:53:04.180695 14999.00 15732.00 0.00 \N 0.00 1875 1264 2 2020-12-19 01:58:26.388613 2020-12-19 01:58:26.388613 4997.00 6657.00 0.00 \N 25.00 1876 1264 1 2020-12-19 01:58:26.390475 2020-12-19 01:58:26.390475 899.00 899.00 0.00 \N 0.00 1877 1265 2 2020-12-19 06:30:34.243309 2020-12-19 06:30:34.243309 9388.00 10184.00 0.00 \N 0.00 1878 1266 1 2020-12-20 01:53:17.435795 2020-12-20 01:53:17.435795 1748.00 1748.00 0.00 \N 0.00 1879 1266 2 2020-12-20 01:53:17.438837 2020-12-20 01:53:17.438837 3203.00 4560.00 0.00 \N 0.00 1880 1267 2 2020-12-20 06:27:52.113225 2020-12-20 06:27:52.113225 14855.00 15658.00 0.00 \N 0.00 1881 1268 2 2020-12-20 22:53:53.835462 2020-12-20 22:53:53.835462 1167.00 337.00 0.00 \N 1690.00 1882 1268 1 2020-12-20 22:53:53.837674 2020-12-20 22:53:53.837674 2189.00 2189.00 0.00 \N 0.00 1883 1269 3 2020-12-22 02:46:31.611879 2020-12-22 02:46:31.611879 4023.00 4023.00 0.00 \N 0.00 1884 1269 1 2020-12-22 02:46:31.613998 2020-12-22 02:46:31.613998 9794.01 9794.01 0.00 \N 0.00 1885 1269 2 2020-12-22 02:46:31.615632 2020-12-22 02:46:31.615632 3544.99 3881.99 0.00 \N 0.00 1886 1270 3 2020-12-22 03:07:13.303987 2020-12-22 03:07:13.303987 3198.00 3198.00 0.00 \N 0.00 1887 1270 4 2020-12-22 03:07:13.307193 2020-12-22 03:07:13.307193 2498.00 2498.00 0.00 \N 0.00 1888 1270 2 2020-12-22 03:07:13.309504 2020-12-22 03:07:13.309504 2718.00 3967.00 0.00 \N 0.00 1889 1271 2 2020-12-23 02:57:42.016791 2020-12-23 02:57:42.016791 10203.00 10784.99 0.00 \N 0.00 1890 1271 1 2020-12-23 02:57:42.019614 2020-12-23 02:57:42.019614 3106.00 3106.00 0.00 \N 0.00 1891 1272 2 2020-12-23 03:31:40.69262 2020-12-23 03:31:40.69262 27648.00 27859.00 0.00 \N 500.00 1892 1272 3 2020-12-23 03:31:40.694809 2020-12-23 03:31:40.694809 1899.00 1899.00 0.00 \N 0.00 1893 1272 1 2020-12-23 03:31:40.696508 2020-12-23 03:31:40.696508 15388.00 15388.00 0.00 \N 0.00 1894 1273 2 2020-12-24 02:50:23.0391 2020-12-24 02:50:23.0391 6353.00 7137.00 0.00 \N 0.00 1895 1273 1 2020-12-24 02:50:23.04198 2020-12-24 02:50:23.04198 3426.00 3426.00 0.00 \N 0.00 1896 1274 2 2020-12-24 03:19:19.390604 2020-12-24 03:19:19.390604 29146.00 30061.00 0.00 \N 0.00 1897 1274 1 2020-12-24 03:19:19.392178 2020-12-24 03:19:19.392178 8729.00 8729.00 0.00 \N 0.00 1898 1274 4 2020-12-24 03:19:19.393809 2020-12-24 03:19:19.393809 2098.00 2098.00 0.00 \N 0.00 1899 1274 3 2020-12-24 03:19:19.39539 2020-12-24 03:19:19.39539 1397.00 1397.00 0.00 \N 0.00 1900 1275 2 2020-12-25 01:18:09.237058 2020-12-25 01:18:09.237058 8928.00 8565.00 0.00 \N 1000.00 1901 1276 2 2020-12-25 02:59:09.099468 2020-12-25 02:59:09.099468 13647.00 13893.00 0.00 \N 710.00 1902 1276 3 2020-12-25 02:59:09.101404 2020-12-25 02:59:09.101404 3158.00 3158.00 0.00 \N 0.00 1903 1276 1 2020-12-25 02:59:09.103258 2020-12-25 02:59:09.103258 1457.00 1457.00 0.00 \N 0.00 1904 1277 2 2020-12-27 01:47:17.039166 2020-12-27 01:47:17.039166 299.00 864.00 0.00 \N 0.00 1905 1277 1 2020-12-27 01:47:17.041047 2020-12-27 01:47:17.041047 3744.00 3744.00 0.00 \N 0.00 1906 1278 2 2020-12-27 02:56:02.931088 2020-12-27 02:56:02.931088 3917.00 3760.00 0.00 \N 1050.00 1907 1278 1 2020-12-27 02:56:02.933516 2020-12-27 02:56:02.933516 1699.00 1699.00 0.00 \N 0.00 1908 1280 1 2020-12-29 01:49:22.851831 2020-12-29 01:49:22.851831 699.00 699.00 0.00 \N 0.00 1909 1280 2 2020-12-29 01:49:22.855138 2020-12-29 01:49:22.855138 7196.00 8060.00 0.00 \N 0.00 1910 1281 1 2020-12-29 02:55:47.978302 2020-12-29 02:55:47.978302 4697.00 4697.00 0.00 \N 0.00 1911 1281 2 2020-12-29 02:55:47.980165 2020-12-29 02:55:47.980165 1988.00 2248.00 0.00 \N 0.00 1912 1281 3 2020-12-29 02:55:47.981545 2020-12-29 02:55:47.981545 899.00 899.00 0.00 \N 0.00 1913 1282 2 2020-12-30 02:11:56.338632 2020-12-30 02:11:56.338632 7190.00 7870.00 0.00 \N 0.00 1914 1283 1 2020-12-30 02:57:43.170762 2020-12-30 02:57:43.170762 499.00 499.00 0.00 \N 0.00 1915 1284 1 2020-12-31 02:37:09.199201 2020-12-31 02:37:09.199201 2174.00 2174.00 0.00 \N 0.00 1916 1284 4 2020-12-31 02:37:09.201316 2020-12-31 02:37:09.201316 825.00 825.00 0.00 \N 0.00 1917 1284 2 2020-12-31 02:37:09.202757 2020-12-31 02:37:09.202757 3945.00 4715.00 0.00 \N 0.00 1918 1285 3 2020-12-31 02:49:36.140878 2020-12-31 02:49:36.140878 6896.00 6896.00 0.00 \N 0.00 1919 1285 1 2020-12-31 02:49:36.142626 2020-12-31 02:49:36.142626 2460.00 2460.00 0.00 \N 0.00 1920 1285 2 2020-12-31 02:49:36.144111 2020-12-31 02:49:36.144111 11404.00 9354.00 0.00 \N 2298.00 1921 1286 1 2020-12-31 03:28:59.722828 2020-12-31 03:28:59.722828 2070.00 2070.00 0.00 \N 0.00 1922 1286 2 2020-12-31 03:28:59.724709 2020-12-31 03:28:59.724709 600.00 1554.00 0.00 \N 0.00 1923 1286 3 2020-12-31 03:28:59.726058 2020-12-31 03:28:59.726058 1260.00 1260.00 0.00 \N 0.00 1924 1287 3 2020-12-31 23:27:32.956237 2020-12-31 23:27:32.956237 200.00 200.00 0.00 \N 0.00 1925 1287 2 2020-12-31 23:27:32.958632 2020-12-31 23:27:32.958632 8911.00 9211.00 0.00 \N 309.00 1926 1287 1 2020-12-31 23:27:32.960648 2020-12-31 23:27:32.960648 3954.00 3954.00 0.00 \N 0.00 1927 1288 2 2021-01-01 01:17:54.649771 2021-01-01 01:17:54.649771 1799.00 2492.00 0.00 \N 0.00 1928 1289 2 2021-01-01 02:00:50.477616 2021-01-01 02:00:50.477616 4019.00 4973.00 0.00 \N 0.00 1929 1289 4 2021-01-01 02:00:50.479468 2021-01-01 02:00:50.479468 1899.00 1899.00 0.00 \N 0.00 1930 1289 1 2021-01-01 02:00:50.480862 2021-01-01 02:00:50.480862 3985.00 3985.00 0.00 \N 0.00 1931 1290 2 2021-01-03 01:55:46.290644 2021-01-03 01:55:46.290644 1174.20 947.20 0.00 \N 1200.00 1932 1290 4 2021-01-03 01:55:46.292824 2021-01-03 01:55:46.292824 1499.00 1499.00 0.00 \N 0.00 1933 1291 4 2021-01-03 22:51:50.583872 2021-01-03 22:51:50.583872 1599.00 1599.00 0.00 \N 0.00 1934 1292 4 2021-01-03 22:51:50.768189 2021-01-03 22:51:50.768189 1599.00 1599.00 0.00 \N 0.00 1935 1293 2 2021-01-05 01:54:52.177735 2021-01-05 01:54:52.177735 1389.00 2082.00 0.00 \N 0.00 1936 1293 4 2021-01-05 01:54:52.179699 2021-01-05 01:54:52.179699 1799.00 1799.00 0.00 \N 0.00 1937 1293 3 2021-01-05 01:54:52.181149 2021-01-05 01:54:52.181149 300.00 300.00 0.00 \N 0.00 1938 1294 2 2021-01-05 01:58:57.138298 2021-01-05 01:58:57.138298 1299.00 2246.00 0.00 \N 0.00 1939 1295 1 2021-01-06 01:48:41.757543 2021-01-06 01:48:41.757543 1499.00 1499.00 0.00 \N 0.00 1940 1295 2 2021-01-06 01:48:41.759648 2021-01-06 01:48:41.759648 1340.00 2622.00 0.00 \N 0.00 1941 1296 2 2021-01-06 02:00:06.164718 2021-01-06 02:00:06.164718 1138.00 2184.00 0.00 \N 0.00 1942 1297 2 2021-01-07 01:48:44.492419 2021-01-07 01:48:44.492419 748.00 1090.00 0.00 \N 380.00 1943 1298 2 2021-01-07 02:03:07.078213 2021-01-07 02:03:07.078213 600.00 1784.00 0.00 \N 0.00 1944 1298 3 2021-01-07 02:03:07.079858 2021-01-07 02:03:07.079858 2098.00 2098.00 0.00 \N 0.00 1945 1299 3 2021-01-08 01:50:05.167521 2021-01-08 01:50:05.167521 500.00 500.00 0.00 \N 0.00 1946 1299 2 2021-01-08 01:50:05.169561 2021-01-08 01:50:05.169561 2404.00 2788.00 0.00 \N 800.00 1947 1300 2 2021-01-08 02:11:03.988442 2021-01-08 02:11:03.988442 3060.00 3354.00 0.00 \N 296.00 1948 1301 3 2021-01-09 01:53:54.957232 2021-01-09 01:53:54.957232 1499.00 1499.00 0.00 \N 0.00 1949 1301 2 2021-01-09 01:53:54.959348 2021-01-09 01:53:54.959348 3111.00 3965.00 0.00 \N 0.00 1950 1302 4 2021-01-09 02:38:26.203721 2021-01-09 02:38:26.203721 419.40 419.40 0.00 \N 0.00 1951 1302 2 2021-01-09 02:38:26.235065 2021-01-09 02:38:26.235065 3092.00 4880.00 0.00 \N 0.00 1952 1303 2 2021-01-10 01:46:12.600329 2021-01-10 01:46:12.600329 3216.00 4181.00 0.00 \N 0.00 1953 1304 2 2021-01-10 01:52:31.029847 2021-01-10 01:52:31.029847 0.00 1080.00 0.00 \N 100.00 1954 1305 2 2021-01-10 22:55:29.808992 2021-01-10 22:55:29.808992 2781.20 2781.20 0.00 \N 0.00 1955 1306 2 2021-01-12 01:54:50.700957 2021-01-12 01:54:50.700957 3177.00 3958.00 0.00 \N 0.00 1956 1307 1 2021-01-12 02:06:32.583074 2021-01-12 02:06:32.583074 2158.00 2158.00 0.00 \N 0.00 1957 1307 2 2021-01-12 02:06:32.585221 2021-01-12 02:06:32.585221 1062.00 1843.00 0.00 \N 0.00 1958 1308 2 2021-01-13 01:40:01.764351 2021-01-13 01:40:01.764351 2668.00 3526.00 0.00 \N 0.00 1959 1309 2 2021-01-13 01:57:39.166596 2021-01-13 01:57:39.166596 443.40 1125.40 0.00 \N 200.00 1960 1311 2 2021-01-14 02:08:16.434494 2021-01-14 02:08:16.434494 1499.00 2424.40 0.00 \N 0.00 1961 1312 2 2021-01-15 01:51:54.120236 2021-01-15 01:51:54.120236 1099.00 1725.00 0.00 \N 0.00 1962 1313 2 2021-01-15 01:57:57.556394 2021-01-15 01:57:57.556394 1737.00 2721.40 0.00 \N 0.00 1963 1314 1 2021-01-16 01:53:59.408926 2021-01-16 01:53:59.408926 3278.00 3278.00 0.00 \N 0.00 1964 1314 2 2021-01-16 01:53:59.411156 2021-01-16 01:53:59.411156 2429.40 3799.80 0.00 \N 0.00 1965 1315 2 2021-01-16 01:54:56.259406 2021-01-16 01:54:56.259406 1704.00 2229.00 0.00 \N 0.00 1966 1315 1 2021-01-16 01:54:56.262255 2021-01-16 01:54:56.262255 735.00 735.00 0.00 \N 0.00 1967 1316 2 2021-01-17 01:43:52.093121 2021-01-17 01:43:52.093121 2166.00 2435.00 0.00 \N 180.00 1968 1317 2 2021-01-17 02:01:39.865987 2021-01-17 02:01:39.865987 0.00 249.80 0.00 \N 1050.00 1969 1317 3 2021-01-17 02:01:39.868393 2021-01-17 02:01:39.868393 2446.00 2446.00 0.00 \N 0.00 1970 1317 1 2021-01-17 02:01:39.891635 2021-01-17 02:01:39.891635 4912.40 4912.40 0.00 \N 0.00 1971 1319 1 2021-01-19 01:46:07.207226 2021-01-19 01:46:07.207226 500.00 500.00 0.00 \N 0.00 1972 1319 2 2021-01-19 01:46:07.209177 2021-01-19 01:46:07.209177 0.00 615.00 0.00 \N 20.00 1973 1320 2 2021-01-19 02:08:23.983584 2021-01-19 02:08:23.983584 800.00 1049.00 0.00 \N 0.00 1974 1321 1 2021-01-19 03:03:37.976422 2021-01-19 03:03:37.976422 1988.00 1988.00 0.00 \N 0.00 1975 1322 2 2021-01-20 01:35:31.237753 2021-01-20 01:35:31.237753 1406.00 2021.00 0.00 \N 0.00 1976 1323 2 2021-01-20 02:23:34.848128 2021-01-20 02:23:34.848128 5536.00 6785.00 0.00 \N 0.00 1977 1323 3 2021-01-20 02:23:34.850093 2021-01-20 02:23:34.850093 500.00 500.00 0.00 \N 0.00 1978 1324 2 2021-01-21 02:10:05.697026 2021-01-21 02:10:05.697026 1199.00 2378.00 0.00 \N 0.00 1979 1325 2 2021-01-21 02:25:40.871197 2021-01-21 02:25:40.871197 1649.00 2069.00 0.00 \N 0.00 1980 1326 2 2021-01-22 02:03:04.129615 2021-01-22 02:03:04.129615 759.00 1328.00 0.00 \N 0.00 1981 1327 2 2021-01-22 02:37:49.347054 2021-01-22 02:37:49.347054 1679.40 2557.40 0.00 \N 0.00 1982 1328 2 2021-01-23 01:55:26.905993 2021-01-23 01:55:26.905993 1498.00 2226.00 0.00 \N 0.00 1983 1329 2 2021-01-23 02:40:09.511774 2021-01-23 02:40:09.511774 3777.40 4834.80 0.00 \N 0.00 1984 1330 2 2021-01-24 01:52:51.280516 2021-01-24 01:52:51.280516 2827.00 3493.00 0.00 \N 60.00 1985 1330 1 2021-01-24 01:52:51.282533 2021-01-24 01:52:51.282533 500.00 500.00 0.00 \N 0.00 1986 1331 2 2021-01-24 02:02:21.672835 2021-01-24 02:02:21.672835 899.00 783.80 0.00 \N 950.00 1987 1331 1 2021-01-24 02:02:21.674835 2021-01-24 02:02:21.674835 999.00 999.00 0.00 \N 0.00 1988 1331 4 2021-01-24 02:02:21.676448 2021-01-24 02:02:21.676448 1499.00 1499.00 0.00 \N 0.00 1989 1332 2 2021-01-24 22:57:16.2309 2021-01-24 22:57:16.2309 1599.00 2382.00 0.00 \N 0.00 1990 1333 2 2021-01-26 01:51:55.476848 2021-01-26 01:51:55.476848 1827.00 2820.00 0.00 \N 0.00 1991 1334 2 2021-01-26 01:53:10.811482 2021-01-26 01:53:10.811482 2898.00 3780.00 0.00 \N 0.00 1992 1335 2 2021-01-27 01:46:50.440019 2021-01-27 01:46:50.440019 3098.00 4118.00 0.00 \N 0.00 1993 1338 2 2021-01-28 02:00:16.622376 2021-01-28 02:00:16.622376 1598.00 2478.00 0.00 \N 0.00 1994 1339 1 2021-01-29 01:45:08.261003 2021-01-29 01:45:08.261003 609.00 609.00 0.00 \N 0.00 1995 1339 2 2021-01-29 01:45:08.262826 2021-01-29 01:45:08.262826 0.00 818.00 0.00 \N 100.00 1996 1340 1 2021-01-29 01:51:03.423941 2021-01-29 01:51:03.423941 3697.00 3697.00 0.00 \N 0.00 1997 1340 2 2021-01-29 01:51:03.42559 2021-01-29 01:51:03.42559 49.00 1027.00 0.00 \N 0.00 1998 1341 2 2021-01-30 01:48:11.906597 2021-01-30 01:48:11.906597 1254.00 1892.00 0.00 \N 180.00 1999 1341 4 2021-01-30 01:48:11.908645 2021-01-30 01:48:11.908645 1799.00 1799.00 0.00 \N 0.00 2000 1342 2 2021-01-30 02:00:47.920518 2021-01-30 02:00:47.920518 1529.80 2056.80 0.00 \N 0.00 2001 1343 2 2021-01-31 01:45:41.988258 2021-01-31 01:45:41.988258 1448.00 2340.00 0.00 \N 0.00 2002 1343 1 2021-01-31 01:45:41.990158 2021-01-31 01:45:41.990158 980.00 980.00 0.00 \N 0.00 2003 1344 2 2021-01-31 01:52:33.422297 2021-01-31 01:52:33.422297 698.00 454.00 0.00 \N 1300.00 2004 1346 3 2021-02-03 01:31:10.546175 2021-02-03 01:31:10.546175 400.00 400.00 0.00 \N 0.00 2005 1346 2 2021-02-03 01:31:10.548969 2021-02-03 01:31:10.548969 2738.40 2992.40 0.00 \N 200.00 2006 1347 3 2021-02-03 01:46:57.594865 2021-02-03 01:46:57.594865 2698.00 2698.00 0.00 \N 0.00 2007 1347 2 2021-02-03 01:46:57.596555 2021-02-03 01:46:57.596555 769.00 1609.00 0.00 \N 0.00 2008 1348 2 2021-02-04 01:52:19.139588 2021-02-04 01:52:19.139588 2579.00 2891.00 0.00 \N 297.00 2009 1349 1 2021-02-04 01:55:18.503377 2021-02-04 01:55:18.503377 1499.00 1499.00 0.00 \N 0.00 2010 1349 2 2021-02-04 01:55:18.505084 2021-02-04 01:55:18.505084 719.40 1511.80 0.00 \N 100.00 2011 1350 2 2021-02-05 01:53:15.984414 2021-02-05 01:53:15.984414 2527.00 3008.00 0.00 \N 200.00 2012 1351 2 2021-02-05 02:14:21.430261 2021-02-05 02:14:21.430261 149.00 660.00 0.00 \N 0.00 2013 1352 2 2021-02-07 01:44:43.607524 2021-02-07 01:44:43.607524 1019.40 1679.40 0.00 \N 0.00 2014 1353 2 2021-02-07 02:01:03.907646 2021-02-07 02:01:03.907646 1409.00 2097.00 0.00 \N 120.00 2015 1354 1 2021-02-08 23:52:06.283912 2021-02-08 23:52:06.283912 529.00 529.00 0.00 \N 0.00 2016 1357 2 2021-02-11 01:23:42.761052 2021-02-11 01:23:42.761052 1669.00 2794.00 0.00 \N 0.00 2017 1358 2 2021-02-12 02:04:41.72669 2021-02-12 02:04:41.72669 1419.00 2544.00 0.00 \N 0.00 2018 1359 2 2021-02-13 01:56:02.67278 2021-02-13 01:56:02.67278 1598.99 2631.99 0.00 \N 0.00 2019 1360 2 2021-02-14 01:57:17.21347 2021-02-14 01:57:17.21347 1069.00 1920.00 0.00 \N 0.00 2020 1361 2 2021-02-14 02:12:15.327796 2021-02-14 02:12:15.327796 2458.00 1458.00 0.00 \N 1000.00 2021 1361 4 2021-02-14 02:12:15.329782 2021-02-14 02:12:15.329782 869.00 869.00 0.00 \N 0.00 2022 1362 1 2021-02-18 02:17:26.609433 2021-02-18 02:17:26.609433 999.00 999.00 0.00 \N 0.00 2023 1363 1 2021-02-19 01:52:01.524092 2021-02-19 01:52:01.524092 598.00 598.00 0.00 \N 0.00 2024 1363 2 2021-02-19 01:52:01.525995 2021-02-19 01:52:01.525995 449.00 449.00 0.00 \N 0.00 2025 1363 4 2021-02-19 01:52:01.527446 2021-02-19 01:52:01.527446 699.00 699.00 0.00 \N 0.00 2026 1365 1 2021-02-23 21:26:28.101931 2021-02-23 21:26:28.101931 999.00 999.00 0.00 \N 0.00 2027 1366 2 2021-02-24 01:27:28.406069 2021-02-24 01:27:28.406069 349.99 349.99 0.00 \N 0.00 2028 1367 2 2021-02-28 02:22:54.468684 2021-02-28 02:22:54.468684 300.00 300.00 0.00 \N 0.00 2029 1368 2 2021-03-02 01:30:23.176276 2021-03-02 01:30:23.176276 150.00 150.00 0.00 \N 0.00 2030 1369 2 2021-03-04 01:35:56.520032 2021-03-04 01:35:56.520032 1449.00 1449.00 0.00 \N 0.00 2031 1370 2 2021-03-05 01:59:49.532485 2021-03-05 01:59:49.532485 350.00 350.00 0.00 \N 0.00 \. -- -- Name: cash_out_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.cash_out_details_id_seq', 2031, true); -- -- Data for Name: cash_outs; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.cash_outs (id, open_cash_register_id, user_id, amount_in, amount_out, created_at, updated_at, received_by_id, received_cash, cash_fund, physical_cash, observations, invoice_num) FROM stdin; 1 2 9 18249.0 0.0 2019-02-06 02:48:24.111018 2019-02-06 02:48:24.111018 7 18249.00 725.00 18974.00 \N 2 3 3 6410.0 0.0 2019-02-06 03:04:31.309941 2019-02-06 03:04:31.309941 10 5465.00 945.00 6410.00 RECIBIO SAMANTHA DINERO, ES VENTA ACUMULADA DESDE EL 30 DE ENERO \N 3 4 9 7290.2 0.0 2019-02-07 02:58:45.327665 2019-02-07 02:58:45.327665 7 3756.00 1134.20 4890.20 FALTA ELIMINAR VENTA DUPLICADA \N 4 5 3 3644.0 0.0 2019-02-07 03:03:19.141141 2019-02-07 03:03:19.141141 10 1368.00 945.00 2313.00 \N 5 7 3 1218.0 0.0 2019-02-09 02:37:52.711292 2019-02-09 02:37:52.711292 10 1218.00 1030.00 2248.00 \N 6 6 2 6435.0 0.0 2019-02-09 03:12:31.518889 2019-02-09 03:12:31.518889 7 120.00 3918.00 4038.00 \N 7 8 3 2375.01 0.0 2019-02-10 02:06:04.575352 2019-02-10 02:06:04.575352 10 988.00 945.00 1933.00 \N 8 9 2 2517.0 0.0 2019-02-10 02:12:16.403362 2019-02-10 02:12:16.403362 7 1768.00 652.00 2420.00 \N 9 10 10 3226.0 0.0 2019-02-12 02:32:02.607615 2019-02-12 02:32:02.607615 10 3158.00 1013.00 4171.00 CORTE SAMANTHA \N 10 11 2 3487.0 0.0 2019-02-12 02:37:52.178044 2019-02-12 02:37:52.178044 7 3450.00 699.00 4149.00 \N 11 12 9 1878.0 0.0 2019-02-13 02:36:20.814719 2019-02-13 02:36:20.814719 7 1400.00 678.00 2078.00 FALTAN 22 CAJA \N 12 13 10 848.0 0.0 2019-02-13 17:57:13.665864 2019-02-13 17:57:13.665864 10 500.00 1361.00 1861.00 REALIZO CORTE DEL 12/02/19 \N 13 14 9 2018.3 0.0 2019-02-14 02:48:20.48875 2019-02-14 02:48:20.48875 9 2000.00 696.30 2696.30 \N 14 15 3 3367.99 0.0 2019-02-14 02:54:59.193621 2019-02-14 02:54:59.193621 8 2568.00 1361.00 3929.00 \N 15 16 9 698.0 0.0 2019-02-15 02:50:55.490632 2019-02-15 02:50:55.490632 9 0.00 696.30 696.30 \N 16 17 3 2884.0 0.0 2019-02-15 03:03:52.25392 2019-02-15 03:03:52.25392 10 2000.00 562.00 2562.00 \N 17 19 2 4374.0 86.0 2019-02-16 02:49:06.450039 2019-02-16 02:49:06.450039 7 2900.00 887.00 3787.00 \N 18 18 3 1757.0 0.0 2019-02-16 02:56:21.172272 2019-02-16 02:56:21.172272 10 1268.00 562.00 1830.00 \N 19 20 2 6913.0 783.0 2019-02-17 02:45:16.134828 2019-02-17 02:45:16.134828 2 3200.00 882.00 4082.00 \N 20 21 3 2577.0 0.0 2019-02-17 02:53:14.879328 2019-02-17 02:53:14.879328 10 1828.00 562.00 2390.00 \N 21 22 3 1174.0 0.0 2019-02-17 21:46:29.751754 2019-02-17 21:46:29.751754 10 0.00 562.00 562.00 \N 22 23 9 5439.99 0.0 2019-02-17 22:02:51.611879 2019-02-17 22:02:51.611879 7 3500.00 585.00 4085.00 \N 23 24 10 1249.0 0.0 2019-02-19 02:35:03.610876 2019-02-19 02:35:03.610876 10 800.00 692.00 1492.00 RETIRO SAMANTHA \N 24 25 2 2048.0 72.0 2019-02-19 02:43:45.583109 2019-02-19 02:43:45.583109 7 0.00 513.00 513.00 \N 25 27 9 3175.99 0.0 2019-02-20 02:31:16.148432 2019-02-20 02:31:16.148432 7 3200.00 488.99 3688.99 RETIRO DINERO SAMANTHA \N 26 26 3 619.0 0.0 2019-02-20 02:50:40.426204 2019-02-20 02:50:40.426204 10 0.00 692.00 692.00 \N 27 28 9 3365.0 0.0 2019-02-21 02:14:44.641605 2019-02-21 02:14:44.641605 7 2700.00 685.00 3385.00 \N 28 29 3 3694.99 0.0 2019-02-21 02:29:37.819595 2019-02-21 02:29:37.819595 10 2800.00 692.00 3492.00 \N 29 32 9 3314.0 0.0 2019-02-22 02:22:05.353366 2019-02-22 02:22:05.353366 9 1000.00 582.00 1582.00 \N 30 33 9 0.0 0.0 2019-02-22 02:23:16.827835 2019-02-22 02:23:16.827835 9 0.00 882.00 882.00 \N 31 31 3 0.0 0.0 2019-02-22 02:53:53.878512 2019-02-22 02:53:53.878512 10 0.00 692.00 692.00 \N 32 34 2 6722.0 50.0 2019-02-23 02:20:45.99189 2019-02-23 02:20:45.99189 9 2500.00 956.00 3456.00 \N 33 35 3 210.0 0.0 2019-02-23 02:33:26.203129 2019-02-23 02:33:26.203129 10 0.00 692.00 692.00 \N 34 37 2 3698.0 768.0 2019-02-24 01:30:26.65825 2019-02-24 01:30:26.65825 7 3200.00 1027.00 4227.00 \N 35 36 11 1875.0 0.0 2019-02-24 01:49:47.667268 2019-02-24 01:49:47.667268 10 2000.00 567.00 2567.00 \N 36 38 9 419.0 0.0 2019-02-24 21:46:09.380505 2019-02-24 21:46:09.380505 9 419.00 1027.00 1446.00 \N 37 39 11 2268.0 0.0 2019-02-24 22:09:28.658238 2019-02-24 22:09:28.658238 10 2300.00 520.00 2820.00 \N 38 40 9 250.0 0.0 2019-02-26 01:55:39.92229 2019-02-26 01:55:39.92229 7 570.00 844.00 1414.00 \N 39 41 10 0.0 0.0 2019-02-26 02:01:17.775191 2019-02-26 02:01:17.775191 10 0.00 520.00 520.00 \N 40 42 11 588.0 0.0 2019-02-26 23:50:45.908767 2019-02-26 23:50:45.908767 11 0.00 520.00 520.00 \N 41 43 9 2097.0 0.0 2019-02-27 01:55:54.051109 2019-02-27 01:55:54.051109 7 100.00 844.00 944.00 \N 42 45 12 2098.0 0.0 2019-02-28 01:56:59.269107 2019-02-28 01:56:59.269107 7 1000.00 844.00 1844.00 \N 43 44 10 1837.0 0.0 2019-02-28 02:30:20.900294 2019-02-28 02:30:20.900294 10 500.00 859.00 1359.00 \N 44 47 12 989.0 0.0 2019-03-01 01:57:47.948421 2019-03-01 01:57:47.948421 7 1000.00 833.00 1833.00 \N 45 46 10 0.0 0.0 2019-03-01 02:08:43.8961 2019-03-01 02:08:43.8961 10 300.00 340.00 640.00 ADELANTO SUELDO ILSE \N 46 49 2 3824.0 618.0 2019-03-02 02:12:24.538799 2019-03-02 02:12:24.538799 9 3000.00 940.00 3940.00 \N 47 50 2 499.0 0.0 2019-03-02 02:16:42.107353 2019-03-02 02:16:42.107353 9 500.00 940.00 1440.00 \N 48 48 3 2946.0 0.0 2019-03-02 02:36:24.009693 2019-03-02 02:36:24.009693 10 1000.00 239.00 1239.00 SOBRARON $100 DIERON MAL LA FERIA \N 49 51 2 876.0 50.0 2019-03-03 01:49:17.246968 2019-03-03 01:49:17.246968 9 1000.00 766.00 1766.00 \N 50 52 3 2337.0 0.0 2019-03-03 01:49:47.014183 2019-03-03 01:49:47.014183 8 1878.00 239.00 2117.00 \N 51 54 11 5819.01 0.0 2019-03-03 21:42:31.955157 2019-03-03 21:42:31.955157 10 3700.00 371.00 4071.00 \N 52 53 12 4882.0 0.0 2019-03-03 21:56:15.181233 2019-03-03 21:56:15.181233 7 2217.00 766.00 2983.00 \N 53 55 2 680.01 50.0 2019-03-05 02:16:23.349347 2019-03-05 02:16:23.349347 9 832.01 564.00 1396.01 no se reflejo una venta a credito que se pago por la cantidad de $1068 \N 55 57 11 0.0 0.0 2019-03-06 01:56:26.097155 2019-03-06 01:56:26.097155 11 0.00 418.00 418.00 \N 56 58 12 1447.0 0.0 2019-03-06 02:00:35.46501 2019-03-06 02:00:35.46501 7 1500.00 511.00 2011.00 \N 57 59 11 1748.0 0.0 2019-03-07 02:00:49.798002 2019-03-07 02:00:49.798002 11 2200.00 466.00 2666.00 \N 58 60 12 2722.0 0.0 2019-03-07 02:02:14.526419 2019-03-07 02:02:14.526419 7 1900.00 584.00 2484.00 \N 59 62 11 1798.0 0.0 2019-03-08 02:00:54.551075 2019-03-08 02:00:54.551075 11 2000.00 264.00 2264.00 \N 60 61 12 0.0 0.0 2019-03-08 02:01:04.010088 2019-03-08 02:01:04.010088 7 0.00 584.00 584.00 \N 61 64 11 1798.0 0.0 2019-03-09 01:58:06.485655 2019-03-09 01:58:06.485655 11 0.00 264.00 264.00 \N 62 63 12 1079.0 0.0 2019-03-09 02:07:28.930397 2019-03-09 02:07:28.930397 7 700.00 563.00 1263.00 \N 63 65 2 3983.01 928.0 2019-03-10 02:01:59.704919 2019-03-10 02:01:59.704919 7 1800.00 650.00 2450.00 \N 64 66 3 4763.99 0.0 2019-03-10 02:03:10.511773 2019-03-10 02:03:10.511773 8 4000.00 439.00 4439.00 \N 67 69 2 1688.0 50.0 2019-03-12 01:58:06.419902 2019-03-12 01:58:06.419902 9 1700.00 587.00 2287.00 \N 68 70 11 49.0 0.0 2019-03-12 02:06:14.229483 2019-03-12 02:06:14.229483 8 0.00 487.00 487.00 \N 54 56 10 3898 0.0 2019-03-05 02:55:08.258626 2019-03-05 02:55:08.258626 10 3681.00 588.00 4269.00 QUEDO ABONO CREDITO DE 1500 PENDIENTE \N 65 67 12 1199.0 0.0 2019-03-10 21:56:43.760981 2019-03-10 21:56:43.760981 7 1200.00 649.00 1849.00 \N 66 68 11 0.0 0.0 2019-03-10 21:57:16.736864 2019-03-10 21:57:16.736864 11 0.00 438.00 438.00 \N 69 71 2 500.0 0.0 2019-03-13 02:00:36.660282 2019-03-13 02:00:36.660282 7 500.00 587.00 1087.00 \N 70 72 11 0.0 0.0 2019-03-13 02:00:47.964479 2019-03-13 02:00:47.964479 11 0.00 487.00 487.00 \N 71 73 11 4054.0 1300.0 2019-03-14 02:00:47.154145 2019-03-14 02:00:47.154145 11 0.00 535.00 535.00 \N 72 74 12 1567.0 0.0 2019-03-15 01:56:08.629095 2019-03-15 01:56:08.629095 7 1000.00 555.00 1555.00 \N 73 75 11 2388.0 0.0 2019-03-15 02:00:00.354257 2019-03-15 02:00:00.354257 11 1500.00 535.00 2035.00 \N 74 77 2 5684.99 50.0 2019-03-16 01:57:23.186996 2019-03-16 01:57:23.186996 7 3000.00 913.00 3913.00 \N 75 76 11 3925.01 0.0 2019-03-16 02:12:04.000786 2019-03-16 02:12:04.000786 11 3900.00 383.00 4283.00 \N 76 78 3 1568.0 1000.0 2019-03-17 01:53:54.328512 2019-03-17 01:53:54.328512 10 500.00 446.00 946.00 \N 77 79 2 1518.0 50.0 2019-03-17 02:02:06.533327 2019-03-17 02:02:06.533327 9 0.00 863.00 863.00 \N 78 81 12 489.0 0.0 2019-03-17 21:45:29.054711 2019-03-17 21:45:29.054711 7 500.00 850.00 1350.00 \N 79 80 11 0.0 0.0 2019-03-17 21:55:34.609335 2019-03-17 21:55:34.609335 11 0.00 446.00 446.00 \N 80 82 11 2158.0 0.0 2019-03-20 02:04:11.574405 2019-03-20 02:04:11.574405 11 700.00 406.00 1106.00 \N 81 83 12 2800.0 0.0 2019-03-20 02:08:46.735273 2019-03-20 02:08:46.735273 7 0.00 850.00 850.00 \N 82 84 11 1983.0 0.0 2019-03-21 01:56:10.674014 2019-03-21 01:56:10.674014 11 200.00 506.00 706.00 \N 83 85 2 768.0 50.0 2019-03-21 17:05:07.965773 2019-03-21 17:05:07.965773 2 500.00 1068.00 1568.00 \N 84 87 11 499.0 0.0 2019-03-22 01:54:27.269204 2019-03-22 01:54:27.269204 11 500.00 505.00 1005.00 \N 85 86 2 649.0 770.0 2019-03-22 17:19:29.372393 2019-03-22 17:19:29.372393 2 0.00 947.00 947.00 \N 86 88 11 1188.0 0.0 2019-03-23 01:43:08.335621 2019-03-23 01:43:08.335621 11 0.00 500.00 500.00 \N 87 89 12 2037.0 1100.0 2019-03-23 01:59:08.96036 2019-03-23 01:59:08.96036 7 150.00 964.00 1114.00 \N 89 90 2 733.01 678.0 2019-03-24 01:58:29.235116 2019-03-24 01:58:29.235116 2 0.00 1019.00 1019.00 \N 90 93 12 2796.0 0.0 2019-03-24 21:53:30.665525 2019-03-24 21:53:30.665525 7 3200.00 1015.00 4215.00 \N 91 92 11 1000.0 0.0 2019-03-24 21:56:40.245517 2019-03-24 21:56:40.245517 11 500.00 555.00 1055.00 \N 92 95 2 2747.0 50.0 2019-03-26 02:06:03.693677 2019-03-26 02:06:03.693677 9 2800.00 912.00 3712.00 \N 93 94 10 200.0 0.0 2019-03-26 02:28:50.309331 2019-03-26 02:28:50.309331 10 0.00 755.00 755.00 \N 94 96 11 988.0 0.0 2019-03-27 01:49:19.660899 2019-03-27 01:49:19.660899 11 1000.00 743.00 1743.00 \N 95 97 12 369.0 24.0 2019-03-27 01:54:20.833225 2019-03-27 01:54:20.833225 7 500.00 757.00 1257.00 \N 96 99 11 1226.0 0.0 2019-03-28 01:40:02.656545 2019-03-28 01:40:02.656545 11 800.00 296.00 1096.00 \N 97 98 12 1228.0 500.0 2019-03-28 01:54:53.587607 2019-03-28 01:54:53.587607 7 200.00 757.00 957.00 \N 98 100 12 1499.0 0.0 2019-03-29 01:53:37.112212 2019-03-29 01:53:37.112212 7 1500.00 757.00 2257.00 \N 99 101 11 0.0 0.0 2019-03-29 01:54:13.887085 2019-03-29 01:54:13.887085 11 0.00 296.00 296.00 \N 100 102 2 550.0 50.0 2019-03-30 01:48:10.634824 2019-03-30 01:48:10.634824 2 500.00 757.00 1257.00 \N 101 103 3 729.0 0.0 2019-03-30 01:55:54.440925 2019-03-30 01:55:54.440925 8 500.00 522.00 1022.00 \N 102 105 3 1598.0 500.0 2019-03-31 01:56:36.252202 2019-03-31 01:56:36.252202 8 1020.00 600.00 1620.00 \N 103 104 2 3616.0 678.0 2019-03-31 01:59:30.979167 2019-03-31 01:59:30.979167 2 1600.00 697.00 2297.00 \N 104 106 11 1474.0 0.0 2019-03-31 21:42:41.867192 2019-03-31 21:42:41.867192 11 0.00 600.00 600.00 \N 105 107 12 2498.0 0.0 2019-03-31 21:52:35.065561 2019-03-31 21:52:35.065561 7 1500.00 596.00 2096.00 \N 106 108 2 3504.0 1063.0 2019-04-02 02:01:42.049198 2019-04-02 02:01:42.049198 2 1000.00 599.00 1599.00 \N 107 110 12 1368.0 0.0 2019-04-03 02:00:15.992352 2019-04-03 02:00:15.992352 7 1300.00 667.00 1967.00 \N 108 109 11 200.0 0.0 2019-04-03 02:02:42.501403 2019-04-03 02:02:42.501403 8 400.00 400.00 800.00 $400 por adelanto Ilse \N 109 111 12 842.0 0.0 2019-04-04 01:58:42.68777 2019-04-04 01:58:42.68777 7 1200.00 766.00 1966.00 \N 110 112 11 998.0 0.0 2019-04-04 02:02:55.831522 2019-04-04 02:02:55.831522 10 1098.00 300.00 1398.00 abono a cuenta de Ilse $100.00 \N 111 114 12 3187.0 0.0 2019-04-05 01:52:22.906526 2019-04-05 01:52:22.906526 7 600.00 755.00 1355.00 \N 112 113 10 3596.0 0.0 2019-04-05 02:05:01.826783 2019-04-05 02:05:01.826783 10 1100.00 535.00 1635.00 ABONO ILSE $100 \N 113 116 2 2567.01 50.0 2019-04-06 01:28:16.30851 2019-04-06 01:28:16.30851 7 1000.00 573.00 1573.00 \N 114 115 11 6293.0 0.0 2019-04-06 01:43:26.884675 2019-04-06 01:43:26.884675 10 4900.00 960.00 5860.00 200 SUELDO ILSE \N 115 117 3 799.0 0.0 2019-04-07 01:54:06.296425 2019-04-07 01:54:06.296425 10 1000.00 759.00 1759.00 \N 116 118 2 4893.0 738.0 2019-04-07 02:03:18.258084 2019-04-07 02:03:18.258084 9 0.00 484.00 484.00 \N 117 119 11 599.0 0.0 2019-04-07 20:54:13.245434 2019-04-07 20:54:13.245434 11 600.00 758.00 1358.00 \N 118 120 12 479.0 0.0 2019-04-07 20:54:35.582464 2019-04-07 20:54:35.582464 7 500.00 463.00 963.00 \N 119 122 11 0.0 0.0 2019-04-09 01:46:13.613765 2019-04-09 01:46:13.613765 10 0.00 758.00 758.00 \N 120 121 2 659.0 50.0 2019-04-09 01:58:50.596094 2019-04-09 01:58:50.596094 2 500.00 572.00 1072.00 \N 121 123 10 0.0 0.0 2019-04-10 01:54:30.160513 2019-04-10 01:54:30.160513 10 0.00 758.00 758.00 \N 122 124 12 1199.0 0.0 2019-04-10 01:54:52.227829 2019-04-10 01:54:52.227829 7 200.00 572.00 772.00 \N 123 125 2 2224.0 0.0 2019-04-11 01:56:25.478934 2019-04-11 01:56:25.478934 7 1200.00 547.00 1747.00 \N 124 126 10 4544.0 0.0 2019-04-11 01:58:27.331697 2019-04-11 01:58:27.331697 10 3400.00 724.00 4124.00 \N 125 128 12 699.0 0.0 2019-04-12 01:33:47.870909 2019-04-12 01:33:47.870909 7 0.00 547.00 547.00 \N 126 127 10 1498.0 0.0 2019-04-12 01:50:30.508004 2019-04-12 01:50:30.508004 10 1400.00 763.00 2163.00 \N 127 129 12 5502.0 1800.0 2019-04-13 01:56:18.215874 2019-04-13 01:56:18.215874 7 2400.00 551.00 2951.00 \N 128 130 11 599.0 800.0 2019-04-13 02:01:27.892954 2019-04-13 02:01:27.892954 10 0.00 562.00 562.00 \N 129 132 2 1779.0 703.0 2019-04-14 01:36:50.804434 2019-04-14 01:36:50.804434 2 0.00 528.00 528.00 \N 130 131 3 1149.0 0.0 2019-04-14 01:56:39.899178 2019-04-14 01:56:39.899178 10 1800.00 610.00 2410.00 \N 131 133 11 1849.0 0.0 2019-04-14 20:51:54.628128 2019-04-14 20:51:54.628128 11 0.00 960.00 960.00 \N 132 134 12 899.0 0.0 2019-04-14 20:55:07.791868 2019-04-14 20:55:07.791868 7 0.00 528.00 528.00 \N 133 136 2 2627.0 50.0 2019-04-16 01:40:42.600667 2019-04-16 01:40:42.600667 2 2500.00 605.00 3105.00 \N 134 135 10 1816.0 0.0 2019-04-16 01:56:03.034244 2019-04-16 01:56:03.034244 10 2100.00 676.00 2776.00 \N 135 137 10 0.0 0.0 2019-04-17 01:56:32.311941 2019-04-17 01:56:32.311941 10 0.00 676.00 676.00 \N 136 138 2 2248.0 50.0 2019-04-17 02:06:32.495964 2019-04-17 02:06:32.495964 7 1500.00 553.00 2053.00 \N 137 140 10 6330.0 500.0 2019-04-18 01:53:14.009841 2019-04-18 01:53:14.009841 10 5550.00 656.00 6206.00 \N 138 139 12 3266.0 1200.0 2019-04-18 01:56:00.209291 2019-04-18 01:56:00.209291 7 1000.00 571.00 1571.00 \N 139 142 12 5078.01 0.0 2019-04-23 01:56:23.583502 2019-04-23 01:56:23.583502 7 3000.00 651.00 3651.00 \N 140 141 10 469.0 0.0 2019-04-23 01:56:45.535851 2019-04-23 01:56:45.535851 10 0.00 656.00 656.00 \N 141 143 10 2767.0 0.0 2019-04-24 01:53:10.356179 2019-04-24 01:53:10.356179 10 1000.00 556.00 1556.00 \N 142 144 12 3945.0 0.0 2019-04-24 01:55:52.128517 2019-04-24 01:55:52.128517 7 3900.00 696.00 4596.00 \N 143 145 10 2378.0 0.0 2019-04-25 01:54:34.850422 2019-04-25 01:54:34.850422 10 1500.00 856.00 2356.00 \N 144 146 12 2988.0 0.0 2019-04-25 01:56:04.824836 2019-04-25 01:56:04.824836 7 1500.00 684.00 2184.00 \N 150 151 10 1798.0 0.0 2019-04-28 01:56:22.360154 2019-04-28 01:56:22.360154 10 1800.00 524.00 2324.00 \N 88 91 3 3155 500.0 2019-03-24 01:56:57.382746 2019-03-24 01:56:57.382746 10 1800.00 556.00 1956.00 \N 145 147 10 3599.0 0.0 2019-04-26 01:50:06.427738 2019-04-26 01:50:06.427738 10 0.00 856.00 856.00 \N 146 148 12 300.0 0.0 2019-04-26 01:56:01.747854 2019-04-26 01:56:01.747854 7 300.00 684.00 984.00 \N 147 150 12 1698.0 0.0 2019-04-27 01:56:07.594314 2019-04-27 01:56:07.594314 7 500.00 483.00 983.00 \N 148 149 10 649.0 0.0 2019-04-27 01:59:31.503507 2019-04-27 01:59:31.503507 10 1000.00 505.00 1505.00 \N 149 152 12 5013.0 1270.0 2019-04-28 01:55:55.811957 2019-04-28 01:55:55.811957 7 2400.00 657.00 3057.00 \N 151 153 2 1598.0 50.0 2019-04-30 01:54:49.500704 2019-04-30 01:54:49.500704 7 0.00 607.00 607.00 \N 152 154 10 1002.0 0.0 2019-04-30 02:00:05.023116 2019-04-30 02:00:05.023116 10 800.00 524.00 1324.00 \N 153 156 10 2158.01 0.0 2019-05-01 01:55:15.103944 2019-05-01 01:55:15.103944 10 1200.00 482.00 1682.00 \N 154 155 12 3948.0 778.0 2019-05-01 01:58:20.370557 2019-05-01 01:58:20.370557 7 2900.00 577.00 3477.00 \N 155 158 2 1699.0 0.0 2019-05-01 21:55:18.075388 2019-05-01 21:55:18.075388 7 1600.00 676.00 2276.00 \N 156 157 10 0.0 0.0 2019-05-01 21:59:27.208772 2019-05-01 21:59:27.208772 10 0.00 482.00 482.00 \N 157 159 2 5046.0 1150.0 2019-05-03 01:55:41.560612 2019-05-03 01:55:41.560612 2 2400.00 873.00 3273.00 \N 158 160 3 1498.0 0.0 2019-05-03 01:57:28.615123 2019-05-03 01:57:28.615123 8 1400.00 580.00 1980.00 \N 159 161 10 669.0 0.0 2019-05-04 01:47:52.619572 2019-05-04 01:47:52.619572 10 700.00 549.00 1249.00 \N 231 233 2 1448.0 0.0 2019-06-09 02:18:35.952499 2019-06-09 02:18:35.952499 9 1448.00 567.00 2015.00 \N 160 162 2 3666 250.0 2019-05-04 02:08:30.844769 2019-05-04 02:08:30.844769 9 3769.00 789.00 4558.00 \N 161 164 3 4565.0 0.0 2019-05-05 01:49:11.42443 2019-05-05 01:49:11.42443 10 3000.00 696.00 3696.00 \N 162 163 2 6102.0 1398.0 2019-05-05 02:01:55.806345 2019-05-05 02:01:55.806345 9 3000.00 1066.00 4066.00 \N 163 166 12 2567.0 0.0 2019-05-05 21:01:38.833361 2019-05-05 21:01:38.833361 7 0.00 1066.00 1066.00 \N 164 165 10 3933.0 0.0 2019-05-05 21:06:34.210356 2019-05-05 21:06:34.210356 13 1800.00 668.00 2468.00 \N 165 168 3 4634.99 0.0 2019-05-07 01:36:02.737174 2019-05-07 01:36:02.737174 8 4400.00 903.00 5303.00 \N 166 167 2 5162.99 750.0 2019-05-07 01:40:14.138503 2019-05-07 01:40:14.138503 9 2500.00 1511.00 4011.00 \N 167 170 3 1970.0 0.0 2019-05-08 01:54:51.257409 2019-05-08 01:54:51.257409 8 0.00 1155.00 1155.00 \N 168 169 2 7041.0 50.0 2019-05-08 01:58:05.931249 2019-05-08 01:58:05.931249 2 4500.00 1236.00 5736.00 \N 169 171 3 8656.0 0.0 2019-05-09 01:54:29.482221 2019-05-09 01:54:29.482221 8 7800.00 953.00 8753.00 \N 170 172 2 15099.0 50.0 2019-05-09 02:00:53.236438 2019-05-09 02:00:53.236438 9 10900.00 790.00 11690.00 \N 171 173 2 589.0 0.0 2019-05-09 02:07:09.992899 2019-05-09 02:07:09.992899 9 500.00 879.00 1379.00 \N 172 174 2 10962.0 483.0 2019-05-10 02:17:11.579714 2019-05-10 02:17:11.579714 9 8000.00 725.00 8725.00 \N 173 175 3 9451.99 0.0 2019-05-10 02:37:40.183196 2019-05-10 02:37:40.183196 8 7800.00 707.00 8507.00 \N 174 177 3 2797.0 0.0 2019-05-10 21:51:07.200539 2019-05-10 21:51:07.200539 8 500.00 706.00 1206.00 \N 175 176 2 2567.0 0.0 2019-05-10 21:57:05.328565 2019-05-10 21:57:05.328565 2 2500.00 792.00 3292.00 \N 176 179 3 1818.0 0.0 2019-05-12 01:55:35.725769 2019-05-12 01:55:35.725769 8 1900.00 624.00 2524.00 \N 177 178 2 6653.0 4138.0 2019-05-12 02:45:15.091362 2019-05-12 02:45:15.091362 2 1700.00 527.00 2227.00 \N 178 181 12 500.0 0.0 2019-05-12 20:48:31.244498 2019-05-12 20:48:31.244498 9 500.00 527.00 1027.00 \N 179 180 3 1149.0 0.0 2019-05-12 20:53:47.966835 2019-05-12 20:53:47.966835 8 1000.00 773.00 1773.00 \N 180 182 2 1499.0 70.0 2019-05-14 01:59:11.031551 2019-05-14 01:59:11.031551 2 0.00 457.00 457.00 \N 181 183 10 749.0 0.0 2019-05-14 02:02:56.364405 2019-05-14 02:02:56.364405 8 0.00 773.00 773.00 \N 182 185 3 1759.1 0.0 2019-05-15 01:56:09.337086 2019-05-15 01:56:09.337086 8 1759.00 773.00 2532.00 \N 183 184 2 6825.0 250.0 2019-05-15 02:12:30.733983 2019-05-15 02:12:30.733983 7 2600.00 982.00 3582.00 \N 184 186 3 5572.0 0.0 2019-05-16 01:57:01.713156 2019-05-16 01:57:01.713156 8 1600.00 507.00 2107.00 \N 185 187 2 3538.01 50.0 2019-05-16 02:02:56.101541 2019-05-16 02:02:56.101541 9 800.00 997.00 1797.00 \N 186 188 3 1598.0 0.0 2019-05-17 01:57:03.176869 2019-05-17 01:57:03.176869 8 0.00 507.00 507.00 \N 187 189 2 4726.0 250.0 2019-05-17 02:03:40.695636 2019-05-17 02:03:40.695636 9 3200.00 934.00 4134.00 \N 188 190 3 1658.0 0.0 2019-05-18 01:53:29.122778 2019-05-18 01:53:29.122778 8 1500.00 665.00 2165.00 \N 189 191 2 3859.0 50.0 2019-05-18 02:02:02.671064 2019-05-18 02:02:02.671064 9 2500.00 975.00 3475.00 \N 190 192 3 1071.0 720.0 2019-05-19 01:55:45.985094 2019-05-19 01:55:45.985094 8 500.00 516.00 1016.00 \N 191 193 2 3773.0 2178.0 2019-05-19 01:59:29.512091 2019-05-19 01:59:29.512091 2 400.00 771.00 1171.00 \N 192 194 3 599.0 0.0 2019-05-19 20:55:51.538121 2019-05-19 20:55:51.538121 10 0.00 516.00 516.00 \N 193 195 9 2897.0 0.0 2019-05-19 20:59:39.08334 2019-05-19 20:59:39.08334 9 1200.00 826.00 2026.00 \N 194 196 2 3177.0 71.0 2019-05-21 01:46:31.887071 2019-05-21 01:46:31.887071 2 3100.00 832.00 3932.00 \N 195 197 10 2357.0 0.0 2019-05-21 02:00:52.17691 2019-05-21 02:00:52.17691 8 2400.00 473.00 2873.00 \N 196 199 3 2299.0 0.0 2019-05-22 01:55:07.436208 2019-05-22 01:55:07.436208 8 1500.00 653.00 2153.00 \N 197 198 2 7172.19 0.0 2019-05-22 02:09:08.037958 2019-05-22 02:09:08.037958 9 3900.00 629.00 4529.00 \N 198 200 3 6195.99 0.0 2019-05-23 01:56:53.628679 2019-05-23 01:56:53.628679 8 4500.00 849.00 5349.00 \N 199 201 9 3766.0 50.0 2019-05-23 02:00:58.59232 2019-05-23 02:00:58.59232 7 1600.00 646.00 2246.00 \N 200 202 2 5448.01 50.0 2019-05-24 01:51:33.010444 2019-05-24 01:51:33.010444 2 2500.00 728.00 3228.00 \N 201 203 3 4491.0 0.0 2019-05-24 01:53:14.820796 2019-05-24 01:53:14.820796 8 3800.00 741.00 4541.00 \N 202 204 3 2887.0 500.0 2019-05-25 01:56:20.86554 2019-05-25 01:56:20.86554 8 700.00 630.00 1330.00 \N 203 205 2 2906.0 0.0 2019-05-25 02:02:39.640846 2019-05-25 02:02:39.640846 9 1500.00 626.00 2126.00 \N 204 207 12 6818.31 1328.0 2019-05-26 01:56:44.443538 2019-05-26 01:56:44.443538 7 3000.00 550.00 3550.00 \N 205 206 3 6144.0 0.0 2019-05-26 01:57:44.148183 2019-05-26 01:57:44.148183 10 1290.00 788.00 2078.00 \N 206 208 3 1858.0 0.0 2019-05-26 20:50:21.347063 2019-05-26 20:50:21.347063 10 1000.00 677.00 1677.00 \N 207 209 12 1378.0 200.0 2019-05-26 21:02:34.06917 2019-05-26 21:02:34.06917 7 1000.00 728.00 1728.00 \N 208 210 2 3885.0 450.0 2019-05-28 01:49:07.116617 2019-05-28 01:49:07.116617 7 2000.00 1064.00 3064.00 \N 209 211 3 1599.0 0.0 2019-05-29 01:54:53.364102 2019-05-29 01:54:53.364102 8 1500.00 776.00 2276.00 \N 210 212 2 3526.0 0.0 2019-05-29 02:02:17.268022 2019-05-29 02:02:17.268022 9 1700.00 752.00 2452.00 \N 211 214 3 0.0 0.0 2019-05-30 01:47:57.035514 2019-05-30 01:47:57.035514 8 0.00 776.00 776.00 \N 212 213 2 0.0 0.0 2019-05-30 01:57:42.083862 2019-05-30 01:57:42.083862 9 0.00 752.00 752.00 \N 213 215 3 969.0 100.0 2019-05-31 01:58:54.199601 2019-05-31 01:58:54.199601 8 500.00 845.00 1345.00 \N 214 216 2 4017.0 400.0 2019-05-31 02:03:42.397134 2019-05-31 02:03:42.397134 9 1500.00 411.00 1911.00 \N 215 218 3 5757.0 0.0 2019-06-01 01:55:48.56619 2019-06-01 01:55:48.56619 8 0.00 845.00 845.00 \N 216 217 9 3807.0 0.0 2019-06-01 02:06:21.306205 2019-06-01 02:06:21.306205 9 3205.00 1019.00 4224.00 \N 217 219 2 1249.0 1238.0 2019-06-02 01:44:05.938872 2019-06-02 01:44:05.938872 2 500.00 530.00 1030.00 \N 218 220 3 1679.0 0.0 2019-06-02 01:53:02.37067 2019-06-02 01:53:02.37067 8 1500.00 1074.00 2574.00 \N 219 221 3 1098.0 0.0 2019-06-02 20:55:37.15158 2019-06-02 20:55:37.15158 10 0.00 1074.00 1074.00 \N 220 222 2 489.0 50.0 2019-06-04 01:45:31.982151 2019-06-04 01:45:31.982151 2 0.00 480.00 480.00 \N 221 223 10 0.0 0.0 2019-06-04 01:58:43.353322 2019-06-04 01:58:43.353322 8 0.00 1074.00 1074.00 \N 222 225 2 2249.0 394.0 2019-06-05 01:54:50.472721 2019-06-05 01:54:50.472721 9 1500.00 835.00 2335.00 \N 223 224 10 1199.0 0.0 2019-06-05 01:57:22.947981 2019-06-05 01:57:22.947981 8 1400.00 884.00 2284.00 \N 224 226 10 0.0 0.0 2019-06-06 01:13:03.833371 2019-06-06 01:13:03.833371 8 0.00 884.00 884.00 \N 225 227 2 500.0 50.0 2019-06-06 01:19:13.890409 2019-06-06 01:19:13.890409 2 0.00 805.00 805.00 \N 226 228 2 3016.0 306.0 2019-06-07 01:49:06.765986 2019-06-07 01:49:06.765986 9 2200.00 1016.00 3216.00 \N 227 229 3 1475.0 0.0 2019-06-07 01:59:26.413449 2019-06-07 01:59:26.413449 8 1500.00 859.00 2359.00 \N 228 230 3 0.0 200.0 2019-06-08 02:54:36.436319 2019-06-08 02:54:36.436319 8 0.00 659.00 659.00 \N 229 232 2 579.0 1028.0 2019-06-08 23:11:08.110349 2019-06-08 23:11:08.110349 14 0.00 567.00 567.00 \N 230 231 3 2791.0 950.0 2019-06-09 02:04:14.54308 2019-06-09 02:04:14.54308 10 2000.00 721.00 2721.00 \N 232 235 2 1499.0 0.0 2019-06-09 20:52:59.07137 2019-06-09 20:52:59.07137 7 0.00 567.00 567.00 \N 233 234 3 1599.0 157.0 2019-06-09 20:58:15.071037 2019-06-09 20:58:15.071037 10 0.00 564.00 564.00 \N 234 237 3 0.0 0.0 2019-06-11 02:02:38.413334 2019-06-11 02:02:38.413334 8 1000.00 770.00 1770.00 \N 235 236 9 2008.0 0.0 2019-06-11 02:07:16.682968 2019-06-11 02:07:16.682968 9 2000.00 575.00 2575.00 \N 236 238 3 1599.0 0.0 2019-06-12 01:54:19.582004 2019-06-12 01:54:19.582004 8 1700.00 669.00 2369.00 \N 237 239 2 2256.0 0.0 2019-06-12 01:59:02.9167 2019-06-12 01:59:02.9167 9 2000.00 831.00 2831.00 \N 238 240 3 0.0 0.0 2019-06-13 01:55:11.268551 2019-06-13 01:55:11.268551 8 0.00 669.00 669.00 \N 239 241 2 892.0 0.0 2019-06-13 02:01:51.516331 2019-06-13 02:01:51.516331 9 1000.00 723.00 1723.00 \N 240 243 12 3457.01 10.0 2019-06-14 01:58:42.180903 2019-06-14 01:58:42.180903 9 1500.00 732.00 2232.00 \N 241 242 10 897.0 0.0 2019-06-14 02:10:16.978553 2019-06-14 02:10:16.978553 10 500.00 566.00 1066.00 \N 242 244 3 1395.0 0.0 2019-06-15 01:59:04.945444 2019-06-15 01:59:04.945444 8 1500.00 461.00 1961.00 \N 243 245 2 1878.0 1050.0 2019-06-15 02:02:45.813141 2019-06-15 02:02:45.813141 9 500.00 760.00 1260.00 \N 244 247 3 2077.0 50.0 2019-06-16 01:58:23.355138 2019-06-16 01:58:23.355138 10 500.00 510.00 1010.00 \N 245 246 2 6817.99 1788.0 2019-06-16 02:00:12.212095 2019-06-16 02:00:12.212095 16 500.00 770.00 1270.00 \N 246 248 2 604.0 0.0 2019-06-16 20:51:19.33775 2019-06-16 20:51:19.33775 2 500.00 924.00 1424.00 \N 247 249 3 0.0 0.0 2019-06-16 20:54:20.87833 2019-06-16 20:54:20.87833 10 0.00 510.00 510.00 \N 248 251 3 0.0 0.0 2019-06-18 01:52:05.828658 2019-06-18 01:52:05.828658 8 0.00 510.00 510.00 \N 249 250 12 699.0 0.0 2019-06-18 01:53:36.442 2019-06-18 01:53:36.442 9 0.00 924.00 924.00 \N 250 253 2 3986.0 0.0 2019-06-19 01:56:20.768266 2019-06-19 01:56:20.768266 9 3500.00 1011.00 4511.00 \N 251 252 3 1863.0 0.0 2019-06-19 02:06:11.284807 2019-06-19 02:06:11.284807 8 1800.00 573.00 2373.00 \N 252 255 12 1557.0 0.0 2019-06-20 01:57:36.466613 2019-06-20 01:57:36.466613 9 1400.00 968.00 2368.00 \N 253 254 3 1098.0 0.0 2019-06-20 02:04:47.524917 2019-06-20 02:04:47.524917 8 1000.00 671.00 1671.00 \N 254 257 2 4946.0 1000.0 2019-06-21 02:07:11.672045 2019-06-21 02:07:11.672045 9 4100.00 814.00 4914.00 \N 255 256 3 4195.0 0.0 2019-06-21 02:11:26.632424 2019-06-21 02:11:26.632424 8 3100.00 616.00 3716.00 \N 256 259 12 2487.0 0.0 2019-06-22 01:56:47.042979 2019-06-22 01:56:47.042979 9 2000.00 702.00 2702.00 \N 257 258 3 2187.0 100.0 2019-06-22 02:05:40.893319 2019-06-22 02:05:40.893319 8 1600.00 722.00 2322.00 \N 258 260 3 5083.0 750.0 2019-06-23 01:58:10.594246 2019-06-23 01:58:10.594246 10 1000.00 561.00 1561.00 \N 259 261 2 2912.3 628.0 2019-06-23 02:02:16.536175 2019-06-23 02:02:16.536175 2 2000.00 986.00 2986.00 \N 260 262 3 0.0 0.0 2019-06-23 20:50:54.411708 2019-06-23 20:50:54.411708 10 0.00 561.00 561.00 \N 261 263 12 0.0 0.0 2019-06-23 20:51:31.996152 2019-06-23 20:51:31.996152 9 0.00 986.00 986.00 \N 262 264 2 0.0 0.0 2019-06-25 01:59:15.475531 2019-06-25 01:59:15.475531 9 0.00 986.00 986.00 \N 263 265 3 500.0 0.0 2019-06-25 02:08:10.935081 2019-06-25 02:08:10.935081 8 500.00 561.00 1061.00 \N 264 267 2 1199.0 520.0 2019-06-26 01:56:53.344191 2019-06-26 01:56:53.344191 9 600.00 1065.00 1665.00 \N 265 266 3 759.0 0.0 2019-06-26 02:01:58.174663 2019-06-26 02:01:58.174663 8 600.00 725.00 1325.00 \N 266 269 2 0.0 0.0 2019-06-27 01:57:38.766743 2019-06-27 01:57:38.766743 9 0.00 1065.00 1065.00 \N 267 270 2 1874.0 200.0 2019-06-28 01:58:33.45178 2019-06-28 01:58:33.45178 9 1500.00 1239.00 2739.00 \N 268 268 3 489.0 0.0 2019-06-28 02:09:17.8345 2019-06-28 02:09:17.8345 8 500.00 712.00 1212.00 \N 269 272 2 0.0 550.0 2019-06-29 02:03:04.687361 2019-06-29 02:03:04.687361 16 0.00 689.00 689.00 \N 270 271 3 1299.0 50.0 2019-06-29 02:07:20.477289 2019-06-29 02:07:20.477289 8 0.00 662.00 662.00 \N 271 273 2 3761.0 1078.0 2019-06-30 01:53:42.804062 2019-06-30 01:53:42.804062 16 1200.00 773.00 1973.00 \N 272 274 3 3326.0 900.0 2019-06-30 02:06:45.679699 2019-06-30 02:06:45.679699 15 1500.00 719.00 2219.00 \N 273 276 12 300.0 0.0 2019-06-30 20:56:00.390156 2019-06-30 20:56:00.390156 9 0.00 1073.00 1073.00 \N 274 275 3 0.0 0.0 2019-06-30 20:59:59.112271 2019-06-30 20:59:59.112271 10 0.00 719.00 719.00 \N 275 277 12 4505.0 0.0 2019-07-02 01:56:30.830247 2019-07-02 01:56:30.830247 9 2800.00 1000.00 3800.00 \N 276 278 10 0.0 0.0 2019-07-02 02:00:37.451154 2019-07-02 02:00:37.451154 8 0.00 719.00 719.00 \N 277 280 12 1199.0 0.0 2019-07-03 01:58:06.379817 2019-07-03 01:58:06.379817 16 1200.00 999.00 2199.00 \N 278 279 10 3156.3 0.0 2019-07-03 02:03:33.71454 2019-07-03 02:03:33.71454 8 1800.00 677.00 2477.00 \N 279 281 10 1407.0 0.0 2019-07-03 02:14:32.052028 2019-07-03 02:14:32.052028 8 1400.00 684.00 2084.00 \N 280 283 12 1698.0 0.0 2019-07-04 01:51:50.206934 2019-07-04 01:51:50.206934 2 1700.00 997.00 2697.00 \N 281 282 10 889.01 0.0 2019-07-04 01:58:24.54076 2019-07-04 01:58:24.54076 8 0.00 684.00 684.00 \N 282 284 12 4826.0 800.0 2019-07-05 01:58:01.729923 2019-07-05 01:58:01.729923 16 2400.00 824.00 3224.00 \N 283 285 10 0.0 50.0 2019-07-05 02:09:21.289167 2019-07-05 02:09:21.289167 8 0.00 684.00 684.00 \N 284 286 10 0.0 0.0 2019-07-05 02:10:51.69252 2019-07-05 02:10:51.69252 8 0.00 634.00 634.00 \N 285 287 2 3160.0 1099.0 2019-07-06 02:07:35.777333 2019-07-06 02:07:35.777333 7 500.00 906.00 1406.00 \N 286 288 3 1399.0 700.0 2019-07-06 02:08:07.215226 2019-07-06 02:08:07.215226 8 700.00 633.00 1333.00 \N 287 290 2 630.0 135.0 2019-07-07 01:49:01.703618 2019-07-07 01:49:01.703618 16 600.00 801.00 1401.00 \N 288 289 3 0.0 0.0 2019-07-07 01:55:01.047614 2019-07-07 01:55:01.047614 15 0.00 633.00 633.00 \N 289 291 12 0.0 0.0 2019-07-07 20:47:37.58432 2019-07-07 20:47:37.58432 2 0.00 801.00 801.00 \N 290 292 3 0.0 0.0 2019-07-07 20:58:18.08503 2019-07-07 20:58:18.08503 10 0.00 633.00 633.00 \N 291 293 2 400.0 0.0 2019-07-09 01:54:16.149368 2019-07-09 01:54:16.149368 16 400.00 801.00 1201.00 \N 292 294 10 1169.0 0.0 2019-07-09 02:04:19.647298 2019-07-09 02:04:19.647298 8 1200.00 602.00 1802.00 \N 293 295 12 3389.0 0.0 2019-07-10 01:54:57.174852 2019-07-10 01:54:57.174852 7 1500.00 1091.00 2591.00 \N 294 296 10 599.0 0.0 2019-07-10 02:05:26.160194 2019-07-10 02:05:26.160194 8 500.00 701.00 1201.00 \N 295 298 12 799.0 0.0 2019-07-11 01:57:48.477503 2019-07-11 01:57:48.477503 7 0.00 1091.00 1091.00 \N 296 297 10 0.0 0.0 2019-07-11 02:01:03.5875 2019-07-11 02:01:03.5875 8 0.00 710.00 710.00 \N 297 300 2 0.0 0.0 2019-07-12 01:50:31.023461 2019-07-12 01:50:31.023461 7 0.00 1091.00 1091.00 \N 298 299 10 299.0 100.0 2019-07-12 02:10:28.412277 2019-07-12 02:10:28.412277 8 500.00 409.00 909.00 \N 299 301 2 2778.01 550.0 2019-07-13 01:55:23.153373 2019-07-13 01:55:23.153373 7 1000.00 920.00 1920.00 \N 300 302 3 0.0 0.0 2019-07-13 02:03:09.694984 2019-07-13 02:03:09.694984 8 0.00 400.00 400.00 \N 301 304 3 1098.0 720.0 2019-07-14 01:55:48.056666 2019-07-14 01:55:48.056666 8 0.00 179.00 179.00 \N 302 303 2 1933.0 678.0 2019-07-14 02:22:41.341732 2019-07-14 02:22:41.341732 7 1500.00 520.00 2020.00 \N 303 305 3 0.0 0.0 2019-07-14 20:58:19.174772 2019-07-14 20:58:19.174772 10 0.00 379.00 379.00 \N 304 307 3 2797.0 0.0 2019-07-16 01:56:11.466966 2019-07-16 01:56:11.466966 8 2400.00 796.00 3196.00 \N 305 306 2 500.0 170.0 2019-07-16 01:56:30.783367 2019-07-16 01:56:30.783367 9 0.00 850.00 850.00 \N 306 308 10 0.0 726.0 2019-07-17 01:55:05.600638 2019-07-17 01:55:05.600638 8 0.00 70.00 70.00 \N 307 309 2 1299.0 0.0 2019-07-17 16:22:21.462785 2019-07-17 16:22:21.462785 7 1000.00 299.00 1299.00 \N 308 310 9 8140.0 0.0 2019-07-18 02:07:17.364089 2019-07-18 02:07:17.364089 7 7700.00 739.00 8439.00 \N 309 311 10 3347.0 0.0 2019-07-18 02:14:44.707794 2019-07-18 02:14:44.707794 8 1300.00 818.00 2118.00 \N 310 312 12 0.0 0.0 2019-07-19 01:55:52.174361 2019-07-19 01:55:52.174361 16 0.00 739.00 739.00 \N 311 313 10 0.0 0.0 2019-07-19 01:58:52.768158 2019-07-19 01:58:52.768158 8 0.00 818.00 818.00 \N 312 314 10 1278.0 850.0 2019-07-20 02:00:52.477748 2019-07-20 02:00:52.477748 10 700.00 594.00 1294.00 \N 313 315 2 1748.0 50.0 2019-07-20 02:09:17.703113 2019-07-20 02:09:17.703113 7 1801.00 636.00 2437.00 \N 314 317 2 5794.01 498.0 2019-07-21 01:38:30.884787 2019-07-21 01:38:30.884787 7 1500.00 687.00 2187.00 \N 315 316 3 2086.0 0.0 2019-07-21 01:57:36.350574 2019-07-21 01:57:36.350574 15 2100.00 580.00 2680.00 \N 316 319 3 579.0 0.0 2019-07-21 20:56:27.523898 2019-07-21 20:56:27.523898 10 600.00 559.00 1159.00 \N 317 318 12 2996.2 0.0 2019-07-21 21:06:27.728686 2019-07-21 21:06:27.728686 7 1200.00 585.00 1785.00 \N 318 320 2 695.0 250.0 2019-07-23 01:59:53.119554 2019-07-23 01:59:53.119554 7 500.00 530.00 1030.00 \N 319 321 10 648.0 0.0 2019-07-23 02:14:52.055903 2019-07-23 02:14:52.055903 8 400.00 808.00 1208.00 \N 320 323 12 4097.0 0.0 2019-07-24 01:56:56.057017 2019-07-24 01:56:56.057017 7 1200.00 629.00 1829.00 \N 321 322 10 1449.0 0.0 2019-07-24 02:00:50.294588 2019-07-24 02:00:50.294588 8 1200.00 757.00 1957.00 \N 322 325 12 3727.0 20.0 2019-07-25 02:01:49.275209 2019-07-25 02:01:49.275209 7 3700.00 636.00 4336.00 \N 323 324 10 1648.0 0.0 2019-07-25 02:06:33.515229 2019-07-25 02:06:33.515229 8 1600.00 806.00 2406.00 \N 324 326 10 519.2 50.0 2019-07-26 02:00:15.350449 2019-07-26 02:00:15.350449 8 500.00 776.00 1276.00 \N 325 327 2 6065.0 0.0 2019-07-26 02:06:38.030651 2019-07-26 02:06:38.030651 7 6000.00 701.00 6701.00 \N 326 329 12 5364.0 628.0 2019-07-27 01:55:02.419625 2019-07-27 01:55:02.419625 9 2500.00 799.00 3299.00 \N 327 328 10 909.0 0.0 2019-07-27 02:38:00.26544 2019-07-27 02:38:00.26544 8 1000.00 684.00 1684.00 \N 328 331 3 2676.0 0.0 2019-07-28 01:49:14.062683 2019-07-28 01:49:14.062683 15 2000.00 625.00 2625.00 \N 329 330 2 4534.0 930.0 2019-07-28 01:57:06.328561 2019-07-28 01:57:06.328561 16 2500.00 635.00 3135.00 \N 330 332 3 0.0 0.0 2019-07-28 20:52:23.001202 2019-07-28 20:52:23.001202 10 0.00 625.00 625.00 \N 331 333 12 499.0 0.0 2019-07-28 20:55:44.03133 2019-07-28 20:55:44.03133 9 500.00 634.00 1134.00 \N 332 334 9 0.0 15.0 2019-07-30 01:59:23.599341 2019-07-30 01:59:23.599341 9 0.00 634.00 634.00 FALTANTE $15 REPONER ROCIO \N 333 336 2 1948.0 0.0 2019-07-31 02:00:41.382931 2019-07-31 02:00:41.382931 9 0.00 1268.00 1268.00 \N 334 335 10 1268.0 200.0 2019-07-31 02:00:51.503192 2019-07-31 02:00:51.503192 8 1200.00 493.00 1693.00 \N 335 338 2 2737.0 50.0 2019-08-01 01:43:25.309163 2019-08-01 01:43:25.309163 2 1000.00 1056.00 2056.00 \N 336 337 3 1398.0 0.0 2019-08-01 01:59:33.090465 2019-08-01 01:59:33.090465 8 400.00 764.00 1164.00 \N 337 340 12 1299.0 50.0 2019-08-02 02:04:21.575609 2019-08-02 02:04:21.575609 9 1500.00 805.00 2305.00 \N 338 339 10 999.0 0.0 2019-08-02 02:04:23.919306 2019-08-02 02:04:23.919306 8 0.00 764.00 764.00 \N 339 341 12 4098.0 1428.0 2019-08-03 01:56:53.233722 2019-08-03 01:56:53.233722 9 500.00 976.00 1476.00 \N 340 342 3 0.0 700.0 2019-08-03 02:01:54.648357 2019-08-03 02:01:54.648357 8 0.00 568.00 568.00 \N 341 343 3 2556.0 50.0 2019-08-04 01:47:01.803259 2019-08-04 01:47:01.803259 10 400.00 607.00 1007.00 \N 342 344 2 4167.0 50.0 2019-08-04 01:52:02.830825 2019-08-04 01:52:02.830825 9 2200.00 995.00 3195.00 \N 343 345 3 0.0 0.0 2019-08-04 20:54:45.825597 2019-08-04 20:54:45.825597 10 0.00 607.00 607.00 \N 344 347 2 2248.0 0.0 2019-08-06 01:57:32.4955 2019-08-06 01:57:32.4955 9 500.00 745.00 1245.00 \N 345 346 3 0.0 0.0 2019-08-06 02:00:04.035868 2019-08-06 02:00:04.035868 8 0.00 607.00 607.00 \N 346 348 3 649.0 0.0 2019-08-07 01:54:00.784677 2019-08-07 01:54:00.784677 8 800.00 456.00 1256.00 \N 347 349 2 0.0 0.0 2019-08-07 01:56:07.988363 2019-08-07 01:56:07.988363 9 0.00 745.00 745.00 \N 348 351 3 200.0 50.0 2019-08-08 01:57:21.017233 2019-08-08 01:57:21.017233 8 0.00 606.00 606.00 \N 349 350 9 180.0 0.0 2019-08-08 01:58:45.434368 2019-08-08 01:58:45.434368 9 0.00 925.00 925.00 \N 350 353 10 0.0 0.0 2019-08-09 01:34:24.819192 2019-08-09 01:34:24.819192 8 0.00 606.00 606.00 \N 351 352 2 1583.0 370.0 2019-08-09 01:37:04.795232 2019-08-09 01:37:04.795232 7 1500.00 638.00 2138.00 \N 352 354 3 998.0 850.0 2019-08-10 01:29:00.182515 2019-08-10 01:29:00.182515 8 0.00 754.00 754.00 \N 353 355 2 2687.0 50.0 2019-08-10 01:32:32.070211 2019-08-10 01:32:32.070211 2 0.00 1007.00 1007.00 \N 354 357 2 4681.0 799.0 2019-08-11 01:58:01.012721 2019-08-11 01:58:01.012721 7 1400.00 657.00 2057.00 SE MODIFICO POR QUE SE METIO 100 PESOS MAS AL FONDO \N 355 356 3 0.0 0.0 2019-08-11 01:58:07.421716 2019-08-11 01:58:07.421716 10 0.00 754.00 754.00 \N 356 358 2 1623.0 0.0 2019-08-11 20:57:58.194304 2019-08-11 20:57:58.194304 9 1500.00 780.00 2280.00 \N 357 360 3 549.0 0.0 2019-08-13 01:01:32.542764 2019-08-13 01:01:32.542764 10 500.00 803.00 1303.00 \N 358 359 2 250.0 0.0 2019-08-13 01:06:18.255602 2019-08-13 01:06:18.255602 2 0.00 1030.00 1030.00 \N 359 361 2 2237.0 0.0 2019-08-14 00:56:50.835282 2019-08-14 00:56:50.835282 16 500.00 730.00 1230.00 \N 360 362 3 829.0 0.0 2019-08-14 01:08:15.910098 2019-08-14 01:08:15.910098 10 0.00 803.00 803.00 \N 361 363 3 4596.0 0.0 2019-08-15 01:01:47.722237 2019-08-15 01:01:47.722237 10 3700.00 699.00 4399.00 \N 362 364 2 699.0 0.0 2019-08-15 01:13:46.59128 2019-08-15 01:13:46.59128 16 900.00 779.00 1679.00 SE VENDIO $250 DE UN BLAZER QUE NO ESTABA EN EL SISTEMA \N 363 364 2 699.0 0.0 2019-08-15 01:13:46.695745 2019-08-15 01:13:46.695745 16 900.00 779.00 1679.00 SE VENDIO $250 DE UN BLAZER QUE NO ESTABA EN EL SISTEMA \N 364 364 2 699.0 0.0 2019-08-15 01:13:46.788122 2019-08-15 01:13:46.788122 16 900.00 779.00 1679.00 SE VENDIO $250 DE UN BLAZER QUE NO ESTABA EN EL SISTEMA \N 365 365 3 0.0 200.0 2019-08-16 00:55:58.458574 2019-08-16 00:55:58.458574 10 0.00 500.00 500.00 \N 366 366 2 1059.0 1000.0 2019-08-16 01:07:36.253258 2019-08-16 01:07:36.253258 2 0.00 339.00 339.00 \N 367 367 2 2036.99 160.0 2019-08-17 01:17:43.704222 2019-08-17 01:17:43.704222 2 1000.00 547.00 1547.00 \N 368 368 3 0.0 50.0 2019-08-17 01:33:49.748555 2019-08-17 01:33:49.748555 8 0.00 450.00 450.00 \N 369 369 3 0.0 50.0 2019-08-18 01:03:45.803624 2019-08-18 01:03:45.803624 13 0.00 400.00 400.00 \N 370 370 2 4530.0 1618.0 2019-08-18 01:43:40.629834 2019-08-18 01:43:40.629834 2 0.00 633.00 633.00 \N 371 371 2 999.0 0.0 2019-08-18 21:01:09.138484 2019-08-18 21:01:09.138484 7 1000.00 632.00 1632.00 \N 372 373 3 1249.0 200.0 2019-08-20 00:58:04.929023 2019-08-20 00:58:04.929023 8 1000.00 225.00 1225.00 200 DE PAQUETERIA \N 373 372 2 982.0 0.0 2019-08-20 01:14:44.231921 2019-08-20 01:14:44.231921 7 0.00 632.00 632.00 FUE TRANSFERENCIA LA VENTA DE BLANCA BODYS \N 374 374 10 557.1 0.0 2019-08-21 01:03:50.578318 2019-08-21 01:03:50.578318 8 0.00 783.00 783.00 \N 375 375 2 2645.99 0.0 2019-08-22 01:24:21.250239 2019-08-22 01:24:21.250239 2 2500.00 778.00 3278.00 \N 376 376 3 829.0 0.0 2019-08-22 01:41:46.128377 2019-08-22 01:41:46.128377 10 500.00 283.00 783.00 \N 377 377 2 1488.0 50.0 2019-08-23 00:49:29.932435 2019-08-23 00:49:29.932435 2 1500.00 716.00 2216.00 \N 378 378 3 639.0 0.0 2019-08-23 00:55:00.26451 2019-08-23 00:55:00.26451 15 500.00 422.00 922.00 \N 379 380 2 700.0 350.0 2019-08-24 00:51:53.092184 2019-08-24 00:51:53.092184 2 500.00 566.00 1066.00 \N 380 379 3 500.0 500.0 2019-08-24 00:52:57.131746 2019-08-24 00:52:57.131746 10 0.00 420.00 420.00 \N 381 381 3 1896.0 0.0 2019-08-25 01:05:17.874563 2019-08-25 01:05:17.874563 10 1800.00 516.00 2316.00 \N 382 382 2 1636.0 0.0 2019-08-25 01:10:40.88533 2019-08-25 01:10:40.88533 2 1000.00 553.00 1553.00 \N 383 383 3 0.0 0.0 2019-08-27 00:54:42.646407 2019-08-27 00:54:42.646407 15 0.00 516.00 516.00 \N 384 384 2 699.0 0.0 2019-08-27 00:55:36.88631 2019-08-27 00:55:36.88631 2 500.00 752.00 1252.00 \N 385 385 3 0.0 100.0 2019-08-28 00:33:15.313302 2019-08-28 00:33:15.313302 13 0.00 416.00 416.00 \N 386 386 2 0.0 0.0 2019-08-28 00:53:39.213922 2019-08-28 00:53:39.213922 2 0.00 752.00 752.00 \N 387 387 18 699.0 0.0 2019-08-28 04:03:51.701882 2019-08-28 04:03:51.701882 19 0.00 1363.00 1363.00 \N 388 388 10 1398.0 0.0 2019-08-29 00:57:05.434099 2019-08-29 00:57:05.434099 10 1088.00 726.00 1814.00 \N 389 389 2 0.0 0.0 2019-08-29 00:58:07.09908 2019-08-29 00:58:07.09908 2 0.00 752.00 752.00 \N 390 391 2 0.0 0.0 2019-08-30 01:07:46.609052 2019-08-30 01:07:46.609052 16 0.00 752.00 752.00 \N 391 390 10 1638.0 200.0 2019-08-30 01:16:49.109315 2019-08-30 01:16:49.109315 10 1650.00 514.00 2164.00 \N 392 393 2 2467.0 2120.0 2019-08-31 00:56:13.408815 2019-08-31 00:56:13.408815 2 0.00 1099.00 1099.00 \N 393 392 10 1398.0 0.0 2019-08-31 00:58:03.74323 2019-08-31 00:58:03.74323 10 1500.00 415.00 1915.00 \N 394 394 18 600.0 0.0 2019-08-31 05:30:53.233878 2019-08-31 05:30:53.233878 19 1300.00 663.00 1963.00 \N 395 396 20 717.0 0.0 2019-09-01 00:57:37.930962 2019-09-01 00:57:37.930962 10 900.00 445.50 1345.50 \N 396 395 2 7364.0 1348.0 2019-09-01 01:22:26.765393 2019-09-01 01:22:26.765393 2 3600.00 717.00 4317.00 \N 397 397 18 5402.0 0.0 2019-09-01 03:28:08.118655 2019-09-01 03:28:08.118655 19 5400.00 665.00 6065.00 \N 398 399 20 210.0 0.0 2019-09-01 20:53:28.708205 2019-09-01 20:53:28.708205 10 210.00 445.50 655.50 \N 399 398 2 0.0 0.0 2019-09-01 20:55:53.623038 2019-09-01 20:55:53.623038 7 0.00 717.00 717.00 \N 400 400 10 1038.0 0.0 2019-09-03 01:31:54.373403 2019-09-03 01:31:54.373403 10 500.00 983.50 1483.50 \N 401 401 2 6098.0 0.0 2019-09-03 01:40:09.956407 2019-09-03 01:40:09.956407 7 4500.00 922.00 5422.00 \N 402 403 2 1197.0 0.0 2019-09-04 00:50:04.91122 2019-09-04 00:50:04.91122 7 0.00 922.00 922.00 \N 403 402 8 1979.0 100.0 2019-09-04 01:01:01.295749 2019-09-04 01:01:01.295749 8 500.00 883.50 1383.50 \N 404 404 21 0.0 0.0 2019-09-04 02:01:05.692373 2019-09-04 02:01:05.692373 19 0.00 1165.00 1165.00 SE AGREGA AL FONDO $500.00 \N 405 406 8 1660.0 0.0 2019-09-05 00:15:08.591333 2019-09-05 00:15:08.591333 8 1000.00 943.50 1943.50 \N 406 405 2 250.0 0.0 2019-09-05 01:06:10.954951 2019-09-05 01:06:10.954951 16 0.00 1172.00 1172.00 \N 407 407 20 699.0 0.0 2019-09-06 00:58:18.136242 2019-09-06 00:58:18.136242 8 700.00 942.50 1642.50 \N 408 408 2 2298.0 0.0 2019-09-06 00:58:41.742253 2019-09-06 00:58:41.742253 7 1000.00 871.00 1871.00 \N 409 411 9 1757.0 1000.0 2019-09-07 01:10:06.088325 2019-09-07 01:10:06.088325 7 0.00 171.00 171.00 FALTANTE $50 \N 410 410 8 1097.99 850.0 2019-09-07 01:19:58.776497 2019-09-07 01:19:58.776497 8 500.00 704.50 1204.50 \N 411 409 21 2248.0 816.0 2019-09-07 01:51:44.230294 2019-09-07 01:51:44.230294 19 0.00 1048.00 1048.00 \N 412 412 9 3416.0 0.0 2019-09-08 01:05:59.46805 2019-09-08 01:05:59.46805 7 2824.00 763.00 3587.00 \N 413 414 8 1538.0 0.0 2019-09-08 01:12:35.221194 2019-09-08 01:12:35.221194 8 1339.50 903.00 2242.50 \N 414 413 21 3096.0 0.0 2019-09-08 02:10:42.07893 2019-09-08 02:10:42.07893 19 3000.00 1117.00 4117.00 \N 415 416 10 0.0 20.0 2019-09-10 01:05:29.520887 2019-09-10 01:05:29.520887 8 0.00 944.00 944.00 \N 416 415 2 699.0 0.0 2019-09-10 01:08:37.676428 2019-09-10 01:08:37.676428 2 700.00 762.00 1462.00 \N 417 417 18 4081.0 0.0 2019-09-10 03:10:59.636521 2019-09-10 03:10:59.636521 18 3444.00 934.00 4378.00 \N 418 420 2 500.0 10.0 2019-09-11 01:12:51.754433 2019-09-11 01:12:51.754433 2 500.00 752.00 1252.00 \N 419 419 10 879.0 0.0 2019-09-11 01:37:22.70307 2019-09-11 01:37:22.70307 10 500.00 1024.00 1524.00 \N 420 418 18 979.01 0.0 2019-09-11 01:59:24.289633 2019-09-11 01:59:24.289633 18 693.00 1220.01 1913.01 \N 421 422 2 0.0 0.0 2019-09-12 00:58:32.095228 2019-09-12 00:58:32.095228 2 0.00 752.00 752.00 \N 422 421 8 1947.3 520.0 2019-09-12 01:14:43.499204 2019-09-12 01:14:43.499204 8 1600.00 851.30 2451.30 \N 423 423 21 599.0 100.0 2019-09-12 02:07:37.526928 2019-09-12 02:07:37.526928 19 600.00 1119.00 1719.00 \N 424 424 8 1149.0 0.0 2019-09-13 01:04:14.024852 2019-09-13 01:04:14.024852 8 1000.00 1000.30 2000.30 \N 425 425 2 1767.0 700.0 2019-09-13 01:30:16.955096 2019-09-13 01:30:16.955096 2 700.00 1119.00 1819.00 \N 426 426 23 508.0 0.0 2019-09-13 02:03:40.307552 2019-09-13 02:03:40.307552 19 500.00 1127.00 1627.00 \N 427 427 8 3352.0 0.0 2019-09-14 01:39:50.612425 2019-09-14 01:39:50.612425 10 1200.00 1085.30 2285.30 \N 428 429 8 625.0 0.0 2019-09-14 01:59:36.193625 2019-09-14 01:59:36.193625 8 625.00 1085.30 1710.30 \N 429 428 2 2882.0 440.0 2019-09-14 02:05:14.99963 2019-09-14 02:05:14.99963 7 1500.00 762.00 2262.00 \N 430 430 2 6693.0 528.0 2019-09-15 01:16:59.960332 2019-09-15 01:16:59.960332 7 5250.00 1058.00 6308.00 $5000 ENTREGUE A SAM $250 ARETES PAGADOS CON TARJETA \N 431 432 8 7512.0 0.0 2019-09-15 01:31:50.359498 2019-09-15 01:31:50.359498 8 7500.00 1096.00 8596.00 \N 432 431 23 3598.0 0.0 2019-09-15 02:07:36.357606 2019-09-15 02:07:36.357606 23 3700.00 1025.00 4725.00 \N 433 433 9 679.0 0.0 2019-09-15 20:59:39.555078 2019-09-15 20:59:39.555078 7 700.00 1037.00 1737.00 \N 434 435 10 625.0 0.0 2019-09-15 21:10:53.437898 2019-09-15 21:10:53.437898 8 0.00 1096.00 1096.00 \N 435 434 23 1199.0 0.0 2019-09-18 01:06:34.195964 2019-09-18 01:06:34.195964 23 500.00 1025.00 1525.00 los 500 pesos se los llebo samantha \N 436 436 2 1600.0 0.0 2019-09-18 01:47:32.263956 2019-09-18 01:47:32.263956 2 1900.00 737.00 2637.00 \N 437 438 2 3106.0 0.0 2019-09-19 01:27:56.311207 2019-09-19 01:27:56.311207 2 1400.00 1144.00 2544.00 \N 438 437 10 0.0 0.0 2019-09-19 01:31:45.957629 2019-09-19 01:31:45.957629 8 0.00 1096.00 1096.00 \N 439 439 23 0.0 0.0 2019-09-19 01:51:30.349474 2019-09-19 01:51:30.349474 18 0.00 1025.00 1025.00 \N 440 440 2 1998.0 500.0 2019-09-20 00:54:47.772654 2019-09-20 00:54:47.772654 7 1500.00 1142.00 2642.00 \N 441 442 21 200.0 0.0 2019-09-20 01:13:14.535878 2019-09-20 01:13:14.535878 19 0.00 1225.00 1225.00 \N 442 443 2 2237.0 0.0 2019-09-21 01:25:13.397173 2019-09-21 01:25:13.397173 25 1000.00 781.00 1781.00 \N 443 441 10 2218.0 0.0 2019-09-21 01:30:14.583209 2019-09-21 01:30:14.583209 8 3000.00 363.00 3363.00 \N 444 444 23 1498.0 0.0 2019-09-21 02:00:07.992541 2019-09-21 02:00:07.992541 23 700.00 525.00 1225.00 \N 445 446 2 4209.0 738.0 2019-09-22 01:28:26.434479 2019-09-22 01:28:26.434479 25 1400.00 781.00 2181.00 \N 446 445 8 2298.0 1580.0 2019-09-22 01:30:04.595768 2019-09-22 01:30:04.595768 8 600.00 686.00 1286.00 \N 447 447 23 1378.0 0.0 2019-09-22 01:59:00.233185 2019-09-22 01:59:00.233185 23 0.00 1225.00 1225.00 \N 448 449 25 0.0 0.0 2019-09-22 21:02:47.709209 2019-09-22 21:02:47.709209 25 0.00 781.00 781.00 \N 449 448 23 1599.0 0.0 2019-09-22 21:59:33.409488 2019-09-22 21:59:33.409488 23 1599.00 1225.00 2824.00 \N 450 450 2 0.0 0.0 2019-09-24 01:31:52.682349 2019-09-24 01:31:52.682349 9 0.00 781.00 781.00 \N 451 451 8 5063.0 0.0 2019-09-24 01:36:53.561697 2019-09-24 01:36:53.561697 8 3740.00 1370.00 5110.00 \N 452 452 2 2399.01 0.0 2019-09-25 01:30:40.071247 2019-09-25 01:30:40.071247 2 0.00 781.00 781.00 \N 453 454 10 464.25 0.0 2019-09-25 01:34:53.070066 2019-09-25 01:34:53.070066 10 20.00 1350.00 1370.00 \N 454 455 2 969.0 0.0 2019-09-26 01:24:50.060773 2019-09-26 01:24:50.060773 25 1000.00 750.00 1750.00 \N 455 453 23 0.0 0.0 2019-09-26 01:52:46.27573 2019-09-26 01:52:46.27573 18 0.00 1225.00 1225.00 \N 456 457 25 6108.0 0.0 2019-09-27 01:28:40.79643 2019-09-27 01:28:40.79643 25 1000.00 849.00 1849.00 \N 457 458 8 1469.0 0.0 2019-09-27 01:39:03.431132 2019-09-27 01:39:03.431132 8 1500.00 1320.00 2820.00 \N 458 456 18 3389.0 200.0 2019-09-27 02:03:12.571323 2019-09-27 02:03:12.571323 18 2200.00 1177.00 3377.00 SE SACO MAL UN APARTADO DE BRENDA, QUEDO A FAVOR 102 PERO SI SE LE DIO EL CAMBIO BIEN \N 459 461 2 1470.0 25.0 2019-09-28 01:43:20.052261 2019-09-28 01:43:20.052261 7 0.00 744.00 744.00 SE SACO 280 DE ARETES PAGADOS CON TARJETA \N 460 459 23 2497.0 0.0 2019-09-28 01:57:43.026342 2019-09-28 01:57:43.026342 23 2000.00 1074.00 3074.00 \N 461 460 8 4448.0 0.0 2019-09-28 01:59:16.839096 2019-09-28 01:59:16.839096 10 700.00 1039.00 1739.00 \N 462 464 10 0.0 0.0 2019-09-29 01:36:27.094383 2019-09-29 01:36:27.094383 8 0.00 1039.00 1039.00 \N 463 462 2 2356.0 1353.0 2019-09-29 01:43:52.064974 2019-09-29 01:43:52.064974 25 1000.00 747.00 1747.00 \N 464 463 23 2036.0 1200.0 2019-09-29 02:00:31.795523 2019-09-29 02:00:31.795523 23 200.00 1056.00 1256.00 \N 465 465 25 717.99 0.0 2019-09-29 21:00:36.353927 2019-09-29 21:00:36.353927 25 0.00 747.00 747.00 \N 466 466 2 984.0 0.0 2019-09-30 20:14:49.335857 2019-09-30 20:14:49.335857 9 900.00 831.00 1731.00 \N 467 467 2 2014.0 0.0 2019-10-02 01:27:39.705368 2019-10-02 01:27:39.705368 25 1800.00 1045.00 2845.00 \N 468 468 10 1966.0 0.0 2019-10-02 01:33:02.935057 2019-10-02 01:33:02.935057 8 500.00 838.00 1338.00 \N 469 469 18 650.0 0.0 2019-10-02 02:02:48.122586 2019-10-02 02:02:48.122586 18 500.00 1206.00 1706.00 \N 470 471 2 6241.0 0.0 2019-10-03 01:31:42.443997 2019-10-03 01:31:42.443997 25 4000.00 893.00 4893.00 \N 471 472 10 0.0 0.0 2019-10-03 01:38:57.890044 2019-10-03 01:38:57.890044 8 0.00 838.00 838.00 \N 472 470 18 700.0 0.0 2019-10-03 01:58:20.785247 2019-10-03 01:58:20.785247 18 700.00 1206.00 1906.00 \N 473 473 2 2717.0 0.0 2019-10-04 01:32:34.00141 2019-10-04 01:32:34.00141 25 1100.00 1211.00 2311.00 \N 474 475 8 250.0 0.0 2019-10-04 01:34:53.755245 2019-10-04 01:34:53.755245 10 0.00 838.00 838.00 \N 475 474 23 2168.0 0.0 2019-10-04 02:00:05.467402 2019-10-04 02:00:05.467402 23 1100.00 1205.00 2305.00 \N 476 477 2 0.0 0.0 2019-10-05 01:18:20.332608 2019-10-05 01:18:20.332608 2 0.00 1211.00 1211.00 \N 477 478 8 5551.0 0.0 2019-10-05 01:31:14.14355 2019-10-05 01:31:14.14355 8 2783.00 1040.00 3823.00 \N 478 476 23 3825.0 0.0 2019-10-05 02:09:16.354977 2019-10-05 02:09:16.354977 19 1200.00 1253.00 2453.00 \N 479 481 8 1927.0 0.0 2019-10-06 01:31:12.174259 2019-10-06 01:31:12.174259 8 700.00 1109.00 1809.00 \N 480 480 2 4766.0 1328.0 2019-10-06 01:38:08.692424 2019-10-06 01:38:08.692424 25 2400.00 781.00 3181.00 \N 481 479 23 1759.0 0.0 2019-10-06 02:01:12.571686 2019-10-06 02:01:12.571686 23 1000.00 1012.00 2012.00 \N 482 483 25 300.0 0.0 2019-10-06 20:47:15.940479 2019-10-06 20:47:15.940479 25 300.00 781.00 1081.00 \N 483 484 10 799.0 0.0 2019-10-06 20:49:02.219353 2019-10-06 20:49:02.219353 8 800.00 1108.00 1908.00 \N 484 482 23 1299.0 1200.0 2019-10-06 22:02:24.762162 2019-10-06 22:02:24.762162 23 100.00 1011.00 1111.00 \N 485 485 8 180.0 0.0 2019-10-08 01:12:44.856759 2019-10-08 01:12:44.856759 8 0.00 1288.00 1288.00 \N 486 486 2 919.0 0.0 2019-10-08 01:29:20.407379 2019-10-08 01:29:20.407379 7 1000.00 700.00 1700.00 \N 487 487 23 350.0 0.0 2019-10-08 01:59:58.589528 2019-10-08 01:59:58.589528 23 0.00 1011.00 1011.00 \N 488 489 23 648.0 0.0 2019-10-09 00:56:15.514666 2019-10-09 00:56:15.514666 18 500.00 1159.00 1659.00 \N 489 488 2 0.0 0.0 2019-10-09 01:27:44.505544 2019-10-09 01:27:44.505544 2 0.00 700.00 700.00 \N 490 490 10 1847.0 0.0 2019-10-10 01:54:36.026203 2019-10-10 01:54:36.026203 10 1700.00 1236.00 2936.00 \N 491 491 2 817.99 0.0 2019-10-10 01:58:00.115132 2019-10-10 01:58:00.115132 9 0.00 700.00 700.00 \N 492 492 23 1599.0 0.0 2019-10-10 02:00:07.180647 2019-10-10 02:00:07.180647 23 1600.00 1158.00 2758.00 \N 493 495 2 999.0 0.0 2019-10-11 01:24:48.227778 2019-10-11 01:24:48.227778 25 1000.00 699.00 1699.00 \N 494 493 23 300.0 0.0 2019-10-11 01:58:46.304793 2019-10-11 01:58:46.304793 23 300.00 1158.00 1458.00 \N 495 494 10 3166.0 0.0 2019-10-11 02:03:11.499751 2019-10-11 02:03:11.499751 8 3100.00 1302.00 4402.00 \N 496 497 2 4974.99 100.0 2019-10-12 01:24:04.190584 2019-10-12 01:24:04.190584 7 2100.00 697.00 2797.00 \N 497 496 8 3417.61 0.0 2019-10-12 01:39:44.957621 2019-10-12 01:39:44.957621 8 2130.00 1361.31 3491.31 \N 498 498 21 2116.99 0.0 2019-10-12 02:09:16.20719 2019-10-12 02:09:16.20719 21 500.00 1055.00 1555.00 \N 499 500 2 901.0 1168.0 2019-10-13 01:23:43.940356 2019-10-13 01:23:43.940356 2 0.00 430.00 430.00 \N 500 499 24 2386.0 0.0 2019-10-13 01:26:17.105373 2019-10-13 01:26:17.105373 10 2386.00 1308.00 3694.00 EL FONDO QUE APARECE EN SISTEMA NO COINCIDE EN LO QUE HAY EN CAJA.....FALTAN 53 PESOS \N 501 501 21 1199.0 0.0 2019-10-13 02:41:36.476691 2019-10-13 02:41:36.476691 21 1200.00 1054.00 2254.00 \N 502 504 25 500.0 0.0 2019-10-13 21:05:46.21572 2019-10-13 21:05:46.21572 25 0.00 930.00 930.00 \N 503 503 8 339.0 0.0 2019-10-13 21:24:26.967282 2019-10-13 21:24:26.967282 10 500.00 1147.00 1647.00 \N 504 502 23 1000.0 400.0 2019-10-15 00:59:40.511823 2019-10-15 00:59:40.511823 23 0.00 654.00 654.00 \N 505 506 8 1987.0 0.0 2019-10-15 01:12:53.793614 2019-10-15 01:12:53.793614 10 1500.00 1134.00 2634.00 \N 506 505 2 650.0 0.0 2019-10-15 01:17:02.258525 2019-10-15 01:17:02.258525 25 1000.00 580.00 1580.00 \N 507 508 8 4665.0 0.0 2019-10-16 00:47:43.371968 2019-10-16 00:47:43.371968 10 3187.00 1145.00 4332.00 \N 508 507 2 1436.0 0.0 2019-10-16 01:20:25.65082 2019-10-16 01:20:25.65082 2 1500.00 516.00 2016.00 \N 509 509 23 1898.0 0.0 2019-10-17 01:15:20.631402 2019-10-17 01:15:20.631402 23 500.00 654.00 1154.00 \N 510 510 2 1417.0 0.0 2019-10-17 01:26:52.576075 2019-10-17 01:26:52.576075 25 400.00 964.00 1364.00 \N 511 511 8 589.0 0.0 2019-10-17 01:34:22.231719 2019-10-17 01:34:22.231719 10 0.00 1145.00 1145.00 \N 512 512 23 4827.0 0.0 2019-10-17 22:47:15.25737 2019-10-17 22:47:15.25737 23 3900.00 681.00 4581.00 \N 513 513 8 1148.0 0.0 2019-10-19 16:32:38.365272 2019-10-19 16:32:38.365272 10 0.00 1145.00 1145.00 \N 514 514 2 5083.0 0.0 2019-10-20 01:19:49.607711 2019-10-20 01:19:49.607711 25 4600.00 1128.00 5728.00 \N 515 516 26 7174.0 100.0 2019-10-20 01:42:00.617902 2019-10-20 01:42:00.617902 26 0.00 1294.00 1294.00 \N 516 515 23 3298.0 0.0 2019-10-20 01:57:07.778389 2019-10-20 01:57:07.778389 23 3300.00 679.00 3979.00 \N 517 518 25 4377.0 0.0 2019-10-20 21:06:06.164121 2019-10-20 21:06:06.164121 25 2400.00 1206.00 3606.00 \N 518 519 2 2036.99 400.0 2019-10-22 01:39:05.058728 2019-10-22 01:39:05.058728 25 500.00 1125.00 1625.00 \N 519 520 26 995.0 0.0 2019-10-22 01:47:36.817807 2019-10-22 01:47:36.817807 26 500.00 1062.00 1562.00 \N 520 517 23 2799.0 0.0 2019-10-22 01:56:43.528931 2019-10-22 01:56:43.528931 23 2800.00 678.00 3478.00 \N 521 522 2 1100.0 0.0 2019-10-23 01:17:37.309119 2019-10-23 01:17:37.309119 2 500.00 1125.00 1625.00 \N 522 523 27 1797.0 0.0 2019-10-23 01:25:20.031249 2019-10-23 01:25:20.031249 15 2000.00 859.00 2859.00 \N 523 525 2 2037.0 35.0 2019-10-24 01:25:54.713654 2019-10-24 01:25:54.713654 2 2000.00 1127.00 3127.00 \N 524 525 2 2037.0 35.0 2019-10-24 01:25:54.842758 2019-10-24 01:25:54.842758 2 2000.00 1127.00 3127.00 \N 525 525 2 2037.0 35.0 2019-10-24 01:25:54.959047 2019-10-24 01:25:54.959047 2 2000.00 1127.00 3127.00 \N 526 524 27 2429.0 0.0 2019-10-24 01:37:05.136343 2019-10-24 01:37:05.136343 15 1000.00 988.00 1988.00 \N 527 521 23 3199.0 0.0 2019-10-24 02:00:27.085652 2019-10-24 02:00:27.085652 23 2200.00 677.00 2877.00 \N 528 527 26 1958.0 0.0 2019-10-25 01:31:58.870373 2019-10-25 01:31:58.870373 15 1400.00 847.00 2247.00 \N 529 526 23 1199.0 0.0 2019-10-25 02:11:35.360444 2019-10-25 02:11:35.360444 19 0.00 1478.00 1478.00 \N 530 528 2 2675.0 0.0 2019-10-26 01:45:20.692265 2019-10-26 01:45:20.692265 2 1500.00 1225.00 2725.00 \N 531 529 27 1888.0 0.0 2019-10-26 01:49:26.192043 2019-10-26 01:49:26.192043 15 700.00 2026.00 2726.00 \N 532 530 21 1848.0 0.0 2019-10-26 02:01:42.847622 2019-10-26 02:01:42.847622 21 2000.00 1324.00 3324.00 \N 533 533 27 0.0 970.0 2019-10-27 01:32:28.754017 2019-10-27 01:32:28.754017 27 0.00 1056.00 1056.00 \N 534 532 2 2667.0 1328.0 2019-10-27 01:46:01.28932 2019-10-27 01:46:01.28932 2 1000.00 695.00 1695.00 \N 535 531 23 2698.0 0.0 2019-10-27 01:56:59.204936 2019-10-27 01:56:59.204936 23 2700.00 1322.00 4022.00 \N 536 535 26 3001.0 0.0 2019-10-27 22:09:22.352408 2019-10-27 22:09:22.352408 26 3000.00 1057.00 4057.00 \N 537 537 2 2798.0 0.0 2019-10-29 02:40:15.060256 2019-10-29 02:40:15.060256 2 1500.00 794.00 2294.00 \N 538 536 27 2398.0 0.0 2019-10-29 03:03:20.935147 2019-10-29 03:03:20.935147 15 2500.00 955.00 3455.00 \N 539 534 21 1777.0 500.0 2019-10-29 03:03:41.230583 2019-10-29 03:03:41.230583 21 0.00 1322.00 1322.00 \N 540 539 2 1198.0 0.0 2019-10-30 02:58:15.263804 2019-10-30 02:58:15.263804 2 1000.00 992.00 1992.00 \N 541 540 26 1298.0 0.0 2019-10-30 03:02:04.676121 2019-10-30 03:02:04.676121 15 1000.00 640.00 1640.00 \N 542 538 23 0.0 0.0 2019-10-30 03:03:23.277692 2019-10-30 03:03:23.277692 21 0.00 1322.00 1322.00 \N 543 543 27 1473.0 0.0 2019-10-31 03:00:43.730458 2019-10-31 03:00:43.730458 15 1000.00 1023.00 2023.00 \N 544 541 2 228.0 0.0 2019-10-31 03:02:06.478826 2019-10-31 03:02:06.478826 2 400.00 820.00 1220.00 \N 545 542 23 589.0 160.0 2019-10-31 03:16:11.792086 2019-10-31 03:16:11.792086 21 700.00 1051.00 1751.00 \N 546 546 2 5724.0 0.0 2019-11-01 02:48:13.534759 2019-11-01 02:48:13.534759 2 5000.00 975.00 5975.00 \N 547 545 27 3344.0 0.0 2019-11-01 02:59:28.326521 2019-11-01 02:59:28.326521 15 3200.00 1157.00 4357.00 \N 548 544 23 548.0 0.0 2019-11-01 03:06:26.5312 2019-11-01 03:06:26.5312 21 500.00 1099.00 1599.00 \N 549 549 2 5683.0 0.0 2019-11-02 02:48:01.375285 2019-11-02 02:48:01.375285 2 4000.00 1059.00 5059.00 \N 550 547 23 2996.0 0.0 2019-11-02 02:55:47.059906 2019-11-02 02:55:47.059906 23 1500.00 1067.00 2567.00 \N 551 548 27 1438.0 0.0 2019-11-02 03:01:27.284961 2019-11-02 03:01:27.284961 15 1500.00 785.00 2285.00 \N 552 552 2 1799.0 928.0 2019-11-02 23:06:57.337788 2019-11-02 23:06:57.337788 25 1500.00 430.00 1930.00 \N 553 551 26 2317.0 900.0 2019-11-02 23:10:40.720853 2019-11-02 23:10:40.720853 26 0.00 844.00 844.00 \N 554 553 27 300.0 0.0 2019-11-03 22:08:33.178495 2019-11-03 22:08:33.178495 27 0.00 855.00 855.00 \N 555 550 23 1597.0 380.0 2019-11-03 22:55:43.385554 2019-11-03 22:55:43.385554 23 1500.00 784.00 2284.00 \N 556 556 2 3149.0 0.0 2019-11-05 02:32:41.030721 2019-11-05 02:32:41.030721 2 2700.00 879.00 3579.00 \N 557 554 27 0.0 0.0 2019-11-05 02:50:40.647069 2019-11-05 02:50:40.647069 27 0.00 855.00 855.00 \N 558 555 21 3397.0 0.0 2019-11-05 03:14:03.984996 2019-11-05 03:14:03.984996 21 1700.00 981.00 2681.00 \N 559 558 2 599.0 0.0 2019-11-06 02:44:37.796649 2019-11-06 02:44:37.796649 25 1000.00 478.00 1478.00 \N 560 559 26 250.0 0.0 2019-11-06 02:58:44.726546 2019-11-06 02:58:44.726546 26 0.00 1096.00 1096.00 \N 561 561 2 1000.0 0.0 2019-11-07 02:49:38.52889 2019-11-07 02:49:38.52889 2 0.00 678.00 678.00 \N 562 560 26 4045.0 0.0 2019-11-07 03:01:17.358367 2019-11-07 03:01:17.358367 26 4100.00 1041.00 5141.00 \N 563 557 23 2748.0 0.0 2019-11-07 03:06:29.314695 2019-11-07 03:06:29.314695 19 3000.00 729.00 3729.00 \N 564 563 26 3035.0 0.0 2019-11-08 01:59:21.151258 2019-11-08 01:59:21.151258 26 3400.00 676.00 4076.00 \N 565 564 2 0.0 0.0 2019-11-08 02:11:13.786488 2019-11-08 02:11:13.786488 2 0.00 678.00 678.00 \N 566 562 23 1224.0 0.0 2019-11-08 02:53:46.405675 2019-11-08 02:53:46.405675 23 1200.00 753.00 1953.00 \N 567 566 2 1088.0 0.0 2019-11-09 02:35:22.381082 2019-11-09 02:35:22.381082 2 0.00 977.00 977.00 \N 568 567 23 2699.0 0.0 2019-11-09 02:55:52.585741 2019-11-09 02:55:52.585741 23 2700.00 752.00 3452.00 \N 569 565 27 849.0 0.0 2019-11-09 02:57:04.60626 2019-11-09 02:57:04.60626 15 1000.00 525.00 1525.00 \N 570 570 2 4036.0 1328.0 2019-11-10 02:52:47.120184 2019-11-10 02:52:47.120184 2 2810.00 875.00 3685.00 RETIRE $2500, $310 SON DE UNOS ARETES COBRADOS CON LA TERMINAL \N 571 568 26 2807.0 700.0 2019-11-10 03:01:46.958143 2019-11-10 03:01:46.958143 15 2000.00 632.00 2632.00 \N 572 569 23 0.0 40.0 2019-11-10 03:08:05.191387 2019-11-10 03:08:05.191387 21 0.00 712.00 712.00 \N 573 573 25 3907.0 0.0 2019-11-10 22:20:33.588306 2019-11-10 22:20:33.588306 25 0.00 855.00 855.00 \N 574 572 26 499.0 0.0 2019-11-10 22:28:25.218014 2019-11-10 22:28:25.218014 26 500.00 639.00 1139.00 \N 575 574 2 3383.49 0.0 2019-11-12 02:55:57.178634 2019-11-12 02:55:57.178634 2 1600.00 840.00 2440.00 \N 576 575 27 200.0 0.0 2019-11-12 03:00:09.043158 2019-11-12 03:00:09.043158 15 0.00 839.00 839.00 \N 577 571 21 500.0 80.0 2019-11-12 03:07:19.806894 2019-11-12 03:07:19.806894 19 0.00 1132.00 1132.00 \N 578 577 2 3235.0 0.0 2019-11-13 02:51:13.078154 2019-11-13 02:51:13.078154 25 900.00 919.00 1819.00 \N 579 576 23 1698.0 0.0 2019-11-13 02:53:48.208084 2019-11-13 02:53:48.208084 23 800.00 1131.00 1931.00 \N 580 578 26 459.0 0.0 2019-11-13 02:57:41.290834 2019-11-13 02:57:41.290834 26 500.00 794.00 1294.00 \N 581 580 2 8780.99 0.0 2019-11-14 02:53:53.834505 2019-11-14 02:53:53.834505 9 2000.00 1010.00 3010.00 \N 582 581 27 699.0 0.0 2019-11-14 03:00:52.460183 2019-11-14 03:00:52.460183 10 1000.00 493.00 1493.00 \N 583 579 21 4944.0 50.0 2019-11-14 03:18:34.445988 2019-11-14 03:18:34.445988 21 5000.00 1025.00 6025.00 \N 584 582 23 1268.0 0.0 2019-11-15 02:54:28.000984 2019-11-15 02:54:28.000984 23 1300.00 993.00 2293.00 \N 585 584 2 0.0 0.0 2019-11-15 02:58:43.594906 2019-11-15 02:58:43.594906 2 0.00 1010.00 1010.00 \N 586 583 27 2446.0 0.0 2019-11-15 03:03:50.108216 2019-11-15 03:03:50.108216 26 2500.00 431.00 2931.00 \N 587 587 2 2455.0 1378.0 2019-11-16 02:51:42.974404 2019-11-16 02:51:42.974404 2 1200.00 887.00 2087.00 \N 588 585 23 7526.0 0.0 2019-11-16 02:53:44.084716 2019-11-16 02:53:44.084716 23 7500.00 1019.00 8519.00 \N 589 586 27 5513.0 0.0 2019-11-16 02:58:43.548908 2019-11-16 02:58:43.548908 15 4500.00 1444.00 5944.00 \N 590 589 2 4799.0 0.0 2019-11-17 02:47:23.621382 2019-11-17 02:47:23.621382 2 3500.00 757.00 4257.00 \N 591 590 27 3143.99 900.0 2019-11-17 02:56:51.798158 2019-11-17 02:56:51.798158 15 2500.00 1187.99 3687.99 \N 592 588 23 4774.99 1036.0 2019-11-17 03:02:37.990192 2019-11-17 03:02:37.990192 19 2500.00 809.00 3309.00 \N 593 592 27 1204.0 0.0 2019-11-17 22:04:59.461049 2019-11-17 22:04:59.461049 26 1000.00 1391.00 2391.00 \N 594 593 26 200.0 0.0 2019-11-17 22:24:25.248875 2019-11-17 22:24:25.248875 26 200.00 1391.00 1591.00 \N 595 591 23 0.0 0.0 2019-11-18 18:30:24.776968 2019-11-18 18:30:24.776968 19 0.00 809.00 809.00 \N 596 596 2 6365.0 0.0 2019-11-18 23:18:52.652654 2019-11-18 23:18:52.652654 2 6000.00 1047.00 7047.00 \N 597 595 21 804.15 10.0 2019-11-19 03:07:44.587237 2019-11-19 03:07:44.587237 19 500.00 891.00 1391.00 \N 598 598 2 1307.0 0.0 2019-11-20 02:50:02.148502 2019-11-20 02:50:02.148502 2 1000.00 765.00 1765.00 \N 599 597 23 799.0 0.0 2019-11-20 02:52:54.730925 2019-11-20 02:52:54.730925 23 800.00 890.00 1690.00 \N 600 594 27 2446.0 0.0 2019-11-20 02:57:30.275599 2019-11-20 02:57:30.275599 15 900.00 991.00 1891.00 \N 601 601 2 3887.0 0.0 2019-11-21 02:45:58.10621 2019-11-21 02:45:58.10621 2 4000.00 652.00 4652.00 \N 602 600 26 0.0 0.0 2019-11-21 03:02:25.878465 2019-11-21 03:02:25.878465 26 0.00 991.00 991.00 \N 603 603 2 4966.0 0.0 2019-11-22 02:48:04.127579 2019-11-22 02:48:04.127579 2 700.00 921.00 1621.00 \N 604 599 23 399.0 0.0 2019-11-22 02:51:21.961076 2019-11-22 02:51:21.961076 23 400.00 889.00 1289.00 \N 605 602 27 3469.0 0.0 2019-11-22 02:56:55.0448 2019-11-22 02:56:55.0448 15 1500.00 1422.00 2922.00 \N 606 606 2 6250.0 0.0 2019-11-23 02:35:39.371295 2019-11-23 02:35:39.371295 2 4600.00 763.00 5363.00 \N 607 604 27 449.0 0.0 2019-11-23 02:55:24.736315 2019-11-23 02:55:24.736315 15 900.00 971.00 1871.00 \N 608 605 23 0.0 0.0 2019-11-23 03:33:11.92124 2019-11-23 03:33:11.92124 19 0.00 929.00 929.00 \N 609 607 23 2995.0 530.0 2019-11-24 02:58:05.77793 2019-11-24 02:58:05.77793 19 2500.00 794.00 3294.00 \N 610 608 27 3875.0 1040.0 2019-11-24 02:58:19.059297 2019-11-24 02:58:19.059297 15 1000.00 2077.00 3077.00 \N 611 608 27 3875.0 1040.0 2019-11-24 02:58:19.18451 2019-11-24 02:58:19.18451 15 1000.00 2077.00 3077.00 \N 612 609 2 2545.0 1328.0 2019-11-24 03:07:22.27482 2019-11-24 03:07:22.27482 2 600.00 880.00 1480.00 \N 613 612 25 1099.0 0.0 2019-11-24 21:59:15.693178 2019-11-24 21:59:15.693178 25 0.00 880.00 880.00 \N 614 611 27 0.0 0.0 2019-11-24 22:05:05.794766 2019-11-24 22:05:05.794766 26 1000.00 1077.00 2077.00 \N 615 613 2 1848.0 50.0 2019-11-26 02:39:07.972743 2019-11-26 02:39:07.972743 2 1000.00 978.00 1978.00 \N 616 614 27 1948.0 0.0 2019-11-26 03:01:01.363044 2019-11-26 03:01:01.363044 15 1000.00 726.00 1726.00 \N 617 610 23 0.0 0.0 2019-11-26 03:14:51.49119 2019-11-26 03:14:51.49119 19 0.00 794.00 794.00 \N 618 616 2 6413.0 1500.0 2019-11-27 02:48:23.53533 2019-11-27 02:48:23.53533 25 2000.00 675.00 2675.00 \N 619 615 23 1049.0 0.0 2019-11-27 02:59:05.522601 2019-11-27 02:59:05.522601 23 1000.00 843.00 1843.00 \N 620 617 26 1798.0 541.0 2019-11-27 03:13:33.167452 2019-11-27 03:13:33.167452 26 500.00 798.00 1298.00 \N 621 619 2 0.0 0.0 2019-11-28 02:45:33.30759 2019-11-28 02:45:33.30759 2 0.00 675.00 675.00 \N 622 618 27 2546.0 0.0 2019-11-28 02:55:30.948053 2019-11-28 02:55:30.948053 15 1000.00 846.00 1846.00 \N 623 618 27 2546.0 0.0 2019-11-28 02:55:31.261488 2019-11-28 02:55:31.261488 15 1000.00 846.00 1846.00 \N 624 620 21 2198.0 0.0 2019-11-28 03:02:48.956556 2019-11-28 03:02:48.956556 21 2500.00 541.00 3041.00 \N 625 623 2 1598.0 0.0 2019-11-29 02:44:46.933526 2019-11-29 02:44:46.933526 2 1500.00 773.00 2273.00 \N 626 622 27 2346.0 0.0 2019-11-29 02:53:11.71733 2019-11-29 02:53:11.71733 15 1000.00 2192.00 3192.00 \N 627 621 23 1200.0 0.0 2019-11-29 02:56:21.424912 2019-11-29 02:56:21.424912 23 600.00 541.00 1141.00 \N 628 626 2 3416.0 0.0 2019-11-30 02:59:09.128954 2019-11-30 02:59:09.128954 2 1500.00 841.00 2341.00 \N 629 625 27 2398.0 0.0 2019-11-30 03:00:10.374205 2019-11-30 03:00:10.374205 15 2000.00 398.00 2398.00 \N 630 627 27 4413.0 880.0 2019-12-01 02:48:59.395936 2019-12-01 02:48:59.395936 15 1000.00 574.00 1574.00 \N 631 629 27 0.0 0.0 2019-12-01 03:02:01.127291 2019-12-01 03:02:01.127291 15 0.00 574.00 574.00 \N 632 628 2 2329.0 1348.0 2019-12-01 03:05:06.113035 2019-12-01 03:05:06.113035 2 1000.00 822.00 1822.00 \N 633 624 23 3787.0 528.0 2019-12-01 03:06:24.757673 2019-12-01 03:06:24.757673 21 1500.00 701.00 2201.00 \N 634 632 25 1698.0 0.0 2019-12-01 22:02:21.289526 2019-12-01 22:02:21.289526 25 1000.00 869.00 1869.00 \N 635 631 27 0.0 0.0 2019-12-01 22:06:33.458586 2019-12-01 22:06:33.458586 27 0.00 574.00 574.00 \N 636 630 23 2228.0 0.0 2019-12-01 23:07:25.79995 2019-12-01 23:07:25.79995 23 2500.00 429.00 2929.00 \N 637 633 23 2178.0 0.0 2019-12-03 02:55:12.083313 2019-12-03 02:55:12.083313 23 2000.00 607.00 2607.00 \N 638 634 27 1048.0 0.0 2019-12-03 02:57:58.690103 2019-12-03 02:57:58.690103 26 1000.00 622.00 1622.00 \N 639 635 25 3397.0 0.0 2019-12-03 03:07:14.085338 2019-12-03 03:07:14.085338 2 1800.00 768.00 2568.00 \N 640 637 25 1979.0 250.0 2019-12-04 02:03:28.645073 2019-12-04 02:03:28.645073 25 1600.00 897.00 2497.00 \N 641 638 27 1048.0 0.0 2019-12-04 02:13:25.927093 2019-12-04 02:13:25.927093 26 0.00 771.00 771.00 \N 642 636 23 569.0 0.0 2019-12-04 02:54:53.250357 2019-12-04 02:54:53.250357 23 500.00 676.00 1176.00 \N 643 639 23 2547.0 0.0 2019-12-05 02:57:54.545638 2019-12-05 02:57:54.545638 23 1200.00 724.00 1924.00 \N 644 641 25 5636.29 0.0 2019-12-05 02:59:16.198257 2019-12-05 02:59:16.198257 25 3200.00 911.00 4111.00 \N 645 640 27 1398.0 0.0 2019-12-05 03:04:57.912689 2019-12-05 03:04:57.912689 8 700.00 570.00 1270.00 \N 646 642 23 2277.0 0.0 2019-12-06 02:52:53.407313 2019-12-06 02:52:53.407313 23 800.00 713.00 1513.00 \N 647 643 27 2727.0 0.0 2019-12-06 03:00:10.841807 2019-12-06 03:00:10.841807 26 1000.00 269.00 1269.00 \N 648 643 27 2727.0 0.0 2019-12-06 03:00:10.961712 2019-12-06 03:00:10.961712 26 1000.00 269.00 1269.00 \N 649 644 25 5186.0 10.0 2019-12-06 03:00:34.573887 2019-12-06 03:00:34.573887 25 4400.00 1088.00 5488.00 \N 650 646 27 3346.0 0.0 2019-12-07 03:02:17.134768 2019-12-07 03:02:17.134768 10 1200.00 467.00 1667.00 \N 651 646 27 3346.0 0.0 2019-12-07 03:02:17.290274 2019-12-07 03:02:17.290274 10 1200.00 467.00 1667.00 \N 652 647 25 1728.0 0.0 2019-12-07 03:05:55.313362 2019-12-07 03:05:55.313362 25 2100.00 716.00 2816.00 \N 653 645 23 4027.0 0.0 2019-12-08 02:58:13.189008 2019-12-08 02:58:13.189008 23 1600.00 671.00 2271.00 \N 654 648 2 7459.0 877.0 2019-12-08 03:02:30.867479 2019-12-08 03:02:30.867479 25 2500.00 547.00 3047.00 había de dinero $3327 y agarre $280 de aretes vendidos con tarjeta \N 655 649 26 2895.0 1130.0 2019-12-08 03:12:03.929113 2019-12-08 03:12:03.929113 26 512.00 821.00 1333.00 \N 656 651 2 949.0 0.0 2019-12-08 22:02:07.992056 2019-12-08 22:02:07.992056 2 1000.00 496.00 1496.00 \N 657 650 27 549.0 0.0 2019-12-08 22:06:50.935865 2019-12-08 22:06:50.935865 15 1000.00 370.00 1370.00 \N 658 652 21 0.0 0.0 2019-12-09 00:58:22.751869 2019-12-09 00:58:22.751869 21 0.00 671.00 671.00 \N 659 654 27 1898.0 0.0 2019-12-10 03:01:29.183671 2019-12-10 03:01:29.183671 15 1500.00 768.00 2268.00 \N 660 653 2 7522.0 0.0 2019-12-10 03:02:36.179696 2019-12-10 03:02:36.179696 9 5400.00 1019.00 6419.00 \N 661 655 21 6164.0 1415.0 2019-12-10 03:16:48.124604 2019-12-10 03:16:48.124604 21 4100.00 571.00 4671.00 \N 662 656 23 1488.0 0.0 2019-12-11 03:01:05.504638 2019-12-11 03:01:05.504638 21 1500.00 559.00 2059.00 \N 663 658 2 12186.0 25.0 2019-12-11 03:11:47.537073 2019-12-11 03:11:47.537073 9 5500.00 857.00 6357.00 $1400 se puso en efectivo y era transerencia de Tatiana \N 664 657 27 3345.0 0.0 2019-12-11 03:12:16.541996 2019-12-11 03:12:16.541996 10 2200.00 683.00 2883.00 SOBRANTE DE $118 \N 665 660 27 5124.0 0.0 2019-12-12 03:02:04.271425 2019-12-12 03:02:04.271425 15 3000.00 709.00 3709.00 \N 666 661 2 4482.0 0.0 2019-12-12 03:18:31.763536 2019-12-12 03:18:31.763536 2 2500.00 1035.00 3535.00 \N 667 659 23 3013.0 0.0 2019-12-12 03:19:06.031162 2019-12-12 03:19:06.031162 19 2500.00 1072.00 3572.00 \N 668 663 27 2947.0 0.0 2019-12-13 03:03:49.858589 2019-12-13 03:03:49.858589 15 900.00 758.00 1658.00 \N 669 664 2 5145.0 0.0 2019-12-13 03:04:44.261338 2019-12-13 03:04:44.261338 2 3500.00 781.00 4281.00 \N 670 662 23 2199.0 0.0 2019-12-13 03:16:22.469106 2019-12-13 03:16:22.469106 19 2600.00 671.00 3271.00 \N 671 667 2 6630.99 0.0 2019-12-14 02:55:18.752191 2019-12-14 02:55:18.752191 2 6400.00 1012.00 7412.00 \N 672 665 23 1028.0 0.0 2019-12-14 02:59:58.153169 2019-12-14 02:59:58.153169 23 1000.00 699.00 1699.00 \N 673 666 27 2457.0 0.0 2019-12-14 03:02:10.391725 2019-12-14 03:02:10.391725 15 1100.00 1356.00 2456.00 \N 674 670 26 7820.0 1350.0 2019-12-15 03:03:40.40925 2019-12-15 03:03:40.40925 26 3500.00 808.00 4308.00 \N 675 668 23 3862.16 0.0 2019-12-15 03:13:53.13082 2019-12-15 03:13:53.13082 23 1000.00 298.00 1298.00 \N 676 669 2 14131.99 1153.0 2019-12-15 03:16:35.68419 2019-12-15 03:16:35.68419 2 4100.00 922.00 5022.00 ENTREGUE A SAMANTHA $3700 MAS $900 DE KARLA \r\n$4600 EN TOTAL \N 677 671 2 3275.0 300.0 2019-12-15 23:14:38.301429 2019-12-15 23:14:38.301429 2 500.00 1130.00 1630.00 \N 678 672 26 6074.0 0.0 2019-12-15 23:26:30.249253 2019-12-15 23:26:30.249253 15 4500.00 395.00 4895.00 RETIRE $3500 $1000 SE LLEVO SAMANTHA \N 679 673 21 589.0 100.0 2019-12-16 01:04:00.812509 2019-12-16 01:04:00.812509 19 0.00 220.00 220.00 \N 680 675 2 4024.0 0.0 2019-12-17 02:47:54.404674 2019-12-17 02:47:54.404674 2 3700.00 1454.00 5154.00 \N 681 674 27 1804.0 0.0 2019-12-17 03:00:30.14803 2019-12-17 03:00:30.14803 10 700.00 539.00 1239.00 FALTAN $61 DE FONDO \N 682 676 21 1989.0 0.0 2019-12-17 03:07:26.76037 2019-12-17 03:07:26.76037 19 0.00 1223.00 1223.00 \N 683 678 27 999.0 0.0 2019-12-18 03:01:13.082033 2019-12-18 03:01:13.082033 15 900.00 638.00 1538.00 \N 684 678 27 999.0 0.0 2019-12-18 03:01:13.189525 2019-12-18 03:01:13.189525 15 900.00 638.00 1538.00 \N 685 677 2 4406.0 0.0 2019-12-18 03:05:04.318295 2019-12-18 03:05:04.318295 9 3000.00 1261.00 4261.00 \N 686 679 21 4166.0 0.0 2019-12-18 03:05:56.943583 2019-12-18 03:05:56.943583 19 3500.00 1205.00 4705.00 \N 687 680 2 5958.0 0.0 2019-12-19 02:53:32.09002 2019-12-19 02:53:32.09002 9 1900.00 1268.00 3168.00 \N 688 681 27 7849.0 0.0 2019-12-19 03:02:29.655054 2019-12-19 03:02:29.655054 10 2300.00 1243.00 3543.00 \N 689 682 21 3775.0 0.0 2019-12-19 03:09:08.852082 2019-12-19 03:09:08.852082 19 2500.00 1152.00 3652.00 \N 690 684 2 7116.32 1042.0 2019-12-20 02:59:42.525076 2019-12-20 02:59:42.525076 9 3900.00 1223.00 5123.00 ENTREGUE A SAM $3400 Y RETIRE $500, EN TOTAL $3900 \N 691 683 27 3735.0 0.0 2019-12-20 03:03:50.899625 2019-12-20 03:03:50.899625 10 3500.00 1478.00 4978.00 \N 692 685 21 2558.0 0.0 2019-12-20 03:07:33.569645 2019-12-20 03:07:33.569645 19 900.00 951.00 1851.00 \N 693 689 2 3148.0 0.0 2019-12-21 03:03:40.990718 2019-12-21 03:03:40.990718 9 3000.00 1371.00 4371.00 \N 694 686 27 3906.1 0.0 2019-12-21 03:07:38.71391 2019-12-21 03:07:38.71391 10 2100.00 2485.00 4585.00 \N 695 688 21 2858.0 0.0 2019-12-21 03:16:28.537254 2019-12-21 03:16:28.537254 19 2000.00 809.00 2809.00 \N 696 690 2 13055.2 44.0 2019-12-22 02:57:11.681701 2019-12-22 02:57:11.681701 9 6722.00 1237.00 7959.00 \N 697 687 8 17322.45 0.0 2019-12-22 03:14:32.382914 2019-12-22 03:14:32.382914 10 13790.00 1400.45 15190.45 SOBRANTE $1074 \N 698 691 21 3012.4 0.0 2019-12-22 03:33:58.460412 2019-12-22 03:33:58.460412 19 3000.00 821.00 3821.00 \N 699 693 2 13442.0 0.0 2019-12-23 00:14:29.885138 2019-12-23 00:14:29.885138 7 8500.00 1084.00 9584.00 una venta de $2117 se pago con tarjeta y se puso que fue en efectivo \N 700 692 27 12384.29 0.0 2019-12-23 01:26:08.309866 2019-12-23 01:26:08.309866 8 8409.00 2278.74 10687.74 \N 701 694 21 4240.5 0.0 2019-12-23 03:08:59.600999 2019-12-23 03:08:59.600999 21 3500.00 892.00 4392.00 \N 702 695 2 8990.0 2901.0 2019-12-24 03:07:23.834882 2019-12-24 03:07:23.834882 2 5200.00 1134.00 6334.00 ENTRGUE A SAM $2000 + $3200= $5400 \N 703 696 27 8892.2 0.0 2019-12-24 03:20:26.606971 2019-12-24 03:20:26.606971 10 4800.00 1250.00 6050.00 FALTO 1000 \N 704 697 21 10812.5 1303.2 2019-12-24 03:46:58.229927 2019-12-24 03:46:58.229927 19 7000.00 1914.00 8914.00 \N 705 699 2 3507.0 0.0 2019-12-25 01:20:47.317786 2019-12-25 01:20:47.317786 2 2300.00 953.00 3253.00 \N 706 698 27 10286.39 0.0 2019-12-25 01:31:54.424409 2019-12-25 01:31:54.424409 10 7500.00 83.40 7583.40 \N 707 700 21 7610.4 200.0 2019-12-25 02:33:07.34292 2019-12-25 02:33:07.34292 19 4500.00 1503.00 6003.00 \N 708 703 8 3599.3 0.0 2019-12-27 02:43:24.357652 2019-12-27 02:43:24.357652 8 1500.00 832.00 2332.00 AGREGE FONDO $54 \N 709 701 2 4827.99 0.0 2019-12-27 02:59:36.142095 2019-12-27 02:59:36.142095 7 1500.00 1032.00 2532.00 \N 710 702 21 3978.0 0.0 2019-12-27 03:03:38.616598 2019-12-27 03:03:38.616598 19 4000.00 1481.00 5481.00 \N 711 706 2 6270.0 425.0 2019-12-28 02:42:36.838471 2019-12-28 02:42:36.838471 2 4600.00 917.00 5517.00 \N 712 704 27 3622.2 0.0 2019-12-28 02:53:15.855988 2019-12-28 02:53:15.855988 24 3000.00 855.00 3855.00 \N 713 705 21 899.0 468.0 2019-12-28 02:58:35.359734 2019-12-28 02:58:35.359734 21 1000.00 912.00 1912.00 \N 714 707 27 2497.4 0.0 2019-12-29 02:05:56.105166 2019-12-29 02:05:56.105166 15 3000.00 242.40 3242.40 \N 715 708 2 4630.0 1728.0 2019-12-29 02:06:51.091947 2019-12-29 02:06:51.091947 2 2500.00 1148.00 3648.00 \N 716 709 21 3134.8 0.0 2019-12-29 02:39:21.987003 2019-12-29 02:39:21.987003 21 3100.00 946.00 4046.00 \N 717 711 2 4274.0 200.0 2019-12-29 21:57:56.704453 2019-12-29 21:57:56.704453 2 3000.00 1123.00 4123.00 \N 718 712 21 2569.1 0.0 2019-12-30 01:28:00.534109 2019-12-30 01:28:00.534109 19 2500.00 1015.00 3515.00 \N 719 714 21 6945.0 1643.0 2019-12-31 02:59:50.729052 2019-12-31 02:59:50.729052 21 3020.00 1067.00 4087.00 \N 720 710 27 5616.5 0.0 2019-12-31 03:02:31.134122 2019-12-31 03:02:31.134122 15 5000.00 858.90 5858.90 \N 721 713 2 5004.0 0.0 2019-12-31 03:14:24.143075 2019-12-31 03:14:24.143075 2 5000.00 1127.00 6127.00 \N 722 716 27 6125.45 0.0 2020-01-01 00:56:21.840208 2020-01-01 00:56:21.840208 15 3500.00 677.35 4177.35 \N 723 715 2 15841.99 5.0 2020-01-01 01:13:57.22568 2020-01-01 01:13:57.22568 2 13499.99 591.00 14090.99 ENTREGUE $11,000 A MARCO Y $2500 A MONTSE \N 724 717 21 2820.1 0.0 2020-01-01 01:14:59.936746 2020-01-01 01:14:59.936746 19 2000.00 1137.00 3137.00 \N 725 718 8 2524.3 1000.0 2020-01-03 02:14:05.276605 2020-01-03 02:14:05.276605 8 0.00 1201.65 1201.65 \N 726 719 2 679.0 0.0 2020-01-03 02:51:06.98982 2020-01-03 02:51:06.98982 7 0.00 1270.00 1270.00 \N 727 720 21 0.0 0.0 2020-01-03 02:58:21.76553 2020-01-03 02:58:21.76553 21 0.00 1137.00 1137.00 \N 728 722 2 1100.0 0.0 2020-01-04 02:57:40.535998 2020-01-04 02:57:40.535998 2 1400.00 970.00 2370.00 \N 729 723 21 2758.0 0.0 2020-01-04 03:01:02.041566 2020-01-04 03:01:02.041566 19 2600.00 1296.00 3896.00 \N 730 721 27 2326.6 0.0 2020-01-04 03:02:05.129094 2020-01-04 03:02:05.129094 15 2500.00 1028.25 3528.25 \N 731 724 2 4397.0 1890.0 2020-01-05 02:27:22.959907 2020-01-05 02:27:22.959907 2 2700.00 777.00 3477.00 \N 732 726 8 2609.99 1890.0 2020-01-05 02:49:33.954823 2020-01-05 02:49:33.954823 15 1000.00 748.00 1748.00 \N 733 725 21 0.0 50.0 2020-01-05 02:56:23.131834 2020-01-05 02:56:23.131834 19 0.00 1246.00 1246.00 \N 734 728 2 330.0 0.0 2020-01-07 02:54:54.901104 2020-01-07 02:54:54.901104 2 0.00 1107.00 1107.00 \N 735 728 2 330.0 0.0 2020-01-07 02:54:55.039273 2020-01-07 02:54:55.039273 2 0.00 1107.00 1107.00 \N 736 727 27 281.4 0.0 2020-01-07 03:00:36.738062 2020-01-07 03:00:36.738062 15 0.00 1029.40 1029.40 \N 737 727 27 281.4 0.0 2020-01-07 03:00:36.842322 2020-01-07 03:00:36.842322 15 0.00 1029.40 1029.40 \N 738 727 27 281.4 0.0 2020-01-07 03:00:40.42597 2020-01-07 03:00:40.42597 15 0.00 1029.40 1029.40 \N 739 727 27 281.4 0.0 2020-01-07 03:00:40.610899 2020-01-07 03:00:40.610899 15 0.00 1029.40 1029.40 \N 740 727 27 281.4 0.0 2020-01-07 03:00:40.800812 2020-01-07 03:00:40.800812 15 0.00 1029.40 1029.40 \N 741 727 27 281.4 0.0 2020-01-07 03:00:40.933467 2020-01-07 03:00:40.933467 15 0.00 1029.40 1029.40 \N 742 727 27 281.4 0.0 2020-01-07 03:00:41.109344 2020-01-07 03:00:41.109344 15 0.00 1029.40 1029.40 \N 743 730 21 1797.8 0.0 2020-01-08 02:52:04.804026 2020-01-08 02:52:04.804026 21 900.00 1100.00 2000.00 \N 744 731 2 1477.0 0.0 2020-01-08 02:52:20.857601 2020-01-08 02:52:20.857601 2 1600.00 984.00 2584.00 \N 745 729 27 419.4 0.0 2020-01-08 02:57:35.689743 2020-01-08 02:57:35.689743 15 0.00 1448.00 1448.00 \N 746 733 2 2648.0 0.0 2020-01-09 02:10:59.855755 2020-01-09 02:10:59.855755 7 1800.00 824.00 2624.00 \N 747 732 27 550.0 0.0 2020-01-09 02:24:44.838608 2020-01-09 02:24:44.838608 10 1200.00 798.00 1998.00 \N 748 732 27 550.0 0.0 2020-01-09 02:24:44.943999 2020-01-09 02:24:44.943999 10 1200.00 798.00 1998.00 \N 749 734 21 977.4 0.0 2020-01-09 03:01:34.375145 2020-01-09 03:01:34.375145 19 1000.00 1077.00 2077.00 \N 750 736 2 350.0 0.0 2020-01-10 01:57:18.396227 2020-01-10 01:57:18.396227 2 0.00 1174.00 1174.00 \N 751 735 27 299.4 0.0 2020-01-10 02:01:41.941592 2020-01-10 02:01:41.941592 15 0.00 1097.00 1097.00 \N 752 737 27 275.4 0.0 2020-01-11 02:01:27.500629 2020-01-11 02:01:27.500629 15 0.00 1372.00 1372.00 \N 753 738 2 2628.0 0.0 2020-01-11 02:04:26.654108 2020-01-11 02:04:26.654108 2 2800.00 1002.00 3802.00 \N 754 739 21 1267.7 0.0 2020-01-11 03:04:08.293846 2020-01-11 03:04:08.293846 19 1200.00 1144.00 2344.00 \N 755 740 27 0.0 0.0 2020-01-12 02:04:16.015214 2020-01-12 02:04:16.015214 15 0.00 1372.00 1372.00 \N 756 741 2 6621.8 2478.0 2020-01-12 02:21:02.686394 2020-01-12 02:21:02.686394 2 4000.00 696.00 4696.00 \N 757 743 2 2974.0 0.0 2020-01-14 01:36:54.850737 2020-01-14 01:36:54.850737 7 3000.00 670.00 3670.00 \N 758 742 27 0.0 0.0 2020-01-14 02:03:45.723874 2020-01-14 02:03:45.723874 15 0.00 1372.00 1372.00 \N 759 744 21 0.0 0.0 2020-01-14 02:56:48.62847 2020-01-14 02:56:48.62847 19 0.00 1044.00 1044.00 \N 760 745 27 0.0 0.0 2020-01-15 02:02:51.502969 2020-01-15 02:02:51.502969 15 0.00 1372.00 1372.00 \N 761 747 2 700.0 0.0 2020-01-15 02:03:13.260569 2020-01-15 02:03:13.260569 2 700.00 670.00 1370.00 \N 762 746 21 1599.0 0.0 2020-01-15 02:58:12.667573 2020-01-15 02:58:12.667573 19 1500.00 1143.00 2643.00 \N 763 749 2 2968.0 0.0 2020-01-16 02:04:20.0807 2020-01-16 02:04:20.0807 2 2000.00 938.00 2938.00 \N 764 748 27 779.4 0.0 2020-01-16 02:08:07.21903 2020-01-16 02:08:07.21903 15 1000.00 1151.00 2151.00 \N 765 750 21 0.0 130.0 2020-01-16 02:57:24.119746 2020-01-16 02:57:24.119746 19 0.00 1013.00 1013.00 \N 766 751 27 897.99 0.0 2020-01-17 02:03:43.60768 2020-01-17 02:03:43.60768 15 1000.00 1048.00 2048.00 \N 767 752 2 1199.01 0.0 2020-01-17 02:07:31.893662 2020-01-17 02:07:31.893662 2 400.00 837.00 1237.00 \N 768 753 21 145.0 0.0 2020-01-17 03:00:46.069414 2020-01-17 03:00:46.069414 21 0.00 1158.00 1158.00 \N 769 756 2 750.0 120.0 2020-01-18 02:01:51.126445 2020-01-18 02:01:51.126445 2 500.00 667.00 1167.00 \N 770 754 27 1389.51 0.0 2020-01-18 02:02:09.834204 2020-01-18 02:02:09.834204 15 1000.00 1018.00 2018.00 \N 771 755 21 1478.5 0.0 2020-01-18 03:01:59.464791 2020-01-18 03:01:59.464791 21 1000.00 1237.00 2237.00 \N 772 757 2 2890.0 325.0 2020-01-19 02:02:47.624905 2020-01-19 02:02:47.624905 2 1900.00 732.00 2632.00 \N 773 759 21 749.4 0.0 2020-01-19 02:58:04.866346 2020-01-19 02:58:04.866346 21 1000.00 986.00 1986.00 \N 774 760 29 600.0 25.0 2020-01-21 01:53:11.947889 2020-01-21 01:53:11.947889 2 700.00 607.00 1307.00 \N 775 761 21 1499.0 0.0 2020-01-21 17:20:53.751767 2020-01-21 17:20:53.751767 19 0.00 1386.00 1386.00 \N 776 763 2 0.0 0.0 2020-01-22 01:47:51.223617 2020-01-22 01:47:51.223617 2 0.00 607.00 607.00 \N 777 758 27 736.8 0.0 2020-01-22 02:04:49.254324 2020-01-22 02:04:49.254324 10 1000.00 754.80 1754.80 \N 778 762 21 0.0 0.0 2020-01-22 02:51:13.277557 2020-01-22 02:51:13.277557 21 0.00 1386.00 1386.00 \N 779 766 2 720.0 0.0 2020-01-23 02:05:23.092832 2020-01-23 02:05:23.092832 2 700.00 627.00 1327.00 \N 780 765 21 500.0 0.0 2020-01-23 02:59:41.712885 2020-01-23 02:59:41.712885 19 1000.00 886.00 1886.00 \N 781 768 2 1549.0 1205.0 2020-01-24 02:01:40.717566 2020-01-24 02:01:40.717566 2 0.00 971.00 971.00 \N 782 764 27 820.8 0.0 2020-01-24 02:02:38.661209 2020-01-24 02:02:38.661209 15 0.00 1575.00 1575.00 \N 783 767 21 0.0 0.0 2020-01-24 03:00:59.069209 2020-01-24 03:00:59.069209 19 0.00 886.00 886.00 \N 784 769 27 1012.8 704.0 2020-01-25 02:05:10.095725 2020-01-25 02:05:10.095725 15 1000.00 883.00 1883.00 \N 785 769 27 1012.8 704.0 2020-01-25 02:05:10.214017 2020-01-25 02:05:10.214017 15 1000.00 883.00 1883.00 \N 786 770 2 4099.0 0.0 2020-01-25 02:12:07.479843 2020-01-25 02:12:07.479843 2 3000.00 471.00 3471.00 \N 787 771 21 0.0 0.0 2020-01-25 02:55:07.506318 2020-01-25 02:55:07.506318 21 0.00 886.00 886.00 \N 788 773 8 1457.0 0.0 2020-01-26 02:10:19.886753 2020-01-26 02:10:19.886753 8 1500.00 840.00 2340.00 \N 789 772 2 2488.0 135.0 2020-01-26 02:30:07.234454 2020-01-26 02:30:07.234454 7 2000.00 824.00 2824.00 \N 790 774 21 569.0 0.0 2020-01-26 03:01:06.036407 2020-01-26 03:01:06.036407 21 500.00 955.00 1455.00 \N 791 775 25 820.0 0.0 2020-01-26 22:04:52.544252 2020-01-26 22:04:52.544252 9 0.00 1644.00 1644.00 \N 792 776 27 389.4 0.0 2020-01-26 22:13:37.023945 2020-01-26 22:13:37.023945 15 0.00 1229.00 1229.00 \N 793 778 2 200.0 10.0 2020-01-28 01:57:43.234078 2020-01-28 01:57:43.234078 7 1000.00 834.00 1834.00 \N 794 777 27 659.4 0.0 2020-01-28 02:08:51.85248 2020-01-28 02:08:51.85248 8 1700.00 888.40 2588.40 NO APARECE UNA VENTA DE AYER DE $700 \N 795 777 27 659.4 0.0 2020-01-28 02:08:51.984519 2020-01-28 02:08:51.984519 8 1700.00 888.40 2588.40 NO APARECE UNA VENTA DE AYER DE $700 \N 796 779 21 1329.0 0.0 2020-01-28 03:06:07.464855 2020-01-28 03:06:07.464855 19 1400.00 884.00 2284.00 \N 797 782 8 600.0 0.0 2020-01-29 02:09:30.33547 2020-01-29 02:09:30.33547 10 500.00 988.40 1488.40 \N 798 780 2 800.0 0.0 2020-01-29 02:13:14.299215 2020-01-29 02:13:14.299215 7 1000.00 634.00 1634.00 \N 799 781 21 400.0 0.0 2020-01-29 02:58:34.046856 2020-01-29 02:58:34.046856 19 0.00 1286.00 1286.00 \N 800 783 2 3429.0 0.0 2020-01-30 01:55:35.681413 2020-01-30 01:55:35.681413 2 3200.00 863.00 4063.00 \N 801 784 27 0.0 0.0 2020-01-30 02:01:37.039972 2020-01-30 02:01:37.039972 15 0.00 988.00 988.00 \N 802 785 21 669.0 0.0 2020-01-30 03:31:57.885217 2020-01-30 03:31:57.885217 21 1000.00 705.00 1705.00 \N 803 786 27 1837.5 0.0 2020-01-31 02:04:45.258562 2020-01-31 02:04:45.258562 26 1300.00 1036.00 2336.00 \N 804 787 2 6308.0 1205.0 2020-01-31 02:24:58.503344 2020-01-31 02:24:58.503344 2 930.00 713.00 1643.00 LO QUE RETIRE FUE VENTA DE ARETES PAGADAS CON TARJETA $930 \N 805 788 18 500.0 0.0 2020-01-31 03:01:36.796005 2020-01-31 03:01:36.796005 18 0.00 1205.00 1205.00 \N 806 789 27 1440.8 0.0 2020-02-01 02:01:53.211847 2020-02-01 02:01:53.211847 15 1000.00 1476.00 2476.00 \N 807 790 2 1840.0 0.0 2020-02-01 02:05:46.226107 2020-02-01 02:05:46.226107 2 1500.00 553.00 2053.00 \N 808 791 21 4647.0 0.0 2020-02-01 02:51:29.465192 2020-02-01 02:51:29.465192 19 0.00 1254.00 1254.00 \N 809 793 2 2540.0 1100.0 2020-02-02 01:56:22.852397 2020-02-02 01:56:22.852397 2 1200.00 793.00 1993.00 \N 810 792 27 250.0 0.0 2020-02-02 02:01:53.147701 2020-02-02 02:01:53.147701 15 0.00 1726.00 1726.00 \N 811 794 21 0.0 0.0 2020-02-02 03:00:37.317324 2020-02-02 03:00:37.317324 19 0.00 1254.00 1254.00 \N 812 795 21 49.0 0.0 2020-02-04 02:06:34.078392 2020-02-04 02:06:34.078392 19 0.00 1254.00 1254.00 \N 813 797 27 1148.8 0.0 2020-02-05 02:00:16.373649 2020-02-05 02:00:16.373649 15 1000.00 1874.00 2874.00 \N 814 796 2 1560.0 0.0 2020-02-05 02:23:57.835594 2020-02-05 02:23:57.835594 2 1700.00 653.00 2353.00 \N 815 798 21 2288.0 0.0 2020-02-05 02:46:18.683213 2020-02-05 02:46:18.683213 19 2000.00 1542.00 3542.00 \N 816 800 2 560.0 0.0 2020-02-06 02:04:24.663691 2020-02-06 02:04:24.663691 2 300.00 913.00 1213.00 \N 817 799 27 600.0 0.0 2020-02-06 02:05:40.560181 2020-02-06 02:05:40.560181 15 0.00 2474.00 2474.00 \N 818 801 21 400.0 859.0 2020-02-06 02:54:24.694896 2020-02-06 02:54:24.694896 19 0.00 1083.00 1083.00 \N 819 802 2 1070.0 0.0 2020-02-07 01:59:52.887668 2020-02-07 01:59:52.887668 2 1000.00 983.00 1983.00 \N 820 803 27 1554.6 0.0 2020-02-07 02:12:56.801709 2020-02-07 02:12:56.801709 15 2400.00 1628.00 4028.00 \N 821 804 21 100.0 600.0 2020-02-07 02:56:14.201956 2020-02-07 02:56:14.201956 19 0.00 583.00 583.00 \N 822 805 27 359.4 0.0 2020-02-08 02:01:08.516902 2020-02-08 02:01:08.516902 15 0.00 1987.00 1987.00 \N 823 806 2 400.0 25.0 2020-02-08 02:12:54.435253 2020-02-08 02:12:54.435253 2 0.00 1358.00 1358.00 \N 824 807 21 948.0 0.0 2020-02-08 02:52:10.535615 2020-02-08 02:52:10.535615 19 500.00 1031.00 1531.00 \N 825 810 2 1125.0 1205.0 2020-02-09 02:12:34.000512 2020-02-09 02:12:34.000512 2 200.00 1078.00 1278.00 \N 826 808 27 2197.8 1012.0 2020-02-09 02:12:51.223662 2020-02-09 02:12:51.223662 15 2000.00 1172.00 3172.00 \N 827 809 21 678.0 0.0 2020-02-09 03:02:55.643494 2020-02-09 03:02:55.643494 19 0.00 1380.00 1380.00 \N 828 811 27 0.0 0.0 2020-02-09 21:59:08.156056 2020-02-09 21:59:08.156056 15 0.00 1172.00 1172.00 \N 829 812 27 0.0 0.0 2020-02-11 02:00:39.309563 2020-02-11 02:00:39.309563 15 0.00 1172.00 1172.00 \N 830 813 2 1089.0 0.0 2020-02-11 02:04:23.684944 2020-02-11 02:04:23.684944 2 1200.00 967.00 2167.00 \N 831 814 21 1928.0 30.0 2020-02-11 03:10:49.519525 2020-02-11 03:10:49.519525 21 2000.00 1278.00 3278.00 \N 832 815 27 0.0 0.0 2020-02-12 02:01:07.416108 2020-02-12 02:01:07.416108 15 0.00 1172.00 1172.00 \N 833 817 2 1299.0 0.0 2020-02-12 02:03:00.171052 2020-02-12 02:03:00.171052 2 1000.00 1266.00 2266.00 \N 834 816 21 600.0 0.0 2020-02-12 03:01:43.927907 2020-02-12 03:01:43.927907 21 500.00 1378.00 1878.00 \N 835 818 27 0.0 0.0 2020-02-13 02:00:19.604804 2020-02-13 02:00:19.604804 15 0.00 1172.00 1172.00 \N 836 819 2 1420.0 0.0 2020-02-13 02:24:36.923013 2020-02-13 02:24:36.923013 2 1700.00 986.00 2686.00 \N 837 820 21 400.0 0.0 2020-02-13 02:36:48.989102 2020-02-13 02:36:48.989102 21 0.00 1378.00 1378.00 \N 838 823 8 0.0 0.0 2020-02-14 01:59:46.317765 2020-02-14 01:59:46.317765 10 200.00 972.00 1172.00 FALTAN 15 KEYLA \N 839 821 2 900.0 0.0 2020-02-14 02:08:32.39017 2020-02-14 02:08:32.39017 7 900.00 986.00 1886.00 \N 840 822 21 500.0 0.0 2020-02-14 02:57:55.686701 2020-02-14 02:57:55.686701 19 1000.00 878.00 1878.00 \N 841 824 21 1059.0 0.0 2020-02-14 03:07:28.655064 2020-02-14 03:07:28.655064 19 1000.00 937.00 1937.00 \N 842 826 2 739.0 0.0 2020-02-15 02:01:06.842113 2020-02-15 02:01:06.842113 2 500.00 986.00 1486.00 \N 843 827 27 600.0 0.0 2020-02-15 02:03:17.355607 2020-02-15 02:03:17.355607 15 500.00 722.00 1222.00 \N 844 825 21 3587.0 0.0 2020-02-15 03:02:35.175694 2020-02-15 03:02:35.175694 21 2700.00 1124.00 3824.00 \N 845 830 24 1196.8 1100.0 2020-02-16 02:16:42.69141 2020-02-16 02:16:42.69141 15 0.00 818.00 818.00 \N 846 828 2 1799.0 0.0 2020-02-16 02:32:35.128165 2020-02-16 02:32:35.128165 2 560.00 1176.00 1736.00 retire $560 que es $355 en pago de aretes con tarjeta y $205 diferencia de pago de sueldo de rocio \N 847 829 21 100.0 0.0 2020-02-16 02:56:21.519749 2020-02-16 02:56:21.519749 21 0.00 1224.00 1224.00 \N 848 832 21 999.0 0.0 2020-02-18 02:53:06.245499 2020-02-18 02:53:06.245499 21 1000.00 1223.00 2223.00 \N 849 831 27 359.4 0.0 2020-02-18 02:59:46.551083 2020-02-18 02:59:46.551083 15 0.00 1177.00 1177.00 \N 850 833 2 450.0 170.0 2020-02-18 03:09:57.897673 2020-02-18 03:09:57.897673 2 400.00 1056.00 1456.00 \N 851 834 27 0.0 0.0 2020-02-19 02:51:02.461511 2020-02-19 02:51:02.461511 15 0.00 1177.00 1177.00 \N 852 835 21 699.0 0.0 2020-02-19 02:56:06.88965 2020-02-19 02:56:06.88965 21 1000.00 922.00 1922.00 \N 853 836 2 0.0 50.0 2020-02-19 03:00:34.244339 2020-02-19 03:00:34.244339 2 0.00 1006.00 1006.00 \N 854 839 27 1169.0 0.0 2020-02-20 02:03:03.826296 2020-02-20 02:03:03.826296 15 0.00 1177.00 1177.00 \N 855 838 2 1668.0 0.0 2020-02-20 02:03:03.992222 2020-02-20 02:03:03.992222 2 900.00 1075.00 1975.00 \N 856 841 27 0.0 0.0 2020-02-21 02:30:39.440427 2020-02-21 02:30:39.440427 15 0.00 1177.00 1177.00 \N 857 840 2 2147.0 0.0 2020-02-21 02:33:20.312007 2020-02-21 02:33:20.312007 2 700.00 1223.00 1923.00 \N 858 837 21 1497.99 0.0 2020-02-21 02:58:54.342605 2020-02-21 02:58:54.342605 21 500.00 1020.00 1520.00 \N 859 842 2 3466.0 0.0 2020-02-22 02:27:48.273695 2020-02-22 02:27:48.273695 2 2500.00 1390.00 3890.00 \N 860 843 27 0.0 0.0 2020-02-22 02:31:30.722392 2020-02-22 02:31:30.722392 15 0.00 1177.00 1177.00 \N 861 844 21 999.0 0.0 2020-02-22 03:00:45.94625 2020-02-22 03:00:45.94625 21 0.00 1020.00 1020.00 \N 862 847 27 729.0 0.0 2020-02-23 02:30:32.83736 2020-02-23 02:30:32.83736 15 0.00 1177.00 1177.00 \N 863 846 2 7807.0 2255.0 2020-02-23 02:33:35.053791 2020-02-23 02:33:35.053791 2 2500.00 1070.00 3570.00 \N 864 845 21 120.0 0.0 2020-02-23 03:14:04.718026 2020-02-23 03:14:04.718026 21 0.00 1140.00 1140.00 \N 865 848 2 899.0 115.0 2020-02-25 02:42:18.341162 2020-02-25 02:42:18.341162 2 0.00 1155.00 1155.00 \N 866 849 21 0.0 0.0 2020-02-25 03:04:02.43005 2020-02-25 03:04:02.43005 21 0.00 1140.00 1140.00 \N 867 850 27 899.0 0.0 2020-02-26 02:31:29.811267 2020-02-26 02:31:29.811267 15 0.00 1177.00 1177.00 \N 868 850 27 899.0 0.0 2020-02-26 02:31:30.04923 2020-02-26 02:31:30.04923 15 0.00 1177.00 1177.00 \N 869 851 2 2418.0 0.0 2020-02-26 02:36:44.135452 2020-02-26 02:36:44.135452 2 2600.00 973.00 3573.00 \N 870 852 18 100.0 0.0 2020-02-26 02:50:34.096612 2020-02-26 02:50:34.096612 18 0.00 1293.00 1293.00 agrege 57pesos \N 871 855 2 397.99 0.0 2020-02-27 02:30:04.937048 2020-02-27 02:30:04.937048 2 200.00 1171.00 1371.00 \N 872 853 27 0.0 0.0 2020-02-27 02:31:51.449866 2020-02-27 02:31:51.449866 15 0.00 1177.00 1177.00 \N 873 853 27 0.0 0.0 2020-02-27 02:31:51.556943 2020-02-27 02:31:51.556943 15 0.00 1177.00 1177.00 \N 874 854 21 999.0 550.0 2020-02-27 03:01:44.06285 2020-02-27 03:01:44.06285 21 0.00 1043.00 1043.00 \N 875 856 27 200.0 0.0 2020-02-28 02:29:48.585053 2020-02-28 02:29:48.585053 15 0.00 1377.00 1377.00 \N 876 856 27 200.0 0.0 2020-02-28 02:29:48.705182 2020-02-28 02:29:48.705182 15 0.00 1377.00 1377.00 \N 877 858 2 968.0 1205.0 2020-02-28 02:33:01.321341 2020-02-28 02:33:01.321341 2 0.00 934.00 934.00 \N 878 859 2 2547.99 651.0 2020-02-29 02:31:34.706826 2020-02-29 02:31:34.706826 2 1800.00 1030.00 2830.00 \N 879 857 21 100.0 320.0 2020-02-29 02:45:53.288042 2020-02-29 02:45:53.288042 19 0.00 823.00 823.00 \N 880 862 2 1149.0 90.0 2020-03-01 02:23:53.661622 2020-03-01 02:23:53.661622 2 400.00 840.00 1240.00 \N 881 860 8 4254.0 1200.0 2020-03-01 02:37:25.399488 2020-03-01 02:37:25.399488 10 3500.00 302.00 3802.00 \N 882 861 21 1699.0 0.0 2020-03-01 03:01:07.230133 2020-03-01 03:01:07.230133 19 0.00 823.00 823.00 \N 883 863 27 649.0 0.0 2020-03-01 22:01:04.780191 2020-03-01 22:01:04.780191 15 0.00 951.00 951.00 \N 884 865 2 1568.0 0.0 2020-03-03 02:34:57.652287 2020-03-03 02:34:57.652287 2 0.00 840.00 840.00 \N 885 865 2 1568.0 0.0 2020-03-03 02:34:57.97528 2020-03-03 02:34:57.97528 2 0.00 840.00 840.00 \N 886 866 27 529.0 0.0 2020-03-03 02:39:05.422783 2020-03-03 02:39:05.422783 15 0.00 1480.00 1480.00 \N 887 864 21 569.0 0.0 2020-03-03 03:01:33.843099 2020-03-03 03:01:33.843099 19 0.00 823.00 823.00 \N 888 864 21 569.0 0.0 2020-03-03 03:01:34.03716 2020-03-03 03:01:34.03716 19 0.00 823.00 823.00 \N 889 868 2 1799.0 550.0 2020-03-04 02:25:57.409494 2020-03-04 02:25:57.409494 2 0.00 740.00 740.00 \N 890 869 27 0.0 0.0 2020-03-04 02:30:08.351362 2020-03-04 02:30:08.351362 15 500.00 980.00 1480.00 \N 891 867 21 100.0 400.0 2020-03-04 03:06:59.597319 2020-03-04 03:06:59.597319 19 0.00 523.00 523.00 \N 892 870 2 400.0 0.0 2020-03-05 02:16:29.959584 2020-03-05 02:16:29.959584 2 200.00 940.00 1140.00 \N 893 871 27 599.0 0.0 2020-03-05 02:30:04.928479 2020-03-05 02:30:04.928479 15 1000.00 579.00 1579.00 \N 894 872 21 0.0 0.0 2020-03-05 02:57:09.734725 2020-03-05 02:57:09.734725 19 0.00 523.00 523.00 \N 895 874 2 200.0 0.0 2020-03-06 02:25:48.534036 2020-03-06 02:25:48.534036 2 0.00 1140.00 1140.00 \N 896 873 27 1188.0 0.0 2020-03-06 02:33:27.450289 2020-03-06 02:33:27.450289 15 0.00 918.00 918.00 \N 897 875 27 0.0 0.0 2020-03-07 02:29:49.925245 2020-03-07 02:29:49.925245 15 0.00 918.00 918.00 \N 898 877 2 1678.0 0.0 2020-03-07 02:51:41.233216 2020-03-07 02:51:41.233216 2 1000.00 1418.00 2418.00 \N 899 876 21 2155.0 800.0 2020-03-07 18:24:06.781657 2020-03-07 18:24:06.781657 19 0.00 679.00 679.00 \N 900 879 2 3058.0 1105.0 2020-03-08 02:21:13.503203 2020-03-08 02:21:13.503203 2 530.00 1151.00 1681.00 ME PAGUE ARETES COBRADOS CON TERMINAL DE $330 QUEDA EN CORTE $200 \N 901 878 8 1927.99 0.0 2020-03-08 02:31:00.16621 2020-03-08 02:31:00.16621 15 500.00 1817.00 2317.00 \N 902 880 21 0.0 0.0 2020-03-08 02:57:06.089298 2020-03-08 02:57:06.089298 19 0.00 679.00 679.00 \N 903 882 2 1398.0 0.0 2020-03-08 22:00:40.830688 2020-03-08 22:00:40.830688 2 1800.00 749.00 2549.00 \N 904 881 27 0.0 1050.0 2020-03-08 22:15:49.685418 2020-03-08 22:15:49.685418 15 0.00 767.00 767.00 \N 905 885 26 0.0 0.0 2020-03-10 02:54:39.904131 2020-03-10 02:54:39.904131 10 0.00 767.00 767.00 \N 906 883 21 1048.0 0.0 2020-03-10 02:59:05.931864 2020-03-10 02:59:05.931864 21 1000.00 727.00 1727.00 \N 907 884 2 100.0 0.0 2020-03-11 02:20:59.687799 2020-03-11 02:20:59.687799 2 0.00 849.00 849.00 \N 908 886 8 5473.0 0.0 2020-03-11 02:58:20.052102 2020-03-11 02:58:20.052102 10 5300.00 940.00 6240.00 FALTA PONER $41 DE KEYLA \N 909 887 21 0.0 0.0 2020-03-11 03:02:20.687325 2020-03-11 03:02:20.687325 19 0.00 727.00 727.00 \N 910 888 2 300.0 100.0 2020-03-12 02:23:28.762906 2020-03-12 02:23:28.762906 2 700.00 949.00 1649.00 NO SE REFLEJO EN EL CORTE $600 ABONO DE PAOLA SI SE REFLEJO EN SU CUENTA \N 911 890 27 884.0 0.0 2020-03-12 02:32:29.321609 2020-03-12 02:32:29.321609 15 0.00 940.00 940.00 \N 912 891 2 1199.0 0.0 2020-03-12 02:39:10.408541 2020-03-12 02:39:10.408541 2 1200.00 948.00 2148.00 \N 913 889 21 4196.0 0.0 2020-03-12 03:02:40.940592 2020-03-12 03:02:40.940592 19 500.00 926.00 1426.00 \N 914 893 8 2094.99 0.0 2020-03-13 02:47:58.439688 2020-03-13 02:47:58.439688 10 2000.00 1035.00 3035.00 FALTAN $80 keyla NO PUSO EL FALTANTE DEL MARTES \N 915 895 27 2597.0 0.0 2020-03-14 02:32:39.049153 2020-03-14 02:32:39.049153 15 2700.00 932.00 3632.00 \N 916 894 2 5791.99 0.0 2020-03-14 02:35:05.628493 2020-03-14 02:35:05.628493 2 2750.00 896.00 3646.00 \N 917 892 21 699.0 0.0 2020-03-14 03:01:41.617295 2020-03-14 03:01:41.617295 21 500.00 1125.00 1625.00 \N 918 897 8 3708.0 1050.0 2020-03-15 02:23:34.976964 2020-03-15 02:23:34.976964 8 1900.00 830.00 2730.00 FALTAN $100 DE LA TERMINAL \N 919 896 2 1048.0 0.0 2020-03-15 02:35:11.81351 2020-03-15 02:35:11.81351 9 0.00 1045.00 1045.00 \N 920 898 21 899.0 100.0 2020-03-15 03:00:35.318569 2020-03-15 03:00:35.318569 21 1000.00 924.00 1924.00 \N 921 900 2 2229.1 0.0 2020-03-15 22:00:18.448648 2020-03-15 22:00:18.448648 2 2300.00 974.00 3274.00 \N 922 902 27 189.0 0.0 2020-03-16 22:05:36.070245 2020-03-16 22:05:36.070245 15 500.00 519.00 1019.00 \N 923 901 2 2627.0 0.0 2020-03-16 22:07:20.815605 2020-03-16 22:07:20.815605 2 970.00 1203.00 2173.00 RETIRE $970 ME PAGUE ARETES COBRADOS CON TERMINAL DE $270\r\nQUEDA EN CORTE $700 \N 924 899 21 2099.0 0.0 2020-03-17 02:18:46.962909 2020-03-17 02:18:46.962909 19 0.00 924.00 924.00 \N 925 903 2 4794.0 25.0 2020-03-18 02:24:12.886715 2020-03-18 02:24:12.886715 2 4610.00 1362.00 5972.00 retire $4610 me pague aretes cobrados con terminal $310 quedo en el corte $4300 \N 926 905 27 869.0 0.0 2020-03-18 02:30:41.024463 2020-03-18 02:30:41.024463 27 500.00 888.00 1388.00 \N 927 904 18 1924.0 150.0 2020-03-18 02:59:14.872914 2020-03-18 02:59:14.872914 18 1300.00 721.00 2021.00 \N 928 906 2 1545.0 0.0 2020-03-19 02:26:01.893608 2020-03-19 02:26:01.893608 2 1700.00 1207.00 2907.00 \N 929 908 27 1157.0 0.0 2020-03-19 02:29:53.920912 2020-03-19 02:29:53.920912 15 0.00 888.00 888.00 \N 930 907 18 1697.0 0.0 2020-03-19 02:49:17.843053 2020-03-19 02:49:17.843053 18 500.00 520.00 1020.00 \N 931 910 2 2128.0 0.0 2020-03-20 02:27:08.080698 2020-03-20 02:27:08.080698 7 1500.00 1005.00 2505.00 \N 932 911 21 823.0 0.0 2020-03-20 02:55:00.945598 2020-03-20 02:55:00.945598 19 0.00 520.00 520.00 \N 933 911 21 823.0 0.0 2020-03-20 02:55:01.113503 2020-03-20 02:55:01.113503 19 0.00 520.00 520.00 \N 934 909 8 4235.0 1500.0 2020-03-20 02:55:26.899604 2020-03-20 02:55:26.899604 10 2000.00 623.00 2623.00 \N 935 913 2 528.0 0.0 2020-03-21 02:25:20.039575 2020-03-21 02:25:20.039575 2 0.00 1054.00 1054.00 \N 936 914 27 0.0 0.0 2020-03-21 02:28:55.913869 2020-03-21 02:28:55.913869 27 0.00 623.00 623.00 \N 937 912 18 3296.0 0.0 2020-03-21 02:50:33.50524 2020-03-21 02:50:33.50524 18 1500.00 717.00 2217.00 \N 938 917 8 200.0 0.0 2020-03-22 01:39:15.137864 2020-03-22 01:39:15.137864 10 200.00 623.00 823.00 \N 939 916 2 3066.0 1205.0 2020-03-22 01:43:08.031604 2020-03-22 01:43:08.031604 7 960.00 836.00 1796.00 retire $960 de lo cual me pague $260 de aretes pagados con terminal queda en corte $700 \N 940 915 21 2038.0 0.0 2020-03-22 02:52:36.792359 2020-03-22 02:52:36.792359 21 2000.00 755.00 2755.00 \N 941 918 27 0.0 0.0 2020-03-22 21:58:59.677407 2020-03-22 21:58:59.677407 27 0.00 623.00 623.00 \N 942 921 18 0.0 0.0 2020-03-24 02:01:28.75944 2020-03-24 02:01:28.75944 18 0.00 755.00 755.00 \N 943 919 27 1105.99 0.0 2020-03-24 02:27:19.037849 2020-03-24 02:27:19.037849 15 500.00 500.00 1000.00 \N 944 920 2 918.0 0.0 2020-03-24 02:28:11.869099 2020-03-24 02:28:11.869099 2 1000.00 754.00 1754.00 \N 945 922 27 1588.0 0.0 2020-03-25 02:01:01.232514 2020-03-25 02:01:01.232514 15 700.00 529.00 1229.00 KEYLA SE CONFUNDIO AL HACER EL CORTE EL 23 YA QUEDO BIEN \N 946 923 2 600.0 0.0 2020-03-25 02:10:35.430175 2020-03-25 02:10:35.430175 2 0.00 754.00 754.00 \N 947 925 21 0.0 0.0 2020-03-27 01:14:59.316129 2020-03-27 01:14:59.316129 21 0.00 755.00 755.00 \N 948 926 21 1845.0 0.0 2020-03-29 01:08:28.490349 2020-03-29 01:08:28.490349 21 1900.00 700.00 2600.00 \N 949 924 26 867.0 0.0 2020-03-31 19:16:02.276307 2020-03-31 19:16:02.276307 26 350.00 527.00 877.00 \N 950 928 18 16444.0 0.0 2020-05-04 05:34:18.659091 2020-05-04 05:34:18.659091 18 0.00 700.00 700.00 \N 951 927 9 12243.01 0.0 2020-05-04 05:35:13.266472 2020-05-04 05:35:13.266472 7 0.00 754.00 754.00 \N 952 930 9 0.0 0.0 2020-05-04 05:35:36.255202 2020-05-04 05:35:36.255202 7 0.00 754.00 754.00 \N 953 929 8 1248.0 0.0 2020-05-04 05:36:31.890293 2020-05-04 05:36:31.890293 10 0.00 527.00 527.00 \N 954 933 9 14163.0 0.0 2020-06-26 21:06:25.501954 2020-06-26 21:06:25.501954 9 2077.00 1154.00 3231.00 FALTAN $250 QUE TIENE QUE PONER ROCIO \N 955 932 8 5851.1 0.0 2020-07-01 19:10:44.76954 2020-07-01 19:10:44.76954 10 0.00 527.00 527.00 \N 956 934 2 5620.0 220.0 2020-07-02 21:59:01.959661 2020-07-02 21:59:01.959661 2 4500.00 966.00 5466.00 \N 957 931 21 43255.65 0.0 2020-07-03 01:50:57.229944 2020-07-03 01:50:57.229944 21 1049.00 200.00 1249.00 \N 958 935 2 2117.0 900.0 2020-07-03 22:00:17.924627 2020-07-03 22:00:17.924627 2 1500.00 683.00 2183.00 \N 959 936 18 1396.0 0.0 2020-07-04 01:19:03.62649 2020-07-04 01:19:03.62649 21 0.00 200.00 200.00 \N 960 938 9 879.2 0.0 2020-07-04 23:09:30.478983 2020-07-04 23:09:30.478983 7 0.00 683.00 683.00 VENTA POR INTERNET \N 961 937 18 9953.0 3000.0 2020-07-05 00:07:14.358984 2020-07-05 00:07:14.358984 19 4100.00 642.00 4742.00 \N 962 939 18 5197.0 0.0 2020-07-06 01:52:19.456953 2020-07-06 01:52:19.456953 18 0.00 642.00 642.00 \N 963 940 9 1599.0 0.0 2020-07-06 01:53:20.901561 2020-07-06 01:53:20.901561 9 0.00 683.00 683.00 VENTA POR INSTAGRAM \N 964 941 2 8150.0 0.0 2020-07-07 00:18:01.164669 2020-07-07 00:18:01.164669 2 7960.00 873.00 8833.00 \N 965 942 18 7345.0 0.0 2020-07-07 00:58:50.821227 2020-07-07 00:58:50.821227 18 7347.00 640.00 7987.00 \N 966 943 2 5879.0 0.0 2020-07-07 23:41:04.766797 2020-07-07 23:41:04.766797 2 6000.00 752.00 6752.00 \N 967 944 18 5894.0 0.0 2020-07-08 00:31:58.00167 2020-07-08 00:31:58.00167 18 1989.00 945.00 2934.00 \N 968 945 2 3947.0 0.0 2020-07-08 23:24:51.802554 2020-07-08 23:24:51.802554 2 3900.00 799.00 4699.00 \N 969 946 18 5397.2 0.0 2020-07-09 00:29:40.840235 2020-07-09 00:29:40.840235 18 2300.00 1443.00 3743.00 \N 970 947 2 969.0 0.0 2020-07-10 00:01:18.57609 2020-07-10 00:01:18.57609 2 900.00 868.00 1768.00 \N 971 948 18 9655.0 0.0 2020-07-10 00:39:09.471155 2020-07-10 00:39:09.471155 18 9297.00 1301.00 10598.00 \N 972 949 2 0.0 0.0 2020-07-10 22:08:48.287009 2020-07-10 22:08:48.287009 2 0.00 868.00 868.00 \N 973 950 18 3209.0 0.0 2020-07-11 00:42:22.544371 2020-07-11 00:42:22.544371 18 411.00 1301.00 1712.00 \N 974 951 2 1499.0 400.0 2020-07-11 22:31:44.227497 2020-07-11 22:31:44.227497 2 0.00 468.00 468.00 \N 975 953 2 1098.99 0.0 2020-07-13 23:58:00.421086 2020-07-13 23:58:00.421086 2 1000.00 567.00 1567.00 \N 976 952 18 10284.0 0.0 2020-07-14 01:06:03.262663 2020-07-14 01:06:03.262663 18 8300.00 1218.00 9518.00 SOBRAN $512 \N 977 954 2 0.0 0.0 2020-07-14 23:45:54.291611 2020-07-14 23:45:54.291611 2 0.00 567.00 567.00 \N 978 955 18 1499.0 0.0 2020-07-15 00:03:31.238059 2020-07-15 00:03:31.238059 18 1500.00 1217.00 2717.00 \N 979 956 2 3198.0 0.0 2020-07-15 23:07:27.446232 2020-07-15 23:07:27.446232 2 0.00 567.00 567.00 \N 980 957 18 3157.0 0.0 2020-07-16 00:04:00.079064 2020-07-16 00:04:00.079064 18 1900.00 975.00 2875.00 \N 981 958 18 2949.99 0.0 2020-07-16 23:14:42.616279 2020-07-16 23:14:42.616279 18 2700.00 1224.99 3924.99 \N 982 959 2 5554.0 1125.0 2020-07-17 23:52:22.605884 2020-07-17 23:52:22.605884 2 2200.00 659.00 2859.00 \N 983 960 21 4294.01 400.0 2020-07-18 00:46:29.715009 2020-07-18 00:46:29.715009 19 2000.00 1125.00 3125.00 \N 984 961 2 1924.0 340.0 2020-07-18 23:43:33.872045 2020-07-18 23:43:33.872045 2 1500.00 743.00 2243.00 \N 985 962 18 5343.0 1348.99 2020-07-19 00:37:23.703684 2020-07-19 00:37:23.703684 18 2000.00 1023.00 3023.00 \N 986 963 2 947.0 0.0 2020-07-20 23:53:20.76167 2020-07-20 23:53:20.76167 2 1000.00 690.00 1690.00 \N 987 964 21 1604.5 0.0 2020-07-21 00:36:49.482947 2020-07-21 00:36:49.482947 19 1200.00 1028.00 2228.00 \N 988 965 18 11352.0 0.0 2020-07-22 00:32:43.969617 2020-07-22 00:32:43.969617 18 600.00 945.00 1545.00 abono paola fu transferencia \N 989 966 18 2207.0 0.0 2020-07-23 00:21:45.413803 2020-07-23 00:21:45.413803 18 2200.00 952.00 3152.00 \N 990 967 2 4376.0 0.0 2020-07-24 00:07:16.319983 2020-07-24 00:07:16.319983 2 1500.00 550.00 2050.00 \N 991 968 18 3447.0 0.0 2020-07-24 00:41:36.432747 2020-07-24 00:41:36.432747 18 1700.00 900.00 2600.00 \N 992 970 2 3097.0 1440.0 2020-07-25 00:17:25.526904 2020-07-25 00:17:25.526904 2 500.00 608.00 1108.00 \N 993 970 2 3097.0 1440.0 2020-07-25 00:17:25.738908 2020-07-25 00:17:25.738908 2 500.00 608.00 1108.00 \N 994 969 18 7195.0 0.0 2020-07-25 01:11:46.487773 2020-07-25 01:11:46.487773 18 6131.00 765.00 6896.00 \N 995 971 21 1449.5 0.0 2020-07-26 00:36:19.776237 2020-07-26 00:36:19.776237 21 0.00 765.00 765.00 \N 996 972 2 225.01 0.0 2020-07-28 00:01:46.844279 2020-07-28 00:01:46.844279 2 200.00 633.00 833.00 \N 997 973 21 3798.0 0.0 2020-07-28 00:25:51.737947 2020-07-28 00:25:51.737947 21 2500.00 1063.00 3563.00 \N 998 974 2 4446.0 0.0 2020-07-28 23:59:44.763958 2020-07-28 23:59:44.763958 2 4500.00 579.00 5079.00 \N 999 975 21 500.0 0.0 2020-07-29 00:30:37.162949 2020-07-29 00:30:37.162949 21 500.00 1063.00 1563.00 \N 1000 976 2 0.0 0.0 2020-07-30 00:05:58.878847 2020-07-30 00:05:58.878847 2 0.00 579.00 579.00 \N 1001 976 2 0.0 0.0 2020-07-30 00:06:21.335286 2020-07-30 00:06:21.335286 2 0.00 579.00 579.00 \N 1002 977 18 2395.99 0.0 2020-07-30 00:34:59.029807 2020-07-30 00:34:59.029807 18 1200.00 859.99 2059.99 \N 1003 979 18 5196.0 0.0 2020-07-31 00:39:56.426924 2020-07-31 00:39:56.426924 18 2200.00 757.00 2957.00 \N 1004 978 2 0.0 0.0 2020-07-31 16:25:39.862073 2020-07-31 16:25:39.862073 2 0.00 579.00 579.00 \N 1005 980 2 0.0 0.0 2020-07-31 23:59:57.91483 2020-07-31 23:59:57.91483 2 0.00 579.00 579.00 \N 1006 981 18 5397.0 0.0 2020-08-01 00:30:03.832557 2020-08-01 00:30:03.832557 18 5000.00 840.00 5840.00 SOBRARON 183 , 500 DE LA PAÑALERA FUE TRANFERENCIA \N 1007 982 18 1000.0 0.0 2020-08-01 00:49:08.837721 2020-08-01 00:49:08.837721 18 1000.00 840.00 1840.00 \N 1008 983 2 499.99 740.0 2020-08-01 23:57:23.103739 2020-08-01 23:57:23.103739 2 0.00 339.00 339.00 \N 1009 984 18 2398.0 0.0 2020-08-02 00:35:09.110683 2020-08-02 00:35:09.110683 21 2500.00 738.00 3238.00 \N 1010 985 2 2498.0 700.0 2020-08-04 00:00:28.934705 2020-08-04 00:00:28.934705 2 900.00 737.00 1637.00 \N 1011 986 18 12616.15 0.0 2020-08-04 00:49:37.126856 2020-08-04 00:49:37.126856 18 10716.00 738.15 11454.15 FALTARON 500 \N 1012 987 2 2898.0 564.0 2020-08-04 23:51:11.949413 2020-08-04 23:51:11.949413 2 1500.00 722.00 2222.00 \N 1013 988 18 4123.0 0.0 2020-08-05 00:56:34.650077 2020-08-05 00:56:34.650077 18 4087.00 774.15 4861.15 \N 1014 989 2 1548.0 0.0 2020-08-06 00:06:57.109107 2020-08-06 00:06:57.109107 2 0.00 771.00 771.00 \N 1015 990 18 9430.0 0.0 2020-08-06 00:40:18.498984 2020-08-06 00:40:18.498984 18 5100.00 685.15 5785.15 \N 1016 991 18 1939.0 0.0 2020-08-06 23:05:07.119831 2020-08-06 23:05:07.119831 18 500.00 625.00 1125.00 \N 1017 992 2 550.0 0.0 2020-08-08 00:28:47.614737 2020-08-08 00:28:47.614737 2 500.00 821.00 1321.00 \N 1018 993 21 2798.0 0.0 2020-08-08 00:37:23.613009 2020-08-08 00:37:23.613009 21 1900.00 923.00 2823.00 \N 1019 994 21 1099.0 0.0 2020-08-08 02:42:41.103946 2020-08-08 02:42:41.103946 21 1099.00 923.00 2022.00 \N 1020 996 2 1654.0 1440.0 2020-08-08 23:56:01.498014 2020-08-08 23:56:01.498014 2 0.00 1035.00 1035.00 \N 1021 995 21 2298.0 0.0 2020-08-10 21:49:10.160835 2020-08-10 21:49:10.160835 18 1000.00 1222.00 2222.00 \N 1022 997 21 1399.0 0.0 2020-08-11 16:31:49.467172 2020-08-11 16:31:49.467172 17 1700.00 921.00 2621.00 \N 1023 998 21 3098.0 0.0 2020-08-12 00:30:17.855185 2020-08-12 00:30:17.855185 17 3100.00 919.00 4019.00 $1499 SE VENDIO CON SERVICIO A DOMICILIO LO TIENE ROCIO \N 1024 999 21 1300.0 0.0 2020-08-13 00:19:04.027415 2020-08-13 00:19:04.027415 17 0.00 919.00 919.00 el apartado fue transferencia \N 1025 1000 21 2098.0 0.0 2020-08-13 00:38:25.860715 2020-08-13 00:38:25.860715 17 2100.00 917.00 3017.00 \N 1026 1001 2 1735.0 0.0 2020-08-13 23:56:41.726312 2020-08-13 23:56:41.726312 2 1600.00 1170.00 2770.00 \N 1027 1002 21 709.0 0.0 2020-08-14 01:01:51.763544 2020-08-14 01:01:51.763544 19 700.00 926.00 1626.00 \N 1028 1003 2 5843.0 25.0 2020-08-14 23:39:38.214627 2020-08-14 23:39:38.214627 2 3400.00 1290.00 4690.00 GRACIELA MONTIEL HIZO $500 TRANSFERENCIA A SAMANTHA CUANDO APARTO CONQUES ROSAS EN #4.5 \N 1029 1004 21 569.0 0.0 2020-08-15 19:03:07.568988 2020-08-15 19:03:07.568988 21 600.00 895.00 1495.00 \N 1030 1005 2 7144.0 690.0 2020-08-15 23:50:58.170588 2020-08-15 23:50:58.170588 2 6600.00 1144.00 7744.00 ENTREGUE $4000 DE EXCEDENTE A SAMANTHA \r\nQUEDO CORTE DE $2600 \N 1031 1006 21 2099.0 0.0 2020-08-16 00:31:53.057965 2020-08-16 00:31:53.057965 21 0.00 895.00 895.00 \N 1032 1007 2 1799.99 0.0 2020-08-17 23:53:16.050654 2020-08-17 23:53:16.050654 2 1700.00 1244.00 2944.00 \N 1033 1008 21 1599.0 0.0 2020-08-18 00:17:59.032321 2020-08-18 00:17:59.032321 21 1600.00 811.00 2411.00 \N 1034 1009 2 1999.0 40.0 2020-08-18 23:53:46.489893 2020-08-18 23:53:46.489893 2 0.00 1304.00 1304.00 \N 1035 1010 18 4605.0 0.0 2020-08-19 00:27:50.963733 2020-08-19 00:27:50.963733 18 3558.00 759.00 4317.00 VENTA DE ARETES FUE TERMINAL \N 1036 1011 2 1599.0 0.0 2020-08-19 16:03:10.180398 2020-08-19 16:03:10.180398 2 1600.00 1303.00 2903.00 \N 1037 1012 2 2000.0 0.0 2020-08-20 00:01:25.581454 2020-08-20 00:01:25.581454 2 2000.00 1303.00 3303.00 \N 1038 1013 18 5806.0 0.0 2020-08-20 00:50:17.251934 2020-08-20 00:50:17.251934 18 6000.00 565.00 6565.00 \N 1039 1014 2 580.0 0.0 2020-08-20 23:51:48.131097 2020-08-20 23:51:48.131097 2 1000.00 1133.00 2133.00 HAY $250 MAS EN EFECTIVO EN CAJA DE UNA BLUSA QUE SE VENDIÓ Y ESTA EN SISTEMA DE LA CAMPIÑA \N 1040 1015 18 1046.0 0.0 2020-08-21 00:35:10.383231 2020-08-21 00:35:10.383231 18 1000.00 611.00 1611.00 \N 1041 1016 2 819.0 0.0 2020-08-22 00:07:39.874018 2020-08-22 00:07:39.874018 2 700.00 1252.00 1952.00 \N 1042 1017 21 4498.0 0.0 2020-08-22 00:32:18.867537 2020-08-22 00:32:18.867537 21 3000.00 610.00 3610.00 \N 1043 1018 2 1200.0 0.0 2020-08-22 23:59:51.642893 2020-08-22 23:59:51.642893 2 2300.00 1152.00 3452.00 hay 1000 pesos mas de efectivo en caja, se vendió 3 cosas de sistema de campiña de $300 y 1 vestido de $100 que no esta en el sistema \r\nquedo apuntado los códigos \N 1044 1019 21 2599.0 0.0 2020-08-23 00:41:09.889471 2020-08-23 00:41:09.889471 21 1500.00 810.00 2310.00 \N 1045 1020 2 4320.0 0.0 2020-08-24 23:54:22.576122 2020-08-24 23:54:22.576122 2 1400.00 1437.00 2837.00 \N 1046 1021 18 5385.0 0.0 2020-08-25 01:11:37.834437 2020-08-25 01:11:37.834437 18 4731.00 465.00 5196.00 \N 1047 1022 2 1450.0 0.0 2020-08-25 23:54:06.303273 2020-08-25 23:54:06.303273 9 1500.00 1387.00 2887.00 \N 1048 1023 18 12262.98 0.0 2020-08-26 01:25:16.170556 2020-08-26 01:25:16.170556 18 6700.00 930.00 7630.00 \N 1049 1024 2 800.0 0.0 2020-08-26 23:52:23.323815 2020-08-26 23:52:23.323815 2 900.00 1287.00 2187.00 \N 1050 1025 21 11295.0 1119.0 2020-08-27 01:28:16.157432 2020-08-27 01:28:16.157432 19 8500.00 911.00 9411.00 \N 1051 1026 2 2149.0 0.0 2020-08-27 23:56:44.894878 2020-08-27 23:56:44.894878 2 1800.00 1087.00 2887.00 SE VENDIO UNA FALDA DE COMERCIAL EN $350 \N 1052 1027 18 3318.0 125.0 2020-08-28 01:27:56.880889 2020-08-28 01:27:56.880889 18 1500.00 585.00 2085.00 \N 1053 1028 2 1038.99 0.0 2020-08-28 23:50:05.705336 2020-08-28 23:50:05.705336 2 1000.00 937.00 1937.00 \N 1054 1029 18 15206.0 0.0 2020-08-29 01:09:35.435525 2020-08-29 01:09:35.435525 18 5347.00 791.00 6138.00 \N 1055 1030 2 8966.0 4000.0 2020-08-29 23:44:00.93926 2020-08-29 23:44:00.93926 2 5100.00 803.00 5903.00 \N 1056 1031 21 2419.0 0.0 2020-08-30 01:03:21.090663 2020-08-30 01:03:21.090663 21 1900.00 910.00 2810.00 \N 1057 1032 2 1999.0 0.0 2020-08-31 23:59:12.754899 2020-08-31 23:59:12.754899 2 1800.00 1002.00 2802.00 \N 1058 1033 18 3418.0 0.0 2020-09-01 00:32:30.835809 2020-09-01 00:32:30.835809 18 0.00 910.00 910.00 \N 1059 1035 2 1199.0 0.0 2020-09-01 23:51:37.494053 2020-09-01 23:51:37.494053 2 1300.00 901.00 2201.00 \N 1060 1034 18 3626.0 0.0 2020-09-02 01:17:24.114412 2020-09-02 01:17:24.114412 18 4000.00 536.00 4536.00 \N 1061 1036 18 500.0 0.0 2020-09-02 01:35:01.387059 2020-09-02 01:35:01.387059 18 0.00 536.00 536.00 \N 1062 1037 2 789.0 50.0 2020-09-03 00:58:42.436927 2020-09-03 00:58:42.436927 2 1200.00 740.00 1940.00 hay $300 de mas de una venta de la campiña \N 1063 1038 21 3786.0 0.0 2020-09-03 00:58:42.676833 2020-09-03 00:58:42.676833 19 3400.00 522.00 3922.00 \N 1064 1039 21 1399.0 0.0 2020-09-03 01:13:19.429065 2020-09-03 01:13:19.429065 21 1300.00 621.00 1921.00 \N 1065 1040 2 5595.0 0.0 2020-09-04 00:46:19.012692 2020-09-04 00:46:19.012692 2 1900.00 1088.00 2988.00 Se hizo una venta de $100 de una blusa que no estaba en sistema (blu-0011) \N 1066 1041 21 5415.0 400.0 2020-09-04 00:56:56.112755 2020-09-04 00:56:56.112755 19 1400.00 859.00 2259.00 Reloj 1000 de apartado con Transferencia. se marco como tarjeta \N 1067 1042 2 6295.0 663.0 2020-09-05 00:04:45.131266 2020-09-05 00:04:45.131266 2 4100.00 941.00 5041.00 HAY $320 MAS DE EFECTIVO EN CAJA, QUE SAMANTA ME DIO PARA TENER FERIA \N 1068 1043 21 13345.0 0.0 2020-09-05 01:20:13.794578 2020-09-05 01:20:13.794578 19 6500.00 1158.00 7658.00 \N 1069 1044 21 299.0 0.0 2020-09-06 01:00:29.890384 2020-09-06 01:00:29.890384 19 0.00 1058.00 1058.00 \N 1070 1045 2 780.0 0.0 2020-09-08 00:15:43.887379 2020-09-08 00:15:43.887379 2 800.00 921.00 1721.00 \N 1071 1046 21 5197.0 1501.0 2020-09-08 01:09:45.002196 2020-09-08 01:09:45.002196 21 2200.00 1054.00 3254.00 SE RETIRAN $2,700 POR LA CANCELACION CONQUE Y VENTA DE LA CANGURERA. DE LA SEÑORA MAYRA \N 1072 1047 25 1799.0 0.0 2020-09-08 20:15:17.456711 2020-09-08 20:15:17.456711 25 1000.00 921.00 1921.00 Retiro de apartado que fueron depositados \N 1073 1048 21 6334.0 0.0 2020-09-09 01:11:59.072488 2020-09-09 01:11:59.072488 17 2500.00 739.00 3239.00 \N 1074 1049 25 2746.99 0.0 2020-09-09 05:58:05.229394 2020-09-09 05:58:05.229394 25 1100.00 920.00 2020.00 \N 1075 1050 2 4386.0 0.0 2020-09-09 23:58:54.651965 2020-09-09 23:58:54.651965 2 2400.00 1164.00 3564.00 \N 1076 1051 21 7643.0 0.0 2020-09-10 01:08:15.981114 2020-09-10 01:08:15.981114 21 4300.00 613.00 4913.00 \N 1077 1053 2 4615.0 0.0 2020-09-11 00:04:46.256749 2020-09-11 00:04:46.256749 2 2000.00 981.00 2981.00 \N 1078 1052 18 5745.0 0.0 2020-09-11 01:26:35.326741 2020-09-11 01:26:35.326741 18 2700.00 560.00 3260.00 \N 1079 1054 2 1877.0 0.0 2020-09-11 23:45:35.937201 2020-09-11 23:45:35.937201 2 2000.00 858.00 2858.00 \N 1080 1055 18 3395.0 0.0 2020-09-12 01:03:26.480453 2020-09-12 01:03:26.480453 18 700.00 659.00 1359.00 \N 1081 1056 2 3626.0 15.0 2020-09-12 23:57:53.573338 2020-09-12 23:57:53.573338 2 700.00 802.00 1502.00 hay efectivo en caja $1502+$999 que vendió samanta= 2501 \N 1082 1057 18 6284.0 0.0 2020-09-13 01:47:37.16995 2020-09-13 01:47:37.16995 18 2787.00 659.00 3446.00 \N 1083 1058 2 2797.0 0.0 2020-09-14 23:58:00.950802 2020-09-14 23:58:00.950802 2 1500.00 830.00 2330.00 HAY 1801 MAS 529= $2330 DE UNA BOLSA APARTADA DE PAOLA LASHES \N 1084 1059 21 5427.01 0.0 2020-09-15 01:13:59.199198 2020-09-15 01:13:59.199198 19 2800.00 1358.00 4158.00 \N 1085 1060 2 8394.0 0.0 2020-09-16 00:07:54.649354 2020-09-16 00:07:54.649354 2 2000.00 779.00 2779.00 \N 1086 1061 18 9099.0 0.0 2020-09-16 01:17:22.575487 2020-09-16 01:17:22.575487 18 4000.00 1164.00 5164.00 FALTAN $330 \N 1087 1062 2 899.0 0.0 2020-09-16 21:55:04.301987 2020-09-16 21:55:04.301987 2 700.00 978.00 1678.00 \N 1088 1063 21 1699.0 0.0 2020-09-16 22:19:21.109513 2020-09-16 22:19:21.109513 21 1000.00 963.00 1963.00 \N 1089 1064 21 1998.0 0.0 2020-09-17 18:49:01.606779 2020-09-17 18:49:01.606779 19 0.00 963.00 963.00 \N 1090 1065 2 5388.0 2135.0 2020-09-18 00:20:21.909706 2020-09-18 00:20:21.909706 2 500.00 879.00 1379.00 \N 1091 1066 21 6995.0 0.0 2020-09-18 01:02:36.907344 2020-09-18 01:02:36.907344 21 3200.00 1060.00 4260.00 \N 1092 1067 9 3825.0 0.0 2020-09-19 00:32:06.971694 2020-09-19 00:32:06.971694 9 3400.00 605.00 4005.00 \N 1093 1068 21 3103.0 0.0 2020-09-19 01:08:43.129702 2020-09-19 01:08:43.129702 21 1000.00 1058.00 2058.00 \N 1094 1070 21 4066.0 100.0 2020-09-20 01:18:10.065056 2020-09-20 01:18:10.065056 19 3500.00 1007.00 4507.00 \N 1095 1069 9 12457.99 0.0 2020-09-20 01:28:31.36583 2020-09-20 01:28:31.36583 7 7430.00 938.99 8368.99 \N 1096 1072 9 5862.0 0.0 2020-09-22 00:44:57.359949 2020-09-22 00:44:57.359949 7 5967.00 833.99 6800.99 \N 1097 1071 21 8524.0 0.0 2020-09-22 01:02:00.648 2020-09-22 01:02:00.648 21 7000.00 1131.00 8131.00 \N 1098 1074 2 3157.99 20.0 2020-09-23 00:06:15.528109 2020-09-23 00:06:15.528109 2 2100.00 882.00 2982.00 SE LLEVO SAM $1500 QUEDO EN SOBRE $600 \N 1099 1073 21 4005.0 150.0 2020-09-23 01:07:45.97945 2020-09-23 01:07:45.97945 19 2400.00 987.00 3387.00 \N 1100 1075 25 1799.0 0.0 2020-09-23 01:08:56.524728 2020-09-23 01:08:56.524728 25 0.00 882.00 882.00 \N 1101 1077 18 7049.99 0.0 2020-09-24 00:43:10.688626 2020-09-24 00:43:10.688626 18 6900.00 777.99 7677.99 \N 1102 1076 2 5562.0 650.0 2020-09-24 00:53:19.171532 2020-09-24 00:53:19.171532 2 2500.00 958.00 3458.00 \N 1103 1079 18 4466.0 0.0 2020-09-25 00:32:01.84495 2020-09-25 00:32:01.84495 18 1900.00 1045.99 2945.99 \N 1104 1078 2 5413.0 0.0 2020-09-25 00:56:17.513808 2020-09-25 00:56:17.513808 2 4300.00 1053.00 5353.00 \N 1105 1080 2 999.0 0.0 2020-09-26 01:02:25.839203 2020-09-26 01:02:25.839203 2 1000.00 1052.00 2052.00 \N 1106 1081 18 5670.0 0.0 2020-09-26 01:02:33.784988 2020-09-26 01:02:33.784988 18 5800.00 915.99 6715.99 \N 1107 1082 2 6243.0 0.0 2020-09-27 00:48:49.638129 2020-09-27 00:48:49.638129 2 6470.00 825.00 7295.00 DE LOS $6470: $170 SON DE ROCIO DE UNOS ARETES QUE VENDIO CON TARJETA Y $2500 SE LLEVO DE EXCEDENTE SAMANTHA $2670+$3800(RETIRO EN SOBRE)=$6470 \N 1108 1083 18 2298.0 0.0 2020-09-27 01:01:10.234016 2020-09-27 01:01:10.234016 18 0.00 915.99 915.99 \N 1109 1085 21 1499.0 0.0 2020-09-27 01:08:25.889152 2020-09-27 01:08:25.889152 21 1500.00 914.00 2414.00 \N 1110 1084 2 548.0 0.0 2020-09-27 01:11:00.98947 2020-09-27 01:11:00.98947 2 200.00 1173.00 1373.00 \N 1111 1086 2 1289.0 0.0 2020-09-29 00:49:44.64085 2020-09-29 00:49:44.64085 2 1400.00 1062.00 2462.00 \N 1112 1087 21 300.0 85.0 2020-09-29 01:05:03.369252 2020-09-29 01:05:03.369252 19 300.00 829.00 1129.00 \N 1113 1088 2 3574.0 0.0 2020-09-30 00:50:05.989161 2020-09-30 00:50:05.989161 2 4500.00 636.00 5136.00 HAY $500 MAS DE APARTADO DE LIALIANA DE UNA BOLSA CLOE FLOREADA QUE LLEGARA EN ESTOS DIAS \N 1114 1089 18 12320.0 0.0 2020-09-30 00:57:24.660285 2020-09-30 00:57:24.660285 18 9725.00 1026.00 10751.00 \N 1115 1091 2 5985.0 0.0 2020-10-01 01:00:22.819252 2020-10-01 01:00:22.819252 2 2500.00 775.00 3275.00 \N 1116 1090 18 4813.0 0.0 2020-10-01 01:45:23.008562 2020-10-01 01:45:23.008562 18 3300.00 1140.00 4440.00 \N 1117 1093 18 2667.0 0.0 2020-10-02 00:17:19.410644 2020-10-02 00:17:19.410644 18 2600.00 1207.00 3807.00 \N 1118 1092 2 4973.0 0.0 2020-10-02 00:56:15.139777 2020-10-02 00:56:15.139777 2 2200.00 950.00 3150.00 Entregue a Sam corte :) \N 1119 1094 2 2828.01 272.0 2020-10-03 00:58:48.783783 2020-10-03 00:58:48.783783 2 700.00 808.00 1508.00 \N 1120 1095 18 7584.0 0.0 2020-10-03 01:05:06.41448 2020-10-03 01:05:06.41448 18 1959.00 1175.00 3134.00 \N 1121 1096 2 2695.0 180.0 2020-10-04 00:53:25.411977 2020-10-04 00:53:25.411977 2 1260.00 716.00 1976.00 ME PAGUE DOS ARETES PAGADOS CON TARJETA $560\r\nY RETIRE EN EL SOBRE $700 \N 1122 1097 21 0.0 0.0 2020-10-04 00:56:56.462994 2020-10-04 00:56:56.462994 21 0.00 1175.00 1175.00 \N 1123 1098 21 1299.0 0.0 2020-10-04 01:07:45.184891 2020-10-04 01:07:45.184891 19 1500.00 974.00 2474.00 \N 1124 1100 2 3166.0 25.0 2020-10-06 00:52:41.293098 2020-10-06 00:52:41.293098 2 1500.00 768.00 2268.00 \N 1125 1099 18 8550.0 0.0 2020-10-07 00:34:41.602981 2020-10-07 00:34:41.602981 18 4900.00 1088.00 5988.00 \N 1126 1101 2 1887.0 0.0 2020-10-07 00:50:29.323324 2020-10-07 00:50:29.323324 2 2100.00 555.00 2655.00 \N 1127 1103 18 1366.0 0.0 2020-10-08 00:49:50.258291 2020-10-08 00:49:50.258291 18 500.00 966.00 1466.00 \N 1128 1102 2 6468.0 0.0 2020-10-08 00:57:02.313172 2020-10-08 00:57:02.313172 2 4400.00 770.00 5170.00 \N 1129 1104 2 3365.0 0.0 2020-10-09 00:53:07.716895 2020-10-09 00:53:07.716895 2 3500.00 635.00 4135.00 \N 1130 1105 18 1318.0 0.0 2020-10-09 01:00:01.883288 2020-10-09 01:00:01.883288 18 1500.00 784.00 2284.00 \N 1131 1107 18 8203.0 0.0 2020-10-10 01:00:30.367425 2020-10-10 01:00:30.367425 18 5030.00 859.00 5889.00 \N 1132 1106 2 3655.0 0.0 2020-10-10 01:33:35.048852 2020-10-10 01:33:35.048852 2 2900.00 890.00 3790.00 \N 1133 1109 2 1498.0 280.0 2020-10-11 00:40:59.417621 2020-10-11 00:40:59.417621 2 1500.00 608.00 2108.00 \N 1134 1108 21 2556.0 0.0 2020-10-11 01:09:44.478807 2020-10-11 01:09:44.478807 21 1400.00 759.00 2159.00 \N 1135 1110 2 2888.0 0.0 2020-10-13 00:47:49.264026 2020-10-13 00:47:49.264026 2 0.00 808.00 808.00 \N 1136 1111 18 1119.0 0.0 2020-10-13 00:49:42.110718 2020-10-13 00:49:42.110718 18 1000.00 878.00 1878.00 \N 1137 1113 2 0.0 0.0 2020-10-14 00:51:22.52623 2020-10-14 00:51:22.52623 2 0.00 808.00 808.00 \N 1138 1112 18 6090.0 0.0 2020-10-14 01:03:51.51078 2020-10-14 01:03:51.51078 18 6000.00 839.00 6839.00 \N 1139 1114 2 2925.0 0.0 2020-10-15 01:03:24.058987 2020-10-15 01:03:24.058987 2 3000.00 733.00 3733.00 \N 1140 1115 18 5065.0 0.0 2020-10-15 01:42:37.626307 2020-10-15 01:42:37.626307 18 4000.00 606.00 4606.00 \N 1141 1116 2 5715.0 0.0 2020-10-16 00:51:44.087375 2020-10-16 00:51:44.087375 2 3100.00 870.00 3970.00 \N 1142 1117 18 18879.0 0.0 2020-10-16 02:14:58.564253 2020-10-16 02:14:58.564253 18 5200.00 980.00 6180.00 \N 1143 1119 18 8194.0 0.0 2020-10-17 00:57:17.284343 2020-10-17 00:57:17.284343 18 4850.00 726.00 5576.00 \N 1144 1118 2 1099.0 180.0 2020-10-17 01:24:52.036387 2020-10-17 01:24:52.036387 2 1200.00 589.00 1789.00 \N 1145 1120 9 6994.0 899.0 2020-10-18 00:53:25.565859 2020-10-18 00:53:25.565859 9 4362.00 733.00 5095.00 \N 1146 1121 21 1645.0 0.0 2020-10-18 00:55:08.692558 2020-10-18 00:55:08.692558 17 500.00 872.00 1372.00 \N 1147 1122 21 0.0 0.0 2020-10-18 22:00:23.768267 2020-10-18 22:00:23.768267 21 0.00 872.00 872.00 \N 1148 1124 21 518.0 0.0 2020-10-20 01:04:57.062637 2020-10-20 01:04:57.062637 21 500.00 890.00 1390.00 \N 1149 1123 2 363.0 0.0 2020-10-20 01:09:28.640633 2020-10-20 01:09:28.640633 2 0.00 733.00 733.00 \N 1150 1126 18 720.0 0.0 2020-10-21 00:54:50.206976 2020-10-21 00:54:50.206976 18 500.00 810.00 1310.00 \N 1151 1125 2 3416.0 0.0 2020-10-21 00:55:01.812442 2020-10-21 00:55:01.812442 2 2400.00 720.00 3120.00 \N 1152 1127 2 529.0 0.0 2020-10-22 00:54:01.12766 2020-10-22 00:54:01.12766 2 0.00 720.00 720.00 \N 1153 1128 18 2898.0 0.0 2020-10-22 00:57:24.923965 2020-10-22 00:57:24.923965 18 2500.00 808.00 3308.00 \N 1154 1129 2 699.0 0.0 2020-10-23 00:56:40.324854 2020-10-23 00:56:40.324854 2 700.00 719.00 1419.00 \N 1155 1130 18 6996.0 0.0 2020-10-23 01:16:31.069458 2020-10-23 01:16:31.069458 18 4500.00 905.00 5405.00 \N 1156 1132 18 10127.0 0.0 2020-10-24 01:00:42.488294 2020-10-24 01:00:42.488294 18 4200.00 752.00 4952.00 \N 1157 1131 2 3366.0 180.0 2020-10-24 01:01:47.399714 2020-10-24 01:01:47.399714 2 1200.00 807.00 2007.00 \N 1158 1134 2 6246.0 0.0 2020-10-25 00:52:12.394812 2020-10-25 00:52:12.394812 2 3500.00 705.00 4205.00 SE \N 1159 1133 18 7963.0 400.0 2020-10-25 01:39:02.309407 2020-10-25 01:39:02.309407 21 5500.00 1017.00 6517.00 \N 1160 1136 2 11590.0 0.0 2020-10-27 02:00:09.197932 2020-10-27 02:00:09.197932 2 6040.00 790.00 6830.00 retire $5700+$340 me pague de unos aretes pagados con tarjeta \N 1161 1135 21 7166.0 0.0 2020-10-27 02:19:46.984412 2020-10-27 02:19:46.984412 19 4500.00 804.00 5304.00 \N 1162 1137 2 3067.0 0.0 2020-10-28 01:54:31.225194 2020-10-28 01:54:31.225194 2 500.00 959.00 1459.00 \N 1163 1138 18 2000.0 0.0 2020-10-28 02:05:25.104559 2020-10-28 02:05:25.104559 18 2000.00 804.00 2804.00 \N 1164 1140 18 799.0 0.0 2020-10-29 01:44:52.976034 2020-10-29 01:44:52.976034 18 561.00 1042.00 1603.00 \N 1165 1139 2 6765.0 0.0 2020-10-29 01:57:48.658613 2020-10-29 01:57:48.658613 2 6200.00 1524.00 7724.00 \N 1166 1142 2 1368.0 0.0 2020-10-30 02:04:15.759927 2020-10-30 02:04:15.759927 2 1500.00 1392.00 2892.00 \N 1167 1143 2 2798.0 0.0 2020-10-30 02:15:01.882576 2020-10-30 02:15:01.882576 2 0.00 1392.00 1392.00 \N 1168 1141 18 9883.0 0.0 2020-10-30 02:18:43.680273 2020-10-30 02:18:43.680273 18 5598.00 841.00 6439.00 \N 1169 1145 18 6396.0 0.0 2020-10-31 02:03:58.817845 2020-10-31 02:03:58.817845 21 3000.00 740.00 3740.00 \N 1170 1144 2 10670.0 1690.0 2020-10-31 02:05:49.691547 2020-10-31 02:05:49.691547 2 4500.00 1175.00 5675.00 \N 1171 1146 21 4474.0 1699.0 2020-11-01 02:10:12.28838 2020-11-01 02:10:12.28838 21 2300.00 922.00 3222.00 \N 1172 1147 2 4164.0 170.0 2020-11-01 02:22:20.34163 2020-11-01 02:22:20.34163 2 3000.00 1180.00 4180.00 \N 1173 1148 18 249.0 0.0 2020-11-01 23:08:40.809479 2020-11-01 23:08:40.809479 21 0.00 1171.00 1171.00 \N 1174 1150 21 1958.0 0.0 2020-11-03 00:10:47.923835 2020-11-03 00:10:47.923835 21 2000.00 1129.00 3129.00 \N 1175 1149 2 2943.0 0.0 2020-11-03 01:46:36.58182 2020-11-03 01:46:36.58182 2 1300.00 1005.00 2305.00 \N 1176 1152 21 5794.0 0.0 2020-11-04 02:19:35.551225 2020-11-04 02:19:35.551225 21 6000.00 923.00 6923.00 \N 1177 1151 2 4965.0 0.0 2020-11-04 02:33:13.817477 2020-11-04 02:33:13.817477 2 3000.00 971.00 3971.00 \N 1178 1154 2 4575.0 0.0 2020-11-05 01:55:56.076736 2020-11-05 01:55:56.076736 2 4400.00 1146.00 5546.00 \N 1179 1153 18 4996.0 0.0 2020-11-05 02:16:12.024437 2020-11-05 02:16:12.024437 18 1000.00 922.00 1922.00 \N 1180 1156 18 13333.0 0.0 2020-11-06 01:55:32.45949 2020-11-06 01:55:32.45949 18 9300.00 1052.00 10352.00 \N 1181 1155 2 6754.0 288.0 2020-11-06 02:06:37.516625 2020-11-06 02:06:37.516625 2 4000.00 1115.00 5115.00 \N 1182 1158 2 2798.0 180.0 2020-11-07 01:48:08.546995 2020-11-07 01:48:08.546995 2 500.00 1184.00 1684.00 \N 1183 1159 2 1799.0 0.0 2020-11-07 02:10:11.887623 2020-11-07 02:10:11.887623 2 1900.00 1083.00 2983.00 \N 1184 1157 18 14093.0 0.0 2020-11-07 02:53:30.186653 2020-11-07 02:53:30.186653 18 7287.00 1045.00 8332.00 SE PUSO VENTA DE $787 EN EFECTIVO Y FUE TERMINAL \N 1185 1160 2 8241.0 2046.0 2020-11-08 01:48:17.001793 2020-11-08 01:48:17.001793 2 1900.00 982.00 2882.00 \N 1186 1161 21 4344.0 0.0 2020-11-08 02:20:38.442095 2020-11-08 02:20:38.442095 31 900.00 145.00 1045.00 \N 1187 1163 18 3598.0 0.0 2020-11-10 01:48:14.576378 2020-11-10 01:48:14.576378 18 0.00 1232.00 1232.00 AGREGE FONDO EN LA CAJA \N 1188 1162 2 8822.0 0.0 2020-11-10 02:08:03.65354 2020-11-10 02:08:03.65354 2 6000.00 1006.00 7006.00 \N 1189 1164 2 4084.0 0.0 2020-11-11 01:49:06.807411 2020-11-11 01:49:06.807411 2 1500.00 891.00 2391.00 \N 1190 1165 18 2798.0 0.0 2020-11-11 02:04:16.5496 2020-11-11 02:04:16.5496 18 3000.00 1030.00 4030.00 \N 1191 1166 2 7243.0 0.0 2020-11-12 01:56:47.621391 2020-11-12 01:56:47.621391 2 4900.00 917.00 5817.00 \N 1192 1167 18 14091.0 0.0 2020-11-12 02:01:49.851182 2020-11-12 02:01:49.851182 18 3900.00 1027.00 4927.00 \N 1193 1168 2 2117.0 500.0 2020-11-13 01:56:11.497448 2020-11-13 01:56:11.497448 2 1000.00 865.00 1865.00 \N 1194 1169 18 9752.0 0.0 2020-11-13 01:56:18.803414 2020-11-13 01:56:18.803414 18 9000.00 1779.00 10779.00 \N 1195 1170 18 8657.0 0.0 2020-11-14 02:03:14.57013 2020-11-14 02:03:14.57013 18 5711.00 1727.00 7438.00 \N 1196 1171 2 6145.0 0.0 2020-11-14 02:10:41.202425 2020-11-14 02:10:41.202425 2 4600.00 912.00 5512.00 \N 1197 1172 2 5001.0 300.0 2020-11-15 01:57:40.272161 2020-11-15 01:57:40.272161 2 1290.00 821.00 2111.00 RETIRE $1000, ME PAGUE $290 DE UNOS ARETES QUE VENDI CON TERMINAL \N 1198 1173 18 6402.0 0.0 2020-11-15 02:20:02.770297 2020-11-15 02:20:02.770297 18 2700.00 1234.00 3934.00 \N 1199 1174 2 3398.0 0.0 2020-11-15 22:52:51.830701 2020-11-15 22:52:51.830701 2 1700.00 920.00 2620.00 \N 1200 1176 2 6465.0 0.0 2020-11-16 23:55:52.845589 2020-11-16 23:55:52.845589 2 4500.00 986.00 5486.00 \N 1201 1175 18 7213.0 0.0 2020-11-17 01:04:53.881354 2020-11-17 01:04:53.881354 18 2458.00 1044.00 3502.00 \N 1202 1177 18 4629.0 0.0 2020-11-18 02:02:43.663812 2020-11-18 02:02:43.663812 18 5000.00 673.00 5673.00 \N 1203 1178 2 5848.0 0.0 2020-11-18 02:08:50.734894 2020-11-18 02:08:50.734894 2 3400.00 1146.00 4546.00 \N 1204 1179 18 3996.0 0.0 2020-11-19 02:13:12.327702 2020-11-19 02:13:12.327702 18 4000.00 669.00 4669.00 \N 1205 1180 2 3298.0 0.0 2020-11-19 17:40:17.235301 2020-11-19 17:40:17.235301 2 2200.00 1045.00 3245.00 \N 1206 1181 21 8111.0 0.0 2020-11-20 02:16:44.586133 2020-11-20 02:16:44.586133 31 4000.00 885.00 4885.00 \N 1207 1182 2 13238.0 0.0 2020-11-20 02:21:03.868691 2020-11-20 02:21:03.868691 2 7840.00 1038.00 8878.00 ENTREGUE A SAM $4500 \r\nVENDI UNOS ARETES DE $340 CON TERMINAL \r\nY RETIRO FINAL $3000 \r\nTOTAL$7840 \N 1208 1184 2 2799.0 180.0 2020-11-21 01:45:00.345735 2020-11-21 01:45:00.345735 2 1000.00 858.00 1858.00 \N 1209 1183 21 6496.0 0.0 2020-11-21 02:12:24.526668 2020-11-21 02:12:24.526668 31 4000.00 991.00 4991.00 \N 1210 1186 2 9222.0 330.0 2020-11-22 01:37:19.418213 2020-11-22 01:37:19.418213 2 1500.00 826.00 2326.00 \N 1211 1185 21 5456.0 1300.0 2020-11-22 02:00:06.017081 2020-11-22 02:00:06.017081 31 5000.00 1256.00 6256.00 \N 1212 1187 21 1798.0 250.0 2020-11-22 22:50:51.580558 2020-11-22 22:50:51.580558 31 0.00 1506.00 1506.00 \N 1213 1189 2 3718.0 2197.0 2020-11-24 01:54:54.288677 2020-11-24 01:54:54.288677 2 1100.00 747.00 1847.00 \N 1214 1188 18 10490.0 0.0 2020-11-24 02:41:20.176855 2020-11-24 02:41:20.176855 18 3953.00 992.00 4945.00 \N 1215 1190 2 5346.0 0.0 2020-11-25 01:50:55.286475 2020-11-25 01:50:55.286475 2 2900.00 1095.00 3995.00 \N 1216 1191 18 8983.0 0.0 2020-11-25 02:10:19.408252 2020-11-25 02:10:19.408252 18 6598.00 1379.00 7977.00 \N 1217 1192 21 2827.0 0.0 2020-11-26 00:57:27.33516 2020-11-26 00:57:27.33516 31 2000.00 928.00 2928.00 \N 1218 1193 9 1749.0 0.0 2020-11-26 01:35:22.72462 2020-11-26 01:35:22.72462 9 1700.00 1144.00 2844.00 FALTARON $20 DEL INICIO DEL DIA \N 1219 1194 2 8876.0 0.0 2020-11-27 01:52:49.035587 2020-11-27 01:52:49.035587 2 7900.00 1120.00 9020.00 \N 1220 1195 18 9050.0 0.0 2020-11-27 02:11:02.410331 2020-11-27 02:11:02.410331 18 4300.00 981.00 5281.00 \N 1221 1197 2 3648.0 0.0 2020-11-28 02:02:52.651953 2020-11-28 02:02:52.651953 2 1800.00 1169.00 2969.00 \N 1222 1196 18 9971.0 0.0 2020-11-28 02:36:33.944922 2020-11-28 02:36:33.944922 18 5789.00 789.00 6578.00 ADELANTO DE NAYELY 400 VENTA DE VE-0047 500, PAGO TERMINAL 600 \N 1223 1198 18 1399.0 0.0 2020-11-28 02:45:51.236457 2020-11-28 02:45:51.236457 18 1500.00 688.00 2188.00 \N 1224 1199 2 9835.0 20.0 2020-11-29 01:36:57.201487 2020-11-29 01:36:57.201487 2 2000.00 1297.00 3297.00 SE LLEVO SAMANTHA EXCEDENTE $1200 + $800 DE RETIRO FINAL, TOTAL DE $2000 \N 1225 1200 18 5896.0 0.0 2020-11-29 02:27:11.500472 2020-11-29 02:27:11.500472 18 2804.00 682.00 3486.00 NO SE REFLEJO LA CANCELACION DEL CON-0006 Y SI SE DESCONTO LA VENTA \N 1226 1201 21 2458.1 0.0 2020-11-29 22:45:08.267925 2020-11-29 22:45:08.267925 31 2500.00 640.00 3140.00 \N 1227 1202 33 4356.0 0.0 2020-12-01 02:04:48.487243 2020-12-01 02:04:48.487243 2 1900.00 1196.00 3096.00 \N 1228 1203 21 6002.0 1499.0 2020-12-01 02:18:41.101589 2020-12-01 02:18:41.101589 18 4531.00 882.00 5413.00 \N 1229 1205 2 4647.0 0.0 2020-12-02 01:56:16.46476 2020-12-02 01:56:16.46476 2 1400.00 1203.00 2603.00 efectivo en caja $2445 + \r\nmetí $158 a efectivo en caja de iva de factura de clienta \N 1230 1204 18 8249.0 0.0 2020-12-02 02:19:18.937457 2020-12-02 02:19:18.937457 18 7500.00 732.00 8232.00 \N 1231 1206 2 3875.0 0.0 2020-12-03 01:51:56.222083 2020-12-03 01:51:56.222083 2 3500.00 779.00 4279.00 \N 1232 1207 18 4897.0 0.0 2020-12-03 02:02:51.322285 2020-12-03 02:02:51.322285 18 3309.00 780.00 4089.00 \N 1233 1208 18 1000.0 0.0 2020-12-04 02:02:48.847396 2020-12-04 02:02:48.847396 18 500.00 780.00 1280.00 \N 1234 1209 2 7304.0 0.0 2020-12-04 02:11:00.013562 2020-12-04 02:11:00.013562 2 4800.00 1364.00 6164.00 \N 1235 1210 2 8822.0 0.0 2020-12-05 01:52:47.643271 2020-12-05 01:52:47.643271 2 3800.00 1251.00 5051.00 $400 DE APARTADO DE GERARDO FUE TRANSFERENCIA A SAMANTHA (PUSE TARJETA DEBITO) \N 1236 1211 18 10815.0 0.0 2020-12-05 02:03:35.486414 2020-12-05 02:03:35.486414 18 4140.00 1155.00 5295.00 \N 1237 1213 21 3499.0 1500.0 2020-12-06 02:16:23.605095 2020-12-06 02:16:23.605095 31 0.00 1255.00 1255.00 \N 1238 1212 2 13178.0 1200.0 2020-12-06 02:33:55.839443 2020-12-06 02:33:55.839443 2 6000.00 1373.00 7373.00 entregue a Samantha corte como excedente \N 1239 1214 21 1198.0 0.0 2020-12-06 22:59:11.417689 2020-12-06 22:59:11.417689 31 1500.00 953.00 2453.00 \N 1240 1216 2 8959.0 10.0 2020-12-08 02:09:41.744489 2020-12-08 02:09:41.744489 2 8600.00 1372.00 9972.00 \N 1241 1215 18 3264.0 0.0 2020-12-08 02:11:43.114535 2020-12-08 02:11:43.114535 18 2300.00 1251.00 3551.00 \N 1242 1218 2 2728.0 0.0 2020-12-09 02:12:43.099497 2020-12-09 02:12:43.099497 2 700.00 1301.00 2001.00 \N 1243 1217 21 5296.0 16.0 2020-12-09 02:40:11.259303 2020-12-09 02:40:11.259303 31 4000.00 932.00 4932.00 \N 1244 1220 9 13891.0 0.0 2020-12-10 01:43:11.465585 2020-12-10 01:43:11.465585 9 13800.00 1392.00 15192.00 \N 1245 1219 21 1728.0 30.0 2020-12-10 01:57:44.872694 2020-12-10 01:57:44.872694 31 0.00 1431.00 1431.00 \N 1246 1222 2 4131.0 0.0 2020-12-11 02:26:09.667654 2020-12-11 02:26:09.667654 2 2900.00 1224.00 4124.00 \N 1247 1221 21 8443.0 0.0 2020-12-11 02:46:34.419893 2020-12-11 02:46:34.419893 31 3800.00 2477.00 6277.00 \N 1248 1221 21 8443.0 0.0 2020-12-11 02:46:36.339469 2020-12-11 02:46:36.339469 31 3800.00 2477.00 6277.00 \N 1249 1223 2 3836.0 307.0 2020-12-12 02:23:11.837564 2020-12-12 02:23:11.837564 2 2500.00 954.00 3454.00 \N 1250 1224 18 9158.0 0.0 2020-12-12 02:56:09.407974 2020-12-12 02:56:09.407974 31 8049.00 1139.00 9188.00 \N 1251 1225 9 7270.0 21.0 2020-12-13 01:38:42.835409 2020-12-13 01:38:42.835409 2 5700.00 1004.00 6704.00 \N 1252 1226 21 5198.0 1750.0 2020-12-13 03:01:50.965762 2020-12-13 03:01:50.965762 31 0.00 689.00 689.00 \N 1253 1228 21 4896.0 0.0 2020-12-13 22:50:46.562369 2020-12-13 22:50:46.562369 31 3000.00 687.00 3687.00 \N 1254 1227 9 3267.0 0.0 2020-12-13 22:52:51.383696 2020-12-13 22:52:51.383696 9 3100.00 542.00 3642.00 \N 1255 1229 2 7761.0 100.0 2020-12-15 02:30:59.285084 2020-12-15 02:30:59.285084 2 5170.00 1235.00 6405.00 $5170 - $270 aretes Rocio queda en sobre $4900 \N 1256 1230 18 14516.0 500.0 2020-12-15 02:53:12.846707 2020-12-15 02:53:12.846707 18 11530.00 995.00 12525.00 \N 1257 1231 2 8702.0 0.0 2020-12-16 02:29:33.892624 2020-12-16 02:29:33.892624 2 7400.00 938.00 8338.00 \N 1258 1232 18 16738.0 0.0 2020-12-16 03:52:10.039375 2020-12-16 03:52:10.039375 18 13409.00 1026.00 14435.00 \N 1259 1234 2 16518.01 300.0 2020-12-17 02:23:43.104119 2020-12-17 02:23:43.104119 2 7400.00 894.00 8294.00 \N 1260 1233 18 12939.99 0.0 2020-12-17 02:59:25.375826 2020-12-17 02:59:25.375826 18 9333.99 734.00 10067.99 \N 1261 1235 18 1499.0 0.0 2020-12-17 03:10:35.948065 2020-12-17 03:10:35.948065 18 1500.00 733.00 2233.00 \N 1262 1236 2 8948.0 0.0 2020-12-18 02:17:53.561205 2020-12-18 02:17:53.561205 2 5000.00 1685.00 6685.00 \N 1263 1237 18 14999.0 0.0 2020-12-18 06:53:04.177927 2020-12-18 06:53:04.177927 18 14936.00 796.00 15732.00 \N 1264 1238 2 5896.0 25.0 2020-12-19 01:58:26.386407 2020-12-19 01:58:26.386407 2 5300.00 1357.00 6657.00 \N 1265 1239 18 9388.0 0.0 2020-12-19 06:30:34.240431 2020-12-19 06:30:34.240431 18 9381.00 803.00 10184.00 \N 1266 1240 2 4951.0 0.0 2020-12-20 01:53:17.432301 2020-12-20 01:53:17.432301 2 3700.00 860.00 4560.00 \N 1267 1241 18 14855.0 0.0 2020-12-20 06:27:52.111419 2020-12-20 06:27:52.111419 18 14409.00 1249.00 15658.00 \N 1268 1242 2 3356.0 1690.0 2020-12-20 22:53:53.833118 2020-12-20 22:53:53.833118 2 0.00 337.00 337.00 \N 1269 1244 9 17362.0 0.0 2020-12-22 02:46:31.609461 2020-12-22 02:46:31.609461 7 3300.00 581.99 3881.99 \N 1270 1243 21 8414.0 0.0 2020-12-22 03:07:13.300171 2020-12-22 03:07:13.300171 31 2800.00 711.00 3511.00 \N 1271 1246 9 13309.0 0.0 2020-12-23 02:57:42.014201 2020-12-23 02:57:42.014201 9 10000.00 784.00 10784.00 \N 1272 1245 18 44935.0 500.0 2020-12-23 03:31:40.6906 2020-12-23 03:31:40.6906 18 26944.00 915.00 27859.00 \N 1273 1248 9 9779.0 0.0 2020-12-24 02:50:23.035766 2020-12-24 02:50:23.035766 9 6500.00 637.00 7137.00 \N 1274 1247 18 41370.0 0.0 2020-12-24 03:19:19.388733 2020-12-24 03:19:19.388733 18 29105.00 956.00 30061.00 \N 1275 1249 2 8928.0 1000.0 2020-12-25 01:18:09.234841 2020-12-25 01:18:09.234841 2 8000.00 565.00 8565.00 \N 1276 1250 18 18262.0 710.0 2020-12-25 02:59:09.097272 2020-12-25 02:59:09.097272 31 13000.00 893.00 13893.00 \N 1277 1252 2 4043.0 0.0 2020-12-27 01:47:17.037007 2020-12-27 01:47:17.037007 9 0.00 864.00 864.00 \N 1278 1251 21 5616.0 1050.0 2020-12-27 02:56:02.92788 2020-12-27 02:56:02.92788 31 3500.00 260.00 3760.00 \N 1279 1253 2 0.0 0.0 2020-12-27 21:49:49.167769 2020-12-27 21:49:49.167769 9 0.00 864.00 864.00 \N 1280 1254 9 7895.0 0.0 2020-12-29 01:49:22.847429 2020-12-29 01:49:22.847429 9 7380.00 680.00 8060.00 \N 1281 1255 21 7584.0 0.0 2020-12-29 02:55:47.976311 2020-12-29 02:55:47.976311 31 2000.00 248.00 2248.00 \N 1282 1256 9 7190.0 0.0 2020-12-30 02:11:56.335233 2020-12-30 02:11:56.335233 7 7100.00 770.00 7870.00 \N 1283 1257 21 499.0 0.0 2020-12-30 02:57:43.168354 2020-12-30 02:57:43.168354 31 0.00 248.00 248.00 \N 1284 1259 9 6944.0 0.0 2020-12-31 02:37:09.19654 2020-12-31 02:37:09.19654 7 4106.00 609.00 4715.00 \N 1285 1258 18 20760.0 2298.0 2020-12-31 02:49:36.139018 2020-12-31 02:49:36.139018 18 8400.00 954.00 9354.00 \N 1286 1261 18 3930.0 0.0 2020-12-31 03:28:59.720715 2020-12-31 03:28:59.720715 18 600.00 954.00 1554.00 \N 1287 1260 9 13065.0 309.0 2020-12-31 23:27:32.95373 2020-12-31 23:27:32.95373 9 8518.00 693.00 9211.00 \N 1288 1263 9 1799.0 0.0 2021-01-01 01:17:54.647424 2021-01-01 01:17:54.647424 7 1799.00 693.00 2492.00 \N 1289 1262 21 9903.0 0.0 2021-01-01 02:00:50.475446 2021-01-01 02:00:50.475446 31 4000.00 973.00 4973.00 \N 1290 1264 21 2673.2 1200.0 2021-01-03 01:55:46.288512 2021-01-03 01:55:46.288512 31 0.00 947.00 947.00 \N 1291 1265 21 1599.0 0.0 2021-01-03 22:51:50.581654 2021-01-03 22:51:50.581654 31 0.00 947.00 947.00 \N 1292 1265 21 1599.0 0.0 2021-01-03 22:51:50.766573 2021-01-03 22:51:50.766573 31 0.00 947.00 947.00 \N 1293 1266 9 3488.0 0.0 2021-01-05 01:54:52.175515 2021-01-05 01:54:52.175515 9 0.00 1282.00 1282.00 \N 1294 1267 18 1299.0 0.0 2021-01-05 01:58:57.136069 2021-01-05 01:58:57.136069 18 1200.00 1046.00 2246.00 \N 1295 1268 9 2839.0 0.0 2021-01-06 01:48:41.755143 2021-01-06 01:48:41.755143 7 1900.00 722.00 2622.00 \N 1296 1269 18 1138.0 0.0 2021-01-06 02:00:06.162634 2021-01-06 02:00:06.162634 18 1000.00 1184.00 2184.00 \N 1297 1270 9 748.0 380.0 2021-01-07 01:48:44.489959 2021-01-07 01:48:44.489959 7 500.00 590.00 1090.00 \N 1298 1271 21 2698.0 0.0 2021-01-07 02:03:07.076547 2021-01-07 02:03:07.076547 18 600.00 1184.00 1784.00 \N 1299 1273 18 2904.0 800.0 2021-01-08 01:50:05.165213 2021-01-08 01:50:05.165213 18 1000.00 1788.00 2788.00 \N 1300 1272 2 3060.0 296.0 2021-01-08 02:11:03.986686 2021-01-08 02:11:03.986686 2 2500.00 854.00 3354.00 \N 1301 1275 2 4610.0 0.0 2021-01-09 01:53:54.954526 2021-01-09 01:53:54.954526 2 3000.00 965.00 3965.00 \N 1302 1274 18 3511.4 0.0 2021-01-09 02:38:26.201945 2021-01-09 02:38:26.201945 18 3700.00 1180.00 4880.00 \N 1303 1276 2 3216.0 0.0 2021-01-10 01:46:12.597962 2021-01-10 01:46:12.597962 2 3400.00 781.00 4181.00 \N 1304 1277 21 0.0 100.0 2021-01-10 01:52:31.026839 2021-01-10 01:52:31.026839 31 1080.00 0.00 1080.00 \N 1305 1278 21 2781.2 0.0 2021-01-10 22:55:29.806312 2021-01-10 22:55:29.806312 31 2000.00 781.00 2781.00 \N 1306 1279 2 3177.0 0.0 2021-01-12 01:54:50.697551 2021-01-12 01:54:50.697551 2 3100.00 858.00 3958.00 \N 1307 1280 18 3220.0 0.0 2021-01-12 02:06:32.581166 2021-01-12 02:06:32.581166 18 961.00 882.00 1843.00 \N 1308 1281 2 2668.0 0.0 2021-01-13 01:40:01.761035 2021-01-13 01:40:01.761035 2 2900.00 626.00 3526.00 \N 1309 1282 18 443.4 200.0 2021-01-13 01:57:39.1646 2021-01-13 01:57:39.1646 18 200.00 925.40 1125.40 \N 1310 1284 2 0.0 0.0 2021-01-14 01:41:23.044435 2021-01-14 01:41:23.044435 2 0.00 626.00 626.00 \N 1311 1283 18 1499.0 0.0 2021-01-14 02:08:16.432001 2021-01-14 02:08:16.432001 18 1440.00 984.40 2424.40 \N 1312 1285 2 1099.0 0.0 2021-01-15 01:51:54.118016 2021-01-15 01:51:54.118016 2 1200.00 525.00 1725.00 \N 1313 1286 18 1737.0 0.0 2021-01-15 01:57:57.553952 2021-01-15 01:57:57.553952 18 901.00 1370.40 2271.40 \N 1314 1287 18 5707.4 0.0 2021-01-16 01:53:59.406569 2021-01-16 01:53:59.406569 18 2500.00 1299.80 3799.80 SOBRAN 191 BODY \N 1315 1288 2 2439.0 0.0 2021-01-16 01:54:56.256186 2021-01-16 01:54:56.256186 2 1780.00 449.00 2229.00 EN SOBRE HAY $1500 $280 FUERON DE ARETES VENDIDOS CON TERMINAL \N 1316 1290 2 2166.0 180.0 2021-01-17 01:43:52.090795 2021-01-17 01:43:52.090795 2 1800.00 635.00 2435.00 \N 1317 1289 21 7358.4 1050.0 2021-01-17 02:01:39.863258 2021-01-17 02:01:39.863258 31 0.00 249.00 249.00 \N 1318 1291 21 0.0 0.0 2021-01-17 22:55:15.126428 2021-01-17 22:55:15.126428 31 0.00 249.00 249.00 \N 1319 1292 2 500.0 20.0 2021-01-19 01:46:07.205026 2021-01-19 01:46:07.205026 2 0.00 615.00 615.00 \N 1320 1293 18 800.0 0.0 2021-01-19 02:08:23.981092 2021-01-19 02:08:23.981092 18 0.00 1249.00 1249.00 \N 1321 1294 18 1988.0 0.0 2021-01-19 03:03:37.973226 2021-01-19 03:03:37.973226 18 0.00 1249.00 1249.00 \N 1322 1296 2 1406.0 0.0 2021-01-20 01:35:31.234867 2021-01-20 01:35:31.234867 2 1601.00 420.00 2021.00 \N 1323 1295 18 6036.0 0.0 2021-01-20 02:23:34.846012 2021-01-20 02:23:34.846012 18 5606.00 1179.00 6785.00 \N 1324 1298 18 1199.0 0.0 2021-01-21 02:10:05.693754 2021-01-21 02:10:05.693754 18 1500.00 878.00 2378.00 \N 1325 1297 2 1649.0 0.0 2021-01-21 02:25:40.869451 2021-01-21 02:25:40.869451 2 1500.00 569.00 2069.00 \N 1326 1300 2 759.0 0.0 2021-01-22 02:03:04.127222 2021-01-22 02:03:04.127222 2 600.00 728.00 1328.00 \N 1327 1299 18 1679.4 0.0 2021-01-22 02:37:49.344881 2021-01-22 02:37:49.344881 18 1500.00 1057.40 2557.40 \N 1328 1301 2 1498.0 0.0 2021-01-23 01:55:26.903327 2021-01-23 01:55:26.903327 2 1500.00 726.00 2226.00 \N 1329 1302 21 3777.4 0.0 2021-01-23 02:40:09.509781 2021-01-23 02:40:09.509781 18 4000.00 834.80 4834.80 \N 1330 1303 2 3327.0 60.0 2021-01-24 01:52:51.277938 2021-01-24 01:52:51.277938 2 2500.00 993.00 3493.00 \N 1331 1304 21 3397.0 950.0 2021-01-24 02:02:21.670295 2021-01-24 02:02:21.670295 31 0.00 783.00 783.00 \N 1332 1305 21 1599.0 0.0 2021-01-24 22:57:16.22881 2021-01-24 22:57:16.22881 31 1500.00 882.00 2382.00 \N 1333 1306 2 1827.0 0.0 2021-01-26 01:51:55.474732 2021-01-26 01:51:55.474732 2 1800.00 1020.00 2820.00 \N 1334 1307 21 2898.0 0.0 2021-01-26 01:53:10.809675 2021-01-26 01:53:10.809675 31 2900.00 880.00 3780.00 \N 1335 1308 2 3098.0 0.0 2021-01-27 01:46:50.437356 2021-01-27 01:46:50.437356 2 3200.00 918.00 4118.00 \N 1336 1309 21 0.0 0.0 2021-01-27 01:53:03.839321 2021-01-27 01:53:03.839321 31 0.00 880.00 880.00 \N 1337 1310 2 0.0 0.0 2021-01-28 01:48:30.281342 2021-01-28 01:48:30.281342 2 0.00 918.00 918.00 \N 1338 1311 21 1598.0 0.0 2021-01-28 02:00:16.620242 2021-01-28 02:00:16.620242 31 1500.00 978.00 2478.00 \N 1339 1312 2 609.0 100.0 2021-01-29 01:45:08.258818 2021-01-29 01:45:08.258818 2 0.00 818.00 818.00 \N 1340 1313 21 3746.0 0.0 2021-01-29 01:51:03.421978 2021-01-29 01:51:03.421978 31 500.00 527.00 1027.00 \N 1341 1314 2 3053.0 180.0 2021-01-30 01:48:11.904262 2021-01-30 01:48:11.904262 2 1000.00 892.00 1892.00 \N 1342 1315 21 1529.8 0.0 2021-01-30 02:00:47.918578 2021-01-30 02:00:47.918578 31 1000.00 1056.00 2056.00 \N 1343 1317 2 2428.0 0.0 2021-01-31 01:45:41.986078 2021-01-31 01:45:41.986078 2 1500.00 840.00 2340.00 \N 1344 1316 21 698.0 1300.0 2021-01-31 01:52:33.419422 2021-01-31 01:52:33.419422 31 0.00 454.00 454.00 \N 1345 1318 21 0.0 0.0 2021-02-01 22:51:45.210484 2021-02-01 22:51:45.210484 31 0.00 454.00 454.00 \N 1346 1319 21 3138.4 200.0 2021-02-03 01:31:10.542953 2021-02-03 01:31:10.542953 18 2100.00 892.40 2992.40 \N 1347 1320 2 3467.0 0.0 2021-02-03 01:46:57.592923 2021-02-03 01:46:57.592923 2 1000.00 609.00 1609.00 se \N 1348 1321 2 2579.0 297.0 2021-02-04 01:52:19.137538 2021-02-04 01:52:19.137538 2 2210.00 681.00 2891.00 retire $1900 y $310 fueron de unos aretes pagados en terminal \N 1349 1322 21 2218.4 100.0 2021-02-04 01:55:18.501554 2021-02-04 01:55:18.501554 31 1000.00 511.00 1511.00 \N 1350 1323 2 2527.0 200.0 2021-02-05 01:53:15.982065 2021-02-05 01:53:15.982065 2 2200.00 808.00 3008.00 \N 1351 1324 21 149.0 0.0 2021-02-05 02:14:21.42715 2021-02-05 02:14:21.42715 31 0.00 660.00 660.00 \N 1352 1326 21 1019.4 0.0 2021-02-07 01:44:43.604305 2021-02-07 01:44:43.604305 31 1019.00 0.00 1019.00 \N 1353 1325 2 1409.0 120.0 2021-02-07 02:01:03.905355 2021-02-07 02:01:03.905355 2 1400.00 886.00 2286.00 HAY 189 MAS DE UNOS ARETES QUE VENDI Y NO ESTABAN EN EL SISTEMA COD. ARE-0155 \N 1354 1328 21 529.0 0.0 2021-02-08 23:52:06.281223 2021-02-08 23:52:06.281223 31 0.00 0.00 0.00 \N 1355 1327 2 0.0 0.0 2021-02-09 01:43:33.387513 2021-02-09 01:43:33.387513 2 0.00 886.00 886.00 \N 1356 1329 2 0.0 0.0 2021-02-10 02:04:58.869391 2021-02-10 02:04:58.869391 2 0.00 1125.00 1125.00 \N 1357 1330 2 1669.0 0.0 2021-02-11 01:23:42.758776 2021-02-11 01:23:42.758776 2 1669.00 1125.00 2794.00 \N 1358 1332 2 1419.0 0.0 2021-02-12 02:04:41.724533 2021-02-12 02:04:41.724533 2 1419.00 1125.00 2544.00 \N 1359 1333 2 1598.99 0.0 2021-02-13 01:56:02.669491 2021-02-13 01:56:02.669491 29 2100.00 851.00 2951.00 PUSE 500 ABONO DE CHELA EN EFECTIVO FUE TRANSFERENCIA \r\nSE VENDIO EN SISTEMA NUEVO $999 EN EFECT\r\nY 1599 EN TARJETA \r\nSE VENDIO EN SISTEMA VIEJO $1099 EN EFECTIVO\r\n \N 1360 1334 2 1069.0 0.0 2021-02-14 01:57:17.210683 2021-02-14 01:57:17.210683 2 1069.00 851.00 1920.00 \N 1361 1331 21 3327.0 1000.0 2021-02-14 02:12:15.325568 2021-02-14 02:12:15.325568 31 989.00 0.00 989.00 \N 1362 1336 2 999.0 0.0 2021-02-18 02:17:26.607052 2021-02-18 02:17:26.607052 2 0.00 614.00 614.00 \N 1363 1335 18 1746.0 0.0 2021-02-19 01:52:01.52192 2021-02-19 01:52:01.52192 18 449.00 0.00 449.00 \N 1364 1338 21 0.0 0.0 2021-02-21 01:55:45.037451 2021-02-21 01:55:45.037451 31 400.00 0.00 400.00 ABONO CHELA CREDITO \N 1365 1337 2 999.0 0.0 2021-02-23 21:26:28.099877 2021-02-23 21:26:28.099877 2 0.00 614.00 614.00 \N 1366 1340 2 349.99 0.0 2021-02-24 01:27:28.403117 2021-02-24 01:27:28.403117 2 350.00 0.00 350.00 \N 1367 1341 2 300.0 0.0 2021-02-28 02:22:54.466497 2021-02-28 02:22:54.466497 2 300.00 0.00 300.00 \N 1368 1342 2 150.0 0.0 2021-03-02 01:30:23.172779 2021-03-02 01:30:23.172779 2 150.00 0.00 150.00 \N 1369 1343 2 1449.0 0.0 2021-03-04 01:35:56.517562 2021-03-04 01:35:56.517562 2 1449.00 0.00 1449.00 \N 1370 1344 2 350.0 0.0 2021-03-05 01:59:49.529948 2021-03-05 01:59:49.529948 2 350.00 0.00 350.00 \N \. -- -- Name: cash_outs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.cash_outs_id_seq', 1370, true); -- -- Data for Name: cash_registers; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.cash_registers (id, name, description, pointsale_id, created_at, updated_at, main, status) FROM stdin; 1 Punto de venta 1 Principal Caja registradora principal 1 2019-02-01 04:44:58.292956 2019-02-01 04:44:58.292956 1 1 2 S BY SUO Principal Caja registradora principal 2 2019-02-02 01:18:09.045216 2019-02-02 01:18:09.045216 1 1 3 SUO Comercial Principal Caja registradora principal 3 2019-08-03 19:13:01.26763 2019-08-03 19:13:01.26763 1 1 \. -- -- Name: cash_registers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.cash_registers_id_seq', 3, true); -- -- Data for Name: cash_registers_moves; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.cash_registers_moves (id, open_cash_register_id, payment_method_id, quantity, move_type, created_at, updated_at, sale_id, cardnumber, purchase_id, expense_id, concept, ticket, status, received, change, products_return_id, credit_payment_id, bank_name, check_number, customer_account, customer_code) FROM stdin; 36 5 4 679.0 1 2019-02-06 21:53:53.501269 2019-02-06 21:53:53.501269 37 9045 \N \N 0 PV2-V-15 1 \N 0.00 \N \N 3 2 2 1448.0 1 2019-02-05 21:46:07.376036 2019-02-05 21:46:07.376036 3 \N \N \N 0 PV1-V-1 1 1500.00 52.00 \N \N 4 2 2 1049.0 1 2019-02-05 22:11:13.643844 2019-02-05 22:11:13.643844 4 \N \N \N 0 PV1-V-2 1 1049.00 0.00 \N \N 5 2 2 1168.0 1 2019-02-05 22:13:50.879257 2019-02-05 22:13:50.879257 5 \N \N \N 0 PV1-V-3 1 1168.00 0.00 \N \N 6 2 2 1199.0 1 2019-02-05 22:15:08.677387 2019-02-05 22:15:08.677387 6 \N \N \N 0 PV1-V-4 1 1199.00 0.00 \N \N 7 2 1 2537.0 1 2019-02-05 22:17:20.228053 2019-02-05 22:17:20.228053 7 0 \N \N 0 PV1-V-5 1 \N 0.00 \N \N 8 2 2 270.0 1 2019-02-05 22:22:08.571289 2019-02-05 22:22:08.571289 8 \N \N \N 6 PV1-V-6 1 200.00 0.00 \N \N 9 2 2 2346.0 1 2019-02-05 22:26:07.813462 2019-02-05 22:26:07.813462 9 \N \N \N 0 PV1-V-7 1 2346.00 0.00 \N \N 10 2 2 180.0 1 2019-02-05 22:32:48.664496 2019-02-05 22:32:48.664496 12 \N \N \N 6 PV1-V-10 1 180.00 0.00 \N \N 12 2 2 348.0 1 2019-02-05 22:36:08.66422 2019-02-05 22:36:08.66422 13 \N \N \N 6 PV1-V-11 1 348.00 0.00 \N \N 14 2 2 849.0 1 2019-02-05 22:39:07.635246 2019-02-05 22:39:07.635246 14 \N \N \N 6 PV1-V-12 1 849.00 0.00 \N \N 15 2 4 1299.0 1 2019-02-05 22:40:00.111854 2019-02-05 22:40:00.111854 15 1111 \N \N 0 PV1-V-13 1 \N 0.00 \N \N 16 2 2 2742.0 1 2019-02-05 22:41:05.287148 2019-02-05 22:41:05.287148 16 \N \N \N 0 PV1-V-14 1 2742.00 0.00 \N \N 18 2 2 1248.0 1 2019-02-06 00:39:08.37076 2019-02-06 00:39:08.37076 19 \N \N \N 0 PV1-V-17 1 1248.00 0.00 \N \N 19 3 2 499.0 1 2019-02-06 00:40:30.965634 2019-02-06 00:40:30.965634 20 \N \N \N 0 PV2-V-1 1 499.00 0.00 \N \N 20 2 2 1566.0 1 2019-02-06 00:46:46.896665 2019-02-06 00:46:46.896665 10 \N \N \N 3 \N 1 1566.00 0.00 \N \N 21 3 2 399.0 1 2019-02-06 01:28:36.047743 2019-02-06 01:28:36.047743 21 \N \N \N 0 PV2-V-2 1 399.00 0.00 \N \N 22 3 2 469.0 1 2019-02-06 01:30:48.703639 2019-02-06 01:30:48.703639 22 \N \N \N 0 PV2-V-3 1 469.00 0.00 \N \N 24 3 4 499.0 1 2019-02-06 01:39:19.713856 2019-02-06 01:39:19.713856 24 4569 \N \N 0 PV2-V-5 1 \N 0.00 \N \N 25 3 4 899.0 1 2019-02-06 01:40:20.33601 2019-02-06 01:40:20.33601 25 4969 \N \N 0 PV2-V-6 1 \N 0.00 \N \N 26 3 4 619.0 1 2019-02-06 01:41:10.505766 2019-02-06 01:41:10.505766 26 4969 \N \N 0 PV2-V-7 1 \N 0.00 \N \N 27 3 2 729.0 1 2019-02-06 01:46:53.444847 2019-02-06 01:46:53.444847 28 \N \N \N 0 PV2-V-9 1 729.00 0.00 \N \N 28 3 4 899.0 1 2019-02-06 01:47:41.159359 2019-02-06 01:47:41.159359 29 4969 \N \N 0 PV2-V-10 1 \N 0.00 \N \N 29 3 4 899.0 1 2019-02-06 01:48:11.388672 2019-02-06 01:48:11.388672 30 4969 \N \N 0 PV2-V-11 1 \N 0.00 \N \N 30 3 2 499.0 1 2019-02-06 02:30:08.2098 2019-02-06 02:30:08.2098 31 \N \N \N 0 PV2-V-12 1 500.00 1.00 \N \N 31 4 2 499.0 1 2019-02-06 17:23:01.93645 2019-02-06 17:23:01.93645 32 \N \N \N 0 PV1-V-18 1 499.00 0.00 \N \N 32 4 2 1199.0 1 2019-02-06 17:27:58.711047 2019-02-06 17:27:58.711047 33 \N \N \N 0 PV1-V-19 1 1199.00 0.00 \N \N 33 4 2 1299.0 1 2019-02-06 20:10:24.855058 2019-02-06 20:10:24.855058 34 \N \N \N 0 PV1-V-20 1 1500.00 201.00 \N \N 34 5 2 699.0 1 2019-02-06 20:17:24.548492 2019-02-06 20:17:24.548492 35 \N \N \N 0 PV2-V-13 1 700.00 1.00 \N \N 35 5 2 200.0 1 2019-02-06 20:20:43.724703 2019-02-06 20:20:43.724703 36 \N \N \N 6 PV2-V-14 1 200.00 0.00 \N \N 74 13 2 848.0 1 2019-02-12 20:31:32.706683 2019-02-12 20:31:32.706683 61 \N \N \N 7 \N 1 1000.00 152.00 \N \N 38 5 4 399.0 1 2019-02-06 22:14:43.881224 2019-02-06 22:14:43.881224 36 9045 \N \N 7 \N 1 \N 0.00 \N \N 39 4 2 769.0 1 2019-02-06 23:43:01.281717 2019-02-06 23:43:01.281717 38 \N \N \N 0 PV1-V-21 1 1000.00 231.00 \N \N 41 4 1 2426.0 1 2019-02-07 00:26:30.435496 2019-02-07 00:26:30.435496 39 3620 \N \N 0 PV1-V-22 1 \N 0.00 \N \N 42 4 1 699.0 1 2019-02-07 00:35:44.528654 2019-02-07 00:35:44.528654 40 0 \N \N 0 PV1-V-23 1 \N 0.00 \N \N 43 5 1 799.0 1 2019-02-07 00:42:30.485544 2019-02-07 00:42:30.485544 41 3620 \N \N 0 PV2-V-16 1 \N 0.00 \N \N 45 4 2 399.2 1 2019-02-07 00:46:21.098141 2019-02-07 00:46:21.098141 42 \N \N \N 0 PV1-V-24 1 399.20 0.00 \N \N 46 5 2 469.0 1 2019-02-07 00:49:31.918609 2019-02-07 00:49:31.918609 43 \N \N \N 0 PV2-V-17 1 500.00 31.00 \N \N 47 6 2 1000.0 1 2019-02-07 21:57:30.163739 2019-02-07 21:57:30.163739 14 \N \N \N 4 \N 1 1000.00 0.00 \N \N 48 7 2 619.0 1 2019-02-08 20:07:23.426607 2019-02-08 20:07:23.426607 44 \N \N \N 0 PV2-V-18 1 700.00 81.00 \N \N 50 6 1 1199.0 1 2019-02-08 20:12:12.160735 2019-02-08 20:12:12.160735 45 2495 \N \N 0 PV1-V-25 1 \N 0.00 \N \N 51 6 2 1169.0 1 2019-02-08 23:13:38.868927 2019-02-08 23:13:38.868927 46 \N \N \N 0 PV1-V-26 1 1169.00 0.00 \N \N 52 6 1 1198.0 1 2019-02-09 01:30:29.856318 2019-02-09 01:30:29.856318 48 2458 \N \N 0 PV1-V-28 1 \N 0.00 \N \N 53 7 2 599.0 1 2019-02-09 02:13:03.19503 2019-02-09 02:13:03.19503 49 \N \N \N 0 PV2-V-19 1 1000.00 401.00 \N \N 54 6 2 700.0 1 2019-02-09 02:31:34.846583 2019-02-09 02:31:34.846583 13 \N \N \N 7 \N 1 700.00 0.00 \N \N 55 6 2 1169.0 1 2019-02-09 02:43:18.093712 2019-02-09 02:43:18.093712 50 \N \N \N 0 PV1-V-29 1 1169.00 0.00 \N \N 56 8 2 489.0 1 2019-02-09 17:33:55.602434 2019-02-09 17:33:55.602434 51 \N \N \N 0 PV2-V-20 1 500.00 11.00 \N \N 57 9 1 749.0 1 2019-02-09 19:29:47.27901 2019-02-09 19:29:47.27901 52 7492 \N \N 0 PV1-V-30 1 \N 0.00 \N \N 58 8 4 988.0 1 2019-02-09 20:17:54.685219 2019-02-09 20:17:54.685219 53 5948 \N \N 0 PV2-V-21 1 \N 0.00 \N \N 59 9 2 1468.0 1 2019-02-09 21:19:42.860175 2019-02-09 21:19:42.860175 54 \N \N \N 0 PV1-V-31 1 1500.00 32.00 \N \N 60 8 4 399.01 1 2019-02-09 21:26:24.551867 2019-02-09 21:26:24.551867 55 9051 \N \N 0 PV2-V-22 1 \N 0.00 \N \N 62 9 2 300.0 1 2019-02-09 21:28:19.837703 2019-02-09 21:28:19.837703 56 \N \N \N 6 PV1-V-32 1 300.00 0.00 \N \N 63 8 2 499.0 1 2019-02-09 21:31:21.516172 2019-02-09 21:31:21.516172 57 \N \N \N 0 PV2-V-23 1 500.00 1.00 \N \N 64 11 2 589.0 1 2019-02-11 18:52:54.606297 2019-02-11 18:52:54.606297 58 \N \N \N 0 PV1-V-33 1 600.00 11.00 \N \N 65 11 2 899.0 1 2019-02-11 19:37:18.105465 2019-02-11 19:37:18.105465 59 \N \N \N 0 PV1-V-34 1 899.00 0.00 \N \N 66 10 2 569.0 1 2019-02-11 19:52:32.772358 2019-02-11 19:52:32.772358 60 \N \N \N 0 PV2-V-24 1 569.00 0.00 \N \N 68 10 2 500.0 1 2019-02-11 21:14:51.882857 2019-02-11 21:14:51.882857 61 \N \N \N 6 PV2-V-25 1 500.00 0.00 \N \N 69 11 2 1699.0 1 2019-02-11 22:13:28.283521 2019-02-11 22:13:28.283521 62 \N \N \N 0 PV1-V-35 1 1699.00 0.00 \N \N 70 10 2 699.0 1 2019-02-12 00:20:29.869023 2019-02-12 00:20:29.869023 63 \N \N \N 0 PV2-V-26 1 700.00 1.00 \N \N 71 11 2 300.0 1 2019-02-12 00:33:14.206715 2019-02-12 00:33:14.206715 64 \N \N \N 6 PV1-V-36 1 300.00 0.00 \N \N 72 10 2 958.0 1 2019-02-12 01:32:59.126474 2019-02-12 01:32:59.126474 65 \N \N \N 0 PV2-V-27 1 958.00 0.00 \N \N 73 10 2 500.0 1 2019-02-12 01:41:17.94769 2019-02-12 01:41:17.94769 66 \N \N \N 6 PV2-V-28 1 500.00 0.00 \N \N 23 5 2 200.0 1 2019-02-06 01:32:58.698276 2019-02-06 01:32:58.698276 23 \N \N \N 6 PV2-V-4 1 200.00 0.00 \N \N 75 12 2 400.0 1 2019-02-12 21:03:31.184231 2019-02-12 21:03:31.184231 67 \N \N \N 3 \N 1 400.00 0.00 \N \N 77 12 1 499.0 1 2019-02-12 23:29:51.817692 2019-02-12 23:29:51.817692 68 8272 \N \N 0 PV1-V-38 1 \N 0.00 \N \N 78 12 2 500.0 1 2019-02-12 23:57:08.69318 2019-02-12 23:57:08.69318 70 \N \N \N 6 PV1-V-40 1 500.00 0.00 \N \N 79 12 2 479.0 1 2019-02-13 00:36:08.520157 2019-02-13 00:36:08.520157 71 \N \N \N 0 PV1-V-41 1 500.00 21.00 \N \N 80 15 2 150.0 1 2019-02-13 19:54:44.103585 2019-02-13 19:54:44.103585 72 \N \N \N 6 PV2-V-29 1 150.00 0.00 \N \N 81 15 2 499.0 1 2019-02-13 20:00:46.925006 2019-02-13 20:00:46.925006 73 \N \N \N 0 PV2-V-30 1 500.00 1.00 \N \N 82 15 2 150.0 1 2019-02-13 21:41:19.290301 2019-02-13 21:41:19.290301 74 \N \N \N 6 PV2-V-31 1 150.00 0.00 \N \N 83 14 2 899.0 1 2019-02-13 22:48:44.387008 2019-02-13 22:48:44.387008 70 \N \N \N 7 \N 1 899.00 0.00 \N \N 84 15 4 400.0 1 2019-02-13 22:56:48.864198 2019-02-13 22:56:48.864198 75 9004 \N \N 0 PV2-V-32 1 \N 0.00 \N \N 85 15 2 128.99 1 2019-02-13 22:57:04.17948 2019-02-13 22:57:04.17948 75 \N \N \N 0 PV2-V-32 1 200.00 71.01 \N \N 86 15 4 400.0 1 2019-02-13 23:38:35.8214 2019-02-13 23:38:35.8214 76 4969 \N \N 0 PV2-V-33 1 \N 0.00 \N \N 87 15 2 275.0 1 2019-02-13 23:38:42.63961 2019-02-13 23:38:42.63961 76 \N \N \N 0 PV2-V-33 1 275.00 0.00 \N \N 88 15 2 299.0 1 2019-02-13 23:44:30.807325 2019-02-13 23:44:30.807325 23 \N \N \N 7 \N 1 300.00 1.00 \N \N 89 14 2 1119.3 1 2019-02-13 23:49:53.424202 2019-02-13 23:49:53.424202 77 \N \N \N 0 PV1-V-42 1 1119.30 0.00 \N \N 90 15 2 400.0 1 2019-02-13 23:56:58.951989 2019-02-13 23:56:58.951989 78 \N \N \N 3 \N 1 400.00 0.00 \N \N 91 15 2 489.0 1 2019-02-14 02:27:11.13495 2019-02-14 02:27:11.13495 80 \N \N \N 0 PV2-V-36 1 500.00 11.00 \N \N 93 15 2 177.0 1 2019-02-14 02:30:50.830522 2019-02-14 02:30:50.830522 82 \N \N \N 6 PV2-V-38 1 177.00 0.00 \N \N 94 17 2 479.0 1 2019-02-14 18:34:37.685836 2019-02-14 18:34:37.685836 83 \N \N \N 0 PV2-V-39 1 500.00 21.00 \N \N 95 17 2 349.0 1 2019-02-14 18:47:32.017879 2019-02-14 18:47:32.017879 74 \N \N \N 7 \N 1 349.00 0.00 \N \N 96 17 2 649.0 1 2019-02-14 20:22:55.527504 2019-02-14 20:22:55.527504 84 \N \N \N 0 PV2-V-40 1 700.00 51.00 \N \N 97 17 4 1407.0 1 2019-02-15 01:09:23.249981 2019-02-15 01:09:23.249981 86 4097 \N \N 0 PV2-V-42 1 \N 0.00 \N \N 98 16 1 698.0 1 2019-02-15 02:17:55.267368 2019-02-15 02:17:55.267368 87 8496 \N \N 0 PV1-V-43 1 \N 0.00 \N \N 99 18 2 499.0 1 2019-02-15 21:33:21.315304 2019-02-15 21:33:21.315304 88 \N \N \N 0 PV2-V-43 1 500.00 1.00 \N \N 100 19 2 549.0 1 2019-02-15 21:38:52.632775 2019-02-15 21:38:52.632775 89 \N \N \N 0 PV1-V-44 1 549.00 0.00 \N \N 101 19 1 599.0 1 2019-02-15 22:27:46.198049 2019-02-15 22:27:46.198049 90 2428 \N \N 6 PV1-V-45 1 \N 0.00 \N \N 102 18 1 489.0 1 2019-02-15 23:54:37.9188 2019-02-15 23:54:37.9188 91 8352 \N \N 0 PV2-V-44 1 \N 0.00 \N \N 103 19 2 899.0 1 2019-02-16 00:15:28.971835 2019-02-16 00:15:28.971835 92 \N \N \N 0 PV1-V-46 1 899.00 0.00 \N \N 104 18 2 769.0 1 2019-02-16 00:31:13.844822 2019-02-16 00:31:13.844822 93 \N \N \N 0 PV2-V-45 1 1000.00 231.00 \N \N 105 19 2 1728.0 1 2019-02-16 00:56:35.135196 2019-02-16 00:56:35.135196 94 \N \N \N 0 PV1-V-47 1 1728.00 0.00 \N \N 106 19 1 599.0 1 2019-02-16 01:47:28.701502 2019-02-16 01:47:28.701502 95 9978 \N \N 0 PV1-V-48 1 \N 0.00 \N \N 107 19 2 86.0 0 2019-02-16 02:44:40.906375 2019-02-16 02:44:40.906375 \N \N \N 1 2 \N 1 \N \N \N \N 108 20 4 549.0 1 2019-02-16 19:52:40.134406 2019-02-16 19:52:40.134406 96 3681 \N \N 0 PV1-V-49 1 \N 0.00 \N \N 109 21 4 749.0 1 2019-02-16 20:05:15.187391 2019-02-16 20:05:15.187391 97 4535 \N \N 0 PV2-V-46 1 \N 0.00 \N \N 110 20 4 499.0 1 2019-02-16 20:08:40.259185 2019-02-16 20:08:40.259185 98 4535 \N \N 0 PV1-V-50 1 \N 0.00 \N \N 111 20 2 1000.0 1 2019-02-16 20:56:54.614214 2019-02-16 20:56:54.614214 90 \N \N \N 7 \N 1 1000.00 0.00 \N \N 112 20 2 1778.0 1 2019-02-16 21:05:56.104627 2019-02-16 21:05:56.104627 99 \N \N \N 0 PV1-V-51 1 1778.00 0.00 \N \N 113 20 1 699.0 1 2019-02-16 21:17:05.434018 2019-02-16 21:17:05.434018 100 2428 \N \N 0 PV1-V-52 1 \N 0.00 \N \N 114 20 4 1199.0 1 2019-02-16 21:21:15.114864 2019-02-16 21:21:15.114864 101 5587 \N \N 0 PV1-V-53 1 \N 0.00 \N \N 115 20 4 489.0 1 2019-02-16 21:58:27.27682 2019-02-16 21:58:27.27682 102 9515 \N \N 0 PV1-V-54 1 \N 0.00 \N \N 116 21 2 839.0 1 2019-02-16 22:24:55.584445 2019-02-16 22:24:55.584445 103 \N \N \N 0 PV2-V-47 1 850.00 11.00 \N \N 117 20 2 200.0 1 2019-02-17 00:10:43.077421 2019-02-17 00:10:43.077421 104 \N \N \N 6 PV1-V-55 1 200.00 0.00 \N \N 118 21 2 989.0 1 2019-02-17 00:26:26.787035 2019-02-17 00:26:26.787035 105 \N \N \N 0 PV2-V-48 1 1000.00 11.00 \N \N 119 20 2 500.0 1 2019-02-17 01:32:57.646434 2019-02-17 01:32:57.646434 106 \N \N \N 6 PV1-V-56 1 500.00 0.00 \N \N 120 20 2 783.0 0 2019-02-17 02:39:57.248781 2019-02-17 02:39:57.248781 \N \N \N 2 2 \N 1 \N \N \N \N 121 22 1 1174.0 1 2019-02-17 21:05:55.060414 2019-02-17 21:05:55.060414 107 5045 \N \N 0 PV2-V-49 1 \N 0.00 \N \N 122 23 2 1398.99 1 2019-02-17 21:25:02.47447 2019-02-17 21:25:02.47447 108 \N \N \N 0 PV1-V-57 1 1500.00 101.01 \N \N 123 23 2 1248.0 1 2019-02-17 21:28:35.811128 2019-02-17 21:28:35.811128 109 \N \N \N 0 PV1-V-58 1 1300.00 52.00 \N \N 126 23 2 557.0 1 2019-02-17 21:31:09.79674 2019-02-17 21:31:09.79674 110 \N \N \N 6 PV1-V-59 1 1000.00 443.00 \N \N 127 23 4 2236.0 1 2019-02-17 21:40:00.947534 2019-02-17 21:40:00.947534 112 4969 \N \N 0 PV1-V-61 1 \N 0.00 \N \N 128 24 2 150.0 1 2019-02-18 17:58:39.61783 2019-02-18 17:58:39.61783 113 \N \N \N 6 PV2-V-50 1 150.00 0.00 \N \N 130 24 1 319.0 1 2019-02-18 19:54:37.619521 2019-02-18 19:54:37.619521 113 0 \N \N 7 \N 1 \N 0.00 \N \N 132 24 2 281.0 1 2019-02-18 20:02:50.632712 2019-02-18 20:02:50.632712 114 \N \N \N 6 PV2-V-51 1 300.00 19.00 \N \N 133 25 1 2048.0 1 2019-02-18 23:25:36.689224 2019-02-18 23:25:36.689224 115 6234 \N \N 0 PV1-V-62 1 \N 0.00 \N \N 134 24 2 499.0 1 2019-02-19 01:10:50.941083 2019-02-19 01:10:50.941083 116 \N \N \N 0 PV2-V-52 1 499.00 0.00 \N \N 135 25 2 72.0 0 2019-02-19 02:32:36.080358 2019-02-19 02:32:36.080358 \N \N \N 3 2 \N 1 \N \N \N \N 137 26 1 619.0 1 2019-02-19 17:51:58.422591 2019-02-19 17:51:58.422591 118 3596 \N \N 0 PV2-V-53 1 \N 0.00 \N \N 138 27 2 1049.0 1 2019-02-20 00:14:46.53989 2019-02-20 00:14:46.53989 119 \N \N \N 0 PV1-V-64 1 1049.00 0.00 \N \N 139 27 2 549.0 1 2019-02-20 00:26:31.604232 2019-02-20 00:26:31.604232 106 \N \N \N 7 \N 1 600.00 51.00 \N \N 140 27 2 1177.99 1 2019-02-20 01:26:29.068815 2019-02-20 01:26:29.068815 120 \N \N \N 0 PV1-V-65 1 1177.99 0.00 \N \N 141 27 2 400.0 1 2019-02-20 01:51:15.305642 2019-02-20 01:51:15.305642 122 \N \N \N 6 PV1-V-67 1 400.00 0.00 \N \N 142 28 2 799.0 1 2019-02-20 19:05:37.98201 2019-02-20 19:05:37.98201 123 \N \N \N 0 PV1-V-68 1 799.00 0.00 \N \N 143 28 2 899.0 1 2019-02-20 19:10:50.844115 2019-02-20 19:10:50.844115 124 \N \N \N 0 PV1-V-69 1 899.00 0.00 \N \N 145 29 2 569.0 1 2019-02-20 19:56:36.974858 2019-02-20 19:56:36.974858 126 \N \N \N 0 PV2-V-54 1 569.00 0.00 \N \N 146 29 2 1129.0 1 2019-02-20 19:58:53.668277 2019-02-20 19:58:53.668277 127 \N \N \N 0 PV2-V-55 1 1129.00 0.00 \N \N 147 28 2 1198.0 1 2019-02-20 21:25:52.157862 2019-02-20 21:25:52.157862 128 \N \N \N 0 PV1-V-71 1 1198.00 0.00 \N \N 148 28 4 469.0 1 2019-02-20 23:51:13.952259 2019-02-20 23:51:13.952259 129 5499 \N \N 0 PV1-V-72 1 \N 0.00 \N \N 149 29 2 569.0 1 2019-02-20 23:57:02.555192 2019-02-20 23:57:02.555192 130 \N \N \N 0 PV2-V-56 1 600.00 31.00 \N \N 150 29 2 528.99 1 2019-02-21 01:17:00.896451 2019-02-21 01:17:00.896451 132 \N \N \N 0 PV2-V-58 1 529.00 0.01 \N \N 151 29 3 899.0 1 2019-02-21 01:23:17.165834 2019-02-21 01:23:17.165834 133 \N \N \N 0 PV2-V-59 1 \N 0.00 \N \N 1111 152 32 1 769.0 1 2019-02-21 19:21:23.406107 2019-02-21 19:21:23.406107 134 5399 \N \N 0 PV1-V-73 1 \N 0.00 \N \N 153 32 1 1169.0 1 2019-02-21 19:41:03.53014 2019-02-21 19:41:03.53014 135 3198 \N \N 0 PV1-V-74 1 \N 0.00 \N \N 155 32 2 897.0 1 2019-02-21 21:14:17.523443 2019-02-21 21:14:17.523443 14 \N \N \N 7 \N 1 897.00 0.00 \N \N 156 32 1 479.0 1 2019-02-22 01:15:19.464826 2019-02-22 01:15:19.464826 136 0 \N \N 0 PV1-V-75 1 \N 0.00 \N \N 157 34 4 3798.0 1 2019-02-22 17:09:49.085756 2019-02-22 17:09:49.085756 137 1280 \N \N 0 PV1-V-76 1 \N 0.00 \N \N 158 34 2 1057.0 1 2019-02-22 17:10:16.645141 2019-02-22 17:10:16.645141 137 \N \N \N 0 PV1-V-76 1 1057.00 0.00 \N \N 159 34 2 629.0 1 2019-02-22 19:11:09.285318 2019-02-22 19:11:09.285318 8 \N \N \N 7 \N 1 629.00 0.00 \N \N 160 34 2 489.0 1 2019-02-23 00:20:22.113965 2019-02-23 00:20:22.113965 140 \N \N \N 0 PV1-V-79 1 489.00 0.00 \N \N 161 35 1 210.0 1 2019-02-23 01:53:40.650957 2019-02-23 01:53:40.650957 141 5207 \N \N 6 PV2-V-60 1 \N 0.00 \N \N 162 34 1 300.0 1 2019-02-23 02:02:10.07001 2019-02-23 02:02:10.07001 142 4233 \N \N 0 PV1-V-80 1 \N 0.00 \N \N 163 34 2 449.0 1 2019-02-23 02:02:21.28559 2019-02-23 02:02:21.28559 142 \N \N \N 0 PV1-V-80 1 449.00 0.00 \N \N 164 34 2 50.0 0 2019-02-23 02:15:09.779894 2019-02-23 02:15:09.779894 \N \N \N 4 2 \N 1 \N \N \N \N 165 36 2 98.0 1 2019-02-23 19:18:25.240619 2019-02-23 19:18:25.240619 143 \N \N \N 0 PV2-V-61 1 98.00 0.00 \N \N 166 37 2 1339.0 1 2019-02-23 19:40:15.074486 2019-02-23 19:40:15.074486 144 \N \N \N 0 PV1-V-81 1 1339.00 0.00 \N \N 167 37 2 50.0 0 2019-02-23 19:48:22.16715 2019-02-23 19:48:22.16715 \N \N \N 5 2 \N 1 \N \N \N \N 169 36 2 1308.0 1 2019-02-23 19:57:49.891823 2019-02-23 19:57:49.891823 145 \N \N \N 0 PV2-V-62 1 1308.00 0.00 \N \N 170 36 2 469.0 1 2019-02-23 20:59:07.368791 2019-02-23 20:59:07.368791 146 \N \N \N 0 PV2-V-63 1 500.00 31.00 \N \N 171 \N 2 1300.0 1 2019-02-23 21:54:41.620365 2019-02-23 21:54:41.620365 110 \N \N \N 7 \N 1 1300.00 0.00 \N \N 172 37 2 718.0 0 2019-02-23 22:14:10.365728 2019-02-23 22:14:10.365728 \N \N \N 6 2 \N 1 \N \N \N \N 173 37 1 1169.0 1 2019-02-24 00:29:34.657871 2019-02-24 00:29:34.657871 147 3484 \N \N 0 PV1-V-82 1 \N 0.00 \N \N 174 \N 2 210.0 1 2019-02-24 00:44:12.509802 2019-02-24 00:44:12.584792 139 \N \N \N 3 \N 1 210.00 0.00 \N \N 175 37 2 1190.0 1 2019-02-24 01:27:44.134319 2019-02-24 01:27:44.134319 150 \N \N \N 0 PV1-V-84 1 1190.00 0.00 \N \N 176 38 2 419.0 1 2019-02-24 19:35:17.807166 2019-02-24 19:35:17.807166 12 \N \N \N 7 \N 1 500.00 81.00 \N \N 177 39 2 2268.0 1 2019-02-24 22:08:16.703701 2019-02-24 22:08:16.703701 151 \N \N \N 0 PV2-V-65 1 2300.00 32.00 \N \N 178 40 2 250.0 1 2019-02-25 23:58:03.170539 2019-02-25 23:58:03.170539 64 \N \N \N 4 \N 1 500.00 250.00 \N \N 179 43 4 699.0 1 2019-02-26 20:47:32.953418 2019-02-26 20:47:32.953418 152 9373 \N \N 0 PV1-V-85 1 \N 0.00 \N \N 180 42 1 489.0 1 2019-02-26 21:21:09.901768 2019-02-26 21:21:09.901768 155 672 \N \N 0 PV2-V-68 1 \N 0.00 \N \N 181 42 1 99.0 1 2019-02-26 21:22:49.040902 2019-02-26 21:22:49.040902 156 672 \N \N 0 PV2-V-69 1 \N 0.00 \N \N 182 43 1 1299.0 1 2019-02-26 23:04:03.272086 2019-02-26 23:04:03.272086 157 5836 \N \N 0 PV1-V-86 1 \N 0.00 \N \N 183 43 2 99.0 1 2019-02-27 00:26:10.082352 2019-02-27 00:26:10.082352 158 \N \N \N 0 PV1-V-87 1 100.00 1.00 \N \N 184 45 2 1000.0 1 2019-02-27 18:13:00.530013 2019-02-27 18:13:00.575863 18 \N \N \N 3 \N 1 1000.00 0.00 \N \N 185 44 2 839.0 1 2019-02-27 23:49:48.425857 2019-02-27 23:49:48.425857 159 \N \N \N 0 PV2-V-70 1 1000.00 161.00 \N \N 186 44 1 998.0 1 2019-02-28 01:39:40.361642 2019-02-28 01:39:40.361642 160 0 \N \N 0 PV2-V-71 1 \N 0.00 \N \N 187 45 1 1098.0 1 2019-02-28 01:45:15.076538 2019-02-28 01:45:15.076538 161 1996 \N \N 0 PV1-V-88 1 \N 0.00 \N \N 191 47 2 489.0 1 2019-02-28 18:01:45.169159 2019-02-28 18:01:45.169159 164 \N \N \N 0 PV1-V-91 1 489.00 0.00 \N \N 192 47 2 500.0 1 2019-02-28 20:46:22.237506 2019-02-28 20:46:22.237506 165 \N \N \N 3 \N 1 500.00 0.00 \N \N 193 49 2 479.0 1 2019-03-01 18:27:49.234301 2019-03-01 18:27:49.234301 166 \N \N \N 0 PV1-V-93 1 479.00 0.00 \N \N 194 48 1 898.0 1 2019-03-01 19:48:14.45282 2019-03-01 19:48:14.45282 167 9585 \N \N 0 PV2-V-72 1 \N 0.00 \N \N 195 48 4 200.0 1 2019-03-01 22:16:23.432384 2019-03-01 22:16:23.432384 168 592 \N \N 3 \N 1 \N 0.00 \N \N 196 49 2 499.0 1 2019-03-01 23:36:40.916854 2019-03-01 23:36:40.916854 169 \N \N \N 0 PV1-V-94 1 499.00 0.00 \N \N 197 49 2 649.0 1 2019-03-01 23:44:23.224479 2019-03-01 23:44:23.224479 170 \N \N \N 0 PV1-V-95 1 700.00 51.00 \N \N 198 49 2 300.0 1 2019-03-02 00:29:19.912225 2019-03-02 00:29:19.912225 176 \N \N \N 6 PV1-V-100 0 300.00 0.00 \N \N 199 49 2 799.0 1 2019-03-02 00:30:05.34824 2019-03-02 00:30:05.34824 177 \N \N \N 0 PV1-V-101 1 799.00 0.00 \N \N 200 49 2 500.0 1 2019-03-02 00:57:29.695343 2019-03-02 00:57:29.695343 178 \N \N \N 3 \N 1 500.00 0.00 \N \N 201 49 2 99.0 1 2019-03-02 00:59:18.660961 2019-03-02 00:59:18.660961 183 \N \N \N 0 PV1-V-105 1 99.00 0.00 \N \N 202 49 2 799.0 1 2019-03-02 01:48:25.878248 2019-03-02 01:48:25.878248 184 \N \N \N 0 PV1-V-106 1 799.00 0.00 \N \N 203 48 4 949.0 1 2019-03-02 01:52:31.723556 2019-03-02 01:52:31.723556 185 3792 \N \N 0 PV2-V-77 1 \N 0.00 \N \N 204 49 2 68.0 0 2019-03-02 02:00:46.02853 2019-03-02 02:00:46.02853 \N \N \N 7 2 \N 1 \N \N \N \N 205 49 2 50.0 0 2019-03-02 02:08:56.65497 2019-03-02 02:08:56.65497 \N \N \N 8 2 \N 1 \N \N \N \N 206 49 2 500.0 0 2019-03-02 02:10:12.478696 2019-03-02 02:10:12.478696 \N \N \N 9 2 \N 1 \N \N \N \N 207 48 2 899.0 1 2019-03-02 02:11:41.967522 2019-03-02 02:11:41.967522 186 \N \N \N 0 PV2-V-78 1 1000.00 101.00 \N \N 208 50 2 499.0 1 2019-03-02 02:14:42.158678 2019-03-02 02:14:42.158678 187 \N \N \N 0 PV1-V-107 1 499.00 0.00 \N \N 210 52 4 459.0 1 2019-03-02 18:47:33.180604 2019-03-02 18:47:33.180604 188 3510 \N \N 0 PV2-V-79 1 \N 0.00 \N \N 211 52 2 110.0 1 2019-03-02 18:47:38.204918 2019-03-02 18:47:38.204918 188 \N \N \N 0 PV2-V-79 1 110.00 0.00 \N \N 212 52 2 869.0 1 2019-03-02 19:03:48.060419 2019-03-02 19:03:48.060419 189 \N \N \N 0 PV2-V-80 1 1000.00 131.00 \N \N 213 51 2 198.0 1 2019-03-02 19:37:47.216496 2019-03-02 19:37:47.216496 190 \N \N \N 0 PV1-V-108 1 198.00 0.00 \N \N 214 51 2 50.0 0 2019-03-02 19:39:39.280882 2019-03-02 19:39:39.280882 \N \N \N 10 2 \N 1 \N \N \N \N 215 51 2 479.0 1 2019-03-02 21:35:50.166459 2019-03-02 21:35:50.166459 191 \N \N \N 0 PV1-V-109 1 479.00 0.00 \N \N 216 51 2 199.0 1 2019-03-02 21:41:40.822805 2019-03-02 21:41:40.822805 64 \N \N \N 7 \N 1 199.00 0.00 \N \N 217 52 2 899.0 1 2019-03-02 23:09:17.229808 2019-03-02 23:09:17.229808 192 \N \N \N 0 PV2-V-81 1 900.00 1.00 \N \N 218 53 2 469.0 1 2019-03-03 18:38:55.323586 2019-03-03 18:38:55.323586 193 \N \N \N 0 PV1-V-110 1 500.00 31.00 \N \N 219 54 2 619.0 1 2019-03-03 18:53:40.521758 2019-03-03 18:53:40.521758 194 \N \N \N 0 PV2-V-82 1 619.00 0.00 \N \N 220 54 2 499.0 1 2019-03-03 19:07:49.106803 2019-03-03 19:07:49.106803 195 \N \N \N 0 PV2-V-83 1 499.00 0.00 \N \N 221 53 2 1248.0 1 2019-03-03 19:14:16.383607 2019-03-03 19:14:16.383607 196 \N \N \N 0 PV1-V-111 1 1500.00 252.00 \N \N 222 54 2 619.0 1 2019-03-03 19:17:43.032325 2019-03-03 19:17:43.032325 197 \N \N \N 0 PV2-V-84 1 619.00 0.00 \N \N 223 54 2 1899.0 1 2019-03-03 19:18:28.170046 2019-03-03 19:18:28.170046 198 \N \N \N 0 PV2-V-85 1 1899.00 0.00 \N \N 224 53 1 3165.0 1 2019-03-03 20:59:11.673346 2019-03-03 20:59:11.673346 199 5045 \N \N 0 PV1-V-112 1 \N 0.00 \N \N 225 54 1 1987.0 1 2019-03-03 21:11:38.444068 2019-03-03 21:11:38.444068 201 7347 \N \N 0 PV2-V-87 1 \N 0.00 \N \N 226 54 2 196.0 1 2019-03-03 21:14:12.6319 2019-03-03 21:14:12.6319 202 \N \N \N 0 PV2-V-88 1 196.00 0.00 \N \N 227 54 2 0.01 1 2019-03-03 21:14:35.131077 2019-03-03 21:14:35.131077 202 \N \N \N 0 PV2-V-88 1 196.00 195.99 \N \N 228 55 2 500.0 1 2019-03-04 16:36:36.694948 2019-03-04 16:36:36.694948 203 \N \N \N 3 \N 1 500.00 0.00 \N \N 229 56 2 629.0 1 2019-03-04 22:59:01.568923 2019-03-04 22:59:01.568923 204 \N \N \N 0 PV2-V-89 1 629.00 0.00 \N \N 230 56 2 1500.0 1 2019-03-05 00:41:52.601245 2019-03-05 00:41:52.684039 205 \N \N \N 3 \N 1 1500.00 0.00 \N \N 231 56 2 869.0 1 2019-03-05 01:15:49.244486 2019-03-05 01:15:49.244486 209 \N \N \N 0 PV2-V-93 1 870.00 1.00 \N \N 232 56 2 600.0 1 2019-03-05 01:27:42.693168 2019-03-05 01:27:42.693168 210 \N \N \N 0 PV2-V-94 1 600.00 0.00 \N \N 233 56 2 300.0 1 2019-03-05 01:29:59.340297 2019-03-05 01:29:59.340297 211 \N \N \N 6 PV2-V-95 1 300.00 0.00 \N \N 234 55 2 50.0 0 2019-03-05 01:37:12.020758 2019-03-05 01:37:12.020758 \N \N \N 11 2 \N 1 \N \N \N \N 236 55 2 180.01 1 2019-03-05 01:52:38.115814 2019-03-05 01:52:38.115814 184 \N \N \N 5 \N 1 180.01 0.00 1 \N 237 58 2 1248.0 1 2019-03-05 19:09:52.726006 2019-03-05 19:09:52.726006 215 \N \N \N 0 PV1-V-115 1 1248.00 0.00 \N \N 238 58 2 199.0 1 2019-03-05 21:29:12.035841 2019-03-05 21:29:12.035841 216 \N \N \N 6 PV1-V-116 1 199.00 0.00 \N \N 241 60 2 595.0 1 2019-03-06 22:10:35.593369 2019-03-06 22:10:35.593369 218 \N \N \N 0 PV1-V-117 1 595.00 0.00 \N \N 242 60 2 469.0 1 2019-03-07 00:18:28.130064 2019-03-07 00:18:28.130064 219 \N \N \N 0 PV1-V-118 1 500.00 31.00 \N \N 243 60 1 749.0 1 2019-03-07 00:46:28.152938 2019-03-07 00:46:28.152938 220 8811 \N \N 0 PV1-V-119 1 \N 0.00 \N \N 244 59 2 799.0 1 2019-03-07 01:44:04.644181 2019-03-07 01:44:04.644181 221 \N \N \N 0 PV2-V-100 1 1000.00 201.00 \N \N 245 60 2 489.0 1 2019-03-07 01:45:13.773885 2019-03-07 01:45:13.773885 222 \N \N \N 0 PV1-V-120 1 500.00 11.00 \N \N 246 60 2 420.0 1 2019-03-07 01:48:04.173645 2019-03-07 01:48:04.173645 223 \N \N \N 6 PV1-V-121 1 500.00 80.00 \N \N 247 59 2 949.0 1 2019-03-07 01:52:53.313831 2019-03-07 01:52:53.313831 224 \N \N \N 0 PV2-V-101 1 1000.00 51.00 \N \N 248 62 2 899.0 1 2019-03-07 21:59:50.540628 2019-03-07 21:59:50.540628 225 \N \N \N 0 PV2-V-102 1 899.00 0.00 \N \N 249 62 2 899.0 1 2019-03-08 00:28:44.483209 2019-03-08 00:28:44.483209 226 \N \N \N 0 PV2-V-103 1 900.00 1.00 \N \N 250 63 3 400.0 1 2019-03-08 17:13:49.042667 2019-03-08 17:13:49.082745 67 \N \N \N 3 \N 1 \N 0.00 \N \N 4858152465545465 251 63 2 479.0 1 2019-03-09 00:46:55.57679 2019-03-09 00:46:55.57679 227 \N \N \N 0 PV1-V-122 1 500.00 21.00 \N \N 252 63 2 150.0 1 2019-03-09 00:49:10.134433 2019-03-09 00:49:10.134433 228 \N \N \N 6 PV1-V-123 1 200.00 50.00 \N \N 253 63 2 50.0 1 2019-03-09 00:49:53.596323 2019-03-09 00:49:53.596323 228 \N \N \N 4 \N 1 50.00 0.00 \N \N 254 64 1 1798.0 1 2019-03-09 01:06:22.457099 2019-03-09 01:06:22.457099 229 3805 \N \N 0 PV2-V-104 1 \N 0.00 \N \N 255 65 4 469.0 1 2019-03-09 20:42:51.745286 2019-03-09 20:42:51.745286 230 3318 \N \N 0 PV1-V-124 1 \N 0.00 \N \N 256 66 2 589.0 1 2019-03-09 20:50:39.601626 2019-03-09 20:50:39.601626 231 \N \N \N 0 PV2-V-105 1 1000.00 411.00 \N \N 257 65 4 699.0 1 2019-03-09 21:37:47.405975 2019-03-09 21:37:47.405975 233 2466 \N \N 0 PV1-V-125 1 \N 0.00 \N \N 258 66 2 818.99 1 2019-03-09 22:13:39.634991 2019-03-09 22:13:39.634991 234 \N \N \N 0 PV2-V-107 1 1000.00 181.01 \N \N 260 66 2 159.0 1 2019-03-09 22:29:46.752389 2019-03-09 22:29:46.752389 66 \N \N \N 7 \N 1 210.00 51.00 \N \N 261 66 2 162.0 1 2019-03-09 22:38:27.052546 2019-03-09 22:38:27.052546 82 \N \N \N 4 \N 1 162.00 0.00 \N \N 262 65 2 469.0 1 2019-03-09 22:49:40.879108 2019-03-09 22:49:40.879108 235 \N \N \N 0 PV1-V-126 1 469.00 0.00 \N \N 263 65 2 50.0 0 2019-03-09 22:55:13.910609 2019-03-09 22:55:13.910609 \N \N \N 12 2 \N 1 \N \N \N \N 264 66 1 489.0 1 2019-03-09 23:11:55.765737 2019-03-09 23:11:55.765737 141 5207 \N \N 7 \N 1 \N 0.00 \N \N 265 65 2 499.0 1 2019-03-09 23:32:33.625896 2019-03-09 23:32:33.625896 236 \N \N \N 0 PV1-V-127 1 499.00 0.00 \N \N 266 66 2 250.0 1 2019-03-09 23:33:06.467334 2019-03-09 23:33:06.467334 82 \N \N \N 7 \N 1 250.00 0.00 \N \N 267 65 2 878.0 0 2019-03-09 23:43:21.439949 2019-03-09 23:43:21.439949 \N \N \N 13 2 \N 1 \N \N \N \N 268 65 2 749.0 1 2019-03-10 00:29:05.754566 2019-03-10 00:29:05.754566 237 \N \N \N 0 PV1-V-128 1 749.00 0.00 \N \N 269 66 2 499.0 1 2019-03-10 01:00:35.471521 2019-03-10 01:00:35.471521 238 \N \N \N 0 PV2-V-108 1 500.00 1.00 \N \N 270 66 2 49.0 1 2019-03-10 01:03:54.315411 2019-03-10 01:03:54.315411 239 \N \N \N 0 PV2-V-109 1 50.00 1.00 \N \N 271 66 2 799.0 1 2019-03-10 01:08:52.56021 2019-03-10 01:08:52.56021 240 \N \N \N 0 PV2-V-110 1 1000.00 201.00 \N \N 272 65 2 1098.01 1 2019-03-10 01:31:25.514382 2019-03-10 01:31:25.514382 241 \N \N \N 0 PV1-V-129 1 1098.01 0.00 \N \N 273 66 2 949.0 1 2019-03-10 01:47:49.246564 2019-03-10 01:47:49.246564 242 \N \N \N 0 PV2-V-111 1 1000.00 51.00 \N \N 274 67 2 700.0 1 2019-03-10 17:32:36.484031 2019-03-10 17:32:36.484031 243 \N \N \N 6 PV1-V-130 1 700.00 0.00 \N \N 275 67 2 499.0 1 2019-03-10 21:16:39.173051 2019-03-10 21:16:39.173051 244 \N \N \N 0 PV1-V-131 1 500.00 1.00 \N \N 276 69 2 500.0 1 2019-03-11 18:37:16.201434 2019-03-11 18:37:16.269983 171 \N \N \N 3 \N 1 500.00 0.00 \N \N 277 70 2 49.0 1 2019-03-11 20:03:37.026769 2019-03-11 20:03:37.026769 245 \N \N \N 0 PV2-V-112 1 49.00 0.00 \N \N 278 69 2 1188.0 1 2019-03-11 21:13:29.70121 2019-03-11 21:13:29.70121 246 \N \N \N 0 PV1-V-132 1 1188.00 0.00 \N \N 279 69 2 50.0 0 2019-03-12 01:55:25.653213 2019-03-12 01:55:25.653213 \N \N \N 14 2 \N 1 \N \N \N \N 280 71 2 500.0 1 2019-03-12 18:27:32.85462 2019-03-12 18:27:32.894995 18 \N \N \N 3 \N 1 500.00 0.00 \N \N 281 73 4 1418.0 1 2019-03-13 19:57:12.16466 2019-03-13 19:57:12.16466 247 7946 \N \N 0 PV2-V-113 1 \N 0.00 \N \N 282 73 2 349.0 1 2019-03-13 21:08:19.769114 2019-03-13 21:08:19.769114 72 \N \N \N 7 \N 1 350.00 1.00 \N \N 283 73 2 500.0 1 2019-03-13 21:11:05.16933 2019-03-13 21:11:05.16933 248 \N \N \N 6 PV2-V-114 1 500.00 0.00 \N \N 284 73 2 0 1 2019-03-13 21:40:11.88161 2019-03-13 21:40:11.88161 248 \N \N \N 4 \N 1 500.00 500.00 \N \N 285 73 2 499.0 1 2019-03-13 21:40:47.546628 2019-03-13 21:40:47.546628 248 \N \N \N 7 \N 1 499.00 0.00 \N \N 286 73 1 1288.0 1 2019-03-13 22:20:58.171406 2019-03-13 22:20:58.171406 249 1532 \N \N 0 PV2-V-115 1 \N 0.00 \N \N 287 73 2 1300.0 0 2019-03-13 23:29:05.99645 2019-03-13 23:29:05.99645 \N \N \N 15 2 \N 1 \N \N \N \N 288 74 1 599.0 1 2019-03-14 20:10:56.7247 2019-03-14 20:10:56.7247 251 9953 \N \N 0 PV1-V-134 1 \N 0.00 \N \N 289 75 4 889.0 1 2019-03-14 20:48:49.289861 2019-03-14 20:48:49.289861 252 8980 \N \N 0 PV2-V-116 1 \N 0.00 \N \N 290 75 2 600.0 1 2019-03-15 00:31:58.795029 2019-03-15 00:31:58.795029 253 \N \N \N 0 PV2-V-117 1 600.00 0.00 \N \N 291 75 2 899.0 1 2019-03-15 00:33:15.458271 2019-03-15 00:33:15.458271 254 \N \N \N 0 PV2-V-118 1 899.00 0.00 \N \N 292 74 2 599.0 1 2019-03-15 00:58:36.472419 2019-03-15 00:58:36.472419 255 \N \N \N 0 PV1-V-135 1 600.00 1.00 \N \N 293 74 2 369.0 1 2019-03-15 01:44:58.288642 2019-03-15 01:44:58.288642 56 \N \N \N 7 \N 1 500.00 131.00 \N \N 294 76 2 899.0 1 2019-03-15 18:26:17.169739 2019-03-15 18:26:17.169739 256 \N \N \N 0 PV2-V-119 1 899.00 0.00 \N \N 295 76 1 669.0 1 2019-03-15 18:52:10.766631 2019-03-15 18:52:10.766631 257 4670 \N \N 0 PV2-V-120 1 \N 0.00 \N \N 296 77 2 1698.0 1 2019-03-15 19:13:16.654257 2019-03-15 19:13:16.654257 258 \N \N \N 0 PV1-V-136 1 1698.00 0.00 \N \N 297 77 3 999.99 1 2019-03-15 19:13:42.714896 2019-03-15 19:13:42.714896 258 \N \N \N 0 PV1-V-136 1 \N 0.00 \N \N 4858152465545465 298 77 2 749.0 1 2019-03-15 20:12:08.96898 2019-03-15 20:12:08.96898 259 \N \N \N 0 PV1-V-137 1 1000.00 251.00 \N \N 299 77 4 1049.0 1 2019-03-15 20:31:00.134477 2019-03-15 20:31:00.134477 260 9199 \N \N 0 PV1-V-138 1 \N 0.00 \N \N 300 77 2 889.0 1 2019-03-15 20:58:15.698871 2019-03-15 20:58:15.698871 261 \N \N \N 0 PV1-V-139 1 889.00 0.00 \N \N 301 77 2 50.0 0 2019-03-15 23:43:59.643084 2019-03-15 23:43:59.643084 \N \N \N 16 2 \N 1 \N \N \N \N 302 77 2 300.0 1 2019-03-16 00:19:42.232031 2019-03-16 00:19:42.232031 262 \N \N \N 6 PV1-V-140 1 500.00 200.00 \N \N 303 76 2 2357.0 1 2019-03-16 02:05:36.516994 2019-03-16 02:05:36.516994 263 \N \N \N 0 PV2-V-121 1 2357.00 0.00 \N \N 304 76 2 0.01 1 2019-03-16 02:06:06.823274 2019-03-16 02:06:06.823274 263 \N \N \N 0 PV2-V-121 1 2357.01 2357.00 \N \N 305 78 2 199.0 1 2019-03-16 18:52:53.673646 2019-03-16 18:52:53.673646 264 \N \N \N 0 PV2-V-122 1 199.00 0.00 \N \N 306 78 2 570.0 1 2019-03-16 18:54:48.913837 2019-03-16 18:54:48.913837 265 \N \N \N 6 PV2-V-123 1 600.00 30.00 \N \N 307 78 2 799.0 1 2019-03-16 20:29:07.104942 2019-03-16 20:29:07.104942 266 \N \N \N 0 PV2-V-124 1 800.00 1.00 \N \N 308 79 1 469.0 1 2019-03-16 21:49:46.313592 2019-03-16 21:49:46.313592 267 3593 \N \N 0 PV1-V-141 1 \N 0.00 \N \N 309 79 1 1049.0 1 2019-03-16 22:06:29.392188 2019-03-16 22:06:29.392188 268 7 \N \N 0 PV1-V-142 1 \N 0.00 \N \N 310 79 2 50.0 0 2019-03-17 01:26:10.647699 2019-03-17 01:26:10.647699 \N \N \N 17 2 \N 1 \N \N \N \N 311 78 2 1000.0 0 2019-03-17 01:28:22.396764 2019-03-17 01:28:22.396764 \N \N \N 18 2 \N 1 \N \N \N \N 312 81 2 489.0 1 2019-03-17 21:19:31.816838 2019-03-17 21:19:31.816838 269 \N \N \N 0 PV1-V-143 1 500.00 11.00 \N \N 313 83 3 1000.0 1 2019-03-19 23:17:01.281505 2019-03-19 23:17:01.330716 165 \N \N \N 3 \N 1 \N 0.00 \N \N 4858152465545465 314 83 3 1000.0 1 2019-03-19 23:19:05.373543 2019-03-19 23:19:05.446712 79 \N \N \N 3 \N 1 \N 0.00 \N \N 4858152465545465 315 83 3 400.0 1 2019-03-19 23:44:25.74016 2019-03-19 23:44:25.797659 78 \N \N \N 3 \N 1 \N 0.00 \N \N 4858152465545465 316 83 3 400.0 1 2019-03-20 00:09:04.574394 2019-03-20 00:09:04.621679 78 \N \N \N 3 \N 1 \N 0.00 \N \N 4858152465545465 317 82 1 659.0 1 2019-03-20 00:41:58.581343 2019-03-20 00:41:58.581343 270 949 \N \N 0 PV2-V-125 1 \N 0.00 \N \N 318 82 1 1499.0 1 2019-03-20 02:00:02.929029 2019-03-20 02:00:02.929029 271 5207 \N \N 0 PV2-V-126 1 \N 0.00 \N \N 319 85 2 299.0 1 2019-03-20 18:25:05.224109 2019-03-20 18:25:05.224109 228 \N \N \N 7 \N 1 299.00 0.00 \N \N 321 84 2 300.0 1 2019-03-20 20:11:12.595286 2019-03-20 20:11:12.595286 114 \N \N \N 4 \N 1 657.00 357.00 \N \N 322 84 4 685.0 1 2019-03-21 00:21:31.697551 2019-03-21 00:21:31.697551 272 9796 \N \N 0 PV2-V-127 1 \N 0.00 \N \N 323 84 4 998.0 1 2019-03-21 00:32:58.103486 2019-03-21 00:32:58.103486 273 3788 \N \N 0 PV2-V-128 1 \N 0.00 \N \N 324 85 2 469.0 1 2019-03-21 01:37:07.95956 2019-03-21 01:37:07.95956 274 \N \N \N 0 PV1-V-144 1 500.00 31.00 \N \N 325 85 2 50.0 0 2019-03-21 02:09:10.844597 2019-03-21 02:09:10.844597 \N \N \N 19 2 \N 1 \N \N \N \N 326 86 2 200.0 0 2019-03-21 17:09:42.040466 2019-03-21 17:09:42.040466 \N \N \N 20 2 \N 1 \N \N \N \N 327 86 2 649.0 1 2019-03-21 23:54:42.86239 2019-03-21 23:54:42.86239 275 \N \N \N 0 PV1-V-145 1 649.00 0.00 \N \N 328 86 2 50.0 0 2019-03-22 00:13:38.04988 2019-03-22 00:13:38.04988 \N \N \N 21 2 \N 1 \N \N \N \N 329 86 2 20.0 0 2019-03-22 00:45:36.235417 2019-03-22 00:45:36.235417 \N \N \N 22 2 \N 1 \N \N \N \N 330 87 2 499.0 1 2019-03-22 01:25:41.035162 2019-03-22 01:25:41.035162 276 \N \N \N 0 PV2-V-129 1 499.00 0.00 \N \N 331 86 2 500.0 0 2019-03-22 01:52:49.363221 2019-03-22 01:52:49.363221 \N \N \N 23 2 \N 1 \N \N \N \N 332 88 1 1188.0 1 2019-03-22 18:24:05.893423 2019-03-22 18:24:05.893423 277 8081 \N \N 0 PV2-V-130 1 \N 0.00 \N \N 333 89 2 1268.0 1 2019-03-22 19:33:17.576339 2019-03-22 19:33:17.576339 278 \N \N \N 0 PV1-V-146 1 1268.00 0.00 \N \N 334 89 1 469.0 1 2019-03-22 19:36:41.338037 2019-03-22 19:36:41.338037 279 6060 \N \N 0 PV1-V-147 1 \N 0.00 \N \N 337 89 1 300.0 1 2019-03-22 19:50:53.651885 2019-03-22 19:50:53.651885 280 877 \N \N 6 PV1-V-148 1 \N 0.00 \N \N 338 89 2 1100.0 0 2019-03-23 01:20:22.108552 2019-03-23 01:20:22.108552 \N \N \N 24 2 \N 1 \N \N \N \N 339 91 2 799.0 1 2019-03-23 18:07:16.871114 2019-03-23 18:07:16.871114 281 \N \N \N 0 PV2-V-131 1 800.00 1.00 \N \N 341 91 2 400.0 1 2019-03-23 21:01:36.453145 2019-03-23 21:01:36.453145 283 \N \N \N 6 PV2-V-133 1 400.00 0.00 \N \N 342 91 2 668.0 1 2019-03-23 21:57:25.244615 2019-03-23 21:57:25.244615 211 \N \N \N 7 \N 1 700.00 32.00 \N \N 343 91 2 489.0 1 2019-03-23 22:21:13.141775 2019-03-23 22:21:13.141775 284 \N \N \N 0 PV2-V-134 1 500.00 11.00 \N \N 344 90 2 500.0 1 2019-03-23 22:38:31.102656 2019-03-23 22:38:31.102656 223 \N \N \N 4 \N 1 500.00 0.00 \N \N 345 91 1 599.0 1 2019-03-24 00:20:26.857103 2019-03-24 00:20:26.857103 285 7580 \N \N 0 PV2-V-135 1 \N 0.00 \N \N 346 90 2 233.01 1 2019-03-24 01:14:22.965695 2019-03-24 01:14:23.023033 171 \N \N \N 3 \N 1 233.01 0.00 \N \N 347 91 2 500.0 0 2019-03-24 01:26:20.559277 2019-03-24 01:26:20.559277 \N \N \N 25 2 \N 1 \N \N \N \N 348 90 2 678.0 0 2019-03-24 01:42:25.656549 2019-03-24 01:42:25.656549 \N \N \N 26 2 \N 1 \N \N \N \N 349 93 2 998.0 1 2019-03-24 18:04:17.900468 2019-03-24 18:04:17.900468 286 \N \N \N 0 PV1-V-149 1 1000.00 2.00 \N \N 350 92 2 500.0 1 2019-03-24 18:55:37.510829 2019-03-24 18:55:37.510829 289 \N \N \N 6 PV2-V-138 1 1200.00 700.00 \N \N 351 92 2 500.0 1 2019-03-24 19:01:05.34403 2019-03-24 19:01:05.34403 291 \N \N \N 6 PV2-V-140 1 1200.00 700.00 \N \N 352 93 2 999.0 1 2019-03-24 20:46:29.624766 2019-03-24 20:46:29.624766 292 \N \N \N 0 PV1-V-150 1 1000.00 1.00 \N \N 353 93 2 799.0 1 2019-03-24 21:47:30.036149 2019-03-24 21:47:30.036149 122 \N \N \N 7 \N 1 1000.00 201.00 \N \N 354 95 2 1848.0 1 2019-03-25 17:45:11.955218 2019-03-25 17:45:11.955218 293 \N \N \N 0 PV1-V-151 1 1848.00 0.00 \N \N 355 95 2 599.0 1 2019-03-25 17:56:01.860524 2019-03-25 17:56:01.860524 294 \N \N \N 0 PV1-V-152 1 599.00 0.00 \N \N 356 95 2 50.0 0 2019-03-25 17:59:43.46925 2019-03-25 17:59:43.46925 \N \N \N 27 2 \N 1 \N \N \N \N 357 95 2 300.0 1 2019-03-25 18:51:23.53596 2019-03-25 18:51:23.53596 295 \N \N \N 6 PV1-V-153 1 300.00 0.00 \N \N 358 94 2 200.0 1 2019-03-25 20:03:39.460425 2019-03-25 20:03:39.460425 296 \N \N \N 6 PV2-V-141 1 399.00 199.00 \N \N 359 96 2 988.0 1 2019-03-26 20:48:48.042639 2019-03-26 20:48:48.042639 297 \N \N \N 0 PV2-V-142 1 988.00 0.00 \N \N 360 97 2 369.0 1 2019-03-27 00:25:33.750705 2019-03-27 00:25:33.750705 104 \N \N \N 7 \N 1 400.00 31.00 \N \N 361 97 2 24.0 0 2019-03-27 00:29:15.881431 2019-03-27 00:29:15.881431 \N \N \N 28 2 \N 1 \N \N \N \N 362 99 2 357.0 1 2019-03-27 19:41:36.018072 2019-03-27 19:41:36.018072 114 \N \N \N 7 \N 1 357.00 0.00 \N \N 363 98 2 699.0 1 2019-03-27 19:52:43.495094 2019-03-27 19:52:43.495094 298 \N \N \N 0 PV1-V-154 1 700.00 1.00 \N \N 364 99 1 869.0 1 2019-03-27 20:57:13.166295 2019-03-27 20:57:13.166295 299 9192 \N \N 0 PV2-V-143 1 \N 0.00 \N \N 365 98 2 500.0 0 2019-03-28 01:26:49.575919 2019-03-28 01:26:49.575919 \N \N \N 29 2 \N 1 \N \N \N \N 366 98 4 529.0 1 2019-03-28 01:41:24.555721 2019-03-28 01:41:24.555721 300 5102 \N \N 0 PV1-V-155 1 \N 0.00 \N \N 368 100 2 200.0 1 2019-03-28 22:30:17.433155 2019-03-28 22:30:17.433155 301 \N \N \N 6 PV1-V-156 1 200.00 0.00 \N \N 369 100 2 599.0 1 2019-03-28 22:52:43.762745 2019-03-28 22:52:43.762745 302 \N \N \N 0 PV1-V-157 1 599.00 0.00 \N \N 370 100 2 500.0 1 2019-03-28 22:54:39.990905 2019-03-28 22:54:39.990905 303 \N \N \N 6 PV1-V-158 1 500.00 0.00 \N \N 372 100 2 200.0 1 2019-03-29 00:30:31.097799 2019-03-29 00:30:31.1657 174 \N \N \N 3 \N 1 200.00 0.00 \N \N 373 102 2 250.0 1 2019-03-29 18:02:41.577311 2019-03-29 18:02:41.577311 306 \N \N \N 6 PV1-V-161 1 250.00 0.00 \N \N 374 102 2 50.0 0 2019-03-29 18:09:36.173455 2019-03-29 18:09:36.173455 \N \N \N 30 2 \N 1 \N \N \N \N 375 102 2 300.0 1 2019-03-29 18:23:03.849421 2019-03-29 18:23:03.849421 280 \N \N \N 4 \N 1 300.00 0.00 \N \N 376 103 2 579.0 1 2019-03-29 20:10:10.610444 2019-03-29 20:10:10.610444 307 \N \N \N 0 PV2-V-144 1 579.00 0.00 \N \N 377 103 2 150.0 1 2019-03-29 21:19:23.156226 2019-03-29 21:19:23.156226 308 \N \N \N 6 PV2-V-145 1 499.00 349.00 \N \N 378 104 2 1299.0 1 2019-03-30 18:10:33.405311 2019-03-30 18:10:33.405311 309 \N \N \N 0 PV1-V-162 1 1299.00 0.00 \N \N 379 104 2 678.0 0 2019-03-30 18:14:19.402178 2019-03-30 18:14:19.402178 \N \N \N 31 2 \N 1 \N \N \N \N 380 104 2 220.0 1 2019-03-30 20:54:06.264512 2019-03-30 20:54:06.264512 310 \N \N \N 6 PV1-V-163 1 220.00 0.00 \N \N 381 105 2 699.0 1 2019-03-30 23:18:14.832103 2019-03-30 23:18:14.832103 311 \N \N \N 0 PV2-V-146 1 1000.00 301.00 \N \N 382 105 2 899.0 1 2019-03-30 23:20:38.800813 2019-03-30 23:20:38.800813 312 \N \N \N 0 PV2-V-147 1 900.00 1.00 \N \N 383 104 2 699.0 1 2019-03-31 00:29:20.679841 2019-03-31 00:29:20.679841 313 \N \N \N 0 PV1-V-164 1 699.00 0.00 \N \N 384 105 2 500.0 0 2019-03-31 01:09:15.726521 2019-03-31 01:09:15.726521 \N \N \N 32 2 \N 1 \N \N \N \N 385 104 1 1398.0 1 2019-03-31 01:20:06.034866 2019-03-31 01:20:06.034866 314 1068 \N \N 0 PV1-V-165 1 \N 0.00 \N \N 386 107 2 1399.0 1 2019-03-31 19:09:04.07173 2019-03-31 19:09:04.07173 243 \N \N \N 7 \N 1 1500.00 101.00 \N \N 387 106 1 1474.0 1 2019-03-31 19:16:39.598461 2019-03-31 19:16:39.598461 315 6529 \N \N 0 PV2-V-148 1 \N 0.00 \N \N 388 107 1 1099.0 1 2019-03-31 19:38:00.524038 2019-03-31 19:38:00.524038 316 6831 \N \N 0 PV1-V-166 1 \N 0.00 \N \N 389 108 2 1199.0 1 2019-04-01 18:59:43.31351 2019-04-01 18:59:43.31351 317 \N \N \N 0 PV1-V-167 1 1199.00 0.00 \N \N 390 108 2 299.0 1 2019-04-01 19:01:52.661902 2019-04-01 19:01:52.661902 280 \N \N \N 7 \N 1 299.00 0.00 \N \N 391 108 2 50.0 0 2019-04-01 19:11:34.25492 2019-04-01 19:11:34.25492 \N \N \N 33 2 \N 1 \N \N \N \N 392 108 4 1438.0 1 2019-04-01 19:56:24.042816 2019-04-01 19:56:24.042816 318 7874 \N \N 0 PV1-V-168 1 \N 0.00 \N \N 393 108 2 568.0 1 2019-04-01 20:09:56.168715 2019-04-01 20:09:56.168715 319 \N \N \N 0 PV1-V-169 1 568.00 0.00 \N \N 394 108 2 1013.0 0 2019-04-01 21:22:26.046036 2019-04-01 21:22:26.046036 \N \N \N 34 2 \N 1 \N \N \N \N 395 110 2 799.0 1 2019-04-02 17:39:39.896746 2019-04-02 17:39:39.896746 320 \N \N \N 0 PV1-V-170 1 799.00 0.00 \N \N 396 110 2 250.0 1 2019-04-02 18:06:21.151376 2019-04-02 18:06:21.151376 321 \N \N \N 6 PV1-V-171 1 250.00 0.00 \N \N 397 109 2 200.0 1 2019-04-02 22:39:50.789365 2019-04-02 22:39:50.789365 283 \N \N \N 4 \N 1 499.00 299.00 \N \N 399 110 2 319.0 1 2019-04-03 01:16:10.863306 2019-04-03 01:16:10.863306 262 \N \N \N 4 \N 1 520.00 201.00 \N \N 400 111 2 243.0 1 2019-04-03 17:25:20.248558 2019-04-03 17:25:20.29566 18 \N \N \N 3 \N 1 243.00 0.00 \N \N 401 111 2 599.0 1 2019-04-03 23:20:42.3938 2019-04-03 23:20:42.3938 325 \N \N \N 0 PV1-V-175 1 600.00 1.00 \N \N 402 112 1 998.0 1 2019-04-04 01:57:29.129397 2019-04-04 01:57:29.129397 326 11 \N \N 0 PV2-V-149 1 \N 0.00 \N \N 403 113 2 300.0 1 2019-04-04 17:22:18.886956 2019-04-04 17:22:18.886956 327 \N \N \N 6 PV2-V-150 1 999.00 699.00 \N \N 404 113 4 689.0 1 2019-04-04 19:49:06.802597 2019-04-04 19:49:06.802597 328 9587 \N \N 0 PV2-V-151 1 \N 0.00 \N \N 405 113 4 689.0 1 2019-04-04 19:49:53.455044 2019-04-04 19:49:53.455044 328 9587 \N \N 0 PV2-V-151 1 \N 0.00 \N \N 406 113 1 999.0 1 2019-04-04 21:31:33.624705 2019-04-04 21:31:33.624705 329 8774 \N \N 0 PV2-V-152 1 \N 0.00 \N \N 407 114 4 2598.0 1 2019-04-04 21:58:39.584997 2019-04-04 21:58:39.584997 330 8628 \N \N 0 PV1-V-176 1 \N 0.00 \N \N 408 113 2 619.0 1 2019-04-04 22:48:57.316503 2019-04-04 22:48:57.316503 332 \N \N \N 0 PV2-V-154 1 619.00 0.00 \N \N 409 113 4 300.0 1 2019-04-05 00:26:08.453724 2019-04-05 00:26:08.488343 178 8275 \N \N 3 \N 1 \N 0.00 \N \N 410 114 2 589.0 1 2019-04-05 01:47:51.243396 2019-04-05 01:47:51.243396 333 \N \N \N 0 PV1-V-177 1 600.00 11.00 \N \N 411 115 2 699.0 1 2019-04-05 17:15:49.13594 2019-04-05 17:15:49.13594 327 \N \N \N 7 \N 1 699.00 0.00 \N \N 412 115 2 659.0 1 2019-04-05 17:24:27.809408 2019-04-05 17:24:27.809408 334 \N \N \N 0 PV2-V-155 1 659.00 0.00 \N \N 413 116 2 50.0 0 2019-04-05 18:13:32.286462 2019-04-05 18:13:32.286462 \N \N \N 35 2 \N 1 \N \N \N \N 432 120 2 479.0 1 2019-04-07 19:08:43.573988 2019-04-07 19:08:43.573988 349 \N \N \N 0 PV1-V-184 1 500.00 21.00 \N \N 416 115 2 1748.0 1 2019-04-05 19:37:17.411408 2019-04-05 19:37:17.411408 337 \N \N \N 0 PV2-V-158 1 1748.00 0.00 \N \N 419 116 4 1699.01 1 2019-04-05 21:48:25.58996 2019-04-05 21:48:25.58996 338 7686 \N \N 0 PV1-V-178 1 \N 0.00 \N \N 420 115 2 899.0 1 2019-04-05 21:54:50.367945 2019-04-05 21:54:50.367945 339 \N \N \N 0 PV2-V-159 1 899.00 0.00 \N \N 421 115 1 499.0 1 2019-04-05 23:47:02.18862 2019-04-05 23:47:02.18862 340 9663 \N \N 0 PV2-V-160 1 \N 0.00 \N \N 422 116 2 319.0 1 2019-04-05 23:55:03.793933 2019-04-05 23:55:03.793933 262 \N \N \N 7 \N 1 319.00 0.00 \N \N 423 115 1 469.0 1 2019-04-05 23:55:23.027741 2019-04-05 23:55:23.027741 341 9663 \N \N 0 PV2-V-161 1 \N 0.00 \N \N 424 116 2 549.0 1 2019-04-06 00:12:05.70493 2019-04-06 00:12:05.70493 306 \N \N \N 7 \N 1 549.00 0.00 \N \N 425 115 2 1320.0 1 2019-04-06 01:38:37.381765 2019-04-06 01:38:37.381765 307 \N \N \N 5 \N 1 1320.00 0.00 2 \N 426 117 2 799.0 1 2019-04-06 20:37:48.289379 2019-04-06 20:37:48.289379 342 \N \N \N 0 PV2-V-162 1 1000.00 201.00 \N \N 427 118 4 1398.0 1 2019-04-06 21:17:57.018835 2019-04-06 21:17:57.018835 343 9911 \N \N 0 PV1-V-179 1 \N 0.00 \N \N 428 118 4 2846.0 1 2019-04-06 22:41:19.652316 2019-04-06 22:41:19.652316 346 1841 \N \N 0 PV1-V-182 1 \N 0.00 \N \N 429 118 2 649.0 1 2019-04-06 23:38:44.95946 2019-04-06 23:38:44.95946 347 \N \N \N 0 PV1-V-183 1 649.00 0.00 \N \N 430 118 2 738.0 0 2019-04-06 23:52:22.155865 2019-04-06 23:52:22.155865 \N \N \N 36 2 \N 1 \N \N \N \N 431 119 2 599.0 1 2019-04-07 16:59:10.05844 2019-04-07 16:59:10.05844 348 \N \N \N 0 PV2-V-163 1 599.00 0.00 \N \N 433 121 2 659.0 1 2019-04-08 15:55:20.88909 2019-04-08 15:55:20.88909 350 \N \N \N 0 PV1-V-185 1 659.00 0.00 \N \N 434 121 2 50.0 0 2019-04-09 00:38:06.090381 2019-04-09 00:38:06.090381 \N \N \N 37 2 \N 1 \N \N \N \N 435 124 1 1000.0 1 2019-04-09 18:28:25.486446 2019-04-09 18:28:25.486446 351 4791 \N \N 0 PV1-V-186 1 \N 0.00 \N \N 436 124 2 199.0 1 2019-04-09 18:28:40.484922 2019-04-09 18:28:40.484922 351 \N \N \N 0 PV1-V-186 1 199.00 0.00 \N \N 437 125 2 549.0 1 2019-04-10 16:05:13.710936 2019-04-10 16:05:13.710936 321 \N \N \N 7 \N 1 549.00 0.00 \N \N 438 125 1 1049.0 1 2019-04-10 16:12:05.373693 2019-04-10 16:12:05.373693 352 6304 \N \N 0 PV1-V-187 1 \N 0.00 \N \N 439 126 2 699.0 1 2019-04-10 16:13:48.983018 2019-04-10 16:13:48.983018 353 \N \N \N 0 PV2-V-164 1 699.00 0.00 \N \N 440 126 4 579.0 1 2019-04-10 19:08:09.393377 2019-04-10 19:08:09.393377 354 9921 \N \N 0 PV2-V-165 1 \N 0.00 \N \N 441 125 2 147.0 1 2019-04-10 19:52:22.142708 2019-04-10 19:52:22.226425 178 \N \N \N 3 \N 1 147.00 0.00 \N \N 442 126 2 1668.0 1 2019-04-10 22:52:02.539695 2019-04-10 22:52:02.539695 355 \N \N \N 0 PV2-V-166 1 1668.00 0.00 \N \N 443 126 2 999.0 1 2019-04-10 22:59:41.379336 2019-04-10 22:59:41.379336 356 \N \N \N 0 PV2-V-167 1 999.00 0.00 \N \N 444 125 2 479.0 1 2019-04-11 00:13:24.462894 2019-04-11 00:13:24.462894 357 \N \N \N 0 PV1-V-188 1 500.00 21.00 \N \N 445 126 1 599.0 1 2019-04-11 01:38:53.702989 2019-04-11 01:38:53.702989 358 3822 \N \N 0 PV2-V-168 1 \N 0.00 \N \N 446 128 4 699.0 1 2019-04-11 17:32:35.339812 2019-04-11 17:32:35.339812 359 2261 \N \N 0 PV1-V-189 1 \N 0.00 \N \N 447 127 2 599.0 1 2019-04-11 22:05:17.439667 2019-04-11 22:05:17.439667 360 \N \N \N 0 PV2-V-169 1 599.00 0.00 \N \N 448 127 2 899.0 1 2019-04-12 00:23:59.814647 2019-04-12 00:23:59.814647 361 \N \N \N 0 PV2-V-170 1 1000.00 101.00 \N \N 449 129 2 549.0 1 2019-04-12 16:35:47.422177 2019-04-12 16:35:47.422177 363 \N \N \N 0 PV1-V-190 1 549.00 0.00 \N \N 450 129 2 1148.0 1 2019-04-12 17:50:23.284816 2019-04-12 17:50:23.284816 364 \N \N \N 0 PV1-V-191 1 1148.00 0.00 \N \N 451 130 2 599.0 1 2019-04-12 18:05:30.116358 2019-04-12 18:05:30.116358 365 \N \N \N 0 PV2-V-172 1 599.00 0.00 \N \N 452 129 2 479.0 1 2019-04-12 19:39:10.247959 2019-04-12 19:39:10.247959 223 \N \N \N 7 \N 1 500.00 21.00 \N \N 453 129 2 600.0 0 2019-04-12 21:30:47.005324 2019-04-12 21:30:47.005324 \N \N \N 38 2 \N 1 \N \N \N \N 454 129 4 1298.0 1 2019-04-13 00:40:10.077039 2019-04-13 00:40:10.077039 366 1027 \N \N 0 PV1-V-192 1 \N 0.00 \N \N 455 129 2 899.0 1 2019-04-13 00:42:53.377294 2019-04-13 00:42:53.377294 367 \N \N \N 0 PV1-V-193 1 1000.00 101.00 \N \N 456 129 2 479.0 1 2019-04-13 00:51:05.553983 2019-04-13 00:51:05.553983 368 \N \N \N 0 PV1-V-194 1 500.00 21.00 \N \N 457 129 2 400.0 1 2019-04-13 01:11:25.009931 2019-04-13 01:11:25.009931 216 \N \N \N 7 \N 1 500.00 100.00 \N \N 458 130 2 800.0 0 2019-04-13 01:23:12.412102 2019-04-13 01:23:12.412102 \N \N 9 39 2 \N 1 \N \N \N \N 459 129 2 1200.0 0 2019-04-13 01:27:25.031132 2019-04-13 01:27:25.031132 \N \N \N 40 2 \N 1 \N \N \N \N 460 129 2 250.0 1 2019-04-13 01:28:38.053921 2019-04-13 01:28:38.112954 174 \N \N \N 3 \N 1 250.00 0.00 \N \N 461 \N 2 200.0 1 2019-04-13 17:00:51.08817 2019-04-13 17:00:51.125195 178 \N \N \N 3 \N 1 200.00 0.00 \N \N 462 132 3 1299.0 1 2019-04-13 17:20:38.892519 2019-04-13 17:20:38.892519 369 \N \N \N 0 PV1-V-195 1 \N 0.00 \N \N 4858152465545465 463 131 2 150.0 1 2019-04-13 20:05:11.078236 2019-04-13 20:05:11.078236 283 \N \N \N 4 \N 1 200.00 50.00 \N \N 464 132 2 480.0 1 2019-04-13 21:50:01.782088 2019-04-13 21:50:01.782088 370 \N \N \N 0 PV1-V-196 1 480.00 0.00 \N \N 465 132 2 678.0 0 2019-04-13 21:53:07.667322 2019-04-13 21:53:07.667322 \N \N \N 41 2 \N 1 \N \N \N \N 466 131 2 999.0 1 2019-04-13 23:41:17.91005 2019-04-13 23:41:17.91005 371 \N \N \N 0 PV2-V-173 1 1000.00 1.00 \N \N 467 132 2 25.0 0 2019-04-14 01:28:54.773011 2019-04-14 01:28:54.773011 \N \N \N 42 2 \N 1 \N \N \N \N 468 133 1 1499.0 1 2019-04-14 19:02:00.667167 2019-04-14 19:02:00.667167 373 3788 \N \N 0 PV2-V-175 1 \N 0.00 \N \N 469 134 1 899.0 1 2019-04-14 19:25:39.244314 2019-04-14 19:25:39.244314 374 7193 \N \N 0 PV1-V-197 1 \N 0.00 \N \N 470 133 2 350.0 1 2019-04-14 20:03:25.725892 2019-04-14 20:03:25.725892 375 \N \N \N 0 PV2-V-176 1 350.00 0.00 \N \N 471 135 2 499.0 1 2019-04-15 18:07:21.171806 2019-04-15 18:07:21.171806 376 \N \N \N 0 PV2-V-177 1 499.00 0.00 \N \N 472 136 2 499.0 1 2019-04-15 18:14:57.21457 2019-04-15 18:14:57.21457 377 \N \N \N 0 PV1-V-198 1 499.00 0.00 \N \N 473 136 2 1199.0 1 2019-04-15 21:37:22.725048 2019-04-15 21:37:22.725048 378 \N \N \N 0 PV1-V-199 1 1199.00 0.00 \N \N 474 135 2 599.0 1 2019-04-16 00:00:08.228642 2019-04-16 00:00:08.228642 379 \N \N \N 0 PV2-V-178 1 600.00 1.00 \N \N 475 136 2 50.0 0 2019-04-16 00:31:10.01715 2019-04-16 00:31:10.01715 \N \N \N 43 2 \N 1 \N \N \N \N 477 135 2 219.0 1 2019-04-16 00:41:58.474669 2019-04-16 00:41:58.474669 382 \N \N \N 6 PV2-V-180 1 219.00 0.00 \N \N 478 135 2 499.0 1 2019-04-16 00:57:02.137547 2019-04-16 00:57:02.137547 384 \N \N \N 0 PV2-V-181 1 500.00 1.00 \N \N 479 136 2 929.0 1 2019-04-16 01:09:36.300941 2019-04-16 01:09:36.300941 385 \N \N \N 0 PV1-V-202 1 1000.00 71.00 \N \N 480 138 3 750.0 1 2019-04-16 20:39:22.23019 2019-04-16 20:39:22.23019 386 \N \N \N 3 \N 1 \N 0.00 \N \N 4858152465545465 481 138 2 50.0 0 2019-04-16 22:20:05.153794 2019-04-16 22:20:05.153794 \N \N \N 44 2 \N 1 \N \N \N \N 482 138 2 799.0 1 2019-04-16 23:06:03.968086 2019-04-16 23:06:03.968086 388 \N \N \N 0 PV1-V-205 1 799.00 0.00 \N \N 483 138 2 699.0 1 2019-04-16 23:51:06.530179 2019-04-16 23:51:06.530179 389 \N \N \N 0 PV1-V-206 1 1000.00 301.00 \N \N 485 140 2 350.0 1 2019-04-17 19:20:58.273684 2019-04-17 19:20:58.273684 391 \N \N \N 6 PV2-V-183 1 1149.00 799.00 \N \N 486 140 2 98.0 1 2019-04-17 19:38:10.687463 2019-04-17 19:38:10.687463 392 \N \N \N 0 PV2-V-184 1 98.00 0.00 \N \N 487 139 4 1049.0 1 2019-04-17 21:17:18.049416 2019-04-17 21:17:18.049416 393 2315 \N \N 0 PV1-V-207 1 \N 0.00 \N \N 488 140 2 400.0 1 2019-04-17 21:43:14.203978 2019-04-17 21:43:14.203978 382 \N \N \N 7 \N 1 619.00 219.00 \N \N 489 140 2 649.0 1 2019-04-17 21:46:28.083052 2019-04-17 21:46:28.083052 394 \N \N \N 0 PV2-V-185 1 649.00 0.00 \N \N 490 140 2 899.0 1 2019-04-17 21:50:35.721842 2019-04-17 21:50:35.721842 395 \N \N \N 0 PV2-V-186 1 899.00 0.00 \N \N 491 140 2 149.0 1 2019-04-17 22:03:31.933816 2019-04-17 22:03:31.933816 283 \N \N \N 7 \N 1 149.00 0.00 \N \N 492 140 2 649.0 1 2019-04-17 22:20:26.612703 2019-04-17 22:20:26.612703 396 \N \N \N 0 PV2-V-187 1 649.00 0.00 \N \N 493 140 2 969.0 1 2019-04-17 23:26:22.226744 2019-04-17 23:26:22.226744 397 \N \N \N 0 PV2-V-188 1 969.00 0.00 \N \N 494 140 3 300.0 1 2019-04-17 23:38:25.695578 2019-04-17 23:38:25.744061 387 \N \N \N 3 \N 1 \N 0.00 \N \N 142568798758 495 140 2 500.0 0 2019-04-17 23:57:53.25422 2019-04-17 23:57:53.25422 \N \N \N 45 2 \N 1 \N \N \N \N 496 140 2 1068.0 1 2019-04-18 00:08:46.393593 2019-04-18 00:08:46.393593 399 \N \N \N 0 PV2-V-190 1 1100.00 32.00 \N \N 497 139 2 1199.0 1 2019-04-18 00:12:57.042857 2019-04-18 00:12:57.042857 400 \N \N \N 0 PV1-V-208 1 1800.00 601.00 \N \N 498 139 2 1200.0 0 2019-04-18 00:31:29.755985 2019-04-18 00:31:29.755985 \N \N \N 46 2 \N 1 \N \N \N \N 499 139 2 769.0 1 2019-04-18 00:36:23.656422 2019-04-18 00:36:23.697694 178 \N \N \N 3 \N 1 769.00 0.00 \N \N 500 140 2 799.0 1 2019-04-18 00:41:54.600667 2019-04-18 00:41:54.600667 401 \N \N \N 0 PV2-V-191 1 1000.00 201.00 \N \N 501 139 2 249.0 1 2019-04-18 00:53:14.573203 2019-04-18 00:53:14.627722 174 \N \N \N 3 \N 1 500.00 251.00 \N \N 502 142 1 500.0 1 2019-04-22 19:28:22.134148 2019-04-22 19:28:22.134148 402 2383 \N \N 0 PV1-V-209 1 \N 0.00 \N \N 503 142 2 1199.01 1 2019-04-22 19:28:31.085943 2019-04-22 19:28:31.085943 402 \N \N \N 0 PV1-V-209 1 1200.00 0.99 \N \N 504 142 2 489.0 1 2019-04-22 19:34:42.615468 2019-04-22 19:34:42.615468 403 \N \N \N 0 PV1-V-210 1 500.00 11.00 \N \N 505 141 4 469.0 1 2019-04-22 19:38:02.796885 2019-04-22 19:38:02.796885 404 9712 \N \N 0 PV2-V-192 1 \N 0.00 \N \N 506 142 2 1392.0 1 2019-04-22 22:46:13.309782 2019-04-22 22:46:13.309782 405 \N \N \N 0 PV1-V-211 1 1500.00 108.00 \N \N 507 142 3 1498.0 1 2019-04-23 00:21:50.254197 2019-04-23 00:21:50.339356 165 \N \N \N 3 \N 1 \N 0.00 \N \N SAMANTHA 508 143 1 1868.0 1 2019-04-23 19:13:28.653896 2019-04-23 19:13:28.653896 406 8470 \N \N 0 PV2-V-193 1 \N 0.00 \N \N 509 144 2 420.0 1 2019-04-23 21:45:48.783223 2019-04-23 21:45:48.783223 407 \N \N \N 6 PV1-V-212 1 500.00 80.00 \N \N 510 144 2 528.0 1 2019-04-23 21:58:33.33064 2019-04-23 21:58:33.33064 408 \N \N \N 0 PV1-V-213 1 550.00 22.00 \N \N 511 144 2 2398.0 1 2019-04-23 22:49:47.618314 2019-04-23 22:49:47.618314 409 \N \N \N 0 PV1-V-214 1 2400.00 2.00 \N \N 512 143 2 899.0 1 2019-04-23 23:40:28.846899 2019-04-23 23:40:28.846899 410 \N \N \N 0 PV2-V-194 1 1000.00 101.00 \N \N 513 144 2 599.0 1 2019-04-23 23:45:11.95793 2019-04-23 23:45:11.95793 411 \N \N \N 0 PV1-V-215 1 600.00 1.00 \N \N 514 146 2 300.0 1 2019-04-24 21:09:43.11214 2019-04-24 21:09:43.11214 412 \N \N \N 6 PV1-V-216 1 400.00 100.00 \N \N 515 145 1 579.0 1 2019-04-25 00:07:33.449034 2019-04-25 00:07:33.449034 413 4608 \N \N 0 PV2-V-195 1 \N 0.00 \N \N 516 146 3 1500.0 1 2019-04-25 00:52:01.322363 2019-04-25 00:52:01.376966 212 \N \N \N 3 \N 1 \N 0.00 \N \N SAMANTHA 517 145 2 500.0 1 2019-04-25 01:02:42.947026 2019-04-25 01:02:42.947026 265 \N \N \N 4 \N 1 500.00 0.00 \N \N 518 145 2 1299.0 1 2019-04-25 01:11:26.736146 2019-04-25 01:11:26.736146 414 \N \N \N 0 PV2-V-196 1 1299.00 0.00 \N \N 519 146 2 1188.0 1 2019-04-25 01:34:29.410137 2019-04-25 01:34:29.410137 415 \N \N \N 0 PV1-V-217 1 1500.00 312.00 \N \N 520 148 2 300.0 1 2019-04-25 17:04:23.639298 2019-04-25 17:04:23.639298 295 \N \N \N 4 \N 1 300.00 0.00 \N \N 521 147 3 3000.0 1 2019-04-25 18:40:06.694871 2019-04-25 18:40:06.782411 79 \N \N \N 3 \N 1 \N 0.00 \N \N 142568798758 522 147 3 599.0 1 2019-04-25 18:48:19.517409 2019-04-25 18:48:19.572019 78 \N \N \N 3 \N 1 \N 0.00 \N \N 142568798758 523 150 2 299.0 1 2019-04-26 17:26:20.007191 2019-04-26 17:26:20.007191 295 \N \N \N 7 \N 1 500.00 201.00 \N \N 524 150 4 500.0 1 2019-04-26 22:21:19.866255 2019-04-26 22:21:19.914664 387 5251 \N \N 3 \N 1 \N 0.00 \N \N 526 150 4 899.0 1 2019-04-27 00:15:01.37793 2019-04-27 00:15:01.37793 417 7035 \N \N 0 PV1-V-219 1 \N 0.00 \N \N 527 149 2 649.0 1 2019-04-27 00:32:40.072526 2019-04-27 00:32:40.072526 418 \N \N \N 0 PV2-V-197 1 649.00 0.00 \N \N 528 152 2 698.0 1 2019-04-27 16:28:51.749244 2019-04-27 16:28:51.749244 420 \N \N \N 0 PV1-V-221 1 700.00 2.00 \N \N 529 152 2 479.0 1 2019-04-27 16:29:50.783235 2019-04-27 16:29:50.783235 421 \N \N \N 0 PV1-V-222 1 500.00 21.00 \N \N 530 152 2 669.0 1 2019-04-27 17:50:21.171374 2019-04-27 17:50:21.171374 422 \N \N \N 0 PV1-V-223 1 670.00 1.00 \N \N 531 152 2 899.0 1 2019-04-27 19:08:02.65396 2019-04-27 19:08:02.65396 423 \N \N \N 0 PV1-V-224 1 1000.00 101.00 \N \N 532 152 4 270.0 1 2019-04-27 19:49:28.178085 2019-04-27 19:49:28.178085 424 2705 \N \N 6 PV1-V-225 1 \N 0.00 \N \N 533 151 2 999.0 1 2019-04-27 20:33:19.032882 2019-04-27 20:33:19.032882 425 \N \N \N 0 PV2-V-198 1 1000.00 1.00 \N \N 534 152 2 899.0 1 2019-04-27 20:43:59.618557 2019-04-27 20:43:59.618557 426 \N \N \N 0 PV1-V-226 1 900.00 1.00 \N \N 535 152 2 1270.0 0 2019-04-27 21:12:03.450333 2019-04-27 21:12:03.450333 \N \N \N 47 2 \N 1 \N \N \N \N 536 151 2 0 1 2019-04-27 22:52:13.167575 2019-04-27 22:52:13.167575 391 \N \N \N 4 \N 1 800.00 800.00 \N \N 537 151 2 799.0 1 2019-04-27 22:52:50.368277 2019-04-27 22:52:50.368277 391 \N \N \N 7 \N 1 800.00 1.00 \N \N 538 152 2 200.0 1 2019-04-28 00:29:21.112712 2019-04-28 00:29:21.112712 428 \N \N \N 6 PV1-V-228 1 200.00 0.00 \N \N 539 152 4 899.0 1 2019-04-28 01:26:30.735943 2019-04-28 01:26:30.735943 429 9449 \N \N 0 PV1-V-229 1 \N 0.00 \N \N 540 154 2 799.0 1 2019-04-29 16:04:41.170724 2019-04-29 16:04:41.170724 430 \N \N \N 0 PV2-V-199 1 800.00 1.00 \N \N 541 154 4 203.0 1 2019-04-29 20:22:45.546119 2019-04-29 20:22:45.546119 431 9269 \N \N 6 PV2-V-200 1 \N 0.00 \N \N 542 153 1 699.0 1 2019-04-29 22:52:27.205212 2019-04-29 22:52:27.205212 432 590 \N \N 0 PV1-V-230 1 \N 0.00 \N \N 543 153 4 899.0 1 2019-04-30 00:49:57.968413 2019-04-30 00:49:57.968413 433 9014 \N \N 0 PV1-V-231 1 \N 0.00 \N \N 544 153 2 50.0 0 2019-04-30 01:41:42.615379 2019-04-30 01:41:42.615379 \N \N \N 48 2 \N 1 \N \N \N \N 545 156 2 1158.01 1 2019-04-30 16:34:11.299676 2019-04-30 16:34:11.299676 434 \N \N \N 0 PV2-V-201 1 1200.00 41.99 \N \N 546 155 2 1699.0 1 2019-04-30 20:31:24.427236 2019-04-30 20:31:24.427236 435 \N \N \N 0 PV1-V-232 1 1699.00 0.00 \N \N 547 155 2 1000.0 1 2019-04-30 20:33:12.144609 2019-04-30 20:33:12.144609 436 \N \N \N 6 PV1-V-233 1 1000.00 0.00 \N \N 548 155 2 200.0 1 2019-04-30 21:40:58.259989 2019-04-30 21:40:58.259989 437 \N \N \N 6 PV1-V-234 1 200.00 0.00 \N \N 549 155 2 628.0 0 2019-04-30 22:34:28.160595 2019-04-30 22:34:28.160595 \N \N \N 49 2 \N 1 \N \N \N \N 550 155 2 150.0 0 2019-04-30 22:39:33.122128 2019-04-30 22:39:33.122128 \N \N \N 50 2 \N 1 \N \N \N \N 551 155 2 300.0 1 2019-04-30 23:06:35.844726 2019-04-30 23:06:35.844726 438 \N \N \N 6 PV1-V-235 1 500.00 200.00 \N \N 552 155 2 300.0 1 2019-04-30 23:13:03.862692 2019-04-30 23:13:03.862692 439 \N \N \N 6 PV1-V-236 1 500.00 200.00 \N \N 553 155 2 449.0 1 2019-04-30 23:57:04.022071 2019-04-30 23:57:04.022071 437 \N \N \N 7 \N 1 500.00 51.00 \N \N 554 156 3 1000.0 1 2019-05-01 00:06:53.668119 2019-05-01 00:06:53.747533 138 \N \N \N 3 \N 1 \N 0.00 \N \N 142568798758 555 158 2 1699.0 1 2019-05-01 18:57:29.711495 2019-05-01 18:57:29.711495 440 \N \N \N 0 PV1-V-237 1 1699.00 0.00 \N \N 556 159 2 50.0 0 2019-05-02 18:30:16.895457 2019-05-02 18:30:16.895457 \N \N \N 51 2 \N 1 \N \N \N \N 557 159 2 399.0 1 2019-05-02 18:47:50.417426 2019-05-02 18:47:50.417426 439 \N \N \N 7 \N 1 500.00 101.00 \N \N 558 159 2 899.0 1 2019-05-02 20:34:42.200362 2019-05-02 20:34:42.200362 441 \N \N \N 0 PV1-V-238 1 899.00 0.00 \N \N 559 159 1 1299.0 1 2019-05-02 23:08:50.73405 2019-05-02 23:08:50.73405 442 7696 \N \N 0 PV1-V-239 1 \N 0.00 \N \N 560 160 2 699.0 1 2019-05-02 23:13:35.998012 2019-05-02 23:13:35.998012 443 \N \N \N 0 PV2-V-202 1 700.00 1.00 \N \N 561 159 2 899.0 1 2019-05-02 23:37:24.113976 2019-05-02 23:37:24.113976 303 \N \N \N 7 \N 1 899.00 0.00 \N \N 562 159 2 1050.0 1 2019-05-02 23:39:35.521555 2019-05-02 23:39:35.521555 444 \N \N \N 0 PV1-V-240 1 1050.00 0.00 \N \N 563 160 2 799.0 1 2019-05-03 01:29:43.878698 2019-05-03 01:29:43.878698 445 \N \N \N 0 PV2-V-203 1 800.00 1.00 \N \N 564 159 2 500.0 1 2019-05-03 01:49:48.770103 2019-05-03 01:49:48.804891 174 \N \N \N 3 \N 1 500.00 0.00 \N \N 565 159 2 1100.0 0 2019-05-03 01:50:48.665225 2019-05-03 01:50:48.665225 \N \N \N 52 2 \N 1 \N \N \N \N 566 161 2 669.0 1 2019-05-03 17:06:22.202547 2019-05-03 17:06:22.202547 446 \N \N \N 0 PV2-V-204 1 700.00 31.00 \N \N 580 163 2 150.0 1 2019-05-04 20:55:27.167268 2019-05-04 20:55:27.167268 455 \N \N \N 6 PV1-V-247 1 150.00 0.00 \N \N 568 162 2 599.0 1 2019-05-03 22:58:18.586507 2019-05-03 22:58:18.586507 447 \N \N \N 0 PV1-V-241 1 599.00 0.00 \N \N 569 162 2 1299.0 1 2019-05-04 01:08:25.244634 2019-05-04 01:08:25.244634 448 \N \N \N 0 PV1-V-242 1 1299.00 0.00 \N \N 570 162 2 1499.0 1 2019-05-04 01:12:03.408393 2019-05-04 01:12:03.408393 449 \N \N \N 0 PV1-V-243 1 1499.00 0.00 \N \N 572 162 2 250.0 0 2019-05-04 02:00:31.241422 2019-05-04 02:00:31.241422 \N \N \N 54 2 \N 1 \N \N \N \N 567 162 2 269.0 1 2019-05-03 21:00:34.582174 2019-05-03 21:00:34.582174 301 \N \N \N 7 \N 1 269.00 0.00 \N \N 573 163 4 899.0 1 2019-05-04 16:46:24.613504 2019-05-04 16:46:24.613504 450 3524 \N \N 0 PV1-V-244 1 \N 0.00 \N \N 574 164 2 1299.0 1 2019-05-04 18:07:42.422137 2019-05-04 18:07:42.422137 451 \N \N \N 0 PV2-V-205 1 1500.00 201.00 \N \N 575 164 2 1299.0 1 2019-05-04 18:53:36.015533 2019-05-04 18:53:36.015533 452 \N \N \N 0 PV2-V-206 1 1300.00 1.00 \N \N 576 163 2 1399.0 1 2019-05-04 20:07:04.101201 2019-05-04 20:07:04.101201 453 \N \N \N 0 PV1-V-245 1 1399.00 0.00 \N \N 577 163 2 400.0 1 2019-05-04 20:10:00.870237 2019-05-04 20:10:00.941698 178 \N \N \N 3 \N 1 400.00 0.00 \N \N 578 163 2 50.0 0 2019-05-04 20:23:12.522854 2019-05-04 20:23:12.522854 \N \N \N 55 2 \N 1 \N \N \N \N 579 163 2 749.0 1 2019-05-04 20:51:57.895144 2019-05-04 20:51:57.895144 454 \N \N \N 0 PV1-V-246 1 749.00 0.00 \N \N 581 163 2 1348.0 0 2019-05-04 21:19:17.97882 2019-05-04 21:19:17.97882 \N \N \N 56 2 \N 1 \N \N \N \N 582 163 4 528.0 1 2019-05-04 21:35:17.095115 2019-05-04 21:35:17.095115 456 9243 \N \N 0 PV1-V-248 1 \N 0.00 \N \N 583 164 4 1368.0 1 2019-05-04 22:17:11.177002 2019-05-04 22:17:11.177002 457 9690 \N \N 0 PV2-V-207 1 \N 0.00 \N \N 584 164 2 599.0 1 2019-05-04 23:33:11.20704 2019-05-04 23:33:11.20704 458 \N \N \N 0 PV2-V-208 1 600.00 1.00 \N \N 585 163 2 528.0 1 2019-05-05 00:29:11.033783 2019-05-05 00:29:11.033783 459 \N \N \N 0 PV1-V-249 1 528.00 0.00 \N \N 586 163 2 680.0 1 2019-05-05 00:57:53.78682 2019-05-05 00:57:53.78682 460 \N \N \N 0 PV1-V-250 1 680.00 0.00 \N \N 587 163 2 769.0 1 2019-05-05 01:46:10.883034 2019-05-05 01:46:10.883034 461 \N \N \N 0 PV1-V-251 1 769.00 0.00 \N \N 588 166 3 2567.0 1 2019-05-05 17:02:24.927753 2019-05-05 17:02:24.927753 462 \N \N \N 0 PV1-V-252 1 \N 0.00 \N \N SAMANTHA 589 165 3 2215.0 1 2019-05-05 17:09:56.717787 2019-05-05 17:09:56.717787 463 \N \N \N 0 PV2-V-209 1 \N 0.00 \N \N SAMANTHA 590 165 2 250.0 1 2019-05-05 17:14:46.973686 2019-05-05 17:14:46.973686 464 \N \N \N 0 PV2-V-210 1 250.00 0.00 \N \N 591 165 2 569.0 1 2019-05-05 19:57:17.620915 2019-05-05 19:57:17.620915 465 \N \N \N 0 PV2-V-211 1 600.00 31.00 \N \N 592 165 2 899.0 1 2019-05-05 21:01:33.888558 2019-05-05 21:01:33.888558 466 \N \N \N 0 PV2-V-212 1 1000.00 101.00 \N \N 593 167 2 469.0 1 2019-05-06 16:54:43.947007 2019-05-06 16:54:43.947007 467 \N \N \N 0 PV1-V-253 1 469.00 0.00 \N \N 594 167 2 350.0 1 2019-05-06 17:24:24.980173 2019-05-06 17:24:24.980173 468 \N \N \N 6 PV1-V-254 1 350.00 0.00 \N \N 595 167 2 392.0 1 2019-05-06 17:37:55.993651 2019-05-06 17:37:55.993651 436 \N \N \N 7 \N 1 392.00 0.00 \N \N 596 168 2 818.99 1 2019-05-06 17:45:37.383 2019-05-06 17:45:37.383 469 \N \N \N 0 PV2-V-213 1 1000.00 181.01 \N \N 597 167 2 499.99 1 2019-05-06 19:15:29.091585 2019-05-06 19:15:29.091585 470 \N \N \N 0 PV1-V-255 1 500.00 0.01 \N \N 598 168 2 949.0 1 2019-05-06 20:10:53.705008 2019-05-06 20:10:53.705008 471 \N \N \N 0 PV2-V-214 1 950.00 1.00 \N \N 599 167 2 685.0 1 2019-05-06 20:34:52.237657 2019-05-06 20:34:52.237657 472 \N \N \N 0 PV1-V-256 1 685.00 0.00 \N \N 600 168 2 969.0 1 2019-05-06 22:01:35.466663 2019-05-06 22:01:35.466663 473 \N \N \N 0 PV2-V-215 1 1000.00 31.00 \N \N 601 167 2 1299.0 1 2019-05-07 00:02:41.406481 2019-05-07 00:02:41.406481 474 \N \N \N 0 PV1-V-257 1 1299.00 0.00 \N \N 603 167 1 1468.0 1 2019-05-07 00:05:39.158914 2019-05-07 00:05:39.158914 475 8677 \N \N 0 PV1-V-258 1 \N 0.00 \N \N 604 168 2 599.0 1 2019-05-07 00:34:34.823716 2019-05-07 00:34:34.823716 476 \N \N \N 0 PV2-V-216 1 600.00 1.00 \N \N 605 168 2 1299.0 1 2019-05-07 00:59:14.780734 2019-05-07 00:59:14.780734 477 \N \N \N 0 PV2-V-217 1 1300.00 1.00 \N \N 606 167 2 750.0 0 2019-05-07 01:36:47.038117 2019-05-07 01:36:47.038117 \N \N \N 57 2 \N 1 \N \N \N \N 607 169 2 350.0 1 2019-05-07 15:38:32.653624 2019-05-07 15:38:32.707009 203 \N \N \N 3 \N 1 350.00 0.00 \N \N 608 169 1 899.0 1 2019-05-07 18:02:37.136289 2019-05-07 18:02:37.136289 478 2260 \N \N 0 PV1-V-259 1 \N 0.00 \N \N 609 169 2 300.0 1 2019-05-07 18:16:40.035155 2019-05-07 18:16:40.035155 479 \N \N \N 6 PV1-V-260 1 300.00 0.00 \N \N 610 170 2 252.0 1 2019-05-07 18:26:55.568834 2019-05-07 18:26:55.568834 480 \N \N \N 6 PV2-V-218 1 252.00 0.00 \N \N 611 169 2 200.0 1 2019-05-07 19:17:36.540082 2019-05-07 19:17:36.540082 412 \N \N \N 4 \N 1 200.00 0.00 \N \N 612 169 2 749.0 1 2019-05-07 22:47:30.845554 2019-05-07 22:47:30.845554 481 \N \N \N 0 PV1-V-261 1 750.00 1.00 \N \N 613 169 2 528.99 1 2019-05-07 22:50:07.197362 2019-05-07 22:50:07.197362 482 \N \N \N 0 PV1-V-262 1 529.00 0.01 \N \N 614 169 2 50.0 0 2019-05-07 23:29:20.351768 2019-05-07 23:29:20.351768 \N \N \N 58 2 \N 1 \N \N \N \N 615 169 2 1318.0 1 2019-05-08 00:14:30.190459 2019-05-08 00:14:30.190459 483 \N \N \N 0 PV1-V-263 1 1318.00 0.00 \N \N 616 169 4 569.0 1 2019-05-08 00:36:40.490895 2019-05-08 00:36:40.490895 484 7754 \N \N 0 PV1-V-264 1 \N 0.00 \N \N 618 169 4 399.01 1 2019-05-08 00:42:10.066403 2019-05-08 00:42:10.066403 485 7754 \N \N 0 PV1-V-265 1 \N 0.00 \N \N 619 169 4 899.0 1 2019-05-08 00:50:52.886509 2019-05-08 00:50:52.886509 486 2453 \N \N 0 PV1-V-266 1 \N 0.00 \N \N 620 170 4 1718.0 1 2019-05-08 01:27:53.0253 2019-05-08 01:27:53.0253 487 7 \N \N 0 PV2-V-219 1 \N 0.00 \N \N 621 169 2 829.0 1 2019-05-08 01:53:30.107763 2019-05-08 01:53:30.107763 488 \N \N \N 0 PV1-V-267 1 829.00 0.00 \N \N 622 171 2 659.0 1 2019-05-08 16:52:25.865359 2019-05-08 16:52:25.865359 489 \N \N \N 0 PV2-V-220 1 1000.00 341.00 \N \N 623 172 2 479.0 1 2019-05-08 17:13:24.322065 2019-05-08 17:13:24.322065 491 \N \N \N 0 PV1-V-268 1 500.00 21.00 \N \N 624 172 2 599.0 1 2019-05-08 17:28:36.594656 2019-05-08 17:28:36.594656 479 \N \N \N 7 \N 1 599.00 0.00 \N \N 627 171 2 587.0 1 2019-05-08 17:32:21.78097 2019-05-08 17:32:21.78097 480 \N \N \N 7 \N 1 600.00 13.00 \N \N 628 172 2 999.0 1 2019-05-08 18:03:49.75398 2019-05-08 18:03:49.75398 492 \N \N \N 0 PV1-V-269 1 999.00 0.00 \N \N 629 172 2 479.0 1 2019-05-08 18:23:42.525336 2019-05-08 18:23:42.525336 493 \N \N \N 0 PV1-V-270 1 479.00 0.00 \N \N 631 172 2 479.0 1 2019-05-08 18:44:41.913406 2019-05-08 18:44:41.913406 495 \N \N \N 0 PV1-V-272 1 500.00 21.00 \N \N 633 171 2 500.0 1 2019-05-08 18:49:37.275918 2019-05-08 18:49:37.275918 496 \N \N \N 6 PV2-V-222 1 500.00 0.00 \N \N 634 172 2 799.0 1 2019-05-08 18:54:58.430539 2019-05-08 18:54:58.430539 497 \N \N \N 0 PV1-V-273 1 799.00 0.00 \N \N 636 172 2 479.0 1 2019-05-08 19:05:28.707399 2019-05-08 19:05:28.707399 499 \N \N \N 0 PV1-V-275 1 500.00 21.00 \N \N 637 172 2 699.0 1 2019-05-08 19:15:34.589938 2019-05-08 19:15:34.589938 500 \N \N \N 0 PV1-V-276 1 700.00 1.00 \N \N 638 171 4 469.0 1 2019-05-08 20:08:48.343633 2019-05-08 20:08:48.343633 501 9287 \N \N 0 PV2-V-223 1 \N 0.00 \N \N 639 171 1 589.0 1 2019-05-08 20:17:59.772817 2019-05-08 20:17:59.772817 502 9269 \N \N 0 PV2-V-224 1 \N 0.00 \N \N 640 171 2 869.0 1 2019-05-08 20:29:31.014698 2019-05-08 20:29:31.014698 503 \N \N \N 0 PV2-V-225 1 900.00 31.00 \N \N 642 172 2 349.0 1 2019-05-08 20:54:08.222525 2019-05-08 20:54:08.222525 455 \N \N \N 7 \N 1 349.00 0.00 \N \N 643 172 2 1318.0 1 2019-05-08 21:52:14.805147 2019-05-08 21:52:14.805147 504 \N \N \N 0 PV1-V-277 1 1318.00 0.00 \N \N 644 171 2 569.0 1 2019-05-08 21:53:11.283728 2019-05-08 21:53:11.283728 505 \N \N \N 0 PV2-V-226 1 600.00 31.00 \N \N 645 172 2 479.0 1 2019-05-08 22:25:10.945653 2019-05-08 22:25:10.945653 506 \N \N \N 0 PV1-V-278 1 479.00 0.00 \N \N 646 171 2 899.0 1 2019-05-08 22:28:18.559746 2019-05-08 22:28:18.559746 507 \N \N \N 0 PV2-V-227 1 1000.00 101.00 \N \N 647 172 2 1299.0 1 2019-05-08 23:21:51.054949 2019-05-08 23:21:51.054949 508 \N \N \N 0 PV1-V-279 1 1299.00 0.00 \N \N 648 171 2 839.0 1 2019-05-08 23:36:57.004788 2019-05-08 23:36:57.004788 509 \N \N \N 0 PV2-V-228 1 850.00 11.00 \N \N 649 171 2 200.0 1 2019-05-08 23:38:48.770901 2019-05-08 23:38:48.770901 510 \N \N \N 6 PV2-V-229 1 200.00 0.00 \N \N 650 172 1 1448.0 1 2019-05-08 23:44:19.609787 2019-05-08 23:44:19.609787 511 4244 \N \N 0 PV1-V-280 1 \N 0.00 \N \N 651 172 2 479.0 1 2019-05-08 23:48:50.141672 2019-05-08 23:48:50.141672 512 \N \N \N 0 PV1-V-281 1 479.00 0.00 \N \N 652 172 2 869.0 1 2019-05-09 00:44:37.959528 2019-05-09 00:44:37.959528 513 \N \N \N 0 PV1-V-282 1 1000.00 131.00 \N \N 654 171 2 399.0 1 2019-05-09 00:53:18.673029 2019-05-09 00:53:18.673029 510 \N \N \N 7 \N 1 400.00 1.00 \N \N 655 172 4 1548.0 1 2019-05-09 01:01:22.24646 2019-05-09 01:01:22.24646 514 14 \N \N 0 PV1-V-283 1 \N 0.00 \N \N 656 172 2 699.0 1 2019-05-09 01:08:06.341988 2019-05-09 01:08:06.341988 515 \N \N \N 0 PV1-V-284 1 1000.00 301.00 \N \N 657 172 1 1599.0 1 2019-05-09 01:23:15.345777 2019-05-09 01:23:15.345777 516 249 \N \N 0 PV1-V-285 1 \N 0.00 \N \N 658 172 2 50.0 0 2019-05-09 01:31:48.111495 2019-05-09 01:31:48.111495 \N \N \N 59 2 \N 1 \N \N \N \N 659 171 2 979.0 1 2019-05-09 01:36:07.598103 2019-05-09 01:36:07.598103 517 \N \N \N 0 PV2-V-230 1 1000.00 21.00 \N \N 660 171 2 1098.0 1 2019-05-09 01:44:31.374408 2019-05-09 01:44:31.374408 518 \N \N \N 0 PV2-V-231 1 1100.00 2.00 \N \N 661 173 2 589.0 1 2019-05-09 02:05:11.001499 2019-05-09 02:05:11.001499 519 \N \N \N 0 PV1-V-286 1 589.00 0.00 \N \N 662 174 2 370.0 1 2019-05-09 16:08:08.380308 2019-05-09 16:08:08.380308 468 \N \N \N 4 \N 1 370.00 0.00 \N \N 663 174 2 50.0 0 2019-05-09 16:15:20.292994 2019-05-09 16:15:20.292994 \N \N \N 60 2 \N 1 \N \N \N \N 664 175 2 299.0 1 2019-05-09 16:43:01.027316 2019-05-09 16:43:01.027316 496 \N \N \N 7 \N 1 299.00 0.00 \N \N 665 174 2 1268.0 1 2019-05-09 17:15:07.180546 2019-05-09 17:15:07.180546 520 \N \N \N 0 PV1-V-287 1 1268.00 0.00 \N \N 667 174 2 800.0 1 2019-05-09 17:44:30.860175 2019-05-09 17:44:30.92434 27 \N \N \N 3 \N 1 800.00 0.00 \N \N 668 174 1 685.0 1 2019-05-09 18:05:23.21878 2019-05-09 18:05:23.21878 523 4892 \N \N 0 PV1-V-290 1 \N 0.00 \N \N 669 175 2 179.0 1 2019-05-09 18:10:13.576201 2019-05-09 18:10:13.576201 487 \N \N \N 5 \N 1 200.00 21.00 3 \N 670 175 2 350.0 1 2019-05-09 18:13:08.622214 2019-05-09 18:13:08.622214 524 \N \N \N 0 PV2-V-232 1 400.00 50.00 \N \N 671 175 4 899.0 1 2019-05-09 18:25:09.297111 2019-05-09 18:25:09.297111 525 1576 \N \N 0 PV2-V-233 1 \N 0.00 \N \N 672 175 2 749.0 1 2019-05-09 18:32:13.004291 2019-05-09 18:32:13.004291 526 \N \N \N 0 PV2-V-234 1 1000.00 251.00 \N \N 673 175 2 549.0 1 2019-05-09 18:39:44.26581 2019-05-09 18:39:44.26581 527 \N \N \N 0 PV2-V-235 1 700.00 151.00 \N \N 674 174 2 499.0 1 2019-05-09 18:43:53.859334 2019-05-09 18:43:53.859334 528 \N \N \N 0 PV1-V-291 1 499.00 0.00 \N \N 675 174 2 749.0 1 2019-05-09 22:55:05.187942 2019-05-09 22:55:05.187942 530 \N \N \N 0 PV1-V-292 1 750.00 1.00 \N \N 676 175 2 585.0 1 2019-05-09 22:57:03.872743 2019-05-09 22:57:03.872743 531 \N \N \N 0 PV2-V-237 1 600.00 15.00 \N \N 1295 352 2 200.0 1 2019-08-09 00:19:35.034716 2019-08-09 00:19:35.034716 901 \N \N \N 4 \N 1 200.00 0.00 \N \N 677 174 2 669.0 1 2019-05-09 23:03:01.206413 2019-05-09 23:03:01.206413 533 \N \N \N 0 PV1-V-294 1 669.00 0.00 \N \N 678 174 2 769.0 1 2019-05-09 23:04:43.848614 2019-05-09 23:04:43.848614 534 \N \N \N 0 PV1-V-295 1 1000.00 231.00 \N \N 679 174 2 433.0 0 2019-05-09 23:18:56.155813 2019-05-09 23:18:56.155813 \N \N \N 61 2 \N 1 \N \N \N \N 680 175 2 240.0 1 2019-05-09 23:28:40.472672 2019-05-09 23:28:40.472672 535 \N \N \N 6 PV2-V-238 1 500.00 260.00 \N \N 681 175 2 899.0 1 2019-05-09 23:29:39.660233 2019-05-09 23:29:39.660233 536 \N \N \N 0 PV2-V-239 1 900.00 1.00 \N \N 682 174 2 699.0 1 2019-05-10 00:23:10.432816 2019-05-10 00:23:10.432816 537 \N \N \N 0 PV1-V-296 1 700.00 1.00 \N \N 683 175 2 569.0 1 2019-05-10 00:25:18.388065 2019-05-10 00:25:18.388065 538 \N \N \N 0 PV2-V-240 1 600.00 31.00 \N \N 684 174 2 489.0 1 2019-05-10 00:26:27.442561 2019-05-10 00:26:27.442561 539 \N \N \N 0 PV1-V-297 1 500.00 11.00 \N \N 686 174 1 250.0 1 2019-05-10 00:32:39.803004 2019-05-10 00:32:39.803004 540 8372 \N \N 6 PV1-V-298 1 \N 0.00 \N \N 687 175 2 619.0 1 2019-05-10 00:48:35.81853 2019-05-10 00:48:35.81853 541 \N \N \N 0 PV2-V-241 1 700.00 81.00 \N \N 688 174 4 1698.0 1 2019-05-10 00:55:17.105625 2019-05-10 00:55:17.105625 542 7881 \N \N 0 PV1-V-299 1 \N 0.00 \N \N 689 174 2 769.0 1 2019-05-10 01:19:16.162033 2019-05-10 01:19:16.162033 543 \N \N \N 0 PV1-V-300 1 900.00 131.00 \N \N 690 174 2 749.0 1 2019-05-10 01:27:37.255889 2019-05-10 01:27:37.255889 544 \N \N \N 0 PV1-V-301 1 1000.00 251.00 \N \N 691 175 2 300.0 1 2019-05-10 01:46:04.295434 2019-05-10 01:46:04.295434 545 \N \N \N 6 PV2-V-242 1 500.00 200.00 \N \N 692 175 2 49.0 1 2019-05-10 01:52:01.543449 2019-05-10 01:52:01.543449 546 \N \N \N 0 PV2-V-243 1 50.00 1.00 \N \N 693 174 2 499.0 1 2019-05-10 01:57:16.955531 2019-05-10 01:57:16.955531 547 \N \N \N 0 PV1-V-302 1 499.00 0.00 \N \N 694 175 2 1348.0 1 2019-05-10 01:58:52.513127 2019-05-10 01:58:52.513127 548 \N \N \N 0 PV2-V-244 1 1500.00 152.00 \N \N 695 175 4 999.0 1 2019-05-10 02:13:51.813594 2019-05-10 02:13:51.813594 549 1359 \N \N 0 PV2-V-245 1 \N 0.00 \N \N 696 175 2 818.99 1 2019-05-10 02:31:20.416229 2019-05-10 02:31:20.416229 550 \N \N \N 0 PV2-V-246 1 1000.00 181.01 \N \N 697 177 4 799.0 1 2019-05-10 17:03:33.824373 2019-05-10 17:03:33.824373 552 3846 \N \N 0 PV2-V-248 1 \N 0.00 \N \N 698 176 2 499.0 1 2019-05-10 17:49:49.737226 2019-05-10 17:49:49.737226 553 \N \N \N 0 PV1-V-303 1 499.00 0.00 \N \N 699 176 2 200.0 1 2019-05-10 19:36:38.651482 2019-05-10 19:36:38.651482 555 \N \N \N 6 PV1-V-305 1 200.00 0.00 \N \N 700 177 2 499.0 1 2019-05-10 20:16:08.06774 2019-05-10 20:16:08.06774 557 \N \N \N 0 PV2-V-250 1 500.00 1.00 \N \N 701 177 4 1499.0 1 2019-05-10 20:19:46.410148 2019-05-10 20:19:46.410148 558 5533 \N \N 0 PV2-V-251 1 \N 0.00 \N \N 702 176 2 799.0 1 2019-05-10 20:40:59.350226 2019-05-10 20:40:59.350226 559 \N \N \N 0 PV1-V-306 1 799.00 0.00 \N \N 703 176 2 700.0 1 2019-05-10 20:59:23.640566 2019-05-10 20:59:23.640566 560 \N \N \N 0 PV1-V-307 1 700.00 0.00 \N \N 704 176 2 369.0 1 2019-05-10 21:11:31.515173 2019-05-10 21:11:31.515173 555 \N \N \N 7 \N 1 369.00 0.00 \N \N 705 177 2 0 1 2019-05-10 21:18:26.381014 2019-05-10 21:18:26.381014 561 \N \N \N 0 PV2-V-252 1 0.00 0.00 \N \N 706 178 4 680.0 1 2019-05-11 16:17:57.251992 2019-05-11 16:17:57.251992 562 6819 \N \N 0 PV1-V-308 1 \N 0.00 \N \N 707 178 2 799.0 1 2019-05-11 16:33:36.09712 2019-05-11 16:33:36.09712 563 \N \N \N 0 PV1-V-309 1 799.00 0.00 \N \N 708 178 2 589.0 1 2019-05-11 17:07:08.728669 2019-05-11 17:07:08.728669 564 \N \N \N 0 PV1-V-310 1 589.00 0.00 \N \N 709 178 2 50.0 0 2019-05-11 17:10:28.157515 2019-05-11 17:10:28.157515 \N \N \N 62 2 \N 1 \N \N \N \N 710 178 2 300.0 1 2019-05-11 18:39:23.645752 2019-05-11 18:39:23.645752 565 \N \N \N 6 PV1-V-311 1 300.00 0.00 \N \N 711 179 2 600.0 1 2019-05-11 19:30:06.330523 2019-05-11 19:30:06.330523 567 \N \N \N 0 PV2-V-254 1 600.00 0.00 \N \N 712 178 2 489.0 1 2019-05-11 19:52:41.473026 2019-05-11 19:52:41.473026 568 \N \N \N 0 PV1-V-312 1 489.00 0.00 \N \N 713 178 4 400.0 1 2019-05-11 21:06:00.231782 2019-05-11 21:06:00.231782 569 460 \N \N 0 PV1-V-313 1 \N 0.00 \N \N 714 178 2 399.0 1 2019-05-11 21:06:23.91422 2019-05-11 21:06:23.91422 569 \N \N \N 0 PV1-V-313 1 399.00 0.00 \N \N 715 179 2 749.0 1 2019-05-11 22:54:26.189687 2019-05-11 22:54:26.189687 570 \N \N \N 0 PV2-V-255 1 1000.00 251.00 \N \N 716 178 2 1399.0 1 2019-05-11 23:15:03.357813 2019-05-11 23:15:03.357813 571 \N \N \N 0 PV1-V-314 1 1399.00 0.00 \N \N 717 178 2 850.0 0 2019-05-11 23:16:33.029921 2019-05-11 23:16:33.029921 \N \N \N 63 2 \N 1 \N \N \N \N 718 178 2 599.0 1 2019-05-12 00:08:34.245022 2019-05-12 00:08:34.245022 572 \N \N \N 0 PV1-V-315 1 599.00 0.00 \N \N 719 178 2 1200.0 0 2019-05-12 00:14:05.453364 2019-05-12 00:14:05.453364 \N \N \N 64 2 \N 1 \N \N \N \N 720 178 2 500.0 1 2019-05-12 00:16:52.070308 2019-05-12 00:16:52.157689 174 \N \N \N 3 \N 1 500.00 0.00 \N \N 721 178 2 499.0 1 2019-05-12 00:55:23.991378 2019-05-12 00:55:23.991378 573 \N \N \N 0 PV1-V-316 1 499.00 0.00 \N \N 722 179 2 469.0 1 2019-05-12 01:05:05.452008 2019-05-12 01:05:05.452008 574 \N \N \N 0 PV2-V-256 1 500.00 31.00 \N \N 723 178 2 2038.0 0 2019-05-12 02:39:23.583525 2019-05-12 02:39:23.583525 \N \N \N 65 2 \N 1 \N \N \N \N 724 180 2 1149.0 1 2019-05-12 17:30:43.97733 2019-05-12 17:30:43.97733 575 \N \N \N 0 PV2-V-257 1 1150.00 1.00 \N \N 725 181 2 500.0 1 2019-05-12 19:37:49.194291 2019-05-12 19:37:49.194291 576 \N \N \N 6 PV1-V-317 1 500.00 0.00 \N \N 726 182 1 1499.0 1 2019-05-13 23:48:25.743764 2019-05-13 23:48:25.743764 577 1679 \N \N 0 PV1-V-318 1 \N 0.00 \N \N 727 183 3 749.0 1 2019-05-14 00:24:18.810992 2019-05-14 00:24:18.810992 578 \N \N \N 0 PV2-V-258 1 \N 0.00 \N \N 12345678 728 182 2 70.0 0 2019-05-14 01:33:43.138697 2019-05-14 01:33:43.138697 \N \N \N 66 2 \N 1 \N \N \N \N 729 184 3 2648.0 1 2019-05-14 16:42:48.009499 2019-05-14 16:42:48.009499 579 \N \N \N 0 PV1-V-319 1 \N 0.00 \N \N 4858152465545465 730 184 2 1499.0 1 2019-05-14 17:34:48.620219 2019-05-14 17:34:48.620219 580 \N \N \N 0 PV1-V-320 1 1499.00 0.00 \N \N 731 185 2 890.1 1 2019-05-14 18:32:45.262745 2019-05-14 18:32:45.262745 581 \N \N \N 0 PV2-V-259 1 1000.00 109.90 \N \N 734 184 2 499.0 1 2019-05-14 18:40:26.594348 2019-05-14 18:40:26.594348 582 \N \N \N 0 PV1-V-321 1 499.00 0.00 \N \N 735 184 3 800.0 1 2019-05-14 18:49:21.213998 2019-05-14 18:49:21.213998 583 \N \N \N 0 PV1-V-322 1 \N 0.00 \N \N 4858152465545465 736 184 2 250.0 0 2019-05-14 19:33:55.025563 2019-05-14 19:33:55.025563 \N \N \N 67 2 \N 1 \N \N \N \N 737 184 2 200.0 1 2019-05-14 19:56:50.715556 2019-05-14 19:56:50.715556 584 \N \N \N 6 PV1-V-323 1 200.00 0.00 \N \N 738 184 2 500.0 1 2019-05-14 20:01:13.573432 2019-05-14 20:01:13.573432 585 \N \N \N 6 PV1-V-324 1 500.00 0.00 \N \N 739 184 2 200.0 1 2019-05-14 20:02:20.905387 2019-05-14 20:02:20.905387 586 \N \N \N 6 PV1-V-325 1 200.00 0.00 \N \N 740 185 2 869.0 1 2019-05-14 23:40:17.372279 2019-05-14 23:40:17.372279 587 \N \N \N 0 PV2-V-260 1 1000.00 131.00 \N \N 741 184 2 479.0 1 2019-05-15 02:03:57.410861 2019-05-15 02:03:57.410861 588 \N \N \N 0 PV1-V-326 1 500.00 21.00 \N \N 742 186 4 3997.0 1 2019-05-15 16:58:11.796403 2019-05-15 16:58:11.796403 590 5120 \N \N 0 PV2-V-262 1 \N 0.00 \N \N 743 187 1 1099.0 1 2019-05-15 18:11:20.264003 2019-05-15 18:11:20.264003 591 7097 \N \N 0 PV1-V-327 1 \N 0.00 \N \N 744 187 3 297.01 1 2019-05-15 18:18:32.152814 2019-05-15 18:18:32.225458 138 \N \N \N 3 \N 1 \N 0.00 \N \N 4858152465545465 745 187 2 699.0 1 2019-05-15 19:50:18.336517 2019-05-15 19:50:18.336517 580 \N \N \N 5 \N 1 699.00 0.00 4 \N 746 187 1 1278.0 1 2019-05-15 21:48:08.161665 2019-05-15 21:48:08.161665 592 5797 \N \N 0 PV1-V-328 1 \N 0.00 \N \N 747 186 2 1395.0 1 2019-05-15 23:02:44.837124 2019-05-15 23:02:44.837124 593 \N \N \N 0 PV2-V-263 1 1400.00 5.00 \N \N 748 187 2 50.0 0 2019-05-16 01:05:38.815023 2019-05-16 01:05:38.815023 \N \N \N 68 2 \N 1 \N \N \N \N 750 187 2 165.0 1 2019-05-16 01:26:33.825118 2019-05-16 01:26:33.825118 594 \N \N \N 6 PV1-V-329 1 165.00 0.00 \N \N 751 186 2 180.0 1 2019-05-16 01:29:13.900848 2019-05-16 01:29:13.900848 595 \N \N \N 6 PV2-V-264 1 200.00 20.00 \N \N 752 189 1 440.0 1 2019-05-16 18:25:35.814734 2019-05-16 18:25:35.814734 596 2792 \N \N 0 PV1-V-330 1 \N 0.00 \N \N 753 189 2 300.0 1 2019-05-16 18:34:28.296705 2019-05-16 18:34:28.410292 180 \N \N \N 3 \N 1 300.00 0.00 \N \N 754 189 2 1299.0 1 2019-05-16 19:29:09.014647 2019-05-16 19:29:09.014647 597 \N \N \N 0 PV1-V-331 1 1299.00 0.00 \N \N 755 189 2 389.0 1 2019-05-16 19:55:35.279997 2019-05-16 19:55:35.279997 428 \N \N \N 7 \N 1 389.00 0.00 \N \N 756 189 2 699.0 1 2019-05-16 19:56:28.503528 2019-05-16 19:56:28.503528 586 \N \N \N 7 \N 1 699.00 0.00 \N \N 757 188 1 1598.0 1 2019-05-16 21:54:33.922275 2019-05-16 21:54:33.922275 598 9758 \N \N 0 PV2-V-265 1 \N 0.00 \N \N 758 189 1 899.0 1 2019-05-17 00:10:52.692075 2019-05-17 00:10:52.692075 599 2099 \N \N 0 PV1-V-332 1 \N 0.00 \N \N 759 189 2 0 1 2019-05-17 00:42:17.451721 2019-05-17 00:42:17.451721 576 \N \N \N 4 \N 1 700.00 700.00 \N \N 760 189 2 700.0 1 2019-05-17 00:42:50.344142 2019-05-17 00:42:50.344142 576 \N \N \N 7 \N 1 700.00 0.00 \N \N 761 189 2 250.0 0 2019-05-17 01:24:05.493477 2019-05-17 01:24:05.493477 \N \N \N 69 2 \N 1 \N \N \N \N 762 191 1 469.0 1 2019-05-17 17:31:58.137062 2019-05-17 17:31:58.137062 600 7770 \N \N 0 PV1-V-333 1 \N 0.00 \N \N 763 190 2 1249.0 1 2019-05-17 18:18:44.983706 2019-05-17 18:18:44.983706 601 \N \N \N 0 PV2-V-266 1 1250.00 1.00 \N \N 764 191 2 1308.0 1 2019-05-17 18:29:32.324534 2019-05-17 18:29:32.324534 602 \N \N \N 0 PV1-V-334 1 1308.00 0.00 \N \N 765 191 2 899.0 1 2019-05-17 18:49:00.610652 2019-05-17 18:49:00.610652 603 \N \N \N 0 PV1-V-335 1 899.00 0.00 \N \N 766 190 2 409.0 1 2019-05-18 00:29:22.498463 2019-05-18 00:29:22.498463 595 \N \N \N 7 \N 1 500.00 91.00 \N \N 767 191 2 384.0 1 2019-05-18 00:31:24.338971 2019-05-18 00:31:24.338971 594 \N \N \N 7 \N 1 500.00 116.00 \N \N 768 191 1 799.0 1 2019-05-18 01:11:15.329393 2019-05-18 01:11:15.329393 604 694 \N \N 0 PV1-V-336 1 \N 0.00 \N \N 769 191 2 50.0 0 2019-05-18 01:29:28.340661 2019-05-18 01:29:28.340661 \N \N \N 70 2 \N 1 \N \N \N \N 770 193 2 1190.0 1 2019-05-18 16:47:15.433623 2019-05-18 16:47:15.433623 605 \N \N \N 0 PV1-V-337 1 1190.00 0.00 \N \N 771 193 2 50.0 0 2019-05-18 17:13:36.249629 2019-05-18 17:13:36.249629 \N \N \N 71 2 \N 1 \N \N \N \N 772 192 2 599.0 1 2019-05-18 17:45:56.779915 2019-05-18 17:45:56.779915 606 \N \N \N 0 PV2-V-267 1 1000.00 401.00 \N \N 773 192 2 472.0 1 2019-05-18 18:02:21.258406 2019-05-18 18:02:21.258406 431 \N \N \N 7 \N 1 500.00 28.00 \N \N 774 193 2 555.0 1 2019-05-18 21:28:33.933415 2019-05-18 21:28:33.933415 607 \N \N \N 6 PV1-V-338 1 555.00 0.00 \N \N 775 193 2 629.0 1 2019-05-18 23:31:23.005998 2019-05-18 23:31:23.005998 424 \N \N \N 7 \N 1 700.00 71.00 \N \N 776 193 4 1399.0 1 2019-05-19 00:00:35.428289 2019-05-19 00:00:35.428289 608 3235 \N \N 0 PV1-V-339 1 \N 0.00 \N \N 777 193 2 2128.0 0 2019-05-19 01:38:37.357018 2019-05-19 01:38:37.357018 \N \N \N 72 2 \N 1 \N \N \N \N 778 192 2 720.0 0 2019-05-19 01:50:27.296125 2019-05-19 01:50:27.296125 \N \N \N 73 2 \N 1 \N \N \N \N 779 195 4 949.0 1 2019-05-19 18:37:20.48919 2019-05-19 18:37:20.48919 609 2415 \N \N 0 PV1-V-340 1 \N 0.00 \N \N 780 195 2 200.0 1 2019-05-19 19:01:25.513695 2019-05-19 19:01:25.513695 610 \N \N \N 6 PV1-V-341 1 200.00 0.00 \N \N 781 194 4 599.0 1 2019-05-19 19:14:41.551284 2019-05-19 19:14:41.551284 611 4730 \N \N 0 PV2-V-268 1 \N 0.00 \N \N 782 195 1 699.0 1 2019-05-19 19:18:15.065639 2019-05-19 19:18:15.065639 612 4730 \N \N 0 PV1-V-342 1 \N 0.00 \N \N 783 195 2 1049.0 1 2019-05-19 19:47:25.160498 2019-05-19 19:47:25.160498 613 \N \N \N 0 PV1-V-343 1 1050.00 1.00 \N \N 784 196 2 749.0 1 2019-05-20 16:52:17.478011 2019-05-20 16:52:17.478011 614 \N \N \N 0 PV1-V-344 1 749.00 0.00 \N \N 785 196 2 549.0 1 2019-05-20 16:55:42.335 2019-05-20 16:55:42.335 615 \N \N \N 0 PV1-V-345 1 549.00 0.00 \N \N 786 196 2 50.0 0 2019-05-20 17:28:14.431702 2019-05-20 17:28:14.431702 \N \N \N 74 2 \N 1 \N \N \N \N 787 196 2 499.0 1 2019-05-20 22:00:42.631012 2019-05-20 22:00:42.631012 617 \N \N \N 0 PV1-V-347 1 499.00 0.00 \N \N 788 197 2 1169.0 1 2019-05-20 22:13:17.823339 2019-05-20 22:13:17.823339 618 \N \N \N 0 PV2-V-269 1 1500.00 331.00 \N \N 789 196 2 21.0 0 2019-05-20 22:34:57.106079 2019-05-20 22:34:57.106079 \N \N \N 75 2 \N 1 \N \N \N \N 790 196 2 500.0 1 2019-05-20 23:20:56.437899 2019-05-20 23:20:56.437899 620 \N \N \N 6 PV1-V-348 1 500.00 0.00 \N \N 791 197 2 489.0 1 2019-05-20 23:46:48.715094 2019-05-20 23:46:48.715094 621 \N \N \N 0 PV2-V-271 1 500.00 11.00 \N \N 792 197 2 200.0 1 2019-05-20 23:50:00.627516 2019-05-20 23:50:00.627516 622 \N \N \N 6 PV2-V-272 1 200.00 0.00 \N \N 793 197 2 499.0 1 2019-05-21 00:04:51.662633 2019-05-21 00:04:51.662633 623 \N \N \N 0 PV2-V-273 1 500.00 1.00 \N \N 794 196 2 880.0 1 2019-05-21 01:04:20.061162 2019-05-21 01:04:20.061162 564 \N \N \N 5 \N 1 880.00 0.00 6 \N 795 \N 3 1500.0 1 2019-05-21 01:48:44.041182 2019-05-21 01:48:44.100865 212 \N \N \N 3 \N 1 \N 0.00 \N \N 4858152465545465 796 \N 3 790.0 1 2019-05-21 01:54:50.494681 2019-05-21 01:54:50.563641 529 \N \N \N 3 \N 1 \N 0.00 \N \N SAMANTHA 797 199 2 420.0 1 2019-05-21 17:19:45.262138 2019-05-21 17:19:45.262138 624 \N \N \N 6 PV2-V-274 1 500.00 80.00 \N \N 798 199 4 619.0 1 2019-05-21 17:41:09.4018 2019-05-21 17:41:09.4018 625 4626 \N \N 0 PV2-V-275 1 \N 0.00 \N \N 799 198 4 479.0 1 2019-05-21 18:56:31.719246 2019-05-21 18:56:31.719246 310 8660 \N \N 7 \N 1 \N 0.00 \N \N 800 198 2 639.19 1 2019-05-21 20:45:18.756157 2019-05-21 20:45:18.756157 626 \N \N \N 0 PV1-V-349 1 700.00 60.81 \N \N 801 198 4 1699.0 1 2019-05-21 21:01:46.493317 2019-05-21 21:01:46.493317 627 3367 \N \N 0 PV1-V-350 1 \N 0.00 \N \N 802 199 2 180.0 1 2019-05-21 21:19:49.625858 2019-05-21 21:19:49.625858 628 \N \N \N 6 PV2-V-276 1 200.00 20.00 \N \N 803 198 2 979.0 1 2019-05-21 21:45:24.67635 2019-05-21 21:45:24.67635 407 \N \N \N 7 \N 1 1000.00 21.00 \N \N 804 198 4 1299.0 1 2019-05-21 21:53:24.275243 2019-05-21 21:53:24.275243 629 4697 \N \N 0 PV1-V-351 1 \N 0.00 \N \N 805 198 2 699.0 1 2019-05-21 22:23:24.227712 2019-05-21 22:23:24.227712 630 \N \N \N 0 PV1-V-352 1 699.00 0.00 \N \N 806 198 2 200.0 1 2019-05-21 22:46:36.926377 2019-05-21 22:46:36.926377 631 \N \N \N 6 PV1-V-353 1 200.00 0.00 \N \N 807 199 2 830.0 1 2019-05-22 00:49:26.393648 2019-05-22 00:49:26.393648 265 \N \N \N 7 \N 1 830.00 0.00 \N \N 808 199 2 250.0 1 2019-05-22 01:39:15.091728 2019-05-22 01:39:15.091728 632 \N \N \N 6 PV2-V-277 1 500.00 250.00 \N \N 809 198 2 1178.0 1 2019-05-22 01:59:19.371171 2019-05-22 01:59:19.371171 633 \N \N \N 0 PV1-V-354 1 1500.00 322.00 \N \N 810 201 2 899.0 1 2019-05-22 16:51:18.155823 2019-05-22 16:51:18.155823 620 \N \N \N 7 \N 1 899.00 0.00 \N \N 811 201 2 799.0 1 2019-05-22 19:13:59.368934 2019-05-22 19:13:59.368934 634 \N \N \N 0 PV1-V-355 1 1000.00 201.00 \N \N 812 201 4 1199.0 1 2019-05-22 20:02:13.697007 2019-05-22 20:02:13.697007 635 4152 \N \N 0 PV1-V-356 1 \N 0.00 \N \N 814 200 2 999.0 1 2019-05-22 21:58:44.922468 2019-05-22 21:58:44.922468 637 \N \N \N 0 PV2-V-279 1 1000.00 1.00 \N \N 815 200 2 1169.0 1 2019-05-22 22:01:15.148642 2019-05-22 22:01:15.148642 638 \N \N \N 0 PV2-V-280 1 1200.00 31.00 \N \N 816 200 2 420.0 1 2019-05-22 23:19:05.406604 2019-05-22 23:19:05.406604 639 \N \N \N 6 PV2-V-281 1 500.00 80.00 \N \N 818 200 2 528.99 1 2019-05-23 00:46:49.921516 2019-05-23 00:46:49.921516 641 \N \N \N 0 PV2-V-283 1 700.00 171.01 \N \N 819 200 2 1299.0 1 2019-05-23 00:49:47.49696 2019-05-23 00:49:47.49696 642 \N \N \N 0 PV2-V-284 1 1299.00 0.00 \N \N 820 200 2 280.0 1 2019-05-23 00:52:14.760148 2019-05-23 00:52:14.760148 644 \N \N \N 6 PV2-V-286 1 400.00 120.00 \N \N 821 200 4 1500.0 1 2019-05-23 00:58:20.6609 2019-05-23 00:58:20.775468 387 5257 \N \N 3 \N 1 \N 0.00 \N \N 822 201 4 869.0 1 2019-05-23 01:55:06.347612 2019-05-23 01:55:06.347612 645 8362 \N \N 0 PV1-V-357 1 \N 0.00 \N \N 823 201 2 50.0 0 2019-05-23 01:57:22.516066 2019-05-23 01:57:22.516066 \N \N 3 76 2 \N 1 \N \N \N \N 824 203 2 799.0 1 2019-05-23 16:27:43.974566 2019-05-23 16:27:43.974566 646 \N \N \N 0 PV2-V-287 1 800.00 1.00 \N \N 825 203 2 998.0 1 2019-05-23 22:49:04.052374 2019-05-23 22:49:04.052374 648 \N \N \N 0 PV2-V-289 1 1000.00 2.00 \N \N 826 202 2 685.0 1 2019-05-23 23:15:09.24076 2019-05-23 23:15:09.24076 649 \N \N \N 0 PV1-V-358 1 685.00 0.00 \N \N 827 203 2 598.0 1 2019-05-23 23:32:44.960702 2019-05-23 23:32:44.960702 650 \N \N \N 0 PV2-V-290 1 600.00 2.00 \N \N 828 202 2 479.0 1 2019-05-24 00:07:34.736616 2019-05-24 00:07:34.736616 651 \N \N \N 0 PV1-V-359 1 479.00 0.00 \N \N 829 202 2 869.0 1 2019-05-24 00:17:26.293006 2019-05-24 00:17:26.293006 652 \N \N \N 0 PV1-V-360 1 869.00 0.00 \N \N 830 202 1 469.0 1 2019-05-24 00:42:16.025247 2019-05-24 00:42:16.025247 653 1320 \N \N 0 PV1-V-361 1 \N 0.00 \N \N 856 207 2 1000.0 1 2019-05-25 22:38:35.52626 2019-05-25 22:38:35.52626 672 \N \N \N 6 PV1-V-373 1 1000.00 0.00 \N \N 831 203 2 1297.0 1 2019-05-24 00:45:37.779469 2019-05-24 00:45:37.871325 398 \N \N \N 3 \N 1 1400.00 0.00 \N \N 832 202 1 1249.0 1 2019-05-24 00:48:33.370444 2019-05-24 00:48:33.370444 654 6029 \N \N 0 PV1-V-362 1 \N 0.00 \N \N 833 202 2 50.0 0 2019-05-24 01:03:37.705973 2019-05-24 01:03:37.705973 \N \N \N 77 2 \N 1 \N \N \N \N 834 202 2 599.0 1 2019-05-24 01:09:58.25469 2019-05-24 01:09:58.25469 655 \N \N \N 0 PV1-V-363 1 599.00 0.00 \N \N 835 202 1 1098.01 1 2019-05-24 01:21:23.890737 2019-05-24 01:21:23.890737 656 3645 \N \N 0 PV1-V-364 1 \N 0.00 \N \N 836 203 1 799.0 1 2019-05-24 01:21:58.416448 2019-05-24 01:21:58.416448 657 3645 \N \N 0 PV2-V-291 1 \N 0.00 \N \N 837 204 4 1299.0 1 2019-05-24 18:08:11.309589 2019-05-24 18:08:11.309589 658 5102 \N \N 0 PV2-V-292 1 \N 0.00 \N \N 838 204 2 500.0 1 2019-05-24 20:02:01.51467 2019-05-24 20:02:01.51467 659 \N \N \N 6 PV2-V-293 1 500.00 0.00 \N \N 839 205 1 769.0 1 2019-05-24 20:16:07.449933 2019-05-24 20:16:07.449933 660 7528 \N \N 0 PV1-V-365 1 \N 0.00 \N \N 840 205 1 749.0 1 2019-05-24 22:52:13.840138 2019-05-24 22:52:13.840138 661 9253 \N \N 0 PV1-V-366 1 \N 0.00 \N \N 841 205 2 489.0 1 2019-05-24 23:27:18.217335 2019-05-24 23:27:18.217335 662 \N \N \N 0 PV1-V-367 1 489.00 0.00 \N \N 842 204 4 499.0 1 2019-05-25 00:50:59.376796 2019-05-25 00:50:59.376796 663 985 \N \N 0 PV2-V-294 1 \N 0.00 \N \N 843 204 2 589.0 1 2019-05-25 00:56:56.771683 2019-05-25 00:56:56.771683 632 \N \N \N 7 \N 1 600.00 11.00 \N \N 844 204 2 500.0 0 2019-05-25 01:43:18.576154 2019-05-25 01:43:18.576154 \N \N \N 78 2 \N 1 \N \N \N \N 845 205 2 899.0 1 2019-05-25 01:55:31.230599 2019-05-25 01:55:31.230599 664 \N \N \N 0 PV1-V-368 1 1000.00 101.00 \N \N 846 206 2 469.0 1 2019-05-25 15:59:59.09449 2019-05-25 15:59:59.09449 665 \N \N \N 0 PV2-V-295 1 520.00 51.00 \N \N 847 \N 3 400.0 1 2019-05-25 16:27:41.89038 2019-05-25 16:27:41.938288 616 \N \N \N 3 \N 1 \N 0.00 \N \N SAMANTHA 848 206 2 979.0 1 2019-05-25 17:19:49.743618 2019-05-25 17:19:49.743618 624 \N \N \N 7 \N 1 1000.00 21.00 \N \N 849 206 4 1399.0 1 2019-05-25 17:32:20.160983 2019-05-25 17:32:20.160983 666 916 \N \N 0 PV2-V-296 1 \N 0.00 \N \N 850 207 1 699.0 1 2019-05-25 17:42:51.418055 2019-05-25 17:42:51.418055 667 4329 \N \N 0 PV1-V-369 1 \N 0.00 \N \N 851 207 4 489.0 1 2019-05-25 18:38:37.730772 2019-05-25 18:38:37.730772 668 5771 \N \N 0 PV1-V-370 1 \N 0.00 \N \N 852 207 4 499.0 1 2019-05-25 19:17:13.534063 2019-05-25 19:17:13.534063 669 4915 \N \N 0 PV1-V-371 1 \N 0.00 \N \N 853 206 4 799.0 1 2019-05-25 19:19:56.895768 2019-05-25 19:19:56.895768 670 9272 \N \N 0 PV2-V-297 1 \N 0.00 \N \N 855 207 2 689.01 1 2019-05-25 20:50:01.840098 2019-05-25 20:50:01.840098 671 \N \N \N 0 PV1-V-372 1 689.01 0.00 \N \N 857 207 2 1259.3 1 2019-05-25 22:42:31.491509 2019-05-25 22:42:31.491509 673 \N \N \N 0 PV1-V-374 1 1500.00 240.70 \N \N 858 207 2 265.0 1 2019-05-26 00:18:10.749152 2019-05-26 00:18:10.749152 675 \N \N \N 6 PV1-V-376 1 265.00 0.00 \N \N 859 207 4 869.0 1 2019-05-26 00:38:17.587066 2019-05-26 00:38:17.587066 676 7866 \N \N 0 PV1-V-377 1 \N 0.00 \N \N 860 207 2 628.0 0 2019-05-26 00:56:22.904307 2019-05-26 00:56:22.904307 \N \N \N 79 2 \N 1 \N \N \N \N 861 207 2 549.0 1 2019-05-26 00:57:34.046448 2019-05-26 00:57:34.117532 203 \N \N \N 3 \N 1 549.00 0.00 \N \N 862 206 4 2498.0 1 2019-05-26 01:10:56.241851 2019-05-26 01:10:56.241851 677 3945 \N \N 0 PV2-V-298 1 \N 0.00 \N \N 863 207 2 700.0 0 2019-05-26 01:12:57.930888 2019-05-26 01:12:57.930888 \N \N \N 80 2 \N 1 \N \N \N \N 864 207 2 500.0 1 2019-05-26 01:14:25.448405 2019-05-26 01:14:25.525302 172 \N \N \N 3 \N 1 500.00 0.00 \N \N 865 209 2 1099.0 1 2019-05-26 18:35:31.061116 2019-05-26 18:35:31.061116 678 \N \N \N 0 PV1-V-378 1 1100.00 1.00 \N \N 866 208 4 969.0 1 2019-05-26 18:47:52.617439 2019-05-26 18:47:52.617439 679 9097 \N \N 0 PV2-V-299 1 \N 0.00 \N \N 867 208 2 889.0 1 2019-05-26 20:24:50.70585 2019-05-26 20:24:50.70585 680 \N \N \N 0 PV2-V-300 1 1000.00 111.00 \N \N 868 209 2 279.0 1 2019-05-26 20:56:39.5022 2019-05-26 20:56:39.5022 631 \N \N \N 7 \N 1 500.00 221.00 \N \N 869 209 2 200.0 0 2019-05-26 21:01:10.060458 2019-05-26 21:01:10.060458 \N \N \N 81 2 \N 1 \N \N \N \N 871 210 2 60.0 1 2019-05-27 17:49:34.166601 2019-05-27 17:49:34.166601 681 \N \N \N 6 PV1-V-379 1 60.00 0.00 \N \N 873 210 1 200.0 1 2019-05-27 17:50:18.241192 2019-05-27 17:50:18.241192 681 4489 \N \N 6 PV1-V-379 1 \N 0.00 \N \N 874 210 2 50.0 0 2019-05-27 17:54:25.965849 2019-05-27 17:54:25.965849 \N \N \N 82 2 \N 1 \N \N \N \N 876 210 2 750.0 1 2019-05-27 18:18:57.202139 2019-05-27 18:18:57.202139 682 \N \N \N 6 PV1-V-380 1 750.00 0.00 \N \N 877 210 2 749.0 1 2019-05-27 18:27:40.612019 2019-05-27 18:27:40.612019 683 \N \N \N 0 PV1-V-381 1 749.00 0.00 \N \N 878 210 2 699.0 1 2019-05-27 21:45:52.454758 2019-05-27 21:45:52.454758 684 \N \N \N 0 PV1-V-382 1 699.00 0.00 \N \N 879 210 2 400.0 0 2019-05-27 22:11:56.299324 2019-05-27 22:11:56.299324 \N \N \N 83 2 \N 1 \N \N \N \N 880 210 2 49.0 1 2019-05-27 23:21:35.849574 2019-05-27 23:21:35.849574 682 \N \N \N 7 \N 1 49.00 0.00 \N \N 881 210 2 479.0 1 2019-05-27 23:23:04.904836 2019-05-27 23:23:04.904836 685 \N \N \N 0 PV1-V-383 1 479.00 0.00 \N \N 882 210 1 899.0 1 2019-05-27 23:39:08.376305 2019-05-27 23:39:08.376305 686 9109 \N \N 0 PV1-V-384 1 \N 0.00 \N \N 883 212 2 399.0 1 2019-05-28 18:47:38.325012 2019-05-28 18:47:38.325012 412 \N \N \N 7 \N 1 400.00 1.00 \N \N 885 212 1 899.0 1 2019-05-28 19:39:10.256277 2019-05-28 19:39:10.256277 688 1083 \N \N 0 PV1-V-386 1 \N 0.00 \N \N 886 212 2 489.0 1 2019-05-28 23:46:57.845367 2019-05-28 23:46:57.845367 689 \N \N \N 0 PV1-V-387 1 500.00 11.00 \N \N 887 211 2 1599.0 1 2019-05-29 00:20:56.833893 2019-05-29 00:20:56.833893 690 \N \N \N 0 PV2-V-301 1 2000.00 401.00 \N \N 888 212 2 500.0 1 2019-05-29 00:53:15.756022 2019-05-29 00:53:15.756022 607 \N \N \N 4 \N 1 500.00 0.00 \N \N 889 212 1 1239.0 1 2019-05-29 01:38:10.907758 2019-05-29 01:38:10.907758 691 7578 \N \N 0 PV1-V-388 1 \N 0.00 \N \N 890 215 2 669.0 1 2019-05-30 19:36:00.843974 2019-05-30 19:36:00.843974 692 \N \N \N 0 PV2-V-302 1 1000.00 331.00 \N \N 891 216 5 1649.0 1 2019-05-30 21:10:51.173143 2019-05-30 21:10:51.173143 693 \N \N \N 0 PV1-V-389 1 \N 0.00 \N \N UNIVALE 0000JP99 1089106392922 892 216 2 400.0 0 2019-05-30 22:05:55.013909 2019-05-30 22:05:55.013909 \N \N \N 84 2 \N 1 \N \N \N \N 893 215 2 100.0 0 2019-05-30 22:10:50.157925 2019-05-30 22:10:50.157925 \N \N \N 85 2 \N 1 \N \N \N \N 894 216 1 499.0 1 2019-05-30 22:35:16.624538 2019-05-30 22:35:16.624538 540 8372 \N \N 7 \N 1 \N 0.00 \N \N 895 216 2 869.0 1 2019-05-31 00:22:55.390653 2019-05-31 00:22:55.390653 694 \N \N \N 0 PV1-V-390 1 1000.00 131.00 \N \N 896 215 1 300.0 1 2019-05-31 00:40:52.516711 2019-05-31 00:40:52.516711 545 6515 \N \N 4 \N 1 \N 0.00 \N \N 901 216 1 280.0 1 2019-05-31 00:52:28.834614 2019-05-31 00:52:28.834614 696 6515 \N \N 6 PV1-V-392 1 \N 0.00 \N \N 902 216 2 200.0 1 2019-05-31 00:53:19.035495 2019-05-31 00:53:19.035495 696 \N \N \N 4 \N 1 200.00 0.00 \N \N 903 216 4 20.0 1 2019-05-31 00:55:38.105113 2019-05-31 00:55:38.105113 696 6515 \N \N 4 \N 1 \N 0.00 \N \N 905 216 2 500.0 1 2019-05-31 01:26:50.205295 2019-05-31 01:26:50.205295 698 \N \N \N 6 PV1-V-394 1 500.00 0.00 \N \N 906 217 2 499.0 1 2019-05-31 16:55:47.665134 2019-05-31 16:55:47.665134 699 \N \N \N 0 PV1-V-395 1 499.00 0.00 \N \N 907 217 2 700.0 1 2019-05-31 19:03:01.434836 2019-05-31 19:03:01.434836 700 \N \N \N 6 PV1-V-396 1 700.00 0.00 \N \N 908 217 2 1330.0 1 2019-05-31 19:40:41.987468 2019-05-31 19:40:41.987468 701 \N \N \N 0 PV1-V-397 1 1330.00 0.00 \N \N 909 218 1 749.0 1 2019-05-31 22:52:27.250595 2019-05-31 22:52:27.250595 702 890 \N \N 0 PV2-V-303 1 \N 0.00 \N \N 910 218 1 609.0 1 2019-05-31 23:33:23.286909 2019-05-31 23:33:23.286909 703 2294 \N \N 0 PV2-V-304 1 \N 0.00 \N \N 911 218 3 3000.0 1 2019-06-01 00:44:40.724908 2019-06-01 00:44:40.808177 139 \N \N \N 3 \N 1 \N 0.00 \N \N 4858152465545465 912 218 1 1399.0 1 2019-06-01 01:01:14.234206 2019-06-01 01:01:14.234206 704 3837 \N \N 0 PV2-V-305 1 \N 0.00 \N \N 913 217 2 609.0 1 2019-06-01 01:13:36.751534 2019-06-01 01:13:36.751534 681 \N \N \N 7 \N 1 620.00 11.00 \N \N 914 217 2 669.0 1 2019-06-01 01:21:28.43173 2019-06-01 01:21:28.43173 705 \N \N \N 0 PV1-V-398 1 700.00 31.00 \N \N 915 220 2 1199.0 1 2019-06-01 19:13:40.118109 2019-06-01 19:13:40.118109 706 \N \N \N 0 PV2-V-306 1 1200.00 1.00 \N \N 916 219 2 1249.0 1 2019-06-01 21:50:38.002375 2019-06-01 21:50:38.002375 707 \N \N \N 0 PV1-V-399 1 1249.00 0.00 \N \N 917 220 2 480.0 1 2019-06-01 21:55:19.178868 2019-06-01 21:55:19.178868 708 \N \N \N 6 PV2-V-307 1 500.00 20.00 \N \N 918 219 2 1238.0 0 2019-06-02 00:53:27.719136 2019-06-02 00:53:27.719136 \N \N \N 86 2 \N 1 \N \N \N \N 939 228 2 171.0 0 2019-06-06 18:59:54.712724 2019-06-06 18:59:54.712724 \N \N \N 92 2 \N 1 \N \N \N \N 922 221 4 499.0 1 2019-06-02 18:19:10.380297 2019-06-02 18:19:10.380297 709 4298 \N \N 0 PV2-V-308 1 \N 0.00 \N \N 926 221 4 599.0 1 2019-06-02 18:59:25.623389 2019-06-02 18:59:25.623389 710 2018 \N \N 0 PV2-V-309 1 \N 0.00 \N \N 927 222 1 489.0 1 2019-06-03 18:36:34.25678 2019-06-03 18:36:34.25678 711 1326 \N \N 0 PV1-V-400 1 \N 0.00 \N \N 928 222 2 50.0 0 2019-06-04 01:38:36.089181 2019-06-04 01:38:36.089181 \N \N \N 87 2 \N 1 \N \N \N \N 929 225 2 300.0 0 2019-06-04 20:02:45.04482 2019-06-04 20:02:45.04482 \N \N \N 88 2 \N 1 \N \N \N \N 930 225 2 50.0 0 2019-06-04 20:03:08.821959 2019-06-04 20:03:08.821959 \N \N \N 89 2 \N 1 \N \N \N \N 931 224 2 1199.0 1 2019-06-04 20:49:32.548458 2019-06-04 20:49:32.548458 713 \N \N \N 0 PV2-V-310 1 1199.00 0.00 \N \N 932 225 2 1050.0 1 2019-06-04 21:33:35.866188 2019-06-04 21:33:35.866188 714 \N \N \N 0 PV1-V-402 1 1050.00 0.00 \N \N 933 225 2 699.0 1 2019-06-04 23:35:05.694696 2019-06-04 23:35:05.694696 585 \N \N \N 7 \N 1 699.00 0.00 \N \N 934 225 2 44.0 0 2019-06-04 23:41:29.475171 2019-06-04 23:41:29.475171 \N \N \N 90 2 \N 1 \N \N \N \N 935 225 2 500.0 1 2019-06-05 00:46:53.316074 2019-06-05 00:46:53.316074 607 \N \N \N 4 \N 1 500.00 0.00 \N \N 936 227 1 500.0 1 2019-06-06 00:35:09.003862 2019-06-06 00:35:09.049572 529 3186 \N \N 3 \N 1 \N 0.00 \N \N 937 227 2 50.0 0 2019-06-06 01:18:03.410256 2019-06-06 01:18:03.410256 \N \N \N 91 2 \N 1 \N \N \N \N 938 228 2 749.0 1 2019-06-06 16:49:47.08068 2019-06-06 16:49:47.08068 715 \N \N \N 0 PV1-V-403 1 749.00 0.00 \N \N 940 228 2 799.0 1 2019-06-06 20:02:16.745421 2019-06-06 20:02:16.745421 716 \N \N \N 0 PV1-V-404 1 799.00 0.00 \N \N 941 229 2 500.0 1 2019-06-06 20:30:14.899708 2019-06-06 20:30:14.899708 659 \N \N \N 4 \N 1 500.00 0.00 \N \N 942 228 2 100.0 0 2019-06-06 20:32:26.165721 2019-06-06 20:32:26.165721 \N \N \N 93 2 \N 1 \N \N \N \N 943 228 3 299.0 1 2019-06-06 22:05:05.134384 2019-06-06 22:05:05.134384 717 \N \N \N 0 PV1-V-405 1 \N 0.00 \N \N SAMANTHA 944 228 2 35.0 0 2019-06-06 22:21:14.677396 2019-06-06 22:21:14.677396 \N \N \N 94 2 \N 1 \N \N \N \N 945 228 2 749.0 1 2019-06-06 22:21:58.340103 2019-06-06 22:21:58.340103 718 \N \N \N 0 PV1-V-406 1 749.00 0.00 \N \N 946 229 2 975.0 1 2019-06-07 00:38:33.174579 2019-06-07 00:38:33.174579 639 \N \N \N 7 \N 1 975.00 0.00 \N \N 947 228 2 420.0 1 2019-06-07 01:13:49.39496 2019-06-07 01:13:49.39496 719 \N \N \N 6 PV1-V-407 1 420.00 0.00 \N \N 948 230 2 200.0 0 2019-06-07 22:05:58.135411 2019-06-07 22:05:58.135411 \N \N \N 95 2 \N 1 \N \N \N \N 949 231 2 699.0 1 2019-06-08 17:37:49.234876 2019-06-08 17:37:49.234876 720 \N \N \N 0 PV2-V-311 1 699.00 0.00 \N \N 950 232 2 279.0 1 2019-06-08 18:33:58.672807 2019-06-08 18:33:58.672807 610 \N \N \N 7 \N 1 279.00 0.00 \N \N 951 231 2 245.0 1 2019-06-08 22:23:56.036018 2019-06-08 22:23:56.036018 721 \N \N \N 0 PV2-V-312 1 245.00 0.00 \N \N 952 232 2 300.0 1 2019-06-08 22:27:06.62531 2019-06-08 22:27:06.686698 182 \N \N \N 3 \N 1 300.00 0.00 \N \N 953 231 2 100.0 0 2019-06-08 22:28:55.33872 2019-06-08 22:28:55.33872 \N \N \N 96 2 \N 1 \N \N \N \N 954 231 2 1298.0 1 2019-06-08 22:50:27.327019 2019-06-08 22:50:27.327019 722 \N \N \N 0 PV2-V-313 1 1500.00 202.00 \N \N 955 232 2 1028.0 0 2019-06-08 23:09:47.437533 2019-06-08 23:09:47.437533 \N \N \N 97 2 \N 1 \N \N \N \N 956 231 2 850.0 0 2019-06-08 23:17:00.474017 2019-06-08 23:17:00.474017 \N \N \N 98 2 \N 1 \N \N \N \N 957 233 2 1448.0 1 2019-06-09 01:46:09.404686 2019-06-09 01:46:09.404686 672 \N \N \N 7 \N 1 1500.00 52.00 \N \N 958 231 2 549.0 1 2019-06-09 01:49:05.030723 2019-06-09 01:49:05.030723 723 \N \N \N 0 PV2-V-314 1 600.00 51.00 \N \N 959 234 4 1599.0 1 2019-06-09 20:46:06.564394 2019-06-09 20:46:06.564394 724 6073 \N \N 0 PV2-V-315 1 \N 0.00 \N \N 960 235 4 1499.0 1 2019-06-09 20:48:50.962305 2019-06-09 20:48:50.962305 725 6073 \N \N 0 PV1-V-408 1 \N 0.00 \N \N 961 234 2 157.0 0 2019-06-09 20:56:45.738139 2019-06-09 20:56:45.738139 \N \N \N 99 2 \N 1 \N \N \N \N 962 236 2 559.0 1 2019-06-10 22:15:23.715343 2019-06-10 22:15:23.715343 719 \N \N \N 7 \N 1 559.00 0.00 \N \N 963 236 2 200.0 1 2019-06-11 00:28:03.281147 2019-06-11 00:28:03.281147 726 \N \N \N 6 PV1-V-409 1 200.00 0.00 \N \N 964 236 2 1249.0 1 2019-06-11 01:40:03.095841 2019-06-11 01:40:03.095841 727 \N \N \N 0 PV1-V-410 1 1500.00 251.00 \N \N 965 239 2 328.0 1 2019-06-11 16:31:41.041792 2019-06-11 16:31:41.041792 468 \N \N \N 7 \N 1 328.00 0.00 \N \N 966 239 2 829.0 1 2019-06-11 17:18:25.712456 2019-06-11 17:18:25.712456 728 \N \N \N 0 PV1-V-411 1 829.00 0.00 \N \N 967 238 2 1599.0 1 2019-06-11 18:05:08.701155 2019-06-11 18:05:08.701155 729 \N \N \N 0 PV2-V-316 1 1600.00 1.00 \N \N 968 239 2 1099.0 1 2019-06-11 23:17:50.804208 2019-06-11 23:17:50.804208 730 \N \N \N 0 PV1-V-412 1 1500.00 401.00 \N \N 969 241 2 278.0 1 2019-06-12 22:27:05.27831 2019-06-12 22:27:05.27831 731 \N \N \N 6 PV1-V-413 1 300.00 22.00 \N \N 970 241 2 22.0 1 2019-06-12 22:27:51.858952 2019-06-12 22:27:51.858952 731 \N \N \N 4 \N 1 22.00 0.00 \N \N 971 241 2 592.0 1 2019-06-12 22:39:30.202951 2019-06-12 22:39:30.202951 725 \N \N \N 5 \N 1 592.00 0.00 7 \N 972 243 2 520.0 1 2019-06-13 16:52:54.466533 2019-06-13 16:52:54.466533 732 \N \N \N 0 PV1-V-414 1 520.00 0.00 \N \N 973 243 4 1249.0 1 2019-06-13 18:42:52.534242 2019-06-13 18:42:52.534242 733 9428 \N \N 0 PV1-V-415 1 \N 0.00 \N \N 974 243 2 999.0 1 2019-06-13 19:53:04.523664 2019-06-13 19:53:04.523664 734 \N \N \N 0 PV1-V-416 1 999.00 0.00 \N \N 975 242 4 500.0 1 2019-06-13 20:06:26.66663 2019-06-13 20:06:26.66663 735 6611 \N \N 0 PV2-V-317 1 \N 0.00 \N \N 976 242 2 199.0 1 2019-06-13 20:06:37.161971 2019-06-13 20:06:37.161971 735 \N \N \N 0 PV2-V-317 1 199.00 0.00 \N \N 979 243 2 10.0 0 2019-06-13 20:15:49.391689 2019-06-13 20:15:49.391689 \N \N \N 100 2 \N 1 \N \N \N \N 978 243 1 689.01 1 2019-06-13 20:10:03.562766 2019-06-13 20:10:03.562766 737 5390 \N \N 0 PV1-V-418 1 \N 0.00 \N \N 980 242 2 99.0 1 2019-06-14 01:23:43.464405 2019-06-14 01:23:43.464405 738 \N \N \N 0 PV2-V-318 1 100.00 1.00 \N \N 981 242 2 99.0 1 2019-06-14 01:26:51.314002 2019-06-14 01:26:51.314002 739 \N \N \N 0 PV2-V-319 1 500.00 401.00 \N \N 982 244 2 1395.0 1 2019-06-14 17:08:48.517637 2019-06-14 17:08:48.517637 740 \N \N \N 0 PV2-V-320 1 1500.00 105.00 \N \N 983 245 2 629.0 1 2019-06-14 17:29:31.474803 2019-06-14 17:29:31.474803 584 \N \N \N 7 \N 1 629.00 0.00 \N \N 984 245 2 949.0 1 2019-06-14 19:07:35.779592 2019-06-14 19:07:35.779592 741 \N \N \N 0 PV1-V-419 1 949.00 0.00 \N \N 985 245 3 300.0 1 2019-06-14 21:33:43.807544 2019-06-14 21:33:43.875654 712 \N \N \N 3 \N 1 \N 0.00 \N \N SAMANTHA 986 245 2 1000.0 0 2019-06-14 23:44:39.314333 2019-06-14 23:44:39.314333 \N \N \N 101 2 \N 1 \N \N \N \N 987 245 2 50.0 0 2019-06-15 01:56:29.142102 2019-06-15 01:56:29.142102 \N \N \N 102 2 \N 1 \N \N \N \N 988 246 2 1199.0 1 2019-06-15 16:53:29.481646 2019-06-15 16:53:29.481646 742 \N \N \N 0 PV1-V-420 1 1199.00 0.00 \N \N 989 247 4 978.0 1 2019-06-15 19:35:10.354847 2019-06-15 19:35:10.354847 743 1575 \N \N 0 PV2-V-321 1 \N 0.00 \N \N 990 247 2 599.0 1 2019-06-15 20:03:22.095035 2019-06-15 20:03:22.095035 744 \N \N \N 0 PV2-V-322 1 600.00 1.00 \N \N 991 246 1 599.0 1 2019-06-15 20:15:41.838484 2019-06-15 20:15:41.838484 745 6949 \N \N 0 PV1-V-421 1 \N 0.00 \N \N 992 246 2 949.0 1 2019-06-15 20:22:21.971249 2019-06-15 20:22:21.971249 746 \N \N \N 0 PV1-V-422 1 949.00 0.00 \N \N 999 247 4 500.0 1 2019-06-15 20:34:34.622183 2019-06-15 20:34:34.622183 749 5299 \N \N 6 PV2-V-325 1 \N 0.00 \N \N 1000 246 2 150.0 1 2019-06-15 21:13:15.377634 2019-06-15 21:13:15.377634 750 \N \N \N 6 PV1-V-423 1 150.00 0.00 \N \N 1001 246 1 1284.0 1 2019-06-15 22:13:52.029686 2019-06-15 22:13:52.029686 751 8322 \N \N 0 PV1-V-424 1 \N 0.00 \N \N 1003 246 1 869.0 1 2019-06-15 22:24:01.845381 2019-06-15 22:24:01.845381 752 8523 \N \N 0 PV1-V-425 1 \N 0.00 \N \N 1004 246 4 1767.99 1 2019-06-16 00:53:10.268317 2019-06-16 00:53:10.268317 698 3879 \N \N 7 \N 1 \N 0.00 \N \N 1005 246 2 838.0 0 2019-06-16 01:49:10.429498 2019-06-16 01:49:10.429498 \N \N \N 103 2 \N 1 \N \N \N \N 1006 246 2 950.0 0 2019-06-16 01:53:07.986162 2019-06-16 01:53:07.986162 \N \N \N 104 2 \N 1 \N \N \N \N 1007 247 2 50.0 0 2019-06-16 01:53:38.970631 2019-06-16 01:53:38.970631 \N \N \N 105 2 \N 1 \N \N \N \N 1008 248 2 604.0 1 2019-06-16 16:07:13.789833 2019-06-16 16:07:13.789833 675 \N \N \N 7 \N 1 604.00 0.00 \N \N 1009 250 4 699.0 1 2019-06-17 20:51:03.575864 2019-06-17 20:51:03.575864 753 8263 \N \N 0 PV1-V-426 1 \N 0.00 \N \N 1010 253 2 1548.0 1 2019-06-18 18:09:22.836441 2019-06-18 18:09:22.836441 754 \N \N \N 0 PV1-V-427 1 1548.00 0.00 \N \N 1011 253 2 1239.0 1 2019-06-18 19:55:16.085219 2019-06-18 19:55:16.085219 755 \N \N \N 0 PV1-V-428 1 1239.00 0.00 \N \N 1012 252 2 369.0 1 2019-06-18 20:09:15.835321 2019-06-18 20:09:15.835321 545 \N \N \N 7 \N 1 500.00 131.00 \N \N 1015 253 2 500.0 1 2019-06-18 20:21:18.6816 2019-06-18 20:21:18.6816 696 \N \N \N 4 \N 1 500.00 0.00 \N \N 1016 253 1 399.0 1 2019-06-18 20:22:14.535112 2019-06-18 20:22:14.535112 696 6507 \N \N 4 \N 1 \N 0.00 \N \N 1018 252 2 599.0 1 2019-06-18 21:05:36.498712 2019-06-18 21:05:36.498712 757 \N \N \N 0 PV2-V-327 1 600.00 1.00 \N \N 1019 252 2 895.0 1 2019-06-18 21:33:41.54801 2019-06-18 21:33:41.54801 749 \N \N \N 7 \N 1 900.00 5.00 \N \N 1020 253 2 300.0 1 2019-06-18 22:40:28.173615 2019-06-18 22:40:28.173615 758 \N \N \N 6 PV1-V-429 0 300.00 0.00 \N \N 1022 253 2 300.0 1 2019-06-18 22:44:11.930168 2019-06-18 22:44:11.930168 760 \N \N \N 6 PV1-V-431 1 300.00 0.00 \N \N 1023 255 1 200.0 1 2019-06-19 20:44:08.178105 2019-06-19 20:44:08.178105 761 4489 \N \N 0 PV1-V-432 1 \N 0.00 \N \N 1024 255 2 269.0 1 2019-06-19 20:44:23.870074 2019-06-19 20:44:23.870074 761 \N \N \N 0 PV1-V-432 1 269.00 0.00 \N \N 1025 254 2 499.0 1 2019-06-19 20:55:49.309594 2019-06-19 20:55:49.309594 762 \N \N \N 0 PV2-V-328 1 500.00 1.00 \N \N 1026 255 2 599.0 1 2019-06-19 23:00:22.858311 2019-06-19 23:00:22.858311 763 \N \N \N 0 PV1-V-433 1 700.00 101.00 \N \N 1027 254 2 599.0 1 2019-06-19 23:56:24.322735 2019-06-19 23:56:24.322735 764 \N \N \N 0 PV2-V-329 1 600.00 1.00 \N \N 1028 255 2 489.0 1 2019-06-19 23:59:15.131745 2019-06-19 23:59:15.131745 765 \N \N \N 0 PV1-V-434 1 500.00 11.00 \N \N 1029 257 2 599.0 1 2019-06-20 19:47:32.583949 2019-06-20 19:47:32.583949 565 \N \N \N 7 \N 1 599.00 0.00 \N \N 1030 256 2 799.0 1 2019-06-20 20:06:47.051269 2019-06-20 20:06:47.051269 766 \N \N \N 0 PV2-V-330 1 800.00 1.00 \N \N 1031 256 2 1099.0 1 2019-06-20 22:13:49.187113 2019-06-20 22:13:49.187113 767 \N \N \N 0 PV2-V-331 1 1099.00 0.00 \N \N 1032 257 2 1299.0 1 2019-06-20 23:22:12.72772 2019-06-20 23:22:12.72772 768 \N \N \N 0 PV1-V-435 1 1299.00 0.00 \N \N 1033 256 2 699.0 1 2019-06-20 23:25:17.741885 2019-06-20 23:25:17.741885 769 \N \N \N 0 PV2-V-332 1 1000.00 301.00 \N \N 1034 257 2 1000.0 0 2019-06-21 00:01:49.332481 2019-06-21 00:01:49.332481 \N \N \N 106 2 \N 1 \N \N \N \N 1035 257 2 400.0 1 2019-06-21 00:02:47.884976 2019-06-21 00:02:47.922451 172 \N \N \N 3 \N 1 400.00 0.00 \N \N 1036 256 2 400.0 1 2019-06-21 00:10:53.856547 2019-06-21 00:10:53.856547 770 \N \N \N 6 PV2-V-333 1 400.00 0.00 \N \N 1037 257 2 1099.0 1 2019-06-21 00:28:28.053143 2019-06-21 00:28:28.053143 771 \N \N \N 0 PV1-V-436 1 1099.00 0.00 \N \N 1038 257 2 449.0 1 2019-06-21 00:54:36.182567 2019-06-21 00:54:36.182567 760 \N \N \N 7 \N 1 449.00 0.00 \N \N 1039 257 2 300.0 1 2019-06-21 01:13:50.431025 2019-06-21 01:13:50.469666 182 \N \N \N 3 \N 1 300.00 0.00 \N \N 1040 257 2 800.0 1 2019-06-21 01:29:50.932869 2019-06-21 01:29:50.932869 772 \N \N \N 3 \N 1 800.00 0.00 \N \N 1041 256 1 1198.0 1 2019-06-21 01:48:32.309977 2019-06-21 01:48:32.309977 773 229 \N \N 0 PV2-V-334 1 \N 0.00 \N \N 1050 258 2 100.0 0 2019-06-21 20:56:57.562925 2019-06-21 20:56:57.562925 \N \N \N 107 2 \N 1 \N \N \N \N 1043 259 2 1199.0 1 2019-06-21 17:05:54.546772 2019-06-21 17:05:54.546772 775 \N \N \N 0 PV1-V-439 1 1200.00 1.00 \N \N 1044 259 2 689.0 1 2019-06-21 18:12:15.917943 2019-06-21 18:12:15.917943 776 \N \N \N 0 PV1-V-440 1 800.00 111.00 \N \N 1046 258 4 350.0 1 2019-06-21 19:34:10.320366 2019-06-21 19:34:10.320366 777 1738 \N \N 0 PV2-V-335 1 \N 0.00 \N \N 1047 258 2 1088.0 1 2019-06-21 20:02:10.616965 2019-06-21 20:02:10.616965 778 \N \N \N 0 PV2-V-336 1 1200.00 112.00 \N \N 1049 259 1 599.0 1 2019-06-21 20:34:32.006414 2019-06-21 20:34:32.006414 700 587 \N \N 7 \N 1 \N 0.00 \N \N 1051 258 2 749.0 1 2019-06-21 21:42:26.180152 2019-06-21 21:42:26.180152 779 \N \N \N 0 PV2-V-337 1 800.00 51.00 \N \N 1052 \N 3 713.0 1 2019-06-22 02:04:28.691968 2019-06-22 02:04:28.757833 212 \N \N \N 3 \N 1 \N 0.00 \N \N 142568798758 1053 260 4 499.0 1 2019-06-22 16:45:02.919095 2019-06-22 16:45:02.919095 780 9413 \N \N 0 PV2-V-338 1 \N 0.00 \N \N 1054 261 2 1748.0 1 2019-06-22 17:33:05.247956 2019-06-22 17:33:05.247956 781 \N \N \N 0 PV1-V-441 1 1748.00 0.00 \N \N 1055 260 4 2296.0 1 2019-06-22 19:31:31.038264 2019-06-22 19:31:31.038264 782 4804 \N \N 0 PV2-V-339 1 \N 0.00 \N \N 1056 260 2 1199.0 1 2019-06-22 20:09:31.333402 2019-06-22 20:09:31.333402 783 \N \N \N 0 PV2-V-340 1 1200.00 1.00 \N \N 1057 260 2 390.0 1 2019-06-22 20:11:48.177514 2019-06-22 20:11:48.177514 784 \N \N \N 6 PV2-V-341 1 400.00 10.00 \N \N 1058 261 2 50.0 0 2019-06-22 20:48:09.243505 2019-06-22 20:48:09.243505 \N \N \N 108 2 \N 1 \N \N \N \N 1059 261 2 664.3 1 2019-06-22 21:00:30.203421 2019-06-22 21:00:30.203421 785 \N \N \N 0 PV1-V-442 1 664.30 0.00 \N \N 1060 260 2 699.0 1 2019-06-22 21:58:01.307318 2019-06-22 21:58:01.307318 786 \N \N \N 0 PV2-V-342 1 700.00 1.00 \N \N 1061 260 2 750.0 0 2019-06-22 22:37:53.873124 2019-06-22 22:37:53.873124 \N \N \N 109 2 \N 1 \N \N \N \N 1062 261 2 500.0 1 2019-06-22 23:52:14.099307 2019-06-22 23:52:14.099307 607 \N \N \N 4 \N 1 500.00 0.00 \N \N 1063 261 2 578.0 0 2019-06-23 01:57:42.264063 2019-06-23 01:57:42.264063 \N \N \N 110 2 \N 1 \N \N \N \N 1064 265 2 500.0 1 2019-06-24 23:21:06.509433 2019-06-24 23:21:06.509433 622 \N \N \N 4 \N 1 500.00 0.00 \N \N 1065 266 2 160.0 1 2019-06-25 18:51:17.278823 2019-06-25 18:51:17.278823 787 \N \N \N 6 PV2-V-343 1 160.00 0.00 \N \N 1066 267 2 1199.0 1 2019-06-25 19:03:15.746304 2019-06-25 19:03:15.746304 788 \N \N \N 0 PV1-V-443 1 1199.00 0.00 \N \N 1067 266 2 599.0 1 2019-06-25 23:15:39.735047 2019-06-25 23:15:39.735047 659 \N \N \N 7 \N 1 599.00 0.00 \N \N 1068 267 2 520.0 0 2019-06-25 23:33:48.309234 2019-06-25 23:33:48.309234 \N \N \N 111 2 \N 1 \N \N \N \N 1104 282 4 689.01 1 2019-07-03 18:01:40.861836 2019-07-03 18:01:40.861836 814 2895 \N \N 0 PV2-V-354 1 \N 0.00 \N \N 1071 270 2 625.0 1 2019-06-27 16:59:10.988145 2019-06-27 16:59:10.988145 790 \N \N \N 0 PV1-V-445 1 625.00 0.00 \N \N 1073 270 2 1249.0 1 2019-06-27 18:05:02.0006 2019-06-27 18:05:02.0006 792 \N \N \N 0 PV1-V-446 1 1249.00 0.00 \N \N 1074 268 2 489.0 1 2019-06-28 01:03:50.578483 2019-06-28 01:03:50.578483 793 \N \N \N 0 PV2-V-345 1 500.00 11.00 \N \N 1075 270 2 200.0 0 2019-06-28 01:45:55.147089 2019-06-28 01:45:55.147089 \N \N \N 112 2 \N 1 \N \N \N \N 1076 \N 3 300.0 1 2019-06-28 17:58:40.546388 2019-06-28 17:58:40.591428 712 \N \N \N 3 \N 1 \N 0.00 \N \N SAMANTHA 1077 271 2 50.0 0 2019-06-28 21:02:04.186215 2019-06-28 21:02:04.186215 \N \N \N 113 2 \N 1 \N \N \N \N 1078 271 4 1299.0 1 2019-06-28 23:31:39.87696 2019-06-28 23:31:39.87696 794 8319 \N \N 0 PV2-V-346 1 \N 0.00 \N \N 1079 272 2 550.0 0 2019-06-29 01:51:23.612454 2019-06-29 01:51:23.612454 \N \N \N 114 2 \N 1 \N \N \N \N 1080 273 2 749.0 1 2019-06-29 17:47:42.503125 2019-06-29 17:47:42.503125 795 \N \N \N 0 PV1-V-447 1 749.00 0.00 \N \N 1081 273 2 400.0 1 2019-06-29 19:43:48.226865 2019-06-29 19:43:48.226865 796 \N \N \N 0 PV1-V-448 1 400.00 0.00 \N \N 1082 274 2 1338.0 1 2019-06-29 21:41:44.278477 2019-06-29 21:41:44.278477 797 \N \N \N 0 PV2-V-347 1 1350.00 12.00 \N \N 1083 274 2 1119.0 1 2019-06-29 22:39:26.432481 2019-06-29 22:39:26.432481 708 \N \N \N 7 \N 1 1200.00 81.00 \N \N 1084 273 2 500.0 1 2019-06-29 22:43:15.729022 2019-06-29 22:43:15.729022 798 \N \N \N 6 PV1-V-449 1 500.00 0.00 \N \N 1085 274 4 869.0 1 2019-06-29 23:44:48.317926 2019-06-29 23:44:48.317926 799 9231 \N \N 0 PV2-V-348 1 \N 0.00 \N \N 1086 273 1 1399.0 1 2019-06-29 23:59:36.603597 2019-06-29 23:59:36.603597 800 3206 \N \N 0 PV1-V-450 1 \N 0.00 \N \N 1087 273 2 678.0 0 2019-06-30 00:06:34.471048 2019-06-30 00:06:34.471048 \N \N \N 115 2 \N 1 \N \N \N \N 1088 273 2 713.0 1 2019-06-30 01:19:08.10045 2019-06-30 01:19:08.10045 607 \N \N \N 7 \N 1 713.00 0.00 \N \N 1089 274 2 900.0 0 2019-06-30 01:40:49.236799 2019-06-30 01:40:49.236799 \N \N \N 116 2 \N 1 \N \N \N \N 1090 273 2 400.0 0 2019-06-30 01:48:43.860204 2019-06-30 01:48:43.860204 \N \N \N 117 2 \N 1 \N \N \N \N 1091 276 2 300.0 1 2019-06-30 18:41:07.313315 2019-06-30 18:41:07.313315 801 \N \N \N 6 PV1-V-451 1 500.00 200.00 \N \N 1092 277 3 479.0 1 2019-07-01 18:16:33.444719 2019-07-01 18:16:33.444719 802 \N \N \N 0 PV1-V-452 1 \N 0.00 \N \N SAMANTHA 1093 277 2 1399.0 1 2019-07-01 20:03:29.440451 2019-07-01 20:03:29.440451 803 \N \N \N 0 PV1-V-453 1 1399.00 0.00 \N \N 1094 277 2 659.0 1 2019-07-01 23:23:43.89054 2019-07-01 23:23:43.89054 804 \N \N \N 0 PV1-V-454 1 700.00 41.00 \N \N 1095 277 2 669.0 1 2019-07-02 01:28:55.409527 2019-07-02 01:28:55.409527 805 \N \N \N 0 PV1-V-455 1 1000.00 331.00 \N \N 1096 277 4 1299.0 1 2019-07-02 01:39:21.637588 2019-07-02 01:39:21.637588 806 6297 \N \N 0 PV1-V-456 1 \N 0.00 \N \N 1097 279 3 1049.3 1 2019-07-02 22:28:58.035318 2019-07-02 22:28:58.035318 807 \N \N \N 0 PV2-V-349 1 \N 0.00 \N \N SAM 1098 279 3 349.0 1 2019-07-02 22:40:24.298165 2019-07-02 22:40:24.298165 809 \N \N \N 0 PV2-V-350 1 \N 0.00 \N \N SUEL 1099 280 2 1199.0 1 2019-07-02 22:57:51.224662 2019-07-02 22:57:51.224662 810 \N \N \N 0 PV1-V-458 1 1200.00 1.00 \N \N 1100 279 2 869.0 1 2019-07-03 00:05:02.374433 2019-07-03 00:05:02.374433 811 \N \N \N 0 PV2-V-351 1 1000.00 131.00 \N \N 1101 279 2 889.0 1 2019-07-03 00:44:11.381039 2019-07-03 00:44:11.381039 812 \N \N \N 0 PV2-V-352 1 1000.00 111.00 \N \N 1102 281 2 1407.0 1 2019-07-03 02:12:50.412749 2019-07-03 02:12:50.412749 813 \N \N \N 0 PV2-V-353 1 1407.00 0.00 \N \N 1107 282 4 200.0 1 2019-07-03 21:13:09.56265 2019-07-03 21:13:09.61054 712 5548 \N \N 3 \N 1 \N 0.00 \N \N 1109 283 2 1698.0 1 2019-07-04 00:14:15.346407 2019-07-04 00:14:15.346407 798 \N \N \N 7 \N 1 1700.00 2.00 \N \N 1110 284 2 1049.0 1 2019-07-04 17:32:04.091878 2019-07-04 17:32:04.091878 818 \N \N \N 0 PV1-V-459 1 1049.00 0.00 \N \N 1111 284 2 500.0 1 2019-07-04 17:41:27.708264 2019-07-04 17:41:27.708264 819 \N \N \N 6 PV1-V-460 1 500.00 0.00 \N \N 1112 284 2 1478.0 1 2019-07-04 19:52:41.590926 2019-07-04 19:52:41.590926 820 \N \N \N 0 PV1-V-461 1 1478.00 0.00 \N \N 1113 285 2 50.0 0 2019-07-04 21:40:34.05268 2019-07-04 21:40:34.05268 \N \N \N 118 2 \N 1 \N \N \N \N 1114 284 2 800.0 0 2019-07-04 21:55:26.783339 2019-07-04 21:55:26.783339 \N \N \N 119 2 \N 1 \N \N \N \N 1115 284 3 1799.0 1 2019-07-05 00:34:37.480288 2019-07-05 00:34:37.480288 821 \N \N \N 0 PV1-V-462 1 \N 0.00 \N \N UNIVALE UNIVALE 1116 288 2 899.0 1 2019-07-05 17:18:57.70344 2019-07-05 17:18:57.70344 822 \N \N \N 0 PV2-V-358 1 900.00 1.00 \N \N 1117 287 2 589.0 1 2019-07-05 18:18:51.96087 2019-07-05 18:18:51.96087 823 \N \N \N 0 PV1-V-463 1 589.00 0.00 \N \N 1118 287 2 1092.0 1 2019-07-05 21:51:41.208413 2019-07-05 21:51:41.208413 731 \N \N \N 7 \N 1 1092.00 0.00 \N \N 1119 287 2 921.0 0 2019-07-05 22:07:08.208038 2019-07-05 22:07:08.208038 \N \N \N 120 2 \N 1 \N \N \N \N 1120 288 2 500.0 1 2019-07-05 22:11:17.945315 2019-07-05 22:11:17.979109 172 \N \N \N 3 \N 1 500.00 0.00 \N \N 1121 288 2 700.0 0 2019-07-05 22:12:24.891766 2019-07-05 22:12:24.891766 \N \N 10 121 2 \N 1 \N \N \N \N 1122 287 2 50.0 0 2019-07-05 22:20:19.83898 2019-07-05 22:20:19.83898 \N \N \N 122 2 \N 1 \N \N \N \N 1123 287 1 669.0 1 2019-07-06 00:49:08.013394 2019-07-06 00:49:08.013394 824 4963 \N \N 0 PV1-V-464 1 \N 0.00 \N \N 1124 287 1 810.0 1 2019-07-06 00:59:05.473323 2019-07-06 00:59:05.473323 825 7789 \N \N 0 PV1-V-465 1 \N 0.00 \N \N 1125 287 2 128.0 0 2019-07-06 02:02:27.149603 2019-07-06 02:02:27.149603 \N \N \N 123 2 \N 1 \N \N \N \N 1126 290 2 135.0 0 2019-07-06 16:41:39.872381 2019-07-06 16:41:39.872381 \N \N \N 124 2 \N 1 \N \N \N \N 1127 290 2 630.0 1 2019-07-07 00:30:48.787188 2019-07-07 00:30:48.787188 826 \N \N \N 0 PV1-V-466 1 630.00 0.00 \N \N 1128 294 2 1169.0 1 2019-07-08 17:25:48.733286 2019-07-08 17:25:48.733286 827 \N \N \N 0 PV2-V-359 1 1200.00 31.00 \N \N 1129 293 2 400.0 1 2019-07-08 20:13:00.594213 2019-07-08 20:13:00.594213 828 \N \N \N 6 PV1-V-467 1 400.00 0.00 \N \N 1130 295 2 600.0 1 2019-07-09 18:22:33.422492 2019-07-09 18:22:33.568104 18 \N \N \N 3 \N 1 600.00 0.00 \N \N 1131 295 2 1190.0 1 2019-07-09 20:20:30.936459 2019-07-09 20:20:30.936459 829 \N \N \N 0 PV1-V-468 1 1190.00 0.00 \N \N 1132 296 2 599.0 1 2019-07-09 21:29:20.188122 2019-07-09 21:29:20.188122 830 \N \N \N 0 PV2-V-360 1 600.00 1.00 \N \N 1133 295 1 1599.0 1 2019-07-10 00:23:27.510973 2019-07-10 00:23:27.510973 831 3788 \N \N 0 PV1-V-469 1 \N 0.00 \N \N 1134 298 4 799.0 1 2019-07-10 22:56:01.906422 2019-07-10 22:56:01.906422 832 9453 \N \N 0 PV1-V-470 1 \N 0.00 \N \N 1135 299 2 100.0 0 2019-07-11 20:11:59.114582 2019-07-11 20:11:59.114582 \N \N \N 125 2 \N 1 \N \N \N \N 1137 299 2 299.0 1 2019-07-12 00:09:35.564616 2019-07-12 00:09:35.564616 622 \N \N \N 7 \N 1 500.00 201.00 \N \N 1138 301 2 400.0 1 2019-07-12 18:01:58.318769 2019-07-12 18:01:58.318769 833 \N \N \N 6 PV1-V-471 1 400.00 0.00 \N \N 1139 301 5 1399.0 1 2019-07-12 22:26:43.141873 2019-07-12 22:26:43.141873 834 \N \N \N 0 PV1-V-472 1 \N 0.00 \N \N UNIVALE 0000NOBK 0000NOBK 1140 301 2 979.01 1 2019-07-13 00:50:54.31746 2019-07-13 00:50:54.31746 835 \N \N \N 0 PV1-V-473 1 979.01 0.00 \N \N 1141 301 2 550.0 0 2019-07-13 00:56:43.194664 2019-07-13 00:56:43.194664 \N \N \N 126 2 \N 1 \N \N \N \N 1142 303 2 500.0 1 2019-07-13 20:19:47.939614 2019-07-13 20:19:48.001539 712 \N \N \N 3 \N 1 500.00 0.00 \N \N 1143 304 4 599.0 1 2019-07-13 23:51:34.679126 2019-07-13 23:51:34.679126 837 5672 \N \N 0 PV2-V-361 1 \N 0.00 \N \N 1144 303 1 435.0 1 2019-07-13 23:55:59.379075 2019-07-13 23:55:59.379075 838 821 \N \N 0 PV1-V-475 1 \N 0.00 \N \N 1145 304 2 499.0 1 2019-07-14 00:06:34.480781 2019-07-14 00:06:34.480781 839 \N \N \N 0 PV2-V-362 1 499.00 0.00 \N \N 1146 303 2 449.0 1 2019-07-14 00:07:03.470529 2019-07-14 00:07:03.470529 840 \N \N \N 0 PV1-V-476 1 449.00 0.00 \N \N 1147 303 2 549.0 1 2019-07-14 00:46:51.794307 2019-07-14 00:46:51.794307 833 \N \N \N 7 \N 1 549.00 0.00 \N \N 1148 304 2 720.0 0 2019-07-14 01:54:03.736951 2019-07-14 01:54:03.736951 \N \N \N 127 2 \N 1 \N \N \N \N 1149 303 2 678.0 0 2019-07-14 01:55:43.543025 2019-07-14 01:55:43.543025 \N \N \N 128 2 \N 1 \N \N \N \N 1150 \N 3 420.0 1 2019-07-14 02:03:06.957404 2019-07-14 02:03:06.993987 182 \N \N \N 3 \N 1 \N 0.00 \N \N SAMANTHA 1151 \N 2 280.0 1 2019-07-14 02:04:17.628204 2019-07-14 02:04:17.673974 182 \N \N \N 3 \N 1 280.00 0.00 \N \N 1152 307 2 1298.0 1 2019-07-15 18:37:57.84477 2019-07-15 18:37:57.84477 841 \N \N \N 0 PV2-V-363 1 1400.00 102.00 \N \N 1153 307 2 1499.0 1 2019-07-15 23:51:07.127988 2019-07-15 23:51:07.127988 842 \N \N \N 0 PV2-V-364 1 1500.00 1.00 \N \N 1154 306 2 500.0 1 2019-07-16 00:53:56.779187 2019-07-16 00:53:56.779187 844 \N \N \N 6 PV1-V-478 1 500.00 0.00 \N \N 1155 306 2 170.0 0 2019-07-16 01:34:16.191909 2019-07-16 01:34:16.191909 \N \N \N 129 2 \N 1 \N \N \N \N 1156 309 2 1299.0 1 2019-07-16 20:55:10.173325 2019-07-16 20:55:10.173325 845 \N \N \N 0 PV1-V-479 1 1299.00 0.00 \N \N 1157 308 2 726.0 0 2019-07-17 01:54:34.040865 2019-07-17 01:54:34.040865 \N \N \N 130 2 \N 1 \N \N \N \N 1158 310 2 649.0 1 2019-07-17 16:45:50.987871 2019-07-17 16:45:50.987871 846 \N \N \N 0 PV1-V-480 1 649.00 0.00 \N \N 1159 310 2 699.0 1 2019-07-17 19:13:47.730617 2019-07-17 19:13:47.730617 847 \N \N \N 0 PV1-V-481 1 699.00 0.00 \N \N 1160 310 2 300.0 1 2019-07-17 19:35:26.217288 2019-07-17 19:35:26.217288 848 \N \N \N 0 PV1-V-482 1 300.00 0.00 \N \N 1161 310 2 999.0 1 2019-07-17 19:57:22.16674 2019-07-17 19:57:22.16674 849 \N \N \N 0 PV1-V-483 1 999.00 0.00 \N \N 1162 311 4 1299.0 1 2019-07-17 19:58:06.118315 2019-07-17 19:58:06.118315 850 5518 \N \N 0 PV2-V-365 1 \N 0.00 \N \N 1163 311 2 1549.0 1 2019-07-17 20:10:48.101592 2019-07-17 20:10:48.101592 851 \N \N \N 0 PV2-V-366 1 1600.00 51.00 \N \N 1164 310 2 899.0 1 2019-07-17 21:39:25.495274 2019-07-17 21:39:25.495274 819 \N \N \N 7 \N 1 899.00 0.00 \N \N 1165 310 2 699.0 1 2019-07-17 21:53:10.033192 2019-07-17 21:53:10.033192 852 \N \N \N 0 PV1-V-484 1 700.00 1.00 \N \N 1166 310 2 699.0 1 2019-07-17 22:20:10.471026 2019-07-17 22:20:10.471026 853 \N \N \N 0 PV1-V-485 1 699.00 0.00 \N \N 1167 310 2 1898.0 1 2019-07-18 01:08:05.627182 2019-07-18 01:08:05.627182 844 \N \N \N 7 \N 1 1898.00 0.00 \N \N 1168 310 2 549.0 1 2019-07-18 01:19:21.578325 2019-07-18 01:19:21.578325 854 \N \N \N 0 PV1-V-486 1 549.00 0.00 \N \N 1169 311 2 499.0 1 2019-07-18 01:24:30.537888 2019-07-18 01:24:30.537888 855 \N \N \N 0 PV2-V-367 1 499.00 0.00 \N \N 1170 310 2 749.0 1 2019-07-18 01:36:32.387421 2019-07-18 01:36:32.387421 856 \N \N \N 0 PV1-V-487 1 749.00 0.00 \N \N 1171 315 2 549.0 1 2019-07-19 19:34:37.940285 2019-07-19 19:34:37.940285 857 \N \N \N 0 PV1-V-488 1 549.00 0.00 \N \N 1173 315 2 50.0 0 2019-07-19 19:46:29.897876 2019-07-19 19:46:29.897876 \N \N \N 131 2 \N 1 \N \N \N \N 1174 314 2 929.0 1 2019-07-19 19:46:54.2056 2019-07-19 19:46:54.2056 860 \N \N \N 0 PV2-V-370 1 1000.00 71.00 \N \N 1175 314 2 850.0 0 2019-07-19 20:10:29.958254 2019-07-19 20:10:29.958254 \N \N \N 132 2 \N 1 \N \N \N \N 1176 315 2 1199.0 1 2019-07-19 21:01:59.270686 2019-07-19 21:01:59.270686 861 \N \N \N 0 PV1-V-489 1 1199.00 0.00 \N \N 1177 314 2 349.0 1 2019-07-19 21:09:34.086477 2019-07-19 21:09:34.086477 770 \N \N \N 7 \N 1 349.00 0.00 \N \N 1178 316 2 469.0 1 2019-07-20 16:30:37.36181 2019-07-20 16:30:37.36181 862 \N \N \N 0 PV2-V-371 1 500.00 31.00 \N \N 1179 317 1 1299.0 1 2019-07-20 17:30:29.383343 2019-07-20 17:30:29.383343 863 383 \N \N 0 PV1-V-490 1 \N 0.00 \N \N 1180 316 2 669.0 1 2019-07-20 17:57:45.626913 2019-07-20 17:57:45.626913 864 \N \N \N 0 PV2-V-372 1 700.00 31.00 \N \N 1181 317 5 2446.01 1 2019-07-20 18:30:08.280915 2019-07-20 18:30:08.280915 865 \N \N \N 0 PV1-V-491 1 \N 0.00 \N \N UNIVALE 0000OW9V 0000OW9V 1182 317 2 1299.0 1 2019-07-20 19:05:41.124871 2019-07-20 19:05:41.124871 866 \N \N \N 0 PV1-V-492 1 1299.00 0.00 \N \N 1183 316 2 279.0 1 2019-07-20 19:19:55.160845 2019-07-20 19:19:55.160845 867 \N \N \N 0 PV2-V-373 1 300.00 21.00 \N \N 1184 317 2 498.0 0 2019-07-20 22:00:06.09148 2019-07-20 22:00:06.09148 \N \N \N 133 2 \N 1 \N \N \N \N 1185 317 2 250.0 1 2019-07-20 23:14:54.854152 2019-07-20 23:14:54.854152 868 \N \N \N 6 PV1-V-493 1 250.00 0.00 \N \N 1186 316 2 669.0 1 2019-07-21 01:02:30.072983 2019-07-21 01:02:30.072983 869 \N \N \N 0 PV2-V-374 1 700.00 31.00 \N \N 1187 317 2 500.0 1 2019-07-21 01:12:30.360741 2019-07-21 01:12:30.360741 870 \N \N \N 6 PV1-V-494 1 500.00 0.00 \N \N 1188 318 4 699.0 1 2019-07-21 16:42:24.253382 2019-07-21 16:42:24.253382 871 1190 \N \N 0 PV1-V-495 1 \N 0.00 \N \N 1189 319 2 579.0 1 2019-07-21 19:01:53.864892 2019-07-21 19:01:53.864892 872 \N \N \N 0 PV2-V-375 1 600.00 21.00 \N \N 1190 318 2 699.0 1 2019-07-21 19:13:03.864369 2019-07-21 19:13:03.864369 873 \N \N \N 0 PV1-V-496 1 1000.00 301.00 \N \N 1191 318 2 399.2 1 2019-07-21 19:23:35.733688 2019-07-21 19:23:35.733688 874 \N \N \N 0 PV1-V-497 1 400.00 0.80 \N \N 1192 318 4 500.0 1 2019-07-21 20:09:09.852438 2019-07-21 20:09:09.852438 875 7381 \N \N 6 PV1-V-498 1 \N 0.00 \N \N 1193 318 4 699.0 1 2019-07-21 21:03:53.933721 2019-07-21 21:03:53.933721 876 9730 \N \N 0 PV1-V-499 1 \N 0.00 \N \N 1194 320 2 400.0 1 2019-07-22 18:02:42.396338 2019-07-22 18:02:42.396338 877 \N \N \N 6 PV1-V-500 1 400.00 0.00 \N \N 1195 320 2 250.0 0 2019-07-22 22:57:49.990976 2019-07-22 22:57:49.990976 \N \N \N 134 2 \N 1 \N \N \N \N 1196 321 2 298.0 1 2019-07-22 23:38:17.986049 2019-07-22 23:38:17.986049 879 \N \N \N 0 PV2-V-376 1 300.00 2.00 \N \N 1197 321 2 350.0 1 2019-07-23 00:18:36.931621 2019-07-23 00:18:36.931621 880 \N \N \N 0 PV2-V-377 1 350.00 0.00 \N \N 1198 320 2 295.0 1 2019-07-23 01:29:42.649799 2019-07-23 01:29:42.649799 881 \N \N \N 0 PV1-V-502 1 505.00 210.00 \N \N 1199 323 3 999.0 1 2019-07-23 17:26:40.739919 2019-07-23 17:26:40.79701 616 \N \N \N 3 \N 1 \N 0.00 \N \N SAMANTHA 1200 322 2 1149.0 1 2019-07-23 20:00:26.122219 2019-07-23 20:00:26.122219 882 \N \N \N 0 PV2-V-378 1 1200.00 51.00 \N \N 1201 323 2 1299.0 1 2019-07-23 20:05:41.644744 2019-07-23 20:05:41.644744 883 \N \N \N 0 PV1-V-503 1 1299.00 0.00 \N \N 1202 323 5 1799.0 1 2019-07-23 20:51:23.365384 2019-07-23 20:51:23.365384 884 \N \N \N 0 PV1-V-504 1 \N 0.00 \N \N UNIVALE 0000Q6RR 0000Q6RR 1203 322 3 300.0 1 2019-07-23 23:50:51.883629 2019-07-23 23:50:51.883629 885 \N \N \N 0 PV2-V-379 1 \N 0.00 \N \N SAMA 1204 325 2 1199.0 1 2019-07-24 16:22:26.63853 2019-07-24 16:22:26.63853 886 \N \N \N 0 PV1-V-505 1 1199.00 0.00 \N \N 1205 325 2 20.0 0 2019-07-24 16:34:50.065373 2019-07-24 16:34:50.065373 \N \N \N 135 2 \N 1 \N \N \N \N 1206 325 2 1868.0 1 2019-07-24 18:27:48.91035 2019-07-24 18:27:48.91035 887 \N \N \N 0 PV1-V-506 1 1868.00 0.00 \N \N 1207 324 2 999.0 1 2019-07-25 00:05:16.726668 2019-07-25 00:05:16.726668 888 \N \N \N 0 PV2-V-380 1 1000.00 1.00 \N \N 1208 325 2 360.0 1 2019-07-25 00:31:37.389667 2019-07-25 00:31:37.389667 889 \N \N \N 6 PV1-V-507 1 500.00 140.00 \N \N 1209 325 2 300.0 1 2019-07-25 00:43:39.945206 2019-07-25 00:43:39.945206 890 \N \N \N 6 PV1-V-508 1 300.00 0.00 \N \N 1210 324 2 649.0 1 2019-07-25 01:41:46.034589 2019-07-25 01:41:46.034589 891 \N \N \N 0 PV2-V-381 1 650.00 1.00 \N \N 1211 327 2 500.0 1 2019-07-25 16:55:11.745239 2019-07-25 16:55:11.797231 324 \N \N \N 3 \N 1 500.00 0.00 \N \N 1212 327 2 899.0 1 2019-07-25 18:07:11.35875 2019-07-25 18:07:11.35875 892 \N \N \N 0 PV1-V-509 1 899.00 0.00 \N \N 1213 327 2 1248.0 1 2019-07-25 18:36:46.342135 2019-07-25 18:36:46.342135 893 \N \N \N 0 PV1-V-510 1 1248.00 0.00 \N \N 1215 327 2 948.0 1 2019-07-25 19:39:43.738429 2019-07-25 19:39:43.738429 890 \N \N \N 7 \N 1 948.00 0.00 \N \N 1216 327 2 2470.0 1 2019-07-25 19:44:33.511938 2019-07-25 19:44:33.511938 895 \N \N \N 0 PV1-V-512 1 2470.00 0.00 \N \N 1217 326 2 50.0 0 2019-07-25 21:18:03.982924 2019-07-25 21:18:03.982924 \N \N \N 136 2 \N 1 \N \N \N \N 1218 326 2 519.2 1 2019-07-26 01:50:02.476722 2019-07-26 01:50:02.476722 896 \N \N \N 0 PV2-V-382 1 520.00 0.80 \N \N 1254 338 4 1399.0 1 2019-08-01 01:25:35.100094 2019-08-01 01:25:35.100094 921 4863 \N \N 0 PV1-V-530 1 \N 0.00 \N \N 1220 329 4 350.0 1 2019-07-26 21:20:11.708091 2019-07-26 21:20:11.708091 898 8359 \N \N 0 PV1-V-514 1 \N 0.00 \N \N 1221 329 2 309.0 1 2019-07-26 21:20:19.497087 2019-07-26 21:20:19.497087 898 \N \N \N 0 PV1-V-514 1 309.00 0.00 \N \N 1222 329 2 1318.0 1 2019-07-26 21:29:07.428272 2019-07-26 21:29:07.428272 899 \N \N \N 0 PV1-V-515 1 1500.00 182.00 \N \N 1223 329 4 1099.0 1 2019-07-26 22:00:42.305077 2019-07-26 22:00:42.305077 900 8359 \N \N 0 PV1-V-516 1 \N 0.00 \N \N 1224 329 2 628.0 0 2019-07-26 22:22:01.253662 2019-07-26 22:22:01.253662 \N \N \N 137 2 \N 1 \N \N \N \N 1225 329 2 200.0 1 2019-07-26 22:54:31.840109 2019-07-26 22:54:31.840109 901 \N \N \N 6 PV1-V-517 1 500.00 300.00 \N \N 1226 329 2 1399.0 1 2019-07-26 23:01:32.406665 2019-07-26 23:01:32.406665 902 \N \N \N 0 PV1-V-518 1 1500.00 101.00 \N \N 1227 329 4 689.0 1 2019-07-27 00:55:10.385387 2019-07-27 00:55:10.385387 903 385 \N \N 0 PV1-V-519 1 \N 0.00 \N \N 1228 328 2 909.0 1 2019-07-27 01:16:45.594074 2019-07-27 01:16:45.594074 784 \N \N \N 7 \N 1 1000.00 91.00 \N \N 1229 330 2 1199.0 1 2019-07-27 16:09:15.710679 2019-07-27 16:09:15.710679 828 \N \N \N 7 \N 1 1199.00 0.00 \N \N 1230 330 2 650.0 0 2019-07-27 16:17:08.314741 2019-07-27 16:17:08.314741 \N \N \N 138 2 \N 1 \N \N \N \N 1231 330 1 669.0 1 2019-07-27 18:44:27.616508 2019-07-27 18:44:27.616508 904 1391 \N \N 0 PV1-V-520 1 \N 0.00 \N \N 1232 331 2 469.0 1 2019-07-27 19:28:06.050336 2019-07-27 19:28:06.050336 905 \N \N \N 0 PV2-V-383 1 500.00 31.00 \N \N 1233 331 2 479.0 1 2019-07-27 19:31:09.381329 2019-07-27 19:31:09.381329 906 \N \N \N 0 PV2-V-384 1 500.00 21.00 \N \N 1234 330 1 599.0 1 2019-07-27 19:44:28.776603 2019-07-27 19:44:28.776603 907 7094 \N \N 0 PV1-V-521 1 \N 0.00 \N \N 1235 330 2 500.0 1 2019-07-27 19:55:28.751338 2019-07-27 19:55:28.751338 908 \N \N \N 6 PV1-V-522 1 500.00 0.00 \N \N 1236 331 4 729.0 1 2019-07-27 22:38:18.292481 2019-07-27 22:38:18.292481 909 3764 \N \N 0 PV2-V-385 1 \N 0.00 \N \N 1237 330 2 1078.0 1 2019-07-27 23:36:48.918707 2019-07-27 23:36:48.918707 910 \N \N \N 0 PV1-V-523 1 1078.00 0.00 \N \N 1240 331 2 999.0 1 2019-07-28 00:26:48.706199 2019-07-28 00:26:48.706199 912 \N \N \N 0 PV2-V-386 1 999.00 0.00 \N \N 1241 330 2 489.0 1 2019-07-28 01:01:33.434148 2019-07-28 01:01:33.434148 913 \N \N \N 0 PV1-V-525 1 489.00 0.00 \N \N 1242 330 2 280.0 0 2019-07-28 01:53:21.704449 2019-07-28 01:53:21.704449 \N \N \N 139 2 \N 1 \N \N \N \N 1243 333 2 499.0 1 2019-07-28 19:10:12.33015 2019-07-28 19:10:12.33015 914 \N \N \N 0 PV1-V-526 1 500.00 1.00 \N \N 1244 334 2 15.0 0 2019-07-29 21:29:53.812329 2019-07-29 21:29:53.812329 \N \N \N 140 2 \N 1 \N \N \N \N 1245 335 2 799.0 1 2019-07-30 18:03:06.828373 2019-07-30 18:03:06.828373 915 \N \N \N 0 PV2-V-387 1 1000.00 201.00 \N \N 1246 335 2 200.0 0 2019-07-30 19:49:03.208358 2019-07-30 19:49:03.208358 \N \N \N 141 2 \N 1 \N \N \N \N 1247 336 1 1299.0 1 2019-07-30 20:32:49.100388 2019-07-30 20:32:49.100388 916 8346 \N \N 0 PV1-V-527 1 \N 0.00 \N \N 1248 336 2 649.0 1 2019-07-30 20:47:26.611073 2019-07-30 20:47:26.611073 917 \N \N \N 0 PV1-V-528 1 649.00 0.00 \N \N 1249 335 2 469.0 1 2019-07-31 00:41:59.642552 2019-07-31 00:41:59.642552 918 \N \N \N 0 PV2-V-388 1 500.00 31.00 \N \N 1250 338 2 838.0 1 2019-07-31 18:56:35.697434 2019-07-31 18:56:35.697434 889 \N \N \N 7 \N 1 838.00 0.00 \N \N 1251 338 3 500.0 1 2019-07-31 19:46:15.301062 2019-07-31 19:46:15.383977 817 \N \N \N 3 \N 1 \N 0.00 \N \N SAMANTHA 1252 337 4 729.0 1 2019-07-31 23:22:42.791146 2019-07-31 23:22:42.791146 919 8715 \N \N 0 PV2-V-389 1 \N 0.00 \N \N 1253 338 2 50.0 0 2019-08-01 00:12:24.115936 2019-08-01 00:12:24.115936 \N \N \N 142 2 \N 1 \N \N \N \N 1255 337 2 669.0 1 2019-08-01 01:35:53.208049 2019-08-01 01:35:53.208049 922 \N \N \N 0 PV2-V-390 1 700.00 31.00 \N \N 1256 339 1 999.0 1 2019-08-01 17:48:06.94591 2019-08-01 17:48:06.94591 923 5099 \N \N 0 PV2-V-391 1 \N 0.00 \N \N 1257 340 2 899.0 1 2019-08-01 23:26:02.323886 2019-08-01 23:26:02.323886 908 \N \N \N 7 \N 1 1000.00 101.00 \N \N 1258 340 2 400.0 1 2019-08-01 23:53:16.232177 2019-08-01 23:53:16.232177 925 \N \N \N 6 PV1-V-532 1 500.00 100.00 \N \N 1259 340 2 50.0 0 2019-08-02 02:03:58.076999 2019-08-02 02:03:58.076999 \N \N \N 143 2 \N 1 \N \N \N \N 1260 341 2 200.0 1 2019-08-02 18:08:04.702102 2019-08-02 18:08:04.702102 875 \N \N \N 4 \N 1 200.00 0.00 \N \N 1261 341 3 1000.0 1 2019-08-02 18:31:07.721986 2019-08-02 18:31:07.767576 808 \N \N \N 3 \N 1 \N 0.00 \N \N SAMANTHA 1262 341 2 628.0 0 2019-08-02 22:02:15.104281 2019-08-02 22:02:15.104281 \N \N \N 144 2 \N 1 \N \N \N \N 1263 341 2 400.0 1 2019-08-02 22:05:41.013571 2019-08-02 22:05:41.058893 182 \N \N \N 3 \N 1 400.00 0.00 \N \N 1264 341 2 699.0 1 2019-08-03 00:25:25.192489 2019-08-03 00:25:25.192489 926 \N \N \N 0 PV1-V-533 1 700.00 1.00 \N \N 1266 341 3 999.0 1 2019-08-03 00:44:29.463602 2019-08-03 00:44:29.463602 927 \N \N \N 0 PV1-V-534 1 \N 0.00 \N \N DEVOLUCION 1267 341 2 800.0 1 2019-08-03 01:46:06.065959 2019-08-03 01:46:06.107447 172 \N \N \N 3 \N 1 800.00 0.00 \N \N 1269 341 2 800.0 0 2019-08-03 01:48:15.29839 2019-08-03 01:48:15.29839 \N \N \N 146 2 \N 1 \N \N \N \N 1270 342 2 700.0 0 2019-08-03 01:59:32.766341 2019-08-03 01:59:32.766341 \N \N \N 147 2 \N 1 \N \N \N \N 1272 344 2 999.0 1 2019-08-03 17:02:14.917238 2019-08-03 17:02:14.917238 928 \N \N \N 0 PV1-V-535 1 999.00 0.00 \N \N 1273 343 1 699.0 1 2019-08-03 18:39:25.881481 2019-08-03 18:39:25.881481 929 8714 \N \N 0 PV2-V-392 1 \N 0.00 \N \N 1274 344 2 1270.0 1 2019-08-03 19:07:53.797097 2019-08-03 19:07:53.797097 930 \N \N \N 0 PV1-V-536 1 1270.00 0.00 \N \N 1275 343 2 389.0 1 2019-08-04 00:12:46.61557 2019-08-04 00:12:46.61557 787 \N \N \N 7 \N 1 400.00 11.00 \N \N 1276 343 2 150.0 1 2019-08-04 00:18:47.921515 2019-08-04 00:18:47.921515 931 \N \N \N 6 PV2-V-393 0 150.00 0.00 \N \N 1277 344 4 999.0 1 2019-08-04 01:01:03.337231 2019-08-04 01:01:03.337231 932 2047 \N \N 0 PV1-V-537 1 \N 0.00 \N \N 1278 344 1 899.0 1 2019-08-04 01:03:40.341335 2019-08-04 01:03:40.341335 933 2349 \N \N 0 PV1-V-538 1 \N 0.00 \N \N 1279 343 4 829.0 1 2019-08-04 01:05:56.830768 2019-08-04 01:05:56.830768 934 2047 \N \N 0 PV2-V-394 1 \N 0.00 \N \N 1280 344 2 50.0 0 2019-08-04 01:07:29.859641 2019-08-04 01:07:29.859641 \N \N \N 148 2 \N 1 \N \N \N \N 1281 343 2 150.0 1 2019-08-04 01:11:18.021912 2019-08-04 01:11:18.021912 935 \N \N \N 6 PV2-V-395 1 150.00 0.00 \N \N 1282 343 4 489.0 1 2019-08-04 01:15:43.897446 2019-08-04 01:15:43.897446 936 2047 \N \N 0 PV2-V-396 1 \N 0.00 \N \N 1283 343 2 50.0 0 2019-08-04 01:45:27.97213 2019-08-04 01:45:27.97213 \N \N \N 149 2 \N 1 \N \N \N \N 1284 347 2 250.0 1 2019-08-05 16:26:30.941189 2019-08-05 16:26:30.941189 937 \N \N \N 0 PV1-V-539 1 250.00 0.00 \N \N 1285 347 1 1299.0 1 2019-08-05 23:31:40.172137 2019-08-05 23:31:40.172137 939 3082 \N \N 0 PV1-V-541 1 \N 0.00 \N \N 1286 347 1 350.0 1 2019-08-06 01:05:57.741546 2019-08-06 01:05:57.741546 940 5225 \N \N 0 PV1-V-542 1 \N 0.00 \N \N 1287 347 1 349.0 1 2019-08-06 01:06:35.222949 2019-08-06 01:06:35.222949 940 4880 \N \N 0 PV1-V-542 1 \N 0.00 \N \N 1288 348 2 649.0 1 2019-08-06 20:04:52.868726 2019-08-06 20:04:52.868726 941 \N \N \N 0 PV2-V-397 1 649.00 0.00 \N \N 1289 351 2 50.0 0 2019-08-07 20:27:50.475781 2019-08-07 20:27:50.475781 \N \N \N 150 2 \N 1 \N \N \N \N 1290 351 2 200.0 1 2019-08-07 23:57:30.082795 2019-08-07 23:57:30.082795 942 \N \N \N 6 PV2-V-398 1 200.00 0.00 \N \N 1291 350 2 180.0 1 2019-08-08 00:12:11.904209 2019-08-08 00:12:11.904209 943 \N \N \N 6 PV1-V-543 1 180.00 0.00 \N \N 1292 352 2 569.0 1 2019-08-08 21:06:44.320387 2019-08-08 21:06:44.320387 944 \N \N \N 0 PV1-V-544 1 569.00 0.00 \N \N 1293 352 2 370.0 0 2019-08-08 21:18:43.010394 2019-08-08 21:18:43.010394 \N \N \N 151 2 \N 1 \N \N \N \N 1294 352 2 314.0 1 2019-08-08 21:55:05.761156 2019-08-08 21:55:05.761156 945 \N \N \N 6 PV1-V-545 1 314.00 0.00 \N \N 1296 352 2 500.0 1 2019-08-09 01:31:23.142014 2019-08-09 01:31:23.142014 870 \N \N \N 4 \N 1 500.00 0.00 \N \N 1297 354 2 599.0 1 2019-08-09 19:01:34.28769 2019-08-09 19:01:34.28769 946 \N \N \N 0 PV2-V-399 1 599.00 0.00 \N \N 1298 354 2 399.0 1 2019-08-09 22:01:25.502486 2019-08-09 22:01:25.502486 942 \N \N \N 7 \N 1 500.00 101.00 \N \N 1299 355 2 419.0 1 2019-08-09 22:02:59.217866 2019-08-09 22:02:59.217866 943 \N \N \N 7 \N 1 419.00 0.00 \N \N 1300 355 4 2268.0 1 2019-08-10 00:30:10.844898 2019-08-10 00:30:10.844898 947 6827 \N \N 0 PV1-V-546 1 \N 0.00 \N \N 1301 354 2 850.0 0 2019-08-10 01:17:16.085498 2019-08-10 01:17:16.085498 \N \N \N 152 2 \N 1 \N \N \N \N 1302 355 2 50.0 0 2019-08-10 01:27:28.50513 2019-08-10 01:27:28.50513 \N \N \N 153 2 \N 1 \N \N \N \N 1303 357 2 200.0 1 2019-08-10 19:40:18.774251 2019-08-10 19:40:18.774251 875 \N \N \N 4 \N 1 200.00 0.00 \N \N 1304 357 2 200.0 1 2019-08-10 19:50:35.763137 2019-08-10 19:50:35.763137 948 \N \N \N 6 PV1-V-547 1 200.00 0.00 \N \N 1305 357 2 50.0 0 2019-08-10 21:15:30.262124 2019-08-10 21:15:30.262124 \N \N \N 154 2 \N 1 \N \N \N \N 1306 357 3 1800.0 1 2019-08-10 22:38:52.48494 2019-08-10 22:38:52.542024 172 \N \N \N 3 \N 1 \N 0.00 \N \N CREDITO SAM 1307 357 3 400.0 1 2019-08-10 22:39:52.767133 2019-08-10 22:39:52.812021 182 \N \N \N 3 \N 1 \N 0.00 \N \N CREDITO SAM 1308 357 2 1099.0 1 2019-08-10 23:12:29.587002 2019-08-10 23:12:29.587002 949 \N \N \N 0 PV1-V-548 1 1099.00 0.00 \N \N 1309 357 2 749.0 0 2019-08-10 23:19:08.140298 2019-08-10 23:19:08.140298 \N \N \N 155 2 \N 1 \N \N \N \N 1310 357 2 250.0 1 2019-08-11 01:03:28.432754 2019-08-11 01:03:28.432754 950 \N \N \N 6 PV1-V-549 1 250.00 0.00 \N \N 1311 357 1 732.0 1 2019-08-11 01:08:11.188192 2019-08-11 01:08:11.188192 951 5294 \N \N 0 PV1-V-550 1 \N 0.00 \N \N 1312 358 2 1623.0 1 2019-08-11 16:36:14.606888 2019-08-11 16:36:14.606888 953 \N \N \N 0 PV1-V-552 1 2000.00 377.00 \N \N 1313 360 2 549.0 1 2019-08-12 20:16:40.307311 2019-08-12 20:16:40.307311 954 \N \N \N 0 PV2-V-400 1 600.00 51.00 \N \N 1314 359 2 250.0 1 2019-08-12 23:52:47.958413 2019-08-12 23:52:47.958413 868 \N \N \N 4 \N 1 250.00 0.00 \N \N 1315 361 2 200.0 1 2019-08-13 19:04:08.142154 2019-08-13 19:04:08.142154 955 \N \N \N 0 PV1-V-553 1 200.00 0.00 \N \N 1316 361 4 2037.0 1 2019-08-13 19:04:43.043024 2019-08-13 19:04:43.043024 955 7964 \N \N 0 PV1-V-553 1 \N 0.00 \N \N 1317 362 1 829.0 1 2019-08-14 01:05:22.618298 2019-08-14 01:05:22.618298 956 7790 \N \N 0 PV2-V-401 1 \N 0.00 \N \N 1318 363 2 899.0 1 2019-08-14 18:14:54.66283 2019-08-14 18:14:54.66283 957 \N \N \N 0 PV2-V-402 1 899.00 0.00 \N \N 1319 363 4 1000.0 1 2019-08-14 18:15:13.326394 2019-08-14 18:15:13.326394 957 8553 \N \N 0 PV2-V-402 1 \N 0.00 \N \N 1320 363 2 1099.0 1 2019-08-14 20:50:24.434752 2019-08-14 20:50:24.434752 958 \N \N \N 0 PV2-V-403 1 1100.00 1.00 \N \N 1321 363 2 1149.0 1 2019-08-14 21:15:57.804428 2019-08-14 21:15:57.804428 959 \N \N \N 0 PV2-V-404 1 1200.00 51.00 \N \N 1322 363 2 449.0 1 2019-08-14 22:25:01.756163 2019-08-14 22:25:01.756163 960 \N \N \N 0 PV2-V-405 1 500.00 51.00 \N \N 1323 364 2 699.0 1 2019-08-14 22:34:08.358808 2019-08-14 22:34:08.358808 961 \N \N \N 0 PV1-V-554 1 699.00 0.00 \N \N 1324 366 2 560.0 1 2019-08-15 18:40:42.207763 2019-08-15 18:40:42.207763 962 \N \N \N 0 PV1-V-555 1 560.00 0.00 \N \N 1325 366 4 499.0 1 2019-08-15 20:41:09.092472 2019-08-15 20:41:09.092472 963 8108 \N \N 0 PV1-V-556 1 \N 0.00 \N \N 1326 365 2 200.0 0 2019-08-16 00:55:38.223627 2019-08-16 00:55:38.223627 \N \N \N 156 2 \N 1 \N \N \N \N 1327 366 2 1000.0 0 2019-08-16 01:04:01.916079 2019-08-16 01:04:01.916079 \N \N \N 157 2 \N 1 \N \N \N \N 1328 367 4 669.0 1 2019-08-16 20:05:27.973343 2019-08-16 20:05:27.973343 964 9112 \N \N 0 PV1-V-557 1 \N 0.00 \N \N 1329 367 2 350.0 1 2019-08-16 20:51:45.55322 2019-08-16 20:51:45.59393 836 \N \N \N 3 \N 1 350.00 0.00 \N \N 1330 367 2 1017.99 1 2019-08-17 01:03:45.387049 2019-08-17 01:03:45.387049 966 \N \N \N 0 PV1-V-559 1 1017.99 0.00 \N \N 1331 367 2 160.0 0 2019-08-17 01:08:44.69078 2019-08-17 01:08:44.69078 \N \N \N 158 2 \N 1 \N \N \N \N 1332 368 2 50.0 0 2019-08-17 01:33:27.501369 2019-08-17 01:33:27.501369 \N \N 11 159 2 \N 1 \N \N \N \N 1333 370 2 205.0 1 2019-08-17 21:02:19.042933 2019-08-17 21:02:19.042933 967 \N \N \N 0 PV1-V-560 1 205.00 0.00 \N \N 1334 370 1 1358.0 1 2019-08-17 21:19:09.33184 2019-08-17 21:19:09.33184 968 7198 \N \N 0 PV1-V-561 1 \N 0.00 \N \N 1335 370 2 290.0 0 2019-08-17 21:30:51.725366 2019-08-17 21:30:51.725366 \N \N \N 160 2 \N 1 \N \N \N \N 1336 370 1 1268.0 1 2019-08-17 22:10:13.917573 2019-08-17 22:10:13.917573 969 820 \N \N 0 PV1-V-562 1 \N 0.00 \N \N 1337 370 5 200.0 1 2019-08-17 22:38:53.127366 2019-08-17 22:38:53.127366 970 \N \N \N 0 PV1-V-563 1 \N 0.00 \N \N vale por devolucion 0000 0000 1338 370 2 1099.0 1 2019-08-17 22:40:03.099884 2019-08-17 22:40:03.099884 970 \N \N \N 0 PV1-V-563 1 1099.00 0.00 \N \N 1339 370 2 928.0 0 2019-08-17 22:57:24.353574 2019-08-17 22:57:24.353574 \N \N \N 161 2 \N 1 \N \N \N \N 1340 370 2 400.0 1 2019-08-17 23:38:26.504908 2019-08-17 23:38:26.538699 182 \N \N \N 3 \N 1 400.00 0.00 \N \N 1341 369 2 50.0 0 2019-08-18 01:02:38.018462 2019-08-18 01:02:38.018462 \N \N \N 162 2 \N 1 \N \N \N \N 1342 370 2 400.0 0 2019-08-18 01:28:39.521297 2019-08-18 01:28:39.521297 \N \N \N 163 2 \N 1 \N \N \N \N 1343 371 2 999.0 1 2019-08-18 19:17:54.709122 2019-08-18 19:17:54.709122 971 \N \N \N 0 PV1-V-564 1 1000.00 1.00 \N \N 1344 372 2 250.0 1 2019-08-19 18:04:52.761974 2019-08-19 18:04:52.761974 972 \N \N \N 6 PV1-V-565 1 250.00 0.00 \N \N 1345 373 2 250.0 1 2019-08-19 18:06:27.989025 2019-08-19 18:06:27.989025 973 \N \N \N 6 PV2-V-406 1 250.00 0.00 \N \N 1346 372 1 732.0 1 2019-08-19 18:45:32.680941 2019-08-19 18:45:32.680941 974 6976 \N \N 0 PV1-V-565 1 \N 0.00 \N \N 1347 373 2 999.0 1 2019-08-20 00:51:59.452519 2019-08-20 00:51:59.452519 975 \N \N \N 0 PV2-V-407 1 999.00 0.00 \N \N 1348 373 2 200.0 0 2019-08-20 00:55:30.406106 2019-08-20 00:55:30.406106 \N \N \N 164 2 \N 1 \N \N \N \N 1349 374 2 557.1 1 2019-08-21 00:27:28.158996 2019-08-21 00:27:28.158996 976 \N \N \N 0 PV2-V-408 1 600.00 42.90 \N \N 1350 376 4 829.0 1 2019-08-21 18:00:35.114857 2019-08-21 18:00:35.114857 977 2957 \N \N 0 PV2-V-409 1 \N 0.00 \N \N 1351 375 2 528.99 1 2019-08-21 20:10:26.291395 2019-08-21 20:10:26.291395 978 \N \N \N 0 PV1-V-567 1 528.99 0.00 \N \N 1352 375 2 249.0 1 2019-08-21 23:18:29.247346 2019-08-21 23:18:29.247346 901 \N \N \N 7 \N 1 249.00 0.00 \N \N 1353 375 2 869.0 1 2019-08-21 23:39:48.798591 2019-08-21 23:39:48.798591 979 \N \N \N 0 PV1-V-568 1 869.00 0.00 \N \N 1354 375 2 799.0 1 2019-08-22 01:13:36.568534 2019-08-22 01:13:36.568534 801 \N \N \N 7 \N 1 799.00 0.00 \N \N 1355 375 2 200.0 1 2019-08-22 01:18:44.556753 2019-08-22 01:18:44.556753 980 \N \N \N 6 PV1-V-569 1 200.00 0.00 \N \N 1356 377 2 999.0 1 2019-08-22 17:11:37.206373 2019-08-22 17:11:37.206373 981 \N \N \N 0 PV1-V-570 1 1000.00 1.00 \N \N 1358 377 2 489.0 1 2019-08-22 22:34:32.756562 2019-08-22 22:34:32.756562 983 \N \N \N 0 PV1-V-572 1 489.00 0.00 \N \N 1359 378 2 639.0 1 2019-08-22 22:59:26.482977 2019-08-22 22:59:26.482977 984 \N \N \N 0 PV2-V-410 1 700.00 61.00 \N \N 1360 377 2 50.0 0 2019-08-23 00:48:24.587496 2019-08-23 00:48:24.587496 \N \N \N 165 2 \N 1 \N \N \N \N 1362 379 2 500.0 1 2019-08-23 18:37:29.060838 2019-08-23 18:37:29.060838 986 \N \N \N 6 PV2-V-412 1 500.00 0.00 \N \N 1363 379 2 500.0 0 2019-08-23 22:11:01.543186 2019-08-23 22:11:01.543186 \N \N \N 166 2 \N 1 \N \N \N \N 1364 380 2 300.0 1 2019-08-23 23:57:25.872083 2019-08-23 23:57:25.872083 987 \N \N \N 6 PV1-V-573 1 300.00 0.00 \N \N 1365 380 2 350.0 0 2019-08-24 00:33:32.623414 2019-08-24 00:33:32.623414 \N \N \N 167 2 \N 1 \N \N \N \N 1366 380 2 400.0 1 2019-08-24 00:38:12.91771 2019-08-24 00:38:12.954943 182 \N \N \N 3 \N 1 400.00 0.00 \N \N 1367 381 2 1299.0 1 2019-08-24 16:43:45.418284 2019-08-24 16:43:45.418284 988 \N \N \N 0 PV2-V-413 1 1300.00 1.00 \N \N 1368 381 2 499.0 1 2019-08-24 17:28:51.566783 2019-08-24 17:28:51.566783 989 \N \N \N 0 PV2-V-414 1 500.00 1.00 \N \N 1369 382 4 649.0 1 2019-08-24 20:15:49.930381 2019-08-24 20:15:49.930381 950 8669 \N \N 7 \N 1 \N 0.00 \N \N 1370 382 2 498.0 1 2019-08-24 22:36:38.599433 2019-08-24 22:36:38.599433 870 \N \N \N 7 \N 1 498.00 0.00 \N \N 1371 381 2 49.0 1 2019-08-24 23:47:03.443931 2019-08-24 23:47:03.443931 990 \N \N \N 0 PV2-V-415 1 100.00 51.00 \N \N 1372 381 2 49.0 1 2019-08-24 23:50:23.7923 2019-08-24 23:50:23.7923 991 \N \N \N 0 PV2-V-416 1 50.00 1.00 \N \N 1373 382 2 489.0 1 2019-08-25 00:57:59.170995 2019-08-25 00:57:59.170995 993 \N \N \N 0 PV1-V-575 1 489.00 0.00 \N \N 1374 384 2 699.0 1 2019-08-26 18:39:06.18076 2019-08-26 18:39:06.18076 994 \N \N \N 0 PV1-V-576 1 700.00 1.00 \N \N 1375 385 2 100.0 0 2019-08-27 22:05:56.559946 2019-08-27 22:05:56.559946 \N \N \N 168 2 \N 1 \N \N \N \N 1376 387 2 699.0 1 2019-08-28 04:02:30.601505 2019-08-28 04:02:30.601505 995 \N \N \N 0 PV3-V-1 1 700.00 1.00 \N \N 1377 388 2 1398.0 1 2019-08-29 00:12:24.036443 2019-08-29 00:12:24.036443 996 \N \N \N 0 PV2-V-417 1 1400.00 2.00 \N \N 1378 390 2 500.0 1 2019-08-29 18:21:30.324764 2019-08-29 18:21:30.324764 986 \N \N \N 4 \N 1 500.00 0.00 \N \N 1379 390 2 200.0 0 2019-08-29 20:10:52.220103 2019-08-29 20:10:52.220103 \N \N \N 169 2 \N 1 \N \N \N \N 1380 390 2 1138.0 1 2019-08-30 01:07:49.232891 2019-08-30 01:07:49.232891 997 \N \N \N 0 PV2-V-418 1 1150.00 12.00 \N \N 1381 393 2 869.0 1 2019-08-30 17:05:53.799424 2019-08-30 17:05:53.799424 998 \N \N \N 0 PV1-V-577 1 869.00 0.00 \N \N 1382 393 2 399.0 1 2019-08-30 17:18:17.071726 2019-08-30 17:18:17.071726 875 \N \N \N 7 \N 1 399.00 0.00 \N \N 1383 393 2 500.0 1 2019-08-30 20:21:32.929077 2019-08-30 20:21:32.98926 171 \N \N \N 3 \N 1 500.00 0.00 \N \N 1384 393 2 699.0 1 2019-08-30 22:41:12.485955 2019-08-30 22:41:12.485955 999 \N \N \N 0 PV1-V-578 1 699.00 0.00 \N \N 1385 393 2 620.0 0 2019-08-30 22:49:30.861891 2019-08-30 22:49:30.861891 \N \N \N 170 2 \N 1 \N \N \N \N 1386 393 2 1500.0 0 2019-08-30 23:32:42.701644 2019-08-30 23:32:42.701644 \N \N \N 171 2 \N 1 \N \N \N \N 1387 392 2 1398.0 1 2019-08-30 23:42:48.116021 2019-08-30 23:42:48.116021 1000 \N \N \N 0 PV2-V-419 1 1500.00 102.00 \N \N 1388 394 2 300.0 1 2019-08-31 03:45:07.569544 2019-08-31 03:45:07.569544 1001 \N \N \N 6 PV3-V-2 1 300.00 0.00 \N \N 1389 394 2 300.0 1 2019-08-31 03:53:38.317357 2019-08-31 03:53:38.317357 1002 \N \N \N 6 PV3-V-3 1 300.00 0.00 \N \N 1390 396 2 98.0 1 2019-08-31 16:55:02.826611 2019-08-31 16:55:02.826611 1004 \N \N \N 0 PV2-V-421 1 98.00 0.00 \N \N 1392 396 2 619.0 1 2019-08-31 17:04:12.71826 2019-08-31 17:04:12.71826 1006 \N \N \N 0 PV2-V-423 1 619.00 0.00 \N \N 1393 395 2 20.0 0 2019-08-31 17:10:10.199769 2019-08-31 17:10:10.199769 \N \N \N 172 2 \N 1 \N \N \N \N 1394 395 2 999.0 1 2019-08-31 18:04:33.947317 2019-08-31 18:04:33.947317 1007 \N \N \N 0 PV1-V-579 1 999.00 0.00 \N \N 1395 395 2 1098.0 1 2019-08-31 18:56:00.498952 2019-08-31 18:56:00.498952 1008 \N \N \N 0 PV1-V-580 1 1098.00 0.00 \N \N 1396 395 4 1299.0 1 2019-08-31 20:58:44.324291 2019-08-31 20:58:44.324291 1009 77 \N \N 0 PV1-V-581 1 \N 0.00 \N \N 1397 395 4 1499.0 1 2019-08-31 21:20:03.787653 2019-08-31 21:20:03.787653 1010 9156 \N \N 0 PV1-V-582 1 \N 0.00 \N \N 1399 \N 2 200.0 1 2019-08-31 21:58:06.561649 2019-08-31 21:58:06.561649 1012 \N \N \N 6 PV2-V-425 1 200.00 0.00 \N \N 1400 395 2 1270.0 1 2019-08-31 22:54:25.413435 2019-08-31 22:54:25.413435 1013 \N \N \N 0 PV1-V-583 1 1270.00 0.00 \N \N 1401 395 2 899.0 1 2019-08-31 23:31:12.041501 2019-08-31 23:31:12.041501 925 \N \N \N 7 \N 1 899.00 0.00 \N \N 1403 395 2 1328.0 0 2019-09-01 01:16:44.229995 2019-09-01 01:16:44.229995 \N \N \N 174 2 \N 1 \N \N \N \N 1404 395 2 300.0 1 2019-09-01 01:17:55.274963 2019-09-01 01:17:55.311703 182 \N \N \N 3 \N 1 300.00 0.00 \N \N 1405 397 2 1599.0 1 2019-09-01 03:09:39.102748 2019-09-01 03:09:39.102748 1014 \N \N \N 0 PV3-V-4 1 1599.00 0.00 \N \N 1406 397 2 699.0 1 2019-09-01 03:10:28.013368 2019-09-01 03:10:28.013368 1015 \N \N \N 0 PV3-V-5 1 699.00 0.00 \N \N 1407 397 2 936.0 1 2019-09-01 03:11:20.940668 2019-09-01 03:11:20.940668 1016 \N \N \N 0 PV3-V-6 1 936.00 0.00 \N \N 1408 397 2 400.0 1 2019-09-01 03:19:39.551692 2019-09-01 03:19:39.551692 1017 \N \N \N 3 \N 1 400.00 0.00 \N \N 1409 397 2 699.0 1 2019-09-01 03:20:13.64763 2019-09-01 03:20:13.64763 1018 \N \N \N 0 PV3-V-8 1 699.00 0.00 \N \N 1410 397 2 999.0 1 2019-09-01 03:20:47.151886 2019-09-01 03:20:47.151886 1019 \N \N \N 0 PV3-V-9 1 999.00 0.00 \N \N 1411 397 2 70.0 1 2019-09-01 03:25:38.995778 2019-09-01 03:25:38.995778 1020 \N \N \N 6 PV3-V-10 1 70.00 0.00 \N \N 1412 399 2 210.0 1 2019-09-01 19:47:31.287061 2019-09-01 19:47:31.287061 1021 \N \N \N 6 PV2-V-426 1 210.00 0.00 \N \N 1413 401 2 450.0 1 2019-09-02 17:33:26.677684 2019-09-02 17:33:26.677684 1022 \N \N \N 0 PV1-V-584 1 450.00 0.00 \N \N 1414 401 4 1393.0 1 2019-09-02 17:33:51.064712 2019-09-02 17:33:51.064712 1022 614 \N \N 0 PV1-V-584 1 \N 0.00 \N \N 1415 401 2 200.0 1 2019-09-02 17:39:18.509147 2019-09-02 17:39:18.509147 1023 \N \N \N 6 PV1-V-585 1 200.00 0.00 \N \N 1416 400 2 489.0 1 2019-09-02 19:35:50.650362 2019-09-02 19:35:50.650362 1021 \N \N \N 7 \N 1 500.00 11.00 \N \N 1417 400 2 549.0 1 2019-09-02 22:34:24.646173 2019-09-02 22:34:24.646173 1024 \N \N \N 0 PV2-V-427 1 549.00 0.00 \N \N 1418 401 2 2797.0 1 2019-09-03 00:11:28.21762 2019-09-03 00:11:28.21762 1025 \N \N \N 0 PV1-V-586 1 2797.00 0.00 \N \N 1419 401 2 679.0 1 2019-09-03 00:18:08.789953 2019-09-03 00:18:08.789953 1026 \N \N \N 0 PV1-V-587 1 679.00 0.00 \N \N 1420 401 2 579.0 1 2019-09-03 00:20:33.518535 2019-09-03 00:20:33.518535 1027 \N \N \N 0 PV1-V-588 1 579.00 0.00 \N \N 1421 402 4 479.0 1 2019-09-03 20:15:04.300223 2019-09-03 20:15:04.300223 1028 3276 \N \N 0 PV2-V-428 1 \N 0.00 \N \N 1422 403 4 1197.0 1 2019-09-03 20:17:31.027285 2019-09-03 20:17:31.027285 1029 3276 \N \N 0 PV1-V-589 1 \N 0.00 \N \N 1423 402 2 100.0 0 2019-09-03 21:50:47.09357 2019-09-03 21:50:47.09357 \N \N \N 175 2 \N 1 \N \N \N \N 1424 402 3 1000.0 1 2019-09-03 22:35:42.074705 2019-09-03 22:35:42.108827 808 \N \N \N 3 \N 1 \N 0.00 \N \N 142568798758 1425 402 2 500.0 1 2019-09-04 00:07:25.42539 2019-09-04 00:07:25.42539 1030 \N \N \N 6 PV2-V-429 1 500.00 0.00 \N \N 1426 406 3 400.0 1 2019-09-04 18:45:19.670072 2019-09-04 18:45:19.709753 836 \N \N \N 3 \N 1 \N 0.00 \N \N 12 1427 405 2 250.0 1 2019-09-04 20:58:19.273201 2019-09-04 20:58:19.273201 1031 \N \N \N 6 PV1-V-590 1 250.00 0.00 \N \N 1428 406 2 1060.0 1 2019-09-04 22:49:13.990116 2019-09-04 22:49:13.990116 1032 \N \N \N 0 PV2-V-430 1 1060.00 0.00 \N \N 1429 406 1 200.0 1 2019-09-04 22:49:40.339806 2019-09-04 22:49:40.339806 1032 1111 \N \N 0 PV2-V-430 1 \N 0.00 \N \N 1430 408 5 1599.0 1 2019-09-05 16:59:24.151433 2019-09-05 16:59:24.151433 1033 \N \N \N 0 PV1-V-591 1 \N 0.00 \N \N UNIVALE QW4E UNIVALE 1431 409 2 400.0 1 2019-09-05 18:03:57.760506 2019-09-05 18:03:57.760506 1034 \N \N \N 6 PV3-V-11 1 400.00 0.00 \N \N 1432 407 2 699.0 1 2019-09-05 20:36:12.599802 2019-09-05 20:36:12.599802 1035 \N \N \N 0 PV2-V-431 1 699.00 0.00 \N \N 1433 408 2 699.0 1 2019-09-06 00:24:44.418927 2019-09-06 00:24:44.418927 1036 \N \N \N 0 PV1-V-592 1 700.00 1.00 \N \N 1434 411 5 958.0 1 2019-09-06 17:15:17.112641 2019-09-06 17:15:17.112641 1037 \N \N \N 0 PV1-V-593 1 \N 0.00 \N \N UNIVALE QWEQ UNIVALE 1435 411 2 1000.0 0 2019-09-06 20:05:55.274151 2019-09-06 20:05:55.274151 \N \N \N 176 2 \N 1 \N \N \N \N 1436 411 2 300.0 1 2019-09-06 20:06:18.589114 2019-09-06 20:06:18.623786 182 \N \N \N 3 \N 1 300.00 0.00 \N \N 1437 411 1 499.0 1 2019-09-06 20:17:42.510391 2019-09-06 20:17:42.510391 1038 4294 \N \N 0 PV1-V-594 1 \N 0.00 \N \N 1438 410 2 999.0 1 2019-09-06 22:05:32.574843 2019-09-06 22:05:32.574843 1039 \N \N \N 0 PV2-V-432 1 999.00 0.00 \N \N 1439 410 2 98.99 1 2019-09-06 23:33:14.865898 2019-09-06 23:33:14.865898 1040 \N \N \N 0 PV2-V-433 1 98.99 0.00 \N \N 1440 409 1 1549.0 1 2019-09-07 00:26:31.355383 2019-09-07 00:26:31.355383 1041 5536 \N \N 0 PV3-V-12 1 \N 0.00 \N \N 1441 409 2 299.0 1 2019-09-07 00:29:47.659783 2019-09-07 00:29:47.659783 1042 \N \N \N 0 PV3-V-13 1 299.00 0.00 \N \N 1442 410 2 850.0 0 2019-09-07 01:16:38.127694 2019-09-07 01:16:38.127694 \N \N \N 177 2 \N 1 \N \N \N \N 1443 409 2 816.0 0 2019-09-07 01:51:03.762491 2019-09-07 01:51:03.762491 \N \N \N 178 2 \N 1 \N \N \N \N 1444 412 2 134.0 1 2019-09-07 16:16:32.142951 2019-09-07 16:16:32.142951 1045 \N \N \N 6 PV1-V-597 1 134.00 0.00 \N \N 1445 412 2 366.0 1 2019-09-07 16:49:18.979618 2019-09-07 16:49:18.979618 945 \N \N \N 4 \N 1 366.00 0.00 \N \N 1447 412 2 100.0 1 2019-09-07 16:58:13.999944 2019-09-07 16:58:13.999944 948 \N \N \N 4 \N 1 100.00 0.00 \N \N 1448 413 2 999.0 1 2019-09-07 17:29:05.900618 2019-09-07 17:29:05.900618 1046 \N \N \N 0 PV3-V-14 1 1000.00 1.00 \N \N 1449 413 2 699.0 1 2019-09-07 17:30:11.637294 2019-09-07 17:30:11.637294 1047 \N \N \N 0 PV3-V-15 1 700.00 1.00 \N \N 1450 412 2 1099.0 1 2019-09-07 18:34:13.967503 2019-09-07 18:34:13.967503 1048 \N \N \N 0 PV1-V-598 1 1099.00 0.00 \N \N 1451 412 2 699.0 1 2019-09-07 18:49:56.688436 2019-09-07 18:49:56.688436 1049 \N \N \N 0 PV1-V-599 1 699.00 0.00 \N \N 1452 413 2 1398.0 1 2019-09-07 19:39:28.265815 2019-09-07 19:39:28.265815 1050 \N \N \N 0 PV3-V-16 1 1500.00 102.00 \N \N 1453 414 2 140.0 1 2019-09-07 22:53:14.043531 2019-09-07 22:53:14.043531 1051 \N \N \N 6 PV2-V-434 1 200.00 60.00 \N \N 1454 412 2 669.0 1 2019-09-07 22:53:28.748986 2019-09-07 22:53:28.748986 1052 \N \N \N 0 PV1-V-600 1 669.00 0.00 \N \N 1455 414 2 1398.0 1 2019-09-08 00:06:47.571344 2019-09-08 00:06:47.571344 1053 \N \N \N 0 PV2-V-435 1 1500.00 102.00 \N \N 1456 412 2 349.0 1 2019-09-08 00:23:46.344017 2019-09-08 00:23:46.344017 987 \N \N \N 7 \N 1 500.00 151.00 \N \N 1457 417 4 820.0 1 2019-09-09 17:40:57.187407 2019-09-09 17:40:57.187407 1054 1111 \N \N 0 PV3-V-17 1 \N 0.00 \N \N 1458 415 2 699.0 1 2019-09-09 20:46:44.916939 2019-09-09 20:46:44.916939 1055 \N \N \N 0 PV1-V-601 1 699.00 0.00 \N \N 1459 417 2 469.0 1 2019-09-09 23:36:35.274836 2019-09-09 23:36:35.274836 1057 \N \N \N 0 PV3-V-18 1 500.00 31.00 \N \N 1460 417 2 746.0 1 2019-09-10 00:44:50.4818 2019-09-10 00:44:50.4818 1059 \N \N \N 0 PV3-V-20 1 800.00 54.00 \N \N 1461 416 2 20.0 0 2019-09-10 01:03:23.526937 2019-09-10 01:03:23.526937 \N \N \N 179 2 \N 1 \N \N \N \N 1463 417 2 200.0 1 2019-09-10 01:30:29.509736 2019-09-10 01:30:29.509736 1060 \N \N \N 6 PV3-V-21 1 200.00 0.00 \N \N 1464 417 2 200.0 1 2019-09-10 02:28:55.999533 2019-09-10 02:28:55.999533 1062 \N \N \N 6 PV3-V-23 1 200.00 0.00 \N \N 1465 417 2 1646.0 1 2019-09-10 02:52:01.893712 2019-09-10 02:52:01.893712 1063 \N \N \N 0 PV3-V-24 1 2000.00 354.00 \N \N 1466 418 2 979.01 1 2019-09-10 17:19:02.952645 2019-09-10 17:19:02.952645 1064 \N \N \N 0 PV3-V-25 1 1000.00 20.99 \N \N 1467 419 2 500.0 1 2019-09-10 18:30:07.691966 2019-09-10 18:30:07.691966 986 \N \N \N 4 \N 1 500.00 0.00 \N \N 1468 420 2 500.0 1 2019-09-10 22:22:32.697166 2019-09-10 22:22:32.697166 1065 \N \N \N 6 PV1-V-602 1 500.00 0.00 \N \N 1469 419 2 80.0 1 2019-09-10 22:35:40.142349 2019-09-10 22:35:40.142349 1032 \N \N \N 5 \N 1 200.00 120.00 12 \N 1470 419 3 299.0 1 2019-09-10 23:06:45.309781 2019-09-10 23:06:45.309781 935 \N \N \N 7 \N 1 \N 0.00 \N \N SBD 1471 420 2 10.0 0 2019-09-11 01:12:06.203439 2019-09-11 01:12:06.203439 \N \N \N 180 2 \N 1 \N \N \N \N 1472 421 2 699.3 1 2019-09-11 17:08:41.556389 2019-09-11 17:08:41.556389 1066 \N \N \N 0 PV2-V-437 1 800.00 100.70 \N \N 1473 421 2 479.0 1 2019-09-11 17:45:17.163709 2019-09-11 17:45:17.163709 1067 \N \N \N 0 PV2-V-438 1 480.00 1.00 \N \N 1474 421 2 469.0 1 2019-09-11 20:26:05.341374 2019-09-11 20:26:05.341374 1068 \N \N \N 0 PV2-V-439 1 500.00 31.00 \N \N 1475 421 2 520.0 0 2019-09-11 23:49:16.571636 2019-09-11 23:49:16.571636 \N \N 13 181 2 \N 1 \N \N \N \N 1477 421 2 300.0 1 2019-09-12 00:33:33.518702 2019-09-12 00:33:33.518702 1070 \N \N \N 6 PV2-V-441 1 300.00 0.00 \N \N 1479 423 2 599.0 1 2019-09-12 01:52:19.610146 2019-09-12 01:52:19.610146 1072 \N \N \N 0 PV3-V-27 1 599.00 0.00 \N \N 1480 423 2 100.0 0 2019-09-12 01:53:15.793189 2019-09-12 01:53:15.793189 \N \N \N 182 2 \N 1 \N \N \N \N 1481 424 2 1149.0 1 2019-09-12 20:07:05.048424 2019-09-12 20:07:05.048424 1073 \N \N \N 0 PV2-V-442 1 1150.00 1.00 \N \N 1482 425 2 699.0 1 2019-09-12 23:33:48.474423 2019-09-12 23:33:48.474423 868 \N \N \N 7 \N 1 699.00 0.00 \N \N 1483 425 2 299.0 1 2019-09-13 00:10:31.778948 2019-09-13 00:10:31.778948 1074 \N \N \N 0 PV1-V-603 1 299.00 0.00 \N \N 1484 425 2 700.0 0 2019-09-13 00:12:14.125025 2019-09-13 00:12:14.125025 \N \N \N 183 2 \N 1 \N \N \N \N 1485 425 2 569.0 1 2019-09-13 00:37:47.443299 2019-09-13 00:37:47.443299 1075 \N \N \N 0 PV1-V-604 1 700.00 131.00 \N \N 1486 426 2 498.0 1 2019-09-13 01:14:50.097466 2019-09-13 01:14:50.097466 1077 \N \N \N 3 \N 1 498.00 0.00 \N \N 1487 425 2 200.0 1 2019-09-13 01:15:05.167332 2019-09-13 01:15:05.167332 1078 \N \N \N 0 PV1-V-605 1 200.00 0.00 \N \N 1488 426 2 10.0 1 2019-09-13 02:02:37.557588 2019-09-13 02:02:37.557588 1077 \N \N \N 3 \N 1 10.00 0.00 \N \N 1489 427 2 610.0 1 2019-09-13 18:29:33.326135 2019-09-13 18:29:33.326135 1079 \N \N \N 0 PV2-V-443 1 610.00 0.00 \N \N 1490 427 1 479.0 1 2019-09-13 18:29:49.69187 2019-09-13 18:29:49.69187 1079 1111 \N \N 0 PV2-V-443 1 \N 0.00 \N \N 1491 427 3 400.0 1 2019-09-13 19:14:16.62038 2019-09-13 19:14:16.652506 836 \N \N \N 3 \N 1 \N 0.00 \N \N 1234 1492 427 2 675.0 1 2019-09-13 19:28:22.371791 2019-09-13 19:28:22.371791 1080 \N \N \N 0 PV2-V-444 1 675.00 0.00 \N \N 1493 428 1 1299.0 1 2019-09-13 20:22:13.474693 2019-09-13 20:22:13.474693 1081 7338 \N \N 0 PV1-V-606 1 \N 0.00 \N \N 1494 428 2 579.0 1 2019-09-13 20:53:13.199941 2019-09-13 20:53:13.199941 1082 \N \N \N 0 PV1-V-607 1 579.00 0.00 \N \N 1495 428 2 325.0 1 2019-09-13 20:58:51.674175 2019-09-13 20:58:51.674175 1083 \N \N \N 0 PV1-V-608 1 325.00 0.00 \N \N 1496 428 2 679.0 1 2019-09-13 21:35:02.450822 2019-09-13 21:35:02.450822 1084 \N \N \N 0 PV1-V-609 1 679.00 0.00 \N \N 1497 427 1 1188.0 1 2019-09-13 22:07:14.14146 2019-09-13 22:07:14.14146 1085 1111 \N \N 0 PV2-V-445 1 \N 0.00 \N \N 1498 428 2 440.0 0 2019-09-13 22:26:02.413495 2019-09-13 22:26:02.413495 \N \N \N 184 2 \N 1 \N \N \N \N 1499 429 2 625.0 1 2019-09-14 01:57:48.606833 2019-09-14 01:57:48.606833 1086 \N \N \N 0 PV2-V-446 1 625.00 0.00 \N \N 1500 430 2 899.0 1 2019-09-14 16:27:14.271797 2019-09-14 16:27:14.271797 1087 \N \N \N 0 PV1-V-610 1 899.00 0.00 \N \N 1501 431 2 600.0 1 2019-09-14 17:56:41.2137 2019-09-14 17:56:41.2137 1089 \N \N \N 6 PV3-V-31 1 600.00 0.00 \N \N 1502 432 2 299.0 1 2019-09-14 18:02:31.013586 2019-09-14 18:02:31.013586 986 \N \N \N 7 \N 1 299.00 0.00 \N \N 1503 430 2 1199.0 1 2019-09-14 18:29:47.776325 2019-09-14 18:29:47.776325 1090 \N \N \N 0 PV1-V-611 1 1199.00 0.00 \N \N 1504 430 2 1738.0 1 2019-09-14 19:06:04.570072 2019-09-14 19:06:04.570072 1091 \N \N \N 0 PV1-V-612 1 1738.00 0.00 \N \N 1505 432 2 639.0 1 2019-09-14 19:40:49.445558 2019-09-14 19:40:49.445558 1092 \N \N \N 0 PV2-V-447 1 1000.00 361.00 \N \N 1506 430 2 500.0 1 2019-09-14 20:11:39.432482 2019-09-14 20:11:39.464524 171 \N \N \N 3 \N 1 500.00 0.00 \N \N 1507 432 2 1987.0 1 2019-09-14 20:25:16.139558 2019-09-14 20:25:16.139558 1093 \N \N \N 0 PV2-V-448 1 2000.00 13.00 \N \N 1508 430 4 619.0 1 2019-09-14 20:33:12.568671 2019-09-14 20:33:12.568671 1031 39 \N \N 7 \N 1 \N 0.00 \N \N 1509 430 2 1249.0 1 2019-09-14 20:39:01.214462 2019-09-14 20:39:01.214462 1094 \N \N \N 0 PV1-V-613 1 1249.00 0.00 \N \N 1510 430 2 528.0 0 2019-09-14 20:57:24.53881 2019-09-14 20:57:24.53881 \N \N \N 185 2 \N 1 \N \N \N \N 1511 430 2 459.0 1 2019-09-14 21:12:40.434375 2019-09-14 21:12:40.493651 182 \N \N \N 3 \N 1 459.00 0.00 \N \N 1512 430 2 30.0 1 2019-09-14 21:24:54.376226 2019-09-14 21:24:54.376226 1052 \N \N \N 5 \N 1 30.00 0.00 13 \N 1513 431 2 1599.0 1 2019-09-14 22:26:36.452488 2019-09-14 22:26:36.452488 1096 \N \N \N 0 PV3-V-32 1 2000.00 401.00 \N \N 1514 432 2 150.0 1 2019-09-14 22:40:40.472662 2019-09-14 22:40:40.472662 1098 \N \N \N 6 PV2-V-450 1 150.00 0.00 \N \N 1515 432 2 0 1 2019-09-14 22:41:22.378944 2019-09-14 22:41:22.378944 1098 \N \N \N 4 \N 1 0.00 0.00 \N \N 1516 432 2 1.0 1 2019-09-14 22:41:39.223993 2019-09-14 22:41:39.223993 1098 \N \N \N 4 \N 1 1.00 0.00 \N \N 1446 412 2 100.0 1 2019-09-07 16:57:22.119699 2019-09-07 16:57:22.119699 1045 \N \N \N 4 \N 1 100.00 0.00 \N \N 1663 480 2 300.0 1 2019-10-05 23:10:50.430888 2019-10-05 23:10:50.461153 180 \N \N \N 3 \N 1 300.00 0.00 \N \N 1959 576 4 899.0 1 2019-11-12 20:17:43.26173 2019-11-12 20:17:43.26173 1382 0 \N \N 7 \N 1 \N 0.00 \N \N 1517 431 2 1399.0 1 2019-09-15 00:01:22.741471 2019-09-15 00:01:22.741471 1099 \N \N \N 0 PV3-V-33 1 1500.00 101.00 \N \N 1519 432 2 1299.0 1 2019-09-15 00:27:23.144515 2019-09-15 00:27:23.144515 1100 \N \N \N 0 PV2-V-451 1 1500.00 201.00 \N \N 1520 432 2 2498.0 1 2019-09-15 00:36:51.721065 2019-09-15 00:36:51.721065 1102 \N \N \N 0 PV2-V-453 1 2600.00 102.00 \N \N 1521 432 2 639.0 1 2019-09-15 00:43:38.448662 2019-09-15 00:43:38.448662 1103 \N \N \N 0 PV2-V-454 1 650.00 11.00 \N \N 1522 433 2 679.0 1 2019-09-15 17:14:44.362808 2019-09-15 17:14:44.362808 1104 \N \N \N 0 PV1-V-615 1 700.00 21.00 \N \N 1523 435 4 625.0 1 2019-09-15 19:19:28.984965 2019-09-15 19:19:28.984965 1105 7872 \N \N 0 PV2-V-455 1 \N 0.00 \N \N 1524 \N 2 1600.0 1 2019-09-17 18:06:02.202179 2019-09-17 18:06:02.274802 324 \N \N \N 3 \N 1 1600.00 0.00 \N \N 1525 434 1 699.0 1 2019-09-17 19:48:59.004672 2019-09-17 19:48:59.004672 1106 1111 \N \N 0 PV3-V-34 1 \N 0.00 \N \N 1526 434 2 500.0 1 2019-09-17 19:59:58.465628 2019-09-17 19:59:58.523977 1017 \N \N \N 3 \N 1 500.00 0.00 \N \N 1527 436 2 1600.0 1 2019-09-18 01:24:25.411017 2019-09-18 01:24:25.483061 522 \N \N \N 3 \N 1 1600.00 0.00 \N \N 1528 438 2 49.0 1 2019-09-18 18:24:34.293087 2019-09-18 18:24:34.293087 1109 \N \N \N 0 PV1-V-616 1 49.00 0.00 \N \N 1529 438 2 550.0 1 2019-09-18 18:36:57.20234 2019-09-18 18:36:57.20234 1110 \N \N \N 0 PV1-V-617 1 550.00 0.00 \N \N 1530 438 1 1299.0 1 2019-09-18 19:27:14.147458 2019-09-18 19:27:14.147458 1111 4395 \N \N 0 PV1-V-618 1 \N 0.00 \N \N 1531 438 2 759.0 1 2019-09-18 23:32:49.705389 2019-09-18 23:32:49.705389 1112 \N \N \N 0 PV1-V-619 1 759.00 0.00 \N \N 1532 438 2 449.0 1 2019-09-19 00:40:47.574631 2019-09-19 00:40:47.574631 1113 \N \N \N 0 PV1-V-620 1 449.00 0.00 \N \N 1533 441 2 400.0 1 2019-09-19 16:30:34.98154 2019-09-19 16:30:34.98154 1115 \N \N \N 6 PV2-V-457 1 400.00 0.00 \N \N 1534 440 2 1299.0 1 2019-09-19 21:02:30.98812 2019-09-19 21:02:30.98812 1116 \N \N \N 0 PV1-V-621 1 1299.00 0.00 \N \N 1535 440 2 699.0 1 2019-09-19 21:05:32.876324 2019-09-19 21:05:32.876324 1117 \N \N \N 0 PV1-V-622 1 699.00 0.00 \N \N 1536 442 2 200.0 1 2019-09-19 23:01:56.174784 2019-09-19 23:01:56.174784 1118 \N \N \N 6 PV3-V-37 1 200.00 0.00 \N \N 1537 440 2 500.0 0 2019-09-20 00:53:50.334818 2019-09-20 00:53:50.334818 \N \N \N 186 2 \N 1 \N \N \N \N 1538 443 2 639.0 1 2019-09-20 16:34:45.830736 2019-09-20 16:34:45.830736 1119 \N \N \N 0 PV1-V-623 1 700.00 61.00 \N \N 1539 444 2 699.0 1 2019-09-20 16:57:33.676909 2019-09-20 16:57:33.676909 1120 \N \N \N 0 PV3-V-38 1 700.00 1.00 \N \N 1540 441 2 649.0 1 2019-09-20 19:56:33.266625 2019-09-20 19:56:33.266625 1121 \N \N \N 0 PV2-V-458 1 1000.00 351.00 \N \N 1541 443 1 1598.0 1 2019-09-20 21:02:54.40212 2019-09-20 21:02:54.40212 1122 4213 \N \N 0 PV1-V-624 1 \N 0.00 \N \N 1542 444 1 799.0 1 2019-09-20 22:35:13.690045 2019-09-20 22:35:13.690045 1123 7782 \N \N 0 PV3-V-39 1 \N 0.00 \N \N 1543 441 2 1169.0 1 2019-09-21 00:51:16.893481 2019-09-21 00:51:16.893481 1124 \N \N \N 0 PV2-V-459 1 1500.00 331.00 \N \N 1544 445 2 699.0 1 2019-09-21 17:44:18.286552 2019-09-21 17:44:18.286552 1125 \N \N \N 0 PV2-V-460 1 699.00 0.00 \N \N 1545 446 2 639.0 1 2019-09-21 17:45:17.222778 2019-09-21 17:45:17.222778 1126 \N \N \N 0 PV1-V-625 1 639.00 0.00 \N \N 1546 446 2 200.0 1 2019-09-21 18:27:54.69097 2019-09-21 18:27:54.69097 948 \N \N \N 4 \N 1 200.00 0.00 \N \N 1547 446 4 198.0 1 2019-09-21 18:30:39.988683 2019-09-21 18:30:39.988683 1127 4284 \N \N 0 PV1-V-626 1 \N 0.00 \N \N 1548 446 2 738.0 0 2019-09-21 20:09:55.100351 2019-09-21 20:09:55.100351 \N \N \N 187 2 \N 1 \N \N \N \N 1549 446 2 300.0 1 2019-09-21 20:10:19.845971 2019-09-21 20:10:19.879373 180 \N \N \N 3 \N 1 300.00 0.00 \N \N 1550 447 1 1099.0 1 2019-09-21 20:12:50.047641 2019-09-21 20:12:50.047641 1002 1111 \N \N 7 \N 1 \N 0.00 \N \N 1551 447 1 279.0 1 2019-09-21 20:13:59.365419 2019-09-21 20:13:59.365419 1020 1111 \N \N 7 \N 1 \N 0.00 \N \N 1552 446 2 999.0 1 2019-09-21 22:32:18.995979 2019-09-21 22:32:18.995979 1128 \N \N \N 0 PV1-V-627 1 999.00 0.00 \N \N 1553 446 1 699.0 1 2019-09-21 22:34:44.81217 2019-09-21 22:34:44.81217 1129 456 \N \N 0 PV1-V-628 1 \N 0.00 \N \N 1554 445 2 400.0 1 2019-09-21 22:39:19.522843 2019-09-21 22:39:19.522843 1130 \N \N \N 6 PV2-V-461 1 400.00 0.00 \N \N 1555 446 1 649.0 1 2019-09-21 23:16:10.401636 2019-09-21 23:16:10.401636 1131 2899 \N \N 0 PV1-V-629 1 \N 0.00 \N \N 1556 446 5 525.0 1 2019-09-22 00:05:18.269344 2019-09-22 00:05:18.269344 1132 \N \N \N 0 PV1-V-630 1 \N 0.00 \N \N UNIVALE 0000MD8W 0000MD8W 1557 445 2 1199.0 1 2019-09-22 00:44:44.998595 2019-09-22 00:44:44.998595 1133 \N \N \N 0 PV2-V-462 1 1500.00 301.00 \N \N 1558 445 2 80.0 0 2019-09-22 01:19:10.871677 2019-09-22 01:19:10.871677 \N \N 12 188 2 \N 1 \N \N \N \N 1559 445 2 1500.0 0 2019-09-22 01:22:47.315227 2019-09-22 01:22:47.315227 \N \N \N 189 2 \N 1 \N \N \N \N 1568 451 2 199.0 1 2019-09-24 01:07:52.310998 2019-09-24 01:07:52.310998 1140 \N \N \N 7 \N 1 199.00 0.00 \N \N 1561 448 2 1599.0 1 2019-09-22 20:19:47.276306 2019-09-22 20:19:47.276306 1135 \N \N \N 0 PV3-V-40 1 1600.00 1.00 \N \N 1562 451 2 1299.0 1 2019-09-23 17:52:35.967321 2019-09-23 17:52:35.967321 1136 \N \N \N 0 PV2-V-463 1 1500.00 201.00 \N \N 1563 451 2 1029.0 1 2019-09-23 20:51:48.340151 2019-09-23 20:51:48.340151 1137 \N \N \N 0 PV2-V-464 1 1029.00 0.00 \N \N 1564 451 2 500.0 1 2019-09-24 00:02:07.47642 2019-09-24 00:02:07.47642 1030 \N \N \N 4 \N 1 500.00 0.00 \N \N 1565 451 2 897.0 1 2019-09-24 00:42:29.955898 2019-09-24 00:42:29.955898 1138 \N \N \N 0 PV2-V-465 1 1000.00 103.00 \N \N 1566 451 1 639.0 1 2019-09-24 01:03:59.288176 2019-09-24 01:03:59.288176 1139 1233 \N \N 0 PV2-V-466 1 \N 0.00 \N \N 1567 451 2 500.0 1 2019-09-24 01:06:56.516069 2019-09-24 01:06:56.516069 1140 \N \N \N 6 PV2-V-467 1 500.00 0.00 \N \N 1569 452 1 350.0 1 2019-09-24 19:07:12.446414 2019-09-24 19:07:12.446414 1141 6498 \N \N 6 PV1-V-632 1 \N 0.00 \N \N 1570 452 1 699.0 1 2019-09-24 19:09:32.188945 2019-09-24 19:09:32.188945 1142 6498 \N \N 0 PV1-V-633 1 \N 0.00 \N \N 1571 454 5 464.25 1 2019-09-25 01:25:14.397082 2019-09-25 01:25:14.397082 1143 \N \N \N 0 PV2-V-468 1 \N 0.00 \N \N UNIVALE 0000KQ10 0000KQ10 1572 452 5 1350.01 1 2019-09-25 01:28:27.352713 2019-09-25 01:28:27.352713 1144 \N \N \N 0 PV1-V-634 1 \N 0.00 \N \N UNIVALE 0000KQ1O UNIVALE 1573 455 2 669.0 1 2019-09-25 16:28:53.365003 2019-09-25 16:28:53.365003 1145 \N \N \N 0 PV1-V-635 1 669.00 0.00 \N \N 1574 455 2 300.0 1 2019-09-25 22:58:53.898837 2019-09-25 22:58:53.898837 1146 \N \N \N 6 PV1-V-636 1 300.00 0.00 \N \N 1575 456 2 299.0 1 2019-09-26 16:29:47.810749 2019-09-26 16:29:47.810749 1147 \N \N \N 0 PV3-V-41 1 300.00 1.00 \N \N 1576 458 2 1469.0 1 2019-09-26 18:30:24.364838 2019-09-26 18:30:24.364838 1148 \N \N \N 0 PV2-V-469 1 1500.00 31.00 \N \N 1577 457 2 1099.0 1 2019-09-26 19:07:34.949816 2019-09-26 19:07:34.949816 1149 \N \N \N 0 PV1-V-637 1 1100.00 1.00 \N \N 1578 456 2 751.0 1 2019-09-26 19:37:16.283347 2019-09-26 19:37:16.283347 1150 \N \N \N 0 PV3-V-42 1 1000.00 249.00 \N \N 1579 457 4 1270.0 1 2019-09-26 20:41:56.408162 2019-09-26 20:41:56.408162 1151 3214 \N \N 0 PV1-V-638 1 \N 0.00 \N \N 1580 457 1 1199.0 1 2019-09-26 21:31:19.623579 2019-09-26 21:31:19.623579 1152 2517 \N \N 0 PV1-V-639 1 \N 0.00 \N \N 1581 456 2 200.0 0 2019-09-26 22:41:11.582929 2019-09-26 22:41:11.582929 1118 \N \N \N 0 \N 1 \N \N \N \N 1583 456 1 639.0 1 2019-09-26 23:30:48.240295 2019-09-26 23:30:48.240295 1155 0 \N \N 0 PV3-V-45 1 \N 0.00 \N \N 1584 457 1 1270.0 1 2019-09-26 23:57:16.128003 2019-09-26 23:57:16.128003 1156 2560 \N \N 0 PV1-V-640 1 \N 0.00 \N \N 1585 456 3 200.0 1 2019-09-27 00:21:59.460421 2019-09-27 00:21:59.460421 1157 \N \N \N 0 PV3-V-46 1 \N 0.00 \N \N 123 1586 456 1 300.0 1 2019-09-27 00:22:10.819104 2019-09-27 00:22:10.819104 1157 1111 \N \N 0 PV3-V-46 1 \N 0.00 \N \N 123 1587 457 4 1270.0 1 2019-09-27 00:25:09.772852 2019-09-27 00:25:09.772852 1158 7044 \N \N 0 PV1-V-641 1 \N 0.00 \N \N 1588 456 2 1200.0 1 2019-09-27 01:11:11.369605 2019-09-27 01:11:11.369605 1001 \N \N \N 7 \N 1 1200.00 0.00 \N \N 1589 460 1 649.0 1 2019-09-27 17:13:09.975948 2019-09-27 17:13:09.975948 1159 1111 \N \N 0 PV2-V-470 1 \N 0.00 \N \N 1590 459 2 1348.0 1 2019-09-27 19:54:22.320455 2019-09-27 19:54:22.320455 1161 \N \N \N 0 PV3-V-47 1 1500.00 152.00 \N \N 1591 460 4 2191.0 1 2019-09-27 19:55:30.853432 2019-09-27 19:55:30.853432 1160 1111 \N \N 0 PV2-V-471 1 \N 0.00 \N \N 1592 460 2 200.0 1 2019-09-27 20:02:11.086305 2019-09-27 20:02:11.086305 1162 \N \N \N 6 PV2-V-472 0 200.00 0.00 \N \N 1593 461 2 200.0 1 2019-09-27 20:56:13.815973 2019-09-27 20:56:13.815973 1163 \N \N \N 6 PV1-V-642 1 200.00 0.00 \N \N 1595 460 1 200.0 1 2019-09-27 21:39:36.233086 2019-09-27 21:39:36.233086 1164 1111 \N \N 6 PV2-V-473 1 \N 0.00 \N \N 1596 460 2 419.0 1 2019-09-27 23:02:20.460496 2019-09-27 23:02:20.460496 1165 \N \N \N 0 PV2-V-474 1 500.00 81.00 \N \N 1597 460 3 200.0 1 2019-09-27 23:46:06.483498 2019-09-27 23:46:06.483498 1070 \N \N \N 4 \N 1 \N 0.00 \N \N 1234 1598 459 2 499.0 1 2019-09-27 23:46:26.458853 2019-09-27 23:46:26.458853 1060 \N \N \N 7 \N 1 500.00 1.00 \N \N 1599 460 4 789.0 1 2019-09-28 00:37:49.814716 2019-09-28 00:37:49.814716 1166 1233 \N \N 0 PV2-V-475 1 \N 0.00 \N \N 1601 459 1 600.0 1 2019-09-28 00:59:30.848781 2019-09-28 00:59:30.848781 1168 0 \N \N 6 PV3-V-49 1 \N 0.00 \N \N 1602 459 2 50.0 1 2019-09-28 00:59:54.699123 2019-09-28 00:59:54.699123 1168 \N \N \N 6 PV3-V-49 1 50.00 0.00 \N \N 1603 461 1 1270.0 1 2019-09-28 01:33:38.924341 2019-09-28 01:33:38.924341 1169 8694 \N \N 0 PV1-V-643 1 \N 0.00 \N \N 1604 461 2 25.0 0 2019-09-28 01:37:39.348991 2019-09-28 01:37:39.348991 \N \N \N 190 2 \N 1 \N \N \N \N 1605 462 2 888.0 1 2019-09-28 16:26:52.88302 2019-09-28 16:26:52.88302 945 \N \N \N 7 \N 1 888.00 0.00 \N \N 1606 462 2 150.0 1 2019-09-28 16:29:14.585812 2019-09-28 16:29:14.585812 1045 \N \N \N 4 \N 1 150.00 0.00 \N \N 1607 463 2 1387.0 1 2019-09-28 16:41:35.723702 2019-09-28 16:41:35.723702 1089 \N \N \N 7 \N 1 1390.00 3.00 \N \N 1608 463 1 649.0 1 2019-09-28 18:11:17.538194 2019-09-28 18:11:17.538194 1170 0 \N \N 0 PV3-V-50 1 \N 0.00 \N \N 1609 462 2 549.0 1 2019-09-28 20:05:13.960837 2019-09-28 20:05:13.960837 1171 \N \N \N 0 PV1-V-644 1 549.00 0.00 \N \N 1610 462 2 25.0 0 2019-09-28 20:07:37.582948 2019-09-28 20:07:37.582948 \N \N \N 191 2 \N 1 \N \N \N \N 1611 463 2 1200.0 0 2019-09-28 20:15:32.176867 2019-09-28 20:15:32.176867 \N \N \N 192 2 \N 1 \N \N \N \N 1612 462 2 469.0 1 2019-09-28 22:29:43.126336 2019-09-28 22:29:43.126336 1172 \N \N \N 0 PV1-V-645 1 469.00 0.00 \N \N 1613 462 2 1328.0 0 2019-09-28 23:37:38.958646 2019-09-28 23:37:38.958646 \N \N \N 193 2 \N 1 \N \N \N \N 1614 462 2 300.0 1 2019-09-28 23:38:03.083481 2019-09-28 23:38:03.132847 180 \N \N \N 3 \N 1 300.00 0.00 \N \N 1615 465 1 717.99 1 2019-09-29 18:19:23.166325 2019-09-29 18:19:23.166325 1173 1794 \N \N 0 PV1-V-646 1 \N 0.00 \N \N 1616 \N 3 699.0 1 2019-09-30 15:54:48.395223 2019-09-30 15:54:48.464145 67 \N \N \N 3 \N 1 \N 0.00 \N \N 1234 1617 \N 3 500.0 1 2019-09-30 16:03:12.88807 2019-09-30 16:03:12.91903 836 \N \N \N 3 \N 1 \N 0.00 \N \N 123 1618 466 2 285.0 1 2019-09-30 16:15:00.205182 2019-09-30 16:15:00.205182 1045 \N \N \N 7 \N 1 285.00 0.00 \N \N 1619 \N 3 799.0 1 2019-09-30 16:30:45.141976 2019-09-30 16:30:45.1885 168 \N \N \N 3 \N 1 \N 0.00 \N \N 1234 1620 466 2 699.0 1 2019-09-30 19:03:00.357537 2019-09-30 19:03:00.357537 1174 \N \N \N 0 PV1-V-647 1 699.00 0.00 \N \N 1621 467 2 1014.0 1 2019-10-01 17:19:15.793867 2019-10-01 17:19:15.793867 1175 \N \N \N 0 PV1-V-648 1 1014.00 0.00 \N \N 1622 468 4 1667.0 1 2019-10-01 20:26:26.868627 2019-10-01 20:26:26.868627 1164 5519 \N \N 7 \N 1 \N 0.00 \N \N 1623 467 2 1000.0 1 2019-10-01 21:09:53.872146 2019-10-01 21:09:53.967695 171 \N \N \N 3 \N 1 1000.00 0.00 \N \N 1624 468 2 299.0 1 2019-10-02 00:54:22.721864 2019-10-02 00:54:22.721864 1176 \N \N \N 0 PV2-V-476 1 500.00 201.00 \N \N 1625 469 2 650.0 1 2019-10-02 01:31:24.203531 2019-10-02 01:31:24.203531 1178 \N \N \N 6 PV3-V-52 1 650.00 0.00 \N \N 1626 470 2 400.0 1 2019-10-02 18:43:17.627892 2019-10-02 18:43:17.627892 1179 \N \N \N 6 PV3-V-53 1 400.00 0.00 \N \N 1627 471 2 500.0 1 2019-10-02 20:09:31.125404 2019-10-02 20:09:31.125404 1180 \N \N \N 6 PV1-V-649 1 500.00 0.00 \N \N 1628 471 2 800.0 1 2019-10-02 21:44:07.337966 2019-10-02 21:44:07.337966 1181 \N \N \N 6 PV1-V-650 1 800.00 0.00 \N \N 1629 471 1 369.0 1 2019-10-02 22:14:37.486868 2019-10-02 22:14:37.486868 948 3295 \N \N 7 \N 1 \N 0.00 \N \N 1630 471 1 899.0 1 2019-10-02 22:15:44.041465 2019-10-02 22:15:44.041465 1146 3295 \N \N 7 \N 1 \N 0.00 \N \N 1631 471 2 999.0 1 2019-10-02 22:50:08.864857 2019-10-02 22:50:08.864857 1182 \N \N \N 0 PV1-V-651 1 999.00 0.00 \N \N 1632 470 2 300.0 1 2019-10-02 23:47:40.269027 2019-10-02 23:47:40.269027 1183 \N \N \N 3 \N 1 300.00 0.00 \N \N 1633 471 2 1549.0 1 2019-10-03 00:22:42.997944 2019-10-03 00:22:42.997944 1184 \N \N \N 0 PV1-V-652 1 1549.00 0.00 \N \N 1634 471 5 1125.0 1 2019-10-03 01:04:54.811491 2019-10-03 01:04:54.811491 1185 \N \N \N 0 PV1-V-653 1 \N 0.00 \N \N univale 0000 univale 1635 474 2 1099.0 1 2019-10-03 17:27:20.110819 2019-10-03 17:27:20.110819 1034 \N \N \N 7 \N 1 1100.00 1.00 \N \N 1636 473 2 549.0 1 2019-10-03 18:47:58.193952 2019-10-03 18:47:58.193952 1163 \N \N \N 7 \N 1 549.00 0.00 \N \N 1637 473 2 619.0 1 2019-10-03 20:13:23.69141 2019-10-03 20:13:23.69141 1186 \N \N \N 0 PV1-V-654 1 619.00 0.00 \N \N 1638 473 2 250.0 1 2019-10-03 23:00:24.445382 2019-10-03 23:00:24.445382 1187 \N \N \N 6 PV1-V-655 1 250.00 0.00 \N \N 1640 475 1 250.0 1 2019-10-04 00:13:46.910435 2019-10-04 00:13:46.910435 1188 3295 \N \N 6 PV2-V-477 1 \N 0.00 \N \N 1641 474 3 500.0 1 2019-10-04 00:15:54.204461 2019-10-04 00:15:54.236558 1077 \N \N \N 3 \N 1 \N 0.00 \N \N 1234 1642 474 4 569.0 1 2019-10-04 01:03:17.3831 2019-10-04 01:03:17.3831 1189 0 \N \N 0 PV3-V-55 1 \N 0.00 \N \N 1643 473 1 1299.0 1 2019-10-04 01:29:44.990731 2019-10-04 01:29:44.990731 1190 6403 \N \N 0 PV1-V-656 1 \N 0.00 \N \N 1644 \N 3 700.0 1 2019-10-04 17:11:11.47269 2019-10-04 17:11:11.517006 808 \N \N \N 3 \N 1 \N 0.00 \N \N 142568798758 1645 476 1 829.0 1 2019-10-04 17:19:52.866363 2019-10-04 17:19:52.866363 1191 0 \N \N 0 PV3-V-56 1 \N 0.00 \N \N 1646 476 1 1500.0 1 2019-10-04 22:07:10.722291 2019-10-04 22:07:10.722291 1192 0 \N \N 0 PV3-V-57 1 \N 0.00 \N \N 1647 476 2 48.0 1 2019-10-04 22:07:23.141873 2019-10-04 22:07:23.141873 1192 \N \N \N 0 PV3-V-57 1 48.00 0.00 \N \N 1648 476 2 500.0 1 2019-10-04 22:19:28.534448 2019-10-04 22:19:28.534448 1168 \N \N \N 4 \N 1 500.00 0.00 \N \N 1649 478 2 988.0 1 2019-10-04 22:25:14.503409 2019-10-04 22:25:14.503409 1193 \N \N \N 0 PV2-V-478 1 1100.00 112.00 \N \N 1650 478 1 500.0 1 2019-10-04 22:30:14.52843 2019-10-04 22:30:14.52843 1194 1234 \N \N 0 PV2-V-479 1 \N 0.00 \N \N 1651 478 2 199.0 1 2019-10-04 22:30:29.116179 2019-10-04 22:30:29.116179 1194 \N \N \N 0 PV2-V-479 1 199.00 0.00 \N \N 1652 478 2 0 1 2019-10-04 22:30:29.217591 2019-10-04 22:30:29.217591 1194 \N \N \N 0 PV2-V-479 1 199.00 199.00 \N \N 1653 478 2 999.0 1 2019-10-04 23:36:15.841994 2019-10-04 23:36:15.841994 1195 \N \N \N 0 PV2-V-480 1 1000.00 1.00 \N \N 1654 478 2 799.0 1 2019-10-04 23:47:35.843468 2019-10-04 23:47:35.843468 1196 \N \N \N 0 PV2-V-481 1 800.00 1.00 \N \N 1655 478 1 2066.0 1 2019-10-04 23:49:40.994079 2019-10-04 23:49:40.994079 1197 1111 \N \N 0 PV2-V-482 1 \N 0.00 \N \N 1656 476 2 699.0 1 2019-10-05 00:52:28.071446 2019-10-05 00:52:28.071446 1198 \N \N \N 0 PV3-V-58 1 700.00 1.00 \N \N 1657 476 1 249.0 1 2019-10-05 01:55:54.289105 2019-10-05 01:55:54.289105 1199 7059 \N \N 0 PV3-V-59 1 \N 0.00 \N \N 1658 481 1 649.0 1 2019-10-05 20:44:10.731077 2019-10-05 20:44:10.731077 1200 1234 \N \N 0 PV2-V-483 1 \N 0.00 \N \N 1659 481 1 489.0 1 2019-10-05 21:09:43.342656 2019-10-05 21:09:43.342656 1201 6963 \N \N 0 PV2-V-484 1 \N 0.00 \N \N 1660 481 2 789.0 1 2019-10-05 22:12:13.111195 2019-10-05 22:12:13.111195 1202 \N \N \N 0 PV2-V-485 1 1000.00 211.00 \N \N 1661 480 2 1099.0 1 2019-10-05 22:22:20.983644 2019-10-05 22:22:20.983644 1203 \N \N \N 0 PV1-V-657 1 1099.00 0.00 \N \N 1662 480 2 1328.0 0 2019-10-05 23:10:25.184733 2019-10-05 23:10:25.184733 \N \N \N 194 2 \N 1 \N \N \N \N 1664 480 2 400.0 1 2019-10-05 23:18:29.581026 2019-10-05 23:18:29.581026 1204 \N \N \N 6 PV1-V-658 1 400.00 0.00 \N \N 1665 480 2 1099.0 1 2019-10-05 23:54:10.566588 2019-10-05 23:54:10.566588 1065 \N \N \N 7 \N 1 1099.00 0.00 \N \N 1666 480 2 400.0 1 2019-10-05 23:56:00.192325 2019-10-05 23:56:00.192325 1205 \N \N \N 6 PV1-V-659 1 400.00 0.00 \N \N 1667 479 2 759.0 1 2019-10-05 23:59:04.194111 2019-10-05 23:59:04.194111 1206 \N \N \N 0 PV3-V-60 1 1000.00 241.00 \N \N 1668 480 4 1468.0 1 2019-10-06 00:03:35.894137 2019-10-06 00:03:35.894137 1207 2102 \N \N 0 PV1-V-660 1 \N 0.00 \N \N 1669 479 1 1000.0 1 2019-10-06 01:15:36.368385 2019-10-06 01:15:36.368385 1208 0 \N \N 6 PV3-V-61 1 \N 0.00 \N \N 1670 483 2 300.0 1 2019-10-06 16:29:42.115489 2019-10-06 16:29:42.115489 1209 \N \N \N 6 PV1-V-661 1 300.00 0.00 \N \N 1671 482 2 1299.0 1 2019-10-06 18:29:52.582871 2019-10-06 18:29:52.582871 1210 \N \N \N 0 PV3-V-62 1 1500.00 201.00 \N \N 1672 484 2 0 1 2019-10-06 19:03:26.797795 2019-10-06 19:03:26.797795 1130 \N \N \N 4 \N 1 800.00 800.00 \N \N 1673 484 2 799.0 1 2019-10-06 19:03:45.419655 2019-10-06 19:03:45.419655 1130 \N \N \N 7 \N 1 800.00 1.00 \N \N 1674 482 2 1200.0 0 2019-10-06 21:06:38.878762 2019-10-06 21:06:38.878762 \N \N \N 195 2 \N 1 \N \N \N \N 1675 485 2 180.0 1 2019-10-07 16:15:38.133276 2019-10-07 16:15:38.133276 1211 \N \N \N 6 PV2-V-486 1 180.00 0.00 \N \N 1676 486 2 469.0 1 2019-10-07 16:21:52.556041 2019-10-07 16:21:52.556041 1023 \N \N \N 7 \N 1 469.00 0.00 \N \N 1677 486 2 450.0 1 2019-10-07 18:09:19.608464 2019-10-07 18:09:19.608464 1204 \N \N \N 4 \N 1 450.00 0.00 \N \N 1678 487 1 350.0 1 2019-10-07 23:11:22.913398 2019-10-07 23:11:22.913398 1212 0 \N \N 6 PV3-V-63 1 \N 0.00 \N \N 1679 490 3 199.0 1 2019-10-08 17:18:23.914067 2019-10-08 17:18:23.914067 1070 \N \N \N 7 \N 1 \N 0.00 \N \N 1234 1680 489 2 348.0 1 2019-10-08 22:25:34.292524 2019-10-08 22:25:34.292524 1214 \N \N \N 0 PV3-V-65 1 500.00 152.00 \N \N 1681 489 2 300.0 1 2019-10-08 23:16:43.988735 2019-10-08 23:16:43.988735 1215 \N \N \N 6 PV3-V-66 1 300.00 0.00 \N \N 1682 490 2 499.0 1 2019-10-09 17:03:13.067591 2019-10-09 17:03:13.067591 1030 \N \N \N 7 \N 1 500.00 1.00 \N \N 1683 491 1 817.99 1 2019-10-09 20:00:41.12337 2019-10-09 20:00:41.12337 1216 4462 \N \N 0 PV1-V-662 1 \N 0.00 \N \N 1684 490 2 1149.0 1 2019-10-09 20:23:09.461074 2019-10-09 20:23:09.461074 1217 \N \N \N 0 PV2-V-487 1 1200.00 51.00 \N \N 1685 492 2 1599.0 1 2019-10-09 20:43:41.869905 2019-10-09 20:43:41.869905 1218 \N \N \N 0 PV3-V-67 1 1600.00 1.00 \N \N 1686 493 2 300.0 1 2019-10-10 16:37:20.385287 2019-10-10 16:37:20.385287 1219 \N \N \N 6 PV3-V-68 1 300.00 0.00 \N \N 1687 494 2 1328.0 1 2019-10-10 18:44:08.995976 2019-10-10 18:44:08.995976 1220 \N \N \N 0 PV2-V-488 1 1500.00 172.00 \N \N 1688 494 2 789.0 1 2019-10-10 23:24:06.035932 2019-10-10 23:24:06.035932 1221 \N \N \N 0 PV2-V-489 1 800.00 11.00 \N \N 1689 495 2 600.0 1 2019-10-11 00:34:19.085134 2019-10-11 00:34:19.085134 1222 \N \N \N 0 PV1-V-663 1 600.00 0.00 \N \N 1690 495 2 399.0 1 2019-10-11 00:41:57.390967 2019-10-11 00:41:57.390967 1181 \N \N \N 7 \N 1 399.00 0.00 \N \N 1691 494 2 1049.0 1 2019-10-11 01:57:19.400403 2019-10-11 01:57:19.400403 1223 \N \N \N 0 PV2-V-490 1 1049.00 0.00 \N \N 1692 498 2 419.0 1 2019-10-11 17:25:48.637194 2019-10-11 17:25:48.637194 1224 \N \N \N 0 PV3-V-69 1 500.00 81.00 \N \N 1693 497 4 877.99 1 2019-10-11 17:50:37.593572 2019-10-11 17:50:37.593572 1225 7639 \N \N 0 PV1-V-664 1 \N 0.00 \N \N 1694 497 3 1899.0 1 2019-10-11 17:56:45.576008 2019-10-11 17:56:45.576008 1226 \N \N \N 0 PV1-V-665 1 \N 0.00 \N \N SAMANTHA 1695 498 1 1697.99 1 2019-10-11 18:02:36.21484 2019-10-11 18:02:36.21484 1227 9125 \N \N 0 PV3-V-70 1 \N 0.00 \N \N 1696 496 1 629.3 1 2019-10-11 18:08:20.374955 2019-10-11 18:08:20.374955 1228 1234 \N \N 0 PV2-V-491 1 \N 0.00 \N \N 1697 496 2 559.31 1 2019-10-11 18:16:46.54999 2019-10-11 18:16:46.54999 1229 \N \N \N 0 PV2-V-492 1 559.31 0.00 \N \N 1698 496 2 1230.0 1 2019-10-11 20:01:49.693778 2019-10-11 20:01:49.693778 1230 \N \N \N 0 PV2-V-493 1 1230.00 0.00 \N \N 1700 496 1 599.0 1 2019-10-11 22:09:59.066083 2019-10-11 22:09:59.066083 1232 1236 \N \N 0 PV2-V-495 1 \N 0.00 \N \N 1701 497 2 649.0 1 2019-10-11 22:31:33.068738 2019-10-11 22:31:33.068738 1233 \N \N \N 0 PV1-V-666 1 649.00 0.00 \N \N 1702 497 2 1549.0 1 2019-10-11 23:29:28.022527 2019-10-11 23:29:28.022527 1234 \N \N \N 0 PV1-V-667 1 1549.00 0.00 \N \N 1704 496 2 400.0 1 2019-10-12 00:13:20.424066 2019-10-12 00:13:20.424066 1235 \N \N \N 6 PV2-V-496 1 400.00 0.00 \N \N 1705 497 2 100.0 0 2019-10-12 01:19:48.876657 2019-10-12 01:19:48.876657 \N \N \N 196 2 \N 1 \N \N \N \N 1706 500 2 300.0 1 2019-10-12 19:38:44.256494 2019-10-12 19:38:44.256494 1236 \N \N \N 0 PV1-V-668 1 300.00 0.00 \N \N 1708 500 2 301.0 1 2019-10-12 21:41:34.973274 2019-10-12 21:41:34.973274 1237 \N \N \N 6 PV1-V-669 1 301.00 0.00 \N \N 1709 499 2 459.0 1 2019-10-12 22:04:52.727734 2019-10-12 22:04:52.727734 1238 \N \N \N 0 PV2-V-497 1 460.00 1.00 \N \N 1710 499 2 328.0 1 2019-10-12 22:59:39.128902 2019-10-12 22:59:39.128902 1098 \N \N \N 7 \N 1 500.00 172.00 \N \N 1711 499 2 1599.0 1 2019-10-12 23:02:39.932006 2019-10-12 23:02:39.932006 1239 \N \N \N 0 PV2-V-498 1 2000.00 401.00 \N \N 1712 500 2 1168.0 0 2019-10-13 01:16:11.572341 2019-10-13 01:16:11.572341 \N \N \N 197 2 \N 1 \N \N \N \N 1713 500 2 300.0 1 2019-10-13 01:16:35.460838 2019-10-13 01:16:35.522565 180 \N \N \N 3 \N 1 300.00 0.00 \N \N 1714 501 2 1199.0 1 2019-10-13 02:11:51.655313 2019-10-13 02:11:51.655313 1240 \N \N \N 0 PV3-V-71 1 1500.00 301.00 \N \N 1715 503 2 339.0 1 2019-10-13 17:00:07.273618 2019-10-13 17:00:07.273618 1211 \N \N \N 4 \N 1 339.00 0.00 \N \N 1716 504 2 500.0 1 2019-10-13 17:40:01.750302 2019-10-13 17:40:01.750302 1209 \N \N \N 4 \N 1 500.00 0.00 \N \N 1717 505 2 650.0 1 2019-10-14 16:34:10.131916 2019-10-14 16:34:10.171096 1108 \N \N \N 3 \N 1 650.00 0.00 \N \N 1718 506 2 200.0 1 2019-10-14 18:32:05.625674 2019-10-14 18:32:05.625674 1241 \N \N \N 6 PV2-V-499 1 200.00 0.00 \N \N 1719 506 1 500.0 1 2019-10-14 18:48:23.412129 2019-10-14 18:48:23.412129 1242 5412 \N \N 0 PV2-V-500 1 \N 0.00 \N \N 1720 506 2 688.0 1 2019-10-14 18:48:52.902971 2019-10-14 18:48:52.902971 1242 \N \N \N 0 PV2-V-500 1 700.00 12.00 \N \N 1722 502 1 1000.0 1 2019-10-14 20:53:23.139424 2019-10-14 20:53:23.139424 1243 0 \N \N 6 PV3-V-72 1 \N 0.00 \N \N 1723 506 2 599.0 1 2019-10-14 23:49:35.036253 2019-10-14 23:49:35.036253 1244 \N \N \N 0 PV2-V-501 1 600.00 1.00 \N \N 1724 502 2 400.0 0 2019-10-15 00:50:23.24776 2019-10-15 00:50:23.24776 \N \N \N 198 2 \N 1 \N \N \N \N 1725 507 2 829.0 1 2019-10-15 16:52:25.316485 2019-10-15 16:52:25.316485 1245 \N \N \N 0 PV1-V-670 1 829.00 0.00 \N \N 1726 508 1 1099.0 1 2019-10-15 17:35:48.266115 2019-10-15 17:35:48.266115 1246 1234 \N \N 0 PV2-V-502 1 \N 0.00 \N \N 1727 508 2 1000.0 1 2019-10-15 17:46:59.305519 2019-10-15 17:46:59.305519 1247 \N \N \N 0 PV2-V-503 1 1000.00 0.00 \N \N 1728 508 1 368.0 1 2019-10-15 17:47:14.855858 2019-10-15 17:47:14.855858 1247 4103 \N \N 0 PV2-V-503 1 \N 0.00 \N \N 1729 507 2 250.0 1 2019-10-15 21:44:29.905505 2019-10-15 21:44:29.905505 1249 \N \N \N 0 PV1-V-671 1 250.00 0.00 \N \N 1730 507 2 99.0 1 2019-10-15 23:03:21.399899 2019-10-15 23:03:21.399899 1209 \N \N \N 7 \N 1 99.00 0.00 \N \N 1731 507 2 258.0 1 2019-10-15 23:04:11.507968 2019-10-15 23:04:11.507968 1204 \N \N \N 7 \N 1 258.00 0.00 \N \N 1732 508 2 1499.0 1 2019-10-15 23:11:34.957061 2019-10-15 23:11:34.957061 1250 \N \N \N 0 PV2-V-505 1 1500.00 1.00 \N \N 1733 508 2 699.0 1 2019-10-15 23:19:39.929712 2019-10-15 23:19:39.929712 1251 \N \N \N 0 PV2-V-506 1 700.00 1.00 \N \N 1734 510 4 569.0 1 2019-10-16 16:45:13.043021 2019-10-16 16:45:13.043021 1252 4662 \N \N 0 PV1-V-672 1 \N 0.00 \N \N 1735 510 2 229.0 1 2019-10-16 18:50:38.875287 2019-10-16 18:50:38.875287 1253 \N \N \N 6 PV1-V-673 1 229.00 0.00 \N \N 1736 509 2 500.0 1 2019-10-16 20:01:39.681583 2019-10-16 20:01:39.681583 1254 \N \N \N 6 PV3-V-73 1 500.00 0.00 \N \N 1737 511 1 589.0 1 2019-10-16 22:34:45.242573 2019-10-16 22:34:45.242573 1255 7859 \N \N 0 PV2-V-507 1 \N 0.00 \N \N 1738 510 2 619.0 1 2019-10-16 23:30:17.164738 2019-10-16 23:30:17.164738 1187 \N \N \N 7 \N 1 619.00 0.00 \N \N 1740 509 1 1398.0 1 2019-10-17 01:12:19.110385 2019-10-17 01:12:19.110385 1256 0 \N \N 0 PV3-V-74 1 \N 0.00 \N \N 1741 512 3 500.0 1 2019-10-17 16:53:25.95119 2019-10-17 16:53:25.983345 1077 \N \N \N 3 \N 1 \N 0.00 \N \N 142568798758 1742 512 3 400.0 1 2019-10-17 16:53:48.247145 2019-10-17 16:53:48.27979 1183 \N \N \N 3 \N 1 \N 0.00 \N \N 142568798758 1743 514 2 729.0 1 2019-10-17 17:13:27.22944 2019-10-17 17:13:27.22944 1257 \N \N \N 0 PV1-V-674 1 729.00 0.00 \N \N 1744 512 2 829.0 1 2019-10-17 17:28:19.773416 2019-10-17 17:28:19.773416 1258 \N \N \N 0 PV3-V-75 1 900.00 71.00 \N \N 1745 512 2 3098.0 1 2019-10-17 17:31:49.846031 2019-10-17 17:31:49.846031 1259 \N \N \N 0 PV3-V-76 1 3100.00 2.00 \N \N 1746 513 3 350.0 1 2019-10-17 17:41:11.816066 2019-10-17 17:41:11.816066 973 \N \N \N 7 \N 1 \N 0.00 \N \N 142568798758 1747 514 3 319.0 1 2019-10-17 17:42:01.014535 2019-10-17 17:42:01.014535 972 \N \N \N 7 \N 1 \N 0.00 \N \N 142568798758 1748 513 1 798.0 1 2019-10-17 21:10:53.461518 2019-10-17 21:10:53.461518 1115 9980 \N \N 7 \N 1 \N 0.00 \N \N 1749 515 2 699.0 1 2019-10-19 17:19:00.384118 2019-10-19 17:19:00.384118 1260 \N \N \N 0 PV3-V-77 1 700.00 1.00 \N \N 1750 514 2 1538.0 1 2019-10-19 18:52:48.119697 2019-10-19 18:52:48.119697 1261 \N \N \N 0 PV1-V-675 1 1538.00 0.00 \N \N 1751 514 2 1499.0 1 2019-10-19 19:01:42.415575 2019-10-19 19:01:42.415575 1180 \N \N \N 7 \N 1 1499.00 0.00 \N \N 1752 516 1 2328.0 1 2019-10-19 21:05:04.615433 2019-10-19 21:05:04.615433 1262 68 \N \N 0 PV2-V-508 1 \N 0.00 \N \N 1753 516 1 4597.0 1 2019-10-19 22:10:02.957609 2019-10-19 22:10:02.957609 1264 68 \N \N 0 PV2-V-510 1 \N 0.00 \N \N 1754 514 2 798.0 1 2019-10-19 22:26:14.829338 2019-10-19 22:26:14.829338 1013 \N \N \N 5 \N 1 798.00 0.00 14 \N 1755 515 2 500.0 1 2019-10-19 23:16:22.783026 2019-10-19 23:16:22.783026 1265 \N \N \N 6 PV3-V-78 1 500.00 0.00 \N \N 1756 515 2 1799.0 1 2019-10-19 23:27:11.129935 2019-10-19 23:27:11.129935 1266 \N \N \N 0 PV3-V-79 1 2000.00 201.00 \N \N 1757 515 2 300.0 1 2019-10-19 23:47:54.607556 2019-10-19 23:47:54.607556 1267 \N \N \N 6 PV3-V-80 1 300.00 0.00 \N \N 1758 514 2 200.0 1 2019-10-20 00:54:12.428668 2019-10-20 00:54:12.428668 1268 \N \N \N 6 PV1-V-676 1 200.00 0.00 \N \N 1759 516 2 30.0 1 2019-10-20 00:58:29.538641 2019-10-20 00:58:29.538641 1269 \N \N \N 6 PV2-V-511 1 50.00 20.00 \N \N 1760 516 2 20.0 1 2019-10-20 00:59:37.886012 2019-10-20 00:59:37.886012 1269 \N \N \N 4 \N 1 20.00 0.00 \N \N 1772 517 2 499.0 1 2019-10-21 16:18:18.849832 2019-10-21 16:18:18.849832 1275 \N \N \N 0 PV3-V-83 1 500.00 1.00 \N \N 1761 516 2 140.0 1 2019-10-20 01:21:58.970973 2019-10-20 01:21:58.970973 1270 \N \N \N 6 PV2-V-512 1 140.00 0.00 \N \N 1762 516 2 59.0 1 2019-10-20 01:25:28.357004 2019-10-20 01:25:28.357004 1270 \N \N \N 4 \N 1 59.00 0.00 \N \N 1763 516 2 100.0 0 2019-10-20 01:39:46.123386 2019-10-20 01:39:46.123386 \N \N 14 199 2 \N 1 \N \N \N \N 1764 518 2 300.0 1 2019-10-20 16:44:53.721596 2019-10-20 16:44:53.765366 381 \N \N \N 3 \N 1 300.00 0.00 \N \N 1765 518 1 1899.0 1 2019-10-20 16:54:21.766511 2019-10-20 16:54:21.766511 1271 2980 \N \N 0 PV1-V-677 1 \N 0.00 \N \N 1766 518 2 1299.0 1 2019-10-20 17:05:38.285248 2019-10-20 17:05:38.285248 1272 \N \N \N 0 PV1-V-678 1 1300.00 1.00 \N \N 1767 518 2 500.0 1 2019-10-20 17:07:43.98294 2019-10-20 17:07:43.98294 877 \N \N \N 4 \N 1 500.00 0.00 \N \N 1768 518 2 379.0 1 2019-10-20 20:41:40.074772 2019-10-20 20:41:40.074772 980 \N \N \N 7 \N 1 500.00 121.00 \N \N 1771 517 2 2000.0 1 2019-10-21 16:13:07.481334 2019-10-21 16:13:07.481334 1274 \N \N \N 6 PV3-V-82 1 2000.00 0.00 \N \N 1773 519 1 500.0 1 2019-10-21 17:01:45.471104 2019-10-21 17:01:45.506432 1108 8730 \N \N 3 \N 1 \N 0.00 \N \N 1774 519 1 717.99 1 2019-10-21 17:39:41.796546 2019-10-21 17:39:41.796546 1276 2809 \N \N 0 PV1-V-679 1 \N 0.00 \N \N 1775 517 2 300.0 1 2019-10-21 20:21:41.115938 2019-10-21 20:21:41.115938 1277 \N \N \N 6 PV3-V-84 1 300.00 0.00 \N \N 1776 520 2 299.0 1 2019-10-21 21:34:26.636075 2019-10-21 21:34:26.636075 1278 \N \N \N 0 PV2-V-513 1 300.00 1.00 \N \N 1777 520 5 696.0 1 2019-10-21 22:00:35.521205 2019-10-21 22:00:35.521205 1279 \N \N \N 0 PV2-V-514 1 \N 0.00 \N \N UNIVALE RG13 UNIVALE 1778 519 2 649.0 1 2019-10-21 23:16:37.189135 2019-10-21 23:16:37.189135 1280 \N \N \N 0 PV1-V-680 1 649.00 0.00 \N \N 1779 519 2 170.0 1 2019-10-21 23:57:01.897461 2019-10-21 23:57:01.897461 1281 \N \N \N 6 PV1-V-681 1 170.00 0.00 \N \N 1780 519 2 400.0 0 2019-10-22 01:37:10.726911 2019-10-22 01:37:10.726911 \N \N \N 200 2 \N 1 \N \N \N \N 1781 522 2 500.0 1 2019-10-22 17:48:11.012164 2019-10-22 17:48:11.046026 1017 \N \N \N 3 \N 1 500.00 0.00 \N \N 1782 523 2 449.0 1 2019-10-22 21:57:29.462444 2019-10-22 21:57:29.462444 1282 \N \N \N 0 PV2-V-515 1 500.00 51.00 \N \N 1783 523 2 699.0 1 2019-10-22 23:04:40.296296 2019-10-22 23:04:40.296296 1283 \N \N \N 0 PV2-V-516 1 1000.00 301.00 \N \N 1785 522 1 300.0 1 2019-10-22 23:42:23.61918 2019-10-22 23:42:23.61918 1284 8608 \N \N 6 PV1-V-682 1 \N 0.00 \N \N 1786 522 1 300.0 1 2019-10-22 23:45:43.148348 2019-10-22 23:45:43.148348 1285 8608 \N \N 6 PV1-V-683 1 \N 0.00 \N \N 1787 523 2 649.0 1 2019-10-23 00:26:19.950474 2019-10-23 00:26:19.950474 1286 \N \N \N 0 PV2-V-517 1 1000.00 351.00 \N \N 1788 525 2 1199.0 1 2019-10-23 17:40:08.96995 2019-10-23 17:40:08.96995 1287 \N \N \N 0 PV1-V-684 1 1199.00 0.00 \N \N 1789 525 2 49.0 1 2019-10-23 17:41:04.565343 2019-10-23 17:41:04.565343 1288 \N \N \N 0 PV1-V-685 1 49.00 0.00 \N \N 1790 524 2 1129.0 1 2019-10-23 18:49:16.126577 2019-10-23 18:49:16.126577 1289 \N \N \N 0 PV2-V-518 1 1500.00 371.00 \N \N 1791 521 2 199.0 1 2019-10-23 19:43:54.470969 2019-10-23 19:43:54.470969 1179 \N \N \N 4 \N 1 200.00 1.00 \N \N 1792 521 1 1000.0 1 2019-10-23 19:44:13.724671 2019-10-23 19:44:13.724671 1179 0 \N \N 4 \N 1 \N 0.00 \N \N 1793 524 1 950.0 1 2019-10-23 20:38:38.031622 2019-10-23 20:38:38.031622 1188 3295 \N \N 7 \N 1 \N 0.00 \N \N 1794 521 2 500.0 1 2019-10-23 23:15:42.857201 2019-10-23 23:15:42.857201 1290 \N \N \N 6 PV3-V-85 1 500.00 0.00 \N \N 1795 521 2 1500.0 1 2019-10-23 23:33:25.771283 2019-10-23 23:33:25.771283 1291 \N \N \N 6 PV3-V-86 1 1500.00 0.00 \N \N 1796 525 2 789.0 1 2019-10-23 23:37:11.516596 2019-10-23 23:37:11.516596 1292 \N \N \N 0 PV1-V-686 1 789.00 0.00 \N \N 1797 524 1 350.0 1 2019-10-24 00:23:09.091765 2019-10-24 00:23:09.091765 1293 680 \N \N 0 PV2-V-519 1 \N 0.00 \N \N 1798 525 2 35.0 0 2019-10-24 01:12:21.016286 2019-10-24 01:12:21.016286 \N \N \N 201 2 \N 1 \N \N \N \N 1799 527 2 200.0 1 2019-10-24 18:17:19.925234 2019-10-24 18:17:19.925234 1294 \N \N \N 6 PV2-V-520 1 200.00 0.00 \N \N 1800 527 4 699.0 1 2019-10-24 19:34:50.085336 2019-10-24 19:34:50.085336 1295 2298 \N \N 0 PV2-V-521 1 \N 0.00 \N \N 1801 527 2 500.0 1 2019-10-24 20:30:00.515437 2019-10-24 20:30:00.515437 1296 \N \N \N 6 PV2-V-522 1 500.00 0.00 \N \N 1802 526 2 300.0 1 2019-10-25 00:15:02.459179 2019-10-25 00:15:02.459179 1297 \N \N \N 0 PV3-V-87 1 300.00 0.00 \N \N 1803 526 1 399.0 1 2019-10-25 00:15:46.616306 2019-10-25 00:15:46.616306 1297 0 \N \N 0 PV3-V-87 1 \N 0.00 \N \N 1804 526 2 500.0 1 2019-10-25 01:20:36.686337 2019-10-25 01:20:36.686337 1178 \N \N \N 4 \N 1 500.00 0.00 \N \N 1805 527 2 559.0 1 2019-10-25 01:24:05.250317 2019-10-25 01:24:05.250317 1051 \N \N \N 7 \N 1 559.00 0.00 \N \N 1806 529 2 1129.0 1 2019-10-25 18:23:32.658923 2019-10-25 18:23:32.658923 1298 \N \N \N 0 PV2-V-523 1 1200.00 71.00 \N \N 1807 529 2 759.0 1 2019-10-25 21:20:30.718394 2019-10-25 21:20:30.718394 1299 \N \N \N 0 PV2-V-524 1 759.00 0.00 \N \N 1809 528 2 699.0 1 2019-10-25 21:29:24.265382 2019-10-25 21:29:24.265382 1301 \N \N \N 0 PV1-V-688 1 699.00 0.00 \N \N 1810 528 1 699.0 1 2019-10-25 21:40:25.517055 2019-10-25 21:40:25.517055 1302 8559 \N \N 0 PV1-V-689 1 \N 0.00 \N \N 1811 528 4 179.0 1 2019-10-25 21:47:50.573367 2019-10-25 21:47:50.573367 1303 8292 \N \N 0 PV1-V-690 1 \N 0.00 \N \N 1812 528 2 100.0 1 2019-10-25 21:50:46.721611 2019-10-25 21:50:46.721611 1304 \N \N \N 6 PV1-V-691 1 100.00 0.00 \N \N 1813 530 2 449.0 1 2019-10-25 21:57:42.789435 2019-10-25 21:57:42.789435 1168 \N \N \N 4 \N 1 449.00 0.00 \N \N 1814 528 2 200.0 1 2019-10-26 00:29:18.458966 2019-10-26 00:29:18.458966 1305 \N \N \N 6 PV1-V-692 1 200.00 0.00 \N \N 1815 528 4 199.0 1 2019-10-26 00:38:03.635294 2019-10-26 00:38:03.635294 1304 8292 \N \N 7 \N 1 \N 0.00 \N \N 1816 530 2 1399.0 1 2019-10-26 01:02:21.443244 2019-10-26 01:02:21.443244 1306 \N \N \N 0 PV3-V-88 1 1400.00 1.00 \N \N 1817 528 2 599.0 1 2019-10-26 01:38:04.339323 2019-10-26 01:38:04.339323 1307 \N \N \N 0 PV1-V-693 1 599.00 0.00 \N \N 1818 532 2 999.0 1 2019-10-26 19:24:32.606911 2019-10-26 19:24:32.606911 1308 \N \N \N 0 PV1-V-694 1 1000.00 1.00 \N \N 1819 533 2 970.0 0 2019-10-26 20:03:22.760676 2019-10-26 20:03:22.760676 \N \N \N 202 2 \N 1 \N \N \N \N 1820 532 2 1328.0 0 2019-10-26 21:55:44.071034 2019-10-26 21:55:44.071034 \N \N \N 203 2 \N 1 \N \N \N \N 1821 531 2 750.0 1 2019-10-26 21:59:26.320813 2019-10-26 21:59:26.320813 1178 \N \N \N 7 \N 1 750.00 0.00 \N \N 1822 532 2 300.0 1 2019-10-26 22:08:49.048517 2019-10-26 22:08:49.142112 381 \N \N \N 3 \N 1 300.00 0.00 \N \N 1823 531 2 549.0 1 2019-10-26 22:22:01.760934 2019-10-26 22:22:01.760934 1309 \N \N \N 0 PV3-V-89 1 550.00 1.00 \N \N 1824 531 2 899.0 1 2019-10-26 22:32:20.382597 2019-10-26 22:32:20.382597 1243 \N \N \N 7 \N 1 900.00 1.00 \N \N 1825 532 1 869.0 1 2019-10-26 23:05:15.320231 2019-10-26 23:05:15.320231 1310 9847 \N \N 0 PV1-V-695 1 \N 0.00 \N \N 1826 532 2 400.0 1 2019-10-27 00:36:18.977469 2019-10-27 00:36:18.977469 1311 \N \N \N 6 PV1-V-696 1 400.00 0.00 \N \N 1827 532 2 99.0 1 2019-10-27 00:38:40.946296 2019-10-27 00:38:40.946296 1312 \N \N \N 0 PV1-V-697 1 99.00 0.00 \N \N 1828 531 2 500.0 1 2019-10-27 00:39:30.23129 2019-10-27 00:39:30.23129 1168 \N \N \N 7 \N 1 600.00 100.00 \N \N 1829 535 2 49.0 1 2019-10-27 19:40:21.215488 2019-10-27 19:40:21.215488 1313 \N \N \N 0 PV2-V-525 1 50.00 1.00 \N \N 1830 535 2 649.0 1 2019-10-27 19:45:08.911336 2019-10-27 19:45:08.911336 1314 \N \N \N 0 PV2-V-526 1 650.00 1.00 \N \N 1831 535 2 675.0 1 2019-10-27 19:47:44.554611 2019-10-27 19:47:44.554611 1315 \N \N \N 0 PV2-V-527 1 700.00 25.00 \N \N 1832 535 2 839.0 1 2019-10-27 20:08:00.220102 2019-10-27 20:08:00.220102 1316 \N \N \N 0 PV2-V-528 1 900.00 61.00 \N \N 1833 535 2 789.0 1 2019-10-27 20:39:34.250562 2019-10-27 20:39:34.250562 1317 \N \N \N 0 PV2-V-529 1 800.00 11.00 \N \N 1834 537 2 1599.0 1 2019-10-28 18:47:22.687243 2019-10-28 18:47:22.687243 1318 \N \N \N 0 PV1-V-698 1 1599.00 0.00 \N \N 1835 536 2 1548.0 1 2019-10-28 20:45:50.539568 2019-10-28 20:45:50.539568 1319 \N \N \N 0 PV2-V-530 1 1700.00 152.00 \N \N 1836 537 1 1199.0 1 2019-10-28 21:02:08.485434 2019-10-28 21:02:08.485434 1320 243 \N \N 0 PV1-V-699 1 \N 0.00 \N \N 1837 534 1 1299.0 1 2019-10-28 22:40:43.402404 2019-10-28 22:40:43.402404 1321 1293 \N \N 0 PV3-V-90 1 \N 0.00 \N \N 1838 536 2 300.0 1 2019-10-28 23:04:22.028071 2019-10-28 23:04:22.028071 1211 \N \N \N 4 \N 1 300.00 0.00 \N \N 1839 536 2 200.0 1 2019-10-28 23:09:01.242726 2019-10-28 23:09:01.242726 1241 \N \N \N 4 \N 1 200.00 0.00 \N \N 1840 534 2 500.0 0 2019-10-29 00:55:49.362624 2019-10-29 00:55:49.362624 1254 \N \N \N 0 \N 1 \N \N \N \N 1841 534 3 478.0 1 2019-10-29 00:57:00.447678 2019-10-29 00:57:00.447678 1322 \N \N \N 0 PV3-V-91 1 \N 0.00 \N \N CAMBIO 1842 536 2 350.0 1 2019-10-29 01:24:40.705197 2019-10-29 01:24:40.705197 1323 \N \N \N 6 PV2-V-531 1 350.00 0.00 \N \N 1843 539 2 300.0 1 2019-10-29 18:38:21.314249 2019-10-29 18:38:21.314249 1324 \N \N \N 6 PV1-V-700 1 300.00 0.00 \N \N 1844 540 2 599.0 1 2019-10-29 19:35:55.536834 2019-10-29 19:35:55.536834 1325 \N \N \N 0 PV2-V-532 1 700.00 101.00 \N \N 1845 540 1 699.0 1 2019-10-29 20:35:20.348009 2019-10-29 20:35:20.348009 1326 3793 \N \N 0 PV2-V-533 1 \N 0.00 \N \N 1846 539 2 200.0 1 2019-10-29 20:57:53.355258 2019-10-29 20:57:53.355258 1327 \N \N \N 6 PV1-V-701 1 200.00 0.00 \N \N 1847 539 2 99.0 1 2019-10-29 20:58:44.055006 2019-10-29 20:58:44.055006 1328 \N \N \N 0 PV1-V-702 1 99.00 0.00 \N \N 1848 539 2 599.0 1 2019-10-30 02:36:37.631314 2019-10-30 02:36:37.631314 1329 \N \N \N 0 PV1-V-703 1 599.00 0.00 \N \N 1850 541 2 228.0 1 2019-10-30 18:33:21.771463 2019-10-30 18:33:21.771463 1330 \N \N \N 6 PV1-V-704 1 228.00 0.00 \N \N 1851 543 2 699.0 1 2019-10-30 21:10:55.875911 2019-10-30 21:10:55.875911 1331 \N \N \N 0 PV2-V-534 1 1000.00 301.00 \N \N 1852 542 2 589.0 1 2019-10-31 01:28:19.281843 2019-10-31 01:28:19.281843 1332 \N \N \N 0 PV3-V-92 1 589.00 0.00 \N \N 1853 543 2 699.0 1 2019-10-31 02:16:17.568227 2019-10-31 02:16:17.568227 1333 \N \N \N 0 PV2-V-535 1 700.00 1.00 \N \N 1854 543 2 75.0 1 2019-10-31 02:18:50.19096 2019-10-31 02:18:50.19096 1334 \N \N \N 0 PV2-V-536 1 200.00 125.00 \N \N 1855 542 2 160.0 0 2019-10-31 03:10:06.804354 2019-10-31 03:10:06.804354 \N \N \N 204 2 \N 1 \N \N \N \N 1858 545 2 299.0 1 2019-10-31 18:41:59.427143 2019-10-31 18:41:59.427143 1241 \N \N \N 7 \N 1 300.00 1.00 \N \N 1859 546 1 569.0 1 2019-10-31 20:08:13.044327 2019-10-31 20:08:13.044327 1335 5154 \N \N 0 PV1-V-705 1 \N 0.00 \N \N 1860 546 2 2388.0 1 2019-10-31 21:26:39.467816 2019-10-31 21:26:39.467816 1336 \N \N \N 0 PV1-V-706 1 2388.00 0.00 \N \N 1861 546 2 399.0 1 2019-10-31 21:33:28.541374 2019-10-31 21:33:28.541374 1327 \N \N \N 7 \N 1 399.00 0.00 \N \N 1862 545 2 169.0 1 2019-10-31 21:42:43.848181 2019-10-31 21:42:43.848181 1337 \N \N \N 0 PV2-V-537 1 169.00 0.00 \N \N 1863 545 2 119.0 1 2019-10-31 21:45:35.603584 2019-10-31 21:45:35.603584 1338 \N \N \N 0 PV2-V-538 1 119.00 0.00 \N \N 1864 546 2 119.0 1 2019-10-31 21:46:38.122887 2019-10-31 21:46:38.122887 1339 \N \N \N 0 PV1-V-707 1 119.00 0.00 \N \N 1865 545 2 1399.0 1 2019-10-31 22:28:57.020908 2019-10-31 22:28:57.020908 1340 \N \N \N 0 PV2-V-539 1 1500.00 101.00 \N \N 1866 544 2 49.0 1 2019-10-31 22:35:04.421767 2019-10-31 22:35:04.421767 1341 \N \N \N 0 PV3-V-93 1 100.00 51.00 \N \N 1867 544 2 499.0 1 2019-10-31 22:51:24.308887 2019-10-31 22:51:24.308887 1342 \N \N \N 0 PV3-V-94 1 500.00 1.00 \N \N 1868 546 2 2099.0 1 2019-10-31 23:36:44.445804 2019-10-31 23:36:44.445804 1343 \N \N \N 0 PV1-V-708 1 2099.00 0.00 \N \N 1869 546 2 150.0 1 2019-11-01 00:29:13.822619 2019-11-01 00:29:13.822619 1281 \N \N \N 4 \N 1 150.00 0.00 \N \N 1870 545 2 1358.0 1 2019-11-01 01:25:34.627871 2019-11-01 01:25:34.627871 1344 \N \N \N 0 PV2-V-540 1 1360.00 2.00 \N \N 1871 549 2 200.0 1 2019-11-01 19:00:45.904509 2019-11-01 19:00:45.904509 1345 \N \N \N 6 PV1-V-709 1 200.00 0.00 \N \N 1872 549 2 1348.0 1 2019-11-01 19:57:46.124999 2019-11-01 19:57:46.124999 1141 \N \N \N 7 \N 1 1348.00 0.00 \N \N 1874 549 2 648.0 1 2019-11-01 19:58:48.943739 2019-11-01 19:58:48.943739 1237 \N \N \N 7 \N 1 648.00 0.00 \N \N 1875 547 1 1528.0 1 2019-11-01 20:35:34.922412 2019-11-01 20:35:34.922412 1346 0 \N \N 0 PV3-V-95 1 \N 0.00 \N \N 1876 549 2 600.0 1 2019-11-01 21:23:59.983515 2019-11-01 21:23:59.983515 1324 \N \N \N 4 \N 1 600.00 0.00 \N \N 1877 549 2 1288.0 1 2019-11-02 00:43:49.668749 2019-11-02 00:43:49.668749 1347 \N \N \N 0 PV1-V-710 1 1288.00 0.00 \N \N 1878 547 2 469.0 1 2019-11-02 00:53:40.325826 2019-11-02 00:53:40.325826 1348 \N \N \N 0 PV3-V-96 1 500.00 31.00 \N \N 1879 548 2 839.0 1 2019-11-02 01:11:32.765131 2019-11-02 01:11:32.765131 1349 \N \N \N 0 PV2-V-541 1 900.00 61.00 \N \N 1880 549 1 1599.0 1 2019-11-02 01:34:27.976057 2019-11-02 01:34:27.976057 1350 440 \N \N 0 PV1-V-711 1 \N 0.00 \N \N 1881 547 2 499.0 1 2019-11-02 01:40:41.797762 2019-11-02 01:40:41.797762 1352 \N \N \N 0 PV3-V-97 1 500.00 1.00 \N \N 1882 548 1 599.0 1 2019-11-02 01:44:56.517231 2019-11-02 01:44:56.517231 1351 440 \N \N 0 PV2-V-542 1 \N 0.00 \N \N 1883 547 2 500.0 1 2019-11-02 02:02:58.732021 2019-11-02 02:02:58.732021 1353 \N \N \N 6 PV3-V-98 1 500.00 0.00 \N \N 1884 551 2 839.0 1 2019-11-02 19:55:10.476609 2019-11-02 19:55:10.476609 1354 \N \N \N 0 PV2-V-543 1 1000.00 161.00 \N \N 1885 551 4 1358.0 1 2019-11-02 20:46:39.576364 2019-11-02 20:46:39.576364 1355 2216 \N \N 0 PV2-V-544 1 \N 0.00 \N \N 1886 551 2 120.0 1 2019-11-02 21:28:18.964344 2019-11-02 21:28:18.964344 1356 \N \N \N 0 PV2-V-545 1 120.00 0.00 \N \N 1887 552 2 1099.0 1 2019-11-02 22:24:30.050378 2019-11-02 22:24:30.050378 1205 \N \N \N 7 \N 1 1099.00 0.00 \N \N 1888 552 2 500.0 1 2019-11-02 22:25:21.067119 2019-11-02 22:25:21.067119 1253 \N \N \N 7 \N 1 500.00 0.00 \N \N 1889 551 2 900.0 0 2019-11-02 22:57:05.651273 2019-11-02 22:57:05.651273 \N \N \N 205 2 \N 1 \N \N \N \N 1890 552 2 200.0 1 2019-11-02 23:02:30.665374 2019-11-02 23:02:30.712948 1095 \N \N \N 3 \N 1 200.00 0.00 \N \N 1891 552 2 928.0 0 2019-11-02 23:05:10.183257 2019-11-02 23:05:10.183257 \N \N \N 206 2 \N 1 \N \N \N \N 1892 553 2 300.0 1 2019-11-03 17:41:49.530661 2019-11-03 17:41:49.530661 1357 \N \N \N 6 PV2-V-546 1 300.00 0.00 \N \N 1893 550 2 99.0 1 2019-11-03 18:23:35.647015 2019-11-03 18:23:35.647015 1358 \N \N \N 0 PV3-V-99 1 100.00 1.00 \N \N 1896 550 2 499.0 1 2019-11-03 18:25:11.613391 2019-11-03 18:25:11.613391 1359 \N \N \N 0 PV3-V-100 1 500.00 1.00 \N \N 1898 550 2 500.0 1 2019-11-03 18:30:59.250627 2019-11-03 18:30:59.250627 1361 \N \N \N 6 PV3-V-102 1 500.00 0.00 \N \N 1899 550 2 499.0 1 2019-11-03 22:29:00.25342 2019-11-03 22:29:00.25342 1362 \N \N \N 0 PV3-V-103 1 500.00 1.00 \N \N 1900 550 2 380.0 0 2019-11-03 22:52:09.481005 2019-11-03 22:52:09.481005 \N \N \N 207 2 \N 1 \N \N \N \N 1901 555 3 500.0 1 2019-11-04 17:46:42.918438 2019-11-04 17:46:42.951066 1077 \N \N \N 3 \N 1 \N 0.00 \N \N 41119 1902 556 2 1899.0 1 2019-11-04 19:35:09.593728 2019-11-04 19:35:09.593728 1363 \N \N \N 0 PV1-V-712 1 1899.00 0.00 \N \N 1903 556 2 500.0 1 2019-11-04 21:55:07.836613 2019-11-04 21:55:07.836613 1364 \N \N \N 6 PV1-V-713 1 500.00 0.00 \N \N 1904 555 4 1000.0 1 2019-11-05 01:06:25.177791 2019-11-05 01:06:25.177791 1365 8322 \N \N 0 PV3-V-104 1 \N 0.00 \N \N 1905 555 2 1498.0 1 2019-11-05 01:06:34.537812 2019-11-05 01:06:34.537812 1365 \N \N \N 0 PV3-V-104 1 1498.00 0.00 \N \N 1906 555 2 300.0 1 2019-11-05 01:41:49.147363 2019-11-05 01:41:49.147363 1366 \N \N \N 6 PV3-V-105 1 300.00 0.00 \N \N 1907 556 2 750.0 1 2019-11-05 01:59:12.945341 2019-11-05 01:59:12.945341 1367 \N \N \N 0 PV1-V-714 1 750.00 0.00 \N \N 1908 555 2 99.0 1 2019-11-05 03:06:49.155539 2019-11-05 03:06:49.155539 1368 \N \N \N 0 PV3-V-106 1 100.00 1.00 \N \N 1909 558 2 599.0 1 2019-11-05 19:24:13.33288 2019-11-05 19:24:13.33288 1369 \N \N \N 0 PV1-V-715 1 599.00 0.00 \N \N 1910 559 2 250.0 1 2019-11-06 01:21:09.748275 2019-11-06 01:21:09.748275 1370 \N \N \N 6 PV2-V-547 1 250.00 0.00 \N \N 1911 560 2 200.0 1 2019-11-06 17:45:36.247356 2019-11-06 17:45:36.247356 1371 \N \N \N 6 PV2-V-548 1 200.00 0.00 \N \N 1912 560 2 3006.0 1 2019-11-06 19:01:33.213391 2019-11-06 19:01:33.213391 1372 \N \N \N 0 PV2-V-549 1 3006.00 0.00 \N \N 1913 557 2 2398.0 1 2019-11-06 19:04:53.521453 2019-11-06 19:04:53.521453 1373 \N \N \N 0 PV3-V-107 1 2400.00 2.00 \N \N 1914 560 2 200.0 1 2019-11-06 19:51:37.053484 2019-11-06 19:51:37.053484 1374 \N \N \N 6 PV2-V-550 1 200.00 0.00 \N \N 1915 561 2 200.0 1 2019-11-06 22:00:30.494874 2019-11-06 22:00:30.494874 1375 \N \N \N 6 PV1-V-716 1 200.00 0.00 \N \N 1916 \N 3 400.0 1 2019-11-06 22:41:52.440701 2019-11-06 22:41:52.475016 1183 \N \N \N 3 \N 1 \N 0.00 \N \N 0000 1917 561 3 800.0 1 2019-11-06 22:51:00.652235 2019-11-06 22:51:00.683378 808 \N \N \N 3 \N 1 \N 0.00 \N \N CREDITO SAM 1918 560 2 639.0 1 2019-11-06 23:17:51.216566 2019-11-06 23:17:51.216566 1376 \N \N \N 0 PV2-V-551 1 639.00 0.00 \N \N 1919 557 2 350.0 1 2019-11-07 02:12:52.647211 2019-11-07 02:12:52.647211 1377 \N \N \N 0 PV3-V-108 1 500.00 150.00 \N \N 1920 563 2 699.0 1 2019-11-07 17:34:18.562723 2019-11-07 17:34:18.562723 1378 \N \N \N 0 PV2-V-552 1 700.00 1.00 \N \N 1921 563 2 529.0 1 2019-11-07 18:45:36.056057 2019-11-07 18:45:36.056057 1379 \N \N \N 0 PV2-V-553 1 700.00 171.00 \N \N 1922 563 2 699.0 1 2019-11-07 20:32:48.553169 2019-11-07 20:32:48.553169 1211 \N \N \N 7 \N 1 700.00 1.00 \N \N 1923 562 2 1099.0 1 2019-11-07 23:34:28.561415 2019-11-07 23:34:28.561415 1290 \N \N \N 7 \N 1 1500.00 401.00 \N \N 1924 562 2 125.0 1 2019-11-07 23:38:53.341028 2019-11-07 23:38:53.341028 1380 \N \N \N 0 PV3-V-109 1 500.00 375.00 \N \N 1925 563 2 1108.0 1 2019-11-08 00:26:06.804562 2019-11-08 00:26:06.804562 1381 \N \N \N 0 PV2-V-554 1 1108.00 0.00 \N \N 1926 567 2 300.0 1 2019-11-08 19:35:45.104162 2019-11-08 19:35:45.104162 1382 \N \N \N 6 PV3-V-110 1 300.00 0.00 \N \N 1928 566 2 299.0 1 2019-11-08 21:29:07.427623 2019-11-08 21:29:07.427623 1383 \N \N \N 0 PV1-V-717 1 299.00 0.00 \N \N 1929 567 2 1899.0 1 2019-11-09 00:11:48.2862 2019-11-09 00:11:48.2862 1291 \N \N \N 7 \N 1 1910.00 11.00 \N \N 1930 565 2 849.0 1 2019-11-09 01:13:20.888271 2019-11-09 01:13:20.888271 1385 \N \N \N 0 PV2-V-555 1 1000.00 151.00 \N \N 1931 567 2 500.0 1 2019-11-09 01:24:31.873259 2019-11-09 01:24:31.873259 1366 \N \N \N 4 \N 1 500.00 0.00 \N \N 1932 566 1 789.0 1 2019-11-09 01:44:51.14999 2019-11-09 01:44:51.14999 1386 4598 \N \N 0 PV1-V-719 1 \N 0.00 \N \N 1933 568 2 1359.0 1 2019-11-09 17:28:47.002241 2019-11-09 17:28:47.002241 1387 \N \N \N 0 PV2-V-556 1 1359.00 0.00 \N \N 1934 568 2 549.0 1 2019-11-09 17:30:12.925568 2019-11-09 17:30:12.925568 1388 \N \N \N 0 PV2-V-557 1 550.00 1.00 \N \N 1935 570 2 1438.0 1 2019-11-09 19:36:04.322901 2019-11-09 19:36:04.322901 1389 \N \N \N 0 PV1-V-720 1 1438.00 0.00 \N \N 1936 570 2 1299.0 1 2019-11-09 21:06:56.855383 2019-11-09 21:06:56.855383 1390 \N \N \N 0 PV1-V-721 1 1299.00 0.00 \N \N 1937 568 2 700.0 0 2019-11-09 21:14:08.921 2019-11-09 21:14:08.921 \N \N \N 208 2 \N 1 \N \N \N \N 1938 570 2 1328.0 0 2019-11-09 23:00:44.335634 2019-11-09 23:00:44.335634 \N \N \N 209 2 \N 1 \N \N \N \N 1939 570 2 300.0 1 2019-11-09 23:01:12.213518 2019-11-09 23:01:12.247389 1095 \N \N \N 3 \N 1 300.00 0.00 \N \N 1940 570 2 699.0 1 2019-11-10 00:33:24.388337 2019-11-10 00:33:24.388337 1391 \N \N \N 0 PV1-V-722 1 699.00 0.00 \N \N 1941 570 2 300.0 1 2019-11-10 02:03:44.854941 2019-11-10 02:03:44.854941 1392 \N \N \N 6 PV1-V-723 1 300.00 0.00 \N \N 1942 568 2 899.0 1 2019-11-10 02:19:32.079825 2019-11-10 02:19:32.079825 1393 \N \N \N 0 PV2-V-558 1 1000.00 101.00 \N \N 1943 569 2 40.0 0 2019-11-10 03:06:01.32116 2019-11-10 03:06:01.32116 \N \N \N 210 2 \N 1 \N \N \N \N 1944 572 2 499.0 1 2019-11-10 17:38:34.951792 2019-11-10 17:38:34.951792 1394 \N \N \N 0 PV2-V-559 1 500.00 1.00 \N \N 1945 573 1 3247.0 1 2019-11-10 22:09:04.670527 2019-11-10 22:09:04.670527 1395 2120 \N \N 0 PV1-V-724 1 \N 0.00 \N \N 1947 573 3 660.0 1 2019-11-10 22:17:46.23973 2019-11-10 22:17:46.23973 1396 \N \N \N 0 PV1-V-725 1 \N 0.00 \N \N DESCUEN 1948 571 2 500.0 1 2019-11-11 18:17:25.574454 2019-11-11 18:17:25.574454 1397 \N \N \N 6 PV3-V-111 1 500.00 0.00 \N \N 1949 574 2 717.99 1 2019-11-11 18:59:21.733755 2019-11-11 18:59:21.793677 1108 \N \N \N 3 \N 1 717.99 0.00 \N \N 1950 574 2 438.0 1 2019-11-11 19:22:51.212421 2019-11-11 19:22:51.212421 1324 \N \N \N 7 \N 1 438.00 0.00 \N \N 1951 574 2 229.0 1 2019-11-11 20:29:25.283257 2019-11-11 20:29:25.283257 1398 \N \N \N 6 PV1-V-726 1 229.00 0.00 \N \N 1953 574 1 200.0 1 2019-11-11 21:45:52.134285 2019-11-11 21:45:52.134285 1399 7136 \N \N 6 PV1-V-727 1 \N 0.00 \N \N 1954 574 2 200.0 1 2019-11-11 22:41:46.066268 2019-11-11 22:41:46.066268 1401 \N \N \N 6 PV1-V-728 1 200.00 0.00 \N \N 1955 574 1 400.0 1 2019-11-11 22:47:45.414085 2019-11-11 22:47:45.414085 1402 9121 \N \N 6 PV1-V-729 1 \N 0.00 \N \N 1956 575 2 200.0 1 2019-11-12 01:02:26.219996 2019-11-12 01:02:26.219996 1403 \N \N \N 6 PV2-V-561 1 200.00 0.00 \N \N 1957 574 5 1198.5 1 2019-11-12 02:45:27.035698 2019-11-12 02:45:27.035698 1404 \N \N \N 0 PV1-V-730 1 \N 0.00 \N \N UNIVALE RS6C UNIVALE 1958 571 2 80.0 0 2019-11-12 03:06:18.353633 2019-11-12 03:06:18.353633 \N \N \N 211 2 \N 1 \N \N \N \N 1960 577 2 200.0 1 2019-11-12 20:32:34.387725 2019-11-12 20:32:34.387725 1405 \N \N \N 6 PV1-V-731 1 200.00 0.00 \N \N 1961 577 4 598.0 1 2019-11-12 23:46:43.462585 2019-11-12 23:46:43.462585 1406 8047 \N \N 0 PV1-V-732 1 \N 0.00 \N \N 1962 576 2 799.0 1 2019-11-13 01:07:49.243683 2019-11-13 01:07:49.243683 1407 \N \N \N 0 PV3-V-112 1 799.00 0.00 \N \N 1963 577 2 779.0 1 2019-11-13 01:35:53.555517 2019-11-13 01:35:53.555517 1408 \N \N \N 0 PV1-V-733 1 779.00 0.00 \N \N 1964 577 1 1658.0 1 2019-11-13 01:59:38.885904 2019-11-13 01:59:38.885904 1409 5497 \N \N 0 PV1-V-734 1 \N 0.00 \N \N 1965 578 2 459.0 1 2019-11-13 02:46:21.648164 2019-11-13 02:46:21.648164 1410 \N \N \N 0 PV2-V-562 1 500.00 41.00 \N \N 1966 579 2 898.0 1 2019-11-13 18:21:31.256484 2019-11-13 18:21:31.256484 1277 \N \N \N 7 \N 1 900.00 2.00 \N \N 1967 580 1 2046.99 1 2019-11-13 19:08:00.76116 2019-11-13 19:08:00.76116 1411 923 \N \N 0 PV1-V-735 1 \N 0.00 \N \N 1968 580 2 49.0 1 2019-11-13 19:09:50.369548 2019-11-13 19:09:50.369548 1412 \N \N \N 0 PV1-V-736 1 49.00 0.00 \N \N 1969 579 2 899.0 1 2019-11-13 20:12:56.623468 2019-11-13 20:12:56.623468 1219 \N \N \N 7 \N 1 1000.00 101.00 \N \N 1970 579 2 2598.0 1 2019-11-13 20:53:24.84934 2019-11-13 20:53:24.84934 1274 \N \N \N 7 \N 1 2700.00 102.00 \N \N 1971 580 2 214.0 1 2019-11-13 21:20:00.366957 2019-11-13 21:20:00.366957 1413 \N \N \N 0 PV1-V-737 1 214.00 0.00 \N \N 1972 580 2 999.0 1 2019-11-13 22:19:24.325122 2019-11-13 22:19:24.325122 1414 \N \N \N 0 PV1-V-738 1 999.00 0.00 \N \N 1973 580 2 200.0 1 2019-11-13 22:30:49.578912 2019-11-13 22:30:49.578912 1415 \N \N \N 6 PV1-V-739 1 200.00 0.00 \N \N 1974 580 2 629.0 1 2019-11-13 22:32:28.365132 2019-11-13 22:32:28.365132 1375 \N \N \N 7 \N 1 629.00 0.00 \N \N 1975 580 5 2367.0 1 2019-11-13 22:39:44.695453 2019-11-13 22:39:44.695453 1416 \N \N \N 0 PV1-V-740 1 \N 0.00 \N \N UNIVALE RT8N 6378 1976 580 5 2276.0 1 2019-11-13 22:47:41.904514 2019-11-13 22:47:41.904514 1417 \N \N \N 0 PV1-V-741 1 \N 0.00 \N \N UNIVALE RT8U 8761 1977 581 2 699.0 1 2019-11-14 00:34:34.07032 2019-11-14 00:34:34.07032 1418 \N \N \N 0 PV2-V-563 1 1000.00 301.00 \N \N 1978 579 2 400.0 1 2019-11-14 03:02:16.203056 2019-11-14 03:02:16.203056 1419 \N \N \N 6 PV3-V-113 1 400.00 0.00 \N \N 1980 579 2 149.0 1 2019-11-14 03:03:03.153407 2019-11-14 03:03:03.153407 1420 \N \N \N 0 PV3-V-114 1 200.00 51.00 \N \N 1981 579 2 50.0 0 2019-11-14 03:16:02.345914 2019-11-14 03:16:02.345914 \N \N \N 212 2 \N 1 \N \N \N \N 1982 583 2 899.0 1 2019-11-14 19:38:27.82335 2019-11-14 19:38:27.82335 1294 \N \N \N 7 \N 1 1000.00 101.00 \N \N 1983 583 2 59.0 1 2019-11-14 22:17:54.642088 2019-11-14 22:17:54.642088 1393 \N \N \N 5 \N 1 59.00 0.00 16 \N 1984 583 2 699.0 1 2019-11-14 22:53:43.353394 2019-11-14 22:53:43.353394 1421 \N \N \N 0 PV2-V-564 1 700.00 1.00 \N \N 1985 583 2 789.0 1 2019-11-14 23:12:06.548312 2019-11-14 23:12:06.548312 1423 \N \N \N 0 PV2-V-566 1 1000.00 211.00 \N \N 1986 582 2 569.0 1 2019-11-15 01:48:57.444961 2019-11-15 01:48:57.444961 1424 \N \N \N 0 PV3-V-115 1 1000.00 431.00 \N \N 1987 582 2 699.0 1 2019-11-15 01:51:41.833564 2019-11-15 01:51:41.833564 1419 \N \N \N 7 \N 1 700.00 1.00 \N \N 1988 586 2 649.0 1 2019-11-15 17:39:13.435948 2019-11-15 17:39:13.435948 1425 \N \N \N 0 PV2-V-567 1 700.00 51.00 \N \N 1989 587 2 469.0 1 2019-11-15 17:46:28.86618 2019-11-15 17:46:28.86618 1426 \N \N \N 0 PV1-V-742 1 469.00 0.00 \N \N 1990 586 2 1299.0 1 2019-11-15 17:57:22.236642 2019-11-15 17:57:22.236642 1427 \N \N \N 0 PV2-V-568 1 1500.00 201.00 \N \N 1991 587 2 999.0 1 2019-11-15 18:52:58.019806 2019-11-15 18:52:58.019806 1428 \N \N \N 0 PV1-V-743 1 999.00 0.00 \N \N 1992 585 2 759.0 1 2019-11-15 18:53:05.225471 2019-11-15 18:53:05.225471 1429 \N \N \N 0 PV3-V-116 1 760.00 1.00 \N \N 1993 587 2 139.0 1 2019-11-15 19:32:03.499287 2019-11-15 19:32:03.499287 1430 \N \N \N 0 PV1-V-744 1 139.00 0.00 \N \N 1994 587 2 199.0 1 2019-11-15 20:29:25.36543 2019-11-15 20:29:25.36543 1431 \N \N \N 0 PV1-V-745 1 199.00 0.00 \N \N 1995 587 2 200.0 1 2019-11-15 20:34:13.633923 2019-11-15 20:34:13.633923 1432 \N \N \N 6 PV1-V-746 1 200.00 0.00 \N \N 1996 586 2 459.0 1 2019-11-15 22:58:14.914743 2019-11-15 22:58:14.914743 1433 \N \N \N 0 PV2-V-569 1 500.00 41.00 \N \N 1997 585 2 139.0 1 2019-11-15 23:38:53.535547 2019-11-15 23:38:53.535547 1434 \N \N \N 0 PV3-V-117 1 200.00 61.00 \N \N 1998 587 2 249.0 1 2019-11-15 23:57:17.067999 2019-11-15 23:57:17.067999 1281 \N \N \N 7 \N 1 249.00 0.00 \N \N 1999 585 2 899.0 1 2019-11-16 00:36:13.71215 2019-11-16 00:36:13.71215 1435 \N \N \N 0 PV3-V-118 1 1000.00 101.00 \N \N 2000 587 2 50.0 0 2019-11-16 00:53:43.339262 2019-11-16 00:53:43.339262 \N \N \N 213 2 \N 1 \N \N \N \N 2001 587 2 1328.0 0 2019-11-16 00:54:35.72907 2019-11-16 00:54:35.72907 \N \N \N 214 2 \N 1 \N \N \N \N 2002 587 2 200.0 1 2019-11-16 00:55:49.846182 2019-11-16 00:55:49.897863 1095 \N \N \N 3 \N 1 200.00 0.00 \N \N 2003 585 2 2498.0 1 2019-11-16 01:11:53.619708 2019-11-16 01:11:53.619708 1437 \N \N \N 0 PV3-V-120 1 2500.00 2.00 \N \N 2004 585 2 788.0 1 2019-11-16 01:14:13.994874 2019-11-16 01:14:13.994874 1438 \N \N \N 0 PV3-V-121 1 1000.00 212.00 \N \N 2005 585 2 1599.0 1 2019-11-16 01:30:55.91672 2019-11-16 01:30:55.91672 1439 \N \N \N 0 PV3-V-122 1 1600.00 1.00 \N \N 2006 586 2 549.0 1 2019-11-16 01:37:54.160073 2019-11-16 01:37:54.160073 1440 \N \N \N 0 PV2-V-570 1 600.00 51.00 \N \N 2007 586 2 1358.0 1 2019-11-16 01:40:08.661259 2019-11-16 01:40:08.661259 1441 \N \N \N 0 PV2-V-571 1 1360.00 2.00 \N \N 2008 586 2 1199.0 1 2019-11-16 02:15:04.36762 2019-11-16 02:15:04.36762 1442 \N \N \N 0 PV2-V-572 1 1500.00 301.00 \N \N 2009 585 2 729.0 1 2019-11-16 02:28:27.10164 2019-11-16 02:28:27.10164 1443 \N \N \N 0 PV3-V-123 1 750.00 21.00 \N \N 2010 585 2 115.0 1 2019-11-16 02:32:35.579122 2019-11-16 02:32:35.579122 1444 \N \N \N 0 PV3-V-124 1 120.00 5.00 \N \N 2011 588 2 269.0 1 2019-11-16 18:50:38.154327 2019-11-16 18:50:38.154327 1361 \N \N \N 7 \N 1 500.00 231.00 \N \N 2012 589 2 689.0 1 2019-11-16 20:41:54.484668 2019-11-16 20:41:54.484668 1445 \N \N \N 0 PV1-V-747 1 689.00 0.00 \N \N 2013 590 2 699.0 1 2019-11-16 20:45:07.180761 2019-11-16 20:45:07.180761 1446 \N \N \N 0 PV2-V-573 1 699.00 0.00 \N \N 2014 590 2 189.0 1 2019-11-16 21:03:46.254143 2019-11-16 21:03:46.254143 1447 \N \N \N 0 PV2-V-574 1 200.00 11.00 \N \N 2015 590 2 2157.0 1 2019-11-16 21:09:44.402742 2019-11-16 21:09:44.402742 1448 \N \N \N 0 PV2-V-575 1 2200.00 43.00 \N \N 2016 590 2 98.99 1 2019-11-16 21:24:34.047983 2019-11-16 21:24:34.047983 1449 \N \N \N 0 PV2-V-576 1 100.00 1.01 \N \N 2017 588 2 1079.0 1 2019-11-16 21:46:22.852229 2019-11-16 21:46:22.852229 1450 \N \N \N 0 PV3-V-125 1 1100.00 21.00 \N \N 2018 588 2 119.0 1 2019-11-16 21:46:59.361535 2019-11-16 21:46:59.361535 1451 \N \N \N 0 PV3-V-126 1 120.00 1.00 \N \N 2019 589 2 789.0 1 2019-11-16 22:29:58.49959 2019-11-16 22:29:58.49959 1452 \N \N \N 0 PV1-V-748 1 789.00 0.00 \N \N 2020 589 2 204.0 1 2019-11-16 22:49:26.40736 2019-11-16 22:49:26.40736 1453 \N \N \N 0 PV1-V-749 1 204.00 0.00 \N \N 2021 589 2 400.0 1 2019-11-16 22:59:45.06354 2019-11-16 22:59:45.06354 1454 \N \N \N 6 PV1-V-750 1 400.00 0.00 \N \N 2022 589 2 1288.0 1 2019-11-17 00:34:18.360402 2019-11-17 00:34:18.360402 1455 \N \N \N 0 PV1-V-751 1 1288.00 0.00 \N \N 2023 589 4 1429.0 1 2019-11-17 01:10:52.233191 2019-11-17 01:10:52.233191 1456 3107 \N \N 0 PV1-V-752 1 \N 0.00 \N \N 2024 588 2 1859.99 1 2019-11-17 01:13:15.50143 2019-11-17 01:13:15.50143 1457 \N \N \N 0 PV3-V-127 1 2000.00 140.01 \N \N 2025 590 2 900.0 0 2019-11-17 02:09:48.966221 2019-11-17 02:09:48.966221 \N \N \N 215 2 \N 1 \N \N \N \N 2026 588 1 1448.0 1 2019-11-17 02:10:03.369493 2019-11-17 02:10:03.369493 1458 6668 \N \N 0 PV3-V-128 1 \N 0.00 \N \N 2027 588 2 528.0 0 2019-11-17 02:57:20.916337 2019-11-17 02:57:20.916337 \N \N \N 216 2 \N 1 \N \N \N \N 2028 588 2 508.0 0 2019-11-17 02:57:43.048432 2019-11-17 02:57:43.048432 \N \N \N 217 2 \N 1 \N \N \N \N 2029 592 2 738.0 1 2019-11-17 20:02:18.524942 2019-11-17 20:02:18.524942 1459 \N \N \N 0 PV2-V-577 1 750.00 12.00 \N \N 2030 592 2 466.0 1 2019-11-17 20:05:17.519557 2019-11-17 20:05:17.519557 1460 \N \N \N 0 PV2-V-578 1 500.00 34.00 \N \N 2031 593 2 200.0 1 2019-11-17 22:17:19.476143 2019-11-17 22:17:19.476143 1461 \N \N \N 6 PV2-V-579 0 200.00 0.00 \N \N 2032 593 2 200.0 1 2019-11-17 22:18:09.037994 2019-11-17 22:18:09.037994 1462 \N \N \N 6 PV2-V-580 1 200.00 0.00 \N \N 2033 595 1 210.0 1 2019-11-18 18:32:34.252614 2019-11-18 18:32:34.252614 1463 8054 \N \N 6 PV3-V-129 1 \N 0.00 \N \N 2034 596 2 789.0 1 2019-11-18 19:02:02.795204 2019-11-18 19:02:02.795204 1432 \N \N \N 7 \N 1 789.00 0.00 \N \N 2035 596 2 485.0 1 2019-11-18 19:03:33.400445 2019-11-18 19:03:33.400445 1464 \N \N \N 0 PV1-V-753 1 485.00 0.00 \N \N 2036 596 2 934.0 1 2019-11-18 19:07:26.180928 2019-11-18 19:07:26.180928 1465 \N \N \N 0 PV1-V-754 1 934.00 0.00 \N \N 2037 596 2 1267.0 1 2019-11-18 19:17:18.603269 2019-11-18 19:17:18.603269 1466 \N \N \N 0 PV1-V-755 1 1267.00 0.00 \N \N 2038 596 1 75.0 1 2019-11-18 19:35:27.191593 2019-11-18 19:35:27.191593 1467 4698 \N \N 0 PV1-V-756 1 \N 0.00 \N \N 2039 596 2 1200.0 1 2019-11-18 22:22:10.317899 2019-11-18 22:22:10.317899 1468 \N \N \N 0 PV1-V-757 1 1200.00 0.00 \N \N 2040 596 2 1615.0 1 2019-11-18 22:29:34.614182 2019-11-18 22:29:34.614182 1469 \N \N \N 0 PV1-V-758 1 1615.00 0.00 \N \N 2041 595 2 594.15 1 2019-11-19 02:50:43.812017 2019-11-19 02:50:43.812017 1470 \N \N \N 0 PV3-V-130 1 600.00 5.85 \N \N 2042 595 2 10.0 0 2019-11-19 03:06:13.959771 2019-11-19 03:06:13.959771 \N \N \N 218 2 \N 1 \N \N \N \N 2043 598 2 500.0 1 2019-11-19 18:58:09.314555 2019-11-19 18:58:09.314555 1345 \N \N \N 4 \N 1 500.00 0.00 \N \N 2064 602 2 625.0 1 2019-11-22 02:28:57.736139 2019-11-22 02:28:57.736139 1483 \N \N \N 0 PV2-V-583 1 625.00 0.00 \N \N 2045 598 2 218.0 1 2019-11-19 19:10:21.150218 2019-11-19 19:10:21.150218 1472 \N \N \N 0 PV1-V-760 1 218.00 0.00 \N \N 2046 597 2 799.0 1 2019-11-19 22:21:11.121727 2019-11-19 22:21:11.121727 1473 \N \N \N 0 PV3-V-131 1 1000.00 201.00 \N \N 2048 594 4 1357.0 1 2019-11-19 23:44:00.121005 2019-11-19 23:44:00.121005 1296 772 \N \N 7 \N 1 \N 0.00 \N \N 2049 594 4 589.0 1 2019-11-19 23:45:17.833548 2019-11-19 23:45:17.833548 1403 772 \N \N 7 \N 1 \N 0.00 \N \N 2050 598 4 589.0 1 2019-11-19 23:47:14.807198 2019-11-19 23:47:14.807198 1401 772 \N \N 7 \N 1 \N 0.00 \N \N 2051 594 2 500.0 1 2019-11-20 00:39:43.276757 2019-11-20 00:39:43.276757 1235 \N \N \N 4 \N 1 500.00 0.00 \N \N 2052 601 2 1549.0 1 2019-11-20 20:32:19.422109 2019-11-20 20:32:19.422109 1474 \N \N \N 0 PV1-V-761 1 1549.00 0.00 \N \N 2053 601 2 250.0 1 2019-11-20 20:45:30.950599 2019-11-20 20:45:30.950599 1475 \N \N \N 6 PV1-V-762 1 250.00 0.00 \N \N 2054 601 2 1629.0 1 2019-11-20 22:02:13.933772 2019-11-20 22:02:13.933772 1476 \N \N \N 0 PV1-V-763 1 1629.00 0.00 \N \N 2055 601 2 459.0 1 2019-11-21 01:53:35.910611 2019-11-21 01:53:35.910611 1477 \N \N \N 0 PV1-V-764 1 459.00 0.00 \N \N 2056 602 2 349.0 1 2019-11-21 19:41:28.028188 2019-11-21 19:41:28.028188 1323 \N \N \N 7 \N 1 349.00 0.00 \N \N 2057 603 2 500.0 1 2019-11-21 19:51:26.780362 2019-11-21 19:51:26.780362 1478 \N \N \N 6 PV1-V-765 1 500.00 0.00 \N \N 2058 602 2 168.0 1 2019-11-21 23:11:20.028947 2019-11-21 23:11:20.028947 1479 \N \N \N 0 PV2-V-581 1 200.00 32.00 \N \N 2059 603 5 3997.0 1 2019-11-21 23:49:08.477935 2019-11-21 23:49:08.477935 1480 \N \N \N 0 PV1-V-766 1 \N 0.00 \N \N UNIVALE 0000RNNF 0992077451818 2060 602 2 789.0 1 2019-11-22 00:39:07.242409 2019-11-22 00:39:07.242409 1481 \N \N \N 0 PV2-V-582 1 800.00 11.00 \N \N 2061 602 5 1538.0 1 2019-11-22 01:23:49.551994 2019-11-22 01:23:49.551994 1482 \N \N \N 0 PV2-V-583 1 \N 0.00 \N \N UNIVALE RYGT 1011065781960 2062 599 2 399.0 1 2019-11-22 01:25:11.379233 2019-11-22 01:25:11.379233 1366 \N \N \N 7 \N 1 500.00 101.00 \N \N 2063 603 2 469.0 1 2019-11-22 02:28:03.337957 2019-11-22 02:28:03.337957 1364 \N \N \N 7 \N 1 469.00 0.00 \N \N 2065 604 2 449.0 1 2019-11-22 17:36:35.242184 2019-11-22 17:36:35.242184 1371 \N \N \N 7 \N 1 449.00 0.00 \N \N 2066 606 2 315.0 1 2019-11-22 17:41:33.577152 2019-11-22 17:41:33.577152 1484 \N \N \N 0 PV1-V-767 1 315.00 0.00 \N \N 2067 606 2 200.0 1 2019-11-22 17:51:01.758469 2019-11-22 17:51:01.758469 1485 \N \N \N 6 PV1-V-768 1 200.00 0.00 \N \N 2068 606 2 899.0 1 2019-11-22 18:50:39.392161 2019-11-22 18:50:39.392161 1486 \N \N \N 0 PV1-V-769 1 899.00 0.00 \N \N 2069 606 2 1499.0 1 2019-11-22 20:43:50.700681 2019-11-22 20:43:50.700681 1402 \N \N \N 7 \N 1 1499.00 0.00 \N \N 2070 606 2 500.0 1 2019-11-22 20:45:29.997003 2019-11-22 20:45:29.997003 1398 \N \N \N 7 \N 1 500.00 0.00 \N \N 2072 606 1 1349.0 1 2019-11-22 21:27:56.77029 2019-11-22 21:27:56.77029 1487 1975 \N \N 0 PV1-V-770 1 \N 0.00 \N \N 2073 606 2 600.0 1 2019-11-23 01:00:50.758107 2019-11-23 01:00:50.758107 1488 \N \N \N 6 PV1-V-771 1 600.00 0.00 \N \N 2074 606 2 429.0 1 2019-11-23 01:05:11.135794 2019-11-23 01:05:11.135794 1285 \N \N \N 7 \N 1 429.00 0.00 \N \N 2075 606 1 459.0 1 2019-11-23 02:08:37.013841 2019-11-23 02:08:37.013841 1489 2929 \N \N 0 PV1-V-772 1 \N 0.00 \N \N 2076 608 1 729.0 1 2019-11-23 17:58:47.254298 2019-11-23 17:58:47.254298 1490 2199 \N \N 0 PV2-V-585 1 \N 0.00 \N \N 2077 608 2 1299.0 1 2019-11-23 18:21:26.88689 2019-11-23 18:21:26.88689 1491 \N \N \N 0 PV2-V-586 1 1500.00 201.00 \N \N 2078 608 2 649.0 1 2019-11-23 19:33:36.898305 2019-11-23 19:33:36.898305 1492 \N \N \N 0 PV2-V-587 1 700.00 51.00 \N \N 2079 609 2 499.0 1 2019-11-23 19:51:46.179606 2019-11-23 19:51:46.179606 1493 \N \N \N 0 PV1-V-773 1 499.00 0.00 \N \N 2080 609 4 500.0 1 2019-11-23 19:52:41.654733 2019-11-23 19:52:41.654733 1493 3719 \N \N 0 PV1-V-773 1 \N 0.00 \N \N 2081 609 2 298.0 1 2019-11-23 20:57:08.79075 2019-11-23 20:57:08.84474 1494 \N \N \N 3 \N 1 298.00 0.00 \N \N 2082 607 2 180.0 1 2019-11-23 21:04:22.725671 2019-11-23 21:04:22.725671 1495 \N \N \N 0 PV3-V-132 1 200.00 20.00 \N \N 2083 607 2 549.0 1 2019-11-23 21:54:17.967393 2019-11-23 21:54:17.967393 1496 \N \N \N 0 PV3-V-133 1 550.00 1.00 \N \N 2084 607 2 338.0 1 2019-11-23 22:07:36.97917 2019-11-23 22:07:36.97917 1497 \N \N \N 0 PV3-V-134 1 400.00 62.00 \N \N 2085 607 2 629.0 1 2019-11-23 22:28:44.916157 2019-11-23 22:28:44.916157 1498 \N \N \N 0 PV3-V-135 1 700.00 71.00 \N \N 2086 609 2 149.0 1 2019-11-23 22:30:46.610916 2019-11-23 22:30:46.610916 1499 \N \N \N 0 PV1-V-774 1 149.00 0.00 \N \N 2087 609 2 1328.0 0 2019-11-23 23:23:06.370669 2019-11-23 23:23:06.370669 \N \N \N 219 2 \N 1 \N \N \N \N 2088 608 2 0 1 2019-11-24 00:08:10.215688 2019-11-24 00:08:10.215688 1270 \N \N \N 4 \N 1 500.00 500.00 \N \N 2089 608 2 500.0 1 2019-11-24 00:08:49.95057 2019-11-24 00:08:49.95057 1270 \N \N \N 7 \N 1 500.00 0.00 \N \N 2090 608 2 100.0 1 2019-11-24 00:11:12.990543 2019-11-24 00:11:12.990543 1269 \N \N \N 4 \N 1 100.00 0.00 \N \N 2091 607 2 1299.0 1 2019-11-24 00:13:27.134007 2019-11-24 00:13:27.134007 1267 \N \N \N 7 \N 1 1500.00 201.00 \N \N 2092 608 2 549.0 1 2019-11-24 00:28:36.685767 2019-11-24 00:28:36.685767 1500 \N \N \N 0 PV2-V-589 1 600.00 51.00 \N \N 2093 609 2 1099.0 1 2019-11-24 00:59:14.144213 2019-11-24 00:59:14.144213 1501 \N \N \N 0 PV1-V-775 1 1099.00 0.00 \N \N 2094 608 2 1040.0 0 2019-11-24 01:46:36.762234 2019-11-24 01:46:36.762234 \N \N \N 220 2 \N 1 \N \N \N \N 2095 607 2 530.0 0 2019-11-24 02:36:27.218348 2019-11-24 02:36:27.218348 \N \N \N 221 2 \N 1 \N \N \N \N 2096 608 2 49.0 1 2019-11-24 02:56:22.318124 2019-11-24 02:56:22.318124 1502 \N \N \N 0 PV2-V-590 1 500.00 451.00 \N \N 2097 612 1 1099.0 1 2019-11-24 19:23:24.318087 2019-11-24 19:23:24.318087 1503 9399 \N \N 0 PV1-V-776 1 \N 0.00 \N \N 2098 613 1 700.0 1 2019-11-25 17:16:00.6952 2019-11-25 17:16:00.6952 1330 5044 \N \N 7 \N 1 \N 0.00 \N \N 2099 614 2 649.0 1 2019-11-25 18:54:32.657263 2019-11-25 18:54:32.657263 1504 \N \N \N 0 PV2-V-591 1 700.00 51.00 \N \N 2100 613 2 149.0 1 2019-11-25 19:42:53.794704 2019-11-25 19:42:53.794704 1505 \N \N \N 0 PV1-V-777 1 149.00 0.00 \N \N 2101 613 2 50.0 0 2019-11-25 21:24:04.492293 2019-11-25 21:24:04.492293 \N \N \N 222 2 \N 1 \N \N \N \N 2102 613 2 999.0 1 2019-11-25 22:57:16.837891 2019-11-25 22:57:16.837891 1506 \N \N \N 0 PV1-V-778 1 999.00 0.00 \N \N 2103 614 1 1299.0 1 2019-11-26 00:12:51.7751 2019-11-26 00:12:51.7751 1507 7674 \N \N 0 PV2-V-592 1 \N 0.00 \N \N 2104 615 2 500.0 1 2019-11-26 18:46:55.180403 2019-11-26 18:46:55.180403 1508 \N \N \N 6 PV3-V-136 1 500.00 0.00 \N \N 2105 616 2 699.0 1 2019-11-26 20:41:33.748109 2019-11-26 20:41:33.748109 1509 \N \N \N 0 PV1-V-779 1 699.00 0.00 \N \N 2106 617 4 699.0 1 2019-11-26 21:41:39.857086 2019-11-26 21:41:39.857086 1510 1834 \N \N 0 PV2-V-593 1 \N 0.00 \N \N 2107 616 1 1199.0 1 2019-11-26 22:24:50.703674 2019-11-26 22:24:50.703674 1511 8691 \N \N 0 PV1-V-780 1 \N 0.00 \N \N 2108 615 2 549.0 1 2019-11-26 23:37:33.737048 2019-11-26 23:37:33.737048 1512 \N \N \N 0 PV3-V-137 1 550.00 1.00 \N \N 2109 617 2 500.0 1 2019-11-26 23:37:49.169656 2019-11-26 23:37:49.169656 1513 \N \N \N 6 PV2-V-594 1 500.00 0.00 \N \N 2110 616 2 2498.0 1 2019-11-26 23:43:23.380896 2019-11-26 23:43:23.380896 1514 \N \N \N 0 PV1-V-781 1 2498.00 0.00 \N \N 2111 616 1 1118.0 1 2019-11-27 00:11:01.782232 2019-11-27 00:11:01.782232 1311 3982 \N \N 7 \N 1 \N 0.00 \N \N 2112 617 2 599.0 1 2019-11-27 01:30:00.894904 2019-11-27 01:30:00.894904 1515 \N \N \N 0 PV2-V-595 1 599.00 0.00 \N \N 2113 616 1 899.0 1 2019-11-27 02:38:55.336182 2019-11-27 02:38:55.336182 1516 673 \N \N 0 PV1-V-782 1 \N 0.00 \N \N 2114 617 2 541.0 0 2019-11-27 02:45:54.642271 2019-11-27 02:45:54.642271 \N \N \N 223 2 \N 1 \N \N \N \N 2115 616 2 1500.0 0 2019-11-27 02:46:03.095303 2019-11-27 02:46:03.095303 \N \N \N 224 2 \N 1 \N \N \N \N 2116 618 2 999.0 1 2019-11-27 20:53:32.364568 2019-11-27 20:53:32.364568 1517 \N \N \N 0 PV2-V-596 1 1000.00 1.00 \N \N 2117 620 2 1099.0 1 2019-11-27 22:14:13.342019 2019-11-27 22:14:13.342019 1518 \N \N \N 0 PV3-V-138 1 1100.00 1.00 \N \N 2118 618 2 49.0 1 2019-11-27 23:06:02.419819 2019-11-27 23:06:02.419819 1519 \N \N \N 0 PV2-V-597 1 100.00 51.00 \N \N 2119 618 5 1498.0 1 2019-11-28 02:11:41.201227 2019-11-28 02:11:41.201227 1520 \N \N \N 0 PV2-V-598 1 \N 0.00 \N \N UNIVALE S30D 1218084899075 2121 620 2 1099.0 1 2019-11-28 02:51:45.034472 2019-11-28 02:51:45.034472 1353 \N \N \N 7 \N 1 1100.00 1.00 \N \N 2122 622 2 0 1 2019-11-28 17:32:25.911163 2019-11-28 17:32:25.911163 1357 \N \N \N 4 \N 1 400.00 400.00 \N \N 2123 622 2 289.0 1 2019-11-28 17:32:43.392678 2019-11-28 17:32:43.392678 1357 \N \N \N 7 \N 1 400.00 111.00 \N \N 2124 621 2 600.0 1 2019-11-28 20:09:28.183577 2019-11-28 20:09:28.183577 1518 \N \N \N 5 \N 1 600.00 0.00 18 \N 2125 621 2 600.0 1 2019-11-28 20:09:49.67701 2019-11-28 20:09:49.67701 1518 \N \N \N 5 \N 1 600.00 0.00 18 \N 2126 623 2 149.0 1 2019-11-28 20:42:09.112377 2019-11-28 20:42:09.112377 1521 \N \N \N 0 PV1-V-783 1 149.00 0.00 \N \N 2127 623 2 200.0 1 2019-11-28 20:52:24.962259 2019-11-28 20:52:24.962259 1522 \N \N \N 6 PV1-V-784 1 200.00 0.00 \N \N 2128 622 2 759.0 1 2019-11-28 22:44:54.7466 2019-11-28 22:44:54.7466 1523 \N \N \N 0 PV2-V-599 1 1000.00 241.00 \N \N 2129 622 2 399.0 1 2019-11-28 23:32:45.615816 2019-11-28 23:32:45.615816 1513 \N \N \N 7 \N 1 400.00 1.00 \N \N 2130 622 2 899.0 1 2019-11-29 01:57:38.588462 2019-11-29 01:57:38.588462 1524 \N \N \N 0 PV2-V-600 1 899.00 0.00 \N \N 2131 623 2 749.0 1 2019-11-29 01:59:51.345585 2019-11-29 01:59:51.345585 1525 \N \N \N 0 PV1-V-785 1 749.00 0.00 \N \N 2132 623 2 500.0 1 2019-11-29 02:03:08.577862 2019-11-29 02:03:08.577862 1526 \N \N \N 6 PV1-V-786 1 500.00 0.00 \N \N 2133 625 1 1099.0 1 2019-11-29 19:27:25.520795 2019-11-29 19:27:25.520795 1527 6679 \N \N 0 PV2-V-601 1 \N 0.00 \N \N 2134 626 2 749.0 1 2019-11-29 22:06:08.088444 2019-11-29 22:06:08.088444 1528 \N \N \N 0 PV1-V-787 1 749.00 0.00 \N \N 2135 626 2 200.0 1 2019-11-29 22:10:10.095147 2019-11-29 22:10:10.095147 1529 \N \N \N 6 PV1-V-788 1 200.00 0.00 \N \N 2137 626 2 500.0 1 2019-11-29 23:30:22.112611 2019-11-29 23:30:22.112611 1531 \N \N \N 6 PV1-V-789 1 500.00 0.00 \N \N 2138 625 1 1299.0 1 2019-11-29 23:33:14.912488 2019-11-29 23:33:14.912488 1532 1394 \N \N 0 PV2-V-603 1 \N 0.00 \N \N 2139 626 1 449.0 1 2019-11-30 00:38:33.637672 2019-11-30 00:38:33.637672 1533 7556 \N \N 0 PV1-V-790 1 \N 0.00 \N \N 2140 626 1 1399.0 1 2019-11-30 01:10:39.012425 2019-11-30 01:10:39.012425 1534 8353 \N \N 0 PV1-V-791 1 \N 0.00 \N \N 2141 626 2 119.0 1 2019-11-30 01:52:17.196998 2019-11-30 01:52:17.196998 1535 \N \N \N 0 PV1-V-792 1 119.00 0.00 \N \N 2142 627 1 1099.0 1 2019-11-30 18:03:27.622358 2019-11-30 18:03:27.622358 1536 426 \N \N 0 PV2-V-604 1 \N 0.00 \N \N 2143 628 2 1200.0 1 2019-11-30 18:20:02.382715 2019-11-30 18:20:02.382715 1537 \N \N \N 0 PV1-V-793 1 1200.00 0.00 \N \N 2144 628 2 20.0 0 2019-11-30 19:55:36.942997 2019-11-30 19:55:36.942997 \N \N \N 225 2 \N 1 \N \N \N \N 2145 624 4 1599.0 1 2019-11-30 20:45:13.788357 2019-11-30 20:45:13.788357 1265 0 \N \N 7 \N 1 \N 0.00 \N \N 2147 627 2 759.0 1 2019-11-30 21:08:34.494732 2019-11-30 21:08:34.494732 1539 \N \N \N 0 PV2-V-606 1 1000.00 241.00 \N \N 2149 627 2 598.0 1 2019-11-30 21:22:50.8726 2019-11-30 21:22:50.8726 1235 \N \N \N 7 \N 1 600.00 2.00 \N \N 2150 628 2 349.0 1 2019-11-30 21:58:14.069336 2019-11-30 21:58:14.069336 1454 \N \N \N 7 \N 1 350.00 1.00 \N \N 2151 624 2 789.0 1 2019-11-30 23:34:16.127235 2019-11-30 23:34:16.127235 1541 \N \N \N 0 PV3-V-140 1 800.00 11.00 \N \N 2152 \N 2 500.0 1 2019-11-30 23:50:33.264405 2019-11-30 23:50:33.304366 1542 \N \N \N 3 \N 1 500.00 0.00 \N \N 2153 624 2 528.0 0 2019-12-01 00:56:38.258913 2019-12-01 00:56:38.258913 \N \N \N 226 2 \N 1 \N \N \N \N 2154 628 2 300.0 1 2019-12-01 01:15:34.290097 2019-12-01 01:15:34.327127 1494 \N \N \N 3 \N 1 300.00 0.00 \N \N 2155 627 1 599.0 1 2019-12-01 01:29:15.512014 2019-12-01 01:29:15.512014 1543 3278 \N \N 0 PV2-V-607 1 \N 0.00 \N \N 2156 624 2 1399.0 1 2019-12-01 02:02:43.543028 2019-12-01 02:02:43.543028 1544 \N \N \N 0 PV3-V-142 1 1500.00 101.00 \N \N 2157 627 1 659.0 1 2019-12-01 02:06:11.00621 2019-12-01 02:06:11.00621 1545 6792 \N \N 0 PV2-V-608 1 \N 0.00 \N \N 2158 627 2 699.0 1 2019-12-01 02:13:17.837091 2019-12-01 02:13:17.837091 1546 \N \N \N 0 PV2-V-609 1 699.00 0.00 \N \N 2159 628 2 480.0 1 2019-12-01 02:13:38.364765 2019-12-01 02:13:38.364765 1547 \N \N \N 0 PV1-V-794 1 480.00 0.00 \N \N 2160 627 2 880.0 0 2019-12-01 02:36:55.315276 2019-12-01 02:36:55.315276 \N \N \N 227 2 \N 1 \N \N \N \N 2161 628 2 1328.0 0 2019-12-01 02:37:53.50088 2019-12-01 02:37:53.50088 \N \N \N 228 2 \N 1 \N \N \N \N 2162 632 1 649.0 1 2019-12-01 19:58:36.137473 2019-12-01 19:58:36.137473 1548 7049 \N \N 0 PV1-V-795 1 \N 0.00 \N \N 2163 630 2 1199.0 1 2019-12-01 20:58:52.952216 2019-12-01 20:58:52.952216 1549 \N \N \N 0 PV3-V-143 1 1500.00 301.00 \N \N 2165 632 2 1049.0 1 2019-12-01 20:59:52.196827 2019-12-01 20:59:52.196827 1478 \N \N \N 7 \N 1 1049.00 0.00 \N \N 2166 630 2 200.0 1 2019-12-01 21:01:04.911539 2019-12-01 21:01:04.911539 1550 \N \N \N 6 PV3-V-144 1 500.00 300.00 \N \N 2167 630 2 829.0 1 2019-12-01 23:03:38.570618 2019-12-01 23:03:38.570618 1551 \N \N \N 0 PV3-V-145 1 1000.00 171.00 \N \N 2168 633 2 1249.0 1 2019-12-02 18:26:08.624195 2019-12-02 18:26:08.624195 1212 \N \N \N 7 \N 1 1500.00 251.00 \N \N 2169 634 2 999.0 1 2019-12-02 19:41:51.570156 2019-12-02 19:41:51.570156 1552 \N \N \N 0 PV2-V-610 1 1000.00 1.00 \N \N 2170 634 2 49.0 1 2019-12-02 20:52:56.855554 2019-12-02 20:52:56.855554 1553 \N \N \N 0 PV2-V-611 1 50.00 1.00 \N \N 2171 633 2 699.0 1 2019-12-02 21:04:47.304114 2019-12-02 21:04:47.304114 1397 \N \N \N 7 \N 1 700.00 1.00 \N \N 2172 635 2 1199.0 1 2019-12-02 21:07:25.973956 2019-12-02 21:07:25.973956 1554 \N \N \N 0 PV1-V-796 1 1200.00 1.00 \N \N 2173 635 2 500.0 1 2019-12-02 23:33:29.260276 2019-12-02 23:33:29.260276 1531 \N \N \N 4 \N 1 500.00 0.00 \N \N 2174 635 3 799.0 1 2019-12-02 23:49:34.369414 2019-12-02 23:49:34.369414 877 \N \N \N 7 \N 1 \N 0.00 \N \N CREDITO SAM 2175 633 2 230.0 1 2019-12-03 01:34:53.497481 2019-12-03 01:34:53.497481 1555 \N \N \N 0 PV3-V-146 1 1000.00 770.00 \N \N 2176 635 1 899.0 1 2019-12-03 03:02:48.483237 2019-12-03 03:02:48.483237 1556 8400 \N \N 0 PV1-V-797 1 \N 0.00 \N \N 2696 715 2 449.0 1 2019-12-31 17:33:27.019275 2019-12-31 17:33:27.063159 1597 \N \N \N 3 \N 1 449.00 0.00 \N \N 2177 637 2 650.0 1 2019-12-03 17:59:16.234402 2019-12-03 17:59:16.234402 1557 \N \N \N 6 PV1-V-798 1 650.00 0.00 \N \N 2178 637 2 500.0 1 2019-12-03 20:00:20.232122 2019-12-03 20:00:20.232122 1345 \N \N \N 4 \N 1 500.00 0.00 \N \N 2180 638 2 149.0 1 2019-12-03 22:47:55.277201 2019-12-03 22:47:55.277201 1269 \N \N \N 7 \N 1 549.00 400.00 \N \N 2181 636 2 569.0 1 2019-12-03 23:25:24.884323 2019-12-03 23:25:24.884323 1559 \N \N \N 0 PV3-V-147 1 570.00 1.00 \N \N 2182 638 1 899.0 1 2019-12-04 00:54:29.13936 2019-12-04 00:54:29.13936 1560 2425 \N \N 0 PV2-V-612 1 \N 0.00 \N \N 2183 637 2 829.0 1 2019-12-04 01:25:57.87861 2019-12-04 01:25:57.87861 1488 \N \N \N 7 \N 1 850.00 21.00 \N \N 2184 637 2 250.0 0 2019-12-04 01:59:48.129946 2019-12-04 01:59:48.129946 \N \N \N 229 2 \N 1 \N \N \N \N 2185 639 1 500.0 1 2019-12-04 20:08:01.868413 2019-12-04 20:08:01.868413 1561 0 \N \N 6 PV3-V-148 1 \N 0.00 \N \N 2186 641 2 98.99 1 2019-12-04 20:34:22.248525 2019-12-04 20:34:22.248525 1562 \N \N \N 0 PV1-V-800 1 100.00 1.01 \N \N 2187 641 2 389.0 1 2019-12-04 20:41:29.464276 2019-12-04 20:41:29.464276 1563 \N \N \N 0 PV1-V-801 1 400.00 11.00 \N \N 2188 641 5 0 1 2019-12-04 22:45:24.052993 2019-12-04 22:45:24.052993 1564 \N \N \N 0 PV1-V-802 1 \N 0.00 \N \N UNIVALE 000RYK7 CLAUDA PAYAN 2189 641 5 1222.3 1 2019-12-04 22:45:35.736527 2019-12-04 22:45:35.736527 1564 \N \N \N 0 PV1-V-802 1 \N 0.00 \N \N UNIVALE 000RYK7 CLAUDA PAYAN 2190 641 2 1098.0 1 2019-12-04 23:18:43.259409 2019-12-04 23:18:43.259409 1565 \N \N \N 0 PV1-V-803 1 1100.00 2.00 \N \N 2191 641 1 1199.0 1 2019-12-04 23:35:05.668568 2019-12-04 23:35:05.668568 1566 496 \N \N 0 PV1-V-804 1 \N 0.00 \N \N 2192 640 2 0 1 2019-12-05 00:12:52.042808 2019-12-05 00:12:52.042808 1462 \N \N \N 4 \N 1 499.00 499.00 \N \N 2193 640 2 499.0 1 2019-12-05 00:13:06.624653 2019-12-05 00:13:06.624653 1462 \N \N \N 7 \N 1 500.00 1.00 \N \N 2194 641 2 1629.0 1 2019-12-05 00:21:50.314484 2019-12-05 00:21:50.314484 1567 \N \N \N 0 PV1-V-805 1 1700.00 71.00 \N \N 2195 639 4 799.0 1 2019-12-05 00:31:11.719241 2019-12-05 00:31:11.719241 1568 0 \N \N 0 PV3-V-149 1 \N 0.00 \N \N 2196 639 2 1248.0 1 2019-12-05 01:00:23.6297 2019-12-05 01:00:23.6297 1569 \N \N \N 0 PV3-V-150 1 1250.00 2.00 \N \N 2197 640 1 899.0 1 2019-12-05 01:29:25.260275 2019-12-05 01:29:25.260275 1570 7726 \N \N 0 PV2-V-613 1 \N 0.00 \N \N 2198 643 1 899.0 1 2019-12-05 20:31:12.779753 2019-12-05 20:31:12.779753 1571 9758 \N \N 0 PV2-V-614 1 \N 0.00 \N \N 2200 642 1 1488.0 1 2019-12-05 20:56:28.740934 2019-12-05 20:56:28.740934 1572 0 \N \N 0 PV3-V-151 1 \N 0.00 \N \N 2201 644 2 690.0 1 2019-12-05 21:40:20.245158 2019-12-05 21:40:20.245158 1574 \N \N \N 0 PV1-V-807 1 700.00 10.00 \N \N 2202 643 2 699.0 1 2019-12-05 21:55:18.957866 2019-12-05 21:55:18.957866 1575 \N \N \N 0 PV2-V-615 1 1000.00 301.00 \N \N 2203 644 5 599.0 1 2019-12-05 22:05:11.784915 2019-12-05 22:05:11.784915 1576 \N \N \N 0 PV1-V-808 1 \N 0.00 \N \N UNIVALE 0000S8O2 ANACRI 2204 643 5 1129.0 1 2019-12-05 22:07:52.769 2019-12-05 22:07:52.769 1577 \N \N \N 0 PV2-V-616 1 \N 0.00 \N \N uinivale 0000s8o2 anacrs 2205 644 2 699.0 1 2019-12-05 22:34:20.861557 2019-12-05 22:34:20.861557 1578 \N \N \N 0 PV1-V-809 1 700.00 1.00 \N \N 2206 642 2 789.0 1 2019-12-05 23:18:56.013391 2019-12-05 23:18:56.013391 1579 \N \N \N 0 PV3-V-152 1 800.00 11.00 \N \N 2207 644 2 1899.0 1 2019-12-05 23:50:13.875768 2019-12-05 23:50:13.875768 1580 \N \N \N 0 PV1-V-810 1 1900.00 1.00 \N \N 2208 644 2 1299.0 1 2019-12-06 01:49:40.713407 2019-12-06 01:49:40.713407 1581 \N \N \N 0 PV1-V-811 1 1299.00 0.00 \N \N 2209 644 2 10.0 0 2019-12-06 02:52:07.764038 2019-12-06 02:52:07.764038 \N \N 4 230 2 \N 1 \N \N \N \N 2210 646 4 1399.0 1 2019-12-06 17:42:04.741554 2019-12-06 17:42:04.741554 1582 1371 \N \N 0 PV2-V-617 1 \N 0.00 \N \N 2212 646 2 400.0 1 2019-12-06 19:47:17.699834 2019-12-06 19:47:17.699834 1583 \N \N \N 6 PV2-V-618 1 500.00 100.00 \N \N 2213 645 3 499.0 1 2019-12-06 21:29:37.295688 2019-12-06 21:29:37.355444 1183 \N \N \N 3 \N 1 \N 0.00 \N \N CREDITO SAM 2214 646 4 549.0 1 2019-12-07 00:07:01.056815 2019-12-07 00:07:01.056815 1584 5272 \N \N 0 PV2-V-619 1 \N 0.00 \N \N 2215 646 2 299.0 1 2019-12-07 00:55:00.194708 2019-12-07 00:55:00.194708 1585 \N \N \N 0 PV2-V-620 1 299.00 0.00 \N \N 2216 646 2 699.0 1 2019-12-07 01:08:52.22205 2019-12-07 01:08:52.22205 1586 \N \N \N 0 PV2-V-621 1 699.00 0.00 \N \N 2217 647 2 729.0 1 2019-12-07 01:10:31.749438 2019-12-07 01:10:31.749438 1587 \N \N \N 0 PV1-V-812 1 729.00 0.00 \N \N 2218 647 2 999.0 1 2019-12-07 02:30:10.16267 2019-12-07 02:30:10.16267 1588 \N \N \N 0 PV1-V-813 1 1000.00 1.00 \N \N 2219 648 2 150.0 1 2019-12-07 17:12:18.954188 2019-12-07 17:12:18.954188 1485 \N \N \N 4 \N 1 150.00 0.00 \N \N 2220 648 1 739.0 1 2019-12-07 19:17:03.764703 2019-12-07 19:17:03.764703 1589 9770 \N \N 0 PV1-V-814 1 \N 0.00 \N \N 2221 645 2 779.0 1 2019-12-07 19:36:59.228719 2019-12-07 19:36:59.228719 1590 \N \N \N 0 PV3-V-153 1 800.00 21.00 \N \N 2222 649 4 899.0 1 2019-12-07 20:11:58.107218 2019-12-07 20:11:58.107218 1592 3507 \N \N 0 PV2-V-623 1 \N 0.00 \N \N 2223 645 2 779.0 1 2019-12-07 20:19:49.289202 2019-12-07 20:19:49.289202 1593 \N \N \N 0 PV3-V-154 1 800.00 21.00 \N \N 2224 649 2 549.0 1 2019-12-07 20:57:16.358814 2019-12-07 20:57:16.358814 1594 \N \N \N 0 PV2-V-624 1 700.00 151.00 \N \N 2225 648 2 77.0 0 2019-12-07 21:17:52.449941 2019-12-07 21:17:52.449941 \N \N \N 231 2 \N 1 \N \N \N \N 2226 649 2 699.0 1 2019-12-07 21:28:28.065722 2019-12-07 21:28:28.065722 1595 \N \N \N 0 PV2-V-625 1 700.00 1.00 \N \N 2227 648 2 110.0 1 2019-12-07 22:01:41.848397 2019-12-07 22:01:41.848397 1415 \N \N \N 7 \N 1 110.00 0.00 \N \N 2228 649 2 150.0 1 2019-12-07 22:08:07.540632 2019-12-07 22:08:07.540632 1596 \N \N \N 6 PV2-V-626 1 150.00 0.00 \N \N 2229 648 2 450.0 1 2019-12-07 22:09:27.5186 2019-12-07 22:09:27.5186 1597 \N \N \N 3 \N 1 450.00 0.00 \N \N 2230 649 2 549.0 1 2019-12-07 23:06:24.330553 2019-12-07 23:06:24.330553 1598 \N \N \N 0 PV2-V-627 1 700.00 151.00 \N \N 2231 648 2 500.0 1 2019-12-07 23:23:11.858816 2019-12-07 23:23:11.858816 1599 \N \N \N 6 PV1-V-816 1 500.00 0.00 \N \N 2232 648 1 749.0 1 2019-12-07 23:24:49.765486 2019-12-07 23:24:49.765486 1600 8158 \N \N 0 PV1-V-817 1 \N 0.00 \N \N 2233 648 2 150.0 1 2019-12-07 23:26:45.687642 2019-12-07 23:26:45.687642 1601 \N \N \N 0 PV1-V-818 1 150.00 0.00 \N \N 2234 648 2 729.0 1 2019-12-07 23:33:02.358422 2019-12-07 23:33:02.358422 1602 \N \N \N 0 PV1-V-819 1 729.00 0.00 \N \N 2235 648 1 459.0 1 2019-12-07 23:40:10.149615 2019-12-07 23:40:10.149615 1603 1724 \N \N 0 PV1-V-820 1 \N 0.00 \N \N 2237 648 2 1399.0 1 2019-12-07 23:45:08.780186 2019-12-07 23:45:08.780186 1605 \N \N \N 0 PV1-V-821 1 1400.00 1.00 \N \N 2236 649 2 49.0 1 2019-12-07 23:44:53.392615 2019-12-07 23:44:53.392615 1604 \N \N \N 0 PV2-V-628 1 50.00 1.00 \N \N 2238 645 1 747.0 1 2019-12-07 23:51:20.018322 2019-12-07 23:51:20.018322 1606 0 \N \N 0 PV3-V-155 1 \N 0.00 \N \N 2239 648 1 1199.0 1 2019-12-07 23:57:14.377983 2019-12-07 23:57:14.377983 1607 9194 \N \N 0 PV1-V-821 1 \N 0.00 \N \N 2240 648 1 825.0 1 2019-12-08 00:03:42.773575 2019-12-08 00:03:42.773575 1608 8158 \N \N 0 PV1-V-823 1 \N 0.00 \N \N 2241 645 1 1223.0 1 2019-12-08 01:48:02.198176 2019-12-08 01:48:02.198176 1609 0 \N \N 0 PV3-V-156 1 \N 0.00 \N \N 2242 648 2 800.0 0 2019-12-08 02:48:40.735915 2019-12-08 02:48:40.735915 \N \N \N 232 2 \N 1 \N \N \N \N 2243 649 2 1130.0 0 2019-12-08 02:58:48.624704 2019-12-08 02:58:48.624704 \N \N \N 233 2 \N 1 \N \N \N \N 2244 651 2 949.0 1 2019-12-08 18:20:20.207054 2019-12-08 18:20:20.207054 1610 \N \N \N 0 PV1-V-824 1 1000.00 51.00 \N \N 2247 650 2 549.0 1 2019-12-08 18:40:51.815282 2019-12-08 18:40:51.815282 1611 \N \N \N 0 PV2-V-629 1 550.00 1.00 \N \N 2248 653 2 699.0 1 2019-12-09 17:38:17.372258 2019-12-09 17:38:17.372258 1612 \N \N \N 0 PV1-V-825 1 699.00 0.00 \N \N 2249 654 2 899.0 1 2019-12-09 17:52:54.669721 2019-12-09 17:52:54.669721 1583 \N \N \N 7 \N 1 900.00 1.00 \N \N 2250 653 2 689.0 1 2019-12-09 18:04:13.499861 2019-12-09 18:04:13.499861 1613 \N \N \N 0 PV1-V-826 1 1000.00 311.00 \N \N 2251 653 4 1599.0 1 2019-12-09 18:54:30.347667 2019-12-09 18:54:30.347667 1614 9757 \N \N 0 PV1-V-827 1 \N 0.00 \N \N 2252 653 2 900.0 1 2019-12-09 19:55:51.551239 2019-12-09 19:55:51.551239 1578 \N \N \N 5 \N 1 1000.00 100.00 20 \N 2253 655 1 749.0 1 2019-12-09 20:55:46.075381 2019-12-09 20:55:46.075381 1615 5323 \N \N 0 PV3-V-157 1 \N 0.00 \N \N 2255 653 2 138.0 1 2019-12-09 21:35:47.060387 2019-12-09 21:35:47.060387 1345 \N \N \N 7 \N 1 138.00 0.00 \N \N 2256 653 2 2348.0 1 2019-12-09 21:43:11.587941 2019-12-09 21:43:11.636415 1558 \N \N \N 3 \N 1 2348.00 0.00 \N \N 2257 655 2 3698.0 1 2019-12-09 22:42:28.587496 2019-12-09 22:42:28.587496 1617 \N \N \N 0 PV3-V-158 1 4000.00 302.00 \N \N 2258 655 2 469.0 1 2019-12-09 22:52:50.915926 2019-12-09 22:52:50.915926 1618 \N \N \N 0 PV3-V-159 1 500.00 31.00 \N \N 2259 653 2 250.0 1 2019-12-09 23:15:16.77376 2019-12-09 23:15:16.77376 1619 \N \N \N 6 PV1-V-829 1 250.00 0.00 \N \N 2260 653 2 899.0 1 2019-12-10 01:14:02.148947 2019-12-10 01:14:02.148947 1620 \N \N \N 0 PV1-V-830 1 899.00 0.00 \N \N 2261 654 2 999.0 1 2019-12-10 01:18:32.917473 2019-12-10 01:18:32.917473 1621 \N \N \N 0 PV2-V-630 1 1000.00 1.00 \N \N 2262 655 2 1248.0 1 2019-12-10 02:31:42.998935 2019-12-10 02:31:42.998935 1622 \N \N \N 0 PV3-V-160 1 1500.00 252.00 \N \N 2263 655 2 813.0 0 2019-12-10 02:59:44.942786 2019-12-10 02:59:44.942786 \N \N \N 234 2 \N 1 \N \N \N \N 2264 655 2 602.0 0 2019-12-10 03:00:11.431883 2019-12-10 03:00:11.431883 \N \N \N 235 2 \N 1 \N \N \N \N 2265 657 2 699.0 1 2019-12-10 18:25:03.177338 2019-12-10 18:25:03.177338 1623 \N \N \N 0 PV2-V-631 1 700.00 1.00 \N \N 2266 657 2 99.0 1 2019-12-10 18:33:17.762984 2019-12-10 18:33:17.762984 1624 \N \N \N 0 PV2-V-632 1 200.00 101.00 \N \N 2267 658 2 1000.0 1 2019-12-10 18:41:36.34042 2019-12-10 18:41:36.34042 1626 \N \N \N 3 \N 1 1000.00 0.00 \N \N 2268 657 2 699.0 1 2019-12-10 18:57:13.966697 2019-12-10 18:57:13.966697 1627 \N \N \N 0 PV2-V-633 1 1000.00 301.00 \N \N 2269 658 1 749.0 1 2019-12-10 19:03:01.744345 2019-12-10 19:03:01.744345 1628 9899 \N \N 0 PV1-V-832 1 \N 0.00 \N \N 2270 657 1 649.0 1 2019-12-10 19:04:15.768874 2019-12-10 19:04:15.768874 1629 9899 \N \N 0 PV2-V-634 1 \N 0.00 \N \N 2271 658 2 429.0 1 2019-12-10 19:06:24.309125 2019-12-10 19:06:24.309125 1619 \N \N \N 7 \N 1 429.00 0.00 \N \N 2272 658 2 25.0 0 2019-12-10 20:26:31.779633 2019-12-10 20:26:31.779633 \N \N \N 236 2 \N 1 \N \N \N \N 2276 657 2 210.0 1 2019-12-10 20:48:59.177044 2019-12-10 20:48:59.177044 1632 \N \N \N 6 PV2-V-638 1 500.00 290.00 \N \N 2277 657 4 699.0 1 2019-12-10 21:16:21.136592 2019-12-10 21:16:21.136592 1633 4991 \N \N 0 PV2-V-636 1 \N 0.00 \N \N 2278 658 4 699.0 1 2019-12-10 21:17:45.77197 2019-12-10 21:17:45.77197 1634 4991 \N \N 0 PV1-V-833 1 \N 0.00 \N \N 2279 658 2 430.0 1 2019-12-10 21:33:05.190905 2019-12-10 21:33:05.190905 1566 \N \N \N 5 \N 1 430.00 0.00 21 \N 2280 656 2 899.0 1 2019-12-10 22:19:15.716789 2019-12-10 22:19:15.716789 1635 \N \N \N 0 PV3-V-161 1 1000.00 101.00 \N \N 2281 658 5 747.0 1 2019-12-10 23:28:12.625226 2019-12-10 23:28:12.625226 1636 \N \N \N 0 PV1-V-834 1 \N 0.00 \N \N UNIVALE 0000SBMX 3641119527692 2282 658 1 1629.0 1 2019-12-10 23:48:34.676647 2019-12-10 23:48:34.676647 1637 6572 \N \N 0 PV1-V-835 1 \N 0.00 \N \N 2283 658 2 1400.0 1 2019-12-11 00:24:43.109921 2019-12-11 00:24:43.211005 836 \N \N \N 3 \N 1 1400.00 0.00 \N \N 2284 658 2 400.0 1 2019-12-11 00:35:34.597616 2019-12-11 00:35:34.597616 1638 \N \N \N 6 PV1-V-836 1 400.00 0.00 \N \N 2285 658 1 599.0 1 2019-12-11 01:53:59.170014 2019-12-11 01:53:59.170014 1639 423 \N \N 0 PV1-V-837 1 \N 0.00 \N \N 2286 656 2 589.0 1 2019-12-11 01:57:08.811821 2019-12-11 01:57:08.811821 1640 \N \N \N 0 PV3-V-162 1 600.00 11.00 \N \N 2287 658 1 1000.0 1 2019-12-11 02:00:36.276779 2019-12-11 02:00:36.276779 1526 4298 \N \N 4 \N 1 \N 0.00 \N \N 2288 658 2 49.0 1 2019-12-11 02:01:44.069927 2019-12-11 02:01:44.069927 1526 \N \N \N 4 \N 1 49.00 0.00 \N \N 2289 658 2 3055.0 1 2019-12-11 02:15:24.632819 2019-12-11 02:15:24.632819 1531 \N \N \N 7 \N 1 3055.00 0.00 \N \N 2290 657 2 290.0 1 2019-12-11 03:03:44.516974 2019-12-11 03:03:44.516974 1632 \N \N \N 4 \N 1 290.00 0.00 \N \N 2291 661 2 770.0 1 2019-12-11 17:42:04.400865 2019-12-11 17:42:04.400865 1641 \N \N \N 0 PV1-V-838 1 770.00 0.00 \N \N 2293 660 1 1299.0 1 2019-12-11 17:56:41.666783 2019-12-11 17:56:41.666783 1642 6218 \N \N 0 PV2-V-640 1 \N 0.00 \N \N 2294 661 1 1345.0 1 2019-12-11 19:19:57.390398 2019-12-11 19:19:57.390398 1643 6399 \N \N 0 PV1-V-839 1 \N 0.00 \N \N 2295 660 2 899.0 1 2019-12-11 20:18:27.554649 2019-12-11 20:18:27.554649 1644 \N \N \N 0 PV2-V-641 1 1000.00 101.00 \N \N 2296 661 2 629.0 1 2019-12-11 20:29:54.178404 2019-12-11 20:29:54.178404 1645 \N \N \N 0 PV1-V-840 1 629.00 0.00 \N \N 2297 660 2 1128.0 1 2019-12-11 21:11:51.771036 2019-12-11 21:11:51.771036 1647 \N \N \N 0 PV2-V-643 1 1150.00 22.00 \N \N 2298 660 1 599.0 1 2019-12-11 22:16:48.304528 2019-12-11 22:16:48.304528 1648 7964 \N \N 0 PV2-V-644 1 \N 0.00 \N \N 2299 659 2 2214.0 1 2019-12-11 22:26:57.350061 2019-12-11 22:26:57.350061 1649 \N \N \N 0 PV3-V-163 1 2500.00 286.00 \N \N 2300 660 2 999.0 1 2019-12-12 00:08:37.391751 2019-12-12 00:08:37.391751 1650 \N \N \N 0 PV2-V-645 1 1000.00 1.00 \N \N 2301 659 2 799.0 1 2019-12-12 01:02:31.280037 2019-12-12 01:02:31.280037 1652 \N \N \N 0 PV3-V-164 1 1000.00 201.00 \N \N 2302 661 2 729.0 1 2019-12-12 01:04:31.922724 2019-12-12 01:04:31.922724 1653 \N \N \N 0 PV1-V-841 1 729.00 0.00 \N \N 2303 660 1 200.0 1 2019-12-12 01:04:42.054092 2019-12-12 01:04:42.054092 1651 592 \N \N 3 \N 1 \N 0.00 \N \N 2304 661 1 459.0 1 2019-12-12 01:16:43.112888 2019-12-12 01:16:43.112888 1654 9275 \N \N 0 PV1-V-842 1 \N 0.00 \N \N 2305 661 2 550.0 1 2019-12-12 02:17:36.314912 2019-12-12 02:17:36.314912 1599 \N \N \N 4 \N 1 550.00 0.00 \N \N 2306 664 1 699.0 1 2019-12-12 18:38:24.103324 2019-12-12 18:38:24.103324 1655 1196 \N \N 0 PV1-V-843 1 \N 0.00 \N \N 2307 663 1 1299.0 1 2019-12-12 18:39:55.643585 2019-12-12 18:39:55.643585 1656 1196 \N \N 0 PV2-V-647 1 \N 0.00 \N \N 2308 663 2 649.0 1 2019-12-12 21:02:34.354803 2019-12-12 21:02:34.354803 1657 \N \N \N 0 PV2-V-647 1 1000.00 351.00 \N \N 2309 663 2 300.0 1 2019-12-12 21:52:54.01459 2019-12-12 21:52:54.01459 1658 \N \N \N 6 PV2-V-649 1 500.00 200.00 \N \N 2310 664 2 849.0 1 2019-12-12 21:59:09.912911 2019-12-12 21:59:09.912911 1659 \N \N \N 0 PV1-V-844 1 1000.00 151.00 \N \N 2311 664 2 799.0 1 2019-12-12 22:08:43.937303 2019-12-12 22:08:43.937303 1660 \N \N \N 0 PV1-V-845 1 799.00 0.00 \N \N 2312 662 2 1699.0 1 2019-12-12 22:29:35.050069 2019-12-12 22:29:35.050069 1661 \N \N \N 0 PV3-V-165 1 1800.00 101.00 \N \N 2313 664 2 300.0 1 2019-12-12 23:49:15.812816 2019-12-12 23:49:15.812816 1662 \N \N \N 6 PV1-V-846 1 300.00 0.00 \N \N 2314 663 1 699.0 1 2019-12-13 00:04:50.867041 2019-12-13 00:04:50.867041 1663 9699 \N \N 0 PV2-V-650 1 \N 0.00 \N \N 2315 662 2 500.0 1 2019-12-13 00:05:27.294974 2019-12-13 00:05:27.294974 1463 \N \N \N 4 \N 1 500.00 0.00 \N \N 2316 664 2 1199.0 1 2019-12-13 00:49:14.287719 2019-12-13 00:49:14.287719 1664 \N \N \N 0 PV1-V-847 1 1199.00 0.00 \N \N 2317 664 1 1200.0 1 2019-12-13 01:13:46.393084 2019-12-13 01:13:46.393084 1665 9703 \N \N 0 PV1-V-848 1 \N 0.00 \N \N 2318 664 2 99.0 1 2019-12-13 01:14:05.430636 2019-12-13 01:14:05.430636 1665 \N \N \N 0 PV1-V-848 1 99.00 0.00 \N \N 2319 667 2 469.0 1 2019-12-13 17:59:20.379866 2019-12-13 17:59:20.379866 1668 \N \N \N 0 PV1-V-849 1 469.00 0.00 \N \N 2320 666 2 999.0 1 2019-12-13 19:26:18.317268 2019-12-13 19:26:18.317268 1669 \N \N \N 0 PV2-V-651 1 1000.00 1.00 \N \N 2321 666 4 759.0 1 2019-12-13 21:38:36.237517 2019-12-13 21:38:36.237517 1670 6338 \N \N 0 PV2-V-652 1 \N 0.00 \N \N 2322 667 2 1199.0 1 2019-12-13 23:00:07.226487 2019-12-13 23:00:07.226487 1671 \N \N \N 0 PV1-V-850 1 1199.00 0.00 \N \N 2323 667 2 689.0 1 2019-12-13 23:29:04.873568 2019-12-13 23:29:04.873568 1672 \N \N \N 0 PV1-V-851 1 689.00 0.00 \N \N 2324 666 2 699.0 1 2019-12-14 00:17:16.095241 2019-12-14 00:17:16.095241 1673 \N \N \N 0 PV2-V-653 1 700.00 1.00 \N \N 2325 667 2 529.0 1 2019-12-14 00:23:26.852664 2019-12-14 00:23:26.852664 1522 \N \N \N 7 \N 1 529.00 0.00 \N \N 2327 665 2 1028.0 1 2019-12-14 01:24:42.026612 2019-12-14 01:24:42.026612 1561 \N \N \N 7 \N 1 1100.00 72.00 \N \N 2328 667 2 1299.0 1 2019-12-14 01:39:41.427338 2019-12-14 01:39:41.427338 1674 \N \N \N 0 PV1-V-852 1 1299.00 0.00 \N \N 2329 667 2 949.0 1 2019-12-14 01:42:56.007897 2019-12-14 01:42:56.007897 1675 \N \N \N 0 PV1-V-853 1 949.00 0.00 \N \N 2330 667 2 100.0 1 2019-12-14 02:11:19.233336 2019-12-14 02:11:19.233336 1676 \N \N \N 6 PV1-V-854 1 100.00 0.00 \N \N 2331 667 2 1396.99 1 2019-12-14 02:17:30.534608 2019-12-14 02:17:30.534608 1677 \N \N \N 0 PV1-V-855 1 1396.99 0.00 \N \N 2332 669 2 25.0 0 2019-12-14 18:26:05.54511 2019-12-14 18:26:05.54511 \N \N \N 237 2 \N 1 \N \N \N \N 2333 669 1 739.0 1 2019-12-14 19:01:27.65077 2019-12-14 19:01:27.65077 1678 9747 \N \N 0 PV1-V-856 1 \N 0.00 \N \N 2334 670 1 699.0 1 2019-12-14 19:01:57.436504 2019-12-14 19:01:57.436504 1679 9447 \N \N 0 PV2-V-654 1 \N 0.00 \N \N 2335 670 1 599.0 1 2019-12-14 19:06:14.326512 2019-12-14 19:06:14.326512 1680 1391 \N \N 0 PV2-V-655 1 \N 0.00 \N \N 2336 669 3 739.0 1 2019-12-14 19:11:30.149726 2019-12-14 19:11:30.149726 1681 \N \N \N 0 PV1-V-857 1 \N 0.00 \N \N KINDER 2337 670 4 1099.0 1 2019-12-14 19:17:49.00446 2019-12-14 19:17:49.00446 1682 5540 \N \N 0 PV2-V-655 1 \N 0.00 \N \N 2338 669 2 1299.0 1 2019-12-14 19:27:52.494625 2019-12-14 19:27:52.494625 1683 \N \N \N 0 PV1-V-857 1 1299.00 0.00 \N \N 2339 670 2 899.0 1 2019-12-14 19:29:46.693461 2019-12-14 19:29:46.693461 1684 \N \N \N 0 PV2-V-657 1 900.00 1.00 \N \N 2340 669 2 648.0 1 2019-12-14 19:45:44.081979 2019-12-14 19:45:44.081979 1685 \N \N \N 0 PV1-V-859 1 648.00 0.00 \N \N 2341 668 2 1099.0 1 2019-12-14 20:10:55.646259 2019-12-14 20:10:55.646259 1686 \N \N \N 0 PV3-V-168 1 1100.00 1.00 \N \N 2342 669 1 779.0 1 2019-12-14 20:40:34.916501 2019-12-14 20:40:34.916501 1687 6094 \N \N 0 PV1-V-860 1 \N 0.00 \N \N 2343 669 1 1299.0 1 2019-12-14 20:46:39.1136 2019-12-14 20:46:39.1136 1688 9622 \N \N 0 PV1-V-861 1 \N 0.00 \N \N 2344 669 2 1399.0 1 2019-12-14 21:04:52.706789 2019-12-14 21:04:52.706789 1689 \N \N \N 0 PV1-V-862 1 1399.00 0.00 \N \N 2345 669 1 699.0 1 2019-12-14 21:24:49.995671 2019-12-14 21:24:49.995671 1690 1365 \N \N 0 PV1-V-863 1 \N 0.00 \N \N 2346 669 1 2767.0 1 2019-12-14 22:10:51.318455 2019-12-14 22:10:51.318455 1691 7615 \N \N 0 PV1-V-864 1 \N 0.00 \N \N 2347 669 2 98.99 1 2019-12-14 22:12:04.850036 2019-12-14 22:12:04.850036 1692 \N \N \N 0 PV1-V-865 1 98.99 0.00 \N \N 2348 668 2 1000.0 1 2019-12-14 22:24:19.223184 2019-12-14 22:24:19.27414 1667 \N \N \N 3 \N 1 1000.00 0.00 \N \N 2349 670 2 699.0 1 2019-12-14 23:19:17.395289 2019-12-14 23:19:17.395289 1693 \N \N \N 0 PV2-V-658 1 700.00 1.00 \N \N 2350 670 2 549.0 1 2019-12-14 23:26:12.796752 2019-12-14 23:26:12.796752 1694 \N \N \N 0 PV2-V-659 1 600.00 51.00 \N \N 2351 670 2 699.0 1 2019-12-14 23:46:55.648058 2019-12-14 23:46:55.648058 1695 \N \N \N 0 PV2-V-660 1 699.00 0.00 \N \N 2352 669 2 1349.0 1 2019-12-15 00:07:57.613068 2019-12-15 00:07:57.613068 1696 \N \N \N 0 PV1-V-866 1 1349.00 0.00 \N \N 2356 668 5 1763.16 1 2019-12-15 00:21:47.25728 2019-12-15 00:21:47.25728 1698 \N \N \N 0 PV3-V-170 1 \N 0.00 \N \N UNIVALE 1234 1234 2357 670 2 1129.0 1 2019-12-15 00:35:41.171053 2019-12-15 00:35:41.171053 1699 \N \N \N 0 PV2-V-661 1 1150.00 21.00 \N \N 2358 669 1 749.0 1 2019-12-15 00:39:16.177141 2019-12-15 00:39:16.177141 1700 3694 \N \N 0 PV1-V-867 1 \N 0.00 \N \N 2359 670 1 549.0 1 2019-12-15 00:57:38.628765 2019-12-15 00:57:38.628765 1701 4721 \N \N 0 PV2-V-662 1 \N 0.00 \N \N 2360 669 2 369.0 1 2019-12-15 01:01:35.634433 2019-12-15 01:01:35.67731 1494 \N \N \N 3 \N 1 369.00 0.00 \N \N 2361 669 2 900.0 0 2019-12-15 01:05:49.32719 2019-12-15 01:05:49.32719 \N \N \N 238 2 \N 1 \N \N \N \N 2365 670 2 899.0 1 2019-12-15 01:12:11.745401 2019-12-15 01:12:11.745401 1703 \N \N \N 0 PV2-V-663 1 1000.00 101.00 \N \N 2366 669 1 1198.0 1 2019-12-15 01:16:08.289754 2019-12-15 01:16:08.289754 1704 2395 \N \N 0 PV1-V-869 1 \N 0.00 \N \N 2367 670 2 1350.0 0 2019-12-15 02:55:13.946581 2019-12-15 02:55:13.946581 \N \N \N 239 2 \N 1 \N \N \N \N 2368 669 2 228.0 0 2019-12-15 03:10:31.199792 2019-12-15 03:10:31.199792 \N \N \N 240 2 \N 1 \N \N \N \N 2369 672 2 899.0 1 2019-12-15 18:17:14.424632 2019-12-15 18:17:14.424632 1705 \N \N \N 0 PV2-V-664 1 1000.00 101.00 \N \N 2370 671 1 1998.0 1 2019-12-15 18:52:10.147666 2019-12-15 18:52:10.147666 1706 5720 \N \N 0 PV1-V-870 1 \N 0.00 \N \N 2371 672 1 799.0 1 2019-12-15 18:56:09.319425 2019-12-15 18:56:09.319425 1707 4061 \N \N 0 PV2-V-665 1 \N 0.00 \N \N 2372 672 1 389.0 1 2019-12-15 19:42:39.358712 2019-12-15 19:42:39.358712 1708 1234 \N \N 0 PV2-V-666 1 \N 0.00 \N \N 2373 671 2 539.0 1 2019-12-15 19:49:45.129888 2019-12-15 19:49:45.129888 1529 \N \N \N 7 \N 1 550.00 11.00 \N \N 2374 671 4 269.0 1 2019-12-15 20:04:29.967323 2019-12-15 20:04:29.967323 1405 5725 \N \N 7 \N 1 \N 0.00 \N \N 2375 672 4 799.0 1 2019-12-15 20:32:37.676925 2019-12-15 20:32:37.676925 1374 5725 \N \N 7 \N 1 \N 0.00 \N \N 2377 673 1 589.0 1 2019-12-15 20:59:09.183333 2019-12-15 20:59:09.183333 1550 236 \N \N 7 \N 1 \N 0.00 \N \N 2378 672 2 3188.0 1 2019-12-15 22:24:50.568989 2019-12-15 22:24:50.568989 1710 \N \N \N 0 PV2-V-667 1 3188.00 0.00 \N \N 2379 671 2 469.0 1 2019-12-15 22:25:57.404489 2019-12-15 22:25:57.404489 1711 \N \N \N 0 PV1-V-871 1 469.00 0.00 \N \N 2380 671 2 300.0 0 2019-12-15 23:05:36.266203 2019-12-15 23:05:36.266203 \N \N \N 241 2 \N 1 \N \N \N \N 2381 673 2 100.0 0 2019-12-16 01:00:38.014952 2019-12-16 01:00:38.014952 \N \N \N 242 2 \N 1 \N \N \N \N 2382 675 2 799.0 1 2019-12-16 18:17:10.45128 2019-12-16 18:17:10.45128 1712 \N \N \N 0 PV1-V-872 1 799.00 0.00 \N \N 2383 674 2 149.0 1 2019-12-16 18:25:14.332231 2019-12-16 18:25:14.332231 1713 \N \N \N 0 PV2-V-668 1 200.00 51.00 \N \N 2384 675 2 499.0 1 2019-12-16 21:20:27.453881 2019-12-16 21:20:27.453881 1714 \N \N \N 0 PV1-V-873 1 499.00 0.00 \N \N 2385 675 2 500.0 1 2019-12-16 21:24:00.096262 2019-12-16 21:24:00.136732 1542 \N \N \N 3 \N 1 500.00 0.00 \N \N 2387 674 4 899.0 1 2019-12-16 22:56:24.72279 2019-12-16 22:56:24.72279 1715 6106 \N \N 0 PV2-V-669 1 \N 0.00 \N \N 2388 675 2 1199.0 1 2019-12-16 23:19:23.650549 2019-12-16 23:19:23.650549 1716 \N \N \N 0 PV1-V-874 1 1199.00 0.00 \N \N 2389 674 2 198.0 1 2019-12-17 00:36:27.160052 2019-12-17 00:36:27.160052 1717 \N \N \N 0 PV2-V-670 1 200.00 2.00 \N \N 2390 676 4 1989.0 1 2019-12-17 00:50:36.531425 2019-12-17 00:50:36.531425 1718 233 \N \N 0 PV3-V-172 1 \N 0.00 \N \N 2391 674 2 358.0 1 2019-12-17 00:58:33.743837 2019-12-17 00:58:33.743837 1719 \N \N \N 0 PV2-V-671 1 500.00 142.00 \N \N 2392 675 2 428.0 1 2019-12-17 02:19:25.418039 2019-12-17 02:19:25.418039 1599 \N \N \N 7 \N 1 428.00 0.00 \N \N 2393 674 2 200.0 1 2019-12-17 02:24:20.8996 2019-12-17 02:24:20.8996 1720 \N \N \N 6 PV2-V-672 1 200.00 0.00 \N \N 2394 675 2 599.0 1 2019-12-17 02:30:10.09694 2019-12-17 02:30:10.09694 1638 \N \N \N 7 \N 1 599.00 0.00 \N \N 2395 678 2 699.0 1 2019-12-17 17:21:04.987403 2019-12-17 17:21:04.987403 1721 \N \N \N 0 PV2-V-673 1 700.00 1.00 \N \N 2396 678 2 200.0 1 2019-12-17 17:31:55.086559 2019-12-17 17:31:55.086559 1722 \N \N \N 6 PV2-V-674 1 200.00 0.00 \N \N 2397 677 2 449.0 1 2019-12-17 18:36:07.513812 2019-12-17 18:36:07.513812 1723 \N \N \N 0 PV1-V-875 1 449.00 0.00 \N \N 2398 677 2 2358.0 1 2019-12-17 19:53:31.613988 2019-12-17 19:53:31.613988 1724 \N \N \N 0 PV1-V-876 1 2358.00 0.00 \N \N 2399 679 2 300.0 1 2019-12-17 20:08:45.233564 2019-12-17 20:08:45.233564 1725 \N \N \N 6 PV3-V-173 1 300.00 0.00 \N \N 2400 679 2 500.0 1 2019-12-17 20:09:45.568284 2019-12-17 20:09:45.620315 1709 \N \N \N 3 \N 1 500.00 0.00 \N \N 2401 679 2 169.0 1 2019-12-17 22:50:52.315274 2019-12-17 22:50:52.315274 1726 \N \N \N 0 PV3-V-174 1 500.00 331.00 \N \N 2402 679 2 1199.0 1 2019-12-17 23:54:55.032953 2019-12-17 23:54:55.032953 1727 \N \N \N 0 PV3-V-175 1 1200.00 1.00 \N \N 2403 678 2 100.0 1 2019-12-18 00:32:31.254985 2019-12-18 00:32:31.254985 1721 \N \N \N 5 \N 1 100.00 0.00 23 \N 2404 679 2 1199.0 1 2019-12-18 00:40:58.679732 2019-12-18 00:40:58.679732 1728 \N \N \N 0 PV3-V-176 1 1500.00 301.00 \N \N 2405 677 1 1599.0 1 2019-12-18 01:59:22.707948 2019-12-18 01:59:22.707948 1729 4891 \N \N 0 PV1-V-877 1 \N 0.00 \N \N 2406 679 2 799.0 1 2019-12-18 02:13:57.491593 2019-12-18 02:13:57.491593 1725 \N \N \N 7 \N 1 800.00 1.00 \N \N 2407 682 1 749.0 1 2019-12-18 19:51:54.732719 2019-12-18 19:51:54.732719 1730 5596 \N \N 0 PV3-V-177 1 \N 0.00 \N \N 2408 680 2 469.0 1 2019-12-18 20:27:52.902641 2019-12-18 20:27:52.902641 1731 \N \N \N 0 PV1-V-878 1 500.00 31.00 \N \N 2409 682 2 579.0 1 2019-12-18 20:49:14.531382 2019-12-18 20:49:14.531382 1732 \N \N \N 0 PV3-V-178 1 700.00 121.00 \N \N 2410 681 2 699.0 1 2019-12-18 20:54:15.402943 2019-12-18 20:54:15.402943 1733 \N \N \N 0 PV2-V-675 1 700.00 1.00 \N \N 2411 680 2 139.0 1 2019-12-18 20:57:10.64213 2019-12-18 20:57:10.64213 1676 \N \N \N 7 \N 1 150.00 11.00 \N \N 2412 681 2 989.0 1 2019-12-18 21:58:54.885949 2019-12-18 21:58:54.885949 1734 \N \N \N 0 PV2-V-676 1 1000.00 11.00 \N \N 2414 680 1 2098.0 1 2019-12-18 22:56:04.87405 2019-12-18 22:56:04.87405 1735 447 \N \N 0 PV1-V-879 1 \N 0.00 \N \N 2415 681 2 149.0 1 2019-12-18 23:31:54.430214 2019-12-18 23:31:54.430214 1736 \N \N \N 0 PV2-V-677 1 150.00 1.00 \N \N 2416 681 1 749.0 1 2019-12-18 23:52:34.886521 2019-12-18 23:52:34.886521 1737 2916 \N \N 0 PV2-V-678 1 \N 0.00 \N \N 2417 682 1 579.0 1 2019-12-19 00:28:44.632707 2019-12-19 00:28:44.632707 1738 4177 \N \N 0 PV3-V-179 1 \N 0.00 \N \N 2418 681 1 1798.0 1 2019-12-19 00:45:57.558202 2019-12-19 00:45:57.558202 1739 1234 \N \N 0 PV2-V-679 1 \N 0.00 \N \N 2419 680 2 1299.0 1 2019-12-19 01:20:43.926082 2019-12-19 01:20:43.926082 1740 \N \N \N 0 PV1-V-880 1 1299.00 0.00 \N \N 2420 681 1 1648.0 1 2019-12-19 01:25:55.077406 2019-12-19 01:25:55.077406 1741 1234 \N \N 0 PV2-V-680 1 \N 0.00 \N \N 2421 681 1 749.0 1 2019-12-19 01:45:00.884742 2019-12-19 01:45:00.884742 1742 1234 \N \N 0 PV2-V-681 1 \N 0.00 \N \N 2422 680 5 1953.0 1 2019-12-19 01:48:56.614764 2019-12-19 01:48:56.614764 1743 \N \N \N 0 PV1-V-881 1 \N 0.00 \N \N UNIVALE 8865 0000SK74 2423 682 2 1868.0 1 2019-12-19 02:34:08.18216 2019-12-19 02:34:08.18216 1744 \N \N \N 0 PV3-V-180 1 2000.00 132.00 \N \N 2424 681 2 1068.0 1 2019-12-19 02:52:46.340456 2019-12-19 02:52:46.340456 1745 \N \N \N 0 PV2-V-682 1 1100.00 32.00 \N \N 2434 684 2 1399.0 1 2019-12-19 22:15:52.076955 2019-12-19 22:15:52.076955 1754 \N \N \N 0 PV1-V-886 1 1500.00 101.00 \N \N 2425 683 2 500.0 1 2019-12-19 17:34:30.641769 2019-12-19 17:34:30.641769 1746 \N \N \N 6 PV2-V-683 1 500.00 0.00 \N \N 2426 683 2 489.0 1 2019-12-19 18:13:12.511701 2019-12-19 18:13:12.511701 1746 \N \N \N 7 \N 1 500.00 11.00 \N \N 2427 684 1 499.0 1 2019-12-19 18:23:28.401397 2019-12-19 18:23:28.401397 1747 9770 \N \N 0 PV1-V-882 1 \N 0.00 \N \N 2428 684 2 500.0 1 2019-12-19 18:32:37.221578 2019-12-19 18:32:37.264478 1625 \N \N \N 3 \N 1 500.00 0.00 \N \N 2429 683 2 649.0 1 2019-12-19 19:46:12.841083 2019-12-19 19:46:12.841083 1749 \N \N \N 0 PV2-V-684 1 700.00 51.00 \N \N 2430 683 2 799.0 1 2019-12-19 19:56:23.547429 2019-12-19 19:56:23.547429 1750 \N \N \N 0 PV2-V-685 1 800.00 1.00 \N \N 2431 684 3 1720.32 1 2019-12-19 20:21:31.634418 2019-12-19 20:21:31.634418 1751 \N \N \N 0 PV1-V-884 1 \N 0.00 \N \N 123 2432 685 1 1859.0 1 2019-12-19 20:42:13.419025 2019-12-19 20:42:13.419025 1752 2991 \N \N 0 PV3-V-181 1 \N 0.00 \N \N 2433 684 2 899.0 1 2019-12-19 22:09:20.868271 2019-12-19 22:09:20.868271 1753 \N \N \N 0 PV1-V-885 1 900.00 1.00 \N \N 2435 684 2 2099.0 1 2019-12-19 23:06:19.590876 2019-12-19 23:06:19.590876 1755 \N \N \N 0 PV1-V-887 1 2099.00 0.00 \N \N 2436 684 2 1042.0 0 2019-12-20 00:34:06.957925 2019-12-20 00:34:06.957925 \N \N \N 243 2 \N 1 \N \N \N \N 2437 685 2 699.0 1 2019-12-20 01:45:21.615059 2019-12-20 01:45:21.615059 1756 \N \N \N 0 PV3-V-182 1 700.00 1.00 \N \N 2438 683 2 699.0 1 2019-12-20 02:36:01.415253 2019-12-20 02:36:01.415253 1720 \N \N \N 7 \N 1 699.00 0.00 \N \N 2439 683 2 599.0 1 2019-12-20 02:38:42.592803 2019-12-20 02:38:42.592803 1757 \N \N \N 0 PV2-V-686 1 599.00 0.00 \N \N 2440 689 2 1099.0 1 2019-12-20 20:30:19.990035 2019-12-20 20:30:19.990035 1758 \N \N \N 0 PV1-V-888 1 1099.00 0.00 \N \N 2441 688 2 759.0 1 2019-12-20 21:29:55.819553 2019-12-20 21:29:55.819553 1759 \N \N \N 0 PV3-V-183 1 759.00 0.00 \N \N 2442 689 2 789.0 1 2019-12-20 21:32:07.17197 2019-12-20 21:32:07.17197 1760 \N \N \N 0 PV1-V-889 1 789.00 0.00 \N \N 2443 686 1 799.0 1 2019-12-20 21:38:27.53046 2019-12-20 21:38:27.53046 1761 8296 \N \N 0 PV2-V-687 1 \N 0.00 \N \N 2444 687 2 400.0 1 2019-12-20 22:01:09.670971 2019-12-20 22:01:09.670971 1763 \N \N \N 6 PV2-V-689 1 400.00 0.00 \N \N 2445 686 2 899.0 1 2019-12-20 23:18:33.776768 2019-12-20 23:18:33.776768 1764 \N \N \N 0 PV2-V-690 1 899.00 0.00 \N \N 2446 686 2 0 1 2019-12-20 23:18:33.839225 2019-12-20 23:18:33.839225 1764 \N \N \N 0 PV2-V-690 1 899.00 899.00 \N \N 2448 686 2 1079.1 1 2019-12-20 23:26:09.838593 2019-12-20 23:26:09.838593 1765 \N \N \N 0 PV2-V-691 1 1100.00 20.90 \N \N 2449 688 3 1000.0 1 2019-12-20 23:38:58.90811 2019-12-20 23:38:58.90811 1766 \N \N \N 0 PV3-V-184 1 \N 0.00 \N \N APARTADO 2450 688 2 1099.0 1 2019-12-20 23:39:08.891329 2019-12-20 23:39:08.891329 1766 \N \N \N 0 PV3-V-184 1 1099.00 0.00 \N \N APARTADO 2451 689 2 1260.0 1 2019-12-20 23:55:44.570374 2019-12-20 23:55:44.570374 1767 \N \N \N 0 PV1-V-890 1 1260.00 0.00 \N \N 2452 686 2 1129.0 1 2019-12-21 02:23:06.848508 2019-12-21 02:23:06.848508 1768 \N \N \N 0 PV2-V-692 1 1200.00 71.00 \N \N 2453 687 2 1466.1 1 2019-12-21 18:19:07.208603 2019-12-21 18:19:07.208603 1769 \N \N \N 0 PV2-V-693 1 1466.10 0.00 \N \N 2455 687 2 1138.0 1 2019-12-21 18:24:25.731991 2019-12-21 18:24:25.731991 1771 \N \N \N 0 PV2-V-695 1 1500.00 362.00 \N \N 2456 690 2 98.0 1 2019-12-21 18:38:37.307726 2019-12-21 18:38:37.307726 1772 \N \N \N 0 PV1-V-891 1 98.00 0.00 \N \N 2457 687 2 1099.0 1 2019-12-21 19:03:38.456681 2019-12-21 19:03:38.456681 1773 \N \N \N 0 PV2-V-696 1 1099.00 0.00 \N \N 2458 690 2 560.0 1 2019-12-21 19:08:18.585292 2019-12-21 19:08:18.585292 1774 \N \N \N 0 PV1-V-892 1 560.00 0.00 \N \N 2459 687 1 649.0 1 2019-12-21 19:17:58.697809 2019-12-21 19:17:58.697809 1775 1234 \N \N 0 PV2-V-697 1 \N 0.00 \N \N 2460 690 2 1170.0 1 2019-12-21 19:29:22.976502 2019-12-21 19:29:22.976502 1776 \N \N \N 0 PV1-V-893 1 1200.00 30.00 \N \N 2461 690 2 30.0 1 2019-12-21 19:39:20.58909 2019-12-21 19:39:20.58909 1777 \N \N \N 0 PV1-V-894 1 30.00 0.00 \N \N 2462 690 4 855.0 1 2019-12-21 19:39:38.551133 2019-12-21 19:39:38.551133 1777 494 \N \N 0 PV1-V-894 1 \N 0.00 \N \N 2463 691 2 200.0 1 2019-12-21 20:24:07.34796 2019-12-21 20:24:07.34796 1778 \N \N \N 6 PV3-V-185 1 200.00 0.00 \N \N 2464 691 2 810.0 1 2019-12-21 20:49:14.257192 2019-12-21 20:49:14.257192 1779 \N \N \N 0 PV3-V-186 1 1000.00 190.00 \N \N 2465 687 2 719.1 1 2019-12-21 21:00:02.460231 2019-12-21 21:00:02.460231 1780 \N \N \N 0 PV2-V-698 1 1000.00 280.90 \N \N 2466 687 2 2149.2 1 2019-12-21 21:11:37.433519 2019-12-21 21:11:37.433519 1781 \N \N \N 0 PV2-V-699 1 2149.20 0.00 \N \N 2467 690 2 1492.2 1 2019-12-21 21:16:06.28053 2019-12-21 21:16:06.28053 1782 \N \N \N 0 PV1-V-895 1 1492.20 0.00 \N \N 2468 687 2 1825.2 1 2019-12-21 21:26:32.137199 2019-12-21 21:26:32.137199 1783 \N \N \N 0 PV2-V-700 1 1900.00 74.80 \N \N 2469 690 2 298.0 1 2019-12-21 21:27:24.836811 2019-12-21 21:27:24.836811 1784 \N \N \N 0 PV1-V-896 1 298.00 0.00 \N \N 2470 687 2 849.15 1 2019-12-21 21:35:59.347713 2019-12-21 21:35:59.347713 1785 \N \N \N 0 PV2-V-701 1 849.15 0.00 \N \N 2471 687 2 512.1 1 2019-12-21 21:43:51.117283 2019-12-21 21:43:51.117283 1786 \N \N \N 0 PV2-V-702 1 512.10 0.00 \N \N 2472 690 2 100.0 1 2019-12-21 22:08:45.926657 2019-12-21 22:08:45.926657 1787 \N \N \N 0 PV1-V-897 1 100.00 0.00 \N \N 2473 690 1 3120.0 1 2019-12-21 22:09:33.964788 2019-12-21 22:09:33.964788 1787 2924 \N \N 0 PV1-V-897 1 \N 0.00 \N \N 2474 690 2 44.0 0 2019-12-21 22:20:54.042874 2019-12-21 22:20:54.042874 \N \N \N 244 2 \N 1 \N \N \N \N 2475 687 2 489.3 1 2019-12-21 22:23:37.944343 2019-12-21 22:23:37.944343 1788 \N \N \N 0 PV2-V-703 1 489.30 0.00 \N \N 2476 690 2 430.0 1 2019-12-21 22:25:26.157283 2019-12-21 22:25:26.157283 1789 \N \N \N 0 PV1-V-898 1 430.00 0.00 \N \N 2477 690 2 500.0 1 2019-12-21 22:34:19.750614 2019-12-21 22:34:19.783956 1077 \N \N \N 3 \N 1 500.00 0.00 \N \N 2478 690 3 990.0 1 2019-12-21 22:34:51.199592 2019-12-21 22:34:51.242934 1077 \N \N \N 3 \N 1 \N 0.00 \N \N CREDITO SAM 2479 690 2 494.0 1 2019-12-21 22:52:04.915953 2019-12-21 22:52:04.915953 1790 \N \N \N 0 PV1-V-899 1 494.00 0.00 \N \N 2481 687 1 740.0 1 2019-12-21 22:53:30.47503 2019-12-21 22:53:30.47503 1792 1234 \N \N 0 PV2-V-705 1 \N 0.00 \N \N 2482 690 5 1458.0 1 2019-12-21 22:58:05.999476 2019-12-21 22:58:05.999476 1793 \N \N \N 0 PV1-V-900 1 \N 0.00 \N \N UNIVALE SC9B 1064059428227 2483 687 3 1762.0 1 2019-12-21 23:01:13.465948 2019-12-21 23:01:13.465948 1794 \N \N \N 0 PV2-V-706 1 \N 0.00 \N \N 12345 2484 691 2 60.0 1 2019-12-21 23:33:36.499827 2019-12-21 23:33:36.499827 1759 \N \N \N 5 \N 1 200.00 140.00 25 \N 2485 687 4 459.0 1 2019-12-22 00:01:20.74801 2019-12-22 00:01:20.74801 1796 3994 \N \N 0 PV2-V-707 1 \N 0.00 \N \N 2486 687 2 494.1 1 2019-12-22 01:22:23.127567 2019-12-22 01:22:23.127567 1798 \N \N \N 0 PV2-V-709 1 600.00 105.90 \N \N 2487 687 2 599.0 1 2019-12-22 01:33:21.510092 2019-12-22 01:33:21.510092 1799 \N \N \N 0 PV2-V-710 1 599.00 0.00 \N \N 2488 687 2 1568.1 1 2019-12-22 01:36:53.730619 2019-12-22 01:36:53.730619 1800 \N \N \N 0 PV2-V-711 1 1600.00 31.90 \N \N 2489 687 2 404.1 1 2019-12-22 02:04:46.272098 2019-12-22 02:04:46.272098 1801 \N \N \N 0 PV2-V-712 1 404.10 0.00 \N \N 2490 690 2 1460.0 1 2019-12-22 02:09:36.536841 2019-12-22 02:09:36.536841 1802 \N \N \N 0 PV1-V-902 1 1460.00 0.00 \N \N 2491 691 2 1942.4 1 2019-12-22 03:03:04.369603 2019-12-22 03:03:04.369603 1804 \N \N \N 0 PV3-V-188 1 2000.00 57.60 \N \N 2492 693 2 2117.0 1 2019-12-22 18:03:58.966305 2019-12-22 18:03:58.966305 1805 \N \N \N 0 PV1-V-903 1 2117.00 0.00 \N \N 2493 693 2 949.0 1 2019-12-22 18:29:18.208878 2019-12-22 18:29:18.208878 1806 \N \N \N 0 PV1-V-904 1 949.00 0.00 \N \N 2495 693 1 1629.0 1 2019-12-22 18:35:28.112218 2019-12-22 18:35:28.112218 1807 1235 \N \N 0 PV1-V-905 1 \N 0.00 \N \N 2496 692 2 789.0 1 2019-12-22 18:44:54.41632 2019-12-22 18:44:54.41632 1808 \N \N \N 0 PV2-V-713 1 789.00 0.00 \N \N 2497 693 2 595.0 1 2019-12-22 18:54:50.684633 2019-12-22 18:54:50.684633 1809 \N \N \N 0 PV1-V-906 1 595.00 0.00 \N \N 2506 692 2 899.0 1 2019-12-22 20:49:31.467786 2019-12-22 20:49:31.467786 1817 \N \N \N 0 PV2-V-718 1 899.00 0.00 \N \N 2500 692 2 40.0 1 2019-12-22 20:09:18.092039 2019-12-22 20:09:18.092039 1812 \N \N \N 0 PV2-V-715 1 40.00 0.00 \N \N 2501 692 1 1168.0 1 2019-12-22 20:09:45.870259 2019-12-22 20:09:45.870259 1812 6058 \N \N 0 PV2-V-715 1 \N 0.00 \N \N 2502 692 1 729.0 1 2019-12-22 20:20:29.195084 2019-12-22 20:20:29.195084 1813 1234 \N \N 0 PV2-V-715 1 \N 0.00 \N \N 2503 692 2 720.0 1 2019-12-22 20:32:50.505402 2019-12-22 20:32:50.505402 1814 \N \N \N 0 PV2-V-717 1 800.00 80.00 \N \N 2504 693 1 1349.0 1 2019-12-22 20:38:02.267519 2019-12-22 20:38:02.267519 1815 9897 \N \N 0 PV1-V-908 1 \N 0.00 \N \N 2505 693 2 500.0 1 2019-12-22 20:39:45.209329 2019-12-22 20:39:45.209329 1816 \N \N \N 6 PV1-V-909 1 500.00 0.00 \N \N 2507 693 2 720.0 1 2019-12-22 20:58:40.521205 2019-12-22 20:58:40.521205 1818 \N \N \N 0 PV1-V-910 1 720.00 0.00 \N \N 2508 694 1 500.0 1 2019-12-22 21:05:23.161826 2019-12-22 21:05:23.161826 1508 9589 \N \N 4 \N 1 \N 0.00 \N \N 2509 694 1 170.0 1 2019-12-22 21:09:35.622393 2019-12-22 21:09:35.622393 1819 9589 \N \N 0 PV3-V-189 1 \N 0.00 \N \N 2522 694 2 1119.3 1 2019-12-22 23:18:53.055961 2019-12-22 23:18:53.055961 1832 \N \N \N 0 PV3-V-191 1 1500.00 380.70 \N \N 2510 692 2 539.0 1 2019-12-22 21:52:22.744005 2019-12-22 21:52:22.744005 1820 \N \N \N 0 PV2-V-719 1 539.00 0.00 \N \N 2511 692 2 769.99 1 2019-12-22 22:06:48.171557 2019-12-22 22:06:48.171557 1822 \N \N \N 0 PV2-V-721 1 1000.00 230.01 \N \N 2513 692 2 1299.0 1 2019-12-22 22:19:22.286817 2019-12-22 22:19:22.286817 1823 \N \N \N 0 PV2-V-722 1 1299.00 0.00 \N \N 2514 693 2 1338.0 1 2019-12-22 22:21:26.962863 2019-12-22 22:21:26.962863 1824 \N \N \N 0 PV1-V-911 1 1338.00 0.00 \N \N 2515 694 2 149.0 1 2019-12-22 22:28:49.522039 2019-12-22 22:28:49.522039 1825 \N \N \N 0 PV3-V-190 1 500.00 351.00 \N \N 2517 693 2 599.0 1 2019-12-22 22:50:39.592477 2019-12-22 22:50:39.592477 1827 \N \N \N 0 PV1-V-913 1 599.00 0.00 \N \N 2518 692 2 699.0 1 2019-12-22 22:51:40.549928 2019-12-22 22:51:40.549928 1828 \N \N \N 0 PV2-V-723 1 699.00 0.00 \N \N 2519 693 2 2247.0 1 2019-12-22 22:57:06.999129 2019-12-22 22:57:06.999129 1829 \N \N \N 0 PV1-V-914 1 2247.00 0.00 \N \N 2520 692 2 369.0 1 2019-12-22 22:58:17.617042 2019-12-22 22:58:17.617042 1830 \N \N \N 0 PV2-V-724 1 369.00 0.00 \N \N 2521 692 2 674.1 1 2019-12-22 23:05:44.663763 2019-12-22 23:05:44.663763 1831 \N \N \N 0 PV2-V-725 1 1000.00 325.90 \N \N 2523 693 2 1399.0 1 2019-12-23 00:07:14.935629 2019-12-23 00:07:14.935629 1833 \N \N \N 0 PV1-V-915 1 1399.00 0.00 \N \N 2524 692 2 773.1 1 2019-12-23 00:25:11.055768 2019-12-23 00:25:11.055768 1835 \N \N \N 0 PV2-V-727 1 900.00 126.90 \N \N 2525 692 2 700.0 1 2019-12-23 00:30:43.713887 2019-12-23 00:30:43.713887 1836 \N \N \N 0 PV2-V-728 1 700.00 0.00 \N \N 2526 694 2 1303.2 1 2019-12-23 00:37:42.67471 2019-12-23 00:37:42.67471 1837 \N \N \N 0 PV3-V-192 1 1500.00 196.80 \N \N 2527 692 2 1016.1 1 2019-12-23 00:42:52.504614 2019-12-23 00:42:52.504614 1838 \N \N \N 0 PV2-V-729 1 1020.00 3.90 \N \N 2528 695 2 369.0 1 2019-12-23 00:43:35.926753 2019-12-23 00:43:35.926753 1839 \N \N \N 0 PV1-V-916 1 369.00 0.00 \N \N 2529 692 1 1200.0 1 2019-12-23 00:47:45.278557 2019-12-23 00:47:45.278557 1840 1234 \N \N 0 PV2-V-730 1 \N 0.00 \N \N 2530 694 2 999.0 1 2019-12-23 02:32:18.320108 2019-12-23 02:32:18.320108 1841 \N \N \N 0 PV3-V-193 1 1000.00 1.00 \N \N 2531 695 2 300.0 1 2019-12-23 17:31:25.824558 2019-12-23 17:31:25.857986 1494 \N \N \N 3 \N 1 300.00 0.00 \N \N 2532 697 2 4934.2 1 2019-12-23 18:16:46.42743 2019-12-23 18:16:46.42743 1842 \N \N \N 0 PV3-V-194 1 4940.00 5.80 \N \N 2533 697 2 1599.0 1 2019-12-23 19:33:00.048815 2019-12-23 19:33:00.048815 1843 \N \N \N 0 PV3-V-195 1 1600.00 1.00 \N \N 2534 696 1 839.0 1 2019-12-23 19:47:33.983811 2019-12-23 19:47:33.983811 1844 1234 \N \N 0 PV2-V-731 1 \N 0.00 \N \N 2535 695 2 270.0 1 2019-12-23 20:04:14.632876 2019-12-23 20:04:14.632876 1845 \N \N \N 0 PV1-V-917 1 500.00 230.00 \N \N 2536 696 2 890.1 1 2019-12-23 20:12:05.744768 2019-12-23 20:12:05.744768 1846 \N \N \N 0 PV2-V-732 1 890.10 0.00 \N \N 2537 695 2 479.0 1 2019-12-23 20:22:41.546939 2019-12-23 20:22:41.546939 1848 \N \N \N 0 PV1-V-919 1 479.00 0.00 \N \N 2538 696 2 495.0 1 2019-12-23 20:26:29.03082 2019-12-23 20:26:29.03082 1849 \N \N \N 0 PV2-V-733 1 495.00 0.00 \N \N 2539 696 2 809.1 1 2019-12-23 20:38:35.723275 2019-12-23 20:38:35.723275 1850 \N \N \N 0 PV2-V-734 1 810.00 0.90 \N \N 2540 696 1 589.0 1 2019-12-23 20:50:49.539739 2019-12-23 20:50:49.539739 1851 1235 \N \N 0 PV2-V-735 1 \N 0.00 \N \N 2541 696 2 549.0 1 2019-12-23 21:32:02.789338 2019-12-23 21:32:02.789338 1852 \N \N \N 0 PV2-V-736 1 549.00 0.00 \N \N 2542 696 1 469.0 1 2019-12-23 22:00:50.893432 2019-12-23 22:00:50.893432 1853 1234 \N \N 0 PV2-V-737 1 \N 0.00 \N \N 2543 696 1 699.0 1 2019-12-23 22:28:49.027634 2019-12-23 22:28:49.027634 1854 1234 \N \N 0 PV2-V-738 1 \N 0.00 \N \N 2546 696 2 349.0 1 2019-12-23 23:06:37.531431 2019-12-23 23:06:37.531431 1763 \N \N \N 7 \N 1 500.00 151.00 \N \N 2547 695 2 899.0 1 2019-12-23 23:21:47.035915 2019-12-23 23:21:47.035915 1855 \N \N \N 0 PV1-V-920 1 899.00 0.00 \N \N 2548 695 2 1261.0 0 2019-12-23 23:36:10.850191 2019-12-23 23:36:10.850191 \N \N \N 245 2 \N 1 \N \N \N \N 2549 695 2 512.0 0 2019-12-23 23:41:00.379938 2019-12-23 23:41:00.379938 \N \N \N 246 2 \N 1 \N \N \N \N 2550 696 1 799.0 1 2019-12-23 23:55:11.789895 2019-12-23 23:55:11.789895 1856 1234 \N \N 0 PV2-V-739 1 \N 0.00 \N \N 2551 697 2 1303.2 0 2019-12-24 00:29:17.891993 2019-12-24 00:29:17.891993 1837 \N \N \N 0 PV3-V-192 1 \N \N \N \N 2552 696 1 699.0 1 2019-12-24 00:53:00.973914 2019-12-24 00:53:00.973914 1857 1233 \N \N 0 PV2-V-740 1 \N 0.00 \N \N 2553 696 2 711.0 1 2019-12-24 00:53:12.123761 2019-12-24 00:53:12.123761 1857 \N \N \N 0 PV2-V-740 1 711.00 0.00 \N \N 2554 696 2 495.0 1 2019-12-24 00:56:26.390938 2019-12-24 00:56:26.390938 1858 \N \N \N 0 PV2-V-741 1 500.00 5.00 \N \N 2555 695 2 650.0 1 2019-12-24 00:56:45.163162 2019-12-24 00:56:45.163162 1859 \N \N \N 0 PV1-V-921 1 650.00 0.00 \N \N 2556 695 2 1199.0 1 2019-12-24 01:00:12.660289 2019-12-24 01:00:12.660289 1860 \N \N \N 0 PV1-V-922 1 1199.00 0.00 \N \N 2557 695 2 675.0 1 2019-12-24 01:18:23.923485 2019-12-24 01:18:23.923485 1861 \N \N \N 0 PV1-V-923 1 675.00 0.00 \N \N 2558 695 2 849.0 1 2019-12-24 01:23:20.263158 2019-12-24 01:23:20.263158 1399 \N \N \N 7 \N 1 849.00 0.00 \N \N 2559 695 2 1128.0 0 2019-12-24 01:39:16.452073 2019-12-24 01:39:16.452073 \N \N \N 247 2 \N 1 \N \N \N \N 2560 695 1 839.0 1 2019-12-24 01:46:00.567249 2019-12-24 01:46:00.567249 1862 5207 \N \N 0 PV1-V-924 1 \N 0.00 \N \N 2561 695 2 599.0 1 2019-12-24 02:01:44.488117 2019-12-24 02:01:44.488117 1863 \N \N \N 0 PV1-V-925 1 599.00 0.00 \N \N 2562 695 2 899.0 1 2019-12-24 02:11:52.38891 2019-12-24 02:11:52.38891 1864 \N \N \N 0 PV1-V-926 1 899.00 0.00 \N \N 2563 696 2 500.0 1 2019-12-24 02:18:53.495315 2019-12-24 02:18:53.495315 1865 \N \N \N 6 PV2-V-742 0 500.00 0.00 \N \N 2564 696 2 500.0 1 2019-12-24 02:19:51.174168 2019-12-24 02:19:51.174168 1866 \N \N \N 6 PV2-V-743 1 500.00 0.00 \N \N 2565 695 2 214.0 1 2019-12-24 02:23:28.678954 2019-12-24 02:23:28.678954 1867 \N \N \N 0 PV1-V-927 1 214.00 0.00 \N \N 2566 697 1 288.0 1 2019-12-24 02:28:16.354379 2019-12-24 02:28:16.354379 1868 8645 \N \N 0 PV3-V-196 1 \N 0.00 \N \N 2567 697 1 1199.0 1 2019-12-24 02:30:12.267667 2019-12-24 02:30:12.267667 1869 8645 \N \N 0 PV3-V-197 1 \N 0.00 \N \N 2568 697 2 1699.0 1 2019-12-24 02:33:43.285256 2019-12-24 02:33:43.285256 1870 \N \N \N 0 PV3-V-198 1 2000.00 301.00 \N \N 2569 697 2 335.3 1 2019-12-24 02:55:12.585726 2019-12-24 02:55:12.585726 1871 \N \N \N 0 PV3-V-199 1 350.00 14.70 \N \N 2570 695 2 749.0 1 2019-12-24 03:01:14.865449 2019-12-24 03:01:14.865449 1872 \N \N \N 0 PV1-V-928 1 749.00 0.00 \N \N 2571 697 2 629.0 1 2019-12-24 03:20:17.241172 2019-12-24 03:20:17.241172 1873 \N \N \N 0 PV3-V-200 1 629.00 0.00 \N \N 2572 697 2 129.0 1 2019-12-24 03:21:04.006391 2019-12-24 03:21:04.006391 1874 \N \N \N 0 PV3-V-201 1 129.00 0.00 \N \N 2573 699 2 1710.0 1 2019-12-24 17:10:57.710131 2019-12-24 17:10:57.710131 1875 \N \N \N 0 PV1-V-929 1 1710.00 0.00 \N \N 2574 698 2 629.1 1 2019-12-24 18:04:01.241079 2019-12-24 18:04:01.241079 1876 \N \N \N 0 PV2-V-744 1 700.00 70.90 \N \N 2575 698 4 328.0 1 2019-12-24 18:09:05.756797 2019-12-24 18:09:05.756797 1877 6771 \N \N 0 PV2-V-745 1 \N 0.00 \N \N 2582 698 2 829.0 1 2019-12-24 19:49:13.868071 2019-12-24 19:49:13.868071 1883 \N \N \N 0 PV2-V-749 1 850.00 21.00 \N \N 2577 698 2 719.1 1 2019-12-24 18:37:59.54117 2019-12-24 18:37:59.54117 1879 \N \N \N 0 PV2-V-747 1 1000.00 280.90 \N \N 2578 698 1 2375.99 1 2019-12-24 19:16:10.67862 2019-12-24 19:16:10.67862 1880 9697 \N \N 0 PV2-V-748 1 \N 0.00 \N \N 2579 700 2 799.0 1 2019-12-24 19:27:23.271583 2019-12-24 19:27:23.271583 1881 \N \N \N 0 PV3-V-202 1 799.00 0.00 \N \N 2580 700 2 60.0 1 2019-12-24 19:28:47.995875 2019-12-24 19:28:47.995875 1882 \N \N \N 0 PV3-V-203 1 70.00 10.00 \N \N 2581 698 2 219.0 1 2019-12-24 19:40:35.597646 2019-12-24 19:40:35.597646 1866 \N \N \N 4 \N 1 219.00 0.00 \N \N 2584 698 2 809.1 1 2019-12-24 20:02:28.547508 2019-12-24 20:02:28.547508 1884 \N \N \N 0 PV2-V-750 1 1009.00 199.90 \N \N 2585 700 1 1799.0 1 2019-12-24 20:09:02.147911 2019-12-24 20:09:02.147911 1885 1234 \N \N 0 PV3-V-204 1 \N 0.00 \N \N 2586 699 2 270.0 1 2019-12-24 20:19:07.506364 2019-12-24 20:19:07.506364 1886 \N \N \N 0 PV1-V-930 1 270.00 0.00 \N \N 2587 698 3 600.0 1 2019-12-24 20:26:37.627767 2019-12-24 20:26:37.627767 1888 \N \N \N 0 PV2-V-752 1 \N 0.00 \N \N 1234 2588 698 2 1299.0 1 2019-12-24 20:40:18.25386 2019-12-24 20:40:18.25386 1889 \N \N \N 0 PV2-V-753 1 1300.00 1.00 \N \N 2589 700 2 1502.1 1 2019-12-24 20:46:40.831572 2019-12-24 20:46:40.831572 1890 \N \N \N 0 PV3-V-205 1 1502.10 0.00 \N \N 2590 698 2 799.0 1 2019-12-24 21:14:27.658126 2019-12-24 21:14:27.658126 1891 \N \N \N 0 PV2-V-754 1 1000.00 201.00 \N \N 2591 699 4 639.0 1 2019-12-24 21:38:14.718737 2019-12-24 21:38:14.718737 1892 1207 \N \N 0 PV1-V-931 1 \N 0.00 \N \N 2592 699 4 749.0 1 2019-12-24 21:39:19.483225 2019-12-24 21:39:19.483225 1893 1207 \N \N 0 PV1-V-932 1 \N 0.00 \N \N 2593 700 2 1000.0 1 2019-12-24 22:19:49.597503 2019-12-24 22:19:49.597503 1894 \N \N \N 0 PV3-V-206 1 1000.00 0.00 \N \N 2594 700 1 233.0 1 2019-12-24 22:20:53.947811 2019-12-24 22:20:53.947811 1894 9895 \N \N 0 PV3-V-206 1 \N 0.00 \N \N 2595 700 2 0.3 1 2019-12-24 22:21:11.389307 2019-12-24 22:21:11.389307 1894 \N \N \N 0 PV3-V-206 1 0.30 0.00 \N \N 2596 700 2 229.0 1 2019-12-24 22:53:09.360358 2019-12-24 22:53:09.360358 1895 \N \N \N 0 PV3-V-207 1 229.00 0.00 \N \N 2597 699 2 139.0 1 2019-12-24 23:08:13.234854 2019-12-24 23:08:13.234854 1896 \N \N \N 0 PV1-V-933 1 139.00 0.00 \N \N 2598 698 2 239.0 1 2019-12-24 23:40:14.695678 2019-12-24 23:40:14.695678 1880 \N \N \N 5 \N 1 239.00 0.00 26 \N 2599 700 1 560.0 1 2019-12-25 00:06:49.510743 2019-12-25 00:06:49.510743 1897 4012 \N \N 0 PV3-V-208 1 \N 0.00 \N \N 2600 700 2 699.0 1 2019-12-25 00:08:39.578511 2019-12-25 00:08:39.578511 1898 \N \N \N 0 PV3-V-209 1 1000.00 301.00 \N \N 2601 698 1 649.0 1 2019-12-25 00:31:37.944195 2019-12-25 00:31:37.944195 1899 8525 \N \N 0 PV2-V-755 1 \N 0.00 \N \N 2602 698 2 791.1 1 2019-12-25 01:30:19.493373 2019-12-25 01:30:19.493373 1900 \N \N \N 0 PV2-V-756 1 791.10 0.00 \N \N 2603 700 2 200.0 0 2019-12-25 02:05:45.711826 2019-12-25 02:05:45.711826 \N \N \N 248 2 \N 1 \N \N \N \N 2604 700 1 729.0 1 2019-12-25 02:30:58.097484 2019-12-25 02:30:58.097484 1901 1601 \N \N 0 PV3-V-210 1 \N 0.00 \N \N 2605 702 2 1629.0 1 2019-12-26 17:52:58.110411 2019-12-26 17:52:58.110411 1902 \N \N \N 0 PV3-V-211 1 1700.00 71.00 \N \N 2606 702 2 1200.0 1 2019-12-26 19:04:29.028466 2019-12-26 19:04:29.028466 1903 \N \N \N 6 PV3-V-212 1 1200.00 0.00 \N \N 2607 703 1 759.0 1 2019-12-26 20:01:38.176026 2019-12-26 20:01:38.176026 1905 1234 \N \N 0 PV2-V-758 1 \N 0.00 \N \N 2608 703 1 650.0 1 2019-12-26 20:07:57.945796 2019-12-26 20:07:57.945796 1906 1236 \N \N 0 PV2-V-759 1 \N 0.00 \N \N 2609 703 2 1468.4 1 2019-12-26 20:10:53.481311 2019-12-26 20:10:53.481311 1907 \N \N \N 0 PV2-V-760 1 1500.00 31.60 \N \N 2610 703 2 0 1 2019-12-26 20:23:16.2575 2019-12-26 20:23:16.290765 1651 \N \N \N 3 \N 1 250.00 250.00 \N \N 2611 702 2 899.0 1 2019-12-26 20:35:34.334044 2019-12-26 20:35:34.334044 1908 \N \N \N 0 PV3-V-213 1 1000.00 101.00 \N \N 2612 703 2 22.9 1 2019-12-26 21:30:51.67703 2019-12-26 21:30:51.67703 1900 \N \N \N 5 \N 1 22.90 0.00 27 \N 2613 701 1 749.0 1 2019-12-26 21:46:22.774293 2019-12-26 21:46:22.774293 1909 3291 \N \N 0 PV1-V-934 1 \N 0.00 \N \N 2614 703 2 699.0 1 2019-12-26 22:52:27.409239 2019-12-26 22:52:27.409239 1910 \N \N \N 0 PV2-V-761 1 1000.00 301.00 \N \N 2615 701 1 910.0 1 2019-12-26 23:59:21.702761 2019-12-26 23:59:21.702761 1911 1899 \N \N 0 PV1-V-935 1 \N 0.00 \N \N 2616 701 2 1450.0 1 2019-12-27 00:11:15.918156 2019-12-27 00:11:15.918156 1912 \N \N \N 0 PV1-V-936 1 1629.00 179.00 \N \N 2617 701 2 98.99 1 2019-12-27 01:24:43.742259 2019-12-27 01:24:43.742259 1913 \N \N \N 0 PV1-V-937 1 98.99 0.00 \N \N 2618 702 2 250.0 1 2019-12-27 01:31:10.81517 2019-12-27 01:31:10.852204 1651 \N \N \N 3 \N 1 250.00 0.00 \N \N 2619 701 2 30.0 1 2019-12-27 02:43:15.35907 2019-12-27 02:43:15.35907 1915 \N \N \N 0 PV1-V-938 1 30.00 0.00 \N \N 2620 701 1 1590.0 1 2019-12-27 02:44:45.807481 2019-12-27 02:44:45.807481 1915 7099 \N \N 0 PV1-V-938 1 \N 0.00 \N \N 2621 706 2 30.0 1 2019-12-27 18:46:57.404817 2019-12-27 18:46:57.404817 1917 \N \N \N 0 PV1-V-940 1 30.00 0.00 \N \N 2622 706 4 1360.0 1 2019-12-27 18:47:42.754802 2019-12-27 18:47:42.754802 1917 5000 \N \N 0 PV1-V-940 1 \N 0.00 \N \N 2623 705 2 899.0 1 2019-12-27 20:10:47.316849 2019-12-27 20:10:47.316849 1918 \N \N \N 0 PV3-V-215 1 1000.00 101.00 \N \N 2624 705 2 468.0 0 2019-12-27 20:21:13.600467 2019-12-27 20:21:13.600467 \N \N \N 249 2 \N 1 \N \N \N \N 2625 706 2 1170.0 1 2019-12-27 20:34:18.357633 2019-12-27 20:34:18.357633 1919 \N \N \N 0 PV1-V-941 1 1170.00 0.00 \N \N 2626 706 2 425.0 0 2019-12-27 20:43:02.10911 2019-12-27 20:43:02.10911 \N \N \N 250 2 \N 1 \N \N \N \N 2627 706 2 1170.0 1 2019-12-27 21:41:18.972985 2019-12-27 21:41:18.972985 1920 \N \N \N 0 PV1-V-942 1 1170.00 0.00 \N \N 2628 706 2 540.0 1 2019-12-27 22:18:16.976799 2019-12-27 22:18:16.976799 1921 \N \N \N 0 PV1-V-943 1 540.00 0.00 \N \N 2629 704 2 584.1 1 2019-12-27 22:56:10.927463 2019-12-27 22:56:10.927463 1922 \N \N \N 0 PV2-V-762 1 600.00 15.90 \N \N 2630 704 2 699.0 1 2019-12-27 22:57:59.984503 2019-12-27 22:57:59.984503 1722 \N \N \N 7 \N 1 1000.00 301.00 \N \N 2631 704 2 829.0 1 2019-12-27 22:59:45.038797 2019-12-27 22:59:45.038797 1923 \N \N \N 0 PV2-V-763 1 900.00 71.00 \N \N 2632 704 1 599.0 1 2019-12-27 23:43:03.713632 2019-12-27 23:43:03.713632 1924 4133 \N \N 0 PV2-V-764 1 \N 0.00 \N \N 2633 706 2 2000.0 1 2019-12-28 00:14:11.194918 2019-12-28 00:14:11.194918 1925 \N \N \N 0 PV1-V-944 1 2000.00 0.00 \N \N 2634 704 2 99.0 1 2019-12-28 00:17:50.666982 2019-12-28 00:17:50.666982 1926 \N \N \N 0 PV2-V-765 1 200.00 101.00 \N \N 2635 704 2 300.0 1 2019-12-28 00:23:00.465388 2019-12-28 00:23:00.465388 1927 \N \N \N 6 PV2-V-766 1 500.00 200.00 \N \N 2641 704 2 512.1 1 2019-12-28 01:49:29.955643 2019-12-28 01:49:29.955643 1928 \N \N \N 0 PV2-V-767 1 512.10 0.00 \N \N 2642 707 2 899.1 1 2019-12-28 18:00:57.959406 2019-12-28 18:00:57.959406 1929 \N \N \N 0 PV2-V-768 1 1000.00 100.90 \N \N 2643 708 2 1100.0 1 2019-12-28 19:51:53.28861 2019-12-28 19:51:53.28861 1930 \N \N \N 0 PV1-V-945 1 1100.00 0.00 \N \N 2644 709 2 139.0 1 2019-12-28 20:07:19.902216 2019-12-28 20:07:19.902216 1931 \N \N \N 0 PV3-V-216 1 200.00 61.00 \N \N 2645 708 2 1080.0 1 2019-12-28 20:26:57.827944 2019-12-28 20:26:57.827944 1932 \N \N \N 0 PV1-V-946 1 1080.00 0.00 \N \N 2646 708 2 1420.0 1 2019-12-28 21:24:49.859478 2019-12-28 21:24:49.859478 1933 \N \N \N 0 PV1-V-947 1 1500.00 80.00 \N \N 2647 708 2 559.0 1 2019-12-28 22:00:03.702286 2019-12-28 22:00:03.702286 1935 \N \N \N 0 PV1-V-949 1 559.00 0.00 \N \N 2648 708 1 171.0 1 2019-12-28 22:01:01.675936 2019-12-28 22:01:01.675936 1935 563 \N \N 0 PV1-V-949 1 \N 0.00 \N \N 2649 707 4 110.0 1 2019-12-28 22:01:17.375261 2019-12-28 22:01:17.375261 1851 9156 \N \N 5 \N 1 \N 0.00 29 \N 2651 707 2 1039.0 1 2019-12-28 22:44:01.413614 2019-12-28 22:44:01.413614 1927 \N \N \N 4 \N 1 1100.00 61.00 \N \N 2652 707 2 0.2 1 2019-12-28 22:46:20.447448 2019-12-28 22:46:20.447448 1927 \N \N \N 7 \N 1 0.20 0.00 \N \N 2653 707 2 0.1 1 2019-12-28 22:47:25.189679 2019-12-28 22:47:25.189679 1866 \N \N \N 7 \N 1 0.10 0.00 \N \N 2654 709 2 500.0 1 2019-12-28 22:51:40.984515 2019-12-28 22:51:40.984515 1778 \N \N \N 4 \N 1 500.00 0.00 \N \N 2655 709 2 50.0 1 2019-12-28 22:53:28.25972 2019-12-28 22:53:28.25972 1778 \N \N \N 4 \N 1 50.00 0.00 \N \N 2656 709 2 77.0 1 2019-12-28 22:54:05.523963 2019-12-28 22:54:05.523963 1778 \N \N \N 4 \N 1 100.00 23.00 \N \N 2657 707 2 449.0 1 2019-12-28 23:31:23.412136 2019-12-28 23:31:23.412136 1596 \N \N \N 7 \N 1 500.00 51.00 \N \N 2658 709 2 69.8 1 2019-12-29 00:41:40.361207 2019-12-29 00:41:40.361207 1842 \N \N \N 5 \N 1 70.00 0.20 30 \N 2659 708 2 300.0 1 2019-12-29 01:50:51.543806 2019-12-29 01:50:51.613063 1494 \N \N \N 3 \N 1 300.00 0.00 \N \N 2660 709 2 2299.0 1 2019-12-29 01:52:20.803081 2019-12-29 01:52:20.803081 1936 \N \N \N 0 PV3-V-217 1 2300.00 1.00 \N \N 2661 708 2 1328.0 0 2019-12-29 01:52:54.624204 2019-12-29 01:52:54.624204 \N \N \N 251 2 \N 1 \N \N \N \N 2662 708 2 400.0 0 2019-12-29 01:55:35.735182 2019-12-29 01:55:35.735182 \N \N \N 252 2 \N 1 \N \N \N \N 2663 712 2 500.0 1 2019-12-29 18:32:00.325976 2019-12-29 18:32:00.325976 1463 \N \N \N 4 \N 1 500.00 0.00 \N \N 2664 712 2 2069.1 1 2019-12-29 19:27:09.296287 2019-12-29 19:27:09.296287 1937 \N \N \N 0 PV3-V-218 1 2070.00 0.90 \N \N 2665 711 4 1099.0 1 2019-12-29 19:53:12.150065 2019-12-29 19:53:12.150065 1816 5725 \N \N 7 \N 1 \N 0.00 \N \N 2666 711 2 675.0 1 2019-12-29 21:33:03.828418 2019-12-29 21:33:03.828418 1938 \N \N \N 0 PV1-V-950 1 1000.00 325.00 \N \N 2667 711 2 2500.0 1 2019-12-29 21:39:20.041483 2019-12-29 21:39:20.041483 1939 \N \N \N 0 PV1-V-951 1 2500.00 0.00 \N \N 2668 711 2 200.0 0 2019-12-29 21:44:47.163021 2019-12-29 21:44:47.163021 \N \N \N 253 2 \N 1 \N \N \N \N 2669 713 2 570.0 1 2019-12-30 17:43:36.651531 2019-12-30 17:43:36.651531 1940 \N \N \N 0 PV1-V-952 1 570.00 0.00 \N \N 2670 713 2 810.0 1 2019-12-30 18:00:35.859075 2019-12-30 18:00:35.859075 1941 \N \N \N 0 PV1-V-953 1 810.00 0.00 \N \N 2671 714 2 629.0 1 2019-12-30 18:36:21.060319 2019-12-30 18:36:21.060319 1942 \N \N \N 0 PV3-V-219 1 700.00 71.00 \N \N 2672 714 1 1360.0 1 2019-12-30 19:26:03.287499 2019-12-30 19:26:03.287499 1943 7884 \N \N 0 PV3-V-220 1 \N 0.00 \N \N 2673 714 2 870.0 1 2019-12-30 19:44:14.649593 2019-12-30 19:44:14.649593 1903 \N \N \N 7 \N 1 870.00 0.00 \N \N 2674 714 1 870.0 1 2019-12-30 19:45:11.494588 2019-12-30 19:45:11.494588 1903 3070 \N \N 7 \N 1 \N 0.00 \N \N 2675 714 2 870.0 0 2019-12-30 19:47:27.174144 2019-12-30 19:47:27.174144 \N \N \N 254 2 \N 1 \N \N \N \N 2676 713 2 789.0 1 2019-12-30 20:12:29.595733 2019-12-30 20:12:29.595733 1944 \N \N \N 0 PV1-V-954 1 789.00 0.00 \N \N 2677 713 2 500.0 1 2019-12-30 21:01:21.859085 2019-12-30 21:01:21.892756 1542 \N \N \N 3 \N 1 500.00 0.00 \N \N 2678 714 2 569.0 1 2019-12-30 21:39:14.368494 2019-12-30 21:39:14.368494 1945 \N \N \N 0 PV3-V-221 1 600.00 31.00 \N \N 2679 714 2 599.0 1 2019-12-30 21:41:53.593415 2019-12-30 21:41:53.593415 1946 \N \N \N 0 PV3-V-222 1 599.00 0.00 \N \N 2680 710 2 989.0 1 2019-12-30 21:53:26.741848 2019-12-30 21:53:26.741848 1947 \N \N \N 0 PV2-V-769 1 1000.00 11.00 \N \N 2681 710 2 413.1 1 2019-12-30 22:34:06.870239 2019-12-30 22:34:06.870239 1948 \N \N \N 0 PV2-V-770 1 500.00 86.90 \N \N 2683 713 2 850.0 1 2019-12-30 23:07:01.480769 2019-12-30 23:07:01.480769 1949 \N \N \N 0 PV1-V-955 1 850.00 0.00 \N \N 2684 710 2 629.1 1 2019-12-30 23:08:45.315445 2019-12-30 23:08:45.315445 1950 \N \N \N 0 PV2-V-771 1 629.10 0.00 \N \N 2685 714 2 1299.0 1 2019-12-30 23:21:43.642126 2019-12-30 23:21:43.642126 1951 \N \N \N 0 PV3-V-223 1 1300.00 1.00 \N \N 2686 714 2 749.0 1 2019-12-31 00:37:42.500032 2019-12-31 00:37:42.500032 1952 \N \N \N 0 PV3-V-224 1 750.00 1.00 \N \N 2687 710 2 629.1 1 2019-12-31 00:51:39.398873 2019-12-31 00:51:39.398873 1953 \N \N \N 0 PV2-V-772 1 640.00 10.90 \N \N 2688 710 2 629.1 1 2019-12-31 00:53:16.524986 2019-12-31 00:53:16.524986 1954 \N \N \N 0 PV2-V-773 1 650.00 20.90 \N \N 2689 710 2 899.0 1 2019-12-31 00:58:12.863613 2019-12-31 00:58:12.863613 1955 \N \N \N 0 PV2-V-774 1 1000.00 101.00 \N \N 2690 710 2 799.0 1 2019-12-31 01:11:10.730656 2019-12-31 01:11:10.730656 1956 \N \N \N 0 PV2-V-775 1 1000.00 201.00 \N \N 2692 710 2 629.1 1 2019-12-31 02:01:27.787551 2019-12-31 02:01:27.787551 1957 \N \N \N 0 PV2-V-776 1 650.00 20.90 \N \N 2693 713 2 675.0 1 2019-12-31 02:05:19.107698 2019-12-31 02:05:19.107698 1959 \N \N \N 0 PV1-V-957 1 700.00 25.00 \N \N 2694 713 2 810.0 1 2019-12-31 02:22:01.712938 2019-12-31 02:22:01.712938 1960 \N \N \N 0 PV1-V-958 1 810.00 0.00 \N \N 2695 714 2 773.0 0 2019-12-31 02:54:05.071908 2019-12-31 02:54:05.071908 \N \N \N 255 2 \N 1 \N \N \N \N 2697 715 2 570.0 1 2019-12-31 17:42:01.392833 2019-12-31 17:42:01.392833 1961 \N \N \N 0 PV1-V-959 1 570.00 0.00 \N \N 2698 716 1 1129.0 1 2019-12-31 18:12:13.755841 2019-12-31 18:12:13.755841 1962 2247 \N \N 0 PV2-V-777 1 \N 0.00 \N \N 2699 715 2 540.0 1 2019-12-31 18:33:09.11427 2019-12-31 18:33:09.11427 1963 \N \N \N 0 PV1-V-960 1 540.00 0.00 \N \N 2700 715 2 700.0 1 2019-12-31 19:10:18.970521 2019-12-31 19:10:18.970521 1964 \N \N \N 0 PV1-V-961 1 700.00 0.00 \N \N 2701 715 2 5.0 0 2019-12-31 19:44:53.588056 2019-12-31 19:44:53.588056 \N \N \N 256 2 \N 1 \N \N \N \N 2702 716 1 689.0 1 2019-12-31 19:52:30.372841 2019-12-31 19:52:30.372841 1965 3691 \N \N 0 PV2-V-778 1 \N 0.00 \N \N 2703 717 2 500.0 1 2019-12-31 20:00:06.24686 2019-12-31 20:00:06.24686 1966 \N \N \N 3 \N 1 500.00 0.00 \N \N 2704 717 2 250.0 1 2019-12-31 20:02:27.886383 2019-12-31 20:02:27.886383 1966 \N \N \N 3 \N 1 250.00 0.00 \N \N 2705 717 2 674.1 1 2019-12-31 20:13:01.995796 2019-12-31 20:13:01.995796 1967 \N \N \N 0 PV3-V-226 1 690.00 15.90 \N \N 2706 715 2 1150.0 1 2019-12-31 20:14:25.994194 2019-12-31 20:14:25.994194 1968 \N \N \N 0 PV1-V-962 1 1150.00 0.00 \N \N 2707 716 2 1016.1 1 2019-12-31 20:25:29.640518 2019-12-31 20:25:29.640518 1969 \N \N \N 0 PV2-V-779 1 1016.10 0.00 \N \N 2708 716 2 1079.1 1 2019-12-31 20:50:38.61494 2019-12-31 20:50:38.61494 1970 \N \N \N 0 PV2-V-780 1 1200.00 120.90 \N \N 2730 718 2 239.9 1 2020-01-02 20:03:20.907455 2020-01-02 20:03:20.907455 1876 \N \N \N 5 \N 1 239.90 0.00 33 \N 2710 715 2 600.0 1 2019-12-31 21:17:53.921913 2019-12-31 21:17:53.921913 1972 \N \N \N 0 PV1-V-964 1 600.00 0.00 \N \N 2711 715 2 630.0 1 2019-12-31 21:20:45.615833 2019-12-31 21:20:45.615833 1973 \N \N \N 0 PV1-V-965 1 1030.00 400.00 \N \N 2712 715 2 4649.99 1 2019-12-31 21:34:55.634797 2019-12-31 21:34:55.634797 1974 \N \N \N 0 PV1-V-966 1 4649.99 0.00 \N \N 2714 715 2 560.0 1 2019-12-31 21:41:12.07376 2019-12-31 21:41:12.07376 1976 \N \N \N 0 PV1-V-968 1 560.00 0.00 \N \N 2715 717 2 98.0 1 2019-12-31 22:35:49.330012 2019-12-31 22:35:49.330012 1977 \N \N \N 0 PV3-V-227 1 200.00 102.00 \N \N 2716 715 2 900.0 1 2019-12-31 22:46:39.484393 2019-12-31 22:46:39.484393 1978 \N \N \N 0 PV1-V-969 1 900.00 0.00 \N \N 2717 715 2 675.0 1 2019-12-31 22:50:38.186632 2019-12-31 22:50:38.186632 1979 \N \N \N 0 PV1-V-970 1 800.00 125.00 \N \N 2718 715 5 2243.0 1 2019-12-31 23:18:07.553693 2019-12-31 23:18:07.553693 1980 \N \N \N 0 PV1-V-971 1 \N 0.00 \N \N UNIVALE SSQ3 SSPW 1154124310170 2719 715 2 15.0 1 2019-12-31 23:19:32.745802 2019-12-31 23:19:32.745802 1981 \N \N \N 0 PV1-V-972 1 15.00 0.00 \N \N 2720 715 4 630.0 1 2019-12-31 23:20:56.819061 2019-12-31 23:20:56.819061 1981 681 \N \N 0 PV1-V-972 1 \N 0.00 \N \N 2721 716 2 629.1 1 2019-12-31 23:21:24.984505 2019-12-31 23:21:24.984505 1982 \N \N \N 0 PV2-V-781 1 1020.00 390.90 \N \N 2722 717 1 749.0 1 2019-12-31 23:26:33.233466 2019-12-31 23:26:33.233466 1983 4667 \N \N 0 PV3-V-228 1 \N 0.00 \N \N 2723 715 2 630.0 1 2019-12-31 23:47:41.366727 2019-12-31 23:47:41.366727 1984 \N \N \N 0 PV1-V-973 1 630.00 0.00 \N \N 2724 717 2 549.0 1 2020-01-01 00:17:02.374982 2020-01-01 00:17:02.374982 1985 \N \N \N 0 PV3-V-229 1 600.00 51.00 \N \N 2725 715 2 900.0 1 2020-01-01 00:35:14.200151 2020-01-01 00:35:14.200151 1986 \N \N \N 0 PV1-V-974 1 900.00 0.00 \N \N 2726 716 2 594.15 1 2020-01-01 00:36:55.685313 2020-01-01 00:36:55.685313 1987 \N \N \N 0 PV2-V-782 1 600.00 5.85 \N \N 2727 716 4 989.0 1 2020-01-01 00:38:22.922943 2020-01-01 00:38:22.922943 1988 9643 \N \N 0 PV2-V-783 1 \N 0.00 \N \N 2728 718 1 1000.0 1 2020-01-01 01:05:32.422498 2020-01-01 01:05:32.422498 1989 5491 \N \N 0 PV2-V-784 1 \N 0.00 \N \N 2729 718 2 350.0 1 2020-01-01 01:06:13.584312 2020-01-01 01:06:13.584312 1989 \N \N \N 0 PV2-V-784 1 350.00 0.00 \N \N 2731 718 2 934.4 1 2020-01-02 21:04:01.764775 2020-01-02 21:04:01.764775 1990 \N \N \N 0 PV2-V-785 1 1000.00 65.60 \N \N 2732 719 2 679.0 1 2020-01-02 22:02:53.841669 2020-01-02 22:02:53.841669 1991 \N \N \N 0 PV1-V-975 1 1000.00 321.00 \N \N 2733 718 2 1000.0 0 2020-01-03 02:08:28.051479 2020-01-03 02:08:28.051479 \N \N \N 257 2 \N 1 \N \N \N \N 2734 722 2 650.0 1 2020-01-03 18:25:32.660393 2020-01-03 18:25:32.660393 1992 \N \N \N 0 PV1-V-976 1 700.00 50.00 \N \N 2735 721 2 269.4 1 2020-01-03 19:59:56.941235 2020-01-03 19:59:56.941235 1994 \N \N \N 0 PV2-V-786 1 500.00 230.60 \N \N 2736 721 2 503.4 1 2020-01-03 20:15:36.046853 2020-01-03 20:15:36.046853 1995 \N \N \N 0 PV2-V-787 1 520.00 16.60 \N \N 2737 722 2 450.0 1 2020-01-03 20:47:37.653869 2020-01-03 20:47:37.653869 1996 \N \N \N 0 PV1-V-977 1 450.00 0.00 \N \N 2738 721 2 799.0 1 2020-01-03 21:36:54.382245 2020-01-03 21:36:54.382245 1997 \N \N \N 0 PV2-V-788 1 1000.00 201.00 \N \N 2739 721 2 281.4 1 2020-01-03 21:44:20.38316 2020-01-03 21:44:20.38316 1998 \N \N \N 0 PV2-V-789 1 300.00 18.60 \N \N 2746 726 2 299.4 1 2020-01-04 18:49:23.450872 2020-01-04 18:49:23.450872 2005 \N \N \N 0 PV2-V-792 1 500.00 200.60 \N \N 2741 721 2 473.4 1 2020-01-04 00:42:18.145482 2020-01-04 00:42:18.145482 2000 \N \N \N 0 PV2-V-791 1 500.00 26.60 \N \N 2742 723 2 1139.4 1 2020-01-04 01:29:24.377567 2020-01-04 01:29:24.377567 2001 \N \N \N 0 PV3-V-231 1 1200.00 60.60 \N \N 2743 723 2 239.2 1 2020-01-04 01:39:49.597061 2020-01-04 01:39:49.597061 2002 \N \N \N 0 PV3-V-232 1 300.00 60.80 \N \N 2744 723 2 1379.4 1 2020-01-04 01:41:00.062174 2020-01-04 01:41:00.062174 2003 \N \N \N 0 PV3-V-233 1 1400.00 20.60 \N \N 2745 724 2 1669.0 1 2020-01-04 18:09:05.569284 2020-01-04 18:09:05.569284 2004 \N \N \N 0 PV1-V-978 1 1669.00 0.00 \N \N 2747 726 2 539.4 1 2020-01-04 19:58:35.685203 2020-01-04 19:58:35.685203 2006 \N \N \N 0 PV2-V-793 1 550.00 10.60 \N \N 2748 726 2 389.4 1 2020-01-04 20:25:55.550453 2020-01-04 20:25:55.550453 2007 \N \N \N 0 PV2-V-794 1 500.00 110.60 \N \N 2749 726 2 389.4 1 2020-01-04 20:28:05.361891 2020-01-04 20:28:05.361891 2008 \N \N \N 0 PV2-V-795 1 400.00 10.60 \N \N 2750 726 2 98.99 1 2020-01-04 20:35:55.326928 2020-01-04 20:35:55.326928 2009 \N \N \N 0 PV2-V-796 1 100.00 1.01 \N \N 2751 724 2 749.0 1 2020-01-04 21:11:39.563972 2020-01-04 21:11:39.563972 2010 \N \N \N 0 PV1-V-979 1 749.00 0.00 \N \N 2752 724 2 562.0 0 2020-01-04 22:43:44.622403 2020-01-04 22:43:44.622403 \N \N \N 258 2 \N 1 \N \N \N \N 2753 724 2 350.0 1 2020-01-04 22:56:41.073618 2020-01-04 22:56:41.108557 1702 \N \N \N 3 \N 1 350.00 0.00 \N \N 2754 726 2 419.4 1 2020-01-05 00:19:47.124564 2020-01-05 00:19:47.124564 2011 \N \N \N 0 PV2-V-797 1 500.00 80.60 \N \N 2760 725 2 50.0 0 2020-01-05 02:54:58.822676 2020-01-05 02:54:58.822676 \N \N \N 261 2 \N 1 \N \N \N \N 2756 724 2 1629.0 1 2020-01-05 01:23:48.839341 2020-01-05 01:23:48.839341 2013 \N \N \N 0 PV1-V-981 1 1629.00 0.00 \N \N 2757 724 2 1328.0 0 2020-01-05 02:18:13.607535 2020-01-05 02:18:13.607535 \N \N \N 259 2 \N 1 \N \N \N \N 2758 726 2 1890.0 0 2020-01-05 02:39:22.525328 2020-01-05 02:39:22.525328 \N \N \N 260 2 \N 1 \N \N \N \N 2759 726 2 474.0 1 2020-01-05 02:41:24.867285 2020-01-05 02:41:24.867285 2014 \N \N \N 0 PV2-V-798 1 474.00 0.00 \N \N 2761 727 2 281.4 1 2020-01-06 22:57:15.126957 2020-01-06 22:57:15.126957 2015 \N \N \N 0 PV2-V-799 1 300.00 18.60 \N \N 2762 728 2 330.0 1 2020-01-07 00:17:17.421149 2020-01-07 00:17:17.421149 2016 \N \N \N 0 PV1-V-982 1 330.00 0.00 \N \N 2763 729 2 419.4 1 2020-01-07 19:12:42.53796 2020-01-07 19:12:42.53796 2017 \N \N \N 0 PV2-V-800 1 420.00 0.60 \N \N 2764 730 2 449.4 1 2020-01-07 20:50:46.595756 2020-01-07 20:50:46.595756 2018 \N \N \N 0 PV3-V-234 1 450.00 0.60 \N \N 2765 730 2 449.4 1 2020-01-07 21:06:00.211083 2020-01-07 21:06:00.211083 2019 \N \N \N 0 PV3-V-235 1 500.00 50.60 \N \N 2766 730 1 899.0 1 2020-01-07 21:27:36.226402 2020-01-07 21:27:36.226402 1463 8054 \N \N 7 \N 1 \N 0.00 \N \N 2767 731 2 978.0 1 2020-01-07 21:57:23.190497 2020-01-07 21:57:23.190497 2020 \N \N \N 0 PV1-V-983 1 978.00 0.00 \N \N 2768 731 2 499.0 1 2020-01-07 23:45:02.364106 2020-01-07 23:45:02.364106 2021 \N \N \N 0 PV1-V-984 1 499.00 0.00 \N \N 3130 877 2 349.0 1 2020-03-06 22:33:19.931252 2020-03-06 22:33:19.931252 2293 \N \N \N 4 \N 1 349.00 0.00 \N \N 3131 876 2 800.0 0 2020-03-07 02:59:01.839036 2020-03-07 02:59:01.839036 \N \N \N 298 2 \N 1 \N \N \N \N 2769 733 2 500.0 1 2020-01-08 19:16:33.965229 2020-01-08 19:16:33.965229 2022 \N \N \N 6 PV1-V-985 1 500.00 0.00 \N \N 2770 732 2 550.0 1 2020-01-08 19:38:26.526878 2020-01-08 19:38:26.526878 2023 \N \N \N 0 PV2-V-801 1 550.00 0.00 \N \N 2771 733 2 780.0 1 2020-01-08 22:27:50.637509 2020-01-08 22:27:50.637509 2024 \N \N \N 0 PV1-V-986 1 780.00 0.00 \N \N 2772 733 5 1008.0 1 2020-01-08 22:50:34.768223 2020-01-08 22:50:34.768223 2025 \N \N \N 0 PV1-V-987 1 \N 0.00 \N \N UNIVALE SUHT 2866 2773 733 2 360.0 1 2020-01-09 00:42:48.710522 2020-01-09 00:42:48.710522 2026 \N \N \N 0 PV1-V-988 1 410.00 50.00 \N \N 2774 734 2 977.4 1 2020-01-09 01:07:43.814407 2020-01-09 01:07:43.814407 2027 \N \N \N 0 PV3-V-236 1 1000.00 22.60 \N \N 2775 736 2 150.0 1 2020-01-09 17:33:12.940225 2020-01-09 17:33:12.940225 1485 \N \N \N 4 \N 1 150.00 0.00 \N \N 2776 736 2 200.0 1 2020-01-09 17:49:34.166423 2020-01-09 17:49:34.166423 2028 \N \N \N 0 PV1-V-989 1 200.00 0.00 \N \N 2777 735 2 299.4 1 2020-01-09 23:53:34.701827 2020-01-09 23:53:34.701827 2029 \N \N \N 0 PV2-V-802 1 300.00 0.60 \N \N 2778 738 2 500.0 1 2020-01-10 17:54:03.953142 2020-01-10 17:54:03.989059 1625 \N \N \N 3 \N 1 500.00 0.00 \N \N 2779 738 2 438.0 1 2020-01-10 18:38:51.007917 2020-01-10 18:38:51.007917 2030 \N \N \N 0 PV1-V-990 1 438.00 0.00 \N \N 2780 739 2 349.3 1 2020-01-10 22:23:04.927708 2020-01-10 22:23:04.927708 2031 \N \N \N 0 PV3-V-237 1 500.00 150.70 \N \N 2781 738 2 840.0 1 2020-01-10 22:57:58.815101 2020-01-10 22:57:58.815101 2032 \N \N \N 0 PV1-V-991 1 840.00 0.00 \N \N 2782 737 2 275.4 1 2020-01-11 00:01:26.63907 2020-01-11 00:01:26.63907 2033 \N \N \N 0 PV2-V-803 1 500.00 224.60 \N \N 2783 739 2 869.4 1 2020-01-11 01:44:25.212784 2020-01-11 01:44:25.212784 2034 \N \N \N 0 PV3-V-238 1 900.00 30.60 \N \N 2784 739 2 49.0 1 2020-01-11 01:46:07.839954 2020-01-11 01:46:07.839954 2035 \N \N \N 0 PV3-V-239 1 49.00 0.00 \N \N 2785 738 2 600.0 1 2020-01-11 01:54:24.057592 2020-01-11 01:54:24.057592 2036 \N \N \N 0 PV1-V-992 1 600.00 0.00 \N \N 2786 738 2 250.0 1 2020-01-11 01:59:58.221779 2020-01-11 01:59:58.221779 2037 \N \N \N 0 PV1-V-993 1 250.00 0.00 \N \N 2787 741 2 1988.0 1 2020-01-11 19:25:28.312834 2020-01-11 19:25:28.312834 2038 \N \N \N 0 PV1-V-994 1 1988.00 0.00 \N \N 2788 741 1 449.4 1 2020-01-11 21:09:56.118122 2020-01-11 21:09:56.118122 2040 2382 \N \N 0 PV1-V-996 1 \N 0.00 \N \N 2789 741 2 929.4 1 2020-01-11 21:29:38.320286 2020-01-11 21:29:38.320286 2041 \N \N \N 0 PV1-V-997 1 1000.00 70.60 \N \N 2790 741 2 350.0 1 2020-01-11 22:04:11.297899 2020-01-11 22:04:11.344227 1702 \N \N \N 3 \N 1 350.00 0.00 \N \N 2791 741 2 420.0 1 2020-01-11 22:31:55.81425 2020-01-11 22:31:55.81425 2042 \N \N \N 0 PV1-V-998 1 420.00 0.00 \N \N 2792 741 2 570.0 1 2020-01-11 23:56:22.981239 2020-01-11 23:56:22.981239 2043 \N \N \N 0 PV1-V-999 1 1000.00 430.00 \N \N 2793 741 2 2478.0 0 2020-01-12 01:44:42.331224 2020-01-12 01:44:42.331224 \N \N \N 262 2 \N 1 \N \N \N \N 2794 741 2 1195.0 1 2020-01-12 02:17:11.592372 2020-01-12 02:17:11.592372 2044 \N \N \N 0 PV1-V-1000 1 1195.00 0.00 \N \N 2795 741 2 720.0 1 2020-01-12 02:18:11.763442 2020-01-12 02:18:11.763442 2045 \N \N \N 0 PV1-V-1001 1 720.00 0.00 \N \N 2796 743 2 720.0 1 2020-01-13 17:34:43.800287 2020-01-13 17:34:43.800287 2046 \N \N \N 0 PV1-V-1002 1 720.00 0.00 \N \N 2797 743 2 625.0 1 2020-01-13 23:11:39.672011 2020-01-13 23:11:39.672011 2047 \N \N \N 0 PV1-V-1003 1 625.00 0.00 \N \N 2798 743 2 1629.0 1 2020-01-13 23:48:33.822559 2020-01-13 23:48:33.822559 2048 \N \N \N 0 PV1-V-1004 1 1629.00 0.00 \N \N 2799 747 2 700.0 1 2020-01-14 20:20:25.672124 2020-01-14 20:20:25.672124 2049 \N \N \N 0 PV1-V-1005 1 700.00 0.00 \N \N 2800 746 2 1599.0 1 2020-01-15 01:34:36.7652 2020-01-15 01:34:36.7652 2050 \N \N \N 0 PV3-V-240 1 1600.00 1.00 \N \N 2801 749 2 1669.0 1 2020-01-15 18:46:51.209046 2020-01-15 18:46:51.209046 2051 \N \N \N 0 PV1-V-1006 1 1669.00 0.00 \N \N 2802 749 3 700.0 1 2020-01-15 20:46:41.247011 2020-01-15 20:46:41.28798 1795 \N \N \N 3 \N 1 \N 0.00 \N \N CREDITO SAM 2803 749 2 599.0 1 2020-01-15 21:07:08.670878 2020-01-15 21:07:08.719774 1542 \N \N \N 3 \N 1 599.00 0.00 \N \N 2804 748 2 779.4 1 2020-01-16 02:06:38.701183 2020-01-16 02:06:38.701183 2052 \N \N \N 0 PV2-V-804 1 1000.00 220.60 \N \N 2805 750 2 130.0 0 2020-01-16 02:46:31.89254 2020-01-16 02:46:31.89254 \N \N \N 263 2 \N 1 \N \N \N \N 2806 752 2 299.01 1 2020-01-16 17:58:22.057265 2020-01-16 17:58:22.101256 1017 \N \N \N 3 \N 1 299.01 0.00 \N \N 2807 751 2 98.99 1 2020-01-16 20:09:01.337243 2020-01-16 20:09:01.337243 2054 \N \N \N 0 PV2-V-806 1 200.00 101.01 \N \N 2808 752 3 500.0 1 2020-01-16 23:24:30.235747 2020-01-16 23:24:30.314224 1056 \N \N \N 3 \N 1 \N 0.00 \N \N CREDITO SAM 2809 753 2 145.0 1 2020-01-16 23:52:43.786064 2020-01-16 23:52:43.786064 2055 \N \N \N 0 PV3-V-241 1 200.00 55.00 \N \N 2810 751 2 799.0 1 2020-01-17 00:41:53.550656 2020-01-17 00:41:53.550656 2056 \N \N \N 0 PV2-V-807 1 1000.00 201.00 \N \N 2811 752 3 400.0 1 2020-01-17 02:05:01.229181 2020-01-17 02:05:01.265491 1384 \N \N \N 3 \N 1 \N 0.00 \N \N CREDITO SAM 2812 755 2 350.0 1 2020-01-17 17:44:42.921261 2020-01-17 17:44:42.955085 1709 \N \N \N 3 \N 1 350.00 0.00 \N \N 2813 756 2 450.0 1 2020-01-17 19:41:31.380868 2020-01-17 19:41:31.380868 2057 \N \N \N 0 PV1-V-1007 1 450.00 0.00 \N \N 2814 754 2 251.4 1 2020-01-17 19:44:01.140474 2020-01-17 19:44:01.140474 2058 \N \N \N 0 PV2-V-808 1 300.00 48.60 \N \N 2815 754 2 359.4 1 2020-01-17 19:55:42.935728 2020-01-17 19:55:42.935728 2059 \N \N \N 0 PV2-V-809 1 360.00 0.60 \N \N 2816 755 2 450.0 1 2020-01-17 20:06:11.526898 2020-01-17 20:06:11.526898 2061 \N \N \N 6 PV3-V-243 1 450.00 0.00 \N \N 2817 755 2 229.0 1 2020-01-17 20:07:57.387516 2020-01-17 20:07:57.387516 2062 \N \N \N 0 PV3-V-244 1 250.00 21.00 \N \N 2818 755 2 50.0 1 2020-01-17 20:09:52.199322 2020-01-17 20:09:52.199322 2063 \N \N \N 6 PV3-V-245 1 50.00 0.00 \N \N 2819 756 3 300.0 1 2020-01-17 20:45:18.621125 2020-01-17 20:45:18.683184 1651 \N \N \N 3 \N 1 \N 0.00 \N \N CREDITO SAM 2820 754 2 359.4 1 2020-01-17 22:30:28.52472 2020-01-17 22:30:28.52472 2064 \N \N \N 0 PV2-V-810 1 500.00 140.60 \N \N 2821 756 2 120.0 0 2020-01-18 00:54:46.978732 2020-01-18 00:54:46.978732 \N \N \N 264 2 \N 1 \N \N \N \N 2822 754 4 419.31 1 2020-01-18 01:28:42.05784 2020-01-18 01:28:42.05784 2065 3908 \N \N 0 PV2-V-811 1 \N 0.00 \N \N 2823 755 1 399.5 1 2020-01-18 02:17:16.275472 2020-01-18 02:17:16.275472 2066 2395 \N \N 0 PV3-V-246 1 \N 0.00 \N \N 2824 757 2 205.0 0 2020-01-18 20:21:51.261473 2020-01-18 20:21:51.261473 \N \N \N 265 2 \N 1 \N \N \N \N 2825 757 2 550.0 1 2020-01-18 20:28:56.137903 2020-01-18 20:28:56.137903 2067 \N \N \N 0 PV1-V-1008 1 550.00 0.00 \N \N 2826 757 4 600.0 1 2020-01-18 20:29:10.248198 2020-01-18 20:29:10.248198 2067 6783 \N \N 0 PV1-V-1008 1 \N 0.00 \N \N 2827 757 2 1020.0 1 2020-01-18 21:44:04.672201 2020-01-18 21:44:04.672201 2068 \N \N \N 0 PV1-V-1009 1 1020.00 0.00 \N \N 2828 757 2 720.0 1 2020-01-18 23:38:31.195074 2020-01-18 23:38:31.195074 2069 \N \N \N 0 PV1-V-1010 1 720.00 0.00 \N \N 2829 759 2 749.4 1 2020-01-19 01:29:10.143047 2020-01-19 01:29:10.143047 2070 \N \N \N 0 PV3-V-247 1 1000.00 250.60 \N \N 2830 757 2 120.0 0 2020-01-19 01:52:19.005616 2020-01-19 01:52:19.005616 \N \N \N 266 2 \N 1 \N \N \N \N 2831 760 2 600.0 1 2020-01-21 01:44:14.961289 2020-01-21 01:44:14.961289 2071 \N \N \N 0 PV1-V-1011 1 600.00 0.00 \N \N 2832 760 2 25.0 0 2020-01-21 01:47:50.695236 2020-01-21 01:47:50.695236 \N \N \N 267 2 \N 1 \N \N \N \N 2833 761 4 1099.0 1 2020-01-21 02:47:31.624161 2020-01-21 02:47:31.624161 1508 9589 \N \N 7 \N 1 \N 0.00 \N \N 2834 761 2 400.0 1 2020-01-21 02:50:10.596196 2020-01-21 02:50:10.596196 2072 \N \N \N 6 PV3-V-248 1 400.00 0.00 \N \N 2835 758 2 341.4 1 2020-01-22 00:04:02.006316 2020-01-22 00:04:02.006316 2073 \N \N \N 0 PV2-V-812 1 350.00 8.60 \N \N 2836 758 2 395.4 1 2020-01-22 00:30:34.729602 2020-01-22 00:30:34.729602 2074 \N \N \N 0 PV2-V-813 1 400.00 4.60 \N \N 2837 765 2 500.0 1 2020-01-22 18:00:53.126489 2020-01-22 18:00:53.165647 1667 \N \N \N 3 \N 1 500.00 0.00 \N \N 2838 766 2 720.0 1 2020-01-22 22:07:37.662933 2020-01-22 22:07:37.662933 2075 \N \N \N 0 PV1-V-1012 1 720.00 0.00 \N \N 2839 764 2 479.4 1 2020-01-23 18:20:19.496814 2020-01-23 18:20:19.496814 2076 \N \N \N 0 PV2-V-814 1 500.00 20.60 \N \N 2840 764 2 341.4 1 2020-01-24 00:51:58.272265 2020-01-24 00:51:58.272265 2078 \N \N \N 0 PV2-V-815 1 400.00 58.60 \N \N 2841 768 2 1140.0 1 2020-01-24 01:04:14.501129 2020-01-24 01:04:14.501129 2079 \N \N \N 0 PV1-V-1013 1 1140.00 0.00 \N \N 2842 768 2 409.0 1 2020-01-24 01:06:15.383046 2020-01-24 01:06:15.383046 2080 \N \N \N 0 PV1-V-1014 1 409.00 0.00 \N \N 2843 768 2 1205.0 0 2020-01-24 01:51:56.121053 2020-01-24 01:51:56.121053 \N \N \N 268 2 \N 1 \N \N \N \N 2844 769 2 419.4 1 2020-01-24 17:39:28.204269 2020-01-24 17:39:28.204269 2081 \N \N \N 0 PV2-V-816 1 500.00 80.60 \N \N 2845 770 2 449.0 1 2020-01-24 17:47:43.196987 2020-01-24 17:47:43.196987 2082 \N \N \N 0 PV1-V-1015 1 449.00 0.00 \N \N 2846 770 2 1379.0 1 2020-01-24 18:23:55.219614 2020-01-24 18:23:55.219614 2083 \N \N \N 0 PV1-V-1016 1 1379.00 0.00 \N \N 2847 770 4 1599.0 1 2020-01-24 20:34:32.522496 2020-01-24 20:34:32.522496 2084 1381 \N \N 0 PV1-V-1017 1 \N 0.00 \N \N 2848 770 2 473.0 1 2020-01-24 20:34:43.254829 2020-01-24 20:34:43.254829 2084 \N \N \N 0 PV1-V-1017 1 473.00 0.00 \N \N 2849 770 2 199.0 1 2020-01-24 20:38:49.053305 2020-01-24 20:38:49.053305 2085 \N \N \N 0 PV1-V-1018 1 199.00 0.00 \N \N 2850 769 2 593.4 1 2020-01-24 22:49:41.314746 2020-01-24 22:49:41.314746 2086 \N \N \N 0 PV2-V-817 1 600.00 6.60 \N \N 2851 769 2 704.0 0 2020-01-25 01:59:17.814357 2020-01-25 01:59:17.814357 \N \N \N 269 2 \N 1 \N \N \N \N 2852 772 2 135.0 0 2020-01-25 20:19:58.354057 2020-01-25 20:19:58.354057 \N \N \N 270 2 \N 1 \N \N \N \N 2853 772 2 200.0 1 2020-01-25 21:54:13.268018 2020-01-25 21:54:13.268018 2087 \N \N \N 0 PV1-V-1019 1 200.00 0.00 \N \N 2854 772 2 969.0 1 2020-01-25 21:59:24.513231 2020-01-25 21:59:24.513231 2088 \N \N \N 0 PV1-V-1020 1 969.00 0.00 \N \N 2855 773 2 468.0 1 2020-01-25 22:13:29.940827 2020-01-25 22:13:29.940827 2089 \N \N \N 0 PV2-V-818 1 500.00 32.00 \N \N 2856 773 2 390.0 1 2020-01-25 23:12:53.910119 2020-01-25 23:12:53.910119 2090 \N \N \N 0 PV2-V-819 1 500.00 110.00 \N \N 2857 772 2 200.0 1 2020-01-25 23:54:49.614047 2020-01-25 23:54:49.614047 2091 \N \N \N 0 PV1-V-1021 1 200.00 0.00 \N \N 2858 772 2 300.0 1 2020-01-26 00:02:46.984725 2020-01-26 00:02:46.984725 2092 \N \N \N 0 PV1-V-1022 1 300.00 0.00 \N \N 2859 772 2 100.0 1 2020-01-26 00:11:49.544248 2020-01-26 00:11:49.544248 2093 \N \N \N 0 PV1-V-1023 1 100.00 0.00 \N \N 2860 772 2 100.0 1 2020-01-26 00:12:34.819352 2020-01-26 00:12:34.819352 2094 \N \N \N 0 PV1-V-1024 1 100.00 0.00 \N \N 2861 773 2 599.0 1 2020-01-26 00:52:39.126592 2020-01-26 00:52:39.126592 2095 \N \N \N 0 PV2-V-820 1 700.00 101.00 \N \N 2862 772 2 200.0 1 2020-01-26 00:58:29.512858 2020-01-26 00:58:29.512858 2096 \N \N \N 0 PV1-V-1025 1 200.00 0.00 \N \N 2863 772 2 200.0 1 2020-01-26 01:39:26.241957 2020-01-26 01:39:26.241957 2097 \N \N \N 0 PV1-V-1026 1 200.00 0.00 \N \N 2864 774 2 569.0 1 2020-01-26 01:48:04.823302 2020-01-26 01:48:04.823302 2098 \N \N \N 0 PV3-V-250 1 700.00 131.00 \N \N 2865 772 2 119.0 1 2020-01-26 02:04:47.493246 2020-01-26 02:04:47.493246 2099 \N \N \N 0 PV1-V-1027 1 119.00 0.00 \N \N 2866 772 2 100.0 1 2020-01-26 02:10:57.360407 2020-01-26 02:10:57.360407 2100 \N \N \N 0 PV1-V-1028 1 100.00 0.00 \N \N 2867 775 2 100.0 1 2020-01-26 18:56:16.220693 2020-01-26 18:56:16.220693 2101 \N \N \N 0 PV1-V-1029 1 200.00 100.00 \N \N 2868 776 2 389.4 1 2020-01-26 20:21:22.363192 2020-01-26 20:21:22.363192 2102 \N \N \N 0 PV2-V-821 1 500.00 110.60 \N \N 2869 775 2 720.0 1 2020-01-26 21:36:02.265722 2020-01-26 21:36:02.265722 2103 \N \N \N 0 PV1-V-1030 1 800.00 80.00 \N \N 2871 777 2 659.4 1 2020-01-27 19:24:16.082907 2020-01-27 19:24:16.082907 2105 \N \N \N 0 PV2-V-823 1 700.00 40.60 \N \N 2872 778 2 10.0 0 2020-01-27 21:51:45.939319 2020-01-27 21:51:45.939319 \N \N \N 271 2 \N 1 \N \N \N \N 2888 781 2 150.0 1 2020-01-29 01:29:08.565256 2020-01-29 01:29:08.621259 1709 \N \N \N 3 \N 1 150.00 0.00 \N \N 2875 778 2 100.0 1 2020-01-27 23:58:53.387795 2020-01-27 23:58:53.387795 2108 \N \N \N 0 PV1-V-1033 1 100.00 0.00 \N \N 2876 778 2 100.0 1 2020-01-28 01:50:16.223326 2020-01-28 01:50:16.223326 2109 \N \N \N 0 PV1-V-1034 1 100.00 0.00 \N \N 2877 779 2 829.0 1 2020-01-28 02:32:44.061954 2020-01-28 02:32:44.061954 2110 \N \N \N 0 PV3-V-251 1 1000.00 171.00 \N \N 2889 781 2 250.0 1 2020-01-29 01:29:36.428461 2020-01-29 01:29:36.46682 1966 \N \N \N 3 \N 1 250.00 0.00 \N \N 2880 779 2 500.0 1 2020-01-28 02:39:52.459388 2020-01-28 02:39:52.459388 2112 \N \N \N 6 PV3-V-253 1 500.00 0.00 \N \N 2881 780 2 100.0 1 2020-01-28 18:23:34.995268 2020-01-28 18:23:34.995268 2113 \N \N \N 0 PV1-V-1035 1 100.00 0.00 \N \N 2882 780 2 100.0 1 2020-01-28 18:46:53.091205 2020-01-28 18:46:53.091205 2114 \N \N \N 0 PV1-V-1036 1 100.00 0.00 \N \N 2883 782 2 350.0 1 2020-01-28 19:46:07.648138 2020-01-28 19:46:07.648138 2115 \N \N \N 0 PV2-V-824 1 500.00 150.00 \N \N 2884 782 2 250.0 1 2020-01-28 19:49:12.807602 2020-01-28 19:49:12.807602 2116 \N \N \N 0 PV2-V-825 1 250.00 0.00 \N \N 2885 780 2 200.0 1 2020-01-28 19:51:55.366366 2020-01-28 19:51:55.366366 2117 \N \N \N 0 PV1-V-1037 1 200.00 0.00 \N \N 2886 780 2 200.0 1 2020-01-28 21:02:35.499195 2020-01-28 21:02:35.499195 2118 \N \N \N 0 PV1-V-1038 1 200.00 0.00 \N \N 2887 780 2 200.0 1 2020-01-29 00:19:36.120729 2020-01-29 00:19:36.120729 2119 \N \N \N 0 PV1-V-1039 1 200.00 0.00 \N \N 2890 783 2 100.0 1 2020-01-29 16:44:17.365948 2020-01-29 16:44:17.365948 2120 \N \N \N 0 PV1-V-1040 1 100.00 0.00 \N \N 2891 783 2 1000.0 1 2020-01-29 17:13:18.272958 2020-01-29 17:13:18.272958 2121 \N \N \N 6 PV1-V-1041 1 1000.00 0.00 \N \N 2892 783 2 599.0 1 2020-01-29 17:25:32.109088 2020-01-29 17:25:32.109088 2122 \N \N \N 0 PV1-V-1042 1 599.00 0.00 \N \N 2893 783 2 200.0 1 2020-01-29 18:24:12.475881 2020-01-29 18:24:12.475881 2123 \N \N \N 0 PV1-V-1043 1 200.00 0.00 \N \N 2894 783 2 100.0 1 2020-01-29 20:39:36.068156 2020-01-29 20:39:36.068156 2124 \N \N \N 0 PV1-V-1044 1 100.00 0.00 \N \N 2895 783 2 810.0 1 2020-01-29 21:57:08.122335 2020-01-29 21:57:08.122335 2125 \N \N \N 0 PV1-V-1045 1 810.00 0.00 \N \N 2896 783 2 420.0 1 2020-01-29 22:02:32.094359 2020-01-29 22:02:32.094359 2126 \N \N \N 0 PV1-V-1046 1 420.00 0.00 \N \N 2897 783 2 100.0 1 2020-01-29 22:05:41.822487 2020-01-29 22:05:41.822487 2127 \N \N \N 0 PV1-V-1047 1 100.00 0.00 \N \N 2898 785 3 200.0 1 2020-01-30 00:11:14.147545 2020-01-30 00:11:14.192019 1914 \N \N \N 3 \N 1 \N 0.00 \N \N ANTER 2899 783 2 100.0 1 2020-01-30 00:20:15.661853 2020-01-30 00:20:15.661853 2128 \N \N \N 0 PV1-V-1048 1 100.00 0.00 \N \N 2900 785 3 50.0 1 2020-01-30 02:12:56.545046 2020-01-30 02:12:56.584946 1914 \N \N \N 3 \N 1 \N 0.00 \N \N P 2901 785 2 419.0 1 2020-01-30 03:05:08.073858 2020-01-30 03:05:08.073858 2129 \N \N \N 0 PV3-V-254 1 500.00 81.00 \N \N 2902 787 2 100.0 1 2020-01-30 17:50:34.383629 2020-01-30 17:50:34.383629 2130 \N \N \N 0 PV1-V-1049 1 100.00 0.00 \N \N 2903 786 2 479.4 1 2020-01-30 18:42:57.722514 2020-01-30 18:42:57.722514 2131 \N \N \N 0 PV2-V-826 1 500.00 20.60 \N \N 2905 788 2 300.0 1 2020-01-30 20:34:43.159788 2020-01-30 20:34:43.159788 2132 \N \N \N 6 PV3-V-255 1 300.00 0.00 \N \N 2906 786 2 449.4 1 2020-01-30 21:33:55.69692 2020-01-30 21:33:55.69692 2133 \N \N \N 0 PV2-V-827 1 450.00 0.60 \N \N 2909 788 2 200.0 1 2020-01-30 21:47:53.011074 2020-01-30 21:47:53.011074 2135 \N \N \N 6 PV3-V-257 1 200.00 0.00 \N \N 2910 787 2 450.0 1 2020-01-30 22:48:25.005734 2020-01-30 22:48:25.005734 2137 \N \N \N 0 PV1-V-1050 1 450.00 0.00 \N \N 2912 786 2 419.4 1 2020-01-31 00:14:57.936373 2020-01-31 00:14:57.936373 2139 \N \N \N 0 PV2-V-829 1 500.00 80.60 \N \N 2913 787 4 1429.0 1 2020-01-31 01:17:54.438167 2020-01-31 01:17:54.438167 2140 5349 \N \N 0 PV1-V-1051 1 \N 0.00 \N \N 2914 787 2 100.0 1 2020-01-31 01:22:27.485713 2020-01-31 01:22:27.485713 2141 \N \N \N 0 PV1-V-1052 1 100.00 0.00 \N \N 2915 787 4 1299.0 1 2020-01-31 01:22:40.451581 2020-01-31 01:22:40.451581 2141 5349 \N \N 0 PV1-V-1052 1 \N 0.00 \N \N 2917 787 2 300.0 1 2020-01-31 01:40:30.599786 2020-01-31 01:40:30.599786 2143 \N \N \N 0 PV1-V-1053 1 300.00 0.00 \N \N 2916 786 1 489.3 1 2020-01-31 01:38:05.846801 2020-01-31 01:38:05.846801 2142 590 \N \N 0 PV2-V-830 1 \N 0.00 \N \N 2918 787 2 400.0 1 2020-01-31 01:56:05.117152 2020-01-31 01:56:05.117152 2144 \N \N \N 0 PV1-V-1054 1 400.00 0.00 \N \N 2919 787 2 435.0 1 2020-01-31 01:58:10.628988 2020-01-31 01:58:10.628988 2145 \N \N \N 0 PV1-V-1055 1 435.00 0.00 \N \N 2920 787 5 1595.0 1 2020-01-31 02:02:26.310564 2020-01-31 02:02:26.310564 2146 \N \N \N 0 PV1-V-1056 1 \N 0.00 \N \N UNIVALE 0000T0CW 1151119193553 2921 787 2 1205.0 0 2020-01-31 02:02:56.817872 2020-01-31 02:02:56.817872 \N \N \N 272 2 \N 1 \N \N \N \N 2922 787 2 200.0 1 2020-01-31 02:18:24.807643 2020-01-31 02:18:24.807643 2147 \N \N \N 0 PV1-V-1057 1 200.00 0.00 \N \N 2923 789 2 341.4 1 2020-01-31 18:13:15.526257 2020-01-31 18:13:15.526257 2148 \N \N \N 0 PV2-V-831 1 500.00 158.60 \N \N 2924 791 3 1000.0 1 2020-01-31 20:03:13.874022 2020-01-31 20:03:13.942558 2077 \N \N \N 3 \N 1 \N 0.00 \N \N CASA 2925 790 2 100.0 1 2020-01-31 20:09:18.064989 2020-01-31 20:09:18.064989 2149 \N \N \N 0 PV1-V-1058 1 100.00 0.00 \N \N 2926 790 2 100.0 1 2020-01-31 20:09:42.691017 2020-01-31 20:09:42.691017 2150 \N \N \N 0 PV1-V-1059 1 100.00 0.00 \N \N 2927 790 2 300.0 1 2020-01-31 20:12:34.346103 2020-01-31 20:12:34.346103 2151 \N \N \N 0 PV1-V-1060 1 300.00 0.00 \N \N 2928 789 2 500.0 1 2020-01-31 21:36:10.291287 2020-01-31 21:36:10.291287 2152 \N \N \N 0 PV2-V-832 1 500.00 0.00 \N \N 2929 791 3 3598.0 1 2020-01-31 21:38:40.384362 2020-01-31 21:38:40.43088 2136 \N \N \N 3 \N 1 \N 0.00 \N \N DEP 2930 790 2 840.0 1 2020-01-31 21:45:23.202243 2020-01-31 21:45:23.202243 2153 \N \N \N 0 PV1-V-1061 1 840.00 0.00 \N \N 2931 789 2 599.4 1 2020-01-31 22:07:11.565662 2020-01-31 22:07:11.565662 2154 \N \N \N 0 PV2-V-833 1 600.00 0.60 \N \N 2932 791 2 49.0 1 2020-01-31 23:22:28.886228 2020-01-31 23:22:28.886228 2155 \N \N \N 0 PV3-V-259 1 50.00 1.00 \N \N 2933 790 3 500.0 1 2020-02-01 01:10:50.704079 2020-02-01 01:10:50.796956 1795 \N \N \N 3 \N 1 \N 0.00 \N \N CREDITO SAM 2934 793 2 720.0 1 2020-02-01 20:47:57.564479 2020-02-01 20:47:57.564479 2156 \N \N \N 0 PV1-V-1062 1 800.00 80.00 \N \N 2935 793 2 100.0 1 2020-02-01 21:08:39.407891 2020-02-01 21:08:39.407891 2157 \N \N \N 0 PV1-V-1063 1 100.00 0.00 \N \N 2936 793 2 1060.0 1 2020-02-01 23:00:31.240912 2020-02-01 23:00:31.240912 2158 \N \N \N 0 PV1-V-1064 1 1060.00 0.00 \N \N 2937 793 2 460.0 1 2020-02-01 23:03:38.325277 2020-02-01 23:03:38.325277 2159 \N \N \N 0 PV1-V-1065 1 460.00 0.00 \N \N 2938 793 2 200.0 1 2020-02-02 00:10:23.536229 2020-02-02 00:10:23.536229 2160 \N \N \N 0 PV1-V-1066 1 200.00 0.00 \N \N 2939 792 2 250.0 1 2020-02-02 01:25:46.17892 2020-02-02 01:25:46.17892 2161 \N \N \N 0 PV2-V-834 1 250.00 0.00 \N \N 2940 793 2 1100.0 0 2020-02-02 01:46:49.778604 2020-02-02 01:46:49.778604 \N \N \N 273 2 \N 1 \N \N \N \N 2941 795 1 49.0 1 2020-02-04 01:46:21.777421 2020-02-04 01:46:21.777421 2162 9199 \N \N 0 PV3-V-260 1 \N 0.00 \N \N 2942 796 2 100.0 1 2020-02-04 18:55:12.665111 2020-02-04 18:55:12.665111 2163 \N \N \N 0 PV1-V-1067 1 100.00 0.00 \N \N 2943 797 2 359.4 1 2020-02-04 21:14:59.451364 2020-02-04 21:14:59.451364 2164 \N \N \N 0 PV2-V-835 1 500.00 140.60 \N \N 2944 797 2 539.4 1 2020-02-04 21:21:55.485814 2020-02-04 21:21:55.485814 2165 \N \N \N 0 PV2-V-836 1 540.00 0.60 \N \N 2945 797 2 250.0 1 2020-02-04 21:24:40.315668 2020-02-04 21:24:40.315668 2166 \N \N \N 0 PV2-V-837 1 250.00 0.00 \N \N 2946 798 2 1599.0 1 2020-02-04 23:19:47.499074 2020-02-04 23:19:47.499074 2072 \N \N \N 7 \N 1 1599.00 0.00 \N \N 2947 798 2 489.0 1 2020-02-04 23:23:09.850389 2020-02-04 23:23:09.850389 2167 \N \N \N 0 PV3-V-261 1 500.00 11.00 \N \N 2948 798 2 200.0 1 2020-02-04 23:24:57.57898 2020-02-04 23:24:57.57898 2168 \N \N \N 6 PV3-V-262 1 200.00 0.00 \N \N 2949 796 2 100.0 1 2020-02-05 01:26:00.300742 2020-02-05 01:26:00.300742 2169 \N \N \N 0 PV1-V-1068 1 100.00 0.00 \N \N 2950 796 2 1160.0 1 2020-02-05 01:45:33.095794 2020-02-05 01:45:33.095794 2170 \N \N \N 0 PV1-V-1069 1 1160.00 0.00 \N \N 2951 796 2 200.0 1 2020-02-05 02:22:54.380446 2020-02-05 02:22:54.380446 2171 \N \N \N 0 PV1-V-1070 1 200.00 0.00 \N \N 2952 800 2 460.0 1 2020-02-05 19:38:10.83363 2020-02-05 19:38:10.83363 2172 \N \N \N 0 PV1-V-1071 1 460.00 0.00 \N \N 2953 800 2 100.0 1 2020-02-05 20:36:53.596842 2020-02-05 20:36:53.596842 2173 \N \N \N 0 PV1-V-1072 1 200.00 100.00 \N \N 2954 801 2 400.0 1 2020-02-05 22:01:26.672282 2020-02-05 22:01:26.672282 2174 \N \N \N 6 PV3-V-263 1 400.00 0.00 \N \N 2955 799 2 600.0 1 2020-02-05 22:07:41.537014 2020-02-05 22:07:41.537014 2175 \N \N \N 0 PV2-V-838 1 600.00 0.00 \N \N 2956 801 2 859.0 0 2020-02-06 02:51:21.659772 2020-02-06 02:51:21.659772 \N \N 116 274 2 \N 1 \N \N \N \N 2957 803 2 719.4 1 2020-02-06 20:08:57.642654 2020-02-06 20:08:57.642654 2176 \N \N \N 0 PV2-V-839 1 720.00 0.60 \N \N 2958 803 2 835.2 1 2020-02-06 20:17:48.275724 2020-02-06 20:17:48.275724 2177 \N \N \N 0 PV2-V-840 1 850.00 14.80 \N \N 2959 802 2 100.0 1 2020-02-06 20:26:49.473136 2020-02-06 20:26:49.473136 2178 \N \N \N 0 PV1-V-1073 1 100.00 0.00 \N \N 2960 804 2 100.0 1 2020-02-06 22:52:02.868297 2020-02-06 22:52:02.868297 2179 \N \N \N 0 PV3-V-264 1 100.00 0.00 \N \N 2961 802 2 970.0 1 2020-02-07 01:59:11.556917 2020-02-07 01:59:11.556917 2180 \N \N \N 0 PV1-V-1074 1 970.00 0.00 \N \N 2962 804 2 200.0 0 2020-02-07 02:42:22.084435 2020-02-07 02:42:22.084435 \N \N 117 275 2 \N 1 \N \N \N \N 2963 804 2 400.0 0 2020-02-07 02:45:59.834848 2020-02-07 02:45:59.834848 \N \N 118 276 2 \N 1 \N \N \N \N 2964 805 2 359.4 1 2020-02-07 21:15:56.385949 2020-02-07 21:15:56.385949 2181 \N \N \N 0 PV2-V-841 1 500.00 140.60 \N \N 2965 806 2 200.0 1 2020-02-07 21:53:23.660127 2020-02-07 21:53:23.660127 2182 \N \N \N 0 PV1-V-1075 1 200.00 0.00 \N \N 2966 806 2 200.0 1 2020-02-07 23:06:04.992938 2020-02-07 23:06:04.992938 2183 \N \N \N 0 PV1-V-1076 1 200.00 0.00 \N \N 2967 806 2 25.0 0 2020-02-08 00:07:04.992546 2020-02-08 00:07:04.992546 \N \N \N 277 2 \N 1 \N \N \N \N 2968 807 2 948.0 1 2020-02-08 00:33:26.597705 2020-02-08 00:33:26.597705 2185 \N \N \N 0 PV3-V-266 1 1000.00 52.00 \N \N 2969 809 1 229.0 1 2020-02-08 20:50:59.865471 2020-02-08 20:50:59.865471 2186 9589 \N \N 0 PV3-V-267 1 \N 0.00 \N \N 2972 809 1 100.0 1 2020-02-08 21:06:40.213725 2020-02-08 21:06:40.213725 2187 9589 \N \N 6 PV3-V-268 1 \N 0.00 \N \N 2973 808 2 359.4 1 2020-02-08 21:17:27.29992 2020-02-08 21:17:27.29992 2188 \N \N \N 0 PV2-V-842 1 360.00 0.60 \N \N 2974 809 2 349.0 1 2020-02-08 21:51:06.562856 2020-02-08 21:51:06.562856 2135 \N \N \N 7 \N 1 349.00 0.00 \N \N 2975 808 2 1199.0 1 2020-02-09 00:26:46.81175 2020-02-09 00:26:46.81175 2189 \N \N \N 0 PV2-V-843 1 1200.00 1.00 \N \N 2976 810 2 825.0 1 2020-02-09 00:59:51.060652 2020-02-09 00:59:51.060652 2190 \N \N \N 0 PV1-V-1077 1 825.00 0.00 \N \N 2977 810 2 300.0 1 2020-02-09 01:30:56.528498 2020-02-09 01:30:56.528498 2191 \N \N \N 0 PV1-V-1078 1 300.00 0.00 \N \N 2978 810 2 1205.0 0 2020-02-09 01:39:58.145008 2020-02-09 01:39:58.145008 \N \N \N 278 2 \N 1 \N \N \N \N 2979 808 2 1012.0 0 2020-02-09 01:53:20.478825 2020-02-09 01:53:20.478825 \N \N \N 279 2 \N 1 \N \N \N \N 2980 808 2 250.0 1 2020-02-09 02:06:45.129329 2020-02-09 02:06:45.129329 2192 \N \N \N 0 PV2-V-844 1 250.00 0.00 \N \N 2981 808 2 389.4 1 2020-02-09 02:10:58.452631 2020-02-09 02:10:58.452631 2193 \N \N \N 0 PV2-V-845 1 400.00 10.60 \N \N 2982 813 2 390.0 1 2020-02-10 17:38:01.039789 2020-02-10 17:38:01.039789 2194 \N \N \N 0 PV1-V-1079 1 500.00 110.00 \N \N 2983 814 2 1349.0 1 2020-02-10 19:21:41.025128 2020-02-10 19:21:41.025128 2168 \N \N \N 7 \N 1 1400.00 51.00 \N \N 2984 813 2 699.0 1 2020-02-10 19:29:46.802029 2020-02-10 19:29:46.802029 2022 \N \N \N 7 \N 1 699.00 0.00 \N \N 2985 814 2 579.0 1 2020-02-11 00:59:26.279915 2020-02-11 00:59:26.279915 2195 \N \N \N 0 PV3-V-269 1 579.00 0.00 \N \N 2986 814 2 30.0 0 2020-02-11 03:08:17.674342 2020-02-11 03:08:17.674342 \N \N \N 280 2 \N 1 \N \N \N \N 2987 816 2 600.0 1 2020-02-11 21:42:38.457256 2020-02-11 21:42:38.457256 1778 \N \N \N 7 \N 1 600.00 0.00 \N \N 2988 817 2 1099.0 1 2020-02-11 22:55:05.40588 2020-02-11 22:55:05.40588 2121 \N \N \N 7 \N 1 1099.00 0.00 \N \N 2989 817 2 200.0 1 2020-02-12 01:01:12.324249 2020-02-12 01:01:12.324249 2196 \N \N \N 0 PV1-V-1080 1 200.00 0.00 \N \N 2990 819 2 400.0 1 2020-02-12 18:13:34.417717 2020-02-12 18:13:34.417717 2197 \N \N \N 0 PV1-V-1081 1 400.00 0.00 \N \N 2991 820 4 400.0 1 2020-02-12 21:33:01.411339 2020-02-12 21:33:01.411339 2198 0 \N \N 6 PV3-V-270 1 \N 0.00 \N \N 2992 819 2 1020.0 1 2020-02-13 02:14:06.90715 2020-02-13 02:14:06.90715 2199 \N \N \N 0 PV1-V-1082 1 1020.00 0.00 \N \N 2993 821 2 420.0 1 2020-02-13 18:20:23.253394 2020-02-13 18:20:23.253394 2200 \N \N \N 0 PV1-V-1083 1 420.00 0.00 \N \N 2994 822 2 500.0 1 2020-02-13 20:47:32.117045 2020-02-13 20:47:32.117045 2201 \N \N \N 6 PV3-V-271 1 500.00 0.00 \N \N 2995 821 2 480.0 1 2020-02-13 22:24:59.921775 2020-02-13 22:24:59.921775 2202 \N \N \N 0 PV1-V-1084 1 480.00 0.00 \N \N 2996 824 2 1059.0 1 2020-02-14 03:04:24.608059 2020-02-14 03:04:24.608059 2203 \N \N \N 0 PV3-V-272 1 1600.00 541.00 \N \N 2997 825 3 700.0 1 2020-02-14 17:39:44.768076 2020-02-14 17:39:44.827408 1795 \N \N \N 3 \N 1 \N 0.00 \N \N DEPOSITO 2998 825 2 699.0 1 2020-02-14 18:23:19.280023 2020-02-14 18:23:19.280023 2204 \N \N \N 0 PV3-V-273 1 700.00 1.00 \N \N 2999 826 2 200.0 1 2020-02-14 18:34:05.643085 2020-02-14 18:34:05.643085 2205 \N \N \N 0 PV1-V-1085 1 200.00 0.00 \N \N 3000 825 2 89.0 1 2020-02-14 20:54:24.147871 2020-02-14 20:54:24.147871 2203 \N \N \N 5 \N 1 100.00 11.00 34 \N 3001 826 1 239.0 1 2020-02-14 23:27:02.465795 2020-02-14 23:27:02.465795 2206 3612 \N \N 0 PV1-V-1086 1 \N 0.00 \N \N 3002 825 2 2099.0 1 2020-02-14 23:32:35.387487 2020-02-14 23:32:35.387487 2207 \N \N \N 0 PV3-V-274 1 2100.00 1.00 \N \N 3003 826 2 300.0 1 2020-02-15 00:21:29.975503 2020-02-15 00:21:29.975503 2208 \N \N \N 0 PV1-V-1087 1 300.00 0.00 \N \N 3004 827 2 250.0 1 2020-02-15 01:19:57.243585 2020-02-15 01:19:57.243585 2209 \N \N \N 0 PV2-V-846 1 500.00 250.00 \N \N 3005 827 1 350.0 1 2020-02-15 01:23:30.181119 2020-02-15 01:23:30.181119 2210 4596 \N \N 0 PV2-V-847 1 \N 0.00 \N \N 3006 828 2 100.0 1 2020-02-15 17:03:49.723621 2020-02-15 17:03:49.723621 2211 \N \N \N 0 PV1-V-1088 1 100.00 0.00 \N \N 3007 828 2 500.0 1 2020-02-15 19:14:49.472674 2020-02-15 19:14:49.472674 2212 \N \N \N 0 PV1-V-1089 1 500.00 0.00 \N \N 3008 830 2 250.0 1 2020-02-15 19:25:58.767559 2020-02-15 19:25:58.767559 2213 \N \N \N 0 PV2-V-848 1 250.00 0.00 \N \N 3009 828 2 50.0 1 2020-02-15 19:34:03.29313 2020-02-15 19:34:03.29313 2214 \N \N \N 0 PV1-V-1090 1 50.00 0.00 \N \N 3010 828 1 1049.0 1 2020-02-15 19:34:22.594109 2020-02-15 19:34:22.594109 2214 590 \N \N 0 PV1-V-1090 1 \N 0.00 \N \N 3011 830 2 269.4 1 2020-02-15 22:16:46.200807 2020-02-15 22:16:46.200807 2215 \N \N \N 0 PV2-V-849 1 300.00 30.60 \N \N 3012 828 2 100.0 1 2020-02-16 00:00:38.346114 2020-02-16 00:00:38.346114 2216 \N \N \N 0 PV1-V-1091 1 100.00 0.00 \N \N 3013 829 2 100.0 1 2020-02-16 00:58:25.431129 2020-02-16 00:58:25.431129 2217 \N \N \N 0 PV3-V-275 1 200.00 100.00 \N \N 3014 830 2 677.4 1 2020-02-16 01:59:16.834808 2020-02-16 01:59:16.834808 2218 \N \N \N 0 PV2-V-850 1 700.00 22.60 \N \N 3015 830 2 1100.0 0 2020-02-16 02:16:07.794993 2020-02-16 02:16:07.794993 \N \N \N 281 2 \N 1 \N \N \N \N 3016 832 2 999.0 1 2020-02-17 20:50:22.754537 2020-02-17 20:50:22.754537 2219 \N \N \N 0 PV3-V-276 1 1000.00 1.00 \N \N 3017 833 2 450.0 1 2020-02-17 22:47:02.883344 2020-02-17 22:47:02.883344 2220 \N \N \N 0 PV1-V-1092 1 450.00 0.00 \N \N 3018 833 2 170.0 0 2020-02-17 23:57:05.952078 2020-02-17 23:57:05.952078 \N \N \N 282 2 \N 1 \N \N \N \N 3019 831 2 359.4 1 2020-02-18 00:10:36.389888 2020-02-18 00:10:36.389888 2221 \N \N \N 0 PV2-V-851 1 500.00 140.60 \N \N 3021 835 2 699.0 1 2020-02-19 01:12:33.042938 2020-02-19 01:12:33.042938 2222 \N \N \N 0 PV3-V-277 1 700.00 1.00 \N \N 3022 \N 2 50.0 0 2020-02-19 02:50:50.494096 2020-02-19 02:50:50.494096 \N \N \N 283 2 \N 1 \N \N \N \N 3023 836 2 50.0 0 2020-02-19 02:54:05.890965 2020-02-19 02:54:05.890965 \N \N \N 284 2 \N 1 \N \N \N \N 3024 839 1 1169.0 1 2020-02-19 19:37:42.410833 2020-02-19 19:37:42.410833 2223 9665 \N \N 0 PV2-V-852 1 \N 0.00 \N \N 3025 838 2 969.0 1 2020-02-19 22:36:14.288165 2020-02-19 22:36:14.288165 2224 \N \N \N 0 PV1-V-1093 1 969.00 0.00 \N \N 3026 838 1 699.0 1 2020-02-20 01:50:41.514559 2020-02-20 01:50:41.514559 2225 2473 \N \N 0 PV1-V-1094 1 \N 0.00 \N \N 3027 837 4 600.0 1 2020-02-20 17:18:44.514217 2020-02-20 17:18:44.514217 2226 6004 \N \N 0 PV3-V-278 1 \N 0.00 \N \N 3028 837 3 300.0 1 2020-02-20 18:20:26.097103 2020-02-20 18:20:26.13586 2077 \N \N \N 3 \N 1 \N 0.00 \N \N MA 3029 837 2 597.99 1 2020-02-20 19:04:13.068985 2020-02-20 19:04:13.068985 2112 \N \N \N 7 \N 1 600.00 2.01 \N \N 3030 840 4 1299.0 1 2020-02-20 21:52:31.065931 2020-02-20 21:52:31.065931 2227 9472 \N \N 0 PV1-V-1095 1 \N 0.00 \N \N 3031 840 2 599.0 1 2020-02-21 00:56:35.042676 2020-02-21 00:56:35.042676 2228 \N \N \N 0 PV1-V-1096 1 599.00 0.00 \N \N 3032 840 2 100.0 1 2020-02-21 01:00:48.721829 2020-02-21 01:00:48.721829 2229 \N \N \N 0 PV1-V-1097 1 100.00 0.00 \N \N 3033 840 2 49.0 1 2020-02-21 01:31:35.275003 2020-02-21 01:31:35.275003 2230 \N \N \N 0 PV1-V-1098 1 49.00 0.00 \N \N 3034 840 2 100.0 1 2020-02-21 01:57:59.49257 2020-02-21 01:57:59.49257 2231 \N \N \N 0 PV1-V-1099 1 100.00 0.00 \N \N 3035 842 2 500.0 1 2020-02-21 17:36:52.908036 2020-02-21 17:36:52.970066 1625 \N \N \N 3 \N 1 500.00 0.00 \N \N 3036 842 1 799.0 1 2020-02-21 20:42:56.908365 2020-02-21 20:42:56.908365 2232 6105 \N \N 0 PV1-V-1100 1 \N 0.00 \N \N 3037 844 1 999.0 1 2020-02-21 21:53:16.766473 2020-02-21 21:53:16.766473 2233 9799 \N \N 0 PV3-V-279 1 \N 0.00 \N \N 3038 842 2 519.0 1 2020-02-22 01:56:29.156162 2020-02-22 01:56:29.156162 2234 \N \N \N 0 PV1-V-1101 1 519.00 0.00 \N \N 3039 842 2 100.0 1 2020-02-22 02:11:13.098199 2020-02-22 02:11:13.098199 2235 \N \N \N 0 PV1-V-1102 1 100.00 0.00 \N \N 3040 842 2 1548.0 1 2020-02-22 02:16:33.752704 2020-02-22 02:16:33.752704 2236 \N \N \N 0 PV1-V-1103 1 1548.00 0.00 \N \N 3041 846 2 998.0 1 2020-02-22 18:45:40.0887 2020-02-22 18:45:40.0887 2237 \N \N \N 0 PV1-V-1104 1 998.00 0.00 \N \N 3042 846 2 200.0 1 2020-02-22 18:52:21.707667 2020-02-22 18:52:21.707667 2238 \N \N \N 0 PV1-V-1105 1 200.00 0.00 \N \N 3043 846 1 2843.0 1 2020-02-22 20:56:33.717147 2020-02-22 20:56:33.717147 2239 1327 \N \N 0 PV1-V-1106 1 \N 0.00 \N \N 3044 846 2 200.0 1 2020-02-22 22:25:04.362585 2020-02-22 22:25:04.362585 2240 \N \N \N 0 PV1-V-1107 1 200.00 0.00 \N \N 3045 846 2 499.0 1 2020-02-22 22:49:43.860717 2020-02-22 22:49:43.860717 2241 \N \N \N 0 PV1-V-1108 1 499.00 0.00 \N \N 3046 847 1 729.0 1 2020-02-22 22:59:21.478211 2020-02-22 22:59:21.478211 2242 69 \N \N 0 PV2-V-853 1 \N 0.00 \N \N 3047 846 2 1699.0 1 2020-02-22 23:11:38.403579 2020-02-22 23:11:38.403579 2243 \N \N \N 0 PV1-V-1109 1 1699.00 0.00 \N \N 3048 846 2 639.0 1 2020-02-22 23:30:39.824638 2020-02-22 23:30:39.824638 2244 \N \N \N 0 PV1-V-1110 1 639.00 0.00 \N \N 3049 846 2 1105.0 0 2020-02-23 00:08:15.876078 2020-02-23 00:08:15.876078 \N \N \N 285 2 \N 1 \N \N \N \N 3050 846 2 200.0 1 2020-02-23 00:25:31.197595 2020-02-23 00:25:31.197595 2245 \N \N \N 0 PV1-V-1111 1 200.00 0.00 \N \N 3051 846 1 529.0 1 2020-02-23 00:38:10.071871 2020-02-23 00:38:10.071871 2246 8697 \N \N 0 PV1-V-1112 1 \N 0.00 \N \N 3052 846 2 200.0 0 2020-02-23 00:54:48.472232 2020-02-23 00:54:48.472232 \N \N \N 286 2 \N 1 \N \N \N \N 3053 846 2 950.0 0 2020-02-23 02:23:58.14149 2020-02-23 02:23:58.14149 \N \N \N 287 2 \N 1 \N \N \N \N 3056 845 2 120.0 1 2020-02-23 03:12:36.582594 2020-02-23 03:12:36.582594 2248 \N \N \N 6 PV3-V-281 1 120.00 0.00 \N \N 3057 848 4 699.0 1 2020-02-24 19:32:04.676718 2020-02-24 19:32:04.676718 2249 1196 \N \N 0 PV1-V-1113 1 \N 0.00 \N \N 3058 850 2 0 1 2020-02-25 02:02:35.081696 2020-02-25 02:02:35.081696 2250 \N \N \N 0 PV2-V-854 1 0.00 0.00 \N \N 3059 848 2 200.0 1 2020-02-25 02:36:33.064476 2020-02-25 02:36:33.064476 2251 \N \N \N 0 PV1-V-1114 1 200.00 0.00 \N \N 3060 848 2 15.0 0 2020-02-25 02:39:40.894771 2020-02-25 02:39:40.894771 \N \N \N 288 2 \N 1 \N \N \N \N 3061 848 2 100.0 0 2020-02-25 02:41:44.794232 2020-02-25 02:41:44.794232 \N \N \N 289 2 \N 1 \N \N \N \N 3062 851 2 500.0 1 2020-02-25 17:33:34.374466 2020-02-25 17:33:34.374466 2252 \N \N \N 6 PV1-V-1115 1 500.00 0.00 \N \N 3063 851 2 300.0 1 2020-02-25 19:14:55.047866 2020-02-25 19:14:55.047866 2253 \N \N \N 6 PV1-V-1116 1 300.00 0.00 \N \N 3064 851 2 849.0 1 2020-02-25 19:38:28.679501 2020-02-25 19:38:28.679501 2254 \N \N \N 0 PV1-V-1117 1 1000.00 151.00 \N \N 3065 851 2 100.0 1 2020-02-25 22:29:44.534502 2020-02-25 22:29:44.534502 2255 \N \N \N 0 PV1-V-1118 1 100.00 0.00 \N \N 3067 850 1 400.0 1 2020-02-25 22:56:55.581049 2020-02-25 22:56:55.581049 2256 4639 \N \N 6 PV2-V-855 1 \N 0.00 \N \N 3068 852 2 100.0 1 2020-02-26 01:12:53.185225 2020-02-26 01:12:53.185225 2257 \N \N \N 0 PV3-V-282 1 100.00 0.00 \N \N 3069 851 2 669.0 1 2020-02-26 01:50:23.010185 2020-02-26 01:50:23.010185 2258 \N \N \N 0 PV1-V-1119 1 669.00 0.00 \N \N 3070 850 2 499.0 1 2020-02-26 01:54:06.627081 2020-02-26 01:54:06.627081 2259 \N \N \N 0 PV2-V-856 1 499.00 0.00 \N \N 3071 854 2 300.0 1 2020-02-26 18:13:37.032995 2020-02-26 18:13:37.087271 1966 \N \N \N 3 \N 1 300.00 0.00 \N \N 3072 855 2 199.0 1 2020-02-26 18:16:52.091561 2020-02-26 18:16:52.091561 2252 \N \N \N 7 \N 1 199.00 0.00 \N \N 3073 854 1 699.0 1 2020-02-26 19:59:06.555439 2020-02-26 19:59:06.555439 2260 6211 \N \N 0 PV3-V-283 1 \N 0.00 \N \N 3074 855 2 98.99 1 2020-02-26 22:45:20.399935 2020-02-26 22:45:20.399935 2261 \N \N \N 0 PV1-V-1120 1 98.99 0.00 \N \N 3075 855 2 0 1 2020-02-26 23:15:46.048697 2020-02-26 23:15:46.048697 2262 \N \N \N 0 PV1-V-1121 1 0.00 0.00 \N \N 3076 855 2 100.0 1 2020-02-26 23:58:37.556269 2020-02-26 23:58:37.556269 2263 \N \N \N 0 PV1-V-1122 1 100.00 0.00 \N \N 3077 854 2 550.0 0 2020-02-27 03:00:38.953485 2020-02-27 03:00:38.953485 \N \N \N 290 2 \N 1 \N \N \N \N 3078 857 2 100.0 1 2020-02-27 19:09:08.655267 2020-02-27 19:09:08.655267 2264 \N \N \N 0 PV3-V-284 1 100.00 0.00 \N \N 3079 857 2 0 1 2020-02-27 19:09:08.932301 2020-02-27 19:09:08.932301 2264 \N \N \N 0 PV3-V-284 1 100.00 100.00 \N \N 3080 858 2 499.0 1 2020-02-27 20:36:29.866765 2020-02-27 20:36:29.866765 2265 \N \N \N 0 PV1-V-1123 1 499.00 0.00 \N \N 3081 858 2 469.0 1 2020-02-27 21:57:05.467573 2020-02-27 21:57:05.467573 1485 \N \N \N 7 \N 1 469.00 0.00 \N \N 3082 856 2 200.0 1 2020-02-28 01:32:38.04719 2020-02-28 01:32:38.04719 2266 \N \N \N 6 PV2-V-857 1 200.00 0.00 \N \N 3083 858 2 1205.0 0 2020-02-28 02:30:00.403702 2020-02-28 02:30:00.403702 \N \N \N 291 2 \N 1 \N \N \N \N 3084 859 2 500.0 1 2020-02-28 17:35:40.106058 2020-02-28 17:35:40.147004 1626 \N \N \N 3 \N 1 500.00 0.00 \N \N 3085 859 2 849.0 1 2020-02-28 18:20:40.887419 2020-02-28 18:20:40.887419 2267 \N \N \N 0 PV1-V-1124 1 849.00 0.00 \N \N 3086 859 2 799.0 1 2020-02-28 19:28:58.838761 2020-02-28 19:28:58.838761 2268 \N \N \N 0 PV1-V-1125 1 799.00 0.00 \N \N 3087 859 2 98.99 1 2020-02-28 20:11:56.389211 2020-02-28 20:11:56.389211 2269 \N \N \N 0 PV1-V-1126 1 100.00 1.01 \N \N 3088 859 2 101.0 1 2020-02-28 22:51:21.323192 2020-02-28 22:51:21.323192 2270 \N \N \N 0 PV1-V-1127 1 101.00 0.00 \N \N 3089 860 2 1169.0 1 2020-02-29 00:53:53.728076 2020-02-29 00:53:53.728076 2271 \N \N \N 0 PV2-V-858 1 1169.00 0.00 \N \N 3091 859 2 200.0 1 2020-02-29 02:19:38.090845 2020-02-29 02:19:38.090845 2272 \N \N \N 6 PV1-V-1128 1 200.00 0.00 \N \N 3092 859 2 651.0 0 2020-02-29 02:26:22.094794 2020-02-29 02:26:22.094794 \N \N \N 292 2 \N 1 \N \N \N \N 3093 857 2 320.0 0 2020-02-29 02:45:05.99327 2020-02-29 02:45:05.99327 \N \N \N 293 2 \N 1 \N \N \N \N 3094 860 2 1458.0 1 2020-02-29 18:09:56.956907 2020-02-29 18:09:56.956907 2273 \N \N \N 0 PV2-V-859 1 1500.00 42.00 \N \N 3095 861 1 1699.0 1 2020-02-29 20:36:18.732466 2020-02-29 20:36:18.732466 2274 4962 \N \N 0 PV3-V-285 1 \N 0.00 \N \N 3097 860 2 499.0 1 2020-02-29 21:11:17.07714 2020-02-29 21:11:17.07714 2275 \N \N \N 0 PV2-V-860 1 499.00 0.00 \N \N 3098 860 2 1200.0 0 2020-02-29 21:14:05.269664 2020-02-29 21:14:05.269664 \N \N \N 294 2 \N 1 \N \N \N \N 3099 862 1 849.0 1 2020-02-29 23:11:58.944111 2020-02-29 23:11:58.944111 2276 4791 \N \N 0 PV1-V-1129 1 \N 0.00 \N \N 3100 862 2 90.0 0 2020-02-29 23:17:21.02983 2020-02-29 23:17:21.02983 \N \N \N 295 2 \N 1 \N \N \N \N 3101 862 2 300.0 1 2020-02-29 23:24:03.781611 2020-02-29 23:24:03.781611 2277 \N \N \N 6 PV1-V-1130 1 300.00 0.00 \N \N 3102 860 1 699.0 1 2020-03-01 00:46:16.755487 2020-03-01 00:46:16.755487 2278 1111 \N \N 0 PV2-V-861 1 \N 0.00 \N \N 3103 860 2 429.0 1 2020-03-01 02:34:08.937641 2020-03-01 02:34:08.937641 2279 \N \N \N 0 PV2-V-862 1 429.00 0.00 \N \N 3105 863 2 649.0 1 2020-03-01 21:58:51.013845 2020-03-01 21:58:51.013845 2281 \N \N \N 0 PV2-V-864 1 700.00 51.00 \N \N 3106 865 4 799.0 1 2020-03-02 18:47:00.042378 2020-03-02 18:47:00.042378 2282 7401 \N \N 0 PV1-V-1131 1 \N 0.00 \N \N 3107 \N 3 299.0 1 2020-03-02 21:11:04.63741 2020-03-02 21:11:04.716424 2077 \N \N \N 3 \N 1 \N 0.00 \N \N MAMA 3108 866 2 529.0 1 2020-03-02 23:04:43.578179 2020-03-02 23:04:43.578179 2283 \N \N \N 0 PV2-V-865 1 530.00 1.00 \N \N 3109 864 1 569.0 1 2020-03-02 23:42:15.312117 2020-03-02 23:42:15.312117 2284 1289 \N \N 0 PV3-V-286 1 \N 0.00 \N \N 3110 865 4 769.0 1 2020-03-03 02:13:55.359374 2020-03-03 02:13:55.359374 2285 916 \N \N 0 PV1-V-1132 1 \N 0.00 \N \N 3111 867 2 100.0 1 2020-03-03 17:13:27.890958 2020-03-03 17:13:27.890958 2248 \N \N \N 4 \N 1 100.00 0.00 \N \N 3112 868 2 250.0 1 2020-03-03 19:52:43.902966 2020-03-03 19:52:43.902966 2286 \N \N \N 6 PV1-V-1133 1 250.00 0.00 \N \N 3113 868 3 500.0 1 2020-03-03 20:00:30.968369 2020-03-03 20:00:31.026155 1795 \N \N \N 3 \N 1 \N 0.00 \N \N CREDITO SAM 3114 868 4 849.0 1 2020-03-03 20:27:05.523549 2020-03-03 20:27:05.523549 2287 7243 \N \N 0 PV1-V-1134 1 \N 0.00 \N \N 3115 868 2 550.0 0 2020-03-03 21:24:35.98545 2020-03-03 21:24:35.98545 \N \N \N 296 2 \N 1 \N \N \N \N 3116 868 2 100.0 1 2020-03-04 00:04:31.552445 2020-03-04 00:04:31.552445 2288 \N \N \N 0 PV1-V-1135 1 100.00 0.00 \N \N 3117 868 2 100.0 1 2020-03-04 00:28:56.29835 2020-03-04 00:28:56.29835 2289 \N \N \N 0 PV1-V-1136 1 100.00 0.00 \N \N 3118 867 2 400.0 0 2020-03-04 03:05:53.071283 2020-03-04 03:05:53.071283 \N \N \N 297 2 \N 1 \N \N \N \N 3119 870 2 400.0 1 2020-03-04 21:59:05.810567 2020-03-04 21:59:05.810567 2290 \N \N \N 0 PV1-V-1137 1 400.00 0.00 \N \N 3120 871 2 599.0 1 2020-03-04 22:36:59.216126 2020-03-04 22:36:59.216126 2291 \N \N \N 0 PV2-V-866 1 600.00 1.00 \N \N 3121 873 1 849.0 1 2020-03-05 18:12:30.428096 2020-03-05 18:12:30.428096 2292 654 \N \N 0 PV2-V-867 1 \N 0.00 \N \N 3122 874 2 200.0 1 2020-03-05 19:32:32.924251 2020-03-05 19:32:32.924251 2293 \N \N \N 6 PV1-V-1138 1 200.00 0.00 \N \N 3123 873 2 339.0 1 2020-03-05 22:18:47.519099 2020-03-05 22:18:47.519099 2294 \N \N \N 0 PV2-V-868 1 500.00 161.00 \N \N 3124 876 4 1199.0 1 2020-03-06 17:40:23.89186 2020-03-06 17:40:23.89186 2295 7242 \N \N 0 PV3-V-287 1 \N 0.00 \N \N 3125 877 2 729.0 1 2020-03-06 20:11:38.296056 2020-03-06 20:11:38.296056 2296 \N \N \N 0 PV1-V-1139 1 729.00 0.00 \N \N 3126 877 2 200.0 1 2020-03-06 20:13:35.402133 2020-03-06 20:13:35.402133 2297 \N \N \N 6 PV1-V-1140 1 200.00 0.00 \N \N 3127 876 2 200.0 1 2020-03-06 22:04:59.070123 2020-03-06 22:04:59.070123 2298 \N \N \N 6 PV3-V-288 1 200.00 0.00 \N \N 3128 876 2 756.0 1 2020-03-06 22:06:45.090234 2020-03-06 22:06:45.090234 2299 \N \N \N 0 PV3-V-289 1 756.00 0.00 \N \N 3129 877 1 400.0 1 2020-03-06 22:32:42.359897 2020-03-06 22:32:42.359897 2293 5994 \N \N 4 \N 1 \N 0.00 \N \N 3132 878 4 528.99 1 2020-03-07 18:09:27.161024 2020-03-07 18:09:27.161024 2300 5698 \N \N 0 PV2-V-869 1 \N 0.00 \N \N 3133 879 4 1190.0 1 2020-03-07 18:13:23.644755 2020-03-07 18:13:23.644755 2301 5698 \N \N 0 PV1-V-1141 1 \N 0.00 \N \N 3134 878 2 1399.0 1 2020-03-07 18:50:07.271544 2020-03-07 18:50:07.271544 2302 \N \N \N 0 PV2-V-870 1 1500.00 101.00 \N \N 3135 879 2 300.0 1 2020-03-07 19:03:17.341966 2020-03-07 19:03:17.341966 2303 \N \N \N 0 PV1-V-1142 1 300.00 0.00 \N \N 3136 879 1 500.0 1 2020-03-07 21:30:36.738606 2020-03-07 21:30:36.738606 2304 3019 \N \N 6 PV1-V-1143 1 \N 0.00 \N \N 3137 879 2 99.0 1 2020-03-07 21:44:13.129348 2020-03-07 21:44:13.129348 2305 \N \N \N 0 PV1-V-1144 1 99.00 0.00 \N \N 3138 879 2 869.0 1 2020-03-07 21:55:48.931497 2020-03-07 21:55:48.931497 2306 \N \N \N 0 PV1-V-1145 1 869.00 0.00 \N \N 3139 879 2 1105.0 0 2020-03-07 22:43:57.742262 2020-03-07 22:43:57.742262 \N \N \N 299 2 \N 1 \N \N \N \N 3140 879 2 100.0 1 2020-03-08 01:02:43.639457 2020-03-08 01:02:43.639457 2307 \N \N \N 0 PV1-V-1146 1 100.00 0.00 \N \N 3141 882 2 549.0 1 2020-03-08 19:01:57.967909 2020-03-08 19:01:57.967909 2308 \N \N \N 0 PV1-V-1147 1 700.00 151.00 \N \N 3142 882 2 849.0 1 2020-03-08 20:12:25.673167 2020-03-08 20:12:25.673167 2309 \N \N \N 0 PV1-V-1148 1 850.00 1.00 \N \N 3143 881 2 1050.0 0 2020-03-08 22:12:39.48768 2020-03-08 22:12:39.48768 \N \N \N 300 2 \N 1 \N \N \N \N 3144 883 2 0 1 2020-03-10 01:21:00.598677 2020-03-10 01:21:00.598677 2132 \N \N \N 4 \N 1 799.00 799.00 \N \N 3145 883 2 799.0 1 2020-03-10 01:21:11.064652 2020-03-10 01:21:11.064652 2132 \N \N \N 7 \N 1 799.00 0.00 \N \N 3146 883 2 249.0 1 2020-03-10 01:23:15.003981 2020-03-10 01:23:15.003981 2310 \N \N \N 0 PV3-V-290 1 249.00 0.00 \N \N 3147 884 2 100.0 1 2020-03-10 17:14:28.181353 2020-03-10 17:14:28.181353 2313 \N \N \N 0 PV1-V-1149 1 100.00 0.00 \N \N 3148 886 2 450.0 1 2020-03-10 20:10:38.880463 2020-03-10 20:10:38.880463 2314 \N \N \N 6 PV2-V-872 1 450.00 0.00 \N \N 3149 886 2 999.0 1 2020-03-10 20:14:13.752968 2020-03-10 20:14:13.752968 2315 \N \N \N 0 PV2-V-873 1 1000.00 1.00 \N \N 3150 886 2 1299.0 1 2020-03-10 22:26:42.566612 2020-03-10 22:26:42.566612 2317 \N \N \N 0 PV2-V-874 1 1400.00 101.00 \N \N 3151 886 2 699.0 1 2020-03-10 23:34:24.330896 2020-03-10 23:34:24.330896 2318 \N \N \N 0 PV2-V-875 1 1000.00 301.00 \N \N 3152 886 2 529.0 1 2020-03-11 01:03:34.352768 2020-03-11 01:03:34.352768 2319 \N \N \N 0 PV2-V-876 1 550.00 21.00 \N \N 3153 886 2 519.0 1 2020-03-11 01:43:05.746073 2020-03-11 01:43:05.746073 2320 \N \N \N 0 PV2-V-877 1 550.00 31.00 \N \N 3154 886 2 849.0 1 2020-03-11 01:47:03.409181 2020-03-11 01:47:03.409181 2321 \N \N \N 0 PV2-V-878 1 849.00 0.00 \N \N 3155 886 2 129.0 1 2020-03-11 01:48:29.148976 2020-03-11 01:48:29.148976 2322 \N \N \N 0 PV2-V-879 1 129.00 0.00 \N \N 3156 \N 2 600.0 1 2020-03-11 17:34:31.661715 2020-03-11 17:34:31.703101 1626 \N \N \N 3 \N 1 600.00 0.00 \N \N 3157 888 2 100.0 1 2020-03-11 22:23:02.046443 2020-03-11 22:23:02.046443 2323 \N \N \N 0 PV1-V-1150 1 100.00 0.00 \N \N 3158 888 2 100.0 0 2020-03-11 22:24:40.692887 2020-03-11 22:24:40.692887 \N \N \N 301 2 \N 1 \N \N \N \N 3159 888 2 200.0 1 2020-03-11 23:04:51.906202 2020-03-11 23:04:51.906202 2324 \N \N \N 0 PV1-V-1151 1 200.00 0.00 \N \N 3160 889 2 699.0 1 2020-03-11 23:36:27.486843 2020-03-11 23:36:27.486843 2325 \N \N \N 0 PV3-V-293 1 700.00 1.00 \N \N 3161 889 1 299.0 1 2020-03-12 01:10:24.02933 2020-03-12 01:10:24.02933 2326 2156 \N \N 0 PV3-V-294 1 \N 0.00 \N \N 3162 890 1 884.0 1 2020-03-12 01:43:04.684174 2020-03-12 01:43:04.684174 2327 1227 \N \N 0 PV2-V-880 1 \N 0.00 \N \N 3163 889 3 1699.0 1 2020-03-12 01:50:05.298605 2020-03-12 01:50:05.298605 2198 \N \N \N 7 \N 1 \N 0.00 \N \N SUOCEN 3164 889 1 1499.0 1 2020-03-12 02:14:05.046517 2020-03-12 02:14:05.046517 2328 3764 \N \N 0 PV3-V-295 1 \N 0.00 \N \N 3165 891 2 1199.0 1 2020-03-12 02:37:51.638727 2020-03-12 02:37:51.638727 2329 \N \N \N 0 PV1-V-1152 1 1199.00 0.00 \N \N 3166 893 2 528.99 1 2020-03-12 23:51:31.877172 2020-03-12 23:51:31.877172 2330 \N \N \N 0 PV2-V-881 1 600.00 71.01 \N \N 3167 893 2 1288.0 1 2020-03-13 02:32:28.341339 2020-03-13 02:32:28.341339 2331 \N \N \N 0 PV2-V-882 1 1400.00 112.00 \N \N 3168 893 2 278.0 1 2020-03-13 02:39:41.295009 2020-03-13 02:39:41.295009 2332 \N \N \N 0 PV2-V-883 1 278.00 0.00 \N \N 3169 894 2 500.0 1 2020-03-13 18:34:12.268289 2020-03-13 18:34:12.306091 1626 \N \N \N 3 \N 1 500.00 0.00 \N \N 3171 895 2 599.0 1 2020-03-13 21:58:37.270229 2020-03-13 21:58:37.270229 2334 \N \N \N 0 PV2-V-884 1 700.00 101.00 \N \N 3172 892 2 699.0 1 2020-03-13 22:50:34.317621 2020-03-13 22:50:34.317621 2335 \N \N \N 0 PV3-V-296 1 700.00 1.00 \N \N 3173 894 2 100.0 1 2020-03-13 23:29:23.183739 2020-03-13 23:29:23.183739 2336 \N \N \N 0 PV1-V-1154 1 100.00 0.00 \N \N 3174 895 2 1998.0 1 2020-03-13 23:48:53.889901 2020-03-13 23:48:53.889901 2338 \N \N \N 0 PV2-V-886 1 2000.00 2.00 \N \N 3175 894 1 1396.99 1 2020-03-14 00:22:04.931627 2020-03-14 00:22:04.931627 2339 5739 \N \N 0 PV1-V-1155 1 \N 0.00 \N \N 3176 894 2 200.0 1 2020-03-14 00:34:44.636896 2020-03-14 00:34:44.636896 2340 \N \N \N 0 PV1-V-1156 1 200.00 0.00 \N \N 3177 894 3 500.0 1 2020-03-14 00:57:21.358474 2020-03-14 00:57:21.406671 1795 \N \N \N 3 \N 1 \N 0.00 \N \N CREDITO SAM 3178 894 1 1197.0 1 2020-03-14 01:40:17.017128 2020-03-14 01:40:17.017128 2343 1234 \N \N 0 PV1-V-1157 1 \N 0.00 \N \N 3179 894 2 1898.0 1 2020-03-14 02:25:46.337726 2020-03-14 02:25:46.337726 2344 \N \N \N 0 PV1-V-1158 1 2000.00 102.00 \N \N 3180 896 2 100.0 1 2020-03-14 17:42:52.451261 2020-03-14 17:42:52.451261 2345 \N \N \N 0 PV1-V-1159 1 100.00 0.00 \N \N 3181 897 2 200.0 1 2020-03-14 17:54:25.170233 2020-03-14 17:54:25.170233 2346 \N \N \N 6 PV2-V-888 1 200.00 0.00 \N \N 3182 897 1 769.0 1 2020-03-14 18:22:40.27606 2020-03-14 18:22:40.27606 2256 1233 \N \N 7 \N 1 \N 0.00 \N \N 3183 897 2 100.0 1 2020-03-14 18:32:34.975693 2020-03-14 18:32:34.975693 2347 \N \N \N 6 PV2-V-889 1 100.00 0.00 \N \N 3184 896 4 899.0 1 2020-03-14 20:42:49.107404 2020-03-14 20:42:49.107404 2348 5120 \N \N 0 PV1-V-1160 1 \N 0.00 \N \N 3185 897 2 139.0 1 2020-03-14 22:11:11.229819 2020-03-14 22:11:11.229819 2349 \N \N \N 0 PV2-V-890 1 200.00 61.00 \N \N 3186 897 2 1500.0 1 2020-03-14 22:44:50.175751 2020-03-14 22:44:50.175751 2352 \N \N \N 6 PV2-V-893 1 1500.00 0.00 \N \N 3187 896 2 49.0 1 2020-03-14 22:56:55.966965 2020-03-14 22:56:55.966965 2353 \N \N \N 0 PV1-V-1161 1 49.00 0.00 \N \N 3188 897 2 700.0 1 2020-03-14 23:02:16.32745 2020-03-14 23:02:16.32745 2354 \N \N \N 0 PV2-V-894 1 700.00 0.00 \N \N 3189 897 2 300.0 1 2020-03-14 23:39:25.431063 2020-03-14 23:39:25.431063 2355 \N \N \N 6 PV2-V-895 1 300.00 0.00 \N \N 3190 898 2 200.0 1 2020-03-15 00:21:56.061301 2020-03-15 00:21:56.061301 2356 \N \N \N 6 PV3-V-298 1 200.00 0.00 \N \N 3191 898 2 699.0 1 2020-03-15 00:31:31.409038 2020-03-15 00:31:31.409038 2357 \N \N \N 0 PV3-V-299 1 700.00 1.00 \N \N 3192 897 2 1050.0 0 2020-03-15 02:20:03.483292 2020-03-15 02:20:03.483292 \N \N \N 302 2 \N 1 \N \N \N \N 3193 898 2 100.0 0 2020-03-15 02:46:59.535685 2020-03-15 02:46:59.535685 \N \N \N 303 2 \N 1 \N \N \N \N 3194 900 2 799.0 1 2020-03-15 19:07:29.579043 2020-03-15 19:07:29.579043 2358 \N \N \N 0 PV1-V-1162 1 800.00 1.00 \N \N 3195 900 2 431.1 1 2020-03-15 19:19:36.380853 2020-03-15 19:19:36.380853 2359 \N \N \N 0 PV1-V-1163 1 500.00 68.90 \N \N 3196 900 2 200.0 1 2020-03-15 19:50:41.070912 2020-03-15 19:50:41.070912 2360 \N \N \N 0 PV1-V-1164 1 200.00 0.00 \N \N 3197 900 2 799.0 1 2020-03-15 20:49:33.148827 2020-03-15 20:49:33.148827 2361 \N \N \N 0 PV1-V-1165 1 900.00 101.00 \N \N 3198 901 2 200.0 1 2020-03-16 19:31:45.023455 2020-03-16 19:31:45.023455 2362 \N \N \N 0 PV1-V-1166 1 200.00 0.00 \N \N 3199 902 2 189.0 1 2020-03-16 20:17:52.183932 2020-03-16 20:17:52.183932 2338 \N \N \N 5 \N 1 500.00 311.00 35 \N 3200 901 1 1428.0 1 2020-03-16 21:18:12.588496 2020-03-16 21:18:12.588496 2364 6879 \N \N 0 PV1-V-1168 1 \N 0.00 \N \N 3201 901 2 999.0 1 2020-03-16 21:59:36.447445 2020-03-16 21:59:36.447445 2365 \N \N \N 0 PV1-V-1169 1 999.00 0.00 \N \N 3202 899 1 2099.0 1 2020-03-17 01:41:17.466244 2020-03-17 01:41:17.466244 2366 7799 \N \N 0 PV3-V-300 1 \N 0.00 \N \N 3203 903 2 999.0 1 2020-03-17 19:45:26.481825 2020-03-17 19:45:26.481825 2367 \N \N \N 0 PV1-V-1170 1 999.00 0.00 \N \N 3204 903 2 25.0 0 2020-03-17 19:59:22.861913 2020-03-17 19:59:22.861913 \N \N \N 304 2 \N 1 \N \N \N \N 3205 904 2 500.0 1 2020-03-17 20:08:21.751867 2020-03-17 20:08:21.751867 2368 \N \N \N 6 PV3-V-301 1 500.00 0.00 \N \N 3206 904 2 98.0 1 2020-03-17 20:09:26.680981 2020-03-17 20:09:26.680981 2369 \N \N \N 0 PV3-V-302 1 98.00 0.00 \N \N 3207 903 2 399.0 1 2020-03-17 21:37:09.60694 2020-03-17 21:37:09.60694 2277 \N \N \N 7 \N 1 399.00 0.00 \N \N 3208 903 2 300.0 1 2020-03-17 22:54:36.023365 2020-03-17 22:54:36.023365 2370 \N \N \N 0 PV1-V-1171 1 300.00 0.00 \N \N 3209 904 2 200.0 1 2020-03-17 23:15:31.500659 2020-03-17 23:15:31.500659 2372 \N \N \N 6 PV3-V-304 1 200.00 0.00 \N \N 3210 905 2 869.0 1 2020-03-18 00:03:34.056464 2020-03-18 00:03:34.056464 2355 \N \N \N 7 \N 1 869.00 0.00 \N \N 3211 903 2 999.0 1 2020-03-18 00:07:08.335585 2020-03-18 00:07:08.335585 2373 \N \N \N 0 PV1-V-1172 1 999.00 0.00 \N \N 3212 904 1 258.0 1 2020-03-18 00:14:01.344314 2020-03-18 00:14:01.344314 2374 1235 \N \N 0 PV3-V-305 1 \N 0.00 \N \N 3213 904 1 300.0 1 2020-03-18 00:18:20.930815 2020-03-18 00:18:20.930815 2375 1234 \N \N 6 PV3-V-306 1 \N 0.00 \N \N 3214 904 1 119.0 1 2020-03-18 00:32:16.987642 2020-03-18 00:32:16.987642 2376 1234 \N \N 0 PV3-V-307 1 \N 0.00 \N \N 3215 904 2 400.0 1 2020-03-18 00:56:40.271835 2020-03-18 00:56:40.271835 2378 \N \N \N 6 PV3-V-309 1 400.00 0.00 \N \N 3216 904 2 49.0 1 2020-03-18 01:00:34.414064 2020-03-18 01:00:34.414064 2379 \N \N \N 0 PV3-V-310 1 49.00 0.00 \N \N 3217 903 2 499.0 1 2020-03-18 01:30:32.085396 2020-03-18 01:30:32.085396 2380 \N \N \N 0 PV1-V-1173 1 499.00 0.00 \N \N 3218 903 2 1598.0 1 2020-03-18 02:10:12.768947 2020-03-18 02:10:12.768947 2381 \N \N \N 0 PV1-V-1174 1 1598.00 0.00 \N \N 3219 904 2 150.0 0 2020-03-18 02:45:30.368821 2020-03-18 02:45:30.368821 \N \N \N 305 2 \N 1 \N \N \N \N 3220 906 2 98.0 1 2020-03-18 18:23:03.057659 2020-03-18 18:23:03.057659 2382 \N \N \N 0 PV1-V-1175 1 98.00 0.00 \N \N 3221 906 2 49.0 1 2020-03-18 18:34:08.962276 2020-03-18 18:34:08.962276 2383 \N \N \N 0 PV1-V-1176 1 49.00 0.00 \N \N 3222 908 4 1157.0 1 2020-03-18 21:39:45.992341 2020-03-18 21:39:45.992341 2384 300 \N \N 0 PV2-V-896 1 \N 0.00 \N \N 3223 907 4 1398.0 1 2020-03-18 21:42:35.811706 2020-03-18 21:42:35.811706 2385 2252 \N \N 0 PV3-V-311 1 \N 0.00 \N \N 3224 907 2 49.0 1 2020-03-18 23:45:49.395997 2020-03-18 23:45:49.395997 2386 \N \N \N 0 PV3-V-312 1 49.00 0.00 \N \N 3225 906 2 1298.0 1 2020-03-18 23:54:12.433067 2020-03-18 23:54:12.433067 2387 \N \N \N 0 PV1-V-1177 1 1298.00 0.00 \N \N 3227 907 2 250.0 1 2020-03-19 00:37:53.909205 2020-03-19 00:37:53.909205 2389 \N \N \N 6 PV3-V-314 1 250.00 0.00 \N \N 3228 906 2 100.0 1 2020-03-19 00:59:19.080585 2020-03-19 00:59:19.080585 2390 \N \N \N 0 PV1-V-1178 1 100.00 0.00 \N \N 3229 909 2 49.0 1 2020-03-19 17:54:31.108533 2020-03-19 17:54:31.108533 2391 \N \N \N 0 PV2-V-897 1 50.00 1.00 \N \N 3230 909 2 1500.0 0 2020-03-19 17:59:11.780407 2020-03-19 17:59:11.780407 2352 \N \N \N 0 \N 1 \N \N \N \N 3231 909 3 1500.0 1 2020-03-19 18:02:00.442762 2020-03-19 18:02:00.442762 2392 \N \N \N 0 PV2-V-898 1 \N 0.00 \N \N ANTICIPO 3233 909 2 886.0 1 2020-03-19 18:02:53.87343 2020-03-19 18:02:53.87343 2392 \N \N \N 0 PV2-V-898 1 886.00 0.00 \N \N ANTICIPO 3234 910 2 699.0 1 2020-03-19 20:00:26.295835 2020-03-19 20:00:26.295835 2393 \N \N \N 0 PV1-V-1179 1 699.00 0.00 \N \N 3235 911 3 823.0 1 2020-03-19 20:33:06.510151 2020-03-19 20:33:06.554481 2312 \N \N \N 3 \N 1 \N 0.00 \N \N SAMA 3236 910 2 599.0 1 2020-03-19 21:01:06.52672 2020-03-19 21:01:06.52672 2394 \N \N \N 0 PV1-V-1180 1 599.00 0.00 \N \N 3239 909 2 400.0 1 2020-03-19 22:15:59.245344 2020-03-19 22:15:59.245344 2314 \N \N \N 4 \N 1 400.00 0.00 \N \N 3237 909 2 400.0 1 2020-03-19 21:39:35.891731 2020-03-19 21:39:35.891731 2314 \N \N \N 4 \N 1 400.00 0.00 \N \N 3240 910 3 600.0 1 2020-03-19 22:58:25.867832 2020-03-19 22:58:25.925758 1626 \N \N \N 3 \N 1 \N 0.00 \N \N CREDITO SAM 3241 910 1 230.0 1 2020-03-19 23:06:27.635378 2020-03-19 23:06:27.635378 2395 192 \N \N 0 PV1-V-1181 1 \N 0.00 \N \N 3242 909 3 1000.0 1 2020-03-20 02:33:50.947977 2020-03-20 02:33:51.009409 2342 \N \N \N 3 \N 1 \N 0.00 \N \N 1234 3243 912 2 1697.0 1 2020-03-20 20:43:59.622353 2020-03-20 20:43:59.622353 2396 \N \N \N 0 PV3-V-315 1 1700.00 3.00 \N \N 3244 913 1 479.0 1 2020-03-20 21:05:35.771444 2020-03-20 21:05:35.771444 2397 5582 \N \N 0 PV1-V-1182 1 \N 0.00 \N \N 3245 913 2 49.0 1 2020-03-20 21:31:19.828124 2020-03-20 21:31:19.828124 2398 \N \N \N 0 PV1-V-1183 1 49.00 0.00 \N \N 3247 912 4 1599.0 1 2020-03-21 00:04:07.636909 2020-03-21 00:04:07.636909 2399 1234 \N \N 0 PV3-V-316 1 \N 0.00 \N \N 3248 915 2 1199.0 1 2020-03-21 17:25:08.109742 2020-03-21 17:25:08.109742 2400 \N \N \N 0 PV3-V-317 1 1200.00 1.00 \N \N 3249 916 2 599.0 1 2020-03-21 21:16:07.210623 2020-03-21 21:16:07.210623 2297 \N \N \N 7 \N 1 599.00 0.00 \N \N 3250 917 2 200.0 1 2020-03-21 21:25:12.246611 2020-03-21 21:25:12.246611 2401 \N \N \N 6 PV2-V-899 1 200.00 0.00 \N \N 3251 915 2 139.0 1 2020-03-21 22:09:42.164593 2020-03-21 22:09:42.164593 2402 \N \N \N 0 PV3-V-318 1 200.00 61.00 \N \N 3252 916 2 1348.0 1 2020-03-21 23:33:57.123147 2020-03-21 23:33:57.123147 2403 \N \N \N 0 PV1-V-1184 1 1348.00 0.00 \N \N 3253 915 2 659.0 1 2020-03-21 23:38:57.893896 2020-03-21 23:38:57.893896 2404 \N \N \N 0 PV3-V-319 1 700.00 41.00 \N \N 3254 915 2 41.0 1 2020-03-21 23:39:30.141098 2020-03-21 23:39:30.141098 2356 \N \N \N 4 \N 1 41.00 0.00 \N \N 3255 916 1 1119.0 1 2020-03-22 00:55:50.689911 2020-03-22 00:55:50.689911 2405 4715 \N \N 0 PV1-V-1185 1 \N 0.00 \N \N 3256 916 2 1205.0 0 2020-03-22 01:39:46.118835 2020-03-22 01:39:46.118835 \N \N \N 306 2 \N 1 \N \N \N \N 3257 919 2 49.0 1 2020-03-23 18:24:45.058795 2020-03-23 18:24:45.058795 2406 \N \N \N 0 PV2-V-900 1 200.00 151.00 \N \N 3258 919 2 797.99 1 2020-03-23 18:29:50.617912 2020-03-23 18:29:50.617912 2407 \N \N \N 0 PV2-V-901 1 1000.00 202.01 \N \N 3259 920 2 599.0 1 2020-03-23 21:22:45.849021 2020-03-23 21:22:45.849021 2286 \N \N \N 7 \N 1 599.00 0.00 \N \N 3260 920 2 319.0 1 2020-03-24 00:46:21.154467 2020-03-24 00:46:21.154467 2272 \N \N \N 7 \N 1 319.00 0.00 \N \N 3261 919 2 259.0 1 2020-03-24 01:40:02.137098 2020-03-24 01:40:02.137098 2408 \N \N \N 6 PV2-V-902 1 259.00 0.00 \N \N 3262 922 4 1588.0 1 2020-03-24 22:40:44.381729 2020-03-24 22:40:44.381729 2409 9482 \N \N 0 PV2-V-903 1 \N 0.00 \N \N 3263 923 3 600.0 1 2020-03-24 23:16:04.21421 2020-03-24 23:16:04.247819 1626 \N \N \N 3 \N 1 \N 0.00 \N \N CREDITO SAM 3264 924 3 519.0 1 2020-03-26 19:03:26.011401 2020-03-26 19:03:26.011401 2410 \N \N \N 0 PV2-V-904 1 \N 0.00 \N \N INSTAGRAM 3265 926 2 1247.0 1 2020-03-28 19:02:10.193741 2020-03-28 19:02:10.193741 2411 \N \N \N 0 PV3-V-320 1 1300.00 53.00 \N \N 3266 926 2 598.0 1 2020-03-28 23:43:09.324491 2020-03-28 23:43:09.324491 2356 \N \N \N 7 \N 1 600.00 2.00 \N \N 3267 924 2 299.0 1 2020-03-31 19:13:56.50633 2020-03-31 19:13:56.50633 2346 \N \N \N 7 \N 1 299.00 0.00 \N \N 3268 924 2 49.0 1 2020-03-31 19:14:49.095826 2020-03-31 19:14:49.095826 2412 \N \N \N 0 PV2-V-905 1 50.00 1.00 \N \N 3269 927 3 1000.0 1 2020-04-29 00:40:16.155521 2020-04-29 00:40:16.204568 2341 \N \N \N 3 \N 1 \N 0.00 \N \N 150420 3270 927 3 498.0 1 2020-04-29 01:40:24.65307 2020-04-29 01:40:24.756145 1795 \N \N \N 3 \N 1 \N 0.00 \N \N 310320 3271 927 3 2000.0 1 2020-04-29 01:42:21.492423 2020-04-29 01:42:21.559096 2312 \N \N \N 3 \N 1 \N 0.00 \N \N 220420 3272 927 3 498.0 1 2020-04-29 01:44:33.646254 2020-04-29 01:44:33.710457 1914 \N \N \N 3 \N 1 \N 0.00 \N \N 455 3273 927 3 831.01 1 2020-04-29 01:45:41.371876 2020-04-29 01:45:41.413245 1384 \N \N \N 3 \N 1 \N 0.00 \N \N 55 3274 927 3 298.0 1 2020-04-29 01:46:30.632108 2020-04-29 01:46:30.67559 808 \N \N \N 3 \N 1 \N 0.00 \N \N 41122 3275 927 3 3600.0 1 2020-04-29 02:03:35.958855 2020-04-29 02:03:36.037024 1626 \N \N \N 3 \N 1 \N 0.00 \N \N 12364 3276 927 3 1078.0 1 2020-04-29 02:08:04.455461 2020-04-29 02:08:04.50289 529 \N \N \N 3 \N 1 \N 0.00 \N \N 45555 3277 927 3 440.0 1 2020-04-29 02:08:21.250316 2020-04-29 02:08:21.29679 386 \N \N \N 3 \N 1 \N 0.00 \N \N 5555 3278 928 3 2899.0 1 2020-04-30 22:34:32.916624 2020-04-30 22:34:32.916624 2415 \N \N \N 0 PV3-V-321 1 \N 0.00 \N \N 1235 3280 928 3 1599.0 1 2020-04-30 23:06:17.843108 2020-04-30 23:06:17.843108 2416 \N \N \N 0 PV3-V-322 1 \N 0.00 \N \N 55656 3281 928 3 1850.0 1 2020-04-30 23:12:21.56598 2020-04-30 23:12:21.56598 2417 \N \N \N 3 \N 1 \N 0.00 \N \N 1256 3313 931 1 269.0 1 2020-05-14 20:58:36.08095 2020-05-14 20:58:36.08095 2248 1526 \N \N 7 \N 1 \N 0.00 \N \N 3284 929 3 589.0 1 2020-05-03 23:34:07.236886 2020-05-03 23:34:07.236886 2419 \N \N \N 0 PV2-V-906 1 \N 0.00 \N \N 1235 3287 927 1 2000.0 1 2020-05-03 23:47:05.581631 2020-05-03 23:47:05.581631 2423 1236 \N \N 6 PV1-V-1190 1 \N 0.00 \N \N 3288 928 3 1300.0 1 2020-05-03 23:52:24.455743 2020-05-03 23:52:24.455743 2424 \N \N \N 3 \N 1 \N 0.00 \N \N 1235 3289 928 3 1699.0 1 2020-05-03 23:56:27.585112 2020-05-03 23:56:27.585112 2425 \N \N \N 0 PV3-V-327 1 \N 0.00 \N \N 1256 3290 928 3 760.0 1 2020-05-04 00:03:13.481538 2020-05-04 00:03:13.481538 2426 \N \N \N 0 PV3-V-328 1 \N 0.00 \N \N 45255 3291 928 3 978.0 1 2020-05-04 00:09:46.009864 2020-05-04 00:09:46.009864 2427 \N \N \N 0 PV3-V-329 1 \N 0.00 \N \N 1255 3292 929 3 659.0 1 2020-05-04 00:21:35.725974 2020-05-04 00:21:35.725974 2428 \N \N \N 0 PV2-V-907 1 \N 0.00 \N \N 12566 3294 928 3 1360.0 1 2020-05-04 00:25:19.977514 2020-05-04 00:25:19.977514 2429 \N \N \N 0 PV3-V-330 1 \N 0.00 \N \N 22555 3295 928 3 2499.0 1 2020-05-04 00:30:56.960025 2020-05-04 00:30:56.960025 2431 \N \N \N 3 \N 1 \N 0.00 \N \N 1255 3296 928 1 500.0 1 2020-05-04 00:35:44.912171 2020-05-04 00:35:44.912171 2432 1256 \N \N 6 PV3-V-333 1 \N 0.00 \N \N 3297 928 4 500.0 1 2020-05-04 00:52:00.272121 2020-05-04 00:52:00.272121 2434 1234 \N \N 6 PV3-V-335 1 \N 0.00 \N \N 3298 928 1 500.0 1 2020-05-04 05:33:13.602638 2020-05-04 05:33:13.602638 2435 1236 \N \N 6 PV3-V-336 1 \N 0.00 \N \N 3299 931 3 1199.0 1 2020-05-13 23:51:04.246479 2020-05-13 23:51:04.246479 2436 \N \N \N 0 PV3-V-337 1 \N 0.00 \N \N 23655 3301 931 3 1359.15 1 2020-05-14 20:12:47.353159 2020-05-14 20:12:47.353159 2437 \N \N \N 0 PV3-V-338 1 \N 0.00 \N \N 5555 3302 931 3 1499.0 1 2020-05-14 20:15:12.231802 2020-05-14 20:15:12.231802 2438 \N \N \N 0 PV3-V-339 1 \N 0.00 \N \N 455 3303 931 3 3698.0 1 2020-05-14 20:16:07.510232 2020-05-14 20:16:07.510232 2439 \N \N \N 0 PV3-V-340 1 \N 0.00 \N \N 5558 3304 931 3 1599.0 1 2020-05-14 20:18:28.553641 2020-05-14 20:18:28.553641 2440 \N \N \N 0 PV3-V-341 1 \N 0.00 \N \N RUBY 3305 931 3 1199.0 1 2020-05-14 20:31:46.569788 2020-05-14 20:31:46.569788 2378 \N \N \N 7 \N 1 \N 0.00 \N \N 555 3306 931 3 888.0 1 2020-05-14 20:32:27.369194 2020-05-14 20:32:27.369194 2368 \N \N \N 4 \N 1 \N 0.00 \N \N 555 3307 931 3 499.0 1 2020-05-14 20:32:54.671537 2020-05-14 20:32:54.671537 2372 \N \N \N 7 \N 1 \N 0.00 \N \N 455 3308 931 3 1439.1 1 2020-05-14 20:41:34.746543 2020-05-14 20:41:34.746543 2441 \N \N \N 0 PV3-V-342 1 \N 0.00 \N \N 1256 3309 931 3 1359.15 1 2020-05-14 20:42:21.792295 2020-05-14 20:42:21.792295 2442 \N \N \N 0 PV3-V-343 1 \N 0.00 \N \N 1255 3310 931 3 2099.0 1 2020-05-14 20:44:11.26639 2020-05-14 20:44:11.26639 2443 \N \N \N 0 PV3-V-344 1 \N 0.00 \N \N CECILIA 3311 931 1 500.0 1 2020-05-14 20:50:45.162605 2020-05-14 20:50:45.162605 2444 1552 \N \N 6 PV3-V-345 1 \N 0.00 \N \N 3312 931 1 3598.0 1 2020-05-14 20:53:58.53824 2020-05-14 20:53:58.53824 2445 4566 \N \N 0 PV3-V-346 1 \N 0.00 \N \N 3315 932 1 849.0 1 2020-05-14 21:16:59.456715 2020-05-14 21:16:59.456715 2446 455 \N \N 0 PV2-V-908 1 \N 0.00 \N \N 3316 933 1 899.0 1 2020-05-14 21:18:54.586001 2020-05-14 21:18:54.586001 2447 1556 \N \N 0 PV1-V-1191 1 \N 0.00 \N \N 3317 933 1 899.0 1 2020-05-14 21:19:47.603222 2020-05-14 21:19:47.603222 2448 1455 \N \N 0 PV1-V-1192 1 \N 0.00 \N \N 3318 933 1 899.0 1 2020-05-14 21:20:39.579414 2020-05-14 21:20:39.579414 2304 555 \N \N 7 \N 1 \N 0.00 \N \N 3319 933 1 649.0 1 2020-05-14 21:21:12.814035 2020-05-14 21:21:12.814035 2253 1256 \N \N 7 \N 1 \N 0.00 \N \N 3320 932 3 589.0 1 2020-05-14 21:24:32.266931 2020-05-14 21:24:32.266931 2449 \N \N \N 0 PV2-V-909 1 \N 0.00 \N \N 1155 3321 932 3 530.1 1 2020-05-14 21:24:58.983371 2020-05-14 21:24:58.983371 2450 \N \N \N 0 PV2-V-910 1 \N 0.00 \N \N 1256 3323 932 3 469.0 1 2020-05-14 21:26:48.438903 2020-05-14 21:26:48.438903 2451 \N \N \N 0 PV2-V-911 1 \N 0.00 \N \N 456 3324 931 1 269.0 1 2020-05-15 19:11:41.896364 2020-05-15 19:11:41.896364 2389 0 \N \N 7 \N 1 \N 0.00 \N \N 3325 931 1 1274.15 1 2020-05-15 22:52:31.442116 2020-05-15 22:52:31.442116 2452 4556 \N \N 0 PV3-V-347 1 \N 0.00 \N \N 3326 931 4 2998.0 1 2020-05-15 22:53:12.096297 2020-05-15 22:53:12.096297 2453 555 \N \N 0 PV3-V-348 1 \N 0.00 \N \N 3327 932 4 599.0 1 2020-05-20 01:13:06.857476 2020-05-20 01:13:06.857476 2455 455 \N \N 0 PV2-V-913 1 \N 0.00 \N \N 3328 933 4 469.0 1 2020-05-20 01:14:20.868129 2020-05-20 01:14:20.868129 2456 4556 \N \N 0 PV1-V-1193 1 \N 0.00 \N \N 3329 933 4 1128.0 1 2020-05-20 01:16:52.829058 2020-05-20 01:16:52.87073 2431 552 \N \N 3 \N 1 \N 0.00 \N \N 3330 932 1 900.0 1 2020-05-20 01:21:27.770334 2020-05-20 01:21:27.810425 2311 155 \N \N 3 \N 1 \N 0.00 \N \N 3331 931 3 5397.0 1 2020-06-10 23:04:32.083079 2020-06-10 23:04:32.083079 2460 \N \N \N 0 PV3-V-350 1 \N 0.00 \N \N 1256 3333 933 3 1599.0 1 2020-06-10 23:26:27.710543 2020-06-10 23:26:27.710543 2461 \N \N \N 0 PV1-V-1195 1 \N 0.00 \N \N 1554 3334 932 3 1388.0 1 2020-06-10 23:28:52.327215 2020-06-10 23:28:52.327215 2462 \N \N \N 0 PV2-V-915 1 \N 0.00 \N \N 1255 3335 932 3 68.0 1 2020-06-10 23:45:13.22474 2020-06-10 23:45:13.22474 2314 \N \N \N 7 \N 1 \N 0.00 \N \N 1255 3336 932 3 459.0 1 2020-06-10 23:46:41.186663 2020-06-10 23:46:41.186663 2401 \N \N \N 7 \N 1 \N 0.00 \N \N 1256 3337 931 3 1599.0 1 2020-06-11 00:13:34.100616 2020-06-11 00:13:34.100616 2435 \N \N \N 7 \N 1 \N 0.00 \N \N 5544 3338 931 3 1299.0 1 2020-06-11 00:13:57.237331 2020-06-11 00:13:57.237331 2434 \N \N \N 7 \N 1 \N 0.00 \N \N 15222 3339 931 3 1099.0 1 2020-06-11 00:14:22.520035 2020-06-11 00:14:22.520035 2432 \N \N \N 7 \N 1 \N 0.00 \N \N 1255 3340 931 3 645.0 1 2020-06-11 00:14:46.384799 2020-06-11 00:14:46.384799 2375 \N \N \N 7 \N 1 \N 0.00 \N \N 1525 3341 931 3 0.1 1 2020-06-11 00:15:21.816777 2020-06-11 00:15:21.816777 2368 \N \N \N 7 \N 1 \N 0.00 \N \N 1554 3342 931 3 700.0 1 2020-06-11 02:37:59.141245 2020-06-11 02:37:59.141245 2459 \N \N \N 3 \N 1 \N 0.00 \N \N 5587 3343 931 3 1848.0 1 2020-06-11 02:38:50.562796 2020-06-11 02:38:50.610281 2417 \N \N \N 3 \N 1 \N 0.00 \N \N 4588 3344 931 3 1300.0 1 2020-06-11 02:41:05.046373 2020-06-11 02:41:05.142629 2431 \N \N \N 3 \N 1 \N 0.00 \N \N 1445 3345 931 3 1000.0 1 2020-06-11 02:47:55.352392 2020-06-11 02:47:55.399164 2433 \N \N \N 3 \N 1 \N 0.00 \N \N 88552 3346 \N 1 808.0 1 2020-06-20 01:17:05.902564 2020-06-20 01:17:05.950028 1966 225 \N \N 3 \N 1 \N 0.00 \N \N 3347 931 4 960.0 1 2020-06-20 01:29:26.99223 2020-06-20 01:29:26.99223 2464 5266 \N \N 0 PV3-V-351 1 \N 0.00 \N \N 3348 933 4 800.0 1 2020-06-24 00:16:23.625206 2020-06-24 00:16:23.625206 2467 7588 \N \N 6 PV1-V-1199 1 \N 0.00 \N \N 3349 933 3 479.0 1 2020-06-24 20:33:48.901809 2020-06-24 20:33:48.901809 2470 \N \N \N 0 PV1-V-1201 1 \N 0.00 \N \N TRANS 3350 933 3 699.0 1 2020-06-24 20:56:48.129758 2020-06-24 20:56:48.129758 2471 \N \N \N 0 PV1-V-1202 1 \N 0.00 \N \N DEPOSITO 3351 933 3 1967.0 1 2020-06-25 20:04:20.649434 2020-06-25 20:04:20.649434 2476 \N \N \N 0 PV1-V-1205 1 \N 0.00 \N \N 4552 3352 933 2 519.0 1 2020-06-25 21:00:52.891395 2020-06-25 21:00:52.891395 2477 \N \N \N 0 PV1-V-1206 1 519.00 0.00 \N \N 3353 933 2 1558.0 1 2020-06-25 21:01:48.248545 2020-06-25 21:01:48.248545 2478 \N \N \N 0 PV1-V-1207 1 1558.00 0.00 \N \N 3354 933 3 1599.0 1 2020-06-26 20:58:45.921429 2020-06-26 20:58:45.921429 2487 \N \N \N 0 PV1-V-1210 1 \N 0.00 \N \N ROCIO 3355 934 2 20.0 0 2020-07-01 17:27:53.557909 2020-07-01 17:27:53.557909 \N \N \N 307 2 \N 1 \N \N \N \N 3356 931 1 1114.0 1 2020-07-01 19:02:19.968729 2020-07-01 19:02:19.968729 2298 1525 \N \N 7 \N 1 \N 0.00 \N \N 3357 934 1 569.0 1 2020-07-02 18:46:46.688863 2020-07-02 18:46:46.688863 2492 1256 \N \N 0 PV1-V-1212 1 \N 0.00 \N \N 3358 934 4 519.0 1 2020-07-02 19:04:28.616061 2020-07-02 19:04:28.616061 2493 1255 \N \N 0 PV1-V-1213 1 \N 0.00 \N \N 3359 934 2 759.0 1 2020-07-02 20:01:50.383125 2020-07-02 20:01:50.383125 2495 \N \N \N 0 PV1-V-1215 1 759.00 0.00 \N \N 3360 934 2 200.0 0 2020-07-02 20:03:03.135791 2020-07-02 20:03:03.135791 \N \N \N 308 2 \N 1 \N \N \N \N 3361 934 2 1778.0 1 2020-07-02 20:56:21.007261 2020-07-02 20:56:21.007261 2496 \N \N \N 0 PV1-V-1216 1 1778.00 0.00 \N \N 3362 934 2 600.0 1 2020-07-02 21:46:25.400238 2020-07-02 21:46:25.400238 2497 \N \N \N 6 PV1-V-1217 1 600.00 0.00 \N \N 3363 934 2 1395.0 1 2020-07-02 21:54:23.988819 2020-07-02 21:54:23.988819 2498 \N \N \N 0 PV1-V-1218 1 1395.00 0.00 \N \N 3365 931 2 549.0 1 2020-07-03 00:38:00.185321 2020-07-03 00:38:00.185321 2500 \N \N \N 0 PV3-V-362 1 600.00 51.00 \N \N 3366 935 2 1668.0 1 2020-07-03 21:18:44.777712 2020-07-03 21:18:44.777712 2501 \N \N \N 0 PV1-V-1219 1 1668.00 0.00 \N \N 3367 935 2 900.0 0 2020-07-03 21:54:21.176525 2020-07-03 21:54:21.176525 \N \N \N 309 2 \N 1 \N \N \N \N 3368 935 2 449.0 1 2020-07-03 21:58:07.151246 2020-07-03 21:58:07.151246 2502 \N \N \N 0 PV1-V-1220 1 449.00 0.00 \N \N 3369 936 1 1396.0 1 2020-07-04 01:06:28.401847 2020-07-04 01:06:28.508841 1993 4588 \N \N 3 \N 1 \N 0.00 \N \N 3370 937 3 129.0 1 2020-07-04 18:32:26.707462 2020-07-04 18:32:26.707462 2505 \N \N \N 0 PV3-V-365 1 \N 0.00 \N \N TIA 3371 937 2 5000.0 1 2020-07-04 18:33:09.37654 2020-07-04 18:33:09.425257 2486 \N \N \N 3 \N 1 5000.00 0.00 \N \N 3372 937 2 1499.0 1 2020-07-04 21:28:58.138135 2020-07-04 21:28:58.138135 2506 \N \N \N 0 PV3-V-366 1 1500.00 1.00 \N \N 3373 937 3 289.0 1 2020-07-04 22:33:27.137868 2020-07-04 22:33:27.137868 2507 \N \N \N 0 PV3-V-367 1 \N 0.00 \N \N JUEVS 3374 938 3 879.2 1 2020-07-04 23:06:51.616397 2020-07-04 23:06:51.616397 2508 \N \N \N 0 PV1-V-1221 1 \N 0.00 \N \N 4565 3375 937 2 998.0 1 2020-07-04 23:24:48.922017 2020-07-04 23:24:48.922017 2509 \N \N \N 0 PV3-V-368 1 998.00 0.00 \N \N 3376 937 3 1899.0 1 2020-07-04 23:40:22.247223 2020-07-04 23:40:22.247223 2510 \N \N \N 0 PV3-V-369 1 \N 0.00 \N \N 1555 3377 937 2 3000.0 0 2020-07-04 23:51:23.693824 2020-07-04 23:51:23.693824 \N \N 128 310 2 \N 1 \N \N \N \N 3378 937 1 139.0 1 2020-07-04 23:59:41.219047 2020-07-04 23:59:41.219047 2511 9152 \N \N 0 PV3-V-370 1 \N 0.00 \N \N 3379 939 3 3098.0 1 2020-07-06 01:37:11.475335 2020-07-06 01:37:11.475335 2512 \N \N \N 0 PV3-V-371 1 \N 0.00 \N \N 4588 3380 939 3 1599.0 1 2020-07-06 01:38:07.284834 2020-07-06 01:38:07.284834 2513 \N \N \N 0 PV3-V-372 1 \N 0.00 \N \N 1256 3381 939 1 500.0 1 2020-07-06 01:40:29.098052 2020-07-06 01:40:29.098052 2514 1525 \N \N 6 PV3-V-373 1 \N 0.00 \N \N 3382 940 1 1599.0 1 2020-07-06 01:41:42.111834 2020-07-06 01:41:42.111834 2515 1522 \N \N 0 PV1-V-1222 1 \N 0.00 \N \N 3383 941 2 1168.0 1 2020-07-06 17:13:33.810822 2020-07-06 17:13:33.810822 2497 \N \N \N 7 \N 1 1168.00 0.00 \N \N 3384 941 2 3996.0 1 2020-07-06 19:13:14.317447 2020-07-06 19:13:14.317447 2518 \N \N \N 0 PV1-V-1223 1 3996.00 0.00 \N \N 3385 941 2 759.0 1 2020-07-06 20:03:54.848319 2020-07-06 20:03:54.848319 2519 \N \N \N 0 PV1-V-1224 1 759.00 0.00 \N \N 3386 941 2 268.0 1 2020-07-06 21:30:00.847402 2020-07-06 21:30:00.847402 2520 \N \N \N 0 PV1-V-1225 1 268.00 0.00 \N \N 3387 941 2 400.0 1 2020-07-06 21:46:03.824861 2020-07-06 21:46:03.824861 2521 \N \N \N 6 PV1-V-1226 1 400.00 0.00 \N \N 3388 942 2 1599.0 1 2020-07-06 22:53:53.338036 2020-07-06 22:53:53.338036 2522 \N \N \N 0 PV3-V-376 1 1599.00 0.00 \N \N 3389 941 2 1559.0 1 2020-07-06 23:37:39.042976 2020-07-06 23:37:39.042976 2523 \N \N \N 0 PV1-V-1227 1 1559.00 0.00 \N \N 3390 942 2 1599.0 1 2020-07-07 00:02:43.059954 2020-07-07 00:02:43.059954 2524 \N \N \N 0 PV3-V-377 1 1599.00 0.00 \N \N 3391 942 2 500.0 1 2020-07-07 00:09:00.763909 2020-07-07 00:09:00.763909 2525 \N \N \N 6 PV3-V-378 1 500.00 0.00 \N \N 3392 942 2 1599.0 1 2020-07-07 00:25:23.970095 2020-07-07 00:25:23.970095 2527 \N \N \N 0 PV3-V-380 1 1599.00 0.00 \N \N 3393 942 2 2048.0 1 2020-07-07 00:52:56.996536 2020-07-07 00:52:56.996536 2528 \N \N \N 0 PV3-V-381 1 2048.00 0.00 \N \N 3394 943 2 569.0 1 2020-07-07 19:40:50.055706 2020-07-07 19:40:50.055706 2529 \N \N \N 0 PV1-V-1228 1 569.00 0.00 \N \N 3395 943 2 1699.0 1 2020-07-07 20:27:29.79735 2020-07-07 20:27:29.79735 2521 \N \N \N 4 \N 1 1699.00 0.00 \N \N 3396 944 2 595.0 1 2020-07-07 21:14:00.161316 2020-07-07 21:14:00.161316 2530 \N \N \N 0 PV3-V-382 1 595.00 0.00 \N \N 3397 944 3 1000.0 1 2020-07-07 22:14:51.706076 2020-07-07 22:14:51.784114 2433 \N \N \N 3 \N 1 \N 0.00 \N \N TRANS 3398 944 3 1100.0 1 2020-07-07 22:18:07.153905 2020-07-07 22:18:07.248269 2454 \N \N \N 3 \N 1 \N 0.00 \N \N SS 3399 944 3 900.0 1 2020-07-07 22:19:33.358633 2020-07-07 22:19:33.39682 2311 \N \N \N 3 \N 1 \N 0.00 \N \N DD 3400 944 3 600.0 1 2020-07-07 22:31:02.779015 2020-07-07 22:31:02.819094 2472 \N \N \N 3 \N 1 \N 0.00 \N \N 126 3401 943 2 849.0 1 2020-07-07 22:52:29.790781 2020-07-07 22:52:29.790781 2531 \N \N \N 0 PV1-V-1229 1 849.00 0.00 \N \N 3402 944 2 1499.0 1 2020-07-07 23:10:46.425034 2020-07-07 23:10:46.425034 2532 \N \N \N 0 PV3-V-383 1 1600.00 101.00 \N \N 3403 943 2 2397.0 1 2020-07-07 23:32:27.612974 2020-07-07 23:32:27.612974 2533 \N \N \N 0 PV1-V-1230 1 2397.00 0.00 \N \N 3404 943 2 365.0 1 2020-07-07 23:38:24.537198 2020-07-07 23:38:24.537198 2534 \N \N \N 0 PV1-V-1231 1 365.00 0.00 \N \N 3405 944 2 200.0 1 2020-07-08 00:14:19.027108 2020-07-08 00:14:19.027108 2535 \N \N \N 6 PV3-V-384 1 200.00 0.00 \N \N 3406 946 2 1999.2 1 2020-07-08 19:36:12.003168 2020-07-08 19:36:12.003168 2536 \N \N \N 0 PV3-V-385 1 1999.20 0.00 \N \N 3407 946 2 400.0 1 2020-07-08 19:37:21.437878 2020-07-08 19:37:21.437878 2537 \N \N \N 6 PV3-V-386 1 400.00 0.00 \N \N 3409 946 2 200.0 1 2020-07-08 20:24:43.666267 2020-07-08 20:24:43.666267 2539 \N \N \N 6 PV3-V-388 1 200.00 0.00 \N \N 3410 945 2 849.0 1 2020-07-08 20:30:15.330858 2020-07-08 20:30:15.330858 2540 \N \N \N 0 PV1-V-1232 1 849.00 0.00 \N \N 3411 946 1 2198.0 1 2020-07-08 22:37:29.582352 2020-07-08 22:37:29.582352 2541 8947 \N \N 0 PV3-V-389 1 \N 0.00 \N \N 3412 945 2 3098.0 1 2020-07-08 23:14:27.435146 2020-07-08 23:14:27.435146 2542 \N \N \N 0 PV1-V-1233 1 3098.00 0.00 \N \N 3413 946 1 600.0 1 2020-07-08 23:36:30.712988 2020-07-08 23:36:30.712988 2544 1525 \N \N 6 PV3-V-391 1 \N 0.00 \N \N 3414 947 2 469.0 1 2020-07-09 17:37:51.115172 2020-07-09 17:37:51.115172 2545 \N \N \N 0 PV1-V-1234 1 469.00 0.00 \N \N 3415 948 2 1599.0 1 2020-07-09 18:43:24.457013 2020-07-09 18:43:24.457013 2546 \N \N \N 0 PV3-V-392 1 1599.00 0.00 \N \N 3416 948 1 500.0 1 2020-07-09 20:13:54.985164 2020-07-09 20:13:54.985164 2547 1256 \N \N 6 PV3-V-393 1 \N 0.00 \N \N 3417 948 2 560.0 1 2020-07-09 20:46:59.154463 2020-07-09 20:46:59.154463 2548 \N \N \N 0 PV3-V-394 1 600.00 40.00 \N \N 3418 948 2 2099.0 1 2020-07-09 21:26:34.998241 2020-07-09 21:26:34.998241 2549 \N \N \N 0 PV3-V-395 1 2500.00 401.00 \N \N 3419 948 2 1899.0 1 2020-07-09 21:30:39.359149 2020-07-09 21:30:39.359149 2550 \N \N \N 0 PV3-V-396 1 1900.00 1.00 \N \N 3420 947 2 500.0 1 2020-07-09 23:53:53.261847 2020-07-09 23:53:53.261847 2551 \N \N \N 6 PV1-V-1235 1 500.00 0.00 \N \N 3421 948 2 1499.0 1 2020-07-10 00:29:20.805101 2020-07-10 00:29:20.805101 2552 \N \N \N 0 PV3-V-397 1 1499.00 0.00 \N \N 3422 948 2 1499.0 1 2020-07-10 00:30:01.867425 2020-07-10 00:30:01.867425 2553 \N \N \N 0 PV3-V-398 1 1499.00 0.00 \N \N 3423 950 1 1399.0 1 2020-07-10 19:33:55.260045 2020-07-10 19:33:55.260045 2554 1566 \N \N 0 PV3-V-399 1 \N 0.00 \N \N 3424 950 1 1399.0 1 2020-07-10 19:33:55.388744 2020-07-10 19:33:55.388744 2554 1566 \N \N 0 PV3-V-399 1 \N 0.00 \N \N 3429 950 4 411.0 1 2020-07-10 20:05:14.436109 2020-07-10 20:05:14.436109 2556 1552 \N \N 6 PV3-V-401 1 \N 0.00 \N \N 3430 951 3 1499.0 1 2020-07-11 22:25:21.449454 2020-07-11 22:25:21.449454 2557 \N \N \N 0 PV1-V-1236 1 \N 0.00 \N \N SERVICIO A DOMICILIO 3431 951 2 400.0 0 2020-07-11 22:30:56.20953 2020-07-11 22:30:56.20953 \N \N \N 311 2 \N 1 \N \N \N \N 3432 953 2 98.99 1 2020-07-13 16:28:52.473986 2020-07-13 16:28:52.473986 2558 \N \N \N 0 PV1-V-1237 1 98.99 0.00 \N \N 3433 952 2 179.0 1 2020-07-13 19:44:21.358199 2020-07-13 19:44:21.358199 2559 \N \N \N 0 PV3-V-402 1 200.00 21.00 \N \N 3434 953 2 1000.0 1 2020-07-13 19:49:11.507822 2020-07-13 19:49:11.507822 2560 \N \N \N 0 PV1-V-1238 1 1000.00 0.00 \N \N 3435 952 2 500.0 1 2020-07-13 19:49:54.276987 2020-07-13 19:49:54.276987 2561 \N \N \N 6 PV3-V-403 1 500.00 0.00 \N \N 3436 952 2 350.0 1 2020-07-13 20:21:27.183257 2020-07-13 20:21:27.183257 2562 \N \N \N 0 PV3-V-404 1 500.00 150.00 \N \N 3437 952 2 549.0 1 2020-07-13 21:26:19.045088 2020-07-13 21:26:19.045088 2563 \N \N \N 0 PV3-V-405 1 549.00 0.00 \N \N 3438 952 2 500.0 1 2020-07-13 22:09:40.606454 2020-07-13 22:09:40.606454 2564 \N \N \N 6 PV3-V-406 1 500.00 0.00 \N \N 3440 952 2 250.0 1 2020-07-13 22:18:03.88385 2020-07-13 22:18:03.88385 2566 \N \N \N 6 PV3-V-408 1 250.00 0.00 \N \N 3441 952 2 1779.0 1 2020-07-13 22:41:40.542829 2020-07-13 22:41:40.542829 2567 \N \N \N 0 PV3-V-409 1 1800.00 21.00 \N \N 3442 952 2 1599.0 1 2020-07-13 23:10:11.358169 2020-07-13 23:10:11.358169 2568 \N \N \N 0 PV3-V-410 1 2000.00 401.00 \N \N 3443 952 3 2079.0 1 2020-07-13 23:32:24.851111 2020-07-13 23:32:24.851111 2569 \N \N \N 0 PV3-V-411 1 \N 0.00 \N \N 1256 3444 952 2 900.0 1 2020-07-14 00:08:26.795375 2020-07-14 00:08:26.795375 2570 \N \N \N 0 PV3-V-412 1 900.00 0.00 \N \N 3445 952 1 500.0 1 2020-07-14 00:13:25.61849 2020-07-14 00:13:25.61849 2571 4526 \N \N 6 PV3-V-413 1 \N 0.00 \N \N 3446 952 2 1099.0 1 2020-07-14 00:27:50.000024 2020-07-14 00:27:50.000024 2514 \N \N \N 7 \N 1 1099.00 0.00 \N \N 3447 955 2 500.0 1 2020-07-14 19:46:56.940075 2020-07-14 19:46:56.940075 2572 \N \N \N 6 PV3-V-414 1 500.00 0.00 \N \N 3448 955 2 999.0 1 2020-07-14 20:12:22.379658 2020-07-14 20:12:22.379658 2572 \N \N \N 7 \N 1 999.00 0.00 \N \N 3449 957 2 159.0 1 2020-07-15 19:30:24.646031 2020-07-15 19:30:24.646031 2573 \N \N \N 0 PV3-V-415 1 200.00 41.00 \N \N 3450 956 3 3198.0 1 2020-07-15 20:46:11.717231 2020-07-15 20:46:11.717231 2574 \N \N \N 0 PV1-V-1239 1 \N 0.00 \N \N SERVICIO A DOMICILIO 3451 957 2 1499.0 1 2020-07-15 23:24:45.738158 2020-07-15 23:24:45.738158 2575 \N \N \N 0 PV3-V-416 1 1499.00 0.00 \N \N 3452 957 1 1499.0 1 2020-07-15 23:50:03.361134 2020-07-15 23:50:03.361134 2576 1256 \N \N 0 PV3-V-417 1 \N 0.00 \N \N 3453 958 2 1601.0 1 2020-07-16 18:59:09.722106 2020-07-16 18:59:09.722106 2577 \N \N \N 0 PV3-V-418 1 1601.00 0.00 \N \N 3454 958 2 1348.99 1 2020-07-16 20:54:03.354202 2020-07-16 20:54:03.354202 2578 \N \N \N 0 PV3-V-419 1 1350.00 1.01 \N \N 3455 959 2 799.0 1 2020-07-17 18:55:12.128093 2020-07-17 18:55:12.128093 2579 \N \N \N 0 PV1-V-1240 1 799.00 0.00 \N \N 3456 959 2 25.0 0 2020-07-17 18:56:57.992942 2020-07-17 18:56:57.992942 \N \N \N 312 2 \N 1 \N \N \N \N 3457 959 1 639.0 1 2020-07-17 20:16:57.948382 2020-07-17 20:16:57.948382 2580 2502 \N \N 0 PV1-V-1241 1 \N 0.00 \N \N 3458 960 2 196.01 1 2020-07-17 21:10:08.252408 2020-07-17 21:10:08.252408 2581 \N \N \N 0 PV3-V-420 1 200.00 3.99 \N \N 3459 959 2 519.0 1 2020-07-17 21:27:15.08177 2020-07-17 21:27:15.08177 2582 \N \N \N 0 PV1-V-1242 1 519.00 0.00 \N \N 3460 959 2 2099.0 1 2020-07-17 21:29:47.120787 2020-07-17 21:29:47.120787 2583 \N \N \N 0 PV1-V-1243 1 2099.00 0.00 \N \N 3461 959 1 350.0 1 2020-07-17 21:32:04.638339 2020-07-17 21:32:04.638339 2584 2136 \N \N 6 PV1-V-1244 1 \N 0.00 \N \N 3462 960 2 1698.0 1 2020-07-17 21:34:11.301492 2020-07-17 21:34:11.301492 2585 \N \N \N 0 PV3-V-421 1 1700.00 2.00 \N \N 3467 960 2 400.0 1 2020-07-17 22:36:52.377328 2020-07-17 22:36:52.377328 2587 \N \N \N 6 PV3-V-423 1 400.00 0.00 \N \N 3468 959 1 1148.0 1 2020-07-17 23:32:27.971804 2020-07-17 23:32:27.971804 2588 2858 \N \N 0 PV1-V-1245 1 \N 0.00 \N \N 3469 959 2 1100.0 0 2020-07-17 23:36:26.58881 2020-07-17 23:36:26.58881 \N \N \N 313 2 \N 1 \N \N \N \N 3470 960 3 1599.0 1 2020-07-18 00:36:40.371767 2020-07-18 00:36:40.371767 2564 \N \N \N 7 \N 1 \N 0.00 \N \N 1234 3471 960 3 301.0 1 2020-07-18 00:37:06.569468 2020-07-18 00:37:06.569468 2566 \N \N \N 4 \N 1 \N 0.00 \N \N 123 3472 960 3 100.0 1 2020-07-18 00:39:00.805412 2020-07-18 00:39:00.805412 2566 \N \N \N 4 \N 1 \N 0.00 \N \N DEPOSITO 3473 960 2 400.0 0 2020-07-18 00:45:29.16282 2020-07-18 00:45:29.16282 \N \N 134 314 2 \N 1 \N \N \N \N 3474 961 2 325.0 1 2020-07-18 18:29:19.567639 2020-07-18 18:29:19.567639 2589 \N \N \N 0 PV1-V-1246 1 325.00 0.00 \N \N 3475 962 2 599.0 1 2020-07-18 18:59:30.250845 2020-07-18 18:59:30.250845 2587 \N \N \N 7 \N 1 599.00 0.00 \N \N 3476 962 1 1099.0 1 2020-07-18 19:12:58.190263 2020-07-18 19:12:58.190263 2537 1522 \N \N 7 \N 1 \N 0.00 \N \N 3477 962 1 1499.0 1 2020-07-18 19:20:03.115113 2020-07-18 19:20:03.115113 2590 1256 \N \N 0 PV3-V-424 1 \N 0.00 \N \N 3478 961 2 1599.0 1 2020-07-18 20:59:52.736473 2020-07-18 20:59:52.736473 2591 \N \N \N 0 PV1-V-1247 1 1599.00 0.00 \N \N 3479 962 2 1348.99 0 2020-07-18 22:46:19.984768 2020-07-18 22:46:19.984768 2578 \N \N \N 0 PV3-V-419 1 \N \N \N \N 3480 962 2 1299.0 1 2020-07-18 23:08:21.250465 2020-07-18 23:08:21.250465 2592 \N \N \N 0 PV3-V-425 1 1500.00 201.00 \N \N 3481 962 3 847.0 1 2020-07-18 23:14:21.833051 2020-07-18 23:14:21.833051 2593 \N \N \N 0 PV3-V-426 1 \N 0.00 \N \N 1524 3482 961 2 340.0 0 2020-07-18 23:29:14.288908 2020-07-18 23:29:14.288908 \N \N \N 315 2 \N 1 \N \N \N \N 3483 964 2 399.5 1 2020-07-20 19:11:27.230456 2020-07-20 19:11:27.230456 2594 \N \N \N 0 PV3-V-427 1 500.00 100.50 \N \N 3484 964 1 400.0 1 2020-07-20 20:17:09.844361 2020-07-20 20:17:09.844361 2595 2806 \N \N 0 PV3-V-428 1 \N 0.00 \N \N 3485 964 2 200.0 1 2020-07-20 20:41:12.293485 2020-07-20 20:41:12.293485 2535 \N \N \N 4 \N 1 200.00 0.00 \N \N 3486 964 2 105.0 1 2020-07-20 21:26:25.503777 2020-07-20 21:26:25.503777 2596 \N \N \N 0 PV3-V-429 1 500.00 395.00 \N \N 3487 963 2 729.0 1 2020-07-20 22:15:19.816978 2020-07-20 22:15:19.816978 2597 \N \N \N 0 PV1-V-1248 1 729.00 0.00 \N \N 3488 964 2 500.0 1 2020-07-20 22:58:20.816822 2020-07-20 22:58:20.816822 2525 \N \N \N 4 \N 1 500.00 0.00 \N \N 3489 963 2 218.0 1 2020-07-20 23:47:52.723159 2020-07-20 23:47:52.723159 2598 \N \N \N 0 PV1-V-1249 1 218.00 0.00 \N \N 3490 965 2 179.0 1 2020-07-21 21:14:05.630965 2020-07-21 21:14:05.630965 2599 \N \N \N 0 PV3-V-430 1 179.00 0.00 \N \N 3491 965 1 579.0 1 2020-07-21 22:27:51.679605 2020-07-21 22:27:51.679605 2600 1256 \N \N 0 PV3-V-431 1 \N 0.00 \N \N 3492 965 2 100.0 1 2020-07-21 22:34:04.954817 2020-07-21 22:34:04.954817 2601 \N \N \N 6 PV3-V-432 1 100.00 0.00 \N \N 3493 965 2 238.0 1 2020-07-21 22:39:20.209831 2020-07-21 22:39:20.209831 2602 \N \N \N 0 PV3-V-433 1 250.00 12.00 \N \N 3494 965 1 2606.0 1 2020-07-21 23:30:45.814997 2020-07-21 23:30:45.814997 2603 4155 \N \N 0 PV3-V-434 1 \N 0.00 \N \N 3495 965 2 600.0 1 2020-07-21 23:37:01.414965 2020-07-21 23:37:01.449725 2472 \N \N \N 3 \N 1 600.00 0.00 \N \N 3496 965 3 1000.0 1 2020-07-21 23:38:51.543239 2020-07-21 23:38:51.590339 2480 \N \N \N 3 \N 1 \N 0.00 \N \N 4225 3497 965 3 300.0 1 2020-07-21 23:55:18.31314 2020-07-21 23:55:18.349988 2463 \N \N \N 3 \N 1 \N 0.00 \N \N 1552 3498 965 3 5750.0 1 2020-07-21 23:58:11.48397 2020-07-21 23:58:11.703202 2311 \N \N \N 3 \N 1 \N 0.00 \N \N 1256 3500 966 2 1638.0 1 2020-07-22 21:30:09.372712 2020-07-22 21:30:09.372712 2605 \N \N \N 0 PV3-V-436 1 1700.00 62.00 \N \N 3501 966 2 569.0 1 2020-07-22 22:45:05.891523 2020-07-22 22:45:05.891523 2601 \N \N \N 7 \N 1 1000.00 431.00 \N \N 3504 967 4 1417.0 1 2020-07-23 17:20:03.807067 2020-07-23 17:20:03.807067 2606 4879 \N \N 0 PV1-V-1250 1 \N 0.00 \N \N 3505 967 1 1599.0 1 2020-07-23 17:30:15.287994 2020-07-23 17:30:15.287994 2607 7244 \N \N 0 PV1-V-1251 1 \N 0.00 \N \N 3506 967 2 1360.0 1 2020-07-23 19:06:58.397805 2020-07-23 19:06:58.397805 2608 \N \N \N 0 PV1-V-1252 1 1360.00 0.00 \N \N 3507 968 2 1648.0 1 2020-07-23 23:51:23.152462 2020-07-23 23:51:23.152462 2566 \N \N \N 7 \N 1 1700.00 52.00 \N \N 3508 968 3 1799.0 1 2020-07-24 00:36:32.224882 2020-07-24 00:36:32.224882 2609 \N \N \N 0 PV3-V-437 1 \N 0.00 \N \N 2215 3509 969 2 1599.0 1 2020-07-24 18:41:03.75117 2020-07-24 18:41:03.75117 2610 \N \N \N 0 PV3-V-438 1 1700.00 101.00 \N \N 3510 969 3 599.0 1 2020-07-24 19:00:17.400377 2020-07-24 19:00:17.400377 2611 \N \N \N 0 PV3-V-439 1 \N 0.00 \N \N 1256 3515 969 1 600.0 1 2020-07-24 19:26:16.534963 2020-07-24 19:26:16.534963 2613 1552 \N \N 6 PV3-V-441 1 \N 0.00 \N \N 3516 970 2 1299.0 1 2020-07-24 20:14:24.071492 2020-07-24 20:14:24.071492 2521 \N \N \N 7 \N 1 1299.00 0.00 \N \N 3517 969 2 2798.0 1 2020-07-24 21:42:15.996623 2020-07-24 21:42:15.996623 2614 \N \N \N 0 PV3-V-442 1 3000.00 202.00 \N \N 3518 970 3 1099.0 1 2020-07-24 23:35:50.093274 2020-07-24 23:35:50.093274 2467 \N \N \N 7 \N 1 \N 0.00 \N \N 1563 3519 970 2 1440.0 0 2020-07-24 23:59:18.911219 2020-07-24 23:59:18.911219 \N \N \N 316 2 \N 1 \N \N \N \N 3520 970 2 699.0 1 2020-07-25 00:10:34.912887 2020-07-25 00:10:34.912887 2615 \N \N \N 0 PV1-V-1253 1 699.00 0.00 \N \N 3522 969 2 1599.0 1 2020-07-25 00:55:11.971346 2020-07-25 00:55:11.971346 2617 \N \N \N 0 PV3-V-444 1 2000.00 401.00 \N \N 3523 971 4 1000.0 1 2020-07-25 19:42:52.231486 2020-07-25 19:42:52.231486 2618 1256 \N \N 6 PV3-V-445 1 \N 0.00 \N \N 3524 971 4 449.5 1 2020-07-25 20:22:31.173521 2020-07-25 20:22:31.173521 2619 3545 \N \N 0 PV3-V-446 1 \N 0.00 \N \N 3525 972 2 225.01 1 2020-07-27 20:29:31.960788 2020-07-27 20:29:31.960788 2620 \N \N \N 0 PV1-V-1254 1 225.01 0.00 \N \N 3526 973 2 1799.0 1 2020-07-27 21:46:13.838332 2020-07-27 21:46:13.838332 2621 \N \N \N 0 PV3-V-447 1 1800.00 1.00 \N \N 3527 973 3 1000.0 1 2020-07-27 21:54:47.576325 2020-07-27 21:54:47.576325 2622 \N \N \N 0 PV3-V-448 1 \N 0.00 \N \N DEPOSITO 3528 973 2 999.0 1 2020-07-28 00:22:13.914207 2020-07-28 00:22:13.914207 2623 \N \N \N 0 PV3-V-449 1 1000.00 1.00 \N \N 3529 974 2 599.0 1 2020-07-28 17:03:55.60597 2020-07-28 17:03:55.60597 2624 \N \N \N 0 PV1-V-1255 1 599.00 0.00 \N \N 3530 975 2 500.0 1 2020-07-28 18:06:46.752614 2020-07-28 18:06:46.752614 2625 \N \N \N 6 PV3-V-450 1 500.00 0.00 \N \N 3531 974 2 1399.0 1 2020-07-28 18:31:47.478035 2020-07-28 18:31:47.478035 2626 \N \N \N 0 PV1-V-1256 1 1399.00 0.00 \N \N 3532 974 2 1948.0 1 2020-07-28 19:05:26.068118 2020-07-28 19:05:26.068118 2627 \N \N \N 0 PV1-V-1257 1 1948.00 0.00 \N \N 3533 974 2 500.0 1 2020-07-28 21:55:12.086549 2020-07-28 21:55:12.086549 2628 \N \N \N 6 PV1-V-1258 1 500.00 0.00 \N \N 3534 977 2 98.99 1 2020-07-29 21:50:30.186357 2020-07-29 21:50:30.186357 2629 \N \N \N 0 PV3-V-451 1 100.00 1.01 \N \N 3535 977 2 898.0 1 2020-07-29 23:14:46.134458 2020-07-29 23:14:46.134458 2613 \N \N \N 7 \N 1 900.00 2.00 \N \N 3536 977 1 1399.0 1 2020-07-29 23:59:16.322408 2020-07-29 23:59:16.322408 2630 1525 \N \N 0 PV3-V-452 1 \N 0.00 \N \N 3545 982 2 1000.0 1 2020-08-01 00:46:51.97284 2020-08-01 00:46:51.97284 2644 \N \N \N 0 PV3-V-459 1 1000.00 0.00 \N \N 3538 979 1 3098.0 1 2020-07-30 18:40:43.589127 2020-07-30 18:40:43.589127 2632 1525 \N \N 0 PV3-V-453 1 \N 0.00 \N \N 3539 979 2 599.0 1 2020-07-30 21:10:14.195265 2020-07-30 21:10:14.195265 2633 \N \N \N 0 PV3-V-454 1 600.00 1.00 \N \N 3540 979 2 1499.0 1 2020-07-30 21:17:19.684958 2020-07-30 21:17:19.684958 2634 \N \N \N 0 PV3-V-455 1 1500.00 1.00 \N \N 3542 981 2 1599.0 1 2020-07-31 21:24:12.734962 2020-07-31 21:24:12.734962 2639 \N \N \N 0 PV3-V-456 1 1600.00 1.00 \N \N 3543 981 2 2199.0 1 2020-07-31 22:32:33.382716 2020-07-31 22:32:33.382716 2641 \N \N \N 0 PV3-V-457 1 2199.00 0.00 \N \N 3544 981 2 1599.0 1 2020-07-31 23:28:15.202306 2020-07-31 23:28:15.202306 2643 \N \N \N 0 PV3-V-458 1 1600.00 1.00 \N \N 3546 983 2 499.99 1 2020-08-01 21:01:55.500003 2020-08-01 21:01:55.500003 2646 \N \N \N 0 PV1-V-1267 1 499.99 0.00 \N \N 3547 984 2 2398.0 1 2020-08-01 23:53:14.242979 2020-08-01 23:53:14.242979 2647 \N \N \N 0 PV3-V-460 1 2500.00 102.00 \N \N 3548 983 2 740.0 0 2020-08-01 23:55:59.326165 2020-08-01 23:55:59.326165 \N \N \N 317 2 \N 1 \N \N \N \N 3549 985 3 500.0 1 2020-08-03 16:32:59.08374 2020-08-03 16:32:59.08374 2648 \N \N \N 0 PV1-V-1268 1 \N 0.00 \N \N SAMANTHA 3550 985 2 899.0 1 2020-08-03 16:33:08.381574 2020-08-03 16:33:08.381574 2648 \N \N \N 0 PV1-V-1268 1 899.00 0.00 \N \N SAMANTHA 3551 985 2 700.0 0 2020-08-03 18:05:48.923247 2020-08-03 18:05:48.923247 \N \N \N 318 2 \N 1 \N \N \N \N 3552 986 2 4997.0 1 2020-08-03 18:40:17.884271 2020-08-03 18:40:17.884271 2649 \N \N \N 0 PV3-V-461 1 4997.00 0.00 \N \N 3553 986 1 900.0 1 2020-08-03 20:12:25.070661 2020-08-03 20:12:25.070661 2650 4215 \N \N 6 PV3-V-462 1 \N 0.00 \N \N 3554 985 2 500.0 1 2020-08-03 20:41:57.263641 2020-08-03 20:41:57.263641 2651 \N \N \N 6 PV1-V-1269 1 500.00 0.00 \N \N 3555 986 2 699.0 1 2020-08-03 22:22:20.796063 2020-08-03 22:22:20.796063 2652 \N \N \N 0 PV3-V-463 1 699.00 0.00 \N \N 3556 986 1 1000.0 1 2020-08-03 22:43:22.783898 2020-08-03 22:43:22.783898 2653 1002 \N \N 0 PV3-V-464 1 \N 0.00 \N \N 3557 986 2 99.0 1 2020-08-03 22:43:30.896321 2020-08-03 22:43:30.896321 2653 \N \N \N 0 PV3-V-464 1 100.00 1.00 \N \N 3558 986 2 1599.0 1 2020-08-03 23:19:54.840067 2020-08-03 23:19:54.840067 2654 \N \N \N 0 PV3-V-465 1 1599.00 0.00 \N \N 3559 986 2 1499.0 1 2020-08-03 23:27:44.209547 2020-08-03 23:27:44.209547 2655 \N \N \N 0 PV3-V-466 1 1499.00 0.00 \N \N 3560 986 2 549.0 1 2020-08-03 23:34:45.112433 2020-08-03 23:34:45.112433 2656 \N \N \N 0 PV3-V-467 1 549.00 0.00 \N \N 3561 986 2 1274.15 1 2020-08-03 23:36:51.90615 2020-08-03 23:36:51.90615 2657 \N \N \N 0 PV3-V-468 1 1274.15 0.00 \N \N 3562 985 2 599.0 1 2020-08-03 23:49:58.667961 2020-08-03 23:49:58.667961 2658 \N \N \N 0 PV1-V-1270 1 599.00 0.00 \N \N 3563 987 2 999.0 1 2020-08-04 21:24:28.120837 2020-08-04 21:24:28.120837 2628 \N \N \N 7 \N 1 999.00 0.00 \N \N 3564 987 1 849.0 1 2020-08-04 22:29:13.539558 2020-08-04 22:29:13.539558 2584 124 \N \N 7 \N 1 \N 0.00 \N \N 3565 988 2 400.0 1 2020-08-04 23:08:33.448736 2020-08-04 23:08:33.448736 2659 \N \N \N 0 PV3-V-469 1 400.00 0.00 \N \N 3566 988 2 138.0 1 2020-08-04 23:14:45.486864 2020-08-04 23:14:45.486864 2660 \N \N \N 0 PV3-V-470 1 138.00 0.00 \N \N 3567 987 2 1050.0 1 2020-08-04 23:30:03.125348 2020-08-04 23:30:03.125348 2661 \N \N \N 0 PV1-V-1271 1 1050.00 0.00 \N \N 3568 987 2 564.0 0 2020-08-04 23:41:48.804751 2020-08-04 23:41:48.804751 \N \N \N 319 2 \N 1 \N \N \N \N 3569 988 2 1587.0 1 2020-08-05 00:05:22.447866 2020-08-05 00:05:22.447866 2662 \N \N \N 0 PV3-V-471 1 1600.00 13.00 \N \N 3570 988 2 998.0 1 2020-08-05 00:27:21.288321 2020-08-05 00:27:21.288321 2663 \N \N \N 3 \N 1 998.00 0.00 \N \N 3571 988 2 1000.0 1 2020-08-05 00:28:30.503193 2020-08-05 00:28:30.503193 2664 \N \N \N 0 PV3-V-473 1 1000.00 0.00 \N \N 3572 989 1 1499.0 1 2020-08-05 18:04:04.264569 2020-08-05 18:04:04.264569 2665 4779 \N \N 0 PV1-V-1272 1 \N 0.00 \N \N 3573 989 2 49.0 1 2020-08-05 18:12:59.401413 2020-08-05 18:12:59.401413 2666 \N \N \N 0 PV1-V-1273 1 49.00 0.00 \N \N 3574 \N 1 888.0 1 2020-08-05 18:42:40.835965 2020-08-05 18:42:40.895447 2424 1255 \N \N 3 \N 1 \N 0.00 \N \N 3575 \N 1 900.0 1 2020-08-05 18:43:28.845071 2020-08-05 18:43:28.898928 2489 5556 \N \N 3 \N 1 \N 0.00 \N \N 3576 \N 4 600.0 1 2020-08-05 18:46:31.924311 2020-08-05 18:46:32.018251 2472 2255 \N \N 3 \N 1 \N 0.00 \N \N 5225 3577 \N 1 300.0 1 2020-08-05 18:49:03.199445 2020-08-05 18:49:03.237519 2463 2255 \N \N 3 \N 1 \N 0.00 \N \N 3578 \N 1 499.0 1 2020-08-05 18:51:23.907116 2020-08-05 18:51:23.970402 1709 5225 \N \N 3 \N 1 \N 0.00 \N \N 3579 \N 1 1000.0 1 2020-08-05 18:52:47.456215 2020-08-05 18:52:47.536994 2486 2355 \N \N 3 \N 1 \N 0.00 \N \N 3580 \N 4 500.0 1 2020-08-05 18:56:01.476283 2020-08-05 18:56:01.512507 2459 5556 \N \N 3 \N 1 \N 0.00 \N \N 3581 \N 1 1000.0 1 2020-08-05 19:01:31.148449 2020-08-05 19:01:31.217269 2482 1252 \N \N 3 \N 1 \N 0.00 \N \N 3582 \N 1 600.0 1 2020-08-05 19:04:58.515471 2020-08-05 19:04:58.561258 2604 1256 \N \N 3 \N 1 \N 0.00 \N \N 3583 \N 2 1000.0 0 2020-08-05 19:56:26.577331 2020-08-05 19:56:26.577331 2618 \N \N \N 0 \N 1 \N \N \N \N 3584 990 3 3059.0 1 2020-08-05 19:58:49.270005 2020-08-05 19:58:49.270005 2667 \N \N \N 0 PV3-V-474 1 \N 0.00 \N \N 5556 3585 990 2 699.0 1 2020-08-05 20:53:19.56722 2020-08-05 20:53:19.56722 2668 \N \N \N 0 PV3-V-475 1 1000.00 301.00 \N \N 3586 990 2 138.0 1 2020-08-05 20:55:01.14282 2020-08-05 20:55:01.14282 2669 \N \N \N 0 PV3-V-476 1 301.00 163.00 \N \N 3587 990 3 1360.0 1 2020-08-05 21:10:03.16996 2020-08-05 21:10:03.16996 2670 \N \N \N 0 PV3-V-477 1 \N 0.00 \N \N 1255 3588 990 2 200.0 1 2020-08-05 22:32:00.487379 2020-08-05 22:32:00.487379 2525 \N \N \N 4 \N 1 200.00 0.00 \N \N 3589 990 2 1587.0 1 2020-08-05 22:56:08.227079 2020-08-05 22:56:08.227079 2671 \N \N \N 0 PV3-V-478 1 1587.00 0.00 \N \N 3590 990 2 2387.0 1 2020-08-06 00:34:36.186611 2020-08-06 00:34:36.186611 2556 \N \N \N 7 \N 1 2387.00 0.00 \N \N 3592 991 1 1499.0 1 2020-08-06 22:31:20.391035 2020-08-06 22:31:20.391035 2673 2255 \N \N 0 PV3-V-480 1 \N 0.00 \N \N 3593 991 2 440.0 1 2020-08-06 22:31:28.193572 2020-08-06 22:31:28.193572 2673 \N \N \N 0 PV3-V-480 1 440.00 0.00 \N \N 3594 993 2 1599.0 1 2020-08-07 19:38:04.321859 2020-08-07 19:38:04.321859 2674 \N \N \N 0 PV3-V-481 1 1600.00 1.00 \N \N 3595 992 2 200.0 1 2020-08-07 21:03:32.074469 2020-08-07 21:03:32.074469 2675 \N \N \N 0 PV1-V-1274 1 500.00 300.00 \N \N 3596 992 2 0 1 2020-08-07 21:30:16.990587 2020-08-07 21:30:16.990587 2676 \N \N \N 0 PV1-V-1275 1 0.00 0.00 \N \N 3597 992 2 350.0 1 2020-08-07 22:49:13.378938 2020-08-07 22:49:13.378938 2677 \N \N \N 0 PV1-V-1276 1 350.00 0.00 \N \N 3598 993 3 600.0 1 2020-08-07 23:43:28.401715 2020-08-07 23:43:28.401715 2547 \N \N \N 4 \N 1 \N 0.00 \N \N 41566 3599 993 2 599.0 1 2020-08-07 23:43:37.229647 2020-08-07 23:43:37.229647 2547 \N \N \N 4 \N 1 599.00 0.00 \N \N 41566 3600 994 2 1099.0 1 2020-08-08 00:57:28.417491 2020-08-08 00:57:28.417491 2678 \N \N \N 0 PV3-V-482 1 1099.00 0.00 \N \N 3601 995 2 1000.0 1 2020-08-08 18:10:32.240414 2020-08-08 18:10:32.294001 2485 \N \N \N 3 \N 1 1000.00 0.00 \N \N 3602 996 2 425.0 1 2020-08-08 18:51:25.632891 2020-08-08 18:51:25.632891 2679 \N \N \N 0 PV1-V-1277 1 425.00 0.00 \N \N 3603 996 2 200.0 1 2020-08-08 19:09:55.974125 2020-08-08 19:09:55.974125 2680 \N \N \N 6 PV1-V-1278 1 200.00 0.00 \N \N 3604 996 2 749.0 1 2020-08-08 20:07:47.582251 2020-08-08 20:07:47.582251 2681 \N \N \N 0 PV1-V-1279 1 749.00 0.00 \N \N 3605 996 2 1440.0 0 2020-08-08 20:44:13.373518 2020-08-08 20:44:13.373518 \N \N \N 320 2 \N 1 \N \N \N \N 3606 996 2 280.0 1 2020-08-08 21:13:09.772264 2020-08-08 21:13:09.772264 2682 \N \N \N 0 PV1-V-1280 1 280.00 0.00 \N \N 3607 995 3 999.0 1 2020-08-08 21:21:01.967291 2020-08-08 21:21:01.967291 2544 \N \N \N 7 \N 1 \N 0.00 \N \N DEPOSITO 3608 995 2 299.0 1 2020-08-10 20:53:59.030774 2020-08-10 20:53:59.030774 2525 \N \N \N 7 \N 1 299.00 0.00 \N \N 3610 997 2 1399.0 1 2020-08-11 00:07:37.98932 2020-08-11 00:07:37.98932 2683 \N \N \N 0 PV3-V-483 1 1399.00 0.00 \N \N 3611 998 2 1599.0 1 2020-08-11 23:58:14.525891 2020-08-11 23:58:14.525891 2684 \N \N \N 0 PV3-V-484 1 1599.00 0.00 \N \N 3612 998 2 1499.0 1 2020-08-12 00:20:43.866777 2020-08-12 00:20:43.866777 2685 \N \N \N 0 PV3-V-485 1 1499.00 0.00 \N \N 3613 999 1 500.0 1 2020-08-12 22:00:37.025526 2020-08-12 22:00:37.025526 2687 1420 \N \N 6 PV3-V-487 1 \N 0.00 \N \N 3614 999 3 800.0 1 2020-08-12 22:50:23.518568 2020-08-12 22:50:23.554883 2491 \N \N \N 3 \N 1 \N 0.00 \N \N SAM 3615 1000 2 999.0 1 2020-08-13 00:36:01.908116 2020-08-13 00:36:01.908116 2688 \N \N \N 0 PV3-V-488 1 999.00 0.00 \N \N 3616 1000 2 1099.0 1 2020-08-13 00:36:52.619465 2020-08-13 00:36:52.619465 2625 \N \N \N 7 \N 1 1099.00 0.00 \N \N 3618 1001 2 1000.0 1 2020-08-13 20:17:50.261499 2020-08-13 20:17:50.261499 2691 \N \N \N 6 PV1-V-1283 1 1000.00 0.00 \N \N 3620 1001 2 735.0 1 2020-08-13 21:53:39.220758 2020-08-13 21:53:39.220758 2692 \N \N \N 0 PV1-V-1284 1 735.00 0.00 \N \N 3621 1002 2 649.0 1 2020-08-14 00:47:31.695022 2020-08-14 00:47:31.695022 2693 \N \N \N 0 PV3-V-489 1 700.00 51.00 \N \N 3622 1002 2 60.0 1 2020-08-14 00:48:10.645561 2020-08-14 00:48:10.645561 2694 \N \N \N 0 PV3-V-490 1 60.00 0.00 \N \N 3623 1003 2 250.0 1 2020-08-14 16:44:11.717044 2020-08-14 16:44:11.717044 2695 \N \N \N 0 PV1-V-1285 1 250.00 0.00 \N \N 3624 1003 2 350.0 1 2020-08-14 18:08:39.356044 2020-08-14 18:08:39.356044 2696 \N \N \N 0 PV1-V-1286 1 350.00 0.00 \N \N 3625 1003 2 230.0 1 2020-08-14 18:17:18.149782 2020-08-14 18:17:18.149782 2697 \N \N \N 0 PV1-V-1287 1 230.00 0.00 \N \N 3626 1003 2 350.0 1 2020-08-14 18:56:45.200365 2020-08-14 18:56:45.200365 2698 \N \N \N 0 PV1-V-1288 1 500.00 150.00 \N \N 3627 1003 2 635.0 1 2020-08-14 20:09:26.272175 2020-08-14 20:09:26.272175 2699 \N \N \N 0 PV1-V-1289 1 650.00 15.00 \N \N 3628 1003 2 25.0 0 2020-08-14 20:18:49.95736 2020-08-14 20:18:49.95736 \N \N \N 321 2 \N 1 \N \N \N \N 3630 1003 2 600.0 1 2020-08-14 21:41:06.492412 2020-08-14 21:41:06.492412 2701 \N \N \N 0 PV1-V-1291 1 600.00 0.00 \N \N 3631 1003 2 680.0 1 2020-08-14 21:43:02.241897 2020-08-14 21:43:02.241897 2702 \N \N \N 0 PV1-V-1292 1 680.00 0.00 \N \N 3633 1003 1 999.0 1 2020-08-14 21:46:36.719387 2020-08-14 21:46:36.719387 2703 2920 \N \N 0 PV1-V-1293 1 \N 0.00 \N \N 3634 1003 1 500.0 1 2020-08-14 21:46:51.08371 2020-08-14 21:46:51.08371 2703 0 \N \N 0 PV1-V-1293 1 \N 0.00 \N \N 3635 1003 1 799.0 1 2020-08-14 21:51:32.910186 2020-08-14 21:51:32.910186 2704 2920 \N \N 0 PV1-V-1294 1 \N 0.00 \N \N 3636 1003 2 300.0 1 2020-08-14 21:55:09.589716 2020-08-14 21:55:09.589716 2705 \N \N \N 0 PV1-V-1295 1 300.00 0.00 \N \N 3637 1003 2 150.0 1 2020-08-14 22:01:51.485249 2020-08-14 22:01:51.485249 2706 \N \N \N 6 PV1-V-1296 1 150.00 0.00 \N \N 3638 1004 2 569.0 1 2020-08-14 23:54:52.886923 2020-08-14 23:54:52.886923 2707 \N \N \N 0 PV3-V-491 1 600.00 31.00 \N \N 3639 1005 2 700.0 1 2020-08-15 16:07:30.953609 2020-08-15 16:07:30.953609 2708 \N \N \N 0 PV1-V-1297 1 700.00 0.00 \N \N 3640 1005 2 400.0 1 2020-08-15 16:16:06.502694 2020-08-15 16:16:06.502694 2709 \N \N \N 0 PV1-V-1298 1 400.00 0.00 \N \N 3641 1005 2 300.0 1 2020-08-15 16:17:58.436063 2020-08-15 16:17:58.436063 2710 \N \N \N 0 PV1-V-1299 1 300.00 0.00 \N \N 3642 1005 2 500.0 1 2020-08-15 16:24:26.530983 2020-08-15 16:24:26.530983 2711 \N \N \N 0 PV1-V-1300 1 500.00 0.00 \N \N 3643 1005 2 350.0 1 2020-08-15 16:31:16.305992 2020-08-15 16:31:16.305992 2712 \N \N \N 0 PV1-V-1301 1 350.00 0.00 \N \N 3644 1005 2 800.0 1 2020-08-15 17:48:12.514848 2020-08-15 17:48:12.514848 2713 \N \N \N 0 PV1-V-1302 1 800.00 0.00 \N \N 3645 1005 2 250.0 1 2020-08-15 17:49:24.37885 2020-08-15 17:49:24.37885 2714 \N \N \N 0 PV1-V-1303 1 250.00 0.00 \N \N 3646 1005 2 964.0 1 2020-08-15 18:53:31.833492 2020-08-15 18:53:31.833492 2715 \N \N \N 0 PV1-V-1304 1 964.00 0.00 \N \N 3647 1006 1 1599.0 1 2020-08-15 19:04:24.542622 2020-08-15 19:04:24.542622 2716 2283 \N \N 0 PV3-V-492 1 \N 0.00 \N \N 3648 1005 2 690.0 0 2020-08-15 19:35:07.314549 2020-08-15 19:35:07.314549 \N \N \N 322 2 \N 1 \N \N \N \N 3649 1005 2 1355.0 1 2020-08-15 20:11:08.601357 2020-08-15 20:11:08.601357 2717 \N \N \N 0 PV1-V-1305 1 1355.00 0.00 \N \N 3650 1005 2 525.0 1 2020-08-15 21:33:10.086276 2020-08-15 21:33:10.086276 2718 \N \N \N 0 PV1-V-1306 1 525.00 0.00 \N \N 3651 1005 2 650.0 1 2020-08-15 21:57:44.126801 2020-08-15 21:57:44.126801 2719 \N \N \N 0 PV1-V-1307 1 650.00 0.00 \N \N 3652 1005 2 250.0 1 2020-08-15 23:29:03.596305 2020-08-15 23:29:03.596305 2720 \N \N \N 0 PV1-V-1308 1 250.00 0.00 \N \N 3653 1006 3 500.0 1 2020-08-15 23:37:47.548608 2020-08-15 23:37:47.548608 2721 \N \N \N 3 \N 1 \N 0.00 \N \N VECINA 3654 1005 2 100.0 1 2020-08-15 23:41:48.743658 2020-08-15 23:41:48.743658 2722 \N \N \N 0 PV1-V-1309 1 100.00 0.00 \N \N 3655 1007 2 1049.99 1 2020-08-17 16:34:05.951661 2020-08-17 16:34:05.951661 2723 \N \N \N 0 PV1-V-1310 1 1049.99 0.00 \N \N 3656 1007 2 550.0 1 2020-08-17 16:56:10.21453 2020-08-17 16:56:10.21453 2724 \N \N \N 0 PV1-V-1311 1 550.00 0.00 \N \N 3657 1008 2 1599.0 1 2020-08-17 19:16:58.27815 2020-08-17 19:16:58.27815 2725 \N \N \N 0 PV3-V-494 1 1600.00 1.00 \N \N 3658 1007 2 200.0 1 2020-08-17 19:36:37.01803 2020-08-17 19:36:37.01803 2726 \N \N \N 6 PV1-V-1312 1 200.00 0.00 \N \N 3659 1009 3 1899.0 1 2020-08-18 18:08:33.820032 2020-08-18 18:08:33.820032 2727 \N \N \N 0 PV1-V-1313 1 \N 0.00 \N \N SAM 3660 1009 2 100.0 1 2020-08-18 18:26:45.944739 2020-08-18 18:26:45.944739 2728 \N \N \N 0 PV1-V-1314 1 100.00 0.00 \N \N 3661 1009 2 40.0 0 2020-08-18 18:40:12.869915 2020-08-18 18:40:12.869915 \N \N \N 323 2 \N 1 \N \N \N \N 3662 1010 2 500.0 1 2020-08-18 18:52:29.489106 2020-08-18 18:52:29.489106 2729 \N \N \N 6 PV3-V-495 1 500.00 0.00 \N \N 3663 1010 1 1099.0 1 2020-08-18 21:39:54.468857 2020-08-18 21:39:54.468857 2730 2458 \N \N 0 PV3-V-496 1 \N 0.00 \N \N 3664 1010 2 549.0 1 2020-08-18 22:24:28.340386 2020-08-18 22:24:28.340386 2731 \N \N \N 0 PV3-V-497 1 549.00 0.00 \N \N 3665 1010 2 858.0 1 2020-08-18 22:45:32.068417 2020-08-18 22:45:32.068417 2733 \N \N \N 0 PV3-V-499 1 858.00 0.00 \N \N 3666 1010 2 1599.0 1 2020-08-18 23:10:47.121663 2020-08-18 23:10:47.121663 2734 \N \N \N 0 PV3-V-500 1 1599.00 0.00 \N \N 3667 1011 2 1599.0 1 2020-08-19 00:03:10.989423 2020-08-19 00:03:10.989423 2735 \N \N \N 0 PV1-V-1315 1 1599.00 0.00 \N \N 3668 1012 2 200.0 1 2020-08-19 16:26:28.54107 2020-08-19 16:26:28.54107 2680 \N \N \N 4 \N 1 200.00 0.00 \N \N 3669 1013 2 500.0 1 2020-08-19 18:07:09.317759 2020-08-19 18:07:09.317759 2736 \N \N \N 6 PV3-V-501 1 500.00 0.00 \N \N 3671 1013 2 0 1 2020-08-19 18:09:29.157684 2020-08-19 18:09:29.157684 2736 \N \N \N 4 \N 1 0.00 0.00 \N \N 3672 1013 2 1.0 1 2020-08-19 18:09:41.96255 2020-08-19 18:09:41.96255 2736 \N \N \N 4 \N 1 1.00 0.00 \N \N 3673 1012 2 700.0 1 2020-08-19 21:15:16.531682 2020-08-19 21:15:16.531682 2737 \N \N \N 0 PV1-V-1316 1 700.00 0.00 \N \N 3674 1012 2 250.0 1 2020-08-19 21:25:20.653299 2020-08-19 21:25:20.653299 2738 \N \N \N 0 PV1-V-1317 1 250.00 0.00 \N \N 3675 1013 2 280.0 1 2020-08-19 22:27:29.289134 2020-08-19 22:27:29.289134 2739 \N \N \N 0 PV3-V-502 1 280.00 0.00 \N \N 3676 1013 2 2616.0 1 2020-08-19 22:37:56.163137 2020-08-19 22:37:56.163137 2740 \N \N \N 0 PV3-V-503 1 2700.00 84.00 \N \N 3677 1013 2 799.0 1 2020-08-19 22:44:56.642697 2020-08-19 22:44:56.642697 2741 \N \N \N 0 PV3-V-504 1 1000.00 201.00 \N \N 3678 1013 2 350.0 1 2020-08-19 23:30:05.649294 2020-08-19 23:30:05.649294 2742 \N \N \N 0 PV3-V-505 1 350.00 0.00 \N \N 3679 1013 2 150.0 1 2020-08-19 23:31:03.548734 2020-08-19 23:31:03.548734 2743 \N \N \N 6 PV3-V-506 1 150.00 0.00 \N \N 3680 1013 2 1000.0 1 2020-08-19 23:44:18.329068 2020-08-19 23:44:18.329068 2744 \N \N \N 6 PV3-V-507 1 1000.00 0.00 \N \N 3681 1012 2 850.0 1 2020-08-19 23:58:14.64466 2020-08-19 23:58:14.64466 2745 \N \N \N 0 PV1-V-1318 1 850.00 0.00 \N \N 3682 1013 2 110.0 1 2020-08-19 23:59:10.127153 2020-08-19 23:59:10.127153 2746 \N \N \N 0 PV3-V-508 1 110.00 0.00 \N \N 3683 1014 2 580.0 1 2020-08-20 19:21:34.807136 2020-08-20 19:21:34.807136 2747 \N \N \N 0 PV1-V-1319 1 580.00 0.00 \N \N 3684 1015 2 1046.0 1 2020-08-20 23:10:55.880507 2020-08-20 23:10:55.880507 2748 \N \N \N 0 PV3-V-509 1 1100.00 54.00 \N \N 3685 1017 2 1000.0 1 2020-08-21 18:13:36.082581 2020-08-21 18:13:36.118486 2485 \N \N \N 3 \N 1 1000.00 0.00 \N \N 3687 1016 2 269.0 1 2020-08-21 18:45:57.797381 2020-08-21 18:45:57.797381 2680 \N \N \N 7 \N 1 269.00 0.00 \N \N 3688 1016 2 550.0 1 2020-08-21 21:19:27.166953 2020-08-21 21:19:27.166953 2749 \N \N \N 0 PV1-V-1320 1 550.00 0.00 \N \N 3689 1017 2 1499.0 1 2020-08-21 21:47:08.091088 2020-08-21 21:47:08.091088 2750 \N \N \N 0 PV3-V-510 1 1500.00 1.00 \N \N 3690 1017 4 1499.0 1 2020-08-21 23:00:04.086037 2020-08-21 23:00:04.086037 2751 1873 \N \N 0 PV3-V-511 1 \N 0.00 \N \N 3691 1017 2 300.0 1 2020-08-21 23:02:38.886584 2020-08-21 23:02:38.886584 2752 \N \N \N 6 PV3-V-512 1 500.00 200.00 \N \N 3694 1017 2 1.0 1 2020-08-21 23:03:36.571285 2020-08-21 23:03:36.571285 2752 \N \N \N 4 \N 1 1.00 0.00 \N \N 3695 1017 2 199.0 1 2020-08-21 23:04:24.561385 2020-08-21 23:04:24.561385 2752 \N \N \N 4 \N 1 199.00 0.00 \N \N 3696 1018 2 450.0 1 2020-08-22 17:02:01.319844 2020-08-22 17:02:01.319844 2753 \N \N \N 0 PV1-V-1321 1 450.00 0.00 \N \N 3697 1018 2 750.0 1 2020-08-22 18:16:44.454994 2020-08-22 18:16:44.454994 2754 \N \N \N 0 PV1-V-1322 1 750.00 0.00 \N \N 3698 1019 1 899.0 1 2020-08-22 20:55:34.903111 2020-08-22 20:55:34.903111 2755 6772 \N \N 0 PV3-V-513 1 \N 0.00 \N \N 3699 1019 2 200.0 1 2020-08-22 21:02:06.50672 2020-08-22 21:02:06.50672 2729 \N \N \N 4 \N 1 200.00 0.00 \N \N 3700 1019 2 1000.0 1 2020-08-23 00:13:05.220489 2020-08-23 00:13:05.220489 2744 \N \N \N 4 \N 1 1000.00 0.00 \N \N 3701 1019 2 500.0 1 2020-08-23 00:16:50.936674 2020-08-23 00:16:50.936674 2756 \N \N \N 6 PV3-V-514 1 500.00 0.00 \N \N 3702 1020 2 500.0 1 2020-08-24 16:18:20.062517 2020-08-24 16:18:20.062517 2757 \N \N \N 0 PV1-V-1323 1 500.00 0.00 \N \N 3703 1021 2 369.0 1 2020-08-24 18:24:41.776582 2020-08-24 18:24:41.776582 2758 \N \N \N 0 PV3-V-515 1 500.00 131.00 \N \N 3704 1021 2 800.0 1 2020-08-24 19:04:53.276622 2020-08-24 19:04:53.350599 2489 \N \N \N 3 \N 1 800.00 0.00 \N \N 3705 1021 2 631.0 1 2020-08-24 19:08:53.276736 2020-08-24 19:08:53.310526 2480 \N \N \N 3 \N 1 631.00 0.00 \N \N 3706 1020 1 2635.0 1 2020-08-24 19:34:51.140876 2020-08-24 19:34:51.140876 2759 8036 \N \N 0 PV1-V-1324 1 \N 0.00 \N \N 3707 1020 2 350.0 1 2020-08-24 20:39:45.916346 2020-08-24 20:39:45.916346 2760 \N \N \N 0 PV1-V-1325 1 500.00 150.00 \N \N 3708 1020 2 585.0 1 2020-08-24 21:11:41.381348 2020-08-24 21:11:41.381348 2761 \N \N \N 0 PV1-V-1326 1 585.00 0.00 \N \N 3709 1020 2 250.0 1 2020-08-24 21:38:04.018162 2020-08-24 21:38:04.018162 2762 \N \N \N 0 PV1-V-1327 1 250.00 0.00 \N \N 3710 1021 2 628.0 1 2020-08-24 22:05:15.203337 2020-08-24 22:05:15.203337 2763 \N \N \N 0 PV3-V-516 1 700.00 72.00 \N \N 3711 1021 2 1659.0 1 2020-08-24 22:55:06.341839 2020-08-24 22:55:06.341839 2764 \N \N \N 0 PV3-V-517 1 1659.00 0.00 \N \N 3712 1021 4 999.0 1 2020-08-25 00:01:05.946675 2020-08-25 00:01:05.946675 2571 1554 \N \N 7 \N 1 \N 0.00 \N \N 3713 1021 2 250.0 1 2020-08-25 00:47:13.665025 2020-08-25 00:47:13.665025 2765 \N \N \N 0 PV3-V-518 1 250.00 0.00 \N \N 3714 1021 2 49.0 1 2020-08-25 00:49:35.409044 2020-08-25 00:49:35.409044 2766 \N \N \N 0 PV3-V-519 1 49.00 0.00 \N \N 3715 1023 2 4766.99 1 2020-08-25 21:57:19.477483 2020-08-25 21:57:19.477483 2767 \N \N \N 0 PV3-V-520 1 4766.99 0.00 \N \N 3716 1023 2 899.0 1 2020-08-25 22:27:00.211511 2020-08-25 22:27:00.211511 2768 \N \N \N 0 PV3-V-521 1 1000.00 101.00 \N \N 3717 1022 2 700.0 1 2020-08-25 22:50:40.344132 2020-08-25 22:50:40.344132 2769 \N \N \N 0 PV1-V-1328 1 700.00 0.00 \N \N 3718 1023 1 1110.0 1 2020-08-25 23:00:18.138197 2020-08-25 23:00:18.138197 2770 4512 \N \N 0 PV3-V-522 1 \N 0.00 \N \N 3719 1022 2 750.0 1 2020-08-25 23:14:06.553663 2020-08-25 23:14:06.553663 2771 \N \N \N 0 PV1-V-1329 1 750.00 0.00 \N \N 3720 1023 2 750.0 1 2020-08-25 23:50:15.147238 2020-08-25 23:50:15.147238 2772 \N \N \N 0 PV3-V-523 1 900.00 150.00 \N \N 3721 1023 1 500.0 1 2020-08-26 00:17:23.380887 2020-08-26 00:17:23.421307 2721 5566 \N \N 3 \N 1 \N 0.00 \N \N 3722 1023 1 71.99 1 2020-08-26 00:18:05.982709 2020-08-26 00:18:06.023676 2488 2366 \N \N 3 \N 1 \N 0.00 \N \N 3723 1023 1 800.0 1 2020-08-26 00:18:33.055046 2020-08-26 00:18:33.118301 2491 1155 \N \N 3 \N 1 \N 0.00 \N \N 3724 1023 1 1000.0 1 2020-08-26 00:19:27.507943 2020-08-26 00:19:27.537876 2663 5456 \N \N 3 \N 1 \N 0.00 \N \N 3725 1023 1 1615.0 1 2020-08-26 00:48:58.74234 2020-08-26 00:48:58.74234 2773 1529 \N \N 0 PV3-V-524 1 \N 0.00 \N \N 3726 1023 2 750.0 1 2020-08-26 01:19:16.96451 2020-08-26 01:19:16.96451 2774 \N \N \N 0 PV3-V-525 1 750.00 0.00 \N \N 3727 1025 2 494.0 1 2020-08-26 18:33:00.218056 2020-08-26 18:33:00.218056 2775 \N \N \N 0 PV3-V-526 1 500.00 6.00 \N \N 3728 1025 2 799.0 1 2020-08-26 19:15:57.247377 2020-08-26 19:15:57.247377 2776 \N \N \N 0 PV3-V-527 1 800.00 1.00 \N \N 3729 1024 2 800.0 1 2020-08-26 20:26:39.693413 2020-08-26 20:26:39.693413 2777 \N \N \N 0 PV1-V-1330 1 800.00 0.00 \N \N 3730 1025 2 189.0 1 2020-08-26 21:59:50.667382 2020-08-26 21:59:50.667382 2778 \N \N \N 0 PV3-V-528 1 500.00 311.00 \N \N 3731 1025 2 6000.0 1 2020-08-26 23:42:40.389861 2020-08-26 23:42:40.389861 2779 \N \N \N 0 PV3-V-529 1 6000.00 0.00 \N \N 3732 1025 1 196.0 1 2020-08-26 23:43:01.1831 2020-08-26 23:43:01.1831 2779 7799 \N \N 0 PV3-V-529 1 \N 0.00 \N \N 3733 1025 1 1499.0 1 2020-08-26 23:45:12.434721 2020-08-26 23:45:12.434721 2780 7799 \N \N 0 PV3-V-530 1 \N 0.00 \N \N 3734 1025 2 1119.0 1 2020-08-27 00:12:26.516099 2020-08-27 00:12:26.516099 2781 \N \N \N 0 PV3-V-531 1 1119.00 0.00 \N \N 3735 1025 2 999.0 1 2020-08-27 01:17:51.787791 2020-08-27 01:17:51.787791 2782 \N \N \N 0 PV3-V-532 1 1000.00 1.00 \N \N 3736 1025 2 1119.0 0 2020-08-27 01:24:39.807346 2020-08-27 01:24:39.807346 \N \N \N 324 2 \N 1 \N \N \N \N 3737 1026 2 400.0 1 2020-08-27 22:18:54.980405 2020-08-27 22:18:54.980405 2783 \N \N \N 0 PV1-V-1331 1 400.00 0.00 \N \N 3738 1026 2 600.0 1 2020-08-27 22:30:08.520381 2020-08-27 22:30:08.520381 2784 \N \N \N 0 PV1-V-1332 1 600.00 0.00 \N \N 3739 1026 2 250.0 1 2020-08-27 22:58:57.292002 2020-08-27 22:58:57.292002 2785 \N \N \N 0 PV1-V-1333 1 250.00 0.00 \N \N 3740 1026 1 899.0 1 2020-08-27 23:18:57.601105 2020-08-27 23:18:57.601105 2786 7662 \N \N 0 PV1-V-1334 1 \N 0.00 \N \N 3741 1027 4 1599.0 1 2020-08-28 00:16:38.654042 2020-08-28 00:16:38.654042 2787 4525 \N \N 0 PV3-V-533 1 \N 0.00 \N \N 3742 1027 1 420.0 1 2020-08-28 00:27:15.300177 2020-08-28 00:27:15.300177 2788 1522 \N \N 0 PV3-V-534 1 \N 0.00 \N \N 3743 1027 2 1299.0 1 2020-08-28 01:04:15.270839 2020-08-28 01:04:15.270839 2789 \N \N \N 0 PV3-V-535 1 1500.00 201.00 \N \N 3745 1027 2 125.0 0 2020-08-28 01:26:24.480697 2020-08-28 01:26:24.480697 \N \N \N 325 2 \N 1 \N \N \N \N 3746 1028 2 350.0 1 2020-08-28 17:01:54.541071 2020-08-28 17:01:54.541071 2790 \N \N \N 0 PV1-V-1335 1 350.00 0.00 \N \N 3747 1029 2 1600.0 1 2020-08-28 18:22:01.563526 2020-08-28 18:22:01.563526 2791 \N \N \N 0 PV3-V-536 1 1600.00 0.00 \N \N 3748 1029 1 400.0 1 2020-08-28 18:22:20.643063 2020-08-28 18:22:20.643063 2791 5523 \N \N 0 PV3-V-536 1 \N 0.00 \N \N 3749 1029 1 100.0 1 2020-08-28 18:40:41.129497 2020-08-28 18:40:41.129497 2792 1252 \N \N 0 PV3-V-537 1 \N 0.00 \N \N 3750 1029 2 79.0 1 2020-08-28 18:40:47.090299 2020-08-28 18:40:47.090299 2792 \N \N \N 0 PV3-V-537 1 79.00 0.00 \N \N 3751 1029 2 1059.0 1 2020-08-28 19:12:32.71674 2020-08-28 19:12:32.71674 2794 \N \N \N 0 PV3-V-539 1 1059.00 0.00 \N \N 3752 1029 1 2098.0 1 2020-08-28 19:17:13.203771 2020-08-28 19:17:13.203771 2795 1525 \N \N 0 PV3-V-540 1 \N 0.00 \N \N 3753 1028 2 499.99 1 2020-08-28 19:29:51.338318 2020-08-28 19:29:51.338318 2796 \N \N \N 0 PV1-V-1336 1 499.99 0.00 \N \N 3754 1028 1 189.0 1 2020-08-28 19:30:22.726218 2020-08-28 19:30:22.726218 2796 1365 \N \N 0 PV1-V-1336 1 \N 0.00 \N \N 3755 1029 2 1565.0 1 2020-08-28 19:35:25.722138 2020-08-28 19:35:25.722138 2797 \N \N \N 0 PV3-V-541 1 1565.00 0.00 \N \N 3756 1029 1 1000.0 1 2020-08-28 21:20:31.205078 2020-08-28 21:20:31.205078 2798 1526 \N \N 0 PV3-V-542 1 \N 0.00 \N \N 3757 1029 2 500.0 1 2020-08-28 21:20:39.492449 2020-08-28 21:20:39.492449 2798 \N \N \N 0 PV3-V-542 1 1000.00 500.00 \N \N 3758 1029 1 999.0 1 2020-08-28 22:35:47.889055 2020-08-28 22:35:47.889055 2799 1524 \N \N 0 PV3-V-543 1 \N 0.00 \N \N 3760 1029 2 500.0 1 2020-08-28 23:56:33.450286 2020-08-28 23:56:33.450286 2801 \N \N \N 0 PV3-V-545 1 500.00 0.00 \N \N 3761 1029 2 250.0 1 2020-08-29 00:29:48.641215 2020-08-29 00:29:48.641215 2802 \N \N \N 0 PV3-V-546 1 250.00 0.00 \N \N 3762 1029 1 3557.0 1 2020-08-29 00:45:05.179511 2020-08-29 00:45:05.179511 2803 1552 \N \N 0 PV3-V-547 1 \N 0.00 \N \N 3763 1029 1 1499.0 1 2020-08-29 00:48:59.77445 2020-08-29 00:48:59.77445 2804 1525 \N \N 0 PV3-V-548 1 \N 0.00 \N \N 3764 1030 2 3298.0 1 2020-08-29 17:19:51.318609 2020-08-29 17:19:51.318609 2805 \N \N \N 0 PV1-V-1337 1 3298.00 0.00 \N \N 3765 1030 2 1499.0 1 2020-08-29 17:41:38.454065 2020-08-29 17:41:38.454065 2806 \N \N \N 0 PV1-V-1338 1 1499.00 0.00 \N \N 3766 1030 2 200.0 1 2020-08-29 18:05:03.683939 2020-08-29 18:05:03.683939 2807 \N \N \N 0 PV1-V-1339 1 200.00 0.00 \N \N 3767 1030 2 650.0 1 2020-08-29 19:30:11.758598 2020-08-29 19:30:11.758598 2808 \N \N \N 0 PV1-V-1340 1 650.00 0.00 \N \N 3768 1031 2 120.0 1 2020-08-29 20:49:45.293887 2020-08-29 20:49:45.293887 2809 \N \N \N 0 PV3-V-549 1 200.00 80.00 \N \N 3769 1031 3 400.0 1 2020-08-29 22:05:15.383706 2020-08-29 22:05:15.383706 2810 \N \N \N 0 PV3-V-550 1 \N 0.00 \N \N apartado 3770 1031 2 1399.0 1 2020-08-29 22:05:24.61694 2020-08-29 22:05:24.61694 2810 \N \N \N 0 PV3-V-550 1 1399.00 0.00 \N \N apartado 3771 1030 2 720.0 1 2020-08-29 22:07:35.618777 2020-08-29 22:07:35.618777 2811 \N \N \N 0 PV1-V-1341 1 720.00 0.00 \N \N 3772 1030 2 1499.0 1 2020-08-29 22:26:19.261352 2020-08-29 22:26:19.261352 2812 \N \N \N 0 PV1-V-1342 1 1499.00 0.00 \N \N 3773 1030 2 100.0 1 2020-08-29 22:33:39.657654 2020-08-29 22:33:39.657654 2813 \N \N \N 0 PV1-V-1343 1 100.00 0.00 \N \N 3774 1030 2 1000.0 1 2020-08-29 23:30:18.051209 2020-08-29 23:30:18.051209 2814 \N \N \N 0 PV1-V-1344 1 1000.00 0.00 \N \N 3775 1030 2 4000.0 0 2020-08-29 23:38:09.916227 2020-08-29 23:38:09.916227 \N \N \N 326 2 \N 1 \N \N \N \N 3776 1031 2 500.0 1 2020-08-30 00:37:46.821688 2020-08-30 00:37:46.821688 2815 \N \N \N 6 PV3-V-551 1 500.00 0.00 \N \N 3777 1032 2 1499.0 1 2020-08-31 21:07:07.830589 2020-08-31 21:07:07.830589 2816 \N \N \N 0 PV1-V-1345 1 1499.00 0.00 \N \N 3778 1033 1 1948.0 1 2020-08-31 21:19:09.646462 2020-08-31 21:19:09.646462 2817 889 \N \N 0 PV3-V-552 1 \N 0.00 \N \N 3779 1033 4 500.0 1 2020-08-31 21:29:35.588502 2020-08-31 21:29:35.588502 2818 4566 \N \N 6 PV3-V-553 1 \N 0.00 \N \N 3780 1032 2 500.0 1 2020-08-31 21:31:23.934939 2020-08-31 21:31:23.934939 2819 \N \N \N 6 PV1-V-1346 1 500.00 0.00 \N \N 3781 1033 1 500.0 1 2020-08-31 21:31:39.615749 2020-08-31 21:31:39.615749 2820 4265 \N \N 6 PV3-V-554 1 \N 0.00 \N \N 3784 1033 4 470.0 1 2020-08-31 21:35:41.770515 2020-08-31 21:35:41.770515 2822 4256 \N \N 6 PV3-V-556 1 \N 0.00 \N \N 3786 1034 2 1000.0 1 2020-09-01 18:39:24.947858 2020-09-01 18:39:24.947858 2824 \N \N \N 6 PV3-V-558 1 1000.00 0.00 \N \N 3787 1035 2 300.0 1 2020-09-01 22:04:46.931402 2020-09-01 22:04:46.931402 2825 \N \N \N 0 PV1-V-1347 1 300.00 0.00 \N \N 3788 1034 2 258.0 1 2020-09-01 22:06:49.6953 2020-09-01 22:06:49.6953 2826 \N \N \N 0 PV3-V-559 1 258.00 0.00 \N \N 3789 1035 2 899.0 1 2020-09-01 22:56:46.180917 2020-09-01 22:56:46.180917 2827 \N \N \N 0 PV1-V-1348 1 899.00 0.00 \N \N 3790 1034 2 869.0 1 2020-09-01 23:29:06.773993 2020-09-01 23:29:06.773993 2828 \N \N \N 0 PV3-V-560 1 1000.00 131.00 \N \N 3791 1034 2 1499.0 1 2020-09-01 23:49:24.185175 2020-09-01 23:49:24.185175 2829 \N \N \N 0 PV3-V-561 1 1499.00 0.00 \N \N 3793 1036 1 500.0 1 2020-09-02 01:33:34.568488 2020-09-02 01:33:34.568488 2831 1526 \N \N 6 PV3-V-563 1 \N 0.00 \N \N 3794 1037 2 139.0 1 2020-09-02 17:28:32.834973 2020-09-02 17:28:32.834973 2832 \N \N \N 0 PV1-V-1349 1 139.00 0.00 \N \N 3795 1037 2 300.0 1 2020-09-02 18:44:31.377242 2020-09-02 18:44:31.377242 2833 \N \N \N 0 PV1-V-1350 1 300.00 0.00 \N \N 3797 1038 2 1298.0 1 2020-09-02 19:11:20.959275 2020-09-02 19:11:20.959275 2744 \N \N \N 7 \N 1 1300.00 2.00 \N \N 3798 1038 2 189.0 1 2020-09-02 19:17:14.077663 2020-09-02 19:17:14.077663 2835 \N \N \N 0 PV3-V-565 1 200.00 11.00 \N \N 3799 1038 2 500.0 1 2020-09-02 19:17:59.86666 2020-09-02 19:17:59.86666 2836 \N \N \N 6 PV3-V-566 1 500.00 0.00 \N \N 3802 1037 2 350.0 1 2020-09-02 20:19:34.862627 2020-09-02 20:19:34.862627 2838 \N \N \N 0 PV1-V-1351 1 350.00 0.00 \N \N 3800 1038 3 400.0 1 2020-09-02 20:13:21.832312 2020-09-02 20:13:21.832312 2837 \N \N \N 0 PV3-V-567 1 \N 0.00 \N \N trans 3803 1038 2 1399.0 1 2020-09-02 20:19:39.294484 2020-09-02 20:19:39.294484 2837 \N \N \N 0 PV3-V-567 1 1500.00 101.00 \N \N trans 3804 1037 2 50.0 0 2020-09-03 00:56:29.119239 2020-09-03 00:56:29.119239 \N \N \N 327 2 \N 1 \N \N \N \N 3805 1039 2 1399.0 1 2020-09-03 01:10:12.124163 2020-09-03 01:10:12.124163 2839 \N \N \N 0 PV3-V-568 1 1500.00 101.00 \N \N 3806 1040 2 410.0 1 2020-09-03 16:26:40.554519 2020-09-03 16:26:40.554519 2840 \N \N \N 0 PV1-V-1352 1 410.00 0.00 \N \N 3807 1040 1 1499.0 1 2020-09-03 19:59:21.999214 2020-09-03 19:59:21.999214 2841 1526 \N \N 0 PV1-V-1353 1 \N 0.00 \N \N 3808 1041 2 139.0 1 2020-09-03 20:02:52.960789 2020-09-03 20:02:52.960789 2842 \N \N \N 0 PV3-V-569 1 500.00 361.00 \N \N 3809 1040 1 1249.0 1 2020-09-03 21:01:55.345888 2020-09-03 21:01:55.345888 2843 1552 \N \N 0 PV1-V-1354 1 \N 0.00 \N \N 3810 1040 1 699.0 1 2020-09-03 21:07:33.653627 2020-09-03 21:07:33.653627 2844 1556 \N \N 0 PV1-V-1355 1 \N 0.00 \N \N 3811 1041 4 1000.0 1 2020-09-03 21:19:50.397691 2020-09-03 21:19:50.397691 2845 0 \N \N 6 PV3-V-570 1 \N 0.00 \N \N 3812 1041 2 400.0 1 2020-09-03 21:39:51.901318 2020-09-03 21:39:51.901318 2847 \N \N \N 6 PV3-V-572 1 400.00 0.00 \N \N 3813 1041 4 278.0 1 2020-09-03 21:50:26.442788 2020-09-03 21:50:26.442788 2848 9822 \N \N 0 PV3-V-573 1 \N 0.00 \N \N 3814 1041 1 500.0 1 2020-09-03 21:54:48.65946 2020-09-03 21:54:48.65946 2849 8023 \N \N 0 PV3-V-574 1 \N 0.00 \N \N 3815 1040 2 1738.0 1 2020-09-03 22:55:49.507816 2020-09-03 22:55:49.507816 2850 \N \N \N 0 PV1-V-1356 1 1738.00 0.00 \N \N 3816 1041 1 1599.0 1 2020-09-03 23:12:12.540326 2020-09-03 23:12:12.540326 2851 8401 \N \N 0 PV3-V-575 1 \N 0.00 \N \N 3817 1041 2 999.0 1 2020-09-03 23:59:56.436908 2020-09-03 23:59:56.436908 2852 \N \N \N 0 PV3-V-576 1 1000.00 1.00 \N \N 3818 1041 2 500.0 1 2020-09-04 00:27:00.886773 2020-09-04 00:27:00.886773 2853 \N \N \N 0 PV3-V-577 1 500.00 0.00 \N \N 3819 1041 2 400.0 0 2020-09-04 00:51:41.11791 2020-09-04 00:51:41.11791 \N \N \N 328 2 \N 1 \N \N \N \N 3820 1042 2 30.0 0 2020-09-04 18:04:04.101065 2020-09-04 18:04:04.101065 \N \N \N 329 2 \N 1 \N \N \N \N 3821 1043 2 5000.0 1 2020-09-04 18:25:51.403232 2020-09-04 18:25:51.48916 2485 \N \N \N 3 \N 1 5000.00 0.00 \N \N 3822 1043 3 2848.0 1 2020-09-04 18:38:31.972881 2020-09-04 18:38:31.972881 2854 \N \N \N 0 PV3-V-578 1 \N 0.00 \N \N INSTA 3823 1042 2 200.0 1 2020-09-04 18:46:40.681638 2020-09-04 18:46:40.681638 2855 \N \N \N 0 PV1-V-1357 1 200.00 0.00 \N \N 3824 1042 2 1799.0 1 2020-09-04 19:07:05.247017 2020-09-04 19:07:05.247017 2856 \N \N \N 0 PV1-V-1358 1 1799.00 0.00 \N \N 3825 1042 3 999.0 1 2020-09-04 19:45:43.595572 2020-09-04 19:45:43.595572 2857 \N \N \N 0 PV1-V-1359 1 \N 0.00 \N \N SAM 3826 1043 1 500.0 1 2020-09-04 20:01:33.333366 2020-09-04 20:01:33.333366 2858 4803 \N \N 0 PV3-V-579 1 \N 0.00 \N \N 3827 1043 4 1599.0 1 2020-09-04 20:25:31.866696 2020-09-04 20:25:31.866696 2859 5706 \N \N 0 PV3-V-580 1 \N 0.00 \N \N 3828 1043 3 500.0 1 2020-09-04 20:39:45.689952 2020-09-04 20:39:45.689952 2687 \N \N \N 4 \N 1 \N 0.00 \N \N TRANS 3829 1043 3 600.0 1 2020-09-04 20:44:58.132654 2020-09-04 20:44:58.19805 2516 \N \N \N 3 \N 1 \N 0.00 \N \N TRANS 3830 1043 3 499.0 1 2020-09-04 21:45:12.168915 2020-09-04 21:45:12.168915 2820 \N \N \N 7 \N 1 \N 0.00 \N \N TRANS 3831 1043 2 1799.0 1 2020-09-04 22:43:42.905972 2020-09-04 22:43:42.905972 2860 \N \N \N 0 PV3-V-581 1 2000.00 201.00 \N \N 3832 1042 2 699.0 1 2020-09-04 23:40:18.551712 2020-09-04 23:40:18.551712 2861 \N \N \N 0 PV1-V-1360 1 699.00 0.00 \N \N 3833 1042 3 1000.0 1 2020-09-04 23:42:37.281914 2020-09-04 23:42:37.281914 2862 \N \N \N 0 PV1-V-1361 1 \N 0.00 \N \N ANTICIPO DE APARTADO 3834 1042 2 599.0 1 2020-09-04 23:42:47.820259 2020-09-04 23:42:47.820259 2862 \N \N \N 0 PV1-V-1361 1 599.00 0.00 \N \N ANTICIPO DE APARTADO 3835 1042 2 999.0 1 2020-09-04 23:46:33.632184 2020-09-04 23:46:33.632184 2863 \N \N \N 0 PV1-V-1362 1 999.00 0.00 \N \N 3836 1042 2 633.0 0 2020-09-04 23:49:20.982343 2020-09-04 23:49:20.982343 \N \N \N 330 2 \N 1 \N \N \N \N 3837 1044 1 299.0 1 2020-09-05 20:05:19.54624 2020-09-05 20:05:19.54624 2864 6518 \N \N 0 PV3-V-582 1 \N 0.00 \N \N 3838 1045 2 780.0 1 2020-09-07 16:52:23.947718 2020-09-07 16:52:23.947718 2865 \N \N \N 0 PV1-V-1363 1 780.00 0.00 \N \N 3839 1046 2 999.0 1 2020-09-07 23:13:10.074706 2020-09-07 23:13:10.074706 2866 \N \N \N 0 PV3-V-583 1 1000.00 1.00 \N \N 3840 1046 3 1000.0 1 2020-09-08 00:12:47.185378 2020-09-08 00:12:47.185378 2845 \N \N \N 4 \N 1 \N 0.00 \N \N OXXO 3841 1046 2 1799.0 1 2020-09-08 00:25:05.916237 2020-09-08 00:25:05.916237 2867 \N \N \N 0 PV3-V-584 1 1800.00 1.00 \N \N 3842 1046 2 501.0 0 2020-09-08 00:30:28.232848 2020-09-08 00:30:28.232848 2736 \N \N \N 0 \N 1 \N \N \N \N 3843 1046 3 500.0 1 2020-09-08 00:31:07.775557 2020-09-08 00:31:07.775557 2868 \N \N \N 0 PV3-V-585 1 \N 0.00 \N \N APARTADO 3844 1046 2 899.0 1 2020-09-08 00:31:34.528483 2020-09-08 00:31:34.528483 2868 \N \N \N 0 PV3-V-585 1 1000.00 101.00 \N \N APARTADO 3845 1046 2 1000.0 0 2020-09-08 01:00:35.851656 2020-09-08 01:00:35.851656 \N \N \N 331 2 \N 1 \N \N \N \N 3846 1047 2 500.0 1 2020-09-08 16:36:53.879665 2020-09-08 16:36:53.879665 2870 \N \N \N 6 PV1-V-1365 1 500.00 0.00 \N \N 3847 1047 2 500.0 1 2020-09-08 16:38:32.591645 2020-09-08 16:38:32.591645 2871 \N \N \N 6 PV1-V-1366 1 500.00 0.00 \N \N 3848 1047 1 799.0 1 2020-09-08 19:30:34.899739 2020-09-08 19:30:34.899739 2872 3843 \N \N 0 PV1-V-1367 1 \N 0.00 \N \N 3849 1049 2 1000.0 1 2020-09-08 20:23:16.366527 2020-09-08 20:23:16.366527 2651 \N \N \N 7 \N 1 1000.00 0.00 \N \N 3850 1049 2 98.99 1 2020-09-08 20:26:06.460501 2020-09-08 20:26:06.460501 2873 \N \N \N 0 PV1-V-1368 1 200.00 101.01 \N \N 3851 1049 3 1099.0 1 2020-09-08 21:23:49.134789 2020-09-08 21:23:49.134789 2874 \N \N \N 0 PV1-V-1369 1 \N 0.00 \N \N SAM 3852 1048 1 2748.0 1 2020-09-08 23:28:12.439317 2020-09-08 23:28:12.439317 2875 1034 \N \N 0 PV3-V-586 1 \N 0.00 \N \N 3854 1048 2 498.0 1 2020-09-09 00:31:42.807576 2020-09-09 00:31:42.807576 2752 \N \N \N 4 \N 1 498.00 0.00 \N \N 3855 1048 1 2000.0 1 2020-09-09 00:32:11.68816 2020-09-09 00:32:11.68816 2752 6295 \N \N 4 \N 1 \N 0.00 \N \N 3856 1048 2 1088.0 1 2020-09-09 01:02:32.911313 2020-09-09 01:02:32.911313 2876 \N \N \N 0 PV3-V-587 1 1088.00 0.00 \N \N 3857 1049 3 549.0 1 2020-09-09 05:53:54.525586 2020-09-09 05:53:54.525586 2877 \N \N \N 0 PV1-V-1370 1 \N 0.00 \N \N SESION 3858 1051 2 1099.0 1 2020-09-09 16:18:35.612875 2020-09-09 16:18:35.612875 2815 \N \N \N 7 \N 1 1099.00 0.00 \N \N 3859 1050 2 500.0 1 2020-09-09 16:42:40.095624 2020-09-09 16:42:40.095624 2878 \N \N \N 6 PV1-V-1371 1 500.00 0.00 \N \N 3860 1050 2 500.0 1 2020-09-09 16:49:14.353444 2020-09-09 16:49:14.353444 2879 \N \N \N 6 PV1-V-1372 1 500.00 0.00 \N \N 3861 1050 2 1327.0 1 2020-09-09 18:07:09.938814 2020-09-09 18:07:09.938814 2880 \N \N \N 0 PV1-V-1373 1 1327.00 0.00 \N \N 3862 1050 2 300.0 1 2020-09-09 19:36:57.002034 2020-09-09 19:36:57.002034 2881 \N \N \N 6 PV1-V-1374 1 300.00 0.00 \N \N 3863 1050 3 1230.0 1 2020-09-09 20:25:52.491711 2020-09-09 20:25:52.491711 2882 \N \N \N 0 PV1-V-1375 1 \N 0.00 \N \N SAM 3864 1050 2 529.0 1 2020-09-09 20:59:04.781738 2020-09-09 20:59:04.781738 2883 \N \N \N 0 PV1-V-1376 1 529.00 0.00 \N \N 3865 1051 3 1919.0 1 2020-09-09 21:52:53.632473 2020-09-09 21:52:53.632473 2884 \N \N \N 0 PV3-V-588 1 \N 0.00 \N \N DEPOSITO 3866 1051 2 69.0 1 2020-09-09 22:18:30.168023 2020-09-09 22:18:30.168023 2885 \N \N \N 0 PV3-V-589 1 70.00 1.00 \N \N 3867 1051 2 689.0 1 2020-09-09 23:27:42.933489 2020-09-09 23:27:42.933489 2886 \N \N \N 0 PV3-V-590 1 700.00 11.00 \N \N 3868 1051 2 119.0 1 2020-09-09 23:33:11.867287 2020-09-09 23:33:11.867287 2887 \N \N \N 0 PV3-V-591 1 119.00 0.00 \N \N 3869 1051 3 51.0 1 2020-09-09 23:44:05.373545 2020-09-09 23:44:05.373545 2888 \N \N \N 3 \N 1 \N 0.00 \N \N DEPOSITO 3870 1051 2 1499.0 1 2020-09-09 23:59:40.80946 2020-09-09 23:59:40.80946 2889 \N \N \N 0 PV3-V-593 1 1499.00 0.00 \N \N 3871 1051 4 1499.0 1 2020-09-10 00:27:55.92727 2020-09-10 00:27:55.92727 2890 7546 \N \N 0 PV3-V-594 1 \N 0.00 \N \N 3872 1051 2 699.0 1 2020-09-10 01:05:01.912097 2020-09-10 01:05:01.912097 2891 \N \N \N 0 PV3-V-595 1 699.00 0.00 \N \N 3873 1052 2 999.0 1 2020-09-10 19:25:57.81323 2020-09-10 19:25:57.81323 2892 \N \N \N 0 PV3-V-596 1 999.00 0.00 \N \N 3874 1053 2 1628.0 1 2020-09-10 19:39:06.601661 2020-09-10 19:39:06.601661 2893 \N \N \N 0 PV1-V-1377 1 1628.00 0.00 \N \N 3875 1052 3 1000.0 1 2020-09-10 22:32:04.125358 2020-09-10 22:32:04.125358 2845 \N \N \N 4 \N 1 \N 0.00 \N \N 55665 3876 1053 3 1299.0 1 2020-09-10 22:50:28.612115 2020-09-10 22:50:28.612115 2870 \N \N \N 7 \N 1 \N 0.00 \N \N 1552 3877 1053 2 189.0 1 2020-09-10 23:10:48.193516 2020-09-10 23:10:48.193516 2894 \N \N \N 0 PV1-V-1378 1 189.00 0.00 \N \N 3878 1053 4 1499.0 1 2020-09-10 23:50:05.36757 2020-09-10 23:50:05.36757 2895 5312 \N \N 0 PV1-V-1379 1 \N 0.00 \N \N 3879 1052 2 1648.0 1 2020-09-11 00:45:10.275472 2020-09-11 00:45:10.275472 2896 \N \N \N 0 PV3-V-597 1 1800.00 152.00 \N \N 3880 1052 1 599.0 1 2020-09-11 01:03:12.795457 2020-09-11 01:03:12.795457 2897 1526 \N \N 0 PV3-V-598 1 \N 0.00 \N \N 3881 1052 3 1499.0 1 2020-09-11 01:15:26.24168 2020-09-11 01:15:26.24168 2899 \N \N \N 0 PV3-V-600 1 \N 0.00 \N \N 15526 3882 1054 2 699.0 1 2020-09-11 16:52:30.781361 2020-09-11 16:52:30.781361 2900 \N \N \N 0 PV1-V-1380 1 699.00 0.00 \N \N 3883 1055 2 799.0 1 2020-09-11 20:32:02.604866 2020-09-11 20:32:02.604866 2901 \N \N \N 0 PV3-V-601 1 799.00 0.00 \N \N 3884 1055 2 0 1 2020-09-11 20:34:33.986073 2020-09-11 20:34:33.986073 2902 \N \N \N 6 PV3-V-602 0 0.00 0.00 \N \N 3885 1054 2 1178.0 1 2020-09-11 21:43:29.876455 2020-09-11 21:43:29.876455 2907 \N \N \N 0 PV1-V-1382 1 1178.00 0.00 \N \N 3886 1055 1 1198.0 1 2020-09-11 22:16:14.567449 2020-09-11 22:16:14.567449 2908 1525 \N \N 0 PV3-V-606 1 \N 0.00 \N \N 3887 1055 1 399.0 1 2020-09-11 22:23:37.398332 2020-09-11 22:23:37.398332 2909 4555 \N \N 0 PV3-V-607 1 \N 0.00 \N \N 3888 1055 1 999.0 1 2020-09-11 23:31:54.883169 2020-09-11 23:31:54.883169 2910 1565 \N \N 0 PV3-V-608 1 \N 0.00 \N \N 3889 1056 1 969.0 1 2020-09-12 18:25:29.690837 2020-09-12 18:25:29.690837 2911 7192 \N \N 0 PV1-V-1383 1 \N 0.00 \N \N 3893 1057 1 400.0 1 2020-09-12 21:01:10.854071 2020-09-12 21:01:10.854071 2914 1225 \N \N 6 PV3-V-611 1 \N 0.00 \N \N 3894 1057 1 199.0 1 2020-09-12 21:47:25.347307 2020-09-12 21:47:25.347307 2535 1225 \N \N 7 \N 1 \N 0.00 \N \N 3895 1057 1 899.0 1 2020-09-12 21:48:31.987498 2020-09-12 21:48:31.987498 2650 1255 \N \N 7 \N 1 \N 0.00 \N \N 3896 1056 2 659.0 1 2020-09-12 22:19:30.335665 2020-09-12 22:19:30.335665 2915 \N \N \N 0 PV1-V-1384 1 659.00 0.00 \N \N 3897 1057 2 1499.0 1 2020-09-12 23:15:35.61765 2020-09-12 23:15:35.61765 2916 \N \N \N 0 PV3-V-612 1 1499.00 0.00 \N \N 3898 1056 2 999.0 1 2020-09-12 23:19:20.731865 2020-09-12 23:19:20.731865 2917 \N \N \N 0 PV1-V-1385 1 999.00 0.00 \N \N 3899 1056 2 15.0 0 2020-09-12 23:25:14.367166 2020-09-12 23:25:14.367166 \N \N \N 332 2 \N 1 \N \N \N \N 3900 1056 3 999.0 1 2020-09-12 23:34:24.284509 2020-09-12 23:34:24.284509 2918 \N \N \N 0 PV1-V-1386 1 \N 0.00 \N \N 1255 3901 1057 2 1000.0 1 2020-09-12 23:49:14.50499 2020-09-12 23:49:14.50499 2919 \N \N \N 6 PV3-V-613 1 1000.00 0.00 \N \N 3902 1057 1 1999.0 1 2020-09-13 01:30:29.605989 2020-09-13 01:30:29.605989 2920 1552 \N \N 0 PV3-V-614 1 \N 0.00 \N \N 3903 1057 2 288.0 1 2020-09-13 01:38:58.206405 2020-09-13 01:38:58.206405 2921 \N \N \N 0 PV3-V-615 1 288.00 0.00 \N \N 3904 1059 2 500.0 1 2020-09-14 18:30:47.074481 2020-09-14 18:30:47.074481 2922 \N \N \N 6 PV3-V-616 1 500.00 0.00 \N \N 3905 1058 2 499.0 1 2020-09-14 19:04:53.594365 2020-09-14 19:04:53.594365 2923 \N \N \N 0 PV1-V-1387 1 499.00 0.00 \N \N 3906 1058 1 1199.0 1 2020-09-14 19:07:43.139961 2020-09-14 19:07:43.139961 2871 1041 \N \N 7 \N 1 \N 0.00 \N \N 3907 1058 1 599.0 1 2020-09-14 19:35:20.29502 2020-09-14 19:35:20.29502 2924 6399 \N \N 0 PV1-V-1388 1 \N 0.00 \N \N 3908 1059 2 300.0 1 2020-09-14 20:32:11.490712 2020-09-14 20:32:11.605945 2888 \N \N \N 3 \N 1 300.00 0.00 \N \N 3909 1059 4 999.0 1 2020-09-14 21:05:26.032442 2020-09-14 21:05:26.032442 2925 725 \N \N 0 PV3-V-617 1 \N 0.00 \N \N 3910 1059 4 400.0 1 2020-09-14 21:10:42.848469 2020-09-14 21:10:42.848469 2926 9876 \N \N 6 PV3-V-618 1 \N 0.00 \N \N 3911 1058 2 500.0 1 2020-09-14 21:51:41.342313 2020-09-14 21:51:41.342313 2927 \N \N \N 6 PV1-V-1389 1 500.00 0.00 \N \N 3912 1059 2 1000.0 1 2020-09-15 00:21:59.911709 2020-09-15 00:21:59.911709 2818 \N \N \N 7 \N 1 1000.00 0.00 \N \N 3913 1059 3 529.0 1 2020-09-15 00:45:00.65867 2020-09-15 00:45:00.65867 2822 \N \N \N 7 \N 1 \N 0.00 \N \N CENTRO 3914 1059 2 999.0 1 2020-09-15 00:58:29.938139 2020-09-15 00:58:29.938139 2928 \N \N \N 0 PV3-V-619 1 999.00 0.00 \N \N 3915 1059 2 700.01 1 2020-09-15 01:01:06.949051 2020-09-15 01:01:06.949051 2845 \N \N \N 7 \N 1 700.01 0.00 \N \N 3916 1060 2 399.0 1 2020-09-15 16:47:36.149982 2020-09-15 16:47:36.149982 2706 \N \N \N 7 \N 1 399.00 0.00 \N \N 3917 1060 1 999.0 1 2020-09-15 18:29:20.272429 2020-09-15 18:29:20.272429 2929 2794 \N \N 0 PV1-V-1390 1 \N 0.00 \N \N 3918 1061 1 400.0 1 2020-09-15 18:49:23.879251 2020-09-15 18:49:23.879251 2931 1556 \N \N 6 PV3-V-621 1 \N 0.00 \N \N 3919 1061 1 1499.0 1 2020-09-15 20:15:46.79027 2020-09-15 20:15:46.79027 2933 1552 \N \N 0 PV3-V-623 1 \N 0.00 \N \N 3920 1061 1 399.0 1 2020-09-15 20:55:04.627929 2020-09-15 20:55:04.627929 2687 1552 \N \N 7 \N 1 \N 0.00 \N \N 3921 1061 1 999.0 1 2020-09-15 21:15:58.146224 2020-09-15 21:15:58.146224 2934 1555 \N \N 0 PV3-V-624 1 \N 0.00 \N \N 3922 1061 2 119.0 1 2020-09-15 21:16:28.762498 2020-09-15 21:16:28.762498 2935 \N \N \N 0 PV3-V-625 1 500.00 381.00 \N \N 3923 1060 1 999.0 1 2020-09-15 21:30:12.568684 2020-09-15 21:30:12.568684 2819 9949 \N \N 7 \N 1 \N 0.00 \N \N 3924 1060 2 250.0 1 2020-09-15 21:36:41.568891 2020-09-15 21:36:41.568891 2936 \N \N \N 0 PV1-V-1391 1 250.00 0.00 \N \N 3925 1060 3 1899.0 1 2020-09-15 21:39:00.678402 2020-09-15 21:39:00.678402 2937 \N \N \N 0 PV1-V-1392 1 \N 0.00 \N \N 12562 3926 1061 2 1499.0 1 2020-09-15 21:40:29.79466 2020-09-15 21:40:29.79466 2938 \N \N \N 0 PV3-V-626 1 1499.00 0.00 \N \N 3927 1061 3 700.0 1 2020-09-15 21:58:48.307741 2020-09-15 21:58:48.357872 2604 \N \N \N 3 \N 1 \N 0.00 \N \N 45556 3928 1061 3 298.0 1 2020-09-15 22:02:08.73172 2020-09-15 22:02:08.784393 2463 \N \N \N 3 \N 1 \N 0.00 \N \N 5622 3929 1060 2 1000.0 1 2020-09-15 22:02:20.491745 2020-09-15 22:02:20.491745 2939 \N \N \N 6 PV1-V-1393 1 1000.00 0.00 \N \N 3930 1061 3 449.0 1 2020-09-15 22:02:37.085989 2020-09-15 22:02:37.148466 2721 \N \N \N 3 \N 1 \N 0.00 \N \N 4566 3931 1061 3 549.0 1 2020-09-15 22:04:43.428932 2020-09-15 22:04:43.488498 772 \N \N \N 3 \N 1 \N 0.00 \N \N 555 3932 1061 2 689.0 1 2020-09-15 22:30:26.07098 2020-09-15 22:30:26.07098 2940 \N \N \N 0 PV3-V-627 1 800.00 111.00 \N \N 3933 1060 1 999.0 1 2020-09-15 23:08:48.652264 2020-09-15 23:08:48.652264 2941 4996 \N \N 0 PV1-V-1394 1 \N 0.00 \N \N 3934 1060 1 1549.0 1 2020-09-15 23:18:02.858075 2020-09-15 23:18:02.858075 2942 9465 \N \N 0 PV1-V-1395 1 \N 0.00 \N \N 3935 1060 2 300.0 1 2020-09-15 23:45:54.131914 2020-09-15 23:45:54.131914 2943 \N \N \N 0 PV1-V-1396 1 300.00 0.00 \N \N 3936 1061 2 1499.0 1 2020-09-16 00:40:06.632081 2020-09-16 00:40:06.632081 2944 \N \N \N 0 PV3-V-628 1 1600.00 101.00 \N \N 3937 1063 2 200.0 1 2020-09-16 21:43:48.923044 2020-09-16 21:43:48.923044 2945 \N \N \N 6 PV3-V-629 1 200.00 0.00 \N \N 3938 1062 2 799.0 1 2020-09-16 21:45:10.371496 2020-09-16 21:45:10.371496 2946 \N \N \N 0 PV1-V-1397 1 799.00 0.00 \N \N 3939 1062 2 100.0 1 2020-09-16 21:47:35.251013 2020-09-16 21:47:35.251013 2947 \N \N \N 0 PV1-V-1398 1 100.00 0.00 \N \N 3940 1063 1 900.0 1 2020-09-16 21:56:45.873015 2020-09-16 21:56:45.873015 2948 5091 \N \N 0 PV3-V-630 1 \N 0.00 \N \N 3941 1063 2 599.0 1 2020-09-16 21:57:18.722143 2020-09-16 21:57:18.722143 2948 \N \N \N 0 PV3-V-630 1 1000.00 401.00 \N \N 3942 1064 3 1998.0 1 2020-09-17 01:40:27.741336 2020-09-17 01:40:27.741336 2949 \N \N \N 0 PV3-V-631 1 \N 0.00 \N \N INSTAG 3943 1065 2 699.0 1 2020-09-17 18:58:41.872971 2020-09-17 18:58:41.872971 2950 \N \N \N 0 PV1-V-1399 1 699.00 0.00 \N \N 3944 1066 4 1000.0 1 2020-09-17 19:24:57.462873 2020-09-17 19:24:57.462873 2951 0 \N \N 6 PV3-V-632 1 \N 0.00 \N \N 3945 1065 2 969.0 1 2020-09-17 19:30:35.39111 2020-09-17 19:30:35.39111 2952 \N \N \N 0 PV1-V-1400 1 969.00 0.00 \N \N 3946 1066 2 1299.0 1 2020-09-17 19:35:31.788532 2020-09-17 19:35:31.788532 2953 \N \N \N 0 PV3-V-633 1 1300.00 1.00 \N \N 3947 1065 2 799.0 1 2020-09-17 20:38:08.364152 2020-09-17 20:38:08.364152 2939 \N \N \N 7 \N 1 799.00 0.00 \N \N 3949 1065 1 1662.0 1 2020-09-17 21:38:01.930096 2020-09-17 21:38:01.930096 2955 8036 \N \N 0 PV1-V-1401 1 \N 0.00 \N \N 3950 1066 2 999.0 1 2020-09-17 22:03:53.718614 2020-09-17 22:03:53.718614 2956 \N \N \N 0 PV3-V-635 1 1000.00 1.00 \N \N 3951 1066 4 400.0 1 2020-09-17 22:53:16.298997 2020-09-17 22:53:16.298997 2957 0 \N \N 6 PV3-V-636 1 \N 0.00 \N \N 3952 1066 1 799.0 1 2020-09-17 22:58:15.352713 2020-09-17 22:58:15.352713 2729 2272 \N \N 7 \N 1 \N 0.00 \N \N 3953 1065 2 2135.0 0 2020-09-17 23:07:33.449293 2020-09-17 23:07:33.449293 \N \N \N 333 2 \N 1 \N \N \N \N 3954 1065 2 69.0 1 2020-09-17 23:33:03.762796 2020-09-17 23:33:03.762796 2958 \N \N \N 0 PV1-V-1402 1 69.00 0.00 \N \N 3955 1066 2 999.0 1 2020-09-17 23:36:20.994119 2020-09-17 23:36:20.994119 2959 \N \N \N 0 PV3-V-637 1 1000.00 1.00 \N \N 3957 1066 1 1499.0 1 2020-09-18 00:07:06.106647 2020-09-18 00:07:06.106647 2960 4618 \N \N 0 PV3-V-638 1 \N 0.00 \N \N 3958 1065 4 1190.0 1 2020-09-18 00:08:18.82527 2020-09-18 00:08:18.82527 2961 9307 \N \N 0 PV1-V-1403 1 \N 0.00 \N \N 3959 1067 2 200.0 1 2020-09-18 16:36:19.770006 2020-09-18 16:36:19.770006 2879 \N \N \N 4 \N 1 200.00 0.00 \N \N 3960 1067 1 699.0 1 2020-09-18 16:58:24.078976 2020-09-18 16:58:24.078976 2962 1555 \N \N 0 PV1-V-1404 1 \N 0.00 \N \N 3961 1068 1 489.0 1 2020-09-18 21:35:50.476251 2020-09-18 21:35:50.476251 2963 2891 \N \N 0 PV3-V-639 1 \N 0.00 \N \N 3962 1067 2 599.0 1 2020-09-18 21:42:56.247384 2020-09-18 21:42:56.247384 2964 \N \N \N 0 PV1-V-1405 1 700.00 101.00 \N \N 3963 1067 2 1208.0 1 2020-09-18 22:34:15.519018 2020-09-18 22:34:15.519018 2965 \N \N \N 0 PV1-V-1406 1 1400.00 192.00 \N \N 3964 1067 2 469.0 1 2020-09-18 22:37:19.705086 2020-09-18 22:37:19.705086 2966 \N \N \N 0 PV1-V-1407 1 469.00 0.00 \N \N 3965 1067 2 650.0 1 2020-09-18 22:45:29.938074 2020-09-18 22:45:29.938074 2967 \N \N \N 0 PV1-V-1408 1 650.00 0.00 \N \N 3966 1068 2 449.0 1 2020-09-18 23:03:12.744154 2020-09-18 23:03:12.744154 2743 \N \N \N 7 \N 1 500.00 51.00 \N \N 3967 1068 3 1616.0 1 2020-09-19 00:29:37.234619 2020-09-19 00:29:37.234619 2968 \N \N \N 0 PV3-V-640 1 \N 0.00 \N \N 15556 3968 1068 2 549.0 1 2020-09-19 00:49:02.789503 2020-09-19 00:49:02.789503 2969 \N \N \N 0 PV3-V-641 1 549.00 0.00 \N \N 3969 1069 1 1097.0 1 2020-09-19 17:18:05.923924 2020-09-19 17:18:05.923924 2970 1256 \N \N 0 PV1-V-1409 1 \N 0.00 \N \N 3971 1070 2 1599.0 1 2020-09-19 18:30:30.473946 2020-09-19 18:30:30.473946 2972 \N \N \N 0 PV3-V-643 1 1599.00 0.00 \N \N 3972 1070 2 1099.0 1 2020-09-19 19:38:08.715794 2020-09-19 19:38:08.715794 2836 \N \N \N 7 \N 1 1099.00 0.00 \N \N 3973 1070 2 999.0 1 2020-09-19 19:41:29.501313 2020-09-19 19:41:29.501313 2756 \N \N \N 7 \N 1 1000.00 1.00 \N \N 3974 1069 2 649.99 1 2020-09-19 20:14:31.152149 2020-09-19 20:14:31.152149 2973 \N \N \N 0 PV1-V-1410 1 700.00 50.01 \N \N 3975 1069 2 1599.0 1 2020-09-19 21:59:05.646812 2020-09-19 21:59:05.646812 2974 \N \N \N 0 PV1-V-1411 1 1599.00 0.00 \N \N 3976 1069 2 799.0 1 2020-09-19 22:02:17.714256 2020-09-19 22:02:17.714256 2975 \N \N \N 0 PV1-V-1412 1 800.00 1.00 \N \N 3977 1069 1 999.0 1 2020-09-19 22:16:26.047084 2020-09-19 22:16:26.047084 2976 1236 \N \N 0 PV1-V-1413 1 \N 0.00 \N \N 1225 3978 1069 1 600.0 1 2020-09-19 22:25:20.469711 2020-09-19 22:25:20.469711 2977 4525 \N \N 6 PV1-V-1414 1 \N 0.00 \N \N 3979 1069 2 999.0 1 2020-09-19 22:26:41.808254 2020-09-19 22:26:41.808254 2978 \N \N \N 0 PV1-V-1415 1 999.00 0.00 \N \N 3980 1070 1 369.0 1 2020-09-19 22:51:28.343434 2020-09-19 22:51:28.343434 2979 9538 \N \N 0 PV3-V-644 1 \N 0.00 \N \N 3981 1069 2 330.0 1 2020-09-19 23:42:45.796145 2020-09-19 23:42:45.796145 2981 \N \N \N 0 PV1-V-1417 1 330.00 0.00 \N \N 3982 1069 4 999.0 1 2020-09-19 23:45:11.991733 2020-09-19 23:45:11.991733 2982 5551 \N \N 0 PV1-V-1418 1 \N 0.00 \N \N 3983 1069 2 999.0 1 2020-09-20 00:05:51.370709 2020-09-20 00:05:51.370709 2983 \N \N \N 0 PV1-V-1419 1 999.00 0.00 \N \N 3984 1069 2 739.0 1 2020-09-20 00:26:55.267234 2020-09-20 00:26:55.267234 2984 \N \N \N 0 PV1-V-1420 1 739.00 0.00 \N \N 3985 1070 2 100.0 0 2020-09-20 00:30:16.957939 2020-09-20 00:30:16.957939 \N \N \N 334 2 \N 1 \N \N \N \N 3986 1069 1 999.0 1 2020-09-20 00:32:28.054441 2020-09-20 00:32:28.054441 2985 1552 \N \N 0 PV1-V-1421 1 \N 0.00 \N \N 3987 1069 2 650.0 1 2020-09-20 00:34:46.754906 2020-09-20 00:34:46.754906 2986 \N \N \N 0 PV1-V-1422 1 1000.00 350.00 \N \N 3988 1069 2 250.0 1 2020-09-20 00:48:44.283596 2020-09-20 00:48:44.283596 2987 \N \N \N 0 PV1-V-1423 1 250.00 0.00 \N \N 3989 1069 2 500.0 1 2020-09-20 01:01:21.394571 2020-09-20 01:01:21.394571 2988 \N \N \N 6 PV1-V-1424 1 500.00 0.00 \N \N 3990 1069 2 49.0 1 2020-09-20 01:03:32.157944 2020-09-20 01:03:32.157944 2989 \N \N \N 0 PV1-V-1425 1 49.00 0.00 \N \N 3991 1069 2 200.0 1 2020-09-20 01:05:58.806226 2020-09-20 01:05:58.806226 2990 \N \N \N 6 PV1-V-1426 1 200.00 0.00 \N \N 3992 1071 4 400.0 1 2020-09-21 18:40:06.622619 2020-09-21 18:40:06.622619 2991 0 \N \N 6 PV3-V-645 1 \N 0.00 \N \N 3993 1072 2 1099.0 1 2020-09-21 18:43:34.452458 2020-09-21 18:43:34.452458 2992 \N \N \N 0 PV1-V-1427 1 1099.00 0.00 \N \N 3994 1072 2 500.0 1 2020-09-21 18:45:28.180998 2020-09-21 18:45:28.180998 2993 \N \N \N 6 PV1-V-1428 1 500.00 0.00 \N \N 3995 1072 2 738.0 1 2020-09-21 19:02:30.413955 2020-09-21 19:02:30.413955 2994 \N \N \N 0 PV1-V-1429 1 1000.00 262.00 \N \N 3996 1072 2 1049.0 1 2020-09-21 19:59:06.0274 2020-09-21 19:59:06.0274 2995 \N \N \N 0 PV1-V-1430 1 1100.00 51.00 \N \N 3997 1071 2 699.0 1 2020-09-21 20:09:49.532048 2020-09-21 20:09:49.532048 2996 \N \N \N 0 PV3-V-646 1 1000.00 301.00 \N \N 3998 1071 2 3398.0 1 2020-09-21 21:11:32.643407 2020-09-21 21:11:32.643407 2997 \N \N \N 0 PV3-V-647 1 3400.00 2.00 \N \N 3999 1071 2 999.0 1 2020-09-21 22:01:20.285785 2020-09-21 22:01:20.285785 2998 \N \N \N 0 PV3-V-648 1 1000.00 1.00 \N \N 4000 1072 2 300.0 1 2020-09-21 22:09:58.403566 2020-09-21 22:09:58.403566 2999 \N \N \N 6 PV1-V-1431 1 300.00 0.00 \N \N 4001 1072 2 549.0 1 2020-09-21 22:19:32.962847 2020-09-21 22:19:32.962847 3000 \N \N \N 0 PV1-V-1432 1 549.00 0.00 \N \N 4002 1072 2 649.0 1 2020-09-21 23:01:57.742779 2020-09-21 23:01:57.742779 3001 \N \N \N 0 PV1-V-1433 1 649.00 0.00 \N \N 4003 1071 2 1499.0 1 2020-09-21 23:29:16.003171 2020-09-21 23:29:16.003171 3002 \N \N \N 0 PV3-V-649 1 1500.00 1.00 \N \N 4004 1072 2 499.0 1 2020-09-21 23:58:56.613413 2020-09-21 23:58:56.613413 2977 \N \N \N 7 \N 1 499.00 0.00 \N \N 4005 1071 2 529.0 1 2020-09-22 00:07:05.214238 2020-09-22 00:07:05.214238 3003 \N \N \N 0 PV3-V-650 1 529.00 0.00 \N \N 4006 1072 2 479.0 1 2020-09-22 00:37:26.35671 2020-09-22 00:37:26.35671 3004 \N \N \N 0 PV1-V-1434 1 500.00 21.00 \N \N 4007 1071 3 1000.0 1 2020-09-22 00:46:36.047556 2020-09-22 00:46:36.120445 2480 \N \N \N 3 \N 1 \N 0.00 \N \N DEPOSITO 4008 1074 1 990.0 1 2020-09-22 18:32:31.925022 2020-09-22 18:32:31.925022 3005 8588 \N \N 0 PV1-V-1435 1 \N 0.00 \N \N 4009 1073 1 1599.0 1 2020-09-22 19:19:39.018149 2020-09-22 19:19:39.018149 3006 2566 \N \N 0 PV3-V-651 1 \N 0.00 \N \N 4010 1073 2 699.0 1 2020-09-22 19:20:24.699151 2020-09-22 19:20:24.699151 3007 \N \N \N 0 PV3-V-652 1 700.00 1.00 \N \N 4011 1074 2 1368.0 1 2020-09-22 20:02:39.169959 2020-09-22 20:02:39.169959 3008 \N \N \N 0 PV1-V-1436 1 1500.00 132.00 \N \N 4012 1074 2 20.0 0 2020-09-22 21:28:49.59319 2020-09-22 21:28:49.59319 \N \N \N 335 2 \N 1 \N \N \N \N 4013 1074 2 499.99 1 2020-09-22 22:53:57.514619 2020-09-22 22:53:57.514619 3009 \N \N \N 0 PV1-V-1437 1 499.99 0.00 \N \N 4014 1073 2 459.0 1 2020-09-22 23:14:30.729201 2020-09-22 23:14:30.729201 3010 \N \N \N 0 PV3-V-653 1 500.00 41.00 \N \N 4015 1073 2 110.0 1 2020-09-22 23:28:02.298215 2020-09-22 23:28:02.298215 3011 \N \N \N 0 PV3-V-654 1 110.00 0.00 \N \N 4016 1074 2 300.0 1 2020-09-22 23:38:15.149146 2020-09-22 23:38:15.149146 3012 \N \N \N 0 PV1-V-1438 1 300.00 0.00 \N \N 4017 1075 3 1799.0 1 2020-09-23 00:49:55.34973 2020-09-23 00:49:55.34973 3013 \N \N \N 0 PV1-V-1439 1 \N 0.00 \N \N DOM 4018 1073 2 139.0 1 2020-09-23 00:54:51.972556 2020-09-23 00:54:51.972556 3014 \N \N \N 0 PV3-V-655 1 150.00 11.00 \N \N 4019 1073 2 150.0 0 2020-09-23 01:00:36.254373 2020-09-23 01:00:36.254373 \N \N \N 336 2 \N 1 \N \N \N \N 4020 1073 2 999.0 1 2020-09-23 01:01:09.142061 2020-09-23 01:01:09.142061 3015 \N \N \N 0 PV3-V-656 1 1000.00 1.00 \N \N 4053 1078 2 1299.0 1 2020-09-25 00:02:15.742748 2020-09-25 00:02:15.742748 3042 \N \N \N 0 PV1-V-1452 1 1299.00 0.00 \N \N 4023 1076 2 999.0 1 2020-09-23 20:09:38.784282 2020-09-23 20:09:38.784282 3017 \N \N \N 0 PV1-V-1441 1 999.00 0.00 \N \N 4024 1077 2 98.0 1 2020-09-23 20:36:22.559723 2020-09-23 20:36:22.559723 3018 \N \N \N 0 PV3-V-657 1 98.00 0.00 \N \N 4025 1076 4 578.0 1 2020-09-23 21:24:23.497573 2020-09-23 21:24:23.497573 3019 7355 \N \N 0 PV1-V-1442 1 \N 0.00 \N \N 4026 1076 4 200.0 1 2020-09-23 21:27:40.30294 2020-09-23 21:27:40.30294 3020 7355 \N \N 6 PV1-V-1443 1 \N 0.00 \N \N 4027 1076 2 1228.0 1 2020-09-23 22:06:12.546041 2020-09-23 22:06:12.546041 3021 \N \N \N 0 PV1-V-1444 1 1228.00 0.00 \N \N 4028 1076 1 369.0 1 2020-09-23 22:17:37.466006 2020-09-23 22:17:37.466006 3022 3139 \N \N 0 PV1-V-1445 1 \N 0.00 \N \N 4029 1076 2 650.0 0 2020-09-23 22:20:39.251604 2020-09-23 22:20:39.251604 \N \N \N 337 2 \N 1 \N \N \N \N 4030 1077 2 499.99 1 2020-09-23 22:50:36.691848 2020-09-23 22:50:36.691848 3023 \N \N \N 0 PV3-V-658 1 500.00 0.01 \N \N 4031 1076 2 999.0 1 2020-09-23 22:51:05.790509 2020-09-23 22:51:05.790509 3024 \N \N \N 0 PV1-V-1446 1 999.00 0.00 \N \N 4032 1077 2 1049.0 1 2020-09-23 23:13:40.786926 2020-09-23 23:13:40.786926 3025 \N \N \N 0 PV3-V-659 1 1050.00 1.00 \N \N 4033 1076 1 689.0 1 2020-09-23 23:36:42.892143 2020-09-23 23:36:42.892143 3026 8559 \N \N 0 PV1-V-1447 1 \N 0.00 \N \N 4034 1077 2 1599.0 1 2020-09-23 23:46:24.532392 2020-09-23 23:46:24.532392 3027 \N \N \N 0 PV3-V-660 1 2000.00 401.00 \N \N 4035 1077 2 369.0 1 2020-09-23 23:49:54.023534 2020-09-23 23:49:54.023534 3028 \N \N \N 0 PV3-V-661 1 500.00 131.00 \N \N 4036 1077 2 619.0 1 2020-09-23 23:52:19.325493 2020-09-23 23:52:19.325493 3029 \N \N \N 0 PV3-V-662 1 700.00 81.00 \N \N 4037 1077 2 2457.0 1 2020-09-24 00:13:18.765488 2020-09-24 00:13:18.765488 3030 \N \N \N 0 PV3-V-663 1 2457.00 0.00 \N \N 4040 1077 1 17.0 1 2020-09-24 00:19:20.529077 2020-09-24 00:19:20.529077 3032 1225 \N \N 6 PV3-V-665 1 \N 0.00 \N \N 4041 1077 1 342.0 1 2020-09-24 00:25:15.042493 2020-09-24 00:25:15.042493 3033 1255 \N \N 6 PV3-V-666 1 \N 0.00 \N \N 4042 1076 1 500.0 1 2020-09-24 00:49:28.828316 2020-09-24 00:49:28.828316 3034 4696 \N \N 0 PV1-V-1448 1 \N 0.00 \N \N 4043 1078 2 1399.0 1 2020-09-24 17:10:28.700401 2020-09-24 17:10:28.700401 3035 \N \N \N 0 PV1-V-1449 1 1399.00 0.00 \N \N 4044 1078 2 98.0 1 2020-09-24 18:08:18.222631 2020-09-24 18:08:18.222631 3036 \N \N \N 0 PV1-V-1450 1 98.00 0.00 \N \N 4045 1079 2 600.0 1 2020-09-24 18:23:51.245405 2020-09-24 18:23:51.245405 3037 \N \N \N 6 PV3-V-667 1 600.00 0.00 \N \N 4046 1079 2 27.0 1 2020-09-24 18:26:36.37392 2020-09-24 18:26:36.37392 3038 \N \N \N 6 PV3-V-668 1 27.00 0.00 \N \N 4047 1079 1 599.0 1 2020-09-24 18:56:51.920227 2020-09-24 18:56:51.920227 2926 2155 \N \N 7 \N 1 \N 0.00 \N \N 4048 1079 1 200.0 1 2020-09-24 18:58:09.743177 2020-09-24 18:58:09.743177 3039 1255 \N \N 6 PV3-V-669 1 \N 0.00 \N \N 4049 1079 2 500.0 1 2020-09-24 20:45:52.790435 2020-09-24 20:45:52.790435 3040 \N \N \N 6 PV3-V-670 1 500.00 0.00 \N \N 4050 1079 2 799.0 1 2020-09-24 21:22:38.361574 2020-09-24 21:22:38.361574 3037 \N \N \N 7 \N 1 799.00 0.00 \N \N 4051 1079 2 242.0 1 2020-09-24 21:23:03.992647 2020-09-24 21:23:03.992647 3038 \N \N \N 7 \N 1 242.00 0.00 \N \N 4052 1078 2 999.0 1 2020-09-24 23:50:43.028596 2020-09-24 23:50:43.028596 3041 \N \N \N 0 PV1-V-1451 1 999.00 0.00 \N \N 4054 1078 1 818.0 1 2020-09-25 00:11:31.654454 2020-09-25 00:11:31.654454 3043 993 \N \N 0 PV1-V-1453 1 \N 0.00 \N \N 4055 1079 1 1499.0 1 2020-09-25 00:29:00.570344 2020-09-25 00:29:00.570344 3044 1255 \N \N 0 PV3-V-671 1 \N 0.00 \N \N 4056 1078 2 300.0 1 2020-09-25 00:47:44.722112 2020-09-25 00:47:44.722112 3045 \N \N \N 6 PV1-V-1454 1 300.00 0.00 \N \N 4057 1078 2 300.0 1 2020-09-25 00:50:08.075882 2020-09-25 00:50:08.075882 3046 \N \N \N 6 PV1-V-1455 1 300.00 0.00 \N \N 4058 1078 1 200.0 1 2020-09-25 00:52:50.340949 2020-09-25 00:52:50.340949 3047 4294 \N \N 6 PV1-V-1456 1 \N 0.00 \N \N 4059 1081 2 529.0 1 2020-09-25 18:25:53.396325 2020-09-25 18:25:53.396325 3048 \N \N \N 0 PV3-V-672 1 600.00 71.00 \N \N 4060 1080 2 999.0 1 2020-09-25 19:46:36.896061 2020-09-25 19:46:36.896061 3049 \N \N \N 0 PV1-V-1457 1 999.00 0.00 \N \N 4061 1081 2 1616.0 1 2020-09-25 20:08:06.303717 2020-09-25 20:08:06.303717 3050 \N \N \N 0 PV3-V-673 1 2000.00 384.00 \N \N 4062 1081 2 1499.0 1 2020-09-25 23:17:03.745452 2020-09-25 23:17:03.745452 3051 \N \N \N 0 PV3-V-674 1 1499.00 0.00 \N \N 4063 1081 2 938.0 1 2020-09-26 00:33:46.2108 2020-09-26 00:33:46.2108 3052 \N \N \N 0 PV3-V-675 1 1000.00 62.00 \N \N 4064 1081 2 1088.0 1 2020-09-26 00:44:13.326885 2020-09-26 00:44:13.326885 3053 \N \N \N 0 PV3-V-676 1 1100.00 12.00 \N \N 4065 1082 2 1258.0 1 2020-09-26 17:47:19.157538 2020-09-26 17:47:19.157538 3054 \N \N \N 0 PV1-V-1458 1 1500.00 242.00 \N \N 4066 1082 2 569.0 1 2020-09-26 18:17:45.911018 2020-09-26 18:17:45.911018 3055 \N \N \N 0 PV1-V-1459 1 1000.00 431.00 \N \N 4068 1082 2 431.0 1 2020-09-26 18:21:06.386682 2020-09-26 18:21:06.386682 3057 \N \N \N 6 PV1-V-1461 1 431.00 0.00 \N \N 4069 1082 2 100.0 1 2020-09-26 19:01:05.558712 2020-09-26 19:01:05.558712 3058 \N \N \N 0 PV1-V-1462 1 100.00 0.00 \N \N 4070 1082 2 139.0 1 2020-09-26 19:23:40.965395 2020-09-26 19:23:40.965395 3059 \N \N \N 0 PV1-V-1463 1 139.00 0.00 \N \N 4071 1082 2 499.0 1 2020-09-26 20:27:38.717069 2020-09-26 20:27:38.717069 2927 \N \N \N 7 \N 1 499.00 0.00 \N \N 4072 1082 2 3247.0 1 2020-09-26 23:09:16.659162 2020-09-26 23:09:16.659162 3060 \N \N \N 0 PV1-V-1464 1 3247.00 0.00 \N \N 4073 1083 1 499.0 1 2020-09-26 23:22:41.800148 2020-09-26 23:22:41.800148 3061 1225 \N \N 0 PV3-V-677 1 \N 0.00 \N \N 4074 1083 4 1799.0 1 2020-09-26 23:57:35.445101 2020-09-26 23:57:35.445101 3062 1522 \N \N 0 PV3-V-678 1 \N 0.00 \N \N 4075 1084 2 499.0 1 2020-09-27 01:04:46.518696 2020-09-27 01:04:46.518696 2988 \N \N \N 7 \N 1 499.00 0.00 \N \N 4076 1085 2 1499.0 1 2020-09-27 01:07:31.325159 2020-09-27 01:07:31.325159 3063 \N \N \N 0 PV3-V-679 1 1500.00 1.00 \N \N 4077 1084 2 49.0 1 2020-09-27 01:09:14.289356 2020-09-27 01:09:14.289356 3064 \N \N \N 0 PV1-V-1465 1 49.00 0.00 \N \N 4079 1086 2 100.0 1 2020-09-28 17:30:44.412616 2020-09-28 17:30:44.412616 3065 \N \N \N 0 PV1-V-1466 1 100.00 0.00 \N \N 4084 1088 2 300.0 1 2020-09-29 16:24:20.930991 2020-09-29 16:24:20.930991 2879 \N \N \N 4 \N 1 300.00 0.00 \N \N 4081 1086 2 1189.0 1 2020-09-28 22:46:42.142882 2020-09-28 22:46:42.142882 3068 \N \N \N 0 PV1-V-1468 1 1189.00 0.00 \N \N 4082 1087 2 300.0 1 2020-09-29 00:45:42.497522 2020-09-29 00:45:42.497522 2847 \N \N \N 4 \N 1 300.00 0.00 \N \N 4083 1087 2 85.0 0 2020-09-29 01:00:31.710806 2020-09-29 01:00:31.710806 \N \N \N 338 2 \N 1 \N \N \N \N 4085 1089 2 4726.0 1 2020-09-29 19:58:05.894033 2020-09-29 19:58:05.894033 3069 \N \N \N 0 PV3-V-681 1 4726.00 0.00 \N \N 4086 1089 2 599.0 1 2020-09-29 20:01:41.909776 2020-09-29 20:01:41.909776 2914 \N \N \N 7 \N 1 599.00 0.00 \N \N 4087 1089 2 2598.0 1 2020-09-29 20:34:29.853679 2020-09-29 20:34:29.853679 3070 \N \N \N 0 PV3-V-682 1 2600.00 2.00 \N \N 4088 1089 1 2398.0 1 2020-09-29 20:44:11.662624 2020-09-29 20:44:11.662624 3071 2663 \N \N 0 PV3-V-683 1 \N 0.00 \N \N 4089 1089 2 999.0 1 2020-09-29 21:06:18.548915 2020-09-29 21:06:18.548915 3072 \N \N \N 0 PV3-V-684 1 999.00 0.00 \N \N 4090 1089 2 1000.0 1 2020-09-29 21:36:43.803547 2020-09-29 21:36:43.803547 3073 \N \N \N 6 PV3-V-685 1 1000.00 0.00 \N \N 4091 1088 2 499.0 1 2020-09-29 22:24:02.566538 2020-09-29 22:24:02.566538 3074 \N \N \N 0 PV1-V-1469 1 499.00 0.00 \N \N 4092 1088 2 799.0 1 2020-09-29 22:35:42.24451 2020-09-29 22:35:42.24451 3075 \N \N \N 0 PV1-V-1470 1 799.00 0.00 \N \N 4093 1088 2 550.0 1 2020-09-29 22:46:59.364346 2020-09-29 22:46:59.364346 3076 \N \N \N 0 PV1-V-1471 1 550.00 0.00 \N \N 4094 1088 2 300.0 1 2020-09-29 23:59:29.745357 2020-09-29 23:59:29.745357 3077 \N \N \N 6 PV1-V-1472 1 300.00 0.00 \N \N 4095 1088 2 258.0 1 2020-09-30 00:02:08.289023 2020-09-30 00:02:08.289023 3078 \N \N \N 0 PV1-V-1473 1 258.00 0.00 \N \N 4096 1088 2 868.0 1 2020-09-30 00:39:35.407234 2020-09-30 00:39:35.407234 3079 \N \N \N 0 PV1-V-1474 1 868.00 0.00 \N \N 4097 1091 2 139.0 1 2020-09-30 19:31:10.762496 2020-09-30 19:31:10.762496 3080 \N \N \N 0 PV1-V-1475 1 139.00 0.00 \N \N 4098 1091 2 568.0 1 2020-09-30 19:31:35.038066 2020-09-30 19:31:35.038066 3057 \N \N \N 7 \N 1 568.00 0.00 \N \N 4099 1090 2 467.0 1 2020-09-30 19:34:39.591868 2020-09-30 19:34:39.591868 3082 \N \N \N 0 PV3-V-687 1 470.00 3.00 \N \N 4100 1090 2 299.0 1 2020-09-30 19:48:52.757253 2020-09-30 19:48:52.757253 3083 \N \N \N 0 PV3-V-688 1 299.00 0.00 \N \N 4101 1090 2 600.0 1 2020-09-30 20:34:55.101981 2020-09-30 20:34:55.101981 3085 \N \N \N 0 PV3-V-690 1 600.00 0.00 \N \N 4102 1091 4 1499.0 1 2020-09-30 21:12:49.663592 2020-09-30 21:12:49.663592 3086 6180 \N \N 0 PV1-V-1476 1 \N 0.00 \N \N 4103 1091 2 1368.0 1 2020-09-30 22:13:00.709325 2020-09-30 22:13:00.709325 3087 \N \N \N 0 PV1-V-1477 1 1368.00 0.00 \N \N 4104 1091 1 1847.0 1 2020-09-30 22:49:29.300161 2020-09-30 22:49:29.300161 3088 2697 \N \N 0 PV1-V-1478 1 \N 0.00 \N \N 4105 1091 2 75.0 1 2020-09-30 22:59:05.134515 2020-09-30 22:59:05.134515 3089 \N \N \N 6 PV1-V-1479 1 75.00 0.00 \N \N 4106 1090 2 999.0 1 2020-09-30 23:48:29.688241 2020-09-30 23:48:29.688241 3090 \N \N \N 0 PV3-V-691 1 999.00 0.00 \N \N 4107 1090 1 1399.0 1 2020-09-30 23:59:47.552467 2020-09-30 23:59:47.552467 3091 2522 \N \N 0 PV3-V-692 1 \N 0.00 \N \N 4108 1091 2 489.0 1 2020-10-01 00:49:35.790691 2020-10-01 00:49:35.790691 3047 \N \N \N 7 \N 1 489.00 0.00 \N \N 4109 1090 2 1049.0 1 2020-10-01 01:03:13.920961 2020-10-01 01:03:13.920961 3092 \N \N \N 0 PV3-V-693 1 1049.00 0.00 \N \N 4110 1092 2 49.0 1 2020-10-01 17:28:41.781272 2020-10-01 17:28:41.781272 3093 \N \N \N 0 PV1-V-1480 1 49.00 0.00 \N \N 4111 1092 2 479.0 1 2020-10-01 18:57:49.725929 2020-10-01 18:57:49.725929 3094 \N \N \N 0 PV1-V-1481 1 479.00 0.00 \N \N 4112 1093 2 1998.0 1 2020-10-01 19:06:28.674037 2020-10-01 19:06:28.674037 2824 \N \N \N 7 \N 1 1998.00 0.00 \N \N 4113 1092 2 1048.0 1 2020-10-01 23:04:53.379246 2020-10-01 23:04:53.379246 3095 \N \N \N 0 PV1-V-1482 1 1048.00 0.00 \N \N 4114 1092 2 100.0 1 2020-10-01 23:07:05.256814 2020-10-01 23:07:05.256814 3096 \N \N \N 0 PV1-V-1483 1 100.00 0.00 \N \N 4115 1092 2 699.0 1 2020-10-01 23:13:43.362079 2020-10-01 23:13:43.362079 3097 \N \N \N 0 PV1-V-1484 1 699.00 0.00 \N \N 4116 1092 4 699.0 1 2020-10-01 23:22:21.353754 2020-10-01 23:22:21.353754 3098 2255 \N \N 0 PV1-V-1485 1 \N 0.00 \N \N 4117 1093 2 669.0 1 2020-10-02 00:05:30.907022 2020-10-02 00:05:30.907022 3099 \N \N \N 0 PV3-V-694 1 700.00 31.00 \N \N 4118 1092 3 1899.0 1 2020-10-02 00:52:26.181647 2020-10-02 00:52:26.181647 3100 \N \N \N 0 PV1-V-1486 1 \N 0.00 \N \N entrega a domicilio 4119 1094 2 660.01 1 2020-10-02 16:20:18.516087 2020-10-02 16:20:18.516087 3101 \N \N \N 0 PV1-V-1487 1 660.01 0.00 \N \N 4120 1094 2 272.0 0 2020-10-02 19:52:10.07281 2020-10-02 19:52:10.07281 \N \N \N 339 2 \N 1 \N \N \N \N 4121 1094 1 699.0 1 2020-10-02 21:00:57.918059 2020-10-02 21:00:57.918059 3102 3177 \N \N 0 PV1-V-1488 1 \N 0.00 \N \N 4122 1094 2 170.0 1 2020-10-02 21:42:40.048509 2020-10-02 21:42:40.048509 3019 \N \N \N 5 \N 1 170.00 0.00 36 \N 4123 1095 2 999.0 1 2020-10-02 21:48:30.226447 2020-10-02 21:48:30.226447 3103 \N \N \N 0 PV3-V-695 1 999.00 0.00 \N \N 4124 1094 1 1299.0 1 2020-10-02 21:56:29.092409 2020-10-02 21:56:29.092409 3104 3177 \N \N 0 PV1-V-1489 1 \N 0.00 \N \N 4125 1095 4 400.0 1 2020-10-02 21:58:54.891517 2020-10-02 21:58:54.891517 3105 4252 \N \N 6 PV3-V-696 1 \N 0.00 \N \N 4126 1095 2 209.0 1 2020-10-02 23:48:11.487947 2020-10-02 23:48:11.487947 3106 \N \N \N 0 PV3-V-697 1 209.00 0.00 \N \N 4127 1095 2 719.0 1 2020-10-03 00:12:13.613252 2020-10-03 00:12:13.613252 3107 \N \N \N 0 PV3-V-698 1 750.00 31.00 \N \N 4128 1095 1 2198.0 1 2020-10-03 00:18:34.667957 2020-10-03 00:18:34.667957 3108 1566 \N \N 0 PV3-V-699 1 \N 0.00 \N \N 4129 1095 4 561.0 1 2020-10-03 00:21:03.131879 2020-10-03 00:21:03.131879 3073 2525 \N \N 4 \N 1 \N 0.00 \N \N 4130 1095 1 2498.0 1 2020-10-03 00:22:01.312644 2020-10-03 00:22:01.312644 3109 1122 \N \N 0 PV3-V-700 1 \N 0.00 \N \N 4131 1096 2 399.0 1 2020-10-03 22:27:51.953584 2020-10-03 22:27:51.953584 3110 \N \N \N 0 PV1-V-1490 1 399.00 0.00 \N \N 4132 1096 2 100.0 1 2020-10-03 22:29:19.862553 2020-10-03 22:29:19.862553 3111 \N \N \N 6 PV1-V-1491 1 100.00 0.00 \N \N 4133 1096 1 998.0 1 2020-10-03 22:46:11.842329 2020-10-03 22:46:11.842329 3112 4497 \N \N 0 PV1-V-1492 1 \N 0.00 \N \N 4134 1096 2 180.0 0 2020-10-03 23:23:28.380694 2020-10-03 23:23:28.380694 \N \N \N 340 2 \N 1 \N \N \N \N 4135 1096 2 849.0 1 2020-10-03 23:51:54.326588 2020-10-03 23:51:54.326588 3113 \N \N \N 0 PV1-V-1493 1 849.00 0.00 \N \N 4136 1096 1 349.0 1 2020-10-04 00:38:10.071853 2020-10-04 00:38:10.071853 3114 4497 \N \N 0 PV1-V-1494 1 \N 0.00 \N \N 4137 1098 2 1299.0 1 2020-10-04 01:05:11.103877 2020-10-04 01:05:11.103877 3115 \N \N \N 0 PV3-V-701 1 1500.00 201.00 \N \N 4138 1100 1 1029.0 1 2020-10-05 19:37:41.660521 2020-10-05 19:37:41.660521 3116 9797 \N \N 0 PV1-V-1495 1 \N 0.00 \N \N 4139 1100 2 1028.0 1 2020-10-05 20:11:33.616286 2020-10-05 20:11:33.616286 3117 \N \N \N 0 PV1-V-1496 1 1028.00 0.00 \N \N 4140 1100 2 549.0 1 2020-10-05 21:34:58.623392 2020-10-05 21:34:58.623392 3118 \N \N \N 0 PV1-V-1497 1 549.00 0.00 \N \N 4141 1099 3 2498.0 1 2020-10-06 00:13:16.244066 2020-10-06 00:13:16.244066 3119 \N \N \N 0 PV3-V-702 1 \N 0.00 \N \N INS 4142 1099 2 1499.0 1 2020-10-06 00:18:05.39197 2020-10-06 00:18:05.39197 3120 \N \N \N 0 PV3-V-703 1 1500.00 1.00 \N \N 4143 1100 1 560.0 1 2020-10-06 00:19:58.260532 2020-10-06 00:19:58.260532 3121 2942 \N \N 0 PV1-V-1498 1 \N 0.00 \N \N 4144 1099 2 199.0 1 2020-10-06 00:29:55.846612 2020-10-06 00:29:55.846612 3122 \N \N \N 0 PV3-V-704 1 200.00 1.00 \N \N 4145 1100 2 25.0 0 2020-10-06 00:51:25.021141 2020-10-06 00:51:25.021141 \N \N \N 341 2 \N 1 \N \N \N \N 4146 1101 2 569.0 1 2020-10-06 18:34:30.759864 2020-10-06 18:34:30.759864 3123 \N \N \N 0 PV1-V-1499 1 569.00 0.00 \N \N 4147 1099 2 568.0 1 2020-10-06 19:45:58.567294 2020-10-06 19:45:58.567294 3124 \N \N \N 0 PV3-V-705 1 600.00 32.00 \N \N 4149 1099 1 1038.0 1 2020-10-06 22:44:32.063477 2020-10-06 22:44:32.063477 2922 1022 \N \N 7 \N 1 \N 0.00 \N \N 4151 1099 2 500.0 1 2020-10-06 22:49:18.471056 2020-10-06 22:49:18.471056 3126 \N \N \N 6 PV3-V-707 1 500.00 0.00 \N \N 4152 1099 2 2248.0 1 2020-10-06 23:05:34.328792 2020-10-06 23:05:34.328792 3127 \N \N \N 0 PV3-V-708 1 2400.00 152.00 \N \N 4153 1101 2 1318.0 1 2020-10-07 00:44:23.958096 2020-10-07 00:44:23.958096 3128 \N \N \N 0 PV1-V-1500 1 1318.00 0.00 \N \N 4154 1102 2 250.0 1 2020-10-07 16:23:51.063468 2020-10-07 16:23:51.063468 3129 \N \N \N 0 PV1-V-1501 1 250.00 0.00 \N \N 4155 1102 2 200.0 1 2020-10-07 16:32:07.465709 2020-10-07 16:32:07.465709 2879 \N \N \N 4 \N 1 200.00 0.00 \N \N 4156 1102 2 569.0 1 2020-10-07 17:44:21.649061 2020-10-07 17:44:21.649061 3130 \N \N \N 0 PV1-V-1502 1 569.00 0.00 \N \N 4157 1102 2 699.0 1 2020-10-07 19:09:48.464424 2020-10-07 19:09:48.464424 2881 \N \N \N 7 \N 1 699.00 0.00 \N \N 4158 1102 2 1499.0 1 2020-10-07 20:29:20.098165 2020-10-07 20:29:20.098165 3131 \N \N \N 0 PV1-V-1503 1 1499.00 0.00 \N \N 4159 1102 2 699.0 1 2020-10-07 20:35:30.636929 2020-10-07 20:35:30.636929 3132 \N \N \N 0 PV1-V-1504 1 699.00 0.00 \N \N 4160 1102 3 1020.0 1 2020-10-07 21:11:43.035752 2020-10-07 21:11:43.035752 3133 \N \N \N 0 PV1-V-1505 1 \N 0.00 \N \N SE PAGARA A SAM 4161 1102 1 833.0 1 2020-10-07 21:29:35.824385 2020-10-07 21:29:35.824385 3135 5695 \N \N 0 PV1-V-1507 1 \N 0.00 \N \N 4162 1103 2 378.0 1 2020-10-07 23:14:19.756655 2020-10-07 23:14:19.756655 3136 \N \N \N 0 PV3-V-709 1 500.00 122.00 \N \N 4163 1103 4 289.0 1 2020-10-07 23:15:28.62454 2020-10-07 23:15:28.62454 3137 1111 \N \N 0 PV3-V-710 1 \N 0.00 \N \N 4164 1103 1 699.0 1 2020-10-07 23:58:54.784047 2020-10-07 23:58:54.784047 3138 1112 \N \N 0 PV3-V-711 1 \N 0.00 \N \N 4165 1102 2 699.0 1 2020-10-08 00:31:38.747293 2020-10-08 00:31:38.747293 3139 \N \N \N 0 PV1-V-1508 1 699.00 0.00 \N \N 4166 1104 2 968.0 1 2020-10-08 18:12:47.136909 2020-10-08 18:12:47.136909 3140 \N \N \N 0 PV1-V-1509 1 968.00 0.00 \N \N 4167 1104 2 1398.0 1 2020-10-08 18:22:46.540323 2020-10-08 18:22:46.540323 3141 \N \N \N 0 PV1-V-1510 1 1398.00 0.00 \N \N 4168 1104 2 999.0 1 2020-10-09 00:45:22.677279 2020-10-09 00:45:22.677279 3142 \N \N \N 0 PV1-V-1511 1 999.00 0.00 \N \N 4169 1105 2 1000.0 1 2020-10-09 00:47:44.801035 2020-10-09 00:47:44.801035 3143 \N \N \N 6 PV3-V-712 1 1000.00 0.00 \N \N 4170 1105 2 318.0 1 2020-10-09 00:48:53.932104 2020-10-09 00:48:53.932104 3144 \N \N \N 0 PV3-V-713 1 500.00 182.00 \N \N 4171 1106 2 399.0 1 2020-10-09 16:40:42.20258 2020-10-09 16:40:42.20258 3111 \N \N \N 7 \N 1 399.00 0.00 \N \N 4172 1106 2 529.0 1 2020-10-09 20:05:42.996278 2020-10-09 20:05:42.996278 3145 \N \N \N 0 PV1-V-1512 1 529.00 0.00 \N \N 4173 1107 1 1599.0 1 2020-10-09 21:32:37.250349 2020-10-09 21:32:37.250349 3147 1255 \N \N 0 PV3-V-715 1 \N 0.00 \N \N 4174 1107 2 849.0 1 2020-10-09 21:32:42.878964 2020-10-09 21:32:42.878964 3147 \N \N \N 0 PV3-V-715 1 849.00 0.00 \N \N 4175 1107 1 999.0 1 2020-10-09 21:34:09.401042 2020-10-09 21:34:09.401042 3148 1111 \N \N 0 PV3-V-716 1 \N 0.00 \N \N 4176 1107 2 1059.0 1 2020-10-09 21:48:57.865372 2020-10-09 21:48:57.865372 3149 \N \N \N 0 PV3-V-717 1 1200.00 141.00 \N \N 4177 1107 2 999.0 1 2020-10-09 21:50:33.125556 2020-10-09 21:50:33.125556 3150 \N \N \N 0 PV3-V-718 1 999.00 0.00 \N \N 4178 1107 1 500.0 1 2020-10-09 23:56:43.865786 2020-10-09 23:56:43.865786 3151 1255 \N \N 0 PV3-V-719 1 \N 0.00 \N \N 4179 1107 2 1199.0 1 2020-10-09 23:56:51.75138 2020-10-09 23:56:51.75138 3151 \N \N \N 0 PV3-V-719 1 1500.00 301.00 \N \N 4180 1107 2 999.0 1 2020-10-09 23:58:38.051459 2020-10-09 23:58:38.051459 3152 \N \N \N 0 PV3-V-720 1 999.00 0.00 \N \N 4181 1106 2 828.0 1 2020-10-10 00:00:45.75739 2020-10-10 00:00:45.75739 3153 \N \N \N 0 PV1-V-1513 1 828.00 0.00 \N \N 4182 1106 3 500.0 1 2020-10-10 00:28:36.827559 2020-10-10 00:28:36.827559 3154 \N \N \N 0 PV1-V-1514 1 \N 0.00 \N \N ANTICIPO DE APARTADO 4183 1106 2 1399.0 1 2020-10-10 00:28:46.381444 2020-10-10 00:28:46.381444 3154 \N \N \N 0 PV1-V-1514 1 1399.00 0.00 \N \N ANTICIPO DE APARTADO 4184 1108 2 300.0 1 2020-10-10 19:45:40.986602 2020-10-10 19:45:40.986602 3155 \N \N \N 6 PV3-V-721 1 500.00 200.00 \N \N 4185 1108 2 1000.0 1 2020-10-10 20:01:31.030473 2020-10-10 20:01:31.030473 3156 \N \N \N 0 PV3-V-722 1 1000.00 0.00 \N \N 4186 1108 1 767.0 1 2020-10-10 20:01:49.954711 2020-10-10 20:01:49.954711 3156 4445 \N \N 0 PV3-V-722 1 \N 0.00 \N \N 4187 1109 2 1498.0 1 2020-10-10 21:02:14.557209 2020-10-10 21:02:14.557209 3157 \N \N \N 0 PV1-V-1515 1 1498.00 0.00 \N \N 4197 1112 2 479.0 1 2020-10-14 00:24:33.903229 2020-10-14 00:24:33.903229 3166 \N \N \N 0 PV3-V-727 1 500.00 21.00 \N \N 4189 1108 1 489.0 1 2020-10-10 23:13:06.912754 2020-10-10 23:13:06.912754 3159 8693 \N \N 0 PV3-V-723 1 \N 0.00 \N \N 4190 1109 2 280.0 0 2020-10-10 23:31:11.545183 2020-10-10 23:31:11.545183 \N \N \N 342 2 \N 1 \N \N \N \N 4191 1110 2 200.0 1 2020-10-12 17:16:32.55301 2020-10-12 17:16:32.55301 3160 \N \N \N 6 PV1-V-1517 1 200.00 0.00 \N \N 4192 1110 3 1499.0 1 2020-10-12 21:06:32.987878 2020-10-12 21:06:32.987878 3161 \N \N \N 0 PV1-V-1518 1 \N 0.00 \N \N SERVICIO A DOMICILIO 4193 1111 2 1119.0 1 2020-10-12 23:04:56.511053 2020-10-12 23:04:56.511053 3162 \N \N \N 0 PV3-V-724 1 1119.00 0.00 \N \N 4194 1110 1 1189.0 1 2020-10-12 23:13:05.377195 2020-10-12 23:13:05.377195 3163 1951 \N \N 0 PV1-V-1519 1 \N 0.00 \N \N 4195 1112 2 228.0 1 2020-10-13 18:34:19.582301 2020-10-13 18:34:19.582301 3164 \N \N \N 0 PV3-V-725 1 228.00 0.00 \N \N 4196 1112 2 3156.0 1 2020-10-13 21:28:44.910484 2020-10-13 21:28:44.910484 3165 \N \N \N 0 PV3-V-726 1 3176.00 20.00 \N \N 4198 1112 2 499.0 1 2020-10-14 00:32:29.433097 2020-10-14 00:32:29.433097 3167 \N \N \N 0 PV3-V-728 1 499.00 0.00 \N \N 4200 1112 2 129.0 1 2020-10-14 00:44:11.581925 2020-10-14 00:44:11.581925 3169 \N \N \N 6 PV3-V-730 0 129.00 0.00 \N \N 4201 1112 1 129.0 1 2020-10-14 00:45:15.928636 2020-10-14 00:45:15.964629 2475 1256 \N \N 3 \N 1 \N 0.00 \N \N 4202 1112 2 1599.0 1 2020-10-14 00:48:42.787176 2020-10-14 00:48:42.787176 3171 \N \N \N 0 PV3-V-732 1 1600.00 1.00 \N \N 4203 1114 2 369.0 1 2020-10-14 18:45:18.13881 2020-10-14 18:45:18.13881 3172 \N \N \N 0 PV1-V-1520 1 369.00 0.00 \N \N 4204 1115 2 2767.0 1 2020-10-14 19:34:04.12146 2020-10-14 19:34:04.12146 3173 \N \N \N 0 PV3-V-733 1 3000.00 233.00 \N \N 4205 1115 1 649.0 1 2020-10-14 23:07:54.417307 2020-10-14 23:07:54.417307 3174 4555 \N \N 0 PV3-V-734 1 \N 0.00 \N \N 4206 1115 2 1000.0 1 2020-10-14 23:15:56.031601 2020-10-14 23:15:56.031601 3155 \N \N \N 7 \N 1 1000.00 0.00 \N \N 4207 1114 2 1357.0 1 2020-10-14 23:17:32.292947 2020-10-14 23:17:32.292947 2999 \N \N \N 4 \N 1 1357.00 0.00 \N \N 4208 1115 3 649.0 1 2020-10-14 23:42:17.373309 2020-10-14 23:42:17.373309 3175 \N \N \N 0 PV3-V-735 1 \N 0.00 \N \N 2525252 4209 1114 2 599.0 1 2020-10-15 00:13:26.717135 2020-10-15 00:13:26.717135 3176 \N \N \N 0 PV1-V-1521 1 599.00 0.00 \N \N 4210 1114 2 600.0 1 2020-10-15 00:23:10.339563 2020-10-15 00:23:10.339563 3177 \N \N \N 0 PV1-V-1522 1 600.00 0.00 \N \N 4211 1116 2 999.0 1 2020-10-15 18:10:26.889956 2020-10-15 18:10:26.889956 3180 \N \N \N 0 PV1-V-1523 1 999.00 0.00 \N \N 4212 1117 2 500.0 1 2020-10-15 18:35:37.434518 2020-10-15 18:35:37.434518 3181 \N \N \N 6 PV3-V-738 1 500.00 0.00 \N \N 4213 1117 2 529.0 1 2020-10-15 18:40:24.065464 2020-10-15 18:40:24.065464 3182 \N \N \N 0 PV3-V-739 1 529.00 0.00 \N \N 4214 1116 2 1219.0 1 2020-10-15 18:57:51.521332 2020-10-15 18:57:51.521332 3183 \N \N \N 0 PV1-V-1524 1 1219.00 0.00 \N \N 4215 1116 2 799.0 1 2020-10-15 18:59:28.043251 2020-10-15 18:59:28.043251 3160 \N \N \N 7 \N 1 799.00 0.00 \N \N 4216 1117 1 1568.0 1 2020-10-15 19:37:26.051399 2020-10-15 19:37:26.051399 3184 2636 \N \N 0 PV3-V-740 1 \N 0.00 \N \N 4217 1117 2 500.0 1 2020-10-15 19:51:14.869372 2020-10-15 19:51:14.869372 3033 \N \N \N 4 \N 1 500.00 0.00 \N \N 4218 1117 3 599.0 1 2020-10-15 20:45:00.893565 2020-10-15 20:45:00.893565 2931 \N \N \N 7 \N 1 \N 0.00 \N \N 4555 4219 1117 2 149.0 1 2020-10-15 21:20:35.360291 2020-10-15 21:20:35.360291 3185 \N \N \N 0 PV3-V-741 1 149.00 0.00 \N \N 4220 1117 2 500.0 1 2020-10-15 21:54:56.931428 2020-10-15 21:54:56.931428 3186 \N \N \N 0 PV3-V-742 1 500.00 0.00 \N \N 4221 1117 2 1399.0 1 2020-10-15 21:55:27.197863 2020-10-15 21:55:27.197863 3187 \N \N \N 0 PV3-V-743 1 1500.00 101.00 \N \N 4222 1116 1 500.0 1 2020-10-15 22:03:00.748309 2020-10-15 22:03:00.748309 3188 9142 \N \N 0 PV1-V-1525 1 \N 0.00 \N \N 4223 1116 4 879.0 1 2020-10-15 22:03:37.972236 2020-10-15 22:03:37.972236 3188 687 \N \N 0 PV1-V-1525 1 \N 0.00 \N \N 4224 1116 2 220.0 1 2020-10-15 22:04:21.910417 2020-10-15 22:04:21.910417 3188 \N \N \N 0 PV1-V-1525 1 220.00 0.00 \N \N 4225 1116 1 599.0 1 2020-10-15 22:25:58.699198 2020-10-15 22:25:58.699198 3189 9894 \N \N 0 PV1-V-1526 1 \N 0.00 \N \N 4226 1117 1 1700.0 1 2020-10-15 22:32:19.846926 2020-10-15 22:32:19.899416 2604 1555 \N \N 3 \N 1 \N 0.00 \N \N 5221 4227 1117 1 540.0 1 2020-10-15 22:34:08.409461 2020-10-15 22:34:08.466838 3179 1225 \N \N 3 \N 1 \N 0.00 \N \N 4228 1117 1 1000.0 1 2020-10-15 22:35:34.491599 2020-10-15 22:35:34.537933 2663 1226 \N \N 3 \N 1 \N 0.00 \N \N 4229 1117 1 400.0 1 2020-10-15 22:37:29.280021 2020-10-15 22:37:29.330061 2517 1212 \N \N 3 \N 1 \N 0.00 \N \N 4230 1117 1 800.0 1 2020-10-15 22:43:09.133171 2020-10-15 22:43:09.197842 3067 1222 \N \N 3 \N 1 \N 0.00 \N \N 4232 1117 3 1799.0 1 2020-10-15 23:17:45.670837 2020-10-15 23:17:45.670837 3191 \N \N \N 0 PV3-V-745 1 \N 0.00 \N \N 1225 4233 1117 2 1098.0 1 2020-10-15 23:20:13.365754 2020-10-15 23:20:13.365754 3192 \N \N \N 0 PV3-V-746 1 1100.00 2.00 \N \N 4234 1117 1 999.0 1 2020-10-15 23:39:18.757372 2020-10-15 23:39:18.757372 3040 1226 \N \N 7 \N 1 \N 0.00 \N \N 4235 1117 1 500.0 1 2020-10-15 23:47:51.792449 2020-10-15 23:47:51.792449 3193 1202 \N \N 6 PV3-V-747 1 \N 0.00 \N \N 4236 1116 1 500.0 1 2020-10-16 00:36:13.557994 2020-10-16 00:36:13.557994 3195 0 \N \N 6 PV1-V-1528 1 \N 0.00 \N \N 4237 1117 2 899.0 1 2020-10-16 01:22:45.877384 2020-10-16 01:22:45.877384 3196 \N \N \N 0 PV3-V-748 1 899.00 0.00 \N \N 4238 1117 3 1799.0 1 2020-10-16 01:35:28.569856 2020-10-16 01:35:28.569856 3197 \N \N \N 0 PV3-V-749 1 \N 0.00 \N \N 22225 4239 1117 3 1067.0 1 2020-10-16 02:04:55.536673 2020-10-16 02:04:55.536673 3073 \N \N \N 7 \N 1 \N 0.00 \N \N 12233 4240 1117 1 534.0 1 2020-10-16 02:12:28.82839 2020-10-16 02:12:28.867081 3067 1223 \N \N 3 \N 1 \N 0.00 \N \N 4241 1118 2 200.0 1 2020-10-16 16:29:37.060917 2020-10-16 16:29:37.060917 2879 \N \N \N 4 \N 1 200.00 0.00 \N \N 4242 1118 2 899.0 1 2020-10-16 18:01:21.819315 2020-10-16 18:01:21.819315 3198 \N \N \N 0 PV1-V-1529 1 899.00 0.00 \N \N 4243 1119 2 1399.0 1 2020-10-16 18:48:33.153425 2020-10-16 18:48:33.153425 3199 \N \N \N 0 PV3-V-750 1 1399.00 0.00 \N \N 4244 1118 2 180.0 0 2020-10-16 19:37:43.468638 2020-10-16 19:37:43.468638 \N \N \N 343 2 \N 1 \N \N \N \N 4245 1119 1 3298.0 1 2020-10-16 21:12:07.445265 2020-10-16 21:12:07.445265 3200 2225 \N \N 0 PV3-V-751 1 \N 0.00 \N \N 4246 1119 2 300.0 1 2020-10-16 23:45:17.810055 2020-10-16 23:45:17.810055 3201 \N \N \N 0 PV3-V-752 1 300.00 0.00 \N \N 4247 1119 2 999.0 1 2020-10-16 23:45:50.20371 2020-10-16 23:45:50.20371 3181 \N \N \N 7 \N 1 999.00 0.00 \N \N 4248 1119 2 399.0 1 2020-10-17 00:12:17.904983 2020-10-17 00:12:17.904983 3039 \N \N \N 7 \N 1 399.00 0.00 \N \N 4249 1119 1 300.0 1 2020-10-17 00:15:59.79627 2020-10-17 00:15:59.79627 3202 4444 \N \N 6 PV3-V-753 1 \N 0.00 \N \N 4250 1119 2 1499.0 1 2020-10-17 00:41:29.253073 2020-10-17 00:41:29.253073 3204 \N \N \N 0 PV3-V-755 1 1499.00 0.00 \N \N 4251 1120 2 928.0 1 2020-10-17 16:58:04.203111 2020-10-17 16:58:04.203111 3205 \N \N \N 0 PV1-V-1530 1 1000.00 72.00 \N \N 4252 1120 1 500.0 1 2020-10-17 17:52:32.846766 2020-10-17 17:52:32.890577 2888 1122 \N \N 3 \N 1 \N 0.00 \N \N 4253 1121 1 499.0 1 2020-10-17 17:58:34.981676 2020-10-17 17:58:34.981676 3206 402 \N \N 0 PV3-V-756 1 \N 0.00 \N \N 4254 1120 2 2598.0 1 2020-10-17 19:27:12.976485 2020-10-17 19:27:12.976485 3207 \N \N \N 0 PV1-V-1531 1 2600.00 2.00 \N \N 4255 1121 2 147.0 1 2020-10-17 20:10:41.655641 2020-10-17 20:10:41.655641 3208 \N \N \N 0 PV3-V-757 1 147.00 0.00 \N \N 4256 1120 2 899.0 0 2020-10-17 20:12:08.810798 2020-10-17 20:12:08.810798 3198 \N \N \N 0 PV1-V-1529 1 \N \N \N \N 4257 1120 3 788.0 1 2020-10-17 20:15:31.10127 2020-10-17 20:15:31.10127 3210 \N \N \N 0 PV1-V-1533 1 \N 0.00 \N \N 22255 4258 1120 2 980.0 1 2020-10-17 21:21:51.121483 2020-10-17 21:21:51.121483 3211 \N \N \N 0 PV1-V-1534 1 1000.00 20.00 \N \N 4259 1120 1 1200.0 1 2020-10-17 22:02:27.162856 2020-10-17 22:02:27.162856 3212 7829 \N \N 0 PV1-V-1535 1 \N 0.00 \N \N 4260 1121 2 499.0 1 2020-10-17 22:11:18.479023 2020-10-17 22:11:18.479023 3213 \N \N \N 0 PV3-V-758 1 499.00 0.00 \N \N 4261 1121 1 500.0 1 2020-10-18 00:21:35.408184 2020-10-18 00:21:35.408184 3214 2050 \N \N 6 PV3-V-759 1 \N 0.00 \N \N 4262 1123 4 174.0 1 2020-10-19 21:03:10.666948 2020-10-19 21:03:10.666948 3089 51 \N \N 7 \N 1 \N 0.00 \N \N 4263 1123 4 189.0 1 2020-10-19 21:18:09.128127 2020-10-19 21:18:09.128127 3215 51 \N \N 0 PV1-V-1536 1 \N 0.00 \N \N 4264 1124 2 469.0 1 2020-10-19 22:55:27.328349 2020-10-19 22:55:27.328349 3216 \N \N \N 6 PV3-V-760 1 500.00 31.00 \N \N 4265 1124 2 49.0 1 2020-10-20 00:56:34.351369 2020-10-20 00:56:34.351369 3217 \N \N \N 0 PV3-V-761 1 50.00 1.00 \N \N 4266 1125 2 1088.0 1 2020-10-20 17:43:39.796665 2020-10-20 17:43:39.796665 3218 \N \N \N 0 PV1-V-1537 1 1088.00 0.00 \N \N 4267 1126 3 300.0 1 2020-10-20 19:58:02.296475 2020-10-20 19:58:02.296475 2957 \N \N \N 4 \N 1 \N 0.00 \N \N 2255 4268 1126 2 420.0 1 2020-10-20 22:37:30.15846 2020-10-20 22:37:30.15846 3219 \N \N \N 0 PV3-V-762 1 500.00 80.00 \N \N 4270 1125 2 999.0 1 2020-10-20 23:55:34.951376 2020-10-20 23:55:34.951376 3221 \N \N \N 0 PV1-V-1539 1 999.00 0.00 \N \N 4271 1125 1 1029.0 1 2020-10-20 23:58:23.109536 2020-10-20 23:58:23.109536 3222 3324 \N \N 0 PV1-V-1540 1 \N 0.00 \N \N 4272 1125 2 300.0 1 2020-10-21 00:19:03.050732 2020-10-21 00:19:03.050732 3223 \N \N \N 0 PV1-V-1541 1 300.00 0.00 \N \N 4273 1127 1 529.0 1 2020-10-21 22:24:11.384121 2020-10-21 22:24:11.384121 3224 7306 \N \N 0 PV1-V-1542 1 \N 0.00 \N \N 4274 1128 2 1499.0 1 2020-10-21 23:49:14.129052 2020-10-21 23:49:14.129052 3225 \N \N \N 0 PV3-V-763 1 1499.00 0.00 \N \N 4275 1128 2 999.0 1 2020-10-21 23:52:51.584766 2020-10-21 23:52:51.584766 3226 \N \N \N 0 PV3-V-764 1 999.00 0.00 \N \N 4276 1128 1 400.0 1 2020-10-22 00:01:13.453691 2020-10-22 00:01:13.453691 3227 5554 \N \N 6 PV3-V-765 1 \N 0.00 \N \N 4277 1130 2 1499.0 1 2020-10-22 20:52:30.773489 2020-10-22 20:52:30.773489 3228 \N \N \N 0 PV3-V-766 1 1500.00 1.00 \N \N 4278 1129 2 699.0 1 2020-10-22 22:28:47.388507 2020-10-22 22:28:47.388507 3229 \N \N \N 0 PV1-V-1543 1 699.00 0.00 \N \N 4279 1130 1 500.0 1 2020-10-22 23:33:57.577366 2020-10-22 23:33:57.577366 2945 1222 \N \N 4 \N 1 \N 0.00 \N \N 4280 1130 1 1499.0 1 2020-10-22 23:39:29.354883 2020-10-22 23:39:29.354883 3230 1525 \N \N 0 PV3-V-767 1 \N 0.00 \N \N 4281 1130 2 1799.0 1 2020-10-22 23:48:43.204646 2020-10-22 23:48:43.204646 3231 \N \N \N 0 PV3-V-768 1 2000.00 201.00 \N \N 4283 1130 2 500.0 1 2020-10-23 00:27:31.984725 2020-10-23 00:27:31.984725 3233 \N \N \N 6 PV3-V-770 1 500.00 0.00 \N \N 4284 1130 3 400.0 1 2020-10-23 01:03:30.666886 2020-10-23 01:03:30.666886 3234 \N \N \N 0 PV3-V-771 1 \N 0.00 \N \N 1122 4285 1130 2 799.0 1 2020-10-23 01:03:38.290148 2020-10-23 01:03:38.290148 3234 \N \N \N 0 PV3-V-771 1 799.00 0.00 \N \N 1122 4286 1131 4 349.0 1 2020-10-23 16:36:46.412653 2020-10-23 16:36:46.412653 3020 7355 \N \N 7 \N 1 \N 0.00 \N \N 4287 1131 2 300.0 1 2020-10-23 18:02:36.645132 2020-10-23 18:02:36.6819 2888 \N \N \N 3 \N 1 300.00 0.00 \N \N 4288 1132 1 500.0 1 2020-10-23 18:56:38.935131 2020-10-23 18:56:38.935131 3235 1225 \N \N 6 PV3-V-772 1 \N 0.00 \N \N 4290 1132 3 899.0 1 2020-10-23 19:02:48.555712 2020-10-23 19:02:48.555712 2951 \N \N \N 7 \N 1 \N 0.00 \N \N 1122 4291 1132 1 3283.0 1 2020-10-23 21:09:02.937375 2020-10-23 21:09:02.937375 3237 1255 \N \N 0 PV3-V-774 1 \N 0.00 \N \N 4292 1132 2 699.0 1 2020-10-23 21:35:36.573703 2020-10-23 21:35:36.573703 3238 \N \N \N 0 PV3-V-775 1 1000.00 301.00 \N \N 4293 1132 2 49.0 1 2020-10-23 21:36:18.713749 2020-10-23 21:36:18.713749 3239 \N \N \N 0 PV3-V-776 1 301.00 252.00 \N \N 4294 1132 2 1799.0 1 2020-10-23 22:09:00.825418 2020-10-23 22:09:00.825418 3240 \N \N \N 0 PV3-V-777 1 1900.00 101.00 \N \N 4295 1132 1 1398.0 1 2020-10-23 22:12:43.490581 2020-10-23 22:12:43.490581 3241 1125 \N \N 0 PV3-V-778 1 \N 0.00 \N \N 4297 1132 2 1099.0 1 2020-10-23 23:02:17.094364 2020-10-23 23:02:17.094364 2831 \N \N \N 7 \N 1 1099.00 0.00 \N \N 4298 1132 2 401.0 1 2020-10-23 23:05:38.500288 2020-10-23 23:05:38.500288 3243 \N \N \N 6 PV3-V-780 1 401.00 0.00 \N \N 4299 1131 2 799.0 1 2020-10-23 23:36:34.533547 2020-10-23 23:36:34.533547 3244 \N \N \N 0 PV1-V-1544 1 799.00 0.00 \N \N 4300 1131 1 549.0 1 2020-10-23 23:52:25.845018 2020-10-23 23:52:25.845018 3245 8661 \N \N 0 PV1-V-1545 1 \N 0.00 \N \N 4301 1131 2 20.0 1 2020-10-23 23:52:38.700396 2020-10-23 23:52:38.700396 3245 \N \N \N 0 PV1-V-1545 1 20.00 0.00 \N \N 4304 1131 1 1000.0 1 2020-10-24 00:27:13.058623 2020-10-24 00:27:13.058623 3247 3342 \N \N 0 PV1-V-1547 1 \N 0.00 \N \N 4305 1131 2 349.0 1 2020-10-24 00:53:59.370078 2020-10-24 00:53:59.370078 3247 \N \N \N 0 PV1-V-1547 1 349.00 0.00 \N \N 4306 1131 2 180.0 0 2020-10-24 00:55:58.262869 2020-10-24 00:55:58.262869 \N \N \N 344 2 \N 1 \N \N \N \N 4307 1133 1 699.0 1 2020-10-24 01:18:31.621817 2020-10-24 01:18:31.621817 3248 4225 \N \N 0 PV3-V-781 1 \N 0.00 \N \N 4308 1133 2 499.0 1 2020-10-24 18:08:56.9578 2020-10-24 18:08:56.9578 3249 \N \N \N 0 PV3-V-782 1 500.00 1.00 \N \N 4309 1134 2 3098.0 1 2020-10-24 18:18:18.20066 2020-10-24 18:18:18.20066 3250 \N \N \N 0 PV1-V-1548 1 3098.00 0.00 \N \N 4310 1133 1 1099.0 1 2020-10-24 19:03:15.034702 2020-10-24 19:03:15.034702 3251 1243 \N \N 0 PV3-V-783 1 \N 0.00 \N \N 4311 1133 2 2998.0 1 2020-10-24 20:16:16.32261 2020-10-24 20:16:16.32261 3252 \N \N \N 0 PV3-V-784 1 3000.00 2.00 \N \N 4312 1134 3 1848.0 1 2020-10-24 20:27:53.523182 2020-10-24 20:27:53.523182 3253 \N \N \N 0 PV1-V-1549 1 \N 0.00 \N \N Sam 4313 1133 2 569.0 1 2020-10-24 22:34:43.582019 2020-10-24 22:34:43.582019 3254 \N \N \N 0 PV3-V-785 1 569.00 0.00 \N \N 4314 1133 2 700.0 1 2020-10-24 23:02:28.295889 2020-10-24 23:02:28.295889 3255 \N \N \N 6 PV3-V-786 1 700.00 0.00 \N \N 4315 1134 2 300.0 1 2020-10-24 23:50:43.298629 2020-10-24 23:50:43.298629 3256 \N \N \N 6 PV1-V-1550 1 300.00 0.00 \N \N 4316 1134 1 1000.0 1 2020-10-24 23:56:18.330738 2020-10-24 23:56:18.330738 3257 0 \N \N 6 PV1-V-1551 1 \N 0.00 \N \N 4317 1133 2 1399.0 1 2020-10-24 23:59:42.309029 2020-10-24 23:59:42.309029 3258 \N \N \N 0 PV3-V-787 1 1500.00 101.00 \N \N 4318 1133 2 400.0 0 2020-10-25 01:37:07.988277 2020-10-25 01:37:07.988277 \N \N \N 345 2 \N 1 \N \N \N \N 4320 1135 2 80.0 1 2020-10-26 19:43:00.188131 2020-10-26 19:43:00.188131 3260 \N \N \N 6 PV3-V-789 0 100.00 20.00 \N \N 4321 1136 2 1799.0 1 2020-10-26 20:36:29.135935 2020-10-26 20:36:29.135935 3261 \N \N \N 0 PV1-V-1552 1 1799.00 0.00 \N \N 4322 1136 4 369.0 1 2020-10-26 20:58:40.188491 2020-10-26 20:58:40.188491 3262 4882 \N \N 0 PV1-V-1553 1 \N 0.00 \N \N 4323 1136 2 250.0 1 2020-10-26 21:20:51.744615 2020-10-26 21:20:51.744615 3263 \N \N \N 0 PV1-V-1554 1 250.00 0.00 \N \N 4324 1135 2 499.0 1 2020-10-26 21:22:54.842348 2020-10-26 21:22:54.842348 3264 \N \N \N 0 PV3-V-790 1 499.00 0.00 \N \N 4325 1135 2 1499.0 1 2020-10-26 21:35:32.767758 2020-10-26 21:35:32.767758 3265 \N \N \N 0 PV3-V-791 1 1500.00 1.00 \N \N 4327 1135 2 2299.0 1 2020-10-26 22:26:58.034896 2020-10-26 22:26:58.034896 3266 \N \N \N 0 PV3-V-792 1 2299.00 0.00 \N \N 4328 1135 3 1200.0 1 2020-10-26 22:28:12.336226 2020-10-26 22:28:12.393033 3179 \N \N \N 3 \N 1 \N 0.00 \N \N 247 4329 1135 3 1000.0 1 2020-10-26 22:28:45.806452 2020-10-26 22:28:45.838845 2503 \N \N \N 3 \N 1 \N 0.00 \N \N 7431 4330 1135 3 300.0 1 2020-10-26 22:29:20.809709 2020-10-26 22:29:20.839976 1667 \N \N \N 3 \N 1 \N 0.00 \N \N 8438 4331 1136 2 1799.0 1 2020-10-26 23:11:57.808772 2020-10-26 23:11:57.808772 3267 \N \N \N 0 PV1-V-1555 1 1799.00 0.00 \N \N 4332 1136 1 3598.0 1 2020-10-26 23:26:46.114511 2020-10-26 23:26:46.114511 3268 1034 \N \N 0 PV1-V-1556 1 \N 0.00 \N \N 4333 1136 2 479.0 1 2020-10-26 23:39:01.45368 2020-10-26 23:39:01.45368 3269 \N \N \N 0 PV1-V-1557 1 479.00 0.00 \N \N 4334 1136 2 799.0 1 2020-10-26 23:51:16.757763 2020-10-26 23:51:16.757763 3270 \N \N \N 0 PV1-V-1558 1 799.00 0.00 \N \N 4335 1136 2 999.0 1 2020-10-27 00:04:44.463657 2020-10-27 00:04:44.463657 3271 \N \N \N 0 PV1-V-1559 1 999.00 0.00 \N \N 4336 1136 1 1498.0 1 2020-10-27 00:04:58.802931 2020-10-27 00:04:58.802931 3271 5586 \N \N 0 PV1-V-1559 1 \N 0.00 \N \N 4338 1135 1 369.0 1 2020-10-27 01:11:08.553846 2020-10-27 01:11:08.553846 3272 8441 \N \N 0 PV3-V-793 1 \N 0.00 \N \N 4339 1138 2 2000.0 1 2020-10-27 20:15:33.911502 2020-10-27 20:15:33.911502 3273 \N \N \N 6 PV3-V-794 1 2000.00 0.00 \N \N 4340 1137 4 1599.0 1 2020-10-27 23:00:55.950274 2020-10-27 23:00:55.950274 3275 141 \N \N 0 PV1-V-1561 1 \N 0.00 \N \N 4341 1137 2 669.0 1 2020-10-27 23:23:19.518895 2020-10-27 23:23:19.518895 3276 \N \N \N 0 PV1-V-1562 1 669.00 0.00 \N \N 4342 1137 3 799.0 1 2020-10-28 01:49:15.830254 2020-10-28 01:49:15.830254 3257 \N \N \N 7 \N 1 \N 0.00 \N \N SAM 4343 1139 2 5796.0 1 2020-10-28 20:53:29.36007 2020-10-28 20:53:29.36007 3277 \N \N \N 0 PV1-V-1563 1 5796.00 0.00 \N \N 4344 1140 2 799.0 1 2020-10-29 00:55:12.270474 2020-10-29 00:55:12.270474 3273 \N \N \N 4 \N 1 799.00 0.00 \N \N 4345 1139 2 969.0 1 2020-10-29 01:41:47.044435 2020-10-29 01:41:47.044435 3278 \N \N \N 0 PV1-V-1564 1 969.00 0.00 \N \N 4346 1141 2 1799.0 1 2020-10-29 20:06:54.605508 2020-10-29 20:06:54.605508 3279 \N \N \N 0 PV3-V-795 1 2000.00 201.00 \N \N 4347 1141 2 3598.0 1 2020-10-29 20:10:53.547719 2020-10-29 20:10:53.547719 3280 \N \N \N 0 PV3-V-796 1 3598.00 0.00 \N \N 4348 1141 4 1499.0 1 2020-10-29 20:29:09.437807 2020-10-29 20:29:09.437807 3281 5222 \N \N 0 PV3-V-797 1 \N 0.00 \N \N 4349 1141 3 299.0 1 2020-10-29 23:26:34.796902 2020-10-29 23:26:34.845117 2888 \N \N \N 3 \N 1 \N 0.00 \N \N 5655 4350 1142 2 699.0 1 2020-10-30 00:59:30.72702 2020-10-30 00:59:30.72702 3045 \N \N \N 7 \N 1 699.00 0.00 \N \N 4351 1142 2 669.0 1 2020-10-30 01:01:02.18078 2020-10-30 01:01:02.18078 3046 \N \N \N 7 \N 1 669.00 0.00 \N \N 4352 1141 1 769.0 1 2020-10-30 01:25:45.112449 2020-10-30 01:25:45.112449 3282 4212 \N \N 0 PV3-V-798 1 \N 0.00 \N \N 4353 1141 3 1919.0 1 2020-10-30 02:05:46.053083 2020-10-30 02:05:46.053083 3283 \N \N \N 0 PV3-V-799 1 \N 0.00 \N \N 1225 4354 1143 3 2798.0 1 2020-10-30 02:11:41.538286 2020-10-30 02:11:41.538286 3284 \N \N \N 0 PV1-V-1565 1 \N 0.00 \N \N Sam 4355 1144 2 200.0 1 2020-10-30 17:20:05.096906 2020-10-30 17:20:05.096906 2879 \N \N \N 4 \N 1 200.00 0.00 \N \N 4356 1144 2 889.0 1 2020-10-30 17:44:59.103127 2020-10-30 17:44:59.103127 3077 \N \N \N 7 \N 1 889.00 0.00 \N \N 4357 1145 1 1998.0 1 2020-10-30 19:04:46.879149 2020-10-30 19:04:46.879149 3286 5245 \N \N 0 PV3-V-801 1 \N 0.00 \N \N 4358 1144 2 188.0 1 2020-10-30 19:43:15.518038 2020-10-30 19:43:15.518038 3287 \N \N \N 0 PV1-V-1566 1 188.00 0.00 \N \N 4360 1145 2 1000.0 1 2020-10-30 21:05:33.815778 2020-10-30 21:05:33.815778 3288 \N \N \N 6 PV3-V-802 1 1000.00 0.00 \N \N 4361 1145 1 999.0 1 2020-10-30 23:09:29.428294 2020-10-30 23:09:29.428294 3289 522 \N \N 0 PV3-V-803 1 \N 0.00 \N \N 4362 1145 3 500.0 1 2020-10-30 23:28:24.680405 2020-10-30 23:28:24.733462 2905 \N \N \N 3 \N 1 \N 0.00 \N \N 585 4363 1144 2 300.0 1 2020-10-30 23:29:15.369739 2020-10-30 23:29:15.369739 3290 \N \N \N 0 PV1-V-1567 1 300.00 0.00 \N \N 4364 1144 1 3198.0 1 2020-10-30 23:29:30.107382 2020-10-30 23:29:30.107382 3290 4804 \N \N 0 PV1-V-1567 1 \N 0.00 \N \N 4365 1144 2 1510.0 0 2020-10-31 00:45:14.19413 2020-10-31 00:45:14.19413 \N \N \N 346 2 \N 1 \N \N \N \N 4366 1144 2 180.0 0 2020-10-31 00:45:39.449806 2020-10-31 00:45:39.449806 \N \N \N 347 2 \N 1 \N \N \N \N 4367 1144 1 1499.0 1 2020-10-31 01:26:46.88837 2020-10-31 01:26:46.88837 3292 69 \N \N 0 PV1-V-1568 1 \N 0.00 \N \N 4368 1145 2 899.0 1 2020-10-31 01:27:08.584825 2020-10-31 01:27:08.584825 3291 \N \N \N 0 PV3-V-804 1 1000.00 101.00 \N \N 4369 1144 2 4396.0 1 2020-10-31 01:30:17.196484 2020-10-31 01:30:17.196484 3293 \N \N \N 0 PV1-V-1569 1 4500.00 104.00 \N \N 4370 1145 2 1000.0 1 2020-10-31 01:38:18.089264 2020-10-31 01:38:18.089264 3294 \N \N \N 6 PV3-V-805 1 1000.00 0.00 \N \N 4371 1146 2 1599.0 1 2020-10-31 19:24:22.344724 2020-10-31 19:24:22.344724 3295 \N \N \N 0 PV3-V-806 1 1600.00 1.00 \N \N 4372 1146 2 379.0 1 2020-10-31 19:26:21.824488 2020-10-31 19:26:21.824488 3296 \N \N \N 0 PV3-V-807 1 379.00 0.00 \N \N 4373 1146 2 799.0 1 2020-10-31 19:39:03.084943 2020-10-31 19:39:03.084943 3288 \N \N \N 7 \N 1 799.00 0.00 \N \N 4376 1146 4 899.0 1 2020-10-31 20:56:26.758604 2020-10-31 20:56:26.758604 3298 0 \N \N 6 PV3-V-809 1 \N 0.00 \N \N 4377 1146 2 899.0 0 2020-10-31 20:59:01.653742 2020-10-31 20:59:01.653742 3291 \N \N \N 0 PV3-V-804 1 \N \N \N \N 4378 1147 2 159.0 1 2020-10-31 23:11:01.341596 2020-10-31 23:11:01.341596 3299 \N \N \N 0 PV1-V-1570 1 159.00 0.00 \N \N 4379 1147 2 629.0 1 2020-11-01 00:13:55.055036 2020-11-01 00:13:55.055036 3300 \N \N \N 0 PV1-V-1571 1 629.00 0.00 \N \N 4380 1146 2 499.0 1 2020-11-01 00:37:11.701803 2020-11-01 00:37:11.701803 3301 \N \N \N 0 PV3-V-810 1 500.00 1.00 \N \N 4381 1146 2 599.0 1 2020-11-01 01:44:43.783351 2020-11-01 01:44:43.783351 2991 \N \N \N 7 \N 0 599.00 0.00 \N \N 4382 1146 3 299.0 1 2020-11-01 01:47:51.018249 2020-11-01 01:47:51.018249 2957 \N \N \N 7 \N 1 \N 0.00 \N \N CENT 4383 1147 2 170.0 0 2020-11-01 01:57:29.151014 2020-11-01 01:57:29.151014 \N \N \N 348 2 \N 1 \N \N \N \N 4384 1146 2 800.0 0 2020-11-01 02:05:49.019757 2020-11-01 02:05:49.019757 \N \N \N 349 2 \N 1 \N \N \N \N 4385 1147 1 989.0 1 2020-11-01 02:12:52.468303 2020-11-01 02:12:52.468303 3302 8518 \N \N 0 PV1-V-1572 1 \N 0.00 \N \N 4386 1147 2 1788.0 1 2020-11-01 02:13:20.309466 2020-11-01 02:13:20.309466 3302 \N \N \N 0 PV1-V-1572 1 1788.00 0.00 \N \N 4387 1147 2 599.0 1 2020-11-01 02:15:41.779927 2020-11-01 02:15:41.779927 3303 \N \N \N 0 PV1-V-1573 1 599.00 0.00 \N \N 4388 1148 2 249.0 1 2020-11-01 19:55:16.061763 2020-11-01 19:55:16.061763 3304 \N \N \N 0 PV3-V-811 1 250.00 1.00 \N \N 4389 1150 2 1799.0 1 2020-11-02 19:08:30.03321 2020-11-02 19:08:30.03321 3305 \N \N \N 0 PV3-V-812 1 1800.00 1.00 \N \N 4390 1149 2 825.0 1 2020-11-02 20:59:12.156138 2020-11-02 20:59:12.156138 3306 \N \N \N 0 PV1-V-1574 1 825.00 0.00 \N \N 4391 1149 1 1119.0 1 2020-11-02 21:05:08.172217 2020-11-02 21:05:08.172217 3307 9495 \N \N 0 PV1-V-1575 1 \N 0.00 \N \N 4392 1150 2 159.0 1 2020-11-02 21:11:57.289761 2020-11-02 21:11:57.289761 3308 \N \N \N 0 PV3-V-813 1 500.00 341.00 \N \N 4393 1149 2 300.0 1 2020-11-02 23:28:53.787506 2020-11-02 23:28:53.787506 3309 \N \N \N 6 PV1-V-1576 1 300.00 0.00 \N \N 4394 1149 1 699.0 1 2020-11-03 00:00:20.864607 2020-11-03 00:00:20.864607 3310 8887 \N \N 0 PV1-V-1577 1 \N 0.00 \N \N 4395 1151 1 1399.0 1 2020-11-03 18:34:08.854723 2020-11-03 18:34:08.854723 3311 3592 \N \N 0 PV1-V-1578 1 \N 0.00 \N \N 4396 1151 2 1099.0 1 2020-11-03 19:08:43.780466 2020-11-03 19:08:43.780466 3309 \N \N \N 7 \N 1 1099.00 0.00 \N \N 4397 1151 3 600.0 1 2020-11-03 20:23:34.409991 2020-11-03 20:23:34.44635 3067 \N \N \N 3 \N 1 \N 0.00 \N \N SAM 4398 1152 2 499.0 1 2020-11-03 20:27:36.31288 2020-11-03 20:27:36.31288 3312 \N \N \N 0 PV3-V-814 1 1500.00 1001.00 \N \N 4399 1152 2 899.0 1 2020-11-03 21:47:25.834765 2020-11-03 21:47:25.834765 3233 \N \N \N 7 \N 1 900.00 1.00 \N \N 4400 1151 2 689.0 1 2020-11-03 22:36:08.195045 2020-11-03 22:36:08.195045 2993 \N \N \N 7 \N 1 689.00 0.00 \N \N 4401 1151 2 1178.0 1 2020-11-03 22:50:20.489194 2020-11-03 22:50:20.489194 3313 \N \N \N 0 PV1-V-1579 1 1200.00 22.00 \N \N 4402 1152 2 699.0 1 2020-11-03 23:49:08.982417 2020-11-03 23:49:08.982417 3314 \N \N \N 0 PV3-V-815 1 700.00 1.00 \N \N 4403 1152 2 1799.0 1 2020-11-04 01:15:18.955034 2020-11-04 01:15:18.955034 3315 \N \N \N 0 PV3-V-816 1 1800.00 1.00 \N \N 4404 1152 2 1199.0 1 2020-11-04 01:17:40.346048 2020-11-04 01:17:40.346048 3316 \N \N \N 0 PV3-V-815 1 1199.00 0.00 \N \N 4405 1152 2 699.0 1 2020-11-04 02:18:21.154052 2020-11-04 02:18:21.154052 3317 \N \N \N 0 PV3-V-818 1 699.00 0.00 \N \N 4406 1153 4 999.0 1 2020-11-04 20:50:12.860422 2020-11-04 20:50:12.860422 3214 1256 \N \N 7 \N 1 \N 0.00 \N \N 4407 1154 2 989.0 1 2020-11-04 21:32:28.050229 2020-11-04 21:32:28.050229 3318 \N \N \N 0 PV1-V-1580 1 989.00 0.00 \N \N 4408 1153 1 1199.0 1 2020-11-04 22:03:19.691426 2020-11-04 22:03:19.691426 3319 5556 \N \N 0 PV3-V-819 1 \N 0.00 \N \N 4409 1154 2 1199.0 1 2020-11-04 22:33:53.303862 2020-11-04 22:33:53.303862 3320 \N \N \N 0 PV1-V-1581 1 1199.00 0.00 \N \N 4410 1153 1 1799.0 1 2020-11-04 22:56:56.773159 2020-11-04 22:56:56.773159 3321 2566 \N \N 0 PV3-V-820 1 \N 0.00 \N \N 4412 1154 2 1488.0 1 2020-11-05 00:38:24.880964 2020-11-05 00:38:24.880964 3322 \N \N \N 0 PV1-V-1582 1 1488.00 0.00 \N \N 4413 1154 2 899.0 1 2020-11-05 01:02:15.179601 2020-11-05 01:02:15.179601 3323 \N \N \N 0 PV1-V-1583 1 899.00 0.00 \N \N 4414 1153 2 999.0 1 2020-11-05 02:13:23.797666 2020-11-05 02:13:23.797666 3324 \N \N \N 0 PV3-V-821 1 999.00 0.00 \N \N 4415 1156 1 1069.0 1 2020-11-05 20:00:35.265482 2020-11-05 20:00:35.265482 3325 5425 \N \N 0 PV3-V-822 1 \N 0.00 \N \N 4416 1155 2 999.0 1 2020-11-05 21:07:51.688673 2020-11-05 21:07:51.688673 3326 \N \N \N 0 PV1-V-1584 1 999.00 0.00 \N \N 4417 1156 1 2294.0 1 2020-11-05 21:22:02.672038 2020-11-05 21:22:02.672038 3327 5451 \N \N 0 PV3-V-823 1 \N 0.00 \N \N 4418 1156 2 169.0 1 2020-11-05 21:24:30.077413 2020-11-05 21:24:30.077413 3328 \N \N \N 0 PV3-V-824 1 200.00 31.00 \N \N 4419 1156 3 540.0 1 2020-11-05 21:28:38.896744 2020-11-05 21:28:38.92923 3179 \N \N \N 3 \N 1 \N 0.00 \N \N 5242 4420 1155 2 1099.0 1 2020-11-05 21:42:29.745543 2020-11-05 21:42:29.745543 3329 \N \N \N 0 PV1-V-1585 1 1099.00 0.00 \N \N 4421 1155 2 179.0 1 2020-11-05 21:57:37.850075 2020-11-05 21:57:37.850075 3330 \N \N \N 0 PV1-V-1586 1 179.00 0.00 \N \N 4422 1155 2 288.0 0 2020-11-05 22:10:49.719064 2020-11-05 22:10:49.719064 \N \N \N 350 2 \N 1 \N \N \N \N 4423 1155 2 811.0 1 2020-11-05 22:13:43.802814 2020-11-05 22:13:43.802814 3331 \N \N \N 0 PV1-V-1587 1 811.00 0.00 \N \N 4424 1156 2 1168.0 1 2020-11-05 22:23:49.50321 2020-11-05 22:23:49.50321 3332 \N \N \N 0 PV3-V-825 1 1168.00 0.00 \N \N 4425 1155 2 1169.0 1 2020-11-05 22:24:34.756852 2020-11-05 22:24:34.756852 3333 \N \N \N 0 PV1-V-1588 1 1169.00 0.00 \N \N 4426 1156 2 1697.0 1 2020-11-05 22:59:07.036771 2020-11-05 22:59:07.036771 3335 \N \N \N 0 PV3-V-827 1 2000.00 303.00 \N \N 4427 1155 4 2497.0 1 2020-11-05 23:15:48.435545 2020-11-05 23:15:48.435545 3336 4399 \N \N 0 PV1-V-1589 1 \N 0.00 \N \N 4428 1156 2 2998.0 1 2020-11-05 23:18:35.34126 2020-11-05 23:18:35.34126 3337 \N \N \N 0 PV3-V-828 1 3000.00 2.00 \N \N 4429 1156 2 1599.0 1 2020-11-06 00:43:19.323763 2020-11-06 00:43:19.323763 3338 \N \N \N 0 PV3-V-829 1 1599.00 0.00 \N \N 4430 1156 2 1799.0 1 2020-11-06 01:32:26.601041 2020-11-06 01:32:26.601041 3339 \N \N \N 0 PV3-V-830 1 1800.00 1.00 \N \N 4431 1158 2 300.0 1 2020-11-06 17:52:19.005823 2020-11-06 17:52:19.005823 3340 \N \N \N 6 PV1-V-1590 1 300.00 0.00 \N \N 4432 1157 2 500.0 1 2020-11-06 18:54:10.479978 2020-11-06 18:54:10.479978 3341 \N \N \N 6 PV3-V-831 1 500.00 0.00 \N \N 4433 1157 1 1427.0 1 2020-11-06 19:06:34.478759 2020-11-06 19:06:34.478759 3126 2255 \N \N 7 \N 1 \N 0.00 \N \N 4434 1157 2 500.0 1 2020-11-06 19:11:31.835903 2020-11-06 19:11:31.835903 3342 \N \N \N 6 PV3-V-832 1 500.00 0.00 \N \N 4435 1157 1 1389.0 1 2020-11-06 20:52:20.594785 2020-11-06 20:52:20.594785 3343 4425 \N \N 0 PV3-V-833 1 \N 0.00 \N \N 4436 1158 4 350.0 1 2020-11-06 22:04:31.344851 2020-11-06 22:04:31.344851 3344 2902 \N \N 0 PV1-V-1591 1 \N 0.00 \N \N 4437 1158 2 449.0 1 2020-11-06 22:04:38.625396 2020-11-06 22:04:38.625396 3344 \N \N \N 0 PV1-V-1591 1 449.00 0.00 \N \N 4438 1158 2 180.0 0 2020-11-06 22:31:01.219753 2020-11-06 22:31:01.219753 \N \N \N 351 2 \N 1 \N \N \N \N 4439 1157 2 1508.0 1 2020-11-06 22:48:53.337335 2020-11-06 22:48:53.337335 3345 \N \N \N 0 PV3-V-834 1 1508.00 0.00 \N \N 4440 1157 2 787.0 1 2020-11-06 22:52:03.042959 2020-11-06 22:52:03.042959 3346 \N \N \N 0 PV3-V-835 1 787.00 0.00 \N \N 4441 1157 2 500.0 1 2020-11-06 23:00:25.64981 2020-11-06 23:00:25.64981 3347 \N \N \N 6 PV3-V-836 1 500.00 0.00 \N \N 4442 1157 1 499.0 1 2020-11-07 00:02:06.475172 2020-11-07 00:02:06.475172 3348 5522 \N \N 0 PV3-V-837 1 \N 0.00 \N \N 4443 1157 2 238.0 1 2020-11-07 00:24:02.06547 2020-11-07 00:24:02.06547 3349 \N \N \N 0 PV3-V-838 1 300.00 62.00 \N \N 4444 1158 1 1699.0 1 2020-11-07 00:26:09.134379 2020-11-07 00:26:09.134379 3350 8036 \N \N 0 PV1-V-1592 1 \N 0.00 \N \N 4445 1157 3 2299.0 1 2020-11-07 00:51:49.13288 2020-11-07 00:51:49.13288 3351 \N \N \N 0 PV3-V-839 1 \N 0.00 \N \N 1425 4446 1157 3 1199.0 1 2020-11-07 00:53:09.990394 2020-11-07 00:53:09.990394 3352 \N \N \N 0 PV3-V-840 1 \N 0.00 \N \N 1221 4447 1159 2 1799.0 1 2020-11-07 02:08:43.433205 2020-11-07 02:08:43.433205 3353 \N \N \N 0 PV1-V-1593 1 1799.00 0.00 \N \N 4448 1157 2 1099.0 1 2020-11-07 02:19:23.166014 2020-11-07 02:19:23.166014 3193 \N \N \N 7 \N 1 1099.00 0.00 \N \N 4449 1157 2 1249.0 1 2020-11-07 02:25:25.225528 2020-11-07 02:25:25.225528 3354 \N \N \N 0 PV3-V-841 1 1250.00 1.00 \N \N 4450 1157 2 899.0 1 2020-11-07 02:36:17.054168 2020-11-07 02:36:17.054168 3355 \N \N \N 0 PV3-V-842 1 900.00 1.00 \N \N 4451 1160 4 699.0 1 2020-11-07 17:53:06.532325 2020-11-07 17:53:06.532325 3356 5626 \N \N 0 PV1-V-1594 1 \N 0.00 \N \N 4452 1160 1 700.0 1 2020-11-07 19:12:48.097385 2020-11-07 19:12:48.097385 3357 2075 \N \N 6 PV1-V-1595 1 \N 0.00 \N \N 4453 1160 1 200.0 1 2020-11-07 19:15:50.893487 2020-11-07 19:15:50.893487 3358 2585 \N \N 6 PV1-V-1596 1 \N 0.00 \N \N 4454 1160 2 698.0 1 2020-11-07 19:55:32.294205 2020-11-07 19:55:32.294205 3359 \N \N \N 0 PV1-V-1597 1 698.00 0.00 \N \N 4455 1160 3 999.0 1 2020-11-07 19:57:51.511116 2020-11-07 19:57:51.511116 3360 \N \N \N 0 PV1-V-1598 1 \N 0.00 \N \N SERVICIO A DOMICILIO 4456 1160 2 300.0 1 2020-11-07 20:55:01.150826 2020-11-07 20:55:01.150826 3361 \N \N \N 6 PV1-V-1599 1 300.00 0.00 \N \N 4457 1160 2 1947.0 1 2020-11-07 22:36:22.953837 2020-11-07 22:36:22.953837 3362 \N \N \N 0 PV1-V-1600 1 2000.00 53.00 \N \N 4458 1160 2 2046.0 0 2020-11-07 23:53:30.636547 2020-11-07 23:53:30.636547 \N \N \N 352 2 \N 1 \N \N \N \N 4460 1160 1 1798.0 1 2020-11-08 00:21:42.952504 2020-11-08 00:21:42.952504 3364 8499 \N \N 0 PV1-V-1602 1 \N 0.00 \N \N 4461 1160 2 200.0 1 2020-11-08 00:21:48.783494 2020-11-08 00:21:48.783494 3364 \N \N \N 0 PV1-V-1602 1 200.00 0.00 \N \N 4462 1160 2 500.0 1 2020-11-08 01:02:49.732948 2020-11-08 01:02:49.732948 3365 \N \N \N 6 PV1-V-1603 1 500.00 0.00 \N \N 4463 1160 2 200.0 1 2020-11-08 01:07:17.181559 2020-11-08 01:07:17.181559 3366 \N \N \N 6 PV1-V-1604 1 200.00 0.00 \N \N 4464 1161 1 4344.0 1 2020-11-08 02:12:25.851516 2020-11-08 02:12:25.851516 3367 5214 \N \N 0 PV3-V-843 1 \N 0.00 \N \N 4465 1162 1 1799.0 1 2020-11-09 19:31:42.763676 2020-11-09 19:31:42.763676 3368 9539 \N \N 0 PV1-V-1605 1 \N 0.00 \N \N 4466 1162 2 1199.0 1 2020-11-09 19:35:37.040534 2020-11-09 19:35:37.040534 3369 \N \N \N 0 PV1-V-1606 1 1199.00 0.00 \N \N 4467 1162 1 999.0 1 2020-11-09 21:44:55.622339 2020-11-09 21:44:55.622339 3370 7572 \N \N 0 PV1-V-1607 1 \N 0.00 \N \N 4468 1163 2 400.0 1 2020-11-09 23:11:21.782911 2020-11-09 23:11:21.782911 3371 \N \N \N 6 PV3-V-844 1 400.00 0.00 \N \N 4469 1163 2 400.0 1 2020-11-09 23:44:07.080123 2020-11-09 23:44:07.080123 3372 \N \N \N 6 PV3-V-845 1 400.00 0.00 \N \N 4470 1162 2 2500.0 1 2020-11-09 23:57:36.562256 2020-11-09 23:57:36.562256 3373 \N \N \N 3 \N 1 2500.00 0.00 \N \N 4471 1162 2 1549.0 1 2020-11-10 00:01:46.854663 2020-11-10 00:01:46.854663 3374 \N \N \N 0 PV1-V-1609 1 1549.00 0.00 \N \N 4472 1163 1 1799.0 1 2020-11-10 00:24:40.406741 2020-11-10 00:24:40.406741 3375 1252 \N \N 0 PV3-V-846 1 \N 0.00 \N \N 4473 1162 2 278.0 1 2020-11-10 01:09:40.722092 2020-11-10 01:09:40.722092 3376 \N \N \N 0 PV1-V-1610 1 500.00 222.00 \N \N 4474 1162 2 498.0 1 2020-11-10 01:11:14.304621 2020-11-10 01:11:14.304621 3377 \N \N \N 0 PV1-V-1611 1 498.00 0.00 \N \N 4475 1163 3 999.0 1 2020-11-10 01:31:54.984487 2020-11-10 01:31:54.984487 3227 \N \N \N 7 \N 1 \N 0.00 \N \N 22225 4476 1164 1 1399.0 1 2020-11-10 21:17:41.28705 2020-11-10 21:17:41.28705 3378 5876 \N \N 0 PV1-V-1612 1 \N 0.00 \N \N 4477 1164 4 1000.0 1 2020-11-10 21:20:46.00948 2020-11-10 21:20:46.00948 3379 2972 \N \N 0 PV1-V-1613 1 \N 0.00 \N \N 4478 1164 2 448.0 1 2020-11-10 21:20:53.37098 2020-11-10 21:20:53.37098 3379 \N \N \N 0 PV1-V-1613 1 448.00 0.00 \N \N 4479 1164 1 300.0 1 2020-11-10 21:28:59.78913 2020-11-10 21:28:59.78913 3380 6692 \N \N 0 PV1-V-1614 1 \N 0.00 \N \N 4480 1164 2 38.0 1 2020-11-10 21:29:10.755041 2020-11-10 21:29:10.755041 3380 \N \N \N 0 PV1-V-1614 1 38.00 0.00 \N \N 4481 1164 2 899.0 1 2020-11-10 23:35:26.762137 2020-11-10 23:35:26.762137 3340 \N \N \N 7 \N 1 899.00 0.00 \N \N 4482 1165 2 2798.0 1 2020-11-11 00:03:52.956563 2020-11-11 00:03:52.956563 3381 \N \N \N 0 PV3-V-847 1 3000.00 202.00 \N \N 4483 1166 2 1199.0 1 2020-11-11 18:47:40.128483 2020-11-11 18:47:40.128483 3382 \N \N \N 0 PV1-V-1615 1 1199.00 0.00 \N \N 4484 1167 2 1799.0 1 2020-11-11 19:34:53.636984 2020-11-11 19:34:53.636984 3383 \N \N \N 0 PV3-V-848 1 1799.00 0.00 \N \N 4485 1166 2 1200.0 1 2020-11-11 21:01:28.659922 2020-11-11 21:01:28.659922 3384 \N \N \N 6 PV1-V-1616 1 1200.00 0.00 \N \N 4486 1166 2 629.0 1 2020-11-11 21:18:47.6096 2020-11-11 21:18:47.6096 3385 \N \N \N 0 PV1-V-1617 1 650.00 21.00 \N \N 4487 1167 2 2098.0 1 2020-11-11 22:18:44.234159 2020-11-11 22:18:44.234159 3387 \N \N \N 0 PV3-V-850 1 2098.00 0.00 \N \N 4488 1167 3 799.0 1 2020-11-11 23:00:17.240472 2020-11-11 23:00:17.240472 3105 \N \N \N 7 \N 1 \N 0.00 \N \N 454565 4489 1166 2 499.0 1 2020-11-12 00:16:33.394366 2020-11-12 00:16:33.394366 3388 \N \N \N 0 PV1-V-1618 1 499.00 0.00 \N \N 4490 1166 4 1667.0 1 2020-11-12 00:42:59.794517 2020-11-12 00:42:59.794517 3389 5545 \N \N 0 PV1-V-1619 1 \N 0.00 \N \N 4491 1166 4 650.0 1 2020-11-12 01:02:46.353765 2020-11-12 01:02:46.353765 3390 5545 \N \N 0 PV1-V-1620 1 \N 0.00 \N \N 4492 1166 2 599.0 1 2020-11-12 01:02:56.562068 2020-11-12 01:02:56.562068 3390 \N \N \N 0 PV1-V-1620 1 599.00 0.00 \N \N 4493 1166 2 800.0 1 2020-11-12 01:14:30.114533 2020-11-12 01:14:30.114533 3391 \N \N \N 0 PV1-V-1621 1 800.00 0.00 \N \N 4494 1167 1 3298.0 1 2020-11-12 01:42:31.921092 2020-11-12 01:42:31.921092 3392 1252 \N \N 0 PV3-V-851 1 \N 0.00 \N \N 4495 1167 3 2998.0 1 2020-11-12 01:48:24.423185 2020-11-12 01:48:24.423185 3393 \N \N \N 0 PV3-V-852 1 \N 0.00 \N \N 11552 4496 1167 3 3099.0 1 2020-11-12 01:59:00.164877 2020-11-12 01:59:00.164877 3394 \N \N \N 0 PV3-V-853 1 \N 0.00 \N \N 2255 4497 1168 1 269.0 1 2020-11-12 19:43:15.763289 2020-11-12 19:43:15.763289 3395 977 \N \N 0 PV1-V-1622 1 \N 0.00 \N \N 4498 1169 2 1499.0 1 2020-11-12 19:57:49.347869 2020-11-12 19:57:49.347869 3396 \N \N \N 0 PV3-V-854 1 1499.00 0.00 \N \N 4499 1169 2 289.0 1 2020-11-12 20:02:34.262199 2020-11-12 20:02:34.262199 3397 \N \N \N 0 PV3-V-855 1 400.00 111.00 \N \N 4500 1169 2 749.0 1 2020-11-12 20:22:49.270641 2020-11-12 20:22:49.270641 3398 \N \N \N 0 PV3-V-856 1 1000.00 251.00 \N \N 4501 1169 2 60.0 1 2020-11-12 20:26:01.291705 2020-11-12 20:26:01.291705 3399 \N \N \N 0 PV3-V-857 1 200.00 140.00 \N \N 4502 1169 2 1359.0 1 2020-11-12 20:31:43.9821 2020-11-12 20:31:43.9821 3400 \N \N \N 0 PV3-V-858 1 1500.00 141.00 \N \N 4503 1168 1 400.0 1 2020-11-12 22:17:52.882854 2020-11-12 22:17:52.882854 3401 7226 \N \N 6 PV1-V-1623 1 \N 0.00 \N \N 4504 1169 2 1399.0 1 2020-11-12 23:04:12.196627 2020-11-12 23:04:12.196627 3402 \N \N \N 0 PV3-V-859 1 1500.00 101.00 \N \N 4505 1169 2 1799.0 1 2020-11-12 23:19:35.057295 2020-11-12 23:19:35.057295 3403 \N \N \N 0 PV3-V-860 1 1799.00 0.00 \N \N 4506 1169 2 1799.0 1 2020-11-12 23:27:49.051784 2020-11-12 23:27:49.051784 3404 \N \N \N 0 PV3-V-861 1 1799.00 0.00 \N \N 4509 1169 2 799.0 1 2020-11-12 23:51:31.337774 2020-11-12 23:51:31.337774 3273 \N \N \N 7 \N 1 799.00 0.00 \N \N 4510 1168 2 450.0 1 2020-11-12 23:52:49.50692 2020-11-12 23:52:49.50692 3406 \N \N \N 6 PV1-V-1625 1 450.00 0.00 \N \N 4511 1168 2 499.0 1 2020-11-12 23:54:13.023755 2020-11-12 23:54:13.023755 3407 \N \N \N 0 PV1-V-1626 1 499.00 0.00 \N \N 4512 1168 2 499.0 1 2020-11-12 23:55:20.169317 2020-11-12 23:55:20.169317 3408 \N \N \N 0 PV1-V-1627 1 499.00 0.00 \N \N 4513 1168 2 500.0 0 2020-11-13 01:53:42.02403 2020-11-13 01:53:42.02403 \N \N \N 353 2 \N 1 \N \N \N \N 4515 1171 2 2099.0 1 2020-11-13 19:46:50.228291 2020-11-13 19:46:50.228291 3410 \N \N \N 0 PV1-V-1628 1 2099.00 0.00 \N \N 4516 1170 2 512.0 1 2020-11-13 19:47:25.435472 2020-11-13 19:47:25.435472 3411 \N \N \N 6 PV3-V-863 1 512.00 0.00 \N \N 4517 1170 2 1487.0 1 2020-11-13 19:50:24.378892 2020-11-13 19:50:24.378892 3341 \N \N \N 7 \N 1 1487.00 0.00 \N \N 4518 1170 2 699.0 1 2020-11-13 20:12:28.894226 2020-11-13 20:12:28.894226 3412 \N \N \N 0 PV3-V-864 1 700.00 1.00 \N \N 4519 1170 2 500.0 1 2020-11-13 20:29:11.898757 2020-11-13 20:29:11.898757 3414 \N \N \N 6 PV3-V-866 1 500.00 0.00 \N \N 4520 1170 2 811.0 1 2020-11-13 20:44:12.816388 2020-11-13 20:44:12.816388 3415 \N \N \N 0 PV3-V-867 1 811.00 0.00 \N \N 4522 1170 2 140.0 1 2020-11-13 20:55:26.241872 2020-11-13 20:55:26.241872 3416 \N \N \N 6 PV3-V-868 1 140.00 0.00 \N \N 4523 1171 3 1399.0 1 2020-11-13 21:58:20.606652 2020-11-13 21:58:20.606652 3195 \N \N \N 7 \N 1 \N 0.00 \N \N SAM 4524 1171 2 2548.0 1 2020-11-14 00:01:27.42398 2020-11-14 00:01:27.42398 3406 \N \N \N 7 \N 1 2548.00 0.00 \N \N 4525 1170 2 699.0 1 2020-11-14 00:32:42.012348 2020-11-14 00:32:42.012348 3347 \N \N \N 7 \N 1 699.00 0.00 \N \N 4526 1170 2 301.0 1 2020-11-14 00:33:45.874031 2020-11-14 00:33:45.874031 3417 \N \N \N 6 PV3-V-869 1 301.00 0.00 \N \N 4527 1170 2 510.0 1 2020-11-14 00:34:50.850069 2020-11-14 00:34:50.850069 3417 \N \N \N 7 \N 1 510.00 0.00 \N \N 4529 1170 3 2998.0 1 2020-11-14 01:58:11.58079 2020-11-14 01:58:11.58079 3419 \N \N \N 0 PV3-V-870 1 \N 0.00 \N \N 1222 4528 1171 1 99.0 1 2020-11-14 01:55:57.576516 2020-11-14 01:55:57.576516 3418 2091 \N \N 0 PV1-V-1629 1 \N 0.00 \N \N 4530 1173 1 497.0 1 2020-11-14 19:44:24.532258 2020-11-14 19:44:24.532258 3420 1215 \N \N 0 PV3-V-871 1 \N 0.00 \N \N 4531 1172 1 1000.0 1 2020-11-14 21:14:33.736347 2020-11-14 21:14:33.736347 3421 4150 \N \N 0 PV1-V-1630 1 \N 0.00 \N \N 4532 1173 2 109.0 1 2020-11-14 21:14:52.916216 2020-11-14 21:14:52.916216 3422 \N \N \N 0 PV3-V-872 1 109.00 0.00 \N \N 4533 1172 1 625.0 1 2020-11-14 21:56:45.67262 2020-11-14 21:56:45.67262 3423 5296 \N \N 6 PV1-V-1631 1 \N 0.00 \N \N 4534 1173 1 500.0 1 2020-11-14 22:50:24.631444 2020-11-14 22:50:24.631444 3424 1252 \N \N 6 PV3-V-873 1 \N 0.00 \N \N 4535 1172 2 500.0 1 2020-11-14 23:45:12.454746 2020-11-14 23:45:12.454746 3425 \N \N \N 6 PV1-V-1632 1 500.00 0.00 \N \N 4536 1172 2 200.0 1 2020-11-15 00:02:59.041775 2020-11-15 00:02:59.041775 3426 \N \N \N 6 PV1-V-1633 1 200.00 0.00 \N \N 4537 1172 4 1877.0 1 2020-11-15 00:26:05.685023 2020-11-15 00:26:05.685023 3427 4534 \N \N 0 PV1-V-1634 1 \N 0.00 \N \N 4538 1173 2 499.0 1 2020-11-15 00:33:11.581808 2020-11-15 00:33:11.581808 3428 \N \N \N 0 PV3-V-874 1 499.00 0.00 \N \N 4539 1172 2 300.0 0 2020-11-15 01:24:17.035326 2020-11-15 01:24:17.035326 \N \N \N 354 2 \N 1 \N \N \N \N 4540 1173 3 3198.0 1 2020-11-15 01:51:05.310571 2020-11-15 01:51:05.310571 3430 \N \N \N 0 PV3-V-875 1 \N 0.00 \N \N 1252 4541 1172 2 799.0 1 2020-11-15 01:51:06.129606 2020-11-15 01:51:06.129606 3429 \N \N \N 0 PV1-V-1635 1 799.00 0.00 \N \N 4542 1173 2 1599.0 1 2020-11-15 02:13:01.29519 2020-11-15 02:13:01.29519 3431 \N \N \N 0 PV3-V-876 1 1600.00 1.00 \N \N 4543 1174 2 1799.0 1 2020-11-15 19:28:57.050219 2020-11-15 19:28:57.050219 3432 \N \N \N 0 PV1-V-1636 1 1799.00 0.00 \N \N 4544 1174 1 1599.0 1 2020-11-15 20:36:16.052345 2020-11-15 20:36:16.052345 3433 6509 \N \N 0 PV1-V-1637 1 \N 0.00 \N \N 4545 1176 2 1967.0 1 2020-11-16 20:52:27.699751 2020-11-16 20:52:27.699751 3434 \N \N \N 0 PV1-V-1638 1 1967.00 0.00 \N \N 4546 1175 2 1251.0 1 2020-11-16 21:57:41.865671 2020-11-16 21:57:41.865671 3435 \N \N \N 0 PV3-V-877 1 1251.00 0.00 \N \N 4547 1176 2 1399.0 1 2020-11-16 21:59:10.698595 2020-11-16 21:59:10.698595 3436 \N \N \N 0 PV1-V-1639 1 1399.00 0.00 \N \N 4548 1175 3 1599.0 1 2020-11-16 22:01:54.918076 2020-11-16 22:01:54.918076 3437 \N \N \N 0 PV3-V-878 1 \N 0.00 \N \N 12152 4549 1175 3 2846.0 1 2020-11-16 22:06:37.612482 2020-11-16 22:06:37.612482 3438 \N \N \N 0 PV3-V-879 1 \N 0.00 \N \N 222 4551 1176 1 300.0 1 2020-11-16 22:56:19.457082 2020-11-16 22:56:19.457082 3439 2892 \N \N 6 PV1-V-1640 1 \N 0.00 \N \N 4552 1176 2 1200.0 1 2020-11-16 22:56:34.918015 2020-11-16 22:56:34.918015 3439 \N \N \N 6 PV1-V-1640 1 1200.00 0.00 \N \N 4553 1176 1 1599.0 1 2020-11-16 23:50:44.878138 2020-11-16 23:50:44.878138 3440 4505 \N \N 0 PV1-V-1641 1 \N 0.00 \N \N 4554 1175 2 868.0 1 2020-11-16 23:56:22.132264 2020-11-16 23:56:22.132264 3441 \N \N \N 0 PV3-V-880 1 1000.00 132.00 \N \N 4555 1175 2 149.0 1 2020-11-17 00:04:47.475719 2020-11-17 00:04:47.475719 3442 \N \N \N 0 PV3-V-881 1 149.00 0.00 \N \N 4557 1175 1 500.0 1 2020-11-17 00:17:29.552521 2020-11-17 00:17:29.552521 3443 1122 \N \N 6 PV3-V-882 1 \N 0.00 \N \N 4558 1177 2 500.0 1 2020-11-17 18:08:32.263058 2020-11-17 18:08:32.263058 3444 \N \N \N 6 PV3-V-883 1 500.00 0.00 \N \N 4559 1178 2 200.0 1 2020-11-17 19:13:27.343567 2020-11-17 19:13:27.343567 3445 \N \N \N 6 PV1-V-1642 1 200.00 0.00 \N \N 4560 1178 2 600.0 1 2020-11-17 19:17:03.098933 2020-11-17 19:17:03.098933 3446 \N \N \N 0 PV1-V-1643 1 600.00 0.00 \N \N 4561 1178 2 500.0 1 2020-11-17 20:35:44.300029 2020-11-17 20:35:44.300029 3447 \N \N \N 6 PV1-V-1644 1 500.00 0.00 \N \N 4562 1178 2 1500.0 1 2020-11-17 20:43:52.006538 2020-11-17 20:43:52.006538 3448 \N \N \N 0 PV1-V-1645 1 1500.00 0.00 \N \N 4563 1178 1 2288.0 1 2020-11-17 21:42:04.04901 2020-11-17 21:42:04.04901 3449 119 \N \N 0 PV1-V-1646 1 \N 0.00 \N \N 4564 1178 2 760.0 1 2020-11-17 22:17:45.120347 2020-11-17 22:17:45.120347 3450 \N \N \N 6 PV1-V-1647 1 760.00 0.00 \N \N 4565 1177 2 1799.0 1 2020-11-17 22:22:40.629984 2020-11-17 22:22:40.629984 3451 \N \N \N 0 PV3-V-884 1 2000.00 201.00 \N \N 4566 1177 2 531.0 1 2020-11-18 00:33:20.746833 2020-11-18 00:33:20.746833 3452 \N \N \N 0 PV3-V-885 1 531.00 0.00 \N \N 4567 1177 2 1799.0 1 2020-11-18 01:46:35.86463 2020-11-18 01:46:35.86463 3453 \N \N \N 0 PV3-V-886 1 2000.00 201.00 \N \N 4568 1179 2 1799.0 1 2020-11-18 17:06:45.9664 2020-11-18 17:06:45.9664 3454 \N \N \N 0 PV3-V-887 1 2000.00 201.00 \N \N 4577 1182 1 969.0 1 2020-11-19 18:33:57.239159 2020-11-19 18:33:57.239159 3463 8674 \N \N 0 PV1-V-1652 1 \N 0.00 \N \N 4570 1180 3 1000.0 1 2020-11-18 17:51:00.928002 2020-11-18 17:51:00.981783 3067 \N \N \N 3 \N 1 \N 0.00 \N \N SAM 4571 1180 1 199.0 1 2020-11-18 18:19:00.321415 2020-11-18 18:19:00.321415 3456 4489 \N \N 0 PV1-V-1649 1 \N 0.00 \N \N 4572 1179 2 49.0 1 2020-11-18 18:38:06.102591 2020-11-18 18:38:06.102591 3457 \N \N \N 0 PV3-V-888 1 49.00 0.00 \N \N 4573 1180 2 1599.0 1 2020-11-18 21:04:43.146307 2020-11-18 21:04:43.146307 3458 \N \N \N 0 PV1-V-1650 1 1599.00 0.00 \N \N 4574 1179 2 500.0 1 2020-11-19 00:30:49.58001 2020-11-19 00:30:49.58001 3460 \N \N \N 6 PV3-V-890 1 500.00 0.00 \N \N 4575 1180 2 500.0 1 2020-11-19 00:48:06.563921 2020-11-19 00:48:06.563921 3461 \N \N \N 6 PV1-V-1651 1 500.00 0.00 \N \N 4576 1179 2 1648.0 1 2020-11-19 01:15:56.842197 2020-11-19 01:15:56.842197 3462 \N \N \N 0 PV3-V-891 1 1700.00 52.00 \N \N 4578 1182 2 538.0 1 2020-11-19 18:42:14.656626 2020-11-19 18:42:14.656626 3464 \N \N \N 0 PV1-V-1653 1 538.00 0.00 \N \N 4579 1181 1 3265.0 1 2020-11-19 20:21:45.697601 2020-11-19 20:21:45.697601 3466 5215 \N \N 0 PV3-V-893 1 \N 0.00 \N \N 4580 1181 2 249.0 1 2020-11-19 20:23:46.41663 2020-11-19 20:23:46.41663 3467 \N \N \N 0 PV3-V-894 1 620.00 371.00 \N \N 4581 1182 1 689.0 1 2020-11-19 20:41:16.969758 2020-11-19 20:41:16.969758 3468 3749 \N \N 0 PV1-V-1654 1 \N 0.00 \N \N 4582 1181 2 3098.0 1 2020-11-19 21:18:28.500405 2020-11-19 21:18:28.500405 3469 \N \N \N 0 PV3-V-895 1 3500.00 402.00 \N \N 4583 1181 1 1499.0 1 2020-11-19 21:26:03.745388 2020-11-19 21:26:03.745388 3470 5555 \N \N 0 PV3-V-896 1 \N 0.00 \N \N 4584 1182 2 1599.0 1 2020-11-19 21:32:53.985666 2020-11-19 21:32:53.985666 3471 \N \N \N 6 PV1-V-1655 1 1599.00 0.00 \N \N 4585 1182 2 1799.0 1 2020-11-19 21:38:00.59303 2020-11-19 21:38:00.59303 3472 \N \N \N 0 PV1-V-1656 1 1799.00 0.00 \N \N 4586 1182 4 1449.0 1 2020-11-19 23:45:58.943951 2020-11-19 23:45:58.943951 3474 1309 \N \N 0 PV1-V-1658 1 \N 0.00 \N \N 4587 1182 4 2298.0 1 2020-11-20 00:22:48.483431 2020-11-20 00:22:48.483431 3475 7740 \N \N 0 PV1-V-1659 1 \N 0.00 \N \N 4588 1182 2 899.0 1 2020-11-20 00:25:20.490625 2020-11-20 00:25:20.490625 3365 \N \N \N 7 \N 1 899.00 0.00 \N \N 4589 1182 2 2998.0 1 2020-11-20 02:07:21.375178 2020-11-20 02:07:21.375178 3476 \N \N \N 0 PV1-V-1660 1 2998.00 0.00 \N \N 4590 1183 2 1799.0 1 2020-11-20 18:07:26.80603 2020-11-20 18:07:26.80603 3477 \N \N \N 0 PV3-V-897 1 1800.00 1.00 \N \N 4591 1184 4 1799.0 1 2020-11-20 18:15:50.226728 2020-11-20 18:15:50.226728 3478 3054 \N \N 0 PV1-V-1661 1 \N 0.00 \N \N 4592 1183 1 1799.0 1 2020-11-20 19:13:47.847015 2020-11-20 19:13:47.847015 3479 5511 \N \N 0 PV3-V-898 1 \N 0.00 \N \N 4596 1183 4 500.0 1 2020-11-20 21:53:43.953897 2020-11-20 21:53:43.953897 3481 5225 \N \N 6 PV3-V-900 1 \N 0.00 \N \N 4597 1183 4 599.0 1 2020-11-21 00:19:31.279852 2020-11-21 00:19:31.279852 3202 5524 \N \N 7 \N 1 \N 0.00 \N \N 4598 1184 2 500.0 1 2020-11-21 00:27:28.163587 2020-11-21 00:27:28.163587 3482 \N \N \N 6 PV1-V-1662 1 500.00 0.00 \N \N 4599 1184 2 500.0 1 2020-11-21 00:31:53.433983 2020-11-21 00:31:53.433983 3483 \N \N \N 6 PV1-V-1663 1 500.00 0.00 \N \N 4600 1184 2 180.0 0 2020-11-21 01:43:03.127898 2020-11-21 01:43:03.127898 \N \N \N 355 2 \N 1 \N \N \N \N 4601 1183 2 1799.0 1 2020-11-21 02:03:36.488753 2020-11-21 02:03:36.488753 3484 \N \N \N 0 PV3-V-901 1 2000.00 201.00 \N \N 4602 1186 2 1798.0 1 2020-11-21 17:48:53.633541 2020-11-21 17:48:53.633541 3450 \N \N \N 7 \N 1 1798.00 0.00 \N \N 4603 1185 2 3048.0 1 2020-11-21 18:47:38.576948 2020-11-21 18:47:38.576948 3485 \N \N \N 0 PV3-V-902 1 3050.00 2.00 \N \N 4604 1186 1 1399.0 1 2020-11-21 19:23:27.046947 2020-11-21 19:23:27.046947 3486 5557 \N \N 0 PV1-V-1664 1 \N 0.00 \N \N 4606 1185 2 1100.0 1 2020-11-21 20:42:06.610932 2020-11-21 20:42:06.610932 3255 \N \N \N 7 \N 1 1100.00 0.00 \N \N 4607 1185 2 500.0 1 2020-11-21 20:56:50.86171 2020-11-21 20:56:50.86171 3487 \N \N \N 6 PV3-V-903 1 500.00 0.00 \N \N 4608 1185 2 808.0 1 2020-11-21 21:11:24.281007 2020-11-21 21:11:24.281007 3488 \N \N \N 0 PV3-V-904 1 1120.00 312.00 \N \N 4609 1185 2 1300.0 0 2020-11-21 21:25:34.340833 2020-11-21 21:25:34.340833 \N \N \N 356 2 \N 1 \N \N \N \N 4610 1186 4 1799.0 1 2020-11-21 21:53:14.755356 2020-11-21 21:53:14.755356 3489 6147 \N \N 0 PV1-V-1665 1 \N 0.00 \N \N 4611 1186 4 3897.0 1 2020-11-21 23:15:28.529645 2020-11-21 23:15:28.529645 3439 5429 \N \N 7 \N 1 \N 0.00 \N \N 4612 1186 1 329.0 1 2020-11-22 00:26:39.043968 2020-11-22 00:26:39.043968 3475 4505 \N \N 5 \N 1 \N 0.00 39 \N 4613 1186 2 330.0 0 2020-11-22 00:57:13.046354 2020-11-22 00:57:13.046354 \N \N \N 357 2 \N 1 \N \N \N \N 4614 1187 2 799.0 1 2020-11-22 17:41:32.86149 2020-11-22 17:41:32.86149 3490 \N \N \N 0 PV3-V-905 1 800.00 1.00 \N \N 4615 1187 1 999.0 1 2020-11-22 20:31:57.736881 2020-11-22 20:31:57.736881 3491 5512 \N \N 0 PV3-V-906 1 \N 0.00 \N \N 4616 1187 2 250.0 0 2020-11-22 22:46:41.432273 2020-11-22 22:46:41.432273 \N \N \N 358 2 \N 1 \N \N \N \N 4617 1188 1 700.0 1 2020-11-23 18:51:35.387264 2020-11-23 18:51:35.387264 3493 2542 \N \N 6 PV3-V-908 1 \N 0.00 \N \N 4619 1189 2 1399.0 1 2020-11-23 19:23:59.558993 2020-11-23 19:23:59.558993 3495 \N \N \N 0 PV1-V-1667 1 1399.00 0.00 \N \N 4620 1189 2 740.0 1 2020-11-23 19:34:36.283139 2020-11-23 19:34:36.283139 3496 \N \N \N 6 PV1-V-1668 1 740.00 0.00 \N \N 4621 1188 2 1699.0 1 2020-11-23 20:12:53.637423 2020-11-23 20:12:53.637423 3497 \N \N \N 0 PV3-V-909 1 1700.00 1.00 \N \N 4622 1189 2 379.0 1 2020-11-23 20:48:25.044135 2020-11-23 20:48:25.044135 3498 \N \N \N 0 PV1-V-1669 1 379.00 0.00 \N \N 4623 1188 1 1799.0 1 2020-11-23 21:03:07.915712 2020-11-23 21:03:07.915712 3499 2537 \N \N 0 PV3-V-910 1 \N 0.00 \N \N 4624 1189 2 700.0 1 2020-11-23 21:17:23.337354 2020-11-23 21:17:23.337354 3500 \N \N \N 6 PV1-V-1670 1 700.00 0.00 \N \N 4625 1188 3 1199.0 1 2020-11-23 23:47:13.03968 2020-11-23 23:47:13.03968 3501 \N \N \N 0 PV3-V-911 1 \N 0.00 \N \N 1225 4626 1189 1 500.0 1 2020-11-24 01:03:13.351013 2020-11-24 01:03:13.351013 3502 4489 \N \N 6 PV1-V-1671 1 \N 0.00 \N \N 4627 1188 2 489.0 1 2020-11-24 01:14:57.730288 2020-11-24 01:14:57.730288 3503 \N \N \N 0 PV3-V-912 1 500.00 11.00 \N \N 4628 1188 2 1099.0 1 2020-11-24 01:39:54.849353 2020-11-24 01:39:54.849353 3235 \N \N \N 7 \N 1 1100.00 1.00 \N \N 4629 1189 2 2197.0 0 2020-11-24 01:52:38.020538 2020-11-24 01:52:38.020538 \N \N \N 359 2 \N 1 \N \N \N \N 4630 1188 3 998.0 1 2020-11-24 01:56:54.539506 2020-11-24 01:56:54.539506 2847 \N \N \N 7 \N 1 \N 0.00 \N \N 22525 4631 1188 2 152.0 1 2020-11-24 01:57:34.41437 2020-11-24 01:57:34.41437 3032 \N \N \N 7 \N 1 152.00 0.00 \N \N 4633 1188 3 256.0 1 2020-11-24 01:58:15.122327 2020-11-24 01:58:15.122327 3033 \N \N \N 7 \N 1 \N 0.00 \N \N 222 4634 1188 3 2099.0 1 2020-11-24 02:18:53.336065 2020-11-24 02:18:53.336065 3504 \N \N \N 0 PV3-V-913 1 \N 0.00 \N \N 52554 4635 1190 1 1099.0 1 2020-11-24 18:00:18.082553 2020-11-24 18:00:18.082553 3401 7226 \N \N 7 \N 1 \N 0.00 \N \N 4636 1191 2 1000.0 1 2020-11-24 21:24:16.757438 2020-11-24 21:24:16.757438 3371 \N \N \N 7 \N 1 1000.00 0.00 \N \N 4637 1190 2 1399.0 1 2020-11-24 21:24:24.991391 2020-11-24 21:24:24.991391 3505 \N \N \N 0 PV1-V-1672 1 1399.00 0.00 \N \N 4638 1191 2 600.0 1 2020-11-24 21:25:52.818656 2020-11-24 21:25:52.818656 3372 \N \N \N 7 \N 1 600.00 0.00 \N \N 4639 1190 2 1599.0 1 2020-11-24 23:42:30.25424 2020-11-24 23:42:30.25424 3506 \N \N \N 0 PV1-V-1673 1 1599.00 0.00 \N \N 4640 1190 2 250.0 1 2020-11-24 23:48:09.790586 2020-11-24 23:48:09.790586 3445 \N \N \N 4 \N 1 250.00 0.00 \N \N 4641 1191 2 1798.0 1 2020-11-25 00:13:30.509893 2020-11-25 00:13:30.509893 3143 \N \N \N 7 \N 1 1798.00 0.00 \N \N 4642 1191 2 189.0 1 2020-11-25 00:20:58.659008 2020-11-25 00:20:58.659008 3507 \N \N \N 0 PV3-V-914 1 189.00 0.00 \N \N 4643 1190 1 999.0 1 2020-11-25 00:28:07.230499 2020-11-25 00:28:07.230499 3508 8996 \N \N 0 PV1-V-1674 1 \N 0.00 \N \N 4644 1191 1 1499.0 1 2020-11-25 01:06:19.372576 2020-11-25 01:06:19.372576 3509 1122 \N \N 0 PV3-V-915 1 \N 0.00 \N \N 4646 1191 2 1799.0 1 2020-11-25 01:12:50.593957 2020-11-25 01:12:50.593957 3510 \N \N \N 0 PV3-V-916 1 2000.00 201.00 \N \N 4647 1191 1 499.0 1 2020-11-25 01:23:20.600589 2020-11-25 01:23:20.600589 3511 1455 \N \N 0 PV3-V-917 1 \N 0.00 \N \N 4648 1191 2 1599.0 1 2020-11-25 01:36:23.606828 2020-11-25 01:36:23.606828 3512 \N \N \N 0 PV3-V-918 1 1599.00 0.00 \N \N 4649 1193 2 749.0 1 2020-11-25 18:21:25.472361 2020-11-25 18:21:25.472361 3461 \N \N \N 7 \N 1 750.00 1.00 \N \N 4650 1192 3 1078.0 1 2020-11-25 19:11:26.65644 2020-11-25 19:11:26.65644 3513 \N \N \N 0 PV3-V-919 1 \N 0.00 \N \N 2165 4651 1193 2 1000.0 1 2020-11-25 23:41:35.424619 2020-11-25 23:41:35.464036 3373 \N \N \N 3 \N 1 1000.00 0.00 \N \N 4652 1192 2 749.0 1 2020-11-26 00:09:54.722492 2020-11-26 00:09:54.722492 3514 \N \N \N 0 PV3-V-920 1 1000.00 251.00 \N \N 4653 1192 2 1000.0 1 2020-11-26 00:52:45.889581 2020-11-26 00:52:45.889581 2945 \N \N \N 7 \N 1 1000.00 0.00 \N \N 4654 1194 2 579.0 1 2020-11-26 18:38:53.371633 2020-11-26 18:38:53.371633 3361 \N \N \N 7 \N 1 579.00 0.00 \N \N 4655 1194 2 550.0 1 2020-11-26 19:09:44.965366 2020-11-26 19:09:44.965366 3515 \N \N \N 0 PV1-V-1675 1 550.00 0.00 \N \N 4656 1194 2 589.0 1 2020-11-26 20:01:41.985236 2020-11-26 20:01:41.985236 3516 \N \N \N 0 PV1-V-1676 1 589.00 0.00 \N \N 4657 1194 2 500.0 1 2020-11-26 20:15:17.312635 2020-11-26 20:15:17.312635 3517 \N \N \N 6 PV1-V-1677 1 500.00 0.00 \N \N 4658 1194 2 250.0 1 2020-11-26 20:20:14.258818 2020-11-26 20:20:14.258818 3518 \N \N \N 6 PV1-V-1678 1 250.00 0.00 \N \N 4659 1194 2 799.0 1 2020-11-26 20:26:47.976777 2020-11-26 20:26:47.976777 3519 \N \N \N 0 PV1-V-1679 1 799.00 0.00 \N \N 4660 1195 2 249.0 1 2020-11-26 21:57:59.100266 2020-11-26 21:57:59.100266 3520 \N \N \N 0 PV3-V-921 1 250.00 1.00 \N \N 4661 1194 2 119.0 1 2020-11-26 21:58:13.553925 2020-11-26 21:58:13.553925 3521 \N \N \N 0 PV1-V-1680 1 119.00 0.00 \N \N 4662 1194 2 479.0 1 2020-11-26 22:58:31.505517 2020-11-26 22:58:31.505517 3522 \N \N \N 0 PV1-V-1681 1 479.00 0.00 \N \N 4663 1194 1 1000.0 1 2020-11-27 00:08:46.603736 2020-11-27 00:08:46.603736 3524 3674 \N \N 0 PV1-V-1683 1 \N 0.00 \N \N 4664 1194 2 674.0 1 2020-11-27 00:08:54.243224 2020-11-27 00:08:54.243224 3524 \N \N \N 0 PV1-V-1683 1 674.00 0.00 \N \N 4665 1195 2 1654.0 1 2020-11-27 00:18:14.083517 2020-11-27 00:18:14.083517 3525 \N \N \N 0 PV3-V-922 1 1800.00 146.00 \N \N 4666 1194 2 1199.0 1 2020-11-27 00:24:44.970515 2020-11-27 00:24:44.970515 3526 \N \N \N 0 PV1-V-1684 1 1199.00 0.00 \N \N 4667 1194 2 589.0 1 2020-11-27 00:46:35.825449 2020-11-27 00:46:35.825449 3527 \N \N \N 0 PV1-V-1685 1 589.00 0.00 \N \N 4668 1195 2 1199.0 1 2020-11-27 01:06:10.48575 2020-11-27 01:06:10.48575 3528 \N \N \N 0 PV3-V-923 1 1200.00 1.00 \N \N 4669 1195 3 1799.0 1 2020-11-27 01:19:30.445754 2020-11-27 01:19:30.445754 3529 \N \N \N 0 PV3-V-924 1 \N 0.00 \N \N 25255 4670 1195 3 2898.0 1 2020-11-27 01:32:55.676923 2020-11-27 01:32:55.676923 3530 \N \N \N 0 PV3-V-925 1 \N 0.00 \N \N 1225 4672 1194 2 1549.0 1 2020-11-27 01:37:41.549971 2020-11-27 01:37:41.549971 3518 \N \N \N 7 \N 1 1549.00 0.00 \N \N 4673 1195 2 1251.0 1 2020-11-27 02:06:33.805575 2020-11-27 02:06:33.805575 3531 \N \N \N 0 PV3-V-926 1 1251.00 0.00 \N \N 4674 1196 4 1299.0 1 2020-11-27 21:16:31.193527 2020-11-27 21:16:31.193527 3481 2548 \N \N 7 \N 1 \N 0.00 \N \N 4675 1196 2 1399.0 1 2020-11-27 21:27:09.34145 2020-11-27 21:27:09.34145 3532 \N \N \N 0 PV3-V-927 1 1500.00 101.00 \N \N 4676 1196 2 2099.0 1 2020-11-27 22:53:53.704961 2020-11-27 22:53:53.704961 3534 \N \N \N 0 PV3-V-929 1 2099.00 0.00 \N \N 4677 1197 3 1799.0 1 2020-11-27 23:39:16.531694 2020-11-27 23:39:16.531694 3535 \N \N \N 0 PV1-V-1686 1 \N 0.00 \N \N SERVICIO A DOMICILIO 4678 1197 2 600.0 1 2020-11-28 00:00:37.100462 2020-11-28 00:00:37.100462 3447 \N \N \N 4 \N 1 600.00 0.00 \N \N 4679 1197 2 1249.0 1 2020-11-28 00:08:50.292124 2020-11-28 00:08:50.292124 3536 \N \N \N 0 PV1-V-1687 1 1249.00 0.00 \N \N 4680 1196 2 300.0 1 2020-11-28 01:14:55.044082 2020-11-28 01:14:55.044082 3537 \N \N \N 6 PV3-V-930 1 300.00 0.00 \N \N 4681 1196 2 1799.0 1 2020-11-28 01:15:57.799517 2020-11-28 01:15:57.799517 3538 \N \N \N 0 PV3-V-931 1 1800.00 1.00 \N \N 4682 1196 1 1576.0 1 2020-11-28 02:00:42.438319 2020-11-28 02:00:42.438319 3539 1252 \N \N 0 PV3-V-932 1 \N 0.00 \N \N 4683 1196 3 1499.0 1 2020-11-28 02:13:57.076622 2020-11-28 02:13:57.076622 3540 \N \N \N 0 PV3-V-933 1 \N 0.00 \N \N 1155 4684 1198 2 1399.0 1 2020-11-28 02:44:29.996429 2020-11-28 02:44:29.996429 3541 \N \N \N 0 PV3-V-934 1 1500.00 101.00 \N \N 4685 1199 1 498.0 1 2020-11-28 19:09:33.422273 2020-11-28 19:09:33.422273 3358 729 \N \N 7 \N 1 \N 0.00 \N \N 4686 1199 1 1249.0 1 2020-11-28 19:10:27.228914 2020-11-28 19:10:27.228914 3357 729 \N \N 4 \N 1 \N 0.00 \N \N 4688 1199 1 999.0 1 2020-11-28 20:30:09.369874 2020-11-28 20:30:09.369874 3542 7402 \N \N 0 PV1-V-1688 1 \N 0.00 \N \N 4689 1199 1 1119.0 1 2020-11-28 21:09:42.12387 2020-11-28 21:09:42.12387 3543 5196 \N \N 0 PV1-V-1689 1 \N 0.00 \N \N 4690 1199 4 1799.0 1 2020-11-28 21:17:42.309373 2020-11-28 21:17:42.309373 3544 8155 \N \N 0 PV1-V-1690 1 \N 0.00 \N \N 4691 1199 1 624.0 1 2020-11-28 21:26:06.164433 2020-11-28 21:26:06.164433 3423 5296 \N \N 7 \N 1 \N 0.00 \N \N 4692 1199 2 500.0 1 2020-11-28 22:14:23.8354 2020-11-28 22:14:23.8354 3545 \N \N \N 6 PV1-V-1691 1 500.00 0.00 \N \N 4693 1199 2 648.0 1 2020-11-28 23:23:05.684185 2020-11-28 23:23:05.684185 2879 \N \N \N 7 \N 1 648.00 0.00 \N \N 4694 1199 2 200.0 1 2020-11-28 23:29:58.170999 2020-11-28 23:29:58.170999 2726 \N \N \N 4 \N 1 200.00 0.00 \N \N 4695 1200 2 999.0 1 2020-11-28 23:57:18.205282 2020-11-28 23:57:18.205282 3546 \N \N \N 0 PV3-V-935 1 1000.00 1.00 \N \N 4696 1200 2 1799.0 1 2020-11-29 00:21:15.20532 2020-11-29 00:21:15.20532 3547 \N \N \N 0 PV3-V-936 1 2000.00 201.00 \N \N 4697 1199 1 1399.0 1 2020-11-29 00:23:14.012732 2020-11-29 00:23:14.012732 3548 3402 \N \N 0 PV1-V-1692 1 \N 0.00 \N \N 4698 1199 2 600.0 1 2020-11-29 00:30:44.594461 2020-11-29 00:30:44.594461 3483 \N \N \N 4 \N 1 600.00 0.00 \N \N 4699 1199 2 200.0 1 2020-11-29 00:32:11.637688 2020-11-29 00:32:11.637688 3482 \N \N \N 4 \N 1 200.00 0.00 \N \N 4700 1200 4 1599.0 1 2020-11-29 00:55:55.046801 2020-11-29 00:55:55.046801 3549 2543 \N \N 0 PV3-V-937 1 \N 0.00 \N \N 4701 1200 4 1499.0 1 2020-11-29 01:01:32.755892 2020-11-29 01:01:32.755892 3550 1521 \N \N 0 PV3-V-938 1 \N 0.00 \N \N 4710 1202 1 289.0 1 2020-11-30 20:47:53.566358 2020-11-30 20:47:53.566358 3557 8396 \N \N 6 PV1-V-1695 1 \N 0.00 \N \N 4704 1199 2 20.0 0 2020-11-29 01:25:05.133748 2020-11-29 01:25:05.133748 \N \N \N 360 2 \N 1 \N \N \N \N 4705 1201 2 1259.1 1 2020-11-29 18:15:15.255242 2020-11-29 18:15:15.255242 3553 \N \N \N 0 PV3-V-941 1 1400.00 140.90 \N \N 4706 1201 2 1199.0 1 2020-11-29 20:37:50.282761 2020-11-29 20:37:50.282761 3554 \N \N \N 0 PV3-V-942 1 1500.00 301.00 \N \N 4707 1202 2 899.0 1 2020-11-30 18:45:37.196707 2020-11-30 18:45:37.196707 3500 \N \N \N 7 \N 1 899.00 0.00 \N \N 4708 1202 1 469.0 1 2020-11-30 20:03:15.141275 2020-11-30 20:03:15.141275 3555 2503 \N \N 0 PV1-V-1693 1 \N 0.00 \N \N 4709 1202 2 500.0 1 2020-11-30 20:41:34.829045 2020-11-30 20:41:34.829045 3556 \N \N \N 6 PV1-V-1694 1 500.00 0.00 \N \N 4711 1203 2 500.0 1 2020-11-30 21:39:42.331259 2020-11-30 21:39:42.331259 3558 \N \N \N 6 PV3-V-943 1 500.00 0.00 \N \N 4712 1202 2 400.0 1 2020-11-30 22:02:44.352269 2020-11-30 22:02:44.352269 3559 \N \N \N 6 PV1-V-1696 1 400.00 0.00 \N \N 4713 1203 2 1499.0 0 2020-12-01 00:49:09.365273 2020-12-01 00:49:09.365273 3509 \N \N \N 0 PV3-V-915 1 \N \N \N \N 4714 1203 2 1218.0 1 2020-12-01 00:56:55.339949 2020-12-01 00:56:55.339949 3563 \N \N \N 0 PV3-V-946 1 1218.00 0.00 \N \N 4715 1202 1 1799.0 1 2020-12-01 00:58:52.009641 2020-12-01 00:58:52.009641 3562 7301 \N \N 0 PV1-V-1697 1 \N 0.00 \N \N 4716 1203 2 597.0 1 2020-12-01 00:59:24.100584 2020-12-01 00:59:24.100584 3564 \N \N \N 0 PV3-V-947 1 1000.00 403.00 \N \N 4717 1203 2 2288.0 1 2020-12-01 01:56:19.253694 2020-12-01 01:56:19.253694 3565 \N \N \N 0 PV3-V-948 1 2288.00 0.00 \N \N 4718 1203 2 1399.0 1 2020-12-01 02:03:05.373852 2020-12-01 02:03:05.373852 3566 \N \N \N 0 PV3-V-949 1 1399.00 0.00 \N \N 4719 1204 2 1399.0 1 2020-12-01 17:18:50.280129 2020-12-01 17:18:50.280129 3567 \N \N \N 0 PV3-V-950 1 1400.00 1.00 \N \N 4720 1205 1 3398.0 1 2020-12-01 19:47:50.838606 2020-12-01 19:47:50.838606 3568 5799 \N \N 0 PV1-V-1698 1 \N 0.00 \N \N 4721 1204 4 899.0 1 2020-12-01 20:26:38.898793 2020-12-01 20:26:38.898793 3569 2585 \N \N 0 PV3-V-951 1 \N 0.00 \N \N 4722 1204 2 1599.0 1 2020-12-02 00:32:49.585133 2020-12-02 00:32:49.585133 3570 \N \N \N 0 PV3-V-952 1 1700.00 101.00 \N \N 4724 1204 2 699.0 1 2020-12-02 00:36:06.910553 2020-12-02 00:36:06.910553 3487 \N \N \N 7 \N 1 700.00 1.00 \N \N 4723 1205 2 1249.0 1 2020-12-02 00:36:05.702677 2020-12-02 00:36:05.702677 3571 \N \N \N 0 PV1-V-1699 1 1249.00 0.00 \N \N 4725 1204 2 3653.0 1 2020-12-02 01:37:46.086933 2020-12-02 01:37:46.086933 3572 \N \N \N 0 PV3-V-953 1 3700.00 47.00 \N \N 4726 1206 2 388.0 1 2020-12-02 18:21:14.074954 2020-12-02 18:21:14.074954 3574 \N \N \N 0 PV1-V-1700 1 388.00 0.00 \N \N 4727 1207 2 600.0 1 2020-12-02 19:03:41.221656 2020-12-02 19:03:41.221656 3575 \N \N \N 6 PV3-V-955 1 600.00 0.00 \N \N 4728 1207 2 1299.0 1 2020-12-02 19:07:09.17872 2020-12-02 19:07:09.17872 3444 \N \N \N 7 \N 1 1400.00 101.00 \N \N 4729 1207 3 540.0 1 2020-12-02 20:38:35.995514 2020-12-02 20:38:36.053771 3179 \N \N \N 3 \N 1 \N 0.00 \N \N 1225 4730 1207 3 1000.0 1 2020-12-02 20:39:14.651454 2020-12-02 20:39:14.704069 3179 \N \N \N 3 \N 1 \N 0.00 \N \N 22525 4731 1207 2 759.0 1 2020-12-02 21:30:40.148605 2020-12-02 21:30:40.148605 3576 \N \N \N 0 PV3-V-956 1 759.00 0.00 \N \N 4732 1206 2 759.0 1 2020-12-02 21:38:31.550069 2020-12-02 21:38:31.550069 3577 \N \N \N 0 PV1-V-1701 1 759.00 0.00 \N \N 4733 1206 4 799.0 1 2020-12-02 22:00:43.342336 2020-12-02 22:00:43.342336 3578 141 \N \N 0 PV1-V-1702 1 \N 0.00 \N \N 4734 1206 2 1000.0 1 2020-12-02 22:24:13.933778 2020-12-02 22:24:13.967631 3373 \N \N \N 3 \N 1 1000.00 0.00 \N \N 4735 1206 2 629.0 1 2020-12-02 22:43:56.140129 2020-12-02 22:43:56.140129 3580 \N \N \N 0 PV1-V-1704 1 629.00 0.00 \N \N 4736 1206 2 300.0 1 2020-12-03 00:35:39.505165 2020-12-03 00:35:39.505165 3581 \N \N \N 6 PV1-V-1705 1 300.00 0.00 \N \N 4737 1207 2 699.0 1 2020-12-03 01:51:19.373112 2020-12-03 01:51:19.373112 3582 \N \N \N 0 PV3-V-957 1 699.00 0.00 \N \N 4738 1208 2 500.0 1 2020-12-03 18:57:06.486269 2020-12-03 18:57:06.486269 3584 \N \N \N 6 PV3-V-959 1 500.00 0.00 \N \N 4739 1209 2 629.0 1 2020-12-03 19:34:23.663882 2020-12-03 19:34:23.663882 3585 \N \N \N 0 PV1-V-1706 1 629.00 0.00 \N \N 4740 1209 2 500.0 1 2020-12-03 20:23:05.204782 2020-12-03 20:23:05.204782 3586 \N \N \N 0 PV1-V-1707 1 500.00 0.00 \N \N 4741 1209 1 320.0 1 2020-12-03 20:23:18.541946 2020-12-03 20:23:18.541946 3586 9196 \N \N 0 PV1-V-1707 1 \N 0.00 \N \N 4742 1209 2 2239.0 1 2020-12-03 21:09:32.945645 2020-12-03 21:09:32.945645 3587 \N \N \N 0 PV1-V-1708 1 2239.00 0.00 \N \N 4743 1209 2 689.0 1 2020-12-03 21:22:02.409054 2020-12-03 21:22:02.409054 3588 \N \N \N 0 PV1-V-1709 1 700.00 11.00 \N \N 4744 1209 3 700.0 1 2020-12-03 22:44:52.238565 2020-12-03 22:44:52.275845 3067 \N \N \N 3 \N 1 \N 0.00 \N \N SAM 4745 1208 3 500.0 1 2020-12-03 23:54:27.954567 2020-12-03 23:54:28.017763 2888 \N \N \N 3 \N 1 \N 0.00 \N \N 11522 4746 1209 2 799.0 1 2020-12-04 00:29:34.004031 2020-12-04 00:29:34.004031 3590 \N \N \N 0 PV1-V-1710 1 799.00 0.00 \N \N 4747 1209 2 529.0 1 2020-12-04 00:48:07.162537 2020-12-04 00:48:07.162537 3591 \N \N \N 0 PV1-V-1711 1 529.00 0.00 \N \N 4748 1209 4 899.0 1 2020-12-04 01:51:21.042067 2020-12-04 01:51:21.042067 3592 696 \N \N 0 PV1-V-1712 1 \N 0.00 \N \N 4749 1210 1 649.0 1 2020-12-04 18:25:25.153315 2020-12-04 18:25:25.153315 3593 6476 \N \N 0 PV1-V-1713 1 \N 0.00 \N \N 4750 1211 4 119.0 1 2020-12-04 18:41:40.050922 2020-12-04 18:41:40.050922 3594 5542 \N \N 0 PV3-V-961 1 \N 0.00 \N \N 4751 1210 4 3087.0 1 2020-12-04 19:29:20.938236 2020-12-04 19:29:20.938236 3595 3673 \N \N 0 PV1-V-1714 1 \N 0.00 \N \N 4752 1210 2 400.0 1 2020-12-04 20:31:35.624268 2020-12-04 20:31:35.624268 3596 \N \N \N 6 PV1-V-1715 1 400.00 0.00 \N \N 4753 1211 2 1888.0 1 2020-12-04 20:33:00.164972 2020-12-04 20:33:00.164972 3597 \N \N \N 0 PV3-V-962 1 2000.00 112.00 \N \N 4754 1210 2 700.0 1 2020-12-04 20:59:53.715596 2020-12-04 20:59:53.715596 3557 \N \N \N 7 \N 1 700.00 0.00 \N \N 4755 1210 2 200.0 1 2020-12-04 21:03:56.085802 2020-12-04 21:03:56.085802 3598 \N \N \N 6 PV1-V-1716 1 200.00 0.00 \N \N 4756 1210 2 1598.0 1 2020-12-04 21:10:32.477667 2020-12-04 21:10:32.477667 3599 \N \N \N 0 PV1-V-1717 1 1598.00 0.00 \N \N 4757 1210 2 200.0 1 2020-12-04 21:14:38.54273 2020-12-04 21:14:38.54273 3600 \N \N \N 6 PV1-V-1718 1 200.00 0.00 \N \N 4758 1210 1 400.0 1 2020-12-04 22:28:13.540706 2020-12-04 22:28:13.540706 3601 0 \N \N 6 PV1-V-1719 1 \N 0.00 \N \N 4759 1210 2 589.0 1 2020-12-04 23:07:22.940684 2020-12-04 23:07:22.940684 3602 \N \N \N 0 PV1-V-1720 1 589.00 0.00 \N \N 4760 1211 2 899.0 1 2020-12-04 23:09:14.747634 2020-12-04 23:09:14.747634 3584 \N \N \N 7 \N 1 900.00 1.00 \N \N 4761 1211 2 1199.0 1 2020-12-04 23:18:59.75319 2020-12-04 23:18:59.75319 3603 \N \N \N 0 PV3-V-963 1 1200.00 1.00 \N \N 4764 1211 2 529.0 1 2020-12-04 23:42:25.605041 2020-12-04 23:42:25.605041 3604 \N \N \N 0 PV3-V-964 1 529.00 0.00 \N \N 4765 1210 1 999.0 1 2020-12-05 01:42:05.202827 2020-12-05 01:42:05.202827 3605 9176 \N \N 0 PV1-V-1721 1 \N 0.00 \N \N 4766 1211 3 6181.0 1 2020-12-05 01:44:17.601555 2020-12-05 01:44:17.66234 3179 \N \N \N 3 \N 1 \N 0.00 \N \N 22552 4767 1212 2 879.0 1 2020-12-05 19:23:45.095975 2020-12-05 19:23:45.095975 3606 \N \N \N 0 PV1-V-1722 1 879.00 0.00 \N \N 4768 1212 2 598.0 1 2020-12-05 19:33:06.453616 2020-12-05 19:33:06.453616 3607 \N \N \N 0 PV1-V-1723 1 598.00 0.00 \N \N 4769 1212 2 1499.0 1 2020-12-05 20:03:17.83319 2020-12-05 20:03:17.83319 3608 \N \N \N 0 PV1-V-1724 1 1499.00 0.00 \N \N 4770 1212 2 600.0 1 2020-12-05 20:19:12.582353 2020-12-05 20:19:12.582353 3447 \N \N \N 4 \N 1 600.00 0.00 \N \N 4771 1213 4 899.0 1 2020-12-05 20:22:52.574638 2020-12-05 20:22:52.574638 3609 5522 \N \N 0 PV3-V-965 1 \N 0.00 \N \N 4772 1212 1 3598.0 1 2020-12-05 20:28:36.127069 2020-12-05 20:28:36.127069 3610 1874 \N \N 0 PV1-V-1725 1 \N 0.00 \N \N 4773 1213 4 1000.0 1 2020-12-05 20:51:08.361017 2020-12-05 20:51:08.361017 3613 5014 \N \N 6 PV3-V-968 1 \N 0.00 \N \N 4774 1212 1 689.0 1 2020-12-05 20:53:23.235052 2020-12-05 20:53:23.235052 3614 6193 \N \N 0 PV1-V-1726 1 \N 0.00 \N \N 4775 1213 2 500.0 1 2020-12-05 20:53:54.991197 2020-12-05 20:53:54.991197 3615 \N \N \N 6 PV3-V-966 1 500.00 0.00 \N \N 4776 1212 2 99.0 1 2020-12-05 21:36:53.965688 2020-12-05 21:36:53.965688 3447 \N \N \N 7 \N 1 99.00 0.00 \N \N 4777 1213 2 1100.0 1 2020-12-05 23:28:38.369213 2020-12-05 23:28:38.369213 3537 \N \N \N 7 \N 1 1100.00 0.00 \N \N 4778 1212 4 1299.0 1 2020-12-06 00:07:58.190791 2020-12-06 00:07:58.190791 3502 5429 \N \N 7 \N 1 \N 0.00 \N \N 4779 1212 2 699.0 1 2020-12-06 00:28:59.525371 2020-12-06 00:28:59.525371 3483 \N \N \N 7 \N 1 699.00 0.00 \N \N 4780 1212 2 951.0 1 2020-12-06 00:29:20.051422 2020-12-06 00:29:20.051422 3581 \N \N \N 7 \N 1 951.00 0.00 \N \N 4781 1212 1 270.0 1 2020-12-06 01:09:44.807373 2020-12-06 01:09:44.807373 3616 6930 \N \N 0 PV1-V-1727 1 \N 0.00 \N \N 4782 1212 2 1298.0 1 2020-12-06 01:09:55.446532 2020-12-06 01:09:55.446532 3616 \N \N \N 0 PV1-V-1727 1 1298.00 0.00 \N \N 4783 1212 2 699.0 1 2020-12-06 01:54:17.655431 2020-12-06 01:54:17.655431 3617 \N \N \N 0 PV1-V-1728 1 699.00 0.00 \N \N 4784 1213 2 1000.0 0 2020-12-06 02:11:20.393771 2020-12-06 02:11:20.393771 \N \N \N 361 2 \N 1 \N \N \N \N 4785 1213 2 500.0 0 2020-12-06 02:12:13.555621 2020-12-06 02:12:13.555621 \N \N \N 362 2 \N 1 \N \N \N \N 4786 1212 2 1200.0 0 2020-12-06 02:28:16.553389 2020-12-06 02:28:16.553389 \N \N \N 363 2 \N 1 \N \N \N \N 4787 1214 2 1198.0 1 2020-12-06 19:08:26.389411 2020-12-06 19:08:26.389411 3618 \N \N \N 0 PV3-V-970 1 1200.00 2.00 \N \N 4788 1215 2 1199.0 1 2020-12-07 17:18:57.637987 2020-12-07 17:18:57.637987 3619 \N \N \N 0 PV3-V-971 1 1200.00 1.00 \N \N 4789 1216 2 849.0 1 2020-12-07 21:19:19.626218 2020-12-07 21:19:19.626218 3596 \N \N \N 7 \N 1 849.00 0.00 \N \N 4790 1216 2 10.0 0 2020-12-07 22:02:31.975246 2020-12-07 22:02:31.975246 \N \N \N 364 2 \N 1 \N \N \N \N 4791 1216 2 200.0 1 2020-12-07 22:04:55.363358 2020-12-07 22:04:55.363358 3620 \N \N \N 6 PV1-V-1729 1 200.00 0.00 \N \N 4792 1216 1 350.0 1 2020-12-07 22:28:32.555959 2020-12-07 22:28:32.555959 3598 7821 \N \N 4 \N 1 \N 0.00 \N \N 4793 1216 2 549.0 1 2020-12-07 22:28:48.301837 2020-12-07 22:28:48.301837 3598 \N \N \N 4 \N 1 549.00 0.00 \N \N 4794 1215 3 666.0 1 2020-12-07 23:14:58.014871 2020-12-07 23:14:58.014871 3411 \N \N \N 7 \N 1 \N 0.00 \N \N 1252 4795 1216 2 239.0 1 2020-12-07 23:19:07.909586 2020-12-07 23:19:07.909586 3445 \N \N \N 7 \N 1 239.00 0.00 \N \N 4796 1216 2 229.0 1 2020-12-07 23:32:19.994881 2020-12-07 23:32:19.994881 3621 \N \N \N 0 PV1-V-1730 1 229.00 0.00 \N \N 4797 1216 2 4824.0 1 2020-12-07 23:43:49.717406 2020-12-07 23:43:49.717406 3622 \N \N \N 0 PV1-V-1731 1 4824.00 0.00 \N \N 4798 1216 2 1119.0 1 2020-12-07 23:45:52.518102 2020-12-07 23:45:52.518102 3623 \N \N \N 0 PV1-V-1732 1 1119.00 0.00 \N \N 4799 1216 2 600.0 1 2020-12-08 00:12:49.794448 2020-12-08 00:12:49.794448 3624 \N \N \N 0 PV1-V-1733 1 600.00 0.00 \N \N 4800 1215 2 1399.0 1 2020-12-08 01:02:39.181122 2020-12-08 01:02:39.181122 3625 \N \N \N 0 PV3-V-972 1 1500.00 101.00 \N \N 4801 1218 1 300.0 1 2020-12-08 20:11:58.865312 2020-12-08 20:11:58.865312 3626 3028 \N \N 6 PV1-V-1734 1 \N 0.00 \N \N 4802 1217 2 1698.0 1 2020-12-08 21:56:21.880078 2020-12-08 21:56:21.880078 3627 \N \N \N 0 PV3-V-973 1 2000.00 302.00 \N \N 4803 1217 2 900.0 1 2020-12-08 21:59:06.768098 2020-12-08 21:59:06.768098 3298 \N \N \N 7 \N 1 900.00 0.00 \N \N 4804 1217 2 599.0 1 2020-12-08 21:59:33.181361 2020-12-08 21:59:33.181361 3294 \N \N \N 7 \N 1 599.00 0.00 \N \N 4805 1217 2 500.0 1 2020-12-09 00:59:08.686839 2020-12-09 00:59:08.686839 3629 \N \N \N 6 PV3-V-974 1 500.00 0.00 \N \N 4806 1218 1 1799.0 1 2020-12-09 01:18:57.469852 2020-12-09 01:18:57.469852 3630 8506 \N \N 0 PV1-V-1736 1 \N 0.00 \N \N 4807 1218 2 629.0 1 2020-12-09 01:26:13.844325 2020-12-09 01:26:13.844325 3631 \N \N \N 0 PV1-V-1737 1 629.00 0.00 \N \N 4808 1217 4 1599.0 1 2020-12-09 02:03:40.978085 2020-12-09 02:03:40.978085 3632 452 \N \N 0 PV3-V-975 1 \N 0.00 \N \N 4809 1217 2 16.0 0 2020-12-09 02:34:17.735399 2020-12-09 02:34:17.735399 \N \N \N 365 2 \N 1 \N \N \N \N 4810 1219 4 699.0 1 2020-12-09 17:43:09.28981 2020-12-09 17:43:09.28981 3493 5222 \N \N 7 \N 1 \N 0.00 \N \N 4812 1220 2 899.0 1 2020-12-09 18:57:51.505901 2020-12-09 18:57:51.505901 3633 \N \N \N 0 PV1-V-1738 1 1000.00 101.00 \N \N 4813 1220 2 2797.0 1 2020-12-09 19:42:54.717282 2020-12-09 19:42:54.717282 3634 \N \N \N 0 PV1-V-1739 1 2797.00 0.00 \N \N 4815 1220 2 300.0 1 2020-12-09 20:10:46.88045 2020-12-09 20:10:46.88045 3556 \N \N \N 4 \N 1 300.00 0.00 \N \N 4817 1220 2 300.0 1 2020-12-09 22:04:30.233915 2020-12-09 22:04:30.233915 3636 \N \N \N 6 PV1-V-1741 1 300.00 0.00 \N \N 4818 1220 2 1485.0 1 2020-12-09 22:26:02.71076 2020-12-09 22:26:02.71076 3638 \N \N \N 0 PV1-V-1743 1 1485.00 0.00 \N \N 4819 1220 2 759.0 1 2020-12-09 22:34:48.426368 2020-12-09 22:34:48.426368 3639 \N \N \N 0 PV1-V-1744 1 760.00 1.00 \N \N 4820 1220 2 200.0 1 2020-12-09 22:44:17.019987 2020-12-09 22:44:17.019987 3640 \N \N \N 6 PV1-V-1745 1 200.00 0.00 \N \N 4821 1220 2 1658.0 1 2020-12-09 23:05:01.811835 2020-12-09 23:05:01.811835 3641 \N \N \N 0 PV1-V-1746 1 1800.00 142.00 \N \N 4822 1220 2 700.0 1 2020-12-09 23:09:05.468499 2020-12-09 23:09:05.520921 3067 \N \N \N 3 \N 1 700.00 0.00 \N \N 4823 1220 2 896.0 1 2020-12-09 23:12:03.393915 2020-12-09 23:12:03.393915 3636 \N \N \N 7 \N 1 900.00 4.00 \N \N 4824 1219 4 500.0 1 2020-12-09 23:19:02.240152 2020-12-09 23:19:02.240152 3642 5555 \N \N 6 PV3-V-976 1 \N 0.00 \N \N 4825 1220 2 500.0 1 2020-12-10 00:27:10.538775 2020-12-10 00:27:10.538775 3545 \N \N \N 4 \N 1 500.00 0.00 \N \N 4826 1220 2 3397.0 1 2020-12-10 01:17:00.985258 2020-12-10 01:17:00.985258 3384 \N \N \N 7 \N 1 3400.00 3.00 \N \N 4827 1219 2 529.0 1 2020-12-10 01:38:18.93109 2020-12-10 01:38:18.93109 3643 \N \N \N 0 PV3-V-977 1 530.00 1.00 \N \N 4828 1219 2 30.0 0 2020-12-10 01:54:35.592007 2020-12-10 01:54:35.592007 \N \N \N 366 2 \N 1 \N \N \N \N 4829 1221 2 250.0 1 2020-12-10 19:58:11.136707 2020-12-10 19:58:11.136707 3644 \N \N \N 6 PV3-V-978 1 250.00 0.00 \N \N 4830 1221 2 1099.0 1 2020-12-10 20:24:05.332307 2020-12-10 20:24:05.332307 3342 \N \N \N 7 \N 1 1099.00 0.00 \N \N 4831 1221 1 3597.0 1 2020-12-10 21:22:42.866818 2020-12-10 21:22:42.866818 3645 1225 \N \N 0 PV3-V-979 1 \N 0.00 \N \N 4832 1221 2 400.0 1 2020-12-10 21:38:24.905359 2020-12-10 21:38:24.905359 3646 \N \N \N 6 PV3-V-980 1 400.00 0.00 \N \N 4833 1222 2 1234.0 1 2020-12-10 22:10:51.948448 2020-12-10 22:10:51.948448 3647 \N \N \N 0 PV1-V-1747 1 1234.00 0.00 \N \N 4834 1222 2 599.0 1 2020-12-10 23:11:28.14083 2020-12-10 23:11:28.14083 3648 \N \N \N 0 PV1-V-1748 1 599.00 0.00 \N \N 4835 1222 1 1399.0 1 2020-12-10 23:16:34.185848 2020-12-10 23:16:34.185848 3649 3405 \N \N 0 PV1-V-1749 1 \N 0.00 \N \N 4836 1221 2 500.0 1 2020-12-11 00:30:05.276529 2020-12-11 00:30:05.276529 3650 \N \N \N 6 PV3-V-981 1 500.00 0.00 \N \N 4837 1221 2 1198.0 1 2020-12-11 01:15:30.096777 2020-12-11 01:15:30.096777 3651 \N \N \N 0 PV3-V-982 1 1200.00 2.00 \N \N 4838 1222 2 899.0 1 2020-12-11 01:19:55.373262 2020-12-11 01:19:55.373262 3652 \N \N \N 0 PV1-V-1750 1 899.00 0.00 \N \N 4839 1221 2 1399.0 1 2020-12-11 02:40:11.738236 2020-12-11 02:40:11.738236 3653 \N \N \N 0 PV3-V-983 1 1500.00 101.00 \N \N 4840 1223 2 479.0 1 2020-12-11 20:04:42.579776 2020-12-11 20:04:42.579776 3654 \N \N \N 0 PV1-V-1751 1 479.00 0.00 \N \N 4841 1223 1 1299.0 1 2020-12-11 21:03:25.339557 2020-12-11 21:03:25.339557 3655 2998 \N \N 0 PV1-V-1752 1 \N 0.00 \N \N 4842 1224 1 1048.0 1 2020-12-11 21:32:11.497 2020-12-11 21:32:11.497 3656 1552 \N \N 0 PV3-V-984 1 \N 0.00 \N \N 4843 1223 2 759.0 1 2020-12-11 22:17:06.951751 2020-12-11 22:17:06.951751 3657 \N \N \N 0 PV1-V-1753 1 759.00 0.00 \N \N 4844 1224 1 1399.0 1 2020-12-11 22:29:50.560883 2020-12-11 22:29:50.560883 3460 1552 \N \N 7 \N 1 \N 0.00 \N \N 4845 1223 2 1299.0 1 2020-12-11 23:05:48.412135 2020-12-11 23:05:48.412135 3658 \N \N \N 0 PV1-V-1754 1 1299.00 0.00 \N \N 4846 1223 2 307.0 0 2020-12-11 23:19:25.742178 2020-12-11 23:19:25.742178 \N \N \N 367 2 \N 1 \N \N \N \N 4847 1224 2 699.0 1 2020-12-11 23:34:58.586669 2020-12-11 23:34:58.586669 3659 \N \N \N 0 PV3-V-985 1 699.00 0.00 \N \N 4848 1224 2 649.0 1 2020-12-11 23:36:52.868666 2020-12-11 23:36:52.868666 3660 \N \N \N 0 PV3-V-986 1 649.00 0.00 \N \N 4850 1224 2 300.0 1 2020-12-12 00:27:30.01929 2020-12-12 00:27:30.01929 3662 \N \N \N 6 PV3-V-988 1 300.00 0.00 \N \N 4851 1224 2 300.0 1 2020-12-12 00:34:11.298226 2020-12-12 00:34:11.298226 3663 \N \N \N 6 PV3-V-989 1 300.00 0.00 \N \N 4852 1224 2 1196.0 1 2020-12-12 00:42:43.744418 2020-12-12 00:42:43.744418 3664 \N \N \N 0 PV3-V-990 1 1200.00 4.00 \N \N 4853 1224 2 1799.0 1 2020-12-12 01:40:43.671421 2020-12-12 01:40:43.671421 3666 \N \N \N 0 PV3-V-992 1 1800.00 1.00 \N \N 4854 1224 2 1768.0 1 2020-12-12 02:35:20.471741 2020-12-12 02:35:20.471741 3668 \N \N \N 0 PV3-V-994 1 2000.00 232.00 \N \N 4855 1225 2 398.0 1 2020-12-12 18:58:43.131085 2020-12-12 18:58:43.131085 3669 \N \N \N 6 PV1-V-1755 1 398.00 0.00 \N \N 4856 1225 2 759.0 1 2020-12-12 19:02:24.783574 2020-12-12 19:02:24.783574 3670 \N \N \N 0 PV1-V-1756 1 759.00 0.00 \N \N 4857 1225 2 1248.0 1 2020-12-12 20:05:00.795314 2020-12-12 20:05:00.795314 3672 \N \N \N 0 PV1-V-1758 1 1248.00 0.00 \N \N 4858 1225 2 1049.0 1 2020-12-12 20:32:56.753155 2020-12-12 20:32:56.753155 3673 \N \N \N 0 PV1-V-1759 1 1049.00 0.00 \N \N 4859 1225 1 1499.0 1 2020-12-12 21:48:52.356779 2020-12-12 21:48:52.356779 3674 3890 \N \N 0 PV1-V-1760 1 \N 0.00 \N \N 4860 1225 2 300.0 1 2020-12-12 23:38:22.259123 2020-12-12 23:38:22.259123 3675 \N \N \N 6 PV1-V-1761 1 300.00 0.00 \N \N 4861 1225 2 200.0 1 2020-12-12 23:45:01.174379 2020-12-12 23:45:01.174379 3676 \N \N \N 6 PV1-V-1762 1 200.00 0.00 \N \N 4862 1225 2 759.0 1 2020-12-13 00:17:00.05926 2020-12-13 00:17:00.05926 3677 \N \N \N 0 PV1-V-1763 1 800.00 41.00 \N \N 4863 1225 2 629.0 1 2020-12-13 00:36:04.253372 2020-12-13 00:36:04.253372 3678 \N \N \N 0 PV1-V-1764 1 700.00 71.00 \N \N 4864 1226 3 1799.0 1 2020-12-13 01:03:57.828878 2020-12-13 01:03:57.828878 3679 \N \N \N 0 PV3-V-995 1 \N 0.00 \N \N 1152 4865 1226 3 2099.0 1 2020-12-13 01:04:41.313306 2020-12-13 01:04:41.313306 3680 \N \N \N 0 PV3-V-996 1 \N 0.00 \N \N 1155 4866 1225 2 429.0 1 2020-12-13 01:14:03.773704 2020-12-13 01:14:03.773704 3366 \N \N \N 7 \N 1 429.00 0.00 \N \N 4867 1225 2 21.0 0 2020-12-13 01:32:30.290036 2020-12-13 01:32:30.290036 \N \N \N 368 2 \N 1 \N \N \N \N 4868 1226 2 1300.0 1 2020-12-13 01:55:28.326541 2020-12-13 01:55:28.326541 3558 \N \N \N 7 \N 1 1300.00 0.00 \N \N 4869 1226 2 1750.0 0 2020-12-13 02:42:53.717419 2020-12-13 02:42:53.717419 \N \N \N 369 2 \N 1 \N \N \N \N 4870 1227 2 1399.0 1 2020-12-13 18:10:25.818711 2020-12-13 18:10:25.818711 3681 \N \N \N 0 PV1-V-1765 1 1500.00 101.00 \N \N 4871 1227 2 1239.0 1 2020-12-13 20:27:42.186532 2020-12-13 20:27:42.186532 3683 \N \N \N 0 PV1-V-1767 1 1500.00 261.00 \N \N 4872 1228 2 2498.0 1 2020-12-13 20:41:56.935294 2020-12-13 20:41:56.935294 3684 \N \N \N 0 PV3-V-997 1 2500.00 2.00 \N \N 4873 1228 2 499.0 1 2020-12-13 21:05:20.56407 2020-12-13 21:05:20.56407 3685 \N \N \N 0 PV3-V-998 1 500.00 1.00 \N \N 4874 1228 4 1899.0 1 2020-12-13 21:22:54.183977 2020-12-13 21:22:54.183977 3686 5225 \N \N 0 PV3-V-999 1 \N 0.00 \N \N 4875 1227 4 629.0 1 2020-12-13 22:10:32.268875 2020-12-13 22:10:32.268875 3687 9034 \N \N 0 PV1-V-1768 1 \N 0.00 \N \N 4876 1229 2 1399.0 1 2020-12-14 17:48:51.802361 2020-12-14 17:48:51.802361 3688 \N \N \N 0 PV1-V-1769 1 1399.00 0.00 \N \N 4877 1230 2 1000.0 1 2020-12-14 19:19:54.343302 2020-12-14 19:19:54.343302 3650 \N \N \N 7 \N 1 1000.00 0.00 \N \N 4878 1230 2 2099.0 1 2020-12-14 19:23:35.150673 2020-12-14 19:23:35.150673 3689 \N \N \N 0 PV3-V-1000 1 2099.00 0.00 \N \N 4879 1230 2 400.0 1 2020-12-14 20:32:07.806889 2020-12-14 20:32:07.806889 3690 \N \N \N 6 PV3-V-1001 1 400.00 0.00 \N \N 4880 1230 1 379.0 1 2020-12-14 22:03:15.167214 2020-12-14 22:03:15.167214 3691 1225 \N \N 0 PV3-V-1002 1 \N 0.00 \N \N 4882 1230 2 1228.0 1 2020-12-14 22:05:47.479902 2020-12-14 22:05:47.479902 3692 \N \N \N 0 PV3-V-1003 1 1228.00 0.00 \N \N 4883 1230 2 1599.0 1 2020-12-14 22:06:58.777972 2020-12-14 22:06:58.777972 3693 \N \N \N 0 PV3-V-1004 1 1599.00 0.00 \N \N 4884 1229 2 400.0 1 2020-12-14 22:17:08.120561 2020-12-14 22:17:08.120561 3556 \N \N \N 4 \N 1 400.00 0.00 \N \N 4886 1229 2 369.0 1 2020-12-14 22:27:50.210004 2020-12-14 22:27:50.210004 3600 \N \N \N 7 \N 1 369.00 0.00 \N \N 4887 1229 1 999.0 1 2020-12-14 22:56:19.3653 2020-12-14 22:56:19.3653 3559 6679 \N \N 7 \N 1 \N 0.00 \N \N 4888 1230 2 699.0 1 2020-12-14 22:57:35.49771 2020-12-14 22:57:35.49771 3694 \N \N \N 0 PV3-V-1005 1 700.00 1.00 \N \N 4889 1230 2 998.0 1 2020-12-14 23:02:21.757301 2020-12-14 23:02:21.757301 3695 \N \N \N 0 PV3-V-1006 1 998.00 0.00 \N \N 4891 1229 2 969.0 1 2020-12-14 23:22:09.416053 2020-12-14 23:22:09.416053 3696 \N \N \N 0 PV1-V-1770 1 970.00 1.00 \N \N 4892 1229 2 499.0 1 2020-12-14 23:34:13.564683 2020-12-14 23:34:13.564683 3697 \N \N \N 0 PV1-V-1771 1 500.00 1.00 \N \N 4893 1230 2 2099.0 1 2020-12-15 00:04:42.863607 2020-12-15 00:04:42.863607 3698 \N \N \N 0 PV3-V-1007 1 2099.00 0.00 \N \N 4894 1229 1 799.0 1 2020-12-15 00:52:27.63457 2020-12-15 00:52:27.63457 3545 4984 \N \N 7 \N 1 \N 0.00 \N \N 4895 1230 2 1499.0 1 2020-12-15 00:55:14.579673 2020-12-15 00:55:14.579673 3699 \N \N \N 0 PV3-V-1008 1 1500.00 1.00 \N \N 4896 1229 2 1728.0 1 2020-12-15 01:01:45.488843 2020-12-15 01:01:45.488843 3496 \N \N \N 7 \N 1 1728.00 0.00 \N \N 4897 1229 2 599.0 1 2020-12-15 01:10:32.348041 2020-12-15 01:10:32.348041 3700 \N \N \N 0 PV1-V-1772 1 599.00 0.00 \N \N 4898 1230 2 500.0 0 2020-12-15 01:19:19.400054 2020-12-15 01:19:19.400054 3642 \N \N \N 0 \N 1 \N \N \N \N 4899 1230 2 568.0 1 2020-12-15 01:20:04.454811 2020-12-15 01:20:04.454811 3701 \N \N \N 0 PV3-V-1009 1 568.00 0.00 \N \N 4900 1230 3 1799.0 1 2020-12-15 01:43:57.116864 2020-12-15 01:43:57.116864 3702 \N \N \N 0 PV3-V-1010 1 \N 0.00 \N \N 2122 4901 1229 2 100.0 0 2020-12-15 02:29:55.129671 2020-12-15 02:29:55.129671 \N \N \N 370 2 \N 1 \N \N \N \N 4902 1230 2 149.0 1 2020-12-15 02:42:05.502158 2020-12-15 02:42:05.502158 3704 \N \N \N 0 PV3-V-1012 1 200.00 51.00 \N \N 4903 1231 2 2317.0 1 2020-12-15 17:28:27.699275 2020-12-15 17:28:27.699275 3705 \N \N \N 0 PV1-V-1773 1 2317.00 0.00 \N \N 4906 1232 4 300.0 1 2020-12-15 18:14:37.673801 2020-12-15 18:14:37.673801 3707 5555 \N \N 6 PV3-V-1014 1 \N 0.00 \N \N 4907 1232 2 598.0 1 2020-12-15 18:29:43.06762 2020-12-15 18:29:43.06762 3646 \N \N \N 7 \N 1 598.00 0.00 \N \N 4908 1232 2 899.0 1 2020-12-15 19:54:04.320726 2020-12-15 19:54:04.320726 3575 \N \N \N 7 \N 1 1000.00 101.00 \N \N 4909 1231 2 1499.0 1 2020-12-15 20:07:13.502769 2020-12-15 20:07:13.502769 3708 \N \N \N 0 PV1-V-1774 1 1499.00 0.00 \N \N 4910 1232 2 811.0 1 2020-12-15 21:42:23.697089 2020-12-15 21:42:23.697089 3709 \N \N \N 0 PV3-V-1015 1 811.00 0.00 \N \N 4911 1232 2 1499.0 1 2020-12-15 22:20:55.886219 2020-12-15 22:20:55.886219 3710 \N \N \N 0 PV3-V-1016 1 1500.00 1.00 \N \N 4912 1232 2 1499.0 1 2020-12-15 22:48:52.796049 2020-12-15 22:48:52.796049 3711 \N \N \N 0 PV3-V-1017 1 1500.00 1.00 \N \N 4913 1231 2 1299.0 1 2020-12-15 22:56:39.518333 2020-12-15 22:56:39.518333 3712 \N \N \N 0 PV1-V-1775 1 1299.00 0.00 \N \N 4914 1231 2 1389.0 1 2020-12-15 23:15:50.813408 2020-12-15 23:15:50.813408 3713 \N \N \N 0 PV1-V-1776 1 1389.00 0.00 \N \N 4915 1232 2 2638.0 1 2020-12-15 23:32:01.886128 2020-12-15 23:32:01.886128 3714 \N \N \N 0 PV3-V-1018 1 2638.00 0.00 \N \N 4916 1231 2 599.0 1 2020-12-16 00:13:57.905466 2020-12-16 00:13:57.905466 3715 \N \N \N 0 PV1-V-1777 1 599.00 0.00 \N \N 4917 1231 1 1599.0 1 2020-12-16 01:15:18.998674 2020-12-16 01:15:18.998674 3716 2862 \N \N 0 PV1-V-1778 1 \N 0.00 \N \N 4919 1232 1 2998.0 1 2020-12-16 01:17:08.606548 2020-12-16 01:17:08.606548 3717 1255 \N \N 0 PV3-V-1019 1 \N 0.00 \N \N 4920 1232 2 1099.0 1 2020-12-16 01:51:10.674859 2020-12-16 01:51:10.674859 3629 \N \N \N 7 \N 1 1099.00 0.00 \N \N 4921 1232 2 1699.0 1 2020-12-16 01:58:21.030365 2020-12-16 01:58:21.030365 3718 \N \N \N 0 PV3-V-1020 1 1699.00 0.00 \N \N 4922 1232 2 400.0 1 2020-12-16 01:59:49.831935 2020-12-16 01:59:49.831935 3720 \N \N \N 6 PV3-V-1022 1 400.00 0.00 \N \N 4923 1232 2 1798.0 1 2020-12-16 03:30:09.287197 2020-12-16 03:30:09.287197 3721 \N \N \N 0 PV3-V-1023 1 1798.00 0.00 \N \N 4924 1232 2 500.0 1 2020-12-16 03:32:07.096917 2020-12-16 03:32:07.096917 3722 \N \N \N 6 PV3-V-1024 1 500.00 0.00 \N \N 4925 1234 4 1799.0 1 2020-12-16 18:13:13.497026 2020-12-16 18:13:13.497026 3723 4516 \N \N 0 PV1-V-1779 1 \N 0.00 \N \N 4926 1234 4 350.0 1 2020-12-16 18:17:47.991559 2020-12-16 18:17:47.991559 3724 4516 \N \N 0 PV1-V-1780 1 \N 0.00 \N \N 4927 1234 1 699.0 1 2020-12-16 18:30:57.220472 2020-12-16 18:30:57.220472 3725 7302 \N \N 0 PV1-V-1781 1 \N 0.00 \N \N 4929 1234 1 3027.0 1 2020-12-16 18:55:00.724872 2020-12-16 18:55:00.724872 3726 1931 \N \N 0 PV1-V-1782 1 \N 0.00 \N \N 4930 1234 1 189.0 1 2020-12-16 19:33:10.871193 2020-12-16 19:33:10.871193 3727 2813 \N \N 0 PV1-V-1783 1 \N 0.00 \N \N 4931 1233 2 1148.0 1 2020-12-16 19:59:19.687805 2020-12-16 19:59:19.687805 3728 \N \N \N 0 PV3-V-1025 1 1150.00 2.00 \N \N 4932 1233 2 1499.0 1 2020-12-16 20:06:39.762849 2020-12-16 20:06:39.762849 3729 \N \N \N 0 PV3-V-1026 1 1500.00 1.00 \N \N 4933 1234 4 999.0 1 2020-12-16 20:12:32.425259 2020-12-16 20:12:32.425259 3730 9054 \N \N 0 PV1-V-1784 1 \N 0.00 \N \N 4935 1234 1 300.0 1 2020-12-16 20:15:45.07014 2020-12-16 20:15:45.07014 3640 1931 \N \N 4 \N 1 \N 0.00 \N \N 4936 1234 2 199.0 1 2020-12-16 20:15:57.416654 2020-12-16 20:15:57.416654 3640 \N \N \N 4 \N 1 199.00 0.00 \N \N 4937 1233 2 3598.0 1 2020-12-16 21:08:32.616515 2020-12-16 21:08:32.616515 3731 \N \N \N 0 PV3-V-1027 1 3700.00 102.00 \N \N 4938 1234 2 300.0 0 2020-12-16 21:29:48.517546 2020-12-16 21:29:48.517546 3626 \N \N \N 0 \N 1 \N \N \N \N 4939 1234 2 600.0 1 2020-12-16 21:30:50.752418 2020-12-16 21:30:50.752418 3732 \N \N \N 0 PV1-V-1785 1 600.00 0.00 \N \N 4940 1233 2 799.0 1 2020-12-16 22:25:35.533489 2020-12-16 22:25:35.533489 3733 \N \N \N 0 PV3-V-1027 1 800.00 1.00 \N \N 4941 1233 2 1599.0 1 2020-12-16 23:21:28.489926 2020-12-16 23:21:28.489926 3734 \N \N \N 0 PV3-V-1029 1 1599.00 0.00 \N \N 4942 1234 2 1499.0 1 2020-12-16 23:26:35.432829 2020-12-16 23:26:35.432829 3735 \N \N \N 0 PV1-V-1786 1 1499.00 0.00 \N \N 4943 1233 2 98.99 1 2020-12-16 23:43:52.995422 2020-12-16 23:43:52.995422 3736 \N \N \N 0 PV3-V-1030 1 98.99 0.00 \N \N 4944 1233 2 300.0 1 2020-12-16 23:45:01.371642 2020-12-16 23:45:01.371642 3737 \N \N \N 6 PV3-V-1031 1 300.00 0.00 \N \N 4945 1234 2 1499.0 1 2020-12-16 23:53:15.56796 2020-12-16 23:53:15.56796 3738 \N \N \N 0 PV1-V-1787 1 1499.00 0.00 \N \N 4946 1234 2 1499.0 1 2020-12-16 23:58:24.466255 2020-12-16 23:58:24.466255 3739 \N \N \N 0 PV1-V-1788 1 1499.00 0.00 \N \N 4947 1234 2 1251.0 1 2020-12-17 00:03:27.418897 2020-12-17 00:03:27.418897 3740 \N \N \N 0 PV1-V-1789 1 1251.00 0.00 \N \N 4949 1233 1 1000.0 1 2020-12-17 00:39:15.921276 2020-12-17 00:39:15.921276 3742 5255 \N \N 6 PV3-V-1033 1 \N 0.00 \N \N 4950 1234 1 1499.0 1 2020-12-17 00:48:17.071592 2020-12-17 00:48:17.071592 3743 4754 \N \N 0 PV1-V-1790 1 \N 0.00 \N \N 4951 1233 4 1499.0 1 2020-12-17 00:57:16.27079 2020-12-17 00:57:16.27079 3744 1552 \N \N 0 PV3-V-1034 1 \N 0.00 \N \N 4952 1234 2 1109.01 1 2020-12-17 01:30:50.826993 2020-12-17 01:30:50.826993 3745 \N \N \N 0 PV1-V-1791 1 1109.01 0.00 \N \N 4954 1233 1 899.0 1 2020-12-17 01:35:04.704787 2020-12-17 01:35:04.704787 3746 1255 \N \N 0 PV3-V-1035 1 \N 0.00 \N \N 4956 1233 1 500.0 1 2020-12-17 01:43:43.283863 2020-12-17 01:43:43.283863 3748 1225 \N \N 6 PV3-V-1037 1 \N 0.00 \N \N 4957 1235 2 1499.0 1 2020-12-17 03:08:17.012931 2020-12-17 03:08:17.012931 3749 \N \N \N 0 PV3-V-1038 1 1499.00 0.00 \N \N 4958 1237 2 1499.0 1 2020-12-17 18:05:50.550024 2020-12-17 18:05:50.550024 3750 \N \N \N 0 PV3-V-1039 1 1500.00 1.00 \N \N 4959 1236 1 159.0 1 2020-12-17 18:07:00.617256 2020-12-17 18:07:00.617256 3751 2840 \N \N 0 PV1-V-1792 1 \N 0.00 \N \N 4960 1236 2 350.0 1 2020-12-17 18:16:33.697152 2020-12-17 18:16:33.697152 3752 \N \N \N 6 PV1-V-1793 1 350.00 0.00 \N \N 4961 1236 2 749.0 1 2020-12-17 20:13:37.650114 2020-12-17 20:13:37.650114 3753 \N \N \N 0 PV1-V-1794 1 749.00 0.00 \N \N 4962 1236 2 699.0 1 2020-12-17 20:36:23.982611 2020-12-17 20:36:23.982611 3754 \N \N \N 0 PV1-V-1795 1 699.00 0.00 \N \N 4963 1236 2 1399.0 1 2020-12-17 21:13:54.056902 2020-12-17 21:13:54.056902 3755 \N \N \N 0 PV1-V-1796 1 1399.00 0.00 \N \N 4964 1236 2 379.0 1 2020-12-17 21:16:32.802024 2020-12-17 21:16:32.802024 3756 \N \N \N 0 PV1-V-1797 1 379.00 0.00 \N \N 4965 1236 2 999.0 1 2020-12-17 21:20:48.926601 2020-12-17 21:20:48.926601 3601 \N \N \N 7 \N 1 999.00 0.00 \N \N 4966 1236 1 2998.0 1 2020-12-18 00:17:02.590248 2020-12-18 00:17:02.590248 3757 7231 \N \N 0 PV1-V-1798 1 \N 0.00 \N \N 4967 1236 2 98.0 1 2020-12-18 00:18:45.097486 2020-12-18 00:18:45.097486 3758 \N \N \N 0 PV1-V-1799 1 98.00 0.00 \N \N 4968 1236 2 369.0 1 2020-12-18 00:46:43.070784 2020-12-18 00:46:43.070784 3620 \N \N \N 7 \N 1 369.00 0.00 \N \N 4969 1236 2 749.0 1 2020-12-18 01:12:39.113833 2020-12-18 01:12:39.113833 3759 \N \N \N 0 PV1-V-1800 1 749.00 0.00 \N \N 4970 1237 2 1629.0 1 2020-12-18 06:26:43.539319 2020-12-18 06:26:43.539319 3760 \N \N \N 0 PV3-V-1040 1 1629.00 0.00 \N \N 4971 1237 2 2648.0 1 2020-12-18 06:31:08.617465 2020-12-18 06:31:08.617465 3761 \N \N \N 0 PV3-V-1041 1 2648.00 0.00 \N \N 4972 1237 2 811.0 1 2020-12-18 06:31:33.402248 2020-12-18 06:31:33.402248 3762 \N \N \N 0 PV3-V-1042 1 811.00 0.00 \N \N 4973 1237 2 759.0 1 2020-12-18 06:32:20.262061 2020-12-18 06:32:20.262061 3763 \N \N \N 0 PV3-V-1043 1 759.00 0.00 \N \N 4974 1237 2 1499.0 1 2020-12-18 06:32:46.47799 2020-12-18 06:32:46.47799 3764 \N \N \N 0 PV3-V-1044 1 1499.00 0.00 \N \N 4975 1237 2 849.0 1 2020-12-18 06:33:07.744 2020-12-18 06:33:07.744 3765 \N \N \N 0 PV3-V-1045 1 849.00 0.00 \N \N 4976 1237 2 1558.0 1 2020-12-18 06:34:27.18542 2020-12-18 06:34:27.18542 3766 \N \N \N 0 PV3-V-1046 1 1558.00 0.00 \N \N 4977 1237 2 849.0 1 2020-12-18 06:35:10.583677 2020-12-18 06:35:10.583677 3767 \N \N \N 0 PV3-V-1047 1 849.00 0.00 \N \N 4978 1237 2 1499.0 1 2020-12-18 06:46:22.122792 2020-12-18 06:46:22.122792 3768 \N \N \N 0 PV3-V-1048 1 1499.00 0.00 \N \N 4979 1237 2 1399.0 1 2020-12-18 06:51:55.558814 2020-12-18 06:51:55.558814 3769 \N \N \N 0 PV3-V-1049 1 1399.00 0.00 \N \N 4980 1238 2 1799.0 1 2020-12-18 17:13:00.198675 2020-12-18 17:13:00.198675 3770 \N \N \N 0 PV1-V-1801 1 1799.00 0.00 \N \N 4981 1238 2 500.0 1 2020-12-18 18:42:01.83822 2020-12-18 18:42:01.83822 3771 \N \N \N 6 PV1-V-1802 1 500.00 0.00 \N \N 4982 1238 2 25.0 0 2020-12-18 22:11:46.349181 2020-12-18 22:11:46.349181 \N \N \N 371 2 \N 1 \N \N \N \N 4983 1238 2 1199.0 1 2020-12-18 22:12:37.821248 2020-12-18 22:12:37.821248 3772 \N \N \N 0 PV1-V-1803 1 1199.00 0.00 \N \N 4984 1238 1 899.0 1 2020-12-18 23:08:55.216423 2020-12-18 23:08:55.216423 3773 7698 \N \N 0 PV1-V-1804 1 \N 0.00 \N \N 4985 1238 2 1499.0 1 2020-12-19 00:53:27.755451 2020-12-19 00:53:27.755451 3774 \N \N \N 0 PV1-V-1805 1 1499.00 0.00 \N \N 4986 1239 2 1045.0 1 2020-12-19 06:13:05.609539 2020-12-19 06:13:05.609539 3775 \N \N \N 0 PV3-V-1050 1 1045.00 0.00 \N \N 4987 1239 2 2409.0 1 2020-12-19 06:14:15.024956 2020-12-19 06:14:15.024956 3776 \N \N \N 0 PV3-V-1051 1 2409.00 0.00 \N \N 4988 1239 2 1699.0 1 2020-12-19 06:14:33.523069 2020-12-19 06:14:33.523069 3777 \N \N \N 0 PV3-V-1052 1 1699.00 0.00 \N \N 4989 1239 2 2598.0 1 2020-12-19 06:15:37.751507 2020-12-19 06:15:37.751507 3778 \N \N \N 0 PV3-V-1053 1 2598.00 0.00 \N \N 4990 1239 2 799.0 1 2020-12-19 06:17:04.763613 2020-12-19 06:17:04.763613 3779 \N \N \N 0 PV3-V-1054 1 799.00 0.00 \N \N 4991 1239 2 299.0 1 2020-12-19 06:21:04.871231 2020-12-19 06:21:04.871231 3690 \N \N \N 7 \N 1 299.00 0.00 \N \N 4992 1239 2 539.0 1 2020-12-19 06:22:00.240895 2020-12-19 06:22:00.240895 3644 \N \N \N 7 \N 1 539.00 0.00 \N \N 4993 1240 2 599.0 1 2020-12-19 18:18:39.116146 2020-12-19 18:18:39.116146 3780 \N \N \N 0 PV1-V-1806 1 599.00 0.00 \N \N 4994 1240 1 749.0 1 2020-12-19 19:59:30.596587 2020-12-19 19:59:30.596587 3357 3010 \N \N 7 \N 1 \N 0.00 \N \N 4995 1240 2 899.0 1 2020-12-19 21:38:51.83467 2020-12-19 21:38:51.83467 3781 \N \N \N 0 PV1-V-1807 1 899.00 0.00 \N \N 4996 1240 2 699.0 1 2020-12-19 23:56:48.603562 2020-12-19 23:56:48.603562 3782 \N \N \N 0 PV1-V-1808 1 699.00 0.00 \N \N 4997 1240 2 199.0 1 2020-12-20 00:38:50.463057 2020-12-20 00:38:50.463057 3784 \N \N \N 0 PV1-V-1810 1 199.00 0.00 \N \N 4998 1240 2 549.0 1 2020-12-20 00:43:50.879834 2020-12-20 00:43:50.879834 3785 \N \N \N 0 PV1-V-1811 1 549.00 0.00 \N \N 4999 1240 2 69.0 1 2020-12-20 01:17:39.078701 2020-12-20 01:17:39.078701 3786 \N \N \N 0 PV1-V-1812 1 69.00 0.00 \N \N 5000 1240 2 189.0 1 2020-12-20 01:45:15.731444 2020-12-20 01:45:15.731444 3787 \N \N \N 0 PV1-V-1813 1 189.00 0.00 \N \N 5001 1240 1 999.0 1 2020-12-20 01:49:55.773924 2020-12-20 01:49:55.773924 3788 9007 \N \N 0 PV1-V-1814 1 \N 0.00 \N \N 5002 1241 2 1499.0 1 2020-12-20 06:08:40.288995 2020-12-20 06:08:40.288995 3789 \N \N \N 0 PV3-V-1055 1 1499.00 0.00 \N \N 5003 1241 2 1499.0 1 2020-12-20 06:09:12.714912 2020-12-20 06:09:12.714912 3790 \N \N \N 0 PV3-V-1056 1 1499.00 0.00 \N \N 5004 1241 2 1499.0 1 2020-12-20 06:09:28.970147 2020-12-20 06:09:28.970147 3791 \N \N \N 0 PV3-V-1057 1 1499.00 0.00 \N \N 5005 1241 2 1299.0 1 2020-12-20 06:09:52.63905 2020-12-20 06:09:52.63905 3792 \N \N \N 0 PV3-V-1058 1 1299.00 0.00 \N \N 5006 1241 2 1199.0 1 2020-12-20 06:10:32.961155 2020-12-20 06:10:32.961155 3793 \N \N \N 0 PV3-V-1059 1 1199.00 0.00 \N \N 5007 1241 2 119.0 1 2020-12-20 06:10:55.969023 2020-12-20 06:10:55.969023 3794 \N \N \N 0 PV3-V-1060 1 119.00 0.00 \N \N 5008 1241 2 1499.0 1 2020-12-20 06:11:17.121369 2020-12-20 06:11:17.121369 3795 \N \N \N 0 PV3-V-1061 1 1499.00 0.00 \N \N 5021 1242 2 390.0 0 2020-12-20 22:36:30.555119 2020-12-20 22:36:30.555119 \N \N \N 373 2 \N 1 \N \N \N \N 5011 1241 2 2099.0 1 2020-12-20 06:17:44.43072 2020-12-20 06:17:44.43072 3798 \N \N \N 0 PV3-V-1064 1 2099.00 0.00 \N \N 5012 1241 2 2099.0 1 2020-12-20 06:19:24.028306 2020-12-20 06:19:24.028306 3799 \N \N \N 0 PV3-V-1065 1 2099.00 0.00 \N \N 5013 1241 2 745.0 1 2020-12-20 06:19:48.874502 2020-12-20 06:19:48.874502 3707 \N \N \N 7 \N 1 745.00 0.00 \N \N 5014 1241 2 1299.0 1 2020-12-20 06:21:25.097429 2020-12-20 06:21:25.097429 3801 \N \N \N 0 PV3-V-1067 1 1299.00 0.00 \N \N 5015 1242 2 699.0 1 2020-12-20 18:32:25.270304 2020-12-20 18:32:25.270304 3802 \N \N \N 0 PV1-V-1815 1 699.00 0.00 \N \N 5016 1242 2 300.0 1 2020-12-20 18:55:52.410638 2020-12-20 18:55:52.410638 3669 \N \N \N 7 \N 1 300.00 0.00 \N \N 5017 1242 2 1300.0 0 2020-12-20 19:49:47.472506 2020-12-20 19:49:47.472506 \N \N \N 372 2 \N 1 \N \N \N \N 5018 1242 1 2000.0 1 2020-12-20 21:31:16.706725 2020-12-20 21:31:16.706725 3803 9180 \N \N 0 PV1-V-1816 1 \N 0.00 \N \N 5019 1242 2 99.0 1 2020-12-20 21:31:22.403016 2020-12-20 21:31:22.403016 3803 \N \N \N 0 PV1-V-1816 1 99.00 0.00 \N \N 5020 1242 1 189.0 1 2020-12-20 22:35:03.87226 2020-12-20 22:35:03.87226 3804 4984 \N \N 0 PV1-V-1817 1 \N 0.00 \N \N 5022 1242 2 69.0 1 2020-12-20 22:49:36.940987 2020-12-20 22:49:36.940987 3805 \N \N \N 0 PV1-V-1818 1 69.00 0.00 \N \N 5023 1243 3 1599.0 1 2020-12-21 17:54:11.499124 2020-12-21 17:54:11.499124 3806 \N \N \N 0 PV3-V-1068 1 \N 0.00 \N \N 5245 5024 1244 1 1899.0 1 2020-12-21 18:23:47.969553 2020-12-21 18:23:47.969553 3807 8791 \N \N 0 PV1-V-1819 1 \N 0.00 \N \N 5025 1243 4 1299.0 1 2020-12-21 18:35:53.198436 2020-12-21 18:35:53.198436 3808 5555 \N \N 0 PV3-V-1069 1 \N 0.00 \N \N 5026 1243 4 1199.0 1 2020-12-21 19:04:39.238211 2020-12-21 19:04:39.238211 3809 2544 \N \N 0 PV3-V-1069 1 \N 0.00 \N \N 5027 1244 2 700.0 1 2020-12-21 19:35:15.43323 2020-12-21 19:35:15.43323 3556 \N \N \N 4 \N 1 700.00 0.00 \N \N 5028 1244 1 1699.01 1 2020-12-21 20:53:49.926053 2020-12-21 20:53:49.926053 3811 1555 \N \N 0 PV1-V-1821 1 \N 0.00 \N \N 5029 1244 2 98.99 1 2020-12-21 21:20:17.777799 2020-12-21 21:20:17.777799 3812 \N \N \N 0 PV1-V-1822 1 98.99 0.00 \N \N 5030 1243 3 1599.0 1 2020-12-21 21:49:58.720094 2020-12-21 21:49:58.720094 3813 \N \N \N 0 PV3-V-1071 1 \N 0.00 \N \N 12255 5031 1244 2 49.0 1 2020-12-21 22:14:27.25728 2020-12-21 22:14:27.25728 3814 \N \N \N 0 PV1-V-1823 1 49.00 0.00 \N \N 5032 1243 2 811.0 1 2020-12-21 22:40:16.448792 2020-12-21 22:40:16.448792 3815 \N \N \N 0 PV3-V-1072 1 820.00 9.00 \N \N 5033 1244 2 1498.0 1 2020-12-21 23:04:33.525257 2020-12-21 23:04:33.525257 3816 \N \N \N 0 PV1-V-1824 1 1600.00 102.00 \N \N 5034 1244 3 4023.0 1 2020-12-21 23:38:01.681264 2020-12-21 23:38:01.681264 3817 \N \N \N 0 PV1-V-1825 1 \N 0.00 \N \N 12555 5035 1244 2 1199.0 1 2020-12-21 23:39:44.443015 2020-12-21 23:39:44.443015 3818 \N \N \N 0 PV1-V-1826 1 1199.00 0.00 \N \N 5036 1243 2 1088.0 1 2020-12-22 00:29:13.624586 2020-12-22 00:29:13.624586 3819 \N \N \N 0 PV3-V-1073 1 1100.00 12.00 \N \N 5037 1243 2 119.0 1 2020-12-22 00:30:36.919587 2020-12-22 00:30:36.919587 3820 \N \N \N 0 PV3-V-1074 1 119.00 0.00 \N \N 5041 1244 1 1499.0 1 2020-12-22 02:09:04.086318 2020-12-22 02:09:04.086318 3824 4952 \N \N 0 PV1-V-1829 1 \N 0.00 \N \N 5039 1244 1 1799.0 1 2020-12-22 01:08:04.851777 2020-12-22 01:08:04.851777 3822 5299 \N \N 0 PV1-V-1827 1 \N 0.00 \N \N 5040 1244 1 1399.0 1 2020-12-22 01:50:19.876639 2020-12-22 01:50:19.876639 3823 4952 \N \N 0 PV1-V-1828 1 \N 0.00 \N \N 5042 1243 2 700.0 1 2020-12-22 02:10:49.67946 2020-12-22 02:10:49.67946 3825 \N \N \N 6 PV3-V-1076 1 700.00 0.00 \N \N 5043 1244 1 1499.0 1 2020-12-22 02:11:39.493571 2020-12-22 02:11:39.493571 3826 6198 \N \N 0 PV1-V-1830 1 \N 0.00 \N \N 5044 1245 1 2398.0 1 2020-12-22 18:01:10.070785 2020-12-22 18:01:10.070785 3828 2255 \N \N 0 PV3-V-1078 1 \N 0.00 \N \N 5045 1245 2 1598.0 1 2020-12-22 18:16:51.498448 2020-12-22 18:16:51.498448 3829 \N \N \N 0 PV3-V-1079 1 1598.00 0.00 \N \N 5046 1245 2 1399.0 1 2020-12-22 19:11:35.282175 2020-12-22 19:11:35.282175 3830 \N \N \N 0 PV3-V-1080 1 1399.00 0.00 \N \N 5047 1245 3 1399.0 1 2020-12-22 19:21:01.98952 2020-12-22 19:21:01.98952 3831 \N \N \N 0 PV3-V-1081 1 \N 0.00 \N \N 25552 5048 1245 2 1699.0 1 2020-12-22 19:29:27.706297 2020-12-22 19:29:27.706297 3832 \N \N \N 0 PV3-V-1082 1 1699.00 0.00 \N \N 5049 1246 2 1666.0 1 2020-12-22 20:21:37.023952 2020-12-22 20:21:37.023952 3833 \N \N \N 0 PV1-V-1831 1 1700.00 34.00 \N \N 5051 1246 2 1499.0 1 2020-12-22 20:23:01.381146 2020-12-22 20:23:01.381146 3834 \N \N \N 0 PV1-V-1832 1 1500.00 1.00 \N \N 5050 1245 2 599.0 1 2020-12-22 20:22:58.683572 2020-12-22 20:22:58.683572 3835 \N \N \N 0 PV3-V-1083 1 599.00 0.00 \N \N 5052 1245 1 1799.0 1 2020-12-22 20:23:31.492303 2020-12-22 20:23:31.492303 3835 2251 \N \N 0 PV3-V-1083 1 \N 0.00 \N \N 5053 1246 2 1899.0 1 2020-12-22 20:28:05.920028 2020-12-22 20:28:05.920028 3836 \N \N \N 0 PV1-V-1833 1 1900.00 1.00 \N \N 5054 1245 1 1899.0 1 2020-12-22 20:37:35.694284 2020-12-22 20:37:35.694284 3837 5555 \N \N 0 PV3-V-1084 1 \N 0.00 \N \N 5055 1245 1 3296.0 1 2020-12-22 20:55:03.509372 2020-12-22 20:55:03.509372 3838 1125 \N \N 0 PV3-V-1085 1 \N 0.00 \N \N 5056 1246 1 1907.0 1 2020-12-22 21:00:48.753617 2020-12-22 21:00:48.753617 3839 9893 \N \N 0 PV1-V-1834 1 \N 0.00 \N \N 5057 1246 2 647.0 1 2020-12-22 21:05:56.619957 2020-12-22 21:05:56.619957 3840 \N \N \N 0 PV1-V-1835 1 700.00 53.00 \N \N 5058 1246 2 1196.0 1 2020-12-22 21:19:51.531207 2020-12-22 21:19:51.531207 3841 \N \N \N 0 PV1-V-1836 1 1200.00 4.00 \N \N 5059 1245 2 2746.0 1 2020-12-22 21:23:34.709236 2020-12-22 21:23:34.709236 3842 \N \N \N 0 PV3-V-1086 1 2746.00 0.00 \N \N 5061 1246 2 1129.0 1 2020-12-22 21:51:26.59507 2020-12-22 21:51:26.59507 3771 \N \N \N 7 \N 1 1500.00 371.00 \N \N 5062 1245 2 3005.0 1 2020-12-22 22:09:43.678385 2020-12-22 22:09:43.678385 3844 \N \N \N 0 PV3-V-1088 1 3005.00 0.00 \N \N 5063 1245 1 1299.0 1 2020-12-22 22:25:39.161654 2020-12-22 22:25:39.161654 3443 1255 \N \N 7 \N 1 \N 0.00 \N \N 5064 1246 1 1199.0 1 2020-12-22 22:36:51.575042 2020-12-22 22:36:51.575042 3845 5214 \N \N 0 PV1-V-1837 1 \N 0.00 \N \N 5065 1245 2 250.0 1 2020-12-22 23:07:14.336019 2020-12-22 23:07:14.336019 3846 \N \N \N 0 PV3-V-1089 1 250.00 0.00 \N \N 5066 1245 2 500.0 1 2020-12-22 23:08:55.443484 2020-12-22 23:08:55.443484 3847 \N \N \N 6 PV3-V-1090 1 500.00 0.00 \N \N 5067 1245 2 699.0 1 2020-12-22 23:12:39.946133 2020-12-22 23:12:39.946133 3848 \N \N \N 0 PV3-V-1091 1 1000.00 301.00 \N \N 5068 1245 2 799.0 1 2020-12-22 23:13:44.566424 2020-12-22 23:13:44.566424 3847 \N \N \N 7 \N 1 799.00 0.00 \N \N 5070 1245 1 1000.0 1 2020-12-22 23:38:54.408038 2020-12-22 23:38:54.408038 3849 5525 \N \N 0 PV3-V-1092 1 \N 0.00 \N \N 5071 1245 1 949.0 1 2020-12-22 23:52:42.625199 2020-12-22 23:52:42.625199 3850 4112 \N \N 0 PV3-V-1093 1 \N 0.00 \N \N 5072 1245 2 99.0 1 2020-12-23 00:16:08.002494 2020-12-23 00:16:08.002494 3851 \N \N \N 0 PV3-V-1094 1 99.00 0.00 \N \N 5073 1245 2 1388.0 1 2020-12-23 00:25:31.630297 2020-12-23 00:25:31.630297 3852 \N \N \N 0 PV3-V-1095 1 1500.00 112.00 \N \N 5074 1246 2 599.0 1 2020-12-23 00:42:03.761736 2020-12-23 00:42:03.761736 3853 \N \N \N 0 PV1-V-1838 1 600.00 1.00 \N \N 5075 1245 2 1478.0 1 2020-12-23 00:55:16.849731 2020-12-23 00:55:16.849731 3854 \N \N \N 0 PV3-V-1096 1 1500.00 22.00 \N \N 5076 1245 2 200.0 1 2020-12-23 01:25:09.489555 2020-12-23 01:25:09.489555 3855 \N \N \N 6 PV3-V-1097 1 200.00 0.00 \N \N 5077 1245 2 1049.0 1 2020-12-23 01:29:40.966414 2020-12-23 01:29:40.966414 3855 \N \N \N 7 \N 1 1049.00 0.00 \N \N 5078 1245 1 1599.0 1 2020-12-23 01:30:21.533586 2020-12-23 01:30:21.533586 3856 1155 \N \N 0 PV3-V-1098 1 \N 0.00 \N \N 5079 1245 1 649.0 1 2020-12-23 01:40:17.55012 2020-12-23 01:40:17.55012 3857 1525 \N \N 0 PV3-V-1099 1 \N 0.00 \N \N 5080 1246 2 869.0 1 2020-12-23 01:41:39.949356 2020-12-23 01:41:39.949356 3858 \N \N \N 0 PV1-V-1839 1 870.00 1.00 \N \N 5081 1245 2 1249.0 1 2020-12-23 01:48:59.840385 2020-12-23 01:48:59.840385 3859 \N \N \N 0 PV3-V-1100 1 1250.00 1.00 \N \N 5082 1245 2 827.0 1 2020-12-23 01:52:34.970534 2020-12-23 01:52:34.970534 3860 \N \N \N 0 PV3-V-1101 1 827.00 0.00 \N \N 5083 1245 1 500.0 1 2020-12-23 01:54:24.717743 2020-12-23 01:54:24.717743 3861 1222 \N \N 0 PV3-V-1102 1 \N 0.00 \N \N 5084 1245 2 1199.0 1 2020-12-23 01:54:35.660128 2020-12-23 01:54:35.660128 3861 \N \N \N 0 PV3-V-1102 1 1199.00 0.00 \N \N 5085 1245 2 3348.0 1 2020-12-23 02:14:30.797999 2020-12-23 02:14:30.797999 3862 \N \N \N 0 PV3-V-1103 1 3348.00 0.00 \N \N 5086 1245 2 500.0 1 2020-12-23 02:25:06.245632 2020-12-23 02:25:06.245632 3720 \N \N \N 4 \N 1 500.00 0.00 \N \N 5087 1246 2 699.0 1 2020-12-23 02:27:06.635759 2020-12-23 02:27:06.635759 3863 \N \N \N 0 PV1-V-1840 1 1000.00 301.00 \N \N 5088 1245 2 769.0 1 2020-12-23 02:42:15.1133 2020-12-23 02:42:15.1133 3864 \N \N \N 0 PV3-V-1104 1 769.00 0.00 \N \N 5089 1245 2 500.0 0 2020-12-23 02:44:46.589347 2020-12-23 02:44:46.589347 3748 \N \N \N 0 \N 1 \N \N \N \N 5090 1245 3 500.0 1 2020-12-23 02:52:23.62933 2020-12-23 02:52:23.62933 3865 \N \N \N 0 PV3-V-1105 1 \N 0.00 \N \N 1455 5091 1245 2 2248.0 1 2020-12-23 02:52:30.041421 2020-12-23 02:52:30.041421 3865 \N \N \N 0 PV3-V-1105 1 2248.00 0.00 \N \N 1455 5092 1247 1 1499.0 1 2020-12-23 03:34:06.181664 2020-12-23 03:34:06.181664 3866 1222 \N \N 0 PV3-V-1106 1 \N 0.00 \N \N 5093 1247 2 1328.0 1 2020-12-23 03:34:29.131524 2020-12-23 03:34:29.131524 3867 \N \N \N 0 PV3-V-1107 1 1328.00 0.00 \N \N 5094 1247 2 1249.0 1 2020-12-23 03:35:06.746491 2020-12-23 03:35:06.746491 3868 \N \N \N 0 PV3-V-1108 1 1249.00 0.00 \N \N 5095 1247 2 1499.0 1 2020-12-23 03:35:30.970001 2020-12-23 03:35:30.970001 3869 \N \N \N 0 PV3-V-1109 1 1499.00 0.00 \N \N 5096 1247 2 928.0 1 2020-12-23 03:35:57.766122 2020-12-23 03:35:57.766122 3870 \N \N \N 0 PV3-V-1110 1 928.00 0.00 \N \N 5097 1247 2 1798.0 1 2020-12-23 03:36:27.789202 2020-12-23 03:36:27.789202 3871 \N \N \N 0 PV3-V-1111 1 1798.00 0.00 \N \N 5098 1247 2 1499.0 1 2020-12-23 03:37:18.173478 2020-12-23 03:37:18.173478 3872 \N \N \N 0 PV3-V-1112 1 1499.00 0.00 \N \N 5099 1247 2 3266.0 1 2020-12-23 03:39:15.736157 2020-12-23 03:39:15.736157 3873 \N \N \N 0 PV3-V-1113 1 3266.00 0.00 \N \N 5100 1247 2 1488.0 1 2020-12-23 03:39:53.45022 2020-12-23 03:39:53.45022 3874 \N \N \N 0 PV3-V-1114 1 1488.00 0.00 \N \N 5101 1247 1 749.0 1 2020-12-23 17:37:39.381722 2020-12-23 17:37:39.381722 3875 5554 \N \N 0 PV3-V-1115 1 \N 0.00 \N \N 5102 1247 1 398.0 1 2020-12-23 17:43:48.64234 2020-12-23 17:43:48.64234 3876 5255 \N \N 0 PV3-V-1116 1 \N 0.00 \N \N 5103 1247 4 2098.0 1 2020-12-23 18:28:43.75815 2020-12-23 18:28:43.814861 3665 4144 \N \N 3 \N 1 \N 0.00 \N \N 12565 5104 1247 3 1397.0 1 2020-12-23 18:29:11.749256 2020-12-23 18:29:11.810116 2905 \N \N \N 3 \N 1 \N 0.00 \N \N 14144 5105 1247 2 3267.0 1 2020-12-23 18:42:49.625485 2020-12-23 18:42:49.625485 3877 \N \N \N 0 PV3-V-1117 1 3500.00 233.00 \N \N 5106 1247 2 1599.0 1 2020-12-23 18:44:33.808648 2020-12-23 18:44:33.808648 3878 \N \N \N 0 PV3-V-1118 1 1599.00 0.00 \N \N 5107 1247 2 799.0 1 2020-12-23 18:52:16.805261 2020-12-23 18:52:16.805261 3879 \N \N \N 0 PV3-V-1119 1 1000.00 201.00 \N \N 5108 1248 1 2598.0 1 2020-12-23 19:09:14.024958 2020-12-23 19:09:14.024958 3880 5503 \N \N 0 PV1-V-1841 1 \N 0.00 \N \N 5109 1247 2 189.0 1 2020-12-23 19:12:25.949659 2020-12-23 19:12:25.949659 3881 \N \N \N 0 PV3-V-1120 1 189.00 0.00 \N \N 5110 1247 1 1249.0 1 2020-12-23 19:54:30.27889 2020-12-23 19:54:30.27889 3883 4141 \N \N 0 PV3-V-1122 1 \N 0.00 \N \N 5111 1248 2 1499.0 1 2020-12-23 20:23:09.504188 2020-12-23 20:23:09.504188 3884 \N \N \N 0 PV1-V-1842 1 1500.00 1.00 \N \N 5112 1247 1 638.0 1 2020-12-23 20:41:35.751598 2020-12-23 20:41:35.751598 3885 1233 \N \N 0 PV3-V-1123 1 \N 0.00 \N \N 5113 1247 2 1600.0 1 2020-12-23 21:44:56.448128 2020-12-23 21:44:56.448128 3886 \N \N \N 0 PV3-V-1124 1 1600.00 0.00 \N \N 5114 1247 2 549.0 1 2020-12-23 22:10:32.51037 2020-12-23 22:10:32.51037 3663 \N \N \N 7 \N 1 549.00 0.00 \N \N 5115 1247 2 599.0 1 2020-12-23 22:10:56.467366 2020-12-23 22:10:56.467366 3662 \N \N \N 7 \N 1 599.00 0.00 \N \N 5116 1248 1 669.0 1 2020-12-23 22:28:47.586619 2020-12-23 22:28:47.586619 3887 1905 \N \N 0 PV1-V-1843 1 \N 0.00 \N \N 5117 1247 2 2547.0 1 2020-12-23 22:45:36.648548 2020-12-23 22:45:36.648548 3888 \N \N \N 0 PV3-V-1125 1 2550.00 3.00 \N \N 5118 1248 2 299.0 1 2020-12-23 23:03:33.973644 2020-12-23 23:03:33.973644 3889 \N \N \N 0 PV1-V-1844 1 500.00 201.00 \N \N 5119 1247 2 2099.0 1 2020-12-23 23:05:04.351553 2020-12-23 23:05:04.351553 3890 \N \N \N 0 PV3-V-1126 1 2099.00 0.00 \N \N 5120 1247 1 2298.0 1 2020-12-23 23:08:54.834818 2020-12-23 23:08:54.834818 3891 2255 \N \N 0 PV3-V-1127 1 \N 0.00 \N \N 5121 1247 2 1000.0 1 2020-12-23 23:19:03.496931 2020-12-23 23:19:03.496931 3892 \N \N \N 0 PV3-V-1128 1 1000.00 0.00 \N \N 5122 1248 2 699.0 1 2020-12-24 00:03:33.581539 2020-12-24 00:03:33.581539 3893 \N \N \N 0 PV1-V-1845 1 700.00 1.00 \N \N 5123 1247 1 1299.0 1 2020-12-24 00:20:15.581521 2020-12-24 00:20:15.581521 3894 1255 \N \N 0 PV3-V-1129 1 \N 0.00 \N \N 5124 1247 1 599.0 1 2020-12-24 00:38:19.955115 2020-12-24 00:38:19.955115 3720 1155 \N \N 7 \N 1 \N 0.00 \N \N 5126 1248 2 1728.0 1 2020-12-24 01:16:40.820577 2020-12-24 01:16:40.820577 3895 \N \N \N 0 PV1-V-1846 1 1750.00 22.00 \N \N 5127 1248 1 159.0 1 2020-12-24 01:19:47.660093 2020-12-24 01:19:47.660093 3896 2455 \N \N 0 PV1-V-1847 1 \N 0.00 \N \N 5128 1248 2 1599.0 1 2020-12-24 01:43:13.018334 2020-12-24 01:43:13.018334 3897 \N \N \N 0 PV1-V-1848 1 1600.00 1.00 \N \N 5129 1247 2 745.0 1 2020-12-24 01:58:42.110091 2020-12-24 01:58:42.110091 3898 \N \N \N 0 PV3-V-1130 1 1000.00 255.00 \N \N 5130 1248 2 529.0 1 2020-12-24 02:09:48.335306 2020-12-24 02:09:48.335306 3899 \N \N \N 0 PV1-V-1849 1 529.00 0.00 \N \N 5131 1247 2 599.0 1 2020-12-24 02:34:58.689713 2020-12-24 02:34:58.689713 3900 \N \N \N 0 PV3-V-1131 1 599.00 0.00 \N \N 5132 1247 2 499.0 1 2020-12-24 02:39:47.55276 2020-12-24 02:39:47.55276 3901 \N \N \N 0 PV3-V-1132 1 499.00 0.00 \N \N 5133 1250 2 1799.0 1 2020-12-24 18:02:05.159869 2020-12-24 18:02:05.159869 3902 \N \N \N 0 PV3-V-1133 1 1800.00 1.00 \N \N 5134 1250 2 799.0 1 2020-12-24 18:45:46.348986 2020-12-24 18:45:46.348986 3903 \N \N \N 0 PV3-V-1134 1 1000.00 201.00 \N \N 5135 1249 2 1699.0 1 2020-12-24 18:54:14.551867 2020-12-24 18:54:14.551867 3904 \N \N \N 0 PV1-V-1850 1 1700.00 1.00 \N \N 5136 1249 2 699.0 1 2020-12-24 19:17:52.191888 2020-12-24 19:17:52.191888 3905 \N \N \N 0 PV1-V-1851 1 699.00 0.00 \N \N 5137 1250 2 208.0 1 2020-12-24 19:29:35.634826 2020-12-24 19:29:35.634826 3906 \N \N \N 0 PV3-V-1135 1 250.00 42.00 \N \N 5138 1250 2 1899.0 1 2020-12-24 19:57:46.329908 2020-12-24 19:57:46.329908 3907 \N \N \N 0 PV3-V-1136 1 2000.00 101.00 \N \N 5139 1250 2 589.0 1 2020-12-24 20:07:39.524296 2020-12-24 20:07:39.524296 3908 \N \N \N 0 PV3-V-1137 1 600.00 11.00 \N \N 5140 1249 2 1138.0 1 2020-12-24 21:03:43.986375 2020-12-24 21:03:43.986375 3909 \N \N \N 0 PV1-V-1852 1 1138.00 0.00 \N \N 5141 1249 2 1345.0 1 2020-12-24 21:19:38.179948 2020-12-24 21:19:38.179948 3910 \N \N \N 0 PV1-V-1853 1 1345.00 0.00 \N \N 5142 1249 2 1449.0 1 2020-12-24 21:31:27.727074 2020-12-24 21:31:27.727074 3752 \N \N \N 7 \N 1 1449.00 0.00 \N \N 5146 1250 1 119.0 1 2020-12-24 22:02:06.21646 2020-12-24 22:02:06.21646 3914 4455 \N \N 0 PV3-V-1141 1 \N 0.00 \N \N 5144 1250 1 139.0 1 2020-12-24 21:44:07.710747 2020-12-24 21:44:07.710747 3912 1525 \N \N 0 PV3-V-1139 1 \N 0.00 \N \N 5145 1250 3 1359.0 1 2020-12-24 21:50:49.52415 2020-12-24 21:50:49.52415 3913 \N \N \N 0 PV3-V-1140 1 \N 0.00 \N \N 2456 5147 1250 2 599.0 1 2020-12-24 22:24:08.147866 2020-12-24 22:24:08.147866 3915 \N \N \N 0 PV3-V-1142 1 599.00 0.00 \N \N 5148 1250 2 369.0 1 2020-12-24 22:27:07.459898 2020-12-24 22:27:07.459898 3916 \N \N \N 0 PV3-V-1143 1 400.00 31.00 \N \N 5149 1250 2 189.0 1 2020-12-24 22:28:18.15326 2020-12-24 22:28:18.15326 3917 \N \N \N 0 PV3-V-1144 1 189.00 0.00 \N \N 5151 1250 2 1000.0 1 2020-12-24 22:50:52.54662 2020-12-24 22:50:52.54662 3919 \N \N \N 0 PV3-V-1145 1 1000.00 0.00 \N \N 5152 1250 2 1399.0 1 2020-12-24 22:57:10.623303 2020-12-24 22:57:10.623303 3920 \N \N \N 0 PV3-V-1146 1 1399.00 0.00 \N \N 5153 1249 2 1598.0 1 2020-12-24 22:57:21.774694 2020-12-24 22:57:21.774694 3921 \N \N \N 0 PV1-V-1855 1 1598.00 0.00 \N \N 5154 1249 2 1000.0 0 2020-12-24 23:03:16.439062 2020-12-24 23:03:16.439062 \N \N \N 374 2 \N 1 \N \N \N \N 5155 1250 3 1799.0 1 2020-12-25 00:01:07.703923 2020-12-25 00:01:07.703923 3922 \N \N \N 0 PV3-V-1147 1 \N 0.00 \N \N 14555 5156 1250 1 1199.0 1 2020-12-25 00:12:51.514405 2020-12-25 00:12:51.514405 3923 5225 \N \N 0 PV3-V-1148 1 \N 0.00 \N \N 5157 1249 2 600.0 1 2020-12-25 00:13:23.133777 2020-12-25 00:13:23.133777 3924 \N \N \N 0 PV1-V-1856 1 600.00 0.00 \N \N 5158 1249 2 400.0 1 2020-12-25 01:07:19.470508 2020-12-25 01:07:19.470508 3925 \N \N \N 3 \N 1 400.00 0.00 \N \N 5159 1250 2 1199.0 1 2020-12-25 01:19:07.871664 2020-12-25 01:19:07.871664 3926 \N \N \N 0 PV3-V-1149 1 1199.00 0.00 \N \N 5160 1250 2 1499.0 1 2020-12-25 01:24:40.973797 2020-12-25 01:24:40.973797 3927 \N \N \N 0 PV3-V-1150 1 1500.00 1.00 \N \N 5161 1250 2 1100.0 1 2020-12-25 01:41:50.723574 2020-12-25 01:41:50.723574 3737 \N \N \N 7 \N 1 1100.00 0.00 \N \N 5162 1250 2 999.0 1 2020-12-25 02:41:00.289456 2020-12-25 02:41:00.289456 3928 \N \N \N 0 PV3-V-1151 1 1000.00 1.00 \N \N 5163 1250 2 710.0 0 2020-12-25 02:45:25.579519 2020-12-25 02:45:25.579519 \N \N \N 375 2 \N 1 \N \N \N \N 5164 1252 2 130.0 1 2020-12-26 17:44:32.624744 2020-12-26 17:44:32.624744 3887 \N \N \N 5 \N 1 500.00 370.00 42 \N 5165 1251 1 1699.0 1 2020-12-26 18:31:27.188478 2020-12-26 18:31:27.188478 3929 2553 \N \N 0 PV3-V-1152 1 \N 0.00 \N \N 5166 1251 2 1200.0 1 2020-12-26 19:43:10.763503 2020-12-26 19:43:10.763503 3930 \N \N \N 0 PV3-V-1153 1 1200.00 0.00 \N \N 5167 1251 2 999.0 1 2020-12-26 19:50:56.395256 2020-12-26 19:50:56.395256 3931 \N \N \N 0 PV3-V-1154 1 1000.00 1.00 \N \N 5168 1252 1 3744.0 1 2020-12-26 22:23:34.233601 2020-12-26 22:23:34.233601 3932 8372 \N \N 0 PV1-V-1858 1 \N 0.00 \N \N 5169 1252 2 169.0 1 2020-12-26 22:26:17.607931 2020-12-26 22:26:17.607931 3933 \N \N \N 0 PV1-V-1859 1 169.00 0.00 \N \N 5170 1251 2 1718.0 1 2020-12-27 01:06:05.548271 2020-12-27 01:06:05.548271 3934 \N \N \N 0 PV3-V-1155 1 2000.00 282.00 \N \N 5171 1251 2 1050.0 0 2020-12-27 02:48:20.310112 2020-12-27 02:48:20.310112 \N \N \N 376 2 \N 1 \N \N \N \N 5172 1254 2 600.0 1 2020-12-28 20:32:05.832829 2020-12-28 20:32:05.832829 3935 \N \N \N 0 PV1-V-1860 1 600.00 0.00 \N \N 5173 1254 2 320.0 1 2020-12-28 20:39:25.354346 2020-12-28 20:39:25.354346 3936 \N \N \N 0 PV1-V-1861 1 500.00 180.00 \N \N 5174 1254 2 456.0 1 2020-12-28 20:54:17.614256 2020-12-28 20:54:17.614256 3937 \N \N \N 0 PV1-V-1862 1 500.00 44.00 \N \N 5175 1254 2 238.0 1 2020-12-28 21:15:57.277953 2020-12-28 21:15:57.277953 3938 \N \N \N 0 PV1-V-1863 1 300.00 62.00 \N \N 5176 1254 2 468.0 1 2020-12-28 21:19:35.230292 2020-12-28 21:19:35.230292 3939 \N \N \N 0 PV1-V-1864 1 500.00 32.00 \N \N 5177 1254 2 1327.0 1 2020-12-28 21:31:57.204755 2020-12-28 21:31:57.204755 3940 \N \N \N 0 PV1-V-1865 1 1500.00 173.00 \N \N 5178 1254 2 2988.0 1 2020-12-28 22:48:17.917411 2020-12-28 22:48:17.917411 3941 \N \N \N 0 PV1-V-1866 1 3000.00 12.00 \N \N 5179 1254 2 299.0 1 2020-12-28 22:54:14.133957 2020-12-28 22:54:14.133957 3942 \N \N \N 0 PV1-V-1867 1 299.00 0.00 \N \N 5180 1254 2 500.0 1 2020-12-28 23:11:55.741673 2020-12-28 23:11:55.741673 3943 \N \N \N 6 PV1-V-1868 1 500.00 0.00 \N \N 5181 1254 1 699.0 1 2020-12-28 23:41:18.903135 2020-12-28 23:41:18.903135 3944 1715 \N \N 0 PV1-V-1869 1 \N 0.00 \N \N 5182 1255 2 1399.0 1 2020-12-28 23:45:33.082837 2020-12-28 23:45:33.082837 3945 \N \N \N 0 PV3-V-1156 1 1400.00 1.00 \N \N 5183 1255 2 589.0 1 2020-12-29 00:29:12.532653 2020-12-29 00:29:12.532653 3946 \N \N \N 0 PV3-V-1157 1 589.00 0.00 \N \N 5184 1255 1 1199.0 1 2020-12-29 01:18:36.392169 2020-12-29 01:18:36.392169 3947 1245 \N \N 0 PV3-V-1158 1 \N 0.00 \N \N 5185 1255 3 899.0 1 2020-12-29 01:26:50.453931 2020-12-29 01:26:50.453931 3948 \N \N \N 0 PV3-V-1159 1 \N 0.00 \N \N 15225 5186 1255 1 3498.0 1 2020-12-29 02:49:50.11357 2020-12-29 02:49:50.11357 3950 4142 \N \N 0 PV3-V-1161 1 \N 0.00 \N \N 5187 1256 2 500.0 1 2020-12-29 18:17:12.963865 2020-12-29 18:17:12.963865 3556 \N \N \N 4 \N 1 500.00 0.00 \N \N 5189 1256 2 577.0 1 2020-12-29 19:05:50.438988 2020-12-29 19:05:50.438988 3943 \N \N \N 7 \N 1 700.00 123.00 \N \N 5191 1256 2 249.0 1 2020-12-29 19:23:27.279902 2020-12-29 19:23:27.279902 3951 \N \N \N 0 PV1-V-1870 1 250.00 1.00 \N \N 5192 1256 2 900.0 1 2020-12-29 19:34:24.145382 2020-12-29 19:34:24.145382 3952 \N \N \N 0 PV1-V-1871 1 900.00 0.00 \N \N 5193 1256 2 999.0 1 2020-12-29 21:55:14.908418 2020-12-29 21:55:14.908418 3953 \N \N \N 0 PV1-V-1872 1 1100.00 101.00 \N \N 5194 1256 2 1400.0 1 2020-12-29 23:06:26.458831 2020-12-29 23:06:26.458831 3954 \N \N \N 0 PV1-V-1873 1 1400.00 0.00 \N \N 5196 1256 2 200.0 1 2020-12-29 23:48:09.137224 2020-12-29 23:48:09.137224 3957 \N \N \N 6 PV1-V-1875 1 200.00 0.00 \N \N 5197 1257 1 499.0 1 2020-12-29 23:48:51.206125 2020-12-29 23:48:51.206125 3956 2224 \N \N 0 PV3-V-1162 1 \N 0.00 \N \N 5198 1256 2 960.0 1 2020-12-30 00:17:23.830367 2020-12-30 00:17:23.830367 3958 \N \N \N 0 PV1-V-1876 1 960.00 0.00 \N \N 5199 1256 2 1405.0 1 2020-12-30 01:48:47.905286 2020-12-30 01:48:47.905286 3959 \N \N \N 0 PV1-V-1877 1 1500.00 95.00 \N \N 5201 1258 2 200.0 1 2020-12-30 17:49:31.020923 2020-12-30 17:49:31.020923 3960 \N \N \N 6 PV3-V-1163 1 200.00 0.00 \N \N 5203 1259 2 999.0 1 2020-12-30 17:51:45.252671 2020-12-30 17:51:45.252671 3961 \N \N \N 0 PV1-V-1878 1 1000.00 1.00 \N \N 5204 1258 2 579.0 1 2020-12-30 17:55:05.318401 2020-12-30 17:55:05.318401 3962 \N \N \N 0 PV3-V-1164 1 600.00 21.00 \N \N 5205 1259 2 1389.0 1 2020-12-30 18:16:50.030636 2020-12-30 18:16:50.030636 3963 \N \N \N 0 PV1-V-1879 1 1500.00 111.00 \N \N 5206 1258 2 858.0 1 2020-12-30 18:30:01.565835 2020-12-30 18:30:01.565835 3964 \N \N \N 0 PV3-V-1165 1 1000.00 142.00 \N \N 5207 1258 3 1999.0 1 2020-12-30 19:46:28.942733 2020-12-30 19:46:28.942733 3965 \N \N \N 0 PV3-V-1166 1 \N 0.00 \N \N 12555 5208 1258 2 899.0 0 2020-12-30 20:29:31.298199 2020-12-30 20:29:31.298199 3948 \N \N \N 0 PV3-V-1159 1 \N \N \N \N 5209 1258 3 1399.0 1 2020-12-30 20:41:41.840328 2020-12-30 20:41:41.840328 3966 \N \N \N 0 PV3-V-1167 1 \N 0.00 \N \N 1566 5210 1258 2 799.0 1 2020-12-30 20:57:08.714243 2020-12-30 20:57:08.714243 3967 \N \N \N 0 PV3-V-1168 1 800.00 1.00 \N \N 5211 1258 2 600.0 1 2020-12-30 21:59:32.304237 2020-12-30 21:59:32.304237 3969 \N \N \N 0 PV3-V-1170 1 600.00 0.00 \N \N 5212 1259 4 825.0 1 2020-12-30 22:08:20.23929 2020-12-30 22:08:20.23929 3970 2251 \N \N 0 PV1-V-1880 1 \N 0.00 \N \N 5213 1258 2 783.0 1 2020-12-30 22:18:21.782885 2020-12-30 22:18:21.782885 3971 \N \N \N 0 PV3-V-1171 1 1000.00 217.00 \N \N 5214 1258 1 1403.0 1 2020-12-30 22:34:45.576695 2020-12-30 22:34:45.576695 3973 1223 \N \N 0 PV3-V-1173 1 \N 0.00 \N \N 5215 1259 2 189.0 1 2020-12-30 23:16:57.431872 2020-12-30 23:16:57.431872 3974 \N \N \N 0 PV1-V-1881 1 200.00 11.00 \N \N 5216 1258 1 698.0 1 2020-12-30 23:27:00.734286 2020-12-30 23:27:00.734286 3976 1552 \N \N 0 PV3-V-1175 1 \N 0.00 \N \N 5217 1258 1 359.0 1 2020-12-30 23:31:34.627216 2020-12-30 23:31:34.627216 3977 5525 \N \N 0 PV3-V-1176 1 \N 0.00 \N \N 5218 1259 2 599.0 1 2020-12-30 23:35:55.047737 2020-12-30 23:35:55.047737 3978 \N \N \N 0 PV1-V-1882 1 1000.00 401.00 \N \N 5219 1258 2 1488.0 1 2020-12-30 23:39:02.412844 2020-12-30 23:39:02.412844 3979 \N \N \N 0 PV3-V-1177 1 1500.00 12.00 \N \N 5220 1258 2 1100.0 1 2020-12-30 23:54:37.968179 2020-12-30 23:54:37.968179 3980 \N \N \N 0 PV3-V-1178 1 1100.00 0.00 \N \N 5222 1259 2 300.0 1 2020-12-31 00:02:28.052271 2020-12-31 00:02:28.052271 3986 \N \N \N 6 PV1-V-1887 1 300.00 0.00 \N \N 5223 1258 2 699.0 1 2020-12-31 00:02:51.591242 2020-12-31 00:02:51.591242 3985 \N \N \N 0 PV3-V-1179 1 700.00 1.00 \N \N 5224 1258 2 98.0 1 2020-12-31 00:08:55.273476 2020-12-31 00:08:55.273476 3987 \N \N \N 0 PV3-V-1180 1 500.00 402.00 \N \N 5225 1259 1 1349.0 1 2020-12-31 00:11:51.188558 2020-12-31 00:11:51.188558 3988 9710 \N \N 0 PV1-V-1888 1 \N 0.00 \N \N 5226 1258 2 699.0 1 2020-12-31 00:20:03.9066 2020-12-31 00:20:03.9066 3989 \N \N \N 0 PV3-V-1181 1 699.00 0.00 \N \N 5227 1259 2 469.0 1 2020-12-31 00:32:18.775668 2020-12-31 00:32:18.775668 3990 \N \N \N 0 PV1-V-1889 1 500.00 31.00 \N \N 5228 1258 2 400.0 1 2020-12-31 01:00:44.471346 2020-12-31 01:00:44.471346 3991 \N \N \N 0 PV3-V-1182 1 400.00 0.00 \N \N 5229 1258 2 399.0 1 2020-12-31 01:02:48.753876 2020-12-31 01:02:48.753876 3992 \N \N \N 0 PV3-V-1183 1 500.00 101.00 \N \N 5230 1259 1 825.0 1 2020-12-31 01:17:27.766425 2020-12-31 01:17:27.766425 3993 8058 \N \N 0 PV1-V-1890 1 \N 0.00 \N \N 5231 1258 2 179.0 1 2020-12-31 01:51:40.477634 2020-12-31 01:51:40.477634 3994 \N \N \N 0 PV3-V-1184 1 200.00 21.00 \N \N 5232 1258 2 499.0 1 2020-12-31 01:54:49.564454 2020-12-31 01:54:49.564454 3995 \N \N \N 0 PV3-V-1185 1 499.00 0.00 \N \N 5233 1258 2 1399.0 0 2020-12-31 02:01:25.717142 2020-12-31 02:01:25.717142 3831 \N \N \N 0 PV3-V-1081 1 \N \N \N \N 5234 1258 3 1399.0 1 2020-12-31 02:01:53.282302 2020-12-31 02:01:53.282302 3996 \N \N \N 0 PV3-V-1186 1 \N 0.00 \N \N 12223 5235 1258 2 200.0 1 2020-12-31 02:02:04.839222 2020-12-31 02:02:04.839222 3996 \N \N \N 0 PV3-V-1186 1 200.00 0.00 \N \N 12223 5236 1258 2 825.0 1 2020-12-31 02:10:04.676536 2020-12-31 02:10:04.676536 3997 \N \N \N 0 PV3-V-1187 1 825.00 0.00 \N \N 5237 1258 2 999.0 1 2020-12-31 02:35:08.347376 2020-12-31 02:35:08.347376 3722 \N \N \N 7 \N 1 999.00 0.00 \N \N 5238 1258 3 2099.0 1 2020-12-31 02:44:17.046159 2020-12-31 02:44:17.046159 3998 \N \N \N 0 PV3-V-1188 1 \N 0.00 \N \N 122233 5239 1261 3 1260.0 1 2020-12-31 03:15:53.482079 2020-12-31 03:15:53.482079 3999 \N \N \N 0 PV3-V-1189 1 \N 0.00 \N \N 1125 5240 1261 1 2070.0 1 2020-12-31 03:25:45.472672 2020-12-31 03:25:45.472672 4000 1225 \N \N 0 PV3-V-1190 1 \N 0.00 \N \N 5241 1261 2 600.0 1 2020-12-31 03:26:06.214178 2020-12-31 03:26:06.214178 4000 \N \N \N 0 PV3-V-1190 1 600.00 0.00 \N \N 5242 1262 2 699.0 1 2020-12-31 19:10:40.619628 2020-12-31 19:10:40.619628 4001 \N \N \N 0 PV3-V-1191 1 1000.00 301.00 \N \N 5243 1262 4 1899.0 1 2020-12-31 19:15:05.161569 2020-12-31 19:15:05.161569 4002 3578 \N \N 0 PV3-V-1192 1 \N 0.00 \N \N 5244 1260 2 999.0 1 2020-12-31 20:11:16.553135 2020-12-31 20:11:16.553135 4003 \N \N \N 0 PV1-V-1891 1 1000.00 1.00 \N \N 5245 1260 2 698.0 1 2020-12-31 20:20:48.4466 2020-12-31 20:20:48.4466 4004 \N \N \N 0 PV1-V-1892 1 1000.00 302.00 \N \N 5246 1260 1 939.0 1 2020-12-31 20:23:08.332419 2020-12-31 20:23:08.332419 3986 1252 \N \N 7 \N 1 \N 0.00 \N \N 5247 1260 1 399.0 1 2020-12-31 20:37:28.019502 2020-12-31 20:37:28.019502 2726 1551 \N \N 7 \N 1 \N 0.00 \N \N 5248 1260 2 1438.0 1 2020-12-31 20:39:05.216056 2020-12-31 20:39:05.216056 4005 \N \N \N 0 PV1-V-1893 1 1438.00 0.00 \N \N 5249 1262 2 1389.0 1 2020-12-31 20:45:24.762397 2020-12-31 20:45:24.762397 4006 \N \N \N 0 PV3-V-1193 1 1400.00 11.00 \N \N 5250 1260 2 1599.0 1 2020-12-31 21:07:36.941576 2020-12-31 21:07:36.941576 4007 \N \N \N 0 PV1-V-1894 1 2000.00 401.00 \N \N 5252 1262 2 98.0 1 2020-12-31 21:13:43.827567 2020-12-31 21:13:43.827567 4008 \N \N \N 0 PV3-V-1194 1 100.00 2.00 \N \N 5253 1260 2 200.0 0 2020-12-31 21:32:03.388138 2020-12-31 21:32:03.388138 3957 \N \N \N 0 \N 1 \N \N \N \N 5254 1260 3 200.0 1 2020-12-31 21:32:59.021855 2020-12-31 21:32:59.021855 4009 \N \N \N 0 PV1-V-1895 1 \N 0.00 \N \N 1122 5255 1260 2 199.0 1 2020-12-31 21:33:09.331388 2020-12-31 21:33:09.331388 4009 \N \N \N 0 PV1-V-1895 1 199.00 0.00 \N \N 1122 5256 1260 2 350.0 1 2020-12-31 21:40:36.673142 2020-12-31 21:40:36.673142 4010 \N \N \N 0 PV1-V-1896 1 500.00 150.00 \N \N 5257 1262 1 499.0 1 2020-12-31 21:47:25.043024 2020-12-31 21:47:25.043024 4011 4255 \N \N 0 PV3-V-1195 1 \N 0.00 \N \N 5477 1331 2 1400.0 1 2021-02-14 00:03:45.658009 2021-02-14 00:03:45.658009 4153 \N \N \N 7 \N 1 1400.00 0.00 \N \N 5258 1262 1 1399.0 1 2020-12-31 22:01:20.691329 2020-12-31 22:01:20.691329 4012 2112 \N \N 0 PV3-V-1196 1 \N 0.00 \N \N 5259 1260 1 1218.0 1 2020-12-31 22:08:06.682126 2020-12-31 22:08:06.682126 4014 2252 \N \N 0 PV1-V-1898 1 \N 0.00 \N \N 5260 1262 1 1199.0 1 2020-12-31 22:09:04.407121 2020-12-31 22:09:04.407121 4015 5114 \N \N 0 PV3-V-1197 1 \N 0.00 \N \N 5261 1260 2 189.0 1 2020-12-31 22:34:08.156766 2020-12-31 22:34:08.156766 4016 \N \N \N 0 PV1-V-1899 1 500.00 311.00 \N \N 5262 1262 2 599.0 1 2020-12-31 22:36:01.390047 2020-12-31 22:36:01.390047 4017 \N \N \N 0 PV3-V-1198 1 700.00 101.00 \N \N 5263 1262 1 189.0 1 2020-12-31 22:37:21.44309 2020-12-31 22:37:21.44309 4018 2452 \N \N 0 PV3-V-1199 1 \N 0.00 \N \N 5264 1262 1 699.0 1 2020-12-31 22:41:13.341657 2020-12-31 22:41:13.341657 4019 5241 \N \N 0 PV3-V-1200 1 \N 0.00 \N \N 5265 1260 1 1398.0 1 2020-12-31 22:44:06.062383 2020-12-31 22:44:06.062383 4020 1255 \N \N 0 PV1-V-1900 1 \N 0.00 \N \N 5266 1260 2 3439.0 1 2020-12-31 22:51:00.103366 2020-12-31 22:51:00.103366 4021 \N \N \N 0 PV1-V-1901 1 3500.00 61.00 \N \N 5267 1260 2 109.0 0 2020-12-31 23:24:02.642784 2020-12-31 23:24:02.642784 \N \N \N 377 2 \N 1 \N \N \N \N 5268 1263 2 1799.0 1 2021-01-01 00:02:29.045508 2021-01-01 00:02:29.045508 4022 \N \N \N 0 PV1-V-1902 1 2000.00 201.00 \N \N 5269 1262 2 189.0 1 2021-01-01 00:14:42.963906 2021-01-01 00:14:42.963906 4023 \N \N \N 0 PV3-V-1201 1 189.00 0.00 \N \N 5270 1262 2 1045.0 1 2021-01-01 01:06:16.923608 2021-01-01 01:06:16.923608 4024 \N \N \N 0 PV3-V-1202 1 1100.00 55.00 \N \N 5271 1264 2 664.8 1 2021-01-02 23:26:09.64427 2021-01-02 23:26:09.64427 4025 \N \N \N 0 PV3-V-1203 1 700.00 35.20 \N \N 5272 1264 2 509.4 1 2021-01-02 23:29:23.510968 2021-01-02 23:29:23.510968 4026 \N \N \N 0 PV3-V-1204 1 520.00 10.60 \N \N 5273 1264 4 1499.0 1 2021-01-02 23:55:18.957324 2021-01-02 23:55:18.957324 4027 7542 \N \N 0 PV3-V-1205 1 \N 0.00 \N \N 5274 1264 2 1200.0 0 2021-01-03 01:50:44.069056 2021-01-03 01:50:44.069056 \N \N \N 378 2 \N 1 \N \N \N \N 5275 1265 4 1599.0 1 2021-01-03 19:49:44.521267 2021-01-03 19:49:44.521267 4028 1245 \N \N 0 PV3-V-1206 1 \N 0.00 \N \N 5276 1266 2 489.0 1 2021-01-04 21:20:18.244325 2021-01-04 21:20:18.244325 4029 \N \N \N 0 PV1-V-1903 1 500.00 11.00 \N \N 5277 1266 4 1799.0 1 2021-01-04 21:22:51.299515 2021-01-04 21:22:51.299515 4030 5349 \N \N 0 PV1-V-1904 1 \N 0.00 \N \N 5278 1266 3 300.0 1 2021-01-04 21:45:21.797347 2021-01-04 21:45:21.832119 3925 \N \N \N 3 \N 1 \N 0.00 \N \N 1552 5279 1266 2 900.0 1 2021-01-04 21:47:28.504188 2021-01-04 21:47:28.575393 3925 \N \N \N 3 \N 1 900.00 0.00 \N \N 5280 1267 2 1299.0 1 2021-01-05 01:42:15.286837 2021-01-05 01:42:15.286837 4031 \N \N \N 0 PV3-V-1207 1 1299.00 0.00 \N \N 5281 1268 2 500.0 1 2021-01-05 18:18:35.273511 2021-01-05 18:18:35.273511 3556 \N \N \N 4 \N 1 500.00 0.00 \N \N 5282 1268 2 300.0 1 2021-01-05 20:19:09.674013 2021-01-05 20:19:09.674013 4032 \N \N \N 0 PV1-V-1905 1 400.00 100.00 \N \N 5283 1268 1 1499.0 1 2021-01-05 20:23:15.921876 2021-01-05 20:23:15.921876 4033 9493 \N \N 0 PV1-V-1906 1 \N 0.00 \N \N 5284 1268 2 540.0 1 2021-01-05 22:52:02.901274 2021-01-05 22:52:02.901274 4034 \N \N \N 0 PV1-V-1907 1 540.00 0.00 \N \N 5285 1268 2 0 1 2021-01-05 23:10:54.83183 2021-01-05 23:10:54.83183 4035 \N \N \N 0 PV1-V-1908 1 0.00 0.00 \N \N 5286 1269 2 1138.0 1 2021-01-06 00:08:47.955901 2021-01-06 00:08:47.955901 4036 \N \N \N 0 PV3-V-1208 1 1138.00 0.00 \N \N 5288 1270 2 49.0 1 2021-01-07 00:54:51.695913 2021-01-07 00:54:51.695913 4039 \N \N \N 0 PV1-V-1911 1 50.00 1.00 \N \N 5289 1270 2 699.0 1 2021-01-07 01:00:19.339 2021-01-07 01:00:19.339 3482 \N \N \N 7 \N 1 700.00 1.00 \N \N 5290 1271 2 600.0 1 2021-01-07 01:01:01.627155 2021-01-07 01:01:01.627155 4040 \N \N \N 6 PV3-V-1209 1 600.00 0.00 \N \N 5291 1271 3 2098.0 1 2021-01-07 01:08:50.900672 2021-01-07 01:08:50.900672 3742 \N \N \N 7 \N 1 \N 0.00 \N \N 12252 5292 1270 2 380.0 0 2021-01-07 01:47:29.812061 2021-01-07 01:47:29.812061 \N \N \N 379 2 \N 1 \N \N \N \N 5293 1273 2 569.0 1 2021-01-07 18:06:27.000242 2021-01-07 18:06:27.000242 4041 \N \N \N 0 PV3-V-1210 1 600.00 31.00 \N \N 5294 1272 2 720.0 1 2021-01-07 19:04:26.440626 2021-01-07 19:04:26.440626 4042 \N \N \N 0 PV1-V-1912 1 720.00 0.00 \N \N 5295 1272 2 840.0 1 2021-01-07 21:48:54.5713 2021-01-07 21:48:54.5713 4043 \N \N \N 0 PV1-V-1913 1 840.00 0.00 \N \N 5296 1273 2 245.0 1 2021-01-07 22:12:16.965178 2021-01-07 22:12:16.965178 4044 \N \N \N 0 PV3-V-1211 1 245.00 0.00 \N \N 5297 1273 2 840.0 1 2021-01-07 22:17:04.70571 2021-01-07 22:17:04.70571 4045 \N \N \N 0 PV3-V-1212 1 840.00 0.00 \N \N 5298 1272 2 296.0 0 2021-01-07 23:20:40.44323 2021-01-07 23:20:40.44323 \N \N \N 380 2 \N 1 \N \N \N \N 5299 1273 2 750.0 1 2021-01-07 23:54:01.696726 2021-01-07 23:54:01.696726 4046 \N \N \N 0 PV3-V-1213 1 800.00 50.00 \N \N 5300 1273 3 500.0 1 2021-01-08 00:19:06.572308 2021-01-08 00:19:06.619567 3589 \N \N \N 3 \N 1 \N 0.00 \N \N TRANS 5301 1272 2 1500.0 1 2021-01-08 00:58:08.746416 2021-01-08 00:58:08.800216 3373 \N \N \N 3 \N 1 1500.00 0.00 \N \N 5302 1273 2 800.0 0 2021-01-08 01:45:49.156147 2021-01-08 01:45:49.156147 \N \N \N 381 2 \N 1 \N \N \N \N 5304 1272 4 789.0 1 2021-01-08 02:05:24.422537 2021-01-08 02:05:24.422537 3426 4274 \N \N 7 \N 1 \N 0.00 \N \N 5305 1272 4 938.0 1 2021-01-08 02:10:15.273605 2021-01-08 02:10:15.273605 4047 4274 \N \N 0 PV1-V-1914 1 \N 0.00 \N \N 5306 1274 2 495.0 1 2021-01-08 18:19:40.562742 2021-01-08 18:19:40.562742 4048 \N \N \N 0 PV3-V-1214 1 500.00 5.00 \N \N 5307 1275 2 749.0 1 2021-01-08 19:06:09.102201 2021-01-08 19:06:09.102201 4049 \N \N \N 0 PV1-V-1915 1 749.00 0.00 \N \N 5308 1275 2 599.0 1 2021-01-08 19:30:13.975762 2021-01-08 19:30:13.975762 4050 \N \N \N 0 PV1-V-1916 1 599.00 0.00 \N \N 5309 1275 3 1499.0 1 2021-01-08 22:14:50.177965 2021-01-08 22:14:50.177965 4051 \N \N \N 0 PV1-V-1917 1 \N 0.00 \N \N SERVICIO A DOMICILIO 5310 1275 2 1469.0 1 2021-01-08 22:25:31.059048 2021-01-08 22:25:31.059048 4052 \N \N \N 0 PV1-V-1918 1 1469.00 0.00 \N \N 5314 1274 4 419.4 1 2021-01-08 23:43:36.229378 2021-01-08 23:43:36.229378 4053 4521 \N \N 0 PV3-V-1215 1 \N 0.00 \N \N 5315 1275 2 294.0 1 2021-01-09 01:15:33.796365 2021-01-09 01:15:33.796365 4054 \N \N \N 0 PV1-V-1919 1 294.00 0.00 \N \N 5316 1274 2 899.0 1 2021-01-09 01:40:04.138006 2021-01-09 01:40:04.138006 4055 \N \N \N 0 PV3-V-1216 1 1000.00 101.00 \N \N 5317 1274 2 1698.0 1 2021-01-09 02:32:20.362845 2021-01-09 02:32:20.362845 4056 \N \N \N 0 PV3-V-1217 1 1710.00 12.00 \N \N 5318 1276 2 2856.0 1 2021-01-09 21:37:54.86309 2021-01-09 21:37:54.86309 4057 \N \N \N 0 PV1-V-1920 1 2856.00 0.00 \N \N 5319 1276 2 360.0 1 2021-01-10 00:45:42.352756 2021-01-10 00:45:42.352756 4058 \N \N \N 0 PV1-V-1921 1 360.00 0.00 \N \N 5320 1277 2 100.0 0 2021-01-10 01:51:28.323236 2021-01-10 01:51:28.323236 \N \N \N 382 2 \N 1 \N \N \N \N 5321 1278 2 299.4 1 2021-01-10 19:54:16.055958 2021-01-10 19:54:16.055958 4059 \N \N \N 0 PV3-V-1218 1 300.00 0.60 \N \N 5322 1278 2 1499.0 1 2021-01-10 20:36:50.034692 2021-01-10 20:36:50.034692 4060 \N \N \N 0 PV3-V-1219 1 1500.00 1.00 \N \N 5323 1278 2 539.4 1 2021-01-10 21:13:04.649015 2021-01-10 21:13:04.649015 4061 \N \N \N 0 PV3-V-1220 1 600.00 60.60 \N \N 5325 1278 2 443.4 1 2021-01-10 21:40:19.458955 2021-01-10 21:40:19.458955 4062 \N \N \N 0 PV3-V-1221 1 443.40 0.00 \N \N 5326 1279 2 899.0 1 2021-01-11 20:25:56.832432 2021-01-11 20:25:56.832432 4063 \N \N \N 0 PV1-V-1922 1 899.00 0.00 \N \N 5327 1279 2 729.0 1 2021-01-11 20:32:27.15078 2021-01-11 20:32:27.15078 4064 \N \N \N 0 PV1-V-1923 1 729.00 0.00 \N \N 5328 1279 2 1549.0 1 2021-01-11 22:23:02.489717 2021-01-11 22:23:02.489717 4065 \N \N \N 0 PV1-V-1924 1 1549.00 0.00 \N \N 5329 1280 1 2158.0 1 2021-01-11 23:00:12.941605 2021-01-11 23:00:12.941605 4066 1125 \N \N 0 PV3-V-1222 1 \N 0.00 \N \N 5330 1280 2 60.0 1 2021-01-11 23:00:20.015176 2021-01-11 23:00:20.015176 4066 \N \N \N 0 PV3-V-1222 1 60.00 0.00 \N \N 5331 1280 2 540.0 1 2021-01-12 01:00:23.327446 2021-01-12 01:00:23.327446 4067 \N \N \N 0 PV3-V-1223 1 540.00 0.00 \N \N 5332 1280 2 462.0 1 2021-01-12 01:59:07.153574 2021-01-12 01:59:07.153574 4068 \N \N \N 0 PV3-V-1224 1 462.00 0.00 \N \N 5333 1281 2 1799.0 1 2021-01-12 19:00:17.55125 2021-01-12 19:00:17.55125 4069 \N \N \N 0 PV1-V-1925 1 1799.00 0.00 \N \N 5334 1282 2 443.4 1 2021-01-12 21:06:59.035862 2021-01-12 21:06:59.035862 4070 \N \N \N 0 PV3-V-1225 1 450.00 6.60 \N \N 5335 1281 2 869.0 1 2021-01-12 21:51:10.83987 2021-01-12 21:51:10.83987 4071 \N \N \N 0 PV1-V-1926 1 869.00 0.00 \N \N 5336 1282 2 200.0 0 2021-01-12 23:40:53.232923 2021-01-12 23:40:53.232923 \N \N \N 383 2 \N 1 \N \N \N \N 5337 1283 2 1499.0 1 2021-01-13 19:27:41.985483 2021-01-13 19:27:41.985483 4072 \N \N \N 0 PV3-V-1226 1 1499.00 0.00 \N \N 5338 1285 2 1099.0 1 2021-01-14 20:00:06.688079 2021-01-14 20:00:06.688079 4073 \N \N \N 0 PV1-V-1927 1 1099.00 0.00 \N \N 5339 1286 2 899.0 1 2021-01-14 22:53:24.394758 2021-01-14 22:53:24.394758 4074 \N \N \N 0 PV3-V-1227 1 1000.00 101.00 \N \N 5340 1286 2 600.0 1 2021-01-14 23:48:23.686808 2021-01-14 23:48:23.686808 4075 \N \N \N 0 PV3-V-1228 1 1000.00 400.00 \N \N 5341 1286 2 238.0 1 2021-01-15 01:07:47.768304 2021-01-15 01:07:47.768304 4076 \N \N \N 0 PV3-V-1229 1 500.00 262.00 \N \N 5342 1287 2 449.4 1 2021-01-15 17:53:06.201764 2021-01-15 17:53:06.201764 4077 \N \N \N 0 PV3-V-1230 1 500.00 50.60 \N \N 5343 1288 2 1704.0 1 2021-01-15 23:20:59.482074 2021-01-15 23:20:59.482074 4079 \N \N \N 0 PV1-V-1928 1 1704.00 0.00 \N \N 5344 1287 1 780.0 1 2021-01-15 23:41:09.205743 2021-01-15 23:41:09.205743 4080 1222 \N \N 0 PV3-V-1232 1 \N 0.00 \N \N 5345 1287 2 1000.0 1 2021-01-16 01:40:13.280996 2021-01-16 01:40:13.280996 4081 \N \N \N 0 PV3-V-1233 1 1000.00 0.00 \N \N 5346 1287 2 100.0 1 2021-01-16 01:40:19.869407 2021-01-16 01:40:19.869407 4081 \N \N \N 0 PV3-V-1233 1 100.00 0.00 \N \N 5347 1287 1 2498.0 1 2021-01-16 01:40:34.416236 2021-01-16 01:40:34.416236 4081 5255 \N \N 0 PV3-V-1233 1 \N 0.00 \N \N 5348 1287 2 880.0 1 2021-01-16 01:44:02.579812 2021-01-16 01:44:02.579812 4082 \N \N \N 0 PV3-V-1234 1 1000.00 120.00 \N \N 5349 1288 1 735.0 1 2021-01-16 01:51:14.332789 2021-01-16 01:51:14.332789 4083 8692 \N \N 0 PV1-V-1929 1 \N 0.00 \N \N 5350 1289 3 1047.0 1 2021-01-16 02:28:59.199912 2021-01-16 02:28:59.199912 4084 \N \N \N 0 PV3-V-1235 1 \N 0.00 \N \N 1525 5352 1289 1 1615.4 1 2021-01-16 18:31:49.145887 2021-01-16 18:31:49.145887 4085 1245 \N \N 0 PV3-V-1236 1 \N 0.00 \N \N 5353 1289 3 1399.0 1 2021-01-16 20:05:07.953487 2021-01-16 20:05:07.953487 4087 \N \N \N 0 PV3-V-1238 1 \N 0.00 \N \N 2145 5354 1289 1 1898.0 1 2021-01-16 21:10:03.237609 2021-01-16 21:10:03.237609 4088 4512 \N \N 0 PV3-V-1239 1 \N 0.00 \N \N 5355 1290 2 498.0 1 2021-01-16 21:53:30.278579 2021-01-16 21:53:30.278579 3556 \N \N \N 7 \N 1 498.00 0.00 \N \N 5356 1289 1 1399.0 1 2021-01-16 22:34:07.912766 2021-01-16 22:34:07.912766 4089 7854 \N \N 0 PV3-V-1240 1 \N 0.00 \N \N 5357 1290 2 569.0 1 2021-01-16 23:44:49.640606 2021-01-16 23:44:49.640606 4090 \N \N \N 0 PV1-V-1930 1 569.00 0.00 \N \N 5358 1290 2 1099.0 1 2021-01-17 00:20:43.94117 2021-01-17 00:20:43.94117 4091 \N \N \N 0 PV1-V-1931 1 1099.00 0.00 \N \N 5359 1290 2 180.0 0 2021-01-17 00:29:21.632709 2021-01-17 00:29:21.632709 \N \N \N 384 2 \N 1 \N \N \N \N 5360 1289 2 1050.0 0 2021-01-17 01:46:08.950201 2021-01-17 01:46:08.950201 \N \N \N 385 2 \N 1 \N \N \N \N 5361 1293 2 300.0 1 2021-01-19 00:05:42.899289 2021-01-19 00:05:42.899289 4093 \N \N \N 0 PV3-V-1242 1 500.00 200.00 \N \N 5363 1293 2 500.0 1 2021-01-19 00:08:43.316114 2021-01-19 00:08:43.316114 4095 \N \N \N 0 PV3-V-1244 1 500.00 0.00 \N \N 5364 1292 1 500.0 1 2021-01-19 01:19:00.869161 2021-01-19 01:19:00.869161 4096 680 \N \N 6 PV1-V-1932 1 \N 0.00 \N \N 5365 1292 2 20.0 0 2021-01-19 01:38:33.811128 2021-01-19 01:38:33.811128 \N \N \N 386 2 \N 1 \N \N \N \N 5366 1294 1 1988.0 1 2021-01-19 02:58:24.111926 2021-01-19 02:58:24.111926 4097 4452 \N \N 0 PV3-V-1245 1 \N 0.00 \N \N 5367 1295 2 2899.0 1 2021-01-19 19:46:47.886853 2021-01-19 19:46:47.886853 4098 \N \N \N 0 PV3-V-1246 1 2899.00 0.00 \N \N 5368 1295 3 500.0 1 2021-01-19 20:06:19.671868 2021-01-19 20:06:19.671868 4099 \N \N \N 0 PV3-V-1247 1 \N 0.00 \N \N 2255 5369 1295 2 339.0 1 2021-01-19 20:06:54.883938 2021-01-19 20:06:54.883938 4099 \N \N \N 0 PV3-V-1247 1 500.00 161.00 \N \N 2255 5370 1295 2 699.0 1 2021-01-19 20:10:59.673647 2021-01-19 20:10:59.673647 4100 \N \N \N 0 PV3-V-1248 1 699.00 0.00 \N \N 5371 1296 2 594.0 1 2021-01-19 21:40:58.286804 2021-01-19 21:40:58.286804 4101 \N \N \N 0 PV1-V-1933 1 594.00 0.00 \N \N 5372 1296 2 812.0 1 2021-01-19 22:55:34.567668 2021-01-19 22:55:34.567668 4102 \N \N \N 0 PV1-V-1934 1 812.00 0.00 \N \N 5373 1295 2 1199.0 1 2021-01-19 23:03:08.786132 2021-01-19 23:03:08.786132 4103 \N \N \N 0 PV3-V-1249 1 1200.00 1.00 \N \N 5374 1295 2 400.0 1 2021-01-20 00:14:55.947286 2021-01-20 00:14:55.947286 4104 \N \N \N 0 PV3-V-1250 1 400.00 0.00 \N \N 5375 1298 2 1199.0 1 2021-01-20 23:03:44.526218 2021-01-20 23:03:44.526218 4105 \N \N \N 0 PV3-V-1251 1 1500.00 301.00 \N \N 5376 1297 2 150.0 1 2021-01-21 02:09:48.290043 2021-01-21 02:09:48.290043 4106 \N \N \N 0 PV1-V-1935 1 150.00 0.00 \N \N 5383 1301 2 150.0 1 2021-01-22 20:09:57.418999 2021-01-22 20:09:57.418999 4113 \N \N \N 0 PV1-V-1940 1 150.00 0.00 \N \N 5378 1297 2 1499.0 1 2021-01-21 02:21:00.135392 2021-01-21 02:21:00.135392 4108 \N \N \N 0 PV1-V-1937 1 1499.00 0.00 \N \N 5379 1299 2 1079.4 1 2021-01-21 18:27:08.20099 2021-01-21 18:27:08.20099 4109 \N \N \N 0 PV3-V-1252 1 1100.00 20.60 \N \N 5380 1300 2 759.0 1 2021-01-21 21:03:25.199493 2021-01-21 21:03:25.199493 4110 \N \N \N 0 PV1-V-1938 1 759.00 0.00 \N \N 5381 1299 2 600.0 1 2021-01-21 21:33:52.808044 2021-01-21 21:33:52.808044 4111 \N \N \N 6 PV3-V-1253 1 600.00 0.00 \N \N 5382 1301 2 1299.0 1 2021-01-22 18:20:49.304356 2021-01-22 18:20:49.304356 4112 \N \N \N 0 PV1-V-1939 1 1299.00 0.00 \N \N 5384 1301 2 49.0 1 2021-01-22 23:05:15.715925 2021-01-22 23:05:15.715925 4114 \N \N \N 0 PV1-V-1941 1 49.00 0.00 \N \N 5385 1302 2 239.4 1 2021-01-22 23:38:32.907721 2021-01-22 23:38:32.907721 4115 \N \N \N 0 PV3-V-1254 1 500.00 260.60 \N \N 5386 1302 2 1699.0 1 2021-01-23 00:55:10.195235 2021-01-23 00:55:10.195235 4116 \N \N \N 0 PV3-V-1255 1 1699.00 0.00 \N \N 5387 1302 2 999.0 1 2021-01-23 00:57:37.74669 2021-01-23 00:57:37.74669 4040 \N \N \N 7 \N 1 1000.00 1.00 \N \N 5388 1302 2 840.0 1 2021-01-23 01:05:29.057175 2021-01-23 01:05:29.057175 4117 \N \N \N 0 PV3-V-1256 1 840.00 0.00 \N \N 5389 1303 1 500.0 1 2021-01-23 19:04:47.212377 2021-01-23 19:04:47.212377 4118 4501 \N \N 6 PV1-V-1942 1 \N 0.00 \N \N 5390 1304 4 1499.0 1 2021-01-23 19:37:44.863863 2021-01-23 19:37:44.863863 4119 1254 \N \N 0 PV3-V-1257 1 \N 0.00 \N \N 5391 1303 2 807.0 1 2021-01-23 20:18:32.183829 2021-01-23 20:18:32.183829 4120 \N \N \N 0 PV1-V-1943 1 807.00 0.00 \N \N 5392 1304 2 899.0 1 2021-01-23 21:52:56.36391 2021-01-23 21:52:56.36391 4122 \N \N \N 0 PV3-V-1259 1 900.00 1.00 \N \N 5393 1303 2 521.0 1 2021-01-23 22:19:09.450074 2021-01-23 22:19:09.450074 4123 \N \N \N 0 PV1-V-1944 1 522.00 1.00 \N \N 5394 1303 2 1499.0 1 2021-01-23 22:34:36.719645 2021-01-23 22:34:36.719645 4124 \N \N \N 0 PV1-V-1945 1 1499.00 0.00 \N \N 5395 1304 1 999.0 1 2021-01-24 01:07:24.200514 2021-01-24 01:07:24.200514 4125 4521 \N \N 0 PV3-V-1260 1 \N 0.00 \N \N 5396 1303 2 60.0 0 2021-01-24 01:44:22.980621 2021-01-24 01:44:22.980621 \N \N \N 387 2 \N 1 \N \N \N \N 5397 1304 2 950.0 0 2021-01-24 01:59:22.599622 2021-01-24 01:59:22.599622 \N \N \N 388 2 \N 1 \N \N \N \N 5398 1305 2 1599.0 1 2021-01-24 20:20:23.122187 2021-01-24 20:20:23.122187 4126 \N \N \N 0 PV3-V-1261 1 1600.00 1.00 \N \N 5399 1306 2 300.0 1 2021-01-25 20:05:57.571528 2021-01-25 20:05:57.571528 4127 \N \N \N 6 PV1-V-1946 1 300.00 0.00 \N \N 5401 1307 2 2898.0 1 2021-01-25 21:57:16.538817 2021-01-25 21:57:16.538817 4128 \N \N \N 0 PV3-V-1262 1 2900.00 2.00 \N \N 5402 1306 2 869.0 1 2021-01-25 21:59:16.247734 2021-01-25 21:59:16.247734 4129 \N \N \N 0 PV1-V-1947 1 869.00 0.00 \N \N 5403 1306 2 658.0 1 2021-01-25 23:29:01.671923 2021-01-25 23:29:01.671923 4130 \N \N \N 0 PV1-V-1948 1 658.00 0.00 \N \N 5404 1308 2 1599.0 1 2021-01-26 18:51:54.333666 2021-01-26 18:51:54.333666 4131 \N \N \N 0 PV1-V-1949 1 1599.00 0.00 \N \N 5405 1308 2 1499.0 1 2021-01-26 18:55:59.178457 2021-01-26 18:55:59.178457 4132 \N \N \N 0 PV1-V-1950 1 1499.00 0.00 \N \N 5406 1311 2 1399.0 1 2021-01-27 18:07:39.120477 2021-01-27 18:07:39.120477 4133 \N \N \N 0 PV3-V-1263 1 1500.00 101.00 \N \N 5407 1311 2 199.0 1 2021-01-27 18:09:10.097941 2021-01-27 18:09:10.097941 4134 \N \N \N 0 PV3-V-1264 1 200.00 1.00 \N \N 5408 1312 1 609.0 1 2021-01-29 01:02:42.625175 2021-01-29 01:02:42.625175 4135 3315 \N \N 0 PV1-V-1951 1 \N 0.00 \N \N 5409 1313 1 1299.0 1 2021-01-29 01:34:22.956746 2021-01-29 01:34:22.956746 3615 4512 \N \N 7 \N 1 \N 0.00 \N \N 5410 1312 2 100.0 0 2021-01-29 01:34:54.736876 2021-01-29 01:34:54.736876 \N \N \N 389 2 \N 1 \N \N \N \N 5411 1313 1 1798.0 1 2021-01-29 01:38:29.155491 2021-01-29 01:38:29.155491 3613 4521 \N \N 7 \N 1 \N 0.00 \N \N 5412 1313 1 600.0 1 2021-01-29 01:45:56.051121 2021-01-29 01:45:56.051121 4136 4521 \N \N 0 PV3-V-1265 1 \N 0.00 \N \N 5413 1313 2 49.0 1 2021-01-29 01:46:42.913065 2021-01-29 01:46:42.913065 4137 \N \N \N 0 PV3-V-1266 1 500.00 451.00 \N \N 5414 1314 2 318.0 1 2021-01-29 19:13:45.944262 2021-01-29 19:13:45.944262 4138 \N \N \N 0 PV1-V-1952 1 318.00 0.00 \N \N 5415 1314 2 280.0 1 2021-01-29 21:45:54.817146 2021-01-29 21:45:54.817146 4139 \N \N \N 0 PV1-V-1953 1 280.00 0.00 \N \N 5416 1314 2 656.0 1 2021-01-29 22:22:19.61816 2021-01-29 22:22:19.61816 4140 \N \N \N 0 PV1-V-1954 1 656.00 0.00 \N \N 5417 1314 2 180.0 0 2021-01-29 22:32:49.101066 2021-01-29 22:32:49.101066 \N \N \N 390 2 \N 1 \N \N \N \N 5418 1314 4 1799.0 1 2021-01-29 23:05:00.187522 2021-01-29 23:05:00.187522 4141 395 \N \N 0 PV1-V-1955 1 \N 0.00 \N \N 5421 1315 2 1031.8 1 2021-01-29 23:48:56.018953 2021-01-29 23:48:56.018953 4142 \N \N \N 0 PV3-V-1267 1 1200.00 168.20 \N \N 5422 1315 2 49.0 1 2021-01-29 23:52:16.846349 2021-01-29 23:52:16.846349 4143 \N \N \N 0 PV3-V-1268 1 50.00 1.00 \N \N 5423 1315 2 449.0 1 2021-01-30 00:50:13.921263 2021-01-30 00:50:13.921263 4144 \N \N \N 0 PV3-V-1269 1 450.00 1.00 \N \N 5424 1316 2 600.0 1 2021-01-30 21:21:10.340234 2021-01-30 21:21:10.340234 4111 \N \N \N 4 \N 1 600.00 0.00 \N \N 5425 1316 2 98.0 1 2021-01-30 22:07:37.141523 2021-01-30 22:07:37.141523 4146 \N \N \N 0 PV3-V-1271 1 98.00 0.00 \N \N 5426 1317 2 1299.0 1 2021-01-30 22:38:01.160738 2021-01-30 22:38:01.160738 4147 \N \N \N 0 PV1-V-1956 1 1299.00 0.00 \N \N 5427 1317 2 149.0 1 2021-01-31 00:52:36.436069 2021-01-31 00:52:36.436069 4148 \N \N \N 0 PV1-V-1957 1 149.00 0.00 \N \N 5428 1317 1 980.0 1 2021-01-31 01:02:01.558689 2021-01-31 01:02:01.558689 4149 5059 \N \N 0 PV1-V-1958 1 \N 0.00 \N \N 5429 1316 2 1300.0 0 2021-01-31 01:31:47.70087 2021-01-31 01:31:47.70087 \N \N \N 391 2 \N 1 \N \N \N \N 5430 1319 2 1799.0 1 2021-02-02 17:15:36.876975 2021-02-02 17:15:36.876975 4150 \N \N \N 0 PV3-V-1272 1 1799.00 0.00 \N \N 5431 1320 2 669.0 1 2021-02-02 17:32:18.241229 2021-02-02 17:32:18.241229 4151 \N \N \N 0 PV1-V-1959 1 669.00 0.00 \N \N 5432 1320 3 500.0 1 2021-02-02 18:17:09.017711 2021-02-02 18:17:09.060217 4038 \N \N \N 3 \N 1 \N 0.00 \N \N SAM 5433 1320 3 2198.0 1 2021-02-02 18:18:20.213254 2021-02-02 18:18:20.286137 2363 \N \N \N 3 \N 1 \N 0.00 \N \N SAM 5434 1319 3 400.0 1 2021-02-02 18:28:50.579409 2021-02-02 18:28:50.677326 4121 \N \N \N 3 \N 1 \N 0.00 \N \N 1254 5435 1320 2 100.0 1 2021-02-02 21:44:15.877719 2021-02-02 21:44:15.877719 4132 \N \N \N 5 \N 1 100.00 0.00 44 \N 5436 1319 2 539.4 1 2021-02-02 22:23:42.775201 2021-02-02 22:23:42.775201 4152 \N \N \N 0 PV3-V-1273 1 550.00 10.60 \N \N 5437 1319 2 200.0 0 2021-02-02 23:43:52.034282 2021-02-02 23:43:52.034282 \N \N \N 392 2 \N 1 \N \N \N \N 5438 1319 2 400.0 1 2021-02-03 01:18:28.229994 2021-02-03 01:18:28.229994 4153 \N \N \N 6 PV3-V-1274 1 400.00 0.00 \N \N 5439 1321 2 570.0 1 2021-02-03 19:15:52.347546 2021-02-03 19:15:52.347546 4154 \N \N \N 0 PV1-V-1960 1 570.00 0.00 \N \N 5440 1322 2 719.4 1 2021-02-03 20:31:21.886953 2021-02-03 20:31:21.886953 4155 \N \N \N 0 PV3-V-1275 1 750.00 30.60 \N \N 5441 1321 2 949.0 1 2021-02-03 21:15:42.67817 2021-02-03 21:15:42.67817 4156 \N \N \N 0 PV1-V-1961 1 949.00 0.00 \N \N 5442 1321 2 400.0 1 2021-02-03 21:30:55.054803 2021-02-03 21:30:55.054803 4127 \N \N \N 4 \N 1 400.00 0.00 \N \N 5443 1322 1 1499.0 1 2021-02-03 21:44:35.448834 2021-02-03 21:44:35.448834 4157 1245 \N \N 0 PV3-V-1276 1 \N 0.00 \N \N 5444 1321 2 150.0 1 2021-02-03 23:30:14.910701 2021-02-03 23:30:14.910701 4158 \N \N \N 0 PV1-V-1962 1 150.00 0.00 \N \N 5445 1321 2 360.0 1 2021-02-04 00:06:57.411001 2021-02-04 00:06:57.411001 4159 \N \N \N 0 PV1-V-1963 1 360.00 0.00 \N \N 5446 1321 2 297.0 0 2021-02-04 00:46:36.109794 2021-02-04 00:46:36.109794 \N \N \N 393 2 \N 1 \N \N \N \N 5447 1321 2 150.0 1 2021-02-04 00:51:10.215317 2021-02-04 00:51:10.215317 4160 \N \N \N 0 PV1-V-1964 1 150.00 0.00 \N \N 5448 1322 2 100.0 0 2021-02-04 01:51:05.833679 2021-02-04 01:51:05.833679 \N \N \N 394 2 \N 1 \N \N \N \N 5449 1323 2 150.0 1 2021-02-04 18:03:06.728986 2021-02-04 18:03:06.728986 4161 \N \N \N 0 PV1-V-1965 1 150.00 0.00 \N \N 5450 1324 2 149.0 1 2021-02-04 20:53:52.546612 2021-02-04 20:53:52.546612 4162 \N \N \N 0 PV3-V-1277 1 200.00 51.00 \N \N 5451 1323 2 150.0 1 2021-02-04 20:58:40.836893 2021-02-04 20:58:40.836893 4163 \N \N \N 0 PV1-V-1966 1 150.00 0.00 \N \N 5452 1323 2 300.0 1 2021-02-04 23:35:56.43592 2021-02-04 23:35:56.43592 4164 \N \N \N 0 PV1-V-1967 1 300.00 0.00 \N \N 5453 1323 2 600.0 1 2021-02-04 23:42:59.252991 2021-02-04 23:42:59.252991 4165 \N \N \N 0 PV1-V-1968 1 600.00 0.00 \N \N 5454 1323 2 300.0 1 2021-02-04 23:44:02.808061 2021-02-04 23:44:02.808061 4166 \N \N \N 0 PV1-V-1969 1 300.00 0.00 \N \N 5455 1323 2 350.0 1 2021-02-04 23:46:58.030283 2021-02-04 23:46:58.030283 4167 \N \N \N 0 PV1-V-1970 1 350.00 0.00 \N \N 5456 1323 2 677.0 1 2021-02-04 23:53:45.617471 2021-02-04 23:53:45.617471 4168 \N \N \N 0 PV1-V-1971 1 677.00 0.00 \N \N 5457 1323 2 200.0 0 2021-02-05 01:49:29.423709 2021-02-05 01:49:29.423709 \N \N \N 395 2 \N 1 \N \N \N \N 5458 1325 2 521.0 1 2021-02-06 18:20:21.947411 2021-02-06 18:20:21.947411 4169 \N \N \N 0 PV1-V-1972 1 521.00 0.00 \N \N 5459 1326 2 419.4 1 2021-02-06 20:51:22.543331 2021-02-06 20:51:22.543331 4170 \N \N \N 0 PV3-V-1278 1 420.00 0.60 \N \N 5460 1326 2 600.0 1 2021-02-06 21:10:30.186114 2021-02-06 21:10:30.186114 4111 \N \N \N 7 \N 1 600.00 0.00 \N \N 5461 1325 2 150.0 1 2021-02-07 00:28:05.778015 2021-02-07 00:28:05.778015 4171 \N \N \N 0 PV1-V-1973 1 150.00 0.00 \N \N 5462 1325 2 738.0 1 2021-02-07 00:53:01.516032 2021-02-07 00:53:01.516032 4172 \N \N \N 0 PV1-V-1974 1 738.00 0.00 \N \N 5463 1325 2 120.0 0 2021-02-07 01:52:48.422415 2021-02-07 01:52:48.422415 \N \N \N 396 2 \N 1 \N \N \N \N 5464 1328 1 529.0 1 2021-02-08 21:44:20.523355 2021-02-08 21:44:20.523355 4173 4521 \N \N 0 PV3-V-1279 1 \N 0.00 \N \N 5465 1330 2 150.0 1 2021-02-10 18:05:11.272426 2021-02-10 18:05:11.272426 4174 \N \N \N 0 PV1-V-1975 1 150.00 0.00 \N \N 5466 1330 2 399.0 1 2021-02-10 23:33:17.893546 2021-02-10 23:33:17.893546 4127 \N \N \N 7 \N 1 399.00 0.00 \N \N 5467 1330 2 120.0 1 2021-02-11 00:21:21.177766 2021-02-11 00:21:21.177766 4175 \N \N \N 0 PV1-V-1976 1 120.00 0.00 \N \N 5468 1330 2 1000.0 1 2021-02-11 01:04:11.824554 2021-02-11 01:04:11.891622 3373 \N \N \N 3 \N 1 1000.00 0.00 \N \N 5469 1332 2 150.0 1 2021-02-11 23:05:53.979978 2021-02-11 23:05:53.979978 4176 \N \N \N 0 PV1-V-1977 1 150.00 0.00 \N \N 5470 1332 2 1269.0 1 2021-02-12 01:55:28.359647 2021-02-12 01:55:28.359647 4177 \N \N \N 0 PV1-V-1978 1 1269.00 0.00 \N \N 5471 1333 2 499.99 1 2021-02-12 22:52:53.211175 2021-02-12 22:52:53.211175 4178 \N \N \N 0 PV1-V-1979 1 499.99 0.00 \N \N 5472 1333 2 500.0 1 2021-02-13 00:10:15.52525 2021-02-13 00:10:15.577198 4038 \N \N \N 3 \N 1 500.00 0.00 \N \N 5473 1333 2 599.0 1 2021-02-13 01:31:49.256453 2021-02-13 01:31:49.256453 4179 \N \N \N 0 PV1-V-1980 1 599.00 0.00 \N \N 5474 1331 2 469.0 1 2021-02-13 01:37:21.414645 2021-02-13 01:37:21.414645 4180 \N \N \N 0 PV3-V-1280 1 469.00 0.00 \N \N 5475 1334 2 619.0 1 2021-02-13 22:33:44.59154 2021-02-13 22:33:44.59154 4182 \N \N \N 0 PV1-V-1982 1 619.00 0.00 \N \N 5476 1331 4 869.0 1 2021-02-13 23:11:18.920626 2021-02-13 23:11:18.920626 4183 4521 \N \N 0 PV3-V-1281 1 \N 0.00 \N \N 5478 1331 2 589.0 1 2021-02-14 00:26:18.950332 2021-02-14 00:26:18.950332 4184 \N \N \N 0 PV3-V-1282 1 600.00 11.00 \N \N 5479 1334 2 450.0 1 2021-02-14 01:07:23.547544 2021-02-14 01:07:23.547544 4185 \N \N \N 0 PV1-V-1983 1 450.00 0.00 \N \N 5480 1331 2 1000.0 0 2021-02-14 02:09:55.294563 2021-02-14 02:09:55.294563 \N \N \N 397 2 \N 1 \N \N \N \N 5481 1335 4 699.0 1 2021-02-15 21:07:14.162335 2021-02-15 21:07:14.162335 4186 7854 \N \N 0 PV3-V-1283 1 \N 0.00 \N \N 5482 \N 3 400.0 1 2021-02-16 19:37:08.864415 2021-02-16 19:37:08.978887 4121 \N \N \N 3 \N 1 \N 0.00 \N \N 4124102 5483 1335 1 598.0 1 2021-02-16 20:59:57.961954 2021-02-16 20:59:57.961954 4187 1254 \N \N 0 PV3-V-1284 1 \N 0.00 \N \N 5484 1336 1 999.0 1 2021-02-17 20:34:19.001137 2021-02-17 20:34:19.001137 4118 3075 \N \N 7 \N 1 \N 0.00 \N \N 5485 1337 1 999.0 1 2021-02-18 22:25:17.185658 2021-02-18 22:25:17.185658 4188 1085 \N \N 0 PV1-V-1984 1 \N 0.00 \N \N 5486 1335 2 449.0 1 2021-02-19 00:17:41.401947 2021-02-19 00:17:41.401947 4189 \N \N \N 0 PV3-V-1285 1 449.00 0.00 \N \N 5487 \N 2 400.0 1 2021-02-20 20:01:58.210189 2021-02-20 20:01:58.247343 4038 \N \N \N 3 \N 1 500.00 100.00 \N \N 5488 1340 2 349.99 1 2021-02-23 21:27:11.095302 2021-02-23 21:27:11.139989 4181 \N \N \N 3 \N 1 349.99 0.00 \N \N 5489 1339 3 899.0 1 2021-02-24 00:53:13.113379 2021-02-24 00:53:13.160605 1667 \N \N \N 3 \N 1 \N 0.00 \N \N DD 5490 1339 3 399.0 1 2021-02-24 01:28:56.915874 2021-02-24 01:28:56.962627 2459 \N \N \N 3 \N 1 \N 0.00 \N \N 44 5491 1339 3 3651.0 1 2021-02-24 01:30:29.000417 2021-02-24 01:30:29.0625 2503 \N \N \N 3 \N 1 \N 0.00 \N \N 455 5492 1339 3 399.0 1 2021-02-24 01:35:18.304136 2021-02-24 01:35:18.341327 3589 \N \N \N 3 \N 1 \N 0.00 \N \N 444 5493 1341 2 300.0 1 2021-02-28 01:49:58.30702 2021-02-28 01:49:58.30702 4190 \N \N \N 0 PV1-V-1985 1 300.00 0.00 \N \N 5494 \N 3 400.0 1 2021-03-01 19:46:43.492617 2021-03-01 19:46:43.554797 4121 \N \N \N 3 \N 1 \N 0.00 \N \N 1245 5495 1342 2 150.0 1 2021-03-02 00:30:14.826711 2021-03-02 00:30:14.826711 4191 \N \N \N 0 PV1-V-1986 1 150.00 0.00 \N \N 5496 \N 3 300.0 1 2021-03-02 02:04:36.935289 2021-03-02 02:04:37.018456 3589 \N \N \N 3 \N 1 \N 0.00 \N \N 445 5497 \N 3 1398.0 1 2021-03-02 02:06:15.220966 2021-03-02 02:06:15.267925 3274 \N \N \N 3 \N 1 \N 0.00 \N \N SS 5498 1343 2 1144.0 1 2021-03-03 23:25:23.522444 2021-03-03 23:25:23.583998 3579 \N \N \N 3 \N 1 1144.00 0.00 \N \N 5499 1343 2 305.0 1 2021-03-04 01:09:30.616518 2021-03-04 01:09:30.616518 4192 \N \N \N 0 PV1-V-1987 1 305.00 0.00 \N \N 5500 1344 2 350.0 1 2021-03-05 01:33:19.270188 2021-03-05 01:33:19.270188 4193 \N \N \N 0 PV1-V-1988 1 350.00 0.00 \N \N 5501 1339 2 499.0 1 2021-03-19 01:29:37.656867 2021-03-19 01:29:37.656867 4194 \N \N \N 0 PV3-V-1286 1 499.00 0.00 \N \N \. -- -- Name: cash_registers_moves_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.cash_registers_moves_id_seq', 5501, true); -- -- Data for Name: categories; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.categories (id, category, description, status, created_at, updated_at, parent_id) FROM stdin; 1 JUMPER 1 2019-02-02 01:37:02.463908 2019-02-02 01:37:02.463908 0 2 SHORT 1 2019-02-02 01:53:02.296658 2019-02-02 01:53:02.296658 0 3 RELOJ 1 2019-02-02 01:53:21.631121 2019-02-02 01:53:21.631121 0 4 CARTERA 1 2019-02-02 01:53:33.141677 2019-02-02 01:53:33.141677 0 5 LENTES 1 2019-02-02 01:53:41.13589 2019-02-02 01:53:41.13589 0 6 BOLSAS 1 2019-02-02 01:53:59.356181 2019-02-02 01:53:59.356181 0 7 BLUSAS 1 2019-02-02 01:54:33.144193 2019-02-02 01:54:33.144193 0 8 PANTALONES 1 2019-02-02 01:54:46.666134 2019-02-02 01:54:46.666134 0 9 PALAZZO 1 2019-02-02 01:54:55.316206 2019-02-02 01:54:55.316206 0 10 CONJUNTO 1 2019-02-02 01:55:03.111558 2019-02-02 01:55:03.111558 0 11 FALDA 1 2019-02-02 01:55:48.378086 2019-02-02 01:55:48.378086 0 12 VESTIDO 1 2019-02-02 01:56:02.517428 2019-02-02 01:56:02.517428 0 14 COSMETIQUERA 1 2019-02-02 22:53:01.829 2019-02-02 22:53:01.829 0 15 PERFUMES 1 2019-02-02 22:53:37.614431 2019-02-02 22:53:37.614431 0 16 PULCERAS 1 2019-02-02 22:54:00.518195 2019-02-02 22:54:00.518195 0 19 PROMOCION PROMOCION ULTIMAS PIEZAS 0 2019-07-31 00:19:23.926293 2019-08-18 21:20:12.467645 0 21 PROMOCION 0 2019-07-31 00:20:04.245838 2019-08-18 22:21:19.371864 0 22 PROMOCION 0 2019-07-31 00:20:24.02114 2019-08-18 22:23:57.425366 0 20 PROMOCION 1 2019-07-31 00:19:50.035338 2019-08-18 22:46:12.097821 0 18 PROMOCION DESCUENTO 1 2019-07-31 00:08:21.187932 2019-08-18 22:46:17.676833 0 23 REGALO EMPAQUES DE REGALO 1 2019-10-17 17:02:12.703055 2019-10-17 17:02:12.703055 0 17 ACCESORIOS 1 2019-02-02 22:54:22.258059 2019-10-21 17:36:53.353762 0 24 CHAMARRAS CHAMARRAS, ABRIGOS, SUETER 1 2019-10-25 17:14:18.825397 2019-10-25 17:14:18.825397 0 25 RAPUNZEL 0 2020-09-19 00:17:32.380918 2020-09-19 00:17:41.519016 17 26 ROPA 1 2021-03-19 00:33:49.867413 2021-03-19 00:33:49.867413 0 27 CANGURERA 1 2021-03-19 00:35:51.023813 2021-03-19 00:35:51.023813 0 28 MOCASIN 1 2021-03-19 00:37:56.025185 2021-03-19 00:37:56.025185 0 29 Sin categoría 1 2021-03-19 00:41:57.380101 2021-03-19 00:41:57.380101 0 13 ZAPATOS 1 2019-02-02 01:56:21.079395 2021-03-19 00:44:20.559472 0 30 CALZADO 1 2021-03-19 00:44:28.600125 2021-03-19 00:44:28.600125 0 \. -- -- Name: categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.categories_id_seq', 30, true); -- -- Data for Name: categories_products; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.categories_products (product_id, category_id) FROM stdin; \. -- -- Data for Name: commissions; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.commissions (id, commission_total, created_at, updated_at, pointsale_id, user_id, initial_date, final_date) FROM stdin; 1 7443.0 2019-05-18 22:22:52.468692 2019-05-18 22:22:52.468692 2 4 2019-05-13 06:00:00 2019-05-19 05:59:59 \. -- -- Name: commissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.commissions_id_seq', 1, true); -- -- Data for Name: contacts; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.contacts (id, name, last_name, phone, email, notes, status, created_at, updated_at) FROM stdin; 1 BLANCA MORALES (335) 000-9292 blancam@gmail.com 1 2019-02-02 01:46:06.574324 2019-02-02 01:46:06.574324 2 SAMANTHA OSUNA 1 2019-02-05 22:28:37.507493 2019-02-05 22:28:37.507493 3 SAMANTHA OSUNA 1 2019-02-05 22:34:53.114576 2019-02-05 22:34:53.114576 4 D D 1 2020-08-15 23:43:38.764173 2020-08-15 23:43:38.764173 5 SAMANTHA OSUNA 1 2020-09-19 00:14:52.634892 2020-09-19 00:14:52.634892 \. -- -- Name: contacts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.contacts_id_seq', 5, true); -- -- Data for Name: credit_payments; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.credit_payments (id, customer_id, credit_id, pointsale_id, quantity, status, date_payment, created_at, updated_at, user_id, cash_registers_move_id) FROM stdin; 1 3 1 1 1398.00 0 2019-02-05 2019-02-06 00:46:46.95038 2019-02-06 00:46:46.95038 9 20 2 3 2 \N 168.00 0 2019-02-05 2019-02-06 00:46:46.985785 2019-02-06 00:46:46.985785 9 20 3 14 4 1 400.00 0 2019-02-12 2019-02-12 21:03:31.21462 2019-02-12 21:03:31.21462 2 75 4 19 5 2 400.00 0 2019-02-13 2019-02-13 23:56:58.990335 2019-02-13 23:56:58.990335 10 90 5 29 8 1 210.00 0 2019-02-23 2019-02-24 00:44:12.553949 2019-02-24 00:44:12.553949 2 174 6 3 2 1 1000.00 0 2019-02-27 2019-02-27 18:13:00.561723 2019-02-27 18:13:00.561723 2 184 7 32 11 1 500.00 0 2019-02-28 2019-02-28 20:46:22.274402 2019-02-28 20:46:22.274402 2 192 8 33 12 2 200.00 0 2019-03-01 2019-03-01 22:16:23.467422 2019-03-01 22:16:23.467422 11 195 9 36 16 1 500.00 0 2019-03-01 2019-03-02 00:57:29.734715 2019-03-02 00:57:29.734715 9 200 10 38 19 1 500.00 0 2019-03-04 2019-03-04 16:36:36.731967 2019-03-04 16:36:36.731967 2 228 11 39 20 2 1068.00 0 2019-03-04 2019-03-05 00:41:52.634019 2019-03-05 00:41:52.634019 10 230 14 14 4 1 400.00 0 2019-03-08 2019-03-08 17:13:49.06895 2019-03-08 17:13:49.06895 2 250 12 39 21 2 432.00 0 2019-03-04 2019-03-05 00:41:52.6598 2019-03-05 00:41:52.6598 10 230 15 34 13 1 500.00 0 2019-03-11 2019-03-11 18:37:16.240816 2019-03-11 18:37:16.240816 2 276 16 3 2 1 500.00 0 2019-03-12 2019-03-12 18:27:32.885596 2019-03-12 18:27:32.885596 2 280 17 32 11 1 1000.00 0 2019-03-19 2019-03-19 23:17:01.317326 2019-03-19 23:17:01.317326 2 313 18 20 6 1 1000.00 0 2019-03-19 2019-03-19 23:19:05.414768 2019-03-19 23:19:05.414768 2 314 19 19 5 1 400.00 0 2019-03-19 2019-03-19 23:44:25.781551 2019-03-19 23:44:25.781551 2 315 20 19 5 1 400.00 0 2019-03-19 2019-03-20 00:09:04.609223 2019-03-20 00:09:04.609223 2 316 21 34 13 1 233.01 0 2019-03-23 2019-03-24 01:14:23.010692 2019-03-24 01:14:23.010692 2 346 22 34 15 1 200.00 0 2019-03-28 2019-03-29 00:30:31.137781 2019-03-29 00:30:31.137781 12 372 23 3 2 1 243.00 0 2019-04-03 2019-04-03 17:25:20.284205 2019-04-03 17:25:20.284205 2 400 24 36 16 2 300.00 0 2019-04-04 2019-04-05 00:26:08.47829 2019-04-05 00:26:08.47829 3 409 25 36 16 1 147.00 0 2019-04-10 2019-04-10 19:52:22.212549 2019-04-10 19:52:22.212549 2 441 26 34 15 1 250.00 0 2019-04-12 2019-04-13 01:28:38.098306 2019-04-13 01:28:38.098306 12 460 27 36 16 1 200.00 0 2019-04-13 2019-04-13 17:00:51.116081 2019-04-13 17:00:51.116081 2 461 28 49 28 1 750.00 0 2019-04-16 2019-04-16 20:39:22.256154 2019-04-16 20:39:22.256154 2 480 29 69 29 2 300.00 0 2019-04-17 2019-04-17 23:38:25.721187 2019-04-17 23:38:25.721187 10 494 30 36 16 1 769.00 0 2019-04-17 2019-04-18 00:36:23.687964 2019-04-18 00:36:23.687964 12 499 31 34 15 1 249.00 0 2019-04-17 2019-04-18 00:53:14.61469 2019-04-18 00:53:14.61469 12 501 32 32 11 1 1498.00 0 2019-04-22 2019-04-23 00:21:50.310421 2019-04-23 00:21:50.310421 12 507 33 39 23 1 1500.00 0 2019-04-24 2019-04-25 00:52:01.363201 2019-04-25 00:52:01.363201 12 516 34 20 6 2 2498.01 0 2019-04-25 2019-04-25 18:40:06.736754 2019-04-25 18:40:06.736754 10 521 35 20 7 \N 501.99 0 2019-04-25 2019-04-25 18:40:06.758986 2019-04-25 18:40:06.758986 10 521 36 19 5 2 599.00 0 2019-04-25 2019-04-25 18:48:19.550303 2019-04-25 18:48:19.550303 10 522 37 69 29 1 500.00 0 2019-04-26 2019-04-26 22:21:19.900568 2019-04-26 22:21:19.900568 9 524 38 20 7 2 1000.00 0 2019-04-30 2019-05-01 00:06:53.7163 2019-05-01 00:06:53.7163 10 554 39 34 15 1 500.00 0 2019-05-02 2019-05-03 01:49:48.795978 2019-05-03 01:49:48.795978 2 564 40 36 16 1 152.00 0 2019-05-04 2019-05-04 20:10:00.89653 2019-05-04 20:10:00.89653 2 577 41 36 17 \N 248.00 0 2019-05-04 2019-05-04 20:10:00.919494 2019-05-04 20:10:00.919494 2 577 42 38 19 1 350.00 0 2019-05-07 2019-05-07 15:38:32.694052 2019-05-07 15:38:32.694052 2 607 43 3 3 1 499.00 0 2019-05-09 2019-05-09 17:44:30.887933 2019-05-09 17:44:30.887933 2 667 44 3 2 \N 301.00 0 2019-05-09 2019-05-09 17:44:30.915869 2019-05-09 17:44:30.915869 2 667 45 34 15 1 100.00 0 2019-05-11 2019-05-12 00:16:52.110336 2019-05-12 00:16:52.110336 2 720 46 34 13 \N 400.00 0 2019-05-11 2019-05-12 00:16:52.143767 2019-05-12 00:16:52.143767 2 720 47 20 7 1 297.01 0 2019-05-15 2019-05-15 18:18:32.195498 2019-05-15 18:18:32.195498 2 744 48 36 17 1 300.00 0 2019-05-16 2019-05-16 18:34:28.389304 2019-05-16 18:34:28.389304 2 753 49 39 23 1 1500.00 0 2019-05-20 2019-05-21 01:48:44.082049 2019-05-21 01:48:44.082049 2 795 50 90 32 1 790.00 0 2019-05-20 2019-05-21 01:54:50.528811 2019-05-21 01:54:50.528811 2 796 51 69 29 2 799.00 0 2019-05-22 2019-05-23 00:58:20.701952 2019-05-23 00:58:20.701952 3 821 52 69 30 \N 701.00 0 2019-05-22 2019-05-23 00:58:20.737757 2019-05-23 00:58:20.737757 3 821 53 69 30 2 798.00 0 2019-05-23 2019-05-24 00:45:37.813205 2019-05-24 00:45:37.813205 3 831 54 69 35 2 499.00 0 2019-05-23 2019-05-24 00:45:37.831783 2019-05-24 00:45:37.831783 3 831 55 102 34 1 400.00 0 2019-05-25 2019-05-25 16:27:41.916687 2019-05-25 16:27:41.916687 2 847 56 38 19 1 549.00 0 2019-05-25 2019-05-26 00:57:34.088339 2019-05-26 00:57:34.088339 12 861 57 34 14 1 500.00 0 2019-05-25 2019-05-26 01:14:25.492529 2019-05-26 01:14:25.492529 12 864 58 29 8 2 2688.00 0 2019-05-31 2019-06-01 00:44:40.75857 2019-06-01 00:44:40.75857 10 911 59 29 9 \N 312.00 0 2019-05-31 2019-06-01 00:44:40.785089 2019-06-01 00:44:40.785089 10 911 60 90 32 1 500.00 0 2019-06-05 2019-06-06 00:35:09.03537 2019-06-06 00:35:09.03537 2 936 61 36 18 1 300.00 0 2019-06-08 2019-06-08 22:27:06.653827 2019-06-08 22:27:06.653827 2 952 62 122 36 1 300.00 0 2019-06-14 2019-06-14 21:33:43.845017 2019-06-14 21:33:43.845017 2 985 63 34 14 1 400.00 0 2019-06-20 2019-06-21 00:02:47.912473 2019-06-21 00:02:47.912473 12 1035 64 36 18 1 300.00 0 2019-06-20 2019-06-21 01:13:50.460569 2019-06-21 01:13:50.460569 2 1039 65 132 37 1 800.00 0 2019-06-20 2019-06-21 01:29:50.975094 2019-06-21 01:29:50.975094 2 1040 66 39 23 2 713.00 0 2019-06-21 2019-06-22 02:04:28.725795 2019-06-22 02:04:28.725795 3 1052 67 122 36 1 300.00 0 2019-06-28 2019-06-28 17:58:40.577537 2019-06-28 17:58:40.577537 2 1076 68 122 36 2 200.00 0 2019-07-03 2019-07-03 21:13:09.595282 2019-07-03 21:13:09.595282 3 1107 69 34 14 2 500.00 0 2019-07-05 2019-07-05 22:11:17.970356 2019-07-05 22:11:17.970356 3 1120 70 3 2 1 354.00 0 2019-07-09 2019-07-09 18:22:33.501646 2019-07-09 18:22:33.501646 2 1130 71 3 25 \N 246.00 0 2019-07-09 2019-07-09 18:22:33.54208 2019-07-09 18:22:33.54208 2 1130 72 122 36 1 69.00 0 2019-07-13 2019-07-13 20:19:47.963569 2019-07-13 20:19:47.963569 2 1142 73 122 39 \N 431.00 0 2019-07-13 2019-07-13 20:19:47.983249 2019-07-13 20:19:47.983249 2 1142 74 36 18 1 420.00 0 2019-07-13 2019-07-14 02:03:06.983044 2019-07-14 02:03:06.983044 2 1150 75 36 18 1 280.00 0 2019-07-13 2019-07-14 02:04:17.665335 2019-07-14 02:04:17.665335 2 1151 76 102 34 1 999.00 0 2019-07-23 2019-07-23 17:26:40.773216 2019-07-23 17:26:40.773216 2 1199 77 3 25 1 500.00 0 2019-07-25 2019-07-25 16:55:11.78533 2019-07-25 16:55:11.78533 2 1211 78 122 39 1 487.00 0 2019-07-31 2019-07-31 19:46:15.327113 2019-07-31 19:46:15.327113 2 1251 79 122 40 \N 13.00 0 2019-07-31 2019-07-31 19:46:15.355414 2019-07-31 19:46:15.355414 2 1251 80 138 38 1 1000.00 0 2019-08-02 2019-08-02 18:31:07.746228 2019-08-02 18:31:07.746228 2 1261 81 36 18 1 400.00 0 2019-08-02 2019-08-02 22:05:41.046524 2019-08-02 22:05:41.046524 2 1263 82 34 14 1 800.00 0 2019-08-02 2019-08-03 01:46:06.096442 2019-08-03 01:46:06.096442 2 1267 83 34 14 1 148.01 0 2019-08-10 2019-08-10 22:38:52.509304 2019-08-10 22:38:52.509304 9 1306 84 34 13 \N 1651.99 0 2019-08-10 2019-08-10 22:38:52.529534 2019-08-10 22:38:52.529534 9 1306 85 36 18 1 400.00 0 2019-08-10 2019-08-10 22:39:52.793144 2019-08-10 22:39:52.793144 9 1307 86 122 40 1 350.00 0 2019-08-16 2019-08-16 20:51:45.584716 2019-08-16 20:51:45.584716 2 1329 87 36 18 1 400.00 0 2019-08-17 2019-08-17 23:38:26.529982 2019-08-17 23:38:26.529982 9 1340 88 36 18 1 400.00 0 2019-08-23 2019-08-24 00:38:12.946417 2019-08-24 00:38:12.946417 2 1366 89 34 13 1 500.00 0 2019-08-30 2019-08-30 20:21:32.977224 2019-08-30 20:21:32.977224 2 1383 90 36 18 1 300.00 0 2019-08-31 2019-09-01 01:17:55.300347 2019-09-01 01:17:55.300347 2 1404 91 161 43 3 400.00 0 2019-08-31 2019-09-01 03:19:39.586713 2019-09-01 03:19:39.586713 18 1408 92 138 38 2 1000.00 0 2019-09-03 2019-09-03 22:35:42.098426 2019-09-03 22:35:42.098426 20 1424 93 122 40 2 400.00 0 2019-09-04 2019-09-04 18:45:19.697019 2019-09-04 18:45:19.697019 8 1426 94 36 18 1 300.00 0 2019-09-06 2019-09-06 20:06:18.614639 2019-09-06 20:06:18.614639 2 1436 95 20 45 3 498.00 0 2019-09-12 2019-09-13 01:14:50.126106 2019-09-13 01:14:50.126106 23 1486 96 20 45 3 10.00 0 2019-09-12 2019-09-13 02:02:37.585548 2019-09-13 02:02:37.585548 23 1488 97 122 40 2 400.00 0 2019-09-13 2019-09-13 19:14:16.642258 2019-09-13 19:14:16.642258 8 1491 98 34 13 1 500.00 0 2019-09-14 2019-09-14 20:11:39.455751 2019-09-14 20:11:39.455751 2 1506 99 36 18 1 200.00 0 2019-09-14 2019-09-14 21:12:40.461934 2019-09-14 21:12:40.461934 2 1511 100 36 17 \N 259.00 0 2019-09-14 2019-09-14 21:12:40.483319 2019-09-14 21:12:40.483319 2 1511 101 3 25 1 653.00 0 2019-09-17 2019-09-17 18:06:02.23184 2019-09-17 18:06:02.23184 2 1524 102 3 31 \N 947.00 0 2019-09-17 2019-09-17 18:06:02.254158 2019-09-17 18:06:02.254158 2 1524 103 161 43 3 500.00 0 2019-09-17 2019-09-17 19:59:58.499462 2019-09-17 19:59:58.499462 18 1526 104 3 31 1 1150.99 0 2019-09-17 2019-09-18 01:24:25.441634 2019-09-18 01:24:25.441634 2 1527 105 3 47 \N 449.01 0 2019-09-17 2019-09-18 01:24:25.46389 2019-09-18 01:24:25.46389 2 1527 106 36 17 1 300.00 0 2019-09-21 2019-09-21 20:10:19.869628 2019-09-21 20:10:19.869628 2 1549 107 36 17 1 300.00 0 2019-09-28 2019-09-28 23:38:03.120551 2019-09-28 23:38:03.120551 2 1614 108 14 4 2 699.00 0 2019-09-30 2019-09-30 15:54:48.44364 2019-09-30 15:54:48.44364 8 1616 109 122 40 2 500.00 0 2019-09-30 2019-09-30 16:03:12.910218 2019-09-30 16:03:12.910218 8 1617 110 33 12 2 799.00 0 2019-09-30 2019-09-30 16:30:45.168943 2019-09-30 16:30:45.168943 8 1619 111 34 13 1 501.00 0 2019-10-01 2019-10-01 21:09:53.903475 2019-10-01 21:09:53.903475 2 1623 112 34 27 1 499.00 0 2019-10-01 2019-10-01 21:09:53.951095 2019-10-01 21:09:53.951095 2 1623 113 189 48 3 300.00 0 2019-10-02 2019-10-02 23:47:40.290411 2019-10-02 23:47:40.290411 23 1632 114 20 45 3 500.00 0 2019-10-03 2019-10-04 00:15:54.227123 2019-10-04 00:15:54.227123 21 1641 115 138 38 2 700.00 0 2019-10-04 2019-10-04 17:11:11.506513 2019-10-04 17:11:11.506513 8 1644 116 36 17 1 300.00 0 2019-10-05 2019-10-05 23:10:50.453245 2019-10-05 23:10:50.453245 2 1663 117 36 17 1 172.00 0 2019-10-12 2019-10-13 01:16:35.483724 2019-10-13 01:16:35.483724 2 1713 118 36 26 \N 128.00 0 2019-10-12 2019-10-13 01:16:35.503867 2019-10-13 01:16:35.503867 2 1713 119 3 47 1 650.00 0 2019-10-14 2019-10-14 16:34:10.159618 2019-10-14 16:34:10.159618 2 1717 120 20 45 3 500.00 0 2019-10-17 2019-10-17 16:53:25.973991 2019-10-17 16:53:25.973991 21 1741 121 189 48 3 400.00 0 2019-10-17 2019-10-17 16:53:48.270442 2019-10-17 16:53:48.270442 21 1742 122 36 26 1 300.00 0 2019-10-20 2019-10-20 16:44:53.757109 2019-10-20 16:44:53.757109 25 1764 123 3 47 1 500.00 0 2019-10-21 2019-10-21 17:01:45.496422 2019-10-21 17:01:45.496422 2 1773 124 161 43 1 500.00 0 2019-10-22 2019-10-22 17:48:11.037506 2019-10-22 17:48:11.037506 2 1781 125 36 26 1 241.00 0 2019-10-26 2019-10-26 22:08:49.102197 2019-10-26 22:08:49.102197 2 1822 126 36 46 \N 59.00 0 2019-10-26 2019-10-26 22:08:49.125322 2019-10-26 22:08:49.125322 2 1822 127 36 46 1 200.00 0 2019-11-02 2019-11-02 23:02:30.700778 2019-11-02 23:02:30.700778 2 1890 128 20 45 3 500.00 0 2019-11-04 2019-11-04 17:46:42.940734 2019-11-04 17:46:42.940734 21 1901 129 189 48 3 400.00 0 2019-11-06 2019-11-06 22:41:52.465137 2019-11-06 22:41:52.465137 23 1916 130 138 38 1 800.00 0 2019-11-06 2019-11-06 22:51:00.674536 2019-11-06 22:51:00.674536 2 1917 131 36 46 1 300.00 0 2019-11-09 2019-11-09 23:01:12.238644 2019-11-09 23:01:12.238644 2 1939 132 3 47 1 717.99 0 2019-11-11 2019-11-11 18:59:21.770704 2019-11-11 18:59:21.770704 2 1949 133 36 46 1 200.00 0 2019-11-15 2019-11-16 00:55:49.87663 2019-11-16 00:55:49.87663 2 2002 134 36 50 1 298.00 0 2019-11-23 2019-11-23 20:57:08.822617 2019-11-23 20:57:08.822617 2 2081 135 34 52 3 500.00 0 2019-11-30 2019-11-30 23:50:33.286814 2019-11-30 23:50:33.286814 23 2152 136 36 50 1 300.00 0 2019-11-30 2019-12-01 01:15:34.317521 2019-12-01 01:15:34.317521 2 2154 137 189 48 3 499.00 0 2019-12-06 2019-12-06 21:29:37.333112 2019-12-06 21:29:37.333112 21 2213 138 255 54 1 450.00 0 2019-12-07 2019-12-07 22:09:27.544084 2019-12-07 22:09:27.544084 2 2229 139 222 53 1 2348.00 0 2019-12-09 2019-12-09 21:43:11.617728 2019-12-09 21:43:11.617728 2 2256 140 3 56 1 1000.00 0 2019-12-10 2019-12-10 18:41:36.365733 2019-12-10 18:41:36.365733 2 2267 141 122 40 1 36.01 0 2019-12-10 2019-12-11 00:24:43.134466 2019-12-11 00:24:43.134466 2 2283 142 122 41 \N 599.00 0 2019-12-10 2019-12-11 00:24:43.15455 2019-12-11 00:24:43.15455 2 2283 143 122 42 \N 749.00 0 2019-12-10 2019-12-11 00:24:43.174554 2019-12-11 00:24:43.174554 2 2283 144 122 44 \N 15.99 0 2019-12-10 2019-12-11 00:24:43.193656 2019-12-11 00:24:43.193656 2 2283 145 33 57 2 200.00 0 2019-12-11 2019-12-12 01:04:42.078395 2019-12-12 01:04:42.078395 27 2303 146 262 58 3 1000.00 0 2019-12-14 2019-12-14 22:24:19.256202 2019-12-14 22:24:19.256202 21 2348 147 36 50 1 369.00 0 2019-12-14 2019-12-15 01:01:35.665116 2019-12-15 01:01:35.665116 2 2360 148 34 52 1 500.00 0 2019-12-16 2019-12-16 21:24:00.125538 2019-12-16 21:24:00.125538 2 2385 149 264 60 3 500.00 0 2019-12-17 2019-12-17 20:09:45.599253 2019-12-17 20:09:45.599253 21 2400 150 3 55 1 500.00 0 2019-12-19 2019-12-19 18:32:37.24548 2019-12-19 18:32:37.24548 2 2428 151 20 45 1 500.00 0 2019-12-21 2019-12-21 22:34:19.775149 2019-12-21 22:34:19.775149 2 2477 152 20 45 1 990.00 0 2019-12-21 2019-12-21 22:34:51.225158 2019-12-21 22:34:51.225158 2 2478 153 36 50 1 300.00 0 2019-12-23 2019-12-23 17:31:25.849515 2019-12-23 17:31:25.849515 2 2531 154 33 57 2 0.00 0 2019-12-26 2019-12-26 20:23:16.283228 2019-12-26 20:23:16.283228 8 2610 155 33 57 3 250.00 0 2019-12-26 2019-12-27 01:31:10.843366 2019-12-27 01:31:10.843366 21 2618 156 36 50 1 31.00 0 2019-12-28 2019-12-29 01:50:51.571622 2019-12-29 01:50:51.571622 2 2659 157 36 59 \N 269.00 0 2019-12-28 2019-12-29 01:50:51.595144 2019-12-29 01:50:51.595144 2 2659 158 34 52 1 500.00 0 2019-12-30 2019-12-30 21:01:21.883801 2019-12-30 21:01:21.883801 2 2677 159 255 54 1 449.00 0 2019-12-31 2019-12-31 17:33:27.045583 2019-12-31 17:33:27.045583 2 2696 160 145 64 3 500.00 0 2019-12-31 2019-12-31 20:00:06.269832 2019-12-31 20:00:06.269832 21 2703 161 145 64 3 250.00 0 2019-12-31 2019-12-31 20:02:27.909267 2019-12-31 20:02:27.909267 21 2704 162 36 59 1 350.00 0 2020-01-04 2020-01-04 22:56:41.099929 2020-01-04 22:56:41.099929 2 2753 163 3 55 1 500.00 0 2020-01-10 2020-01-10 17:54:03.980276 2020-01-10 17:54:03.980276 2 2778 164 36 59 1 350.00 0 2020-01-11 2020-01-11 22:04:11.326085 2020-01-11 22:04:11.326085 2 2790 165 20 62 1 700.00 0 2020-01-15 2020-01-15 20:46:41.269459 2020-01-15 20:46:41.269459 2 2802 166 34 52 1 599.00 0 2020-01-15 2020-01-15 21:07:08.70076 2020-01-15 21:07:08.70076 2 2803 167 161 43 1 299.01 0 2020-01-16 2020-01-16 17:58:22.083369 2020-01-16 17:58:22.083369 2 2806 168 122 44 1 433.01 0 2020-01-16 2020-01-16 23:24:30.273441 2020-01-16 23:24:30.273441 2 2808 169 122 49 \N 66.99 0 2020-01-16 2020-01-16 23:24:30.295312 2020-01-16 23:24:30.295312 2 2808 170 122 49 1 400.00 0 2020-01-16 2020-01-17 02:05:01.255288 2020-01-17 02:05:01.255288 2 2811 171 264 60 3 350.00 0 2020-01-17 2020-01-17 17:44:42.946494 2020-01-17 17:44:42.946494 21 2812 172 33 57 1 249.00 0 2020-01-17 2020-01-17 20:45:18.644516 2020-01-17 20:45:18.644516 2 2819 173 33 63 \N 51.00 0 2020-01-17 2020-01-17 20:45:18.66542 2020-01-17 20:45:18.66542 2 2819 174 262 58 3 500.00 0 2020-01-22 2020-01-22 18:00:53.154743 2020-01-22 18:00:53.154743 21 2837 175 264 60 3 150.00 0 2020-01-28 2020-01-29 01:29:08.60592 2020-01-29 01:29:08.60592 21 2888 176 145 64 3 250.00 0 2020-01-28 2020-01-29 01:29:36.457316 2020-01-29 01:29:36.457316 21 2889 177 33 63 3 200.00 0 2020-01-29 2020-01-30 00:11:14.176873 2020-01-30 00:11:14.176873 21 2898 178 33 63 3 50.00 0 2020-01-29 2020-01-30 02:12:56.57382 2020-01-30 02:12:56.57382 21 2900 179 279 66 3 1000.00 0 2020-01-31 2020-01-31 20:03:13.91056 2020-01-31 20:03:13.91056 21 2924 180 283 67 3 3598.00 0 2020-01-31 2020-01-31 21:38:40.411739 2020-01-31 21:38:40.411739 21 2929 181 20 62 1 500.00 0 2020-01-31 2020-02-01 01:10:50.76461 2020-02-01 01:10:50.76461 2 2933 182 20 62 3 700.00 0 2020-02-14 2020-02-14 17:39:44.809428 2020-02-14 17:39:44.809428 21 2997 183 279 66 3 300.00 0 2020-02-20 2020-02-20 18:20:26.124183 2020-02-20 18:20:26.124183 21 3028 184 3 55 1 99.00 0 2020-02-21 2020-02-21 17:36:52.936057 2020-02-21 17:36:52.936057 2 3035 185 3 56 \N 401.00 0 2020-02-21 2020-02-21 17:36:52.961063 2020-02-21 17:36:52.961063 2 3035 186 145 64 3 300.00 0 2020-02-26 2020-02-26 18:13:37.072854 2020-02-26 18:13:37.072854 21 3071 187 3 56 1 500.00 0 2020-02-28 2020-02-28 17:35:40.135319 2020-02-28 17:35:40.135319 2 3084 188 279 66 3 299.00 0 2020-03-02 2020-03-02 21:11:04.668209 2020-03-02 21:11:04.668209 21 3107 189 20 62 1 500.00 0 2020-03-03 2020-03-03 20:00:31.009892 2020-03-03 20:00:31.009892 2 3113 190 3 56 1 600.00 0 2020-03-11 2020-03-11 17:34:31.6921 2020-03-11 17:34:31.6921 2 3156 191 3 56 1 500.00 0 2020-03-13 2020-03-13 18:34:12.296297 2020-03-13 18:34:12.296297 2 3169 192 20 62 1 500.00 0 2020-03-13 2020-03-14 00:57:21.391524 2020-03-14 00:57:21.391524 2 3177 193 298 69 3 823.00 0 2020-03-19 2020-03-19 20:33:06.534444 2020-03-19 20:33:06.534444 21 3235 194 3 56 1 600.00 0 2020-03-19 2020-03-19 22:58:25.913101 2020-03-19 22:58:25.913101 2 3240 195 283 73 2 699.00 0 2020-03-19 2020-03-20 02:33:50.970739 2020-03-20 02:33:50.970739 8 3242 196 283 72 \N 301.00 0 2020-03-19 2020-03-20 02:33:50.990527 2020-03-20 02:33:50.990527 8 3242 197 3 56 1 600.00 0 2020-03-24 2020-03-24 23:16:04.237377 2020-03-24 23:16:04.237377 2 3263 198 283 72 1 887.01 0 2020-04-28 2020-04-29 00:40:16.183336 2020-04-29 00:40:16.183336 9 3269 199 20 62 1 498.00 0 2020-04-28 2020-04-29 01:40:24.722697 2020-04-29 01:40:24.722697 9 3270 200 298 69 1 475.00 0 2020-04-28 2020-04-29 01:42:21.517652 2020-04-29 01:42:21.517652 9 3271 201 298 68 \N 1525.00 0 2020-04-28 2020-04-29 01:42:21.540249 2020-04-29 01:42:21.540249 9 3271 202 33 63 1 498.00 0 2020-04-28 2020-04-29 01:44:33.688287 2020-04-29 01:44:33.688287 9 3272 203 122 49 1 831.01 0 2020-04-28 2020-04-29 01:45:41.396336 2020-04-29 01:45:41.396336 9 3273 204 138 38 1 298.00 0 2020-04-28 2020-04-29 01:46:30.658665 2020-04-29 01:46:30.658665 9 3274 205 3 71 1 1699.00 0 2020-04-28 2020-04-29 02:03:35.98851 2020-04-29 02:03:35.98851 9 3275 206 3 61 1 1299.00 0 2020-04-28 2020-04-29 02:03:36.003774 2020-04-29 02:03:36.003774 9 3275 207 3 56 1 165.00 0 2020-04-28 2020-04-29 02:03:36.019117 2020-04-29 02:03:36.019117 9 3275 208 90 32 1 1078.00 0 2020-04-28 2020-04-29 02:08:04.482437 2020-04-29 02:08:04.482437 9 3276 209 49 28 1 440.00 0 2020-04-28 2020-04-29 02:08:21.277322 2020-04-29 02:08:21.277322 9 3277 210 314 75 3 1850.00 0 2020-04-30 2020-04-30 23:12:21.593271 2020-04-30 23:12:21.593271 18 3281 211 315 76 3 1300.00 0 2020-05-03 2020-05-03 23:52:24.479384 2020-05-03 23:52:24.479384 18 3288 212 3 77 3 2499.00 0 2020-05-03 2020-05-04 00:30:56.986647 2020-05-04 00:30:56.986647 18 3295 213 3 77 1 1128.00 0 2020-05-19 2020-05-20 01:16:52.854014 2020-05-20 01:16:52.854014 9 3329 214 298 68 2 900.00 0 2020-05-19 2020-05-20 01:21:27.794183 2020-05-20 01:21:27.794183 8 3330 215 122 82 3 700.00 0 2020-06-10 2020-06-11 02:37:59.168911 2020-06-11 02:37:59.168911 18 3342 216 314 75 3 1848.00 0 2020-06-10 2020-06-11 02:38:50.591412 2020-06-11 02:38:50.591412 18 3343 217 3 77 3 970.00 0 2020-06-10 2020-06-11 02:41:05.087322 2020-06-11 02:41:05.087322 18 3344 218 3 79 \N 330.00 0 2020-06-10 2020-06-11 02:41:05.118654 2020-06-11 02:41:05.118654 18 3344 219 33 78 3 1000.00 0 2020-06-10 2020-06-11 02:47:55.377774 2020-06-11 02:47:55.377774 18 3345 220 145 64 3 808.00 0 2020-06-19 2020-06-20 01:17:05.929329 2020-06-20 01:17:05.929329 18 3346 221 275 65 3 1199.00 0 2020-07-03 2020-07-04 01:06:28.447438 2020-07-04 01:06:28.447438 18 3369 222 275 88 \N 197.00 0 2020-07-03 2020-07-04 01:06:28.481595 2020-07-04 01:06:28.481595 18 3369 223 323 94 3 5000.00 0 2020-07-04 2020-07-04 18:33:09.403743 2020-07-04 18:33:09.403743 21 3371 224 33 78 3 999.00 0 2020-07-07 2020-07-07 22:14:51.734235 2020-07-07 22:14:51.734235 18 3397 225 33 83 \N 1.00 0 2020-07-07 2020-07-07 22:14:51.761028 2020-07-07 22:14:51.761028 18 3397 226 3 79 3 269.00 0 2020-07-07 2020-07-07 22:18:07.183011 2020-07-07 22:18:07.183011 18 3398 227 3 80 \N 529.00 0 2020-07-07 2020-07-07 22:18:07.20631 2020-07-07 22:18:07.20631 18 3398 228 3 86 \N 302.00 0 2020-07-07 2020-07-07 22:18:07.228258 2020-07-07 22:18:07.228258 18 3398 229 298 68 3 900.00 0 2020-07-07 2020-07-07 22:19:33.386102 2020-07-07 22:19:33.386102 18 3399 230 3 86 3 600.00 0 2020-07-07 2020-07-07 22:31:02.806287 2020-07-07 22:31:02.806287 18 3400 231 3 86 3 600.00 0 2020-07-21 2020-07-21 23:37:01.440351 2020-07-21 23:37:01.440351 18 3495 232 283 90 3 1000.00 0 2020-07-21 2020-07-21 23:38:51.568998 2020-07-21 23:38:51.568998 18 3496 233 33 83 3 300.00 0 2020-07-21 2020-07-21 23:55:18.340216 2020-07-21 23:55:18.340216 18 3497 234 298 68 3 1801.00 0 2020-07-21 2020-07-21 23:58:11.514998 2020-07-21 23:58:11.514998 18 3498 235 298 70 \N 399.00 0 2020-07-21 2020-07-21 23:58:11.546194 2020-07-21 23:58:11.546194 18 3498 236 298 81 \N 849.00 0 2020-07-21 2020-07-21 23:58:11.5769 2020-07-21 23:58:11.5769 18 3498 237 298 84 \N 1967.00 0 2020-07-21 2020-07-21 23:58:11.603872 2020-07-21 23:58:11.603872 18 3498 238 298 85 \N 589.00 0 2020-07-21 2020-07-21 23:58:11.642719 2020-07-21 23:58:11.642719 18 3498 239 298 95 \N 145.00 0 2020-07-21 2020-07-21 23:58:11.680426 2020-07-21 23:58:11.680426 18 3498 240 353 104 3 998.00 0 2020-08-04 2020-08-05 00:27:21.316211 2020-08-05 00:27:21.316211 18 3570 241 315 76 3 888.00 0 2020-08-05 2020-08-05 18:42:40.870268 2020-08-05 18:42:40.870268 18 3574 242 298 96 3 900.00 0 2020-08-05 2020-08-05 18:43:28.87323 2020-08-05 18:43:28.87323 18 3575 243 3 86 3 66.00 0 2020-08-05 2020-08-05 18:46:31.960495 2020-08-05 18:46:31.960495 18 3576 244 3 97 \N 534.00 0 2020-08-05 2020-08-05 18:46:31.99141 2020-08-05 18:46:31.99141 18 3576 245 33 83 3 300.00 0 2020-08-05 2020-08-05 18:49:03.225633 2020-08-05 18:49:03.225633 18 3577 246 264 60 3 499.00 0 2020-08-05 2020-08-05 18:51:23.946158 2020-08-05 18:51:23.946158 18 3578 247 323 94 3 363.30 0 2020-08-05 2020-08-05 18:52:47.480833 2020-08-05 18:52:47.480833 18 3579 248 323 92 \N 636.70 0 2020-08-05 2020-08-05 18:52:47.503715 2020-08-05 18:52:47.503715 18 3579 249 122 82 3 500.00 0 2020-08-05 2020-08-05 18:56:01.502307 2020-08-05 18:56:01.502307 18 3580 250 322 91 3 1000.00 0 2020-08-05 2020-08-05 19:01:31.186892 2020-08-05 19:01:31.186892 18 3581 251 343 103 3 600.00 0 2020-08-05 2020-08-05 19:04:58.540341 2020-08-05 19:04:58.540341 18 3582 252 323 93 3 1000.00 0 2020-08-08 2020-08-08 18:10:32.270247 2020-08-08 18:10:32.270247 21 3601 253 3 97 3 800.00 0 2020-08-12 2020-08-12 22:50:23.54389 2020-08-12 22:50:23.54389 21 3614 254 358 105 3 500.00 0 2020-08-15 2020-08-15 23:37:47.574377 2020-08-15 23:37:47.574377 21 3653 255 323 93 3 1000.00 0 2020-08-21 2020-08-21 18:13:36.108968 2020-08-21 18:13:36.108968 21 3685 256 298 96 3 327.99 0 2020-08-24 2020-08-24 19:04:53.313444 2020-08-24 19:04:53.313444 18 3704 257 298 95 \N 472.01 0 2020-08-24 2020-08-24 19:04:53.340336 2020-08-24 19:04:53.340336 18 3704 258 283 90 3 631.00 0 2020-08-24 2020-08-24 19:08:53.302008 2020-08-24 19:08:53.302008 18 3705 259 358 105 3 500.00 0 2020-08-25 2020-08-26 00:17:23.410309 2020-08-26 00:17:23.410309 18 3721 260 298 95 3 71.99 0 2020-08-25 2020-08-26 00:18:06.006947 2020-08-26 00:18:06.006947 18 3722 261 3 97 3 64.00 0 2020-08-25 2020-08-26 00:18:33.080955 2020-08-26 00:18:33.080955 18 3723 262 3 101 \N 736.00 0 2020-08-25 2020-08-26 00:18:33.099616 2020-08-26 00:18:33.099616 18 3723 263 353 104 3 1000.00 0 2020-08-25 2020-08-26 00:19:27.529853 2020-08-26 00:19:27.529853 18 3724 264 323 93 3 5000.00 0 2020-09-04 2020-09-04 18:25:51.476627 2020-09-04 18:25:51.476627 21 3821 265 3 101 3 264.00 0 2020-09-04 2020-09-04 20:44:58.157609 2020-09-04 20:44:58.157609 21 3829 266 3 102 \N 336.00 0 2020-09-04 2020-09-04 20:44:58.178876 2020-09-04 20:44:58.178876 21 3829 267 377 106 3 51.00 0 2020-09-09 2020-09-09 23:44:05.398697 2020-09-09 23:44:05.398697 21 3869 268 377 106 3 300.00 0 2020-09-14 2020-09-14 20:32:11.590743 2020-09-14 20:32:11.590743 21 3908 269 343 103 3 700.00 0 2020-09-15 2020-09-15 21:58:48.344046 2020-09-15 21:58:48.344046 18 3927 270 33 83 3 298.00 0 2020-09-15 2020-09-15 22:02:08.763355 2020-09-15 22:02:08.763355 18 3928 271 358 105 3 449.00 0 2020-09-15 2020-09-15 22:02:37.123396 2020-09-15 22:02:37.123396 18 3930 272 132 37 3 549.00 0 2020-09-15 2020-09-15 22:04:43.46611 2020-09-15 22:04:43.46611 18 3931 273 283 90 3 867.00 0 2020-09-21 2020-09-22 00:46:36.074323 2020-09-22 00:46:36.074323 21 4007 274 283 99 \N 133.00 0 2020-09-21 2020-09-22 00:46:36.099123 2020-09-22 00:46:36.099123 21 4007 275 275 88 3 129.00 0 2020-10-13 2020-10-14 00:45:15.954148 2020-10-14 00:45:15.954148 18 4201 276 343 103 3 1698.00 0 2020-10-15 2020-10-15 22:32:19.87724 2020-10-15 22:32:19.87724 18 4226 277 410 112 3 540.00 0 2020-10-15 2020-10-15 22:34:08.439365 2020-10-15 22:34:08.439365 18 4227 278 353 104 3 1000.00 0 2020-10-15 2020-10-15 22:35:34.519836 2020-10-15 22:35:34.519836 18 4228 279 3 102 3 364.00 0 2020-10-15 2020-10-15 22:37:29.311861 2020-10-15 22:37:29.311861 18 4229 280 20 110 3 800.00 0 2020-10-15 2020-10-15 22:43:09.170879 2020-10-15 22:43:09.170879 18 4230 281 20 110 3 534.00 0 2020-10-15 2020-10-16 02:12:28.856951 2020-10-16 02:12:28.856951 18 4240 282 377 106 1 500.00 0 2020-10-17 2020-10-17 17:52:32.879492 2020-10-17 17:52:32.879492 9 4252 283 377 106 1 300.00 0 2020-10-23 2020-10-23 18:02:36.672091 2020-10-23 18:02:36.672091 2 4287 284 410 112 3 1200.00 0 2020-10-26 2020-10-26 22:28:12.371627 2020-10-26 22:28:12.371627 21 4328 285 283 99 3 1000.00 0 2020-10-26 2020-10-26 22:28:45.830829 2020-10-26 22:28:45.830829 21 4329 286 262 58 3 300.00 0 2020-10-26 2020-10-26 22:29:20.831407 2020-10-26 22:29:20.831407 21 4330 287 377 106 3 299.00 0 2020-10-29 2020-10-29 23:26:34.826557 2020-10-29 23:26:34.826557 18 4349 288 380 108 3 500.00 0 2020-10-30 2020-10-30 23:28:24.711457 2020-10-30 23:28:24.711457 18 4362 289 20 110 1 600.00 0 2020-11-03 2020-11-03 20:23:34.435271 2020-11-03 20:23:34.435271 2 4397 290 410 112 3 540.00 0 2020-11-05 2020-11-05 21:28:38.919536 2020-11-05 21:28:38.919536 21 4419 291 3 114 1 2500.00 0 2020-11-09 2020-11-09 23:57:36.594237 2020-11-09 23:57:36.594237 2 4470 292 20 110 1 1000.00 0 2020-11-18 2020-11-18 17:51:00.966713 2020-11-18 17:51:00.966713 2 4570 293 3 114 1 1000.00 0 2020-11-25 2020-11-25 23:41:35.45487 2020-11-25 23:41:35.45487 9 4651 294 410 112 3 540.00 0 2020-12-02 2020-12-02 20:38:36.036369 2020-12-02 20:38:36.036369 18 4729 295 410 112 3 1000.00 0 2020-12-02 2020-12-02 20:39:14.694291 2020-12-02 20:39:14.694291 18 4730 296 3 114 1 1000.00 0 2020-12-02 2020-12-02 22:24:13.958721 2020-12-02 22:24:13.958721 2 4734 297 20 110 1 700.00 0 2020-12-03 2020-12-03 22:44:52.265045 2020-12-03 22:44:52.265045 2 4744 298 377 109 3 299.00 0 2020-12-03 2020-12-03 23:54:27.982262 2020-12-03 23:54:27.982262 21 4745 299 377 106 3 49.00 0 2020-12-03 2020-12-03 23:54:27.999584 2020-12-03 23:54:27.999584 21 4745 300 410 112 3 6181.00 0 2020-12-04 2020-12-05 01:44:17.638793 2020-12-05 01:44:17.638793 18 4766 301 20 110 1 700.00 0 2020-12-09 2020-12-09 23:09:05.501102 2020-12-09 23:09:05.501102 9 4822 302 70 118 3 2098.00 0 2020-12-23 2020-12-23 18:28:43.794362 2020-12-23 18:28:43.794362 18 5103 303 380 107 3 1098.00 0 2020-12-23 2020-12-23 18:29:11.776234 2020-12-23 18:29:11.776234 18 5104 304 380 108 3 299.00 0 2020-12-23 2020-12-23 18:29:11.792272 2020-12-23 18:29:11.792272 18 5104 305 484 119 1 400.00 0 2020-12-24 2020-12-25 01:07:19.507116 2020-12-25 01:07:19.507116 2 5158 306 484 119 1 300.00 0 2021-01-04 2021-01-04 21:45:21.822443 2021-01-04 21:45:21.822443 9 5278 307 484 119 1 900.00 0 2021-01-04 2021-01-04 21:47:28.551437 2021-01-04 21:47:28.551437 9 5279 308 377 117 3 500.00 0 2021-01-07 2021-01-08 00:19:06.598197 2021-01-08 00:19:06.598197 18 5300 309 3 114 1 1500.00 0 2021-01-07 2021-01-08 00:58:08.786453 2021-01-08 00:58:08.786453 2 5301 310 489 120 1 500.00 0 2021-02-02 2021-02-02 18:17:09.042167 2021-02-02 18:17:09.042167 2 5432 311 36 74 1 949.00 0 2021-02-02 2021-02-02 18:18:20.240349 2021-02-02 18:18:20.240349 2 5433 312 36 87 1 800.00 0 2021-02-02 2021-02-02 18:18:20.255854 2021-02-02 18:18:20.255854 2 5433 313 36 89 1 449.00 0 2021-02-02 2021-02-02 18:18:20.2704 2021-02-02 18:18:20.2704 2 5433 314 494 122 3 400.00 0 2021-02-02 2021-02-02 18:28:50.638102 2021-02-02 18:28:50.638102 21 5434 315 3 114 1 893.00 0 2021-02-10 2021-02-11 01:04:11.85142 2021-02-11 01:04:11.85142 2 5468 316 3 116 \N 107.00 0 2021-02-10 2021-02-11 01:04:11.873758 2021-02-11 01:04:11.873758 2 5468 317 489 120 1 500.00 0 2021-02-12 2021-02-13 00:10:15.564813 2021-02-13 00:10:15.564813 2 5472 318 494 122 3 400.00 0 2021-02-16 2021-02-16 19:37:08.96618 2021-02-16 19:37:08.96618 21 5482 319 489 120 3 400.00 0 2021-02-20 2021-02-20 20:01:58.237471 2021-02-20 20:01:58.237471 21 5487 320 36 123 1 349.99 0 2021-02-23 2021-02-23 21:27:11.121987 2021-02-23 21:27:11.121987 2 5488 321 262 58 3 899.00 0 2021-02-23 2021-02-24 00:53:13.143926 2021-02-24 00:53:13.143926 21 5489 322 122 82 3 399.00 0 2021-02-23 2021-02-24 01:28:56.943542 2021-02-24 01:28:56.943542 21 5490 323 283 99 3 3082.00 0 2021-02-23 2021-02-24 01:30:29.029959 2021-02-24 01:30:29.029959 21 5491 324 283 115 3 569.00 0 2021-02-23 2021-02-24 01:30:29.045436 2021-02-24 01:30:29.045436 21 5491 325 377 117 3 399.00 0 2021-02-23 2021-02-24 01:35:18.331336 2021-02-24 01:35:18.331336 21 5492 326 494 122 3 400.00 0 2021-03-01 2021-03-01 19:46:43.53732 2021-03-01 19:46:43.53732 21 5494 327 377 117 3 300.00 0 2021-03-01 2021-03-02 02:04:36.998311 2021-03-02 02:04:36.998311 21 5496 328 422 113 3 1398.00 0 2021-03-01 2021-03-02 02:06:15.249663 2021-03-02 02:06:15.249663 21 5497 329 3 116 1 1144.00 0 2021-03-03 2021-03-03 23:25:23.563961 2021-03-03 23:25:23.563961 2 5498 \. -- -- Name: credit_payments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.credit_payments_id_seq', 329, true); -- -- Data for Name: credits; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.credits (id, customer_id, pointsale_id, sale_id, total, rest, status, created_at, updated_at, credit_note) FROM stdin; 1 3 1 10 1398.00 0.00 3 2019-02-05 22:30:22.613663 2019-02-06 00:46:46.95645 30 69 2 398 1499.00 0.00 3 2019-04-17 23:37:06.165743 2019-05-23 00:58:20.743348 35 69 2 619 499.00 0.00 3 2019-05-20 22:52:37.933829 2019-05-20 22:52:37.933829 10 29 2 149 1174.00 1174.00 0 2019-02-24 00:47:26.74107 2019-02-24 00:47:26.74107 47 3 3 1108 2317.00 0.00 3 2019-09-17 19:55:05.911035 2019-10-21 17:01:45.499764 19 38 1 203 1399.00 0.00 3 2019-03-04 16:35:47.41043 2019-05-07 15:38:32.699694 46 36 1 1095 759.00 0.00 3 2019-09-14 21:51:16.133529 2019-11-09 23:01:12.241921 8 29 1 139 2898.00 0.00 3 2019-02-22 19:43:16.077069 2019-06-01 00:44:40.763727 20 39 1 205 1068.00 0.00 3 2019-03-05 00:28:09.823587 2019-03-05 00:41:52.637855 9 29 1 148 978.00 666.00 0 2019-02-24 00:42:48.447234 2019-06-01 00:44:40.788792 22 29 2 208 2227.00 2227.00 0 2019-03-05 00:51:18.53499 2019-03-05 00:51:18.53499 21 39 2 207 4145.00 3713.00 1 2019-03-05 00:38:34.601719 2019-03-05 01:43:39.824798 24 29 2 214 2498.00 2498.00 0 2019-03-05 02:11:32.506092 2019-03-05 02:11:32.506092 51 34 3 1540 789.00 789.00 1 2019-11-30 23:33:10.316382 2019-11-30 23:35:22.846323 18 36 1 182 3700.00 0.00 3 2019-03-02 00:52:34.270854 2019-09-14 21:12:40.465305 90 283 3 2480 2498.00 0.00 3 2020-06-25 21:35:27.253604 2020-09-22 00:46:36.078602 23 39 2 212 4145.00 0.00 3 2019-03-05 01:45:43.031722 2019-05-21 01:48:44.088405 25 3 1 324 1399.00 0.00 3 2019-04-03 17:41:02.198776 2019-09-17 18:06:02.23557 50 36 2 1494 1298.00 0.00 3 2019-11-23 20:21:33.756424 2019-12-29 01:50:51.575636 86 3 1 2472 1568.00 0.00 3 2020-06-24 21:41:50.9919 2020-08-05 18:46:31.965405 2 3 1 18 2566.00 0.00 3 2019-02-05 22:46:37.668304 2019-07-09 18:22:33.507461 11 32 1 165 2998.00 0.00 3 2019-02-28 20:45:18.334042 2019-03-19 23:17:01.321623 36 122 1 712 869.00 0.00 3 2019-06-03 21:17:54.33437 2019-07-13 20:19:47.966867 6 20 2 79 3498.01 0.00 3 2019-02-13 23:58:51.503241 2019-04-25 18:40:06.740417 92 323 3 2484 1649.00 1012.30 0 2020-06-26 19:00:37.424685 2020-08-05 18:52:47.50686 5 19 2 78 1799.00 0.00 3 2019-02-13 23:55:54.819909 2019-03-20 00:09:04.613539 31 3 1 522 2097.99 0.00 3 2019-05-09 18:00:00.689831 2019-09-18 01:24:25.445424 16 36 1 178 2068.00 0.00 3 2019-03-02 00:36:54.114545 2019-05-04 20:10:00.900522 34 102 1 616 1399.00 0.00 3 2019-05-20 19:19:15.023503 2019-05-25 16:27:41.920404 48 189 3 1183 1599.00 0.00 3 2019-10-02 23:44:03.17189 2019-11-06 22:41:52.468554 3 3 2 27 499.00 0.00 3 2019-02-06 01:41:53.622749 2019-05-09 17:44:30.893231 15 34 1 174 1299.00 0.00 3 2019-03-02 00:11:47.988405 2019-05-12 00:16:52.115674 4 14 1 67 1499.00 0.00 3 2019-02-12 21:02:22.177189 2019-03-08 17:13:49.07276 7 20 1 138 1799.00 0.00 3 2019-02-22 19:26:26.155373 2019-05-01 00:06:53.739056 33 69 2 556 799.00 799.00 1 2019-05-10 19:53:31.283902 2019-05-20 22:51:04.547228 12 33 2 168 999.00 0.00 3 2019-03-01 22:11:54.042804 2019-03-01 22:16:23.472348 29 69 1 387 1599.00 0.00 3 2019-04-16 22:19:00.046892 2019-05-23 00:58:20.70772 53 222 1 1558 2348.00 0.00 3 2019-12-03 20:12:29.866424 2019-12-03 20:12:29.866424 39 122 2 817 918.00 0.00 3 2019-07-03 21:11:46.380745 2019-07-31 19:46:15.331851 13 34 2 171 4286.00 0.00 3 2019-03-01 23:59:31.229754 2019-09-14 20:11:39.45909 27 34 1 383 499.00 0.00 3 2019-04-16 00:52:17.04724 2019-04-16 00:52:17.04724 14 34 1 172 2348.01 0.00 3 2019-03-02 00:04:41.634993 2019-08-10 22:38:52.512679 63 33 3 1914 799.00 0.00 3 2019-12-27 01:29:38.648372 2020-01-30 02:12:56.57773 40 122 1 836 1699.01 0.00 3 2019-07-13 20:18:30.89304 2019-12-11 00:24:43.137636 17 36 2 180 1879.00 0.00 3 2019-03-02 00:40:47.911154 2019-10-13 01:16:35.487048 41 122 1 878 599.00 0.00 3 2019-07-22 20:05:40.042127 2019-12-11 00:24:43.157962 42 122 1 965 749.00 0.00 3 2019-08-16 20:50:49.273193 2019-12-11 00:24:43.177406 54 255 1 1597 899.00 0.00 3 2019-12-07 22:08:32.681631 2019-12-07 22:09:27.547525 67 283 3 2136 3598.00 0.00 3 2020-01-30 22:07:12.271022 2020-01-30 22:07:12.271022 26 36 1 381 669.00 0.00 3 2019-04-16 00:30:06.954645 2019-10-26 22:08:49.106096 49 122 1 1384 1298.00 0.00 3 2019-11-08 21:52:52.529451 2020-01-17 02:05:01.258766 38 138 1 808 3798.00 0.00 3 2019-07-02 22:35:22.558334 2019-11-06 22:51:00.677594 88 275 1 2475 2007.01 1681.01 0 2020-06-25 20:02:46.202466 2020-10-14 00:45:15.957638 55 3 2 1625 1099.00 0.00 3 2019-12-10 18:38:50.375957 2020-02-21 17:36:52.940743 71 3 1 2333 1699.00 0.00 3 2020-03-13 18:32:44.733427 2020-03-13 18:32:44.733427 45 20 3 1077 3498.00 0.00 3 2019-09-13 01:12:01.506055 2019-12-21 22:34:19.778614 73 283 3 2342 699.00 0.00 3 2020-03-14 00:54:15.386897 2020-03-20 02:33:50.974152 59 36 1 1702 969.00 0.00 3 2019-12-15 01:00:38.378413 2020-01-04 22:56:41.103439 61 3 1 1748 1299.00 0.00 3 2019-12-19 18:34:37.043831 2019-12-19 18:34:37.043831 52 34 3 1542 2099.00 0.00 3 2019-11-30 23:49:43.805235 2019-12-30 21:01:21.887065 43 161 3 1017 1699.01 0.00 3 2019-09-01 03:17:53.606069 2019-10-22 17:48:11.040721 44 122 2 1056 449.00 0.00 3 2019-09-09 21:08:03.745894 2020-01-16 23:24:30.276965 56 3 1 1626 4366.00 0.00 3 2019-12-10 18:40:09.642869 2020-03-24 23:16:04.240671 57 33 2 1651 699.00 0.00 3 2019-12-12 01:01:52.975188 2020-01-17 20:45:18.648808 72 283 2 2341 1188.01 0.00 3 2020-03-14 00:52:28.216695 2020-03-20 02:33:50.993977 74 36 1 2363 949.00 0.00 3 2020-03-16 19:54:51.750201 2020-03-16 19:54:51.750201 66 279 3 2077 1599.00 0.00 3 2020-01-23 20:24:52.714338 2020-02-20 18:20:26.128353 32 90 2 529 2368.00 0.00 3 2019-05-09 19:44:57.97566 2019-06-06 00:35:09.039312 62 20 1 1795 3398.00 0.00 3 2019-12-21 23:10:27.095629 2020-03-14 00:57:21.398189 69 298 2 2312 1298.00 0.00 3 2020-03-10 02:53:51.087885 2020-04-29 01:42:21.520927 28 49 1 386 1190.00 0.00 3 2019-04-16 20:37:29.587571 2019-04-16 20:39:22.259451 80 3 1 2457 529.00 0.00 3 2020-05-20 01:15:23.498408 2020-07-07 22:18:07.209691 68 298 3 2311 5126.00 0.00 3 2020-03-10 02:50:42.001845 2020-07-21 23:58:11.521805 93 323 1 2485 7096.50 96.50 0 2020-06-26 19:08:16.409656 2020-09-04 18:25:51.480674 75 314 3 2417 3698.00 0.00 3 2020-04-30 23:11:20.584496 2020-04-30 23:12:21.597591 77 3 3 2431 4597.00 0.00 3 2020-05-04 00:30:24.25719 2020-06-11 02:41:05.092552 64 145 3 1966 2108.00 0.00 3 2019-12-31 19:59:08.761413 2020-02-26 18:13:37.079585 82 122 3 2459 1599.00 0.00 3 2020-05-20 01:22:34.344252 2020-08-05 18:56:01.505792 78 33 3 2433 1999.00 0.00 3 2020-05-04 00:40:42.013652 2020-07-07 22:14:51.738978 79 3 2 2454 599.00 0.00 3 2020-05-20 01:11:33.435946 2020-07-07 22:18:07.186818 37 132 1 772 1349.00 0.00 3 2019-06-21 01:28:49.650661 2019-06-21 01:29:50.979543 70 298 3 2316 399.00 0.00 3 2020-03-10 21:05:35.818116 2020-07-21 23:58:11.551158 60 264 3 1709 1499.00 0.00 3 2019-12-15 19:45:39.034142 2020-01-29 01:29:08.613866 81 298 2 2458 849.00 0.00 3 2020-05-20 01:19:08.614459 2020-07-21 23:58:11.581479 84 298 1 2468 1967.00 0.00 3 2020-06-24 20:29:24.063198 2020-07-21 23:58:11.611189 85 298 2 2469 589.00 0.00 3 2020-06-24 20:31:06.251462 2020-07-21 23:58:11.656281 76 315 3 2424 2188.00 0.00 3 2020-05-03 23:51:17.681737 2020-05-03 23:52:24.483465 83 33 1 2463 899.00 0.00 3 2020-06-11 03:02:36.900235 2020-08-05 18:49:03.230051 58 262 3 1667 2699.00 0.00 3 2019-12-13 02:58:00.838809 2020-10-26 22:29:20.834295 98 322 1 2494 1178.00 1178.00 0 2020-07-02 19:07:00.687155 2020-07-02 19:07:00.687155 65 275 3 1993 1199.00 0.00 3 2020-01-03 19:37:07.849534 2020-07-04 01:06:28.453728 100 275 3 2504 429.00 429.00 0 2020-07-04 01:07:01.361961 2020-07-04 01:07:01.361961 87 36 2 2473 800.00 0.00 3 2020-06-25 18:40:12.385941 2020-06-25 18:40:12.385941 89 36 1 2479 449.00 0.00 3 2020-06-25 21:22:23.538592 2020-06-25 21:22:23.538592 114 3 1 3373 6893.00 0.00 3 2020-11-09 23:56:23.895756 2021-02-11 01:04:11.8552 94 323 3 2486 5363.30 0.00 3 2020-06-26 19:19:47.274703 2020-08-05 18:52:47.484248 91 322 3 2482 1699.00 699.00 0 2020-06-26 18:55:14.638536 2020-08-05 19:01:31.192481 96 298 1 2489 1227.99 0.00 3 2020-07-01 19:35:33.426899 2020-08-24 19:04:53.318057 120 489 1 4038 1599.00 199.00 0 2021-01-07 00:00:39.090888 2021-02-20 20:01:58.241365 95 298 3 2488 689.00 0.00 3 2020-07-01 19:34:29.463864 2020-08-24 19:04:53.344094 97 3 3 2491 1398.00 0.00 3 2020-07-01 23:04:17.075984 2020-08-26 00:18:33.083732 123 36 1 4181 849.99 500.00 0 2021-02-13 01:38:56.704854 2021-02-23 21:27:11.1251 99 283 3 2503 4215.00 0.00 3 2020-07-04 00:40:03.879013 2020-10-26 22:28:45.833388 101 3 3 2516 1000.00 0.00 3 2020-07-06 01:46:49.557505 2020-09-04 20:44:58.161265 115 283 3 3573 569.00 0.00 3 2020-12-02 01:49:05.953717 2020-12-02 01:49:05.953717 122 494 3 4121 1499.00 299.00 0 2021-01-23 21:51:38.388258 2021-03-01 19:46:43.542555 117 377 3 3589 1199.00 0.00 3 2020-12-03 23:56:26.998373 2021-02-24 01:35:18.334761 105 358 3 2721 1449.00 0.00 3 2020-08-15 23:37:11.43906 2020-08-26 00:17:23.414484 113 422 1 3274 1398.00 0.00 3 2020-10-27 22:48:26.155244 2020-10-27 22:48:26.155244 111 275 3 3170 1398.00 1398.00 0 2020-10-14 00:44:41.935291 2020-10-14 00:44:41.935291 103 343 3 2604 2998.00 0.00 3 2020-07-21 23:35:00.206898 2020-09-15 21:58:48.348692 116 3 1 3579 1251.00 0.00 3 2020-12-02 22:36:49.175203 2021-02-11 01:04:11.876806 104 353 3 2663 2998.00 0.00 3 2020-08-05 00:26:13.013345 2020-08-26 00:19:27.532412 102 3 3 2517 700.00 0.00 3 2020-07-06 01:47:46.720593 2020-09-04 20:44:58.182162 109 377 3 2906 299.00 0.00 3 2020-09-11 20:38:53.24822 2020-09-11 20:38:53.24822 106 377 3 2888 1499.00 0.00 3 2020-09-09 23:43:30.23478 2020-10-29 23:26:34.831963 112 410 3 3179 10001.00 0.00 3 2020-10-15 01:32:02.156728 2020-12-02 20:39:14.697655 110 20 1 3067 4334.00 0.00 3 2020-09-28 20:39:15.923427 2020-12-03 22:44:52.268798 118 70 3 3665 2098.00 0.00 3 2020-12-12 00:55:33.675049 2020-12-12 00:55:33.675049 107 380 3 2904 1098.00 0.00 3 2020-09-11 20:36:27.71323 2020-09-11 20:36:27.71323 108 380 1 2905 799.00 0.00 3 2020-09-11 20:37:59.090965 2020-10-30 23:28:24.715251 119 484 1 3925 1600.00 0.00 3 2020-12-25 01:05:47.572958 2021-01-04 21:45:21.825956 121 491 3 4078 999.00 999.00 0 2021-01-15 17:58:35.259042 2021-01-15 17:58:35.259042 \. -- -- Name: credits_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.credits_id_seq', 123, true); -- -- Data for Name: customers; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.customers (id, nick_name, phone, email, credit, credit_limit, time_limit, notes, status, created_at, updated_at, contact_id, is_public) FROM stdin; 1 Publico general 0000000000 cliente@clientes.com f 0.00 0 ninguna 1 2019-01-28 18:10:20.927225 2019-01-28 18:10:20.927225 \N 1 2 Julia Perez (667) 192-4037 t 5000.00 35 1 2019-02-05 22:20:36.175301 2019-02-05 22:20:36.175301 \N 0 3 PAOLA MARTINEZ (667) 228-6750 samantha_urcisichi@hotmail.com t 20000.00 120 1 2019-02-05 22:28:37.527426 2019-02-05 22:28:37.527426 2 0 5 JANETH DIAZ (667) 253-9960 samantha_urcisichi@hotmail.com t 5000.00 0 1 2019-02-05 22:33:53.23982 2019-02-05 22:34:53.12916 3 0 6 ELIZABETH CARDENAS (631) 157-9350 t 5000.00 0 1 2019-02-05 22:36:58.444045 2019-02-05 22:36:58.444045 \N 0 7 VANESA BARAJAS (667) 103-4173 f 0.00 0 1 2019-02-06 01:32:09.308005 2019-02-06 01:32:09.308005 \N 0 8 BIRIDIANA PRECIADO (667) 161-4175 f 0.00 0 1 2019-02-06 20:19:56.300511 2019-02-06 20:19:56.300511 \N 0 9 Chemy f 0.00 0 0 2019-02-06 21:13:13.887016 2019-02-06 21:13:18.699613 \N 0 10 NORMA GARCIA (667) 184-3268 t 6000.00 0 1 2019-02-09 21:27:05.038048 2019-02-09 21:27:05.038048 \N 0 11 IRMA SUGEY CARTAGENA (667) 785-1774 t 4000.00 0 1 2019-02-11 21:12:58.046104 2019-02-11 21:12:58.046104 \N 0 12 ALEJANDRA PEREZ (667) 466-8446 t 6000.00 0 1 2019-02-12 00:32:26.973924 2019-02-12 00:32:26.973924 \N 0 13 DORA ELENA AVILES (667) 199-7149 t 4000.00 0 1 2019-02-12 01:36:29.3879 2019-02-12 01:36:29.3879 \N 0 14 CYNTHIA TELCEL t 6000.00 0 1 2019-02-12 21:01:26.79525 2019-02-12 21:01:26.79525 \N 0 15 HUMBERTO (667) 174-7327 t 6000.00 0 1 2019-02-12 23:51:33.801821 2019-02-12 23:51:33.801821 \N 0 16 HUMBERTO (667) 174-7327 t 6000.00 0 1 2019-02-12 23:56:01.638938 2019-02-12 23:56:01.638938 \N 0 17 ESMERALDA TELLES (667) 152-8170 f 0.00 0 1 2019-02-13 19:54:08.735035 2019-02-13 19:54:08.735035 \N 0 18 ANA CRISTINA (687) 146-6476 f 0.00 0 1 2019-02-13 21:40:55.438208 2019-02-13 21:40:55.438208 \N 0 19 FELIPE BANORTE (667) 126-0556 t 5000.00 0 1 2019-02-13 23:55:28.996054 2019-02-13 23:55:28.996054 \N 0 20 MARICELA BANORTE (667) 142-8445 t 20000.00 0 1 2019-02-13 23:58:26.222723 2019-02-13 23:58:26.222723 \N 0 21 KARINA ZAZUETA (667) 418-1298 f 0.00 0 1 2019-02-14 02:28:17.60479 2019-02-14 02:28:17.60479 \N 0 22 MARIA DE JESUS MADURINO (667) 159-7793 t 6000.00 0 1 2019-02-15 22:25:51.067897 2019-02-15 22:25:51.067897 \N 0 23 NANCY CONTRERAS (667) 127-1990 t 6000.00 0 1 2019-02-17 00:10:04.252302 2019-02-17 00:10:04.252302 \N 0 24 ELIZABETH BEDOLLA (667) 401-5400 t 6000.00 0 1 2019-02-17 01:32:12.53046 2019-02-17 01:32:12.53046 \N 0 25 AMAHIRANI GARCIA (667) 497-4245 f 0.00 0 1 2019-02-17 21:29:35.748997 2019-02-17 21:29:35.748997 \N 0 26 PERLA ENRIQUEZ (667) 188-3785 t 4000.00 0 1 2019-02-18 17:54:03.62475 2019-02-18 17:54:03.62475 \N 0 27 MARIA DE JESUS NAVA FRIAS (667) 748-8289 t 4000.00 0 1 2019-02-18 20:01:37.104477 2019-02-18 20:01:37.104477 \N 0 28 OLGA ARREOLA (667) 421-1322 t 4000.00 0 1 2019-02-20 01:49:52.775965 2019-02-20 01:49:52.775965 \N 0 29 PALOMA PRIMA FLOR t 20000.00 0 1 2019-02-22 19:37:15.376141 2019-02-22 19:37:15.376141 \N 0 30 JAZMIN RAMOS (667) 393-2681 f 0.00 0 1 2019-02-23 01:52:35.485696 2019-02-23 01:52:35.485696 \N 0 31 ISABEL RAFAEL (667) 481-2084 t 4000.00 0 1 2019-02-28 17:15:31.387892 2019-02-28 17:15:31.387892 \N 0 32 VIRIDIANA LOPEZ (667) 229-1064 t 20000.00 0 1 2019-02-28 20:33:11.613575 2019-02-28 20:33:11.613575 \N 0 33 GRISELL PRIMA FLOR t 30000.00 0 1 2019-03-01 22:09:47.611792 2019-03-01 22:09:47.611792 \N 0 34 ANABELLY SUO (667) 393-1875 t 10000.00 365 1 2019-03-01 23:47:28.046933 2019-03-01 23:49:25.588756 \N 0 35 GLENDA KARELY REYES (667) 230-5986 t 5000.00 0 1 2019-03-02 00:27:40.334272 2019-03-02 00:27:40.334272 \N 0 36 ROCIO SUO (667) 223-6341 t 10000.00 0 1 2019-03-02 00:34:10.587171 2019-03-02 00:34:10.587171 \N 0 37 JESSICA OLIVAS (667) 323-1063 f 0.00 0 1 2019-03-02 18:44:26.608067 2019-03-02 18:44:26.608067 \N 0 38 EDNA AMIGA ROCIO t 10000.00 0 1 2019-03-04 16:34:22.286593 2019-03-04 16:34:22.286593 \N 0 39 TANIA AMIGA PALOMA (667) 746-9640 t 15000.00 0 1 2019-03-05 00:26:36.004036 2019-03-05 00:26:36.004036 \N 0 40 GUADALUPE RUIZ (667) 306-3848 t 4000.00 0 1 2019-03-05 01:29:03.828333 2019-03-05 01:29:03.828333 \N 0 41 ISABEL VARGAS (667) 165-9253 t 10000.00 0 1 2019-03-05 21:27:39.455488 2019-03-05 21:27:39.455488 \N 0 42 JAQUELIN CEBREROS (667) 165-7843 t 10000.00 0 1 2019-03-06 19:18:26.360341 2019-03-06 19:18:26.360341 \N 0 43 KARLA CABADA (714) 608-26__ f 0.00 0 1 2019-03-07 01:47:04.173147 2019-03-07 01:47:04.173147 \N 0 44 ELOIZA SARABIA (667) 234-4122 f 0.00 0 1 2019-03-09 00:48:54.129397 2019-03-09 00:48:54.129397 \N 0 45 MARTHA SARABIA (667) 321-5289 f 0.00 0 1 2019-03-09 21:26:06.310528 2019-03-09 21:26:06.310528 \N 0 46 GRACIELA ARREDONDO (667) 139-9060 f 0.00 0 1 2019-03-10 17:30:46.713856 2019-03-10 17:30:46.713856 \N 0 47 VICTORIA SANCHEZ (667) 428-7554 f 0.00 0 1 2019-03-13 21:10:29.674484 2019-03-13 21:10:29.674484 \N 0 48 LINDA IBARRA (760) 315-0___ f 0.00 0 1 2019-03-16 00:18:49.289726 2019-03-16 00:18:49.289726 \N 0 49 ILSE SUO (667) 409-3814 t 100000.00 0 1 2019-03-16 01:41:42.723259 2019-03-16 01:41:42.723259 \N 0 50 TERESITA TAPIA (667) 175-4256 f 0.00 0 1 2019-03-16 18:54:30.907267 2019-03-16 18:54:30.907267 \N 0 51 KARLA MERCHAMD (667) 484-0342 t 10000.00 0 1 2019-03-22 19:43:54.744804 2019-03-22 19:43:54.744804 \N 0 52 LULU ORTIZ (667) 305-0564 f 0.00 0 1 2019-03-24 18:54:59.825301 2019-03-24 18:54:59.825301 \N 0 53 LULU ORTIZ (667) 305-0564 f 0.00 0 1 2019-03-24 18:59:22.388417 2019-03-24 18:59:22.388417 \N 0 54 LULU ORTIZ (667) 305-0564 f 0.00 0 1 2019-03-24 19:00:14.569565 2019-03-24 19:00:14.569565 \N 0 55 CARMEN RUELAS (667) 202-2096 t 10000.00 0 1 2019-03-25 18:50:35.320074 2019-03-25 18:50:35.320074 \N 0 56 ABRIL ROMERO (672) 117-5882 f 0.00 0 1 2019-03-25 20:02:34.755259 2019-03-25 20:02:34.755259 \N 0 57 SELENE CAMPOS (667) 451-8871 f 0.00 0 1 2019-03-28 22:29:35.562472 2019-03-28 22:29:35.562472 \N 0 58 SELENE CAMPOS (667) 451-8871 f 0.00 0 1 2019-03-28 22:29:36.835181 2019-03-28 22:29:36.835181 \N 0 59 SELENE CAMPOS (667) 451-8871 f 0.00 0 1 2019-03-28 22:29:36.902071 2019-03-28 22:29:36.902071 \N 0 60 SELENE CAMPOS (667) 451-8871 f 0.00 0 1 2019-03-28 22:29:38.189415 2019-03-28 22:29:38.189415 \N 0 61 SELENE CAMPOS (667) 451-8871 f 0.00 0 1 2019-03-28 22:29:39.373284 2019-03-28 22:29:39.373284 \N 0 62 NEREYDA CAMACHO (667) 152-9707 f 0.00 0 1 2019-03-28 22:53:34.884138 2019-03-28 22:53:34.884138 \N 0 63 ARELY LAIJA (667) 410-0973 f 0.00 0 1 2019-03-29 18:02:08.754535 2019-03-29 18:02:08.754535 \N 0 64 karla pereda (667) 268-6771 f 0.00 0 1 2019-03-29 21:18:14.339044 2019-03-29 21:18:14.339044 \N 0 65 MARIA ELIZA MALACON (667) 791-8400 f 0.00 0 1 2019-03-30 20:53:22.521705 2019-03-30 20:53:22.521705 \N 0 66 RUTH OJEDA (667) 415-4542 f 0.00 0 1 2019-04-02 18:05:07.390749 2019-04-02 18:05:07.390749 \N 0 68 angelica otiz (667) 169-0637 f 0.00 0 1 2019-04-04 17:21:30.035088 2019-04-04 17:21:30.035088 \N 0 70 ALEYDA AMIGA SAM t 5000.00 0 1 2019-04-13 17:19:56.349531 2019-04-13 17:19:56.349531 \N 0 67 PAOLA MARTINEZ f 0.00 0 0 2019-04-02 23:41:45.465109 2019-07-25 17:13:03.742422 \N 0 4 BIANCA VAZQUEZ (667) 182-8864 t 5000.00 0 1 2019-02-05 22:31:34.21048 2020-08-14 22:01:08.744865 \N 0 69 CLAUDIA CASTILLO (667) 140-1816 t 4000.00 0 1 2019-04-12 01:20:23.38675 2019-04-16 23:16:38.132049 \N 0 71 franccisca frias (667) 345-6900 f 0.00 0 1 2019-04-17 19:16:46.413832 2019-04-17 19:16:46.413832 \N 0 74 PAOLA AYON (667) 390-3681 f 0.00 0 1 2019-04-23 21:45:03.588329 2019-04-23 21:45:03.588329 \N 0 76 CAROLINA ELENES (667) 174-0386 f 0.00 0 1 2019-04-27 19:47:57.668477 2019-04-27 19:47:57.668477 \N 0 79 MARCELA URIARTE f 0.00 0 1 2019-04-29 20:21:09.896118 2019-04-29 20:21:09.896118 \N 0 80 lizbeth lizarraga (667) 206-0411 f 0.00 0 1 2019-04-30 20:32:32.559862 2019-04-30 20:32:32.559862 \N 0 81 ROCIO LOPEZ (667) 326-1314 f 0.00 0 1 2019-04-30 23:06:07.622087 2019-04-30 23:06:07.622087 \N 0 82 KELLY OCHOA (667) 409-4281 f 0.00 0 1 2019-05-04 20:54:04.971071 2019-05-04 20:54:04.971071 \N 0 83 SUJEY AGUILAR (667) 797-7166 f 0.00 0 1 2019-05-06 17:23:15.562125 2019-05-06 17:23:15.562125 \N 0 84 SUJEY AGUILAR (667) 797-7166 f 0.00 0 1 2019-05-06 17:23:17.430741 2019-05-06 17:23:17.430741 \N 0 85 ZAIDA MENDOZA (667) 104-7475 f 0.00 0 1 2019-05-07 18:15:23.769398 2019-05-07 18:15:23.769398 \N 0 86 ZAYDA MENDOZA (667) 104-7475 f 0.00 0 1 2019-05-07 18:26:19.676776 2019-05-07 18:26:19.676776 \N 0 87 NALLELY MURILLO (669) 116-2780 f 0.00 0 1 2019-05-08 18:48:26.685161 2019-05-08 18:48:26.685161 \N 0 88 PERLA ZAZUETA (667) 730-7988 f 0.00 0 1 2019-05-08 23:38:26.833781 2019-05-08 23:38:26.833781 \N 0 89 CLARA CRUZ (667) 105-6827 f 0.00 0 1 2019-05-09 17:17:04.64112 2019-05-09 17:17:04.64112 \N 0 90 DANIEL SISTEMA (667) 387-5904 t 3000.00 0 1 2019-05-09 19:44:25.032839 2019-05-09 19:44:25.032839 \N 0 91 SOL GARCIA (672) 718-0499 f 0.00 0 1 2019-05-09 23:27:52.339104 2019-05-09 23:27:52.339104 \N 0 92 JOSEFINA RODRIGUEZ (667) 471-3179 f 0.00 0 1 2019-05-10 00:30:27.836693 2019-05-10 00:30:27.836693 \N 0 93 AURORA PEÑA (667) 317-3557 f 0.00 0 1 2019-05-10 01:44:38.977921 2019-05-10 01:44:38.977921 \N 0 94 ALEJANDRA RAMOS f 0.00 0 1 2019-05-10 19:36:10.730132 2019-05-10 19:36:10.730132 \N 0 95 MARTHA OSUNA (667) 162-657_ f 0.00 0 1 2019-05-11 18:38:40.981556 2019-05-11 18:38:40.981556 \N 0 96 MAYRA BELTRAN (667) 357-5697 f 0.00 0 1 2019-05-12 19:36:58.836085 2019-05-12 19:36:58.836085 \N 0 99 CLAUDIA QUINTERO (667) 334-0940 f 0.00 0 1 2019-05-16 01:28:54.815624 2019-05-16 01:28:54.815624 \N 0 100 MARISELA GANDARILLA (667) 271-1239 f 0.00 0 1 2019-05-18 21:27:02.460283 2019-05-18 21:27:02.460283 \N 0 101 MIRIAM BELTRAN (667) 340-7441 f 0.00 0 1 2019-05-19 19:00:47.412024 2019-05-19 19:00:47.412024 \N 0 102 EDUARDO DOMINGUEZ (667) 106-7705 t 3000.00 0 1 2019-05-20 19:18:39.955069 2019-05-20 19:18:39.955069 \N 0 103 NORA LOPEZ PASQUEL (667) 182-0056 f 0.00 0 1 2019-05-20 23:18:03.732048 2019-05-20 23:18:03.732048 \N 0 104 JENNI RAMOS (667) 451-0150 f 0.00 0 1 2019-05-21 17:18:30.89695 2019-05-21 17:18:30.89695 \N 0 105 MARTHA CASTRO (667) 359-7007 f 0.00 0 1 2019-05-21 21:15:21.668148 2019-05-21 21:15:21.668148 \N 0 106 mariana chavez (667) 118-8473 f 0.00 0 1 2019-05-21 22:45:57.746798 2019-05-21 22:45:57.746798 \N 0 107 IVANIA QUINTERO (667) 778-8326 f 0.00 0 1 2019-05-22 01:38:51.817154 2019-05-22 01:38:51.817154 \N 0 108 CRISTINA RIVERA (667) 481-4055 f 0.00 0 1 2019-05-22 23:18:44.303966 2019-05-22 23:18:44.303966 \N 0 109 MARICRUZ MONTOYA (667) 784-3047 f 0.00 0 1 2019-05-23 00:51:03.459008 2019-05-23 00:51:03.459008 \N 0 110 DANIELA VELARDE (667) 163-5869 f 0.00 0 1 2019-05-24 20:01:43.885491 2019-05-24 20:01:43.885491 \N 0 114 KAREN ARAUJO (667) 201-9784 f 0.00 0 1 2019-05-25 22:37:20.48809 2019-05-25 22:37:20.48809 \N 0 115 YARETZI NAJAR (667) 210-7957 f 0.00 0 1 2019-05-26 00:15:02.720454 2019-05-26 00:15:02.720454 \N 0 116 KENIA H (667) 216-1242 f 0.00 0 1 2019-05-27 17:46:24.217092 2019-05-27 17:46:24.217092 \N 0 117 KIMBERLY BELTRAN (667) 102-2592 f 0.00 0 1 2019-05-27 18:18:03.900662 2019-05-27 18:18:03.900662 \N 0 119 ARACELI DIARTE (667) 175-7207 f 0.00 0 1 2019-05-31 01:25:05.703725 2019-05-31 01:25:05.703725 \N 0 120 SOCORRO VEGA FLORES (667) 431-3005 f 0.00 0 1 2019-05-31 19:02:36.605366 2019-05-31 19:02:36.605366 \N 0 121 ERICA BAEZ (667) 121-2018 f 0.00 0 1 2019-06-01 21:54:33.377495 2019-06-01 21:54:33.377495 \N 0 122 TATIANA AGUAYO t 10000.00 0 1 2019-06-03 21:11:54.188526 2019-06-03 21:11:54.188526 \N 0 123 ISAMAR ARELLANO (667) 176-7271 f 0.00 0 1 2019-06-07 01:13:14.672007 2019-06-07 01:13:14.672007 \N 0 124 YAJAIRA LOPEZ (667) 265-6051 f 0.00 0 1 2019-06-11 00:27:32.192556 2019-06-11 00:27:32.192556 \N 0 125 AZUCENA QUINTERO (667) 214-8714 f 0.00 0 1 2019-06-12 22:26:39.807598 2019-06-12 22:26:39.807598 \N 0 97 INDELIZA VILLEGAS (667) 467-2180 f 0.00 0 1 2019-05-14 19:56:26.023998 2019-06-13 16:14:49.297382 \N 0 126 nayelli moreno (667) 306-7523 f 0.00 0 1 2019-06-15 20:24:41.345598 2019-06-15 20:24:41.345598 \N 0 127 nayelli moreno (667) 306-7523 f 0.00 0 1 2019-06-15 20:28:18.326681 2019-06-15 20:28:18.326681 \N 0 128 NAYELLI MORENO (667) 306-7523 f 0.00 0 1 2019-06-15 20:34:00.939281 2019-06-15 20:34:00.939281 \N 0 129 PAOLA SALCIDO (667) 268-2867 f 0.00 0 1 2019-06-15 21:12:48.566792 2019-06-15 21:12:48.566792 \N 0 130 LIZETH FELIX (667) 251-3457 f 0.00 0 1 2019-06-18 22:39:42.897052 2019-06-18 22:39:42.897052 \N 0 131 EVA ARAMBURO (667) 316-0069 f 0.00 0 1 2019-06-21 00:10:21.386712 2019-06-21 00:10:21.386712 \N 0 132 MAMA ROCIO t 2000.00 0 1 2019-06-21 01:28:31.934658 2019-06-21 01:28:31.934658 \N 0 133 JANETH ZAMORA (667) 341-3042 f 0.00 0 1 2019-06-22 20:11:14.546124 2019-06-22 20:11:14.546124 \N 0 134 ANA MARIA RODRIGUEZ (667) 120-2806 f 0.00 0 1 2019-06-25 18:50:19.814126 2019-06-25 18:50:19.814126 \N 0 135 GRACIELA VAZQUEZ (667) 350-7790 f 0.00 0 1 2019-06-27 16:35:09.920226 2019-06-27 17:09:42.39882 \N 0 136 ANGELITA OLIVAS (667) 143-3666 f 0.00 0 1 2019-06-29 22:42:24.000286 2019-06-29 22:42:24.000286 \N 0 137 MARIA LUISA CAMPOS (667) 223-1434 f 0.00 0 1 2019-06-30 18:40:16.276877 2019-06-30 18:40:16.276877 \N 0 138 ROCIO RUEDA BANORTE t 5000.00 0 1 2019-07-02 22:34:17.110356 2019-07-02 22:34:17.110356 \N 0 139 ROCIO GROSSO (667) 324-2449 f 0.00 0 1 2019-07-04 17:40:51.246977 2019-07-04 17:40:51.246977 \N 0 140 MONICA ANGULO (667) 247-1822 f 0.00 0 1 2019-07-08 20:12:08.286959 2019-07-08 20:12:08.286959 \N 0 141 KARLA BENITEZ ALVAREZ (672) 723-2362 f 0.00 0 1 2019-07-12 18:01:14.454065 2019-07-12 18:01:14.454065 \N 0 118 Aurrora Peña (667) 317-357_ f 0.00 0 0 2019-05-31 00:46:20.453863 2019-07-17 16:28:42.003514 \N 0 78 CARMEN RUELAS f 0.00 0 0 2019-04-28 00:28:38.366401 2019-07-17 16:28:55.447883 \N 0 75 CARMEN RUELAS f 0.00 0 0 2019-04-26 17:48:53.022799 2019-07-17 16:29:08.555905 \N 0 73 franccisca frias (667) 345-6900 f 0.00 0 0 2019-04-17 19:19:48.609596 2019-07-17 16:29:24.093078 \N 0 98 CLAUDIA QUINTERO (667) 334-0940 f 0.00 0 0 2019-05-16 01:25:51.264556 2019-07-17 16:30:09.470111 \N 0 113 KAREN ARAUJO (667) 200-9784 f 0.00 0 0 2019-05-25 22:36:44.138857 2019-08-29 17:31:28.487981 \N 0 112 KAR A f 0.00 0 0 2019-05-25 22:36:24.646054 2019-08-29 17:34:06.357326 \N 0 111 KAR A f 0.00 0 0 2019-05-25 22:36:24.407842 2019-08-29 17:34:20.889209 \N 0 142 MARIA ANTONIETA VATIZ VALDEZ (667) 424-2176 f 0.00 0 1 2019-07-12 22:20:43.328701 2019-07-12 22:20:43.328701 \N 0 77 CARMEN RUELAS f 0.00 0 0 2019-04-28 00:27:57.125188 2019-07-17 16:28:15.103794 \N 0 72 franccisca frias (667) 345-00__ f 0.00 0 0 2019-04-17 19:18:29.4602 2019-07-17 16:29:52.792858 \N 0 143 ROCIO RODRIGUEZ (667) 190-8221 f 0.00 0 1 2019-07-20 17:46:05.101833 2019-07-20 18:32:39.681905 \N 0 144 SOCORRO PEREZ CAMACHO (762) 367-1___ f 0.00 0 1 2019-07-21 20:07:19.265945 2019-07-21 20:07:19.265945 \N 0 146 NORMA ALEJANDRA RODRIGUEZ f 0.00 0 1 2019-07-23 20:49:33.135167 2019-07-23 20:49:33.135167 \N 0 147 ROSALINDA FLORES (667) 467-3348 f 0.00 0 1 2019-07-25 00:30:32.180735 2019-07-25 00:30:32.180735 \N 0 148 VERONICA VALLE (667) 303-1324 f 0.00 0 1 2019-07-25 00:42:37.282882 2019-07-25 00:42:37.282882 \N 0 149 YESENIA BOGARIN (667) 387-6351 f 0.00 0 1 2019-07-26 22:53:40.762915 2019-07-26 22:53:40.762915 \N 0 150 GUADALUPE RAMIREZ (667) 419-1352 f 0.00 0 1 2019-07-27 19:46:48.421049 2019-07-27 19:46:48.421049 \N 0 151 CITLALY VALLE (667) 190-1308 f 0.00 0 1 2019-08-01 23:52:21.664011 2019-08-01 23:52:21.664011 \N 0 152 RUBI LARA (667) 419-1750 f 0.00 0 1 2019-08-07 23:56:39.266782 2019-08-07 23:56:39.266782 \N 0 153 RUBI (667) 419-1750 f 0.00 0 1 2019-08-08 00:11:37.49257 2019-08-08 00:11:37.49257 \N 0 155 ABIGAIL TERRAZAS (667) 452-0902 f 0.00 0 1 2019-08-11 01:02:29.860692 2019-08-11 01:02:29.860692 \N 0 156 BLANCA BODYS f 0.00 0 1 2019-08-19 18:03:20.871442 2019-08-19 18:03:20.871442 \N 0 157 CINTHIA LIZBETH SALAZAR URIARTE (669) 772-9438 f 0.00 0 1 2019-08-23 18:35:14.144416 2019-08-23 18:35:14.144416 \N 0 158 BRENDA (667) 427-7570 f 0.00 0 1 2019-08-31 03:44:12.683942 2019-08-31 03:44:12.683942 \N 0 159 JAZMIN CEBREROS (667) 189-9615 f 0.00 0 1 2019-08-31 03:46:21.785626 2019-08-31 03:46:21.785626 \N 0 160 MARIA ISABEL VARGAS (667) 165-9253 f 0.00 0 1 2019-08-31 21:56:36.702994 2019-08-31 21:56:36.702994 \N 0 201 ESMERALDA ESTRADA (667) 463-4247 f 0.00 0 1 2019-10-16 19:42:54.834459 2019-10-16 19:42:54.834459 \N 0 161 MAMA DE PAOLA t 5000.00 0 1 2019-09-01 03:11:48.469525 2019-09-01 03:15:00.806483 \N 0 162 TANIA VILLA (671) 980-756_ f 0.00 0 1 2019-09-01 19:47:06.862006 2019-09-01 19:47:06.862006 \N 0 163 CARLOTA REYES (667) 484-8074 f 0.00 0 1 2019-09-02 17:38:58.575244 2019-09-02 17:38:58.575244 \N 0 164 ANGELICA GUERRERO (667) 223-3719 t 4000.00 0 1 2019-09-04 00:06:52.853048 2019-09-04 00:06:52.853048 \N 0 165 LUCERO AGUILAR (667) 995-0863 f 0.00 0 1 2019-09-04 20:57:59.822876 2019-09-04 20:57:59.822876 \N 0 166 BRENDA ALICIA (667) 143-3981 f 0.00 0 1 2019-09-05 18:03:33.292942 2019-09-05 18:03:33.292942 \N 0 167 LETICIA ZAZUETA (667) 583-1424 t 4000.00 0 1 2019-09-07 16:14:24.223528 2019-09-07 16:14:24.223528 \N 0 168 MARITZA LOPEZ (667) 581-3266 f 0.00 0 1 2019-09-09 20:46:17.712568 2019-09-09 20:46:17.712568 \N 0 169 NORMA DE OSUNA (667) 230-0648 f 0.00 0 1 2019-09-10 01:29:41.639468 2019-09-10 01:29:41.639468 \N 0 170 VERONICA GARCIA (667) 244-4452 f 0.00 0 1 2019-09-10 02:27:38.631989 2019-09-10 02:27:38.631989 \N 0 171 JOQZD ACAPULCO (667) 771-0101 f 0.00 0 1 2019-09-12 00:31:36.836131 2019-09-12 00:31:36.836131 \N 0 172 JOQZD ACAPULCO (667) 771-0101 f 0.00 0 1 2019-09-12 00:31:53.472528 2019-09-12 00:31:53.472528 \N 0 173 JOQZD ACAPULCO (667) 771-0101 f 0.00 0 1 2019-09-12 00:32:15.647358 2019-09-12 00:32:15.647358 \N 0 175 LOURDES AISPURO (667) 413-5666 f 0.00 0 1 2019-09-14 17:39:40.127947 2019-09-14 17:39:40.127947 \N 0 176 CITLALI ROJAS (669) 286-0633 f 0.00 0 1 2019-09-19 16:24:50.970736 2019-09-19 16:24:50.970736 \N 0 177 OLGA GARCIA (667) 747-3553 f 0.00 0 1 2019-09-19 23:01:28.379767 2019-09-19 23:01:28.379767 \N 0 178 CINDY OVALLES (667) 726-6182 f 0.00 0 1 2019-09-21 22:38:37.376265 2019-09-21 22:38:37.376265 \N 0 179 JULISSA MARQUEZ (667) 143-4380 f 0.00 0 1 2019-09-24 01:06:20.056033 2019-09-24 01:06:20.056033 \N 0 180 ANA LUISA CORONEL (667) 162-9300 f 0.00 0 1 2019-09-24 19:03:26.767983 2019-09-24 19:03:26.767983 \N 0 181 ANGELICA HERNANDEZ (667) 477-4303 f 0.00 0 1 2019-09-27 19:58:03.989894 2019-09-27 19:58:03.989894 \N 0 182 ANAHI MORENO (667) 185-6765 f 0.00 0 1 2019-09-27 20:55:32.383925 2019-09-27 20:55:32.383925 \N 0 183 ANA AISPURO (667) 582-6173 f 0.00 0 1 2019-09-28 00:14:54.537127 2019-09-28 00:14:54.537127 \N 0 184 AMAIRANI CORRALES (667) 355-3824 f 0.00 0 1 2019-10-02 01:25:08.521286 2019-10-02 01:25:08.521286 \N 0 185 AMAIRANI CORRALES (667) 151-6744 f 0.00 0 1 2019-10-02 01:28:01.819969 2019-10-02 01:28:01.819969 \N 0 186 ALICIA ZEPEDA (667) 131-3179 f 0.00 0 1 2019-10-02 18:42:04.092059 2019-10-02 18:42:04.092059 \N 0 187 GRACIELA VALDEZ (667) 477-0253 f 0.00 0 1 2019-10-02 20:08:29.970894 2019-10-02 20:08:29.970894 \N 0 188 CLAUDIA PATRICIA CORTEZ (667) 748-6345 f 0.00 0 1 2019-10-02 21:43:35.478536 2019-10-02 21:43:35.478536 \N 0 189 FLOR AGUIRRE (667) 227-5853 t 7000.00 0 1 2019-10-02 23:39:44.81185 2019-10-02 23:39:44.81185 \N 0 190 carmen daniela osuna landeros (667) 294-2133 f 0.00 0 1 2019-10-03 22:59:33.767188 2019-10-03 23:53:10.044274 \N 0 191 MARCELA NUÑEZ (667) 451-8176 f 0.00 0 1 2019-10-05 23:17:56.805368 2019-10-05 23:17:56.805368 \N 0 192 LUPITA MARTINEZ (667) 308-1810 f 0.00 0 1 2019-10-05 23:52:47.805124 2019-10-05 23:52:47.805124 \N 0 193 MARIA MARTINEZ (667) 254-0381 f 0.00 0 1 2019-10-07 16:13:09.517884 2019-10-07 16:13:09.517884 \N 0 194 GLADIS URIAS (667) 145-4548 f 0.00 0 1 2019-10-07 22:23:03.426456 2019-10-07 22:23:03.426456 \N 0 195 DULCE ALVARADO (667) 410-2970 f 0.00 0 1 2019-10-08 23:16:00.362649 2019-10-08 23:16:00.362649 \N 0 196 DANIELA CASTRO (667) 755-4198 f 0.00 0 1 2019-10-10 16:36:19.401618 2019-10-10 16:36:19.401618 \N 0 197 ALMA ROSA RUIZ (667) 712-6338 f 0.00 0 1 2019-10-12 00:12:34.386979 2019-10-12 00:12:34.386979 \N 0 198 ANTONIA QUINTERO (667) 349-3494 f 0.00 0 1 2019-10-14 18:31:26.390399 2019-10-14 18:31:26.390399 \N 0 199 ELIZABET NUÑEZ (667) 253-8816 f 0.00 0 1 2019-10-14 20:46:07.463552 2019-10-14 20:46:07.463552 \N 0 200 DIANA ISABEL FLORES (667) 581-7063 f 0.00 0 1 2019-10-16 18:49:45.174569 2019-10-16 18:49:45.174569 \N 0 202 ORIANDI ZAZUETA (667) 322-0013 f 0.00 0 1 2019-10-19 23:15:50.11644 2019-10-19 23:15:50.11644 \N 0 203 ISABEL ABITIA f 0.00 0 1 2019-10-19 23:44:44.938776 2019-10-19 23:44:44.938776 \N 0 204 LOURDES DUARTE (667) 404-5869 f 0.00 0 1 2019-10-20 00:53:27.437783 2019-10-20 00:53:27.437783 \N 0 205 SORAYA (667) 424-2480 f 0.00 0 1 2019-10-20 00:58:06.753325 2019-10-20 00:58:06.753325 \N 0 206 MARIBEL CARRANZA (667) 424-2037 f 0.00 0 1 2019-10-21 16:11:20.659758 2019-10-21 16:11:20.659758 \N 0 207 ANGELICA PEREZ (647) 124-6607 f 0.00 0 1 2019-10-21 20:20:27.748631 2019-10-21 20:20:27.748631 \N 0 208 OLIVIA MARGARITA ALVAREZ (667) 756-6418 f 0.00 0 1 2019-10-21 23:56:02.850628 2019-10-21 23:56:02.850628 \N 0 209 KITZYA PEIRO SAINZ (667) 331-8251 f 0.00 0 1 2019-10-22 23:40:45.68322 2019-10-22 23:40:45.68322 \N 0 210 DLADIS LEON (667) 311-8389 f 0.00 0 1 2019-10-23 23:15:18.220753 2019-10-23 23:15:18.220753 \N 0 145 MARA CHIQUETE t 3000.00 0 1 2019-07-22 18:02:11.32381 2019-12-31 19:57:57.898648 \N 0 211 ROCIO GONZALEZ (667) 798-8503 f 0.00 0 1 2019-10-23 23:32:47.276339 2019-10-23 23:32:47.276339 \N 0 212 PAULINA ARAIZA (667) 428-3040 f 0.00 0 1 2019-10-24 18:16:42.84631 2019-10-24 18:16:42.84631 \N 0 213 BEATRIZ ROCHA (667) 191-0696 f 0.00 0 1 2019-10-24 20:29:03.979783 2019-10-24 20:29:03.979783 \N 0 214 ESTEPHANIA FIGUEROA (668) 822-2266 f 0.00 0 1 2019-10-25 21:50:15.234153 2019-10-25 21:50:15.234153 \N 0 215 ROCIO VALLES (667) 209-7494 f 0.00 0 1 2019-10-26 00:28:07.504436 2019-10-26 00:28:07.504436 \N 0 216 carmen rojo (667) 208-8520 f 0.00 0 1 2019-10-27 00:29:46.631048 2019-10-27 00:29:46.631048 \N 0 217 ARACELI VALDEZ (667) 215-7254 f 0.00 0 1 2019-10-29 01:23:59.261293 2019-10-29 01:23:59.261293 \N 0 218 FLOR ARAGON (667) 221-2372 f 0.00 0 1 2019-10-29 18:36:17.425559 2019-10-29 18:36:17.425559 \N 0 219 MARIA DELFINA MOLINA (667) 334-3645 f 0.00 0 1 2019-10-29 20:57:19.886807 2019-10-29 20:57:19.886807 \N 0 220 MARVILLA ARELLANO CANISALES (667) 293-8690 f 0.00 0 1 2019-10-30 18:30:57.572703 2019-10-30 18:30:57.572703 \N 0 221 RITA NUÑEZ (667) 191-7801 f 0.00 0 1 2019-10-31 20:06:50.502998 2019-10-31 20:06:50.502998 \N 0 223 LETICIA EREDIA (667) 224-8008 f 0.00 0 1 2019-11-02 02:02:20.582876 2019-11-02 02:02:20.582876 \N 0 224 ANGELICA f 0.00 0 1 2019-11-03 17:40:13.350006 2019-11-03 17:40:13.350006 \N 0 225 ANGELICA f 0.00 0 1 2019-11-03 17:40:17.258201 2019-11-03 17:40:17.258201 \N 0 226 LOLIS QUIROZ (667) 154-4305 f 0.00 0 1 2019-11-03 18:26:08.297279 2019-11-03 18:26:08.297279 \N 0 227 BRENDA JAZMINA CABANILLAS (667) 100-8158 f 0.00 0 1 2019-11-04 21:40:08.870485 2019-11-04 21:40:08.870485 \N 0 228 ARMIDA MEDINA (667) 419-7728 f 0.00 0 1 2019-11-05 01:41:25.563564 2019-11-05 01:41:25.563564 \N 0 229 VANIA VALENZUELA (667) 409-3914 f 0.00 0 1 2019-11-06 01:20:31.456084 2019-11-06 01:20:31.456084 \N 0 230 MERCEDES JIMENEZ (667) 230-6600 f 0.00 0 1 2019-11-06 17:45:01.836965 2019-11-06 17:45:01.836965 \N 0 231 ERIKA GOMEZ CAMACHO (667) 711-7635 f 0.00 0 1 2019-11-06 21:59:24.983811 2019-11-06 21:59:24.983811 \N 0 232 ELIZABET ALVAREZ (667) 195-1310 f 0.00 0 1 2019-11-08 19:34:43.838989 2019-11-08 19:34:43.838989 \N 0 233 LUCERO MEDINA (667) 470-5667 f 0.00 0 1 2019-11-10 01:59:28.42574 2019-11-10 01:59:28.42574 \N 0 234 DIANA MEDINA (667) 359-6954 f 0.00 0 1 2019-11-11 18:16:55.758596 2019-11-11 18:16:55.758596 \N 0 235 GRIEGA BELTRAN (667) 210-5884 f 0.00 0 1 2019-11-11 21:43:44.62593 2019-11-11 21:43:44.62593 \N 0 236 MARTHA HIGUERA (667) 547-9961 f 0.00 0 1 2019-11-11 22:46:18.06326 2019-11-11 22:46:18.06326 \N 0 237 FABIOLA LANDAVERDE (667) 431-4476 f 0.00 0 1 2019-11-13 22:30:19.691437 2019-11-13 22:30:19.691437 \N 0 238 CARMEN AISPURO (667) 349-4125 f 0.00 0 1 2019-11-14 03:01:48.619214 2019-11-14 03:01:48.619214 \N 0 239 BLANCA FLOR GONZALEZ (667) 417-0491 f 0.00 0 1 2019-11-15 20:33:26.966353 2019-11-15 20:37:27.604487 \N 0 240 JOHENDRI RAMIREZ (667) 182-4457 f 0.00 0 1 2019-11-16 22:58:40.914404 2019-11-16 22:58:40.914404 \N 0 241 JUANITA CEBALLOS (667) 726-9030 f 0.00 0 1 2019-11-17 22:16:51.173673 2019-11-17 22:16:51.173673 \N 0 242 GLADYS URIAS (667) 145-4548 f 0.00 0 1 2019-11-18 18:31:16.642236 2019-11-18 18:31:16.642236 \N 0 243 ESMERALDA URIARTE (667) 199-4096 f 0.00 0 1 2019-11-20 20:44:30.456032 2019-11-20 20:44:30.456032 \N 0 244 CAROLINA DIAZ (627) 144-3160 f 0.00 0 1 2019-11-21 19:50:34.218093 2019-11-21 19:50:34.218093 \N 0 245 ALMA LETICIA CARDENAS VALDEZ (667) 473-1992 f 0.00 0 1 2019-11-23 01:00:34.433279 2019-11-23 01:00:34.433279 \N 0 246 FERNANDA CORRALES (667) 151-6744 f 0.00 0 1 2019-11-26 18:45:49.31811 2019-11-26 18:45:49.31811 \N 0 247 VIANEY (667) 790-7326 f 0.00 0 1 2019-11-26 23:37:21.314552 2019-11-26 23:37:21.314552 \N 0 248 yamileth sanches (667) 227-9006 f 0.00 0 1 2019-11-28 20:51:39.459435 2019-11-28 20:51:39.459435 \N 0 249 LUPITA VAZQUEZ (667) 100-7259 f 0.00 0 1 2019-11-29 22:09:18.405451 2019-11-29 22:09:18.405451 \N 0 250 ERIKA PEREZ AGUILAR (667) 780-5473 f 0.00 0 1 2019-11-29 23:29:18.943081 2019-11-29 23:29:18.943081 \N 0 251 JOSEFINA PARTIDA (667) 202-7069 f 0.00 0 1 2019-12-01 21:00:14.508146 2019-12-01 21:00:14.508146 \N 0 252 KARLA CASILLA (667) 253-1340 f 0.00 0 1 2019-12-03 17:58:47.799865 2019-12-03 17:58:47.799865 \N 0 222 MARIA DEL ROSARIO RODRIGUEZ (667) 268-5599 t 2500.00 20 1 2019-11-01 19:00:15.341895 2019-12-03 20:11:37.752026 \N 0 253 IRMA GARZON (667) 751-3169 f 0.00 0 1 2019-12-04 20:06:50.005555 2019-12-04 20:06:50.005555 \N 0 254 BRENDA MARTINEZ ROJO (667) 471-3959 f 0.00 0 1 2019-12-06 19:46:14.65054 2019-12-06 19:46:14.65054 \N 0 256 NUBIA COLLANTES (667) 344-4085 f 0.00 0 1 2019-12-07 22:07:41.344671 2019-12-07 22:07:41.344671 \N 0 255 DIANA NIEBLA KINDER (667) 130-5131 t 5000.00 0 1 2019-12-07 22:07:11.455749 2019-12-07 22:07:58.791107 \N 0 257 SILVIA KARELY RUIZ (667) 501-9104 f 0.00 0 1 2019-12-09 23:14:51.937503 2019-12-09 23:14:51.937503 \N 0 258 MARICRUZ FONSECA GARCIA (667) 152-4868 f 0.00 0 1 2019-12-10 20:42:41.520868 2019-12-10 20:42:41.520868 \N 0 259 MARICRUZ FONSECA GARCIA1 (667) 152-4868 t 3000.00 0 1 2019-12-10 20:48:17.834604 2019-12-10 20:48:17.834604 \N 0 260 ERIKA MONARREZ GARCIA (667) 154-0987 f 0.00 0 1 2019-12-12 21:52:14.127731 2019-12-12 21:52:14.127731 \N 0 261 MARBELLA PONCE (667) 414-0287 f 0.00 0 1 2019-12-12 23:47:46.68211 2019-12-12 23:47:46.68211 \N 0 262 JOSE MIGUEL PAEZ (667) 188-8204 t 5000.00 0 1 2019-12-13 02:56:38.295099 2019-12-13 02:56:38.295099 \N 0 263 FABIOLA VALENZUELA ZAVALA (667) 182-4944 f 0.00 0 1 2019-12-14 02:10:47.623934 2019-12-14 02:10:47.623934 \N 0 264 FABIOLA RIVAS t 2000.00 0 1 2019-12-15 19:44:26.143977 2019-12-15 19:44:26.143977 \N 0 265 SANDRA KARELI FRANCO (667) 106-5114 f 0.00 0 1 2019-12-17 02:23:58.416281 2019-12-17 02:23:58.416281 \N 0 266 WENDY MAYTE GONZALES (667) 453-2125 f 0.00 0 1 2019-12-17 17:31:21.144499 2019-12-17 17:31:21.144499 \N 0 267 NANCY (667) 461-0978 f 0.00 0 1 2019-12-17 20:08:22.753017 2019-12-17 20:08:22.753017 \N 0 268 NATHALIA ZAZUETA (667) 407-1015 f 0.00 0 1 2019-12-19 17:33:51.822068 2019-12-19 17:33:51.822068 \N 0 269 SILVIA VALENZUELA QUINTERO (667) 294-8772 f 0.00 0 1 2019-12-20 22:00:44.614346 2019-12-20 22:00:44.614346 \N 0 270 EDUVINA ANGULO (667) 492-6931 f 0.00 0 1 2019-12-21 20:11:28.439314 2019-12-21 20:11:28.439314 \N 0 174 MARICELA BANORTE t 5000.00 0 0 2019-09-13 01:09:59.939854 2019-12-23 20:55:58.211786 \N 0 271 ISELA SALMORAN (667) 757-1348 f 0.00 0 1 2019-12-24 02:18:16.737975 2019-12-24 02:18:16.737975 \N 0 272 ARACELI MERCADO (667) 320-0383 f 0.00 0 1 2019-12-26 19:02:54.089459 2019-12-26 19:02:54.089459 \N 0 273 mayra leal (667) 165-3080 t 0.00 0 1 2019-12-28 00:12:10.115782 2019-12-28 00:12:10.115782 \N 0 274 ABIGAIL NUÑEZ (667) 101-9609 f 0.00 0 1 2019-12-31 01:11:37.307235 2019-12-31 01:11:37.307235 \N 0 275 DANIELA URCISICHI (667) 167-2534 t 5000.00 0 1 2020-01-03 19:36:39.535046 2020-01-03 19:36:39.535046 \N 0 276 ROSA BELEN RODRIGUEZ (667) 221-9105 f 0.00 0 1 2020-01-08 19:16:09.163477 2020-01-08 19:16:09.163477 \N 0 277 AYLEEN (667) 730-9822 f 0.00 0 1 2020-01-17 20:03:19.674929 2020-01-17 20:03:19.674929 \N 0 278 CARLOS MONTOYA (667) 223-2379 f 0.00 0 1 2020-01-21 02:49:43.916061 2020-01-21 02:49:43.916061 \N 0 279 NELLY KINDER t 2000.00 0 1 2020-01-23 20:24:09.638972 2020-01-23 20:24:09.638972 \N 0 280 CHARITO (667) 342-0991 f 0.00 0 1 2020-01-28 02:35:14.99444 2020-01-28 02:35:14.99444 \N 0 281 LIZETH LIZARRAGA (667) 206-0410 f 0.00 0 1 2020-01-29 17:12:46.543757 2020-01-29 17:12:46.543757 \N 0 282 KATY (667) 468-2247 f 0.00 0 1 2020-01-30 21:46:27.176478 2020-01-30 21:46:27.176478 \N 0 283 FERNANDA ROSAS (667) 777-7777 t 10000.00 0 1 2020-01-30 22:06:46.997352 2020-01-30 22:06:46.997352 \N 0 284 LAURA RUIZ (667) 223-2379 f 0.00 0 1 2020-02-04 23:24:26.595707 2020-02-04 23:24:26.595707 \N 0 285 JANETH (667) 174-6248 f 0.00 0 1 2020-02-05 22:01:03.042694 2020-02-05 22:01:03.042694 \N 0 286 MARIA ENGRACIA GANDARILLA (667) 716-3327 f 0.00 0 1 2020-02-08 20:52:24.863233 2020-02-08 20:52:24.863233 \N 0 287 ROXANA ORDUNO f 0.00 0 1 2020-02-12 21:31:13.417494 2020-02-12 21:31:13.417494 \N 0 288 YUNIDIA MEZA (667) 183-4861 f 0.00 0 1 2020-02-13 20:47:15.270713 2020-02-13 20:47:15.270713 \N 0 289 Marisol MORENO (667) 581-7672 f 0.00 0 1 2020-02-23 03:08:39.494221 2020-02-23 03:08:39.494221 \N 0 290 YULIANA MEZA (667) 775-0146 f 0.00 0 1 2020-02-25 17:33:09.498172 2020-02-25 17:33:09.498172 \N 0 291 BRENDA LIZETH GASPAR (667) 581-5302 f 0.00 0 1 2020-02-25 19:14:20.128865 2020-02-25 19:14:20.128865 \N 0 292 ALMA KARINA ZAZUETA (712) 663-8___ f 0.00 0 1 2020-02-29 02:19:00.189772 2020-02-29 02:19:00.189772 \N 0 293 CLARISSA CAMACHO (667) 197-6894 f 0.00 0 1 2020-02-29 23:23:04.411404 2020-02-29 23:23:04.411404 \N 0 294 CRISTINA ESEBERRE (667) 461-8228 f 0.00 0 1 2020-03-03 19:52:17.085883 2020-03-03 19:52:17.085883 \N 0 295 ESTHER TIRADO (667) 340-5311 f 0.00 0 1 2020-03-05 19:32:12.506603 2020-03-05 19:32:12.506603 \N 0 296 KELLY OCHOA (667) 409-4281 f 0.00 0 1 2020-03-06 20:13:04.998728 2020-03-06 20:13:04.998728 \N 0 297 ALZY PEREZ (667) 223-9217 f 0.00 0 1 2020-03-07 21:08:42.499991 2020-03-07 21:08:42.499991 \N 0 298 LIZ CHAIDEZ (667) 233-4967 t 10000.00 0 1 2020-03-10 02:48:05.51781 2020-03-10 02:48:05.51781 \N 0 299 KATSIA QUIÑONEZ (667) 453-2595 f 0.00 0 1 2020-03-10 20:10:11.68157 2020-03-10 20:10:11.68157 \N 0 300 ELSA GONZALEZ (667) 333-4813 f 0.00 0 1 2020-03-14 17:53:30.847439 2020-03-14 17:53:30.847439 \N 0 301 DAYANA CAZARES (664) 730-4567 f 0.00 0 1 2020-03-14 22:43:36.285172 2020-03-14 22:43:36.285172 \N 0 302 CARMEN ARACELI (667) 293-7841 f 0.00 0 1 2020-03-14 23:38:32.909339 2020-03-14 23:38:32.909339 \N 0 303 MARCELINA QUIÑONEZ (667) 301-1475 f 0.00 0 1 2020-03-15 00:21:29.140439 2020-03-15 00:21:29.140439 \N 0 304 BRENDA DIARTE (667) 427-7570 f 0.00 0 1 2020-03-17 20:07:04.438019 2020-03-17 20:07:04.438019 \N 0 305 FABIOLA ELIZABETH GARCIA (667) 315-4425 f 0.00 0 1 2020-03-17 23:12:56.797471 2020-03-17 23:12:56.797471 \N 0 306 ALICIA FELIX (667) 197-2275 f 0.00 0 1 2020-03-18 00:55:44.621453 2020-03-18 00:55:44.621453 \N 0 307 BEATRIZ RESPARDO (667) 191-3424 f 0.00 0 1 2020-03-19 00:29:13.896077 2020-03-19 00:29:13.896077 \N 0 308 KELLY OCHOA (667) 409-4281 f 0.00 0 1 2020-03-21 21:24:09.405373 2020-03-21 21:24:09.405373 \N 0 309 JENNIFER ANGULO (667) 235-1609 f 0.00 0 1 2020-03-24 01:38:29.991917 2020-03-24 01:38:29.991917 \N 0 310 JENNIFER ANGULO (667) 235-1609 f 0.00 0 1 2020-03-24 01:38:30.085936 2020-03-24 01:38:30.085936 \N 0 311 JENNIFER ANGULO (667) 235-1609 f 0.00 0 1 2020-03-24 01:38:36.76095 2020-03-24 01:38:36.76095 \N 0 312 Cristel (667) 258-2561 f 0.00 0 1 2020-04-05 02:58:20.182654 2020-04-05 02:58:20.182654 \N 0 314 ANDREA LOPEZ ACOSTA 1 (667) 246-974_ t 10000.00 0 1 2020-04-30 23:10:59.955682 2020-04-30 23:10:59.955682 \N 0 313 ANDREA ACOSTA (667) 246-9974 f 0.00 0 0 2020-04-30 23:09:43.567013 2020-04-30 23:11:40.212954 \N 0 315 XOCHILT LEY (667) 162-3129 t 4000.00 0 1 2020-05-03 23:36:51.793026 2020-05-03 23:36:51.793026 \N 0 316 BERENICE CLIENTE INSTAGRAM (667) 132-6148 f 0.00 0 1 2020-05-04 00:35:19.718778 2020-05-04 00:35:19.718778 \N 0 317 JANETH BELTRAN (667) 710-1010 f 0.00 0 1 2020-05-04 00:46:41.497073 2020-05-04 00:46:41.497073 \N 0 318 VERONICA (667) 162-7714 f 0.00 0 1 2020-05-04 00:51:10.194504 2020-05-04 00:51:10.194504 \N 0 319 CECILIA ACERO (667) 504-4214 f 0.00 0 1 2020-05-04 05:32:40.410102 2020-05-04 05:32:40.410102 \N 0 320 DENNIS (667) 184-0579 f 0.00 0 1 2020-05-14 20:44:55.4749 2020-05-14 20:44:55.4749 \N 0 321 BRISCEIDA FELIZ (667) 239-9026 f 0.00 0 1 2020-06-24 00:11:37.892845 2020-06-24 00:11:37.892845 \N 0 322 MARITE AMIGA MARCO (667) 777-7777 t 4000.00 0 1 2020-06-26 18:54:25.632166 2020-06-26 18:54:25.632166 \N 0 323 MARTHA OSUNA (667) 745-5885 t 30000.00 0 1 2020-06-26 18:55:46.544315 2020-06-26 18:55:46.544315 \N 0 324 kitzya gutierrez (667) 139-9789 f 0.00 0 1 2020-07-02 21:44:34.754115 2020-07-02 21:44:34.754115 \N 0 325 ISA JAUREGUI (667) 206-7220 f 0.00 0 1 2020-07-06 01:39:02.96469 2020-07-06 01:39:02.96469 \N 0 326 adilene gonzalez (667) 251-9457 f 0.00 0 1 2020-07-06 20:33:35.864742 2020-07-06 20:33:35.864742 \N 0 327 PERLA ROCIO GASTELUM (667) 253-4318 f 0.00 0 1 2020-07-07 00:08:41.807228 2020-07-07 00:08:41.807228 \N 0 328 KAREN RODRIGUEZ (667) 451-5480 f 0.00 0 1 2020-07-07 23:32:31.078814 2020-07-07 23:32:31.078814 \N 0 329 KAREN RODRIGUEZ (667) 451-5480 f 0.00 0 1 2020-07-07 23:50:30.549758 2020-07-07 23:50:30.549758 \N 0 330 ANABEL VALENZUELA TORRES (667) 388-5147 f 0.00 0 1 2020-07-08 19:36:58.311891 2020-07-08 19:36:58.311891 \N 0 331 CLAUDIA SARABIA (667) 200-3500 f 0.00 0 1 2020-07-08 20:22:47.665201 2020-07-08 20:22:47.665201 \N 0 332 JOCELYN INSTAGRAM (669) 149-6090 f 0.00 0 1 2020-07-08 23:12:43.465814 2020-07-08 23:12:43.465814 \N 0 333 ingrid paola instagram (668) 184-8945 f 0.00 0 1 2020-07-09 20:12:54.669735 2020-07-09 20:12:54.669735 \N 0 334 ciury lopez (667) 150-0133 f 0.00 0 1 2020-07-09 23:52:47.885698 2020-07-09 23:52:47.885698 \N 0 335 YAMI AMARILLAS (667) 222-1996 f 0.00 0 1 2020-07-10 20:02:04.282835 2020-07-10 20:02:04.282835 \N 0 336 DANIELA CASTRO JUAREZ (667) 401-9054 f 0.00 0 1 2020-07-13 19:49:29.475023 2020-07-13 19:49:29.475023 \N 0 337 MARITZA MEDINA BELTRAN (667) 344-9928 f 0.00 0 1 2020-07-13 22:08:49.578777 2020-07-13 22:08:49.578777 \N 0 338 ANA SARABIA (667) 131-8513 f 0.00 0 1 2020-07-14 00:12:52.339812 2020-07-14 00:12:52.339812 \N 0 339 BRENDA BELTRAN (667) 327-5553 f 0.00 0 1 2020-07-14 19:42:53.010603 2020-07-14 19:42:53.010603 \N 0 340 KATY LOPEZ f 0.00 0 1 2020-07-17 21:30:59.186921 2020-07-17 21:30:59.186921 \N 0 341 CLAUDIA SOTO (667) 216-1416 f 0.00 0 1 2020-07-17 22:29:51.409314 2020-07-17 22:29:51.409314 \N 0 342 YOLANDA CORRAL (667) 204-9599 f 0.00 0 1 2020-07-21 22:29:12.029397 2020-07-21 22:29:12.029397 \N 0 343 CLAUDIA JESSY BANORTE (667) 188-9548 t 5000.00 0 1 2020-07-21 23:34:43.178655 2020-07-21 23:34:43.178655 \N 0 344 GRACIELA MONTIEL f 0.00 0 1 2020-07-25 19:40:59.104884 2020-07-25 19:40:59.104884 \N 0 345 DAYSI VICTORIA (667) 392-5998 f 0.00 0 1 2020-07-28 18:03:10.393583 2020-07-28 18:03:10.393583 \N 0 346 DAYSI VICTORIA (667) 392-5998 f 0.00 0 1 2020-07-28 18:03:10.638285 2020-07-28 18:03:10.638285 \N 0 347 lucia juarez (667) 457-6017 f 0.00 0 1 2020-07-28 21:44:08.300537 2020-07-28 21:44:08.300537 \N 0 348 WNDY QUINTERO (667) 302-4108 f 0.00 0 1 2020-07-30 00:26:11.157158 2020-07-30 00:26:11.157158 \N 0 349 CITLALI RUIZ (665) 445-4545 f 0.00 0 1 2020-07-31 21:05:41.284339 2020-07-31 21:39:14.583735 \N 0 350 ESPOSO ARELY (667) 771-5525 f 0.00 0 1 2020-08-03 20:11:43.540878 2020-08-03 20:11:43.540878 \N 0 351 MARIEL PEÑA (667) 791-0697 f 0.00 0 1 2020-08-03 20:41:18.957502 2020-08-03 20:41:18.957502 \N 0 352 LORENA HERENAS JEFA CARMEN (667) 181-0085 f 0.00 0 1 2020-08-05 00:24:35.042336 2020-08-05 00:24:35.042336 \N 0 353 LORENA HERENAS JEFA CARMEN (667) 181-0085 t 6000.00 0 1 2020-08-05 00:25:30.408455 2020-08-05 00:25:30.408455 \N 0 354 LULI GAXIOLA (667) 237-0882 f 0.00 0 1 2020-08-08 19:09:14.77404 2020-08-08 19:09:14.77404 \N 0 355 JAZMIN BELTRAN (667) 424-0852 f 0.00 0 1 2020-08-12 21:58:37.100787 2020-08-12 21:58:37.100787 \N 0 356 AMERICA RAMIREZ (667) 577-4735 f 0.00 0 1 2020-08-13 19:43:58.159141 2020-08-13 19:43:58.159141 \N 0 357 AMERICA RAMIREZ (667) 577-4735 f 0.00 0 1 2020-08-13 19:44:00.323201 2020-08-13 19:44:00.323201 \N 0 358 MARIANA VALDEZ VECINA t 5000.00 0 1 2020-08-15 23:34:12.878917 2020-08-15 23:34:40.138878 \N 0 359 JESICA AISPURO (667) 462-8382 f 0.00 0 1 2020-08-18 18:52:13.197978 2020-08-18 18:52:13.197978 \N 0 360 MAYRA PATRICIA GUEVARA (669) 275-0177 f 0.00 0 1 2020-08-19 18:06:31.434604 2020-08-19 18:06:31.434604 \N 0 361 MAYRA PATRICIA GUEVARA (669) 275-0177 f 0.00 0 1 2020-08-19 18:06:31.621199 2020-08-19 18:06:31.621199 \N 0 362 BIANCA GOMEZ (667) 118-6028 f 0.00 0 1 2020-08-19 23:30:41.72371 2020-08-19 23:30:41.72371 \N 0 364 MATTY BARRIOS (667) 117-4080 f 0.00 0 1 2020-08-21 23:02:22.618288 2020-08-21 23:02:22.618288 \N 0 365 HEYDI SICAIROS (667) 406-6054 f 0.00 0 1 2020-08-23 00:16:30.922689 2020-08-23 00:16:30.922689 \N 0 366 MONICA BERNAL INSTAGRAM (667) 214-2253 f 0.00 0 1 2020-08-30 00:37:27.400055 2020-08-30 00:37:27.400055 \N 0 367 NABELI NAVIDAD (667) 252-5476 f 0.00 0 1 2020-08-31 21:29:04.770968 2020-08-31 21:29:04.770968 \N 0 368 VANESSA H (667) 497-8740 f 0.00 0 1 2020-08-31 21:30:22.886052 2020-08-31 21:30:22.886052 \N 0 369 BLANCA NEREYDA AVILES (667) 373-0605 f 0.00 0 1 2020-08-31 21:30:27.468792 2020-08-31 21:30:27.468792 \N 0 370 PAOLA LASHES (667) 253-5658 f 0.00 0 1 2020-08-31 21:33:45.033815 2020-08-31 21:33:45.033815 \N 0 154 LETICIA ZAZUETA (667) 484-6122 f 0.00 0 0 2019-08-08 21:54:11.066084 2020-08-31 23:42:14.479629 \N 0 371 ANA QUINTERO (667) 198-0475 f 0.00 0 1 2020-09-01 18:36:31.21279 2020-09-01 18:36:31.21279 \N 0 372 GLADIS URIAS (667) 145-4548 f 0.00 0 1 2020-09-02 01:30:25.711874 2020-09-02 01:30:25.711874 \N 0 373 MORGANA ETTEL f 0.00 0 1 2020-09-03 21:18:09.764629 2020-09-03 21:18:09.764629 \N 0 374 GLADYS REYES f 0.00 0 1 2020-09-08 16:32:57.927936 2020-09-08 16:32:57.927936 \N 0 375 ANDREA SALVATIERRA f 0.00 0 1 2020-09-08 16:38:05.743005 2020-09-08 16:38:05.743005 \N 0 376 MELISSA CASTRO (667) 230-4806 f 0.00 0 1 2020-09-09 19:35:56.538368 2020-09-09 19:35:56.538368 \N 0 377 BETTY RESPARDO t 2000.00 0 1 2020-09-09 23:42:58.41188 2020-09-09 23:42:58.41188 \N 0 378 JENNIFER MODELO (667) 197-8685 f 0.00 0 1 2020-09-11 20:33:48.211799 2020-09-11 20:33:48.211799 \N 0 379 JENNIFER MODELO CREDITO (667) 125-2525 f 0.00 0 1 2020-09-11 20:35:01.445755 2020-09-11 20:35:01.445755 \N 0 380 JENNIFER CREDITO (667) 785-8585 t 3000.00 0 1 2020-09-11 20:35:36.032124 2020-09-11 20:35:36.032124 \N 0 381 INGRID PAOLA (667) 142-4241 f 0.00 0 1 2020-09-12 20:33:28.116056 2020-09-12 20:33:28.116056 \N 0 382 MARCO LEY (667) 390-3379 t 10000.00 0 1 2020-09-12 23:48:23.903201 2020-09-12 23:48:23.903201 \N 0 383 TREJO f 0.00 0 1 2020-09-14 21:09:38.607649 2020-09-14 21:09:38.607649 \N 0 384 OLGA MIRIAM SERRANO (667) 264-0427 f 0.00 0 1 2020-09-14 21:50:36.876821 2020-09-14 21:50:36.876821 \N 0 385 BEATRIZ PEREZ (667) 154-7683 f 0.00 0 1 2020-09-15 18:48:14.479091 2020-09-15 18:48:14.479091 \N 0 386 VIANETZY MELCHOR (667) 447-8111 f 0.00 0 1 2020-09-15 22:01:15.569032 2020-09-15 22:01:15.569032 \N 0 387 DIANA QUINTERO (667) 316-0740 f 0.00 0 1 2020-09-16 21:43:06.254758 2020-09-16 21:43:06.254758 \N 0 388 Mariem Instagram f 0.00 0 1 2020-09-17 19:23:50.40233 2020-09-17 19:23:50.40233 \N 0 389 FERNANDA VALENZUELA f 0.00 0 1 2020-09-17 22:49:51.164303 2020-09-17 22:49:51.164303 \N 0 363 LAURA SICAIROS (667) 231-1441 f 0.00 0 1 2020-08-19 23:42:50.497377 2020-09-19 19:37:28.383559 \N 0 390 DIANA SANCHEZ (667) 368-6711 f 0.00 0 1 2020-09-19 22:24:29.246361 2020-09-19 22:24:29.246361 \N 0 391 ALONDRA FIGUEROA (667) 195-2443 f 0.00 0 1 2020-09-20 00:59:10.098657 2020-09-20 00:59:10.098657 \N 0 392 MARIA DEL CARMEN (672) 120-5694 f 0.00 0 1 2020-09-21 18:45:06.2554 2020-09-21 18:45:06.2554 \N 0 393 LUISA RODRIGUEZ (667) 756-7311 f 0.00 0 1 2020-09-21 22:08:32.616875 2020-09-21 22:08:32.616875 \N 0 394 MINERVA GAYTAN (667) 126-3941 f 0.00 0 1 2020-09-23 21:27:09.081542 2020-09-23 21:27:09.081542 \N 0 395 ALICIA ORONA (667) 466-7434 f 0.00 0 1 2020-09-24 18:23:11.141003 2020-09-24 18:23:11.141003 \N 0 396 GLORIA FUENTES (667) 210-8946 f 0.00 0 1 2020-09-24 20:45:13.559978 2020-09-24 20:45:13.559978 \N 0 397 BLANCA AGUADO (667) 349-2885 f 0.00 0 1 2020-09-25 00:47:17.410739 2020-09-25 00:47:17.410739 \N 0 398 GLADYS CASTRO (667) 211-1041 f 0.00 0 1 2020-09-25 00:49:16.143346 2020-09-25 00:49:16.143346 \N 0 399 ALMA ROSA CASTELLON (667) 406-6059 f 0.00 0 1 2020-09-26 18:19:51.274208 2020-09-26 18:19:51.274208 \N 0 400 IRMA PAYAN (667) 239-0709 f 0.00 0 1 2020-09-28 19:13:16.169968 2020-09-28 19:13:16.169968 \N 0 401 KARELY CARO (667) 160-4046 f 0.00 0 1 2020-09-29 21:34:15.320734 2020-09-29 21:34:15.320734 \N 0 402 TERESA MONTOYA (667) 473-9235 f 0.00 0 1 2020-09-29 23:58:48.779261 2020-09-29 23:58:48.779261 \N 0 403 MARICELA FERNANDEZ f 0.00 0 1 2020-09-30 22:57:52.774978 2020-09-30 22:57:52.774978 \N 0 404 BEATRIZ NUÑEZ (667) 790-4600 f 0.00 0 1 2020-10-02 21:57:53.433541 2020-10-02 21:57:53.433541 \N 0 405 VANESSA GASTELUM (667) 470-9734 f 0.00 0 1 2020-10-03 22:28:47.152404 2020-10-03 22:28:47.152404 \N 0 406 MARIA ERNESTINA LEON (667) 313-6426 f 0.00 0 1 2020-10-09 00:45:25.503058 2020-10-09 00:45:25.503058 \N 0 407 LIZBETH FERNANDEZ (667) 344-1366 f 0.00 0 1 2020-10-10 19:44:45.984613 2020-10-10 19:44:45.984613 \N 0 408 ROSABEL QUIROZ (667) 352-0676 f 0.00 0 1 2020-10-12 17:15:15.452808 2020-10-12 17:15:15.452808 \N 0 409 CLAUDIA CASTILLO 2 (667) 715-1515 f 0.00 0 1 2020-10-15 01:16:18.629843 2020-10-15 01:16:18.629843 \N 0 410 CLAUDIA CASTILLO 3 (667) 714-2552 t 15000.00 0 1 2020-10-15 01:29:49.874912 2020-10-15 01:29:49.874912 \N 0 411 CECILIA ARAMBURO (667) 137-2809 f 0.00 0 1 2020-10-15 18:30:42.981519 2020-10-15 18:30:42.981519 \N 0 412 ANA ICELA (667) 405-8972 f 0.00 0 1 2020-10-15 23:47:03.14621 2020-10-15 23:47:03.14621 \N 0 413 KATYA RAMIREZ (667) 387-3989 f 0.00 0 1 2020-10-18 00:18:59.592725 2020-10-18 00:18:59.592725 \N 0 414 fernanda Gaxiola f 0.00 0 1 2020-10-19 22:54:54.957236 2020-10-19 22:54:54.957236 \N 0 415 ANDREA CASTAÑOS (667) 349-7228 f 0.00 0 1 2020-10-22 00:00:42.641321 2020-10-22 00:00:42.641321 \N 0 416 JOSEFINA (667) 202-5478 f 0.00 0 1 2020-10-23 00:26:39.4166 2020-10-23 00:26:39.4166 \N 0 417 MARIA GUADALUPE (667) 499-7133 f 0.00 0 1 2020-10-23 18:49:20.554858 2020-10-23 18:49:20.554858 \N 0 418 ELVIRA BELTRAN (667) 315-2851 f 0.00 0 1 2020-10-24 23:01:10.60368 2020-10-24 23:01:10.60368 \N 0 419 MICHEL CAMPOS (667) 118-5954 f 0.00 0 1 2020-10-24 23:49:52.258432 2020-10-24 23:49:52.258432 \N 0 420 KARELY (SANDRA CORRALES) INSTA (667) 470-8160 f 0.00 0 1 2020-10-24 23:54:25.282069 2020-10-24 23:54:25.282069 \N 0 421 KARELI GONZALEZ (667) 253-8371 f 0.00 0 1 2020-10-27 20:14:36.295222 2020-10-27 20:14:36.295222 \N 0 422 OLGA SOTELO t 10000.00 0 1 2020-10-27 22:38:41.948859 2020-10-27 22:38:41.948859 \N 0 423 MARITZA (667) 344-9928 f 0.00 0 1 2020-10-30 21:04:04.409571 2020-10-30 21:04:04.409571 \N 0 424 CONSUELO (667) 151-7796 f 0.00 0 1 2020-10-31 01:28:40.943807 2020-10-31 01:28:40.943807 \N 0 425 CINTHIA ARACELI VALLES (667) 406-7477 f 0.00 0 1 2020-11-02 23:27:58.130281 2020-11-02 23:27:58.130281 \N 0 426 LOLIS GUERRERO (667) 103-0458 f 0.00 0 1 2020-11-06 18:51:59.640247 2020-11-06 18:51:59.640247 \N 0 427 MARISELA CERVANTES (667) 158-9467 f 0.00 0 1 2020-11-07 19:08:33.63486 2020-11-07 19:08:33.63486 \N 0 428 CELIDA VELASQUEZ VELASQUEZ (667) 119-9394 f 0.00 0 1 2020-11-07 20:54:06.206251 2020-11-07 20:54:06.206251 \N 0 429 YARELI QUINTERO (667) 710-7368 f 0.00 0 1 2020-11-09 23:10:15.555365 2020-11-09 23:10:15.555365 \N 0 430 ANAHI QUINTERO (667) 774-0311 f 0.00 0 1 2020-11-09 23:43:12.904718 2020-11-09 23:43:12.904718 \N 0 431 DENISSE MANJARREZ (667) 184-0579 f 0.00 0 1 2020-11-11 20:50:58.857061 2020-11-11 20:50:58.857061 \N 0 432 ALEJANDRA CORONA (667) 175-3810 f 0.00 0 1 2020-11-12 22:14:33.624367 2020-11-12 22:16:35.663898 \N 0 433 CLAUDIA LOPEZ (667) 470-5928 f 0.00 0 1 2020-11-12 23:50:06.496759 2020-11-12 23:50:06.496759 \N 0 434 JUANA GARCIA (667) 227-8727 f 0.00 0 1 2020-11-13 20:28:38.560696 2020-11-13 20:28:38.560696 \N 0 435 LAURA ELENA QUINTERO (667) 372-6779 f 0.00 0 1 2020-11-14 21:54:43.680227 2020-11-14 21:54:43.680227 \N 0 436 COLUMBA (667) 474-5555 f 0.00 0 1 2020-11-14 22:49:26.505324 2020-11-14 22:49:26.505324 \N 0 437 FERNANDA CASTRO (667) 182-7903 f 0.00 0 1 2020-11-16 22:45:09.743984 2020-11-16 22:45:09.743984 \N 0 438 ENIA LEY (667) 110-1010 f 0.00 0 1 2020-11-17 00:14:54.518468 2020-11-17 00:14:54.518468 \N 0 439 NATALY ARMENTA INSUNZA (667) 210-3234 f 0.00 0 1 2020-11-17 19:11:31.392818 2020-11-17 19:11:31.392818 \N 0 440 ANNEL BARRON MALDONADO (667) 352-4713 f 0.00 0 1 2020-11-17 20:30:39.753637 2020-11-17 20:30:39.753637 \N 0 441 ARISA BEJARANO (667) 355-4254 f 0.00 0 1 2020-11-17 22:15:48.980685 2020-11-17 22:15:48.980685 \N 0 442 MARIA DE LOS ANGELES (667) 359-9521 f 0.00 0 1 2020-11-18 23:18:25.495397 2020-11-18 23:18:25.495397 \N 0 443 MARIA DE LOS ANGELES BOLSA MULTICOLOR (667) 110-1010 f 0.00 0 1 2020-11-19 00:30:34.714148 2020-11-19 00:30:34.714148 \N 0 444 DENISSE MONTENEGRO (667) 406-2880 f 0.00 0 1 2020-11-19 00:45:34.817817 2020-11-19 00:45:34.817817 \N 0 445 MIRNA FELIX (667) 326-4328 f 0.00 0 1 2020-11-19 19:29:23.332923 2020-11-19 19:29:23.332923 \N 0 446 ESPERANZA RUSSELL (672) 131-977_ f 0.00 0 1 2020-11-19 21:31:51.240436 2020-11-19 21:31:51.240436 \N 0 447 ALONDRA FELIX (667) 214-1672 f 0.00 0 1 2020-11-20 21:49:12.959121 2020-11-20 21:49:12.959121 \N 0 448 YURISA ZAMORA (667) 232-7669 f 0.00 0 1 2020-11-23 18:50:37.449703 2020-11-23 18:50:37.449703 \N 0 449 JANETZI QUIÑONES (667) 322-9517 f 0.00 0 1 2020-11-23 18:55:58.847491 2020-11-23 18:55:58.847491 \N 0 450 KENIA GAXIOLA (667) 306-8895 f 0.00 0 1 2020-11-23 21:15:33.257848 2020-11-23 21:15:33.257848 \N 0 451 FERNANDA URETA BASTIDAS (667) 430-1872 f 0.00 0 1 2020-11-26 20:13:55.007106 2020-11-26 20:13:55.007106 \N 0 452 ZULEMA CHAIDEZ (667) 320-7049 f 0.00 0 1 2020-11-26 20:18:50.999506 2020-11-26 20:18:50.999506 \N 0 453 AYLIN ZAMUDIO (667) 401-2466 f 0.00 0 1 2020-11-28 01:14:27.676892 2020-11-28 01:14:27.676892 \N 0 454 PATRICIA VELAZQUES (667) 418-7035 f 0.00 0 1 2020-11-28 19:39:10.359181 2020-11-28 19:39:10.359181 \N 0 455 ALMA RANGEL (667) 131-2911 f 0.00 0 1 2020-11-28 22:12:27.105461 2020-11-28 22:12:27.105461 \N 0 456 FERNANDA GONZALEZ (667) 265-3773 f 0.00 0 1 2020-11-30 20:46:14.491669 2020-11-30 20:46:14.491669 \N 0 457 JASIBE ARAUJO (667) 189-0146 f 0.00 0 1 2020-11-30 22:02:16.114986 2020-11-30 22:02:16.114986 \N 0 458 LORENZA PULIDO VARELA (667) 207-0054 f 0.00 0 1 2020-12-02 19:02:42.440999 2020-12-02 19:02:42.440999 \N 0 459 CLAUDIA RIVAS (667) 424-5289 f 0.00 0 1 2020-12-03 00:33:46.955961 2020-12-03 00:33:46.955961 \N 0 460 ARACELI OCHOA (667) 254-2884 f 0.00 0 1 2020-12-03 18:55:41.271769 2020-12-03 18:55:41.271769 \N 0 461 ANGELICA GOMEZ (667) 428-8366 f 0.00 0 1 2020-12-04 20:28:21.777529 2020-12-04 20:28:21.777529 \N 0 462 GERARDO INSTAGRAM f 0.00 0 1 2020-12-04 21:40:59.933698 2020-12-04 21:40:59.933698 \N 0 463 MARIBEL TAPIA (667) 786-5799 f 0.00 0 1 2020-12-05 20:34:07.727563 2020-12-05 20:34:07.727563 \N 0 464 MARIA TAPIA (667) 320-0971 f 0.00 0 1 2020-12-05 20:53:08.121696 2020-12-05 20:53:08.121696 \N 0 465 AUDREY CHIQUETE LOERA (667) 395-4875 f 0.00 0 1 2020-12-07 22:03:47.799976 2020-12-07 22:03:47.799976 \N 0 466 SOFIA SILVAS (667) 798-3682 f 0.00 0 1 2020-12-08 20:09:30.511063 2020-12-08 20:09:30.511063 \N 0 467 diana salas (667) 485-9775 f 0.00 0 1 2020-12-09 22:03:32.557007 2020-12-09 22:03:32.557007 \N 0 468 HERMINIA GAXIOLA (667) 329-5133 f 0.00 0 1 2020-12-09 22:43:53.778457 2020-12-09 22:43:53.778457 \N 0 469 DULCE MARIA (667) 995-0657 f 0.00 0 1 2020-12-09 23:17:26.175549 2020-12-09 23:17:26.175549 \N 0 470 RAFAELA QUINTERO (667) 356-7392 f 0.00 0 1 2020-12-10 17:45:50.185833 2020-12-10 17:45:50.185833 \N 0 471 IRMA PAYAN (667) 239-0709 f 0.00 0 1 2020-12-10 21:36:58.300854 2020-12-10 21:36:58.300854 \N 0 472 DUNIA LOPEZ (667) 144-1976 f 0.00 0 1 2020-12-11 00:29:27.190053 2020-12-11 00:29:27.190053 \N 0 473 CASANDRA MADUEÑO (667) 487-4344 f 0.00 0 1 2020-12-12 00:26:05.706923 2020-12-12 00:26:05.706923 \N 0 474 ALMA ROSA LOPEZ (667) 996-5718 f 0.00 0 1 2020-12-12 19:42:48.137793 2020-12-12 19:42:48.137793 \N 0 475 ANA BALDERAS (667) 233-0259 f 0.00 0 1 2020-12-12 22:18:03.891004 2020-12-12 22:18:03.891004 \N 0 476 VALERIA VESTIDO ROJO (667) 252-8875 f 0.00 0 1 2020-12-15 18:13:05.449216 2020-12-15 18:13:05.449216 \N 0 477 MARILYN MEDINA (667) 413-6565 f 0.00 0 1 2020-12-16 01:58:54.458581 2020-12-16 01:58:54.458581 \N 0 478 ITZEL CITLALY ABUNDIS LOPEZ (667) 795-6990 f 0.00 0 1 2020-12-16 03:31:39.009443 2020-12-16 03:31:39.009443 \N 0 479 CINTHIA INSTAGRAM (667) 117-9103 f 0.00 0 1 2020-12-17 00:37:20.423249 2020-12-17 00:37:20.423249 \N 0 480 GLORIA VILLAREAL (667) 796-4468 f 0.00 0 1 2020-12-17 01:39:46.510322 2020-12-17 01:39:46.510322 \N 0 481 CHAYITO f 0.00 0 1 2020-12-17 18:16:19.662191 2020-12-17 18:16:19.662191 \N 0 482 CINDY ORONA (667) 107-7348 f 0.00 0 1 2020-12-22 23:08:25.996976 2020-12-22 23:08:25.996976 \N 0 483 ADALIS SICAIROS (667) 471-3780 f 0.00 0 1 2020-12-23 01:24:48.367631 2020-12-23 01:24:48.367631 \N 0 484 MONTSE BARRIOS t 10000.00 0 1 2020-12-25 00:53:54.330608 2020-12-25 00:53:54.330608 \N 0 485 VIVIANA LUNA (222) 528-7841 f 0.00 0 1 2020-12-28 23:11:24.661059 2020-12-28 23:11:24.661059 \N 0 486 AIME FERRO (667) 323-3680 f 0.00 0 1 2020-12-29 23:46:50.311999 2020-12-29 23:46:50.311999 \N 0 487 GALILEA (667) 333-1641 f 0.00 0 1 2020-12-30 17:44:56.909895 2020-12-30 17:44:56.909895 \N 0 488 ANAI GONZALES (667) 775-1555 f 0.00 0 1 2020-12-30 23:58:10.736933 2020-12-30 23:58:10.736933 \N 0 489 CHELA (667) 336-5667 t 10000.00 0 1 2021-01-06 23:49:20.221177 2021-01-06 23:49:20.221177 \N 0 490 JESICA GOMEZ MEDINA (667) 775-1885 f 0.00 0 1 2021-01-07 01:00:35.308763 2021-01-07 01:00:35.308763 \N 0 491 MARIELO VAZQUEZ (667) 188-2464 t 4000.00 0 1 2021-01-15 17:57:24.286492 2021-01-15 17:57:24.286492 \N 0 492 ROSY VALLE f 0.00 0 1 2021-01-19 01:14:12.745816 2021-01-19 01:14:12.745816 \N 0 493 NADIA (667) 341-4428 f 0.00 0 1 2021-01-21 21:33:00.31022 2021-01-21 21:33:00.31022 \N 0 494 ARELI PADILLA (667) 473-7131 t 5000.00 0 1 2021-01-23 21:50:32.598327 2021-01-23 21:50:32.598327 \N 0 495 ANABEL RODRIGUEZ (667) 255-7599 f 0.00 0 1 2021-02-03 01:18:06.539597 2021-02-03 01:18:06.539597 \N 0 \. -- -- Name: customers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.customers_id_seq', 495, true); -- -- Data for Name: expenses; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.expenses (id, expensesconcept_id, open_cash_register_id, quantity, status, created_at, updated_at, observations, expense_date, expense_code) FROM stdin; 1 1 19 86.0 2 2019-02-16 02:44:40.851301 2019-02-16 02:44:40.851301 2019-02-15 PV1-E-1 2 1 20 783.0 2 2019-02-17 02:39:57.180531 2019-02-17 02:39:57.180531 SUELDO CHIO $733\r\nCOMIDA $50 2019-02-16 PV1-E-2 3 1 25 72.0 2 2019-02-19 02:32:36.047753 2019-02-19 02:32:36.047753 agua $22\r\ncomida$50 2019-02-18 PV1-E-3 4 1 34 50.0 2 2019-02-23 02:15:09.741336 2019-02-23 02:15:09.741336 comida 2019-02-22 PV1-E-4 5 1 37 50.0 2 2019-02-23 19:48:22.144402 2019-02-23 19:48:22.144402 COMIDA 2019-02-23 PV1-E-5 6 1 37 718.0 2 2019-02-23 22:14:10.335312 2019-02-23 22:14:10.335312 sueldo rocio 2019-02-23 PV1-E-6 7 1 49 68.0 2 2019-03-02 02:00:46.009176 2019-03-02 02:00:46.009176 sueldo rocio 2019-03-01 PV1-E-7 8 1 49 50.0 2 2019-03-02 02:08:56.626406 2019-03-02 02:08:56.626406 comida 2019-03-01 PV1-E-8 9 1 49 500.0 2 2019-03-02 02:10:12.450511 2019-03-02 02:10:12.450511 sueldo chio 2019-03-01 PV1-E-9 10 1 51 50.0 2 2019-03-02 19:39:39.25807 2019-03-02 19:39:39.25807 comida 2019-03-02 PV1-E-10 11 1 55 50.0 2 2019-03-05 01:37:11.992404 2019-03-05 01:37:11.992404 comida rocio 2019-03-04 PV1-E-11 12 1 65 50.0 2 2019-03-09 22:55:13.888809 2019-03-09 22:55:13.888809 comida chio 2019-03-09 PV1-E-12 13 1 65 878.0 2 2019-03-09 23:43:21.41791 2019-03-09 23:43:21.41791 $628 sueldo chio\r\n$250 aretes vendidos con tarjeta 2019-03-09 PV1-E-13 14 1 69 50.0 2 2019-03-12 01:55:25.589837 2019-03-12 01:55:25.589837 COMIDA ROCIO 2019-03-11 PV1-E-14 15 1 73 1300.0 2 2019-03-13 23:29:05.962777 2019-03-13 23:29:05.962777 SE ENTREGO A DANIELA 2019-03-13 PV2-E-1 16 1 77 50.0 2 2019-03-15 23:43:59.622261 2019-03-15 23:43:59.622261 COMIDA ROCIO 2019-03-15 PV1-E-15 18 1 78 1000.0 2 2019-03-17 01:28:22.371571 2019-03-17 01:28:22.371571 SUELDO ANABELLY 2019-03-16 PV2-E-2 17 1 79 50.0 2 2019-03-17 01:26:10.627326 2019-03-17 01:26:10.627326 comida rocio 2019-03-16 PV1-E-16 19 1 85 50.0 2 2019-03-21 02:09:10.80394 2019-03-21 02:09:10.80394 COMIDA ROCIO 2019-03-20 PV1-E-17 20 1 86 200.0 2 2019-03-21 17:09:42.009383 2019-03-21 17:09:42.009383 paqueteria 2019-03-21 PV1-E-18 21 1 86 50.0 2 2019-03-22 00:13:38.023365 2019-03-22 00:13:38.023365 comida rocio 2019-03-21 PV1-E-19 22 1 86 20.0 2 2019-03-22 00:45:36.213803 2019-03-22 00:45:36.213803 agua 2019-03-21 PV1-E-20 23 1 86 500.0 2 2019-03-22 01:52:49.336521 2019-03-22 01:52:49.336521 adelanto sueldo Anabelly 2019-03-21 PV1-E-21 24 1 89 1100.0 2 2019-03-23 01:20:22.081656 2019-03-23 01:20:22.081656 SUELDO ILSE 2019-03-22 PV1-E-22 25 1 91 500.0 2 2019-03-24 01:26:20.532203 2019-03-24 01:26:20.532203 SUELDO RESTANTE ANABELLY 2019-03-23 PV2-E-3 26 1 90 678.0 2 2019-03-24 01:42:25.628436 2019-03-24 01:42:25.628436 $50 comida $628 sueldo Rocio 2019-03-23 PV1-E-23 27 1 95 50.0 2 2019-03-25 17:59:43.445712 2019-03-25 17:59:43.445712 Comida chio 2019-03-25 PV1-E-24 28 1 97 24.0 2 2019-03-27 00:29:15.860519 2019-03-27 00:29:15.860519 AGUA 2019-03-26 PV1-E-25 29 1 98 500.0 2 2019-03-28 01:26:49.553234 2019-03-28 01:26:49.553234 ADELANTO SUELDO ANABELLY 2019-03-27 PV1-E-26 30 1 102 50.0 2 2019-03-29 18:09:36.11627 2019-03-29 18:09:36.11627 COMIDA CHIO 2019-03-29 PV1-E-27 32 1 105 500.0 2 2019-03-31 01:09:15.676806 2019-03-31 01:09:15.676806 SUELDO RESTANTE ANABELLY 2019-03-30 PV2-E-4 31 1 104 678.0 2 2019-03-30 18:14:19.377227 2019-03-30 18:14:19.377227 comida chio $50 sueldo chio $628 2019-03-30 PV1-E-28 33 1 108 50.0 2 2019-04-01 19:11:34.226837 2019-04-01 19:11:34.226837 comida Chio 2019-04-01 PV1-E-29 34 1 108 1013.0 2 2019-04-01 21:22:26.017913 2019-04-01 21:22:26.017913 LUZ CFE 2019-04-01 PV1-E-30 35 1 116 50.0 2 2019-04-05 18:13:32.265043 2019-04-05 18:13:32.265043 Comida Chio 2019-04-05 PV1-E-31 36 1 118 738.0 2 2019-04-06 23:52:22.131088 2019-04-06 23:52:22.131088 sueldo Chio $673 comida $50 sres. basura $15 2019-04-06 PV1-E-32 37 1 121 50.0 2 2019-04-09 00:38:06.058424 2019-04-09 00:38:06.058424 comida Chio 2019-04-08 PV1-E-33 38 1 129 600.0 2 2019-04-12 21:30:46.984403 2019-04-12 21:30:46.984403 préstamo Rocío 2019-04-12 PV1-E-34 40 1 129 1200.0 2 2019-04-13 01:27:24.998508 2019-04-13 01:27:24.998508 SUELDO ANABELLY 2019-04-12 PV1-E-35 39 1 130 800.0 2 2019-04-13 01:23:12.341761 2019-04-13 01:23:12.341761 sueldo de Ilse 2019-04-12 PV2-E-5 41 1 132 678.0 2 2019-04-13 21:53:07.649079 2019-04-13 21:53:07.649079 SUELDO ROCIO $628 COMIDA $50 2019-04-13 PV1-E-36 42 1 132 25.0 2 2019-04-14 01:28:54.748885 2019-04-14 01:28:54.748885 GARRAFON DE AGUA 2019-04-13 PV1-E-37 43 1 136 50.0 2 2019-04-16 00:31:09.98819 2019-04-16 00:31:09.98819 comida 2019-04-15 PV1-E-38 44 1 138 50.0 2 2019-04-16 22:20:05.134477 2019-04-16 22:20:05.134477 COMIDA 2019-04-16 PV1-E-39 45 1 140 500.0 2 2019-04-17 23:57:53.22386 2019-04-17 23:57:53.22386 SUELDO ILSE 2019-04-17 PV2-E-6 46 1 139 1200.0 2 2019-04-18 00:31:29.729633 2019-04-18 00:31:29.729633 SUELDO ANABELLY 2019-04-17 PV1-E-40 47 1 152 1270.0 2 2019-04-27 21:12:03.404154 2019-04-27 21:12:03.404154 SUELDO ANABELLY 2019-04-27 PV1-E-41 48 1 153 50.0 2 2019-04-30 01:41:42.590352 2019-04-30 01:41:42.590352 comida rocio 2019-04-29 PV1-E-42 49 1 155 628.0 2 2019-04-30 22:34:28.131695 2019-04-30 22:34:28.131695 sueldo Rocio 2019-04-30 PV1-E-43 50 1 155 150.0 2 2019-04-30 22:39:33.097781 2019-04-30 22:39:33.097781 COMISION ANABELLY 2019-04-30 PV1-E-44 51 1 159 50.0 2 2019-05-02 18:30:16.854188 2019-05-02 18:30:16.854188 comida 2019-05-02 PV1-E-45 52 1 159 1100.0 2 2019-05-03 01:50:48.64393 2019-05-03 01:50:48.64393 sueldo Anabelly 2019-05-02 PV1-E-46 57 1 167 750.0 2 2019-05-07 01:36:47.016896 2019-05-07 01:36:47.016896 $700 PRESTAMO ROCIO\r\n$50 COMIDA 2019-05-06 PV1-E-51 53 1 162 250.0 2 2019-05-04 01:59:36.962837 2019-05-04 01:59:49.154462 $200 PAQUETERIA 2019-05-03 PV1-E-47 54 1 162 250.0 2 2019-05-04 02:00:31.223024 2019-05-04 02:00:31.223024 $200 PAQUETERIA\r\n$50 COMIDA 2019-05-03 PV1-E-48 55 1 163 50.0 2 2019-05-04 20:23:12.502381 2019-05-04 20:23:12.502381 comida 2019-05-04 PV1-E-49 56 1 163 1348.0 2 2019-05-04 21:19:17.95756 2019-05-04 21:19:17.95756 $240 8 HORAS EXTRA ROCIO \r\n$628 SUELDO ROCIO\r\n$480 SUELDO YARETZI 2019-05-04 PV1-E-50 58 1 169 50.0 2 2019-05-07 23:29:20.320367 2019-05-07 23:29:20.320367 COMIDA 2019-05-07 PV1-E-52 59 1 172 50.0 2 2019-05-09 01:31:48.084986 2019-05-09 01:31:48.084986 comida 2019-05-08 PV1-E-53 60 1 174 50.0 2 2019-05-09 16:15:20.243797 2019-05-09 16:15:20.243797 comida 2019-05-09 PV1-E-54 61 1 174 433.0 2 2019-05-09 23:18:56.135705 2019-05-09 23:18:56.135705 PIZZA 2019-05-09 PV1-E-55 62 1 178 50.0 2 2019-05-11 17:10:28.128661 2019-05-11 17:10:28.128661 COMIDA ROCIO 2019-05-11 PV1-E-56 63 1 178 850.0 2 2019-05-11 23:16:33.005384 2019-05-11 23:16:33.005384 SUELDO YARETZI 2019-05-11 PV1-E-57 64 1 178 1200.0 2 2019-05-12 00:14:05.425854 2019-05-12 00:14:05.425854 SUELDO ANABELLY 2019-05-11 PV1-E-58 65 1 178 2038.0 2 2019-05-12 02:39:23.516411 2019-05-12 02:39:23.516411 SUELDO $628\r\nHRS EXTRA $330\r\nCOMISION SEMANA PASADA $200\r\nCOMISIIN SEMANA DOBLE $880 2019-05-11 PV1-E-59 66 1 182 70.0 2 2019-05-14 01:33:43.108413 2019-05-14 01:33:43.108413 $50 comida $20 me falto de comisiones jaja 2019-05-13 PV1-E-60 67 1 184 250.0 2 2019-05-14 19:33:54.986075 2019-05-14 19:33:54.986075 COMISION ANABELLY 2019-05-14 PV1-E-61 68 1 187 50.0 2 2019-05-16 01:05:38.756624 2019-05-16 01:05:38.756624 comida rocio 2019-05-15 PV1-E-62 69 1 189 250.0 2 2019-05-17 01:24:05.449759 2019-05-17 01:24:05.449759 200 PAQUETERIA 50 COMIDA 2019-05-16 PV1-E-63 70 1 191 50.0 2 2019-05-18 01:29:28.275508 2019-05-18 01:29:28.275508 COMIDA 2019-05-17 PV1-E-64 73 2 192 720.0 2 2019-05-19 01:50:27.254815 2019-05-19 01:50:27.254815 SUELDO YARETZI 2019-05-18 PV2-E-7 71 1 193 50.0 2 2019-05-18 17:13:36.197369 2019-05-18 17:13:36.197369 comida rocio 2019-05-18 PV1-E-65 72 1 193 2128.0 2 2019-05-19 01:38:37.318622 2019-05-19 01:38:37.318622 hras estra Rocio $300\r\nsueldo Rocio $628\r\nsueldo Anabelly $1200 2019-05-18 PV1-E-66 74 1 196 50.0 2 2019-05-20 17:28:14.389962 2019-05-20 17:28:14.389962 comida Rocío 2019-05-20 PV1-E-67 75 1 196 21.0 2 2019-05-20 22:34:57.039431 2019-05-20 22:34:57.039431 GARRAFON DE AGUA 2019-05-20 PV1-E-68 76 1 201 50.0 2 2019-05-23 01:57:22.448323 2019-05-23 01:57:22.448323 PAQUETERIA 2019-05-22 PV1-E-69 77 1 202 50.0 2 2019-05-24 01:03:37.671162 2019-05-24 01:03:37.671162 comida 2019-05-23 PV1-E-70 78 1 204 500.0 2 2019-05-25 01:43:18.537504 2019-05-25 01:43:18.537504 ADELANTO SUELDO ANABELLY 2019-05-24 PV2-E-8 79 1 207 628.0 2 2019-05-26 00:56:22.873297 2019-05-26 00:56:22.873297 SUELDO ROCIO 2019-05-25 PV1-E-71 80 1 207 700.0 2 2019-05-26 01:12:57.897764 2019-05-26 01:12:57.897764 SUELDO RESTANTE ANABELLY 2019-05-25 PV1-E-72 81 1 209 200.0 2 2019-05-26 21:01:10.025212 2019-05-26 21:01:10.025212 COMISIONES ANABELLY 2019-05-26 PV1-E-73 82 1 210 50.0 2 2019-05-27 17:54:25.939289 2019-05-27 17:54:25.939289 COMIDA 2019-05-27 PV1-E-74 83 1 210 400.0 2 2019-05-27 22:11:56.277983 2019-05-27 22:11:56.277983 comisiones Rocío 2019-05-27 PV1-E-75 85 1 215 100.0 2 2019-05-30 22:10:50.137006 2019-05-30 22:10:50.137006 ADELANTO YARETZI 2019-05-30 PV2-E-9 84 1 216 400.0 2 2019-05-30 22:05:54.988538 2019-05-30 22:05:54.988538 ADELANTO ROCIO 2019-05-30 PV1-E-76 86 1 219 1238.0 2 2019-06-02 00:53:27.685328 2019-06-02 00:53:27.685328 SUELDO ROCIO $228 HRAS EXTRA $110 COMIDA $50 SUELDO YARETZI $850 2019-06-01 PV1-E-77 87 1 222 50.0 2 2019-06-04 01:38:36.065272 2019-06-04 01:38:36.065272 comida 2019-06-03 PV1-E-78 88 1 225 300.0 2 2019-06-04 20:02:44.991095 2019-06-04 20:02:44.991095 renta de retomartillo 2019-06-04 PV1-E-79 89 1 225 50.0 2 2019-06-04 20:03:08.795973 2019-06-04 20:03:08.795973 comida 2019-06-04 PV1-E-80 90 1 225 44.0 2 2019-06-04 23:41:29.454654 2019-06-04 23:41:29.454654 GASTO EN FERRETERIA (KIKO) 2019-06-04 PV1-E-81 91 1 227 50.0 2 2019-06-06 01:18:03.385622 2019-06-06 01:18:03.385622 comida 2019-06-05 PV1-E-82 92 1 228 171.0 2 2019-06-06 18:59:54.679895 2019-06-06 18:59:54.679895 comida $50 ferreteria (kiko) $121 2019-06-06 PV1-E-83 93 1 228 100.0 2 2019-06-06 20:32:26.14723 2019-06-06 20:32:26.14723 comida kiko 2019-06-06 PV1-E-84 94 1 228 35.0 2 2019-06-06 22:21:14.658207 2019-06-06 22:21:14.658207 ferreteria (kiko) 2019-06-06 PV1-E-85 95 1 230 200.0 2 2019-06-07 22:05:58.080889 2019-06-07 22:05:58.080889 $100 COMIDA KIKO $100 ADELANTO YARETZI 2019-06-07 PV2-E-10 97 1 232 1028.0 2 2019-06-08 23:09:47.41765 2019-06-08 23:09:47.41765 $628 sueldo Rocio $300 horas extra $100 comida 07/08 2019-06-08 PV1-E-86 96 1 231 100.0 2 2019-06-08 22:28:55.314279 2019-06-08 22:28:55.314279 desayuno kiko 2019-06-08 PV2-E-11 98 1 231 850.0 2 2019-06-08 23:17:00.455438 2019-06-08 23:17:00.455438 sueldo yaretzy 2019-06-08 PV2-E-12 99 1 234 157.0 2 2019-06-09 20:56:45.705404 2019-06-09 20:56:45.705404 COMPRA DE KIKO EN FERRETERIA YAQUI 2019-06-09 PV2-E-13 100 1 243 10.0 2 2019-06-13 20:15:49.370066 2019-06-13 20:15:49.370066 cooperacion a indigentes con cara de asaltantes jaja 2019-06-13 PV1-E-87 101 1 245 1000.0 2 2019-06-14 23:44:39.290369 2019-06-14 23:44:39.290369 SUELDO ANABELLY 2019-06-14 PV1-E-88 102 1 245 50.0 2 2019-06-15 01:56:29.117095 2019-06-15 01:56:29.117095 comida 2019-06-14 PV1-E-89 105 1 247 50.0 2 2019-06-16 01:53:38.951476 2019-06-16 01:53:38.951476 YARETZI 2019-06-15 PV2-E-14 103 1 246 838.0 2 2019-06-16 01:49:10.400282 2019-06-16 01:49:10.400282 $50 comida $628 sueldo rocio $160 comisiones 2019-06-15 PV1-E-90 104 1 246 950.0 2 2019-06-16 01:53:07.962884 2019-06-16 01:53:07.962884 sueldo yaretzi 2019-06-15 PV1-E-91 106 1 257 1000.0 2 2019-06-21 00:01:49.307074 2019-06-21 00:01:49.307074 $900 ANABELLY $100 SIEM 2019-06-20 PV1-E-92 107 1 258 100.0 2 2019-06-21 20:56:57.537948 2019-06-21 20:56:57.537948 ADELANTO YARETZI 2019-06-21 PV2-E-15 109 1 260 750.0 2 2019-06-22 22:37:53.855077 2019-06-22 22:37:53.855077 SUELDO YARETZI 2019-06-22 PV2-E-16 108 1 261 50.0 2 2019-06-22 20:48:09.212067 2019-06-22 20:48:09.212067 comida 2019-06-22 PV1-E-93 110 1 261 578.0 2 2019-06-23 01:57:42.239009 2019-06-23 01:57:42.239009 sueldo chio 2019-06-22 PV1-E-94 111 1 267 520.0 2 2019-06-25 23:33:48.287974 2019-06-25 23:33:48.287974 $500 PRESTAMO ROCIO $20 GARRAFON DE AGUA 2019-06-25 PV1-E-95 112 2 270 200.0 2 2019-06-28 01:45:55.12426 2019-06-28 01:45:55.12426 SE LE DIO A KIKO 2019-06-27 PV1-E-96 114 1 272 550.0 2 2019-06-29 01:51:23.586781 2019-06-29 01:51:23.586781 adelanto sueldo Anabelly $500 comida $50 2019-06-28 PV1-E-97 113 1 271 50.0 2 2019-06-28 21:02:04.152829 2019-06-28 21:02:04.152829 ADELANTO YARETZI 2019-06-28 PV2-E-17 115 1 273 678.0 2 2019-06-30 00:06:34.438621 2019-06-30 00:06:34.438621 $628 sueldo $50 comida 2019-06-29 PV1-E-98 117 1 273 400.0 2 2019-06-30 01:48:43.83381 2019-06-30 01:48:43.83381 resto de sueldo Anabelly 2019-06-29 PV1-E-99 116 1 274 900.0 2 2019-06-30 01:40:49.201604 2019-06-30 01:40:49.201604 SUELDO YARETZI 2019-06-29 PV2-E-18 119 1 284 800.0 2 2019-07-04 21:55:26.765508 2019-07-04 21:55:26.765508 PRESTAMO ROCIO 2019-07-04 PV1-E-100 118 1 285 50.0 2 2019-07-04 21:40:34.022972 2019-07-04 21:40:34.022972 ADELANTO YARETZI 2019-07-04 PV2-E-19 120 1 287 921.0 2 2019-07-05 22:07:08.187036 2019-07-05 22:07:08.187036 SUELDO ANABELLY 2019-07-05 PV1-E-101 122 1 287 50.0 2 2019-07-05 22:20:19.813381 2019-07-05 22:20:19.813381 COMIDA ROCIO 2019-07-05 PV1-E-102 123 1 287 128.0 2 2019-07-06 02:02:27.127417 2019-07-06 02:02:27.127417 sueldo Rocio 2019-07-05 PV1-E-103 121 1 288 700.0 2 2019-07-05 22:12:24.85846 2019-07-05 22:12:24.85846 PAGO DE SUELDO DE YARETZI 2019-07-05 PV2-E-20 124 1 290 135.0 2 2019-07-06 16:41:39.831838 2019-07-06 16:41:39.831838 $85 tapiz $50 comida 2019-07-06 PV1-E-104 125 1 299 100.0 2 2019-07-11 20:11:59.063328 2019-07-11 20:11:59.063328 yaretzi 2019-07-11 PV2-E-21 126 1 301 550.0 2 2019-07-13 00:56:43.16243 2019-07-13 00:56:43.16243 $500 SUELDO ANABELLY $50 COMIDA ROCIO 2019-07-12 PV1-E-105 127 2 304 720.0 2 2019-07-14 01:54:03.717131 2019-07-14 01:54:03.717131 SUELDO YARETZI 2019-07-13 PV2-E-22 128 1 303 678.0 2 2019-07-14 01:55:43.526376 2019-07-14 01:55:43.526376 $628 SUELDO $50 COMIDA 2019-07-13 PV1-E-106 129 2 306 170.0 2 2019-07-16 01:34:16.168876 2019-07-16 01:34:16.168876 COMISIONES Y COMIDA ROCIO 2019-07-15 PV1-E-107 130 2 308 726.0 2 2019-07-17 01:54:34.008686 2019-07-17 01:54:34.008686 Sueldo Anabelly 2019-07-16 PV2-E-23 132 1 314 850.0 2 2019-07-19 20:10:29.940032 2019-07-19 20:10:29.940032 sueldo Yaretzi 2019-07-19 PV2-E-24 131 1 315 50.0 2 2019-07-19 19:46:29.880537 2019-07-19 19:46:29.880537 comida 2019-07-19 PV1-E-108 133 1 317 498.0 2 2019-07-20 22:00:06.070612 2019-07-20 22:00:06.070612 SUELDO ANABELLY $200 SUELDO ROCIO $248 COMIDA $50 2019-07-20 PV1-E-109 134 1 320 250.0 2 2019-07-22 22:57:49.973242 2019-07-22 22:57:49.973242 $200 paqueteria y comida $50 2019-07-22 PV1-E-110 135 1 325 20.0 2 2019-07-24 16:34:50.038193 2019-07-24 16:34:50.038193 GARRAFON DE AGUA 2019-07-24 PV1-E-111 136 1 326 50.0 2 2019-07-25 21:18:03.965117 2019-07-25 21:18:03.965117 yaretzi 2019-07-25 PV2-E-25 137 1 329 628.0 2 2019-07-26 22:22:01.233474 2019-07-26 22:22:01.233474 sueldo rocio 2019-07-26 PV1-E-112 138 1 330 650.0 2 2019-07-27 16:17:08.29384 2019-07-27 16:17:08.29384 SE LE DIO A DANIELA 26/07/19 $600 COMIDA $50 2019-07-27 PV1-E-113 139 1 330 280.0 2 2019-07-28 01:53:21.66922 2019-07-28 01:53:21.66922 COMISIONES 2019-07-27 PV1-E-114 140 1 334 15.0 2 2019-07-29 21:29:53.788161 2019-07-29 21:29:53.788161 cooperacion a señores que barren 2019-07-29 PV1-E-115 141 1 335 200.0 2 2019-07-30 19:49:03.19011 2019-07-30 19:49:03.19011 yaretzi 2019-07-30 PV2-E-26 142 1 338 50.0 2 2019-08-01 00:12:24.069988 2019-08-01 00:12:24.069988 comida 2019-07-31 PV1-E-116 143 1 340 50.0 2 2019-08-02 02:03:58.058313 2019-08-02 02:03:58.058313 2019-08-01 PV1-E-117 144 1 341 628.0 2 2019-08-02 22:02:15.083228 2019-08-02 22:02:15.083228 sueldo Rocío 2019-08-02 PV1-E-118 145 1 341 800.0 2 2019-08-03 01:47:49.377135 2019-08-03 01:47:55.943215 2019-08-02 PV1-E-119 146 1 341 800.0 2 2019-08-03 01:48:15.278879 2019-08-03 01:48:15.278879 SUELDO ANABELLY 2019-08-02 PV1-E-120 147 1 342 700.0 2 2019-08-03 01:59:32.738801 2019-08-03 01:59:32.738801 SUELDO YARETZI $700 2019-08-02 PV2-E-27 149 1 343 50.0 2 2019-08-04 01:45:27.947045 2019-08-04 01:45:27.947045 YARETZI 2019-08-03 PV2-E-28 148 1 344 50.0 2 2019-08-04 01:07:29.827997 2019-08-04 01:07:29.827997 Comida 2019-08-03 PV1-E-121 150 1 351 50.0 2 2019-08-07 20:27:50.404087 2019-08-07 20:27:50.404087 yaretzi\r\n 2019-08-07 PV2-E-29 151 1 352 370.0 2 2019-08-08 21:18:42.985926 2019-08-08 21:18:42.985926 SUELDO ANABELLY 2019-08-08 PV1-E-122 152 2 354 850.0 2 2019-08-10 01:17:16.060451 2019-08-10 01:17:16.060451 SUELDO YARETZI 2019-08-09 PV2-E-30 153 1 355 50.0 2 2019-08-10 01:27:28.481883 2019-08-10 01:27:28.481883 COMIDA 2019-08-09 PV1-E-123 154 1 357 50.0 2 2019-08-10 21:15:30.241467 2019-08-10 21:15:30.241467 COMIDA 2019-08-10 PV1-E-124 155 1 357 749.0 2 2019-08-10 23:19:08.109199 2019-08-10 23:19:08.109199 $521 ANABELLY $228 SUELDO ROCIO 2019-08-10 PV1-E-125 156 1 365 200.0 2 2019-08-16 00:55:38.193291 2019-08-16 00:55:38.193291 yaretzi 2019-08-15 PV2-E-31 157 1 366 1000.0 2 2019-08-16 01:04:01.883727 2019-08-16 01:04:01.883727 sueldo yaretzi 2019-08-15 PV1-E-126 158 1 367 160.0 2 2019-08-17 01:08:44.668732 2019-08-17 01:08:44.668732 LABIAL VENDIDO CON TARJETA 2019-08-16 PV1-E-127 159 1 368 50.0 2 2019-08-17 01:33:27.43486 2019-08-17 01:33:27.43486 2019-08-16 PV2-E-32 162 1 369 50.0 2 2019-08-18 01:02:37.991712 2019-08-18 01:02:37.991712 yaretzi 2019-08-17 PV2-E-33 160 1 370 290.0 2 2019-08-17 21:30:51.705469 2019-08-17 21:30:51.705469 ARETES VENDIDOS CON TARJETA 2019-08-17 PV1-E-128 161 1 370 928.0 2 2019-08-17 22:57:24.324885 2019-08-17 22:57:24.324885 Sueldo Rocio 2019-08-17 PV1-E-129 163 1 370 400.0 2 2019-08-18 01:28:39.496124 2019-08-18 01:28:39.496124 sueldo rocio eran $1328 2019-08-17 PV1-E-130 164 1 373 200.0 2 2019-08-20 00:55:30.379894 2019-08-20 00:55:30.379894 2019-08-19 PV2-E-34 165 1 377 50.0 2 2019-08-23 00:48:24.562918 2019-08-23 00:48:24.562918 2 garrafones de agua 2019-08-22 PV1-E-131 167 1 380 350.0 2 2019-08-24 00:33:32.604877 2019-08-24 00:33:32.604877 DIFERENCIA DE SUELDO YARETZI 2019-08-23 PV1-E-132 166 1 379 500.0 2 2019-08-23 22:11:01.52492 2019-08-23 22:11:01.52492 YARETZI 2019-08-23 PV2-E-35 168 1 385 100.0 2 2019-08-27 22:05:56.519038 2019-08-27 22:05:56.519038 YARETZI 2019-08-27 PV2-E-36 169 1 390 200.0 2 2019-08-29 20:10:52.191308 2019-08-29 20:10:52.191308 PAGO DE CORTE DE LUZ 2019-08-29 PV2-E-37 171 1 393 1500.0 2 2019-08-30 23:32:42.678034 2019-08-30 23:32:42.678034 SAMANTHA 2019-08-30 PV1-E-134 170 1 393 620.0 2 2019-08-30 22:49:30.829006 2019-08-30 22:49:30.829006 sueldo Yaretzi $720-$100 que se adelanto 2019-08-30 PV1-E-133 185 1 430 528.0 2 2019-09-14 20:57:24.518838 2019-09-14 20:57:24.518838 sueldo Rocio 2019-09-14 PV1-E-142 172 1 395 20.0 2 2019-08-31 17:10:10.158636 2019-08-31 17:10:10.158636 debía Daniela a fondo 2019-08-31 PV1-E-135 173 1 395 1132.0 2 2019-09-01 01:15:55.634943 2019-09-01 01:16:06.523589 2019-08-31 PV1-E-136 174 1 395 1328.0 2 2019-09-01 01:16:44.206038 2019-09-01 01:16:44.206038 sueldo rocio 2019-08-31 PV1-E-137 175 1 402 100.0 2 2019-09-03 21:50:47.070696 2019-09-03 21:50:47.070696 yaretzi 2019-09-03 PV2-E-38 176 1 411 1000.0 2 2019-09-06 20:05:55.245204 2019-09-06 20:05:55.245204 ROCIO 2019-09-06 PV1-E-138 177 1 410 850.0 2 2019-09-07 01:16:38.10371 2019-09-07 01:16:38.10371 2019-09-06 PV2-E-39 178 2 409 816.0 2 2019-09-07 01:51:03.72357 2019-09-07 01:51:03.72357 Daniela $812 e Impreseiones $4 2019-09-06 PV3-E-1 179 2 416 20.0 2 2019-09-10 01:03:23.49916 2019-09-10 01:03:23.49916 RECARGA DE CEL DE SUO 2019-09-09 PV2-E-40 180 1 420 10.0 2 2019-09-11 01:12:06.172381 2019-09-11 01:12:06.172381 cooperacion a señora rara 2019-09-10 PV1-E-139 181 1 421 520.0 2 2019-09-11 23:49:16.513654 2019-09-11 23:49:16.513654 COMPRA DE DETECTORES DE HUMO $260.00 CADA UNO 2019-09-11 PV2-E-41 182 2 423 100.0 2 2019-09-12 01:53:15.771528 2019-09-12 01:53:15.771528 REFORZAMIENTO DEL SILLON $100.00 2019-09-11 PV3-E-2 183 1 425 700.0 2 2019-09-13 00:12:14.101211 2019-09-13 00:12:14.101211 adelanto rocio 2019-09-12 PV1-E-140 184 1 428 440.0 2 2019-09-13 22:26:02.393886 2019-09-13 22:26:02.393886 aretes y labial pagado con tarjeta 2019-09-13 PV1-E-141 186 1 440 500.0 2 2019-09-20 00:53:50.316157 2019-09-20 00:53:50.316157 adelanto Rocio 2019-09-19 PV1-E-143 187 1 446 738.0 2 2019-09-21 20:09:55.054305 2019-09-21 20:09:55.054305 sueldo Rocío 2019-09-21 PV1-E-144 188 1 445 80.0 2 2019-09-22 01:19:10.838058 2019-09-22 01:19:10.838058 Comida Daniela 2019-09-21 PV2-E-42 189 2 445 1500.0 2 2019-09-22 01:22:47.297035 2019-09-22 01:22:47.297035 semana Daneila 2019-09-21 PV2-E-43 190 1 461 25.0 2 2019-09-28 01:37:39.325128 2019-09-28 01:37:39.325128 AGUA 2019-09-27 PV1-E-145 191 1 462 25.0 2 2019-09-28 20:07:37.557911 2019-09-28 20:07:37.557911 AGUA 2019-09-28 PV1-E-146 193 1 462 1328.0 2 2019-09-28 23:37:38.942427 2019-09-28 23:37:38.942427 sueldo Rocio 2019-09-28 PV1-E-147 192 1 463 1200.0 2 2019-09-28 20:15:32.15432 2019-09-28 20:15:32.15432 NOMINA MARICRUZ 2019-09-28 PV3-E-3 194 1 480 1328.0 2 2019-10-05 23:10:25.157206 2019-10-05 23:10:25.157206 sueldo rocio 2019-10-05 PV1-E-148 195 1 482 1200.0 2 2019-10-06 21:06:38.849851 2019-10-06 21:06:38.849851 NOMINA MARICRUZ 2019-10-06 PV3-E-4 196 1 497 100.0 2 2019-10-12 01:19:48.855075 2019-10-12 01:19:48.855075 kiko 2019-10-11 PV1-E-149 197 1 500 1168.0 2 2019-10-13 01:16:11.550081 2019-10-13 01:16:11.550081 sueldo Rocio 2019-10-12 PV1-E-150 198 1 502 400.0 2 2019-10-15 00:50:23.225324 2019-10-15 00:50:23.225324 400 NOMINA MARICRUZ 2019-10-14 PV3-E-5 199 1 516 100.0 2 2019-10-20 01:39:46.090389 2019-10-20 01:39:46.090389 2019-10-19 PV2-E-44 200 1 519 400.0 2 2019-10-22 01:37:10.703976 2019-10-22 01:37:10.703976 MANIQUI 2019-10-21 PV1-E-151 201 1 525 35.0 2 2019-10-24 01:12:20.953854 2019-10-24 01:12:20.953854 $25 agua $10 cooperacion a señor indigente 2019-10-23 PV1-E-152 202 2 533 970.0 2 2019-10-26 20:03:22.742971 2019-10-26 20:03:22.742971 SUELDO KEYLA 2019-10-26 PV2-E-45 203 1 532 1328.0 2 2019-10-26 21:55:44.054905 2019-10-26 21:55:44.054905 sueldo rocio 2019-10-26 PV1-E-153 204 2 542 160.0 2 2019-10-31 03:10:06.785596 2019-10-31 03:10:06.785596 ENVIO $100 A GUERRERO Y 60 DE PAQUETE 2019-10-30 PV3-E-6 206 1 552 928.0 2 2019-11-02 23:05:10.161218 2019-11-02 23:05:10.161218 sueldo Rocio 2019-11-02 PV1-E-154 205 2 551 900.0 2 2019-11-02 22:57:05.632767 2019-11-02 22:57:05.632767 SUELDO KEYLA 2019-11-02 PV2-E-46 207 1 550 380.0 2 2019-11-03 22:52:09.461976 2019-11-03 22:52:09.461976 SUELDO MARICRUZ 2019-11-03 PV3-E-7 209 1 570 1328.0 2 2019-11-09 23:00:44.316752 2019-11-09 23:00:44.316752 sueldo Rocio 2019-11-09 PV1-E-155 208 2 568 700.0 2 2019-11-09 21:14:08.901277 2019-11-09 21:14:08.901277 SEMANA DE KEYLA 2019-11-09 PV2-E-47 210 2 569 40.0 2 2019-11-10 03:06:01.294589 2019-11-10 03:06:01.294589 SEMANA MARICRUZ 2019-11-09 PV3-E-8 211 2 571 80.0 2 2019-11-12 03:06:18.320085 2019-11-12 03:06:18.320085 IMPRESIONES 2019-11-11 PV3-E-9 212 2 579 50.0 2 2019-11-14 03:16:02.326903 2019-11-14 03:16:02.326903 COMPRA DE COSTURERO 2019-11-13 PV3-E-10 213 1 587 50.0 2 2019-11-16 00:53:43.314163 2019-11-16 00:53:43.314163 AGUA 2019-11-15 PV1-E-156 214 1 587 1328.0 2 2019-11-16 00:54:35.711076 2019-11-16 00:54:35.711076 SUELDO ROCIO 2019-11-15 PV1-E-157 215 1 590 900.0 2 2019-11-17 02:09:48.945901 2019-11-17 02:09:48.945901 SUELDO KEYLA 2019-11-16 PV2-E-48 216 2 588 528.0 2 2019-11-17 02:57:20.899073 2019-11-17 02:57:20.899073 SUELDO MARICRUZ 2019-11-16 PV3-E-11 217 2 588 508.0 2 2019-11-17 02:57:43.031687 2019-11-17 02:57:43.031687 PAGO DEL TELEFONO 2019-11-16 PV3-E-12 218 2 595 10.0 2 2019-11-19 03:06:13.940769 2019-11-19 03:06:13.940769 AYUDA 2019-11-18 PV3-E-13 221 2 607 530.0 2 2019-11-24 02:36:27.19239 2019-11-24 02:36:27.19239 SUELDO MARICRUZ $528, COPIAS $2 2019-11-23 PV3-E-14 220 1 608 1040.0 2 2019-11-24 01:46:36.714986 2019-11-24 01:46:36.714986 SUELDO KEYLA 2019-11-23 PV2-E-49 219 1 609 1328.0 2 2019-11-23 23:23:06.344715 2019-11-23 23:23:06.344715 2019-11-23 PV1-E-158 222 1 613 50.0 2 2019-11-25 21:24:04.46137 2019-11-25 21:24:04.46137 2 GARRAFONES DE AGUA\r\n 2019-11-25 PV1-E-159 224 1 616 1500.0 2 2019-11-27 02:46:03.072755 2019-11-27 02:46:03.072755 LUZ CFE 2019-11-26 PV1-E-160 223 2 617 541.0 2 2019-11-27 02:45:54.620758 2019-11-27 02:45:54.620758 PAGO DE CFE 2019-11-26 PV2-E-50 227 1 627 880.0 2 2019-12-01 02:36:55.29503 2019-12-01 02:36:55.29503 PAGO DE KEYLA 2019-11-30 PV2-E-51 225 1 628 20.0 2 2019-11-30 19:55:36.924302 2019-11-30 19:55:36.924302 Navidad a los de la basura 2019-11-30 PV1-E-161 228 1 628 1328.0 2 2019-12-01 02:37:53.482222 2019-12-01 02:37:53.482222 SUELDO ROCIO 2019-11-30 PV1-E-162 226 2 624 528.0 2 2019-12-01 00:56:38.236564 2019-12-01 00:56:38.236564 SUELDO MARICRUZ $528 2019-11-30 PV3-E-15 229 2 637 250.0 2 2019-12-04 01:59:48.101276 2019-12-04 01:59:48.101276 TRABAJO KIKO 2019-12-03 PV1-E-163 230 1 644 10.0 2 2019-12-06 02:52:07.730479 2019-12-06 02:52:07.730479 HILOS Y BOTONES 2019-12-05 PV1-E-164 231 1 648 77.0 2 2019-12-07 21:17:52.429601 2019-12-07 21:17:52.429601 ferreteria yaqui 2019-12-07 PV1-E-165 232 1 648 800.0 2 2019-12-08 02:48:40.6969 2019-12-08 02:48:40.6969 sueldo karla paola 2019-12-07 PV1-E-166 233 2 649 1130.0 2 2019-12-08 02:58:48.607009 2019-12-08 02:58:48.607009 PAGO SEMANA KEYLA 2019-12-07 PV2-E-52 234 2 655 813.0 2 2019-12-10 02:59:44.921598 2019-12-10 02:59:44.921598 SUELDO MARICRUZ 2019-12-09 PV3-E-16 235 2 655 602.0 2 2019-12-10 03:00:11.413074 2019-12-10 03:00:11.413074 PAGO DE LUZ 2019-12-09 PV3-E-17 236 1 658 25.0 2 2019-12-10 20:26:31.755993 2019-12-10 20:26:31.755993 GARRAFON DE AGUA\r\n 2019-12-10 PV1-E-167 239 2 670 1350.0 2 2019-12-15 02:55:13.927842 2019-12-15 02:55:13.927842 PAGO KEYLA 2019-12-14 PV2-E-53 237 1 669 25.0 2 2019-12-14 18:26:05.505244 2019-12-14 18:26:05.505244 garrafon de agua 2019-12-14 PV1-E-168 238 1 669 900.0 2 2019-12-15 01:05:49.306607 2019-12-15 01:05:49.306607 SUELDO KARLA 2019-12-14 PV1-E-169 240 1 669 228.0 2 2019-12-15 03:10:31.182231 2019-12-15 03:10:31.182231 dif de sueldo rocio 2019-12-14 PV1-E-170 241 1 671 300.0 2 2019-12-15 23:05:36.247569 2019-12-15 23:05:36.247569 sueldo Valentina 2019-12-15 PV1-E-171 242 2 673 100.0 2 2019-12-16 01:00:37.993485 2019-12-16 01:00:37.993485 COMPRA DE HOJAS OFICIO $30, COMPRA DE COMIDA $70 2019-12-15 PV3-E-18 243 1 684 1042.0 2 2019-12-20 00:34:06.938779 2019-12-20 00:34:06.938779 AGUA POTABLE (JAPAC) 2019-12-19 PV1-E-172 244 1 690 44.0 2 2019-12-21 22:20:54.02221 2019-12-21 22:20:54.02221 PLUMON PARA VIDRIO 2019-12-21 PV1-E-173 245 1 695 1261.0 2 2019-12-23 23:36:10.830381 2019-12-23 23:36:10.830381 LUZ SUO (CFE) 2019-12-23 PV1-E-174 246 1 695 512.0 2 2019-12-23 23:41:00.356796 2019-12-23 23:41:00.356796 luz bysuo (CFE) 2019-12-23 PV1-E-175 247 1 695 1128.0 2 2019-12-24 01:39:16.430304 2019-12-24 01:39:16.430304 sueldo rocio 2019-12-23 PV1-E-176 248 2 700 200.0 2 2019-12-25 02:05:45.689463 2019-12-25 02:05:45.689463 COMIDA 2019-12-24 PV3-E-19 250 2 706 425.0 2 2019-12-27 20:43:02.090849 2019-12-27 20:43:02.090849 $400 ALBERTO CAMARAS $25 GARRAFON DE AGUA 2019-12-27 PV1-E-177 249 2 705 468.0 2 2019-12-27 20:21:13.582196 2019-12-27 20:21:13.582196 DOLARES 2019-12-27 PV3-E-20 251 1 708 1328.0 2 2019-12-29 01:52:54.595424 2019-12-29 01:52:54.595424 sueldo Rocio :) 2019-12-28 PV1-E-178 252 1 708 400.0 2 2019-12-29 01:55:35.713877 2019-12-29 01:55:35.713877 valentina 2019-12-28 PV1-E-179 253 1 711 200.0 2 2019-12-29 21:44:47.139137 2019-12-29 21:44:47.139137 pago de domingo rocio 2019-12-29 PV1-E-180 254 2 714 870.0 2 2019-12-30 19:47:27.156138 2019-12-30 19:47:27.156138 ERROR AL SACAR APARTADO 2019-12-30 PV3-E-21 255 2 714 773.0 2 2019-12-31 02:54:05.05269 2019-12-31 02:54:05.05269 PAGO LUZ 2019-12-30 PV3-E-22 256 1 715 5.0 2 2019-12-31 19:44:53.567578 2019-12-31 19:44:53.567578 cooperacion a borracho que me dio miedo 2019-12-31 PV1-E-181 257 1 718 1000.0 2 2020-01-03 02:08:28.026121 2020-01-03 02:08:28.026121 2020-01-02 PV2-E-54 258 1 724 562.0 2 2020-01-04 22:43:44.601607 2020-01-04 22:43:44.601607 agua potable (japac) de suo y bySuo 2020-01-04 PV1-E-182 259 1 724 1328.0 2 2020-01-05 02:18:13.587929 2020-01-05 02:18:13.587929 sueldo rocio 2020-01-04 PV1-E-183 260 1 726 1890.0 2 2020-01-05 02:39:22.507267 2020-01-05 02:39:22.507267 SUELDO KEYLA $1150 COMISIONES $740 2020-01-04 PV2-E-55 261 2 725 50.0 2 2020-01-05 02:54:58.805135 2020-01-05 02:54:58.805135 IMPRESION DE CARTELES 2020-01-04 PV3-E-23 262 1 741 2478.0 2 2020-01-12 01:44:42.300141 2020-01-12 01:44:42.300141 SUELDO KEYLA $1150 SUELDO ROCIO $1328 2020-01-11 PV1-E-184 263 2 750 130.0 2 2020-01-16 02:46:31.872771 2020-01-16 02:46:31.872771 PAGO DE IMPRESIONES $10\r\nGASTOS $120 2020-01-15 PV3-E-24 264 1 756 120.0 2 2020-01-18 00:54:46.935729 2020-01-18 00:54:46.935729 engrasado de cortina 2020-01-17 PV1-E-185 265 1 757 205.0 2 2020-01-18 20:21:51.222569 2020-01-18 20:21:51.222569 diferencia de sueldo Rocío (Samantha me dejo $1000) 2020-01-18 PV1-E-186 266 1 757 120.0 2 2020-01-19 01:52:18.984778 2020-01-19 01:52:18.984778 diferencia de sueldo keyla (se le dio$1000 del corte del dia 17 de Enero de bysuo) 2020-01-18 PV1-E-187 267 1 760 25.0 2 2020-01-21 01:47:50.650256 2020-01-21 01:47:50.650256 agua garrafon 2020-01-20 PV1-E-188 268 1 768 1205.0 2 2020-01-24 01:51:56.089807 2020-01-24 01:51:56.089807 sueldo Rocío 2020-01-23 PV1-E-189 269 1 769 704.0 2 2020-01-25 01:59:17.766654 2020-01-25 01:59:17.766654 SUELDO KEYLA 2020-01-24 PV2-E-56 270 1 772 135.0 2 2020-01-25 20:19:58.294058 2020-01-25 20:19:58.294058 comida Samantha $ 85 papelería $40 cooperación a niño para su camión $10 2020-01-25 PV1-E-190 271 1 778 10.0 2 2020-01-27 21:51:45.895616 2020-01-27 21:51:45.895616 cartulina 2020-01-27 PV1-E-191 272 1 787 1205.0 2 2020-01-31 02:02:56.797136 2020-01-31 02:02:56.797136 SUELDO ROCIO 2020-01-30 PV1-E-192 273 1 793 1100.0 2 2020-02-02 01:46:49.740501 2020-02-02 01:46:49.740501 SUELDO KEYLA 2020-02-01 PV1-E-193 274 1 801 859.0 2 2020-02-06 02:51:21.622159 2020-02-06 02:51:21.622159 PAGO DE LUZ 2020-02-05 PV3-E-25 276 1 804 400.0 2 2020-02-07 02:45:59.800266 2020-02-07 02:45:59.800266 SILLON 2020-02-06 PV3-E-27 275 1 804 200.0 2 2020-02-07 02:42:22.047887 2020-02-07 02:42:22.047887 PAGO DE SILLONES 2020-02-06 PV3-E-26 277 1 806 25.0 2 2020-02-08 00:07:04.941153 2020-02-08 00:07:04.941153 garrafon de agua 2020-02-07 PV1-E-194 278 1 810 1205.0 2 2020-02-09 01:39:58.100267 2020-02-09 01:39:58.100267 sueldo Rocio 2020-02-08 PV1-E-195 279 1 808 1012.0 2 2020-02-09 01:53:20.4564 2020-02-09 01:53:20.4564 SUELDO KEYLA 2020-02-08 PV2-E-57 280 2 814 30.0 2 2020-02-11 03:08:17.651477 2020-02-11 03:08:17.651477 PARA ACOMPLETAR RENTA 2020-02-10 PV3-E-28 281 1 830 1100.0 2 2020-02-16 02:16:07.763375 2020-02-16 02:16:07.763375 SUELDO KEYLA 2020-02-15 PV2-E-58 282 1 833 170.0 2 2020-02-17 23:57:05.930005 2020-02-17 23:57:05.930005 $150 pizza $20 barredores de ayuntamiento 2020-02-17 PV1-E-196 283 1 \N 50.0 1 2020-02-19 02:50:50.471012 2020-02-19 02:50:50.471012 TAQUIS 2020-02-18 ADM-E-1 284 1 836 50.0 2 2020-02-19 02:54:05.865768 2020-02-19 02:54:05.865768 taquis 2020-02-18 PV1-E-197 287 1 846 950.0 2 2020-02-23 02:23:58.117587 2020-02-23 02:23:58.117587 sueldo Keyla 2020-02-22 PV1-E-200 286 1 846 200.0 2 2020-02-23 00:54:48.447538 2020-02-23 00:54:48.447538 Ivan 2020-02-22 PV1-E-199 285 1 846 1105.0 2 2020-02-23 00:08:15.851217 2020-02-23 00:08:15.851217 sueldo Rocío 2020-02-22 PV1-E-198 289 1 848 100.0 2 2020-02-25 02:41:44.768539 2020-02-25 02:41:44.768539 paqueteria ropa 2020-02-24 PV1-E-202 288 1 848 15.0 2 2020-02-25 02:39:40.87258 2020-02-25 02:39:40.87258 chocolate 2020-02-24 PV1-E-201 290 2 854 550.0 2 2020-02-27 03:00:38.92973 2020-02-27 03:00:38.92973 PAGO DE TELEFONO 2020-02-26 PV3-E-29 291 1 858 1205.0 2 2020-02-28 02:30:00.382584 2020-02-28 02:30:00.382584 sueldo Rocío 2020-02-27 PV1-E-203 292 1 859 651.0 2 2020-02-29 02:26:22.072685 2020-02-29 02:26:22.072685 601 SAM 50 PESTAÑAS PARA SESION 2020-02-28 PV1-E-204 293 2 857 320.0 2 2020-02-29 02:45:05.969606 2020-02-29 02:45:05.969606 GASTOS 2020-02-28 PV3-E-30 295 1 862 90.0 2 2020-02-29 23:17:21.005544 2020-02-29 23:17:21.005544 $65 comida Sam $25 garrafon de agua 2020-02-29 PV1-E-205 294 1 860 1200.0 2 2020-02-29 21:14:05.248116 2020-02-29 21:14:05.248116 SUELDO KEYLA $1200 2020-02-29 PV2-E-59 296 1 868 550.0 2 2020-03-03 21:24:35.956248 2020-03-03 21:24:35.956248 JAPAC SUO Y BYSUO 2020-03-03 PV1-E-206 297 2 867 400.0 2 2020-03-04 03:05:53.048208 2020-03-04 03:05:53.048208 DANIELA 2020-03-03 PV3-E-31 298 2 876 800.0 2 2020-03-07 02:59:01.814281 2020-03-07 02:59:01.814281 DANIELA SEMANA 24FEB-01MAR 2020-03-06 PV3-E-32 299 1 879 1105.0 2 2020-03-07 22:43:57.719669 2020-03-07 22:43:57.719669 SUELDO ROCIO 2020-03-07 PV1-E-207 300 1 881 1050.0 2 2020-03-08 22:12:39.466705 2020-03-08 22:12:39.466705 SUELDO KEYLA 2020-03-08 PV2-E-60 301 1 888 100.0 2 2020-03-11 22:24:40.671258 2020-03-11 22:24:40.671258 IVAN POLICIA 2020-03-11 PV1-E-208 302 1 897 1050.0 2 2020-03-15 02:20:03.460797 2020-03-15 02:20:03.460797 SE DESCUENTAN $60 QUE FALTABAN 2020-03-14 PV2-E-61 303 2 898 100.0 2 2020-03-15 02:46:59.505889 2020-03-15 02:46:59.505889 ZAPATOS DANNA, PAPEL DE BAÑO 2020-03-14 PV3-E-33 304 1 903 25.0 2 2020-03-17 19:59:22.843056 2020-03-17 19:59:22.843056 GARRAFON DE AGUA 2020-03-17 PV1-E-209 305 1 904 150.0 2 2020-03-18 02:45:30.345925 2020-03-18 02:45:30.345925 PAGO DE EMILY 2020-03-17 PV3-E-34 306 1 916 1205.0 2 2020-03-22 01:39:46.0997 2020-03-22 01:39:46.0997 sueldo rocio 2020-03-21 PV1-E-210 308 1 934 200.0 2 2020-07-02 20:03:03.111907 2020-07-02 20:03:03.111907 DIFERENCIA DE PAGO SEMANA 29 JUNIO A 4 JULIO DE ROCIO 2020-07-02 PV1-E-212 307 1 934 20.0 2 2020-07-01 17:27:52.841234 2020-07-01 17:27:52.841234 diferencia de chapa puerta suo 2020-07-01 PV1-E-211 309 1 935 900.0 2 2020-07-03 21:54:21.156146 2020-07-03 21:54:21.156146 sueldo 2020-07-03 PV1-E-213 310 1 937 3000.0 2 2020-07-04 23:51:23.613682 2020-07-04 23:51:23.613682 ANTICIPO DE VITRINA SUO CENTRO 2020-07-04 PV3-E-35 311 1 951 400.0 2 2020-07-11 22:30:56.184677 2020-07-11 22:30:56.184677 DIFERENCIA PAGO DE ROCIO 2020-07-11 PV1-E-214 313 1 959 1100.0 2 2020-07-17 23:36:26.569153 2020-07-17 23:36:26.569153 ADELANTO ROCIO 2020-07-17 PV1-E-216 312 1 959 25.0 2 2020-07-17 18:56:57.972058 2020-07-17 18:56:57.972058 GARRAFON DE AGUA 2020-07-17 PV1-E-215 314 1 960 400.0 2 2020-07-18 00:45:29.123142 2020-07-18 00:45:29.123142 APARTADO 2020-07-17 PV3-E-36 315 1 961 340.0 2 2020-07-18 23:29:14.239966 2020-07-18 23:29:14.239966 diferencia de sueldo Rocio 2020-07-18 PV1-E-217 316 1 970 1440.0 2 2020-07-24 23:59:18.871106 2020-07-24 23:59:18.871106 sueldo rocio 2020-07-24 PV1-E-218 317 1 983 740.0 2 2020-08-01 23:55:59.30513 2020-08-01 23:55:59.30513 adelanto de pago rocio 2020-08-01 PV1-E-219 318 1 985 700.0 2 2020-08-03 18:05:48.902984 2020-08-03 18:05:48.902984 RESTO DE SUELDO ROCIO 2020-08-03 PV1-E-220 319 1 987 564.0 2 2020-08-04 23:41:48.784744 2020-08-04 23:41:48.784744 AGUA (JAPAC) 2020-08-04 PV1-E-221 320 1 996 1440.0 2 2020-08-08 20:44:13.352229 2020-08-08 20:44:13.352229 SUELDO ROCIO 2020-08-08 PV1-E-222 321 1 1003 25.0 2 2020-08-14 20:18:49.935031 2020-08-14 20:18:49.935031 garrafon de agua 2020-08-14 PV1-E-223 322 1 1005 690.0 2 2020-08-15 19:35:07.293608 2020-08-15 19:35:07.293608 ETIQUETAS 2020-08-15 PV1-E-224 323 1 1009 40.0 2 2020-08-18 18:40:12.849358 2020-08-18 18:40:12.849358 CARTEL DE CLOE 2020-08-18 PV1-E-225 324 2 1025 1119.0 2 2020-08-27 01:24:39.787159 2020-08-27 01:24:39.787159 ENTREGA DE SERVICIO A DOMICILIO 2020-08-26 PV3-E-37 325 1 1027 125.0 2 2020-08-28 01:26:24.442452 2020-08-28 01:26:24.442452 COMIDA 125 2020-08-27 PV3-E-38 326 1 1030 4000.0 2 2020-08-29 23:38:09.870643 2020-08-29 23:38:09.870643 UTILIDADES ROCÍO 2020-08-29 PV1-E-226 327 1 1037 50.0 2 2020-09-03 00:56:29.080801 2020-09-03 00:56:29.080801 oxxo refresco y vasos 2020-09-02 PV1-E-227 328 2 1041 400.0 2 2020-09-04 00:51:41.096985 2020-09-04 00:51:41.096985 Apartado con tarjeta 2020-09-03 PV3-E-39 330 1 1042 633.0 2 2020-09-04 23:49:20.961113 2020-09-04 23:49:20.961113 $518 AGUA (JAPAC) $15 MUDITO COOPERACION $100 IVAN POLICIA 2020-09-04 PV1-E-229 329 1 1042 30.0 2 2020-09-04 18:04:04.061034 2020-09-04 18:04:04.061034 estacionamiento Rocío 2020-09-04 PV1-E-228 331 2 1046 1000.0 2 2020-09-08 01:00:35.827261 2020-09-08 01:00:35.827261 DANIELA 2020-09-07 PV3-E-40 332 1 1056 15.0 2 2020-09-12 23:25:14.347449 2020-09-12 23:25:14.347449 barrenderos 2020-09-12 PV1-E-230 333 1 1065 2135.0 2 2020-09-17 23:07:33.42858 2020-09-17 23:07:33.42858 VACACIONES ROCÍO 2020-09-17 PV1-E-231 334 2 1070 100.0 2 2020-09-20 00:30:16.936514 2020-09-20 00:30:16.936514 COMIDA 2020-09-19 PV3-E-41 335 1 1074 20.0 2 2020-09-22 21:28:49.567546 2020-09-22 21:28:49.567546 estacionamiento Samantha 2020-09-22 PV1-E-232 336 2 1073 150.0 2 2020-09-23 01:00:36.211876 2020-09-23 01:00:36.211876 130 PAGO DE IMPUESTOS\r\n20 COMPRA DE PAPEL DE BAÑO 2020-09-22 PV3-E-42 337 1 1076 650.0 2 2020-09-23 22:20:39.228765 2020-09-23 22:20:39.228765 MANTENIMIENTO Y GAS DE AIRE ACONDICIONADO BOUTIQUE 2020-09-23 PV1-E-233 338 2 1087 85.0 2 2020-09-29 01:00:31.690055 2020-09-29 01:00:31.690055 COMPRA DE BATERIAS 2020-09-28 PV3-E-43 339 1 1094 272.0 2 2020-10-02 19:52:10.027567 2020-10-02 19:52:10.027567 AGUA JAPAC 2020-10-02 PV1-E-234 340 1 1096 180.0 2 2020-10-03 23:23:28.344623 2020-10-03 23:23:28.344623 6 HORAS EXTRAS ROCIO 2020-10-03 PV1-E-235 341 1 1100 25.0 2 2020-10-06 00:51:24.962095 2020-10-06 00:51:24.962095 garrafon de agua 2020-10-05 PV1-E-236 342 1 1109 280.0 2 2020-10-10 23:31:11.52649 2020-10-10 23:31:11.52649 $180 horas extras rocio $100 policia ivan 2020-10-10 PV1-E-237 343 1 1118 180.0 2 2020-10-16 19:37:43.446669 2020-10-16 19:37:43.446669 6 horas extras Rocio 2020-10-16 PV1-E-238 344 1 1131 180.0 2 2020-10-24 00:55:58.241424 2020-10-24 00:55:58.241424 6 HORAS EXTRAS ROCIO 2020-10-23 PV1-E-239 345 2 1133 400.0 2 2020-10-25 01:37:07.968026 2020-10-25 01:37:07.968026 SUELDO DE NAYELLY 2020-10-24 PV3-E-44 347 1 1144 180.0 2 2020-10-31 00:45:39.427788 2020-10-31 00:45:39.427788 6 HORAS EXTRA ROCIO 2020-10-30 PV1-E-241 346 1 1144 1510.0 2 2020-10-31 00:45:14.168314 2020-10-31 00:45:14.168314 electrico 2020-10-30 PV1-E-240 349 2 1146 800.0 2 2020-11-01 02:05:49.002221 2020-11-01 02:05:49.002221 PAGO SEMANA NAYELI 2020-10-31 PV3-E-45 348 1 1147 170.0 2 2020-11-01 01:57:29.121624 2020-11-01 01:57:29.121624 comida 2020-10-31 PV1-E-242 350 1 1155 288.0 2 2020-11-05 22:10:49.69902 2020-11-05 22:10:49.69902 agua japac $273 comisión oxxo $15 = $288 2020-11-05 PV1-E-243 351 1 1158 180.0 2 2020-11-06 22:31:01.196631 2020-11-06 22:31:01.196631 6 HORAS EXTRAS ROCIO 2020-11-06 PV1-E-244 352 1 1160 2046.0 2 2020-11-07 23:53:30.615312 2020-11-07 23:53:30.615312 $2008 LUZ, $15 COMISION OXXO, $23 DIFERENCIA DIDI = $2046 2020-11-07 PV1-E-245 353 1 1168 500.0 2 2020-11-13 01:53:42.003202 2020-11-13 01:53:42.003202 ETIQUETAS ROPA SUO 2020-11-12 PV1-E-246 354 1 1172 300.0 2 2020-11-15 01:24:16.977548 2020-11-15 01:24:16.977548 10 HORAS EXTRAS ROCIO 2020-11-14 PV1-E-247 355 1 1184 180.0 2 2020-11-21 01:43:03.107987 2020-11-21 01:43:03.107987 mariposa Danna♥ 2020-11-20 PV1-E-248 357 1 1186 330.0 2 2020-11-22 00:57:13.020841 2020-11-22 00:57:13.020841 11 HORAS EXTRAS ROCIO 2020-11-21 PV1-E-249 356 2 1185 1300.0 2 2020-11-21 21:25:34.318959 2020-11-21 21:25:34.318959 SUELDO NAYELLI 2020-11-21 PV3-E-46 358 1 1187 250.0 2 2020-11-22 22:46:41.409792 2020-11-22 22:46:41.409792 COMISIONES DE LA SEMANA 2020-11-22 PV3-E-47 359 1 1189 2197.0 2 2020-11-24 01:52:37.991043 2020-11-24 01:52:37.991043 LUZ (CFE) $2182 MAS COMISION DE OXXO 2020-11-23 PV1-E-250 360 1 1199 20.0 2 2020-11-29 01:25:05.107887 2020-11-29 01:25:05.107887 NAVIDAD DE LOS DE LA BASURA 2020-11-28 PV1-E-251 362 1 1213 500.0 2 2020-12-06 02:12:13.536675 2020-12-06 02:12:13.536675 PAGO LUCES 2020-12-05 PV3-E-49 361 1 1213 1000.0 2 2020-12-06 02:11:20.373451 2020-12-06 02:11:20.373451 PAGO NAYELI 2020-12-05 PV3-E-48 363 1 1212 1200.0 2 2020-12-06 02:28:16.53083 2020-12-06 02:28:16.53083 sueldo Montse y 10 horas extras rocio\r\n 2020-12-05 PV1-E-252 364 1 1216 10.0 2 2020-12-07 22:02:31.953432 2020-12-07 22:02:31.953432 navidad barrenderos 2020-12-07 PV1-E-253 365 1 1217 16.0 2 2020-12-09 02:34:17.708404 2020-12-09 02:34:17.708404 PAGO DE COPIAS 2020-12-08 PV3-E-50 366 1 1219 30.0 2 2020-12-10 01:54:35.555466 2020-12-10 01:54:35.555466 PAGO DE COPIAS 2020-12-09 PV3-E-51 367 1 1223 307.0 2 2020-12-11 23:19:25.684185 2020-12-11 23:19:25.684185 $292 AGUA JAPAC $15 COMISION OXXO 2020-12-11 PV1-E-254 368 1 1225 21.0 2 2020-12-13 01:32:30.268879 2020-12-13 01:32:30.268879 20 DE TOALLAS 1 DE AGUJA 2020-12-12 PV1-E-255 369 1 1226 1750.0 2 2020-12-13 02:42:53.671096 2020-12-13 02:42:53.671096 SUELDO NAYELI 2020-12-12 PV3-E-52 370 1 1229 100.0 2 2020-12-15 02:29:55.099841 2020-12-15 02:29:55.099841 señores silla de ruedas 2020-12-14 PV1-E-256 371 1 1238 25.0 2 2020-12-18 22:11:46.320592 2020-12-18 22:11:46.320592 agua garrafon 2020-12-18 PV1-E-257 373 1 1242 390.0 2 2020-12-20 22:36:30.533822 2020-12-20 22:36:30.533822 14 HORAS EXTRAS ROCIO MENOS 1 DE DESCUENTO=13 2020-12-20 PV1-E-259 372 1 1242 1300.0 2 2020-12-20 19:49:47.453169 2020-12-20 19:49:47.453169 SUELDO MOTSE 2020-12-20 PV1-E-258 374 1 1249 1000.0 2 2020-12-24 23:03:16.419459 2020-12-24 23:03:16.419459 AGUINALDO MONTSE 2020-12-24 PV1-E-260 375 1 1250 710.0 2 2020-12-25 02:45:25.560213 2020-12-25 02:45:25.560213 NAYELI 2020-12-24 PV3-E-53 376 1 1251 1050.0 2 2020-12-27 02:48:20.273858 2020-12-27 02:48:20.273858 SUELDO NAYELI 2020-12-26 PV3-E-54 377 2 1260 109.0 2 2020-12-31 23:24:02.610777 2020-12-31 23:24:02.610777 comida monse 2020-12-31 PV1-E-261 378 1 1264 1200.0 2 2021-01-03 01:50:44.044153 2021-01-03 01:50:44.044153 SUELDO NAYELI 2021-01-02 PV3-E-55 379 2 1270 380.0 2 2021-01-07 01:47:29.772371 2021-01-07 01:47:29.772371 LONAS DE PUBLICIDAD DESCUENTOS 2021-01-06 PV1-E-262 381 2 1273 800.0 2 2021-01-08 01:45:49.105766 2021-01-08 01:45:49.105766 PAGA MONTSE 2021-01-07 PV3-E-56 380 1 1272 296.0 2 2021-01-07 23:20:40.375532 2021-01-07 23:20:40.375532 agua japac $281 mas $15 de comision oxxo=$296 2021-01-07 PV1-E-263 382 1 1277 100.0 2 2021-01-10 01:51:28.301806 2021-01-10 01:51:28.301806 SUELDO NAYELI 2021-01-09 PV3-E-57 383 1 1282 200.0 2 2021-01-12 23:40:53.209743 2021-01-12 23:40:53.209743 LUCES 2021-01-12 PV3-E-58 384 1 1290 180.0 2 2021-01-17 00:29:21.607295 2021-01-17 00:29:21.607295 horas extras rocio 2021-01-16 PV1-E-264 385 1 1289 1050.0 2 2021-01-17 01:46:08.928987 2021-01-17 01:46:08.928987 SUELDO NAYELI 2021-01-16 PV3-E-59 386 1 1292 20.0 2 2021-01-19 01:38:33.778483 2021-01-19 01:38:33.778483 barrenderos 2021-01-18 PV1-E-265 387 1 1303 60.0 2 2021-01-24 01:44:22.948992 2021-01-24 01:44:22.948992 dos horas extras rocio 2021-01-23 PV1-E-266 388 1 1304 950.0 2 2021-01-24 01:59:22.555017 2021-01-24 01:59:22.555017 SUELDO NAYELI 2021-01-23 PV3-E-60 389 1 1312 100.0 2 2021-01-29 01:34:54.703256 2021-01-29 01:34:54.703256 SIEM CANACO 2021-01-28 PV1-E-267 390 1 1314 180.0 2 2021-01-29 22:32:49.054127 2021-01-29 22:32:49.054127 6 horas extras Rocío 2021-01-29 PV1-E-268 391 1 1316 1300.0 2 2021-01-31 01:31:47.676704 2021-01-31 01:31:47.676704 SUELDO NAYELI 2021-01-30 PV3-E-61 392 1 1319 200.0 2 2021-02-02 23:43:52.01383 2021-02-02 23:43:52.01383 LUCES 2021-02-02 PV3-E-62 393 1 1321 297.0 2 2021-02-04 00:46:36.059897 2021-02-04 00:46:36.059897 agua japac $282 $15 comision oxxo 2021-02-03 PV1-E-269 394 1 1322 100.0 2 2021-02-04 01:51:05.813924 2021-02-04 01:51:05.813924 NAYELI 2021-02-03 PV3-E-63 395 1 1323 200.0 2 2021-02-05 01:49:29.399226 2021-02-05 01:49:29.399226 paqueteria 2021-02-04 PV1-E-270 396 1 1325 120.0 2 2021-02-07 01:52:48.377904 2021-02-07 01:52:48.377904 4 HORAS EXTRAS 2021-02-06 PV1-E-271 397 1 1331 1000.0 2 2021-02-14 02:09:55.273937 2021-02-14 02:09:55.273937 SUELDO NAYELI 2021-02-13 PV3-E-64 \. -- -- Name: expenses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.expenses_id_seq', 397, true); -- -- Data for Name: expensesconcepts; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.expensesconcepts (id, name, description, allpoints, status, created_at, updated_at, expense_from_purchase) FROM stdin; 1 Pago a compra Concepto para realizar el pago de una compra t 1 2019-01-28 18:10:12.687982 2019-01-28 18:10:12.687982 1 2 RENTA t 1 2019-02-02 01:50:12.79413 2019-02-02 01:50:12.79413 0 \. -- -- Name: expensesconcepts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.expensesconcepts_id_seq', 2, true); -- -- Data for Name: expensesconcepts_pointsales; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.expensesconcepts_pointsales (expensesconcept_id, pointsale_id) FROM stdin; \. -- -- Data for Name: inventories; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.inventories (id, pointsale_id, user_id, inventory_date, notes, created_at, updated_at) FROM stdin; \. -- -- Name: inventories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.inventories_id_seq', 1, false); -- -- Data for Name: inventories_moves; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.inventories_moves (id, inventory_id, product_id, purchase_id, sale_id, quantity, move_type, created_at, updated_at, reason, transfer_id) FROM stdin; 1 \N 102 \N 1 1.0 1 2019-02-04 09:17:54.656142 2019-02-04 09:17:54.656142 0 \N 2 \N 70 \N 2 1.0 1 2019-02-04 09:18:59.716689 2019-02-04 09:18:59.716689 0 \N 3 \N 60 \N 3 1.0 1 2019-02-05 21:45:38.404433 2019-02-05 21:45:38.404433 0 \N 4 \N 199 \N 3 1.0 1 2019-02-05 21:45:38.441193 2019-02-05 21:45:38.441193 0 \N 5 \N 183 \N 4 1.0 1 2019-02-05 22:11:05.782021 2019-02-05 22:11:05.782021 0 \N 6 \N 135 \N 5 1.0 1 2019-02-05 22:13:42.173762 2019-02-05 22:13:42.173762 0 \N 7 \N 177 \N 5 1.0 1 2019-02-05 22:13:42.211017 2019-02-05 22:13:42.211017 0 \N 8 \N 265 \N 6 1.0 1 2019-02-05 22:15:03.019511 2019-02-05 22:15:03.019511 0 \N 9 \N 145 \N 7 1.0 1 2019-02-05 22:16:42.229533 2019-02-05 22:16:42.229533 0 \N 10 \N 183 \N 7 1.0 1 2019-02-05 22:16:42.265692 2019-02-05 22:16:42.265692 0 \N 11 \N 5 \N 7 1.0 1 2019-02-05 22:16:42.299876 2019-02-05 22:16:42.299876 0 \N 12 \N 139 \N 8 1.0 1 2019-02-05 22:21:49.926048 2019-02-05 22:21:49.926048 0 \N 13 \N 135 \N 9 1.0 1 2019-02-05 22:26:00.885747 2019-02-05 22:26:00.885747 0 \N 14 \N 179 \N 9 1.0 1 2019-02-05 22:26:00.921054 2019-02-05 22:26:00.921054 0 \N 15 \N 140 \N 9 1.0 1 2019-02-05 22:26:00.957701 2019-02-05 22:26:00.957701 0 \N 16 \N 200 \N 9 1.0 1 2019-02-05 22:26:00.993578 2019-02-05 22:26:00.993578 0 \N 17 \N 145 \N 10 1.0 1 2019-02-05 22:30:22.569543 2019-02-05 22:30:22.569543 0 \N 18 \N 143 \N 10 1.0 1 2019-02-05 22:30:22.600756 2019-02-05 22:30:22.600756 0 \N 19 \N 137 \N 11 1.0 1 2019-02-05 22:31:47.533203 2019-02-05 22:31:47.533203 0 \N 20 \N 137 \N 11 1.0 0 2019-02-05 22:32:03.287441 2019-02-05 22:32:03.287441 3 \N 21 \N 137 \N 12 1.0 1 2019-02-05 22:32:25.40245 2019-02-05 22:32:25.40245 0 \N 22 \N 153 \N 13 1.0 1 2019-02-05 22:35:30.575678 2019-02-05 22:35:30.575678 0 \N 23 \N 159 \N 13 1.0 1 2019-02-05 22:35:30.611486 2019-02-05 22:35:30.611486 0 \N 24 \N 6 \N 14 1.0 1 2019-02-05 22:38:21.448432 2019-02-05 22:38:21.448432 0 \N 25 \N 145 \N 14 1.0 1 2019-02-05 22:38:21.482326 2019-02-05 22:38:21.482326 0 \N 26 \N 199 \N 14 1.0 1 2019-02-05 22:38:21.517933 2019-02-05 22:38:21.517933 0 \N 27 \N 133 \N 14 1.0 1 2019-02-05 22:38:21.549806 2019-02-05 22:38:21.549806 0 \N 28 \N 182 \N 15 1.0 1 2019-02-05 22:39:39.12782 2019-02-05 22:39:39.12782 0 \N 29 \N 188 \N 16 1.0 1 2019-02-05 22:41:00.133727 2019-02-05 22:41:00.133727 0 \N 30 \N 178 \N 16 1.0 1 2019-02-05 22:41:00.170739 2019-02-05 22:41:00.170739 0 \N 31 \N 140 \N 16 1.0 1 2019-02-05 22:41:00.208165 2019-02-05 22:41:00.208165 0 \N 32 \N 78 \N 16 1.0 1 2019-02-05 22:41:00.245439 2019-02-05 22:41:00.245439 0 \N 33 \N 141 \N 17 1.0 1 2019-02-05 22:44:53.183911 2019-02-05 22:44:53.183911 0 \N 34 \N 200 \N 17 1.0 1 2019-02-05 22:44:53.220765 2019-02-05 22:44:53.220765 0 \N 35 \N 178 \N 17 1.0 1 2019-02-05 22:44:53.257367 2019-02-05 22:44:53.257367 0 \N 36 \N 184 \N 17 1.0 1 2019-02-05 22:44:53.291472 2019-02-05 22:44:53.291472 0 \N 37 \N 141 \N 17 1.0 0 2019-02-05 22:46:02.32761 2019-02-05 22:46:02.32761 3 \N 38 \N 200 \N 17 1.0 0 2019-02-05 22:46:02.360654 2019-02-05 22:46:02.360654 3 \N 39 \N 178 \N 17 1.0 0 2019-02-05 22:46:02.392626 2019-02-05 22:46:02.392626 3 \N 40 \N 184 \N 17 1.0 0 2019-02-05 22:46:02.425561 2019-02-05 22:46:02.425561 3 \N 41 \N 141 \N 18 1.0 1 2019-02-05 22:46:37.547117 2019-02-05 22:46:37.547117 0 \N 42 \N 200 \N 18 1.0 1 2019-02-05 22:46:37.583042 2019-02-05 22:46:37.583042 0 \N 43 \N 178 \N 18 1.0 1 2019-02-05 22:46:37.62115 2019-02-05 22:46:37.62115 0 \N 44 \N 184 \N 18 1.0 1 2019-02-05 22:46:37.662141 2019-02-05 22:46:37.662141 0 \N 45 \N 199 \N 19 1.0 1 2019-02-06 00:39:01.941449 2019-02-06 00:39:01.941449 0 \N 46 \N 16 \N 19 1.0 1 2019-02-06 00:39:01.969797 2019-02-06 00:39:01.969797 0 \N 47 \N 329 \N 20 1.0 1 2019-02-06 00:40:26.84628 2019-02-06 00:40:26.84628 0 \N 48 \N 330 \N 21 1.0 1 2019-02-06 01:28:26.957839 2019-02-06 01:28:26.957839 0 \N 49 \N 323 \N 22 1.0 1 2019-02-06 01:30:42.301226 2019-02-06 01:30:42.301226 0 \N 50 \N 329 \N 23 1.0 1 2019-02-06 01:32:38.912747 2019-02-06 01:32:38.912747 0 \N 51 \N 329 \N 24 1.0 1 2019-02-06 01:38:42.926032 2019-02-06 01:38:42.926032 0 \N 52 \N 418 \N 25 1.0 1 2019-02-06 01:40:06.558227 2019-02-06 01:40:06.558227 0 \N 53 \N 332 \N 26 1.0 1 2019-02-06 01:40:53.877635 2019-02-06 01:40:53.877635 0 \N 54 \N 413 \N 27 1.0 1 2019-02-06 01:41:53.618389 2019-02-06 01:41:53.618389 0 \N 55 \N 411 \N 28 1.0 1 2019-02-06 01:46:46.036097 2019-02-06 01:46:46.036097 0 \N 56 \N 303 \N 29 1.0 1 2019-02-06 01:47:26.602167 2019-02-06 01:47:26.602167 0 \N 57 \N 418 \N 30 1.0 1 2019-02-06 01:48:03.642712 2019-02-06 01:48:03.642712 0 \N 58 \N 326 \N 31 1.0 1 2019-02-06 02:29:54.341245 2019-02-06 02:29:54.341245 0 \N 59 \N 80 \N 32 1.0 1 2019-02-06 17:22:34.482967 2019-02-06 17:22:34.482967 0 \N 60 \N 270 \N 33 1.0 1 2019-02-06 17:27:51.894127 2019-02-06 17:27:51.894127 0 \N 61 \N 171 \N 34 1.0 1 2019-02-06 20:10:18.293269 2019-02-06 20:10:18.293269 0 \N 62 \N 422 \N 35 1.0 1 2019-02-06 20:17:18.28613 2019-02-06 20:17:18.28613 0 \N 63 \N 372 \N 36 1.0 1 2019-02-06 20:20:16.866285 2019-02-06 20:20:16.866285 0 \N 64 \N 282 \N 37 1.0 1 2019-02-06 21:49:55.830621 2019-02-06 21:49:55.830621 0 \N 65 \N 134 \N 38 1.0 1 2019-02-06 23:42:24.110984 2019-02-06 23:42:24.110984 0 \N 66 \N 145 \N 39 1.0 1 2019-02-07 00:23:10.557278 2019-02-07 00:23:10.557278 0 \N 67 \N 135 \N 39 1.0 1 2019-02-07 00:23:10.596055 2019-02-07 00:23:10.596055 0 \N 68 \N 152 \N 39 1.0 1 2019-02-07 00:23:10.634908 2019-02-07 00:23:10.634908 0 \N 69 \N 154 \N 39 1.0 1 2019-02-07 00:23:10.67414 2019-02-07 00:23:10.67414 0 \N 70 \N 179 \N 40 1.0 1 2019-02-07 00:35:27.512534 2019-02-07 00:35:27.512534 0 \N 71 \N 421 \N 41 1.0 1 2019-02-07 00:41:45.306166 2019-02-07 00:41:45.306166 0 \N 72 \N 80 \N 42 1.0 1 2019-02-07 00:46:04.102189 2019-02-07 00:46:04.102189 0 \N 73 \N 321 \N 43 1.0 1 2019-02-07 00:49:17.343914 2019-02-07 00:49:17.343914 0 \N 74 \N 445 1 \N 3.0 0 2019-02-07 01:31:12.281951 2019-02-07 01:31:12.281951 1 \N 75 \N 446 2 \N 2.0 0 2019-02-07 01:39:35.4629 2019-02-07 01:39:35.4629 1 \N 76 \N 447 2 \N 1.0 0 2019-02-07 01:39:35.482262 2019-02-07 01:39:35.482262 1 \N 77 \N 6 \N \N 8.0 0 2019-02-07 02:41:34.210408 2019-02-07 02:41:34.210408 7 1 78 \N 449 3 \N 2.0 0 2019-02-08 18:11:47.703156 2019-02-08 18:11:47.703156 1 \N 79 \N 450 4 \N 1.0 0 2019-02-08 18:13:05.070043 2019-02-08 18:13:05.070043 1 \N 80 \N 451 5 \N 1.0 0 2019-02-08 18:36:32.553224 2019-02-08 18:36:32.553224 1 \N 81 \N 452 6 \N 1.0 0 2019-02-08 18:37:44.278058 2019-02-08 18:37:44.278058 1 \N 82 \N 453 7 \N 2.0 0 2019-02-08 18:38:51.940121 2019-02-08 18:38:51.940121 1 \N 83 \N 454 8 \N 1.0 0 2019-02-08 18:40:25.673867 2019-02-08 18:40:25.673867 1 \N 84 \N 455 9 \N 2.0 0 2019-02-08 18:49:44.422829 2019-02-08 18:49:44.422829 1 \N 85 \N 456 10 \N 2.0 0 2019-02-08 18:50:36.415465 2019-02-08 18:50:36.415465 1 \N 86 \N 457 11 \N 2.0 0 2019-02-08 18:51:39.076295 2019-02-08 18:51:39.076295 1 \N 87 \N 458 12 \N 2.0 0 2019-02-08 18:52:43.710871 2019-02-08 18:52:43.710871 1 \N 88 \N 459 13 \N 1.0 0 2019-02-08 18:53:51.726588 2019-02-08 18:53:51.726588 1 \N 89 \N 460 14 \N 1.0 0 2019-02-08 18:54:48.483804 2019-02-08 18:54:48.483804 1 \N 90 \N 461 15 \N 1.0 0 2019-02-08 18:55:49.865954 2019-02-08 18:55:49.865954 1 \N 91 \N 332 \N 44 1.0 1 2019-02-08 20:06:56.398604 2019-02-08 20:06:56.398604 0 \N 92 \N 270 \N 45 1.0 1 2019-02-08 20:09:49.715696 2019-02-08 20:09:49.715696 0 \N 93 \N 248 \N 46 1.0 1 2019-02-08 23:13:31.595133 2019-02-08 23:13:31.595133 0 \N 94 \N 140 \N 47 1.0 1 2019-02-09 01:26:42.122436 2019-02-09 01:26:42.122436 0 \N 95 \N 140 \N 47 1.0 0 2019-02-09 01:27:43.150261 2019-02-09 01:27:43.150261 3 \N 96 \N 140 \N 48 1.0 1 2019-02-09 01:28:20.577017 2019-02-09 01:28:20.577017 0 \N 97 \N 159 \N 48 1.0 1 2019-02-09 01:28:20.614471 2019-02-09 01:28:20.614471 0 \N 98 \N 297 \N 49 1.0 1 2019-02-09 02:12:58.06904 2019-02-09 02:12:58.06904 0 \N 99 \N 248 \N 50 1.0 1 2019-02-09 02:39:21.94287 2019-02-09 02:39:21.94287 0 \N 100 \N 325 \N 51 1.0 1 2019-02-09 17:33:44.065816 2019-02-09 17:33:44.065816 0 \N 101 \N 199 \N 52 1.0 1 2019-02-09 19:28:40.78537 2019-02-09 19:28:40.78537 0 \N 102 \N 327 \N 53 1.0 1 2019-02-09 20:16:30.943762 2019-02-09 20:16:30.943762 0 \N 103 \N 406 \N 53 1.0 1 2019-02-09 20:16:30.984434 2019-02-09 20:16:30.984434 0 \N 104 \N 236 \N 54 1.0 1 2019-02-09 21:19:03.264389 2019-02-09 21:19:03.264389 0 \N 105 \N 143 \N 54 1.0 1 2019-02-09 21:19:03.300164 2019-02-09 21:19:03.300164 0 \N 106 \N 313 \N 55 1.0 1 2019-02-09 21:25:30.471211 2019-02-09 21:25:30.471211 0 \N 107 \N 82 \N 56 1.0 1 2019-02-09 21:27:38.274198 2019-02-09 21:27:38.274198 0 \N 108 \N 326 \N 57 1.0 1 2019-02-09 21:31:15.571656 2019-02-09 21:31:15.571656 0 \N 109 \N 463 16 \N 2.0 0 2019-02-11 17:35:51.451066 2019-02-11 17:35:51.451066 1 \N 110 \N 464 17 \N 1.0 0 2019-02-11 17:38:31.577835 2019-02-11 17:38:31.577835 1 \N 111 \N 465 18 \N 1.0 0 2019-02-11 18:21:22.610786 2019-02-11 18:21:22.610786 1 \N 112 \N 466 19 \N 1.0 0 2019-02-11 18:23:33.491162 2019-02-11 18:23:33.491162 1 \N 113 \N 467 20 \N 2.0 0 2019-02-11 18:36:33.432817 2019-02-11 18:36:33.432817 1 \N 114 \N 468 21 \N 2.0 0 2019-02-11 18:48:39.160564 2019-02-11 18:48:39.160564 1 \N 115 \N 249 \N 58 1.0 1 2019-02-11 18:51:57.33586 2019-02-11 18:51:57.33586 0 \N 116 \N 469 22 \N 3.0 0 2019-02-11 19:00:06.189793 2019-02-11 19:00:06.189793 1 \N 117 \N 470 23 \N 2.0 0 2019-02-11 19:01:50.274864 2019-02-11 19:01:50.274864 1 \N 118 \N 157 \N 59 1.0 1 2019-02-11 19:36:54.300314 2019-02-11 19:36:54.300314 0 \N 119 \N 412 \N 60 1.0 1 2019-02-11 19:52:26.253946 2019-02-11 19:52:26.253946 0 \N 120 \N 471 24 \N 1.0 0 2019-02-11 20:42:37.76337 2019-02-11 20:42:37.76337 1 \N 121 \N 472 25 \N 1.0 0 2019-02-11 20:44:45.573346 2019-02-11 20:44:45.573346 1 \N 122 \N 472 25 \N 1.0 1 2019-02-11 20:49:26.777766 2019-02-11 20:49:26.777766 4 \N 123 \N 473 26 \N 1.0 0 2019-02-11 20:52:11.357214 2019-02-11 20:52:11.357214 1 \N 124 \N 411 \N 61 1.0 1 2019-02-11 21:14:18.119044 2019-02-11 21:14:18.119044 0 \N 125 \N 332 \N 61 1.0 1 2019-02-11 21:14:18.156673 2019-02-11 21:14:18.156673 0 \N 126 \N 452 \N 62 1.0 1 2019-02-11 22:12:53.67391 2019-02-11 22:12:53.67391 0 \N 127 \N 422 \N 63 1.0 1 2019-02-12 00:20:20.810216 2019-02-12 00:20:20.810216 0 \N 128 \N 17 27 \N 6.0 0 2019-02-12 00:31:33.379597 2019-02-12 00:31:33.379597 1 \N 129 \N 199 \N 64 1.0 1 2019-02-12 00:32:53.413623 2019-02-12 00:32:53.413623 0 \N 130 \N 325 \N 65 1.0 1 2019-02-12 01:32:52.206337 2019-02-12 01:32:52.206337 0 \N 131 \N 317 \N 65 1.0 1 2019-02-12 01:32:52.260568 2019-02-12 01:32:52.260568 0 \N 132 \N 435 \N 66 1.0 1 2019-02-12 01:41:08.12961 2019-02-12 01:41:08.12961 0 \N 133 \N 475 28 \N 6.0 0 2019-02-12 01:52:53.357257 2019-02-12 01:52:53.357257 1 \N 134 \N 257 \N \N 6.0 0 2019-02-12 17:29:56.600144 2019-02-12 17:29:56.600144 7 4 135 \N 475 \N \N 6.0 0 2019-02-12 17:36:18.892774 2019-02-12 17:36:18.892774 7 3 136 \N 254 \N \N 1.0 0 2019-02-12 17:37:09.312786 2019-02-12 17:37:09.312786 7 2 137 \N 13 \N \N 1.0 0 2019-02-12 17:37:09.354586 2019-02-12 17:37:09.354586 7 2 138 \N 156 \N \N 1.0 0 2019-02-12 17:37:09.395527 2019-02-12 17:37:09.395527 7 2 139 \N 19 \N \N 1.0 0 2019-02-12 17:37:09.440373 2019-02-12 17:37:09.440373 7 2 140 \N 254 \N \N 5.0 0 2019-02-12 17:48:54.829961 2019-02-12 17:48:54.829961 7 5 141 \N 13 \N \N 5.0 0 2019-02-12 17:48:54.863308 2019-02-12 17:48:54.863308 7 5 142 \N 156 \N \N 5.0 0 2019-02-12 17:48:54.902051 2019-02-12 17:48:54.902051 7 5 143 \N 19 \N \N 5.0 0 2019-02-12 17:48:54.931746 2019-02-12 17:48:54.931746 7 5 144 \N 142 \N \N 6.0 0 2019-02-12 19:07:41.750971 2019-02-12 19:07:41.750971 7 6 145 \N 144 \N \N 6.0 0 2019-02-12 19:07:41.785498 2019-02-12 19:07:41.785498 7 6 146 \N 138 \N \N 6.0 0 2019-02-12 19:07:41.820427 2019-02-12 19:07:41.820427 7 6 147 \N 476 29 \N 80.0 0 2019-02-12 19:36:39.133167 2019-02-12 19:36:39.133167 1 \N 148 \N 476 \N \N 21.0 0 2019-02-12 20:26:05.653299 2019-02-12 20:26:05.653299 7 7 149 \N 450 \N 67 1.0 1 2019-02-12 21:02:22.16958 2019-02-12 21:02:22.16958 0 \N 150 \N 88 \N 68 1.0 1 2019-02-12 23:26:35.194802 2019-02-12 23:26:35.194802 0 \N 151 \N 477 30 \N 7.0 0 2019-02-12 23:55:10.975648 2019-02-12 23:55:10.975648 1 \N 152 \N 477 \N 69 1.0 1 2019-02-12 23:56:24.746684 2019-02-12 23:56:24.746684 0 \N 153 \N 477 \N 69 1.0 0 2019-02-12 23:56:35.612706 2019-02-12 23:56:35.612706 3 \N 154 \N 477 \N 70 1.0 1 2019-02-12 23:57:00.957261 2019-02-12 23:57:00.957261 0 \N 155 \N 151 \N 71 1.0 1 2019-02-13 00:35:48.767942 2019-02-13 00:35:48.767942 0 \N 156 \N 406 \N 72 1.0 1 2019-02-13 19:54:22.530309 2019-02-13 19:54:22.530309 0 \N 157 \N 326 \N 73 1.0 1 2019-02-13 19:59:15.831206 2019-02-13 19:59:15.831206 0 \N 158 \N 406 \N 74 1.0 1 2019-02-13 21:41:10.409503 2019-02-13 21:41:10.409503 0 \N 159 \N 200 \N 75 1.0 1 2019-02-13 22:55:51.568236 2019-02-13 22:55:51.568236 0 \N 160 \N 479 31 \N 10.0 0 2019-02-13 23:37:09.410784 2019-02-13 23:37:09.410784 1 \N 161 \N 479 \N 76 1.0 1 2019-02-13 23:38:20.858102 2019-02-13 23:38:20.858102 0 \N 162 \N 480 32 \N 2.0 0 2019-02-13 23:46:36.507249 2019-02-13 23:46:36.507249 1 \N 163 \N 480 \N 77 1.0 1 2019-02-13 23:49:36.032038 2019-02-13 23:49:36.032038 0 \N 164 \N 362 \N 78 1.0 1 2019-02-13 23:55:54.814554 2019-02-13 23:55:54.814554 0 \N 165 \N 362 \N 79 1.0 1 2019-02-13 23:58:51.46083 2019-02-13 23:58:51.46083 0 \N 166 \N 444 \N 79 1.0 1 2019-02-13 23:58:51.497428 2019-02-13 23:58:51.497428 0 \N 167 \N 322 \N 80 1.0 1 2019-02-14 02:26:30.559289 2019-02-14 02:26:30.559289 0 \N 168 \N 328 \N 81 1.0 1 2019-02-14 02:28:30.128521 2019-02-14 02:28:30.128521 0 \N 169 \N 328 \N 81 1.0 0 2019-02-14 02:29:20.228552 2019-02-14 02:29:20.228552 9 \N 170 \N 328 \N 82 1.0 1 2019-02-14 02:30:12.965723 2019-02-14 02:30:12.965723 0 \N 171 \N 151 \N 83 1.0 1 2019-02-14 18:34:29.610266 2019-02-14 18:34:29.610266 0 \N 172 \N 429 \N 84 1.0 1 2019-02-14 20:22:29.205403 2019-02-14 20:22:29.205403 0 \N 173 \N 321 \N 85 1.0 1 2019-02-15 01:00:43.311266 2019-02-15 01:00:43.311266 0 \N 174 \N 321 \N 85 1.0 0 2019-02-15 01:07:30.89508 2019-02-15 01:07:30.89508 3 \N 175 \N 320 \N 86 1.0 1 2019-02-15 01:08:24.795031 2019-02-15 01:08:24.795031 0 \N 176 \N 319 \N 86 1.0 1 2019-02-15 01:08:24.832448 2019-02-15 01:08:24.832448 0 \N 177 \N 321 \N 86 1.0 1 2019-02-15 01:08:24.870263 2019-02-15 01:08:24.870263 0 \N 178 \N 476 \N 87 1.0 1 2019-02-15 02:17:07.595324 2019-02-15 02:17:07.595324 0 \N 179 \N 143 \N 87 1.0 1 2019-02-15 02:17:07.631437 2019-02-15 02:17:07.631437 0 \N 180 \N 326 \N 88 1.0 1 2019-02-15 21:32:50.51741 2019-02-15 21:32:50.51741 0 \N 181 \N 159 \N 89 1.0 1 2019-02-15 21:36:02.874272 2019-02-15 21:36:02.874272 0 \N 182 \N 266 \N 90 1.0 1 2019-02-15 22:26:45.716156 2019-02-15 22:26:45.716156 0 \N 183 \N 322 \N 91 1.0 1 2019-02-15 23:53:25.957778 2019-02-15 23:53:25.957778 0 \N 184 \N 481 33 \N 1.0 0 2019-02-16 00:11:39.924544 2019-02-16 00:11:39.924544 1 \N 185 \N 481 33 \N 1.0 1 2019-02-16 00:12:53.340881 2019-02-16 00:12:53.340881 4 \N 186 \N 482 34 \N 1.0 0 2019-02-16 00:14:56.459443 2019-02-16 00:14:56.459443 1 \N 187 \N 482 \N 92 1.0 1 2019-02-16 00:15:22.614678 2019-02-16 00:15:22.614678 0 \N 188 \N 304 \N 93 1.0 1 2019-02-16 00:30:35.987512 2019-02-16 00:30:35.987512 0 \N 189 \N 252 \N 94 1.0 1 2019-02-16 00:55:28.127266 2019-02-16 00:55:28.127266 0 \N 190 \N 154 \N 94 1.0 1 2019-02-16 00:55:28.163461 2019-02-16 00:55:28.163461 0 \N 191 \N 137 \N 95 1.0 1 2019-02-16 01:46:20.378389 2019-02-16 01:46:20.378389 0 \N 192 \N 159 \N 96 1.0 1 2019-02-16 19:51:33.305279 2019-02-16 19:51:33.305279 0 \N 193 \N 199 \N 97 1.0 1 2019-02-16 20:04:20.403448 2019-02-16 20:04:20.403448 0 \N 194 \N 153 \N 98 1.0 1 2019-02-16 20:08:16.425253 2019-02-16 20:08:16.425253 0 \N 195 \N 151 \N 99 1.0 1 2019-02-16 21:05:45.615322 2019-02-16 21:05:45.615322 0 \N 196 \N 220 \N 99 1.0 1 2019-02-16 21:05:45.650807 2019-02-16 21:05:45.650807 0 \N 197 \N 222 \N 100 1.0 1 2019-02-16 21:16:16.168235 2019-02-16 21:16:16.168235 0 \N 198 \N 270 \N 101 1.0 1 2019-02-16 21:20:06.653467 2019-02-16 21:20:06.653467 0 \N 199 \N 136 \N 102 1.0 1 2019-02-16 21:56:46.228702 2019-02-16 21:56:46.228702 0 \N 200 \N 420 \N 103 1.0 1 2019-02-16 22:24:37.221439 2019-02-16 22:24:37.221439 0 \N 201 \N 14 \N 104 1.0 1 2019-02-17 00:10:33.36445 2019-02-17 00:10:33.36445 0 \N 202 \N 295 \N 105 1.0 1 2019-02-17 00:24:52.204431 2019-02-17 00:24:52.204431 0 \N 203 \N 183 \N 106 1.0 1 2019-02-17 01:32:38.054146 2019-02-17 01:32:38.054146 0 \N 204 \N 479 \N 107 1.0 1 2019-02-17 21:04:44.94222 2019-02-17 21:04:44.94222 0 \N 205 \N 251 \N 108 1.0 1 2019-02-17 21:24:58.443312 2019-02-17 21:24:58.443312 0 \N 206 \N 153 \N 109 1.0 1 2019-02-17 21:28:05.383173 2019-02-17 21:28:05.383173 0 \N 207 \N 199 \N 109 1.0 1 2019-02-17 21:28:05.421649 2019-02-17 21:28:05.421649 0 \N 208 \N 17 \N 110 1.0 1 2019-02-17 21:30:20.308041 2019-02-17 21:30:20.308041 0 \N 209 \N 157 \N 110 1.0 1 2019-02-17 21:30:20.342691 2019-02-17 21:30:20.342691 0 \N 210 \N 148 \N 110 1.0 1 2019-02-17 21:30:20.376622 2019-02-17 21:30:20.376622 0 \N 211 \N 151 \N 111 1.0 1 2019-02-17 21:35:32.339091 2019-02-17 21:35:32.339091 0 \N 212 \N 150 \N 111 1.0 1 2019-02-17 21:35:32.373904 2019-02-17 21:35:32.373904 0 \N 213 \N 85 \N 111 1.0 1 2019-02-17 21:35:32.408235 2019-02-17 21:35:32.408235 0 \N 214 \N 462 \N 111 1.0 1 2019-02-17 21:35:32.443719 2019-02-17 21:35:32.443719 0 \N 215 \N 15 \N 111 1.0 1 2019-02-17 21:35:32.478856 2019-02-17 21:35:32.478856 0 \N 216 \N 151 \N 111 1.0 0 2019-02-17 21:36:21.690738 2019-02-17 21:36:21.690738 3 \N 217 \N 150 \N 111 1.0 0 2019-02-17 21:36:21.721369 2019-02-17 21:36:21.721369 3 \N 218 \N 85 \N 111 1.0 0 2019-02-17 21:36:21.75088 2019-02-17 21:36:21.75088 3 \N 219 \N 462 \N 111 1.0 0 2019-02-17 21:36:21.780658 2019-02-17 21:36:21.780658 3 \N 220 \N 15 \N 111 1.0 0 2019-02-17 21:36:21.812295 2019-02-17 21:36:21.812295 3 \N 221 \N 151 \N 112 1.0 1 2019-02-17 21:39:40.882742 2019-02-17 21:39:40.882742 0 \N 222 \N 150 \N 112 1.0 1 2019-02-17 21:39:40.917361 2019-02-17 21:39:40.917361 0 \N 223 \N 462 \N 112 1.0 1 2019-02-17 21:39:40.953135 2019-02-17 21:39:40.953135 0 \N 224 \N 15 \N 112 1.0 1 2019-02-17 21:39:40.987623 2019-02-17 21:39:40.987623 0 \N 225 \N 324 \N 113 1.0 1 2019-02-18 17:58:25.733141 2019-02-18 17:58:25.733141 0 \N 226 \N 321 \N 114 1.0 1 2019-02-18 20:02:07.500497 2019-02-18 20:02:07.500497 0 \N 227 \N 317 \N 114 1.0 1 2019-02-18 20:02:07.535974 2019-02-18 20:02:07.535974 0 \N 228 \N 157 \N 115 1.0 1 2019-02-18 23:24:49.885244 2019-02-18 23:24:49.885244 0 \N 229 \N 201 \N 115 1.0 1 2019-02-18 23:24:49.920729 2019-02-18 23:24:49.920729 0 \N 230 \N 406 \N 116 1.0 1 2019-02-19 01:10:23.336997 2019-02-19 01:10:23.336997 0 \N 231 \N 199 \N \N 5.0 0 2019-02-19 01:25:45.073217 2019-02-19 01:25:45.073217 7 8 232 \N 154 \N 117 1.0 1 2019-02-19 02:40:23.685984 2019-02-19 02:40:23.685984 0 \N 233 \N 16 \N 117 1.0 1 2019-02-19 02:40:23.726343 2019-02-19 02:40:23.726343 0 \N 234 \N 154 \N 117 1.0 0 2019-02-19 02:41:29.256668 2019-02-19 02:41:29.256668 3 \N 235 \N 16 \N 117 1.0 0 2019-02-19 02:41:29.281657 2019-02-19 02:41:29.281657 3 \N 236 \N 483 35 \N 6.0 0 2019-02-19 17:47:48.628468 2019-02-19 17:47:48.628468 1 \N 237 \N 332 \N 118 1.0 1 2019-02-19 17:50:44.732505 2019-02-19 17:50:44.732505 0 \N 238 \N 202 \N \N 6.0 0 2019-02-19 18:40:53.261782 2019-02-19 18:40:53.261782 7 9 239 \N 183 \N 119 1.0 1 2019-02-20 00:12:51.506816 2019-02-20 00:12:51.506816 0 \N 240 \N 200 \N 120 1.0 1 2019-02-20 01:24:38.340094 2019-02-20 01:24:38.340094 0 \N 241 \N 140 \N 120 1.0 1 2019-02-20 01:24:38.379344 2019-02-20 01:24:38.379344 0 \N 242 \N 270 \N 121 1.0 1 2019-02-20 01:50:26.040124 2019-02-20 01:50:26.040124 0 \N 243 \N 270 \N 121 1.0 0 2019-02-20 01:50:34.549879 2019-02-20 01:50:34.549879 3 \N 244 \N 270 \N 122 1.0 1 2019-02-20 01:51:01.872775 2019-02-20 01:51:01.872775 0 \N 245 \N 166 \N 123 1.0 1 2019-02-20 19:03:34.025314 2019-02-20 19:03:34.025314 0 \N 246 \N 157 \N 124 1.0 1 2019-02-20 19:10:40.490527 2019-02-20 19:10:40.490527 0 \N 247 \N 179 \N 125 2.0 1 2019-02-20 19:36:32.91665 2019-02-20 19:36:32.91665 0 \N 248 \N 133 \N 125 1.0 1 2019-02-20 19:36:32.956528 2019-02-20 19:36:32.956528 0 \N 249 \N 412 \N 126 1.0 1 2019-02-20 19:54:41.853736 2019-02-20 19:54:41.853736 0 \N 250 \N 379 \N 127 1.0 1 2019-02-20 19:57:16.92189 2019-02-20 19:57:16.92189 0 \N 251 \N 382 \N 127 1.0 1 2019-02-20 19:57:16.96109 2019-02-20 19:57:16.96109 0 \N 252 \N 179 \N 125 2.0 0 2019-02-20 21:24:08.154789 2019-02-20 21:24:08.154789 3 \N 253 \N 133 \N 125 1.0 0 2019-02-20 21:24:08.182912 2019-02-20 21:24:08.182912 3 \N 254 \N 179 \N 128 1.0 1 2019-02-20 21:25:37.977666 2019-02-20 21:25:37.977666 0 \N 255 \N 133 \N 128 1.0 1 2019-02-20 21:25:38.015701 2019-02-20 21:25:38.015701 0 \N 256 \N 148 \N 129 1.0 1 2019-02-20 23:50:25.718387 2019-02-20 23:50:25.718387 0 \N 257 \N 383 \N 130 1.0 1 2019-02-20 23:56:35.224093 2019-02-20 23:56:35.224093 0 \N 258 \N 484 36 \N 1.0 0 2019-02-21 00:33:44.652438 2019-02-21 00:33:44.652438 1 \N 259 \N 200 \N 131 2.0 1 2019-02-21 01:15:54.513409 2019-02-21 01:15:54.513409 0 \N 260 \N 200 \N 131 2.0 0 2019-02-21 01:16:09.245577 2019-02-21 01:16:09.245577 3 \N 261 \N 200 \N 132 1.0 1 2019-02-21 01:16:27.677781 2019-02-21 01:16:27.677781 0 \N 262 \N 389 \N 133 1.0 1 2019-02-21 01:22:36.409772 2019-02-21 01:22:36.409772 0 \N 263 \N 485 37 \N 6.0 0 2019-02-21 01:29:11.732141 2019-02-21 01:29:11.732141 1 \N 264 \N 86 \N 134 1.0 1 2019-02-21 19:21:02.615014 2019-02-21 19:21:02.615014 0 \N 265 \N 248 \N 135 1.0 1 2019-02-21 19:40:29.013487 2019-02-21 19:40:29.013487 0 \N 266 \N 151 \N 136 1.0 1 2019-02-22 01:15:09.149055 2019-02-22 01:15:09.149055 0 \N 267 \N 41 \N 137 2.0 1 2019-02-22 17:09:24.869445 2019-02-22 17:09:24.869445 0 \N 268 \N 476 \N 137 1.0 1 2019-02-22 17:09:24.908654 2019-02-22 17:09:24.908654 0 \N 269 \N 154 \N 137 1.0 1 2019-02-22 17:09:24.94578 2019-02-22 17:09:24.94578 0 \N 270 \N 135 \N 137 1.0 1 2019-02-22 17:09:24.980649 2019-02-22 17:09:24.980649 0 \N 271 \N 486 38 \N 2.0 0 2019-02-22 19:25:33.269932 2019-02-22 19:25:33.269932 1 \N 272 \N 486 \N 138 1.0 1 2019-02-22 19:26:26.151828 2019-02-22 19:26:26.151828 0 \N 273 \N 487 39 \N 2.0 0 2019-02-22 19:42:10.947597 2019-02-22 19:42:10.947597 1 \N 274 \N 259 \N 139 1.0 1 2019-02-22 19:43:16.034132 2019-02-22 19:43:16.034132 0 \N 275 \N 487 \N 139 1.0 1 2019-02-22 19:43:16.071429 2019-02-22 19:43:16.071429 0 \N 276 \N 136 \N 140 1.0 1 2019-02-23 00:20:08.247054 2019-02-23 00:20:08.247054 0 \N 277 \N 419 \N 141 1.0 1 2019-02-23 01:52:57.167471 2019-02-23 01:52:57.167471 0 \N 278 \N 199 \N 142 1.0 1 2019-02-23 02:01:07.63785 2019-02-23 02:01:07.63785 0 \N 279 \N 369 \N 143 2.0 1 2019-02-23 19:18:17.768255 2019-02-23 19:18:17.768255 0 \N 280 \N 87 \N 144 1.0 1 2019-02-23 19:39:30.558138 2019-02-23 19:39:30.558138 0 \N 281 \N 62 \N 144 1.0 1 2019-02-23 19:39:30.593294 2019-02-23 19:39:30.593294 0 \N 282 \N 488 40 \N 3.0 0 2019-02-23 19:55:41.819579 2019-02-23 19:55:41.819579 1 \N 283 \N 317 \N 145 1.0 1 2019-02-23 19:56:59.875588 2019-02-23 19:56:59.875588 0 \N 284 \N 420 \N 145 1.0 1 2019-02-23 19:56:59.931366 2019-02-23 19:56:59.931366 0 \N 285 \N 489 41 \N 1.0 0 2019-02-23 20:09:48.436679 2019-02-23 20:09:48.436679 1 \N 286 \N 490 42 \N 2.0 0 2019-02-23 20:11:04.274143 2019-02-23 20:11:04.274143 1 \N 287 \N 491 43 \N 2.0 0 2019-02-23 20:12:53.043354 2019-02-23 20:12:53.043354 1 \N 288 \N 318 \N 146 1.0 1 2019-02-23 20:58:42.932979 2019-02-23 20:58:42.932979 0 \N 289 \N 248 \N 147 1.0 1 2019-02-24 00:28:09.069248 2019-02-24 00:28:09.069248 0 \N 290 \N 151 \N 148 1.0 1 2019-02-24 00:42:48.406741 2019-02-24 00:42:48.406741 0 \N 291 \N 16 \N 148 1.0 1 2019-02-24 00:42:48.442677 2019-02-24 00:42:48.442677 0 \N 292 \N 202 \N 149 1.0 1 2019-02-24 00:47:26.709218 2019-02-24 00:47:26.709218 0 \N 293 \N 479 \N 149 1.0 1 2019-02-24 00:47:26.737141 2019-02-24 00:47:26.737141 0 \N 294 \N 492 44 \N 1.0 0 2019-02-24 01:25:37.996863 2019-02-24 01:25:37.996863 1 \N 295 \N 492 \N 150 1.0 1 2019-02-24 01:27:33.192033 2019-02-24 01:27:33.192033 0 \N 296 \N 396 \N 151 1.0 1 2019-02-24 22:07:33.651292 2019-02-24 22:07:33.651292 0 \N 297 \N 483 \N 151 1.0 1 2019-02-24 22:07:33.685076 2019-02-24 22:07:33.685076 0 \N 298 \N 9 \N 152 1.0 1 2019-02-26 20:46:54.617377 2019-02-26 20:46:54.617377 0 \N 299 \N 322 \N 153 1.0 1 2019-02-26 21:09:19.471462 2019-02-26 21:09:19.471462 0 \N 300 \N 322 \N 153 1.0 0 2019-02-26 21:10:12.288121 2019-02-26 21:10:12.288121 3 \N 301 \N 476 \N 154 2.0 1 2019-02-26 21:10:58.531386 2019-02-26 21:10:58.531386 0 \N 302 \N 476 \N 154 2.0 0 2019-02-26 21:11:05.004147 2019-02-26 21:11:05.004147 3 \N 303 \N 322 \N 155 1.0 1 2019-02-26 21:19:45.850209 2019-02-26 21:19:45.850209 0 \N 304 \N 476 \N 156 1.0 1 2019-02-26 21:22:32.929741 2019-02-26 21:22:32.929741 0 \N 305 \N 268 \N 157 1.0 1 2019-02-26 23:03:04.636757 2019-02-26 23:03:04.636757 0 \N 306 \N 476 \N 158 1.0 1 2019-02-27 00:26:06.608539 2019-02-27 00:26:06.608539 0 \N 307 \N 420 \N 159 1.0 1 2019-02-27 23:49:22.45274 2019-02-27 23:49:22.45274 0 \N 308 \N 476 \N 160 1.0 1 2019-02-28 01:39:12.218293 2019-02-28 01:39:12.218293 0 \N 309 \N 138 \N 160 1.0 1 2019-02-28 01:39:12.24811 2019-02-28 01:39:12.24811 0 \N 310 \N 178 \N 161 1.0 1 2019-02-28 01:44:05.069308 2019-02-28 01:44:05.069308 0 \N 311 \N 88 \N 161 1.0 1 2019-02-28 01:44:05.098381 2019-02-28 01:44:05.098381 0 \N 312 \N 268 \N 162 1.0 1 2019-02-28 17:15:52.320909 2019-02-28 17:15:52.320909 0 \N 313 \N 268 \N 162 1.0 0 2019-02-28 17:16:31.254862 2019-02-28 17:16:31.254862 3 \N 314 \N 268 \N 163 1.0 1 2019-02-28 17:17:01.209977 2019-02-28 17:17:01.209977 0 \N 315 \N 268 \N 163 1.0 0 2019-02-28 17:17:56.069609 2019-02-28 17:17:56.069609 9 \N 316 \N 154 \N 164 1.0 1 2019-02-28 18:01:16.223806 2019-02-28 18:01:16.223806 0 \N 317 \N 151 \N \N 5.0 0 2019-02-28 18:52:02.864171 2019-02-28 18:52:02.864171 7 10 318 \N 270 \N 165 1.0 1 2019-02-28 20:45:18.257168 2019-02-28 20:45:18.257168 0 \N 319 \N 51 \N 165 1.0 1 2019-02-28 20:45:18.302785 2019-02-28 20:45:18.302785 0 \N 320 \N 151 \N 166 1.0 1 2019-03-01 18:26:09.698064 2019-03-01 18:26:09.698064 0 \N 321 \N 330 \N 167 1.0 1 2019-03-01 19:47:45.509908 2019-03-01 19:47:45.509908 0 \N 322 \N 455 \N 167 1.0 1 2019-03-01 19:47:45.545899 2019-03-01 19:47:45.545899 0 \N 323 \N 334 \N 168 1.0 1 2019-03-01 22:11:54.037804 2019-03-01 22:11:54.037804 0 \N 324 \N 133 \N 169 1.0 1 2019-03-01 23:36:16.592147 2019-03-01 23:36:16.592147 0 \N 325 \N 140 \N 170 1.0 1 2019-03-01 23:43:56.280505 2019-03-01 23:43:56.280505 0 \N 326 \N 367 \N 171 6.0 1 2019-03-01 23:59:31.130466 2019-03-01 23:59:31.130466 0 \N 327 \N 328 \N 171 1.0 1 2019-03-01 23:59:31.15674 2019-03-01 23:59:31.15674 0 \N 328 \N 323 \N 171 1.0 1 2019-03-01 23:59:31.180097 2019-03-01 23:59:31.180097 0 \N 329 \N 411 \N 171 1.0 1 2019-03-01 23:59:31.203864 2019-03-01 23:59:31.203864 0 \N 330 \N 276 \N 171 1.0 1 2019-03-01 23:59:31.226517 2019-03-01 23:59:31.226517 0 \N 331 \N 140 \N 172 1.0 1 2019-03-02 00:04:41.58669 2019-03-02 00:04:41.58669 0 \N 332 \N 52 \N 172 1.0 1 2019-03-02 00:04:41.630435 2019-03-02 00:04:41.630435 0 \N 333 \N 271 \N 173 1.0 1 2019-03-02 00:10:53.489455 2019-03-02 00:10:53.489455 0 \N 334 \N 271 \N 173 1.0 0 2019-03-02 00:11:00.492615 2019-03-02 00:11:00.492615 3 \N 335 \N 271 \N 174 1.0 1 2019-03-02 00:11:47.984215 2019-03-02 00:11:47.984215 0 \N 336 \N 15 \N 175 1.0 1 2019-03-02 00:28:34.293269 2019-03-02 00:28:34.293269 0 \N 337 \N 15 \N 175 1.0 0 2019-03-02 00:28:38.354207 2019-03-02 00:28:38.354207 9 \N 338 \N 15 \N 176 1.0 1 2019-03-02 00:29:06.382927 2019-03-02 00:29:06.382927 0 \N 339 \N 15 \N 176 1.0 0 2019-03-02 00:29:35.673271 2019-03-02 00:29:35.673271 9 \N 340 \N 15 \N 177 1.0 1 2019-03-02 00:29:53.550296 2019-03-02 00:29:53.550296 0 \N 341 \N 184 \N 178 1.0 1 2019-03-02 00:36:54.08645 2019-03-02 00:36:54.08645 0 \N 342 \N 250 \N 178 1.0 1 2019-03-02 00:36:54.111142 2019-03-02 00:36:54.111142 0 \N 343 \N 156 \N 179 1.0 1 2019-03-02 00:39:49.941906 2019-03-02 00:39:49.941906 0 \N 344 \N 367 \N 179 4.0 1 2019-03-02 00:39:49.965198 2019-03-02 00:39:49.965198 0 \N 345 \N 156 \N 179 1.0 0 2019-03-02 00:40:00.057222 2019-03-02 00:40:00.057222 3 \N 346 \N 367 \N 179 4.0 0 2019-03-02 00:40:00.077194 2019-03-02 00:40:00.077194 3 \N 347 \N 156 \N 180 1.0 1 2019-03-02 00:40:47.884795 2019-03-02 00:40:47.884795 0 \N 348 \N 367 \N 180 4.0 1 2019-03-02 00:40:47.908136 2019-03-02 00:40:47.908136 0 \N 349 \N 493 45 \N 1.0 0 2019-03-02 00:50:39.296372 2019-03-02 00:50:39.296372 1 \N 350 \N 493 \N 181 1.0 1 2019-03-02 00:51:55.568845 2019-03-02 00:51:55.568845 0 \N 351 \N 493 \N 181 1.0 0 2019-03-02 00:52:06.722623 2019-03-02 00:52:06.722623 3 \N 352 \N 493 \N 182 1.0 1 2019-03-02 00:52:34.267523 2019-03-02 00:52:34.267523 0 \N 353 \N 476 \N 183 1.0 1 2019-03-02 00:59:11.210083 2019-03-02 00:59:11.210083 0 \N 354 \N 256 \N 184 1.0 1 2019-03-02 01:48:19.512459 2019-03-02 01:48:19.512459 0 \N 355 \N 254 \N 185 1.0 1 2019-03-02 01:51:25.238704 2019-03-02 01:51:25.238704 0 \N 356 \N 389 \N 186 1.0 1 2019-03-02 02:11:12.370408 2019-03-02 02:11:12.370408 0 \N 357 \N 133 \N 187 1.0 1 2019-03-02 02:14:37.820656 2019-03-02 02:14:37.820656 0 \N 358 \N 494 46 \N 31.0 0 2019-03-02 17:16:01.568771 2019-03-02 17:16:01.568771 1 \N 359 \N 276 \N \N 2.0 0 2019-03-02 18:24:25.445582 2019-03-02 18:24:25.445582 7 13 360 \N 277 \N 188 1.0 1 2019-03-02 18:47:08.761534 2019-03-02 18:47:08.761534 0 \N 361 \N 424 \N 189 1.0 1 2019-03-02 19:03:38.702135 2019-03-02 19:03:38.702135 0 \N 362 \N 476 \N 190 2.0 1 2019-03-02 19:37:40.720518 2019-03-02 19:37:40.720518 0 \N 363 \N 232 \N \N 2.0 0 2019-03-02 19:46:00.773123 2019-03-02 19:46:00.773123 7 12 364 \N 494 \N \N 16.0 0 2019-03-02 19:49:10.728967 2019-03-02 19:49:10.728967 7 11 365 \N 182 \N \N 5.0 0 2019-03-02 19:49:10.750844 2019-03-02 19:49:10.750844 7 11 366 \N 18 \N \N 6.0 0 2019-03-02 19:49:10.772925 2019-03-02 19:49:10.772925 7 11 367 \N 207 \N \N 5.0 0 2019-03-02 19:49:10.793595 2019-03-02 19:49:10.793595 7 11 368 \N 475 \N \N 6.0 0 2019-03-02 19:49:10.811986 2019-03-02 19:49:10.811986 7 11 369 \N 72 \N \N 4.0 0 2019-03-02 19:49:10.834025 2019-03-02 19:49:10.834025 7 11 370 \N 155 \N \N 6.0 0 2019-03-02 19:49:10.860112 2019-03-02 19:49:10.860112 7 11 371 \N 253 \N \N 6.0 0 2019-03-02 19:49:10.886504 2019-03-02 19:49:10.886504 7 11 372 \N 7 \N \N 4.0 0 2019-03-02 19:49:10.916878 2019-03-02 19:49:10.916878 7 11 373 \N 181 \N \N 6.0 0 2019-03-02 19:49:10.944604 2019-03-02 19:49:10.944604 7 11 374 \N 151 \N 191 1.0 1 2019-03-02 21:35:45.549572 2019-03-02 21:35:45.549572 0 \N 375 \N 393 \N 192 1.0 1 2019-03-02 23:09:13.039917 2019-03-02 23:09:13.039917 0 \N 376 \N 148 \N 193 1.0 1 2019-03-03 18:33:08.968683 2019-03-03 18:33:08.968683 0 \N 377 \N 332 \N 194 1.0 1 2019-03-03 18:53:09.222834 2019-03-03 18:53:09.222834 0 \N 378 \N 326 \N 195 1.0 1 2019-03-03 19:07:39.82868 2019-03-03 19:07:39.82868 0 \N 379 \N 199 \N 196 1.0 1 2019-03-03 19:13:09.161828 2019-03-03 19:13:09.161828 0 \N 380 \N 153 \N 196 1.0 1 2019-03-03 19:13:09.196146 2019-03-03 19:13:09.196146 0 \N 381 \N 332 \N 197 1.0 1 2019-03-03 19:17:37.917393 2019-03-03 19:17:37.917393 0 \N 382 \N 387 \N 198 1.0 1 2019-03-03 19:18:22.361507 2019-03-03 19:18:22.361507 0 \N 383 \N 141 \N 199 1.0 1 2019-03-03 20:58:27.908209 2019-03-03 20:58:27.908209 0 \N 384 \N 143 \N 199 1.0 1 2019-03-03 20:58:27.944 2019-03-03 20:58:27.944 0 \N 385 \N 179 \N 199 1.0 1 2019-03-03 20:58:27.98302 2019-03-03 20:58:27.98302 0 \N 386 \N 178 \N 199 1.0 1 2019-03-03 20:58:28.018542 2019-03-03 20:58:28.018542 0 \N 387 \N 213 \N 199 1.0 1 2019-03-03 20:58:28.049903 2019-03-03 20:58:28.049903 0 \N 388 \N 181 \N 200 2.0 1 2019-03-03 21:07:35.457455 2019-03-03 21:07:35.457455 0 \N 389 \N 327 \N 200 2.0 1 2019-03-03 21:07:35.483171 2019-03-03 21:07:35.483171 0 \N 390 \N 421 \N 200 1.0 1 2019-03-03 21:07:35.509502 2019-03-03 21:07:35.509502 0 \N 391 \N 181 \N 200 2.0 0 2019-03-03 21:07:58.806091 2019-03-03 21:07:58.806091 3 \N 392 \N 327 \N 200 2.0 0 2019-03-03 21:07:58.83065 2019-03-03 21:07:58.83065 3 \N 393 \N 421 \N 200 1.0 0 2019-03-03 21:07:58.854275 2019-03-03 21:07:58.854275 3 \N 394 \N 421 \N 201 1.0 1 2019-03-03 21:10:00.927016 2019-03-03 21:10:00.927016 0 \N 395 \N 327 \N 201 1.0 1 2019-03-03 21:10:00.961689 2019-03-03 21:10:00.961689 0 \N 396 \N 181 \N 201 1.0 1 2019-03-03 21:10:00.99792 2019-03-03 21:10:00.99792 0 \N 397 \N 369 \N 202 4.0 1 2019-03-03 21:14:05.141962 2019-03-03 21:14:05.141962 0 \N 398 \N 471 \N 203 1.0 1 2019-03-04 16:35:47.404817 2019-03-04 16:35:47.404817 0 \N 399 \N 155 \N \N 6.0 0 2019-03-04 17:12:37.633252 2019-03-04 17:12:37.633252 7 15 400 \N 289 \N 204 1.0 1 2019-03-04 22:58:54.433798 2019-03-04 22:58:54.433798 0 \N 401 \N 148 \N 205 1.0 1 2019-03-05 00:28:09.779828 2019-03-05 00:28:09.779828 0 \N 402 \N 137 \N 205 1.0 1 2019-03-05 00:28:09.811523 2019-03-05 00:28:09.811523 0 \N 403 \N 330 \N 206 1.0 1 2019-03-05 00:37:05.689757 2019-03-05 00:37:05.689757 0 \N 404 \N 432 \N 206 1.0 1 2019-03-05 00:37:05.722754 2019-03-05 00:37:05.722754 0 \N 405 \N 18 \N 206 1.0 1 2019-03-05 00:37:05.756394 2019-03-05 00:37:05.756394 0 \N 406 \N 398 \N 206 1.0 1 2019-03-05 00:37:05.790598 2019-03-05 00:37:05.790598 0 \N 407 \N 388 \N 206 1.0 1 2019-03-05 00:37:05.829864 2019-03-05 00:37:05.829864 0 \N 408 \N 388 \N 206 1.0 0 2019-03-05 00:37:12.628968 2019-03-05 00:37:12.628968 3 \N 409 \N 398 \N 206 1.0 0 2019-03-05 00:37:12.65229 2019-03-05 00:37:12.65229 3 \N 410 \N 18 \N 206 1.0 0 2019-03-05 00:37:12.673852 2019-03-05 00:37:12.673852 3 \N 411 \N 432 \N 206 1.0 0 2019-03-05 00:37:12.700177 2019-03-05 00:37:12.700177 3 \N 412 \N 330 \N 206 1.0 0 2019-03-05 00:37:12.728421 2019-03-05 00:37:12.728421 3 \N 413 \N 398 \N 207 1.0 1 2019-03-05 00:38:34.499455 2019-03-05 00:38:34.499455 0 \N 414 \N 18 \N 207 1.0 1 2019-03-05 00:38:34.526937 2019-03-05 00:38:34.526937 0 \N 415 \N 432 \N 207 1.0 1 2019-03-05 00:38:34.551237 2019-03-05 00:38:34.551237 0 \N 416 \N 330 \N 207 1.0 1 2019-03-05 00:38:34.574528 2019-03-05 00:38:34.574528 0 \N 417 \N 387 \N 207 1.0 1 2019-03-05 00:38:34.59884 2019-03-05 00:38:34.59884 0 \N 418 \N 207 \N 208 1.0 1 2019-03-05 00:51:18.451143 2019-03-05 00:51:18.451143 0 \N 419 \N 143 \N 208 1.0 1 2019-03-05 00:51:18.489259 2019-03-05 00:51:18.489259 0 \N 420 \N 181 \N 208 1.0 1 2019-03-05 00:51:18.529041 2019-03-05 00:51:18.529041 0 \N 421 \N 485 \N 209 1.0 1 2019-03-05 01:15:17.833167 2019-03-05 01:15:17.833167 0 \N 422 \N 367 \N 210 2.0 1 2019-03-05 01:27:38.884856 2019-03-05 01:27:38.884856 0 \N 423 \N 320 \N 211 1.0 1 2019-03-05 01:29:48.050617 2019-03-05 01:29:48.050617 0 \N 424 \N 413 \N 211 1.0 1 2019-03-05 01:29:48.085413 2019-03-05 01:29:48.085413 0 \N 425 \N 387 \N 207 1.0 0 2019-03-05 01:43:39.851937 2019-03-05 01:43:39.851937 3 \N 426 \N 330 \N 207 1.0 0 2019-03-05 01:43:39.875393 2019-03-05 01:43:39.875393 3 \N 427 \N 432 \N 207 1.0 0 2019-03-05 01:43:39.896429 2019-03-05 01:43:39.896429 3 \N 428 \N 18 \N 207 1.0 0 2019-03-05 01:43:39.919285 2019-03-05 01:43:39.919285 3 \N 429 \N 398 \N 207 1.0 0 2019-03-05 01:43:39.949492 2019-03-05 01:43:39.949492 3 \N 430 \N 388 \N 212 1.0 1 2019-03-05 01:45:42.924808 2019-03-05 01:45:42.924808 0 \N 431 \N 330 \N 212 1.0 1 2019-03-05 01:45:42.954475 2019-03-05 01:45:42.954475 0 \N 432 \N 432 \N 212 1.0 1 2019-03-05 01:45:42.977212 2019-03-05 01:45:42.977212 0 \N 433 \N 18 \N 212 1.0 1 2019-03-05 01:45:43.001741 2019-03-05 01:45:43.001741 0 \N 434 \N 398 \N 212 1.0 1 2019-03-05 01:45:43.027074 2019-03-05 01:45:43.027074 0 \N 435 \N 434 \N \N 1.0 0 2019-03-05 01:49:46.972052 2019-03-05 01:49:46.972052 7 16 436 \N 415 \N 213 2.0 1 2019-03-05 02:10:43.926293 2019-03-05 02:10:43.926293 0 \N 437 \N 415 \N 213 2.0 0 2019-03-05 02:11:14.179416 2019-03-05 02:11:14.179416 3 \N 438 \N 415 \N 214 2.0 1 2019-03-05 02:11:32.501263 2019-03-05 02:11:32.501263 0 \N 439 \N 153 \N 215 1.0 1 2019-03-05 19:09:47.059515 2019-03-05 19:09:47.059515 0 \N 440 \N 199 \N 215 1.0 1 2019-03-05 19:09:47.095646 2019-03-05 19:09:47.095646 0 \N 441 \N 137 \N 216 1.0 1 2019-03-05 21:27:58.210483 2019-03-05 21:27:58.210483 0 \N 442 \N 162 \N \N 1.0 0 2019-03-06 19:17:29.825148 2019-03-06 19:17:29.825148 7 17 443 \N 162 \N 217 1.0 1 2019-03-06 19:21:17.916004 2019-03-06 19:21:17.916004 0 \N 444 \N 138 \N 217 1.0 1 2019-03-06 19:21:17.942958 2019-03-06 19:21:17.942958 0 \N 445 \N 138 \N 217 1.0 0 2019-03-06 19:22:25.230265 2019-03-06 19:22:25.230265 9 \N 446 \N 162 \N 217 1.0 0 2019-03-06 19:22:25.258883 2019-03-06 19:22:25.258883 9 \N 447 \N 78 \N 218 1.0 1 2019-03-06 22:10:28.031968 2019-03-06 22:10:28.031968 0 \N 448 \N 135 \N 219 1.0 1 2019-03-07 00:18:02.880704 2019-03-07 00:18:02.880704 0 \N 449 \N 199 \N 220 1.0 1 2019-03-07 00:45:41.035287 2019-03-07 00:45:41.035287 0 \N 450 \N 421 \N 221 1.0 1 2019-03-07 01:43:56.045668 2019-03-07 01:43:56.045668 0 \N 451 \N 136 \N 222 1.0 1 2019-03-07 01:45:10.174988 2019-03-07 01:45:10.174988 0 \N 452 \N 251 \N 223 1.0 1 2019-03-07 01:47:18.316808 2019-03-07 01:47:18.316808 0 \N 453 \N 254 \N 224 1.0 1 2019-03-07 01:52:36.198499 2019-03-07 01:52:36.198499 0 \N 454 \N 138 \N 225 1.0 1 2019-03-07 21:59:43.23734 2019-03-07 21:59:43.23734 0 \N 455 \N 253 \N 226 1.0 1 2019-03-08 00:27:56.917994 2019-03-08 00:27:56.917994 0 \N 456 \N 151 \N 227 1.0 1 2019-03-09 00:46:52.441875 2019-03-09 00:46:52.441875 0 \N 457 \N 88 \N 228 1.0 1 2019-03-09 00:49:06.043074 2019-03-09 00:49:06.043074 0 \N 458 \N 494 \N 229 1.0 1 2019-03-09 01:03:57.376267 2019-03-09 01:03:57.376267 0 \N 459 \N 253 \N 229 1.0 1 2019-03-09 01:03:57.412448 2019-03-09 01:03:57.412448 0 \N 460 \N 135 \N 230 1.0 1 2019-03-09 20:42:01.094536 2019-03-09 20:42:01.094536 0 \N 461 \N 328 \N 231 1.0 1 2019-03-09 20:50:00.604613 2019-03-09 20:50:00.604613 0 \N 462 \N 418 \N 232 1.0 1 2019-03-09 21:27:08.760589 2019-03-09 21:27:08.760589 0 \N 463 \N 418 \N 232 1.0 0 2019-03-09 21:29:04.334742 2019-03-09 21:29:04.334742 9 \N 464 \N 213 \N 233 1.0 1 2019-03-09 21:37:19.199422 2019-03-09 21:37:19.199422 0 \N 465 \N 331 \N 234 1.0 1 2019-03-09 22:13:11.425844 2019-03-09 22:13:11.425844 0 \N 466 \N 135 \N 235 1.0 1 2019-03-09 22:48:55.665845 2019-03-09 22:48:55.665845 0 \N 467 \N 202 \N 236 1.0 1 2019-03-09 23:32:27.439152 2019-03-09 23:32:27.439152 0 \N 468 \N 245 \N 237 1.0 1 2019-03-10 00:28:59.841156 2019-03-10 00:28:59.841156 0 \N 469 \N 202 \N 238 1.0 1 2019-03-10 01:00:16.510773 2019-03-10 01:00:16.510773 0 \N 470 \N 369 \N 239 1.0 1 2019-03-10 01:03:50.69369 2019-03-10 01:03:50.69369 0 \N 471 \N 257 \N 240 1.0 1 2019-03-10 01:08:38.850285 2019-03-10 01:08:38.850285 0 \N 472 \N 61 \N 241 1.0 1 2019-03-10 01:31:15.322541 2019-03-10 01:31:15.322541 0 \N 473 \N 203 \N 241 1.0 1 2019-03-10 01:31:15.354824 2019-03-10 01:31:15.354824 0 \N 474 \N 254 \N 242 1.0 1 2019-03-10 01:47:27.731266 2019-03-10 01:47:27.731266 0 \N 475 \N 57 \N 243 1.0 1 2019-03-10 17:31:53.487797 2019-03-10 17:31:53.487797 0 \N 476 \N 75 \N 244 1.0 1 2019-03-10 21:15:44.853574 2019-03-10 21:15:44.853574 0 \N 477 \N 369 \N 245 1.0 1 2019-03-11 20:03:30.049238 2019-03-11 20:03:30.049238 0 \N 478 \N 495 47 \N 5.0 0 2019-03-11 21:09:22.436961 2019-03-11 21:09:22.436961 1 \N 479 \N 495 \N 246 1.0 1 2019-03-11 21:13:20.788352 2019-03-11 21:13:20.788352 0 \N 480 \N 332 \N 247 1.0 1 2019-03-13 19:55:15.748876 2019-03-13 19:55:15.748876 0 \N 481 \N 421 \N 247 1.0 1 2019-03-13 19:55:15.783331 2019-03-13 19:55:15.783331 0 \N 482 \N 491 \N 248 1.0 1 2019-03-13 21:10:46.877257 2019-03-13 21:10:46.877257 0 \N 483 \N 421 \N 249 1.0 1 2019-03-13 22:19:44.2585 2019-03-13 22:19:44.2585 0 \N 484 \N 327 \N 249 1.0 1 2019-03-13 22:19:44.292336 2019-03-13 22:19:44.292336 0 \N 485 \N 137 \N 250 2.0 1 2019-03-14 20:09:00.189407 2019-03-14 20:09:00.189407 0 \N 486 \N 137 \N 250 2.0 0 2019-03-14 20:09:08.339615 2019-03-14 20:09:08.339615 3 \N 487 \N 137 \N 251 1.0 1 2019-03-14 20:09:22.31521 2019-03-14 20:09:22.31521 0 \N 488 \N 475 \N 252 1.0 1 2019-03-14 20:47:57.254841 2019-03-14 20:47:57.254841 0 \N 489 \N 367 \N 253 2.0 1 2019-03-15 00:31:52.582489 2019-03-15 00:31:52.582489 0 \N 490 \N 337 \N 254 1.0 1 2019-03-15 00:33:10.761229 2019-03-15 00:33:10.761229 0 \N 491 \N 137 \N 255 1.0 1 2019-03-15 00:58:28.961844 2019-03-15 00:58:28.961844 0 \N 492 \N 253 \N 256 1.0 1 2019-03-15 18:26:10.523992 2019-03-15 18:26:10.523992 0 \N 493 \N 152 \N 257 1.0 1 2019-03-15 18:51:55.988471 2019-03-15 18:51:55.988471 0 \N 494 \N 260 \N 258 1.0 1 2019-03-15 19:13:03.012009 2019-03-15 19:13:03.012009 0 \N 495 \N 171 \N 258 1.0 1 2019-03-15 19:13:03.036916 2019-03-15 19:13:03.036916 0 \N 496 \N 199 \N 259 1.0 1 2019-03-15 20:11:40.435217 2019-03-15 20:11:40.435217 0 \N 497 \N 183 \N 260 1.0 1 2019-03-15 20:29:54.73435 2019-03-15 20:29:54.73435 0 \N 498 \N 485 \N \N 1.0 0 2019-03-15 20:51:57.03248 2019-03-15 20:51:57.03248 7 18 499 \N 485 \N \N 1.0 0 2019-03-15 20:56:16.833453 2019-03-15 20:56:16.833453 7 19 500 \N 475 \N \N 1.0 0 2019-03-15 20:57:36.367925 2019-03-15 20:57:36.367925 7 20 501 \N 475 \N 261 1.0 1 2019-03-15 20:58:09.691832 2019-03-15 20:58:09.691832 0 \N 502 \N 496 49 \N 3.0 0 2019-03-15 21:02:47.378281 2019-03-15 21:02:47.378281 1 \N 503 \N 135 \N 262 2.0 1 2019-03-16 00:19:19.894973 2019-03-16 00:19:19.894973 0 \N 504 \N 397 \N 263 1.0 1 2019-03-16 02:05:24.854037 2019-03-16 02:05:24.854037 0 \N 505 \N 257 \N 263 1.0 1 2019-03-16 02:05:24.883053 2019-03-16 02:05:24.883053 0 \N 506 \N 485 \N 263 1.0 1 2019-03-16 02:05:24.9103 2019-03-16 02:05:24.9103 0 \N 507 \N 341 \N 264 1.0 1 2019-03-16 18:52:44.893677 2019-03-16 18:52:44.893677 0 \N 508 \N 387 \N 265 1.0 1 2019-03-16 18:54:45.093134 2019-03-16 18:54:45.093134 0 \N 509 \N 421 \N 266 1.0 1 2019-03-16 20:28:54.293232 2019-03-16 20:28:54.293232 0 \N 510 \N 148 \N 267 1.0 1 2019-03-16 21:48:35.606341 2019-03-16 21:48:35.606341 0 \N 511 \N 183 \N 268 1.0 1 2019-03-16 22:06:01.468194 2019-03-16 22:06:01.468194 0 \N 512 \N 136 \N 269 1.0 1 2019-03-17 21:19:28.357593 2019-03-17 21:19:28.357593 0 \N 513 \N 302 \N 270 1.0 1 2019-03-20 00:41:21.460409 2019-03-20 00:41:21.460409 0 \N 514 \N 232 \N 271 1.0 1 2019-03-20 01:59:48.285358 2019-03-20 01:59:48.285358 0 \N 515 \N 88 \N \N 0 0 2019-03-20 21:37:56.161005 2019-03-20 21:37:56.161005 7 14 516 \N 142 \N 272 1.0 1 2019-03-21 00:20:15.622475 2019-03-21 00:20:15.622475 0 \N 517 \N 18 \N 273 2.0 1 2019-03-21 00:29:39.547241 2019-03-21 00:29:39.547241 0 \N 518 \N 150 \N 274 1.0 1 2019-03-21 01:37:03.627188 2019-03-21 01:37:03.627188 0 \N 519 \N 497 50 \N 6.0 0 2019-03-21 22:28:11.118874 2019-03-21 22:28:11.118874 1 \N 520 \N 498 51 \N 6.0 0 2019-03-21 22:30:38.567529 2019-03-21 22:30:38.567529 1 \N 521 \N 499 52 \N 12.0 0 2019-03-21 22:33:35.710671 2019-03-21 22:33:35.710671 1 \N 522 \N 500 53 \N 6.0 0 2019-03-21 22:37:44.513368 2019-03-21 22:37:44.513368 1 \N 523 \N 501 54 \N 6.0 0 2019-03-21 22:41:21.216993 2019-03-21 22:41:21.216993 1 \N 524 \N 502 55 \N 6.0 0 2019-03-21 22:44:19.781122 2019-03-21 22:44:19.781122 1 \N 525 \N 503 56 \N 6.0 0 2019-03-21 22:47:05.444368 2019-03-21 22:47:05.444368 1 \N 526 \N 504 57 \N 6.0 0 2019-03-21 22:50:07.711277 2019-03-21 22:50:07.711277 1 \N 527 \N 505 58 \N 1.0 0 2019-03-21 22:52:32.933985 2019-03-21 22:52:32.933985 1 \N 528 \N 506 59 \N 6.0 0 2019-03-21 22:54:19.446937 2019-03-21 22:54:19.446937 1 \N 529 \N 507 60 \N 6.0 0 2019-03-21 23:04:23.03099 2019-03-21 23:04:23.03099 1 \N 530 \N 508 60 \N 6.0 0 2019-03-21 23:04:23.056275 2019-03-21 23:04:23.056275 1 \N 531 \N 509 61 \N 6.0 0 2019-03-21 23:45:39.824087 2019-03-21 23:45:39.824087 1 \N 532 \N 510 61 \N 6.0 0 2019-03-21 23:45:39.85573 2019-03-21 23:45:39.85573 1 \N 533 \N 511 61 \N 6.0 0 2019-03-21 23:45:39.886755 2019-03-21 23:45:39.886755 1 \N 534 \N 512 61 \N 6.0 0 2019-03-21 23:45:39.918273 2019-03-21 23:45:39.918273 1 \N 535 \N 513 61 \N 6.0 0 2019-03-21 23:45:39.949784 2019-03-21 23:45:39.949784 1 \N 536 \N 514 61 \N 6.0 0 2019-03-21 23:45:39.981882 2019-03-21 23:45:39.981882 1 \N 537 \N 515 62 \N 6.0 0 2019-03-21 23:50:20.042135 2019-03-21 23:50:20.042135 1 \N 538 \N 140 \N 275 1.0 1 2019-03-21 23:54:37.762951 2019-03-21 23:54:37.762951 0 \N 539 \N 406 \N 276 1.0 1 2019-03-22 01:25:33.696614 2019-03-22 01:25:33.696614 0 \N 540 \N 327 \N 277 1.0 1 2019-03-22 18:21:50.332625 2019-03-22 18:21:50.332625 0 \N 541 \N 422 \N 277 1.0 1 2019-03-22 18:21:50.367737 2019-03-22 18:21:50.367737 0 \N 542 \N 496 \N 278 1.0 1 2019-03-22 19:33:11.714124 2019-03-22 19:33:11.714124 0 \N 543 \N 143 \N 278 1.0 1 2019-03-22 19:33:11.74005 2019-03-22 19:33:11.74005 0 \N 544 \N 147 \N 279 1.0 1 2019-03-22 19:35:16.955395 2019-03-22 19:35:16.955395 0 \N 545 \N 237 \N 280 1.0 1 2019-03-22 19:48:49.388217 2019-03-22 19:48:49.388217 0 \N 546 \N 92 \N \N 2.0 0 2019-03-23 17:28:59.130208 2019-03-23 17:28:59.130208 7 23 547 \N 145 \N \N 2.0 0 2019-03-23 17:28:59.152182 2019-03-23 17:28:59.152182 7 23 548 \N 201 \N \N 5.0 0 2019-03-23 17:28:59.173979 2019-03-23 17:28:59.173979 7 23 549 \N 194 \N \N 2.0 0 2019-03-23 17:28:59.202945 2019-03-23 17:28:59.202945 7 23 550 \N 140 \N \N 6.0 0 2019-03-23 17:29:05.432044 2019-03-23 17:29:05.432044 7 22 551 \N 499 \N \N 6.0 0 2019-03-23 17:29:10.559679 2019-03-23 17:29:10.559679 7 21 552 \N 143 \N \N 5.0 0 2019-03-23 17:44:59.999371 2019-03-23 17:44:59.999371 7 24 553 \N 287 \N 281 1.0 1 2019-03-23 18:07:13.493751 2019-03-23 18:07:13.493751 0 \N 554 \N 416 \N 282 1.0 1 2019-03-23 20:55:34.62539 2019-03-23 20:55:34.62539 0 \N 555 \N 416 \N 282 1.0 0 2019-03-23 21:00:42.210371 2019-03-23 21:00:42.210371 9 \N 556 \N 418 \N 283 1.0 1 2019-03-23 21:01:29.547723 2019-03-23 21:01:29.547723 0 \N 557 \N 505 63 \N 5.0 0 2019-03-23 22:13:51.645881 2019-03-23 22:13:51.645881 1 \N 558 \N 322 \N 284 1.0 1 2019-03-23 22:20:48.073079 2019-03-23 22:20:48.073079 0 \N 559 \N 516 64 \N 6.0 0 2019-03-23 23:37:06.267768 2019-03-23 23:37:06.267768 1 \N 560 \N 285 \N 285 1.0 1 2019-03-24 00:18:49.14353 2019-03-24 00:18:49.14353 0 \N 561 \N 139 \N 286 1.0 1 2019-03-24 18:04:14.019155 2019-03-24 18:04:14.019155 0 \N 562 \N 476 \N 286 1.0 1 2019-03-24 18:04:14.049607 2019-03-24 18:04:14.049607 0 \N 563 \N 194 \N 287 1.0 1 2019-03-24 18:49:24.441022 2019-03-24 18:49:24.441022 0 \N 564 \N 194 \N 287 1.0 0 2019-03-24 18:49:39.674255 2019-03-24 18:49:39.674255 3 \N 565 \N 194 \N 288 1.0 1 2019-03-24 18:50:16.974483 2019-03-24 18:50:16.974483 0 \N 566 \N 194 \N 288 1.0 0 2019-03-24 18:50:45.070585 2019-03-24 18:50:45.070585 3 \N 567 \N 194 \N 289 1.0 1 2019-03-24 18:55:15.881862 2019-03-24 18:55:15.881862 0 \N 568 \N 194 \N 289 1.0 0 2019-03-24 18:58:08.032934 2019-03-24 18:58:08.032934 9 \N 569 \N 194 \N 290 1.0 1 2019-03-24 18:59:38.222383 2019-03-24 18:59:38.222383 0 \N 570 \N 194 \N 290 1.0 0 2019-03-24 18:59:47.65031 2019-03-24 18:59:47.65031 3 \N 571 \N 194 \N 291 1.0 1 2019-03-24 19:00:56.958158 2019-03-24 19:00:56.958158 0 \N 572 \N 167 \N 292 1.0 1 2019-03-24 20:46:04.625032 2019-03-24 20:46:04.625032 0 \N 573 \N 140 \N 293 1.0 1 2019-03-25 17:45:02.417335 2019-03-25 17:45:02.417335 0 \N 574 \N 250 \N 293 1.0 1 2019-03-25 17:45:02.451624 2019-03-25 17:45:02.451624 0 \N 575 \N 517 65 \N 6.0 0 2019-03-25 17:53:45.980399 2019-03-25 17:53:45.980399 1 \N 576 \N 189 \N \N 4.0 0 2019-03-25 17:54:12.470322 2019-03-25 17:54:12.470322 7 25 577 \N 187 \N \N 3.0 0 2019-03-25 17:54:12.491744 2019-03-25 17:54:12.491744 7 25 578 \N 517 \N \N 1.0 0 2019-03-25 17:55:23.863057 2019-03-25 17:55:23.863057 7 26 579 \N 517 \N 294 1.0 1 2019-03-25 17:55:56.710824 2019-03-25 17:55:56.710824 0 \N 580 \N 139 \N 295 1.0 1 2019-03-25 18:51:16.015177 2019-03-25 18:51:16.015177 0 \N 581 \N 457 \N 296 1.0 1 2019-03-25 20:03:15.857739 2019-03-25 20:03:15.857739 0 \N 582 \N 518 66 \N 6.0 0 2019-03-26 01:14:54.322285 2019-03-26 01:14:54.322285 1 \N 583 \N 518 66 \N 6.0 1 2019-03-26 01:19:34.899885 2019-03-26 01:19:34.899885 4 \N 584 \N 519 67 \N 6.0 0 2019-03-26 01:21:34.617683 2019-03-26 01:21:34.617683 1 \N 585 \N 520 68 \N 6.0 0 2019-03-26 01:30:27.100855 2019-03-26 01:30:27.100855 1 \N 586 \N 521 69 \N 6.0 0 2019-03-26 01:39:39.110658 2019-03-26 01:39:39.110658 1 \N 587 \N 522 70 \N 6.0 0 2019-03-26 01:44:45.521304 2019-03-26 01:44:45.521304 1 \N 588 \N 522 70 \N 6.0 1 2019-03-26 01:46:22.335922 2019-03-26 01:46:22.335922 4 \N 589 \N 523 71 \N 6.0 0 2019-03-26 01:47:25.908764 2019-03-26 01:47:25.908764 1 \N 590 \N 524 72 \N 6.0 0 2019-03-26 01:51:17.042883 2019-03-26 01:51:17.042883 1 \N 591 \N 525 73 \N 6.0 0 2019-03-26 01:58:13.721721 2019-03-26 01:58:13.721721 1 \N 592 \N 526 74 \N 6.0 0 2019-03-26 02:03:31.358499 2019-03-26 02:03:31.358499 1 \N 593 \N 527 75 \N 6.0 0 2019-03-26 02:06:12.582686 2019-03-26 02:06:12.582686 1 \N 594 \N 528 76 \N 6.0 0 2019-03-26 02:12:49.986479 2019-03-26 02:12:49.986479 1 \N 595 \N 529 77 \N 6.0 0 2019-03-26 02:15:13.807136 2019-03-26 02:15:13.807136 1 \N 596 \N 325 \N 297 1.0 1 2019-03-26 20:48:35.837398 2019-03-26 20:48:35.837398 0 \N 597 \N 202 \N 297 1.0 1 2019-03-26 20:48:35.869174 2019-03-26 20:48:35.869174 0 \N 598 \N 499 \N 298 1.0 1 2019-03-27 19:52:01.637323 2019-03-27 19:52:01.637323 0 \N 599 \N 424 \N 299 1.0 1 2019-03-27 20:55:49.733264 2019-03-27 20:55:49.733264 0 \N 600 \N 200 \N 300 1.0 1 2019-03-28 01:40:15.439938 2019-03-28 01:40:15.439938 0 \N 601 \N 150 \N 301 1.0 1 2019-03-28 22:30:03.132526 2019-03-28 22:30:03.132526 0 \N 602 \N 143 \N 302 1.0 1 2019-03-28 22:52:32.7845 2019-03-28 22:52:32.7845 0 \N 603 \N 470 \N 303 1.0 1 2019-03-28 22:53:48.147125 2019-03-28 22:53:48.147125 0 \N 604 \N 530 78 \N 1.0 0 2019-03-28 23:02:41.395004 2019-03-28 23:02:41.395004 1 \N 605 \N 530 \N 304 1.0 1 2019-03-28 23:04:09.91332 2019-03-28 23:04:09.91332 0 \N 606 \N 530 \N 304 1.0 0 2019-03-28 23:04:33.927039 2019-03-28 23:04:33.927039 3 \N 607 \N 530 \N 305 1.0 1 2019-03-28 23:05:43.032946 2019-03-28 23:05:43.032946 0 \N 608 \N 530 \N 305 1.0 0 2019-03-28 23:06:50.984696 2019-03-28 23:06:50.984696 3 \N 609 \N 330 \N \N 2.0 0 2019-03-28 23:12:32.799879 2019-03-28 23:12:32.799879 7 27 610 \N 327 \N \N 2.0 0 2019-03-28 23:12:32.823627 2019-03-28 23:12:32.823627 7 27 611 \N 322 \N \N 2.0 0 2019-03-28 23:12:32.851907 2019-03-28 23:12:32.851907 7 27 612 \N 427 \N \N 3.0 0 2019-03-28 23:12:32.87932 2019-03-28 23:12:32.87932 7 27 613 \N 469 \N \N 1.0 0 2019-03-28 23:12:54.279519 2019-03-28 23:12:54.279519 7 28 614 \N 497 \N 306 1.0 1 2019-03-29 18:02:27.527683 2019-03-29 18:02:27.527683 0 \N 615 \N 156 \N 307 1.0 1 2019-03-29 20:09:39.484087 2019-03-29 20:09:39.484087 0 \N 616 \N 413 \N 308 1.0 1 2019-03-29 21:18:31.399015 2019-03-29 21:18:31.399015 0 \N 617 \N 268 \N 309 1.0 1 2019-03-30 18:10:21.470413 2019-03-30 18:10:21.470413 0 \N 618 \N 499 \N 310 1.0 1 2019-03-30 20:53:55.58292 2019-03-30 20:53:55.58292 0 \N 619 \N 422 \N 311 1.0 1 2019-03-30 23:18:10.824972 2019-03-30 23:18:10.824972 0 \N 620 \N 389 \N 312 1.0 1 2019-03-30 23:20:20.210292 2019-03-30 23:20:20.210292 0 \N 621 \N 500 \N 313 1.0 1 2019-03-31 00:29:14.872648 2019-03-31 00:29:14.872648 0 \N 622 \N 255 \N 314 1.0 1 2019-03-31 01:19:49.250286 2019-03-31 01:19:49.250286 0 \N 623 \N 202 \N 314 1.0 1 2019-03-31 01:19:49.28725 2019-03-31 01:19:49.28725 0 \N 624 \N 479 \N 315 1.0 1 2019-03-31 19:14:29.274969 2019-03-31 19:14:29.274969 0 \N 625 \N 421 \N 315 1.0 1 2019-03-31 19:14:29.300323 2019-03-31 19:14:29.300323 0 \N 626 \N 453 \N 316 1.0 1 2019-03-31 19:37:06.22639 2019-03-31 19:37:06.22639 0 \N 627 \N 250 \N 317 1.0 1 2019-04-01 18:58:47.966007 2019-04-01 18:58:47.966007 0 \N 628 \N 327 \N 318 1.0 1 2019-04-01 19:55:52.204975 2019-04-01 19:55:52.204975 0 \N 629 \N 162 \N 318 1.0 1 2019-04-01 19:55:52.232257 2019-04-01 19:55:52.232257 0 \N 630 \N 146 \N 319 1.0 1 2019-04-01 20:09:45.475059 2019-04-01 20:09:45.475059 0 \N 631 \N 476 \N 319 1.0 1 2019-04-01 20:09:45.503532 2019-04-01 20:09:45.503532 0 \N 632 \N 497 \N 320 1.0 1 2019-04-02 17:39:34.967185 2019-04-02 17:39:34.967185 0 \N 633 \N 497 \N 321 1.0 1 2019-04-02 18:05:25.207243 2019-04-02 18:05:25.207243 0 \N 634 \N 133 \N 322 1.0 1 2019-04-02 23:40:57.033157 2019-04-02 23:40:57.033157 0 \N 635 \N 133 \N 322 1.0 0 2019-04-02 23:41:25.375284 2019-04-02 23:41:25.375284 3 \N 636 \N 133 \N 323 1.0 1 2019-04-02 23:42:02.402582 2019-04-02 23:42:02.402582 0 \N 637 \N 133 \N 323 1.0 0 2019-04-02 23:42:19.511399 2019-04-02 23:42:19.511399 9 \N 638 \N 477 \N 324 1.0 1 2019-04-03 17:41:02.194264 2019-04-03 17:41:02.194264 0 \N 639 \N 91 \N 325 1.0 1 2019-04-03 23:20:32.260899 2019-04-03 23:20:32.260899 0 \N 640 \N 521 \N 326 1.0 1 2019-04-04 01:57:10.473214 2019-04-04 01:57:10.473214 0 \N 641 \N 202 \N 326 1.0 1 2019-04-04 01:57:10.500469 2019-04-04 01:57:10.500469 0 \N 642 \N 526 \N 327 1.0 1 2019-04-04 17:21:49.552767 2019-04-04 17:21:49.552767 0 \N 643 \N 397 \N 328 1.0 1 2019-04-04 19:48:26.881243 2019-04-04 19:48:26.881243 0 \N 644 \N 516 \N 329 1.0 1 2019-04-04 21:31:07.960271 2019-04-04 21:31:07.960271 0 \N 645 \N 250 \N 330 1.0 1 2019-04-04 21:58:10.956988 2019-04-04 21:58:10.956988 0 \N 646 \N 251 \N 330 1.0 1 2019-04-04 21:58:11.00016 2019-04-04 21:58:11.00016 0 \N 647 \N 332 \N 331 2.0 1 2019-04-04 22:48:29.313229 2019-04-04 22:48:29.313229 0 \N 648 \N 332 \N 331 2.0 0 2019-04-04 22:48:33.774082 2019-04-04 22:48:33.774082 3 \N 649 \N 332 \N 332 1.0 1 2019-04-04 22:48:44.755974 2019-04-04 22:48:44.755974 0 \N 650 \N 249 \N 333 1.0 1 2019-04-05 01:46:34.991364 2019-04-05 01:46:34.991364 0 \N 651 \N 435 \N 334 1.0 1 2019-04-05 17:24:12.373604 2019-04-05 17:24:12.373604 0 \N 652 \N 433 \N 335 1.0 1 2019-04-05 19:33:18.554968 2019-04-05 19:33:18.554968 0 \N 653 \N 527 \N 335 1.0 1 2019-04-05 19:33:18.588079 2019-04-05 19:33:18.588079 0 \N 654 \N 527 \N 336 1.0 1 2019-04-05 19:35:12.350585 2019-04-05 19:35:12.350585 0 \N 655 \N 433 \N 336 1.0 1 2019-04-05 19:35:12.377761 2019-04-05 19:35:12.377761 0 \N 656 \N 527 \N 337 1.0 1 2019-04-05 19:37:11.734705 2019-04-05 19:37:11.734705 0 \N 657 \N 433 \N 337 1.0 1 2019-04-05 19:37:11.762022 2019-04-05 19:37:11.762022 0 \N 658 \N 44 \N 338 1.0 1 2019-04-05 21:45:38.203568 2019-04-05 21:45:38.203568 0 \N 659 \N 389 \N 339 1.0 1 2019-04-05 21:54:44.779909 2019-04-05 21:54:44.779909 0 \N 660 \N 527 \N 335 1.0 0 2019-04-05 22:50:14.125357 2019-04-05 22:50:14.125357 3 \N 661 \N 433 \N 335 1.0 0 2019-04-05 22:50:14.149318 2019-04-05 22:50:14.149318 3 \N 662 \N 433 \N 336 1.0 0 2019-04-05 22:50:19.969188 2019-04-05 22:50:19.969188 3 \N 663 \N 527 \N 336 1.0 0 2019-04-05 22:50:19.992513 2019-04-05 22:50:19.992513 3 \N 664 \N 202 \N 340 1.0 1 2019-04-05 23:46:45.31942 2019-04-05 23:46:45.31942 0 \N 665 \N 318 \N 341 1.0 1 2019-04-05 23:54:59.367018 2019-04-05 23:54:59.367018 0 \N 666 \N 257 \N 342 1.0 1 2019-04-06 20:37:14.954517 2019-04-06 20:37:14.954517 0 \N 667 \N 499 \N 343 1.0 1 2019-04-06 21:16:48.957537 2019-04-06 21:16:48.957537 0 \N 668 \N 158 \N 343 1.0 1 2019-04-06 21:16:48.982263 2019-04-06 21:16:48.982263 0 \N 669 \N 499 \N 344 1.0 1 2019-04-06 22:26:42.018096 2019-04-06 22:26:42.018096 0 \N 670 \N 499 \N 344 1.0 0 2019-04-06 22:28:16.8091 2019-04-06 22:28:16.8091 3 \N 671 \N 140 \N 345 1.0 1 2019-04-06 22:37:18.1271 2019-04-06 22:37:18.1271 0 \N 672 \N 499 \N 345 2.0 1 2019-04-06 22:37:18.156699 2019-04-06 22:37:18.156699 0 \N 673 \N 499 \N 345 2.0 0 2019-04-06 22:38:37.718948 2019-04-06 22:38:37.718948 3 \N 674 \N 140 \N 345 1.0 0 2019-04-06 22:38:37.746956 2019-04-06 22:38:37.746956 3 \N 675 \N 497 \N 346 1.0 1 2019-04-06 22:40:13.981899 2019-04-06 22:40:13.981899 0 \N 676 \N 499 \N 346 2.0 1 2019-04-06 22:40:14.004966 2019-04-06 22:40:14.004966 0 \N 677 \N 140 \N 346 1.0 1 2019-04-06 22:40:14.027136 2019-04-06 22:40:14.027136 0 \N 678 \N 140 \N \N 1.0 0 2019-04-06 22:53:42.102573 2019-04-06 22:53:42.102573 7 29 679 \N 499 \N \N 1.0 0 2019-04-06 22:53:42.136889 2019-04-06 22:53:42.136889 7 29 680 \N 140 \N 347 1.0 1 2019-04-06 23:38:39.287114 2019-04-06 23:38:39.287114 0 \N 681 \N 523 \N 348 1.0 1 2019-04-07 16:59:04.408857 2019-04-07 16:59:04.408857 0 \N 682 \N 151 \N 349 1.0 1 2019-04-07 19:08:38.451728 2019-04-07 19:08:38.451728 0 \N 683 \N 109 \N 350 1.0 1 2019-04-08 15:55:09.828731 2019-04-08 15:55:09.828731 0 \N 684 \N 531 79 \N 6.0 0 2019-04-08 22:48:35.960936 2019-04-08 22:48:35.960936 1 \N 685 \N 532 79 \N 6.0 0 2019-04-08 22:48:35.985739 2019-04-08 22:48:35.985739 1 \N 686 \N 157 80 \N 6.0 0 2019-04-08 22:59:10.470384 2019-04-08 22:59:10.470384 1 \N 687 \N 258 \N 351 1.0 1 2019-04-09 18:27:20.192535 2019-04-09 18:27:20.192535 0 \N 688 \N 185 \N 352 1.0 1 2019-04-10 16:11:15.79389 2019-04-10 16:11:15.79389 0 \N 689 \N 528 \N 353 1.0 1 2019-04-10 16:13:43.972614 2019-04-10 16:13:43.972614 0 \N 690 \N 156 \N 354 1.0 1 2019-04-10 19:06:37.882045 2019-04-10 19:06:37.882045 0 \N 691 \N 324 \N 355 1.0 1 2019-04-10 22:51:29.473938 2019-04-10 22:51:29.473938 0 \N 692 \N 469 \N 355 1.0 1 2019-04-10 22:51:29.50215 2019-04-10 22:51:29.50215 0 \N 693 \N 526 \N 356 1.0 1 2019-04-10 22:59:34.909921 2019-04-10 22:59:34.909921 0 \N 694 \N 514 \N 357 1.0 1 2019-04-11 00:13:16.816199 2019-04-11 00:13:16.816199 0 \N 695 \N 398 \N 358 1.0 1 2019-04-11 01:37:32.054707 2019-04-11 01:37:32.054707 0 \N 696 \N 158 \N 359 1.0 1 2019-04-11 17:32:10.613763 2019-04-11 17:32:10.613763 0 \N 697 \N 398 \N 360 1.0 1 2019-04-11 22:05:12.242273 2019-04-11 22:05:12.242273 0 \N 698 \N 418 \N 361 1.0 1 2019-04-12 00:21:56.328679 2019-04-12 00:21:56.328679 0 \N 699 \N 358 \N 362 1.0 1 2019-04-12 01:22:31.356814 2019-04-12 01:22:31.356814 0 \N 700 \N 358 \N 362 1.0 0 2019-04-12 01:22:41.049308 2019-04-12 01:22:41.049308 3 \N 701 \N 159 \N 363 1.0 1 2019-04-12 16:35:39.733866 2019-04-12 16:35:39.733866 0 \N 702 \N 140 \N 364 1.0 1 2019-04-12 17:50:17.196341 2019-04-12 17:50:17.196341 0 \N 703 \N 202 \N 364 1.0 1 2019-04-12 17:50:17.22149 2019-04-12 17:50:17.22149 0 \N 704 \N 523 \N 365 1.0 1 2019-04-12 18:05:25.197323 2019-04-12 18:05:25.197323 0 \N 705 \N 202 \N 366 1.0 1 2019-04-13 00:39:52.050715 2019-04-13 00:39:52.050715 0 \N 706 \N 467 \N 366 1.0 1 2019-04-13 00:39:52.088244 2019-04-13 00:39:52.088244 0 \N 707 \N 515 \N 367 1.0 1 2019-04-13 00:42:28.427366 2019-04-13 00:42:28.427366 0 \N 708 \N 514 \N 368 1.0 1 2019-04-13 00:50:30.227225 2019-04-13 00:50:30.227225 0 \N 709 \N 268 \N 369 1.0 1 2019-04-13 17:20:28.179923 2019-04-13 17:20:28.179923 0 \N 710 \N 494 \N \N 1.0 0 2019-04-13 18:22:55.214371 2019-04-13 18:22:55.214371 7 30 711 \N 89 \N 370 1.0 1 2019-04-13 21:49:34.130182 2019-04-13 21:49:34.130182 0 \N 712 \N 526 \N 371 1.0 1 2019-04-13 23:40:46.496201 2019-04-13 23:40:46.496201 0 \N 713 \N 418 \N 372 1.0 1 2019-04-14 18:56:21.680407 2019-04-14 18:56:21.680407 0 \N 714 \N 418 \N 372 1.0 0 2019-04-14 18:56:35.80811 2019-04-14 18:56:35.80811 3 \N 715 \N 418 \N 373 1.0 1 2019-04-14 18:59:41.708493 2019-04-14 18:59:41.708493 0 \N 716 \N 367 \N 373 2.0 1 2019-04-14 18:59:41.734593 2019-04-14 18:59:41.734593 0 \N 717 \N 180 \N 374 1.0 1 2019-04-14 19:23:24.98926 2019-04-14 19:23:24.98926 0 \N 718 \N 367 \N 375 1.0 1 2019-04-14 20:03:20.659888 2019-04-14 20:03:20.659888 0 \N 719 \N 400 \N 376 1.0 1 2019-04-15 18:07:16.270687 2019-04-15 18:07:16.270687 0 \N 720 \N 74 \N 377 1.0 1 2019-04-15 18:14:52.602411 2019-04-15 18:14:52.602411 0 \N 721 \N 250 \N 378 1.0 1 2019-04-15 21:37:17.573673 2019-04-15 21:37:17.573673 0 \N 722 \N 517 \N 379 1.0 1 2019-04-16 00:00:02.178146 2019-04-16 00:00:02.178146 0 \N 723 \N 483 \N 380 1.0 1 2019-04-16 00:18:00.444716 2019-04-16 00:18:00.444716 0 \N 724 \N 332 \N 380 1.0 1 2019-04-16 00:18:00.480842 2019-04-16 00:18:00.480842 0 \N 725 \N 332 \N 380 1.0 0 2019-04-16 00:29:26.661703 2019-04-16 00:29:26.661703 9 \N 726 \N 483 \N 380 1.0 0 2019-04-16 00:29:26.693366 2019-04-16 00:29:26.693366 9 \N 727 \N 498 \N 381 1.0 1 2019-04-16 00:30:06.949341 2019-04-16 00:30:06.949341 0 \N 728 \N 332 \N 382 1.0 1 2019-04-16 00:41:29.945887 2019-04-16 00:41:29.945887 0 \N 729 \N 265 81 \N 1.0 0 2019-04-16 00:45:30.329152 2019-04-16 00:45:30.329152 1 \N 730 \N 271 81 \N 1.0 0 2019-04-16 00:45:30.365236 2019-04-16 00:45:30.365236 1 \N 731 \N 533 81 \N 1.0 0 2019-04-16 00:45:30.399067 2019-04-16 00:45:30.399067 1 \N 732 \N 484 81 \N 12.0 0 2019-04-16 00:45:30.434414 2019-04-16 00:45:30.434414 1 \N 733 \N 202 \N 383 1.0 1 2019-04-16 00:52:17.042167 2019-04-16 00:52:17.042167 0 \N 734 \N 413 \N 384 1.0 1 2019-04-16 00:56:39.710474 2019-04-16 00:56:39.710474 0 \N 735 \N 195 \N 385 1.0 1 2019-04-16 01:09:30.497494 2019-04-16 01:09:30.497494 0 \N 736 \N 534 82 \N 2.0 0 2019-04-16 17:48:02.839104 2019-04-16 17:48:02.839104 1 \N 737 \N 535 82 \N 3.0 0 2019-04-16 17:48:02.865548 2019-04-16 17:48:02.865548 1 \N 738 \N 60 82 \N 11.0 0 2019-04-16 17:48:02.910162 2019-04-16 17:48:02.910162 1 \N 739 \N 536 82 \N 3.0 0 2019-04-16 17:48:02.932422 2019-04-16 17:48:02.932422 1 \N 740 \N 537 82 \N 7.0 0 2019-04-16 17:48:02.954346 2019-04-16 17:48:02.954346 1 \N 741 \N 60 83 \N 1.0 0 2019-04-16 17:50:00.86317 2019-04-16 17:50:00.86317 1 \N 742 \N 530 84 \N 1.0 0 2019-04-16 19:33:09.02185 2019-04-16 19:33:09.02185 1 \N 743 \N 486 84 \N 1.0 0 2019-04-16 19:33:09.047067 2019-04-16 19:33:09.047067 1 \N 744 \N 492 84 \N 2.0 0 2019-04-16 19:33:09.069959 2019-04-16 19:33:09.069959 1 \N 745 \N 358 84 \N 1.0 0 2019-04-16 19:33:09.098974 2019-04-16 19:33:09.098974 1 \N 746 \N 351 84 \N 1.0 0 2019-04-16 19:33:09.128733 2019-04-16 19:33:09.128733 1 \N 747 \N 538 84 \N 2.0 0 2019-04-16 19:33:09.152938 2019-04-16 19:33:09.152938 1 \N 748 \N 539 84 \N 1.0 0 2019-04-16 19:33:09.176886 2019-04-16 19:33:09.176886 1 \N 749 \N 540 84 \N 2.0 0 2019-04-16 19:33:09.200317 2019-04-16 19:33:09.200317 1 \N 750 \N 541 84 \N 2.0 0 2019-04-16 19:33:09.223799 2019-04-16 19:33:09.223799 1 \N 751 \N 542 84 \N 1.0 0 2019-04-16 19:33:09.247937 2019-04-16 19:33:09.247937 1 \N 752 \N 543 84 \N 1.0 0 2019-04-16 19:33:09.277306 2019-04-16 19:33:09.277306 1 \N 753 \N 544 84 \N 1.0 0 2019-04-16 19:33:09.308832 2019-04-16 19:33:09.308832 1 \N 754 \N 545 84 \N 1.0 0 2019-04-16 19:33:09.341511 2019-04-16 19:33:09.341511 1 \N 755 \N 443 85 \N 1.0 0 2019-04-16 20:34:42.42938 2019-04-16 20:34:42.42938 1 \N 756 \N 546 85 \N 1.0 0 2019-04-16 20:34:42.455084 2019-04-16 20:34:42.455084 1 \N 757 \N 547 85 \N 1.0 0 2019-04-16 20:34:42.479486 2019-04-16 20:34:42.479486 1 \N 758 \N 546 \N 386 1.0 1 2019-04-16 20:37:29.584164 2019-04-16 20:37:29.584164 0 \N 759 \N 49 \N 387 1.0 1 2019-04-16 22:19:00.043489 2019-04-16 22:19:00.043489 0 \N 760 \N 497 \N 388 1.0 1 2019-04-16 23:05:57.203858 2019-04-16 23:05:57.203858 0 \N 761 \N 203 \N 389 1.0 1 2019-04-16 23:51:02.500747 2019-04-16 23:51:02.500747 0 \N 762 \N 201 \N 390 1.0 1 2019-04-17 19:17:42.041947 2019-04-17 19:17:42.041947 0 \N 763 \N 201 \N 390 1.0 0 2019-04-17 19:17:47.741788 2019-04-17 19:17:47.741788 3 \N 764 \N 201 \N 391 1.0 1 2019-04-17 19:20:06.903348 2019-04-17 19:20:06.903348 0 \N 765 \N 369 \N 392 2.0 1 2019-04-17 19:38:03.649963 2019-04-17 19:38:03.649963 0 \N 766 \N 185 \N 393 1.0 1 2019-04-17 21:15:22.458027 2019-04-17 21:15:22.458027 0 \N 767 \N 140 \N 394 1.0 1 2019-04-17 21:46:21.869571 2019-04-17 21:46:21.869571 0 \N 768 \N 494 \N 395 1.0 1 2019-04-17 21:50:30.322645 2019-04-17 21:50:30.322645 0 \N 769 \N 140 \N 396 1.0 1 2019-04-17 22:20:22.153032 2019-04-17 22:20:22.153032 0 \N 770 \N 483 \N 397 1.0 1 2019-04-17 23:26:15.234381 2019-04-17 23:26:15.234381 0 \N 771 \N 345 \N 398 1.0 1 2019-04-17 23:37:06.161162 2019-04-17 23:37:06.161162 0 \N 772 \N 412 \N 399 1.0 1 2019-04-18 00:08:34.520804 2019-04-18 00:08:34.520804 0 \N 773 \N 413 \N 399 1.0 1 2019-04-18 00:08:34.554769 2019-04-18 00:08:34.554769 0 \N 774 \N 250 \N 400 1.0 1 2019-04-18 00:12:46.746543 2019-04-18 00:12:46.746543 0 \N 775 \N 257 \N 401 1.0 1 2019-04-18 00:41:31.372297 2019-04-18 00:41:31.372297 0 \N 776 \N 55 \N 402 1.0 1 2019-04-22 19:26:50.63062 2019-04-22 19:26:50.63062 0 \N 777 \N 462 \N 403 1.0 1 2019-04-22 19:34:39.283807 2019-04-22 19:34:39.283807 0 \N 778 \N 321 \N 404 1.0 1 2019-04-22 19:37:17.395572 2019-04-22 19:37:17.395572 0 \N 779 \N 504 \N 405 1.0 1 2019-04-22 22:43:56.473931 2019-04-22 22:43:56.473931 0 \N 780 \N 485 \N 406 1.0 1 2019-04-23 19:12:21.064654 2019-04-23 19:12:21.064654 0 \N 781 \N 433 \N 406 1.0 1 2019-04-23 19:12:21.100899 2019-04-23 19:12:21.100899 0 \N 782 \N 477 \N 407 1.0 1 2019-04-23 21:45:37.70524 2019-04-23 21:45:37.70524 0 \N 783 \N 76 \N 408 1.0 1 2019-04-23 21:58:09.500295 2019-04-23 21:58:09.500295 0 \N 784 \N 269 \N 409 1.0 1 2019-04-23 22:49:16.535893 2019-04-23 22:49:16.535893 0 \N 785 \N 443 \N 409 1.0 1 2019-04-23 22:49:16.561179 2019-04-23 22:49:16.561179 0 \N 786 \N 418 \N 410 1.0 1 2019-04-23 23:39:52.780916 2019-04-23 23:39:52.780916 0 \N 787 \N 155 \N 411 1.0 1 2019-04-23 23:44:35.686459 2019-04-23 23:44:35.686459 0 \N 788 \N 494 \N 412 1.0 1 2019-04-24 21:08:51.830263 2019-04-24 21:08:51.830263 0 \N 789 \N 156 \N 413 1.0 1 2019-04-25 00:06:24.845118 2019-04-25 00:06:24.845118 0 \N 790 \N 396 \N 414 1.0 1 2019-04-25 01:11:09.07044 2019-04-25 01:11:09.07044 0 \N 791 \N 462 \N 415 1.0 1 2019-04-25 01:33:37.454736 2019-04-25 01:33:37.454736 0 \N 792 \N 203 \N 415 1.0 1 2019-04-25 01:33:37.486399 2019-04-25 01:33:37.486399 0 \N 793 \N 513 \N 416 1.0 1 2019-04-26 17:49:07.016455 2019-04-26 17:49:07.016455 0 \N 794 \N 513 \N 416 1.0 0 2019-04-26 17:49:45.859355 2019-04-26 17:49:45.859355 9 \N 795 \N 157 \N 417 1.0 1 2019-04-27 00:10:51.294253 2019-04-27 00:10:51.294253 0 \N 796 \N 140 \N 418 1.0 1 2019-04-27 00:32:34.543416 2019-04-27 00:32:34.543416 0 \N 797 \N 152 \N 419 1.0 1 2019-04-27 01:17:44.076259 2019-04-27 01:17:44.076259 0 \N 798 \N 152 \N 419 1.0 0 2019-04-27 01:54:21.029454 2019-04-27 01:54:21.029454 3 \N 799 \N 509 \N 420 1.0 1 2019-04-27 16:27:21.470275 2019-04-27 16:27:21.470275 0 \N 800 \N 476 \N 420 1.0 1 2019-04-27 16:27:21.495477 2019-04-27 16:27:21.495477 0 \N 801 \N 514 \N 421 1.0 1 2019-04-27 16:29:45.078076 2019-04-27 16:29:45.078076 0 \N 802 \N 152 \N 422 1.0 1 2019-04-27 17:50:13.10745 2019-04-27 17:50:13.10745 0 \N 803 \N 515 \N 423 1.0 1 2019-04-27 19:06:31.141414 2019-04-27 19:06:31.141414 0 \N 804 \N 513 \N 424 1.0 1 2019-04-27 19:48:09.088511 2019-04-27 19:48:09.088511 0 \N 805 \N 516 \N 425 1.0 1 2019-04-27 20:33:11.920044 2019-04-27 20:33:11.920044 0 \N 806 \N 157 \N 426 1.0 1 2019-04-27 20:43:33.379542 2019-04-27 20:43:33.379542 0 \N 807 \N 249 \N 427 1.0 1 2019-04-28 00:28:12.210768 2019-04-28 00:28:12.210768 0 \N 808 \N 249 \N 427 1.0 0 2019-04-28 00:28:22.591588 2019-04-28 00:28:22.591588 3 \N 809 \N 249 \N 428 1.0 1 2019-04-28 00:29:14.253713 2019-04-28 00:29:14.253713 0 \N 810 \N 515 \N 429 1.0 1 2019-04-28 01:25:21.614961 2019-04-28 01:25:21.614961 0 \N 811 \N 519 \N 430 1.0 1 2019-04-29 16:04:16.690254 2019-04-29 16:04:16.690254 0 \N 812 \N 479 \N 431 1.0 1 2019-04-29 20:21:30.997386 2019-04-29 20:21:30.997386 0 \N 813 \N 205 \N \N 11.0 0 2019-04-29 22:13:00.513729 2019-04-29 22:13:00.513729 7 31 814 \N 219 \N \N 4.0 0 2019-04-29 22:13:00.548674 2019-04-29 22:13:00.548674 7 31 815 \N 209 \N \N 6.0 0 2019-04-29 22:13:00.569093 2019-04-29 22:13:00.569093 7 31 816 \N 508 \N \N 6.0 0 2019-04-29 22:13:00.598041 2019-04-29 22:13:00.598041 7 31 817 \N 146 \N \N 5.0 0 2019-04-29 22:13:00.620681 2019-04-29 22:13:00.620681 7 31 818 \N 147 \N \N 5.0 0 2019-04-29 22:13:00.643003 2019-04-29 22:13:00.643003 7 31 819 \N 506 \N \N 6.0 0 2019-04-29 22:21:56.611616 2019-04-29 22:21:56.611616 7 32 820 \N 142 \N \N 5.0 0 2019-04-29 22:33:04.53374 2019-04-29 22:33:04.53374 7 33 821 \N 525 \N \N 6.0 0 2019-04-29 22:33:04.553628 2019-04-29 22:33:04.553628 7 33 822 \N 500 \N 432 1.0 1 2019-04-29 22:51:55.869848 2019-04-29 22:51:55.869848 0 \N 823 \N 180 \N 433 1.0 1 2019-04-30 00:49:29.967508 2019-04-30 00:49:29.967508 0 \N 824 \N 321 \N 434 1.0 1 2019-04-30 16:33:04.748327 2019-04-30 16:33:04.748327 0 \N 825 \N 397 \N 434 1.0 1 2019-04-30 16:33:04.777589 2019-04-30 16:33:04.777589 0 \N 826 \N 505 \N 435 1.0 1 2019-04-30 20:30:52.554737 2019-04-30 20:30:52.554737 0 \N 827 \N 504 \N 436 1.0 1 2019-04-30 20:32:49.321969 2019-04-30 20:32:49.321969 0 \N 828 \N 140 \N 437 1.0 1 2019-04-30 21:40:47.18787 2019-04-30 21:40:47.18787 0 \N 829 \N 177 \N 438 1.0 1 2019-04-30 23:06:20.942222 2019-04-30 23:06:20.942222 0 \N 830 \N 177 \N 438 1.0 0 2019-04-30 23:10:54.699068 2019-04-30 23:10:54.699068 9 \N 831 \N 177 \N 439 1.0 1 2019-04-30 23:12:50.81528 2019-04-30 23:12:50.81528 0 \N 832 \N 505 \N 440 1.0 1 2019-05-01 18:57:08.676372 2019-05-01 18:57:08.676372 0 \N 833 \N 240 \N 441 1.0 1 2019-05-02 20:34:33.226192 2019-05-02 20:34:33.226192 0 \N 834 \N 434 \N \N 4.0 0 2019-05-02 21:25:44.404604 2019-05-02 21:25:44.404604 7 34 835 \N 434 \N \N 1.0 0 2019-05-02 21:26:07.194899 2019-05-02 21:26:07.194899 7 35 836 \N 220 \N 442 1.0 1 2019-05-02 23:07:51.30328 2019-05-02 23:07:51.30328 0 \N 837 \N 181 \N 443 1.0 1 2019-05-02 23:13:21.650756 2019-05-02 23:13:21.650756 0 \N 838 \N 530 \N 444 1.0 1 2019-05-02 23:39:09.89839 2019-05-02 23:39:09.89839 0 \N 839 \N 145 \N 445 1.0 1 2019-05-03 01:29:15.606112 2019-05-03 01:29:15.606112 0 \N 840 \N 152 \N 446 1.0 1 2019-05-03 17:06:07.155425 2019-05-03 17:06:07.155425 0 \N 841 \N 227 \N 447 1.0 1 2019-05-03 22:58:11.073721 2019-05-03 22:58:11.073721 0 \N 842 \N 503 \N 448 1.0 1 2019-05-04 01:08:18.544408 2019-05-04 01:08:18.544408 0 \N 843 \N 548 86 \N 6.0 0 2019-05-04 01:11:15.159704 2019-05-04 01:11:15.159704 1 \N 844 \N 548 \N 449 1.0 1 2019-05-04 01:11:44.889507 2019-05-04 01:11:44.889507 0 \N 845 \N 515 \N 450 1.0 1 2019-05-04 16:45:55.112023 2019-05-04 16:45:55.112023 0 \N 846 \N 199 87 \N 18.0 0 2019-05-04 17:18:59.805657 2019-05-04 17:18:59.805657 1 \N 847 \N 391 \N 451 1.0 1 2019-05-04 18:05:15.505447 2019-05-04 18:05:15.505447 0 \N 848 \N 549 88 \N 6.0 0 2019-05-04 18:09:16.707378 2019-05-04 18:09:16.707378 1 \N 849 \N 550 88 \N 6.0 0 2019-05-04 18:09:16.733153 2019-05-04 18:09:16.733153 1 \N 850 \N 551 88 \N 6.0 0 2019-05-04 18:09:16.760385 2019-05-04 18:09:16.760385 1 \N 851 \N 552 89 \N 6.0 0 2019-05-04 18:26:59.536785 2019-05-04 18:26:59.536785 1 \N 852 \N 553 89 \N 6.0 0 2019-05-04 18:26:59.558659 2019-05-04 18:26:59.558659 1 \N 853 \N 554 89 \N 6.0 0 2019-05-04 18:26:59.580858 2019-05-04 18:26:59.580858 1 \N 854 \N 555 89 \N 6.0 0 2019-05-04 18:26:59.603531 2019-05-04 18:26:59.603531 1 \N 855 \N 556 90 \N 6.0 0 2019-05-04 18:38:14.254786 2019-05-04 18:38:14.254786 1 \N 856 \N 557 91 \N 6.0 0 2019-05-04 18:41:14.129757 2019-05-04 18:41:14.129757 1 \N 857 \N 396 \N 452 1.0 1 2019-05-04 18:53:21.302187 2019-05-04 18:53:21.302187 0 \N 858 \N 558 92 \N 6.0 0 2019-05-04 19:04:33.779563 2019-05-04 19:04:33.779563 1 \N 859 \N 559 92 \N 6.0 0 2019-05-04 19:04:33.806039 2019-05-04 19:04:33.806039 1 \N 860 \N 560 92 \N 6.0 0 2019-05-04 19:04:33.838473 2019-05-04 19:04:33.838473 1 \N 861 \N 562 92 \N 6.0 0 2019-05-04 19:04:33.866105 2019-05-04 19:04:33.866105 1 \N 862 \N 563 92 \N 6.0 0 2019-05-04 19:04:33.892183 2019-05-04 19:04:33.892183 1 \N 863 \N 564 92 \N 6.0 0 2019-05-04 19:04:33.925232 2019-05-04 19:04:33.925232 1 \N 864 \N 565 92 \N 6.0 0 2019-05-04 19:04:33.953742 2019-05-04 19:04:33.953742 1 \N 865 \N 549 \N \N 6.0 0 2019-05-04 19:48:43.313792 2019-05-04 19:48:43.313792 7 38 866 \N 551 \N \N 6.0 0 2019-05-04 19:48:43.342882 2019-05-04 19:48:43.342882 7 38 867 \N 555 \N \N 3.0 0 2019-05-04 19:48:43.369614 2019-05-04 19:48:43.369614 7 38 868 \N 560 \N \N 6.0 0 2019-05-04 19:48:43.395164 2019-05-04 19:48:43.395164 7 38 869 \N 565 \N \N 6.0 0 2019-05-04 19:48:43.422074 2019-05-04 19:48:43.422074 7 38 870 \N 559 \N \N 6.0 0 2019-05-04 19:48:43.448148 2019-05-04 19:48:43.448148 7 38 871 \N 199 \N \N 9.0 0 2019-05-04 19:48:49.225158 2019-05-04 19:48:49.225158 7 37 872 \N 494 \N \N 2.0 0 2019-05-04 19:48:57.502478 2019-05-04 19:48:57.502478 7 36 873 \N 549 \N \N 1.0 0 2019-05-04 20:06:17.090621 2019-05-04 20:06:17.090621 7 39 874 \N 549 \N 453 1.0 1 2019-05-04 20:06:53.190466 2019-05-04 20:06:53.190466 0 \N 875 \N 199 \N 454 1.0 1 2019-05-04 20:51:15.738444 2019-05-04 20:51:15.738444 0 \N 876 \N 202 \N 455 1.0 1 2019-05-04 20:55:04.607901 2019-05-04 20:55:04.607901 0 \N 877 \N 76 \N 456 1.0 1 2019-05-04 21:33:04.459999 2019-05-04 21:33:04.459999 0 \N 878 \N 558 \N \N 6.0 0 2019-05-04 21:40:03.001049 2019-05-04 21:40:03.001049 7 40 879 \N 421 \N 457 1.0 1 2019-05-04 22:16:33.551746 2019-05-04 22:16:33.551746 0 \N 880 \N 560 \N 457 1.0 1 2019-05-04 22:16:33.586655 2019-05-04 22:16:33.586655 0 \N 881 \N 285 \N 458 1.0 1 2019-05-04 23:32:45.828642 2019-05-04 23:32:45.828642 0 \N 882 \N 76 \N 459 1.0 1 2019-05-05 00:29:06.523281 2019-05-05 00:29:06.523281 0 \N 883 \N 87 \N 460 1.0 1 2019-05-05 00:57:47.37315 2019-05-05 00:57:47.37315 0 \N 884 \N 134 \N 461 1.0 1 2019-05-05 01:45:07.716982 2019-05-05 01:45:07.716982 0 \N 885 \N 134 \N 462 1.0 1 2019-05-05 17:02:12.368601 2019-05-05 17:02:12.368601 0 \N 886 \N 139 \N 462 1.0 1 2019-05-05 17:02:12.394582 2019-05-05 17:02:12.394582 0 \N 887 \N 513 \N 462 1.0 1 2019-05-05 17:02:12.423441 2019-05-05 17:02:12.423441 0 \N 888 \N 288 \N 463 1.0 1 2019-05-05 17:09:47.852923 2019-05-05 17:09:47.852923 0 \N 889 \N 295 \N 463 1.0 1 2019-05-05 17:09:47.878556 2019-05-05 17:09:47.878556 0 \N 890 \N 299 \N 463 1.0 1 2019-05-05 17:09:47.903159 2019-05-05 17:09:47.903159 0 \N 891 \N 289 \N 463 1.0 1 2019-05-05 17:09:47.929723 2019-05-05 17:09:47.929723 0 \N 892 \N 422 \N 463 1.0 1 2019-05-05 17:09:47.952034 2019-05-05 17:09:47.952034 0 \N 893 \N 367 \N 464 1.0 1 2019-05-05 17:14:41.768193 2019-05-05 17:14:41.768193 0 \N 894 \N 143 \N \N 6.0 0 2019-05-05 17:18:40.179429 2019-05-05 17:18:40.179429 7 41 895 \N 289 \N \N 2.0 0 2019-05-05 17:19:13.219469 2019-05-05 17:19:13.219469 7 42 896 \N 299 \N \N 3.0 0 2019-05-05 17:19:13.254863 2019-05-05 17:19:13.254863 7 42 897 \N 287 \N \N 2.0 0 2019-05-05 17:19:13.275829 2019-05-05 17:19:13.275829 7 42 898 \N 560 \N 465 1.0 1 2019-05-05 19:57:12.244474 2019-05-05 19:57:12.244474 0 \N 899 \N 389 \N 466 1.0 1 2019-05-05 21:01:10.106059 2019-05-05 21:01:10.106059 0 \N 900 \N 318 \N \N 1.0 0 2019-05-06 16:53:47.5963 2019-05-06 16:53:47.5963 7 43 901 \N 318 \N 467 1.0 1 2019-05-06 16:54:22.630889 2019-05-06 16:54:22.630889 0 \N 902 \N 507 \N 468 1.0 1 2019-05-06 17:23:53.457967 2019-05-06 17:23:53.457967 0 \N 903 \N 563 \N 468 1.0 1 2019-05-06 17:23:53.490357 2019-05-06 17:23:53.490357 0 \N 904 \N 331 \N 469 1.0 1 2019-05-06 17:44:58.289751 2019-05-06 17:44:58.289751 0 \N 905 \N 180 \N 470 1.0 1 2019-05-06 19:15:25.998368 2019-05-06 19:15:25.998368 0 \N 906 \N 254 \N 471 1.0 1 2019-05-06 20:10:06.169609 2019-05-06 20:10:06.169609 0 \N 907 \N 142 \N 472 1.0 1 2019-05-06 20:34:42.298604 2019-05-06 20:34:42.298604 0 \N 908 \N 483 \N 473 1.0 1 2019-05-06 22:01:29.676733 2019-05-06 22:01:29.676733 0 \N 909 \N 503 \N 474 1.0 1 2019-05-06 23:56:02.6844 2019-05-06 23:56:02.6844 0 \N 910 \N 563 \N 475 1.0 1 2019-05-07 00:04:11.742834 2019-05-07 00:04:11.742834 0 \N 911 \N 188 \N 475 1.0 1 2019-05-07 00:04:11.769937 2019-05-07 00:04:11.769937 0 \N 912 \N 143 \N 476 1.0 1 2019-05-07 00:34:11.225833 2019-05-07 00:34:11.225833 0 \N 913 \N 396 \N 477 1.0 1 2019-05-07 00:58:20.343877 2019-05-07 00:58:20.343877 0 \N 914 \N 63 \N 478 1.0 1 2019-05-07 18:02:24.167464 2019-05-07 18:02:24.167464 0 \N 915 \N 188 \N 479 1.0 1 2019-05-07 18:16:18.615817 2019-05-07 18:16:18.615817 0 \N 916 \N 420 \N 480 1.0 1 2019-05-07 18:26:30.080664 2019-05-07 18:26:30.080664 0 \N 917 \N 188 \N 481 1.0 1 2019-05-07 22:47:18.627142 2019-05-07 22:47:18.627142 0 \N 918 \N 200 \N 482 1.0 1 2019-05-07 22:49:55.052719 2019-05-07 22:49:55.052719 0 \N 919 \N 563 \N 483 1.0 1 2019-05-08 00:14:06.905022 2019-05-08 00:14:06.905022 0 \N 920 \N 199 \N 483 1.0 1 2019-05-08 00:14:06.945346 2019-05-08 00:14:06.945346 0 \N 921 \N 563 \N 484 1.0 1 2019-05-08 00:31:41.186478 2019-05-08 00:31:41.186478 0 \N 922 \N 340 \N \N 1.0 0 2019-05-08 00:39:36.849576 2019-05-08 00:39:36.849576 7 44 923 \N 340 \N 485 1.0 1 2019-05-08 00:41:30.331966 2019-05-08 00:41:30.331966 0 \N 924 \N 139 \N 486 1.0 1 2019-05-08 00:50:08.29686 2019-05-08 00:50:08.29686 0 \N 925 \N 520 \N 487 1.0 1 2019-05-08 01:27:05.982014 2019-05-08 01:27:05.982014 0 \N 926 \N 485 \N 487 1.0 1 2019-05-08 01:27:06.017318 2019-05-08 01:27:06.017318 0 \N 927 \N 554 \N 488 1.0 1 2019-05-08 01:53:22.021729 2019-05-08 01:53:22.021729 0 \N 928 \N 435 \N 489 1.0 1 2019-05-08 16:52:21.136122 2019-05-08 16:52:21.136122 0 \N 929 \N 205 \N 490 1.0 1 2019-05-08 16:58:11.224301 2019-05-08 16:58:11.224301 0 \N 930 \N 205 \N 490 1.0 0 2019-05-08 16:58:19.015286 2019-05-08 16:58:19.015286 3 \N 931 \N 556 \N 491 1.0 1 2019-05-08 17:13:10.679767 2019-05-08 17:13:10.679767 0 \N 932 \N 469 \N \N 1.0 0 2019-05-08 17:14:03.953514 2019-05-08 17:14:03.953514 7 45 933 \N 204 \N 492 1.0 1 2019-05-08 18:03:34.170872 2019-05-08 18:03:34.170872 0 \N 934 \N 192 \N 493 1.0 1 2019-05-08 18:23:35.57804 2019-05-08 18:23:35.57804 0 \N 935 \N 552 \N 494 1.0 1 2019-05-08 18:42:02.328164 2019-05-08 18:42:02.328164 0 \N 936 \N 552 \N 494 1.0 0 2019-05-08 18:43:59.708637 2019-05-08 18:43:59.708637 3 \N 937 \N 552 \N 495 1.0 1 2019-05-08 18:44:36.737303 2019-05-08 18:44:36.737303 0 \N 938 \N 205 \N 496 1.0 1 2019-05-08 18:49:05.180803 2019-05-08 18:49:05.180803 0 \N 939 \N 562 \N 497 1.0 1 2019-05-08 18:54:31.214459 2019-05-08 18:54:31.214459 0 \N 940 \N 556 \N 498 2.0 1 2019-05-08 19:04:41.061973 2019-05-08 19:04:41.061973 0 \N 941 \N 556 \N 498 2.0 0 2019-05-08 19:05:09.693052 2019-05-08 19:05:09.693052 3 \N 942 \N 556 \N 499 1.0 1 2019-05-08 19:05:24.111601 2019-05-08 19:05:24.111601 0 \N 943 \N 158 \N 500 1.0 1 2019-05-08 19:15:10.098333 2019-05-08 19:15:10.098333 0 \N 944 \N 323 \N 501 1.0 1 2019-05-08 20:07:54.137097 2019-05-08 20:07:54.137097 0 \N 945 \N 328 \N 502 1.0 1 2019-05-08 20:17:15.430327 2019-05-08 20:17:15.430327 0 \N 946 \N 485 \N 503 1.0 1 2019-05-08 20:28:53.308372 2019-05-08 20:28:53.308372 0 \N 947 \N 563 \N 504 1.0 1 2019-05-08 21:52:01.622909 2019-05-08 21:52:01.622909 0 \N 948 \N 199 \N 504 1.0 1 2019-05-08 21:52:01.646357 2019-05-08 21:52:01.646357 0 \N 949 \N 560 \N 505 1.0 1 2019-05-08 21:52:46.597119 2019-05-08 21:52:46.597119 0 \N 950 \N 507 \N 506 1.0 1 2019-05-08 22:25:00.971272 2019-05-08 22:25:00.971272 0 \N 951 \N 138 \N 507 1.0 1 2019-05-08 22:27:52.400748 2019-05-08 22:27:52.400748 0 \N 952 \N 220 \N 508 1.0 1 2019-05-08 23:21:46.879369 2019-05-08 23:21:46.879369 0 \N 953 \N 420 \N 509 1.0 1 2019-05-08 23:36:53.242248 2019-05-08 23:36:53.242248 0 \N 954 \N 143 \N 510 1.0 1 2019-05-08 23:38:38.225734 2019-05-08 23:38:38.225734 0 \N 955 \N 60 \N 511 1.0 1 2019-05-08 23:43:00.734252 2019-05-08 23:43:00.734252 0 \N 956 \N 199 \N 511 1.0 1 2019-05-08 23:43:00.770573 2019-05-08 23:43:00.770573 0 \N 957 \N 556 \N 512 1.0 1 2019-05-08 23:48:00.491047 2019-05-08 23:48:00.491047 0 \N 958 \N 184 \N 513 1.0 1 2019-05-09 00:44:21.315802 2019-05-09 00:44:21.315802 0 \N 959 \N 515 \N 514 1.0 1 2019-05-09 00:58:41.675947 2019-05-09 00:58:41.675947 0 \N 960 \N 140 \N 514 1.0 1 2019-05-09 00:58:41.718132 2019-05-09 00:58:41.718132 0 \N 961 \N 299 \N 515 1.0 1 2019-05-09 01:08:01.775076 2019-05-09 01:08:01.775076 0 \N 962 \N 454 \N 516 1.0 1 2019-05-09 01:22:05.649038 2019-05-09 01:22:05.649038 0 \N 963 \N 555 \N 517 1.0 1 2019-05-09 01:35:11.913935 2019-05-09 01:35:11.913935 0 \N 964 \N 380 \N 518 1.0 1 2019-05-09 01:43:45.6596 2019-05-09 01:43:45.6596 0 \N 965 \N 532 \N 518 1.0 1 2019-05-09 01:43:45.685517 2019-05-09 01:43:45.685517 0 \N 966 \N 249 \N 519 1.0 1 2019-05-09 02:05:04.265178 2019-05-09 02:05:04.265178 0 \N 967 \N 179 \N 520 1.0 1 2019-05-09 17:14:58.409968 2019-05-09 17:14:58.409968 0 \N 968 \N 563 \N 520 1.0 1 2019-05-09 17:14:58.443929 2019-05-09 17:14:58.443929 0 \N 969 \N 469 \N 521 1.0 1 2019-05-09 17:26:46.395936 2019-05-09 17:26:46.395936 0 \N 970 \N 469 \N 521 1.0 0 2019-05-09 17:27:48.725826 2019-05-09 17:27:48.725826 9 \N 971 \N 43 \N 522 1.0 1 2019-05-09 18:00:00.646379 2019-05-09 18:00:00.646379 0 \N 972 \N 32 \N 522 1.0 1 2019-05-09 18:00:00.685099 2019-05-09 18:00:00.685099 0 \N 973 \N 142 \N 523 1.0 1 2019-05-09 18:04:06.937074 2019-05-09 18:04:06.937074 0 \N 974 \N 367 \N 524 1.0 1 2019-05-09 18:13:03.554872 2019-05-09 18:13:03.554872 0 \N 975 \N 558 \N 525 1.0 1 2019-05-09 18:23:48.137462 2019-05-09 18:23:48.137462 0 \N 976 \N 199 \N 526 1.0 1 2019-05-09 18:30:48.208052 2019-05-09 18:30:48.208052 0 \N 977 \N 524 \N 527 1.0 1 2019-05-09 18:39:11.181296 2019-05-09 18:39:11.181296 0 \N 978 \N 16 \N 528 1.0 1 2019-05-09 18:43:39.108079 2019-05-09 18:43:39.108079 0 \N 979 \N 560 \N 529 1.0 1 2019-05-09 19:44:57.92519 2019-05-09 19:44:57.92519 0 \N 980 \N 360 \N 529 1.0 1 2019-05-09 19:44:57.96103 2019-05-09 19:44:57.96103 0 \N 981 \N 199 \N 530 1.0 1 2019-05-09 22:54:46.073236 2019-05-09 22:54:46.073236 0 \N 982 \N 381 \N 531 1.0 1 2019-05-09 22:56:48.796375 2019-05-09 22:56:48.796375 0 \N 983 \N 134 \N 532 1.0 1 2019-05-09 22:58:40.509097 2019-05-09 22:58:40.509097 0 \N 984 \N 134 \N 532 1.0 0 2019-05-09 23:01:24.230546 2019-05-09 23:01:24.230546 3 \N 985 \N 496 \N 533 1.0 1 2019-05-09 23:02:41.514859 2019-05-09 23:02:41.514859 0 \N 986 \N 134 \N 534 1.0 1 2019-05-09 23:04:39.318712 2019-05-09 23:04:39.318712 0 \N 987 \N 145 \N 535 1.0 1 2019-05-09 23:28:00.869068 2019-05-09 23:28:00.869068 0 \N 988 \N 558 \N 536 1.0 1 2019-05-09 23:29:36.361696 2019-05-09 23:29:36.361696 0 \N 989 \N 60 \N 537 1.0 1 2019-05-10 00:23:05.805759 2019-05-10 00:23:05.805759 0 \N 990 \N 560 \N 538 1.0 1 2019-05-10 00:25:14.94001 2019-05-10 00:25:14.94001 0 \N 991 \N 136 \N 539 1.0 1 2019-05-10 00:26:19.259669 2019-05-10 00:26:19.259669 0 \N 992 \N 199 \N 540 1.0 1 2019-05-10 00:30:43.782713 2019-05-10 00:30:43.782713 0 \N 993 \N 332 \N 541 1.0 1 2019-05-10 00:48:22.878553 2019-05-10 00:48:22.878553 0 \N 994 \N 553 \N 542 1.0 1 2019-05-10 00:54:42.106087 2019-05-10 00:54:42.106087 0 \N 995 \N 133 \N 542 1.0 1 2019-05-10 00:54:42.14993 2019-05-10 00:54:42.14993 0 \N 996 \N 134 \N 543 1.0 1 2019-05-10 01:18:58.612154 2019-05-10 01:18:58.612154 0 \N 997 \N 199 \N 544 1.0 1 2019-05-10 01:27:17.936383 2019-05-10 01:27:17.936383 0 \N 998 \N 483 \N 545 1.0 1 2019-05-10 01:45:14.815151 2019-05-10 01:45:14.815151 0 \N 999 \N 369 \N 546 1.0 1 2019-05-10 01:51:29.738018 2019-05-10 01:51:29.738018 0 \N 1000 \N 74 \N 547 1.0 1 2019-05-10 01:57:07.707516 2019-05-10 01:57:07.707516 0 \N 1001 \N 143 \N 548 1.0 1 2019-05-10 01:58:43.236276 2019-05-10 01:58:43.236276 0 \N 1002 \N 199 \N 548 1.0 1 2019-05-10 01:58:43.270443 2019-05-10 01:58:43.270443 0 \N 1003 \N 433 \N 549 1.0 1 2019-05-10 02:13:37.601522 2019-05-10 02:13:37.601522 0 \N 1004 \N 331 \N 550 1.0 1 2019-05-10 02:31:07.375963 2019-05-10 02:31:07.375963 0 \N 1005 \N 209 \N 551 1.0 1 2019-05-10 16:57:06.078925 2019-05-10 16:57:06.078925 0 \N 1006 \N 209 \N 551 1.0 0 2019-05-10 17:01:24.472599 2019-05-10 17:01:24.472599 3 \N 1007 \N 257 \N 552 1.0 1 2019-05-10 17:02:10.679308 2019-05-10 17:02:10.679308 0 \N 1008 \N 330 \N 553 1.0 1 2019-05-10 17:49:41.740532 2019-05-10 17:49:41.740532 0 \N 1009 \N 141 \N 554 1.0 1 2019-05-10 19:34:29.113508 2019-05-10 19:34:29.113508 0 \N 1010 \N 141 \N 554 1.0 0 2019-05-10 19:34:37.472003 2019-05-10 19:34:37.472003 3 \N 1011 \N 141 \N 555 1.0 1 2019-05-10 19:36:28.605066 2019-05-10 19:36:28.605066 0 \N 1012 \N 205 \N 556 1.0 1 2019-05-10 19:53:31.279891 2019-05-10 19:53:31.279891 0 \N 1013 \N 202 \N 557 1.0 1 2019-05-10 20:16:01.509133 2019-05-10 20:16:01.509133 0 \N 1014 \N 348 \N 558 1.0 1 2019-05-10 20:18:51.253938 2019-05-10 20:18:51.253938 0 \N 1015 \N 562 \N 559 1.0 1 2019-05-10 20:40:44.654939 2019-05-10 20:40:44.654939 0 \N 1016 \N 199 \N 560 1.0 1 2019-05-10 20:58:30.865478 2019-05-10 20:58:30.865478 0 \N 1017 \N 367 \N 561 1.0 1 2019-05-10 21:18:21.859905 2019-05-10 21:18:21.859905 0 \N 1018 \N 87 \N 562 1.0 1 2019-05-11 16:17:18.71981 2019-05-11 16:17:18.71981 0 \N 1019 \N 562 \N 563 1.0 1 2019-05-11 16:33:05.503553 2019-05-11 16:33:05.503553 0 \N 1020 \N 249 \N 564 1.0 1 2019-05-11 17:05:59.049953 2019-05-11 17:05:59.049953 0 \N 1021 \N 515 \N 565 1.0 1 2019-05-11 18:39:15.85154 2019-05-11 18:39:15.85154 0 \N 1022 \N 152 \N 566 1.0 1 2019-05-11 19:28:57.598864 2019-05-11 19:28:57.598864 0 \N 1023 \N 152 \N 566 1.0 0 2019-05-11 19:29:38.1464 2019-05-11 19:29:38.1464 3 \N 1024 \N 152 \N 567 1.0 1 2019-05-11 19:30:03.263549 2019-05-11 19:30:03.263549 0 \N 1025 \N 462 \N 568 1.0 1 2019-05-11 19:52:20.62232 2019-05-11 19:52:20.62232 0 \N 1026 \N 501 \N 569 1.0 1 2019-05-11 21:04:51.545287 2019-05-11 21:04:51.545287 0 \N 1027 \N 199 \N 570 1.0 1 2019-05-11 22:54:21.56348 2019-05-11 22:54:21.56348 0 \N 1028 \N 477 \N 571 1.0 1 2019-05-11 23:14:57.399956 2019-05-11 23:14:57.399956 0 \N 1029 \N 91 \N 572 1.0 1 2019-05-12 00:08:15.550508 2019-05-12 00:08:15.550508 0 \N 1030 \N 74 \N 573 1.0 1 2019-05-12 00:55:14.772091 2019-05-12 00:55:14.772091 0 \N 1031 \N 318 \N 574 1.0 1 2019-05-12 01:04:11.98625 2019-05-12 01:04:11.98625 0 \N 1032 \N 201 \N 575 1.0 1 2019-05-12 17:30:26.051453 2019-05-12 17:30:26.051453 0 \N 1033 \N 553 \N 576 1.0 1 2019-05-12 19:37:19.831924 2019-05-12 19:37:19.831924 0 \N 1034 \N 548 \N 577 1.0 1 2019-05-13 23:47:19.678173 2019-05-13 23:47:19.678173 0 \N 1035 \N 305 \N 578 1.0 1 2019-05-14 00:23:59.571435 2019-05-14 00:23:59.571435 0 \N 1036 \N 306 \N 578 1.0 1 2019-05-14 00:23:59.614285 2019-05-14 00:23:59.614285 0 \N 1037 \N 194 \N 291 1.0 0 2019-05-14 00:26:43.055367 2019-05-14 00:26:43.055367 8 \N 1038 \N 457 \N 296 1.0 0 2019-05-14 00:27:02.377321 2019-05-14 00:27:02.377321 8 \N 1039 \N 413 \N 308 1.0 0 2019-05-14 00:27:11.975606 2019-05-14 00:27:11.975606 8 \N 1040 \N 127 \N 579 1.0 1 2019-05-14 16:42:33.377805 2019-05-14 16:42:33.377805 0 \N 1041 \N 105 \N 579 1.0 1 2019-05-14 16:42:33.419672 2019-05-14 16:42:33.419672 0 \N 1042 \N 110 \N 579 1.0 1 2019-05-14 16:42:33.460679 2019-05-14 16:42:33.460679 0 \N 1043 \N 107 \N 579 1.0 1 2019-05-14 16:42:33.49824 2019-05-14 16:42:33.49824 0 \N 1044 \N 108 \N 579 1.0 1 2019-05-14 16:42:33.537644 2019-05-14 16:42:33.537644 0 \N 1045 \N 101 \N 579 1.0 1 2019-05-14 16:42:33.579255 2019-05-14 16:42:33.579255 0 \N 1046 \N 95 \N 579 1.0 1 2019-05-14 16:42:33.618555 2019-05-14 16:42:33.618555 0 \N 1047 \N 225 \N 579 1.0 1 2019-05-14 16:42:33.65087 2019-05-14 16:42:33.65087 0 \N 1048 \N 234 \N 579 1.0 1 2019-05-14 16:42:33.686394 2019-05-14 16:42:33.686394 0 \N 1049 \N 548 \N 580 1.0 1 2019-05-14 17:32:48.262647 2019-05-14 17:32:48.262647 0 \N 1050 \N 295 \N 581 1.0 1 2019-05-14 18:31:57.605141 2019-05-14 18:31:57.605141 0 \N 1051 \N 88 \N 582 1.0 1 2019-05-14 18:39:39.360227 2019-05-14 18:39:39.360227 0 \N 1052 \N 93 \N 583 1.0 1 2019-05-14 18:49:07.936252 2019-05-14 18:49:07.936252 0 \N 1053 \N 74 \N 583 1.0 1 2019-05-14 18:49:07.977171 2019-05-14 18:49:07.977171 0 \N 1054 \N 554 \N 584 1.0 1 2019-05-14 19:56:40.42258 2019-05-14 19:56:40.42258 0 \N 1055 \N 469 \N 585 1.0 1 2019-05-14 20:01:05.856324 2019-05-14 20:01:05.856324 0 \N 1056 \N 513 \N 586 1.0 1 2019-05-14 20:02:13.629964 2019-05-14 20:02:13.629964 0 \N 1057 \N 485 \N 587 1.0 1 2019-05-14 23:40:00.355324 2019-05-14 23:40:00.355324 0 \N 1058 \N 556 \N 588 1.0 1 2019-05-15 02:03:10.833374 2019-05-15 02:03:10.833374 0 \N 1059 \N 551 \N 589 1.0 1 2019-05-15 16:50:20.429548 2019-05-15 16:50:20.429548 0 \N 1060 \N 549 \N 589 1.0 1 2019-05-15 16:50:20.471552 2019-05-15 16:50:20.471552 0 \N 1061 \N 549 \N 589 1.0 0 2019-05-15 16:53:31.133281 2019-05-15 16:53:31.133281 3 \N 1062 \N 551 \N 589 1.0 0 2019-05-15 16:53:31.166103 2019-05-15 16:53:31.166103 3 \N 1063 \N 549 \N 590 1.0 1 2019-05-15 16:55:47.516622 2019-05-15 16:55:47.516622 0 \N 1064 \N 526 \N 590 1.0 1 2019-05-15 16:55:47.553628 2019-05-15 16:55:47.553628 0 \N 1065 \N 551 \N 590 1.0 1 2019-05-15 16:55:47.593145 2019-05-15 16:55:47.593145 0 \N 1066 \N 566 93 \N 4.0 0 2019-05-15 18:08:16.282842 2019-05-15 18:08:16.282842 1 \N 1067 \N 525 \N 591 1.0 1 2019-05-15 18:10:18.17175 2019-05-15 18:10:18.17175 0 \N 1068 \N 516 \N \N 1.0 0 2019-05-15 19:43:36.438493 2019-05-15 19:43:36.438493 7 46 1069 \N 156 \N \N 1.0 0 2019-05-15 21:46:19.636434 2019-05-15 21:46:19.636434 7 47 1070 \N 499 \N \N 1.0 0 2019-05-15 21:46:19.665519 2019-05-15 21:46:19.665519 7 47 1071 \N 156 \N 592 1.0 1 2019-05-15 21:46:59.110784 2019-05-15 21:46:59.110784 0 \N 1072 \N 499 \N 592 1.0 1 2019-05-15 21:46:59.149233 2019-05-15 21:46:59.149233 0 \N 1073 \N 506 \N 593 1.0 1 2019-05-15 23:02:41.19539 2019-05-15 23:02:41.19539 0 \N 1074 \N 557 \N 594 1.0 1 2019-05-16 01:26:02.230933 2019-05-16 01:26:02.230933 0 \N 1075 \N 328 \N 595 1.0 1 2019-05-16 01:29:05.72242 2019-05-16 01:29:05.72242 0 \N 1076 \N 552 \N 596 1.0 1 2019-05-16 18:25:18.768132 2019-05-16 18:25:18.768132 0 \N 1077 \N 503 \N 597 1.0 1 2019-05-16 19:28:34.871253 2019-05-16 19:28:34.871253 0 \N 1078 \N 421 \N 598 2.0 1 2019-05-16 21:52:40.992704 2019-05-16 21:52:40.992704 0 \N 1079 \N 574 94 \N 6.0 0 2019-05-16 23:49:41.973853 2019-05-16 23:49:41.973853 1 \N 1080 \N 575 94 \N 6.0 0 2019-05-16 23:49:42.015488 2019-05-16 23:49:42.015488 1 \N 1081 \N 576 94 \N 6.0 0 2019-05-16 23:49:42.06131 2019-05-16 23:49:42.06131 1 \N 1082 \N 577 94 \N 6.0 0 2019-05-16 23:49:42.105526 2019-05-16 23:49:42.105526 1 \N 1083 \N 578 94 \N 6.0 0 2019-05-16 23:49:42.140142 2019-05-16 23:49:42.140142 1 \N 1084 \N 579 94 \N 6.0 0 2019-05-16 23:49:42.175714 2019-05-16 23:49:42.175714 1 \N 1085 \N 567 94 \N 6.0 0 2019-05-16 23:49:42.217605 2019-05-16 23:49:42.217605 1 \N 1086 \N 568 94 \N 6.0 0 2019-05-16 23:49:42.256563 2019-05-16 23:49:42.256563 1 \N 1087 \N 569 94 \N 12.0 0 2019-05-16 23:49:42.294363 2019-05-16 23:49:42.294363 1 \N 1088 \N 570 94 \N 9.0 0 2019-05-16 23:49:42.330771 2019-05-16 23:49:42.330771 1 \N 1089 \N 571 94 \N 6.0 0 2019-05-16 23:49:42.369263 2019-05-16 23:49:42.369263 1 \N 1090 \N 572 94 \N 6.0 0 2019-05-16 23:49:42.406013 2019-05-16 23:49:42.406013 1 \N 1091 \N 573 94 \N 6.0 0 2019-05-16 23:49:42.443205 2019-05-16 23:49:42.443205 1 \N 1092 \N 577 \N 599 1.0 1 2019-05-17 00:10:19.968263 2019-05-17 00:10:19.968263 0 \N 1093 \N 580 95 \N 6.0 0 2019-05-17 00:23:03.670586 2019-05-17 00:23:03.670586 1 \N 1094 \N 581 95 \N 6.0 0 2019-05-17 00:23:03.701946 2019-05-17 00:23:03.701946 1 \N 1095 \N 150 \N 600 1.0 1 2019-05-17 17:30:37.744286 2019-05-17 17:30:37.744286 0 \N 1096 \N 573 \N \N 1.0 0 2019-05-17 18:16:49.159683 2019-05-17 18:16:49.159683 7 48 1097 \N 573 \N 601 1.0 1 2019-05-17 18:18:32.427601 2019-05-17 18:18:32.427601 0 \N 1098 \N 554 \N 602 1.0 1 2019-05-17 18:29:02.755161 2019-05-17 18:29:02.755161 0 \N 1099 \N 556 \N 602 1.0 1 2019-05-17 18:29:02.792194 2019-05-17 18:29:02.792194 0 \N 1100 \N 157 \N 603 1.0 1 2019-05-17 18:48:34.55872 2019-05-17 18:48:34.55872 0 \N 1101 \N 567 \N \N 6.0 0 2019-05-17 22:19:55.413008 2019-05-17 22:19:55.413008 7 49 1102 \N 568 \N \N 6.0 0 2019-05-17 22:19:55.448841 2019-05-17 22:19:55.448841 7 49 1103 \N 569 \N \N 12.0 0 2019-05-17 22:19:55.484053 2019-05-17 22:19:55.484053 7 49 1104 \N 572 \N \N 6.0 0 2019-05-17 22:19:55.520122 2019-05-17 22:19:55.520122 7 49 1105 \N 575 \N \N 6.0 0 2019-05-17 22:19:55.55434 2019-05-17 22:19:55.55434 7 49 1106 \N 581 \N \N 6.0 0 2019-05-17 22:19:55.588661 2019-05-17 22:19:55.588661 7 49 1107 \N 578 \N \N 6.0 0 2019-05-17 22:19:55.613786 2019-05-17 22:19:55.613786 7 49 1108 \N 562 \N 604 1.0 1 2019-05-18 01:10:17.379625 2019-05-18 01:10:17.379625 0 \N 1109 \N 538 \N 605 1.0 1 2019-05-18 16:47:10.516304 2019-05-18 16:47:10.516304 0 \N 1110 \N 532 \N 606 1.0 1 2019-05-18 17:45:30.021421 2019-05-18 17:45:30.021421 0 \N 1111 \N 550 \N 607 1.0 1 2019-05-18 21:28:19.291537 2019-05-18 21:28:19.291537 0 \N 1112 \N 220 \N 607 1.0 1 2019-05-18 21:28:19.334958 2019-05-18 21:28:19.334958 0 \N 1113 \N 580 \N 608 1.0 1 2019-05-19 00:00:00.707556 2019-05-19 00:00:00.707556 0 \N 1114 \N 510 \N 609 1.0 1 2019-05-19 18:36:44.866665 2019-05-19 18:36:44.866665 0 \N 1115 \N 556 \N 610 1.0 1 2019-05-19 19:01:08.364828 2019-05-19 19:01:08.364828 0 \N 1116 \N 532 \N 611 1.0 1 2019-05-19 19:14:01.524387 2019-05-19 19:14:01.524387 0 \N 1117 \N 179 \N 612 1.0 1 2019-05-19 19:17:15.279465 2019-05-19 19:17:15.279465 0 \N 1118 \N 185 \N 613 1.0 1 2019-05-19 19:46:45.354216 2019-05-19 19:46:45.354216 0 \N 1119 \N 63 \N 614 1.0 1 2019-05-20 16:52:11.598892 2019-05-20 16:52:11.598892 0 \N 1120 \N 557 \N 615 1.0 1 2019-05-20 16:55:37.375025 2019-05-20 16:55:37.375025 0 \N 1121 \N 447 \N 616 1.0 1 2019-05-20 19:19:15.008835 2019-05-20 19:19:15.008835 0 \N 1122 \N 133 \N 617 1.0 1 2019-05-20 22:00:36.532395 2019-05-20 22:00:36.532395 0 \N 1123 \N 575 \N 618 1.0 1 2019-05-20 22:13:09.899811 2019-05-20 22:13:09.899811 0 \N 1124 \N 205 \N 556 1.0 0 2019-05-20 22:51:04.619148 2019-05-20 22:51:04.619148 3 \N 1125 \N 326 \N 619 1.0 1 2019-05-20 22:52:37.928627 2019-05-20 22:52:37.928627 0 \N 1126 \N 580 \N 620 1.0 1 2019-05-20 23:20:44.933651 2019-05-20 23:20:44.933651 0 \N 1127 \N 519 \N \N 5.0 0 2019-05-20 23:43:53.016452 2019-05-20 23:43:53.016452 7 50 1128 \N 569 \N 621 1.0 1 2019-05-20 23:46:43.51485 2019-05-20 23:46:43.51485 0 \N 1129 \N 576 \N \N 6.0 0 2019-05-20 23:48:47.520656 2019-05-20 23:48:47.520656 7 51 1130 \N 206 \N \N 4.0 0 2019-05-20 23:48:47.550126 2019-05-20 23:48:47.550126 7 51 1131 \N 576 \N 622 1.0 1 2019-05-20 23:49:54.062015 2019-05-20 23:49:54.062015 0 \N 1132 \N 406 \N 623 1.0 1 2019-05-21 00:04:45.141818 2019-05-21 00:04:45.141818 0 \N 1133 \N 549 \N 624 1.0 1 2019-05-21 17:19:06.561347 2019-05-21 17:19:06.561347 0 \N 1134 \N 332 \N 625 1.0 1 2019-05-21 17:39:39.599091 2019-05-21 17:39:39.599091 0 \N 1135 \N 227 \N 626 1.0 1 2019-05-21 20:45:03.591136 2019-05-21 20:45:03.591136 0 \N 1136 \N 505 \N 627 1.0 1 2019-05-21 21:01:15.500242 2019-05-21 21:01:15.500242 0 \N 1137 \N 367 \N 628 2.0 1 2019-05-21 21:18:50.188076 2019-05-21 21:18:50.188076 0 \N 1138 \N 502 \N 629 1.0 1 2019-05-21 21:52:48.393157 2019-05-21 21:52:48.393157 0 \N 1139 \N 579 \N 630 1.0 1 2019-05-21 22:22:48.17175 2019-05-21 22:22:48.17175 0 \N 1140 \N 507 \N 631 1.0 1 2019-05-21 22:46:28.243428 2019-05-21 22:46:28.243428 0 \N 1141 \N 420 \N 632 1.0 1 2019-05-22 01:39:06.404762 2019-05-22 01:39:06.404762 0 \N 1142 \N 203 \N 633 1.0 1 2019-05-22 01:59:11.775198 2019-05-22 01:59:11.775198 0 \N 1143 \N 552 \N 633 1.0 1 2019-05-22 01:59:11.817192 2019-05-22 01:59:11.817192 0 \N 1144 \N 562 \N 634 1.0 1 2019-05-22 19:13:24.271471 2019-05-22 19:13:24.271471 0 \N 1145 \N 270 \N 635 1.0 1 2019-05-22 20:01:52.62714 2019-05-22 20:01:52.62714 0 \N 1146 \N 433 \N 636 1.0 1 2019-05-22 21:56:24.631402 2019-05-22 21:56:24.631402 0 \N 1147 \N 433 \N 636 1.0 0 2019-05-22 21:58:22.12146 2019-05-22 21:58:22.12146 3 \N 1148 \N 433 \N 637 1.0 1 2019-05-22 21:58:39.606813 2019-05-22 21:58:39.606813 0 \N 1149 \N 575 \N 638 1.0 1 2019-05-22 22:01:05.743399 2019-05-22 22:01:05.743399 0 \N 1150 \N 506 \N 639 1.0 1 2019-05-22 23:18:58.075859 2019-05-22 23:18:58.075859 0 \N 1151 \N 581 \N 640 1.0 1 2019-05-23 00:26:25.523056 2019-05-23 00:26:25.523056 0 \N 1152 \N 200 \N 641 1.0 1 2019-05-23 00:46:30.288799 2019-05-23 00:46:30.288799 0 \N 1153 \N 581 \N 640 1.0 0 2019-05-23 00:49:05.609934 2019-05-23 00:49:05.609934 3 \N 1154 \N 182 \N 642 1.0 1 2019-05-23 00:49:37.101045 2019-05-23 00:49:37.101045 0 \N 1155 \N 581 \N 643 1.0 1 2019-05-23 00:51:31.091656 2019-05-23 00:51:31.091656 0 \N 1156 \N 581 \N 643 1.0 0 2019-05-23 00:51:35.351815 2019-05-23 00:51:35.351815 3 \N 1157 \N 581 \N 644 1.0 1 2019-05-23 00:51:51.767034 2019-05-23 00:51:51.767034 0 \N 1158 \N 582 96 \N 1.0 0 2019-05-23 01:48:30.732716 2019-05-23 01:48:30.732716 1 \N 1159 \N 582 96 \N 1.0 1 2019-05-23 01:50:58.79299 2019-05-23 01:50:58.79299 4 \N 1160 \N 583 97 \N 1.0 0 2019-05-23 01:53:49.953175 2019-05-23 01:53:49.953175 1 \N 1161 \N 583 \N 645 1.0 1 2019-05-23 01:54:49.604637 2019-05-23 01:54:49.604637 0 \N 1162 \N 578 \N 646 1.0 1 2019-05-23 16:26:23.21217 2019-05-23 16:26:23.21217 0 \N 1163 \N 584 98 \N 1.0 0 2019-05-23 17:47:00.723103 2019-05-23 17:47:00.723103 1 \N 1164 \N 583 99 \N 5.0 0 2019-05-23 17:50:42.599249 2019-05-23 17:50:42.599249 1 \N 1165 \N 584 99 \N 5.0 0 2019-05-23 17:50:42.626403 2019-05-23 17:50:42.626403 1 \N 1166 \N 585 100 \N 6.0 0 2019-05-23 18:01:41.953916 2019-05-23 18:01:41.953916 1 \N 1167 \N 586 101 \N 6.0 0 2019-05-23 18:25:12.750781 2019-05-23 18:25:12.750781 1 \N 1168 \N 587 101 \N 6.0 0 2019-05-23 18:25:12.774773 2019-05-23 18:25:12.774773 1 \N 1169 \N 588 101 \N 6.0 0 2019-05-23 18:25:12.799341 2019-05-23 18:25:12.799341 1 \N 1170 \N 585 \N \N 6.0 0 2019-05-23 20:24:18.008044 2019-05-23 20:24:18.008044 7 52 1171 \N 586 \N \N 6.0 0 2019-05-23 20:24:18.035474 2019-05-23 20:24:18.035474 7 52 1172 \N 587 \N \N 6.0 0 2019-05-23 20:24:18.058532 2019-05-23 20:24:18.058532 7 52 1173 \N 406 \N 647 1.0 1 2019-05-23 22:46:04.172499 2019-05-23 22:46:04.172499 0 \N 1174 \N 587 \N 647 1.0 1 2019-05-23 22:46:04.198727 2019-05-23 22:46:04.198727 0 \N 1175 \N 587 \N 647 1.0 0 2019-05-23 22:47:07.81149 2019-05-23 22:47:07.81149 3 \N 1176 \N 406 \N 647 1.0 0 2019-05-23 22:47:07.833421 2019-05-23 22:47:07.833421 3 \N 1177 \N 476 \N 648 1.0 1 2019-05-23 22:49:00.109204 2019-05-23 22:49:00.109204 0 \N 1178 \N 406 \N 648 1.0 1 2019-05-23 22:49:00.139816 2019-05-23 22:49:00.139816 0 \N 1179 \N 587 \N 648 1.0 1 2019-05-23 22:49:00.17358 2019-05-23 22:49:00.17358 0 \N 1180 \N 142 \N 649 1.0 1 2019-05-23 23:14:48.583304 2019-05-23 23:14:48.583304 0 \N 1181 \N 587 \N 650 1.0 1 2019-05-23 23:32:38.030934 2019-05-23 23:32:38.030934 0 \N 1182 \N 476 \N 650 1.0 1 2019-05-23 23:32:38.056045 2019-05-23 23:32:38.056045 0 \N 1183 \N 514 \N 651 1.0 1 2019-05-24 00:07:20.365319 2019-05-24 00:07:20.365319 0 \N 1184 \N 583 \N 652 1.0 1 2019-05-24 00:17:08.557337 2019-05-24 00:17:08.557337 0 \N 1185 \N 150 \N 653 1.0 1 2019-05-24 00:41:48.043728 2019-05-24 00:41:48.043728 0 \N 1186 \N 573 \N 654 1.0 1 2019-05-24 00:47:24.418623 2019-05-24 00:47:24.418623 0 \N 1187 \N 588 \N 655 1.0 1 2019-05-24 01:09:54.431039 2019-05-24 01:09:54.431039 0 \N 1188 \N 579 \N 656 1.0 1 2019-05-24 01:21:06.933248 2019-05-24 01:21:06.933248 0 \N 1189 \N 61 \N 656 1.0 1 2019-05-24 01:21:06.991223 2019-05-24 01:21:06.991223 0 \N 1190 \N 578 \N 657 1.0 1 2019-05-24 01:21:44.730909 2019-05-24 01:21:44.730909 0 \N 1191 \N 182 \N 658 1.0 1 2019-05-24 18:07:43.6688 2019-05-24 18:07:43.6688 0 \N 1192 \N 585 \N 659 1.0 1 2019-05-24 20:01:52.533848 2019-05-24 20:01:52.533848 0 \N 1193 \N 211 \N 660 1.0 1 2019-05-24 20:15:03.475346 2019-05-24 20:15:03.475346 0 \N 1194 \N 584 \N 661 1.0 1 2019-05-24 22:51:18.517726 2019-05-24 22:51:18.517726 0 \N 1195 \N 570 \N 662 1.0 1 2019-05-24 23:26:54.940947 2019-05-24 23:26:54.940947 0 \N 1196 \N 587 \N 663 1.0 1 2019-05-25 00:50:25.595889 2019-05-25 00:50:25.595889 0 \N 1197 \N 577 \N 664 1.0 1 2019-05-25 01:55:25.594055 2019-05-25 01:55:25.594055 0 \N 1198 \N 146 \N 665 1.0 1 2019-05-25 15:59:55.436475 2019-05-25 15:59:55.436475 0 \N 1199 \N 549 \N 666 1.0 1 2019-05-25 17:31:36.182282 2019-05-25 17:31:36.182282 0 \N 1200 \N 579 \N 667 1.0 1 2019-05-25 17:41:57.846691 2019-05-25 17:41:57.846691 0 \N 1201 \N 570 \N 668 1.0 1 2019-05-25 18:37:51.820823 2019-05-25 18:37:51.820823 0 \N 1202 \N 84 \N 669 1.0 1 2019-05-25 19:16:54.70086 2019-05-25 19:16:54.70086 0 \N 1203 \N 316 \N 670 1.0 1 2019-05-25 19:19:14.382484 2019-05-25 19:19:14.382484 0 \N 1204 \N 10 \N 671 1.0 1 2019-05-25 20:49:34.065044 2019-05-25 20:49:34.065044 0 \N 1205 \N 505 \N 672 1.0 1 2019-05-25 22:38:11.383143 2019-05-25 22:38:11.383143 0 \N 1206 \N 584 \N 672 1.0 1 2019-05-25 22:38:11.423751 2019-05-25 22:38:11.423751 0 \N 1207 \N 542 \N 673 1.0 1 2019-05-25 22:42:27.459053 2019-05-25 22:42:27.459053 0 \N 1208 \N 583 \N 674 1.0 1 2019-05-26 00:15:53.042553 2019-05-26 00:15:53.042553 0 \N 1209 \N 583 \N 674 1.0 0 2019-05-26 00:17:01.286229 2019-05-26 00:17:01.286229 3 \N 1210 \N 583 \N 675 1.0 1 2019-05-26 00:17:45.84639 2019-05-26 00:17:45.84639 0 \N 1211 \N 583 \N 676 1.0 1 2019-05-26 00:37:56.793129 2019-05-26 00:37:56.793129 0 \N 1212 \N 182 \N 677 1.0 1 2019-05-26 01:10:21.388177 2019-05-26 01:10:21.388177 0 \N 1213 \N 572 \N 677 1.0 1 2019-05-26 01:10:21.420607 2019-05-26 01:10:21.420607 0 \N 1214 \N 564 \N 678 1.0 1 2019-05-26 18:35:24.759257 2019-05-26 18:35:24.759257 0 \N 1215 \N 483 \N 679 1.0 1 2019-05-26 18:47:37.074136 2019-05-26 18:47:37.074136 0 \N 1216 \N 475 \N 680 1.0 1 2019-05-26 20:24:44.060748 2019-05-26 20:24:44.060748 0 \N 1217 \N 583 \N 681 1.0 1 2019-05-27 17:47:01.753478 2019-05-27 17:47:01.753478 0 \N 1218 \N 562 \N 682 1.0 1 2019-05-27 18:18:22.025329 2019-05-27 18:18:22.025329 0 \N 1219 \N 584 \N 683 1.0 1 2019-05-27 18:27:35.969075 2019-05-27 18:27:35.969075 0 \N 1220 \N 242 \N 684 1.0 1 2019-05-27 21:45:47.688515 2019-05-27 21:45:47.688515 0 \N 1221 \N 552 \N 685 1.0 1 2019-05-27 23:22:52.500565 2019-05-27 23:22:52.500565 0 \N 1222 \N 577 \N 686 1.0 1 2019-05-27 23:38:33.105436 2019-05-27 23:38:33.105436 0 \N 1223 \N 157 \N 687 1.0 1 2019-05-28 18:50:07.036092 2019-05-28 18:50:07.036092 0 \N 1224 \N 157 \N 687 1.0 0 2019-05-28 19:38:18.842393 2019-05-28 19:38:18.842393 3 \N 1225 \N 157 \N 688 1.0 1 2019-05-28 19:38:56.404021 2019-05-28 19:38:56.404021 0 \N 1226 \N 570 \N 689 1.0 1 2019-05-28 23:46:45.554951 2019-05-28 23:46:45.554951 0 \N 1227 \N 585 \N 690 1.0 1 2019-05-29 00:20:47.865139 2019-05-29 00:20:47.865139 0 \N 1228 \N 252 \N 691 1.0 1 2019-05-29 01:36:53.593762 2019-05-29 01:36:53.593762 0 \N 1229 \N 568 \N 692 1.0 1 2019-05-30 19:35:57.155421 2019-05-30 19:35:57.155421 0 \N 1230 \N 229 \N 693 1.0 1 2019-05-30 21:09:22.543366 2019-05-30 21:09:22.543366 0 \N 1231 \N 249 \N 693 1.0 1 2019-05-30 21:09:22.575111 2019-05-30 21:09:22.575111 0 \N 1232 \N 583 \N 694 1.0 1 2019-05-31 00:22:41.884901 2019-05-31 00:22:41.884901 0 \N 1233 \N 251 \N 695 1.0 1 2019-05-31 00:46:53.789398 2019-05-31 00:46:53.789398 0 \N 1234 \N 251 \N 695 1.0 0 2019-05-31 00:51:19.814812 2019-05-31 00:51:19.814812 9 \N 1235 \N 251 \N 696 1.0 1 2019-05-31 00:52:18.89799 2019-05-31 00:52:18.89799 0 \N 1236 \N 251 \N 697 1.0 1 2019-05-31 01:25:36.854197 2019-05-31 01:25:36.854197 0 \N 1237 \N 184 \N 697 1.0 1 2019-05-31 01:25:36.892709 2019-05-31 01:25:36.892709 0 \N 1238 \N 184 \N 697 1.0 0 2019-05-31 01:25:49.623849 2019-05-31 01:25:49.623849 3 \N 1239 \N 251 \N 697 1.0 0 2019-05-31 01:25:49.656016 2019-05-31 01:25:49.656016 3 \N 1240 \N 184 \N 698 1.0 1 2019-05-31 01:26:18.433419 2019-05-31 01:26:18.433419 0 \N 1241 \N 251 \N 698 1.0 1 2019-05-31 01:26:18.459641 2019-05-31 01:26:18.459641 0 \N 1242 \N 84 \N 699 1.0 1 2019-05-31 16:55:12.28989 2019-05-31 16:55:12.28989 0 \N 1243 \N 502 \N 700 1.0 1 2019-05-31 19:02:54.459922 2019-05-31 19:02:54.459922 0 \N 1244 \N 543 \N 701 1.0 1 2019-05-31 19:40:08.651216 2019-05-31 19:40:08.651216 0 \N 1245 \N 199 \N 702 1.0 1 2019-05-31 22:52:16.279601 2019-05-31 22:52:16.279601 0 \N 1246 \N 536 \N 703 1.0 1 2019-05-31 23:32:31.348802 2019-05-31 23:32:31.348802 0 \N 1247 \N 549 \N 704 1.0 1 2019-06-01 00:58:52.463775 2019-06-01 00:58:52.463775 0 \N 1248 \N 8 \N 705 1.0 1 2019-06-01 01:21:01.574253 2019-06-01 01:21:01.574253 0 \N 1249 \N 572 \N 706 1.0 1 2019-06-01 19:12:49.488779 2019-06-01 19:12:49.488779 0 \N 1250 \N 573 \N 707 1.0 1 2019-06-01 21:49:18.77181 2019-06-01 21:49:18.77181 0 \N 1251 \N 585 \N 708 1.0 1 2019-06-01 21:54:46.792667 2019-06-01 21:54:46.792667 0 \N 1252 \N 406 \N 709 1.0 1 2019-06-02 18:13:21.730059 2019-06-02 18:13:21.730059 0 \N 1253 \N 532 \N 710 1.0 1 2019-06-02 18:58:53.774871 2019-06-02 18:58:53.774871 0 \N 1254 \N 570 \N 711 1.0 1 2019-06-03 18:35:05.263625 2019-06-03 18:35:05.263625 0 \N 1255 \N 511 \N 712 1.0 1 2019-06-03 21:17:54.319094 2019-06-03 21:17:54.319094 0 \N 1256 \N 551 \N \N 5.0 0 2019-06-04 00:09:53.267645 2019-06-04 00:09:53.267645 7 53 1257 \N 284 \N \N 5.0 0 2019-06-04 00:10:07.806541 2019-06-04 00:10:07.806541 7 54 1258 \N 247 \N \N 6.0 0 2019-06-04 00:56:48.961101 2019-06-04 00:56:48.961101 7 55 1259 \N 565 \N \N 6.0 0 2019-06-04 01:38:16.048529 2019-06-04 01:38:16.048529 7 56 1260 \N 555 \N \N 2.0 0 2019-06-04 01:38:16.075071 2019-06-04 01:38:16.075071 7 56 1261 \N 254 \N \N 2.0 0 2019-06-04 01:38:16.101281 2019-06-04 01:38:16.101281 7 56 1262 \N 395 \N \N 6.0 0 2019-06-04 01:38:16.133065 2019-06-04 01:38:16.133065 7 56 1263 \N 572 \N 713 1.0 1 2019-06-04 20:48:55.226438 2019-06-04 20:48:55.226438 0 \N 1264 \N 533 \N 714 1.0 1 2019-06-04 21:33:23.776553 2019-06-04 21:33:23.776553 0 \N 1265 \N 584 \N 715 1.0 1 2019-06-06 16:42:53.733787 2019-06-06 16:42:53.733787 0 \N 1266 \N 571 \N 716 1.0 1 2019-06-06 20:02:11.759824 2019-06-06 20:02:11.759824 0 \N 1267 \N 276 \N 717 1.0 1 2019-06-06 22:04:51.923207 2019-06-06 22:04:51.923207 0 \N 1268 \N 199 \N 718 1.0 1 2019-06-06 22:21:50.570491 2019-06-06 22:21:50.570491 0 \N 1269 \N 555 \N 719 1.0 1 2019-06-07 01:13:40.483715 2019-06-07 01:13:40.483715 0 \N 1270 \N 205 \N 720 1.0 1 2019-06-08 17:37:20.740904 2019-06-08 17:37:20.740904 0 \N 1271 \N 369 \N 721 5.0 1 2019-06-08 22:23:47.907637 2019-06-08 22:23:47.907637 0 \N 1272 \N 410 \N 722 1.0 1 2019-06-08 22:50:17.728219 2019-06-08 22:50:17.728219 0 \N 1273 \N 60 \N 722 1.0 1 2019-06-08 22:50:17.75931 2019-06-08 22:50:17.75931 0 \N 1274 \N 370 \N 723 1.0 1 2019-06-09 01:49:00.034674 2019-06-09 01:49:00.034674 0 \N 1275 \N 585 \N 724 1.0 1 2019-06-09 20:45:23.84224 2019-06-09 20:45:23.84224 0 \N 1276 \N 548 \N 725 1.0 1 2019-06-09 20:48:01.436981 2019-06-09 20:48:01.436981 0 \N 1277 \N 435 \N \N 3.0 0 2019-06-10 20:38:58.408406 2019-06-10 20:38:58.408406 7 58 1278 \N 199 \N \N 1.0 0 2019-06-10 20:39:11.208608 2019-06-10 20:39:11.208608 7 57 1279 \N 152 \N \N 4.0 0 2019-06-10 23:13:43.621688 2019-06-10 23:13:43.621688 7 59 1280 \N 204 \N 726 1.0 1 2019-06-11 00:27:58.489404 2019-06-11 00:27:58.489404 0 \N 1281 \N 573 \N 727 1.0 1 2019-06-11 01:39:37.320439 2019-06-11 01:39:37.320439 0 \N 1282 \N 554 \N 728 1.0 1 2019-06-11 17:16:35.369111 2019-06-11 17:16:35.369111 0 \N 1283 \N 585 \N 729 1.0 1 2019-06-11 18:04:33.157624 2019-06-11 18:04:33.157624 0 \N 1284 \N 525 \N 730 1.0 1 2019-06-11 23:17:22.867793 2019-06-11 23:17:22.867793 0 \N 1285 \N 504 \N 731 1.0 1 2019-06-12 22:26:55.874103 2019-06-12 22:26:55.874103 0 \N 1286 \N 96 \N 732 1.0 1 2019-06-13 16:51:48.419478 2019-06-13 16:51:48.419478 0 \N 1287 \N 573 \N 733 1.0 1 2019-06-13 18:42:20.623627 2019-06-13 18:42:20.623627 0 \N 1288 \N 395 \N 734 1.0 1 2019-06-13 19:52:30.777102 2019-06-13 19:52:30.777102 0 \N 1289 \N 60 \N 735 1.0 1 2019-06-13 20:05:18.057411 2019-06-13 20:05:18.057411 0 \N 1290 \N 190 \N 736 1.0 1 2019-06-13 20:07:50.771728 2019-06-13 20:07:50.771728 0 \N 1291 \N 190 \N 737 1.0 1 2019-06-13 20:09:42.918923 2019-06-13 20:09:42.918923 0 \N 1292 \N 190 \N 736 1.0 0 2019-06-13 20:12:00.232808 2019-06-13 20:12:00.232808 3 \N 1293 \N 476 \N 738 1.0 1 2019-06-14 01:22:33.805375 2019-06-14 01:22:33.805375 0 \N 1294 \N 476 \N 739 1.0 1 2019-06-14 01:26:46.914561 2019-06-14 01:26:46.914561 0 \N 1295 \N 506 \N 740 1.0 1 2019-06-14 17:08:40.540752 2019-06-14 17:08:40.540752 0 \N 1296 \N 510 \N 741 1.0 1 2019-06-14 19:07:02.629868 2019-06-14 19:07:02.629868 0 \N 1297 \N 574 \N 742 1.0 1 2019-06-15 16:53:13.930212 2019-06-15 16:53:13.930212 0 \N 1298 \N 569 \N 743 2.0 1 2019-06-15 19:34:53.91704 2019-06-15 19:34:53.91704 0 \N 1299 \N 143 \N 744 1.0 1 2019-06-15 20:03:18.150052 2019-06-15 20:03:18.150052 0 \N 1300 \N 588 \N 745 1.0 1 2019-06-15 20:13:49.179146 2019-06-15 20:13:49.179146 0 \N 1301 \N 510 \N 746 1.0 1 2019-06-15 20:22:17.995216 2019-06-15 20:22:17.995216 0 \N 1302 \N 506 \N 747 1.0 1 2019-06-15 20:25:03.019765 2019-06-15 20:25:03.019765 0 \N 1303 \N 506 \N 748 1.0 1 2019-06-15 20:28:32.946185 2019-06-15 20:28:32.946185 0 \N 1304 \N 506 \N 748 1.0 0 2019-06-15 20:33:15.480881 2019-06-15 20:33:15.480881 3 \N 1305 \N 506 \N 749 1.0 1 2019-06-15 20:34:18.791684 2019-06-15 20:34:18.791684 0 \N 1306 \N 557 \N 750 1.0 1 2019-06-15 21:13:05.662966 2019-06-15 21:13:05.662966 0 \N 1307 \N 142 \N 751 1.0 1 2019-06-15 22:13:31.135238 2019-06-15 22:13:31.135238 0 \N 1308 \N 178 \N 751 1.0 1 2019-06-15 22:13:31.164402 2019-06-15 22:13:31.164402 0 \N 1309 \N 236 \N 752 1.0 1 2019-06-15 22:22:52.475006 2019-06-15 22:22:52.475006 0 \N 1310 \N 506 \N 747 1.0 0 2019-06-15 22:33:13.90178 2019-06-15 22:33:13.90178 3 \N 1311 \N 579 \N 753 1.0 1 2019-06-17 20:50:15.936829 2019-06-17 20:50:15.936829 0 \N 1312 \N 199 \N 754 1.0 1 2019-06-18 18:08:49.822306 2019-06-18 18:08:49.822306 0 \N 1313 \N 519 \N 754 1.0 1 2019-06-18 18:08:49.849458 2019-06-18 18:08:49.849458 0 \N 1314 \N 252 \N 755 1.0 1 2019-06-18 19:54:40.083576 2019-06-18 19:54:40.083576 0 \N 1315 \N 143 \N 756 1.0 1 2019-06-18 21:03:40.619018 2019-06-18 21:03:40.619018 0 \N 1316 \N 143 \N 756 1.0 0 2019-06-18 21:05:08.228315 2019-06-18 21:05:08.228315 3 \N 1317 \N 143 \N 757 1.0 1 2019-06-18 21:05:31.974441 2019-06-18 21:05:31.974441 0 \N 1318 \N 584 \N 758 2.0 1 2019-06-18 22:40:03.583822 2019-06-18 22:40:03.583822 0 \N 1319 \N 584 \N 758 2.0 0 2019-06-18 22:40:43.643257 2019-06-18 22:40:43.643257 9 \N 1320 \N 584 \N 759 1.0 1 2019-06-18 22:41:34.611886 2019-06-18 22:41:34.611886 0 \N 1321 \N 584 \N 759 1.0 0 2019-06-18 22:42:55.373058 2019-06-18 22:42:55.373058 9 \N 1322 \N 584 \N 760 1.0 1 2019-06-18 22:44:03.647387 2019-06-18 22:44:03.647387 0 \N 1323 \N 149 \N 761 1.0 1 2019-06-19 20:42:58.235321 2019-06-19 20:42:58.235321 0 \N 1324 \N 406 \N 762 1.0 1 2019-06-19 20:55:44.869102 2019-06-19 20:55:44.869102 0 \N 1325 \N 509 \N 763 1.0 1 2019-06-19 23:00:17.924224 2019-06-19 23:00:17.924224 0 \N 1326 \N 517 \N 764 1.0 1 2019-06-19 23:56:16.046974 2019-06-19 23:56:16.046974 0 \N 1327 \N 136 \N 765 1.0 1 2019-06-19 23:59:11.827865 2019-06-19 23:59:11.827865 0 \N 1328 \N 257 \N 766 1.0 1 2019-06-20 20:06:11.228195 2019-06-20 20:06:11.228195 0 \N 1329 \N 512 \N \N 6.0 0 2019-06-20 21:45:51.340273 2019-06-20 21:45:51.340273 7 60 1330 \N 17 \N \N 1.0 0 2019-06-20 21:57:06.203426 2019-06-20 21:57:06.203426 7 61 1331 \N 537 \N 767 1.0 1 2019-06-20 22:13:45.682673 2019-06-20 22:13:45.682673 0 \N 1332 \N 367 \N 767 2.0 1 2019-06-20 22:13:45.707628 2019-06-20 22:13:45.707628 0 \N 1333 \N 503 \N 768 1.0 1 2019-06-20 23:21:54.067893 2019-06-20 23:21:54.067893 0 \N 1334 \N 508 \N 769 1.0 1 2019-06-20 23:25:09.122837 2019-06-20 23:25:09.122837 0 \N 1335 \N 199 \N 770 1.0 1 2019-06-21 00:10:43.481001 2019-06-21 00:10:43.481001 0 \N 1336 \N 564 \N 771 1.0 1 2019-06-21 00:28:19.83488 2019-06-21 00:28:19.83488 0 \N 1337 \N 589 102 \N 1.0 0 2019-06-21 01:27:56.005849 2019-06-21 01:27:56.005849 1 \N 1338 \N 589 \N 772 1.0 1 2019-06-21 01:28:49.647115 2019-06-21 01:28:49.647115 0 \N 1339 \N 408 \N 773 1.0 1 2019-06-21 01:46:35.390104 2019-06-21 01:46:35.390104 0 \N 1340 \N 508 \N 773 1.0 1 2019-06-21 01:46:35.414053 2019-06-21 01:46:35.414053 0 \N 1341 \N 553 \N 774 1.0 1 2019-06-21 17:04:10.613287 2019-06-21 17:04:10.613287 0 \N 1342 \N 553 \N 774 1.0 0 2019-06-21 17:05:08.28438 2019-06-21 17:05:08.28438 3 \N 1343 \N 553 \N 775 1.0 1 2019-06-21 17:05:48.614325 2019-06-21 17:05:48.614325 0 \N 1344 \N 565 \N 776 1.0 1 2019-06-21 18:12:12.40706 2019-06-21 18:12:12.40706 0 \N 1345 \N 367 \N 777 1.0 1 2019-06-21 19:33:13.979172 2019-06-21 19:33:13.979172 0 \N 1346 \N 398 \N 778 1.0 1 2019-06-21 20:01:38.682506 2019-06-21 20:01:38.682506 0 \N 1347 \N 569 \N 778 1.0 1 2019-06-21 20:01:38.707278 2019-06-21 20:01:38.707278 0 \N 1348 \N 199 \N 779 1.0 1 2019-06-21 21:42:12.046361 2019-06-21 21:42:12.046361 0 \N 1349 \N 408 \N 780 1.0 1 2019-06-22 16:44:33.562388 2019-06-22 16:44:33.562388 0 \N 1350 \N 270 \N 781 1.0 1 2019-06-22 17:32:58.671683 2019-06-22 17:32:58.671683 0 \N 1351 \N 557 \N 781 1.0 1 2019-06-22 17:32:58.710235 2019-06-22 17:32:58.710235 0 \N 1352 \N 576 \N 782 1.0 1 2019-06-22 19:30:31.378156 2019-06-22 19:30:31.378156 0 \N 1353 \N 517 \N 782 1.0 1 2019-06-22 19:30:31.404739 2019-06-22 19:30:31.404739 0 \N 1354 \N 476 \N 782 1.0 1 2019-06-22 19:30:31.429854 2019-06-22 19:30:31.429854 0 \N 1355 \N 143 \N 782 1.0 1 2019-06-22 19:30:31.456457 2019-06-22 19:30:31.456457 0 \N 1356 \N 572 \N 783 1.0 1 2019-06-22 20:09:13.34633 2019-06-22 20:09:13.34633 0 \N 1357 \N 182 \N 784 1.0 1 2019-06-22 20:11:26.992439 2019-06-22 20:11:26.992439 0 \N 1358 \N 241 \N 785 1.0 1 2019-06-22 21:00:17.013607 2019-06-22 21:00:17.013607 0 \N 1359 \N 181 \N 786 1.0 1 2019-06-22 21:57:56.378502 2019-06-22 21:57:56.378502 0 \N 1360 \N 236 \N \N 2.0 0 2019-06-24 22:05:27.659981 2019-06-24 22:05:27.659981 7 62 1361 \N 586 \N 787 1.0 1 2019-06-25 18:50:36.046045 2019-06-25 18:50:36.046045 0 \N 1362 \N 553 \N 788 1.0 1 2019-06-25 19:03:08.409017 2019-06-25 19:03:08.409017 0 \N 1363 \N 122 \N 789 1.0 1 2019-06-27 16:37:31.78618 2019-06-27 16:37:31.78618 0 \N 1364 \N 122 \N 789 1.0 0 2019-06-27 16:52:02.500145 2019-06-27 16:52:02.500145 9 \N 1365 \N 122 \N 790 1.0 1 2019-06-27 16:59:05.607742 2019-06-27 16:59:05.607742 0 \N 1366 \N 199 \N 791 1.0 1 2019-06-27 17:44:47.291647 2019-06-27 17:44:47.291647 0 \N 1367 \N 199 \N 791 1.0 0 2019-06-27 17:45:23.37927 2019-06-27 17:45:23.37927 3 \N 1368 \N 573 \N 792 1.0 1 2019-06-27 18:04:41.033589 2019-06-27 18:04:41.033589 0 \N 1369 \N 569 \N 793 1.0 1 2019-06-28 01:03:46.405468 2019-06-28 01:03:46.405468 0 \N 1370 \N 145 \N 535 1.0 0 2019-06-28 20:00:38.543857 2019-06-28 20:00:38.543857 8 \N 1371 \N 391 \N 794 1.0 1 2019-06-28 23:30:28.17426 2019-06-28 23:30:28.17426 0 \N 1372 \N 584 \N 795 1.0 1 2019-06-29 17:46:44.374831 2019-06-29 17:46:44.374831 0 \N 1373 \N 74 \N 796 1.0 1 2019-06-29 19:43:43.96401 2019-06-29 19:43:43.96401 0 \N 1374 \N 187 \N \N 3.0 0 2019-06-29 21:14:16.642612 2019-06-29 21:14:16.642612 7 64 1375 \N 199 \N \N 2.0 0 2019-06-29 21:14:16.66617 2019-06-29 21:14:16.66617 7 64 1376 \N 536 \N \N 2.0 0 2019-06-29 21:31:35.155894 2019-06-29 21:31:35.155894 7 63 1377 \N 568 \N 797 1.0 1 2019-06-29 21:41:33.153288 2019-06-29 21:41:33.153288 0 \N 1378 \N 152 \N 797 1.0 1 2019-06-29 21:41:33.189908 2019-06-29 21:41:33.189908 0 \N 1379 \N 248 \N 798 1.0 1 2019-06-29 22:43:07.773286 2019-06-29 22:43:07.773286 0 \N 1380 \N 239 \N 798 1.0 1 2019-06-29 22:43:07.796731 2019-06-29 22:43:07.796731 0 \N 1381 \N 236 \N 799 1.0 1 2019-06-29 23:44:26.678763 2019-06-29 23:44:26.678763 0 \N 1382 \N 580 \N 800 1.0 1 2019-06-29 23:58:51.752523 2019-06-29 23:58:51.752523 0 \N 1383 \N 525 \N 801 1.0 1 2019-06-30 18:40:31.428979 2019-06-30 18:40:31.428979 0 \N 1384 \N 552 \N 802 1.0 1 2019-07-01 18:16:23.067006 2019-07-01 18:16:23.067006 0 \N 1385 \N 580 \N 803 1.0 1 2019-07-01 20:03:16.277287 2019-07-01 20:03:16.277287 0 \N 1386 \N 435 \N 804 1.0 1 2019-07-01 23:22:53.452673 2019-07-01 23:22:53.452673 0 \N 1387 \N 82 \N 805 1.0 1 2019-07-02 01:28:42.484412 2019-07-02 01:28:42.484412 0 \N 1388 \N 503 \N 806 1.0 1 2019-07-02 01:38:51.694917 2019-07-02 01:38:51.694917 0 \N 1389 \N 358 \N 807 1.0 1 2019-07-02 22:28:42.439193 2019-07-02 22:28:42.439193 0 \N 1390 \N 445 \N 808 1.0 1 2019-07-02 22:35:22.522019 2019-07-02 22:35:22.522019 0 \N 1391 \N 50 \N 808 1.0 1 2019-07-02 22:35:22.554622 2019-07-02 22:35:22.554622 0 \N 1392 \N 458 \N 809 1.0 1 2019-07-02 22:39:44.882007 2019-07-02 22:39:44.882007 0 \N 1393 \N 574 \N 810 1.0 1 2019-07-02 22:56:53.145205 2019-07-02 22:56:53.145205 0 \N 1394 \N 512 \N 811 1.0 1 2019-07-03 00:04:14.935738 2019-07-03 00:04:14.935738 0 \N 1395 \N 295 \N 812 1.0 1 2019-07-03 00:44:01.555031 2019-07-03 00:44:01.555031 0 \N 1396 \N 146 \N 813 1.0 1 2019-07-03 02:11:55.466289 2019-07-03 02:11:55.466289 0 \N 1397 \N 321 \N 813 1.0 1 2019-07-03 02:11:55.495894 2019-07-03 02:11:55.495894 0 \N 1398 \N 319 \N 813 1.0 1 2019-07-03 02:11:55.529353 2019-07-03 02:11:55.529353 0 \N 1399 \N 397 \N 814 1.0 1 2019-07-03 18:00:42.880651 2019-07-03 18:00:42.880651 0 \N 1400 \N 209 \N 815 1.0 1 2019-07-03 21:06:51.984249 2019-07-03 21:06:51.984249 0 \N 1401 \N 458 \N 815 1.0 1 2019-07-03 21:06:52.007283 2019-07-03 21:06:52.007283 0 \N 1402 \N 458 \N 815 1.0 0 2019-07-03 21:07:49.478414 2019-07-03 21:07:49.478414 3 \N 1403 \N 209 \N 815 1.0 0 2019-07-03 21:07:49.500089 2019-07-03 21:07:49.500089 3 \N 1404 \N 209 \N 816 1.0 1 2019-07-03 21:09:52.073648 2019-07-03 21:09:52.073648 0 \N 1405 \N 458 \N 816 1.0 1 2019-07-03 21:09:52.097324 2019-07-03 21:09:52.097324 0 \N 1406 \N 458 \N 816 1.0 0 2019-07-03 21:11:09.560812 2019-07-03 21:11:09.560812 3 \N 1407 \N 209 \N 816 1.0 0 2019-07-03 21:11:09.58328 2019-07-03 21:11:09.58328 3 \N 1408 \N 209 \N 817 1.0 1 2019-07-03 21:11:46.348182 2019-07-03 21:11:46.348182 0 \N 1409 \N 458 \N 817 1.0 1 2019-07-03 21:11:46.376637 2019-07-03 21:11:46.376637 0 \N 1410 \N 185 \N 818 1.0 1 2019-07-04 17:31:54.53641 2019-07-04 17:31:54.53641 0 \N 1411 \N 580 \N 819 1.0 1 2019-07-04 17:41:21.353302 2019-07-04 17:41:21.353302 0 \N 1412 \N 187 \N 820 1.0 1 2019-07-04 19:50:27.70671 2019-07-04 19:50:27.70671 0 \N 1413 \N 514 \N 820 1.0 1 2019-07-04 19:50:27.733902 2019-07-04 19:50:27.733902 0 \N 1414 \N 46 \N 821 1.0 1 2019-07-05 00:32:55.069402 2019-07-05 00:32:55.069402 0 \N 1415 \N 389 \N 822 1.0 1 2019-07-05 17:18:38.22675 2019-07-05 17:18:38.22675 0 \N 1416 \N 249 \N 823 1.0 1 2019-07-05 18:18:45.96023 2019-07-05 18:18:45.96023 0 \N 1417 \N 498 \N 824 1.0 1 2019-07-06 00:48:16.937211 2019-07-06 00:48:16.937211 0 \N 1418 \N 188 \N 825 1.0 1 2019-07-06 00:58:49.967903 2019-07-06 00:58:49.967903 0 \N 1419 \N 95 \N 826 1.0 1 2019-07-07 00:30:44.214916 2019-07-07 00:30:44.214916 0 \N 1420 \N 575 \N 827 1.0 1 2019-07-08 17:25:29.477438 2019-07-08 17:25:29.477438 0 \N 1421 \N 551 \N 828 1.0 1 2019-07-08 20:12:42.064153 2019-07-08 20:12:42.064153 0 \N 1422 \N 495 \N 829 1.0 1 2019-07-09 20:19:36.908722 2019-07-09 20:19:36.908722 0 \N 1423 \N 19 \N 830 1.0 1 2019-07-09 21:29:11.009714 2019-07-09 21:29:11.009714 0 \N 1424 \N 273 \N 831 1.0 1 2019-07-10 00:23:11.0726 2019-07-10 00:23:11.0726 0 \N 1425 \N 519 \N 832 1.0 1 2019-07-10 22:55:22.262942 2019-07-10 22:55:22.262942 0 \N 1426 \N 510 \N 833 1.0 1 2019-07-12 18:01:31.982047 2019-07-12 18:01:31.982047 0 \N 1427 \N 470 \N 834 1.0 1 2019-07-12 22:25:51.338736 2019-07-12 22:25:51.338736 0 \N 1428 \N 434 \N 835 1.0 1 2019-07-13 00:50:42.31177 2019-07-13 00:50:42.31177 0 \N 1429 \N 574 \N \N 4.0 0 2019-07-13 17:58:58.512561 2019-07-13 17:58:58.512561 7 65 1430 \N 160 \N \N 2.0 0 2019-07-13 17:58:58.534679 2019-07-13 17:58:58.534679 7 65 1431 \N 161 103 \N 1.0 0 2019-07-13 18:10:11.595518 2019-07-13 18:10:11.595518 1 \N 1432 \N 8 \N \N 6.0 0 2019-07-13 18:14:52.2986 2019-07-13 18:14:52.2986 7 68 1433 \N 15 \N \N 4.0 0 2019-07-13 18:14:52.319064 2019-07-13 18:14:52.319064 7 68 1434 \N 181 \N \N 2.0 0 2019-07-13 18:24:25.989337 2019-07-13 18:24:25.989337 7 69 1435 \N 398 \N \N 3.0 0 2019-07-13 18:24:35.737645 2019-07-13 18:24:35.737645 7 67 1436 \N 7 \N \N 4.0 0 2019-07-13 18:24:35.759614 2019-07-13 18:24:35.759614 7 67 1437 \N 516 \N \N 3.0 0 2019-07-13 18:24:48.232077 2019-07-13 18:24:48.232077 7 66 1438 \N 419 \N \N 5.0 0 2019-07-13 18:24:48.252559 2019-07-13 18:24:48.252559 7 66 1439 \N 581 \N \N 5.0 0 2019-07-13 18:24:48.268734 2019-07-13 18:24:48.268734 7 66 1440 \N 576 \N \N 4.0 0 2019-07-13 18:24:48.28406 2019-07-13 18:24:48.28406 7 66 1441 \N 10 \N \N 4.0 0 2019-07-13 18:32:13.410429 2019-07-13 18:32:13.410429 7 71 1442 \N 185 \N \N 2.0 0 2019-07-13 18:32:22.763976 2019-07-13 18:32:22.763976 7 70 1443 \N 239 \N \N 2.0 0 2019-07-13 18:32:22.801577 2019-07-13 18:32:22.801577 7 70 1444 \N 253 \N \N 3.0 0 2019-07-13 18:45:56.987016 2019-07-13 18:45:56.987016 7 72 1445 \N 59 \N 836 1.0 1 2019-07-13 20:18:30.888624 2019-07-13 20:18:30.888624 0 \N 1446 \N 372 \N 837 1.0 1 2019-07-13 23:49:50.871065 2019-07-13 23:49:50.871065 0 \N 1447 \N 91 \N 838 1.0 1 2019-07-13 23:55:39.009749 2019-07-13 23:55:39.009749 0 \N 1448 \N 406 \N 839 1.0 1 2019-07-14 00:06:23.666379 2019-07-14 00:06:23.666379 0 \N 1449 \N 116 \N 840 1.0 1 2019-07-14 00:06:58.555654 2019-07-14 00:06:58.555654 0 \N 1450 \N 581 \N 644 1.0 0 2019-07-14 00:40:35.128566 2019-07-14 00:40:35.128566 8 \N 1451 \N 323 \N \N 3.0 0 2019-07-14 01:18:25.809696 2019-07-14 01:18:25.809696 7 73 1452 \N 318 \N \N 2.0 0 2019-07-14 01:18:25.827425 2019-07-14 01:18:25.827425 7 73 1453 \N 140 \N \N 2.0 0 2019-07-14 01:18:25.853819 2019-07-14 01:18:25.853819 7 73 1454 \N 277 \N \N 1.0 0 2019-07-14 01:18:25.87633 2019-07-14 01:18:25.87633 7 73 1455 \N 320 \N \N 4.0 0 2019-07-14 01:18:25.899619 2019-07-14 01:18:25.899619 7 73 1456 \N 278 \N \N 2.0 0 2019-07-14 01:18:25.928863 2019-07-14 01:18:25.928863 7 73 1457 \N 329 \N \N 3.0 0 2019-07-14 01:18:25.953342 2019-07-14 01:18:25.953342 7 73 1458 \N 403 \N \N 1.0 0 2019-07-14 01:18:25.973472 2019-07-14 01:18:25.973472 7 73 1459 \N 404 \N \N 3.0 0 2019-07-14 01:18:25.99427 2019-07-14 01:18:25.99427 7 73 1460 \N 92 \N \N 2.0 0 2019-07-14 01:18:26.01225 2019-07-14 01:18:26.01225 7 73 1461 \N 145 \N \N 1.0 0 2019-07-14 01:18:26.033072 2019-07-14 01:18:26.033072 7 73 1462 \N 550 \N \N 4.0 0 2019-07-14 01:22:24.733966 2019-07-14 01:22:24.733966 7 74 1463 \N 548 \N \N 4.0 0 2019-07-14 01:22:24.759644 2019-07-14 01:22:24.759644 7 74 1464 \N 502 \N \N 4.0 0 2019-07-14 01:22:24.783647 2019-07-14 01:22:24.783647 7 74 1465 \N 567 \N \N 6.0 0 2019-07-14 01:43:11.833904 2019-07-14 01:43:11.833904 7 76 1466 \N 587 \N \N 3.0 0 2019-07-14 01:43:24.786969 2019-07-14 01:43:24.786969 7 75 1467 \N 517 \N \N 2.0 0 2019-07-14 01:43:24.816748 2019-07-14 01:43:24.816748 7 75 1468 \N 532 \N \N 2.0 0 2019-07-14 01:43:24.847941 2019-07-14 01:43:24.847941 7 75 1469 \N 290 \N \N 2.0 0 2019-07-14 01:43:24.877297 2019-07-14 01:43:24.877297 7 75 1470 \N 574 \N 841 1.0 1 2019-07-15 18:37:37.929484 2019-07-15 18:37:37.929484 0 \N 1471 \N 476 \N 841 1.0 1 2019-07-15 18:37:37.960888 2019-07-15 18:37:37.960888 0 \N 1472 \N 590 104 \N 6.0 0 2019-07-15 19:21:29.712461 2019-07-15 19:21:29.712461 1 \N 1473 \N 591 104 \N 6.0 0 2019-07-15 19:21:29.736669 2019-07-15 19:21:29.736669 1 \N 1474 \N 592 104 \N 6.0 0 2019-07-15 19:21:29.76007 2019-07-15 19:21:29.76007 1 \N 1475 \N 593 104 \N 6.0 0 2019-07-15 19:21:29.78497 2019-07-15 19:21:29.78497 1 \N 1476 \N 594 104 \N 6.0 0 2019-07-15 19:21:29.809373 2019-07-15 19:21:29.809373 1 \N 1477 \N 595 104 \N 6.0 0 2019-07-15 19:21:29.834013 2019-07-15 19:21:29.834013 1 \N 1478 \N 596 105 \N 5.0 0 2019-07-15 20:24:06.548398 2019-07-15 20:24:06.548398 1 \N 1479 \N 597 106 \N 6.0 0 2019-07-15 22:40:01.44375 2019-07-15 22:40:01.44375 1 \N 1480 \N 598 106 \N 6.0 0 2019-07-15 22:40:01.465392 2019-07-15 22:40:01.465392 1 \N 1481 \N 599 106 \N 6.0 0 2019-07-15 22:40:01.48737 2019-07-15 22:40:01.48737 1 \N 1482 \N 600 106 \N 6.0 0 2019-07-15 22:40:01.517654 2019-07-15 22:40:01.517654 1 \N 1483 \N 601 106 \N 6.0 0 2019-07-15 22:40:01.547144 2019-07-15 22:40:01.547144 1 \N 1484 \N 602 106 \N 6.0 0 2019-07-15 22:40:01.570374 2019-07-15 22:40:01.570374 1 \N 1485 \N 603 106 \N 6.0 0 2019-07-15 22:40:01.592449 2019-07-15 22:40:01.592449 1 \N 1486 \N 604 106 \N 6.0 0 2019-07-15 22:40:01.613696 2019-07-15 22:40:01.613696 1 \N 1487 \N 600 107 \N 6.0 0 2019-07-15 23:43:05.072023 2019-07-15 23:43:05.072023 1 \N 1488 \N 597 107 \N 6.0 0 2019-07-15 23:43:05.101861 2019-07-15 23:43:05.101861 1 \N 1489 \N 590 107 \N 6.0 0 2019-07-15 23:43:05.147452 2019-07-15 23:43:05.147452 1 \N 1490 \N 219 \N \N 4.0 0 2019-07-15 23:47:16.953166 2019-07-15 23:47:16.953166 7 78 1491 \N 527 \N \N 5.0 0 2019-07-15 23:47:16.976608 2019-07-15 23:47:16.976608 7 78 1492 \N 144 \N \N 6.0 0 2019-07-15 23:47:16.998074 2019-07-15 23:47:16.998074 7 78 1493 \N 206 \N \N 4.0 0 2019-07-15 23:47:17.023739 2019-07-15 23:47:17.023739 7 78 1494 \N 232 \N \N 1.0 0 2019-07-15 23:47:17.050638 2019-07-15 23:47:17.050638 7 78 1495 \N 548 \N 842 1.0 1 2019-07-15 23:50:54.688199 2019-07-15 23:50:54.688199 0 \N 1496 \N 163 \N \N 2.0 0 2019-07-16 00:08:51.500955 2019-07-16 00:08:51.500955 7 79 1497 \N 178 \N \N 1.0 0 2019-07-16 00:08:51.528287 2019-07-16 00:08:51.528287 7 79 1498 \N 496 \N \N 2.0 0 2019-07-16 00:08:51.550751 2019-07-16 00:08:51.550751 7 79 1499 \N 501 \N \N 5.0 0 2019-07-16 00:08:51.572455 2019-07-16 00:08:51.572455 7 79 1500 \N 600 \N \N 6.0 0 2019-07-16 00:09:20.543262 2019-07-16 00:09:20.543262 7 80 1501 \N 597 \N \N 6.0 0 2019-07-16 00:09:20.563638 2019-07-16 00:09:20.563638 7 80 1502 \N 590 \N \N 6.0 0 2019-07-16 00:09:20.586313 2019-07-16 00:09:20.586313 7 80 1503 \N 238 \N \N 3.0 0 2019-07-16 00:09:46.668196 2019-07-16 00:09:46.668196 7 77 1504 \N 237 \N \N 3.0 0 2019-07-16 00:09:46.689166 2019-07-16 00:09:46.689166 7 77 1505 \N 603 \N 843 1.0 1 2019-07-16 00:52:33.040372 2019-07-16 00:52:33.040372 0 \N 1506 \N 553 \N 843 1.0 1 2019-07-16 00:52:33.064139 2019-07-16 00:52:33.064139 0 \N 1507 \N 553 \N 843 1.0 0 2019-07-16 00:52:43.404658 2019-07-16 00:52:43.404658 3 \N 1508 \N 603 \N 843 1.0 0 2019-07-16 00:52:43.429594 2019-07-16 00:52:43.429594 3 \N 1509 \N 553 \N 844 1.0 1 2019-07-16 00:53:48.609338 2019-07-16 00:53:48.609338 0 \N 1510 \N 603 \N 844 1.0 1 2019-07-16 00:53:48.635017 2019-07-16 00:53:48.635017 0 \N 1511 \N 606 108 \N 6.0 0 2019-07-16 01:00:21.917789 2019-07-16 01:00:21.917789 1 \N 1512 \N 609 108 \N 6.0 0 2019-07-16 01:00:21.968385 2019-07-16 01:00:21.968385 1 \N 1513 \N 610 108 \N 6.0 0 2019-07-16 01:00:22.011783 2019-07-16 01:00:22.011783 1 \N 1514 \N 608 108 \N 6.0 0 2019-07-16 01:00:22.048311 2019-07-16 01:00:22.048311 1 \N 1515 \N 607 108 \N 6.0 0 2019-07-16 01:00:22.082076 2019-07-16 01:00:22.082076 1 \N 1516 \N 605 108 \N 6.0 0 2019-07-16 01:00:22.12443 2019-07-16 01:00:22.12443 1 \N 1517 \N 611 109 \N 6.0 0 2019-07-16 01:15:20.883757 2019-07-16 01:15:20.883757 1 \N 1518 \N 596 \N 845 1.0 1 2019-07-16 20:55:04.93846 2019-07-16 20:55:04.93846 0 \N 1519 \N 597 \N 846 1.0 1 2019-07-17 16:45:44.804648 2019-07-17 16:45:44.804648 0 \N 1520 \N 500 \N 847 1.0 1 2019-07-17 19:13:37.999041 2019-07-17 19:13:37.999041 0 \N 1521 \N 118 \N 848 1.0 1 2019-07-17 19:35:17.032619 2019-07-17 19:35:17.032619 0 \N 1522 \N 187 \N 849 1.0 1 2019-07-17 19:57:17.592771 2019-07-17 19:57:17.592771 0 \N 1523 \N 502 \N 850 1.0 1 2019-07-17 19:57:42.734953 2019-07-17 19:57:42.734953 0 \N 1524 \N 607 \N 851 1.0 1 2019-07-17 20:10:42.18867 2019-07-17 20:10:42.18867 0 \N 1525 \N 595 \N 852 1.0 1 2019-07-17 21:53:04.359423 2019-07-17 21:53:04.359423 0 \N 1526 \N 595 \N 853 1.0 1 2019-07-17 22:20:00.723226 2019-07-17 22:20:00.723226 0 \N 1527 \N 612 110 \N 1.0 0 2019-07-17 23:06:30.090808 2019-07-17 23:06:30.090808 1 \N 1528 \N 613 110 \N 1.0 0 2019-07-17 23:06:30.117038 2019-07-17 23:06:30.117038 1 \N 1529 \N 614 110 \N 1.0 0 2019-07-17 23:06:30.141533 2019-07-17 23:06:30.141533 1 \N 1530 \N 615 110 \N 1.0 0 2019-07-17 23:06:30.164947 2019-07-17 23:06:30.164947 1 \N 1531 \N 600 \N 854 1.0 1 2019-07-18 01:19:13.995763 2019-07-18 01:19:13.995763 0 \N 1532 \N 16 \N \N 2.0 0 2019-07-18 01:23:32.333391 2019-07-18 01:23:32.333391 7 82 1533 \N 16 \N 855 1.0 1 2019-07-18 01:24:20.63505 2019-07-18 01:24:20.63505 0 \N 1534 \N 527 \N 856 1.0 1 2019-07-18 01:34:44.180321 2019-07-18 01:34:44.180321 0 \N 1535 \N 600 \N 857 1.0 1 2019-07-19 19:34:31.932668 2019-07-19 19:34:31.932668 0 \N 1536 \N 610 \N 858 1.0 1 2019-07-19 19:39:52.649508 2019-07-19 19:39:52.649508 0 \N 1537 \N 610 \N 858 1.0 0 2019-07-19 19:41:44.571303 2019-07-19 19:41:44.571303 3 \N 1538 \N 610 \N 859 1.0 1 2019-07-19 19:43:11.946346 2019-07-19 19:43:11.946346 0 \N 1539 \N 281 \N 859 1.0 1 2019-07-19 19:43:11.970932 2019-07-19 19:43:11.970932 0 \N 1540 \N 281 \N 859 1.0 0 2019-07-19 19:45:50.146446 2019-07-19 19:45:50.146446 3 \N 1541 \N 610 \N 859 1.0 0 2019-07-19 19:45:50.173094 2019-07-19 19:45:50.173094 3 \N 1542 \N 281 \N 859 1.0 0 2019-07-19 19:46:11.708995 2019-07-19 19:46:11.708995 3 \N 1543 \N 610 \N 859 1.0 0 2019-07-19 19:46:11.727674 2019-07-19 19:46:11.727674 3 \N 1544 \N 610 \N 860 1.0 1 2019-07-19 19:46:50.525041 2019-07-19 19:46:50.525041 0 \N 1545 \N 281 \N 860 1.0 1 2019-07-19 19:46:50.546253 2019-07-19 19:46:50.546253 0 \N 1546 \N 591 \N 861 1.0 1 2019-07-19 21:01:37.808097 2019-07-19 21:01:37.808097 0 \N 1547 \N 147 \N 862 1.0 1 2019-07-20 16:29:58.358741 2019-07-20 16:29:58.358741 0 \N 1548 \N 592 \N 863 1.0 1 2019-07-20 17:30:16.173006 2019-07-20 17:30:16.173006 0 \N 1549 \N 152 \N 864 1.0 1 2019-07-20 17:57:41.976546 2019-07-20 17:57:41.976546 0 \N 1550 \N 295 \N \N 1.0 0 2019-07-20 18:05:32.983218 2019-07-20 18:05:32.983218 7 81 1551 \N 367 \N \N 1.0 0 2019-07-20 18:05:48.065165 2019-07-20 18:05:48.065165 7 83 1552 \N 343 \N \N 1.0 0 2019-07-20 18:05:48.086537 2019-07-20 18:05:48.086537 7 83 1553 \N 343 \N 865 1.0 1 2019-07-20 18:29:13.411697 2019-07-20 18:29:13.411697 0 \N 1554 \N 600 \N 865 1.0 1 2019-07-20 18:29:13.433325 2019-07-20 18:29:13.433325 0 \N 1555 \N 367 \N 865 1.0 1 2019-07-20 18:29:13.453963 2019-07-20 18:29:13.453963 0 \N 1556 \N 597 \N 865 1.0 1 2019-07-20 18:29:13.47556 2019-07-20 18:29:13.47556 0 \N 1557 \N 88 \N 865 1.0 1 2019-07-20 18:29:13.496069 2019-07-20 18:29:13.496069 0 \N 1558 \N 592 \N 866 1.0 1 2019-07-20 19:04:54.960565 2019-07-20 19:04:54.960565 0 \N 1559 \N 315 \N 867 1.0 1 2019-07-20 19:19:51.501191 2019-07-20 19:19:51.501191 0 \N 1560 \N 603 \N 868 1.0 1 2019-07-20 23:14:41.331399 2019-07-20 23:14:41.331399 0 \N 1561 \N 568 \N 869 1.0 1 2019-07-21 01:01:41.934736 2019-07-21 01:01:41.934736 0 \N 1562 \N 527 \N 870 1.0 1 2019-07-21 01:12:20.742101 2019-07-21 01:12:20.742101 0 \N 1563 \N 604 \N 870 1.0 1 2019-07-21 01:12:20.769803 2019-07-21 01:12:20.769803 0 \N 1564 \N 499 \N 871 1.0 1 2019-07-21 16:42:07.181118 2019-07-21 16:42:07.181118 0 \N 1565 \N 156 \N 872 1.0 1 2019-07-21 19:01:24.087683 2019-07-21 19:01:24.087683 0 \N 1566 \N 158 \N 873 1.0 1 2019-07-21 19:12:59.682351 2019-07-21 19:12:59.682351 0 \N 1567 \N 330 \N 874 1.0 1 2019-07-21 19:23:30.60078 2019-07-21 19:23:30.60078 0 \N 1568 \N 592 \N 875 1.0 1 2019-07-21 20:07:55.228879 2019-07-21 20:07:55.228879 0 \N 1569 \N 499 \N 876 1.0 1 2019-07-21 21:03:42.007418 2019-07-21 21:03:42.007418 0 \N 1570 \N 614 \N 877 1.0 1 2019-07-22 18:02:35.386844 2019-07-22 18:02:35.386844 0 \N 1571 \N 588 \N 878 1.0 1 2019-07-22 20:05:40.036144 2019-07-22 20:05:40.036144 0 \N 1572 \N 616 111 \N 11.0 0 2019-07-22 23:37:30.658556 2019-07-22 23:37:30.658556 1 \N 1573 \N 616 \N 879 2.0 1 2019-07-22 23:38:13.260648 2019-07-22 23:38:13.260648 0 \N 1574 \N 367 \N 880 1.0 1 2019-07-23 00:18:33.023687 2019-07-23 00:18:33.023687 0 \N 1575 \N 104 \N 881 1.0 1 2019-07-23 01:29:35.427578 2019-07-23 01:29:35.427578 0 \N 1576 \N 618 112 \N 6.0 0 2019-07-23 18:34:24.094419 2019-07-23 18:34:24.094419 1 \N 1577 \N 619 112 \N 6.0 0 2019-07-23 18:34:24.128217 2019-07-23 18:34:24.128217 1 \N 1578 \N 620 112 \N 6.0 0 2019-07-23 18:34:24.162975 2019-07-23 18:34:24.162975 1 \N 1579 \N 621 112 \N 6.0 0 2019-07-23 18:34:24.192358 2019-07-23 18:34:24.192358 1 \N 1580 \N 622 112 \N 6.0 0 2019-07-23 18:34:24.21786 2019-07-23 18:34:24.21786 1 \N 1581 \N 623 112 \N 6.0 0 2019-07-23 18:34:24.24296 2019-07-23 18:34:24.24296 1 \N 1582 \N 624 112 \N 6.0 0 2019-07-23 18:34:24.2684 2019-07-23 18:34:24.2684 1 \N 1583 \N 625 112 \N 6.0 0 2019-07-23 18:34:24.294545 2019-07-23 18:34:24.294545 1 \N 1584 \N 626 112 \N 6.0 0 2019-07-23 18:34:24.324233 2019-07-23 18:34:24.324233 1 \N 1585 \N 627 112 \N 6.0 0 2019-07-23 18:34:24.355044 2019-07-23 18:34:24.355044 1 \N 1586 \N 629 113 \N 6.0 0 2019-07-23 19:36:35.539862 2019-07-23 19:36:35.539862 1 \N 1587 \N 630 113 \N 6.0 0 2019-07-23 19:36:35.566968 2019-07-23 19:36:35.566968 1 \N 1588 \N 631 113 \N 6.0 0 2019-07-23 19:36:35.588905 2019-07-23 19:36:35.588905 1 \N 1589 \N 632 113 \N 6.0 0 2019-07-23 19:36:35.617141 2019-07-23 19:36:35.617141 1 \N 1590 \N 633 113 \N 6.0 0 2019-07-23 19:36:35.648285 2019-07-23 19:36:35.648285 1 \N 1591 \N 634 113 \N 6.0 0 2019-07-23 19:36:35.671696 2019-07-23 19:36:35.671696 1 \N 1592 \N 628 113 \N 6.0 0 2019-07-23 19:36:35.69645 2019-07-23 19:36:35.69645 1 \N 1593 \N 635 113 \N 6.0 0 2019-07-23 19:36:35.724464 2019-07-23 19:36:35.724464 1 \N 1594 \N 636 113 \N 6.0 0 2019-07-23 19:36:35.74718 2019-07-23 19:36:35.74718 1 \N 1595 \N 637 113 \N 6.0 0 2019-07-23 19:36:35.775992 2019-07-23 19:36:35.775992 1 \N 1596 \N 638 113 \N 6.0 0 2019-07-23 19:36:35.800556 2019-07-23 19:36:35.800556 1 \N 1597 \N 629 \N 882 1.0 1 2019-07-23 20:00:20.999296 2019-07-23 20:00:20.999296 0 \N 1598 \N 592 \N 883 1.0 1 2019-07-23 20:05:01.521946 2019-07-23 20:05:01.521946 0 \N 1599 \N 613 \N 884 1.0 1 2019-07-23 20:50:45.437361 2019-07-23 20:50:45.437361 0 \N 1600 \N 279 \N 885 1.0 1 2019-07-23 23:50:33.05872 2019-07-23 23:50:33.05872 0 \N 1601 \N 591 \N 886 1.0 1 2019-07-24 16:22:22.611753 2019-07-24 16:22:22.611753 0 \N 1602 \N 618 \N 887 1.0 1 2019-07-24 18:26:50.673467 2019-07-24 18:26:50.673467 0 \N 1603 \N 596 \N 887 1.0 1 2019-07-24 18:26:50.708563 2019-07-24 18:26:50.708563 0 \N 1604 \N 608 \N 888 1.0 1 2019-07-25 00:05:04.152736 2019-07-25 00:05:04.152736 0 \N 1605 \N 587 \N 889 1.0 1 2019-07-25 00:31:00.217168 2019-07-25 00:31:00.217168 0 \N 1606 \N 623 \N 889 1.0 1 2019-07-25 00:31:00.243438 2019-07-25 00:31:00.243438 0 \N 1607 \N 623 \N 890 1.0 1 2019-07-25 00:43:02.625537 2019-07-25 00:43:02.625537 0 \N 1608 \N 600 \N 890 1.0 1 2019-07-25 00:43:02.654653 2019-07-25 00:43:02.654653 0 \N 1609 \N 610 \N 891 1.0 1 2019-07-25 01:41:26.43958 2019-07-25 01:41:26.43958 0 \N 1610 \N 156 \N \N 1.0 0 2019-07-25 17:51:17.27419 2019-07-25 17:51:17.27419 7 85 1611 \N 577 \N 892 1.0 1 2019-07-25 18:07:04.228856 2019-07-25 18:07:04.228856 0 \N 1612 \N 623 \N 893 1.0 1 2019-07-25 18:36:30.848827 2019-07-25 18:36:30.848827 0 \N 1613 \N 600 \N 893 1.0 1 2019-07-25 18:36:30.871423 2019-07-25 18:36:30.871423 0 \N 1614 \N 25 \N 894 1.0 1 2019-07-25 19:36:26.387936 2019-07-25 19:36:26.387936 0 \N 1615 \N 25 \N 894 1.0 0 2019-07-25 19:43:51.496245 2019-07-25 19:43:51.496245 3 \N 1616 \N 25 \N 895 1.0 1 2019-07-25 19:44:28.827408 2019-07-25 19:44:28.827408 0 \N 1617 \N 279 \N 896 1.0 1 2019-07-26 01:49:56.895149 2019-07-26 01:49:56.895149 0 \N 1618 \N 593 \N 897 1.0 1 2019-07-26 21:03:54.227562 2019-07-26 21:03:54.227562 0 \N 1619 \N 593 \N 897 1.0 0 2019-07-26 21:18:51.212428 2019-07-26 21:18:51.212428 3 \N 1620 \N 593 \N 898 1.0 1 2019-07-26 21:19:56.966777 2019-07-26 21:19:56.966777 0 \N 1621 \N 621 \N 899 1.0 1 2019-07-26 21:29:03.358752 2019-07-26 21:29:03.358752 0 \N 1622 \N 595 \N 899 1.0 1 2019-07-26 21:29:03.390946 2019-07-26 21:29:03.390946 0 \N 1623 \N 590 \N 900 1.0 1 2019-07-26 21:59:07.256088 2019-07-26 21:59:07.256088 0 \N 1624 \N 140 \N 901 1.0 1 2019-07-26 22:54:03.498278 2019-07-26 22:54:03.498278 0 \N 1625 \N 477 \N 902 1.0 1 2019-07-26 23:01:28.104399 2019-07-26 23:01:28.104399 0 \N 1626 \N 565 \N 903 1.0 1 2019-07-27 00:54:56.308776 2019-07-27 00:54:56.308776 0 \N 1627 \N 601 \N 904 1.0 1 2019-07-27 18:44:15.339919 2019-07-27 18:44:15.339919 0 \N 1628 \N 319 \N 905 1.0 1 2019-07-27 19:28:00.095565 2019-07-27 19:28:00.095565 0 \N 1629 \N 632 \N 906 1.0 1 2019-07-27 19:30:48.594485 2019-07-27 19:30:48.594485 0 \N 1630 \N 588 \N 907 1.0 1 2019-07-27 19:42:52.101363 2019-07-27 19:42:52.101363 0 \N 1631 \N 477 \N 908 1.0 1 2019-07-27 19:54:11.008235 2019-07-27 19:54:11.008235 0 \N 1632 \N 631 \N 909 1.0 1 2019-07-27 22:37:35.304241 2019-07-27 22:37:35.304241 0 \N 1633 \N 83 \N 910 1.0 1 2019-07-27 23:36:38.900715 2019-07-27 23:36:38.900715 0 \N 1634 \N 620 \N 910 1.0 1 2019-07-27 23:36:38.937156 2019-07-27 23:36:38.937156 0 \N 1635 \N 570 \N 911 1.0 1 2019-07-28 00:20:35.922979 2019-07-28 00:20:35.922979 0 \N 1636 \N 605 \N 912 1.0 1 2019-07-28 00:25:54.346001 2019-07-28 00:25:54.346001 0 \N 1637 \N 390 \N \N 2.0 0 2019-07-28 00:57:11.666094 2019-07-28 00:57:11.666094 7 87 1638 \N 182 \N \N 1.0 0 2019-07-28 00:57:11.699518 2019-07-28 00:57:11.699518 7 87 1639 \N 392 \N \N 1.0 0 2019-07-28 00:57:11.737959 2019-07-28 00:57:11.737959 7 87 1640 \N 396 \N \N 2.0 0 2019-07-28 00:57:11.765848 2019-07-28 00:57:11.765848 7 87 1641 \N 152 \N \N 5.0 0 2019-07-28 00:57:18.633358 2019-07-28 00:57:18.633358 7 86 1642 \N 569 \N \N 1.0 0 2019-07-28 00:58:34.797599 2019-07-28 00:58:34.797599 7 88 1643 \N 570 \N 911 1.0 0 2019-07-28 01:01:00.946649 2019-07-28 01:01:00.946649 3 \N 1644 \N 569 \N 913 1.0 1 2019-07-28 01:01:26.462394 2019-07-28 01:01:26.462394 0 \N 1645 \N 587 \N 914 1.0 1 2019-07-28 19:09:33.897082 2019-07-28 19:09:33.897082 0 \N 1646 \N 639 114 \N 4.0 0 2019-07-29 23:15:51.696693 2019-07-29 23:15:51.696693 1 \N 1647 \N 637 \N 915 1.0 1 2019-07-30 18:03:02.397741 2019-07-30 18:03:02.397741 0 \N 1648 \N 592 \N 916 1.0 1 2019-07-30 20:31:36.890193 2019-07-30 20:31:36.890193 0 \N 1649 \N 597 \N 917 1.0 1 2019-07-30 20:47:22.600533 2019-07-30 20:47:22.600533 0 \N 1650 \N 147 \N 918 1.0 1 2019-07-31 00:41:53.662493 2019-07-31 00:41:53.662493 0 \N 1651 \N 631 \N 919 1.0 1 2019-07-31 23:22:28.581612 2019-07-31 23:22:28.581612 0 \N 1652 \N 477 \N 920 1.0 1 2019-08-01 01:22:13.153715 2019-08-01 01:22:13.153715 0 \N 1653 \N 477 \N 920 1.0 0 2019-08-01 01:23:32.269547 2019-08-01 01:23:32.269547 3 \N 1654 \N 477 \N 921 1.0 1 2019-08-01 01:25:14.717108 2019-08-01 01:25:14.717108 0 \N 1655 \N 8 \N 922 1.0 1 2019-08-01 01:35:47.257754 2019-08-01 01:35:47.257754 0 \N 1656 \N 608 \N 923 1.0 1 2019-08-01 17:46:57.982881 2019-08-01 17:46:57.982881 0 \N 1657 \N 268 \N 924 1.0 1 2019-08-01 23:52:36.295732 2019-08-01 23:52:36.295732 0 \N 1658 \N 268 \N 924 1.0 0 2019-08-01 23:52:46.042067 2019-08-01 23:52:46.042067 3 \N 1659 \N 268 \N 925 1.0 1 2019-08-01 23:53:09.433239 2019-08-01 23:53:09.433239 0 \N 1660 \N 600 \N \N 1.0 0 2019-08-02 21:27:56.503922 2019-08-02 21:27:56.503922 7 89 1661 \N 623 \N 926 1.0 1 2019-08-03 00:25:19.574148 2019-08-03 00:25:19.574148 0 \N 1662 \N 627 \N 927 1.0 1 2019-08-03 00:40:55.661309 2019-08-03 00:40:55.661309 0 \N 1663 \N 367 \N 628 2.0 0 2019-08-03 00:51:33.130269 2019-08-03 00:51:33.130269 8 \N 1664 \N 627 \N 928 1.0 1 2019-08-03 17:01:48.496911 2019-08-03 17:01:48.496911 0 \N 1665 \N 630 \N 929 1.0 1 2019-08-03 18:38:44.448783 2019-08-03 18:38:44.448783 0 \N 1666 \N 626 \N 930 1.0 1 2019-08-03 19:07:40.562755 2019-08-03 19:07:40.562755 0 \N 1667 \N 606 \N 931 1.0 1 2019-08-04 00:18:37.008017 2019-08-04 00:18:37.008017 0 \N 1668 \N 606 \N 931 1.0 0 2019-08-04 00:18:58.16259 2019-08-04 00:18:58.16259 9 \N 1669 \N 576 \N 932 1.0 1 2019-08-04 00:56:42.327986 2019-08-04 00:56:42.327986 0 \N 1670 \N 157 \N 933 1.0 1 2019-08-04 01:03:00.583444 2019-08-04 01:03:00.583444 0 \N 1671 \N 636 \N 934 1.0 1 2019-08-04 01:05:17.315849 2019-08-04 01:05:17.315849 0 \N 1672 \N 606 \N 935 1.0 1 2019-08-04 01:11:08.774977 2019-08-04 01:11:08.774977 0 \N 1673 \N 569 \N 936 1.0 1 2019-08-04 01:15:18.497896 2019-08-04 01:15:18.497896 0 \N 1674 \N 74 \N 937 1.0 1 2019-08-05 16:26:26.31799 2019-08-05 16:26:26.31799 0 \N 1675 \N 182 \N 938 1.0 1 2019-08-05 23:27:16.808149 2019-08-05 23:27:16.808149 0 \N 1676 \N 182 \N 938 1.0 0 2019-08-05 23:30:33.839608 2019-08-05 23:30:33.839608 3 \N 1677 \N 182 \N 939 1.0 1 2019-08-05 23:31:10.657658 2019-08-05 23:31:10.657658 0 \N 1678 \N 595 \N 940 1.0 1 2019-08-06 01:05:19.948561 2019-08-06 01:05:19.948561 0 \N 1679 \N 610 \N 941 1.0 1 2019-08-06 20:04:16.224024 2019-08-06 20:04:16.224024 0 \N 1680 \N 523 \N 942 1.0 1 2019-08-07 23:56:50.995916 2019-08-07 23:56:50.995916 0 \N 1681 \N 588 \N 943 1.0 1 2019-08-08 00:12:02.615789 2019-08-08 00:12:02.615789 0 \N 1682 \N 619 \N 944 1.0 1 2019-08-08 21:02:07.396361 2019-08-08 21:02:07.396361 0 \N 1683 \N 595 \N 945 1.0 1 2019-08-08 21:54:39.056378 2019-08-08 21:54:39.056378 0 \N 1684 \N 625 \N 945 1.0 1 2019-08-08 21:54:39.08651 2019-08-08 21:54:39.08651 0 \N 1685 \N 523 \N 946 1.0 1 2019-08-09 19:00:33.524506 2019-08-09 19:00:33.524506 0 \N 1686 \N 449 \N 947 1.0 1 2019-08-10 00:29:33.214552 2019-08-10 00:29:33.214552 0 \N 1687 \N 602 \N 947 1.0 1 2019-08-10 00:29:33.243527 2019-08-10 00:29:33.243527 0 \N 1688 \N 625 \N 948 1.0 1 2019-08-10 19:47:29.471367 2019-08-10 19:47:29.471367 0 \N 1689 \N 564 \N 949 1.0 1 2019-08-10 23:12:19.696307 2019-08-10 23:12:19.696307 0 \N 1690 \N 577 \N 950 1.0 1 2019-08-11 01:03:21.417966 2019-08-11 01:03:21.417966 0 \N 1691 \N 290 \N 951 1.0 1 2019-08-11 01:07:00.989004 2019-08-11 01:07:00.989004 0 \N 1692 \N 214 \N 952 1.0 1 2019-08-11 16:31:36.247881 2019-08-11 16:31:36.247881 0 \N 1693 \N 214 \N 952 1.0 0 2019-08-11 16:31:41.100244 2019-08-11 16:31:41.100244 3 \N 1694 \N 110 \N 953 1.0 1 2019-08-11 16:35:30.958741 2019-08-11 16:35:30.958741 0 \N 1695 \N 214 \N 953 1.0 1 2019-08-11 16:35:30.993826 2019-08-11 16:35:30.993826 0 \N 1696 \N 99 \N 953 1.0 1 2019-08-11 16:35:31.032936 2019-08-11 16:35:31.032936 0 \N 1697 \N 600 \N 954 1.0 1 2019-08-12 20:15:51.567914 2019-08-12 20:15:51.567914 0 \N 1698 \N 565 \N 955 1.0 1 2019-08-13 19:03:10.080276 2019-08-13 19:03:10.080276 0 \N 1699 \N 588 \N 955 1.0 1 2019-08-13 19:03:10.104475 2019-08-13 19:03:10.104475 0 \N 1700 \N 618 \N 955 1.0 1 2019-08-13 19:03:10.128759 2019-08-13 19:03:10.128759 0 \N 1701 \N 192 \N 955 1.0 1 2019-08-13 19:03:10.151627 2019-08-13 19:03:10.151627 0 \N 1702 \N 636 \N 956 1.0 1 2019-08-14 01:04:17.484959 2019-08-14 01:04:17.484959 0 \N 1703 \N 387 \N 957 1.0 1 2019-08-14 18:14:38.949985 2019-08-14 18:14:38.949985 0 \N 1704 \N 590 \N 958 1.0 1 2019-08-14 20:50:05.86818 2019-08-14 20:50:05.86818 0 \N 1705 \N 629 \N 959 1.0 1 2019-08-14 21:12:43.982828 2019-08-14 21:12:43.982828 0 \N 1706 \N 606 \N 960 1.0 1 2019-08-14 22:24:57.261327 2019-08-14 22:24:57.261327 0 \N 1707 \N 623 \N 961 1.0 1 2019-08-14 22:32:36.069422 2019-08-14 22:32:36.069422 0 \N 1708 \N 500 \N 962 1.0 1 2019-08-15 18:40:31.040869 2019-08-15 18:40:31.040869 0 \N 1709 \N 276 \N 963 1.0 1 2019-08-15 20:40:13.589398 2019-08-15 20:40:13.589398 0 \N 1710 \N 601 \N 964 1.0 1 2019-08-16 20:01:27.991351 2019-08-16 20:01:27.991351 0 \N 1711 \N 604 \N 965 1.0 1 2019-08-16 20:50:49.269517 2019-08-16 20:50:49.269517 0 \N 1712 \N 570 \N 966 1.0 1 2019-08-17 01:03:35.940098 2019-08-17 01:03:35.940098 0 \N 1713 \N 200 \N 966 1.0 1 2019-08-17 01:03:35.970228 2019-08-17 01:03:35.970228 0 \N 1714 \N 65 \N 967 1.0 1 2019-08-17 21:02:14.389829 2019-08-17 21:02:14.389829 0 \N 1715 \N 623 \N 968 1.0 1 2019-08-17 21:16:33.838045 2019-08-17 21:16:33.838045 0 \N 1716 \N 593 \N 968 1.0 1 2019-08-17 21:16:33.861464 2019-08-17 21:16:33.861464 0 \N 1717 \N 155 \N 969 1.0 1 2019-08-17 22:08:17.692712 2019-08-17 22:08:17.692712 0 \N 1718 \N 601 \N 969 1.0 1 2019-08-17 22:08:17.719241 2019-08-17 22:08:17.719241 0 \N 1719 \N 53 \N 970 1.0 1 2019-08-17 22:38:11.909317 2019-08-17 22:38:11.909317 0 \N 1720 \N 640 115 \N 5.0 0 2019-08-18 01:25:29.445664 2019-08-18 01:25:29.445664 1 \N 1721 \N 627 \N 971 1.0 1 2019-08-18 19:16:41.974303 2019-08-18 19:16:41.974303 0 \N 1722 \N 642 116 \N 5.0 0 2019-08-18 23:48:07.48338 2019-08-18 23:48:07.48338 1 \N 1723 \N 643 116 \N 3.0 0 2019-08-18 23:48:07.517912 2019-08-18 23:48:07.517912 1 \N 1724 \N 644 116 \N 3.0 0 2019-08-18 23:48:07.54496 2019-08-18 23:48:07.54496 1 \N 1725 \N 645 116 \N 2.0 0 2019-08-18 23:48:07.570664 2019-08-18 23:48:07.570664 1 \N 1726 \N 646 116 \N 2.0 0 2019-08-18 23:48:07.597994 2019-08-18 23:48:07.597994 1 \N 1727 \N 647 116 \N 2.0 0 2019-08-18 23:48:07.631453 2019-08-18 23:48:07.631453 1 \N 1728 \N 648 116 \N 1.0 0 2019-08-18 23:48:07.659585 2019-08-18 23:48:07.659585 1 \N 1729 \N 649 116 \N 1.0 0 2019-08-18 23:48:07.695935 2019-08-18 23:48:07.695935 1 \N 1730 \N 650 116 \N 1.0 0 2019-08-18 23:48:07.734085 2019-08-18 23:48:07.734085 1 \N 1731 \N 651 116 \N 1.0 0 2019-08-18 23:48:07.76746 2019-08-18 23:48:07.76746 1 \N 1732 \N 652 117 \N 5.0 0 2019-08-19 00:07:06.597188 2019-08-19 00:07:06.597188 1 \N 1733 \N 653 117 \N 3.0 0 2019-08-19 00:07:06.636652 2019-08-19 00:07:06.636652 1 \N 1734 \N 654 117 \N 3.0 0 2019-08-19 00:07:06.671471 2019-08-19 00:07:06.671471 1 \N 1735 \N 655 118 \N 1.0 0 2019-08-19 00:53:56.59771 2019-08-19 00:53:56.59771 1 \N 1736 \N 656 118 \N 1.0 0 2019-08-19 00:53:56.630244 2019-08-19 00:53:56.630244 1 \N 1737 \N 657 118 \N 1.0 0 2019-08-19 00:53:56.658688 2019-08-19 00:53:56.658688 1 \N 1738 \N 658 118 \N 1.0 0 2019-08-19 00:53:56.686468 2019-08-19 00:53:56.686468 1 \N 1739 \N 659 118 \N 1.0 0 2019-08-19 00:53:56.713843 2019-08-19 00:53:56.713843 1 \N 1740 \N 660 118 \N 1.0 0 2019-08-19 00:53:56.743731 2019-08-19 00:53:56.743731 1 \N 1741 \N 14 \N 972 1.0 1 2019-08-19 18:04:34.017162 2019-08-19 18:04:34.017162 0 \N 1742 \N 367 \N 973 2.0 1 2019-08-19 18:06:19.685726 2019-08-19 18:06:19.685726 0 \N 1743 \N 290 \N 974 1.0 1 2019-08-19 18:44:50.295399 2019-08-19 18:44:50.295399 0 \N 1744 \N 608 \N 975 1.0 1 2019-08-20 00:51:52.295582 2019-08-20 00:51:52.295582 0 \N 1745 \N 661 119 \N 6.0 0 2019-08-20 21:46:51.010846 2019-08-20 21:46:51.010846 1 \N 1746 \N 663 119 \N 18.0 0 2019-08-20 21:46:51.025001 2019-08-20 21:46:51.025001 1 \N 1747 \N 662 119 \N 12.0 0 2019-08-20 21:46:51.036831 2019-08-20 21:46:51.036831 1 \N 1748 \N 664 119 \N 24.0 0 2019-08-20 21:46:51.048633 2019-08-20 21:46:51.048633 1 \N 1749 \N 665 120 \N 12.0 0 2019-08-20 21:53:31.081178 2019-08-20 21:53:31.081178 1 \N 1750 \N 332 \N 976 1.0 1 2019-08-21 00:26:49.08973 2019-08-21 00:26:49.08973 0 \N 1751 \N 636 \N 977 1.0 1 2019-08-21 17:59:43.634612 2019-08-21 17:59:43.634612 0 \N 1752 \N 4 \N 978 1.0 1 2019-08-21 20:10:13.20895 2019-08-21 20:10:13.20895 0 \N 1753 \N 666 121 \N 6.0 0 2019-08-21 23:38:48.793267 2019-08-21 23:38:48.793267 1 \N 1754 \N 666 \N 979 1.0 1 2019-08-21 23:39:42.924391 2019-08-21 23:39:42.924391 0 \N 1755 \N 671 122 \N 6.0 0 2019-08-22 00:31:25.398459 2019-08-22 00:31:25.398459 1 \N 1756 \N 668 122 \N 60.0 0 2019-08-22 00:31:25.428091 2019-08-22 00:31:25.428091 1 \N 1757 \N 669 122 \N 18.0 0 2019-08-22 00:31:25.455725 2019-08-22 00:31:25.455725 1 \N 1758 \N 670 122 \N 24.0 0 2019-08-22 00:31:25.481376 2019-08-22 00:31:25.481376 1 \N 1759 \N 623 123 \N 18.0 0 2019-08-22 00:48:36.133131 2019-08-22 00:48:36.133131 1 \N 1760 \N 672 123 \N 18.0 0 2019-08-22 00:48:36.159647 2019-08-22 00:48:36.159647 1 \N 1761 \N 673 123 \N 18.0 0 2019-08-22 00:48:36.189992 2019-08-22 00:48:36.189992 1 \N 1762 \N 674 124 \N 6.0 0 2019-08-22 01:07:07.143599 2019-08-22 01:07:07.143599 1 \N 1763 \N 675 124 \N 12.0 0 2019-08-22 01:07:07.187108 2019-08-22 01:07:07.187108 1 \N 1764 \N 567 \N 980 1.0 1 2019-08-22 01:18:36.629833 2019-08-22 01:18:36.629833 0 \N 1765 \N 676 125 \N 6.0 0 2019-08-22 03:35:13.144861 2019-08-22 03:35:13.144861 1 \N 1766 \N 677 125 \N 6.0 0 2019-08-22 03:35:13.159567 2019-08-22 03:35:13.159567 1 \N 1767 \N 678 125 \N 6.0 0 2019-08-22 03:35:13.172334 2019-08-22 03:35:13.172334 1 \N 1768 \N 679 125 \N 6.0 0 2019-08-22 03:35:13.184235 2019-08-22 03:35:13.184235 1 \N 1769 \N 680 126 \N 6.0 0 2019-08-22 03:44:25.827523 2019-08-22 03:44:25.827523 1 \N 1770 \N 681 126 \N 12.0 0 2019-08-22 03:44:25.846091 2019-08-22 03:44:25.846091 1 \N 1771 \N 682 126 \N 1.0 0 2019-08-22 03:44:25.863182 2019-08-22 03:44:25.863182 1 \N 1772 \N 683 126 \N 1.0 0 2019-08-22 03:44:25.87938 2019-08-22 03:44:25.87938 1 \N 1773 \N 684 127 \N 1.0 0 2019-08-22 04:15:40.968743 2019-08-22 04:15:40.968743 1 \N 1774 \N 685 128 \N 6.0 0 2019-08-22 04:48:57.882704 2019-08-22 04:48:57.882704 1 \N 1775 \N 686 129 \N 6.0 0 2019-08-22 04:58:31.410516 2019-08-22 04:58:31.410516 1 \N 1776 \N 687 129 \N 6.0 0 2019-08-22 04:58:31.426176 2019-08-22 04:58:31.426176 1 \N 1777 \N 688 129 \N 6.0 0 2019-08-22 04:58:31.4407 2019-08-22 04:58:31.4407 1 \N 1778 \N 653 \N \N 1.0 0 2019-08-22 15:14:09.881385 2019-08-22 15:14:09.881385 7 91 1779 \N 652 \N \N 1.0 0 2019-08-22 15:14:09.911764 2019-08-22 15:14:09.911764 7 91 1780 \N 681 \N \N 6.0 0 2019-08-22 15:14:17.754596 2019-08-22 15:14:17.754596 7 98 1781 \N 683 \N \N 1.0 0 2019-08-22 15:14:17.78551 2019-08-22 15:14:17.78551 7 98 1782 \N 664 \N \N 6.0 0 2019-08-22 15:14:17.814608 2019-08-22 15:14:17.814608 7 98 1783 \N 686 \N \N 6.0 0 2019-08-22 15:14:17.844104 2019-08-22 15:14:17.844104 7 98 1784 \N 672 \N \N 6.0 0 2019-08-22 15:28:49.938765 2019-08-22 15:28:49.938765 7 103 1785 \N 670 \N \N 6.0 0 2019-08-22 15:28:58.960692 2019-08-22 15:28:58.960692 7 101 1786 \N 670 \N \N 6.0 0 2019-08-22 15:29:06.754752 2019-08-22 15:29:06.754752 7 97 1787 \N 682 \N \N 1.0 0 2019-08-22 15:29:06.794483 2019-08-22 15:29:06.794483 7 97 1788 \N 672 \N \N 6.0 0 2019-08-22 15:29:06.850932 2019-08-22 15:29:06.850932 7 97 1789 \N 668 \N \N 15.0 0 2019-08-22 15:39:52.165927 2019-08-22 15:39:52.165927 7 105 1790 \N 623 \N \N 12.0 0 2019-08-22 16:36:57.484546 2019-08-22 16:36:57.484546 7 106 1791 \N 674 \N 981 1.0 1 2019-08-22 17:11:30.859891 2019-08-22 17:11:30.859891 0 \N 1792 \N 670 \N 982 1.0 1 2019-08-22 21:43:36.608876 2019-08-22 21:43:36.608876 0 \N 1793 \N 622 \N 983 1.0 1 2019-08-22 22:34:25.709426 2019-08-22 22:34:25.709426 0 \N 1794 \N 670 \N 982 1.0 0 2019-08-22 22:57:45.538359 2019-08-22 22:57:45.538359 3 \N 1795 \N 670 \N 984 1.0 1 2019-08-22 22:59:22.007425 2019-08-22 22:59:22.007425 0 \N 1796 \N 369 \N \N 35.0 0 2019-08-22 23:11:28.755614 2019-08-22 23:11:28.755614 7 92 1797 \N 662 \N \N 6.0 0 2019-08-22 23:12:25.036002 2019-08-22 23:12:25.036002 7 96 1798 \N 663 \N \N 6.0 0 2019-08-22 23:12:25.058977 2019-08-22 23:12:25.058977 7 96 1799 \N 664 \N \N 6.0 0 2019-08-22 23:12:25.084738 2019-08-22 23:12:25.084738 7 96 1800 \N 665 \N \N 6.0 0 2019-08-22 23:12:25.107867 2019-08-22 23:12:25.107867 7 96 1801 \N 653 \N 985 1.0 1 2019-08-23 18:35:25.838118 2019-08-23 18:35:25.838118 0 \N 1802 \N 653 \N 985 1.0 0 2019-08-23 18:36:54.044143 2019-08-23 18:36:54.044143 9 \N 1803 \N 653 \N 986 1.0 1 2019-08-23 18:37:21.629777 2019-08-23 18:37:21.629777 0 \N 1804 \N 594 \N 987 1.0 1 2019-08-23 23:57:16.7032 2019-08-23 23:57:16.7032 0 \N 1805 \N 623 \N \N 18.0 0 2019-08-24 02:20:37.828559 2019-08-24 02:20:37.828559 7 107 1806 \N 672 \N \N 9.0 0 2019-08-24 02:20:48.048818 2019-08-24 02:20:48.048818 7 104 1807 \N 670 \N \N 6.0 0 2019-08-24 02:21:20.620916 2019-08-24 02:21:20.620916 7 102 1808 \N 683 \N \N 6.0 0 2019-08-24 02:21:35.809554 2019-08-24 02:21:35.809554 7 100 1809 \N 613 \N \N 1.0 0 2019-08-24 02:21:47.803809 2019-08-24 02:21:47.803809 7 95 1810 \N 446 \N \N 1.0 0 2019-08-24 02:21:47.826454 2019-08-24 02:21:47.826454 7 95 1811 \N 369 \N \N 42.0 0 2019-08-24 02:22:00.481371 2019-08-24 02:22:00.481371 7 93 1812 \N 502 \N 988 1.0 1 2019-08-24 16:43:21.90604 2019-08-24 16:43:21.90604 0 \N 1813 \N 296 \N 989 1.0 1 2019-08-24 17:28:47.282677 2019-08-24 17:28:47.282677 0 \N 1814 \N 369 \N 990 1.0 1 2019-08-24 23:46:57.379007 2019-08-24 23:46:57.379007 0 \N 1815 \N 369 \N 991 1.0 1 2019-08-24 23:50:20.013504 2019-08-24 23:50:20.013504 0 \N 1816 \N 322 \N \N 2.0 0 2019-08-25 00:50:12.173463 2019-08-25 00:50:12.173463 7 109 1817 \N 154 \N \N 1.0 0 2019-08-25 00:50:12.200867 2019-08-25 00:50:12.200867 7 109 1818 \N 151 \N \N 2.0 0 2019-08-25 00:50:12.219873 2019-08-25 00:50:12.219873 7 109 1819 \N 135 \N \N 2.0 0 2019-08-25 00:50:12.242705 2019-08-25 00:50:12.242705 7 109 1820 \N 154 \N \N 1.0 0 2019-08-25 00:50:42.688854 2019-08-25 00:50:42.688854 7 110 1821 \N 154 \N 992 1.0 1 2019-08-25 00:50:57.1205 2019-08-25 00:50:57.1205 0 \N 1822 \N 154 \N 992 1.0 0 2019-08-25 00:56:10.489727 2019-08-25 00:56:10.489727 3 \N 1823 \N 154 \N 993 1.0 1 2019-08-25 00:56:38.546647 2019-08-25 00:56:38.546647 0 \N 1824 \N 679 \N \N 6.0 0 2019-08-25 19:43:57.913714 2019-08-25 19:43:57.913714 7 112 1825 \N 681 \N \N 6.0 0 2019-08-25 19:43:57.943511 2019-08-25 19:43:57.943511 7 112 1826 \N 661 \N \N 6.0 0 2019-08-25 19:43:57.963415 2019-08-25 19:43:57.963415 7 112 1827 \N 665 \N \N 6.0 0 2019-08-25 19:43:57.983072 2019-08-25 19:43:57.983072 7 112 1828 \N 687 \N \N 6.0 0 2019-08-25 19:43:58.002959 2019-08-25 19:43:58.002959 7 112 1829 \N 663 \N \N 6.0 0 2019-08-25 19:43:58.023252 2019-08-25 19:43:58.023252 7 112 1830 \N 669 \N \N 9.0 0 2019-08-25 19:44:05.564801 2019-08-25 19:44:05.564801 7 111 1831 \N 674 \N \N 6.0 0 2019-08-25 19:44:05.584864 2019-08-25 19:44:05.584864 7 111 1832 \N 675 \N \N 6.0 0 2019-08-25 19:44:05.60685 2019-08-25 19:44:05.60685 7 111 1833 \N 673 \N \N 9.0 0 2019-08-25 19:44:05.625577 2019-08-25 19:44:05.625577 7 111 1834 \N 666 \N \N 1.0 0 2019-08-25 19:44:14.969656 2019-08-25 19:44:14.969656 7 108 1835 \N 663 \N 994 1.0 1 2019-08-26 18:38:41.228201 2019-08-26 18:38:41.228201 0 \N 1836 \N 607 \N \N 5.0 0 2019-08-28 00:20:41.464776 2019-08-28 00:20:41.464776 7 113 1837 \N 628 \N \N 6.0 0 2019-08-28 00:20:41.488064 2019-08-28 00:20:41.488064 7 113 1838 \N 668 \N \N 30.0 0 2019-08-28 03:58:08.994006 2019-08-28 03:58:08.994006 7 114 1839 \N 662 \N \N 6.0 0 2019-08-28 03:58:09.014638 2019-08-28 03:58:09.014638 7 114 1840 \N 662 \N 995 1.0 1 2019-08-28 04:02:24.082836 2019-08-28 04:02:24.082836 0 \N 1841 \N 623 \N 996 1.0 1 2019-08-29 00:12:00.387584 2019-08-29 00:12:00.387584 0 \N 1842 \N 664 \N 996 1.0 1 2019-08-29 00:12:00.416793 2019-08-29 00:12:00.416793 0 \N 1843 \N 664 \N \N 6.0 0 2019-08-29 14:37:39.617284 2019-08-29 14:37:39.617284 7 115 1844 \N 678 \N \N 6.0 0 2019-08-29 14:37:49.575047 2019-08-29 14:37:49.575047 7 116 1845 \N 682 \N \N 6.0 0 2019-08-29 14:37:57.027448 2019-08-29 14:37:57.027448 7 117 1846 \N 680 \N \N 6.0 0 2019-08-29 14:47:49.595363 2019-08-29 14:47:49.595363 7 118 1847 \N 476 \N \N 36.0 0 2019-08-29 14:47:58.881623 2019-08-29 14:47:58.881623 7 119 1848 \N 581 \N \N 1.0 0 2019-08-29 18:15:06.090807 2019-08-29 18:15:06.090807 7 90 1849 \N 689 130 \N 1.0 0 2019-08-29 22:09:20.790524 2019-08-29 22:09:20.790524 1 \N 1850 \N 327 \N \N 1.0 0 2019-08-30 01:06:24.799216 2019-08-30 01:06:24.799216 7 121 1851 \N 327 \N 997 1.0 1 2019-08-30 01:07:28.85033 2019-08-30 01:07:28.85033 0 \N 1852 \N 682 \N 997 1.0 1 2019-08-30 01:07:28.877971 2019-08-30 01:07:28.877971 0 \N 1853 \N 690 131 \N 6.0 0 2019-08-30 03:48:07.595154 2019-08-30 03:48:07.595154 1 \N 1854 \N 691 131 \N 6.0 0 2019-08-30 03:48:07.607319 2019-08-30 03:48:07.607319 1 \N 1855 \N 692 131 \N 6.0 0 2019-08-30 03:48:07.618517 2019-08-30 03:48:07.618517 1 \N 1856 \N 693 131 \N 6.0 0 2019-08-30 03:48:07.628647 2019-08-30 03:48:07.628647 1 \N 1857 \N 694 131 \N 6.0 0 2019-08-30 03:48:07.63881 2019-08-30 03:48:07.63881 1 \N 1858 \N 695 131 \N 6.0 0 2019-08-30 03:48:07.649396 2019-08-30 03:48:07.649396 1 \N 1859 \N 696 131 \N 6.0 0 2019-08-30 03:48:07.659388 2019-08-30 03:48:07.659388 1 \N 1860 \N 697 131 \N 6.0 0 2019-08-30 03:48:07.669278 2019-08-30 03:48:07.669278 1 \N 1861 \N 698 131 \N 6.0 0 2019-08-30 03:48:07.679265 2019-08-30 03:48:07.679265 1 \N 1862 \N 699 132 \N 6.0 0 2019-08-30 04:45:25.215676 2019-08-30 04:45:25.215676 1 \N 1863 \N 700 132 \N 6.0 0 2019-08-30 04:45:25.228442 2019-08-30 04:45:25.228442 1 \N 1864 \N 701 132 \N 6.0 0 2019-08-30 04:45:25.242679 2019-08-30 04:45:25.242679 1 \N 1865 \N 702 132 \N 6.0 0 2019-08-30 04:45:25.256845 2019-08-30 04:45:25.256845 1 \N 1866 \N 547 \N \N 1.0 0 2019-08-30 05:03:35.280679 2019-08-30 05:03:35.280679 7 120 1867 \N 265 \N \N 3.0 0 2019-08-30 05:03:35.308763 2019-08-30 05:03:35.308763 7 120 1868 \N 271 \N \N 1.0 0 2019-08-30 05:03:35.335155 2019-08-30 05:03:35.335155 7 120 1869 \N 268 \N \N 2.0 0 2019-08-30 05:03:35.363121 2019-08-30 05:03:35.363121 7 120 1870 \N 270 \N \N 6.0 0 2019-08-30 05:03:35.395283 2019-08-30 05:03:35.395283 7 120 1871 \N 258 \N \N 6.0 0 2019-08-30 05:03:35.423827 2019-08-30 05:03:35.423827 7 120 1872 \N 484 \N \N 12.0 0 2019-08-30 05:03:35.44791 2019-08-30 05:03:35.44791 7 120 1873 \N 273 \N \N 5.0 0 2019-08-30 05:03:35.47112 2019-08-30 05:03:35.47112 7 120 1874 \N 262 \N \N 2.0 0 2019-08-30 05:03:35.493398 2019-08-30 05:03:35.493398 7 120 1875 \N 261 \N \N 1.0 0 2019-08-30 05:03:35.516709 2019-08-30 05:03:35.516709 7 120 1876 \N 264 \N \N 3.0 0 2019-08-30 05:03:35.537292 2019-08-30 05:03:35.537292 7 120 1877 \N 274 \N \N 3.0 0 2019-08-30 05:03:35.560506 2019-08-30 05:03:35.560506 7 120 1878 \N 259 \N \N 2.0 0 2019-08-30 05:03:35.581594 2019-08-30 05:03:35.581594 7 120 1879 \N 269 \N \N 10.0 0 2019-08-30 05:03:35.608283 2019-08-30 05:03:35.608283 7 120 1880 \N 698 \N \N 6.0 0 2019-08-30 05:03:43.713118 2019-08-30 05:03:43.713118 7 124 1881 \N 701 \N \N 6.0 0 2019-08-30 05:03:43.732223 2019-08-30 05:03:43.732223 7 124 1882 \N 702 \N \N 6.0 0 2019-08-30 05:03:43.752643 2019-08-30 05:03:43.752643 7 124 1883 \N 697 \N \N 6.0 0 2019-08-30 05:03:43.772949 2019-08-30 05:03:43.772949 7 124 1884 \N 693 \N \N 6.0 0 2019-08-30 05:04:31.521262 2019-08-30 05:04:31.521262 7 122 1885 \N 694 \N \N 6.0 0 2019-08-30 05:04:31.544666 2019-08-30 05:04:31.544666 7 122 1886 \N 699 \N \N 6.0 0 2019-08-30 05:04:31.574422 2019-08-30 05:04:31.574422 7 122 1887 \N 700 \N \N 6.0 0 2019-08-30 05:04:31.600904 2019-08-30 05:04:31.600904 7 122 1888 \N 696 \N \N 6.0 0 2019-08-30 05:04:31.626717 2019-08-30 05:04:31.626717 7 122 1889 \N 695 \N \N 6.0 0 2019-08-30 05:04:31.647695 2019-08-30 05:04:31.647695 7 122 1890 \N 692 \N \N 6.0 0 2019-08-30 05:05:08.29129 2019-08-30 05:05:08.29129 7 123 1891 \N 691 \N \N 6.0 0 2019-08-30 05:05:08.311582 2019-08-30 05:05:08.311582 7 123 1892 \N 666 \N 998 1.0 1 2019-08-30 17:04:54.674475 2019-08-30 17:04:54.674475 0 \N 1893 \N 500 \N 999 1.0 1 2019-08-30 22:41:06.747277 2019-08-30 22:41:06.747277 0 \N 1894 \N 664 \N 1000 1.0 1 2019-08-30 23:41:59.312147 2019-08-30 23:41:59.312147 0 \N 1895 \N 623 \N 1000 1.0 1 2019-08-30 23:41:59.340479 2019-08-30 23:41:59.340479 0 \N 1896 \N 662 \N 1001 2.0 1 2019-08-31 03:44:55.9762 2019-08-31 03:44:55.9762 0 \N 1897 \N 699 \N \N 6.0 0 2019-08-31 03:52:19.941441 2019-08-31 03:52:19.941441 7 125 1898 \N 700 \N \N 6.0 0 2019-08-31 03:52:29.101996 2019-08-31 03:52:29.101996 7 126 1899 \N 699 \N 1002 1.0 1 2019-08-31 03:53:28.09875 2019-08-31 03:53:28.09875 0 \N 1900 \N 677 \N \N 6.0 0 2019-08-31 04:20:35.070833 2019-08-31 04:20:35.070833 7 127 1901 \N 688 \N \N 6.0 0 2019-08-31 04:21:11.860447 2019-08-31 04:21:11.860447 7 128 1902 \N 690 \N \N 6.0 0 2019-08-31 05:01:05.174219 2019-08-31 05:01:05.174219 7 129 1903 \N 638 \N 1003 1.0 1 2019-08-31 16:53:44.080983 2019-08-31 16:53:44.080983 0 \N 1904 \N 369 \N 1004 2.0 1 2019-08-31 16:54:53.590197 2019-08-31 16:54:53.590197 0 \N 1905 \N 638 \N 1005 1.0 1 2019-08-31 17:03:16.254623 2019-08-31 17:03:16.254623 0 \N 1906 \N 638 \N 1005 1.0 0 2019-08-31 17:03:51.643686 2019-08-31 17:03:51.643686 3 \N 1907 \N 638 \N 1006 1.0 1 2019-08-31 17:04:08.238991 2019-08-31 17:04:08.238991 0 \N 1908 \N 638 \N 1003 1.0 0 2019-08-31 17:05:21.993871 2019-08-31 17:05:21.993871 3 \N 1909 \N 674 \N 1007 1.0 1 2019-08-31 18:04:29.380809 2019-08-31 18:04:29.380809 0 \N 1910 \N 668 \N 1008 1.0 1 2019-08-31 18:54:46.695027 2019-08-31 18:54:46.695027 0 \N 1911 \N 571 \N 1008 1.0 1 2019-08-31 18:54:46.718455 2019-08-31 18:54:46.718455 0 \N 1912 \N 691 \N 1009 1.0 1 2019-08-31 20:58:03.226837 2019-08-31 20:58:03.226837 0 \N 1913 \N 548 \N \N 1.0 0 2019-08-31 21:18:24.232317 2019-08-31 21:18:24.232317 7 131 1914 \N 548 \N 1010 1.0 1 2019-08-31 21:19:24.035 2019-08-31 21:19:24.035 0 \N 1915 \N 635 \N 1011 1.0 1 2019-08-31 21:57:08.09104 2019-08-31 21:57:08.09104 0 \N 1916 \N 635 \N 1011 1.0 0 2019-08-31 21:57:39.34147 2019-08-31 21:57:39.34147 9 \N 1917 \N 635 \N 1012 1.0 1 2019-08-31 21:58:00.609595 2019-08-31 21:58:00.609595 0 \N 1918 \N 626 \N 1013 1.0 1 2019-08-31 22:54:04.36044 2019-08-31 22:54:04.36044 0 \N 1919 \N 703 133 \N 1.0 0 2019-09-01 03:07:50.472635 2019-09-01 03:07:50.472635 1 \N 1920 \N 703 \N 1014 1.0 1 2019-09-01 03:09:34.2404 2019-09-01 03:09:34.2404 0 \N 1921 \N 662 \N 1015 1.0 1 2019-09-01 03:10:23.262059 2019-09-01 03:10:23.262059 0 \N 1922 \N 369 \N 1016 2.0 1 2019-09-01 03:11:10.224758 2019-09-01 03:11:10.224758 0 \N 1923 \N 669 \N 1016 2.0 1 2019-09-01 03:11:10.257792 2019-09-01 03:11:10.257792 0 \N 1924 \N 441 \N \N 1.0 0 2019-09-01 03:17:21.556446 2019-09-01 03:17:21.556446 7 132 1925 \N 441 \N 1017 1.0 1 2019-09-01 03:17:53.600627 2019-09-01 03:17:53.600627 0 \N 1926 \N 662 \N 1018 1.0 1 2019-09-01 03:20:09.366398 2019-09-01 03:20:09.366398 0 \N 1927 \N 674 \N 1019 1.0 1 2019-09-01 03:20:42.060611 2019-09-01 03:20:42.060611 0 \N 1928 \N 704 134 \N 6.0 0 2019-09-01 03:24:38.707732 2019-09-01 03:24:38.707732 1 \N 1929 \N 705 134 \N 12.0 0 2019-09-01 03:24:38.825902 2019-09-01 03:24:38.825902 1 \N 1930 \N 704 \N 1020 1.0 1 2019-09-01 03:25:32.160015 2019-09-01 03:25:32.160015 0 \N 1931 \N 623 \N 1021 1.0 1 2019-09-01 19:47:22.721695 2019-09-01 19:47:22.721695 0 \N 1932 \N 623 \N \N 1.0 0 2019-09-02 17:26:14.61821 2019-09-02 17:26:14.61821 7 134 1933 \N 622 \N 1022 1.0 1 2019-09-02 17:33:19.253398 2019-09-02 17:33:19.253398 0 \N 1934 \N 623 \N 1022 1.0 1 2019-09-02 17:33:19.278997 2019-09-02 17:33:19.278997 0 \N 1935 \N 87 \N 1022 1.0 1 2019-09-02 17:33:19.309258 2019-09-02 17:33:19.309258 0 \N 1936 \N 111 \N 1022 1.0 1 2019-09-02 17:33:19.334958 2019-09-02 17:33:19.334958 0 \N 1937 \N 601 \N 1023 1.0 1 2019-09-02 17:39:12.890821 2019-09-02 17:39:12.890821 0 \N 1938 \N 692 \N \N 6.0 0 2019-09-02 22:20:28.126389 2019-09-02 22:20:28.126389 7 135 1939 \N 600 \N 1024 1.0 1 2019-09-02 22:34:20.242514 2019-09-02 22:34:20.242514 0 \N 1940 \N 664 \N \N 1.0 0 2019-09-02 22:36:43.356812 2019-09-02 22:36:43.356812 7 130 1941 \N 600 \N \N 5.0 0 2019-09-02 22:38:39.552449 2019-09-02 22:38:39.552449 7 136 1942 \N 596 \N 1025 1.0 1 2019-09-03 00:11:20.676357 2019-09-03 00:11:20.676357 0 \N 1943 \N 690 \N 1025 1.0 1 2019-09-03 00:11:20.708406 2019-09-03 00:11:20.708406 0 \N 1944 \N 664 \N 1025 1.0 1 2019-09-03 00:11:20.732741 2019-09-03 00:11:20.732741 0 \N 1945 \N 598 \N 1026 1.0 1 2019-09-03 00:18:04.341055 2019-09-03 00:18:04.341055 0 \N 1946 \N 567 \N 1027 1.0 1 2019-09-03 00:20:28.327079 2019-09-03 00:20:28.327079 0 \N 1947 \N 662 \N \N 6.0 0 2019-09-03 01:06:05.435675 2019-09-03 01:06:05.435675 7 133 1948 \N 706 135 \N 1.0 0 2019-09-03 19:26:06.146556 2019-09-03 19:26:06.146556 1 \N 1949 \N 707 135 \N 1.0 0 2019-09-03 19:26:06.18034 2019-09-03 19:26:06.18034 1 \N 1950 \N 708 135 \N 1.0 0 2019-09-03 19:26:06.20484 2019-09-03 19:26:06.20484 1 \N 1951 \N 709 135 \N 1.0 0 2019-09-03 19:26:06.231307 2019-09-03 19:26:06.231307 1 \N 1952 \N 445 \N \N 2.0 0 2019-09-03 19:26:33.712523 2019-09-03 19:26:33.712523 7 139 1953 \N 55 \N \N 1.0 0 2019-09-03 19:26:33.739259 2019-09-03 19:26:33.739259 7 139 1954 \N 473 \N \N 1.0 0 2019-09-03 19:26:33.763189 2019-09-03 19:26:33.763189 7 139 1955 \N 440 \N \N 1.0 0 2019-09-03 19:26:33.783583 2019-09-03 19:26:33.783583 7 139 1956 \N 45 \N \N 1.0 0 2019-09-03 19:26:33.803478 2019-09-03 19:26:33.803478 7 139 1957 \N 53 \N \N 1.0 0 2019-09-03 19:26:33.824035 2019-09-03 19:26:33.824035 7 139 1958 \N 487 \N \N 1.0 0 2019-09-03 19:26:33.849046 2019-09-03 19:26:33.849046 7 139 1959 \N 544 \N \N 1.0 0 2019-09-03 19:26:33.876795 2019-09-03 19:26:33.876795 7 139 1960 \N 545 \N \N 1.0 0 2019-09-03 19:26:33.903622 2019-09-03 19:26:33.903622 7 139 1961 \N 451 \N \N 1.0 0 2019-09-03 19:26:33.924891 2019-09-03 19:26:33.924891 7 139 1962 \N 453 \N \N 1.0 0 2019-09-03 19:26:33.946245 2019-09-03 19:26:33.946245 7 139 1963 \N 47 \N \N 1.0 0 2019-09-03 19:26:33.967941 2019-09-03 19:26:33.967941 7 139 1964 \N 54 \N \N 1.0 0 2019-09-03 19:26:33.989876 2019-09-03 19:26:33.989876 7 139 1965 \N 530 \N \N 1.0 0 2019-09-03 19:26:34.012956 2019-09-03 19:26:34.012956 7 139 1966 \N 51 \N \N 1.0 0 2019-09-03 19:26:34.035602 2019-09-03 19:26:34.035602 7 139 1967 \N 492 \N \N 1.0 0 2019-09-03 19:26:34.063784 2019-09-03 19:26:34.063784 7 139 1968 \N 486 \N \N 1.0 0 2019-09-03 19:26:34.08572 2019-09-03 19:26:34.08572 7 139 1969 \N 46 \N \N 2.0 0 2019-09-03 19:26:34.109407 2019-09-03 19:26:34.109407 7 139 1970 \N 495 \N \N 2.0 0 2019-09-03 19:26:34.134776 2019-09-03 19:26:34.134776 7 139 1971 \N 347 \N \N 1.0 0 2019-09-03 19:26:39.636167 2019-09-03 19:26:39.636167 7 138 1972 \N 366 \N \N 1.0 0 2019-09-03 19:26:39.656545 2019-09-03 19:26:39.656545 7 138 1973 \N 350 \N \N 1.0 0 2019-09-03 19:26:39.67759 2019-09-03 19:26:39.67759 7 138 1974 \N 351 \N \N 1.0 0 2019-09-03 19:26:39.697636 2019-09-03 19:26:39.697636 7 138 1975 \N 353 \N \N 1.0 0 2019-09-03 19:26:39.71765 2019-09-03 19:26:39.71765 7 138 1976 \N 365 \N \N 1.0 0 2019-09-03 19:26:39.737617 2019-09-03 19:26:39.737617 7 138 1977 \N 355 \N \N 1.0 0 2019-09-03 19:26:39.756899 2019-09-03 19:26:39.756899 7 138 1978 \N 359 \N \N 1.0 0 2019-09-03 19:26:39.776228 2019-09-03 19:26:39.776228 7 138 1979 \N 364 \N \N 1.0 0 2019-09-03 19:26:39.795359 2019-09-03 19:26:39.795359 7 138 1980 \N 352 \N \N 2.0 0 2019-09-03 19:26:39.815512 2019-09-03 19:26:39.815512 7 138 1981 \N 348 \N \N 2.0 0 2019-09-03 19:26:39.83734 2019-09-03 19:26:39.83734 7 138 1982 \N 632 \N 1028 1.0 1 2019-09-03 20:14:46.264183 2019-09-03 20:14:46.264183 0 \N 1983 \N 668 \N 1029 2.0 1 2019-09-03 20:16:12.66147 2019-09-03 20:16:12.66147 0 \N 1984 \N 509 \N 1029 1.0 1 2019-09-03 20:16:12.685405 2019-09-03 20:16:12.685405 0 \N 1985 \N 33 \N \N 1.0 0 2019-09-03 20:53:31.287256 2019-09-03 20:53:31.287256 7 143 1986 \N 37 \N \N 1.0 0 2019-09-03 20:53:31.308055 2019-09-03 20:53:31.308055 7 143 1987 \N 34 \N \N 1.0 0 2019-09-03 20:53:31.329779 2019-09-03 20:53:31.329779 7 143 1988 \N 39 \N \N 1.0 0 2019-09-03 20:53:43.907605 2019-09-03 20:53:43.907605 7 142 1989 \N 466 \N \N 1.0 0 2019-09-03 20:53:43.934946 2019-09-03 20:53:43.934946 7 142 1990 \N 467 \N \N 1.0 0 2019-09-03 20:53:43.95893 2019-09-03 20:53:43.95893 7 142 1991 \N 615 \N \N 1.0 0 2019-09-03 20:53:43.980569 2019-09-03 20:53:43.980569 7 142 1992 \N 33 \N \N 1.0 0 2019-09-03 20:53:43.998869 2019-09-03 20:53:43.998869 7 142 1993 \N 36 \N \N 1.0 0 2019-09-03 20:53:44.019877 2019-09-03 20:53:44.019877 7 142 1994 \N 35 \N \N 1.0 0 2019-09-03 20:53:44.042181 2019-09-03 20:53:44.042181 7 142 1995 \N 38 \N \N 1.0 0 2019-09-03 20:53:44.063459 2019-09-03 20:53:44.063459 7 142 1996 \N 465 \N \N 1.0 0 2019-09-03 20:53:44.08504 2019-09-03 20:53:44.08504 7 142 1997 \N 40 \N \N 1.0 0 2019-09-03 20:53:44.106606 2019-09-03 20:53:44.106606 7 142 1998 \N 32 \N \N 1.0 0 2019-09-03 20:53:44.133188 2019-09-03 20:53:44.133188 7 142 1999 \N 34 \N \N 1.0 0 2019-09-03 20:53:44.152347 2019-09-03 20:53:44.152347 7 142 2000 \N 31 \N \N 2.0 0 2019-09-03 20:53:44.181342 2019-09-03 20:53:44.181342 7 142 2001 \N 463 \N \N 2.0 0 2019-09-03 20:53:50.518258 2019-09-03 20:53:50.518258 7 141 2002 \N 335 \N \N 2.0 0 2019-09-03 20:53:56.938291 2019-09-03 20:53:56.938291 7 140 2003 \N 337 \N \N 1.0 0 2019-09-03 20:53:56.962637 2019-09-03 20:53:56.962637 7 140 2004 \N 339 \N \N 1.0 0 2019-09-03 20:53:56.984297 2019-09-03 20:53:56.984297 7 140 2005 \N 338 \N \N 1.0 0 2019-09-03 20:53:57.013849 2019-09-03 20:53:57.013849 7 140 2006 \N 333 \N \N 2.0 0 2019-09-03 20:53:57.035852 2019-09-03 20:53:57.035852 7 140 2007 \N 468 \N \N 2.0 0 2019-09-03 21:03:23.752729 2019-09-03 21:03:23.752729 7 144 2008 \N 541 \N \N 2.0 0 2019-09-03 21:03:23.787912 2019-09-03 21:03:23.787912 7 144 2009 \N 540 \N \N 2.0 0 2019-09-03 21:03:23.823398 2019-09-03 21:03:23.823398 7 144 2010 \N 388 \N \N 4.0 0 2019-09-03 23:33:05.345512 2019-09-03 23:33:05.345512 7 147 2011 \N 387 \N \N 1.0 0 2019-09-03 23:33:05.36767 2019-09-03 23:33:05.36767 7 147 2012 \N 41 \N \N 7.0 0 2019-09-03 23:33:13.198636 2019-09-03 23:33:13.198636 7 146 2013 \N 58 \N \N 1.0 0 2019-09-03 23:33:18.771809 2019-09-03 23:33:18.771809 7 145 2014 \N 388 136 \N 14.0 0 2019-09-03 23:39:56.580374 2019-09-03 23:39:56.580374 1 \N 2015 \N 367 137 \N 38.0 0 2019-09-03 23:45:39.623958 2019-09-03 23:45:39.623958 1 \N 2016 \N 369 \N \N 36.0 0 2019-09-03 23:53:50.823526 2019-09-03 23:53:50.823526 7 94 2017 \N 369 \N \N 36.0 0 2019-09-03 23:55:52.762152 2019-09-03 23:55:52.762152 7 148 2018 \N 640 \N \N 1.0 0 2019-09-03 23:55:57.106908 2019-09-03 23:55:57.106908 7 149 2019 \N 684 \N 1030 1.0 1 2019-09-04 00:07:14.001971 2019-09-04 00:07:14.001971 0 \N 2020 \N 378 \N \N 1.0 0 2019-09-04 00:51:26.613316 2019-09-04 00:51:26.613316 7 150 2021 \N 373 \N \N 1.0 0 2019-09-04 00:51:26.635379 2019-09-04 00:51:26.635379 7 150 2022 \N 371 \N \N 1.0 0 2019-09-04 00:51:26.656273 2019-09-04 00:51:26.656273 7 150 2023 \N 374 \N \N 3.0 0 2019-09-04 00:51:26.677087 2019-09-04 00:51:26.677087 7 150 2024 \N 375 \N \N 4.0 0 2019-09-04 00:51:26.702381 2019-09-04 00:51:26.702381 7 150 2025 \N 376 \N \N 2.0 0 2019-09-04 00:51:26.725198 2019-09-04 00:51:26.725198 7 150 2026 \N 377 \N \N 2.0 0 2019-09-04 00:51:26.748548 2019-09-04 00:51:26.748548 7 150 2027 \N 370 \N \N 2.0 0 2019-09-04 00:51:26.770919 2019-09-04 00:51:26.770919 7 150 2028 \N 9 \N \N 9.0 0 2019-09-04 00:51:32.678572 2019-09-04 00:51:32.678572 7 160 2029 \N 5 \N \N 9.0 0 2019-09-04 00:51:32.702245 2019-09-04 00:51:32.702245 7 160 2030 \N 570 \N \N 4.0 0 2019-09-04 00:51:37.52291 2019-09-04 00:51:37.52291 7 159 2031 \N 531 \N \N 6.0 0 2019-09-04 00:51:43.316132 2019-09-04 00:51:43.316132 7 156 2032 \N 60 \N \N 9.0 0 2019-09-04 00:51:43.339334 2019-09-04 00:51:43.339334 7 156 2033 \N 499 \N \N 4.0 0 2019-09-04 00:51:43.361841 2019-09-04 00:51:43.361841 7 156 2034 \N 528 \N \N 5.0 0 2019-09-04 00:51:43.387773 2019-09-04 00:51:43.387773 7 156 2035 \N 529 \N \N 6.0 0 2019-09-04 00:51:43.411353 2019-09-04 00:51:43.411353 7 156 2036 \N 28 \N \N 1.0 0 2019-09-04 00:51:56.160828 2019-09-04 00:51:56.160828 7 151 2037 \N 22 \N \N 2.0 0 2019-09-04 00:51:56.181739 2019-09-04 00:51:56.181739 7 151 2038 \N 30 \N \N 1.0 0 2019-09-04 00:51:56.202723 2019-09-04 00:51:56.202723 7 151 2039 \N 26 \N \N 1.0 0 2019-09-04 00:51:56.229144 2019-09-04 00:51:56.229144 7 151 2040 \N 21 \N \N 1.0 0 2019-09-04 00:51:56.249639 2019-09-04 00:51:56.249639 7 151 2041 \N 27 \N \N 1.0 0 2019-09-04 00:51:56.274254 2019-09-04 00:51:56.274254 7 151 2042 \N 29 \N \N 1.0 0 2019-09-04 00:51:56.295639 2019-09-04 00:51:56.295639 7 151 2043 \N 24 \N \N 1.0 0 2019-09-04 00:52:02.141908 2019-09-04 00:52:02.141908 7 152 2044 \N 23 \N \N 1.0 0 2019-09-04 00:52:02.168404 2019-09-04 00:52:02.168404 7 152 2045 \N 488 \N \N 3.0 0 2019-09-04 00:52:10.622006 2019-09-04 00:52:10.622006 7 155 2046 \N 521 \N \N 5.0 0 2019-09-04 00:52:31.869568 2019-09-04 00:52:31.869568 7 158 2047 \N 524 \N \N 5.0 0 2019-09-04 00:52:31.890625 2019-09-04 00:52:31.890625 7 158 2048 \N 319 \N \N 3.0 0 2019-09-04 00:52:31.912837 2019-09-04 00:52:31.912837 7 158 2049 \N 501 \N \N 5.0 0 2019-09-04 00:52:31.937495 2019-09-04 00:52:31.937495 7 158 2050 \N 144 \N \N 6.0 0 2019-09-04 00:52:56.654138 2019-09-04 00:52:56.654138 7 157 2051 \N 434 \N \N 4.0 0 2019-09-04 00:52:56.682187 2019-09-04 00:52:56.682187 7 157 2052 \N 511 \N \N 5.0 0 2019-09-04 00:52:56.707453 2019-09-04 00:52:56.707453 7 157 2053 \N 519 \N \N 3.0 0 2019-09-04 00:52:56.729333 2019-09-04 00:52:56.729333 7 157 2054 \N 581 \N \N 6.0 0 2019-09-04 00:52:56.750811 2019-09-04 00:52:56.750811 7 157 2055 \N 204 \N \N 3.0 0 2019-09-04 00:52:56.776277 2019-09-04 00:52:56.776277 7 157 2056 \N 591 \N \N 4.0 0 2019-09-04 00:52:56.798311 2019-09-04 00:52:56.798311 7 157 2057 \N 218 \N \N 5.0 0 2019-09-04 00:52:56.820654 2019-09-04 00:52:56.820654 7 157 2058 \N 255 \N \N 5.0 0 2019-09-04 00:52:56.84585 2019-09-04 00:52:56.84585 7 157 2059 \N 170 \N \N 6.0 0 2019-09-04 00:52:56.879738 2019-09-04 00:52:56.879738 7 157 2060 \N 361 \N \N 1.0 0 2019-09-04 01:08:02.52183 2019-09-04 01:08:02.52183 7 154 2061 \N 363 \N \N 1.0 0 2019-09-04 01:08:07.240212 2019-09-04 01:08:07.240212 7 153 2062 \N 357 \N \N 1.0 0 2019-09-04 01:08:07.253193 2019-09-04 01:08:07.253193 7 153 2063 \N 354 \N \N 1.0 0 2019-09-04 01:08:07.261868 2019-09-04 01:08:07.261868 7 153 2064 \N 247 \N \N 6.0 0 2019-09-04 01:08:26.811163 2019-09-04 01:08:26.811163 7 161 2065 \N 586 \N \N 5.0 0 2019-09-04 01:08:26.840966 2019-09-04 01:08:26.840966 7 161 2066 \N 152 \N \N 5.0 0 2019-09-04 01:08:33.096137 2019-09-04 01:08:33.096137 7 162 2067 \N 551 \N \N 4.0 0 2019-09-04 01:08:33.118535 2019-09-04 01:08:33.118535 7 162 2068 \N 395 \N \N 5.0 0 2019-09-04 01:08:33.140502 2019-09-04 01:08:33.140502 7 162 2069 \N 253 \N \N 3.0 0 2019-09-04 01:08:33.161101 2019-09-04 01:08:33.161101 7 162 2070 \N 557 \N \N 2.0 0 2019-09-04 16:37:23.366391 2019-09-04 16:37:23.366391 7 163 2071 \N 590 \N \N 5.0 0 2019-09-04 17:06:44.516493 2019-09-04 17:06:44.516493 7 165 2072 \N 590 \N \N 1.0 0 2019-09-04 17:06:50.973801 2019-09-04 17:06:50.973801 7 164 2073 \N 17 \N \N 0 0 2019-09-04 18:03:02.88479 2019-09-04 18:03:02.88479 7 84 2074 \N 526 \N \N 1.0 0 2019-09-04 18:03:02.908161 2019-09-04 18:03:02.908161 7 84 2075 \N 666 \N 1031 1.0 1 2019-09-04 20:58:12.079428 2019-09-04 20:58:12.079428 0 \N 2076 \N 633 \N 1032 1.0 1 2019-09-04 22:49:05.433779 2019-09-04 22:49:05.433779 0 \N 2077 \N 638 \N 1032 1.0 1 2019-09-04 22:49:05.456709 2019-09-04 22:49:05.456709 0 \N 2078 \N 553 138 \N 1.0 0 2019-09-04 23:21:39.067548 2019-09-04 23:21:39.067548 1 \N 2079 \N 181 138 \N 1.0 0 2019-09-04 23:21:39.091849 2019-09-04 23:21:39.091849 1 \N 2080 \N 662 \N \N 2.0 0 2019-09-04 23:22:42.22239 2019-09-04 23:22:42.22239 7 137 2081 \N 605 \N \N 5.0 0 2019-09-04 23:22:58.864476 2019-09-04 23:22:58.864476 7 171 2082 \N 609 \N \N 6.0 0 2019-09-04 23:22:58.889582 2019-09-04 23:22:58.889582 7 171 2083 \N 630 \N \N 5.0 0 2019-09-04 23:22:58.915291 2019-09-04 23:22:58.915291 7 171 2084 \N 710 139 \N 12.0 0 2019-09-05 03:26:22.059732 2019-09-05 03:26:22.059732 1 \N 2085 \N 710 \N \N 6.0 0 2019-09-05 03:30:31.064275 2019-09-05 03:30:31.064275 7 174 2086 \N 42 \N \N 1.0 0 2019-09-05 03:30:37.125053 2019-09-05 03:30:37.125053 7 169 2087 \N 710 \N \N 6.0 0 2019-09-05 03:33:02.616286 2019-09-05 03:33:02.616286 7 173 2088 \N 176 \N \N 5.0 0 2019-09-05 03:33:07.60304 2019-09-05 03:33:07.60304 7 172 2089 \N 164 \N \N 4.0 0 2019-09-05 03:33:07.627793 2019-09-05 03:33:07.627793 7 172 2090 \N 625 \N \N 4.0 0 2019-09-05 03:33:14.12986 2019-09-05 03:33:14.12986 7 170 2091 \N 689 \N 1033 1.0 1 2019-09-05 16:58:23.229782 2019-09-05 16:58:23.229782 0 \N 2092 \N 348 \N 1034 1.0 1 2019-09-05 18:03:46.1944 2019-09-05 18:03:46.1944 0 \N 2093 \N 664 \N 1035 1.0 1 2019-09-05 20:35:44.432914 2019-09-05 20:35:44.432914 0 \N 2094 \N 623 \N 1036 1.0 1 2019-09-06 00:24:27.657658 2019-09-06 00:24:27.657658 0 \N 2095 \N 322 \N \N 1.0 0 2019-09-06 17:13:18.125917 2019-09-06 17:13:18.125917 7 175 2096 \N 318 \N 1037 1.0 1 2019-09-06 17:14:48.941679 2019-09-06 17:14:48.941679 0 \N 2097 \N 322 \N 1037 1.0 1 2019-09-06 17:14:48.970653 2019-09-06 17:14:48.970653 0 \N 2098 \N 329 \N 1038 1.0 1 2019-09-06 20:17:20.947193 2019-09-06 20:17:20.947193 0 \N 2099 \N 433 \N 1039 1.0 1 2019-09-06 22:04:53.392479 2019-09-06 22:04:53.392479 0 \N 2100 \N 476 \N 1040 1.0 1 2019-09-06 23:33:00.939258 2019-09-06 23:33:00.939258 0 \N 2101 \N 701 \N 1041 1.0 1 2019-09-07 00:25:31.794217 2019-09-07 00:25:31.794217 0 \N 2102 \N 668 \N 1042 1.0 1 2019-09-07 00:29:18.313862 2019-09-07 00:29:18.313862 0 \N 2103 \N 601 \N 1043 1.0 1 2019-09-07 16:14:45.909543 2019-09-07 16:14:45.909543 0 \N 2104 \N 601 \N 1043 1.0 0 2019-09-07 16:14:52.320873 2019-09-07 16:14:52.320873 3 \N 2105 \N 601 \N 1044 1.0 1 2019-09-07 16:15:46.045309 2019-09-07 16:15:46.045309 0 \N 2106 \N 601 \N 1044 1.0 0 2019-09-07 16:15:58.313626 2019-09-07 16:15:58.313626 3 \N 2107 \N 601 \N 1045 1.0 1 2019-09-07 16:16:25.276091 2019-09-07 16:16:25.276091 0 \N 2108 \N 674 \N 1046 1.0 1 2019-09-07 17:29:00.43085 2019-09-07 17:29:00.43085 0 \N 2109 \N 662 \N 1047 1.0 1 2019-09-07 17:30:06.050035 2019-09-07 17:30:06.050035 0 \N 2110 \N 590 \N 1048 1.0 1 2019-09-07 18:34:05.754865 2019-09-07 18:34:05.754865 0 \N 2111 \N 623 \N 1049 1.0 1 2019-09-07 18:49:49.742449 2019-09-07 18:49:49.742449 0 \N 2112 \N 672 \N 1050 2.0 1 2019-09-07 19:38:41.341482 2019-09-07 19:38:41.341482 0 \N 2113 \N 623 \N 1051 1.0 1 2019-09-07 22:53:00.729139 2019-09-07 22:53:00.729139 0 \N 2114 \N 498 \N 1052 1.0 1 2019-09-07 22:53:24.438825 2019-09-07 22:53:24.438825 0 \N 2115 \N 664 \N 1053 1.0 1 2019-09-08 00:06:28.093987 2019-09-08 00:06:28.093987 0 \N 2116 \N 623 \N 1053 1.0 1 2019-09-08 00:06:28.121421 2019-09-08 00:06:28.121421 0 \N 2117 \N 664 \N \N 1.0 0 2019-09-08 00:24:52.310037 2019-09-08 00:24:52.310037 7 176 2118 \N 647 \N 1054 1.0 1 2019-09-09 17:40:19.8851 2019-09-09 17:40:19.8851 0 \N 2119 \N 662 \N 1055 1.0 1 2019-09-09 20:46:40.311988 2019-09-09 20:46:40.311988 0 \N 2120 \N 606 \N 1056 1.0 1 2019-09-09 21:08:03.742752 2019-09-09 21:08:03.742752 0 \N 2121 \N 665 \N 1057 1.0 1 2019-09-09 23:36:24.149076 2019-09-09 23:36:24.149076 0 \N 2122 \N 668 \N 1058 1.0 1 2019-09-10 00:36:41.063879 2019-09-10 00:36:41.063879 0 \N 2123 \N 668 \N 1058 1.0 0 2019-09-10 00:39:01.899851 2019-09-10 00:39:01.899851 3 \N 2124 \N 668 \N 1059 1.0 1 2019-09-10 00:44:43.591426 2019-09-10 00:44:43.591426 0 \N 2125 \N 369 \N 1059 2.0 1 2019-09-10 00:44:43.616302 2019-09-10 00:44:43.616302 0 \N 2126 \N 704 \N 1059 1.0 1 2019-09-10 00:44:43.654281 2019-09-10 00:44:43.654281 0 \N 2127 \N 623 \N 1060 1.0 1 2019-09-10 01:29:59.971703 2019-09-10 01:29:59.971703 0 \N 2128 \N 698 \N 1061 1.0 1 2019-09-10 02:28:01.031118 2019-09-10 02:28:01.031118 0 \N 2129 \N 698 \N 1061 1.0 0 2019-09-10 02:28:18.829217 2019-09-10 02:28:18.829217 3 \N 2130 \N 698 \N 1062 1.0 1 2019-09-10 02:28:40.639863 2019-09-10 02:28:40.639863 0 \N 2131 \N 683 \N 1063 1.0 1 2019-09-10 02:51:52.078301 2019-09-10 02:51:52.078301 0 \N 2132 \N 642 \N 1063 1.0 1 2019-09-10 02:51:52.101701 2019-09-10 02:51:52.101701 0 \N 2133 \N 476 \N 1063 2.0 1 2019-09-10 02:51:52.123718 2019-09-10 02:51:52.123718 0 \N 2134 \N 434 \N 1064 1.0 1 2019-09-10 17:18:57.500625 2019-09-10 17:18:57.500625 0 \N 2135 \N 204 \N 726 1.0 0 2019-09-10 21:48:00.208189 2019-09-10 21:48:00.208189 8 \N 2136 \N 204 \N 726 1.0 0 2019-09-10 21:48:03.654077 2019-09-10 21:48:03.654077 8 \N 2137 \N 660 \N \N 1.0 0 2019-09-10 22:20:47.856925 2019-09-10 22:20:47.856925 7 178 2138 \N 662 \N \N 1.0 0 2019-09-10 22:20:56.324139 2019-09-10 22:20:56.324139 7 177 2139 \N 660 \N 1065 1.0 1 2019-09-10 22:22:16.531428 2019-09-10 22:22:16.531428 0 \N 2140 \N 491 \N 1066 1.0 1 2019-09-11 17:08:12.438636 2019-09-11 17:08:12.438636 0 \N 2141 \N 294 \N 1067 1.0 1 2019-09-11 17:45:02.179271 2019-09-11 17:45:02.179271 0 \N 2142 \N 507 \N \N 3.0 0 2019-09-11 17:48:39.054796 2019-09-11 17:48:39.054796 7 179 2143 \N 60 \N \N 4.0 0 2019-09-11 17:48:39.076823 2019-09-11 17:48:39.076823 7 179 2144 \N 624 \N \N 6.0 0 2019-09-11 17:48:39.117472 2019-09-11 17:48:39.117472 7 179 2145 \N 181 \N \N 3.0 0 2019-09-11 17:48:39.140267 2019-09-11 17:48:39.140267 7 179 2146 \N 593 \N \N 4.0 0 2019-09-11 17:48:39.166968 2019-09-11 17:48:39.166968 7 179 2147 \N 619 \N \N 5.0 0 2019-09-11 17:48:39.191669 2019-09-11 17:48:39.191669 7 179 2148 \N 62 \N \N 2.0 0 2019-09-11 17:48:39.223028 2019-09-11 17:48:39.223028 7 179 2149 \N 532 \N \N 2.0 0 2019-09-11 17:48:39.249724 2019-09-11 17:48:39.249724 7 179 2150 \N 517 \N \N 2.0 0 2019-09-11 17:48:39.272202 2019-09-11 17:48:39.272202 7 179 2151 \N 149 \N \N 5.0 0 2019-09-11 17:48:39.307226 2019-09-11 17:48:39.307226 7 179 2152 \N 664 \N \N 1.0 0 2019-09-11 19:51:54.374489 2019-09-11 19:51:54.374489 7 180 2153 \N 138 \N \N 2.0 0 2019-09-11 19:52:02.873158 2019-09-11 19:52:02.873158 7 181 2154 \N 535 \N \N 3.0 0 2019-09-11 19:52:02.897497 2019-09-11 19:52:02.897497 7 181 2155 \N 623 \N \N 3.0 0 2019-09-11 19:52:12.306754 2019-09-11 19:52:12.306754 7 182 2156 \N 568 \N \N 1.0 0 2019-09-11 19:52:20.948663 2019-09-11 19:52:20.948663 7 183 2157 \N 711 140 \N 5.0 0 2019-09-11 19:57:13.968942 2019-09-11 19:57:13.968942 1 \N 2158 \N 147 \N 1068 1.0 1 2019-09-11 20:25:43.983357 2019-09-11 20:25:43.983357 0 \N 2159 \N 496 \N \N 4.0 0 2019-09-11 22:10:56.596978 2019-09-11 22:10:56.596978 7 186 2160 \N 417 \N \N 2.0 0 2019-09-11 22:11:05.109196 2019-09-11 22:11:05.109196 7 185 2161 \N 508 \N 1069 1.0 1 2019-09-12 00:32:43.818256 2019-09-12 00:32:43.818256 0 \N 2162 \N 508 \N 1069 1.0 0 2019-09-12 00:33:04.019175 2019-09-12 00:33:04.019175 3 \N 2163 \N 508 \N 1070 1.0 1 2019-09-12 00:33:25.833338 2019-09-12 00:33:25.833338 0 \N 2164 \N 661 \N 1071 1.0 1 2019-09-12 01:12:54.050171 2019-09-12 01:12:54.050171 0 \N 2165 \N 661 \N 1071 1.0 0 2019-09-12 01:51:58.193793 2019-09-12 01:51:58.193793 3 \N 2166 \N 661 \N 1072 1.0 1 2019-09-12 01:52:13.633371 2019-09-12 01:52:13.633371 0 \N 2167 \N 629 \N 1073 1.0 1 2019-09-12 20:06:45.719899 2019-09-12 20:06:45.719899 0 \N 2168 \N 668 \N 1074 1.0 1 2019-09-13 00:10:26.171689 2019-09-13 00:10:26.171689 0 \N 2169 \N 618 \N 1075 1.0 1 2019-09-13 00:37:42.420715 2019-09-13 00:37:42.420715 0 \N 2170 \N 652 \N 1076 1.0 1 2019-09-13 01:10:28.433447 2019-09-13 01:10:28.433447 0 \N 2171 \N 656 \N 1076 1.0 1 2019-09-13 01:10:28.467074 2019-09-13 01:10:28.467074 0 \N 2172 \N 656 \N 1076 1.0 0 2019-09-13 01:11:14.236712 2019-09-13 01:11:14.236712 3 \N 2173 \N 652 \N 1076 1.0 0 2019-09-13 01:11:14.26064 2019-09-13 01:11:14.26064 3 \N 2174 \N 656 \N 1077 1.0 1 2019-09-13 01:12:01.474776 2019-09-13 01:12:01.474776 0 \N 2175 \N 652 \N 1077 1.0 1 2019-09-13 01:12:01.501834 2019-09-13 01:12:01.501834 0 \N 2176 \N 100 \N 1078 1.0 1 2019-09-13 01:15:00.089398 2019-09-13 01:15:00.089398 0 \N 2177 \N 72 \N 1079 1.0 1 2019-09-13 18:29:22.275006 2019-09-13 18:29:22.275006 0 \N 2178 \N 632 \N 1079 1.0 1 2019-09-13 18:29:22.301712 2019-09-13 18:29:22.301712 0 \N 2179 \N 479 \N 1080 1.0 1 2019-09-13 19:27:45.634519 2019-09-13 19:27:45.634519 0 \N 2180 \N 596 \N 1081 1.0 1 2019-09-13 20:21:49.838567 2019-09-13 20:21:49.838567 0 \N 2181 \N 567 \N 1082 1.0 1 2019-09-13 20:52:58.126326 2019-09-13 20:52:58.126326 0 \N 2182 \N 115 \N 1083 1.0 1 2019-09-13 20:58:44.127904 2019-09-13 20:58:44.127904 0 \N 2183 \N 598 \N 1084 1.0 1 2019-09-13 21:34:38.280411 2019-09-13 21:34:38.280411 0 \N 2184 \N 670 \N \N 1.0 0 2019-09-13 21:54:34.893663 2019-09-13 21:54:34.893663 7 187 2185 \N 622 \N \N 1.0 0 2019-09-13 21:54:41.52834 2019-09-13 21:54:41.52834 7 188 2186 \N 711 \N \N 5.0 0 2019-09-13 21:54:47.77219 2019-09-13 21:54:47.77219 7 184 2187 \N 622 \N 1085 1.0 1 2019-09-13 22:05:50.785765 2019-09-13 22:05:50.785765 0 \N 2188 \N 623 \N 1085 1.0 1 2019-09-13 22:05:50.809128 2019-09-13 22:05:50.809128 0 \N 2189 \N 696 \N 1086 1.0 1 2019-09-14 01:57:09.75994 2019-09-14 01:57:09.75994 0 \N 2190 \N 600 \N 1087 1.0 1 2019-09-14 16:27:08.032472 2019-09-14 16:27:08.032472 0 \N 2191 \N 83 \N 1087 1.0 1 2019-09-14 16:27:08.057118 2019-09-14 16:27:08.057118 0 \N 2192 \N 247 \N 1088 1.0 1 2019-09-14 17:43:48.875648 2019-09-14 17:43:48.875648 0 \N 2193 \N 247 \N 1088 1.0 0 2019-09-14 17:44:35.607451 2019-09-14 17:44:35.607451 9 \N 2194 \N 623 \N 1089 1.0 1 2019-09-14 17:55:49.597082 2019-09-14 17:55:49.597082 0 \N 2195 \N 682 \N 1089 1.0 1 2019-09-14 17:55:49.623986 2019-09-14 17:55:49.623986 0 \N 2196 \N 670 \N 1089 1.0 1 2019-09-14 17:55:49.64925 2019-09-14 17:55:49.64925 0 \N 2197 \N 603 \N 1090 1.0 1 2019-09-14 18:29:41.664864 2019-09-14 18:29:41.664864 0 \N 2198 \N 590 \N 1091 1.0 1 2019-09-14 19:05:55.763988 2019-09-14 19:05:55.763988 0 \N 2199 \N 670 \N 1091 1.0 1 2019-09-14 19:05:55.786641 2019-09-14 19:05:55.786641 0 \N 2200 \N 670 \N 1092 1.0 1 2019-09-14 19:40:40.16404 2019-09-14 19:40:40.16404 0 \N 2201 \N 670 \N 1093 1.0 1 2019-09-14 20:25:06.895485 2019-09-14 20:25:06.895485 0 \N 2202 \N 597 \N 1093 1.0 1 2019-09-14 20:25:06.917848 2019-09-14 20:25:06.917848 0 \N 2203 \N 623 \N 1093 1.0 1 2019-09-14 20:25:06.940254 2019-09-14 20:25:06.940254 0 \N 2204 \N 573 \N 1094 1.0 1 2019-09-14 20:38:12.26532 2019-09-14 20:38:12.26532 0 \N 2205 \N 673 \N \N 3.0 0 2019-09-14 20:59:12.54085 2019-09-14 20:59:12.54085 7 189 2206 \N 670 \N \N 1.0 0 2019-09-14 20:59:12.557607 2019-09-14 20:59:12.557607 7 189 2207 \N 681 \N \N 6.0 0 2019-09-14 21:20:29.538698 2019-09-14 21:20:29.538698 7 190 2208 \N 681 \N 1095 1.0 1 2019-09-14 21:51:16.129394 2019-09-14 21:51:16.129394 0 \N 2209 \N 702 \N 1096 1.0 1 2019-09-14 22:26:29.481756 2019-09-14 22:26:29.481756 0 \N 2210 \N 632 \N 1097 2.0 1 2019-09-14 22:40:05.311358 2019-09-14 22:40:05.311358 0 \N 2211 \N 632 \N 1097 2.0 0 2019-09-14 22:40:10.290793 2019-09-14 22:40:10.290793 3 \N 2212 \N 632 \N 1098 1.0 1 2019-09-14 22:40:33.367522 2019-09-14 22:40:33.367522 0 \N 2213 \N 699 \N 1099 1.0 1 2019-09-15 00:01:14.900452 2019-09-15 00:01:14.900452 0 \N 2214 \N 692 \N 1100 1.0 1 2019-09-15 00:27:08.242668 2019-09-15 00:27:08.242668 0 \N 2215 \N 572 \N 1101 1.0 1 2019-09-15 00:34:50.106689 2019-09-15 00:34:50.106689 0 \N 2216 \N 572 \N 1101 1.0 0 2019-09-15 00:35:59.408082 2019-09-15 00:35:59.408082 3 \N 2217 \N 572 \N 1101 1.0 0 2019-09-15 00:36:01.282214 2019-09-15 00:36:01.282214 3 \N 2218 \N 692 \N 1102 1.0 1 2019-09-15 00:36:31.742124 2019-09-15 00:36:31.742124 0 \N 2219 \N 572 \N 1102 1.0 1 2019-09-15 00:36:31.766677 2019-09-15 00:36:31.766677 0 \N 2220 \N 670 \N 1103 1.0 1 2019-09-15 00:42:27.838069 2019-09-15 00:42:27.838069 0 \N 2221 \N 598 \N 1104 1.0 1 2019-09-15 17:13:47.649393 2019-09-15 17:13:47.649393 0 \N 2222 \N 696 \N 1105 1.0 1 2019-09-15 19:17:59.471224 2019-09-15 19:17:59.471224 0 \N 2223 \N 672 \N 1106 1.0 1 2019-09-17 19:48:42.415823 2019-09-17 19:48:42.415823 0 \N 2224 \N 673 \N 1107 1.0 1 2019-09-17 19:53:00.18604 2019-09-17 19:53:00.18604 0 \N 2225 \N 669 \N 1107 1.0 1 2019-09-17 19:53:00.208801 2019-09-17 19:53:00.208801 0 \N 2226 \N 670 \N 1107 1.0 1 2019-09-17 19:53:00.230692 2019-09-17 19:53:00.230692 0 \N 2227 \N 623 \N 1107 1.0 1 2019-09-17 19:53:00.252839 2019-09-17 19:53:00.252839 0 \N 2228 \N 623 \N 1107 1.0 0 2019-09-17 19:53:19.654312 2019-09-17 19:53:19.654312 3 \N 2229 \N 670 \N 1107 1.0 0 2019-09-17 19:53:19.673586 2019-09-17 19:53:19.673586 3 \N 2230 \N 669 \N 1107 1.0 0 2019-09-17 19:53:19.692849 2019-09-17 19:53:19.692849 3 \N 2231 \N 673 \N 1107 1.0 0 2019-09-17 19:53:19.712847 2019-09-17 19:53:19.712847 3 \N 2232 \N 623 \N 1108 1.0 1 2019-09-17 19:55:05.839758 2019-09-17 19:55:05.839758 0 \N 2233 \N 670 \N 1108 1.0 1 2019-09-17 19:55:05.863054 2019-09-17 19:55:05.863054 0 \N 2234 \N 669 \N 1108 1.0 1 2019-09-17 19:55:05.886192 2019-09-17 19:55:05.886192 0 \N 2235 \N 673 \N 1108 1.0 1 2019-09-17 19:55:05.908107 2019-09-17 19:55:05.908107 0 \N 2236 \N 666 \N \N 6.0 0 2019-09-17 22:52:19.854395 2019-09-17 22:52:19.854395 7 192 2237 \N 623 \N \N 1.0 0 2019-09-17 22:52:19.873098 2019-09-17 22:52:19.873098 7 192 2238 \N 666 \N \N 6.0 0 2019-09-17 22:53:36.363278 2019-09-17 22:53:36.363278 7 193 2239 \N 623 \N \N 4.0 0 2019-09-17 22:53:44.370538 2019-09-17 22:53:44.370538 7 191 2240 \N 369 \N 1109 1.0 1 2019-09-18 18:12:22.206397 2019-09-18 18:12:22.206397 0 \N 2241 \N 60 \N 1110 1.0 1 2019-09-18 18:36:51.302971 2019-09-18 18:36:51.302971 0 \N 2242 \N 691 \N 1111 1.0 1 2019-09-18 19:25:02.494826 2019-09-18 19:25:02.494826 0 \N 2243 \N 681 \N 1112 1.0 1 2019-09-18 23:32:44.571135 2019-09-18 23:32:44.571135 0 \N 2244 \N 620 \N 1113 1.0 1 2019-09-19 00:40:35.515998 2019-09-19 00:40:35.515998 0 \N 2245 \N 623 \N 1114 1.0 1 2019-09-19 16:29:15.851133 2019-09-19 16:29:15.851133 0 \N 2246 \N 664 \N 1114 1.0 1 2019-09-19 16:29:15.881161 2019-09-19 16:29:15.881161 0 \N 2247 \N 664 \N 1114 1.0 0 2019-09-19 16:29:23.310686 2019-09-19 16:29:23.310686 3 \N 2248 \N 623 \N 1114 1.0 0 2019-09-19 16:29:23.332265 2019-09-19 16:29:23.332265 3 \N 2249 \N 664 \N 1115 1.0 1 2019-09-19 16:30:13.234216 2019-09-19 16:30:13.234216 0 \N 2250 \N 623 \N 1115 1.0 1 2019-09-19 16:30:13.267454 2019-09-19 16:30:13.267454 0 \N 2251 \N 691 \N 1116 1.0 1 2019-09-19 21:02:26.428412 2019-09-19 21:02:26.428412 0 \N 2252 \N 623 \N 1117 1.0 1 2019-09-19 21:05:27.308878 2019-09-19 21:05:27.308878 0 \N 2253 \N 623 \N 1118 1.0 1 2019-09-19 23:01:44.381802 2019-09-19 23:01:44.381802 0 \N 2254 \N 670 \N 1119 1.0 1 2019-09-20 16:34:40.94445 2019-09-20 16:34:40.94445 0 \N 2255 \N 623 \N 1120 1.0 1 2019-09-20 16:57:24.261683 2019-09-20 16:57:24.261683 0 \N 2256 \N 700 \N \N 6.0 0 2019-09-20 17:28:58.320052 2019-09-20 17:28:58.320052 7 195 2257 \N 671 \N \N 6.0 0 2019-09-20 17:29:32.753567 2019-09-20 17:29:32.753567 7 196 2258 \N 509 \N \N 3.0 0 2019-09-20 17:29:32.773339 2019-09-20 17:29:32.773339 7 196 2259 \N 597 \N 1121 1.0 1 2019-09-20 19:56:24.768609 2019-09-20 19:56:24.768609 0 \N 2260 \N 690 \N 1122 1.0 1 2019-09-20 20:59:58.322904 2019-09-20 20:59:58.322904 0 \N 2261 \N 571 \N 1122 1.0 1 2019-09-20 20:59:58.346749 2019-09-20 20:59:58.346749 0 \N 2262 \N 697 \N 1123 1.0 1 2019-09-20 22:34:18.691381 2019-09-20 22:34:18.691381 0 \N 2263 \N 712 141 \N 2.0 0 2019-09-20 23:17:54.790353 2019-09-20 23:17:54.790353 1 \N 2264 \N 324 \N \N 1.0 0 2019-09-21 00:04:06.911697 2019-09-21 00:04:06.911697 7 198 2265 \N 146 \N \N 2.0 0 2019-09-21 00:04:06.934967 2019-09-21 00:04:06.934967 7 198 2266 \N 149 \N \N 5.0 0 2019-09-21 00:04:06.958686 2019-09-21 00:04:06.958686 7 198 2267 \N 623 \N \N 1.0 0 2019-09-21 00:04:18.069761 2019-09-21 00:04:18.069761 7 194 2268 \N 575 \N 1124 1.0 1 2019-09-21 00:51:10.410109 2019-09-21 00:51:10.410109 0 \N 2269 \N 623 \N 1125 1.0 1 2019-09-21 17:44:07.553505 2019-09-21 17:44:07.553505 0 \N 2270 \N 670 \N 1126 1.0 1 2019-09-21 17:45:11.943514 2019-09-21 17:45:11.943514 0 \N 2271 \N 476 \N 1127 2.0 1 2019-09-21 18:30:04.492694 2019-09-21 18:30:04.492694 0 \N 2272 \N 713 142 \N 6.0 0 2019-09-21 20:43:58.913001 2019-09-21 20:43:58.913001 1 \N 2273 \N 714 142 \N 6.0 0 2019-09-21 20:43:58.925889 2019-09-21 20:43:58.925889 1 \N 2274 \N 715 142 \N 6.0 0 2019-09-21 20:43:58.93787 2019-09-21 20:43:58.93787 1 \N 2275 \N 60 \N \N 4.0 0 2019-09-21 20:45:29.069133 2019-09-21 20:45:29.069133 7 199 2276 \N 669 \N \N 9.0 0 2019-09-21 20:45:29.090863 2019-09-21 20:45:29.090863 7 199 2277 \N 664 \N \N 2.0 0 2019-09-21 20:45:38.021826 2019-09-21 20:45:38.021826 7 200 2278 \N 623 \N \N 3.0 0 2019-09-21 20:45:38.038593 2019-09-21 20:45:38.038593 7 200 2279 \N 677 \N \N 1.0 0 2019-09-21 20:59:21.421677 2019-09-21 20:59:21.421677 7 201 2280 \N 713 \N \N 6.0 0 2019-09-21 20:59:30.033597 2019-09-21 20:59:30.033597 7 202 2281 \N 714 \N \N 6.0 0 2019-09-21 20:59:30.054932 2019-09-21 20:59:30.054932 7 202 2282 \N 636 \N \N 3.0 0 2019-09-21 21:03:35.063293 2019-09-21 21:03:35.063293 7 197 2283 \N 674 \N 1128 1.0 1 2019-09-21 22:31:20.684754 2019-09-21 22:31:20.684754 0 \N 2284 \N 677 \N 1129 1.0 1 2019-09-21 22:34:15.589358 2019-09-21 22:34:15.589358 0 \N 2285 \N 710 \N 1130 1.0 1 2019-09-21 22:39:05.928078 2019-09-21 22:39:05.928078 0 \N 2286 \N 597 \N 1131 1.0 1 2019-09-21 23:15:25.485317 2019-09-21 23:15:25.485317 0 \N 2287 \N 677 \N \N 5.0 0 2019-09-21 23:54:51.692294 2019-09-21 23:54:51.692294 7 203 2288 \N 677 \N 1132 1.0 1 2019-09-22 00:00:02.344068 2019-09-22 00:00:02.344068 0 \N 2289 \N 710 \N 1133 1.0 1 2019-09-22 00:44:35.401747 2019-09-22 00:44:35.401747 0 \N 2290 \N 273 \N 1134 1.0 1 2019-09-22 20:17:52.952048 2019-09-22 20:17:52.952048 0 \N 2291 \N 273 \N 1135 1.0 1 2019-09-22 20:19:42.943039 2019-09-22 20:19:42.943039 0 \N 2292 \N 273 \N 1134 1.0 0 2019-09-22 20:30:05.028804 2019-09-22 20:30:05.028804 3 \N 2293 \N 692 \N 1136 1.0 1 2019-09-23 17:52:25.375184 2019-09-23 17:52:25.375184 0 \N 2294 \N 665 \N \N 1.0 0 2019-09-23 20:47:24.956309 2019-09-23 20:47:24.956309 7 204 2295 \N 673 \N 1137 1.0 1 2019-09-23 20:47:49.537557 2019-09-23 20:47:49.537557 0 \N 2296 \N 665 \N 1137 1.0 1 2019-09-23 20:47:49.570434 2019-09-23 20:47:49.570434 0 \N 2297 \N 668 \N 1138 3.0 1 2019-09-24 00:42:23.889162 2019-09-24 00:42:23.889162 0 \N 2298 \N 670 \N 1139 1.0 1 2019-09-24 00:58:23.793703 2019-09-24 00:58:23.793703 0 \N 2299 \N 623 \N 1140 1.0 1 2019-09-24 01:06:33.7946 2019-09-24 01:06:33.7946 0 \N 2300 \N 623 \N 1141 1.0 1 2019-09-24 19:04:58.003122 2019-09-24 19:04:58.003122 0 \N 2301 \N 187 \N 1141 1.0 1 2019-09-24 19:04:58.030495 2019-09-24 19:04:58.030495 0 \N 2302 \N 623 \N 1142 1.0 1 2019-09-24 19:09:17.13244 2019-09-24 19:09:17.13244 0 \N 2303 \N 623 \N \N 1.0 0 2019-09-24 20:26:15.583136 2019-09-24 20:26:15.583136 7 205 2304 \N 638 \N 1143 1.0 1 2019-09-25 01:22:50.434987 2019-09-25 01:22:50.434987 0 \N 2305 \N 476 \N 1144 1.0 1 2019-09-25 01:27:39.537318 2019-09-25 01:27:39.537318 0 \N 2306 \N 398 \N 1144 1.0 1 2019-09-25 01:27:39.561945 2019-09-25 01:27:39.561945 0 \N 2307 \N 628 \N 1144 1.0 1 2019-09-25 01:27:39.584928 2019-09-25 01:27:39.584928 0 \N 2308 \N 82 \N 1145 1.0 1 2019-09-25 16:28:43.495756 2019-09-25 16:28:43.495756 0 \N 2309 \N 603 \N 1146 1.0 1 2019-09-25 22:58:31.696265 2019-09-25 22:58:31.696265 0 \N 2310 \N 668 \N 1147 1.0 1 2019-09-26 16:28:44.64251 2019-09-26 16:28:44.64251 0 \N 2311 \N 550 \N 1148 1.0 1 2019-09-26 18:30:04.182136 2019-09-26 18:30:04.182136 0 \N 2312 \N 525 \N 1149 1.0 1 2019-09-26 19:07:16.570032 2019-09-26 19:07:16.570032 0 \N 2313 \N 529 \N 1150 1.0 1 2019-09-26 19:37:10.736667 2019-09-26 19:37:10.736667 0 \N 2314 \N 626 \N 1151 1.0 1 2019-09-26 20:40:30.329661 2019-09-26 20:40:30.329661 0 \N 2315 \N 603 \N 1152 1.0 1 2019-09-26 21:29:50.878362 2019-09-26 21:29:50.878362 0 \N 2316 \N 623 \N 1118 1.0 0 2019-09-26 22:41:11.637594 2019-09-26 22:41:11.637594 9 \N 2317 \N 623 \N 1153 1.0 1 2019-09-26 22:42:52.944135 2019-09-26 22:42:52.944135 0 \N 2318 \N 623 \N 1153 1.0 0 2019-09-26 22:43:00.400638 2019-09-26 22:43:00.400638 3 \N 2319 \N 623 \N 1154 1.0 1 2019-09-26 22:45:09.226095 2019-09-26 22:45:09.226095 0 \N 2320 \N 623 \N 1154 1.0 0 2019-09-26 22:52:55.17302 2019-09-26 22:52:55.17302 3 \N 2321 \N 716 143 \N 1.0 0 2019-09-26 23:19:39.091191 2019-09-26 23:19:39.091191 1 \N 2322 \N 717 143 \N 3.0 0 2019-09-26 23:19:39.114518 2019-09-26 23:19:39.114518 1 \N 2323 \N 718 143 \N 1.0 0 2019-09-26 23:19:39.137127 2019-09-26 23:19:39.137127 1 \N 2324 \N 719 143 \N 1.0 0 2019-09-26 23:19:39.158505 2019-09-26 23:19:39.158505 1 \N 2325 \N 720 143 \N 1.0 0 2019-09-26 23:19:39.179903 2019-09-26 23:19:39.179903 1 \N 2326 \N 721 143 \N 1.0 0 2019-09-26 23:19:39.20236 2019-09-26 23:19:39.20236 1 \N 2327 \N 722 143 \N 6.0 0 2019-09-26 23:19:39.223625 2019-09-26 23:19:39.223625 1 \N 2328 \N 723 143 \N 1.0 0 2019-09-26 23:19:39.245456 2019-09-26 23:19:39.245456 1 \N 2329 \N 670 \N 1155 1.0 1 2019-09-26 23:29:30.687842 2019-09-26 23:29:30.687842 0 \N 2330 \N 626 \N 1156 1.0 1 2019-09-26 23:56:30.955284 2019-09-26 23:56:30.955284 0 \N 2331 \N 623 \N 1157 1.0 1 2019-09-27 00:21:27.563755 2019-09-27 00:21:27.563755 0 \N 2332 \N 626 \N 1158 1.0 1 2019-09-27 00:22:34.711306 2019-09-27 00:22:34.711306 0 \N 2333 \N 610 \N 1159 1.0 1 2019-09-27 17:12:58.615966 2019-09-27 17:12:58.615966 0 \N 2334 \N 622 \N \N 1.0 0 2019-09-27 19:26:15.187131 2019-09-27 19:26:15.187131 7 208 2335 \N 507 \N 1160 1.0 1 2019-09-27 19:52:59.071533 2019-09-27 19:52:59.071533 0 \N 2336 \N 670 \N 1160 1.0 1 2019-09-27 19:52:59.105801 2019-09-27 19:52:59.105801 0 \N 2337 \N 622 \N 1160 1.0 1 2019-09-27 19:52:59.139465 2019-09-27 19:52:59.139465 0 \N 2338 \N 16 \N 1160 1.0 1 2019-09-27 19:52:59.166446 2019-09-27 19:52:59.166446 0 \N 2339 \N 8 \N 1160 1.0 1 2019-09-27 19:52:59.194565 2019-09-27 19:52:59.194565 0 \N 2340 \N 682 \N 1161 1.0 1 2019-09-27 19:54:13.856711 2019-09-27 19:54:13.856711 0 \N 2341 \N 664 \N 1161 1.0 1 2019-09-27 19:54:13.884851 2019-09-27 19:54:13.884851 0 \N 2342 \N 665 \N \N 1.0 0 2019-09-27 19:57:34.867359 2019-09-27 19:57:34.867359 7 209 2343 \N 664 \N 1162 1.0 1 2019-09-27 19:59:09.261056 2019-09-27 19:59:09.261056 0 \N 2344 \N 665 \N 1162 1.0 1 2019-09-27 19:59:09.30854 2019-09-27 19:59:09.30854 0 \N 2345 \N 623 \N 1162 1.0 1 2019-09-27 19:59:09.347768 2019-09-27 19:59:09.347768 0 \N 2346 \N 623 \N 1162 1.0 0 2019-09-27 20:02:35.679964 2019-09-27 20:02:35.679964 9 \N 2347 \N 665 \N 1162 1.0 0 2019-09-27 20:02:35.707303 2019-09-27 20:02:35.707303 9 \N 2348 \N 664 \N 1162 1.0 0 2019-09-27 20:02:35.741111 2019-09-27 20:02:35.741111 9 \N 2349 \N 199 \N 1163 1.0 1 2019-09-27 20:55:48.671487 2019-09-27 20:55:48.671487 0 \N 2350 \N 623 \N 1164 1.0 1 2019-09-27 21:39:14.067145 2019-09-27 21:39:14.067145 0 \N 2351 \N 665 \N 1164 1.0 1 2019-09-27 21:39:14.089462 2019-09-27 21:39:14.089462 0 \N 2352 \N 664 \N 1164 1.0 1 2019-09-27 21:39:14.111965 2019-09-27 21:39:14.111965 0 \N 2353 \N 669 \N 1165 1.0 1 2019-09-27 23:02:12.763917 2019-09-27 23:02:12.763917 0 \N 2354 \N 693 \N 1166 1.0 1 2019-09-28 00:36:48.893045 2019-09-28 00:36:48.893045 0 \N 2355 \N 717 \N \N 1.0 0 2019-09-28 00:46:15.146093 2019-09-28 00:46:15.146093 7 207 2356 \N 722 \N \N 3.0 0 2019-09-28 00:46:15.174161 2019-09-28 00:46:15.174161 7 207 2357 \N 717 \N 1167 1.0 1 2019-09-28 00:55:47.956193 2019-09-28 00:55:47.956193 0 \N 2358 \N 717 \N 1167 1.0 0 2019-09-28 00:57:12.433121 2019-09-28 00:57:12.433121 9 \N 2359 \N 717 \N 1168 1.0 1 2019-09-28 00:59:10.118942 2019-09-28 00:59:10.118942 0 \N 2360 \N 626 \N 1169 1.0 1 2019-09-28 01:32:34.413954 2019-09-28 01:32:34.413954 0 \N 2361 \N 688 \N 1170 1.0 1 2019-09-28 18:11:01.403862 2019-09-28 18:11:01.403862 0 \N 2362 \N 600 \N 1171 1.0 1 2019-09-28 20:05:02.509165 2019-09-28 20:05:02.509165 0 \N 2363 \N 665 \N 1172 1.0 1 2019-09-28 22:29:34.692291 2019-09-28 22:29:34.692291 0 \N 2364 \N 621 \N 1173 1.0 1 2019-09-29 18:18:28.187811 2019-09-29 18:18:28.187811 0 \N 2365 \N 476 \N 1173 1.0 1 2019-09-29 18:18:28.211321 2019-09-29 18:18:28.211321 0 \N 2366 \N 662 \N 1174 1.0 1 2019-09-30 19:02:26.26147 2019-09-30 19:02:26.26147 0 \N 2367 \N 672 \N 1175 1.0 1 2019-10-01 17:18:58.838671 2019-10-01 17:18:58.838671 0 \N 2368 \N 111 \N 1175 1.0 1 2019-10-01 17:18:58.862805 2019-10-01 17:18:58.862805 0 \N 2369 \N 342 \N 1176 1.0 1 2019-10-02 00:54:16.100295 2019-10-02 00:54:16.100295 0 \N 2370 \N 722 \N 1177 1.0 1 2019-10-02 01:29:56.637743 2019-10-02 01:29:56.637743 0 \N 2371 \N 722 \N 1177 1.0 0 2019-10-02 01:30:24.296637 2019-10-02 01:30:24.296637 3 \N 2372 \N 722 \N 1178 1.0 1 2019-10-02 01:31:06.736375 2019-10-02 01:31:06.736375 0 \N 2373 \N 702 \N 1179 1.0 1 2019-10-02 18:43:00.803934 2019-10-02 18:43:00.803934 0 \N 2374 \N 723 \N 1180 1.0 1 2019-10-02 20:09:19.731272 2019-10-02 20:09:19.731272 0 \N 2375 \N 603 \N 1181 1.0 1 2019-10-02 21:43:49.338453 2019-10-02 21:43:49.338453 0 \N 2376 \N 11 \N 1182 1.0 1 2019-10-02 22:50:01.607873 2019-10-02 22:50:01.607873 0 \N 2377 \N 662 \N 1182 1.0 1 2019-10-02 22:50:01.630599 2019-10-02 22:50:01.630599 0 \N 2378 \N 440 \N 1183 1.0 1 2019-10-02 23:44:03.168755 2019-10-02 23:44:03.168755 0 \N 2379 \N 607 \N 1184 1.0 1 2019-10-03 00:22:02.782456 2019-10-03 00:22:02.782456 0 \N 2380 \N 708 \N \N 1.0 0 2019-10-03 00:55:34.600649 2019-10-03 00:55:34.600649 7 206 2381 \N 703 \N \N 1.0 0 2019-10-03 00:55:34.620674 2019-10-03 00:55:34.620674 7 206 2382 \N 708 \N \N 1.0 0 2019-10-03 00:55:45.563775 2019-10-03 00:55:45.563775 7 210 2383 \N 708 \N 1185 1.0 1 2019-10-03 01:04:07.823218 2019-10-03 01:04:07.823218 0 \N 2384 \N 621 \N 1186 1.0 1 2019-10-03 20:13:18.931529 2019-10-03 20:13:18.931529 0 \N 2385 \N 640 \N \N 4.0 0 2019-10-03 20:20:34.728668 2019-10-03 20:20:34.728668 7 211 2386 \N 623 \N \N 1.0 0 2019-10-03 20:20:41.5309 2019-10-03 20:20:41.5309 7 212 2387 \N 666 \N 1187 1.0 1 2019-10-03 23:00:02.333196 2019-10-03 23:00:02.333196 0 \N 2388 \N 194 \N 1188 1.0 1 2019-10-04 00:13:05.504671 2019-10-04 00:13:05.504671 0 \N 2389 \N 683 \N 1189 1.0 1 2019-10-04 01:02:32.548776 2019-10-04 01:02:32.548776 0 \N 2390 \N 592 \N 1190 1.0 1 2019-10-04 01:28:52.635886 2019-10-04 01:28:52.635886 0 \N 2391 \N 648 \N 1191 1.0 1 2019-10-04 17:09:32.840108 2019-10-04 17:09:32.840108 0 \N 2392 \N 678 \N 1192 1.0 1 2019-10-04 22:06:19.665004 2019-10-04 22:06:19.665004 0 \N 2393 \N 705 \N 1192 1.0 1 2019-10-04 22:06:19.688685 2019-10-04 22:06:19.688685 0 \N 2394 \N 669 \N 1193 1.0 1 2019-10-04 22:24:57.903417 2019-10-04 22:24:57.903417 0 \N 2395 \N 619 \N 1193 1.0 1 2019-10-04 22:24:57.934216 2019-10-04 22:24:57.934216 0 \N 2396 \N 623 \N \N 6.0 0 2019-10-04 22:28:28.53642 2019-10-04 22:28:28.53642 7 213 2397 \N 623 \N \N 6.0 0 2019-10-04 22:28:28.721912 2019-10-04 22:28:28.721912 7 213 2398 \N 623 \N 1194 1.0 1 2019-10-04 22:28:50.94355 2019-10-04 22:28:50.94355 0 \N 2399 \N 433 \N 1195 1.0 1 2019-10-04 23:35:26.981885 2019-10-04 23:35:26.981885 0 \N 2400 \N 316 \N 1196 1.0 1 2019-10-04 23:46:59.672283 2019-10-04 23:46:59.672283 0 \N 2401 \N 509 \N 1197 1.0 1 2019-10-04 23:49:26.762352 2019-10-04 23:49:26.762352 0 \N 2402 \N 669 \N 1197 1.0 1 2019-10-04 23:49:26.784177 2019-10-04 23:49:26.784177 0 \N 2403 \N 410 \N 1197 1.0 1 2019-10-04 23:49:26.806179 2019-10-04 23:49:26.806179 0 \N 2404 \N 606 \N 1197 1.0 1 2019-10-04 23:49:26.828279 2019-10-04 23:49:26.828279 0 \N 2405 \N 9 \N 1198 1.0 1 2019-10-05 00:52:09.497605 2019-10-05 00:52:09.497605 0 \N 2406 \N 705 \N 1199 1.0 1 2019-10-05 01:55:26.062609 2019-10-05 01:55:26.062609 0 \N 2407 \N 724 144 \N 5.0 0 2019-10-05 17:37:06.688888 2019-10-05 17:37:06.688888 1 \N 2408 \N 725 144 \N 1.0 0 2019-10-05 17:37:06.711634 2019-10-05 17:37:06.711634 1 \N 2409 \N 726 144 \N 1.0 0 2019-10-05 17:37:06.731749 2019-10-05 17:37:06.731749 1 \N 2410 \N 727 144 \N 1.0 0 2019-10-05 17:37:06.752114 2019-10-05 17:37:06.752114 1 \N 2411 \N 608 \N \N 3.0 0 2019-10-05 19:05:11.999305 2019-10-05 19:05:11.999305 7 214 2412 \N 695 \N \N 6.0 0 2019-10-05 19:05:19.881249 2019-10-05 19:05:19.881249 7 215 2413 \N 676 \N \N 6.0 0 2019-10-05 19:05:31.349275 2019-10-05 19:05:31.349275 7 220 2414 \N 715 \N \N 6.0 0 2019-10-05 19:05:31.368538 2019-10-05 19:05:31.368538 7 220 2415 \N 728 145 \N 2.0 0 2019-10-05 19:15:22.062441 2019-10-05 19:15:22.062441 1 \N 2416 \N 686 \N 1200 1.0 1 2019-10-05 20:43:50.073259 2019-10-05 20:43:50.073259 0 \N 2417 \N 597 \N \N 2.0 0 2019-10-05 21:04:51.633834 2019-10-05 21:04:51.633834 7 221 2418 \N 622 \N \N 2.0 0 2019-10-05 21:04:51.651611 2019-10-05 21:04:51.651611 7 221 2419 \N 552 \N \N 1.0 0 2019-10-05 21:04:51.672006 2019-10-05 21:04:51.672006 7 221 2420 \N 504 \N \N 1.0 0 2019-10-05 21:04:57.833844 2019-10-05 21:04:57.833844 7 219 2421 \N 223 \N \N 3.0 0 2019-10-05 21:05:08.88154 2019-10-05 21:05:08.88154 7 217 2422 \N 109 \N \N 3.0 0 2019-10-05 21:05:08.901624 2019-10-05 21:05:08.901624 7 217 2423 \N 92 \N \N 2.0 0 2019-10-05 21:05:08.919176 2019-10-05 21:05:08.919176 7 217 2424 \N 145 \N \N 1.0 0 2019-10-05 21:05:08.935744 2019-10-05 21:05:08.935744 7 217 2425 \N 435 \N \N 2.0 0 2019-10-05 21:05:08.951651 2019-10-05 21:05:08.951651 7 217 2426 \N 427 \N \N 3.0 0 2019-10-05 21:05:08.967476 2019-10-05 21:05:08.967476 7 217 2427 \N 220 \N \N 1.0 0 2019-10-05 21:05:08.985972 2019-10-05 21:05:08.985972 7 217 2428 \N 89 \N \N 4.0 0 2019-10-05 21:05:09.005125 2019-10-05 21:05:09.005125 7 217 2429 \N 320 \N \N 4.0 0 2019-10-05 21:05:09.02079 2019-10-05 21:05:09.02079 7 217 2430 \N 153 \N \N 1.0 0 2019-10-05 21:05:09.039315 2019-10-05 21:05:09.039315 7 217 2431 \N 8 \N \N 1.0 0 2019-10-05 21:05:09.055443 2019-10-05 21:05:09.055443 7 217 2432 \N 398 \N \N 2.0 0 2019-10-05 21:05:09.071055 2019-10-05 21:05:09.071055 7 217 2433 \N 622 \N 1201 1.0 1 2019-10-05 21:09:22.043001 2019-10-05 21:09:22.043001 0 \N 2434 \N 693 \N 1202 1.0 1 2019-10-05 22:11:32.591316 2019-10-05 22:11:32.591316 0 \N 2435 \N 628 \N 1203 1.0 1 2019-10-05 22:22:02.839009 2019-10-05 22:22:02.839009 0 \N 2436 \N 124 \N 1204 1.0 1 2019-10-05 23:18:22.858448 2019-10-05 23:18:22.858448 0 \N 2437 \N 594 \N 1204 1.0 1 2019-10-05 23:18:22.880288 2019-10-05 23:18:22.880288 0 \N 2438 \N 708 \N 1205 1.0 1 2019-10-05 23:55:48.600134 2019-10-05 23:55:48.600134 0 \N 2439 \N 681 \N 1206 1.0 1 2019-10-05 23:59:00.112724 2019-10-05 23:59:00.112724 0 \N 2440 \N 729 146 \N 3.0 0 2019-10-06 00:02:28.701565 2019-10-06 00:02:28.701565 1 \N 2441 \N 730 146 \N 2.0 0 2019-10-06 00:02:28.72359 2019-10-06 00:02:28.72359 1 \N 2442 \N 729 \N 1207 1.0 1 2019-10-06 00:03:09.681363 2019-10-06 00:03:09.681363 0 \N 2443 \N 730 \N 1207 1.0 1 2019-10-06 00:03:09.706388 2019-10-06 00:03:09.706388 0 \N 2444 \N 717 \N 1208 1.0 1 2019-10-06 01:15:14.450534 2019-10-06 01:15:14.450534 0 \N 2445 \N 157 \N 1209 1.0 1 2019-10-06 16:29:35.431001 2019-10-06 16:29:35.431001 0 \N 2446 \N 678 \N 1210 1.0 1 2019-10-06 18:29:42.605973 2019-10-06 18:29:42.605973 0 \N 2447 \N 624 \N 1211 1.0 1 2019-10-07 16:15:30.30021 2019-10-07 16:15:30.30021 0 \N 2448 \N 669 \N 1211 1.0 1 2019-10-07 16:15:30.324569 2019-10-07 16:15:30.324569 0 \N 2449 \N 701 \N \N 5.0 0 2019-10-07 19:58:03.468094 2019-10-07 19:58:03.468094 7 224 2450 \N 731 147 \N 1.0 0 2019-10-07 20:18:12.532497 2019-10-07 20:18:12.532497 1 \N 2451 \N 732 147 \N 2.0 0 2019-10-07 20:18:12.555399 2019-10-07 20:18:12.555399 1 \N 2452 \N 733 147 \N 1.0 0 2019-10-07 20:18:12.576697 2019-10-07 20:18:12.576697 1 \N 2453 \N 734 147 \N 2.0 0 2019-10-07 20:18:12.59672 2019-10-07 20:18:12.59672 1 \N 2454 \N 735 147 \N 4.0 0 2019-10-07 20:18:12.617304 2019-10-07 20:18:12.617304 1 \N 2455 \N 736 147 \N 5.0 0 2019-10-07 20:18:12.637007 2019-10-07 20:18:12.637007 1 \N 2456 \N 724 \N \N 4.0 0 2019-10-07 20:19:09.092748 2019-10-07 20:19:09.092748 7 223 2457 \N 631 \N \N 4.0 0 2019-10-07 20:19:09.119385 2019-10-07 20:19:09.119385 7 223 2458 \N 699 \N \N 6.0 0 2019-10-07 20:19:09.140948 2019-10-07 20:19:09.140948 7 223 2459 \N 737 148 \N 6.0 0 2019-10-07 20:44:42.401605 2019-10-07 20:44:42.401605 1 \N 2460 \N 738 148 \N 4.0 0 2019-10-07 20:44:42.421644 2019-10-07 20:44:42.421644 1 \N 2461 \N 739 148 \N 3.0 0 2019-10-07 20:44:42.441549 2019-10-07 20:44:42.441549 1 \N 2462 \N 740 148 \N 2.0 0 2019-10-07 20:44:42.461718 2019-10-07 20:44:42.461718 1 \N 2463 \N 741 148 \N 2.0 0 2019-10-07 20:44:42.482683 2019-10-07 20:44:42.482683 1 \N 2464 \N 742 148 \N 1.0 0 2019-10-07 20:44:42.502516 2019-10-07 20:44:42.502516 1 \N 2465 \N 743 148 \N 2.0 0 2019-10-07 20:44:42.524737 2019-10-07 20:44:42.524737 1 \N 2466 \N 744 148 \N 1.0 0 2019-10-07 20:44:42.546322 2019-10-07 20:44:42.546322 1 \N 2467 \N 745 148 \N 1.0 0 2019-10-07 20:44:42.56625 2019-10-07 20:44:42.56625 1 \N 2468 \N 746 148 \N 1.0 0 2019-10-07 20:44:42.586056 2019-10-07 20:44:42.586056 1 \N 2469 \N 747 148 \N 1.0 0 2019-10-07 20:44:42.605768 2019-10-07 20:44:42.605768 1 \N 2470 \N 748 148 \N 1.0 0 2019-10-07 20:44:42.625509 2019-10-07 20:44:42.625509 1 \N 2471 \N 652 \N 1212 1.0 1 2019-10-07 23:10:52.436 2019-10-07 23:10:52.436 0 \N 2472 \N 749 149 \N 6.0 0 2019-10-08 06:01:51.721369 2019-10-08 06:01:51.721369 1 \N 2473 \N 204 \N \N 2.0 0 2019-10-08 06:08:01.211185 2019-10-08 06:08:01.211185 7 218 2474 \N 676 \N \N 6.0 0 2019-10-08 06:08:12.718287 2019-10-08 06:08:12.718287 7 226 2475 \N 668 \N 1213 1.0 1 2019-10-08 22:18:33.519099 2019-10-08 22:18:33.519099 0 \N 2476 \N 369 \N 1213 1.0 1 2019-10-08 22:18:33.544102 2019-10-08 22:18:33.544102 0 \N 2477 \N 369 \N 1213 1.0 0 2019-10-08 22:23:22.347468 2019-10-08 22:23:22.347468 3 \N 2478 \N 668 \N 1213 1.0 0 2019-10-08 22:23:22.366496 2019-10-08 22:23:22.366496 3 \N 2479 \N 369 \N 1214 1.0 1 2019-10-08 22:25:26.807647 2019-10-08 22:25:26.807647 0 \N 2480 \N 668 \N 1214 1.0 1 2019-10-08 22:25:26.828486 2019-10-08 22:25:26.828486 0 \N 2481 \N 615 \N 1215 1.0 1 2019-10-08 23:16:18.06484 2019-10-08 23:16:18.06484 0 \N 2482 \N 633 \N \N 6.0 0 2019-10-09 19:59:47.521316 2019-10-09 19:59:47.521316 7 227 2483 \N 633 \N 1216 1.0 1 2019-10-09 20:00:21.004521 2019-10-09 20:00:21.004521 0 \N 2484 \N 476 \N 1216 1.0 1 2019-10-09 20:00:21.032031 2019-10-09 20:00:21.032031 0 \N 2485 \N 629 \N 1217 1.0 1 2019-10-09 20:22:41.064453 2019-10-09 20:22:41.064453 0 \N 2486 \N 652 \N 1218 1.0 1 2019-10-09 20:43:04.708834 2019-10-09 20:43:04.708834 0 \N 2487 \N 270 \N 1219 1.0 1 2019-10-10 16:37:04.898389 2019-10-10 16:37:04.898389 0 \N 2488 \N 670 \N \N 4.0 0 2019-10-10 18:42:44.339401 2019-10-10 18:42:44.339401 7 228 2489 \N 722 \N \N 1.0 0 2019-10-10 18:42:51.695428 2019-10-10 18:42:51.695428 7 225 2490 \N 670 \N 1220 1.0 1 2019-10-10 18:43:29.317056 2019-10-10 18:43:29.317056 0 \N 2491 \N 724 \N 1220 1.0 1 2019-10-10 18:43:29.3375 2019-10-10 18:43:29.3375 0 \N 2492 \N 750 150 \N 6.0 0 2019-10-10 21:27:53.178388 2019-10-10 21:27:53.178388 1 \N 2493 \N 751 150 \N 6.0 0 2019-10-10 21:27:53.19827 2019-10-10 21:27:53.19827 1 \N 2494 \N 752 150 \N 6.0 0 2019-10-10 21:27:53.216959 2019-10-10 21:27:53.216959 1 \N 2495 \N 753 150 \N 6.0 0 2019-10-10 21:27:53.235748 2019-10-10 21:27:53.235748 1 \N 2496 \N 754 150 \N 6.0 0 2019-10-10 21:27:53.257285 2019-10-10 21:27:53.257285 1 \N 2497 \N 755 150 \N 6.0 0 2019-10-10 21:27:53.276278 2019-10-10 21:27:53.276278 1 \N 2498 \N 693 \N 1221 1.0 1 2019-10-10 23:23:58.801969 2019-10-10 23:23:58.801969 0 \N 2499 \N 526 \N 1222 1.0 1 2019-10-11 00:34:14.780128 2019-10-11 00:34:14.780128 0 \N 2500 \N 752 \N 1223 1.0 1 2019-10-11 01:57:13.127025 2019-10-11 01:57:13.127025 0 \N 2501 \N 759 151 \N 6.0 0 2019-10-11 03:05:38.75483 2019-10-11 03:05:38.75483 1 \N 2502 \N 760 151 \N 6.0 0 2019-10-11 03:05:38.782298 2019-10-11 03:05:38.782298 1 \N 2503 \N 756 151 \N 6.0 0 2019-10-11 03:05:38.804401 2019-10-11 03:05:38.804401 1 \N 2504 \N 757 151 \N 12.0 0 2019-10-11 03:05:38.825621 2019-10-11 03:05:38.825621 1 \N 2505 \N 758 151 \N 12.0 0 2019-10-11 03:05:38.846303 2019-10-11 03:05:38.846303 1 \N 2506 \N 757 \N \N 6.0 0 2019-10-11 03:10:08.074544 2019-10-11 03:10:08.074544 7 231 2507 \N 758 \N \N 6.0 0 2019-10-11 03:10:08.093853 2019-10-11 03:10:08.093853 7 231 2508 \N 758 \N \N 6.0 0 2019-10-11 03:10:41.00737 2019-10-11 03:10:41.00737 7 230 2509 \N 760 \N \N 6.0 0 2019-10-11 03:10:41.025902 2019-10-11 03:10:41.025902 7 230 2510 \N 754 \N \N 6.0 0 2019-10-11 03:10:50.337592 2019-10-11 03:10:50.337592 7 229 2511 \N 761 152 \N 12.0 0 2019-10-11 05:27:03.482732 2019-10-11 05:27:03.482732 1 \N 2512 \N 762 152 \N 6.0 0 2019-10-11 05:27:03.503927 2019-10-11 05:27:03.503927 1 \N 2513 \N 763 152 \N 6.0 0 2019-10-11 05:27:03.524498 2019-10-11 05:27:03.524498 1 \N 2514 \N 764 152 \N 6.0 0 2019-10-11 05:27:03.544181 2019-10-11 05:27:03.544181 1 \N 2515 \N 764 \N \N 6.0 0 2019-10-11 05:29:26.486919 2019-10-11 05:29:26.486919 7 232 2516 \N 763 \N \N 6.0 0 2019-10-11 05:29:26.50572 2019-10-11 05:29:26.50572 7 232 2517 \N 761 \N \N 6.0 0 2019-10-11 05:41:28.659369 2019-10-11 05:41:28.659369 7 233 2518 \N 669 \N 1224 1.0 1 2019-10-11 17:25:38.58023 2019-10-11 17:25:38.58023 0 \N 2519 \N 122 \N 1225 1.0 1 2019-10-11 17:48:17.723063 2019-10-11 17:48:17.723063 0 \N 2520 \N 476 \N 1225 1.0 1 2019-10-11 17:48:17.743982 2019-10-11 17:48:17.743982 0 \N 2521 \N 764 \N 1226 1.0 1 2019-10-11 17:56:21.833782 2019-10-11 17:56:21.833782 0 \N 2522 \N 702 \N 1227 1.0 1 2019-10-11 18:01:25.130048 2019-10-11 18:01:25.130048 0 \N 2523 \N 476 \N 1227 1.0 1 2019-10-11 18:01:25.151641 2019-10-11 18:01:25.151641 0 \N 2524 \N 494 \N 1228 1.0 1 2019-10-11 18:07:47.369887 2019-10-11 18:07:47.369887 0 \N 2525 \N 145 \N 1229 1.0 1 2019-10-11 18:16:34.136684 2019-10-11 18:16:34.136684 0 \N 2526 \N 765 153 \N 3.0 0 2019-10-11 19:18:09.364392 2019-10-11 19:18:09.364392 1 \N 2527 \N 766 153 \N 3.0 0 2019-10-11 19:18:09.389164 2019-10-11 19:18:09.389164 1 \N 2528 \N 768 153 \N 1.0 0 2019-10-11 19:18:09.410173 2019-10-11 19:18:09.410173 1 \N 2529 \N 767 153 \N 2.0 0 2019-10-11 19:18:09.430695 2019-10-11 19:18:09.430695 1 \N 2530 \N 769 153 \N 3.0 0 2019-10-11 19:18:09.453962 2019-10-11 19:18:09.453962 1 \N 2531 \N 770 153 \N 3.0 0 2019-10-11 19:18:09.479512 2019-10-11 19:18:09.479512 1 \N 2532 \N 771 153 \N 3.0 0 2019-10-11 19:18:09.505371 2019-10-11 19:18:09.505371 1 \N 2533 \N 772 153 \N 3.0 0 2019-10-11 19:18:09.529025 2019-10-11 19:18:09.529025 1 \N 2534 \N 773 153 \N 2.0 0 2019-10-11 19:18:09.552522 2019-10-11 19:18:09.552522 1 \N 2535 \N 774 153 \N 4.0 0 2019-10-11 19:18:09.574861 2019-10-11 19:18:09.574861 1 \N 2536 \N 775 153 \N 6.0 0 2019-10-11 19:18:09.80156 2019-10-11 19:18:09.80156 1 \N 2537 \N 776 153 \N 5.0 0 2019-10-11 19:18:09.824855 2019-10-11 19:18:09.824855 1 \N 2538 \N 777 153 \N 2.0 0 2019-10-11 19:18:09.844744 2019-10-11 19:18:09.844744 1 \N 2539 \N 778 153 \N 3.0 0 2019-10-11 19:18:09.863986 2019-10-11 19:18:09.863986 1 \N 2540 \N 779 153 \N 4.0 0 2019-10-11 19:18:09.88329 2019-10-11 19:18:09.88329 1 \N 2541 \N 780 153 \N 2.0 0 2019-10-11 19:18:09.902746 2019-10-11 19:18:09.902746 1 \N 2542 \N 781 153 \N 3.0 0 2019-10-11 19:18:09.922348 2019-10-11 19:18:09.922348 1 \N 2543 \N 782 154 \N 12.0 0 2019-10-11 19:56:56.776149 2019-10-11 19:56:56.776149 1 \N 2544 \N 548 \N 1230 1.0 1 2019-10-11 20:01:43.30708 2019-10-11 20:01:43.30708 0 \N 2545 \N 782 \N \N 6.0 0 2019-10-11 21:10:25.954653 2019-10-11 21:10:25.954653 7 236 2546 \N 665 \N \N 3.0 0 2019-10-11 21:10:34.266993 2019-10-11 21:10:34.266993 7 234 2547 \N 600 \N \N 2.0 0 2019-10-11 21:10:34.287543 2019-10-11 21:10:34.287543 7 234 2548 \N 672 \N \N 2.0 0 2019-10-11 21:10:34.313748 2019-10-11 21:10:34.313748 7 234 2549 \N 620 \N \N 4.0 0 2019-10-11 21:10:34.341403 2019-10-11 21:10:34.341403 7 234 2550 \N 782 \N 1231 1.0 1 2019-10-11 21:10:53.44409 2019-10-11 21:10:53.44409 0 \N 2551 \N 783 155 \N 6.0 0 2019-10-11 21:20:32.573738 2019-10-11 21:20:32.573738 1 \N 2552 \N 784 156 \N 6.0 0 2019-10-11 21:26:24.238899 2019-10-11 21:26:24.238899 1 \N 2553 \N 786 157 \N 12.0 0 2019-10-11 22:07:47.196563 2019-10-11 22:07:47.196563 1 \N 2554 \N 786 \N \N 6.0 0 2019-10-11 22:09:07.695829 2019-10-11 22:09:07.695829 7 239 2555 \N 782 \N 1231 1.0 0 2019-10-11 22:09:23.650186 2019-10-11 22:09:23.650186 3 \N 2556 \N 786 \N 1232 1.0 1 2019-10-11 22:09:48.924184 2019-10-11 22:09:48.924184 0 \N 2557 \N 786 \N \N 6.0 0 2019-10-11 22:13:24.228154 2019-10-11 22:13:24.228154 7 240 2558 \N 782 \N \N 6.0 0 2019-10-11 22:13:34.069708 2019-10-11 22:13:34.069708 7 237 2559 \N 594 \N 1233 1.0 1 2019-10-11 22:30:57.366528 2019-10-11 22:30:57.366528 0 \N 2560 \N 701 \N 1234 1.0 1 2019-10-11 23:29:16.511177 2019-10-11 23:29:16.511177 0 \N 2561 \N 750 \N 1235 1.0 1 2019-10-12 00:13:00.06729 2019-10-12 00:13:00.06729 0 \N 2562 \N 783 \N 1235 1.0 1 2019-10-12 00:13:00.088147 2019-10-12 00:13:00.088147 0 \N 2563 \N 787 158 \N 6.0 0 2019-10-12 18:50:25.445252 2019-10-12 18:50:25.445252 1 \N 2564 \N 764 \N \N 6.0 0 2019-10-12 18:53:19.469078 2019-10-12 18:53:19.469078 7 241 2565 \N 196 \N 1236 1.0 1 2019-10-12 19:38:38.345144 2019-10-12 19:38:38.345144 0 \N 2566 \N 788 159 \N 12.0 0 2019-10-12 20:17:07.240082 2019-10-12 20:17:07.240082 1 \N 2567 \N 789 159 \N 12.0 0 2019-10-12 20:17:07.260481 2019-10-12 20:17:07.260481 1 \N 2568 \N 790 159 \N 12.0 0 2019-10-12 20:17:07.280705 2019-10-12 20:17:07.280705 1 \N 2569 \N 791 160 \N 12.0 0 2019-10-12 20:34:48.966596 2019-10-12 20:34:48.966596 1 \N 2570 \N 792 160 \N 6.0 0 2019-10-12 20:34:48.987202 2019-10-12 20:34:48.987202 1 \N 2571 \N 793 160 \N 6.0 0 2019-10-12 20:34:49.00772 2019-10-12 20:34:49.00772 1 \N 2572 \N 789 \N \N 6.0 0 2019-10-12 20:45:51.106032 2019-10-12 20:45:51.106032 7 242 2573 \N 788 \N \N 6.0 0 2019-10-12 20:45:51.125725 2019-10-12 20:45:51.125725 7 242 2574 \N 791 \N \N 6.0 0 2019-10-12 21:09:02.567466 2019-10-12 21:09:02.567466 7 243 2575 \N 790 \N \N 6.0 0 2019-10-12 21:09:02.602432 2019-10-12 21:09:02.602432 7 243 2576 \N 254 \N 1237 1.0 1 2019-10-12 21:40:32.449604 2019-10-12 21:40:32.449604 0 \N 2577 \N 761 \N 1238 1.0 1 2019-10-12 22:04:43.782358 2019-10-12 22:04:43.782358 0 \N 2578 \N 585 \N 1239 1.0 1 2019-10-12 23:02:30.031399 2019-10-12 23:02:30.031399 0 \N 2579 \N 679 \N 1240 1.0 1 2019-10-13 02:11:10.883555 2019-10-13 02:11:10.883555 0 \N 2580 \N 794 161 \N 6.0 0 2019-10-13 16:52:29.851701 2019-10-13 16:52:29.851701 1 \N 2581 \N 795 161 \N 6.0 0 2019-10-13 16:52:29.874462 2019-10-13 16:52:29.874462 1 \N 2582 \N 796 161 \N 12.0 0 2019-10-13 16:52:29.895459 2019-10-13 16:52:29.895459 1 \N 2583 \N 797 161 \N 6.0 0 2019-10-13 16:52:29.91491 2019-10-13 16:52:29.91491 1 \N 2584 \N 798 161 \N 6.0 0 2019-10-13 16:52:29.93569 2019-10-13 16:52:29.93569 1 \N 2585 \N 60 \N 1241 1.0 1 2019-10-14 18:31:58.71487 2019-10-14 18:31:58.71487 0 \N 2586 \N 788 \N 1242 1.0 1 2019-10-14 18:47:21.050593 2019-10-14 18:47:21.050593 0 \N 2587 \N 523 \N 1242 1.0 1 2019-10-14 18:47:21.079885 2019-10-14 18:47:21.079885 0 \N 2588 \N 799 162 \N 6.0 0 2019-10-14 19:06:56.107778 2019-10-14 19:06:56.107778 1 \N 2589 \N 800 162 \N 6.0 0 2019-10-14 19:06:56.129116 2019-10-14 19:06:56.129116 1 \N 2590 \N 801 162 \N 1.0 0 2019-10-14 19:06:56.153541 2019-10-14 19:06:56.153541 1 \N 2591 \N 797 \N \N 6.0 0 2019-10-14 19:11:18.189774 2019-10-14 19:11:18.189774 7 244 2592 \N 796 \N \N 6.0 0 2019-10-14 19:11:18.210568 2019-10-14 19:11:18.210568 7 244 2593 \N 798 \N \N 6.0 0 2019-10-14 19:11:18.231873 2019-10-14 19:11:18.231873 7 244 2594 \N 795 \N \N 6.0 0 2019-10-14 19:11:18.253474 2019-10-14 19:11:18.253474 7 244 2595 \N 760 \N \N 6.0 0 2019-10-14 19:11:25.817917 2019-10-14 19:11:25.817917 7 246 2596 \N 796 \N \N 6.0 0 2019-10-14 19:14:00.54543 2019-10-14 19:14:00.54543 7 245 2597 \N 800 \N \N 6.0 0 2019-10-14 19:17:17.34219 2019-10-14 19:17:17.34219 7 247 2598 \N 802 163 \N 6.0 0 2019-10-14 19:20:32.851885 2019-10-14 19:20:32.851885 1 \N 2599 \N 803 163 \N 6.0 0 2019-10-14 19:20:32.877029 2019-10-14 19:20:32.877029 1 \N 2600 \N 804 163 \N 6.0 0 2019-10-14 19:20:32.900683 2019-10-14 19:20:32.900683 1 \N 2601 \N 805 164 \N 6.0 0 2019-10-14 19:36:48.869481 2019-10-14 19:36:48.869481 1 \N 2602 \N 806 164 \N 6.0 0 2019-10-14 19:36:48.905464 2019-10-14 19:36:48.905464 1 \N 2603 \N 722 \N 1243 1.0 1 2019-10-14 20:47:29.856335 2019-10-14 20:47:29.856335 0 \N 2604 \N 786 \N 1244 1.0 1 2019-10-14 23:49:29.274184 2019-10-14 23:49:29.274184 0 \N 2605 \N 807 165 \N 6.0 0 2019-10-15 05:30:41.232278 2019-10-15 05:30:41.232278 1 \N 2606 \N 790 \N 1245 1.0 1 2019-10-15 16:52:20.500467 2019-10-15 16:52:20.500467 0 \N 2607 \N 751 \N 1246 1.0 1 2019-10-15 17:34:43.857937 2019-10-15 17:34:43.857937 0 \N 2608 \N 753 \N 1247 1.0 1 2019-10-15 17:46:12.16877 2019-10-15 17:46:12.16877 0 \N 2609 \N 670 \N 1247 1.0 1 2019-10-15 17:46:12.190403 2019-10-15 17:46:12.190403 0 \N 2610 \N 669 \N 1248 1.0 1 2019-10-15 21:11:33.756436 2019-10-15 21:11:33.756436 0 \N 2611 \N 669 \N 1248 1.0 0 2019-10-15 21:12:18.011861 2019-10-15 21:12:18.011861 3 \N 2612 \N 75 \N 1249 1.0 1 2019-10-15 21:44:25.025312 2019-10-15 21:44:25.025312 0 \N 2613 \N 684 \N 1250 1.0 1 2019-10-15 23:11:25.670834 2019-10-15 23:11:25.670834 0 \N 2614 \N 623 \N 1251 1.0 1 2019-10-15 23:19:35.350834 2019-10-15 23:19:35.350834 0 \N 2615 \N 791 \N 1252 1.0 1 2019-10-16 16:44:05.135043 2019-10-16 16:44:05.135043 0 \N 2616 \N 760 \N 1253 1.0 1 2019-10-16 18:50:00.23024 2019-10-16 18:50:00.23024 0 \N 2617 \N 808 166 \N 4.0 0 2019-10-16 19:58:45.724838 2019-10-16 19:58:45.724838 1 \N 2618 \N 808 \N 1254 1.0 1 2019-10-16 20:01:29.941524 2019-10-16 20:01:29.941524 0 \N 2619 \N 788 \N 1255 1.0 1 2019-10-16 22:34:08.939182 2019-10-16 22:34:08.939182 0 \N 2620 \N 663 \N 1256 1.0 1 2019-10-17 01:11:31.762336 2019-10-17 01:11:31.762336 0 \N 2621 \N 664 \N 1256 1.0 1 2019-10-17 01:11:31.794706 2019-10-17 01:11:31.794706 0 \N 2622 \N 760 \N 1257 1.0 1 2019-10-17 17:13:21.123119 2019-10-17 17:13:21.123119 0 \N 2623 \N 790 \N 1258 1.0 1 2019-10-17 17:28:05.540239 2019-10-17 17:28:05.540239 0 \N 2624 \N 484 \N 1259 1.0 1 2019-10-17 17:31:39.545245 2019-10-17 17:31:39.545245 0 \N 2625 \N 717 \N 1259 1.0 1 2019-10-17 17:31:39.567684 2019-10-17 17:31:39.567684 0 \N 2626 \N 672 \N 1260 1.0 1 2019-10-19 17:18:55.950646 2019-10-19 17:18:55.950646 0 \N 2627 \N 810 167 \N 3.0 0 2019-10-19 18:06:56.920189 2019-10-19 18:06:56.920189 1 \N 2628 \N 809 167 \N 3.0 0 2019-10-19 18:06:56.940818 2019-10-19 18:06:56.940818 1 \N 2629 \N 782 \N \N 6.0 0 2019-10-19 18:51:52.718292 2019-10-19 18:51:52.718292 7 252 2630 \N 782 \N 1261 1.0 1 2019-10-19 18:52:39.892992 2019-10-19 18:52:39.892992 0 \N 2631 \N 715 \N 1261 1.0 1 2019-10-19 18:52:39.913257 2019-10-19 18:52:39.913257 0 \N 2632 \N 811 168 \N 1.0 0 2019-10-19 20:38:07.227238 2019-10-19 20:38:07.227238 1 \N 2633 \N 812 168 \N 1.0 0 2019-10-19 20:38:07.249052 2019-10-19 20:38:07.249052 1 \N 2634 \N 813 168 \N 1.0 0 2019-10-19 20:38:07.269695 2019-10-19 20:38:07.269695 1 \N 2635 \N 814 168 \N 1.0 0 2019-10-19 20:38:07.290364 2019-10-19 20:38:07.290364 1 \N 2636 \N 815 168 \N 1.0 0 2019-10-19 20:38:07.311611 2019-10-19 20:38:07.311611 1 \N 2637 \N 816 168 \N 1.0 0 2019-10-19 20:38:07.331285 2019-10-19 20:38:07.331285 1 \N 2638 \N 817 168 \N 1.0 0 2019-10-19 20:38:07.351204 2019-10-19 20:38:07.351204 1 \N 2639 \N 818 168 \N 1.0 0 2019-10-19 20:38:07.370573 2019-10-19 20:38:07.370573 1 \N 2640 \N 819 168 \N 1.0 0 2019-10-19 20:38:07.390088 2019-10-19 20:38:07.390088 1 \N 2641 \N 820 168 \N 1.0 0 2019-10-19 20:38:07.410702 2019-10-19 20:38:07.410702 1 \N 2642 \N 821 168 \N 1.0 0 2019-10-19 20:38:07.432916 2019-10-19 20:38:07.432916 1 \N 2643 \N 822 168 \N 1.0 0 2019-10-19 20:38:07.452224 2019-10-19 20:38:07.452224 1 \N 2644 \N 752 \N 1262 1.0 1 2019-10-19 21:02:15.340081 2019-10-19 21:02:15.340081 0 \N 2645 \N 710 \N 1262 1.0 1 2019-10-19 21:02:15.361554 2019-10-19 21:02:15.361554 0 \N 2646 \N 751 \N 1263 1.0 1 2019-10-19 22:06:17.260596 2019-10-19 22:06:17.260596 0 \N 2647 \N 751 \N 1263 1.0 0 2019-10-19 22:08:20.475069 2019-10-19 22:08:20.475069 3 \N 2648 \N 751 \N 1264 1.0 1 2019-10-19 22:09:47.735976 2019-10-19 22:09:47.735976 0 \N 2649 \N 652 \N 1264 1.0 1 2019-10-19 22:09:47.758426 2019-10-19 22:09:47.758426 0 \N 2650 \N 722 \N 1264 1.0 1 2019-10-19 22:09:47.780793 2019-10-19 22:09:47.780793 0 \N 2651 \N 823 169 \N 1.0 0 2019-10-19 22:56:00.610715 2019-10-19 22:56:00.610715 1 \N 2652 \N 824 169 \N 1.0 0 2019-10-19 22:56:00.633625 2019-10-19 22:56:00.633625 1 \N 2653 \N 825 169 \N 1.0 0 2019-10-19 22:56:00.653201 2019-10-19 22:56:00.653201 1 \N 2654 \N 826 169 \N 1.0 0 2019-10-19 22:56:00.673124 2019-10-19 22:56:00.673124 1 \N 2655 \N 827 169 \N 1.0 0 2019-10-19 22:56:00.694431 2019-10-19 22:56:00.694431 1 \N 2656 \N 828 169 \N 1.0 0 2019-10-19 22:56:00.71571 2019-10-19 22:56:00.71571 1 \N 2657 \N 829 169 \N 1.0 0 2019-10-19 22:56:00.742599 2019-10-19 22:56:00.742599 1 \N 2658 \N 830 169 \N 1.0 0 2019-10-19 22:56:00.766532 2019-10-19 22:56:00.766532 1 \N 2659 \N 831 169 \N 1.0 0 2019-10-19 22:56:00.792309 2019-10-19 22:56:00.792309 1 \N 2660 \N 832 169 \N 1.0 0 2019-10-19 22:56:00.818186 2019-10-19 22:56:00.818186 1 \N 2661 \N 717 \N 1265 1.0 1 2019-10-19 23:16:12.24558 2019-10-19 23:16:12.24558 0 \N 2662 \N 366 \N 1266 1.0 1 2019-10-19 23:27:06.90599 2019-10-19 23:27:06.90599 0 \N 2663 \N 273 \N 1267 1.0 1 2019-10-19 23:46:38.905293 2019-10-19 23:46:38.905293 0 \N 2664 \N 833 170 \N 1.0 0 2019-10-20 00:22:09.527773 2019-10-20 00:22:09.527773 1 \N 2665 \N 834 170 \N 1.0 0 2019-10-20 00:22:09.548089 2019-10-20 00:22:09.548089 1 \N 2666 \N 835 170 \N 1.0 0 2019-10-20 00:22:09.568701 2019-10-20 00:22:09.568701 1 \N 2667 \N 836 170 \N 1.0 0 2019-10-20 00:22:09.588784 2019-10-20 00:22:09.588784 1 \N 2668 \N 838 170 \N 1.0 0 2019-10-20 00:22:09.609139 2019-10-20 00:22:09.609139 1 \N 2669 \N 837 170 \N 1.0 0 2019-10-20 00:22:09.628977 2019-10-20 00:22:09.628977 1 \N 2670 \N 839 170 \N 1.0 0 2019-10-20 00:22:09.648539 2019-10-20 00:22:09.648539 1 \N 2671 \N 596 \N 1268 1.0 1 2019-10-20 00:53:54.800188 2019-10-20 00:53:54.800188 0 \N 2672 \N 668 \N 1269 1.0 1 2019-10-20 00:58:22.701387 2019-10-20 00:58:22.701387 0 \N 2673 \N 750 \N 1270 1.0 1 2019-10-20 01:18:53.098557 2019-10-20 01:18:53.098557 0 \N 2674 \N 840 171 \N 6.0 0 2019-10-20 16:42:59.763256 2019-10-20 16:42:59.763256 1 \N 2675 \N 840 \N 1271 1.0 1 2019-10-20 16:53:39.767735 2019-10-20 16:53:39.767735 0 \N 2676 \N 695 \N 1272 1.0 1 2019-10-20 17:05:11.880395 2019-10-20 17:05:11.880395 0 \N 2677 \N 388 \N 1273 2.0 1 2019-10-21 16:11:54.708943 2019-10-21 16:11:54.708943 0 \N 2678 \N 388 \N 1273 2.0 0 2019-10-21 16:12:36.158425 2019-10-21 16:12:36.158425 3 \N 2679 \N 388 \N 1274 2.0 1 2019-10-21 16:12:59.109697 2019-10-21 16:12:59.109697 0 \N 2680 \N 795 \N 1275 1.0 1 2019-10-21 16:18:11.049126 2019-10-21 16:18:11.049126 0 \N 2681 \N 841 172 \N 2.0 0 2019-10-21 17:36:27.035645 2019-10-21 17:36:27.035645 1 \N 2682 \N 842 172 \N 1.0 0 2019-10-21 17:36:27.058934 2019-10-21 17:36:27.058934 1 \N 2683 \N 843 172 \N 2.0 0 2019-10-21 17:36:27.079551 2019-10-21 17:36:27.079551 1 \N 2684 \N 844 172 \N 1.0 0 2019-10-21 17:36:27.099506 2019-10-21 17:36:27.099506 1 \N 2685 \N 845 172 \N 2.0 0 2019-10-21 17:36:27.119362 2019-10-21 17:36:27.119362 1 \N 2686 \N 846 172 \N 1.0 0 2019-10-21 17:36:27.142134 2019-10-21 17:36:27.142134 1 \N 2687 \N 847 172 \N 1.0 0 2019-10-21 17:36:27.162302 2019-10-21 17:36:27.162302 1 \N 2688 \N 848 172 \N 1.0 0 2019-10-21 17:36:27.182456 2019-10-21 17:36:27.182456 1 \N 2689 \N 850 172 \N 1.0 0 2019-10-21 17:36:27.202946 2019-10-21 17:36:27.202946 1 \N 2690 \N 851 172 \N 2.0 0 2019-10-21 17:36:27.222958 2019-10-21 17:36:27.222958 1 \N 2691 \N 849 172 \N 2.0 0 2019-10-21 17:36:27.243736 2019-10-21 17:36:27.243736 1 \N 2692 \N 852 172 \N 1.0 0 2019-10-21 17:36:27.264317 2019-10-21 17:36:27.264317 1 \N 2693 \N 853 172 \N 1.0 0 2019-10-21 17:36:27.284143 2019-10-21 17:36:27.284143 1 \N 2694 \N 476 \N 1276 1.0 1 2019-10-21 17:39:18.970636 2019-10-21 17:39:18.970636 0 \N 2695 \N 621 \N 1276 1.0 1 2019-10-21 17:39:18.993645 2019-10-21 17:39:18.993645 0 \N 2696 \N 499 \N \N 4.0 0 2019-10-21 18:24:11.013157 2019-10-21 18:24:11.013157 7 238 2697 \N 786 \N 1277 2.0 1 2019-10-21 20:21:29.464207 2019-10-21 20:21:29.464207 0 \N 2698 \N 843 \N \N 1.0 0 2019-10-21 20:54:54.822621 2019-10-21 20:54:54.822621 7 253 2699 \N 850 \N \N 1.0 0 2019-10-21 20:54:54.843136 2019-10-21 20:54:54.843136 7 253 2700 \N 847 \N \N 1.0 0 2019-10-21 20:54:54.864411 2019-10-21 20:54:54.864411 7 253 2701 \N 841 \N \N 1.0 0 2019-10-21 20:54:54.892018 2019-10-21 20:54:54.892018 7 253 2702 \N 845 \N \N 1.0 0 2019-10-21 20:54:54.917884 2019-10-21 20:54:54.917884 7 253 2703 \N 851 \N \N 1.0 0 2019-10-21 20:54:54.939896 2019-10-21 20:54:54.939896 7 253 2704 \N 849 \N \N 1.0 0 2019-10-21 20:54:54.961334 2019-10-21 20:54:54.961334 7 253 2705 \N 722 \N \N 1.0 0 2019-10-21 20:54:54.979756 2019-10-21 20:54:54.979756 7 253 2706 \N 687 \N \N 6.0 0 2019-10-21 20:55:22.38885 2019-10-21 20:55:22.38885 7 251 2707 \N 661 \N \N 5.0 0 2019-10-21 20:55:22.407991 2019-10-21 20:55:22.407991 7 251 2708 \N 319 \N \N 3.0 0 2019-10-21 20:55:22.423208 2019-10-21 20:55:22.423208 7 251 2709 \N 668 \N 1278 1.0 1 2019-10-21 21:34:19.336309 2019-10-21 21:34:19.336309 0 \N 2710 \N 632 \N 1279 1.0 1 2019-10-21 21:59:49.047586 2019-10-21 21:59:49.047586 0 \N 2711 \N 606 \N 1279 1.0 1 2019-10-21 21:59:49.080282 2019-10-21 21:59:49.080282 0 \N 2712 \N 594 \N 1280 1.0 1 2019-10-21 23:16:32.274576 2019-10-21 23:16:32.274576 0 \N 2713 \N 782 \N 1281 1.0 1 2019-10-21 23:56:48.615937 2019-10-21 23:56:48.615937 0 \N 2714 \N 172 \N \N 2.0 0 2019-10-22 00:30:52.158773 2019-10-22 00:30:52.158773 7 255 2715 \N 171 \N \N 3.0 0 2019-10-22 00:30:52.179056 2019-10-22 00:30:52.179056 7 255 2716 \N 172 \N \N 2.0 0 2019-10-22 00:30:52.892803 2019-10-22 00:30:52.892803 7 255 2717 \N 171 \N \N 3.0 0 2019-10-22 00:30:52.926231 2019-10-22 00:30:52.926231 7 255 2718 \N 680 \N \N 3.0 0 2019-10-22 01:35:57.072611 2019-10-22 01:35:57.072611 7 256 2719 \N 606 \N 1282 1.0 1 2019-10-22 21:57:18.756171 2019-10-22 21:57:18.756171 0 \N 2720 \N 750 \N 1283 1.0 1 2019-10-22 23:04:28.710933 2019-10-22 23:04:28.710933 0 \N 2721 \N 760 \N 1284 1.0 1 2019-10-22 23:41:08.249171 2019-10-22 23:41:08.249171 0 \N 2722 \N 760 \N 1284 1.0 0 2019-10-22 23:44:28.641747 2019-10-22 23:44:28.641747 9 \N 2723 \N 760 \N 1285 1.0 1 2019-10-22 23:45:23.063304 2019-10-22 23:45:23.063304 0 \N 2724 \N 787 \N 1286 1.0 1 2019-10-23 00:26:10.127722 2019-10-23 00:26:10.127722 0 \N 2725 \N 796 \N 1287 1.0 1 2019-10-23 17:40:04.546347 2019-10-23 17:40:04.546347 0 \N 2726 \N 853 \N 1288 1.0 1 2019-10-23 17:40:58.990586 2019-10-23 17:40:58.990586 0 \N 2727 \N 755 \N 1289 1.0 1 2019-10-23 18:49:05.50807 2019-10-23 18:49:05.50807 0 \N 2728 \N 273 \N 1290 1.0 1 2019-10-23 23:15:34.616608 2019-10-23 23:15:34.616608 0 \N 2729 \N 27 \N 1291 1.0 1 2019-10-23 23:33:15.970808 2019-10-23 23:33:15.970808 0 \N 2730 \N 805 \N 1292 1.0 1 2019-10-23 23:37:04.590947 2019-10-23 23:37:04.590947 0 \N 2731 \N 800 \N \N 1.0 0 2019-10-23 23:52:50.84545 2019-10-23 23:52:50.84545 7 257 2732 \N 367 \N 1293 1.0 1 2019-10-24 00:22:29.318871 2019-10-24 00:22:29.318871 0 \N 2733 \N 751 \N 1294 1.0 1 2019-10-24 18:17:12.934637 2019-10-24 18:17:12.934637 0 \N 2734 \N 623 \N 1295 1.0 1 2019-10-24 19:34:15.060279 2019-10-24 19:34:15.060279 0 \N 2735 \N 799 \N 1296 1.0 1 2019-10-24 20:29:35.43801 2019-10-24 20:29:35.43801 0 \N 2736 \N 750 \N 1296 1.0 1 2019-10-24 20:29:35.464257 2019-10-24 20:29:35.464257 0 \N 2737 \N 749 \N 1296 1.0 1 2019-10-24 20:29:35.485378 2019-10-24 20:29:35.485378 0 \N 2738 \N 664 \N 1297 1.0 1 2019-10-25 00:14:52.465899 2019-10-25 00:14:52.465899 0 \N 2739 \N 189 \N \N 4.0 0 2019-10-25 16:42:36.091746 2019-10-25 16:42:36.091746 7 259 2740 \N 300 \N \N 2.0 0 2019-10-25 16:42:43.372373 2019-10-25 16:42:43.372373 7 258 2741 \N 286 \N \N 2.0 0 2019-10-25 16:42:43.392965 2019-10-25 16:42:43.392965 7 258 2742 \N 559 \N \N 5.0 0 2019-10-25 16:42:43.416445 2019-10-25 16:42:43.416445 7 258 2743 \N 283 \N \N 3.0 0 2019-10-25 16:42:52.177454 2019-10-25 16:42:52.177454 7 254 2744 \N 539 \N \N 1.0 0 2019-10-25 16:42:57.749209 2019-10-25 16:42:57.749209 7 248 2745 \N 854 173 \N 1.0 0 2019-10-25 17:24:00.862975 2019-10-25 17:24:00.862975 1 \N 2746 \N 855 173 \N 3.0 0 2019-10-25 17:24:00.889843 2019-10-25 17:24:00.889843 1 \N 2747 \N 856 173 \N 1.0 0 2019-10-25 17:24:00.915625 2019-10-25 17:24:00.915625 1 \N 2748 \N 857 173 \N 6.0 0 2019-10-25 17:24:00.943138 2019-10-25 17:24:00.943138 1 \N 2749 \N 858 173 \N 2.0 0 2019-10-25 17:24:00.968534 2019-10-25 17:24:00.968534 1 \N 2750 \N 859 173 \N 4.0 0 2019-10-25 17:24:00.99656 2019-10-25 17:24:00.99656 1 \N 2751 \N 860 173 \N 1.0 0 2019-10-25 17:24:01.028336 2019-10-25 17:24:01.028336 1 \N 2752 \N 861 173 \N 2.0 0 2019-10-25 17:24:01.053185 2019-10-25 17:24:01.053185 1 \N 2753 \N 862 173 \N 3.0 0 2019-10-25 17:24:01.078407 2019-10-25 17:24:01.078407 1 \N 2754 \N 863 173 \N 1.0 0 2019-10-25 17:24:01.103674 2019-10-25 17:24:01.103674 1 \N 2755 \N 755 \N 1298 1.0 1 2019-10-25 18:22:41.437913 2019-10-25 18:22:41.437913 0 \N 2756 \N 759 \N 1299 1.0 1 2019-10-25 21:20:24.511307 2019-10-25 21:20:24.511307 0 \N 2757 \N 724 \N 1300 1.0 1 2019-10-25 21:22:28.858906 2019-10-25 21:22:28.858906 0 \N 2758 \N 663 \N 1301 1.0 1 2019-10-25 21:29:19.423349 2019-10-25 21:29:19.423349 0 \N 2759 \N 662 \N \N 3.0 0 2019-10-25 21:38:48.146723 2019-10-25 21:38:48.146723 7 260 2760 \N 662 \N 1302 1.0 1 2019-10-25 21:40:04.887012 2019-10-25 21:40:04.887012 0 \N 2761 \N 841 \N 1303 1.0 1 2019-10-25 21:46:44.1093 2019-10-25 21:46:44.1093 0 \N 2762 \N 844 \N 1304 1.0 1 2019-10-25 21:50:32.220552 2019-10-25 21:50:32.220552 0 \N 2763 \N 714 \N 1305 1.0 1 2019-10-26 00:29:09.350281 2019-10-26 00:29:09.350281 0 \N 2764 \N 581 \N 1306 1.0 1 2019-10-26 01:02:15.982676 2019-10-26 01:02:15.982676 0 \N 2765 \N 724 \N 1300 1.0 0 2019-10-26 01:37:44.567689 2019-10-26 01:37:44.567689 3 \N 2766 \N 724 \N 1307 1.0 1 2019-10-26 01:37:59.97592 2019-10-26 01:37:59.97592 0 \N 2767 \N 516 \N 1308 1.0 1 2019-10-26 19:24:26.137256 2019-10-26 19:24:26.137256 0 \N 2768 \N 789 \N 1309 1.0 1 2019-10-26 22:21:57.460455 2019-10-26 22:21:57.460455 0 \N 2769 \N 802 \N 1310 1.0 1 2019-10-26 23:03:31.65467 2019-10-26 23:03:31.65467 0 \N 2770 \N 805 \N 1311 1.0 1 2019-10-27 00:36:10.777816 2019-10-27 00:36:10.777816 0 \N 2771 \N 760 \N 1311 1.0 1 2019-10-27 00:36:10.804854 2019-10-27 00:36:10.804854 0 \N 2772 \N 851 \N 1312 1.0 1 2019-10-27 00:38:28.329898 2019-10-27 00:38:28.329898 0 \N 2773 \N 369 \N 1313 1.0 1 2019-10-27 19:40:16.486531 2019-10-27 19:40:16.486531 0 \N 2774 \N 682 \N 1314 1.0 1 2019-10-27 19:44:28.732021 2019-10-27 19:44:28.732021 0 \N 2775 \N 847 \N 1315 1.0 1 2019-10-27 19:47:36.626731 2019-10-27 19:47:36.626731 0 \N 2776 \N 367 \N 1315 2.0 1 2019-10-27 19:47:36.649642 2019-10-27 19:47:36.649642 0 \N 2777 \N 762 \N 1316 1.0 1 2019-10-27 20:07:41.69455 2019-10-27 20:07:41.69455 0 \N 2778 \N 693 \N 1317 1.0 1 2019-10-27 20:39:30.43958 2019-10-27 20:39:30.43958 0 \N 2779 \N 864 174 \N 5.0 0 2019-10-28 18:23:52.039848 2019-10-28 18:23:52.039848 1 \N 2780 \N 864 \N \N 1.0 0 2019-10-28 18:25:54.332824 2019-10-28 18:25:54.332824 7 262 2781 \N 864 \N \N 1.0 0 2019-10-28 18:26:20.202958 2019-10-28 18:26:20.202958 7 261 2782 \N 864 \N \N 3.0 0 2019-10-28 18:27:05.546119 2019-10-28 18:27:05.546119 7 263 2783 \N 273 \N 1318 1.0 1 2019-10-28 18:47:18.042995 2019-10-28 18:47:18.042995 0 \N 2784 \N 693 \N 1319 1.0 1 2019-10-28 20:44:53.804104 2019-10-28 20:44:53.804104 0 \N 2785 \N 759 \N 1319 1.0 1 2019-10-28 20:44:53.830162 2019-10-28 20:44:53.830162 0 \N 2786 \N 796 \N 1320 1.0 1 2019-10-28 21:01:33.618574 2019-10-28 21:01:33.618574 0 \N 2787 \N 53 \N 1321 1.0 1 2019-10-28 22:39:58.492464 2019-10-28 22:39:58.492464 0 \N 2788 \N 808 \N 1254 1.0 0 2019-10-29 00:55:49.414987 2019-10-29 00:55:49.414987 9 \N 2789 \N 705 \N 1322 1.0 1 2019-10-29 00:56:42.655017 2019-10-29 00:56:42.655017 0 \N 2790 \N 830 \N 1322 1.0 1 2019-10-29 00:56:42.67483 2019-10-29 00:56:42.67483 0 \N 2791 \N 369 \N 1322 1.0 1 2019-10-29 00:56:42.69482 2019-10-29 00:56:42.69482 0 \N 2792 \N 750 \N 1323 1.0 1 2019-10-29 01:24:34.317688 2019-10-29 01:24:34.317688 0 \N 2793 \N 865 175 \N 6.0 0 2019-10-29 01:26:04.364849 2019-10-29 01:26:04.364849 1 \N 2794 \N 866 175 \N 6.0 0 2019-10-29 01:26:04.377301 2019-10-29 01:26:04.377301 1 \N 2795 \N 867 175 \N 6.0 0 2019-10-29 01:26:04.387969 2019-10-29 01:26:04.387969 1 \N 2796 \N 868 175 \N 6.0 0 2019-10-29 01:26:04.40233 2019-10-29 01:26:04.40233 1 \N 2797 \N 869 175 \N 6.0 0 2019-10-29 01:26:04.412904 2019-10-29 01:26:04.412904 1 \N 2798 \N 870 176 \N 6.0 0 2019-10-29 01:36:49.092016 2019-10-29 01:36:49.092016 1 \N 2799 \N 871 176 \N 18.0 0 2019-10-29 01:36:49.103139 2019-10-29 01:36:49.103139 1 \N 2800 \N 872 176 \N 6.0 0 2019-10-29 01:36:49.1136 2019-10-29 01:36:49.1136 1 \N 2801 \N 873 176 \N 12.0 0 2019-10-29 01:36:49.125563 2019-10-29 01:36:49.125563 1 \N 2802 \N 874 176 \N 12.0 0 2019-10-29 01:36:49.136012 2019-10-29 01:36:49.136012 1 \N 2803 \N 875 176 \N 12.0 0 2019-10-29 01:36:49.146649 2019-10-29 01:36:49.146649 1 \N 2804 \N 877 176 \N 12.0 0 2019-10-29 01:36:49.157042 2019-10-29 01:36:49.157042 1 \N 2805 \N 878 176 \N 6.0 0 2019-10-29 01:36:49.167354 2019-10-29 01:36:49.167354 1 \N 2806 \N 879 176 \N 6.0 0 2019-10-29 01:36:49.177745 2019-10-29 01:36:49.177745 1 \N 2807 \N 876 176 \N 6.0 0 2019-10-29 01:36:49.188524 2019-10-29 01:36:49.188524 1 \N 2808 \N 880 177 \N 1.0 0 2019-10-29 01:38:15.509511 2019-10-29 01:38:15.509511 1 \N 2809 \N 882 178 \N 6.0 0 2019-10-29 01:42:07.9034 2019-10-29 01:42:07.9034 1 \N 2810 \N 881 178 \N 6.0 0 2019-10-29 01:42:07.914345 2019-10-29 01:42:07.914345 1 \N 2811 \N 883 179 \N 6.0 0 2019-10-29 01:45:27.677526 2019-10-29 01:45:27.677526 1 \N 2812 \N 884 179 \N 6.0 0 2019-10-29 01:45:27.68794 2019-10-29 01:45:27.68794 1 \N 2813 \N 885 179 \N 6.0 0 2019-10-29 01:45:27.697342 2019-10-29 01:45:27.697342 1 \N 2814 \N 871 \N \N 9.0 0 2019-10-29 18:34:40.537408 2019-10-29 18:34:40.537408 7 264 2815 \N 872 \N \N 6.0 0 2019-10-29 18:34:40.560124 2019-10-29 18:34:40.560124 7 264 2816 \N 871 \N 1324 1.0 1 2019-10-29 18:36:55.558716 2019-10-29 18:36:55.558716 0 \N 2817 \N 872 \N 1324 1.0 1 2019-10-29 18:36:55.581503 2019-10-29 18:36:55.581503 0 \N 2818 \N 784 \N 1325 1.0 1 2019-10-29 19:35:42.682151 2019-10-29 19:35:42.682151 0 \N 2819 \N 664 \N 1326 1.0 1 2019-10-29 20:34:46.473255 2019-10-29 20:34:46.473255 0 \N 2820 \N 871 \N 1327 1.0 1 2019-10-29 20:57:47.339586 2019-10-29 20:57:47.339586 0 \N 2821 \N 843 \N 1328 1.0 1 2019-10-29 20:58:36.697816 2019-10-29 20:58:36.697816 0 \N 2822 \N 886 180 \N 12.0 0 2019-10-30 01:55:45.946747 2019-10-30 01:55:45.946747 1 \N 2823 \N 887 180 \N 12.0 0 2019-10-30 01:55:45.958282 2019-10-30 01:55:45.958282 1 \N 2824 \N 888 180 \N 6.0 0 2019-10-30 01:55:45.972643 2019-10-30 01:55:45.972643 1 \N 2825 \N 889 180 \N 12.0 0 2019-10-30 01:55:45.983349 2019-10-30 01:55:45.983349 1 \N 2826 \N 890 180 \N 6.0 0 2019-10-30 01:55:45.993118 2019-10-30 01:55:45.993118 1 \N 2827 \N 891 180 \N 18.0 0 2019-10-30 01:55:46.002945 2019-10-30 01:55:46.002945 1 \N 2828 \N 892 180 \N 6.0 0 2019-10-30 01:55:46.012555 2019-10-30 01:55:46.012555 1 \N 2829 \N 893 180 \N 18.0 0 2019-10-30 01:55:46.022904 2019-10-30 01:55:46.022904 1 \N 2830 \N 894 180 \N 8.0 0 2019-10-30 01:55:46.035178 2019-10-30 01:55:46.035178 1 \N 2831 \N 895 180 \N 16.0 0 2019-10-30 01:55:46.045309 2019-10-30 01:55:46.045309 1 \N 2832 \N 896 180 \N 16.0 0 2019-10-30 01:55:46.055 2019-10-30 01:55:46.055 1 \N 2833 \N 897 180 \N 16.0 0 2019-10-30 01:55:46.065161 2019-10-30 01:55:46.065161 1 \N 2834 \N 898 180 \N 8.0 0 2019-10-30 01:55:46.075057 2019-10-30 01:55:46.075057 1 \N 2835 \N 899 180 \N 6.0 0 2019-10-30 01:55:46.085309 2019-10-30 01:55:46.085309 1 \N 2836 \N 900 180 \N 6.0 0 2019-10-30 01:55:46.098254 2019-10-30 01:55:46.098254 1 \N 2837 \N 901 180 \N 6.0 0 2019-10-30 01:55:46.110085 2019-10-30 01:55:46.110085 1 \N 2838 \N 902 180 \N 6.0 0 2019-10-30 01:55:46.1202 2019-10-30 01:55:46.1202 1 \N 2839 \N 783 \N \N 6.0 0 2019-10-30 02:01:56.876938 2019-10-30 02:01:56.876938 7 269 2840 \N 875 \N \N 6.0 0 2019-10-30 02:29:31.366371 2019-10-30 02:29:31.366371 7 266 2841 \N 866 \N \N 6.0 0 2019-10-30 02:29:43.338834 2019-10-30 02:29:43.338834 7 267 2842 \N 886 \N \N 6.0 0 2019-10-30 02:30:08.515077 2019-10-30 02:30:08.515077 7 270 2843 \N 896 \N \N 4.0 0 2019-10-30 02:30:08.537675 2019-10-30 02:30:08.537675 7 270 2844 \N 899 \N \N 6.0 0 2019-10-30 02:30:08.566198 2019-10-30 02:30:08.566198 7 270 2845 \N 902 \N \N 6.0 0 2019-10-30 02:30:08.590621 2019-10-30 02:30:08.590621 7 270 2846 \N 903 181 \N 6.0 0 2019-10-30 02:35:16.69365 2019-10-30 02:35:16.69365 1 \N 2847 \N 904 181 \N 6.0 0 2019-10-30 02:35:16.70805 2019-10-30 02:35:16.70805 1 \N 2848 \N 875 \N 1329 1.0 1 2019-10-30 02:36:32.328874 2019-10-30 02:36:32.328874 0 \N 2849 \N 903 \N \N 6.0 0 2019-10-30 04:04:19.291027 2019-10-30 04:04:19.291027 7 274 2850 \N 900 \N \N 6.0 0 2019-10-30 04:04:34.777434 2019-10-30 04:04:34.777434 7 272 2851 \N 891 \N \N 9.0 0 2019-10-30 04:04:48.065145 2019-10-30 04:04:48.065145 7 271 2852 \N 875 \N \N 3.0 0 2019-10-30 04:05:05.16758 2019-10-30 04:05:05.16758 7 268 2853 \N 874 \N \N 6.0 0 2019-10-30 04:05:05.190306 2019-10-30 04:05:05.190306 7 268 2854 \N 873 \N \N 6.0 0 2019-10-30 04:05:05.212047 2019-10-30 04:05:05.212047 7 268 2855 \N 869 \N \N 6.0 0 2019-10-30 04:05:05.237649 2019-10-30 04:05:05.237649 7 268 2856 \N 898 \N \N 4.0 0 2019-10-30 04:22:44.353781 2019-10-30 04:22:44.353781 7 275 2857 \N 897 \N \N 4.0 0 2019-10-30 04:22:44.374604 2019-10-30 04:22:44.374604 7 275 2858 \N 901 \N \N 6.0 0 2019-10-30 04:22:44.394715 2019-10-30 04:22:44.394715 7 275 2859 \N 875 \N \N 3.0 0 2019-10-30 04:22:44.413255 2019-10-30 04:22:44.413255 7 275 2860 \N 761 \N 1330 1.0 1 2019-10-30 18:32:29.382353 2019-10-30 18:32:29.382353 0 \N 2861 \N 800 \N 1330 1.0 1 2019-10-30 18:32:29.407173 2019-10-30 18:32:29.407173 0 \N 2862 \N 623 \N 1331 1.0 1 2019-10-30 21:10:50.781597 2019-10-30 21:10:50.781597 0 \N 2863 \N 788 \N 1332 1.0 1 2019-10-31 01:27:27.248382 2019-10-31 01:27:27.248382 0 \N 2864 \N 750 \N 1333 1.0 1 2019-10-31 02:15:51.058273 2019-10-31 02:15:51.058273 0 \N 2865 \N 849 \N 1334 1.0 1 2019-10-31 02:18:09.171057 2019-10-31 02:18:09.171057 0 \N 2866 \N 904 \N \N 6.0 0 2019-10-31 16:40:42.268219 2019-10-31 16:40:42.268219 7 273 2867 \N 791 \N 1335 1.0 1 2019-10-31 20:07:55.344218 2019-10-31 20:07:55.344218 0 \N 2868 \N 699 \N 1336 1.0 1 2019-10-31 21:26:33.43068 2019-10-31 21:26:33.43068 0 \N 2869 \N 886 \N 1336 1.0 1 2019-10-31 21:26:33.455915 2019-10-31 21:26:33.455915 0 \N 2870 \N 850 \N 1337 1.0 1 2019-10-31 21:42:37.062851 2019-10-31 21:42:37.062851 0 \N 2871 \N 845 \N 1338 1.0 1 2019-10-31 21:45:19.25846 2019-10-31 21:45:19.25846 0 \N 2872 \N 845 \N 1339 1.0 1 2019-10-31 21:46:32.511806 2019-10-31 21:46:32.511806 0 \N 2873 \N 869 \N 1340 1.0 1 2019-10-31 22:28:35.669009 2019-10-31 22:28:35.669009 0 \N 2874 \N 369 \N 1341 1.0 1 2019-10-31 22:34:56.753075 2019-10-31 22:34:56.753075 0 \N 2875 \N 795 \N 1342 1.0 1 2019-10-31 22:51:20.1443 2019-10-31 22:51:20.1443 0 \N 2876 \N 717 \N 1343 1.0 1 2019-10-31 23:35:57.55609 2019-10-31 23:35:57.55609 0 \N 2877 \N 593 \N 1344 1.0 1 2019-11-01 01:24:52.355101 2019-11-01 01:24:52.355101 0 \N 2878 \N 623 \N 1344 1.0 1 2019-11-01 01:24:52.385696 2019-11-01 01:24:52.385696 0 \N 2879 \N 594 \N 1345 1.0 1 2019-11-01 19:00:37.210623 2019-11-01 19:00:37.210623 0 \N 2880 \N 806 \N 1345 1.0 1 2019-11-01 19:00:37.234334 2019-11-01 19:00:37.234334 0 \N 2881 \N 58 \N 1346 1.0 1 2019-11-01 20:34:14.311373 2019-11-01 20:34:14.311373 0 \N 2882 \N 820 \N 1346 1.0 1 2019-11-01 20:34:14.334312 2019-11-01 20:34:14.334312 0 \N 2883 \N 875 \N 1347 1.0 1 2019-11-02 00:43:44.954806 2019-11-02 00:43:44.954806 0 \N 2884 \N 806 \N 1347 1.0 1 2019-11-02 00:43:44.978065 2019-11-02 00:43:44.978065 0 \N 2885 \N 149 \N 1348 1.0 1 2019-11-02 00:53:36.037264 2019-11-02 00:53:36.037264 0 \N 2886 \N 762 \N 1349 1.0 1 2019-11-02 01:10:38.41585 2019-11-02 01:10:38.41585 0 \N 2887 \N 718 \N 1350 1.0 1 2019-11-02 01:34:11.966449 2019-11-02 01:34:11.966449 0 \N 2888 \N 786 \N 1351 1.0 1 2019-11-02 01:36:36.93097 2019-11-02 01:36:36.93097 0 \N 2889 \N 795 \N 1352 1.0 1 2019-11-02 01:40:05.251193 2019-11-02 01:40:05.251193 0 \N 2890 \N 652 \N 1353 1.0 1 2019-11-02 02:02:49.897989 2019-11-02 02:02:49.897989 0 \N 2891 \N 762 \N 1354 1.0 1 2019-11-02 19:55:02.386537 2019-11-02 19:55:02.386537 0 \N 2892 \N 874 \N 1355 1.0 1 2019-11-02 20:45:41.193458 2019-11-02 20:45:41.193458 0 \N 2893 \N 784 \N 1355 1.0 1 2019-11-02 20:45:41.225108 2019-11-02 20:45:41.225108 0 \N 2894 \N 905 182 \N 4.0 0 2019-11-02 21:26:46.906619 2019-11-02 21:26:46.906619 1 \N 2895 \N 906 182 \N 1.0 0 2019-11-02 21:26:46.931882 2019-11-02 21:26:46.931882 1 \N 2896 \N 907 182 \N 2.0 0 2019-11-02 21:26:46.955437 2019-11-02 21:26:46.955437 1 \N 2897 \N 908 183 \N 2.0 0 2019-11-02 21:27:49.946261 2019-11-02 21:27:49.946261 1 \N 2898 \N 905 \N 1356 1.0 1 2019-11-02 21:28:13.391458 2019-11-02 21:28:13.391458 0 \N 2899 \N 788 \N 1357 1.0 1 2019-11-03 17:41:29.821219 2019-11-03 17:41:29.821219 0 \N 2900 \N 818 \N 1358 1.0 1 2019-11-03 18:23:11.588068 2019-11-03 18:23:11.588068 0 \N 2901 \N 795 \N 1359 1.0 1 2019-11-03 18:25:06.926476 2019-11-03 18:25:06.926476 0 \N 2902 \N 792 \N 1360 1.0 1 2019-11-03 18:26:42.549385 2019-11-03 18:26:42.549385 0 \N 2903 \N 792 \N 1360 1.0 0 2019-11-03 18:29:55.462177 2019-11-03 18:29:55.462177 9 \N 2904 \N 792 \N 1361 1.0 1 2019-11-03 18:30:49.56967 2019-11-03 18:30:49.56967 0 \N 2905 \N 486 \N \N 1.0 0 2019-11-03 19:41:06.634427 2019-11-03 19:41:06.634427 7 166 2906 \N 492 \N \N 1.0 0 2019-11-03 19:41:06.640978 2019-11-03 19:41:06.640978 7 166 2907 \N 539 \N \N 1.0 0 2019-11-03 19:41:06.646738 2019-11-03 19:41:06.646738 7 166 2908 \N 480 \N \N 1.0 0 2019-11-03 19:41:06.652474 2019-11-03 19:41:06.652474 7 166 2909 \N 68 \N \N 4.0 0 2019-11-03 19:41:13.42376 2019-11-03 19:41:13.42376 7 282 2910 \N 299 \N \N 1.0 0 2019-11-03 19:41:13.429493 2019-11-03 19:41:13.429493 7 282 2911 \N 287 \N \N 2.0 0 2019-11-03 19:41:13.435469 2019-11-03 19:41:13.435469 7 282 2912 \N 119 \N \N 1.0 0 2019-11-03 19:41:13.441377 2019-11-03 19:41:13.441377 7 282 2913 \N 128 \N \N 1.0 0 2019-11-03 19:41:13.447198 2019-11-03 19:41:13.447198 7 282 2914 \N 90 \N \N 3.0 0 2019-11-03 19:41:13.452969 2019-11-03 19:41:13.452969 7 282 2915 \N 117 \N \N 1.0 0 2019-11-03 19:41:13.45842 2019-11-03 19:41:13.45842 7 282 2916 \N 64 \N \N 2.0 0 2019-11-03 19:41:13.463892 2019-11-03 19:41:13.463892 7 282 2917 \N 71 \N \N 4.0 0 2019-11-03 19:41:13.469429 2019-11-03 19:41:13.469429 7 282 2918 \N 69 \N \N 3.0 0 2019-11-03 19:41:20.530093 2019-11-03 19:41:20.530093 7 281 2919 \N 94 \N \N 1.0 0 2019-11-03 19:41:20.535781 2019-11-03 19:41:20.535781 7 281 2920 \N 536 \N \N 2.0 0 2019-11-03 19:41:20.541345 2019-11-03 19:41:20.541345 7 281 2921 \N 213 \N \N 4.0 0 2019-11-03 19:41:20.54688 2019-11-03 19:41:20.54688 7 281 2922 \N 67 \N \N 2.0 0 2019-11-03 19:41:27.838265 2019-11-03 19:41:27.838265 7 280 2923 \N 76 \N \N 1.0 0 2019-11-03 19:41:27.843803 2019-11-03 19:41:27.843803 7 280 2924 \N 113 \N \N 2.0 0 2019-11-03 19:41:27.84916 2019-11-03 19:41:27.84916 7 280 2925 \N 210 \N \N 3.0 0 2019-11-03 19:41:41.730296 2019-11-03 19:41:41.730296 7 279 2926 \N 219 \N \N 3.0 0 2019-11-03 19:41:41.738463 2019-11-03 19:41:41.738463 7 279 2927 \N 246 \N \N 2.0 0 2019-11-03 19:41:41.747123 2019-11-03 19:41:41.747123 7 279 2928 \N 206 \N \N 4.0 0 2019-11-03 19:41:41.755323 2019-11-03 19:41:41.755323 7 279 2929 \N 212 \N \N 1.0 0 2019-11-03 19:41:41.76242 2019-11-03 19:41:41.76242 7 279 2930 \N 235 \N \N 1.0 0 2019-11-03 19:41:41.77084 2019-11-03 19:41:41.77084 7 279 2931 \N 217 \N \N 4.0 0 2019-11-03 19:41:41.776509 2019-11-03 19:41:41.776509 7 279 2932 \N 231 \N \N 3.0 0 2019-11-03 19:41:41.782303 2019-11-03 19:41:41.782303 7 279 2933 \N 233 \N \N 1.0 0 2019-11-03 19:41:41.787897 2019-11-03 19:41:41.787897 7 279 2934 \N 208 \N \N 4.0 0 2019-11-03 19:41:41.793597 2019-11-03 19:41:41.793597 7 279 2935 \N 485 \N \N 1.0 0 2019-11-03 19:41:52.3282 2019-11-03 19:41:52.3282 7 278 2936 \N 185 \N \N 2.0 0 2019-11-03 19:42:01.169284 2019-11-03 19:42:01.169284 7 277 2937 \N 483 \N \N 1.0 0 2019-11-03 19:42:01.175594 2019-11-03 19:42:01.175594 7 277 2938 \N 237 \N \N 2.0 0 2019-11-03 19:42:01.181431 2019-11-03 19:42:01.181431 7 277 2939 \N 257 \N \N 1.0 0 2019-11-03 19:42:01.18711 2019-11-03 19:42:01.18711 7 277 2940 \N 475 \N \N 3.0 0 2019-11-03 19:42:01.1925 2019-11-03 19:42:01.1925 7 277 2941 \N 236 \N \N 1.0 0 2019-11-03 19:42:01.197923 2019-11-03 19:42:01.197923 7 277 2942 \N 238 \N \N 3.0 0 2019-11-03 19:42:12.02012 2019-11-03 19:42:12.02012 7 276 2943 \N 492 \N \N 1.0 0 2019-11-03 19:42:22.588079 2019-11-03 19:42:22.588079 7 250 2944 \N 486 \N \N 1.0 0 2019-11-03 19:42:22.594682 2019-11-03 19:42:22.594682 7 250 2945 \N 351 \N \N 2.0 0 2019-11-03 19:42:31.098797 2019-11-03 19:42:31.098797 7 249 2946 \N 578 \N \N 4.0 0 2019-11-03 19:42:43.307608 2019-11-03 19:42:43.307608 7 222 2947 \N 637 \N \N 5.0 0 2019-11-03 19:42:43.314965 2019-11-03 19:42:43.314965 7 222 2948 \N 401 \N \N 3.0 0 2019-11-03 19:42:43.32142 2019-11-03 19:42:43.32142 7 222 2949 \N 15 \N \N 4.0 0 2019-11-03 19:42:43.327439 2019-11-03 19:42:43.327439 7 222 2950 \N 19 \N \N 5.0 0 2019-11-03 19:42:43.33414 2019-11-03 19:42:43.33414 7 222 2951 \N 408 \N \N 4.0 0 2019-11-03 19:42:43.340039 2019-11-03 19:42:43.340039 7 222 2952 \N 209 \N \N 4.0 0 2019-11-03 19:42:43.345991 2019-11-03 19:42:43.345991 7 222 2953 \N 205 \N \N 9.0 0 2019-11-03 19:42:43.351824 2019-11-03 19:42:43.351824 7 222 2954 \N 207 \N \N 3.0 0 2019-11-03 19:42:43.357855 2019-11-03 19:42:43.357855 7 222 2955 \N 495 \N \N 1.0 0 2019-11-03 19:43:11.460265 2019-11-03 19:43:11.460265 7 168 2956 \N 351 \N \N 1.0 0 2019-11-03 19:43:24.226444 2019-11-03 19:43:24.226444 7 167 2957 \N 795 \N 1362 1.0 1 2019-11-03 22:28:48.505349 2019-11-03 22:28:48.505349 0 \N 2958 \N 874 \N \N 6.0 0 2019-11-04 19:07:10.875776 2019-11-04 19:07:10.875776 7 283 2959 \N 873 \N \N 6.0 0 2019-11-04 19:07:10.897616 2019-11-04 19:07:10.897616 7 283 2960 \N 897 \N \N 4.0 0 2019-11-04 19:07:10.91772 2019-11-04 19:07:10.91772 7 283 2961 \N 896 \N \N 4.0 0 2019-11-04 19:07:10.946677 2019-11-04 19:07:10.946677 7 283 2962 \N 888 \N \N 6.0 0 2019-11-04 19:07:10.975091 2019-11-04 19:07:10.975091 7 283 2963 \N 886 \N \N 6.0 0 2019-11-04 19:07:10.995915 2019-11-04 19:07:10.995915 7 283 2964 \N 891 \N \N 9.0 0 2019-11-04 19:07:11.015702 2019-11-04 19:07:11.015702 7 283 2965 \N 783 \N \N 5.0 0 2019-11-04 19:09:23.994762 2019-11-04 19:09:23.994762 7 284 2966 \N 840 \N 1363 1.0 1 2019-11-04 19:35:00.903969 2019-11-04 19:35:00.903969 0 \N 2967 \N 715 \N 1364 1.0 1 2019-11-04 21:54:43.260089 2019-11-04 21:54:43.260089 0 \N 2968 \N 653 \N 1365 1.0 1 2019-11-05 01:06:10.980277 2019-11-05 01:06:10.980277 0 \N 2969 \N 663 \N 1365 1.0 1 2019-11-05 01:06:11.009069 2019-11-05 01:06:11.009069 0 \N 2970 \N 774 \N 1366 1.0 1 2019-11-05 01:41:41.98981 2019-11-05 01:41:41.98981 0 \N 2971 \N 743 \N 1367 1.0 1 2019-11-05 01:59:08.067956 2019-11-05 01:59:08.067956 0 \N 2972 \N 819 \N 1368 1.0 1 2019-11-05 03:06:44.349264 2019-11-05 03:06:44.349264 0 \N 2973 \N 875 \N 1369 1.0 1 2019-11-05 19:23:54.746877 2019-11-05 19:23:54.746877 0 \N 2974 \N 900 \N \N 6.0 0 2019-11-05 19:41:08.537585 2019-11-05 19:41:08.537585 7 286 2975 \N 895 \N \N 4.0 0 2019-11-05 19:41:19.097331 2019-11-05 19:41:19.097331 7 285 2976 \N 892 \N \N 3.0 0 2019-11-05 19:41:19.119485 2019-11-05 19:41:19.119485 7 285 2977 \N 889 \N \N 3.0 0 2019-11-05 19:41:19.14213 2019-11-05 19:41:19.14213 7 285 2978 \N 897 \N \N 4.0 0 2019-11-05 19:41:19.162646 2019-11-05 19:41:19.162646 7 285 2979 \N 868 \N \N 6.0 0 2019-11-05 19:41:19.183229 2019-11-05 19:41:19.183229 7 285 2980 \N 867 \N \N 6.0 0 2019-11-05 19:43:39.428335 2019-11-05 19:43:39.428335 7 288 2981 \N 894 \N \N 4.0 0 2019-11-05 19:43:39.448043 2019-11-05 19:43:39.448043 7 288 2982 \N 896 \N \N 4.0 0 2019-11-05 19:43:39.468292 2019-11-05 19:43:39.468292 7 288 2983 \N 893 \N \N 9.0 0 2019-11-05 19:43:39.490809 2019-11-05 19:43:39.490809 7 288 2984 \N 889 \N \N 6.0 0 2019-11-05 19:43:48.045271 2019-11-05 19:43:48.045271 7 287 2985 \N 867 \N 1370 1.0 1 2019-11-06 01:21:00.665181 2019-11-06 01:21:00.665181 0 \N 2986 \N 887 \N \N 6.0 0 2019-11-06 01:30:53.921516 2019-11-06 01:30:53.921516 7 290 2987 \N 885 \N \N 6.0 0 2019-11-06 01:30:53.955161 2019-11-06 01:30:53.955161 7 290 2988 \N 597 \N 1371 1.0 1 2019-11-06 17:45:25.267301 2019-11-06 17:45:25.267301 0 \N 2989 \N 909 184 \N 1.0 0 2019-11-06 17:50:24.190776 2019-11-06 17:50:24.190776 1 \N 2990 \N 893 \N \N 1.0 0 2019-11-06 18:21:13.930217 2019-11-06 18:21:13.930217 7 292 2991 \N 893 \N \N 8.0 0 2019-11-06 18:23:14.992552 2019-11-06 18:23:14.992552 7 293 2992 \N 788 \N 1372 1.0 1 2019-11-06 19:01:08.958999 2019-11-06 19:01:08.958999 0 \N 2993 \N 761 \N 1372 1.0 1 2019-11-06 19:01:09.005324 2019-11-06 19:01:09.005324 0 \N 2994 \N 523 \N 1372 1.0 1 2019-11-06 19:01:09.033573 2019-11-06 19:01:09.033573 0 \N 2995 \N 901 \N 1372 1.0 1 2019-11-06 19:01:09.057505 2019-11-06 19:01:09.057505 0 \N 2996 \N 888 \N 1373 1.0 1 2019-11-06 19:04:42.537601 2019-11-06 19:04:42.537601 0 \N 2997 \N 796 \N 1373 1.0 1 2019-11-06 19:04:42.558335 2019-11-06 19:04:42.558335 0 \N 2998 \N 712 \N 1374 1.0 1 2019-11-06 19:51:30.080305 2019-11-06 19:51:30.080305 0 \N 2999 \N 557 \N 750 1.0 0 2019-11-06 21:58:09.577889 2019-11-06 21:58:09.577889 8 \N 3000 \N 790 \N 1375 1.0 1 2019-11-06 22:00:05.322264 2019-11-06 22:00:05.322264 0 \N 3001 \N 670 \N 1376 1.0 1 2019-11-06 23:17:32.871569 2019-11-06 23:17:32.871569 0 \N 3002 \N 367 \N 1377 1.0 1 2019-11-07 02:12:41.211984 2019-11-07 02:12:41.211984 0 \N 3003 \N 749 \N 1378 1.0 1 2019-11-07 17:34:03.424499 2019-11-07 17:34:03.424499 0 \N 3004 \N 726 \N 1379 1.0 1 2019-11-07 18:45:26.161923 2019-11-07 18:45:26.161923 0 \N 3005 \N 816 \N 1380 1.0 1 2019-11-07 23:38:24.711744 2019-11-07 23:38:24.711744 0 \N 3006 \N 799 \N 1381 1.0 1 2019-11-08 00:25:59.809366 2019-11-08 00:25:59.809366 0 \N 3007 \N 597 \N 1381 1.0 1 2019-11-08 00:25:59.833671 2019-11-08 00:25:59.833671 0 \N 3008 \N 635 \N 1012 1.0 0 2019-11-08 01:03:51.898321 2019-11-08 01:03:51.898321 8 \N 3009 \N 864 \N 1382 1.0 1 2019-11-08 19:35:23.180625 2019-11-08 19:35:23.180625 0 \N 3010 \N 668 \N 1383 1.0 1 2019-11-08 21:26:32.384816 2019-11-08 21:26:32.384816 0 \N 3011 \N 875 \N 1384 1.0 1 2019-11-08 21:52:52.503903 2019-11-08 21:52:52.503903 0 \N 3012 \N 663 \N 1384 1.0 1 2019-11-08 21:52:52.526416 2019-11-08 21:52:52.526416 0 \N 3013 \N 520 \N 1385 1.0 1 2019-11-09 01:12:58.198432 2019-11-09 01:12:58.198432 0 \N 3014 \N 805 \N 1386 1.0 1 2019-11-09 01:44:36.413389 2019-11-09 01:44:36.413389 0 \N 3015 \N 901 \N 1387 1.0 1 2019-11-09 17:28:37.680499 2019-11-09 17:28:37.680499 0 \N 3016 \N 807 \N 1388 1.0 1 2019-11-09 17:29:16.561311 2019-11-09 17:29:16.561311 0 \N 3017 \N 880 185 \N 5.0 0 2019-11-09 18:59:47.04052 2019-11-09 18:59:47.04052 1 \N 3018 \N 910 186 \N 1.0 0 2019-11-09 19:17:17.219188 2019-11-09 19:17:17.219188 1 \N 3019 \N 911 186 \N 1.0 0 2019-11-09 19:17:17.230334 2019-11-09 19:17:17.230334 1 \N 3020 \N 911 187 \N 5.0 0 2019-11-09 19:18:32.469153 2019-11-09 19:18:32.469153 1 \N 3021 \N 910 187 \N 5.0 0 2019-11-09 19:18:32.481656 2019-11-09 19:18:32.481656 1 \N 3022 \N 884 \N \N 6.0 0 2019-11-09 19:21:15.174497 2019-11-09 19:21:15.174497 7 297 3023 \N 910 \N \N 6.0 0 2019-11-09 19:21:15.193453 2019-11-09 19:21:15.193453 7 297 3024 \N 882 \N \N 6.0 0 2019-11-09 19:21:15.211778 2019-11-09 19:21:15.211778 7 297 3025 \N 802 \N 1389 1.0 1 2019-11-09 19:35:47.313018 2019-11-09 19:35:47.313018 0 \N 3026 \N 782 \N 1389 1.0 1 2019-11-09 19:35:47.339716 2019-11-09 19:35:47.339716 0 \N 3027 \N 695 \N 1390 1.0 1 2019-11-09 21:06:52.35235 2019-11-09 21:06:52.35235 0 \N 3028 \N 833 \N \N 1.0 0 2019-11-09 21:27:47.253726 2019-11-09 21:27:47.253726 7 294 3029 \N 834 \N \N 1.0 0 2019-11-09 21:27:47.282976 2019-11-09 21:27:47.282976 7 294 3030 \N 835 \N \N 1.0 0 2019-11-09 21:27:47.309612 2019-11-09 21:27:47.309612 7 294 3031 \N 838 \N \N 1.0 0 2019-11-09 21:27:47.33032 2019-11-09 21:27:47.33032 7 294 3032 \N 839 \N \N 1.0 0 2019-11-09 21:27:47.351489 2019-11-09 21:27:47.351489 7 294 3033 \N 836 \N \N 1.0 0 2019-11-09 21:27:47.374613 2019-11-09 21:27:47.374613 7 294 3034 \N 837 \N \N 1.0 0 2019-11-09 21:27:47.396092 2019-11-09 21:27:47.396092 7 294 3035 \N 877 \N \N 6.0 0 2019-11-09 21:27:59.965492 2019-11-09 21:27:59.965492 7 295 3036 \N 870 \N \N 6.0 0 2019-11-09 21:27:59.985336 2019-11-09 21:27:59.985336 7 295 3037 \N 880 \N \N 6.0 0 2019-11-09 21:28:00.005953 2019-11-09 21:28:00.005953 7 295 3038 \N 911 \N \N 6.0 0 2019-11-09 21:28:07.030306 2019-11-09 21:28:07.030306 7 296 3039 \N 885 \N 1391 1.0 1 2019-11-10 00:33:17.464839 2019-11-10 00:33:17.464839 0 \N 3040 \N 722 \N 1392 1.0 1 2019-11-10 02:03:38.85368 2019-11-10 02:03:38.85368 0 \N 3041 \N 910 \N 1393 1.0 1 2019-11-10 02:18:58.457784 2019-11-10 02:18:58.457784 0 \N 3042 \N 153 \N 1394 1.0 1 2019-11-10 17:38:31.004835 2019-11-10 17:38:31.004835 0 \N 3043 \N 912 188 \N 4.0 0 2019-11-10 18:58:20.379795 2019-11-10 18:58:20.379795 1 \N 3044 \N 717 188 \N 9.0 0 2019-11-10 18:58:20.394309 2019-11-10 18:58:20.394309 1 \N 3045 \N 864 188 \N 11.0 0 2019-11-10 18:58:20.404887 2019-11-10 18:58:20.404887 1 \N 3046 \N 909 189 \N 2.0 0 2019-11-10 18:59:23.432313 2019-11-10 18:59:23.432313 1 \N 3047 \N 699 \N 1395 1.0 1 2019-11-10 22:06:51.472343 2019-11-10 22:06:51.472343 0 \N 3048 \N 701 \N 1395 1.0 1 2019-11-10 22:06:51.502076 2019-11-10 22:06:51.502076 0 \N 3049 \N 668 \N 1395 1.0 1 2019-11-10 22:06:51.53182 2019-11-10 22:06:51.53182 0 \N 3050 \N 633 \N 1396 1.0 1 2019-11-10 22:17:05.819869 2019-11-10 22:17:05.819869 0 \N 3051 \N 888 \N 1397 1.0 1 2019-11-11 18:17:10.985467 2019-11-11 18:17:10.985467 0 \N 3052 \N 760 \N 1398 1.0 1 2019-11-11 20:29:07.688134 2019-11-11 20:29:07.688134 0 \N 3053 \N 883 \N \N 6.0 0 2019-11-11 21:41:15.122211 2019-11-11 21:41:15.122211 7 298 3054 \N 883 \N 1399 1.0 1 2019-11-11 21:43:55.036692 2019-11-11 21:43:55.036692 0 \N 3055 \N 889 \N 1400 1.0 1 2019-11-11 22:16:38.098661 2019-11-11 22:16:38.098661 0 \N 3056 \N 889 \N 1400 1.0 0 2019-11-11 22:16:47.820863 2019-11-11 22:16:47.820863 3 \N 3057 \N 889 \N 1401 1.0 1 2019-11-11 22:41:39.96589 2019-11-11 22:41:39.96589 0 \N 3058 \N 764 \N 1402 1.0 1 2019-11-11 22:46:55.253792 2019-11-11 22:46:55.253792 0 \N 3059 \N 889 \N 1403 1.0 1 2019-11-12 01:02:14.035146 2019-11-12 01:02:14.035146 0 \N 3060 \N 784 \N \N 1.0 0 2019-11-12 02:35:01.894312 2019-11-12 02:35:01.894312 7 299 3061 \N 784 \N 1404 1.0 1 2019-11-12 02:45:00.018039 2019-11-12 02:45:00.018039 0 \N 3062 \N 880 \N 1404 1.0 1 2019-11-12 02:45:00.038492 2019-11-12 02:45:00.038492 0 \N 3063 \N 800 \N 1405 1.0 1 2019-11-12 20:32:28.376961 2019-11-12 20:32:28.376961 0 \N 3064 \N 668 \N 1406 2.0 1 2019-11-12 23:46:27.672969 2019-11-12 23:46:27.672969 0 \N 3065 \N 757 \N 1407 1.0 1 2019-11-13 01:07:30.637542 2019-11-13 01:07:30.637542 0 \N 3066 \N 892 \N 1408 1.0 1 2019-11-13 01:35:49.466511 2019-11-13 01:35:49.466511 0 \N 3067 \N 790 \N 1409 2.0 1 2019-11-13 01:58:29.208247 2019-11-13 01:58:29.208247 0 \N 3068 \N 799 \N 1410 1.0 1 2019-11-13 02:46:11.796069 2019-11-13 02:46:11.796069 0 \N 3069 \N 883 \N 1411 1.0 1 2019-11-13 19:07:37.443174 2019-11-13 19:07:37.443174 0 \N 3070 \N 877 \N 1411 1.0 1 2019-11-13 19:07:37.476834 2019-11-13 19:07:37.476834 0 \N 3071 \N 476 \N 1411 1.0 1 2019-11-13 19:07:37.51206 2019-11-13 19:07:37.51206 0 \N 3072 \N 369 \N 1412 1.0 1 2019-11-13 19:09:45.99641 2019-11-13 19:09:45.99641 0 \N 3073 \N 942 190 \N 2.0 0 2019-11-13 19:17:41.570687 2019-11-13 19:17:41.570687 1 \N 3074 \N 940 190 \N 3.0 0 2019-11-13 19:17:41.582895 2019-11-13 19:17:41.582895 1 \N 3075 \N 943 190 \N 1.0 0 2019-11-13 19:17:41.594107 2019-11-13 19:17:41.594107 1 \N 3076 \N 913 190 \N 4.0 0 2019-11-13 19:17:41.605285 2019-11-13 19:17:41.605285 1 \N 3077 \N 914 190 \N 2.0 0 2019-11-13 19:17:41.6164 2019-11-13 19:17:41.6164 1 \N 3078 \N 915 190 \N 2.0 0 2019-11-13 19:17:41.627175 2019-11-13 19:17:41.627175 1 \N 3079 \N 916 190 \N 1.0 0 2019-11-13 19:17:41.638002 2019-11-13 19:17:41.638002 1 \N 3080 \N 917 190 \N 2.0 0 2019-11-13 19:17:41.648322 2019-11-13 19:17:41.648322 1 \N 3081 \N 918 190 \N 1.0 0 2019-11-13 19:17:41.658778 2019-11-13 19:17:41.658778 1 \N 3082 \N 919 190 \N 6.0 0 2019-11-13 19:17:41.668817 2019-11-13 19:17:41.668817 1 \N 3083 \N 920 190 \N 2.0 0 2019-11-13 19:17:41.682913 2019-11-13 19:17:41.682913 1 \N 3084 \N 921 190 \N 3.0 0 2019-11-13 19:17:41.695734 2019-11-13 19:17:41.695734 1 \N 3085 \N 922 190 \N 2.0 0 2019-11-13 19:17:41.706383 2019-11-13 19:17:41.706383 1 \N 3086 \N 923 190 \N 1.0 0 2019-11-13 19:17:41.716776 2019-11-13 19:17:41.716776 1 \N 3087 \N 924 190 \N 1.0 0 2019-11-13 19:17:41.727879 2019-11-13 19:17:41.727879 1 \N 3088 \N 925 190 \N 2.0 0 2019-11-13 19:17:41.738453 2019-11-13 19:17:41.738453 1 \N 3089 \N 926 190 \N 3.0 0 2019-11-13 19:17:41.748946 2019-11-13 19:17:41.748946 1 \N 3090 \N 927 190 \N 5.0 0 2019-11-13 19:17:41.760318 2019-11-13 19:17:41.760318 1 \N 3091 \N 928 190 \N 7.0 0 2019-11-13 19:17:41.77213 2019-11-13 19:17:41.77213 1 \N 3092 \N 929 190 \N 2.0 0 2019-11-13 19:17:41.783175 2019-11-13 19:17:41.783175 1 \N 3093 \N 930 190 \N 3.0 0 2019-11-13 19:17:41.793621 2019-11-13 19:17:41.793621 1 \N 3094 \N 931 190 \N 1.0 0 2019-11-13 19:17:41.803636 2019-11-13 19:17:41.803636 1 \N 3095 \N 932 190 \N 2.0 0 2019-11-13 19:17:41.814857 2019-11-13 19:17:41.814857 1 \N 3096 \N 933 190 \N 3.0 0 2019-11-13 19:17:41.826944 2019-11-13 19:17:41.826944 1 \N 3097 \N 934 190 \N 3.0 0 2019-11-13 19:17:41.83913 2019-11-13 19:17:41.83913 1 \N 3098 \N 935 190 \N 2.0 0 2019-11-13 19:17:41.84894 2019-11-13 19:17:41.84894 1 \N 3099 \N 936 190 \N 3.0 0 2019-11-13 19:17:41.85883 2019-11-13 19:17:41.85883 1 \N 3100 \N 937 190 \N 2.0 0 2019-11-13 19:17:41.869611 2019-11-13 19:17:41.869611 1 \N 3101 \N 938 190 \N 1.0 0 2019-11-13 19:17:41.880232 2019-11-13 19:17:41.880232 1 \N 3102 \N 941 190 \N 1.0 0 2019-11-13 19:17:41.890434 2019-11-13 19:17:41.890434 1 \N 3103 \N 940 \N \N 2.0 0 2019-11-13 19:45:13.241642 2019-11-13 19:45:13.241642 7 300 3104 \N 937 \N \N 2.0 0 2019-11-13 19:45:13.261737 2019-11-13 19:45:13.261737 7 300 3105 \N 935 \N \N 1.0 0 2019-11-13 19:45:13.281466 2019-11-13 19:45:13.281466 7 300 3106 \N 934 \N \N 1.0 0 2019-11-13 19:45:13.301485 2019-11-13 19:45:13.301485 7 300 3107 \N 933 \N \N 1.0 0 2019-11-13 19:45:13.339688 2019-11-13 19:45:13.339688 7 300 3108 \N 932 \N \N 1.0 0 2019-11-13 19:45:13.365658 2019-11-13 19:45:13.365658 7 300 3109 \N 929 \N \N 1.0 0 2019-11-13 19:45:13.390627 2019-11-13 19:45:13.390627 7 300 3110 \N 928 \N \N 2.0 0 2019-11-13 19:45:13.409575 2019-11-13 19:45:13.409575 7 300 3111 \N 927 \N \N 2.0 0 2019-11-13 19:45:13.427797 2019-11-13 19:45:13.427797 7 300 3112 \N 926 \N \N 1.0 0 2019-11-13 19:45:13.445317 2019-11-13 19:45:13.445317 7 300 3113 \N 925 \N \N 1.0 0 2019-11-13 19:45:13.463507 2019-11-13 19:45:13.463507 7 300 3114 \N 924 \N \N 1.0 0 2019-11-13 19:45:13.482484 2019-11-13 19:45:13.482484 7 300 3115 \N 923 \N \N 1.0 0 2019-11-13 19:45:13.500673 2019-11-13 19:45:13.500673 7 300 3116 \N 922 \N \N 1.0 0 2019-11-13 19:45:13.518784 2019-11-13 19:45:13.518784 7 300 3117 \N 920 \N \N 1.0 0 2019-11-13 19:45:13.536833 2019-11-13 19:45:13.536833 7 300 3118 \N 919 \N \N 1.0 0 2019-11-13 19:45:13.555512 2019-11-13 19:45:13.555512 7 300 3119 \N 918 \N \N 1.0 0 2019-11-13 19:45:13.575227 2019-11-13 19:45:13.575227 7 300 3120 \N 917 \N \N 1.0 0 2019-11-13 19:45:13.595376 2019-11-13 19:45:13.595376 7 300 3121 \N 915 \N \N 1.0 0 2019-11-13 19:45:13.61533 2019-11-13 19:45:13.61533 7 300 3122 \N 916 \N \N 1.0 0 2019-11-13 19:45:13.633498 2019-11-13 19:45:13.633498 7 300 3123 \N 913 \N \N 1.0 0 2019-11-13 19:45:13.651326 2019-11-13 19:45:13.651326 7 300 3124 \N 943 \N \N 1.0 0 2019-11-13 20:47:26.706858 2019-11-13 20:47:26.706858 7 302 3125 \N 942 \N \N 1.0 0 2019-11-13 20:47:26.748823 2019-11-13 20:47:26.748823 7 302 3126 \N 940 \N \N 1.0 0 2019-11-13 20:47:26.769997 2019-11-13 20:47:26.769997 7 302 3127 \N 938 \N \N 1.0 0 2019-11-13 20:47:26.792167 2019-11-13 20:47:26.792167 7 302 3128 \N 936 \N \N 2.0 0 2019-11-13 20:47:26.81307 2019-11-13 20:47:26.81307 7 302 3129 \N 935 \N \N 1.0 0 2019-11-13 20:47:26.834317 2019-11-13 20:47:26.834317 7 302 3130 \N 934 \N \N 2.0 0 2019-11-13 20:47:26.855321 2019-11-13 20:47:26.855321 7 302 3131 \N 929 \N \N 1.0 0 2019-11-13 20:47:26.875848 2019-11-13 20:47:26.875848 7 302 3132 \N 928 \N \N 2.0 0 2019-11-13 20:47:26.897516 2019-11-13 20:47:26.897516 7 302 3133 \N 927 \N \N 1.0 0 2019-11-13 20:47:26.920807 2019-11-13 20:47:26.920807 7 302 3134 \N 926 \N \N 2.0 0 2019-11-13 20:47:26.944324 2019-11-13 20:47:26.944324 7 302 3135 \N 925 \N \N 1.0 0 2019-11-13 20:47:26.966771 2019-11-13 20:47:26.966771 7 302 3136 \N 922 \N \N 1.0 0 2019-11-13 20:47:26.988379 2019-11-13 20:47:26.988379 7 302 3137 \N 920 \N \N 1.0 0 2019-11-13 20:47:27.00996 2019-11-13 20:47:27.00996 7 302 3138 \N 919 \N \N 2.0 0 2019-11-13 20:47:27.030628 2019-11-13 20:47:27.030628 7 302 3139 \N 917 \N \N 1.0 0 2019-11-13 20:47:27.052124 2019-11-13 20:47:27.052124 7 302 3140 \N 915 \N \N 1.0 0 2019-11-13 20:47:27.075686 2019-11-13 20:47:27.075686 7 302 3141 \N 914 \N \N 1.0 0 2019-11-13 20:47:27.097152 2019-11-13 20:47:27.097152 7 302 3142 \N 913 \N \N 1.0 0 2019-11-13 20:47:27.118113 2019-11-13 20:47:27.118113 7 302 3143 \N 937 \N \N 1.0 0 2019-11-13 20:47:39.055266 2019-11-13 20:47:39.055266 7 301 3144 \N 935 \N 1413 1.0 1 2019-11-13 21:19:48.130854 2019-11-13 21:19:48.130854 0 \N 3145 \N 919 \N 1413 1.0 1 2019-11-13 21:19:48.160807 2019-11-13 21:19:48.160807 0 \N 3146 \N 924 191 \N 1.0 0 2019-11-13 21:26:33.111322 2019-11-13 21:26:33.111322 1 \N 3147 \N 916 192 \N 1.0 0 2019-11-13 21:28:01.723326 2019-11-13 21:28:01.723326 1 \N 3148 \N 916 \N \N 1.0 0 2019-11-13 21:28:57.968485 2019-11-13 21:28:57.968485 7 303 3149 \N 924 \N \N 1.0 0 2019-11-13 21:28:57.995895 2019-11-13 21:28:57.995895 7 303 3150 \N 745 \N 1414 1.0 1 2019-11-13 22:19:20.306086 2019-11-13 22:19:20.306086 0 \N 3151 \N 915 \N 1415 1.0 1 2019-11-13 22:30:41.329642 2019-11-13 22:30:41.329642 0 \N 3152 \N 784 \N \N 1.0 0 2019-11-13 22:36:47.904936 2019-11-13 22:36:47.904936 7 304 3153 \N 886 \N 1416 1.0 1 2019-11-13 22:38:01.270642 2019-11-13 22:38:01.270642 0 \N 3154 \N 784 \N 1416 1.0 1 2019-11-13 22:38:01.291397 2019-11-13 22:38:01.291397 0 \N 3155 \N 892 \N 1416 1.0 1 2019-11-13 22:38:01.311555 2019-11-13 22:38:01.311555 0 \N 3156 \N 886 \N 1417 1.0 1 2019-11-13 22:43:01.600861 2019-11-13 22:43:01.600861 0 \N 3157 \N 904 \N 1417 1.0 1 2019-11-13 22:43:01.621291 2019-11-13 22:43:01.621291 0 \N 3158 \N 937 \N 1417 1.0 1 2019-11-13 22:43:01.64181 2019-11-13 22:43:01.64181 0 \N 3159 \N 920 \N 1417 1.0 1 2019-11-13 22:43:01.661444 2019-11-13 22:43:01.661444 0 \N 3160 \N 893 \N 1418 1.0 1 2019-11-14 00:34:23.737897 2019-11-14 00:34:23.737897 0 \N 3161 \N 924 193 \N 1.0 0 2019-11-14 00:55:25.416391 2019-11-14 00:55:25.416391 1 \N 3162 \N 455 \N \N 1.0 0 2019-11-14 00:55:46.445108 2019-11-14 00:55:46.445108 7 291 3163 \N 456 \N \N 2.0 0 2019-11-14 00:55:46.467609 2019-11-14 00:55:46.467609 7 291 3164 \N 460 \N \N 1.0 0 2019-11-14 00:55:46.490188 2019-11-14 00:55:46.490188 7 291 3165 \N 933 \N \N 2.0 0 2019-11-14 00:55:55.805702 2019-11-14 00:55:55.805702 7 305 3166 \N 942 \N \N 1.0 0 2019-11-14 00:55:55.82753 2019-11-14 00:55:55.82753 7 305 3167 \N 936 \N \N 1.0 0 2019-11-14 00:55:55.854407 2019-11-14 00:55:55.854407 7 305 3168 \N 932 \N \N 1.0 0 2019-11-14 00:55:55.877158 2019-11-14 00:55:55.877158 7 305 3169 \N 931 \N \N 1.0 0 2019-11-14 00:55:55.898979 2019-11-14 00:55:55.898979 7 305 3170 \N 930 \N \N 3.0 0 2019-11-14 00:55:55.933857 2019-11-14 00:55:55.933857 7 305 3171 \N 928 \N \N 3.0 0 2019-11-14 00:55:55.95367 2019-11-14 00:55:55.95367 7 305 3172 \N 927 \N \N 2.0 0 2019-11-14 00:55:55.973547 2019-11-14 00:55:55.973547 7 305 3173 \N 921 \N \N 2.0 0 2019-11-14 00:55:55.99373 2019-11-14 00:55:55.99373 7 305 3174 \N 919 \N \N 3.0 0 2019-11-14 00:55:56.014891 2019-11-14 00:55:56.014891 7 305 3175 \N 914 \N \N 1.0 0 2019-11-14 00:55:56.034892 2019-11-14 00:55:56.034892 7 305 3176 \N 913 \N \N 2.0 0 2019-11-14 00:55:56.055284 2019-11-14 00:55:56.055284 7 305 3177 \N 590 \N 1419 1.0 1 2019-11-14 03:02:05.611261 2019-11-14 03:02:05.611261 0 \N 3178 \N 927 \N 1420 1.0 1 2019-11-14 03:02:46.058934 2019-11-14 03:02:46.058934 0 \N 3179 \N 893 \N 1421 1.0 1 2019-11-14 22:53:09.35067 2019-11-14 22:53:09.35067 0 \N 3180 \N 693 \N 1422 1.0 1 2019-11-14 23:09:45.106669 2019-11-14 23:09:45.106669 0 \N 3181 \N 693 \N 1422 1.0 0 2019-11-14 23:10:36.366884 2019-11-14 23:10:36.366884 3 \N 3182 \N 693 \N 1422 1.0 0 2019-11-14 23:10:42.048654 2019-11-14 23:10:42.048654 3 \N 3183 \N 693 \N 1423 1.0 1 2019-11-14 23:11:50.47918 2019-11-14 23:11:50.47918 0 \N 3184 \N 683 \N 1424 1.0 1 2019-11-15 01:47:59.32631 2019-11-15 01:47:59.32631 0 \N 3185 \N 597 \N 1425 1.0 1 2019-11-15 17:38:55.281488 2019-11-15 17:38:55.281488 0 \N 3186 \N 800 \N 1426 1.0 1 2019-11-15 17:46:25.121443 2019-11-15 17:46:25.121443 0 \N 3187 \N 867 \N 1427 1.0 1 2019-11-15 17:56:44.878508 2019-11-15 17:56:44.878508 0 \N 3188 \N 800 194 \N 6.0 0 2019-11-15 17:58:01.612159 2019-11-15 17:58:01.612159 1 \N 3189 \N 674 \N 1428 1.0 1 2019-11-15 18:52:27.83838 2019-11-15 18:52:27.83838 0 \N 3190 \N 874 \N 1429 1.0 1 2019-11-15 18:52:55.857289 2019-11-15 18:52:55.857289 0 \N 3191 \N 918 \N 1430 1.0 1 2019-11-15 19:31:15.9486 2019-11-15 19:31:15.9486 0 \N 3192 \N 932 \N 1431 1.0 1 2019-11-15 20:28:46.988687 2019-11-15 20:28:46.988687 0 \N 3193 \N 886 \N 1432 1.0 1 2019-11-15 20:34:05.083077 2019-11-15 20:34:05.083077 0 \N 3194 \N 799 \N 1433 1.0 1 2019-11-15 22:57:43.295029 2019-11-15 22:57:43.295029 0 \N 3195 \N 933 \N 1434 1.0 1 2019-11-15 23:38:47.111479 2019-11-15 23:38:47.111479 0 \N 3196 \N 35 \N 1435 1.0 1 2019-11-16 00:35:41.079536 2019-11-16 00:35:41.079536 0 \N 3197 \N 808 \N 1436 1.0 1 2019-11-16 01:10:01.500279 2019-11-16 01:10:01.500279 0 \N 3198 \N 808 \N 1436 1.0 0 2019-11-16 01:10:46.587382 2019-11-16 01:10:46.587382 3 \N 3199 \N 808 \N 1437 1.0 1 2019-11-16 01:11:03.910196 2019-11-16 01:11:03.910196 0 \N 3200 \N 697 \N 1437 1.0 1 2019-11-16 01:11:03.932119 2019-11-16 01:11:03.932119 0 \N 3201 \N 788 \N 1438 1.0 1 2019-11-16 01:14:09.776566 2019-11-16 01:14:09.776566 0 \N 3202 \N 932 \N 1438 1.0 1 2019-11-16 01:14:09.800893 2019-11-16 01:14:09.800893 0 \N 3203 \N 909 195 \N 2.0 0 2019-11-16 01:28:17.542671 2019-11-16 01:28:17.542671 1 \N 3204 \N 909 \N 1439 1.0 1 2019-11-16 01:30:51.084451 2019-11-16 01:30:51.084451 0 \N 3205 \N 718 196 \N 2.0 0 2019-11-16 01:32:29.712015 2019-11-16 01:32:29.712015 1 \N 3206 \N 718 196 \N 2.0 1 2019-11-16 01:36:05.109822 2019-11-16 01:36:05.109822 4 \N 3207 \N 884 \N 1440 1.0 1 2019-11-16 01:37:12.036185 2019-11-16 01:37:12.036185 0 \N 3208 \N 875 \N 1441 1.0 1 2019-11-16 01:39:04.708494 2019-11-16 01:39:04.708494 0 \N 3209 \N 759 \N 1441 1.0 1 2019-11-16 01:39:04.733129 2019-11-16 01:39:04.733129 0 \N 3210 \N 912 197 \N 2.0 0 2019-11-16 01:46:58.99635 2019-11-16 01:46:58.99635 1 \N 3211 \N 717 197 \N 11.0 0 2019-11-16 01:46:59.010882 2019-11-16 01:46:59.010882 1 \N 3212 \N 864 197 \N 10.0 0 2019-11-16 01:46:59.023857 2019-11-16 01:46:59.023857 1 \N 3213 \N 572 \N 1442 1.0 1 2019-11-16 02:14:13.525455 2019-11-16 02:14:13.525455 0 \N 3214 \N 873 \N 1443 1.0 1 2019-11-16 02:27:44.052674 2019-11-16 02:27:44.052674 0 \N 3215 \N 919 \N 1444 1.0 1 2019-11-16 02:32:29.240122 2019-11-16 02:32:29.240122 0 \N 3216 \N 806 \N 1445 1.0 1 2019-11-16 20:41:49.90774 2019-11-16 20:41:49.90774 0 \N 3217 \N 664 \N 1446 1.0 1 2019-11-16 20:44:43.96816 2019-11-16 20:44:43.96816 0 \N 3218 \N 942 \N 1447 1.0 1 2019-11-16 21:03:39.974917 2019-11-16 21:03:39.974917 0 \N 3219 \N 874 \N 1448 1.0 1 2019-11-16 21:08:20.175184 2019-11-16 21:08:20.175184 0 \N 3220 \N 672 \N 1448 2.0 1 2019-11-16 21:08:20.198752 2019-11-16 21:08:20.198752 0 \N 3221 \N 476 \N 1449 1.0 1 2019-11-16 21:24:26.392557 2019-11-16 21:24:26.392557 0 \N 3222 \N 46 \N 1450 1.0 1 2019-11-16 21:46:09.253417 2019-11-16 21:46:09.253417 0 \N 3223 \N 924 \N 1451 1.0 1 2019-11-16 21:46:55.578065 2019-11-16 21:46:55.578065 0 \N 3224 \N 805 \N 1452 1.0 1 2019-11-16 22:29:54.271514 2019-11-16 22:29:54.271514 0 \N 3225 \N 852 \N 1453 1.0 1 2019-11-16 22:48:56.708394 2019-11-16 22:48:56.708394 0 \N 3226 \N 934 \N 1453 1.0 1 2019-11-16 22:48:56.730513 2019-11-16 22:48:56.730513 0 \N 3227 \N 911 \N 1454 1.0 1 2019-11-16 22:59:22.233419 2019-11-16 22:59:22.233419 0 \N 3228 \N 875 \N 1455 1.0 1 2019-11-17 00:34:08.971097 2019-11-17 00:34:08.971097 0 \N 3229 \N 806 \N 1455 1.0 1 2019-11-17 00:34:08.993479 2019-11-17 00:34:08.993479 0 \N 3230 \N 868 \N 1456 1.0 1 2019-11-17 01:10:14.210247 2019-11-17 01:10:14.210247 0 \N 3231 \N 268 \N 1457 1.0 1 2019-11-17 01:13:06.035347 2019-11-17 01:13:06.035347 0 \N 3232 \N 350 \N 1457 1.0 1 2019-11-17 01:13:06.059865 2019-11-17 01:13:06.059865 0 \N 3233 \N 766 \N 1458 1.0 1 2019-11-17 02:09:02.769349 2019-11-17 02:09:02.769349 0 \N 3234 \N 927 \N 1458 1.0 1 2019-11-17 02:09:02.792829 2019-11-17 02:09:02.792829 0 \N 3235 \N 625 \N 1459 1.0 1 2019-11-17 20:02:08.299943 2019-11-17 20:02:08.299943 0 \N 3236 \N 789 \N 1460 1.0 1 2019-11-17 20:04:54.572713 2019-11-17 20:04:54.572713 0 \N 3237 \N 611 \N 1461 2.0 1 2019-11-17 22:17:12.101035 2019-11-17 22:17:12.101035 0 \N 3238 \N 611 \N 1461 2.0 0 2019-11-17 22:17:30.26094 2019-11-17 22:17:30.26094 9 \N 3239 \N 611 \N 1462 2.0 1 2019-11-17 22:17:55.929844 2019-11-17 22:17:55.929844 0 \N 3240 \N 717 \N 1463 1.0 1 2019-11-18 18:31:40.219468 2019-11-18 18:31:40.219468 0 \N 3241 \N 782 \N 1464 1.0 1 2019-11-18 19:03:21.364871 2019-11-18 19:03:21.364871 0 \N 3242 \N 900 \N 1465 1.0 1 2019-11-18 19:07:21.220051 2019-11-18 19:07:21.220051 0 \N 3243 \N 186 \N 1466 1.0 1 2019-11-18 19:17:13.537135 2019-11-18 19:17:13.537135 0 \N 3244 \N 886 \N 1466 1.0 1 2019-11-18 19:17:13.560979 2019-11-18 19:17:13.560979 0 \N 3245 \N 848 \N 1467 1.0 1 2019-11-18 19:35:04.729818 2019-11-18 19:35:04.729818 0 \N 3246 \N 889 \N 1468 1.0 1 2019-11-18 22:22:03.01592 2019-11-18 22:22:03.01592 0 \N 3247 \N 940 \N 1468 1.0 1 2019-11-18 22:22:03.039945 2019-11-18 22:22:03.039945 0 \N 3248 \N 917 \N 1468 1.0 1 2019-11-18 22:22:03.062438 2019-11-18 22:22:03.062438 0 \N 3249 \N 764 \N 1469 1.0 1 2019-11-18 22:27:41.610877 2019-11-18 22:27:41.610877 0 \N 3250 \N 871 198 \N 6.0 0 2019-11-18 23:39:46.400156 2019-11-18 23:39:46.400156 1 \N 3251 \N 944 199 \N 6.0 0 2019-11-18 23:57:53.511253 2019-11-18 23:57:53.511253 1 \N 3252 \N 911 199 \N 6.0 0 2019-11-18 23:57:53.52356 2019-11-18 23:57:53.52356 1 \N 3253 \N 945 199 \N 12.0 0 2019-11-18 23:57:53.534918 2019-11-18 23:57:53.534918 1 \N 3254 \N 893 \N 1470 1.0 1 2019-11-19 02:50:26.321961 2019-11-19 02:50:26.321961 0 \N 3255 \N 928 \N 1471 1.0 1 2019-11-19 19:00:09.883984 2019-11-19 19:00:09.883984 0 \N 3256 \N 928 \N 1471 1.0 0 2019-11-19 19:08:58.974849 2019-11-19 19:08:58.974849 3 \N 3257 \N 916 \N 1472 1.0 1 2019-11-19 19:10:08.686281 2019-11-19 19:10:08.686281 0 \N 3258 \N 929 \N 1472 1.0 1 2019-11-19 19:10:08.706535 2019-11-19 19:10:08.706535 0 \N 3259 \N 783 \N 1473 1.0 1 2019-11-19 22:21:02.628122 2019-11-19 22:21:02.628122 0 \N 3260 \N 946 200 \N 12.0 0 2019-11-20 20:26:00.330027 2019-11-20 20:26:00.330027 1 \N 3261 \N 947 200 \N 6.0 0 2019-11-20 20:26:00.342588 2019-11-20 20:26:00.342588 1 \N 3262 \N 948 200 \N 6.0 0 2019-11-20 20:26:00.353061 2019-11-20 20:26:00.353061 1 \N 3263 \N 917 \N \N 1.0 0 2019-11-20 20:29:59.170627 2019-11-20 20:29:59.170627 7 308 3264 \N 936 \N \N 2.0 0 2019-11-20 20:29:59.19166 2019-11-20 20:29:59.19166 7 308 3265 \N 919 \N \N 2.0 0 2019-11-20 20:29:59.208487 2019-11-20 20:29:59.208487 7 308 3266 \N 935 \N \N 1.0 0 2019-11-20 20:29:59.225646 2019-11-20 20:29:59.225646 7 308 3267 \N 943 \N \N 1.0 0 2019-11-20 20:29:59.245948 2019-11-20 20:29:59.245948 7 308 3268 \N 934 \N \N 2.0 0 2019-11-20 20:29:59.263462 2019-11-20 20:29:59.263462 7 308 3269 \N 894 \N \N 4.0 0 2019-11-20 20:30:19.371111 2019-11-20 20:30:19.371111 7 310 3270 \N 949 201 \N 18.0 0 2019-11-20 20:30:21.805712 2019-11-20 20:30:21.805712 1 \N 3271 \N 950 201 \N 12.0 0 2019-11-20 20:30:21.816353 2019-11-20 20:30:21.816353 1 \N 3272 \N 894 \N 1474 1.0 1 2019-11-20 20:32:12.840589 2019-11-20 20:32:12.840589 0 \N 3273 \N 865 \N \N 6.0 0 2019-11-20 20:34:20.378245 2019-11-20 20:34:20.378245 7 311 3274 \N 947 \N \N 6.0 0 2019-11-20 20:34:20.4192 2019-11-20 20:34:20.4192 7 311 3275 \N 946 \N \N 6.0 0 2019-11-20 20:34:20.439167 2019-11-20 20:34:20.439167 7 311 3276 \N 945 \N \N 6.0 0 2019-11-20 20:34:20.459144 2019-11-20 20:34:20.459144 7 311 3277 \N 950 \N \N 6.0 0 2019-11-20 20:34:20.478796 2019-11-20 20:34:20.478796 7 311 3278 \N 947 \N 1475 1.0 1 2019-11-20 20:45:17.481656 2019-11-20 20:45:17.481656 0 \N 3279 \N 911 202 \N 6.0 0 2019-11-20 20:48:26.366289 2019-11-20 20:48:26.366289 1 \N 3280 \N 951 203 \N 6.0 0 2019-11-20 20:54:43.20394 2019-11-20 20:54:43.20394 1 \N 3281 \N 949 \N \N 9.0 0 2019-11-20 21:04:17.672672 2019-11-20 21:04:17.672672 7 312 3282 \N 948 \N \N 6.0 0 2019-11-20 21:04:17.692795 2019-11-20 21:04:17.692795 7 312 3283 \N 950 \N \N 6.0 0 2019-11-20 21:04:17.713781 2019-11-20 21:04:17.713781 7 312 3284 \N 895 \N \N 4.0 0 2019-11-20 21:04:17.733721 2019-11-20 21:04:17.733721 7 312 3285 \N 702 \N \N 3.0 0 2019-11-20 21:04:29.852186 2019-11-20 21:04:29.852186 7 307 3286 \N 663 \N \N 5.0 0 2019-11-20 21:04:29.887812 2019-11-20 21:04:29.887812 7 307 3287 \N 702 \N \N 3.0 0 2019-11-20 21:04:29.972249 2019-11-20 21:04:29.972249 7 307 3288 \N 663 \N \N 5.0 0 2019-11-20 21:04:30.005926 2019-11-20 21:04:30.005926 7 307 3289 \N 697 \N \N 3.0 0 2019-11-20 21:18:21.169322 2019-11-20 21:18:21.169322 7 309 3290 \N 678 \N \N 1.0 0 2019-11-20 21:18:21.190871 2019-11-20 21:18:21.190871 7 309 3291 \N 679 \N \N 5.0 0 2019-11-20 21:18:21.211609 2019-11-20 21:18:21.211609 7 309 3292 \N 793 \N \N 3.0 0 2019-11-20 21:18:21.232996 2019-11-20 21:18:21.232996 7 309 3293 \N 792 \N \N 3.0 0 2019-11-20 21:18:21.255075 2019-11-20 21:18:21.255075 7 309 3294 \N 688 \N \N 5.0 0 2019-11-20 21:19:16.891685 2019-11-20 21:19:16.891685 7 306 3295 \N 890 \N \N 6.0 0 2019-11-20 21:22:19.647173 2019-11-20 21:22:19.647173 7 313 3296 \N 895 \N 1476 1.0 1 2019-11-20 22:01:53.747074 2019-11-20 22:01:53.747074 0 \N 3297 \N 761 \N 1477 1.0 1 2019-11-21 01:53:04.259476 2019-11-21 01:53:04.259476 0 \N 3298 \N 945 \N \N 6.0 0 2019-11-21 18:06:48.877336 2019-11-21 18:06:48.877336 7 314 3299 \N 898 \N \N 4.0 0 2019-11-21 18:06:48.899534 2019-11-21 18:06:48.899534 7 314 3300 \N 897 \N \N 4.0 0 2019-11-21 18:06:48.916923 2019-11-21 18:06:48.916923 7 314 3301 \N 896 \N \N 4.0 0 2019-11-21 18:06:48.93439 2019-11-21 18:06:48.93439 7 314 3302 \N 895 \N \N 8.0 0 2019-11-21 18:06:48.95682 2019-11-21 18:06:48.95682 7 314 3303 \N 894 \N \N 4.0 0 2019-11-21 18:06:48.979514 2019-11-21 18:06:48.979514 7 314 3304 \N 892 \N \N 1.0 0 2019-11-21 18:06:49.001429 2019-11-21 18:06:49.001429 7 314 3305 \N 889 \N \N 3.0 0 2019-11-21 18:06:49.021614 2019-11-21 18:06:49.021614 7 314 3306 \N 944 \N \N 6.0 0 2019-11-21 18:10:16.635442 2019-11-21 18:10:16.635442 7 316 3307 \N 892 \N \N 2.0 0 2019-11-21 18:10:44.83415 2019-11-21 18:10:44.83415 7 315 3308 \N 877 \N \N 6.0 0 2019-11-21 18:13:28.146779 2019-11-21 18:13:28.146779 7 317 3309 \N 911 \N \N 6.0 0 2019-11-21 18:13:28.168348 2019-11-21 18:13:28.168348 7 317 3310 \N 949 \N \N 9.0 0 2019-11-21 18:13:28.189703 2019-11-21 18:13:28.189703 7 317 3311 \N 946 \N \N 6.0 0 2019-11-21 18:13:28.211506 2019-11-21 18:13:28.211506 7 317 3312 \N 894 \N 1478 1.0 1 2019-11-21 19:51:05.560661 2019-11-21 19:51:05.560661 0 \N 3313 \N 916 \N 1479 1.0 1 2019-11-21 23:11:15.936592 2019-11-21 23:11:15.936592 0 \N 3314 \N 369 \N 1479 1.0 1 2019-11-21 23:11:15.959061 2019-11-21 23:11:15.959061 0 \N 3315 \N 783 \N \N 1.0 0 2019-11-21 23:46:21.242492 2019-11-21 23:46:21.242492 7 318 3316 \N 903 \N \N 1.0 0 2019-11-21 23:46:21.263047 2019-11-21 23:46:21.263047 7 318 3317 \N 717 \N 1480 1.0 1 2019-11-21 23:48:23.823403 2019-11-21 23:48:23.823403 0 \N 3318 \N 783 \N 1480 1.0 1 2019-11-21 23:48:23.847262 2019-11-21 23:48:23.847262 0 \N 3319 \N 903 \N 1480 1.0 1 2019-11-21 23:48:23.870875 2019-11-21 23:48:23.870875 0 \N 3320 \N 693 \N 1481 1.0 1 2019-11-22 00:38:05.893598 2019-11-22 00:38:05.893598 0 \N 3321 \N 910 \N 1482 1.0 1 2019-11-22 01:19:33.895601 2019-11-22 01:19:33.895601 0 \N 3322 \N 670 \N 1482 1.0 1 2019-11-22 01:19:33.920379 2019-11-22 01:19:33.920379 0 \N 3323 \N 696 \N 1483 1.0 1 2019-11-22 02:28:13.161152 2019-11-22 02:28:13.161152 0 \N 3324 \N 403 \N 1484 1.0 1 2019-11-22 17:41:27.360044 2019-11-22 17:41:27.360044 0 \N 3325 \N 715 \N 1485 1.0 1 2019-11-22 17:50:55.175574 2019-11-22 17:50:55.175574 0 \N 3326 \N 947 \N 1486 1.0 1 2019-11-22 18:50:30.134196 2019-11-22 18:50:30.134196 0 \N 3327 \N 866 \N 1487 1.0 1 2019-11-22 21:26:31.211282 2019-11-22 21:26:31.211282 0 \N 3328 \N 868 \N 1488 1.0 1 2019-11-23 01:00:44.904398 2019-11-23 01:00:44.904398 0 \N 3329 \N 761 \N 1489 1.0 1 2019-11-23 02:08:02.787656 2019-11-23 02:08:02.787656 0 \N 3330 \N 952 204 \N 5.0 0 2019-11-23 17:25:17.948521 2019-11-23 17:25:17.948521 1 \N 3331 \N 753 \N 1490 1.0 1 2019-11-23 17:58:26.752652 2019-11-23 17:58:26.752652 0 \N 3332 \N 867 \N 1491 1.0 1 2019-11-23 18:20:57.634738 2019-11-23 18:20:57.634738 0 \N 3333 \N 597 \N 1492 1.0 1 2019-11-23 19:33:09.586644 2019-11-23 19:33:09.586644 0 \N 3334 \N 880 \N 1493 1.0 1 2019-11-23 19:51:09.843357 2019-11-23 19:51:09.843357 0 \N 3335 \N 891 \N 1494 1.0 1 2019-11-23 20:21:33.724886 2019-11-23 20:21:33.724886 0 \N 3336 \N 789 \N 1494 1.0 1 2019-11-23 20:21:33.7516 2019-11-23 20:21:33.7516 0 \N 3337 \N 717 \N \N 2.0 0 2019-11-23 20:55:13.48765 2019-11-23 20:55:13.48765 7 322 3338 \N 952 \N \N 1.0 0 2019-11-23 20:55:21.969518 2019-11-23 20:55:21.969518 7 321 3339 \N 760 \N \N 6.0 0 2019-11-23 20:55:35.45958 2019-11-23 20:55:35.45958 7 320 3340 \N 886 \N \N 6.0 0 2019-11-23 20:55:35.480724 2019-11-23 20:55:35.480724 7 320 3341 \N 829 \N 1495 1.0 1 2019-11-23 21:03:40.213982 2019-11-23 21:03:40.213982 0 \N 3342 \N 949 \N 1496 1.0 1 2019-11-23 21:54:14.319821 2019-11-23 21:54:14.319821 0 \N 3343 \N 942 \N 1497 1.0 1 2019-11-23 22:07:33.185194 2019-11-23 22:07:33.185194 0 \N 3344 \N 921 \N 1497 1.0 1 2019-11-23 22:07:33.224241 2019-11-23 22:07:33.224241 0 \N 3345 \N 890 205 \N 6.0 0 2019-11-23 22:26:41.227322 2019-11-23 22:26:41.227322 1 \N 3346 \N 890 \N 1498 1.0 1 2019-11-23 22:28:36.112088 2019-11-23 22:28:36.112088 0 \N 3347 \N 928 \N 1499 1.0 1 2019-11-23 22:30:39.929555 2019-11-23 22:30:39.929555 0 \N 3348 \N 949 \N 1500 1.0 1 2019-11-24 00:28:29.480353 2019-11-24 00:28:29.480353 0 \N 3349 \N 900 \N 1501 1.0 1 2019-11-24 00:59:09.645492 2019-11-24 00:59:09.645492 0 \N 3350 \N 369 \N 1502 1.0 1 2019-11-24 02:56:17.070882 2019-11-24 02:56:17.070882 0 \N 3351 \N 900 \N 1503 1.0 1 2019-11-24 19:22:31.402654 2019-11-24 19:22:31.402654 0 \N 3352 \N 682 \N 1504 1.0 1 2019-11-25 18:54:02.261696 2019-11-25 18:54:02.261696 0 \N 3353 \N 922 \N 1505 1.0 1 2019-11-25 19:42:47.842267 2019-11-25 19:42:47.842267 0 \N 3354 \N 880 \N 1506 1.0 1 2019-11-25 22:56:37.0382 2019-11-25 22:56:37.0382 0 \N 3355 \N 882 \N 1507 1.0 1 2019-11-26 00:10:49.482521 2019-11-26 00:10:49.482521 0 \N 3356 \N 953 206 \N 2.0 0 2019-11-26 01:28:41.401455 2019-11-26 01:28:41.401455 1 \N 3357 \N 953 \N \N 2.0 0 2019-11-26 01:32:46.052505 2019-11-26 01:32:46.052505 7 323 3358 \N 952 \N \N 4.0 0 2019-11-26 01:32:46.088402 2019-11-26 01:32:46.088402 7 323 3359 \N 361 \N \N 1.0 0 2019-11-26 02:16:47.452762 2019-11-26 02:16:47.452762 7 324 3360 \N 354 \N \N 1.0 0 2019-11-26 02:16:47.476847 2019-11-26 02:16:47.476847 7 324 3361 \N 717 \N 1508 1.0 1 2019-11-26 18:46:16.288195 2019-11-26 18:46:16.288195 0 \N 3362 \N 950 \N 1509 1.0 1 2019-11-26 20:41:29.295025 2019-11-26 20:41:29.295025 0 \N 3363 \N 623 \N 1510 1.0 1 2019-11-26 21:40:17.698285 2019-11-26 21:40:17.698285 0 \N 3364 \N 679 \N 1511 1.0 1 2019-11-26 22:22:39.752848 2019-11-26 22:22:39.752848 0 \N 3365 \N 954 207 \N 24.0 0 2019-11-26 22:35:49.623357 2019-11-26 22:35:49.623357 1 \N 3366 \N 955 207 \N 6.0 0 2019-11-26 22:35:49.637036 2019-11-26 22:35:49.637036 1 \N 3367 \N 956 207 \N 6.0 0 2019-11-26 22:35:49.650377 2019-11-26 22:35:49.650377 1 \N 3368 \N 957 207 \N 6.0 0 2019-11-26 22:35:49.664417 2019-11-26 22:35:49.664417 1 \N 3369 \N 958 208 \N 12.0 0 2019-11-26 22:44:39.47579 2019-11-26 22:44:39.47579 1 \N 3370 \N 959 208 \N 6.0 0 2019-11-26 22:44:39.48973 2019-11-26 22:44:39.48973 1 \N 3371 \N 960 208 \N 6.0 0 2019-11-26 22:44:39.502493 2019-11-26 22:44:39.502493 1 \N 3372 \N 961 208 \N 6.0 0 2019-11-26 22:44:39.517594 2019-11-26 22:44:39.517594 1 \N 3373 \N 962 209 \N 6.0 0 2019-11-26 22:48:26.223034 2019-11-26 22:48:26.223034 1 \N 3374 \N 963 209 \N 6.0 0 2019-11-26 22:48:26.246965 2019-11-26 22:48:26.246965 1 \N 3375 \N 958 \N \N 6.0 0 2019-11-26 22:51:39.773838 2019-11-26 22:51:39.773838 7 325 3376 \N 962 \N \N 6.0 0 2019-11-26 22:51:39.797541 2019-11-26 22:51:39.797541 7 325 3377 \N 957 \N \N 6.0 0 2019-11-26 22:51:39.832733 2019-11-26 22:51:39.832733 7 325 3378 \N 961 \N \N 6.0 0 2019-11-26 22:51:39.85693 2019-11-26 22:51:39.85693 7 325 3379 \N 963 \N \N 6.0 0 2019-11-26 22:51:39.879064 2019-11-26 22:51:39.879064 7 325 3380 \N 954 \N \N 12.0 0 2019-11-26 22:51:39.90148 2019-11-26 22:51:39.90148 7 325 3381 \N 664 \N \N 4.0 0 2019-11-26 23:16:18.995076 2019-11-26 23:16:18.995076 7 319 3382 \N 557 \N \N 1.0 0 2019-11-26 23:16:27.368514 2019-11-26 23:16:27.368514 7 326 3383 \N 875 \N \N 1.0 0 2019-11-26 23:16:27.389517 2019-11-26 23:16:27.389517 7 326 3384 \N 954 \N \N 12.0 0 2019-11-26 23:16:41.485128 2019-11-26 23:16:41.485128 7 327 3385 \N 960 \N \N 6.0 0 2019-11-26 23:16:41.510974 2019-11-26 23:16:41.510974 7 327 3386 \N 959 \N \N 6.0 0 2019-11-26 23:16:41.535428 2019-11-26 23:16:41.535428 7 327 3387 \N 956 \N \N 6.0 0 2019-11-26 23:16:41.561193 2019-11-26 23:16:41.561193 7 327 3388 \N 955 \N \N 6.0 0 2019-11-26 23:16:41.585445 2019-11-26 23:16:41.585445 7 327 3389 \N 949 \N 1512 1.0 1 2019-11-26 23:37:04.812382 2019-11-26 23:37:04.812382 0 \N 3390 \N 910 \N 1513 1.0 1 2019-11-26 23:37:42.877425 2019-11-26 23:37:42.877425 0 \N 3391 \N 961 \N 1514 1.0 1 2019-11-26 23:42:18.248003 2019-11-26 23:42:18.248003 0 \N 3392 \N 954 \N 1514 1.0 1 2019-11-26 23:42:18.277062 2019-11-26 23:42:18.277062 0 \N 3393 \N 398 \N 1515 1.0 1 2019-11-27 01:29:40.852568 2019-11-27 01:29:40.852568 0 \N 3394 \N 885 \N 1516 1.0 1 2019-11-27 02:37:52.0069 2019-11-27 02:37:52.0069 0 \N 3395 \N 955 \N 1517 1.0 1 2019-11-27 20:52:50.007084 2019-11-27 20:52:50.007084 0 \N 3396 \N 856 \N 1518 1.0 1 2019-11-27 22:13:42.016725 2019-11-27 22:13:42.016725 0 \N 3397 \N 369 \N 1519 1.0 1 2019-11-27 23:05:52.682418 2019-11-27 23:05:52.682418 0 \N 3398 \N 698 \N 1062 1.0 0 2019-11-27 23:54:00.273452 2019-11-27 23:54:00.273452 8 \N 3399 \N 875 \N 1520 1.0 1 2019-11-28 02:11:00.611071 2019-11-28 02:11:00.611071 0 \N 3400 \N 959 \N 1520 1.0 1 2019-11-28 02:11:00.640357 2019-11-28 02:11:00.640357 0 \N 3401 \N 887 \N \N 6.0 0 2019-11-28 20:12:27.878679 2019-11-28 20:12:27.878679 7 328 3402 \N 717 \N \N 1.0 0 2019-11-28 20:12:33.981986 2019-11-28 20:12:33.981986 7 330 3403 \N 928 \N 1521 1.0 1 2019-11-28 20:42:03.811368 2019-11-28 20:42:03.811368 0 \N 3404 \N 760 \N 1522 1.0 1 2019-11-28 20:52:11.193046 2019-11-28 20:52:11.193046 0 \N 3405 \N 874 \N 1523 1.0 1 2019-11-28 22:44:34.225392 2019-11-28 22:44:34.225392 0 \N 3406 \N 959 \N 1524 1.0 1 2019-11-29 01:57:34.36786 2019-11-29 01:57:34.36786 0 \N 3407 \N 946 \N 1525 1.0 1 2019-11-29 01:58:59.450687 2019-11-29 01:58:59.450687 0 \N 3408 \N 894 \N 1526 1.0 1 2019-11-29 02:02:58.236049 2019-11-29 02:02:58.236049 0 \N 3409 \N 624 \N 1527 1.0 1 2019-11-29 19:23:32.971023 2019-11-29 19:23:32.971023 0 \N 3410 \N 911 \N 1528 1.0 1 2019-11-29 22:05:59.707698 2019-11-29 22:05:59.707698 0 \N 3411 \N 872 \N 1529 1.0 1 2019-11-29 22:10:04.93882 2019-11-29 22:10:04.93882 0 \N 3412 \N 882 \N 1530 1.0 1 2019-11-29 23:17:12.441867 2019-11-29 23:17:12.441867 0 \N 3413 \N 882 \N 1530 1.0 0 2019-11-29 23:23:21.924183 2019-11-29 23:23:21.924183 3 \N 3414 \N 943 \N 1531 1.0 1 2019-11-29 23:30:10.129469 2019-11-29 23:30:10.129469 0 \N 3415 \N 947 \N 1531 1.0 1 2019-11-29 23:30:10.154443 2019-11-29 23:30:10.154443 0 \N 3416 \N 792 \N 1531 1.0 1 2019-11-29 23:30:10.178989 2019-11-29 23:30:10.178989 0 \N 3417 \N 950 \N 1531 1.0 1 2019-11-29 23:30:10.20464 2019-11-29 23:30:10.20464 0 \N 3418 \N 961 \N 1531 1.0 1 2019-11-29 23:30:10.230704 2019-11-29 23:30:10.230704 0 \N 3419 \N 882 \N 1532 1.0 1 2019-11-29 23:32:52.15763 2019-11-29 23:32:52.15763 0 \N 3420 \N 870 \N 1533 1.0 1 2019-11-30 00:38:11.221767 2019-11-30 00:38:11.221767 0 \N 3421 \N 699 \N 1534 1.0 1 2019-11-30 01:10:02.674198 2019-11-30 01:10:02.674198 0 \N 3422 \N 924 \N 1535 1.0 1 2019-11-30 01:52:05.881911 2019-11-30 01:52:05.881911 0 \N 3423 \N 903 \N 1536 1.0 1 2019-11-30 17:59:49.486224 2019-11-30 17:59:49.486224 0 \N 3424 \N 676 \N 1537 1.0 1 2019-11-30 18:19:57.326337 2019-11-30 18:19:57.326337 0 \N 3425 \N 783 \N \N 1.0 0 2019-11-30 18:31:30.624725 2019-11-30 18:31:30.624725 7 329 3426 \N 674 \N \N 4.0 0 2019-11-30 18:57:54.286186 2019-11-30 18:57:54.286186 7 331 3427 \N 759 \N 1538 1.0 1 2019-11-30 21:07:40.11597 2019-11-30 21:07:40.11597 0 \N 3428 \N 759 \N 1538 1.0 0 2019-11-30 21:07:54.476154 2019-11-30 21:07:54.476154 3 \N 3429 \N 759 \N 1539 1.0 1 2019-11-30 21:08:18.008239 2019-11-30 21:08:18.008239 0 \N 3430 \N 889 \N 1540 1.0 1 2019-11-30 23:33:10.312496 2019-11-30 23:33:10.312496 0 \N 3431 \N 889 \N 1541 1.0 1 2019-11-30 23:34:03.744606 2019-11-30 23:34:03.744606 0 \N 3432 \N 889 \N 1540 1.0 0 2019-11-30 23:35:22.87119 2019-11-30 23:35:22.87119 3 \N 3433 \N 953 \N 1542 1.0 1 2019-11-30 23:49:43.801952 2019-11-30 23:49:43.801952 0 \N 3434 \N 875 \N 1543 1.0 1 2019-12-01 01:27:41.605533 2019-12-01 01:27:41.605533 0 \N 3435 \N 654 \N 1544 1.0 1 2019-12-01 02:02:25.884373 2019-12-01 02:02:25.884373 0 \N 3436 \N 593 \N 1545 1.0 1 2019-12-01 02:05:09.22661 2019-12-01 02:05:09.22661 0 \N 3437 \N 950 \N 1546 1.0 1 2019-12-01 02:13:10.136984 2019-12-01 02:13:10.136984 0 \N 3438 \N 155 \N 1547 1.0 1 2019-12-01 02:13:33.595996 2019-12-01 02:13:33.595996 0 \N 3439 \N 140 \N 1548 1.0 1 2019-12-01 19:57:43.041747 2019-12-01 19:57:43.041747 0 \N 3440 \N 270 \N 1549 1.0 1 2019-12-01 20:58:48.945133 2019-12-01 20:58:48.945133 0 \N 3441 \N 889 \N 1550 1.0 1 2019-12-01 21:00:51.704549 2019-12-01 21:00:51.704549 0 \N 3442 \N 790 \N 1551 1.0 1 2019-12-01 23:03:09.061656 2019-12-01 23:03:09.061656 0 \N 3443 \N 955 \N 1552 1.0 1 2019-12-02 19:41:38.054578 2019-12-02 19:41:38.054578 0 \N 3444 \N 369 \N 1553 1.0 1 2019-12-02 20:52:50.745641 2019-12-02 20:52:50.745641 0 \N 3445 \N 796 \N 1554 1.0 1 2019-12-02 21:06:27.721777 2019-12-02 21:06:27.721777 0 \N 3446 \N 825 \N 1555 1.0 1 2019-12-03 01:34:45.60737 2019-12-03 01:34:45.60737 0 \N 3447 \N 877 \N 1556 1.0 1 2019-12-03 03:01:12.081868 2019-12-03 03:01:12.081868 0 \N 3448 \N 945 \N 1557 1.0 1 2019-12-03 17:59:04.975122 2019-12-03 17:59:04.975122 0 \N 3449 \N 883 \N 1558 1.0 1 2019-12-03 20:12:29.837444 2019-12-03 20:12:29.837444 0 \N 3450 \N 961 \N 1558 1.0 1 2019-12-03 20:12:29.86342 2019-12-03 20:12:29.86342 0 \N 3451 \N 782 \N 1559 1.0 1 2019-12-03 23:25:08.650623 2019-12-03 23:25:08.650623 0 \N 3452 \N 956 \N 1560 1.0 1 2019-12-04 00:53:16.460069 2019-12-04 00:53:16.460069 0 \N 3453 \N 892 \N 1561 1.0 1 2019-12-04 20:07:16.808447 2019-12-04 20:07:16.808447 0 \N 3454 \N 946 \N 1561 1.0 1 2019-12-04 20:07:16.836503 2019-12-04 20:07:16.836503 0 \N 3455 \N 476 \N 1562 1.0 1 2019-12-04 20:33:59.644507 2019-12-04 20:33:59.644507 0 \N 3456 \N 940 \N 1563 1.0 1 2019-12-04 20:41:09.153862 2019-12-04 20:41:09.153862 0 \N 3457 \N 805 \N 1564 1.0 1 2019-12-04 22:44:46.958455 2019-12-04 22:44:46.958455 0 \N 3458 \N 85 \N 1564 1.0 1 2019-12-04 22:44:46.983722 2019-12-04 22:44:46.983722 0 \N 3459 \N 698 \N \N 1.0 0 2019-12-04 23:18:00.735913 2019-12-04 23:18:00.735913 7 332 3460 \N 668 \N 1565 1.0 1 2019-12-04 23:18:24.765599 2019-12-04 23:18:24.765599 0 \N 3461 \N 698 \N 1565 1.0 1 2019-12-04 23:18:24.78977 2019-12-04 23:18:24.78977 0 \N 3462 \N 954 \N 1566 1.0 1 2019-12-04 23:33:40.201354 2019-12-04 23:33:40.201354 0 \N 3463 \N 899 \N 1567 1.0 1 2019-12-05 00:21:12.739271 2019-12-05 00:21:12.739271 0 \N 3464 \N 698 \N 1568 1.0 1 2019-12-05 00:30:31.577199 2019-12-05 00:30:31.577199 0 \N 3465 \N 893 \N 1569 1.0 1 2019-12-05 00:59:37.237267 2019-12-05 00:59:37.237267 0 \N 3466 \N 949 \N 1569 1.0 1 2019-12-05 00:59:37.268451 2019-12-05 00:59:37.268451 0 \N 3467 \N 948 \N 1570 1.0 1 2019-12-05 01:28:07.081266 2019-12-05 01:28:07.081266 0 \N 3468 \N 958 \N \N 6.0 0 2019-12-05 17:48:30.791229 2019-12-05 17:48:30.791229 7 335 3469 \N 717 \N \N 3.0 0 2019-12-05 17:48:30.817499 2019-12-05 17:48:30.817499 7 335 3470 \N 877 \N \N 6.0 0 2019-12-05 17:49:04.275187 2019-12-05 17:49:04.275187 7 336 3471 \N 698 \N \N 1.0 0 2019-12-05 17:49:13.196905 2019-12-05 17:49:13.196905 7 334 3472 \N 698 \N \N 1.0 0 2019-12-05 17:49:20.519326 2019-12-05 17:49:20.519326 7 333 3473 \N 681 \N \N 5.0 0 2019-12-05 18:30:17.835704 2019-12-05 18:30:17.835704 7 338 3474 \N 912 \N \N 1.0 0 2019-12-05 18:30:28.008723 2019-12-05 18:30:28.008723 7 337 3475 \N 948 \N 1571 1.0 1 2019-12-05 20:30:21.836645 2019-12-05 20:30:21.836645 0 \N 3476 \N 300 \N 1572 1.0 1 2019-12-05 20:55:29.193395 2019-12-05 20:55:29.193395 0 \N 3477 \N 788 \N 1572 1.0 1 2019-12-05 20:55:29.222692 2019-12-05 20:55:29.222692 0 \N 3478 \N 735 \N 1573 1.0 1 2019-12-05 21:38:53.41992 2019-12-05 21:38:53.41992 0 \N 3479 \N 735 \N 1573 1.0 0 2019-12-05 21:38:59.021732 2019-12-05 21:38:59.021732 3 \N 3480 \N 735 \N 1574 1.0 1 2019-12-05 21:40:15.851008 2019-12-05 21:40:15.851008 0 \N 3481 \N 749 \N 1575 1.0 1 2019-12-05 21:54:25.899445 2019-12-05 21:54:25.899445 0 \N 3482 \N 871 \N 1576 1.0 1 2019-12-05 22:04:34.939218 2019-12-05 22:04:34.939218 0 \N 3483 \N 755 \N 1577 1.0 1 2019-12-05 22:07:23.729107 2019-12-05 22:07:23.729107 0 \N 3484 \N 950 \N 1578 1.0 1 2019-12-05 22:33:06.646043 2019-12-05 22:33:06.646043 0 \N 3485 \N 889 \N 1579 1.0 1 2019-12-05 23:18:05.718544 2019-12-05 23:18:05.718544 0 \N 3486 \N 840 \N 1580 1.0 1 2019-12-05 23:49:21.836245 2019-12-05 23:49:21.836245 0 \N 3487 \N 691 \N 1581 1.0 1 2019-12-06 01:46:17.431753 2019-12-06 01:46:17.431753 0 \N 3488 \N 810 \N 1582 1.0 1 2019-12-06 17:41:43.046124 2019-12-06 17:41:43.046124 0 \N 3489 \N 964 210 \N 1.0 0 2019-12-06 17:54:09.710426 2019-12-06 17:54:09.710426 1 \N 3490 \N 965 210 \N 2.0 0 2019-12-06 17:54:09.733911 2019-12-06 17:54:09.733911 1 \N 3491 \N 966 210 \N 3.0 0 2019-12-06 17:54:09.755369 2019-12-06 17:54:09.755369 1 \N 3492 \N 717 210 \N 1.0 0 2019-12-06 17:54:09.778967 2019-12-06 17:54:09.778967 1 \N 3493 \N 703 210 \N 1.0 0 2019-12-06 17:54:09.801155 2019-12-06 17:54:09.801155 1 \N 3494 \N 953 211 \N 1.0 0 2019-12-06 17:54:57.955167 2019-12-06 17:54:57.955167 1 \N 3495 \N 882 \N 1583 1.0 1 2019-12-06 19:46:36.959015 2019-12-06 19:46:36.959015 0 \N 3496 \N 884 \N 1584 1.0 1 2019-12-07 00:05:14.430906 2019-12-07 00:05:14.430906 0 \N 3497 \N 668 \N 1585 1.0 1 2019-12-07 00:54:55.993135 2019-12-07 00:54:55.993135 0 \N 3498 \N 951 \N 1586 1.0 1 2019-12-07 01:08:45.663 2019-12-07 01:08:45.663 0 \N 3499 \N 760 \N 1587 1.0 1 2019-12-07 01:10:26.868541 2019-12-07 01:10:26.868541 0 \N 3500 \N 880 \N 1588 1.0 1 2019-12-07 02:29:39.318589 2019-12-07 02:29:39.318589 0 \N 3501 \N 872 \N 1589 1.0 1 2019-12-07 19:16:42.049814 2019-12-07 19:16:42.049814 0 \N 3502 \N 892 \N 1590 1.0 1 2019-12-07 19:36:44.42813 2019-12-07 19:36:44.42813 0 \N 3503 \N 910 \N 1591 1.0 1 2019-12-07 20:10:36.133561 2019-12-07 20:10:36.133561 0 \N 3504 \N 910 \N 1591 1.0 0 2019-12-07 20:10:54.858543 2019-12-07 20:10:54.858543 3 \N 3505 \N 910 \N 1592 1.0 1 2019-12-07 20:11:19.952576 2019-12-07 20:11:19.952576 0 \N 3506 \N 892 \N 1593 1.0 1 2019-12-07 20:19:43.720446 2019-12-07 20:19:43.720446 0 \N 3507 \N 884 \N 1594 1.0 1 2019-12-07 20:56:53.56319 2019-12-07 20:56:53.56319 0 \N 3508 \N 508 \N 1595 1.0 1 2019-12-07 21:27:57.223207 2019-12-07 21:27:57.223207 0 \N 3509 \N 509 \N 1596 1.0 1 2019-12-07 22:08:00.751024 2019-12-07 22:08:00.751024 0 \N 3510 \N 885 \N 1597 1.0 1 2019-12-07 22:08:32.67851 2019-12-07 22:08:32.67851 0 \N 3511 \N 884 \N 1598 1.0 1 2019-12-07 23:06:17.438816 2019-12-07 23:06:17.438816 0 \N 3512 \N 734 \N 1599 1.0 1 2019-12-07 23:23:01.878741 2019-12-07 23:23:01.878741 0 \N 3513 \N 890 \N 1599 1.0 1 2019-12-07 23:23:01.907199 2019-12-07 23:23:01.907199 0 \N 3514 \N 793 \N 1600 1.0 1 2019-12-07 23:24:06.543388 2019-12-07 23:24:06.543388 0 \N 3515 \N 846 \N 1601 1.0 1 2019-12-07 23:26:36.771986 2019-12-07 23:26:36.771986 0 \N 3516 \N 849 \N 1601 1.0 1 2019-12-07 23:26:36.793018 2019-12-07 23:26:36.793018 0 \N 3517 \N 760 \N 1602 1.0 1 2019-12-07 23:32:53.394332 2019-12-07 23:32:53.394332 0 \N 3518 \N 761 \N 1603 1.0 1 2019-12-07 23:39:32.797941 2019-12-07 23:39:32.797941 0 \N 3519 \N 369 \N 1604 1.0 1 2019-12-07 23:44:47.371734 2019-12-07 23:44:47.371734 0 \N 3520 \N 865 \N 1605 1.0 1 2019-12-07 23:45:00.413025 2019-12-07 23:45:00.413025 0 \N 3521 \N 682 \N 1606 1.0 1 2019-12-07 23:50:36.513222 2019-12-07 23:50:36.513222 0 \N 3522 \N 369 \N 1606 2.0 1 2019-12-07 23:50:36.535289 2019-12-07 23:50:36.535289 0 \N 3523 \N 679 \N 1607 1.0 1 2019-12-07 23:56:41.963833 2019-12-07 23:56:41.963833 0 \N 3524 \N 754 \N 1608 1.0 1 2019-12-08 00:03:04.448211 2019-12-08 00:03:04.448211 0 \N 3525 \N 484 \N 1609 1.0 1 2019-12-08 01:47:36.249017 2019-12-08 01:47:36.249017 0 \N 3526 \N 936 \N 1609 1.0 1 2019-12-08 01:47:36.272524 2019-12-08 01:47:36.272524 0 \N 3527 \N 930 \N 1609 1.0 1 2019-12-08 01:47:36.296192 2019-12-08 01:47:36.296192 0 \N 3528 \N 717 212 \N 2.0 0 2019-12-08 18:02:54.56742 2019-12-08 18:02:54.56742 1 \N 3529 \N 965 212 \N 3.0 0 2019-12-08 18:02:54.600678 2019-12-08 18:02:54.600678 1 \N 3530 \N 966 212 \N 2.0 0 2019-12-08 18:02:54.626304 2019-12-08 18:02:54.626304 1 \N 3531 \N 659 212 \N 1.0 0 2019-12-08 18:02:54.652169 2019-12-08 18:02:54.652169 1 \N 3532 \N 953 212 \N 1.0 0 2019-12-08 18:02:54.672625 2019-12-08 18:02:54.672625 1 \N 3533 \N 963 \N 1610 1.0 1 2019-12-08 18:20:01.34868 2019-12-08 18:20:01.34868 0 \N 3534 \N 789 \N 1611 1.0 1 2019-12-08 18:39:49.70477 2019-12-08 18:39:49.70477 0 \N 3535 \N 716 \N \N 1.0 0 2019-12-08 23:38:31.940287 2019-12-08 23:38:31.940287 7 339 3536 \N 720 \N \N 1.0 0 2019-12-08 23:38:31.961877 2019-12-08 23:38:31.961877 7 339 3537 \N 662 \N 1612 1.0 1 2019-12-09 17:38:02.953828 2019-12-09 17:38:02.953828 0 \N 3538 \N 806 \N 1613 1.0 1 2019-12-09 18:04:04.797566 2019-12-09 18:04:04.797566 0 \N 3539 \N 273 \N 1614 1.0 1 2019-12-09 18:53:41.17083 2019-12-09 18:53:41.17083 0 \N 3540 \N 946 \N 1615 1.0 1 2019-12-09 20:54:42.949941 2019-12-09 20:54:42.949941 0 \N 3541 \N 883 \N 1616 1.0 1 2019-12-09 21:34:15.433707 2019-12-09 21:34:15.433707 0 \N 3542 \N 961 \N 1616 1.0 1 2019-12-09 21:34:15.459373 2019-12-09 21:34:15.459373 0 \N 3543 \N 961 \N 1616 1.0 0 2019-12-09 21:42:03.259742 2019-12-09 21:42:03.259742 3 \N 3544 \N 883 \N 1616 1.0 0 2019-12-09 21:42:03.283462 2019-12-09 21:42:03.283462 3 \N 3545 \N 966 \N 1617 1.0 1 2019-12-09 22:41:56.331651 2019-12-09 22:41:56.331651 0 \N 3546 \N 717 \N 1617 1.0 1 2019-12-09 22:41:56.35579 2019-12-09 22:41:56.35579 0 \N 3547 \N 798 \N 1618 1.0 1 2019-12-09 22:52:44.374705 2019-12-09 22:52:44.374705 0 \N 3548 \N 598 \N 1619 1.0 1 2019-12-09 23:15:09.133004 2019-12-09 23:15:09.133004 0 \N 3549 \N 947 \N 1620 1.0 1 2019-12-10 01:13:55.46345 2019-12-10 01:13:55.46345 0 \N 3550 \N 674 \N 1621 1.0 1 2019-12-10 01:18:12.059989 2019-12-10 01:18:12.059989 0 \N 3551 \N 949 \N 1622 1.0 1 2019-12-10 02:31:30.775582 2019-12-10 02:31:30.775582 0 \N 3552 \N 466 \N 1622 1.0 1 2019-12-10 02:31:30.800905 2019-12-10 02:31:30.800905 0 \N 3553 \N 623 \N 1623 1.0 1 2019-12-10 18:24:18.473099 2019-12-10 18:24:18.473099 0 \N 3554 \N 926 \N 1624 1.0 1 2019-12-10 18:32:13.449116 2019-12-10 18:32:13.449116 0 \N 3555 \N 751 \N 1625 1.0 1 2019-12-10 18:38:50.372473 2019-12-10 18:38:50.372473 0 \N 3556 \N 950 \N 1626 1.0 1 2019-12-10 18:40:09.569702 2019-12-10 18:40:09.569702 0 \N 3557 \N 865 \N 1626 1.0 1 2019-12-10 18:40:09.592566 2019-12-10 18:40:09.592566 0 \N 3558 \N 791 \N 1626 1.0 1 2019-12-10 18:40:09.615975 2019-12-10 18:40:09.615975 0 \N 3559 \N 965 \N 1626 1.0 1 2019-12-10 18:40:09.639592 2019-12-10 18:40:09.639592 0 \N 3560 \N 623 \N 1627 1.0 1 2019-12-10 18:56:20.769773 2019-12-10 18:56:20.769773 0 \N 3561 \N 911 \N 1628 1.0 1 2019-12-10 19:02:22.093492 2019-12-10 19:02:22.093492 0 \N 3562 \N 682 \N 1629 1.0 1 2019-12-10 19:04:04.646426 2019-12-10 19:04:04.646426 0 \N 3563 \N 674 \N 1630 1.0 1 2019-12-10 20:43:38.179213 2019-12-10 20:43:38.179213 0 \N 3564 \N 674 \N 1630 1.0 0 2019-12-10 20:44:48.62513 2019-12-10 20:44:48.62513 3 \N 3565 \N 674 \N 1631 1.0 1 2019-12-10 20:47:32.347738 2019-12-10 20:47:32.347738 0 \N 3566 \N 674 \N 1631 1.0 0 2019-12-10 20:47:46.396619 2019-12-10 20:47:46.396619 3 \N 3567 \N 674 \N 1632 1.0 1 2019-12-10 20:48:54.514073 2019-12-10 20:48:54.514073 0 \N 3568 \N 751 \N 1632 1.0 1 2019-12-10 20:48:54.536407 2019-12-10 20:48:54.536407 0 \N 3569 \N 623 \N 1633 1.0 1 2019-12-10 21:15:58.920079 2019-12-10 21:15:58.920079 0 \N 3570 \N 662 \N 1634 1.0 1 2019-12-10 21:17:27.345511 2019-12-10 21:17:27.345511 0 \N 3571 \N 796 \N \N 5.0 0 2019-12-10 22:00:49.319932 2019-12-10 22:00:49.319932 7 340 3572 \N 463 \N 1635 1.0 1 2019-12-10 22:19:08.148569 2019-12-10 22:19:08.148569 0 \N 3573 \N 697 \N \N 1.0 0 2019-12-10 23:10:09.615677 2019-12-10 23:10:09.615677 7 341 3574 \N 911 \N \N 1.0 0 2019-12-10 23:15:55.338031 2019-12-10 23:15:55.338031 7 342 3575 \N 911 \N 1636 1.0 1 2019-12-10 23:27:35.415508 2019-12-10 23:27:35.415508 0 \N 3576 \N 917 \N 1636 1.0 1 2019-12-10 23:27:35.439335 2019-12-10 23:27:35.439335 0 \N 3577 \N 899 \N 1637 1.0 1 2019-12-10 23:47:05.137015 2019-12-10 23:47:05.137015 0 \N 3578 \N 967 213 \N 1.0 0 2019-12-11 00:06:15.70073 2019-12-11 00:06:15.70073 1 \N 3579 \N 689 213 \N 2.0 0 2019-12-11 00:06:15.728746 2019-12-11 00:06:15.728746 1 \N 3580 \N 880 \N 1638 1.0 1 2019-12-11 00:35:14.881622 2019-12-11 00:35:14.881622 0 \N 3581 \N 724 \N 1639 1.0 1 2019-12-11 01:52:15.979674 2019-12-11 01:52:15.979674 0 \N 3582 \N 788 \N 1640 1.0 1 2019-12-11 01:56:34.115243 2019-12-11 01:56:34.115243 0 \N 3583 \N 747 \N 1641 1.0 1 2019-12-11 17:41:24.546492 2019-12-11 17:41:24.546492 0 \N 3584 \N 692 \N 1642 1.0 1 2019-12-11 17:55:48.651183 2019-12-11 17:55:48.651183 0 \N 3585 \N 700 \N 1643 1.0 1 2019-12-11 19:19:17.708995 2019-12-11 19:19:17.708995 0 \N 3586 \N 959 \N 1644 1.0 1 2019-12-11 20:18:02.961171 2019-12-11 20:18:02.961171 0 \N 3587 \N 890 \N 1645 1.0 1 2019-12-11 20:29:30.806341 2019-12-11 20:29:30.806341 0 \N 3588 \N 674 \N 1646 1.0 1 2019-12-11 21:07:27.585503 2019-12-11 21:07:27.585503 0 \N 3589 \N 674 \N 1646 1.0 0 2019-12-11 21:09:57.449426 2019-12-11 21:09:57.449426 3 \N 3590 \N 674 \N 1647 1.0 1 2019-12-11 21:11:11.117704 2019-12-11 21:11:11.117704 0 \N 3591 \N 914 \N 1647 1.0 1 2019-12-11 21:11:11.141137 2019-12-11 21:11:11.141137 0 \N 3592 \N 875 \N 1648 1.0 1 2019-12-11 22:15:38.756463 2019-12-11 22:15:38.756463 0 \N 3593 \N 717 \N 1649 1.0 1 2019-12-11 22:26:45.934609 2019-12-11 22:26:45.934609 0 \N 3594 \N 919 \N 1649 1.0 1 2019-12-11 22:26:45.955201 2019-12-11 22:26:45.955201 0 \N 3595 \N 674 \N 1650 1.0 1 2019-12-12 00:08:06.401538 2019-12-12 00:08:06.401538 0 \N 3596 \N 893 \N 1651 1.0 1 2019-12-12 01:01:52.971632 2019-12-12 01:01:52.971632 0 \N 3597 \N 697 \N 1652 1.0 1 2019-12-12 01:02:25.587748 2019-12-12 01:02:25.587748 0 \N 3598 \N 760 \N 1653 1.0 1 2019-12-12 01:04:12.126384 2019-12-12 01:04:12.126384 0 \N 3599 \N 761 \N 1654 1.0 1 2019-12-12 01:16:02.763392 2019-12-12 01:16:02.763392 0 \N 3600 \N 663 \N 1655 1.0 1 2019-12-12 18:37:53.434931 2019-12-12 18:37:53.434931 0 \N 3601 \N 867 \N 1656 1.0 1 2019-12-12 18:39:45.723916 2019-12-12 18:39:45.723916 0 \N 3602 \N 682 \N 1657 1.0 1 2019-12-12 21:02:22.359195 2019-12-12 21:02:22.359195 0 \N 3603 \N 882 \N 1658 1.0 1 2019-12-12 21:52:29.694738 2019-12-12 21:52:29.694738 0 \N 3604 \N 734 \N 1659 1.0 1 2019-12-12 21:58:54.806145 2019-12-12 21:58:54.806145 0 \N 3605 \N 690 \N 1660 1.0 1 2019-12-12 22:08:33.651107 2019-12-12 22:08:33.651107 0 \N 3606 \N 965 \N 1661 1.0 1 2019-12-12 22:29:02.420688 2019-12-12 22:29:02.420688 0 \N 3607 \N 961 \N 1662 1.0 1 2019-12-12 23:49:09.331594 2019-12-12 23:49:09.331594 0 \N 3608 \N 950 \N 1663 1.0 1 2019-12-13 00:04:22.695942 2019-12-13 00:04:22.695942 0 \N 3609 \N 895 \N \N 4.0 0 2019-12-13 00:43:02.052534 2019-12-13 00:43:02.052534 7 344 3610 \N 646 \N \N 1.0 0 2019-12-13 00:47:15.327808 2019-12-13 00:47:15.327808 7 345 3611 \N 808 \N \N 3.0 0 2019-12-13 00:47:15.347745 2019-12-13 00:47:15.347745 7 345 3612 \N 797 \N \N 5.0 0 2019-12-13 00:47:15.366162 2019-12-13 00:47:15.366162 7 345 3613 \N 640 \N \N 5.0 0 2019-12-13 00:47:15.384378 2019-12-13 00:47:15.384378 7 345 3614 \N 642 \N \N 4.0 0 2019-12-13 00:47:15.402523 2019-12-13 00:47:15.402523 7 345 3615 \N 797 \N 1664 1.0 1 2019-12-13 00:49:00.482511 2019-12-13 00:49:00.482511 0 \N 3616 \N 961 \N 1665 1.0 1 2019-12-13 01:11:31.072288 2019-12-13 01:11:31.072288 0 \N 3617 \N 29 \N 1666 1.0 1 2019-12-13 02:57:12.743481 2019-12-13 02:57:12.743481 0 \N 3618 \N 29 \N 1666 1.0 0 2019-12-13 02:57:29.80331 2019-12-13 02:57:29.80331 3 \N 3619 \N 29 \N 1667 1.0 1 2019-12-13 02:58:00.835861 2019-12-13 02:58:00.835861 0 \N 3620 \N 800 \N 1668 1.0 1 2019-12-13 17:59:10.682871 2019-12-13 17:59:10.682871 0 \N 3621 \N 751 \N 1632 1.0 0 2019-12-13 19:22:30.157516 2019-12-13 19:22:30.157516 9 \N 3622 \N 674 \N 1632 1.0 0 2019-12-13 19:22:30.179428 2019-12-13 19:22:30.179428 9 \N 3623 \N 882 \N 1658 1.0 0 2019-12-13 19:24:31.483622 2019-12-13 19:24:31.483622 9 \N 3624 \N 674 \N 1669 1.0 1 2019-12-13 19:26:14.002575 2019-12-13 19:26:14.002575 0 \N 3625 \N 759 \N 1670 1.0 1 2019-12-13 21:38:21.406691 2019-12-13 21:38:21.406691 0 \N 3626 \N 679 \N 1671 1.0 1 2019-12-13 22:59:56.282302 2019-12-13 22:59:56.282302 0 \N 3627 \N 806 \N 1672 1.0 1 2019-12-13 23:28:56.92674 2019-12-13 23:28:56.92674 0 \N 3628 \N 672 \N 1673 1.0 1 2019-12-14 00:16:03.496279 2019-12-14 00:16:03.496279 0 \N 3629 \N 676 \N 1674 1.0 1 2019-12-14 01:39:36.436787 2019-12-14 01:39:36.436787 0 \N 3630 \N 963 \N 1675 1.0 1 2019-12-14 01:42:47.982926 2019-12-14 01:42:47.982926 0 \N 3631 \N 913 \N 1676 1.0 1 2019-12-14 02:11:12.440395 2019-12-14 02:11:12.440395 0 \N 3632 \N 476 \N 1677 1.0 1 2019-12-14 02:17:16.380838 2019-12-14 02:17:16.380838 0 \N 3633 \N 782 \N 1677 1.0 1 2019-12-14 02:17:16.40579 2019-12-14 02:17:16.40579 0 \N 3634 \N 760 \N 1677 1.0 1 2019-12-14 02:17:16.430399 2019-12-14 02:17:16.430399 0 \N 3635 \N 872 \N 1678 1.0 1 2019-12-14 19:01:13.843794 2019-12-14 19:01:13.843794 0 \N 3636 \N 672 \N 1679 1.0 1 2019-12-14 19:01:41.285825 2019-12-14 19:01:41.285825 0 \N 3637 \N 661 \N 1680 1.0 1 2019-12-14 19:05:57.487241 2019-12-14 19:05:57.487241 0 \N 3638 \N 872 \N 1681 1.0 1 2019-12-14 19:11:04.361569 2019-12-14 19:11:04.361569 0 \N 3639 \N 751 \N 1682 1.0 1 2019-12-14 19:17:20.147662 2019-12-14 19:17:20.147662 0 \N 3640 \N 695 \N 1683 1.0 1 2019-12-14 19:26:46.098606 2019-12-14 19:26:46.098606 0 \N 3641 \N 948 \N 1684 1.0 1 2019-12-14 19:29:26.52784 2019-12-14 19:29:26.52784 0 \N 3642 \N 724 \N 1685 1.0 1 2019-12-14 19:45:39.805537 2019-12-14 19:45:39.805537 0 \N 3643 \N 369 \N 1685 1.0 1 2019-12-14 19:45:39.827723 2019-12-14 19:45:39.827723 0 \N 3644 \N 887 \N 1686 1.0 1 2019-12-14 20:10:41.604604 2019-12-14 20:10:41.604604 0 \N 3645 \N 892 \N 1687 1.0 1 2019-12-14 20:39:50.330613 2019-12-14 20:39:50.330613 0 \N 3646 \N 676 \N 1688 1.0 1 2019-12-14 20:45:47.553367 2019-12-14 20:45:47.553367 0 \N 3647 \N 865 \N 1689 1.0 1 2019-12-14 21:04:43.31472 2019-12-14 21:04:43.31472 0 \N 3648 \N 950 \N 1690 1.0 1 2019-12-14 21:23:58.055178 2019-12-14 21:23:58.055178 0 \N 3649 \N 944 \N \N 3.0 0 2019-12-14 21:39:05.876184 2019-12-14 21:39:05.876184 7 346 3650 \N 775 \N \N 3.0 0 2019-12-14 21:39:05.89621 2019-12-14 21:39:05.89621 7 346 3651 \N 790 \N \N 4.0 0 2019-12-14 21:39:05.917277 2019-12-14 21:39:05.917277 7 346 3652 \N 670 \N \N 2.0 0 2019-12-14 21:39:05.934743 2019-12-14 21:39:05.934743 7 346 3653 \N 874 \N \N 2.0 0 2019-12-14 21:39:05.95898 2019-12-14 21:39:05.95898 7 346 3654 \N 668 \N \N 3.0 0 2019-12-14 21:39:14.017675 2019-12-14 21:39:14.017675 7 343 3655 \N 800 \N 1691 1.0 1 2019-12-14 22:10:31.356624 2019-12-14 22:10:31.356624 0 \N 3656 \N 797 \N 1691 1.0 1 2019-12-14 22:10:31.379752 2019-12-14 22:10:31.379752 0 \N 3657 \N 961 \N 1691 1.0 1 2019-12-14 22:10:31.401268 2019-12-14 22:10:31.401268 0 \N 3658 \N 476 \N 1692 1.0 1 2019-12-14 22:11:48.212508 2019-12-14 22:11:48.212508 0 \N 3659 \N 950 \N 1693 1.0 1 2019-12-14 23:18:53.539419 2019-12-14 23:18:53.539419 0 \N 3660 \N 884 \N 1694 1.0 1 2019-12-14 23:26:02.121627 2019-12-14 23:26:02.121627 0 \N 3661 \N 623 \N 1695 1.0 1 2019-12-14 23:45:39.461137 2019-12-14 23:45:39.461137 0 \N 3662 \N 866 \N 1696 1.0 1 2019-12-15 00:07:23.764881 2019-12-15 00:07:23.764881 0 \N 3663 \N 953 \N 1697 1.0 1 2019-12-15 00:13:21.646005 2019-12-15 00:13:21.646005 0 \N 3664 \N 953 \N 1697 1.0 0 2019-12-15 00:17:48.18839 2019-12-15 00:17:48.18839 3 \N 3665 \N 953 \N 1698 1.0 1 2019-12-15 00:18:46.849609 2019-12-15 00:18:46.849609 0 \N 3666 \N 752 \N 1699 1.0 1 2019-12-15 00:35:24.691725 2019-12-15 00:35:24.691725 0 \N 3667 \N 911 \N 1700 1.0 1 2019-12-15 00:38:36.985658 2019-12-15 00:38:36.985658 0 \N 3668 \N 884 \N 1701 1.0 1 2019-12-15 00:50:56.266331 2019-12-15 00:50:56.266331 0 \N 3669 \N 715 \N 1702 1.0 1 2019-12-15 01:00:38.374162 2019-12-15 01:00:38.374162 0 \N 3670 \N 910 \N 1703 1.0 1 2019-12-15 01:11:14.674782 2019-12-15 01:11:14.674782 0 \N 3671 \N 872 \N 1704 1.0 1 2019-12-15 01:15:23.615429 2019-12-15 01:15:23.615429 0 \N 3672 \N 124 \N 1704 1.0 1 2019-12-15 01:15:23.640517 2019-12-15 01:15:23.640517 0 \N 3673 \N 809 \N 1705 1.0 1 2019-12-15 18:16:38.382586 2019-12-15 18:16:38.382586 0 \N 3674 \N 954 \N 1706 1.0 1 2019-12-15 18:51:37.312689 2019-12-15 18:51:37.312689 0 \N 3675 \N 698 \N 1706 1.0 1 2019-12-15 18:51:37.336044 2019-12-15 18:51:37.336044 0 \N 3676 \N 634 \N 1707 1.0 1 2019-12-15 18:55:43.242392 2019-12-15 18:55:43.242392 0 \N 3677 \N 940 \N 1708 1.0 1 2019-12-15 19:42:22.182372 2019-12-15 19:42:22.182372 0 \N 3678 \N 655 \N 1709 1.0 1 2019-12-15 19:45:39.031024 2019-12-15 19:45:39.031024 0 \N 3679 \N 717 \N 1208 1.0 0 2019-12-15 21:18:50.111586 2019-12-15 21:18:50.111586 8 \N 3680 \N 615 \N 1215 1.0 0 2019-12-15 21:19:15.007287 2019-12-15 21:19:15.007287 8 \N 3681 \N 944 \N 1710 1.0 1 2019-12-15 22:24:42.273402 2019-12-15 22:24:42.273402 0 \N 3682 \N 954 \N 1710 1.0 1 2019-12-15 22:24:42.295683 2019-12-15 22:24:42.295683 0 \N 3683 \N 800 \N 1711 1.0 1 2019-12-15 22:25:52.473353 2019-12-15 22:25:52.473353 0 \N 3684 \N 697 \N 1712 1.0 1 2019-12-16 18:08:37.041335 2019-12-16 18:08:37.041335 0 \N 3685 \N 922 \N 1713 1.0 1 2019-12-16 18:24:47.424777 2019-12-16 18:24:47.424777 0 \N 3686 \N 587 \N 1714 1.0 1 2019-12-16 21:20:20.347565 2019-12-16 21:20:20.347565 0 \N 3687 \N 809 \N 1715 1.0 1 2019-12-16 22:55:24.622189 2019-12-16 22:55:24.622189 0 \N 3688 \N 797 \N 1716 1.0 1 2019-12-16 23:18:42.453767 2019-12-16 23:18:42.453767 0 \N 3689 \N 851 \N 1717 1.0 1 2019-12-17 00:35:48.252993 2019-12-17 00:35:48.252993 0 \N 3690 \N 929 \N 1717 1.0 1 2019-12-17 00:35:48.276846 2019-12-17 00:35:48.276846 0 \N 3691 \N 944 \N 1718 1.0 1 2019-12-17 00:49:55.011729 2019-12-17 00:49:55.011729 0 \N 3692 \N 924 \N 1719 1.0 1 2019-12-17 00:58:29.54874 2019-12-17 00:58:29.54874 0 \N 3693 \N 913 \N 1719 1.0 1 2019-12-17 00:58:29.570375 2019-12-17 00:58:29.570375 0 \N 3694 \N 948 \N 1720 1.0 1 2019-12-17 02:24:13.726834 2019-12-17 02:24:13.726834 0 \N 3695 \N 893 \N 1721 1.0 1 2019-12-17 17:20:26.454513 2019-12-17 17:20:26.454513 0 \N 3696 \N 948 \N 1722 1.0 1 2019-12-17 17:31:37.252384 2019-12-17 17:31:37.252384 0 \N 3697 \N 81 \N 1723 1.0 1 2019-12-17 18:35:56.232898 2019-12-17 18:35:56.232898 0 \N 3698 \N 760 \N 1724 1.0 1 2019-12-17 19:53:01.539212 2019-12-17 19:53:01.539212 0 \N 3699 \N 895 \N 1724 1.0 1 2019-12-17 19:53:01.560602 2019-12-17 19:53:01.560602 0 \N 3700 \N 887 \N 1725 1.0 1 2019-12-17 20:08:36.167897 2019-12-17 20:08:36.167897 0 \N 3701 \N 822 \N 1726 1.0 1 2019-12-17 22:50:21.372848 2019-12-17 22:50:21.372848 0 \N 3702 \N 888 \N 1727 1.0 1 2019-12-17 23:54:30.549185 2019-12-17 23:54:30.549185 0 \N 3703 \N 874 \N \N 5.0 0 2019-12-18 00:13:46.717759 2019-12-18 00:13:46.717759 7 348 3704 \N 951 \N \N 5.0 0 2019-12-18 00:13:46.737721 2019-12-18 00:13:46.737721 7 348 3705 \N 889 \N \N 5.0 0 2019-12-18 00:13:46.753755 2019-12-18 00:13:46.753755 7 348 3706 \N 807 \N \N 5.0 0 2019-12-18 00:13:46.772417 2019-12-18 00:13:46.772417 7 348 3707 \N 696 \N \N 3.0 0 2019-12-18 00:13:46.790604 2019-12-18 00:13:46.790604 7 348 3708 \N 864 \N 1728 1.0 1 2019-12-18 00:40:45.159005 2019-12-18 00:40:45.159005 0 \N 3709 \N 886 \N \N 7.0 0 2019-12-18 01:12:49.706615 2019-12-18 01:12:49.706615 7 350 3710 \N 950 \N \N 1.0 0 2019-12-18 01:12:49.731682 2019-12-18 01:12:49.731682 7 350 3711 \N 886 \N \N 7.0 0 2019-12-18 01:12:49.804665 2019-12-18 01:12:49.804665 7 350 3712 \N 950 \N \N 1.0 0 2019-12-18 01:12:49.828158 2019-12-18 01:12:49.828158 7 350 3713 \N 701 \N \N 3.0 0 2019-12-18 01:13:03.152193 2019-12-18 01:13:03.152193 7 349 3714 \N 739 \N \N 3.0 0 2019-12-18 01:13:03.171688 2019-12-18 01:13:03.171688 7 349 3715 \N 738 \N \N 4.0 0 2019-12-18 01:13:03.193088 2019-12-18 01:13:03.193088 7 349 3716 \N 790 \N \N 2.0 0 2019-12-18 01:13:03.213179 2019-12-18 01:13:03.213179 7 349 3717 \N 758 \N \N 6.0 0 2019-12-18 01:13:03.230834 2019-12-18 01:13:03.230834 7 349 3718 \N 688 \N \N 5.0 0 2019-12-18 01:13:03.248857 2019-12-18 01:13:03.248857 7 349 3719 \N 870 \N \N 5.0 0 2019-12-18 01:13:03.267001 2019-12-18 01:13:03.267001 7 349 3720 \N 681 \N \N 4.0 0 2019-12-18 01:13:03.283672 2019-12-18 01:13:03.283672 7 349 3721 \N 125 \N \N 1.0 0 2019-12-18 01:13:03.30552 2019-12-18 01:13:03.30552 7 349 3722 \N 761 \N \N 1.0 0 2019-12-18 01:13:03.325013 2019-12-18 01:13:03.325013 7 349 3723 \N 804 \N \N 6.0 0 2019-12-18 01:13:03.345018 2019-12-18 01:13:03.345018 7 349 3724 \N 678 \N \N 1.0 0 2019-12-18 01:13:03.364497 2019-12-18 01:13:03.364497 7 349 3725 \N 957 \N \N 6.0 0 2019-12-18 01:13:03.384697 2019-12-18 01:13:03.384697 7 349 3726 \N 791 \N \N 3.0 0 2019-12-18 01:13:03.404768 2019-12-18 01:13:03.404768 7 349 3727 \N 682 \N \N 3.0 0 2019-12-18 01:13:12.844009 2019-12-18 01:13:12.844009 7 347 3728 \N 672 \N \N 5.0 0 2019-12-18 01:13:12.868288 2019-12-18 01:13:12.868288 7 347 3729 \N 682 \N \N 3.0 0 2019-12-18 01:13:13.428655 2019-12-18 01:13:13.428655 7 347 3730 \N 672 \N \N 5.0 0 2019-12-18 01:13:13.45132 2019-12-18 01:13:13.45132 7 347 3731 \N 966 \N 1729 1.0 1 2019-12-18 01:58:30.60407 2019-12-18 01:58:30.60407 0 \N 3732 \N 793 \N 1730 1.0 1 2019-12-18 19:51:35.67994 2019-12-18 19:51:35.67994 0 \N 3733 \N 800 \N 1731 1.0 1 2019-12-18 20:27:23.407913 2019-12-18 20:27:23.407913 0 \N 3734 \N 559 \N 1732 1.0 1 2019-12-18 20:47:47.780006 2019-12-18 20:47:47.780006 0 \N 3735 \N 893 \N 1733 1.0 1 2019-12-18 20:53:36.355698 2019-12-18 20:53:36.355698 0 \N 3736 \N 886 \N 1734 1.0 1 2019-12-18 21:58:26.733213 2019-12-18 21:58:26.733213 0 \N 3737 \N 954 \N 1735 1.0 1 2019-12-18 22:47:56.327141 2019-12-18 22:47:56.327141 0 \N 3738 \N 947 \N 1735 1.0 1 2019-12-18 22:47:56.348896 2019-12-18 22:47:56.348896 0 \N 3739 \N 938 \N 1736 1.0 1 2019-12-18 23:31:47.258436 2019-12-18 23:31:47.258436 0 \N 3740 \N 948 \N \N 2.0 0 2019-12-18 23:40:28.617986 2019-12-18 23:40:28.617986 7 353 3741 \N 776 \N \N 3.0 0 2019-12-18 23:40:44.260032 2019-12-18 23:40:44.260032 7 355 3742 \N 777 \N \N 2.0 0 2019-12-18 23:40:44.296462 2019-12-18 23:40:44.296462 7 355 3743 \N 676 \N \N 3.0 0 2019-12-18 23:40:44.312461 2019-12-18 23:40:44.312461 7 355 3744 \N 911 \N \N 3.0 0 2019-12-18 23:40:44.327834 2019-12-18 23:40:44.327834 7 355 3745 \N 891 \N 1737 1.0 1 2019-12-18 23:50:52.683654 2019-12-18 23:50:52.683654 0 \N 3746 \N 559 \N 1738 1.0 1 2019-12-19 00:27:58.218328 2019-12-19 00:27:58.218328 0 \N 3747 \N 954 \N 1739 1.0 1 2019-12-19 00:45:07.662953 2019-12-19 00:45:07.662953 0 \N 3748 \N 804 \N 1739 1.0 1 2019-12-19 00:45:07.692105 2019-12-19 00:45:07.692105 0 \N 3749 \N 961 \N 1662 1.0 0 2019-12-19 01:17:49.765206 2019-12-19 01:17:49.765206 9 \N 3750 \N 961 \N 1740 1.0 1 2019-12-19 01:20:38.983801 2019-12-19 01:20:38.983801 0 \N 3751 \N 789 \N 1741 1.0 1 2019-12-19 01:25:40.918698 2019-12-19 01:25:40.918698 0 \N 3752 \N 903 \N 1741 1.0 1 2019-12-19 01:25:40.941114 2019-12-19 01:25:40.941114 0 \N 3753 \N 911 \N 1742 1.0 1 2019-12-19 01:44:17.398717 2019-12-19 01:44:17.398717 0 \N 3754 \N 877 \N 1743 1.0 1 2019-12-19 01:47:22.437544 2019-12-19 01:47:22.437544 0 \N 3755 \N 865 \N 1743 1.0 1 2019-12-19 01:47:22.458788 2019-12-19 01:47:22.458788 0 \N 3756 \N 567 \N \N 3.0 0 2019-12-19 02:03:54.685045 2019-12-19 02:03:54.685045 7 351 3757 \N 788 \N \N 1.0 0 2019-12-19 02:04:51.649663 2019-12-19 02:04:51.649663 7 352 3758 \N 786 \N \N 2.0 0 2019-12-19 02:04:51.689961 2019-12-19 02:04:51.689961 7 352 3759 \N 798 \N \N 3.0 0 2019-12-19 02:04:59.68019 2019-12-19 02:04:59.68019 7 354 3760 \N 793 \N \N 2.0 0 2019-12-19 02:05:07.053274 2019-12-19 02:05:07.053274 7 356 3761 \N 676 \N 1744 1.0 1 2019-12-19 02:33:50.609328 2019-12-19 02:33:50.609328 0 \N 3762 \N 791 \N 1744 1.0 1 2019-12-19 02:33:50.63395 2019-12-19 02:33:50.63395 0 \N 3763 \N 950 \N 1745 1.0 1 2019-12-19 02:51:36.284769 2019-12-19 02:51:36.284769 0 \N 3764 \N 937 \N 1745 1.0 1 2019-12-19 02:51:36.304909 2019-12-19 02:51:36.304909 0 \N 3765 \N 886 \N 1746 1.0 1 2019-12-19 17:34:16.661347 2019-12-19 17:34:16.661347 0 \N 3766 \N 191 \N 1747 1.0 1 2019-12-19 18:22:44.232018 2019-12-19 18:22:44.232018 0 \N 3767 \N 676 \N 1748 1.0 1 2019-12-19 18:34:37.040369 2019-12-19 18:34:37.040369 0 \N 3768 \N 597 \N 1749 1.0 1 2019-12-19 19:45:41.624782 2019-12-19 19:45:41.624782 0 \N 3769 \N 671 \N 1750 1.0 1 2019-12-19 19:55:28.618148 2019-12-19 19:55:28.618148 0 \N 3770 \N 877 \N 1751 1.0 1 2019-12-19 20:20:48.528796 2019-12-19 20:20:48.528796 0 \N 3771 \N 743 \N 1751 1.0 1 2019-12-19 20:20:48.550876 2019-12-19 20:20:48.550876 0 \N 3772 \N 855 \N 1752 1.0 1 2019-12-19 20:41:20.105483 2019-12-19 20:41:20.105483 0 \N 3773 \N 948 \N 1753 1.0 1 2019-12-19 22:05:57.229524 2019-12-19 22:05:57.229524 0 \N 3774 \N 865 \N 1754 1.0 1 2019-12-19 22:15:46.527987 2019-12-19 22:15:46.527987 0 \N 3775 \N 717 \N 1755 1.0 1 2019-12-19 23:06:14.504474 2019-12-19 23:06:14.504474 0 \N 3776 \N 893 \N 1756 1.0 1 2019-12-20 01:45:13.844614 2019-12-20 01:45:13.844614 0 \N 3777 \N 891 \N \N 3.0 0 2019-12-20 02:13:09.725225 2019-12-20 02:13:09.725225 7 357 3778 \N 875 \N 1757 1.0 1 2019-12-20 02:38:38.272344 2019-12-20 02:38:38.272344 0 \N 3779 \N 670 \N \N 4.0 0 2019-12-20 17:25:13.707826 2019-12-20 17:25:13.707826 7 359 3780 \N 875 \N \N 1.0 0 2019-12-20 17:25:14.700338 2019-12-20 17:25:14.700338 7 359 3781 \N 887 \N \N 3.0 0 2019-12-20 17:52:58.795228 2019-12-20 17:52:58.795228 7 358 3782 \N 900 \N 1758 1.0 1 2019-12-20 20:30:01.035079 2019-12-20 20:30:01.035079 0 \N 3783 \N 874 \N 1759 1.0 1 2019-12-20 21:29:16.439952 2019-12-20 21:29:16.439952 0 \N 3784 \N 805 \N 1760 1.0 1 2019-12-20 21:31:45.903492 2019-12-20 21:31:45.903492 0 \N 3785 \N 873 \N 1761 1.0 1 2019-12-20 21:38:02.593391 2019-12-20 21:38:02.593391 0 \N 3786 \N 891 \N 1762 1.0 1 2019-12-20 21:59:50.846782 2019-12-20 21:59:50.846782 0 \N 3787 \N 891 \N 1762 1.0 0 2019-12-20 21:59:59.797404 2019-12-20 21:59:59.797404 3 \N 3788 \N 891 \N 1763 1.0 1 2019-12-20 22:00:56.59278 2019-12-20 22:00:56.59278 0 \N 3789 \N 956 \N 1764 1.0 1 2019-12-20 23:18:22.159125 2019-12-20 23:18:22.159125 0 \N 3790 \N 954 \N 1765 1.0 1 2019-12-20 23:25:15.258359 2019-12-20 23:25:15.258359 0 \N 3791 \N 717 \N 1766 1.0 1 2019-12-20 23:38:44.02833 2019-12-20 23:38:44.02833 0 \N 3792 \N 865 \N 1767 1.0 1 2019-12-20 23:55:39.968902 2019-12-20 23:55:39.968902 0 \N 3793 \N 755 \N 1768 1.0 1 2019-12-21 02:22:12.450522 2019-12-21 02:22:12.450522 0 \N 3794 \N 968 214 \N 1.0 0 2019-12-21 17:57:22.491151 2019-12-21 17:57:22.491151 1 \N 3795 \N 689 214 \N 2.0 0 2019-12-21 17:57:22.51234 2019-12-21 17:57:22.51234 1 \N 3796 \N 895 \N 1769 1.0 1 2019-12-21 18:18:40.986051 2019-12-21 18:18:40.986051 0 \N 3797 \N 886 \N 1770 1.0 1 2019-12-21 18:22:20.241678 2019-12-21 18:22:20.241678 0 \N 3798 \N 886 \N 1770 1.0 0 2019-12-21 18:23:36.749503 2019-12-21 18:23:36.749503 3 \N 3799 \N 928 \N 1771 1.0 1 2019-12-21 18:24:08.323465 2019-12-21 18:24:08.323465 0 \N 3800 \N 886 \N 1771 1.0 1 2019-12-21 18:24:08.343866 2019-12-21 18:24:08.343866 0 \N 3801 \N 369 \N 1772 2.0 1 2019-12-21 18:38:32.426437 2019-12-21 18:38:32.426437 0 \N 3802 \N 903 \N 1773 1.0 1 2019-12-21 19:03:24.287023 2019-12-21 19:03:24.287023 0 \N 3803 \N 741 \N 1774 1.0 1 2019-12-21 19:08:14.547961 2019-12-21 19:08:14.547961 0 \N 3804 \N 610 \N 1775 1.0 1 2019-12-21 19:17:17.45545 2019-12-21 19:17:17.45545 0 \N 3805 \N 676 \N 1776 1.0 1 2019-12-21 19:29:18.084637 2019-12-21 19:29:18.084637 0 \N 3806 \N 737 \N 1777 1.0 1 2019-12-21 19:39:12.625606 2019-12-21 19:39:12.625606 0 \N 3807 \N 832 \N 1778 1.0 1 2019-12-21 20:23:59.345816 2019-12-21 20:23:59.345816 0 \N 3808 \N 831 \N 1778 1.0 1 2019-12-21 20:23:59.369814 2019-12-21 20:23:59.369814 0 \N 3809 \N 811 \N 1778 1.0 1 2019-12-21 20:23:59.391771 2019-12-21 20:23:59.391771 0 \N 3810 \N 813 \N 1778 1.0 1 2019-12-21 20:23:59.413494 2019-12-21 20:23:59.413494 0 \N 3811 \N 812 \N 1778 1.0 1 2019-12-21 20:23:59.436277 2019-12-21 20:23:59.436277 0 \N 3812 \N 887 \N 1779 1.0 1 2019-12-21 20:49:07.420107 2019-12-21 20:49:07.420107 0 \N 3813 \N 757 \N 1780 1.0 1 2019-12-21 20:59:54.937957 2019-12-21 20:59:54.937957 0 \N 3814 \N 701 \N 1781 1.0 1 2019-12-21 21:11:01.164495 2019-12-21 21:11:01.164495 0 \N 3815 \N 762 \N 1781 1.0 1 2019-12-21 21:11:01.198136 2019-12-21 21:11:01.198136 0 \N 3816 \N 874 \N 1782 1.0 1 2019-12-21 21:16:00.87861 2019-12-21 21:16:00.87861 0 \N 3817 \N 173 \N 1782 1.0 1 2019-12-21 21:16:00.903195 2019-12-21 21:16:00.903195 0 \N 3818 \N 927 \N \N 1.0 0 2019-12-21 21:25:05.031409 2019-12-21 21:25:05.031409 7 362 3819 \N 873 \N 1783 1.0 1 2019-12-21 21:25:50.835601 2019-12-21 21:25:50.835601 0 \N 3820 \N 678 \N 1783 1.0 1 2019-12-21 21:25:50.856828 2019-12-21 21:25:50.856828 0 \N 3821 \N 927 \N 1784 2.0 1 2019-12-21 21:27:19.986311 2019-12-21 21:27:19.986311 0 \N 3822 \N 674 \N \N 1.0 0 2019-12-21 21:35:15.148868 2019-12-21 21:35:15.148868 7 363 3823 \N 674 \N 1785 1.0 1 2019-12-21 21:35:53.141096 2019-12-21 21:35:53.141096 0 \N 3824 \N 791 \N 1786 1.0 1 2019-12-21 21:43:40.80023 2019-12-21 21:43:40.80023 0 \N 3825 \N 958 \N 1787 1.0 1 2019-12-21 22:08:41.429489 2019-12-21 22:08:41.429489 0 \N 3826 \N 897 \N 1787 1.0 1 2019-12-21 22:08:41.450788 2019-12-21 22:08:41.450788 0 \N 3827 \N 883 \N 1787 1.0 1 2019-12-21 22:08:41.471562 2019-12-21 22:08:41.471562 0 \N 3828 \N 623 \N 1788 1.0 1 2019-12-21 22:23:32.835484 2019-12-21 22:23:32.835484 0 \N 3829 \N 664 \N \N 1.0 0 2019-12-21 22:24:49.030025 2019-12-21 22:24:49.030025 7 364 3830 \N 800 \N 1789 1.0 1 2019-12-21 22:25:20.225428 2019-12-21 22:25:20.225428 0 \N 3831 \N 960 \N \N 6.0 0 2019-12-21 22:27:46.165634 2019-12-21 22:27:46.165634 7 365 3832 \N 953 215 \N 1.0 0 2019-12-21 22:44:22.108475 2019-12-21 22:44:22.108475 1 \N 3833 \N 807 \N 1790 1.0 1 2019-12-21 22:51:57.340727 2019-12-21 22:51:57.340727 0 \N 3834 \N 757 \N 1791 1.0 1 2019-12-21 22:52:08.188636 2019-12-21 22:52:08.188636 0 \N 3835 \N 757 \N 1791 1.0 0 2019-12-21 22:52:42.117301 2019-12-21 22:52:42.117301 3 \N 3836 \N 757 \N 1792 1.0 1 2019-12-21 22:53:15.061558 2019-12-21 22:53:15.061558 0 \N 3837 \N 664 \N 1793 1.0 1 2019-12-21 22:57:27.307804 2019-12-21 22:57:27.307804 0 \N 3838 \N 960 \N 1793 1.0 1 2019-12-21 22:57:27.328708 2019-12-21 22:57:27.328708 0 \N 3839 \N 784 \N 1794 1.0 1 2019-12-21 23:01:00.423424 2019-12-21 23:01:00.423424 0 \N 3840 \N 893 \N 1794 1.0 1 2019-12-21 23:01:00.448491 2019-12-21 23:01:00.448491 0 \N 3841 \N 757 \N 1794 1.0 1 2019-12-21 23:01:00.47235 2019-12-21 23:01:00.47235 0 \N 3842 \N 953 \N 1795 1.0 1 2019-12-21 23:10:27.060757 2019-12-21 23:10:27.060757 0 \N 3843 \N 676 \N 1795 1.0 1 2019-12-21 23:10:27.091702 2019-12-21 23:10:27.091702 0 \N 3844 \N 799 \N 1796 1.0 1 2019-12-22 00:00:49.866581 2019-12-22 00:00:49.866581 0 \N 3845 \N 689 \N \N 1.0 0 2019-12-22 00:38:57.934833 2019-12-22 00:38:57.934833 7 361 3846 \N 49 \N \N 1.0 0 2019-12-22 00:39:12.622746 2019-12-22 00:39:12.622746 7 360 3847 \N 56 \N \N 1.0 0 2019-12-22 00:39:12.640641 2019-12-22 00:39:12.640641 7 360 3848 \N 439 \N \N 1.0 0 2019-12-22 00:39:12.65835 2019-12-22 00:39:12.65835 7 360 3849 \N 449 \N \N 1.0 0 2019-12-22 00:39:12.677182 2019-12-22 00:39:12.677182 7 360 3850 \N 721 \N \N 1.0 0 2019-12-22 00:39:12.697086 2019-12-22 00:39:12.697086 7 360 3851 \N 891 \N \N 3.0 0 2019-12-22 00:42:31.208462 2019-12-22 00:42:31.208462 7 366 3852 \N 757 \N \N 3.0 0 2019-12-22 00:42:31.258282 2019-12-22 00:42:31.258282 7 366 3853 \N 893 \N \N 4.0 0 2019-12-22 00:42:31.278101 2019-12-22 00:42:31.278101 7 366 3854 \N 949 \N 1797 1.0 1 2019-12-22 01:21:16.034885 2019-12-22 01:21:16.034885 0 \N 3855 \N 949 \N 1797 1.0 0 2019-12-22 01:21:26.379026 2019-12-22 01:21:26.379026 3 \N 3856 \N 949 \N 1798 1.0 1 2019-12-22 01:22:09.368321 2019-12-22 01:22:09.368321 0 \N 3857 \N 783 \N 1799 1.0 1 2019-12-22 01:32:13.39638 2019-12-22 01:32:13.39638 0 \N 3858 \N 569 \N 1800 1.0 1 2019-12-22 01:36:35.467802 2019-12-22 01:36:35.467802 0 \N 3859 \N 954 \N 1800 1.0 1 2019-12-22 01:36:35.493552 2019-12-22 01:36:35.493552 0 \N 3860 \N 870 \N 1801 1.0 1 2019-12-22 02:04:39.924222 2019-12-22 02:04:39.924222 0 \N 3861 \N 895 \N \N 1.0 0 2019-12-22 02:06:27.843274 2019-12-22 02:06:27.843274 7 368 3862 \N 895 \N 1802 1.0 1 2019-12-22 02:08:51.622988 2019-12-22 02:08:51.622988 0 \N 3863 \N 895 \N 1803 1.0 1 2019-12-22 02:55:19.883737 2019-12-22 02:55:19.883737 0 \N 3864 \N 895 \N 1803 1.0 0 2019-12-22 03:01:39.119729 2019-12-22 03:01:39.119729 3 \N 3865 \N 895 \N 1804 1.0 1 2019-12-22 03:02:41.985602 2019-12-22 03:02:41.985602 0 \N 3866 \N 757 \N 1804 1.0 1 2019-12-22 03:02:42.007541 2019-12-22 03:02:42.007541 0 \N 3867 \N 946 \N 1805 1.0 1 2019-12-22 18:03:43.775633 2019-12-22 18:03:43.775633 0 \N 3868 \N 923 \N 1805 1.0 1 2019-12-22 18:03:43.804311 2019-12-22 18:03:43.804311 0 \N 3869 \N 960 \N 1805 1.0 1 2019-12-22 18:03:43.830182 2019-12-22 18:03:43.830182 0 \N 3870 \N 963 \N 1806 1.0 1 2019-12-22 18:29:14.234732 2019-12-22 18:29:14.234732 0 \N 3871 \N 895 \N 1807 1.0 1 2019-12-22 18:33:16.136146 2019-12-22 18:33:16.136146 0 \N 3872 \N 693 \N 1808 1.0 1 2019-12-22 18:44:46.505883 2019-12-22 18:44:46.505883 0 \N 3873 \N 746 \N 1809 1.0 1 2019-12-22 18:54:33.372607 2019-12-22 18:54:33.372607 0 \N 3874 \N 557 \N 1810 1.0 1 2019-12-22 18:55:37.744097 2019-12-22 18:55:37.744097 0 \N 3875 \N 891 \N 1810 1.0 1 2019-12-22 18:55:37.765455 2019-12-22 18:55:37.765455 0 \N 3876 \N 775 \N \N 3.0 0 2019-12-22 19:03:46.069132 2019-12-22 19:03:46.069132 7 370 3877 \N 775 \N 1811 1.0 1 2019-12-22 19:04:13.389111 2019-12-22 19:04:13.389111 0 \N 3878 \N 775 \N 1811 1.0 0 2019-12-22 19:05:08.40373 2019-12-22 19:05:08.40373 3 \N 3879 \N 954 \N \N 2.0 0 2019-12-22 19:56:05.372987 2019-12-22 19:56:05.372987 7 369 3880 \N 571 \N \N 4.0 0 2019-12-22 19:56:05.393011 2019-12-22 19:56:05.393011 7 369 3881 \N 954 \N \N 2.0 0 2019-12-22 19:56:14.819816 2019-12-22 19:56:14.819816 7 371 3882 \N 869 \N \N 3.0 0 2019-12-22 19:56:14.843604 2019-12-22 19:56:14.843604 7 371 3883 \N 957 \N \N 3.0 0 2019-12-22 19:56:14.865417 2019-12-22 19:56:14.865417 7 371 3884 \N 891 \N 1810 1.0 0 2019-12-22 20:06:52.316902 2019-12-22 20:06:52.316902 3 \N 3885 \N 557 \N 1810 1.0 0 2019-12-22 20:06:52.336213 2019-12-22 20:06:52.336213 3 \N 3886 \N 891 \N 1812 1.0 1 2019-12-22 20:09:08.491387 2019-12-22 20:09:08.491387 0 \N 3887 \N 557 \N 1812 1.0 1 2019-12-22 20:09:08.513586 2019-12-22 20:09:08.513586 0 \N 3888 \N 873 \N 1813 1.0 1 2019-12-22 20:19:51.673039 2019-12-22 20:19:51.673039 0 \N 3889 \N 783 \N 1814 1.0 1 2019-12-22 20:32:45.758274 2019-12-22 20:32:45.758274 0 \N 3890 \N 866 \N 1815 1.0 1 2019-12-22 20:37:47.482182 2019-12-22 20:37:47.482182 0 \N 3891 \N 689 \N 1816 1.0 1 2019-12-22 20:39:38.248629 2019-12-22 20:39:38.248629 0 \N 3892 \N 910 \N 1817 1.0 1 2019-12-22 20:48:44.622216 2019-12-22 20:48:44.622216 0 \N 3893 \N 690 \N 1818 1.0 1 2019-12-22 20:58:26.838795 2019-12-22 20:58:26.838795 0 \N 3894 \N 824 \N 1819 1.0 1 2019-12-22 21:09:10.431145 2019-12-22 21:09:10.431145 0 \N 3895 \N 661 \N 1820 1.0 1 2019-12-22 21:52:16.994217 2019-12-22 21:52:16.994217 0 \N 3896 \N 623 \N 1821 1.0 1 2019-12-22 22:03:48.849601 2019-12-22 22:03:48.849601 0 \N 3897 \N 623 \N 1821 1.0 0 2019-12-22 22:04:20.586517 2019-12-22 22:04:20.586517 3 \N 3898 \N 385 \N 1822 1.0 1 2019-12-22 22:05:56.981435 2019-12-22 22:05:56.981435 0 \N 3899 \N 623 \N 1822 1.0 1 2019-12-22 22:05:57.008139 2019-12-22 22:05:57.008139 0 \N 3900 \N 867 \N 1823 1.0 1 2019-12-22 22:19:16.347732 2019-12-22 22:19:16.347732 0 \N 3901 \N 177 \N 1824 1.0 1 2019-12-22 22:21:17.200909 2019-12-22 22:21:17.200909 0 \N 3902 \N 670 \N 1824 1.0 1 2019-12-22 22:21:17.222597 2019-12-22 22:21:17.222597 0 \N 3903 \N 928 \N 1825 1.0 1 2019-12-22 22:28:45.247176 2019-12-22 22:28:45.247176 0 \N 3904 \N 891 \N 1826 3.0 1 2019-12-22 22:49:14.579747 2019-12-22 22:49:14.579747 0 \N 3905 \N 925 \N 1826 1.0 1 2019-12-22 22:49:14.602462 2019-12-22 22:49:14.602462 0 \N 3906 \N 871 \N 1827 1.0 1 2019-12-22 22:50:35.520414 2019-12-22 22:50:35.520414 0 \N 3907 \N 672 \N 1828 1.0 1 2019-12-22 22:51:34.686105 2019-12-22 22:51:34.686105 0 \N 3908 \N 925 \N 1826 1.0 0 2019-12-22 22:56:37.003576 2019-12-22 22:56:37.003576 3 \N 3909 \N 891 \N 1826 3.0 0 2019-12-22 22:56:37.022478 2019-12-22 22:56:37.022478 3 \N 3910 \N 891 \N 1829 3.0 1 2019-12-22 22:56:59.55974 2019-12-22 22:56:59.55974 0 \N 3911 \N 925 \N 1830 1.0 1 2019-12-22 22:58:12.908837 2019-12-22 22:58:12.908837 0 \N 3912 \N 891 \N 1831 1.0 1 2019-12-22 23:05:39.892892 2019-12-22 23:05:39.892892 0 \N 3913 \N 778 \N 1832 1.0 1 2019-12-22 23:18:46.368313 2019-12-22 23:18:46.368313 0 \N 3914 \N 791 \N \N 3.0 0 2019-12-22 23:35:53.409396 2019-12-22 23:35:53.409396 7 372 3915 \N 944 \N \N 1.0 0 2019-12-22 23:35:53.426304 2019-12-22 23:35:53.426304 7 372 3916 \N 893 \N \N 4.0 0 2019-12-22 23:36:02.167527 2019-12-22 23:36:02.167527 7 367 3917 \N 757 \N \N 3.0 0 2019-12-22 23:36:02.184613 2019-12-22 23:36:02.184613 7 367 3918 \N 891 \N \N 3.0 0 2019-12-22 23:36:02.202682 2019-12-22 23:36:02.202682 7 367 3919 \N 775 \N 1833 1.0 1 2019-12-23 00:07:09.329758 2019-12-23 00:07:09.329758 0 \N 3920 \N 891 \N 1834 1.0 1 2019-12-23 00:23:32.241254 2019-12-23 00:23:32.241254 0 \N 3921 \N 891 \N 1834 1.0 0 2019-12-23 00:24:25.563631 2019-12-23 00:24:25.563631 3 \N 3922 \N 891 \N 1835 1.0 1 2019-12-23 00:25:03.027109 2019-12-23 00:25:03.027109 0 \N 3923 \N 843 \N 1835 1.0 1 2019-12-23 00:25:03.048823 2019-12-23 00:25:03.048823 0 \N 3924 \N 512 \N 1836 1.0 1 2019-12-23 00:30:35.973472 2019-12-23 00:30:35.973472 0 \N 3925 \N 895 \N 1837 1.0 1 2019-12-23 00:37:35.182946 2019-12-23 00:37:35.182946 0 \N 3926 \N 755 \N 1838 1.0 1 2019-12-23 00:42:00.564851 2019-12-23 00:42:00.564851 0 \N 3927 \N 925 \N 1839 1.0 1 2019-12-23 00:43:30.56341 2019-12-23 00:43:30.56341 0 \N 3928 \N 882 \N 1840 1.0 1 2019-12-23 00:47:16.51941 2019-12-23 00:47:16.51941 0 \N 3929 \N 895 \N \N 1.0 0 2019-12-23 02:20:57.962966 2019-12-23 02:20:57.962966 7 374 3930 \N 484 \N 1841 1.0 1 2019-12-23 02:31:46.125276 2019-12-23 02:31:46.125276 0 \N 3931 \N 698 \N 1842 1.0 1 2019-12-23 18:16:19.588962 2019-12-23 18:16:19.588962 0 \N 3932 \N 710 \N 1842 1.0 1 2019-12-23 18:16:19.616946 2019-12-23 18:16:19.616946 0 \N 3933 \N 663 \N 1842 1.0 1 2019-12-23 18:16:19.650599 2019-12-23 18:16:19.650599 0 \N 3934 \N 771 \N 1842 1.0 1 2019-12-23 18:16:19.691259 2019-12-23 18:16:19.691259 0 \N 3935 \N 795 \N 1842 1.0 1 2019-12-23 18:16:19.725941 2019-12-23 18:16:19.725941 0 \N 3936 \N 772 \N 1842 1.0 1 2019-12-23 18:16:19.758047 2019-12-23 18:16:19.758047 0 \N 3937 \N 270 \N 1842 1.0 1 2019-12-23 18:16:19.792091 2019-12-23 18:16:19.792091 0 \N 3938 \N 706 \N 1843 1.0 1 2019-12-23 19:32:47.618397 2019-12-23 19:32:47.618397 0 \N 3939 \N 762 \N 1844 1.0 1 2019-12-23 19:47:15.943638 2019-12-23 19:47:15.943638 0 \N 3940 \N 783 \N \N 2.0 0 2019-12-23 19:54:07.907709 2019-12-23 19:54:07.907709 7 377 3941 \N 768 \N \N 1.0 0 2019-12-23 19:54:07.931657 2019-12-23 19:54:07.931657 7 377 3942 \N 862 \N \N 3.0 0 2019-12-23 19:54:07.953754 2019-12-23 19:54:07.953754 7 377 3943 \N 891 \N \N 1.0 0 2019-12-23 19:54:15.993448 2019-12-23 19:54:15.993448 7 376 3944 \N 757 \N \N 1.0 0 2019-12-23 19:54:24.138585 2019-12-23 19:54:24.138585 7 375 3945 \N 668 \N 1845 1.0 1 2019-12-23 20:04:09.793807 2019-12-23 20:04:09.793807 0 \N 3946 \N 886 \N 1846 1.0 1 2019-12-23 20:11:46.314598 2019-12-23 20:11:46.314598 0 \N 3947 \N 514 216 \N 1.0 0 2019-12-23 20:21:46.880973 2019-12-23 20:21:46.880973 1 \N 3948 \N 514 \N 1847 1.0 1 2019-12-23 20:22:07.148642 2019-12-23 20:22:07.148642 0 \N 3949 \N 514 \N 1847 1.0 0 2019-12-23 20:22:11.917591 2019-12-23 20:22:11.917591 3 \N 3950 \N 514 \N 1848 1.0 1 2019-12-23 20:22:37.153303 2019-12-23 20:22:37.153303 0 \N 3951 \N 789 \N 1849 1.0 1 2019-12-23 20:26:24.793064 2019-12-23 20:26:24.793064 0 \N 3952 \N 809 \N 1850 1.0 1 2019-12-23 20:37:35.706647 2019-12-23 20:37:35.706647 0 \N 3953 \N 596 \N 1268 1.0 0 2019-12-23 20:47:12.037027 2019-12-23 20:47:12.037027 8 \N 3954 \N 788 \N 1851 1.0 1 2019-12-23 20:50:37.412383 2019-12-23 20:50:37.412383 0 \N 3955 \N 921 \N \N 1.0 0 2019-12-23 20:50:57.722932 2019-12-23 20:50:57.722932 7 379 3956 \N 949 \N 1852 1.0 1 2019-12-23 21:31:56.981562 2019-12-23 21:31:56.981562 0 \N 3957 \N 798 \N 1853 1.0 1 2019-12-23 22:00:27.438456 2019-12-23 22:00:27.438456 0 \N 3958 \N 950 \N 1854 1.0 1 2019-12-23 22:27:35.68876 2019-12-23 22:27:35.68876 0 \N 3959 \N 867 \N \N 1.0 0 2019-12-23 22:45:02.672714 2019-12-23 22:45:02.672714 7 373 3960 \N 753 \N \N 4.0 0 2019-12-23 22:47:34.173037 2019-12-23 22:47:34.173037 7 381 3961 \N 737 \N \N 2.0 0 2019-12-23 23:09:47.123682 2019-12-23 23:09:47.123682 7 383 3962 \N 480 \N \N 1.0 0 2019-12-23 23:11:20.776143 2019-12-23 23:11:20.776143 7 382 3963 \N 877 \N 1855 1.0 1 2019-12-23 23:21:40.424687 2019-12-23 23:21:40.424687 0 \N 3964 \N 757 \N 1856 1.0 1 2019-12-23 23:54:28.186538 2019-12-23 23:54:28.186538 0 \N 3965 \N 895 \N 1837 1.0 0 2019-12-24 00:29:17.945253 2019-12-24 00:29:17.945253 3 \N 3966 \N 895 \N \N 1.0 0 2019-12-24 00:50:58.332918 2019-12-24 00:50:58.332918 7 384 3967 \N 889 \N \N 6.0 0 2019-12-24 00:51:04.319606 2019-12-24 00:51:04.319606 7 380 3968 \N 782 \N \N 3.0 0 2019-12-24 00:51:13.481715 2019-12-24 00:51:13.481715 7 378 3969 \N 893 \N 1857 1.0 1 2019-12-24 00:52:41.239347 2019-12-24 00:52:41.239347 0 \N 3970 \N 889 \N 1857 1.0 1 2019-12-24 00:52:41.269634 2019-12-24 00:52:41.269634 0 \N 3971 \N 949 \N 1858 1.0 1 2019-12-24 00:56:21.678503 2019-12-24 00:56:21.678503 0 \N 3972 \N 729 \N 1859 1.0 1 2019-12-24 00:56:33.341817 2019-12-24 00:56:33.341817 0 \N 3973 \N 864 \N 1860 1.0 1 2019-12-24 01:00:06.341703 2019-12-24 01:00:06.341703 0 \N 3974 \N 911 \N 1861 1.0 1 2019-12-24 01:17:24.685495 2019-12-24 01:17:24.685495 0 \N 3975 \N 714 \N 1862 1.0 1 2019-12-24 01:44:43.974696 2019-12-24 01:44:43.974696 0 \N 3976 \N 871 \N 1863 1.0 1 2019-12-24 02:00:11.434162 2019-12-24 02:00:11.434162 0 \N 3977 \N 877 \N 1864 1.0 1 2019-12-24 02:11:38.617457 2019-12-24 02:11:38.617457 0 \N 3978 \N 783 \N 1865 1.0 1 2019-12-24 02:18:31.025903 2019-12-24 02:18:31.025903 0 \N 3979 \N 783 \N 1865 1.0 0 2019-12-24 02:19:09.516067 2019-12-24 02:19:09.516067 9 \N 3980 \N 783 \N 1866 1.0 1 2019-12-24 02:19:43.550817 2019-12-24 02:19:43.550817 0 \N 3981 \N 842 \N 1867 1.0 1 2019-12-24 02:23:21.188792 2019-12-24 02:23:21.188792 0 \N 3982 \N 936 \N 1867 1.0 1 2019-12-24 02:23:21.215131 2019-12-24 02:23:21.215131 0 \N 3983 \N 933 \N 1868 1.0 1 2019-12-24 02:27:59.013146 2019-12-24 02:27:59.013146 0 \N 3984 \N 921 \N 1868 1.0 1 2019-12-24 02:27:59.037928 2019-12-24 02:27:59.037928 0 \N 3985 \N 888 \N 1869 1.0 1 2019-12-24 02:29:58.33564 2019-12-24 02:29:58.33564 0 \N 3986 \N 544 \N 1870 1.0 1 2019-12-24 02:33:37.831243 2019-12-24 02:33:37.831243 0 \N 3987 \N 773 \N 1871 1.0 1 2019-12-24 02:54:30.054016 2019-12-24 02:54:30.054016 0 \N 3988 \N 911 \N 1872 1.0 1 2019-12-24 02:59:57.685318 2019-12-24 02:59:57.685318 0 \N 3989 \N 890 \N 1873 1.0 1 2019-12-24 03:20:07.603041 2019-12-24 03:20:07.603041 0 \N 3990 \N 914 \N 1874 1.0 1 2019-12-24 03:20:59.1547 2019-12-24 03:20:59.1547 0 \N 3991 \N 840 \N 1875 1.0 1 2019-12-24 17:10:50.3079 2019-12-24 17:10:50.3079 0 \N 3992 \N 864 \N \N 3.0 0 2019-12-24 17:53:04.586663 2019-12-24 17:53:04.586663 7 385 3993 \N 758 \N 1876 1.0 1 2019-12-24 18:03:57.10173 2019-12-24 18:03:57.10173 0 \N 3994 \N 841 \N 1877 1.0 1 2019-12-24 18:07:51.380649 2019-12-24 18:07:51.380649 0 \N 3995 \N 928 \N 1877 1.0 1 2019-12-24 18:07:51.404294 2019-12-24 18:07:51.404294 0 \N 3996 \N 757 \N 1878 1.0 1 2019-12-24 18:35:51.099854 2019-12-24 18:35:51.099854 0 \N 3997 \N 757 \N 1878 1.0 0 2019-12-24 18:37:13.5708 2019-12-24 18:37:13.5708 3 \N 3998 \N 757 \N 1879 1.0 1 2019-12-24 18:37:52.83933 2019-12-24 18:37:52.83933 0 \N 3999 \N 893 \N 1880 1.0 1 2019-12-24 19:15:24.106319 2019-12-24 19:15:24.106319 0 \N 4000 \N 959 \N 1880 1.0 1 2019-12-24 19:15:24.128353 2019-12-24 19:15:24.128353 0 \N 4001 \N 298 \N 1880 1.0 1 2019-12-24 19:15:24.15616 2019-12-24 19:15:24.15616 0 \N 4002 \N 926 \N 1880 1.0 1 2019-12-24 19:15:24.178455 2019-12-24 19:15:24.178455 0 \N 4003 \N 467 \N 1881 1.0 1 2019-12-24 19:27:14.415444 2019-12-24 19:27:14.415444 0 \N 4004 \N 907 217 \N 10.0 0 2019-12-24 19:28:26.92554 2019-12-24 19:28:26.92554 1 \N 4005 \N 907 \N 1882 1.0 1 2019-12-24 19:28:43.375569 2019-12-24 19:28:43.375569 0 \N 4006 \N 954 \N \N 1.0 0 2019-12-24 19:35:05.428934 2019-12-24 19:35:05.428934 7 386 4007 \N 965 \N \N 1.0 0 2019-12-24 19:35:22.783165 2019-12-24 19:35:22.783165 7 387 4008 \N 50 \N \N 1.0 0 2019-12-24 19:35:22.808108 2019-12-24 19:35:22.808108 7 387 4009 \N 966 \N \N 2.0 0 2019-12-24 19:35:22.828997 2019-12-24 19:35:22.828997 7 387 4010 \N 877 \N \N 3.0 0 2019-12-24 19:35:22.853873 2019-12-24 19:35:22.853873 7 387 4011 \N 954 \N \N 3.0 0 2019-12-24 19:35:22.879055 2019-12-24 19:35:22.879055 7 387 4012 \N 864 \N \N 7.0 0 2019-12-24 19:35:31.769842 2019-12-24 19:35:31.769842 7 388 4013 \N 912 \N \N 1.0 0 2019-12-24 19:35:38.469961 2019-12-24 19:35:38.469961 7 389 4014 \N 717 \N \N 2.0 0 2019-12-24 19:35:38.490497 2019-12-24 19:35:38.490497 7 389 4015 \N 790 \N 1883 1.0 1 2019-12-24 19:48:32.762435 2019-12-24 19:48:32.762435 0 \N 4016 \N 956 \N 1884 1.0 1 2019-12-24 20:01:58.644481 2019-12-24 20:01:58.644481 0 \N 4017 \N 51 \N 1885 1.0 1 2019-12-24 20:08:42.814793 2019-12-24 20:08:42.814793 0 \N 4018 \N 668 \N 1886 1.0 1 2019-12-24 20:18:53.243564 2019-12-24 20:18:53.243564 0 \N 4019 \N 367 \N 1887 2.0 1 2019-12-24 20:25:22.067064 2019-12-24 20:25:22.067064 0 \N 4020 \N 367 \N 1887 2.0 0 2019-12-24 20:25:31.747092 2019-12-24 20:25:31.747092 3 \N 4021 \N 367 \N 1888 2.0 1 2019-12-24 20:26:14.195193 2019-12-24 20:26:14.195193 0 \N 4022 \N 692 \N 1889 1.0 1 2019-12-24 20:39:34.27964 2019-12-24 20:39:34.27964 0 \N 4023 \N 897 \N 1890 1.0 1 2019-12-24 20:46:27.242751 2019-12-24 20:46:27.242751 0 \N 4024 \N 768 \N 1891 1.0 1 2019-12-24 21:14:11.696446 2019-12-24 21:14:11.696446 0 \N 4025 \N 670 \N 1892 1.0 1 2019-12-24 21:18:05.152805 2019-12-24 21:18:05.152805 0 \N 4026 \N 958 \N 1893 1.0 1 2019-12-24 21:38:56.17343 2019-12-24 21:38:56.17343 0 \N 4027 \N 891 \N 1894 1.0 1 2019-12-24 22:19:43.033682 2019-12-24 22:19:43.033682 0 \N 4028 \N 189 \N 1894 1.0 1 2019-12-24 22:19:43.056652 2019-12-24 22:19:43.056652 0 \N 4029 \N 828 \N 1895 1.0 1 2019-12-24 22:52:29.436948 2019-12-24 22:52:29.436948 0 \N 4030 \N 369 \N 1895 1.0 1 2019-12-24 22:52:29.460817 2019-12-24 22:52:29.460817 0 \N 4031 \N 933 \N 1896 1.0 1 2019-12-24 23:08:09.078611 2019-12-24 23:08:09.078611 0 \N 4032 \N 911 \N \N 1.0 0 2019-12-24 23:36:26.77821 2019-12-24 23:36:26.77821 7 390 4033 \N 670 \N \N 1.0 0 2019-12-24 23:37:31.153558 2019-12-24 23:37:31.153558 7 391 4034 \N 969 218 \N 1.0 0 2019-12-24 23:49:57.803488 2019-12-24 23:49:57.803488 1 \N 4035 \N 673 \N 1897 1.0 1 2019-12-25 00:06:31.882487 2019-12-25 00:06:31.882487 0 \N 4036 \N 951 \N \N 3.0 0 2019-12-25 00:07:44.665049 2019-12-25 00:07:44.665049 7 392 4037 \N 951 \N 1898 1.0 1 2019-12-25 00:08:29.798789 2019-12-25 00:08:29.798789 0 \N 4038 \N 787 \N 1899 1.0 1 2019-12-25 00:30:40.067793 2019-12-25 00:30:40.067793 0 \N 4039 \N 969 \N 1900 1.0 1 2019-12-25 01:28:48.797762 2019-12-25 01:28:48.797762 0 \N 4040 \N 873 \N 1901 1.0 1 2019-12-25 02:29:32.535685 2019-12-25 02:29:32.535685 0 \N 4041 \N 895 \N 1902 1.0 1 2019-12-26 17:52:44.291363 2019-12-26 17:52:44.291363 0 \N 4042 \N 945 \N 1903 1.0 1 2019-12-26 19:04:18.76691 2019-12-26 19:04:18.76691 0 \N 4043 \N 954 \N 1904 1.0 1 2019-12-26 19:58:57.649647 2019-12-26 19:58:57.649647 0 \N 4044 \N 954 \N 1904 1.0 0 2019-12-26 20:00:37.929902 2019-12-26 20:00:37.929902 3 \N 4045 \N 759 \N 1905 1.0 1 2019-12-26 20:00:56.89226 2019-12-26 20:00:56.89226 0 \N 4046 \N 623 \N 1906 1.0 1 2019-12-26 20:07:37.056133 2019-12-26 20:07:37.056133 0 \N 4047 \N 611 \N 1907 1.0 1 2019-12-26 20:10:41.508747 2019-12-26 20:10:41.508747 0 \N 4048 \N 954 \N 1907 1.0 1 2019-12-26 20:10:41.533688 2019-12-26 20:10:41.533688 0 \N 4049 \N 877 \N 1908 1.0 1 2019-12-26 20:35:24.335096 2019-12-26 20:35:24.335096 0 \N 4050 \N 934 \N \N 1.0 0 2019-12-26 21:28:40.380678 2019-12-26 21:28:40.380678 7 393 4051 \N 926 \N \N 1.0 0 2019-12-26 21:28:40.397448 2019-12-26 21:28:40.397448 7 393 4052 \N 919 \N \N 1.0 0 2019-12-26 21:28:40.414294 2019-12-26 21:28:40.414294 7 393 4053 \N 935 \N \N 1.0 0 2019-12-26 21:28:40.430212 2019-12-26 21:28:40.430212 7 393 4054 \N 954 \N \N 1.0 0 2019-12-26 21:28:40.445999 2019-12-26 21:28:40.445999 7 393 4055 \N 911 \N 1909 1.0 1 2019-12-26 21:45:17.052983 2019-12-26 21:45:17.052983 0 \N 4056 \N 749 \N 1910 1.0 1 2019-12-26 22:51:53.105576 2019-12-26 22:51:53.105576 0 \N 4057 \N 576 \N 1911 1.0 1 2019-12-26 23:58:43.570928 2019-12-26 23:58:43.570928 0 \N 4058 \N 895 \N 1912 1.0 1 2019-12-27 00:11:10.15194 2019-12-27 00:11:10.15194 0 \N 4059 \N 476 \N 1913 1.0 1 2019-12-27 01:24:29.765286 2019-12-27 01:24:29.765286 0 \N 4060 \N 697 \N 1914 1.0 1 2019-12-27 01:29:38.644547 2019-12-27 01:29:38.644547 0 \N 4061 \N 902 \N 1915 1.0 1 2019-12-27 02:43:11.11764 2019-12-27 02:43:11.11764 0 \N 4062 \N 911 \N 1916 1.0 1 2019-12-27 18:44:37.998589 2019-12-27 18:44:37.998589 0 \N 4063 \N 963 \N 1916 1.0 1 2019-12-27 18:44:38.021699 2019-12-27 18:44:38.021699 0 \N 4064 \N 963 \N 1916 1.0 0 2019-12-27 18:45:32.853768 2019-12-27 18:45:32.853768 3 \N 4065 \N 911 \N 1916 1.0 0 2019-12-27 18:45:32.873737 2019-12-27 18:45:32.873737 3 \N 4066 \N 911 \N 1917 1.0 1 2019-12-27 18:46:51.497076 2019-12-27 18:46:51.497076 0 \N 4067 \N 963 \N 1917 1.0 1 2019-12-27 18:46:51.521293 2019-12-27 18:46:51.521293 0 \N 4068 \N 615 \N 1918 1.0 1 2019-12-27 20:10:13.333018 2019-12-27 20:10:13.333018 0 \N 4069 \N 678 \N \N 3.0 0 2019-12-27 20:31:59.135052 2019-12-27 20:31:59.135052 7 394 4070 \N 678 \N 1919 1.0 1 2019-12-27 20:34:05.409614 2019-12-27 20:34:05.409614 0 \N 4071 \N 678 \N \N 1.0 0 2019-12-27 20:52:41.572144 2019-12-27 20:52:41.572144 7 395 4072 \N 867 \N 1920 1.0 1 2019-12-27 21:40:41.32655 2019-12-27 21:40:41.32655 0 \N 4073 \N 871 \N 1921 1.0 1 2019-12-27 22:18:12.501079 2019-12-27 22:18:12.501079 0 \N 4074 \N 688 \N 1922 1.0 1 2019-12-27 22:55:57.013381 2019-12-27 22:55:57.013381 0 \N 4075 \N 790 \N 1923 1.0 1 2019-12-27 22:59:37.696019 2019-12-27 22:59:37.696019 0 \N 4076 \N 784 \N 1924 1.0 1 2019-12-27 23:42:12.797826 2019-12-27 23:42:12.797826 0 \N 4077 \N 945 \N 1925 1.0 1 2019-12-28 00:14:04.374514 2019-12-28 00:14:04.374514 0 \N 4078 \N 935 \N 1926 1.0 1 2019-12-28 00:17:44.863214 2019-12-28 00:17:44.863214 0 \N 4079 \N 893 \N 1927 1.0 1 2019-12-28 00:22:20.223889 2019-12-28 00:22:20.223889 0 \N 4080 \N 889 \N 1927 1.0 1 2019-12-28 00:22:20.248398 2019-12-28 00:22:20.248398 0 \N 4081 \N 791 \N 1928 1.0 1 2019-12-28 01:47:16.801596 2019-12-28 01:47:16.801596 0 \N 4082 \N 955 \N 1929 1.0 1 2019-12-28 18:00:21.824765 2019-12-28 18:00:21.824765 0 \N 4083 \N 580 \N 1930 1.0 1 2019-12-28 19:51:49.096461 2019-12-28 19:51:49.096461 0 \N 4084 \N 930 \N 1931 1.0 1 2019-12-28 20:07:11.50698 2019-12-28 20:07:11.50698 0 \N 4085 \N 954 \N 1932 1.0 1 2019-12-28 20:25:45.098897 2019-12-28 20:25:45.098897 0 \N 4086 \N 963 \N 1933 1.0 1 2019-12-28 21:24:43.46807 2019-12-28 21:24:43.46807 0 \N 4087 \N 890 \N 1933 1.0 1 2019-12-28 21:24:43.490423 2019-12-28 21:24:43.490423 0 \N 4088 \N 698 \N 1934 1.0 1 2019-12-28 21:59:34.572597 2019-12-28 21:59:34.572597 0 \N 4089 \N 698 \N 1934 1.0 0 2019-12-28 21:59:40.609052 2019-12-28 21:59:40.609052 3 \N 4090 \N 698 \N 1935 1.0 1 2019-12-28 21:59:59.527933 2019-12-28 21:59:59.527933 0 \N 4091 \N 945 \N 1936 1.0 1 2019-12-29 01:52:12.885014 2019-12-29 01:52:12.885014 0 \N 4092 \N 945 \N 1937 1.0 1 2019-12-29 19:26:31.012908 2019-12-29 19:26:31.012908 0 \N 4093 \N 958 \N 1938 1.0 1 2019-12-29 21:32:57.161372 2019-12-29 21:32:57.161372 0 \N 4094 \N 777 \N 1939 1.0 1 2019-12-29 21:39:13.717552 2019-12-29 21:39:13.717552 0 \N 4095 \N 895 \N 1939 1.0 1 2019-12-29 21:39:13.74301 2019-12-29 21:39:13.74301 0 \N 4096 \N 890 \N 1940 1.0 1 2019-12-30 17:43:32.388599 2019-12-30 17:43:32.388599 0 \N 4097 \N 877 \N 1941 1.0 1 2019-12-30 18:00:31.696087 2019-12-30 18:00:31.696087 0 \N 4098 \N 890 \N 1942 1.0 1 2019-12-30 18:35:54.20643 2019-12-30 18:35:54.20643 0 \N 4099 \N 355 \N 1943 1.0 1 2019-12-30 19:25:49.606593 2019-12-30 19:25:49.606593 0 \N 4100 \N 760 \N 1944 1.0 1 2019-12-30 20:12:23.614318 2019-12-30 20:12:23.614318 0 \N 4101 \N 934 \N 1944 1.0 1 2019-12-30 20:12:23.636124 2019-12-30 20:12:23.636124 0 \N 4102 \N 791 \N 1945 1.0 1 2019-12-30 21:39:02.377732 2019-12-30 21:39:02.377732 0 \N 4103 \N 786 \N 1946 1.0 1 2019-12-30 21:40:32.899566 2019-12-30 21:40:32.899566 0 \N 4104 \N 886 \N 1947 1.0 1 2019-12-30 21:53:02.797011 2019-12-30 21:53:02.797011 0 \N 4105 \N 761 \N 1948 1.0 1 2019-12-30 22:33:34.632217 2019-12-30 22:33:34.632217 0 \N 4106 \N 880 \N 1949 1.0 1 2019-12-30 23:06:28.208803 2019-12-30 23:06:28.208803 0 \N 4107 \N 749 \N 1950 1.0 1 2019-12-30 23:07:55.054212 2019-12-30 23:07:55.054212 0 \N 4108 \N 676 \N 1951 1.0 1 2019-12-30 23:21:23.578402 2019-12-30 23:21:23.578402 0 \N 4109 \N 891 \N 1952 1.0 1 2019-12-31 00:37:32.922759 2019-12-31 00:37:32.922759 0 \N 4110 \N 893 \N 1953 1.0 1 2019-12-31 00:51:12.997604 2019-12-31 00:51:12.997604 0 \N 4111 \N 893 \N 1954 1.0 1 2019-12-31 00:53:07.176336 2019-12-31 00:53:07.176336 0 \N 4112 \N 956 \N 1955 1.0 1 2019-12-31 00:57:47.221628 2019-12-31 00:57:47.221628 0 \N 4113 \N 965 \N \N 1.0 0 2019-12-31 01:10:34.829072 2019-12-31 01:10:34.829072 7 397 4114 \N 862 \N 1956 1.0 1 2019-12-31 01:10:54.758413 2019-12-31 01:10:54.758413 0 \N 4115 \N 893 \N 1957 1.0 1 2019-12-31 02:00:16.600565 2019-12-31 02:00:16.600565 0 \N 4116 \N 911 \N 1958 1.0 1 2019-12-31 02:04:22.469167 2019-12-31 02:04:22.469167 0 \N 4117 \N 911 \N 1958 1.0 0 2019-12-31 02:04:36.181632 2019-12-31 02:04:36.181632 9 \N 4118 \N 911 \N 1959 1.0 1 2019-12-31 02:05:13.413563 2019-12-31 02:05:13.413563 0 \N 4119 \N 877 \N 1960 1.0 1 2019-12-31 02:21:34.907837 2019-12-31 02:21:34.907837 0 \N 4120 \N 890 \N 1961 1.0 1 2019-12-31 17:41:53.672116 2019-12-31 17:41:53.672116 0 \N 4121 \N 752 \N 1962 1.0 1 2019-12-31 18:11:15.672742 2019-12-31 18:11:15.672742 0 \N 4122 \N 724 \N 1963 1.0 1 2019-12-31 18:33:04.614105 2019-12-31 18:33:04.614105 0 \N 4123 \N 554 \N 1964 1.0 1 2019-12-31 19:10:08.442791 2019-12-31 19:10:08.442791 0 \N 4124 \N 724 \N 1965 1.0 1 2019-12-31 19:51:44.09962 2019-12-31 19:51:44.09962 0 \N 4125 \N 855 \N 1966 1.0 1 2019-12-31 19:59:08.729397 2019-12-31 19:59:08.729397 0 \N 4126 \N 705 \N 1966 1.0 1 2019-12-31 19:59:08.757875 2019-12-31 19:59:08.757875 0 \N 4127 \N 891 \N 1967 1.0 1 2019-12-31 20:12:29.878242 2019-12-31 20:12:29.878242 0 \N 4128 \N 676 \N 1968 1.0 1 2019-12-31 20:14:18.741464 2019-12-31 20:14:18.741464 0 \N 4129 \N 752 \N 1969 1.0 1 2019-12-31 20:19:41.573478 2019-12-31 20:19:41.573478 0 \N 4130 \N 710 \N 1970 1.0 1 2019-12-31 20:49:51.900922 2019-12-31 20:49:51.900922 0 \N 4131 \N 775 \N 1971 1.0 1 2019-12-31 21:11:16.63281 2019-12-31 21:11:16.63281 0 \N 4132 \N 678 \N \N 1.0 0 2019-12-31 21:15:24.897504 2019-12-31 21:15:24.897504 7 396 4133 \N 634 \N \N 4.0 0 2019-12-31 21:17:10.955559 2019-12-31 21:17:10.955559 7 398 4134 \N 634 \N 1972 1.0 1 2019-12-31 21:17:49.615065 2019-12-31 21:17:49.615065 0 \N 4135 \N 951 \N 1973 1.0 1 2019-12-31 21:20:33.626675 2019-12-31 21:20:33.626675 0 \N 4136 \N 775 \N 1971 1.0 0 2019-12-31 21:31:07.3415 2019-12-31 21:31:07.3415 3 \N 4137 \N 631 \N 1974 1.0 1 2019-12-31 21:34:48.608453 2019-12-31 21:34:48.608453 0 \N 4138 \N 945 \N 1974 1.0 1 2019-12-31 21:34:48.634117 2019-12-31 21:34:48.634117 0 \N 4139 \N 954 \N 1974 2.0 1 2019-12-31 21:34:48.658204 2019-12-31 21:34:48.658204 0 \N 4140 \N 800 \N 1975 1.0 1 2019-12-31 21:36:53.017239 2019-12-31 21:36:53.017239 0 \N 4141 \N 800 \N 1975 1.0 0 2019-12-31 21:39:05.662651 2019-12-31 21:39:05.662651 3 \N 4142 \N 890 \N 1976 1.0 1 2019-12-31 21:41:07.502071 2019-12-31 21:41:07.502071 0 \N 4143 \N 369 \N 1977 2.0 1 2019-12-31 22:35:21.848037 2019-12-31 22:35:21.848037 0 \N 4144 \N 960 \N 1978 1.0 1 2019-12-31 22:46:35.283565 2019-12-31 22:46:35.283565 0 \N 4145 \N 911 \N \N 3.0 0 2019-12-31 22:49:58.41782 2019-12-31 22:49:58.41782 7 399 4146 \N 911 \N 1979 1.0 1 2019-12-31 22:50:31.011671 2019-12-31 22:50:31.011671 0 \N 4147 \N 948 \N 1980 1.0 1 2019-12-31 23:17:27.487414 2019-12-31 23:17:27.487414 0 \N 4148 \N 902 \N 1980 1.0 1 2019-12-31 23:17:27.508711 2019-12-31 23:17:27.508711 0 \N 4149 \N 663 \N 1981 1.0 1 2019-12-31 23:19:28.743915 2019-12-31 23:19:28.743915 0 \N 4150 \N 672 \N 1982 1.0 1 2019-12-31 23:20:47.398683 2019-12-31 23:20:47.398683 0 \N 4151 \N 946 \N 1983 1.0 1 2019-12-31 23:25:40.730905 2019-12-31 23:25:40.730905 0 \N 4152 \N 730 \N 1984 1.0 1 2019-12-31 23:47:34.226538 2019-12-31 23:47:34.226538 0 \N 4153 \N 949 \N 1985 1.0 1 2020-01-01 00:16:52.972453 2020-01-01 00:16:52.972453 0 \N 4154 \N 960 \N 1986 1.0 1 2020-01-01 00:34:48.445383 2020-01-01 00:34:48.445383 0 \N 4155 \N 727 \N 1987 1.0 1 2020-01-01 00:36:34.17253 2020-01-01 00:36:34.17253 0 \N 4156 \N 886 \N 1988 1.0 1 2020-01-01 00:37:53.504548 2020-01-01 00:37:53.504548 0 \N 4157 \N 898 \N 1989 1.0 1 2020-01-01 01:05:19.443597 2020-01-01 01:05:19.443597 0 \N 4158 \N 672 \N 1990 1.0 1 2020-01-02 21:03:43.450908 2020-01-02 21:03:43.450908 0 \N 4159 \N 317 \N 1990 1.0 1 2020-01-02 21:03:43.475418 2020-01-02 21:03:43.475418 0 \N 4160 \N 867 \N 1370 1.0 0 2020-01-02 21:40:53.510574 2020-01-02 21:40:53.510574 8 \N 4161 \N 598 \N 1991 1.0 1 2020-01-02 21:58:28.113869 2020-01-02 21:58:28.113869 0 \N 4162 \N 633 \N 1992 1.0 1 2020-01-03 18:25:28.089117 2020-01-03 18:25:28.089117 0 \N 4163 \N 710 \N 1993 1.0 1 2020-01-03 19:37:07.841043 2020-01-03 19:37:07.841043 0 \N 4164 \N 870 \N 1994 1.0 1 2020-01-03 19:59:50.717866 2020-01-03 19:59:50.717866 0 \N 4165 \N 762 \N 1995 1.0 1 2020-01-03 20:14:57.889803 2020-01-03 20:14:57.889803 0 \N 4166 \N 911 \N 1996 1.0 1 2020-01-03 20:47:30.51934 2020-01-03 20:47:30.51934 0 \N 4167 \N 783 \N 1997 2.0 1 2020-01-03 21:36:46.575567 2020-01-03 21:36:46.575567 0 \N 4168 \N 798 \N 1998 1.0 1 2020-01-03 21:44:14.797927 2020-01-03 21:44:14.797927 0 \N 4169 \N 889 \N 1999 1.0 1 2020-01-04 00:32:58.244597 2020-01-04 00:32:58.244597 0 \N 4170 \N 889 \N 1999 1.0 0 2020-01-04 00:41:39.788329 2020-01-04 00:41:39.788329 3 \N 4171 \N 889 \N 2000 1.0 1 2020-01-04 00:42:13.012892 2020-01-04 00:42:13.012892 0 \N 4172 \N 854 \N 2001 1.0 1 2020-01-04 01:29:17.012499 2020-01-04 01:29:17.012499 0 \N 4173 \N 668 \N 2002 1.0 1 2020-01-04 01:39:33.664896 2020-01-04 01:39:33.664896 0 \N 4174 \N 945 \N 2003 1.0 1 2020-01-04 01:40:54.159508 2020-01-04 01:40:54.159508 0 \N 4175 \N 896 \N 2004 1.0 1 2020-01-04 18:08:35.130988 2020-01-04 18:08:35.130988 0 \N 4176 \N 894 \N 2004 1.0 1 2020-01-04 18:08:35.152667 2020-01-04 18:08:35.152667 0 \N 4177 \N 680 \N 2005 1.0 1 2020-01-04 18:49:17.329811 2020-01-04 18:49:17.329811 0 \N 4178 \N 910 \N 2006 1.0 1 2020-01-04 19:57:39.145285 2020-01-04 19:57:39.145285 0 \N 4179 \N 686 \N 2007 1.0 1 2020-01-04 20:25:18.703939 2020-01-04 20:25:18.703939 0 \N 4180 \N 610 \N 2008 1.0 1 2020-01-04 20:27:46.701592 2020-01-04 20:27:46.701592 0 \N 4181 \N 476 \N 2009 1.0 1 2020-01-04 20:35:50.163019 2020-01-04 20:35:50.163019 0 \N 4182 \N 911 \N 2010 1.0 1 2020-01-04 21:11:34.865137 2020-01-04 21:11:34.865137 0 \N 4183 \N 621 \N 2010 1.0 1 2020-01-04 21:11:34.886958 2020-01-04 21:11:34.886958 0 \N 4184 \N 901 \N \N 3.0 0 2020-01-04 21:31:55.721578 2020-01-04 21:31:55.721578 7 400 4185 \N 893 \N 2011 1.0 1 2020-01-05 00:19:30.437498 2020-01-05 00:19:30.437498 0 \N 4186 \N 899 \N 2012 1.0 1 2020-01-05 01:12:05.778613 2020-01-05 01:12:05.778613 0 \N 4187 \N 899 \N 2012 1.0 0 2020-01-05 01:17:56.960353 2020-01-05 01:17:56.960353 3 \N 4188 \N 894 \N \N 3.0 0 2020-01-05 01:22:59.393365 2020-01-05 01:22:59.393365 7 401 4189 \N 899 \N 2013 1.0 1 2020-01-05 01:23:43.137037 2020-01-05 01:23:43.137037 0 \N 4190 \N 894 \N 2013 1.0 1 2020-01-05 01:23:43.15869 2020-01-05 01:23:43.15869 0 \N 4191 \N 889 \N 2014 1.0 1 2020-01-05 02:41:19.715635 2020-01-05 02:41:19.715635 0 \N 4192 \N 317 \N 2015 1.0 1 2020-01-06 22:56:33.797214 2020-01-06 22:56:33.797214 0 \N 4193 \N 807 \N 2016 1.0 1 2020-01-07 00:17:09.18202 2020-01-07 00:17:09.18202 0 \N 4194 \N 599 \N \N 6.0 0 2020-01-07 18:13:30.815744 2020-01-07 18:13:30.815744 7 265 4195 \N 496 \N \N 4.0 0 2020-01-07 18:13:38.610648 2020-01-07 18:13:38.610648 7 235 4196 \N 666 \N \N 7.0 0 2020-01-07 18:13:38.616298 2020-01-07 18:13:38.616298 7 235 4197 \N 627 \N \N 3.0 0 2020-01-07 18:13:38.622289 2020-01-07 18:13:38.622289 7 235 4198 \N 14 \N \N 4.0 0 2020-01-07 18:13:38.627918 2020-01-07 18:13:38.627918 7 235 4199 \N 17 \N \N 6.0 0 2020-01-07 18:13:38.633689 2020-01-07 18:13:38.633689 7 235 4200 \N 564 \N \N 3.0 0 2020-01-07 18:13:38.640662 2020-01-07 18:13:38.640662 7 235 4201 \N 711 \N \N 5.0 0 2020-01-07 18:13:46.330558 2020-01-07 18:13:46.330558 7 289 4202 \N 72 \N \N 3.0 0 2020-01-07 18:13:46.336822 2020-01-07 18:13:46.336822 7 289 4203 \N 89 \N \N 3.0 0 2020-01-07 18:13:46.342332 2020-01-07 18:13:46.342332 7 289 4204 \N 635 \N \N 5.0 0 2020-01-07 18:13:46.347856 2020-01-07 18:13:46.347856 7 289 4205 \N 293 \N \N 3.0 0 2020-01-07 18:13:46.353429 2020-01-07 18:13:46.353429 7 289 4206 \N 315 \N \N 2.0 0 2020-01-07 18:13:46.359077 2020-01-07 18:13:46.359077 7 289 4207 \N 534 \N \N 1.0 0 2020-01-07 18:13:46.364465 2020-01-07 18:13:46.364465 7 289 4208 \N 479 \N \N 4.0 0 2020-01-07 18:13:46.369959 2020-01-07 18:13:46.369959 7 289 4209 \N 186 \N \N 2.0 0 2020-01-07 18:13:55.212993 2020-01-07 18:13:55.212993 7 216 4210 \N 7 \N \N 7.0 0 2020-01-07 18:13:55.218783 2020-01-07 18:13:55.218783 7 216 4211 \N 604 \N \N 4.0 0 2020-01-07 18:13:55.224221 2020-01-07 18:13:55.224221 7 216 4212 \N 579 \N \N 2.0 0 2020-01-07 18:13:55.229788 2020-01-07 18:13:55.229788 7 216 4213 \N 404 \N \N 3.0 0 2020-01-07 18:13:55.235374 2020-01-07 18:13:55.235374 7 216 4214 \N 190 \N \N 2.0 0 2020-01-07 18:13:55.241234 2020-01-07 18:13:55.241234 7 216 4215 \N 158 \N \N 2.0 0 2020-01-07 18:13:55.246925 2020-01-07 18:13:55.246925 7 216 4216 \N 498 \N \N 4.0 0 2020-01-07 18:13:55.252383 2020-01-07 18:13:55.252383 7 216 4217 \N 221 \N \N 5.0 0 2020-01-07 18:13:55.258029 2020-01-07 18:13:55.258029 7 216 4218 \N 141 \N \N 3.0 0 2020-01-07 18:13:55.263571 2020-01-07 18:13:55.263571 7 216 4219 \N 535 \N \N 3.0 0 2020-01-07 18:13:55.269371 2020-01-07 18:13:55.269371 7 216 4220 \N 970 219 \N 3.0 0 2020-01-07 19:08:31.309587 2020-01-07 19:08:31.309587 1 \N 4221 \N 206 \N \N 4.0 0 2020-01-07 19:09:30.229852 2020-01-07 19:09:30.229852 7 405 4222 \N 577 \N \N 1.0 0 2020-01-07 19:09:36.797244 2020-01-07 19:09:36.797244 7 404 4223 \N 66 \N \N 6.0 0 2020-01-07 19:09:36.81855 2020-01-07 19:09:36.81855 7 404 4224 \N 84 \N \N 2.0 0 2020-01-07 19:09:36.839465 2020-01-07 19:09:36.839465 7 404 4225 \N 210 \N \N 1.0 0 2020-01-07 19:09:46.790938 2020-01-07 19:09:46.790938 7 403 4226 \N 231 \N \N 3.0 0 2020-01-07 19:09:46.809112 2020-01-07 19:09:46.809112 7 403 4227 \N 246 \N \N 2.0 0 2020-01-07 19:09:46.827734 2020-01-07 19:09:46.827734 7 403 4228 \N 212 \N \N 1.0 0 2020-01-07 19:09:46.84845 2020-01-07 19:09:46.84845 7 403 4229 \N 217 \N \N 4.0 0 2020-01-07 19:09:46.868779 2020-01-07 19:09:46.868779 7 403 4230 \N 208 \N \N 4.0 0 2020-01-07 19:09:46.886886 2020-01-07 19:09:46.886886 7 403 4231 \N 235 \N \N 1.0 0 2020-01-07 19:09:46.905029 2020-01-07 19:09:46.905029 7 403 4232 \N 233 \N \N 1.0 0 2020-01-07 19:09:46.923141 2020-01-07 19:09:46.923141 7 403 4233 \N 76 \N \N 1.0 0 2020-01-07 19:09:46.941503 2020-01-07 19:09:46.941503 7 403 4234 \N 113 \N \N 2.0 0 2020-01-07 19:09:46.960691 2020-01-07 19:09:46.960691 7 403 4235 \N 536 \N \N 2.0 0 2020-01-07 19:09:46.979083 2020-01-07 19:09:46.979083 7 403 4236 \N 219 \N \N 3.0 0 2020-01-07 19:09:46.997138 2020-01-07 19:09:46.997138 7 403 4237 \N 213 \N \N 4.0 0 2020-01-07 19:09:47.015442 2020-01-07 19:09:47.015442 7 403 4238 \N 69 \N \N 3.0 0 2020-01-07 19:09:47.033479 2020-01-07 19:09:47.033479 7 403 4239 \N 64 \N \N 2.0 0 2020-01-07 19:09:47.052118 2020-01-07 19:09:47.052118 7 403 4240 \N 128 \N \N 1.0 0 2020-01-07 19:09:47.07065 2020-01-07 19:09:47.07065 7 403 4241 \N 287 \N \N 2.0 0 2020-01-07 19:09:47.089391 2020-01-07 19:09:47.089391 7 403 4242 \N 94 \N \N 1.0 0 2020-01-07 19:09:47.108454 2020-01-07 19:09:47.108454 7 403 4243 \N 71 \N \N 1.0 0 2020-01-07 19:09:47.127909 2020-01-07 19:09:47.127909 7 403 4244 \N 119 \N \N 1.0 0 2020-01-07 19:09:47.147063 2020-01-07 19:09:47.147063 7 403 4245 \N 90 \N \N 3.0 0 2020-01-07 19:09:47.165468 2020-01-07 19:09:47.165468 7 403 4246 \N 664 \N 2017 1.0 1 2020-01-07 19:10:24.548098 2020-01-07 19:10:24.548098 0 \N 4247 \N 891 \N 2018 1.0 1 2020-01-07 20:50:42.274199 2020-01-07 20:50:42.274199 0 \N 4248 \N 793 \N 2019 1.0 1 2020-01-07 21:05:47.281345 2020-01-07 21:05:47.281345 0 \N 4249 \N 899 \N 2020 1.0 1 2020-01-07 21:57:17.083415 2020-01-07 21:57:17.083415 0 \N 4250 \N 868 \N \N 2.0 0 2020-01-07 23:42:25.798389 2020-01-07 23:42:25.798389 7 402 4251 \N 413 \N \N 1.0 0 2020-01-07 23:43:27.735071 2020-01-07 23:43:27.735071 7 407 4252 \N 413 \N 2021 1.0 1 2020-01-07 23:44:56.089217 2020-01-07 23:44:56.089217 0 \N 4253 \N 318 \N 2021 1.0 1 2020-01-07 23:44:56.110531 2020-01-07 23:44:56.110531 0 \N 4254 \N 864 \N 2022 1.0 1 2020-01-08 19:16:27.667992 2020-01-08 19:16:27.667992 0 \N 4255 \N 574 \N 2023 1.0 1 2020-01-08 19:37:16.875542 2020-01-08 19:37:16.875542 0 \N 4256 \N 695 \N 2024 1.0 1 2020-01-08 22:27:08.454769 2020-01-08 22:27:08.454769 0 \N 4257 \N 864 \N 2025 1.0 1 2020-01-08 22:50:00.940919 2020-01-08 22:50:00.940919 0 \N 4258 \N 871 \N 2026 1.0 1 2020-01-09 00:42:38.240337 2020-01-09 00:42:38.240337 0 \N 4259 \N 895 \N 2027 1.0 1 2020-01-09 01:07:36.648339 2020-01-09 01:07:36.648339 0 \N 4260 \N 566 \N 2028 1.0 1 2020-01-09 17:49:27.113593 2020-01-09 17:49:27.113593 0 \N 4261 \N 406 \N 2029 1.0 1 2020-01-09 23:53:29.7348 2020-01-09 23:53:29.7348 0 \N 4262 \N 631 \N 2030 1.0 1 2020-01-10 18:38:26.900648 2020-01-10 18:38:26.900648 0 \N 4263 \N 680 \N 2031 1.0 1 2020-01-10 22:22:56.986105 2020-01-10 22:22:56.986105 0 \N 4264 \N 699 \N 2032 1.0 1 2020-01-10 22:57:54.165233 2020-01-10 22:57:54.165233 0 \N 4265 \N 761 \N 2033 1.0 1 2020-01-11 00:00:33.159672 2020-01-11 00:00:33.159672 0 \N 4266 \N 957 \N 2034 1.0 1 2020-01-11 01:44:20.248171 2020-01-11 01:44:20.248171 0 \N 4267 \N 369 \N 2035 1.0 1 2020-01-11 01:45:53.021576 2020-01-11 01:45:53.021576 0 \N 4268 \N 960 \N 2036 1.0 1 2020-01-11 01:54:19.572022 2020-01-11 01:54:19.572022 0 \N 4269 \N 669 \N \N 1.0 0 2020-01-11 01:58:58.940492 2020-01-11 01:58:58.940492 7 408 4270 \N 669 \N 2037 1.0 1 2020-01-11 01:59:53.297179 2020-01-11 01:59:53.297179 0 \N 4271 \N 722 \N \N 1.0 0 2020-01-11 17:58:00.4052 2020-01-11 17:58:00.4052 7 406 4272 \N 652 \N \N 1.0 0 2020-01-11 17:58:00.423965 2020-01-11 17:58:00.423965 7 406 4273 \N 954 \N \N 1.0 0 2020-01-11 19:09:02.33787 2020-01-11 19:09:02.33787 7 409 4274 \N 954 \N \N 4.0 0 2020-01-11 19:09:18.982612 2020-01-11 19:09:18.982612 7 410 4275 \N 871 \N \N 9.0 0 2020-01-11 19:22:53.86167 2020-01-11 19:22:53.86167 7 411 4276 \N 954 \N 2038 1.0 1 2020-01-11 19:25:23.417155 2020-01-11 19:25:23.417155 0 \N 4277 \N 889 \N 2038 1.0 1 2020-01-11 19:25:23.439084 2020-01-11 19:25:23.439084 0 \N 4278 \N 958 \N 2038 1.0 1 2020-01-11 19:25:23.459806 2020-01-11 19:25:23.459806 0 \N 4279 \N 735 \N 2038 1.0 1 2020-01-11 19:25:23.480917 2020-01-11 19:25:23.480917 0 \N 4280 \N 871 220 \N 6.0 0 2020-01-11 19:48:15.904898 2020-01-11 19:48:15.904898 1 \N 4281 \N 946 \N 2039 1.0 1 2020-01-11 21:07:22.277495 2020-01-11 21:07:22.277495 0 \N 4282 \N 946 \N 2039 1.0 0 2020-01-11 21:07:29.315815 2020-01-11 21:07:29.315815 3 \N 4283 \N 946 \N 2040 1.0 1 2020-01-11 21:07:54.562415 2020-01-11 21:07:54.562415 0 \N 4284 \N 894 \N 2041 1.0 1 2020-01-11 21:28:20.061087 2020-01-11 21:28:20.061087 0 \N 4285 \N 595 \N 2042 1.0 1 2020-01-11 22:31:42.100837 2020-01-11 22:31:42.100837 0 \N 4286 \N 737 \N 2043 1.0 1 2020-01-11 23:56:15.307595 2020-01-11 23:56:15.307595 0 \N 4287 \N 944 \N \N 1.0 0 2020-01-12 02:04:26.387766 2020-01-12 02:04:26.387766 7 412 4288 \N 944 \N 2044 1.0 1 2020-01-12 02:17:06.937717 2020-01-12 02:17:06.937717 0 \N 4289 \N 954 \N 2045 1.0 1 2020-01-12 02:17:53.175116 2020-01-12 02:17:53.175116 0 \N 4290 \N 954 \N 2046 1.0 1 2020-01-13 17:34:31.321645 2020-01-13 17:34:31.321645 0 \N 4291 \N 696 \N 2047 1.0 1 2020-01-13 23:11:32.669532 2020-01-13 23:11:32.669532 0 \N 4292 \N 81 \N 2047 1.0 1 2020-01-13 23:11:32.692447 2020-01-13 23:11:32.692447 0 \N 4293 \N 899 \N 2048 1.0 1 2020-01-13 23:48:22.483006 2020-01-13 23:48:22.483006 0 \N 4294 \N 894 \N 2048 1.0 1 2020-01-13 23:48:22.505013 2020-01-13 23:48:22.505013 0 \N 4295 \N 954 \N 2049 1.0 1 2020-01-14 20:20:21.184074 2020-01-14 20:20:21.184074 0 \N 4296 \N 966 \N 2050 1.0 1 2020-01-15 01:34:28.849911 2020-01-15 01:34:28.849911 0 \N 4297 \N 944 \N \N 1.0 0 2020-01-15 18:05:39.48206 2020-01-15 18:05:39.48206 7 413 4298 \N 867 \N \N 1.0 0 2020-01-15 18:05:55.467743 2020-01-15 18:05:55.467743 7 414 4299 \N 896 \N 2051 1.0 1 2020-01-15 18:46:45.996911 2020-01-15 18:46:45.996911 0 \N 4300 \N 867 \N 2051 1.0 1 2020-01-15 18:46:46.019928 2020-01-15 18:46:46.019928 0 \N 4301 \N 882 \N 2052 1.0 1 2020-01-16 02:05:08.704279 2020-01-16 02:05:08.704279 0 \N 4302 \N 788 \N 2053 1.0 1 2020-01-16 18:12:19.057466 2020-01-16 18:12:19.057466 0 \N 4303 \N 788 \N 2053 1.0 0 2020-01-16 18:12:52.154444 2020-01-16 18:12:52.154444 3 \N 4304 \N 476 \N 2054 1.0 1 2020-01-16 20:08:56.799556 2020-01-16 20:08:56.799556 0 \N 4305 \N 931 \N 2055 1.0 1 2020-01-16 23:42:27.615152 2020-01-16 23:42:27.615152 0 \N 4306 \N 671 \N 2056 1.0 1 2020-01-17 00:41:01.198139 2020-01-17 00:41:01.198139 0 \N 4307 \N 301 \N 2056 1.0 1 2020-01-17 00:41:01.221999 2020-01-17 00:41:01.221999 0 \N 4308 \N 958 \N 2057 1.0 1 2020-01-17 19:41:26.659878 2020-01-17 19:41:26.659878 0 \N 4309 \N 669 \N 2058 1.0 1 2020-01-17 19:43:28.98109 2020-01-17 19:43:28.98109 0 \N 4310 \N 509 \N 2059 1.0 1 2020-01-17 19:54:57.53726 2020-01-17 19:54:57.53726 0 \N 4311 \N 717 \N 2060 1.0 1 2020-01-17 20:03:42.711826 2020-01-17 20:03:42.711826 0 \N 4312 \N 717 \N 2060 1.0 0 2020-01-17 20:03:55.391449 2020-01-17 20:03:55.391449 3 \N 4313 \N 717 \N 2061 1.0 1 2020-01-17 20:04:35.033365 2020-01-17 20:04:35.033365 0 \N 4314 \N 815 \N 2062 1.0 1 2020-01-17 20:07:49.633204 2020-01-17 20:07:49.633204 0 \N 4315 \N 823 \N 2063 1.0 1 2020-01-17 20:09:21.841224 2020-01-17 20:09:21.841224 0 \N 4316 \N 301 \N 2064 1.0 1 2020-01-17 22:30:12.661687 2020-01-17 22:30:12.661687 0 \N 4317 \N 398 \N 2065 1.0 1 2020-01-18 01:27:36.896511 2020-01-18 01:27:36.896511 0 \N 4318 \N 698 \N 2066 1.0 1 2020-01-18 02:16:21.689578 2020-01-18 02:16:21.689578 0 \N 4319 \N 840 \N 2067 1.0 1 2020-01-18 20:28:48.9002 2020-01-18 20:28:48.9002 0 \N 4320 \N 808 \N 2068 1.0 1 2020-01-18 21:43:49.228797 2020-01-18 21:43:49.228797 0 \N 4321 \N 957 \N \N 1.0 0 2020-01-18 21:55:23.915677 2020-01-18 21:55:23.915677 7 415 4322 \N 797 \N 2069 1.0 1 2020-01-18 23:38:27.324081 2020-01-18 23:38:27.324081 0 \N 4323 \N 683 \N \N 6.0 0 2020-01-19 00:02:20.862863 2020-01-19 00:02:20.862863 7 416 4324 \N 663 \N \N 5.0 0 2020-01-19 01:28:58.735737 2020-01-19 01:28:58.735737 7 418 4325 \N 651 \N 2070 1.0 1 2020-01-19 01:29:05.590874 2020-01-19 01:29:05.590874 0 \N 4326 \N 960 \N 2071 1.0 1 2020-01-21 01:44:10.580248 2020-01-21 01:44:10.580248 0 \N 4327 \N 351 \N 2072 1.0 1 2020-01-21 02:50:02.172223 2020-01-21 02:50:02.172223 0 \N 4328 \N 791 \N 2073 1.0 1 2020-01-22 00:03:30.687836 2020-01-22 00:03:30.687836 0 \N 4329 \N 593 \N 2074 1.0 1 2020-01-22 00:29:44.994602 2020-01-22 00:29:44.994602 0 \N 4330 \N 947 \N 1475 1.0 0 2020-01-22 01:35:07.990889 2020-01-22 01:35:07.990889 8 \N 4331 \N 679 \N 2075 1.0 1 2020-01-22 22:07:31.535683 2020-01-22 22:07:31.535683 0 \N 4332 \N 728 \N 2076 1.0 1 2020-01-23 18:19:40.723692 2020-01-23 18:19:40.723692 0 \N 4333 \N 689 \N 2077 1.0 1 2020-01-23 20:24:52.704704 2020-01-23 20:24:52.704704 0 \N 4334 \N 791 \N 2078 1.0 1 2020-01-24 00:51:49.463745 2020-01-24 00:51:49.463745 0 \N 4335 \N 840 \N 2079 1.0 1 2020-01-24 01:04:04.870534 2020-01-24 01:04:04.870534 0 \N 4336 \N 598 \N 2080 1.0 1 2020-01-24 01:06:09.374597 2020-01-24 01:06:09.374597 0 \N 4337 \N 749 \N 2081 1.0 1 2020-01-24 17:38:55.93397 2020-01-24 17:38:55.93397 0 \N 4338 \N 958 \N 2082 1.0 1 2020-01-24 17:47:32.130783 2020-01-24 17:47:32.130783 0 \N 4339 \N 945 \N 2083 1.0 1 2020-01-24 18:23:45.40088 2020-01-24 18:23:45.40088 0 \N 4340 \N 722 \N 1392 1.0 0 2020-01-24 19:08:51.09409 2020-01-24 19:08:51.09409 8 \N 4341 \N 945 \N 1557 1.0 0 2020-01-24 19:10:34.004265 2020-01-24 19:10:34.004265 8 \N 4342 \N 912 \N 2084 1.0 1 2020-01-24 20:34:14.771979 2020-01-24 20:34:14.771979 0 \N 4343 \N 904 \N 2084 1.0 1 2020-01-24 20:34:14.806632 2020-01-24 20:34:14.806632 0 \N 4344 \N 837 \N 2085 1.0 1 2020-01-24 20:38:43.848566 2020-01-24 20:38:43.848566 0 \N 4345 \N 886 \N 2086 1.0 1 2020-01-24 22:35:16.945176 2020-01-24 22:35:16.945176 0 \N 4346 \N 599 \N \N 6.0 0 2020-01-24 23:48:06.467315 2020-01-24 23:48:06.467315 7 428 4347 \N 569 \N \N 4.0 0 2020-01-24 23:48:13.274345 2020-01-24 23:48:13.274345 7 427 4348 \N 684 \N \N 3.0 0 2020-01-24 23:48:20.476968 2020-01-24 23:48:20.476968 7 426 4349 \N 279 \N \N 4.0 0 2020-01-24 23:48:27.542621 2020-01-24 23:48:27.542621 7 425 4350 \N 280 \N \N 1.0 0 2020-01-24 23:48:27.571732 2020-01-24 23:48:27.571732 7 425 4351 \N 292 \N \N 2.0 0 2020-01-24 23:48:27.597785 2020-01-24 23:48:27.597785 7 425 4352 \N 291 \N \N 1.0 0 2020-01-24 23:48:27.623699 2020-01-24 23:48:27.623699 7 425 4353 \N 513 \N \N 3.0 0 2020-01-24 23:48:35.551697 2020-01-24 23:48:35.551697 7 424 4354 \N 618 \N \N 3.0 0 2020-01-24 23:48:35.577311 2020-01-24 23:48:35.577311 7 424 4355 \N 590 \N \N 2.0 0 2020-01-24 23:48:35.601022 2020-01-24 23:48:35.601022 7 424 4356 \N 156 \N \N 1.0 0 2020-01-24 23:48:35.628994 2020-01-24 23:48:35.628994 7 424 4357 \N 713 \N \N 6.0 0 2020-01-24 23:48:35.653818 2020-01-24 23:48:35.653818 7 424 4358 \N 602 \N \N 4.0 0 2020-01-24 23:48:35.679181 2020-01-24 23:48:35.679181 7 424 4359 \N 636 \N \N 3.0 0 2020-01-24 23:48:35.706869 2020-01-24 23:48:35.706869 7 424 4360 \N 608 \N \N 3.0 0 2020-01-24 23:48:35.736982 2020-01-24 23:48:35.736982 7 424 4361 \N 565 \N \N 3.0 0 2020-01-24 23:48:35.763008 2020-01-24 23:48:35.763008 7 424 4362 \N 628 \N \N 4.0 0 2020-01-24 23:48:35.79409 2020-01-24 23:48:35.79409 7 424 4363 \N 887 \N \N 3.0 0 2020-01-24 23:48:35.820111 2020-01-24 23:48:35.820111 7 424 4364 \N 803 \N \N 6.0 0 2020-01-24 23:48:35.843294 2020-01-24 23:48:35.843294 7 424 4365 \N 874 \N \N 4.0 0 2020-01-24 23:48:35.86685 2020-01-24 23:48:35.86685 7 424 4366 \N 670 \N \N 2.0 0 2020-01-24 23:48:35.891748 2020-01-24 23:48:35.891748 7 424 4367 \N 714 \N \N 3.0 0 2020-01-24 23:48:35.9194 2020-01-24 23:48:35.9194 7 424 4368 \N 702 \N \N 2.0 0 2020-01-24 23:48:43.584928 2020-01-24 23:48:43.584928 7 423 4369 \N 611 \N \N 1.0 0 2020-01-24 23:48:43.60573 2020-01-24 23:48:43.60573 7 423 4370 \N 682 \N \N 4.0 0 2020-01-24 23:48:43.622985 2020-01-24 23:48:43.622985 7 423 4371 \N 787 \N \N 4.0 0 2020-01-24 23:48:43.643313 2020-01-24 23:48:43.643313 7 423 4372 \N 624 \N \N 4.0 0 2020-01-24 23:48:43.664161 2020-01-24 23:48:43.664161 7 423 4373 \N 537 \N \N 6.0 0 2020-01-24 23:48:43.687641 2020-01-24 23:48:43.687641 7 423 4374 \N 135 \N \N 2.0 0 2020-01-24 23:48:43.71575 2020-01-24 23:48:43.71575 7 423 4375 \N 431 \N \N 3.0 0 2020-01-24 23:48:43.742919 2020-01-24 23:48:43.742919 7 423 4376 \N 432 \N \N 3.0 0 2020-01-24 23:48:43.767161 2020-01-24 23:48:43.767161 7 423 4377 \N 275 \N \N 3.0 0 2020-01-24 23:48:43.79178 2020-01-24 23:48:43.79178 7 423 4378 \N 638 \N \N 3.0 0 2020-01-24 23:48:43.815718 2020-01-24 23:48:43.815718 7 423 4379 \N 457 \N \N 2.0 0 2020-01-24 23:48:50.881903 2020-01-24 23:48:50.881903 7 422 4380 \N 964 \N \N 1.0 0 2020-01-24 23:48:57.485965 2020-01-24 23:48:57.485965 7 421 4381 \N 789 \N \N 5.0 0 2020-01-25 18:58:06.205951 2020-01-25 18:58:06.205951 7 417 4382 \N 947 \N \N 2.0 0 2020-01-25 18:58:17.208075 2020-01-25 18:58:17.208075 7 420 4383 \N 944 \N \N 1.0 0 2020-01-25 18:58:36.316298 2020-01-25 18:58:36.316298 7 430 4384 \N 676 \N \N 1.0 0 2020-01-25 18:58:36.344773 2020-01-25 18:58:36.344773 7 430 4385 \N 954 \N \N 3.0 0 2020-01-25 18:58:36.367338 2020-01-25 18:58:36.367338 7 430 4386 \N 890 \N \N 1.0 0 2020-01-25 18:58:36.397513 2020-01-25 18:58:36.397513 7 430 4387 \N 893 \N \N 2.0 0 2020-01-25 18:58:36.420911 2020-01-25 18:58:36.420911 7 430 4388 \N 732 221 \N 1.0 0 2020-01-25 19:15:54.063943 2020-01-25 19:15:54.063943 1 \N 4389 \N 971 222 \N 1.0 0 2020-01-25 19:33:28.117821 2020-01-25 19:33:28.117821 1 \N 4390 \N 494 \N \N 9.0 0 2020-01-25 19:38:35.363779 2020-01-25 19:38:35.363779 7 431 4391 \N 607 \N \N 4.0 0 2020-01-25 19:38:43.033207 2020-01-25 19:38:43.033207 7 429 4392 \N 609 \N \N 6.0 0 2020-01-25 19:38:43.058825 2020-01-25 19:38:43.058825 7 429 4393 \N 252 \N \N 3.0 0 2020-01-25 19:38:43.084338 2020-01-25 19:38:43.084338 7 429 4394 \N 605 \N \N 5.0 0 2020-01-25 19:38:43.110021 2020-01-25 19:38:43.110021 7 429 4395 \N 168 \N 2087 1.0 1 2020-01-25 21:53:55.237719 2020-01-25 21:53:55.237719 0 \N 4396 \N 715 \N 2088 1.0 1 2020-01-25 21:59:20.513375 2020-01-25 21:59:20.513375 0 \N 4397 \N 877 \N 2088 1.0 1 2020-01-25 21:59:20.538927 2020-01-25 21:59:20.538927 0 \N 4398 \N 122 \N \N 1.0 0 2020-01-25 22:10:02.584668 2020-01-25 22:10:02.584668 7 435 4399 \N 930 \N \N 1.0 0 2020-01-25 22:10:12.262449 2020-01-25 22:10:12.262449 7 434 4400 \N 928 \N \N 1.0 0 2020-01-25 22:10:12.28311 2020-01-25 22:10:12.28311 7 434 4401 \N 919 \N \N 1.0 0 2020-01-25 22:10:12.303345 2020-01-25 22:10:12.303345 7 434 4402 \N 913 \N \N 2.0 0 2020-01-25 22:10:12.322753 2020-01-25 22:10:12.322753 7 434 4403 \N 295 \N \N 1.0 0 2020-01-25 22:10:20.423466 2020-01-25 22:10:20.423466 7 433 4404 \N 122 \N 2089 1.0 1 2020-01-25 22:13:04.65134 2020-01-25 22:13:04.65134 0 \N 4405 \N 686 \N 2090 1.0 1 2020-01-25 23:12:45.485186 2020-01-25 23:12:45.485186 0 \N 4406 \N 289 \N 2091 1.0 1 2020-01-25 23:54:41.95096 2020-01-25 23:54:41.95096 0 \N 4407 \N 566 \N 2091 1.0 1 2020-01-25 23:54:41.981436 2020-01-25 23:54:41.981436 0 \N 4408 \N 738 \N \N 4.0 0 2020-01-26 00:00:58.991871 2020-01-26 00:00:58.991871 7 432 4409 \N 223 \N \N 3.0 0 2020-01-26 00:00:59.015477 2020-01-26 00:00:59.015477 7 432 4410 \N 739 \N \N 3.0 0 2020-01-26 00:00:59.040832 2020-01-26 00:00:59.040832 7 432 4411 \N 425 \N \N 3.0 0 2020-01-26 00:00:59.068984 2020-01-26 00:00:59.068984 7 432 4412 \N 314 \N \N 2.0 0 2020-01-26 00:00:59.094861 2020-01-26 00:00:59.094861 7 432 4413 \N 399 \N \N 1.0 0 2020-01-26 00:00:59.118411 2020-01-26 00:00:59.118411 7 432 4414 \N 402 \N \N 1.0 0 2020-01-26 00:00:59.143032 2020-01-26 00:00:59.143032 7 432 4415 \N 408 \N \N 1.0 0 2020-01-26 00:00:59.171467 2020-01-26 00:00:59.171467 7 432 4416 \N 409 \N \N 1.0 0 2020-01-26 00:00:59.197785 2020-01-26 00:00:59.197785 7 432 4417 \N 405 \N \N 1.0 0 2020-01-26 00:00:59.222588 2020-01-26 00:00:59.222588 7 432 4418 \N 406 \N \N 1.0 0 2020-01-26 00:00:59.261194 2020-01-26 00:00:59.261194 7 432 4419 \N 567 \N \N 3.0 0 2020-01-26 00:00:59.285158 2020-01-26 00:00:59.285158 7 432 4420 \N 414 \N \N 6.0 0 2020-01-26 00:00:59.314266 2020-01-26 00:00:59.314266 7 432 4421 \N 407 \N \N 2.0 0 2020-01-26 00:00:59.349106 2020-01-26 00:00:59.349106 7 432 4422 \N 739 \N 2092 1.0 1 2020-01-26 00:02:42.149688 2020-01-26 00:02:42.149688 0 \N 4423 \N 407 \N 2092 1.0 1 2020-01-26 00:02:42.174471 2020-01-26 00:02:42.174471 0 \N 4424 \N 289 \N 2092 1.0 1 2020-01-26 00:02:42.198176 2020-01-26 00:02:42.198176 0 \N 4425 \N 739 \N 2093 1.0 1 2020-01-26 00:11:45.365711 2020-01-26 00:11:45.365711 0 \N 4426 \N 739 \N 2094 1.0 1 2020-01-26 00:12:28.690089 2020-01-26 00:12:28.690089 0 \N 4427 \N 427 \N 2095 1.0 1 2020-01-26 00:52:30.498443 2020-01-26 00:52:30.498443 0 \N 4428 \N 120 \N 2096 1.0 1 2020-01-26 00:58:25.147318 2020-01-26 00:58:25.147318 0 \N 4429 \N 407 \N 2096 1.0 1 2020-01-26 00:58:25.175428 2020-01-26 00:58:25.175428 0 \N 4430 \N 738 \N 2097 1.0 1 2020-01-26 01:38:31.419076 2020-01-26 01:38:31.419076 0 \N 4431 \N 741 \N 2097 1.0 1 2020-01-26 01:38:31.473081 2020-01-26 01:38:31.473081 0 \N 4432 \N 683 \N 2098 1.0 1 2020-01-26 01:47:53.821331 2020-01-26 01:47:53.821331 0 \N 4433 \N 833 \N 2099 1.0 1 2020-01-26 02:04:40.925571 2020-01-26 02:04:40.925571 0 \N 4434 \N 130 \N 2100 1.0 1 2020-01-26 02:10:51.067899 2020-01-26 02:10:51.067899 0 \N 4435 \N 406 \N 2101 1.0 1 2020-01-26 18:56:11.676303 2020-01-26 18:56:11.676303 0 \N 4436 \N 597 \N 2102 1.0 1 2020-01-26 20:21:16.495423 2020-01-26 20:21:16.495423 0 \N 4437 \N 796 \N 2103 1.0 1 2020-01-26 21:35:56.162941 2020-01-26 21:35:56.162941 0 \N 4438 \N 664 \N 2104 1.0 1 2020-01-26 21:45:20.421008 2020-01-26 21:45:20.421008 0 \N 4439 \N 319 \N 2104 1.0 1 2020-01-26 21:45:20.454688 2020-01-26 21:45:20.454688 0 \N 4440 \N 751 \N 2105 1.0 1 2020-01-27 19:22:59.520433 2020-01-27 19:22:59.520433 0 \N 4441 \N 78 \N \N 3.0 0 2020-01-27 23:33:51.06857 2020-01-27 23:33:51.06857 7 436 4442 \N 80 \N \N 2.0 0 2020-01-27 23:33:51.091855 2020-01-27 23:33:51.091855 7 436 4443 \N 83 \N \N 2.0 0 2020-01-27 23:33:51.11385 2020-01-27 23:33:51.11385 7 436 4444 \N 79 \N \N 3.0 0 2020-01-27 23:33:51.146071 2020-01-27 23:33:51.146071 7 436 4445 \N 77 \N \N 1.0 0 2020-01-27 23:33:51.172948 2020-01-27 23:33:51.172948 7 436 4446 \N 277 \N \N 1.0 0 2020-01-27 23:33:51.195105 2020-01-27 23:33:51.195105 7 436 4447 \N 278 \N \N 2.0 0 2020-01-27 23:33:51.215627 2020-01-27 23:33:51.215627 7 436 4448 \N 81 \N \N 1.0 0 2020-01-27 23:33:51.237939 2020-01-27 23:33:51.237939 7 436 4449 \N 323 \N \N 2.0 0 2020-01-27 23:33:51.259723 2020-01-27 23:33:51.259723 7 436 4450 \N 192 \N 2106 1.0 1 2020-01-27 23:50:24.908768 2020-01-27 23:50:24.908768 0 \N 4451 \N 192 \N 2106 1.0 0 2020-01-27 23:57:32.016872 2020-01-27 23:57:32.016872 3 \N 4452 \N 192 \N 2107 1.0 1 2020-01-27 23:57:58.512235 2020-01-27 23:57:58.512235 0 \N 4453 \N 192 \N 2107 1.0 0 2020-01-27 23:58:26.688967 2020-01-27 23:58:26.688967 3 \N 4454 \N 192 \N 2108 1.0 1 2020-01-27 23:58:48.603876 2020-01-27 23:58:48.603876 0 \N 4455 \N 425 \N 2109 1.0 1 2020-01-28 01:50:10.34874 2020-01-28 01:50:10.34874 0 \N 4456 \N 636 \N 2110 1.0 1 2020-01-28 02:31:33.638581 2020-01-28 02:31:33.638581 0 \N 4457 \N 605 \N 2111 1.0 1 2020-01-28 02:35:51.840823 2020-01-28 02:35:51.840823 0 \N 4458 \N 476 \N 2111 1.0 1 2020-01-28 02:35:51.865358 2020-01-28 02:35:51.865358 0 \N 4459 \N 476 \N 2111 1.0 0 2020-01-28 02:38:54.900291 2020-01-28 02:38:54.900291 9 \N 4460 \N 605 \N 2111 1.0 0 2020-01-28 02:38:54.928953 2020-01-28 02:38:54.928953 9 \N 4461 \N 476 \N 2111 1.0 0 2020-01-28 02:38:55.10042 2020-01-28 02:38:55.10042 9 \N 4462 \N 605 \N 2111 1.0 0 2020-01-28 02:38:55.125908 2020-01-28 02:38:55.125908 9 \N 4463 \N 605 \N 2112 1.0 1 2020-01-28 02:39:47.608023 2020-01-28 02:39:47.608023 0 \N 4464 \N 476 \N 2112 1.0 1 2020-01-28 02:39:47.633641 2020-01-28 02:39:47.633641 0 \N 4465 \N 191 \N 2113 1.0 1 2020-01-28 18:23:31.1229 2020-01-28 18:23:31.1229 0 \N 4466 \N 409 \N 2114 1.0 1 2020-01-28 18:46:38.177636 2020-01-28 18:46:38.177636 0 \N 4467 \N 890 \N 2115 1.0 1 2020-01-28 19:46:02.962062 2020-01-28 19:46:02.962062 0 \N 4468 \N 83 \N 2116 1.0 1 2020-01-28 19:49:08.740367 2020-01-28 19:49:08.740367 0 \N 4469 \N 165 \N 2117 1.0 1 2020-01-28 19:51:34.757754 2020-01-28 19:51:34.757754 0 \N 4470 \N 668 \N \N 13.0 0 2020-01-28 20:01:11.725978 2020-01-28 20:01:11.725978 7 419 4471 \N 299 \N \N 1.0 0 2020-01-28 20:26:07.527337 2020-01-28 20:26:07.527337 7 442 4472 \N 329 \N \N 1.0 0 2020-01-28 20:26:15.377291 2020-01-28 20:26:15.377291 7 443 4473 \N 207 \N \N 3.0 0 2020-01-28 21:00:55.362444 2020-01-28 21:00:55.362444 7 437 4474 \N 711 \N \N 5.0 0 2020-01-28 21:00:55.393851 2020-01-28 21:00:55.393851 7 437 4475 \N 205 \N \N 9.0 0 2020-01-28 21:00:55.425301 2020-01-28 21:00:55.425301 7 437 4476 \N 68 \N \N 4.0 0 2020-01-28 21:00:55.455167 2020-01-28 21:00:55.455167 7 437 4477 \N 293 \N \N 3.0 0 2020-01-28 21:00:55.491598 2020-01-28 21:00:55.491598 7 437 4478 \N 315 \N \N 2.0 0 2020-01-28 21:00:55.528122 2020-01-28 21:00:55.528122 7 437 4479 \N 67 \N \N 2.0 0 2020-01-28 21:00:55.5566 2020-01-28 21:00:55.5566 7 437 4480 \N 117 \N \N 1.0 0 2020-01-28 21:00:55.585028 2020-01-28 21:00:55.585028 7 437 4481 \N 738 \N 2118 1.0 1 2020-01-28 21:01:36.13332 2020-01-28 21:01:36.13332 0 \N 4482 \N 711 \N 2118 1.0 1 2020-01-28 21:01:36.166992 2020-01-28 21:01:36.166992 0 \N 4483 \N 639 \N 2119 1.0 1 2020-01-29 00:19:31.908556 2020-01-29 00:19:31.908556 0 \N 4484 \N 711 \N 2119 1.0 1 2020-01-29 00:19:31.936546 2020-01-29 00:19:31.936546 0 \N 4485 \N 238 \N \N 3.0 0 2020-01-29 00:48:40.914302 2020-01-29 00:48:40.914302 7 444 4486 \N 236 \N \N 1.0 0 2020-01-29 00:48:40.935555 2020-01-29 00:48:40.935555 7 444 4487 \N 257 \N \N 1.0 0 2020-01-29 00:48:40.953644 2020-01-29 00:48:40.953644 7 444 4488 \N 164 \N \N 4.0 0 2020-01-29 00:53:18.696606 2020-01-29 00:53:18.696606 7 440 4489 \N 176 \N \N 3.0 0 2020-01-29 00:53:18.715939 2020-01-29 00:53:18.715939 7 440 4490 \N 757 \N \N 3.0 0 2020-01-29 00:53:33.508029 2020-01-29 00:53:33.508029 7 446 4491 \N 176 \N \N 2.0 0 2020-01-29 00:53:45.988111 2020-01-29 00:53:45.988111 7 439 4492 \N 209 \N \N 4.0 0 2020-01-29 00:54:00.746183 2020-01-29 00:54:00.746183 7 438 4493 \N 408 \N \N 4.0 0 2020-01-29 01:30:02.815506 2020-01-29 01:30:02.815506 7 448 4494 \N 15 \N \N 4.0 0 2020-01-29 01:30:02.839412 2020-01-29 01:30:02.839412 7 448 4495 \N 14 \N \N 4.0 0 2020-01-29 01:30:02.869988 2020-01-29 01:30:02.869988 7 448 4496 \N 7 \N \N 7.0 0 2020-01-29 01:30:02.902284 2020-01-29 01:30:02.902284 7 448 4497 \N 550 \N \N 1.0 0 2020-01-29 01:30:11.426979 2020-01-29 01:30:11.426979 7 447 4498 \N 564 \N \N 3.0 0 2020-01-29 01:30:19.531721 2020-01-29 01:30:19.531721 7 445 4499 \N 627 \N \N 3.0 0 2020-01-29 01:30:19.558479 2020-01-29 01:30:19.558479 7 445 4500 \N 579 \N \N 2.0 0 2020-01-29 01:30:19.594786 2020-01-29 01:30:19.594786 7 445 4501 \N 666 \N \N 7.0 0 2020-01-29 01:30:19.622932 2020-01-29 01:30:19.622932 7 445 4502 \N 637 \N \N 5.0 0 2020-01-29 01:30:19.655786 2020-01-29 01:30:19.655786 7 445 4503 \N 498 \N \N 4.0 0 2020-01-29 01:30:19.687657 2020-01-29 01:30:19.687657 7 445 4504 \N 604 \N \N 4.0 0 2020-01-29 01:30:19.719473 2020-01-29 01:30:19.719473 7 445 4505 \N 578 \N \N 4.0 0 2020-01-29 01:30:19.752794 2020-01-29 01:30:19.752794 7 445 4506 \N 527 \N \N 3.0 0 2020-01-29 01:30:26.034182 2020-01-29 01:30:26.034182 7 441 4507 \N 898 223 \N 4.0 0 2020-01-29 02:33:55.72236 2020-01-29 02:33:55.72236 1 \N 4508 \N 740 \N 2120 1.0 1 2020-01-29 16:44:12.140933 2020-01-29 16:44:12.140933 0 \N 4509 \N 717 \N 2121 1.0 1 2020-01-29 17:13:10.587449 2020-01-29 17:13:10.587449 0 \N 4510 \N 871 \N 2122 1.0 1 2020-01-29 17:25:26.975725 2020-01-29 17:25:26.975725 0 \N 4511 \N 807 \N 2122 1.0 1 2020-01-29 17:25:27.002092 2020-01-29 17:25:27.002092 0 \N 4512 \N 165 \N 2123 1.0 1 2020-01-29 18:23:44.587913 2020-01-29 18:23:44.587913 0 \N 4513 \N 972 225 \N 2.0 0 2020-01-29 18:45:28.206418 2020-01-29 18:45:28.206418 1 \N 4514 \N 859 \N \N 2.0 0 2020-01-29 19:47:19.908321 2020-01-29 19:47:19.908321 7 450 4515 \N 781 \N \N 3.0 0 2020-01-29 19:47:28.770854 2020-01-29 19:47:28.770854 7 449 4516 \N 945 \N \N 2.0 0 2020-01-29 19:47:28.781397 2020-01-29 19:47:28.781397 7 449 4517 \N 737 \N \N 2.0 0 2020-01-29 19:47:28.792305 2020-01-29 19:47:28.792305 7 449 4518 \N 779 \N \N 4.0 0 2020-01-29 19:47:28.802197 2020-01-29 19:47:28.802197 7 449 4519 \N 774 \N \N 3.0 0 2020-01-29 19:47:28.812345 2020-01-29 19:47:28.812345 7 449 4520 \N 776 \N \N 2.0 0 2020-01-29 19:47:28.821904 2020-01-29 19:47:28.821904 7 449 4521 \N 775 \N \N 3.0 0 2020-01-29 19:47:28.831354 2020-01-29 19:47:28.831354 7 449 4522 \N 765 \N \N 3.0 0 2020-01-29 19:47:28.840507 2020-01-29 19:47:28.840507 7 449 4523 \N 767 \N \N 2.0 0 2020-01-29 19:47:28.848669 2020-01-29 19:47:28.848669 7 449 4524 \N 769 \N \N 3.0 0 2020-01-29 19:47:28.855511 2020-01-29 19:47:28.855511 7 449 4525 \N 770 \N \N 3.0 0 2020-01-29 19:47:28.863819 2020-01-29 19:47:28.863819 7 449 4526 \N 766 \N \N 3.0 0 2020-01-29 19:47:28.873808 2020-01-29 19:47:28.873808 7 449 4527 \N 857 \N \N 6.0 0 2020-01-29 19:47:28.88389 2020-01-29 19:47:28.88389 7 449 4528 \N 855 \N \N 1.0 0 2020-01-29 19:47:28.891528 2020-01-29 19:47:28.891528 7 449 4529 \N 858 \N \N 2.0 0 2020-01-29 19:47:28.900421 2020-01-29 19:47:28.900421 7 449 4530 \N 897 \N \N 7.0 0 2020-01-29 19:47:28.910356 2020-01-29 19:47:28.910356 7 449 4531 \N 895 \N \N 2.0 0 2020-01-29 19:47:28.919427 2020-01-29 19:47:28.919427 7 449 4532 \N 896 \N \N 7.0 0 2020-01-29 19:47:28.931002 2020-01-29 19:47:28.931002 7 449 4533 \N 414 \N 2124 1.0 1 2020-01-29 20:39:29.625647 2020-01-29 20:39:29.625647 0 \N 4534 \N 901 \N 2125 1.0 1 2020-01-29 21:56:49.588421 2020-01-29 21:56:49.588421 0 \N 4535 \N 951 \N 2126 1.0 1 2020-01-29 22:02:27.775121 2020-01-29 22:02:27.775121 0 \N 4536 \N 230 \N 2127 1.0 1 2020-01-29 22:05:37.486945 2020-01-29 22:05:37.486945 0 \N 4537 \N 639 \N 2128 1.0 1 2020-01-30 00:19:51.143556 2020-01-30 00:19:51.143556 0 \N 4538 \N 669 \N 2129 1.0 1 2020-01-30 03:05:03.106904 2020-01-30 03:05:03.106904 0 \N 4539 \N 738 \N 2130 1.0 1 2020-01-30 17:50:29.987588 2020-01-30 17:50:29.987588 0 \N 4540 \N 92 \N 2131 1.0 1 2020-01-30 18:42:44.445421 2020-01-30 18:42:44.445421 0 \N 4541 \N 887 \N 2132 1.0 1 2020-01-30 20:32:57.149452 2020-01-30 20:32:57.149452 0 \N 4542 \N 891 \N 2133 1.0 1 2020-01-30 21:33:48.572829 2020-01-30 21:33:48.572829 0 \N 4543 \N 586 \N 2134 1.0 1 2020-01-30 21:46:57.911224 2020-01-30 21:46:57.911224 0 \N 4544 \N 586 \N 2134 1.0 0 2020-01-30 21:47:26.579534 2020-01-30 21:47:26.579534 3 \N 4545 \N 586 \N 2135 1.0 1 2020-01-30 21:47:47.108097 2020-01-30 21:47:47.108097 0 \N 4546 \N 359 \N 2136 1.0 1 2020-01-30 22:07:12.239782 2020-01-30 22:07:12.239782 0 \N 4547 \N 439 \N 2136 1.0 1 2020-01-30 22:07:12.266954 2020-01-30 22:07:12.266954 0 \N 4548 \N 772 \N \N 1.0 0 2020-01-30 22:47:04.75521 2020-01-30 22:47:04.75521 7 454 4549 \N 646 \N \N 1.0 0 2020-01-30 22:47:23.213731 2020-01-30 22:47:23.213731 7 451 4550 \N 863 \N \N 1.0 0 2020-01-30 22:47:23.235848 2020-01-30 22:47:23.235848 7 451 4551 \N 778 \N \N 2.0 0 2020-01-30 22:47:23.256774 2020-01-30 22:47:23.256774 7 451 4552 \N 780 \N \N 2.0 0 2020-01-30 22:47:23.277982 2020-01-30 22:47:23.277982 7 451 4553 \N 861 \N \N 1.0 0 2020-01-30 22:47:23.301111 2020-01-30 22:47:23.301111 7 451 4554 \N 860 \N \N 1.0 0 2020-01-30 22:47:23.324012 2020-01-30 22:47:23.324012 7 451 4555 \N 856 \N \N 1.0 0 2020-01-30 22:47:23.346662 2020-01-30 22:47:23.346662 7 451 4556 \N 783 \N \N 1.0 0 2020-01-30 22:47:23.387211 2020-01-30 22:47:23.387211 7 451 4557 \N 792 \N \N 2.0 0 2020-01-30 22:47:23.406167 2020-01-30 22:47:23.406167 7 451 4558 \N 793 \N \N 1.0 0 2020-01-30 22:47:23.425548 2020-01-30 22:47:23.425548 7 451 4559 \N 788 \N \N 1.0 0 2020-01-30 22:47:23.446882 2020-01-30 22:47:23.446882 7 451 4560 \N 791 \N \N 1.0 0 2020-01-30 22:47:23.465134 2020-01-30 22:47:23.465134 7 451 4561 \N 786 \N \N 1.0 0 2020-01-30 22:47:23.487182 2020-01-30 22:47:23.487182 7 451 4562 \N 782 \N \N 2.0 0 2020-01-30 22:47:23.505445 2020-01-30 22:47:23.505445 7 451 4563 \N 946 \N \N 3.0 0 2020-01-30 22:47:23.522869 2020-01-30 22:47:23.522869 7 451 4564 \N 772 \N \N 1.0 0 2020-01-30 22:47:23.540677 2020-01-30 22:47:23.540677 7 451 4565 \N 773 \N \N 1.0 0 2020-01-30 22:47:23.564479 2020-01-30 22:47:23.564479 7 451 4566 \N 649 \N \N 1.0 0 2020-01-30 22:47:23.58601 2020-01-30 22:47:23.58601 7 451 4567 \N 888 \N \N 1.0 0 2020-01-30 22:47:23.607464 2020-01-30 22:47:23.607464 7 451 4568 \N 911 \N \N 1.0 0 2020-01-30 22:47:23.625951 2020-01-30 22:47:23.625951 7 451 4569 \N 957 \N \N 1.0 0 2020-01-30 22:47:23.644628 2020-01-30 22:47:23.644628 7 451 4570 \N 650 \N \N 1.0 0 2020-01-30 22:47:23.666324 2020-01-30 22:47:23.666324 7 451 4571 \N 647 \N \N 1.0 0 2020-01-30 22:47:23.687797 2020-01-30 22:47:23.687797 7 451 4572 \N 911 \N 2137 1.0 1 2020-01-30 22:48:20.429531 2020-01-30 22:48:20.429531 0 \N 4573 \N 664 \N 2138 1.0 1 2020-01-31 00:11:50.961209 2020-01-31 00:11:50.961209 0 \N 4574 \N 664 \N 2138 1.0 0 2020-01-31 00:14:18.221859 2020-01-31 00:14:18.221859 3 \N 4575 \N 664 \N 2139 1.0 1 2020-01-31 00:14:51.237391 2020-01-31 00:14:51.237391 0 \N 4576 \N 869 \N \N 1.0 0 2020-01-31 01:01:06.977177 2020-01-31 01:01:06.977177 7 455 4577 \N 868 \N 2140 1.0 1 2020-01-31 01:16:19.947856 2020-01-31 01:16:19.947856 0 \N 4578 \N 869 \N 2140 1.0 1 2020-01-31 01:16:19.975208 2020-01-31 01:16:19.975208 0 \N 4579 \N 972 \N 2141 1.0 1 2020-01-31 01:22:18.747883 2020-01-31 01:22:18.747883 0 \N 4580 \N 744 \N 2141 1.0 1 2020-01-31 01:22:18.776062 2020-01-31 01:22:18.776062 0 \N 4581 \N 950 \N 2142 1.0 1 2020-01-31 01:36:52.097358 2020-01-31 01:36:52.097358 0 \N 4582 \N 116 \N 2143 1.0 1 2020-01-31 01:40:21.837243 2020-01-31 01:40:21.837243 0 \N 4583 \N 67 \N 2143 1.0 1 2020-01-31 01:40:21.883822 2020-01-31 01:40:21.883822 0 \N 4584 \N 414 \N 2143 1.0 1 2020-01-31 01:40:21.926743 2020-01-31 01:40:21.926743 0 \N 4585 \N 568 \N 2144 1.0 1 2020-01-31 01:55:57.706523 2020-01-31 01:55:57.706523 0 \N 4586 \N 631 \N 2145 1.0 1 2020-01-31 01:58:04.265439 2020-01-31 01:58:04.265439 0 \N 4587 \N 722 \N 2146 1.0 1 2020-01-31 02:01:34.525019 2020-01-31 02:01:34.525019 0 \N 4588 \N 771 \N \N 2.0 0 2020-01-31 02:13:05.473293 2020-01-31 02:13:05.473293 7 452 4589 \N 732 \N 2147 1.0 1 2020-01-31 02:18:20.390138 2020-01-31 02:18:20.390138 0 \N 4590 \N 405 \N 2147 1.0 1 2020-01-31 02:18:20.418253 2020-01-31 02:18:20.418253 0 \N 4591 \N 664 \N \N 3.0 0 2020-01-31 18:11:08.367524 2020-01-31 18:11:08.367524 7 457 4592 \N 949 \N \N 3.0 0 2020-01-31 18:11:08.390147 2020-01-31 18:11:08.390147 7 457 4593 \N 877 \N \N 3.0 0 2020-01-31 18:11:08.415495 2020-01-31 18:11:08.415495 7 457 4594 \N 663 \N \N 4.0 0 2020-01-31 18:11:08.436407 2020-01-31 18:11:08.436407 7 457 4595 \N 645 \N \N 2.0 0 2020-01-31 18:11:08.466261 2020-01-31 18:11:08.466261 7 457 4596 \N 286 \N \N 2.0 0 2020-01-31 18:11:08.485479 2020-01-31 18:11:08.485479 7 457 4597 \N 643 \N \N 1.0 0 2020-01-31 18:11:08.508529 2020-01-31 18:11:08.508529 7 457 4598 \N 798 \N \N 1.0 0 2020-01-31 18:11:08.528506 2020-01-31 18:11:08.528506 7 457 4599 \N 300 \N \N 1.0 0 2020-01-31 18:11:08.549129 2020-01-31 18:11:08.549129 7 457 4600 \N 645 \N 2148 1.0 1 2020-01-31 18:11:51.211282 2020-01-31 18:11:51.211282 0 \N 4601 \N 396 \N \N 2.0 0 2020-01-31 18:27:17.749812 2020-01-31 18:27:17.749812 7 456 4602 \N 499 \N \N 4.0 0 2020-01-31 18:27:32.135711 2020-01-31 18:27:32.135711 7 453 4603 \N 72 \N \N 3.0 0 2020-01-31 19:52:23.694572 2020-01-31 19:52:23.694572 7 462 4604 \N 141 \N \N 3.0 0 2020-01-31 19:52:23.725139 2020-01-31 19:52:23.725139 7 462 4605 \N 479 \N \N 4.0 0 2020-01-31 19:52:23.756542 2020-01-31 19:52:23.756542 7 462 4606 \N 534 \N \N 1.0 0 2020-01-31 19:56:15.529674 2020-01-31 19:56:15.529674 7 461 4607 \N 310 \N \N 1.0 0 2020-01-31 19:56:15.556569 2020-01-31 19:56:15.556569 7 461 4608 \N 324 \N \N 3.0 0 2020-01-31 19:56:15.581308 2020-01-31 19:56:15.581308 7 461 4609 \N 114 \N 2149 1.0 1 2020-01-31 20:09:14.265537 2020-01-31 20:09:14.265537 0 \N 4610 \N 114 \N 2150 1.0 1 2020-01-31 20:09:38.477206 2020-01-31 20:09:38.477206 0 \N 4611 \N 226 \N 2151 1.0 1 2020-01-31 20:12:30.522135 2020-01-31 20:12:30.522135 0 \N 4612 \N 164 \N 2151 1.0 1 2020-01-31 20:12:30.561436 2020-01-31 20:12:30.561436 0 \N 4613 \N 285 \N 2152 1.0 1 2020-01-31 21:36:02.328307 2020-01-31 21:36:02.328307 0 \N 4614 \N 302 \N 2152 1.0 1 2020-01-31 21:36:02.357013 2020-01-31 21:36:02.357013 0 \N 4615 \N 775 \N 2153 1.0 1 2020-01-31 21:45:09.39534 2020-01-31 21:45:09.39534 0 \N 4616 \N 712 \N 2154 1.0 1 2020-01-31 22:06:15.515355 2020-01-31 22:06:15.515355 0 \N 4617 \N 369 \N 2155 1.0 1 2020-01-31 23:22:16.212948 2020-01-31 23:22:16.212948 0 \N 4618 \N 679 \N 2156 1.0 1 2020-02-01 20:47:48.922875 2020-02-01 20:47:48.922875 0 \N 4619 \N 314 \N 2157 1.0 1 2020-02-01 21:08:24.265858 2020-02-01 21:08:24.265858 0 \N 4620 \N 902 \N 2158 1.0 1 2020-02-01 22:59:59.452696 2020-02-01 22:59:59.452696 0 \N 4621 \N 904 \N 2159 1.0 1 2020-02-01 23:03:34.035956 2020-02-01 23:03:34.035956 0 \N 4622 \N 117 \N 2160 1.0 1 2020-02-02 00:10:17.60167 2020-02-02 00:10:17.60167 0 \N 4623 \N 67 \N 2160 1.0 1 2020-02-02 00:10:17.628956 2020-02-02 00:10:17.628956 0 \N 4624 \N 619 \N 2161 1.0 1 2020-02-02 01:25:41.796151 2020-02-02 01:25:41.796151 0 \N 4625 \N 369 \N 2162 1.0 1 2020-02-04 01:46:05.680389 2020-02-04 01:46:05.680389 0 \N 4626 \N 114 \N 2163 1.0 1 2020-02-04 18:55:08.345354 2020-02-04 18:55:08.345354 0 \N 4627 \N 178 \N 2164 1.0 1 2020-02-04 21:14:55.471511 2020-02-04 21:14:55.471511 0 \N 4628 \N 947 \N 2165 1.0 1 2020-02-04 21:21:37.732395 2020-02-04 21:21:37.732395 0 \N 4629 \N 302 \N 2166 1.0 1 2020-02-04 21:24:34.500188 2020-02-04 21:24:34.500188 0 \N 4630 \N 569 \N 2167 1.0 1 2020-02-04 23:22:19.044049 2020-02-04 23:22:19.044049 0 \N 4631 \N 607 \N 2168 1.0 1 2020-02-04 23:24:49.625946 2020-02-04 23:24:49.625946 0 \N 4632 \N 223 \N 2169 1.0 1 2020-02-05 01:25:52.823552 2020-02-05 01:25:52.823552 0 \N 4633 \N 207 \N 2170 1.0 1 2020-02-05 01:45:28.498088 2020-02-05 01:45:28.498088 0 \N 4634 \N 166 \N 2170 1.0 1 2020-02-05 01:45:28.53664 2020-02-05 01:45:28.53664 0 \N 4635 \N 626 \N 2170 1.0 1 2020-02-05 01:45:28.573947 2020-02-05 01:45:28.573947 0 \N 4636 \N 973 226 \N 5.0 0 2020-02-05 02:22:00.287827 2020-02-05 02:22:00.287827 1 \N 4637 \N 399 \N 2171 1.0 1 2020-02-05 02:22:50.143572 2020-02-05 02:22:50.143572 0 \N 4638 \N 973 \N 2171 1.0 1 2020-02-05 02:22:50.176008 2020-02-05 02:22:50.176008 0 \N 4639 \N 729 \N 2172 1.0 1 2020-02-05 19:37:58.147529 2020-02-05 19:37:58.147529 0 \N 4640 \N 84 \N 2173 1.0 1 2020-02-05 20:36:48.592094 2020-02-05 20:36:48.592094 0 \N 4641 \N 717 \N 2174 1.0 1 2020-02-05 22:01:20.612391 2020-02-05 22:01:20.612391 0 \N 4642 \N 427 \N 2175 1.0 1 2020-02-05 22:07:36.364789 2020-02-05 22:07:36.364789 0 \N 4643 \N 954 \N 2176 1.0 1 2020-02-06 20:08:42.567991 2020-02-06 20:08:42.567991 0 \N 4644 \N 504 \N 2177 1.0 1 2020-02-06 20:17:23.007377 2020-02-06 20:17:23.007377 0 \N 4645 \N 639 \N 2178 1.0 1 2020-02-06 20:26:46.079986 2020-02-06 20:26:46.079986 0 \N 4646 \N 66 \N 2179 1.0 1 2020-02-06 22:51:53.052084 2020-02-06 22:51:53.052084 0 \N 4647 \N 899 \N 2180 1.0 1 2020-02-07 01:59:02.769347 2020-02-07 01:59:02.769347 0 \N 4648 \N 875 \N 2181 1.0 1 2020-02-07 21:15:43.14421 2020-02-07 21:15:43.14421 0 \N 4649 \N 392 \N 2182 1.0 1 2020-02-07 21:53:19.224512 2020-02-07 21:53:19.224512 0 \N 4650 \N 225 \N 2183 1.0 1 2020-02-07 23:06:01.078483 2020-02-07 23:06:01.078483 0 \N 4651 \N 205 \N 2183 1.0 1 2020-02-07 23:06:01.107159 2020-02-07 23:06:01.107159 0 \N 4652 \N 951 \N 2184 1.0 1 2020-02-08 00:32:19.973118 2020-02-08 00:32:19.973118 0 \N 4653 \N 951 \N 2184 1.0 0 2020-02-08 00:32:49.072477 2020-02-08 00:32:49.072477 3 \N 4654 \N 951 \N 2185 1.0 1 2020-02-08 00:33:12.106129 2020-02-08 00:33:12.106129 0 \N 4655 \N 705 \N 2185 1.0 1 2020-02-08 00:33:12.128745 2020-02-08 00:33:12.128745 0 \N 4656 \N 815 \N 2186 1.0 1 2020-02-08 20:50:35.411599 2020-02-08 20:50:35.411599 0 \N 4657 \N 811 \N 2187 1.0 1 2020-02-08 21:05:39.216008 2020-02-08 21:05:39.216008 0 \N 4658 \N 817 \N 2187 1.0 1 2020-02-08 21:05:39.259245 2020-02-08 21:05:39.259245 0 \N 4659 \N 661 \N 2188 1.0 1 2020-02-08 21:17:07.189243 2020-02-08 21:17:07.189243 0 \N 4660 \N 954 \N 2189 1.0 1 2020-02-09 00:26:35.697431 2020-02-09 00:26:35.697431 0 \N 4661 \N 688 \N 2189 1.0 1 2020-02-09 00:26:35.726746 2020-02-09 00:26:35.726746 0 \N 4662 \N 661 \N \N 1.0 0 2020-02-09 00:41:53.731248 2020-02-09 00:41:53.731248 7 463 4663 \N 754 \N 2190 1.0 1 2020-02-09 00:59:46.736795 2020-02-09 00:59:46.736795 0 \N 4664 \N 661 \N 2190 1.0 1 2020-02-09 00:59:46.767564 2020-02-09 00:59:46.767564 0 \N 4665 \N 205 \N 2191 1.0 1 2020-02-09 01:30:50.06061 2020-02-09 01:30:50.06061 0 \N 4666 \N 639 \N 2191 1.0 1 2020-02-09 01:30:50.101238 2020-02-09 01:30:50.101238 0 \N 4667 \N 738 \N 2191 1.0 1 2020-02-09 01:30:50.140078 2020-02-09 01:30:50.140078 0 \N 4668 \N 669 \N 2192 1.0 1 2020-02-09 02:06:40.508553 2020-02-09 02:06:40.508553 0 \N 4669 \N 688 \N 2193 1.0 1 2020-02-09 02:10:28.535981 2020-02-09 02:10:28.535981 0 \N 4670 \N 594 \N 2194 1.0 1 2020-02-10 17:37:56.799652 2020-02-10 17:37:56.799652 0 \N 4671 \N 531 \N 2195 1.0 1 2020-02-11 00:58:19.735062 2020-02-11 00:58:19.735062 0 \N 4672 \N 714 \N 1305 1.0 0 2020-02-11 22:55:43.25557 2020-02-11 22:55:43.25557 8 \N 4673 \N 176 \N 2196 1.0 1 2020-02-12 01:01:08.042596 2020-02-12 01:01:08.042596 0 \N 4674 \N 602 \N 2197 1.0 1 2020-02-12 18:13:30.077722 2020-02-12 18:13:30.077722 0 \N 4675 \N 176 \N 2197 1.0 1 2020-02-12 18:13:30.117625 2020-02-12 18:13:30.117625 0 \N 4676 \N 717 \N 2198 1.0 1 2020-02-12 21:31:23.624242 2020-02-12 21:31:23.624242 0 \N 4677 \N 808 \N 2199 1.0 1 2020-02-13 02:13:57.72296 2020-02-13 02:13:57.72296 0 \N 4678 \N 663 \N 2200 1.0 1 2020-02-13 18:20:15.355721 2020-02-13 18:20:15.355721 0 \N 4679 \N 415 \N \N 6.0 0 2020-02-13 19:00:38.05649 2020-02-13 19:00:38.05649 7 465 4680 \N 8 \N \N 4.0 0 2020-02-13 19:01:01.869995 2020-02-13 19:01:01.869995 7 464 4681 \N 552 \N \N 1.0 0 2020-02-13 19:01:26.724163 2020-02-13 19:01:26.724163 7 460 4682 \N 702 \N \N 2.0 0 2020-02-13 19:02:10.317136 2020-02-13 19:02:10.317136 7 459 4683 \N 697 \N \N 5.0 0 2020-02-13 19:02:10.326445 2020-02-13 19:02:10.326445 7 459 4684 \N 871 \N \N 6.0 0 2020-02-13 19:02:10.336474 2020-02-13 19:02:10.336474 7 459 4685 \N 710 \N \N 4.0 0 2020-02-13 19:02:10.346824 2020-02-13 19:02:10.346824 7 459 4686 \N 670 \N \N 4.0 0 2020-02-13 19:02:10.355637 2020-02-13 19:02:10.355637 7 459 4687 \N 787 \N \N 4.0 0 2020-02-13 19:02:10.363643 2020-02-13 19:02:10.363643 7 459 4688 \N 602 \N \N 4.0 0 2020-02-13 19:02:10.374424 2020-02-13 19:02:10.374424 7 459 4689 \N 874 \N \N 7.0 0 2020-02-13 19:02:10.384734 2020-02-13 19:02:10.384734 7 459 4690 \N 717 \N 2201 1.0 1 2020-02-13 20:47:26.442817 2020-02-13 20:47:26.442817 0 \N 4691 \N 351 \N \N 3.0 0 2020-02-13 20:50:48.940037 2020-02-13 20:50:48.940037 7 472 4692 \N 754 \N \N 1.0 0 2020-02-13 21:32:20.291989 2020-02-13 21:32:20.291989 7 467 4693 \N 681 \N \N 5.0 0 2020-02-13 21:32:20.315746 2020-02-13 21:32:20.315746 7 467 4694 \N 664 \N \N 4.0 0 2020-02-13 21:32:20.336586 2020-02-13 21:32:20.336586 7 467 4695 \N 134 \N \N 1.0 0 2020-02-13 21:32:29.890088 2020-02-13 21:32:29.890088 7 466 4696 \N 644 \N \N 1.0 0 2020-02-13 21:32:40.175021 2020-02-13 21:32:40.175021 7 458 4697 \N 634 \N 2202 1.0 1 2020-02-13 22:24:44.717311 2020-02-13 22:24:44.717311 0 \N 4698 \N 757 \N \N 2.0 0 2020-02-13 22:27:35.52542 2020-02-13 22:27:35.52542 7 469 4699 \N 295 \N \N 1.0 0 2020-02-13 22:28:46.895277 2020-02-13 22:28:46.895277 7 473 4700 \N 754 \N \N 1.0 0 2020-02-14 02:04:57.930011 2020-02-14 02:04:57.930011 7 475 4701 \N 898 \N \N 2.0 0 2020-02-14 02:05:09.397511 2020-02-14 02:05:09.397511 7 476 4702 \N 673 \N 2203 1.0 1 2020-02-14 03:04:14.145421 2020-02-14 03:04:14.145421 0 \N 4703 \N 521 \N 2203 1.0 1 2020-02-14 03:04:14.175917 2020-02-14 03:04:14.175917 0 \N 4704 \N 32 \N 2204 1.0 1 2020-02-14 18:23:05.302116 2020-02-14 18:23:05.302116 0 \N 4705 \N 168 \N 2205 1.0 1 2020-02-14 18:33:59.000149 2020-02-14 18:33:59.000149 0 \N 4706 \N 638 \N \N 1.0 0 2020-02-14 20:52:13.432469 2020-02-14 20:52:13.432469 7 477 4707 \N 888 \N \N 1.0 0 2020-02-14 20:52:13.450629 2020-02-14 20:52:13.450629 7 477 4708 \N 838 \N 2206 1.0 1 2020-02-14 23:26:11.302894 2020-02-14 23:26:11.302894 0 \N 4709 \N 717 \N 2207 1.0 1 2020-02-14 23:32:26.924336 2020-02-14 23:32:26.924336 0 \N 4710 \N 711 \N 2208 1.0 1 2020-02-15 00:21:23.425255 2020-02-15 00:21:23.425255 0 \N 4711 \N 425 \N 2208 1.0 1 2020-02-15 00:21:23.462321 2020-02-15 00:21:23.462321 0 \N 4712 \N 235 \N 2208 1.0 1 2020-02-15 00:21:23.49291 2020-02-15 00:21:23.49291 0 \N 4713 \N 620 \N 2209 1.0 1 2020-02-15 01:19:52.169698 2020-02-15 01:19:52.169698 0 \N 4714 \N 367 \N 2210 1.0 1 2020-02-15 01:23:12.032487 2020-02-15 01:23:12.032487 0 \N 4715 \N 711 \N 2211 1.0 1 2020-02-15 17:03:45.161584 2020-02-15 17:03:45.161584 0 \N 4716 \N 738 227 \N 1.0 0 2020-02-15 17:15:06.157741 2020-02-15 17:15:06.157741 1 \N 4717 \N 193 \N 2212 1.0 1 2020-02-15 19:14:45.058063 2020-02-15 19:14:45.058063 0 \N 4718 \N 711 \N 2212 1.0 1 2020-02-15 19:14:45.11742 2020-02-15 19:14:45.11742 0 \N 4719 \N 169 \N 2212 1.0 1 2020-02-15 19:14:45.157617 2020-02-15 19:14:45.157617 0 \N 4720 \N 732 \N 2212 1.0 1 2020-02-15 19:14:45.187297 2020-02-15 19:14:45.187297 0 \N 4721 \N 507 \N 2213 1.0 1 2020-02-15 19:25:53.963233 2020-02-15 19:25:53.963233 0 \N 4722 \N 883 \N 2214 1.0 1 2020-02-15 19:33:54.214233 2020-02-15 19:33:54.214233 0 \N 4723 \N 642 \N 2214 1.0 1 2020-02-15 19:33:54.259272 2020-02-15 19:33:54.259272 0 \N 4724 \N 732 228 \N 1.0 0 2020-02-15 21:30:31.908743 2020-02-15 21:30:31.908743 1 \N 4725 \N 870 \N 2215 1.0 1 2020-02-15 22:16:40.945885 2020-02-15 22:16:40.945885 0 \N 4726 \N 402 \N 2216 1.0 1 2020-02-16 00:00:34.391002 2020-02-16 00:00:34.391002 0 \N 4727 \N 90 \N 2217 1.0 1 2020-02-16 00:58:14.064443 2020-02-16 00:58:14.064443 0 \N 4728 \N 755 \N 2218 1.0 1 2020-02-16 01:59:09.919104 2020-02-16 01:59:09.919104 0 \N 4729 \N 627 \N 2219 1.0 1 2020-02-17 20:50:06.870632 2020-02-17 20:50:06.870632 0 \N 4730 \N 199 \N 2220 1.0 1 2020-02-17 22:46:55.775464 2020-02-17 22:46:55.775464 0 \N 4731 \N 517 \N 2221 1.0 1 2020-02-18 00:10:29.594951 2020-02-18 00:10:29.594951 0 \N 4732 \N 529 \N \N 5.0 0 2020-02-18 19:18:51.540251 2020-02-18 19:18:51.540251 7 481 4733 \N 685 \N \N 6.0 0 2020-02-18 19:18:51.574288 2020-02-18 19:18:51.574288 7 481 4734 \N 152 \N \N 5.0 0 2020-02-18 19:18:51.595096 2020-02-18 19:18:51.595096 7 481 4735 \N 713 \N \N 6.0 0 2020-02-18 19:18:51.619937 2020-02-18 19:18:51.619937 7 481 4736 \N 644 \N \N 2.0 0 2020-02-18 19:19:38.851421 2020-02-18 19:19:38.851421 7 479 4737 \N 644 \N \N 2.0 0 2020-02-18 19:19:38.932967 2020-02-18 19:19:38.932967 7 479 4738 \N 663 \N \N 1.0 0 2020-02-18 19:19:54.916081 2020-02-18 19:19:54.916081 7 474 4739 \N 663 \N \N 1.0 0 2020-02-18 19:19:55.131998 2020-02-18 19:19:55.131998 7 474 4740 \N 975 229 \N 6.0 0 2020-02-18 20:46:24.073936 2020-02-18 20:46:24.073936 1 \N 4741 \N 976 230 \N 6.0 0 2020-02-18 20:54:31.316338 2020-02-18 20:54:31.316338 1 \N 4742 \N 977 231 \N 6.0 0 2020-02-18 21:08:57.251808 2020-02-18 21:08:57.251808 1 \N 4743 \N 978 232 \N 6.0 0 2020-02-18 21:12:08.326472 2020-02-18 21:12:08.326472 1 \N 4744 \N 979 233 \N 6.0 0 2020-02-18 21:15:05.255148 2020-02-18 21:15:05.255148 1 \N 4745 \N 980 234 \N 6.0 0 2020-02-18 21:18:24.593822 2020-02-18 21:18:24.593822 1 \N 4746 \N 981 235 \N 10.0 0 2020-02-18 21:21:56.563478 2020-02-18 21:21:56.563478 1 \N 4747 \N 982 236 \N 6.0 0 2020-02-18 23:18:15.496979 2020-02-18 23:18:15.496979 1 \N 4748 \N 9 \N 2222 1.0 1 2020-02-19 01:12:28.46261 2020-02-19 01:12:28.46261 0 \N 4749 \N 983 237 \N 6.0 0 2020-02-19 01:27:24.237165 2020-02-19 01:27:24.237165 1 \N 4750 \N 984 237 \N 6.0 0 2020-02-19 01:27:24.275723 2020-02-19 01:27:24.275723 1 \N 4751 \N 985 237 \N 6.0 0 2020-02-19 01:27:24.306101 2020-02-19 01:27:24.306101 1 \N 4752 \N 986 237 \N 6.0 0 2020-02-19 01:27:24.363333 2020-02-19 01:27:24.363333 1 \N 4753 \N 987 237 \N 6.0 0 2020-02-19 01:27:24.392754 2020-02-19 01:27:24.392754 1 \N 4754 \N 988 237 \N 6.0 0 2020-02-19 01:27:24.424971 2020-02-19 01:27:24.424971 1 \N 4755 \N 989 237 \N 6.0 0 2020-02-19 01:27:24.452334 2020-02-19 01:27:24.452334 1 \N 4756 \N 963 237 \N 6.0 0 2020-02-19 01:27:24.482014 2020-02-19 01:27:24.482014 1 \N 4757 \N 990 237 \N 6.0 0 2020-02-19 01:27:24.512702 2020-02-19 01:27:24.512702 1 \N 4758 \N 991 237 \N 6.0 0 2020-02-19 01:27:24.539913 2020-02-19 01:27:24.539913 1 \N 4759 \N 992 237 \N 6.0 0 2020-02-19 01:27:24.567476 2020-02-19 01:27:24.567476 1 \N 4760 \N 552 238 \N 6.0 0 2020-02-19 01:46:34.795561 2020-02-19 01:46:34.795561 1 \N 4761 \N 993 238 \N 6.0 0 2020-02-19 01:46:34.82635 2020-02-19 01:46:34.82635 1 \N 4762 \N 800 238 \N 6.0 0 2020-02-19 01:46:34.853613 2020-02-19 01:46:34.853613 1 \N 4763 \N 994 238 \N 6.0 0 2020-02-19 01:46:34.884911 2020-02-19 01:46:34.884911 1 \N 4764 \N 995 239 \N 6.0 0 2020-02-19 01:53:08.37059 2020-02-19 01:53:08.37059 1 \N 4765 \N 996 239 \N 6.0 0 2020-02-19 01:53:08.407775 2020-02-19 01:53:08.407775 1 \N 4766 \N 997 240 \N 6.0 0 2020-02-19 02:37:02.764756 2020-02-19 02:37:02.764756 1 \N 4767 \N 998 240 \N 6.0 0 2020-02-19 02:37:02.80121 2020-02-19 02:37:02.80121 1 \N 4768 \N 999 240 \N 6.0 0 2020-02-19 02:37:02.837311 2020-02-19 02:37:02.837311 1 \N 4769 \N 1000 240 \N 6.0 0 2020-02-19 02:37:02.872827 2020-02-19 02:37:02.872827 1 \N 4770 \N 1001 241 \N 6.0 0 2020-02-19 02:42:02.893049 2020-02-19 02:42:02.893049 1 \N 4771 \N 1002 242 \N 6.0 0 2020-02-19 02:48:47.465748 2020-02-19 02:48:47.465748 1 \N 4772 \N 494 \N \N 7.0 0 2020-02-19 17:37:39.502459 2020-02-19 17:37:39.502459 7 480 4773 \N 412 \N \N 3.0 0 2020-02-19 17:37:39.528522 2020-02-19 17:37:39.528522 7 480 4774 \N 413 \N \N 1.0 0 2020-02-19 17:37:39.552736 2020-02-19 17:37:39.552736 7 480 4775 \N 802 \N \N 4.0 0 2020-02-19 17:44:56.699557 2020-02-19 17:44:56.699557 7 468 4776 \N 714 \N \N 1.0 0 2020-02-19 17:44:56.725475 2020-02-19 17:44:56.725475 7 468 4777 \N 576 \N \N 1.0 0 2020-02-19 17:48:04.339102 2020-02-19 17:48:04.339102 7 471 4778 \N 516 \N \N 1.0 0 2020-02-19 17:48:04.363957 2020-02-19 17:48:04.363957 7 471 4779 \N 497 \N \N 0 0 2020-02-19 17:48:04.387799 2020-02-19 17:48:04.387799 7 471 4780 \N 419 \N \N 5.0 0 2020-02-19 17:59:03.704541 2020-02-19 17:59:03.704541 7 483 4781 \N 630 \N \N 5.0 0 2020-02-19 17:59:03.72916 2020-02-19 17:59:03.72916 7 483 4782 \N 209 \N \N 4.0 0 2020-02-19 17:59:03.7613 2020-02-19 17:59:03.7613 7 483 4783 \N 68 \N \N 4.0 0 2020-02-19 17:59:03.792516 2020-02-19 17:59:03.792516 7 483 4784 \N 284 \N \N 4.0 0 2020-02-19 17:59:03.817152 2020-02-19 17:59:03.817152 7 483 4785 \N 177 \N \N 2.0 0 2020-02-19 17:59:03.8434 2020-02-19 17:59:03.8434 7 483 4786 \N 690 \N \N 1.0 0 2020-02-19 17:59:03.879071 2020-02-19 17:59:03.879071 7 483 4787 \N 998 \N 2223 1.0 1 2020-02-19 19:37:11.686314 2020-02-19 19:37:11.686314 0 \N 4788 \N 1003 243 \N 6.0 0 2020-02-19 21:44:25.135161 2020-02-19 21:44:25.135161 1 \N 4789 \N 1004 243 \N 6.0 0 2020-02-19 21:44:25.175339 2020-02-19 21:44:25.175339 1 \N 4790 \N 1005 243 \N 6.0 0 2020-02-19 21:44:25.206869 2020-02-19 21:44:25.206869 1 \N 4791 \N 1006 243 \N 6.0 0 2020-02-19 21:44:25.237764 2020-02-19 21:44:25.237764 1 \N 4792 \N 1007 243 \N 6.0 0 2020-02-19 21:44:25.263703 2020-02-19 21:44:25.263703 1 \N 4793 \N 993 243 \N 6.0 0 2020-02-19 21:44:25.296775 2020-02-19 21:44:25.296775 1 \N 4794 \N 1008 243 \N 6.0 0 2020-02-19 21:44:25.325805 2020-02-19 21:44:25.325805 1 \N 4795 \N 1009 243 \N 6.0 0 2020-02-19 21:44:25.351243 2020-02-19 21:44:25.351243 1 \N 4796 \N 1010 243 \N 6.0 0 2020-02-19 21:44:25.376017 2020-02-19 21:44:25.376017 1 \N 4797 \N 1011 243 \N 6.0 0 2020-02-19 21:44:25.402158 2020-02-19 21:44:25.402158 1 \N 4798 \N 1012 243 \N 6.0 0 2020-02-19 21:44:25.435885 2020-02-19 21:44:25.435885 1 \N 4799 \N 1013 243 \N 6.0 0 2020-02-19 21:44:25.469815 2020-02-19 21:44:25.469815 1 \N 4800 \N 1014 243 \N 6.0 0 2020-02-19 21:44:25.49887 2020-02-19 21:44:25.49887 1 \N 4801 \N 1015 243 \N 6.0 0 2020-02-19 21:44:25.528177 2020-02-19 21:44:25.528177 1 \N 4802 \N 1016 243 \N 5.0 0 2020-02-19 21:44:25.554623 2020-02-19 21:44:25.554623 1 \N 4803 \N 981 \N 2224 1.0 1 2020-02-19 22:36:01.203059 2020-02-19 22:36:01.203059 0 \N 4804 \N 390 \N 2224 1.0 1 2020-02-19 22:36:01.237929 2020-02-19 22:36:01.237929 0 \N 4805 \N 202 244 \N 6.0 0 2020-02-19 22:52:35.840364 2020-02-19 22:52:35.840364 1 \N 4806 \N 1017 244 \N 6.0 0 2020-02-19 22:52:35.873927 2020-02-19 22:52:35.873927 1 \N 4807 \N 1018 244 \N 6.0 0 2020-02-19 22:52:35.904262 2020-02-19 22:52:35.904262 1 \N 4808 \N 1019 244 \N 6.0 0 2020-02-19 22:52:35.934039 2020-02-19 22:52:35.934039 1 \N 4809 \N 1020 245 \N 6.0 0 2020-02-19 22:54:10.861975 2020-02-19 22:54:10.861975 1 \N 4810 \N 991 \N 2225 1.0 1 2020-02-20 01:50:08.030006 2020-02-20 01:50:08.030006 0 \N 4811 \N 367 \N 2226 2.0 1 2020-02-20 17:18:23.26405 2020-02-20 17:18:23.26405 0 \N 4812 \N 986 \N 2227 1.0 1 2020-02-20 21:50:12.340877 2020-02-20 21:50:12.340877 0 \N 4813 \N 1002 \N 2228 1.0 1 2020-02-21 00:56:27.229947 2020-02-21 00:56:27.229947 0 \N 4814 \N 205 \N 2229 1.0 1 2020-02-21 01:00:44.50376 2020-02-21 01:00:44.50376 0 \N 4815 \N 369 \N 2230 1.0 1 2020-02-21 01:31:29.412778 2020-02-21 01:31:29.412778 0 \N 4816 \N 205 \N 2231 1.0 1 2020-02-21 01:57:54.394355 2020-02-21 01:57:54.394355 0 \N 4817 \N 981 \N \N 6.0 0 2020-02-21 02:05:53.348899 2020-02-21 02:05:53.348899 7 482 4818 \N 987 \N 2232 1.0 1 2020-02-21 20:42:39.219733 2020-02-21 20:42:39.219733 0 \N 4819 \N 605 \N 2233 1.0 1 2020-02-21 21:53:03.47362 2020-02-21 21:53:03.47362 0 \N 4820 \N 977 \N 2234 1.0 1 2020-02-22 01:56:24.604067 2020-02-22 01:56:24.604067 0 \N 4821 \N 205 \N 2235 1.0 1 2020-02-22 02:11:08.112391 2020-02-22 02:11:08.112391 0 \N 4822 \N 1002 \N 2236 1.0 1 2020-02-22 02:16:27.86554 2020-02-22 02:16:27.86554 0 \N 4823 \N 963 \N 2236 1.0 1 2020-02-22 02:16:27.905365 2020-02-22 02:16:27.905365 0 \N 4824 \N 552 \N 2237 1.0 1 2020-02-22 18:45:26.288445 2020-02-22 18:45:26.288445 0 \N 4825 \N 977 \N 2237 1.0 1 2020-02-22 18:45:26.32793 2020-02-22 18:45:26.32793 0 \N 4826 \N 167 \N 2238 1.0 1 2020-02-22 18:52:17.855504 2020-02-22 18:52:17.855504 0 \N 4827 \N 506 \N \N 2.0 0 2020-02-22 20:55:06.432516 2020-02-22 20:55:06.432516 7 487 4828 \N 963 \N 2239 1.0 1 2020-02-22 20:56:06.72964 2020-02-22 20:56:06.72964 0 \N 4829 \N 980 \N 2239 1.0 1 2020-02-22 20:56:06.757477 2020-02-22 20:56:06.757477 0 \N 4830 \N 506 \N 2239 1.0 1 2020-02-22 20:56:06.790247 2020-02-22 20:56:06.790247 0 \N 4831 \N 414 \N 2240 1.0 1 2020-02-22 22:24:59.511276 2020-02-22 22:24:59.511276 0 \N 4832 \N 293 \N 2240 1.0 1 2020-02-22 22:24:59.540834 2020-02-22 22:24:59.540834 0 \N 4833 \N 401 \N \N 1.0 0 2020-02-22 22:49:03.145776 2020-02-22 22:49:03.145776 7 488 4834 \N 401 \N 2241 1.0 1 2020-02-22 22:49:31.101735 2020-02-22 22:49:31.101735 0 \N 4835 \N 1000 \N 2242 1.0 1 2020-02-22 22:59:05.503481 2020-02-22 22:59:05.503481 0 \N 4836 \N 996 \N 2243 1.0 1 2020-02-22 23:11:32.191251 2020-02-22 23:11:32.191251 0 \N 4837 \N 670 \N \N 4.0 0 2020-02-22 23:30:02.627404 2020-02-22 23:30:02.627404 7 489 4838 \N 670 \N 2244 1.0 1 2020-02-22 23:30:35.588552 2020-02-22 23:30:35.588552 0 \N 4839 \N 489 \N \N 1.0 0 2020-02-23 00:22:45.253987 2020-02-23 00:22:45.253987 7 490 4840 \N 489 \N 2245 1.0 1 2020-02-23 00:25:20.177897 2020-02-23 00:25:20.177897 0 \N 4841 \N 993 \N 2246 1.0 1 2020-02-23 00:37:46.020929 2020-02-23 00:37:46.020929 0 \N 4842 \N 570 \N 2247 1.0 1 2020-02-23 03:08:51.645873 2020-02-23 03:08:51.645873 0 \N 4843 \N 570 \N 2247 1.0 0 2020-02-23 03:12:03.397655 2020-02-23 03:12:03.397655 3 \N 4844 \N 570 \N 2248 1.0 1 2020-02-23 03:12:25.647193 2020-02-23 03:12:25.647193 0 \N 4845 \N 991 \N 2249 1.0 1 2020-02-24 19:30:59.559386 2020-02-24 19:30:59.559386 0 \N 4846 \N 1021 246 \N 1.0 0 2020-02-24 23:58:50.769113 2020-02-24 23:58:50.769113 1 \N 4847 \N 1022 247 \N 6.0 0 2020-02-25 00:04:50.481123 2020-02-25 00:04:50.481123 1 \N 4848 \N 1023 248 \N 6.0 0 2020-02-25 00:08:09.056408 2020-02-25 00:08:09.056408 1 \N 4849 \N 1024 249 \N 6.0 0 2020-02-25 00:15:16.448943 2020-02-25 00:15:16.448943 1 \N 4850 \N 1025 250 \N 6.0 0 2020-02-25 00:20:56.930058 2020-02-25 00:20:56.930058 1 \N 4851 \N 202 \N 2250 1.0 1 2020-02-25 02:02:29.589493 2020-02-25 02:02:29.589493 0 \N 4852 \N 207 \N 2251 1.0 1 2020-02-25 02:36:28.067508 2020-02-25 02:36:28.067508 0 \N 4853 \N 663 \N 2252 1.0 1 2020-02-25 17:33:27.958849 2020-02-25 17:33:27.958849 0 \N 4854 \N 963 \N 2253 1.0 1 2020-02-25 19:14:44.7561 2020-02-25 19:14:44.7561 0 \N 4855 \N 1023 \N 2254 1.0 1 2020-02-25 19:38:23.734151 2020-02-25 19:38:23.734151 0 \N 4856 \N 216 \N 2255 1.0 1 2020-02-25 22:29:40.551668 2020-02-25 22:29:40.551668 0 \N 4857 \N 997 \N 2256 1.0 1 2020-02-25 22:55:20.115044 2020-02-25 22:55:20.115044 0 \N 4858 \N 119 \N 2257 1.0 1 2020-02-26 01:12:48.077345 2020-02-26 01:12:48.077345 0 \N 4859 \N 985 \N 2258 1.0 1 2020-02-26 01:50:11.171208 2020-02-26 01:50:11.171208 0 \N 4860 \N 202 \N 2259 1.0 1 2020-02-26 01:54:00.761738 2020-02-26 01:54:00.761738 0 \N 4861 \N 611 \N 2260 1.0 1 2020-02-26 19:58:06.770478 2020-02-26 19:58:06.770478 0 \N 4862 \N 476 \N 2261 1.0 1 2020-02-26 22:45:07.648104 2020-02-26 22:45:07.648104 0 \N 4863 \N 703 \N 2262 1.0 1 2020-02-26 23:15:41.877034 2020-02-26 23:15:41.877034 0 \N 4864 \N 414 \N 2263 1.0 1 2020-02-26 23:58:33.006893 2020-02-26 23:58:33.006893 0 \N 4865 \N 536 \N 2264 1.0 1 2020-02-27 19:08:56.689838 2020-02-27 19:08:56.689838 0 \N 4866 \N 980 \N 2265 1.0 1 2020-02-27 20:36:03.073338 2020-02-27 20:36:03.073338 0 \N 4867 \N 1012 \N 2266 1.0 1 2020-02-28 01:32:29.310418 2020-02-28 01:32:29.310418 0 \N 4868 \N 1023 \N 2267 1.0 1 2020-02-28 18:20:34.219569 2020-02-28 18:20:34.219569 0 \N 4869 \N 989 \N 2268 1.0 1 2020-02-28 19:28:53.808463 2020-02-28 19:28:53.808463 0 \N 4870 \N 476 \N 2269 1.0 1 2020-02-28 20:11:43.562476 2020-02-28 20:11:43.562476 0 \N 4871 \N 215 \N 2270 1.0 1 2020-02-28 22:51:06.153782 2020-02-28 22:51:06.153782 0 \N 4872 \N 997 \N 2271 1.0 1 2020-02-29 00:50:47.53033 2020-02-29 00:50:47.53033 0 \N 4873 \N 977 \N 2272 1.0 1 2020-02-29 02:19:27.432717 2020-02-29 02:19:27.432717 0 \N 4874 \N 1001 \N 2273 1.0 1 2020-02-29 18:09:49.678627 2020-02-29 18:09:49.678627 0 \N 4875 \N 1014 \N 2273 1.0 1 2020-02-29 18:09:49.710453 2020-02-29 18:09:49.710453 0 \N 4876 \N 965 \N 2274 1.0 1 2020-02-29 20:35:25.912183 2020-02-29 20:35:25.912183 0 \N 4877 \N 202 \N 2275 1.0 1 2020-02-29 21:11:13.136083 2020-02-29 21:11:13.136083 0 \N 4878 \N 1026 251 \N 3.0 0 2020-02-29 22:58:16.094236 2020-02-29 22:58:16.094236 1 \N 4879 \N 1027 252 \N 1.0 0 2020-02-29 23:07:32.525916 2020-02-29 23:07:32.525916 1 \N 4880 \N 1023 \N 2276 1.0 1 2020-02-29 23:11:15.618845 2020-02-29 23:11:15.618845 0 \N 4881 \N 991 \N 2277 1.0 1 2020-02-29 23:23:23.803902 2020-02-29 23:23:23.803902 0 \N 4882 \N 1028 253 \N 1.0 0 2020-02-29 23:26:57.3632 2020-02-29 23:26:57.3632 1 \N 4883 \N 1029 254 \N 13.0 0 2020-02-29 23:40:19.486054 2020-02-29 23:40:19.486054 1 \N 4884 \N 1030 255 \N 1.0 0 2020-02-29 23:59:17.304456 2020-02-29 23:59:17.304456 1 \N 4885 \N 1031 256 \N 1.0 0 2020-03-01 00:04:54.586644 2020-03-01 00:04:54.586644 1 \N 4886 \N 1032 257 \N 3.0 0 2020-03-01 00:07:59.727762 2020-03-01 00:07:59.727762 1 \N 4887 \N 1033 258 \N 3.0 0 2020-03-01 00:16:09.617395 2020-03-01 00:16:09.617395 1 \N 4888 \N 1038 259 \N 1.0 0 2020-03-01 00:34:21.376789 2020-03-01 00:34:21.376789 1 \N 4889 \N 664 \N 2278 1.0 1 2020-03-01 00:46:01.128613 2020-03-01 00:46:01.128613 0 \N 4890 \N 1034 260 \N 1.0 0 2020-03-01 01:03:06.311852 2020-03-01 01:03:06.311852 1 \N 4891 \N 1035 260 \N 1.0 0 2020-03-01 01:03:06.347324 2020-03-01 01:03:06.347324 1 \N 4892 \N 1036 260 \N 1.0 0 2020-03-01 01:03:06.392665 2020-03-01 01:03:06.392665 1 \N 4893 \N 1037 260 \N 1.0 0 2020-03-01 01:03:06.433316 2020-03-01 01:03:06.433316 1 \N 4894 \N 1039 260 \N 1.0 0 2020-03-01 01:03:06.467228 2020-03-01 01:03:06.467228 1 \N 4895 \N 1040 260 \N 1.0 0 2020-03-01 01:03:06.500548 2020-03-01 01:03:06.500548 1 \N 4896 \N 1041 260 \N 1.0 0 2020-03-01 01:03:06.528725 2020-03-01 01:03:06.528725 1 \N 4897 \N 1042 260 \N 1.0 0 2020-03-01 01:03:06.572787 2020-03-01 01:03:06.572787 1 \N 4898 \N 1043 260 \N 1.0 0 2020-03-01 01:03:06.601154 2020-03-01 01:03:06.601154 1 \N 4899 \N 1044 260 \N 1.0 0 2020-03-01 01:03:06.634238 2020-03-01 01:03:06.634238 1 \N 4900 \N 1045 260 \N 1.0 0 2020-03-01 01:03:06.682531 2020-03-01 01:03:06.682531 1 \N 4901 \N 519 \N \N 3.0 0 2020-03-01 01:04:32.533231 2020-03-01 01:04:32.533231 7 478 4902 \N 519 \N \N 3.0 0 2020-03-01 01:11:35.018071 2020-03-01 01:11:35.018071 7 499 4903 \N 1047 261 \N 4.0 0 2020-03-01 01:12:22.063821 2020-03-01 01:12:22.063821 1 \N 4904 \N 1053 262 \N 2.0 0 2020-03-01 01:33:24.036173 2020-03-01 01:33:24.036173 1 \N 4905 \N 1057 263 \N 1.0 0 2020-03-01 01:40:48.641657 2020-03-01 01:40:48.641657 1 \N 4906 \N 1046 264 \N 1.0 0 2020-03-01 01:42:29.622118 2020-03-01 01:42:29.622118 1 \N 4907 \N 1048 264 \N 1.0 0 2020-03-01 01:42:29.654632 2020-03-01 01:42:29.654632 1 \N 4908 \N 1049 264 \N 1.0 0 2020-03-01 01:42:29.683722 2020-03-01 01:42:29.683722 1 \N 4909 \N 1050 264 \N 1.0 0 2020-03-01 01:42:29.710259 2020-03-01 01:42:29.710259 1 \N 4910 \N 1051 264 \N 1.0 0 2020-03-01 01:42:29.737326 2020-03-01 01:42:29.737326 1 \N 4911 \N 1052 264 \N 1.0 0 2020-03-01 01:42:29.768195 2020-03-01 01:42:29.768195 1 \N 4912 \N 1054 264 \N 1.0 0 2020-03-01 01:42:29.806567 2020-03-01 01:42:29.806567 1 \N 4913 \N 1055 264 \N 1.0 0 2020-03-01 01:42:29.83614 2020-03-01 01:42:29.83614 1 \N 4914 \N 1056 264 \N 3.0 0 2020-03-01 01:42:29.865064 2020-03-01 01:42:29.865064 1 \N 4915 \N 1059 266 \N 1.0 0 2020-03-01 01:44:56.568051 2020-03-01 01:44:56.568051 1 \N 4916 \N 1062 267 \N 1.0 0 2020-03-01 01:48:35.646543 2020-03-01 01:48:35.646543 1 \N 4917 \N 1064 268 \N 1.0 0 2020-03-01 01:52:50.967806 2020-03-01 01:52:50.967806 1 \N 4918 \N 1065 269 \N 1.0 0 2020-03-01 01:56:35.747491 2020-03-01 01:56:35.747491 1 \N 4919 \N 1029 \N \N 4.0 0 2020-03-01 02:05:51.176286 2020-03-01 02:05:51.176286 7 491 4920 \N 1032 \N \N 1.0 0 2020-03-01 02:06:00.369607 2020-03-01 02:06:00.369607 7 494 4921 \N 1033 \N \N 1.0 0 2020-03-01 02:06:10.058101 2020-03-01 02:06:10.058101 7 497 4922 \N 1053 \N \N 1.0 0 2020-03-01 02:06:21.84181 2020-03-01 02:06:21.84181 7 504 4923 \N 1047 \N \N 1.0 0 2020-03-01 02:06:30.273358 2020-03-01 02:06:30.273358 7 500 4924 \N 1067 270 \N 1.0 0 2020-03-01 02:09:38.90316 2020-03-01 02:09:38.90316 1 \N 4925 \N 1072 270 \N 1.0 0 2020-03-01 02:09:38.93616 2020-03-01 02:09:38.93616 1 \N 4926 \N 1075 271 \N 1.0 0 2020-03-01 02:13:13.041393 2020-03-01 02:13:13.041393 1 \N 4927 \N 1077 272 \N 3.0 0 2020-03-01 02:15:35.548178 2020-03-01 02:15:35.548178 1 \N 4928 \N 1079 273 \N 2.0 0 2020-03-01 02:20:44.380346 2020-03-01 02:20:44.380346 1 \N 4929 \N 1082 274 \N 2.0 0 2020-03-01 02:24:43.213666 2020-03-01 02:24:43.213666 1 \N 4930 \N 1072 \N 2279 1.0 1 2020-03-01 02:34:04.235565 2020-03-01 02:34:04.235565 0 \N 4931 \N 1029 \N 2279 1.0 1 2020-03-01 02:34:04.286529 2020-03-01 02:34:04.286529 0 \N 4932 \N 1081 275 \N 1.0 0 2020-03-01 02:38:38.696446 2020-03-01 02:38:38.696446 1 \N 4933 \N 1083 275 \N 1.0 0 2020-03-01 02:38:38.733625 2020-03-01 02:38:38.733625 1 \N 4934 \N 1080 275 \N 2.0 0 2020-03-01 02:38:38.76642 2020-03-01 02:38:38.76642 1 \N 4935 \N 1084 275 \N 1.0 0 2020-03-01 02:38:38.792752 2020-03-01 02:38:38.792752 1 \N 4936 \N 1085 275 \N 1.0 0 2020-03-01 02:38:38.818694 2020-03-01 02:38:38.818694 1 \N 4937 \N 1086 275 \N 2.0 0 2020-03-01 02:38:38.850253 2020-03-01 02:38:38.850253 1 \N 4938 \N 1087 275 \N 1.0 0 2020-03-01 02:38:38.878964 2020-03-01 02:38:38.878964 1 \N 4939 \N 1088 275 \N 1.0 0 2020-03-01 02:38:38.909453 2020-03-01 02:38:38.909453 1 \N 4940 \N 1058 275 \N 1.0 0 2020-03-01 02:38:38.940175 2020-03-01 02:38:38.940175 1 \N 4941 \N 1060 275 \N 1.0 0 2020-03-01 02:38:38.970428 2020-03-01 02:38:38.970428 1 \N 4942 \N 1061 275 \N 1.0 0 2020-03-01 02:38:39.006021 2020-03-01 02:38:39.006021 1 \N 4943 \N 1063 275 \N 1.0 0 2020-03-01 02:38:39.034905 2020-03-01 02:38:39.034905 1 \N 4944 \N 814 275 \N 1.0 0 2020-03-01 02:38:39.070921 2020-03-01 02:38:39.070921 1 \N 4945 \N 1066 275 \N 3.0 0 2020-03-01 02:38:39.106192 2020-03-01 02:38:39.106192 1 \N 4946 \N 1068 275 \N 1.0 0 2020-03-01 02:38:39.138928 2020-03-01 02:38:39.138928 1 \N 4947 \N 1069 275 \N 1.0 0 2020-03-01 02:38:39.166324 2020-03-01 02:38:39.166324 1 \N 4948 \N 1070 275 \N 1.0 0 2020-03-01 02:38:39.192656 2020-03-01 02:38:39.192656 1 \N 4949 \N 1071 275 \N 1.0 0 2020-03-01 02:38:39.220984 2020-03-01 02:38:39.220984 1 \N 4950 \N 1073 275 \N 1.0 0 2020-03-01 02:38:39.25685 2020-03-01 02:38:39.25685 1 \N 4951 \N 1074 275 \N 1.0 0 2020-03-01 02:38:39.28691 2020-03-01 02:38:39.28691 1 \N 4952 \N 1076 275 \N 1.0 0 2020-03-01 02:38:39.31238 2020-03-01 02:38:39.31238 1 \N 4953 \N 1078 275 \N 1.0 0 2020-03-01 02:38:39.339377 2020-03-01 02:38:39.339377 1 \N 4954 \N 999 \N 2280 1.0 1 2020-03-01 20:46:18.77612 2020-03-01 20:46:18.77612 0 \N 4955 \N 999 \N 2280 1.0 0 2020-03-01 20:46:57.365572 2020-03-01 20:46:57.365572 3 \N 4956 \N 686 \N 2281 1.0 1 2020-03-01 21:57:12.975753 2020-03-01 21:57:12.975753 0 \N 4957 \N 519 \N 2282 1.0 1 2020-03-02 18:46:47.491301 2020-03-02 18:46:47.491301 0 \N 4958 \N 1005 \N 2283 1.0 1 2020-03-02 23:04:22.055993 2020-03-02 23:04:22.055993 0 \N 4959 \N 412 \N 2284 1.0 1 2020-03-02 23:42:02.615375 2020-03-02 23:42:02.615375 0 \N 4960 \N 1089 276 \N 1.0 0 2020-03-02 23:44:47.068305 2020-03-02 23:44:47.068305 1 \N 4961 \N 1090 277 \N 2.0 0 2020-03-02 23:50:45.059836 2020-03-02 23:50:45.059836 1 \N 4962 \N 1091 278 \N 2.0 0 2020-03-02 23:56:02.853036 2020-03-02 23:56:02.853036 1 \N 4963 \N 1092 279 \N 2.0 0 2020-03-03 00:00:37.695443 2020-03-03 00:00:37.695443 1 \N 4964 \N 981 \N 2285 1.0 1 2020-03-03 02:12:34.658826 2020-03-03 02:12:34.658826 0 \N 4965 \N 1023 \N 2286 1.0 1 2020-03-03 19:52:27.973199 2020-03-03 19:52:27.973199 0 \N 4966 \N 1023 \N 2287 1.0 1 2020-03-03 20:26:42.913303 2020-03-03 20:26:42.913303 0 \N 4967 \N 205 \N 2288 1.0 1 2020-03-04 00:04:02.841526 2020-03-04 00:04:02.841526 0 \N 4968 \N 205 \N 2289 1.0 1 2020-03-04 00:28:14.752782 2020-03-04 00:28:14.752782 0 \N 4969 \N 215 \N 2290 1.0 1 2020-03-04 21:58:57.609975 2020-03-04 21:58:57.609975 0 \N 4970 \N 175 \N 2290 1.0 1 2020-03-04 21:58:57.63891 2020-03-04 21:58:57.63891 0 \N 4971 \N 224 \N 2290 1.0 1 2020-03-04 21:58:57.666086 2020-03-04 21:58:57.666086 0 \N 4972 \N 1009 \N 2291 1.0 1 2020-03-04 22:36:17.328695 2020-03-04 22:36:17.328695 0 \N 4973 \N 999 \N 2292 1.0 1 2020-03-05 18:12:08.216222 2020-03-05 18:12:08.216222 0 \N 4974 \N 963 \N 2293 1.0 1 2020-03-05 19:32:25.719989 2020-03-05 19:32:25.719989 0 \N 4975 \N 1030 \N 2294 1.0 1 2020-03-05 22:18:39.065358 2020-03-05 22:18:39.065358 0 \N 4976 \N 258 \N 2295 1.0 1 2020-03-06 17:39:52.744047 2020-03-06 17:39:52.744047 0 \N 4977 \N 1020 \N 2296 1.0 1 2020-03-06 20:11:33.926593 2020-03-06 20:11:33.926593 0 \N 4978 \N 989 \N 2297 1.0 1 2020-03-06 20:13:15.25706 2020-03-06 20:13:15.25706 0 \N 4979 \N 1088 \N 2298 1.0 1 2020-03-06 22:01:46.894227 2020-03-06 22:01:46.894227 0 \N 4980 \N 1044 \N 2298 1.0 1 2020-03-06 22:01:46.936138 2020-03-06 22:01:46.936138 0 \N 4981 \N 1054 \N 2298 1.0 1 2020-03-06 22:01:46.975591 2020-03-06 22:01:46.975591 0 \N 4982 \N 1052 \N 2298 1.0 1 2020-03-06 22:01:47.018932 2020-03-06 22:01:47.018932 0 \N 4983 \N 1086 \N 2298 1.0 1 2020-03-06 22:01:47.068699 2020-03-06 22:01:47.068699 0 \N 4984 \N 1046 \N 2298 1.0 1 2020-03-06 22:01:47.109065 2020-03-06 22:01:47.109065 0 \N 4985 \N 1063 \N 2299 1.0 1 2020-03-06 22:05:57.213255 2020-03-06 22:05:57.213255 0 \N 4986 \N 1087 \N 2299 1.0 1 2020-03-06 22:05:57.244562 2020-03-06 22:05:57.244562 0 \N 4987 \N 1080 \N 2299 1.0 1 2020-03-06 22:05:57.277744 2020-03-06 22:05:57.277744 0 \N 4988 \N 1084 \N 2299 1.0 1 2020-03-06 22:05:57.31028 2020-03-06 22:05:57.31028 0 \N 4989 \N 200 \N 2300 1.0 1 2020-03-07 18:09:04.099923 2020-03-07 18:09:04.099923 0 \N 4990 \N 699 \N 2301 1.0 1 2020-03-07 18:13:09.937635 2020-03-07 18:13:09.937635 0 \N 4991 \N 810 \N 2302 1.0 1 2020-03-07 18:49:38.471645 2020-03-07 18:49:38.471645 0 \N 4992 \N 176 \N 2303 1.0 1 2020-03-07 19:02:01.554274 2020-03-07 19:02:01.554274 0 \N 4993 \N 736 \N 2303 1.0 1 2020-03-07 19:02:01.590798 2020-03-07 19:02:01.590798 0 \N 4994 \N 1029 \N \N 5.0 0 2020-03-07 21:21:56.862888 2020-03-07 21:21:56.862888 7 492 4995 \N 1033 \N \N 1.0 0 2020-03-07 21:26:16.231895 2020-03-07 21:26:16.231895 7 496 4996 \N 1047 \N \N 1.0 0 2020-03-07 21:26:27.936462 2020-03-07 21:26:27.936462 7 502 4997 \N 1077 \N \N 1.0 0 2020-03-07 21:26:36.309865 2020-03-07 21:26:36.309865 7 506 4998 \N 549 \N \N 1.0 0 2020-03-07 21:26:45.950409 2020-03-07 21:26:45.950409 7 510 4999 \N 549 \N 2304 1.0 1 2020-03-07 21:30:18.714151 2020-03-07 21:30:18.714151 0 \N 5000 \N 1077 \N 2305 1.0 1 2020-03-07 21:44:09.521562 2020-03-07 21:44:09.521562 0 \N 5001 \N 1022 \N 2306 1.0 1 2020-03-07 21:55:41.131435 2020-03-07 21:55:41.131435 0 \N 5002 \N 193 \N 2307 1.0 1 2020-03-08 01:02:38.44232 2020-03-08 01:02:38.44232 0 \N 5003 \N 1057 \N 2308 1.0 1 2020-03-08 19:01:53.348865 2020-03-08 19:01:53.348865 0 \N 5004 \N 1023 \N 2309 1.0 1 2020-03-08 20:11:51.547173 2020-03-08 20:11:51.547173 0 \N 5005 \N 1074 \N 2310 1.0 1 2020-03-10 01:23:08.79388 2020-03-10 01:23:08.79388 0 \N 5006 \N 637 \N 2311 1.0 1 2020-03-10 02:50:41.818848 2020-03-10 02:50:41.818848 0 \N 5007 \N 1048 \N 2311 1.0 1 2020-03-10 02:50:41.845474 2020-03-10 02:50:41.845474 0 \N 5008 \N 652 \N 2311 1.0 1 2020-03-10 02:50:41.871535 2020-03-10 02:50:41.871535 0 \N 5009 \N 473 \N 2311 1.0 1 2020-03-10 02:50:41.898623 2020-03-10 02:50:41.898623 0 \N 5010 \N 210 \N 2311 1.0 1 2020-03-10 02:50:41.928344 2020-03-10 02:50:41.928344 0 \N 5011 \N 113 \N 2311 1.0 1 2020-03-10 02:50:41.954964 2020-03-10 02:50:41.954964 0 \N 5012 \N 1065 \N 2311 1.0 1 2020-03-10 02:50:41.986143 2020-03-10 02:50:41.986143 0 \N 5013 \N 1009 \N 2312 1.0 1 2020-03-10 02:53:51.054166 2020-03-10 02:53:51.054166 0 \N 5014 \N 1017 \N 2312 1.0 1 2020-03-10 02:53:51.084049 2020-03-10 02:53:51.084049 0 \N 5015 \N 314 \N 2313 1.0 1 2020-03-10 17:14:23.143033 2020-03-10 17:14:23.143033 0 \N 5016 \N 1014 \N 2314 2.0 1 2020-03-10 20:10:27.77979 2020-03-10 20:10:27.77979 0 \N 5017 \N 1008 \N 2315 1.0 1 2020-03-10 20:14:09.558913 2020-03-10 20:14:09.558913 0 \N 5018 \N 457 \N 2316 1.0 1 2020-03-10 21:05:35.812267 2020-03-10 21:05:35.812267 0 \N 5019 \N 502 \N 2317 1.0 1 2020-03-10 22:26:11.426666 2020-03-10 22:26:11.426666 0 \N 5020 \N 1017 \N 2318 1.0 1 2020-03-10 23:34:12.492159 2020-03-10 23:34:12.492159 0 \N 5021 \N 1004 \N 2319 1.0 1 2020-03-11 01:03:08.942939 2020-03-11 01:03:08.942939 0 \N 5022 \N 1016 \N 2320 1.0 1 2020-03-11 01:42:58.259721 2020-03-11 01:42:58.259721 0 \N 5023 \N 999 \N 2321 1.0 1 2020-03-11 01:46:54.931989 2020-03-11 01:46:54.931989 0 \N 5024 \N 1077 \N \N 1.0 0 2020-03-11 01:47:57.956461 2020-03-11 01:47:57.956461 7 505 5025 \N 1079 \N \N 1.0 0 2020-03-11 01:48:05.807333 2020-03-11 01:48:05.807333 7 508 5026 \N 1079 \N 2322 1.0 1 2020-03-11 01:48:23.389635 2020-03-11 01:48:23.389635 0 \N 5027 \N 566 \N 2323 1.0 1 2020-03-11 22:22:58.252328 2020-03-11 22:22:58.252328 0 \N 5028 \N 390 \N 2324 1.0 1 2020-03-11 23:04:46.976108 2020-03-11 23:04:46.976108 0 \N 5029 \N 991 \N \N 1.0 0 2020-03-11 23:33:47.906578 2020-03-11 23:33:47.906578 7 514 5030 \N 995 \N \N 3.0 0 2020-03-11 23:33:47.931691 2020-03-11 23:33:47.931691 7 514 5031 \N 1079 \N \N 1.0 0 2020-03-11 23:34:34.371097 2020-03-11 23:34:34.371097 7 509 5032 \N 1077 \N \N 1.0 0 2020-03-11 23:34:42.345645 2020-03-11 23:34:42.345645 7 507 5033 \N 1053 \N \N 1.0 0 2020-03-11 23:34:48.723155 2020-03-11 23:34:48.723155 7 503 5034 \N 1047 \N \N 2.0 0 2020-03-11 23:34:59.880719 2020-03-11 23:34:59.880719 7 501 5035 \N 1033 \N \N 1.0 0 2020-03-11 23:35:07.313273 2020-03-11 23:35:07.313273 7 498 5036 \N 1032 \N \N 2.0 0 2020-03-11 23:35:14.003698 2020-03-11 23:35:14.003698 7 495 5037 \N 1029 \N \N 4.0 0 2020-03-11 23:35:21.25043 2020-03-11 23:35:21.25043 7 493 5038 \N 161 \N \N 2.0 0 2020-03-11 23:35:32.545408 2020-03-11 23:35:32.545408 7 486 5039 \N 516 \N \N 1.0 0 2020-03-11 23:35:32.564409 2020-03-11 23:35:32.564409 7 486 5040 \N 416 \N \N 2.0 0 2020-03-11 23:35:42.300284 2020-03-11 23:35:42.300284 7 485 5041 \N 576 \N \N 1.0 0 2020-03-11 23:35:50.076407 2020-03-11 23:35:50.076407 7 484 5042 \N 991 \N 2325 1.0 1 2020-03-11 23:36:23.003732 2020-03-11 23:36:23.003732 0 \N 5043 \N 1032 \N 2326 1.0 1 2020-03-12 01:10:00.401285 2020-03-12 01:10:00.401285 0 \N 5044 \N 981 \N 2327 1.0 1 2020-03-12 01:42:26.205691 2020-03-12 01:42:26.205691 0 \N 5045 \N 919 \N 2327 1.0 1 2020-03-12 01:42:26.232211 2020-03-12 01:42:26.232211 0 \N 5046 \N 707 \N 2328 1.0 1 2020-03-12 02:13:39.230801 2020-03-12 02:13:39.230801 0 \N 5047 \N 796 \N 2329 1.0 1 2020-03-12 02:37:31.326244 2020-03-12 02:37:31.326244 0 \N 5048 \N 200 \N 2330 1.0 1 2020-03-12 23:50:35.341239 2020-03-12 23:50:35.341239 0 \N 5049 \N 1007 \N 2331 1.0 1 2020-03-13 02:32:16.432079 2020-03-13 02:32:16.432079 0 \N 5050 \N 1011 \N 2331 1.0 1 2020-03-13 02:32:16.463426 2020-03-13 02:32:16.463426 0 \N 5051 \N 1093 280 \N 2.0 0 2020-03-13 02:39:11.972546 2020-03-13 02:39:11.972546 1 \N 5052 \N 1093 \N 2332 2.0 1 2020-03-13 02:39:36.526329 2020-03-13 02:39:36.526329 0 \N 5053 \N 996 \N 2333 1.0 1 2020-03-13 18:32:44.728556 2020-03-13 18:32:44.728556 0 \N 5054 \N 297 \N 2334 1.0 1 2020-03-13 21:50:11.136385 2020-03-13 21:50:11.136385 0 \N 5055 \N 1006 \N \N 1.0 0 2020-03-13 22:49:47.473209 2020-03-13 22:49:47.473209 7 518 5056 \N 1006 \N 2335 1.0 1 2020-03-13 22:50:15.380604 2020-03-13 22:50:15.380604 0 \N 5057 \N 223 \N 2336 1.0 1 2020-03-13 23:28:19.089281 2020-03-13 23:28:19.089281 0 \N 5058 \N 710 \N 2337 1.0 1 2020-03-13 23:44:52.200175 2020-03-13 23:44:52.200175 0 \N 5059 \N 710 \N 2337 1.0 0 2020-03-13 23:46:43.728508 2020-03-13 23:46:43.728508 3 \N 5060 \N 710 \N 2338 1.0 1 2020-03-13 23:48:49.043236 2020-03-13 23:48:49.043236 0 \N 5061 \N 1001 \N 2338 1.0 1 2020-03-13 23:48:49.078227 2020-03-13 23:48:49.078227 0 \N 5062 \N 476 \N 2339 1.0 1 2020-03-14 00:21:43.680794 2020-03-14 00:21:43.680794 0 \N 5063 \N 990 \N 2339 1.0 1 2020-03-14 00:21:43.707277 2020-03-14 00:21:43.707277 0 \N 5064 \N 992 \N 2339 1.0 1 2020-03-14 00:21:43.733416 2020-03-14 00:21:43.733416 0 \N 5065 \N 118 \N 2340 1.0 1 2020-03-14 00:34:29.842541 2020-03-14 00:34:29.842541 0 \N 5066 \N 223 \N 2340 1.0 1 2020-03-14 00:34:29.872237 2020-03-14 00:34:29.872237 0 \N 5067 \N 407 \N 2341 1.0 1 2020-03-14 00:52:28.182878 2020-03-14 00:52:28.182878 0 \N 5068 \N 397 \N 2341 1.0 1 2020-03-14 00:52:28.212646 2020-03-14 00:52:28.212646 0 \N 5069 \N 528 \N 2342 1.0 1 2020-03-14 00:54:15.382884 2020-03-14 00:54:15.382884 0 \N 5070 \N 979 \N 2343 1.0 1 2020-03-14 01:40:00.645392 2020-03-14 01:40:00.645392 0 \N 5071 \N 984 \N 2343 1.0 1 2020-03-14 01:40:00.671847 2020-03-14 01:40:00.671847 0 \N 5072 \N 836 \N 2343 1.0 1 2020-03-14 01:40:00.697513 2020-03-14 01:40:00.697513 0 \N 5073 \N 702 \N \N 2.0 0 2020-03-14 02:24:19.190481 2020-03-14 02:24:19.190481 7 520 5074 \N 668 \N 2344 1.0 1 2020-03-14 02:25:42.083304 2020-03-14 02:25:42.083304 0 \N 5075 \N 702 \N 2344 1.0 1 2020-03-14 02:25:42.108494 2020-03-14 02:25:42.108494 0 \N 5076 \N 566 \N 2345 1.0 1 2020-03-14 17:42:36.13678 2020-03-14 17:42:36.13678 0 \N 5077 \N 202 \N 2346 1.0 1 2020-03-14 17:54:08.262749 2020-03-14 17:54:08.262749 0 \N 5078 \N 78 \N 2347 1.0 1 2020-03-14 18:32:25.626088 2020-03-14 18:32:25.626088 0 \N 5079 \N 998 \N \N 5.0 0 2020-03-14 19:19:36.09303 2020-03-14 19:19:36.09303 7 512 5080 \N 1015 \N \N 6.0 0 2020-03-14 19:19:36.121046 2020-03-14 19:19:36.121046 7 512 5081 \N 685 \N \N 6.0 0 2020-03-14 19:19:47.022582 2020-03-14 19:19:47.022582 7 513 5082 \N 687 \N \N 6.0 0 2020-03-14 19:20:02.78691 2020-03-14 19:20:02.78691 7 516 5083 \N 411 \N \N 3.0 0 2020-03-14 19:54:35.591376 2020-03-14 19:54:35.591376 7 517 5084 \N 8 \N \N 1.0 0 2020-03-14 19:54:35.611654 2020-03-14 19:54:35.611654 7 517 5085 \N 10 \N \N 2.0 0 2020-03-14 19:54:35.631134 2020-03-14 19:54:35.631134 7 517 5086 \N 286 \N \N 2.0 0 2020-03-14 19:54:35.662189 2020-03-14 19:54:35.662189 7 517 5087 \N 664 \N \N 1.0 0 2020-03-14 19:54:35.681856 2020-03-14 19:54:35.681856 7 517 5088 \N 238 \N \N 3.0 0 2020-03-14 19:54:35.701835 2020-03-14 19:54:35.701835 7 517 5089 \N 237 \N \N 1.0 0 2020-03-14 19:54:35.721702 2020-03-14 19:54:35.721702 7 517 5090 \N 257 \N \N 1.0 0 2020-03-14 19:54:35.741511 2020-03-14 19:54:35.741511 7 517 5091 \N 1094 281 \N 1.0 0 2020-03-14 20:05:29.274072 2020-03-14 20:05:29.274072 1 \N 5092 \N 1095 281 \N 1.0 0 2020-03-14 20:05:29.303674 2020-03-14 20:05:29.303674 1 \N 5093 \N 1096 282 \N 4.0 0 2020-03-14 20:15:58.505169 2020-03-14 20:15:58.505169 1 \N 5094 \N 1097 283 \N 2.0 0 2020-03-14 20:22:51.896422 2020-03-14 20:22:51.896422 1 \N 5095 \N 1098 284 \N 1.0 0 2020-03-14 20:32:00.523668 2020-03-14 20:32:00.523668 1 \N 5096 \N 1025 \N 2348 1.0 1 2020-03-14 20:42:25.786356 2020-03-14 20:42:25.786356 0 \N 5097 \N 1099 285 \N 2.0 0 2020-03-14 20:53:18.608095 2020-03-14 20:53:18.608095 1 \N 5098 \N 1100 286 \N 2.0 0 2020-03-14 20:57:31.425115 2020-03-14 20:57:31.425115 1 \N 5099 \N 930 \N 2349 1.0 1 2020-03-14 22:11:03.708051 2020-03-14 22:11:03.708051 0 \N 5100 \N 983 \N \N 1.0 0 2020-03-14 22:38:41.681159 2020-03-14 22:38:41.681159 7 529 5101 \N 980 \N \N 1.0 0 2020-03-14 22:38:41.703768 2020-03-14 22:38:41.703768 7 529 5102 \N 983 \N 2350 1.0 1 2020-03-14 22:40:02.798508 2020-03-14 22:40:02.798508 0 \N 5103 \N 980 \N 2350 1.0 1 2020-03-14 22:40:02.828335 2020-03-14 22:40:02.828335 0 \N 5104 \N 789 \N 2350 1.0 1 2020-03-14 22:40:02.85399 2020-03-14 22:40:02.85399 0 \N 5105 \N 1013 \N 2350 1.0 1 2020-03-14 22:40:02.87936 2020-03-14 22:40:02.87936 0 \N 5106 \N 1013 \N 2350 1.0 0 2020-03-14 22:40:17.40437 2020-03-14 22:40:17.40437 3 \N 5107 \N 789 \N 2350 1.0 0 2020-03-14 22:40:17.429489 2020-03-14 22:40:17.429489 3 \N 5108 \N 980 \N 2350 1.0 0 2020-03-14 22:40:17.454793 2020-03-14 22:40:17.454793 3 \N 5109 \N 983 \N 2350 1.0 0 2020-03-14 22:40:17.477929 2020-03-14 22:40:17.477929 3 \N 5110 \N 983 \N 2351 1.0 1 2020-03-14 22:42:22.073793 2020-03-14 22:42:22.073793 0 \N 5111 \N 1013 \N 2351 1.0 1 2020-03-14 22:42:22.102402 2020-03-14 22:42:22.102402 0 \N 5112 \N 789 \N 2351 1.0 1 2020-03-14 22:42:22.13397 2020-03-14 22:42:22.13397 0 \N 5113 \N 980 \N 2351 1.0 1 2020-03-14 22:42:22.176041 2020-03-14 22:42:22.176041 0 \N 5114 \N 1028 \N 2351 1.0 1 2020-03-14 22:42:22.211787 2020-03-14 22:42:22.211787 0 \N 5115 \N 928 \N 2351 1.0 1 2020-03-14 22:42:22.240942 2020-03-14 22:42:22.240942 0 \N 5116 \N 928 \N 2351 1.0 0 2020-03-14 22:43:08.330973 2020-03-14 22:43:08.330973 3 \N 5117 \N 1028 \N 2351 1.0 0 2020-03-14 22:43:08.349565 2020-03-14 22:43:08.349565 3 \N 5118 \N 980 \N 2351 1.0 0 2020-03-14 22:43:08.368857 2020-03-14 22:43:08.368857 3 \N 5119 \N 789 \N 2351 1.0 0 2020-03-14 22:43:08.398984 2020-03-14 22:43:08.398984 3 \N 5120 \N 1013 \N 2351 1.0 0 2020-03-14 22:43:08.418542 2020-03-14 22:43:08.418542 3 \N 5121 \N 983 \N 2351 1.0 0 2020-03-14 22:43:08.43803 2020-03-14 22:43:08.43803 3 \N 5122 \N 1028 \N 2352 1.0 1 2020-03-14 22:44:43.092826 2020-03-14 22:44:43.092826 0 \N 5123 \N 928 \N 2352 1.0 1 2020-03-14 22:44:43.117202 2020-03-14 22:44:43.117202 0 \N 5124 \N 980 \N 2352 1.0 1 2020-03-14 22:44:43.142799 2020-03-14 22:44:43.142799 0 \N 5125 \N 789 \N 2352 1.0 1 2020-03-14 22:44:43.166791 2020-03-14 22:44:43.166791 0 \N 5126 \N 983 \N 2352 1.0 1 2020-03-14 22:44:43.190696 2020-03-14 22:44:43.190696 0 \N 5127 \N 1013 \N 2352 1.0 1 2020-03-14 22:44:43.220063 2020-03-14 22:44:43.220063 0 \N 5128 \N 369 \N 2353 1.0 1 2020-03-14 22:56:14.462157 2020-03-14 22:56:14.462157 0 \N 5129 \N 1000 \N 2354 1.0 1 2020-03-14 23:02:11.290752 2020-03-14 23:02:11.290752 0 \N 5130 \N 997 \N 2355 1.0 1 2020-03-14 23:39:15.518124 2020-03-14 23:39:15.518124 0 \N 5131 \N 1101 287 \N 4.0 0 2020-03-15 00:05:02.342909 2020-03-15 00:05:02.342909 1 \N 5132 \N 714 \N 2356 1.0 1 2020-03-15 00:21:39.296556 2020-03-15 00:21:39.296556 0 \N 5133 \N 611 \N 2357 1.0 1 2020-03-15 00:31:24.593822 2020-03-15 00:31:24.593822 0 \N 5134 \N 1102 288 \N 1.0 0 2020-03-15 00:46:41.583126 2020-03-15 00:46:41.583126 1 \N 5135 \N 1103 289 \N 1.0 0 2020-03-15 00:49:29.459057 2020-03-15 00:49:29.459057 1 \N 5136 \N 1104 290 \N 1.0 0 2020-03-15 00:50:34.945533 2020-03-15 00:50:34.945533 1 \N 5137 \N 993 \N \N 1.0 0 2020-03-15 18:57:03.409274 2020-03-15 18:57:03.409274 7 519 5138 \N 1099 \N \N 1.0 0 2020-03-15 18:57:17.016857 2020-03-15 18:57:17.016857 7 526 5139 \N 1097 \N \N 1.0 0 2020-03-15 18:57:25.359761 2020-03-15 18:57:25.359761 7 524 5140 \N 987 \N 2358 1.0 1 2020-03-15 19:06:41.494261 2020-03-15 19:06:41.494261 0 \N 5141 \N 984 \N 2359 1.0 1 2020-03-15 19:19:13.612403 2020-03-15 19:19:13.612403 0 \N 5142 \N 176 \N 2360 1.0 1 2020-03-15 19:50:33.833151 2020-03-15 19:50:33.833151 0 \N 5143 \N 634 \N 2361 1.0 1 2020-03-15 20:49:18.81935 2020-03-15 20:49:18.81935 0 \N 5144 \N 207 \N 2362 1.0 1 2020-03-16 19:31:36.968257 2020-03-16 19:31:36.968257 0 \N 5145 \N 963 \N 2363 1.0 1 2020-03-16 19:54:51.720876 2020-03-16 19:54:51.720876 0 \N 5146 \N 1034 291 \N 2.0 0 2020-03-16 20:34:05.013029 2020-03-16 20:34:05.013029 1 \N 5147 \N 1105 291 \N 1.0 0 2020-03-16 20:34:05.047002 2020-03-16 20:34:05.047002 1 \N 5148 \N 1106 291 \N 1.0 0 2020-03-16 20:34:05.076753 2020-03-16 20:34:05.076753 1 \N 5149 \N 1107 291 \N 1.0 0 2020-03-16 20:34:05.103121 2020-03-16 20:34:05.103121 1 \N 5150 \N 1108 291 \N 1.0 0 2020-03-16 20:34:05.128948 2020-03-16 20:34:05.128948 1 \N 5151 \N 1109 291 \N 2.0 0 2020-03-16 20:34:05.157433 2020-03-16 20:34:05.157433 1 \N 5152 \N 1110 291 \N 1.0 0 2020-03-16 20:34:05.183814 2020-03-16 20:34:05.183814 1 \N 5153 \N 1111 291 \N 1.0 0 2020-03-16 20:34:05.210549 2020-03-16 20:34:05.210549 1 \N 5154 \N 1112 291 \N 1.0 0 2020-03-16 20:34:05.236045 2020-03-16 20:34:05.236045 1 \N 5155 \N 1113 291 \N 1.0 0 2020-03-16 20:34:05.262754 2020-03-16 20:34:05.262754 1 \N 5156 \N 1114 291 \N 1.0 0 2020-03-16 20:34:05.288544 2020-03-16 20:34:05.288544 1 \N 5157 \N 1115 291 \N 1.0 0 2020-03-16 20:34:05.315962 2020-03-16 20:34:05.315962 1 \N 5158 \N 1116 291 \N 1.0 0 2020-03-16 20:34:05.342252 2020-03-16 20:34:05.342252 1 \N 5159 \N 1096 \N \N 2.0 0 2020-03-16 20:44:58.788133 2020-03-16 20:44:58.788133 7 522 5160 \N 1099 \N \N 1.0 0 2020-03-16 20:45:26.409762 2020-03-16 20:45:26.409762 7 525 5161 \N 1100 \N \N 1.0 0 2020-03-16 20:45:38.010011 2020-03-16 20:45:38.010011 7 527 5162 \N 963 \N 2364 1.0 1 2020-03-16 21:17:30.273681 2020-03-16 21:17:30.273681 0 \N 5163 \N 984 \N 2364 1.0 1 2020-03-16 21:17:30.301743 2020-03-16 21:17:30.301743 0 \N 5164 \N 1100 \N \N 1.0 0 2020-03-16 21:18:51.053734 2020-03-16 21:18:51.053734 7 528 5165 \N 1100 \N \N 1.0 0 2020-03-16 21:18:51.707685 2020-03-16 21:18:51.707685 7 528 5166 \N 1097 \N \N 1.0 0 2020-03-16 21:19:27.672039 2020-03-16 21:19:27.672039 7 523 5167 \N 1096 \N \N 2.0 0 2020-03-16 21:20:31.81301 2020-03-16 21:20:31.81301 7 521 5168 \N 690 \N \N 1.0 0 2020-03-16 21:21:47.65199 2020-03-16 21:21:47.65199 7 515 5169 \N 177 \N \N 2.0 0 2020-03-16 21:21:47.681176 2020-03-16 21:21:47.681176 7 515 5170 \N 571 \N \N 4.0 0 2020-03-16 21:21:47.705803 2020-03-16 21:21:47.705803 7 515 5171 \N 803 \N \N 6.0 0 2020-03-16 21:21:47.729 2020-03-16 21:21:47.729 7 515 5172 \N 618 \N \N 3.0 0 2020-03-16 21:21:47.752803 2020-03-16 21:21:47.752803 7 515 5173 \N 513 \N \N 3.0 0 2020-03-16 21:21:47.775219 2020-03-16 21:21:47.775219 7 515 5174 \N 975 \N 2365 1.0 1 2020-03-16 21:59:32.564887 2020-03-16 21:59:32.564887 0 \N 5175 \N 717 \N 2366 1.0 1 2020-03-17 01:39:37.060065 2020-03-17 01:39:37.060065 0 \N 5176 \N 1117 292 \N 6.0 0 2020-03-17 18:31:38.812655 2020-03-17 18:31:38.812655 1 \N 5177 \N 1117 292 \N 6.0 1 2020-03-17 18:35:24.719449 2020-03-17 18:35:24.719449 4 \N 5178 \N 1118 293 \N 7.0 0 2020-03-17 18:38:33.489309 2020-03-17 18:38:33.489309 1 \N 5179 \N 975 \N 2367 1.0 1 2020-03-17 19:45:21.344983 2020-03-17 19:45:21.344983 0 \N 5180 \N 9 \N 2368 1.0 1 2020-03-17 20:08:13.626033 2020-03-17 20:08:13.626033 0 \N 5181 \N 5 \N 2368 1.0 1 2020-03-17 20:08:13.659017 2020-03-17 20:08:13.659017 0 \N 5182 \N 369 \N 2369 2.0 1 2020-03-17 20:09:14.812708 2020-03-17 20:09:14.812708 0 \N 5183 \N 408 \N 2370 1.0 1 2020-03-17 22:54:31.862542 2020-03-17 22:54:31.862542 0 \N 5184 \N 638 \N 2370 1.0 1 2020-03-17 22:54:31.889531 2020-03-17 22:54:31.889531 0 \N 5185 \N 609 \N 2371 1.0 1 2020-03-17 23:14:46.436969 2020-03-17 23:14:46.436969 0 \N 5186 \N 609 \N 2371 1.0 0 2020-03-17 23:14:54.522849 2020-03-17 23:14:54.522849 3 \N 5187 \N 609 \N 2372 1.0 1 2020-03-17 23:15:24.668035 2020-03-17 23:15:24.668035 0 \N 5188 \N 975 \N 2373 1.0 1 2020-03-18 00:06:07.324077 2020-03-18 00:06:07.324077 0 \N 5189 \N 1029 \N 2374 1.0 1 2020-03-18 00:13:40.811385 2020-03-18 00:13:40.811385 0 \N 5190 \N 1113 \N 2374 1.0 1 2020-03-18 00:13:40.84648 2020-03-18 00:13:40.84648 0 \N 5191 \N 1115 \N 2375 1.0 1 2020-03-18 00:18:05.982034 2020-03-18 00:18:05.982034 0 \N 5192 \N 1040 \N 2375 1.0 1 2020-03-18 00:18:06.012089 2020-03-18 00:18:06.012089 0 \N 5193 \N 1114 \N 2375 1.0 1 2020-03-18 00:18:06.04116 2020-03-18 00:18:06.04116 0 \N 5194 \N 1042 \N 2375 1.0 1 2020-03-18 00:18:06.06752 2020-03-18 00:18:06.06752 0 \N 5195 \N 1039 \N 2375 1.0 1 2020-03-18 00:18:06.092487 2020-03-18 00:18:06.092487 0 \N 5196 \N 1097 \N 2376 1.0 1 2020-03-18 00:30:28.656594 2020-03-18 00:30:28.656594 0 \N 5197 \N 1118 \N \N 3.0 0 2020-03-18 00:52:07.115766 2020-03-18 00:52:07.115766 7 530 5198 \N 1118 \N \N 4.0 0 2020-03-18 00:52:30.792968 2020-03-18 00:52:30.792968 7 531 5199 \N 1118 \N \N 5.0 0 2020-03-18 00:55:14.669609 2020-03-18 00:55:14.669609 7 532 5200 \N 1118 \N 2377 1.0 1 2020-03-18 00:56:02.228999 2020-03-18 00:56:02.228999 0 \N 5201 \N 1118 \N 2377 1.0 0 2020-03-18 00:56:09.951814 2020-03-18 00:56:09.951814 3 \N 5202 \N 1118 \N 2378 1.0 1 2020-03-18 00:56:33.618701 2020-03-18 00:56:33.618701 0 \N 5203 \N 369 \N 2379 1.0 1 2020-03-18 01:00:29.752614 2020-03-18 01:00:29.752614 0 \N 5204 \N 1059 \N 2380 1.0 1 2020-03-18 01:28:39.880045 2020-03-18 01:28:39.880045 0 \N 5205 \N 989 \N 2381 1.0 1 2020-03-18 02:10:03.287505 2020-03-18 02:10:03.287505 0 \N 5206 \N 987 \N 2381 1.0 1 2020-03-18 02:10:03.336956 2020-03-18 02:10:03.336956 0 \N 5207 \N 369 \N 2382 2.0 1 2020-03-18 18:22:56.834589 2020-03-18 18:22:56.834589 0 \N 5208 \N 369 \N 2383 1.0 1 2020-03-18 18:34:04.472316 2020-03-18 18:34:04.472316 0 \N 5209 \N 717 \N 2061 1.0 0 2020-03-18 18:53:56.747143 2020-03-18 18:53:56.747143 8 \N 5210 \N 817 \N 2187 1.0 0 2020-03-18 18:54:07.265393 2020-03-18 18:54:07.265393 8 \N 5211 \N 811 \N 2187 1.0 0 2020-03-18 18:54:07.292783 2020-03-18 18:54:07.292783 8 \N 5212 \N 823 \N 2063 1.0 0 2020-03-18 18:54:23.873781 2020-03-18 18:54:23.873781 8 \N 5213 \N 1026 \N 2384 1.0 1 2020-03-18 21:38:39.36633 2020-03-18 21:38:39.36633 0 \N 5214 \N 83 \N 2384 1.0 1 2020-03-18 21:38:39.395684 2020-03-18 21:38:39.395684 0 \N 5215 \N 669 \N 2384 1.0 1 2020-03-18 21:38:39.421554 2020-03-18 21:38:39.421554 0 \N 5216 \N 609 \N 2385 1.0 1 2020-03-18 21:41:56.815185 2020-03-18 21:41:56.815185 0 \N 5217 \N 419 \N 2385 1.0 1 2020-03-18 21:41:56.852891 2020-03-18 21:41:56.852891 0 \N 5218 \N 369 \N 2386 1.0 1 2020-03-18 23:45:46.060619 2020-03-18 23:45:46.060619 0 \N 5219 \N 992 \N 2387 1.0 1 2020-03-18 23:53:47.075697 2020-03-18 23:53:47.075697 0 \N 5220 \N 990 \N 2387 1.0 1 2020-03-18 23:53:47.110111 2020-03-18 23:53:47.110111 0 \N 5221 \N 1016 \N \N 1.0 0 2020-03-19 00:34:33.451487 2020-03-19 00:34:33.451487 7 533 5222 \N 1016 \N 2388 1.0 1 2020-03-19 00:35:22.022565 2020-03-19 00:35:22.022565 0 \N 5223 \N 1016 \N 2388 1.0 0 2020-03-19 00:37:25.94109 2020-03-19 00:37:25.94109 3 \N 5224 \N 1016 \N 2389 1.0 1 2020-03-19 00:37:45.503712 2020-03-19 00:37:45.503712 0 \N 5225 \N 205 \N 2390 1.0 1 2020-03-19 00:58:59.688099 2020-03-19 00:58:59.688099 0 \N 5226 \N 369 \N 2391 1.0 1 2020-03-19 17:51:54.520191 2020-03-19 17:51:54.520191 0 \N 5227 \N 1013 \N 2352 1.0 0 2020-03-19 17:59:11.820525 2020-03-19 17:59:11.820525 9 \N 5228 \N 983 \N 2352 1.0 0 2020-03-19 17:59:11.840079 2020-03-19 17:59:11.840079 9 \N 5229 \N 789 \N 2352 1.0 0 2020-03-19 17:59:11.859533 2020-03-19 17:59:11.859533 9 \N 5230 \N 980 \N 2352 1.0 0 2020-03-19 17:59:11.879549 2020-03-19 17:59:11.879549 9 \N 5231 \N 928 \N 2352 1.0 0 2020-03-19 17:59:11.898754 2020-03-19 17:59:11.898754 9 \N 5232 \N 1028 \N 2352 1.0 0 2020-03-19 17:59:11.917494 2020-03-19 17:59:11.917494 9 \N 5233 \N 983 \N 2392 1.0 1 2020-03-19 18:01:36.729449 2020-03-19 18:01:36.729449 0 \N 5234 \N 1013 \N 2392 1.0 1 2020-03-19 18:01:36.752633 2020-03-19 18:01:36.752633 0 \N 5235 \N 789 \N 2392 1.0 1 2020-03-19 18:01:36.776544 2020-03-19 18:01:36.776544 0 \N 5236 \N 980 \N 2392 1.0 1 2020-03-19 18:01:36.80037 2020-03-19 18:01:36.80037 0 \N 5237 \N 663 \N 2393 1.0 1 2020-03-19 20:00:22.091704 2020-03-19 20:00:22.091704 0 \N 5238 \N 1002 \N 2394 1.0 1 2020-03-19 21:01:02.324746 2020-03-19 21:01:02.324746 0 \N 5239 \N 490 \N \N 1.0 0 2020-03-19 23:05:22.8576 2020-03-19 23:05:22.8576 7 534 5240 \N 490 \N 2395 1.0 1 2020-03-19 23:06:06.692517 2020-03-19 23:06:06.692517 0 \N 5241 \N 717 \N 2174 1.0 0 2020-03-19 23:25:39.823281 2020-03-19 23:25:39.823281 8 \N 5242 \N 1118 \N 2396 1.0 1 2020-03-20 20:43:39.557756 2020-03-20 20:43:39.557756 0 \N 5243 \N 369 \N 2396 2.0 1 2020-03-20 20:43:39.583621 2020-03-20 20:43:39.583621 0 \N 5244 \N 552 \N 2397 1.0 1 2020-03-20 21:05:20.072033 2020-03-20 21:05:20.072033 0 \N 5245 \N 369 \N 2398 1.0 1 2020-03-20 21:31:14.668531 2020-03-20 21:31:14.668531 0 \N 5246 \N 1118 \N 2399 1.0 1 2020-03-21 00:03:49.92314 2020-03-21 00:03:49.92314 0 \N 5247 \N 864 \N 2400 1.0 1 2020-03-21 17:24:59.199361 2020-03-21 17:24:59.199361 0 \N 5248 \N 1014 \N 2401 1.0 1 2020-03-21 21:24:59.028754 2020-03-21 21:24:59.028754 0 \N 5249 \N 1082 \N 2402 1.0 1 2020-03-21 22:09:30.667007 2020-03-21 22:09:30.667007 0 \N 5250 \N 983 \N 2403 1.0 1 2020-03-21 23:33:52.779553 2020-03-21 23:33:52.779553 0 \N 5251 \N 1002 \N 2403 1.0 1 2020-03-21 23:33:52.804265 2020-03-21 23:33:52.804265 0 \N 5252 \N 593 \N \N 1.0 0 2020-03-21 23:38:33.338735 2020-03-21 23:38:33.338735 7 535 5253 \N 593 \N 2404 1.0 1 2020-03-21 23:38:52.158542 2020-03-21 23:38:52.158542 0 \N 5254 \N 982 \N 2405 1.0 1 2020-03-22 00:55:18.618039 2020-03-22 00:55:18.618039 0 \N 5255 \N 369 \N 2406 1.0 1 2020-03-23 18:24:41.010896 2020-03-23 18:24:41.010896 0 \N 5256 \N 663 \N 2407 1.0 1 2020-03-23 18:29:46.719981 2020-03-23 18:29:46.719981 0 \N 5257 \N 476 \N 2407 1.0 1 2020-03-23 18:29:46.755969 2020-03-23 18:29:46.755969 0 \N 5258 \N 1014 \N 2408 1.0 1 2020-03-24 01:39:49.627633 2020-03-24 01:39:49.627633 0 \N 5259 \N 1008 \N 2409 1.0 1 2020-03-24 22:40:18.016259 2020-03-24 22:40:18.016259 0 \N 5260 \N 1013 \N 2409 1.0 1 2020-03-24 22:40:18.040273 2020-03-24 22:40:18.040273 0 \N 5261 \N 1016 \N 2410 1.0 1 2020-03-26 19:03:11.155573 2020-03-26 19:03:11.155573 0 \N 5262 \N 680 \N 2411 1.0 1 2020-03-28 19:01:36.16862 2020-03-28 19:01:36.16862 0 \N 5263 \N 369 \N 2411 1.0 1 2020-03-28 19:01:36.192828 2020-03-28 19:01:36.192828 0 \N 5264 \N 499 \N 2411 1.0 1 2020-03-28 19:01:36.215922 2020-03-28 19:01:36.215922 0 \N 5265 \N 369 \N 2412 1.0 1 2020-03-31 19:14:45.360286 2020-03-31 19:14:45.360286 0 \N 5266 \N 1118 \N 2413 2.0 1 2020-04-05 03:02:04.600481 2020-04-05 03:02:04.600481 0 \N 5267 \N 1118 \N 2413 2.0 0 2020-04-05 03:06:41.014506 2020-04-05 03:06:41.014506 9 \N 5268 \N 1118 \N 2414 2.0 1 2020-04-05 03:07:35.855707 2020-04-05 03:07:35.855707 0 \N 5269 \N 1118 \N 2414 2.0 0 2020-04-05 03:10:53.648965 2020-04-05 03:10:53.648965 9 \N 5270 \N 1120 294 \N 1.0 0 2020-04-30 22:33:05.302129 2020-04-30 22:33:05.302129 1 \N 5271 \N 1120 \N 2415 1.0 1 2020-04-30 22:34:21.993082 2020-04-30 22:34:21.993082 0 \N 5272 \N 1118 \N 2416 1.0 1 2020-04-30 23:04:29.398179 2020-04-30 23:04:29.398179 0 \N 5273 \N 445 \N 2417 1.0 1 2020-04-30 23:11:20.543106 2020-04-30 23:11:20.543106 0 \N 5274 \N 709 \N 2417 1.0 1 2020-04-30 23:11:20.573103 2020-04-30 23:11:20.573103 0 \N 5275 \N 1118 \N 2418 1.0 1 2020-05-03 23:29:34.099872 2020-05-03 23:29:34.099872 0 \N 5276 \N 1013 \N 2419 1.0 1 2020-05-03 23:33:44.822731 2020-05-03 23:33:44.822731 0 \N 5277 \N 1118 \N 2418 1.0 0 2020-05-03 23:35:19.592237 2020-05-03 23:35:19.592237 3 \N 5278 \N 1118 \N 2420 1.0 1 2020-05-03 23:35:46.989738 2020-05-03 23:35:46.989738 0 \N 5279 \N 1011 \N \N 1.0 0 2020-05-03 23:36:09.09202 2020-05-03 23:36:09.09202 7 537 5280 \N 1118 \N 2421 2.0 1 2020-05-03 23:43:21.346319 2020-05-03 23:43:21.346319 0 \N 5281 \N 1118 \N 2421 2.0 0 2020-05-03 23:44:42.280937 2020-05-03 23:44:42.280937 3 \N 5282 \N 1118 \N 2422 2.0 1 2020-05-03 23:45:06.875062 2020-05-03 23:45:06.875062 0 \N 5283 \N 1118 \N 2422 2.0 0 2020-05-03 23:46:19.025294 2020-05-03 23:46:19.025294 9 \N 5284 \N 1118 \N 2423 2.0 1 2020-05-03 23:46:39.175424 2020-05-03 23:46:39.175424 0 \N 5285 \N 1118 \N 2424 1.0 1 2020-05-03 23:51:17.639576 2020-05-03 23:51:17.639576 0 \N 5286 \N 1011 \N 2424 1.0 1 2020-05-03 23:51:17.678135 2020-05-03 23:51:17.678135 0 \N 5287 \N 1121 295 \N 2.0 0 2020-05-03 23:55:58.729963 2020-05-03 23:55:58.729963 1 \N 5288 \N 1121 \N 2425 1.0 1 2020-05-03 23:56:18.301823 2020-05-03 23:56:18.301823 0 \N 5289 \N 463 \N 2426 1.0 1 2020-05-04 00:03:05.367919 2020-05-04 00:03:05.367919 0 \N 5290 \N 613 \N \N 1.0 0 2020-05-04 00:08:12.101229 2020-05-04 00:08:12.101229 7 536 5291 \N 967 \N \N 1.0 0 2020-05-04 00:08:12.133382 2020-05-04 00:08:12.133382 7 536 5292 \N 953 \N \N 1.0 0 2020-05-04 00:08:12.190665 2020-05-04 00:08:12.190665 7 536 5293 \N 1091 \N \N 1.0 0 2020-05-04 00:08:45.669339 2020-05-04 00:08:45.669339 7 539 5294 \N 1011 \N \N 1.0 0 2020-05-04 00:08:51.327543 2020-05-04 00:08:51.327543 7 538 5295 \N 1091 \N 2427 1.0 1 2020-05-04 00:09:36.835915 2020-05-04 00:09:36.835915 0 \N 5296 \N 1011 \N 2427 1.0 1 2020-05-04 00:09:36.859648 2020-05-04 00:09:36.859648 0 \N 5297 \N 1000 \N 2428 1.0 1 2020-05-04 00:21:03.013115 2020-05-04 00:21:03.013115 0 \N 5298 \N 1122 296 \N 3.0 0 2020-05-04 00:24:01.53637 2020-05-04 00:24:01.53637 1 \N 5299 \N 1118 \N 2420 1.0 0 2020-05-04 00:24:15.325621 2020-05-04 00:24:15.325621 3 \N 5300 \N 1122 \N 2429 1.0 1 2020-05-04 00:24:49.500306 2020-05-04 00:24:49.500306 0 \N 5301 \N 1123 297 \N 1.0 0 2020-05-04 00:27:58.89058 2020-05-04 00:27:58.89058 1 \N 5302 \N 1124 297 \N 1.0 0 2020-05-04 00:27:58.922854 2020-05-04 00:27:58.922854 1 \N 5303 \N 1124 \N 2430 1.0 1 2020-05-04 00:29:41.265369 2020-05-04 00:29:41.265369 0 \N 5304 \N 1123 \N 2430 1.0 1 2020-05-04 00:29:41.301648 2020-05-04 00:29:41.301648 0 \N 5305 \N 1122 \N 2430 1.0 1 2020-05-04 00:29:41.344394 2020-05-04 00:29:41.344394 0 \N 5306 \N 1122 \N 2430 1.0 0 2020-05-04 00:29:47.172818 2020-05-04 00:29:47.172818 3 \N 5307 \N 1123 \N 2430 1.0 0 2020-05-04 00:29:47.196414 2020-05-04 00:29:47.196414 3 \N 5308 \N 1124 \N 2430 1.0 0 2020-05-04 00:29:47.220372 2020-05-04 00:29:47.220372 3 \N 5309 \N 1124 \N 2431 1.0 1 2020-05-04 00:30:24.17332 2020-05-04 00:30:24.17332 0 \N 5310 \N 1123 \N 2431 1.0 1 2020-05-04 00:30:24.223545 2020-05-04 00:30:24.223545 0 \N 5311 \N 1122 \N 2431 1.0 1 2020-05-04 00:30:24.253809 2020-05-04 00:30:24.253809 0 \N 5312 \N 1118 \N 2432 1.0 1 2020-05-04 00:35:29.712769 2020-05-04 00:35:29.712769 0 \N 5313 \N 1125 298 \N 1.0 0 2020-05-04 00:39:50.711905 2020-05-04 00:39:50.711905 1 \N 5314 \N 1125 \N 2433 1.0 1 2020-05-04 00:40:42.009825 2020-05-04 00:40:42.009825 0 \N 5315 \N 1126 299 \N 4.0 0 2020-05-04 00:45:12.491583 2020-05-04 00:45:12.491583 1 \N 5316 \N 1127 300 \N 1.0 0 2020-05-04 00:50:29.975819 2020-05-04 00:50:29.975819 1 \N 5317 \N 1127 \N 2434 1.0 1 2020-05-04 00:51:24.437354 2020-05-04 00:51:24.437354 0 \N 5318 \N 717 \N 2435 1.0 1 2020-05-04 05:33:02.726501 2020-05-04 05:33:02.726501 0 \N 5319 \N 258 \N 2436 1.0 1 2020-05-13 23:50:55.578064 2020-05-13 23:50:55.578064 0 \N 5320 \N 1118 \N 2437 1.0 1 2020-05-14 20:12:01.894418 2020-05-14 20:12:01.894418 0 \N 5321 \N 1126 \N 2438 1.0 1 2020-05-14 20:15:00.074698 2020-05-14 20:15:00.074698 0 \N 5322 \N 1118 \N 2439 1.0 1 2020-05-14 20:15:57.129297 2020-05-14 20:15:57.129297 0 \N 5323 \N 717 \N 2439 1.0 1 2020-05-14 20:15:57.151982 2020-05-14 20:15:57.151982 0 \N 5324 \N 966 \N 2440 1.0 1 2020-05-14 20:18:14.367444 2020-05-14 20:18:14.367444 0 \N 5325 \N 1118 \N 2441 1.0 1 2020-05-14 20:41:20.578185 2020-05-14 20:41:20.578185 0 \N 5326 \N 1118 \N 2442 1.0 1 2020-05-14 20:42:07.459692 2020-05-14 20:42:07.459692 0 \N 5327 \N 717 \N 2443 1.0 1 2020-05-14 20:44:01.381927 2020-05-14 20:44:01.381927 0 \N 5328 \N 717 \N 2201 1.0 0 2020-05-14 20:49:17.203359 2020-05-14 20:49:17.203359 8 \N 5329 \N 717 \N 2444 1.0 1 2020-05-14 20:50:31.142635 2020-05-14 20:50:31.142635 0 \N 5330 \N 1128 301 \N 1.0 0 2020-05-14 20:52:42.597833 2020-05-14 20:52:42.597833 1 \N 5331 \N 1129 302 \N 1.0 0 2020-05-14 20:53:25.001697 2020-05-14 20:53:25.001697 1 \N 5332 \N 1128 \N 2445 1.0 1 2020-05-14 20:53:47.916399 2020-05-14 20:53:47.916399 0 \N 5333 \N 1129 \N 2445 1.0 1 2020-05-14 20:53:47.940885 2020-05-14 20:53:47.940885 0 \N 5334 \N 999 \N 2446 1.0 1 2020-05-14 21:16:46.815733 2020-05-14 21:16:46.815733 0 \N 5335 \N 1024 \N 2447 1.0 1 2020-05-14 21:18:46.374277 2020-05-14 21:18:46.374277 0 \N 5336 \N 180 \N 2448 1.0 1 2020-05-14 21:19:31.006698 2020-05-14 21:19:31.006698 0 \N 5337 \N 1013 \N 2449 1.0 1 2020-05-14 21:24:24.358667 2020-05-14 21:24:24.358667 0 \N 5338 \N 1013 \N 2450 1.0 1 2020-05-14 21:24:50.266179 2020-05-14 21:24:50.266179 0 \N 5339 \N 1094 \N 2451 1.0 1 2020-05-14 21:26:34.137258 2020-05-14 21:26:34.137258 0 \N 5340 \N 1126 \N 2452 1.0 1 2020-05-15 22:52:21.552306 2020-05-15 22:52:21.552306 0 \N 5341 \N 1126 \N 2453 2.0 1 2020-05-15 22:53:04.05862 2020-05-15 22:53:04.05862 0 \N 5342 \N 1018 \N 2454 1.0 1 2020-05-20 01:11:33.425214 2020-05-20 01:11:33.425214 0 \N 5343 \N 1018 \N 2455 1.0 1 2020-05-20 01:12:57.370695 2020-05-20 01:12:57.370695 0 \N 5344 \N 800 \N 2456 1.0 1 2020-05-20 01:14:12.366812 2020-05-20 01:14:12.366812 0 \N 5345 \N 993 \N 2457 1.0 1 2020-05-20 01:15:23.491213 2020-05-20 01:15:23.491213 0 \N 5346 \N 999 \N 2458 1.0 1 2020-05-20 01:19:08.608268 2020-05-20 01:19:08.608268 0 \N 5347 \N 689 \N 2459 1.0 1 2020-05-20 01:22:34.337983 2020-05-20 01:22:34.337983 0 \N 5348 \N 658 \N 2460 1.0 1 2020-06-10 23:04:19.845355 2020-06-10 23:04:19.845355 0 \N 5349 \N 530 \N 2460 1.0 1 2020-06-10 23:04:19.873226 2020-06-10 23:04:19.873226 0 \N 5350 \N 541 \N 2460 1.0 1 2020-06-10 23:04:19.898633 2020-06-10 23:04:19.898633 0 \N 5351 \N 967 \N 2461 1.0 1 2020-06-10 23:26:05.179116 2020-06-10 23:26:05.179116 0 \N 5352 \N 571 \N 2462 1.0 1 2020-06-10 23:28:41.037801 2020-06-10 23:28:41.037801 0 \N 5353 \N 1013 \N 2462 1.0 1 2020-06-10 23:28:41.065985 2020-06-10 23:28:41.065985 0 \N 5354 \N 717 \N 2444 1.0 0 2020-06-11 00:59:27.471955 2020-06-11 00:59:27.471955 9 \N 5355 \N 1025 \N 2463 1.0 1 2020-06-11 03:02:36.894162 2020-06-11 03:02:36.894162 0 \N 5356 \N 270 \N 2464 1.0 1 2020-06-20 01:29:17.677192 2020-06-20 01:29:17.677192 0 \N 5357 \N 966 \N \N 1.0 0 2020-06-24 00:10:26.151245 2020-06-24 00:10:26.151245 7 543 5358 \N 492 \N \N 1.0 0 2020-06-24 00:10:34.749368 2020-06-24 00:10:34.749368 7 542 5359 \N 716 \N \N 1.0 0 2020-06-24 00:10:50.451592 2020-06-24 00:10:50.451592 7 541 5360 \N 721 \N \N 1.0 0 2020-06-24 00:10:50.468728 2020-06-24 00:10:50.468728 7 541 5361 \N 352 \N \N 1.0 0 2020-06-24 00:10:50.488891 2020-06-24 00:10:50.488891 7 541 5362 \N 653 \N \N 1.0 0 2020-06-24 00:10:50.509916 2020-06-24 00:10:50.509916 7 541 5363 \N 55 \N \N 1.0 0 2020-06-24 00:10:50.527633 2020-06-24 00:10:50.527633 7 541 5364 \N 45 \N \N 1.0 0 2020-06-24 00:10:50.545093 2020-06-24 00:10:50.545093 7 541 5365 \N 361 \N \N 1.0 0 2020-06-24 00:10:50.564521 2020-06-24 00:10:50.564521 7 541 5366 \N 354 \N \N 1.0 0 2020-06-24 00:10:50.583716 2020-06-24 00:10:50.583716 7 541 5367 \N 495 \N \N 1.0 0 2020-06-24 00:10:50.601868 2020-06-24 00:10:50.601868 7 541 5368 \N 54 \N \N 1.0 0 2020-06-24 00:10:50.620408 2020-06-24 00:10:50.620408 7 541 5369 \N 722 \N 2465 1.0 1 2020-06-24 00:12:07.342101 2020-06-24 00:12:07.342101 0 \N 5370 \N 722 \N 2465 1.0 0 2020-06-24 00:13:38.061039 2020-06-24 00:13:38.061039 9 \N 5371 \N 722 \N 2466 1.0 1 2020-06-24 00:14:03.139241 2020-06-24 00:14:03.139241 0 \N 5372 \N 722 \N 2466 1.0 0 2020-06-24 00:15:33.73424 2020-06-24 00:15:33.73424 9 \N 5373 \N 722 \N 2467 1.0 1 2020-06-24 00:15:54.391929 2020-06-24 00:15:54.391929 0 \N 5374 \N 979 \N 2468 1.0 1 2020-06-24 20:29:23.990813 2020-06-24 20:29:23.990813 0 \N 5375 \N 1002 \N 2468 1.0 1 2020-06-24 20:29:24.028344 2020-06-24 20:29:24.028344 0 \N 5376 \N 1025 \N 2468 1.0 1 2020-06-24 20:29:24.05931 2020-06-24 20:29:24.05931 0 \N 5377 \N 1012 \N 2469 1.0 1 2020-06-24 20:31:06.248307 2020-06-24 20:31:06.248307 0 \N 5378 \N 984 \N 2470 1.0 1 2020-06-24 20:33:07.629735 2020-06-24 20:33:07.629735 0 \N 5379 \N 992 \N 2471 1.0 1 2020-06-24 20:56:31.187514 2020-06-24 20:56:31.187514 0 \N 5380 \N 601 \N 2472 1.0 1 2020-06-24 21:41:50.963162 2020-06-24 21:41:50.963162 0 \N 5381 \N 1024 \N 2472 1.0 1 2020-06-24 21:41:50.988543 2020-06-24 21:41:50.988543 0 \N 5382 \N 725 \N \N 1.0 0 2020-06-24 21:54:27.443692 2020-06-24 21:54:27.443692 7 511 5383 \N 947 \N \N 1.0 0 2020-06-24 21:54:27.45174 2020-06-24 21:54:27.45174 7 511 5384 \N 786 \N \N 5.0 0 2020-06-24 21:54:27.459984 2020-06-24 21:54:27.459984 7 511 5385 \N 790 \N \N 4.0 0 2020-06-24 21:54:27.467514 2020-06-24 21:54:27.467514 7 511 5386 \N 869 \N \N 1.0 0 2020-06-24 21:54:27.474951 2020-06-24 21:54:27.474951 7 511 5387 \N 752 \N \N 1.0 0 2020-06-24 21:54:27.482552 2020-06-24 21:54:27.482552 7 511 5388 \N 971 \N \N 1.0 0 2020-06-24 21:54:27.489986 2020-06-24 21:54:27.489986 7 511 5389 \N 724 \N \N 3.0 0 2020-06-24 21:54:27.498472 2020-06-24 21:54:27.498472 7 511 5390 \N 893 \N \N 2.0 0 2020-06-24 21:54:27.505827 2020-06-24 21:54:27.505827 7 511 5391 \N 728 \N \N 1.0 0 2020-06-24 21:54:27.513757 2020-06-24 21:54:27.513757 7 511 5392 \N 862 \N \N 2.0 0 2020-06-24 21:54:27.520951 2020-06-24 21:54:27.520951 7 511 5393 \N 896 \N \N 4.0 0 2020-06-24 21:54:27.528353 2020-06-24 21:54:27.528353 7 511 5394 \N 903 \N \N 1.0 0 2020-06-24 21:54:27.534907 2020-06-24 21:54:27.534907 7 511 5395 \N 877 \N \N 3.0 0 2020-06-24 21:54:27.54129 2020-06-24 21:54:27.54129 7 511 5396 \N 956 \N \N 2.0 0 2020-06-24 21:54:27.547889 2020-06-24 21:54:27.547889 7 511 5397 \N 955 \N \N 3.0 0 2020-06-24 21:54:27.55493 2020-06-24 21:54:27.55493 7 511 5398 \N 891 \N \N 2.0 0 2020-06-24 21:54:27.562342 2020-06-24 21:54:27.562342 7 511 5399 \N 642 \N \N 3.0 0 2020-06-24 21:54:42.982038 2020-06-24 21:54:42.982038 7 546 5400 \N 778 \N \N 2.0 0 2020-06-24 21:54:42.988628 2020-06-24 21:54:42.988628 7 546 5401 \N 646 \N \N 2.0 0 2020-06-24 21:54:42.99497 2020-06-24 21:54:42.99497 7 546 5402 \N 640 \N \N 5.0 0 2020-06-24 21:54:43.001633 2020-06-24 21:54:43.001633 7 546 5403 \N 776 \N \N 3.0 0 2020-06-24 21:54:43.007885 2020-06-24 21:54:43.007885 7 546 5404 \N 780 \N \N 2.0 0 2020-06-24 21:54:43.014502 2020-06-24 21:54:43.014502 7 546 5405 \N 737 \N \N 2.0 0 2020-06-24 21:54:43.021576 2020-06-24 21:54:43.021576 7 546 5406 \N 676 \N \N 2.0 0 2020-06-24 21:54:43.028957 2020-06-24 21:54:43.028957 7 546 5407 \N 866 \N \N 3.0 0 2020-06-24 21:54:43.036246 2020-06-24 21:54:43.036246 7 546 5408 \N 868 \N \N 3.0 0 2020-06-24 21:54:43.043015 2020-06-24 21:54:43.043015 7 546 5409 \N 796 \N \N 5.0 0 2020-06-24 21:54:43.049821 2020-06-24 21:54:43.049821 7 546 5410 \N 945 \N \N 3.0 0 2020-06-24 21:54:43.05745 2020-06-24 21:54:43.05745 7 546 5411 \N 904 \N \N 3.0 0 2020-06-24 21:54:43.064075 2020-06-24 21:54:43.064075 7 546 5412 \N 902 \N \N 3.0 0 2020-06-24 21:54:43.071397 2020-06-24 21:54:43.071397 7 546 5413 \N 901 \N \N 3.0 0 2020-06-24 21:54:43.078114 2020-06-24 21:54:43.078114 7 546 5414 \N 898 \N \N 2.0 0 2020-06-24 21:54:43.084539 2020-06-24 21:54:43.084539 7 546 5415 \N 897 \N \N 3.0 0 2020-06-24 21:54:43.090907 2020-06-24 21:54:43.090907 7 546 5416 \N 896 \N \N 2.0 0 2020-06-24 21:54:43.097441 2020-06-24 21:54:43.097441 7 546 5417 \N 895 \N \N 3.0 0 2020-06-24 21:54:43.103856 2020-06-24 21:54:43.103856 7 546 5418 \N 957 \N \N 1.0 0 2020-06-24 21:54:43.11057 2020-06-24 21:54:43.11057 7 546 5419 \N 944 \N \N 1.0 0 2020-06-24 21:54:43.117206 2020-06-24 21:54:43.117206 7 546 5420 \N 797 \N \N 1.0 0 2020-06-24 21:54:43.123868 2020-06-24 21:54:43.123868 7 546 5421 \N 808 \N \N 1.0 0 2020-06-24 21:54:43.13036 2020-06-24 21:54:43.13036 7 546 5422 \N 972 \N \N 1.0 0 2020-06-24 21:54:43.137416 2020-06-24 21:54:43.137416 7 546 5423 \N 748 \N \N 1.0 0 2020-06-24 21:54:43.146279 2020-06-24 21:54:43.146279 7 546 5424 \N 777 \N \N 1.0 0 2020-06-24 21:54:43.155849 2020-06-24 21:54:43.155849 7 546 5425 \N 743 \N \N 1.0 0 2020-06-24 21:54:43.165211 2020-06-24 21:54:43.165211 7 546 5426 \N 650 \N \N 1.0 0 2020-06-24 21:54:43.174743 2020-06-24 21:54:43.174743 7 546 5427 \N 863 \N \N 1.0 0 2020-06-24 21:54:43.184082 2020-06-24 21:54:43.184082 7 546 5428 \N 856 \N \N 1.0 0 2020-06-24 21:54:43.193545 2020-06-24 21:54:43.193545 7 546 5429 \N 861 \N \N 1.0 0 2020-06-24 21:54:43.203176 2020-06-24 21:54:43.203176 7 546 5430 \N 733 \N \N 1.0 0 2020-06-24 21:54:43.21231 2020-06-24 21:54:43.21231 7 546 5431 \N 860 \N \N 1.0 0 2020-06-24 21:54:43.220546 2020-06-24 21:54:43.220546 7 546 5432 \N 198 \N \N 1.0 0 2020-06-24 21:54:43.227406 2020-06-24 21:54:43.227406 7 546 5433 \N 793 \N \N 1.0 0 2020-06-24 21:54:43.234408 2020-06-24 21:54:43.234408 7 546 5434 \N 954 \N \N 1.0 0 2020-06-24 21:54:43.241217 2020-06-24 21:54:43.241217 7 546 5435 \N 783 \N \N 1.0 0 2020-06-24 21:54:43.247966 2020-06-24 21:54:43.247966 7 546 5436 \N 900 \N \N 1.0 0 2020-06-24 21:54:43.254826 2020-06-24 21:54:43.254826 7 546 5437 \N 888 \N \N 2.0 0 2020-06-24 21:54:43.261852 2020-06-24 21:54:43.261852 7 546 5438 \N 155 \N \N 1.0 0 2020-06-24 21:57:34.657001 2020-06-24 21:57:34.657001 7 545 5439 \N 968 \N \N 1.0 0 2020-06-24 21:58:07.022277 2020-06-24 21:58:07.022277 7 544 5440 \N 719 \N \N 1.0 0 2020-06-24 21:58:23.30824 2020-06-24 21:58:23.30824 7 540 5441 \N 999 \N \N 2.0 0 2020-06-25 00:48:43.097724 2020-06-25 00:48:43.097724 7 553 5442 \N 710 \N \N 1.0 0 2020-06-25 00:48:43.121083 2020-06-25 00:48:43.121083 7 553 5443 \N 701 \N \N 1.0 0 2020-06-25 00:48:43.138951 2020-06-25 00:48:43.138951 7 553 5444 \N 686 \N \N 2.0 0 2020-06-25 00:48:43.159322 2020-06-25 00:48:43.159322 7 553 5445 \N 678 \N \N 1.0 0 2020-06-25 00:48:43.177755 2020-06-25 00:48:43.177755 7 553 5446 \N 661 \N \N 1.0 0 2020-06-25 00:48:43.194643 2020-06-25 00:48:43.194643 7 553 5447 \N 625 \N \N 2.0 0 2020-06-25 00:48:43.211326 2020-06-25 00:48:43.211326 7 553 5448 \N 585 \N \N 1.0 0 2020-06-25 00:48:43.227677 2020-06-25 00:48:43.227677 7 553 5449 \N 502 \N \N 1.0 0 2020-06-25 00:48:43.244577 2020-06-25 00:48:43.244577 7 553 5450 \N 810 \N \N 1.0 0 2020-06-25 00:48:52.705269 2020-06-25 00:48:52.705269 7 552 5451 \N 171 \N \N 3.0 0 2020-06-25 00:48:52.725951 2020-06-25 00:48:52.725951 7 552 5452 \N 236 \N \N 1.0 0 2020-06-25 00:48:52.744245 2020-06-25 00:48:52.744245 7 552 5453 \N 427 \N \N 1.0 0 2020-06-25 00:49:03.033132 2020-06-25 00:49:03.033132 7 551 5454 \N 220 \N \N 1.0 0 2020-06-25 00:49:03.05847 2020-06-25 00:49:03.05847 7 551 5455 \N 391 \N \N 1.0 0 2020-06-25 00:49:03.086155 2020-06-25 00:49:03.086155 7 551 5456 \N 13 \N \N 5.0 0 2020-06-25 00:49:03.109655 2020-06-25 00:49:03.109655 7 551 5457 \N 10 \N \N 1.0 0 2020-06-25 00:49:03.133443 2020-06-25 00:49:03.133443 7 551 5458 \N 408 \N \N 3.0 0 2020-06-25 00:49:03.15678 2020-06-25 00:49:03.15678 7 551 5459 \N 1019 \N \N 3.0 0 2020-06-25 00:49:03.182806 2020-06-25 00:49:03.182806 7 551 5460 \N 1018 \N \N 3.0 0 2020-06-25 00:49:03.209617 2020-06-25 00:49:03.209617 7 551 5461 \N 690 \N \N 1.0 0 2020-06-25 00:49:03.234826 2020-06-25 00:49:03.234826 7 551 5462 \N 680 \N \N 1.0 0 2020-06-25 00:49:03.265839 2020-06-25 00:49:03.265839 7 551 5463 \N 329 \N \N 1.0 0 2020-06-25 00:49:03.290148 2020-06-25 00:49:03.290148 7 551 5464 \N 1014 \N \N 1.0 0 2020-06-25 00:49:03.313212 2020-06-25 00:49:03.313212 7 551 5465 \N 80 \N \N 2.0 0 2020-06-25 00:49:15.514091 2020-06-25 00:49:15.514091 7 550 5466 \N 77 \N \N 1.0 0 2020-06-25 00:49:15.535761 2020-06-25 00:49:15.535761 7 550 5467 \N 92 \N \N 1.0 0 2020-06-25 00:49:15.557442 2020-06-25 00:49:15.557442 7 550 5468 \N 62 \N \N 2.0 0 2020-06-25 00:49:15.576705 2020-06-25 00:49:15.576705 7 550 5469 \N 147 \N \N 1.0 0 2020-06-25 00:49:15.597408 2020-06-25 00:49:15.597408 7 550 5470 \N 151 \N \N 1.0 0 2020-06-25 00:49:15.618802 2020-06-25 00:49:15.618802 7 550 5471 \N 152 \N \N 5.0 0 2020-06-25 00:49:15.6436 2020-06-25 00:49:15.6436 7 550 5472 \N 507 \N \N 1.0 0 2020-06-25 00:49:15.662004 2020-06-25 00:49:15.662004 7 550 5473 \N 949 \N \N 8.0 0 2020-06-25 00:49:15.685377 2020-06-25 00:49:15.685377 7 550 5474 \N 950 \N \N 1.0 0 2020-06-25 00:49:15.707691 2020-06-25 00:49:15.707691 7 550 5475 \N 993 \N \N 5.0 0 2020-06-25 00:49:15.730475 2020-06-25 00:49:15.730475 7 550 5476 \N 1003 \N \N 3.0 0 2020-06-25 00:49:15.755322 2020-06-25 00:49:15.755322 7 550 5477 \N 1010 \N \N 6.0 0 2020-06-25 00:49:15.779804 2020-06-25 00:49:15.779804 7 550 5478 \N 1011 \N \N 2.0 0 2020-06-25 00:49:15.802286 2020-06-25 00:49:15.802286 7 550 5479 \N 1012 \N \N 4.0 0 2020-06-25 00:49:15.823884 2020-06-25 00:49:15.823884 7 550 5480 \N 341 \N \N 1.0 0 2020-06-25 00:49:28.071997 2020-06-25 00:49:28.071997 7 547 5481 \N 369 \N \N 26.0 0 2020-06-25 00:49:28.090994 2020-06-25 00:49:28.090994 7 547 5482 \N 299 \N \N 1.0 0 2020-06-25 00:49:28.10917 2020-06-25 00:49:28.10917 7 547 5483 \N 109 \N \N 3.0 0 2020-06-25 00:49:28.129211 2020-06-25 00:49:28.129211 7 547 5484 \N 302 \N \N 1.0 0 2020-06-25 00:49:28.150129 2020-06-25 00:49:28.150129 7 547 5485 \N 300 \N \N 1.0 0 2020-06-25 00:49:28.172361 2020-06-25 00:49:28.172361 7 547 5486 \N 643 \N \N 1.0 0 2020-06-25 00:49:28.198112 2020-06-25 00:49:28.198112 7 547 5487 \N 645 \N \N 1.0 0 2020-06-25 00:49:28.220142 2020-06-25 00:49:28.220142 7 547 5488 \N 60 \N \N 6.0 0 2020-06-25 00:49:28.23767 2020-06-25 00:49:28.23767 7 547 5489 \N 298 \N \N 3.0 0 2020-06-25 00:49:28.262927 2020-06-25 00:49:28.262927 7 547 5490 \N 79 \N \N 3.0 0 2020-06-25 00:49:28.281425 2020-06-25 00:49:28.281425 7 547 5491 \N 294 \N \N 2.0 0 2020-06-25 00:49:28.302887 2020-06-25 00:49:28.302887 7 547 5492 \N 78 \N \N 2.0 0 2020-06-25 00:49:28.325665 2020-06-25 00:49:28.325665 7 547 5493 \N 278 \N \N 1.0 0 2020-06-25 00:49:28.346144 2020-06-25 00:49:28.346144 7 547 5494 \N 512 \N \N 2.0 0 2020-06-25 00:49:28.364635 2020-06-25 00:49:28.364635 7 547 5495 \N 513 \N \N 3.0 0 2020-06-25 00:49:28.385952 2020-06-25 00:49:28.385952 7 547 5496 \N 600 \N \N 1.0 0 2020-06-25 00:49:28.409882 2020-06-25 00:49:28.409882 7 547 5497 \N 618 \N \N 3.0 0 2020-06-25 00:49:28.434253 2020-06-25 00:49:28.434253 7 547 5498 \N 619 \N \N 3.0 0 2020-06-25 00:49:28.451657 2020-06-25 00:49:28.451657 7 547 5499 \N 620 \N \N 2.0 0 2020-06-25 00:49:28.469526 2020-06-25 00:49:28.469526 7 547 5500 \N 663 \N \N 4.0 0 2020-06-25 00:49:28.487038 2020-06-25 00:49:28.487038 7 547 5501 \N 571 \N \N 2.0 0 2020-06-25 00:49:42.999396 2020-06-25 00:49:42.999396 7 549 5502 \N 181 \N \N 2.0 0 2020-06-25 00:49:43.016787 2020-06-25 00:49:43.016787 7 549 5503 \N 422 \N \N 1.0 0 2020-06-25 00:49:43.036918 2020-06-25 00:49:43.036918 7 549 5504 \N 177 \N \N 2.0 0 2020-06-25 00:49:43.055891 2020-06-25 00:49:43.055891 7 549 5505 \N 575 \N \N 2.0 0 2020-06-25 00:49:43.073525 2020-06-25 00:49:43.073525 7 549 5506 \N 574 \N \N 2.0 0 2020-06-25 00:49:43.089949 2020-06-25 00:49:43.089949 7 549 5507 \N 692 \N \N 1.0 0 2020-06-25 00:49:43.107206 2020-06-25 00:49:43.107206 7 549 5508 \N 421 \N \N 1.0 0 2020-06-25 00:49:43.127097 2020-06-25 00:49:43.127097 7 549 5509 \N 163 \N \N 1.0 0 2020-06-25 00:49:43.143562 2020-06-25 00:49:43.143562 7 549 5510 \N 160 \N \N 1.0 0 2020-06-25 00:49:43.159751 2020-06-25 00:49:43.159751 7 549 5511 \N 1000 \N \N 3.0 0 2020-06-25 00:49:43.180816 2020-06-25 00:49:43.180816 7 549 5512 \N 558 \N \N 4.0 0 2020-06-25 00:49:43.198769 2020-06-25 00:49:43.198769 7 549 5513 \N 1005 \N \N 5.0 0 2020-06-25 00:49:43.219585 2020-06-25 00:49:43.219585 7 549 5514 \N 1004 \N \N 5.0 0 2020-06-25 00:49:43.240935 2020-06-25 00:49:43.240935 7 549 5515 \N 791 \N \N 2.0 0 2020-06-25 00:49:43.2584 2020-06-25 00:49:43.2584 7 549 5516 \N 789 \N \N 5.0 0 2020-06-25 00:49:43.279085 2020-06-25 00:49:43.279085 7 549 5517 \N 397 \N \N 2.0 0 2020-06-25 00:49:43.299423 2020-06-25 00:49:43.299423 7 549 5518 \N 435 \N \N 2.0 0 2020-06-25 00:49:43.316282 2020-06-25 00:49:43.316282 7 549 5519 \N 323 \N \N 2.0 0 2020-06-25 00:49:56.332555 2020-06-25 00:49:56.332555 7 548 5520 \N 320 \N \N 2.0 0 2020-06-25 00:49:56.350253 2020-06-25 00:49:56.350253 7 548 5521 \N 319 \N \N 2.0 0 2020-06-25 00:49:56.371421 2020-06-25 00:49:56.371421 7 548 5522 \N 316 \N \N 4.0 0 2020-06-25 00:49:56.393236 2020-06-25 00:49:56.393236 7 548 5523 \N 1016 \N \N 2.0 0 2020-06-25 00:49:56.416756 2020-06-25 00:49:56.416756 7 548 5524 \N 803 \N \N 6.0 0 2020-06-25 00:49:56.436117 2020-06-25 00:49:56.436117 7 548 5525 \N 798 \N \N 2.0 0 2020-06-25 00:49:56.458296 2020-06-25 00:49:56.458296 7 548 5526 \N 761 \N \N 2.0 0 2020-06-25 00:49:56.477953 2020-06-25 00:49:56.477953 7 548 5527 \N 713 \N \N 6.0 0 2020-06-25 00:49:56.496932 2020-06-25 00:49:56.496932 7 548 5528 \N 532 \N \N 1.0 0 2020-06-25 00:49:56.515144 2020-06-25 00:49:56.515144 7 548 5529 \N 328 \N \N 1.0 0 2020-06-25 00:49:56.53735 2020-06-25 00:49:56.53735 7 548 5530 \N 320 \N \N 1.0 0 2020-06-25 00:49:56.558671 2020-06-25 00:49:56.558671 7 548 5531 \N 125 \N \N 1.0 0 2020-06-25 00:49:56.577827 2020-06-25 00:49:56.577827 7 548 5532 \N 309 \N \N 1.0 0 2020-06-25 00:49:56.599825 2020-06-25 00:49:56.599825 7 548 5533 \N 799 \N \N 1.0 0 2020-06-25 00:49:56.623132 2020-06-25 00:49:56.623132 7 548 5534 \N 688 \N \N 2.0 0 2020-06-25 00:49:56.641516 2020-06-25 00:49:56.641516 7 548 5535 \N 665 \N \N 2.0 0 2020-06-25 00:49:56.661148 2020-06-25 00:49:56.661148 7 548 5536 \N 671 \N \N 4.0 0 2020-06-25 00:49:56.679782 2020-06-25 00:49:56.679782 7 548 5537 \N 681 \N \N 3.0 0 2020-06-25 00:49:56.701218 2020-06-25 00:49:56.701218 7 548 5538 \N 669 \N \N 1.0 0 2020-06-25 00:49:56.72082 2020-06-25 00:49:56.72082 7 548 5539 \N 664 \N \N 6.0 0 2020-06-25 00:49:56.740327 2020-06-25 00:49:56.740327 7 548 5540 \N 331 \N \N 2.0 0 2020-06-25 00:49:56.764279 2020-06-25 00:49:56.764279 7 548 5541 \N 529 \N \N 5.0 0 2020-06-25 00:49:56.795994 2020-06-25 00:49:56.795994 7 548 5542 \N 632 \N \N 2.0 0 2020-06-25 00:49:56.823479 2020-06-25 00:49:56.823479 7 548 5543 \N 673 \N \N 2.0 0 2020-06-25 01:08:21.736397 2020-06-25 01:08:21.736397 7 554 5544 \N 788 \N \N 2.0 0 2020-06-25 01:08:21.757537 2020-06-25 01:08:21.757537 7 554 5545 \N 672 \N \N 6.0 0 2020-06-25 01:08:21.776455 2020-06-25 01:08:21.776455 7 554 5546 \N 201 \N \N 2.0 0 2020-06-25 01:08:21.795609 2020-06-25 01:08:21.795609 7 554 5547 \N 423 \N \N 2.0 0 2020-06-25 01:08:21.81775 2020-06-25 01:08:21.81775 7 554 5548 \N 701 \N \N 1.0 0 2020-06-25 01:08:21.835877 2020-06-25 01:08:21.835877 7 554 5549 \N 629 \N \N 2.0 0 2020-06-25 01:30:32.94547 2020-06-25 01:30:32.94547 7 556 5550 \N 1096 \N \N 1.0 0 2020-06-25 01:43:00.435676 2020-06-25 01:43:00.435676 7 566 5551 \N 1092 \N \N 1.0 0 2020-06-25 01:43:00.457382 2020-06-25 01:43:00.457382 7 566 5552 \N 934 \N \N 1.0 0 2020-06-25 01:43:00.477987 2020-06-25 01:43:00.477987 7 566 5553 \N 1095 \N \N 1.0 0 2020-06-25 01:43:18.167961 2020-06-25 01:43:18.167961 7 565 5554 \N 1100 \N \N 1.0 0 2020-06-25 01:43:18.185518 2020-06-25 01:43:18.185518 7 565 5555 \N 1077 \N \N 1.0 0 2020-06-25 01:43:18.203578 2020-06-25 01:43:18.203578 7 565 5556 \N 1067 \N \N 1.0 0 2020-06-25 01:43:18.225404 2020-06-25 01:43:18.225404 7 565 5557 \N 1047 \N \N 1.0 0 2020-06-25 01:43:18.243408 2020-06-25 01:43:18.243408 7 565 5558 \N 1033 \N \N 1.0 0 2020-06-25 01:43:18.262144 2020-06-25 01:43:18.262144 7 565 5559 \N 1032 \N \N 1.0 0 2020-06-25 01:43:18.283167 2020-06-25 01:43:18.283167 7 565 5560 \N 1028 \N \N 1.0 0 2020-06-25 01:43:18.306243 2020-06-25 01:43:18.306243 7 565 5561 \N 926 \N \N 1.0 0 2020-06-25 01:43:18.355766 2020-06-25 01:43:18.355766 7 565 5562 \N 913 \N \N 2.0 0 2020-06-25 01:43:18.374298 2020-06-25 01:43:18.374298 7 565 5563 \N 864 \N 2473 1.0 1 2020-06-25 18:40:12.381414 2020-06-25 18:40:12.381414 0 \N 5564 \N 367 \N \N 39.0 0 2020-06-25 18:49:54.544764 2020-06-25 18:49:54.544764 7 563 5565 \N 181 \N 2474 1.0 1 2020-06-25 18:56:00.113076 2020-06-25 18:56:00.113076 0 \N 5566 \N 571 \N 2474 1.0 1 2020-06-25 18:56:00.141664 2020-06-25 18:56:00.141664 0 \N 5567 \N 571 \N 2474 1.0 0 2020-06-25 18:56:05.466863 2020-06-25 18:56:05.466863 3 \N 5568 \N 181 \N 2474 1.0 0 2020-06-25 18:56:05.496137 2020-06-25 18:56:05.496137 3 \N 5569 \N 897 \N \N 3.0 0 2020-06-25 19:05:25.908997 2020-06-25 19:05:25.908997 7 571 5570 \N 895 \N \N 3.0 0 2020-06-25 19:05:25.918463 2020-06-25 19:05:25.918463 7 571 5571 \N 959 \N \N 2.0 0 2020-06-25 19:05:41.366724 2020-06-25 19:05:41.366724 7 570 5572 \N 957 \N \N 3.0 0 2020-06-25 19:05:41.374279 2020-06-25 19:05:41.374279 7 570 5573 \N 793 \N \N 2.0 0 2020-06-25 19:05:41.381588 2020-06-25 19:05:41.381588 7 570 5574 \N 871 \N \N 6.0 0 2020-06-25 19:05:41.388996 2020-06-25 19:05:41.388996 7 570 5575 \N 870 \N \N 2.0 0 2020-06-25 19:05:41.395895 2020-06-25 19:05:41.395895 7 570 5576 \N 954 \N \N 6.0 0 2020-06-25 19:05:57.414802 2020-06-25 19:05:57.414802 7 559 5577 \N 868 \N \N 2.0 0 2020-06-25 19:05:57.422864 2020-06-25 19:05:57.422864 7 559 5578 \N 783 \N \N 1.0 0 2020-06-25 19:05:57.430724 2020-06-25 19:05:57.430724 7 559 5579 \N 198 \N \N 1.0 0 2020-06-25 19:08:01.438725 2020-06-25 19:08:01.438725 7 575 5580 \N 788 \N \N 1.0 0 2020-06-25 19:08:27.270339 2020-06-25 19:08:27.270339 7 574 5581 \N 160 \N \N 1.0 0 2020-06-25 19:08:27.288595 2020-06-25 19:08:27.288595 7 574 5582 \N 163 \N \N 1.0 0 2020-06-25 19:08:27.306479 2020-06-25 19:08:27.306479 7 574 5583 \N 1092 \N \N 1.0 0 2020-06-25 19:08:27.324217 2020-06-25 19:08:27.324217 7 574 5584 \N 81 \N \N 1.0 0 2020-06-25 19:08:27.343217 2020-06-25 19:08:27.343217 7 574 5585 \N 81 \N \N 1.0 0 2020-06-25 19:08:27.362067 2020-06-25 19:08:27.362067 7 574 5586 \N 1001 \N \N 5.0 0 2020-06-25 19:08:38.686778 2020-06-25 19:08:38.686778 7 568 5587 \N 496 \N \N 4.0 0 2020-06-25 19:08:53.224996 2020-06-25 19:08:53.224996 7 567 5588 \N 668 \N \N 18.0 0 2020-06-25 19:40:06.49934 2020-06-25 19:40:06.49934 7 582 5589 \N 476 \N \N 11.0 0 2020-06-25 19:40:21.155792 2020-06-25 19:40:21.155792 7 581 5590 \N 644 \N \N 1.0 0 2020-06-25 19:41:00.065382 2020-06-25 19:41:00.065382 7 580 5591 \N 394 \N \N 1.0 0 2020-06-25 19:41:24.957067 2020-06-25 19:41:24.957067 7 578 5592 \N 508 \N \N 2.0 0 2020-06-25 19:41:24.976857 2020-06-25 19:41:24.976857 7 578 5593 \N 301 \N \N 1.0 0 2020-06-25 19:41:24.998985 2020-06-25 19:41:24.998985 7 578 5594 \N 297 \N \N 1.0 0 2020-06-25 19:41:25.051116 2020-06-25 19:41:25.051116 7 578 5595 \N 281 \N \N 4.0 0 2020-06-25 19:41:25.073847 2020-06-25 19:41:25.073847 7 578 5596 \N 430 \N \N 1.0 0 2020-06-25 19:41:47.30406 2020-06-25 19:41:47.30406 7 577 5597 \N 119 \N 2475 1.0 1 2020-06-25 20:02:46.07709 2020-06-25 20:02:46.07709 0 \N 5598 \N 88 \N 2475 1.0 1 2020-06-25 20:02:46.103416 2020-06-25 20:02:46.103416 0 \N 5599 \N 229 \N 2475 1.0 1 2020-06-25 20:02:46.129711 2020-06-25 20:02:46.129711 0 \N 5600 \N 320 \N 2475 1.0 1 2020-06-25 20:02:46.169933 2020-06-25 20:02:46.169933 0 \N 5601 \N 89 \N 2475 1.0 1 2020-06-25 20:02:46.198066 2020-06-25 20:02:46.198066 0 \N 5602 \N 618 \N 2476 1.0 1 2020-06-25 20:04:07.263577 2020-06-25 20:04:07.263577 0 \N 5603 \N 1019 \N 2476 2.0 1 2020-06-25 20:04:07.287563 2020-06-25 20:04:07.287563 0 \N 5604 \N 977 \N 2477 1.0 1 2020-06-25 21:00:47.160997 2020-06-25 21:00:47.160997 0 \N 5605 \N 699 \N 2478 1.0 1 2020-06-25 21:01:41.495206 2020-06-25 21:01:41.495206 0 \N 5606 \N 1075 \N 2478 1.0 1 2020-06-25 21:01:41.517833 2020-06-25 21:01:41.517833 0 \N 5607 \N 600 \N 2479 1.0 1 2020-06-25 21:22:23.533362 2020-06-25 21:22:23.533362 0 \N 5608 \N 1118 303 \N 6.0 0 2020-06-25 21:30:29.005673 2020-06-25 21:30:29.005673 1 \N 5609 \N 264 \N 2480 1.0 1 2020-06-25 21:35:27.221179 2020-06-25 21:35:27.221179 0 \N 5610 \N 484 \N 2480 1.0 1 2020-06-25 21:35:27.249096 2020-06-25 21:35:27.249096 0 \N 5611 \N 539 \N 2481 1.0 1 2020-06-26 18:54:37.519667 2020-06-26 18:54:37.519667 0 \N 5612 \N 539 \N 2481 1.0 0 2020-06-26 18:54:47.081736 2020-06-26 18:54:47.081736 3 \N 5613 \N 539 \N 2482 1.0 1 2020-06-26 18:55:14.635138 2020-06-26 18:55:14.635138 0 \N 5614 \N 480 \N 2483 1.0 1 2020-06-26 18:59:05.469775 2020-06-26 18:59:05.469775 0 \N 5615 \N 449 \N 2483 1.0 1 2020-06-26 18:59:05.498322 2020-06-26 18:59:05.498322 0 \N 5616 \N 495 \N 2483 1.0 1 2020-06-26 18:59:05.521982 2020-06-26 18:59:05.521982 0 \N 5617 \N 495 \N 2483 1.0 0 2020-06-26 18:59:10.385493 2020-06-26 18:59:10.385493 3 \N 5618 \N 449 \N 2483 1.0 0 2020-06-26 18:59:10.407715 2020-06-26 18:59:10.407715 3 \N 5619 \N 480 \N 2483 1.0 0 2020-06-26 18:59:10.429524 2020-06-26 18:59:10.429524 3 \N 5620 \N 449 \N 2484 1.0 1 2020-06-26 19:00:37.372541 2020-06-26 19:00:37.372541 0 \N 5621 \N 480 \N 2484 1.0 1 2020-06-26 19:00:37.397392 2020-06-26 19:00:37.397392 0 \N 5622 \N 495 \N 2484 1.0 1 2020-06-26 19:00:37.421328 2020-06-26 19:00:37.421328 0 \N 5623 \N 352 \N \N 1.0 0 2020-06-26 19:03:46.625512 2020-06-26 19:03:46.625512 7 590 5624 \N 697 \N \N 6.0 0 2020-06-26 19:03:59.123479 2020-06-26 19:03:59.123479 7 589 5625 \N 693 \N \N 3.0 0 2020-06-26 19:03:59.143848 2020-06-26 19:03:59.143848 7 589 5626 \N 268 \N \N 1.0 0 2020-06-26 19:04:10.95853 2020-06-26 19:04:10.95853 7 588 5627 \N 270 \N \N 1.0 0 2020-06-26 19:04:10.975035 2020-06-26 19:04:10.975035 7 588 5628 \N 264 \N \N 1.0 0 2020-06-26 19:04:19.734835 2020-06-26 19:04:19.734835 7 587 5629 \N 354 \N 2485 1.0 1 2020-06-26 19:08:16.182447 2020-06-26 19:08:16.182447 0 \N 5630 \N 697 \N 2485 1.0 1 2020-06-26 19:08:16.207413 2020-06-26 19:08:16.207413 0 \N 5631 \N 181 \N 2485 1.0 1 2020-06-26 19:08:16.233621 2020-06-26 19:08:16.233621 0 \N 5632 \N 422 \N 2485 1.0 1 2020-06-26 19:08:16.25946 2020-06-26 19:08:16.25946 0 \N 5633 \N 677 \N 2485 1.0 1 2020-06-26 19:08:16.286936 2020-06-26 19:08:16.286936 0 \N 5634 \N 1015 \N 2485 1.0 1 2020-06-26 19:08:16.312704 2020-06-26 19:08:16.312704 0 \N 5635 \N 142 \N 2485 1.0 1 2020-06-26 19:08:16.336285 2020-06-26 19:08:16.336285 0 \N 5636 \N 297 \N 2485 1.0 1 2020-06-26 19:08:16.359664 2020-06-26 19:08:16.359664 0 \N 5637 \N 301 \N 2485 1.0 1 2020-06-26 19:08:16.38342 2020-06-26 19:08:16.38342 0 \N 5638 \N 512 \N 2485 1.0 1 2020-06-26 19:08:16.406237 2020-06-26 19:08:16.406237 0 \N 5639 \N 885 \N \N 3.0 0 2020-06-26 19:14:49.570133 2020-06-26 19:14:49.570133 7 586 5640 \N 754 \N \N 4.0 0 2020-06-26 19:14:49.591809 2020-06-26 19:14:49.591809 7 586 5641 \N 985 \N \N 5.0 0 2020-06-26 19:14:49.613135 2020-06-26 19:14:49.613135 7 586 5642 \N 987 \N \N 3.0 0 2020-06-26 19:14:49.634313 2020-06-26 19:14:49.634313 7 586 5643 \N 990 \N \N 4.0 0 2020-06-26 19:14:49.656609 2020-06-26 19:14:49.656609 7 586 5644 \N 981 \N \N 2.0 0 2020-06-26 19:15:02.837523 2020-06-26 19:15:02.837523 7 584 5645 \N 1022 \N \N 5.0 0 2020-06-26 19:15:02.85701 2020-06-26 19:15:02.85701 7 584 5646 \N 1001 \N \N 5.0 0 2020-06-26 19:15:02.875808 2020-06-26 19:15:02.875808 7 584 5647 \N 920 \N \N 1.0 0 2020-06-26 19:15:37.621359 2020-06-26 19:15:37.621359 7 576 5648 \N 1091 \N \N 1.0 0 2020-06-26 19:15:44.823913 2020-06-26 19:15:44.823913 7 560 5649 \N 1099 \N \N 1.0 0 2020-06-26 19:15:44.841592 2020-06-26 19:15:44.841592 7 560 5650 \N 1053 \N \N 1.0 0 2020-06-26 19:15:51.549977 2020-06-26 19:15:51.549977 7 562 5651 \N 635 \N \N 5.0 0 2020-06-26 19:15:57.767709 2020-06-26 19:15:57.767709 7 555 5652 \N 1100 \N \N 1.0 0 2020-06-26 19:16:05.43448 2020-06-26 19:16:05.43448 7 557 5653 \N 1026 \N \N 1.0 0 2020-06-26 19:16:05.454452 2020-06-26 19:16:05.454452 7 557 5654 \N 1097 \N \N 1.0 0 2020-06-26 19:16:05.470129 2020-06-26 19:16:05.470129 7 557 5655 \N 1096 \N \N 1.0 0 2020-06-26 19:16:05.48981 2020-06-26 19:16:05.48981 7 557 5656 \N 1067 \N \N 1.0 0 2020-06-26 19:16:05.508515 2020-06-26 19:16:05.508515 7 557 5657 \N 1089 \N \N 1.0 0 2020-06-26 19:16:05.527762 2020-06-26 19:16:05.527762 7 557 5658 \N 1029 \N \N 2.0 0 2020-06-26 19:16:11.350559 2020-06-26 19:16:11.350559 7 558 5659 \N 915 \N \N 1.0 0 2020-06-26 19:16:11.371501 2020-06-26 19:16:11.371501 7 558 5660 \N 1026 \N \N 3.0 0 2020-06-26 19:16:11.38896 2020-06-26 19:16:11.38896 7 558 5661 \N 1027 \N \N 1.0 0 2020-06-26 19:16:11.410435 2020-06-26 19:16:11.410435 7 558 5662 \N 928 \N \N 1.0 0 2020-06-26 19:16:11.427925 2020-06-26 19:16:11.427925 7 558 5663 \N 981 \N \N 5.0 0 2020-06-26 19:16:16.747735 2020-06-26 19:16:16.747735 7 573 5664 \N 202 \N \N 2.0 0 2020-06-26 19:16:22.114689 2020-06-26 19:16:22.114689 7 572 5665 \N 557 \N \N 2.0 0 2020-06-26 19:16:22.135516 2020-06-26 19:16:22.135516 7 572 5666 \N 997 \N \N 3.0 0 2020-06-26 19:16:27.721219 2020-06-26 19:16:27.721219 7 569 5667 \N 1008 \N \N 4.0 0 2020-06-26 19:16:27.742338 2020-06-26 19:16:27.742338 7 569 5668 \N 1009 \N \N 4.0 0 2020-06-26 19:16:33.169585 2020-06-26 19:16:33.169585 7 564 5669 \N 1017 \N \N 4.0 0 2020-06-26 19:16:40.307922 2020-06-26 19:16:40.307922 7 561 5670 \N 1007 \N \N 5.0 0 2020-06-26 19:16:40.327857 2020-06-26 19:16:40.327857 7 561 5671 \N 1006 \N \N 5.0 0 2020-06-26 19:16:40.34518 2020-06-26 19:16:40.34518 7 561 5672 \N 682 \N \N 3.0 0 2020-06-26 19:16:40.362392 2020-06-26 19:16:40.362392 7 561 5673 \N 520 \N \N 4.0 0 2020-06-26 19:16:40.382398 2020-06-26 19:16:40.382398 7 561 5674 \N 804 \N \N 5.0 0 2020-06-26 19:16:40.401456 2020-06-26 19:16:40.401456 7 561 5675 \N 1003 \N \N 3.0 0 2020-06-26 19:16:40.421499 2020-06-26 19:16:40.421499 7 561 5676 \N 401 \N \N 1.0 0 2020-06-26 19:16:40.441112 2020-06-26 19:16:40.441112 7 561 5677 \N 683 \N 2486 1.0 1 2020-06-26 19:19:47.071083 2020-06-26 19:19:47.071083 0 \N 5678 \N 284 \N 2486 1.0 1 2020-06-26 19:19:47.09859 2020-06-26 19:19:47.09859 0 \N 5679 \N 511 \N 2486 1.0 1 2020-06-26 19:19:47.124819 2020-06-26 19:19:47.124819 0 \N 5680 \N 873 \N 2486 1.0 1 2020-06-26 19:19:47.154244 2020-06-26 19:19:47.154244 0 \N 5681 \N 213 \N 2486 1.0 1 2020-06-26 19:19:47.17926 2020-06-26 19:19:47.17926 0 \N 5682 \N 754 \N 2486 1.0 1 2020-06-26 19:19:47.203811 2020-06-26 19:19:47.203811 0 \N 5683 \N 419 \N 2486 1.0 1 2020-06-26 19:19:47.245177 2020-06-26 19:19:47.245177 0 \N 5684 \N 520 \N 2486 1.0 1 2020-06-26 19:19:47.270927 2020-06-26 19:19:47.270927 0 \N 5685 \N 1118 \N \N 7.0 0 2020-06-26 20:58:05.938508 2020-06-26 20:58:05.938508 7 591 5686 \N 1118 \N 2487 1.0 1 2020-06-26 20:58:34.688541 2020-06-26 20:58:34.688541 0 \N 5687 \N 989 \N \N 3.0 0 2020-07-01 18:34:29.068547 2020-07-01 18:34:29.068547 7 592 5688 \N 988 \N \N 6.0 0 2020-07-01 18:34:29.093547 2020-07-01 18:34:29.093547 7 592 5689 \N 975 \N \N 3.0 0 2020-07-01 18:34:29.118587 2020-07-01 18:34:29.118587 7 592 5690 \N 713 \N \N 6.0 0 2020-07-01 18:34:29.13986 2020-07-01 18:34:29.13986 7 592 5691 \N 565 \N 2488 1.0 1 2020-07-01 19:34:29.457603 2020-07-01 19:34:29.457603 0 \N 5692 \N 298 \N 2489 1.0 1 2020-07-01 19:35:33.397013 2020-07-01 19:35:33.397013 0 \N 5693 \N 789 \N 2489 1.0 1 2020-07-01 19:35:33.422246 2020-07-01 19:35:33.422246 0 \N 5694 \N 155 \N \N 2.0 0 2020-07-01 21:25:09.486694 2020-07-01 21:25:09.486694 7 597 5695 \N 677 \N \N 3.0 0 2020-07-01 22:11:57.194241 2020-07-01 22:11:57.194241 7 598 5696 \N 351 \N \N 1.0 0 2020-07-01 22:42:44.52337 2020-07-01 22:42:44.52337 7 596 5697 \N 864 \N \N 1.0 0 2020-07-01 22:48:09.724399 2020-07-01 22:48:09.724399 7 595 5698 \N 71 \N \N 1.0 0 2020-07-01 22:48:20.153995 2020-07-01 22:48:20.153995 7 594 5699 \N 233 \N \N 1.0 0 2020-07-01 22:48:35.616911 2020-07-01 22:48:35.616911 7 593 5700 \N 235 \N \N 1.0 0 2020-07-01 22:48:35.634688 2020-07-01 22:48:35.634688 7 593 5701 \N 231 \N \N 3.0 0 2020-07-01 22:48:35.651933 2020-07-01 22:48:35.651933 7 593 5702 \N 970 \N \N 3.0 0 2020-07-01 22:48:35.672945 2020-07-01 22:48:35.672945 7 593 5703 \N 217 \N \N 4.0 0 2020-07-01 22:48:35.689915 2020-07-01 22:48:35.689915 7 593 5704 \N 84 \N \N 2.0 0 2020-07-01 22:48:35.706557 2020-07-01 22:48:35.706557 7 593 5705 \N 66 \N \N 5.0 0 2020-07-01 22:48:35.723962 2020-07-01 22:48:35.723962 7 593 5706 \N 64 \N \N 2.0 0 2020-07-01 22:48:35.741603 2020-07-01 22:48:35.741603 7 593 5707 \N 69 \N \N 3.0 0 2020-07-01 22:48:35.761112 2020-07-01 22:48:35.761112 7 593 5708 \N 90 \N \N 1.0 0 2020-07-01 22:48:35.780432 2020-07-01 22:48:35.780432 7 593 5709 \N 208 \N \N 4.0 0 2020-07-01 22:48:35.799742 2020-07-01 22:48:35.799742 7 593 5710 \N 113 \N \N 1.0 0 2020-07-01 22:48:35.847833 2020-07-01 22:48:35.847833 7 593 5711 \N 94 \N \N 1.0 0 2020-07-01 22:48:35.866333 2020-07-01 22:48:35.866333 7 593 5712 \N 212 \N \N 1.0 0 2020-07-01 22:48:35.885048 2020-07-01 22:48:35.885048 7 593 5713 \N 246 \N \N 2.0 0 2020-07-01 22:48:35.90453 2020-07-01 22:48:35.90453 7 593 5714 \N 206 \N \N 4.0 0 2020-07-01 22:48:35.923572 2020-07-01 22:48:35.923572 7 593 5715 \N 636 \N \N 1.0 0 2020-07-01 22:48:35.942031 2020-07-01 22:48:35.942031 7 593 5716 \N 590 \N \N 7.0 0 2020-07-01 22:48:35.959979 2020-07-01 22:48:35.959979 7 593 5717 \N 524 \N \N 5.0 0 2020-07-01 22:48:35.981678 2020-07-01 22:48:35.981678 7 593 5718 \N 275 \N \N 1.0 0 2020-07-01 22:48:36.003566 2020-07-01 22:48:36.003566 7 593 5719 \N 72 \N \N 3.0 0 2020-07-01 22:48:36.022056 2020-07-01 22:48:36.022056 7 593 5720 \N 141 \N \N 3.0 0 2020-07-01 22:48:36.039677 2020-07-01 22:48:36.039677 7 593 5721 \N 479 \N \N 4.0 0 2020-07-01 22:48:36.060724 2020-07-01 22:48:36.060724 7 593 5722 \N 537 \N \N 5.0 0 2020-07-01 22:48:36.082384 2020-07-01 22:48:36.082384 7 593 5723 \N 499 \N 2490 1.0 1 2020-07-01 23:03:09.03876 2020-07-01 23:03:09.03876 0 \N 5724 \N 528 \N 2490 1.0 1 2020-07-01 23:03:09.066948 2020-07-01 23:03:09.066948 0 \N 5725 \N 528 \N 2490 1.0 0 2020-07-01 23:03:36.344424 2020-07-01 23:03:36.344424 3 \N 5726 \N 499 \N 2490 1.0 0 2020-07-01 23:03:36.37093 2020-07-01 23:03:36.37093 3 \N 5727 \N 499 \N 2491 1.0 1 2020-07-01 23:04:17.048149 2020-07-01 23:04:17.048149 0 \N 5728 \N 528 \N 2491 1.0 1 2020-07-01 23:04:17.0718 2020-07-01 23:04:17.0718 0 \N 5729 \N 1126 \N \N 7.0 0 2020-07-02 18:03:53.505546 2020-07-02 18:03:53.505546 7 600 5730 \N 1122 \N \N 5.0 0 2020-07-02 18:03:53.527682 2020-07-02 18:03:53.527682 7 600 5731 \N 833 \N \N 1.0 0 2020-07-02 18:04:06.440409 2020-07-02 18:04:06.440409 7 602 5732 \N 666 \N \N 7.0 0 2020-07-02 18:04:06.459693 2020-07-02 18:04:06.459693 7 602 5733 \N 699 \N \N 4.0 0 2020-07-02 18:04:06.477064 2020-07-02 18:04:06.477064 7 602 5734 \N 551 \N \N 4.0 0 2020-07-02 18:04:06.495426 2020-07-02 18:04:06.495426 7 602 5735 \N 395 \N \N 5.0 0 2020-07-02 18:04:06.513638 2020-07-02 18:04:06.513638 7 602 5736 \N 581 \N \N 5.0 0 2020-07-02 18:04:06.531042 2020-07-02 18:04:06.531042 7 602 5737 \N 1001 \N \N 5.0 0 2020-07-02 18:04:06.549345 2020-07-02 18:04:06.549345 7 602 5738 \N 657 \N \N 1.0 0 2020-07-02 18:04:06.570677 2020-07-02 18:04:06.570677 7 602 5739 \N 673 \N \N 2.0 0 2020-07-02 18:04:06.589396 2020-07-02 18:04:06.589396 7 602 5740 \N 713 \N \N 6.0 0 2020-07-02 18:04:06.608761 2020-07-02 18:04:06.608761 7 602 5741 \N 578 \N \N 4.0 0 2020-07-02 18:04:06.62658 2020-07-02 18:04:06.62658 7 602 5742 \N 637 \N \N 4.0 0 2020-07-02 18:04:06.64793 2020-07-02 18:04:06.64793 7 602 5743 \N 258 \N \N 1.0 0 2020-07-02 18:04:06.668271 2020-07-02 18:04:06.668271 7 602 5744 \N 618 \N 2492 1.0 1 2020-07-02 18:46:32.79262 2020-07-02 18:46:32.79262 0 \N 5745 \N 977 \N 2493 1.0 1 2020-07-02 19:04:16.889938 2020-07-02 19:04:16.889938 0 \N 5746 \N 1011 \N 2494 1.0 1 2020-07-02 19:07:00.655121 2020-07-02 19:07:00.655121 0 \N 5747 \N 1012 \N 2494 1.0 1 2020-07-02 19:07:00.68254 2020-07-02 19:07:00.68254 0 \N 5748 \N 17 \N \N 5.0 0 2020-07-02 19:50:34.448736 2020-07-02 19:50:34.448736 7 599 5749 \N 977 \N \N 3.0 0 2020-07-02 19:52:43.299458 2020-07-02 19:52:43.299458 7 585 5750 \N 973 \N \N 4.0 0 2020-07-02 19:52:43.308332 2020-07-02 19:52:43.308332 7 585 5751 \N 736 \N \N 4.0 0 2020-07-02 19:52:43.317224 2020-07-02 19:52:43.317224 7 585 5752 \N 757 \N \N 5.0 0 2020-07-02 19:52:43.326179 2020-07-02 19:52:43.326179 7 585 5753 \N 753 \N \N 4.0 0 2020-07-02 19:52:43.337143 2020-07-02 19:52:43.337143 7 585 5754 \N 946 \N \N 5.0 0 2020-07-02 19:52:43.347254 2020-07-02 19:52:43.347254 7 585 5755 \N 871 \N \N 1.0 0 2020-07-02 19:52:43.355152 2020-07-02 19:52:43.355152 7 585 5756 \N 877 \N \N 1.0 0 2020-07-02 19:52:43.363467 2020-07-02 19:52:43.363467 7 585 5757 \N 742 \N \N 1.0 0 2020-07-02 19:52:57.161628 2020-07-02 19:52:57.161628 7 583 5758 \N 732 \N \N 1.0 0 2020-07-02 19:52:57.172023 2020-07-02 19:52:57.172023 7 583 5759 \N 731 \N \N 1.0 0 2020-07-02 19:52:57.180965 2020-07-02 19:52:57.180965 7 583 5760 \N 649 \N \N 1.0 0 2020-07-02 19:52:57.188312 2020-07-02 19:52:57.188312 7 583 5761 \N 773 \N \N 1.0 0 2020-07-02 19:52:57.195557 2020-07-02 19:52:57.195557 7 583 5762 \N 732 \N \N 1.0 0 2020-07-02 19:53:20.674235 2020-07-02 19:53:20.674235 7 579 5763 \N 874 \N \N 7.0 0 2020-07-02 20:01:05.41488 2020-07-02 20:01:05.41488 7 604 5764 \N 1089 \N \N 1.0 0 2020-07-02 20:01:18.416492 2020-07-02 20:01:18.416492 7 603 5765 \N 874 \N 2495 1.0 1 2020-07-02 20:01:45.521659 2020-07-02 20:01:45.521659 0 \N 5766 \N 883 \N 2496 1.0 1 2020-07-02 20:56:13.330643 2020-07-02 20:56:13.330643 0 \N 5767 \N 1020 \N 2496 1.0 1 2020-07-02 20:56:13.361364 2020-07-02 20:56:13.361364 0 \N 5768 \N 1118 \N 2497 1.0 1 2020-07-02 21:46:16.685006 2020-07-02 21:46:16.685006 0 \N 5769 \N 834 \N 2497 1.0 1 2020-07-02 21:46:16.71377 2020-07-02 21:46:16.71377 0 \N 5770 \N 506 \N 2498 1.0 1 2020-07-02 21:54:19.084083 2020-07-02 21:54:19.084083 0 \N 5771 \N 673 \N 2499 1.0 1 2020-07-03 00:36:56.32405 2020-07-03 00:36:56.32405 0 \N 5772 \N 673 \N 2499 1.0 0 2020-07-03 00:37:28.869241 2020-07-03 00:37:28.869241 3 \N 5773 \N 586 \N 2500 1.0 1 2020-07-03 00:37:55.107219 2020-07-03 00:37:55.107219 0 \N 5774 \N 1122 \N 2501 1.0 1 2020-07-03 21:18:38.392912 2020-07-03 21:18:38.392912 0 \N 5775 \N 1096 \N 2501 1.0 1 2020-07-03 21:18:38.420859 2020-07-03 21:18:38.420859 0 \N 5776 \N 36 \N \N 1.0 0 2020-07-03 21:54:42.116512 2020-07-03 21:54:42.116512 7 607 5777 \N 602 \N \N 3.0 0 2020-07-03 21:55:02.424096 2020-07-03 21:55:02.424096 7 608 5778 \N 36 \N 2502 1.0 1 2020-07-03 21:58:03.070998 2020-07-03 21:58:03.070998 0 \N 5779 \N 239 \N \N 1.0 0 2020-07-03 23:24:05.803379 2020-07-03 23:24:05.803379 7 612 5780 \N 483 \N \N 1.0 0 2020-07-03 23:24:05.827505 2020-07-03 23:24:05.827505 7 612 5781 \N 221 \N \N 5.0 0 2020-07-03 23:24:31.395536 2020-07-03 23:24:31.395536 7 611 5782 \N 475 \N \N 3.0 0 2020-07-03 23:24:31.416105 2020-07-03 23:24:31.416105 7 611 5783 \N 185 \N \N 2.0 0 2020-07-03 23:24:31.438011 2020-07-03 23:24:31.438011 7 611 5784 \N 485 \N \N 1.0 0 2020-07-03 23:24:31.461856 2020-07-03 23:24:31.461856 7 611 5785 \N 63 \N \N 1.0 0 2020-07-03 23:24:47.413613 2020-07-03 23:24:47.413613 7 610 5786 \N 158 \N \N 2.0 0 2020-07-03 23:25:20.709441 2020-07-03 23:25:20.709441 7 606 5787 \N 190 \N \N 2.0 0 2020-07-03 23:25:44.402828 2020-07-03 23:25:44.402828 7 605 5788 \N 404 \N \N 3.0 0 2020-07-03 23:25:44.428091 2020-07-03 23:25:44.428091 7 605 5789 \N 527 \N 2503 1.0 1 2020-07-04 00:40:03.739568 2020-07-04 00:40:03.739568 0 \N 5790 \N 1017 \N 2503 1.0 1 2020-07-04 00:40:03.765223 2020-07-04 00:40:03.765223 0 \N 5791 \N 557 \N 2503 1.0 1 2020-07-04 00:40:03.790811 2020-07-04 00:40:03.790811 0 \N 5792 \N 15 \N 2503 1.0 1 2020-07-04 00:40:03.818006 2020-07-04 00:40:03.818006 0 \N 5793 \N 669 \N 2503 1.0 1 2020-07-04 00:40:03.847882 2020-07-04 00:40:03.847882 0 \N 5794 \N 46 \N 2503 1.0 1 2020-07-04 00:40:03.875275 2020-07-04 00:40:03.875275 0 \N 5795 \N 275 \N 2504 1.0 1 2020-07-04 01:07:01.357588 2020-07-04 01:07:01.357588 0 \N 5796 \N 1104 \N \N 1.0 0 2020-07-04 18:29:12.301822 2020-07-04 18:29:12.301822 7 618 5797 \N 1103 \N \N 1.0 0 2020-07-04 18:29:12.379653 2020-07-04 18:29:12.379653 7 618 5798 \N 1102 \N \N 1.0 0 2020-07-04 18:29:12.456797 2020-07-04 18:29:12.456797 7 618 5799 \N 1101 \N \N 4.0 0 2020-07-04 18:29:12.511613 2020-07-04 18:29:12.511613 7 618 5800 \N 386 \N \N 2.0 0 2020-07-04 18:29:12.560593 2020-07-04 18:29:12.560593 7 618 5801 \N 1104 \N \N 1.0 0 2020-07-04 18:29:12.696345 2020-07-04 18:29:12.696345 7 618 5802 \N 1103 \N \N 1.0 0 2020-07-04 18:29:12.743859 2020-07-04 18:29:12.743859 7 618 5803 \N 1102 \N \N 1.0 0 2020-07-04 18:29:12.786349 2020-07-04 18:29:12.786349 7 618 5804 \N 1101 \N \N 4.0 0 2020-07-04 18:29:12.836153 2020-07-04 18:29:12.836153 7 618 5805 \N 386 \N \N 2.0 0 2020-07-04 18:29:12.892735 2020-07-04 18:29:12.892735 7 618 5806 \N 905 \N \N 3.0 0 2020-07-04 18:30:20.208309 2020-07-04 18:30:20.208309 7 613 5807 \N 906 \N \N 1.0 0 2020-07-04 18:30:20.233969 2020-07-04 18:30:20.233969 7 613 5808 \N 907 \N \N 2.0 0 2020-07-04 18:30:20.261134 2020-07-04 18:30:20.261134 7 613 5809 \N 908 \N \N 2.0 0 2020-07-04 18:30:20.292635 2020-07-04 18:30:20.292635 7 613 5810 \N 1029 \N \N 3.0 0 2020-07-04 18:30:33.924596 2020-07-04 18:30:33.924596 7 617 5811 \N 407 \N \N 2.0 0 2020-07-04 18:31:25.535198 2020-07-04 18:31:25.535198 7 614 5812 \N 405 \N \N 1.0 0 2020-07-04 18:31:25.56199 2020-07-04 18:31:25.56199 7 614 5813 \N 200 \N \N 1.0 0 2020-07-04 18:31:25.587462 2020-07-04 18:31:25.587462 7 614 5814 \N 407 \N \N 2.0 0 2020-07-04 18:31:25.607206 2020-07-04 18:31:25.607206 7 614 5815 \N 1033 \N \N 1.0 0 2020-07-04 18:31:43.192984 2020-07-04 18:31:43.192984 7 619 5816 \N 1033 \N 2505 1.0 1 2020-07-04 18:32:10.823813 2020-07-04 18:32:10.823813 0 \N 5817 \N 1089 \N \N 1.0 0 2020-07-04 18:39:10.447429 2020-07-04 18:39:10.447429 7 620 5818 \N 1038 \N \N 1.0 0 2020-07-04 18:44:26.655789 2020-07-04 18:44:26.655789 7 621 5819 \N 1098 \N \N 1.0 0 2020-07-04 18:58:25.442918 2020-07-04 18:58:25.442918 7 622 5820 \N 1126 \N 2506 1.0 1 2020-07-04 21:28:45.92985 2020-07-04 21:28:45.92985 0 \N 5821 \N 1130 304 \N 3.0 0 2020-07-04 22:15:46.316507 2020-07-04 22:15:46.316507 1 \N 5822 \N 1131 304 \N 1.0 0 2020-07-04 22:15:46.341961 2020-07-04 22:15:46.341961 1 \N 5823 \N 1132 304 \N 1.0 0 2020-07-04 22:15:46.367648 2020-07-04 22:15:46.367648 1 \N 5824 \N 1133 304 \N 2.0 0 2020-07-04 22:15:46.415858 2020-07-04 22:15:46.415858 1 \N 5825 \N 1134 304 \N 1.0 0 2020-07-04 22:15:46.441467 2020-07-04 22:15:46.441467 1 \N 5826 \N 1135 304 \N 1.0 0 2020-07-04 22:15:46.473807 2020-07-04 22:15:46.473807 1 \N 5827 \N 1136 304 \N 1.0 0 2020-07-04 22:15:46.505007 2020-07-04 22:15:46.505007 1 \N 5828 \N 1137 304 \N 1.0 0 2020-07-04 22:15:46.529224 2020-07-04 22:15:46.529224 1 \N 5829 \N 1138 304 \N 2.0 0 2020-07-04 22:15:46.554606 2020-07-04 22:15:46.554606 1 \N 5830 \N 1139 304 \N 1.0 0 2020-07-04 22:15:46.578207 2020-07-04 22:15:46.578207 1 \N 5831 \N 1140 304 \N 1.0 0 2020-07-04 22:15:46.603202 2020-07-04 22:15:46.603202 1 \N 5832 \N 1141 304 \N 1.0 0 2020-07-04 22:15:46.627432 2020-07-04 22:15:46.627432 1 \N 5833 \N 1143 304 \N 1.0 0 2020-07-04 22:15:46.655255 2020-07-04 22:15:46.655255 1 \N 5834 \N 1144 304 \N 1.0 0 2020-07-04 22:15:46.685716 2020-07-04 22:15:46.685716 1 \N 5835 \N 1145 304 \N 2.0 0 2020-07-04 22:15:46.714514 2020-07-04 22:15:46.714514 1 \N 5836 \N 1142 304 \N 2.0 0 2020-07-04 22:15:46.747915 2020-07-04 22:15:46.747915 1 \N 5837 \N 1146 304 \N 1.0 0 2020-07-04 22:15:46.773051 2020-07-04 22:15:46.773051 1 \N 5838 \N 1098 \N 2507 1.0 1 2020-07-04 22:33:10.732342 2020-07-04 22:33:10.732342 0 \N 5839 \N 525 \N 2508 1.0 1 2020-07-04 23:06:34.7538 2020-07-04 23:06:34.7538 0 \N 5840 \N 1147 305 \N 2.0 0 2020-07-04 23:23:34.023938 2020-07-04 23:23:34.023938 1 \N 5841 \N 1147 \N 2509 2.0 1 2020-07-04 23:24:42.227218 2020-07-04 23:24:42.227218 0 \N 5842 \N 1146 306 \N 2.0 0 2020-07-04 23:30:24.083198 2020-07-04 23:30:24.083198 1 \N 5843 \N 1148 306 \N 1.0 0 2020-07-04 23:30:24.111582 2020-07-04 23:30:24.111582 1 \N 5844 \N 1149 306 \N 1.0 0 2020-07-04 23:30:24.137915 2020-07-04 23:30:24.137915 1 \N 5845 \N 1118 306 \N 3.0 0 2020-07-04 23:30:24.165706 2020-07-04 23:30:24.165706 1 \N 5846 \N 1150 306 \N 1.0 0 2020-07-04 23:30:24.193282 2020-07-04 23:30:24.193282 1 \N 5847 \N 1151 307 \N 1.0 0 2020-07-04 23:37:38.880145 2020-07-04 23:37:38.880145 1 \N 5848 \N 1150 \N 2510 1.0 1 2020-07-04 23:40:12.357601 2020-07-04 23:40:12.357601 0 \N 5849 \N 1047 \N 2511 1.0 1 2020-07-04 23:58:48.983506 2020-07-04 23:58:48.983506 0 \N 5850 \N 1126 \N 2512 1.0 1 2020-07-06 01:36:59.636117 2020-07-06 01:36:59.636117 0 \N 5851 \N 1118 \N 2512 1.0 1 2020-07-06 01:36:59.663112 2020-07-06 01:36:59.663112 0 \N 5852 \N 912 \N 2513 1.0 1 2020-07-06 01:37:57.89214 2020-07-06 01:37:57.89214 0 \N 5853 \N 1118 \N 2514 1.0 1 2020-07-06 01:40:17.179363 2020-07-06 01:40:17.179363 0 \N 5854 \N 1118 \N 2515 1.0 1 2020-07-06 01:41:32.463508 2020-07-06 01:41:32.463508 0 \N 5855 \N 269 \N 2516 2.0 1 2020-07-06 01:46:49.553521 2020-07-06 01:46:49.553521 0 \N 5856 \N 259 \N 2517 1.0 1 2020-07-06 01:47:46.717079 2020-07-06 01:47:46.717079 0 \N 5857 \N 668 \N 2518 1.0 1 2020-07-06 19:13:06.023669 2020-07-06 19:13:06.023669 0 \N 5858 \N 529 \N 2518 1.0 1 2020-07-06 19:13:06.051746 2020-07-06 19:13:06.051746 0 \N 5859 \N 1001 \N 2518 1.0 1 2020-07-06 19:13:06.080281 2020-07-06 19:13:06.080281 0 \N 5860 \N 717 \N 2518 1.0 1 2020-07-06 19:13:06.112916 2020-07-06 19:13:06.112916 0 \N 5861 \N 874 \N 2519 1.0 1 2020-07-06 20:03:45.596309 2020-07-06 20:03:45.596309 0 \N 5862 \N 1029 \N 2520 1.0 1 2020-07-06 21:29:51.707147 2020-07-06 21:29:51.707147 0 \N 5863 \N 839 \N 2520 1.0 1 2020-07-06 21:29:51.73613 2020-07-06 21:29:51.73613 0 \N 5864 \N 1131 \N \N 1.0 0 2020-07-06 21:35:26.328961 2020-07-06 21:35:26.328961 7 623 5865 \N 172 \N \N 2.0 0 2020-07-06 21:37:04.872935 2020-07-06 21:37:04.872935 7 616 5866 \N 387 \N \N 2.0 0 2020-07-06 21:37:04.89594 2020-07-06 21:37:04.89594 7 616 5867 \N 277 \N \N 1.0 0 2020-07-06 21:37:35.653405 2020-07-06 21:37:35.653405 7 615 5868 \N 18 \N \N 3.0 0 2020-07-06 21:37:35.672506 2020-07-06 21:37:35.672506 7 615 5869 \N 657 \N 2521 1.0 1 2020-07-06 21:45:51.336706 2020-07-06 21:45:51.336706 0 \N 5870 \N 1131 \N 2521 1.0 1 2020-07-06 21:45:51.368482 2020-07-06 21:45:51.368482 0 \N 5871 \N 1118 \N 2522 1.0 1 2020-07-06 22:53:47.658832 2020-07-06 22:53:47.658832 0 \N 5872 \N 1118 \N 2523 1.0 1 2020-07-06 23:37:20.602326 2020-07-06 23:37:20.602326 0 \N 5873 \N 1118 \N 2524 1.0 1 2020-07-07 00:02:33.950066 2020-07-07 00:02:33.950066 0 \N 5874 \N 1126 \N 2525 1.0 1 2020-07-07 00:08:53.047483 2020-07-07 00:08:53.047483 0 \N 5875 \N 1118 \N 2526 1.0 1 2020-07-07 00:24:56.183559 2020-07-07 00:24:56.183559 0 \N 5876 \N 1118 \N 2526 1.0 0 2020-07-07 00:25:04.458735 2020-07-07 00:25:04.458735 3 \N 5877 \N 1118 \N 2527 1.0 1 2020-07-07 00:25:17.085358 2020-07-07 00:25:17.085358 0 \N 5878 \N 1151 \N 2528 1.0 1 2020-07-07 00:52:46.033541 2020-07-07 00:52:46.033541 0 \N 5879 \N 864 \N 2528 1.0 1 2020-07-07 00:52:46.058191 2020-07-07 00:52:46.058191 0 \N 5880 \N 265 \N \N 2.0 0 2020-07-07 18:33:18.045089 2020-07-07 18:33:18.045089 7 624 5881 \N 1146 \N \N 1.0 0 2020-07-07 18:33:18.070497 2020-07-07 18:33:18.070497 7 624 5882 \N 1118 \N \N 1.0 0 2020-07-07 18:33:18.091349 2020-07-07 18:33:18.091349 7 624 5883 \N 978 \N 2529 1.0 1 2020-07-07 19:40:43.148247 2020-07-07 19:40:43.148247 0 \N 5884 \N 9 \N 2530 1.0 1 2020-07-07 21:13:52.817862 2020-07-07 21:13:52.817862 0 \N 5885 \N 999 \N 2531 1.0 1 2020-07-07 22:52:25.821735 2020-07-07 22:52:25.821735 0 \N 5886 \N 1126 \N 2532 1.0 1 2020-07-07 23:10:36.36268 2020-07-07 23:10:36.36268 0 \N 5887 \N 152 \N 2533 1.0 1 2020-07-07 23:32:18.652901 2020-07-07 23:32:18.652901 0 \N 5888 \N 835 \N 2533 1.0 1 2020-07-07 23:32:18.67781 2020-07-07 23:32:18.67781 0 \N 5889 \N 1126 \N 2533 1.0 1 2020-07-07 23:32:18.703682 2020-07-07 23:32:18.703682 0 \N 5890 \N 1027 \N \N 1.0 0 2020-07-07 23:38:00.264241 2020-07-07 23:38:00.264241 7 625 5891 \N 1027 \N 2534 1.0 1 2020-07-07 23:38:20.40904 2020-07-07 23:38:20.40904 0 \N 5892 \N 936 \N \N 1.0 0 2020-07-07 23:39:57.132961 2020-07-07 23:39:57.132961 7 626 5893 \N 19 \N \N 5.0 0 2020-07-07 23:54:13.585562 2020-07-07 23:54:13.585562 7 627 5894 \N 19 \N 2535 1.0 1 2020-07-08 00:13:35.779607 2020-07-08 00:13:35.779607 0 \N 5895 \N 1118 \N \N 1.0 0 2020-07-08 19:28:02.676925 2020-07-08 19:28:02.676925 7 628 5896 \N 270 \N \N 1.0 0 2020-07-08 19:28:02.698242 2020-07-08 19:28:02.698242 7 628 5897 \N 435 \N \N 1.0 0 2020-07-08 19:28:02.721735 2020-07-08 19:28:02.721735 7 628 5898 \N 270 \N 2536 1.0 1 2020-07-08 19:35:56.169588 2020-07-08 19:35:56.169588 0 \N 5899 \N 271 \N 2536 1.0 1 2020-07-08 19:35:56.197524 2020-07-08 19:35:56.197524 0 \N 5900 \N 1126 \N 2537 1.0 1 2020-07-08 19:37:13.330874 2020-07-08 19:37:13.330874 0 \N 5901 \N 540 \N 2538 1.0 1 2020-07-08 20:23:22.008049 2020-07-08 20:23:22.008049 0 \N 5902 \N 540 \N 2538 1.0 0 2020-07-08 20:23:39.892489 2020-07-08 20:23:39.892489 3 \N 5903 \N 540 \N 2539 1.0 1 2020-07-08 20:24:37.92781 2020-07-08 20:24:37.92781 0 \N 5904 \N 999 \N 2540 1.0 1 2020-07-08 20:29:47.320007 2020-07-08 20:29:47.320007 0 \N 5905 \N 1006 \N 2541 1.0 1 2020-07-08 22:36:19.89999 2020-07-08 22:36:19.89999 0 \N 5906 \N 1126 \N 2541 1.0 1 2020-07-08 22:36:19.925997 2020-07-08 22:36:19.925997 0 \N 5907 \N 966 \N 2542 1.0 1 2020-07-08 23:14:22.277334 2020-07-08 23:14:22.277334 0 \N 5908 \N 1126 \N 2542 1.0 1 2020-07-08 23:14:22.304738 2020-07-08 23:14:22.304738 0 \N 5909 \N 1118 \N 2543 1.0 1 2020-07-08 23:14:27.738 2020-07-08 23:14:27.738 0 \N 5910 \N 1118 \N 2543 1.0 0 2020-07-08 23:23:39.163054 2020-07-08 23:23:39.163054 9 \N 5911 \N 1118 \N 2544 1.0 1 2020-07-08 23:36:12.499126 2020-07-08 23:36:12.499126 0 \N 5912 \N 979 \N 2545 1.0 1 2020-07-09 17:37:46.208781 2020-07-09 17:37:46.208781 0 \N 5913 \N 1118 \N 2546 1.0 1 2020-07-09 18:43:19.669339 2020-07-09 18:43:19.669339 0 \N 5914 \N 1121 \N 2547 1.0 1 2020-07-09 20:13:32.20827 2020-07-09 20:13:32.20827 0 \N 5915 \N 673 \N 2548 1.0 1 2020-07-09 20:46:44.137993 2020-07-09 20:46:44.137993 0 \N 5916 \N 717 \N 2549 1.0 1 2020-07-09 21:26:10.578149 2020-07-09 21:26:10.578149 0 \N 5917 \N 1140 \N 2550 1.0 1 2020-07-09 21:29:48.292708 2020-07-09 21:29:48.292708 0 \N 5918 \N 258 \N 2551 1.0 1 2020-07-09 23:53:43.335915 2020-07-09 23:53:43.335915 0 \N 5919 \N 1126 \N 2552 1.0 1 2020-07-10 00:29:13.925826 2020-07-10 00:29:13.925826 0 \N 5920 \N 1126 \N 2553 1.0 1 2020-07-10 00:29:56.888311 2020-07-10 00:29:56.888311 0 \N 5921 \N 1148 \N 2554 1.0 1 2020-07-10 19:32:41.811179 2020-07-10 19:32:41.811179 0 \N 5922 \N 713 \N \N 1.0 0 2020-07-10 20:01:08.44634 2020-07-10 20:01:08.44634 7 629 5923 \N 1146 \N 2555 1.0 1 2020-07-10 20:03:17.373538 2020-07-10 20:03:17.373538 0 \N 5924 \N 713 \N 2555 1.0 1 2020-07-10 20:03:17.402048 2020-07-10 20:03:17.402048 0 \N 5925 \N 713 \N 2555 1.0 0 2020-07-10 20:04:29.67855 2020-07-10 20:04:29.67855 3 \N 5926 \N 1146 \N 2555 1.0 0 2020-07-10 20:04:29.709878 2020-07-10 20:04:29.709878 3 \N 5927 \N 713 \N 2556 1.0 1 2020-07-10 20:05:01.047641 2020-07-10 20:05:01.047641 0 \N 5928 \N 1146 \N 2556 1.0 1 2020-07-10 20:05:01.07404 2020-07-10 20:05:01.07404 0 \N 5929 \N 259 \N \N 2.0 0 2020-07-11 20:19:55.116016 2020-07-11 20:19:55.116016 7 632 5930 \N 273 \N \N 3.0 0 2020-07-11 20:20:20.694083 2020-07-11 20:20:20.694083 7 631 5931 \N 271 \N \N 1.0 0 2020-07-11 20:20:20.714093 2020-07-11 20:20:20.714093 7 631 5932 \N 269 \N \N 22.0 0 2020-07-11 20:20:20.734858 2020-07-11 20:20:20.734858 7 631 5933 \N 266 \N \N 3.0 0 2020-07-11 20:20:20.778761 2020-07-11 20:20:20.778761 7 631 5934 \N 274 \N \N 2.0 0 2020-07-11 20:20:20.799005 2020-07-11 20:20:20.799005 7 631 5935 \N 272 \N \N 1.0 0 2020-07-11 20:20:20.822574 2020-07-11 20:20:20.822574 7 631 5936 \N 263 \N \N 1.0 0 2020-07-11 20:20:20.845365 2020-07-11 20:20:20.845365 7 631 5937 \N 268 \N \N 1.0 0 2020-07-11 20:20:31.642767 2020-07-11 20:20:31.642767 7 630 5938 \N 1118 \N \N 1.0 0 2020-07-11 20:20:31.6614 2020-07-11 20:20:31.6614 7 630 5939 \N 1126 \N \N 3.0 0 2020-07-11 20:20:31.680959 2020-07-11 20:20:31.680959 7 630 5940 \N 1126 \N 2557 1.0 1 2020-07-11 22:24:33.517224 2020-07-11 22:24:33.517224 0 \N 5941 \N 476 \N 2558 1.0 1 2020-07-13 16:28:37.442771 2020-07-13 16:28:37.442771 0 \N 5942 \N 40 \N \N 1.0 0 2020-07-13 17:01:32.389403 2020-07-13 17:01:32.389403 7 633 5943 \N 33 \N \N 1.0 0 2020-07-13 17:01:32.413157 2020-07-13 17:01:32.413157 7 633 5944 \N 339 \N \N 1.0 0 2020-07-13 17:01:32.437475 2020-07-13 17:01:32.437475 7 633 5945 \N 335 \N \N 2.0 0 2020-07-13 17:01:32.461551 2020-07-13 17:01:32.461551 7 633 5946 \N 31 \N \N 1.0 0 2020-07-13 17:01:32.484932 2020-07-13 17:01:32.484932 7 633 5947 \N 333 \N \N 1.0 0 2020-07-13 17:01:32.511683 2020-07-13 17:01:32.511683 7 633 5948 \N 348 \N \N 1.0 0 2020-07-13 17:01:32.540102 2020-07-13 17:01:32.540102 7 633 5949 \N 486 \N \N 1.0 0 2020-07-13 17:01:32.56787 2020-07-13 17:01:32.56787 7 633 5950 \N 258 \N \N 1.0 0 2020-07-13 17:01:32.589541 2020-07-13 17:01:32.589541 7 633 5951 \N 1106 \N 2559 1.0 1 2020-07-13 19:44:11.749591 2020-07-13 19:44:11.749591 0 \N 5952 \N 590 \N 2560 1.0 1 2020-07-13 19:48:51.192871 2020-07-13 19:48:51.192871 0 \N 5953 \N 1126 \N 2561 1.0 1 2020-07-13 19:49:41.402322 2020-07-13 19:49:41.402322 0 \N 5954 \N 1126 308 \N 6.0 0 2020-07-13 20:03:01.573092 2020-07-13 20:03:01.573092 1 \N 5955 \N 432 \N 2562 1.0 1 2020-07-13 20:21:22.793845 2020-07-13 20:21:22.793845 0 \N 5956 \N 1152 309 \N 1.0 0 2020-07-13 21:13:35.600821 2020-07-13 21:13:35.600821 1 \N 5957 \N 1153 309 \N 1.0 0 2020-07-13 21:13:35.6293 2020-07-13 21:13:35.6293 1 \N 5958 \N 1153 \N 2563 1.0 1 2020-07-13 21:26:13.29383 2020-07-13 21:26:13.29383 0 \N 5959 \N 717 \N 2564 1.0 1 2020-07-13 22:09:29.807032 2020-07-13 22:09:29.807032 0 \N 5960 \N 388 \N 2565 1.0 1 2020-07-13 22:17:02.678604 2020-07-13 22:17:02.678604 0 \N 5961 \N 388 \N 2565 1.0 0 2020-07-13 22:17:09.777838 2020-07-13 22:17:09.777838 3 \N 5962 \N 388 \N 2566 1.0 1 2020-07-13 22:17:30.549369 2020-07-13 22:17:30.549369 0 \N 5963 \N 995 \N 2567 1.0 1 2020-07-13 22:41:32.298104 2020-07-13 22:41:32.298104 0 \N 5964 \N 1118 \N 2568 1.0 1 2020-07-13 23:09:28.259458 2020-07-13 23:09:28.259458 0 \N 5965 \N 1154 310 \N 1.0 0 2020-07-13 23:23:34.346442 2020-07-13 23:23:34.346442 1 \N 5966 \N 722 \N 2569 1.0 1 2020-07-13 23:28:52.65895 2020-07-13 23:28:52.65895 0 \N 5967 \N 1154 \N 2569 1.0 1 2020-07-13 23:28:52.695034 2020-07-13 23:28:52.695034 0 \N 5968 \N 261 \N 2570 1.0 1 2020-07-14 00:08:18.388993 2020-07-14 00:08:18.388993 0 \N 5969 \N 1126 \N 2571 1.0 1 2020-07-14 00:13:08.645633 2020-07-14 00:13:08.645633 0 \N 5970 \N 1126 \N 2572 1.0 1 2020-07-14 19:43:06.608573 2020-07-14 19:43:06.608573 0 \N 5971 \N 1126 311 \N 7.0 0 2020-07-15 19:18:14.847274 2020-07-15 19:18:14.847274 1 \N 5972 \N 1118 312 \N 1.0 0 2020-07-15 19:18:35.310323 2020-07-15 19:18:35.310323 1 \N 5973 \N 1102 \N 2573 1.0 1 2020-07-15 19:30:14.411212 2020-07-15 19:30:14.411212 0 \N 5974 \N 1152 313 \N 1.0 0 2020-07-15 20:14:15.688158 2020-07-15 20:14:15.688158 1 \N 5975 \N 1122 \N 2574 1.0 1 2020-07-15 20:45:45.355856 2020-07-15 20:45:45.355856 0 \N 5976 \N 1118 \N 2574 1.0 1 2020-07-15 20:45:45.379652 2020-07-15 20:45:45.379652 0 \N 5977 \N 1126 \N 2575 1.0 1 2020-07-15 23:24:33.579456 2020-07-15 23:24:33.579456 0 \N 5978 \N 1155 314 \N 1.0 0 2020-07-15 23:49:17.194819 2020-07-15 23:49:17.194819 1 \N 5979 \N 1155 \N 2576 1.0 1 2020-07-15 23:49:40.268491 2020-07-15 23:49:40.268491 0 \N 5980 \N 1122 \N \N 1.0 0 2020-07-16 18:33:35.217923 2020-07-16 18:33:35.217923 7 634 5981 \N 367 \N \N 2.0 0 2020-07-16 18:33:35.242034 2020-07-16 18:33:35.242034 7 634 5982 \N 501 \N 2577 1.0 1 2020-07-16 18:59:03.569264 2020-07-16 18:59:03.569264 0 \N 5983 \N 434 \N 2577 1.0 1 2020-07-16 18:59:03.596408 2020-07-16 18:59:03.596408 0 \N 5984 \N 675 \N 2578 1.0 1 2020-07-16 20:53:38.331677 2020-07-16 20:53:38.331677 0 \N 5985 \N 367 \N 2578 2.0 1 2020-07-16 20:53:38.358021 2020-07-16 20:53:38.358021 0 \N 5986 \N 1156 315 \N 1.0 0 2020-07-17 18:54:27.617435 2020-07-17 18:54:27.617435 1 \N 5987 \N 1156 \N 2579 1.0 1 2020-07-17 18:55:07.575648 2020-07-17 18:55:07.575648 0 \N 5988 \N 1157 316 \N 1.0 0 2020-07-17 19:49:31.799166 2020-07-17 19:49:31.799166 1 \N 5989 \N 1158 316 \N 1.0 0 2020-07-17 19:49:31.82373 2020-07-17 19:49:31.82373 1 \N 5990 \N 670 \N 2580 1.0 1 2020-07-17 20:16:17.679684 2020-07-17 20:16:17.679684 0 \N 5991 \N 369 \N 2581 4.0 1 2020-07-17 21:10:00.255673 2020-07-17 21:10:00.255673 0 \N 5992 \N 1016 \N 2582 1.0 1 2020-07-17 21:26:15.425641 2020-07-17 21:26:15.425641 0 \N 5993 \N 953 \N 2583 1.0 1 2020-07-17 21:29:40.321685 2020-07-17 21:29:40.321685 0 \N 5994 \N 258 \N 2584 1.0 1 2020-07-17 21:31:08.476407 2020-07-17 21:31:08.476407 0 \N 5995 \N 170 \N 2585 1.0 1 2020-07-17 21:33:43.460874 2020-07-17 21:33:43.460874 0 \N 5996 \N 1006 \N 2585 1.0 1 2020-07-17 21:33:43.485856 2020-07-17 21:33:43.485856 0 \N 5997 \N 1008 \N 2586 1.0 1 2020-07-17 22:32:15.68053 2020-07-17 22:32:15.68053 0 \N 5998 \N 1008 \N 2586 1.0 0 2020-07-17 22:35:14.43753 2020-07-17 22:35:14.43753 3 \N 5999 \N 1008 \N 2587 1.0 1 2020-07-17 22:35:55.851096 2020-07-17 22:35:55.851096 0 \N 6000 \N 590 \N 2588 1.0 1 2020-07-17 23:32:00.305571 2020-07-17 23:32:00.305571 0 \N 6001 \N 369 \N 2588 1.0 1 2020-07-17 23:32:00.332735 2020-07-17 23:32:00.332735 0 \N 6002 \N 197 \N 2589 1.0 1 2020-07-18 18:29:15.649211 2020-07-18 18:29:15.649211 0 \N 6003 \N 1126 \N 2590 1.0 1 2020-07-18 19:18:51.43169 2020-07-18 19:18:51.43169 0 \N 6004 \N 551 \N 2591 1.0 1 2020-07-18 20:59:36.586945 2020-07-18 20:59:36.586945 0 \N 6005 \N 367 \N 2578 2.0 0 2020-07-18 22:46:20.042476 2020-07-18 22:46:20.042476 3 \N 6006 \N 675 \N 2578 1.0 0 2020-07-18 22:46:20.066177 2020-07-18 22:46:20.066177 3 \N 6007 \N 1001 \N \N 2.0 0 2020-07-18 22:56:59.998531 2020-07-18 22:56:59.998531 7 636 6008 \N 713 \N \N 2.0 0 2020-07-18 22:57:00.029085 2020-07-18 22:57:00.029085 7 636 6009 \N 1021 \N \N 3.0 0 2020-07-18 22:57:00.051924 2020-07-18 22:57:00.051924 7 636 6010 \N 666 \N \N 3.0 0 2020-07-18 22:57:00.072928 2020-07-18 22:57:00.072928 7 636 6011 \N 993 \N \N 2.0 0 2020-07-18 22:57:00.092021 2020-07-18 22:57:00.092021 7 636 6012 \N 513 \N \N 2.0 0 2020-07-18 22:57:00.112566 2020-07-18 22:57:00.112566 7 636 6013 \N 643 \N \N 3.0 0 2020-07-18 22:57:00.131553 2020-07-18 22:57:00.131553 7 636 6014 \N 800 \N \N 3.0 0 2020-07-18 22:57:00.153768 2020-07-18 22:57:00.153768 7 636 6015 \N 552 \N \N 2.0 0 2020-07-18 22:57:00.176315 2020-07-18 22:57:00.176315 7 636 6016 \N 109 \N \N 3.0 0 2020-07-18 22:57:00.197939 2020-07-18 22:57:00.197939 7 636 6017 \N 40 \N \N 1.0 0 2020-07-18 22:57:09.787458 2020-07-18 22:57:09.787458 7 635 6018 \N 33 \N \N 1.0 0 2020-07-18 22:57:09.806975 2020-07-18 22:57:09.806975 7 635 6019 \N 339 \N \N 1.0 0 2020-07-18 22:57:09.826668 2020-07-18 22:57:09.826668 7 635 6020 \N 335 \N \N 2.0 0 2020-07-18 22:57:09.843857 2020-07-18 22:57:09.843857 7 635 6021 \N 31 \N \N 1.0 0 2020-07-18 22:57:09.861464 2020-07-18 22:57:09.861464 7 635 6022 \N 1144 \N 2592 1.0 1 2020-07-18 23:08:00.116115 2020-07-18 23:08:00.116115 0 \N 6023 \N 9 \N 2593 1.0 1 2020-07-18 23:14:03.360617 2020-07-18 23:14:03.360617 0 \N 6024 \N 1111 \N 2593 1.0 1 2020-07-18 23:14:03.387723 2020-07-18 23:14:03.387723 0 \N 6025 \N 369 \N 2593 1.0 1 2020-07-18 23:14:03.416231 2020-07-18 23:14:03.416231 0 \N 6026 \N 31 \N 2594 1.0 1 2020-07-20 19:11:16.764486 2020-07-20 19:11:16.764486 0 \N 6027 \N 591 \N \N 2.0 0 2020-07-20 20:01:05.115002 2020-07-20 20:01:05.115002 7 637 6028 \N 1152 \N \N 1.0 0 2020-07-20 20:01:05.139917 2020-07-20 20:01:05.139917 7 637 6029 \N 981 \N \N 2.0 0 2020-07-20 20:01:05.166918 2020-07-20 20:01:05.166918 7 637 6030 \N 498 \N \N 4.0 0 2020-07-20 20:01:05.196397 2020-07-20 20:01:05.196397 7 637 6031 \N 887 \N \N 3.0 0 2020-07-20 20:01:05.237024 2020-07-20 20:01:05.237024 7 637 6032 \N 985 \N \N 2.0 0 2020-07-20 20:01:05.262271 2020-07-20 20:01:05.262271 7 637 6033 \N 247 \N \N 3.0 0 2020-07-20 20:01:05.288574 2020-07-20 20:01:05.288574 7 637 6034 \N 528 \N \N 3.0 0 2020-07-20 20:01:05.330877 2020-07-20 20:01:05.330877 7 637 6035 \N 591 \N \N 2.0 0 2020-07-20 20:01:05.418142 2020-07-20 20:01:05.418142 7 637 6036 \N 1152 \N \N 1.0 0 2020-07-20 20:01:05.44283 2020-07-20 20:01:05.44283 7 637 6037 \N 981 \N \N 2.0 0 2020-07-20 20:01:05.467772 2020-07-20 20:01:05.467772 7 637 6038 \N 498 \N \N 4.0 0 2020-07-20 20:01:05.492289 2020-07-20 20:01:05.492289 7 637 6039 \N 887 \N \N 3.0 0 2020-07-20 20:01:05.524032 2020-07-20 20:01:05.524032 7 637 6040 \N 985 \N \N 2.0 0 2020-07-20 20:01:05.560561 2020-07-20 20:01:05.560561 7 637 6041 \N 247 \N \N 3.0 0 2020-07-20 20:01:05.591916 2020-07-20 20:01:05.591916 7 637 6042 \N 528 \N \N 3.0 0 2020-07-20 20:01:05.616185 2020-07-20 20:01:05.616185 7 637 6043 \N 335 \N 2595 1.0 1 2020-07-20 20:16:56.631808 2020-07-20 20:16:56.631808 0 \N 6044 \N 1053 \N 2596 1.0 1 2020-07-20 21:26:19.114329 2020-07-20 21:26:19.114329 0 \N 6045 \N 1000 \N 2597 1.0 1 2020-07-20 22:15:13.252626 2020-07-20 22:15:13.252626 0 \N 6046 \N 1077 \N 2598 1.0 1 2020-07-20 23:47:46.119109 2020-07-20 23:47:46.119109 0 \N 6047 \N 833 \N 2598 1.0 1 2020-07-20 23:47:46.144329 2020-07-20 23:47:46.144329 0 \N 6048 \N 1060 \N 2599 1.0 1 2020-07-21 21:13:33.114013 2020-07-21 21:13:33.114013 0 \N 6049 \N 529 \N \N 2.0 0 2020-07-21 22:26:46.121942 2020-07-21 22:26:46.121942 7 638 6050 \N 1126 \N \N 1.0 0 2020-07-21 22:26:46.142427 2020-07-21 22:26:46.142427 7 638 6051 \N 559 \N 2600 1.0 1 2020-07-21 22:27:35.583245 2020-07-21 22:27:35.583245 0 \N 6052 \N 152 \N \N 3.0 0 2020-07-21 22:32:51.838471 2020-07-21 22:32:51.838471 7 639 6053 \N 152 \N 2601 1.0 1 2020-07-21 22:33:51.672706 2020-07-21 22:33:51.672706 0 \N 6054 \N 934 \N \N 1.0 0 2020-07-21 22:38:43.412509 2020-07-21 22:38:43.412509 7 640 6055 \N 934 \N 2602 1.0 1 2020-07-21 22:39:16.180411 2020-07-21 22:39:16.180411 0 \N 6056 \N 1077 \N 2602 1.0 1 2020-07-21 22:39:16.207039 2020-07-21 22:39:16.207039 0 \N 6057 \N 1008 \N 2603 1.0 1 2020-07-21 23:30:34.345473 2020-07-21 23:30:34.345473 0 \N 6058 \N 997 \N 2603 1.0 1 2020-07-21 23:30:34.375036 2020-07-21 23:30:34.375036 0 \N 6059 \N 1109 \N 2603 1.0 1 2020-07-21 23:30:34.404467 2020-07-21 23:30:34.404467 0 \N 6060 \N 813 \N 2603 1.0 1 2020-07-21 23:30:34.430705 2020-07-21 23:30:34.430705 0 \N 6061 \N 1132 \N 2604 1.0 1 2020-07-21 23:35:00.170305 2020-07-21 23:35:00.170305 0 \N 6062 \N 1118 \N 2604 1.0 1 2020-07-21 23:35:00.196595 2020-07-21 23:35:00.196595 0 \N 6063 \N 1126 \N 2605 1.0 1 2020-07-22 21:29:50.311813 2020-07-22 21:29:50.311813 0 \N 6064 \N 1082 \N 2605 1.0 1 2020-07-22 21:29:50.336886 2020-07-22 21:29:50.336886 0 \N 6065 \N 979 \N 2606 1.0 1 2020-07-23 17:19:34.083627 2020-07-23 17:19:34.083627 0 \N 6066 \N 632 \N 2606 1.0 1 2020-07-23 17:19:34.113496 2020-07-23 17:19:34.113496 0 \N 6067 \N 798 \N 2606 1.0 1 2020-07-23 17:19:34.139697 2020-07-23 17:19:34.139697 0 \N 6068 \N 1118 \N 2607 1.0 1 2020-07-23 17:22:33.561647 2020-07-23 17:22:33.561647 0 \N 6069 \N 55 \N 2608 1.0 1 2020-07-23 19:06:53.594511 2020-07-23 19:06:53.594511 0 \N 6070 \N 994 \N \N 3.0 0 2020-07-23 20:02:46.419581 2020-07-23 20:02:46.419581 7 641 6071 \N 1145 \N 2609 1.0 1 2020-07-24 00:36:22.768759 2020-07-24 00:36:22.768759 0 \N 6072 \N 1143 \N 2610 1.0 1 2020-07-24 18:40:15.606575 2020-07-24 18:40:15.606575 0 \N 6073 \N 367 \N 2610 2.0 1 2020-07-24 18:40:15.635129 2020-07-24 18:40:15.635129 0 \N 6074 \N 990 \N 2611 1.0 1 2020-07-24 19:00:07.100646 2020-07-24 19:00:07.100646 0 \N 6075 \N 994 \N 2612 1.0 1 2020-07-24 19:23:30.357927 2020-07-24 19:23:30.357927 0 \N 6076 \N 460 \N 2612 1.0 1 2020-07-24 19:23:30.381637 2020-07-24 19:23:30.381637 0 \N 6077 \N 460 \N 2612 1.0 0 2020-07-24 19:25:28.590576 2020-07-24 19:25:28.590576 3 \N 6078 \N 994 \N 2612 1.0 0 2020-07-24 19:25:28.612797 2020-07-24 19:25:28.612797 3 \N 6079 \N 994 \N 2613 1.0 1 2020-07-24 19:26:05.393802 2020-07-24 19:26:05.393802 0 \N 6080 \N 460 \N 2613 1.0 1 2020-07-24 19:26:05.417331 2020-07-24 19:26:05.417331 0 \N 6081 \N 529 \N \N 1.0 0 2020-07-24 21:40:59.809182 2020-07-24 21:40:59.809182 7 642 6082 \N 986 \N \N 3.0 0 2020-07-24 21:40:59.832782 2020-07-24 21:40:59.832782 7 642 6083 \N 986 \N 2614 1.0 1 2020-07-24 21:42:11.762949 2020-07-24 21:42:11.762949 0 \N 6084 \N 1021 \N 2614 1.0 1 2020-07-24 21:42:11.786436 2020-07-24 21:42:11.786436 0 \N 6085 \N 663 \N 2615 1.0 1 2020-07-25 00:10:24.873022 2020-07-25 00:10:24.873022 0 \N 6086 \N 1118 \N 2616 1.0 1 2020-07-25 00:46:51.513965 2020-07-25 00:46:51.513965 0 \N 6087 \N 1118 \N 2616 1.0 0 2020-07-25 00:49:10.259361 2020-07-25 00:49:10.259361 3 \N 6088 \N 1118 \N 2617 1.0 1 2020-07-25 00:54:06.291423 2020-07-25 00:54:06.291423 0 \N 6089 \N 1122 \N \N 1.0 0 2020-07-25 19:40:22.667729 2020-07-25 19:40:22.667729 7 643 6090 \N 1122 \N 2618 1.0 1 2020-07-25 19:42:11.852581 2020-07-25 19:42:11.852581 0 \N 6091 \N 1121 \N 2618 1.0 1 2020-07-25 19:42:11.878541 2020-07-25 19:42:11.878541 0 \N 6092 \N 269 \N 2619 1.0 1 2020-07-25 20:21:57.570083 2020-07-25 20:21:57.570083 0 \N 6093 \N 64 \N 2620 1.0 1 2020-07-27 20:28:15.964247 2020-07-27 20:28:15.964247 0 \N 6094 \N 498 \N \N 1.0 0 2020-07-27 21:44:05.925221 2020-07-27 21:44:05.925221 7 644 6095 \N 653 \N \N 1.0 0 2020-07-27 21:44:05.945996 2020-07-27 21:44:05.945996 7 644 6096 \N 653 \N 2621 1.0 1 2020-07-27 21:45:48.73328 2020-07-27 21:45:48.73328 0 \N 6097 \N 354 \N 2622 1.0 1 2020-07-27 21:54:36.284721 2020-07-27 21:54:36.284721 0 \N 6098 \N 975 \N 2623 1.0 1 2020-07-28 00:22:07.205689 2020-07-28 00:22:07.205689 0 \N 6099 \N 1010 \N 2624 1.0 1 2020-07-28 17:03:51.258173 2020-07-28 17:03:51.258173 0 \N 6100 \N 1118 \N 2625 1.0 1 2020-07-28 18:06:08.682372 2020-07-28 18:06:08.682372 0 \N 6101 \N 581 \N 2626 1.0 1 2020-07-28 18:31:37.981682 2020-07-28 18:31:37.981682 0 \N 6102 \N 994 \N 2627 1.0 1 2020-07-28 19:05:19.595484 2020-07-28 19:05:19.595484 0 \N 6103 \N 1025 \N 2627 1.0 1 2020-07-28 19:05:19.624121 2020-07-28 19:05:19.624121 0 \N 6104 \N 1126 317 \N 6.0 0 2020-07-28 21:49:36.025923 2020-07-28 21:49:36.025923 1 \N 6105 \N 1126 \N 2628 1.0 1 2020-07-28 21:55:05.88317 2020-07-28 21:55:05.88317 0 \N 6106 \N 1159 318 \N 5.0 0 2020-07-29 19:48:27.479147 2020-07-29 19:48:27.479147 1 \N 6107 \N 1160 318 \N 1.0 0 2020-07-29 19:48:27.507293 2020-07-29 19:48:27.507293 1 \N 6108 \N 1161 318 \N 1.0 0 2020-07-29 19:48:27.531569 2020-07-29 19:48:27.531569 1 \N 6109 \N 1157 318 \N 1.0 0 2020-07-29 19:48:27.56032 2020-07-29 19:48:27.56032 1 \N 6110 \N 1162 318 \N 1.0 0 2020-07-29 19:48:27.585261 2020-07-29 19:48:27.585261 1 \N 6111 \N 1163 318 \N 1.0 0 2020-07-29 19:48:27.611894 2020-07-29 19:48:27.611894 1 \N 6112 \N 1165 319 \N 1.0 0 2020-07-29 20:08:43.733813 2020-07-29 20:08:43.733813 1 \N 6113 \N 1164 319 \N 2.0 0 2020-07-29 20:08:43.765349 2020-07-29 20:08:43.765349 1 \N 6114 \N 1148 320 \N 1.0 0 2020-07-29 20:10:07.22895 2020-07-29 20:10:07.22895 1 \N 6115 \N 1148 321 \N 1.0 0 2020-07-29 20:10:39.591826 2020-07-29 20:10:39.591826 1 \N 6116 \N 476 \N 2629 1.0 1 2020-07-29 21:50:25.107855 2020-07-29 21:50:25.107855 0 \N 6117 \N 1152 \N 2630 1.0 1 2020-07-29 23:57:44.850003 2020-07-29 23:57:44.850003 0 \N 6118 \N 1152 \N 2631 1.0 1 2020-07-30 00:26:19.36992 2020-07-30 00:26:19.36992 0 \N 6119 \N 1126 \N 2632 1.0 1 2020-07-30 18:40:21.903258 2020-07-30 18:40:21.903258 0 \N 6120 \N 1141 \N 2632 1.0 1 2020-07-30 18:40:21.928661 2020-07-30 18:40:21.928661 0 \N 6121 \N 990 \N 2633 1.0 1 2020-07-30 21:10:06.424447 2020-07-30 21:10:06.424447 0 \N 6122 \N 1159 \N 2634 1.0 1 2020-07-30 21:16:42.124574 2020-07-30 21:16:42.124574 0 \N 6123 \N 1152 \N 2631 1.0 0 2020-07-30 21:30:08.584224 2020-07-30 21:30:08.584224 9 \N 6124 \N 1152 \N 2635 1.0 1 2020-07-31 21:06:10.946387 2020-07-31 21:06:10.946387 0 \N 6125 \N 1152 \N 2635 1.0 0 2020-07-31 21:07:12.689674 2020-07-31 21:07:12.689674 9 \N 6126 \N 1152 \N 2636 1.0 1 2020-07-31 21:08:14.945001 2020-07-31 21:08:14.945001 0 \N 6127 \N 1152 \N 2636 1.0 0 2020-07-31 21:09:17.616002 2020-07-31 21:09:17.616002 9 \N 6128 \N 1152 \N 2637 1.0 1 2020-07-31 21:09:47.112634 2020-07-31 21:09:47.112634 0 \N 6129 \N 1152 \N 2637 1.0 0 2020-07-31 21:10:49.320616 2020-07-31 21:10:49.320616 9 \N 6130 \N 1152 \N 2638 1.0 1 2020-07-31 21:12:21.233896 2020-07-31 21:12:21.233896 0 \N 6131 \N 1152 \N 2638 1.0 0 2020-07-31 21:12:38.726309 2020-07-31 21:12:38.726309 9 \N 6132 \N 1134 \N 2639 1.0 1 2020-07-31 21:23:59.14111 2020-07-31 21:23:59.14111 0 \N 6133 \N 1152 \N 2640 1.0 1 2020-07-31 21:39:51.648216 2020-07-31 21:39:51.648216 0 \N 6134 \N 1152 \N 2640 1.0 0 2020-07-31 21:41:12.196499 2020-07-31 21:41:12.196499 9 \N 6135 \N 1166 322 \N 1.0 0 2020-07-31 22:31:44.452774 2020-07-31 22:31:44.452774 1 \N 6136 \N 1166 \N 2641 1.0 1 2020-07-31 22:32:05.305139 2020-07-31 22:32:05.305139 0 \N 6137 \N 1152 \N 2642 1.0 1 2020-07-31 23:05:28.191298 2020-07-31 23:05:28.191298 0 \N 6138 \N 1152 \N 2642 1.0 0 2020-07-31 23:10:29.817776 2020-07-31 23:10:29.817776 9 \N 6139 \N 1118 \N 2643 1.0 1 2020-07-31 23:28:04.529267 2020-07-31 23:28:04.529267 0 \N 6140 \N 887 \N 2644 1.0 1 2020-08-01 00:46:05.234967 2020-08-01 00:46:05.234967 0 \N 6141 \N 1152 \N 2645 1.0 1 2020-08-01 16:51:02.864352 2020-08-01 16:51:02.864352 0 \N 6142 \N 1152 \N 2645 1.0 0 2020-08-01 16:51:28.67736 2020-08-01 16:51:28.67736 9 \N 6143 \N 367 \N 2646 2.0 1 2020-08-01 21:00:50.909229 2020-08-01 21:00:50.909229 0 \N 6144 \N 1130 \N 2647 1.0 1 2020-08-01 23:52:27.129767 2020-08-01 23:52:27.129767 0 \N 6145 \N 1163 \N 2647 1.0 1 2020-08-01 23:52:27.156827 2020-08-01 23:52:27.156827 0 \N 6146 \N 1152 \N 2648 1.0 1 2020-08-03 16:32:34.226151 2020-08-03 16:32:34.226151 0 \N 6147 \N 1126 \N 2649 1.0 1 2020-08-03 18:39:11.765135 2020-08-03 18:39:11.765135 0 \N 6148 \N 56 \N 2649 1.0 1 2020-08-03 18:39:11.804164 2020-08-03 18:39:11.804164 0 \N 6149 \N 1149 \N 2649 1.0 1 2020-08-03 18:39:11.83748 2020-08-03 18:39:11.83748 0 \N 6150 \N 1126 323 \N 19.0 0 2020-08-03 19:18:18.290469 2020-08-03 19:18:18.290469 1 \N 6151 \N 1118 324 \N 11.0 0 2020-08-03 19:19:11.492844 2020-08-03 19:19:11.492844 1 \N 6152 \N 1118 325 \N 8.0 0 2020-08-03 19:46:16.488552 2020-08-03 19:46:16.488552 1 \N 6153 \N 1126 325 \N 10.0 0 2020-08-03 19:46:16.514351 2020-08-03 19:46:16.514351 1 \N 6154 \N 1167 326 \N 1.0 0 2020-08-03 19:55:21.447882 2020-08-03 19:55:21.447882 1 \N 6155 \N 1168 326 \N 2.0 0 2020-08-03 19:55:21.471376 2020-08-03 19:55:21.471376 1 \N 6156 \N 1169 326 \N 1.0 0 2020-08-03 19:55:21.494713 2020-08-03 19:55:21.494713 1 \N 6157 \N 1170 326 \N 1.0 0 2020-08-03 19:55:21.517183 2020-08-03 19:55:21.517183 1 \N 6158 \N 1171 326 \N 1.0 0 2020-08-03 19:55:21.540352 2020-08-03 19:55:21.540352 1 \N 6159 \N 1172 326 \N 1.0 0 2020-08-03 19:55:21.563349 2020-08-03 19:55:21.563349 1 \N 6160 \N 1173 326 \N 1.0 0 2020-08-03 19:55:21.5891 2020-08-03 19:55:21.5891 1 \N 6161 \N 1168 327 \N 1.0 0 2020-08-03 20:10:53.540535 2020-08-03 20:10:53.540535 1 \N 6162 \N 1174 327 \N 1.0 0 2020-08-03 20:10:53.568239 2020-08-03 20:10:53.568239 1 \N 6163 \N 1175 327 \N 1.0 0 2020-08-03 20:10:53.594854 2020-08-03 20:10:53.594854 1 \N 6164 \N 1176 327 \N 1.0 0 2020-08-03 20:10:53.62522 2020-08-03 20:10:53.62522 1 \N 6165 \N 1173 327 \N 1.0 0 2020-08-03 20:10:53.660225 2020-08-03 20:10:53.660225 1 \N 6166 \N 1173 327 \N 1.0 0 2020-08-03 20:10:53.691088 2020-08-03 20:10:53.691088 1 \N 6167 \N 1167 \N 2650 1.0 1 2020-08-03 20:12:07.75087 2020-08-03 20:12:07.75087 0 \N 6168 \N 1021 \N 2651 1.0 1 2020-08-03 20:41:49.088797 2020-08-03 20:41:49.088797 0 \N 6169 \N 1160 \N 2652 1.0 1 2020-08-03 22:22:17.014493 2020-08-03 22:22:17.014493 0 \N 6170 \N 1169 \N 2653 1.0 1 2020-08-03 22:41:27.943607 2020-08-03 22:41:27.943607 0 \N 6171 \N 1118 \N 2654 1.0 1 2020-08-03 23:19:47.660276 2020-08-03 23:19:47.660276 0 \N 6172 \N 1126 \N 2655 1.0 1 2020-08-03 23:27:35.371281 2020-08-03 23:27:35.371281 0 \N 6173 \N 494 \N 2656 1.0 1 2020-08-03 23:34:38.045309 2020-08-03 23:34:38.045309 0 \N 6174 \N 1126 \N 2657 1.0 1 2020-08-03 23:36:37.75574 2020-08-03 23:36:37.75574 0 \N 6175 \N 1010 \N 2658 1.0 1 2020-08-03 23:49:53.99881 2020-08-03 23:49:53.99881 0 \N 6176 \N 33 \N 2659 1.0 1 2020-08-04 23:08:29.507012 2020-08-04 23:08:29.507012 0 \N 6177 \N 908 \N 2660 1.0 1 2020-08-04 23:11:54.811257 2020-08-04 23:11:54.811257 0 \N 6178 \N 369 \N 2660 2.0 1 2020-08-04 23:11:54.836989 2020-08-04 23:11:54.836989 0 \N 6179 \N 998 \N 2661 1.0 1 2020-08-04 23:29:57.690605 2020-08-04 23:29:57.690605 0 \N 6180 \N 1126 \N 2662 1.0 1 2020-08-05 00:04:29.757942 2020-08-05 00:04:29.757942 0 \N 6181 \N 906 \N 2662 1.0 1 2020-08-05 00:04:29.784392 2020-08-05 00:04:29.784392 0 \N 6182 \N 1126 \N 2663 2.0 1 2020-08-05 00:26:13.009314 2020-08-05 00:26:13.009314 0 \N 6183 \N 50 \N 2664 1.0 1 2020-08-05 00:28:25.889518 2020-08-05 00:28:25.889518 0 \N 6184 \N 1126 \N 2665 1.0 1 2020-08-05 18:03:43.681983 2020-08-05 18:03:43.681983 0 \N 6185 \N 369 \N 2666 1.0 1 2020-08-05 18:12:54.865249 2020-08-05 18:12:54.865249 0 \N 6186 \N 1121 \N 2618 1.0 0 2020-08-05 19:56:26.635166 2020-08-05 19:56:26.635166 9 \N 6187 \N 1122 \N 2618 1.0 0 2020-08-05 19:56:26.658911 2020-08-05 19:56:26.658911 9 \N 6188 \N 1121 \N 2667 1.0 1 2020-08-05 19:58:36.641907 2020-08-05 19:58:36.641907 0 \N 6189 \N 1122 \N 2667 1.0 1 2020-08-05 19:58:36.670816 2020-08-05 19:58:36.670816 0 \N 6190 \N 1017 \N 2668 1.0 1 2020-08-05 20:53:14.941831 2020-08-05 20:53:14.941831 0 \N 6191 \N 1029 \N 2669 2.0 1 2020-08-05 20:54:52.432962 2020-08-05 20:54:52.432962 0 \N 6192 \N 1118 \N 2670 1.0 1 2020-08-05 21:09:47.751194 2020-08-05 21:09:47.751194 0 \N 6193 \N 1126 \N 2671 1.0 1 2020-08-05 22:55:57.775319 2020-08-05 22:55:57.775319 0 \N 6194 \N 905 \N 2671 1.0 1 2020-08-05 22:55:57.800968 2020-08-05 22:55:57.800968 0 \N 6195 \N 1126 \N 2672 1.0 1 2020-08-06 22:29:14.556338 2020-08-06 22:29:14.556338 0 \N 6196 \N 40 \N 2672 1.0 1 2020-08-06 22:29:14.585286 2020-08-06 22:29:14.585286 0 \N 6197 \N 908 \N 2672 1.0 1 2020-08-06 22:29:14.611287 2020-08-06 22:29:14.611287 0 \N 6198 \N 908 \N 2672 1.0 0 2020-08-06 22:30:30.370029 2020-08-06 22:30:30.370029 3 \N 6199 \N 40 \N 2672 1.0 0 2020-08-06 22:30:30.39904 2020-08-06 22:30:30.39904 3 \N 6200 \N 1126 \N 2672 1.0 0 2020-08-06 22:30:30.424695 2020-08-06 22:30:30.424695 3 \N 6201 \N 1126 \N 2673 1.0 1 2020-08-06 22:31:10.618906 2020-08-06 22:31:10.618906 0 \N 6202 \N 908 \N 2673 1.0 1 2020-08-06 22:31:10.641377 2020-08-06 22:31:10.641377 0 \N 6203 \N 40 \N 2673 1.0 1 2020-08-06 22:31:10.663945 2020-08-06 22:31:10.663945 0 \N 6204 \N 1118 \N 2674 1.0 1 2020-08-07 19:37:08.795449 2020-08-07 19:37:08.795449 0 \N 6205 \N 1177 328 \N 1.0 0 2020-08-07 20:14:49.165445 2020-08-07 20:14:49.165445 1 \N 6206 \N 1148 328 \N 1.0 0 2020-08-07 20:14:49.189406 2020-08-07 20:14:49.189406 1 \N 6207 \N 1179 328 \N 1.0 0 2020-08-07 20:14:49.214461 2020-08-07 20:14:49.214461 1 \N 6208 \N 1178 328 \N 2.0 0 2020-08-07 20:14:49.24208 2020-08-07 20:14:49.24208 1 \N 6209 \N 1180 328 \N 1.0 0 2020-08-07 20:14:49.268908 2020-08-07 20:14:49.268908 1 \N 6210 \N 1181 328 \N 1.0 0 2020-08-07 20:14:49.29249 2020-08-07 20:14:49.29249 1 \N 6211 \N 1183 328 \N 1.0 0 2020-08-07 20:14:49.325152 2020-08-07 20:14:49.325152 1 \N 6212 \N 1182 328 \N 2.0 0 2020-08-07 20:14:49.350653 2020-08-07 20:14:49.350653 1 \N 6213 \N 1184 328 \N 2.0 0 2020-08-07 20:14:49.377736 2020-08-07 20:14:49.377736 1 \N 6214 \N 1185 328 \N 1.0 0 2020-08-07 20:14:49.400282 2020-08-07 20:14:49.400282 1 \N 6215 \N 1186 328 \N 1.0 0 2020-08-07 20:14:49.424479 2020-08-07 20:14:49.424479 1 \N 6216 \N 1187 328 \N 1.0 0 2020-08-07 20:14:49.448825 2020-08-07 20:14:49.448825 1 \N 6217 \N 212 \N 2675 1.0 1 2020-08-07 21:03:24.842948 2020-08-07 21:03:24.842948 0 \N 6218 \N 246 \N 2675 1.0 1 2020-08-07 21:03:24.867332 2020-08-07 21:03:24.867332 0 \N 6219 \N 1188 329 \N 2.0 0 2020-08-07 21:16:23.151584 2020-08-07 21:16:23.151584 1 \N 6220 \N 1190 329 \N 1.0 0 2020-08-07 21:16:23.187249 2020-08-07 21:16:23.187249 1 \N 6221 \N 1189 329 \N 2.0 0 2020-08-07 21:16:23.214454 2020-08-07 21:16:23.214454 1 \N 6222 \N 18 \N 2676 1.0 1 2020-08-07 21:30:12.448661 2020-08-07 21:30:12.448661 0 \N 6223 \N 508 \N 2676 1.0 1 2020-08-07 21:30:12.474074 2020-08-07 21:30:12.474074 0 \N 6224 \N 13 \N 2676 1.0 1 2020-08-07 21:30:12.499727 2020-08-07 21:30:12.499727 0 \N 6225 \N 1020 \N 2676 1.0 1 2020-08-07 21:30:12.528275 2020-08-07 21:30:12.528275 0 \N 6226 \N 1191 330 \N 1.0 0 2020-08-07 21:35:04.84354 2020-08-07 21:35:04.84354 1 \N 6227 \N 1148 331 \N 1.0 0 2020-08-07 21:52:06.314097 2020-08-07 21:52:06.314097 1 \N 6228 \N 1184 331 \N 1.0 0 2020-08-07 21:52:06.327823 2020-08-07 21:52:06.327823 1 \N 6229 \N 1180 331 \N 1.0 0 2020-08-07 21:52:06.341675 2020-08-07 21:52:06.341675 1 \N 6230 \N 1185 331 \N 1.0 0 2020-08-07 21:52:06.354803 2020-08-07 21:52:06.354803 1 \N 6231 \N 1181 331 \N 1.0 0 2020-08-07 21:52:06.36747 2020-08-07 21:52:06.36747 1 \N 6232 \N 208 \N 2677 1.0 1 2020-08-07 22:49:08.29737 2020-08-07 22:49:08.29737 0 \N 6233 \N 408 \N 2677 1.0 1 2020-08-07 22:49:08.321482 2020-08-07 22:49:08.321482 0 \N 6234 \N 1192 332 \N 1.0 0 2020-08-08 00:57:02.18475 2020-08-08 00:57:02.18475 1 \N 6235 \N 1192 \N 2678 1.0 1 2020-08-08 00:57:21.321739 2020-08-08 00:57:21.321739 0 \N 6236 \N 675 \N 2679 1.0 1 2020-08-08 18:51:18.291331 2020-08-08 18:51:18.291331 0 \N 6237 \N 1003 \N 2680 1.0 1 2020-08-08 19:09:45.440617 2020-08-08 19:09:45.440617 0 \N 6238 \N 246 \N 2681 1.0 1 2020-08-08 20:07:40.608302 2020-08-08 20:07:40.608302 0 \N 6239 \N 206 \N 2681 1.0 1 2020-08-08 20:07:40.645345 2020-08-08 20:07:40.645345 0 \N 6240 \N 231 \N 2681 1.0 1 2020-08-08 20:07:40.687867 2020-08-08 20:07:40.687867 0 \N 6241 \N 217 \N 2681 1.0 1 2020-08-08 20:07:40.727451 2020-08-08 20:07:40.727451 0 \N 6242 \N 644 \N 2681 1.0 1 2020-08-08 20:07:40.757754 2020-08-08 20:07:40.757754 0 \N 6243 \N 225 \N 2681 1.0 1 2020-08-08 20:07:40.797397 2020-08-08 20:07:40.797397 0 \N 6244 \N 430 \N 2681 1.0 1 2020-08-08 20:07:40.833353 2020-08-08 20:07:40.833353 0 \N 6245 \N 369 \N 2681 1.0 1 2020-08-08 20:07:40.861492 2020-08-08 20:07:40.861492 0 \N 6246 \N 673 \N 2682 1.0 1 2020-08-08 21:13:04.64804 2020-08-08 21:13:04.64804 0 \N 6247 \N 1135 \N \N 1.0 0 2020-08-08 23:09:51.945961 2020-08-08 23:09:51.945961 7 646 6248 \N 1137 \N \N 1.0 0 2020-08-08 23:09:51.968403 2020-08-08 23:09:51.968403 7 646 6249 \N 1185 \N \N 1.0 0 2020-08-08 23:10:12.859734 2020-08-08 23:10:12.859734 7 647 6250 \N 1184 \N \N 1.0 0 2020-08-08 23:10:12.88255 2020-08-08 23:10:12.88255 7 647 6251 \N 1180 \N \N 1.0 0 2020-08-08 23:10:12.905409 2020-08-08 23:10:12.905409 7 647 6252 \N 1148 \N \N 1.0 0 2020-08-08 23:10:12.92281 2020-08-08 23:10:12.92281 7 647 6253 \N 1181 \N \N 1.0 0 2020-08-08 23:10:12.956221 2020-08-08 23:10:12.956221 7 647 6254 \N 1148 \N 2683 1.0 1 2020-08-11 00:07:32.300686 2020-08-11 00:07:32.300686 0 \N 6255 \N 1118 \N 2684 1.0 1 2020-08-11 23:58:07.370806 2020-08-11 23:58:07.370806 0 \N 6256 \N 1126 \N 2685 1.0 1 2020-08-12 00:20:35.882926 2020-08-12 00:20:35.882926 0 \N 6257 \N 1148 \N 2686 1.0 1 2020-08-12 21:59:21.86171 2020-08-12 21:59:21.86171 0 \N 6258 \N 1148 \N 2686 1.0 0 2020-08-12 21:59:51.952285 2020-08-12 21:59:51.952285 9 \N 6259 \N 1148 \N 2687 1.0 1 2020-08-12 22:00:17.26191 2020-08-12 22:00:17.26191 0 \N 6260 \N 484 \N 2688 1.0 1 2020-08-13 00:35:54.181719 2020-08-13 00:35:54.181719 0 \N 6261 \N 1180 333 \N 1.0 0 2020-08-13 19:06:58.690547 2020-08-13 19:06:58.690547 1 \N 6262 \N 1149 333 \N 1.0 0 2020-08-13 19:06:58.746591 2020-08-13 19:06:58.746591 1 \N 6263 \N 1193 333 \N 1.0 0 2020-08-13 19:06:58.772768 2020-08-13 19:06:58.772768 1 \N 6264 \N 1194 333 \N 1.0 0 2020-08-13 19:06:58.803502 2020-08-13 19:06:58.803502 1 \N 6265 \N 1118 334 \N 4.0 0 2020-08-13 19:28:20.637986 2020-08-13 19:28:20.637986 1 \N 6266 \N 1126 334 \N 6.0 0 2020-08-13 19:28:20.665597 2020-08-13 19:28:20.665597 1 \N 6267 \N 1159 334 \N 3.0 0 2020-08-13 19:28:20.695137 2020-08-13 19:28:20.695137 1 \N 6268 \N 1195 334 \N 1.0 0 2020-08-13 19:28:20.718989 2020-08-13 19:28:20.718989 1 \N 6269 \N 1118 \N 2689 1.0 1 2020-08-13 19:47:06.673698 2020-08-13 19:47:06.673698 0 \N 6270 \N 1126 \N 2689 1.0 1 2020-08-13 19:47:06.699236 2020-08-13 19:47:06.699236 0 \N 6271 \N 1126 \N 2689 1.0 0 2020-08-13 20:07:21.782858 2020-08-13 20:07:21.782858 3 \N 6272 \N 1118 \N 2689 1.0 0 2020-08-13 20:07:21.827685 2020-08-13 20:07:21.827685 3 \N 6273 \N 1118 \N 2690 1.0 1 2020-08-13 20:15:02.122132 2020-08-13 20:15:02.122132 0 \N 6274 \N 1126 \N 2690 1.0 1 2020-08-13 20:15:02.14804 2020-08-13 20:15:02.14804 0 \N 6275 \N 1126 \N 2690 1.0 0 2020-08-13 20:15:33.20346 2020-08-13 20:15:33.20346 3 \N 6276 \N 1118 \N 2690 1.0 0 2020-08-13 20:15:33.230661 2020-08-13 20:15:33.230661 3 \N 6277 \N 1118 \N 2691 1.0 1 2020-08-13 20:16:48.686156 2020-08-13 20:16:48.686156 0 \N 6278 \N 1126 \N 2691 1.0 1 2020-08-13 20:16:48.719384 2020-08-13 20:16:48.719384 0 \N 6279 \N 498 \N 2692 1.0 1 2020-08-13 21:53:33.92488 2020-08-13 21:53:33.92488 0 \N 6280 \N 64 \N 2692 1.0 1 2020-08-13 21:53:33.952445 2020-08-13 21:53:33.952445 0 \N 6281 \N 537 \N 2692 1.0 1 2020-08-13 21:53:33.981992 2020-08-13 21:53:33.981992 0 \N 6282 \N 644 \N 2692 1.0 1 2020-08-13 21:53:34.017723 2020-08-13 21:53:34.017723 0 \N 6283 \N 119 \N 2692 1.0 1 2020-08-13 21:53:34.05383 2020-08-13 21:53:34.05383 0 \N 6284 \N 787 \N 2693 1.0 1 2020-08-14 00:47:01.271865 2020-08-14 00:47:01.271865 0 \N 6285 \N 907 \N 2694 1.0 1 2020-08-14 00:48:05.829205 2020-08-14 00:48:05.829205 0 \N 6286 \N 1196 335 \N 2.0 0 2020-08-14 05:22:50.361685 2020-08-14 05:22:50.361685 1 \N 6287 \N 1197 335 \N 2.0 0 2020-08-14 05:22:50.388623 2020-08-14 05:22:50.388623 1 \N 6288 \N 1198 335 \N 2.0 0 2020-08-14 05:22:50.414953 2020-08-14 05:22:50.414953 1 \N 6289 \N 1199 335 \N 1.0 0 2020-08-14 05:22:50.439408 2020-08-14 05:22:50.439408 1 \N 6290 \N 1200 335 \N 1.0 0 2020-08-14 05:22:50.463108 2020-08-14 05:22:50.463108 1 \N 6291 \N 1201 335 \N 1.0 0 2020-08-14 05:22:50.485866 2020-08-14 05:22:50.485866 1 \N 6292 \N 1202 335 \N 2.0 0 2020-08-14 05:22:50.509554 2020-08-14 05:22:50.509554 1 \N 6293 \N 1203 335 \N 1.0 0 2020-08-14 05:22:50.533191 2020-08-14 05:22:50.533191 1 \N 6294 \N 1204 335 \N 1.0 0 2020-08-14 05:22:50.556783 2020-08-14 05:22:50.556783 1 \N 6295 \N 1205 335 \N 1.0 0 2020-08-14 05:22:50.580932 2020-08-14 05:22:50.580932 1 \N 6296 \N 1206 335 \N 1.0 0 2020-08-14 05:22:50.604344 2020-08-14 05:22:50.604344 1 \N 6297 \N 1207 335 \N 1.0 0 2020-08-14 05:22:50.626532 2020-08-14 05:22:50.626532 1 \N 6298 \N 1209 335 \N 2.0 0 2020-08-14 05:22:50.648574 2020-08-14 05:22:50.648574 1 \N 6299 \N 1210 335 \N 1.0 0 2020-08-14 05:22:50.671506 2020-08-14 05:22:50.671506 1 \N 6300 \N 1208 335 \N 3.0 0 2020-08-14 05:22:50.693685 2020-08-14 05:22:50.693685 1 \N 6301 \N 1211 335 \N 1.0 0 2020-08-14 05:22:50.716293 2020-08-14 05:22:50.716293 1 \N 6302 \N 1210 336 \N 1.0 0 2020-08-14 05:43:12.793987 2020-08-14 05:43:12.793987 1 \N 6303 \N 147 \N 2695 1.0 1 2020-08-14 16:44:07.059718 2020-08-14 16:44:07.059718 0 \N 6304 \N 537 \N 2696 1.0 1 2020-08-14 18:08:32.972428 2020-08-14 18:08:32.972428 0 \N 6305 \N 619 \N 2696 1.0 1 2020-08-14 18:08:32.996464 2020-08-14 18:08:32.996464 0 \N 6306 \N 761 \N 2697 1.0 1 2020-08-14 18:16:54.40547 2020-08-14 18:16:54.40547 0 \N 6307 \N 208 \N 2698 1.0 1 2020-08-14 18:56:27.884015 2020-08-14 18:56:27.884015 0 \N 6308 \N 600 \N 2698 1.0 1 2020-08-14 18:56:27.910523 2020-08-14 18:56:27.910523 0 \N 6309 \N 1208 337 \N 2.0 0 2020-08-14 19:33:48.513051 2020-08-14 19:33:48.513051 1 \N 6310 \N 1196 337 \N 1.0 0 2020-08-14 19:33:48.5436 2020-08-14 19:33:48.5436 1 \N 6311 \N 1204 337 \N 1.0 0 2020-08-14 19:33:48.572065 2020-08-14 19:33:48.572065 1 \N 6312 \N 1202 337 \N 1.0 0 2020-08-14 19:33:48.600295 2020-08-14 19:33:48.600295 1 \N 6313 \N 1200 337 \N 1.0 0 2020-08-14 19:33:48.630808 2020-08-14 19:33:48.630808 1 \N 6314 \N 1203 337 \N 1.0 0 2020-08-14 19:33:48.660504 2020-08-14 19:33:48.660504 1 \N 6315 \N 1199 337 \N 2.0 0 2020-08-14 19:33:48.69034 2020-08-14 19:33:48.69034 1 \N 6316 \N 1210 337 \N 1.0 0 2020-08-14 19:33:48.722303 2020-08-14 19:33:48.722303 1 \N 6317 \N 1209 337 \N 2.0 0 2020-08-14 19:33:48.7504 2020-08-14 19:33:48.7504 1 \N 6318 \N 1206 337 \N 2.0 0 2020-08-14 19:33:48.778688 2020-08-14 19:33:48.778688 1 \N 6319 \N 1207 337 \N 1.0 0 2020-08-14 19:33:48.807318 2020-08-14 19:33:48.807318 1 \N 6320 \N 238 \N 2699 1.0 1 2020-08-14 20:09:21.289302 2020-08-14 20:09:21.289302 0 \N 6321 \N 498 \N 2699 1.0 1 2020-08-14 20:09:21.316026 2020-08-14 20:09:21.316026 0 \N 6322 \N 1212 338 \N 1.0 0 2020-08-14 20:13:05.825274 2020-08-14 20:13:05.825274 1 \N 6323 \N 1213 338 \N 1.0 0 2020-08-14 20:13:05.850442 2020-08-14 20:13:05.850442 1 \N 6324 \N 1214 338 \N 1.0 0 2020-08-14 20:13:05.885131 2020-08-14 20:13:05.885131 1 \N 6325 \N 1215 338 \N 1.0 0 2020-08-14 20:13:05.915571 2020-08-14 20:13:05.915571 1 \N 6326 \N 1216 338 \N 1.0 0 2020-08-14 20:13:05.94484 2020-08-14 20:13:05.94484 1 \N 6327 \N 1217 338 \N 1.0 0 2020-08-14 20:13:05.971317 2020-08-14 20:13:05.971317 1 \N 6328 \N 1215 339 \N 2.0 0 2020-08-14 20:15:43.161195 2020-08-14 20:15:43.161195 1 \N 6329 \N 1213 340 \N 1.0 0 2020-08-14 20:19:37.75051 2020-08-14 20:19:37.75051 1 \N 6330 \N 851 341 \N 1.0 0 2020-08-14 20:56:43.653456 2020-08-14 20:56:43.653456 1 \N 6331 \N 851 341 \N 1.0 1 2020-08-14 20:56:59.742013 2020-08-14 20:56:59.742013 4 \N 6332 \N 1217 342 \N 1.0 0 2020-08-14 20:57:25.068888 2020-08-14 20:57:25.068888 1 \N 6333 \N 1218 343 \N 1.0 0 2020-08-14 21:02:03.674884 2020-08-14 21:02:03.674884 1 \N 6334 \N 529 \N 2700 1.0 1 2020-08-14 21:34:59.560454 2020-08-14 21:34:59.560454 0 \N 6335 \N 529 \N 2700 1.0 0 2020-08-14 21:36:39.952804 2020-08-14 21:36:39.952804 3 \N 6336 \N 237 \N 2701 1.0 1 2020-08-14 21:41:00.633478 2020-08-14 21:41:00.633478 0 \N 6337 \N 238 \N 2701 1.0 1 2020-08-14 21:41:00.658559 2020-08-14 21:41:00.658559 0 \N 6338 \N 529 \N 2702 1.0 1 2020-08-14 21:42:58.132061 2020-08-14 21:42:58.132061 0 \N 6339 \N 1126 \N 2703 1.0 1 2020-08-14 21:45:10.499418 2020-08-14 21:45:10.499418 0 \N 6340 \N 1173 \N 2704 1.0 1 2020-08-14 21:51:19.901699 2020-08-14 21:51:19.901699 0 \N 6341 \N 237 \N 2705 1.0 1 2020-08-14 21:55:05.96613 2020-08-14 21:55:05.96613 0 \N 6342 \N 1015 \N 2706 1.0 1 2020-08-14 22:01:43.000365 2020-08-14 22:01:43.000365 0 \N 6343 \N 1219 344 \N 2.0 0 2020-08-14 22:51:27.994874 2020-08-14 22:51:27.994874 1 \N 6344 \N 1220 344 \N 2.0 0 2020-08-14 22:51:28.021451 2020-08-14 22:51:28.021451 1 \N 6345 \N 1221 344 \N 1.0 0 2020-08-14 22:51:28.053669 2020-08-14 22:51:28.053669 1 \N 6346 \N 1222 344 \N 1.0 0 2020-08-14 22:51:28.084834 2020-08-14 22:51:28.084834 1 \N 6347 \N 1223 344 \N 1.0 0 2020-08-14 22:51:28.116409 2020-08-14 22:51:28.116409 1 \N 6348 \N 1224 344 \N 2.0 0 2020-08-14 22:51:28.14984 2020-08-14 22:51:28.14984 1 \N 6349 \N 1225 344 \N 3.0 0 2020-08-14 22:51:28.184328 2020-08-14 22:51:28.184328 1 \N 6350 \N 1226 344 \N 2.0 0 2020-08-14 22:51:28.218776 2020-08-14 22:51:28.218776 1 \N 6351 \N 1227 344 \N 1.0 0 2020-08-14 22:51:28.247726 2020-08-14 22:51:28.247726 1 \N 6352 \N 1228 344 \N 1.0 0 2020-08-14 22:51:28.274191 2020-08-14 22:51:28.274191 1 \N 6353 \N 1229 344 \N 1.0 0 2020-08-14 22:51:28.302933 2020-08-14 22:51:28.302933 1 \N 6354 \N 1230 344 \N 3.0 0 2020-08-14 22:51:28.32943 2020-08-14 22:51:28.32943 1 \N 6355 \N 1231 344 \N 2.0 0 2020-08-14 22:51:28.35428 2020-08-14 22:51:28.35428 1 \N 6356 \N 1227 345 \N 1.0 0 2020-08-14 23:35:48.37753 2020-08-14 23:35:48.37753 1 \N 6357 \N 1232 345 \N 2.0 0 2020-08-14 23:35:48.403623 2020-08-14 23:35:48.403623 1 \N 6358 \N 1233 345 \N 1.0 0 2020-08-14 23:35:48.429422 2020-08-14 23:35:48.429422 1 \N 6359 \N 1234 345 \N 1.0 0 2020-08-14 23:35:48.455081 2020-08-14 23:35:48.455081 1 \N 6360 \N 1235 345 \N 1.0 0 2020-08-14 23:35:48.480445 2020-08-14 23:35:48.480445 1 \N 6361 \N 1236 345 \N 2.0 0 2020-08-14 23:35:48.505205 2020-08-14 23:35:48.505205 1 \N 6362 \N 1237 345 \N 1.0 0 2020-08-14 23:35:48.544947 2020-08-14 23:35:48.544947 1 \N 6363 \N 1238 345 \N 1.0 0 2020-08-14 23:35:48.576399 2020-08-14 23:35:48.576399 1 \N 6364 \N 1239 345 \N 1.0 0 2020-08-14 23:35:48.607446 2020-08-14 23:35:48.607446 1 \N 6365 \N 1240 345 \N 1.0 0 2020-08-14 23:35:48.643227 2020-08-14 23:35:48.643227 1 \N 6366 \N 1241 345 \N 1.0 0 2020-08-14 23:35:48.678649 2020-08-14 23:35:48.678649 1 \N 6367 \N 1242 345 \N 1.0 0 2020-08-14 23:35:48.711868 2020-08-14 23:35:48.711868 1 \N 6368 \N 1237 347 \N 1.0 0 2020-08-14 23:45:29.592037 2020-08-14 23:45:29.592037 1 \N 6369 \N 1227 347 \N 1.0 0 2020-08-14 23:45:29.620424 2020-08-14 23:45:29.620424 1 \N 6370 \N 1207 \N 2707 1.0 1 2020-08-14 23:54:47.006995 2020-08-14 23:54:47.006995 0 \N 6371 \N 1225 348 \N 2.0 0 2020-08-15 00:14:02.944433 2020-08-15 00:14:02.944433 1 \N 6372 \N 1238 348 \N 2.0 0 2020-08-15 00:14:02.972663 2020-08-15 00:14:02.972663 1 \N 6373 \N 1233 348 \N 1.0 0 2020-08-15 00:14:03.001848 2020-08-15 00:14:03.001848 1 \N 6374 \N 1240 348 \N 1.0 0 2020-08-15 00:14:03.030899 2020-08-15 00:14:03.030899 1 \N 6375 \N 1234 348 \N 2.0 0 2020-08-15 00:14:03.059552 2020-08-15 00:14:03.059552 1 \N 6376 \N 1232 348 \N 2.0 0 2020-08-15 00:14:03.095526 2020-08-15 00:14:03.095526 1 \N 6377 \N 1229 348 \N 2.0 0 2020-08-15 00:14:03.124779 2020-08-15 00:14:03.124779 1 \N 6378 \N 1237 348 \N 2.0 0 2020-08-15 00:14:03.152993 2020-08-15 00:14:03.152993 1 \N 6379 \N 1242 348 \N 3.0 0 2020-08-15 00:14:03.18341 2020-08-15 00:14:03.18341 1 \N 6380 \N 1239 348 \N 1.0 0 2020-08-15 00:14:03.211459 2020-08-15 00:14:03.211459 1 \N 6381 \N 1224 348 \N 2.0 0 2020-08-15 00:14:03.242967 2020-08-15 00:14:03.242967 1 \N 6382 \N 1221 348 \N 2.0 0 2020-08-15 00:14:03.269665 2020-08-15 00:14:03.269665 1 \N 6383 \N 1230 348 \N 4.0 0 2020-08-15 00:14:03.296645 2020-08-15 00:14:03.296645 1 \N 6384 \N 1236 348 \N 2.0 0 2020-08-15 00:14:03.324646 2020-08-15 00:14:03.324646 1 \N 6385 \N 1243 349 \N 2.0 0 2020-08-15 00:28:07.745725 2020-08-15 00:28:07.745725 1 \N 6386 \N 1244 349 \N 2.0 0 2020-08-15 00:28:07.77028 2020-08-15 00:28:07.77028 1 \N 6387 \N 1245 349 \N 1.0 0 2020-08-15 00:28:07.794119 2020-08-15 00:28:07.794119 1 \N 6388 \N 1246 349 \N 2.0 0 2020-08-15 00:28:07.818256 2020-08-15 00:28:07.818256 1 \N 6389 \N 1247 350 \N 2.0 0 2020-08-15 00:35:44.255808 2020-08-15 00:35:44.255808 1 \N 6390 \N 1248 350 \N 1.0 0 2020-08-15 00:35:44.277612 2020-08-15 00:35:44.277612 1 \N 6391 \N 1249 350 \N 1.0 0 2020-08-15 00:35:44.301122 2020-08-15 00:35:44.301122 1 \N 6392 \N 1250 350 \N 1.0 0 2020-08-15 00:35:44.323394 2020-08-15 00:35:44.323394 1 \N 6393 \N 257 \N 2708 1.0 1 2020-08-15 16:07:26.009084 2020-08-15 16:07:26.009084 0 \N 6394 \N 578 \N 2708 1.0 1 2020-08-15 16:07:26.035689 2020-08-15 16:07:26.035689 0 \N 6395 \N 408 \N 2709 1.0 1 2020-08-15 16:16:03.406046 2020-08-15 16:16:03.406046 0 \N 6396 \N 84 \N 2709 1.0 1 2020-08-15 16:16:03.429854 2020-08-15 16:16:03.429854 0 \N 6397 \N 206 \N 2710 1.0 1 2020-08-15 16:17:40.609245 2020-08-15 16:17:40.609245 0 \N 6398 \N 84 \N 2710 1.0 1 2020-08-15 16:17:40.63209 2020-08-15 16:17:40.63209 0 \N 6399 \N 208 \N 2710 1.0 1 2020-08-15 16:17:40.654573 2020-08-15 16:17:40.654573 0 \N 6400 \N 320 \N 2711 1.0 1 2020-08-15 16:24:22.022043 2020-08-15 16:24:22.022043 0 \N 6401 \N 81 \N 2711 1.0 1 2020-08-15 16:24:22.048361 2020-08-15 16:24:22.048361 0 \N 6402 \N 579 \N \N 2.0 0 2020-08-15 16:29:54.809903 2020-08-15 16:29:54.809903 7 650 6403 \N 579 \N 2712 1.0 1 2020-08-15 16:31:09.665281 2020-08-15 16:31:09.665281 0 \N 6404 \N 200 \N \N 1.0 0 2020-08-15 17:34:04.454437 2020-08-15 17:34:04.454437 7 651 6405 \N 521 \N \N 3.0 0 2020-08-15 17:39:49.880371 2020-08-15 17:39:49.880371 7 652 6406 \N 200 \N 2713 1.0 1 2020-08-15 17:48:08.030442 2020-08-15 17:48:08.030442 0 \N 6407 \N 78 \N 2713 1.0 1 2020-08-15 17:48:08.054657 2020-08-15 17:48:08.054657 0 \N 6408 \N 521 \N 2713 1.0 1 2020-08-15 17:48:08.083403 2020-08-15 17:48:08.083403 0 \N 6409 \N 319 \N 2714 1.0 1 2020-08-15 17:48:56.95467 2020-08-15 17:48:56.95467 0 \N 6410 \N 554 \N 2715 1.0 1 2020-08-15 18:53:08.037798 2020-08-15 18:53:08.037798 0 \N 6411 \N 1015 \N 2715 1.0 1 2020-08-15 18:53:08.097353 2020-08-15 18:53:08.097353 0 \N 6412 \N 1118 \N 2716 1.0 1 2020-08-15 19:04:02.533443 2020-08-15 19:04:02.533443 0 \N 6413 \N 682 \N \N 1.0 0 2020-08-15 20:06:55.421899 2020-08-15 20:06:55.421899 7 653 6414 \N 475 \N \N 3.0 0 2020-08-15 20:09:42.594865 2020-08-15 20:09:42.594865 7 654 6415 \N 637 \N 2717 1.0 1 2020-08-15 20:11:04.277831 2020-08-15 20:11:04.277831 0 \N 6416 \N 1014 \N 2717 1.0 1 2020-08-15 20:11:04.305727 2020-08-15 20:11:04.305727 0 \N 6417 \N 682 \N 2717 1.0 1 2020-08-15 20:11:04.335328 2020-08-15 20:11:04.335328 0 \N 6418 \N 475 \N 2717 1.0 1 2020-08-15 20:11:04.360402 2020-08-15 20:11:04.360402 0 \N 6419 \N 1141 351 \N 1.0 0 2020-08-15 20:22:04.542494 2020-08-15 20:22:04.542494 1 \N 6420 \N 1251 351 \N 1.0 0 2020-08-15 20:22:04.565948 2020-08-15 20:22:04.565948 1 \N 6421 \N 185 \N \N 2.0 0 2020-08-15 21:32:19.055719 2020-08-15 21:32:19.055719 7 655 6422 \N 185 \N 2718 1.0 1 2020-08-15 21:33:05.429383 2020-08-15 21:33:05.429383 0 \N 6423 \N 596 \N 2719 1.0 1 2020-08-15 21:57:38.81325 2020-08-15 21:57:38.81325 0 \N 6424 \N 1252 352 \N 1.0 0 2020-08-15 23:02:56.743814 2020-08-15 23:02:56.743814 1 \N 6425 \N 1253 352 \N 1.0 0 2020-08-15 23:02:56.756665 2020-08-15 23:02:56.756665 1 \N 6426 \N 1254 352 \N 1.0 0 2020-08-15 23:02:56.768858 2020-08-15 23:02:56.768858 1 \N 6427 \N 1255 352 \N 1.0 0 2020-08-15 23:02:56.781387 2020-08-15 23:02:56.781387 1 \N 6428 \N 1256 352 \N 1.0 0 2020-08-15 23:02:56.793212 2020-08-15 23:02:56.793212 1 \N 6429 \N 1257 352 \N 1.0 0 2020-08-15 23:02:56.820548 2020-08-15 23:02:56.820548 1 \N 6430 \N 1258 352 \N 1.0 0 2020-08-15 23:02:56.832352 2020-08-15 23:02:56.832352 1 \N 6431 \N 1259 352 \N 1.0 0 2020-08-15 23:02:56.843915 2020-08-15 23:02:56.843915 1 \N 6432 \N 620 \N 2720 1.0 1 2020-08-15 23:28:59.38136 2020-08-15 23:28:59.38136 0 \N 6433 \N 1260 353 \N 1.0 0 2020-08-15 23:31:03.809938 2020-08-15 23:31:03.809938 1 \N 6434 \N 367 \N 2721 4.0 1 2020-08-15 23:37:11.404445 2020-08-15 23:37:11.404445 0 \N 6435 \N 705 \N 2721 1.0 1 2020-08-15 23:37:11.435496 2020-08-15 23:37:11.435496 0 \N 6436 \N 408 \N 2722 1.0 1 2020-08-15 23:41:45.313493 2020-08-15 23:41:45.313493 0 \N 6437 \N 1261 354 \N 1.0 0 2020-08-16 00:30:39.508874 2020-08-16 00:30:39.508874 1 \N 6438 \N 1262 354 \N 2.0 0 2020-08-16 00:30:39.524841 2020-08-16 00:30:39.524841 1 \N 6439 \N 1263 354 \N 2.0 0 2020-08-16 00:30:39.539136 2020-08-16 00:30:39.539136 1 \N 6440 \N 1264 354 \N 1.0 0 2020-08-16 00:30:39.555039 2020-08-16 00:30:39.555039 1 \N 6441 \N 1265 354 \N 1.0 0 2020-08-16 00:30:39.568805 2020-08-16 00:30:39.568805 1 \N 6442 \N 1266 354 \N 1.0 0 2020-08-16 00:30:39.581263 2020-08-16 00:30:39.581263 1 \N 6443 \N 1267 354 \N 1.0 0 2020-08-16 00:30:39.5948 2020-08-16 00:30:39.5948 1 \N 6444 \N 1268 354 \N 1.0 0 2020-08-16 00:30:39.607619 2020-08-16 00:30:39.607619 1 \N 6445 \N 1269 354 \N 2.0 0 2020-08-16 00:30:39.62095 2020-08-16 00:30:39.62095 1 \N 6446 \N 1270 355 \N 1.0 0 2020-08-17 00:30:04.112451 2020-08-17 00:30:04.112451 1 \N 6447 \N 1271 355 \N 1.0 0 2020-08-17 00:30:04.137726 2020-08-17 00:30:04.137726 1 \N 6448 \N 1272 355 \N 1.0 0 2020-08-17 00:30:04.171343 2020-08-17 00:30:04.171343 1 \N 6449 \N 1273 355 \N 1.0 0 2020-08-17 00:30:04.196959 2020-08-17 00:30:04.196959 1 \N 6450 \N 1269 355 \N 1.0 0 2020-08-17 00:30:04.225221 2020-08-17 00:30:04.225221 1 \N 6451 \N 1274 355 \N 1.0 0 2020-08-17 00:30:04.254944 2020-08-17 00:30:04.254944 1 \N 6452 \N 1275 355 \N 1.0 0 2020-08-17 00:30:04.290082 2020-08-17 00:30:04.290082 1 \N 6453 \N 1276 355 \N 1.0 0 2020-08-17 00:30:04.313335 2020-08-17 00:30:04.313335 1 \N 6454 \N 1259 \N \N 1.0 0 2020-08-17 00:50:45.8391 2020-08-17 00:50:45.8391 7 656 6455 \N 1263 \N \N 1.0 0 2020-08-17 00:50:45.862091 2020-08-17 00:50:45.862091 7 656 6456 \N 1277 356 \N 1.0 0 2020-08-17 01:52:36.392489 2020-08-17 01:52:36.392489 1 \N 6457 \N 164 \N 2723 1.0 1 2020-08-17 16:33:56.149735 2020-08-17 16:33:56.149735 0 \N 6458 \N 508 \N 2723 1.0 1 2020-08-17 16:33:56.178056 2020-08-17 16:33:56.178056 0 \N 6459 \N 395 \N 2723 1.0 1 2020-08-17 16:33:56.20454 2020-08-17 16:33:56.20454 0 \N 6460 \N 217 \N 2724 1.0 1 2020-08-17 16:56:06.511044 2020-08-17 16:56:06.511044 0 \N 6461 \N 235 \N 2724 1.0 1 2020-08-17 16:56:06.536374 2020-08-17 16:56:06.536374 0 \N 6462 \N 206 \N 2724 1.0 1 2020-08-17 16:56:06.560264 2020-08-17 16:56:06.560264 0 \N 6463 \N 80 \N 2724 1.0 1 2020-08-17 16:56:06.583911 2020-08-17 16:56:06.583911 0 \N 6464 \N 1265 \N \N 1.0 0 2020-08-17 18:57:32.348064 2020-08-17 18:57:32.348064 7 659 6465 \N 1252 \N \N 1.0 0 2020-08-17 18:57:32.372152 2020-08-17 18:57:32.372152 7 659 6466 \N 1263 \N \N 1.0 0 2020-08-17 18:57:32.394273 2020-08-17 18:57:32.394273 7 659 6467 \N 1256 \N \N 1.0 0 2020-08-17 18:57:32.416086 2020-08-17 18:57:32.416086 7 659 6468 \N 1257 \N \N 1.0 0 2020-08-17 18:57:32.438042 2020-08-17 18:57:32.438042 7 659 6469 \N 1267 \N \N 1.0 0 2020-08-17 18:57:32.462092 2020-08-17 18:57:32.462092 7 659 6470 \N 1268 \N \N 1.0 0 2020-08-17 18:57:32.488638 2020-08-17 18:57:32.488638 7 659 6471 \N 1255 \N \N 1.0 0 2020-08-17 18:57:32.51466 2020-08-17 18:57:32.51466 7 659 6472 \N 1254 \N \N 1.0 0 2020-08-17 18:57:32.5365 2020-08-17 18:57:32.5365 7 659 6473 \N 1266 \N \N 1.0 0 2020-08-17 18:57:32.573416 2020-08-17 18:57:32.573416 7 659 6474 \N 1264 \N \N 1.0 0 2020-08-17 18:57:32.604893 2020-08-17 18:57:32.604893 7 659 6475 \N 1262 \N \N 2.0 0 2020-08-17 18:57:32.627517 2020-08-17 18:57:32.627517 7 659 6476 \N 1258 \N \N 1.0 0 2020-08-17 18:57:32.651587 2020-08-17 18:57:32.651587 7 659 6477 \N 1118 \N 2725 1.0 1 2020-08-17 19:16:11.782697 2020-08-17 19:16:11.782697 0 \N 6478 \N 1278 357 \N 1.0 0 2020-08-17 19:22:09.329124 2020-08-17 19:22:09.329124 1 \N 6479 \N 1279 357 \N 1.0 0 2020-08-17 19:22:09.355422 2020-08-17 19:22:09.355422 1 \N 6480 \N 1280 357 \N 1.0 0 2020-08-17 19:22:09.378697 2020-08-17 19:22:09.378697 1 \N 6481 \N 1281 357 \N 1.0 0 2020-08-17 19:22:09.403434 2020-08-17 19:22:09.403434 1 \N 6482 \N 1282 357 \N 1.0 0 2020-08-17 19:22:09.42896 2020-08-17 19:22:09.42896 1 \N 6483 \N 1283 357 \N 1.0 0 2020-08-17 19:22:09.45198 2020-08-17 19:22:09.45198 1 \N 6484 \N 1270 357 \N 1.0 0 2020-08-17 19:22:09.47935 2020-08-17 19:22:09.47935 1 \N 6485 \N 1271 357 \N 1.0 0 2020-08-17 19:22:09.507291 2020-08-17 19:22:09.507291 1 \N 6486 \N 1284 357 \N 1.0 0 2020-08-17 19:22:09.530267 2020-08-17 19:22:09.530267 1 \N 6487 \N 1285 357 \N 1.0 0 2020-08-17 19:22:09.552723 2020-08-17 19:22:09.552723 1 \N 6488 \N 1286 357 \N 1.0 0 2020-08-17 19:22:09.575487 2020-08-17 19:22:09.575487 1 \N 6489 \N 1274 357 \N 1.0 0 2020-08-17 19:22:09.602575 2020-08-17 19:22:09.602575 1 \N 6490 \N 1287 357 \N 1.0 0 2020-08-17 19:22:09.625384 2020-08-17 19:22:09.625384 1 \N 6491 \N 1272 358 \N 1.0 0 2020-08-17 19:29:07.151197 2020-08-17 19:29:07.151197 1 \N 6492 \N 1288 358 \N 1.0 0 2020-08-17 19:29:07.176217 2020-08-17 19:29:07.176217 1 \N 6493 \N 1289 358 \N 1.0 0 2020-08-17 19:29:07.201101 2020-08-17 19:29:07.201101 1 \N 6494 \N 1290 358 \N 1.0 0 2020-08-17 19:29:07.224601 2020-08-17 19:29:07.224601 1 \N 6495 \N 1291 358 \N 1.0 0 2020-08-17 19:29:07.247409 2020-08-17 19:29:07.247409 1 \N 6496 \N 1269 359 \N 1.0 0 2020-08-17 19:29:42.915383 2020-08-17 19:29:42.915383 1 \N 6497 \N 529 \N \N 2.0 0 2020-08-17 19:35:56.173224 2020-08-17 19:35:56.173224 7 660 6498 \N 529 \N 2726 1.0 1 2020-08-17 19:36:30.746893 2020-08-17 19:36:30.746893 0 \N 6499 \N 1253 \N \N 1.0 0 2020-08-17 19:42:50.226763 2020-08-17 19:42:50.226763 7 661 6500 \N 1292 360 \N 1.0 0 2020-08-17 20:16:59.082226 2020-08-17 20:16:59.082226 1 \N 6501 \N 1261 \N \N 1.0 0 2020-08-17 20:18:05.558956 2020-08-17 20:18:05.558956 7 662 6502 \N 1137 \N 2727 1.0 1 2020-08-18 18:08:16.527843 2020-08-18 18:08:16.527843 0 \N 6503 \N 537 \N 2728 1.0 1 2020-08-18 18:26:41.666385 2020-08-18 18:26:41.666385 0 \N 6504 \N 1159 \N 2729 1.0 1 2020-08-18 18:52:22.864032 2020-08-18 18:52:22.864032 0 \N 6505 \N 628 \N 2730 1.0 1 2020-08-18 21:37:32.139474 2020-08-18 21:37:32.139474 0 \N 6506 \N 494 \N 2731 1.0 1 2020-08-18 22:24:24.42379 2020-08-18 22:24:24.42379 0 \N 6507 \N 1269 \N 2732 1.0 1 2020-08-18 22:38:09.987874 2020-08-18 22:38:09.987874 0 \N 6508 \N 1255 \N 2732 1.0 1 2020-08-18 22:38:10.027536 2020-08-18 22:38:10.027536 0 \N 6509 \N 1255 \N 2732 1.0 0 2020-08-18 22:39:24.087784 2020-08-18 22:39:24.087784 3 \N 6510 \N 1269 \N 2732 1.0 0 2020-08-18 22:39:24.114896 2020-08-18 22:39:24.114896 3 \N 6511 \N 1285 \N 2733 1.0 1 2020-08-18 22:45:21.68006 2020-08-18 22:45:21.68006 0 \N 6512 \N 1255 \N 2733 1.0 1 2020-08-18 22:45:21.706629 2020-08-18 22:45:21.706629 0 \N 6513 \N 1269 \N 2733 1.0 1 2020-08-18 22:45:21.732508 2020-08-18 22:45:21.732508 0 \N 6514 \N 1141 362 \N 1.0 0 2020-08-18 23:08:42.516152 2020-08-18 23:08:42.516152 1 \N 6515 \N 1141 \N 2734 1.0 1 2020-08-18 23:10:41.387216 2020-08-18 23:10:41.387216 0 \N 6516 \N 703 \N 2735 1.0 1 2020-08-19 00:03:06.838673 2020-08-19 00:03:06.838673 0 \N 6517 \N 1126 \N 2736 1.0 1 2020-08-19 18:07:03.123892 2020-08-19 18:07:03.123892 0 \N 6518 \N 581 \N 2737 1.0 1 2020-08-19 21:15:07.087781 2020-08-19 21:15:07.087781 0 \N 6519 \N 323 \N 2738 1.0 1 2020-08-19 21:25:16.771386 2020-08-19 21:25:16.771386 0 \N 6520 \N 673 \N 2739 1.0 1 2020-08-19 22:27:17.223564 2020-08-19 22:27:17.223564 0 \N 6521 \N 1126 \N 2740 1.0 1 2020-08-19 22:37:15.437883 2020-08-19 22:37:15.437883 0 \N 6522 \N 1203 \N 2740 1.0 1 2020-08-19 22:37:15.466936 2020-08-19 22:37:15.466936 0 \N 6523 \N 1196 \N 2740 1.0 1 2020-08-19 22:37:15.492825 2020-08-19 22:37:15.492825 0 \N 6524 \N 1242 \N 2740 1.0 1 2020-08-19 22:37:15.532532 2020-08-19 22:37:15.532532 0 \N 6525 \N 1091 \N 2740 1.0 1 2020-08-19 22:37:15.558412 2020-08-19 22:37:15.558412 0 \N 6526 \N 988 \N 2741 1.0 1 2020-08-19 22:44:22.310183 2020-08-19 22:44:22.310183 0 \N 6527 \N 1017 \N 2742 1.0 1 2020-08-19 23:29:49.869733 2020-08-19 23:29:49.869733 0 \N 6528 \N 1009 \N 2743 1.0 1 2020-08-19 23:30:57.252529 2020-08-19 23:30:57.252529 0 \N 6529 \N 1126 \N 2744 1.0 1 2020-08-19 23:43:48.948899 2020-08-19 23:43:48.948899 0 \N 6530 \N 1182 \N 2744 1.0 1 2020-08-19 23:43:48.975146 2020-08-19 23:43:48.975146 0 \N 6531 \N 1025 \N 2745 1.0 1 2020-08-19 23:58:09.765952 2020-08-19 23:58:09.765952 0 \N 6532 \N 236 \N 2745 1.0 1 2020-08-19 23:58:09.787662 2020-08-19 23:58:09.787662 0 \N 6533 \N 103 \N 2745 1.0 1 2020-08-19 23:58:09.809091 2020-08-19 23:58:09.809091 0 \N 6534 \N 1254 \N 2746 1.0 1 2020-08-19 23:58:58.966357 2020-08-19 23:58:58.966357 0 \N 6535 \N 435 \N 2747 1.0 1 2020-08-20 19:21:28.117159 2020-08-20 19:21:28.117159 0 \N 6536 \N 521 \N 2747 1.0 1 2020-08-20 19:21:28.145748 2020-08-20 19:21:28.145748 0 \N 6537 \N 1204 \N 2748 1.0 1 2020-08-20 23:10:48.435982 2020-08-20 23:10:48.435982 0 \N 6538 \N 1226 \N 2748 1.0 1 2020-08-20 23:10:48.464461 2020-08-20 23:10:48.464461 0 \N 6539 \N 1213 \N 2748 2.0 1 2020-08-20 23:10:48.493847 2020-08-20 23:10:48.493847 0 \N 6540 \N 630 \N 2748 1.0 1 2020-08-20 23:10:48.52232 2020-08-20 23:10:48.52232 0 \N 6541 \N 494 \N 2749 1.0 1 2020-08-21 21:18:49.137774 2020-08-21 21:18:49.137774 0 \N 6542 \N 968 \N 2750 1.0 1 2020-08-21 21:47:03.161721 2020-08-21 21:47:03.161721 0 \N 6543 \N 1126 \N 2751 1.0 1 2020-08-21 22:59:40.648881 2020-08-21 22:59:40.648881 0 \N 6544 \N 1126 \N 2752 2.0 1 2020-08-21 23:02:33.380502 2020-08-21 23:02:33.380502 0 \N 6545 \N 1025 \N 2753 1.0 1 2020-08-22 17:01:56.538275 2020-08-22 17:01:56.538275 0 \N 6546 \N 335 \N \N 1.0 0 2020-08-22 18:15:45.305881 2020-08-22 18:15:45.305881 7 663 6547 \N 38 \N \N 1.0 0 2020-08-22 18:15:45.32414 2020-08-22 18:15:45.32414 7 663 6548 \N 339 \N \N 1.0 0 2020-08-22 18:15:45.342218 2020-08-22 18:15:45.342218 7 663 6549 \N 275 \N 2754 1.0 1 2020-08-22 18:16:40.079405 2020-08-22 18:16:40.079405 0 \N 6550 \N 38 \N 2754 1.0 1 2020-08-22 18:16:40.103043 2020-08-22 18:16:40.103043 0 \N 6551 \N 414 \N 2754 1.0 1 2020-08-22 18:16:40.12637 2020-08-22 18:16:40.12637 0 \N 6552 \N 1112 \N \N 1.0 0 2020-08-22 18:20:03.2306 2020-08-22 18:20:03.2306 7 657 6553 \N 1035 \N \N 1.0 0 2020-08-22 18:20:03.252828 2020-08-22 18:20:03.252828 7 657 6554 \N 830 \N \N 1.0 0 2020-08-22 18:20:03.275807 2020-08-22 18:20:03.275807 7 657 6555 \N 705 \N \N 2.0 0 2020-08-22 18:20:03.297971 2020-08-22 18:20:03.297971 7 657 6556 \N 1070 \N \N 1.0 0 2020-08-22 18:20:03.321294 2020-08-22 18:20:03.321294 7 657 6557 \N 1034 \N \N 1.0 0 2020-08-22 18:20:03.3417 2020-08-22 18:20:03.3417 7 657 6558 \N 1076 \N \N 1.0 0 2020-08-22 18:20:03.365325 2020-08-22 18:20:03.365325 7 657 6559 \N 1260 \N \N 1.0 0 2020-08-22 18:20:03.387256 2020-08-22 18:20:03.387256 7 657 6560 \N 1085 \N \N 1.0 0 2020-08-22 18:20:03.407933 2020-08-22 18:20:03.407933 7 657 6561 \N 1116 \N \N 1.0 0 2020-08-22 18:20:03.428656 2020-08-22 18:20:03.428656 7 657 6562 \N 1081 \N \N 1.0 0 2020-08-22 18:20:03.449439 2020-08-22 18:20:03.449439 7 657 6563 \N 1188 \N 2755 1.0 1 2020-08-22 20:54:56.173369 2020-08-22 20:54:56.173369 0 \N 6564 \N 1126 \N 2756 1.0 1 2020-08-23 00:16:43.054723 2020-08-23 00:16:43.054723 0 \N 6565 \N 680 \N 2757 1.0 1 2020-08-24 16:18:15.699508 2020-08-24 16:18:15.699508 0 \N 6566 \N 620 \N 2757 1.0 1 2020-08-24 16:18:15.726042 2020-08-24 16:18:15.726042 0 \N 6567 \N 1236 \N 2758 1.0 1 2020-08-24 18:24:19.545911 2020-08-24 18:24:19.545911 0 \N 6568 \N 1118 \N 2759 1.0 1 2020-08-24 19:34:26.155018 2020-08-24 19:34:26.155018 0 \N 6569 \N 1126 \N 2759 1.0 1 2020-08-24 19:34:26.17831 2020-08-24 19:34:26.17831 0 \N 6570 \N 687 \N 2760 1.0 1 2020-08-24 20:39:36.355709 2020-08-24 20:39:36.355709 0 \N 6571 \N 575 \N 2761 1.0 1 2020-08-24 21:11:34.981195 2020-08-24 21:11:34.981195 0 \N 6572 \N 1002 \N 2762 1.0 1 2020-08-24 21:37:58.903371 2020-08-24 21:37:58.903371 0 \N 6573 \N 1004 \N \N 2.0 0 2020-08-24 22:03:44.014693 2020-08-24 22:03:44.014693 7 665 6574 \N 1004 \N 2763 1.0 1 2020-08-24 22:04:43.682366 2020-08-24 22:04:43.682366 0 \N 6575 \N 1230 \N 2763 1.0 1 2020-08-24 22:04:43.70917 2020-08-24 22:04:43.70917 0 \N 6576 \N 695 \N \N 1.0 0 2020-08-24 22:12:21.035638 2020-08-24 22:12:21.035638 7 664 6577 \N 1004 \N \N 2.0 0 2020-08-24 22:12:48.244582 2020-08-24 22:12:48.244582 7 649 6578 \N 1012 \N \N 3.0 0 2020-08-24 22:12:48.262775 2020-08-24 22:12:48.262775 7 649 6579 \N 998 \N \N 2.0 0 2020-08-24 22:12:48.28083 2020-08-24 22:12:48.28083 7 649 6580 \N 590 \N \N 1.0 0 2020-08-24 22:12:48.296318 2020-08-24 22:12:48.296318 7 649 6581 \N 1005 \N \N 3.0 0 2020-08-24 22:12:48.316982 2020-08-24 22:12:48.316982 7 649 6582 \N 590 \N \N 1.0 0 2020-08-24 22:13:00.613232 2020-08-24 22:13:00.613232 7 645 6583 \N 1004 \N \N 2.0 0 2020-08-24 22:39:48.602356 2020-08-24 22:39:48.602356 7 666 6584 \N 1118 \N 2764 1.0 1 2020-08-24 22:54:56.922128 2020-08-24 22:54:56.922128 0 \N 6585 \N 907 \N 2764 1.0 1 2020-08-24 22:54:56.944964 2020-08-24 22:54:56.944964 0 \N 6586 \N 669 \N 2765 1.0 1 2020-08-25 00:47:09.545648 2020-08-25 00:47:09.545648 0 \N 6587 \N 369 \N 2766 1.0 1 2020-08-25 00:49:31.464532 2020-08-25 00:49:31.464532 0 \N 6588 \N 494 \N 2767 1.0 1 2020-08-25 21:57:11.232786 2020-08-25 21:57:11.232786 0 \N 6589 \N 628 \N 2767 1.0 1 2020-08-25 21:57:11.258346 2020-08-25 21:57:11.258346 0 \N 6590 \N 627 \N 2767 1.0 1 2020-08-25 21:57:11.28139 2020-08-25 21:57:11.28139 0 \N 6591 \N 624 \N 2767 1.0 1 2020-08-25 21:57:11.304188 2020-08-25 21:57:11.304188 0 \N 6592 \N 501 \N 2767 1.0 1 2020-08-25 21:57:11.327605 2020-08-25 21:57:11.327605 0 \N 6593 \N 527 \N 2767 1.0 1 2020-08-25 21:57:11.351232 2020-08-25 21:57:11.351232 0 \N 6594 \N 221 \N 2767 1.0 1 2020-08-25 21:57:11.373324 2020-08-25 21:57:11.373324 0 \N 6595 \N 1118 \N \N 1.0 0 2020-08-25 22:22:31.807519 2020-08-25 22:22:31.807519 7 667 6596 \N 1040 \N \N 1.0 0 2020-08-25 22:24:56.715701 2020-08-25 22:24:56.715701 7 658 6597 \N 1066 \N \N 1.0 0 2020-08-25 22:24:56.762342 2020-08-25 22:24:56.762342 7 658 6598 \N 1045 \N \N 1.0 0 2020-08-25 22:24:56.805045 2020-08-25 22:24:56.805045 7 658 6599 \N 1126 \N \N 2.0 0 2020-08-25 22:25:31.71807 2020-08-25 22:25:31.71807 7 668 6600 \N 269 \N 2768 2.0 1 2020-08-25 22:26:41.633107 2020-08-25 22:26:41.633107 0 \N 6601 \N 60 \N 2769 1.0 1 2020-08-25 22:50:33.922291 2020-08-25 22:50:33.922291 0 \N 6602 \N 991 \N 2769 1.0 1 2020-08-25 22:50:33.942453 2020-08-25 22:50:33.942453 0 \N 6603 \N 654 \N 2770 1.0 1 2020-08-25 22:59:28.353092 2020-08-25 22:59:28.353092 0 \N 6604 \N 907 \N 2770 1.0 1 2020-08-25 22:59:28.373412 2020-08-25 22:59:28.373412 0 \N 6605 \N 548 363 \N 1.0 0 2020-08-25 23:10:18.718101 2020-08-25 23:10:18.718101 1 \N 6606 \N 548 \N 2771 1.0 1 2020-08-25 23:14:01.680995 2020-08-25 23:14:01.680995 0 \N 6607 \N 684 \N 2772 1.0 1 2020-08-25 23:50:07.736149 2020-08-25 23:50:07.736149 0 \N 6608 \N 722 \N 2773 1.0 1 2020-08-26 00:48:46.758184 2020-08-26 00:48:46.758184 0 \N 6609 \N 684 \N 2774 1.0 1 2020-08-26 01:19:09.381802 2020-08-26 01:19:09.381802 0 \N 6610 \N 1064 \N 2775 1.0 1 2020-08-26 18:32:54.573931 2020-08-26 18:32:54.573931 0 \N 6611 \N 988 \N 2776 1.0 1 2020-08-26 19:15:28.465934 2020-08-26 19:15:28.465934 0 \N 6612 \N 237 \N 2777 1.0 1 2020-08-26 20:26:35.2741 2020-08-26 20:26:35.2741 0 \N 6613 \N 299 \N 2777 1.0 1 2020-08-26 20:26:35.298683 2020-08-26 20:26:35.298683 0 \N 6614 \N 86 \N 2777 1.0 1 2020-08-26 20:26:35.323108 2020-08-26 20:26:35.323108 0 \N 6615 \N 1241 \N 2778 1.0 1 2020-08-26 21:59:40.163355 2020-08-26 21:59:40.163355 0 \N 6616 \N 1122 \N 2779 2.0 1 2020-08-26 23:41:58.820978 2020-08-26 23:41:58.820978 0 \N 6617 \N 1126 \N 2779 2.0 1 2020-08-26 23:41:58.840926 2020-08-26 23:41:58.840926 0 \N 6618 \N 1168 \N 2780 1.0 1 2020-08-26 23:44:32.855204 2020-08-26 23:44:32.855204 0 \N 6619 \N 527 \N 2781 1.0 1 2020-08-27 00:12:18.69712 2020-08-27 00:12:18.69712 0 \N 6620 \N 501 \N 2781 1.0 1 2020-08-27 00:12:18.718631 2020-08-27 00:12:18.718631 0 \N 6621 \N 1231 \N 2781 1.0 1 2020-08-27 00:12:18.744565 2020-08-27 00:12:18.744565 0 \N 6622 \N 1138 \N 2782 1.0 1 2020-08-27 01:17:41.99951 2020-08-27 01:17:41.99951 0 \N 6623 \N 1294 364 \N 9.0 0 2020-08-27 19:34:50.213992 2020-08-27 19:34:50.213992 1 \N 6624 \N 1293 364 \N 3.0 0 2020-08-27 19:34:50.24814 2020-08-27 19:34:50.24814 1 \N 6625 \N 1295 364 \N 2.0 0 2020-08-27 19:34:50.270914 2020-08-27 19:34:50.270914 1 \N 6626 \N 1296 364 \N 1.0 0 2020-08-27 19:34:50.29369 2020-08-27 19:34:50.29369 1 \N 6627 \N 1139 364 \N 1.0 0 2020-08-27 19:34:50.318039 2020-08-27 19:34:50.318039 1 \N 6628 \N 1297 364 \N 1.0 0 2020-08-27 19:34:50.342778 2020-08-27 19:34:50.342778 1 \N 6629 \N 1298 364 \N 1.0 0 2020-08-27 19:34:50.366014 2020-08-27 19:34:50.366014 1 \N 6630 \N 1299 364 \N 2.0 0 2020-08-27 19:34:50.406257 2020-08-27 19:34:50.406257 1 \N 6631 \N 1300 364 \N 1.0 0 2020-08-27 19:34:50.42771 2020-08-27 19:34:50.42771 1 \N 6632 \N 1293 365 \N 1.0 0 2020-08-27 19:56:19.59139 2020-08-27 19:56:19.59139 1 \N 6633 \N 1294 365 \N 3.0 0 2020-08-27 19:56:19.618524 2020-08-27 19:56:19.618524 1 \N 6634 \N 1301 365 \N 2.0 0 2020-08-27 19:56:19.640986 2020-08-27 19:56:19.640986 1 \N 6635 \N 1302 365 \N 2.0 0 2020-08-27 19:56:19.66358 2020-08-27 19:56:19.66358 1 \N 6636 \N 1303 365 \N 1.0 0 2020-08-27 19:56:19.686929 2020-08-27 19:56:19.686929 1 \N 6637 \N 981 \N 2783 1.0 1 2020-08-27 22:18:46.663355 2020-08-27 22:18:46.663355 0 \N 6638 \N 619 \N 2784 1.0 1 2020-08-27 22:29:39.928904 2020-08-27 22:29:39.928904 0 \N 6639 \N 991 \N 2784 1.0 1 2020-08-27 22:29:39.955122 2020-08-27 22:29:39.955122 0 \N 6640 \N 984 \N 2785 1.0 1 2020-08-27 22:58:53.256388 2020-08-27 22:58:53.256388 0 \N 6641 \N 1024 \N 2786 1.0 1 2020-08-27 23:18:17.940077 2020-08-27 23:18:17.940077 0 \N 6642 \N 1297 366 \N 1.0 0 2020-08-27 23:39:36.710553 2020-08-27 23:39:36.710553 1 \N 6643 \N 1118 \N 2787 1.0 1 2020-08-28 00:15:30.205927 2020-08-28 00:15:30.205927 0 \N 6644 \N 1237 \N 2788 1.0 1 2020-08-28 00:25:58.513329 2020-08-28 00:25:58.513329 0 \N 6645 \N 1297 \N 2789 1.0 1 2020-08-28 01:02:33.922477 2020-08-28 01:02:33.922477 0 \N 6646 \N 1000 \N 2790 1.0 1 2020-08-28 17:01:50.103199 2020-08-28 17:01:50.103199 0 \N 6647 \N 1294 \N 2791 2.0 1 2020-08-28 18:21:56.300506 2020-08-28 18:21:56.300506 0 \N 6648 \N 1225 \N 2792 1.0 1 2020-08-28 18:40:30.86392 2020-08-28 18:40:30.86392 0 \N 6649 \N 1294 \N 2793 1.0 1 2020-08-28 19:07:20.361074 2020-08-28 19:07:20.361074 0 \N 6650 \N 1294 \N 2793 1.0 0 2020-08-28 19:09:53.432429 2020-08-28 19:09:53.432429 3 \N 6651 \N 1294 \N 2794 1.0 1 2020-08-28 19:10:44.302913 2020-08-28 19:10:44.302913 0 \N 6652 \N 907 \N 2794 1.0 1 2020-08-28 19:10:44.324248 2020-08-28 19:10:44.324248 0 \N 6653 \N 1278 \N 2795 1.0 1 2020-08-28 19:15:56.473163 2020-08-28 19:15:56.473163 0 \N 6654 \N 1293 \N 2795 1.0 1 2020-08-28 19:15:56.495607 2020-08-28 19:15:56.495607 0 \N 6655 \N 295 \N 2796 1.0 1 2020-08-28 19:29:43.405651 2020-08-28 19:29:43.405651 0 \N 6656 \N 1240 \N 2796 1.0 1 2020-08-28 19:29:43.431868 2020-08-28 19:29:43.431868 0 \N 6657 \N 1118 \N 2797 1.0 1 2020-08-28 19:35:17.872492 2020-08-28 19:35:17.872492 0 \N 6658 \N 695 \N 2798 1.0 1 2020-08-28 21:20:16.497695 2020-08-28 21:20:16.497695 0 \N 6659 \N 669 \N 2798 1.0 1 2020-08-28 21:20:16.520869 2020-08-28 21:20:16.520869 0 \N 6660 \N 1012 \N 2798 1.0 1 2020-08-28 21:20:16.542398 2020-08-28 21:20:16.542398 0 \N 6661 \N 1294 \N 2799 1.0 1 2020-08-28 22:35:39.259668 2020-08-28 22:35:39.259668 0 \N 6662 \N 569 \N 2800 1.0 1 2020-08-28 23:40:49.576452 2020-08-28 23:40:49.576452 0 \N 6663 \N 1022 \N 2801 1.0 1 2020-08-28 23:55:54.2675 2020-08-28 23:55:54.2675 0 \N 6664 \N 569 \N 2800 1.0 0 2020-08-29 00:28:00.931574 2020-08-29 00:28:00.931574 3 \N 6665 \N 1012 \N 2802 1.0 1 2020-08-29 00:29:37.353206 2020-08-29 00:29:37.353206 0 \N 6666 \N 1294 \N 2803 1.0 1 2020-08-29 00:43:51.803068 2020-08-29 00:43:51.803068 0 \N 6667 \N 1185 \N 2803 1.0 1 2020-08-29 00:43:51.825323 2020-08-29 00:43:51.825323 0 \N 6668 \N 333 \N 2803 1.0 1 2020-08-29 00:43:51.846424 2020-08-29 00:43:51.846424 0 \N 6669 \N 1126 \N 2804 1.0 1 2020-08-29 00:48:05.898473 2020-08-29 00:48:05.898473 0 \N 6670 \N 1118 \N 2805 1.0 1 2020-08-29 17:19:43.533233 2020-08-29 17:19:43.533233 0 \N 6671 \N 1184 \N 2805 1.0 1 2020-08-29 17:19:43.556341 2020-08-29 17:19:43.556341 0 \N 6672 \N 1126 \N 2806 1.0 1 2020-08-29 17:41:33.975512 2020-08-29 17:41:33.975512 0 \N 6673 \N 217 \N 2807 1.0 1 2020-08-29 18:04:55.853979 2020-08-29 18:04:55.853979 0 \N 6674 \N 71 \N 2807 1.0 1 2020-08-29 18:04:55.886095 2020-08-29 18:04:55.886095 0 \N 6675 \N 691 \N 2808 1.0 1 2020-08-29 19:30:06.730193 2020-08-29 19:30:06.730193 0 \N 6676 \N 905 \N 2809 1.0 1 2020-08-29 20:49:36.903438 2020-08-29 20:49:36.903438 0 \N 6677 \N 258 \N \N 1.0 0 2020-08-29 22:04:35.324781 2020-08-29 22:04:35.324781 7 670 6678 \N 1180 \N 2810 1.0 1 2020-08-29 22:05:02.355431 2020-08-29 22:05:02.355431 0 \N 6679 \N 258 \N 2811 1.0 1 2020-08-29 22:07:29.656241 2020-08-29 22:07:29.656241 0 \N 6680 \N 1126 \N 2812 1.0 1 2020-08-29 22:26:09.178944 2020-08-29 22:26:09.178944 0 \N 6681 \N 233 \N 2813 1.0 1 2020-08-29 22:33:35.776131 2020-08-29 22:33:35.776131 0 \N 6682 \N 678 \N 2814 1.0 1 2020-08-29 23:30:06.395353 2020-08-29 23:30:06.395353 0 \N 6683 \N 992 \N 2814 1.0 1 2020-08-29 23:30:06.416682 2020-08-29 23:30:06.416682 0 \N 6684 \N 1299 \N 2815 1.0 1 2020-08-30 00:37:35.152135 2020-08-30 00:37:35.152135 0 \N 6685 \N 1126 \N 2816 1.0 1 2020-08-31 21:06:58.891969 2020-08-31 21:06:58.891969 0 \N 6686 \N 1118 \N 2817 1.0 1 2020-08-31 21:18:36.63343 2020-08-31 21:18:36.63343 0 \N 6687 \N 1231 \N 2817 1.0 1 2020-08-31 21:18:36.66378 2020-08-31 21:18:36.66378 0 \N 6688 \N 1067 \N 2817 1.0 1 2020-08-31 21:18:36.690354 2020-08-31 21:18:36.690354 0 \N 6689 \N 1126 \N 2561 1.0 0 2020-08-31 21:28:30.488054 2020-08-31 21:28:30.488054 8 \N 6690 \N 1126 \N 2818 1.0 1 2020-08-31 21:29:14.402745 2020-08-31 21:29:14.402745 0 \N 6691 \N 1126 \N 2819 1.0 1 2020-08-31 21:31:15.213205 2020-08-31 21:31:15.213205 0 \N 6692 \N 1294 \N 2820 1.0 1 2020-08-31 21:31:22.323974 2020-08-31 21:31:22.323974 0 \N 6693 \N 1294 \N 2821 1.0 1 2020-08-31 21:34:15.008589 2020-08-31 21:34:15.008589 0 \N 6694 \N 1294 \N 2821 1.0 0 2020-08-31 21:34:59.168229 2020-08-31 21:34:59.168229 3 \N 6695 \N 1294 \N 2822 1.0 1 2020-08-31 21:35:30.137006 2020-08-31 21:35:30.137006 0 \N 6696 \N 1148 \N \N 1.0 0 2020-08-31 23:27:43.88556 2020-08-31 23:27:43.88556 7 669 6697 \N 1181 \N \N 1.0 0 2020-08-31 23:27:43.907176 2020-08-31 23:27:43.907176 7 669 6698 \N 348 \N \N 1.0 0 2020-08-31 23:27:43.931718 2020-08-31 23:27:43.931718 7 669 6699 \N 1301 367 \N 2.0 0 2020-09-01 18:38:11.929708 2020-09-01 18:38:11.929708 1 \N 6700 \N 1118 \N 2823 1.0 1 2020-09-01 18:38:30.767978 2020-09-01 18:38:30.767978 0 \N 6701 \N 1301 \N 2823 1.0 1 2020-09-01 18:38:30.792159 2020-09-01 18:38:30.792159 0 \N 6702 \N 1301 \N 2823 1.0 0 2020-09-01 18:38:51.126509 2020-09-01 18:38:51.126509 3 \N 6703 \N 1118 \N 2823 1.0 0 2020-09-01 18:38:51.147423 2020-09-01 18:38:51.147423 3 \N 6704 \N 1301 \N 2824 1.0 1 2020-09-01 18:39:19.130144 2020-09-01 18:39:19.130144 0 \N 6705 \N 1118 \N 2824 1.0 1 2020-09-01 18:39:19.154072 2020-09-01 18:39:19.154072 0 \N 6706 \N 141 \N 2825 1.0 1 2020-09-01 22:04:17.20259 2020-09-01 22:04:17.20259 0 \N 6707 \N 1281 \N 2826 1.0 1 2020-09-01 22:05:59.793487 2020-09-01 22:05:59.793487 0 \N 6708 \N 1202 \N 2826 1.0 1 2020-09-01 22:05:59.813759 2020-09-01 22:05:59.813759 0 \N 6709 \N 1024 \N 2827 1.0 1 2020-09-01 22:56:41.667053 2020-09-01 22:56:41.667053 0 \N 6710 \N 666 \N 2828 1.0 1 2020-09-01 23:28:37.711544 2020-09-01 23:28:37.711544 0 \N 6711 \N 1126 \N 2829 1.0 1 2020-09-01 23:49:17.009419 2020-09-01 23:49:17.009419 0 \N 6712 \N 266 \N 2830 1.0 1 2020-09-02 01:31:40.460766 2020-09-02 01:31:40.460766 0 \N 6713 \N 266 \N 2830 1.0 0 2020-09-02 01:32:04.79413 2020-09-02 01:32:04.79413 3 \N 6714 \N 266 \N 2831 1.0 1 2020-09-02 01:32:53.127949 2020-09-02 01:32:53.127949 0 \N 6715 \N 1206 \N 2832 1.0 1 2020-09-02 17:28:28.424948 2020-09-02 17:28:28.424948 0 \N 6716 \N 238 \N 2833 1.0 1 2020-09-02 18:44:26.471621 2020-09-02 18:44:26.471621 0 \N 6717 \N 1118 \N 2834 1.0 1 2020-09-02 19:16:40.932179 2020-09-02 19:16:40.932179 0 \N 6718 \N 1118 \N 2834 1.0 0 2020-09-02 19:16:53.458288 2020-09-02 19:16:53.458288 9 \N 6719 \N 1287 \N 2835 1.0 1 2020-09-02 19:17:06.71476 2020-09-02 19:17:06.71476 0 \N 6720 \N 1118 \N 2836 1.0 1 2020-09-02 19:17:53.109577 2020-09-02 19:17:53.109577 0 \N 6721 \N 487 \N 2837 1.0 1 2020-09-02 20:13:11.621504 2020-09-02 20:13:11.621504 0 \N 6722 \N 49 \N 2837 1.0 1 2020-09-02 20:13:11.643938 2020-09-02 20:13:11.643938 0 \N 6723 \N 663 \N 2838 1.0 1 2020-09-02 20:19:28.935098 2020-09-02 20:19:28.935098 0 \N 6724 \N 1301 \N 2839 1.0 1 2020-09-03 01:09:59.839826 2020-09-03 01:09:59.839826 0 \N 6725 \N 1196 \N 2840 1.0 1 2020-09-03 16:26:21.290893 2020-09-03 16:26:21.290893 0 \N 6726 \N 1126 \N 2841 1.0 1 2020-09-03 19:58:54.026275 2020-09-03 19:58:54.026275 0 \N 6727 \N 1217 \N 2842 1.0 1 2020-09-03 20:02:46.17613 2020-09-03 20:02:46.17613 0 \N 6728 \N 1304 368 \N 6.0 0 2020-09-03 21:00:27.828476 2020-09-03 21:00:27.828476 1 \N 6729 \N 1305 368 \N 6.0 0 2020-09-03 21:00:27.85239 2020-09-03 21:00:27.85239 1 \N 6730 \N 1306 368 \N 6.0 0 2020-09-03 21:00:27.876782 2020-09-03 21:00:27.876782 1 \N 6731 \N 1307 368 \N 6.0 0 2020-09-03 21:00:27.89981 2020-09-03 21:00:27.89981 1 \N 6732 \N 1308 368 \N 6.0 0 2020-09-03 21:00:27.933179 2020-09-03 21:00:27.933179 1 \N 6733 \N 1309 368 \N 6.0 0 2020-09-03 21:00:27.953395 2020-09-03 21:00:27.953395 1 \N 6734 \N 1310 368 \N 6.0 0 2020-09-03 21:00:27.974106 2020-09-03 21:00:27.974106 1 \N 6735 \N 528 \N 2843 1.0 1 2020-09-03 21:01:41.451085 2020-09-03 21:01:41.451085 0 \N 6736 \N 494 \N 2843 1.0 1 2020-09-03 21:01:41.472433 2020-09-03 21:01:41.472433 0 \N 6737 \N 672 \N 2844 1.0 1 2020-09-03 21:07:21.091085 2020-09-03 21:07:21.091085 0 \N 6738 \N 28 \N 2845 1.0 1 2020-09-03 21:18:34.548119 2020-09-03 21:18:34.548119 0 \N 6739 \N 990 \N 2846 1.0 1 2020-09-03 21:30:42.192503 2020-09-03 21:30:42.192503 0 \N 6740 \N 989 \N 2846 1.0 1 2020-09-03 21:30:42.212072 2020-09-03 21:30:42.212072 0 \N 6741 \N 989 \N 2846 1.0 0 2020-09-03 21:31:15.445408 2020-09-03 21:31:15.445408 9 \N 6742 \N 990 \N 2846 1.0 0 2020-09-03 21:31:15.466197 2020-09-03 21:31:15.466197 9 \N 6743 \N 155 \N 2847 1.0 1 2020-09-03 21:32:38.284687 2020-09-03 21:32:38.284687 0 \N 6744 \N 989 \N 2847 1.0 1 2020-09-03 21:32:38.306765 2020-09-03 21:32:38.306765 0 \N 6745 \N 990 \N 2847 1.0 1 2020-09-03 21:32:38.326713 2020-09-03 21:32:38.326713 0 \N 6746 \N 1206 \N 2848 1.0 1 2020-09-03 21:50:06.805659 2020-09-03 21:50:06.805659 0 \N 6747 \N 1217 \N 2848 1.0 1 2020-09-03 21:50:06.837034 2020-09-03 21:50:06.837034 0 \N 6748 \N 1022 \N 2849 1.0 1 2020-09-03 21:54:31.336299 2020-09-03 21:54:31.336299 0 \N 6749 \N 1311 369 \N 3.0 0 2020-09-03 22:10:09.2158 2020-09-03 22:10:09.2158 1 \N 6750 \N 1312 369 \N 3.0 0 2020-09-03 22:10:09.237333 2020-09-03 22:10:09.237333 1 \N 6751 \N 1313 369 \N 6.0 0 2020-09-03 22:10:09.258728 2020-09-03 22:10:09.258728 1 \N 6752 \N 1314 369 \N 6.0 0 2020-09-03 22:10:09.280507 2020-09-03 22:10:09.280507 1 \N 6753 \N 1315 369 \N 6.0 0 2020-09-03 22:10:09.300489 2020-09-03 22:10:09.300489 1 \N 6754 \N 1316 369 \N 3.0 0 2020-09-03 22:10:09.322744 2020-09-03 22:10:09.322744 1 \N 6755 \N 1317 369 \N 6.0 0 2020-09-03 22:10:09.34599 2020-09-03 22:10:09.34599 1 \N 6756 \N 1318 369 \N 6.0 0 2020-09-03 22:10:09.365069 2020-09-03 22:10:09.365069 1 \N 6757 \N 1319 370 \N 6.0 0 2020-09-03 22:52:51.730832 2020-09-03 22:52:51.730832 1 \N 6758 \N 1320 370 \N 3.0 0 2020-09-03 22:52:51.751825 2020-09-03 22:52:51.751825 1 \N 6759 \N 1321 370 \N 3.0 0 2020-09-03 22:52:51.773619 2020-09-03 22:52:51.773619 1 \N 6760 \N 1322 370 \N 6.0 0 2020-09-03 22:52:51.794361 2020-09-03 22:52:51.794361 1 \N 6761 \N 1323 370 \N 6.0 0 2020-09-03 22:52:51.815787 2020-09-03 22:52:51.815787 1 \N 6762 \N 1324 370 \N 6.0 0 2020-09-03 22:52:51.838027 2020-09-03 22:52:51.838027 1 \N 6763 \N 1326 370 \N 3.0 0 2020-09-03 22:52:51.859265 2020-09-03 22:52:51.859265 1 \N 6764 \N 1325 370 \N 3.0 0 2020-09-03 22:52:51.880403 2020-09-03 22:52:51.880403 1 \N 6765 \N 1118 \N 2850 1.0 1 2020-09-03 22:54:58.206174 2020-09-03 22:54:58.206174 0 \N 6766 \N 1090 \N 2850 1.0 1 2020-09-03 22:54:58.231697 2020-09-03 22:54:58.231697 0 \N 6767 \N 1118 \N 2851 1.0 1 2020-09-03 23:11:29.178333 2020-09-03 23:11:29.178333 0 \N 6768 \N 1327 371 \N 11.0 0 2020-09-03 23:17:32.269718 2020-09-03 23:17:32.269718 1 \N 6769 \N 1328 372 \N 6.0 0 2020-09-03 23:41:42.76717 2020-09-03 23:41:42.76717 1 \N 6770 \N 1329 372 \N 6.0 0 2020-09-03 23:41:42.790337 2020-09-03 23:41:42.790337 1 \N 6771 \N 1330 372 \N 6.0 0 2020-09-03 23:41:42.810927 2020-09-03 23:41:42.810927 1 \N 6772 \N 1331 372 \N 6.0 0 2020-09-03 23:41:42.832176 2020-09-03 23:41:42.832176 1 \N 6773 \N 1332 372 \N 9.0 0 2020-09-03 23:41:42.85314 2020-09-03 23:41:42.85314 1 \N 6774 \N 1333 372 \N 6.0 0 2020-09-03 23:41:42.873091 2020-09-03 23:41:42.873091 1 \N 6775 \N 1334 373 \N 6.0 0 2020-09-03 23:57:05.250095 2020-09-03 23:57:05.250095 1 \N 6776 \N 1335 373 \N 3.0 0 2020-09-03 23:57:05.272298 2020-09-03 23:57:05.272298 1 \N 6777 \N 1336 373 \N 6.0 0 2020-09-03 23:57:05.293139 2020-09-03 23:57:05.293139 1 \N 6778 \N 1294 \N 2852 1.0 1 2020-09-03 23:59:45.405509 2020-09-03 23:59:45.405509 0 \N 6779 \N 675 \N 2853 1.0 1 2020-09-04 00:26:48.315859 2020-09-04 00:26:48.315859 0 \N 6780 \N 1130 \N 2854 1.0 1 2020-09-04 18:38:19.17106 2020-09-04 18:38:19.17106 0 \N 6781 \N 1148 \N 2854 1.0 1 2020-09-04 18:38:19.203746 2020-09-04 18:38:19.203746 0 \N 6782 \N 687 \N 2855 1.0 1 2020-09-04 18:46:36.483942 2020-09-04 18:46:36.483942 0 \N 6783 \N 1293 \N 2856 1.0 1 2020-09-04 19:06:49.026388 2020-09-04 19:06:49.026388 0 \N 6784 \N 1294 \N 2857 1.0 1 2020-09-04 19:45:28.660107 2020-09-04 19:45:28.660107 0 \N 6785 \N 675 \N 2858 1.0 1 2020-09-04 20:00:49.159237 2020-09-04 20:00:49.159237 0 \N 6786 \N 1122 \N 2859 1.0 1 2020-09-04 20:24:48.347574 2020-09-04 20:24:48.347574 0 \N 6787 \N 1126 \N 2691 1.0 0 2020-09-04 22:31:18.892391 2020-09-04 22:31:18.892391 9 \N 6788 \N 1118 \N 2691 1.0 0 2020-09-04 22:31:18.912007 2020-09-04 22:31:18.912007 9 \N 6789 \N 1293 \N 2860 1.0 1 2020-09-04 22:43:26.130992 2020-09-04 22:43:26.130992 0 \N 6790 \N 1019 \N 2861 1.0 1 2020-09-04 23:40:09.03961 2020-09-04 23:40:09.03961 0 \N 6791 \N 1118 \N 2862 1.0 1 2020-09-04 23:42:01.906211 2020-09-04 23:42:01.906211 0 \N 6792 \N 1337 374 \N 3.0 0 2020-09-04 23:45:17.096901 2020-09-04 23:45:17.096901 1 \N 6793 \N 1337 \N 2863 1.0 1 2020-09-04 23:46:29.869826 2020-09-04 23:46:29.869826 0 \N 6794 \N 1338 375 \N 3.0 0 2020-09-05 16:50:56.786784 2020-09-05 16:50:56.786784 1 \N 6795 \N 1339 375 \N 6.0 0 2020-09-05 16:50:56.813414 2020-09-05 16:50:56.813414 1 \N 6796 \N 1312 377 \N 3.0 0 2020-09-05 20:03:07.163975 2020-09-05 20:03:07.163975 1 \N 6797 \N 1313 377 \N 6.0 0 2020-09-05 20:03:07.188869 2020-09-05 20:03:07.188869 1 \N 6798 \N 1314 377 \N 6.0 0 2020-09-05 20:03:07.216504 2020-09-05 20:03:07.216504 1 \N 6799 \N 1315 377 \N 6.0 0 2020-09-05 20:03:07.241108 2020-09-05 20:03:07.241108 1 \N 6800 \N 1316 377 \N 3.0 0 2020-09-05 20:03:07.266295 2020-09-05 20:03:07.266295 1 \N 6801 \N 1317 377 \N 6.0 0 2020-09-05 20:03:07.290266 2020-09-05 20:03:07.290266 1 \N 6802 \N 1320 377 \N 3.0 0 2020-09-05 20:03:07.313759 2020-09-05 20:03:07.313759 1 \N 6803 \N 1321 377 \N 3.0 0 2020-09-05 20:03:07.338545 2020-09-05 20:03:07.338545 1 \N 6804 \N 1322 377 \N 1.0 0 2020-09-05 20:03:07.366527 2020-09-05 20:03:07.366527 1 \N 6805 \N 1325 377 \N 3.0 0 2020-09-05 20:03:07.389298 2020-09-05 20:03:07.389298 1 \N 6806 \N 1326 377 \N 3.0 0 2020-09-05 20:03:07.411682 2020-09-05 20:03:07.411682 1 \N 6807 \N 1327 377 \N 12.0 0 2020-09-05 20:03:07.434776 2020-09-05 20:03:07.434776 1 \N 6808 \N 1328 377 \N 6.0 0 2020-09-05 20:03:07.457938 2020-09-05 20:03:07.457938 1 \N 6809 \N 1329 377 \N 6.0 0 2020-09-05 20:03:07.482281 2020-09-05 20:03:07.482281 1 \N 6810 \N 1330 377 \N 6.0 0 2020-09-05 20:03:07.517767 2020-09-05 20:03:07.517767 1 \N 6811 \N 1331 377 \N 6.0 0 2020-09-05 20:03:07.552373 2020-09-05 20:03:07.552373 1 \N 6812 \N 1332 377 \N 9.0 0 2020-09-05 20:03:07.586784 2020-09-05 20:03:07.586784 1 \N 6813 \N 1334 377 \N 6.0 0 2020-09-05 20:03:07.622403 2020-09-05 20:03:07.622403 1 \N 6814 \N 668 \N 2864 1.0 1 2020-09-05 20:04:56.782757 2020-09-05 20:04:56.782757 0 \N 6815 \N 1338 378 \N 3.0 0 2020-09-05 22:37:58.876259 2020-09-05 22:37:58.876259 1 \N 6816 \N 1311 378 \N 3.0 0 2020-09-05 22:37:58.908241 2020-09-05 22:37:58.908241 1 \N 6817 \N 1337 378 \N 3.0 0 2020-09-05 22:37:58.939503 2020-09-05 22:37:58.939503 1 \N 6818 \N 1335 379 \N 3.0 0 2020-09-05 22:40:33.515942 2020-09-05 22:40:33.515942 1 \N 6819 \N 1321 379 \N 6.0 0 2020-09-05 22:40:33.538126 2020-09-05 22:40:33.538126 1 \N 6820 \N 268 \N \N 1.0 0 2020-09-07 16:50:11.731525 2020-09-07 16:50:11.731525 7 671 6821 \N 271 \N \N 1.0 0 2020-09-07 16:50:11.749465 2020-09-07 16:50:11.749465 7 671 6822 \N 274 \N \N 5.0 0 2020-09-07 16:50:11.765963 2020-09-07 16:50:11.765963 7 671 6823 \N 259 \N \N 1.0 0 2020-09-07 16:50:11.782221 2020-09-07 16:50:11.782221 7 671 6824 \N 484 \N \N 7.0 0 2020-09-07 16:50:11.799122 2020-09-07 16:50:11.799122 7 671 6825 \N 269 \N \N 10.0 0 2020-09-07 16:50:11.816569 2020-09-07 16:50:11.816569 7 671 6826 \N 264 \N \N 1.0 0 2020-09-07 16:50:11.834074 2020-09-07 16:50:11.834074 7 671 6827 \N 1126 \N \N 8.0 0 2020-09-07 16:50:11.851645 2020-09-07 16:50:11.851645 7 671 6828 \N 1159 \N \N 2.0 0 2020-09-07 16:50:11.873189 2020-09-07 16:50:11.873189 7 671 6829 \N 268 \N 2865 1.0 1 2020-09-07 16:52:18.406278 2020-09-07 16:52:18.406278 0 \N 6830 \N 1322 380 \N 5.0 0 2020-09-07 20:37:24.923185 2020-09-07 20:37:24.923185 1 \N 6831 \N 1126 381 \N 4.0 0 2020-09-07 23:00:42.978625 2020-09-07 23:00:42.978625 1 \N 6832 \N 1294 381 \N 16.0 0 2020-09-07 23:00:43.002896 2020-09-07 23:00:43.002896 1 \N 6833 \N 1300 381 \N 4.0 0 2020-09-07 23:00:43.023996 2020-09-07 23:00:43.023996 1 \N 6834 \N 1294 \N 2866 1.0 1 2020-09-07 23:12:54.379943 2020-09-07 23:12:54.379943 0 \N 6835 \N 1126 382 \N 3.0 0 2020-09-08 00:06:38.276373 2020-09-08 00:06:38.276373 1 \N 6836 \N 1300 382 \N 3.0 0 2020-09-08 00:06:38.306646 2020-09-08 00:06:38.306646 1 \N 6837 \N 1294 382 \N 8.0 0 2020-09-08 00:06:38.328514 2020-09-08 00:06:38.328514 1 \N 6838 \N 1182 \N 2867 1.0 1 2020-09-08 00:24:35.485864 2020-09-08 00:24:35.485864 0 \N 6839 \N 1126 \N 2736 1.0 0 2020-09-08 00:30:28.317117 2020-09-08 00:30:28.317117 9 \N 6840 \N 654 \N 2868 1.0 1 2020-09-08 00:30:51.771636 2020-09-08 00:30:51.771636 0 \N 6841 \N 1340 383 \N 6.0 0 2020-09-08 00:43:56.364083 2020-09-08 00:43:56.364083 1 \N 6842 \N 1341 383 \N 6.0 0 2020-09-08 00:43:56.385226 2020-09-08 00:43:56.385226 1 \N 6843 \N 1342 384 \N 1.0 0 2020-09-08 16:31:23.582081 2020-09-08 16:31:23.582081 1 \N 6844 \N 1180 \N 2869 1.0 1 2020-09-08 16:33:44.121334 2020-09-08 16:33:44.121334 0 \N 6845 \N 1180 \N 2869 1.0 0 2020-09-08 16:33:49.814916 2020-09-08 16:33:49.814916 9 \N 6846 \N 1180 \N 2870 1.0 1 2020-09-08 16:34:42.582646 2020-09-08 16:34:42.582646 0 \N 6847 \N 1342 \N 2871 1.0 1 2020-09-08 16:38:19.83006 2020-09-08 16:38:19.83006 0 \N 6848 \N 1317 \N 2872 1.0 1 2020-09-08 19:28:57.533708 2020-09-08 19:28:57.533708 0 \N 6849 \N 476 \N 2873 1.0 1 2020-09-08 20:25:55.593897 2020-09-08 20:25:55.593897 0 \N 6850 \N 590 \N 2874 1.0 1 2020-09-08 21:23:30.80525 2020-09-08 21:23:30.80525 0 \N 6851 \N 1293 \N 2875 1.0 1 2020-09-08 23:27:58.430199 2020-09-08 23:27:58.430199 0 \N 6852 \N 1138 \N 2875 1.0 1 2020-09-08 23:27:58.454599 2020-09-08 23:27:58.454599 0 \N 6853 \N 1099 \N 2875 1.0 1 2020-09-08 23:27:58.479184 2020-09-08 23:27:58.479184 0 \N 6854 \N 1331 \N 2876 1.0 1 2020-09-09 01:02:27.754975 2020-09-09 01:02:27.754975 0 \N 6855 \N 1335 \N 2876 1.0 1 2020-09-09 01:02:27.789927 2020-09-09 01:02:27.789927 0 \N 6856 \N 1306 \N 2877 1.0 1 2020-09-09 05:53:37.841806 2020-09-09 05:53:37.841806 0 \N 6857 \N 1303 \N 2878 1.0 1 2020-09-09 16:42:07.164027 2020-09-09 16:42:07.164027 0 \N 6858 \N 1303 \N 2878 1.0 0 2020-09-09 16:47:57.957275 2020-09-09 16:47:57.957275 9 \N 6859 \N 1303 \N 2879 1.0 1 2020-09-09 16:49:08.145937 2020-09-09 16:49:08.145937 0 \N 6860 \N 1306 \N 2879 1.0 1 2020-09-09 16:49:08.166314 2020-09-09 16:49:08.166314 0 \N 6861 \N 993 \N 2880 1.0 1 2020-09-09 17:58:11.929386 2020-09-09 17:58:11.929386 0 \N 6862 \N 1306 \N 2880 1.0 1 2020-09-09 17:58:11.954993 2020-09-09 17:58:11.954993 0 \N 6863 \N 1218 \N 2880 1.0 1 2020-09-09 17:58:11.978311 2020-09-09 17:58:11.978311 0 \N 6864 \N 1294 \N 2881 1.0 1 2020-09-09 19:36:51.446687 2020-09-09 19:36:51.446687 0 \N 6865 \N 417 \N 2882 1.0 1 2020-09-09 20:25:40.647458 2020-09-09 20:25:40.647458 0 \N 6866 \N 980 \N 2882 1.0 1 2020-09-09 20:25:40.671141 2020-09-09 20:25:40.671141 0 \N 6867 \N 1339 \N 2883 1.0 1 2020-09-09 20:58:55.817323 2020-09-09 20:58:55.817323 0 \N 6868 \N 1293 385 \N 3.0 0 2020-09-09 21:51:38.951756 2020-09-09 21:51:38.951756 1 \N 6869 \N 1293 386 \N 2.0 0 2020-09-09 21:51:58.39388 2020-09-09 21:51:58.39388 1 \N 6870 \N 1293 \N 2884 1.0 1 2020-09-09 21:52:41.578943 2020-09-09 21:52:41.578943 0 \N 6871 \N 905 \N 2884 1.0 1 2020-09-09 21:52:41.600815 2020-09-09 21:52:41.600815 0 \N 6872 \N 1096 \N 2885 1.0 1 2020-09-09 22:18:11.567419 2020-09-09 22:18:11.567419 0 \N 6873 \N 1335 \N 2886 1.0 1 2020-09-09 23:27:31.324861 2020-09-09 23:27:31.324861 0 \N 6874 \N 1231 \N 2887 1.0 1 2020-09-09 23:33:02.659052 2020-09-09 23:33:02.659052 0 \N 6875 \N 1126 \N 2888 1.0 1 2020-09-09 23:43:30.22504 2020-09-09 23:43:30.22504 0 \N 6876 \N 1126 \N 2889 1.0 1 2020-09-09 23:59:29.069585 2020-09-09 23:59:29.069585 0 \N 6877 \N 1194 \N 2890 1.0 1 2020-09-10 00:25:13.817769 2020-09-10 00:25:13.817769 0 \N 6878 \N 1343 387 \N 6.0 0 2020-09-10 01:04:19.92062 2020-09-10 01:04:19.92062 1 \N 6879 \N 1343 \N 2891 1.0 1 2020-09-10 01:04:52.146579 2020-09-10 01:04:52.146579 0 \N 6880 \N 1294 \N 2892 1.0 1 2020-09-10 19:25:48.878174 2020-09-10 19:25:48.878174 0 \N 6881 \N 1126 \N 2893 1.0 1 2020-09-10 19:39:00.059426 2020-09-10 19:39:00.059426 0 \N 6882 \N 1081 \N 2893 1.0 1 2020-09-10 19:39:00.092768 2020-09-10 19:39:00.092768 0 \N 6883 \N 1233 \N 2894 1.0 1 2020-09-10 23:10:44.153054 2020-09-10 23:10:44.153054 0 \N 6884 \N 1126 \N 2895 1.0 1 2020-09-10 23:49:40.887736 2020-09-10 23:49:40.887736 0 \N 6885 \N 912 \N 2896 1.0 1 2020-09-11 00:45:03.803759 2020-09-11 00:45:03.803759 0 \N 6886 \N 369 \N 2896 1.0 1 2020-09-11 00:45:03.826999 2020-09-11 00:45:03.826999 0 \N 6887 \N 494 \N 2897 1.0 1 2020-09-11 01:02:41.996377 2020-09-11 01:02:41.996377 0 \N 6888 \N 1170 \N 2898 1.0 1 2020-09-11 01:13:27.026438 2020-09-11 01:13:27.026438 0 \N 6889 \N 1170 \N 2898 1.0 0 2020-09-11 01:13:33.549429 2020-09-11 01:13:33.549429 3 \N 6890 \N 1170 \N 2899 1.0 1 2020-09-11 01:14:58.13727 2020-09-11 01:14:58.13727 0 \N 6891 \N 1312 \N 2900 1.0 1 2020-09-11 16:52:26.123489 2020-09-11 16:52:26.123489 0 \N 6892 \N 713 \N 2901 1.0 1 2020-09-11 20:31:58.371462 2020-09-11 20:31:58.371462 0 \N 6893 \N 713 \N 2902 1.0 1 2020-09-11 20:34:22.524513 2020-09-11 20:34:22.524513 0 \N 6894 \N 668 \N 2902 1.0 1 2020-09-11 20:34:22.545905 2020-09-11 20:34:22.545905 0 \N 6895 \N 668 \N 2902 1.0 0 2020-09-11 20:34:39.550722 2020-09-11 20:34:39.550722 9 \N 6896 \N 713 \N 2902 1.0 0 2020-09-11 20:34:39.58088 2020-09-11 20:34:39.58088 9 \N 6897 \N 713 \N 2903 1.0 1 2020-09-11 20:35:54.510046 2020-09-11 20:35:54.510046 0 \N 6898 \N 668 \N 2903 1.0 1 2020-09-11 20:35:54.536246 2020-09-11 20:35:54.536246 0 \N 6899 \N 668 \N 2903 1.0 0 2020-09-11 20:36:00.760418 2020-09-11 20:36:00.760418 3 \N 6900 \N 713 \N 2903 1.0 0 2020-09-11 20:36:00.788187 2020-09-11 20:36:00.788187 3 \N 6901 \N 713 \N 2904 1.0 1 2020-09-11 20:36:27.686542 2020-09-11 20:36:27.686542 0 \N 6902 \N 668 \N 2904 1.0 1 2020-09-11 20:36:27.710103 2020-09-11 20:36:27.710103 0 \N 6903 \N 571 \N 2905 1.0 1 2020-09-11 20:37:59.086421 2020-09-11 20:37:59.086421 0 \N 6904 \N 668 \N 2906 1.0 1 2020-09-11 20:38:53.244822 2020-09-11 20:38:53.244822 0 \N 6905 \N 1316 \N 2907 1.0 1 2020-09-11 21:43:22.82136 2020-09-11 21:43:22.82136 0 \N 6906 \N 1339 \N 2907 1.0 1 2020-09-11 21:43:22.847394 2020-09-11 21:43:22.847394 0 \N 6907 \N 1332 \N 2908 1.0 1 2020-09-11 22:14:44.72753 2020-09-11 22:14:44.72753 0 \N 6908 \N 1343 \N 2908 1.0 1 2020-09-11 22:14:44.750996 2020-09-11 22:14:44.750996 0 \N 6909 \N 1331 \N 2909 1.0 1 2020-09-11 22:22:58.368785 2020-09-11 22:22:58.368785 0 \N 6910 \N 1294 \N 2910 1.0 1 2020-09-11 23:31:43.794159 2020-09-11 23:31:43.794159 0 \N 6911 \N 1325 \N 2911 1.0 1 2020-09-12 18:24:54.892802 2020-09-12 18:24:54.892802 0 \N 6912 \N 1294 \N 2912 1.0 1 2020-09-12 20:34:08.741281 2020-09-12 20:34:08.741281 0 \N 6913 \N 1294 \N 2912 1.0 0 2020-09-12 20:37:50.418929 2020-09-12 20:37:50.418929 9 \N 6914 \N 1294 \N 2913 1.0 1 2020-09-12 20:58:55.678652 2020-09-12 20:58:55.678652 0 \N 6915 \N 1294 \N 2913 1.0 0 2020-09-12 21:00:12.506768 2020-09-12 21:00:12.506768 3 \N 6916 \N 1294 \N 2914 1.0 1 2020-09-12 21:00:56.268306 2020-09-12 21:00:56.268306 0 \N 6917 \N 1277 \N 2915 1.0 1 2020-09-12 22:19:25.605541 2020-09-12 22:19:25.605541 0 \N 6918 \N 1237 \N 2915 1.0 1 2020-09-12 22:19:25.637727 2020-09-12 22:19:25.637727 0 \N 6919 \N 1159 \N 2916 1.0 1 2020-09-12 23:15:27.642644 2020-09-12 23:15:27.642644 0 \N 6920 \N 1294 \N 2917 1.0 1 2020-09-12 23:19:12.622285 2020-09-12 23:19:12.622285 0 \N 6921 \N 1294 \N 2918 1.0 1 2020-09-12 23:33:59.482136 2020-09-12 23:33:59.482136 0 \N 6922 \N 1295 \N 2919 1.0 1 2020-09-12 23:49:07.504103 2020-09-12 23:49:07.504103 0 \N 6923 \N 1293 \N 2919 1.0 1 2020-09-12 23:49:07.530538 2020-09-12 23:49:07.530538 0 \N 6924 \N 1142 \N 2920 1.0 1 2020-09-13 01:30:16.15111 2020-09-13 01:30:16.15111 0 \N 6925 \N 1209 \N 2921 1.0 1 2020-09-13 01:38:48.227282 2020-09-13 01:38:48.227282 0 \N 6926 \N 1230 \N 2921 1.0 1 2020-09-13 01:38:48.251462 2020-09-13 01:38:48.251462 0 \N 6927 \N 1313 \N 2922 2.0 1 2020-09-14 18:29:44.55594 2020-09-14 18:29:44.55594 0 \N 6928 \N 1323 \N 2923 1.0 1 2020-09-14 19:04:48.772622 2020-09-14 19:04:48.772622 0 \N 6929 \N 1310 \N 2924 1.0 1 2020-09-14 19:34:52.83095 2020-09-14 19:34:52.83095 0 \N 6930 \N 1294 \N 2925 1.0 1 2020-09-14 21:05:02.299119 2020-09-14 21:05:02.299119 0 \N 6931 \N 1294 \N 2926 1.0 1 2020-09-14 21:10:16.942645 2020-09-14 21:10:16.942645 0 \N 6932 \N 1294 \N 2927 1.0 1 2020-09-14 21:51:31.421886 2020-09-14 21:51:31.421886 0 \N 6933 \N 1294 \N 2928 1.0 1 2020-09-15 00:58:23.627471 2020-09-15 00:58:23.627471 0 \N 6934 \N 1318 \N 2929 1.0 1 2020-09-15 18:26:43.397371 2020-09-15 18:26:43.397371 0 \N 6935 \N 1294 \N 2930 1.0 1 2020-09-15 18:48:31.192348 2020-09-15 18:48:31.192348 0 \N 6936 \N 1294 \N 2930 1.0 0 2020-09-15 18:48:38.066652 2020-09-15 18:48:38.066652 3 \N 6937 \N 1294 \N 2931 1.0 1 2020-09-15 18:49:08.628264 2020-09-15 18:49:08.628264 0 \N 6938 \N 1321 \N \N 3.0 0 2020-09-15 19:19:03.231303 2020-09-15 19:19:03.231303 7 672 6939 \N 1335 \N \N 1.0 0 2020-09-15 19:19:10.33247 2020-09-15 19:19:10.33247 7 673 6940 \N 1126 \N 2932 1.0 1 2020-09-15 20:14:37.44437 2020-09-15 20:14:37.44437 0 \N 6941 \N 1126 \N 2932 1.0 0 2020-09-15 20:14:49.186454 2020-09-15 20:14:49.186454 3 \N 6942 \N 1126 \N 2933 1.0 1 2020-09-15 20:14:58.554727 2020-09-15 20:14:58.554727 0 \N 6943 \N 1326 \N 2934 1.0 1 2020-09-15 21:10:10.674393 2020-09-15 21:10:10.674393 0 \N 6944 \N 1239 \N 2935 1.0 1 2020-09-15 21:16:21.667373 2020-09-15 21:16:21.667373 0 \N 6945 \N 979 \N 2936 1.0 1 2020-09-15 21:34:56.908681 2020-09-15 21:34:56.908681 0 \N 6946 \N 1295 388 \N 1.0 0 2020-09-15 21:37:43.147146 2020-09-15 21:37:43.147146 1 \N 6947 \N 1295 \N 2937 1.0 1 2020-09-15 21:38:48.379187 2020-09-15 21:38:48.379187 0 \N 6948 \N 1126 \N 2938 1.0 1 2020-09-15 21:40:24.967994 2020-09-15 21:40:24.967994 0 \N 6949 \N 1293 \N 2939 1.0 1 2020-09-15 22:01:56.531549 2020-09-15 22:01:56.531549 0 \N 6950 \N 1335 \N 2940 1.0 1 2020-09-15 22:30:00.243773 2020-09-15 22:30:00.243773 0 \N 6951 \N 1318 \N 2941 1.0 1 2020-09-15 23:08:04.374785 2020-09-15 23:08:04.374785 0 \N 6952 \N 1311 \N 2942 1.0 1 2020-09-15 23:17:27.070922 2020-09-15 23:17:27.070922 0 \N 6953 \N 367 \N 2942 2.0 1 2020-09-15 23:17:27.094993 2020-09-15 23:17:27.094993 0 \N 6954 \N 1236 \N 2943 1.0 1 2020-09-15 23:45:50.167776 2020-09-15 23:45:50.167776 0 \N 6955 \N 1126 \N 2944 1.0 1 2020-09-16 00:39:56.273871 2020-09-16 00:39:56.273871 0 \N 6956 \N 1126 \N 2945 1.0 1 2020-09-16 21:43:17.825907 2020-09-16 21:43:17.825907 0 \N 6957 \N 1317 \N 2946 1.0 1 2020-09-16 21:45:02.149412 2020-09-16 21:45:02.149412 0 \N 6958 \N 90 \N 2947 1.0 1 2020-09-16 21:47:31.582938 2020-09-16 21:47:31.582938 0 \N 6959 \N 1126 \N 2948 1.0 1 2020-09-16 21:55:56.703549 2020-09-16 21:55:56.703549 0 \N 6960 \N 1294 \N 2949 2.0 1 2020-09-17 01:40:13.941386 2020-09-17 01:40:13.941386 0 \N 6961 \N 528 \N 2950 1.0 1 2020-09-17 18:58:37.269756 2020-09-17 18:58:37.269756 0 \N 6962 \N 1183 \N 2951 1.0 1 2020-09-17 19:24:32.572528 2020-09-17 19:24:32.572528 0 \N 6963 \N 1325 \N 2952 1.0 1 2020-09-17 19:30:30.555214 2020-09-17 19:30:30.555214 0 \N 6964 \N 1139 \N 2953 1.0 1 2020-09-17 19:35:21.747436 2020-09-17 19:35:21.747436 0 \N 6965 \N 1294 \N 2954 1.0 1 2020-09-17 21:22:26.175817 2020-09-17 21:22:26.175817 0 \N 6966 \N 1322 \N 2955 1.0 1 2020-09-17 21:37:49.365374 2020-09-17 21:37:49.365374 0 \N 6967 \N 1315 \N 2955 1.0 1 2020-09-17 21:37:49.388491 2020-09-17 21:37:49.388491 0 \N 6968 \N 1334 \N 2955 2.0 1 2020-09-17 21:37:49.412837 2020-09-17 21:37:49.412837 0 \N 6969 \N 1294 \N 2954 1.0 0 2020-09-17 22:03:28.609191 2020-09-17 22:03:28.609191 3 \N 6970 \N 1294 \N 2956 1.0 1 2020-09-17 22:03:49.233922 2020-09-17 22:03:49.233922 0 \N 6971 \N 1294 \N 2957 1.0 1 2020-09-17 22:53:00.201384 2020-09-17 22:53:00.201384 0 \N 6972 \N 1029 389 \N 3.0 0 2020-09-17 23:32:44.090719 2020-09-17 23:32:44.090719 1 \N 6973 \N 1029 \N 2958 1.0 1 2020-09-17 23:33:00.264817 2020-09-17 23:33:00.264817 0 \N 6974 \N 1294 \N 2959 1.0 1 2020-09-17 23:35:30.219121 2020-09-17 23:35:30.219121 0 \N 6975 \N 1159 \N 2960 1.0 1 2020-09-18 00:06:24.838486 2020-09-18 00:06:24.838486 0 \N 6976 \N 352 \N 2961 1.0 1 2020-09-18 00:06:55.520921 2020-09-18 00:06:55.520921 0 \N 6977 \N 992 \N 2962 1.0 1 2020-09-18 16:56:56.794165 2020-09-18 16:56:56.794165 0 \N 6978 \N 1334 \N 2963 1.0 1 2020-09-18 21:35:35.928574 2020-09-18 21:35:35.928574 0 \N 6979 \N 1010 \N 2964 1.0 1 2020-09-18 21:42:47.251328 2020-09-18 21:42:47.251328 0 \N 6980 \N 395 \N 2965 1.0 1 2020-09-18 22:33:40.284093 2020-09-18 22:33:40.284093 0 \N 6981 \N 1070 \N 2965 1.0 1 2020-09-18 22:33:40.318484 2020-09-18 22:33:40.318484 0 \N 6982 \N 1327 \N 2966 1.0 1 2020-09-18 22:36:16.676083 2020-09-18 22:36:16.676083 0 \N 6983 \N 695 \N 2967 1.0 1 2020-09-18 22:45:20.954766 2020-09-18 22:45:20.954766 0 \N 6984 \N 1344 390 \N 3.0 0 2020-09-19 00:23:35.744018 2020-09-19 00:23:35.744018 1 \N 6985 \N 1345 390 \N 2.0 0 2020-09-19 00:23:35.77208 2020-09-19 00:23:35.77208 1 \N 6986 \N 1346 390 \N 1.0 0 2020-09-19 00:23:35.795187 2020-09-19 00:23:35.795187 1 \N 6987 \N 1347 390 \N 1.0 0 2020-09-19 00:23:35.818957 2020-09-19 00:23:35.818957 1 \N 6988 \N 1346 \N 2968 1.0 1 2020-09-19 00:29:27.807783 2020-09-19 00:29:27.807783 0 \N 6989 \N 1347 \N 2968 1.0 1 2020-09-19 00:29:27.833821 2020-09-19 00:29:27.833821 0 \N 6990 \N 1345 \N 2968 1.0 1 2020-09-19 00:29:27.857516 2020-09-19 00:29:27.857516 0 \N 6991 \N 1344 \N 2968 1.0 1 2020-09-19 00:29:27.881328 2020-09-19 00:29:27.881328 0 \N 6992 \N 1344 \N 2969 1.0 1 2020-09-19 00:48:53.540219 2020-09-19 00:48:53.540219 0 \N 6993 \N 1334 \N 2970 1.0 1 2020-09-19 17:17:56.240625 2020-09-19 17:17:56.240625 0 \N 6994 \N 1327 \N 2970 1.0 1 2020-09-19 17:17:56.267375 2020-09-19 17:17:56.267375 0 \N 6995 \N 1209 \N 2970 1.0 1 2020-09-19 17:17:56.297311 2020-09-19 17:17:56.297311 0 \N 6996 \N 1118 \N 2971 1.0 1 2020-09-19 18:25:14.504756 2020-09-19 18:25:14.504756 0 \N 6997 \N 1118 \N 2971 1.0 0 2020-09-19 18:29:58.971288 2020-09-19 18:29:58.971288 3 \N 6998 \N 1118 \N 2972 1.0 1 2020-09-19 18:30:21.316965 2020-09-19 18:30:21.316965 0 \N 6999 \N 220 \N 2973 1.0 1 2020-09-19 20:14:25.321337 2020-09-19 20:14:25.321337 0 \N 7000 \N 613 \N \N 1.0 0 2020-09-19 21:44:58.081629 2020-09-19 21:44:58.081629 7 674 7001 \N 1148 \N \N 1.0 0 2020-09-19 21:44:58.099892 2020-09-19 21:44:58.099892 7 674 7002 \N 1301 \N \N 1.0 0 2020-09-19 21:44:58.116395 2020-09-19 21:44:58.116395 7 674 7003 \N 1191 \N \N 1.0 0 2020-09-19 21:44:58.138085 2020-09-19 21:44:58.138085 7 674 7004 \N 1185 \N \N 1.0 0 2020-09-19 21:44:58.154698 2020-09-19 21:44:58.154698 7 674 7005 \N 1299 391 \N 1.0 0 2020-09-19 21:58:06.241862 2020-09-19 21:58:06.241862 1 \N 7006 \N 1294 391 \N 10.0 0 2020-09-19 21:58:06.268635 2020-09-19 21:58:06.268635 1 \N 7007 \N 1348 391 \N 2.0 0 2020-09-19 21:58:06.297005 2020-09-19 21:58:06.297005 1 \N 7008 \N 1299 \N 2974 1.0 1 2020-09-19 21:58:58.237415 2020-09-19 21:58:58.237415 0 \N 7009 \N 163 \N 2975 1.0 1 2020-09-19 22:01:38.881394 2020-09-19 22:01:38.881394 0 \N 7010 \N 1294 \N 2976 1.0 1 2020-09-19 22:15:09.300538 2020-09-19 22:15:09.300538 0 \N 7011 \N 1348 \N 2977 1.0 1 2020-09-19 22:24:47.962616 2020-09-19 22:24:47.962616 0 \N 7012 \N 1294 \N 2978 1.0 1 2020-09-19 22:26:34.289948 2020-09-19 22:26:34.289948 0 \N 7013 \N 1315 \N 2979 1.0 1 2020-09-19 22:50:33.303098 2020-09-19 22:50:33.303098 0 \N 7014 \N 949 \N 2980 1.0 1 2020-09-19 23:42:07.50308 2020-09-19 23:42:07.50308 0 \N 7015 \N 949 \N 2980 1.0 0 2020-09-19 23:42:10.924083 2020-09-19 23:42:10.924083 3 \N 7016 \N 949 \N 2981 1.0 1 2020-09-19 23:42:41.982948 2020-09-19 23:42:41.982948 0 \N 7017 \N 1294 \N 2982 1.0 1 2020-09-19 23:45:03.007291 2020-09-19 23:45:03.007291 0 \N 7018 \N 1294 \N 2983 1.0 1 2020-09-20 00:05:39.962617 2020-09-20 00:05:39.962617 0 \N 7019 \N 1334 \N 2984 1.0 1 2020-09-20 00:26:18.182207 2020-09-20 00:26:18.182207 0 \N 7020 \N 319 \N 2984 1.0 1 2020-09-20 00:26:18.217409 2020-09-20 00:26:18.217409 0 \N 7021 \N 1294 \N 2985 1.0 1 2020-09-20 00:31:02.971975 2020-09-20 00:31:02.971975 0 \N 7022 \N 1318 \N 2986 1.0 1 2020-09-20 00:33:25.529284 2020-09-20 00:33:25.529284 0 \N 7023 \N 149 \N 2987 1.0 1 2020-09-20 00:48:37.590567 2020-09-20 00:48:37.590567 0 \N 7024 \N 1294 \N 2988 1.0 1 2020-09-20 01:00:24.227555 2020-09-20 01:00:24.227555 0 \N 7025 \N 369 \N 2989 1.0 1 2020-09-20 01:03:23.431398 2020-09-20 01:03:23.431398 0 \N 7026 \N 1348 \N 2990 1.0 1 2020-09-20 01:05:49.611977 2020-09-20 01:05:49.611977 0 \N 7027 \N 1294 392 \N 6.0 0 2020-09-21 18:36:17.47056 2020-09-21 18:36:17.47056 1 \N 7028 \N 1349 392 \N 2.0 0 2020-09-21 18:36:17.502157 2020-09-21 18:36:17.502157 1 \N 7029 \N 1350 392 \N 1.0 0 2020-09-21 18:36:17.531548 2020-09-21 18:36:17.531548 1 \N 7030 \N 1139 392 \N 1.0 0 2020-09-21 18:36:17.556644 2020-09-21 18:36:17.556644 1 \N 7031 \N 1351 392 \N 1.0 0 2020-09-21 18:36:17.581927 2020-09-21 18:36:17.581927 1 \N 7032 \N 1294 \N 2991 1.0 1 2020-09-21 18:39:45.218391 2020-09-21 18:39:45.218391 0 \N 7033 \N 1348 393 \N 3.0 0 2020-09-21 18:42:17.474917 2020-09-21 18:42:17.474917 1 \N 7034 \N 1348 \N 2992 1.0 1 2020-09-21 18:43:10.119039 2020-09-21 18:43:10.119039 0 \N 7035 \N 1305 \N 2993 1.0 1 2020-09-21 18:45:22.337491 2020-09-21 18:45:22.337491 0 \N 7036 \N 1315 \N 2994 2.0 1 2020-09-21 19:01:50.229371 2020-09-21 19:01:50.229371 0 \N 7037 \N 144 \N \N 5.0 0 2020-09-21 19:34:17.489714 2020-09-21 19:34:17.489714 7 675 7038 \N 239 \N \N 1.0 0 2020-09-21 19:34:17.510023 2020-09-21 19:34:17.510023 7 675 7039 \N 483 \N \N 1.0 0 2020-09-21 19:34:17.530461 2020-09-21 19:34:17.530461 7 675 7040 \N 401 \N \N 5.0 0 2020-09-21 19:34:17.547803 2020-09-21 19:34:17.547803 7 675 7041 \N 7 \N \N 6.0 0 2020-09-21 19:34:17.565855 2020-09-21 19:34:17.565855 7 675 7042 \N 405 \N \N 1.0 0 2020-09-21 19:34:17.58343 2020-09-21 19:34:17.58343 7 675 7043 \N 15 \N \N 2.0 0 2020-09-21 19:34:17.602597 2020-09-21 19:34:17.602597 7 675 7044 \N 557 \N \N 1.0 0 2020-09-21 19:34:17.620818 2020-09-21 19:34:17.620818 7 675 7045 \N 408 \N \N 4.0 0 2020-09-21 19:34:17.639948 2020-09-21 19:34:17.639948 7 675 7046 \N 638 \N \N 2.0 0 2020-09-21 19:34:17.657669 2020-09-21 19:34:17.657669 7 675 7047 \N 284 \N \N 2.0 0 2020-09-21 19:34:17.675001 2020-09-21 19:34:17.675001 7 675 7048 \N 135 \N \N 2.0 0 2020-09-21 19:34:17.692651 2020-09-21 19:34:17.692651 7 675 7049 \N 324 \N \N 4.0 0 2020-09-21 19:34:17.712988 2020-09-21 19:34:17.712988 7 675 7050 \N 146 \N \N 2.0 0 2020-09-21 19:34:17.730662 2020-09-21 19:34:17.730662 7 675 7051 \N 665 \N \N 5.0 0 2020-09-21 19:34:17.748776 2020-09-21 19:34:17.748776 7 675 7052 \N 149 \N \N 4.0 0 2020-09-21 19:34:17.765827 2020-09-21 19:34:17.765827 7 675 7053 \N 17 \N \N 5.0 0 2020-09-21 19:34:17.782891 2020-09-21 19:34:17.782891 7 675 7054 \N 611 \N \N 1.0 0 2020-09-21 19:34:17.804623 2020-09-21 19:34:17.804623 7 675 7055 \N 951 \N \N 1.0 0 2020-09-21 19:34:17.825041 2020-09-21 19:34:17.825041 7 675 7056 \N 255 \N \N 5.0 0 2020-09-21 19:34:17.846226 2020-09-21 19:34:17.846226 7 675 7057 \N 604 \N \N 4.0 0 2020-09-21 19:34:17.86394 2020-09-21 19:34:17.86394 7 675 7058 \N 283 \N \N 3.0 0 2020-09-21 19:34:17.885735 2020-09-21 19:34:17.885735 7 675 7059 \N 404 \N \N 3.0 0 2020-09-21 19:34:17.904444 2020-09-21 19:34:17.904444 7 675 7060 \N 415 \N \N 6.0 0 2020-09-21 19:34:17.925314 2020-09-21 19:34:17.925314 7 675 7061 \N 190 \N \N 2.0 0 2020-09-21 19:34:17.943569 2020-09-21 19:34:17.943569 7 675 7062 \N 209 \N \N 4.0 0 2020-09-21 19:34:17.961074 2020-09-21 19:34:17.961074 7 675 7063 \N 431 \N \N 3.0 0 2020-09-21 19:34:17.981136 2020-09-21 19:34:17.981136 7 675 7064 \N 432 \N \N 2.0 0 2020-09-21 19:34:18.00123 2020-09-21 19:34:18.00123 7 675 7065 \N 280 \N \N 1.0 0 2020-09-21 19:34:18.022621 2020-09-21 19:34:18.022621 7 675 7066 \N 279 \N \N 4.0 0 2020-09-21 19:34:18.043596 2020-09-21 19:34:18.043596 7 675 7067 \N 291 \N \N 1.0 0 2020-09-21 19:34:18.065417 2020-09-21 19:34:18.065417 7 675 7068 \N 109 \N \N 3.0 0 2020-09-21 19:34:18.083211 2020-09-21 19:34:18.083211 7 675 7069 \N 287 \N \N 2.0 0 2020-09-21 19:34:18.100422 2020-09-21 19:34:18.100422 7 675 7070 \N 534 \N \N 1.0 0 2020-09-21 19:34:18.123987 2020-09-21 19:34:18.123987 7 675 7071 \N 536 \N \N 1.0 0 2020-09-21 19:34:18.142641 2020-09-21 19:34:18.142641 7 675 7072 \N 213 \N \N 3.0 0 2020-09-21 19:34:27.743934 2020-09-21 19:34:27.743934 7 676 7073 \N 635 \N \N 6.0 0 2020-09-21 19:34:27.763345 2020-09-21 19:34:27.763345 7 676 7074 \N 68 \N \N 4.0 0 2020-09-21 19:34:27.782864 2020-09-21 19:34:27.782864 7 676 7075 \N 204 \N \N 4.0 0 2020-09-21 19:34:27.803928 2020-09-21 19:34:27.803928 7 676 7076 \N 8 \N \N 3.0 0 2020-09-21 19:34:36.955019 2020-09-21 19:34:36.955019 7 677 7077 \N 577 \N \N 1.0 0 2020-09-21 19:34:36.978973 2020-09-21 19:34:36.978973 7 677 7078 \N 1101 \N \N 7.0 0 2020-09-21 19:34:46.137823 2020-09-21 19:34:46.137823 7 678 7079 \N 1104 \N \N 2.0 0 2020-09-21 19:34:46.160792 2020-09-21 19:34:46.160792 7 678 7080 \N 1103 \N \N 2.0 0 2020-09-21 19:34:46.187521 2020-09-21 19:34:46.187521 7 678 7081 \N 370 \N \N 2.0 0 2020-09-21 19:34:46.210598 2020-09-21 19:34:46.210598 7 678 7082 \N 386 \N \N 4.0 0 2020-09-21 19:34:46.233728 2020-09-21 19:34:46.233728 7 678 7083 \N 1102 \N \N 1.0 0 2020-09-21 19:34:46.257012 2020-09-21 19:34:46.257012 7 678 7084 \N 371 \N \N 1.0 0 2020-09-21 19:34:46.280183 2020-09-21 19:34:46.280183 7 678 7085 \N 377 \N \N 2.0 0 2020-09-21 19:34:46.302184 2020-09-21 19:34:46.302184 7 678 7086 \N 376 \N \N 2.0 0 2020-09-21 19:34:46.325624 2020-09-21 19:34:46.325624 7 678 7087 \N 375 \N \N 4.0 0 2020-09-21 19:34:46.346868 2020-09-21 19:34:46.346868 7 678 7088 \N 378 \N \N 1.0 0 2020-09-21 19:34:46.369974 2020-09-21 19:34:46.369974 7 678 7089 \N 374 \N \N 3.0 0 2020-09-21 19:34:46.392083 2020-09-21 19:34:46.392083 7 678 7090 \N 1311 \N 2995 1.0 1 2020-09-21 19:58:21.369284 2020-09-21 19:58:21.369284 0 \N 7091 \N 1006 \N 2996 1.0 1 2020-09-21 20:09:38.939452 2020-09-21 20:09:38.939452 0 \N 7092 \N 1295 394 \N 1.0 0 2020-09-21 21:10:03.07545 2020-09-21 21:10:03.07545 1 \N 7093 \N 1295 \N 2997 1.0 1 2020-09-21 21:11:01.087087 2020-09-21 21:11:01.087087 0 \N 7094 \N 1126 \N 2997 1.0 1 2020-09-21 21:11:01.111985 2020-09-21 21:11:01.111985 0 \N 7095 \N 1294 \N 2998 1.0 1 2020-09-21 21:59:52.135113 2020-09-21 21:59:52.135113 0 \N 7096 \N 1324 \N 2999 1.0 1 2020-09-21 22:09:47.173103 2020-09-21 22:09:47.173103 0 \N 7097 \N 507 \N 2999 1.0 1 2020-09-21 22:09:47.200698 2020-09-21 22:09:47.200698 0 \N 7098 \N 1334 \N 2999 1.0 1 2020-09-21 22:09:47.225672 2020-09-21 22:09:47.225672 0 \N 7099 \N 1273 \N 2999 1.0 1 2020-09-21 22:09:47.259834 2020-09-21 22:09:47.259834 0 \N 7100 \N 1259 \N 2999 1.0 1 2020-09-21 22:09:47.295194 2020-09-21 22:09:47.295194 0 \N 7101 \N 1306 \N 3000 1.0 1 2020-09-21 22:18:51.455716 2020-09-21 22:18:51.455716 0 \N 7102 \N 682 \N \N 5.0 0 2020-09-21 22:46:55.071557 2020-09-21 22:46:55.071557 7 679 7103 \N 682 \N 3001 1.0 1 2020-09-21 23:01:42.434297 2020-09-21 23:01:42.434297 0 \N 7104 \N 1350 \N 3002 1.0 1 2020-09-21 23:29:05.440934 2020-09-21 23:29:05.440934 0 \N 7105 \N 1005 \N 3003 1.0 1 2020-09-22 00:06:58.562109 2020-09-22 00:06:58.562109 0 \N 7106 \N 1329 \N 3004 1.0 1 2020-09-22 00:37:03.005313 2020-09-22 00:37:03.005313 0 \N 7107 \N 1294 395 \N 3.0 0 2020-09-22 00:55:53.740787 2020-09-22 00:55:53.740787 1 \N 7108 \N 564 \N \N 3.0 0 2020-09-22 18:31:29.426371 2020-09-22 18:31:29.426371 7 680 7109 \N 564 \N 3005 1.0 1 2020-09-22 18:32:17.880791 2020-09-22 18:32:17.880791 0 \N 7110 \N 1118 \N 3006 1.0 1 2020-09-22 19:18:52.752922 2020-09-22 19:18:52.752922 0 \N 7111 \N 1343 \N 3007 1.0 1 2020-09-22 19:20:11.101257 2020-09-22 19:20:11.101257 0 \N 7112 \N 1351 396 \N 1.0 0 2020-09-22 19:47:43.028174 2020-09-22 19:47:43.028174 1 \N 7113 \N 545 \N \N 1.0 0 2020-09-22 19:48:50.635832 2020-09-22 19:48:50.635832 7 681 7114 \N 540 \N \N 1.0 0 2020-09-22 19:48:50.654728 2020-09-22 19:48:50.654728 7 681 7115 \N 347 \N \N 1.0 0 2020-09-22 19:48:50.676431 2020-09-22 19:48:50.676431 7 681 7116 \N 351 \N \N 1.0 0 2020-09-22 19:48:50.696341 2020-09-22 19:48:50.696341 7 681 7117 \N 1020 \N 3008 1.0 1 2020-09-22 20:02:05.489361 2020-09-22 20:02:05.489361 0 \N 7118 \N 670 \N 3008 1.0 1 2020-09-22 20:02:05.515242 2020-09-22 20:02:05.515242 0 \N 7119 \N 1352 397 \N 1.0 0 2020-09-22 20:17:05.140998 2020-09-22 20:17:05.140998 1 \N 7120 \N 1353 397 \N 1.0 0 2020-09-22 20:17:05.166337 2020-09-22 20:17:05.166337 1 \N 7121 \N 1354 397 \N 1.0 0 2020-09-22 20:17:05.191184 2020-09-22 20:17:05.191184 1 \N 7122 \N 673 \N \N 4.0 0 2020-09-22 20:47:19.266852 2020-09-22 20:47:19.266852 7 683 7123 \N 978 \N \N 4.0 0 2020-09-22 20:47:19.313341 2020-09-22 20:47:19.313341 7 683 7124 \N 983 \N \N 4.0 0 2020-09-22 20:47:19.352462 2020-09-22 20:47:19.352462 7 683 7125 \N 996 \N \N 4.0 0 2020-09-22 20:47:19.393929 2020-09-22 20:47:19.393929 7 683 7126 \N 1021 \N \N 2.0 0 2020-09-22 20:47:19.426466 2020-09-22 20:47:19.426466 7 683 7127 \N 339 \N \N 1.0 0 2020-09-22 20:47:26.991536 2020-09-22 20:47:26.991536 7 682 7128 \N 427 \N 3009 1.0 1 2020-09-22 22:53:50.597399 2020-09-22 22:53:50.597399 0 \N 7129 \N 455 \N 3010 1.0 1 2020-09-22 23:13:46.092334 2020-09-22 23:13:46.092334 0 \N 7130 \N 907 \N 3010 1.0 1 2020-09-22 23:13:46.1299 2020-09-22 23:13:46.1299 0 \N 7131 \N 1252 \N 3011 1.0 1 2020-09-22 23:27:44.639345 2020-09-22 23:27:44.639345 0 \N 7132 \N 578 \N 3012 1.0 1 2020-09-22 23:38:10.996737 2020-09-22 23:38:10.996737 0 \N 7133 \N 1180 \N 3013 1.0 1 2020-09-23 00:49:43.91189 2020-09-23 00:49:43.91189 0 \N 7134 \N 1226 \N 3014 1.0 1 2020-09-23 00:54:46.256244 2020-09-23 00:54:46.256244 0 \N 7135 \N 1294 \N 3015 1.0 1 2020-09-23 01:01:03.715625 2020-09-23 01:01:03.715625 0 \N 7136 \N 710 \N 3016 1.0 1 2020-09-23 19:04:09.78278 2020-09-23 19:04:09.78278 0 \N 7137 \N 579 \N 3016 1.0 1 2020-09-23 19:04:09.808074 2020-09-23 19:04:09.808074 0 \N 7138 \N 1294 \N 3017 1.0 1 2020-09-23 20:09:29.867201 2020-09-23 20:09:29.867201 0 \N 7139 \N 369 \N 3018 2.0 1 2020-09-23 20:36:17.82551 2020-09-23 20:36:17.82551 0 \N 7140 \N 1339 \N 3019 1.0 1 2020-09-23 21:23:59.979881 2020-09-23 21:23:59.979881 0 \N 7141 \N 369 \N 3019 1.0 1 2020-09-23 21:24:00.012716 2020-09-23 21:24:00.012716 0 \N 7142 \N 1306 \N 3020 1.0 1 2020-09-23 21:27:27.272136 2020-09-23 21:27:27.272136 0 \N 7143 \N 1337 \N 3021 1.0 1 2020-09-23 22:05:31.455497 2020-09-23 22:05:31.455497 0 \N 7144 \N 1270 \N 3021 1.0 1 2020-09-23 22:05:31.480029 2020-09-23 22:05:31.480029 0 \N 7145 \N 1315 \N 3022 1.0 1 2020-09-23 22:17:23.84817 2020-09-23 22:17:23.84817 0 \N 7146 \N 41 \N \N 6.0 0 2020-09-23 22:47:44.810239 2020-09-23 22:47:44.810239 7 684 7147 \N 396 \N \N 1.0 0 2020-09-23 22:47:53.034878 2020-09-23 22:47:53.034878 7 685 7148 \N 1325 \N \N 1.0 0 2020-09-23 22:48:35.375391 2020-09-23 22:48:35.375391 7 686 7149 \N 376 \N \N 1.0 0 2020-09-23 22:49:22.503788 2020-09-23 22:49:22.503788 7 687 7150 \N 376 \N 3023 1.0 1 2020-09-23 22:50:26.871534 2020-09-23 22:50:26.871534 0 \N 7151 \N 1294 \N 3024 1.0 1 2020-09-23 22:50:55.83199 2020-09-23 22:50:55.83199 0 \N 7152 \N 1311 \N 3025 1.0 1 2020-09-23 23:13:34.081921 2020-09-23 23:13:34.081921 0 \N 7153 \N 1335 \N 3026 1.0 1 2020-09-23 23:33:37.874262 2020-09-23 23:33:37.874262 0 \N 7154 \N 1122 \N 3027 1.0 1 2020-09-23 23:46:17.371023 2020-09-23 23:46:17.371023 0 \N 7155 \N 1315 \N 3028 1.0 1 2020-09-23 23:49:22.65208 2020-09-23 23:49:22.65208 0 \N 7156 \N 1315 \N 3029 2.0 1 2020-09-23 23:51:24.773003 2020-09-23 23:51:24.773003 0 \N 7157 \N 1118 \N 3030 1.0 1 2020-09-24 00:13:14.226809 2020-09-24 00:13:14.226809 0 \N 7158 \N 1334 \N 3030 1.0 1 2020-09-24 00:13:14.260135 2020-09-24 00:13:14.260135 0 \N 7159 \N 1315 \N 3030 1.0 1 2020-09-24 00:13:14.291688 2020-09-24 00:13:14.291688 0 \N 7160 \N 1228 \N 3031 1.0 1 2020-09-24 00:17:52.397483 2020-09-24 00:17:52.397483 0 \N 7161 \N 1228 \N 3031 1.0 0 2020-09-24 00:17:59.330761 2020-09-24 00:17:59.330761 9 \N 7162 \N 1228 \N 3032 1.0 1 2020-09-24 00:18:41.40649 2020-09-24 00:18:41.40649 0 \N 7163 \N 713 \N 3033 1.0 1 2020-09-24 00:24:44.598708 2020-09-24 00:24:44.598708 0 \N 7164 \N 668 \N 3033 1.0 1 2020-09-24 00:24:44.626789 2020-09-24 00:24:44.626789 0 \N 7165 \N 579 \N 3016 1.0 0 2020-09-24 00:46:55.911557 2020-09-24 00:46:55.911557 3 \N 7166 \N 710 \N 3016 1.0 0 2020-09-24 00:46:55.93539 2020-09-24 00:46:55.93539 3 \N 7167 \N 710 \N 3034 1.0 1 2020-09-24 00:49:06.325228 2020-09-24 00:49:06.325228 0 \N 7168 \N 579 \N 3034 1.0 1 2020-09-24 00:49:06.494373 2020-09-24 00:49:06.494373 0 \N 7169 \N 1301 \N 3035 1.0 1 2020-09-24 17:10:19.014154 2020-09-24 17:10:19.014154 0 \N 7170 \N 369 \N 3036 2.0 1 2020-09-24 18:08:13.344491 2020-09-24 18:08:13.344491 0 \N 7171 \N 1301 \N 3037 1.0 1 2020-09-24 18:23:40.820344 2020-09-24 18:23:40.820344 0 \N 7172 \N 1080 \N 3038 1.0 1 2020-09-24 18:26:18.329989 2020-09-24 18:26:18.329989 0 \N 7173 \N 1187 \N 3039 1.0 1 2020-09-24 18:58:00.115741 2020-09-24 18:58:00.115741 0 \N 7174 \N 1181 \N 3040 1.0 1 2020-09-24 20:45:30.688041 2020-09-24 20:45:30.688041 0 \N 7175 \N 1294 \N 3041 1.0 1 2020-09-24 23:50:29.075609 2020-09-24 23:50:29.075609 0 \N 7176 \N 1139 398 \N 1.0 0 2020-09-25 00:01:34.887257 2020-09-25 00:01:34.887257 1 \N 7177 \N 1139 \N 3042 1.0 1 2020-09-25 00:02:11.398105 2020-09-25 00:02:11.398105 0 \N 7178 \N 1309 \N 3043 1.0 1 2020-09-25 00:11:16.043153 2020-09-25 00:11:16.043153 0 \N 7179 \N 1230 \N 3043 1.0 1 2020-09-25 00:11:16.069414 2020-09-25 00:11:16.069414 0 \N 7180 \N 1126 \N 3044 1.0 1 2020-09-25 00:28:51.211761 2020-09-25 00:28:51.211761 0 \N 7181 \N 1326 \N 3045 1.0 1 2020-09-25 00:47:39.697288 2020-09-25 00:47:39.697288 0 \N 7182 \N 1325 \N 3046 1.0 1 2020-09-25 00:49:39.175619 2020-09-25 00:49:39.175619 0 \N 7183 \N 1335 \N 3047 1.0 1 2020-09-25 00:52:33.32418 2020-09-25 00:52:33.32418 0 \N 7184 \N 1340 \N 3048 1.0 1 2020-09-25 18:25:28.347247 2020-09-25 18:25:28.347247 0 \N 7185 \N 1294 \N 3049 1.0 1 2020-09-25 19:46:25.234514 2020-09-25 19:46:25.234514 0 \N 7186 \N 1327 \N 3050 1.0 1 2020-09-25 20:08:00.310038 2020-09-25 20:08:00.310038 0 \N 7187 \N 1332 \N 3050 1.0 1 2020-09-25 20:08:00.34108 2020-09-25 20:08:00.34108 0 \N 7188 \N 1314 \N 3050 1.0 1 2020-09-25 20:08:00.370657 2020-09-25 20:08:00.370657 0 \N 7189 \N 1230 \N 3050 1.0 1 2020-09-25 20:08:00.399454 2020-09-25 20:08:00.399454 0 \N 7190 \N 1149 \N 3051 1.0 1 2020-09-25 23:16:04.170717 2020-09-25 23:16:04.170717 0 \N 7191 \N 1328 \N 3052 1.0 1 2020-09-26 00:33:02.696472 2020-09-26 00:33:02.696472 0 \N 7192 \N 1223 \N 3052 1.0 1 2020-09-26 00:33:02.717922 2020-09-26 00:33:02.717922 0 \N 7193 \N 1325 \N 3053 1.0 1 2020-09-26 00:43:47.401339 2020-09-26 00:43:47.401339 0 \N 7194 \N 1239 \N 3053 1.0 1 2020-09-26 00:43:47.426421 2020-09-26 00:43:47.426421 0 \N 7195 \N 1020 \N 3054 1.0 1 2020-09-26 17:46:39.926774 2020-09-26 17:46:39.926774 0 \N 7196 \N 993 \N 3054 1.0 1 2020-09-26 17:46:39.952073 2020-09-26 17:46:39.952073 0 \N 7197 \N 1328 \N 3055 1.0 1 2020-09-26 18:17:39.857957 2020-09-26 18:17:39.857957 0 \N 7198 \N 1294 \N 3056 1.0 1 2020-09-26 18:20:21.657461 2020-09-26 18:20:21.657461 0 \N 7199 \N 1294 \N 3056 1.0 0 2020-09-26 18:20:36.574239 2020-09-26 18:20:36.574239 3 \N 7200 \N 1294 \N 3057 1.0 1 2020-09-26 18:20:59.994777 2020-09-26 18:20:59.994777 0 \N 7201 \N 123 \N 3058 1.0 1 2020-09-26 19:00:43.067274 2020-09-26 19:00:43.067274 0 \N 7202 \N 1047 \N 3059 1.0 1 2020-09-26 19:23:36.74336 2020-09-26 19:23:36.74336 0 \N 7203 \N 1336 \N 3060 1.0 1 2020-09-26 23:09:10.431658 2020-09-26 23:09:10.431658 0 \N 7204 \N 1317 \N 3060 1.0 1 2020-09-26 23:09:10.466605 2020-09-26 23:09:10.466605 0 \N 7205 \N 41 \N 3060 1.0 1 2020-09-26 23:09:10.498062 2020-09-26 23:09:10.498062 0 \N 7206 \N 1322 \N 3061 1.0 1 2020-09-26 23:22:08.7141 2020-09-26 23:22:08.7141 0 \N 7207 \N 1180 \N 3062 1.0 1 2020-09-26 23:56:48.57891 2020-09-26 23:56:48.57891 0 \N 7208 \N 1126 \N 3063 1.0 1 2020-09-27 01:07:22.164411 2020-09-27 01:07:22.164411 0 \N 7209 \N 369 \N 3064 1.0 1 2020-09-27 01:08:59.026409 2020-09-27 01:08:59.026409 0 \N 7210 \N 647 \N 3065 1.0 1 2020-09-28 17:30:39.428699 2020-09-28 17:30:39.428699 0 \N 7211 \N 1355 399 \N 3.0 0 2020-09-28 19:11:21.431566 2020-09-28 19:11:21.431566 1 \N 7212 \N 1356 399 \N 3.0 0 2020-09-28 19:11:21.460869 2020-09-28 19:11:21.460869 1 \N 7213 \N 1355 \N 3066 1.0 1 2020-09-28 19:13:38.865619 2020-09-28 19:13:38.865619 0 \N 7214 \N 1355 400 \N 4.0 0 2020-09-28 19:23:25.123733 2020-09-28 19:23:25.123733 1 \N 7215 \N 1356 400 \N 3.0 0 2020-09-28 19:23:25.16072 2020-09-28 19:23:25.16072 1 \N 7216 \N 1310 \N 3067 1.0 1 2020-09-28 20:39:15.79942 2020-09-28 20:39:15.79942 0 \N 7217 \N 1126 \N 3067 1.0 1 2020-09-28 20:39:15.827395 2020-09-28 20:39:15.827395 0 \N 7218 \N 1348 \N 3067 1.0 1 2020-09-28 20:39:15.85519 2020-09-28 20:39:15.85519 0 \N 7219 \N 1294 \N 3067 1.0 1 2020-09-28 20:39:15.883129 2020-09-28 20:39:15.883129 0 \N 7220 \N 1029 \N 3067 2.0 1 2020-09-28 20:39:15.910634 2020-09-28 20:39:15.910634 0 \N 7221 \N 1305 \N 3068 1.0 1 2020-09-28 22:46:37.664483 2020-09-28 22:46:37.664483 0 \N 7222 \N 1355 \N 3066 1.0 0 2020-09-29 01:01:13.510069 2020-09-29 01:01:13.510069 9 \N 7223 \N 407 \N \N 2.0 0 2020-09-29 19:47:21.120571 2020-09-29 19:47:21.120571 7 689 7224 \N 1339 \N \N 3.0 0 2020-09-29 19:47:59.222329 2020-09-29 19:47:59.222329 7 690 7225 \N 1339 \N 3069 1.0 1 2020-09-29 19:57:57.626285 2020-09-29 19:57:57.626285 0 \N 7226 \N 1178 \N 3069 1.0 1 2020-09-29 19:57:57.653951 2020-09-29 19:57:57.653951 0 \N 7227 \N 1126 \N 3069 1.0 1 2020-09-29 19:57:57.679663 2020-09-29 19:57:57.679663 0 \N 7228 \N 1190 \N 3069 1.0 1 2020-09-29 19:57:57.705004 2020-09-29 19:57:57.705004 0 \N 7229 \N 1299 \N 3070 1.0 1 2020-09-29 20:34:08.847434 2020-09-29 20:34:08.847434 0 \N 7230 \N 1294 \N 3070 1.0 1 2020-09-29 20:34:08.875178 2020-09-29 20:34:08.875178 0 \N 7231 \N 1118 \N \N 1.0 0 2020-09-29 20:38:08.463447 2020-09-29 20:38:08.463447 7 688 7232 \N 1180 \N \N 1.0 0 2020-09-29 20:39:54.260367 2020-09-29 20:39:54.260367 7 691 7233 \N 1320 \N 3071 1.0 1 2020-09-29 20:41:53.904263 2020-09-29 20:41:53.904263 0 \N 7234 \N 1180 \N 3071 1.0 1 2020-09-29 20:41:53.932104 2020-09-29 20:41:53.932104 0 \N 7235 \N 1294 \N 3072 1.0 1 2020-09-29 21:06:08.426583 2020-09-29 21:06:08.426583 0 \N 7236 \N 1126 \N 3073 1.0 1 2020-09-29 21:36:29.929012 2020-09-29 21:36:29.929012 0 \N 7237 \N 1339 \N 3073 1.0 1 2020-09-29 21:36:29.955837 2020-09-29 21:36:29.955837 0 \N 7238 \N 367 \N 3073 2.0 1 2020-09-29 21:36:29.980044 2020-09-29 21:36:29.980044 0 \N 7239 \N 13 \N 3074 1.0 1 2020-09-29 22:23:54.217026 2020-09-29 22:23:54.217026 0 \N 7240 \N 529 \N 3075 1.0 1 2020-09-29 22:35:38.762539 2020-09-29 22:35:38.762539 0 \N 7241 \N 494 \N 3076 1.0 1 2020-09-29 22:46:53.480643 2020-09-29 22:46:53.480643 0 \N 7242 \N 1305 \N 3077 1.0 1 2020-09-29 23:59:23.695557 2020-09-29 23:59:23.695557 0 \N 7243 \N 1197 \N 3078 1.0 1 2020-09-30 00:02:04.363609 2020-09-30 00:02:04.363609 0 \N 7244 \N 1230 \N 3078 1.0 1 2020-09-30 00:02:04.389569 2020-09-30 00:02:04.389569 0 \N 7245 \N 1209 \N 3079 1.0 1 2020-09-30 00:39:00.157083 2020-09-30 00:39:00.157083 0 \N 7246 \N 1000 \N 3079 1.0 1 2020-09-30 00:39:00.186352 2020-09-30 00:39:00.186352 0 \N 7247 \N 1202 \N 3080 1.0 1 2020-09-30 19:31:06.741906 2020-09-30 19:31:06.741906 0 \N 7248 \N 1038 \N 3081 1.0 1 2020-09-30 19:33:07.227469 2020-09-30 19:33:07.227469 0 \N 7249 \N 1038 \N 3081 1.0 0 2020-09-30 19:33:45.875432 2020-09-30 19:33:45.875432 3 \N 7250 \N 1038 \N 3082 1.0 1 2020-09-30 19:34:28.321761 2020-09-30 19:34:28.321761 0 \N 7251 \N 369 \N 3082 2.0 1 2020-09-30 19:34:28.359717 2020-09-30 19:34:28.359717 0 \N 7252 \N 1272 \N 3083 1.0 1 2020-09-30 19:38:17.975937 2020-09-30 19:38:17.975937 0 \N 7253 \N 1271 \N 3084 1.0 1 2020-09-30 20:28:02.138635 2020-09-30 20:28:02.138635 0 \N 7254 \N 367 \N 3084 2.0 1 2020-09-30 20:28:02.164683 2020-09-30 20:28:02.164683 0 \N 7255 \N 367 \N 3084 2.0 0 2020-09-30 20:30:53.496657 2020-09-30 20:30:53.496657 3 \N 7256 \N 1271 \N 3084 1.0 0 2020-09-30 20:30:53.519024 2020-09-30 20:30:53.519024 3 \N 7257 \N 367 \N 3085 2.0 1 2020-09-30 20:34:38.412548 2020-09-30 20:34:38.412548 0 \N 7258 \N 1126 \N 3086 1.0 1 2020-09-30 21:11:51.396587 2020-09-30 21:11:51.396587 0 \N 7259 \N 177 \N 3087 1.0 1 2020-09-30 22:12:55.704395 2020-09-30 22:12:55.704395 0 \N 7260 \N 985 \N 3087 1.0 1 2020-09-30 22:12:55.738803 2020-09-30 22:12:55.738803 0 \N 7261 \N 1318 \N 3088 1.0 1 2020-09-30 22:49:08.861398 2020-09-30 22:49:08.861398 0 \N 7262 \N 1229 \N 3088 1.0 1 2020-09-30 22:49:08.88449 2020-09-30 22:49:08.88449 0 \N 7263 \N 1320 \N 3088 1.0 1 2020-09-30 22:49:08.913024 2020-09-30 22:49:08.913024 0 \N 7264 \N 540 \N 2539 1.0 0 2020-09-30 22:57:14.595455 2020-09-30 22:57:14.595455 8 \N 7265 \N 705 \N 3089 1.0 1 2020-09-30 22:58:46.989007 2020-09-30 22:58:46.989007 0 \N 7266 \N 1294 \N 3090 1.0 1 2020-09-30 23:48:23.282522 2020-09-30 23:48:23.282522 0 \N 7267 \N 1148 \N 3091 1.0 1 2020-09-30 23:59:33.565372 2020-09-30 23:59:33.565372 0 \N 7268 \N 994 \N 3092 1.0 1 2020-10-01 01:03:07.261546 2020-10-01 01:03:07.261546 0 \N 7269 \N 369 \N 3093 1.0 1 2020-10-01 17:28:37.571922 2020-10-01 17:28:37.571922 0 \N 7270 \N 1329 \N 3094 1.0 1 2020-10-01 18:57:43.322172 2020-10-01 18:57:43.322172 0 \N 7271 \N 1294 \N 3095 1.0 1 2020-10-01 23:04:47.529069 2020-10-01 23:04:47.529069 0 \N 7272 \N 369 \N 3095 1.0 1 2020-10-01 23:04:47.554508 2020-10-01 23:04:47.554508 0 \N 7273 \N 98 \N 3096 1.0 1 2020-10-01 23:07:00.836225 2020-10-01 23:07:00.836225 0 \N 7274 \N 1312 \N 3097 1.0 1 2020-10-01 23:13:37.549468 2020-10-01 23:13:37.549468 0 \N 7275 \N 1355 \N 3098 1.0 1 2020-10-01 23:21:46.41544 2020-10-01 23:21:46.41544 0 \N 7276 \N 1126 \N \N 1.0 0 2020-10-01 23:43:53.239883 2020-10-01 23:43:53.239883 7 692 7277 \N 1003 \N 3099 1.0 1 2020-10-02 00:05:22.242012 2020-10-02 00:05:22.242012 0 \N 7278 \N 1294 \N 3100 1.0 1 2020-10-02 00:52:03.865473 2020-10-02 00:52:03.865473 0 \N 7279 \N 716 \N 3100 1.0 1 2020-10-02 00:52:03.907718 2020-10-02 00:52:03.907718 0 \N 7280 \N 259 \N 3101 1.0 1 2020-10-02 16:20:10.019766 2020-10-02 16:20:10.019766 0 \N 7281 \N 1159 401 \N 2.0 0 2020-10-02 19:40:29.358538 2020-10-02 19:40:29.358538 1 \N 7282 \N 1357 401 \N 6.0 0 2020-10-02 19:40:29.391831 2020-10-02 19:40:29.391831 1 \N 7283 \N 1294 401 \N 12.0 0 2020-10-02 19:40:29.423379 2020-10-02 19:40:29.423379 1 \N 7284 \N 1182 401 \N 1.0 0 2020-10-02 19:40:29.454009 2020-10-02 19:40:29.454009 1 \N 7285 \N 1297 401 \N 1.0 0 2020-10-02 19:40:29.477622 2020-10-02 19:40:29.477622 1 \N 7286 \N 1358 401 \N 3.0 0 2020-10-02 19:40:29.502992 2020-10-02 19:40:29.502992 1 \N 7287 \N 1359 401 \N 1.0 0 2020-10-02 19:40:29.528555 2020-10-02 19:40:29.528555 1 \N 7288 \N 992 \N 3102 1.0 1 2020-10-02 21:00:43.216055 2020-10-02 21:00:43.216055 0 \N 7289 \N 1297 402 \N 2.0 0 2020-10-02 21:32:53.740529 2020-10-02 21:32:53.740529 1 \N 7290 \N 1294 402 \N 11.0 0 2020-10-02 21:32:53.763642 2020-10-02 21:32:53.763642 1 \N 7291 \N 1337 \N 3103 1.0 1 2020-10-02 21:47:40.85384 2020-10-02 21:47:40.85384 0 \N 7292 \N 1297 \N 3104 1.0 1 2020-10-02 21:56:12.317258 2020-10-02 21:56:12.317258 0 \N 7293 \N 1179 \N 3105 1.0 1 2020-10-02 21:58:37.049893 2020-10-02 21:58:37.049893 0 \N 7294 \N 1041 \N 3106 1.0 1 2020-10-02 23:48:04.414189 2020-10-02 23:48:04.414189 0 \N 7295 \N 1327 \N 3107 1.0 1 2020-10-03 00:11:20.68675 2020-10-03 00:11:20.68675 0 \N 7296 \N 1012 \N 3107 1.0 1 2020-10-03 00:11:20.710349 2020-10-03 00:11:20.710349 0 \N 7297 \N 1176 \N \N 1.0 0 2020-10-03 00:17:33.512642 2020-10-03 00:17:33.512642 7 693 7298 \N 1174 \N \N 1.0 0 2020-10-03 00:17:33.539541 2020-10-03 00:17:33.539541 7 693 7299 \N 1176 \N 3108 1.0 1 2020-10-03 00:18:20.947112 2020-10-03 00:18:20.947112 0 \N 7300 \N 1357 \N 3108 1.0 1 2020-10-03 00:18:20.971422 2020-10-03 00:18:20.971422 0 \N 7301 \N 1126 \N 3109 1.0 1 2020-10-03 00:21:51.282054 2020-10-03 00:21:51.282054 0 \N 7302 \N 1294 \N 3109 1.0 1 2020-10-03 00:21:51.31397 2020-10-03 00:21:51.31397 0 \N 7303 \N 1331 \N 3110 1.0 1 2020-10-03 22:27:47.937811 2020-10-03 22:27:47.937811 0 \N 7304 \N 1332 \N 3111 1.0 1 2020-10-03 22:29:13.000807 2020-10-03 22:29:13.000807 0 \N 7305 \N 1331 \N 3112 1.0 1 2020-10-03 22:45:48.950867 2020-10-03 22:45:48.950867 0 \N 7306 \N 1310 \N 3112 1.0 1 2020-10-03 22:45:48.974615 2020-10-03 22:45:48.974615 0 \N 7307 \N 1122 \N \N 1.0 0 2020-10-03 23:17:43.726176 2020-10-03 23:17:43.726176 7 695 7308 \N 675 \N \N 3.0 0 2020-10-03 23:18:04.207379 2020-10-03 23:18:04.207379 7 694 7309 \N 864 \N 3113 1.0 1 2020-10-03 23:51:50.130059 2020-10-03 23:51:50.130059 0 \N 7310 \N 704 \N \N 4.0 0 2020-10-04 00:33:31.520046 2020-10-04 00:33:31.520046 7 696 7311 \N 488 \N \N 3.0 0 2020-10-04 00:33:45.566382 2020-10-04 00:33:45.566382 7 697 7312 \N 704 \N 3114 1.0 1 2020-10-04 00:37:52.442909 2020-10-04 00:37:52.442909 0 \N 7313 \N 1139 \N 3115 1.0 1 2020-10-04 01:04:53.06589 2020-10-04 01:04:53.06589 0 \N 7314 \N 239 \N 3116 1.0 1 2020-10-05 19:37:02.855145 2020-10-05 19:37:02.855145 0 \N 7315 \N 1314 \N 3117 1.0 1 2020-10-05 20:11:28.702575 2020-10-05 20:11:28.702575 0 \N 7316 \N 1004 \N 3117 1.0 1 2020-10-05 20:11:28.727083 2020-10-05 20:11:28.727083 0 \N 7317 \N 1358 403 \N 1.0 0 2020-10-05 21:00:30.254697 2020-10-05 21:00:30.254697 1 \N 7318 \N 1182 403 \N 1.0 0 2020-10-05 21:00:30.28711 2020-10-05 21:00:30.28711 1 \N 7319 \N 1360 403 \N 1.0 0 2020-10-05 21:00:30.315257 2020-10-05 21:00:30.315257 1 \N 7320 \N 1360 404 \N 1.0 0 2020-10-05 21:00:57.521843 2020-10-05 21:00:57.521843 1 \N 7321 \N 1306 \N 3118 1.0 1 2020-10-05 21:34:54.486273 2020-10-05 21:34:54.486273 0 \N 7322 \N 1361 405 \N 1.0 0 2020-10-05 22:21:39.716724 2020-10-05 22:21:39.716724 1 \N 7323 \N 1126 406 \N 5.0 0 2020-10-06 00:08:21.644387 2020-10-06 00:08:21.644387 1 \N 7324 \N 1126 \N 3119 1.0 1 2020-10-06 00:12:54.987291 2020-10-06 00:12:54.987291 0 \N 7325 \N 1294 \N 3119 1.0 1 2020-10-06 00:12:55.030808 2020-10-06 00:12:55.030808 0 \N 7326 \N 1126 \N 3120 1.0 1 2020-10-06 00:17:54.522966 2020-10-06 00:17:54.522966 0 \N 7327 \N 673 \N 3121 1.0 1 2020-10-06 00:18:55.66866 2020-10-06 00:18:55.66866 0 \N 7328 \N 1290 \N 3122 1.0 1 2020-10-06 00:29:44.999853 2020-10-06 00:29:44.999853 0 \N 7329 \N 1328 \N 3123 1.0 1 2020-10-06 18:34:26.763035 2020-10-06 18:34:26.763035 0 \N 7330 \N 668 \N 3124 1.0 1 2020-10-06 19:45:54.012622 2020-10-06 19:45:54.012622 0 \N 7331 \N 1274 \N 3124 1.0 1 2020-10-06 19:45:54.038011 2020-10-06 19:45:54.038011 0 \N 7332 \N 993 \N 3125 1.0 1 2020-10-06 22:48:20.771482 2020-10-06 22:48:20.771482 0 \N 7333 \N 1330 \N 3125 2.0 1 2020-10-06 22:48:20.802991 2020-10-06 22:48:20.802991 0 \N 7334 \N 1330 \N 3125 2.0 0 2020-10-06 22:48:35.963281 2020-10-06 22:48:35.963281 3 \N 7335 \N 993 \N 3125 1.0 0 2020-10-06 22:48:35.984971 2020-10-06 22:48:35.984971 3 \N 7336 \N 993 \N 3126 1.0 1 2020-10-06 22:49:09.806771 2020-10-06 22:49:09.806771 0 \N 7337 \N 1330 \N 3126 2.0 1 2020-10-06 22:49:09.833549 2020-10-06 22:49:09.833549 0 \N 7338 \N 675 \N 3127 1.0 1 2020-10-06 23:05:20.176407 2020-10-06 23:05:20.176407 0 \N 7339 \N 1357 \N 3127 1.0 1 2020-10-06 23:05:20.20239 2020-10-06 23:05:20.20239 0 \N 7340 \N 1309 \N 3128 1.0 1 2020-10-07 00:44:03.213104 2020-10-07 00:44:03.213104 0 \N 7341 \N 1316 \N 3128 1.0 1 2020-10-07 00:44:03.245435 2020-10-07 00:44:03.245435 0 \N 7342 \N 146 \N 3129 1.0 1 2020-10-07 16:23:46.092668 2020-10-07 16:23:46.092668 0 \N 7343 \N 1328 \N 3130 1.0 1 2020-10-07 17:44:17.850365 2020-10-07 17:44:17.850365 0 \N 7344 \N 1159 \N 3131 1.0 1 2020-10-07 20:28:42.305017 2020-10-07 20:28:42.305017 0 \N 7345 \N 672 \N 3132 1.0 1 2020-10-07 20:35:03.553553 2020-10-07 20:35:03.553553 0 \N 7346 \N 492 \N 3133 1.0 1 2020-10-07 21:11:03.584006 2020-10-07 21:11:03.584006 0 \N 7347 \N 1310 \N 3134 1.0 1 2020-10-07 21:26:17.012272 2020-10-07 21:26:17.012272 0 \N 7348 \N 1197 \N 3134 1.0 1 2020-10-07 21:26:17.039271 2020-10-07 21:26:17.039271 0 \N 7349 \N 1197 \N 3134 1.0 0 2020-10-07 21:27:43.117124 2020-10-07 21:27:43.117124 3 \N 7350 \N 1310 \N 3134 1.0 0 2020-10-07 21:27:43.14059 2020-10-07 21:27:43.14059 3 \N 7351 \N 1310 \N 3135 1.0 1 2020-10-07 21:28:39.492389 2020-10-07 21:28:39.492389 0 \N 7352 \N 1197 \N 3135 1.0 1 2020-10-07 21:28:39.51891 2020-10-07 21:28:39.51891 0 \N 7353 \N 1211 \N 3135 1.0 1 2020-10-07 21:28:39.546116 2020-10-07 21:28:39.546116 0 \N 7354 \N 1264 \N 3136 1.0 1 2020-10-07 23:14:15.097719 2020-10-07 23:14:15.097719 0 \N 7355 \N 705 \N 3136 1.0 1 2020-10-07 23:14:15.129341 2020-10-07 23:14:15.129341 0 \N 7356 \N 1265 \N 3137 1.0 1 2020-10-07 23:15:00.476654 2020-10-07 23:15:00.476654 0 \N 7357 \N 1343 \N 3138 1.0 1 2020-10-07 23:57:57.380795 2020-10-07 23:57:57.380795 0 \N 7358 \N 950 \N 3139 1.0 1 2020-10-08 00:31:34.467313 2020-10-08 00:31:34.467313 0 \N 7359 \N 1232 \N 3140 1.0 1 2020-10-08 18:12:40.717721 2020-10-08 18:12:40.717721 0 \N 7360 \N 1207 \N 3140 1.0 1 2020-10-08 18:12:40.747216 2020-10-08 18:12:40.747216 0 \N 7361 \N 1320 \N 3141 1.0 1 2020-10-08 18:22:41.635006 2020-10-08 18:22:41.635006 0 \N 7362 \N 1317 \N 3141 1.0 1 2020-10-08 18:22:41.663661 2020-10-08 18:22:41.663661 0 \N 7363 \N 1294 \N 3142 1.0 1 2020-10-09 00:45:14.794841 2020-10-09 00:45:14.794841 0 \N 7364 \N 613 \N 3143 1.0 1 2020-10-09 00:47:33.13234 2020-10-09 00:47:33.13234 0 \N 7365 \N 1294 \N 3143 1.0 1 2020-10-09 00:47:33.163775 2020-10-09 00:47:33.163775 0 \N 7366 \N 1206 \N 3144 1.0 1 2020-10-09 00:48:49.772025 2020-10-09 00:48:49.772025 0 \N 7367 \N 1225 \N 3144 1.0 1 2020-10-09 00:48:49.80403 2020-10-09 00:48:49.80403 0 \N 7368 \N 993 \N 3145 1.0 1 2020-10-09 20:05:38.551354 2020-10-09 20:05:38.551354 0 \N 7369 \N 1362 407 \N 1.0 0 2020-10-09 20:45:26.750633 2020-10-09 20:45:26.750633 1 \N 7370 \N 1357 408 \N 4.0 0 2020-10-09 20:47:25.447103 2020-10-09 20:47:25.447103 1 \N 7371 \N 1357 409 \N 3.0 0 2020-10-09 20:48:02.583981 2020-10-09 20:48:02.583981 1 \N 7372 \N 1118 \N 3146 1.0 1 2020-10-09 21:29:37.04157 2020-10-09 21:29:37.04157 0 \N 7373 \N 864 \N 3146 1.0 1 2020-10-09 21:29:37.073119 2020-10-09 21:29:37.073119 0 \N 7374 \N 864 \N 3146 1.0 0 2020-10-09 21:29:40.67918 2020-10-09 21:29:40.67918 3 \N 7375 \N 1118 \N 3146 1.0 0 2020-10-09 21:29:40.70693 2020-10-09 21:29:40.70693 3 \N 7376 \N 1118 \N 3147 1.0 1 2020-10-09 21:32:23.816459 2020-10-09 21:32:23.816459 0 \N 7377 \N 864 \N 3147 1.0 1 2020-10-09 21:32:23.843361 2020-10-09 21:32:23.843361 0 \N 7378 \N 1337 \N 3148 1.0 1 2020-10-09 21:33:55.674886 2020-10-09 21:33:55.674886 0 \N 7379 \N 1294 \N 3149 1.0 1 2020-10-09 21:48:16.570926 2020-10-09 21:48:16.570926 0 \N 7380 \N 907 \N 3149 1.0 1 2020-10-09 21:48:16.600972 2020-10-09 21:48:16.600972 0 \N 7381 \N 1294 \N 3150 1.0 1 2020-10-09 21:50:29.233626 2020-10-09 21:50:29.233626 0 \N 7382 \N 1362 \N 3151 1.0 1 2020-10-09 23:56:18.068161 2020-10-09 23:56:18.068161 0 \N 7383 \N 1294 \N 3152 1.0 1 2020-10-09 23:58:32.029457 2020-10-09 23:58:32.029457 0 \N 7384 \N 874 \N 3153 1.0 1 2020-10-10 00:00:37.801592 2020-10-10 00:00:37.801592 0 \N 7385 \N 1029 \N 3153 1.0 1 2020-10-10 00:00:37.824284 2020-10-10 00:00:37.824284 0 \N 7386 \N 1295 410 \N 1.0 0 2020-10-10 00:27:12.190547 2020-10-10 00:27:12.190547 1 \N 7387 \N 1295 \N 3154 1.0 1 2020-10-10 00:28:08.341145 2020-10-10 00:28:08.341145 0 \N 7388 \N 1326 \N 3155 1.0 1 2020-10-10 19:45:01.751823 2020-10-10 19:45:01.751823 0 \N 7389 \N 1355 \N 3156 1.0 1 2020-10-10 20:00:38.88816 2020-10-10 20:00:38.88816 0 \N 7390 \N 668 \N 3156 1.0 1 2020-10-10 20:00:38.916918 2020-10-10 20:00:38.916918 0 \N 7391 \N 1313 \N 3156 1.0 1 2020-10-10 20:00:38.950006 2020-10-10 20:00:38.950006 0 \N 7392 \N 697 \N 3157 1.0 1 2020-10-10 21:02:09.737038 2020-10-10 21:02:09.737038 0 \N 7393 \N 1356 \N 3157 1.0 1 2020-10-10 21:02:09.765507 2020-10-10 21:02:09.765507 0 \N 7394 \N 1316 \N 3158 1.0 1 2020-10-10 23:08:46.158279 2020-10-10 23:08:46.158279 0 \N 7395 \N 1334 \N 3159 1.0 1 2020-10-10 23:12:22.287918 2020-10-10 23:12:22.287918 0 \N 7396 \N 1316 \N 3158 1.0 0 2020-10-10 23:29:50.323907 2020-10-10 23:29:50.323907 3 \N 7397 \N 1318 \N 3160 1.0 1 2020-10-12 17:16:07.406304 2020-10-12 17:16:07.406304 0 \N 7398 \N 1126 \N 3161 1.0 1 2020-10-12 21:06:12.274372 2020-10-12 21:06:12.274372 0 \N 7399 \N 1314 \N 3162 1.0 1 2020-10-12 23:04:49.693217 2020-10-12 23:04:49.693217 0 \N 7400 \N 673 \N 3162 1.0 1 2020-10-12 23:04:49.718845 2020-10-12 23:04:49.718845 0 \N 7401 \N 907 \N 3162 1.0 1 2020-10-12 23:04:49.745668 2020-10-12 23:04:49.745668 0 \N 7402 \N 1305 \N 3163 1.0 1 2020-10-12 23:12:46.053932 2020-10-12 23:12:46.053932 0 \N 7403 \N 1363 411 \N 3.0 0 2020-10-13 18:33:29.63699 2020-10-13 18:33:29.63699 1 \N 7404 \N 1078 \N 3164 1.0 1 2020-10-13 18:34:14.475322 2020-10-13 18:34:14.475322 0 \N 7405 \N 1363 \N 3164 1.0 1 2020-10-13 18:34:14.506367 2020-10-13 18:34:14.506367 0 \N 7406 \N 1300 \N 3165 1.0 1 2020-10-13 21:28:32.432802 2020-10-13 21:28:32.432802 0 \N 7407 \N 1328 \N 3165 1.0 1 2020-10-13 21:28:32.457177 2020-10-13 21:28:32.457177 0 \N 7408 \N 1312 \N 3165 1.0 1 2020-10-13 21:28:32.480847 2020-10-13 21:28:32.480847 0 \N 7409 \N 1036 \N 3165 1.0 1 2020-10-13 21:28:32.503415 2020-10-13 21:28:32.503415 0 \N 7410 \N 1329 \N 3166 1.0 1 2020-10-14 00:24:02.626587 2020-10-14 00:24:02.626587 0 \N 7411 \N 1314 \N 3167 1.0 1 2020-10-14 00:32:24.994722 2020-10-14 00:32:24.994722 0 \N 7412 \N 1330 \N 3168 2.0 1 2020-10-14 00:43:24.938733 2020-10-14 00:43:24.938733 0 \N 7413 \N 1330 \N 3168 2.0 0 2020-10-14 00:43:42.138983 2020-10-14 00:43:42.138983 3 \N 7414 \N 1330 \N 3169 2.0 1 2020-10-14 00:44:04.35251 2020-10-14 00:44:04.35251 0 \N 7415 \N 1330 \N 3169 2.0 0 2020-10-14 00:44:19.501978 2020-10-14 00:44:19.501978 9 \N 7416 \N 1330 \N 3170 2.0 1 2020-10-14 00:44:41.930744 2020-10-14 00:44:41.930744 0 \N 7417 \N 909 \N 3171 1.0 1 2020-10-14 00:48:10.401469 2020-10-14 00:48:10.401469 0 \N 7418 \N 1315 \N 3172 1.0 1 2020-10-14 18:45:14.188411 2020-10-14 18:45:14.188411 0 \N 7419 \N 266 \N 3173 1.0 1 2020-10-14 19:33:01.746691 2020-10-14 19:33:01.746691 0 \N 7420 \N 988 \N 3173 1.0 1 2020-10-14 19:33:01.775393 2020-10-14 19:33:01.775393 0 \N 7421 \N 985 \N 3173 1.0 1 2020-10-14 19:33:01.803747 2020-10-14 19:33:01.803747 0 \N 7422 \N 1258 \N 3174 1.0 1 2020-10-14 23:07:44.034758 2020-10-14 23:07:44.034758 0 \N 7423 \N 367 \N 3174 1.0 1 2020-10-14 23:07:44.064695 2020-10-14 23:07:44.064695 0 \N 7424 \N 1364 412 \N 1.0 0 2020-10-14 23:40:45.295075 2020-10-14 23:40:45.295075 1 \N 7425 \N 1364 \N 3175 1.0 1 2020-10-14 23:42:03.460457 2020-10-14 23:42:03.460457 0 \N 7426 \N 1320 \N 3176 1.0 1 2020-10-15 00:13:06.613987 2020-10-15 00:13:06.613987 0 \N 7427 \N 8 \N 3177 1.0 1 2020-10-15 00:23:05.693503 2020-10-15 00:23:05.693503 0 \N 7428 \N 405 \N 3177 1.0 1 2020-10-15 00:23:05.718988 2020-10-15 00:23:05.718988 0 \N 7429 \N 1365 413 \N 1.0 0 2020-10-15 01:21:49.370478 2020-10-15 01:21:49.370478 1 \N 7430 \N 1321 \N 3178 1.0 1 2020-10-15 01:26:28.192761 2020-10-15 01:26:28.192761 0 \N 7431 \N 978 \N 3178 1.0 1 2020-10-15 01:26:28.226721 2020-10-15 01:26:28.226721 0 \N 7432 \N 1118 \N 3178 1.0 1 2020-10-15 01:26:28.256685 2020-10-15 01:26:28.256685 0 \N 7433 \N 1357 \N 3178 1.0 1 2020-10-15 01:26:28.294241 2020-10-15 01:26:28.294241 0 \N 7434 \N 1180 \N 3178 1.0 1 2020-10-15 01:26:28.323839 2020-10-15 01:26:28.323839 0 \N 7435 \N 1365 \N 3178 1.0 1 2020-10-15 01:26:28.350231 2020-10-15 01:26:28.350231 0 \N 7436 \N 993 \N 3178 1.0 1 2020-10-15 01:26:28.380035 2020-10-15 01:26:28.380035 0 \N 7437 \N 1314 \N 3178 1.0 1 2020-10-15 01:26:28.415798 2020-10-15 01:26:28.415798 0 \N 7438 \N 668 \N 3178 1.0 1 2020-10-15 01:26:28.451953 2020-10-15 01:26:28.451953 0 \N 7439 \N 673 \N 3178 1.0 1 2020-10-15 01:26:28.4871 2020-10-15 01:26:28.4871 0 \N 7440 \N 673 \N 3178 1.0 0 2020-10-15 01:26:53.420143 2020-10-15 01:26:53.420143 3 \N 7441 \N 668 \N 3178 1.0 0 2020-10-15 01:26:53.448334 2020-10-15 01:26:53.448334 3 \N 7442 \N 1314 \N 3178 1.0 0 2020-10-15 01:26:53.473741 2020-10-15 01:26:53.473741 3 \N 7443 \N 993 \N 3178 1.0 0 2020-10-15 01:26:53.496683 2020-10-15 01:26:53.496683 3 \N 7444 \N 1365 \N 3178 1.0 0 2020-10-15 01:26:53.519593 2020-10-15 01:26:53.519593 3 \N 7445 \N 1180 \N 3178 1.0 0 2020-10-15 01:26:53.540734 2020-10-15 01:26:53.540734 3 \N 7446 \N 1357 \N 3178 1.0 0 2020-10-15 01:26:53.56069 2020-10-15 01:26:53.56069 3 \N 7447 \N 1118 \N 3178 1.0 0 2020-10-15 01:26:53.582538 2020-10-15 01:26:53.582538 3 \N 7448 \N 978 \N 3178 1.0 0 2020-10-15 01:26:53.60391 2020-10-15 01:26:53.60391 3 \N 7449 \N 1321 \N 3178 1.0 0 2020-10-15 01:26:53.624424 2020-10-15 01:26:53.624424 3 \N 7450 \N 1357 \N 3179 1.0 1 2020-10-15 01:32:01.900226 2020-10-15 01:32:01.900226 0 \N 7451 \N 1118 \N 3179 1.0 1 2020-10-15 01:32:01.927104 2020-10-15 01:32:01.927104 0 \N 7452 \N 1180 \N 3179 1.0 1 2020-10-15 01:32:01.955965 2020-10-15 01:32:01.955965 0 \N 7453 \N 1365 \N 3179 1.0 1 2020-10-15 01:32:01.989209 2020-10-15 01:32:01.989209 0 \N 7454 \N 993 \N 3179 1.0 1 2020-10-15 01:32:02.018978 2020-10-15 01:32:02.018978 0 \N 7455 \N 1314 \N 3179 1.0 1 2020-10-15 01:32:02.049693 2020-10-15 01:32:02.049693 0 \N 7456 \N 673 \N 3179 1.0 1 2020-10-15 01:32:02.076346 2020-10-15 01:32:02.076346 0 \N 7457 \N 1321 \N 3179 1.0 1 2020-10-15 01:32:02.102128 2020-10-15 01:32:02.102128 0 \N 7458 \N 978 \N 3179 1.0 1 2020-10-15 01:32:02.126965 2020-10-15 01:32:02.126965 0 \N 7459 \N 668 \N 3179 1.0 1 2020-10-15 01:32:02.153347 2020-10-15 01:32:02.153347 0 \N 7460 \N 1326 \N 3180 1.0 1 2020-10-15 18:10:22.518979 2020-10-15 18:10:22.518979 0 \N 7461 \N 1126 \N 3181 1.0 1 2020-10-15 18:35:26.749213 2020-10-15 18:35:26.749213 0 \N 7462 \N 1005 \N 3182 1.0 1 2020-10-15 18:38:59.099462 2020-10-15 18:38:59.099462 0 \N 7463 \N 1076 \N 3183 1.0 1 2020-10-15 18:57:46.682569 2020-10-15 18:57:46.682569 0 \N 7464 \N 540 \N 3183 1.0 1 2020-10-15 18:57:46.703511 2020-10-15 18:57:46.703511 0 \N 7465 \N 1159 \N 3184 1.0 1 2020-10-15 19:36:10.278773 2020-10-15 19:36:10.278773 0 \N 7466 \N 1029 \N 3184 1.0 1 2020-10-15 19:36:10.307364 2020-10-15 19:36:10.307364 0 \N 7467 \N 1280 \N 3185 1.0 1 2020-10-15 21:19:10.105549 2020-10-15 21:19:10.105549 0 \N 7468 \N 520 \N 3186 1.0 1 2020-10-15 21:46:12.687609 2020-10-15 21:46:12.687609 0 \N 7469 \N 1357 \N 3187 1.0 1 2020-10-15 21:55:09.516973 2020-10-15 21:55:09.516973 0 \N 7470 \N 585 \N 3188 1.0 1 2020-10-15 22:02:33.190458 2020-10-15 22:02:33.190458 0 \N 7471 \N 1010 \N 3189 1.0 1 2020-10-15 22:24:40.029031 2020-10-15 22:24:40.029031 0 \N 7472 \N 1293 \N 3190 1.0 1 2020-10-15 23:16:47.894323 2020-10-15 23:16:47.894323 0 \N 7473 \N 1293 \N 3190 1.0 0 2020-10-15 23:17:15.264037 2020-10-15 23:17:15.264037 3 \N 7474 \N 1293 \N 3191 1.0 1 2020-10-15 23:17:35.292246 2020-10-15 23:17:35.292246 0 \N 7475 \N 155 \N 3192 1.0 1 2020-10-15 23:19:39.066282 2020-10-15 23:19:39.066282 0 \N 7476 \N 1332 \N 3192 1.0 1 2020-10-15 23:19:39.094475 2020-10-15 23:19:39.094475 0 \N 7477 \N 1122 \N 3193 1.0 1 2020-10-15 23:47:13.310599 2020-10-15 23:47:13.310599 0 \N 7478 \N 1302 \N 3194 1.0 1 2020-10-16 00:32:58.972584 2020-10-16 00:32:58.972584 0 \N 7479 \N 1302 \N 3194 1.0 0 2020-10-16 00:33:36.644658 2020-10-16 00:33:36.644658 9 \N 7480 \N 1302 \N 3195 1.0 1 2020-10-16 00:35:32.180619 2020-10-16 00:35:32.180619 0 \N 7481 \N 1338 \N 3196 1.0 1 2020-10-16 01:22:29.269552 2020-10-16 01:22:29.269552 0 \N 7482 \N 1293 \N 2919 1.0 0 2020-10-16 01:34:56.744123 2020-10-16 01:34:56.744123 9 \N 7483 \N 1295 \N 2919 1.0 0 2020-10-16 01:34:56.767499 2020-10-16 01:34:56.767499 9 \N 7484 \N 1293 \N 3197 1.0 1 2020-10-16 01:35:16.85719 2020-10-16 01:35:16.85719 0 \N 7485 \N 1338 \N 3198 1.0 1 2020-10-16 18:01:14.355768 2020-10-16 18:01:14.355768 0 \N 7486 \N 1171 \N 3199 1.0 1 2020-10-16 18:48:15.637578 2020-10-16 18:48:15.637578 0 \N 7487 \N 1182 \N 3200 1.0 1 2020-10-16 21:11:53.30531 2020-10-16 21:11:53.30531 0 \N 7488 \N 1126 \N 3200 1.0 1 2020-10-16 21:11:53.338857 2020-10-16 21:11:53.338857 0 \N 7489 \N 1315 \N 3201 1.0 1 2020-10-16 23:45:13.515045 2020-10-16 23:45:13.515045 0 \N 7490 \N 1188 \N 3202 1.0 1 2020-10-17 00:15:14.132003 2020-10-17 00:15:14.132003 0 \N 7491 \N 1159 \N 3203 1.0 1 2020-10-17 00:38:30.231261 2020-10-17 00:38:30.231261 0 \N 7492 \N 1159 \N 3203 1.0 0 2020-10-17 00:40:41.923899 2020-10-17 00:40:41.923899 3 \N 7493 \N 1159 \N 3204 1.0 1 2020-10-17 00:41:07.530562 2020-10-17 00:41:07.530562 0 \N 7494 \N 637 \N 3205 1.0 1 2020-10-17 16:57:51.961659 2020-10-17 16:57:51.961659 0 \N 7495 \N 1210 \N 3205 1.0 1 2020-10-17 16:57:51.98639 2020-10-17 16:57:51.98639 0 \N 7496 \N 1314 \N 3206 1.0 1 2020-10-17 17:58:07.905068 2020-10-17 17:58:07.905068 0 \N 7497 \N 1312 \N 3207 1.0 1 2020-10-17 19:26:20.247535 2020-10-17 19:26:20.247535 0 \N 7498 \N 1302 \N 3207 1.0 1 2020-10-17 19:26:20.281424 2020-10-17 19:26:20.281424 0 \N 7499 \N 369 \N 3208 3.0 1 2020-10-17 20:10:37.604658 2020-10-17 20:10:37.604658 0 \N 7500 \N 1338 \N 3198 1.0 0 2020-10-17 20:12:08.851979 2020-10-17 20:12:08.851979 3 \N 7501 \N 1316 \N 3209 1.0 1 2020-10-17 20:14:52.834656 2020-10-17 20:14:52.834656 0 \N 7502 \N 1316 \N 3209 1.0 0 2020-10-17 20:15:00.285093 2020-10-17 20:15:00.285093 3 \N 7503 \N 1316 \N 3210 1.0 1 2020-10-17 20:15:17.743175 2020-10-17 20:15:17.743175 0 \N 7504 \N 1047 \N 3210 1.0 1 2020-10-17 20:15:17.7721 2020-10-17 20:15:17.7721 0 \N 7505 \N 702 \N 3211 1.0 1 2020-10-17 21:21:12.315241 2020-10-17 21:21:12.315241 0 \N 7506 \N 502 \N 3212 1.0 1 2020-10-17 22:00:12.010416 2020-10-17 22:00:12.010416 0 \N 7507 \N 1332 \N 3213 1.0 1 2020-10-17 22:11:12.647578 2020-10-17 22:11:12.647578 0 \N 7508 \N 1159 \N 3214 1.0 1 2020-10-18 00:20:06.91876 2020-10-18 00:20:06.91876 0 \N 7509 \N 1307 \N \N 3.0 0 2020-10-18 18:37:39.244557 2020-10-18 18:37:39.244557 7 700 7510 \N 1324 \N \N 2.0 0 2020-10-18 18:37:39.274868 2020-10-18 18:37:39.274868 7 700 7511 \N 1323 \N \N 5.0 0 2020-10-18 18:37:39.302978 2020-10-18 18:37:39.302978 7 700 7512 \N 1339 \N \N 1.0 0 2020-10-18 18:37:39.32352 2020-10-18 18:37:39.32352 7 700 7513 \N 1005 \N \N 2.0 0 2020-10-18 18:37:39.341891 2020-10-18 18:37:39.341891 7 700 7514 \N 1004 \N \N 2.0 0 2020-10-18 18:37:39.360014 2020-10-18 18:37:39.360014 7 700 7515 \N 1314 \N \N 5.0 0 2020-10-18 18:37:39.378736 2020-10-18 18:37:39.378736 7 700 7516 \N 1126 \N \N 6.0 0 2020-10-18 18:37:39.39809 2020-10-18 18:37:39.39809 7 700 7517 \N 1118 \N \N 2.0 0 2020-10-18 18:37:39.415996 2020-10-18 18:37:39.415996 7 700 7518 \N 1205 \N 3215 1.0 1 2020-10-19 21:17:51.206244 2020-10-19 21:17:51.206244 0 \N 7519 \N 63 \N 3216 1.0 1 2020-10-19 22:55:11.709212 2020-10-19 22:55:11.709212 0 \N 7520 \N 369 \N 3217 1.0 1 2020-10-20 00:56:30.739107 2020-10-20 00:56:30.739107 0 \N 7521 \N 1355 \N 3218 1.0 1 2020-10-20 17:42:38.577423 2020-10-20 17:42:38.577423 0 \N 7522 \N 1238 \N 3218 1.0 1 2020-10-20 17:42:38.604309 2020-10-20 17:42:38.604309 0 \N 7523 \N 1237 \N 3219 1.0 1 2020-10-20 22:36:49.058944 2020-10-20 22:36:49.058944 0 \N 7524 \N 423 \N 3220 1.0 1 2020-10-20 23:51:08.89882 2020-10-20 23:51:08.89882 0 \N 7525 \N 1294 \N 3220 1.0 1 2020-10-20 23:51:08.921498 2020-10-20 23:51:08.921498 0 \N 7526 \N 1294 \N 3220 1.0 0 2020-10-20 23:55:14.970531 2020-10-20 23:55:14.970531 3 \N 7527 \N 423 \N 3220 1.0 0 2020-10-20 23:55:14.998185 2020-10-20 23:55:14.998185 3 \N 7528 \N 1294 \N 3221 1.0 1 2020-10-20 23:55:31.107324 2020-10-20 23:55:31.107324 0 \N 7529 \N 423 \N 3222 1.0 1 2020-10-20 23:58:01.213654 2020-10-20 23:58:01.213654 0 \N 7530 \N 222 \N 3223 1.0 1 2020-10-21 00:18:59.450981 2020-10-21 00:18:59.450981 0 \N 7531 \N 993 \N 3224 1.0 1 2020-10-21 22:23:46.085778 2020-10-21 22:23:46.085778 0 \N 7532 \N 1159 \N 3225 1.0 1 2020-10-21 23:49:09.014301 2020-10-21 23:49:09.014301 0 \N 7533 \N 1294 \N 3226 1.0 1 2020-10-21 23:52:44.236162 2020-10-21 23:52:44.236162 0 \N 7534 \N 1357 \N 3227 1.0 1 2020-10-22 00:00:52.178567 2020-10-22 00:00:52.178567 0 \N 7535 \N 959 \N \N 1.0 0 2020-10-22 18:29:33.989533 2020-10-22 18:29:33.989533 7 699 7536 \N 987 \N \N 1.0 0 2020-10-22 18:29:54.215039 2020-10-22 18:29:54.215039 7 698 7537 \N 1317 \N \N 1.0 0 2020-10-22 18:29:54.232493 2020-10-22 18:29:54.232493 7 698 7538 \N 1316 \N \N 1.0 0 2020-10-22 18:29:54.250419 2020-10-22 18:29:54.250419 7 698 7539 \N 1367 414 \N 1.0 0 2020-10-22 18:52:40.924493 2020-10-22 18:52:40.924493 1 \N 7540 \N 1368 414 \N 1.0 0 2020-10-22 18:52:40.948979 2020-10-22 18:52:40.948979 1 \N 7541 \N 1369 414 \N 1.0 0 2020-10-22 18:52:40.97263 2020-10-22 18:52:40.97263 1 \N 7542 \N 1366 414 \N 2.0 0 2020-10-22 18:52:40.996045 2020-10-22 18:52:40.996045 1 \N 7543 \N 1370 414 \N 3.0 0 2020-10-22 18:52:41.020049 2020-10-22 18:52:41.020049 1 \N 7544 \N 1370 \N 3228 1.0 1 2020-10-22 20:52:25.956845 2020-10-22 20:52:25.956845 0 \N 7545 \N 664 \N 3229 1.0 1 2020-10-22 22:28:43.250081 2020-10-22 22:28:43.250081 0 \N 7546 \N 1370 \N 3230 1.0 1 2020-10-22 23:39:15.38699 2020-10-22 23:39:15.38699 0 \N 7547 \N 1371 415 \N 25.0 0 2020-10-22 23:48:19.362746 2020-10-22 23:48:19.362746 1 \N 7548 \N 1371 \N 3231 1.0 1 2020-10-22 23:48:38.631257 2020-10-22 23:48:38.631257 0 \N 7549 \N 1372 416 \N 2.0 0 2020-10-23 00:20:57.866803 2020-10-23 00:20:57.866803 1 \N 7550 \N 1369 416 \N 1.0 0 2020-10-23 00:20:57.903169 2020-10-23 00:20:57.903169 1 \N 7551 \N 1370 416 \N 1.0 0 2020-10-23 00:20:57.939329 2020-10-23 00:20:57.939329 1 \N 7552 \N 1366 416 \N 1.0 0 2020-10-23 00:20:57.978003 2020-10-23 00:20:57.978003 1 \N 7553 \N 1361 416 \N 1.0 0 2020-10-23 00:20:58.013827 2020-10-23 00:20:58.013827 1 \N 7554 \N 1371 416 \N 17.0 0 2020-10-23 00:20:58.050477 2020-10-23 00:20:58.050477 1 \N 7555 \N 1372 417 \N 3.0 0 2020-10-23 00:23:37.958918 2020-10-23 00:23:37.958918 1 \N 7556 \N 1372 \N \N 1.0 0 2020-10-23 00:25:03.106797 2020-10-23 00:25:03.106797 7 703 7557 \N 10 \N \N 4.0 0 2020-10-23 00:25:15.495947 2020-10-23 00:25:15.495947 7 702 7558 \N 602 \N \N 3.0 0 2020-10-23 00:25:15.51663 2020-10-23 00:25:15.51663 7 702 7559 \N 985 \N \N 2.0 0 2020-10-23 00:25:15.537324 2020-10-23 00:25:15.537324 7 702 7560 \N 995 \N \N 1.0 0 2020-10-23 00:25:15.56327 2020-10-23 00:25:15.56327 7 702 7561 \N 701 \N \N 2.0 0 2020-10-23 00:25:15.58809 2020-10-23 00:25:15.58809 7 702 7562 \N 666 \N \N 4.0 0 2020-10-23 00:25:15.61261 2020-10-23 00:25:15.61261 7 702 7563 \N 1001 \N \N 2.0 0 2020-10-23 00:25:26.481145 2020-10-23 00:25:26.481145 7 701 7564 \N 1372 \N 3232 1.0 1 2020-10-23 00:26:54.811387 2020-10-23 00:26:54.811387 0 \N 7565 \N 1372 \N 3232 1.0 0 2020-10-23 00:27:06.813383 2020-10-23 00:27:06.813383 3 \N 7566 \N 1372 \N 3233 1.0 1 2020-10-23 00:27:27.237109 2020-10-23 00:27:27.237109 0 \N 7567 \N 1373 418 \N 7.0 0 2020-10-23 01:01:18.483391 2020-10-23 01:01:18.483391 1 \N 7568 \N 1373 \N 3234 1.0 1 2020-10-23 01:03:17.437744 2020-10-23 01:03:17.437744 0 \N 7569 \N 1374 419 \N 7.0 0 2020-10-23 18:54:36.475926 2020-10-23 18:54:36.475926 1 \N 7570 \N 1375 419 \N 6.0 0 2020-10-23 18:54:36.503212 2020-10-23 18:54:36.503212 1 \N 7571 \N 1376 419 \N 7.0 0 2020-10-23 18:54:36.528766 2020-10-23 18:54:36.528766 1 \N 7572 \N 1374 \N 3235 1.0 1 2020-10-23 18:56:10.723979 2020-10-23 18:56:10.723979 0 \N 7573 \N 9 \N 3236 1.0 1 2020-10-23 18:58:02.522209 2020-10-23 18:58:02.522209 0 \N 7574 \N 1332 \N 3236 1.0 1 2020-10-23 18:58:02.546227 2020-10-23 18:58:02.546227 0 \N 7575 \N 1332 \N 3236 1.0 0 2020-10-23 18:58:24.537262 2020-10-23 18:58:24.537262 3 \N 7576 \N 9 \N 3236 1.0 0 2020-10-23 18:58:24.558275 2020-10-23 18:58:24.558275 3 \N 7577 \N 1355 \N 3237 1.0 1 2020-10-23 21:08:49.374938 2020-10-23 21:08:49.374938 0 \N 7578 \N 1322 \N 3237 1.0 1 2020-10-23 21:08:49.398167 2020-10-23 21:08:49.398167 0 \N 7579 \N 1329 \N 3237 1.0 1 2020-10-23 21:08:49.423411 2020-10-23 21:08:49.423411 0 \N 7580 \N 1327 \N 3237 1.0 1 2020-10-23 21:08:49.451792 2020-10-23 21:08:49.451792 0 \N 7581 \N 1216 \N 3237 1.0 1 2020-10-23 21:08:49.478098 2020-10-23 21:08:49.478098 0 \N 7582 \N 1235 \N 3237 1.0 1 2020-10-23 21:08:49.504286 2020-10-23 21:08:49.504286 0 \N 7583 \N 668 \N 3237 1.0 1 2020-10-23 21:08:49.530946 2020-10-23 21:08:49.530946 0 \N 7584 \N 1356 \N 3238 1.0 1 2020-10-23 21:33:54.492036 2020-10-23 21:33:54.492036 0 \N 7585 \N 369 \N 3239 1.0 1 2020-10-23 21:36:14.59709 2020-10-23 21:36:14.59709 0 \N 7586 \N 1371 \N 3240 1.0 1 2020-10-23 22:08:56.305664 2020-10-23 22:08:56.305664 0 \N 7587 \N 1007 \N 3241 1.0 1 2020-10-23 22:11:34.938707 2020-10-23 22:11:34.938707 0 \N 7588 \N 1006 \N 3241 1.0 1 2020-10-23 22:11:34.964316 2020-10-23 22:11:34.964316 0 \N 7589 \N 1372 \N 3242 1.0 1 2020-10-23 23:03:44.672133 2020-10-23 23:03:44.672133 0 \N 7590 \N 1372 \N 3242 1.0 0 2020-10-23 23:03:56.561183 2020-10-23 23:03:56.561183 3 \N 7591 \N 1372 \N 3243 1.0 1 2020-10-23 23:05:22.727027 2020-10-23 23:05:22.727027 0 \N 7592 \N 987 \N 3244 1.0 1 2020-10-23 23:36:11.084359 2020-10-23 23:36:11.084359 0 \N 7593 \N 494 \N 3245 1.0 1 2020-10-23 23:52:08.360294 2020-10-23 23:52:08.360294 0 \N 7594 \N 1348 \N 3246 1.0 1 2020-10-24 00:18:01.293911 2020-10-24 00:18:01.293911 0 \N 7595 \N 1332 \N 3246 1.0 1 2020-10-24 00:18:01.319311 2020-10-24 00:18:01.319311 0 \N 7596 \N 1332 \N 3246 1.0 0 2020-10-24 00:24:32.492682 2020-10-24 00:24:32.492682 3 \N 7597 \N 1348 \N 3246 1.0 0 2020-10-24 00:24:32.51488 2020-10-24 00:24:32.51488 3 \N 7598 \N 1332 \N 3247 1.0 1 2020-10-24 00:26:56.528808 2020-10-24 00:26:56.528808 0 \N 7599 \N 864 \N 3247 1.0 1 2020-10-24 00:26:56.552245 2020-10-24 00:26:56.552245 0 \N 7600 \N 1312 \N 3248 1.0 1 2020-10-24 01:18:20.400215 2020-10-24 01:18:20.400215 0 \N 7601 \N 1314 \N 3249 1.0 1 2020-10-24 18:08:51.992483 2020-10-24 18:08:51.992483 0 \N 7602 \N 1300 \N 3250 1.0 1 2020-10-24 18:18:09.282554 2020-10-24 18:18:09.282554 0 \N 7603 \N 1370 \N 3250 1.0 1 2020-10-24 18:18:09.305676 2020-10-24 18:18:09.305676 0 \N 7604 \N 1349 \N 3251 1.0 1 2020-10-24 19:02:32.681151 2020-10-24 19:02:32.681151 0 \N 7605 \N 668 \N \N 1.0 0 2020-10-24 19:31:00.083445 2020-10-24 19:31:00.083445 7 704 7606 \N 1371 \N 3252 1.0 1 2020-10-24 20:16:09.103135 2020-10-24 20:16:09.103135 0 \N 7607 \N 1373 \N 3252 1.0 1 2020-10-24 20:16:09.1262 2020-10-24 20:16:09.1262 0 \N 7608 \N 864 \N \N 1.0 0 2020-10-24 20:25:28.562151 2020-10-24 20:25:28.562151 7 705 7609 \N 1294 \N 3253 1.0 1 2020-10-24 20:27:31.687323 2020-10-24 20:27:31.687323 0 \N 7610 \N 864 \N 3253 1.0 1 2020-10-24 20:27:31.712591 2020-10-24 20:27:31.712591 0 \N 7611 \N 494 \N 3254 1.0 1 2020-10-24 22:34:35.15718 2020-10-24 22:34:35.15718 0 \N 7612 \N 1371 \N 3255 1.0 1 2020-10-24 23:02:13.414274 2020-10-24 23:02:13.414274 0 \N 7613 \N 1294 \N 3256 1.0 1 2020-10-24 23:50:14.099808 2020-10-24 23:50:14.099808 0 \N 7614 \N 1371 \N 3257 1.0 1 2020-10-24 23:55:48.010376 2020-10-24 23:55:48.010376 0 \N 7615 \N 1372 \N 3258 1.0 1 2020-10-24 23:59:33.932612 2020-10-24 23:59:33.932612 0 \N 7616 \N 1378 420 \N 1.0 0 2020-10-25 21:24:49.110916 2020-10-25 21:24:49.110916 1 \N 7617 \N 1379 420 \N 3.0 0 2020-10-25 21:24:49.145481 2020-10-25 21:24:49.145481 1 \N 7618 \N 1380 420 \N 1.0 0 2020-10-25 21:24:49.17641 2020-10-25 21:24:49.17641 1 \N 7619 \N 1209 420 \N 7.0 0 2020-10-25 21:24:49.20245 2020-10-25 21:24:49.20245 1 \N 7620 \N 1223 420 \N 1.0 0 2020-10-25 21:24:49.231583 2020-10-25 21:24:49.231583 1 \N 7621 \N 1230 420 \N 1.0 0 2020-10-25 21:24:49.25472 2020-10-25 21:24:49.25472 1 \N 7622 \N 1377 420 \N 3.0 0 2020-10-25 21:24:49.27805 2020-10-25 21:24:49.27805 1 \N 7623 \N 1381 421 \N 1.0 0 2020-10-25 23:33:38.713959 2020-10-25 23:33:38.713959 1 \N 7624 \N 1382 421 \N 1.0 0 2020-10-25 23:33:38.74032 2020-10-25 23:33:38.74032 1 \N 7625 \N 1383 421 \N 1.0 0 2020-10-25 23:33:38.770538 2020-10-25 23:33:38.770538 1 \N 7626 \N 1384 421 \N 1.0 0 2020-10-25 23:33:38.797775 2020-10-25 23:33:38.797775 1 \N 7627 \N 1385 421 \N 1.0 0 2020-10-25 23:33:38.822582 2020-10-25 23:33:38.822582 1 \N 7628 \N 1386 421 \N 1.0 0 2020-10-25 23:33:38.851301 2020-10-25 23:33:38.851301 1 \N 7629 \N 1387 421 \N 1.0 0 2020-10-25 23:33:38.876755 2020-10-25 23:33:38.876755 1 \N 7630 \N 1388 421 \N 1.0 0 2020-10-25 23:33:38.906857 2020-10-25 23:33:38.906857 1 \N 7631 \N 1389 421 \N 1.0 0 2020-10-25 23:33:38.931583 2020-10-25 23:33:38.931583 1 \N 7632 \N 1390 421 \N 1.0 0 2020-10-25 23:33:38.956502 2020-10-25 23:33:38.956502 1 \N 7633 \N 1391 421 \N 1.0 0 2020-10-25 23:33:38.988459 2020-10-25 23:33:38.988459 1 \N 7634 \N 1380 422 \N 2.0 0 2020-10-26 01:00:40.092713 2020-10-26 01:00:40.092713 1 \N 7635 \N 1392 423 \N 1.0 0 2020-10-26 01:50:57.088696 2020-10-26 01:50:57.088696 1 \N 7636 \N 1230 423 \N 1.0 0 2020-10-26 01:50:57.11162 2020-10-26 01:50:57.11162 1 \N 7637 \N 1228 423 \N 3.0 0 2020-10-26 01:50:57.135905 2020-10-26 01:50:57.135905 1 \N 7638 \N 1209 423 \N 7.0 0 2020-10-26 01:50:57.158702 2020-10-26 01:50:57.158702 1 \N 7639 \N 1377 423 \N 3.0 0 2020-10-26 01:50:57.186539 2020-10-26 01:50:57.186539 1 \N 7640 \N 1381 423 \N 1.0 0 2020-10-26 01:50:57.217343 2020-10-26 01:50:57.217343 1 \N 7641 \N 1378 423 \N 1.0 0 2020-10-26 01:50:57.245406 2020-10-26 01:50:57.245406 1 \N 7642 \N 1380 423 \N 3.0 0 2020-10-26 01:50:57.2788 2020-10-26 01:50:57.2788 1 \N 7643 \N 1393 424 \N 3.0 0 2020-10-26 02:17:45.281128 2020-10-26 02:17:45.281128 1 \N 7644 \N 1394 424 \N 1.0 0 2020-10-26 02:17:45.302283 2020-10-26 02:17:45.302283 1 \N 7645 \N 1395 424 \N 1.0 0 2020-10-26 02:17:45.325825 2020-10-26 02:17:45.325825 1 \N 7646 \N 1396 424 \N 1.0 0 2020-10-26 02:17:45.353921 2020-10-26 02:17:45.353921 1 \N 7647 \N 1397 424 \N 3.0 0 2020-10-26 02:17:45.377837 2020-10-26 02:17:45.377837 1 \N 7648 \N 1398 424 \N 1.0 0 2020-10-26 02:17:45.398669 2020-10-26 02:17:45.398669 1 \N 7649 \N 1399 424 \N 2.0 0 2020-10-26 02:17:45.42085 2020-10-26 02:17:45.42085 1 \N 7650 \N 1400 424 \N 1.0 0 2020-10-26 02:17:45.440901 2020-10-26 02:17:45.440901 1 \N 7651 \N 1401 424 \N 1.0 0 2020-10-26 02:17:45.461619 2020-10-26 02:17:45.461619 1 \N 7652 \N 144 \N 3259 1.0 1 2020-10-26 19:39:19.212364 2020-10-26 19:39:19.212364 0 \N 7653 \N 144 \N 3259 1.0 0 2020-10-26 19:40:59.032256 2020-10-26 19:40:59.032256 3 \N 7654 \N 144 \N 3260 1.0 1 2020-10-26 19:42:00.880075 2020-10-26 19:42:00.880075 0 \N 7655 \N 144 \N 3260 1.0 0 2020-10-26 19:43:42.588807 2020-10-26 19:43:42.588807 9 \N 7656 \N 1371 \N 3261 1.0 1 2020-10-26 20:36:20.945525 2020-10-26 20:36:20.945525 0 \N 7657 \N 1236 \N 3262 1.0 1 2020-10-26 20:58:17.284836 2020-10-26 20:58:17.284836 0 \N 7658 \N 685 \N 3263 1.0 1 2020-10-26 21:20:48.125604 2020-10-26 21:20:48.125604 0 \N 7659 \N 1332 \N 3264 1.0 1 2020-10-26 21:22:32.866845 2020-10-26 21:22:32.866845 0 \N 7660 \N 1126 \N 3265 1.0 1 2020-10-26 21:35:15.251283 2020-10-26 21:35:15.251283 0 \N 7661 \N 1402 425 \N 3.0 0 2020-10-26 21:59:43.376452 2020-10-26 21:59:43.376452 1 \N 7662 \N 1402 426 \N 4.0 0 2020-10-26 22:13:19.398955 2020-10-26 22:13:19.398955 1 \N 7663 \N 1402 \N 3266 1.0 1 2020-10-26 22:26:23.467204 2020-10-26 22:26:23.467204 0 \N 7664 \N 1371 \N 3267 1.0 1 2020-10-26 23:11:53.425178 2020-10-26 23:11:53.425178 0 \N 7665 \N 1371 \N 3268 2.0 1 2020-10-26 23:25:39.480949 2020-10-26 23:25:39.480949 0 \N 7666 \N 1329 \N 3269 1.0 1 2020-10-26 23:38:56.458307 2020-10-26 23:38:56.458307 0 \N 7667 \N 1317 \N 3270 1.0 1 2020-10-26 23:51:13.280612 2020-10-26 23:51:13.280612 0 \N 7668 \N 1317 \N 3271 1.0 1 2020-10-27 00:04:38.178874 2020-10-27 00:04:38.178874 0 \N 7669 \N 423 \N 3271 1.0 1 2020-10-27 00:04:38.209316 2020-10-27 00:04:38.209316 0 \N 7670 \N 664 \N 3271 1.0 1 2020-10-27 00:04:38.23821 2020-10-27 00:04:38.23821 0 \N 7671 \N 1214 \N 3272 1.0 1 2020-10-27 01:10:05.609531 2020-10-27 01:10:05.609531 0 \N 7672 \N 1403 427 \N 1.0 0 2020-10-27 19:45:18.15345 2020-10-27 19:45:18.15345 1 \N 7673 \N 1404 427 \N 1.0 0 2020-10-27 19:45:18.189725 2020-10-27 19:45:18.189725 1 \N 7674 \N 1405 427 \N 1.0 0 2020-10-27 19:45:18.220444 2020-10-27 19:45:18.220444 1 \N 7675 \N 1406 427 \N 1.0 0 2020-10-27 19:45:18.25073 2020-10-27 19:45:18.25073 1 \N 7676 \N 1407 427 \N 1.0 0 2020-10-27 19:45:18.286657 2020-10-27 19:45:18.286657 1 \N 7677 \N 1408 427 \N 1.0 0 2020-10-27 19:45:18.320143 2020-10-27 19:45:18.320143 1 \N 7678 \N 1409 427 \N 1.0 0 2020-10-27 19:45:18.353721 2020-10-27 19:45:18.353721 1 \N 7679 \N 1410 427 \N 1.0 0 2020-10-27 19:45:18.382616 2020-10-27 19:45:18.382616 1 \N 7680 \N 1411 427 \N 1.0 0 2020-10-27 19:45:18.411008 2020-10-27 19:45:18.411008 1 \N 7681 \N 1371 \N 3273 2.0 1 2020-10-27 20:14:47.355561 2020-10-27 20:14:47.355561 0 \N 7682 \N 1412 428 \N 1.0 0 2020-10-27 21:18:46.450319 2020-10-27 21:18:46.450319 1 \N 7683 \N 1413 428 \N 1.0 0 2020-10-27 21:18:46.474205 2020-10-27 21:18:46.474205 1 \N 7684 \N 1414 428 \N 1.0 0 2020-10-27 21:18:46.499479 2020-10-27 21:18:46.499479 1 \N 7685 \N 1415 428 \N 1.0 0 2020-10-27 21:18:46.522752 2020-10-27 21:18:46.522752 1 \N 7686 \N 1416 429 \N 1.0 0 2020-10-27 21:42:41.936924 2020-10-27 21:42:41.936924 1 \N 7687 \N 1417 429 \N 1.0 0 2020-10-27 21:42:41.958365 2020-10-27 21:42:41.958365 1 \N 7688 \N 1418 429 \N 2.0 0 2020-10-27 21:42:41.979678 2020-10-27 21:42:41.979678 1 \N 7689 \N 1419 429 \N 1.0 0 2020-10-27 21:42:42.000919 2020-10-27 21:42:42.000919 1 \N 7690 \N 1420 429 \N 1.0 0 2020-10-27 21:42:42.021124 2020-10-27 21:42:42.021124 1 \N 7691 \N 1421 429 \N 1.0 0 2020-10-27 21:42:42.043152 2020-10-27 21:42:42.043152 1 \N 7692 \N 1422 430 \N 1.0 0 2020-10-27 21:57:02.20654 2020-10-27 21:57:02.20654 1 \N 7693 \N 1423 430 \N 1.0 0 2020-10-27 21:57:02.23268 2020-10-27 21:57:02.23268 1 \N 7694 \N 1424 430 \N 1.0 0 2020-10-27 21:57:02.256809 2020-10-27 21:57:02.256809 1 \N 7695 \N 1425 431 \N 1.0 0 2020-10-27 22:21:11.291107 2020-10-27 22:21:11.291107 1 \N 7696 \N 1426 431 \N 1.0 0 2020-10-27 22:21:11.31946 2020-10-27 22:21:11.31946 1 \N 7697 \N 1427 431 \N 1.0 0 2020-10-27 22:21:11.345604 2020-10-27 22:21:11.345604 1 \N 7698 \N 1428 431 \N 1.0 0 2020-10-27 22:21:11.372032 2020-10-27 22:21:11.372032 1 \N 7699 \N 1429 431 \N 1.0 0 2020-10-27 22:21:11.40547 2020-10-27 22:21:11.40547 1 \N 7700 \N 1430 431 \N 1.0 0 2020-10-27 22:21:11.436154 2020-10-27 22:21:11.436154 1 \N 7701 \N 1330 \N 3274 2.0 1 2020-10-27 22:48:26.146954 2020-10-27 22:48:26.146954 0 \N 7702 \N 1431 432 \N 1.0 0 2020-10-27 22:56:27.846644 2020-10-27 22:56:27.846644 1 \N 7703 \N 1432 432 \N 1.0 0 2020-10-27 22:56:27.867471 2020-10-27 22:56:27.867471 1 \N 7704 \N 1433 432 \N 1.0 0 2020-10-27 22:56:27.887794 2020-10-27 22:56:27.887794 1 \N 7705 \N 1434 432 \N 1.0 0 2020-10-27 22:56:27.908135 2020-10-27 22:56:27.908135 1 \N 7706 \N 1435 432 \N 1.0 0 2020-10-27 22:56:27.93635 2020-10-27 22:56:27.93635 1 \N 7707 \N 1436 432 \N 1.0 0 2020-10-27 22:56:27.959023 2020-10-27 22:56:27.959023 1 \N 7708 \N 1437 432 \N 1.0 0 2020-10-27 22:56:27.98029 2020-10-27 22:56:27.98029 1 \N 7709 \N 1438 432 \N 1.0 0 2020-10-27 22:56:28.00285 2020-10-27 22:56:28.00285 1 \N 7710 \N 1374 433 \N 8.0 0 2020-10-27 23:00:02.576856 2020-10-27 23:00:02.576856 1 \N 7711 \N 1374 \N 3275 1.0 1 2020-10-27 23:00:45.086429 2020-10-27 23:00:45.086429 0 \N 7712 \N 1309 \N 3276 1.0 1 2020-10-27 23:23:13.716471 2020-10-27 23:23:13.716471 0 \N 7713 \N 1439 434 \N 1.0 0 2020-10-27 23:53:06.264241 2020-10-27 23:53:06.264241 1 \N 7714 \N 1440 434 \N 1.0 0 2020-10-27 23:53:06.293398 2020-10-27 23:53:06.293398 1 \N 7715 \N 1441 434 \N 1.0 0 2020-10-27 23:53:06.316537 2020-10-27 23:53:06.316537 1 \N 7716 \N 1442 434 \N 1.0 0 2020-10-27 23:53:06.340556 2020-10-27 23:53:06.340556 1 \N 7717 \N 1443 434 \N 1.0 0 2020-10-27 23:53:06.363531 2020-10-27 23:53:06.363531 1 \N 7718 \N 1444 434 \N 1.0 0 2020-10-27 23:53:06.386437 2020-10-27 23:53:06.386437 1 \N 7719 \N 1445 434 \N 1.0 0 2020-10-27 23:53:06.411649 2020-10-27 23:53:06.411649 1 \N 7720 \N 1446 434 \N 1.0 0 2020-10-27 23:53:06.437186 2020-10-27 23:53:06.437186 1 \N 7721 \N 1447 434 \N 1.0 0 2020-10-27 23:53:06.459556 2020-10-27 23:53:06.459556 1 \N 7722 \N 1448 435 \N 1.0 0 2020-10-28 00:14:28.800531 2020-10-28 00:14:28.800531 1 \N 7723 \N 1433 436 \N 1.0 0 2020-10-28 00:24:00.105869 2020-10-28 00:24:00.105869 1 \N 7724 \N 1445 436 \N 1.0 0 2020-10-28 00:24:00.134107 2020-10-28 00:24:00.134107 1 \N 7725 \N 1448 436 \N 1.0 0 2020-10-28 00:24:00.160598 2020-10-28 00:24:00.160598 1 \N 7726 \N 1438 436 \N 1.0 0 2020-10-28 00:24:00.190026 2020-10-28 00:24:00.190026 1 \N 7727 \N 1430 436 \N 1.0 0 2020-10-28 00:24:00.216808 2020-10-28 00:24:00.216808 1 \N 7728 \N 1406 436 \N 1.0 0 2020-10-28 00:24:00.246715 2020-10-28 00:24:00.246715 1 \N 7729 \N 1425 436 \N 1.0 0 2020-10-28 00:24:00.285867 2020-10-28 00:24:00.285867 1 \N 7730 \N 1449 437 \N 1.0 0 2020-10-28 20:01:12.262136 2020-10-28 20:01:12.262136 1 \N 7731 \N 1450 437 \N 1.0 0 2020-10-28 20:01:12.287345 2020-10-28 20:01:12.287345 1 \N 7732 \N 1451 437 \N 1.0 0 2020-10-28 20:01:12.309131 2020-10-28 20:01:12.309131 1 \N 7733 \N 1452 437 \N 1.0 0 2020-10-28 20:01:12.331735 2020-10-28 20:01:12.331735 1 \N 7734 \N 1453 437 \N 1.0 0 2020-10-28 20:01:12.354813 2020-10-28 20:01:12.354813 1 \N 7735 \N 1454 437 \N 1.0 0 2020-10-28 20:01:12.377757 2020-10-28 20:01:12.377757 1 \N 7736 \N 1455 437 \N 1.0 0 2020-10-28 20:01:12.402198 2020-10-28 20:01:12.402198 1 \N 7737 \N 1456 437 \N 1.0 0 2020-10-28 20:01:12.425702 2020-10-28 20:01:12.425702 1 \N 7738 \N 1457 438 \N 1.0 0 2020-10-28 20:32:36.852357 2020-10-28 20:32:36.852357 1 \N 7739 \N 1458 438 \N 1.0 0 2020-10-28 20:32:36.872472 2020-10-28 20:32:36.872472 1 \N 7740 \N 1459 438 \N 1.0 0 2020-10-28 20:32:36.893369 2020-10-28 20:32:36.893369 1 \N 7741 \N 1460 438 \N 1.0 0 2020-10-28 20:32:36.915135 2020-10-28 20:32:36.915135 1 \N 7742 \N 1349 \N \N 1.0 0 2020-10-28 20:37:29.290035 2020-10-28 20:37:29.290035 7 706 7743 \N 1371 \N 3277 2.0 1 2020-10-28 20:38:47.612215 2020-10-28 20:38:47.612215 0 \N 7744 \N 1348 \N 3277 1.0 1 2020-10-28 20:38:47.634652 2020-10-28 20:38:47.634652 0 \N 7745 \N 1349 \N 3277 1.0 1 2020-10-28 20:38:47.657295 2020-10-28 20:38:47.657295 0 \N 7746 \N 1461 439 \N 1.0 0 2020-10-28 20:57:11.073385 2020-10-28 20:57:11.073385 1 \N 7747 \N 1462 439 \N 1.0 0 2020-10-28 20:57:11.099965 2020-10-28 20:57:11.099965 1 \N 7748 \N 1463 439 \N 1.0 0 2020-10-28 20:57:11.12427 2020-10-28 20:57:11.12427 1 \N 7749 \N 1325 \N 3278 1.0 1 2020-10-29 01:41:27.301458 2020-10-29 01:41:27.301458 0 \N 7750 \N 1371 \N 3279 1.0 1 2020-10-29 20:06:31.258098 2020-10-29 20:06:31.258098 0 \N 7751 \N 1371 \N 3280 2.0 1 2020-10-29 20:10:41.302409 2020-10-29 20:10:41.302409 0 \N 7752 \N 1126 \N 3281 1.0 1 2020-10-29 20:28:48.328051 2020-10-29 20:28:48.328051 0 \N 7753 \N 1180 440 \N 4.0 0 2020-10-29 20:48:02.960261 2020-10-29 20:48:02.960261 1 \N 7754 \N 1368 440 \N 2.0 0 2020-10-29 20:48:02.982666 2020-10-29 20:48:02.982666 1 \N 7755 \N 1372 440 \N 6.0 0 2020-10-29 20:48:03.005853 2020-10-29 20:48:03.005853 1 \N 7756 \N 1464 440 \N 5.0 0 2020-10-29 20:48:03.026882 2020-10-29 20:48:03.026882 1 \N 7757 \N 1465 440 \N 1.0 0 2020-10-29 20:48:03.048245 2020-10-29 20:48:03.048245 1 \N 7758 \N 1466 440 \N 1.0 0 2020-10-29 20:48:03.082064 2020-10-29 20:48:03.082064 1 \N 7759 \N 1467 440 \N 1.0 0 2020-10-29 20:48:03.103672 2020-10-29 20:48:03.103672 1 \N 7760 \N 1468 440 \N 1.0 0 2020-10-29 20:48:03.124269 2020-10-29 20:48:03.124269 1 \N 7761 \N 1466 441 \N 1.0 0 2020-10-29 20:53:15.201347 2020-10-29 20:53:15.201347 1 \N 7762 \N 1465 441 \N 1.0 0 2020-10-29 20:53:15.227479 2020-10-29 20:53:15.227479 1 \N 7763 \N 1372 441 \N 2.0 0 2020-10-29 20:53:15.248725 2020-10-29 20:53:15.248725 1 \N 7764 \N 1464 441 \N 2.0 0 2020-10-29 20:53:15.274037 2020-10-29 20:53:15.274037 1 \N 7765 \N 1368 441 \N 1.0 0 2020-10-29 20:53:15.297891 2020-10-29 20:53:15.297891 1 \N 7766 \N 1180 441 \N 2.0 0 2020-10-29 20:53:15.319387 2020-10-29 20:53:15.319387 1 \N 7767 \N 1469 442 \N 1.0 0 2020-10-29 20:56:16.094871 2020-10-29 20:56:16.094871 1 \N 7768 \N 1469 443 \N 1.0 0 2020-10-29 21:26:09.48342 2020-10-29 21:26:09.48342 1 \N 7769 \N 1159 443 \N 1.0 0 2020-10-29 21:26:09.511494 2020-10-29 21:26:09.511494 1 \N 7770 \N 1470 443 \N 1.0 0 2020-10-29 21:26:09.537636 2020-10-29 21:26:09.537636 1 \N 7771 \N 1471 443 \N 2.0 0 2020-10-29 21:26:09.566872 2020-10-29 21:26:09.566872 1 \N 7772 \N 1472 443 \N 1.0 0 2020-10-29 21:26:09.592722 2020-10-29 21:26:09.592722 1 \N 7773 \N 1473 443 \N 1.0 0 2020-10-29 21:26:09.622318 2020-10-29 21:26:09.622318 1 \N 7774 \N 1474 443 \N 1.0 0 2020-10-29 21:26:09.653795 2020-10-29 21:26:09.653795 1 \N 7775 \N 1475 444 \N 4.0 0 2020-10-29 23:09:26.30496 2020-10-29 23:09:26.30496 1 \N 7776 \N 1374 444 \N 5.0 0 2020-10-29 23:09:26.337601 2020-10-29 23:09:26.337601 1 \N 7777 \N 1159 444 \N 1.0 0 2020-10-29 23:09:26.369029 2020-10-29 23:09:26.369029 1 \N 7778 \N 1374 445 \N 10.0 0 2020-10-29 23:10:10.226446 2020-10-29 23:10:10.226446 1 \N 7779 \N 1471 446 \N 2.0 0 2020-10-29 23:15:10.179951 2020-10-29 23:15:10.179951 1 \N 7780 \N 1472 446 \N 1.0 0 2020-10-29 23:15:10.209654 2020-10-29 23:15:10.209654 1 \N 7781 \N 1473 446 \N 1.0 0 2020-10-29 23:15:10.23667 2020-10-29 23:15:10.23667 1 \N 7782 \N 1476 446 \N 1.0 0 2020-10-29 23:15:10.259746 2020-10-29 23:15:10.259746 1 \N 7783 \N 1477 446 \N 2.0 0 2020-10-29 23:15:10.281371 2020-10-29 23:15:10.281371 1 \N 7784 \N 1478 446 \N 1.0 0 2020-10-29 23:15:10.302939 2020-10-29 23:15:10.302939 1 \N 7785 \N 1479 447 \N 1.0 0 2020-10-29 23:19:41.549222 2020-10-29 23:19:41.549222 1 \N 7786 \N 1313 \N 3282 1.0 1 2020-10-30 01:21:47.862069 2020-10-30 01:21:47.862069 0 \N 7787 \N 1371 \N 3283 1.0 1 2020-10-30 02:05:34.768396 2020-10-30 02:05:34.768396 0 \N 7788 \N 905 \N 3283 1.0 1 2020-10-30 02:05:34.791985 2020-10-30 02:05:34.791985 0 \N 7789 \N 1357 \N 3284 1.0 1 2020-10-30 02:11:15.23232 2020-10-30 02:11:15.23232 0 \N 7790 \N 1372 \N 3284 1.0 1 2020-10-30 02:11:15.254039 2020-10-30 02:11:15.254039 0 \N 7791 \N 1294 \N 3285 1.0 1 2020-10-30 19:01:30.147316 2020-10-30 19:01:30.147316 0 \N 7792 \N 1294 \N 3285 1.0 0 2020-10-30 19:02:03.041597 2020-10-30 19:02:03.041597 3 \N 7793 \N 1294 \N 3286 2.0 1 2020-10-30 19:02:22.235417 2020-10-30 19:02:22.235417 0 \N 7794 \N 369 \N 3287 1.0 1 2020-10-30 19:43:10.902954 2020-10-30 19:43:10.902954 0 \N 7795 \N 1382 \N 3287 1.0 1 2020-10-30 19:43:10.924617 2020-10-30 19:43:10.924617 0 \N 7796 \N 1371 \N 3288 1.0 1 2020-10-30 21:04:21.722382 2020-10-30 21:04:21.722382 0 \N 7797 \N 1294 \N 3289 1.0 1 2020-10-30 23:07:48.893003 2020-10-30 23:07:48.893003 0 \N 7798 \N 1475 \N 3290 1.0 1 2020-10-30 23:29:09.175838 2020-10-30 23:29:09.175838 0 \N 7799 \N 1374 \N 3290 1.0 1 2020-10-30 23:29:09.199705 2020-10-30 23:29:09.199705 0 \N 7800 \N 255 \N 3290 1.0 1 2020-10-30 23:29:09.223986 2020-10-30 23:29:09.223986 0 \N 7801 \N 885 \N 3291 1.0 1 2020-10-31 01:26:04.770425 2020-10-31 01:26:04.770425 0 \N 7802 \N 1126 \N 3292 1.0 1 2020-10-31 01:26:07.680144 2020-10-31 01:26:07.680144 0 \N 7803 \N 803 \N 3293 1.0 1 2020-10-31 01:30:08.836153 2020-10-31 01:30:08.836153 0 \N 7804 \N 1317 \N 3293 1.0 1 2020-10-31 01:30:08.863787 2020-10-31 01:30:08.863787 0 \N 7805 \N 1475 \N 3293 1.0 1 2020-10-31 01:30:08.898182 2020-10-31 01:30:08.898182 0 \N 7806 \N 1372 \N 3293 1.0 1 2020-10-31 01:30:08.934263 2020-10-31 01:30:08.934263 0 \N 7807 \N 1475 448 \N 6.0 0 2020-10-31 01:37:26.91711 2020-10-31 01:37:26.91711 1 \N 7808 \N 1475 \N 3294 1.0 1 2020-10-31 01:38:09.800057 2020-10-31 01:38:09.800057 0 \N 7809 \N 1374 \N 3295 1.0 1 2020-10-31 19:24:16.315914 2020-10-31 19:24:16.315914 0 \N 7810 \N 1380 \N 3296 1.0 1 2020-10-31 19:25:33.748699 2020-10-31 19:25:33.748699 0 \N 7811 \N 1180 \N 3297 1.0 1 2020-10-31 20:55:01.427715 2020-10-31 20:55:01.427715 0 \N 7812 \N 1180 \N 3297 1.0 0 2020-10-31 20:55:49.513125 2020-10-31 20:55:49.513125 3 \N 7813 \N 1180 \N 3298 1.0 1 2020-10-31 20:56:07.374029 2020-10-31 20:56:07.374029 0 \N 7814 \N 885 \N 3291 1.0 0 2020-10-31 20:59:01.693565 2020-10-31 20:59:01.693565 3 \N 7815 \N 1430 \N 3299 1.0 1 2020-10-31 23:10:57.367752 2020-10-31 23:10:57.367752 0 \N 7816 \N 1333 \N 3300 1.0 1 2020-11-01 00:13:49.989567 2020-11-01 00:13:49.989567 0 \N 7817 \N 1332 \N 3301 1.0 1 2020-11-01 00:37:07.497595 2020-11-01 00:37:07.497595 0 \N 7818 \N 1294 \N 2991 1.0 0 2020-11-01 01:47:23.757657 2020-11-01 01:47:23.757657 8 \N 7819 \N 1480 449 \N 3.0 0 2020-11-01 02:08:41.909883 2020-11-01 02:08:41.909883 1 \N 7820 \N 1481 449 \N 6.0 0 2020-11-01 02:08:41.936101 2020-11-01 02:08:41.936101 1 \N 7821 \N 1482 449 \N 3.0 0 2020-11-01 02:08:41.965777 2020-11-01 02:08:41.965777 1 \N 7822 \N 1480 \N 3302 1.0 1 2020-11-01 02:11:19.694503 2020-11-01 02:11:19.694503 0 \N 7823 \N 1482 \N 3302 1.0 1 2020-11-01 02:11:19.763539 2020-11-01 02:11:19.763539 0 \N 7824 \N 1481 \N 3302 1.0 1 2020-11-01 02:11:19.818283 2020-11-01 02:11:19.818283 0 \N 7825 \N 971 \N \N 1.0 0 2020-11-01 02:14:01.824061 2020-11-01 02:14:01.824061 7 708 7826 \N 971 \N 3303 1.0 1 2020-11-01 02:15:38.247005 2020-11-01 02:15:38.247005 0 \N 7827 \N 1428 \N 3304 1.0 1 2020-11-01 19:54:56.526377 2020-11-01 19:54:56.526377 0 \N 7828 \N 1483 450 \N 3.0 0 2020-11-02 19:06:10.512752 2020-11-02 19:06:10.512752 1 \N 7829 \N 1484 450 \N 6.0 0 2020-11-02 19:06:10.539657 2020-11-02 19:06:10.539657 1 \N 7830 \N 1371 \N 3305 1.0 1 2020-11-02 19:08:19.922754 2020-11-02 19:08:19.922754 0 \N 7831 \N 1485 451 \N 3.0 0 2020-11-02 20:44:48.259503 2020-11-02 20:44:48.259503 1 \N 7832 \N 1485 \N 3306 1.0 1 2020-11-02 20:59:06.399176 2020-11-02 20:59:06.399176 0 \N 7833 \N 982 \N 3307 1.0 1 2020-11-02 21:01:37.506286 2020-11-02 21:01:37.506286 0 \N 7834 \N 1401 \N 3308 1.0 1 2020-11-02 21:11:47.157264 2020-11-02 21:11:47.157264 0 \N 7835 \N 1372 \N 3309 1.0 1 2020-11-02 23:28:45.799824 2020-11-02 23:28:45.799824 0 \N 7836 \N 1486 452 \N 5.0 0 2020-11-02 23:40:39.317371 2020-11-02 23:40:39.317371 1 \N 7837 \N 1486 \N 3310 1.0 1 2020-11-02 23:58:25.87161 2020-11-02 23:58:25.87161 0 \N 7838 \N 1357 \N \N 1.0 0 2020-11-03 18:33:26.217852 2020-11-03 18:33:26.217852 7 707 7839 \N 1372 \N \N 1.0 0 2020-11-03 18:33:26.23908 2020-11-03 18:33:26.23908 7 707 7840 \N 1372 \N 3311 1.0 1 2020-11-03 18:33:58.210989 2020-11-03 18:33:58.210989 0 \N 7841 \N 1487 453 \N 3.0 0 2020-11-03 19:45:12.324392 2020-11-03 19:45:12.324392 1 \N 7842 \N 1488 453 \N 6.0 0 2020-11-03 19:45:12.346136 2020-11-03 19:45:12.346136 1 \N 7843 \N 1489 453 \N 6.0 0 2020-11-03 19:45:12.366683 2020-11-03 19:45:12.366683 1 \N 7844 \N 1490 453 \N 6.0 0 2020-11-03 19:45:12.386658 2020-11-03 19:45:12.386658 1 \N 7845 \N 1491 453 \N 9.0 0 2020-11-03 19:45:12.406493 2020-11-03 19:45:12.406493 1 \N 7846 \N 1492 453 \N 6.0 0 2020-11-03 19:45:12.426819 2020-11-03 19:45:12.426819 1 \N 7847 \N 1493 453 \N 9.0 0 2020-11-03 19:45:12.447041 2020-11-03 19:45:12.447041 1 \N 7848 \N 1494 453 \N 3.0 0 2020-11-03 19:45:12.4676 2020-11-03 19:45:12.4676 1 \N 7849 \N 1495 453 \N 3.0 0 2020-11-03 19:45:12.487577 2020-11-03 19:45:12.487577 1 \N 7850 \N 1496 453 \N 3.0 0 2020-11-03 19:45:12.50895 2020-11-03 19:45:12.50895 1 \N 7851 \N 1314 \N 3312 1.0 1 2020-11-03 20:26:59.131899 2020-11-03 20:26:59.131899 0 \N 7852 \N 1497 454 \N 3.0 0 2020-11-03 20:58:59.97682 2020-11-03 20:58:59.97682 1 \N 7853 \N 1498 454 \N 6.0 0 2020-11-03 20:58:59.999342 2020-11-03 20:58:59.999342 1 \N 7854 \N 1499 454 \N 6.0 0 2020-11-03 20:59:00.031943 2020-11-03 20:59:00.031943 1 \N 7855 \N 1500 454 \N 3.0 0 2020-11-03 20:59:00.054648 2020-11-03 20:59:00.054648 1 \N 7856 \N 1501 454 \N 3.0 0 2020-11-03 20:59:00.082358 2020-11-03 20:59:00.082358 1 \N 7857 \N 1502 454 \N 3.0 0 2020-11-03 20:59:00.104183 2020-11-03 20:59:00.104183 1 \N 7858 \N 1503 454 \N 3.0 0 2020-11-03 20:59:00.127294 2020-11-03 20:59:00.127294 1 \N 7859 \N 1504 455 \N 3.0 0 2020-11-03 21:14:24.303776 2020-11-03 21:14:24.303776 1 \N 7860 \N 1505 455 \N 3.0 0 2020-11-03 21:14:24.325528 2020-11-03 21:14:24.325528 1 \N 7861 \N 1506 455 \N 6.0 0 2020-11-03 21:14:24.346846 2020-11-03 21:14:24.346846 1 \N 7862 \N 1507 455 \N 6.0 0 2020-11-03 21:14:24.368289 2020-11-03 21:14:24.368289 1 \N 7863 \N 1508 455 \N 7.0 0 2020-11-03 21:14:24.389779 2020-11-03 21:14:24.389779 1 \N 7864 \N 1509 455 \N 2.0 0 2020-11-03 21:14:24.412983 2020-11-03 21:14:24.412983 1 \N 7865 \N 1510 455 \N 3.0 0 2020-11-03 21:14:24.435801 2020-11-03 21:14:24.435801 1 \N 7866 \N 1511 456 \N 6.0 0 2020-11-03 22:26:52.652886 2020-11-03 22:26:52.652886 1 \N 7867 \N 1512 456 \N 3.0 0 2020-11-03 22:26:52.673272 2020-11-03 22:26:52.673272 1 \N 7868 \N 1513 456 \N 3.0 0 2020-11-03 22:26:52.693996 2020-11-03 22:26:52.693996 1 \N 7869 \N 1514 456 \N 3.0 0 2020-11-03 22:26:52.714558 2020-11-03 22:26:52.714558 1 \N 7870 \N 1515 456 \N 3.0 0 2020-11-03 22:26:52.735615 2020-11-03 22:26:52.735615 1 \N 7871 \N 1379 \N 3313 1.0 1 2020-11-03 22:50:15.644853 2020-11-03 22:50:15.644853 0 \N 7872 \N 697 \N 3313 1.0 1 2020-11-03 22:50:15.669758 2020-11-03 22:50:15.669758 0 \N 7873 \N 1007 \N 3314 1.0 1 2020-11-03 23:48:34.253034 2020-11-03 23:48:34.253034 0 \N 7874 \N 1516 457 \N 3.0 0 2020-11-04 00:05:33.198884 2020-11-04 00:05:33.198884 1 \N 7875 \N 1517 457 \N 3.0 0 2020-11-04 00:05:33.220889 2020-11-04 00:05:33.220889 1 \N 7876 \N 1518 457 \N 3.0 0 2020-11-04 00:05:33.245231 2020-11-04 00:05:33.245231 1 \N 7877 \N 1519 457 \N 3.0 0 2020-11-04 00:05:33.268879 2020-11-04 00:05:33.268879 1 \N 7878 \N 1520 457 \N 3.0 0 2020-11-04 00:05:33.29331 2020-11-04 00:05:33.29331 1 \N 7879 \N 1521 457 \N 9.0 0 2020-11-04 00:05:33.31715 2020-11-04 00:05:33.31715 1 \N 7880 \N 1522 457 \N 6.0 0 2020-11-04 00:05:33.336832 2020-11-04 00:05:33.336832 1 \N 7881 \N 1523 457 \N 9.0 0 2020-11-04 00:05:33.356147 2020-11-04 00:05:33.356147 1 \N 7882 \N 1524 457 \N 3.0 0 2020-11-04 00:05:33.377168 2020-11-04 00:05:33.377168 1 \N 7883 \N 1525 457 \N 3.0 0 2020-11-04 00:05:33.396212 2020-11-04 00:05:33.396212 1 \N 7884 \N 1526 457 \N 3.0 0 2020-11-04 00:05:33.414837 2020-11-04 00:05:33.414837 1 \N 7885 \N 1527 457 \N 5.0 0 2020-11-04 00:05:33.433884 2020-11-04 00:05:33.433884 1 \N 7886 \N 1528 458 \N 6.0 0 2020-11-04 00:24:44.077336 2020-11-04 00:24:44.077336 1 \N 7887 \N 710 \N \N 4.0 0 2020-11-04 01:08:14.566031 2020-11-04 01:08:14.566031 7 709 7888 \N 725 \N \N 1.0 0 2020-11-04 01:08:22.391628 2020-11-04 01:08:22.391628 7 710 7889 \N 862 \N \N 2.0 0 2020-11-04 01:08:22.411157 2020-11-04 01:08:22.411157 7 710 7890 \N 786 \N \N 5.0 0 2020-11-04 01:08:22.430017 2020-11-04 01:08:22.430017 7 710 7891 \N 947 \N \N 1.0 0 2020-11-04 01:08:22.452645 2020-11-04 01:08:22.452645 7 710 7892 \N 870 \N \N 2.0 0 2020-11-04 01:08:22.476764 2020-11-04 01:08:22.476764 7 710 7893 \N 753 \N \N 4.0 0 2020-11-04 01:08:22.508162 2020-11-04 01:08:22.508162 7 710 7894 \N 796 \N \N 5.0 0 2020-11-04 01:08:22.534114 2020-11-04 01:08:22.534114 7 710 7895 \N 871 \N \N 9.0 0 2020-11-04 01:08:22.560046 2020-11-04 01:08:22.560046 7 710 7896 \N 793 \N \N 3.0 0 2020-11-04 01:08:22.580254 2020-11-04 01:08:22.580254 7 710 7897 \N 1371 \N 3315 1.0 1 2020-11-04 01:14:58.798126 2020-11-04 01:14:58.798126 0 \N 7898 \N 710 \N 3316 1.0 1 2020-11-04 01:17:32.170795 2020-11-04 01:17:32.170795 0 \N 7899 \N 1529 459 \N 1.0 0 2020-11-04 01:39:20.731641 2020-11-04 01:39:20.731641 1 \N 7900 \N 1529 460 \N 5.0 0 2020-11-04 01:40:36.481252 2020-11-04 01:40:36.481252 1 \N 7901 \N 1159 461 \N 5.0 0 2020-11-04 01:41:20.283857 2020-11-04 01:41:20.283857 1 \N 7902 \N 1371 461 \N 17.0 0 2020-11-04 01:41:20.305396 2020-11-04 01:41:20.305396 1 \N 7903 \N 1007 \N 3317 1.0 1 2020-11-04 02:18:17.227497 2020-11-04 02:18:17.227497 0 \N 7904 \N 1481 \N 3318 1.0 1 2020-11-04 21:32:23.424417 2020-11-04 21:32:23.424417 0 \N 7905 \N 1464 \N 3319 1.0 1 2020-11-04 22:01:45.023671 2020-11-04 22:01:45.023671 0 \N 7906 \N 1483 \N 3320 1.0 1 2020-11-04 22:33:44.575627 2020-11-04 22:33:44.575627 0 \N 7907 \N 1371 \N 3321 1.0 1 2020-11-04 22:55:23.472581 2020-11-04 22:55:23.472581 0 \N 7908 \N 1491 \N 3322 1.0 1 2020-11-05 00:37:57.415638 2020-11-05 00:37:57.415638 0 \N 7909 \N 1490 \N 3322 1.0 1 2020-11-05 00:37:57.438109 2020-11-05 00:37:57.438109 0 \N 7910 \N 956 \N \N 1.0 0 2020-11-05 01:01:29.089139 2020-11-05 01:01:29.089139 7 712 7911 \N 956 \N \N 1.0 0 2020-11-05 01:01:43.040403 2020-11-05 01:01:43.040403 7 711 7912 \N 956 \N 3323 1.0 1 2020-11-05 01:02:09.929523 2020-11-05 01:02:09.929523 0 \N 7913 \N 1500 462 \N 3.0 0 2020-11-05 01:27:39.98941 2020-11-05 01:27:39.98941 1 \N 7914 \N 1519 462 \N 2.0 0 2020-11-05 01:27:40.026609 2020-11-05 01:27:40.026609 1 \N 7915 \N 1515 462 \N 3.0 0 2020-11-05 01:27:40.0506 2020-11-05 01:27:40.0506 1 \N 7916 \N 1482 462 \N 2.0 0 2020-11-05 01:27:40.079371 2020-11-05 01:27:40.079371 1 \N 7917 \N 1480 462 \N 3.0 0 2020-11-05 01:27:40.111957 2020-11-05 01:27:40.111957 1 \N 7918 \N 1517 462 \N 3.0 0 2020-11-05 01:27:40.135783 2020-11-05 01:27:40.135783 1 \N 7919 \N 1503 \N \N 1.0 0 2020-11-05 02:12:28.302554 2020-11-05 02:12:28.302554 7 713 7920 \N 1503 \N 3324 1.0 1 2020-11-05 02:13:19.758786 2020-11-05 02:13:19.758786 0 \N 7921 \N 1516 \N \N 1.0 0 2020-11-05 19:57:02.122231 2020-11-05 19:57:02.122231 7 714 7922 \N 1516 \N 3325 1.0 1 2020-11-05 20:00:14.800706 2020-11-05 20:00:14.800706 0 \N 7923 \N 1507 \N \N 1.0 0 2020-11-05 20:57:13.013933 2020-11-05 20:57:13.013933 7 715 7924 \N 955 \N \N 1.0 0 2020-11-05 21:05:18.900006 2020-11-05 21:05:18.900006 7 716 7925 \N 955 \N 3326 1.0 1 2020-11-05 21:07:46.891338 2020-11-05 21:07:46.891338 0 \N 7926 \N 955 \N \N 1.0 0 2020-11-05 21:08:43.588366 2020-11-05 21:08:43.588366 7 717 7927 \N 1522 \N \N 1.0 0 2020-11-05 21:15:15.851073 2020-11-05 21:15:15.851073 7 719 7928 \N 1510 \N \N 1.0 0 2020-11-05 21:15:15.8732 2020-11-05 21:15:15.8732 7 719 7929 \N 1507 \N 3327 1.0 1 2020-11-05 21:20:40.135333 2020-11-05 21:20:40.135333 0 \N 7930 \N 1510 \N 3327 1.0 1 2020-11-05 21:20:40.16204 2020-11-05 21:20:40.16204 0 \N 7931 \N 1522 \N 3327 1.0 1 2020-11-05 21:20:40.185153 2020-11-05 21:20:40.185153 0 \N 7932 \N 1393 \N 3327 1.0 1 2020-11-05 21:20:40.211831 2020-11-05 21:20:40.211831 0 \N 7933 \N 1029 \N 3327 2.0 1 2020-11-05 21:20:40.236221 2020-11-05 21:20:40.236221 0 \N 7934 \N 1284 \N 3328 1.0 1 2020-11-05 21:24:22.674785 2020-11-05 21:24:22.674785 0 \N 7935 \N 887 \N 3329 1.0 1 2020-11-05 21:42:23.920877 2020-11-05 21:42:23.920877 0 \N 7936 \N 1221 \N 3330 1.0 1 2020-11-05 21:57:31.533714 2020-11-05 21:57:31.533714 0 \N 7937 \N 1520 \N 3331 1.0 1 2020-11-05 22:13:29.53241 2020-11-05 22:13:29.53241 0 \N 7938 \N 955 \N \N 1.0 0 2020-11-05 22:19:37.079796 2020-11-05 22:19:37.079796 7 718 7939 \N 1327 \N 3332 1.0 1 2020-11-05 22:22:26.73516 2020-11-05 22:22:26.73516 0 \N 7940 \N 1007 \N 3332 1.0 1 2020-11-05 22:22:26.756804 2020-11-05 22:22:26.756804 0 \N 7941 \N 997 \N \N 2.0 0 2020-11-05 22:24:07.09458 2020-11-05 22:24:07.09458 7 720 7942 \N 997 \N 3333 1.0 1 2020-11-05 22:24:30.679105 2020-11-05 22:24:30.679105 0 \N 7943 \N 1004 \N 3334 1.0 1 2020-11-05 22:52:10.22887 2020-11-05 22:52:10.22887 0 \N 7944 \N 1327 \N 3334 1.0 1 2020-11-05 22:52:10.25162 2020-11-05 22:52:10.25162 0 \N 7945 \N 1007 \N 3334 1.0 1 2020-11-05 22:52:10.272625 2020-11-05 22:52:10.272625 0 \N 7946 \N 1007 \N 3334 1.0 0 2020-11-05 22:54:35.6881 2020-11-05 22:54:35.6881 3 \N 7947 \N 1327 \N 3334 1.0 0 2020-11-05 22:54:35.706639 2020-11-05 22:54:35.706639 3 \N 7948 \N 1004 \N 3334 1.0 0 2020-11-05 22:54:35.724303 2020-11-05 22:54:35.724303 3 \N 7949 \N 1004 \N 3335 1.0 1 2020-11-05 22:58:00.795924 2020-11-05 22:58:00.795924 0 \N 7950 \N 1327 \N 3335 1.0 1 2020-11-05 22:58:00.824182 2020-11-05 22:58:00.824182 0 \N 7951 \N 1007 \N 3335 1.0 1 2020-11-05 22:58:00.847695 2020-11-05 22:58:00.847695 0 \N 7952 \N 975 \N \N 2.0 0 2020-11-05 23:11:27.616467 2020-11-05 23:11:27.616467 7 721 7953 \N 975 \N 3336 1.0 1 2020-11-05 23:15:09.934217 2020-11-05 23:15:09.934217 0 \N 7954 \N 1485 \N 3336 1.0 1 2020-11-05 23:15:09.954899 2020-11-05 23:15:09.954899 0 \N 7955 \N 1489 \N 3336 1.0 1 2020-11-05 23:15:09.996127 2020-11-05 23:15:09.996127 0 \N 7956 \N 1475 \N 3337 1.0 1 2020-11-05 23:17:39.710818 2020-11-05 23:17:39.710818 0 \N 7957 \N 1372 \N 3337 1.0 1 2020-11-05 23:17:39.732031 2020-11-05 23:17:39.732031 0 \N 7958 \N 1185 \N 3338 1.0 1 2020-11-06 00:43:14.289071 2020-11-06 00:43:14.289071 0 \N 7959 \N 1516 463 \N 1.0 0 2020-11-06 01:15:17.831146 2020-11-06 01:15:17.831146 1 \N 7960 \N 1507 463 \N 1.0 0 2020-11-06 01:15:17.854166 2020-11-06 01:15:17.854166 1 \N 7961 \N 1510 463 \N 1.0 0 2020-11-06 01:15:17.894435 2020-11-06 01:15:17.894435 1 \N 7962 \N 1522 463 \N 1.0 0 2020-11-06 01:15:17.917667 2020-11-06 01:15:17.917667 1 \N 7963 \N 1485 463 \N 2.0 0 2020-11-06 01:15:17.947151 2020-11-06 01:15:17.947151 1 \N 7964 \N 1497 463 \N 3.0 0 2020-11-06 01:15:17.971815 2020-11-06 01:15:17.971815 1 \N 7965 \N 1502 463 \N 3.0 0 2020-11-06 01:15:17.994487 2020-11-06 01:15:17.994487 1 \N 7966 \N 1503 463 \N 3.0 0 2020-11-06 01:15:18.019183 2020-11-06 01:15:18.019183 1 \N 7967 \N 1485 464 \N 1.0 0 2020-11-06 01:17:18.8136 2020-11-06 01:17:18.8136 1 \N 7968 \N 1371 \N 3339 1.0 1 2020-11-06 01:32:15.637889 2020-11-06 01:32:15.637889 0 \N 7969 \N 1464 \N 3340 1.0 1 2020-11-06 17:52:08.839194 2020-11-06 17:52:08.839194 0 \N 7970 \N 1523 \N \N 1.0 0 2020-11-06 18:50:48.247502 2020-11-06 18:50:48.247502 7 722 7971 \N 1490 \N \N 1.0 0 2020-11-06 18:50:48.268957 2020-11-06 18:50:48.268957 7 722 7972 \N 1490 \N 3341 1.0 1 2020-11-06 18:53:50.036729 2020-11-06 18:53:50.036729 0 \N 7973 \N 1523 \N 3341 1.0 1 2020-11-06 18:53:50.063573 2020-11-06 18:53:50.063573 0 \N 7974 \N 885 \N 3341 1.0 1 2020-11-06 18:53:50.089052 2020-11-06 18:53:50.089052 0 \N 7975 \N 1475 \N 3342 1.0 1 2020-11-06 19:11:15.606328 2020-11-06 19:11:15.606328 0 \N 7976 \N 1513 \N \N 1.0 0 2020-11-06 20:49:31.699403 2020-11-06 20:49:31.699403 7 723 7977 \N 1513 \N 3343 1.0 1 2020-11-06 20:52:00.298912 2020-11-06 20:52:00.298912 0 \N 7978 \N 1490 465 \N 1.0 0 2020-11-06 20:57:59.627692 2020-11-06 20:57:59.627692 1 \N 7979 \N 1523 465 \N 1.0 0 2020-11-06 20:57:59.652658 2020-11-06 20:57:59.652658 1 \N 7980 \N 1513 465 \N 1.0 0 2020-11-06 20:57:59.678976 2020-11-06 20:57:59.678976 1 \N 7981 \N 1483 466 \N 3.0 0 2020-11-06 21:37:27.938033 2020-11-06 21:37:27.938033 1 \N 7982 \N 1520 466 \N 1.0 0 2020-11-06 21:37:27.963447 2020-11-06 21:37:27.963447 1 \N 7983 \N 1494 466 \N 3.0 0 2020-11-06 21:37:27.98744 2020-11-06 21:37:27.98744 1 \N 7984 \N 1495 466 \N 3.0 0 2020-11-06 21:37:28.011602 2020-11-06 21:37:28.011602 1 \N 7985 \N 1496 466 \N 3.0 0 2020-11-06 21:37:28.037504 2020-11-06 21:37:28.037504 1 \N 7986 \N 1501 466 \N 3.0 0 2020-11-06 21:37:28.073665 2020-11-06 21:37:28.073665 1 \N 7987 \N 1512 466 \N 1.0 0 2020-11-06 21:37:28.112087 2020-11-06 21:37:28.112087 1 \N 7988 \N 1514 466 \N 3.0 0 2020-11-06 21:37:28.150087 2020-11-06 21:37:28.150087 1 \N 7989 \N 1516 466 \N 2.0 0 2020-11-06 21:37:28.177441 2020-11-06 21:37:28.177441 1 \N 7990 \N 1490 466 \N 5.0 0 2020-11-06 21:37:28.198927 2020-11-06 21:37:28.198927 1 \N 7991 \N 1491 466 \N 9.0 0 2020-11-06 21:37:28.225495 2020-11-06 21:37:28.225495 1 \N 7992 \N 1492 466 \N 6.0 0 2020-11-06 21:37:28.250621 2020-11-06 21:37:28.250621 1 \N 7993 \N 1493 466 \N 9.0 0 2020-11-06 21:37:28.277632 2020-11-06 21:37:28.277632 1 \N 7994 \N 1498 466 \N 6.0 0 2020-11-06 21:37:28.303086 2020-11-06 21:37:28.303086 1 \N 7995 \N 1499 466 \N 5.0 0 2020-11-06 21:37:28.340389 2020-11-06 21:37:28.340389 1 \N 7996 \N 1505 466 \N 3.0 0 2020-11-06 21:37:28.369935 2020-11-06 21:37:28.369935 1 \N 7997 \N 1506 466 \N 6.0 0 2020-11-06 21:37:28.397339 2020-11-06 21:37:28.397339 1 \N 7998 \N 1507 466 \N 5.0 0 2020-11-06 21:37:28.418543 2020-11-06 21:37:28.418543 1 \N 7999 \N 1511 466 \N 6.0 0 2020-11-06 21:37:28.44302 2020-11-06 21:37:28.44302 1 \N 8000 \N 1521 466 \N 9.0 0 2020-11-06 21:37:28.471186 2020-11-06 21:37:28.471186 1 \N 8001 \N 1525 466 \N 3.0 0 2020-11-06 21:37:28.49742 2020-11-06 21:37:28.49742 1 \N 8002 \N 1311 \N \N 1.0 0 2020-11-06 22:03:31.691686 2020-11-06 22:03:31.691686 7 724 8003 \N 1326 \N \N 1.0 0 2020-11-06 22:03:31.708989 2020-11-06 22:03:31.708989 7 724 8004 \N 994 \N \N 1.0 0 2020-11-06 22:03:31.727532 2020-11-06 22:03:31.727532 7 724 8005 \N 1337 \N \N 1.0 0 2020-11-06 22:03:31.74405 2020-11-06 22:03:31.74405 7 724 8006 \N 1325 \N \N 1.0 0 2020-11-06 22:03:31.764856 2020-11-06 22:03:31.764856 7 724 8007 \N 986 \N \N 2.0 0 2020-11-06 22:03:31.781203 2020-11-06 22:03:31.781203 7 724 8008 \N 1343 \N \N 2.0 0 2020-11-06 22:03:31.801704 2020-11-06 22:03:31.801704 7 724 8009 \N 1009 \N \N 3.0 0 2020-11-06 22:03:31.82151 2020-11-06 22:03:31.82151 7 724 8010 \N 987 \N \N 2.0 0 2020-11-06 22:03:31.837457 2020-11-06 22:03:31.837457 7 724 8011 \N 608 \N \N 3.0 0 2020-11-06 22:03:31.854336 2020-11-06 22:03:31.854336 7 724 8012 \N 987 \N 3344 1.0 1 2020-11-06 22:04:17.154748 2020-11-06 22:04:17.154748 0 \N 8013 \N 1512 \N \N 2.0 0 2020-11-06 22:11:43.360948 2020-11-06 22:11:43.360948 7 725 8014 \N 1510 467 \N 2.0 0 2020-11-06 22:21:30.668573 2020-11-06 22:21:30.668573 1 \N 8015 \N 1504 467 \N 3.0 0 2020-11-06 22:21:30.696033 2020-11-06 22:21:30.696033 1 \N 8016 \N 1513 467 \N 2.0 0 2020-11-06 22:21:30.71649 2020-11-06 22:21:30.71649 1 \N 8017 \N 1522 467 \N 5.0 0 2020-11-06 22:21:30.737436 2020-11-06 22:21:30.737436 1 \N 8018 \N 1523 467 \N 8.0 0 2020-11-06 22:21:30.758103 2020-11-06 22:21:30.758103 1 \N 8019 \N 1518 467 \N 3.0 0 2020-11-06 22:21:30.783133 2020-11-06 22:21:30.783133 1 \N 8020 \N 1526 467 \N 3.0 0 2020-11-06 22:21:30.808479 2020-11-06 22:21:30.808479 1 \N 8021 \N 1524 467 \N 3.0 0 2020-11-06 22:21:30.835243 2020-11-06 22:21:30.835243 1 \N 8022 \N 1487 467 \N 3.0 0 2020-11-06 22:21:30.860152 2020-11-06 22:21:30.860152 1 \N 8023 \N 1528 467 \N 6.0 0 2020-11-06 22:21:30.885433 2020-11-06 22:21:30.885433 1 \N 8024 \N 1520 468 \N 2.0 0 2020-11-06 22:23:18.326723 2020-11-06 22:23:18.326723 1 \N 8025 \N 1521 \N 3345 1.0 1 2020-11-06 22:48:09.081449 2020-11-06 22:48:09.081449 0 \N 8026 \N 1518 \N 3345 1.0 1 2020-11-06 22:48:09.136559 2020-11-06 22:48:09.136559 0 \N 8027 \N 1400 \N 3346 1.0 1 2020-11-06 22:51:52.456963 2020-11-06 22:51:52.456963 0 \N 8028 \N 1380 \N 3346 1.0 1 2020-11-06 22:51:52.489958 2020-11-06 22:51:52.489958 0 \N 8029 \N 1436 \N 3346 1.0 1 2020-11-06 22:51:52.511971 2020-11-06 22:51:52.511971 0 \N 8030 \N 266 \N 3347 1.0 1 2020-11-06 23:00:20.659805 2020-11-06 23:00:20.659805 0 \N 8031 \N 1371 \N \N 1.0 0 2020-11-06 23:17:28.794765 2020-11-06 23:17:28.794765 7 727 8032 \N 1311 \N \N 1.0 0 2020-11-06 23:17:38.118005 2020-11-06 23:17:38.118005 7 726 8033 \N 1314 \N 3348 1.0 1 2020-11-07 00:01:56.493419 2020-11-07 00:01:56.493419 0 \N 8034 \N 1219 \N 3349 1.0 1 2020-11-07 00:23:48.423069 2020-11-07 00:23:48.423069 0 \N 8035 \N 1395 \N 3349 1.0 1 2020-11-07 00:23:48.448861 2020-11-07 00:23:48.448861 0 \N 8036 \N 1465 \N 3350 1.0 1 2020-11-07 00:25:55.576857 2020-11-07 00:25:55.576857 0 \N 8037 \N 1402 \N 3351 1.0 1 2020-11-07 00:51:40.341526 2020-11-07 00:51:40.341526 0 \N 8038 \N 1529 \N 3352 1.0 1 2020-11-07 00:52:58.509356 2020-11-07 00:52:58.509356 0 \N 8039 \N 1371 \N 3353 1.0 1 2020-11-07 02:08:39.131128 2020-11-07 02:08:39.131128 0 \N 8040 \N 1514 \N 3354 1.0 1 2020-11-07 02:25:18.699988 2020-11-07 02:25:18.699988 0 \N 8041 \N 1361 \N 3355 1.0 1 2020-11-07 02:35:59.670759 2020-11-07 02:35:59.670759 0 \N 8042 \N 1522 \N 3356 1.0 1 2020-11-07 17:52:27.220705 2020-11-07 17:52:27.220705 0 \N 8043 \N 1475 \N 3357 1.0 1 2020-11-07 19:12:08.942948 2020-11-07 19:12:08.942948 0 \N 8044 \N 887 \N 3357 1.0 1 2020-11-07 19:12:08.968978 2020-11-07 19:12:08.968978 0 \N 8045 \N 1528 \N 3358 1.0 1 2020-11-07 19:14:26.179132 2020-11-07 19:14:26.179132 0 \N 8046 \N 1528 \N 3359 1.0 1 2020-11-07 19:55:28.392034 2020-11-07 19:55:28.392034 0 \N 8047 \N 1294 \N 3360 1.0 1 2020-11-07 19:57:33.337921 2020-11-07 19:57:33.337921 0 \N 8048 \N 1480 \N 3361 1.0 1 2020-11-07 20:54:54.849571 2020-11-07 20:54:54.849571 0 \N 8049 \N 1518 \N 3362 1.0 1 2020-11-07 22:36:01.20407 2020-11-07 22:36:01.20407 0 \N 8050 \N 1525 \N 3362 1.0 1 2020-11-07 22:36:01.234334 2020-11-07 22:36:01.234334 0 \N 8051 \N 1523 \N 3362 1.0 1 2020-11-07 22:36:01.259739 2020-11-07 22:36:01.259739 0 \N 8052 \N 1504 \N 3363 1.0 1 2020-11-08 00:13:33.082546 2020-11-08 00:13:33.082546 0 \N 8053 \N 1492 \N 3363 1.0 1 2020-11-08 00:13:33.106826 2020-11-08 00:13:33.106826 0 \N 8054 \N 1492 \N 3363 1.0 0 2020-11-08 00:19:49.144287 2020-11-08 00:19:49.144287 3 \N 8055 \N 1504 \N 3363 1.0 0 2020-11-08 00:19:49.163609 2020-11-08 00:19:49.163609 3 \N 8056 \N 1504 \N 3364 1.0 1 2020-11-08 00:21:25.985002 2020-11-08 00:21:25.985002 0 \N 8057 \N 1294 \N 3364 1.0 1 2020-11-08 00:21:26.009314 2020-11-08 00:21:26.009314 0 \N 8058 \N 1484 \N 3365 1.0 1 2020-11-08 01:02:44.283313 2020-11-08 01:02:44.283313 0 \N 8059 \N 1497 \N 3366 1.0 1 2020-11-08 01:07:09.508035 2020-11-08 01:07:09.508035 0 \N 8060 \N 1513 \N 3367 1.0 1 2020-11-08 02:10:09.442374 2020-11-08 02:10:09.442374 0 \N 8061 \N 1475 \N 3367 1.0 1 2020-11-08 02:10:09.464275 2020-11-08 02:10:09.464275 0 \N 8062 \N 1228 \N 3367 1.0 1 2020-11-08 02:10:09.486026 2020-11-08 02:10:09.486026 0 \N 8063 \N 1381 \N 3367 1.0 1 2020-11-08 02:10:09.510991 2020-11-08 02:10:09.510991 0 \N 8064 \N 1232 \N 3367 2.0 1 2020-11-08 02:10:09.535385 2020-11-08 02:10:09.535385 0 \N 8065 \N 1371 \N 3368 1.0 1 2020-11-09 19:31:10.674866 2020-11-09 19:31:10.674866 0 \N 8066 \N 333 \N 3369 1.0 1 2020-11-09 19:35:32.749704 2020-11-09 19:35:32.749704 0 \N 8067 \N 1158 \N 3370 1.0 1 2020-11-09 21:44:11.949153 2020-11-09 21:44:11.949153 0 \N 8068 \N 1372 \N 3371 1.0 1 2020-11-09 23:11:16.165447 2020-11-09 23:11:16.165447 0 \N 8069 \N 1294 \N 3372 1.0 1 2020-11-09 23:44:01.037417 2020-11-09 23:44:01.037417 0 \N 8070 \N 903 \N \N 1.0 0 2020-11-09 23:55:20.203839 2020-11-09 23:55:20.203839 7 729 8071 \N 1374 \N 3373 1.0 1 2020-11-09 23:56:23.747259 2020-11-09 23:56:23.747259 0 \N 8072 \N 887 \N 3373 1.0 1 2020-11-09 23:56:23.770522 2020-11-09 23:56:23.770522 0 \N 8073 \N 1512 \N 3373 1.0 1 2020-11-09 23:56:23.793397 2020-11-09 23:56:23.793397 0 \N 8074 \N 1526 \N 3373 1.0 1 2020-11-09 23:56:23.818127 2020-11-09 23:56:23.818127 0 \N 8075 \N 1507 \N 3373 1.0 1 2020-11-09 23:56:23.840562 2020-11-09 23:56:23.840562 0 \N 8076 \N 903 \N 3373 1.0 1 2020-11-09 23:56:23.862406 2020-11-09 23:56:23.862406 0 \N 8077 \N 1523 \N 3373 1.0 1 2020-11-09 23:56:23.890397 2020-11-09 23:56:23.890397 0 \N 8078 \N 673 \N 3374 1.0 1 2020-11-10 00:01:39.299276 2020-11-10 00:01:39.299276 0 \N 8079 \N 1481 \N 3374 1.0 1 2020-11-10 00:01:39.325412 2020-11-10 00:01:39.325412 0 \N 8080 \N 1371 \N 3375 1.0 1 2020-11-10 00:24:19.72779 2020-11-10 00:24:19.72779 0 \N 8081 \N 1199 \N 3376 1.0 1 2020-11-10 01:09:36.741564 2020-11-10 01:09:36.741564 0 \N 8082 \N 1198 \N 3376 1.0 1 2020-11-10 01:09:36.765346 2020-11-10 01:09:36.765346 0 \N 8083 \N 1234 \N 3377 1.0 1 2020-11-10 01:11:09.318242 2020-11-10 01:11:09.318242 0 \N 8084 \N 1380 \N 3377 1.0 1 2020-11-10 01:11:09.346501 2020-11-10 01:11:09.346501 0 \N 8085 \N 1372 469 \N 6.0 0 2020-11-10 20:01:04.915212 2020-11-10 20:01:04.915212 1 \N 8086 \N 1371 \N \N 7.0 0 2020-11-10 20:48:18.155526 2020-11-10 20:48:18.155526 7 728 8087 \N 1372 470 \N 5.0 0 2020-11-10 20:53:10.945105 2020-11-10 20:53:10.945105 1 \N 8088 \N 1372 \N 3378 1.0 1 2020-11-10 21:17:14.213039 2020-11-10 21:17:14.213039 0 \N 8089 \N 1316 \N 3379 1.0 1 2020-11-10 21:19:30.507577 2020-11-10 21:19:30.507577 0 \N 8090 \N 1485 \N 3379 1.0 1 2020-11-10 21:19:30.532006 2020-11-10 21:19:30.532006 0 \N 8091 \N 1406 \N 3380 1.0 1 2020-11-10 21:28:13.934001 2020-11-10 21:28:13.934001 0 \N 8092 \N 1230 \N 3380 1.0 1 2020-11-10 21:28:13.966934 2020-11-10 21:28:13.966934 0 \N 8093 \N 1371 \N 3381 1.0 1 2020-11-11 00:03:25.744096 2020-11-11 00:03:25.744096 0 \N 8094 \N 1294 \N 3381 1.0 1 2020-11-11 00:03:25.776476 2020-11-11 00:03:25.776476 0 \N 8095 \N 1483 \N 3382 1.0 1 2020-11-11 18:47:35.867857 2020-11-11 18:47:35.867857 0 \N 8096 \N 1371 \N 3383 1.0 1 2020-11-11 19:34:45.384964 2020-11-11 19:34:45.384964 0 \N 8097 \N 1475 471 \N 10.0 0 2020-11-11 20:52:41.726852 2020-11-11 20:52:41.726852 1 \N 8098 \N 1475 \N 3384 2.0 1 2020-11-11 21:00:58.775432 2020-11-11 21:00:58.775432 0 \N 8099 \N 1372 \N 3384 1.0 1 2020-11-11 21:00:58.810363 2020-11-11 21:00:58.810363 0 \N 8100 \N 1497 \N 3385 1.0 1 2020-11-11 21:18:40.763792 2020-11-11 21:18:40.763792 0 \N 8101 \N 1371 \N 3386 1.0 1 2020-11-11 22:13:11.88795 2020-11-11 22:13:11.88795 0 \N 8102 \N 1371 \N 3386 1.0 0 2020-11-11 22:13:59.387025 2020-11-11 22:13:59.387025 3 \N 8103 \N 1371 \N 3387 1.0 1 2020-11-11 22:14:22.404313 2020-11-11 22:14:22.404313 0 \N 8104 \N 1398 \N 3387 1.0 1 2020-11-11 22:14:22.433419 2020-11-11 22:14:22.433419 0 \N 8105 \N 1523 \N 3388 1.0 1 2020-11-12 00:16:27.931565 2020-11-12 00:16:27.931565 0 \N 8106 \N 1412 \N 3389 1.0 1 2020-11-12 00:42:43.540851 2020-11-12 00:42:43.540851 0 \N 8107 \N 1485 \N 3389 1.0 1 2020-11-12 00:42:43.565763 2020-11-12 00:42:43.565763 0 \N 8108 \N 1489 \N 3389 1.0 1 2020-11-12 00:42:43.588955 2020-11-12 00:42:43.588955 0 \N 8109 \N 1530 472 \N 2.0 0 2020-11-12 00:46:28.504337 2020-11-12 00:46:28.504337 1 \N 8110 \N 367 \N 3390 1.0 1 2020-11-12 01:02:27.290975 2020-11-12 01:02:27.290975 0 \N 8111 \N 959 \N 3390 1.0 1 2020-11-12 01:02:27.314559 2020-11-12 01:02:27.314559 0 \N 8112 \N 1475 \N 3391 1.0 1 2020-11-12 01:14:25.68598 2020-11-12 01:14:25.68598 0 \N 8113 \N 1531 473 \N 2.0 0 2020-11-12 01:17:36.735685 2020-11-12 01:17:36.735685 1 \N 8114 \N 1532 473 \N 1.0 0 2020-11-12 01:17:36.764909 2020-11-12 01:17:36.764909 1 \N 8115 \N 1368 \N 3392 1.0 1 2020-11-12 01:42:21.706749 2020-11-12 01:42:21.706749 0 \N 8116 \N 1371 \N 3392 1.0 1 2020-11-12 01:42:21.733271 2020-11-12 01:42:21.733271 0 \N 8117 \N 1475 \N 3393 1.0 1 2020-11-12 01:48:10.262024 2020-11-12 01:48:10.262024 0 \N 8118 \N 1372 \N 3393 1.0 1 2020-11-12 01:48:10.283915 2020-11-12 01:48:10.283915 0 \N 8119 \N 1533 474 \N 1.0 0 2020-11-12 01:58:31.982223 2020-11-12 01:58:31.982223 1 \N 8120 \N 1533 \N 3394 1.0 1 2020-11-12 01:58:51.444906 2020-11-12 01:58:51.444906 0 \N 8121 \N 1385 \N 3395 1.0 1 2020-11-12 19:43:00.326493 2020-11-12 19:43:00.326493 0 \N 8122 \N 1126 \N 3396 1.0 1 2020-11-12 19:57:42.585106 2020-11-12 19:57:42.585106 0 \N 8123 \N 1418 \N 3397 1.0 1 2020-11-12 20:01:52.767283 2020-11-12 20:01:52.767283 0 \N 8124 \N 793 \N 3398 1.0 1 2020-11-12 20:22:36.423838 2020-11-12 20:22:36.423838 0 \N 8125 \N 907 \N 3399 1.0 1 2020-11-12 20:25:56.838785 2020-11-12 20:25:56.838785 0 \N 8126 \N 1469 \N 3400 1.0 1 2020-11-12 20:31:40.140644 2020-11-12 20:31:40.140644 0 \N 8127 \N 907 \N 3400 1.0 1 2020-11-12 20:31:40.167543 2020-11-12 20:31:40.167543 0 \N 8128 \N 1126 \N 3401 1.0 1 2020-11-12 22:17:19.934897 2020-11-12 22:17:19.934897 0 \N 8129 \N 1372 \N 3402 1.0 1 2020-11-12 23:03:48.318506 2020-11-12 23:03:48.318506 0 \N 8130 \N 1371 \N 3403 1.0 1 2020-11-12 23:19:30.719477 2020-11-12 23:19:30.719477 0 \N 8131 \N 1180 \N 3404 1.0 1 2020-11-12 23:26:28.490512 2020-11-12 23:26:28.490512 0 \N 8132 \N 1475 \N 3405 1.0 1 2020-11-12 23:50:16.132556 2020-11-12 23:50:16.132556 0 \N 8133 \N 1475 \N 3405 1.0 0 2020-11-12 23:51:45.264914 2020-11-12 23:51:45.264914 9 \N 8134 \N 1475 \N 3406 1.0 1 2020-11-12 23:52:37.452965 2020-11-12 23:52:37.452965 0 \N 8135 \N 1372 \N 3406 1.0 1 2020-11-12 23:52:37.479092 2020-11-12 23:52:37.479092 0 \N 8136 \N 1508 \N 3407 1.0 1 2020-11-12 23:54:01.264505 2020-11-12 23:54:01.264505 0 \N 8137 \N 1508 \N 3408 1.0 1 2020-11-12 23:55:16.152694 2020-11-12 23:55:16.152694 0 \N 8138 \N 1490 \N 3409 2.0 1 2020-11-13 19:46:30.60156 2020-11-13 19:46:30.60156 0 \N 8139 \N 1366 \N 3410 1.0 1 2020-11-13 19:46:38.598546 2020-11-13 19:46:38.598546 0 \N 8140 \N 1490 \N 3409 2.0 0 2020-11-13 19:46:54.903054 2020-11-13 19:46:54.903054 3 \N 8141 \N 1490 \N 3411 2.0 1 2020-11-13 19:47:10.428481 2020-11-13 19:47:10.428481 0 \N 8142 \N 1522 \N 3412 1.0 1 2020-11-13 20:12:09.572182 2020-11-13 20:12:09.572182 0 \N 8143 \N 1513 \N 3413 1.0 1 2020-11-13 20:28:46.270486 2020-11-13 20:28:46.270486 0 \N 8144 \N 1513 \N 3413 1.0 0 2020-11-13 20:28:51.17181 2020-11-13 20:28:51.17181 3 \N 8145 \N 1513 \N 3414 1.0 1 2020-11-13 20:29:05.407613 2020-11-13 20:29:05.407613 0 \N 8146 \N 1520 \N 3415 1.0 1 2020-11-13 20:43:13.727443 2020-11-13 20:43:13.727443 0 \N 8147 \N 1495 \N 3416 1.0 1 2020-11-13 20:54:57.253349 2020-11-13 20:54:57.253349 0 \N 8148 \N 1520 \N 3417 1.0 1 2020-11-14 00:33:34.048984 2020-11-14 00:33:34.048984 0 \N 8149 \N 1294 \N \N 4.0 0 2020-11-14 01:44:07.506157 2020-11-14 01:44:07.506157 7 730 8150 \N 1490 \N \N 1.0 0 2020-11-14 01:44:07.52486 2020-11-14 01:44:07.52486 7 730 8151 \N 1518 \N \N 1.0 0 2020-11-14 01:44:15.554075 2020-11-14 01:44:15.554075 7 731 8152 \N 1534 475 \N 1.0 0 2020-11-14 01:54:25.179806 2020-11-14 01:54:25.179806 1 \N 8153 \N 1199 476 \N 1.0 0 2020-11-14 01:55:04.600955 2020-11-14 01:55:04.600955 1 \N 8154 \N 1199 \N 3418 1.0 1 2020-11-14 01:55:41.051367 2020-11-14 01:55:41.051367 0 \N 8155 \N 1475 \N 3419 1.0 1 2020-11-14 01:57:45.445203 2020-11-14 01:57:45.445203 0 \N 8156 \N 1372 \N 3419 1.0 1 2020-11-14 01:57:45.47085 2020-11-14 01:57:45.47085 0 \N 8157 \N 1535 477 \N 1.0 0 2020-11-14 18:56:47.345399 2020-11-14 18:56:47.345399 1 \N 8158 \N 1536 477 \N 1.0 0 2020-11-14 18:56:47.371463 2020-11-14 18:56:47.371463 1 \N 8159 \N 1537 477 \N 1.0 0 2020-11-14 18:56:47.396724 2020-11-14 18:56:47.396724 1 \N 8160 \N 1538 477 \N 1.0 0 2020-11-14 18:56:47.424016 2020-11-14 18:56:47.424016 1 \N 8161 \N 1539 477 \N 1.0 0 2020-11-14 18:56:47.449192 2020-11-14 18:56:47.449192 1 \N 8162 \N 1540 477 \N 1.0 0 2020-11-14 18:56:47.471382 2020-11-14 18:56:47.471382 1 \N 8163 \N 1541 477 \N 1.0 0 2020-11-14 18:56:47.493158 2020-11-14 18:56:47.493158 1 \N 8164 \N 1542 477 \N 1.0 0 2020-11-14 18:56:47.517506 2020-11-14 18:56:47.517506 1 \N 8165 \N 1543 477 \N 1.0 0 2020-11-14 18:56:47.540178 2020-11-14 18:56:47.540178 1 \N 8166 \N 1209 \N 3420 2.0 1 2020-11-14 19:43:41.124878 2020-11-14 19:43:41.124878 0 \N 8167 \N 1395 \N 3420 1.0 1 2020-11-14 19:43:41.153973 2020-11-14 19:43:41.153973 0 \N 8168 \N 1475 478 \N 18.0 0 2020-11-14 19:50:50.953286 2020-11-14 19:50:50.953286 1 \N 8169 \N 1371 478 \N 12.0 0 2020-11-14 19:50:50.982502 2020-11-14 19:50:50.982502 1 \N 8170 \N 1357 478 \N 5.0 0 2020-11-14 19:50:51.017436 2020-11-14 19:50:51.017436 1 \N 8171 \N 1538 479 \N 5.0 0 2020-11-14 20:18:38.103483 2020-11-14 20:18:38.103483 1 \N 8172 \N 590 \N 3421 1.0 1 2020-11-14 21:13:51.407592 2020-11-14 21:13:51.407592 0 \N 8173 \N 1399 \N 3422 1.0 1 2020-11-14 21:14:48.793611 2020-11-14 21:14:48.793611 0 \N 8174 \N 1514 \N 3423 1.0 1 2020-11-14 21:55:34.288518 2020-11-14 21:55:34.288518 0 \N 8175 \N 1142 \N 3424 1.0 1 2020-11-14 22:50:10.070441 2020-11-14 22:50:10.070441 0 \N 8176 \N 901 \N \N 1.0 0 2020-11-14 23:40:09.227128 2020-11-14 23:40:09.227128 7 733 8177 \N 1526 \N 3425 1.0 1 2020-11-14 23:45:02.959659 2020-11-14 23:45:02.959659 0 \N 8178 \N 1504 \N 3425 1.0 1 2020-11-14 23:45:02.983786 2020-11-14 23:45:02.983786 0 \N 8179 \N 1481 \N 3426 1.0 1 2020-11-15 00:02:53.889592 2020-11-15 00:02:53.889592 0 \N 8180 \N 1510 \N 3427 1.0 1 2020-11-15 00:25:37.125683 2020-11-15 00:25:37.125683 0 \N 8181 \N 1509 \N 3427 1.0 1 2020-11-15 00:25:37.153785 2020-11-15 00:25:37.153785 0 \N 8182 \N 1538 \N 3427 1.0 1 2020-11-15 00:25:37.186846 2020-11-15 00:25:37.186846 0 \N 8183 \N 202 \N 3428 1.0 1 2020-11-15 00:33:07.390268 2020-11-15 00:33:07.390268 0 \N 8184 \N 1165 \N 3429 1.0 1 2020-11-15 01:48:32.795699 2020-11-15 01:48:32.795699 0 \N 8185 \N 1371 \N 3430 1.0 1 2020-11-15 01:50:54.28228 2020-11-15 01:50:54.28228 0 \N 8186 \N 1372 \N 3430 1.0 1 2020-11-15 01:50:54.312683 2020-11-15 01:50:54.312683 0 \N 8187 \N 1475 \N 3431 1.0 1 2020-11-15 02:12:25.88764 2020-11-15 02:12:25.88764 0 \N 8188 \N 1371 \N 3432 1.0 1 2020-11-15 19:28:46.250198 2020-11-15 19:28:46.250198 0 \N 8189 \N 1475 \N 3433 1.0 1 2020-11-15 20:35:46.691518 2020-11-15 20:35:46.691518 0 \N 8190 \N 1513 \N \N 3.0 0 2020-11-16 20:46:59.403739 2020-11-16 20:46:59.403739 7 734 8191 \N 1516 \N 3434 1.0 1 2020-11-16 20:52:16.8605 2020-11-16 20:52:16.8605 0 \N 8192 \N 1488 \N 3434 1.0 1 2020-11-16 20:52:16.890618 2020-11-16 20:52:16.890618 0 \N 8193 \N 1453 \N 3434 1.0 1 2020-11-16 20:52:16.915856 2020-11-16 20:52:16.915856 0 \N 8194 \N 1540 480 \N 3.0 0 2020-11-16 20:55:32.030223 2020-11-16 20:55:32.030223 1 \N 8195 \N 1541 480 \N 3.0 0 2020-11-16 20:55:32.058492 2020-11-16 20:55:32.058492 1 \N 8196 \N 1534 481 \N 3.0 0 2020-11-16 20:59:41.292125 2020-11-16 20:59:41.292125 1 \N 8197 \N 1535 481 \N 3.0 0 2020-11-16 20:59:41.322017 2020-11-16 20:59:41.322017 1 \N 8198 \N 1538 481 \N 6.0 0 2020-11-16 20:59:41.352896 2020-11-16 20:59:41.352896 1 \N 8199 \N 1537 481 \N 3.0 0 2020-11-16 20:59:41.390406 2020-11-16 20:59:41.390406 1 \N 8200 \N 1539 481 \N 3.0 0 2020-11-16 20:59:41.4297 2020-11-16 20:59:41.4297 1 \N 8201 \N 1541 \N 3435 1.0 1 2020-11-16 21:57:37.994073 2020-11-16 21:57:37.994073 0 \N 8202 \N 1372 \N 3436 1.0 1 2020-11-16 21:59:06.453751 2020-11-16 21:59:06.453751 0 \N 8203 \N 1374 \N 3437 1.0 1 2020-11-16 22:01:46.24402 2020-11-16 22:01:46.24402 0 \N 8204 \N 1518 \N 3438 1.0 1 2020-11-16 22:06:24.147168 2020-11-16 22:06:24.147168 0 \N 8205 \N 1528 \N 3438 1.0 1 2020-11-16 22:06:24.171693 2020-11-16 22:06:24.171693 0 \N 8206 \N 1372 \N 3438 1.0 1 2020-11-16 22:06:24.194409 2020-11-16 22:06:24.194409 0 \N 8207 \N 1371 \N 3439 3.0 1 2020-11-16 22:53:36.894476 2020-11-16 22:53:36.894476 0 \N 8208 \N 1475 \N 3440 1.0 1 2020-11-16 23:50:32.569653 2020-11-16 23:50:32.569653 0 \N 8209 \N 1444 \N 3441 1.0 1 2020-11-16 23:56:02.339417 2020-11-16 23:56:02.339417 0 \N 8210 \N 1521 \N 3441 1.0 1 2020-11-16 23:56:02.373923 2020-11-16 23:56:02.373923 0 \N 8211 \N 1215 \N 3442 1.0 1 2020-11-17 00:04:42.871562 2020-11-17 00:04:42.871562 0 \N 8212 \N 1371 \N 3443 1.0 1 2020-11-17 00:15:23.40065 2020-11-17 00:15:23.40065 0 \N 8213 \N 1371 \N 3444 1.0 1 2020-11-17 18:08:15.691035 2020-11-17 18:08:15.691035 0 \N 8214 \N 1500 \N 3445 1.0 1 2020-11-17 19:12:55.113834 2020-11-17 19:12:55.113834 0 \N 8215 \N 672 \N 3446 1.0 1 2020-11-17 19:16:59.578339 2020-11-17 19:16:59.578339 0 \N 8216 \N 1371 \N 3447 1.0 1 2020-11-17 20:30:49.026288 2020-11-17 20:30:49.026288 0 \N 8217 \N 41 \N 3448 1.0 1 2020-11-17 20:43:19.751729 2020-11-17 20:43:19.751729 0 \N 8218 \N 1374 \N 3449 1.0 1 2020-11-17 21:41:47.998911 2020-11-17 21:41:47.998911 0 \N 8219 \N 1500 \N 3449 1.0 1 2020-11-17 21:41:48.022661 2020-11-17 21:41:48.022661 0 \N 8220 \N 1521 \N 3450 1.0 1 2020-11-17 22:16:12.709704 2020-11-17 22:16:12.709704 0 \N 8221 \N 1371 \N 3450 1.0 1 2020-11-17 22:16:12.735364 2020-11-17 22:16:12.735364 0 \N 8222 \N 1371 \N 3451 1.0 1 2020-11-17 22:22:30.257982 2020-11-17 22:22:30.257982 0 \N 8223 \N 1490 \N 3452 1.0 1 2020-11-18 00:32:49.111005 2020-11-18 00:32:49.111005 0 \N 8224 \N 1371 \N 3453 1.0 1 2020-11-18 01:46:25.749115 2020-11-18 01:46:25.749115 0 \N 8225 \N 1180 \N 3454 1.0 1 2020-11-18 17:06:36.782485 2020-11-18 17:06:36.782485 0 \N 8226 \N 1388 \N 3455 1.0 1 2020-11-18 17:48:28.637576 2020-11-18 17:48:28.637576 0 \N 8227 \N 1388 \N 3455 1.0 0 2020-11-18 18:17:02.262386 2020-11-18 18:17:02.262386 3 \N 8228 \N 1388 \N 3456 1.0 1 2020-11-18 18:17:22.529234 2020-11-18 18:17:22.529234 0 \N 8229 \N 369 \N 3457 1.0 1 2020-11-18 18:37:50.260671 2020-11-18 18:37:50.260671 0 \N 8230 \N 1475 \N 3458 1.0 1 2020-11-18 21:03:26.197229 2020-11-18 21:03:26.197229 0 \N 8231 \N 1544 482 \N 2.0 0 2020-11-19 00:29:09.46204 2020-11-19 00:29:09.46204 1 \N 8232 \N 1544 \N 3459 1.0 1 2020-11-19 00:29:22.594119 2020-11-19 00:29:22.594119 0 \N 8233 \N 1544 \N 3459 1.0 0 2020-11-19 00:29:59.612341 2020-11-19 00:29:59.612341 3 \N 8234 \N 1544 \N 3460 1.0 1 2020-11-19 00:30:41.65252 2020-11-19 00:30:41.65252 0 \N 8235 \N 1517 \N 3461 1.0 1 2020-11-19 00:48:01.475572 2020-11-19 00:48:01.475572 0 \N 8236 \N 1545 483 \N 2.0 0 2020-11-19 01:12:27.121533 2020-11-19 01:12:27.121533 1 \N 8237 \N 1546 483 \N 3.0 0 2020-11-19 01:12:27.156674 2020-11-19 01:12:27.156674 1 \N 8238 \N 1181 483 \N 1.0 0 2020-11-19 01:12:27.189246 2020-11-19 01:12:27.189246 1 \N 8239 \N 1372 483 \N 8.0 0 2020-11-19 01:12:27.221724 2020-11-19 01:12:27.221724 1 \N 8240 \N 1471 \N 3462 1.0 1 2020-11-19 01:15:46.561623 2020-11-19 01:15:46.561623 0 \N 8241 \N 864 \N 3462 1.0 1 2020-11-19 01:15:46.589852 2020-11-19 01:15:46.589852 0 \N 8242 \N 715 \N 3463 1.0 1 2020-11-19 18:33:32.033743 2020-11-19 18:33:32.033743 0 \N 8243 \N 1379 \N 3464 1.0 1 2020-11-19 18:39:17.322053 2020-11-19 18:39:17.322053 0 \N 8244 \N 1200 \N 3464 1.0 1 2020-11-19 18:39:17.347356 2020-11-19 18:39:17.347356 0 \N 8245 \N 1181 \N 3465 1.0 1 2020-11-19 19:30:17.395338 2020-11-19 19:30:17.395338 0 \N 8246 \N 1181 \N 3465 1.0 0 2020-11-19 19:31:54.17875 2020-11-19 19:31:54.17875 3 \N 8247 \N 1538 \N 3466 1.0 1 2020-11-19 20:20:46.616127 2020-11-19 20:20:46.616127 0 \N 8248 \N 1525 \N 3466 1.0 1 2020-11-19 20:20:46.659943 2020-11-19 20:20:46.659943 0 \N 8249 \N 1332 \N 3466 2.0 1 2020-11-19 20:20:46.695344 2020-11-19 20:20:46.695344 0 \N 8250 \N 1493 \N 3466 1.0 1 2020-11-19 20:20:46.72004 2020-11-19 20:20:46.72004 0 \N 8251 \N 1443 \N 3467 1.0 1 2020-11-19 20:23:16.195513 2020-11-19 20:23:16.195513 0 \N 8252 \N 1500 \N 3468 1.0 1 2020-11-19 20:40:48.136655 2020-11-19 20:40:48.136655 0 \N 8253 \N 1122 \N 3469 1.0 1 2020-11-19 21:17:51.314802 2020-11-19 21:17:51.314802 0 \N 8254 \N 1159 \N 3469 1.0 1 2020-11-19 21:17:51.346331 2020-11-19 21:17:51.346331 0 \N 8255 \N 1368 \N 3470 1.0 1 2020-11-19 21:23:15.335974 2020-11-19 21:23:15.335974 0 \N 8256 \N 1475 \N 3471 1.0 1 2020-11-19 21:32:06.419055 2020-11-19 21:32:06.419055 0 \N 8257 \N 1371 \N 3472 1.0 1 2020-11-19 21:37:15.074136 2020-11-19 21:37:15.074136 0 \N 8258 \N 1542 \N 3473 1.0 1 2020-11-19 23:42:23.267912 2020-11-19 23:42:23.267912 0 \N 8259 \N 1542 \N 3473 1.0 0 2020-11-19 23:43:00.181239 2020-11-19 23:43:00.181239 3 \N 8260 \N 1542 \N 3474 1.0 1 2020-11-19 23:45:27.858133 2020-11-19 23:45:27.858133 0 \N 8261 \N 367 \N 3474 2.0 1 2020-11-19 23:45:27.881241 2020-11-19 23:45:27.881241 0 \N 8262 \N 1372 \N \N 2.0 0 2020-11-19 23:48:59.886556 2020-11-19 23:48:59.886556 7 735 8263 \N 956 \N 3475 1.0 1 2020-11-19 23:53:21.367382 2020-11-19 23:53:21.367382 0 \N 8264 \N 1372 \N 3475 1.0 1 2020-11-19 23:53:21.39636 2020-11-19 23:53:21.39636 0 \N 8265 \N 1475 \N 3476 1.0 1 2020-11-20 02:07:16.921322 2020-11-20 02:07:16.921322 0 \N 8266 \N 1372 \N 3476 1.0 1 2020-11-20 02:07:16.944885 2020-11-20 02:07:16.944885 0 \N 8267 \N 1371 \N 3477 1.0 1 2020-11-20 18:06:55.030755 2020-11-20 18:06:55.030755 0 \N 8268 \N 1371 \N 3478 1.0 1 2020-11-20 18:14:33.665592 2020-11-20 18:14:33.665592 0 \N 8269 \N 1371 \N 3479 1.0 1 2020-11-20 19:13:11.89465 2020-11-20 19:13:11.89465 0 \N 8270 \N 1371 \N 3480 1.0 1 2020-11-20 21:49:23.430261 2020-11-20 21:49:23.430261 0 \N 8271 \N 1371 \N 3480 1.0 0 2020-11-20 21:52:10.211994 2020-11-20 21:52:10.211994 3 \N 8272 \N 1371 \N 3481 1.0 1 2020-11-20 21:52:57.455225 2020-11-20 21:52:57.455225 0 \N 8273 \N 1372 \N 3482 1.0 1 2020-11-21 00:26:59.654645 2020-11-21 00:26:59.654645 0 \N 8274 \N 1371 \N 3483 1.0 1 2020-11-21 00:31:19.49503 2020-11-21 00:31:19.49503 0 \N 8275 \N 1371 \N 3484 1.0 1 2020-11-21 02:03:20.831706 2020-11-21 02:03:20.831706 0 \N 8276 \N 1371 \N 3485 1.0 1 2020-11-21 18:46:49.614873 2020-11-21 18:46:49.614873 0 \N 8277 \N 1514 \N 3485 1.0 1 2020-11-21 18:46:49.665297 2020-11-21 18:46:49.665297 0 \N 8278 \N 1372 484 \N 6.0 0 2020-11-21 19:07:56.663462 2020-11-21 19:07:56.663462 1 \N 8279 \N 1372 \N 3486 1.0 1 2020-11-21 19:23:11.408095 2020-11-21 19:23:11.408095 0 \N 8280 \N 1529 \N 3487 1.0 1 2020-11-21 20:56:33.616876 2020-11-21 20:56:33.616876 0 \N 8281 \N 1538 \N 3488 1.0 1 2020-11-21 21:09:45.402333 2020-11-21 21:09:45.402333 0 \N 8282 \N 1399 \N 3488 1.0 1 2020-11-21 21:09:45.424616 2020-11-21 21:09:45.424616 0 \N 8283 \N 1371 \N 3489 1.0 1 2020-11-21 21:53:00.382681 2020-11-21 21:53:00.382681 0 \N 8284 \N 1492 \N 3490 1.0 1 2020-11-22 17:41:20.726886 2020-11-22 17:41:20.726886 0 \N 8285 \N 1294 \N 3491 1.0 1 2020-11-22 20:29:49.078652 2020-11-22 20:29:49.078652 0 \N 8286 \N 1495 \N 3492 1.0 1 2020-11-23 18:49:47.494304 2020-11-23 18:49:47.494304 0 \N 8287 \N 1495 \N 3492 1.0 0 2020-11-23 18:49:53.131381 2020-11-23 18:49:53.131381 3 \N 8288 \N 1495 \N 3493 1.0 1 2020-11-23 18:50:55.994494 2020-11-23 18:50:55.994494 0 \N 8289 \N 1475 \N \N 5.0 0 2020-11-23 19:02:07.376842 2020-11-23 19:02:07.376842 7 736 8290 \N 1375 485 \N 6.0 0 2020-11-23 19:16:18.043276 2020-11-23 19:16:18.043276 1 \N 8291 \N 1375 \N 3494 1.0 1 2020-11-23 19:16:29.823408 2020-11-23 19:16:29.823408 0 \N 8292 \N 1375 \N 3494 1.0 0 2020-11-23 19:22:06.502222 2020-11-23 19:22:06.502222 3 \N 8293 \N 1357 \N 3495 1.0 1 2020-11-23 19:23:53.281927 2020-11-23 19:23:53.281927 0 \N 8294 \N 902 \N \N 3.0 0 2020-11-23 19:31:25.450279 2020-11-23 19:31:25.450279 7 737 8295 \N 902 \N 3496 1.0 1 2020-11-23 19:34:16.845861 2020-11-23 19:34:16.845861 0 \N 8296 \N 1538 \N 3496 1.0 1 2020-11-23 19:34:16.868431 2020-11-23 19:34:16.868431 0 \N 8297 \N 1465 \N 3497 1.0 1 2020-11-23 20:12:24.40527 2020-11-23 20:12:24.40527 0 \N 8298 \N 1380 \N 3498 1.0 1 2020-11-23 20:48:11.673026 2020-11-23 20:48:11.673026 0 \N 8299 \N 1371 \N 3499 1.0 1 2020-11-23 21:02:54.954123 2020-11-23 21:02:54.954123 0 \N 8300 \N 1475 \N 3500 1.0 1 2020-11-23 21:17:16.61334 2020-11-23 21:17:16.61334 0 \N 8301 \N 1464 \N 3501 1.0 1 2020-11-23 23:46:10.779583 2020-11-23 23:46:10.779583 0 \N 8302 \N 1371 \N 3502 1.0 1 2020-11-24 01:03:00.404461 2020-11-24 01:03:00.404461 0 \N 8303 \N 1499 \N 3503 1.0 1 2020-11-24 01:14:53.218211 2020-11-24 01:14:53.218211 0 \N 8304 \N 1546 \N 3504 1.0 1 2020-11-24 02:18:43.600469 2020-11-24 02:18:43.600469 0 \N 8305 \N 1494 \N 3505 1.0 1 2020-11-24 21:24:16.042624 2020-11-24 21:24:16.042624 0 \N 8306 \N 1475 \N 3506 1.0 1 2020-11-24 23:42:24.076263 2020-11-24 23:42:24.076263 0 \N 8307 \N 1209 \N 3507 1.0 1 2020-11-25 00:20:38.357374 2020-11-25 00:20:38.357374 0 \N 8308 \N 975 \N 3508 1.0 1 2020-11-25 00:27:22.446767 2020-11-25 00:27:22.446767 0 \N 8309 \N 1126 \N 3509 1.0 1 2020-11-25 01:05:26.722755 2020-11-25 01:05:26.722755 0 \N 8310 \N 1371 \N 3510 1.0 1 2020-11-25 01:12:32.493783 2020-11-25 01:12:32.493783 0 \N 8311 \N 1472 \N 3511 1.0 1 2020-11-25 01:22:49.128265 2020-11-25 01:22:49.128265 0 \N 8312 \N 388 \N 3512 1.0 1 2020-11-25 01:36:15.080231 2020-11-25 01:36:15.080231 0 \N 8313 \N 1506 \N 3513 1.0 1 2020-11-25 19:10:57.909198 2020-11-25 19:10:57.909198 0 \N 8314 \N 1490 \N 3513 1.0 1 2020-11-25 19:10:57.943973 2020-11-25 19:10:57.943973 0 \N 8315 \N 733 \N \N 1.0 0 2020-11-25 20:16:37.181462 2020-11-25 20:16:37.181462 7 740 8316 \N 946 \N \N 1.0 0 2020-11-25 20:16:37.199502 2020-11-25 20:16:37.199502 7 740 8317 \N 879 \N \N 1.0 0 2020-11-25 20:16:37.221328 2020-11-25 20:16:37.221328 7 740 8318 \N 877 \N \N 1.0 0 2020-11-25 20:16:37.238387 2020-11-25 20:16:37.238387 7 740 8319 \N 871 \N \N 1.0 0 2020-11-25 20:16:37.25598 2020-11-25 20:16:37.25598 7 740 8320 \N 757 \N \N 1.0 0 2020-11-25 20:16:37.274717 2020-11-25 20:16:37.274717 7 740 8321 \N 676 \N \N 2.0 0 2020-11-25 20:16:50.49067 2020-11-25 20:16:50.49067 7 739 8322 \N 957 \N \N 4.0 0 2020-11-25 20:16:50.506881 2020-11-25 20:16:50.506881 7 739 8323 \N 778 \N \N 2.0 0 2020-11-25 20:16:50.523039 2020-11-25 20:16:50.523039 7 739 8324 \N 646 \N \N 2.0 0 2020-11-25 20:16:50.54162 2020-11-25 20:16:50.54162 7 739 8325 \N 774 \N \N 3.0 0 2020-11-25 20:16:50.563173 2020-11-25 20:16:50.563173 7 739 8326 \N 779 \N \N 4.0 0 2020-11-25 20:16:50.585282 2020-11-25 20:16:50.585282 7 739 8327 \N 737 \N \N 4.0 0 2020-11-25 20:16:50.602976 2020-11-25 20:16:50.602976 7 739 8328 \N 748 \N \N 1.0 0 2020-11-25 20:16:50.620687 2020-11-25 20:16:50.620687 7 739 8329 \N 777 \N \N 1.0 0 2020-11-25 20:16:50.636981 2020-11-25 20:16:50.636981 7 739 8330 \N 743 \N \N 1.0 0 2020-11-25 20:16:50.654848 2020-11-25 20:16:50.654848 7 739 8331 \N 863 \N \N 1.0 0 2020-11-25 20:16:50.67254 2020-11-25 20:16:50.67254 7 739 8332 \N 742 \N \N 1.0 0 2020-11-25 20:16:50.689241 2020-11-25 20:16:50.689241 7 739 8333 \N 944 \N \N 1.0 0 2020-11-25 20:16:50.70727 2020-11-25 20:16:50.70727 7 739 8334 \N 797 \N \N 1.0 0 2020-11-25 20:16:50.726208 2020-11-25 20:16:50.726208 7 739 8335 \N 860 \N \N 1.0 0 2020-11-25 20:21:05.730396 2020-11-25 20:21:05.730396 7 738 8336 \N 895 \N \N 3.0 0 2020-11-25 20:21:05.749468 2020-11-25 20:21:05.749468 7 738 8337 \N 642 \N \N 3.0 0 2020-11-25 20:21:05.767749 2020-11-25 20:21:05.767749 7 738 8338 \N 767 \N \N 2.0 0 2020-11-25 20:21:05.791372 2020-11-25 20:21:05.791372 7 738 8339 \N 896 \N \N 6.0 0 2020-11-25 20:21:05.812031 2020-11-25 20:21:05.812031 7 738 8340 \N 897 \N \N 7.0 0 2020-11-25 20:21:05.829595 2020-11-25 20:21:05.829595 7 738 8341 \N 783 \N \N 2.0 0 2020-11-25 20:21:05.850788 2020-11-25 20:21:05.850788 7 738 8342 \N 861 \N \N 1.0 0 2020-11-25 20:21:05.873 2020-11-25 20:21:05.873 7 738 8343 \N 891 \N \N 2.0 0 2020-11-25 20:21:18.682498 2020-11-25 20:21:18.682498 7 732 8344 \N 893 \N \N 2.0 0 2020-11-25 20:21:18.701814 2020-11-25 20:21:18.701814 7 732 8345 \N 945 \N \N 5.0 0 2020-11-25 20:21:18.72146 2020-11-25 20:21:18.72146 7 732 8346 \N 856 \N \N 1.0 0 2020-11-25 20:21:18.740999 2020-11-25 20:21:18.740999 7 732 8347 \N 900 \N \N 1.0 0 2020-11-25 20:21:18.76234 2020-11-25 20:21:18.76234 7 732 8348 \N 765 \N \N 3.0 0 2020-11-25 20:21:18.785298 2020-11-25 20:21:18.785298 7 732 8349 \N 888 \N \N 2.0 0 2020-11-25 20:21:18.805368 2020-11-25 20:21:18.805368 7 732 8350 \N 901 \N \N 2.0 0 2020-11-25 20:21:18.823611 2020-11-25 20:21:18.823611 7 732 8351 \N 1507 \N 3514 1.0 1 2020-11-26 00:09:15.767956 2020-11-26 00:09:15.767956 0 \N 8352 \N 1348 \N 2990 1.0 0 2020-11-26 18:31:14.057228 2020-11-26 18:31:14.057228 8 \N 8353 \N 258 \N 2551 1.0 0 2020-11-26 18:44:24.044312 2020-11-26 18:44:24.044312 8 \N 8354 \N 767 \N 3515 1.0 1 2020-11-26 19:09:35.662696 2020-11-26 19:09:35.662696 0 \N 8355 \N 1547 486 \N 5.0 0 2020-11-26 19:53:49.038638 2020-11-26 19:53:49.038638 1 \N 8356 \N 1510 \N 3516 1.0 1 2020-11-26 20:01:37.149025 2020-11-26 20:01:37.149025 0 \N 8357 \N 1371 \N 3517 1.0 1 2020-11-26 20:15:11.275284 2020-11-26 20:15:11.275284 0 \N 8358 \N 1371 \N 3518 1.0 1 2020-11-26 20:20:07.726058 2020-11-26 20:20:07.726058 0 \N 8359 \N 1372 487 \N 3.0 0 2020-11-26 20:23:39.529314 2020-11-26 20:23:39.529314 1 \N 8360 \N 1547 487 \N 3.0 0 2020-11-26 20:23:39.558428 2020-11-26 20:23:39.558428 1 \N 8361 \N 1372 488 \N 4.0 0 2020-11-26 20:23:59.739101 2020-11-26 20:23:59.739101 1 \N 8362 \N 1485 \N 3519 1.0 1 2020-11-26 20:26:18.999964 2020-11-26 20:26:18.999964 0 \N 8363 \N 1229 \N 3520 1.0 1 2020-11-26 21:57:51.522524 2020-11-26 21:57:51.522524 0 \N 8364 \N 1461 \N 3521 1.0 1 2020-11-26 21:58:09.848516 2020-11-26 21:58:09.848516 0 \N 8365 \N 1329 \N 3522 1.0 1 2020-11-26 22:58:24.109018 2020-11-26 22:58:24.109018 0 \N 8366 \N 1511 \N 3523 1.0 1 2020-11-27 00:05:17.534641 2020-11-27 00:05:17.534641 0 \N 8367 \N 1511 \N 3523 1.0 0 2020-11-27 00:05:24.567131 2020-11-27 00:05:24.567131 3 \N 8368 \N 1542 489 \N 5.0 0 2020-11-27 00:07:46.392227 2020-11-27 00:07:46.392227 1 \N 8369 \N 1542 \N 3524 1.0 1 2020-11-27 00:08:29.898947 2020-11-27 00:08:29.898947 0 \N 8370 \N 1511 \N 3524 1.0 1 2020-11-27 00:08:29.92623 2020-11-27 00:08:29.92623 0 \N 8371 \N 790 \N \N 4.0 0 2020-11-27 00:15:56.137422 2020-11-27 00:15:56.137422 7 741 8372 \N 790 \N 3525 1.0 1 2020-11-27 00:17:33.211127 2020-11-27 00:17:33.211127 0 \N 8373 \N 1511 \N 3525 1.0 1 2020-11-27 00:17:33.2352 2020-11-27 00:17:33.2352 0 \N 8374 \N 1483 \N 3526 1.0 1 2020-11-27 00:24:38.214467 2020-11-27 00:24:38.214467 0 \N 8375 \N 807 490 \N 2.0 0 2020-11-27 00:46:12.420109 2020-11-27 00:46:12.420109 1 \N 8376 \N 786 490 \N 1.0 0 2020-11-27 00:46:12.445387 2020-11-27 00:46:12.445387 1 \N 8377 \N 788 490 \N 4.0 0 2020-11-27 00:46:12.469733 2020-11-27 00:46:12.469733 1 \N 8378 \N 789 490 \N 4.0 0 2020-11-27 00:46:12.493865 2020-11-27 00:46:12.493865 1 \N 8379 \N 791 490 \N 3.0 0 2020-11-27 00:46:12.51728 2020-11-27 00:46:12.51728 1 \N 8380 \N 788 \N 3527 1.0 1 2020-11-27 00:46:31.811811 2020-11-27 00:46:31.811811 0 \N 8381 \N 1464 \N 3528 1.0 1 2020-11-27 01:06:04.239791 2020-11-27 01:06:04.239791 0 \N 8382 \N 1371 \N 3529 1.0 1 2020-11-27 01:15:01.657191 2020-11-27 01:15:01.657191 0 \N 8383 \N 1371 491 \N 3.0 0 2020-11-27 01:20:46.226059 2020-11-27 01:20:46.226059 1 \N 8384 \N 1371 \N 3530 1.0 1 2020-11-27 01:32:45.81007 2020-11-27 01:32:45.81007 0 \N 8385 \N 1349 \N 3530 1.0 1 2020-11-27 01:32:45.85613 2020-11-27 01:32:45.85613 0 \N 8386 \N 1541 \N 3531 1.0 1 2020-11-27 02:05:10.164227 2020-11-27 02:05:10.164227 0 \N 8387 \N 1372 \N 3532 1.0 1 2020-11-27 21:26:54.303328 2020-11-27 21:26:54.303328 0 \N 8388 \N 1366 \N 3533 2.0 1 2020-11-27 22:51:19.075321 2020-11-27 22:51:19.075321 0 \N 8389 \N 1366 \N 3533 2.0 0 2020-11-27 22:51:54.248137 2020-11-27 22:51:54.248137 3 \N 8390 \N 1366 \N 3534 1.0 1 2020-11-27 22:52:10.766873 2020-11-27 22:52:10.766873 0 \N 8391 \N 1371 \N 3535 1.0 1 2020-11-27 23:39:04.657498 2020-11-27 23:39:04.657498 0 \N 8392 \N 1514 \N 3536 1.0 1 2020-11-28 00:08:46.125389 2020-11-28 00:08:46.125389 0 \N 8393 \N 1357 \N 3537 1.0 1 2020-11-28 01:14:47.71685 2020-11-28 01:14:47.71685 0 \N 8394 \N 1371 \N 3538 1.0 1 2020-11-28 01:15:41.962529 2020-11-28 01:15:41.962529 0 \N 8395 \N 1058 \N 3539 1.0 1 2020-11-28 02:00:11.202567 2020-11-28 02:00:11.202567 0 \N 8396 \N 1526 \N 3539 1.0 1 2020-11-28 02:00:11.228168 2020-11-28 02:00:11.228168 0 \N 8397 \N 1528 \N 3539 1.0 1 2020-11-28 02:00:11.252634 2020-11-28 02:00:11.252634 0 \N 8398 \N 1370 \N 3540 1.0 1 2020-11-28 02:13:48.732668 2020-11-28 02:13:48.732668 0 \N 8399 \N 1372 \N 3541 1.0 1 2020-11-28 02:44:20.190938 2020-11-28 02:44:20.190938 0 \N 8400 \N 484 \N 3542 1.0 1 2020-11-28 20:29:27.544455 2020-11-28 20:29:27.544455 0 \N 8401 \N 982 \N 3543 1.0 1 2020-11-28 21:09:25.161853 2020-11-28 21:09:25.161853 0 \N 8402 \N 1371 492 \N 6.0 0 2020-11-28 21:17:02.569741 2020-11-28 21:17:02.569741 1 \N 8403 \N 1371 \N 3544 1.0 1 2020-11-28 21:17:21.339269 2020-11-28 21:17:21.339269 0 \N 8404 \N 1371 \N 3545 1.0 1 2020-11-28 22:14:17.95236 2020-11-28 22:14:17.95236 0 \N 8405 \N 1371 \N \N 1.0 0 2020-11-28 22:20:24.272379 2020-11-28 22:20:24.272379 7 742 8406 \N 1259 \N 2999 1.0 0 2020-11-28 23:24:22.777555 2020-11-28 23:24:22.777555 8 \N 8407 \N 1273 \N 2999 1.0 0 2020-11-28 23:24:22.802441 2020-11-28 23:24:22.802441 8 \N 8408 \N 1334 \N 2999 1.0 0 2020-11-28 23:24:22.826071 2020-11-28 23:24:22.826071 8 \N 8409 \N 507 \N 2999 1.0 0 2020-11-28 23:24:22.848896 2020-11-28 23:24:22.848896 8 \N 8410 \N 1324 \N 2999 1.0 0 2020-11-28 23:24:22.869738 2020-11-28 23:24:22.869738 8 \N 8411 \N 1294 \N 3546 1.0 1 2020-11-28 23:57:04.758288 2020-11-28 23:57:04.758288 0 \N 8412 \N 1371 \N 3547 1.0 1 2020-11-29 00:20:48.894921 2020-11-29 00:20:48.894921 0 \N 8413 \N 1372 \N 3548 1.0 1 2020-11-29 00:22:56.871113 2020-11-29 00:22:56.871113 0 \N 8414 \N 1475 \N 3549 1.0 1 2020-11-29 00:54:51.348475 2020-11-29 00:54:51.348475 0 \N 8415 \N 1547 \N 3550 1.0 1 2020-11-29 01:00:28.456986 2020-11-29 01:00:28.456986 0 \N 8416 \N 1540 \N 3551 1.0 1 2020-11-29 01:07:41.319487 2020-11-29 01:07:41.319487 0 \N 8417 \N 1540 \N 3551 1.0 0 2020-11-29 01:40:57.72405 2020-11-29 01:40:57.72405 3 \N 8418 \N 1372 \N 3552 1.0 1 2020-11-29 18:11:49.798089 2020-11-29 18:11:49.798089 0 \N 8419 \N 1372 \N 3552 1.0 0 2020-11-29 18:12:55.355445 2020-11-29 18:12:55.355445 3 \N 8420 \N 1372 \N 3553 1.0 1 2020-11-29 18:14:07.869882 2020-11-29 18:14:07.869882 0 \N 8421 \N 1464 \N 3554 1.0 1 2020-11-29 20:37:41.392161 2020-11-29 20:37:41.392161 0 \N 8422 \N 1327 \N 3555 1.0 1 2020-11-30 20:02:33.982736 2020-11-30 20:02:33.982736 0 \N 8423 \N 1475 \N 3556 1.0 1 2020-11-30 20:41:27.756666 2020-11-30 20:41:27.756666 0 \N 8424 \N 1180 \N 3556 1.0 1 2020-11-30 20:41:27.780831 2020-11-30 20:41:27.780831 0 \N 8425 \N 1481 \N 3557 1.0 1 2020-11-30 20:46:46.22684 2020-11-30 20:46:46.22684 0 \N 8426 \N 1371 \N 3558 1.0 1 2020-11-30 21:39:29.943871 2020-11-30 21:39:29.943871 0 \N 8427 \N 1372 \N 3559 1.0 1 2020-11-30 22:02:38.417596 2020-11-30 22:02:38.417596 0 \N 8428 \N 1371 \N 3560 1.0 1 2020-12-01 00:35:39.409837 2020-12-01 00:35:39.409837 0 \N 8429 \N 1371 \N 3560 1.0 0 2020-12-01 00:36:58.097811 2020-12-01 00:36:58.097811 3 \N 8430 \N 1371 \N 3561 1.0 1 2020-12-01 00:37:31.372402 2020-12-01 00:37:31.372402 0 \N 8431 \N 1499 \N 3561 1.0 1 2020-12-01 00:37:31.395974 2020-12-01 00:37:31.395974 0 \N 8432 \N 1126 \N 3509 1.0 0 2020-12-01 00:49:09.408487 2020-12-01 00:49:09.408487 3 \N 8433 \N 1371 \N 3562 1.0 1 2020-12-01 00:55:00.118569 2020-12-01 00:55:00.118569 0 \N 8434 \N 1097 \N 3563 1.0 1 2020-12-01 00:55:07.355148 2020-12-01 00:55:07.355148 0 \N 8435 \N 1349 \N 3563 1.0 1 2020-12-01 00:55:07.387455 2020-12-01 00:55:07.387455 0 \N 8436 \N 1332 \N 3564 1.0 1 2020-12-01 00:59:19.138112 2020-12-01 00:59:19.138112 0 \N 8437 \N 369 \N 3564 2.0 1 2020-12-01 00:59:19.214063 2020-12-01 00:59:19.214063 0 \N 8438 \N 1371 \N 3565 1.0 1 2020-12-01 01:56:12.232371 2020-12-01 01:56:12.232371 0 \N 8439 \N 1499 \N 3565 1.0 1 2020-12-01 01:56:12.256112 2020-12-01 01:56:12.256112 0 \N 8440 \N 1499 \N 3561 1.0 0 2020-12-01 01:56:33.646762 2020-12-01 01:56:33.646762 3 \N 8441 \N 1371 \N 3561 1.0 0 2020-12-01 01:56:33.701737 2020-12-01 01:56:33.701737 3 \N 8442 \N 1357 \N 3566 1.0 1 2020-12-01 02:03:00.298434 2020-12-01 02:03:00.298434 0 \N 8443 \N 1537 \N 3567 1.0 1 2020-12-01 17:18:42.408244 2020-12-01 17:18:42.408244 0 \N 8444 \N 1475 \N 3568 1.0 1 2020-12-01 19:46:52.693626 2020-12-01 19:46:52.693626 0 \N 8445 \N 1371 \N 3568 1.0 1 2020-12-01 19:46:52.719837 2020-12-01 19:46:52.719837 0 \N 8446 \N 1361 \N \N 1.0 0 2020-12-01 20:25:40.740361 2020-12-01 20:25:40.740361 7 743 8447 \N 1361 \N 3569 1.0 1 2020-12-01 20:26:20.192229 2020-12-01 20:26:20.192229 0 \N 8448 \N 1361 493 \N 1.0 0 2020-12-01 20:26:41.668976 2020-12-01 20:26:41.668976 1 \N 8449 \N 1118 \N 3570 1.0 1 2020-12-02 00:32:38.210198 2020-12-02 00:32:38.210198 0 \N 8450 \N 1514 \N 3571 1.0 1 2020-12-02 00:36:00.293353 2020-12-02 00:36:00.293353 0 \N 8451 \N 895 \N \N 2.0 0 2020-12-02 01:33:35.420884 2020-12-02 01:33:35.420884 7 745 8452 \N 710 \N 3572 1.0 1 2020-12-02 01:37:41.827509 2020-12-02 01:37:41.827509 0 \N 8453 \N 895 \N 3572 1.0 1 2020-12-02 01:37:41.849939 2020-12-02 01:37:41.849939 0 \N 8454 \N 754 \N 3572 1.0 1 2020-12-02 01:37:41.871778 2020-12-02 01:37:41.871778 0 \N 8455 \N 602 \N 3573 1.0 1 2020-12-02 01:49:05.947555 2020-12-02 01:49:05.947555 0 \N 8456 \N 1377 \N 3574 1.0 1 2020-12-02 18:21:10.376866 2020-12-02 18:21:10.376866 0 \N 8457 \N 1391 \N 3574 1.0 1 2020-12-02 18:21:10.40186 2020-12-02 18:21:10.40186 0 \N 8458 \N 1251 \N 3575 1.0 1 2020-12-02 19:03:15.918529 2020-12-02 19:03:15.918529 0 \N 8459 \N 1521 \N 3576 1.0 1 2020-12-02 21:30:31.229159 2020-12-02 21:30:31.229159 0 \N 8460 \N 1521 \N 3577 1.0 1 2020-12-02 21:38:26.698026 2020-12-02 21:38:26.698026 0 \N 8461 \N 987 \N 3578 1.0 1 2020-12-02 22:00:00.457502 2020-12-02 22:00:00.457502 0 \N 8462 \N 1541 \N 3579 1.0 1 2020-12-02 22:36:49.17068 2020-12-02 22:36:49.17068 0 \N 8463 \N 1333 \N 3580 1.0 1 2020-12-02 22:43:49.053609 2020-12-02 22:43:49.053609 0 \N 8464 \N 1541 494 \N 2.0 0 2020-12-03 00:35:06.256263 2020-12-03 00:35:06.256263 1 \N 8465 \N 1541 \N 3581 1.0 1 2020-12-03 00:35:34.236025 2020-12-03 00:35:34.236025 0 \N 8466 \N 1540 495 \N 2.0 0 2020-12-03 00:45:10.522004 2020-12-03 00:45:10.522004 1 \N 8467 \N 1522 \N 3582 1.0 1 2020-12-03 01:51:15.886275 2020-12-03 01:51:15.886275 0 \N 8468 \N 1372 \N 3583 1.0 1 2020-12-03 18:56:10.692219 2020-12-03 18:56:10.692219 0 \N 8469 \N 1372 \N 3583 1.0 0 2020-12-03 18:56:27.224348 2020-12-03 18:56:27.224348 3 \N 8470 \N 1372 \N 3584 1.0 1 2020-12-03 18:56:55.982526 2020-12-03 18:56:55.982526 0 \N 8471 \N 1333 \N 3585 1.0 1 2020-12-03 19:34:18.734834 2020-12-03 19:34:18.734834 0 \N 8472 \N 1325 \N 3586 1.0 1 2020-12-03 20:23:01.445517 2020-12-03 20:23:01.445517 0 \N 8473 \N 1304 \N 3587 1.0 1 2020-12-03 21:09:28.36863 2020-12-03 21:09:28.36863 0 \N 8474 \N 1541 \N 3587 1.0 1 2020-12-03 21:09:28.399643 2020-12-03 21:09:28.399643 0 \N 8475 \N 1238 \N 3587 1.0 1 2020-12-03 21:09:28.430195 2020-12-03 21:09:28.430195 0 \N 8476 \N 1500 \N 3588 1.0 1 2020-12-03 21:21:35.251213 2020-12-03 21:21:35.251213 0 \N 8477 \N 796 \N 3589 1.0 1 2020-12-03 23:56:26.993482 2020-12-03 23:56:26.993482 0 \N 8478 \N 690 \N 3590 1.0 1 2020-12-04 00:29:19.492447 2020-12-04 00:29:19.492447 0 \N 8479 \N 1505 \N 3591 1.0 1 2020-12-04 00:48:02.981416 2020-12-04 00:48:02.981416 0 \N 8480 \N 1491 \N 3592 1.0 1 2020-12-04 01:49:12.266297 2020-12-04 01:49:12.266297 0 \N 8481 \N 895 \N \N 2.0 0 2020-12-04 18:20:21.496459 2020-12-04 18:20:21.496459 7 744 8482 \N 1321 \N \N 3.0 0 2020-12-04 18:21:32.987171 2020-12-04 18:21:32.987171 7 746 8483 \N 978 \N \N 3.0 0 2020-12-04 18:21:33.008806 2020-12-04 18:21:33.008806 7 746 8484 \N 1316 \N \N 2.0 0 2020-12-04 18:24:23.071969 2020-12-04 18:24:23.071969 7 747 8485 \N 1316 \N 3593 1.0 1 2020-12-04 18:25:06.082677 2020-12-04 18:25:06.082677 0 \N 8486 \N 1393 \N 3594 1.0 1 2020-12-04 18:41:04.505141 2020-12-04 18:41:04.505141 0 \N 8487 \N 1371 \N 3595 1.0 1 2020-12-04 19:28:49.515449 2020-12-04 19:28:49.515449 0 \N 8488 \N 997 \N 3595 1.0 1 2020-12-04 19:28:49.538437 2020-12-04 19:28:49.538437 0 \N 8489 \N 1092 \N 3595 1.0 1 2020-12-04 19:28:49.56203 2020-12-04 19:28:49.56203 0 \N 8490 \N 1517 \N 3596 1.0 1 2020-12-04 20:31:30.505293 2020-12-04 20:31:30.505293 0 \N 8491 \N 1513 \N 3597 1.0 1 2020-12-04 20:32:10.755889 2020-12-04 20:32:10.755889 0 \N 8492 \N 202 \N 3597 1.0 1 2020-12-04 20:32:10.780164 2020-12-04 20:32:10.780164 0 \N 8493 \N 1348 \N 3598 1.0 1 2020-12-04 21:03:50.308939 2020-12-04 21:03:50.308939 0 \N 8494 \N 1542 \N 3599 1.0 1 2020-12-04 21:10:23.62436 2020-12-04 21:10:23.62436 0 \N 8495 \N 1507 \N 3599 1.0 1 2020-12-04 21:10:23.647497 2020-12-04 21:10:23.647497 0 \N 8496 \N 782 \N 3600 1.0 1 2020-12-04 21:14:32.680744 2020-12-04 21:14:32.680744 0 \N 8497 \N 1372 \N 3601 1.0 1 2020-12-04 21:52:58.707149 2020-12-04 21:52:58.707149 0 \N 8498 \N 1510 \N 3602 1.0 1 2020-12-04 23:07:16.86999 2020-12-04 23:07:16.86999 0 \N 8499 \N 1529 \N 3603 1.0 1 2020-12-04 23:18:47.820844 2020-12-04 23:18:47.820844 0 \N 8500 \N 1505 \N 3604 1.0 1 2020-12-04 23:37:40.198249 2020-12-04 23:37:40.198249 0 \N 8501 \N 1294 \N 3605 1.0 1 2020-12-05 01:41:06.919854 2020-12-05 01:41:06.919854 0 \N 8502 \N 1480 \N 3606 1.0 1 2020-12-05 19:23:36.674343 2020-12-05 19:23:36.674343 0 \N 8503 \N 1528 \N 3607 1.0 1 2020-12-05 19:33:01.767453 2020-12-05 19:33:01.767453 0 \N 8504 \N 1126 \N 3608 1.0 1 2020-12-05 20:03:02.59557 2020-12-05 20:03:02.59557 0 \N 8505 \N 1491 \N 3609 1.0 1 2020-12-05 20:21:54.464893 2020-12-05 20:21:54.464893 0 \N 8506 \N 721 \N 3610 1.0 1 2020-12-05 20:28:18.049813 2020-12-05 20:28:18.049813 0 \N 8507 \N 1371 \N 3610 1.0 1 2020-12-05 20:28:18.072161 2020-12-05 20:28:18.072161 0 \N 8508 \N 1357 \N 3611 1.0 1 2020-12-05 20:34:32.15876 2020-12-05 20:34:32.15876 0 \N 8509 \N 1357 \N 3611 1.0 0 2020-12-05 20:35:45.176462 2020-12-05 20:35:45.176462 9 \N 8510 \N 1357 \N 3612 1.0 1 2020-12-05 20:36:36.463103 2020-12-05 20:36:36.463103 0 \N 8511 \N 1372 \N 3612 1.0 1 2020-12-05 20:36:36.83451 2020-12-05 20:36:36.83451 0 \N 8512 \N 1372 \N 3612 1.0 0 2020-12-05 20:37:45.72007 2020-12-05 20:37:45.72007 3 \N 8513 \N 1357 \N 3612 1.0 0 2020-12-05 20:37:45.847037 2020-12-05 20:37:45.847037 3 \N 8514 \N 1357 \N 3613 1.0 1 2020-12-05 20:50:04.564912 2020-12-05 20:50:04.564912 0 \N 8515 \N 1372 \N 3613 1.0 1 2020-12-05 20:50:04.592132 2020-12-05 20:50:04.592132 0 \N 8516 \N 1500 \N 3614 1.0 1 2020-12-05 20:52:46.668813 2020-12-05 20:52:46.668813 0 \N 8517 \N 1371 \N 3615 1.0 1 2020-12-05 20:53:28.80863 2020-12-05 20:53:28.80863 0 \N 8518 \N 782 \N 3616 1.0 1 2020-12-06 01:09:21.678724 2020-12-06 01:09:21.678724 0 \N 8519 \N 1504 \N 3616 1.0 1 2020-12-06 01:09:21.701682 2020-12-06 01:09:21.701682 0 \N 8520 \N 1522 \N 3617 1.0 1 2020-12-06 01:53:42.648774 2020-12-06 01:53:42.648774 0 \N 8521 \N 871 \N 3618 2.0 1 2020-12-06 19:08:10.564553 2020-12-06 19:08:10.564553 0 \N 8522 \N 1529 \N 3619 1.0 1 2020-12-07 17:18:51.440243 2020-12-07 17:18:51.440243 0 \N 8523 \N 1386 \N 3620 1.0 1 2020-12-07 22:04:44.193233 2020-12-07 22:04:44.193233 0 \N 8524 \N 1389 \N 3621 1.0 1 2020-12-07 23:32:15.328661 2020-12-07 23:32:15.328661 0 \N 8525 \N 1481 \N 3622 1.0 1 2020-12-07 23:43:43.774276 2020-12-07 23:43:43.774276 0 \N 8526 \N 887 \N 3622 1.0 1 2020-12-07 23:43:43.798319 2020-12-07 23:43:43.798319 0 \N 8527 \N 571 \N 3622 1.0 1 2020-12-07 23:43:43.821134 2020-12-07 23:43:43.821134 0 \N 8528 \N 1508 \N 3622 1.0 1 2020-12-07 23:43:43.850625 2020-12-07 23:43:43.850625 0 \N 8529 \N 1493 \N 3622 1.0 1 2020-12-07 23:43:43.873235 2020-12-07 23:43:43.873235 0 \N 8530 \N 978 \N 3622 1.0 1 2020-12-07 23:43:43.896341 2020-12-07 23:43:43.896341 0 \N 8531 \N 982 \N 3623 1.0 1 2020-12-07 23:45:46.059949 2020-12-07 23:45:46.059949 0 \N 8532 \N 625 \N 3624 1.0 1 2020-12-08 00:12:45.37578 2020-12-08 00:12:45.37578 0 \N 8533 \N 1372 \N 3625 1.0 1 2020-12-08 01:02:34.666302 2020-12-08 01:02:34.666302 0 \N 8534 \N 1484 \N 3626 1.0 1 2020-12-08 20:11:42.709531 2020-12-08 20:11:42.709531 0 \N 8535 \N 1470 \N 3627 1.0 1 2020-12-08 21:55:53.70853 2020-12-08 21:55:53.70853 0 \N 8536 \N 1474 \N 3627 1.0 1 2020-12-08 21:55:53.741502 2020-12-08 21:55:53.741502 0 \N 8537 \N 1321 \N 3628 1.0 1 2020-12-08 23:41:12.771255 2020-12-08 23:41:12.771255 0 \N 8538 \N 1535 \N 3628 1.0 1 2020-12-08 23:41:12.798116 2020-12-08 23:41:12.798116 0 \N 8539 \N 1535 \N 3628 1.0 0 2020-12-08 23:42:08.178161 2020-12-08 23:42:08.178161 3 \N 8540 \N 1321 \N 3628 1.0 0 2020-12-08 23:42:08.20788 2020-12-08 23:42:08.20788 3 \N 8541 \N 1374 \N 3629 1.0 1 2020-12-09 00:58:55.161273 2020-12-09 00:58:55.161273 0 \N 8542 \N 1371 \N 3630 1.0 1 2020-12-09 01:18:30.332232 2020-12-09 01:18:30.332232 0 \N 8543 \N 1497 \N 3631 1.0 1 2020-12-09 01:25:32.498667 2020-12-09 01:25:32.498667 0 \N 8544 \N 1475 \N 3632 1.0 1 2020-12-09 02:02:39.475009 2020-12-09 02:02:39.475009 0 \N 8545 \N 1491 \N 3633 1.0 1 2020-12-09 18:57:18.518456 2020-12-09 18:57:18.518456 0 \N 8546 \N 862 \N \N 2.0 0 2020-12-09 19:30:37.870185 2020-12-09 19:30:37.870185 7 748 8547 \N 1510 \N \N 2.0 0 2020-12-09 19:30:37.893564 2020-12-09 19:30:37.893564 7 748 8548 \N 790 \N \N 3.0 0 2020-12-09 19:30:37.915136 2020-12-09 19:30:37.915136 7 748 8549 \N 786 \N \N 5.0 0 2020-12-09 19:30:37.934795 2020-12-09 19:30:37.934795 7 748 8550 \N 793 \N \N 2.0 0 2020-12-09 19:30:37.953963 2020-12-09 19:30:37.953963 7 748 8551 \N 753 \N \N 4.0 0 2020-12-09 19:30:37.971318 2020-12-09 19:30:37.971318 7 748 8552 \N 781 \N \N 2.0 0 2020-12-09 19:30:49.063476 2020-12-09 19:30:49.063476 7 749 8553 \N 1548 496 \N 1.0 0 2020-12-09 19:37:58.723906 2020-12-09 19:37:58.723906 1 \N 8554 \N 1524 \N 3634 1.0 1 2020-12-09 19:42:40.829736 2020-12-09 19:42:40.829736 0 \N 8555 \N 793 \N 3634 1.0 1 2020-12-09 19:42:40.851612 2020-12-09 19:42:40.851612 0 \N 8556 \N 1196 \N 3634 1.0 1 2020-12-09 19:42:40.873083 2020-12-09 19:42:40.873083 0 \N 8557 \N 1548 \N 3634 1.0 1 2020-12-09 19:42:40.89452 2020-12-09 19:42:40.89452 0 \N 8558 \N 1540 \N 3635 1.0 1 2020-12-09 22:03:48.796657 2020-12-09 22:03:48.796657 0 \N 8559 \N 1540 \N 3635 1.0 0 2020-12-09 22:04:01.686399 2020-12-09 22:04:01.686399 3 \N 8560 \N 1540 \N 3636 1.0 1 2020-12-09 22:04:25.08262 2020-12-09 22:04:25.08262 0 \N 8561 \N 1378 \N 3637 1.0 1 2020-12-09 22:22:14.653677 2020-12-09 22:22:14.653677 0 \N 8562 \N 1378 \N 3637 1.0 0 2020-12-09 22:23:54.094689 2020-12-09 22:23:54.094689 3 \N 8563 \N 1378 \N 3638 1.0 1 2020-12-09 22:25:58.343975 2020-12-09 22:25:58.343975 0 \N 8564 \N 1540 \N 3638 1.0 1 2020-12-09 22:25:58.372455 2020-12-09 22:25:58.372455 0 \N 8565 \N 1521 \N 3639 1.0 1 2020-12-09 22:34:19.467221 2020-12-09 22:34:19.467221 0 \N 8566 \N 664 \N 3640 1.0 1 2020-12-09 22:44:09.982225 2020-12-09 22:44:09.982225 0 \N 8567 \N 1509 \N 3641 1.0 1 2020-12-09 23:04:13.409163 2020-12-09 23:04:13.409163 0 \N 8568 \N 1516 \N 3641 1.0 1 2020-12-09 23:04:13.441286 2020-12-09 23:04:13.441286 0 \N 8569 \N 1475 \N 3642 1.0 1 2020-12-09 23:18:09.4216 2020-12-09 23:18:09.4216 0 \N 8570 \N 1004 \N 3643 1.0 1 2020-12-10 01:38:05.978852 2020-12-10 01:38:05.978852 0 \N 8571 \N 904 \N \N 3.0 0 2020-12-10 19:57:03.777821 2020-12-10 19:57:03.777821 7 750 8572 \N 904 \N 3644 1.0 1 2020-12-10 19:57:48.282535 2020-12-10 19:57:48.282535 0 \N 8573 \N 1535 \N 3645 1.0 1 2020-12-10 21:21:37.866673 2020-12-10 21:21:37.866673 0 \N 8574 \N 1491 \N 3645 1.0 1 2020-12-10 21:21:37.890083 2020-12-10 21:21:37.890083 0 \N 8575 \N 1371 \N 3645 1.0 1 2020-12-10 21:21:37.912905 2020-12-10 21:21:37.912905 0 \N 8576 \N 1523 \N 3646 2.0 1 2020-12-10 21:38:08.842392 2020-12-10 21:38:08.842392 0 \N 8577 \N 1209 \N 3647 1.0 1 2020-12-10 22:10:26.048693 2020-12-10 22:10:26.048693 0 \N 8578 \N 1539 \N 3647 1.0 1 2020-12-10 22:10:26.076441 2020-12-10 22:10:26.076441 0 \N 8579 \N 1304 \N 3648 1.0 1 2020-12-10 23:11:24.152734 2020-12-10 23:11:24.152734 0 \N 8580 \N 1484 \N 3649 1.0 1 2020-12-10 23:15:21.908181 2020-12-10 23:15:21.908181 0 \N 8581 \N 1547 \N 3650 1.0 1 2020-12-11 00:29:54.108518 2020-12-11 00:29:54.108518 0 \N 8582 \N 1525 \N 3651 1.0 1 2020-12-11 01:15:26.239364 2020-12-11 01:15:26.239364 0 \N 8583 \N 1523 \N 3651 1.0 1 2020-12-11 01:15:26.270507 2020-12-11 01:15:26.270507 0 \N 8584 \N 1491 \N 3652 1.0 1 2020-12-11 01:19:41.290047 2020-12-11 01:19:41.290047 0 \N 8585 \N 1537 \N 3653 1.0 1 2020-12-11 02:39:10.422101 2020-12-11 02:39:10.422101 0 \N 8586 \N 984 \N 3654 1.0 1 2020-12-11 20:04:34.60665 2020-12-11 20:04:34.60665 0 \N 8587 \N 1528 \N \N 3.0 0 2020-12-11 20:44:26.260449 2020-12-11 20:44:26.260449 7 751 8588 \N 1540 \N \N 2.0 0 2020-12-11 20:44:26.281282 2020-12-11 20:44:26.281282 7 751 8589 \N 1541 \N \N 1.0 0 2020-12-11 20:44:26.303376 2020-12-11 20:44:26.303376 7 751 8590 \N 676 \N 3655 1.0 1 2020-12-11 21:02:50.977521 2020-12-11 21:02:50.977521 0 \N 8591 \N 962 \N \N 6.0 0 2020-12-11 21:30:16.5543 2020-12-11 21:30:16.5543 7 754 8592 \N 962 \N 3656 1.0 1 2020-12-11 21:32:01.441504 2020-12-11 21:32:01.441504 0 \N 8593 \N 1429 \N 3656 1.0 1 2020-12-11 21:32:01.477722 2020-12-11 21:32:01.477722 0 \N 8594 \N 1521 \N 3657 1.0 1 2020-12-11 22:17:01.939448 2020-12-11 22:17:01.939448 0 \N 8595 \N 676 \N 3658 1.0 1 2020-12-11 23:05:21.792518 2020-12-11 23:05:21.792518 0 \N 8596 \N 1522 \N 3659 1.0 1 2020-12-11 23:34:54.537589 2020-12-11 23:34:54.537589 0 \N 8597 \N 1526 \N 3660 1.0 1 2020-12-11 23:36:24.540835 2020-12-11 23:36:24.540835 0 \N 8598 \N 1535 \N 3661 1.0 1 2020-12-12 00:26:17.643347 2020-12-12 00:26:17.643347 0 \N 8599 \N 1535 \N 3661 1.0 0 2020-12-12 00:26:28.116863 2020-12-12 00:26:28.116863 3 \N 8600 \N 1535 \N 3662 1.0 1 2020-12-12 00:27:24.073058 2020-12-12 00:27:24.073058 0 \N 8601 \N 1534 \N 3663 1.0 1 2020-12-12 00:33:01.34214 2020-12-12 00:33:01.34214 0 \N 8602 \N 1540 \N 3664 1.0 1 2020-12-12 00:42:10.085387 2020-12-12 00:42:10.085387 0 \N 8603 \N 1473 \N 3665 1.0 1 2020-12-12 00:55:33.624573 2020-12-12 00:55:33.624573 0 \N 8604 \N 273 \N 3665 1.0 1 2020-12-12 00:55:33.66321 2020-12-12 00:55:33.66321 0 \N 8605 \N 1371 \N 3666 1.0 1 2020-12-12 01:39:58.878442 2020-12-12 01:39:58.878442 0 \N 8606 \N 1537 \N 3667 1.0 1 2020-12-12 02:29:56.537354 2020-12-12 02:29:56.537354 0 \N 8607 \N 1537 \N 3667 1.0 0 2020-12-12 02:33:28.264738 2020-12-12 02:33:28.264738 3 \N 8608 \N 1537 \N 3668 1.0 1 2020-12-12 02:34:15.322685 2020-12-12 02:34:15.322685 0 \N 8609 \N 821 \N 3668 1.0 1 2020-12-12 02:34:15.352824 2020-12-12 02:34:15.352824 0 \N 8610 \N 827 \N 3668 1.0 1 2020-12-12 02:34:15.381051 2020-12-12 02:34:15.381051 0 \N 8611 \N 1528 \N 3669 1.0 1 2020-12-12 18:58:35.887101 2020-12-12 18:58:35.887101 0 \N 8612 \N 1521 \N 3670 1.0 1 2020-12-12 19:01:23.661602 2020-12-12 19:01:23.661602 0 \N 8613 \N 1164 \N 3671 1.0 1 2020-12-12 19:42:55.873347 2020-12-12 19:42:55.873347 0 \N 8614 \N 1164 \N 3671 1.0 0 2020-12-12 19:44:20.065603 2020-12-12 19:44:20.065603 9 \N 8615 \N 1488 \N 3672 1.0 1 2020-12-12 20:04:51.627595 2020-12-12 20:04:51.627595 0 \N 8616 \N 949 \N 3672 1.0 1 2020-12-12 20:04:51.650281 2020-12-12 20:04:51.650281 0 \N 8617 \N 1512 497 \N 1.0 0 2020-12-12 20:31:57.997175 2020-12-12 20:31:57.997175 1 \N 8618 \N 1512 \N 3673 1.0 1 2020-12-12 20:32:24.11366 2020-12-12 20:32:24.11366 0 \N 8619 \N 1547 \N 3674 1.0 1 2020-12-12 21:48:31.149533 2020-12-12 21:48:31.149533 0 \N 8620 \N 954 \N \N 7.0 0 2020-12-12 23:37:12.003189 2020-12-12 23:37:12.003189 7 755 8621 \N 954 \N 3675 1.0 1 2020-12-12 23:38:10.310044 2020-12-12 23:38:10.310044 0 \N 8622 \N 1506 \N 3676 1.0 1 2020-12-12 23:44:53.556822 2020-12-12 23:44:53.556822 0 \N 8623 \N 1521 \N 3677 1.0 1 2020-12-13 00:16:44.642098 2020-12-13 00:16:44.642098 0 \N 8624 \N 1333 498 \N 3.0 0 2020-12-13 00:35:24.236706 2020-12-13 00:35:24.236706 1 \N 8625 \N 1333 \N 3678 1.0 1 2020-12-13 00:35:44.230024 2020-12-13 00:35:44.230024 0 \N 8626 \N 1549 499 \N 12.0 0 2020-12-13 01:02:38.93424 2020-12-13 01:02:38.93424 1 \N 8627 \N 1371 500 \N 1.0 0 2020-12-13 01:03:02.556297 2020-12-13 01:03:02.556297 1 \N 8628 \N 1371 \N 3679 1.0 1 2020-12-13 01:03:43.679129 2020-12-13 01:03:43.679129 0 \N 8629 \N 1549 \N 3680 1.0 1 2020-12-13 01:04:31.627602 2020-12-13 01:04:31.627602 0 \N 8630 \N 1537 \N 3681 1.0 1 2020-12-13 18:09:51.50078 2020-12-13 18:09:51.50078 0 \N 8631 \N 1543 \N 3682 1.0 1 2020-12-13 20:26:12.227783 2020-12-13 20:26:12.227783 0 \N 8632 \N 1543 \N 3682 1.0 0 2020-12-13 20:26:33.73146 2020-12-13 20:26:33.73146 3 \N 8633 \N 1543 \N 3683 1.0 1 2020-12-13 20:27:09.655143 2020-12-13 20:27:09.655143 0 \N 8634 \N 1173 \N 3684 1.0 1 2020-12-13 20:41:13.802482 2020-12-13 20:41:13.802482 0 \N 8635 \N 1184 \N 3684 1.0 1 2020-12-13 20:41:13.827197 2020-12-13 20:41:13.827197 0 \N 8636 \N 1519 \N \N 5.0 0 2020-12-13 21:04:19.345768 2020-12-13 21:04:19.345768 7 753 8637 \N 1508 \N \N 2.0 0 2020-12-13 21:04:19.374169 2020-12-13 21:04:19.374169 7 753 8638 \N 1490 \N \N 4.0 0 2020-12-13 21:04:19.39639 2020-12-13 21:04:19.39639 7 753 8639 \N 1523 \N \N 6.0 0 2020-12-13 21:04:19.41661 2020-12-13 21:04:19.41661 7 753 8640 \N 772 \N \N 2.0 0 2020-12-13 21:04:19.438387 2020-12-13 21:04:19.438387 7 753 8641 \N 1508 \N \N 1.0 0 2020-12-13 21:04:29.417122 2020-12-13 21:04:29.417122 7 756 8642 \N 1508 \N 3685 1.0 1 2020-12-13 21:05:15.745931 2020-12-13 21:05:15.745931 0 \N 8643 \N 1544 \N 3686 1.0 1 2020-12-13 21:21:41.788516 2020-12-13 21:21:41.788516 0 \N 8644 \N 1497 \N 3687 1.0 1 2020-12-13 22:06:51.146852 2020-12-13 22:06:51.146852 0 \N 8645 \N 869 \N \N 1.0 0 2020-12-14 17:48:26.219302 2020-12-14 17:48:26.219302 7 757 8646 \N 869 \N 3688 1.0 1 2020-12-14 17:48:47.147187 2020-12-14 17:48:47.147187 0 \N 8647 \N 1491 \N \N 7.0 0 2020-12-14 18:18:20.846665 2020-12-14 18:18:20.846665 7 752 8648 \N 1546 \N 3689 1.0 1 2020-12-14 19:22:27.275238 2020-12-14 19:22:27.275238 0 \N 8649 \N 1522 \N 3690 1.0 1 2020-12-14 20:31:50.037009 2020-12-14 20:31:50.037009 0 \N 8650 \N 1094 501 \N 1.0 0 2020-12-14 21:50:04.550674 2020-12-14 21:50:04.550674 1 \N 8651 \N 1135 \N \N 1.0 0 2020-12-14 21:58:44.598993 2020-12-14 21:58:44.598993 7 760 8652 \N 1380 \N 3691 1.0 1 2020-12-14 22:02:48.03083 2020-12-14 22:02:48.03083 0 \N 8653 \N 1094 \N 3692 1.0 1 2020-12-14 22:05:29.701436 2020-12-14 22:05:29.701436 0 \N 8654 \N 1521 \N 3692 1.0 1 2020-12-14 22:05:29.726171 2020-12-14 22:05:29.726171 0 \N 8655 \N 1135 \N 3693 1.0 1 2020-12-14 22:06:54.909178 2020-12-14 22:06:54.909178 0 \N 8656 \N 1525 \N 3694 1.0 1 2020-12-14 22:57:01.553474 2020-12-14 22:57:01.553474 0 \N 8657 \N 1523 \N 3695 2.0 1 2020-12-14 23:01:58.692587 2020-12-14 23:01:58.692587 0 \N 8658 \N 982 \N 3696 1.0 1 2020-12-14 23:21:27.434498 2020-12-14 23:21:27.434498 0 \N 8659 \N 1472 \N 3697 1.0 1 2020-12-14 23:33:57.495338 2020-12-14 23:33:57.495338 0 \N 8660 \N 1549 \N 3698 1.0 1 2020-12-15 00:04:35.99145 2020-12-15 00:04:35.99145 0 \N 8661 \N 1547 \N 3699 1.0 1 2020-12-15 00:55:05.537342 2020-12-15 00:55:05.537342 0 \N 8662 \N 786 \N 3700 1.0 1 2020-12-15 01:10:25.571688 2020-12-15 01:10:25.571688 0 \N 8663 \N 1475 \N 3642 1.0 0 2020-12-15 01:19:19.446864 2020-12-15 01:19:19.446864 9 \N 8664 \N 1238 \N 3701 1.0 1 2020-12-15 01:20:00.434026 2020-12-15 01:20:00.434026 0 \N 8665 \N 1416 \N 3701 1.0 1 2020-12-15 01:20:00.46057 2020-12-15 01:20:00.46057 0 \N 8666 \N 63 \N 3216 1.0 0 2020-12-15 01:20:46.22936 2020-12-15 01:20:46.22936 8 \N 8667 \N 1371 \N 3702 1.0 1 2020-12-15 01:43:47.611417 2020-12-15 01:43:47.611417 0 \N 8668 \N 1378 \N 3703 1.0 1 2020-12-15 02:41:20.476338 2020-12-15 02:41:20.476338 0 \N 8669 \N 1378 \N 3703 1.0 0 2020-12-15 02:41:47.704082 2020-12-15 02:41:47.704082 3 \N 8670 \N 1230 \N 3704 1.0 1 2020-12-15 02:42:01.663324 2020-12-15 02:42:01.663324 0 \N 8671 \N 1016 \N 3705 1.0 1 2020-12-15 17:28:21.80517 2020-12-15 17:28:21.80517 0 \N 8672 \N 871 \N 3705 1.0 1 2020-12-15 17:28:21.829904 2020-12-15 17:28:21.829904 0 \N 8673 \N 954 \N 3705 1.0 1 2020-12-15 17:28:21.853005 2020-12-15 17:28:21.853005 0 \N 8674 \N 1539 \N 3706 1.0 1 2020-12-15 18:13:24.846081 2020-12-15 18:13:24.846081 0 \N 8675 \N 1539 \N 3706 1.0 0 2020-12-15 18:13:52.981692 2020-12-15 18:13:52.981692 3 \N 8676 \N 1539 \N 3707 1.0 1 2020-12-15 18:14:12.845455 2020-12-15 18:14:12.845455 0 \N 8677 \N 1547 \N 3708 1.0 1 2020-12-15 20:07:02.959712 2020-12-15 20:07:02.959712 0 \N 8678 \N 1520 \N 3709 1.0 1 2020-12-15 21:42:20.430512 2020-12-15 21:42:20.430512 0 \N 8679 \N 1550 502 \N 10.0 0 2020-12-15 22:20:21.889558 2020-12-15 22:20:21.889558 1 \N 8680 \N 1550 \N 3710 1.0 1 2020-12-15 22:20:40.352357 2020-12-15 22:20:40.352357 0 \N 8681 \N 1471 \N \N 1.0 0 2020-12-15 22:25:12.307711 2020-12-15 22:25:12.307711 7 759 8682 \N 1361 \N \N 1.0 0 2020-12-15 22:25:12.325672 2020-12-15 22:25:12.325672 7 759 8683 \N 1479 \N \N 1.0 0 2020-12-15 22:25:12.346992 2020-12-15 22:25:12.346992 7 759 8684 \N 1164 \N \N 2.0 0 2020-12-15 22:25:12.367428 2020-12-15 22:25:12.367428 7 759 8685 \N 1491 \N \N 4.0 0 2020-12-15 22:25:20.618781 2020-12-15 22:25:20.618781 7 758 8686 \N 1547 503 \N 5.0 0 2020-12-15 22:29:20.50949 2020-12-15 22:29:20.50949 1 \N 8687 \N 1549 503 \N 5.0 0 2020-12-15 22:29:20.541184 2020-12-15 22:29:20.541184 1 \N 8688 \N 1550 503 \N 8.0 0 2020-12-15 22:29:20.57022 2020-12-15 22:29:20.57022 1 \N 8689 \N 1547 \N 3711 1.0 1 2020-12-15 22:48:14.099413 2020-12-15 22:48:14.099413 0 \N 8690 \N 172 \N 3712 1.0 1 2020-12-15 22:56:31.335809 2020-12-15 22:56:31.335809 0 \N 8691 \N 1543 504 \N 5.0 0 2020-12-15 23:11:41.645874 2020-12-15 23:11:41.645874 1 \N 8692 \N 1543 \N 3713 1.0 1 2020-12-15 23:15:45.198354 2020-12-15 23:15:45.198354 0 \N 8693 \N 1514 \N 3714 1.0 1 2020-12-15 23:31:20.760958 2020-12-15 23:31:20.760958 0 \N 8694 \N 1513 \N 3714 1.0 1 2020-12-15 23:31:20.790279 2020-12-15 23:31:20.790279 0 \N 8695 \N 1530 \N \N 1.0 0 2020-12-16 00:11:58.031948 2020-12-16 00:11:58.031948 7 761 8696 \N 1530 \N 3715 1.0 1 2020-12-16 00:13:52.398098 2020-12-16 00:13:52.398098 0 \N 8697 \N 1475 \N 3716 1.0 1 2020-12-16 01:15:00.985713 2020-12-16 01:15:00.985713 0 \N 8698 \N 1372 \N 3717 1.0 1 2020-12-16 01:16:22.379884 2020-12-16 01:16:22.379884 0 \N 8699 \N 1475 \N 3717 1.0 1 2020-12-16 01:16:22.403871 2020-12-16 01:16:22.403871 0 \N 8700 \N 1375 \N 3718 1.0 1 2020-12-16 01:58:17.498395 2020-12-16 01:58:17.498395 0 \N 8701 \N 1547 \N 3719 1.0 1 2020-12-16 01:59:16.761802 2020-12-16 01:59:16.761802 0 \N 8702 \N 1547 \N 3719 1.0 0 2020-12-16 01:59:21.374062 2020-12-16 01:59:21.374062 3 \N 8703 \N 1547 \N 3720 1.0 1 2020-12-16 01:59:42.732075 2020-12-16 01:59:42.732075 0 \N 8704 \N 1535 \N 3721 1.0 1 2020-12-16 03:30:05.001928 2020-12-16 03:30:05.001928 0 \N 8705 \N 885 \N 3721 1.0 1 2020-12-16 03:30:05.047528 2020-12-16 03:30:05.047528 0 \N 8706 \N 1547 \N 3722 1.0 1 2020-12-16 03:32:01.88959 2020-12-16 03:32:01.88959 0 \N 8707 \N 1371 505 \N 4.0 0 2020-12-16 18:12:41.185294 2020-12-16 18:12:41.185294 1 \N 8708 \N 1371 \N 3723 1.0 1 2020-12-16 18:12:59.030367 2020-12-16 18:12:59.030367 0 \N 8709 \N 367 \N 3724 1.0 1 2020-12-16 18:17:01.843724 2020-12-16 18:17:01.843724 0 \N 8710 \N 771 \N 3725 1.0 1 2020-12-16 18:28:15.804545 2020-12-16 18:28:15.804545 0 \N 8711 \N 1495 \N 3726 1.0 1 2020-12-16 18:51:44.719602 2020-12-16 18:51:44.719602 0 \N 8712 \N 901 \N 3726 1.0 1 2020-12-16 18:51:44.743502 2020-12-16 18:51:44.743502 0 \N 8713 \N 1415 \N 3726 1.0 1 2020-12-16 18:51:44.768588 2020-12-16 18:51:44.768588 0 \N 8714 \N 1390 \N 3727 1.0 1 2020-12-16 19:32:49.997608 2020-12-16 19:32:49.997608 0 \N 8715 \N 1392 \N 3728 1.0 1 2020-12-16 19:58:22.431911 2020-12-16 19:58:22.431911 0 \N 8716 \N 1107 \N 3728 1.0 1 2020-12-16 19:58:22.465698 2020-12-16 19:58:22.465698 0 \N 8717 \N 1292 \N 3728 1.0 1 2020-12-16 19:58:22.498546 2020-12-16 19:58:22.498546 0 \N 8718 \N 1550 \N 3729 1.0 1 2020-12-16 20:06:10.784779 2020-12-16 20:06:10.784779 0 \N 8719 \N 1477 \N 3730 1.0 1 2020-12-16 20:11:48.936828 2020-12-16 20:11:48.936828 0 \N 8720 \N 1547 \N 3731 1.0 1 2020-12-16 21:07:40.36641 2020-12-16 21:07:40.36641 0 \N 8721 \N 1546 \N 3731 1.0 1 2020-12-16 21:07:40.388275 2020-12-16 21:07:40.388275 0 \N 8722 \N 1484 \N 3626 1.0 0 2020-12-16 21:29:48.577088 2020-12-16 21:29:48.577088 9 \N 8723 \N 367 \N 3732 2.0 1 2020-12-16 21:30:41.991324 2020-12-16 21:30:41.991324 0 \N 8724 \N 988 \N 3733 1.0 1 2020-12-16 22:25:02.516912 2020-12-16 22:25:02.516912 0 \N 8725 \N 1374 \N 3734 1.0 1 2020-12-16 23:21:22.893622 2020-12-16 23:21:22.893622 0 \N 8726 \N 1547 \N 3735 1.0 1 2020-12-16 23:26:12.367358 2020-12-16 23:26:12.367358 0 \N 8727 \N 476 \N 3736 1.0 1 2020-12-16 23:36:40.970102 2020-12-16 23:36:40.970102 0 \N 8728 \N 1513 \N 3737 1.0 1 2020-12-16 23:44:48.535119 2020-12-16 23:44:48.535119 0 \N 8729 \N 1159 \N 3738 1.0 1 2020-12-16 23:52:23.221111 2020-12-16 23:52:23.221111 0 \N 8730 \N 1550 \N 3739 1.0 1 2020-12-16 23:58:18.891828 2020-12-16 23:58:18.891828 0 \N 8731 \N 1541 \N 3740 1.0 1 2020-12-17 00:03:19.437272 2020-12-17 00:03:19.437272 0 \N 8732 \N 1118 \N 3741 1.0 1 2020-12-17 00:38:12.977732 2020-12-17 00:38:12.977732 0 \N 8733 \N 1550 \N 3741 1.0 1 2020-12-17 00:38:13.001315 2020-12-17 00:38:13.001315 0 \N 8734 \N 1550 \N 3741 1.0 0 2020-12-17 00:38:35.741767 2020-12-17 00:38:35.741767 3 \N 8735 \N 1118 \N 3741 1.0 0 2020-12-17 00:38:35.761759 2020-12-17 00:38:35.761759 3 \N 8736 \N 1118 \N 3742 1.0 1 2020-12-17 00:39:05.423181 2020-12-17 00:39:05.423181 0 \N 8737 \N 1550 \N 3742 1.0 1 2020-12-17 00:39:05.447114 2020-12-17 00:39:05.447114 0 \N 8738 \N 1550 \N 3743 1.0 1 2020-12-17 00:42:42.656842 2020-12-17 00:42:42.656842 0 \N 8739 \N 1159 \N 3744 1.0 1 2020-12-17 00:56:49.217211 2020-12-17 00:56:49.217211 0 \N 8740 \N 367 \N 3745 3.0 1 2020-12-17 01:30:42.039826 2020-12-17 01:30:42.039826 0 \N 8741 \N 1242 \N 3745 1.0 1 2020-12-17 01:30:42.067304 2020-12-17 01:30:42.067304 0 \N 8742 \N 1491 \N 3746 1.0 1 2020-12-17 01:33:18.751284 2020-12-17 01:33:18.751284 0 \N 8743 \N 1469 \N \N 1.0 0 2020-12-17 01:40:52.304904 2020-12-17 01:40:52.304904 7 762 8744 \N 1517 \N \N 4.0 0 2020-12-17 01:40:52.324078 2020-12-17 01:40:52.324078 7 762 8745 \N 1547 \N \N 2.0 0 2020-12-17 01:40:52.33919 2020-12-17 01:40:52.33919 7 762 8746 \N 1500 \N \N 1.0 0 2020-12-17 01:40:52.357227 2020-12-17 01:40:52.357227 7 762 8747 \N 888 \N \N 1.0 0 2020-12-17 01:40:52.37162 2020-12-17 01:40:52.37162 7 762 8748 \N 900 \N \N 1.0 0 2020-12-17 01:40:52.389821 2020-12-17 01:40:52.389821 7 762 8749 \N 860 \N \N 1.0 0 2020-12-17 01:40:52.40402 2020-12-17 01:40:52.40402 7 762 8750 \N 893 \N \N 2.0 0 2020-12-17 01:40:52.418393 2020-12-17 01:40:52.418393 7 762 8751 \N 1522 \N \N 3.0 0 2020-12-17 01:40:52.432969 2020-12-17 01:40:52.432969 7 762 8752 \N 783 \N \N 2.0 0 2020-12-17 01:40:52.447578 2020-12-17 01:40:52.447578 7 762 8753 \N 861 \N \N 1.0 0 2020-12-17 01:40:52.461899 2020-12-17 01:40:52.461899 7 762 8754 \N 1521 \N 3747 1.0 1 2020-12-17 01:41:11.003466 2020-12-17 01:41:11.003466 0 \N 8755 \N 1517 \N 3747 1.0 1 2020-12-17 01:41:11.025959 2020-12-17 01:41:11.025959 0 \N 8756 \N 1517 \N 3747 1.0 0 2020-12-17 01:41:42.156435 2020-12-17 01:41:42.156435 3 \N 8757 \N 1521 \N 3747 1.0 0 2020-12-17 01:41:42.178993 2020-12-17 01:41:42.178993 3 \N 8758 \N 1521 \N 3748 1.0 1 2020-12-17 01:43:33.944902 2020-12-17 01:43:33.944902 0 \N 8759 \N 1517 \N 3748 1.0 1 2020-12-17 01:43:33.972895 2020-12-17 01:43:33.972895 0 \N 8760 \N 1368 \N 3749 1.0 1 2020-12-17 03:08:13.501922 2020-12-17 03:08:13.501922 0 \N 8761 \N 1130 \N 3750 1.0 1 2020-12-17 18:05:35.329649 2020-12-17 18:05:35.329649 0 \N 8762 \N 1242 \N 3751 1.0 1 2020-12-17 18:06:14.766266 2020-12-17 18:06:14.766266 0 \N 8763 \N 1371 \N 3752 1.0 1 2020-12-17 18:16:27.66139 2020-12-17 18:16:27.66139 0 \N 8764 \N 1507 \N 3753 1.0 1 2020-12-17 20:13:28.800092 2020-12-17 20:13:28.800092 0 \N 8765 \N 1488 \N 3754 1.0 1 2020-12-17 20:35:53.990547 2020-12-17 20:35:53.990547 0 \N 8766 \N 1372 \N 3755 1.0 1 2020-12-17 21:13:45.738668 2020-12-17 21:13:45.738668 0 \N 8767 \N 1380 \N 3756 1.0 1 2020-12-17 21:16:26.847134 2020-12-17 21:16:26.847134 0 \N 8768 \N 1475 \N 3757 1.0 1 2020-12-18 00:15:21.78719 2020-12-18 00:15:21.78719 0 \N 8769 \N 1372 \N 3757 1.0 1 2020-12-18 00:15:21.813328 2020-12-18 00:15:21.813328 0 \N 8770 \N 369 \N 3758 2.0 1 2020-12-18 00:18:40.328585 2020-12-18 00:18:40.328585 0 \N 8771 \N 1321 \N 3759 1.0 1 2020-12-18 01:12:34.973089 2020-12-18 01:12:34.973089 0 \N 8772 \N 895 \N 3760 1.0 1 2020-12-18 06:26:39.716458 2020-12-18 06:26:39.716458 0 \N 8773 \N 1520 \N \N 3.0 0 2020-12-18 06:30:25.534934 2020-12-18 06:30:25.534934 7 763 8774 \N 1506 \N 3761 1.0 1 2020-12-18 06:31:04.848449 2020-12-18 06:31:04.848449 0 \N 8775 \N 1520 \N 3761 1.0 1 2020-12-18 06:31:04.872677 2020-12-18 06:31:04.872677 0 \N 8776 \N 1490 \N 3761 1.0 1 2020-12-18 06:31:04.899505 2020-12-18 06:31:04.899505 0 \N 8777 \N 1521 \N 3761 1.0 1 2020-12-18 06:31:04.920872 2020-12-18 06:31:04.920872 0 \N 8778 \N 1520 \N 3762 1.0 1 2020-12-18 06:31:27.291018 2020-12-18 06:31:27.291018 0 \N 8779 \N 1521 \N 3763 1.0 1 2020-12-18 06:32:16.531676 2020-12-18 06:32:16.531676 0 \N 8780 \N 1547 \N 3764 1.0 1 2020-12-18 06:32:41.686933 2020-12-18 06:32:41.686933 0 \N 8781 \N 962 \N 3765 1.0 1 2020-12-18 06:33:03.448436 2020-12-18 06:33:03.448436 0 \N 8782 \N 1210 \N 3766 1.0 1 2020-12-18 06:34:22.392715 2020-12-18 06:34:22.392715 0 \N 8783 \N 1033 \N 3766 1.0 1 2020-12-18 06:34:22.416445 2020-12-18 06:34:22.416445 0 \N 8784 \N 21 \N 3766 1.0 1 2020-12-18 06:34:22.438308 2020-12-18 06:34:22.438308 0 \N 8785 \N 962 \N 3767 1.0 1 2020-12-18 06:35:05.920497 2020-12-18 06:35:05.920497 0 \N 8786 \N 1551 506 \N 1.0 0 2020-12-18 06:45:01.430088 2020-12-18 06:45:01.430088 1 \N 8787 \N 1551 \N 3768 1.0 1 2020-12-18 06:46:18.006408 2020-12-18 06:46:18.006408 0 \N 8788 \N 1537 \N 3769 1.0 1 2020-12-18 06:51:52.072759 2020-12-18 06:51:52.072759 0 \N 8789 \N 1371 \N 3770 1.0 1 2020-12-18 17:12:55.857909 2020-12-18 17:12:55.857909 0 \N 8790 \N 895 \N 3771 1.0 1 2020-12-18 18:41:55.666119 2020-12-18 18:41:55.666119 0 \N 8791 \N 1483 \N \N 3.0 0 2020-12-18 22:12:04.109989 2020-12-18 22:12:04.109989 7 764 8792 \N 1483 \N 3772 1.0 1 2020-12-18 22:12:33.071054 2020-12-18 22:12:33.071054 0 \N 8793 \N 1482 \N 3773 1.0 1 2020-12-18 23:08:12.804057 2020-12-18 23:08:12.804057 0 \N 8794 \N 1547 \N 3774 1.0 1 2020-12-19 00:53:18.618658 2020-12-19 00:53:18.618658 0 \N 8795 \N 1539 \N 3775 1.0 1 2020-12-19 06:13:01.547503 2020-12-19 06:13:01.547503 0 \N 8796 \N 1549 \N 3776 1.0 1 2020-12-19 06:14:07.369996 2020-12-19 06:14:07.369996 0 \N 8797 \N 915 \N 3776 1.0 1 2020-12-19 06:14:07.394606 2020-12-19 06:14:07.394606 0 \N 8798 \N 1375 \N 3777 1.0 1 2020-12-19 06:14:29.480558 2020-12-19 06:14:29.480558 0 \N 8799 \N 1475 \N 3778 1.0 1 2020-12-19 06:15:33.657144 2020-12-19 06:15:33.657144 0 \N 8800 \N 1294 \N 3778 1.0 1 2020-12-19 06:15:33.677719 2020-12-19 06:15:33.677719 0 \N 8801 \N 1471 \N 3779 1.0 1 2020-12-19 06:16:59.862879 2020-12-19 06:16:59.862879 0 \N 8802 \N 1515 \N 3780 1.0 1 2020-12-19 18:18:03.305215 2020-12-19 18:18:03.305215 0 \N 8803 \N 1535 \N 3781 1.0 1 2020-12-19 21:38:42.892079 2020-12-19 21:38:42.892079 0 \N 8804 \N 664 \N 3782 1.0 1 2020-12-19 23:56:33.998662 2020-12-19 23:56:33.998662 0 \N 8805 \N 1085 \N 3783 1.0 1 2020-12-20 00:33:35.625213 2020-12-20 00:33:35.625213 0 \N 8806 \N 1085 \N 3783 1.0 0 2020-12-20 00:38:30.071645 2020-12-20 00:38:30.071645 3 \N 8807 \N 1085 \N 3784 1.0 1 2020-12-20 00:38:45.125125 2020-12-20 00:38:45.125125 0 \N 8808 \N 789 \N 3785 1.0 1 2020-12-20 00:43:43.246596 2020-12-20 00:43:43.246596 0 \N 8809 \N 1029 \N 3786 1.0 1 2020-12-20 01:17:35.390855 2020-12-20 01:17:35.390855 0 \N 8810 \N 1209 \N 3787 1.0 1 2020-12-20 01:45:07.635037 2020-12-20 01:45:07.635037 0 \N 8811 \N 1504 \N \N 2.0 0 2020-12-20 01:49:04.207091 2020-12-20 01:49:04.207091 7 765 8812 \N 1371 \N \N 2.0 0 2020-12-20 01:49:04.224042 2020-12-20 01:49:04.224042 7 765 8813 \N 1475 \N \N 5.0 0 2020-12-20 01:49:04.240356 2020-12-20 01:49:04.240356 7 765 8814 \N 1504 \N 3788 1.0 1 2020-12-20 01:49:26.640539 2020-12-20 01:49:26.640539 0 \N 8815 \N 1126 \N 3789 1.0 1 2020-12-20 06:08:36.1717 2020-12-20 06:08:36.1717 0 \N 8816 \N 1547 \N 3790 1.0 1 2020-12-20 06:09:09.35778 2020-12-20 06:09:09.35778 0 \N 8817 \N 1126 \N 3791 1.0 1 2020-12-20 06:09:25.39658 2020-12-20 06:09:25.39658 0 \N 8818 \N 1297 \N 3792 1.0 1 2020-12-20 06:09:48.552083 2020-12-20 06:09:48.552083 0 \N 8819 \N 1529 \N 3793 1.0 1 2020-12-20 06:10:29.362591 2020-12-20 06:10:29.362591 0 \N 8820 \N 1397 \N 3794 1.0 1 2020-12-20 06:10:49.807889 2020-12-20 06:10:49.807889 0 \N 8821 \N 1126 \N 3795 1.0 1 2020-12-20 06:11:13.577094 2020-12-20 06:11:13.577094 0 \N 8822 \N 1126 \N 3796 1.0 1 2020-12-20 06:11:37.105539 2020-12-20 06:11:37.105539 0 \N 8823 \N 1366 \N 3797 1.0 1 2020-12-20 06:13:10.402858 2020-12-20 06:13:10.402858 0 \N 8824 \N 1549 \N 3798 1.0 1 2020-12-20 06:17:40.40771 2020-12-20 06:17:40.40771 0 \N 8825 \N 1366 \N 3797 1.0 0 2020-12-20 06:18:08.016468 2020-12-20 06:18:08.016468 3 \N 8826 \N 1467 \N 3799 1.0 1 2020-12-20 06:19:19.797794 2020-12-20 06:19:19.797794 0 \N 8827 \N 1495 \N 3800 1.0 1 2020-12-20 06:20:58.824267 2020-12-20 06:20:58.824267 0 \N 8828 \N 1495 \N 3800 1.0 0 2020-12-20 06:21:02.183028 2020-12-20 06:21:02.183028 3 \N 8829 \N 1495 \N 3801 1.0 1 2020-12-20 06:21:18.166149 2020-12-20 06:21:18.166149 0 \N 8830 \N 1126 \N 3796 1.0 0 2020-12-20 06:24:38.481259 2020-12-20 06:24:38.481259 3 \N 8831 \N 1488 \N 3802 1.0 1 2020-12-20 18:32:21.715583 2020-12-20 18:32:21.715583 0 \N 8832 \N 1549 \N 3803 1.0 1 2020-12-20 21:30:52.60553 2020-12-20 21:30:52.60553 0 \N 8833 \N 1209 \N 3804 1.0 1 2020-12-20 22:34:19.092524 2020-12-20 22:34:19.092524 0 \N 8834 \N 1029 \N 3805 1.0 1 2020-12-20 22:49:32.401085 2020-12-20 22:49:32.401085 0 \N 8835 \N 1122 \N 3806 1.0 1 2020-12-21 17:53:55.526788 2020-12-21 17:53:55.526788 0 \N 8836 \N 41 \N 3807 1.0 1 2020-12-21 18:23:19.723044 2020-12-21 18:23:19.723044 0 \N 8837 \N 1496 \N 3808 1.0 1 2020-12-21 18:34:15.03142 2020-12-21 18:34:15.03142 0 \N 8838 \N 1464 \N 3809 1.0 1 2020-12-21 19:03:24.769897 2020-12-21 19:03:24.769897 0 \N 8839 \N 45 \N 3810 1.0 1 2020-12-21 20:53:18.803087 2020-12-21 20:53:18.803087 0 \N 8840 \N 45 \N 3810 1.0 0 2020-12-21 20:53:22.607656 2020-12-21 20:53:22.607656 3 \N 8841 \N 45 \N 3811 1.0 1 2020-12-21 20:53:38.099885 2020-12-21 20:53:38.099885 0 \N 8842 \N 476 \N 3812 1.0 1 2020-12-21 21:20:13.489797 2020-12-21 21:20:13.489797 0 \N 8843 \N 1300 \N 3813 1.0 1 2020-12-21 21:49:50.699988 2020-12-21 21:49:50.699988 0 \N 8844 \N 369 \N 3814 1.0 1 2020-12-21 22:14:20.980767 2020-12-21 22:14:20.980767 0 \N 8845 \N 1520 \N 3815 1.0 1 2020-12-21 22:38:59.034812 2020-12-21 22:38:59.034812 0 \N 8846 \N 946 \N 3816 1.0 1 2020-12-21 23:03:57.02241 2020-12-21 23:03:57.02241 0 \N 8847 \N 1518 \N 3816 1.0 1 2020-12-21 23:03:57.044804 2020-12-21 23:03:57.044804 0 \N 8848 \N 1375 \N 3817 1.0 1 2020-12-21 23:37:51.919365 2020-12-21 23:37:51.919365 0 \N 8849 \N 1511 \N 3817 1.0 1 2020-12-21 23:37:51.942492 2020-12-21 23:37:51.942492 0 \N 8850 \N 1550 \N 3817 1.0 1 2020-12-21 23:37:51.964917 2020-12-21 23:37:51.964917 0 \N 8851 \N 797 \N 3818 1.0 1 2020-12-21 23:39:19.236017 2020-12-21 23:39:19.236017 0 \N 8852 \N 1490 \N 3819 1.0 1 2020-12-22 00:28:30.923144 2020-12-22 00:28:30.923144 0 \N 8853 \N 1322 \N 3819 1.0 1 2020-12-22 00:28:30.950954 2020-12-22 00:28:30.950954 0 \N 8854 \N 1397 \N 3820 1.0 1 2020-12-22 00:30:29.312086 2020-12-22 00:30:29.312086 0 \N 8855 \N 1491 \N 3821 1.0 1 2020-12-22 01:04:05.15603 2020-12-22 01:04:05.15603 0 \N 8856 \N 782 \N 3821 1.0 1 2020-12-22 01:04:05.178928 2020-12-22 01:04:05.178928 0 \N 8857 \N 1371 \N 3822 1.0 1 2020-12-22 01:06:58.952346 2020-12-22 01:06:58.952346 0 \N 8858 \N 1372 \N 3823 1.0 1 2020-12-22 01:48:47.21142 2020-12-22 01:48:47.21142 0 \N 8859 \N 782 \N 3821 1.0 0 2020-12-22 01:55:18.446349 2020-12-22 01:55:18.446349 3 \N 8860 \N 1491 \N 3821 1.0 0 2020-12-22 01:55:18.468329 2020-12-22 01:55:18.468329 3 \N 8861 \N 1368 \N 3824 1.0 1 2020-12-22 02:08:11.389413 2020-12-22 02:08:11.389413 0 \N 8862 \N 1491 \N 3825 1.0 1 2020-12-22 02:10:25.219822 2020-12-22 02:10:25.219822 0 \N 8863 \N 782 \N 3825 1.0 1 2020-12-22 02:10:25.243728 2020-12-22 02:10:25.243728 0 \N 8864 \N 1126 \N 3826 1.0 1 2020-12-22 02:11:24.197631 2020-12-22 02:11:24.197631 0 \N 8865 \N 782 \N 3825 1.0 0 2020-12-22 02:13:13.046857 2020-12-22 02:13:13.046857 9 \N 8866 \N 1491 \N 3825 1.0 0 2020-12-22 02:13:13.069464 2020-12-22 02:13:13.069464 9 \N 8867 \N 782 \N 3827 1.0 1 2020-12-22 02:16:47.034348 2020-12-22 02:16:47.034348 0 \N 8868 \N 1491 \N 3827 1.0 1 2020-12-22 02:16:47.057609 2020-12-22 02:16:47.057609 0 \N 8869 \N 1491 \N 3827 1.0 0 2020-12-22 02:22:04.803795 2020-12-22 02:22:04.803795 9 \N 8870 \N 782 \N 3827 1.0 0 2020-12-22 02:22:04.840503 2020-12-22 02:22:04.840503 9 \N 8871 \N 1550 \N 3828 1.0 1 2020-12-22 18:00:59.176274 2020-12-22 18:00:59.176274 0 \N 8872 \N 1361 \N 3828 1.0 1 2020-12-22 18:00:59.205341 2020-12-22 18:00:59.205341 0 \N 8873 \N 1522 \N 3829 1.0 1 2020-12-22 18:16:42.302708 2020-12-22 18:16:42.302708 0 \N 8874 \N 947 \N 3829 1.0 1 2020-12-22 18:16:42.326785 2020-12-22 18:16:42.326785 0 \N 8875 \N 1372 \N 3830 1.0 1 2020-12-22 19:11:27.739694 2020-12-22 19:11:27.739694 0 \N 8876 \N 1357 \N 3831 1.0 1 2020-12-22 19:20:51.437337 2020-12-22 19:20:51.437337 0 \N 8877 \N 1375 \N 3832 1.0 1 2020-12-22 19:29:22.889624 2020-12-22 19:29:22.889624 0 \N 8878 \N 1237 \N 3833 1.0 1 2020-12-22 20:21:23.226203 2020-12-22 20:21:23.226203 0 \N 8879 \N 1203 \N 3833 1.0 1 2020-12-22 20:21:23.248349 2020-12-22 20:21:23.248349 0 \N 8880 \N 1198 \N 3833 1.0 1 2020-12-22 20:21:23.268738 2020-12-22 20:21:23.268738 0 \N 8881 \N 1242 \N 3833 1.0 1 2020-12-22 20:21:23.289391 2020-12-22 20:21:23.289391 0 \N 8882 \N 1507 \N 3833 1.0 1 2020-12-22 20:21:23.309699 2020-12-22 20:21:23.309699 0 \N 8883 \N 1159 \N 3834 1.0 1 2020-12-22 20:22:49.848286 2020-12-22 20:22:49.848286 0 \N 8884 \N 1371 \N 3835 1.0 1 2020-12-22 20:22:52.962094 2020-12-22 20:22:52.962094 0 \N 8885 \N 1530 \N 3835 1.0 1 2020-12-22 20:22:52.992006 2020-12-22 20:22:52.992006 0 \N 8886 \N 1473 \N \N 1.0 0 2020-12-22 20:26:10.055215 2020-12-22 20:26:10.055215 7 766 8887 \N 1178 \N \N 1.0 0 2020-12-22 20:27:17.657271 2020-12-22 20:27:17.657271 7 767 8888 \N 1178 \N 3836 1.0 1 2020-12-22 20:27:45.557425 2020-12-22 20:27:45.557425 0 \N 8889 \N 41 \N 3837 1.0 1 2020-12-22 20:36:37.202339 2020-12-22 20:36:37.202339 0 \N 8890 \N 1552 507 \N 1.0 0 2020-12-22 20:51:48.400472 2020-12-22 20:51:48.400472 1 \N 8891 \N 1553 508 \N 1.0 0 2020-12-22 20:52:43.502455 2020-12-22 20:52:43.502455 1 \N 8892 \N 1553 \N 3838 1.0 1 2020-12-22 20:54:11.798905 2020-12-22 20:54:11.798905 0 \N 8893 \N 1161 \N 3838 1.0 1 2020-12-22 20:54:11.827621 2020-12-22 20:54:11.827621 0 \N 8894 \N 339 \N 3838 1.0 1 2020-12-22 20:54:11.861223 2020-12-22 20:54:11.861223 0 \N 8895 \N 1189 \N 3838 1.0 1 2020-12-22 20:54:11.894274 2020-12-22 20:54:11.894274 0 \N 8896 \N 1209 \N 3839 1.0 1 2020-12-22 21:00:28.543891 2020-12-22 21:00:28.543891 0 \N 8897 \N 1374 \N 3839 1.0 1 2020-12-22 21:00:28.567713 2020-12-22 21:00:28.567713 0 \N 8898 \N 1092 \N 3839 1.0 1 2020-12-22 21:00:28.591437 2020-12-22 21:00:28.591437 0 \N 8899 \N 1424 \N 3840 1.0 1 2020-12-22 21:05:21.819866 2020-12-22 21:05:21.819866 0 \N 8900 \N 1033 \N 3840 1.0 1 2020-12-22 21:05:21.844103 2020-12-22 21:05:21.844103 0 \N 8901 \N 1384 \N 3840 1.0 1 2020-12-22 21:05:21.865598 2020-12-22 21:05:21.865598 0 \N 8902 \N 1540 \N 3841 1.0 1 2020-12-22 21:19:40.467798 2020-12-22 21:19:40.467798 0 \N 8903 \N 1552 \N 3842 1.0 1 2020-12-22 21:23:28.974761 2020-12-22 21:23:28.974761 0 \N 8904 \N 1526 \N 3842 1.0 1 2020-12-22 21:23:28.997856 2020-12-22 21:23:28.997856 0 \N 8905 \N 1361 \N 3842 1.0 1 2020-12-22 21:23:29.020429 2020-12-22 21:23:29.020429 0 \N 8906 \N 1174 \N 3842 1.0 1 2020-12-22 21:23:29.042007 2020-12-22 21:23:29.042007 0 \N 8907 \N 896 \N 3843 1.0 1 2020-12-22 22:08:07.85612 2020-12-22 22:08:07.85612 0 \N 8908 \N 897 \N 3843 1.0 1 2020-12-22 22:08:07.889656 2020-12-22 22:08:07.889656 0 \N 8909 \N 897 \N 3843 1.0 0 2020-12-22 22:08:11.820927 2020-12-22 22:08:11.820927 3 \N 8910 \N 896 \N 3843 1.0 0 2020-12-22 22:08:11.843881 2020-12-22 22:08:11.843881 3 \N 8911 \N 897 \N 3844 1.0 1 2020-12-22 22:09:12.548326 2020-12-22 22:09:12.548326 0 \N 8912 \N 896 \N 3844 1.0 1 2020-12-22 22:09:12.578957 2020-12-22 22:09:12.578957 0 \N 8913 \N 258 \N 3845 1.0 1 2020-12-22 22:34:41.699522 2020-12-22 22:34:41.699522 0 \N 8914 \N 907 \N 3846 1.0 1 2020-12-22 23:07:09.635931 2020-12-22 23:07:09.635931 0 \N 8915 \N 367 \N 3846 1.0 1 2020-12-22 23:07:09.659672 2020-12-22 23:07:09.659672 0 \N 8916 \N 1496 \N 3847 1.0 1 2020-12-22 23:08:47.452306 2020-12-22 23:08:47.452306 0 \N 8917 \N 1522 \N 3848 1.0 1 2020-12-22 23:12:23.132938 2020-12-22 23:12:23.132938 0 \N 8918 \N 896 \N \N 4.0 0 2020-12-22 23:38:00.124542 2020-12-22 23:38:00.124542 7 768 8919 \N 898 \N \N 4.0 0 2020-12-22 23:38:00.147016 2020-12-22 23:38:00.147016 7 768 8920 \N 898 \N 3849 1.0 1 2020-12-22 23:38:35.050167 2020-12-22 23:38:35.050167 0 \N 8921 \N 1522 \N 3850 1.0 1 2020-12-22 23:52:29.785923 2020-12-22 23:52:29.785923 0 \N 8922 \N 1378 \N 3850 1.0 1 2020-12-22 23:52:29.818831 2020-12-22 23:52:29.818831 0 \N 8923 \N 1077 \N 3851 1.0 1 2020-12-23 00:16:03.861496 2020-12-23 00:16:03.861496 0 \N 8924 \N 697 \N \N 1.0 0 2020-12-23 00:23:33.621864 2020-12-23 00:23:33.621864 7 770 8925 \N 1510 \N \N 2.0 0 2020-12-23 00:23:40.763193 2020-12-23 00:23:40.763193 7 769 8926 \N 697 \N 3852 1.0 1 2020-12-23 00:25:21.518504 2020-12-23 00:25:21.518504 0 \N 8927 \N 1510 \N 3852 1.0 1 2020-12-23 00:25:21.544811 2020-12-23 00:25:21.544811 0 \N 8928 \N 871 \N \N 3.0 0 2020-12-23 00:41:17.39512 2020-12-23 00:41:17.39512 7 771 8929 \N 871 \N 3853 1.0 1 2020-12-23 00:41:44.455675 2020-12-23 00:41:44.455675 0 \N 8930 \N 885 \N 3854 1.0 1 2020-12-23 00:55:12.546802 2020-12-23 00:55:12.546802 0 \N 8931 \N 1519 \N 3854 1.0 1 2020-12-23 00:55:12.584553 2020-12-23 00:55:12.584553 0 \N 8932 \N 1517 \N 3855 1.0 1 2020-12-23 01:25:02.822867 2020-12-23 01:25:02.822867 0 \N 8933 \N 273 \N 3856 1.0 1 2020-12-23 01:30:08.8506 2020-12-23 01:30:08.8506 0 \N 8934 \N 1526 \N \N 1.0 0 2020-12-23 01:38:51.1216 2020-12-23 01:38:51.1216 7 772 8935 \N 1526 \N 3857 1.0 1 2020-12-23 01:39:20.853478 2020-12-23 01:39:20.853478 0 \N 8936 \N 1493 \N 3858 1.0 1 2020-12-23 01:40:47.592091 2020-12-23 01:40:47.592091 0 \N 8937 \N 1517 \N 3859 1.0 1 2020-12-23 01:48:38.284019 2020-12-23 01:48:38.284019 0 \N 8938 \N 705 \N 3860 1.0 1 2020-12-23 01:51:41.402996 2020-12-23 01:51:41.402996 0 \N 8939 \N 1209 \N 3860 1.0 1 2020-12-23 01:51:41.425382 2020-12-23 01:51:41.425382 0 \N 8940 \N 1110 \N 3860 1.0 1 2020-12-23 01:51:41.455928 2020-12-23 01:51:41.455928 0 \N 8941 \N 1375 \N 3861 1.0 1 2020-12-23 01:54:14.808455 2020-12-23 01:54:14.808455 0 \N 8942 \N 1372 \N 3862 1.0 1 2020-12-23 02:13:45.62801 2020-12-23 02:13:45.62801 0 \N 8943 \N 1549 \N 3862 1.0 1 2020-12-23 02:13:45.652103 2020-12-23 02:13:45.652103 0 \N 8944 \N 1536 \N 3863 1.0 1 2020-12-23 02:26:40.726433 2020-12-23 02:26:40.726433 0 \N 8945 \N 981 \N 3864 1.0 1 2020-12-23 02:41:49.992787 2020-12-23 02:41:49.992787 0 \N 8946 \N 1517 \N 3748 1.0 0 2020-12-23 02:44:46.661413 2020-12-23 02:44:46.661413 9 \N 8947 \N 1521 \N 3748 1.0 0 2020-12-23 02:44:46.693046 2020-12-23 02:44:46.693046 9 \N 8948 \N 944 \N \N 1.0 0 2020-12-23 02:51:42.749355 2020-12-23 02:51:42.749355 7 773 8949 \N 944 \N \N 1.0 0 2020-12-23 02:51:44.74451 2020-12-23 02:51:44.74451 7 773 8950 \N 1521 \N 3865 1.0 1 2020-12-23 02:52:15.330775 2020-12-23 02:52:15.330775 0 \N 8951 \N 944 \N 3865 1.0 1 2020-12-23 02:52:15.35589 2020-12-23 02:52:15.35589 0 \N 8952 \N 1547 \N 3866 1.0 1 2020-12-23 03:33:57.254861 2020-12-23 03:33:57.254861 0 \N 8953 \N 1518 \N 3867 1.0 1 2020-12-23 03:34:25.123277 2020-12-23 03:34:25.123277 0 \N 8954 \N 1519 \N 3867 1.0 1 2020-12-23 03:34:25.150098 2020-12-23 03:34:25.150098 0 \N 8955 \N 1517 \N 3868 1.0 1 2020-12-23 03:35:02.410018 2020-12-23 03:35:02.410018 0 \N 8956 \N 1298 \N 3869 1.0 1 2020-12-23 03:35:26.482802 2020-12-23 03:35:26.482802 0 \N 8957 \N 1521 \N 3870 1.0 1 2020-12-23 03:35:54.03463 2020-12-23 03:35:54.03463 0 \N 8958 \N 1228 \N 3870 1.0 1 2020-12-23 03:35:54.064829 2020-12-23 03:35:54.064829 0 \N 8959 \N 1164 \N 3871 2.0 1 2020-12-23 03:36:22.729949 2020-12-23 03:36:22.729949 0 \N 8960 \N 1550 \N 3872 1.0 1 2020-12-23 03:37:14.073076 2020-12-23 03:37:14.073076 0 \N 8961 \N 1512 \N 3873 1.0 1 2020-12-23 03:39:10.980025 2020-12-23 03:39:10.980025 0 \N 8962 \N 782 \N 3873 1.0 1 2020-12-23 03:39:11.00497 2020-12-23 03:39:11.00497 0 \N 8963 \N 989 \N 3873 1.0 1 2020-12-23 03:39:11.029615 2020-12-23 03:39:11.029615 0 \N 8964 \N 1356 \N 3873 1.0 1 2020-12-23 03:39:11.053576 2020-12-23 03:39:11.053576 0 \N 8965 \N 783 \N 3874 1.0 1 2020-12-23 03:39:48.982967 2020-12-23 03:39:48.982967 0 \N 8966 \N 1500 \N 3874 1.0 1 2020-12-23 03:39:49.009441 2020-12-23 03:39:49.009441 0 \N 8967 \N 1321 \N 3875 1.0 1 2020-12-23 17:37:29.10327 2020-12-23 17:37:29.10327 0 \N 8968 \N 1288 \N 3876 1.0 1 2020-12-23 17:43:36.562265 2020-12-23 17:43:36.562265 0 \N 8969 \N 1445 \N 3876 1.0 1 2020-12-23 17:43:36.585506 2020-12-23 17:43:36.585506 0 \N 8970 \N 1471 \N \N 1.0 0 2020-12-23 18:37:35.398394 2020-12-23 18:37:35.398394 7 774 8971 \N 1352 \N \N 1.0 0 2020-12-23 18:37:35.419669 2020-12-23 18:37:35.419669 7 774 8972 \N 341 \N \N 1.0 0 2020-12-23 18:37:35.439099 2020-12-23 18:37:35.439099 7 774 8973 \N 1354 \N \N 1.0 0 2020-12-23 18:37:35.459115 2020-12-23 18:37:35.459115 7 774 8974 \N 1175 \N \N 1.0 0 2020-12-23 18:37:35.479079 2020-12-23 18:37:35.479079 7 774 8975 \N 1353 \N \N 1.0 0 2020-12-23 18:37:35.498721 2020-12-23 18:37:35.498721 7 774 8976 \N 1476 \N \N 1.0 0 2020-12-23 18:37:35.518366 2020-12-23 18:37:35.518366 7 774 8977 \N 1477 \N \N 1.0 0 2020-12-23 18:37:35.537257 2020-12-23 18:37:35.537257 7 774 8978 \N 1478 \N \N 1.0 0 2020-12-23 18:37:35.556447 2020-12-23 18:37:35.556447 7 774 8979 \N 1157 \N \N 1.0 0 2020-12-23 18:37:35.572509 2020-12-23 18:37:35.572509 7 774 8980 \N 1525 \N \N 2.0 0 2020-12-23 18:38:14.102181 2020-12-23 18:38:14.102181 7 775 8981 \N 1554 509 \N 1.0 0 2020-12-23 18:40:47.720377 2020-12-23 18:40:47.720377 1 \N 8982 \N 1525 \N 3877 1.0 1 2020-12-23 18:41:19.75558 2020-12-23 18:41:19.75558 0 \N 8983 \N 1554 \N 3877 1.0 1 2020-12-23 18:41:19.783708 2020-12-23 18:41:19.783708 0 \N 8984 \N 800 \N 3877 1.0 1 2020-12-23 18:41:19.812724 2020-12-23 18:41:19.812724 0 \N 8985 \N 1475 \N 3878 1.0 1 2020-12-23 18:43:38.567668 2020-12-23 18:43:38.567668 0 \N 8986 \N 1001 \N 3879 1.0 1 2020-12-23 18:51:51.222938 2020-12-23 18:51:51.222938 0 \N 8987 \N 1483 \N 3880 1.0 1 2020-12-23 19:08:51.767399 2020-12-23 19:08:51.767399 0 \N 8988 \N 1372 \N 3880 1.0 1 2020-12-23 19:08:51.794341 2020-12-23 19:08:51.794341 0 \N 8989 \N 1377 \N 3881 1.0 1 2020-12-23 19:12:20.111303 2020-12-23 19:12:20.111303 0 \N 8990 \N 1371 \N 3882 1.0 1 2020-12-23 19:42:43.046888 2020-12-23 19:42:43.046888 0 \N 8991 \N 1371 \N 3882 1.0 0 2020-12-23 19:44:30.102507 2020-12-23 19:44:30.102507 3 \N 8992 \N 1257 \N 3883 1.0 1 2020-12-23 19:54:20.031973 2020-12-23 19:54:20.031973 0 \N 8993 \N 1371 \N 3883 1.0 1 2020-12-23 19:54:20.054286 2020-12-23 19:54:20.054286 0 \N 8994 \N 1495 \N 3416 1.0 0 2020-12-23 20:11:41.785056 2020-12-23 20:11:41.785056 8 \N 8995 \N 1513 \N 3414 1.0 0 2020-12-23 20:11:51.45143 2020-12-23 20:11:51.45143 8 \N 8996 \N 1126 \N 3884 1.0 1 2020-12-23 20:22:32.875556 2020-12-23 20:22:32.875556 0 \N 8997 \N 1227 \N 3885 1.0 1 2020-12-23 20:41:08.636813 2020-12-23 20:41:08.636813 0 \N 8998 \N 1215 \N 3885 1.0 1 2020-12-23 20:41:08.661437 2020-12-23 20:41:08.661437 0 \N 8999 \N 24 \N 3886 1.0 1 2020-12-23 21:44:31.143266 2020-12-23 21:44:31.143266 0 \N 9000 \N 985 \N 3887 1.0 1 2020-12-23 22:28:20.381381 2020-12-23 22:28:20.381381 0 \N 9001 \N 1491 \N 3888 1.0 1 2020-12-23 22:44:53.69216 2020-12-23 22:44:53.69216 0 \N 9002 \N 928 \N 3888 1.0 1 2020-12-23 22:44:53.722165 2020-12-23 22:44:53.722165 0 \N 9003 \N 1550 \N 3888 1.0 1 2020-12-23 22:44:53.75331 2020-12-23 22:44:53.75331 0 \N 9004 \N 668 \N 3889 1.0 1 2020-12-23 23:03:22.587188 2020-12-23 23:03:22.587188 0 \N 9005 \N 1549 \N 3890 1.0 1 2020-12-23 23:04:18.094861 2020-12-23 23:04:18.094861 0 \N 9006 \N 1550 \N 3891 1.0 1 2020-12-23 23:08:46.503586 2020-12-23 23:08:46.503586 0 \N 9007 \N 1157 \N 3891 1.0 1 2020-12-23 23:08:46.534654 2020-12-23 23:08:46.534654 0 \N 9008 \N 492 \N 3892 1.0 1 2020-12-23 23:18:59.164612 2020-12-23 23:18:59.164612 0 \N 9009 \N 1486 \N 3893 1.0 1 2020-12-24 00:02:43.540785 2020-12-24 00:02:43.540785 0 \N 9010 \N 1469 \N 3894 1.0 1 2020-12-24 00:19:51.087995 2020-12-24 00:19:51.087995 0 \N 9011 \N 790 \N 3895 1.0 1 2020-12-24 01:14:54.849304 2020-12-24 01:14:54.849304 0 \N 9012 \N 877 \N 3895 1.0 1 2020-12-24 01:14:54.873473 2020-12-24 01:14:54.873473 0 \N 9013 \N 1263 \N 3896 1.0 1 2020-12-24 01:18:21.748559 2020-12-24 01:18:21.748559 0 \N 9014 \N 1374 \N 3897 1.0 1 2020-12-24 01:42:53.247128 2020-12-24 01:42:53.247128 0 \N 9015 \N 861 \N 3898 1.0 1 2020-12-24 01:58:36.354506 2020-12-24 01:58:36.354506 0 \N 9016 \N 993 \N 3899 1.0 1 2020-12-24 02:08:47.724603 2020-12-24 02:08:47.724603 0 \N 9017 \N 1515 \N \N 3.0 0 2020-12-24 02:34:40.096579 2020-12-24 02:34:40.096579 7 776 9018 \N 1515 \N 3900 1.0 1 2020-12-24 02:34:54.886666 2020-12-24 02:34:54.886666 0 \N 9019 \N 1523 \N 3901 1.0 1 2020-12-24 02:39:37.78753 2020-12-24 02:39:37.78753 0 \N 9020 \N 1371 \N 3902 1.0 1 2020-12-24 18:00:49.420379 2020-12-24 18:00:49.420379 0 \N 9021 \N 783 \N 3903 1.0 1 2020-12-24 18:45:34.749028 2020-12-24 18:45:34.749028 0 \N 9022 \N 1375 \N 3904 1.0 1 2020-12-24 18:53:57.413303 2020-12-24 18:53:57.413303 0 \N 9023 \N 1489 \N 3905 1.0 1 2020-12-24 19:17:11.900617 2020-12-24 19:17:11.900617 0 \N 9024 \N 1263 \N 3906 1.0 1 2020-12-24 19:29:19.050484 2020-12-24 19:29:19.050484 0 \N 9025 \N 369 \N 3906 1.0 1 2020-12-24 19:29:19.087995 2020-12-24 19:29:19.087995 0 \N 9026 \N 1545 \N 3907 1.0 1 2020-12-24 19:57:14.646085 2020-12-24 19:57:14.646085 0 \N 9027 \N 1490 \N 3908 1.0 1 2020-12-24 20:06:59.208071 2020-12-24 20:06:59.208071 0 \N 9028 \N 1201 \N 3909 1.0 1 2020-12-24 21:03:39.640246 2020-12-24 21:03:39.640246 0 \N 9029 \N 1294 \N 3909 1.0 1 2020-12-24 21:03:39.663193 2020-12-24 21:03:39.663193 0 \N 9030 \N 700 \N 3910 1.0 1 2020-12-24 21:19:26.962104 2020-12-24 21:19:26.962104 0 \N 9031 \N 901 \N 3911 1.0 1 2020-12-24 21:36:42.03421 2020-12-24 21:36:42.03421 0 \N 9032 \N 1433 \N 3912 1.0 1 2020-12-24 21:43:34.075791 2020-12-24 21:43:34.075791 0 \N 9033 \N 901 \N 3911 1.0 0 2020-12-24 21:45:12.487528 2020-12-24 21:45:12.487528 3 \N 9034 \N 901 \N 3913 1.0 1 2020-12-24 21:48:57.675852 2020-12-24 21:48:57.675852 0 \N 9035 \N 1208 \N 3914 1.0 1 2020-12-24 22:01:55.767587 2020-12-24 22:01:55.767587 0 \N 9036 \N 1531 \N 3915 1.0 1 2020-12-24 22:22:26.460596 2020-12-24 22:22:26.460596 0 \N 9037 \N 1236 \N 3916 1.0 1 2020-12-24 22:26:56.668762 2020-12-24 22:26:56.668762 0 \N 9038 \N 1209 \N 3917 1.0 1 2020-12-24 22:28:13.940828 2020-12-24 22:28:13.940828 0 \N 9039 \N 1294 \N 3918 1.0 1 2020-12-24 22:49:01.800301 2020-12-24 22:49:01.800301 0 \N 9040 \N 1245 \N 3918 1.0 1 2020-12-24 22:49:01.854397 2020-12-24 22:49:01.854397 0 \N 9041 \N 1357 \N \N 2.0 0 2020-12-24 22:49:53.598377 2020-12-24 22:49:53.598377 7 777 9042 \N 1375 \N \N 1.0 0 2020-12-24 22:49:53.622902 2020-12-24 22:49:53.622902 7 777 9043 \N 1374 \N \N 1.0 0 2020-12-24 22:49:53.640656 2020-12-24 22:49:53.640656 7 777 9044 \N 757 \N \N 1.0 0 2020-12-24 22:49:53.657055 2020-12-24 22:49:53.657055 7 777 9045 \N 769 \N \N 3.0 0 2020-12-24 22:50:20.560317 2020-12-24 22:50:20.560317 7 778 9046 \N 769 \N 3919 1.0 1 2020-12-24 22:50:47.86634 2020-12-24 22:50:47.86634 0 \N 9047 \N 1245 \N 3918 1.0 0 2020-12-24 22:51:38.005392 2020-12-24 22:51:38.005392 3 \N 9048 \N 1294 \N 3918 1.0 0 2020-12-24 22:51:38.02685 2020-12-24 22:51:38.02685 3 \N 9049 \N 1357 \N 3920 1.0 1 2020-12-24 22:56:29.909754 2020-12-24 22:56:29.909754 0 \N 9050 \N 1294 \N 3921 1.0 1 2020-12-24 22:57:17.66507 2020-12-24 22:57:17.66507 0 \N 9051 \N 1245 \N 3921 1.0 1 2020-12-24 22:57:17.68686 2020-12-24 22:57:17.68686 0 \N 9052 \N 1145 \N 3922 1.0 1 2020-12-25 00:00:48.263963 2020-12-25 00:00:48.263963 0 \N 9053 \N 1373 \N 3923 1.0 1 2020-12-25 00:09:58.927889 2020-12-25 00:09:58.927889 0 \N 9054 \N 367 \N 3924 2.0 1 2020-12-25 00:13:13.274845 2020-12-25 00:13:13.274845 0 \N 9055 \N 1549 \N \N 2.0 0 2020-12-25 01:02:20.299255 2020-12-25 01:02:20.299255 7 779 9056 \N 1550 \N \N 1.0 0 2020-12-25 01:02:20.319128 2020-12-25 01:02:20.319128 7 779 9057 \N 1529 \N \N 1.0 0 2020-12-25 01:02:20.33858 2020-12-25 01:02:20.33858 7 779 9058 \N 1464 \N \N 1.0 0 2020-12-25 01:02:20.358127 2020-12-25 01:02:20.358127 7 779 9059 \N 47 \N \N 1.0 0 2020-12-25 01:05:15.75868 2020-12-25 01:05:15.75868 7 780 9060 \N 486 \N 3925 1.0 1 2020-12-25 01:05:47.535953 2020-12-25 01:05:47.535953 0 \N 9061 \N 47 \N 3925 1.0 1 2020-12-25 01:05:47.568649 2020-12-25 01:05:47.568649 0 \N 9062 \N 1464 \N 3926 1.0 1 2020-12-25 01:12:22.508922 2020-12-25 01:12:22.508922 0 \N 9063 \N 1550 \N 3927 1.0 1 2020-12-25 01:24:03.225707 2020-12-25 01:24:03.225707 0 \N 9064 \N 1294 \N 3928 1.0 1 2020-12-25 02:40:46.35253 2020-12-25 02:40:46.35253 0 \N 9065 \N 1375 \N 3929 1.0 1 2020-12-26 18:28:52.199687 2020-12-26 18:28:52.199687 0 \N 9066 \N 367 \N 3930 4.0 1 2020-12-26 19:42:50.119173 2020-12-26 19:42:50.119173 0 \N 9067 \N 351 \N \N 1.0 0 2020-12-26 19:49:42.16744 2020-12-26 19:49:42.16744 7 781 9068 \N 351 \N 3931 1.0 1 2020-12-26 19:50:45.057464 2020-12-26 19:50:45.057464 0 \N 9069 \N 781 \N 3932 1.0 1 2020-12-26 22:22:47.946247 2020-12-26 22:22:47.946247 0 \N 9070 \N 1098 \N 3932 1.0 1 2020-12-26 22:22:47.970576 2020-12-26 22:22:47.970576 0 \N 9071 \N 1379 \N 3932 1.0 1 2020-12-26 22:22:47.994263 2020-12-26 22:22:47.994263 0 \N 9072 \N 778 \N 3932 1.0 1 2020-12-26 22:22:48.016451 2020-12-26 22:22:48.016451 0 \N 9073 \N 1229 \N 3932 1.0 1 2020-12-26 22:22:48.038708 2020-12-26 22:22:48.038708 0 \N 9074 \N 913 \N 3932 1.0 1 2020-12-26 22:22:48.060594 2020-12-26 22:22:48.060594 0 \N 9075 \N 1425 \N 3933 1.0 1 2020-12-26 22:26:13.532627 2020-12-26 22:26:13.532627 0 \N 9076 \N 1495 \N 3934 1.0 1 2020-12-27 01:05:35.238135 2020-12-27 01:05:35.238135 0 \N 9077 \N 1268 \N 3934 1.0 1 2020-12-27 01:05:35.262358 2020-12-27 01:05:35.262358 0 \N 9078 \N 1507 \N 3935 1.0 1 2020-12-28 20:32:00.918743 2020-12-28 20:32:00.918743 0 \N 9079 \N 1498 \N 3936 1.0 1 2020-12-28 20:39:21.719727 2020-12-28 20:39:21.719727 0 \N 9080 \N 645 \N 3937 1.0 1 2020-12-28 20:53:41.188508 2020-12-28 20:53:41.188508 0 \N 9081 \N 1247 \N 3938 1.0 1 2020-12-28 21:15:21.442969 2020-12-28 21:15:21.442969 0 \N 9082 \N 1208 \N 3938 1.0 1 2020-12-28 21:15:21.467444 2020-12-28 21:15:21.467444 0 \N 9083 \N 1423 \N 3939 1.0 1 2020-12-28 21:18:34.944222 2020-12-28 21:18:34.944222 0 \N 9084 \N 1456 \N 3939 1.0 1 2020-12-28 21:18:34.965866 2020-12-28 21:18:34.965866 0 \N 9085 \N 1504 \N 3425 1.0 0 2020-12-28 21:29:07.726925 2020-12-28 21:29:07.726925 8 \N 9086 \N 1526 \N 3425 1.0 0 2020-12-28 21:29:07.74977 2020-12-28 21:29:07.74977 8 \N 9087 \N 1526 \N 3940 1.0 1 2020-12-28 21:31:51.024119 2020-12-28 21:31:51.024119 0 \N 9088 \N 1499 \N 3940 1.0 1 2020-12-28 21:31:51.046521 2020-12-28 21:31:51.046521 0 \N 9089 \N 1209 \N 3940 1.0 1 2020-12-28 21:31:51.072469 2020-12-28 21:31:51.072469 0 \N 9090 \N 1543 \N 3941 1.0 1 2020-12-28 22:47:36.772428 2020-12-28 22:47:36.772428 0 \N 9091 \N 1475 \N 3941 1.0 1 2020-12-28 22:47:36.799326 2020-12-28 22:47:36.799326 0 \N 9092 \N 1045 \N 3942 1.0 1 2020-12-28 22:54:08.988722 2020-12-28 22:54:08.988722 0 \N 9093 \N 1540 \N 3943 1.0 1 2020-12-28 23:11:46.354325 2020-12-28 23:11:46.354325 0 \N 9094 \N 672 \N 3944 1.0 1 2020-12-28 23:40:10.272155 2020-12-28 23:40:10.272155 0 \N 9095 \N 1372 \N 3945 1.0 1 2020-12-28 23:44:36.892865 2020-12-28 23:44:36.892865 0 \N 9096 \N 733 \N \N 1.0 0 2020-12-29 00:26:25.664415 2020-12-29 00:26:25.664415 7 783 9097 \N 1475 \N \N 1.0 0 2020-12-29 00:27:34.491427 2020-12-29 00:27:34.491427 7 782 9098 \N 733 \N 3946 1.0 1 2020-12-29 00:28:54.550234 2020-12-29 00:28:54.550234 0 \N 9099 \N 710 \N 3947 1.0 1 2020-12-29 01:09:37.455795 2020-12-29 01:09:37.455795 0 \N 9100 \N 1535 \N 3948 1.0 1 2020-12-29 01:26:35.462918 2020-12-29 01:26:35.462918 0 \N 9101 \N 1371 \N 3949 1.0 1 2020-12-29 02:47:35.562851 2020-12-29 02:47:35.562851 0 \N 9102 \N 1371 \N 3949 1.0 0 2020-12-29 02:48:07.386059 2020-12-29 02:48:07.386059 3 \N 9103 \N 1371 \N 3950 1.0 1 2020-12-29 02:48:53.09319 2020-12-29 02:48:53.09319 0 \N 9104 \N 1375 \N 3950 1.0 1 2020-12-29 02:48:53.114431 2020-12-29 02:48:53.114431 0 \N 9105 \N 1269 \N 3951 1.0 1 2020-12-29 19:19:26.972967 2020-12-29 19:19:26.972967 0 \N 9106 \N 1372 \N 3952 1.0 1 2020-12-29 19:34:16.342564 2020-12-29 19:34:16.342564 0 \N 9107 \N 1504 \N 3953 1.0 1 2020-12-29 21:54:27.944772 2020-12-29 21:54:27.944772 0 \N 9108 \N 790 \N 3954 1.0 1 2020-12-29 23:06:16.896259 2020-12-29 23:06:16.896259 0 \N 9109 \N 1507 \N 3954 1.0 1 2020-12-29 23:06:16.925859 2020-12-29 23:06:16.925859 0 \N 9110 \N 737 \N 3955 1.0 1 2020-12-29 23:47:23.517121 2020-12-29 23:47:23.517121 0 \N 9111 \N 1508 \N 3956 1.0 1 2020-12-29 23:47:38.826099 2020-12-29 23:47:38.826099 0 \N 9112 \N 737 \N 3955 1.0 0 2020-12-29 23:47:40.130433 2020-12-29 23:47:40.130433 3 \N 9113 \N 737 \N 3957 1.0 1 2020-12-29 23:47:59.920948 2020-12-29 23:47:59.920948 0 \N 9114 \N 796 \N \N 4.0 0 2020-12-30 00:16:20.314508 2020-12-30 00:16:20.314508 7 785 9115 \N 1507 \N \N 4.0 0 2020-12-30 00:16:29.765075 2020-12-30 00:16:29.765075 7 784 9116 \N 796 \N 3958 1.0 1 2020-12-30 00:17:19.950139 2020-12-30 00:17:19.950139 0 \N 9117 \N 737 \N 3959 1.0 1 2020-12-30 01:48:42.416383 2020-12-30 01:48:42.416383 0 \N 9118 \N 1062 \N 3959 1.0 1 2020-12-30 01:48:42.450066 2020-12-30 01:48:42.450066 0 \N 9119 \N 367 \N 3960 1.0 1 2020-12-30 17:48:02.432927 2020-12-30 17:48:02.432927 0 \N 9120 \N 22 \N 3960 1.0 1 2020-12-30 17:48:02.457547 2020-12-30 17:48:02.457547 0 \N 9121 \N 1294 \N 3961 1.0 1 2020-12-30 17:51:12.242654 2020-12-30 17:51:12.242654 0 \N 9122 \N 1519 \N 3962 1.0 1 2020-12-30 17:54:32.343308 2020-12-30 17:54:32.343308 0 \N 9123 \N 1543 \N 3963 1.0 1 2020-12-30 18:16:36.000542 2020-12-30 18:16:36.000542 0 \N 9124 \N 985 \N 3964 1.0 1 2020-12-30 18:29:49.376218 2020-12-30 18:29:49.376218 0 \N 9125 \N 1233 \N 3964 1.0 1 2020-12-30 18:29:49.40107 2020-12-30 18:29:49.40107 0 \N 9126 \N 1146 \N 3965 1.0 1 2020-12-30 19:46:20.734774 2020-12-30 19:46:20.734774 0 \N 9127 \N 1535 \N 3948 1.0 0 2020-12-30 20:29:31.360822 2020-12-30 20:29:31.360822 3 \N 9128 \N 1372 \N 3966 1.0 1 2020-12-30 20:41:32.643262 2020-12-30 20:41:32.643262 0 \N 9129 \N 1492 \N 3967 1.0 1 2020-12-30 20:56:49.800476 2020-12-30 20:56:49.800476 0 \N 9130 \N 946 \N \N 4.0 0 2020-12-30 21:57:48.803879 2020-12-30 21:57:48.803879 7 786 9131 \N 946 \N \N 4.0 0 2020-12-30 21:58:57.258434 2020-12-30 21:58:57.258434 7 787 9132 \N 946 \N 3968 1.0 1 2020-12-30 21:59:12.603909 2020-12-30 21:59:12.603909 0 \N 9133 \N 946 \N 3968 1.0 0 2020-12-30 21:59:15.963366 2020-12-30 21:59:15.963366 3 \N 9134 \N 946 \N 3969 1.0 1 2020-12-30 21:59:28.622288 2020-12-30 21:59:28.622288 0 \N 9135 \N 1511 \N 3970 1.0 1 2020-12-30 22:06:37.561849 2020-12-30 22:06:37.561849 0 \N 9136 \N 1493 \N 3971 1.0 1 2020-12-30 22:18:18.131993 2020-12-30 22:18:18.131993 0 \N 9137 \N 946 \N 3972 1.0 1 2020-12-30 22:27:22.35228 2020-12-30 22:27:22.35228 0 \N 9138 \N 946 \N 3972 1.0 0 2020-12-30 22:30:06.834489 2020-12-30 22:30:06.834489 3 \N 9139 \N 946 \N 3973 1.0 1 2020-12-30 22:33:38.841174 2020-12-30 22:33:38.841174 0 \N 9140 \N 1107 \N 3973 1.0 1 2020-12-30 22:33:38.863807 2020-12-30 22:33:38.863807 0 \N 9141 \N 1227 \N 3973 1.0 1 2020-12-30 22:33:38.886119 2020-12-30 22:33:38.886119 0 \N 9142 \N 1209 \N 3974 1.0 1 2020-12-30 23:16:45.076129 2020-12-30 23:16:45.076129 0 \N 9143 \N 1314 \N 3975 1.0 1 2020-12-30 23:24:43.4335 2020-12-30 23:24:43.4335 0 \N 9144 \N 1314 \N 3975 1.0 0 2020-12-30 23:25:13.07954 2020-12-30 23:25:13.07954 3 \N 9145 \N 1314 \N 3976 1.0 1 2020-12-30 23:26:50.791203 2020-12-30 23:26:50.791203 0 \N 9146 \N 1421 \N 3976 1.0 1 2020-12-30 23:26:50.814337 2020-12-30 23:26:50.814337 0 \N 9147 \N 1396 \N 3977 1.0 1 2020-12-30 23:30:48.884124 2020-12-30 23:30:48.884124 0 \N 9148 \N 1515 \N 3978 1.0 1 2020-12-30 23:35:27.088622 2020-12-30 23:35:27.088622 0 \N 9149 \N 877 \N \N 1.0 0 2020-12-30 23:35:56.67162 2020-12-30 23:35:56.67162 7 788 9150 \N 877 \N 3979 1.0 1 2020-12-30 23:38:48.081373 2020-12-30 23:38:48.081373 0 \N 9151 \N 1490 \N 3979 1.0 1 2020-12-30 23:38:48.110021 2020-12-30 23:38:48.110021 0 \N 9152 \N 163 \N \N 1.0 0 2020-12-30 23:52:48.511424 2020-12-30 23:52:48.511424 7 789 9153 \N 1525 \N 3980 1.0 1 2020-12-30 23:54:18.566966 2020-12-30 23:54:18.566966 0 \N 9154 \N 163 \N 3980 1.0 1 2020-12-30 23:54:18.592261 2020-12-30 23:54:18.592261 0 \N 9155 \N 902 \N 3981 1.0 1 2020-12-30 23:58:40.261495 2020-12-30 23:58:40.261495 0 \N 9156 \N 902 \N 3981 1.0 0 2020-12-30 23:58:47.527269 2020-12-30 23:58:47.527269 9 \N 9157 \N 902 \N 3982 1.0 1 2020-12-30 23:59:26.898452 2020-12-30 23:59:26.898452 0 \N 9158 \N 902 \N 3982 1.0 0 2020-12-30 23:59:36.754045 2020-12-30 23:59:36.754045 3 \N 9159 \N 902 \N 3983 1.0 1 2020-12-31 00:00:04.288819 2020-12-31 00:00:04.288819 0 \N 9160 \N 902 \N 3983 1.0 0 2020-12-31 00:00:10.67038 2020-12-31 00:00:10.67038 3 \N 9161 \N 902 \N 3984 1.0 1 2020-12-31 00:00:30.661952 2020-12-31 00:00:30.661952 0 \N 9162 \N 902 \N 3984 1.0 0 2020-12-31 00:00:54.947285 2020-12-31 00:00:54.947285 3 \N 9163 \N 189 \N 3985 1.0 1 2020-12-31 00:02:12.011092 2020-12-31 00:02:12.011092 0 \N 9164 \N 902 \N 3986 1.0 1 2020-12-31 00:02:15.281576 2020-12-31 00:02:15.281576 0 \N 9165 \N 369 \N 3987 2.0 1 2020-12-31 00:08:49.29701 2020-12-31 00:08:49.29701 0 \N 9166 \N 866 \N \N 3.0 0 2020-12-31 00:11:01.83925 2020-12-31 00:11:01.83925 7 790 9167 \N 866 \N 3988 1.0 1 2020-12-31 00:11:23.386908 2020-12-31 00:11:23.386908 0 \N 9168 \N 189 \N 3989 1.0 1 2020-12-31 00:19:52.141534 2020-12-31 00:19:52.141534 0 \N 9169 \N 1527 \N 3990 1.0 1 2020-12-31 00:31:45.449862 2020-12-31 00:31:45.449862 0 \N 9170 \N 1332 \N \N 7.0 0 2020-12-31 00:59:39.30647 2020-12-31 00:59:39.30647 7 791 9171 \N 1332 \N 3991 1.0 1 2020-12-31 01:00:01.861351 2020-12-31 01:00:01.861351 0 \N 9172 \N 1498 \N 3992 1.0 1 2020-12-31 01:02:25.417214 2020-12-31 01:02:25.417214 0 \N 9173 \N 1511 \N 3993 1.0 1 2020-12-31 01:16:16.89802 2020-12-31 01:16:16.89802 0 \N 9174 \N 1221 \N 3994 1.0 1 2020-12-31 01:51:34.556097 2020-12-31 01:51:34.556097 0 \N 9175 \N 1314 \N 3995 1.0 1 2020-12-31 01:54:37.115928 2020-12-31 01:54:37.115928 0 \N 9176 \N 1357 \N 3831 1.0 0 2020-12-31 02:01:25.780023 2020-12-31 02:01:25.780023 3 \N 9177 \N 1300 \N 3996 1.0 1 2020-12-31 02:01:44.036669 2020-12-31 02:01:44.036669 0 \N 9178 \N 1511 \N 3997 1.0 1 2020-12-31 02:09:19.764677 2020-12-31 02:09:19.764677 0 \N 9179 \N 1549 \N 3998 1.0 1 2020-12-31 02:44:07.231699 2020-12-31 02:44:07.231699 0 \N 9180 \N 1357 \N 3999 1.0 1 2020-12-31 03:15:28.788828 2020-12-31 03:15:28.788828 0 \N 9181 \N 1402 \N 4000 1.0 1 2020-12-31 03:24:29.674686 2020-12-31 03:24:29.674686 0 \N 9182 \N 757 \N 4000 1.0 1 2020-12-31 03:24:29.707442 2020-12-31 03:24:29.707442 0 \N 9183 \N 1353 \N 4001 1.0 1 2020-12-31 19:10:18.628553 2020-12-31 19:10:18.628553 0 \N 9184 \N 1545 \N 4002 1.0 1 2020-12-31 19:13:50.768999 2020-12-31 19:13:50.768999 0 \N 9185 \N 1504 \N 4003 1.0 1 2020-12-31 20:10:58.12332 2020-12-31 20:10:58.12332 0 \N 9186 \N 1528 \N 4004 1.0 1 2020-12-31 20:20:44.332719 2020-12-31 20:20:44.332719 0 \N 9187 \N 1441 \N \N 1.0 0 2020-12-31 20:38:03.903539 2020-12-31 20:38:03.903539 7 793 9188 \N 766 \N \N 3.0 0 2020-12-31 20:38:13.156529 2020-12-31 20:38:13.156529 7 792 9189 \N 1441 \N 4005 1.0 1 2020-12-31 20:38:54.79729 2020-12-31 20:38:54.79729 0 \N 9190 \N 766 \N 4005 1.0 1 2020-12-31 20:38:54.819387 2020-12-31 20:38:54.819387 0 \N 9191 \N 1513 \N 4006 1.0 1 2020-12-31 20:45:12.139496 2020-12-31 20:45:12.139496 0 \N 9192 \N 1475 \N 4007 1.0 1 2020-12-31 21:07:32.890367 2020-12-31 21:07:32.890367 0 \N 9193 \N 369 \N 4008 2.0 1 2020-12-31 21:13:13.958729 2020-12-31 21:13:13.958729 0 \N 9194 \N 737 \N 3957 1.0 0 2020-12-31 21:32:03.442687 2020-12-31 21:32:03.442687 9 \N 9195 \N 1498 \N 4009 1.0 1 2020-12-31 21:32:32.424355 2020-12-31 21:32:32.424355 0 \N 9196 \N 800 \N 4010 1.0 1 2020-12-31 21:40:09.58425 2020-12-31 21:40:09.58425 0 \N 9197 \N 1352 \N 4011 1.0 1 2020-12-31 21:46:47.691523 2020-12-31 21:46:47.691523 0 \N 9198 \N 1372 \N 4012 1.0 1 2020-12-31 22:00:41.045491 2020-12-31 22:00:41.045491 0 \N 9199 \N 887 \N 4013 1.0 1 2020-12-31 22:06:15.800438 2020-12-31 22:06:15.800438 0 \N 9200 \N 887 \N 4013 1.0 0 2020-12-31 22:06:59.319265 2020-12-31 22:06:59.319265 3 \N 9201 \N 887 \N 4014 1.0 1 2020-12-31 22:07:15.107275 2020-12-31 22:07:15.107275 0 \N 9202 \N 1244 \N 4014 1.0 1 2020-12-31 22:07:15.127236 2020-12-31 22:07:15.127236 0 \N 9203 \N 888 \N 4015 1.0 1 2020-12-31 22:07:52.185756 2020-12-31 22:07:52.185756 0 \N 9204 \N 1209 \N 4016 1.0 1 2020-12-31 22:33:18.203127 2020-12-31 22:33:18.203127 0 \N 9205 \N 1515 \N 4017 1.0 1 2020-12-31 22:35:46.2888 2020-12-31 22:35:46.2888 0 \N 9206 \N 1377 \N 4018 1.0 1 2020-12-31 22:37:07.787316 2020-12-31 22:37:07.787316 0 \N 9207 \N 1536 \N \N 3.0 0 2020-12-31 22:38:40.794631 2020-12-31 22:38:40.794631 7 794 9208 \N 1536 \N 4019 1.0 1 2020-12-31 22:41:00.191154 2020-12-31 22:41:00.191154 0 \N 9209 \N 776 \N \N 1.0 0 2020-12-31 22:42:19.582501 2020-12-31 22:42:19.582501 7 795 9210 \N 776 \N 4020 1.0 1 2020-12-31 22:43:57.114427 2020-12-31 22:43:57.114427 0 \N 9211 \N 668 \N 4020 1.0 1 2020-12-31 22:43:57.137484 2020-12-31 22:43:57.137484 0 \N 9212 \N 1535 \N \N 1.0 0 2020-12-31 22:47:37.398541 2020-12-31 22:47:37.398541 7 796 9213 \N 1535 \N 4021 1.0 1 2020-12-31 22:50:48.615335 2020-12-31 22:50:48.615335 0 \N 9214 \N 895 \N 4021 1.0 1 2020-12-31 22:50:48.645616 2020-12-31 22:50:48.645616 0 \N 9215 \N 1357 \N 4021 1.0 1 2020-12-31 22:50:48.670452 2020-12-31 22:50:48.670452 0 \N 9216 \N 1371 \N 4022 1.0 1 2021-01-01 00:01:15.955383 2021-01-01 00:01:15.955383 0 \N 9217 \N 1405 \N 4023 1.0 1 2021-01-01 00:14:36.840034 2021-01-01 00:14:36.840034 0 \N 9218 \N 1539 \N 4024 1.0 1 2021-01-01 01:05:53.710082 2021-01-01 01:05:53.710082 0 \N 9219 \N 1005 \N 4025 1.0 1 2021-01-02 23:25:35.484683 2021-01-02 23:25:35.484683 0 \N 9220 \N 1519 \N 4025 1.0 1 2021-01-02 23:25:35.510661 2021-01-02 23:25:35.510661 0 \N 9221 \N 962 \N 4026 1.0 1 2021-01-02 23:28:49.615119 2021-01-02 23:28:49.615119 0 \N 9222 \N 1550 \N 4027 1.0 1 2021-01-02 23:54:09.381848 2021-01-02 23:54:09.381848 0 \N 9223 \N 1475 \N 4028 1.0 1 2021-01-03 19:48:55.54448 2021-01-03 19:48:55.54448 0 \N 9224 \N 1506 \N 4029 2.0 1 2021-01-04 21:18:40.378881 2021-01-04 21:18:40.378881 0 \N 9225 \N 1371 \N 4030 1.0 1 2021-01-04 21:21:23.464245 2021-01-04 21:21:23.464245 0 \N 9226 \N 1547 510 \N 2.0 0 2021-01-04 21:41:21.868583 2021-01-04 21:41:21.868583 1 \N 9227 \N 1555 510 \N 1.0 0 2021-01-04 21:41:21.881443 2021-01-04 21:41:21.881443 1 \N 9228 \N 1556 510 \N 1.0 0 2021-01-04 21:41:21.893268 2021-01-04 21:41:21.893268 1 \N 9229 \N 1547 511 \N 3.0 0 2021-01-04 23:54:52.268883 2021-01-04 23:54:52.268883 1 \N 9230 \N 1555 511 \N 1.0 0 2021-01-04 23:54:52.301888 2021-01-04 23:54:52.301888 1 \N 9231 \N 1556 511 \N 2.0 0 2021-01-04 23:54:52.3302 2021-01-04 23:54:52.3302 1 \N 9232 \N 1557 511 \N 1.0 0 2021-01-04 23:54:52.352952 2021-01-04 23:54:52.352952 1 \N 9233 \N 1558 511 \N 1.0 0 2021-01-04 23:54:52.379093 2021-01-04 23:54:52.379093 1 \N 9234 \N 896 \N 4031 1.0 1 2021-01-05 01:42:09.388185 2021-01-05 01:42:09.388185 0 \N 9235 \N 1394 \N 4031 1.0 1 2021-01-05 01:42:09.411923 2021-01-05 01:42:09.411923 0 \N 9236 \N 13 \N 4032 1.0 1 2021-01-05 20:19:01.54508 2021-01-05 20:19:01.54508 0 \N 9237 \N 1547 \N 4033 1.0 1 2021-01-05 20:23:00.177685 2021-01-05 20:23:00.177685 0 \N 9238 \N 748 \N 4034 1.0 1 2021-01-05 22:51:27.956449 2021-01-05 22:51:27.956449 0 \N 9239 \N 1527 \N 4035 1.0 1 2021-01-05 23:10:46.131577 2021-01-05 23:10:46.131577 0 \N 9240 \N 757 \N \N 2.0 0 2021-01-06 00:06:28.065079 2021-01-06 00:06:28.065079 7 797 9241 \N 1534 \N 4036 1.0 1 2021-01-06 00:07:40.030813 2021-01-06 00:07:40.030813 0 \N 9242 \N 757 \N 4036 1.0 1 2021-01-06 00:07:40.052518 2021-01-06 00:07:40.052518 0 \N 9243 \N 1426 \N 4036 1.0 1 2021-01-06 00:07:40.073957 2021-01-06 00:07:40.073957 0 \N 9244 \N 1374 \N 4037 1.0 1 2021-01-06 23:49:55.615564 2021-01-06 23:49:55.615564 0 \N 9245 \N 1374 \N 4037 1.0 0 2021-01-07 00:00:02.706483 2021-01-07 00:00:02.706483 3 \N 9246 \N 1374 \N 4038 1.0 1 2021-01-07 00:00:39.087772 2021-01-07 00:00:39.087772 0 \N 9247 \N 369 \N 4039 1.0 1 2021-01-07 00:54:39.523507 2021-01-07 00:54:39.523507 0 \N 9248 \N 1300 \N 4040 1.0 1 2021-01-07 01:00:50.374496 2021-01-07 01:00:50.374496 0 \N 9249 \N 1142 \N 3424 1.0 0 2021-01-07 01:08:31.234035 2021-01-07 01:08:31.234035 8 \N 9250 \N 683 \N 4041 1.0 1 2021-01-07 18:06:19.716445 2021-01-07 18:06:19.716445 0 \N 9251 \N 574 \N 4042 1.0 1 2021-01-07 19:04:21.000151 2021-01-07 19:04:21.000151 0 \N 9252 \N 1484 \N 4043 1.0 1 2021-01-07 21:48:45.316867 2021-01-07 21:48:45.316867 0 \N 9253 \N 369 \N 4044 5.0 1 2021-01-07 22:11:14.462774 2021-01-07 22:11:14.462774 0 \N 9254 \N 1495 \N \N 1.0 0 2021-01-07 22:15:07.789665 2021-01-07 22:15:07.789665 7 798 9255 \N 1495 \N 4045 1.0 1 2021-01-07 22:16:33.687673 2021-01-07 22:16:33.687673 0 \N 9256 \N 1517 \N 4046 1.0 1 2021-01-07 23:53:17.290511 2021-01-07 23:53:17.290511 0 \N 9257 \N 1304 \N 4047 1.0 1 2021-01-08 02:10:04.547074 2021-01-08 02:10:04.547074 0 \N 9258 \N 1524 \N 4047 1.0 1 2021-01-08 02:10:04.571644 2021-01-08 02:10:04.571644 0 \N 9259 \N 1230 \N 4047 1.0 1 2021-01-08 02:10:04.596595 2021-01-08 02:10:04.596595 0 \N 9260 \N 1511 \N 4048 1.0 1 2021-01-08 18:19:28.68188 2021-01-08 18:19:28.68188 0 \N 9261 \N 891 \N 4049 1.0 1 2021-01-08 19:06:02.307233 2021-01-08 19:06:02.307233 0 \N 9262 \N 1507 \N 4049 1.0 1 2021-01-08 19:06:02.333429 2021-01-08 19:06:02.333429 0 \N 9263 \N 871 \N 4050 1.0 1 2021-01-08 19:30:10.426966 2021-01-08 19:30:10.426966 0 \N 9264 \N 993 \N 4050 1.0 1 2021-01-08 19:30:10.452546 2021-01-08 19:30:10.452546 0 \N 9265 \N 898 \N \N 2.0 0 2021-01-08 21:39:31.850518 2021-01-08 21:39:31.850518 7 799 9266 \N 1547 \N 4051 1.0 1 2021-01-08 22:14:37.519404 2021-01-08 22:14:37.519404 0 \N 9267 \N 898 \N 4052 1.0 1 2021-01-08 22:25:23.59418 2021-01-08 22:25:23.59418 0 \N 9268 \N 856 \N 4052 1.0 1 2021-01-08 22:25:23.616713 2021-01-08 22:25:23.616713 0 \N 9269 \N 1522 \N 4053 1.0 1 2021-01-08 23:37:29.923324 2021-01-08 23:37:29.923324 0 \N 9270 \N 1334 \N 4054 1.0 1 2021-01-09 01:15:28.655722 2021-01-09 01:15:28.655722 0 \N 9271 \N 1479 \N 4055 1.0 1 2021-01-09 01:39:50.030889 2021-01-09 01:39:50.030889 0 \N 9272 \N 955 \N \N 1.0 0 2021-01-09 02:19:28.171696 2021-01-09 02:19:28.171696 7 801 9273 \N 956 \N \N 1.0 0 2021-01-09 02:19:37.437168 2021-01-09 02:19:37.437168 7 800 9274 \N 955 \N \N 1.0 0 2021-01-09 02:19:37.459132 2021-01-09 02:19:37.459132 7 800 9275 \N 955 \N 4056 1.0 1 2021-01-09 02:31:31.524408 2021-01-09 02:31:31.524408 0 \N 9276 \N 956 \N 4056 1.0 1 2021-01-09 02:31:31.558344 2021-01-09 02:31:31.558344 0 \N 9277 \N 893 \N 4056 1.0 1 2021-01-09 02:31:31.598104 2021-01-09 02:31:31.598104 0 \N 9278 \N 1515 \N 4056 1.0 1 2021-01-09 02:31:31.631418 2021-01-09 02:31:31.631418 0 \N 9279 \N 767 \N 4057 1.0 1 2021-01-09 21:37:50.525605 2021-01-09 21:37:50.525605 0 \N 9280 \N 898 \N 4057 1.0 1 2021-01-09 21:37:50.554325 2021-01-09 21:37:50.554325 0 \N 9281 \N 1528 \N 4057 1.0 1 2021-01-09 21:37:50.583322 2021-01-09 21:37:50.583322 0 \N 9282 \N 978 \N 4057 1.0 1 2021-01-09 21:37:50.617959 2021-01-09 21:37:50.617959 0 \N 9283 \N 1543 \N 4057 1.0 1 2021-01-09 21:37:50.651296 2021-01-09 21:37:50.651296 0 \N 9284 \N 1322 \N 4057 1.0 1 2021-01-09 21:37:50.677986 2021-01-09 21:37:50.677986 0 \N 9285 \N 1010 \N 4058 1.0 1 2021-01-10 00:45:38.305387 2021-01-10 00:45:38.305387 0 \N 9286 \N 1523 \N 4059 1.0 1 2021-01-10 19:53:57.087913 2021-01-10 19:53:57.087913 0 \N 9287 \N 1126 \N 4060 1.0 1 2021-01-10 20:36:38.276919 2021-01-10 20:36:38.276919 0 \N 9288 \N 1535 \N 4061 1.0 1 2021-01-10 21:12:49.407281 2021-01-10 21:12:49.407281 0 \N 9289 \N 1524 \N 4062 1.0 1 2021-01-10 21:39:11.492133 2021-01-10 21:39:11.492133 0 \N 9290 \N 138 \N 4063 1.0 1 2021-01-11 20:25:52.428058 2021-01-11 20:25:52.428058 0 \N 9291 \N 519 \N 4063 1.0 1 2021-01-11 20:25:52.461265 2021-01-11 20:25:52.461265 0 \N 9292 \N 631 \N 4064 1.0 1 2021-01-11 20:32:22.727622 2021-01-11 20:32:22.727622 0 \N 9293 \N 1324 \N 4064 1.0 1 2021-01-11 20:32:22.751345 2021-01-11 20:32:22.751345 0 \N 9294 \N 646 \N 4065 1.0 1 2021-01-11 22:22:56.561715 2021-01-11 22:22:56.561715 0 \N 9295 \N 700 \N 4065 1.0 1 2021-01-11 22:22:56.589728 2021-01-11 22:22:56.589728 0 \N 9296 \N 1559 512 \N 5.0 0 2021-01-11 22:55:16.664087 2021-01-11 22:55:16.664087 1 \N 9297 \N 1294 \N 4066 1.0 1 2021-01-11 22:59:54.278531 2021-01-11 22:59:54.278531 0 \N 9298 \N 1559 \N 4066 1.0 1 2021-01-11 22:59:54.304436 2021-01-11 22:59:54.304436 0 \N 9299 \N 907 \N 4066 2.0 1 2021-01-11 22:59:54.335146 2021-01-11 22:59:54.335146 0 \N 9300 \N 1491 \N 4067 1.0 1 2021-01-12 01:00:19.017364 2021-01-12 01:00:19.017364 0 \N 9301 \N 981 \N 4068 1.0 1 2021-01-12 01:59:02.476541 2021-01-12 01:59:02.476541 0 \N 9302 \N 1358 \N 4069 1.0 1 2021-01-12 18:59:40.455097 2021-01-12 18:59:40.455097 0 \N 9303 \N 1524 \N 4070 1.0 1 2021-01-12 21:06:46.352525 2021-01-12 21:06:46.352525 0 \N 9304 \N 802 \N \N 4.0 0 2021-01-12 21:48:49.12901 2021-01-12 21:48:49.12901 7 802 9305 \N 802 \N 4071 1.0 1 2021-01-12 21:51:05.692506 2021-01-12 21:51:05.692506 0 \N 9306 \N 661 \N 4071 1.0 1 2021-01-12 21:51:05.728019 2021-01-12 21:51:05.728019 0 \N 9307 \N 1560 513 \N 2.0 0 2021-01-13 00:13:24.611961 2021-01-13 00:13:24.611961 1 \N 9308 \N 1561 513 \N 3.0 0 2021-01-13 00:13:24.636017 2021-01-13 00:13:24.636017 1 \N 9309 \N 1562 513 \N 1.0 0 2021-01-13 00:13:24.658123 2021-01-13 00:13:24.658123 1 \N 9310 \N 1563 514 \N 2.0 0 2021-01-13 00:23:04.035676 2021-01-13 00:23:04.035676 1 \N 9311 \N 1564 514 \N 1.0 0 2021-01-13 00:23:04.058445 2021-01-13 00:23:04.058445 1 \N 9312 \N 1560 515 \N 1.0 0 2021-01-13 00:25:16.332927 2021-01-13 00:25:16.332927 1 \N 9313 \N 1563 515 \N 2.0 0 2021-01-13 00:25:16.366914 2021-01-13 00:25:16.366914 1 \N 9314 \N 1564 515 \N 1.0 0 2021-01-13 00:25:16.396684 2021-01-13 00:25:16.396684 1 \N 9315 \N 1559 515 \N 4.0 0 2021-01-13 00:25:16.424905 2021-01-13 00:25:16.424905 1 \N 9316 \N 1547 \N 4072 1.0 1 2021-01-13 19:26:26.620827 2021-01-13 19:26:26.620827 0 \N 9317 \N 1559 \N 4073 1.0 1 2021-01-14 20:00:02.163466 2021-01-14 20:00:02.163466 0 \N 9318 \N 1561 \N 4074 1.0 1 2021-01-14 22:53:13.717047 2021-01-14 22:53:13.717047 0 \N 9319 \N 367 \N 4075 2.0 1 2021-01-14 23:48:00.838583 2021-01-14 23:48:00.838583 0 \N 9320 \N 1397 \N 4076 1.0 1 2021-01-15 01:07:43.257241 2021-01-15 01:07:43.257241 0 \N 9321 \N 1219 \N 4076 1.0 1 2021-01-15 01:07:43.295872 2021-01-15 01:07:43.295872 0 \N 9322 \N 946 \N 4077 1.0 1 2021-01-15 17:52:57.02112 2021-01-15 17:52:57.02112 0 \N 9323 \N 1294 \N 4078 1.0 1 2021-01-15 17:58:35.250391 2021-01-15 17:58:35.250391 0 \N 9324 \N 1480 \N 4079 1.0 1 2021-01-15 23:20:53.154199 2021-01-15 23:20:53.154199 0 \N 9325 \N 1511 \N 4079 2.0 1 2021-01-15 23:20:53.179306 2021-01-15 23:20:53.179306 0 \N 9326 \N 1485 \N 4079 1.0 1 2021-01-15 23:20:53.202032 2021-01-15 23:20:53.202032 0 \N 9327 \N 857 \N \N 6.0 0 2021-01-15 23:37:01.381384 2021-01-15 23:37:01.381384 7 804 9328 \N 857 \N 4080 1.0 1 2021-01-15 23:40:09.559712 2021-01-15 23:40:09.559712 0 \N 9329 \N 1565 516 \N 3.0 0 2021-01-16 01:26:33.141675 2021-01-16 01:26:33.141675 1 \N 9330 \N 1566 516 \N 1.0 0 2021-01-16 01:26:33.169123 2021-01-16 01:26:33.169123 1 \N 9331 \N 1567 516 \N 3.0 0 2021-01-16 01:26:33.195299 2021-01-16 01:26:33.195299 1 \N 9332 \N 1568 516 \N 2.0 0 2021-01-16 01:26:33.22164 2021-01-16 01:26:33.22164 1 \N 9333 \N 1547 \N 4081 1.0 1 2021-01-16 01:40:08.241317 2021-01-16 01:40:08.241317 0 \N 9334 \N 1549 \N 4081 1.0 1 2021-01-16 01:40:08.273324 2021-01-16 01:40:08.273324 0 \N 9335 \N 898 \N 4082 1.0 1 2021-01-16 01:43:53.892085 2021-01-16 01:43:53.892085 0 \N 9336 \N 1510 \N \N 1.0 0 2021-01-16 01:44:33.606106 2021-01-16 01:44:33.606106 7 803 9337 \N 419 \N \N 3.0 0 2021-01-16 01:44:33.623619 2021-01-16 01:44:33.623619 7 803 9338 \N 416 \N \N 2.0 0 2021-01-16 01:44:33.643266 2021-01-16 01:44:33.643266 7 803 9339 \N 161 \N \N 2.0 0 2021-01-16 01:44:33.658856 2021-01-16 01:44:33.658856 7 803 9340 \N 804 \N \N 5.0 0 2021-01-16 01:44:33.676654 2021-01-16 01:44:33.676654 7 803 9341 \N 1539 517 \N 2.0 0 2021-01-16 01:50:08.170579 2021-01-16 01:50:08.170579 1 \N 9342 \N 1539 \N 4083 1.0 1 2021-01-16 01:50:58.687217 2021-01-16 01:50:58.687217 0 \N 9343 \N 787 \N \N 4.0 0 2021-01-16 02:15:47.023259 2021-01-16 02:15:47.023259 7 805 9344 \N 1330 \N 4084 1.0 1 2021-01-16 02:28:45.375607 2021-01-16 02:28:45.375607 0 \N 9345 \N 787 \N 4084 1.0 1 2021-01-16 02:28:45.400713 2021-01-16 02:28:45.400713 0 \N 9346 \N 1519 \N 4084 1.0 1 2021-01-16 02:28:45.427677 2021-01-16 02:28:45.427677 0 \N 9347 \N 1330 \N 4085 1.0 1 2021-01-16 18:28:47.649782 2021-01-16 18:28:47.649782 0 \N 9348 \N 1540 \N 4085 1.0 1 2021-01-16 18:28:47.676384 2021-01-16 18:28:47.676384 0 \N 9349 \N 1372 \N 4086 1.0 1 2021-01-16 20:03:28.34651 2021-01-16 20:03:28.34651 0 \N 9350 \N 1372 \N 4086 1.0 0 2021-01-16 20:03:42.037045 2021-01-16 20:03:42.037045 3 \N 9351 \N 1372 \N 4087 1.0 1 2021-01-16 20:04:51.199458 2021-01-16 20:04:51.199458 0 \N 9352 \N 1562 \N 4088 1.0 1 2021-01-16 21:09:03.160839 2021-01-16 21:09:03.160839 0 \N 9353 \N 1560 \N 4088 1.0 1 2021-01-16 21:09:03.183188 2021-01-16 21:09:03.183188 0 \N 9354 \N 1567 \N 4089 1.0 1 2021-01-16 22:33:22.766015 2021-01-16 22:33:22.766015 0 \N 9355 \N 963 \N 4090 1.0 1 2021-01-16 23:44:25.25786 2021-01-16 23:44:25.25786 0 \N 9356 \N 1559 \N 4091 1.0 1 2021-01-17 00:20:32.206306 2021-01-17 00:20:32.206306 0 \N 9357 \N 1332 \N 4092 1.0 1 2021-01-19 00:05:06.838574 2021-01-19 00:05:06.838574 0 \N 9358 \N 1332 \N 4092 1.0 0 2021-01-19 00:05:11.617278 2021-01-19 00:05:11.617278 3 \N 9359 \N 1332 \N 4093 1.0 1 2021-01-19 00:05:37.922937 2021-01-19 00:05:37.922937 0 \N 9360 \N 484 \N \N 1.0 0 2021-01-19 00:07:55.415334 2021-01-19 00:07:55.415334 7 806 9361 \N 484 \N 4094 1.0 1 2021-01-19 00:08:13.802872 2021-01-19 00:08:13.802872 0 \N 9362 \N 484 \N 4094 1.0 0 2021-01-19 00:08:22.040715 2021-01-19 00:08:22.040715 3 \N 9363 \N 484 \N 4095 1.0 1 2021-01-19 00:08:37.137304 2021-01-19 00:08:37.137304 0 \N 9364 \N 1550 \N 4096 1.0 1 2021-01-19 01:17:01.671981 2021-01-19 01:17:01.671981 0 \N 9365 \N 1371 \N 4097 1.0 1 2021-01-19 02:57:56.111115 2021-01-19 02:57:56.111115 0 \N 9366 \N 1240 \N 4097 1.0 1 2021-01-19 02:57:56.143655 2021-01-19 02:57:56.143655 0 \N 9367 \N 1565 \N 4098 1.0 1 2021-01-19 19:46:18.749928 2021-01-19 19:46:18.749928 0 \N 9368 \N 22 \N 4098 1.0 1 2021-01-19 19:46:18.775781 2021-01-19 19:46:18.775781 0 \N 9369 \N 1330 \N \N 4.0 0 2021-01-19 20:04:53.948848 2021-01-19 20:04:53.948848 7 807 9370 \N 714 \N 4099 1.0 1 2021-01-19 20:05:55.617302 2021-01-19 20:05:55.617302 0 \N 9371 \N 1330 \N 4099 1.0 1 2021-01-19 20:05:55.64316 2021-01-19 20:05:55.64316 0 \N 9372 \N 1330 \N 4100 2.0 1 2021-01-19 20:10:30.335755 2021-01-19 20:10:30.335755 0 \N 9373 \N 1524 \N 4101 1.0 1 2021-01-19 21:40:50.876736 2021-01-19 21:40:50.876736 0 \N 9374 \N 208 \N 4101 1.0 1 2021-01-19 21:40:50.904898 2021-01-19 21:40:50.904898 0 \N 9375 \N 792 \N 4102 1.0 1 2021-01-19 22:55:25.726788 2021-01-19 22:55:25.726788 0 \N 9376 \N 302 \N 4102 1.0 1 2021-01-19 22:55:25.758981 2021-01-19 22:55:25.758981 0 \N 9377 \N 1565 \N 4103 1.0 1 2021-01-19 23:02:36.108941 2021-01-19 23:02:36.108941 0 \N 9378 \N 269 \N 4104 1.0 1 2021-01-20 00:14:42.290312 2021-01-20 00:14:42.290312 0 \N 9379 \N 1529 \N 4105 1.0 1 2021-01-20 23:03:34.083623 2021-01-20 23:03:34.083623 0 \N 9380 \N 640 \N \N 5.0 0 2021-01-21 02:04:35.750705 2021-01-21 02:04:35.750705 7 808 9381 \N 190 \N 4106 1.0 1 2021-01-21 02:09:37.191752 2021-01-21 02:09:37.191752 0 \N 9382 \N 640 \N 4108 1.0 1 2021-01-21 02:20:55.214569 2021-01-21 02:20:55.214569 0 \N 9383 \N 775 \N 4108 1.0 1 2021-01-21 02:20:55.242635 2021-01-21 02:20:55.242635 0 \N 9384 \N 545 \N \N 1.0 0 2021-01-21 18:26:20.488754 2021-01-21 18:26:20.488754 7 809 9385 \N 545 \N 4109 1.0 1 2021-01-21 18:26:52.92923 2021-01-21 18:26:52.92923 0 \N 9386 \N 874 \N 4110 1.0 1 2021-01-21 21:03:17.278551 2021-01-21 21:03:17.278551 0 \N 9387 \N 664 \N 4110 1.0 1 2021-01-21 21:03:17.310284 2021-01-21 21:03:17.310284 0 \N 9388 \N 1568 \N 4111 1.0 1 2021-01-21 21:33:35.894671 2021-01-21 21:33:35.894671 0 \N 9389 \N 1569 518 \N 2.0 0 2021-01-22 00:30:18.071063 2021-01-22 00:30:18.071063 1 \N 9390 \N 1569 519 \N 1.0 0 2021-01-22 00:30:37.930139 2021-01-22 00:30:37.930139 1 \N 9391 \N 171 \N 4112 2.0 1 2021-01-22 18:20:44.924354 2021-01-22 18:20:44.924354 0 \N 9392 \N 7 \N 4113 1.0 1 2021-01-22 20:09:53.03109 2021-01-22 20:09:53.03109 0 \N 9393 \N 369 \N 4114 1.0 1 2021-01-22 23:04:42.814667 2021-01-22 23:04:42.814667 0 \N 9394 \N 1498 \N 4115 1.0 1 2021-01-22 23:38:26.701174 2021-01-22 23:38:26.701174 0 \N 9395 \N 1570 520 \N 1.0 0 2021-01-23 00:54:24.156958 2021-01-23 00:54:24.156958 1 \N 9396 \N 1570 \N 4116 1.0 1 2021-01-23 00:55:00.978313 2021-01-23 00:55:00.978313 0 \N 9397 \N 1537 \N 4117 1.0 1 2021-01-23 01:04:40.809772 2021-01-23 01:04:40.809772 0 \N 9398 \N 1159 \N \N 2.0 0 2021-01-23 01:53:37.838551 2021-01-23 01:53:37.838551 7 810 9399 \N 1159 \N 4118 1.0 1 2021-01-23 19:04:00.947034 2021-01-23 19:04:00.947034 0 \N 9400 \N 1566 \N 4119 1.0 1 2021-01-23 19:36:51.380415 2021-01-23 19:36:51.380415 0 \N 9401 \N 700 \N 4120 1.0 1 2021-01-23 20:18:24.020339 2021-01-23 20:18:24.020339 0 \N 9402 \N 1550 \N 4121 1.0 1 2021-01-23 21:51:38.383933 2021-01-23 21:51:38.383933 0 \N 9403 \N 1561 \N 4122 1.0 1 2021-01-23 21:52:41.823348 2021-01-23 21:52:41.823348 0 \N 9404 \N 292 \N \N 1.0 0 2021-01-23 22:15:22.162865 2021-01-23 22:15:22.162865 7 812 9405 \N 802 \N 4123 1.0 1 2021-01-23 22:19:05.470083 2021-01-23 22:19:05.470083 0 \N 9406 \N 292 \N 4124 1.0 1 2021-01-23 22:34:31.696674 2021-01-23 22:34:31.696674 0 \N 9407 \N 279 \N 4124 1.0 1 2021-01-23 22:34:31.72215 2021-01-23 22:34:31.72215 0 \N 9408 \N 408 \N 4124 1.0 1 2021-01-23 22:34:31.744685 2021-01-23 22:34:31.744685 0 \N 9409 \N 558 \N 4124 1.0 1 2021-01-23 22:34:31.767456 2021-01-23 22:34:31.767456 0 \N 9410 \N 255 \N 4124 1.0 1 2021-01-23 22:34:31.790283 2021-01-23 22:34:31.790283 0 \N 9411 \N 604 \N 4124 1.0 1 2021-01-23 22:34:31.815402 2021-01-23 22:34:31.815402 0 \N 9412 \N 1320 \N 4124 1.0 1 2021-01-23 22:34:31.838121 2021-01-23 22:34:31.838121 0 \N 9413 \N 1324 \N 4124 1.0 1 2021-01-23 22:34:31.861896 2021-01-23 22:34:31.861896 0 \N 9414 \N 1294 \N 4125 1.0 1 2021-01-24 01:06:24.572943 2021-01-24 01:06:24.572943 0 \N 9415 \N 1374 \N 4126 1.0 1 2021-01-24 20:19:41.766906 2021-01-24 20:19:41.766906 0 \N 9416 \N 1559 \N 4127 1.0 1 2021-01-25 20:05:51.534463 2021-01-25 20:05:51.534463 0 \N 9417 \N 1563 \N 4128 1.0 1 2021-01-25 21:54:36.798511 2021-01-25 21:54:36.798511 0 \N 9418 \N 1559 \N 4128 1.0 1 2021-01-25 21:54:36.833867 2021-01-25 21:54:36.833867 0 \N 9419 \N 1493 \N 4129 1.0 1 2021-01-25 21:59:07.103912 2021-01-25 21:59:07.103912 0 \N 9420 \N 673 \N 4129 1.0 1 2021-01-25 21:59:07.129498 2021-01-25 21:59:07.129498 0 \N 9421 \N 681 \N 4130 1.0 1 2021-01-25 23:28:46.947712 2021-01-25 23:28:46.947712 0 \N 9422 \N 1247 \N 4130 1.0 1 2021-01-25 23:28:46.977146 2021-01-25 23:28:46.977146 0 \N 9423 \N 1377 \N 4130 1.0 1 2021-01-25 23:28:46.999931 2021-01-25 23:28:46.999931 0 \N 9424 \N 1374 \N 4131 1.0 1 2021-01-26 18:51:07.490223 2021-01-26 18:51:07.490223 0 \N 9425 \N 1159 \N 4132 1.0 1 2021-01-26 18:55:52.193425 2021-01-26 18:55:52.193425 0 \N 9426 \N 1371 \N 3517 1.0 0 2021-01-27 17:43:45.056805 2021-01-27 17:43:45.056805 8 \N 9427 \N 1567 \N 4133 1.0 1 2021-01-27 18:07:28.53151 2021-01-27 18:07:28.53151 0 \N 9428 \N 341 \N 4134 1.0 1 2021-01-27 18:09:00.45774 2021-01-27 18:09:00.45774 0 \N 9429 \N 1493 \N 4135 1.0 1 2021-01-29 01:02:07.032243 2021-01-29 01:02:07.032243 0 \N 9430 \N 1523 \N 4136 2.0 1 2021-01-29 01:43:42.072497 2021-01-29 01:43:42.072497 0 \N 9431 \N 369 \N 4137 1.0 1 2021-01-29 01:46:31.20181 2021-01-29 01:46:31.20181 0 \N 9432 \N 1437 \N \N 1.0 0 2021-01-29 19:13:04.081403 2021-01-29 19:13:04.081403 7 813 9433 \N 1440 \N \N 1.0 0 2021-01-29 19:13:04.104915 2021-01-29 19:13:04.104915 7 813 9434 \N 1437 \N 4138 1.0 1 2021-01-29 19:13:41.253109 2021-01-29 19:13:41.253109 0 \N 9435 \N 1440 \N 4138 1.0 1 2021-01-29 19:13:41.274705 2021-01-29 19:13:41.274705 0 \N 9436 \N 1527 \N 4139 1.0 1 2021-01-29 21:45:48.782592 2021-01-29 21:45:48.782592 0 \N 9437 \N 1029 \N 4140 1.0 1 2021-01-29 22:22:14.589647 2021-01-29 22:22:14.589647 0 \N 9438 \N 1239 \N 4140 1.0 1 2021-01-29 22:22:14.619737 2021-01-29 22:22:14.619737 0 \N 9439 \N 1096 \N 4140 1.0 1 2021-01-29 22:22:14.644789 2021-01-29 22:22:14.644789 0 \N 9440 \N 1498 \N 4140 2.0 1 2021-01-29 22:22:14.66879 2021-01-29 22:22:14.66879 0 \N 9441 \N 1371 \N 4141 1.0 1 2021-01-29 23:04:13.13157 2021-01-29 23:04:13.13157 0 \N 9442 \N 1506 \N 4142 1.0 1 2021-01-29 23:47:21.077243 2021-01-29 23:47:21.077243 0 \N 9443 \N 1321 \N 4142 1.0 1 2021-01-29 23:47:21.100179 2021-01-29 23:47:21.100179 0 \N 9444 \N 1418 \N 4142 1.0 1 2021-01-29 23:47:21.123681 2021-01-29 23:47:21.123681 0 \N 9445 \N 369 \N 4143 1.0 1 2021-01-29 23:51:37.867314 2021-01-29 23:51:37.867314 0 \N 9446 \N 1375 \N \N 3.0 0 2021-01-30 00:47:26.96728 2021-01-30 00:47:26.96728 7 811 9447 \N 484 \N \N 5.0 0 2021-01-30 00:47:35.600255 2021-01-30 00:47:35.600255 7 814 9448 \N 484 \N 4144 1.0 1 2021-01-30 00:49:35.005751 2021-01-30 00:49:35.005751 0 \N 9449 \N 369 \N 4145 1.0 1 2021-01-30 22:06:41.740281 2021-01-30 22:06:41.740281 0 \N 9450 \N 369 \N 4145 1.0 0 2021-01-30 22:06:47.619243 2021-01-30 22:06:47.619243 3 \N 9451 \N 369 \N 4146 2.0 1 2021-01-30 22:07:02.665897 2021-01-30 22:07:02.665897 0 \N 9452 \N 986 \N 4147 1.0 1 2021-01-30 22:37:56.793226 2021-01-30 22:37:56.793226 0 \N 9453 \N 172 \N 4147 1.0 1 2021-01-30 22:37:56.816462 2021-01-30 22:37:56.816462 0 \N 9454 \N 1246 \N 4148 1.0 1 2021-01-31 00:52:32.923401 2021-01-31 00:52:32.923401 0 \N 9455 \N 699 \N 4149 1.0 1 2021-01-31 01:01:33.913801 2021-01-31 01:01:33.913801 0 \N 9456 \N 1563 \N 4150 1.0 1 2021-02-02 17:15:25.461749 2021-02-02 17:15:25.461749 0 \N 9457 \N 1003 \N 4151 1.0 1 2021-02-02 17:32:12.791554 2021-02-02 17:32:12.791554 0 \N 9458 \N 979 \N 4151 1.0 1 2021-02-02 17:32:12.824152 2021-02-02 17:32:12.824152 0 \N 9459 \N 1491 \N 4152 1.0 1 2021-02-02 22:22:34.397674 2021-02-02 22:22:34.397674 0 \N 9460 \N 1375 \N 4153 1.0 1 2021-02-03 01:18:21.185495 2021-02-03 01:18:21.185495 0 \N 9461 \N 417 \N 4154 1.0 1 2021-02-03 19:15:48.305696 2021-02-03 19:15:48.305696 0 \N 9462 \N 1512 \N 4155 1.0 1 2021-02-03 20:30:49.364378 2021-02-03 20:30:49.364378 0 \N 9463 \N 737 \N 4156 1.0 1 2021-02-03 21:15:38.961445 2021-02-03 21:15:38.961445 0 \N 9464 \N 697 \N 4156 1.0 1 2021-02-03 21:15:38.985206 2021-02-03 21:15:38.985206 0 \N 9465 \N 1367 \N 4157 1.0 1 2021-02-03 21:43:25.34665 2021-02-03 21:43:25.34665 0 \N 9466 \N 408 \N 4158 1.0 1 2021-02-03 23:30:10.340059 2021-02-03 23:30:10.340059 0 \N 9467 \N 871 \N 4159 1.0 1 2021-02-04 00:06:52.85761 2021-02-04 00:06:52.85761 0 \N 9468 \N 773 \N \N 1.0 0 2021-02-04 00:50:10.059726 2021-02-04 00:50:10.059726 7 815 9469 \N 773 \N 4160 1.0 1 2021-02-04 00:51:06.074031 2021-02-04 00:51:06.074031 0 \N 9470 \N 479 \N 4161 1.0 1 2021-02-04 18:03:00.54573 2021-02-04 18:03:00.54573 0 \N 9471 \N 1230 \N \N 1.0 0 2021-02-04 20:51:49.157297 2021-02-04 20:51:49.157297 7 816 9472 \N 1230 \N 4162 1.0 1 2021-02-04 20:53:48.446064 2021-02-04 20:53:48.446064 0 \N 9473 \N 310 \N \N 1.0 0 2021-02-04 20:57:44.656698 2021-02-04 20:57:44.656698 7 817 9474 \N 310 \N 4163 1.0 1 2021-02-04 20:58:36.910143 2021-02-04 20:58:36.910143 0 \N 9475 \N 408 \N 4164 1.0 1 2021-02-04 23:35:47.879927 2021-02-04 23:35:47.879927 0 \N 9476 \N 7 \N 4164 1.0 1 2021-02-04 23:35:47.901946 2021-02-04 23:35:47.901946 0 \N 9477 \N 7 \N 4165 1.0 1 2021-02-04 23:42:55.101528 2021-02-04 23:42:55.101528 0 \N 9478 \N 408 \N 4165 1.0 1 2021-02-04 23:42:55.12415 2021-02-04 23:42:55.12415 0 \N 9479 \N 558 \N 4165 1.0 1 2021-02-04 23:42:55.14907 2021-02-04 23:42:55.14907 0 \N 9480 \N 604 \N 4165 1.0 1 2021-02-04 23:42:55.170597 2021-02-04 23:42:55.170597 0 \N 9481 \N 7 \N 4166 1.0 1 2021-02-04 23:43:58.431034 2021-02-04 23:43:58.431034 0 \N 9482 \N 604 \N 4166 1.0 1 2021-02-04 23:43:58.453006 2021-02-04 23:43:58.453006 0 \N 9483 \N 475 \N 4167 1.0 1 2021-02-04 23:46:50.707375 2021-02-04 23:46:50.707375 0 \N 9484 \N 752 \N \N 1.0 0 2021-02-04 23:51:48.29959 2021-02-04 23:51:48.29959 7 818 9485 \N 752 \N 4168 1.0 1 2021-02-04 23:53:18.380262 2021-02-04 23:53:18.380262 0 \N 9486 \N 802 \N 4169 1.0 1 2021-02-06 18:20:15.075633 2021-02-06 18:20:15.075633 0 \N 9487 \N 1017 \N 4170 1.0 1 2021-02-06 20:48:21.620444 2021-02-06 20:48:21.620444 0 \N 9488 \N 765 \N 4171 1.0 1 2021-02-07 00:27:57.578226 2021-02-07 00:27:57.578226 0 \N 9489 \N 1095 \N 4172 1.0 1 2021-02-07 00:52:15.838653 2021-02-07 00:52:15.838653 0 \N 9490 \N 1377 \N 4172 1.0 1 2021-02-07 00:52:15.907812 2021-02-07 00:52:15.907812 0 \N 9491 \N 537 \N 4172 1.0 1 2021-02-07 00:52:15.931778 2021-02-07 00:52:15.931778 0 \N 9492 \N 765 \N 4172 1.0 1 2021-02-07 00:52:15.95448 2021-02-07 00:52:15.95448 0 \N 9493 \N 431 \N 4172 1.0 1 2021-02-07 00:52:15.976592 2021-02-07 00:52:15.976592 0 \N 9494 \N 1004 \N 4173 1.0 1 2021-02-08 21:44:07.829066 2021-02-08 21:44:07.829066 0 \N 9495 \N 331 \N 4174 1.0 1 2021-02-10 18:05:07.257797 2021-02-10 18:05:07.257797 0 \N 9496 \N 1427 \N \N 1.0 0 2021-02-11 00:20:56.630482 2021-02-11 00:20:56.630482 7 819 9497 \N 1427 \N 4175 1.0 1 2021-02-11 00:21:17.552536 2021-02-11 00:21:17.552536 0 \N 9498 \N 299 \N 4176 1.0 1 2021-02-11 23:05:50.270161 2021-02-11 23:05:50.270161 0 \N 9499 \N 1343 \N 4177 1.0 1 2021-02-12 01:55:23.193206 2021-02-12 01:55:23.193206 0 \N 9500 \N 874 \N 4177 1.0 1 2021-02-12 01:55:23.223574 2021-02-12 01:55:23.223574 0 \N 9501 \N 415 \N 4178 1.0 1 2021-02-12 22:52:47.237285 2021-02-12 22:52:47.237285 0 \N 9502 \N 135 \N \N 1.0 0 2021-02-13 01:23:21.757294 2021-02-13 01:23:21.757294 7 820 9503 \N 1310 \N 4179 1.0 1 2021-02-13 01:31:39.045773 2021-02-13 01:31:39.045773 0 \N 9504 \N 135 \N 4180 1.0 1 2021-02-13 01:37:06.678125 2021-02-13 01:37:06.678125 0 \N 9505 \N 771 \N 4181 1.0 1 2021-02-13 01:38:56.677769 2021-02-13 01:38:56.677769 0 \N 9506 \N 161 \N 4181 1.0 1 2021-02-13 01:38:56.701655 2021-02-13 01:38:56.701655 0 \N 9507 \N 1527 \N 4182 1.0 1 2021-02-13 22:33:39.808797 2021-02-13 22:33:39.808797 0 \N 9508 \N 291 \N 4182 1.0 1 2021-02-13 22:33:39.836149 2021-02-13 22:33:39.836149 0 \N 9509 \N 666 \N 4183 1.0 1 2021-02-13 23:11:06.703372 2021-02-13 23:11:06.703372 0 \N 9510 \N 1490 \N 4184 1.0 1 2021-02-14 00:26:12.716332 2021-02-14 00:26:12.716332 0 \N 9511 \N 765 \N 4185 1.0 1 2021-02-14 01:07:18.005411 2021-02-14 01:07:18.005411 0 \N 9512 \N 284 \N 4185 1.0 1 2021-02-14 01:07:18.029593 2021-02-14 01:07:18.029593 0 \N 9513 \N 432 \N 4185 1.0 1 2021-02-14 01:07:18.057305 2021-02-14 01:07:18.057305 0 \N 9514 \N 1355 \N 4186 1.0 1 2021-02-15 21:06:13.352887 2021-02-15 21:06:13.352887 0 \N 9515 \N 668 \N 4187 2.0 1 2021-02-16 20:58:09.297432 2021-02-16 20:58:09.297432 0 \N 9516 \N 1337 \N 4188 1.0 1 2021-02-18 22:24:55.783216 2021-02-18 22:24:55.783216 0 \N 9517 \N 1175 \N 4189 1.0 1 2021-02-19 00:17:34.117519 2021-02-19 00:17:34.117519 0 \N 9518 \N 431 \N 4190 1.0 1 2021-02-28 01:49:53.687026 2021-02-28 01:49:53.687026 0 \N 9519 \N 213 \N 4190 1.0 1 2021-02-28 01:49:53.710996 2021-02-28 01:49:53.710996 0 \N 9520 \N 537 \N 4191 1.0 1 2021-03-02 00:30:10.134639 2021-03-02 00:30:10.134639 0 \N 9521 \N 536 \N 4192 1.0 1 2021-03-04 01:09:21.754394 2021-03-04 01:09:21.754394 0 \N 9522 \N 5 \N \N 6.0 0 2021-03-05 01:32:33.301633 2021-03-05 01:32:33.301633 7 821 9523 \N 5 \N 4193 1.0 1 2021-03-05 01:33:14.708497 2021-03-05 01:33:14.708497 0 \N 9524 \N 456 \N 4194 1.0 1 2021-03-19 01:29:31.827412 2021-03-19 01:29:31.827412 0 \N \. -- -- Name: inventories_moves_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.inventories_moves_id_seq', 9524, true); -- -- Data for Name: invoice_details; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.invoice_details (id, sale_id, uuid, cfdi_type, invoice_reason, rfc_receptor, generating_date, stamping_date, storing_url, status, created_at, updated_at) FROM stdin; \. -- -- Name: invoice_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.invoice_details_id_seq', 1, false); -- -- Data for Name: open_cash_registers; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.open_cash_registers (id, cash_register_id, user_id, initial_cash, final_cash, status, created_at, updated_at) FROM stdin; 2 1 2 725.00 0.00 1 2019-02-05 21:41:00.859145 2019-02-06 02:48:24.16015 3 2 10 0.00 0.00 1 2019-02-06 00:39:59.308852 2019-02-06 03:04:31.349254 4 1 2 725.00 0.00 1 2019-02-06 17:20:55.958064 2019-02-07 02:58:45.370872 5 2 3 945.00 0.00 1 2019-02-06 20:16:46.891315 2019-02-07 03:03:19.176276 7 2 3 921.00 0.00 1 2019-02-07 19:48:30.481092 2019-02-09 02:37:52.741569 6 1 2 635.00 0.00 1 2019-02-07 18:44:17.111799 2019-02-09 03:12:31.605522 8 2 3 945.00 0.00 1 2019-02-09 16:58:45.931759 2019-02-10 02:06:04.623539 9 1 2 652.00 0.00 1 2019-02-09 19:26:58.564277 2019-02-10 02:12:16.44265 10 2 10 945.00 0.00 1 2019-02-11 17:10:21.027971 2019-02-12 02:32:02.662023 11 1 2 662.00 0.00 1 2019-02-11 18:51:40.186865 2019-02-12 02:37:52.216784 12 1 2 699.00 0.00 1 2019-02-12 16:24:35.463274 2019-02-13 02:36:20.877674 13 2 10 1013.00 0.00 1 2019-02-12 17:28:44.064418 2019-02-13 17:57:13.709664 14 1 2 678.00 0.00 1 2019-02-13 17:18:02.989354 2019-02-14 02:48:20.537547 15 2 10 1361.00 0.00 1 2019-02-13 18:01:52.892439 2019-02-14 02:54:59.234157 16 1 2 696.30 0.00 1 2019-02-14 16:57:27.205565 2019-02-15 02:50:55.532146 17 2 10 985.00 0.00 1 2019-02-14 17:14:29.329523 2019-02-15 03:03:52.294091 19 1 2 697.00 0.00 1 2019-02-15 20:38:05.473632 2019-02-16 02:49:06.484679 18 2 10 562.00 0.00 1 2019-02-15 18:06:03.278379 2019-02-16 02:56:21.207473 20 1 2 887.00 0.00 1 2019-02-16 18:02:49.287463 2019-02-17 02:45:16.181616 21 2 3 562.00 0.00 1 2019-02-16 20:04:04.855525 2019-02-17 02:53:14.921115 22 2 3 562.00 0.00 1 2019-02-17 20:54:03.737222 2019-02-17 21:46:29.795158 23 1 9 882.00 0.00 1 2019-02-17 21:24:26.77631 2019-02-17 22:02:51.651922 24 2 10 562.00 0.00 1 2019-02-18 17:53:25.91119 2019-02-19 02:35:03.645962 25 1 2 585.00 0.00 1 2019-02-18 23:23:39.916928 2019-02-19 02:43:45.625059 27 1 9 513.00 0.00 1 2019-02-19 23:39:30.154942 2019-02-20 02:31:16.188863 26 2 10 692.00 0.00 1 2019-02-19 17:22:09.438539 2019-02-20 02:50:40.470319 28 1 2 489.00 0.00 1 2019-02-20 16:49:19.477263 2019-02-21 02:14:44.680813 29 2 10 692.00 0.00 1 2019-02-20 18:04:45.757223 2019-02-21 02:29:37.887253 32 1 2 685.00 0.00 1 2019-02-21 19:15:30.594771 2019-02-22 02:22:05.398213 33 1 9 882.00 0.00 1 2019-02-22 02:22:41.872693 2019-02-22 02:23:16.86231 31 2 10 692.00 0.00 1 2019-02-21 17:37:26.917662 2019-02-22 02:53:53.913838 34 1 2 882.00 0.00 1 2019-02-22 17:00:44.863009 2019-02-23 02:20:46.039779 35 2 3 692.00 0.00 1 2019-02-23 01:52:18.145002 2019-02-23 02:33:26.246005 37 1 2 956.00 0.00 1 2019-02-23 18:29:57.605006 2019-02-24 01:30:26.69874 36 2 10 692.00 0.00 1 2019-02-23 18:15:17.131399 2019-02-24 01:49:47.706345 38 1 9 1027.00 0.00 1 2019-02-24 19:34:00.646981 2019-02-24 21:46:09.42378 39 2 11 552.00 0.00 1 2019-02-24 21:52:24.131418 2019-02-24 22:09:28.698289 40 1 2 846.00 0.00 1 2019-02-25 16:48:29.240455 2019-02-26 01:55:39.951586 41 2 11 520.00 0.00 1 2019-02-25 17:03:14.726201 2019-02-26 02:01:17.807133 42 2 11 520.00 0.00 1 2019-02-26 16:56:24.936006 2019-02-26 23:50:45.951482 43 1 9 844.00 0.00 1 2019-02-26 16:59:52.929824 2019-02-27 01:55:54.087556 45 1 2 844.00 0.00 1 2019-02-27 18:12:06.544082 2019-02-28 01:56:59.29832 44 2 11 520.00 0.00 1 2019-02-27 00:04:18.541375 2019-02-28 02:30:20.938649 47 1 2 844.00 0.00 1 2019-02-28 17:13:22.202988 2019-03-01 01:57:47.982756 46 2 11 640.00 0.00 1 2019-02-28 16:59:46.801317 2019-03-01 02:08:43.937514 49 1 2 833.00 0.00 1 2019-03-01 18:25:01.490942 2019-03-02 02:12:24.566083 50 1 2 940.00 0.00 1 2019-03-02 02:13:21.82834 2019-03-02 02:16:42.143711 48 2 11 340.00 0.00 1 2019-03-01 17:09:27.957382 2019-03-02 02:36:24.05054 51 1 2 940.00 0.00 1 2019-03-02 17:37:43.330985 2019-03-03 01:49:17.309298 52 2 3 239.00 0.00 1 2019-03-02 18:44:05.699815 2019-03-03 01:49:47.039834 54 2 11 239.00 0.00 1 2019-03-03 18:48:59.292409 2019-03-03 21:42:31.996972 53 1 12 766.00 0.00 1 2019-03-03 18:32:53.560506 2019-03-03 21:56:15.238971 55 1 2 766.00 0.00 1 2019-03-04 16:33:24.466854 2019-03-05 02:16:23.384788 56 2 11 371.00 0.00 1 2019-03-04 17:03:51.40056 2019-03-05 02:55:08.294938 57 2 11 568.00 0.00 1 2019-03-05 17:53:37.699537 2019-03-06 01:56:26.130376 58 1 2 564.00 0.00 1 2019-03-05 18:35:51.472924 2019-03-06 02:00:35.502336 59 2 11 418.00 0.00 1 2019-03-06 18:49:38.998785 2019-03-07 02:00:49.835988 60 1 2 511.00 0.00 1 2019-03-06 20:38:50.673504 2019-03-07 02:02:14.555489 62 2 11 466.00 0.00 1 2019-03-07 21:58:13.314274 2019-03-08 02:00:54.578918 61 1 2 584.00 0.00 1 2019-03-07 16:54:19.893266 2019-03-08 02:01:04.043972 64 2 11 264.00 0.00 1 2019-03-08 17:03:06.574688 2019-03-09 01:58:06.523323 63 1 2 584.00 0.00 1 2019-03-08 16:56:25.632624 2019-03-09 02:07:28.971588 65 1 2 563.00 0.00 1 2019-03-09 17:19:49.523103 2019-03-10 02:01:59.751191 66 2 3 414.00 0.00 1 2019-03-09 17:51:17.889423 2019-03-10 02:03:10.550884 67 1 12 650.00 0.00 1 2019-03-10 17:30:17.280949 2019-03-10 21:56:43.788669 68 2 11 438.00 0.00 1 2019-03-10 20:55:22.31776 2019-03-10 21:57:16.767153 69 1 2 649.00 0.00 1 2019-03-11 17:07:45.758666 2019-03-12 01:58:06.466105 70 2 11 438.00 0.00 1 2019-03-11 17:14:46.974258 2019-03-12 02:06:14.268275 71 1 2 587.00 0.00 1 2019-03-12 18:27:06.727317 2019-03-13 02:00:36.692925 72 2 11 487.00 0.00 1 2019-03-13 02:00:22.398287 2019-03-13 02:00:47.99761 73 2 11 487.00 0.00 1 2019-03-13 19:27:26.951825 2019-03-14 02:00:47.185361 74 1 2 587.00 0.00 1 2019-03-14 16:50:10.308878 2019-03-15 01:56:08.658301 75 2 11 535.00 0.00 1 2019-03-14 17:16:15.274104 2019-03-15 02:00:00.381674 77 1 2 555.00 0.00 1 2019-03-15 18:54:23.363646 2019-03-16 01:57:23.22823 76 2 11 534.00 0.00 1 2019-03-15 16:48:19.155355 2019-03-16 02:12:04.028615 78 2 11 383.00 0.00 1 2019-03-16 18:48:24.447081 2019-03-17 01:53:54.366148 79 1 2 913.00 0.00 1 2019-03-16 21:48:19.048665 2019-03-17 02:02:06.562321 81 1 12 863.00 0.00 1 2019-03-17 21:19:07.08645 2019-03-17 21:45:29.117364 80 2 11 446.00 0.00 1 2019-03-17 17:05:42.387626 2019-03-17 21:55:34.633584 82 2 11 446.00 0.00 1 2019-03-19 17:02:45.62365 2019-03-20 02:04:11.609272 83 1 2 850.00 0.00 1 2019-03-19 18:05:11.820616 2019-03-20 02:08:46.77001 84 2 11 406.00 0.00 1 2019-03-20 17:11:08.30379 2019-03-21 01:56:10.724868 85 1 2 850.00 0.00 1 2019-03-20 18:24:28.950058 2019-03-21 17:05:08.000379 87 2 11 506.00 0.00 1 2019-03-21 17:24:48.199708 2019-03-22 01:54:27.29834 86 1 2 1068.00 0.00 1 2019-03-21 17:09:06.345888 2019-03-22 17:19:29.412363 88 2 11 505.00 0.00 1 2019-03-22 16:52:10.114573 2019-03-23 01:43:08.368983 89 1 2 947.00 0.00 1 2019-03-22 17:26:23.692889 2019-03-23 01:59:09.006649 91 2 3 500.00 0.00 1 2019-03-23 18:07:00.809528 2019-03-24 01:56:57.421331 90 1 2 964.00 0.00 1 2019-03-23 17:04:44.046898 2019-03-24 01:58:29.259493 93 1 12 1018.00 0.00 1 2019-03-24 17:23:06.956699 2019-03-24 21:53:30.704175 92 2 11 555.00 0.00 1 2019-03-24 17:19:58.543141 2019-03-24 21:56:40.281122 95 1 2 1015.00 0.00 1 2019-03-25 17:28:08.378456 2019-03-26 02:06:03.733094 94 2 11 555.00 0.00 1 2019-03-25 17:07:58.894032 2019-03-26 02:28:50.347864 96 2 11 755.00 0.00 1 2019-03-26 18:36:33.76772 2019-03-27 01:49:19.694113 97 1 12 912.00 0.00 1 2019-03-27 00:24:48.228942 2019-03-27 01:54:20.872652 99 2 11 743.00 0.00 1 2019-03-27 19:39:40.775545 2019-03-28 01:40:02.698157 98 1 2 757.00 0.00 1 2019-03-27 17:14:53.868553 2019-03-28 01:54:53.628912 100 1 2 757.00 0.00 1 2019-03-28 16:32:39.7888 2019-03-29 01:53:37.152511 101 2 11 296.00 0.00 1 2019-03-29 01:53:48.727589 2019-03-29 01:54:13.910953 102 1 2 757.00 0.00 1 2019-03-29 16:40:02.915353 2019-03-30 01:48:10.669955 103 2 11 296.00 0.00 1 2019-03-29 20:08:58.663197 2019-03-30 01:55:54.469126 105 2 3 522.00 0.00 1 2019-03-30 23:17:09.817728 2019-03-31 01:56:36.293812 104 1 2 757.00 0.00 1 2019-03-30 18:10:04.367464 2019-03-31 01:59:31.022264 106 2 11 600.00 0.00 1 2019-03-31 17:09:19.908104 2019-03-31 21:42:41.894482 107 1 12 697.00 0.00 1 2019-03-31 19:07:53.017844 2019-03-31 21:52:35.110114 108 1 2 596.00 0.00 1 2019-04-01 17:57:07.615821 2019-04-02 02:01:42.090063 110 1 2 599.00 0.00 1 2019-04-02 17:11:21.215666 2019-04-03 02:00:16.032829 109 2 11 600.00 0.00 1 2019-04-02 00:10:42.028778 2019-04-03 02:02:42.539608 111 1 2 667.00 0.00 1 2019-04-03 16:55:47.152342 2019-04-04 01:58:42.71903 112 2 11 400.00 0.00 1 2019-04-03 17:02:18.092346 2019-04-04 02:02:55.868933 114 1 2 766.00 0.00 1 2019-04-04 18:43:18.895553 2019-04-05 01:52:22.949156 113 2 11 300.00 0.00 1 2019-04-04 17:17:03.69032 2019-04-05 02:05:01.891936 116 1 2 755.00 0.00 1 2019-04-05 18:10:17.243965 2019-04-06 01:28:16.34727 115 2 11 535.00 0.00 1 2019-04-05 17:14:40.048369 2019-04-06 01:43:26.923743 117 2 3 960.00 0.00 1 2019-04-06 18:47:30.187449 2019-04-07 01:54:06.334326 118 1 2 573.00 0.00 1 2019-04-06 21:14:38.840835 2019-04-07 02:03:18.292236 119 2 11 759.00 0.00 1 2019-04-07 16:05:43.135967 2019-04-07 20:54:13.271616 120 1 12 484.00 0.00 1 2019-04-07 19:08:19.535678 2019-04-07 20:54:35.605934 122 2 11 758.00 0.00 1 2019-04-08 22:54:24.258399 2019-04-09 01:46:13.644179 121 1 2 463.00 0.00 1 2019-04-08 15:53:59.157553 2019-04-09 01:58:50.639094 123 2 11 758.00 0.00 1 2019-04-09 16:07:29.82823 2019-04-10 01:54:30.201309 124 1 2 572.00 0.00 1 2019-04-09 16:29:32.308802 2019-04-10 01:54:52.262895 125 1 2 572.00 0.00 1 2019-04-10 15:58:10.100239 2019-04-11 01:56:25.536479 126 2 11 758.00 0.00 1 2019-04-10 16:05:08.697449 2019-04-11 01:58:27.36968 128 1 2 547.00 0.00 1 2019-04-11 17:30:22.657317 2019-04-12 01:33:47.909232 127 2 11 724.00 0.00 1 2019-04-11 16:08:53.666229 2019-04-12 01:50:30.546133 129 1 2 547.00 0.00 1 2019-04-12 15:52:11.720517 2019-04-13 01:56:18.259519 130 2 11 763.00 0.00 1 2019-04-12 18:04:58.723755 2019-04-13 02:01:27.928819 132 1 2 551.00 0.00 1 2019-04-13 17:08:20.892718 2019-04-14 01:36:50.845235 131 2 11 562.00 0.00 1 2019-04-13 16:02:14.573749 2019-04-14 01:56:39.936835 133 2 11 610.00 0.00 1 2019-04-14 16:12:00.553453 2019-04-14 20:51:54.684676 134 1 12 528.00 0.00 1 2019-04-14 19:23:07.178054 2019-04-14 20:55:07.817514 136 1 2 528.00 0.00 1 2019-04-15 18:07:19.778627 2019-04-16 01:40:42.636085 135 2 11 960.00 0.00 1 2019-04-15 18:06:45.664414 2019-04-16 01:56:03.070984 137 2 11 676.00 0.00 1 2019-04-16 16:10:04.921058 2019-04-17 01:56:32.341307 138 1 2 605.00 0.00 1 2019-04-16 16:25:03.301651 2019-04-17 02:06:32.523748 140 2 11 676.00 0.00 1 2019-04-17 16:45:25.29442 2019-04-18 01:53:14.050278 139 1 2 553.00 0.00 1 2019-04-17 16:37:28.30682 2019-04-18 01:56:00.25 142 1 12 571.00 0.00 1 2019-04-22 19:26:34.168736 2019-04-23 01:56:23.629743 141 2 10 656.00 0.00 1 2019-04-22 16:07:30.215098 2019-04-23 01:56:45.570298 143 2 10 656.00 0.00 1 2019-04-23 18:57:40.158023 2019-04-24 01:53:10.397291 144 1 12 651.00 0.00 1 2019-04-23 21:43:34.206047 2019-04-24 01:55:52.165768 145 2 10 556.00 0.00 1 2019-04-24 02:09:10.719459 2019-04-25 01:54:34.880229 146 1 12 696.00 0.00 1 2019-04-24 19:27:03.58112 2019-04-25 01:56:04.860973 147 2 10 856.00 0.00 1 2019-04-25 16:08:21.567905 2019-04-26 01:50:06.459374 148 1 12 684.00 0.00 1 2019-04-25 17:03:36.764563 2019-04-26 01:56:01.780427 150 1 12 684.00 0.00 1 2019-04-26 16:20:27.626216 2019-04-27 01:56:07.633923 149 2 10 856.00 0.00 1 2019-04-26 16:01:00.471478 2019-04-27 01:59:31.536018 152 1 12 483.00 0.00 1 2019-04-27 16:26:53.022434 2019-04-28 01:55:55.877844 151 2 10 524.00 0.00 1 2019-04-27 16:04:00.89851 2019-04-28 01:56:22.39482 153 1 12 657.00 0.00 1 2019-04-28 16:49:00.989578 2019-04-30 01:54:49.538387 154 2 10 524.00 0.00 1 2019-04-29 15:56:24.830491 2019-04-30 02:00:05.050862 156 2 10 524.00 0.00 1 2019-04-30 16:09:30.291897 2019-05-01 01:55:15.178044 155 1 2 607.00 0.00 1 2019-04-30 15:56:43.691383 2019-05-01 01:58:20.43136 158 1 2 577.00 0.00 1 2019-05-01 16:20:12.862107 2019-05-01 21:55:18.106817 157 2 10 482.00 0.00 1 2019-05-01 16:04:40.745981 2019-05-01 21:59:27.240718 159 1 2 676.00 0.00 1 2019-05-02 15:40:31.014713 2019-05-03 01:55:41.604334 160 2 10 482.00 0.00 1 2019-05-02 16:57:02.191206 2019-05-03 01:57:28.652527 161 2 10 580.00 0.00 1 2019-05-03 17:05:49.526183 2019-05-04 01:47:52.658084 162 1 2 873.00 0.00 1 2019-05-03 22:57:25.038268 2019-05-04 02:08:30.877332 164 2 3 549.00 0.00 1 2019-05-04 18:03:19.888996 2019-05-05 01:49:11.461528 163 1 12 789.00 0.00 1 2019-05-04 16:45:01.217032 2019-05-05 02:01:55.843186 166 1 12 1066.00 0.00 1 2019-05-05 17:01:18.626044 2019-05-05 21:01:38.897905 165 2 10 696.00 0.00 1 2019-05-05 16:09:08.171172 2019-05-05 21:06:34.237964 168 2 3 668.00 0.00 1 2019-05-06 16:29:31.003828 2019-05-07 01:36:02.7739 167 1 2 1066.00 0.00 1 2019-05-06 15:57:33.77022 2019-05-07 01:40:14.169294 170 2 3 903.00 0.00 1 2019-05-07 18:10:47.901024 2019-05-08 01:54:51.287192 169 1 2 1511.00 0.00 1 2019-05-07 15:37:39.764076 2019-05-08 01:58:05.97236 171 2 3 1155.00 0.00 1 2019-05-08 16:25:37.992049 2019-05-09 01:54:29.518349 172 1 2 1236.00 0.00 1 2019-05-08 16:29:20.858826 2019-05-09 02:00:53.280101 173 1 2 790.00 0.00 1 2019-05-09 02:04:39.651789 2019-05-09 02:07:10.042411 174 1 2 879.00 0.00 1 2019-05-09 15:38:31.085851 2019-05-10 02:17:11.626189 175 2 3 953.00 0.00 1 2019-05-09 16:00:23.63557 2019-05-10 02:37:40.212636 177 2 3 707.00 0.00 1 2019-05-10 16:09:48.473747 2019-05-10 21:51:07.230069 176 1 2 725.00 0.00 1 2019-05-10 16:08:07.010298 2019-05-10 21:57:05.379159 179 2 3 706.00 0.00 1 2019-05-11 19:28:38.326632 2019-05-12 01:55:35.773194 178 1 2 792.00 0.00 1 2019-05-11 16:16:01.225538 2019-05-12 02:45:15.134426 181 1 12 527.00 0.00 1 2019-05-12 19:36:26.421928 2019-05-12 20:48:31.273912 180 2 3 624.00 0.00 1 2019-05-12 16:07:32.500494 2019-05-12 20:53:47.993267 182 1 2 527.00 0.00 1 2019-05-13 16:12:35.734774 2019-05-14 01:59:11.076262 183 2 10 773.00 0.00 1 2019-05-13 16:22:12.492633 2019-05-14 02:02:56.423629 185 2 3 773.00 0.00 1 2019-05-14 16:11:53.980175 2019-05-15 01:56:09.387803 184 1 2 457.00 0.00 1 2019-05-14 16:00:30.983349 2019-05-15 02:12:30.782408 186 2 3 773.00 0.00 1 2019-05-15 16:14:54.267684 2019-05-16 01:57:01.751696 187 1 2 982.00 0.00 1 2019-05-15 17:59:05.59448 2019-05-16 02:02:56.161654 188 2 3 507.00 0.00 1 2019-05-16 16:30:07.329566 2019-05-17 01:57:03.22389 189 1 2 997.00 0.00 1 2019-05-16 17:39:52.130918 2019-05-17 02:03:40.747865 190 2 3 507.00 0.00 1 2019-05-17 15:53:03.204423 2019-05-18 01:53:29.163244 191 1 2 934.00 0.00 1 2019-05-17 15:54:26.144123 2019-05-18 02:02:02.761295 192 2 3 665.00 0.00 1 2019-05-18 16:20:53.797872 2019-05-19 01:55:46.033069 193 1 2 975.00 0.00 1 2019-05-18 16:46:18.733396 2019-05-19 01:59:29.569386 194 2 3 516.00 0.00 1 2019-05-19 16:21:38.00382 2019-05-19 20:55:51.581696 195 1 9 771.00 0.00 1 2019-05-19 17:22:23.828084 2019-05-19 20:59:39.126403 196 1 2 826.00 0.00 1 2019-05-20 16:05:16.906537 2019-05-21 01:46:31.928939 197 2 10 516.00 0.00 1 2019-05-20 19:07:45.865863 2019-05-21 02:00:52.226514 199 2 3 473.00 0.00 1 2019-05-21 16:06:13.259698 2019-05-22 01:55:07.493941 198 1 2 832.00 0.00 1 2019-05-21 16:04:53.914725 2019-05-22 02:09:08.098408 200 2 3 653.00 0.00 1 2019-05-22 16:12:58.843616 2019-05-23 01:56:53.68065 201 1 2 629.00 0.00 1 2019-05-22 16:50:57.599306 2019-05-23 02:00:58.647162 202 1 2 646.00 0.00 1 2019-05-23 15:40:28.268969 2019-05-24 01:51:33.052745 203 2 10 849.00 0.00 1 2019-05-23 16:23:52.921409 2019-05-24 01:53:14.850177 204 2 10 741.00 0.00 1 2019-05-24 16:07:06.113034 2019-05-25 01:56:20.898862 205 1 2 728.00 0.00 1 2019-05-24 16:07:28.327782 2019-05-25 02:02:39.678585 207 1 2 616.00 0.00 1 2019-05-25 16:31:48.49335 2019-05-26 01:56:44.492553 206 2 3 630.00 0.00 1 2019-05-25 15:59:26.435477 2019-05-26 01:57:44.185868 208 2 3 788.00 0.00 1 2019-05-26 16:04:56.623786 2019-05-26 20:50:21.375991 209 1 12 550.00 0.00 1 2019-05-26 18:34:01.847759 2019-05-26 21:02:34.108763 210 1 2 728.00 0.00 1 2019-05-27 17:18:48.29014 2019-05-28 01:49:07.149133 211 2 10 677.00 0.00 1 2019-05-27 17:29:39.720035 2019-05-29 01:54:53.421812 212 1 2 1064.00 0.00 1 2019-05-28 15:42:14.133583 2019-05-29 02:02:17.308079 214 2 3 776.00 0.00 1 2019-05-29 15:56:05.036999 2019-05-30 01:47:57.070918 213 1 2 752.00 0.00 1 2019-05-29 15:51:13.470378 2019-05-30 01:57:42.120343 215 2 3 776.00 0.00 1 2019-05-30 16:07:49.612035 2019-05-31 01:58:54.242119 216 1 2 752.00 0.00 1 2019-05-30 16:39:15.743762 2019-05-31 02:03:42.431144 218 2 3 845.00 0.00 1 2019-05-31 16:19:34.400357 2019-06-01 01:55:48.603518 217 1 2 411.00 0.00 1 2019-05-31 15:57:23.637775 2019-06-01 02:06:21.344833 219 1 2 1019.00 0.00 1 2019-06-01 16:24:24.843143 2019-06-02 01:44:05.983827 220 2 3 845.00 0.00 1 2019-06-01 19:12:38.904543 2019-06-02 01:53:02.414404 221 2 3 1074.00 0.00 1 2019-06-02 16:07:30.728709 2019-06-02 20:55:37.186797 222 1 2 530.00 0.00 1 2019-06-03 16:01:27.397072 2019-06-04 01:45:32.015749 223 2 10 1074.00 0.00 1 2019-06-03 22:23:54.084841 2019-06-04 01:58:43.380048 225 1 2 480.00 0.00 1 2019-06-04 16:12:29.012176 2019-06-05 01:54:50.512313 224 2 3 1074.00 0.00 1 2019-06-04 16:03:45.933837 2019-06-05 01:57:22.981459 227 1 2 835.00 0.00 1 2019-06-05 16:21:32.076283 2019-06-06 01:19:13.928765 226 2 3 884.00 0.00 1 2019-06-05 16:01:15.276649 2019-06-06 01:13:03.868173 228 1 2 805.00 0.00 1 2019-06-06 15:54:44.099184 2019-06-07 01:49:06.802016 229 2 3 884.00 0.00 1 2019-06-06 16:13:33.232096 2019-06-07 01:59:26.463782 230 2 3 859.00 0.00 1 2019-06-07 16:02:30.706832 2019-06-08 02:54:36.463287 232 1 2 1016.00 0.00 1 2019-06-08 18:33:41.318369 2019-06-08 23:11:08.142594 231 2 3 659.00 0.00 1 2019-06-08 15:59:36.784537 2019-06-09 02:04:14.587746 233 1 2 567.00 0.00 1 2019-06-09 01:45:04.855946 2019-06-09 02:18:35.995697 235 1 2 567.00 0.00 1 2019-06-09 20:47:45.995217 2019-06-09 20:52:59.104602 234 2 3 721.00 0.00 1 2019-06-09 16:11:20.207997 2019-06-09 20:58:15.1124 237 2 3 564.00 0.00 1 2019-06-11 01:52:55.742408 2019-06-11 02:02:38.462782 236 1 2 567.00 0.00 1 2019-06-10 20:38:11.357172 2019-06-11 02:07:16.71427 238 2 3 770.00 0.00 1 2019-06-11 15:57:48.415346 2019-06-12 01:54:19.613989 239 1 2 575.00 0.00 1 2019-06-11 15:58:52.267787 2019-06-12 01:59:02.950725 240 2 3 669.00 0.00 1 2019-06-12 15:57:26.313617 2019-06-13 01:55:11.302377 241 1 2 831.00 0.00 1 2019-06-12 16:07:30.577064 2019-06-13 02:01:51.553524 243 1 2 723.00 0.00 1 2019-06-13 16:20:10.771092 2019-06-14 01:58:42.237776 242 2 3 669.00 0.00 1 2019-06-13 16:04:59.526262 2019-06-14 02:10:17.010085 244 2 3 566.00 0.00 1 2019-06-14 16:01:07.906905 2019-06-15 01:59:04.987555 245 1 2 732.00 0.00 1 2019-06-14 16:02:08.764865 2019-06-15 02:02:45.852166 247 2 3 461.00 0.00 1 2019-06-15 16:07:27.592622 2019-06-16 01:58:23.385849 246 1 2 760.00 0.00 1 2019-06-15 16:02:56.182863 2019-06-16 02:00:12.245244 248 1 2 820.00 0.00 1 2019-06-16 16:06:24.92182 2019-06-16 20:51:19.371783 249 2 3 510.00 0.00 1 2019-06-16 16:22:07.06313 2019-06-16 20:54:20.91651 251 2 10 510.00 0.00 1 2019-06-17 17:04:38.928842 2019-06-18 01:52:05.857518 250 1 2 924.00 0.00 1 2019-06-17 16:20:32.571204 2019-06-18 01:53:36.480887 253 1 2 924.00 0.00 1 2019-06-18 17:18:24.418291 2019-06-19 01:56:20.807609 252 2 3 510.00 0.00 1 2019-06-18 16:02:30.542074 2019-06-19 02:06:11.321671 255 1 2 1011.00 0.00 1 2019-06-19 16:24:27.082507 2019-06-20 01:57:36.512454 254 2 3 573.00 0.00 1 2019-06-19 16:17:15.740641 2019-06-20 02:04:47.565686 257 1 12 968.00 0.00 1 2019-06-20 19:46:56.692391 2019-06-21 02:07:11.70374 256 2 3 654.00 0.00 1 2019-06-20 16:17:46.392226 2019-06-21 02:11:26.662428 259 1 12 814.00 0.00 1 2019-06-21 17:03:22.240023 2019-06-22 01:56:47.076919 258 2 3 616.00 0.00 1 2019-06-21 16:00:21.714402 2019-06-22 02:05:40.935687 260 2 3 722.00 0.00 1 2019-06-22 16:23:35.129312 2019-06-23 01:58:10.64011 261 1 2 702.00 0.00 1 2019-06-22 17:30:44.659962 2019-06-23 02:02:16.579267 262 2 3 561.00 0.00 1 2019-06-23 16:04:01.441162 2019-06-23 20:50:54.437098 263 1 12 986.00 0.00 1 2019-06-23 16:56:30.129529 2019-06-23 20:51:32.02162 264 1 2 986.00 0.00 1 2019-06-24 21:01:30.125879 2019-06-25 01:59:15.50997 265 2 10 561.00 0.00 1 2019-06-24 23:20:46.760838 2019-06-25 02:08:10.96787 267 1 2 986.00 0.00 1 2019-06-25 16:19:25.76482 2019-06-26 01:56:53.37517 266 2 3 561.00 0.00 1 2019-06-25 16:05:47.034607 2019-06-26 02:01:58.22009 269 1 2 1065.00 0.00 1 2019-06-26 16:43:31.315483 2019-06-27 01:57:38.795289 270 1 2 1065.00 0.00 1 2019-06-27 16:26:11.038617 2019-06-28 01:58:33.484188 268 2 3 0.00 0.00 1 2019-06-26 16:06:11.366333 2019-06-28 02:09:17.863864 272 1 2 1239.00 0.00 1 2019-06-28 19:37:36.887364 2019-06-29 02:03:04.734675 271 2 3 712.00 0.00 1 2019-06-28 16:03:14.920471 2019-06-29 02:07:20.521463 273 1 2 689.00 0.00 1 2019-06-29 16:05:29.55428 2019-06-30 01:53:42.848917 274 2 3 662.00 0.00 1 2019-06-29 18:16:46.358358 2019-06-30 02:06:45.753929 276 1 12 773.00 0.00 1 2019-06-30 18:39:51.108438 2019-06-30 20:56:00.420795 275 2 3 719.00 0.00 1 2019-06-30 16:11:41.781869 2019-06-30 20:59:59.13523 277 1 2 1073.00 0.00 1 2019-07-01 16:07:41.686506 2019-07-02 01:56:30.865707 278 2 10 719.00 0.00 1 2019-07-01 22:41:34.290433 2019-07-02 02:00:37.484374 280 1 2 1000.00 0.00 1 2019-07-02 16:33:13.042203 2019-07-03 01:58:06.409871 279 2 3 719.00 0.00 1 2019-07-02 15:59:34.591389 2019-07-03 02:03:33.755514 281 2 10 677.00 0.00 1 2019-07-03 02:10:31.854474 2019-07-03 02:14:32.078813 283 1 2 999.00 0.00 1 2019-07-03 19:22:07.840065 2019-07-04 01:51:50.234051 282 2 3 684.00 0.00 1 2019-07-03 16:05:35.865018 2019-07-04 01:58:24.571524 284 1 2 997.00 0.00 1 2019-07-04 16:00:18.657161 2019-07-05 01:58:01.763238 285 2 3 684.00 0.00 1 2019-07-04 16:42:33.444024 2019-07-05 02:09:21.317102 286 2 10 684.00 0.00 1 2019-07-05 02:10:05.317881 2019-07-05 02:10:51.71682 287 1 2 824.00 0.00 1 2019-07-05 16:06:52.457406 2019-07-06 02:07:35.820779 288 2 3 634.00 0.00 1 2019-07-05 16:08:38.867695 2019-07-06 02:08:07.243435 290 1 2 906.00 0.00 1 2019-07-06 16:41:04.234628 2019-07-07 01:49:01.741958 289 2 3 633.00 0.00 1 2019-07-06 16:12:30.091774 2019-07-07 01:55:01.074649 291 1 12 801.00 0.00 1 2019-07-07 16:17:24.882339 2019-07-07 20:47:37.608941 292 2 3 633.00 0.00 1 2019-07-07 16:21:15.60614 2019-07-07 20:58:18.110547 293 1 2 801.00 0.00 1 2019-07-08 15:52:09.003816 2019-07-09 01:54:16.188789 294 2 10 633.00 0.00 1 2019-07-08 15:59:10.315094 2019-07-09 02:04:19.677393 295 1 2 801.00 0.00 1 2019-07-09 15:57:27.771633 2019-07-10 01:54:57.206062 296 2 3 602.00 0.00 1 2019-07-09 16:05:39.259134 2019-07-10 02:05:26.19185 298 1 2 1091.00 0.00 1 2019-07-10 16:44:57.22148 2019-07-11 01:57:48.521992 297 2 3 701.00 0.00 1 2019-07-10 16:06:00.750255 2019-07-11 02:01:03.624846 300 1 2 1091.00 0.00 1 2019-07-11 16:16:06.160086 2019-07-12 01:50:31.07994 299 2 3 710.00 0.00 1 2019-07-11 16:08:15.540012 2019-07-12 02:10:28.445739 301 1 2 1091.00 0.00 1 2019-07-12 16:08:55.683753 2019-07-13 01:55:23.18366 302 2 3 400.00 0.00 1 2019-07-12 16:10:55.438302 2019-07-13 02:03:09.725644 304 2 3 400.00 0.00 1 2019-07-13 16:12:32.677891 2019-07-14 01:55:48.086597 303 1 2 920.00 0.00 1 2019-07-13 16:10:09.532454 2019-07-14 02:22:41.375819 305 2 3 379.00 0.00 1 2019-07-14 16:18:05.026071 2019-07-14 20:58:19.202061 307 2 3 379.00 0.00 1 2019-07-15 18:36:33.042567 2019-07-16 01:56:11.509848 306 1 2 520.00 0.00 1 2019-07-15 16:00:00.251651 2019-07-16 01:56:30.818829 308 2 3 796.00 0.00 1 2019-07-16 16:06:07.232271 2019-07-17 01:55:05.639406 309 1 2 0.00 0.00 1 2019-07-16 20:50:32.894701 2019-07-17 16:22:21.492494 310 1 2 299.00 0.00 1 2019-07-17 16:42:19.590541 2019-07-18 02:07:17.39592 311 2 3 70.00 0.00 1 2019-07-17 19:56:42.221062 2019-07-18 02:14:44.744124 312 1 2 739.00 0.00 1 2019-07-18 16:12:37.192645 2019-07-19 01:55:52.19887 313 2 10 818.00 0.00 1 2019-07-19 01:58:31.839681 2019-07-19 01:58:52.793688 314 2 3 866.00 0.00 1 2019-07-19 16:15:54.579058 2019-07-20 02:00:52.510379 315 1 2 739.00 0.00 1 2019-07-19 16:29:10.239659 2019-07-20 02:09:17.731328 317 1 2 636.00 0.00 1 2019-07-20 16:13:55.57099 2019-07-21 01:38:30.93439 316 2 3 594.00 0.00 1 2019-07-20 16:04:54.73 2019-07-21 01:57:36.38916 319 2 3 580.00 0.00 1 2019-07-21 16:15:10.561943 2019-07-21 20:56:27.552819 318 1 12 687.00 0.00 1 2019-07-21 16:09:52.960021 2019-07-21 21:06:27.775821 320 1 2 585.00 0.00 1 2019-07-22 16:13:02.493474 2019-07-23 01:59:53.145668 321 2 10 559.00 0.00 1 2019-07-22 16:26:53.949365 2019-07-23 02:14:52.083797 323 1 2 530.00 0.00 1 2019-07-23 16:04:37.047124 2019-07-24 01:56:56.087545 322 2 3 808.00 0.00 1 2019-07-23 15:59:59.873055 2019-07-24 02:00:50.322501 325 1 2 629.00 0.00 1 2019-07-24 16:22:04.525562 2019-07-25 02:01:49.310934 324 2 3 757.00 0.00 1 2019-07-24 16:11:11.812911 2019-07-25 02:06:33.553084 326 2 3 806.00 0.00 1 2019-07-25 16:02:26.813834 2019-07-26 02:00:15.379889 327 1 2 636.00 0.00 1 2019-07-25 16:04:41.690726 2019-07-26 02:06:38.067994 329 1 2 701.00 0.00 1 2019-07-26 16:07:56.505387 2019-07-27 01:55:02.449921 328 2 3 775.00 0.00 1 2019-07-26 16:05:44.032942 2019-07-27 02:38:00.319383 331 2 3 678.00 0.00 1 2019-07-27 16:12:41.332717 2019-07-28 01:49:14.097898 330 1 2 799.00 0.00 1 2019-07-27 16:05:55.183054 2019-07-28 01:57:06.35504 332 2 3 625.00 0.00 1 2019-07-28 16:05:04.306906 2019-07-28 20:52:23.032112 333 1 2 635.00 0.00 1 2019-07-28 19:09:11.97528 2019-07-28 20:55:44.055943 334 1 2 634.00 0.00 1 2019-07-29 15:58:06.788964 2019-07-30 01:59:23.628071 336 1 2 619.00 0.00 1 2019-07-30 16:39:53.408176 2019-07-31 02:00:41.417233 335 2 10 625.00 0.00 1 2019-07-29 20:05:57.122355 2019-07-31 02:00:51.544893 338 1 2 1268.00 0.00 1 2019-07-31 16:28:37.138059 2019-08-01 01:43:25.345175 337 2 3 495.00 0.00 1 2019-07-31 16:04:48.274393 2019-08-01 01:59:33.150029 340 1 2 1056.00 0.00 1 2019-08-01 16:20:59.209679 2019-08-02 02:04:21.654749 339 2 3 764.00 0.00 1 2019-08-01 16:00:36.283876 2019-08-02 02:04:24.04268 341 1 2 805.00 0.00 1 2019-08-02 16:02:16.023565 2019-08-03 01:56:53.309086 342 2 3 764.00 0.00 1 2019-08-02 16:11:08.908818 2019-08-03 02:01:54.687932 343 2 3 518.00 0.00 1 2019-08-03 16:07:17.860542 2019-08-04 01:47:01.834886 344 1 2 976.00 0.00 1 2019-08-03 16:31:58.766412 2019-08-04 01:52:02.879056 345 2 3 607.00 0.00 1 2019-08-04 16:03:38.927268 2019-08-04 20:54:45.852105 347 1 2 995.00 0.00 1 2019-08-05 16:09:17.388114 2019-08-06 01:57:32.530063 346 2 3 607.00 0.00 1 2019-08-05 16:07:43.188471 2019-08-06 02:00:04.069414 348 2 3 607.00 0.00 1 2019-08-06 16:06:30.612481 2019-08-07 01:54:00.816071 349 1 2 745.00 0.00 1 2019-08-06 16:07:15.116923 2019-08-07 01:56:08.010618 351 2 3 456.00 0.00 1 2019-08-07 16:01:56.588133 2019-08-08 01:57:21.057206 350 1 2 745.00 0.00 1 2019-08-07 16:00:17.524154 2019-08-08 01:58:45.462482 353 2 10 606.00 0.00 1 2019-08-08 16:52:33.770507 2019-08-09 01:34:24.85383 352 1 2 925.00 0.00 1 2019-08-08 16:08:35.707191 2019-08-09 01:37:04.828343 354 2 3 606.00 0.00 1 2019-08-09 16:08:21.441178 2019-08-10 01:29:00.211603 355 1 2 638.00 0.00 1 2019-08-09 16:15:40.258491 2019-08-10 01:32:32.106596 357 1 2 1007.00 0.00 1 2019-08-10 19:38:05.309522 2019-08-11 01:58:01.067957 356 2 3 754.00 0.00 1 2019-08-10 16:05:48.496175 2019-08-11 01:58:07.496031 358 1 2 657.00 0.00 1 2019-08-11 16:16:40.677589 2019-08-11 20:57:58.233366 360 2 3 754.00 0.00 1 2019-08-12 16:11:19.247815 2019-08-13 01:01:32.574661 359 1 2 780.00 0.00 1 2019-08-12 16:02:30.661157 2019-08-13 01:06:18.282953 361 1 2 1030.00 0.00 1 2019-08-13 17:42:22.585817 2019-08-14 00:56:50.87152 362 2 3 803.00 0.00 1 2019-08-14 00:59:23.70965 2019-08-14 01:08:15.936555 363 2 3 803.00 0.00 1 2019-08-14 16:11:19.505522 2019-08-15 01:01:47.767297 364 1 2 730.00 0.00 1 2019-08-14 16:41:13.595353 2019-08-15 01:13:46.626807 365 2 3 699.00 0.00 1 2019-08-15 16:14:31.69072 2019-08-16 00:55:58.491824 366 1 2 779.00 0.00 1 2019-08-15 17:13:47.011877 2019-08-16 01:07:36.305251 367 1 2 339.00 0.00 1 2019-08-16 16:13:26.217652 2019-08-17 01:17:43.770787 368 2 3 500.00 0.00 1 2019-08-17 01:33:06.325794 2019-08-17 01:33:49.786207 369 2 3 450.00 0.00 1 2019-08-17 16:13:17.362465 2019-08-18 01:03:45.844242 370 1 2 547.00 0.00 1 2019-08-17 21:01:43.094602 2019-08-18 01:43:40.664303 371 1 2 633.00 0.00 1 2019-08-18 16:06:07.549863 2019-08-18 21:01:09.202448 373 2 3 400.00 0.00 1 2019-08-19 18:05:41.06856 2019-08-20 00:58:04.96101 372 1 2 632.00 0.00 1 2019-08-19 16:14:30.240894 2019-08-20 01:14:44.295734 374 2 10 225.00 0.00 1 2019-08-21 00:25:13.599981 2019-08-21 01:03:50.636918 375 1 2 632.00 0.00 1 2019-08-21 16:14:55.572551 2019-08-22 01:24:21.290573 376 2 3 783.00 0.00 1 2019-08-21 17:55:52.788542 2019-08-22 01:41:46.155403 377 1 9 778.00 0.00 1 2019-08-22 17:11:05.41803 2019-08-23 00:49:29.965624 378 2 3 283.00 0.00 1 2019-08-22 22:59:03.210365 2019-08-23 00:55:00.29288 380 1 2 716.00 0.00 1 2019-08-23 16:16:57.565598 2019-08-24 00:51:53.121002 379 2 3 420.00 0.00 1 2019-08-23 16:16:02.158674 2019-08-24 00:52:57.160037 381 2 3 420.00 0.00 1 2019-08-24 16:06:38.184995 2019-08-25 01:05:17.907727 382 1 2 566.00 0.00 1 2019-08-24 16:14:20.233401 2019-08-25 01:10:40.913471 383 2 3 516.00 0.00 1 2019-08-26 17:13:07.783733 2019-08-27 00:54:42.670609 384 1 2 553.00 0.00 1 2019-08-26 18:18:37.172743 2019-08-27 00:55:36.931081 385 2 3 516.00 0.00 1 2019-08-27 16:22:40.827429 2019-08-28 00:33:15.340478 386 1 2 752.00 0.00 1 2019-08-27 16:59:27.459688 2019-08-28 00:53:39.238187 387 3 18 664.00 0.00 1 2019-08-28 03:58:25.792399 2019-08-28 04:03:51.729294 388 2 3 416.00 0.00 1 2019-08-28 16:01:15.254303 2019-08-29 00:57:05.465594 389 1 2 752.00 0.00 1 2019-08-28 16:03:19.207698 2019-08-29 00:58:07.122768 391 1 2 752.00 0.00 1 2019-08-29 18:23:18.589856 2019-08-30 01:07:46.633918 390 2 3 726.00 0.00 1 2019-08-29 16:10:51.053188 2019-08-30 01:16:49.13463 393 1 2 752.00 0.00 1 2019-08-30 17:04:38.133109 2019-08-31 00:56:13.454212 392 2 3 520.00 0.00 1 2019-08-30 16:20:53.590898 2019-08-31 00:58:03.773928 394 3 18 1363.00 0.00 1 2019-08-31 03:43:26.687893 2019-08-31 05:30:53.262491 396 2 3 415.00 0.00 1 2019-08-31 16:53:27.185416 2019-09-01 00:57:37.974738 395 1 2 1099.00 0.00 1 2019-08-31 16:45:16.623533 2019-09-01 01:22:26.799314 397 3 18 663.00 0.00 1 2019-09-01 03:04:45.232893 2019-09-01 03:28:08.144703 399 2 20 445.50 0.00 1 2019-09-01 18:20:59.064157 2019-09-01 20:53:28.734242 398 1 2 717.00 0.00 1 2019-09-01 16:37:01.091945 2019-09-01 20:55:53.656869 400 2 20 445.50 0.00 1 2019-09-02 16:10:14.459877 2019-09-03 01:31:54.434903 401 1 2 717.00 0.00 1 2019-09-02 16:21:26.251715 2019-09-03 01:40:09.983068 403 1 2 922.00 0.00 1 2019-09-03 16:53:42.559995 2019-09-04 00:50:04.938341 402 2 20 983.50 0.00 1 2019-09-03 16:17:16.829206 2019-09-04 01:01:01.326924 404 3 21 665.00 0.00 1 2019-09-04 02:00:09.725508 2019-09-04 02:01:05.718876 406 2 8 883.50 0.00 1 2019-09-04 18:43:15.181039 2019-09-05 00:15:08.620066 405 1 2 922.00 0.00 1 2019-09-04 18:20:56.07154 2019-09-05 01:06:10.985799 407 2 20 943.50 0.00 1 2019-09-05 16:09:55.830687 2019-09-06 00:58:18.161245 408 1 2 1172.00 0.00 1 2019-09-05 16:57:26.309357 2019-09-06 00:58:41.76979 411 1 2 871.00 0.00 1 2019-09-06 17:00:21.8807 2019-09-07 01:10:06.12114 410 2 20 942.50 0.00 1 2019-09-06 16:12:03.809557 2019-09-07 01:19:58.801614 409 3 21 1165.00 0.00 1 2019-09-05 18:03:06.23639 2019-09-07 01:51:44.261937 412 1 9 171.00 0.00 1 2019-09-07 16:12:38.535794 2019-09-08 01:05:59.505023 414 2 8 704.50 0.00 1 2019-09-07 22:51:22.105353 2019-09-08 01:12:35.247273 413 3 21 1048.00 0.00 1 2019-09-07 17:28:31.252101 2019-09-08 02:10:42.10572 416 2 10 903.00 0.00 1 2019-09-09 17:26:16.581286 2019-09-10 01:05:29.551729 415 1 2 763.00 0.00 1 2019-09-09 16:14:12.480099 2019-09-10 01:08:37.706152 417 3 23 1117.00 0.00 1 2019-09-09 17:38:38.409437 2019-09-10 03:10:59.68313 420 1 2 762.00 0.00 1 2019-09-10 22:21:19.768502 2019-09-11 01:12:51.787497 419 2 10 944.00 0.00 1 2019-09-10 18:29:36.898613 2019-09-11 01:37:22.735926 418 3 18 934.00 0.00 1 2019-09-10 17:18:04.131485 2019-09-11 01:59:24.319783 422 1 2 752.00 0.00 1 2019-09-11 21:04:14.569526 2019-09-12 00:58:32.137481 421 2 8 1024.00 0.00 1 2019-09-11 17:07:27.949924 2019-09-12 01:14:43.528731 423 3 21 1220.01 0.00 1 2019-09-12 01:12:31.09761 2019-09-12 02:07:37.55797 424 2 8 851.30 0.00 1 2019-09-12 20:06:31.491697 2019-09-13 01:04:14.052091 425 1 2 752.00 0.00 1 2019-09-12 22:19:39.274442 2019-09-13 01:30:16.983957 426 3 23 1119.00 0.00 1 2019-09-13 01:08:45.811649 2019-09-13 02:03:40.334984 427 2 8 1000.30 0.00 1 2019-09-13 18:25:40.862915 2019-09-14 01:39:50.644706 429 2 8 1085.30 0.00 1 2019-09-14 01:56:48.81373 2019-09-14 01:59:36.223803 428 1 2 1119.00 0.00 1 2019-09-13 20:20:34.898098 2019-09-14 02:05:15.045543 430 1 2 762.00 0.00 1 2019-09-14 16:24:49.434052 2019-09-15 01:16:59.990339 432 2 10 1085.30 0.00 1 2019-09-14 17:37:54.586957 2019-09-15 01:31:50.388979 431 3 21 1127.00 0.00 1 2019-09-14 16:59:01.040429 2019-09-15 02:07:36.40556 433 1 9 1058.00 0.00 1 2019-09-15 16:17:21.035093 2019-09-15 20:59:39.598419 435 2 10 1096.00 0.00 1 2019-09-15 19:17:18.851761 2019-09-15 21:10:53.464382 434 3 23 1025.00 0.00 1 2019-09-15 18:55:29.885198 2019-09-18 01:06:34.234207 436 1 2 1037.00 0.00 1 2019-09-17 18:16:16.881759 2019-09-18 01:47:32.305398 438 1 2 737.00 0.00 1 2019-09-18 16:03:49.007554 2019-09-19 01:27:56.34294 437 2 10 1096.00 0.00 1 2019-09-17 22:42:48.019283 2019-09-19 01:31:45.989147 439 3 23 1025.00 0.00 1 2019-09-18 22:18:45.44226 2019-09-19 01:51:30.373711 440 1 2 1144.00 0.00 1 2019-09-19 15:56:18.158036 2019-09-20 00:54:47.798788 442 3 21 1025.00 0.00 1 2019-09-19 22:52:36.282526 2019-09-20 01:13:14.568174 443 1 9 1142.00 0.00 1 2019-09-20 16:33:37.053164 2019-09-21 01:25:13.426732 441 2 8 1096.00 0.00 1 2019-09-19 16:18:58.021638 2019-09-21 01:30:14.609889 444 3 23 1225.00 0.00 1 2019-09-20 16:56:26.632311 2019-09-21 02:00:08.033922 446 1 25 781.00 0.00 1 2019-09-21 17:45:01.486626 2019-09-22 01:28:26.470397 445 2 8 463.00 0.00 1 2019-09-21 17:40:25.102593 2019-09-22 01:30:04.618722 447 3 23 1225.00 0.00 1 2019-09-21 20:01:15.752769 2019-09-22 01:59:00.257111 449 1 25 781.00 0.00 1 2019-09-22 19:57:56.535034 2019-09-22 21:02:47.743067 448 3 23 1225.00 0.00 1 2019-09-22 17:31:55.422532 2019-09-22 21:59:33.434619 450 1 2 781.00 0.00 1 2019-09-23 16:09:14.324956 2019-09-24 01:31:52.711068 451 2 8 686.00 0.00 1 2019-09-23 17:50:14.089266 2019-09-24 01:36:53.636964 452 1 2 781.00 0.00 1 2019-09-24 18:32:40.047222 2019-09-25 01:30:40.100619 454 2 10 1370.00 0.00 1 2019-09-25 01:21:46.242165 2019-09-25 01:34:53.095343 455 1 2 781.00 0.00 1 2019-09-25 16:27:41.239007 2019-09-26 01:24:50.111533 453 3 23 1225.00 0.00 1 2019-09-24 22:15:03.951495 2019-09-26 01:52:46.298297 457 1 2 750.00 0.00 1 2019-09-26 16:53:30.486376 2019-09-27 01:28:40.827387 458 2 10 1350.00 0.00 1 2019-09-26 18:29:38.339059 2019-09-27 01:39:03.45457 456 3 23 1225.00 0.00 1 2019-09-26 16:03:10.210281 2019-09-27 02:03:12.600476 461 1 2 849.00 0.00 1 2019-09-27 17:33:01.403225 2019-09-28 01:43:20.085551 459 3 23 1177.00 0.00 1 2019-09-27 16:14:04.448879 2019-09-28 01:57:43.054151 460 2 8 1320.00 0.00 1 2019-09-27 17:11:42.133627 2019-09-28 01:59:16.875654 464 2 10 1039.00 0.00 1 2019-09-29 01:35:59.207037 2019-09-29 01:36:27.122228 462 1 2 744.00 0.00 1 2019-09-28 16:26:33.366178 2019-09-29 01:43:52.110252 463 3 23 1074.00 0.00 1 2019-09-28 16:40:43.625344 2019-09-29 02:00:31.822449 465 1 25 747.00 0.00 1 2019-09-29 18:10:01.732538 2019-09-29 21:00:36.395781 466 1 2 747.00 0.00 1 2019-09-30 16:13:56.063154 2019-09-30 20:14:49.363908 467 1 2 831.00 0.00 1 2019-10-01 16:17:45.935397 2019-10-02 01:27:39.757816 468 2 10 1039.00 0.00 1 2019-10-01 20:24:57.586123 2019-10-02 01:33:02.972097 469 3 18 1056.00 0.00 1 2019-10-02 01:27:37.504078 2019-10-02 02:02:48.172777 471 1 2 1045.00 0.00 1 2019-10-02 16:29:39.174603 2019-10-03 01:31:42.47788 472 2 10 838.00 0.00 1 2019-10-02 22:58:35.095508 2019-10-03 01:38:57.918568 470 3 23 1206.00 0.00 1 2019-10-02 16:09:37.730439 2019-10-03 01:58:20.813565 473 1 2 893.00 0.00 1 2019-10-03 15:57:12.10876 2019-10-04 01:32:34.033709 475 2 8 838.00 0.00 1 2019-10-04 00:12:30.706482 2019-10-04 01:34:53.779074 474 3 23 1206.00 0.00 1 2019-10-03 16:14:46.57286 2019-10-04 02:00:05.502918 477 1 2 1211.00 0.00 1 2019-10-04 18:46:57.307427 2019-10-05 01:18:20.359093 478 2 8 838.00 0.00 1 2019-10-04 22:23:50.65978 2019-10-05 01:31:14.179065 476 3 23 1205.00 0.00 1 2019-10-04 17:02:14.98971 2019-10-05 02:09:16.405281 481 2 8 1040.00 0.00 1 2019-10-05 20:42:56.958258 2019-10-06 01:31:12.208857 480 1 2 1211.00 0.00 1 2019-10-05 18:34:46.772331 2019-10-06 01:38:08.724677 479 3 23 1253.00 0.00 1 2019-10-05 16:09:45.189699 2019-10-06 02:01:12.604596 483 1 25 781.00 0.00 1 2019-10-06 16:29:06.532554 2019-10-06 20:47:15.964556 484 2 8 1109.00 0.00 1 2019-10-06 19:02:46.450409 2019-10-06 20:49:02.243161 482 3 23 1012.00 0.00 1 2019-10-06 16:12:57.550013 2019-10-06 22:02:24.787021 485 2 8 1108.00 0.00 1 2019-10-07 16:12:31.020798 2019-10-08 01:12:44.893712 486 1 2 781.00 0.00 1 2019-10-07 16:14:45.963114 2019-10-08 01:29:20.468021 487 3 23 1011.00 0.00 1 2019-10-07 16:19:49.066466 2019-10-08 01:59:58.62137 489 3 23 1011.00 0.00 1 2019-10-08 16:10:11.82903 2019-10-09 00:56:15.56151 488 1 2 700.00 0.00 1 2019-10-08 15:55:10.949212 2019-10-09 01:27:44.534612 490 2 8 1288.00 0.00 1 2019-10-08 17:17:12.74623 2019-10-10 01:54:36.057765 491 1 2 700.00 0.00 1 2019-10-09 16:18:56.753995 2019-10-10 01:58:00.140061 492 3 23 1159.00 0.00 1 2019-10-09 16:53:30.983718 2019-10-10 02:00:07.205651 495 1 2 700.00 0.00 1 2019-10-10 21:34:21.430695 2019-10-11 01:24:48.257 493 3 23 1158.00 0.00 1 2019-10-10 16:18:04.696991 2019-10-11 01:58:46.329491 494 2 8 1236.00 0.00 1 2019-10-10 18:43:01.816344 2019-10-11 02:03:11.526515 497 1 2 699.00 0.00 1 2019-10-11 16:19:05.098976 2019-10-12 01:24:04.230086 496 2 10 1302.00 0.00 1 2019-10-11 02:03:25.370955 2019-10-12 01:39:44.989502 498 3 21 1158.00 0.00 1 2019-10-11 17:24:39.346804 2019-10-12 02:09:16.242311 500 1 2 697.00 0.00 1 2019-10-12 19:38:06.225315 2019-10-13 01:23:43.969781 499 2 24 1361.31 0.00 1 2019-10-12 15:42:45.727614 2019-10-13 01:26:17.133467 501 3 21 1055.00 0.00 1 2019-10-13 02:10:26.794774 2019-10-13 02:41:36.510562 504 1 25 430.00 0.00 1 2019-10-13 17:39:38.139957 2019-10-13 21:05:46.239791 503 2 8 1308.00 0.00 1 2019-10-13 16:59:41.322589 2019-10-13 21:24:27.006681 502 3 23 1054.00 0.00 1 2019-10-13 16:15:48.267259 2019-10-15 00:59:40.55162 506 2 8 1147.00 0.00 1 2019-10-14 18:13:21.2254 2019-10-15 01:12:53.839315 505 1 2 930.00 0.00 1 2019-10-14 16:33:31.910394 2019-10-15 01:17:02.285148 508 2 8 1134.00 0.00 1 2019-10-15 17:34:29.857077 2019-10-16 00:47:43.406005 507 1 2 580.00 0.00 1 2019-10-15 16:08:45.505663 2019-10-16 01:20:25.698433 509 3 23 654.00 0.00 1 2019-10-16 16:14:21.02131 2019-10-17 01:15:20.667482 510 1 2 516.00 0.00 1 2019-10-16 16:21:48.281636 2019-10-17 01:26:52.607478 511 2 8 1145.00 0.00 1 2019-10-16 22:33:34.807399 2019-10-17 01:34:22.262105 512 3 23 654.00 0.00 1 2019-10-17 16:11:51.6073 2019-10-17 22:47:15.315131 513 2 10 1145.00 0.00 1 2019-10-17 16:47:07.083273 2019-10-19 16:32:38.392554 514 1 2 964.00 0.00 1 2019-10-17 17:13:00.58787 2019-10-20 01:19:49.635061 516 2 26 1145.00 0.00 1 2019-10-19 21:00:26.884019 2019-10-20 01:42:00.645568 515 3 23 681.00 0.00 1 2019-10-19 16:10:40.724671 2019-10-20 01:57:07.803496 518 1 25 1128.00 0.00 1 2019-10-20 16:44:25.692006 2019-10-20 21:06:06.192178 519 1 2 1206.00 0.00 1 2019-10-21 16:39:04.030624 2019-10-22 01:39:05.085609 520 2 26 1294.00 0.00 1 2019-10-21 20:50:45.044618 2019-10-22 01:47:36.845733 517 3 23 679.00 0.00 1 2019-10-20 16:12:22.736042 2019-10-22 01:56:43.570268 522 1 2 1125.00 0.00 1 2019-10-22 16:09:28.261607 2019-10-23 01:17:37.348324 523 2 27 1062.00 0.00 1 2019-10-22 17:34:58.309629 2019-10-23 01:25:20.059536 525 1 2 1125.00 0.00 1 2019-10-23 16:57:09.355538 2019-10-24 01:25:54.767604 524 2 27 859.00 0.00 1 2019-10-23 16:43:53.601807 2019-10-24 01:37:05.165729 521 3 23 678.00 0.00 1 2019-10-22 16:08:30.986793 2019-10-24 02:00:27.118361 527 2 24 988.00 0.00 1 2019-10-24 18:15:13.850205 2019-10-25 01:31:58.902941 526 3 23 677.00 0.00 1 2019-10-24 16:13:39.627131 2019-10-25 02:11:35.406743 528 1 2 1127.00 0.00 1 2019-10-24 18:19:49.737821 2019-10-26 01:45:20.724409 529 2 27 847.00 0.00 1 2019-10-25 16:49:57.62083 2019-10-26 01:49:26.217555 530 3 21 1478.00 0.00 1 2019-10-25 21:57:14.065602 2019-10-26 02:01:42.877827 533 2 27 2026.00 0.00 1 2019-10-26 20:02:32.140266 2019-10-27 01:32:28.792529 532 1 2 1225.00 0.00 1 2019-10-26 17:31:17.586143 2019-10-27 01:46:01.359305 531 3 23 1324.00 0.00 1 2019-10-26 16:03:23.570563 2019-10-27 01:56:59.23149 535 2 26 1056.00 0.00 1 2019-10-27 19:39:48.826287 2019-10-27 22:09:22.37775 537 1 2 695.00 0.00 1 2019-10-28 18:46:32.953185 2019-10-29 02:40:15.088411 536 2 27 1057.00 0.00 1 2019-10-28 17:26:32.226233 2019-10-29 03:03:20.958992 534 3 23 1322.00 0.00 1 2019-10-27 17:05:46.341362 2019-10-29 03:03:41.260462 539 1 2 794.00 0.00 1 2019-10-29 18:35:01.477256 2019-10-30 02:58:15.292392 540 2 26 955.00 0.00 1 2019-10-29 19:34:29.929889 2019-10-30 03:02:04.70524 538 3 23 1322.00 0.00 1 2019-10-29 17:16:15.814757 2019-10-30 03:03:23.303505 543 2 26 540.00 0.00 1 2019-10-30 18:52:14.450705 2019-10-31 03:00:43.757825 541 1 2 992.00 0.00 1 2019-10-30 17:12:53.75953 2019-10-31 03:02:06.506478 542 3 23 1322.00 0.00 1 2019-10-30 17:16:26.22642 2019-10-31 03:16:11.818512 546 1 2 820.00 0.00 1 2019-10-31 20:05:36.791973 2019-11-01 02:48:13.561619 545 2 26 1023.00 0.00 1 2019-10-31 18:39:29.431081 2019-11-01 02:59:28.367591 544 3 23 1051.00 0.00 1 2019-10-31 17:12:25.390897 2019-11-01 03:06:26.756717 549 1 25 975.00 0.00 1 2019-11-01 18:59:42.003417 2019-11-02 02:48:01.410185 547 3 23 1099.00 0.00 1 2019-11-01 17:09:11.199257 2019-11-02 02:55:47.083839 548 2 27 1157.00 0.00 1 2019-11-01 17:37:58.233129 2019-11-02 03:01:27.314299 552 1 2 1059.00 0.00 1 2019-11-02 22:24:00.226096 2019-11-02 23:06:57.374231 551 2 26 785.00 0.00 1 2019-11-02 19:54:47.247772 2019-11-02 23:10:40.745858 553 2 26 555.00 0.00 1 2019-11-03 17:31:46.09846 2019-11-03 22:08:33.213252 550 3 23 1067.00 0.00 1 2019-11-02 17:05:35.882054 2019-11-03 22:55:43.422837 556 1 2 430.00 0.00 1 2019-11-04 19:34:15.686942 2019-11-05 02:32:41.056698 554 2 27 855.00 0.00 1 2019-11-04 17:12:51.15113 2019-11-05 02:50:40.672855 555 3 21 784.00 0.00 1 2019-11-04 17:45:52.759534 2019-11-05 03:14:04.012962 558 1 2 879.00 0.00 1 2019-11-05 19:23:42.590337 2019-11-06 02:44:37.825406 559 2 26 855.00 0.00 1 2019-11-06 01:19:59.480275 2019-11-06 02:58:44.754533 561 1 2 478.00 0.00 1 2019-11-06 18:43:51.407224 2019-11-07 02:49:38.555675 560 2 24 1096.00 0.00 1 2019-11-06 17:44:09.339864 2019-11-07 03:01:17.383253 557 3 23 981.00 0.00 1 2019-11-05 17:49:58.895534 2019-11-07 03:06:29.340637 563 2 26 1041.00 0.00 1 2019-11-07 17:33:49.699883 2019-11-08 01:59:21.190264 564 1 2 678.00 0.00 1 2019-11-07 23:44:01.081943 2019-11-08 02:11:13.832506 562 3 23 729.00 0.00 1 2019-11-07 17:09:47.137024 2019-11-08 02:53:46.437677 566 1 2 678.00 0.00 1 2019-11-08 18:17:36.888904 2019-11-09 02:35:22.41181 567 3 23 753.00 0.00 1 2019-11-08 18:27:38.0362 2019-11-09 02:55:52.609754 565 2 27 676.00 0.00 1 2019-11-08 18:02:51.032977 2019-11-09 02:57:04.638514 570 1 2 977.00 0.00 1 2019-11-09 19:32:53.884676 2019-11-10 02:52:47.150621 568 2 26 525.00 0.00 1 2019-11-09 17:27:26.66224 2019-11-10 03:01:46.984381 569 3 23 752.00 0.00 1 2019-11-09 18:10:53.262163 2019-11-10 03:08:05.235979 573 1 25 875.00 0.00 1 2019-11-10 22:06:18.98194 2019-11-10 22:20:33.614043 572 2 26 632.00 0.00 1 2019-11-10 17:38:17.777287 2019-11-10 22:28:25.253428 574 1 2 855.00 0.00 1 2019-11-11 17:17:02.627662 2019-11-12 02:55:57.222953 575 2 27 639.00 0.00 1 2019-11-11 17:17:14.689574 2019-11-12 03:00:09.069473 571 3 23 712.00 0.00 1 2019-11-10 17:16:03.060458 2019-11-12 03:07:19.833377 577 1 2 840.00 0.00 1 2019-11-12 20:30:12.518625 2019-11-13 02:51:13.111157 576 3 23 1132.00 0.00 1 2019-11-12 16:58:33.709655 2019-11-13 02:53:48.235629 578 2 26 839.00 0.00 1 2019-11-13 02:45:47.205243 2019-11-13 02:57:41.314895 580 1 2 919.00 0.00 1 2019-11-13 17:10:15.618562 2019-11-14 02:53:53.867189 581 2 27 794.00 0.00 1 2019-11-14 00:33:37.220614 2019-11-14 03:00:52.483179 579 3 23 1131.00 0.00 1 2019-11-13 17:00:46.850537 2019-11-14 03:18:34.474752 582 3 23 1025.00 0.00 1 2019-11-14 17:12:45.911041 2019-11-15 02:54:28.033996 584 1 25 1010.00 0.00 1 2019-11-14 19:36:21.584092 2019-11-15 02:58:43.616818 583 2 26 493.00 0.00 1 2019-11-14 18:34:15.515483 2019-11-15 03:03:50.13454 587 1 2 1010.00 0.00 1 2019-11-15 17:44:38.85964 2019-11-16 02:51:43.02269 585 3 23 993.00 0.00 1 2019-11-15 17:03:08.763765 2019-11-16 02:53:44.123423 586 2 27 431.00 0.00 1 2019-11-15 17:31:31.365447 2019-11-16 02:58:43.581716 589 1 2 887.00 0.00 1 2019-11-16 17:20:52.135613 2019-11-17 02:47:23.651291 590 2 26 1444.00 0.00 1 2019-11-16 20:05:03.726757 2019-11-17 02:56:51.826545 588 3 23 1019.00 0.00 1 2019-11-16 17:02:59.33067 2019-11-17 03:02:38.01575 592 2 27 1187.99 0.00 1 2019-11-17 17:20:31.578112 2019-11-17 22:04:59.489511 593 2 26 1391.00 0.00 1 2019-11-17 22:16:22.089068 2019-11-17 22:24:25.274402 591 3 23 809.00 0.00 1 2019-11-17 17:00:50.853873 2019-11-18 18:30:24.806573 596 1 2 757.00 0.00 1 2019-11-18 18:50:54.133141 2019-11-18 23:18:52.677485 595 3 23 809.00 0.00 1 2019-11-18 18:30:41.398708 2019-11-19 03:07:44.612028 598 1 2 1047.00 0.00 1 2019-11-19 18:57:11.682154 2019-11-20 02:50:02.19537 597 3 23 891.00 0.00 1 2019-11-19 17:00:44.530821 2019-11-20 02:52:54.75522 594 2 27 1391.00 0.00 1 2019-11-18 17:08:38.46212 2019-11-20 02:57:30.3014 601 1 2 765.00 0.00 1 2019-11-20 20:30:41.695806 2019-11-21 02:45:58.149598 600 2 24 991.00 0.00 1 2019-11-20 20:29:15.321883 2019-11-21 03:02:25.903144 603 1 2 652.00 0.00 1 2019-11-21 19:49:19.598044 2019-11-22 02:48:04.157254 599 3 23 890.00 0.00 1 2019-11-20 17:03:43.169396 2019-11-22 02:51:21.984747 602 2 24 991.00 0.00 1 2019-11-21 19:40:54.804746 2019-11-22 02:56:55.071659 606 1 2 921.00 0.00 1 2019-11-22 17:34:18.283473 2019-11-23 02:35:39.408423 604 2 27 1422.00 0.00 1 2019-11-22 17:05:39.434146 2019-11-23 02:55:24.771694 605 3 23 889.00 0.00 1 2019-11-22 17:30:16.699732 2019-11-23 03:33:11.948116 607 3 23 929.00 0.00 1 2019-11-23 17:05:38.930598 2019-11-24 02:58:05.815048 608 2 26 971.00 0.00 1 2019-11-23 17:58:10.721646 2019-11-24 02:58:19.252406 609 1 2 763.00 0.00 1 2019-11-23 19:50:35.55633 2019-11-24 03:07:22.305705 612 1 25 880.00 0.00 1 2019-11-24 19:21:35.309857 2019-11-24 21:59:15.720502 611 2 27 2077.00 0.00 1 2019-11-24 17:03:50.388329 2019-11-24 22:05:05.841741 613 1 2 880.00 0.00 1 2019-11-25 17:15:03.190311 2019-11-26 02:39:08.007613 614 2 27 1077.00 0.00 1 2019-11-25 17:28:21.436164 2019-11-26 03:01:01.398098 610 3 23 794.00 0.00 1 2019-11-24 17:02:53.004944 2019-11-26 03:14:51.521817 616 1 2 978.00 0.00 1 2019-11-26 20:37:25.693885 2019-11-27 02:48:23.573512 615 3 23 794.00 0.00 1 2019-11-26 16:59:48.290506 2019-11-27 02:59:05.5739 617 2 26 726.00 0.00 1 2019-11-26 21:39:58.955874 2019-11-27 03:13:33.216056 619 1 2 675.00 0.00 1 2019-11-27 17:35:16.972332 2019-11-28 02:45:33.340269 618 2 27 798.00 0.00 1 2019-11-27 17:09:27.157393 2019-11-28 02:55:31.014163 620 3 21 843.00 0.00 1 2019-11-27 22:13:23.497946 2019-11-28 03:02:48.987321 623 1 2 675.00 0.00 1 2019-11-28 18:02:36.55579 2019-11-29 02:44:46.979989 622 2 27 846.00 0.00 1 2019-11-28 17:17:34.623268 2019-11-29 02:53:11.76355 621 3 23 541.00 0.00 1 2019-11-28 16:59:04.282606 2019-11-29 02:56:21.449899 626 1 2 773.00 0.00 1 2019-11-29 22:03:30.873476 2019-11-30 02:59:09.169744 625 2 26 2192.00 0.00 1 2019-11-29 19:22:31.259911 2019-11-30 03:00:10.403681 627 2 26 398.00 0.00 1 2019-11-30 17:56:51.725952 2019-12-01 02:48:59.428841 629 2 27 574.00 0.00 1 2019-12-01 02:49:57.910182 2019-12-01 03:02:01.321021 628 1 2 841.00 0.00 1 2019-11-30 18:19:40.35453 2019-12-01 03:05:06.144845 624 3 23 541.00 0.00 1 2019-11-29 17:02:40.439899 2019-12-01 03:06:24.792033 632 1 25 822.00 0.00 1 2019-12-01 19:57:27.540825 2019-12-01 22:02:21.324783 631 2 27 574.00 0.00 1 2019-12-01 17:11:39.710906 2019-12-01 22:06:33.480921 630 3 23 701.00 0.00 1 2019-12-01 17:11:20.99478 2019-12-01 23:07:25.823171 633 3 23 429.00 0.00 1 2019-12-02 17:08:47.433545 2019-12-03 02:55:12.112964 634 2 26 574.00 0.00 1 2019-12-02 18:31:57.847935 2019-12-03 02:57:58.71456 635 1 25 869.00 0.00 1 2019-12-02 19:54:25.018932 2019-12-03 03:07:14.114477 637 1 25 768.00 0.00 1 2019-12-03 17:57:53.930431 2019-12-04 02:03:28.674234 638 2 27 622.00 0.00 1 2019-12-03 18:53:49.57043 2019-12-04 02:13:25.956987 636 3 23 607.00 0.00 1 2019-12-03 17:11:28.241858 2019-12-04 02:54:53.296851 639 3 23 676.00 0.00 1 2019-12-04 17:04:24.071271 2019-12-05 02:57:54.578139 641 1 25 897.00 0.00 1 2019-12-04 20:33:32.086223 2019-12-05 02:59:16.224519 640 2 27 771.00 0.00 1 2019-12-04 17:09:45.602702 2019-12-05 03:04:57.943687 642 3 23 724.00 0.00 1 2019-12-05 17:03:38.159244 2019-12-06 02:52:53.436446 643 2 27 570.00 0.00 1 2019-12-05 17:18:52.691393 2019-12-06 03:00:10.888824 644 1 25 911.00 0.00 1 2019-12-05 21:31:53.720792 2019-12-06 03:00:34.599257 646 2 27 269.00 0.00 1 2019-12-06 17:11:49.615841 2019-12-07 03:02:17.205935 647 1 25 1088.00 0.00 1 2019-12-06 22:26:06.554486 2019-12-07 03:05:55.424078 645 3 23 713.00 0.00 1 2019-12-06 17:02:48.724816 2019-12-08 02:58:13.217319 648 1 2 716.00 0.00 1 2019-12-07 17:10:19.04749 2019-12-08 03:02:30.895739 649 2 26 467.00 0.00 1 2019-12-07 18:57:42.817192 2019-12-08 03:12:03.954607 651 1 2 547.00 0.00 1 2019-12-08 18:18:53.438603 2019-12-08 22:02:08.018582 650 2 27 821.00 0.00 1 2019-12-08 17:13:29.041108 2019-12-08 22:06:50.959842 652 3 21 671.00 0.00 1 2019-12-09 00:57:28.461939 2019-12-09 00:58:22.780838 654 2 27 370.00 0.00 1 2019-12-09 17:04:42.957144 2019-12-10 03:01:29.211761 653 1 2 496.00 0.00 1 2019-12-09 17:00:14.623315 2019-12-10 03:02:36.207924 655 3 21 671.00 0.00 1 2019-12-09 20:53:20.670102 2019-12-10 03:16:48.154545 656 3 23 571.00 0.00 1 2019-12-10 17:08:35.315031 2019-12-11 03:01:05.532627 658 1 2 1019.00 0.00 1 2019-12-10 18:32:37.0809 2019-12-11 03:11:47.570989 657 2 27 768.00 0.00 1 2019-12-10 17:11:25.633759 2019-12-11 03:12:16.569488 660 2 27 683.00 0.00 1 2019-12-11 17:10:33.379694 2019-12-12 03:02:04.299958 661 1 2 857.00 0.00 1 2019-12-11 17:40:35.596213 2019-12-12 03:18:31.803852 659 3 23 559.00 0.00 1 2019-12-11 16:59:29.188328 2019-12-12 03:19:06.055043 663 2 27 709.00 0.00 1 2019-12-12 17:14:48.194734 2019-12-13 03:03:49.89035 664 1 2 1035.00 0.00 1 2019-12-12 18:37:28.650263 2019-12-13 03:04:44.292241 662 3 23 1072.00 0.00 1 2019-12-12 17:01:01.449617 2019-12-13 03:16:22.49717 667 1 2 781.00 0.00 1 2019-12-13 17:58:11.810572 2019-12-14 02:55:18.779522 665 3 23 671.00 0.00 1 2019-12-13 17:10:46.803156 2019-12-14 02:59:58.177738 666 2 27 758.00 0.00 1 2019-12-13 17:12:07.603957 2019-12-14 03:02:10.417927 670 2 24 1356.00 0.00 1 2019-12-14 18:58:31.335097 2019-12-15 03:03:40.436337 668 3 23 699.00 0.00 1 2019-12-14 16:54:53.654625 2019-12-15 03:13:53.155053 669 1 2 1012.00 0.00 1 2019-12-14 18:02:27.31448 2019-12-15 03:16:35.713664 671 1 2 922.00 0.00 1 2019-12-15 17:13:32.302536 2019-12-15 23:14:38.330583 672 2 26 808.00 0.00 1 2019-12-15 17:42:20.628056 2019-12-15 23:26:30.276978 673 3 21 298.00 0.00 1 2019-12-15 19:43:54.271535 2019-12-16 01:04:00.844599 675 1 2 1130.00 0.00 1 2019-12-16 18:07:29.058368 2019-12-17 02:47:54.438063 674 2 27 395.00 0.00 1 2019-12-16 17:23:59.068791 2019-12-17 03:00:30.183093 676 3 21 220.00 0.00 1 2019-12-16 21:04:36.900374 2019-12-17 03:07:26.783451 678 2 27 539.00 0.00 1 2019-12-17 17:10:17.739475 2019-12-18 03:01:13.125355 677 1 2 1454.00 0.00 1 2019-12-17 17:08:33.332749 2019-12-18 03:05:04.34738 679 3 21 539.00 0.00 1 2019-12-17 20:07:50.716017 2019-12-18 03:05:56.965704 680 1 2 1261.00 0.00 1 2019-12-18 17:17:03.037685 2019-12-19 02:53:32.118754 681 2 27 638.00 0.00 1 2019-12-18 17:17:50.902042 2019-12-19 03:02:29.679709 682 3 19 1205.00 0.00 1 2019-12-18 19:51:23.64707 2019-12-19 03:09:08.878608 684 1 2 1268.00 0.00 1 2019-12-19 18:21:20.637793 2019-12-20 02:59:42.553909 683 2 27 1243.00 0.00 1 2019-12-19 17:16:57.663802 2019-12-20 03:03:50.924227 685 3 21 1152.00 0.00 1 2019-12-19 20:33:27.369148 2019-12-20 03:07:33.59659 689 1 2 1223.00 0.00 1 2019-12-20 20:13:34.986431 2019-12-21 03:03:41.029406 686 2 27 1478.00 0.00 1 2019-12-20 17:09:22.172302 2019-12-21 03:07:38.745672 688 3 21 951.00 0.00 1 2019-12-20 17:44:21.096713 2019-12-21 03:16:28.56524 690 1 2 1371.00 0.00 1 2019-12-21 17:46:17.872712 2019-12-22 02:57:11.713873 687 2 24 1478.00 0.00 1 2019-12-20 17:10:30.864331 2019-12-22 03:14:32.414598 691 3 21 809.00 0.00 1 2019-12-21 20:03:25.540869 2019-12-22 03:33:58.499347 693 1 9 1237.00 0.00 1 2019-12-22 17:09:40.537249 2019-12-23 00:14:29.913003 692 2 27 1400.45 0.00 1 2019-12-22 17:08:12.266356 2019-12-23 01:26:08.34329 694 3 21 821.00 0.00 1 2019-12-22 20:58:33.511748 2019-12-23 03:08:59.629465 695 1 2 1084.00 0.00 1 2019-12-23 00:42:51.158268 2019-12-24 03:07:23.863335 696 2 27 2278.74 0.00 1 2019-12-23 17:14:07.280672 2019-12-24 03:20:26.632159 697 3 21 892.00 0.00 1 2019-12-23 18:10:40.049187 2019-12-24 03:46:58.256527 699 1 2 1134.00 0.00 1 2019-12-24 17:09:51.606665 2019-12-25 01:20:47.353023 698 2 27 1250.00 0.00 1 2019-12-24 17:07:31.608094 2019-12-25 01:31:54.457693 700 3 21 1914.00 0.00 1 2019-12-24 19:26:53.13579 2019-12-25 02:33:07.37001 703 2 8 83.40 0.00 1 2019-12-26 19:06:45.453293 2019-12-27 02:43:24.382927 701 1 2 953.00 0.00 1 2019-12-26 17:04:18.371915 2019-12-27 02:59:36.170057 702 3 21 1503.00 0.00 1 2019-12-26 17:52:34.038571 2019-12-27 03:03:38.644853 706 1 2 1032.00 0.00 1 2019-12-27 18:42:17.551724 2019-12-28 02:42:36.886748 704 2 27 832.00 0.00 1 2019-12-27 17:11:29.82315 2019-12-28 02:53:15.882759 705 3 21 1481.00 0.00 1 2019-12-27 17:45:20.677574 2019-12-28 02:58:35.383747 707 2 27 855.00 0.00 1 2019-12-28 17:59:49.106329 2019-12-29 02:05:56.133975 708 1 2 917.00 0.00 1 2019-12-28 19:45:28.555588 2019-12-29 02:06:51.117467 709 3 21 912.00 0.00 1 2019-12-28 20:03:37.535199 2019-12-29 02:39:22.013106 711 1 2 1148.00 0.00 1 2019-12-29 17:48:52.317604 2019-12-29 21:57:56.732281 712 3 21 946.00 0.00 1 2019-12-29 18:31:18.010737 2019-12-30 01:28:00.561983 714 3 21 1015.00 0.00 1 2019-12-30 17:59:38.367155 2019-12-31 02:59:50.756592 710 2 27 242.40 0.00 1 2019-12-29 17:13:04.615415 2019-12-31 03:02:31.15765 713 1 2 1123.00 0.00 1 2019-12-30 17:41:00.700544 2019-12-31 03:14:24.168857 716 2 27 858.90 0.00 1 2019-12-31 17:17:12.361149 2020-01-01 00:56:21.873813 715 1 2 1127.00 0.00 1 2019-12-31 16:28:09.888927 2020-01-01 01:13:57.255064 717 3 21 1067.00 0.00 1 2019-12-31 19:28:58.681564 2020-01-01 01:14:59.969514 718 2 24 677.35 0.00 1 2020-01-01 01:02:39.936736 2020-01-03 02:14:05.31022 719 1 2 591.00 0.00 1 2020-01-02 19:03:49.262793 2020-01-03 02:51:07.032404 720 3 21 1137.00 0.00 1 2020-01-03 02:23:41.260963 2020-01-03 02:58:21.787886 722 1 2 1270.00 0.00 1 2020-01-03 17:40:39.632536 2020-01-04 02:57:40.561326 723 3 21 1137.00 0.00 1 2020-01-03 18:12:02.726255 2020-01-04 03:01:02.065517 721 2 27 1201.65 0.00 1 2020-01-03 17:10:44.425202 2020-01-04 03:02:05.153935 724 1 2 970.00 0.00 1 2020-01-04 18:07:37.389351 2020-01-05 02:27:22.99728 726 2 8 1028.25 0.00 1 2020-01-04 18:20:03.011269 2020-01-05 02:49:33.981287 725 3 21 1296.00 0.00 1 2020-01-04 18:15:44.616524 2020-01-05 02:56:23.155344 728 1 2 777.00 0.00 1 2020-01-07 00:15:58.432844 2020-01-07 02:54:54.930376 727 2 27 748.00 0.00 1 2020-01-06 17:03:55.627057 2020-01-07 03:00:36.775478 730 3 21 1246.00 0.00 1 2020-01-07 20:49:45.857664 2020-01-08 02:52:04.833466 731 1 2 1107.00 0.00 1 2020-01-07 21:17:06.747071 2020-01-08 02:52:20.880346 729 2 27 1029.40 0.00 1 2020-01-07 17:14:51.428375 2020-01-08 02:57:35.715315 733 1 2 984.00 0.00 1 2020-01-08 19:15:03.169248 2020-01-09 02:10:59.886398 732 2 27 1448.00 0.00 1 2020-01-08 17:04:15.970114 2020-01-09 02:24:44.882729 734 3 21 1100.00 0.00 1 2020-01-09 01:02:57.788924 2020-01-09 03:01:34.402049 736 1 2 824.00 0.00 1 2020-01-09 17:32:31.420967 2020-01-10 01:57:18.425334 735 2 27 798.00 0.00 1 2020-01-09 17:15:46.953401 2020-01-10 02:01:41.965404 737 2 27 1097.00 0.00 1 2020-01-10 17:11:58.003373 2020-01-11 02:01:27.526271 738 1 2 1174.00 0.00 1 2020-01-10 17:53:34.219397 2020-01-11 02:04:26.677907 739 3 21 1077.00 0.00 1 2020-01-10 22:19:01.968515 2020-01-11 03:04:08.317277 740 2 24 1372.00 0.00 1 2020-01-11 18:36:30.058618 2020-01-12 02:04:16.040848 741 1 2 1002.00 0.00 1 2020-01-11 18:37:27.437758 2020-01-12 02:21:02.717281 743 1 2 696.00 0.00 1 2020-01-13 17:33:46.799254 2020-01-14 01:36:54.877123 742 2 27 1372.00 0.00 1 2020-01-13 17:02:03.89897 2020-01-14 02:03:45.753039 744 3 21 1144.00 0.00 1 2020-01-14 02:55:37.768728 2020-01-14 02:56:48.649534 745 2 27 1372.00 0.00 1 2020-01-14 17:00:49.221848 2020-01-15 02:02:51.569741 747 1 2 670.00 0.00 1 2020-01-14 20:19:38.443221 2020-01-15 02:03:13.28882 746 3 21 1044.00 0.00 1 2020-01-14 18:10:16.635335 2020-01-15 02:58:12.69857 749 1 2 670.00 0.00 1 2020-01-15 17:52:30.665296 2020-01-16 02:04:20.110506 748 2 27 1372.00 0.00 1 2020-01-15 17:20:30.102096 2020-01-16 02:08:07.246738 750 3 21 1143.00 0.00 1 2020-01-16 00:18:50.083273 2020-01-16 02:57:24.145553 751 2 27 1151.00 0.00 1 2020-01-16 17:32:52.957986 2020-01-17 02:03:43.655726 752 1 2 938.00 0.00 1 2020-01-16 17:57:26.87853 2020-01-17 02:07:31.92284 753 3 21 1013.00 0.00 1 2020-01-16 19:11:00.13825 2020-01-17 03:00:46.09364 756 1 2 837.00 0.00 1 2020-01-17 19:14:48.443492 2020-01-18 02:01:51.172948 754 2 27 1048.00 0.00 1 2020-01-17 17:15:01.381592 2020-01-18 02:02:09.8593 755 3 21 1158.00 0.00 1 2020-01-17 17:44:15.729165 2020-01-18 03:01:59.492264 757 1 2 667.00 0.00 1 2020-01-18 17:53:46.253168 2020-01-19 02:02:47.703627 759 3 21 1237.00 0.00 1 2020-01-18 20:01:03.84409 2020-01-19 02:58:04.900732 760 1 29 732.00 0.00 1 2020-01-21 00:46:17.916675 2020-01-21 01:53:11.977208 761 3 21 986.00 0.00 1 2020-01-21 01:58:26.815362 2020-01-21 17:20:53.786161 763 1 2 607.00 0.00 1 2020-01-21 19:08:24.4807 2020-01-22 01:47:51.250614 758 2 10 1018.00 0.00 1 2020-01-18 19:00:34.113059 2020-01-22 02:04:49.283113 762 3 21 1386.00 0.00 1 2020-01-21 17:21:24.531305 2020-01-22 02:51:13.303876 766 1 2 607.00 0.00 1 2020-01-22 18:26:37.142137 2020-01-23 02:05:23.12472 765 3 21 1386.00 0.00 1 2020-01-22 18:00:25.232626 2020-01-23 02:59:41.74034 768 1 2 627.00 0.00 1 2020-01-24 01:02:43.515146 2020-01-24 02:01:40.749757 764 2 27 754.80 0.00 1 2020-01-22 17:32:29.775843 2020-01-24 02:02:38.688188 767 3 21 886.00 0.00 1 2020-01-23 20:23:52.152848 2020-01-24 03:00:59.106011 769 2 27 1575.00 0.00 1 2020-01-24 17:38:20.11214 2020-01-25 02:05:10.124796 770 1 2 971.00 0.00 1 2020-01-24 17:47:03.411112 2020-01-25 02:12:07.50935 771 3 19 886.00 0.00 1 2020-01-24 23:47:55.925419 2020-01-25 02:55:07.53466 773 2 8 883.00 0.00 1 2020-01-25 19:49:08.622922 2020-01-26 02:10:19.918506 772 1 2 471.00 0.00 1 2020-01-25 19:43:47.115589 2020-01-26 02:30:07.263948 774 3 21 886.00 0.00 1 2020-01-26 01:40:00.246202 2020-01-26 03:01:06.063916 775 1 25 824.00 0.00 1 2020-01-26 17:40:49.448521 2020-01-26 22:04:52.574634 776 2 27 840.00 0.00 1 2020-01-26 20:14:24.91579 2020-01-26 22:13:37.071072 778 1 2 1644.00 0.00 1 2020-01-27 21:51:22.893749 2020-01-28 01:57:43.263874 777 2 27 1229.00 0.00 1 2020-01-27 16:58:51.35205 2020-01-28 02:08:51.912205 779 3 21 955.00 0.00 1 2020-01-28 02:29:10.674939 2020-01-28 03:06:07.49525 782 2 8 888.40 0.00 1 2020-01-28 19:45:24.773758 2020-01-29 02:09:30.365782 780 1 2 834.00 0.00 1 2020-01-28 18:22:56.025258 2020-01-29 02:13:14.325128 781 3 19 884.00 0.00 1 2020-01-28 19:13:09.446245 2020-01-29 02:58:34.073952 784 2 27 988.40 0.00 1 2020-01-29 17:14:24.985915 2020-01-30 02:01:37.065744 785 3 21 1286.00 0.00 1 2020-01-29 17:45:46.933564 2020-01-30 03:31:57.923544 783 1 2 634.00 0.00 1 2020-01-29 16:43:45.349898 2020-01-30 01:55:35.712924 786 2 27 988.00 0.00 1 2020-01-30 17:09:13.638235 2020-01-31 02:04:45.291294 787 1 2 863.00 0.00 1 2020-01-30 17:50:05.688728 2020-01-31 02:24:58.535066 788 3 18 705.00 0.00 1 2020-01-30 20:21:32.884518 2020-01-31 03:01:36.822625 789 2 27 1036.00 0.00 1 2020-01-31 17:02:10.295027 2020-02-01 02:01:53.240598 790 1 2 713.00 0.00 1 2020-01-31 17:08:37.795661 2020-02-01 02:05:46.253971 791 3 19 1205.00 0.00 1 2020-01-31 18:27:00.74417 2020-02-01 02:51:29.493552 793 1 2 553.00 0.00 1 2020-02-01 20:44:59.86326 2020-02-02 01:56:22.882589 792 2 27 1476.00 0.00 1 2020-02-01 20:42:30.272252 2020-02-02 02:01:53.177232 794 3 21 1254.00 0.00 1 2020-02-01 21:54:31.047191 2020-02-02 03:00:37.352266 795 3 21 1254.00 0.00 1 2020-02-04 01:45:46.696265 2020-02-04 02:06:34.105841 797 2 27 1726.00 0.00 1 2020-02-04 21:14:35.528023 2020-02-05 02:00:16.42129 796 1 2 793.00 0.00 1 2020-02-04 18:54:33.459478 2020-02-05 02:23:57.862847 798 3 21 1254.00 0.00 1 2020-02-04 23:19:15.012546 2020-02-05 02:46:18.711188 800 1 2 653.00 0.00 1 2020-02-05 19:33:29.780455 2020-02-06 02:04:24.709099 799 2 27 1874.00 0.00 1 2020-02-05 17:03:00.647654 2020-02-06 02:05:40.586059 801 3 21 1542.00 0.00 1 2020-02-05 21:59:28.716766 2020-02-06 02:54:24.721429 802 1 2 913.00 0.00 1 2020-02-06 19:31:09.810823 2020-02-07 01:59:52.917808 803 2 27 2474.00 0.00 1 2020-02-06 20:03:21.109114 2020-02-07 02:12:56.828456 804 3 21 1083.00 0.00 1 2020-02-06 20:12:12.63747 2020-02-07 02:56:14.229292 805 2 27 1628.00 0.00 1 2020-02-07 17:00:36.466049 2020-02-08 02:01:08.546373 806 1 2 983.00 0.00 1 2020-02-07 20:18:50.664606 2020-02-08 02:12:54.462383 807 3 21 583.00 0.00 1 2020-02-08 00:22:46.949669 2020-02-08 02:52:10.561789 810 1 2 1358.00 0.00 1 2020-02-08 21:33:43.248041 2020-02-09 02:12:34.031337 808 2 27 1987.00 0.00 1 2020-02-08 20:31:57.193994 2020-02-09 02:12:51.25286 809 3 21 1031.00 0.00 1 2020-02-08 20:44:35.914189 2020-02-09 03:02:55.683639 811 2 27 1172.00 0.00 1 2020-02-09 17:04:55.719866 2020-02-09 21:59:08.204432 812 2 27 1172.00 0.00 1 2020-02-10 17:04:51.296288 2020-02-11 02:00:39.336276 813 1 2 1078.00 0.00 1 2020-02-10 17:34:45.331097 2020-02-11 02:04:23.713368 814 3 21 1380.00 0.00 1 2020-02-10 19:21:01.716415 2020-02-11 03:10:49.5471 815 2 27 1172.00 0.00 1 2020-02-11 17:04:58.613343 2020-02-12 02:01:07.462578 817 1 2 967.00 0.00 1 2020-02-11 22:52:25.300444 2020-02-12 02:03:00.204974 816 3 21 1278.00 0.00 1 2020-02-11 17:27:30.850732 2020-02-12 03:01:43.958355 818 2 27 1172.00 0.00 1 2020-02-12 17:06:42.83995 2020-02-13 02:00:19.634499 819 1 2 1266.00 0.00 1 2020-02-12 17:51:28.193709 2020-02-13 02:24:36.956696 820 3 21 1378.00 0.00 1 2020-02-12 21:30:44.076491 2020-02-13 02:36:49.017889 823 2 8 1172.00 0.00 1 2020-02-14 01:59:05.526164 2020-02-14 01:59:46.345721 821 1 9 986.00 0.00 1 2020-02-13 17:43:28.560839 2020-02-14 02:08:32.422822 822 3 21 1378.00 0.00 1 2020-02-13 19:13:13.6933 2020-02-14 02:57:55.716514 824 3 21 878.00 0.00 1 2020-02-14 03:03:21.212215 2020-02-14 03:07:28.683099 826 1 2 986.00 0.00 1 2020-02-14 18:16:04.828731 2020-02-15 02:01:06.883164 827 2 24 972.00 0.00 1 2020-02-14 23:44:14.770068 2020-02-15 02:03:17.390214 825 3 21 937.00 0.00 1 2020-02-14 17:31:32.874172 2020-02-15 03:02:35.211753 830 2 24 722.00 0.00 1 2020-02-15 19:25:18.654694 2020-02-16 02:16:42.723641 828 1 2 986.00 0.00 1 2020-02-15 17:03:09.527954 2020-02-16 02:32:35.164029 829 3 21 1124.00 0.00 1 2020-02-15 17:52:37.553457 2020-02-16 02:56:21.550229 832 3 21 1224.00 0.00 1 2020-02-17 18:47:29.215337 2020-02-18 02:53:06.274315 831 2 27 818.00 0.00 1 2020-02-16 21:50:30.44255 2020-02-18 02:59:46.579246 833 1 2 1176.00 0.00 1 2020-02-17 22:46:19.031273 2020-02-18 03:09:57.926385 834 2 27 1177.00 0.00 1 2020-02-18 17:11:02.524801 2020-02-19 02:51:02.494736 835 3 21 1223.00 0.00 1 2020-02-18 20:33:01.910123 2020-02-19 02:56:06.919014 836 1 2 1056.00 0.00 1 2020-02-19 02:53:46.263661 2020-02-19 03:00:34.277725 839 2 24 1177.00 0.00 1 2020-02-19 18:16:25.417351 2020-02-20 02:03:03.87226 838 1 2 1006.00 0.00 1 2020-02-19 18:15:40.942576 2020-02-20 02:03:04.054956 841 2 27 1177.00 0.00 1 2020-02-21 01:18:53.737066 2020-02-21 02:30:39.46847 840 1 2 1075.00 0.00 1 2020-02-20 20:44:15.874287 2020-02-21 02:33:20.341847 837 3 21 922.00 0.00 1 2020-02-19 17:40:23.411541 2020-02-21 02:58:54.375407 842 1 2 1223.00 0.00 1 2020-02-21 17:36:21.134129 2020-02-22 02:27:48.321465 843 2 27 1177.00 0.00 1 2020-02-21 17:39:18.430707 2020-02-22 02:31:30.749517 844 3 21 1020.00 0.00 1 2020-02-21 21:52:16.749473 2020-02-22 03:00:45.974435 847 2 24 1177.00 0.00 1 2020-02-22 18:35:09.840239 2020-02-23 02:30:32.869628 846 1 2 1390.00 0.00 1 2020-02-22 18:34:26.168178 2020-02-23 02:33:35.085382 845 3 21 1020.00 0.00 1 2020-02-22 18:09:12.452438 2020-02-23 03:14:04.745816 848 1 2 1070.00 0.00 1 2020-02-24 19:30:43.192339 2020-02-25 02:42:18.382365 849 3 21 1140.00 0.00 1 2020-02-24 21:18:10.411847 2020-02-25 03:04:02.458858 850 2 27 1177.00 0.00 1 2020-02-25 02:02:08.840631 2020-02-26 02:31:29.840588 851 1 2 1155.00 0.00 1 2020-02-25 17:32:33.52671 2020-02-26 02:36:44.165596 852 3 18 1140.00 0.00 1 2020-02-26 01:10:25.313558 2020-02-26 02:50:34.142407 855 1 2 973.00 0.00 1 2020-02-26 18:16:24.849983 2020-02-27 02:30:04.968341 853 2 27 1177.00 0.00 1 2020-02-26 17:05:07.027146 2020-02-27 02:31:51.494534 854 3 21 1293.00 0.00 1 2020-02-26 18:13:16.170071 2020-02-27 03:01:44.09315 856 2 27 1177.00 0.00 1 2020-02-27 17:12:49.542053 2020-02-28 02:29:48.633115 858 1 2 1171.00 0.00 1 2020-02-27 20:35:04.665681 2020-02-28 02:33:01.34991 859 1 2 934.00 0.00 1 2020-02-28 17:34:51.084783 2020-02-29 02:31:34.736471 857 3 21 1043.00 0.00 1 2020-02-27 19:07:13.968761 2020-02-29 02:45:53.317035 862 1 2 1030.00 0.00 1 2020-02-29 23:09:46.014032 2020-03-01 02:23:53.696731 860 2 27 1377.00 0.00 1 2020-02-29 00:47:47.761941 2020-03-01 02:37:25.43226 861 3 21 823.00 0.00 1 2020-02-29 17:48:58.910876 2020-03-01 03:01:07.257202 863 2 27 302.00 0.00 1 2020-03-01 19:38:22.683581 2020-03-01 22:01:04.817904 865 1 2 840.00 0.00 1 2020-03-02 18:33:03.87109 2020-03-03 02:34:57.681096 866 2 27 951.00 0.00 1 2020-03-02 23:03:50.825509 2020-03-03 02:39:05.453209 864 3 21 823.00 0.00 1 2020-03-01 20:26:38.148518 2020-03-03 03:01:33.875093 868 1 2 840.00 0.00 1 2020-03-03 19:45:04.385037 2020-03-04 02:25:57.441566 869 2 27 1480.00 0.00 1 2020-03-04 02:23:48.175459 2020-03-04 02:30:08.378011 867 3 21 823.00 0.00 1 2020-03-03 17:13:13.214122 2020-03-04 03:06:59.624107 870 1 2 740.00 0.00 1 2020-03-04 21:56:13.439092 2020-03-05 02:16:29.99184 871 2 27 980.00 0.00 1 2020-03-04 22:35:30.200165 2020-03-05 02:30:04.959304 872 3 21 523.00 0.00 1 2020-03-05 02:56:01.214231 2020-03-05 02:57:09.758959 874 1 2 940.00 0.00 1 2020-03-05 19:31:40.974516 2020-03-06 02:25:48.566417 873 2 27 579.00 0.00 1 2020-03-05 18:11:42.623879 2020-03-06 02:33:27.480356 875 2 27 918.00 0.00 1 2020-03-06 17:23:55.849526 2020-03-07 02:29:49.958376 877 1 2 1140.00 0.00 1 2020-03-06 20:08:18.918642 2020-03-07 02:51:41.271487 876 3 21 523.00 0.00 1 2020-03-06 17:39:38.954908 2020-03-07 18:24:06.816946 879 1 2 1418.00 0.00 1 2020-03-07 18:12:18.786073 2020-03-08 02:21:13.54529 878 2 24 918.00 0.00 1 2020-03-07 18:07:02.116036 2020-03-08 02:31:00.193797 880 3 21 679.00 0.00 1 2020-03-07 19:28:37.177428 2020-03-08 02:57:06.125957 882 1 2 1151.00 0.00 1 2020-03-08 19:01:19.337194 2020-03-08 22:00:40.858485 881 2 27 1817.00 0.00 1 2020-03-08 18:52:37.205125 2020-03-08 22:15:49.713445 885 2 26 767.00 0.00 1 2020-03-10 02:53:12.162114 2020-03-10 02:54:39.931303 883 3 21 679.00 0.00 1 2020-03-09 19:12:15.561996 2020-03-10 02:59:05.958936 884 1 25 749.00 0.00 1 2020-03-10 02:51:45.863662 2020-03-11 02:20:59.716832 886 2 24 767.00 0.00 1 2020-03-10 18:18:05.814831 2020-03-11 02:58:20.078836 887 3 21 727.00 0.00 1 2020-03-10 21:04:46.052565 2020-03-11 03:02:20.713332 888 1 2 849.00 0.00 1 2020-03-11 17:52:41.459376 2020-03-12 02:23:28.791783 890 2 27 940.00 0.00 1 2020-03-12 01:41:18.408764 2020-03-12 02:32:29.36287 891 1 2 949.00 0.00 1 2020-03-12 02:35:14.46393 2020-03-12 02:39:10.438459 889 3 21 727.00 0.00 1 2020-03-11 23:15:42.666821 2020-03-12 03:02:40.98788 893 2 8 940.00 0.00 1 2020-03-12 23:50:18.179622 2020-03-13 02:47:58.480658 895 2 27 1035.00 0.00 1 2020-03-13 20:57:02.909078 2020-03-14 02:32:39.083017 894 1 2 948.00 0.00 1 2020-03-13 18:31:36.058426 2020-03-14 02:35:05.667221 892 3 21 926.00 0.00 1 2020-03-12 23:25:26.245573 2020-03-14 03:01:41.650245 896 1 2 896.00 0.00 1 2020-03-14 17:34:46.235809 2020-03-15 02:35:11.844325 897 2 8 932.00 0.00 1 2020-03-14 17:48:25.789324 2020-03-15 02:23:35.009758 898 3 21 1125.00 0.00 1 2020-03-15 00:15:22.894827 2020-03-15 03:00:35.344119 900 1 2 1045.00 0.00 1 2020-03-15 19:06:18.547902 2020-03-15 22:00:18.476616 902 2 27 830.00 0.00 1 2020-03-16 19:25:52.9078 2020-03-16 22:05:36.103559 901 1 2 974.00 0.00 1 2020-03-16 17:24:56.981829 2020-03-16 22:07:20.848522 899 3 21 924.00 0.00 1 2020-03-15 17:42:44.279429 2020-03-17 02:18:46.989744 903 1 2 1203.00 0.00 1 2020-03-17 19:44:02.066267 2020-03-18 02:24:12.916077 905 2 24 519.00 0.00 1 2020-03-18 00:02:12.905289 2020-03-18 02:30:41.056618 904 3 18 924.00 0.00 1 2020-03-17 20:06:28.846768 2020-03-18 02:59:14.902486 906 1 2 1362.00 0.00 1 2020-03-18 18:22:08.574013 2020-03-19 02:26:01.926083 908 2 27 888.00 0.00 1 2020-03-18 19:11:44.494092 2020-03-19 02:29:53.947671 907 3 21 721.00 0.00 1 2020-03-18 18:53:21.011722 2020-03-19 02:49:17.874413 910 1 2 1207.00 0.00 1 2020-03-19 19:59:33.515406 2020-03-20 02:27:08.115805 911 3 21 520.00 0.00 1 2020-03-19 20:32:38.224735 2020-03-20 02:55:00.971859 909 2 27 888.00 0.00 1 2020-03-19 17:25:15.706392 2020-03-20 02:55:26.925233 913 1 2 1005.00 0.00 1 2020-03-20 21:02:29.422928 2020-03-21 02:25:20.188049 914 2 27 623.00 0.00 1 2020-03-21 02:18:57.697148 2020-03-21 02:28:55.936164 912 3 18 520.00 0.00 1 2020-03-20 20:43:05.968705 2020-03-21 02:50:33.530782 917 2 8 623.00 0.00 1 2020-03-21 21:22:52.01616 2020-03-22 01:39:15.164049 916 1 2 1054.00 0.00 1 2020-03-21 21:15:33.161148 2020-03-22 01:43:08.056919 915 3 21 717.00 0.00 1 2020-03-21 17:22:54.396876 2020-03-22 02:52:36.817261 918 2 27 623.00 0.00 1 2020-03-22 21:43:20.115567 2020-03-22 21:58:59.706252 921 3 21 755.00 0.00 1 2020-03-23 22:03:43.17665 2020-03-24 02:01:28.967561 919 2 27 623.00 0.00 1 2020-03-23 18:24:27.023008 2020-03-24 02:27:19.06229 920 1 2 836.00 0.00 1 2020-03-23 21:22:04.168807 2020-03-24 02:28:11.893146 922 2 27 500.00 0.00 1 2020-03-24 18:41:58.410003 2020-03-25 02:01:01.258255 923 1 2 754.00 0.00 1 2020-03-24 23:14:22.471567 2020-03-25 02:10:35.455648 925 3 21 755.00 0.00 1 2020-03-26 19:14:46.450166 2020-03-27 01:14:59.350986 926 3 21 755.00 0.00 1 2020-03-27 21:40:28.106651 2020-03-29 01:08:28.516058 924 2 26 529.00 0.00 1 2020-03-26 19:02:53.271366 2020-03-31 19:16:02.307352 928 3 18 700.00 0.00 1 2020-04-30 22:34:04.161509 2020-05-04 05:34:18.701359 927 1 2 754.00 0.00 1 2020-04-05 02:54:45.177298 2020-05-04 05:35:13.293443 930 1 9 754.00 0.00 1 2020-05-04 05:35:15.884918 2020-05-04 05:35:36.277617 929 2 8 527.00 0.00 1 2020-05-03 23:33:26.548915 2020-05-04 05:36:31.914129 933 1 9 754.00 0.00 1 2020-05-14 21:17:45.296074 2020-06-26 21:06:25.538519 932 2 8 527.00 0.00 1 2020-05-14 21:06:02.782937 2020-07-01 19:10:44.800373 934 1 2 1154.00 0.00 1 2020-07-01 17:27:04.037311 2020-07-02 21:59:01.997051 931 3 18 700.00 0.00 1 2020-05-13 23:50:40.835363 2020-07-03 01:50:57.278158 935 1 2 966.00 0.00 1 2020-07-03 20:58:46.072344 2020-07-03 22:00:17.956338 936 3 18 200.00 0.00 1 2020-07-04 00:26:28.386572 2020-07-04 01:19:03.654393 938 1 9 683.00 0.00 1 2020-07-04 23:05:24.196908 2020-07-04 23:09:30.506285 937 3 21 200.00 0.00 1 2020-07-04 18:31:55.867779 2020-07-05 00:07:14.390426 939 3 18 642.00 0.00 1 2020-07-06 01:36:15.822351 2020-07-06 01:52:19.486897 940 1 9 683.00 0.00 1 2020-07-06 01:41:14.760966 2020-07-06 01:53:20.926885 941 1 2 683.00 0.00 1 2020-07-06 17:12:00.933649 2020-07-07 00:18:01.204837 942 3 18 642.00 0.00 1 2020-07-06 22:52:32.544148 2020-07-07 00:58:50.876683 943 1 2 873.00 0.00 1 2020-07-07 18:32:49.522626 2020-07-07 23:41:04.796888 944 3 18 640.00 0.00 1 2020-07-07 21:03:00.625049 2020-07-08 00:31:58.045123 945 1 2 752.00 0.00 1 2020-07-08 17:54:16.137111 2020-07-08 23:24:51.833469 946 3 18 945.00 0.00 1 2020-07-08 19:24:55.337637 2020-07-09 00:29:40.874337 947 1 2 799.00 0.00 1 2020-07-09 16:42:48.844052 2020-07-10 00:01:18.604957 948 3 18 1443.00 0.00 1 2020-07-09 18:43:02.105237 2020-07-10 00:39:09.500792 949 1 2 868.00 0.00 1 2020-07-10 16:14:10.542195 2020-07-10 22:08:48.34226 950 3 18 1301.00 0.00 1 2020-07-10 19:32:15.268737 2020-07-11 00:42:22.574226 951 1 2 868.00 0.00 1 2020-07-11 17:04:36.235536 2020-07-11 22:31:44.259186 953 1 2 468.00 0.00 1 2020-07-13 16:27:45.10436 2020-07-13 23:58:00.448576 952 3 21 1301.00 0.00 1 2020-07-11 23:21:34.880778 2020-07-14 01:06:03.304355 954 1 2 567.00 0.00 1 2020-07-14 17:24:15.244614 2020-07-14 23:45:54.317611 955 3 18 1218.00 0.00 1 2020-07-14 19:42:34.340338 2020-07-15 00:03:31.263529 956 1 2 567.00 0.00 1 2020-07-15 16:19:28.31517 2020-07-15 23:07:27.474206 957 3 18 1217.00 0.00 1 2020-07-15 19:29:58.174303 2020-07-16 00:04:00.123046 958 3 18 975.00 0.00 1 2020-07-16 18:57:26.026509 2020-07-16 23:14:42.644409 959 1 2 567.00 0.00 1 2020-07-17 18:54:39.407013 2020-07-17 23:52:22.637741 960 3 21 1224.99 0.00 1 2020-07-17 21:07:53.11985 2020-07-18 00:46:29.743757 961 1 2 659.00 0.00 1 2020-07-18 16:11:20.733022 2020-07-18 23:43:33.903706 962 3 18 1125.00 0.00 1 2020-07-18 18:58:50.911272 2020-07-19 00:37:23.733231 963 1 2 743.00 0.00 1 2020-07-20 16:24:24.292365 2020-07-20 23:53:20.791361 964 3 21 1023.00 0.00 1 2020-07-20 19:09:38.830353 2020-07-21 00:36:49.524312 965 3 18 1028.00 0.00 1 2020-07-21 21:13:18.842602 2020-07-22 00:32:44.00514 966 3 18 945.00 0.00 1 2020-07-22 21:28:40.452374 2020-07-23 00:21:45.441279 967 1 2 690.00 0.00 1 2020-07-23 16:57:47.244861 2020-07-24 00:07:16.352521 968 3 18 952.00 0.00 1 2020-07-23 23:51:02.701061 2020-07-24 00:41:36.461912 970 1 2 550.00 0.00 1 2020-07-24 18:54:07.638329 2020-07-25 00:17:25.555817 969 3 18 900.00 0.00 1 2020-07-24 18:39:13.559659 2020-07-25 01:11:46.534987 971 3 21 765.00 0.00 1 2020-07-25 19:40:36.484574 2020-07-26 00:36:19.835171 972 1 2 608.00 0.00 1 2020-07-27 20:27:10.675035 2020-07-28 00:01:46.8745 973 3 21 765.00 0.00 1 2020-07-27 20:49:11.572806 2020-07-28 00:25:51.786808 974 1 2 633.00 0.00 1 2020-07-28 16:03:58.587172 2020-07-28 23:59:44.809865 975 3 21 1063.00 0.00 1 2020-07-28 18:02:12.658059 2020-07-29 00:30:37.188466 976 1 2 579.00 0.00 1 2020-07-29 17:03:03.35376 2020-07-30 00:05:58.901993 977 3 18 1063.00 0.00 1 2020-07-29 21:46:21.884594 2020-07-30 00:34:59.058888 979 3 18 859.99 0.00 1 2020-07-30 18:34:10.472569 2020-07-31 00:39:56.455124 978 1 9 579.00 0.00 1 2020-07-30 00:25:06.737551 2020-07-31 16:25:39.894636 980 1 2 579.00 0.00 1 2020-07-31 16:25:54.832151 2020-07-31 23:59:57.969615 981 3 18 757.00 0.00 1 2020-07-31 21:23:46.016808 2020-08-01 00:30:03.86151 982 3 18 840.00 0.00 1 2020-08-01 00:45:48.760068 2020-08-01 00:49:08.867291 983 1 2 579.00 0.00 1 2020-08-01 16:47:39.69135 2020-08-01 23:57:23.129559 984 3 18 840.00 0.00 1 2020-08-01 18:42:24.517508 2020-08-02 00:35:09.148589 985 1 2 339.00 0.00 1 2020-08-03 16:32:00.121288 2020-08-04 00:00:28.965376 986 3 18 738.00 0.00 1 2020-08-03 18:35:22.305242 2020-08-04 00:49:37.15747 987 1 2 737.00 0.00 1 2020-08-04 17:40:57.143504 2020-08-04 23:51:11.982591 988 3 18 738.15 0.00 1 2020-08-04 23:08:01.553518 2020-08-05 00:56:34.675863 989 1 2 722.00 0.00 1 2020-08-05 18:01:09.874445 2020-08-06 00:06:57.153825 990 3 18 774.15 0.00 1 2020-08-05 19:57:38.993966 2020-08-06 00:40:18.527204 991 3 18 685.15 0.00 1 2020-08-06 22:27:13.610799 2020-08-06 23:05:07.165606 992 1 2 771.00 0.00 1 2020-08-07 16:16:54.134274 2020-08-08 00:28:47.643189 993 3 21 625.00 0.00 1 2020-08-07 19:36:55.270199 2020-08-08 00:37:23.6394 994 3 21 923.00 0.00 1 2020-08-08 00:56:41.795765 2020-08-08 02:42:41.135129 996 1 2 821.00 0.00 1 2020-08-08 18:50:28.906698 2020-08-08 23:56:01.526587 995 3 21 923.00 0.00 1 2020-08-08 18:10:09.118107 2020-08-10 21:49:10.197752 997 3 21 1222.00 0.00 1 2020-08-10 22:12:57.718085 2020-08-11 16:31:49.495868 998 3 21 921.00 0.00 1 2020-08-11 16:33:24.049239 2020-08-12 00:30:17.882472 999 3 21 919.00 0.00 1 2020-08-12 18:36:44.264297 2020-08-13 00:19:04.05485 1000 3 21 919.00 0.00 1 2020-08-13 00:35:11.972764 2020-08-13 00:38:25.885942 1001 1 2 1035.00 0.00 1 2020-08-13 17:42:30.988595 2020-08-13 23:56:41.754831 1002 3 21 917.00 0.00 1 2020-08-13 22:19:07.843786 2020-08-14 01:01:51.79099 1003 1 2 1170.00 0.00 1 2020-08-14 16:43:38.08938 2020-08-14 23:39:38.244305 1004 3 21 926.00 0.00 1 2020-08-14 23:54:33.657598 2020-08-15 19:03:07.599827 1005 1 2 1290.00 0.00 1 2020-08-15 16:05:20.873383 2020-08-15 23:50:58.197462 1006 3 21 895.00 0.00 1 2020-08-15 19:03:24.166781 2020-08-16 00:31:53.085585 1007 1 2 1144.00 0.00 1 2020-08-17 16:30:51.240151 2020-08-17 23:53:16.078126 1008 3 21 895.00 0.00 1 2020-08-17 18:46:48.512281 2020-08-18 00:17:59.056936 1009 1 2 1244.00 0.00 1 2020-08-18 17:03:46.749738 2020-08-18 23:53:46.518399 1010 3 18 811.00 0.00 1 2020-08-18 18:51:55.303669 2020-08-19 00:27:50.994571 1011 1 2 1304.00 0.00 1 2020-08-19 00:01:21.847677 2020-08-19 16:03:10.209352 1012 1 2 1303.00 0.00 1 2020-08-19 16:05:59.09706 2020-08-20 00:01:25.61191 1013 3 18 759.00 0.00 1 2020-08-19 18:05:32.89679 2020-08-20 00:50:17.279244 1014 1 2 1303.00 0.00 1 2020-08-20 19:14:07.152346 2020-08-20 23:51:48.159981 1015 3 18 565.00 0.00 1 2020-08-20 23:07:04.88247 2020-08-21 00:35:10.415002 1016 1 2 1133.00 0.00 1 2020-08-21 16:54:31.2766 2020-08-22 00:07:39.900666 1017 3 21 611.00 0.00 1 2020-08-21 18:12:33.127016 2020-08-22 00:32:18.894262 1018 1 2 1252.00 0.00 1 2020-08-22 17:01:09.404635 2020-08-22 23:59:51.688219 1019 3 21 610.00 0.00 1 2020-08-22 18:41:20.460422 2020-08-23 00:41:09.915765 1020 1 2 1152.00 0.00 1 2020-08-24 16:16:57.288185 2020-08-24 23:54:22.606287 1021 3 18 810.00 0.00 1 2020-08-24 18:24:03.816306 2020-08-25 01:11:37.861743 1022 1 2 1437.00 0.00 1 2020-08-25 17:11:36.176456 2020-08-25 23:54:06.33066 1023 3 18 465.00 0.00 1 2020-08-25 21:28:26.932811 2020-08-26 01:25:16.200376 1024 1 2 1387.00 0.00 1 2020-08-26 15:57:22.855311 2020-08-26 23:52:23.360235 1025 3 21 930.00 0.00 1 2020-08-26 18:32:17.303308 2020-08-27 01:28:16.199271 1026 1 2 1287.00 0.00 1 2020-08-27 16:11:42.688989 2020-08-27 23:56:44.922428 1027 3 18 911.00 0.00 1 2020-08-28 00:15:10.64977 2020-08-28 01:27:56.911206 1028 1 2 1087.00 0.00 1 2020-08-28 16:48:03.779451 2020-08-28 23:50:05.734762 1029 3 18 585.00 0.00 1 2020-08-28 18:21:11.041522 2020-08-29 01:09:35.476826 1030 1 2 937.00 0.00 1 2020-08-29 17:18:13.368242 2020-08-29 23:44:00.96568 1031 3 21 791.00 0.00 1 2020-08-29 20:49:19.143282 2020-08-30 01:03:21.116493 1032 1 2 803.00 0.00 1 2020-08-31 17:03:25.202491 2020-08-31 23:59:12.791467 1033 3 18 910.00 0.00 1 2020-08-31 21:14:55.38032 2020-09-01 00:32:30.873446 1035 1 2 1002.00 0.00 1 2020-09-01 22:02:52.301333 2020-09-01 23:51:37.519922 1034 3 18 910.00 0.00 1 2020-09-01 18:35:44.554418 2020-09-02 01:17:24.137941 1036 3 18 536.00 0.00 1 2020-09-02 01:29:41.520667 2020-09-02 01:35:01.412973 1037 1 2 901.00 0.00 1 2020-09-02 16:01:43.601537 2020-09-03 00:58:42.48391 1038 3 21 536.00 0.00 1 2020-09-02 19:10:39.779867 2020-09-03 00:58:42.741914 1039 3 21 522.00 0.00 1 2020-09-03 01:09:21.484122 2020-09-03 01:13:19.454853 1040 1 2 740.00 0.00 1 2020-09-03 16:25:13.847337 2020-09-04 00:46:19.041752 1041 3 21 621.00 0.00 1 2020-09-03 20:01:15.530356 2020-09-04 00:56:56.139253 1042 1 2 1088.00 0.00 1 2020-09-04 16:08:04.268814 2020-09-05 00:04:45.159895 1043 3 21 859.00 0.00 1 2020-09-04 18:17:59.811176 2020-09-05 01:20:13.835814 1044 3 21 1158.00 0.00 1 2020-09-05 20:03:53.949872 2020-09-06 01:00:29.941618 1045 1 2 941.00 0.00 1 2020-09-07 16:39:45.02109 2020-09-08 00:15:43.914609 1046 3 21 1058.00 0.00 1 2020-09-07 18:37:09.765519 2020-09-08 01:09:45.039522 1047 1 25 921.00 0.00 1 2020-09-08 16:32:20.213502 2020-09-08 20:15:17.484266 1048 3 21 1054.00 0.00 1 2020-09-08 18:43:43.843846 2020-09-09 01:11:59.101043 1049 1 25 921.00 0.00 1 2020-09-08 20:22:46.986746 2020-09-09 05:58:05.257484 1050 1 2 908.00 0.00 1 2020-09-09 16:13:14.325076 2020-09-09 23:58:54.689527 1051 3 21 739.00 0.00 1 2020-09-09 16:17:26.199125 2020-09-10 01:08:16.008497 1053 1 2 1164.00 0.00 1 2020-09-10 19:34:09.508033 2020-09-11 00:04:46.287365 1052 3 18 613.00 0.00 1 2020-09-10 19:06:28.164339 2020-09-11 01:26:35.354748 1054 1 9 981.00 0.00 1 2020-09-11 00:41:07.919545 2020-09-11 23:45:35.966947 1055 3 18 560.00 0.00 1 2020-09-11 20:31:45.25405 2020-09-12 01:03:26.507369 1056 1 2 858.00 0.00 1 2020-09-12 18:23:36.093373 2020-09-12 23:57:53.602501 1057 3 18 659.00 0.00 1 2020-09-12 20:33:06.378954 2020-09-13 01:47:37.203522 1058 1 2 802.00 0.00 1 2020-09-14 17:46:40.988307 2020-09-14 23:58:01.003053 1059 3 21 659.00 0.00 1 2020-09-14 18:07:45.18545 2020-09-15 01:13:59.23648 1060 1 2 830.00 0.00 1 2020-09-15 16:44:53.031472 2020-09-16 00:07:54.696488 1061 3 18 1358.00 0.00 1 2020-09-15 18:45:36.194108 2020-09-16 01:17:22.60763 1062 1 9 779.00 0.00 1 2020-09-16 00:52:12.990643 2020-09-16 21:55:04.331494 1063 3 21 1164.00 0.00 1 2020-09-16 21:42:20.05564 2020-09-16 22:19:21.160868 1064 3 21 963.00 0.00 1 2020-09-17 01:39:35.511567 2020-09-17 18:49:01.64115 1065 1 2 978.00 0.00 1 2020-09-17 18:58:01.111055 2020-09-18 00:20:21.942448 1066 3 21 963.00 0.00 1 2020-09-17 19:22:57.215626 2020-09-18 01:02:36.951548 1067 1 9 879.00 0.00 1 2020-09-18 16:35:46.249201 2020-09-19 00:32:07.003867 1068 3 21 1060.00 0.00 1 2020-09-18 18:51:15.659287 2020-09-19 01:08:43.163225 1070 3 21 1058.00 0.00 1 2020-09-19 18:24:47.786348 2020-09-20 01:18:10.102504 1069 1 9 605.00 0.00 1 2020-09-19 16:48:23.431983 2020-09-20 01:28:31.396612 1072 1 9 938.99 0.00 1 2020-09-21 18:39:10.343031 2020-09-22 00:44:57.390515 1071 3 21 1007.00 0.00 1 2020-09-21 18:15:42.258862 2020-09-22 01:02:00.678336 1074 1 2 833.99 0.00 1 2020-09-22 18:27:58.921928 2020-09-23 00:06:15.579216 1073 3 21 1131.00 0.00 1 2020-09-22 17:40:46.907642 2020-09-23 01:07:46.026852 1075 1 25 882.00 0.00 1 2020-09-23 00:49:19.245373 2020-09-23 01:08:56.554759 1077 3 18 987.00 0.00 1 2020-09-23 20:36:06.672223 2020-09-24 00:43:10.718968 1076 1 2 882.00 0.00 1 2020-09-23 19:02:52.177065 2020-09-24 00:53:19.199372 1079 3 18 777.99 0.00 1 2020-09-24 18:22:29.280812 2020-09-25 00:32:01.875738 1078 1 2 958.00 0.00 1 2020-09-24 16:51:22.78578 2020-09-25 00:56:17.53894 1080 1 2 1053.00 0.00 1 2020-09-25 16:35:49.965926 2020-09-26 01:02:25.869251 1081 3 18 1045.99 0.00 1 2020-09-25 18:24:53.723245 2020-09-26 01:02:33.822993 1082 1 9 1052.00 0.00 1 2020-09-26 17:45:10.82731 2020-09-27 00:48:49.665343 1083 3 21 915.99 0.00 1 2020-09-26 20:43:08.465749 2020-09-27 01:01:10.261078 1085 3 21 915.99 0.00 1 2020-09-27 01:07:13.371405 2020-09-27 01:08:25.947076 1084 1 2 825.00 0.00 1 2020-09-27 01:04:09.337782 2020-09-27 01:11:01.015462 1086 1 2 1173.00 0.00 1 2020-09-28 17:30:01.992491 2020-09-29 00:49:44.670896 1087 3 21 914.00 0.00 1 2020-09-28 19:12:30.66239 2020-09-29 01:05:03.399126 1088 1 2 1062.00 0.00 1 2020-09-29 16:23:32.085854 2020-09-30 00:50:06.017171 1089 3 18 829.00 0.00 1 2020-09-29 19:47:37.168098 2020-09-30 00:57:24.696051 1091 1 2 636.00 0.00 1 2020-09-30 19:30:21.606562 2020-10-01 01:00:22.851769 1090 3 18 1026.00 0.00 1 2020-09-30 19:28:05.853584 2020-10-01 01:45:23.03818 1093 3 18 1140.00 0.00 1 2020-10-01 19:06:09.317092 2020-10-02 00:17:19.438482 1092 1 2 775.00 0.00 1 2020-10-01 17:28:28.101821 2020-10-02 00:56:15.172175 1094 1 2 950.00 0.00 1 2020-10-02 16:14:13.040757 2020-10-03 00:58:48.810978 1095 3 18 1207.00 0.00 1 2020-10-02 21:47:31.830725 2020-10-03 01:05:06.444222 1096 1 2 808.00 0.00 1 2020-10-03 17:32:05.045538 2020-10-04 00:53:25.443064 1097 3 21 1175.00 0.00 1 2020-10-03 19:39:14.653909 2020-10-04 00:56:56.495118 1098 3 21 1175.00 0.00 1 2020-10-04 01:04:02.698741 2020-10-04 01:07:45.213363 1100 1 2 716.00 0.00 1 2020-10-05 19:34:45.82641 2020-10-06 00:52:41.326479 1099 3 21 974.00 0.00 1 2020-10-05 18:44:26.298775 2020-10-07 00:34:41.633327 1101 1 2 768.00 0.00 1 2020-10-06 16:39:24.232482 2020-10-07 00:50:29.35143 1103 3 18 1088.00 0.00 1 2020-10-07 23:11:24.683468 2020-10-08 00:49:50.303132 1102 1 2 555.00 0.00 1 2020-10-07 16:16:04.259895 2020-10-08 00:57:02.370331 1104 1 2 770.00 0.00 1 2020-10-08 16:38:48.316305 2020-10-09 00:53:07.778451 1105 3 18 966.00 0.00 1 2020-10-09 00:44:51.120815 2020-10-09 01:00:01.911923 1107 3 21 784.00 0.00 1 2020-10-09 18:39:33.106807 2020-10-10 01:00:30.397323 1106 1 2 635.00 0.00 1 2020-10-09 16:13:02.694084 2020-10-10 01:33:35.110744 1109 1 2 890.00 0.00 1 2020-10-10 20:57:33.647926 2020-10-11 00:40:59.48514 1108 3 21 859.00 0.00 1 2020-10-10 19:43:50.894077 2020-10-11 01:09:44.505591 1110 1 2 608.00 0.00 1 2020-10-12 17:09:56.167804 2020-10-13 00:47:49.296637 1111 3 18 759.00 0.00 1 2020-10-12 23:04:05.814441 2020-10-13 00:49:42.140077 1113 1 2 808.00 0.00 1 2020-10-13 19:36:35.957621 2020-10-14 00:51:22.553343 1112 3 18 878.00 0.00 1 2020-10-13 18:32:33.694864 2020-10-14 01:03:51.539013 1114 1 2 808.00 0.00 1 2020-10-14 16:43:00.436871 2020-10-15 01:03:24.101551 1115 3 18 839.00 0.00 1 2020-10-14 19:21:49.180303 2020-10-15 01:42:37.660643 1116 1 2 733.00 0.00 1 2020-10-15 17:22:44.849823 2020-10-16 00:51:44.118908 1117 3 18 606.00 0.00 1 2020-10-15 18:30:20.302024 2020-10-16 02:14:58.608504 1119 3 18 980.00 0.00 1 2020-10-16 18:47:45.581966 2020-10-17 00:57:17.312784 1118 1 2 870.00 0.00 1 2020-10-16 16:28:35.090282 2020-10-17 01:24:52.067947 1120 1 9 589.00 0.00 1 2020-10-17 16:49:31.306953 2020-10-18 00:53:25.598791 1121 3 21 726.00 0.00 1 2020-10-17 17:22:59.90133 2020-10-18 00:55:08.717953 1122 3 21 872.00 0.00 1 2020-10-18 18:47:54.547976 2020-10-18 22:00:23.811179 1124 3 21 872.00 0.00 1 2020-10-19 22:00:04.329396 2020-10-20 01:04:57.103437 1123 1 2 733.00 0.00 1 2020-10-19 21:00:53.355694 2020-10-20 01:09:28.665716 1126 3 18 890.00 0.00 1 2020-10-20 19:54:03.070423 2020-10-21 00:54:50.252219 1125 1 2 733.00 0.00 1 2020-10-20 17:18:24.871102 2020-10-21 00:55:01.842417 1127 1 2 720.00 0.00 1 2020-10-21 17:01:15.917576 2020-10-22 00:54:01.158295 1128 3 18 810.00 0.00 1 2020-10-21 23:48:55.574238 2020-10-22 00:57:24.951215 1129 1 2 720.00 0.00 1 2020-10-22 16:34:20.325203 2020-10-23 00:56:40.355244 1130 3 18 808.00 0.00 1 2020-10-22 20:52:05.330354 2020-10-23 01:16:31.124298 1132 3 18 905.00 0.00 1 2020-10-23 18:46:45.466888 2020-10-24 01:00:42.520737 1131 1 2 719.00 0.00 1 2020-10-23 16:36:01.363041 2020-10-24 01:01:47.424623 1134 1 9 807.00 0.00 1 2020-10-24 18:06:03.851175 2020-10-25 00:52:12.426813 1133 3 18 752.00 0.00 1 2020-10-24 01:18:09.077512 2020-10-25 01:39:02.348617 1136 1 2 705.00 0.00 1 2020-10-26 20:35:20.770976 2020-10-27 02:00:09.239896 1135 3 21 1017.00 0.00 1 2020-10-26 19:37:04.47941 2020-10-27 02:19:47.01334 1137 1 2 790.00 0.00 1 2020-10-27 17:16:46.097365 2020-10-28 01:54:31.254436 1138 3 18 804.00 0.00 1 2020-10-27 20:14:09.170821 2020-10-28 02:05:25.128082 1140 3 18 804.00 0.00 1 2020-10-29 00:54:55.066896 2020-10-29 01:44:53.00388 1139 1 2 959.00 0.00 1 2020-10-28 18:34:23.080688 2020-10-29 01:57:48.694307 1142 1 2 1524.00 0.00 1 2020-10-29 21:23:27.055909 2020-10-30 02:04:15.790786 1143 1 2 1392.00 0.00 1 2020-10-30 02:09:41.255645 2020-10-30 02:15:01.90865 1141 3 18 1042.00 0.00 1 2020-10-29 20:05:47.65212 2020-10-30 02:18:43.710302 1145 3 18 841.00 0.00 1 2020-10-30 18:54:00.228923 2020-10-31 02:03:58.848371 1144 1 2 1392.00 0.00 1 2020-10-30 17:19:21.208171 2020-10-31 02:05:49.717377 1146 3 21 740.00 0.00 1 2020-10-31 19:22:06.512287 2020-11-01 02:10:12.347927 1147 1 9 1175.00 0.00 1 2020-10-31 23:10:34.570753 2020-11-01 02:22:20.403786 1148 3 21 922.00 0.00 1 2020-11-01 19:39:59.248936 2020-11-01 23:08:40.838286 1150 3 21 1171.00 0.00 1 2020-11-02 19:06:52.4473 2020-11-03 00:10:47.967185 1149 1 25 1180.00 0.00 1 2020-11-01 21:00:09.152538 2020-11-03 01:46:36.614543 1152 3 21 1129.00 0.00 1 2020-11-03 20:24:30.59137 2020-11-04 02:19:35.579304 1151 1 2 1005.00 0.00 1 2020-11-03 18:30:18.205084 2020-11-04 02:33:13.859958 1154 1 2 971.00 0.00 1 2020-11-04 21:32:14.438587 2020-11-05 01:55:56.109972 1153 3 21 923.00 0.00 1 2020-11-04 17:42:49.280391 2020-11-05 02:16:12.051083 1156 3 21 922.00 0.00 1 2020-11-05 19:55:12.961765 2020-11-06 01:55:32.495051 1155 1 2 1146.00 0.00 1 2020-11-05 18:46:14.217498 2020-11-06 02:06:37.542267 1158 1 2 1115.00 0.00 1 2020-11-06 17:27:43.68631 2020-11-07 01:48:08.579143 1159 1 2 1184.00 0.00 1 2020-11-07 02:08:24.706283 2020-11-07 02:10:11.914303 1157 3 18 1052.00 0.00 1 2020-11-06 16:57:20.151288 2020-11-07 02:53:30.226111 1160 1 2 1083.00 0.00 1 2020-11-07 17:49:52.914224 2020-11-08 01:48:17.03984 1161 3 21 1045.00 0.00 1 2020-11-07 20:06:38.844359 2020-11-08 02:20:38.469727 1163 3 21 145.00 0.00 1 2020-11-09 21:21:04.046699 2020-11-10 01:48:14.621746 1162 1 2 982.00 0.00 1 2020-11-09 18:58:21.396292 2020-11-10 02:08:03.687761 1164 1 2 1006.00 0.00 1 2020-11-10 18:11:07.29517 2020-11-11 01:49:06.837075 1165 3 18 1232.00 0.00 1 2020-11-10 23:54:33.381178 2020-11-11 02:04:16.580512 1166 1 2 891.00 0.00 1 2020-11-11 17:44:24.181383 2020-11-12 01:56:47.667293 1167 3 18 1030.00 0.00 1 2020-11-11 19:34:30.342397 2020-11-12 02:01:49.879953 1168 1 2 917.00 0.00 1 2020-11-12 19:41:35.34605 2020-11-13 01:56:11.525416 1169 3 18 1027.00 0.00 1 2020-11-12 19:57:12.649807 2020-11-13 01:56:18.857595 1170 3 18 1779.00 0.00 1 2020-11-13 19:45:34.867066 2020-11-14 02:03:14.602892 1171 1 2 865.00 0.00 1 2020-11-13 19:46:18.234411 2020-11-14 02:10:41.241305 1172 1 2 912.00 0.00 1 2020-11-14 17:43:20.569785 2020-11-15 01:57:40.301445 1173 3 18 1727.00 0.00 1 2020-11-14 19:41:51.473818 2020-11-15 02:20:02.801683 1174 1 2 821.00 0.00 1 2020-11-15 19:28:32.013945 2020-11-15 22:52:51.875022 1176 1 2 920.00 0.00 1 2020-11-16 20:50:19.58093 2020-11-16 23:55:52.88724 1175 3 21 1234.00 0.00 1 2020-11-16 19:05:17.007837 2020-11-17 01:04:53.932294 1177 3 21 1044.00 0.00 1 2020-11-17 17:40:10.737497 2020-11-18 02:02:43.70053 1178 1 2 986.00 0.00 1 2020-11-17 17:58:35.140496 2020-11-18 02:08:50.768012 1179 3 21 673.00 0.00 1 2020-11-18 17:05:50.760675 2020-11-19 02:13:12.360152 1180 1 2 1146.00 0.00 1 2020-11-18 17:37:02.622593 2020-11-19 17:40:17.268525 1181 3 21 669.00 0.00 1 2020-11-19 18:26:28.717902 2020-11-20 02:16:44.616652 1182 1 2 1045.00 0.00 1 2020-11-19 18:29:06.758625 2020-11-20 02:21:03.895087 1184 1 2 1038.00 0.00 1 2020-11-20 17:38:04.82618 2020-11-21 01:45:00.375306 1183 3 21 885.00 0.00 1 2020-11-20 17:37:09.820386 2020-11-21 02:12:24.555647 1186 1 2 858.00 0.00 1 2020-11-21 17:36:17.085874 2020-11-22 01:37:19.449736 1185 3 21 991.00 0.00 1 2020-11-21 17:24:36.338405 2020-11-22 02:00:06.045306 1187 3 21 1256.00 0.00 1 2020-11-22 17:18:03.721817 2020-11-22 22:50:51.609753 1189 1 2 826.00 0.00 1 2020-11-23 18:55:34.992066 2020-11-24 01:54:54.323655 1188 3 21 1506.00 0.00 1 2020-11-23 18:49:26.576374 2020-11-24 02:41:20.208709 1190 1 2 747.00 0.00 1 2020-11-24 17:46:19.030098 2020-11-25 01:50:55.315809 1191 3 21 992.00 0.00 1 2020-11-24 21:21:10.072244 2020-11-25 02:10:19.437605 1192 3 21 1379.00 0.00 1 2020-11-25 17:11:29.470382 2020-11-26 00:57:27.387953 1193 1 9 1095.00 0.00 1 2020-11-25 18:18:00.089324 2020-11-26 01:35:22.751769 1194 1 2 1144.00 0.00 1 2020-11-26 17:21:46.973036 2020-11-27 01:52:49.067389 1195 3 21 928.00 0.00 1 2020-11-26 19:49:45.220912 2020-11-27 02:11:02.43856 1197 1 2 1120.00 0.00 1 2020-11-27 18:59:02.841972 2020-11-28 02:02:52.679792 1196 3 21 981.00 0.00 1 2020-11-27 18:05:53.152525 2020-11-28 02:36:33.98863 1198 3 18 789.00 0.00 1 2020-11-28 02:43:53.921335 2020-11-28 02:45:51.264449 1199 1 2 1169.00 0.00 1 2020-11-28 18:39:56.425474 2020-11-29 01:36:57.233653 1200 3 21 688.00 0.00 1 2020-11-28 23:56:37.38682 2020-11-29 02:27:11.529325 1201 3 21 682.00 0.00 1 2020-11-29 18:11:17.10861 2020-11-29 22:45:08.323879 1202 1 2 1297.00 0.00 1 2020-11-30 18:45:08.077099 2020-12-01 02:04:48.51422 1203 3 21 640.00 0.00 1 2020-11-30 20:58:30.86592 2020-12-01 02:18:41.128755 1205 1 2 1196.00 0.00 1 2020-12-01 17:25:43.154127 2020-12-02 01:56:16.494114 1204 3 21 882.00 0.00 1 2020-12-01 17:16:28.659752 2020-12-02 02:19:18.968673 1206 1 2 1203.00 0.00 1 2020-12-02 18:19:50.218741 2020-12-03 01:51:56.254302 1207 3 18 732.00 0.00 1 2020-12-02 19:01:26.634337 2020-12-03 02:02:51.35116 1208 3 21 780.00 0.00 1 2020-12-03 17:57:01.958873 2020-12-04 02:02:48.878077 1209 1 2 779.00 0.00 1 2020-12-03 19:33:23.552543 2020-12-04 02:11:00.053347 1210 1 2 1364.00 0.00 1 2020-12-04 17:42:05.592842 2020-12-05 01:52:47.677773 1211 3 21 780.00 0.00 1 2020-12-04 18:22:08.643562 2020-12-05 02:03:35.516106 1213 3 21 1155.00 0.00 1 2020-12-05 20:08:58.971067 2020-12-06 02:16:23.635644 1212 1 2 1251.00 0.00 1 2020-12-05 19:04:20.190682 2020-12-06 02:33:55.866071 1214 3 21 1255.00 0.00 1 2020-12-06 19:05:13.42853 2020-12-06 22:59:11.444141 1216 1 2 1373.00 0.00 1 2020-12-07 18:07:14.574221 2020-12-08 02:09:41.774772 1215 3 21 953.00 0.00 1 2020-12-07 17:17:56.112904 2020-12-08 02:11:43.142764 1218 1 2 1372.00 0.00 1 2020-12-08 20:05:31.976355 2020-12-09 02:12:43.129121 1217 3 21 1251.00 0.00 1 2020-12-08 18:55:19.924245 2020-12-09 02:40:11.300729 1220 1 9 1301.00 0.00 1 2020-12-09 18:16:44.02791 2020-12-10 01:43:11.504456 1219 3 21 932.00 0.00 1 2020-12-09 17:40:31.222236 2020-12-10 01:57:44.901633 1222 1 2 1392.00 0.00 1 2020-12-10 18:01:39.149604 2020-12-11 02:26:09.698163 1221 3 21 1431.00 0.00 1 2020-12-10 17:29:32.981299 2020-12-11 02:46:34.446551 1223 1 2 1224.00 0.00 1 2020-12-11 18:06:26.034911 2020-12-12 02:23:11.87056 1224 3 21 2477.00 0.00 1 2020-12-11 18:57:15.426019 2020-12-12 02:56:09.449911 1225 1 2 954.00 0.00 1 2020-12-12 18:52:00.046078 2020-12-13 01:38:42.874141 1226 3 18 1139.00 0.00 1 2020-12-13 01:03:32.030147 2020-12-13 03:01:50.993755 1228 3 21 689.00 0.00 1 2020-12-13 20:13:05.794986 2020-12-13 22:50:46.602234 1227 1 9 1004.00 0.00 1 2020-12-13 01:38:46.726288 2020-12-13 22:52:51.420531 1229 1 9 542.00 0.00 1 2020-12-14 17:46:23.58623 2020-12-15 02:30:59.315908 1230 3 21 687.00 0.00 1 2020-12-14 19:17:38.964376 2020-12-15 02:53:12.885469 1232 3 18 995.00 0.00 1 2020-12-15 18:12:41.754536 2020-12-16 03:52:10.071184 1231 1 2 1235.00 0.00 1 2020-12-15 17:24:45.358947 2020-12-16 02:29:33.920075 1234 1 2 938.00 0.00 1 2020-12-16 18:11:37.473064 2020-12-17 02:23:43.136146 1233 3 21 1026.00 0.00 1 2020-12-16 18:10:35.614565 2020-12-17 02:59:25.417862 1235 3 18 734.00 0.00 1 2020-12-17 03:07:33.087246 2020-12-17 03:10:35.986712 1236 1 2 894.00 0.00 1 2020-12-17 17:54:29.540013 2020-12-18 02:17:53.588573 1237 3 21 733.00 0.00 1 2020-12-17 18:03:42.141103 2020-12-18 06:53:04.212455 1238 1 2 1685.00 0.00 1 2020-12-18 17:09:52.550215 2020-12-19 01:58:26.413383 1239 3 18 796.00 0.00 1 2020-12-19 06:12:47.016658 2020-12-19 06:30:34.279248 1240 1 2 1357.00 0.00 1 2020-12-19 18:17:40.510076 2020-12-20 01:53:17.690284 1241 3 18 803.00 0.00 1 2020-12-20 06:08:19.054342 2020-12-20 06:27:52.137692 1242 1 2 860.00 0.00 1 2020-12-20 18:28:56.484295 2020-12-20 22:53:53.862164 1244 1 9 337.00 0.00 1 2020-12-21 18:17:04.94724 2020-12-22 02:46:31.641934 1243 3 21 1249.00 0.00 1 2020-12-21 17:50:56.296729 2020-12-22 03:07:13.364469 1246 1 9 581.99 0.00 1 2020-12-22 20:12:15.729854 2020-12-23 02:57:42.046304 1245 3 18 711.00 0.00 1 2020-12-22 18:00:14.760066 2020-12-23 03:31:40.720265 1248 1 9 784.00 0.00 1 2020-12-23 18:52:28.003153 2020-12-24 02:50:23.081349 1247 3 18 915.00 0.00 1 2020-12-23 03:32:18.206405 2020-12-24 03:19:19.419583 1249 1 9 637.00 0.00 1 2020-12-24 02:50:52.88309 2020-12-25 01:18:09.262658 1250 3 21 956.00 0.00 1 2020-12-24 18:00:39.390675 2020-12-25 02:59:09.128696 1252 1 9 565.00 0.00 1 2020-12-26 17:28:11.233117 2020-12-27 01:47:17.083402 1251 3 21 893.00 0.00 1 2020-12-26 16:57:22.04409 2020-12-27 02:56:02.964506 1253 1 2 864.00 0.00 1 2020-12-27 18:26:30.783065 2020-12-27 21:49:49.214185 1254 1 2 864.00 0.00 1 2020-12-28 20:31:32.142711 2020-12-29 01:49:22.894408 1255 3 21 260.00 0.00 1 2020-12-28 23:44:24.51867 2020-12-29 02:55:48.004616 1256 1 9 680.00 0.00 1 2020-12-29 18:16:34.061115 2020-12-30 02:11:56.36645 1257 3 21 248.00 0.00 1 2020-12-29 23:47:16.200933 2020-12-30 02:57:43.204045 1259 1 9 770.00 0.00 1 2020-12-30 17:50:35.848784 2020-12-31 02:37:09.227541 1258 3 18 248.00 0.00 1 2020-12-30 17:43:49.622662 2020-12-31 02:49:36.169869 1261 3 18 954.00 0.00 1 2020-12-31 03:10:19.351898 2020-12-31 03:28:59.749909 1260 1 9 609.00 0.00 1 2020-12-31 02:37:13.136689 2020-12-31 23:27:32.988378 1263 1 9 693.00 0.00 1 2021-01-01 00:01:05.151136 2021-01-01 01:17:54.689478 1262 3 21 954.00 0.00 1 2020-12-31 19:05:39.007748 2021-01-01 02:00:50.530153 1264 3 21 973.00 0.00 1 2021-01-02 23:22:47.971295 2021-01-03 01:55:46.318227 1265 3 21 947.00 0.00 1 2021-01-03 19:47:43.56952 2021-01-03 22:51:50.612415 1266 1 9 693.00 0.00 1 2021-01-04 17:00:45.904038 2021-01-05 01:54:52.207973 1267 3 21 947.00 0.00 1 2021-01-04 23:43:51.681564 2021-01-05 01:58:57.163506 1268 1 9 1282.00 0.00 1 2021-01-05 17:04:13.350944 2021-01-06 01:48:41.798737 1269 3 18 1046.00 0.00 1 2021-01-05 23:54:01.555605 2021-01-06 02:00:06.189348 1270 1 9 722.00 0.00 1 2021-01-06 23:48:29.99772 2021-01-07 01:48:44.515482 1271 3 21 1184.00 0.00 1 2021-01-07 00:59:35.767933 2021-01-07 02:03:07.100962 1273 3 18 1184.00 0.00 1 2021-01-07 18:04:08.660709 2021-01-08 01:50:05.193064 1272 1 9 590.00 0.00 1 2021-01-07 18:01:35.341148 2021-01-08 02:11:04.010696 1275 1 2 854.00 0.00 1 2021-01-08 18:20:48.220475 2021-01-09 01:53:55.005766 1274 3 21 1788.00 0.00 1 2021-01-08 18:18:45.793224 2021-01-09 02:38:26.257986 1276 1 2 965.00 0.00 1 2021-01-09 21:19:59.342069 2021-01-10 01:46:12.642115 1277 3 21 1180.00 0.00 1 2021-01-10 01:50:48.003558 2021-01-10 01:52:31.058665 1278 3 21 0.00 0.00 1 2021-01-10 19:53:00.2905 2021-01-10 22:55:29.854772 1279 1 2 781.00 0.00 1 2021-01-11 20:22:50.125338 2021-01-12 01:54:50.744586 1280 3 21 781.00 0.00 1 2021-01-11 22:53:26.381242 2021-01-12 02:06:32.608949 1281 1 2 858.00 0.00 1 2021-01-12 17:19:48.654781 2021-01-13 01:40:01.813435 1282 3 21 882.00 0.00 1 2021-01-12 21:05:20.969183 2021-01-13 01:57:39.188834 1284 1 2 626.00 0.00 1 2021-01-13 21:30:26.571196 2021-01-14 01:41:23.070494 1283 3 18 925.40 0.00 1 2021-01-13 19:25:49.863022 2021-01-14 02:08:16.461955 1285 1 2 626.00 0.00 1 2021-01-14 17:18:28.933914 2021-01-15 01:51:54.145633 1286 3 21 984.40 0.00 1 2021-01-14 22:52:01.413332 2021-01-15 01:57:57.594412 1287 3 21 1370.40 0.00 1 2021-01-15 17:52:12.626001 2021-01-16 01:53:59.437433 1288 1 2 525.00 0.00 1 2021-01-15 18:46:50.36894 2021-01-16 01:54:56.30074 1290 1 2 449.00 0.00 1 2021-01-16 18:31:29.283089 2021-01-17 01:43:52.117591 1289 3 18 1299.80 0.00 1 2021-01-16 02:11:00.572524 2021-01-17 02:01:39.917041 1291 3 21 249.00 0.00 1 2021-01-17 22:54:42.432107 2021-01-17 22:55:15.16319 1292 1 2 635.00 0.00 1 2021-01-18 19:48:36.832677 2021-01-19 01:46:07.231419 1293 3 18 249.00 0.00 1 2021-01-19 00:04:06.906175 2021-01-19 02:08:24.016641 1294 3 18 1249.00 0.00 1 2021-01-19 02:56:27.646952 2021-01-19 03:03:38.015136 1296 1 2 615.00 0.00 1 2021-01-19 21:21:18.042455 2021-01-20 01:35:31.283844 1295 3 18 1249.00 0.00 1 2021-01-19 19:44:59.476629 2021-01-20 02:23:34.875275 1298 3 21 1179.00 0.00 1 2021-01-20 23:03:05.734207 2021-01-21 02:10:05.733053 1297 1 2 420.00 0.00 1 2021-01-20 22:36:20.869148 2021-01-21 02:25:40.893885 1300 1 2 569.00 0.00 1 2021-01-21 18:31:25.322771 2021-01-22 02:03:04.171068 1299 3 21 878.00 0.00 1 2021-01-21 18:23:11.097543 2021-01-22 02:37:49.37319 1301 1 2 728.00 0.00 1 2021-01-22 18:14:43.228153 2021-01-23 01:55:26.936371 1302 3 21 1057.40 0.00 1 2021-01-22 18:23:55.680857 2021-01-23 02:40:09.53553 1303 1 2 726.00 0.00 1 2021-01-23 18:13:56.609498 2021-01-24 01:52:51.309059 1304 3 21 834.80 0.00 1 2021-01-23 19:36:15.425545 2021-01-24 02:02:21.700142 1305 3 21 783.00 0.00 1 2021-01-24 20:19:27.30159 2021-01-24 22:57:16.252837 1306 1 2 993.00 0.00 1 2021-01-25 18:04:55.795477 2021-01-26 01:51:55.501826 1307 3 21 882.00 0.00 1 2021-01-25 21:53:43.264838 2021-01-26 01:53:10.83433 1308 1 2 1020.00 0.00 1 2021-01-26 17:52:44.204356 2021-01-27 01:46:50.472983 1309 3 21 880.00 0.00 1 2021-01-27 01:52:33.888756 2021-01-27 01:53:03.867189 1310 1 2 918.00 0.00 1 2021-01-27 17:15:23.007286 2021-01-28 01:48:30.309155 1311 3 21 880.00 0.00 1 2021-01-27 18:00:25.042539 2021-01-28 02:00:16.648707 1312 1 2 918.00 0.00 1 2021-01-29 01:00:41.608999 2021-01-29 01:45:08.287758 1313 3 21 978.00 0.00 1 2021-01-29 01:30:55.932798 2021-01-29 01:51:03.451355 1314 1 2 818.00 0.00 1 2021-01-29 18:36:59.720532 2021-01-30 01:48:11.933173 1315 3 21 527.00 0.00 1 2021-01-29 23:22:10.419712 2021-01-30 02:00:47.945987 1317 1 2 892.00 0.00 1 2021-01-30 22:12:26.040643 2021-01-31 01:45:42.014979 1316 3 21 1056.00 0.00 1 2021-01-30 21:15:52.660423 2021-01-31 01:52:33.454869 1318 3 21 454.00 0.00 1 2021-02-01 22:51:13.95648 2021-02-01 22:51:45.234077 1319 3 21 454.00 0.00 1 2021-02-02 17:14:44.896007 2021-02-03 01:31:10.585656 1320 1 2 840.00 0.00 1 2021-02-02 17:31:21.152621 2021-02-03 01:46:57.621403 1321 1 2 609.00 0.00 1 2021-02-03 19:13:51.225226 2021-02-04 01:52:19.163503 1322 3 21 892.40 0.00 1 2021-02-03 20:13:44.05396 2021-02-04 01:55:18.526381 1323 1 2 681.00 0.00 1 2021-02-04 18:02:08.502773 2021-02-05 01:53:16.009117 1324 3 21 511.00 0.00 1 2021-02-04 19:55:52.226288 2021-02-05 02:14:21.460574 1326 3 21 660.00 0.00 1 2021-02-06 20:47:53.863466 2021-02-07 01:44:43.644233 1325 1 2 808.00 0.00 1 2021-02-06 18:12:17.854055 2021-02-07 02:01:03.933915 1328 3 21 0.00 0.00 1 2021-02-08 21:43:48.589704 2021-02-08 23:52:06.317466 1327 1 2 886.00 0.00 1 2021-02-08 18:20:32.271209 2021-02-09 01:43:33.419241 1329 1 2 886.00 0.00 1 2021-02-09 18:03:32.136989 2021-02-10 02:04:58.913859 1330 1 2 1125.00 0.00 1 2021-02-10 18:01:01.334802 2021-02-11 01:23:42.785885 1332 1 2 1125.00 0.00 1 2021-02-11 21:21:40.481161 2021-02-12 02:04:41.751664 1333 1 2 1033.00 0.00 1 2021-02-12 20:11:26.799979 2021-02-13 01:56:02.710168 1334 1 2 851.00 0.00 1 2021-02-13 22:32:25.641317 2021-02-14 01:57:17.260586 1331 3 21 0.00 0.00 1 2021-02-10 23:24:00.365866 2021-02-14 02:12:15.353326 1336 1 2 614.00 0.00 1 2021-02-17 20:32:52.191246 2021-02-18 02:17:26.649562 1335 3 21 0.00 0.00 1 2021-02-15 17:29:43.308513 2021-02-19 01:52:01.55193 1338 3 21 0.00 0.00 1 2021-02-21 01:53:13.509988 2021-02-21 01:55:45.067701 1339 3 21 0.00 0.00 0 2021-02-23 19:37:25.780121 2021-02-23 19:37:25.780121 1337 1 2 614.00 0.00 1 2021-02-18 22:24:37.139623 2021-02-23 21:26:28.125809 1340 1 2 0.00 0.00 1 2021-02-23 21:26:41.803711 2021-02-24 01:27:28.443044 1341 1 2 0.00 0.00 1 2021-02-28 01:46:20.086264 2021-02-28 02:22:54.493657 1342 1 2 0.00 0.00 1 2021-03-02 00:00:58.459727 2021-03-02 01:30:23.258233 1343 1 2 0.00 0.00 1 2021-03-03 23:21:52.188814 2021-03-04 01:35:56.56398 1344 1 2 0.00 0.00 1 2021-03-05 01:27:22.99049 2021-03-05 01:59:49.558709 1345 1 9 0.00 0.00 0 2021-03-11 21:52:06.139437 2021-03-11 21:52:06.139437 \. -- -- Name: open_cash_registers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.open_cash_registers_id_seq', 1345, true); -- -- Data for Name: payment_methods; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.payment_methods (id, method, status, created_at, updated_at, reference, "isCash", payment_method_key) FROM stdin; 1 Tarjeta de debito 1 2019-01-28 18:10:20.861136 2019-01-28 18:10:20.861136 1 0 28 2 Efectivo 1 2019-01-28 18:10:20.866647 2019-01-28 18:10:20.866647 0 1 01 3 Transferencia bancaria 1 2019-01-28 18:10:20.870702 2019-01-28 18:10:20.870702 1 0 03 4 Tarjeta de credito 1 2019-01-28 18:10:20.873972 2019-01-28 18:10:20.873972 1 0 04 5 Cheque 1 2019-01-28 18:10:20.877023 2019-01-28 18:10:20.877023 1 0 02 \. -- -- Name: payment_methods_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.payment_methods_id_seq', 5, true); -- -- Data for Name: pointsales; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.pointsales (id, name, address, notes, status, created_at, updated_at, prefix, img_pointsale_file_name, img_pointsale_content_type, img_pointsale_file_size, img_pointsale_updated_at, ticket_footer, img_pointsale, haggle_percent, federal_taxpayer_registration, business_name, tax_regime, postal_code) FROM stdin; 2 S BY SUO MORELOS 297 LOCAL 5 CENTRO MORELOS #297 LOC. 5\r\nCENTRO C.P 80000\r\nCULIACAN, SIN\r\nTEL.6677138363\r\nCEL. 6674218811\r\nINSTAGRAM: S.BYSUO\r\nINSTAGRAM: S BY SUO 1 2019-02-02 01:18:08.966764 2019-02-13 04:13:35.563628 PV2 \N \N \N \N * CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\r\n* NO CAMBIOS NI DEVOLUCIONES EN PROMOCIONES Y APARTADOS\r\n* NO SE REGRESA EFECTIVO POR NINGÚN MOTIVO\r\n*NO SE ACEPTA MERCANCÍA EN MAL ESTADO Y SIN ETIQUETA Sin_título.png 100.00 UIOS851003XXX SUO BOUTIQUE 601 80000 3 SUO Comercial Doctor Mora #1725 Loc. 1F, La Campañia Doctor Mora #1725 \r\nCENTRO C.P 80060\r\nCULIACAN, SIN\r\nTEL.6677138363\r\nCEL. 6674218811\r\nINSTAGRAM: SUO.BOUTIQUE\r\nINSTAGRAM: SUO.BOUTIQUE 1 2019-08-03 19:13:01.229465 2020-09-03 18:49:21.069717 PV3 \N \N \N \N * CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\r\n* NO CAMBIOS NI DEVOLUCIONES EN PROMOCIONES Y APARTADOS\r\n* NO SE REGRESA EFECTIVO POR NINGÚN MOTIVO\r\n*NO SE ACEPTA MERCANCÍA EN MAL ESTADO Y SIN ETIQUETA b02a7ab3-1fdb-437a-a687-a80f1adb3e23.JPG 100.00 UIOS8510033N1 SUO BOUTIQUE 601 80060 1 SUO MORELOS #297 LOC. 4 CENTRO MORELOS #297 LOC. 4\r\nCENTRO C.P 80000\r\nCULIACAN, SIN\r\nTEL.6677138363\r\nCEL. 6674218811\r\nINSTAGRAM: SUO.BOUTIQUE\r\nINSTAGRAM: SUO BOUTIQUE\r\n 1 2019-02-01 04:44:58.201443 2020-09-03 18:51:49.945268 PV1 \N \N \N \N * CAMBIOS Y DEVOLUCIONES SOLO 7 DÍAS\r\n* NO CAMBIOS NI DEVOLUCIONES EN PROMOCIONES Y APARTADOS\r\n* NO SE REGRESA EFECTIVO POR NINGÚN MOTIVO\r\n*NO SE ACEPTA MERCANCÍA EN MAL ESTADO Y SIN ETIQUETA b02a7ab3-1fdb-437a-a687-a80f1adb3e23.JPG 100.00 UIOS8510033N1 Punto de venta 1 601 85000 \. -- -- Name: pointsales_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.pointsales_id_seq', 3, true); -- -- Data for Name: pos_configs; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.pos_configs (id, cancel_partial_payment, refund_sale, days_cancel_sale, days_cancel_purchase, tax_percent, time_zone, gain_margin, created_at, updated_at, ticket_description, days_cancel_reserved, reserve_sale_percent, commission_percent, ticket_footer, ticket_img_file_name, ticket_img_content_type, ticket_img_file_size, ticket_img_updated_at, haggle_in_sale_percent, ticket_img, enable_haggle, add_iva_to_pre_sales) FROM stdin; 1 20 15 20 100 16.0 Chihuahua 100.0 2019-01-28 18:10:20.808419 2020-11-27 01:44:08.634091 RFC. UIOS851003N7A\r\nMORELOS #297 LOC.4 \r\nCENTRO CP.8000 \r\nDR. MORA #1725 LOC. 1F\r\nLA CAMPIÑA CP.80060\r\nCULIACAN, SIN \r\nTEL. 6677138363\r\nCEL. 6674218811\r\nINSTAGRAM: SUO.BOUTIQUE\r\nFACEBOOK: SUO BOUTIQUE\r\n 35 10.00 1 * SOLO 7 DÍAS PARA CAMBIOS Y DEVOLUCIONES\r\n* NO APLICAN DEVOLUCIONES EN PROMOCIONES Y APARTADOS \r\n* NO SE ACEPTA MERCANCÍA DAÑADA, SIN ETIQUETA O MAL ESTADO \r\n* LOS APARTADOS TIENEN VIGENCIA 30 DÍAS \N \N \N \N 20 thumbnail_D5A04C3E-BCE1-49AA-BEAF-CFAC394D6790.png t f \. -- -- Name: pos_configs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.pos_configs_id_seq', 1, true); -- -- Data for Name: pre_purchases; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.pre_purchases (id, supplier_id, user_id, pointsale_id, product_id, created_at, updated_at, amount, tax, total, quantity, warehouse_id, price_base, exchange) FROM stdin; 1488 1 4 3 1571 2021-02-16 00:55:27.124407 2021-02-16 00:55:35.181998 4197.0 0 4197.0 6 \N 699.50 \N 1489 1 4 3 133 2021-02-16 00:55:41.864686 2021-02-16 00:55:45.162389 573.3 0 573.3 3 \N 191.10 \N \. -- -- Name: pre_purchases_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.pre_purchases_id_seq', 1489, true); -- -- Data for Name: pre_sales; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.pre_sales (id, customer_id, user_id, open_cash_register_id, product_id, created_at, updated_at, sale_type, amount, tax, discount, total, quantity, special_price_id, unit_price, haggle, promotion_id, unit_price_w_discount, haggle_percent) FROM stdin; \. -- -- Name: pre_sales_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.pre_sales_id_seq', 6087, true); -- -- Data for Name: pre_transfers; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.pre_transfers (id, origin_id, destiny_id, user_id, product_id, quantity, created_at, updated_at, origin_is_pointsale, destiny_is_pointsale) FROM stdin; \. -- -- Name: pre_transfers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.pre_transfers_id_seq', 2215, true); -- -- Data for Name: product_wastes; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.product_wastes (id, product_id, quantity, reason, status, created_at, updated_at, user_id, pointsale_id, warehouse_id, products_return_in_id) FROM stdin; \. -- -- Name: product_wastes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.product_wastes_id_seq', 1, false); -- -- Data for Name: products; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.products (id, sku, name, description, price_base, price_sale, img_product_file_name, img_product_content_type, img_product_file_size, img_product_updated_at, presentation, inventory, content, status, created_at, updated_at, unit_id, include_purchase_tax, include_sale_tax, barcode, parent_id, attributes_json, is_parent, is_in_dollars, price_base_dollars, img_product, category_id, product_service_key) FROM stdin; 642 CHA-971 S-0019 BLAZER NEGRO 439.50 879.00 \N \N \N \N f t \N 1 2019-08-18 23:25:16.536269 2020-01-19 00:34:11.363193 3 0 0 0000642 \N \N f f \N \N 24 01010101 447 BOL-447 TREC601 BOLSO 699.50 1399.00 \N \N \N \N f t \N 1 2019-02-07 01:37:23.75744 2019-02-07 01:37:23.81141 3 0 0 0000447 \N \N f f \N \N 6 01010101 715 BLU-715 BLS-0072 CARDIGAN NEGRO CON LENTEJUELAS VALENTINE ST. 360.00 969.00 \N \N \N \N f t \N 1 2019-09-21 20:43:46.102931 2019-09-21 20:43:46.140454 3 0 0 0000715 \N \N f f \N IMG_2503.JPG 7 01010101 440 BOL-440 FREJ585 BACK PACK CLOE 799.50 1599.00 \N \N \N \N f t \N 1 2019-02-06 01:11:46.012623 2019-02-06 01:11:46.057801 3 0 1 0000440 \N \N f f \N \N 6 01010101 441 BOL-441 TYRA578 BOLSO CLOE 849.50 1699.00 \N \N \N \N f t \N 1 2019-02-06 01:13:20.456428 2019-02-06 01:13:20.517262 3 0 1 0000441 \N \N f f \N \N 6 01010101 4 SHO-4 SHO-0003 SHORT DAZZ CON CINTO 160.20 529.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862582 2019-02-04 09:10:19.987047 3 0 1 0000004 \N \N f f \N \N 2 01010101 442 BOL-442 POIT440 BOLSO CLOE 949.50 1899.00 \N \N \N \N f t \N 1 2019-02-06 01:15:35.369559 2019-02-06 01:15:35.419355 3 0 1 0000442 \N \N f f \N \N 6 01010101 443 BOL-443 COVI759 BOLSO CLOE 749.50 1499.00 \N \N \N \N f t \N 1 2019-02-06 01:33:08.711984 2019-02-06 01:33:08.772926 3 0 1 0000443 \N \N f f \N \N 6 01010101 444 BOL-444 TUVA589 BACK PACK 849.50 1699.00 \N \N \N \N f t \N 1 2019-02-06 01:34:04.420242 2019-02-06 01:34:04.478775 3 0 1 0000444 \N \N f f \N \N 6 01010101 448 BLU-448 Prueba Prueba 50.00 100.00 \N \N \N \N f t \N 0 2019-02-07 02:32:06.178335 2019-02-07 02:37:44.999069 3 0 0 7509170712728 \N \N f f \N \N 7 01010101 6 SHO-6 SHO-0007 SHORT DE MEZCLILLA CON FLORES 270.00 699.00 \N \N \N \N f t \N 0 2019-02-02 01:39:44.862584 2019-02-07 02:43:30.655349 3 0 1 0000006 \N \N f f \N \N 2 01010101 496 PAN-496 PNT-0006 PANTALON VERDE APEACH 334.50 669.00 \N \N \N \N f t \N 1 2019-03-15 21:02:35.563588 2019-03-15 21:02:35.608891 3 0 0 0000496 \N \N f f \N \N 8 01010101 366 BOL-366 ADEY163 MOCHILA CLOE AZUL CIELO 899.50 1799.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 16:48:33.704234 3 0 1 0000366 \N \N f f \N ADEY163.jpg 6 01010101 341 COS-341 AKAL722 COSQUETIQUERA CLOE NEGRA Y ROSA 99.50 199.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 17:46:10.587131 3 0 1 0000341 \N \N f f \N AKAL722.jpg 14 01010101 651 JUM-651 V-0077 JUMPER NEGRO LENTEJUELA DORADA 599.50 1249.00 \N \N \N \N f t \N 1 2019-08-18 23:47:20.404252 2020-01-19 01:28:13.736598 3 0 0 0000651 \N \N f f \N \N 1 01010101 643 BLU-643 B-0097 EVENT NEGRA DE TIRANTE CON MANGA 249.50 499.00 \N \N \N \N f t \N 1 2019-08-18 23:31:40.550008 2019-08-18 23:31:40.607277 3 0 0 0000643 \N \N f f \N \N 7 01010101 645 BLU-645 B-0099 APEACH BLUSA NEGRA ENCAJE BRILLOS 284.50 569.00 \N \N \N \N f t \N 1 2019-08-18 23:36:05.092919 2019-08-18 23:36:05.184663 3 0 0 0000645 \N \N f f \N \N 7 01010101 646 VES-646 V-0065 LATISTE GRIS BRILLOS 774.50 1549.00 \N \N \N \N f t \N 1 2019-08-18 23:39:05.403849 2019-08-18 23:39:05.48175 3 0 0 0000646 \N \N f f \N \N 12 01010101 647 VES-647 VES-0038 LETTE NEGRO Y TINTO LENTEJUELA DORADA 484.50 969.00 \N \N \N \N f t \N 1 2019-08-18 23:41:02.06911 2019-08-18 23:41:02.125069 3 0 0 0000647 \N \N f f \N \N 12 01010101 648 VES-648 VE-00051 NEGRO CON PLATEADO SHE + SKY 414.50 829.00 \N \N \N \N f t \N 1 2019-08-18 23:43:39.257114 2019-08-18 23:43:39.295276 3 0 0 0000648 \N \N f f \N \N 12 01010101 649 BLU-649 B-0094 BLUSA LENJETULA AZUL REY 449.50 899.00 \N \N \N \N f t \N 1 2019-08-18 23:44:45.794312 2019-08-18 23:44:45.838283 3 0 0 0000649 \N \N f f \N \N 7 01010101 650 JUM-650 V-0066 JUMPER BALBOA CON LENTEJEULA ROSA 599.50 1199.00 \N \N \N \N f t \N 1 2019-08-18 23:46:36.711805 2019-08-18 23:46:36.762804 3 0 0 0000650 \N \N f f \N \N 1 01010101 793 PAN-793 PNT-0019 PANTALON DUCHÉSS NEGRO PIEL ST-IP0147 260.00 749.00 \N \N \N \N f t \N 1 2019-10-12 20:30:02.046354 2020-01-22 20:14:26.159832 3 0 0 0000793 \N \N f f \N IMG_4274.jpg 8 01010101 653 BOL-653 CAN-0002 CANGURERA LISA GRANDE\r\nNEGRA Y ROSA 858.00 1799.00 \N \N \N \N f t \N 1 2019-08-19 00:05:27.410305 2019-08-19 00:05:27.472126 3 0 0 0000653 \N \N f f \N \N 6 01010101 654 BOL-654 CAN-0003 FLORES Y LOGO GUESS 549.00 1399.00 \N \N \N \N f t \N 1 2019-08-19 00:06:58.150113 2019-08-19 00:06:58.213502 3 0 0 0000654 \N \N f f \N \N 6 01010101 655 BOL-655 BRAI677 MOCHILA NEGRA 749.50 1499.00 \N \N \N \N f t \N 1 2019-08-19 00:37:35.238353 2019-08-19 00:37:35.278687 3 0 0 0000655 \N \N f f \N BRAI677.jpg 6 01010101 656 BOL-656 GIRL763 NEGRA CON MOÑO AMARILLO 949.50 1899.00 \N \N \N \N f t \N 1 2019-08-19 00:42:31.275581 2019-08-19 00:42:31.318951 3 0 0 0000656 \N \N f f \N descarga__1_.jpg 6 01010101 657 BOL-657 OKAN113 BOLSO PEQUEÑO CON DETALLES TURQUESA 899.50 1799.00 \N \N \N \N f t \N 1 2019-08-19 00:45:32.144493 2019-08-19 00:45:32.186664 3 0 0 0000657 \N \N f f \N OKAN.jpg 6 01010101 658 BOL-658 TERP744 MOCHILA NEGRA CON MASCADA 999.50 1999.00 \N \N \N \N f t \N 1 2019-08-19 00:47:31.956198 2019-08-19 00:47:32.00339 3 0 0 0000658 \N \N f f \N TERP.jpg 6 01010101 659 BOL-659 ERIO488 MOCHILA DORADA 849.50 1699.00 \N \N \N \N f t \N 1 2019-08-19 00:51:05.080841 2019-08-19 00:51:05.140976 3 0 0 0000659 \N \N f f \N ERIO.jpg 6 01010101 660 BOL-660 ROTH652 BOLSO NEGRO 799.50 1599.00 \N \N \N \N f t \N 1 2019-08-19 00:52:54.510278 2019-08-19 00:52:54.564628 3 0 0 0000660 \N \N f f \N ROTH.jpg 6 01010101 445 BOL-445 AMIK227 BACK PACK CLOE 999.50 1999.00 \N \N \N \N f t \N 1 2019-02-07 01:30:38.527523 2019-09-04 01:17:38.272957 3 0 0 0000445 \N \N f f \N AMIK227.jpg 6 01010101 439 BOL-436 SIGR575 BOLSO CLOE NEGRO 899.50 1799.00 \N \N \N \N f t \N 1 2019-02-06 00:56:47.583251 2019-09-04 19:36:31.330254 3 0 1 0000439 \N \N f f \N sirg575.jpg 6 01010101 652 BOL-652 CAN-0003 CANGURERA GUESS \r\nNEGRO RAYADO Y ROSA 660.00 1599.00 \N \N \N \N f t \N 1 2019-08-19 00:03:42.880181 2019-09-11 18:40:14.043673 3 0 0 0000652 \N \N f f \N \N 6 01010101 713 BLU-713 BLS-0070 CARDIGAN BLANCO VALENTINE ST.JK10291 300.00 799.00 \N \N \N \N f t \N 1 2019-09-21 20:40:11.158337 2019-09-21 20:40:11.201103 3 0 0 0000713 \N \N f f \N IMG_2751.jpg 7 01010101 714 BLU-714 BLS-0071 CARDIGAN NEGRO RALLADO VALENTINE ST.JK10134 349.00 839.00 \N \N \N \N f t \N 1 2019-09-21 20:42:44.221587 2019-09-21 20:42:44.273353 3 0 0 0000714 \N \N f f \N IMG_2497.JPG 7 01010101 788 FAL-788 FLD-0012 DUCH'ESS FALDA NEGRA DE PIEL CON SIERRES 224.00 589.00 \N \N \N \N f t \N 1 2019-10-12 20:14:17.064091 2019-10-12 20:14:17.104999 3 0 0 0000788 \N \N f f \N \N 11 01010101 789 FAL-789 FLD-0015 2W FALDA PIEL SINTETICA CON CHINO AMARILLA Y NEGRA ST-IS0107 224.00 549.00 \N \N \N \N f t \N 1 2019-10-12 20:14:57.716209 2019-10-12 20:14:57.749689 3 0 0 0000789 \N \N f f \N \N 11 01010101 790 FAL-790 FLD-0016 NYLON 3/4 DE PIEL DORADA Y NEGRA ST-49012 330.00 829.00 \N \N \N \N f t \N 1 2019-10-12 20:16:24.654831 2019-10-12 20:16:24.68785 3 0 0 0000790 \N \N f f \N \N 11 01010101 791 FAL-791 FLD-0017 NYLOC CAFE SERPIENTE ST-S976 170.00 569.00 \N \N \N \N f t \N 1 2019-10-12 20:21:26.054342 2019-10-12 20:21:26.08811 3 0 0 0000791 \N \N f f \N \N 11 01010101 644 BLU-644 BLU-0064 DAYG NEGRA CON DORADO 210.00 420.00 \N \N \N \N f t \N 1 2019-08-18 23:33:45.245914 2020-01-31 18:22:03.422918 3 0 0 0000644 \N \N f f \N \N 7 01010101 792 PAN-792 PNT-0018 PANTALON PLATA FASHION ZONE ST-FZP-0008 295.00 769.00 \N \N \N \N f t \N 1 2019-10-12 20:29:15.26726 2020-01-22 20:17:22.82428 3 0 0 0000792 \N \N f f \N IMG_4275.jpg 8 01010101 863 VES-863 V-0062 VESTIDO BUGAMBILIA DAYLIGTH UNA MANGA CON OLAN 499.50 999.00 \N \N \N \N f t \N 1 2019-10-25 17:23:55.129186 2019-10-25 17:23:55.165072 3 0 0 0000863 \N \N f f \N \N 12 01010101 912 BOL-912 1BLCI19306 Material semi texturizado con acabado glossy y técnica de abullonado con construcción semi suave. Logo icónico en acabado brillante con técnica de esmaltado a tono. Asas traseras ajustables.\r\n\r\n 799.50 1599.00 \N \N \N \N f t \N 1 2019-11-10 18:33:19.786047 2019-11-10 18:33:19.786047 3 0 0 7509170766615 \N \N f f \N BBAL306_NEGR_1_300x435.jpg 6 01010101 446 BOL-446 TUVA589 BACK PACK CLOE 849.50 1699.00 \N \N \N \N f t \N 1 2019-02-07 01:36:18.724105 2019-12-23 21:31:26.689597 3 0 0 0000446 \N \N f f \N descarga__3_.jpg 6 01010101 374 PUL-374 BOQ-001 PULCERA TIERRA SANTA BOQUITAS COLORES 310.00 620.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.440326 3 0 1 0000374 \N \N f f \N \N 16 01010101 270 ZAP-270 AGTI821 ZAPATO CLOE 599.50 1199.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862848 2019-05-20 17:41:46.083184 3 0 1 0000270 \N \N f f \N AGTI821.jpg 13 01010101 353 BOL-353 AREB875 BOLSA CLOE PIEL DE SERPIENTE 849.50 1699.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 19:57:21.781445 3 0 1 0000353 \N \N f f \N AREB875.jpeg 6 01010101 361 BOL-361 JIAM488 MOCHILA CLOE CAFÉ CON LLAVERO DE HOJA 899.50 1799.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 20:50:00.878422 3 0 1 0000361 \N \N f f \N JIAM.jpg 6 01010101 32 CAR-32 XEKP767 CARTERA CLOE 349.50 699.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86261 2019-09-04 01:36:07.159342 3 0 1 0000032 \N \N f f \N XEKP767.png 4 01010101 455 BOL-455 GIRL243 BOLSO GIRLS 199.50 399.00 \N \N \N \N f t \N 1 2019-02-08 18:49:37.012688 2020-01-07 20:28:01.363912 3 0 0 7509170666182 \N \N f f \N WIN_20200107_13_19_25_Pro.jpg 6 01010101 92 BLU-92 BL-0037 BLUSON RAYADO ROJO LARGO JEALOUS TOMATO 304.00 799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86267 2019-02-04 09:10:14.707885 3 0 1 0000092 \N \N f f \N \N 7 01010101 133 BLU-133 BLS-0001 BLUSA ENJOY MUY MUY 191.10 499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862711 2019-02-04 09:10:14.760146 3 0 1 0000133 \N \N f f \N \N 7 01010101 150 BLU-150 BLS-0017 PAYERA 3 ESTRELLAS BLANCA 154.08 469.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862728 2019-02-04 09:10:15.23076 3 0 1 0000150 \N \N f f \N \N 7 01010101 129 BLU-129 BLU-0049 GAZA CORTE CAMPESINA VERDE Y TINTA DAY G 150.00 429.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862707 2019-02-04 09:10:15.836088 3 0 1 0000129 \N \N f f \N \N 7 01010101 321 BLU-321 BLX-0006 PLAYERA NEGRA HOMBRO DESCUBIERTO 154.08 469.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.133384 3 0 1 0000321 \N \N f f \N \N 7 01010101 186 FAL-186 F-0004 FLOREADA FONDO AZUL JAYVEE 99.00 499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862764 2019-02-04 09:10:16.801181 3 0 1 0000186 \N \N f f \N \N 11 01010101 188 FAL-188 F-0008 ROJA CON MOÑO NYLON 270.00 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862766 2019-02-04 09:10:16.90298 3 0 1 0000188 \N \N f f \N \N 11 01010101 202 FAL-202 FLD-0004 FALDA VOLADITA ROJA Y ROSA 168.80 499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86278 2019-02-04 09:10:17.354283 3 0 1 0000202 \N \N f f \N \N 11 01010101 334 CAR-334 IRCO171 CARTERA CLOE TERCIOPELO AZUL 499.50 999.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:17.602133 3 0 1 0000334 \N \N f f \N \N 4 01010101 261 ZAP-261 ORVA 603 SANDALIA CLOE 749.50 1499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862839 2019-02-04 09:10:18.608371 3 0 1 0000261 \N \N f f \N \N 13 01010101 373 PUL-373 P-0003 PULCERA TIERRA SANTA NEGRA 324.50 649.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:18.745387 3 0 1 0000373 \N \N f f \N \N 16 01010101 177 PAN-177 PNT-0001 PANTALON NEGRO CON ABERTURA MUY MUY 227.50 699.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862755 2019-02-04 09:10:19.302096 3 0 1 0000177 \N \N f f \N \N 8 01010101 393 PAL-393 V-0002 PALAZO NEGRO ENVENT NEGRO CON CINTO DORADO 297.00 899.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:20.615477 3 0 1 0000393 \N \N f f \N \N 9 01010101 206 VES-206 VES-0006 AMARILLO DE GAZA FLOREADO SHOP 17 226.87 829.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862784 2019-02-04 09:10:21.882185 3 0 1 0000206 \N \N f f \N \N 12 01010101 227 VES-227 VES-0041 ROJO PEGADO DE TIRANTES OLIVE TREE 200.00 799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862805 2019-02-04 09:10:22.262827 3 0 1 0000227 \N \N f f \N \N 12 01010101 250 VES-250 VST-0004 VESTIDO NARANJA CON FLORES BLANCAS LATISTE 509.60 1199.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862828 2019-02-04 09:10:22.384453 3 0 1 0000250 \N \N f f \N \N 12 01010101 1 JUM-1 JMP-0001 JUMPER APEACH FLORES \r\n \N 18.20 \N \N \N \N f t \N 0 2019-02-02 01:39:44.862582 2019-02-02 22:49:41.889575 3 0 1 0000001 \N \N f t 10.00 \N 1 01010101 20 SHO-20 SHR-0008 SHORT APEACH BEIGE 200.20 499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862598 2019-02-04 09:10:20.39973 3 0 1 0000020 \N \N f f \N \N 2 01010101 37 CAR-37 OANY273 CARTERA CLOE 399.50 799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862615 2019-02-04 09:10:18.491262 3 0 1 0000037 \N \N f f \N \N 4 01010101 36 CAR-36 OANY275 CARTERA CLOE 449.50 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862614 2019-02-04 09:10:18.51564 3 0 1 0000036 \N \N f f \N \N 4 01010101 29 REL-29 REJ-0002 BLANCO 1348.00 2699.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862607 2019-02-04 09:10:19.645164 3 0 1 0000029 \N \N f f \N \N 3 01010101 21 REL-21 REJ-0003 ROSA CON CORAZON 1348.00 2899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862599 2019-02-04 09:10:19.667749 3 0 1 0000021 \N \N f f \N \N 3 01010101 25 REL-25 REJ-0009 DORADO CON CORAZON 1348.00 2900.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862603 2019-02-04 09:10:19.686182 3 0 1 0000025 \N \N f f \N \N 3 01010101 27 REL-27 REJ-0010 BLANCO 1348.00 3399.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862605 2019-02-04 09:10:19.706117 3 0 1 0000027 \N \N f f \N \N 3 01010101 26 REL-26 REJ-.0011 DORADO 1348.00 3399.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862604 2019-02-04 09:10:19.724123 3 0 1 0000026 \N \N f f \N \N 3 01010101 30 REL-30 REJ-0014 BLANCO CON DORADO 1348.00 3599.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862608 2019-02-04 09:10:19.745421 3 0 1 0000030 \N \N f f \N \N 3 01010101 22 REL-22 REJ-0015 AZUL 1348.00 2799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.8626 2019-02-04 09:10:19.769001 3 0 1 0000022 \N \N f f \N \N 3 01010101 28 REL-28 REJ-0055 BLANCO 1348.00 3700.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862606 2019-02-04 09:10:19.79381 3 0 1 0000028 \N \N f f \N \N 3 01010101 23 REL-23 REL-0006 PLATA 1348.00 2399.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862601 2019-02-04 09:10:19.818601 3 0 1 0000023 \N \N f f \N \N 3 01010101 24 REL-24 REL-0007 DORADO 1348.00 2600.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862602 2019-02-04 09:10:19.843347 3 0 1 0000024 \N \N f f \N \N 3 01010101 35 CAR-35 RYAD287 CARTERA CLOE 449.50 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862613 2019-02-04 09:10:19.868332 3 0 1 0000035 \N \N f f \N \N 4 01010101 223 VES-854 V-0044 ROJO VOLADITO CON RAYAS NEGRAS B.C.B.C. 286.85 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862801 2019-10-22 01:08:03.929868 3 0 1 0000223 \N \N f f \N \N 12 01010101 450 BOL-450 TREC603 BACK PACK CLOE 749.50 1499.00 \N \N \N \N f t \N 1 2019-02-08 18:12:59.101713 2019-02-08 18:12:59.146831 3 0 0 0000450 \N \N f f \N \N 6 01010101 451 BOL-451 LIGE762 BOLSO CLOE 949.50 1899.00 \N \N \N \N f t \N 1 2019-02-08 18:36:27.43028 2019-02-08 18:36:27.479068 3 0 0 0000451 \N \N f f \N \N 6 01010101 452 BOL-452 SIGR574 BOLSO CLOE 849.50 1699.00 \N \N \N \N f t \N 1 2019-02-08 18:37:40.852458 2019-02-08 18:37:40.852458 3 0 0 7509170711783 \N \N f f \N \N 6 01010101 453 BOL-453 MIGE626 BOLSO PEQUEÑO CLOE AMARILLO MOSTAZA 549.50 1099.00 \N \N \N \N f t \N 1 2019-02-08 18:38:44.674017 2020-01-07 20:21:27.517381 3 0 0 0000453 \N \N f f \N WIN_20200107_13_17_20_Pro.jpg 6 01010101 454 BOL-454 FREJ584 BOLSO CLOE 799.50 1599.00 \N \N \N \N f t \N 1 2019-02-08 18:40:20.623562 2019-02-08 18:40:20.623562 3 0 0 7509170712117 \N \N f f \N \N 6 01010101 263 ZAP-263 AMDI620 SANDALIA CLOE 799.50 1599.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862841 2019-09-04 01:18:40.568914 3 0 1 0000263 \N \N f f \N AMDI.jpg 13 01010101 118 BLU-PRM-640 BLU-0010 ROJA DE GAZA POTTERS POT 150.00 499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862696 2019-07-31 00:37:17.547697 3 0 1 0000118 \N \N f f \N \N 20 01010101 11 JUM-642 BL-0010 OVEROL NEGRO RUBY STITCH 163.62 599.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862589 2019-08-18 21:19:37.045288 3 0 1 0000011 \N \N f f \N \N 1 01010101 449 BOL-449 KAMO792 BOLSO CLOE ROJO Y MARINO 849.50 1699.00 \N \N \N \N f t \N 1 2019-02-08 18:11:38.188242 2019-09-04 19:33:25.379229 3 0 0 0000449 \N \N f f \N kamo.jpg 6 01010101 34 CAR-34 YRBA282 CARTERA CLOE 399.50 799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862612 2020-07-02 23:25:45.86557 3 0 1 0000034 \N \N f f \N WIN_20200702_17_25_20_Pro__2_.jpg 4 01010101 33 CAR-33 NAJA315 CARTERA CLOE 399.50 799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862611 2020-07-02 23:27:39.137686 3 0 1 0000033 \N \N f f \N WIN_20200702_17_28_50_Pro.jpg 4 01010101 74 BLU-74 B-0055 BLANCA CON CIRCULOS GRISES THE MOON 330.00 499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862652 2019-02-04 09:10:13.491149 3 0 1 0000074 \N \N f f \N \N 7 01010101 286 BLU-286 B-0073 BLUSA COLORES BOILA RAYADA CON MOÑO 480.00 999.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:13.705287 3 0 1 0000286 \N \N f f \N \N 7 01010101 459 BOL-459 GIRL250 BOLSO GIRL 249.50 499.00 \N \N \N \N f t \N 1 2019-02-08 18:53:47.788238 2019-02-08 18:53:47.788238 3 0 0 7509170698534 \N \N f f \N \N 6 01010101 461 BOL-461 GIRL266 BOLSO GIRL 174.50 349.00 \N \N \N \N f t \N 1 2019-02-08 18:55:45.631096 2019-02-08 18:55:45.631096 3 0 0 7509170732832 \N \N f f \N \N 6 01010101 497 VES-497 VST-0009 KIMONO MUY MUY ROSA ENCAJE\r\n 293.52 799.00 \N \N \N \N f t \N 1 2019-03-21 22:27:46.132127 2019-03-21 22:27:46.176676 3 0 0 0000497 \N \N f f \N \N 12 01010101 498 VES-498 VST-0010 KIMONO MUY MUY NEGRO TEJIDO\r\n 213.92 669.00 \N \N \N \N f t \N 1 2019-03-21 22:30:28.765986 2019-03-21 22:30:28.806453 3 0 0 0000498 \N \N f f \N \N 12 01010101 499 VES-499 VST-0011 KIMONO ENCAJE MUY MUY ROJO Y NEGRO\r\n 228.85 699.00 \N \N \N \N f t \N 1 2019-03-21 22:33:29.548149 2019-03-21 22:33:29.595342 3 0 0 0000499 \N \N f f \N \N 12 01010101 500 VES-500 VST-0012 KIMONO SAN J RAYAS NEGRA 258.70 699.00 \N \N \N \N f t \N 1 2019-03-21 22:37:36.865676 2019-03-21 22:37:36.905749 3 0 0 0000500 \N \N f f \N \N 12 01010101 501 VES-501 VST-0013 VESTIDO TROPICAL HOJAS APEACH 298.50 799.00 \N \N \N \N f t \N 1 2019-03-21 22:41:12.748494 2019-03-21 22:41:12.785991 3 0 0 0000501 \N \N f f \N \N 12 01010101 502 VES-502 VST-0014 VESTIDO CARIBEEN Q ROSA FUSCIA\r\n 398.00 1299.00 \N \N \N \N f t \N 1 2019-03-21 22:44:11.214479 2019-03-21 22:44:11.251493 3 0 0 0000502 \N \N f f \N \N 12 01010101 503 VES-503 VST-0015 VESTIDO CARIBEEN Q CON MANGA Y FLORES 380.00 1299.00 \N \N \N \N f t \N 1 2019-03-21 22:46:57.598681 2019-03-21 22:46:57.650995 3 0 0 0000503 \N \N f f \N \N 12 01010101 504 VES-504 VST-0016 VESTIDO LATIS NEGRO CON FLORES ENCAJE 557.10 1392.00 \N \N \N \N f t \N 1 2019-03-21 22:49:59.630628 2019-03-21 22:49:59.672113 3 0 0 0000504 \N \N f f \N \N 12 01010101 505 VES-505 VST-0017 CONJUNTO LATISTE ELEFANTES\r\n 676.60 1699.00 \N \N \N \N f t \N 1 2019-03-21 22:52:28.656018 2019-03-21 22:52:28.73694 3 0 0 0000505 \N \N f f \N \N 12 01010101 506 CON-506 VST-0018 CONJUNTO PANTALON PAÑUELO \r\n 557.20 1395.00 \N \N \N \N f t \N 1 2019-03-21 22:54:12.554311 2019-03-21 22:54:12.592517 3 0 0 0000506 \N \N f f \N \N 10 01010101 507 BLU-507 BLS-0027 BLUSA NEVER 89\r\n 194.25 479.00 \N \N \N \N f t \N 1 2019-03-21 22:58:54.872197 2019-03-21 22:58:54.911301 3 0 0 0000507 \N \N f f \N \N 7 01010101 508 BLU-508 BLS-0028 BLUSA SAN JOY RAYAS CON MOÑO 308.45 699.00 \N \N \N \N f t \N 1 2019-03-21 23:04:00.213166 2019-03-21 23:04:00.248773 3 0 0 0000508 \N \N f f \N \N 7 01010101 509 BLU-509 BLS-0029 BLUSA A.PEACH NEGRA DE ENCAJE 299.50 599.00 \N \N \N \N f t \N 1 2019-03-21 23:36:55.145857 2019-03-21 23:36:55.198817 3 0 0 0000509 \N \N f f \N \N 7 01010101 510 BLU-510 BLS-0030 BLUSA AMARILLA VOILA 474.50 949.00 \N \N \N \N f t \N 1 2019-03-21 23:37:55.230803 2019-03-21 23:37:55.286468 3 0 0 0000510 \N \N f f \N \N 7 01010101 512 BLU-512 BLS-0032 BLUSA NEGRA CON BLANCO DE ENCAJE CBQ 434.50 869.00 \N \N \N \N f t \N 1 2019-03-21 23:43:07.869406 2019-03-21 23:43:07.931028 3 0 0 0000512 \N \N f f \N \N 7 01010101 511 BLU-511 BLS-0031 BLUSA VOILA ROSA CORTE CAMPESINA 434.50 869.00 \N \N \N \N f t \N 1 2019-03-21 23:40:19.36523 2020-02-19 18:45:13.452882 3 0 0 0000511 \N \N f f \N IMG_4504.jpg 7 01010101 514 BLU-514 BLS-0034 BLUSA NEGRA CON MANGA DE OLAN PAPAYON 239.50 479.00 \N \N \N \N f t \N 1 2019-03-21 23:45:14.522184 2019-03-21 23:45:14.570438 3 0 0 0000514 \N \N f f \N \N 7 01010101 515 PAN-515 PNT-0007 PANTALON MEZCLILLA CBQ 449.50 899.00 \N \N \N \N f t \N 1 2019-03-21 23:50:14.054517 2019-03-21 23:50:14.097961 3 0 0 0000515 \N \N f f \N \N 8 01010101 302 BLU-302 B-0078 BLUSA NEGRA NYLON CORTA TRANSPARENTE 263.00 659.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:13.803203 3 0 1 0000302 \N \N f f \N \N 7 01010101 362 BOL-362 OZAL155 MOCHILA CLOE CON TEXTURA DE SERPIENTE NEGRA, TINTA Y CAMEL 899.50 1799.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 19:49:11.439857 3 0 1 0000362 \N \N f f \N OZAL155.jpg 6 01010101 279 BLU-279 BL-0031 BLUSA ROSA Y ROJO NYLON CON COLA RAYADA 250.00 649.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-07-24 00:50:07.292824 3 0 1 0000279 \N \N f f \N d9cdacb1-4ce8-4d73-b43b-0f8ca5ee45da.JPG 7 01010101 70 BLU-PRM-640 B-0002 AMARILLA JACARANDA 132.00 399.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862648 2019-07-31 00:55:52.458204 3 0 1 0000070 \N \N f f \N \N 20 01010101 662 BLU-662 BLS-0054 TOP LOVESONG ENCAJE NEGRO Y DORADO 270.00 699.00 \N \N \N \N f t \N 1 2019-08-20 21:43:34.027865 2019-08-22 04:24:07.73216 3 0 0 0000662 \N \N f f \N PHOTO-2019-08-12-12-53-15_2432_.jpg 7 01010101 661 VES-661 VST-0037 VESTIDO LOVESONG COLOR MOSTAZA 260.00 599.00 \N \N \N \N f t \N 1 2019-08-20 21:40:25.478389 2019-09-12 01:51:17.973576 3 0 0 0000661 \N \N f f \N 26CAF2F8-FAF2-4467-8611-D477DEF24069_2436_.JPG 12 01010101 720 BOL-720 2BLCO19104 BOLSA DE TELA 999.50 1999.00 \N \N \N \N f t \N 1 2019-09-26 23:13:32.115196 2019-10-13 20:17:15.083802 3 0 0 7509170754490 \N \N f f \N BLUN104_NEGR_1_300x435.jpg 6 01010101 721 BOL-721 1BLCO19026 BOLSA NEGRA CON PONPON 899.50 1799.00 \N \N \N \N f t \N 1 2019-09-26 23:15:58.499651 2019-10-13 20:07:02.536955 3 0 0 7509170751550 \N \N f f \N BLUN026_NEGR_1_300x435.jpg 6 01010101 794 BLU-794 BLS-0077 BLUSA DECO RAYADA COLORES TIERRA 270.00 649.00 \N \N \N \N f t \N 0 2019-10-13 16:40:35.939164 2019-10-13 18:36:02.657711 3 0 0 0000794 \N \N f f \N \N 7 01010101 795 BLU-795 BLS-0084 BLUSA WILD CAT VERDE CON PLATEADO 190.00 499.00 \N \N \N \N f t \N 1 2019-10-13 16:42:29.382252 2019-10-13 17:09:04.254609 3 0 0 0000795 \N \N f f \N \N 7 01010101 797 VES-797 VST-0059 APEACH NEGRO CON PERLAS 460.00 1199.00 \N \N \N \N f t \N 1 2019-10-13 16:47:12.367325 2019-11-05 20:41:27.900986 3 0 0 0000797 \N \N f f \N IMG_3046.JPG 12 01010101 513 BLU-513 BLS-0033 BLUSA BLANCA CBQ 449.50 899.00 \N \N \N \N f t \N 1 2019-03-21 23:44:15.52579 2020-02-19 18:22:41.548346 3 0 0 0000513 \N \N f f \N IMG_4491.jpg 7 01010101 717 BOL-717 1BLCI19290 BOLSA CON CADENA DORADA Y MASCADA 1049.50 2099.00 \N \N \N \N f t \N 1 2019-09-26 23:07:45.133189 2019-10-13 20:16:02.297957 3 0 0 7509170766172 \N \N f f \N BBRO290_MULT_1_300x435.jpg 6 01010101 719 BOL-719 1BLCI19278 BOLSA NEGRA 749.50 1499.00 \N \N \N \N f t \N 1 2019-09-26 23:12:23.538367 2019-10-13 20:20:15.091023 3 0 0 7509170765809 \N \N f f \N BSAL278_NEGR_1_300x435.jpg 6 01010101 718 BOL-718 1BLCI19279 MOCHILA NEGRA 799.50 1599.00 \N \N \N \N f t \N 1 2019-09-26 23:10:45.203654 2019-10-13 20:25:26.477557 3 0 0 7509170765830 \N \N f f \N BBAL279_NEGR_1_300x435.jpg 6 01010101 716 BOL-716 1BLCI19288 MOCHILA CLOE DE PELUCHE 749.50 1499.00 \N \N \N \N f t \N 1 2019-09-26 23:05:41.171646 2019-10-13 20:26:05.643596 3 0 0 7509170766134 \N \N f f \N BBAO288_GRIS_1_300x435.jpg 6 01010101 798 BLU-798 BLS-0085 BLUSA CLOTHING NEGRA OLANES EN AS MANGAS 170.00 469.00 \N \N \N \N f t \N 1 2019-10-13 16:52:24.07058 2019-10-14 19:09:36.367388 3 0 0 0000798 \N \N f f \N \N 7 01010101 723 BOL-723 1BLCI19284 MOCHILA CAFE CON ANIMAL PRINT 999.50 1999.00 \N \N \N \N f t \N 1 2019-09-26 23:19:17.768418 2019-12-23 20:39:39.67385 3 0 0 7509170766004 \N \N f f \N BBAO284_CAME_1_300x435.jpg 6 01010101 457 BOL-457 GIRL257 BOLSO GIRL 199.50 399.00 \N \N \N \N f t \N 1 2019-02-08 18:51:32.554087 2020-01-07 20:22:45.952228 3 0 0 170698725 \N \N f f \N WIN_20200107_13_18_48_Pro.jpg 6 01010101 460 BOL-460 GIRL245 BOLSO GIRL 224.50 449.00 \N \N \N \N f t \N 1 2019-02-08 18:54:42.141981 2020-01-07 20:23:47.418234 3 0 0 7509170666236 \N \N f f \N WIN_20200107_13_19_09_Pro.jpg 6 01010101 458 BOL-458 GIRL249 BOLSO GIRL 174.50 349.00 \N \N \N \N f t \N 1 2019-02-08 18:52:28.37088 2020-01-07 20:25:28.238373 3 0 0 7509170698497 \N \N f f \N WIN_20200107_13_19_17_Pro.jpg 6 01010101 456 BOL-456 GIRL263 249.50 499.00 \N \N \N \N f t \N 1 2019-02-08 18:50:30.369772 2020-01-07 20:27:05.434928 3 0 0 7509170732740 \N \N f f \N WIN_20200107_13_19_25_Pro.jpg 6 01010101 38 CAR-38 SAEG302 CARTERA CLOE 399.50 799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862616 2019-02-04 09:10:19.893261 3 0 1 0000038 \N \N f f \N \N 4 01010101 462 BLU-462 BLX-0011 BLUSA PAPAYON MOSTAZA 141.96 489.00 \N \N \N \N f t \N 1 2019-02-09 23:09:29.308817 2019-02-09 23:09:29.376074 3 0 0 0000462 \N \N f f \N \N 7 01010101 516 VES-516 VST-0012 VESTIDO NEGRO VALENTINE 499.50 999.00 \N \N \N \N f t \N 1 2019-03-23 23:36:56.156094 2019-03-23 23:36:56.242614 3 0 0 0000516 \N \N f f \N \N 12 01010101 351 BOL-351 AMYN105 BOLSA CLOE CAFÉ CON ROSA GRANDE 999.50 1999.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 20:19:13.791111 3 0 1 0000351 \N \N f f \N AMYN104.jpg 6 01010101 352 BOL-352 ANYG857 MOCHILA CLOE ROSA ORO Y DORADA 949.50 1899.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 20:44:41.710447 3 0 1 0000352 \N \N f f \N ANYG.jpg 6 01010101 210 VES-PRM-640 VES-0012 VOLADITO BLANCO CON FLORES JACARANDA 231.00 869.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862788 2019-07-31 00:13:18.862155 3 0 1 0000210 \N \N f f \N \N 18 01010101 663 BLU-663 BLS-0056 BLUSA LOVESONG NEGRA Y BLANCA 275.00 699.00 \N \N \N \N f t \N 1 2019-08-20 21:44:59.510836 2019-08-22 04:26:48.233978 3 0 0 0000663 \N \N f f \N PHOTO-2019-08-12-12-53-14_2422_.jpg 7 01010101 72 BLU-72 B-0066 BLANCA RAYAS ROJAS MUYMUY 210.00 610.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86265 2020-02-19 18:36:06.958713 3 0 1 0000072 \N \N f f \N IMG_4500.jpg 7 01010101 60 BLU-60 B-0101 PANTI AZUL Y ROSA CQBYCQ 240.00 699.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862638 2020-01-22 20:32:21.442323 3 0 1 0000060 \N \N f f \N IMG_4279.jpg 7 01010101 86 BLU-PRM-640 B-0072 NEGRA DE GAZA CON MOÑO ROJO M2 280.00 769.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862664 2019-07-31 01:01:34.105816 3 0 1 0000086 \N \N f f \N \N 20 01010101 75 BLU-PRM-640 BL-0016 ROSA MICHEL 132.00 499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862653 2019-07-31 01:02:46.452493 3 0 1 0000075 \N \N f f \N \N 20 01010101 57 BOL-57 AROT927 BOLSA CLOE 1049.50 2099.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862635 2019-02-04 09:10:12.511059 3 0 1 0000057 \N \N f f \N \N 6 01010101 87 BLU-PRM-640 B-0067 LILA MANGA LARGA MUY MUY 280.00 680.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862665 2019-07-31 01:04:28.613399 3 0 1 0000087 \N \N f f \N \N 20 01010101 94 BLU-973 B-0046 PANTI ROSA NYLON 196.00 399.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862672 2020-01-29 18:48:57.362061 3 0 1 0000094 \N \N f f \N \N 7 01010101 298 BLU-298 B-01041 PANTIBLUSA ROSA CON LENTEJUELA 280.00 679.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:14.080473 3 0 1 0000298 \N \N f f \N \N 7 01010101 134 BLU-134 BLS-0002 BLUSA RAYAS CON COLA MUY MUY 286.75 769.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862712 2019-02-04 09:10:14.783919 3 0 1 0000134 \N \N f f \N \N 7 01010101 219 VES-219 V-0022 VOLADITO DE TIRANTES ROSA GLOW FASSHION 210.00 849.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862797 2020-01-29 21:11:54.502851 3 0 1 0000219 \N \N f f \N IMG_0190.PNG 12 01010101 311 BLU-311 BLU-0029 BLUSA GRIS MICHELLE DE GASA CON FLORES DE COLORES 111.20 389.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:15.692792 3 0 1 0000311 \N \N f f \N \N 7 01010101 400 FAL-400 F-0001 SHORT BLANCA Y NEGRA KAFE FALDA BLANCO 140.00 499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.775816 3 0 1 0000400 \N \N f f \N \N 11 01010101 372 PUL-372 PUL-001 PULCERA TIERRA SANTA ROJA Y DORADA MANITA 299.50 599.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:19.48343 3 0 1 0000372 \N \N f f \N \N 16 01010101 245 VES-245 V-0020 VESTIDO RAYAS CON FLOR 297.00 749.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862823 2019-02-04 09:10:20.891768 3 0 1 0000245 \N \N f f \N \N 12 01010101 65 BLU-PRM-640 B-0014 DURAZNO CIRCULOS BLANCOS MICHEL 111.37 409.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862643 2019-07-31 01:09:39.851065 3 0 1 0000065 \N \N f f \N \N 20 01010101 89 BLU-PRM-640 B-0057 ROSA DE TIRANTES NYLON 210.00 599.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862667 2020-02-19 18:21:40.78412 3 0 1 0000089 \N \N f f \N IMG_4485.jpg 20 01010101 165 PAN-165 V-0041 ROSA PALO LABANGA 257.12 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862743 2019-02-04 09:10:21.203533 3 0 1 0000165 \N \N f f \N \N 8 01010101 90 BLU-90 B-0019 VERDE LIMON CON MOÑO B.C.B.C. 189.75 499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862668 2019-02-04 09:10:12.976211 3 0 1 0000090 \N \N f f \N \N 7 01010101 91 BLU-91 B-0031 BLANCA FLOREADA CON MOÑO AMARILLO MOCHA 266.00 599.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862669 2019-02-04 09:10:13.101372 3 0 1 0000091 \N \N f f \N \N 7 01010101 85 BLU-85 B-0053 BLANCA DE GAZA MC 330.00 649.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862663 2019-02-04 09:10:13.416027 3 0 1 0000085 \N \N f f \N \N 7 01010101 63 BLU-63 B-00833 AZUL MANGA LARGA NYLON 330.00 749.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862641 2019-02-04 09:10:13.851495 3 0 1 0000063 \N \N f f \N \N 7 01010101 61 BLU-61 B-0089 NEGRA DE TIRANTES LIBELY 160.00 399.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862639 2019-02-04 09:10:13.92596 3 0 1 0000061 \N \N f f \N \N 7 01010101 79 BLU-79 BL-0001 PLAYERA DE TENNIS NYLON 187.68 569.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862657 2019-02-04 09:10:14.156067 3 0 1 0000079 \N \N f f \N \N 7 01010101 78 BLU-78 BL-0004 DURAZNO CON FLORES NYLON 211.75 595.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862656 2019-02-04 09:10:14.205773 3 0 1 0000078 \N \N f f \N \N 7 01010101 82 BLU-82 BL-0008 PLAYERA VERDE CON OLANES PASTEL 240.64 669.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86266 2019-02-04 09:10:14.277148 3 0 1 0000082 \N \N f f \N \N 7 01010101 81 BLU-81 BL-0014 NEGRA CON PERLAS NOBLE 258.87 599.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862659 2019-02-04 09:10:14.35287 3 0 1 0000081 \N \N f f \N \N 7 01010101 83 BLU-83 BL-0015 BLANCA CON FLORES BORDADAS NOBLE 259.87 629.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862661 2019-02-04 09:10:14.402587 3 0 1 0000083 \N \N f f \N \N 7 01010101 76 BLU-76 BL-0018 BLANCA FLOREADA VENTI 6 264.68 528.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862654 2019-02-04 09:10:14.474529 3 0 1 0000076 \N \N f f \N \N 7 01010101 80 BLU-80 BL-0021 PLAYERA DE BESOS NYLON 200.00 499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862658 2019-02-04 09:10:14.500457 3 0 1 0000080 \N \N f f \N \N 7 01010101 77 BLU-77 BL-0022 BLANCA CON MOÑOS A CUADROS NYLON 220.00 519.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862655 2019-02-04 09:10:14.524779 3 0 1 0000077 \N \N f f \N \N 7 01010101 197 JUM-642 V-0021 OVEROL GRIS BALBOA 230.00 649.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862775 2019-08-18 22:23:42.23584 3 0 1 0000197 \N \N f f \N \N 1 01010101 173 BLU-642-A BLU-0003 NEGRO DE TERCIOPELO DAY G 200.00 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862751 2019-08-18 22:17:14.606103 3 0 1 0000173 \N \N f f \N \N 7 01010101 665 BLU-665 BLS-0058 BLUSA MUY MUY MM0778 BLANCA CON ENCAJE EN LAS MANGAS 170.00 469.00 \N \N \N \N f t \N 1 2019-08-20 21:53:24.328963 2019-08-22 04:42:33.676665 3 0 0 0000665 \N \N f f \N 18860C9C-A568-4904-94E0-8E86C3F1BA2C_2440_.JPG 7 01010101 56 BOL-56 AROT925 BOLSA CLOE NEGRA 999.50 1999.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862634 2019-09-04 19:56:34.392666 3 0 1 0000056 \N \N f f \N PHOTO-2019-09-04-13-38-52.jpg 6 01010101 664 BLU-664 BLS-0057 BLUSA LOVESONG CON OLANES EN LOS BRAZOS MAGENTTA Y DORADO 275.00 699.00 \N \N \N \N f t \N 1 2019-08-20 21:46:16.411256 2019-08-22 04:25:19.129332 3 0 0 0000664 \N \N f f \N PHOTO-2019-08-12-12-53-14_2424_.jpg 7 01010101 724 FAL-724 F-0014 FALDA BLUE B LENTEJUELAS DE COLORES Y PLATEADAS 344.50 689.00 \N \N \N \N f t \N 1 2019-10-05 17:34:42.281159 2019-10-05 17:34:42.350934 3 0 0 0000724 \N \N f f \N \N 11 01010101 725 FAL-725 F-0025 FALDA THINKABLE GAMUSA COLOR CAFÉ \r\n 264.50 529.00 \N \N \N \N f t \N 1 2019-10-05 17:35:28.000924 2019-10-05 17:35:28.034925 3 1 0 0000725 \N \N f f \N \N 11 01010101 726 FAL-726 FAL-0011 FALDA LOLA LENTEJUELA 264.50 529.00 \N \N \N \N f t \N 1 2019-10-05 17:36:07.43683 2019-10-05 17:36:07.472091 3 0 0 0000726 \N \N f f \N \N 11 01010101 727 FAL-727 F-0017 FALDA DO+BE GAMUZA ROSA\r\n 349.50 699.00 \N \N \N \N f t \N 1 2019-10-05 17:37:00.596286 2019-10-05 17:37:00.628789 3 0 0 0000727 \N \N f f \N \N 11 01010101 64 BLU-909 B-0016 FLOREADA COLOR DURAZNO WHYSPER 132.00 449.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862642 2019-11-03 18:52:54.637269 3 0 1 0000064 \N \N f f \N \N 7 01010101 675 VES-675 VST-0045 VESTIDO FLORAL DAYLIGHT ST. D47574\r\n 290.00 849.00 \N \N \N \N f t \N 1 2019-08-22 01:06:51.497873 2020-05-02 02:04:19.092159 3 0 0 0000675 \N \N f f \N PHOTO-2020-04-28-14-28-46.jpg 12 01010101 802 BLU-802 BLS-0086 BLUSA FASHION ZONE LA BLANCA CON COLA ST-FZT06 350.00 869.00 \N \N \N \N f t \N 1 2019-10-14 19:19:24.60568 2020-02-19 18:05:58.039578 3 0 0 0000802 \N \N f f \N IMG_4475.jpg 7 01010101 464 CAR-464 EVAY402 CARTERA CLOE 399.50 799.00 \N \N \N \N f t \N 1 2019-02-11 17:38:27.694649 2019-02-11 17:38:27.751562 3 0 0 0000464 \N \N f f \N \N 4 01010101 803 BLU-803 BLS-0087 BLUSA FASHION ZONE LA MOZTAZA ST-FZT0025 245.00 599.00 \N \N \N \N f t \N 1 2019-10-14 19:19:52.38605 2020-02-19 18:39:50.367383 3 0 0 0000803 \N \N f f \N IMG_4496.jpg 7 01010101 466 CAR-466 ERIN782 CARTERA CLOE 349.50 699.00 \N \N \N \N f t \N 1 2019-02-11 18:23:27.592619 2019-02-11 18:23:27.651166 3 0 0 0000466 \N \N f f \N \N 4 01010101 467 CAR-467 FREJ580 CARTERA CLOE 399.50 799.00 \N \N \N \N f t \N 1 2019-02-11 18:36:24.097458 2019-02-11 18:36:24.172241 3 0 0 0000467 \N \N f f \N \N 4 01010101 800 BLU-800 BLS-0088 BLUSA CLOTHING NRGRA ST-2867 170.00 469.00 \N \N \N \N f t \N 1 2019-10-14 19:06:07.172544 2019-10-15 05:26:42.474183 3 0 0 0000800 \N \N f f \N \N 7 01010101 864 BOL-864 1BLCI19304 CANGURERA CHICA NEGRA 599.50 1199.00 \N \N \N \N f t \N 1 2019-10-28 18:23:44.93457 2019-10-28 18:23:44.93457 3 0 0 7509170766578 \N \N f f \N BCAL304_NEGR_1_828x1200.jpg 6 01010101 470 BOL-470 CANGURERA GUESS CANGURERA GUESS 699.50 1399.00 \N \N \N \N f t \N 1 2019-02-11 19:01:44.626984 2019-02-11 19:01:44.680897 3 0 0 0000470 \N \N f f \N \N 6 01010101 667 BLU-667 BLS-0054 TOP LOVESONG DE ENCAJE NEGRO Y DORADO\r\n 260.00 599.00 \N \N \N \N f t \N 0 2019-08-22 00:22:47.454435 2019-08-22 04:27:46.405798 3 0 0 0000667 \N \N f f \N \N 7 01010101 468 BOL-468 DOGA599 PORTA LAPTOP CLOE 949.50 1899.00 \N \N \N \N f t \N 1 2019-02-11 18:48:34.626621 2019-09-04 01:31:23.938399 3 0 0 0000468 \N \N f f \N DOGA599_MORA_1_90x130.jpg 6 01010101 517 BLU-517 BLX-0017 BLUSA NEGRA DE TUL A.PEACH 299.50 599.00 \N \N \N \N f t \N 1 2019-03-25 17:52:48.943988 2019-03-25 17:53:14.475328 3 0 0 0000517 \N \N f f \N \N 7 01010101 469 BOL-469 CANGURERA GUESS CANGURERA GUESS 599.50 1199.00 \N \N \N \N f t \N 1 2019-02-11 19:00:00.296544 2019-09-04 19:59:20.743061 3 0 0 0000469 \N \N f f \N PHOTO-2019-05-23-14-37-21.jpg 6 01010101 463 CAR-582 KRAB271 CARTERA CLOE 449.50 899.00 \N \N \N \N f t \N 1 2019-02-11 17:35:41.914524 2019-05-20 20:00:44.321051 3 0 0 0000463 \N \N f f \N KRAB271.jpg 4 01010101 728 FAL-728 F-0027 FALDA CQ&CQ NEGRA TERCIOPELO \r\n 399.50 799.00 \N \N \N \N f t \N 1 2019-10-05 19:07:34.943406 2019-10-05 19:07:34.978369 3 0 0 0000728 \N \N f f \N \N 11 01010101 673 FAL-673 FLD-0013 FALDA DE PATOLES LOVE MUYMUY ST. 0787\r\n 280.00 560.00 \N \N \N \N f t \N 1 2019-08-22 00:48:24.494986 2019-08-22 00:48:24.541689 3 0 0 0000673 \N \N f f \N \N 11 01010101 582 VES-582 VST-0028 VESTIDO ROSA FUSCIA APEACH \N 869.00 \N \N \N \N f t \N 0 2019-05-23 01:31:02.721272 2019-05-23 01:52:29.411812 3 0 0 0000582 \N \N f f 20.00 vst000258.jpeg 12 01010101 583 VES-583 VST-0028 VESTIDO ROSA FUCSIA A PEACH 384.00 869.00 \N \N \N \N f t \N 1 2019-05-23 01:53:40.539619 2019-05-23 01:53:40.612305 3 0 0 0000583 \N \N f f \N vst000258.jpeg 12 01010101 231 VES-PRM-640 VES-0006 PEGADO NARANJA Y AZUL GLOW PASSION 189.75 869.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862809 2019-07-31 00:16:00.365299 3 0 1 0000231 \N \N f f \N \N 18 01010101 67 BLU-PRM-640 B-0008 NEGRA CON MANGAS BLANCAS B.C.B.C. 198.00 569.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862645 2019-07-31 00:58:25.039131 3 0 1 0000067 \N \N f f \N \N 20 01010101 230 VES-642 V-0003 VOLADITO ROSA GLOW PASSION 189.75 869.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862808 2019-08-18 21:15:09.76443 3 0 1 0000230 \N \N f f \N \N 12 01010101 799 BLU-799 BLS-0075 BLUSA CLOTHING NEGRA ST-2869\r\n 170.00 459.00 \N \N \N \N f t \N 1 2019-10-14 18:44:45.720151 2019-10-14 18:44:45.758357 3 0 0 0000799 \N \N f f \N \N 7 01010101 73 BLU-73 B-0007 BLANCA TIRANTES B.C.B.C. 189.75 499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862651 2019-02-04 09:10:12.657522 3 0 1 0000073 \N \N f f \N \N 7 01010101 66 BLU-909 B-0006 FLOREADA VERDE Y NARANJA WHYSPER 132.00 399.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862644 2019-11-03 18:59:11.171193 3 0 1 0000066 \N \N f f \N \N 7 01010101 666 VES-666 VST-0038 VESTIDO FLOREADO A.PEACH ST. ND11379 330.00 869.00 \N \N \N \N f t \N 1 2019-08-21 23:38:42.234655 2019-08-22 02:47:43.461153 3 0 0 0000666 \N \N f f \N F862B415-40C8-46CC-BFE4-828460FA0362_2394_.JPG 12 01010101 671 BLU-671 BLS-0066 BLUSON RAYADO BLUE B AZUL MARINO ST. T6022\r\n 290.00 799.00 \N \N \N \N f t \N 1 2019-08-22 00:30:26.152903 2019-08-22 02:52:56.777315 3 0 0 0000671 \N \N f f \N file-18_2397_.jpeg 7 01010101 668 BLU-668 BLS-0059 BRALETTE DE ENCAJE ST.LB20 LB18\r\n 80.00 299.00 \N \N \N \N f t \N 1 2019-08-22 00:25:24.931574 2019-08-22 02:56:27.246315 3 0 0 0000668 \N \N f f \N 5C16C34B-4810-4EB9-B1CD-CFE81E2B0093_2398_.JPG 7 01010101 669 BLU-669 BLS-0060 PLAYERA DE BUGS SISTER ST.LD136\r\n 150.00 419.00 \N \N \N \N f t \N 1 2019-08-22 00:26:33.245466 2019-08-22 03:01:15.614291 3 0 0 0000669 \N \N f f \N A21E2BD4-28D9-45CB-A0AB-DDA5DB984833_2400_.JPG 7 01010101 670 BLU-670 BLS-0061 PANTIBLUSA NEGRA BUGAMBILIA ST. 5546BW\r\n 250.00 639.00 \N \N \N \N f t \N 1 2019-08-22 00:27:16.48415 2019-08-22 03:08:00.422629 3 0 0 0000670 \N \N f f \N 9D82A334-02E7-4F73-8638-0440A899F4EF_2404_.JPG 7 01010101 672 FAL-672 FLD-0011 FALDA DE PATOLES SANJOY ST. 16710\r\n 270.00 699.00 \N \N \N \N f t \N 1 2019-08-22 00:33:52.033005 2019-08-22 03:13:08.717319 3 0 0 0000672 \N \N f f \N 26D5B639-FFDF-4ABD-AFBA-F62B2D7C6A2D_2416_.JPG 11 01010101 674 VES-674 VST-0042 VESTIDO DORADO TEJIDO APEACH ST. 21356\r\n 320.00 999.00 \N \N \N \N f t \N 1 2019-08-22 01:05:19.476652 2019-08-22 03:15:01.419937 3 0 0 0000674 \N \N f f \N 313D99AC-72C5-4D56-A778-1BF5E0F00BD5_2390_.JPG 12 01010101 915 ACC-915 DIA-0016 DIADEMA DE PIEDRAS ROSA Y ROJA 153.40 310.00 \N \N \N \N f t \N 1 2019-11-13 18:20:12.836142 2019-11-13 18:20:12.885372 3 0 0 0000915 \N \N f f \N DIA-0016.jpg 17 01010101 801 BLU-801 BLS-0085 BLUSA CLOTHING NEGRA 170.00 469.00 \N \N \N \N f t \N 0 2019-10-14 19:06:52.152917 2019-10-14 19:09:52.91652 3 0 0 0000801 \N \N f f \N \N 7 01010101 913 ACC-913 DIA-0014 DIADEMA CON PIEDRAS COLOR ROSA, MOSTAZA, NEGRA Y ROJA CON ACABADOS DORADOS 96.64 239.00 \N \N \N \N f t \N 1 2019-11-13 18:08:39.060201 2019-11-13 18:08:39.106543 3 0 0 0000913 \N \N f f \N DIA-0014.jpg 17 01010101 914 ACC-914 DIA-0015 DIADEMA DE ENCAJE NEGRA Y MOSTAZA CON MOÑO 49.79 129.00 \N \N \N \N f t \N 1 2019-11-13 18:18:27.337782 2019-11-13 18:18:27.375171 3 0 0 0000914 \N \N f f \N DIA-0015.jpg 17 01010101 916 ACC-916 DIA-0017 DIADEMA DE PERLAS BLANCA Y DORADA 44.00 119.00 \N \N \N \N f t \N 1 2019-11-13 18:21:39.305843 2019-11-13 18:21:39.361794 3 0 0 0000916 \N \N f f \N DIA-0017.jpg 17 01010101 917 ACC-917 DIA-0018 DIADEMA DE GAMUZA NEGRA Y ROSA CPN PIEDRAS 53.69 139.00 \N \N \N \N f t \N 1 2019-11-13 18:23:12.679801 2019-11-13 18:23:12.721383 3 0 0 0000917 \N \N f f \N DIA-0018.jpg 17 01010101 918 ACC-918 DIA-0019 DIADEMA NEGRA CON PIEDRAS DE COLORES 53.69 139.00 \N \N \N \N f t \N 1 2019-11-13 18:25:32.041578 2019-11-13 18:25:32.07776 3 0 0 0000918 \N \N f f \N DIA-0019.jpg 17 01010101 919 ACC-919 DIA-0020 DIADEMA ROSA, GRIS Y AZUL CON PLATEADO 40.98 115.00 \N \N \N \N f t \N 1 2019-11-13 18:26:59.718453 2019-11-13 18:26:59.758871 3 0 0 0000919 \N \N f f \N DIA-0020.jpg 17 01010101 920 ACC-920 DIA-0021 DIADEMA NEGRA Y BLANCA CON PERLA TORNASOL 45.49 129.00 \N \N \N \N f t \N 1 2019-11-13 18:28:57.00039 2019-11-13 18:28:57.035193 3 0 0 0000920 \N \N f f \N DIA-0021.jpg 17 01010101 921 ACC-921 DIA-0022 DIADEMA NEGRA, ROSA Y VERDE CON PIEDRAS 57.47 149.00 \N \N \N \N f t \N 1 2019-11-13 18:30:46.533671 2019-11-13 18:30:46.581258 3 0 0 0000921 \N \N f f \N DIA-0022.jpg 17 01010101 465 CAR-465 SIGR572 CARTERA PLATEADA CLOE 399.50 799.00 \N \N \N \N f t \N 1 2019-02-11 18:21:09.462451 2019-12-23 21:43:50.268819 3 0 0 0000465 \N \N f f \N images__2_.jpg 4 01010101 471 BOL-471 TUVA586 BOLSA CLOE 699.50 1399.00 \N \N \N \N f t \N 1 2019-02-11 20:42:17.210456 2019-02-11 20:42:17.303423 3 0 0 0000471 \N \N f f \N \N 6 01010101 472 BOL-472 TREC601 BOLSA CLOE 699.50 1399.00 \N \N \N \N f t \N 1 2019-02-11 20:44:41.418634 2019-02-11 20:44:41.479146 3 0 0 0000472 \N \N f f \N \N 6 01010101 683 PAN-683 PNT-0012 PANTALON NEGRO 52127P MILK&HONEY 179.00 569.00 \N \N \N \N f t \N 1 2019-08-22 03:43:35.427118 2020-01-22 20:15:51.058874 3 0 0 0000683 \N \N f f \N IMG_4277.jpg 8 01010101 475 CON-475 JMP-0002 SET COLOR LAVANDA A.PEACH 356.00 889.00 \N \N \N \N f t \N 1 2019-02-12 01:52:45.205621 2019-02-12 01:52:45.265124 3 0 0 0000475 \N \N f f \N \N 10 01010101 474 CON-474 JMP-0002 356.00 889.00 \N \N \N \N f t \N 0 2019-02-12 01:43:22.059642 2019-02-12 01:54:08.990708 3 0 0 0000474 \N \N f f \N \N 10 01010101 518 BLU-518 BLX-0017 BLUSA VOILA ROSA CON ENCAJE EN MANGAS 354.78 869.00 \N \N \N \N f t \N 1 2019-03-26 01:14:47.114711 2019-03-26 01:14:47.175952 3 0 0 0000518 \N \N f f \N \N 7 01010101 519 BLU-519 BLX-0018 BLUSA VOILA ROSA CON ENCAJE EN MANGAS 354.78 799.00 \N \N \N \N f t \N 1 2019-03-26 01:21:26.691355 2019-03-26 01:21:26.735576 3 0 0 0000519 \N \N f f \N \N 7 01010101 676 VES-676 VST-0046 VESTIDO APECH NEGRO A CUADROS TIPO GABARDINA YJ-50201 455.00 1299.00 \N \N \N \N f t \N 1 2019-08-22 03:24:48.444418 2019-08-22 05:11:56.302757 3 0 0 0000676 \N \N f f \N 7F06422E-A3E0-482A-8FDC-DF4632DD3D1D_2388_.JPG 12 01010101 524 BLU-524 BLX-0021 BLUSA PLAYERA ZAPATILLA ROSA 216.81 549.00 \N \N \N \N f t \N 1 2019-03-26 01:51:04.592847 2020-02-19 18:10:07.08521 3 0 0 0000524 \N \N f f \N IMG_4480.jpg 7 01010101 522 FAL-522 FLD-0005 FALDA MEZCLILLA BLABOA NEGRA\r\n 236.52 599.00 \N \N \N \N f t \N 1 2019-03-26 01:44:37.511209 2019-03-26 01:44:37.566408 3 0 0 0000522 \N \N f f \N \N 11 01010101 523 FAL-523 FLD-0006 FALDA BALBOA MEZCLILLA NEGRA 236.52 599.00 \N \N \N \N f t \N 1 2019-03-26 01:47:14.753028 2019-03-26 01:47:14.805191 3 0 0 0000523 \N \N f f \N \N 11 01010101 525 VES-525 DRESS-0004 VESTIDO CBQ ROSA BATITA 453.33 1099.00 \N \N \N \N f t \N 1 2019-03-26 01:58:06.264358 2019-03-26 01:58:06.339788 3 0 0 0000525 \N \N f f \N \N 12 01010101 526 VES-526 DRESS-005 VESTIDO NEGRO VOLADITO CON FLORES \r\n 354.78 999.00 \N \N \N \N f t \N 1 2019-03-26 02:03:24.313698 2019-03-26 02:03:24.367114 3 0 0 0000526 \N \N f f \N \N 12 01010101 528 VES-528 BLX-0022 KIMONO NEGRO CON CINTO 236.52 699.00 \N \N \N \N f t \N 1 2019-03-26 02:12:43.356874 2019-03-26 02:12:43.411981 3 0 0 0000528 \N \N f f \N \N 12 01010101 529 BLU-529 BLX-0023 KIMONO CON PERLAS NEGRO SAN J 315.36 799.00 \N \N \N \N f t \N 1 2019-03-26 02:15:08.702312 2019-03-26 02:15:08.75337 3 0 0 0000529 \N \N f f \N \N 7 01010101 520 BLU-520 BLX-0019 BLUSA NEGRA CON FALDITA Y MOÑO 384.34 849.00 \N \N \N \N f t \N 1 2019-03-26 01:30:15.143782 2019-05-21 00:00:52.943925 3 0 0 0000520 \N \N f f \N IMG_0847.jpg 7 01010101 585 VES-585 VST-0030 VESTIDO DURAZNO LATISTE ST.LD51074A 668.00 1599.00 \N \N \N \N f t \N 1 2019-05-23 18:01:24.016911 2019-05-23 18:01:24.05675 3 0 0 0000585 \N \N f f \N \N 12 01010101 730 SHO-730 F-0031 SHORT A CUADROS JEALOUS TOMATO 280.00 699.00 \N \N \N \N f t \N 1 2019-10-05 23:59:52.269677 2019-10-05 23:59:52.307597 3 0 0 0000730 \N \N f f \N \N 2 01010101 587 BLU-587 BLS-0043 BLUSA NEGRA CON DESTELLOS APEACH ST.CT-7422 209.00 499.00 \N \N \N \N f t \N 1 2019-05-23 18:23:42.712911 2019-05-23 18:23:42.760752 3 0 0 0000587 \N \N f f \N \N 7 01010101 588 BLU-588 BLS-0044 BLUSA DE ENCAJE CON TUL FUCSIA APEACH ST.NT-1505 248.75 599.00 \N \N \N \N f t \N 1 2019-05-23 18:24:49.268261 2019-05-23 18:24:49.306998 3 0 0 0000588 \N \N f f \N \N 7 01010101 584 VES-584 VST-0029 VESTIDO LAVANDA/VERDE APEACH ST.CD-21175 286.35 749.00 \N \N \N \N f t \N 1 2019-05-23 17:40:31.787008 2019-05-23 20:32:24.611347 3 0 0 0000584 \N \N f f \N A9FA7346-6215-4990-8536-6AFA9BC02D41.jpeg 12 01010101 586 BLU-586 BLS-0042 BLUSA BLANCA CON HOJAS APEACH ST.YT6012 219.53 549.00 \N \N \N \N f t \N 1 2019-05-23 18:19:58.133794 2019-07-24 00:48:36.336139 3 0 0 0000586 \N \N f f \N file2-1.jpeg 7 01010101 686 VES-686 VST-0044 VESTIDO BLUE S NEGRO D92175 270.00 649.00 \N \N \N \N f t \N 1 2019-08-22 04:54:05.977059 2019-09-04 21:14:20.740129 3 0 0 0000686 \N \N f f \N PHOTO-2019-08-13-13-20-33.jpg 12 01010101 679 VES-679 VST-0043 VESTIDO NEGRO MOÑO 9021DK CQBYCQ 430.00 1199.00 \N \N \N \N f t \N 1 2019-08-22 03:33:39.711619 2019-08-22 03:33:39.755713 3 0 0 0000679 \N \N f f \N 2D3A0557-A77E-4D3A-8D8D-AD769528EF27_2408_.JPG 12 01010101 680 PAN-680 PNT-0011 LEGGINS NEGRO DL20123 SANJOY 160.00 499.00 \N \N \N \N f t \N 1 2019-08-22 03:39:07.812332 2019-08-22 03:39:07.85103 3 0 0 0000680 \N \N f f \N \N 8 01010101 681 BLU-681 BLS-0063 TOP METALICO DORADO Y PLATEADO GE1452S SANJOY 310.00 759.00 \N \N \N \N f t \N 1 2019-08-22 03:40:37.730201 2019-08-22 03:40:37.787912 3 0 0 0000681 \N \N f f \N 2E376ED0-2055-4522-9967-1F6BCA240D1F_2414_.JPG 7 01010101 687 VES-687 VST-0050 VESTIDO CORTE SIRENA COLOR TINTO B92152 260.00 699.00 \N \N \N \N f t \N 1 2019-08-22 04:56:20.735664 2019-09-07 05:42:02.307715 3 0 0 0000687 \N \N f f \N PHOTO-2019-08-13-13-20-32.jpg 12 01010101 868 PAL-868 PLZ-0018 VALENTINE PALAZO NEGRO CON VERDE ST-Jp8394 \r\n 570.00 1429.00 \N \N \N \N f t \N 1 2019-10-29 01:25:10.568111 2020-01-29 21:09:14.509808 3 0 0 0000868 \N \N f f \N f606e515-7ca8-4970-9a36-926aa154fe11.JPG 9 01010101 684 VES-684 VST-0047 VESTIDO LATISTE NEGRO CON CINTO 560.00 1499.00 \N \N \N \N f t \N 1 2019-08-22 04:15:26.890991 2019-08-22 04:15:26.935078 3 0 0 0000684 \N \N f f \N PHOTO-2019-08-21-22-08-26_2420_.jpg 12 01010101 685 BLU-685 BLS-0067 BLUSA MOSTAZA 54219T MILK&HONEY 155.00 399.00 \N \N \N \N f t \N 1 2019-08-22 04:48:23.334239 2019-08-22 04:48:23.375767 3 0 0 0000685 \N \N f f \N 00C3F485-54A1-4151-BE09-838EC1FAB4B8_2444_.JPG 7 01010101 804 BLU-804 BLS-0089 PANTIBLUSA FASHION ZONE LA PLATA ST-FZB0013 239.00 599.00 \N \N \N \N f t \N 1 2019-10-14 19:20:26.976409 2019-10-14 19:20:27.009716 3 0 0 0000804 \N \N f f \N \N 7 01010101 729 FAL-729 F-0026 FALDA DE GAMUZA CON OLAN NEGRA CQBYCQ 300.00 769.00 \N \N \N \N f t \N 1 2019-10-05 23:52:43.775738 2019-10-05 23:52:43.816551 3 0 0 0000729 \N \N f f \N \N 11 01010101 682 FAL-682 FLD-0014 SISTER FASHION FALDA NEGRA DE TUL G1101 240.00 649.00 \N \N \N \N f t \N 1 2019-08-22 03:42:25.441729 2019-08-22 15:27:14.007641 3 0 0 0000682 \N \N f f \N 6D9C3775-EB56-4CE0-868D-BCD4A3D880D5_2402__-_copia.JPG 11 01010101 688 BLU-688 BLS-0068 PANTI MULTICOLOR /BLANCO B92152 260.00 649.00 \N \N \N \N f t \N 1 2019-08-22 04:58:07.844 2019-08-25 19:10:17.409878 3 0 0 0000688 \N \N f f \N 697DAB7C-E10C-47CB-B8DC-4FABA5FA8A78_2450_.JPG 7 01010101 678 VES-678 VST-0041 VESTIDO DE ENCAJE CON BOLITAS 8652DK CQBYCQ 440.00 1299.00 \N \N \N \N f t \N 1 2019-08-22 03:31:46.641818 2019-08-25 19:22:44.109244 3 0 0 0000678 \N \N f f \N 04D6C9AC-9D8C-4078-A03D-9D77B1DBA85A_2410_.JPG 12 01010101 677 BLU-677 BLS-0062 BLUSA CAMPESINA DE GASA CQBYCQ 9157TW 350.00 699.00 \N \N \N \N f t \N 1 2019-08-22 03:28:24.484545 2019-08-31 04:26:14.037783 3 0 0 0000677 \N \N f f \N C53D81FD-1608-42BB-8B31-3D48CE6ACE59_2406_.JPG 7 01010101 806 PAN-806 PNT-0020 PANTALON APEACH BRILLOS NEGRO ST-YP82820 250.00 689.00 \N \N \N \N f t \N 1 2019-10-14 19:35:34.525566 2019-10-14 19:35:34.562227 3 0 0 0000806 \N \N f f \N IMG_2961_2869_.jpg 8 01010101 865 PAL-865 PLZ-0015 VALENTINE PALAZZO NEGRO CON BRILLOS plata ST-J15526\r\n 530.00 1399.00 \N \N \N \N f t \N 1 2019-10-29 01:23:05.689177 2019-10-29 01:23:05.729739 3 0 0 0000865 \N \N f f \N \N 9 01010101 866 PAL-866 PLZ-0016 VALENTINE palazzo cuello v plata ST-Jp10972\r\n 510.00 1349.00 \N \N \N \N f t \N 1 2019-10-29 01:23:51.419297 2019-10-29 01:23:51.455333 3 0 0 0000866 \N \N f f \N \N 9 01010101 805 VES-805 VST-0060 APEACH ST-YD31049 NEGRO CON HEBILLA DE BRILLOS 310.00 789.00 \N \N \N \N f t \N 1 2019-10-14 19:32:52.018589 2019-11-05 20:34:37.192009 3 0 0 0000805 \N \N f f \N PHOTO-2019-10-15-21-52-22.jpg 12 01010101 521 BLU-521 BLX-0020 PLAYERA NEGRA MONITAS CON GORRA\r\n 177.39 499.00 \N \N \N \N f t \N 1 2019-03-26 01:39:31.269461 2020-02-19 18:09:34.055071 3 0 0 0000521 \N \N f f \N IMG_4479.jpg 7 01010101 473 BOL-473 EMEY780 MOCHILA CLOE 899.50 1799.00 \N \N \N \N f t \N 1 2019-02-11 20:52:05.820697 2019-12-23 20:30:22.511115 3 0 0 0000473 \N \N f f \N EMEY780_NEGR_1_828x1200.jpg 6 01010101 527 VES-527 DRESS-006 VESTIDO AZUL CON HOJAS 295.65 749.00 \N \N \N \N f t \N 1 2019-03-26 02:06:05.474105 2019-03-26 02:06:05.681063 3 0 0 0000527 \N \N f f \N \N 12 01010101 589 BLU-589 DEUDA 674.50 1349.00 \N \N \N \N f t \N 1 2019-06-21 01:27:48.481589 2019-06-21 01:27:48.554274 3 0 0 0000589 \N \N f f \N \N 7 01010101 476 BLU-476 BASICA BLUSA DE TIRANTE EN VARIOS COLORES 49.50 99.00 \N \N \N \N f t \N 1 2019-02-12 19:33:39.899095 2019-07-24 00:50:37.132673 3 0 1 0000476 \N \N f f \N descarga.jpg 7 01010101 689 BOL-689 ERIO487 MOCHILA NEGRA 799.50 1599.00 \N \N \N \N f t \N 1 2019-08-29 22:08:49.271364 2019-09-04 19:39:07.519812 3 0 0 7509170558067 \N \N f f \N ERIO487_NEGR_1_300x435.jpg 6 01010101 731 BLU-731 BL-0026 BLUSA CQ MOSTAZA CON PLUMAS 270.00 679.00 \N \N \N \N f t \N 1 2019-10-07 19:11:43.345542 2019-10-07 19:11:43.389876 3 0 0 0000731 \N \N f f \N \N 7 01010101 807 SHO-807 SHO-0023 2W (ST-P1505) SHORT CUADROS\r\n 200.00 549.00 \N \N \N \N f t \N 1 2019-10-15 05:30:28.550542 2019-10-15 05:30:28.591489 3 0 0 0000807 \N \N f f \N \N 2 01010101 924 ACC-924 DIA-0025 DIADEMA NEGRA Y DORADA CON DETALLES DORADOS Y PERLAS 47.03 119.00 \N \N \N \N f t \N 1 2019-11-13 18:38:19.837382 2019-11-13 18:38:19.872928 3 0 0 0000924 \N \N f f \N DIA-0025.jpg 17 01010101 925 ACC-925 DIA-0026 DIADEMA PLATEADA Y DORADA CON DIAMANTES 135.52 369.00 \N \N \N \N f t \N 1 2019-11-13 18:39:51.668827 2019-11-13 18:39:51.720902 3 0 0 0000925 \N \N f f \N DIA-0026.jpg 17 01010101 873 BLU-873 BLS-0093 Blusa negra flores JELOUSE TOMATO ST-AT1862\r\n 280.00 729.00 \N \N \N \N f t \N 1 2019-10-29 01:30:07.919959 2019-10-29 01:30:07.955413 3 0 0 0000873 \N \N f f \N \N 7 01010101 926 ACC-926 DIA-0027 DIADEMA NEGRA, ROSA Y MOSTAZA CON PERLAS 37.53 99.00 \N \N \N \N f t \N 1 2019-11-13 18:41:08.206952 2019-11-13 18:41:08.243817 3 0 0 0000926 \N \N f f \N DIA-0027.jpg 17 01010101 927 ACC-927 DIA-0028 DIADEMA NEGRA, MOSTAZA, VERDE, NEGRA, GRIS Y CAFE CON PERLAS 37.20 149.00 \N \N \N \N f t \N 1 2019-11-13 18:44:03.924868 2019-11-13 18:44:03.968482 3 0 0 0000927 \N \N f f \N DIA-0028.jpg 17 01010101 878 BLU-878 BLS-0098 BLUSA VQ&CQ NEGRA ST-9498TW\r\n 440.00 999.00 \N \N \N \N f t \N 1 2019-10-29 01:35:13.069648 2019-10-29 01:35:13.10639 3 0 0 0000878 \N \N f f \N \N 7 01010101 879 BLU-879 BLS-0099 BLUSA CQCQ DORADA ST-9557\r\n 530.00 1560.00 \N \N \N \N f t \N 1 2019-10-29 01:36:08.154002 2019-10-29 01:36:08.195595 3 0 0 0000879 \N \N f f \N \N 7 01010101 876 BLU-876 BLS-0096 BLUSA CQ&CQ NEGRA ST-9297\r\n 360.00 899.00 \N \N \N \N f t \N 1 2019-10-29 01:33:20.86454 2019-10-29 01:36:40.700988 3 0 0 0000876 \N \N f t \N \N 7 01010101 928 ACC-928 DIA-0029 DIADEMA CON LENTEJUELAS BLANCA, NEGRA, ROSA Y AZUL 43.64 149.00 \N \N \N \N f t \N 1 2019-11-13 18:45:39.961044 2019-11-13 18:45:40.003056 3 0 0 0000928 \N \N f f \N DIA-0029.jpg 17 01010101 883 PAN-883 PNT-0021 Pantalón doradoJELOUSE TOMATO ST-JP5189 \r\n 415.00 1049.00 \N \N \N \N f t \N 1 2019-10-29 01:43:28.152746 2019-10-29 01:43:28.191762 3 0 0 0000883 \N \N f f \N \N 8 01010101 929 ACC-929 DIA-0030 DIADEMA NEGRA Y PLATA DE ENCAJE U PIEDRAS 34.72 99.00 \N \N \N \N f t \N 1 2019-11-13 18:47:13.455272 2019-11-13 18:47:13.497419 3 0 0 0000929 \N \N f f \N DIA-0030.jpg 17 01010101 875 BLU-875 BLS-0095 PANTIBLUSA CQCQ NUDE PEACH Y NEGRA ST 8972BW\r\n 240.00 599.00 \N \N \N \N f t \N 1 2019-10-29 01:32:03.077166 2019-10-30 02:09:59.678217 3 0 0 0000875 \N \N f f \N PHOTO-2019-10-15-21-54-30.jpg 7 01010101 881 VES-881 VST-0062 VESTIDO CQ&CQ LT GLOD ST-9370DW\r\n 520.00 1349.00 \N \N \N \N f t \N 1 2019-10-29 01:41:18.562008 2019-10-30 02:17:15.053141 3 0 0 0000881 \N \N f f \N PHOTO-2019-10-15-21-54-25.jpg 12 01010101 869 PAL-869 PLZ-0019 PALAZZO VALENTINE TINTO ST- JP11008 Tinto \r\n 530.00 1399.00 \N \N \N \N f t \N 1 2019-10-29 01:25:56.855703 2019-11-05 19:56:51.376673 3 0 0 0000869 \N \N f f \N PHOTO-2019-11-04-14-14-08.jpg 9 01010101 871 BLU-871 BLS-0091 BLUSA MUYMUYY ST-MM0867 COLOR NEGRO, DORADO Y PLATA\r\n 210.00 599.00 \N \N \N \N f t \N 1 2019-10-29 01:28:32.653619 2019-11-05 20:07:37.322047 3 0 0 0000871 \N \N f f \N PHOTO-2019-11-04-14-14-07__3_.jpg 7 01010101 874 BLU-874 BLS-0094 BLUSA VALENTINE ST-9326 roja y negra\r\n 290.00 759.00 \N \N \N \N f t \N 1 2019-10-29 01:30:57.650759 2019-11-05 20:08:28.631721 3 0 0 0000874 \N \N f f \N PHOTO-2019-11-04-14-14-12__2_.jpg 7 01010101 882 VES-882 VST-0063 VESTIDO CQ&CQ TINTO ST-9388DK\r\n 500.00 1299.00 \N \N \N \N f t \N 1 2019-10-29 01:42:02.394369 2019-11-05 20:35:25.956724 3 0 0 0000882 \N \N f f \N PHOTO-2019-10-15-21-54-28__2_.jpg 12 01010101 872 BLU-872 BLS-0092 Blusa negra con moños JELOUSE TOMATO ST-AT1861\r\n 275.00 739.00 \N \N \N \N f t \N 1 2019-10-29 01:29:14.807464 2019-11-05 20:44:23.231618 3 0 0 0000872 \N \N f f \N PHOTO-2019-10-15-21-54-24.jpg 7 01010101 880 CON-880 CJT-0004 Conjunto BLUE S lentejuelas plata ST-92270\r\n 380.00 999.00 \N \N \N \N f t \N 1 2019-10-29 01:38:11.77605 2019-11-05 20:46:35.543075 3 0 0 0000880 \N \N f f \N PHOTO-2019-10-15-21-54-32.jpg 10 01010101 870 BLU-870 BLS-0090 Blusa Silver MUYMUY ST-MM0780 \r\n 155.00 449.00 \N \N \N \N f t \N 1 2019-10-29 01:27:32.978688 2019-11-09 19:23:16.490085 3 0 0 0000870 \N \N f f \N PHOTO-2019-11-04-14-14-07.jpg 7 01010101 884 FAL-884 FLD-0019 Faldas piel ST-0865 195.00 549.00 \N \N \N \N f t \N 1 2019-10-29 01:44:35.229984 2019-11-09 20:08:22.506891 3 0 0 0000884 \N \N f f \N PHOTO-2019-11-04-14-14-06.jpg 11 01010101 877 BLU-877 BLS-0097 BLUSA CQ&CQ NEGRA Y DORADA ST-9319TW\r\n 400.00 899.00 \N \N \N \N f t \N 1 2019-10-29 01:34:24.355394 2019-11-12 19:46:57.354145 3 0 0 0000877 \N \N f f \N PHOTO-2019-10-15-21-54-28__1_.jpg 7 01010101 922 ACC-922 DIA-0023 DIADEMA NEGRA CON FLORRD NEGRAS Y DORADAS 57.47 149.00 \N \N \N \N f t \N 1 2019-11-13 18:35:05.616001 2019-11-13 18:35:05.655557 3 0 0 0000922 \N \N f f \N DIA-0023.jpg 17 01010101 923 ACC-923 DIA-0024 DIADEMA NEGRA CON DIAMANTES 176.60 369.00 \N \N \N \N f t \N 1 2019-11-13 18:36:41.769506 2019-11-13 18:36:41.80985 3 0 0 0000923 \N \N f f \N DIA-0024.jpg 17 01010101 930 ACC-930 DIA-0031 DIADEMA ROSA,NEGRA Y MOSTAZA 52.53 139.00 \N \N \N \N f t \N 1 2019-11-13 18:49:53.123256 2019-11-13 18:49:53.160427 3 0 0 0000930 \N \N f f \N DIA-031.jpg 17 01010101 931 ACC-931 DIA-0032 DIADEMA DE LENTEJUELA DORADA Y COBRE 52.89 145.00 \N \N \N \N f t \N 1 2019-11-13 18:51:28.582506 2019-11-13 18:51:28.622197 3 0 0 0000931 \N \N f f \N DIA-0032.jpg 17 01010101 932 ACC-932 DIA-0033 DIADEMA NEGRA CON PIEDRAS Y PERLA 77.27 199.00 \N \N \N \N f t \N 1 2019-11-13 18:54:02.886971 2019-11-13 18:54:02.9415 3 0 0 0000932 \N \N f f \N DIA-0033.jpg 17 01010101 933 ACC-933 DIA-0034 DIADEMA CON FLORES DE PIEDRA ROSA, NEGRA Y TINTA 56.56 139.00 \N \N \N \N f t \N 1 2019-11-13 18:55:33.085072 2019-11-13 18:55:33.122027 3 0 0 0000933 \N \N f f \N DIA-0034.jpg 17 01010101 934 ACC-934 DIA-0035 DIADEMA NEGRA, VERDE Y DORADA 56.56 139.00 \N \N \N \N f t \N 1 2019-11-13 18:57:42.458242 2019-11-13 18:57:42.49673 3 0 0 0000934 \N \N f f \N DIA-0035.jpg 17 01010101 935 ACC-935 DIA-0036 DIADEMA ROSA Y NEGRA CON RAYADO 32.25 99.00 \N \N \N \N f t \N 1 2019-11-13 18:59:53.617985 2019-11-13 18:59:53.653108 3 0 0 0000935 \N \N f f \N DIA-0036.jpg 17 01010101 936 ACC-936 DIA-0037 DIADEMA CON MOÑO ROSA, TINTO Y NEGRO 28.70 85.00 \N \N \N \N f t \N 1 2019-11-13 19:01:45.537858 2019-11-13 19:01:45.576941 3 0 0 0000936 \N \N f f \N DIA-0037.jpg 17 01010101 937 ACC-937 DIA-0038 DIADEMA DE CANUTILLO DORADO Y NEGRO 145.02 369.00 \N \N \N \N f t \N 1 2019-11-13 19:02:57.719205 2019-11-13 19:02:57.761357 3 0 0 0000937 \N \N f f \N DIA-0038.jpg 17 01010101 938 ACC-938 DIA-0039 DIADEMA DE MEZCLILLA CON PERLAS 43.54 149.00 \N \N \N \N f t \N 1 2019-11-13 19:05:50.23745 2019-11-13 19:05:50.274875 3 0 0 0000938 \N \N f f \N DIA-0039.jpg 17 01010101 885 FAL-885 FLD-0018 NYLON LARGA CON CHINOS ST-48057\r\n 360.00 899.00 \N \N \N \N f t \N 1 2019-10-29 01:45:22.051829 2019-11-20 20:10:42.358216 3 0 0 0000885 \N \N f f \N \N 11 01010101 939 ACC-939 DIA-0040 DIADEMA COM PIEDRAS NEGRAS Y GRISES 149.54 389.00 \N \N \N \N f t \N 0 2019-11-13 19:07:22.869243 2019-11-13 19:18:13.83783 3 0 0 0000939 \N \N f f \N DIA-0040.jpg 17 01010101 971 CHA-972 CHA-0001 CHAMARRA TINTA MICHEL 439.50 879.00 \N \N \N \N f t \N 1 2020-01-25 19:33:24.099674 2020-01-25 19:33:54.458849 3 0 0 0000971 \N \N f f \N \N 24 01010101 477 ZAP-477 SIGR836 TENNIS 699.50 1399.00 \N \N \N \N f t \N 1 2019-02-12 23:55:04.417551 2019-02-12 23:55:04.48754 3 0 0 0000477 \N \N f f \N \N 13 01010101 117 BLU-909 B-0009 BLANCA DE TIRANTE MICHEL 131.95 425.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862695 2019-11-03 19:21:38.392288 3 0 1 0000117 \N \N f f \N \N 7 01010101 93 BLU-93 BL-0029 NEGRA CON FLORES Y COLA PASTEL 360.00 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862671 2019-02-04 09:10:14.622014 3 0 1 0000093 \N \N f f \N \N 7 01010101 62 BLU-62 BL-0040 NEGRA CON MOÑO EN LOS HOMBROS A.PEACH 256.50 659.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86264 2019-02-04 09:10:14.733998 3 0 1 0000062 \N \N f f \N \N 7 01010101 71 BLU-71 BLU-0003 AZUL REY Y ROSA MICHEL 111.75 349.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862649 2019-02-04 09:10:15.553931 3 0 1 0000071 \N \N f f \N \N 7 01010101 84 BLU-84 BLU-0011 AZUL Y ROJA CON CIRCULOS BLANCOS B.C.B.C. 130.00 499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862662 2019-02-04 09:10:15.6393 3 0 1 0000084 \N \N f f \N \N 7 01010101 53 BOL-53 IRCO172 BOLSA CLOE 649.50 1299.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862631 2019-02-04 09:10:17.628148 3 0 1 0000053 \N \N f f \N \N 6 01010101 52 BOL-52 KEIL009 BOLSA CLOE 849.50 1699.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86263 2019-02-04 09:10:17.939925 3 0 1 0000052 \N \N f f \N \N 6 01010101 88 BLU-88 PAS-001 ROSITA CON PERLAS PASTEL 230.00 499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862666 2019-02-04 09:10:19.154459 3 0 1 0000088 \N \N f f \N \N 7 01010101 50 BOL-50 OZAL155 BOLSA CLOE 899.50 1799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862628 2019-05-20 21:40:28.802768 3 0 1 0000050 \N \N f f \N OZAL155.jpg 6 01010101 43 BOL-43 TABY908 BOLSA CLOE 699.50 1399.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862621 2019-02-04 09:10:20.502304 3 0 1 0000043 \N \N f f \N \N 6 01010101 598 BLU-598 BLS-0046 BLUSA DE ENCAJE BLANCA VALENTINE ST. T10516 275.50 679.00 \N \N \N \N f t \N 1 2019-07-15 22:30:32.818328 2019-07-17 23:21:41.116734 3 0 0 0000598 \N \N f f \N PHOTO-2019-07-14-22-41-36.jpg 7 01010101 593 BLU-593 BLS-0045 PANTIBLUSA BLANCA VALENTINE ST.T8675 256.50 659.00 \N \N \N \N f t \N 1 2019-07-15 19:15:21.586546 2019-07-24 00:25:47.060654 3 0 0 0000593 \N \N f f \N file5-5.jpeg 7 01010101 115 BLU-PRM-640 B-0027 BLANCA DE MANGA LARGA Y TIRANTE NYLON 264.00 649.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862693 2019-07-31 00:38:19.696019 3 0 1 0000115 \N \N f f \N \N 20 01010101 590 VES-590 VST-0031 VESTIDO ROJO Y BLANCO VOILA ST. D1565\r\n 418.00 1099.00 \N \N \N \N f t \N 1 2019-07-15 19:11:41.37249 2019-07-24 00:41:02.783109 3 0 0 0000590 \N \N f f \N file-17.jpeg 12 01010101 44 BOL-44 TIAM568 BOLSA CLOE 849.50 1699.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862622 2019-02-04 09:10:20.525959 3 0 1 0000044 \N \N f f \N \N 6 01010101 58 BOL-58 YLAT522 BOLSA CLOE 699.50 1399.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862636 2019-02-04 09:10:22.547314 3 0 1 0000058 \N \N f f \N \N 6 01010101 59 BOL-59 ALYX004 BOLSA CLOE 849.50 1699.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862637 2019-02-04 09:10:12.234223 3 0 1 0000059 \N \N f f \N \N 6 01010101 113 BLU-113 B-0011 BLANCA ESPALDA DESCUBIERTA B.C.B.C. 160.00 499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862691 2019-02-04 09:10:12.806686 3 0 1 0000113 \N \N f f \N \N 7 01010101 107 BLU-107 B-0029 FLORES BORDADAS WHYSPER 149.00 569.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862685 2019-02-04 09:10:13.077124 3 0 1 0000107 \N \N f f \N \N 7 01010101 597 FAL-597 FLD-0008 FALDA BLUE S NEGRA Y ROJA DE PATOLES ST. S92139 242.25 649.00 \N \N \N \N f t \N 1 2019-07-15 22:29:19.087868 2019-07-15 23:46:04.228047 3 0 0 0000597 \N \N f f \N \N 11 01010101 592 VES-592 VST-0033 VESTIDO FLOREADO LARGO DE PATOLES LATISTE ST. LD50978H 551.00 1299.00 \N \N \N \N f t \N 1 2019-07-15 19:14:01.924979 2019-07-15 20:40:11.595897 3 0 0 0000592 \N \N f f \N \N 12 01010101 95 BLU-95 B-0040 MEZCLILLA CON COLA CQBYCQ 352.00 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862673 2019-02-04 09:10:13.198406 3 0 1 0000095 \N \N f f \N \N 7 01010101 114 BLU-114 B-0041 BLANCA Y ROSA DE UN TIRANTE NYLON 281.00 529.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862692 2019-02-04 09:10:13.223498 3 0 1 0000114 \N \N f f \N \N 7 01010101 109 BLU-109 B-0049 BLANCA CON PERLAS NYLON 250.00 659.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862687 2019-02-04 09:10:13.377608 3 0 1 0000109 \N \N f f \N \N 7 01010101 594 PAN-594 PNT-0009 PANTALON VALENTINE DE LICRA NEGRO ST. P10626 294.50 649.00 \N \N \N \N f t \N 1 2019-07-15 19:16:29.995187 2019-07-17 23:26:36.859958 3 0 0 0000594 \N \N f f \N PHOTO-2019-07-14-22-34-32.jpg 8 01010101 595 FAL-595 FLD-0009 FALDA M2 AMARILLA DE PATOLES ST. S2680 266.00 699.00 \N \N \N \N f t \N 1 2019-07-15 19:20:01.190194 2019-07-17 23:17:25.601184 3 0 0 0000595 \N \N f f \N PHOTO-2019-07-14-22-34-34.jpg 11 01010101 596 VES-596 VST-0034 VESTIDO OLGADO CON CINTO LATISTE ST. LD51371B 551.00 1299.00 \N \N \N \N f t \N 1 2019-07-15 19:52:56.683671 2019-07-17 23:25:48.464051 3 0 0 0000596 \N \N f f \N PHOTO-2019-07-14-22-34-33__1_.jpg 12 01010101 54 BOL-54 OKAN113 BOLSA CLOE 899.50 1799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862632 2020-07-02 17:43:28.529795 3 0 1 0000054 \N \N f f \N \N 6 01010101 102 BLU-973 B-0048 RAYAS ROSAS BLUE B 260.00 749.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86268 2020-01-29 18:49:32.694911 3 0 1 0000102 \N \N f f \N \N 7 01010101 591 VES-591 VST-0032 VESTIDO FLOREADO UNA MAGA VOILA ST. D1345 418.00 1199.00 \N \N \N \N f t \N 1 2019-07-15 19:13:11.267545 2019-07-17 23:19:44.337983 3 0 0 0000591 \N \N f f \N VEST.jpg 12 01010101 41 LEN-41 LENTES LENTES GUESS \N 1899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862619 2019-09-03 23:41:52.523748 3 0 1 0000041 \N \N f f \N \N 5 01010101 98 BLU-PRM-640 B-0054 A CUADROS M2 245.00 669.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862676 2019-07-31 00:56:53.364818 3 0 1 0000098 \N \N f f \N \N 20 01010101 599 BLU-599 BLS-0047 BLUSA BALBOA DE ENCAJE ROSA FUCSIA ST. BT-19073 209.00 519.00 \N \N \N \N f t \N 1 2019-07-15 22:31:24.664626 2020-02-19 18:06:54.3278 3 0 0 0000599 \N \N f f \N IMG_4483.jpg 7 01010101 126 BLU-PRM-640 BLU-0061 BLUSA CORTE CAMPESINA AZUL REY DAY G 170.00 479.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862704 2019-07-31 01:06:47.105815 3 0 1 0000126 \N \N f f \N \N 20 01010101 112 BLU-PRM-640 BLU-0059 BLANCA TRANSPARENTE MICHEL 111.75 399.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86269 2019-07-31 01:08:19.740857 3 0 1 0000112 \N \N f f \N \N 20 01010101 51 BOL-51 SIGR576 MOCHILA CLOE NEGRA 899.50 1799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862629 2019-12-23 21:43:11.329186 3 0 1 0000051 \N \N f f \N descarga__4_.jpg 6 01010101 96 BLU-PRM-640 B-0038 AZUL DE GAZA NYLON 330.00 649.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862674 2019-07-31 01:21:28.146264 3 0 1 0000096 \N \N f f \N \N 20 01010101 174 PAL-642 VES-0027 FLOREADO EVENT 170.00 869.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862752 2019-08-18 22:20:27.351281 3 0 1 0000174 \N \N f f \N \N 9 01010101 40 CAR-40 SUND277 CARTERA CLOE 399.50 799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862618 2019-09-04 01:39:29.900128 3 0 1 0000040 \N \N f f \N 32547648_1680602455322358_8136561812784021504_n.jpg 4 01010101 42 BOL-42 VAUR895 BOLSA CLOE 599.50 1199.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86262 2019-09-04 19:37:29.001616 3 0 1 0000042 \N \N f f \N vaur895.jpg 6 01010101 45 BOL-45 INDE164 BOLSA CLOE color Rosa 899.50 1799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862623 2019-09-04 19:53:45.330789 3 0 1 0000045 \N \N f f \N PHOTO-2019-09-04-13-48-43.jpg 6 01010101 46 BOL-46 INDE165 mochila Colo Azul y Rosa 899.50 1799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862624 2019-09-04 19:54:15.082086 3 0 1 0000046 \N \N f f \N PHOTO-2019-09-04-13-47-59.jpg 6 01010101 530 BOL-530 OHIP173 BOLSA CLOE CHICA 749.50 1499.00 \N \N \N \N f t \N 1 2019-03-28 23:02:31.647849 2019-09-04 20:03:06.005205 3 0 0 0000530 \N \N f f \N OPIH273.jpg 6 01010101 48 BOL-48 IROC175 BOLSA CLOE 899.50 1799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862626 2020-01-07 20:31:58.434982 3 0 1 0000048 \N \N f f \N WIN_20200107_13_26_30_Pro.jpg 6 01010101 47 BOL-47 MUIZ727 BOLSA CLOE 699.50 1399.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862625 2020-01-07 21:12:48.835129 3 0 1 0000047 \N \N f f \N WIN_20200107_14_08_48_Pro.jpg 6 01010101 111 BLU-973 B-0047 BLANCA CON OLANES B.C.B.C 270.00 629.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862689 2020-01-29 18:49:14.168932 3 0 1 0000111 \N \N f f \N \N 7 01010101 690 PAN-690 PNT-0013 PANTALON NEGRO VALENTINE STP9824 290.00 799.00 \N \N \N \N f t \N 1 2019-08-30 03:18:58.062342 2019-08-30 03:26:01.809776 3 0 0 0000690 \N \N f f \N \N 8 01010101 478 BLU-478 B-0065 BLUSA CON MANGA CAIDA ROJA Y DE FLORES 675.00 1350.00 \N \N \N \N f t \N 1 2019-02-13 23:35:40.756543 2019-02-13 23:36:15.054176 3 0 0 0000478 \N \N f f \N \N 7 01010101 737 VES-737 VE-0048 VESTIDO CQ TINTO Y NEGRO DE TERCIOPELO\r\n 379.00 949.00 \N \N \N \N f t \N 1 2019-10-07 20:21:21.886148 2019-12-21 21:28:44.712007 3 0 0 0000737 \N \N f f \N IMG_3964.jpg 12 01010101 693 PAN-693 PNT-0014 PANTALON VALENTINE Rosa Palo\r\n 310.00 789.00 \N \N \N \N f t \N 1 2019-08-30 03:34:54.759364 2020-06-26 18:54:44.304679 3 0 0 0000693 \N \N f f \N \N 8 01010101 532 BLU-532 BLX-0022 BLUSA NEGRA A.PEACH YT5844 299.50 599.00 \N \N \N \N f t \N 1 2019-04-08 22:48:24.071414 2019-04-08 22:48:24.109521 3 0 0 0000532 \N \N f f \N \N 7 01010101 602 PAN-602 PNT-0011 PANTALON MUYMUY ROSA CON RALLAS 223.25 569.00 \N \N \N \N f t \N 1 2019-07-15 22:34:22.530844 2019-07-15 22:34:22.568037 3 0 0 0000602 \N \N f f \N \N 8 01010101 531 BLU-531 BLX-0024 BLUSA DE FLORES A.PEACH YT5876 289.50 579.00 \N \N \N \N f t \N 1 2019-04-08 22:46:56.746548 2020-02-19 18:08:57.847747 3 0 0 0000531 \N \N f f \N IMG_4482.jpg 7 01010101 734 BLU-734 B-00844 BLUSA TIPO SUETER LATISTE GRIS\r\n 335.00 849.00 \N \N \N \N f t \N 1 2019-10-07 20:14:12.567655 2019-10-07 20:14:12.601391 3 0 0 0000734 \N \N f f \N \N 7 01010101 606 BLU-606 BLU-0071 BLUSA MUY MUY ROSA CON LENTEJUELA 166.00 449.00 \N \N \N \N f t \N 1 2019-07-16 00:28:34.425918 2019-07-16 00:28:34.486323 3 0 0 0000606 \N \N f f \N file2-5.jpeg 7 01010101 609 BLU-609 BLU-0072 BLUSA AZUL ROYAL DE ENCAJE VALENTINE 370.00 699.00 \N \N \N \N f t \N 1 2019-07-16 00:40:16.831299 2019-07-16 00:40:16.873421 3 0 0 0000609 \N \N f f \N file3-5HHH.jpeg 7 01010101 694 PAN-694 PNT-0015 PANTALON ROSA PALO VALENTINE P15026 310.00 799.00 \N \N \N \N f t \N 1 2019-08-30 03:37:28.310386 2020-06-26 18:55:36.265486 3 0 0 0000694 \N \N f f \N \N 8 01010101 608 CON-608 JUM-0010 CONJUNTO SAN JOY COLOR MOZTAZA 408.50 999.00 \N \N \N \N f t \N 1 2019-07-16 00:33:45.303873 2019-07-16 00:53:33.879513 3 0 0 0000608 \N \N f f \N \N 10 01010101 607 PAL-607 PAL-0001 PALAZZO DE MEZCLILLA LATISTE CON PERLAS 680.00 1549.00 \N \N \N \N f t \N 1 2019-07-16 00:31:23.286155 2019-07-16 00:55:58.631842 3 0 0 0000607 \N \N f f \N file4-5.jpeg 9 01010101 605 VES-605 V-0077 VESTIDO CON ENCAJE ROSA VALENTINE 350.00 999.00 \N \N \N \N f t \N 1 2019-07-16 00:25:33.786509 2019-07-16 01:01:06.648974 3 0 0 0000605 \N \N f f \N file6-4.jpeg 12 01010101 611 PAN-611 PAN-0017 PANTALON NEGRO PLIZADO M2 161.00 699.00 \N \N \N \N f t \N 1 2019-07-16 00:47:09.993367 2019-07-16 01:15:01.460593 3 0 0 0000611 \N \N f f \N \N 8 01010101 601 PAN-601 PNT-0010 PANTALON SANJOY DE MEZCLILLA CAMPANA ST. S3033 266.00 669.00 \N \N \N \N f t \N 1 2019-07-15 22:33:26.922711 2019-07-17 23:22:55.796814 3 0 0 0000601 \N \N f f \N PHOTO-2019-07-14-22-34-31.jpg 8 01010101 603 JUM-603 JUM-0006 JUMPER NEGRO DE ENCAJE VALENTINE ST. JP9989 465.50 1199.00 \N \N \N \N f t \N 1 2019-07-15 22:36:18.3194 2019-07-17 23:28:14.412738 3 0 0 0000603 \N \N f f \N PHOTO-2019-07-15-22-47-13.jpg 1 01010101 735 BLU-735 B-0102 BLUSA VOILA BLANCA MANGA CON OLANES\r\n 305.00 769.00 \N \N \N \N f t \N 1 2019-10-07 20:15:58.548821 2019-10-07 20:15:58.598098 3 0 0 0000735 \N \N f f \N \N 7 01010101 736 BLU-736 BLU-0041 BLUSA GLOW PASSION VERDE CON FLORES\r\n 171.00 429.00 \N \N \N \N f t \N 1 2019-10-07 20:17:54.298168 2019-10-07 20:17:54.329746 3 0 0 0000736 \N \N f f \N \N 7 01010101 697 PAN-697 PNT-0016 PANTALON VALENTINE SST 8079 NEGRO Y MAUVE\r\n 280.00 799.00 \N \N \N \N f t \N 1 2019-08-30 03:45:34.893672 2019-08-30 03:45:34.926502 3 0 0 0000697 \N \N f f \N \N 8 01010101 691 PAL-691 PLZ-0012 PALAZO VALENTINE NEGRO JP15082 490.00 1299.00 \N \N \N \N f t \N 1 2019-08-30 03:28:02.251451 2019-08-31 05:09:31.437516 3 0 0 0000691 \N \N f f \N PHOTO-2019-08-12-23-19-47_2546_.jpg 9 01010101 700 VES-700 VST-0048 LATISTE NEEGRO\r\n 540.00 1345.00 \N \N \N \N f t \N 1 2019-08-30 04:39:49.285397 2019-08-30 04:39:49.323721 3 0 0 0000700 \N \N f f \N PHOTO-2019-08-29-20-59-01_2467_.jpg 12 01010101 701 VES-701 VST-0049 LATISTE COLORES LARGO 650.00 1549.00 \N \N \N \N f t \N 1 2019-08-30 04:41:07.437794 2019-08-30 04:41:07.485627 3 0 0 0000701 \N \N f f \N PHOTO-2019-08-29-20-59-01_2469_.jpg 12 01010101 604 JUM-604 JUM-0007 JUMPER BLUE B FLOREADO ST. R6141 294.50 749.00 \N \N \N \N f t \N 1 2019-07-15 22:38:29.558205 2020-01-29 21:10:00.660895 3 0 0 0000604 \N \N f f \N 4601577b-b768-4d53-a8b1-660903a1ed25.JPG 1 01010101 699 VES-699 VST-0039 LATISTE COLORES CORTO\r\n 560.00 1399.00 \N \N \N \N f t \N 1 2019-08-30 04:36:30.050945 2019-08-30 04:45:59.911472 3 0 0 0000699 \N \N f f \N PHOTO-2019-08-29-20-59-02_2471_.jpg 12 01010101 692 PAL-692 PLZ-0013 PALAZO VALENTINE VERDE ST-15033 490.00 1299.00 \N \N \N \N f t \N 1 2019-08-30 03:30:54.764622 2019-08-31 05:12:18.734956 3 0 0 0000692 \N \N f f \N PHOTO-2019-08-12-23-19-48_2548_.jpg 9 01010101 695 PAL-695 PLZ-0014 PALAZZO VALENTINE ST 10373 COLOR MAUVE\r\n 490.00 1299.00 \N \N \N \N f t \N 1 2019-08-30 03:41:20.801413 2019-08-31 05:14:19.638683 3 0 0 0000695 \N \N f f \N PHOTO-2019-08-12-23-19-49_2552_.jpg 9 01010101 696 BLU-696 BLS-0068 PANTIBLUSA VALENTINE ST 10423\r\n 270.00 625.00 \N \N \N \N f t \N 1 2019-08-30 03:43:13.182069 2019-08-31 05:15:26.593599 3 0 0 0000696 \N \N f f \N PHOTO-2019-08-13-11-16-31_2542_.jpg 7 01010101 698 BLU-698 BLS-0069 BLUSA BLANCA VALENTINE ST10358\r\n 330.00 799.00 \N \N \N \N f t \N 1 2019-08-30 03:47:48.601059 2019-08-31 05:16:00.242235 3 0 0 0000698 \N \N f f \N PHOTO-2019-08-13-11-32-16_2560_.jpg 7 01010101 610 BLU-610 BLU-0073 PANTIBLUSA COLOR NEGRO DE ENCAJE VALENTAINE 310.00 649.00 \N \N \N \N f t \N 1 2019-07-16 00:42:32.141936 2019-09-04 21:05:32.307238 3 0 1 0000610 \N \N f f \N PHOTO-2019-09-04-14-44-29.jpg 7 01010101 702 JUM-702 JMP-0003 LATISTE FLORES \r\n 790.00 1599.00 \N \N \N \N f t \N 1 2019-08-30 04:45:03.347803 2019-09-05 03:26:52.203146 3 0 0 0000702 \N \N f f \N PHOTO-2019-08-29-23-13-00_2495_.jpg 1 01010101 732 BLU-732 BL-0027 PANTIBLUSA LETTE NEGRA DE TERCIOPELO\r\n 200.00 499.00 \N \N \N \N f t \N 1 2019-10-07 20:09:43.598114 2019-10-07 20:09:43.637047 3 0 0 0000732 \N \N f f \N \N 7 01010101 733 BLU-733 S-0012 SUETER BALBOA VERDE CON PERLAS\r\n 235.00 589.00 \N \N \N \N f t \N 1 2019-10-07 20:12:11.633163 2019-10-07 20:12:11.666046 3 0 0 0000733 \N \N f f \N \N 7 01010101 738 VES-738 VES-0033 VESTIDO OLIVE TREE NEGRO CON FLORES DE TERCIOPELO\r\n 337.00 849.00 \N \N \N \N f t \N 1 2019-10-07 20:24:07.362865 2019-10-07 20:24:07.399247 3 0 0 0000738 \N \N f f \N \N 12 01010101 739 VES-739 VES-0045 VESTIDO SANJOY ROJO CON OLAN EN MAGA\r\n 359.00 899.00 \N \N \N \N f t \N 1 2019-10-07 20:26:09.193678 2019-10-07 20:26:09.241308 3 0 0 0000739 \N \N f f \N \N 12 01010101 740 VES-740 VES-0009 VESTIDO OLIVE TREE TINTO DE ENCAJE\r\n 347.00 869.00 \N \N \N \N f t \N 1 2019-10-07 20:27:58.469761 2019-10-07 20:27:58.506858 3 0 0 0000740 \N \N f f \N \N 12 01010101 741 VES-741 VES-0041 VESTIDO GLARE DE TIRANTE TINTO Y TERCIOPELO\r\n 319.00 799.00 \N \N \N \N f t \N 1 2019-10-07 20:30:03.942695 2019-10-07 20:30:03.973502 3 0 0 0000741 \N \N f f \N \N 12 01010101 742 VES-742 BL-0038 VESTIDO JEALOUS TOMATO DE TIRANTE TINTO CON LENTEJUELA \r\n 359.00 899.00 \N \N \N \N f t \N 1 2019-10-07 20:32:14.850293 2019-10-07 20:32:14.892803 3 0 0 0000742 \N \N f f \N \N 12 01010101 743 VES-743 V-0068 VESTIDO LATISTE DE UNA MANGA DE LENTEJUELA\r\n 379.00 949.00 \N \N \N \N f t \N 1 2019-10-07 20:34:51.939668 2019-10-07 20:34:51.974356 3 0 0 0000743 \N \N f f \N \N 12 01010101 744 VES-744 VE-0055 VESTIDO BLUE S ROSA DE LENTEJUELA\r\n 480.00 1199.00 \N \N \N \N f t \N 1 2019-10-07 20:37:05.420746 2019-10-07 20:37:05.458268 3 0 0 0000744 \N \N f f \N \N 12 01010101 745 VES-745 VE-0056 VESTIDO CQ ROSA DE PANA\r\n 320.00 999.00 \N \N \N \N f t \N 1 2019-10-07 20:38:02.923401 2019-10-07 20:38:02.956414 3 0 0 0000745 \N \N f f \N \N 12 01010101 480 BOL-480 BIXA572 BOLSO CLOE negra 799.50 1599.00 \N \N \N \N f t \N 1 2019-02-13 23:46:26.880789 2019-10-15 17:58:06.019953 3 0 0 0000480 \N \N f f \N bixa572.jpg 6 01010101 97 BLU-97 B-0060 PANTI ROJA M2 280.00 829.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862675 2019-02-04 09:10:13.588747 3 0 1 0000097 \N \N f f \N \N 7 01010101 122 BLU-122 B-0082 TRANPARENTE CON BORDADO TINTO CQBYCQ 300.00 779.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.8627 2019-02-04 09:10:13.827087 3 0 1 0000122 \N \N f f \N \N 7 01010101 101 BLU-101 B-0084 TINTA LARGA CQBYCQ 297.00 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862679 2019-02-04 09:10:13.87611 3 0 1 0000101 \N \N f f \N \N 7 01010101 137 BLU-137 BLS-0004 BLUSA MOSTAZA CON COLITA MUY MUY 209.30 599.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862715 2019-02-04 09:10:14.863891 3 0 1 0000137 \N \N f f \N \N 7 01010101 138 BLU-138 BLS-0005 BLUSA VOILA FLORES AMARILLAS CON MANGA 327.60 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862716 2019-02-04 09:10:14.890612 3 0 1 0000138 \N \N f f \N \N 7 01010101 139 BLU-139 BLS-0006 BLUSA VOILA FLORES CON CINTO 345.80 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862717 2019-02-04 09:10:14.917032 3 0 1 0000139 \N \N f f \N \N 7 01010101 140 BLU-140 BLS-0007 BLUSA DECO CON MOÑO 245.70 649.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862718 2019-02-04 09:10:14.941974 3 0 1 0000140 \N \N f f \N \N 7 01010101 142 BLU-142 BLS-0009 BLUSA JEALOUS RAYAS DIBUJO LENTEJUELA 284.20 685.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86272 2019-02-04 09:10:14.991039 3 0 1 0000142 \N \N f f \N \N 7 01010101 143 BLU-143 BLS-0010 BLUSA CON OLAN MANGA NEGRA Y MOSTAZA 227.50 599.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862721 2019-02-04 09:10:15.031922 3 0 1 0000143 \N \N f f \N \N 7 01010101 145 BLU-145 BLS-0012 BLUSA CON COLA ROSA CHIC 286.65 799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862723 2019-02-04 09:10:15.085859 3 0 1 0000145 \N \N f f \N \N 7 01010101 147 BLU-147 BLS-0014 PLAYERA GRIS FLOWER POWER 154.08 469.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862725 2019-02-04 09:10:15.140765 3 0 1 0000147 \N \N f f \N \N 7 01010101 148 BLU-148 BLS-0015 PLAYERA CON BESO NEGRA 154.08 469.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862726 2019-02-04 09:10:15.181174 3 0 1 0000148 \N \N f f \N \N 7 01010101 151 BLU-151 BLS-0018 BLUSA RAYAS COLORES LC 154.70 479.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862729 2019-02-04 09:10:15.254863 3 0 1 0000151 \N \N f f \N \N 7 01010101 152 BLU-152 BLS-0019 BLUSA COLITA ROSA CON VERDE AGUA 254.80 669.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86273 2019-02-04 09:10:15.281286 3 0 1 0000152 \N \N f f \N \N 7 01010101 153 BLU-153 BLS-0020 BLUSA CHIC CON OLAN LILA MANGAS 172.90 499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862731 2019-02-04 09:10:15.306014 3 0 1 0000153 \N \N f f \N \N 7 01010101 154 BLU-154 BLS-0021 BLUSA GARABATOS ORANGE 141.05 489.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862732 2019-02-04 09:10:15.355558 3 0 1 0000154 \N \N f f \N \N 7 01010101 155 BLU-155 BLS-0022 BLUSA CORTA DE ENCAJE NEGRA 250.25 599.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862733 2019-02-04 09:10:15.381081 3 0 1 0000155 \N \N f f \N \N 7 01010101 156 BLU-156 BLS-0023 KIMONO BLANCO 232.05 579.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862734 2019-02-04 09:10:15.405531 3 0 1 0000156 \N \N f f \N \N 7 01010101 157 BLU-157 BLS-0024 KIMONO NEGRO CON PERLAS 327.60 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862735 2019-02-04 09:10:15.43118 3 0 1 0000157 \N \N f f \N \N 7 01010101 158 BLU-158 BLS-0025 KIMONO PALMAS 282.10 699.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862736 2019-02-04 09:10:15.457591 3 0 1 0000158 \N \N f f \N \N 7 01010101 159 BLU-159 BLS-0026 BLUSA CON MANGAS NEON 273.00 549.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862737 2019-02-04 09:10:15.481432 3 0 1 0000159 \N \N f f \N \N 7 01010101 130 BLU-130 BLU-0052 GRIS CON DESTELLO DORADO DAY G 150.00 449.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862708 2019-02-04 09:10:15.888 3 0 1 0000130 \N \N f f \N \N 7 01010101 131 BLU-131 BLU-0052 TINTA FLOREADA TRANSPARENTE DAY G 110.00 449.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862709 2019-02-04 09:10:15.905138 3 0 1 0000131 \N \N f f \N \N 7 01010101 127 BLU-127 BLU-0069 BLUSA DE GAZA AZUL MICHEL 110.00 399.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862705 2019-02-04 09:10:16.010543 3 0 1 0000127 \N \N f f \N \N 7 01010101 167 PAN-167 PAN-0008 OVEROL VERDE LIMON VALENTINE 346.50 999.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862745 2019-02-04 09:10:18.915291 3 0 1 0000167 \N \N f f \N \N 8 01010101 162 PAN-162 PAN-0011 CAMPANA AMARILLO LIMON VALENTINE 280.50 949.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86274 2019-02-04 09:10:18.93812 3 0 1 0000162 \N \N f f \N \N 8 01010101 160 PAN-160 PAN-0013 MEZCLILLA NEGRO VALENTINE 336.60 949.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862738 2019-02-04 09:10:18.963067 3 0 1 0000160 \N \N f f \N \N 8 01010101 163 PAN-163 PAN-0014 NEGRO A LA CINTURA, TUBO AGACI 250.00 980.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862741 2019-02-04 09:10:18.983803 3 0 1 0000163 \N \N f f \N \N 8 01010101 166 PAN-166 PAN-0016 OVEROL BLANCO BALBOA 300.00 799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862744 2019-02-04 09:10:19.008839 3 0 1 0000166 \N \N f f \N \N 8 01010101 183 CON-183 PLZ-0002 CONJUNTO BLUSH APEACH ROSA 418.60 1049.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862761 2019-02-04 09:10:19.229903 3 0 1 0000183 \N \N f f \N \N 10 01010101 184 CON-184 PLZ-0003 PANTALON PALAZZO JEALOUS 341.25 869.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862762 2019-02-04 09:10:19.255043 3 0 1 0000184 \N \N f f \N \N 10 01010101 178 PAN-178 PNT-0002 PANTALON NEGRO CON MOÑO EVENT 159.25 599.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862756 2019-02-04 09:10:19.328386 3 0 1 0000178 \N \N f f \N \N 8 01010101 179 PAN-179 PNT-0003 PANTALON RAYAS MOSTAZA EVENT 213.85 699.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862757 2019-02-04 09:10:19.375313 3 0 1 0000179 \N \N f f \N \N 8 01010101 180 PAN-180 PNT-0004 PANTALON RAYASA JEALOUS 340.00 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862758 2019-02-04 09:10:19.399854 3 0 1 0000180 \N \N f f \N \N 8 01010101 181 PAN-181 PNT-0005 PANTALON LABANGA RAYAS BLANCO CON NEGRO 221.49 699.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862759 2019-02-04 09:10:19.423109 3 0 1 0000181 \N \N f f \N \N 8 01010101 164 PAN-164 V-0001 MOSTAZA EVENT 257.12 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862742 2019-02-04 09:10:20.593547 3 0 1 0000164 \N \N f f \N \N 8 01010101 176 PAN-176 V-0043 PALAZZO NARANJA TYCHE 355.30 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862754 2019-02-04 09:10:21.25361 3 0 1 0000176 \N \N f f \N \N 8 01010101 182 PAL-182 PLZ-0001 PALAZZO ROJO CON MOÑO 445.90 1299.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86276 2019-05-21 00:00:26.827669 3 0 1 0000182 \N \N f f \N IMG_0850.jpg 9 01010101 169 VES-642 V-0012 GRIS TYCHE 330.00 999.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862747 2019-08-18 22:19:16.737291 3 0 1 0000169 \N \N f f \N \N 12 01010101 168 PAL-642 V-0013 ROJO TYCHE 330.00 999.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862746 2019-08-18 22:19:43.407002 3 0 1 0000168 \N \N f f \N \N 9 01010101 128 BLU-909 BLU-0044 VERDE PISTACHE VIZIO 130.00 469.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862706 2019-11-03 19:09:30.86229 3 0 1 0000128 \N \N f f \N \N 7 01010101 121 BLU-PRM-640 B-0055 CAMISA CON FLOR 330.00 499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862699 2019-07-31 01:04:08.228505 3 0 1 0000121 \N \N f f \N \N 20 01010101 146 BLU-146 BLS-0013 PLAYERA MOSTAZA HOMBRO DESCUBIERTO 154.08 469.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862724 2020-02-19 18:25:29.302758 3 0 1 0000146 \N \N f f \N IMG_4488.jpg 7 01010101 132 BLU-PRM-640 BLU-0016 TOP DE ENCAJE NEGRO AUDITIONS 99.00 369.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86271 2019-07-31 01:11:57.929215 3 0 1 0000132 \N \N f f \N \N 20 01010101 175 VES-642 V-0009 ROSA CON FLORES JACARANDA 160.00 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862753 2019-08-18 22:18:24.304801 3 0 1 0000175 \N \N f f \N \N 12 01010101 141 BLU-141 BLS-0008 BLUSA 3/4 RAYAS ROJA CON BLANCO CORAZON 227.50 569.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862719 2020-02-19 18:35:30.131563 3 0 1 0000141 \N \N f f \N IMG_4501.jpg 7 01010101 149 BLU-149 BLS-0016 PLAYERA RAYAS GUCCI 154.08 469.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862727 2020-02-19 18:41:31.522754 3 0 1 0000149 \N \N f f \N IMG_4481.jpg 7 01010101 144 BLU-144 BLS-0011 BLUSA MC CON COLA BLANCA FLORES 297.60 799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862722 2020-02-19 18:46:00.557699 3 0 1 0000144 \N \N f f \N IMG_4502.jpg 7 01010101 481 BLU-481 b-0000 blusa negra con cola CQBYCQ 269.70 539.40 \N \N \N \N f t \N 1 2019-02-16 00:11:25.073459 2019-02-16 00:11:25.165975 3 0 0 0000481 \N \N f f \N \N 7 01010101 482 BLU-482 B-0083 BLUSA NEGRA CON COLA CQBYCQ 449.50 899.00 \N \N \N \N f t \N 1 2019-02-16 00:14:47.503922 2019-02-16 00:14:47.565851 3 0 0 0000482 \N \N f f \N \N 7 01010101 533 ZAP-533 DIXI665 TENNIS CLOE 749.50 1499.00 \N \N \N \N f t \N 1 2019-04-16 00:41:54.43115 2019-04-16 00:41:54.497863 3 0 0 0000533 \N \N f f \N \N 13 01010101 612 BOL-612 ELIF098 MOCHILA CLOE COLOR NEGRO 749.50 1499.00 \N \N \N \N f t \N 1 2019-07-17 23:00:12.24345 2019-07-17 23:00:12.289484 3 0 0 0000612 \N \N f f \N ELIF.jpg 6 01010101 615 CAR-615 MAYU979 CARTERA COLOR PLATA 449.50 899.00 \N \N \N \N f t \N 1 2019-07-17 23:06:25.823742 2019-07-17 23:08:58.426421 3 0 0 7509170727081 \N \N f f \N CARTERA_MAYU.jpg 4 01010101 614 BOL-614 BLCO1900 MOCHILA CLOE NEGRA CON LLAVERO VERDE 849.50 1699.00 \N \N \N \N f t \N 1 2019-07-17 23:05:19.214809 2019-07-17 23:12:27.491401 3 0 0 7509170751048 \N \N f f \N IMG_1414.jpg 6 01010101 600 BLU-600 BLS-0048 PLAYERA MUYMUY DE MICKEY ST. A0753 161.50 549.00 \N \N \N \N f t \N 1 2019-07-15 22:32:19.283587 2019-07-17 23:20:27.204637 3 0 0 0000600 \N \N f f \N BLS_MICKEY.jpg 7 01010101 613 BOL-613 OZAI891 MOCHILA CLOE NEGRA CON MASCADA AZUL Y ROJO 899.50 1799.00 \N \N \N \N f t \N 1 2019-07-17 23:02:37.908189 2019-08-19 00:58:44.391274 3 0 0 7509170723434 \N \N f f \N OZAI.jpg 6 01010101 893 CHA-893 CHA-0011 BALBOA NEGRO, GRIS Y BEIGE\r\n 260.00 699.00 \N \N \N \N f t \N 1 2019-10-30 01:44:14.697182 2020-01-22 20:46:11.885817 3 0 0 0000893 \N \N f f \N IMG_4282.jpg 24 01010101 704 COL-704 CO-001 COLLARES MARGENTA 174.50 349.00 \N \N \N \N f t \N 1 2019-09-01 03:22:58.784568 2019-09-01 03:22:58.827364 3 0 0 0000704 \N \N f f \N \N 17 01010101 746 VES-746 VES-0036 VESTIDO OLIVE TREE ROSA DE TERCIOPELO\r\n 290.00 849.00 \N \N \N \N f t \N 1 2019-10-07 20:41:44.747498 2019-10-07 20:41:44.780869 3 0 0 0000746 \N \N f f \N \N 12 01010101 747 VES-747 VE-0041 VESTIDO BLUE S DORADO\r\n 290.00 849.00 \N \N \N \N f t \N 1 2019-10-07 20:42:44.81888 2019-10-07 20:42:44.850305 3 0 0 0000747 \N \N f f \N \N 12 01010101 748 VES-748 V-0074 VESTIDO EVENT VERDE MANGA LARGA\r\n 359.00 899.00 \N \N \N \N f t \N 1 2019-10-07 20:43:39.198021 2019-10-07 20:43:39.237014 3 0 0 0000748 \N \N f f \N \N 12 01010101 808 VES-808 VE-0052 VESTIDO LATISTE NEGRO CON LENTEJUELA VERDE 849.50 1699.00 \N \N \N \N f t \N 1 2019-10-16 19:58:41.277738 2019-10-16 19:58:41.321797 3 0 0 0000808 \N \N f f \N \N 12 01010101 940 ACC-940 DIA-0040 DIADEMA NEGRA CON PIEDRAS DE COLORES 149.54 389.00 \N \N \N \N f t \N 1 2019-11-13 19:11:56.56815 2019-11-13 19:11:56.607926 3 0 0 0000940 \N \N f f \N DIA-0040.jpg 17 01010101 705 COL-705 ARE-0001 ARETES VARIOS 124.50 249.00 \N \N \N \N f t \N 1 2019-09-01 03:24:26.279427 2020-08-15 23:25:56.849901 3 0 0 0000705 \N \N f f \N \N 17 01010101 898 CHA-898 CHA-0016 LA COLATION NEGRO ST-DCJ3027\r\n 570.00 1469.00 \N \N \N \N f t \N 1 2019-10-30 01:51:42.340192 2019-11-05 20:10:25.687184 3 0 0 0000898 \N \N f f \N PHOTO-2019-11-04-14-14-09__3_.jpg 24 01010101 941 ACC-941 DIA-0041 DIADEMA CON PIEDRAS DE COLORES 104.38 259.00 \N \N \N \N f t \N 1 2019-11-13 19:14:20.274997 2019-11-13 19:14:20.313746 3 0 0 0000941 \N \N f f \N DIA-0041.jpg 17 01010101 891 CHA-891 CHA-0009 Suéter BALBOA mostaza y blanco corazones\r\n 300.00 749.00 \N \N \N \N f t \N 1 2019-10-30 01:40:25.234318 2019-10-30 01:40:25.273838 3 0 0 0000891 \N \N f f \N \N 24 01010101 903 CHA-903 CHA-0021 SACO JELOUSE TOMATO NEGRO CON BLANCO\r\n 440.00 1099.00 \N \N \N \N f t \N 1 2019-10-30 02:34:17.684908 2020-01-22 21:06:17.462008 3 0 0 0000903 \N \N f f \N IMG_4127.JPG 24 01010101 890 CHA-890 CHA-0006 Suéter Balboa negro \r\n 240.00 629.00 \N \N \N \N f t \N 1 2019-10-30 01:39:33.875143 2019-11-05 20:15:06.967268 3 0 0 0000890 \N \N f f \N PHOTO-2019-11-04-14-14-10.jpg 24 01010101 902 CHA-902 CHA-0020 ABRIGO JELOUSE TOMATO DE COLORES ST-JJ2322\r\n 660.00 1769.00 \N \N \N \N f t \N 1 2019-10-30 01:55:37.918596 2019-11-05 20:23:25.202402 3 0 0 0000902 \N \N f f \N PHOTO-2019-10-15-21-54-35.jpg 24 01010101 886 CHA-886 CHA-0002 Sueter lentejuelas JELOUSE TOMATO ST-ASW1115 \r\n 395.00 989.00 \N \N \N \N f t \N 1 2019-10-30 01:30:38.001584 2019-11-05 20:24:11.733388 3 0 0 0000886 \N \N f f \N PHOTO-2019-10-15-21-54-24__1_.jpg 24 01010101 888 CHA-888 CHA-0004 Saco rosa JELOUSE TOMATO ST-JJ2323 \r\n 475.00 1199.00 \N \N \N \N f t \N 1 2019-10-30 01:35:23.805199 2019-11-05 20:24:52.155892 3 0 0 0000888 \N \N f f \N PHOTO-2019-10-15-21-54-32__4_.jpg 24 01010101 942 ACC-942 DIA-0042 Diamante de cristal de moda diamante flor diadema retro señoras super flash diadema lateral ancha 92.13 189.00 \N \N \N \N f t \N 1 2019-11-13 19:15:33.897809 2019-11-13 19:15:33.939889 3 0 0 0000942 \N \N f f \N DIA-0042.jpg 17 01010101 892 CHA-892 CHA-0010 Suéter Balboa rosa \r\n 310.00 779.00 \N \N \N \N f t \N 1 2019-10-30 01:43:22.339627 2019-11-05 20:26:49.076445 3 0 0 0000892 \N \N f f \N PHOTO-2019-10-26-23-29-38.jpg 24 01010101 904 CHA-904 CHA-0022 SUETER DE COLORES LELIS ST-4883\r\n 320.00 789.00 \N \N \N \N f t \N 1 2019-10-30 02:35:09.520272 2019-11-05 20:28:16.412259 3 0 0 0000904 \N \N f f \N PHOTO-2019-10-15-21-54-32__3_.jpg 24 01010101 943 ACC-943 DIA-0043 Diadema de cristal señoras taladro de cristal rhinestone super flash queen corona diadema 145.00 389.00 \N \N \N \N f t \N 1 2019-11-13 19:17:33.830396 2019-11-13 19:17:33.878071 3 0 0 0000943 \N \N f f \N DIA-0043.jpg 17 01010101 887 CHA-887 CHA-0003 Sacos Capa JELOUSE TOMATO ST-JT2311 COLOR IVORY Y NEGRO \r\n 395.00 1099.00 \N \N \N \N f t \N 1 2019-10-30 01:31:24.413491 2020-01-22 21:07:10.848441 3 0 0 0000887 \N \N f f \N IMG_4123.JPG 24 01010101 895 CHA-895 CHA-0013 LA COLATION NEGRO Y BLUSH ST-DCJ107B\r\n 646.00 1629.00 \N \N \N \N f t \N 1 2019-10-30 01:48:58.417653 2019-11-05 20:00:22.768507 3 0 0 0000895 \N \N f f \N PHOTO-2019-11-04-14-14-12.jpg 24 01010101 901 CHA-901 CHA-0019 M2 CHAMARRA DEMIN ST-1401\r\n 550.00 1359.00 \N \N \N \N f t \N 1 2019-10-30 01:54:26.812042 2019-11-05 20:00:54.959481 3 0 0 0000901 \N \N f f \N PHOTO-2019-11-04-14-14-13__1_.jpg 24 01010101 900 CHA-900 CHA-0018 M2 CHAMARRA PINK ST-1410\r\n 430.00 1099.00 \N \N \N \N f t \N 1 2019-10-30 01:53:28.562074 2019-11-05 20:01:31.120714 3 0 0 0000900 \N \N f f \N PHOTO-2019-11-04-14-14-13.jpg 24 01010101 899 CHA-899 CHA-0017 LA COLATION NEGRO ST-DFJ3023\r\n 649.00 1629.00 \N \N \N \N f t \N 1 2019-10-30 01:52:41.775952 2019-11-05 20:02:04.665282 3 0 0 0000899 \N \N f f \N PHOTO-2019-11-04-14-14-11.jpg 24 01010101 897 CHA-897 CHA-0015 LA COLATION ROSA Y GUNMETAL\r\n 665.00 1669.00 \N \N \N \N f t \N 1 2019-10-30 01:50:53.587581 2019-11-05 20:03:05.868683 3 0 0 0000897 \N \N f f \N PHOTO-2019-11-04-14-14-11__1_.jpg 24 01010101 896 CHA-896 CHA-0014 LA COLATION DORADO Y ROSA ST-dcj3009\r\n 665.00 1669.00 \N \N \N \N f t \N 1 2019-10-30 01:50:03.497625 2019-11-05 20:04:09.083425 3 0 0 0000896 \N \N f f \N PHOTO-2019-11-04-14-14-10__2_.jpg 24 01010101 889 CHA-889 CHA-0005 Suéter Balboa amarillo y blanco \r\n 300.00 789.00 \N \N \N \N f t \N 1 2019-10-30 01:36:17.952478 2019-11-05 20:05:43.056542 3 0 0 0000889 \N \N f f \N PHOTO-2019-11-04-14-14-09__1_.jpg 24 01010101 894 CHA-894 CHA-0012 LA COLATION NEGRO ST-DCJ101B\r\n 608.00 1549.00 \N \N \N \N f t \N 1 2019-10-30 01:47:46.253695 2019-11-05 20:06:55.859449 3 0 0 0000894 \N \N f f \N PHOTO-2019-11-04-14-14-08__2_.jpg 24 01010101 703 BOL-703 EIRO487 MOCHILA NEGRA 799.50 1599.00 \N \N \N \N f t \N 1 2019-09-01 03:07:33.037728 2020-01-07 20:36:26.513306 3 0 0 0000703 \N \N f f \N ERIO487_OORO_1_300x435.jpg 6 01010101 960 PAN-960 PNT-0023 PANTALON NEGRO CON BRILLOS NEGROS MUYMUY ST-1480\r\n 350.00 999.00 \N \N \N \N f t \N 1 2019-11-26 22:43:47.731396 2019-11-26 22:43:47.780075 3 0 0 0000960 \N \N f f \N \N 8 01010101 954 FAL-954 FLD-0021 FALDA PATOLES DE PIEL BLUE S \r\nST-S92291 NEGRA, TINTA, CAMEL, OLIVO\r\n 480.00 1199.00 \N \N \N \N f t \N 1 2019-11-26 22:30:54.602715 2019-12-21 21:10:32.488015 3 0 0 0000954 \N \N f f \N IMG_3746.JPG 11 01010101 958 SHO-958 SHO-0024 SHORT FALDA NEGRA DE PIEL CON REMACHES MUYMUY ST-1476\r\n 300.00 749.00 \N \N \N \N f t \N 1 2019-11-26 22:39:03.464899 2019-12-21 21:13:32.476771 3 0 0 0000958 \N \N f f \N IMG_3691.JPG 2 01010101 483 CON-483 PANX-0005 CONJUNTO PANTALON APEACH FLORES CAFES 400.00 969.00 \N \N \N \N f t \N 1 2019-02-19 17:47:42.523811 2019-02-19 17:47:42.589309 3 0 0 0000483 \N \N f f \N \N 10 01010101 537 BLU-537 B-0018 FLOREADA MICHEL 249.50 499.00 \N \N \N \N f t \N 1 2019-04-16 17:47:10.933428 2020-02-19 18:37:04.698302 3 0 0 0000537 \N \N f f \N IMG_4499.jpg 7 01010101 535 BLU-535 B-0051 BLANCA FLOREADA MC 349.50 699.00 \N \N \N \N f t \N 1 2019-04-16 17:41:46.435869 2019-04-16 17:41:46.500291 3 0 0 0000535 \N \N f f \N \N 7 01010101 975 CON-975 CON-0001 CONJUNTO MUY MUY ROSA CON MOÑO 237.90 999.00 \N \N \N \N f t \N 1 2020-02-18 20:46:05.049705 2020-04-29 01:00:52.913662 3 0 0 0000975 \N \N f f \N PHOTO-2020-04-28-14-28-52_-_copia.jpg 10 01010101 617 PUL-617 LLA-0001 LLAVERO BOLTA DE COORES \N 149.00 \N \N \N \N f t \N 0 2019-07-21 19:59:14.675591 2019-07-22 23:35:33.084074 3 0 0 0000617 \N \N f f \N \N 16 01010101 945 CHA-945 CHA-0023 GABARDINA CQBYCQ \r\n 920.00 2299.00 \N \N \N \N f t \N 1 2019-11-18 23:57:48.290263 2019-11-20 20:32:55.62614 3 0 0 0000945 \N \N f f \N PHOTO-2019-11-18-17-13-24__1_.jpg 24 01010101 944 VES-944 VST-0065 VESTIDO LATISTE DORADO CON NEGRO\r\n 820.00 1989.00 \N \N \N \N f t \N 1 2019-11-18 23:50:00.622458 2019-11-21 18:10:07.776891 3 0 0 0000944 \N \N f f \N PHOTO-2019-11-04-14-14-08__1_.jpg 12 01010101 961 PAN-961 PNT-0024 PANTALON NEGRO CON BRILLOS PLATEADOS MUYMUY ST-1470\r\n 520.00 1299.00 \N \N \N \N f t \N 1 2019-11-26 22:44:32.225723 2019-11-26 22:44:32.294457 3 0 0 0000961 \N \N f f \N \N 8 01010101 616 PUL-616 LLA-0001 LLAVERO BOLITA COLERES 74.50 149.00 \N \N \N \N f t \N 1 2019-07-21 19:41:58.96152 2019-07-22 23:37:23.686145 3 0 0 0000616 \N \N f f \N \N 16 01010101 536 BLU-PRM-640 B-0068 ROSA DE UNA MANGA MUY MUY 304.50 609.00 \N \N \N \N f t \N 1 2019-04-16 17:43:09.359058 2019-07-31 00:37:36.339427 3 0 0 0000536 \N \N f f \N \N 20 01010101 706 BOL-706 BOUN140MULTME estampado del logo Cloe tiene todo lo que necesitas para armar tu juego perfecto 799.50 1599.00 \N \N \N \N f t \N 1 2019-09-03 19:02:09.541539 2019-09-03 19:02:09.60702 3 0 0 0000706 \N \N f f \N BOUN140_MULT.jpg 6 01010101 749 VES-749 VST-0052 LABANGA VESTIDO PLATEADO 200.00 699.00 \N \N \N \N f t \N 1 2019-10-08 06:01:33.306602 2019-10-08 06:01:33.346771 3 0 0 0000749 \N \N f f \N \N 12 01010101 809 JUM-809 V-0073 JUMPER BLUE S NEGRO CON PLATEADO EN EL CUELLO 449.50 899.00 \N \N \N \N f t \N 1 2019-10-19 18:05:18.060171 2019-10-19 18:05:18.117959 3 0 0 0000809 \N \N f f \N \N 1 01010101 810 VES-810 VE-0058 VESTIDO VALENTINE NEGRO CON DORADO 699.50 1399.00 \N \N \N \N f t \N 1 2019-10-19 18:06:52.032892 2019-10-19 18:06:52.067875 3 0 0 0000810 \N \N f f \N \N 12 01010101 811 COL-811 ARE-0002 ARETE DE LUNA Y ESTRELLA CON PERLA 99.45 249.00 \N \N \N \N f t \N 1 2019-10-19 18:57:00.826508 2019-10-19 18:57:00.861106 3 0 0 0000811 \N \N f f \N \N 17 01010101 812 COL-812 ARE-0003 ARETE DE LUNA CON PERLITAS 128.00 320.00 \N \N \N \N f t \N 1 2019-10-19 19:00:33.048127 2019-10-19 19:00:33.083631 3 0 0 0000812 \N \N f f \N IMG_3105.jpg 17 01010101 813 COL-813 ARE-0004 ARETE ESTRELLA Y LUNA DORADO CON BRILLOS 100.00 249.00 \N \N \N \N f t \N 1 2019-10-19 19:02:00.765168 2019-10-19 19:02:00.802776 3 0 0 0000813 \N \N f f \N IMG_3106.jpg 17 01010101 814 COL-814 ARE-0005 ARETE DE LUNA CON ESTRELLAS PLATEADAS 82.00 209.00 \N \N \N \N f t \N 1 2019-10-19 19:05:29.605258 2019-10-19 19:05:29.674498 3 0 0 0000814 \N \N f f \N IMG_3107.jpg 17 01010101 905 REG-905 BOL-0001 BOLSA DE REGALO DIPACK GIGANTE 28.00 120.00 \N \N \N \N f t \N 1 2019-11-02 21:25:21.753906 2019-11-02 21:25:21.823445 3 0 0 0000905 \N \N f f \N \N 23 01010101 906 REG-906 BOL-0002 BOLSA GRANDE JUMBO 22.00 88.00 \N \N \N \N f t \N 1 2019-11-02 21:25:58.367704 2019-11-02 21:25:58.401152 3 0 0 0000906 \N \N f f \N \N 23 01010101 907 REG-907 BOL-0003 BOLSA DE REGALO MEDIANA 12.00 60.00 \N \N \N \N f t \N 1 2019-11-02 21:26:31.672418 2019-11-02 21:26:31.708696 3 0 0 0000907 \N \N f f \N \N 23 01010101 908 REG-908 BOL-0004 BOLSA DE REGALO CHICA 7.00 40.00 \N \N \N \N f t \N 1 2019-11-02 21:27:40.585967 2019-11-02 21:27:40.625554 3 0 0 0000908 \N \N f f \N \N 23 01010101 981 VES-981 VST-0101 VESTIDO SACO SIN MANGA BLANCO Y ROSA 269.92 769.00 \N \N \N \N f t \N 1 2020-02-18 21:21:44.411538 2020-05-01 01:01:38.219143 3 0 0 0000981 \N \N f f \N PHOTO-2020-03-03-15-27-35.jpg 12 01010101 963 FAL-963 FLD-0022 FALDA ROJA SANJOY\r\n 380.00 949.00 \N \N \N \N f t \N 1 2019-11-26 22:48:21.083499 2019-12-21 21:12:34.104031 3 0 0 0000963 \N \N f f \N IMG_3690.JPG 11 01010101 953 BOL-953 1BLCI19316 BOLSA NEGRA CLOE CON CADENAS 1049.50 2099.00 \N \N \N \N f t \N 1 2019-11-26 01:28:31.371143 2019-12-23 20:27:53.550058 3 0 0 7509170766950 \N \N f f \N BSAL316_NEGR_1_300x435.jpg 6 01010101 540 BOL-540 LHAN344 BACKPACK BLANCA Y AMARILLA CON CORAZON COLECCION AGHATA CLOE 799.50 1599.00 \N \N \N \N f t \N 1 2019-04-16 19:24:37.471515 2019-12-23 21:51:52.414288 3 0 0 0000540 \N \N f f \N BLAO191_LILA_1_828x1200.jpg 6 01010101 765 CHA-865 CHA-0007 CHAMARRA MICHEL GAMUZA COLOR BAIGE\r\n 334.50 699.00 \N \N \N \N f t \N 1 2019-10-11 19:04:50.464443 2020-01-22 20:43:10.922635 3 0 0 0000765 \N \N f f \N IMG_4285.jpg 24 01010101 770 CHA-971 S-0016 CHAMARRA MUYMUY LENJEJUELA PLATA\r\n 449.50 899.00 \N \N \N \N f t \N 1 2019-10-11 19:08:49.270124 2020-01-22 20:48:04.093302 3 0 0 0000770 \N \N f f \N IMG_4281.jpg 24 01010101 767 CHA-971 S-0009 CHAMARRA ROMPEVEINTO MUY MUYAMARILLA\r\n 344.50 689.00 \N \N \N \N f t \N 1 2019-10-11 19:06:12.488834 2020-01-22 20:52:52.605838 3 0 0 0000767 \N \N f f \N IMG_4284.jpg 24 01010101 962 CHA-962 CHA-0024 SACO NEGRO CON ENCAJE SANJOY\r\n 340.00 849.00 \N \N \N \N f t \N 1 2019-11-26 22:46:49.300471 2020-01-22 21:08:06.734277 3 0 0 0000962 \N \N f f \N IMG_3689__1_.JPG 24 01010101 972 VES-972 VE-0044 VESTIDO NEGRO Y DORADO DE LENTEJUELA 649.50 1299.00 \N \N \N \N f t \N 1 2020-01-29 18:40:31.856126 2020-01-29 18:40:31.927086 3 0 0 0000972 \N \N f f \N \N 12 01010101 771 BLU-771 B-0005 CHALECO NYLON BLANCO ANGORA\r\n 349.50 699.00 \N \N \N \N f t \N 1 2019-10-11 19:09:42.165302 2020-01-29 21:08:35.293583 3 0 0 0000771 \N \N f f \N IMG_0442.JPG 7 01010101 974 ACC-974 c-0002 collar corazon negro 60.00 119.00 \N \N \N \N f t \N 1 2020-02-13 19:59:10.05204 2020-02-13 19:59:10.110057 3 0 0 0000974 \N \N f f \N \N 17 01010101 977 BLU-977 BLS-0104 BLUSA TIPO SACO ROSA FLORES EN MANGAS 192.15 519.00 \N \N \N \N f t \N 1 2020-02-18 21:08:48.823041 2020-02-18 21:08:48.889255 3 0 0 0000977 \N \N f f \N \N 7 01010101 980 BLU-980 BLS-0106 CAMISA COLORES MUY MUY 155.55 499.00 \N \N \N \N f t \N 1 2020-02-18 21:18:17.53197 2020-05-03 00:30:22.909241 3 0 0 0000980 \N \N f f \N PHOTO-2020-04-29-12-04-33.jpg 7 01010101 978 FAL-978 FLD-0023 FALDA PIEL ESTRELLA 215.02 569.00 \N \N \N \N f t \N 1 2020-02-18 21:11:56.54139 2020-05-02 01:25:34.409864 3 0 0 0000978 \N \N f f \N FOTO.jpg 11 01010101 982 PAL-982 VST-0102 PALAZZO ENCAJE VALENTINE NEGRO 448.35 1119.00 \N \N \N \N f t \N 1 2020-02-18 21:27:53.079765 2020-05-02 00:01:53.390967 3 0 0 0000982 \N \N f f \N VST-0102.jpg 9 01010101 984 BLU-984 BLS-0107 BLUSA BLACA NYLON 192.15 479.00 \N \N \N \N f t \N 1 2020-02-18 23:30:21.252392 2020-05-02 00:43:07.562748 3 0 0 0000984 \N \N f f \N PHOTO-2020-04-28-14-28-50.jpg 7 01010101 985 BLU-985 BLS-0108 BLUSA ROSA CON BOLITAS NEGRAS DECO 265.35 669.00 \N \N \N \N f t \N 1 2020-02-18 23:36:51.887574 2020-05-02 00:53:35.143717 3 0 0 0000985 \N \N f f \N PHOTO-2020-04-28-14-28-45.jpg 7 01010101 979 BLU-979 BLS-0105 PLAYERA BLANCA CON PIEDRAS EN MANGAS 155.55 469.00 \N \N \N \N f t \N 1 2020-02-18 21:14:57.777417 2020-05-02 01:17:42.873581 3 0 0 0000979 \N \N f f \N FOTO.jpg 7 01010101 987 BLU-987 BLS-0109 BLUSA NEGRA CON PERLAS CIEN 292.18 799.00 \N \N \N \N f t \N 1 2020-02-19 00:15:34.218346 2020-02-19 00:15:34.257736 3 0 0 0000987 \N \N f f \N \N 7 01010101 534 BLU-534 B-0030 NARANJA CON ENCAJE VALENTINE 299.50 599.00 \N \N \N \N f t \N 1 2019-04-16 17:40:35.731561 2020-02-19 18:21:09.533525 3 0 0 0000534 \N \N f f \N IMG_4486.jpg 7 01010101 986 CON-986 CON-0002 CONJUNTO NAVY MULTI CQBYCQ 420.90 1299.00 \N \N \N \N f t \N 1 2020-02-19 00:04:45.546308 2020-04-29 02:24:03.012112 3 0 0 0000986 \N \N f f \N PHOTO-2020-04-28-14-28-53_-_copia.jpg 10 01010101 485 JUM-485 JMP-0002 JUMPER FLORES TIRANTES APEACH 297.60 869.00 \N \N \N \N f t \N 1 2019-02-21 01:29:05.270139 2019-02-21 01:29:05.330363 3 0 0 0000485 \N \N f f \N \N 1 01010101 538 BOL-538 TIRX128 BOLSO CLOE 849.50 1699.00 \N \N \N \N f t \N 1 2019-04-16 19:22:13.634461 2019-04-16 19:22:13.700733 3 0 0 0000538 \N \N f f \N \N 6 01010101 171 PAL-854 VE-0050 NEGRO CON CIRCULOS ROJOS VALENTINE 456.00 1299.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862749 2019-10-22 00:28:58.455301 3 0 1 0000171 \N \N f f \N \N 9 01010101 541 BOL-541 VAIM222 BACKPACK CLOE MORADA Y ROSA AGATA 949.50 1899.00 \N \N \N \N f t \N 1 2019-04-16 19:25:22.341765 2020-01-07 21:34:15.161274 3 0 0 0000541 \N \N f f \N WIN_20200107_14_30_16_Pro.jpg 6 01010101 484 ZAP-484 JUNAI851 CALZADO CLOE 499.50 999.00 \N \N \N \N f t \N 1 2019-02-21 00:33:09.946493 2020-10-05 22:36:03.741367 3 0 0 7509170707984 \N \N f f \N WIN_20201005_16_36_54_Pro.jpg 13 01010101 624 VES-624 VST-0035 VESTIDO CQBYCQ NEGRO DE ENCAJE ST. 9330DK 427.50 1099.00 \N \N \N \N f t \N 1 2019-07-23 18:30:23.122319 2019-07-23 22:56:49.45906 3 0 0 0000624 \N \N f f \N file1-10.jpeg 12 01010101 625 VES-625 VST-0036 VESTIDO BLUE B NEGRO PLISADO ST. D11805 304.00 869.00 \N \N \N \N f t \N 1 2019-07-23 18:31:04.931576 2019-07-23 22:58:54.038788 3 0 0 0000625 \N \N f f \N VST-0036.png 12 01010101 212 VES-PRM-640 V-0014 BATITA NARANJA TYCHE 264.00 769.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86279 2019-07-31 00:09:27.81124 3 0 1 0000212 \N \N f f \N \N 18 01010101 623 FAL-623 FLD-0010 FALDA MUYMUY DE TUL BRILLOSA ST. A0793 242.25 699.00 \N \N \N \N f t \N 1 2019-07-23 18:28:49.847492 2019-07-23 23:03:20.73212 3 0 0 0000623 \N \N f f \N FLD-0010.png 11 01010101 626 JUM-626 JUM-0008 JUMPER LATISTE BEIGE ST. LJS21162H 513.00 1270.00 \N \N \N \N f t \N 1 2019-07-23 18:33:31.535435 2019-07-23 23:06:48.185152 3 0 0 0000626 \N \N f f \N BLA.jpeg 1 01010101 620 BLU-620 BLS-0051 PLAYERA MUYMUY CORAZON SANDIA ST. A0733 147.25 449.00 \N \N \N \N f t \N 1 2019-07-23 18:26:06.40862 2019-07-23 23:09:55.395128 3 0 0 0000620 \N \N f f \N file3-9.jpeg 7 01010101 170 PAN-170 V-0047 RAYADO ROSA JAYVEE 327.75 999.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862748 2019-02-04 09:10:21.35052 3 0 1 0000170 \N \N f f \N \N 8 01010101 195 FAL-195 F-00151 BUGAMBILIA CON COLA CQBYCQ 400.00 929.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862773 2019-02-04 09:10:17.032017 3 0 1 0000195 \N \N f f \N \N 11 01010101 187 FAL-187 F-0030 RAYAS DORADAS JEALOUS TOMATO 280.00 999.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862765 2019-02-04 09:10:17.079495 3 0 1 0000187 \N \N f f \N \N 11 01010101 189 FAL-189 F-0032 NEGRA VOLADITA JEALUOS TOMATO 240.00 699.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862767 2019-02-04 09:10:17.104806 3 0 1 0000189 \N \N f f \N \N 11 01010101 194 FAL-194 FAL-0001 LARGA MOSTAZA DE CONJUNTO LATISTE 600.00 1200.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862772 2019-02-04 09:10:17.129178 3 0 1 0000194 \N \N f f \N \N 11 01010101 198 FAL-198 FAL-0004 OVEROL MOSTAZA WILD HONEY 230.00 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862776 2019-02-04 09:10:17.202487 3 0 1 0000198 \N \N f f \N \N 11 01010101 199 FAL-199 FLD-0001 FALDA ARCOIRIS 300.30 749.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862777 2019-02-04 09:10:17.275184 3 0 1 0000199 \N \N f f \N \N 11 01010101 200 FAL-200 FLD-0002 FALDA ANIMADORA BLANCA Y NEGRA 163.80 529.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862778 2019-02-04 09:10:17.294518 3 0 1 0000200 \N \N f f \N \N 11 01010101 201 FAL-201 FLD-0003 FALDA LARGA COLORES 452.74 1149.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862779 2019-02-04 09:10:17.314467 3 0 1 0000201 \N \N f f \N \N 11 01010101 203 FAL-203 FLD-0005 FALDA DOBE AMARILLA 309.40 699.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862781 2019-02-04 09:10:17.378842 3 0 1 0000203 \N \N f f \N \N 11 01010101 185 CON-185 PLZ-0004 CONJUNTO BLANCO CON FLORES AZUL 404.95 1049.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862763 2019-02-04 09:10:19.278482 3 0 1 0000185 \N \N f f \N \N 10 01010101 205 VES-205 V-0007 NARANJA Y VERDE GIBIU 226.87 799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862783 2019-02-04 09:10:20.659377 3 0 1 0000205 \N \N f f \N \N 12 01010101 211 VES-211 V-0015 BATITA VERDE TYCHE 264.00 769.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862789 2019-02-04 09:10:20.821442 3 0 1 0000211 \N \N f f \N \N 12 01010101 240 VES-240 V-0018 SET AZUL RAYAADO DE PANTALON 297.00 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862818 2019-02-04 09:10:20.843642 3 0 1 0000240 \N \N f f \N \N 12 01010101 207 VES-207 V-0026 LARGO FLOREADO JACARANDA 264.00 929.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862785 2019-02-04 09:10:21.039198 3 0 1 0000207 \N \N f f \N \N 12 01010101 243 VES-243 V-0029 VESTIDO VALENTINE BLANCO 288.75 999.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862821 2019-02-04 09:10:21.063531 3 0 1 0000243 \N \N f f \N \N 12 01010101 238 VES-238 V-0033 SET BLANCO FLOREADO VOILA 371.85 999.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862816 2019-02-04 09:10:21.086413 3 0 1 0000238 \N \N f f \N \N 12 01010101 239 VES-239 V-0035 SET PANTALON FLOREADO VOILA 361.80 1029.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862817 2019-02-04 09:10:21.108441 3 0 1 0000239 \N \N f f \N \N 12 01010101 228 VES-228 V-0045 VOLADITO VERDE CQBYCQ 481.25 1395.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862806 2019-02-04 09:10:21.301145 3 0 1 0000228 \N \N f f \N \N 12 01010101 220 VES-220 V-0046 AZUL CON BESOS THE MOON 411.00 1299.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862798 2019-02-04 09:10:21.325685 3 0 1 0000220 \N \N f f \N \N 12 01010101 622 BLU-622 BLS-0053 PANTIBLUSA CQBYCQ NEGRA ST. 9291BW\r\n 190.00 489.00 \N \N \N \N f t \N 1 2019-07-23 18:27:38.840661 2019-07-23 22:59:59.868129 3 0 0 0000622 \N \N f f \N file1-9.jpeg 7 01010101 621 BLU-621 BLS-0052 BLUSA CQBYCQ BLANCA CON FLORES Y PERLAS ST. 7887TW 247.50 619.00 \N \N \N \N f t \N 1 2019-07-23 18:26:49.270542 2019-07-23 23:01:47.40631 3 0 0 0000621 \N \N f f \N CQ.jpeg 7 01010101 222 VES-PRM-640 V-0061 GRIS CON BLANCO BALBOA 282.00 699.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.8628 2019-07-31 00:09:09.541732 3 0 1 0000222 \N \N f f \N \N 18 01010101 618 BLU-618 BLS-0049 BLUSA M2 ROJO ESCARLATA CORTE CAMPESINA ST. T2665 247.00 569.00 \N \N \N \N f t \N 1 2019-07-23 18:22:52.605528 2019-07-23 22:52:58.37944 3 0 0 0000618 \N \N f f \N ROJA.jpg 7 01010101 627 CON-627 JUM-0009 SET APEACHBLANCO CON FLORES ST. YT6033 399.00 999.00 \N \N \N \N f t \N 1 2019-07-23 18:34:10.236404 2019-07-23 22:50:48.738903 3 0 0 0000627 \N \N f f \N JUM-0009.png 10 01010101 619 BLU-619 BLS-0050 BLUSA BLUE B BLANCA CON BORDADO ST. T11819 256.50 569.00 \N \N \N \N f t \N 1 2019-07-23 18:23:42.477259 2019-07-23 22:55:52.082579 3 0 0 0000619 \N \N f f \N BLS-0050.png 7 01010101 232 VES-PRM-640 V-0051 DURAZNO PEGADO CQBYCQ 580.00 1499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86281 2019-07-31 00:09:59.873529 3 0 1 0000232 \N \N f f \N \N 18 01010101 229 VES-PRM-640 V-0040 CAFÉ FLOREADO CQBYCQ 365.45 1060.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862807 2019-07-31 00:11:19.833636 3 0 1 0000229 \N \N f f \N \N 18 01010101 707 BOL-707 3BLCO19123 MOCHILA CLOE COLOR ROSA 749.50 1499.00 \N \N \N \N f t \N 1 2019-09-03 19:09:38.578684 2019-09-03 19:09:38.621133 3 0 0 0000707 \N \N f f \N 19123.jpg 6 01010101 196 FAL-642 FAL-0009 BLANCA CON FLORES Y COLA SANJOY 200.00 599.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862774 2019-08-18 22:23:15.216294 3 0 1 0000196 \N \N f f \N \N 11 01010101 708 BOL-708 1BLCO19019 MOCHILA CLOE NEGRA 749.50 1499.00 \N \N \N \N f t \N 1 2019-09-03 19:24:06.983706 2019-09-03 19:24:07.02046 3 0 0 0000708 \N \N f f \N \N 6 01010101 709 BOL-709 OZAI1890 Aplicación decorativa de mascada en tapa. Asa adicional ajustable y removible. 849.50 1699.00 \N \N \N \N f t \N 1 2019-09-03 19:26:02.835345 2019-09-03 19:26:02.880113 3 0 0 0000709 \N \N f f \N OZAI890_NEGR_1_90x130.jpg 6 01010101 539 BOL-539 BIXA573 BACKPACK CLOE 849.50 1699.00 \N \N \N \N f t \N 1 2019-04-16 19:23:44.756796 2019-10-15 17:46:31.047363 3 0 0 0000539 \N \N f f \N BIXA573.jpg 6 01010101 750 BLU-750 BLS-0082 BLUSA NEGRA APEACH CON BRILLOS ST-CT7506 280.00 699.00 \N \N \N \N f t \N 1 2019-10-10 20:57:15.21305 2019-10-11 04:34:59.386163 3 0 0 0000750 \N \N f f \N IMG_2959_2865_.jpg 7 01010101 172 PAL-854 V-0075 NEGRO ENTUBADO CON CUELLO PLATA BLUE S 330.00 1299.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86275 2019-10-22 00:29:18.723733 3 0 1 0000172 \N \N f f \N \N 9 01010101 204 VES-204 V-0063 NEGRO CON TUL MYSTIC 330.00 999.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862782 2019-02-04 09:10:21.493458 3 0 1 0000204 \N \N f f \N \N 12 01010101 237 VES-237 VE-0002 SET ROSITA FLOREADO WILDCAT 288.87 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862815 2019-02-04 09:10:21.603891 3 0 1 0000237 \N \N f f \N \N 12 01010101 213 VES-213 VE-0005 BATITA FLOREADO CORTO MILEY+MOLLY 206.00 699.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862791 2019-02-04 09:10:21.675826 3 0 1 0000213 \N \N f f \N \N 12 01010101 218 VES-218 VE-0006 VESTIDO ANIMAL PRINT PEPPERMINT 298.32 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862796 2019-02-04 09:10:21.696953 3 0 1 0000218 \N \N f f \N \N 12 01010101 221 VES-221 VE-0007 NARANJA CORTE HALTER NEW VURY KUSTOM 327.25 929.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862799 2019-02-04 09:10:21.719592 3 0 1 0000221 \N \N f f \N \N 12 01010101 236 VES-236 VE-0008 SET RAYADO AZUL MARINO MILK & HONEY 249.28 869.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862814 2019-02-04 09:10:21.741081 3 0 1 0000236 \N \N f f \N \N 12 01010101 209 VES-209 VE-0010 RAYADO DE COLORES MEEK 216.30 569.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862787 2019-02-04 09:10:21.785915 3 0 1 0000209 \N \N f f \N \N 12 01010101 208 VES-208 VES-0001 VOLADITO RAYADO DRESSCODE 193.20 799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862786 2019-02-04 09:10:21.859547 3 0 1 0000208 \N \N f f \N \N 12 01010101 31 CAR-31 HURG309 CARTERA CLOE 399.50 799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862609 2019-02-04 09:10:17.442935 3 0 1 0000031 \N \N f f \N \N 4 01010101 7 SHO-7 SHO-0002 FLOREADO FONDO BLANCO MICHEL 160.87 499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862585 2019-02-04 09:10:19.938272 3 0 1 0000007 \N \N f f \N \N 2 01010101 5 SHO-5 SHO-0004 SHORT DE MEZCLILLA CON LISTON BALBOA 240.00 689.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862583 2019-02-04 09:10:20.020262 3 0 1 0000005 \N \N f f \N \N 2 01010101 12 SHO-12 SHO-0004 SHORT MEZCLILLA CON LISTON ROSA Y NEGRO 240.00 689.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86259 2019-02-04 09:10:20.052215 3 0 1 0000012 \N \N f f \N \N 2 01010101 9 SHO-9 SHO-0007 SHORT MEZCLILLA CON FLORES BALBOA 270.00 699.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862587 2019-02-04 09:10:20.123836 3 0 1 0000009 \N \N f f \N \N 2 01010101 8 SHO-8 SHO-0015 BLANCO Y LILA BALBOA 210.00 669.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862586 2019-02-04 09:10:20.148 3 0 1 0000008 \N \N f f \N \N 2 01010101 13 SHO-13 SHR-0001 SHORT BEIGE APEACH 200.20 499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862591 2019-02-04 09:10:20.255175 3 0 1 0000013 \N \N f f \N \N 2 01010101 14 SHO-14 SHR-0002 SHORT MEZCLILLA AZUL 218.40 569.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862592 2019-02-04 09:10:20.273933 3 0 1 0000014 \N \N f f \N \N 2 01010101 15 SHO-15 SHR-0003 SHORT FALDA JEALOUS CON CINTO RAYAS 302.40 799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862593 2019-02-04 09:10:20.309765 3 0 1 0000015 \N \N f f \N \N 2 01010101 16 SHO-16 SHR-0004 SHORT MEZCLILLA LC CON CINTO ROSA 177.45 499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862594 2019-02-04 09:10:20.327394 3 0 1 0000016 \N \N f f \N \N 2 01010101 18 SHO-18 SHR-0006 SHORT NEGRO CON CINTO CAFÉ 127.40 499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862596 2019-02-04 09:10:20.365322 3 0 1 0000018 \N \N f f \N \N 2 01010101 19 SHO-19 SHR-0007 SHORT BLANCO PERLAS 259.35 599.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862597 2019-02-04 09:10:20.382654 3 0 1 0000019 \N \N f f \N \N 2 01010101 242 VES-242 VES-0010 VESTIDO DRESS CODE ROSA FUSCIA 297.00 869.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86282 2019-02-04 09:10:21.980736 3 0 1 0000242 \N \N f f \N \N 12 01010101 192 FAL-192 VES-0020 TUBO EN NEGRA ROSA Y AZUL REY LETTE 111.30 479.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86277 2019-02-04 09:10:22.099625 3 0 1 0000192 \N \N f f \N \N 11 01010101 191 FAL-191 VES-0037 AZUL REY CON FLORES NEGRAS KARA GIRL 120.30 499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862769 2019-02-04 09:10:22.215275 3 0 1 0000191 \N \N f f \N \N 11 01010101 234 VES-234 VES-0040 AZUL MARINO DE ENCAJE 280.00 829.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862812 2019-02-04 09:10:22.239358 3 0 1 0000234 \N \N f f \N \N 12 01010101 190 FAL-190 F-0009 AZUL CLARO CON OLANES NYLON 240.00 689.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862768 2019-02-04 09:10:16.927404 3 0 1 0000190 \N \N f f \N \N 11 01010101 290 BLU-290 B-0013 BLUSA NEGRA CORTA CON FLORES EN MANGA M/2 252.45 732.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:12.903021 3 0 1 0000290 \N \N f f \N \N 7 01010101 282 BLU-282 B-0056 BLUSA NEGRA NYLON CON MANGAS ABIERTAS 234.00 679.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:13.515252 3 0 1 0000282 \N \N f f \N \N 7 01010101 288 BLU-288 B-0061 BLUSAGRIS M/2 CON COLA Y ESTAMPADO FLORES 370.00 999.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:13.611392 3 0 1 0000288 \N \N f f \N \N 7 01010101 297 BLU-297 B-0076 BLUSA ROSA MUY MUY CON PELITOS 210.00 599.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:13.778927 3 0 1 0000297 \N \N f f \N \N 7 01010101 285 BLU-285 B-0086 BLUSA ROJA BALBOA CON BOTONES 239.00 599.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:13.900897 3 0 1 0000285 \N \N f f \N \N 7 01010101 281 BLU-281 B-0089 BLUSA TINTA LIVELY CORTA CON CHINITOS 130.00 399.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:13.945769 3 0 1 0000281 \N \N f f \N \N 7 01010101 296 BLU-296 B-0098 BLUSA BLANCA BALBOA CORTA 140.00 499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:14.030486 3 0 1 0000296 \N \N f f \N \N 7 01010101 272 ZAP-272 BEAK778 ZAPATILLA CLOE 899.50 1799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86285 2019-02-04 09:10:14.105872 3 0 1 0000272 \N \N f f \N \N 13 01010101 233 VES-PRM-640 VES-0028 AZUL MANGA CAMPANA 330.00 869.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862811 2019-07-31 00:10:22.864125 3 0 1 0000233 \N \N f f \N \N 18 01010101 287 BLU-909 B-0052 BLUSA BLANCA MOCHA CON ESTAMPADOS 271.00 799.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-11-03 19:20:46.739151 3 0 1 0000287 \N \N f f \N \N 7 01010101 217 VES-PRM-640 VES-0018 VOLADITO VERDE FLOREADO HAUTE MONDE 130.00 749.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862795 2019-07-31 00:11:36.89299 3 0 1 0000217 \N \N f f \N \N 18 01010101 226 VES-PRM-640 VES-0014 ROJO ABIERTO EN PIERNA OLIVE TREE 180.00 699.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862804 2019-07-31 00:12:25.695886 3 0 1 0000226 \N \N f f \N \N 18 01010101 224 VES-PRM-640 VES-0025 NEGRO VOLADITO FLOREADO LETTE 230.00 849.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862802 2019-07-31 00:12:51.310821 3 0 1 0000224 \N \N f f \N \N 18 01010101 235 VES-PRM-640 VES-0012 TINTO DE TIRANTES 330.00 829.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862813 2019-07-31 00:13:33.780925 3 0 1 0000235 \N \N f f \N \N 18 01010101 225 VES-PRM-640 VES-0008 TINTO CORTE CAMPESINA CON FLORES AMARILLAS 330.00 849.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862803 2019-07-31 00:14:18.434513 3 0 1 0000225 \N \N f f \N \N 18 01010101 215 VES-PRM-640 VES-0007 PEGADO FLOREADO I.C.U. 99.00 500.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862793 2019-07-31 00:14:36.87308 3 0 1 0000215 \N \N f f \N \N 18 01010101 216 VES-PRM-640 VES-0001 PEGADO NEGRO CON ROSA ZINGA 99.00 300.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862794 2019-07-31 00:15:02.509824 3 0 1 0000216 \N \N f f \N \N 18 01010101 241 VES-PRM-640 VES-0047 SET MOSTAZA DE FALDA 330.00 949.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862819 2019-07-31 00:49:11.229725 3 0 1 0000241 \N \N f f \N \N 18 01010101 289 BLU-PRM-640 B-0021 BLUSA NEGRA M COLECTIONS ESTAMPADO FLORES 240.00 629.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-07-31 00:59:48.149126 3 0 1 0000289 \N \N f f \N \N 20 01010101 283 BLU-283 B-0042 BLUSA AZUL NYLON DE MEZCLILLA CORTA CON PIEDRAS 131.00 489.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2020-01-29 21:11:14.739593 3 0 1 0000283 \N \N f f \N IMG_0273.JPG 7 01010101 214 VES-642 VES-0024 VOLADITO AZUL MARINO CON FLORES LETTE 230.00 849.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862792 2019-08-18 22:21:08.495919 3 0 1 0000214 \N \N f f \N \N 12 01010101 280 BLU-280 B-0034 BLUSA BLANCA NYLON PARIS 140.00 629.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2020-02-19 18:32:48.433104 3 0 1 0000280 \N \N f f \N IMG_4493.jpg 7 01010101 17 SHO-17 SHR-0005 SHORT PAPAYA ROJO REY 141.96 489.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862595 2020-07-01 22:40:20.451997 3 0 1 0000017 \N \N f f \N \N 2 01010101 294 BLU-294 BL-0003 PLAYERA BLANCA NYLON CON PONPONES 192.50 589.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:14.180784 3 0 1 0000294 \N \N f f \N \N 7 01010101 278 BLU-278 BL-0014 BLUSA ROSA STOP AND SMELL THE ROSES 259.85 599.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:14.377072 3 0 1 0000278 \N \N f f \N \N 7 01010101 284 BLU-284 BL-0017 BLUSA NEGRA MICHELLE NEGRA TRANSPARENTE 168.23 499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:14.449248 3 0 1 0000284 \N \N f f \N \N 7 01010101 276 BLU-276 BL-0023 BLUSA COLORES NYLON DE COLORES 200.00 499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:14.55175 3 0 1 0000276 \N \N f f \N \N 7 01010101 277 BLU-277 BL-0025 BLUSA AZUL PASTEL CON CONO DE HELADO 230.00 569.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:14.59748 3 0 1 0000277 \N \N f f \N \N 7 01010101 259 ZAP-259 DIYNK 656 ZAPATO NEGRO 549.50 1099.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862837 2019-02-04 09:10:16.583042 3 0 1 0000259 \N \N f f \N \N 13 01010101 267 ZAP-267 DIYNK 656 TENNIS CLOE 549.50 1099.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862845 2019-02-04 09:10:16.608954 3 0 1 0000267 \N \N f f \N \N 13 01010101 268 ZAP-268 ELAN769 TENNIS CLOE 649.50 1299.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862846 2019-02-04 09:10:16.726024 3 0 1 0000268 \N \N f f \N \N 13 01010101 260 ZAP-260 EMBA 670 ZAPATILLA NEGRA 699.50 1399.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862838 2019-02-04 09:10:16.7518 3 0 1 0000260 \N \N f f \N \N 13 01010101 265 ZAP-265 IALY728 TENNIS CLOE 599.50 1199.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862843 2019-02-04 09:10:17.495813 3 0 1 0000265 \N \N f f \N \N 13 01010101 255 JUM-255 JUM-0001 JUMPER FLORES ROSA LELIS 327.60 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862833 2019-02-04 09:10:17.805233 3 0 1 0000255 \N \N f f \N \N 1 01010101 256 JUM-256 JUM-0002 OVEROL PANA ROSA 309.40 799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862834 2019-02-04 09:10:17.839663 3 0 1 0000256 \N \N f f \N \N 1 01010101 257 JUM-257 JUM-0003 CONJUNTO CHIC FLORES 304.85 799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862835 2019-02-04 09:10:17.873423 3 0 1 0000257 \N \N f f \N \N 1 01010101 262 ZAP-262 KATTI 611 ZAPATILLA TINTO 749.50 1499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86284 2019-02-04 09:10:17.907277 3 0 1 0000262 \N \N f f \N \N 13 01010101 258 ZAP-258 KIUR 652 MOCASIN CAMEL 599.50 1199.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862836 2019-02-04 09:10:17.987874 3 0 1 0000258 \N \N f f \N \N 13 01010101 274 ZAP-274 LENJ662 TENNIS CLOE 699.50 1399.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862852 2019-02-04 09:10:18.067547 3 0 1 0000274 \N \N f f \N \N 13 01010101 266 ZAP-266 LULH 651 ZAPATILLA NEGRA 799.50 1599.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862844 2019-02-04 09:10:18.345402 3 0 1 0000266 \N \N f f \N \N 13 01010101 161 PAN-161 PAN-0001 NEGRO CON RAYAS EN LOS LADOS NYLON 280.00 980.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862739 2019-02-04 09:10:18.841666 3 0 1 0000161 \N \N f f \N \N 8 01010101 264 ZAP-264 PHER674 ZAPATO CLOE 749.50 1499.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862842 2019-02-04 09:10:19.179628 3 0 1 0000264 \N \N f f \N \N 13 01010101 271 ZAP-271 UKFO814 ZAPATO CLOE 649.50 1299.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862849 2019-02-04 09:10:20.549181 3 0 1 0000271 \N \N f f \N \N 13 01010101 39 CAR-39 AROH524 CARTERA CLOE 399.50 799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862617 2019-02-04 09:10:12.463379 3 0 1 0000039 \N \N f f \N \N 4 01010101 244 VES-244 V-0021 VESTIDO FLOR BLANCO 226.87 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862822 2019-02-04 09:10:20.940388 3 0 1 0000244 \N \N f f \N \N 12 01010101 247 VES-247 VST-0001 VESTIDO SPRING FLOWER 509.60 1299.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862825 2019-02-04 09:10:22.310614 3 0 1 0000247 \N \N f f \N \N 12 01010101 248 VES-248 VST-0002 VESTIDO TROPICAL 473.20 1169.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862826 2019-02-04 09:10:22.335129 3 0 1 0000248 \N \N f f \N \N 12 01010101 249 VES-249 VST-0003 VESTIDO RAYAS CON PERLAS AZUL LC 200.20 589.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862827 2019-02-04 09:10:22.360329 3 0 1 0000249 \N \N f f \N \N 12 01010101 251 VES-251 VST-0005 CONJUNTO RAYAS LATISTE AZUL MARINO 527.80 1399.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862829 2019-02-04 09:10:22.407764 3 0 1 0000251 \N \N f f \N \N 12 01010101 253 VES-253 VST-0007 VESTIDO RAYAS NARANJA CON FLORES 340.20 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862831 2019-02-04 09:10:22.452228 3 0 1 0000253 \N \N f f \N \N 12 01010101 254 VES-254 VST-0008 VESTIDO CON HOMBRO CAIDO JEULOUS 370.00 949.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862832 2019-02-04 09:10:22.475122 3 0 1 0000254 \N \N f f \N \N 12 01010101 273 ZAP-273 YGUT804 ZAPATILLA CLOE 799.50 1599.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862851 2019-02-04 09:10:22.521618 3 0 1 0000273 \N \N f f \N \N 13 01010101 295 BLU-295 B-0007 BLUSA DURAZNO M/2 CON COLA DE VESTIR 337.00 989.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:12.683318 3 0 1 0000295 \N \N f f \N \N 7 01010101 336 CAR-336 ARIT239 CARTERA CLOE COLORES 399.50 799.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:12.43876 3 0 1 0000336 \N \N f f \N \N 4 01010101 313 BLU-313 B-0001 BLUSA BLANCA CORTA SHE + SKY 99.00 399.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:12.534294 3 0 1 0000313 \N \N f f \N \N 7 01010101 312 BLU-312 B-0008 BLUSA AZUL CON OLANES CON PUNTITOS 198.00 569.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:12.709842 3 0 1 0000312 \N \N f f \N \N 7 01010101 308 BLU-308 B-0012 BLUSA ROSA GLOW PASSION CON BOLITAS 127.87 449.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:12.831082 3 0 1 0000308 \N \N f f \N \N 7 01010101 315 BLU-315 B-0012 BLUSA BLANCA YABES CON FLORES 99.00 399.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:12.854315 3 0 1 0000315 \N \N f f \N \N 7 01010101 306 BLU-306 B-0045 BLUSA NEGRA M COLLECTIONS TRANSPARENTE CON ESTRELLAS 290.00 699.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:13.271392 3 0 1 0000306 \N \N f f \N \N 7 01010101 307 BLU-307 B-0058 BLUSA NEGRA M/2 TRANSPARENTE PARIS 330.00 749.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:13.563684 3 0 1 0000307 \N \N f f \N \N 7 01010101 305 BLU-305 B-0062 BLUSA NEGRA CON ENCAJE Y PERLAS 320.00 769.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:13.630596 3 0 1 0000305 \N \N f f \N \N 7 01010101 303 BLU-303 B-0074 BLUSA COLORES VOILA DE GASA 380.00 899.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:13.730921 3 0 1 0000303 \N \N f f \N \N 7 01010101 304 BLU-304 B-0075 BLUSA PLATA PASTEL LENTEJUELA PARIS 280.00 769.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:13.755884 3 0 1 0000304 \N \N f f \N \N 7 01010101 301 BLU-301 B-0092 BLUSA NEGRA JEALOUS TOMATO CON OLANES 226.87 599.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:13.985277 3 0 1 0000301 \N \N f f \N \N 7 01010101 300 BLU-300 B-0095 BLUSA NEGRA ENDIESS ROSE CON DESTELLOS PLATA 412.50 899.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:14.006888 3 0 1 0000300 \N \N f f \N \N 7 01010101 246 JUM-971 VE-0005 JUMPER GRIS CON AMARILLO 298.87 799.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862824 2020-01-19 01:10:19.550026 3 0 1 0000246 \N \N f f \N \N 1 01010101 299 BLU-909 B-0035 BLUSA ROSA MOCHA CON ESTAMPADOS DE FLORES 271.00 699.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-11-03 19:21:03.730708 3 0 1 0000299 \N \N f f \N \N 7 01010101 252 PAL-973 VST-0006 PALAZZO VERDE CON FLORES LATISTE 473.20 1239.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.86283 2020-01-29 18:51:22.340653 3 0 1 0000252 \N \N f f \N \N 9 01010101 275 BLU-275 BL-0034 BLUSA AZUL MUY MUY CON CORAZONES BLANCOS 140.00 429.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2020-02-19 18:19:05.747009 3 0 1 0000275 \N \N f f \N IMG_4490.jpg 7 01010101 291 BLU-291 BL-0024 BLUSA NYLON BLANCA CON PERLAS EN MANGAS CON COLA 250.00 649.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2020-02-19 18:32:07.587722 3 0 1 0000291 \N \N f f \N IMG_4494.jpg 7 01010101 292 BLU-292 BL-0006 BLUSA BLANCA Y ROSA NYLON CON COLA 240.62 629.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2020-02-19 18:33:17.343963 3 0 1 0000292 \N \N f f \N IMG_4492.jpg 7 01010101 269 ZAP-269 MADX 691 ZAPATO CLOE 449.50 899.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862847 2020-10-05 22:37:19.108158 3 0 1 0000269 \N \N f f \N WIN_20201005_16_40_03_Pro.jpg 13 01010101 340 COS-340 BIEZ498 COSMETIQUERA CLOE NEGRA CON AZUL 199.50 399.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:14.131262 3 0 1 0000340 \N \N f f \N \N 14 01010101 322 BLU-322 BLS-0021 BLUSA LC GARABATEADA ROSA 141.05 489.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:15.329697 3 0 1 0000322 \N \N f f \N \N 7 01010101 309 BLU-309 BLU-0020 BLUSA COLORES POTTERS POT SIN MANGAS GASA 140.00 469.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:15.673735 3 0 1 0000309 \N \N f f \N \N 7 01010101 314 BLU-314 BLU-0051 BLUSA AZUL DAY G CON FLORES 99.00 449.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:15.870652 3 0 1 0000314 \N \N f f \N \N 7 01010101 317 BLU-317 BLX-0002 PLAYERA CON PERFUMES 154.08 469.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.054584 3 0 1 0000317 \N \N f f \N \N 7 01010101 318 BLU-318 BLX-0003 PLAYERA ROJA CON GLOBOS 154.08 469.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.073227 3 0 1 0000318 \N \N f f \N \N 7 01010101 319 BLU-319 BLX-0004 PLAYERA NEGRA CORAZONES 154.08 469.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.094065 3 0 1 0000319 \N \N f f \N \N 7 01010101 320 BLU-320 BLX-0005 PLAYERA ROSA CON BESO 154.08 469.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.114798 3 0 1 0000320 \N \N f f \N \N 7 01010101 323 BLU-323 BLX-0007 BLUSA CON COLA BLANCA Y FLORES LC 172.90 469.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.152223 3 0 1 0000323 \N \N f f \N \N 7 01010101 325 BLU-325 BLX-0009 PLAYERA VOGUE 153.60 489.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.192151 3 0 1 0000325 \N \N f f \N \N 7 01010101 326 BLU-326 BLX-0010 PLAYERA CON CORAZON Y PERLAS NEGRA 172.80 499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.213667 3 0 1 0000326 \N \N f f \N \N 7 01010101 328 BLU-328 BLX-0012 BLUSA LELIS FLORES NEGRA 218.40 589.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.262603 3 0 1 0000328 \N \N f f \N \N 7 01010101 329 BLU-329 BLX-0013 PANTI ROSA VIEJO LELIS 209.30 499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.288623 3 0 1 0000329 \N \N f f \N \N 7 01010101 330 BLU-330 BLX-0014 BLUSA PASTEL LILA 209.30 499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.315117 3 0 1 0000330 \N \N f f \N \N 7 01010101 332 BLU-332 BLX-0016 BLUSA CON OLAN BLANCA Y GARABATOS 278.40 619.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.36695 3 0 1 0000332 \N \N f f \N \N 7 01010101 324 BLU-324 BLX-0008 PLAYERA SMILE 122.85 469.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2020-02-19 18:24:25.095978 3 0 1 0000324 \N \N f f \N IMG_4487.jpg 7 01010101 486 BOL-486 UXDI214 BOLSO CLOE 899.50 1799.00 \N \N \N \N f t \N 1 2019-02-22 19:25:21.797768 2020-01-07 20:41:26.464551 3 0 0 0000486 \N \N f f \N WIN_20200107_13_36_35_Pro.jpg 6 01010101 350 BOL-350 AMYN104 BOLSA CLOE CAFÉ CON ROSA CHICA 899.50 1799.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 18:09:39.31996 3 0 1 0000350 \N \N f f \N AMYN104.jpg 6 01010101 543 BOL-543 MOXZ820 BOLSO CLOE 949.50 1899.00 \N \N \N \N f t \N 1 2019-04-16 19:30:01.141262 2019-04-16 19:30:01.177852 3 0 0 0000543 \N \N f f \N \N 6 01010101 487 BOL-487 IRCO175 MOCHILA CLOE 899.50 1799.00 \N \N \N \N f t \N 1 2019-02-22 19:41:23.133645 2020-01-07 20:38:32.662422 3 0 0 0000487 \N \N f f \N WIN_20200107_13_26_30_Pro.jpg 6 01010101 344 BOL-344 ITBI448 MOCHILA CLOE NEGRA 799.50 1599.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:17.67976 3 0 1 0000344 \N \N f f \N \N 6 01010101 343 BOL-343 JAIK410 LONCHERA CLOE ROSA 199.50 399.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:17.732475 3 0 1 0000343 \N \N f f \N \N 6 01010101 342 COS-342 KYLA512 COSMETIQUERA CLOE ROSA CON AZUL 149.50 299.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:18.012933 3 0 1 0000342 \N \N f f \N \N 14 01010101 338 CAR-338 OANY273 CARTERA CLOE ROSITA 399.50 799.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:18.470033 3 0 1 0000338 \N \N f f \N \N 4 01010101 345 BOL-345 UXDI212 BOLSA CLOE ROSA 749.50 1499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:20.572172 3 0 1 0000345 \N \N f f \N \N 6 01010101 544 BOL-544 KIYN799 BOLSO CLOE CAFE CON GAMUSZA Y PONPON NEGRO 849.50 1699.00 \N \N \N \N f t \N 1 2019-04-16 19:31:26.114631 2019-12-23 21:24:50.159369 3 0 0 0000544 \N \N f f \N \N 6 01010101 542 BOL-542 ADEY161 BOLSO CLOE 899.50 1799.00 \N \N \N \N f t \N 1 2019-04-16 19:26:34.828732 2019-05-20 16:47:25.162944 3 0 0 0000542 \N \N f f \N ADEY161.jpg 6 01010101 335 CAR-335 HURG309 CARTERA CLOE ROJA Y NEGRA 399.50 799.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 17:49:59.518208 3 0 1 0000335 \N \N f f \N HURG309.jpg 4 01010101 339 CAR-339 NAIJ299 CARTERA AZUL CON DORADO 399.50 799.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 17:51:05.618154 3 0 1 0000339 \N \N f f \N NAIJ299.jpg 4 01010101 337 CAR-337 HURG311 CARTERA CLOE ROJA Y ORO ROSADO 449.50 899.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 17:53:10.613933 3 0 1 0000337 \N \N f f \N HURG311.jpg 4 01010101 347 BOL-347 SODI148 MOCHILA CLOE TINTA CON DORADO 749.50 1499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 18:11:30.868866 3 0 1 0000347 \N \N f f \N SODI148.jpg 6 01010101 346 BOL-346 SOED445 BOLSA CLOE TINTA 949.50 1899.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 19:48:41.082501 3 0 1 0000346 \N \N f f \N SOED445.jpg 6 01010101 348 BOL-348 ODNY157 BOLSA CLOE LISAS NEGRA, ROSA Y AZUL 749.50 1499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 20:18:50.797455 3 0 1 0000348 \N \N f f \N ODNY.jpeg 6 01010101 349 BOL-349 IOFY608 MOCHILA CLOE CAMEL 749.50 1499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 20:31:38.282312 3 0 1 0000349 \N \N f f \N IOFY.jpg 6 01010101 316 BLU-316 BLX-0001 BLUSA DE TIRANTES CON COLA BLANCA RAYAS 308.16 799.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-21 00:01:17.762738 3 0 1 0000316 \N \N f f \N IMG_0848.jpg 7 01010101 331 BLU-331 BLX-0015 BLUSA MC COLITA RAYAS GRIS 307.20 819.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-21 00:02:36.413132 3 0 1 0000331 \N \N f f \N IMG_0846.jpg 7 01010101 327 BLU-327 BLX-0011 BLUS MOSTAZA CON OLAN 141.96 489.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-07-01 22:40:17.574308 3 0 1 0000327 \N \N f f \N \N 7 01010101 628 VES-628 V-0024 VESTIDO LATISTE COLORES NEON 437.00 1099.00 \N \N \N \N f t \N 1 2019-07-23 19:14:59.808535 2019-07-24 00:22:47.758603 3 0 1 0000628 \N \N f f \N file3-11.jpeg 12 01010101 368 PER-368 BODYS VICTORIA BODYS VICTORIA 153.60 300.00 \N \N \N \N f t \N 0 2019-02-03 00:00:00 2019-09-03 23:44:56.179269 3 0 1 0000368 \N \N f f \N \N 15 01010101 631 FAL-631 FAL-0011 FALDA MUYMUY MIX COLOR 280.25 729.00 \N \N \N \N f t \N 1 2019-07-23 19:25:35.395485 2019-07-24 00:22:22.740079 3 0 1 0000631 \N \N f f \N file-14.jpeg 11 01010101 629 CON-629 CJT-0001 CONJUNTO VERDE OLIVO LATISTE 427.50 1149.00 \N \N \N \N f t \N 1 2019-07-23 19:20:13.472209 2019-07-24 00:23:06.29544 3 0 1 0000629 \N \N f f \N file4-8.jpeg 10 01010101 545 BOL-545 KIYN801 BOLSO CLOE GRIS COM GAMUZA Y POMPON NEGRO 899.50 1799.00 \N \N \N \N f t \N 1 2019-04-16 19:32:59.920408 2019-12-23 21:23:48.696224 3 0 0 0000545 \N \N f f \N descarga__2_.jpg 6 01010101 633 BLU-633 BLX-0026 CQ&CQ CAMISA NEGRA 285.00 719.00 \N \N \N \N f t \N 1 2019-07-23 19:28:21.378625 2019-07-23 19:28:21.450433 3 0 0 0000633 \N \N f f \N \N 7 01010101 632 BLU-632 BLX-0028 MUYMUY CAMISA COLOR ROSA PALO 185.25 479.00 \N \N \N \N f t \N 1 2019-07-23 19:26:36.500667 2019-07-23 22:16:59.685047 3 0 0 0000632 \N \N f f \N file-16.jpeg 7 01010101 634 BLU-634 BLX-0027 CQ&CQ BODY BLANCO DE ENCAJE 323.00 799.00 \N \N \N \N f t \N 1 2019-07-23 19:29:16.429885 2019-07-23 19:51:07.06192 3 0 0 0000634 \N \N f f \N file3-8.jpeg 7 01010101 333 CAR-333 OKYN278 CARTERA CLOE TIPO BOLSO TINTA Y AZUL 599.50 1199.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2020-07-02 23:31:29.862604 3 0 1 0000333 \N \N f f \N WIN_20200702_17_31_38_Pro.jpg 4 01010101 384 COL-384 CO-0001 COLLARES TIERRA SANTA OJITO 349.50 699.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.489625 3 0 1 0000384 \N \N f f \N \N 17 01010101 379 PUL-379 CORZ-0001 PULCERATIERRA SANTA CORAZON 304.50 609.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.51144 3 0 1 0000379 \N \N f f \N \N 16 01010101 378 PUL-378 CRUZ-0001 PULCERA TIERRA SANTA CRUZ 264.50 529.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.534379 3 0 1 0000378 \N \N f f \N \N 16 01010101 401 FAL-401 F-0004 FALDA NEGRA Y ROSA JAYVEE VOLADITA 99.00 499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.825164 3 0 1 0000401 \N \N f f \N \N 11 01010101 399 FAL-399 F-0005 SHORT ROJA FALDA ROJO CON MOÑO EN ESQUINA 159.75 549.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.851602 3 0 1 0000399 \N \N f f \N \N 11 01010101 404 FAL-404 F-0010 FALDA COLORES CORTA COMME CONTEMPORANEA 264.00 599.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.952042 3 0 1 0000404 \N \N f f \N \N 11 01010101 398 FAL-398 F-0012 SHORT BLANCA Y NEGRA FALDA NYLON CON BOTONES DORADOS 231.15 599.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.976344 3 0 1 0000398 \N \N f f \N \N 11 01010101 403 FAL-403 F-0020 FALDA PLATA LARGA CON COLA BLUE.S 198.00 629.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:17.055509 3 0 1 0000403 \N \N f f \N \N 11 01010101 402 FAL-402 FAL-0001 FALDA ROSA PALO FASHION WILD CAT 173.25 599.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:17.153317 3 0 1 0000402 \N \N f f \N \N 11 01010101 397 FAL-397 FAL-0008 FALDA NEGRA Y AZUL SNEAK PEEK MEZCLILLA 259.87 689.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:17.227486 3 0 1 0000397 \N \N f f \N \N 11 01010101 360 BOL-360 ITNI179 MOCHILA CLOE TINTA LISA 899.50 1799.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:17.707132 3 0 1 0000360 \N \N f f \N \N 6 01010101 389 JUM-389 JMP-0001 JUMPER APEACH FLORES 293.75 899.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:17.780014 3 0 1 0000389 \N \N f f \N \N 1 01010101 387 LEN-387 LENTES LENTES GUESS 949.50 1899.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:18.101951 3 0 1 0000387 \N \N f f \N \N 5 01010101 375 PUL-375 P-0001 PULCERA CON BRASALETE TIERRA SANTA BOQUITAS 424.50 849.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:18.699061 3 0 1 0000375 \N \N f f \N \N 16 01010101 376 PUL-376 P-0002 PULCERA CON BRASALETE TIERRA SANTA OJOS 399.50 799.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:18.722193 3 0 1 0000376 \N \N f f \N \N 16 01010101 377 PUL-377 P-0007 PULCERA TIERRA SANTA OJO DE BOLITAS 349.50 699.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:18.77052 3 0 1 0000377 \N \N f f \N \N 16 01010101 395 PAL-395 PAL-0001 PALAZZO LOVE H FLORES TIRANTES 364.28 999.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:18.794512 3 0 1 0000395 \N \N f f \N \N 9 01010101 386 PUL-386 PUL-0001 PULCERAS PLATEADA 45.00 89.99 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:19.442837 3 0 1 0000386 \N \N f f \N \N 16 01010101 385 PUL-385 PUL-0002 PULCERAS DORADAS 70.00 139.99 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:19.463179 3 0 1 0000385 \N \N f f \N \N 16 01010101 371 PUL-371 PUL-002 PULCERA TIERRA SANTA DE PIÑA 314.50 629.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:19.507666 3 0 1 0000371 \N \N f f \N \N 16 01010101 380 PUL-380 PUL-004 PULCERA TIERRA SANTA OJO DE PIEDRAS 249.50 499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:19.53158 3 0 1 0000380 \N \N f f \N \N 16 01010101 383 PUL-383 PUL-005 PULCERA TIERRA SANTA OJO CON PIEDRAS LADOS 284.50 569.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:19.555333 3 0 1 0000383 \N \N f f \N \N 16 01010101 370 PUL-370 PUL-006 PULCERAS TIERRA SANTA CON BOLITAS COLORES 274.50 549.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:19.578025 3 0 1 0000370 \N \N f f \N \N 16 01010101 382 PUL-382 PUL-007 PULCERA TIERRA SANTA TRES OJOS 260.00 520.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:19.60013 3 0 1 0000382 \N \N f f \N \N 16 01010101 381 PUL-381 PUL-008 PULCERA TIERRA SANTA OJO CON ACCESORIOS 292.50 585.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:19.623004 3 0 1 0000381 \N \N f f \N \N 16 01010101 391 PAL-391 V-0008 PALAZO NEGRO CON ROSA VALENTINE 330.00 1299.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:20.683091 3 0 1 0000391 \N \N f f \N \N 9 01010101 392 PAL-392 V-0025 PALAZO NEGRO/BLANCO RAYADO JACARANDA 297.00 969.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:21.015243 3 0 1 0000392 \N \N f f \N \N 9 01010101 390 PAL-390 V-0042 PALAZO COLORES RAYADO WENT 257.12 899.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:21.228129 3 0 1 0000390 \N \N f f \N \N 9 01010101 427 VES-427 V-0049 VESTIDO VERDE THE MOON ESTAPADO COLORES 480.00 999.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:21.376491 3 0 1 0000427 \N \N f f \N \N 12 01010101 394 PAL-394 V-0052 PALAZO NEGRO VALENTINE CON ENCAJE EN BLUSA 330.00 1299.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:21.426116 3 0 1 0000394 \N \N f f \N \N 9 01010101 428 VES-428 V-0074 VESTIDO VERDE EVENT LARGO CON MANGAS 300.00 899.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:21.513065 3 0 1 0000428 \N \N f f \N \N 12 01010101 429 VES-429 VE-0003 VESTIDO ROSA LIZABELL CON MUÑECA 163.62 649.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:21.629731 3 0 1 0000429 \N \N f f \N \N 12 01010101 430 VES-430 VE-0008 VESTIDO ROSA Y VERDE GLOW PASSION RAYADO 110.10 499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:21.761813 3 0 1 0000430 \N \N f f \N \N 12 01010101 69 BLU-69 B-0003 NARANJA CON OLAN PALAZZO 148.50 419.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862647 2019-02-04 09:10:12.583809 3 0 1 0000069 \N \N f f \N \N 7 01010101 356 BOL-356 AENI622 MOCHILA CLOE LILITA 699.50 1399.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 17:07:01.833162 3 0 1 0000356 \N \N f f \N AINE622.jpg 6 01010101 363 BOL-363 BORU943 MOCHILA CLOE PLATA Y ROSA 749.50 1499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 18:13:21.192876 3 0 1 0000363 \N \N f f \N BORU943.jpg 6 01010101 355 BOL-355 LIAC507 BOLSA CLOE TINTA 849.50 1699.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 20:25:14.756994 3 0 1 0000355 \N \N f f \N LIAC.jpg 6 01010101 359 BOL-359 LOUB019 MOCHILA CLOE ORO ROSADO 899.50 1799.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 20:25:37.076626 3 0 1 0000359 \N \N f f \N LOUB.jpg 6 01010101 354 BOL-354 LIMO382 BOLSA CLOE COLORES CHICA 899.50 1799.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 20:25:56.948821 3 0 1 0000354 \N \N f f \N LIMON.jpg 6 01010101 357 BOL-357 LIMO383 BOLSA CLOE COLORES GRANDE 949.50 1899.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 20:26:17.179734 3 0 1 0000357 \N \N f f \N LIMON.jpg 6 01010101 364 BOL-364 LUAK962 BOLSA CLOE NEGRA 899.50 1799.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 20:32:30.277968 3 0 1 0000364 \N \N f f \N LUAK.jpg 6 01010101 358 BOL-358 MAOD124 MOCHILA CLOE ROSITA CON DORADO 749.50 1499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 20:36:44.960285 3 0 1 0000358 \N \N f f \N MOAD.jpg 6 01010101 365 BOL-365 KEIL009 BOLSA CLOE OLIVE CON POMPON 849.50 1699.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 20:46:14.26555 3 0 1 0000365 \N \N f f \N KEIL.jpg 6 01010101 396 PAL-396 PAL-0002 YELLOW LEAF LATISTE 491.40 1299.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 23:59:42.214649 3 0 1 0000396 \N \N f f \N IMG_0849.jpg 9 01010101 388 LEN-388 LENTES LENTES GUESS NEW 949.50 2299.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-09-03 23:41:05.056768 3 0 1 0000388 \N \N f f \N \N 5 01010101 367 PER-367 BODYS VICTORIA BODYS VICTORIA 153.60 350.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2020-07-02 21:04:01.64748 3 0 1 0000367 \N \N f f \N BODY.jpg 15 01010101 433 VES-433 DRESS-001 VESTIDO BLANCO CON RAYAS AZUL LATISTE 509.60 999.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.634176 3 0 1 0000433 \N \N f f \N \N 12 01010101 434 VES-434 DRESS-002 VESTIDO ANGEL 473.20 979.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.661573 3 0 1 0000434 \N \N f f \N \N 12 01010101 435 VES-435 DRESS-003 VESTIDO MUY MUY CON ARETE 209.30 659.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.700256 3 0 1 0000435 \N \N f f \N \N 12 01010101 409 SHO-409 F-0007 SHORT GRIS CUADRADO GLOW PASSION 130.00 499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:16.877682 3 0 1 0000409 \N \N f f \N \N 2 01010101 405 FAL-405 FAL-0002 SHORT FALDA ROSA FASHION WILD CAT 173.25 599.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:17.177867 3 0 1 0000405 \N \N f f \N \N 11 01010101 406 FAL-406 FLD-0004 FALDA VOLADITA ROJA 163.80 499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:17.333921 3 0 1 0000406 \N \N f f \N \N 11 01010101 422 PAN-422 PNT-0003 PANTALON RAYAS EVENT 213.85 699.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:19.35212 3 0 1 0000422 \N \N f f \N \N 8 01010101 408 SHO-408 SHO-0001 SHORT BLANCO, NEGRO Y AMARILLO DE VESTIR MICHELLE 162.00 499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:19.915304 3 0 1 0000408 \N \N f f \N \N 2 01010101 407 SHO-407 SHO-0004 SHORT AZUL Y NEGRO MEZCLILLA DAZZ 162.00 499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:20.077141 3 0 1 0000407 \N \N f f \N \N 2 01010101 411 SHO-411 SHOR-0001 SHORT JEALOUS CON CORDON AZUL 321.60 729.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:20.199399 3 0 1 0000411 \N \N f f \N \N 2 01010101 413 SHO-413 SHOR-0002 SHORT LC MEZCLILLA FAMINGO 154.70 499.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:20.218899 3 0 1 0000413 \N \N f f \N \N 2 01010101 414 SHO-414 SHOR-0003 SHORT NEGRO RAYAS COLORES LELIS 263.90 659.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:20.236171 3 0 1 0000414 \N \N f f \N \N 2 01010101 412 SHO-412 SHR-0002 SHORT BALBOA MEZCLILLA NEGRO 218.40 569.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:20.292038 3 0 1 0000412 \N \N f f \N \N 2 01010101 424 VES-424 V-0019 VESTIDO AZUL MEBON MEZCLILLA CORTO 230.00 869.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:20.868885 3 0 1 0000424 \N \N f f \N \N 12 01010101 108 BLU-108 B-0012 FLOREADA ROSA MICHEL 127.89 429.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862686 2019-02-04 09:10:12.878297 3 0 1 0000108 \N \N f f \N \N 7 01010101 104 BLU-104 BLU-0004 TIRANTES NUDE MICHEL 111.75 369.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862682 2019-02-04 09:10:15.57751 3 0 1 0000104 \N \N f f \N \N 7 01010101 103 BLU-103 BLU-0005 ROSA SIN MANGA MICHEL 111.75 429.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862681 2019-02-04 09:10:15.599922 3 0 1 0000103 \N \N f f \N \N 7 01010101 125 BLU-125 BLU-0038 PANTI NEGRA DE ENCAJE LETTE 170.00 489.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862703 2019-02-04 09:10:15.736947 3 0 1 0000125 \N \N f f \N \N 7 01010101 124 BLU-124 BLU-0039 PANTI NEGRA CON DESTELLOS DORADO DAY G 160.00 459.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862702 2019-02-04 09:10:15.760992 3 0 1 0000124 \N \N f f \N \N 7 01010101 105 BLU-105 BLU-0050 AZUL REY MICHEL 111.75 429.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862683 2019-02-04 09:10:15.853501 3 0 1 0000105 \N \N f f \N \N 7 01010101 123 BLU-123 BLU-0058 PANTI FLOREADO TRANSPARENTE DAY G 160.00 449.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862701 2019-02-04 09:10:15.941263 3 0 1 0000123 \N \N f f \N \N 7 01010101 136 BLU-136 BLS-0003 BLUSA EVENT ROSA VIEJO 168.32 489.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862714 2019-02-04 09:10:14.836157 3 0 1 0000136 \N \N f f \N \N 7 01010101 193 FAL-193 F-0015 MEZQUILLA LARGA DE UN LADO BALBOA 200.00 699.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862771 2019-02-04 09:10:17.003701 3 0 1 0000193 \N \N f f \N \N 11 01010101 488 COL-488 CO-0001 COLLAR OJO 399.00 699.00 \N \N \N \N f t \N 1 2019-02-23 19:55:36.279843 2019-02-23 19:55:36.368456 3 0 0 0000488 \N \N f f \N \N 17 01010101 489 VES-489 VES-0026 VESTIDO LARGO NEGRO CON FLORES 230.00 460.00 \N \N \N \N f t \N 1 2019-02-23 20:09:45.666691 2019-02-23 20:09:45.725915 3 0 0 0000489 \N \N f f \N \N 12 01010101 106 BLU-PRM-640 BLU-0001 BLANCA CORTE CAMPESINA MICHEL 120.00 399.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862684 2019-07-31 00:36:55.073995 3 0 1 0000106 \N \N f f \N \N 20 01010101 491 VES-491 VES-0017 VESTIDO GRIS CON FLORES 230.00 999.00 \N \N \N \N f t \N 1 2019-02-23 20:12:41.438643 2019-02-23 20:12:41.497187 3 0 0 0000491 \N \N f f \N \N 12 01010101 546 BOL-546 AJIR873 BOLSA AZUL REY CLOE 595.00 1190.00 \N \N \N \N f t \N 1 2019-04-16 20:33:08.378852 2019-04-16 20:33:08.449994 3 0 0 0000546 \N \N f f \N \N 6 01010101 547 ZAP-547 LAET768 BOTAS CLOE 1199.50 2399.00 \N \N \N \N f t \N 1 2019-04-16 20:34:33.429816 2019-04-16 20:34:33.485262 3 0 0 0000547 \N \N f f \N \N 13 01010101 490 VES-490 V-0011 VESTIDO NARANJA 230.00 999.00 \N \N \N \N f t \N 1 2019-02-23 20:10:56.630135 2019-05-20 21:48:42.62558 3 0 0 0000490 \N \N f f \N \N 12 01010101 751 VES-751 VST-0053 APEACH GABARDINA COLOR ROSA PALO ST-NJ60062 430.00 1099.00 \N \N \N \N f t \N 1 2019-10-10 20:59:46.038586 2019-11-05 20:40:39.495833 3 0 0 0000751 \N \N f f \N IMG_3040.JPG 12 01010101 99 BLU-PRM-640 BL-0011 MANGA LARGA CON LUNAS Y ESTRELLAS THE MOON 349.00 849.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862677 2019-07-31 01:01:50.603563 3 0 1 0000099 \N \N f f \N \N 20 01010101 638 BLU-638 BLX-0030 BLUSA APEACH CON HOJAS DE PALMERA 247.00 619.00 \N \N \N \N f t \N 1 2019-07-23 19:35:57.327036 2019-07-23 22:22:48.258429 3 0 0 0000638 \N \N f f \N BLX-0030.png 7 01010101 636 VES-636 VST-0040 VESTIDO APEACH BLANCON CON CADENA, CINTURON CON DORADO 313.50 829.00 \N \N \N \N f t \N 1 2019-07-23 19:33:28.116434 2019-07-23 22:29:39.345475 3 0 0 0000636 \N \N f f \N VST-0040.png 12 01010101 637 JUM-637 JUM-0011 JUMPER APEACH VERDE CON FLORES 285.00 799.00 \N \N \N \N f t \N 1 2019-07-23 19:34:48.992627 2019-07-23 22:47:03.999749 3 0 0 0000637 \N \N f f \N JUM-0011.png 1 01010101 116 BLU-PRM-640 B-0090 BLANCA DE UNA MANGA LYVELI 178.60 449.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862694 2019-07-31 01:03:22.143578 3 0 1 0000116 \N \N f f \N \N 20 01010101 110 BLU-PRM-640 B-0025 CAMISERA MANGA LARGA DURAZNO NYLON 268.00 699.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862688 2019-07-31 01:05:23.499134 3 0 1 0000110 \N \N f f \N \N 20 01010101 120 BLU-PRM-640 BLU-0043 NEGRA FLOREADA CORTE CAMPESINA MICHEL 111.00 399.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862698 2019-07-31 01:07:03.835145 3 0 1 0000120 \N \N f f \N \N 20 01010101 100 BLU-PRM-640 BLU-0036 AZUL MARINO CON FLORES AMARILLAS PALACIO 110.10 399.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862678 2019-07-31 01:12:12.551196 3 0 1 0000100 \N \N f f \N \N 20 01010101 55 BOL-55 DHOT186 BOLSA CLOE 849.50 1699.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862633 2019-09-04 01:29:05.50687 3 0 1 0000055 \N \N f f \N satchel-en-charol-con-colgante-de-flecos-cloe-mujer-D_NQ_NP_720938-MLM30065620106_042019-F.jpg 6 01010101 635 BLU-635 BLX-0029 M2 BLUSA ROSA DE TIRANTE 237.50 569.00 \N \N \N \N f t \N 1 2019-07-23 19:31:39.008349 2019-09-04 21:04:10.029079 3 0 0 0000635 \N \N f f \N IMG_2426.jpg 7 01010101 753 BLU-753 BLS-0083 BLUSA APAECH COLOR TINTA CON LENTEJUELA ST-YT6162 290.00 729.00 \N \N \N \N f t \N 1 2019-10-10 21:20:54.132485 2019-10-11 04:37:59.488023 3 0 0 0000753 \N \N f f \N IMG_2961_2869_.jpg 7 01010101 410 SHO-410 SHO-0021 SHORT NEGRO DE VESTIR CON MOÑO DO + BE 235.00 599.00 \N \N \N \N f t \N 0 2019-02-03 00:00:00 2019-10-11 20:36:49.251739 3 0 1 0000410 \N \N f f \N \N 2 01010101 815 COL-815 ARE-0006 ARETE PLATEADO Y DORADO DE ESTRELLA 92.00 229.00 \N \N \N \N f t \N 1 2019-10-19 19:07:58.574298 2019-10-19 19:07:58.680042 3 0 0 0000815 \N \N f f \N \N 17 01010101 119 BLU-909 BLU-0048 GRIS CORTE CAMPESINA FLOREADA HAUTE MONDE 120.00 399.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862697 2019-11-03 19:20:27.855427 3 0 1 0000119 \N \N f f \N \N 7 01010101 293 BLU-293 B-0010 BLUSA COLORES TYCHE SE AMARRA DEL CUELLO 198.00 569.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:12.782947 3 0 1 0000293 \N \N f f \N \N 7 01010101 951 FAL-951 FLD-0020 FALDA PATOLES MUYMUY NEGRA ST-MM0875 260.00 699.00 \N \N \N \N f t \N 1 2019-11-20 20:54:35.275816 2020-01-22 20:19:39.039493 3 0 0 0000951 \N \N f f \N IMG_4276.jpg 11 01010101 548 VES-548 VST-0019 VESTIDO LARGO LATISTE ST.LD51032Z 749.50 1499.00 \N \N \N \N f t \N 1 2019-05-04 01:11:05.846527 2019-05-04 01:11:05.907527 3 0 0 0000548 \N \N f f \N \N 12 01010101 10 SHO-10 SHO-0003 SHORT MUYMUY AZUL MARINO CON RAYAS Y CINTO 299.00 689.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862588 2019-07-23 23:47:16.613063 3 0 1 0000010 \N \N f f \N SHO-0003.jpg 2 01010101 630 FAL-630 FAL-0010 FALDA MUYMUY ROSA NEON 275.50 699.00 \N \N \N \N f t \N 1 2019-07-23 19:22:21.757222 2019-07-24 00:22:00.765641 3 0 1 0000630 \N \N f f \N file4-9.jpeg 11 01010101 49 BOL-49 OZET948 BOLSA CLOE marron con ponpon 799.50 1599.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862627 2019-09-04 19:55:48.23874 3 0 1 0000049 \N \N f f \N PHOTO-2019-09-04-13-40-28.jpg 6 01010101 754 BLU-754 BLS-0073 BLUSA APAECH NEGRA CON LENTEJUELAS Y BOTONES ST-NT1644 330.00 825.00 \N \N \N \N f t \N 1 2019-10-10 21:26:26.989438 2019-10-10 21:26:27.024995 3 0 0 0000754 \N \N f f \N \N 7 01010101 816 COL-816 ARE-0007 ARETES DE DOS ESTRELLAS DORADO 50.00 125.00 \N \N \N \N f t \N 1 2019-10-19 19:14:45.98174 2019-10-19 19:14:46.019057 3 0 0 0000816 \N \N f f \N IMG_3109.jpg 17 01010101 817 COL-817 ARE-0008 ARETE GRIS CON PLATEADO 12.00 99.00 \N \N \N \N f t \N 1 2019-10-19 19:33:00.886714 2019-10-19 19:33:00.926325 3 0 0 0000817 \N \N f f \N IMG_3110.jpg 17 01010101 818 COL-818 ARE-0009 ARETE PIEDRA NEGRA 12.00 99.00 \N \N \N \N f t \N 1 2019-10-19 19:40:13.556742 2019-10-19 19:40:13.590885 3 0 0 0000818 \N \N f f \N IMG_3111.jpg 17 01010101 819 COL-819 ARE-0010 ARETES DE BRILLOS PLATEADOS 12.00 99.00 \N \N \N \N f t \N 1 2019-10-19 19:47:05.346685 2019-10-19 19:47:05.382663 3 0 0 0000819 \N \N f f \N IMG_3112.jpg 17 01010101 820 COL-820 ARE-0011 ARETES DE CORAZON DORADO 42.00 129.00 \N \N \N \N f t \N 1 2019-10-19 19:51:13.679578 2019-10-19 19:51:13.715533 3 0 0 0000820 \N \N f f \N IMG_3113.jpg 17 01010101 821 COL-821 ARE-0012 ARETE DORADO CON PIEDRA AZUL 46.00 199.00 \N \N \N \N f t \N 1 2019-10-19 19:56:35.592914 2019-10-19 19:56:35.641173 3 0 0 0000821 \N \N f f \N IMG_3114.jpg 17 01010101 822 COL-822 ARE-0013 ARETE CUADRADO PIEDRA NEGRA 41.00 169.00 \N \N \N \N f t \N 1 2019-10-19 19:58:52.297811 2019-10-19 19:58:52.331568 3 0 0 0000822 \N \N f f \N IMG_3115.jpg 17 01010101 823 COL-823 ARE-0015 ARETE PLATEADO LARGO DE HOJA 112.00 320.00 \N \N \N \N f t \N 1 2019-10-19 20:39:27.249181 2019-10-19 20:39:27.283064 3 0 0 0000823 \N \N f f \N IMG_3118.jpg 17 01010101 824 COL-824 ARE-0016 ARETE COLOR GRIS OBSCURO 38.00 170.00 \N \N \N \N f t \N 1 2019-10-19 20:41:33.838831 2019-10-19 20:41:33.888672 3 0 0 0000824 \N \N f f \N IMG_3121.jpg 17 01010101 825 COL-825 ARE-0014 ARETE DE PIEDRA ROSA 50.00 230.00 \N \N \N \N f t \N 1 2019-10-19 20:48:05.624489 2019-10-19 20:48:05.662198 3 0 0 0000825 \N \N f f \N IMG_3117__1_.jpg 17 01010101 826 COL-826 ARE-0016 ARETE DE PIEDRAS DE COLORES 61.00 210.00 \N \N \N \N f t \N 1 2019-10-19 20:49:59.550941 2019-10-19 20:49:59.589364 3 0 0 0000826 \N \N f f \N IMG_3119__1_.jpg 17 01010101 827 COL-827 ARE-0018 ARETE PIEDRA BLANCA 38.00 170.00 \N \N \N \N f t \N 1 2019-10-19 20:57:42.107539 2019-10-19 20:57:42.142817 3 0 0 0000827 \N \N f f \N IMG_3122.jpg 17 01010101 828 COL-828 ARE-0019 ARETE REDONDO DE ZIRCONIA 49.00 180.00 \N \N \N \N f t \N 1 2019-10-19 21:46:43.954634 2019-10-19 21:46:43.989218 3 0 0 0000828 \N \N f f \N IMG_3123.jpg 17 01010101 829 COL-829 ARE-0020 ARETE DE PLATEADO CUADRADO 41.00 180.00 \N \N \N \N f t \N 1 2019-10-19 21:49:15.652558 2019-10-19 21:49:15.688055 3 0 0 0000829 \N \N f f \N IMG_3124.jpg 17 01010101 830 COL-830 ARE-0021 ARETE DE CORAZON PLATEADO Y DORADO 41.00 180.00 \N \N \N \N f t \N 1 2019-10-19 21:56:42.540722 2019-10-19 21:56:42.575074 3 0 0 0000830 \N \N f f \N IMG_3125.jpg 17 01010101 831 COL-831 ARE-0022 ATERETES DE CORAZON Y PIEDRA 74.00 320.00 \N \N \N \N f t \N 1 2019-10-19 22:53:14.085555 2019-10-19 22:53:14.121445 3 0 0 0000831 \N \N f f \N IMG_3126.jpg 17 01010101 832 COL-832 ARE-0023 ATERES DE CORAZON Y PIEDRA ROSA 157.00 360.00 \N \N \N \N f t \N 1 2019-10-19 22:55:26.56659 2019-10-19 22:55:26.599542 3 0 0 0000832 \N \N f f \N IMG_3127__1_.jpg 17 01010101 833 COL-833 CO-0002 COLLAR DE CORAZON NEGRO Y PLATEADO 33.00 119.00 \N \N \N \N f t \N 1 2019-10-20 00:01:32.925723 2019-10-20 00:01:32.96289 3 0 0 0000833 \N \N f f \N \N 17 01010101 834 COL-834 CO-0003 COLLAR CORAZON NEGRO DORADO 56.00 169.00 \N \N \N \N f t \N 1 2019-10-20 00:02:44.636125 2019-10-20 00:02:44.671741 3 0 0 0000834 \N \N f f \N IMG_3143.jpg 17 01010101 835 COL-835 CO-0004 COLLAR COLOR ORO ROSADO DIJE CE CORAZON 86.00 229.00 \N \N \N \N f t \N 1 2019-10-20 00:08:47.37784 2019-10-20 00:08:47.418527 3 0 0 0000835 \N \N f f \N IMG_3134.jpg 17 01010101 836 COL-836 CO-0005 COLLAR ORO ROSADO CON DIJE DE CORAZON 99.00 249.00 \N \N \N \N f t \N 1 2019-10-20 00:10:28.229546 2019-10-20 00:10:28.264902 3 0 0 0000836 \N \N f f \N IMG_3136.jpg 17 01010101 837 COL-837 CO-0006 COLLAR ORO ROSADO DIJE DE DOS CORAZONES 67.00 199.00 \N \N \N \N f t \N 1 2019-10-20 00:14:05.980748 2019-10-20 00:16:31.799604 3 0 0 0000837 \N \N f f \N IMG_3138.jpg 17 01010101 838 COL-838 CO-0007 COLLAR COLOR PLATA DIJE DE TREBOL 86.00 239.00 \N \N \N \N f t \N 1 2019-10-20 00:16:17.331711 2019-10-20 00:16:17.367107 3 0 0 0000838 \N \N f f \N IMG_3139.jpg 17 01010101 948 BLU-948 BLS-0105 BLUSA TERCIOPELO NEGRA ST-9503\r\n 360.00 899.00 \N \N \N \N f t \N 1 2019-11-20 20:25:55.738049 2019-11-20 20:25:55.773232 3 0 0 0000948 \N \N f f \N PHOTO-2019-11-18-17-13-25__1_.jpg 7 01010101 839 COL-839 CO-0008 COLLAR PLATA CON DIJE DE CORONA 78.00 199.00 \N \N \N \N f t \N 1 2019-10-20 00:22:04.740648 2019-10-20 00:22:04.774868 3 0 0 0000839 \N \N f f \N IMG_3141.jpg 17 01010101 867 PAL-867 PLZ-0017 VALENTINE PALAZO NEGRO ST-Jo15304\r\n 470.00 1299.00 \N \N \N \N f t \N 1 2019-10-29 01:24:34.16828 2019-11-05 19:59:04.81727 3 0 0 0000867 \N \N f f \N PHOTO-2019-11-04-14-14-12__1_.jpg 9 01010101 755 VES-755 VST-0054 APEACH VESTIDO NEGRO DE LENTEJUELAS DORADAS ST-ND11375 420.00 1129.00 \N \N \N \N f t \N 1 2019-10-10 21:27:12.071446 2019-11-05 20:31:27.486122 3 0 0 0000755 \N \N f f \N PHOTO-2019-10-15-21-52-22__1_.jpg 12 01010101 946 BLU-946 BLS-0103 BLUSA DE TERCIOPELO NEGRA Y VIOLETA ST-9402TK\r\n 300.00 749.00 \N \N \N \N f t \N 1 2019-11-20 20:24:26.521437 2019-11-20 20:24:26.566006 3 0 0 0000946 \N \N f f \N PHOTO-2019-11-18-17-13-25.jpg 7 01010101 947 BLU-947 BLS-0104 BLUSA TERCIOPELA NEGRA ST-9298\r\n 360.00 899.00 \N \N \N \N f t \N 1 2019-11-20 20:25:13.444467 2019-11-20 20:25:13.478211 3 0 0 0000947 \N \N f f \N PHOTO-2019-11-18-17-13-24.jpg 7 01010101 492 BOL-492 UXDI213 MOCHILA CLOE 849.50 1699.00 \N \N \N \N f t \N 1 2019-02-24 01:25:27.11301 2020-01-07 20:40:41.267395 3 0 0 0000492 \N \N f f \N WIN_20200107_13_36_28_Pro.jpg 6 01010101 950 BLU-950 BLS-0102 BLUSA APEACH NEGRA Y CLAY ST-JT3319\r\n 280.00 699.00 \N \N \N \N f t \N 1 2019-11-20 20:30:16.958639 2019-11-20 20:30:17.001935 3 0 0 0000950 \N \N f f \N PHOTO-2019-11-04-14-14-07__2_.jpg 7 01010101 965 BOL-965 3BLCI19472 Briefcase rosa Y NEGRO de terciopelo\r\nBriefcase en terciopelo con técnica de capitoneado y construcción semi-rígida. Herraje al frente con detalle de material y asa larga de cadena de doble posición. 849.50 1699.00 \N \N \N \N f t \N 1 2019-12-06 17:41:57.696162 2019-12-06 17:41:57.696162 3 0 0 7509170777635 \N \N f f \N BBRT472_ROSA_1_828x1200.jpg 6 01010101 949 BLU-949 BLS-0101 BLUSA MUYMUY ST-99095 COLOR NGREA, TINTA Y VERDE\r\n 200.00 549.00 \N \N \N \N f t \N 1 2019-11-20 20:29:12.355513 2019-12-21 21:16:16.077748 3 0 0 0000949 \N \N f f \N 97cd3032-fe84-4c82-bf26-d9873806ada1.JPG 7 01010101 493 BLU-493 DEUANT DEUDA ANTERIOR 1850.00 3700.00 \N \N \N \N f t \N 1 2019-03-02 00:50:34.317079 2019-03-02 00:50:34.36258 3 0 0 0000493 \N \N f f \N \N 7 01010101 549 VES-549 VST-0020 VESTIDO BLANCO CON FLORES AZULES LD51151Z 699.50 1399.00 \N \N \N \N f t \N 1 2019-05-04 17:49:20.684017 2019-05-04 17:49:20.726325 3 0 0 0000549 \N \N f f \N \N 12 01010101 761 BLU-761 BLS-0074 BLUSA NYLON BLANCA Y NEGRA ST-T-997\r\n 170.00 459.00 \N \N \N \N f t \N 1 2019-10-11 05:22:03.310567 2019-10-11 05:22:03.350385 3 0 0 0000761 \N \N f f \N \N 7 01010101 552 BLU-552 BLS-0035 PANTIBLUSA CQBYCQ NEGRA ST.6297BW 239.50 479.00 \N \N \N \N f t \N 1 2019-05-04 18:20:38.74791 2019-05-04 18:20:38.80455 3 0 0 0000552 \N \N f f \N \N 7 01010101 553 CON-553 PLZ-0005 SET CQBYCQ ST.8912DW 599.50 1199.00 \N \N \N \N f t \N 1 2019-05-04 18:21:45.135364 2019-05-04 18:21:45.171056 3 0 0 0000553 \N \N f f \N \N 10 01010101 554 FAL-554 FLD-0006 FALDA CQBYCQ NEGRA ST.9025SW 414.50 829.00 \N \N \N \N f t \N 1 2019-05-04 18:23:45.32867 2019-05-04 18:23:45.371849 3 0 0 0000554 \N \N f f \N \N 11 01010101 556 BLU-556 BLS-0036 BLUSA ROSA NEON MUYMUY ST.MM0728 239.50 479.00 \N \N \N \N f t \N 1 2019-05-04 18:38:01.806304 2019-05-04 18:38:01.843907 3 0 0 0000556 \N \N f f \N \N 7 01010101 639 VES-639 VES-0003 VESTIDO TIPO COLOMBIANO, ROSA VIEJO, NEGRO Y LILA 300.00 600.00 \N \N \N \N f t \N 1 2019-07-29 23:15:23.376529 2019-07-29 23:15:23.425931 3 0 1 0000639 \N \N f f \N \N 12 01010101 551 VES-551 VST-0022 VESTIDO LATISTE NUDE CON ROSAS ROJAS ST.LD51140A 799.50 1599.00 \N \N \N \N f t \N 1 2019-05-04 18:01:44.009782 2019-09-04 21:15:37.739332 3 0 0 0000551 \N \N f f \N 451f4571-0b09-4f33-af19-391784842581.JPG 12 01010101 550 VES-550 VST-0021 VESTIDO LATISTE AQUA ST.LD51068B 734.50 1469.00 \N \N \N \N f t \N 1 2019-05-04 17:56:07.823792 2019-09-04 21:17:37.208844 3 0 0 0000550 \N \N f f \N IMG_2428.PNG 12 01010101 557 SHO-557 SHR-0009 SHORT NEGRO MUYMUY ST.MM99002 274.50 549.00 \N \N \N \N f t \N 1 2019-05-04 18:40:21.093933 2019-05-04 18:41:09.469051 3 0 0 0000557 \N \N f f \N \N 2 01010101 559 FAL-559 FLD-0007 FALDA NEGRA SHE+SKY ST.SL9868 289.50 579.00 \N \N \N \N f t \N 1 2019-05-04 18:50:35.97522 2019-05-04 18:50:36.02789 3 0 0 0000559 \N \N f f \N \N 11 01010101 752 CON-752 CJT-0002 CONJUNTO APEACH NEGRO BRILLOSO ST-7494 450.00 1129.00 \N \N \N \N f t \N 1 2019-10-10 21:10:47.844767 2019-11-05 20:47:46.968927 3 0 0 0000752 \N \N f f \N IMG_3049.JPG 10 01010101 710 VES-710 VST-0051 MUYMUY COLOR NEGRO PLIZADO 401.00 1199.00 \N \N \N \N f t \N 1 2019-09-05 03:25:44.145211 2019-09-05 03:27:54.97703 3 0 0 0000710 \N \N f f \N PHOTO-2019-09-04-20-50-05_2616___2_.jpg 12 01010101 562 VES-562 VST-0024 VESTIDO NEGRO APEACH ST.CD21209 399.50 799.00 \N \N \N \N f t \N 1 2019-05-04 19:00:07.530861 2019-05-04 19:00:07.567584 3 0 0 0000562 \N \N f f \N \N 12 01010101 563 BLU-563 BLS-0037 BLUSA BLANCA APEACH ST.NT1485 284.50 569.00 \N \N \N \N f t \N 1 2019-05-04 19:01:39.921863 2019-05-04 19:01:39.96582 3 0 0 0000563 \N \N f f \N \N 7 01010101 564 VES-564 VST-0025 VESTIDO BLANCO/MULTI APEACH ST.CD21197 549.50 1099.00 \N \N \N \N f t \N 1 2019-05-04 19:02:57.866396 2019-05-04 19:02:57.907362 3 0 0 0000564 \N \N f f \N \N 12 01010101 561 BLU-561 BLS-0037 BLUSA BLANCA APEACH ST.CD21209 399.50 799.00 \N \N \N \N f t \N 0 2019-05-04 18:56:51.327587 2019-05-04 19:37:22.81695 3 0 0 0000561 \N \N f f \N \N 7 01010101 555 VES-555 VST-0023 VESTIDO CQBYCQ BLANCO CON CAFE ST.9145DW 489.50 979.00 \N \N \N \N f t \N 1 2019-05-04 18:26:53.173057 2019-05-20 17:19:11.344511 3 0 0 0000555 \N \N f f \N file3-3.jpeg 12 01010101 558 JUM-558 JUM-0002 JUMPER NEGRO SHE+SKY ST.SL9388 449.50 899.00 \N \N \N \N f t \N 1 2019-05-04 18:48:28.926786 2019-05-20 17:23:45.900321 3 0 0 0000558 \N \N f f \N file2-2.jpeg 1 01010101 565 BLU-565 BLS-0038 BLUSA AMARILLA APEACH ST.NT1483 344.50 689.00 \N \N \N \N f t \N 1 2019-05-04 19:04:20.888152 2019-05-20 17:31:39.655633 3 0 0 0000565 \N \N f f \N file5-2.jpeg 7 01010101 560 BLU-560 BLS-0036 BLUSA ROSA FUCSIA APEACH ST. YT5853 284.50 569.00 \N \N \N \N f t \N 1 2019-05-04 18:53:31.08356 2019-05-20 17:36:36.26736 3 0 0 0000560 \N \N f f \N file-6.jpeg 7 01010101 764 VES-764 VST-0058 LATISTE LENTEJUELA MORADA 760.00 1899.00 \N \N \N \N f t \N 1 2019-10-11 05:26:40.493717 2019-10-11 05:26:40.532064 3 0 0 0000764 \N \N f f \N IMG_2957_2861_.jpg 12 01010101 756 VES-756 VST-0056 JEALOUS TOMATE COLOR NEGRO CUADROS DORADOS ST-JD6704\r\n 470.00 1199.00 \N \N \N \N f t \N 1 2019-10-11 02:55:51.22508 2019-10-11 04:24:24.434195 3 0 0 0000756 \N \N f f \N IMG_2956_2856_.jpg 12 01010101 759 BLU-759 BLS-0076 PANTIBLUSA JEALOUS TOMATO COLOR NEGRA Y PLATEADA ST-JT8710\r\n 295.00 759.00 \N \N \N \N f t \N 1 2019-10-11 03:00:34.547552 2019-10-11 04:42:41.496218 3 0 0 0000759 \N \N f f \N IMG_2953_2850_.jpg 7 01010101 757 BLU-757 BLS-0078 BLUSA JEULOUS TOMATO MAGENTA DE PIEL ST-JT-8536\r\n 310.00 799.00 \N \N \N \N f t \N 1 2019-10-11 02:57:35.461249 2019-10-11 04:44:48.771088 3 0 0 0000757 \N \N f f \N IMG_2955_2854_.jpg 7 01010101 758 BLU-758 BLS-0080 BLUSA JEALOUS TOMATO HOT PINK VICTORIA SECRET ST-JT8715\r\n 280.00 699.00 \N \N \N \N f t \N 1 2019-10-11 02:59:08.540953 2019-10-11 04:47:46.503665 3 0 0 0000758 \N \N f f \N IMG_2954_2852_.jpg 7 01010101 966 BOL-966 1BLCI19308 Cross Body Cloe 1BLCI193\r\nMaterial liso con acabado brillante y técnica de abullonado en diagonal. Construcción rígida. Broche con logo de metal al frente. 799.50 1599.00 \N \N \N \N f t \N 1 2019-12-06 17:48:04.721108 2019-12-06 17:48:04.721108 3 0 0 7509170766707 \N \N f f \N BCRL308_TINT_1_300x435.jpg 6 01010101 967 BOL-967 1BLCI19333 Backpack negro con embozado diagonal\r\nEl logo de Cloe y líneas diagonales le dan un detalle sobrio a este diseño monocromático. Ideal para ser tu accesorio del día a día gracias a las mil combinaciones que puedes lograr con él.\r\n\r\n 799.50 1599.00 \N \N \N \N f t \N 1 2019-12-11 00:05:59.479144 2019-12-11 00:05:59.479144 3 0 0 7509170767476 \N \N f f \N BBAL333_NEGR_1_828x1200.jpg 6 01010101 763 VES-763 VST-0057 LATISTE LENTEJUELAS AZUL\r\n 760.00 1899.00 \N \N \N \N f t \N 1 2019-10-11 05:25:21.073525 2019-10-30 02:08:40.385541 3 0 0 0000763 \N \N f f \N PHOTO-2019-10-15-21-54-23.jpg 12 01010101 762 VES-762 VST-0055 SANJOY VESTIDO ROSA CON PERLAS ST-SJ-18251\r\n 330.00 839.00 \N \N \N \N f t \N 1 2019-10-11 05:23:59.181166 2019-11-05 20:30:15.942116 3 0 0 0000762 \N \N f f \N PHOTO-2019-10-15-21-54-33.jpg 12 01010101 840 VES-840 VST-0061 LATISTE ST-CD2232 ENCAJE NEGRO 760.00 1899.00 \N \N \N \N f t \N 1 2019-10-20 16:42:53.562854 2019-11-05 20:43:26.59941 3 0 0 0000840 \N \N f f \N IMG_3288.PNG 12 01010101 760 BLU-760 BLS-0081 APEACH LENTEJUELAS\r\n 290.00 729.00 \N \N \N \N f t \N 1 2019-10-11 03:05:31.017362 2019-11-05 20:45:02.687552 3 0 0 0000760 \N \N f f \N IMG_3045.JPG 7 01010101 796 CON-796 CJT-0003 CONJUNTOS SANJOY PLATEADO Y NEGRO 460.00 1199.00 \N \N \N \N f t \N 1 2019-10-13 16:44:02.635239 2019-11-05 20:46:05.414133 3 0 0 0000796 \N \N f f \N PHOTO-2019-10-15-21-54-32__6_.jpg 10 01010101 959 PAN-959 PNT-0022 PANTALON STRECH NEGRO MUYMUY ST-1473\r\n 350.00 899.00 \N \N \N \N f t \N 1 2019-11-26 22:42:59.241057 2019-12-21 21:15:44.383164 3 0 0 0000959 \N \N f f \N IMG_3692.JPG 8 01010101 957 VES-957 VST-0068 VESTIDO DORADO BLUE S ST-D92404\r\n 570.00 1449.00 \N \N \N \N f t \N 1 2019-11-26 22:35:44.176744 2019-12-21 21:23:10.723824 3 0 0 0000957 \N \N f f \N IMG_3745.JPG 12 01010101 955 VES-955 VST-0066 VESTIDO MAGENTA BLUE S ST-D92415\r\n 400.00 999.00 \N \N \N \N f t \N 1 2019-11-26 22:34:15.106728 2019-12-21 21:24:18.229526 3 0 0 0000955 \N \N f f \N IMG_3748.JPG 12 01010101 956 VES-956 VST-0067 VESTIDO MAVUE BLUE S ST-D92357\r\n 350.00 899.00 \N \N \N \N f t \N 1 2019-11-26 22:34:59.903708 2019-12-21 21:24:49.640866 3 0 0 0000956 \N \N f f \N IMG_3747.JPG 12 01010101 781 FAL-781 F-0016 FALDA ATHINA LENTEJUELAS\r\n 494.50 989.00 \N \N \N \N f t \N 1 2019-10-11 19:17:55.982519 2019-10-11 19:17:56.020039 3 0 0 0000781 \N \N f f \N \N 11 01010101 494 CON-494 BIKINIS 449.50 899.00 \N \N \N \N f t \N 1 2019-03-02 17:10:27.07906 2019-04-27 01:03:00.117187 3 0 0 0000494 \N \N f f \N D1764E99-5670-44B9-AF27-AC2EC4B430B5.jpeg 10 01010101 369 PER-369 ANTIBACTERIAL ANTIBACTERIAL 23.00 49.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-05-20 19:53:02.104733 3 0 1 0000369 \N \N f f \N ANTIBACTERIAL.jpg 15 01010101 566 BLU-PRM-640 BLU-0023 BLUSA NEGRA TRANSPARENTE FLOREADA HAUTE MODE 199.50 399.00 \N \N \N \N f t \N 1 2019-05-15 18:03:58.596241 2019-07-31 00:50:28.371856 3 0 0 0000566 \N \N f f \N \N 20 01010101 640 JUM-640 V-0070 JUMPER OLIVO BRILLOS 749.50 1499.00 \N \N \N \N f t \N 1 2019-08-18 01:25:00.655146 2019-08-18 01:25:00.719385 3 0 0 0000640 \N \N f f \N \N 1 01010101 711 VES-711 ves-0046 vestido rojo abierto espalda 351.60 879.00 \N \N \N \N f t \N 1 2019-09-11 19:56:50.229254 2019-09-11 19:56:50.288952 3 0 0 0000711 \N \N f f \N \N 12 01010101 909 BOL-909 1BLCI19325 Bolso tipo cruzado en material liso, construcción estructurada, herraje en acabado brillante al costado, asa larga removible y ajustable adicional. 799.50 1599.00 \N \N \N \N f t \N 1 2019-11-06 17:50:18.799157 2019-11-06 17:50:18.799157 3 0 0 7509170767230 \N \N f f \N BCRL325_NEGR_1_300x435.jpg 6 01010101 783 CHA-865 CHA-01 SUDADERA BRILLOS WILD Y NEGRA 340.00 799.00 \N \N \N \N f t \N 1 2019-10-11 21:20:23.084535 2019-11-05 20:27:44.772139 3 0 0 0000783 \N \N f f \N PHOTO-2019-10-15-21-54-34.jpg 24 01010101 769 CHA-865 CHA-0001 CAMARRA DE PIEL COMME\r\n 617.50 1235.00 \N \N \N \N f t \N 1 2019-10-11 19:08:10.446104 2020-01-22 20:38:48.24367 3 0 0 0000769 \N \N f f \N IMG_4283.jpg 24 01010101 768 BLU-768 S-0008 CHAMARRA MUYMUY LENTEJUELA COM ESTRELLA\r\n 399.50 799.00 \N \N \N \N f t \N 1 2019-10-11 19:07:19.320653 2019-10-11 19:07:19.354302 3 0 0 0000768 \N \N f f \N \N 7 01010101 968 BOL-968 1BLCO19037 MOCULINA NEGRA COE 749.50 1499.00 \N \N \N \N f t \N 1 2019-12-17 23:34:26.589883 2019-12-23 20:23:25.273712 3 0 0 0000968 \N \N f f \N backpack-cloe-con-tassel-tienda-oficial-D_NQ_NP_848681-MLM32573908095_102019-F.jpg 6 01010101 415 PAN-415 PANTALON COLOMBIANO PANTALON MEZCLILLA COLOMBIANOS 680.00 999.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2020-01-23 00:36:14.315421 3 0 1 0000415 \N \N f f \N IMG_4269.jpg 8 01010101 772 BLU-772 B-0105 BLUSA SHE + SKY BLANCA \r\n 349.50 699.00 \N \N \N \N f t \N 1 2019-10-11 19:10:20.589029 2019-10-11 19:10:20.621018 3 0 0 0000772 \N \N f f \N \N 7 01010101 773 BLU-773 B-0109 PANTIBLUSA BLUE S AZUL REY DE TRECIOPELO\r\n 239.50 479.00 \N \N \N \N f t \N 1 2019-10-11 19:11:25.335952 2019-10-11 19:11:25.372958 3 0 0 0000773 \N \N f f \N \N 7 01010101 774 VES-774 V-0069 VESTIDO LATISTE ROJO DE LENTEJUELA\r\n 599.50 1199.00 \N \N \N \N f t \N 1 2019-10-11 19:12:08.946405 2019-10-11 19:12:08.985353 3 0 0 0000774 \N \N f f \N \N 12 01010101 778 VES-778 V-0064 VESTIDO LATISTE LENTEJUELA NEGRO Y DORADO\r\n 799.50 1599.00 \N \N \N \N f t \N 1 2019-10-11 19:15:30.050851 2019-12-21 21:36:31.477667 3 0 0 0000778 \N \N f f \N IMG_3564.jpg 12 01010101 776 VES-776 V-0072 VESTIDO LATISTE LENTEJUELA NEGRO,DORADO Y ROJO\r\n 699.50 1399.00 \N \N \N \N f t \N 1 2019-10-11 19:13:58.323121 2019-10-11 19:13:58.368888 3 0 0 0000776 \N \N f f \N \N 12 01010101 777 VES-777 V-0071 VESTIDO LATISTE NEGRO BRILLOS\r\n 749.50 1499.00 \N \N \N \N f t \N 1 2019-10-11 19:14:46.209276 2019-10-11 19:14:46.241595 3 0 0 0000777 \N \N f f \N \N 12 01010101 775 JUM-775 VE-0053 JUMPER BLUE B NEGRO LENTEJUELA GOTA DORADA\r\n 674.50 1399.00 \N \N \N \N f t \N 1 2019-10-11 19:13:04.706913 2019-12-22 19:05:25.611688 3 0 0 0000775 \N \N f f \N IMG_3566.jpg 1 01010101 779 VES-779 VES-0039 VESTIDO GLARE NEGRO CON PLATEADO\r\n 449.50 899.00 \N \N \N \N f t \N 1 2019-10-11 19:16:32.113691 2019-10-11 19:16:32.145773 3 0 0 0000779 \N \N f f \N \N 12 01010101 780 JUM-780 VE-0045 JUMPER APEACH LENTEUELA DORADA\r\n 649.50 1299.00 \N \N \N \N f t \N 1 2019-10-11 19:17:10.00172 2019-10-11 19:17:10.045885 3 0 0 0000780 \N \N f f \N \N 1 01010101 844 COL-844 DIA-0004 DIADEMA NEGRA CON PERLA Y PIEDRAS 161.00 299.00 \N \N \N \N f t \N 1 2019-10-21 17:23:24.495434 2019-10-21 17:23:24.532945 3 0 0 0000844 \N \N f f \N IMG_3177.jpg 17 01010101 784 PAN-784 PANX-0006 LEGGINS PIEL NEGRO APEACH 260.00 599.00 \N \N \N \N f t \N 1 2019-10-11 21:26:16.873917 2019-10-11 21:26:16.906286 3 0 0 0000784 \N \N f f \N \N 8 01010101 782 SHO-782 SHO-0021 SHORT DE PIEL PLATA Y MORADO 210.00 569.00 \N \N \N \N f t \N 1 2019-10-11 19:56:35.572125 2019-10-11 21:32:17.437889 3 0 0 0000782 \N \N f f \N \N 2 01010101 973 BOL-973 BLU-0027 PANTIBLISA TERCIPELO ROSA 224.50 449.00 \N \N \N \N f t \N 1 2020-02-05 02:21:48.872292 2020-02-05 02:21:48.941291 3 0 0 0000973 \N \N f f \N \N 6 01010101 785 SHO-785 SHO-0022 SHORT PIEL NEGRO Y DORADO DUCHEES 224.20 599.00 \N \N \N \N f t \N 0 2019-10-11 22:03:44.758085 2019-10-11 22:06:36.589332 3 0 0 0000785 \N \N f f \N \N 2 01010101 786 SHO-786 SHO-0022 SHORT DE PIEL DORADO Y NEGRO DUCHEES 224.20 599.00 \N \N \N \N f t \N 1 2019-10-11 22:07:36.511686 2019-10-11 22:07:36.55628 3 0 0 0000786 \N \N f f \N \N 2 01010101 841 COL-841 DIA-0001 DIADEMA NEGRA Y ROSA CON FLORES DE CRISTAL 68.00 179.00 \N \N \N \N f t \N 1 2019-10-21 17:19:52.320079 2019-10-21 17:19:52.373006 3 0 0 0000841 \N \N f f \N IMG_3175__2_.jpg 17 01010101 842 COL-842 DIA-0002 DIADEMA NEGRA PIEDRAS ROJA Y ROSA 48.00 129.00 \N \N \N \N f t \N 1 2019-10-21 17:21:04.427355 2019-10-21 17:21:04.461272 3 0 0 0000842 \N \N f f \N IMG_3176.jpg 17 01010101 843 COL-843 DIA-0003 DIADEMA DORADA Y PLATEADA CON PERLAS 32.00 99.00 \N \N \N \N f t \N 1 2019-10-21 17:22:12.714804 2019-10-21 17:22:12.749957 3 0 0 0000843 \N \N f f \N IMG_3184.jpg 17 01010101 846 COL-846 DIA-0006 DIADEMA PLATA CON PERLAS Y PIEDRAS 26.00 75.00 \N \N \N \N f t \N 1 2019-10-21 17:28:31.372064 2019-10-21 17:28:31.409149 3 0 0 0000846 \N \N f f \N IMG_3185.jpg 17 01010101 847 COL-847 DIA-0007 DIADEMA COLOR PLOMO 28.00 75.00 \N \N \N \N f t \N 1 2019-10-21 17:29:26.098493 2019-10-21 17:29:26.145952 3 0 0 0000847 \N \N f f \N IMG_3179.jpg 17 01010101 848 COL-848 DIA-0008 DIADEMA NEGRA CON PIERDA PLATEADAS 23.00 75.00 \N \N \N \N f t \N 1 2019-10-21 17:30:34.355424 2019-10-21 17:30:34.391824 3 0 0 0000848 \N \N f f \N IMG_3181.jpg 17 01010101 850 COL-850 DIA-0010 DIADEMA NEGRA CON PERLAS 71.00 169.00 \N \N \N \N f t \N 1 2019-10-21 17:32:16.59602 2019-10-21 17:32:16.629487 3 0 0 0000850 \N \N f f \N IMG_3183.jpg 17 01010101 851 COL-851 DIA-0011 DIADEMA NEGRA Y AZUL CON PERLAS 38.00 99.00 \N \N \N \N f t \N 1 2019-10-21 17:33:56.520983 2019-10-21 17:33:56.562396 3 0 0 0000851 \N \N f f \N IMG_3182.jpg 17 01010101 852 COL-852 DIA-0012 DIADEMA PLATEADA 23.00 65.00 \N \N \N \N f t \N 1 2019-10-21 17:35:20.976898 2019-10-21 17:35:21.013451 3 0 0 0000852 \N \N f f \N IMG_3186.jpg 17 01010101 849 COL-849 DIA-0009 DIADEMA DOBLE CON PERLAS PERLAS 29.00 75.00 \N \N \N \N f t \N 1 2019-10-21 17:31:34.814853 2019-10-21 17:34:29.307774 3 0 0 0000849 \N \N f f \N IMG_3178.jpg 17 01010101 853 COL-853 DIA-0013 LIGAS DE TELA DE COLORES 13.00 49.00 \N \N \N \N f t \N 1 2019-10-21 17:36:03.895916 2019-10-21 17:36:03.927627 3 0 0 0000853 \N \N f f \N \N 17 01010101 845 COL-845 DIA-0005 DIADEMA NEGRA Y PLATEADA CON DORADO EN LA ORILLA 48.00 119.00 \N \N \N \N f t \N 1 2019-10-21 17:25:20.573751 2019-10-21 18:04:38.845463 3 0 0 0000845 \N \N f f \N IMG_3180.jpg 17 01010101 766 CHA-865 CHA-0008 CHAMARRA NYLON DE LENTEJUELA NEGRA\r\n 649.50 1299.00 \N \N \N \N f t \N 1 2019-10-11 19:05:32.909811 2020-01-22 20:44:33.319349 3 0 0 0000766 \N \N f f \N IMG_4280.jpg 24 01010101 964 BOL-964 1BLCI19336 Briefcase negro con acordeón\r\nEste pequeño briefcase Cloe es todo lo que necesitas esta temporada, tiene el tamaño perfecto y la estructura rígida que tanto te gusta. Este bolso es una pequeña obra de arte que debe ser tuya. 899.50 1799.00 \N \N \N \N f t \N 1 2019-12-06 17:36:32.500374 2019-12-06 20:40:14.095413 3 0 0 7509170767568 \N \N f f \N BBRL336_NEGR_1_300x435.jpg 6 01010101 969 CHA-969 CHA-0006 CHAMARRA DE PIEL MICHEL 439.50 879.00 \N \N \N \N f t \N 1 2019-12-24 23:49:52.790936 2019-12-24 23:49:52.844035 3 0 0 0000969 \N \N f f \N \N 24 01010101 416 PAN-416 PAN-0001 PANTALON NEGRO CON RAYAS EN LOS LADOS 380.00 980.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:18.866043 3 0 1 0000416 \N \N f f \N \N 8 01010101 417 PAN-417 PAN-0004 PANTALON LILA VALENTINE CON CINTO DE CORAZON 255.75 949.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:18.892219 3 0 1 0000417 \N \N f f \N \N 8 01010101 418 PAN-418 PANX-0001 PANTALON JEALOUS MEZCLILLA CON CINTO 340.80 899.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:19.057646 3 0 1 0000418 \N \N f f \N \N 8 01010101 419 PAN-419 PANX-0002 PANTALON RAYAS MOSTAZA LABANGA 192.00 699.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:19.081673 3 0 1 0000419 \N \N f f \N \N 8 01010101 420 PAN-420 PANX-0003 PANTALON OVEROL MOSTAZA 273.00 839.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:19.105184 3 0 1 0000420 \N \N f f \N \N 8 01010101 421 PAN-421 PANX-0004 PANTALON VALENTINE NEGRO Y ROSA 245.70 799.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:19.130026 3 0 1 0000421 \N \N f f \N \N 8 01010101 425 VES-425 V-0023 VESTIDO NEGRO MICHEL CORTO VOLADITO 258.87 949.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:20.990618 3 0 1 0000425 \N \N f f \N \N 12 01010101 495 BOL-495 OHIP174 BOLSA CLOE 849.50 1699.00 \N \N \N \N f t \N 1 2019-03-11 21:07:39.027679 2019-09-04 20:03:25.518405 3 0 0 0000495 \N \N f f \N ohip.jpg 6 01010101 426 VES-426 V-0038 VESTIDO NEGRO NYLON CON LETRAS ANIMAL PRINT 220.00 649.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:21.155921 3 0 1 0000426 \N \N f f \N \N 12 01010101 423 VES-423 V-0057 VESTIDO PURPURA LARGO VOILA CON OLANES ABAJO 478.50 1469.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:21.449974 3 0 1 0000423 \N \N f f \N \N 12 01010101 431 VES-431 VE-0001 VESTIDO GRIS NYLON CON MANGAS CUADRADAS Y MONITA 250.25 649.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-02-04 09:10:21.579864 3 0 1 0000431 \N \N f f \N \N 12 01010101 857 CHA-857 S-0020 CHAMARRA TINTA LA COALITION PELUCHE GRIS\r\n 649.50 1299.00 \N \N \N \N f t \N 1 2019-10-25 17:17:52.999735 2019-10-25 17:17:53.034752 3 0 0 0000857 \N \N f f \N IMG_3243.jpg 24 01010101 712 FAL-712 F-0022 FALDA NEGRA PLIZADA CON LETEJUELA SKY&BLUE 499.50 999.00 \N \N \N \N f t \N 1 2019-09-20 23:17:42.275835 2019-09-20 23:19:54.711898 3 0 0 0000712 \N \N f f \N IMG_0283.jpg 11 01010101 571 PAN-571 PNT-0008 PANTALON ROJO VALENTINE CAMPANA ST.P9350 399.50 799.00 \N \N \N \N f t \N 1 2019-05-16 23:30:11.074716 2019-05-16 23:30:11.134718 3 0 0 0000571 \N \N f f \N \N 8 01010101 787 BLU-787 BLS-0077 BLUSA DECO RAYADA COLORES TIERRA 270.00 649.00 \N \N \N \N f t \N 1 2019-10-12 18:42:55.63177 2019-10-12 18:42:55.670597 3 0 0 0000787 \N \N f f \N \N 7 01010101 573 PAL-573 PLZ-0007 PALAZZO VALENTINE LIMA DE ENCAJE ARRIBA ST.JP9815 624.50 1249.00 \N \N \N \N f t \N 1 2019-05-16 23:32:11.430782 2019-05-16 23:32:11.486541 3 0 0 0000573 \N \N f f \N \N 9 01010101 574 PAL-574 PLZ-0008 PALAZZO VALENTINE NEGRO CON ENCAJE EN ESPALDA ST.8268 599.50 1199.00 \N \N \N \N f t \N 1 2019-05-16 23:38:12.319918 2019-05-16 23:38:12.383465 3 0 0 0000574 \N \N f f \N \N 9 01010101 575 PAL-575 PLZ-0009 PALAZZO VALENTINE DE ENCAJE ARRIBA ST.JP9539 584.50 1169.00 \N \N \N \N f t \N 1 2019-05-16 23:40:29.382174 2019-05-16 23:40:29.525063 3 0 0 0000575 \N \N f f \N \N 9 01010101 576 VES-576 VST-0026 VESTIDO VALENTINE NEGRO ST.D9109 499.50 999.00 \N \N \N \N f t \N 1 2019-05-16 23:42:23.791019 2019-05-16 23:42:23.877548 3 0 0 0000576 \N \N f f \N \N 12 01010101 577 VES-577 VST-0027 VESTIDO CON OLANES AMARILLO JEALOUS ST.JD5474 449.50 899.00 \N \N \N \N f t \N 1 2019-05-16 23:44:44.445379 2019-05-16 23:44:44.503491 3 0 0 0000577 \N \N f f \N \N 12 01010101 579 JUM-579 JUM-0005 JUMPER APEACH GREEN MULTI ST. 80649 349.50 699.00 \N \N \N \N f t \N 1 2019-05-16 23:49:09.809792 2019-05-16 23:49:09.880679 3 0 0 0000579 \N \N f f \N \N 1 01010101 854 CHA-854 CH-0010 ABRIGO NEGRO CQ&CQ \r\n 949.50 1899.00 \N \N \N \N f t \N 1 2019-10-25 17:15:15.296768 2019-10-25 17:15:15.361424 3 0 0 0000854 \N \N f f \N IMG_3240.jpg 24 01010101 567 SHO-567 SHR-0010 SHORT DE MEZCLILLA CON CINTO APEACH ST.80620 289.50 579.00 \N \N \N \N f t \N 1 2019-05-16 23:22:35.728821 2019-05-20 17:21:20.462632 3 0 0 0000567 \N \N f f \N file3-2.jpeg 2 01010101 578 JUM-578 JUM-0004 JUMPER APEACH MINT MULTI ST.YP80466 399.50 799.00 \N \N \N \N f t \N 1 2019-05-16 23:47:09.6197 2019-05-20 17:23:18.172484 3 0 0 0000578 \N \N f f \N file1-2.jpeg 1 01010101 581 PAL-581 PLZ-0011 PALAZZO CQBYCQ RALLADO BLACK/WHITE ST.7788 699.50 1399.00 \N \N \N \N f t \N 1 2019-05-17 00:22:55.114045 2019-05-20 17:24:57.719071 3 0 0 0000581 \N \N f f \N file-5.jpeg 9 01010101 569 BLU-569 BLS-0040 PANTIBLUSA MANGA 3/4 BLUE.S ROSA NEON Y NEGRO ST.B91606 244.50 489.00 \N \N \N \N f t \N 1 2019-05-16 23:28:05.923371 2019-05-20 17:26:14.137 3 0 0 0000569 \N \N f f \N file2-3.jpeg 7 01010101 572 PAL-572 PLZ-0006 PALAZZO VALENTINE NEGRO CON GAZA ARRIBA ST.JP9125 599.50 1199.00 \N \N \N \N f t \N 1 2019-05-16 23:31:11.273181 2019-05-20 17:29:47.006139 3 0 0 0000572 \N \N f f \N file1-3.jpeg 9 01010101 568 BLU-568 BLS-0039 BLUSA AMARILLA DE ENCAJE APEACH ST.CT5853 334.50 669.00 \N \N \N \N f t \N 1 2019-05-16 23:26:52.484278 2019-05-20 17:31:03.842582 3 0 0 0000568 \N \N f f \N file-4.jpeg 7 01010101 570 BLU-570 BLS-0041 PANTIBLUSA BLUE.S VERDE NEON Y NEGRO ST.B91806 244.50 489.00 \N \N \N \N f t \N 1 2019-05-16 23:28:51.811437 2019-05-20 17:33:35.159449 3 0 0 0000570 \N \N f f \N file4-2.jpeg 7 01010101 580 PAL-580 PLZ-0010 PALAZZO CQBYCQ NEGRO OLGADO ST.7853 699.50 1399.00 \N \N \N \N f t \N 1 2019-05-17 00:20:43.305828 2019-05-20 17:40:24.291559 3 0 0 0000580 \N \N f f \N file-3.jpeg 9 01010101 432 VES-432 V-0038 VESTIDO GRIS NYLON CON MANGAS CUADRADAS Y CORAZON 250.25 649.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2019-07-24 00:49:31.60961 3 0 1 0000432 \N \N f f \N f9838e21-5ff4-4b57-af2f-cd5752fd4739.JPG 12 01010101 855 CHA-855 V-0047 GABARDINA TINTA CQ&CQ\r\n 929.50 1859.00 \N \N \N \N f t \N 1 2019-10-25 17:16:04.986643 2019-10-25 17:16:05.061287 3 0 0 0000855 \N \N f f \N IMG_3241.jpg 24 01010101 641 VES-PRM-641 prueba prueba 100.00 200.00 \N \N \N \N f t \N 0 2019-08-18 20:33:51.305719 2019-08-18 20:36:28.801711 3 0 0 0000641 \N \N f f \N \N 18 01010101 856 CHA-856 S-0023 CHAMARRA ROJA LA COALITION\r\n 549.50 1099.00 \N \N \N \N f t \N 1 2019-10-25 17:16:54.217648 2019-10-25 17:16:54.25388 3 0 0 0000856 \N \N f f \N IMG_3242.jpg 24 01010101 858 CHA-858 S-0021 CHAMARRA TINTA LA COALITION PELUCHE TINTO\r\n 649.50 1299.00 \N \N \N \N f t \N 1 2019-10-25 17:18:33.740645 2019-10-25 17:18:33.778164 3 0 0 0000858 \N \N f f \N IMG_3244.jpg 24 01010101 859 CHA-859 S-0022 CAMARRA BLANCA LA COALITION PELUCHE GRIS\r\n 649.50 1299.00 \N \N \N \N f t \N 1 2019-10-25 17:19:21.842988 2019-10-25 17:19:21.878091 3 0 0 0000859 \N \N f f \N IMG_3248.jpg 24 01010101 860 CHA-860 S-0001 SUETER THINKABLE BEIGE C/ CORALY VERDE\r\n 364.50 729.00 \N \N \N \N f t \N 1 2019-10-25 17:20:20.995547 2019-10-25 17:20:21.035128 3 0 0 0000860 \N \N f f \N IMG_3245.jpg 24 01010101 861 CHA-861 S-0014 SUETER THINKABLENEGRO CON PLATEADO\r\n 414.50 829.00 \N \N \N \N f t \N 1 2019-10-25 17:21:07.990328 2019-10-25 17:21:08.025489 3 0 0 0000861 \N \N f f \N IMG_3246.jpg 24 01010101 862 SHO-862 SHO-0020 SHORT DO+BE COLOR TINTO DE PIEL\r\n 399.50 799.00 \N \N \N \N f t \N 1 2019-10-25 17:22:31.038064 2019-10-25 17:22:31.097575 3 0 0 0000862 \N \N f f \N IMG_3247.jpg 2 01010101 910 VES-910 VST-0064 VESTIDO APEACH LENJEULA DORADA 290.00 899.00 \N \N \N \N f t \N 1 2019-11-09 19:15:25.054237 2019-11-09 19:15:25.096391 3 0 0 0000910 \N \N f f \N PHOTO-2019-10-15-21-54-23__1_.jpg 12 01010101 911 BLU-911 BLS-0100 BLUSA APEACH CON DORADO ST-CT7469 290.00 749.00 \N \N \N \N f t \N 1 2019-11-09 19:17:14.854547 2019-11-09 19:28:56.496755 3 0 0 0000911 \N \N f f \N PHOTO-2019-11-09-12-06-05.jpg 7 01010101 970 VES-970 VES-0043 VESTIDO GLOW PASSION AZUL REY\r\n 399.50 799.00 \N \N \N \N f t \N 1 2020-01-07 19:08:20.353146 2020-01-07 19:08:20.411372 3 0 0 0000970 \N \N f f \N \N 12 01010101 722 BOL-722 1BCLI19289 CANGURERA CLOE COLOR ROJA, NEGRA Y MULTICOLOR 949.50 1899.00 \N \N \N \N f t \N 1 2019-09-26 23:17:29.790533 2020-01-07 21:21:43.439632 3 0 0 7509170766158 \N \N f f \N BCAO289_ROJO_1_300x435.jpg 6 01010101 989 PAN-989 PNT-0024 PANTALON BLANCO CON HEBILLA CON PIEDRAS CIEN 292.18 799.00 \N \N \N \N f t \N 1 2020-02-19 00:25:06.57242 2020-04-30 22:58:50.951343 3 0 0 0000989 \N \N f f \N WhatsApp_Image_2020-04-29_at_12.04.32__2_.jpeg 8 01010101 1026 ACC-1026 DIA-0036 VALERINA FLORES 33.26 109.00 \N \N \N \N f t \N 1 2020-02-29 22:58:09.517705 2020-07-04 18:45:36.746901 3 0 0 0001026 \N \N f f \N val.jpg 17 01010101 991 FAL-991 FLD-0025 FALDA DE PATOLES COLORES TABA S63 219.16 699.00 \N \N \N \N f t \N 1 2020-02-19 01:22:27.230312 2020-05-03 00:23:25.255349 3 0 0 0000991 \N \N f f \N 123.png 11 01010101 1008 VES-1008 VST-0109 VESTIDO MULTICOLOR FLOREADO CQBYCQ ST.7748DW 347.70 999.00 \N \N \N \N f t \N 1 2020-02-19 20:23:11.481803 2020-05-02 01:30:04.016961 3 0 0 0001008 \N \N f f \N PHOTO-2020-03-02-16-02-04.jpg 12 01010101 999 VES-999 VST-0107 VESTIDO AZUL TURQUESA APEACH 334.90 849.00 \N \N \N \N f t \N 1 2020-02-19 02:34:03.513336 2020-05-02 00:37:38.422404 3 0 0 0000999 \N \N f f \N PHOTO-2020-04-28-14-28-55_-_copia.jpg 12 01010101 998 VES-998 VST-0106 VESTIDO ATIGRADO DE COLORES LATISTE 552.00 1169.00 \N \N \N \N f t \N 1 2020-02-19 02:28:40.641981 2020-05-01 23:47:16.785203 3 0 0 0000998 \N \N f f \N VST106.jpg 12 01010101 997 VES-997 VST-0105 VESTIDO BLANCO LATISTE 571.00 1169.00 \N \N \N \N f t \N 1 2020-02-19 02:24:19.55939 2020-05-01 01:02:50.553061 3 0 0 0000997 \N \N f f \N WhatsApp_Image_2020-03-18_at_13.42.31__1_.jpeg 12 01010101 1024 VES-1024 vst-0112 VESTIDO FLORES VOLADITO CREMA 360.00 899.00 \N \N \N \N f t \N 1 2020-02-25 00:15:07.201229 2020-04-30 23:14:39.054665 3 0 0 0001024 \N \N f f \N VST-0112.jpeg 12 01010101 1020 PAN-1020 PNT-0026 PANTALON NEGRO CUADROS COLORES BLUE S 283.65 729.00 \N \N \N \N f t \N 1 2020-02-19 22:54:03.176447 2020-05-02 00:10:44.788857 3 0 0 0001020 \N \N f f \N PHOTO-2020-04-29-12-04-31_-_copia__2_.jpg 8 01010101 993 BLU-993 BLS-0111 PANTI CQBYCQ BLANCA Y NEGRA 210.45 529.00 \N \N \N \N f t \N 1 2020-02-19 01:34:40.787384 2020-05-02 00:31:52.411702 3 0 0 0000993 \N \N f f \N PHOTO-2020-04-29-12-04-31_-_copia__2_.jpg 7 01010101 992 FAL-992 FLD-0026 FALDA ROSA VIEJO TABA S01 256.16 699.00 \N \N \N \N f t \N 1 2020-02-19 01:26:03.540342 2020-05-02 00:48:32.083031 3 0 0 0000992 \N \N f f \N PHOTO-2020-04-28-14-28-50.jpg 11 01010101 1022 VES-1022 VST-0110 VESTIDO FLORES ROJAS APEACH 340.00 869.00 \N \N \N \N f t \N 1 2020-02-25 00:04:42.867488 2020-04-29 00:32:46.082193 3 0 0 0001022 \N \N f f \N VST0110_2.jpg 12 01010101 1001 PAN-1001 PNT-0025 PANTALON DE MEZCLILLA BLANCO APEACH 256.10 799.00 \N \N \N \N f t \N 1 2020-02-19 02:41:55.550848 2020-02-19 02:41:55.593142 3 0 0 0001001 \N \N f f \N \N 8 01010101 1002 BLU-1002 BLS-0112 BLUSA BLANCA DE ENCAJE APEACH 237.90 599.00 \N \N \N \N f t \N 1 2020-02-19 02:48:40.198137 2020-02-19 02:48:40.240083 3 0 0 0001002 \N \N f f \N \N 7 01010101 68 BLU-68 B-0005 RAYADA CORTE CAMPESINA DE COLORES WHYSPER 132.00 399.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862646 2020-02-19 18:05:05.230771 3 0 1 0000068 \N \N f f \N IMG_4484.jpg 7 01010101 135 BLU-135 BLS-0003 BLUSA RAYAS COLORES MUY MUY 159.25 469.00 \N \N \N \N f t \N 1 2019-02-02 01:39:44.862713 2020-02-19 18:22:13.246547 3 0 1 0000135 \N \N f f \N IMG_4489.jpg 7 01010101 479 BLU-479 B-0065 BLUSA CON UNA MANGA MUY MUY ROJA Y FLORES 270.00 675.00 \N \N \N \N f t \N 1 2019-02-13 23:37:00.283692 2020-02-19 18:37:32.778516 3 0 0 0000479 \N \N f f \N IMG_4498.jpg 7 01010101 310 BLU-310 BL-0030 BLUSA BLANCA M/2 CON VERDE EN CUELLO 280.00 699.00 \N \N \N \N f t \N 1 2019-02-03 00:00:00 2020-02-19 18:38:02.336414 3 0 1 0000310 \N \N f f \N IMG_4497.jpg 7 01010101 1003 BLU-1003 BLS-0113 BLUSA DECO DORADA 6681-3 265.35 669.00 \N \N \N \N f t \N 1 2020-02-19 18:59:37.2241 2020-02-19 18:59:37.275565 3 0 0 0001003 \N \N f f \N \N 7 01010101 1004 FAL-1004 FLD-0027 FALDA DE TUL ROSA KIWI 192.15 529.00 \N \N \N \N f t \N 1 2020-02-19 19:26:47.906486 2020-02-19 19:26:47.950579 3 0 0 0001004 \N \N f f \N \N 11 01010101 1006 FAL-1006 FLD-0029 FALDA LARGA DE TUL ROSA CON PERLAS TABA S13 201.30 699.00 \N \N \N \N f t \N 1 2020-02-19 20:12:04.589931 2020-05-03 00:53:45.627552 3 0 0 0001006 \N \N f f \N 1234.png 11 01010101 990 BLU-990 BLS-0110 BLUSA FLOREADA APEACH 240.00 599.00 \N \N \N \N f t \N 1 2020-02-19 00:47:55.743276 2020-05-03 00:58:46.319238 3 0 0 0000990 \N \N f f \N PHOTO-2020-04-28-14-28-51_-_copia__2_.jpg 7 01010101 1007 FAL-1007 FLD-0030 FALDA LARGA DE TUL CON FONDO BRILLOSO TABA S06 237.90 699.00 \N \N \N \N f t \N 1 2020-02-19 20:13:29.235717 2020-02-19 20:13:29.279069 3 0 0 0001007 \N \N f f \N \N 11 01010101 1009 BLU-1009 BLS-0114 BLUSA AQUA/AMARILLA CQBYCQ ST. 8626 237.90 599.00 \N \N \N \N f t \N 1 2020-02-19 20:25:45.29919 2020-05-02 01:33:36.124492 3 0 0 0001009 \N \N f f \N PHOTO-2020-04-28-14-28-41.jpg 7 01010101 1013 BLU-1013 BLS-0118 PLAYERA BLANCA CON COLLAR EN CUELLO ST.DZ3575 233.32 589.00 \N \N \N \N f t \N 1 2020-02-19 20:44:24.096735 2020-05-03 00:24:20.039768 3 0 0 0001013 \N \N f f \N PHOTO-2020-05-02-16-55-32.jpg 7 01010101 1010 BLU-1010 BLS-0115 BLUSA DE MEZCLILA GEEGEE ST.J10001 219.60 599.00 \N \N \N \N f t \N 1 2020-02-19 20:28:31.021295 2020-02-19 20:28:31.06246 3 0 0 0001010 \N \N f f \N \N 7 01010101 1011 BLU-1011 BLS-0116 PLAYERA NEGRA CON PEDRERIA ST.DZ3475 233.32 589.00 \N \N \N \N f t \N 1 2020-02-19 20:38:50.543904 2020-02-19 20:38:50.594144 3 0 0 0001011 \N \N f f \N \N 7 01010101 1012 BLU-1012 BLS-0117 PLAYERA BLANCA CON LENTEJUELA EN CUELLO ROSA ST.DZ3574 233.32 589.00 \N \N \N \N f t \N 1 2020-02-19 20:42:22.615686 2020-02-19 20:42:22.656225 3 0 0 0001012 \N \N f f \N \N 7 01010101 1005 FAL-1005 FLD-0028 FALDA BLANCA DE TUL KIWI 192.15 529.00 \N \N \N \N f t \N 1 2020-02-19 20:05:12.84153 2020-05-03 00:32:54.123402 3 0 0 0001005 \N \N f f \N PHOTO-2020-05-02-16-55-32.jpg 11 01010101 1014 BLU-1014 BLS-0119 BLUSA NUDE CON OLANES EN MANGA DE GAZA APEACH ST.7604 256.20 659.00 \N \N \N \N f t \N 1 2020-02-19 20:54:43.880137 2020-02-19 20:54:43.923364 3 0 0 0001014 \N \N f f \N \N 7 01010101 1015 BLU-1015 BLS-0120 BLUSA ROSITA CORAL DE GAZA APEACH ST.6239 193.24 549.00 \N \N \N \N f t \N 1 2020-02-19 20:56:27.941553 2020-02-19 20:56:28.346616 3 0 0 0001015 \N \N f f \N \N 7 01010101 1016 BLU-1016 BLS-0121 PANTI BLANCA MUYMUY ST.0973 173.85 519.00 \N \N \N \N f t \N 1 2020-02-19 21:00:48.936913 2020-02-19 21:00:48.994471 3 0 0 0001016 \N \N f f \N \N 7 01010101 1017 PAN-1017 PNT-0027 PANTALON MOSTAZA SANJOY ST.3051 247.05 699.00 \N \N \N \N f t \N 1 2020-02-19 22:47:45.568264 2020-02-19 22:47:45.610287 3 0 0 0001017 \N \N f f \N \N 8 01010101 1018 PAN-1018 PNT-0028 PANTALON ROSA BALBOA ST.19122 237.90 599.00 \N \N \N \N f t \N 1 2020-02-19 22:51:16.749754 2020-02-19 22:51:16.789637 3 0 0 0001018 \N \N f f \N \N 8 01010101 1019 PAN-1019 PNT-0029 PANTALON NEGRO BALBOA ST.2015 247.05 699.00 \N \N \N \N f t \N 1 2020-02-19 22:52:07.690196 2020-02-19 22:52:07.737747 3 0 0 0001019 \N \N f f \N \N 8 01010101 1028 ACC-1028 DIA-0038 DIADEMA DOBLE DE BRILLOS 214.55 429.10 \N \N \N \N f t \N 1 2020-02-29 23:26:49.54327 2020-07-04 18:49:06.511413 3 0 0 0001028 \N \N f f \N dia38.jpg 17 01010101 995 VES-995 VST-0104 VESTIDO DE COLORES LARGO LATISTE 709.20 1779.00 \N \N \N \N f t \N 1 2020-02-19 01:50:08.814225 2020-04-30 23:23:58.097587 3 0 0 0000995 \N \N f f \N WhatsApp_Image_2020-03-13_at_10.00.15.jpeg 12 01010101 1021 CON-1021 CON-0004 CONJUNTO FALDA BOLSAS 720.00 1499.00 \N \N \N \N f t \N 1 2020-02-24 23:58:32.501366 2020-04-29 00:51:56.121984 3 0 0 0001021 \N \N f f \N CON0004.jpg 10 01010101 1023 VES-1023 VST-0111 VESTIDO MAGENTA FLORES APEACH 330.00 849.00 \N \N \N \N f t \N 1 2020-02-25 00:07:57.371323 2020-02-25 00:07:57.414528 3 0 0 0001023 \N \N f f \N \N 12 01010101 1025 VES-1025 VST-0113 JUMPER ROSITA APEACH 360.00 899.00 \N \N \N \N f t \N 1 2020-02-25 00:20:45.933598 2020-02-25 00:20:45.977838 3 0 0 0001025 \N \N f f \N \N 12 01010101 1027 ACC-1027 DIA-0037 DIADEMA PIEDRAS COLORES 180.32 365.00 \N \N \N \N f t \N 1 2020-02-29 23:07:24.428874 2020-02-29 23:07:24.471123 3 0 0 0001027 \N \N f f \N \N 17 01010101 1000 JUM-1000 VST-0108 JUMPERDURAZNO FLOREADO APECH 285.60 729.00 \N \N \N \N f t \N 1 2020-02-19 02:36:56.998819 2020-04-29 00:14:37.670018 3 0 0 0001000 \N \N f f \N VST0108_F.jpg 1 01010101 1030 ACC-1030 DIA-0039 DIADEMA PIEDRA COLORES 157.00 339.00 \N \N \N \N f t \N 1 2020-02-29 23:59:11.12124 2020-02-29 23:59:11.159807 3 0 0 0001030 \N \N f f \N \N 17 01010101 1053 ACC-1053 DIA-0051 DIADEMA ROSA DE FLORES 51.00 105.00 \N \N \N \N f t \N 1 2020-03-01 01:33:18.948497 2020-07-04 19:37:23.421504 3 0 0 0001053 \N \N f f \N DIA51.jpg 17 01010101 1067 ACC-1067 DIA-0057 DIADEMA NEGRA CON PIEDRAS 115.00 230.00 \N \N \N \N f t \N 1 2020-03-01 02:00:16.32412 2020-07-04 01:17:51.773343 3 0 0 0001067 \N \N f f \N dia57.jpg 17 01010101 1032 ACC-1032 DIA-0041 DIADEMA 3 FLORES CON PIEDRAS 122.00 299.00 \N \N \N \N f t \N 1 2020-03-01 00:07:53.243211 2020-03-16 21:07:01.86338 3 0 0 0001032 \N \N f f \N DIA.jpg 17 01010101 1034 ACC-1034 ARE-0037 S925 Pendientes Asimétricos De Lentejuelas De Plástico Con Diamantes De Acrílico De Pasador De Plata Nhje18985\r\n 72.87 259.00 \N \N \N \N f t \N 1 2020-03-01 00:18:15.919227 2020-03-01 00:18:15.963712 3 0 0 0001034 \N \N f f \N ARE37.jpg 17 01010101 1035 ACC-1035 ARE-0046 Pendientes De Diamantes En Forma De Corazón De Moda Con Diamantes Y Aretes De Perlas Nhjj190994\r\n 52.23 149.00 \N \N \N \N f t \N 1 2020-03-01 00:21:22.819673 2020-03-01 00:21:22.864505 3 0 0 0001035 \N \N f f \N ARE46.jpg 17 01010101 1036 ACC-1036 ARE-0035 Aretes De Moda Pendientes Exagerados Asimétricos De Luna De Aleación Europea Y Americana Nhva19088\r\n 78.46 289.00 \N \N \N \N f t \N 1 2020-03-01 00:25:12.128668 2020-03-01 00:25:12.170888 3 0 0 0001036 \N \N f f \N ARE35.jpg 17 01010101 1037 ACC-1037 ARE-0065 Aretes De Perlas Simples Para Mujer, Traje De Cuatro Piezas Nhsd191057 48.79 199.00 \N \N \N \N f t \N 1 2020-03-01 00:33:41.928108 2020-03-01 00:33:41.969875 3 0 0 0001037 \N \N f f \N ARE65.jpg 17 01010101 1062 ACC-1062 DIA-0054 DIADEMA ESTRELLAS 275.00 550.00 \N \N \N \N f t \N 1 2020-03-01 01:48:32.168477 2020-07-04 18:49:35.515947 3 0 0 0001062 \N \N f f \N dia54.jpg 17 01010101 1039 ACC-1039 ARE-0024 ARETE DE MOÑO 74.38 209.00 \N \N \N \N f t \N 1 2020-03-01 00:34:28.463085 2020-03-01 00:34:28.503272 3 0 0 0001039 \N \N f f \N are.jpg 17 01010101 1040 ACC-1040 ARE-0039 Aretes Sencillos De Flores Pintadas Huecas Nhjj190113\r\n 69.64 209.00 \N \N \N \N f t \N 1 2020-03-01 00:37:10.870905 2020-03-01 00:37:10.914632 3 0 0 0001040 \N \N f f \N ARE39.jpg 17 01010101 1041 ACC-1041 ARE-0025 ARETE ESTRELLA PERLA\r\n 70.55 209.00 \N \N \N \N f t \N 1 2020-03-01 00:39:59.729014 2020-03-01 00:39:59.770148 3 0 0 0001041 \N \N f f \N ARE25.jpg 17 01010101 1042 ACC-1042 ARE-0031 Aretes Geométricos De Corazón Joker Pendientes Vintage Nhjj188754\r\n 56.74 209.00 \N \N \N \N f t \N 1 2020-03-01 00:43:49.3377 2020-03-01 00:43:49.378879 3 0 0 0001042 \N \N f f \N ARE31.jpg 17 01010101 1043 ACC-1043 ARE-0064 Aretes De Perlas De Diamantes De Imitación Pendientes De Botón Set De 9 Pares 35.46 179.00 \N \N \N \N f t \N 1 2020-03-01 00:47:47.846109 2020-03-01 00:47:47.885704 3 0 0 0001043 \N \N f f \N ARE64.jpg 17 01010101 1044 ACC-1044 ARE-0026 ARETE PERLA Y RILLOS\r\n 63.62 179.00 \N \N \N \N f t \N 1 2020-03-01 00:51:51.889978 2020-03-01 00:51:51.930256 3 0 0 0001044 \N \N f f \N ARE26.jpg 17 01010101 1058 ACC-1058 ARE-0059 Nuevos Pendientes De Diamantes De Aleación Pendientes Simples Accesorios De Pendientes De Moda Nhjq191303 80.39 229.00 \N \N \N \N f t \N 1 2020-03-01 01:44:02.825178 2020-08-15 23:17:29.068122 3 0 0 0001058 \N \N f f \N ARE59.jpg 17 01010101 1046 ACC-1046 ARE-0034 Versión Coreana De Pendientes Vintage De Flores Bordadas De Diamantes De Color Rosa Nhms189768\r\n\r\n 67.28 229.00 \N \N \N \N f t \N 1 2020-03-01 01:09:33.516316 2020-03-01 01:09:33.563313 3 1 0 0001046 \N \N f f \N ARE34.jpg 17 01010101 1033 ACC-1033 DIA-0042 DIADEMA FLORES CON PERLAS 57.18 129.00 \N \N \N \N f t \N 1 2020-03-01 00:16:05.603357 2020-03-16 21:05:36.31301 3 0 0 0001033 \N \N f f \N DIA42.jpg 17 01010101 1048 ACC-1048 ARE-0030 Aretes De Borla Pendientes Creativos De Bohemia Pendientes De Diamantes De Estilo Vintage Tejidos Nhmd190136\r\n 108.00 219.00 \N \N \N \N f t \N 1 2020-03-01 01:15:18.125227 2020-03-01 01:15:18.166241 3 0 0 0001048 \N \N f f \N ARE30.jpg 17 01010101 1038 ACC-1038 DIA-0043 DIADEMA FLORES COLORES METALICOS 182.00 369.00 \N \N \N \N f t \N 1 2020-03-01 00:34:14.949245 2020-07-04 18:43:02.321587 3 0 0 0001038 \N \N f f \N dia43.jpg 17 01010101 1050 ACC-1050 ARE-0038 endientes De Perlas De Círculo Retro Coreano Mujeres Moda Simple Grandes Pendientes De Perlas Creativos En Forma De C Nhpf196100\r\n 36.00 129.00 \N \N \N \N f t \N 1 2020-03-01 01:25:50.034683 2020-03-01 01:25:50.077942 3 0 0 0001050 \N \N f f \N ARE38.jpg 17 01010101 1051 ACC-1051 ARE-0033 Lindos Aretes De Diamantes De Imitación De Amor Nhjq142992\r\n 82.00 249.00 \N \N \N \N f t \N 1 2020-03-01 01:26:24.84431 2020-03-01 01:26:24.886368 3 0 0 0001051 \N \N f f \N ARE33.jpg 17 01010101 1052 ACC-1052 ARE-0036 Aretes De Borla De Plata 925 Con Pasador De Plata Y Diamantes Pendientes De Borla Asimétricos Pendientes Ab Nhms192464\r\n 86.00 249.00 \N \N \N \N f t \N 1 2020-03-01 01:31:52.116272 2020-03-01 01:31:52.164148 3 0 0 0001052 \N \N f f \N ARE36.jpg 17 01010101 1064 ACC-1064 DIA-0055 DIADEMA ROSA PIEDRAS 247.00 494.00 \N \N \N \N f t \N 1 2020-03-01 01:52:47.281658 2020-03-16 21:03:22.132978 3 0 0 0001064 \N \N f f \N DIA55.jpg 17 01010101 1054 ACC-1054 ARE-0032 S925 Pendientes De Plata Esterlina Aceite De Goteo Pendientes Acrílicos En Forma De Corazón Mujeres Pendientes Largos Nhqd187894 53.00 149.00 \N \N \N \N f t \N 1 2020-03-01 01:35:10.600104 2020-03-01 01:35:10.645609 3 0 0 0001054 \N \N f f \N ARE32.jpg 17 01010101 1055 ACC-1055 ARE-0042 Aretes De Perlas Huecas Exageradas En Forma De Gota Nhln194765 63.00 199.00 \N \N \N \N f t \N 1 2020-03-01 01:36:34.08955 2020-03-01 01:36:34.135065 3 0 0 0001055 \N \N f f \N ARE42.jpg 17 01010101 1061 ACC-1061 ARE-0062 Pink Love Cute 30 Pares De Aretes Con Aretes De Luna Dorada Adornos Nhsd191044\r\n 83.49 169.00 \N \N \N \N f t \N 1 2020-03-01 01:47:10.333652 2020-03-05 00:00:27.484667 3 0 0 0001061 \N \N f f \N ARE62.jpg 17 01010101 1057 ACC-1057 DIA-0052 DIADEMA BLANCA PIEDRAS CON FLORES 289.16 549.00 \N \N \N \N f t \N 1 2020-03-01 01:40:43.814791 2020-03-01 01:40:43.852761 3 0 0 0001057 \N \N f f \N \N 17 01010101 1059 ACC-1059 DIA-0053 DIADEMA BLANCA CON FLORES ROSAS 251.54 499.00 \N \N \N \N f t \N 1 2020-03-01 01:44:51.214981 2020-03-01 01:44:51.256221 3 0 0 0001059 \N \N f f \N \N 17 01010101 1060 ACC-1060 ARE-0050 Anillo Borla Aretes Plata 925 Aguja Asimétrica Coreano Planeta Luna Nhms192473\r\n 65.93 179.00 \N \N \N \N f t \N 1 2020-03-01 01:45:49.712346 2020-03-01 01:45:49.770892 3 0 0 0001060 \N \N f f \N ARE50.jpg 17 01010101 1045 ACC-1045 ARE-0029 Aretes De Diamantes De Imitación De Aleación En Forma De Corazón Con Diamantes Nhmd191020\r\n 53.30 299.00 \N \N \N \N f t \N 1 2020-03-01 00:55:40.116068 2020-08-15 23:15:31.085017 3 0 0 0001045 \N \N f f \N ARE29.jpg 17 01010101 1031 ACC-1031 DIA-0040 DIADEMA DOBLE FLORES ORO ROSADO 73.00 299.00 \N \N \N \N f t \N 1 2020-03-01 00:04:49.628603 2020-07-04 19:18:43.323242 3 0 0 0001031 \N \N f f \N dia4.jpg 17 01010101 1063 ACC-1063 ARE-0051 Aretes Para Mujer De Amor Simple Anillo De Cobre Pendientes De Circón Al Por Mayor Nhnz185931\r\n 64.71 149.00 \N \N \N \N f t \N 1 2020-03-01 01:49:30.651089 2020-03-01 01:49:30.692757 3 0 0 0001063 \N \N f f \N ARE51.jpg 17 01010101 1047 ACC-1047 DIA-0050 DIADEMA BOLITAS GAZA 58.00 139.00 \N \N \N \N f t \N 1 2020-03-01 01:12:14.568675 2020-03-16 21:03:57.966826 3 0 0 0001047 \N \N f f \N DIA50.jpg 17 01010101 1065 ACC-1065 DIA-0056 DIADEMA PERLAS 50.00 110.00 \N \N \N \N f t \N 1 2020-03-01 01:56:32.004485 2020-03-01 01:56:32.045599 3 0 0 0001065 \N \N f f \N \N 17 01010101 1066 ACC-1066 ARE-0053 Pendientes De Diamantes De Moda Pendientes De Mujer Al Por Mayor Nhva186018\r\n 65.15 229.00 \N \N \N \N f t \N 1 2020-03-01 01:57:34.039112 2020-03-01 01:57:34.085789 3 0 0 0001066 \N \N f f \N ARE53.jpg 17 01010101 1056 ACC-1056 ARE-0061 Pendientes Geométricos Retro De 30 Pares Set Pendientes De Diamantes De Niña Y Niña Nhsd191048\r\n 86.46 179.00 \N \N \N \N f t \N 1 2020-03-01 01:38:53.282957 2020-03-05 00:00:10.98597 3 0 0 0001056 \N \N f f \N ARE61.jpg 17 01010101 1068 ACC-1068 ARE-0063 Venta Caliente Coreano Diamante Corazón Llave Pendientes Al Por Mayor Nhzu196085 42.25 179.00 \N \N \N \N f t \N 1 2020-03-01 02:01:47.69406 2020-03-01 02:01:47.741292 3 0 0 0001068 \N \N f f \N ARE63.jpg 17 01010101 1089 ACC-1089 DIA-0070 DIADEMA TELA RAYAS COLORES 61.90 119.00 \N \N \N \N f t \N 1 2020-03-02 23:44:42.942582 2020-07-04 18:36:47.012602 3 0 0 0001089 \N \N f f \N dia70.jpg 17 01010101 1070 ACC-1070 ARE-0055 Aretes De Aleación De Círculo Grande Con Personalidad Femenina Y Pendientes Simples Nhje189838\r\n 51.55 209.00 \N \N \N \N f t \N 1 2020-03-01 02:05:24.166645 2020-03-01 02:05:24.206903 3 0 0 0001070 \N \N f f \N ARE55.jpg 17 01010101 1071 ACC-1071 ARE-0041 Pendientes De Perlas Vintage De Aleación Femenina De Diamantes Con Cruz De Joyería Larga Nhln190433\r\n 63.43 249.00 \N \N \N \N f t \N 1 2020-03-01 02:07:15.301326 2020-03-01 02:07:15.374419 3 0 0 0001071 \N \N f f \N ARE41.jpg 17 01010101 1072 ACC-1072 DIA-001 DIADEMA NEGRA CORAZON 140.00 360.00 \N \N \N \N f t \N 1 2020-03-01 02:09:16.954831 2020-03-01 02:09:16.993966 3 0 0 0001072 \N \N f f \N \N 17 01010101 1069 ACC-1069 ARE-0048 "Pendientes De Estrella De Pentagrama De Diamantes De Aleación De Moda Coreana Pendientes De Cadena De Borla Larga Femenina Nhpf196120 63.62 259.00 \N \N \N \N f t \N 1 2020-03-01 02:03:36.113374 2020-03-22 21:06:47.696247 3 0 0 0001069 \N \N f f \N ARE48.jpg 17 01010101 1074 ACC-1074 ARE-0040 Aretes De Diamantes Con Incrustaciones De Aleación De Corona De Moda Nhjq142943\r\n 80.40 249.00 \N \N \N \N f t \N 1 2020-03-01 02:12:30.633311 2020-03-01 02:12:30.680521 3 0 0 0001074 \N \N f f \N ARE40.jpg 17 01010101 1075 ACC-1075 DIA-0058 DIADEMA PERLAS DORADA 72.00 159.00 \N \N \N \N f t \N 1 2020-03-01 02:13:09.648292 2020-03-01 02:13:09.692183 3 0 0 0001075 \N \N f f \N \N 17 01010101 1076 ACC-1076 ARE-0045 Aretes De Borla Con Cuentas De Aleación De Estilo De Explosión Al Por Mayor Nhjq189862\r\n 75.45 259.00 \N \N \N \N f t \N 1 2020-03-01 02:14:13.604755 2020-03-01 02:14:13.652362 3 0 0 0001076 \N \N f f \N ARE45.jpg 17 01010101 1083 ACC-1083 ARE-0044 Bohemian Star Tassel Geometric Fashion Earrings Pendientes Largos Simples Nhmd186053 75.24 229.00 \N \N \N \N f t \N 1 2020-03-01 02:26:20.88617 2020-03-22 21:05:08.061442 3 0 0 0001083 \N \N f f \N ARE44.jpg 17 01010101 1078 ACC-1078 ARE-0043 Aretes De Perlas De Imitación De Diamantes Y Diamantes De Imitación Geométricos Pendientes Retro Para Mujeres Nhje192732\r\n 59.54 179.00 \N \N \N \N f t \N 1 2020-03-01 02:18:04.786834 2020-03-01 02:18:04.828529 3 0 0 0001078 \N \N f f \N ARE43.jpg 17 01010101 1082 ACC-1082 DIA-0061 DIADEMAS PERLAS Y PIEDRA ROSA Y NEGRA 66.00 139.00 \N \N \N \N f t \N 1 2020-03-01 02:24:36.664497 2020-03-16 21:02:41.984785 3 0 0 0001082 \N \N f f \N DIA61.jpg 17 01010101 1080 ACC-1080 ARE-0060 S925 Pendientes De Borla Coreana De Plata Pendientes De Borla De Perlas Pendientes Largos De Amor De Muesca 133.00 269.00 \N \N \N \N f t \N 1 2020-03-01 02:21:50.596954 2020-03-01 02:21:50.64679 3 0 0 0001080 \N \N f f \N ARE60.jpg 17 01010101 1081 ACC-1081 ARE-0057 Pendientes De Aleación De Flores De Tela Coreana De Nueva Ola Pendientes De Punto Hueco Accesorios De Joyería Nhjq196248\r\n 45.78 129.00 \N \N \N \N f t \N 1 2020-03-01 02:23:36.721345 2020-03-01 02:23:36.76561 3 0 0 0001081 \N \N f f \N ARE57.jpg 17 01010101 1077 ACC-1077 DIA-0059 DIADEMA MOÑO Y BOLITAS 47.00 99.00 \N \N \N \N f t \N 1 2020-03-01 02:15:29.760853 2020-03-16 21:09:37.178456 3 0 0 0001077 \N \N f f \N DIA59.jpg 17 01010101 1084 ACC-1084 ARE-0047 Pendientes De Cristal De Color Degradado De Moda Coreana Al Por Mayor Nhjj187283\r\n 58.68 209.00 \N \N \N \N f t \N 1 2020-03-01 02:27:50.61079 2020-03-01 02:27:50.662046 3 0 0 0001084 \N \N f f \N ARE47.jpg 17 01010101 1085 ACC-1085 ARE-0054 Pendientes De Aleación De Diamantes Con Lazo Pendientes Coreanos De Nueva Moda Pendientes Simples Salvajes Nhjq190714\r\n 65.56 199.00 \N \N \N \N f t \N 1 2020-03-01 02:29:47.234974 2020-03-01 02:29:47.276164 3 0 0 0001085 \N \N f f \N ARE54.jpg 17 01010101 1086 ACC-1086 ARE-0058 Aretes De Moda Color Del Arco Iris Rhinestone Candy Love Borla Pendientes Con Textura Asimétrico Mujeres Nhdo190053\r\n 129.84 339.00 \N \N \N \N f t \N 1 2020-03-01 02:32:15.430126 2020-03-01 02:32:15.471888 3 0 0 0001086 \N \N f f \N ARE58.jpg 17 01010101 1087 ACC-1087 ARE-0056 Aretes Huecos Temperamento Love Heart Stud Earrings Nhqd189939\r\n 57.60 129.00 \N \N \N \N f t \N 1 2020-03-01 02:34:42.402347 2020-03-01 02:34:42.443895 3 0 0 0001087 \N \N f f \N ARE56.jpg 17 01010101 1088 ACC-1088 ARE-0052 Aretes Para Mujer Salvajes De Personalidad De Moda Con Textura Simple Pendientes Largos De Amor Nhva186023\r\n 52.39 169.00 \N \N \N \N f t \N 1 2020-03-01 02:36:10.993683 2020-03-01 02:36:11.066747 3 0 0 0001088 \N \N f f \N ARE52.jpg 17 01010101 1096 ACC-1096 DIA-0081 DIADEMAS COLORES 22.00 69.00 \N \N \N \N f t \N 1 2020-03-14 20:15:53.000889 2020-07-04 19:46:19.56959 3 0 0 0001096 \N \N f f \N dia81.jpg 17 01010101 1090 ACC-1090 DIA-0071 DIADEMA ROSA Y NEGRA CON PERLAS 63.90 139.00 \N \N \N \N f t \N 1 2020-03-02 23:50:39.699269 2020-03-02 23:50:39.740602 3 0 0 0001090 \N \N f f \N \N 17 01010101 1091 ACC-1091 DIA-0072 DIADEMA DELGADA NEGRA Y BEIGE CON PIEDRA 180.00 389.00 \N \N \N \N f t \N 1 2020-03-02 23:55:58.741058 2020-03-02 23:55:58.798786 3 0 0 0001091 \N \N f f \N \N 17 01010101 1092 ACC-1092 DIA-0073 DIADEMA PERLAS BLANCA Y NEGRA 51.00 119.00 \N \N \N \N f t \N 1 2020-03-03 00:00:32.149014 2020-03-03 00:00:32.190201 3 0 0 0001092 \N \N f f \N \N 17 01010101 1093 ACC-1093 DIA-001 DIADEMA NEGRA Y GRIS CON BRILLO 45.72 139.00 \N \N \N \N f t \N 1 2020-03-13 02:38:47.548945 2020-03-13 02:38:47.607462 3 0 0 0001093 \N \N f f \N \N 17 01010101 1094 ACC-1094 DIA-0080 DIADEMA PIEDRAS NEGRAS CON GRIS 228.00 469.00 \N \N \N \N f t \N 1 2020-03-14 19:46:54.354195 2020-03-14 19:46:54.403525 3 0 0 0001094 \N \N f f \N \N 17 01010101 1099 ACC-1099 DIA-0084 DIADEMA NEGRA Y DORADA BRILLOSA CON BOLITAS 34.00 99.00 \N \N \N \N f t \N 1 2020-03-14 20:53:11.168595 2020-03-16 20:51:40.12338 3 0 0 0001099 \N \N f f \N DIA84.jpg 17 01010101 1095 ACC-1095 DIA-0081 DIADEMA BRILLOS GAZA GRIS 41.00 99.00 \N \N \N \N f t \N 1 2020-03-14 20:04:54.914963 2020-03-16 20:40:07.69871 3 0 0 0001095 \N \N f f \N DIA80.jpg 17 01010101 1079 ACC-1079 DIA-0060 DIADEMA PERLAS 57.00 129.00 \N \N \N \N f t \N 1 2020-03-01 02:20:38.566857 2020-03-16 20:58:55.895493 3 0 0 0001079 \N \N f f \N DIA60.jpg 17 01010101 1100 ACC-1100 DIA-0085 DIADEMA COLORES NEON 41.00 89.00 \N \N \N \N f t \N 1 2020-03-14 20:57:25.172418 2020-03-16 20:53:30.017284 3 0 0 0001100 \N \N f f \N DIA85.jpg 17 01010101 1098 ACC-1098 DIA-0083 DIADEMA ROSA FUSCIA PIEDRAS 127.00 289.00 \N \N \N \N f t \N 1 2020-03-14 20:30:16.495931 2020-03-16 20:54:25.912127 3 0 0 0001098 \N \N f f \N DIA83.jpg 17 01010101 1101 ACC-1101 PUL-0100 PULCERAS SEMANARIO 40.00 89.00 \N \N \N \N f t \N 1 2020-03-15 00:04:52.862426 2020-03-15 00:04:52.942995 3 0 0 0001101 \N \N f f \N \N 17 01010101 1102 ACC-1102 PUL-0101 PULCERA ROSA 70.00 159.00 \N \N \N \N f t \N 1 2020-03-15 00:46:37.093301 2020-03-15 00:46:37.136668 3 0 0 0001102 \N \N f f \N \N 17 01010101 1103 ACC-1103 PUL-0102 PULSERA PIEDRAS 36.00 89.00 \N \N \N \N f t \N 1 2020-03-15 00:49:23.926657 2020-03-15 00:49:23.977134 3 0 0 0001103 \N \N f f \N \N 17 01010101 1104 ACC-1104 PUL-0103 PULSERA PIEDRA CHICA 15.00 49.00 \N \N \N \N f t \N 1 2020-03-15 00:50:32.379893 2020-03-15 00:50:32.419303 3 0 0 0001104 \N \N f f \N \N 17 01010101 1105 ACC-1105 ARE-0066 Colorido Haoshi Love Letter Pendientes Personalidad Pearl Love Wild Earring 183.01 379.00 \N \N \N \N f t \N 1 2020-03-16 19:54:13.094956 2020-03-16 19:54:13.142233 3 0 0 0001105 \N \N f f \N ARE66.jpg 17 01010101 1106 ACC-1106 ARE-0067 Pendiente De Cristal De Moda 62.01 179.00 \N \N \N \N f t \N 1 2020-03-16 19:57:22.395546 2020-03-16 19:57:22.435729 3 0 0 0001106 \N \N f f \N ARE67.jpg 17 01010101 1097 ACC-1097 DIA-0082 DIADEMA CORAZONES MEZCLILLA 33.00 119.00 \N \N \N \N f t \N 1 2020-03-14 20:22:45.396417 2020-03-16 20:38:43.974093 3 0 0 0001097 \N \N f f \N DIA82.jpg 17 01010101 1107 ACC-1107 DIA-0086 Diadema De Moda Imitación Perla Cristal Diamante Diamante Flor Tela 158.88 369.00 \N \N \N \N f t \N 1 2020-03-16 20:01:34.197695 2020-03-16 20:01:34.243368 3 0 0 0001107 \N \N f f \N DIA86.jpg 17 01010101 1108 ACC-1108 ARE-0068 Plata Pin Color Pentagrama Cristal Pendientes Pendientes Largos DE ESTRELLA 133.51 320.00 \N \N \N \N f t \N 1 2020-03-16 20:06:54.34767 2020-03-16 20:06:54.453158 3 0 0 0001108 \N \N f f \N ARE0068.jpg 17 01010101 1109 ACC-1109 ARE-0069 Pendientes Largos Largos De Corazón De Melocotón De Moda Con Pendientes De Circonita 60.52 189.00 \N \N \N \N f t \N 1 2020-03-16 20:09:06.138885 2020-03-16 20:09:06.196322 3 0 0 0001109 \N \N f f \N ARE69.jpg 17 01010101 1110 ACC-1110 DIA-0087 Gran Perla Corazón Geometría Diadema De Baile Salvaje 150.28 389.00 \N \N \N \N f t \N 1 2020-03-16 20:16:15.962765 2020-03-16 20:16:16.011691 3 0 0 0001110 \N \N f f \N DIA87.jpg 17 01010101 1111 ACC-1111 DIA-0088 Lunares Cruz Diadema Horquilla Diadema NEGRA 27.72 99.00 \N \N \N \N f t \N 1 2020-03-16 20:17:35.13703 2020-03-16 20:17:35.186251 3 0 0 0001111 \N \N f f \N DIA88.jpg 17 01010101 1112 ACC-1112 ARE-0090 Pendientes De Perlas De Moda Pendientes De Flores De Borla Larga Salvaje 55.25 169.00 \N \N \N \N f t \N 1 2020-03-16 20:20:37.64023 2020-03-16 20:20:37.688431 3 0 0 0001112 \N \N f f \N ARE90.jpg 17 01010101 1113 ACC-1113 ARE-0070 Pendientes De Flores Simples Pendientes De Mariposa De Esmalte De Moda Pendientes De Borlas De 79.12 189.00 \N \N \N \N f t \N 1 2020-03-16 20:23:45.564317 2020-03-16 20:23:45.675221 3 0 0 0001113 \N \N f f \N ARE70.jpg 17 01010101 1114 ACC-1114 ARE-0071 Pendientes Grandes De Borla De Hoja Dorada 41.93 149.00 \N \N \N \N f t \N 1 2020-03-16 20:26:48.906032 2020-03-16 20:26:48.948958 3 0 0 0001114 \N \N f f \N ARE71.jpg 17 01010101 1115 ACC-1115 ARE-0072 Aretes De Flores Aleación Con Cuentas Boho Valentine 58.27 169.00 \N \N \N \N f t \N 1 2020-03-16 20:29:57.842125 2020-03-16 20:29:57.880142 3 0 0 0001115 \N \N f f \N ARE72.jpg 17 01010101 1116 ACC-1116 ARE-0073 PENDIENTES REDONDOS DE FLORES PINTADOS A MANO 26.23 139.00 \N \N \N \N f t \N 1 2020-03-16 20:32:22.527829 2020-03-16 20:32:22.578539 3 0 0 0001116 \N \N f f \N ARE73.jpg 17 01010101 1130 BOL-1130 2BLCP20080 MOCHILA CLOE NEGRA, ROSA Y AZUL CON MASCADA VERDE LIMON 749.50 1499.00 \N \N \N \N f t \N 1 2020-07-04 20:08:57.551323 2020-07-04 20:08:57.551323 3 0 0 7509170800210 \N \N f f \N WIN_20200704_14_08_28_Pro__2_.jpg 6 01010101 1049 ACC-1049 ARE-0028 Nuevos Pendientes Pendientes Étnicos Boho Pendientes Delicados Flecos Largos Nhmd189660 67.32 219.00 \N \N \N \N f t \N 1 2020-03-01 01:18:01.171634 2020-03-22 21:05:40.694427 3 0 0 0001049 \N \N f f \N ARE28.jpg 17 01010101 996 CON-996 CON-0003 CONJUNTO DE FALDA FLOREADO LATISTE 689.80 1699.00 \N \N \N \N f t \N 1 2020-02-19 01:53:01.791433 2020-04-29 01:49:00.743897 3 0 0 0000996 \N \N f f \N CON0003.jpg 10 01010101 1119 BOL-1119 MOMY071 pañalera rosa 1449.50 2899.00 \N \N \N \N f t \N 1 2020-04-30 01:26:50.843431 2020-04-30 01:26:50.917367 3 0 0 0001119 \N \N f f \N \N 6 01010101 1120 BOL-1120 MOMY071 PAÑALERA CLOE ROSA 1449.50 2899.00 \N \N \N \N f t \N 1 2020-04-30 22:33:00.750592 2020-04-30 22:33:00.810083 3 0 0 0001120 \N \N f f \N \N 6 01010101 976 VES-976 VST-0100 VESTIDO LARGO FLORES MUY MUY 658.80 1599.00 \N \N \N \N f t \N 1 2020-02-18 20:54:22.845309 2020-05-01 00:35:39.015134 3 0 0 0000976 \N \N f f \N PHOTO-2020-04-28-14-28-51_-_copia__3_.jpg 12 01010101 994 VES-994 VST-0103 VESTIDO AZUL MULTICOLOR CQBYCQ 420.90 1049.00 \N \N \N \N f t \N 1 2020-02-19 01:45:20.142178 2020-05-01 23:37:04.257875 3 0 0 0000994 \N \N f f \N PHOTO-2020-04-30-19-26-45.jpg 12 01010101 988 PAN-988 PNT-0023 PANTALON NEGRO CON APLICACION DE PEDRERIA CIEN 292.18 799.00 \N \N \N \N f t \N 1 2020-02-19 00:24:08.677975 2020-05-02 01:04:34.899966 3 0 0 0000988 \N \N f f \N PHOTO-2020-04-28-14-28-45.jpg 8 01010101 983 FAL-983 FLD-0024 FALDA PIEL AZUL NYLON 298.80 749.00 \N \N \N \N f t \N 1 2020-02-18 23:27:28.047143 2020-05-03 00:34:44.98227 3 0 0 0000983 \N \N f f \N PHOTO-2020-04-29-12-04-33.jpg 11 01010101 1117 ZAP-1117 2CZP20166 CALZADO CLOE NEGRO SNEAKERS 799.50 1599.00 \N \N \N \N f t \N 1 2020-03-17 18:31:30.039084 2020-10-24 18:09:21.334516 3 0 0 0001117 \N \N f f \N DEEE50E4-97DA-49C1-BCDD-2479DD0F1E1D.jpeg 13 01010101 1123 BOL-1123 1BLCP20990 BACK PACK CLOE LIMONES 749.50 1499.00 \N \N \N \N f t \N 1 2020-05-04 00:27:01.970667 2020-05-04 00:27:02.01058 3 0 0 0001123 \N \N f f \N \N 6 01010101 1124 BOL-1124 1BLCP20989 BOLSO CLOE BLANCO MASCADA LIMONES 749.50 1499.00 \N \N \N \N f t \N 1 2020-05-04 00:27:55.10844 2020-05-04 00:27:55.275387 3 0 0 0001124 \N \N f f \N \N 6 01010101 1125 BOL-1125 URKE945 PORTA LAP AZUL 999.50 1999.00 \N \N \N \N f t \N 1 2020-05-04 00:39:44.2287 2020-05-04 00:39:44.263995 3 0 0 0001125 \N \N f f \N \N 6 01010101 1264 ACC-1264 ARE-0123 ARETE PANDA\r\n 35.78 129.00 \N \N \N \N f t \N 1 2020-08-15 23:51:55.908808 2020-08-15 23:51:55.948446 3 0 0 0001264 \N \N f f \N ARE123.jpg 17 01010101 1127 BOL-1127 BACKPACKCLOE BACK PACK CLOE LETRAS 899.50 1799.00 \N \N \N \N f t \N 1 2020-05-04 00:50:25.677447 2020-05-04 00:50:25.720347 3 0 0 0001127 \N \N f f \N \N 6 01010101 1128 BOL-1128 PAÑALERA PAÑALERA AZUL 1099.50 2199.00 \N \N \N \N f t \N 1 2020-05-14 20:52:36.571715 2020-05-14 20:52:36.639925 3 0 0 0001128 \N \N f f \N \N 6 01010101 1129 BOL-1129 BOL1399 BOLSO NEGRO CLOE 699.50 1399.00 \N \N \N \N f t \N 1 2020-05-14 20:53:21.750652 2020-05-14 20:53:21.785874 3 0 0 0001129 \N \N f f \N \N 6 01010101 1118 ZAP-1118 COLMAR CALZADO CLOE SNEAKERS BLACK 799.50 1599.00 \N \N \N \N f t \N 1 2020-03-17 18:38:25.07929 2020-06-25 21:28:29.693426 3 0 0 0001118 \N \N f f \N CZPA106_NEGR_1_300x435.jpg 13 01010101 1121 BOL-1121 2BLCV20395 BOLSO CLOE NEGRO Y ROSA ELECTRICO 849.50 1699.00 \N \N \N \N f t \N 1 2020-05-03 23:55:49.475254 2020-07-02 21:16:54.992354 3 0 0 0001121 \N \N f f \N ELECTRICO.jpg 6 01010101 1029 ACC-1029 DON-001 LIGAS DEL PELO 34.50 69.00 \N \N \N \N f t \N 1 2020-02-29 23:40:03.382458 2020-07-04 18:46:06.29618 3 0 0 0001029 \N \N f f \N dona.jpg 17 01010101 1131 BOL-1131 3BLCI1946 BOLSO CLOE ROSA VIEJO CON PONPON 799.50 1599.00 \N \N \N \N f t \N 1 2020-07-04 20:15:20.356993 2020-07-04 20:15:20.403662 3 0 0 0001131 \N \N f f \N IMG_5182.jpg 6 01010101 1132 BOL-1132 3BLCP20117 BOLSO COLOR LIMON CON MASCADA 699.50 1399.00 \N \N \N \N f t \N 1 2020-07-04 20:24:50.92179 2020-07-04 20:24:50.92179 3 0 0 7509170801491 \N \N f f \N IMG_5184.jpg 6 01010101 1133 BOL-1133 2BLCV20395 Bolsa Magenta Metálica Y NEGRA con Asa Larga 849.50 1699.00 \N \N \N \N f t \N 1 2020-07-04 20:29:17.329533 2020-07-04 20:29:17.329533 3 0 0 7509170822854 \N \N f f \N BLCV395_MAGE_1_828x1200.jpg 6 01010101 1134 BOL-1134 2BLCP2007 Briefcase Rosa con Colgante Metálico 799.50 1599.00 \N \N \N \N f t \N 1 2020-07-04 20:32:18.331857 2020-07-04 20:32:18.331857 3 0 0 7509170799927 \N \N f f \N BLCP071_ROSA_1_828x1200.jpg 6 01010101 1135 BOL-1135 1BLCV20246 Bolsa Rosa con Bolsillo Interno 799.50 1599.00 \N \N \N \N f t \N 1 2020-07-04 20:38:42.672838 2020-07-04 20:38:42.672838 3 0 0 7509170817973 \N \N f f \N BLCV246_ROSA_1_828x1200.jpg 6 01010101 1136 BOL-1136 2BLCV2033 Bolsa Negra con Frase 849.50 1699.00 \N \N \N \N f t \N 1 2020-07-04 20:41:30.994581 2020-07-04 20:41:30.994581 3 0 0 7509170820768 \N \N f f \N BLCV334_NEGR_1_828x1200.jpg 6 01010101 1137 BOL-1137 2BLCV20341 Bolsa Backpack Nude con Colgante Metálico 949.50 1899.00 \N \N \N \N f t \N 1 2020-07-04 20:44:16.651068 2020-07-04 20:44:16.651068 3 0 0 7509170821017 \N \N f f \N BLCV341_NUDE_1_300x435.jpg 6 01010101 1138 CAR-1138 2BICV20316 Cartera Porta Celular NEGRA Y NUDE con Asa Larga de Cadena 499.50 999.00 \N \N \N \N f t \N 1 2020-07-04 20:47:04.711593 2020-07-04 20:47:04.711593 3 0 0 7509170820041 \N \N f f \N BICV316_NEGR_1_828x1200.jpg 4 01010101 1139 BOL-1139 3BLCP20148 Bolsa Satchel Cloe con Acabado de Rayas 649.50 1299.00 \N \N \N \N f t \N 1 2020-07-04 20:53:34.274765 2020-07-04 20:53:34.274765 3 0 0 7509170812404 \N \N f f \N BLCP149_NEGR_1_828x1200.jpg 6 01010101 1154 REG-1154 CAJA CAJA REGALO 60.00 180.00 \N \N \N \N f t \N 1 2020-07-13 23:23:31.659008 2020-07-13 23:23:31.721779 3 0 0 0001154 \N \N f f \N \N 23 01010101 1122 ZAP-1122 KESWI TENNIS PLATAFORMA CLOE 799.50 1599.00 \N \N \N \N f t \N 1 2020-05-04 00:23:42.526768 2020-10-05 22:31:45.530814 3 0 0 0001122 \N \N f f \N WIN_20201005_16_34_37_Pro.jpg 13 01010101 1140 BOL-1140 2BLCP20026 BOLSA COLOR LIMON 949.50 1899.00 \N \N \N \N f t \N 1 2020-07-04 21:09:39.733225 2020-07-04 21:09:39.733225 3 0 0 7509170798289 \N \N f f \N WIN_20200704_15_09_17_Pro__2_.jpg 6 01010101 1141 BOL-1141 3BLCP20152 BOLSO ACORDEON MULTICOLOR 799.50 1599.00 \N \N \N \N f t \N 1 2020-07-04 21:12:37.188082 2020-07-04 21:12:37.188082 3 0 0 7509170812527 \N \N f f \N BLCP154_MULT_1_828x1200.jpg 6 01010101 1142 BOL-1142 4BLCV20513 MOCHILA COLECCION TANIA GAXIOLA 999.50 1999.00 \N \N \N \N f t \N 1 2020-07-04 21:36:40.062107 2020-07-04 21:36:40.062107 3 0 0 7509170836646 \N \N f f \N WIN_20200704_15_35_06_Pro__2_.jpg 6 01010101 1143 CAR-1143 4BICV20515 CARTERA COLECCION TANIA GAXIOLA 499.50 999.00 \N \N \N \N f t \N 1 2020-07-04 21:41:37.574853 2020-07-04 21:41:37.574853 3 0 0 7509170836660 \N \N f f \N WIN_20200704_15_34_50_Pro__2_.jpg 4 01010101 1144 BOL-1144 DUAB029 BOLSO MULTICOLOR 649.50 1299.00 \N \N \N \N f t \N 1 2020-07-04 22:00:00.889203 2020-07-04 22:00:00.929065 3 0 0 0001144 \N \N f f \N IMG_5183.jpg 6 01010101 1145 BOL-1145 DUAB031 MOCHILA DORADA Y MULTICOLOR 899.50 1799.00 \N \N \N \N f t \N 1 2020-07-04 22:04:55.111768 2020-07-04 22:04:55.111768 3 0 0 7509170794274 \N \N f f \N DUAB.jpg 6 01010101 1146 BOL-1146 BLCP20964 BOLSA ROSA HEBILLA REDONDA 999.50 1999.00 \N \N \N \N f t \N 1 2020-07-04 22:15:32.559291 2020-07-04 22:15:32.559291 3 0 0 7509170796100 \N \N f f \N WIN_20200704_16_15_19_Pro__2_.jpg 6 01010101 1147 BOL-1147 GIRLS1 MOCHILA CLOE COLORES 249.50 499.00 \N \N \N \N f t \N 1 2020-07-04 23:23:15.466708 2020-07-04 23:23:15.521258 3 0 0 0001147 \N \N f f \N \N 6 01010101 1148 BOL-1148 2BLCV20346 Bolsa Backpack Negro con Mascada de Rayas 699.50 1399.00 \N \N \N \N f t \N 1 2020-07-04 23:25:58.491377 2020-07-04 23:25:58.491377 3 0 0 7509170821185 \N \N f f \N BLCV346_NEGR_1_828x1200.jpg 6 01010101 1149 BOL-1149 2BLCV20354 Bolsa Backpack Negra con Textura de Rayas 749.50 1499.00 \N \N \N \N f t \N 1 2020-07-04 23:28:20.290799 2020-07-04 23:28:20.290799 3 0 0 7509170821437 \N \N f f \N BLCV354_NEGR_1_828x1200.jpg 6 01010101 1150 BOL-1150 MOCHILA 949.50 1899.00 \N \N \N \N f t \N 1 2020-07-04 23:30:11.671006 2020-07-04 23:30:11.716445 3 0 0 0001150 \N \N f f \N \N 6 01010101 1151 CAR-1151 3BICI19486 CARTERA NEGRA RAYADA 424.50 849.00 \N \N \N \N f t \N 1 2020-07-04 23:37:09.676915 2020-07-04 23:37:09.710824 3 0 0 0001151 \N \N f f \N \N 4 01010101 1153 BOL-1153 CLOEGIRLS1 MOCHILA GIRLS 274.50 549.00 \N \N \N \N f t \N 1 2020-07-13 21:13:31.15282 2020-07-13 21:13:31.324092 3 0 0 0001153 \N \N f f \N \N 6 01010101 1155 BOL-1155 3BLCP20107 BOLSA NEGRA CUADROS 749.50 1499.00 \N \N \N \N f t \N 1 2020-07-15 23:49:11.024035 2020-07-15 23:49:11.024035 3 0 0 7509170801149 \N \N f f \N \N 6 01010101 1156 CAR-1156 3BICP20091NEG CARTERA CON CIERRE 399.00 799.00 \N \N \N \N f t \N 1 2020-07-17 18:53:23.332835 2020-07-17 18:53:57.844023 3 0 0 0001156 \N \N f f \N \N 4 01010101 1157 CAR-1157 1BICV20261NUD NEGRA CON GRABADO 399.00 799.00 \N \N \N \N f t \N 1 2020-07-17 19:48:01.330798 2020-07-17 22:33:08.522468 3 0 0 7509170818413 \N \N f f \N BABDE221-183B-4204-A2CE-A9A7945810FB.jpeg 4 01010101 1158 CAR-1158 2BICV20315NEG NEGRA DOBLE CIERRE 499.00 999.00 \N \N \N \N f t \N 1 2020-07-17 19:49:28.397593 2020-07-17 22:34:01.36315 3 0 0 7509170820003 \N \N f f \N F2B3339D-A255-44B9-B709-356CA5D021F6.jpeg 4 01010101 1126 ZAP-1126 CONQUES MOCASIN ROSA CON EVILLA 749.50 1499.00 \N \N \N \N f t \N 1 2020-05-04 00:44:51.634023 2020-07-28 21:50:56.378683 3 0 0 0001126 \N \N f f \N descarga.jpg 13 01010101 1152 BOL-1152 3BLCV20805 BACK PACK CON LETRAS 699.50 1399.00 \N \N \N \N f t \N 1 2020-07-13 21:11:59.822814 2020-09-04 19:37:03.582292 3 0 0 7509170860252 \N \N f f \N F3B02F08-B262-4D0F-B7A7-9A51558AC619.jpeg 6 01010101 1160 CAR-1160 3BICV20401 CARTERA CLOE 349.50 699.00 \N \N \N \N f t \N 1 2020-07-29 19:35:58.222159 2020-07-29 19:35:58.222159 3 0 0 7509170823073 \N \N f f \N \N 4 01010101 1163 CAR-1163 2BICV20318 CARTERA CLOE 449.50 899.00 \N \N \N \N f t \N 1 2020-07-29 19:48:21.207334 2020-07-29 19:48:21.207334 3 0 0 7509170820119 \N \N f f \N \N 4 01010101 1165 CAR-1165 3BICV2040 CARTERA CLOE ROJA 399.50 799.00 \N \N \N \N f t \N 1 2020-07-29 20:08:38.594505 2020-07-29 20:08:38.594505 3 0 0 7509170823134 \N \N f f \N \N 4 01010101 1164 CAR-1164 3BICV20422 CARTERA CLOE BRONCE Y NEGRA 449.50 899.00 \N \N \N \N f t \N 1 2020-07-29 20:07:35.602508 2020-11-21 19:31:43.765477 3 0 0 7509170823820 \N \N f f \N B9EB8825-0948-42E9-81D4-FB239B6E7786.jpeg 4 01010101 1167 BOL-1167 1BLCI19311 BOLSO CHAROL CLOE 899.50 1799.00 \N \N \N \N f t \N 1 2020-08-03 19:47:58.293715 2020-08-03 19:47:58.293715 3 0 0 7509170766776 \N \N f f \N \N 6 01010101 1169 BOL-1169 3BLVV20425 BOLSO CROSSBODY CON PAÑUELO 549.50 1099.00 \N \N \N \N f t \N 1 2020-08-03 19:50:41.039944 2020-08-03 19:50:41.039944 3 0 0 7509170823899 \N \N f f \N \N 6 01010101 1174 COS-1174 4CSAP20818 COSMETIQUERA CORAZÓN 299.50 599.00 \N \N \N \N f t \N 1 2020-08-03 19:57:13.425893 2020-08-03 19:57:13.425893 3 0 0 7509170792027 \N \N f f \N \N 14 01010101 1176 COS-1176 4CSAP20819 COSMETIQUERA DE 3 CORAZÓN 399.50 799.00 \N \N \N \N f t \N 1 2020-08-03 19:59:00.112407 2020-08-03 19:59:00.112407 3 0 0 7509170792034 \N \N f f \N \N 14 01010101 1177 BOL-1177 4BLGV20473 MOCHILA CLOE GIRLS 324.50 649.00 \N \N \N \N f t \N 1 2020-08-07 18:52:40.179944 2020-08-07 18:52:40.179944 3 0 0 7509170825305 \N \N f f \N WIN_20200807_12_53_18_Pro.jpg 6 01010101 1178 BOL-1178 1BLCV20259 Bolsa-Briefcase-con-Mica-Transparente-en-Color-ROSA 949.50 1899.00 \N \N \N \N f t \N 1 2020-08-07 19:01:27.106819 2020-08-07 19:01:27.106819 3 0 0 7509170818369 \N \N f f \N 1BLCV20259.png 6 01010101 1179 BOL-1179 2BLCV20335 BOLSO CLOE AMARILLO 599.50 1199.00 \N \N \N \N f t \N 1 2020-08-07 19:12:02.386776 2020-08-07 19:12:02.386776 3 0 0 7509170821499 \N \N f f \N WIN_20200807_13_13_10_Pro.jpg 6 01010101 1180 BOL-1180 1BLCV20265 Bolsa-Briefcase-Asa-de-Cadena-en-Color-Camel- 899.50 1799.00 \N \N \N \N f t \N 1 2020-08-07 19:19:48.736602 2020-08-07 19:19:48.736602 3 0 0 7509170818499 \N \N f f \N 1BLCV20265.png 6 01010101 1181 BOL-1181 3BLCV20454 BOLSO NEGRO 749.50 1499.00 \N \N \N \N f t \N 1 2020-08-07 19:25:01.363948 2020-08-07 19:25:01.363948 3 0 0 7509170824711 \N \N f f \N WIN_20200807_13_25_41_Pro.jpg 6 01010101 1182 BOL-1182 2BLCV20364 MOCHILA COLOR LIMON CON BOLSITA 899.50 1799.00 \N \N \N \N f t \N 1 2020-08-07 19:43:47.509638 2020-08-07 19:43:47.509638 3 0 0 7509170821819 \N \N f f \N WIN_20200807_13_45_01_Pro.jpg 6 01010101 1183 BOL-1183 2BLCP20054 Bolsa Briefcase con Textura en Color Azul 949.50 1899.00 \N \N \N \N f t \N 1 2020-08-07 19:50:16.311211 2020-08-07 19:50:16.311211 3 0 0 7509170799286 \N \N f f \N 2BLCP20054.png 6 01010101 1184 BOL-1184 1BLCP20959 Bolsa Tote con Colgante 849.50 1699.00 \N \N \N \N f t \N 1 2020-08-07 20:02:02.048084 2020-08-07 20:02:02.048084 3 0 0 7509170795967 \N \N f f \N 1BLCP20960.png 6 01010101 1170 BOL-1170 1BLCP20976 BACK PACK ROJA 749.50 1499.00 \N \N \N \N f t \N 1 2020-08-03 19:51:46.272032 2020-08-07 20:31:14.628826 3 0 0 7509170796469 \N \N f f \N WIN_20200807_14_32_52_Pro.jpg 6 01010101 1171 BOL-1171 1BLCP20974 BOLSO ROJO CLOE 699.50 1399.00 \N \N \N \N f t \N 1 2020-08-03 19:52:45.139585 2020-08-07 20:31:48.307267 3 0 0 7509170796407 \N \N f f \N WIN_20200807_14_32_27_Pro.jpg 6 01010101 1161 CAR-1161 1BICV20253 BOLSITA CARTERA BICOLOR 449.50 899.00 \N \N \N \N f t \N 1 2020-07-29 19:46:00.37037 2020-08-07 20:56:02.314125 3 0 0 7509170818185 \N \N f f \N 1BICV20253.png 4 01010101 1162 CAR-1162 2BICV20356 CARTERA CLOE LETRA BLANCA 449.50 899.00 \N \N \N \N f t \N 1 2020-07-29 19:47:36.990618 2020-08-07 20:59:44.161189 3 0 0 7509170821512 \N \N f f \N 2BICV20356.png 4 01010101 1159 ZAP-1159 CESKY ALPARGATAS ROSA CON MOÑO 749.50 1499.00 \N \N \N \N f t \N 1 2020-07-29 19:21:15.570436 2020-08-13 19:29:37.319528 3 0 0 0001159 \N \N f f \N CESKY.png 13 01010101 1172 BOL-1172 1BLCP2095 CANGURERA CLOE 649.50 1299.00 \N \N \N \N f t \N 1 2020-08-03 19:54:09.762383 2020-10-05 22:12:45.971102 3 0 0 7509170795660 \N \N f f \N 1BLCP20950.png 6 01010101 1166 BOL-1166 pañaleta letras cloe 1.00 1549.50 \N \N \N \N f t \N 1 2020-07-31 22:31:37.448416 2020-11-12 01:57:40.432796 3 0 0 0001166 \N \N f f \N \N 6 01010101 1175 COS-1175 4CSCP20801 COSMETIQUERA LIMON 224.50 449.00 \N \N \N \N f t \N 1 2020-08-03 19:58:07.757707 2020-11-21 20:28:22.599196 3 0 0 7509170791853 \N \N f f \N 72E554DE-E684-4A20-AFB7-318FF7DB1687.jpeg 14 01010101 1185 BOL-1185 1BLCV20250 Bolsa Briefcase con Mascada en Color Fango 799.50 1599.00 \N \N \N \N f t \N 1 2020-08-07 20:07:42.146082 2020-08-07 20:07:42.146082 3 0 0 7509170818109 \N \N f f \N 1BLCV20250.png 6 01010101 1186 BOL-1186 4BLGP20879 Bolsa-Satchel-Cloe-Girls-Glitter-en-Color-Rosa-|-Cloe\r\n 224.50 449.00 \N \N \N \N f t \N 1 2020-08-07 20:11:47.208702 2020-08-07 20:11:47.208702 3 0 0 7509170793413 \N \N f f \N 4BLGP20879.png 6 01010101 1187 BOL-1187 4BLGV20471 Mochila-Cloe-Girls-Unicornio-en-Color-Rosa-|-Cloe 299.50 599.00 \N \N \N \N f t \N 1 2020-08-07 20:14:38.320944 2020-08-07 20:14:38.370696 3 0 0 0001187 \N \N f f \N 4BLGV20471.png 6 01010101 1168 BOL-1168 1BLCP20938 BOLSO CROSSBODY 749.50 1499.00 \N \N \N \N f t \N 1 2020-08-03 19:49:05.408836 2020-08-07 20:28:35.095785 3 0 0 7509170795325 \N \N f f \N WIN_20200807_14_29_39_Pro.jpg 6 01010101 1188 CAR-1188 2BICV20314 Cartera Flap en Color Rosa 449.50 899.00 \N \N \N \N f t \N 1 2020-08-07 20:53:15.36984 2020-08-07 20:53:29.286353 3 0 0 0001188 \N \N f f \N 2BICV20314.png 4 01010101 1189 CAR-1189 1BICV20261 Cartera Estampado Logo 399.50 799.00 \N \N \N \N f t \N 1 2020-08-07 21:04:09.960472 2020-08-07 21:04:09.960472 3 0 0 7509170818406 \N \N f f \N 1BICV20261.png 4 01010101 1190 CAR-1190 2BICP2099 CARTERA TARJETERO COLOR NUDE 399.50 799.00 \N \N \N \N f t \N 1 2020-08-07 21:15:28.051891 2020-08-07 21:15:28.051891 3 0 0 7509170797176 \N \N f f \N WIN_20200807_15_13_56_Pro.jpg 4 01010101 1173 CAR-1173 1BICP20958 BILLETERA CLOE NEON 399.50 799.00 \N \N \N \N f t \N 1 2020-08-03 19:55:10.139161 2020-08-07 21:16:16.506551 3 0 0 7509170795929 \N \N f f \N WIN_20200807_15_13_46_Pro.jpg 4 01010101 1192 BOL-1192 CAN-0004 CANGURERA CLOE 549.50 1099.00 \N \N \N \N f t \N 1 2020-08-08 00:56:24.508712 2020-08-08 00:56:24.546657 3 0 0 0001192 \N \N f f \N \N 6 01010101 1193 BOL-1193 2BLCV20347 Crossbody con Colgante en Color Rosa 649.50 1299.00 \N \N \N \N f t \N 1 2020-08-13 18:56:11.1678 2020-08-13 18:56:11.1678 3 0 0 7509170821239 \N \N f f \N 2BLCV20347.png 6 01010101 1194 BOL-1194 3BLCV20432 Mochila con Hebillas en Color Negro 749.50 1499.00 \N \N \N \N f t \N 1 2020-08-13 19:01:09.488609 2020-08-13 19:01:09.488609 3 0 0 7509170824100 \N \N f f \N 3BLCV20432.png 6 01010101 1195 ZAP-1196 CESKY 2CZP20114 Sandalia Plataforma en Suede y Moño en Talón en Color Amarillo 849.50 1699.00 \N \N \N \N f t \N 1 2020-08-13 19:28:13.050126 2020-08-13 19:32:20.80658 3 0 0 0001195 \N \N f f \N CESKY_2CZP20114.png 13 01010101 1196 ACC-1196 DIA-0112 DIADEMA ESCARABAJO\r\n 125.50 410.00 \N \N \N \N f t \N 1 2020-08-14 04:40:19.924029 2020-08-14 04:40:19.971887 3 0 0 0001196 \N \N f f \N NHHD628337-Rose-Red.jpg 17 01010101 1197 ACC-1197 DIA-0102 DIADEMA LISA NEGRA Y ROSA\r\n 43.97 109.00 \N \N \N \N f t \N 1 2020-08-14 04:42:47.777049 2020-08-14 04:42:47.819043 3 0 0 0001197 \N \N f f \N NHHV572912-Pink.jpg 17 01010101 1198 ACC-1198 DIA-0106 DIADEMA PERFUME \r\n 89.66 179.00 \N \N \N \N f t \N 1 2020-08-14 04:46:31.092336 2020-08-14 04:46:31.131329 3 0 0 0001198 \N \N f f \N NHHD563153-Pink.jpg 17 01010101 1199 ACC-1199 DIA-0113 DIADEMA CONFETI\r\n 33.44 99.00 \N \N \N \N f t \N 1 2020-08-14 04:48:49.396395 2020-08-14 04:48:49.435204 3 0 0 0001199 \N \N f f \N NHSM676700-Bai-Cai.jpg 17 01010101 1200 ACC-1200 DIA-0114 DIADEMA MEZCLILLA PERLAS\r\n 55.79 159.00 \N \N \N \N f t \N 1 2020-08-14 04:51:30.440373 2020-08-14 04:51:30.480448 3 0 0 0001200 \N \N f f \N NHSM676724-Denim-Blue.jpg 17 01010101 1201 ACC-1201 DIA-0100 DIADEMA PERLAS DORADAS\r\n 45.89 139.00 \N \N \N \N f t \N 1 2020-08-14 04:53:21.861503 2020-08-14 04:53:21.89752 3 0 0 0001201 \N \N f f \N NHLN369551-Gold.jpg 17 01010101 1202 ACC-1202 DIA-0099 DIADEMA DE DULCES \r\n 40.61 139.00 \N \N \N \N f t \N 1 2020-08-14 04:54:47.530732 2020-08-14 04:54:47.589913 3 0 0 0001202 \N \N f f \N NHJE465184-black.jpg 17 01010101 1203 ACC-1203 DIA-0093 DIADEMA MOÑO MEZCLILLA\r\n 54.17 159.00 \N \N \N \N f t \N 1 2020-08-14 04:57:40.251013 2020-08-14 04:57:40.310237 3 0 0 0001203 \N \N f f \N NHSM329238-black.jpg 17 01010101 1204 ACC-1204 DIA-0101 DIADEMA CON PERLITAS FONDO \r\n 85.63 229.00 \N \N \N \N f t \N 1 2020-08-14 05:02:05.424408 2020-08-14 05:02:05.474204 3 0 0 0001204 \N \N f f \N NHMD470176-dark-pink.jpg 17 01010101 1205 ACC-1205 DIA-0109 DIADEMA CON PERLITAS FONDO \r\n 72.00 189.00 \N \N \N \N f t \N 1 2020-08-14 05:04:24.527687 2020-08-14 05:04:24.56392 3 0 0 0001205 \N \N f f \N NHHI567102-Color-Black.jpg 17 01010101 1207 ACC-1207 DIA-0089 DIADEMA FLOR \r\n 274.00 569.00 \N \N \N \N f t \N 1 2020-08-14 05:09:52.366677 2020-08-14 05:09:52.405685 3 0 0 0001207 \N \N f f \N NHWJ182141-Section-A.jpg 17 01010101 1208 ACC-1208 DIA-0097 DIADEMA DE MOÑO CON PERLAS\r\n 42.73 119.00 \N \N \N \N f t \N 1 2020-08-14 05:12:37.937999 2020-08-14 05:12:37.9838 3 0 0 0001208 \N \N f f \N NHRH398037-gray.jpg 17 01010101 1210 ACC-1210 DIA-0092 DIADEMA CORAZON\r\n 48.89 129.00 \N \N \N \N f t \N 1 2020-08-14 05:18:28.124187 2020-08-14 05:18:28.162935 3 0 0 0001210 \N \N f f \N NHLN282111-White.jpg 17 01010101 1211 ACC-1211 DIA-0095 DIADEMA CON PERLAS BLANCAS\r\n 49.55 125.00 \N \N \N \N f t \N 1 2020-08-14 05:21:06.199894 2020-08-14 05:21:06.236882 3 0 0 0001211 \N \N f f \N NHMD369547-black.jpg 17 01010101 1206 ACC-1206 DIA-0098 DIADEMA ESTRELLAS\r\n 54.58 139.00 \N \N \N \N f t \N 1 2020-08-14 05:06:33.927393 2020-08-14 05:40:37.983306 3 0 0 0001206 \N \N f f \N NHJE465162-Pink.jpg 17 01010101 1212 ACC-1212 DIA-0108 DIADEMA PERLAS NEGRA\r\n 81.89 189.00 \N \N \N \N f t \N 1 2020-08-14 19:58:08.141087 2020-08-14 19:58:08.185934 3 0 0 0001212 \N \N f f \N NHHI567062-black.jpg 17 01010101 1213 ACC-1213 DIA-0107 DIADEMA CADENA PERLAS DELGADA\r\n 52.03 139.00 \N \N \N \N f t \N 1 2020-08-14 20:04:49.72715 2020-08-14 20:04:49.774707 3 0 0 0001213 \N \N f f \N NHHD563395-Korean-noodles.jpg 17 01010101 1214 ACC-1214 DIA-0105 DIADEMA ROSA CON PERLAS Y FLOR\r\n 146.78 369.00 \N \N \N \N f t \N 1 2020-08-14 20:06:49.375033 2020-08-14 20:06:49.412679 3 0 0 0001214 \N \N f f \N NHWJ563590-red.jpg 17 01010101 1215 ACC-1215 DIA-0103 DIADEMA FLOR PERLITAS\r\n 50.24 149.00 \N \N \N \N f t \N 1 2020-08-14 20:09:28.64895 2020-08-14 20:09:28.724636 3 0 0 0001215 \N \N f f \N NHJE482311-Pink.jpg 17 01010101 1216 ACC-1216 DIA-0094 DIADEMA FLORES CON PIEDRAS\r\n 293.00 599.00 \N \N \N \N f t \N 1 2020-08-14 20:11:13.671546 2020-08-14 20:11:13.712849 3 0 0 0001216 \N \N f f \N NHWJ358293-C.jpg 17 01010101 1217 ACC-1217 DIA-0111 DIADEMA DIAMANTINA \r\n 53.04 139.00 \N \N \N \N f t \N 1 2020-08-14 20:12:47.70283 2020-08-14 20:12:47.740479 3 0 0 0001217 \N \N f f \N NHDM606616-Black-lace-sequin-headband.jpg 17 01010101 1218 ACC-1218 DIA-0104 DIADEMA CON PIEDRA NEGRA\r\n 98.17 249.00 \N \N \N \N f t \N 1 2020-08-14 21:02:00.314257 2020-08-14 21:02:00.351281 3 0 0 0001218 \N \N f f \N NHLN495510-black.jpg 17 01010101 1219 ACC-1219 DIA-0110 DIADEMA LISA NEGRA Y ROSA\r\n 43.64 119.00 \N \N \N \N f t \N 1 2020-08-14 22:29:26.224609 2020-08-14 22:29:26.264861 3 0 0 0001219 \N \N f f \N NHJE277182-Pink.jpg 17 01010101 1220 ACC-1220 DIA-0143 DIADEMA VERDE Y ROSA PASTEL\r\n 78.43 210.00 \N \N \N \N f t \N 1 2020-08-14 22:30:53.308033 2020-08-14 22:30:53.344059 3 0 0 0001220 \N \N f f \N NHHD628378-Cream-green.jpg 17 01010101 1221 ACC-1221 DIA-0141 DIADEMA PERLAS CON TUL\r\n 49.12 179.00 \N \N \N \N f t \N 1 2020-08-14 22:32:21.293146 2020-08-14 22:32:21.351426 3 0 0 0001221 \N \N f f \N NHSM834493-black.jpg 17 01010101 1191 BOL-1191 1BLCP20933 BOLSITA ROSA 649.50 1299.00 \N \N \N \N f t \N 1 2020-08-07 21:35:01.590584 2020-09-04 18:55:15.483307 3 0 0 7509170795172 \N \N f f \N B62968E6-2241-495E-A7A2-59FA900D7B9B.jpeg 6 01010101 1223 ACC-1223 DIA-0133 DIADEMA FLORES CON PERLAS DELGADO\r\n 123.93 449.00 \N \N \N \N f t \N 1 2020-08-14 22:34:58.98565 2020-10-25 20:54:38.720655 3 0 0 0001223 \N \N f f \N NHLN810305-color.jpg 17 01010101 1222 ACC-1222 DIA-0121 MOÑO MIMI\r\n 68.49 139.00 \N \N \N \N f t \N 1 2020-08-14 22:33:29.171626 2020-08-14 23:03:15.067466 3 0 0 0001222 \N \N f f \N NHHI720196-Beige.jpg 17 01010101 1209 ACC-1209 DIA-0096 DIADEMA FLORES PIEDRAS\r\n 45.89 189.00 \N \N \N \N f t \N 1 2020-08-14 05:16:28.017281 2020-10-25 20:51:47.12125 3 0 0 0001209 \N \N f f \N NHOF394283-Champagne.jpg 17 01010101 1224 ACC-1224 DIA-0138 DIADEMA LILA DE FLORES\r\n 68.61 189.00 \N \N \N \N f t \N 1 2020-08-14 22:36:32.214379 2020-08-14 22:36:32.293486 3 0 0 0001224 \N \N f f \N NHHI819817-Pink-bow.jpg 17 01010101 1225 ACC-1225 DIA-0134 DIADEMA MOÑO CON FLORES\r\n 68.61 179.00 \N \N \N \N f t \N 1 2020-08-14 22:37:34.587093 2020-08-14 22:37:34.63017 3 0 0 0001225 \N \N f f \N NHHI817224-Yellow-floral.jpg 17 01010101 1226 ACC-1226 DIA-0135 DIADEMA PERLAS BRILLOSA\r\n 41.28 139.00 \N \N \N \N f t \N 1 2020-08-14 22:43:05.210248 2020-08-14 22:43:05.250584 3 0 0 0001226 \N \N f f \N NHDM606710-Chiffon-Pearl-Pink.jpg 17 01010101 1227 ACC-1227 DIA-0120 DIADEMA ROSA Y AQUA \r\n 239.74 489.00 \N \N \N \N f t \N 1 2020-08-14 22:45:05.205566 2020-08-14 22:45:05.247406 3 0 0 0001227 \N \N f f \N NHWJ720093-Light-blue.jpg 17 01010101 1229 ACC-1229 DIA-0119 DIADEMA AMARILLA Y NEGRA PIEDRAS\r\n 94.37 249.00 \N \N \N \N f t \N 1 2020-08-14 22:47:29.888984 2020-08-14 22:47:29.934028 3 0 0 0001229 \N \N f f \N NHLN714103-yellow.jpg 17 01010101 1243 ACC-1243 DIA-0140 DIADEMA VERDE AGUA Y ROSA \r\n 54.27 159.00 \N \N \N \N f t \N 1 2020-08-15 00:19:05.930323 2020-08-15 00:19:05.983333 3 0 0 0001243 \N \N f f \N NHSM834492-Pink.jpg 17 01010101 1231 ACC-1231 DIA-0090 DIADEMA PERLAS MEZCLILA\r\n 45.55 119.00 \N \N \N \N f t \N 1 2020-08-14 22:51:21.690522 2020-08-14 22:51:21.739502 3 0 0 0001231 \N \N f f \N NHMD274425-F0868-dark-blue.jpg 17 01010101 1230 ACC-1230 DIA-0142 DIADEMA PERLAS CON DIAMENTINA\r\n 54.03 149.00 \N \N \N \N f t \N 1 2020-08-14 22:48:37.074315 2020-08-14 23:00:53.343665 3 0 0 0001230 \N \N f f \N NHLN837132-purple.jpg 17 01010101 1232 ACC-1232 DIA-0118 DIADEMA CON UVAS\r\n 122.37 399.00 \N \N \N \N f t \N 1 2020-08-14 23:19:12.411208 2020-08-14 23:19:12.451076 3 0 0 0001232 \N \N f f \N NHWJ707399-black.jpg 17 01010101 1233 ACC-1233 DIA-0126 DIADEMA CUADROS ROSITA FRESITA\r\n 72.86 189.00 \N \N \N \N f t \N 1 2020-08-14 23:21:13.505535 2020-08-14 23:21:13.548999 3 0 0 0001233 \N \N f f \N NHHD733351-Floral-_-little.jpg 17 01010101 1234 ACC-1234 DIA-0123 DIADEMA NMOÑO CUADROS\r\n 42.85 119.00 \N \N \N \N f t \N 1 2020-08-14 23:22:36.014221 2020-08-14 23:22:36.054334 3 0 0 0001234 \N \N f f \N NHRH725318-Color-grid-red-blue-grid-red-knot.jpg 17 01010101 1235 ACC-1235 DIA-0129 DIADEMA DOBLE DE PERLAS\r\n 72.86 239.00 \N \N \N \N f t \N 1 2020-08-14 23:23:28.12931 2020-08-14 23:23:28.172813 3 0 0 0001235 \N \N f f \N NHJE780491-Golden.jpg 17 01010101 1236 ACC-1236 DIA-0132 DIADEMA FLORES CON PERLAS DELGADO\r\n\r\n 122.93 369.00 \N \N \N \N f t \N 1 2020-08-14 23:25:14.569281 2020-08-14 23:25:14.617669 3 0 0 0001236 \N \N f f \N NHWJ802914-Rose-flower.jpg 17 01010101 1237 ACC-1237 DIA-0116 DIADEMA DE CUADROS CON CIGARRA\r\n 146.78 420.00 \N \N \N \N f t \N 1 2020-08-14 23:27:24.500049 2020-08-14 23:27:24.545085 3 0 0 0001237 \N \N f f \N NHWJ707395-red.jpg 17 01010101 1238 ACC-1238 DIA-0127 DIADEMA FLORES CADENA DE PIEDRA\r\n 159.77 389.00 \N \N \N \N f t \N 1 2020-08-14 23:29:13.335271 2020-08-14 23:29:13.372301 3 0 0 0001238 \N \N f f \N NHWJ733616-white.jpg 17 01010101 1239 ACC-1239 DIA-0122 DIADEMA TUL CON PERLAS\r\n 44.86 119.00 \N \N \N \N f t \N 1 2020-08-14 23:31:02.015274 2020-08-14 23:31:02.052609 3 0 0 0001239 \N \N f f \N NHDM606710-Chiffon-Pearl-Pink.jpg 17 01010101 1240 ACC-1240 DIA-0125 DIADEMA FLORES MOÑO\r\n 86.75 189.00 \N \N \N \N f t \N 1 2020-08-14 23:32:14.976893 2020-08-14 23:32:15.023912 3 0 0 0001240 \N \N f f \N NHHD733331-Lavender.jpg 17 01010101 1241 ACC-1241 DIA-0128 DIADEMA ESTRELLAS \r\n 78.24 189.00 \N \N \N \N f t \N 1 2020-08-14 23:33:23.822924 2020-08-14 23:33:23.865418 3 0 0 0001241 \N \N f f \N NHHI739957-Black-lace.jpg 17 01010101 1242 ACC-1242 DIA-0115 DIADEMA PIEL CON MOÑO\r\n 45.31 159.00 \N \N \N \N f t \N 1 2020-08-14 23:35:42.468667 2020-08-14 23:35:42.51097 3 0 0 0001242 \N \N f f \N NHUX708181-Brown-Leather-Stud-Pearl-Rabbit-Ear-Headband.jpg 17 01010101 1244 ACC-1244 DIA-0131 DIADEMA MOÑO SENCILLO\r\n 48.24 119.00 \N \N \N \N f t \N 1 2020-08-15 00:20:38.373111 2020-08-15 00:20:38.413196 3 0 0 0001244 \N \N f f \N NHSM799851-Pink.jpg 17 01010101 1245 ACC-1245 DIA-0137 DIADEMA PIEDRAS ROSA\r\n 308.29 599.00 \N \N \N \N f t \N 1 2020-08-15 00:26:35.488767 2020-08-15 00:26:35.528321 3 0 0 0001245 \N \N f f \N NHVA818447-color.jpg 17 01010101 1246 ACC-1246 DIA-0130 DIADEMA DE PLUMAS\r\n 53.15 149.00 \N \N \N \N f t \N 1 2020-08-15 00:27:58.506034 2020-08-15 00:27:58.545544 3 0 0 0001246 \N \N f f \N NHSM799758-Pink.jpg 17 01010101 1247 ACC-1247 DIA-0091 DIADEMA SATIN PERLAS\r\n 43.63 119.00 \N \N \N \N f t \N 1 2020-08-15 00:31:27.811183 2020-08-15 00:31:27.873808 3 0 0 0001247 \N \N f f \N NHJE277181-black.jpg 17 01010101 1248 ACC-1248 DIA-0144 DIADEMA AZUL CON PERLAS\r\n 41.05 110.00 \N \N \N \N f t \N 1 2020-08-15 00:32:48.711127 2020-08-15 00:32:48.749331 3 0 0 0001248 \N \N f f \N NHMD274426-F0869-light-blue.jpg 17 01010101 1249 ACC-1249 DIA-0139 DIADEMA NEGRA CON BROCHE DE PIEDRA\r\n 53.15 169.00 \N \N \N \N f t \N 1 2020-08-15 00:33:50.262929 2020-08-15 00:33:50.298523 3 0 0 0001249 \N \N f f \N \N 17 01010101 1250 ACC-1250 DIA-0117 DIADEMA PEDRERIA\r\n 156.59 429.00 \N \N \N \N f t \N 1 2020-08-15 00:35:35.464667 2020-08-15 00:35:35.505432 3 0 0 0001250 \N \N f f \N NHVA707489-color.jpg 17 01010101 1251 BOL-1251 3BLCP20150 Mochila con Acabado de Rayas 749.50 1499.00 \N \N \N \N f t \N 1 2020-08-15 20:22:01.374307 2020-08-15 20:22:01.374307 3 0 0 7509170812466 \N \N f f \N 3BLCP20150.png 6 01010101 1252 ACC-1252 ARE-0096 ARETE CORAZON PELAS\r\n 34.78 110.00 \N \N \N \N f t \N 1 2020-08-15 22:48:45.811188 2020-08-15 22:48:45.853333 3 0 0 0001252 \N \N f f \N ARE0096.JPG 17 01010101 1253 ACC-1253 ARE-0095 ARETE CORAZON MECATE\r\n 36.13 110.00 \N \N \N \N f t \N 1 2020-08-15 22:52:06.370404 2020-08-15 22:52:06.405219 3 0 0 0001253 \N \N f f \N ARE95.JPG 17 01010101 1254 ACC-1254 ARE-0094 ARETE ESTRELLA NEGRA\r\n 37.92 110.00 \N \N \N \N f t \N 1 2020-08-15 22:55:06.595244 2020-08-15 22:55:06.63282 3 0 0 0001254 \N \N f f \N ARE94.jpg 17 01010101 1255 ACC-1255 ARE-0093 ARETE MOÑO CON PERLAS \r\n 72.22 310.00 \N \N \N \N f t \N 1 2020-08-15 22:56:46.042844 2020-08-15 22:56:46.080616 3 0 0 0001255 \N \N f f \N NHJQ563520-yellow.jpg 17 01010101 1256 ACC-1256 ARE-0103 ARETE ESTRELLA AMARILLA\r\n 48.89 179.00 \N \N \N \N f t \N 1 2020-08-15 22:58:24.894801 2020-08-15 22:58:24.932323 3 0 0 0001256 \N \N f f \N NHVA573305-yellow.jpg 17 01010101 1257 ACC-1257 ARE-0102 ARETE CIRCULO CORAZON Y ESTRELLA\r\n 63.01 249.00 \N \N \N \N f t \N 1 2020-08-15 22:59:35.789035 2020-08-15 22:59:35.826746 3 0 0 0001257 \N \N f f \N NHVA573422-yellow.jpg 17 01010101 1258 ACC-1258 ARE-0092 ARETE ESTRELLA \r\n 65.92 299.00 \N \N \N \N f t \N 1 2020-08-15 23:01:07.313563 2020-08-15 23:01:07.35036 3 0 0 0001258 \N \N f f \N NHYT559520-Golden.jpg 17 01010101 1259 ACC-1259 ARE-0091 ARETE ESTRELLA COLGANTE\r\n 115.42 310.00 \N \N \N \N f t \N 1 2020-08-15 23:02:15.495078 2020-08-15 23:02:15.532317 3 0 0 0001259 \N \N f f \N NHKSE29371.jpg 17 01010101 1073 ACC-1073 ARE-0049 Diamantes De Imitación Amor Temperamento Pendientes De Corazón De Durazno Pendientes Al Por Mayor Nhyq194548\r\n 70.50 249.00 \N \N \N \N f t \N 1 2020-03-01 02:11:12.767219 2020-08-15 23:22:14.537645 3 0 0 0001073 \N \N f f \N ARE49.jpg 17 01010101 1260 ACC-1260 ARE-0027 ARETES DE CORAZON CON BRILLANTES 98.89 379.00 \N \N \N \N f t \N 1 2020-08-15 23:30:59.457036 2020-08-15 23:30:59.495475 3 0 0 0001260 \N \N f f \N ARE27.jpg 17 01010101 1261 ACC-1261 ARE-0121 ARETE LISTON\r\n 53.63 159.00 \N \N \N \N f t \N 1 2020-08-15 23:45:04.727748 2020-08-15 23:45:04.769759 3 0 0 0001261 \N \N f f \N NHMD808145-Golden.jpg 17 01010101 1262 ACC-1262 ARE-0112 ARETE GOTA \r\n 37.69 199.00 \N \N \N \N f t \N 1 2020-08-15 23:47:30.953972 2020-08-15 23:47:30.996329 3 0 0 0001262 \N \N f f \N NHRN835213-color.jpg 17 01010101 1228 ACC-1228 DIA-0124 DIADEMA CADENA ROJA, ROSA Y BEIGE\r\n 56.73 169.00 \N \N \N \N f t \N 1 2020-08-14 22:46:20.407114 2020-10-26 02:57:56.890567 3 0 0 0001228 \N \N f f \N NHLN733940-red.jpg 17 01010101 1263 ACC-1263 ARE-0122 ARETE KISSES\r\n 39.71 159.00 \N \N \N \N f t \N 1 2020-08-15 23:49:03.283472 2020-08-17 00:52:31.56287 3 0 0 0001263 \N \N f f \N NHLA826246-Multicolor.jpg 17 01010101 1265 ACC-1265 ARE-0125 ARETE MARIPOSAS PLATA\t 55.61 289.00 \N \N \N \N f t \N 1 2020-08-15 23:53:51.779439 2020-08-15 23:53:51.820559 3 0 0 0001265 \N \N f f \N NHRN835148-White-K.jpg 17 01010101 1266 ACC-1266 ARE-0111 ARETE CADENA PIEDRAS\r\n 46.43 189.00 \N \N \N \N f t \N 1 2020-08-15 23:55:06.123101 2020-08-15 23:55:06.163075 3 0 0 0001266 \N \N f f \N NHXI780672-E1140.jpg 17 01010101 1268 ACC-1268 ARE-0101 ARETE ESTRELLA PEDRERIA\r\n 99.41 319.00 \N \N \N \N f t \N 1 2020-08-15 23:59:04.573826 2020-08-15 23:59:04.614222 3 0 0 0001268 \N \N f f \N NHJQ573113-yellow.jpg 17 01010101 1269 ACC-1269 ARE-0124 ARETE TRABA CON FLORES\r\n 68.61 249.00 \N \N \N \N f t \N 1 2020-08-16 00:00:52.127362 2020-08-16 00:00:52.165794 3 0 0 0001269 \N \N f f \N NHFT820114-Golden.jpg 17 01010101 1271 ACC-1271 ARE-0113 ARETE CORAZON CON FLORES COLORES\r\n 90.52 320.00 \N \N \N \N f t \N 1 2020-08-17 00:03:35.220815 2020-08-17 00:03:35.264474 3 0 0 0001271 \N \N f f \N NHMS780921-Main-Picture.jpg 17 01010101 1285 ACC-1285 ARE-0128 ARETE FLOR PIEDRA\r\n 60.32 299.00 \N \N \N \N f t \N 1 2020-08-17 19:19:34.882332 2020-08-17 19:19:34.921202 3 0 0 0001285 \N \N f f \N NHFT835264-white-925-silver.jpg 17 01010101 1273 ACC-1273 ARE-0108 ARETE ESTRELLA CON PERLA\r\n 80.03 269.00 \N \N \N \N f t \N 1 2020-08-17 00:07:06.485435 2020-08-17 00:07:06.521298 3 0 0 0001273 \N \N f f \N NHPS751577-As-shown.jpg 17 01010101 1274 ACC-1274 ARE-0119 ARETE ESTRELLA CON PERLAS DIF\r\n 60.32 269.00 \N \N \N \N f t \N 1 2020-08-17 00:12:42.121839 2020-08-17 00:12:42.157709 3 0 0 0001274 \N \N f f \N NHFT808725-Golden.jpg 17 01010101 1275 ACC-1275 ARE-0116 ARETE LOVE\r\n 50.01 229.00 \N \N \N \N f t \N 1 2020-08-17 00:22:16.746091 2020-08-17 00:22:16.78459 3 0 0 0001275 \N \N f f \N ARE116.jpg 17 01010101 1276 ACC-1276 ARE-0127 ARETE MARIPOSA\t\r\n 45.35 189.00 \N \N \N \N f t \N 1 2020-08-17 00:29:43.13836 2020-08-17 00:33:56.585074 3 0 0 0001276 \N \N f f \N NHRN835140-Three-piece-golden-butterfly.jpg 17 01010101 1270 ACC-1270 ARE-0115 ARETE CORAZON \r\n 58.30 229.00 \N \N \N \N f t \N 1 2020-08-17 00:01:28.965107 2020-08-17 00:44:03.640306 3 0 0 0001270 \N \N f f \N ARE115.jpg 17 01010101 1272 ACC-1272 ARE-0118 ARETE VERDE FLOR Y CORAZON\r\n 65.47 299.00 \N \N \N \N f t \N 1 2020-08-17 00:05:19.90067 2020-08-17 00:45:36.249715 3 0 0 0001272 \N \N f f \N NHFT808647-green.jpg 17 01010101 1277 ACC-1277 DIA-0136 DIADEMA PIEDRAS\r\n 68.61 239.00 \N \N \N \N f t \N 1 2020-08-17 01:52:28.607569 2020-08-17 01:52:28.677421 3 0 0 0001277 \N \N f f \N NHMD818208-color.jpg 17 01010101 1278 ACC-1278 ARE-0100 AREE ESTRELLA ISRAEL Y LUNA\r\n 89.21 299.00 \N \N \N \N f t \N 1 2020-08-17 19:02:59.036141 2020-08-17 19:02:59.083435 3 0 0 0001278 \N \N f f \N NHJQ573107-color.jpg 17 01010101 1279 ACC-1279 ARE-0120 ARETE VESTIDO\r\n 67.93 269.00 \N \N \N \N f t \N 1 2020-08-17 19:03:47.925097 2020-08-17 19:03:47.965279 3 0 0 0001279 \N \N f f \N NHFT808731-black.jpg 17 01010101 1280 ACC-1280 ARE-0110 ARETE DONA\r\n 45.31 149.00 \N \N \N \N f t \N 1 2020-08-17 19:04:48.80262 2020-08-17 19:04:48.841398 3 0 0 0001280 \N \N f f \N NHSC768069-3520mm-3813mm.jpg 17 01010101 1281 ACC-1281 ARE-0097 ARETE CORAZON NEGRO\r\n 34.78 119.00 \N \N \N \N f t \N 1 2020-08-17 19:07:14.381682 2020-08-17 19:07:14.419797 3 0 0 0001281 \N \N f f \N are97.JPG 17 01010101 1282 ACC-1282 ARE-0104 ARETE CORAZONCITOS PLATA\r\n 71.74 199.00 \N \N \N \N f t \N 1 2020-08-17 19:10:23.070806 2020-08-17 19:10:23.114142 3 0 0 0001282 \N \N f f \N ARE104.jpg 17 01010101 1283 ACC-1283 ARE-0129 ARETE COCHA ROSA Y BLANCA\r\n 41.73 149.00 \N \N \N \N f t \N 1 2020-08-17 19:11:22.271329 2020-08-17 19:11:22.30842 3 0 0 0001283 \N \N f f \N NHLA834957-powder.jpg 17 01010101 1284 ACC-1284 ARE-0099 ARETE CIRCULO NEGRO PIEDRAS\r\n 43.97 169.00 \N \N \N \N f t \N 1 2020-08-17 19:13:54.155304 2020-08-17 19:13:54.194167 3 0 0 0001284 \N \N f f \N ARE99.jpg 17 01010101 1287 ACC-1287 ARE-0126 ARETE CORAZON PIEDRA \r\n 47.01 189.00 \N \N \N \N f t \N 1 2020-08-17 19:22:05.529697 2020-08-17 19:22:05.571684 3 0 0 0001287 \N \N f f \N \N 17 01010101 1288 ACC-1288 ARE-0119 ARETE ESTRELLITAS PEQUEÑAS\r\n 56.29 229.00 \N \N \N \N f t \N 1 2020-08-17 19:23:45.080729 2020-08-17 19:23:45.121561 3 0 0 0001288 \N \N f f \N NHVA756425-yellow.jpg 17 01010101 1289 ACC-1289 ARE-0098 ARETE ESTRELLA PIEDRAS Y PERLAS\r\n 56.29 299.00 \N \N \N \N f t \N 1 2020-08-17 19:26:11.079278 2020-08-17 19:26:11.117398 3 0 0 0001289 \N \N f f \N ARE98.png 17 01010101 1290 ACC-1290 ARE-0107 ARETE CORAZON COLORES \r\n 51.13 199.00 \N \N \N \N f t \N 1 2020-08-17 19:27:37.292772 2020-08-17 19:27:37.331017 3 0 0 0001290 \N \N f f \N ARE107.jpg 17 01010101 1291 ACC-1291 ARE-0106 ARETE CORAZON CUARZO\r\n 41.05 239.00 \N \N \N \N f t \N 1 2020-08-17 19:28:58.880053 2020-08-17 19:48:52.218428 3 0 0 0001291 \N \N f f \N NHSC738775-4727mm.jpg 17 01010101 1267 ACC-1267 ARE-0114 ARETE PERLAS\r\n 57.63 159.00 \N \N \N \N f t \N 1 2020-08-15 23:57:30.647936 2020-08-17 20:00:26.710642 3 0 0 0001267 \N \N f f \N NHYQ780383-Main-Picture-Color-_925-Silver-Post.jpg 17 01010101 1286 ACC-1286 ARE-0117 ARETE DIAMANTE ROSA\r\n 55.65 210.00 \N \N \N \N f t \N 1 2020-08-17 19:20:36.545245 2020-08-17 20:12:41.957544 3 0 0 0001286 \N \N f f \N NHXR802184-Rose-Red-1930.jpg 17 01010101 1292 ACC-1292 ARE-0105 ARETE ROSA CON LILA PIEDRA\r\n 45.83 210.00 \N \N \N \N f t \N 1 2020-08-17 20:16:56.02782 2020-08-17 20:16:56.068108 3 0 0 0001292 \N \N f f \N ARE105.jpg 17 01010101 1298 BOL-1298 2BLCV20399 BOLSO CLOE 749.50 1499.00 \N \N \N \N f t \N 1 2020-08-27 19:32:23.436296 2020-08-27 19:32:23.436296 3 0 0 7509170822991 \N \N f f \N \N 6 01010101 1303 BOL-1303 1BLCP20959 BOLSA NEGRA 849.50 1699.00 \N \N \N \N f t \N 1 2020-08-27 19:54:27.732519 2020-08-27 19:54:27.732519 3 0 0 7509170795950 \N \N f f \N \N 6 01010101 1299 ZAP-1299 MATEJ TENNIS CLOE 799.50 1599.00 \N \N \N \N f t \N 1 2020-08-27 19:33:38.172916 2020-08-30 00:36:34.039505 3 0 0 7509170808537 \N \N f f \N MATEJ.png 13 01010101 1300 ZAP-1300 REINE TENNIS CLOE 799.50 1599.00 \N \N \N \N f t \N 1 2020-08-27 19:34:40.986881 2020-08-30 00:48:54.875536 3 0 0 7509170803709 \N \N f f \N CHUNKY.png 13 01010101 1297 BOL-1297 2BLCV20398 BOLSO CLOE 649.50 1299.00 \N \N \N \N f t \N 1 2020-08-27 19:31:24.977745 2020-10-02 22:07:27.578768 3 0 0 7509170822953 \N \N f f \N BDDE60DD-4BDC-4D12-B946-05F0024AD5D4.jpeg 6 01010101 1307 BLU-1307 BLS-0122 BLUSA HOJAS VERDE 275.00 669.00 \N \N \N \N f t \N 1 2020-09-03 20:52:01.370951 2020-09-04 22:43:01.282146 3 0 0 0001307 \N \N f f \N 953CF379-51CD-4A86-959B-A2DC4088DF61.png 7 01010101 1309 BLU-1309 BLS-0124 ROSA CON FLORES EN LA MANGA 275.00 669.00 \N \N \N \N f t \N 1 2020-09-03 20:56:32.237423 2020-09-04 22:45:02.04684 3 0 0 0001309 \N \N f f \N B2D03159-BED5-46F5-B8C4-42FF5DCEB336.png 7 01010101 1308 BLU-1308 BLS-0123 PLAYERA MODEL 220.00 489.00 \N \N \N \N f t \N 1 2020-09-03 20:54:06.650989 2020-09-04 23:08:20.550905 3 0 0 0001308 \N \N f f \N 3472120F-BA8C-4C51-85F1-F02508E232C4.jpeg 7 01010101 1296 BOL-1296 1BLCV20275 BACK PACK LETRAS 799.50 1599.00 \N \N \N \N f t \N 1 2020-08-27 19:29:32.408618 2020-10-05 22:26:01.441795 3 0 0 7509170818789 \N \N f f \N WIN_20201005_16_28_01_Pro.jpg 6 01010101 1293 BOL-1293 1BLCV20290 BOLSO CLOE 899.50 1799.00 \N \N \N \N f t \N 1 2020-08-27 19:25:03.992897 2020-09-04 18:44:14.103375 3 0 0 7509170819175 \N \N f f \N E2B06436-22C9-4BDB-AD2F-956E4EA27120.jpeg 6 01010101 1295 BOL-1295 1BLCP20972 BOLSO FLORES 949.50 1899.00 \N \N \N \N f t \N 1 2020-08-27 19:27:56.729088 2020-09-04 18:56:36.511014 3 0 0 7509170796339 \N \N f f \N DA1DE060-46EB-42EF-9EE6-1485D3942F89.jpeg 6 01010101 1294 BOL-1294 1BLCV20295 BOLSOS COLORES 499.50 999.00 \N \N \N \N f t \N 1 2020-08-27 19:26:42.270542 2020-09-04 19:04:35.97149 3 0 0 7509170819342 \N \N f f \N E0AD76AD-CA0E-40C8-B6E5-4EEA56E6A175.jpeg 6 01010101 1301 BOL-1301 3BLCV20804 BOLSO NEGRO 699.50 1399.00 \N \N \N \N f t \N 1 2020-08-27 19:50:37.116734 2020-09-04 19:42:42.77893 3 0 0 7509170860207 \N \N f f \N 7AD742A3-A49E-4350-9AFC-9AEBBC17C9A3.jpeg 6 01010101 1305 VES-1305 VST-0115 VESTIDO DOBLE LATISTE TINTO 573.37 1189.00 \N \N \N \N f t \N 1 2020-09-03 20:41:12.735741 2020-09-04 22:36:27.306129 3 0 0 0001305 \N \N f f \N 801B739E-53A9-430A-801A-21158694B57B.jpeg 12 01010101 1324 BLU-1324 BLS-0130 PLAYERA FASHIONISTA 286.00 589.00 \N \N \N \N f t \N 1 2020-09-03 22:44:19.118221 2020-09-04 22:54:46.454494 3 0 0 0001324 \N \N f f \N A5ABE20F-D9D4-4F59-AD8D-1D7431280FD3.png 7 01010101 1304 PAN-1304 PNT-0030 PANTALON PIEL EVENT 243.65 599.00 \N \N \N \N f t \N 1 2020-09-03 20:34:31.376411 2020-09-05 16:23:48.304015 3 0 0 0001304 \N \N f f \N F8A1806E-1537-4533-A878-769DD06C54C0.jpeg 8 01010101 1339 BLU-1339 Bls-0139 Pantiblusa de colores 209.00 529.00 \N \N \N \N f t \N 1 2020-09-05 16:50:41.581561 2020-09-05 17:00:15.029324 3 0 0 0001339 \N \N f f \N 439646D8-3DD1-404A-ADC4-83776E26976E.jpeg 7 01010101 1329 BLU-1329 BLS-0133 BLUSA SIN MANGA BASICA 209.00 479.00 \N \N \N \N f t \N 1 2020-09-03 23:22:11.371902 2020-09-04 22:55:40.602374 3 0 0 0001329 \N \N f f \N 834A47D4-4B29-4B99-B324-57319F5BDED9.jpeg 7 01010101 1327 BLU-1327 BLS-0131 BLUSA BASICA NYLON 209.00 469.00 \N \N \N \N f t \N 1 2020-09-03 23:17:20.778363 2020-09-04 22:56:06.701388 3 0 0 0001327 \N \N f f \N 50C7578B-482A-4AAD-8DDC-0E4FFAAC83A8.jpeg 7 01010101 1313 PAN-1313 PNT-0031 PANTALON DE VESTIR CON CINTO FLOREADO 308.00 769.00 \N \N \N \N f t \N 1 2020-09-03 21:38:59.141472 2020-09-05 16:28:02.361363 3 0 0 0001313 \N \N f f \N 9DB6E71B-722C-4D97-8745-14D135BE4FFC.png 8 01010101 1330 PAN-1330 PNT-0033 PANTALON MEZCLILLA 308.00 699.00 \N \N \N \N f t \N 1 2020-09-03 23:28:38.880253 2020-09-05 16:31:09.392991 3 0 0 0001330 \N \N f f \N E731A917-E745-479E-8A61-04F638A6DC7B.png 8 01010101 1319 PAN-1319 PNT-0032 PANTALON MEZCLILLA MCO CON BRILLO 462.00 999.00 \N \N \N \N f t \N 1 2020-09-03 22:19:18.334668 2020-09-03 22:19:18.370882 3 0 0 0001319 \N \N f f \N \N 8 01010101 1328 BLU-1328 BLS-0132 BLUSA MARIPOSA Y GARABATOS CRUZADA 264.00 569.00 \N \N \N \N f t \N 1 2020-09-03 23:20:07.728177 2020-09-04 22:56:34.548894 3 0 0 0001328 \N \N f f \N D5821CEB-3A97-41BE-95E3-F4B32001ECF0.jpeg 7 01010101 1331 BLU-1331 BLS-0134 BLUSA LILA Y BLANCA 170.00 399.00 \N \N \N \N f t \N 1 2020-09-03 23:35:37.825261 2020-09-04 22:57:03.284173 3 0 0 0001331 \N \N f f \N 3EDAA865-C268-4199-9023-F5BB3CC4FDBB.jpeg 7 01010101 1332 BLU-1332 BLS-0135 BLUSA ROSA CON COLORES Y MANGA DE GAZA,NEGRA Y BLANCA 214.00 499.00 \N \N \N \N f t \N 1 2020-09-03 23:38:11.197118 2020-09-04 22:58:46.511097 3 0 0 0001332 \N \N f f \N 6D1D0417-69ED-4842-8593-ADB3EEA7EF0D.png 7 01010101 1335 BLU-1335 BLS-0137 BLUSA PERLAS APEACH 275.00 689.00 \N \N \N \N f t \N 1 2020-09-03 23:54:23.247811 2020-09-05 22:26:36.92483 3 0 0 0001335 \N \N f f \N 36BFE5D1-8FA5-48E2-B614-BAA567B51238.jpeg 7 01010101 1341 BLU-1341 BLS-0141 BLUSA BLANCA SORRY 220.00 499.00 \N \N \N \N f t \N 1 2020-09-08 00:43:51.324646 2020-09-08 00:43:51.362239 3 0 0 0001341 \N \N f f \N \N 7 01010101 1337 VES-1337 VST-0119 VESTIDO FLOREADO MULTICOLOR APEACH 499.50 999.00 \N \N \N \N f t \N 1 2020-09-04 23:45:12.239002 2020-09-05 00:16:52.777431 3 0 0 0001337 \N \N f f \N DF6245C0-1B59-48E1-AFE4-224A0B465468.png 12 01010101 1312 FAL-1312 FLD-0031 FALDA MEZCLILLA DESHILACHADA 286.00 699.00 \N \N \N \N f t \N 1 2020-09-03 21:35:07.423055 2020-09-05 16:11:46.738365 3 0 0 0001312 \N \N f f \N 3E7B35C1-5825-4C63-83BE-808B0FB4104C.png 11 01010101 1316 FAL-1316 FLD-0032 FALDA PLISADA BLANCA 242.00 649.00 \N \N \N \N f t \N 1 2020-09-03 21:52:28.181609 2020-09-05 16:12:50.71449 3 0 0 0001316 \N \N f f \N 93FB7413-B79E-4DDD-B77B-59F23F4288A8.jpeg 11 01010101 1317 FAL-1317 FLD-0033 FALDA PLISADA MCO CON CINTO 335.50 799.00 \N \N \N \N f t \N 1 2020-09-03 21:57:04.932076 2020-09-05 16:14:06.996605 3 0 0 0001317 \N \N f f \N EE4B2BA4-4D6B-4F41-A619-D3835902E34E.png 11 01010101 1333 FAL-1333 FLD-0035 FALDA NEGRA DAZZ 280.00 629.00 \N \N \N \N f t \N 1 2020-09-03 23:41:20.233833 2020-09-05 16:15:30.103827 3 0 0 0001333 \N \N f f \N 75186064-E445-4B2A-B4C5-10ECD34E53F0.jpeg 11 01010101 1338 VES-1338 Vst-0120 Vestido blanco floreado Apeach 363.00 899.00 \N \N \N \N f t \N 1 2020-09-05 16:47:02.621086 2020-09-05 16:59:26.984913 3 0 0 0001338 \N \N f f \N 01520DE2-71AC-4C29-9F85-1C05E991F942.png 12 01010101 1321 FAL-1321 FLD-0034 FALDA PIEL CON ENCAJE 308.00 749.00 \N \N \N \N f t \N 1 2020-09-03 22:26:21.106994 2020-09-05 16:22:21.231431 3 0 0 0001321 \N \N f f \N ACA771A3-D528-43F8-88A4-595C14A67418.jpeg 11 01010101 1334 BLU-1334 BLS-0136 BLUSA MICKEY ROJA Y NEGRA 187.00 489.00 \N \N \N \N f t \N 1 2020-09-03 23:51:41.378465 2020-09-04 23:04:34.088811 3 0 0 0001334 \N \N f f \N E56ECCC0-DDC3-45C6-AA24-391B11F1782C.jpeg 7 01010101 1314 BLU-1314 BLS-0126 BLUSA CON HILO EN MANGA 198.00 499.00 \N \N \N \N f t \N 1 2020-09-03 21:46:59.433082 2020-09-04 23:07:27.690495 3 0 0 0001314 \N \N f f \N E7AF623B-F8D8-4062-9F32-8DE9B24BFDD4.jpeg 7 01010101 1302 BOL-1302 1BLCV20259 BOLSO MULTICOLOR 949.50 1899.00 \N \N \N \N f t \N 1 2020-08-27 19:52:44.236879 2020-09-04 18:50:08.232949 3 0 0 7509170818352 \N \N f f \N 2BFC0566-DA8B-4C3C-BD4A-E633D239A332.jpeg 6 01010101 1306 VES-1306 VST-0116 BATITA MICKEY 253.00 549.00 \N \N \N \N f t \N 1 2020-09-03 20:47:13.697956 2020-09-04 22:36:59.663047 3 0 0 0001306 \N \N f f \N 33DEA94D-F0BD-4184-A76D-64383BE9795D.jpeg 12 01010101 1311 VES-1311 VST-0116 VESTIDO HOJAS MOON VERDE 418.00 1049.00 \N \N \N \N f t \N 1 2020-09-03 21:14:05.629209 2020-09-04 22:37:44.204352 3 0 0 0001311 \N \N f f \N 47B4F530-86FD-4036-B247-8F243765EBAD.jpeg 12 01010101 1325 VES-1325 VST-0117 VESTIDO ROSA CON BOLITAS DE BRILLOS 374.00 969.00 \N \N \N \N f t \N 1 2020-09-03 22:48:56.166536 2020-09-04 22:39:24.731157 3 0 0 0001325 \N \N f f \N ADE6E8D5-7A0F-4A9D-B8DE-CFF00939CE9D.jpeg 12 01010101 1326 VES-1326 VST-0118 VESTIDO ROSA CON BOLITAS NEGRAS 396.00 999.00 \N \N \N \N f t \N 1 2020-09-03 22:51:39.571124 2020-09-04 22:41:00.73438 3 0 0 0001326 \N \N f f \N 4650432C-A180-4CBE-A0F8-32EF5CB0D339.jpeg 12 01010101 1336 BLU-1336 BLS-0138 PANTI FLORAL AMARILLA 209.00 549.00 \N \N \N \N f t \N 1 2020-09-03 23:56:05.874813 2020-09-04 22:41:44.274776 3 0 0 0001336 \N \N f f \N 13A67412-BB2E-4747-9792-823E50820A43.jpeg 7 01010101 1310 BLU-1310 BLS-0125 BLUSA BLANCA TEJIDA 242.00 599.00 \N \N \N \N f t \N 1 2020-09-03 20:59:39.362321 2020-09-04 22:47:31.214316 3 0 0 0001310 \N \N f f \N DD6347A3-8F84-4989-9685-5037B5EE9A6E.png 7 01010101 1315 BLU-1315 BLS-0127 BLUSA GATITOS 143.00 369.00 \N \N \N \N f t \N 1 2020-09-03 21:49:54.652403 2020-09-04 22:48:57.998177 3 0 0 0001315 \N \N f f \N 179C4BA8-F795-48D1-87A3-2F8E1AAB9586.jpeg 7 01010101 1322 BLU-1322 BLS-0128 BLUSA AMOUR 220.00 499.00 \N \N \N \N f t \N 1 2020-09-03 22:37:55.413971 2020-09-04 22:49:44.868116 3 0 0 0001322 \N \N f f \N 9F9D270A-3B13-4F4E-9CBC-61C445BF779D.jpeg 7 01010101 1320 BLU-1320 BLS-0128 BLUSA DIVINE MOSTAZA 286.00 599.00 \N \N \N \N f t \N 1 2020-09-03 22:23:09.264433 2020-09-04 22:51:09.217405 3 0 0 0001320 \N \N f f \N 03587AB6-7E77-497E-BC20-AA417DE63BE3.jpeg 7 01010101 1323 BLU-1323 BLS-0129 PLAYERA PRETTY RED 220.00 499.00 \N \N \N \N f t \N 1 2020-09-03 22:41:52.96889 2020-09-04 22:52:29.707118 3 0 0 0001323 \N \N f f \N EDCB67B4-758C-4C42-B293-78C44928E047.jpeg 7 01010101 1340 BLU-1340 BLS-0140 PANTIBLUSA ROSA CON MARIPOSAS 209.00 529.00 \N \N \N \N f t \N 1 2020-09-08 00:43:14.094929 2020-09-08 00:43:14.147327 3 0 0 0001340 \N \N f f \N \N 7 01010101 1318 PAN-1318 PNT-0032 PANTALON MCO CON PIEDRA 462.00 999.00 \N \N \N \N f t \N 1 2020-09-03 22:02:25.339264 2020-09-04 23:23:00.540545 3 0 0 0001318 \N \N f f \N 2CCC9074-60CC-43DC-B481-169205C4F9EE.jpeg 8 01010101 1342 BOL-1342 EDRI673 MOCHILA NEGRA DE TELA 849.50 1699.00 \N \N \N \N f t \N 1 2020-09-08 16:31:20.037619 2020-09-08 16:31:20.079819 3 0 0 0001342 \N \N f f \N \N 6 01010101 1343 BLU-1343 BLS-0142 BLUSA FLORES MULTICOLOR APEACH 319.00 699.00 \N \N \N \N f t \N 1 2020-09-10 01:04:12.755902 2020-09-10 01:04:12.79933 3 0 0 0001343 \N \N f f \N \N 7 01010101 1344 ACC-1344 RAP-001 KIT SHAMPOO Y ACONDICIONADOR 360.50 549.00 \N \N \N \N f t \N 1 2020-09-19 00:19:40.586214 2020-09-19 00:19:40.634892 3 0 0 0001344 \N \N f f \N \N 17 01010101 1345 ACC-1345 RAP-002 MASCARILLA DE CRECMIENTO 296.00 399.00 \N \N \N \N f t \N 1 2020-09-19 00:20:58.872984 2020-09-19 00:20:58.911039 3 0 0 0001345 \N \N f f \N \N 17 01010101 1346 ACC-1346 RAP-003 DESENREDANTE KIDS 137.00 259.00 \N \N \N \N f t \N 1 2020-09-19 00:22:45.02516 2020-09-19 00:22:45.067613 3 0 0 0001346 \N \N f f \N \N 17 01010101 1347 ACC-1347 RAP-004 RIZOS KIDS 215.00 371.00 \N \N \N \N f t \N 1 2020-09-19 00:23:31.195732 2020-09-19 00:23:31.239063 3 0 0 0001347 \N \N f f \N \N 17 01010101 1349 BOL-1349 1BLCV20797 Bolsa Crossbody con Asa Estampada de Trama Icónic 549.50 1099.00 \N \N \N \N f t \N 1 2020-09-21 18:27:12.786334 2020-09-21 18:27:12.786334 3 0 0 7509170859904 \N \N f f \N 1BLCV20797.png 6 01010101 1350 BOL-1350 1BLCP20990 Mochila Estampado con Mascada de Limones BLANCA 749.50 1499.00 \N \N \N \N f t \N 1 2020-09-21 18:30:31.533092 2020-09-21 18:30:31.533092 3 0 0 7509170796933 \N \N f f \N 1BLCP20990.png 6 01010101 1351 BOL-1351 3BLCI192526 MOCHILA GRIS CON ESTAMPADO DE ROMBO 799.50 1599.00 \N \N \N \N f t \N 1 2020-09-21 18:35:14.761772 2020-09-21 18:38:42.318966 3 0 0 7509170837476 \N \N f f \N WIN_20200921_12_40_00_Pro.jpg 6 01010101 1355 BLU-1355 BLS-0143 BLUSA APEACH FLORES ROSAS Y LILAS 286.00 699.00 \N \N \N \N f t \N 1 2020-09-28 19:09:10.017724 2020-09-28 19:09:10.094283 3 0 0 0001355 \N \N f f \N \N 7 01010101 1368 BOL-1368 2BLCV20359 CROSS BODY NEGRO 749.50 1499.00 \N \N \N \N f t \N 1 2020-10-22 18:45:14.661383 2020-11-21 19:47:08.846943 3 0 0 7509170821635 \N \N f f \N 32D07336-421D-49E7-AC90-BCC4B59FE3F3.jpeg 6 01010101 1348 BOL-1348 1BLCV20797 CROSSBODY CLOE LETRAS 549.50 1099.00 \N \N \N \N f t \N 1 2020-09-19 21:57:55.118708 2020-10-02 22:11:02.440075 3 0 0 0001348 \N \N f f \N 5778A103-2B06-4082-9888-1E1180BCD906.jpeg 6 01010101 1357 ZAP-1357 BRISTOL TENNIS CLOE NUDE DE PLATAFORMA 699.50 1399.00 \N \N \N \N f t \N 1 2020-10-02 19:02:44.535891 2020-10-03 18:40:32.84877 3 0 0 7509170806854 \N \N f f \N 9FBC5AFB-BD38-4396-BB66-F807D0BEEA8D.jpeg 13 01010101 1360 BOL-1360 1BLCV20285 BOLSO MULTICOLOR Y ROSA 849.50 1699.00 \N \N \N \N f t \N 1 2020-10-05 21:00:25.267825 2020-10-05 21:00:25.320607 3 0 0 0001360 \N \N f f \N WIN_20201005_15_00_26_Pro.jpg 6 01010101 1359 BOL-1359 2BLCP20044 BOLSO NEGRO TRANSPARENTE 649.50 1299.00 \N \N \N \N f t \N 1 2020-10-02 19:29:29.186874 2020-10-05 22:16:31.30605 3 0 0 7509170798937 \N \N f f \N 2BLCP20044.png 6 01010101 1361 CAR-1361 2BICV20319 Cartera-Cierre-Sencillo-Corte-Laser-Color-Rosa-en-Color-Rosa-|-Cloe\r\nCartera-Cierre-Sencillo-Corte-Laser-Color-Rosa-en-Color-Rosa-|-Cloe\r\nCartera-Cierre-Sencillo-Corte-Laser-Color-Rosa-en-Color-Rosa-|-Cloe\r\nCartera-Cierre-Sencillo-Corte-Laser-Color-Rosa-en-Color-Rosa-|-Cloe\r\nCartera-Cierre-Sencillo-Corte-Laser-Color-Rosa-en-Color-Rosa-|-Cloe\r\nCartera-Cierre-Sencillo-Corte-Laser-Color-Rosa-en-Color-Rosa-|-Cloe\r\nCartera-Cierre-Sencillo-Corte-Laser-Color-Rosa-en-Color-Rosa-|-Cloe\r\nCartera Cierre Sencillo Corte Laser Color Rosa 449.50 899.00 \N \N \N \N f t \N 1 2020-10-05 22:21:22.127705 2020-10-05 22:21:22.127705 3 0 0 7509170820157 \N \N f f \N 2BICV20319.png 4 01010101 1358 BOL-1358 1BLCV20286 BACK PACK LORES AZUL,PETROLEO Y ROSA 899.50 1799.00 \N \N \N \N f t \N 1 2020-10-02 19:22:24.491634 2020-10-05 22:27:03.845915 3 0 0 7509170819069 \N \N f f \N WIN_20201005_16_28_28_Pro.jpg 6 01010101 1362 BOL-1362 3BLCP20113 BACK PACK NUDE 849.50 1699.00 \N \N \N \N f t \N 1 2020-10-09 20:45:22.438304 2020-10-09 20:45:22.438304 3 0 0 7509170801354 \N \N f f \N \N 6 01010101 1363 ACC-1363 LIGAS LIGAS BOLITAS 10.00 49.00 \N \N \N \N f t \N 1 2020-10-13 18:33:23.43947 2020-10-13 18:33:23.504621 3 0 0 0001363 \N \N f f \N \N 17 01010101 1364 ACC-1364 KIT-RA KIT DE SHAMPOO Y ACONDICIONADOR 356.00 649.00 \N \N \N \N f t \N 1 2020-10-14 23:40:42.092844 2020-10-14 23:40:42.146367 3 0 0 0001364 \N \N f f \N \N 17 01010101 1365 BOL-1365 BOLSA BOLA MOÑO 999.50 1999.00 \N \N \N \N f t \N 1 2020-10-15 01:21:46.11239 2020-10-15 01:21:46.153987 3 0 0 0001365 \N \N f f \N \N 6 01010101 1366 BOL-1366 ENMI222 BACK PACK NEGRA GRANDE 1049.50 2099.00 \N \N \N \N f t \N 1 2020-10-22 18:38:08.102002 2020-10-22 18:38:08.102002 3 0 0 7509170690354 \N \N f f \N \N 6 01010101 1367 BOL-1367 1BLCP20934 BACK PACK NEGRO CON DETALLES ORO ROSADO 749.50 1499.00 \N \N \N \N f t \N 1 2020-10-22 18:41:13.063328 2020-10-22 18:41:13.063328 3 0 0 7509170795189 \N \N f f \N \N 6 01010101 1370 BOL-1370 2BLCV20368 CROSSBODY LETRAS 749.50 1499.00 \N \N \N \N f t \N 1 2020-10-22 18:48:19.687291 2020-10-22 18:48:19.687291 3 0 0 7509170821956 \N \N f f \N \N 6 01010101 1373 ZAP-1373 GURMA TENNIS BLANCOS 599.50 1199.00 \N \N \N \N f t \N 1 2020-10-23 01:00:35.599857 2020-10-23 01:00:35.642635 3 0 0 0001373 \N \N f f \N \N 13 01010101 1379 ACC-1379 DIA-0149 Diadema anudada tela geométrica de la flor del diamante artificial del todo-fósforo NEGRA, BEIGE Y ROSA 136.49 379.00 \N \N \N \N f t \N 1 2020-10-25 21:14:14.313162 2020-10-25 21:14:14.359036 3 0 0 0001379 \N \N f f \N NHWJ1149435-Off-white.jpg 17 01010101 1376 ZAP-1376 GURMA TENNIS BLANCOS 599.50 1199.00 \N \N \N \N f t \N 1 2020-10-23 18:54:27.387934 2020-10-23 18:54:27.387934 3 0 0 7509170810714 \N \N f f \N \N 13 01010101 1371 ZAP-1371 DIRAR TENNIS NEGRO Y ROSA 899.50 1799.00 \N \N \N \N f t \N 1 2020-10-22 23:48:04.86758 2020-10-24 18:23:36.908479 3 0 0 7509170831276 \N \N f f \N EC4451DC-AE33-4286-9922-BD0054B4CA09.jpeg 13 01010101 1375 ZAP-1375 MEIJAM TENNIS NEGROS CLOE 849.50 1699.00 \N \N \N \N f t \N 1 2020-10-23 18:53:18.302915 2020-10-24 18:24:15.24439 3 0 0 0001375 \N \N f f \N 98CD13BC-79D8-4E5A-AB04-87A9371E06EE.jpeg 13 01010101 1377 ACC-1377 DIA-0147 Perla terciopelo esponja elástica alta diadema de terciopelo ROSA, BLANCO Y GRIS 33.38 189.00 \N \N \N \N f t \N 1 2020-10-25 21:01:46.614806 2020-10-25 21:01:46.674107 3 0 0 0001377 \N \N f f \N NHAU1148854-ZMH0229fense.jpg 17 01010101 1378 ACC-1378 DIA-0148 diadema doble con diamantes y perlas retro 46.77 289.00 \N \N \N \N f t \N 1 2020-10-25 21:11:14.713861 2020-10-25 21:11:14.762068 3 0 0 0001378 \N \N f f \N NHYQ1137512-Main-color.jpg 17 01010101 1380 ACC-1380 DIA-0150 Diadema anudada tela geométrica de la flor del diamante artificial del todo-fósforo 136.49 379.00 \N \N \N \N f t \N 1 2020-10-25 21:24:22.575233 2020-10-25 21:27:31.126559 3 0 0 0001380 \N \N f f \N NHCW1150728-Pink.jpg 17 01010101 1381 ACC-1381 DIA-0156 Diadema negra de terciopelo del metal de la perla 192.19 389.00 \N \N \N \N f t \N 1 2020-10-25 21:35:35.369223 2020-10-25 21:35:35.414534 3 0 0 0001381 \N \N f f \N NHCO1128684-BR01.jpg 17 01010101 1382 ACC-1382 DIA-0154 Diadema negra con aplicaciones negras 47.62 139.00 \N \N \N \N f t \N 1 2020-10-25 21:48:24.719851 2020-10-25 21:48:24.759676 3 0 0 0001382 \N \N f f \N NHSM906878-black.jpg 17 01010101 1383 ACC-1383 DIA-0159 Diadema negra de terciopelo venda de la perla de la venda \r\n\r\n 148.18 369.00 \N \N \N \N f t \N 1 2020-10-25 21:51:24.973383 2020-10-25 21:51:25.020132 3 0 0 0001383 \N \N f f \N NHCO1128658-Model-BZ04.jpg 17 01010101 1384 ACC-1384 DIA-0160 Diadema geométrica con flor de perla grande barroca 163.07 389.00 \N \N \N \N f t \N 1 2020-10-25 22:58:22.351176 2020-10-25 22:58:22.393362 3 0 0 0001384 \N \N f f \N NHLN1167968-Golden.jpg 17 01010101 1385 ACC-1385 DIA-0161 Joyería de cabeza de diadema de ladrillo de copo de nieve de moda coreana retro simple para mujeres NHCW263570\r\n 101.84 269.00 \N \N \N \N f t \N 1 2020-10-25 23:00:37.686386 2020-10-25 23:00:37.722009 3 0 0 0001385 \N \N f f \N NHCW1150758-black.jpg 17 01010101 1356 BLU-1356 BLS-0144 BLUSA BEIGE CON DESTELLOS DORADOS Y PLATEADOS 286.00 699.00 \N \N \N \N f t \N 1 2020-09-28 19:10:47.337767 2020-11-14 19:14:26.194209 3 0 0 0001356 \N \N f f \N FE16BCDB-003C-4CAC-BAB6-C6A23030F87C.jpeg 7 01010101 1374 ZAP-1374 AYHAM MOCASINES NEGROS Y CAFES 799.50 1599.00 \N \N \N \N f t \N 1 2020-10-23 18:51:52.047824 2020-10-27 22:59:14.428452 3 0 0 7509170830279 \N \N f f \N AHYAM.png 13 01010101 1369 BOL-1369 1BLCV20264 BACK PACK LETRAS 899.50 1799.00 \N \N \N \N f t \N 1 2020-10-22 18:47:14.723707 2020-11-21 19:51:30.405272 3 0 0 7509170818468 \N \N f f \N 9B43D5AA-D066-49EA-AEB3-738B65EB4545.jpeg 6 01010101 1352 COS-1352 4CSCP20791 COSMETIQUERA CLOE ROSA METALICA 249.50 499.00 \N \N \N \N f t \N 1 2020-09-22 20:14:07.937129 2020-11-21 20:24:13.076888 3 0 0 7509170791754 \N \N f f \N 3B4F80FC-CA7E-45CE-B2EE-C4911E6F1871.jpeg 14 01010101 1353 COS-1353 4CSCP20802BLA COSMETIQUERA LIMON 349.50 699.00 \N \N \N \N f t \N 1 2020-09-22 20:15:34.474089 2020-11-21 20:28:46.680034 3 0 0 7509170791860 \N \N f f \N 9C290DAE-28CC-484A-AD10-E104F4975A03.jpeg 14 01010101 1354 COS-1354 4CSCP20808 COSMETIQUERA FLORES 299.50 599.00 \N \N \N \N f t \N 1 2020-09-22 20:17:02.790735 2020-11-21 20:29:43.167598 3 0 0 7509170791921 \N \N f f \N EE4DB16F-BD6D-4ECC-9728-D94216281472.jpeg 14 01010101 1386 ACC-1386 DIA-0162 Exagerada Hecha A Mano De Nueva Piedra Preciosa De Cristal 229.40 569.00 \N \N \N \N f t \N 1 2020-10-25 23:07:56.682905 2020-10-25 23:07:56.733776 3 0 0 0001386 \N \N f f \N NHWJ1104390-Hair-band.jpg 17 01010101 1387 ACC-1387 DIA-0163 Perla Exagerada Pétalo De Encaje Diamante Cristal Geométrico 229.40 549.00 \N \N \N \N f t \N 1 2020-10-25 23:16:36.394318 2020-10-25 23:16:36.456292 3 0 0 0001387 \N \N f f \N NHWJ1149433-Pink.jpg 17 01010101 1388 ACC-1388 DIA-0164 Perla Terciopelo Dorado Flor Rosa 82.70 199.00 \N \N \N \N f t \N 1 2020-10-25 23:23:37.699542 2020-10-25 23:23:37.745552 3 0 0 0001388 \N \N f f \N NHCW1139765-Transparent-brick.jpg 17 01010101 1389 ACC-1389 DIA-0165 Diadema Retro Para El Cabello Estilo Barroco Agua Salvaje Ladrillo Perla Prensad 89.00 229.00 \N \N \N \N f t \N 1 2020-10-25 23:25:54.057003 2020-10-25 23:25:54.101837 3 0 0 0001389 \N \N f f \N NHCW1150756-black.jpg 17 01010101 1390 ACC-1390 DIA-0166 Diadema Trenzada Trenzada Con Cadena De Terciopelo Dorado De Metal 54.22 189.00 \N \N \N \N f t \N 1 2020-10-25 23:27:37.199129 2020-10-25 23:27:37.235511 3 0 0 0001390 \N \N f f \N NHCW1150740-black.jpg 17 01010101 1391 ACC-1391 DIA-0171 De La Aleación De La Moda Trenzó La Venda Anudada 33.99 199.00 \N \N \N \N f t \N 1 2020-10-25 23:33:26.729888 2020-10-25 23:33:26.779783 3 0 0 0001391 \N \N f f \N NHSM1138357-Thin-edge-chain.jpg 17 01010101 1392 ACC-1392 DIA-0158 Venta caliente venta al por mayor llena de la venda del diamante de la moda \r\n 228.12 569.00 \N \N \N \N f t \N 1 2020-10-26 01:39:43.730325 2020-10-26 01:39:43.777568 3 0 0 0001392 \N \N f f \N NHLN1128738-color.jpg 17 01010101 1393 ACC-1393 DIA-0146 Diadema De Perlas Finas De Cristal 16.16 119.00 \N \N \N \N f t \N 1 2020-10-26 01:53:02.208483 2020-10-26 01:53:02.248791 3 0 0 0001393 \N \N f f \N NHDP288435-Pink-3200.jpg 17 01010101 1394 ACC-1394 DIA-0151 Perla Rhinestone Diadema Aleación Abeja Flores 89.08 299.00 \N \N \N \N f t \N 1 2020-10-26 01:55:31.391901 2020-10-26 01:55:31.428369 3 0 0 0001394 \N \N f f \N NHLN846944-red.jpg 17 01010101 1395 ACC-1395 DIA-0152 Diadema De Diamantes Coloridos 33.81 119.00 \N \N \N \N f t \N 1 2020-10-26 01:59:08.117656 2020-10-26 01:59:08.155071 3 0 0 0001395 \N \N f f \N NHUX864542-black.jpg 17 01010101 1396 ACC-1396 DIA-0153 Diadema Retro Cadena De Diamantes De Imitación Flor Ensanchada 111.62 359.00 \N \N \N \N f t \N 1 2020-10-26 02:01:40.847084 2020-10-26 02:01:40.88933 3 0 0 0001396 \N \N f f \N NHHD876225-Dark-blue.jpg 17 01010101 1397 ACC-1397 DIA-0155 Diadema de diamantes de color de aleación de tela creativa d 35.51 119.00 \N \N \N \N f t \N 1 2020-10-26 02:04:39.814719 2020-10-26 02:04:39.860668 3 0 0 0001397 \N \N f f \N NHJE907261-red.jpg 17 01010101 1398 ACC-1398 DIA-0157 Diadema De Ala Ancha De Abeja 89.09 299.00 \N \N \N \N f t \N 1 2020-10-26 02:06:36.583019 2020-10-26 02:06:36.622234 3 0 0 0001398 \N \N f f \N NHCW925624-black.jpg 17 01010101 1399 ACC-1399 DIA-0168 DIADEMA DE SATIN BRILLOSA NEGRA Y ROSA 24.24 109.00 \N \N \N \N f t \N 1 2020-10-26 02:10:14.815019 2020-10-26 02:10:14.854615 3 0 0 0001399 \N \N f f \N NHMD1144539-Pink.jpg 17 01010101 1400 ACC-1400 DIA-0169 Diadema De Terciopelo Dorado Negro 72.92 239.00 \N \N \N \N f t \N 1 2020-10-26 02:14:01.198387 2020-10-26 02:14:01.245569 3 0 0 0001400 \N \N f f \N NHLN1151134-black.jpg 17 01010101 1401 ACC-1401 DIA-0170 De La Aleación De La Moda Trenzó La Venda Anudada\r\n 38.30 159.00 \N \N \N \N f t \N 1 2020-10-26 02:17:36.600161 2020-10-26 02:17:36.636201 3 0 0 0001401 \N \N f f \N NHSM1138356-Wide-side-chain.jpg 17 01010101 1402 ZAP-1402 SOMIL BOTAS NEGRAS ALTAS DE GAMUZA 1149.50 2299.00 \N \N \N \N f t \N 1 2020-10-26 21:51:12.698323 2020-10-26 21:51:12.751024 3 0 0 0001402 \N \N f f \N SOMIL.png 13 01010101 1403 ACC-1403 ARE-0127 ARETE DE ESTRELL Y TIRAS COLGANTES 78.82 199.00 \N \N \N \N f t \N 1 2020-10-27 19:30:04.396982 2020-10-27 19:30:04.44416 3 0 0 0001403 \N \N f f \N SC180504100810.jpg 17 01010101 1404 ACC-1404 ARE-0133 ARETE SANDIA 32.55 249.00 \N \N \N \N f t \N 1 2020-10-27 19:31:43.500778 2020-10-27 19:31:43.54327 3 0 0 0001404 \N \N f f \N NHJJ122938.jpg 17 01010101 1413 ACC-1413 ARE-0137 ARETE DE CORAZÓN CON PIEDRA Y BOLITA 83.85 189.00 \N \N \N \N f t \N 1 2020-10-27 21:14:39.129925 2020-10-27 21:14:39.172189 3 0 0 0001413 \N \N f f \N \N 17 01010101 1406 ACC-1406 ARE-0131 ARETE LOVE 37.57 189.00 \N \N \N \N f t \N 1 2020-10-27 19:35:47.269791 2020-10-27 19:35:47.311853 3 0 0 0001406 \N \N f f \N SC18122797444.jpg 17 01010101 1407 ACC-1407 ARE-0130 ARETE CORAZÓN CON PERLAS 38.00 119.00 \N \N \N \N f t \N 1 2020-10-27 19:37:09.898096 2020-10-27 19:37:09.939679 3 0 0 0001407 \N \N f f \N \N 17 01010101 1409 ACC-1409 ARE-0136 ARETE CORAZÓN ROJO 49.00 239.00 \N \N \N \N f t \N 1 2020-10-27 19:40:16.481137 2020-10-27 19:40:16.525449 3 0 0 0001409 \N \N f f \N NHMS133870.jpg 17 01010101 1410 ACC-1410 ARE-0139 ARETE MARIPOSA MORADA 12.98 89.00 \N \N \N \N f t \N 1 2020-10-27 19:41:38.830168 2020-10-27 19:41:38.8791 3 0 0 0001410 \N \N f f \N NHNZ158369.jpg 17 01010101 1414 ACC-1414 ARE-0138 ARETE ESTRELLA PIEDRA 52.00 229.00 \N \N \N \N f t \N 1 2020-10-27 21:16:01.453141 2020-10-27 21:16:01.493529 3 0 0 0001414 \N \N f f \N NHKQ123283.jpg 17 01010101 1408 ACC-1408 ARE.0132 ARETE CUADRADO PIEDRAS 43.84 279.00 \N \N \N \N f t \N 1 2020-10-27 19:38:38.731454 2020-10-27 19:57:11.330845 3 0 0 0001408 \N \N f f \N NHJE136332.jpg 17 01010101 1405 ACC-1405 ARE-0132 ARETE MARIPOSA 39.80 189.00 \N \N \N \N f t \N 1 2020-10-27 19:34:42.667513 2020-10-27 20:28:00.883994 3 0 0 0001405 \N \N f f \N SC18122797693.jpg 17 01010101 1411 ACC-1411 ARE-0129 ARETE CORAZÓN 48.88 179.00 \N \N \N \N f t \N 1 2020-10-27 19:43:29.245049 2020-10-27 20:30:28.118 3 0 0 0001411 \N \N f f \N NHNZ221185.jpg 17 01010101 1415 ACC-1415 ARE-0139 ARETE FLOR Y LUNA 52.00 269.00 \N \N \N \N f t \N 1 2020-10-27 21:17:23.698421 2020-10-27 21:17:23.742531 3 0 0 0001415 \N \N f f \N NHKQ123004.jpg 17 01010101 1412 ACC-1412 ARE-0138 ARTE PIEDRAS CON HILO ROSA 19.15 169.00 \N \N \N \N f t \N 1 2020-10-27 21:12:27.95238 2020-10-27 21:21:06.674621 3 0 0 0001412 \N \N f f \N SC180504101208.jpg 17 01010101 1422 ACC-1422 ARE-0149 ARETE CORAZÓN CON PERLA Y FLORES 52.00 199.00 \N \N \N \N f t \N 1 2020-10-27 21:53:44.799266 2020-10-27 21:53:44.835301 3 0 0 0001422 \N \N f f \N \N 17 01010101 1417 ACC-1417 ARE-0147 ARETE CORAZÓN CON PIEDRAS COLORES 68.00 299.00 \N \N \N \N f t \N 1 2020-10-27 21:32:30.542462 2020-10-27 21:32:30.579819 3 0 0 0001417 \N \N f f \N NHJE698853-Gold-color.jpg 17 01010101 1419 ACC-1419 ARE-0141 KISS Y BESO 51.00 169.00 \N \N \N \N f t \N 1 2020-10-27 21:36:42.401457 2020-10-27 21:36:42.437403 3 0 0 0001419 \N \N f f \N NHSC182639.jpg 17 01010101 1420 ACC-1420 ARE-0146 ARETE ESTRELLA Y PIEDRAS 85.00 299.00 \N \N \N \N f t \N 1 2020-10-27 21:39:15.061024 2020-10-27 21:39:15.104737 3 0 0 0001420 \N \N f f \N NHMS205761.jpg 17 01010101 1421 ACC-1421 ARE-0144 ARETE PALETA CON PIEDRAS 30.00 199.00 \N \N \N \N f t \N 1 2020-10-27 21:40:35.923404 2020-10-27 21:40:35.962123 3 0 0 0001421 \N \N f f \N NHJJ520852-color.jpg 17 01010101 1416 ACC-1416 ARE-0142 ARETE CIRCULO CON ESTRELLA 64.00 179.00 \N \N \N \N f t \N 1 2020-10-27 21:30:23.444655 2020-10-27 21:48:25.735089 3 0 0 0001416 \N \N f f \N NHSC187686.jpg 17 01010101 1418 ACC-1418 ARE-0150 ARETE CORAZÓN PIDRAS PLATA Y DORADO 34.00 289.00 \N \N \N \N f t \N 1 2020-10-27 21:34:27.03872 2020-10-27 21:50:29.971213 3 0 0 0001418 \N \N f f \N NHDP237070.jpg 17 01010101 1423 ACC-1423 ARE-0143 ARETE ESTRELLA 49.00 179.00 \N \N \N \N f t \N 1 2020-10-27 21:55:25.902074 2020-10-27 21:55:25.939393 3 0 0 0001423 \N \N f f \N NHSC187675.jpg 17 01010101 1424 ACC-1424 ARE-0145 ARETE ESTRELLA NEGRO 27.00 129.00 \N \N \N \N f t \N 1 2020-10-27 21:56:51.247612 2020-10-27 21:56:51.283863 3 0 0 0001424 \N \N f f \N \N 17 01010101 1425 ACC-1425 ARE-0178 ARETE MOÑO PIEDRAS 52.00 169.00 \N \N \N \N f t \N 1 2020-10-27 22:12:47.357127 2020-10-27 22:12:47.417414 3 0 0 0001425 \N \N f f \N 21436771617_1401670587.jpg 17 01010101 1426 ACC-1426 ARE-0176 ARETE LUNA COLGANTE 50.00 289.00 \N \N \N \N f t \N 1 2020-10-27 22:14:04.806878 2020-10-27 22:14:04.844259 3 0 0 0001426 \N \N f f \N \N 17 01010101 1427 ACC-1427 ARE-0182 ARETE MARIPOSA 29.00 120.00 \N \N \N \N f t \N 1 2020-10-27 22:16:03.550661 2020-10-27 22:16:03.587488 3 0 0 0001427 \N \N f f \N NHMS265822.jpg 17 01010101 1428 ACC-1428 ARE-0172 ARETE CALAVERA REYNA 55.00 249.00 \N \N \N \N f t \N 1 2020-10-27 22:17:40.95106 2020-10-27 22:17:40.99266 3 0 0 0001428 \N \N f f \N NHJQ263586.jpg 17 01010101 1429 ACC-1429 ARE-0175 ARETE LOVE LARGO 45.00 199.00 \N \N \N \N f t \N 1 2020-10-27 22:19:10.857972 2020-10-27 22:19:10.897909 3 0 0 0001429 \N \N f f \N NHKQ265105.jpg 17 01010101 1430 ACC-1430 ARE-0180 ARETE CORAZÓN CON PERLAS COLGANDO 31.00 159.00 \N \N \N \N f t \N 1 2020-10-27 22:20:18.428517 2020-10-27 22:20:18.467328 3 0 0 0001430 \N \N f f \N \N 17 01010101 1431 ACC-1431 ARE-0160 FLORES DE COLORES 40.00 269.00 \N \N \N \N f t \N 1 2020-10-27 22:40:10.956226 2020-10-27 22:40:10.995161 3 0 0 0001431 \N \N f f \N 10327766497_786828687.jpg 17 01010101 1432 ACC-1432 ARE-0162 ARETE CUADRO COLORES 37.00 129.00 \N \N \N \N f t \N 1 2020-10-27 22:41:40.49146 2020-10-27 22:41:40.532918 3 0 0 0001432 \N \N f f \N 9375902800_786828687.jpg 17 01010101 1433 ACC-1433 ARE-0159 ARETE CRUZ 34.00 139.00 \N \N \N \N f t \N 1 2020-10-27 22:43:02.339793 2020-10-27 22:43:02.378235 3 0 0 0001433 \N \N f f \N XS19012117819.jpg 17 01010101 1434 ACC-1434 ARE-0158 ARETE NEGRO ESTRELLA 32.00 129.00 \N \N \N \N f t \N 1 2020-10-27 22:44:29.287931 2020-10-27 22:44:29.323788 3 0 0 0001434 \N \N f f \N XS19012119132.jpg 17 01010101 1435 ACC-1435 ARE-0161 ARETE LUNAS Y ESTRELLAS 122.00 299.00 \N \N \N \N f t \N 1 2020-10-27 22:47:54.287712 2020-10-27 22:47:54.325675 3 0 0 0001435 \N \N f f \N TM18120463096.jpg 17 01010101 1436 ACC-1436 ARE-0163 ARETE DE CORAZÓN NEGRO 40.00 169.00 \N \N \N \N f t \N 1 2020-10-27 22:50:34.808384 2020-10-27 22:50:34.842818 3 0 0 0001436 \N \N f f \N NHLN251079.jpg 17 01010101 1437 ACC-1437 ARE-0165 ARETE PALETA LILA 19.00 119.00 \N \N \N \N f t \N 1 2020-10-27 22:52:50.098414 2020-10-27 22:52:50.133283 3 0 0 0001437 \N \N f f \N NHKQ260756.jpg 17 01010101 1438 ACC-1438 ARE-0164 ARETE ESTRELLA COLORES 32.00 139.00 \N \N \N \N f t \N 1 2020-10-27 22:54:26.876283 2020-10-27 22:54:26.91369 3 0 0 0001438 \N \N f f \N \N 17 01010101 1439 ACC-1439 ARE-0155 ARETE MARIPOSA PLATA 24.00 189.00 \N \N \N \N f t \N 1 2020-10-27 23:17:45.867635 2020-10-27 23:17:45.90435 3 0 0 0001439 \N \N f f \N NHHF246112.jpg 17 01010101 1440 ACC-1440 ARE-0166 ARETE DONAS 25.00 199.00 \N \N \N \N f t \N 1 2020-10-27 23:19:12.443789 2020-10-27 23:19:12.482235 3 0 0 0001440 \N \N f f \N NHPS261170.jpg 17 01010101 1441 ACC-1441 ARE-0167 ARETE ESTRELLITAS 40.00 139.00 \N \N \N \N f t \N 1 2020-10-27 23:20:15.827589 2020-10-27 23:20:15.865909 3 0 0 0001441 \N \N f f \N NHRN1141232-Golden.jpg 17 01010101 1442 ACC-1442 ARE-0151 ARETE GATITA 55.00 189.00 \N \N \N \N f t \N 1 2020-10-27 23:21:37.233934 2020-10-27 23:21:37.293058 3 0 0 0001442 \N \N f f \N NHFT238589.jpg 17 01010101 1443 ACC-1443 ARE-0169 ARETE CALAVERA 52.00 249.00 \N \N \N \N f t \N 1 2020-10-27 23:24:40.918016 2020-10-27 23:24:40.964709 3 0 0 0001443 \N \N f f \N NHJQ261710.jpg 17 01010101 1444 ACC-1444 ARE-0171 ARETE CUADRO DORADO 28.00 109.00 \N \N \N \N f t \N 1 2020-10-27 23:26:18.335995 2020-10-27 23:26:18.399835 3 0 0 0001444 \N \N f f \N NHXI261995.jpg 17 01010101 1445 ACC-1445 ARE-0186 ARETE TRABA Y ESTRELLA 35.00 169.00 \N \N \N \N f t \N 1 2020-10-27 23:28:01.513267 2020-10-27 23:28:01.560317 3 0 0 0001445 \N \N f f \N NHOA266597.jpg 17 01010101 1446 ACC-1446 ARE-0136 ARETE CHAMPANE 92.00 249.00 \N \N \N \N f t \N 1 2020-10-27 23:30:00.762617 2020-10-27 23:30:00.80944 3 0 0 0001446 \N \N f f \N NHPP266663.jpg 17 01010101 1447 ACC-1447 ARE-0137 ARETE MARIPOSA 17.00 89.00 \N \N \N \N f t \N 1 2020-10-27 23:31:47.355627 2020-10-27 23:31:47.403139 3 0 0 0001447 \N \N f f \N NHOT266470.jpg 17 01010101 1448 ACC-1448 ARE-0154 ARETE MARIPOSA 19.00 139.00 \N \N \N \N f t \N 1 2020-10-28 00:14:25.538101 2020-10-28 00:14:25.597444 3 0 0 0001448 \N \N f f \N NHHF246110.jpg 17 01010101 1449 ACC-1449 ARE-0153 ARETE MARIPOSA PIEDRAS LILAS 46.08 269.00 \N \N \N \N f t \N 1 2020-10-28 19:39:12.122369 2020-10-28 19:39:12.169937 3 0 0 0001449 \N \N f f \N \N 17 01010101 1450 ACC-1450 ARE-0152 ARETE ESTRELLA PERLA Y LISTON 52.00 179.00 \N \N \N \N f t \N 1 2020-10-28 19:41:39.463318 2020-10-28 19:41:39.505386 3 0 0 0001450 \N \N f f \N NHFT238590.jpg 17 01010101 1451 ACC-1451 ARE-0116 ARETE ESTRELLAS Y PERLA 60.00 269.00 \N \N \N \N f t \N 1 2020-10-28 19:44:25.007432 2020-10-28 19:44:25.058344 3 0 0 0001451 \N \N f f \N KQ19030569394.jpg 17 01010101 1452 ACC-1452 ARE-0128 ARETE DE MARIPOSA 28.00 149.00 \N \N \N \N f t \N 1 2020-10-28 19:47:33.538976 2020-10-28 19:47:33.59359 3 0 0 0001452 \N \N f f \N NHXI251299.jpg 17 01010101 1453 ACC-1453 ARE-0168 ARETE DE FLOR LILA Y ROSA 74.00 199.00 \N \N \N \N f t \N 1 2020-10-28 19:53:43.349648 2020-10-28 19:53:43.387421 3 0 0 0001453 \N \N f f \N \N 17 01010101 1454 ACC-1454 ARE-0118 ARETE DE MARIPOSA Y PIEDRAS 43.00 199.00 \N \N \N \N f t \N 1 2020-10-28 19:55:48.239827 2020-10-28 19:55:48.278247 3 0 0 0001454 \N \N f f \N NHRN263827.jpg 17 01010101 1455 ACC-1455 ARE-0173 ARETE DE LUNA 25.00 99.00 \N \N \N \N f t \N 1 2020-10-28 19:57:37.984138 2020-10-28 19:57:38.023651 3 0 0 0001455 \N \N f f \N NHDP263835.jpg 17 01010101 1456 ACC-1456 ARE-0179 ARETE MOÑO PIEDRA GRANDE 40.00 289.00 \N \N \N \N f t \N 1 2020-10-28 19:59:04.749389 2020-10-28 19:59:04.783467 3 0 0 0001456 \N \N f f \N \N 17 01010101 1457 ACC-1457 ARE-0140 ARETE TORNASOL 65.00 299.00 \N \N \N \N f t \N 1 2020-10-28 20:24:15.718976 2020-10-28 20:24:15.756874 3 0 0 0001457 \N \N f f \N NHVA219349.jpg 17 01010101 1458 ACC-1458 ARE-0156 ARETE ESTRELLA ARRIBA ABAJO 65.00 230.00 \N \N \N \N f t \N 1 2020-10-28 20:25:49.972024 2020-10-28 20:25:50.023016 3 0 0 0001458 \N \N f f \N \N 17 01010101 1459 ACC-1459 ARE-0170 ARETE PERLA FLOR 43.00 179.00 \N \N \N \N f t \N 1 2020-10-28 20:27:55.057808 2020-10-28 20:27:55.096281 3 0 0 0001459 \N \N f f \N \N 17 01010101 1460 ACC-1460 ARE-0111 ARETE CORAZON CON MOÑO NEGRO 27.00 129.00 \N \N \N \N f t \N 1 2020-10-28 20:31:12.472224 2020-10-28 20:31:12.519727 3 0 0 0001460 \N \N f f \N NHLN265256.jpg 17 01010101 1462 ACC-1462 ARE-0146 ARETE ARCOIRIS 56.00 299.00 \N \N \N \N f t \N 1 2020-10-28 20:44:47.699814 2020-10-28 20:44:47.737855 3 0 0 0001462 \N \N f f \N NHKQ266702.jpg 17 01010101 1463 ACC-1463 ARE-0184 ARETE FLORES PERLAS 43.00 149.00 \N \N \N \N f t \N 1 2020-10-28 20:46:16.782478 2020-10-28 20:46:16.827336 3 0 0 0001463 \N \N f f \N \N 17 01010101 1461 ACC-1461 ARE-0187 ARETE LUNA Y ESTRELLA 23.00 119.00 \N \N \N \N f t \N 1 2020-10-28 20:42:49.394711 2020-10-28 21:01:21.089104 3 0 0 0001461 \N \N f f \N NHOA266603.jpg 17 01010101 1465 BOL-1465 3BLCP20113 BACK PACK CON BOLSITA ENFRENTE 849.50 1699.00 \N \N \N \N f t \N 1 2020-10-29 20:44:26.495438 2020-10-29 20:44:26.495438 3 0 0 7509170801347 \N \N f f \N \N 6 01010101 1467 BOL-1467 2BLCV20381 BACK PACK NEGRO MULTICOLOR 1049.50 2099.00 \N \N \N \N f t \N 1 2020-10-29 20:46:39.505157 2020-10-29 20:46:39.505157 3 0 0 7509170822359 \N \N f f \N \N 6 01010101 1468 BOL-1468 3BLCV20449 BOLSO CON PAÑUELO 849.50 1699.00 \N \N \N \N f t \N 1 2020-10-29 20:47:43.76652 2020-10-29 20:47:43.76652 3 0 0 7509170824575 \N \N f f \N \N 6 01010101 1472 CAR-1472 NILE897 CARTERA NEGRA CON TARJETERO 249.50 499.00 \N \N \N \N f t \N 1 2020-10-29 21:24:47.434669 2020-11-21 19:32:37.67304 3 0 0 7509170723755 \N \N f f \N CD149B8B-04B0-4158-A802-7A0310368633.jpeg 4 01010101 1470 CAR-1470 3BICP20087 CARTERA PEQUEÑA 349.50 699.00 \N \N \N \N f t \N 1 2020-10-29 21:19:16.738137 2020-10-29 21:19:16.738137 3 0 0 7509170800449 \N \N f f \N \N 4 01010101 1474 CAR-1474 2BICV20377 CARTERA CLOE 499.50 999.00 \N \N \N \N f t \N 1 2020-10-29 21:26:05.652645 2020-10-29 21:26:05.652645 3 0 0 7509170822236 \N \N f f \N \N 4 01010101 1473 CAR-1473 NILE898 CARTERA ROJA 249.50 499.00 \N \N \N \N f t \N 1 2020-10-29 21:25:25.434261 2020-11-21 19:33:00.206246 3 0 0 7509170723731 \N \N f f \N 3A389419-8A57-4870-9A54-2ED6AA84BA49.jpeg 4 01010101 1466 BOL-1466 1BLCV20263 BOLSO LETRAS 849.50 1699.00 \N \N \N \N f t \N 1 2020-10-29 20:45:18.580004 2020-11-21 19:50:52.232853 3 0 0 7509170818444 \N \N f f \N 63ACB4CD-D688-4050-A3BE-A7B69572B543.jpeg 6 01010101 1475 ZAP-1475 POSITANO ZAPATILLA NUDE 799.50 1599.00 \N \N \N \N f t \N 1 2020-10-29 23:03:07.47039 2020-10-29 23:03:07.47039 3 0 0 7509170804102 \N \N f f \N \N 13 01010101 1501 VES-1501 VST-0127 VESTIDO DE GAZA BEIGE THEMOON 440.00 1109.00 \N \N \N \N f t \N 1 2020-11-03 20:56:21.587893 2020-11-03 21:22:31.279258 3 0 0 0001501 \N \N f f \N D832DCA4-1007-40D7-8FCB-3667EB1D2EB7.jpeg 12 01010101 1487 CON-1487 CON-0005 SET COLORES PASTEL LABANGA 22385 412.00 999.00 \N \N \N \N f t \N 1 2020-11-03 18:51:03.252318 2020-11-03 19:46:47.917429 3 0 0 0001487 \N \N f f \N ED7D11D2-1FC5-40E6-A3C9-6109A330DF4E.jpeg 10 01010101 1490 BLU-1490 BLS-0148 PLAYERA MICKEY I TOO 231.00 589.00 \N \N \N \N f t \N 1 2020-11-03 18:58:23.966466 2020-11-03 19:51:54.895729 3 0 0 0001490 \N \N f f \N C0C35DEF-FC54-405F-B5CE-7F0850D6468E.jpeg 7 01010101 1491 BLU-1491 BLS-0149 BLUSA DE LENTEJUELA BLANCA Y NEGRA CIEN 363.00 899.00 \N \N \N \N f t \N 1 2020-11-03 19:31:29.825456 2020-11-03 19:52:31.981738 3 0 0 0001491 \N \N f f \N 18D10C2F-E2D9-46B6-A9E8-12B9CEA5BF61.jpeg 7 01010101 1511 BLU-1511 BLS-0160 BLUSA DE LENTEJUELA COLORES TORNASOL APEACH 6141 330.00 825.00 \N \N \N \N f t \N 1 2020-11-03 21:59:19.329394 2020-11-03 22:35:22.632508 3 0 0 0001511 \N \N f f \N D4232A22-6F1B-45C5-860E-D41A07E97465.jpeg 7 01010101 1483 VES-1483 VST-0122 VESTIDO BLACK SHINE SILVER VALENTINE 8068 407.00 1199.00 \N \N \N \N f t \N 1 2020-11-02 18:55:02.494379 2020-11-02 21:00:48.541471 3 0 0 0001483 \N \N f f \N FE28D0E3-C805-4870-8F0C-A58A1D59C8D3.png 12 01010101 1485 BLU-1485 BLS-0147 BLUSA TORNASOL APEACH 3521 330.00 799.00 \N \N \N \N f t \N 1 2020-11-02 20:44:38.465562 2020-11-03 22:32:42.227249 3 0 0 0001485 \N \N f f \N 5AD71199-F179-42BA-9DF6-A17BB899A152.jpeg 7 01010101 1481 BLU-1481 BLS-0146 CORSET BLANCO I TOO 435.00 989.00 \N \N \N \N f t \N 1 2020-11-01 02:06:27.280319 2020-11-02 21:26:52.780188 3 0 0 0001481 \N \N f f \N A9B064F9-11C9-4831-BEB2-D129005FE46D.jpeg 7 01010101 1482 VES-1482 VST-0121 VESTIDO MOSTAZA PEGADO CON CINTO VALENTINE 352.00 899.00 \N \N \N \N f t \N 1 2020-11-01 02:08:11.973958 2020-11-02 21:39:43.373809 3 0 0 0001482 \N \N f f \N CCC72555-0D95-4EB6-9C67-76E4BA251772.jpeg 12 01010101 1484 PAL-1484 VST-0123 PALAZZO SILVER VALENTINE 8057 561.00 1399.00 \N \N \N \N f t \N 1 2020-11-02 18:55:55.944339 2020-11-02 21:40:26.375034 3 0 0 0001484 \N \N f f \N CEF0F28B-AD1B-4C54-9E6C-70A86A3A68C3.jpeg 9 01010101 1492 BLU-1492 BLS-0150 BLUSA CON PUNTITOS NEGRA Y BLANCA CIEN 20172 324.50 799.00 \N \N \N \N f t \N 1 2020-11-03 19:33:38.310245 2020-11-03 20:06:53.907731 3 0 0 0001492 \N \N f f \N 1F10AD73-37D8-4FDC-9C3B-C8A19CEE9205.jpeg 7 01010101 1486 PAN-1486 PNT-0034 OVEROL NEGRO LABANGA 12195 258.00 699.00 \N \N \N \N f t \N 1 2020-11-02 23:40:17.642986 2020-11-03 00:24:18.494452 3 0 0 0001486 \N \N f f \N 4211D334-DEC4-407F-AB12-F83AE101C1B1.jpeg 8 01010101 1502 BLU-1502 BLS-0155 BLUSA TRANSPARENTE NEGRA CON BOTONES DE ESTRELLA THEMOON 308.00 799.00 \N \N \N \N f t \N 1 2020-11-03 20:57:30.831079 2020-11-03 21:23:01.851848 3 0 0 0001502 \N \N f f \N 4F87FCCD-6001-4F3E-838F-4655E67A15DF.jpeg 7 01010101 1503 BLU-1503 BLS-0156 BLUSA TIPO CAMISA NEGRA CON FIGURAS EN MANGA THEMOON 528.00 999.00 \N \N \N \N f t \N 1 2020-11-03 20:58:43.277494 2020-11-03 21:23:37.653741 3 0 0 0001503 \N \N f f \N 89A48CCB-299C-412A-ACA7-31AEB53FF9E4.jpeg 7 01010101 1504 CHA-1504 CHA-0026 CHAMARRA TIPO SASTRE CON PIEL NEGRA LC 324.50 999.00 \N \N \N \N f t \N 1 2020-11-03 21:04:05.083333 2020-11-03 21:25:06.979989 3 0 0 0001504 \N \N f f \N 5E27C988-B148-4593-B03C-51053B6B12B5.jpeg 24 01010101 1505 BLU-1505 BLS-0157 PLAYERA NEGRA CON PEDRERIA LC 209.00 529.00 \N \N \N \N f t \N 1 2020-11-03 21:05:05.037245 2020-11-03 21:25:37.446477 3 0 0 0001505 \N \N f f \N FB007931-2CD9-4473-B974-81AEB284E2B1.jpeg 7 01010101 1493 BLU-1493 BLS-0151 BLUSA CON MECHITAS ROJO, ROSA Y NEGRO CIEN 341.00 869.00 \N \N \N \N f t \N 1 2020-11-03 19:34:46.731629 2020-11-03 20:08:46.907153 3 0 0 0001493 \N \N f f \N B9D7B0BB-A08D-41F0-94F8-CF6FD5A73732.jpeg 7 01010101 1488 PAN-1488 PNT-0035 PANTALON NEGRO LISO LABANGA 9683 275.00 699.00 \N \N \N \N f t \N 1 2020-11-03 18:54:34.570791 2020-11-03 20:09:53.583653 3 0 0 0001488 \N \N f f \N 63BE75B5-C5E9-4E9A-97F2-8486DAD8C9CD.jpeg 8 01010101 1489 PAN-1489 PNT-0036 PANTALON MAGENTA LISO LABANGA 9683 275.00 699.00 \N \N \N \N f t \N 1 2020-11-03 18:56:04.213846 2020-11-03 20:11:30.696637 3 0 0 0001489 \N \N f f \N 7B3DDEB5-E5A0-4B4C-845B-09F4006FD92C.jpeg 8 01010101 1494 VES-1494 VST-0124 VESTIDO ROJO CON EVILLA CIEN 30050 561.00 1399.00 \N \N \N \N f t \N 1 2020-11-03 19:37:28.286867 2020-11-03 20:12:16.329756 3 0 0 0001494 \N \N f f \N 953DE56A-D5B4-47DA-A18F-517C53C01427.jpeg 12 01010101 1495 VES-1495 VST-0125 VESTIDO DE PIEL NEGRO CIEN 522.00 1399.00 \N \N \N \N f t \N 1 2020-11-03 19:38:16.131107 2020-11-03 20:13:05.606339 3 0 0 0001495 \N \N f f \N 7D978CF7-30FE-4E91-B116-AA9DDBCFE5CB.jpeg 12 01010101 1496 VES-1496 VST-0126 VESTIDO NEGRO CON LENTEJUELA RRIBA CIEN 30106 495.00 1299.00 \N \N \N \N f t \N 1 2020-11-03 19:39:14.475116 2020-11-03 20:13:42.938841 3 0 0 0001496 \N \N f f \N 4BAC7789-98AD-4EB8-A044-B349549A7115.jpeg 12 01010101 1499 BLU-1499 BLS-0154 PLAYERA CON PERLAS ROSA Y NEGRA MUYMUY 187.00 489.00 \N \N \N \N f t \N 1 2020-11-03 20:51:28.124644 2020-11-03 21:21:11.432381 3 0 0 0001499 \N \N f f \N B76FFE25-AD34-4DA6-9784-49D9C89C346B.jpeg 7 01010101 1500 CHA-1500 CHA-0025 SUETER NEGRO CON LENTEJUELA VERDE M2 220.00 689.00 \N \N \N \N f t \N 1 2020-11-03 20:55:13.189601 2020-11-03 21:21:50.819159 3 0 0 0001500 \N \N f f \N 61EF1A36-A57C-4F1B-8AB1-E45C6FBD3C41.jpeg 24 01010101 1506 BLU-1506 BLS-0158 PANTIBLUSA CON ENCAJE MOSTAZA Y NEGRA LC 165.00 489.00 \N \N \N \N f t \N 1 2020-11-03 21:08:02.656108 2020-11-03 21:26:05.215353 3 0 0 0001506 \N \N f f \N 4877FF31-5D20-42F9-8B44-B99750F10FD6.jpeg 7 01010101 1507 BLU-1507 BLS-0159 BLUSA CON LISTON PAR MOÑO NEGRA Y BEIGE LC 275.00 749.00 \N \N \N \N f t \N 1 2020-11-03 21:09:27.506421 2020-11-03 21:26:34.361016 3 0 0 0001507 \N \N f f \N A5814745-19BC-4EAE-99C0-14D3247AC485.jpeg 7 01010101 1508 FAL-1508 FLD-0036 FALDA PIEL NEGRA DE CIERRE ONEBYONE 165.00 499.00 \N \N \N \N f t \N 1 2020-11-03 21:11:19.70157 2020-11-03 21:27:18.531645 3 0 0 0001508 \N \N f f \N 5C8D27FF-9BDA-4699-90EA-D5B3C1DB4BF4.jpeg 11 01010101 1509 FAL-1509 FLD-0037 FALDA DE PIEL NEGRA CON ARGOLLAS ONEBYONE 209.00 589.00 \N \N \N \N f t \N 1 2020-11-03 21:13:34.338511 2020-11-03 21:27:52.430801 3 0 0 0001509 \N \N f f \N C11952F7-B5AF-4D8B-B184-E7585549CEF0.jpeg 11 01010101 1510 PAN-1510 PNT-0037 PANTALON DE PIEL NEGRO ONEBYONE 209.00 589.00 \N \N \N \N f t \N 1 2020-11-03 21:14:17.790882 2020-11-03 21:28:30.551442 3 0 0 0001510 \N \N f f \N 1720C1CA-1939-4048-AA39-11316DB84807.jpeg 8 01010101 1512 VES-1512 VST-0128 VESTIDO NEGRO CON MANGA DE GAZA APEACH 40270 439.50 1199.00 \N \N \N \N f t \N 1 2020-11-03 22:01:48.66488 2020-11-03 22:57:42.598049 3 0 0 0001512 \N \N f f \N F5138F53-7244-4AFE-B65D-C801CB634C15.jpeg 12 01010101 1497 BLU-1497 BLS-0152 BLUSA TIPO CORSET NEGRO CON FIGURAS DORADAS MUYMUY 20032 231.00 629.00 \N \N \N \N f t \N 1 2020-11-03 20:43:40.331177 2020-11-03 21:18:33.613725 3 0 0 0001497 \N \N f f \N 09BB988C-A5EA-4355-BC91-149F133FB04F.jpeg 7 01010101 1498 BLU-1498 BLS-0153 PANTIBLUSA MANGA LARGA ROJA Y NEGRA MUYMUY 143.00 399.00 \N \N \N \N f t \N 1 2020-11-03 20:45:14.275827 2020-11-03 21:20:27.093274 3 0 0 0001498 \N \N f f \N 31FDEF93-77DA-44F3-A851-A5BFECA391D3.jpeg 7 01010101 1478 CAR-1478 1BICV203000BLA CARTERA BLANCA 449.50 899.00 \N \N \N \N f t \N 1 2020-10-29 23:15:06.899536 2020-11-21 19:26:47.730303 3 0 0 7509170819526 \N \N f f \N 8BFBBE03-EAC6-4EE5-966B-05BF2C699D59.jpeg 4 01010101 1480 BLU-1480 BLS-0145 BLUSA NEGRA CON DESTELLOS DORADOS APECH 352.00 879.00 \N \N \N \N f t \N 1 2020-11-01 02:04:55.493247 2020-11-03 22:31:33.62166 3 0 0 0001480 \N \N f f \N E1F882A6-D112-4B12-93D4-CCBE8F9D215E.jpeg 7 01010101 1479 CAR-1479 2BICV20367 CARTERA LETRAS 449.50 899.00 \N \N \N \N f t \N 1 2020-10-29 23:19:37.13414 2020-11-21 19:56:07.461774 3 0 0 7509170821925 \N \N f f \N B3588FC3-FFAA-41C5-AED1-51F0C127D085.jpeg 4 01010101 1476 COS-1476 5CSCP20622 COSMETIQUERA LILA 199.50 399.00 \N \N \N \N f t \N 1 2020-10-29 23:12:37.304775 2020-11-21 20:29:17.370593 3 0 0 7509170839838 \N \N f f \N 16BF62D9-B400-4E7B-90FC-6CC7C3B5DDCF.jpeg 14 01010101 1523 CHA-1523 CHA-0030 SUETER TIPO BLUSITA ROSA, IVORY Y NEGRO THINKABLE 181.50 499.00 \N \N \N \N f t \N 1 2020-11-03 23:56:25.646052 2020-11-04 00:18:50.363165 3 0 0 0001523 \N \N f f \N 73CA465D-CAF8-4CEF-B7D8-9060218658DC.jpeg 24 01010101 1524 CHA-1524 CHA-0031 SUETER ROSA TEJIDO OLGADO THINKABLE 280.50 739.00 \N \N \N \N f t \N 1 2020-11-03 23:57:28.009895 2020-11-04 00:19:22.473564 3 0 0 0001524 \N \N f f \N 15C1D757-E45C-47BA-9549-9785A8B56789.jpeg 24 01010101 1514 VES-1514 VST-0129 VESTIDO NEGRO DE LENTEJUELA APEACH 31169 478.50 1249.00 \N \N \N \N f t \N 1 2020-11-03 22:12:47.566767 2020-11-03 22:58:46.91208 3 0 0 0001514 \N \N f f \N 6E60851E-0D86-4FED-8AD9-54D72C8416A6.jpeg 12 01010101 1515 BLU-1515 BLS-0161 BLUSA GRIS PLATA BRILLOSA APEACH 3527 231.00 599.00 \N \N \N \N f t \N 1 2020-11-03 22:14:10.291435 2020-11-03 23:01:05.830757 3 0 0 0001515 \N \N f f \N B74D3248-32B9-4267-A47E-E90C2FB78212.jpeg 7 01010101 1513 CHA-1513 CHA-0027 JACKET DRESS ROSA APEACH 40338 528.00 1389.00 \N \N \N \N f t \N 1 2020-11-03 22:04:29.977532 2020-11-03 23:01:48.709465 3 0 0 0001513 \N \N f f \N 18FED708-6016-4E8F-B2AD-730473256F70.jpeg 24 01010101 1526 CHA-1526 CHA-0032 SUETER NEGRO TEJIDO CUELLO DE TORTUGA THINKABLE 258.50 649.00 \N \N \N \N f t \N 1 2020-11-04 00:02:00.54572 2020-11-04 00:20:29.074692 3 0 0 0001526 \N \N f f \N 0CA5C0AD-67FE-4A1D-8389-B376CFB1CF3D.jpeg 24 01010101 1571 ZAP-1571 GURMA TENNIS 699.50 1399.00 \N \N \N \N f t \N 1 2021-02-16 00:55:27.045813 2021-02-16 00:55:27.104392 3 0 0 0001571 \N \N f f \N \N 13 01010101 1528 FAL-1528 FLD-0039 FALDA TIPO SASTRE CON BOTON DE PERLAS BLANCA Y NEGRA 280.50 698.00 \N \N \N \N f t \N 1 2020-11-04 00:24:38.657612 2020-11-04 00:25:23.772933 3 0 0 0001528 \N \N f f \N D753B288-CC89-456A-BC7F-4EC4A74AA399.jpeg 11 01010101 1529 BOL-1529 2BLCV20389 Crossbody Con Aplicación De Cadena En As 599.50 1199.00 \N \N \N \N f t \N 1 2020-11-04 01:39:18.658879 2020-11-04 01:39:18.658879 3 0 0 7509170822656 \N \N f f \N 2BLCV2038.png 6 01010101 1530 BOL-1530 4BLGV20487 BACK PACKGIRLS 299.50 599.00 \N \N \N \N f t \N 1 2020-11-12 00:46:23.519714 2020-11-12 00:46:23.519714 3 0 0 7509170825664 \N \N f f \N \N 6 01010101 1531 BOL-1531 4BLGI199769 BACK PACK GIRLS 299.50 599.00 \N \N \N \N f t \N 1 2020-11-12 01:15:19.180603 2020-11-12 01:15:19.180603 3 0 0 7509170791297 \N \N f f \N \N 6 01010101 1532 BOL-1532 4BLGV20482 BACK PACK MORADA 249.50 499.00 \N \N \N \N f t \N 1 2020-11-12 01:17:34.239312 2020-11-12 01:17:34.239312 3 0 0 7509170825534 \N \N f f \N \N 6 01010101 1534 BLU-1534 BLS-0165 BLUSA APECH PLATA 3499 341.00 849.00 \N \N \N \N f t \N 1 2020-11-14 01:52:30.372676 2020-11-14 19:29:07.865947 3 0 0 0001534 \N \N f f \N BF7F15C7-47F7-403C-981A-5B909C99E3E3.jpeg 7 01010101 1521 BLU-1521 BLS-0162 PANTIBLUSA MOCA, BLANCO Y NEGRO THINKABLE 302.50 759.00 \N \N \N \N f t \N 1 2020-11-03 23:51:09.414597 2020-11-04 00:10:42.997538 3 0 0 0001521 \N \N f f \N C5D32FA6-9AC9-4F8C-97AB-C0B97ABB3735.jpeg 7 01010101 1525 BLU-1525 BLS-0163 BLUSA TEJIDA NEGRA CON RAYAS ROJAS THINKABLE 264.00 699.00 \N \N \N \N f t \N 1 2020-11-04 00:00:09.335183 2020-11-04 00:11:23.145873 3 0 0 0001525 \N \N f f \N 29C28123-1E5E-4870-BE12-880D8EF83C4A.jpeg 7 01010101 1516 VES-1516 VST-0130 VESTIDO DE COLORES VOILA 440.00 1069.00 \N \N \N \N f t \N 1 2020-11-03 23:14:43.087324 2020-11-04 00:12:28.780406 3 0 0 0001516 \N \N f f \N 0AF10329-340F-4499-BF5E-75BB518BA34C.jpeg 12 01010101 1517 VES-1517 VST-0131 VESTIDO NEGRO CON TIRAS DE BRILLOS EN HOMBRO Y ESPALDA VOILA 440.00 1249.00 \N \N \N \N f t \N 1 2020-11-03 23:25:22.366814 2020-11-04 00:13:07.417723 3 0 0 0001517 \N \N f f \N F2BA2297-90FC-415D-9A20-4C19F6F31B1D.jpeg 12 01010101 1520 VES-1520 VST-0132 VESTIDO TEJIDO GRIS PLATA THINKABLE 324.50 811.00 \N \N \N \N f t \N 1 2020-11-03 23:44:57.273756 2020-11-04 00:13:40.589525 3 0 0 0001520 \N \N f f \N 6DA78F99-2E36-4906-A0A7-040881A56056.jpeg 12 01010101 1518 FAL-1518 FLD-0038 FALDA A CUADROS GRIS BALBOA 297.00 749.00 \N \N \N \N f t \N 1 2020-11-03 23:28:32.26086 2020-11-04 00:15:51.92558 3 0 0 0001518 \N \N f f \N 14E2DDEC-E162-4ADA-84F1-915334B7FCB7.jpeg 11 01010101 1519 CHA-1519 CHA-0028 SUETER NEGRO CON BOTON DORADO BALBOA 231.00 579.00 \N \N \N \N f f \N 1 2020-11-03 23:30:40.13731 2020-11-04 00:17:46.395293 3 0 0 0001519 \N \N f f \N 3CE4C7E8-0593-47BE-AD13-01D399909DB3.jpeg 24 01010101 1522 CHA-1522 CHA-0029 SUETER TIPO BLUSON CON PERLAS THINKABLE 275.00 699.00 \N \N \N \N f t \N 1 2020-11-03 23:54:42.609318 2020-11-04 00:18:11.21998 3 0 0 0001522 \N \N f f \N 73F3E88B-1E00-4B18-9393-C3FA20323033.jpeg 24 01010101 1533 BOL-1533 PAÑNEG PAÑALERA NEGRA 1549.50 3099.00 \N \N \N \N f t \N 1 2020-11-12 01:58:28.313235 2020-11-12 01:58:28.355998 3 0 0 0001533 \N \N f f \N \N 6 01010101 1372 CAR-1372 2BICV20327 CARTERA CROSSBODY NEGRA Y BEIGE 699.50 1399.00 \N \N \N \N f t \N 1 2020-10-23 00:15:38.117242 2020-11-21 19:20:07.824374 3 0 0 7509170820461 \N \N f f \N 38C4FCFE-F03E-46B5-8959-3639FCF81857.jpeg 4 01010101 1535 BLU-1535 BLS-0166 BLUSA APEACH DORADA 2029 363.00 899.00 \N \N \N \N f t \N 1 2020-11-14 18:05:46.558964 2020-11-14 19:29:34.702253 3 0 0 0001535 \N \N f f \N DAF06D69-72FB-4AD2-8E5C-ABABFBCF8F3D.jpeg 7 01010101 1469 BOL-1469 3BLCP20124 BOLSO CROSS BODY LETRAS 649.50 1299.00 \N \N \N \N f t \N 1 2020-10-29 20:56:07.564333 2020-11-21 19:21:42.510827 3 0 0 0001469 \N \N f f \N 09075761-CB95-4898-8A6E-56051B9942FA.jpeg 6 01010101 1477 CAR-1477 1BICV20300 CASTERA AMARILLA Y NEGRA 499.50 999.00 \N \N \N \N f t \N 1 2020-10-29 23:13:24.48553 2020-11-21 19:26:11.689054 3 0 0 7509170819519 \N \N f f \N 94BF20FC-98C1-45D6-8BAE-12A933E6D728.jpeg 4 01010101 1537 VES-1537 VST-0133 VESTIDO NEGRO TIPO SACO APEACH 517.00 1399.00 \N \N \N \N f t \N 1 2020-11-14 18:38:59.486904 2020-11-14 19:37:46.449456 3 0 0 0001537 \N \N f f \N 527927D2-D81C-42D9-9DD6-E0E7573683EC.jpeg 12 01010101 1538 VES-1538 VST-0134 VESTIDOS METALICOS CON HOMBRERAS 275.00 699.00 \N \N \N \N f t \N 1 2020-11-14 18:40:55.488778 2020-11-14 19:38:18.105453 3 0 0 0001538 \N \N f f \N 9FEEFB13-BC38-48BF-AAB7-9E4ECE2D0AD4.jpeg 12 01010101 1543 PAL-1543 PLZ-0020 PALAZO DE BLUSA LENTEJUELA VALENTINE 517.00 1389.00 \N \N \N \N f t \N 1 2020-11-14 18:54:35.842576 2020-11-14 18:57:42.67631 3 0 0 0001543 \N \N f f \N CC0BFEC9-CE6D-4AE5-9C75-DFF625368424.jpeg 9 01010101 1542 PAN-1542 PNT-0038 PANTALON G NEGRO VALENTINE 341.00 849.00 \N \N \N \N f t \N 1 2020-11-14 18:51:20.23509 2020-11-14 18:58:34.981593 3 0 0 0001542 \N \N f f \N 7B5F9443-B633-48F3-9D47-97805A8DB95B.jpeg 8 01010101 1536 BLU-1536 BLS-0167 BLUSA NEGRA MANGA LARGA APEACH 3578 275.00 699.00 \N \N \N \N f t \N 1 2020-11-14 18:07:14.563987 2020-11-14 19:15:33.22805 3 0 0 0001536 \N \N f f \N F3D4AB2C-FC75-4EF2-9C10-FAAF84DA5AB7.jpeg 7 01010101 1527 BLU-1527 BLS-0164 BLUSAS BASICAS ROJAS CUELLO TORTUGA NYLON 180.00 469.00 \N \N \N \N f t \N 1 2020-11-04 00:05:10.164707 2020-11-14 19:27:23.074998 3 0 0 0001527 \N \N f f \N 52F1519C-7623-445B-8A80-F6B7B5ED0D3B.jpeg 7 01010101 1539 VES-1539 VST-0135 VESTIDO ROJO TIPO SACO MUYMUY 418.00 1045.00 \N \N \N \N f t \N 1 2020-11-14 18:42:18.529952 2020-11-14 19:40:44.555972 3 0 0 0001539 \N \N f f \N A7893392-6AFA-4D40-AC40-F65CF8A95D27.jpeg 12 01010101 1544 BOL-1544 2BLCV20379 BOLSO CROSSBODY MULTICOLOR 949.50 1899.00 \N \N \N \N f t \N 1 2020-11-19 00:29:05.099684 2020-11-19 00:29:05.099684 3 0 0 7509170822298 \N \N f f \N \N 6 01010101 1545 BOL-1545 2BLCO20741 BOLSO NUDE Y NEGRO MEDIANO 949.50 1899.00 \N \N \N \N f t \N 1 2020-11-19 00:50:08.649098 2020-11-19 00:50:08.649098 3 0 0 7509170845266 \N \N f f \N \N 6 01010101 1546 BOL-1546 2BLCO20737 CROSS BODY VERDE Y NEGRO 1049.50 2099.00 \N \N \N \N f t \N 1 2020-11-19 00:58:02.358414 2020-11-21 19:41:14.168824 3 0 0 7509170845082 \N \N f f \N 779EEA29-A6E5-4EC8-AFA8-D37FEE255241.jpeg 6 01010101 1464 BOL-1464 2BLCV20386 BOLSO CROSSBODY TELA 599.50 1199.00 \N \N \N \N f t \N 1 2020-10-29 20:42:42.491781 2020-11-21 19:44:20.572183 3 0 0 7509170822540 \N \N f f \N CC5AA26A-E5B8-47C1-BFA2-6E066023BF7F.jpeg 6 01010101 1471 CAR-1471 2BICV2033 CARTERA PEQUEÑACON TARJETERO 399.50 799.00 \N \N \N \N f t \N 1 2020-10-29 21:20:31.676529 2020-11-21 19:56:41.545188 3 0 0 7509170820584 \N \N f f \N 87C8052B-7791-459F-A5A5-FF80D84B5235.jpeg 4 01010101 1540 CON-1540 CON-0006 PANS NEGRO PEGADO 478.50 1196.00 \N \N \N \N f t \N 1 2020-11-14 18:46:59.134848 2020-11-21 19:59:42.005412 3 0 0 0001540 \N \N f f \N 6B5D8E04-AFD2-416C-BE59-063C72906EA5.jpeg 10 01010101 1541 CON-1541 CON-0007 PANS DE COLORES PEGADO 500.50 1251.00 \N \N \N \N f t \N 1 2020-11-14 18:48:10.772797 2020-11-21 20:00:33.98013 3 0 0 0001541 \N \N f f \N 30B52A9E-BD2B-4296-A74F-FD836D2FF60E.png 10 01010101 1547 BOL-1547 3BLCV20442 BOLSO CROSSBODY ORO 749.50 1499.00 \N \N \N \N f t \N 1 2020-11-26 19:53:40.371963 2020-11-26 19:53:40.371963 3 0 0 7509170824360 \N \N f f \N \N 6 01010101 1548 CAR-1548 1BICP20978 CARTERA ROSA 449.50 899.00 \N \N \N \N f t \N 1 2020-12-09 19:37:56.339809 2020-12-09 19:37:56.387753 3 0 0 0001548 \N \N f f \N \N 4 01010101 952 BOL-952 1BLCI19315 Bolso circular tipo cruzado en material tipo croco, construcción estructurada, cadena decorativa con logos de metal, asa larga adicional removible y ajustable 849.50 1699.00 \N \N \N \N f t \N 0 2019-11-23 17:24:38.784472 2021-03-19 01:14:40.481326 3 0 0 7509170766912 \N \N f f \N BCRL315_NEGR_1_828x1200.jpg 6 01010101 1551 BOL-1551 BACKP BACK PACK ROSA 749.50 1499.00 \N \N \N \N f t \N 1 2020-12-18 06:44:58.422906 2020-12-18 06:44:58.467322 3 0 0 0001551 \N \N f f \N \N 6 01010101 1552 COS-1552 4CSAP20814 COSMETIQUERA CORAZONES 299.50 599.00 \N \N \N \N f t \N 1 2020-12-22 20:51:37.018238 2020-12-22 20:51:37.062866 3 0 0 0001552 \N \N f f \N \N 14 01010101 1553 COS-1553 4CSAP20815 COSMETIQUERA 3 399.50 799.00 \N \N \N \N f t \N 1 2020-12-22 20:52:39.242075 2020-12-22 20:52:39.2997 3 0 0 0001553 \N \N f f \N \N 14 01010101 1554 BOL-1554 2BLCO20734 BOLSO CLOE 1049.50 2099.00 \N \N \N \N f t \N 1 2020-12-23 18:40:45.427172 2020-12-23 18:40:45.471784 3 0 0 0001554 \N \N f f \N \N 6 01010101 1555 BOL-1555 1BLCV202669 BOLSITA CROSSBOSY 649.50 1299.00 \N \N \N \N f t \N 1 2021-01-04 21:39:28.278348 2021-01-04 21:39:28.278348 3 0 0 7509170818512 \N \N f f \N \N 6 01010101 1556 BOL-1556 3BLCBV20446 BOLSO CROSSBODY RAYA EN MEDIO 649.50 1299.00 \N \N \N \N f t \N 1 2021-01-04 21:41:04.792282 2021-01-04 21:41:04.792282 3 0 0 7509170824469 \N \N f f \N \N 6 01010101 1557 CAR-1557 2BICO207333 CARTERA CADENA GRANDE 499.50 999.00 \N \N \N \N f t \N 1 2021-01-04 23:53:40.336182 2021-01-04 23:53:40.336182 3 0 0 7509170844887 \N \N f f \N \N 4 01010101 1558 BOL-1558 1BLCO20632 BACK PACK TELA CHAMARRA 1049.50 2099.00 \N \N \N \N f t \N 1 2021-01-04 23:54:48.213133 2021-01-04 23:54:48.213133 3 0 0 7509170841299 \N \N f f \N \N 6 01010101 1561 CAR-1561 SAMI945 CARTERA CON TARJETERO 449.50 899.00 \N \N \N \N f t \N 1 2021-01-13 00:12:06.619343 2021-01-13 00:12:06.661894 3 0 0 0001561 \N \N f f \N \N 4 01010101 1562 CAR-1562 2BICV20328 CARTERA CHICA NEGRA 399.50 799.00 \N \N \N \N f t \N 1 2021-01-13 00:13:21.863286 2021-01-13 00:13:21.863286 3 0 0 7509170820508 \N \N f f \N \N 4 01010101 1563 BOL-1563 2BLCO20751 BACK PACK CLOE LETRAS MAGENTA NEGRO 899.50 1799.00 \N \N \N \N f t \N 1 2021-01-13 00:21:47.960329 2021-01-14 01:49:51.449019 3 0 0 7509170845563 \N \N f f \N BF858F4B-21F3-4C0E-8BC4-111D8E0F8E0C.jpeg 6 01010101 1560 CAR-1560 1BICO20963 CARTERA GRANDE CLOE 549.50 1099.00 \N \N \N \N f t \N 1 2021-01-13 00:11:00.636256 2021-01-14 01:55:01.819332 3 0 0 7509170864755 \N \N f f \N 5B395EAB-E482-4FA0-823B-97173307F663.jpeg 4 01010101 1559 CAR-1559 1BICO20964 CARTERA CROSSBODY MENTA, ROSA, NEGRA 549.50 1099.00 \N \N \N \N f t \N 1 2021-01-11 22:55:03.383484 2021-01-14 01:58:07.805768 3 0 0 7509170864830 \N \N f f \N 6071FACC-9DE9-49D6-B389-D8DA093FBBD2.jpeg 4 01010101 1550 BOL-1550 2BLCO20738 CROSSBODY NEGRO VERDE BLANCO Y NUDE 749.50 1499.00 \N \N \N \N f t \N 1 2020-12-15 22:20:16.395641 2021-01-14 19:30:19.154426 3 0 0 7509170845112 \N \N f f \N 016F42A1-8647-4BF5-A2B4-2FE1CB45BB18.jpeg 6 01010101 1549 BOL-1549 1BLCO20636 CROSS BODY NEGRO Y ROJO 1049.50 2099.00 \N \N \N \N f t \N 1 2020-12-13 01:02:20.059921 2021-01-14 19:31:04.457875 3 0 0 0001549 \N \N f f \N 96B2C1BB-E424-4DA1-9288-9977F6DDBED8.jpeg 6 01010101 1564 CAR-1564 2BICO20732 CATERA CHICA CON CADENA 449.50 899.00 \N \N \N \N f t \N 1 2021-01-13 00:22:39.75127 2021-01-14 19:35:05.234778 3 0 0 7509170844849 \N \N f f \N D4528659-14AB-47A8-BDBB-FFE3A19BA1FD.jpeg 4 01010101 1565 BOL-1565 1BLCV20303 CANGURERA Y CROSSBODY VERDE,AZUL Y NEGRO 699.50 1399.00 \N \N \N \N f t \N 1 2021-01-16 01:20:42.010804 2021-01-16 01:20:42.065619 3 0 0 0001565 \N \N f f \N \N 6 01010101 1566 BOL-1566 1BLCV20269 BACK PACK MEDIANO CON EVILLA NEGRO Y CAMEL 749.50 1499.00 \N \N \N \N f t \N 1 2021-01-16 01:21:48.921334 2021-01-16 01:21:48.998293 3 0 0 0001566 \N \N f f \N \N 6 01010101 1567 BOL-1567 2BLCV20504 CROSSBODY GRANDE CORAL,NEGRO Y GRIS 699.50 1399.00 \N \N \N \N f t \N 1 2021-01-16 01:22:58.287716 2021-01-16 01:22:58.350208 3 0 0 0001567 \N \N f f \N \N 6 01010101 1568 BOL-1568 2BLCV20506 ,BACK PACK GRANDE CORAL,NEGRO, GRIS 899.50 1799.00 \N \N \N \N f t \N 1 2021-01-16 01:26:29.595972 2021-01-16 01:26:29.63431 3 0 0 0001568 \N \N f f \N \N 6 01010101 1569 BOL-1569 3BLCV20446NEG CROSSBODY MEDIO CIRCULO 649.50 1299.00 \N \N \N \N f t \N 1 2021-01-22 00:30:10.305062 2021-01-22 00:30:10.351541 3 0 0 0001569 \N \N f f \N \N 6 01010101 1570 BOL-1570 2BLCO20740 MOCHILA CLOE 849.50 1699.00 \N \N \N \N f t \N 1 2021-01-23 00:54:20.177736 2021-01-23 00:54:20.220682 3 0 0 0001570 \N \N f f \N \N 6 01010101 \. -- -- Name: products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.products_id_seq', 1571, true); -- -- Data for Name: products_return_ins; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.products_return_ins (id, products_return_id, product_id, quantity, reason, is_wasted, amount, created_at, updated_at) FROM stdin; 1 1 256 1.0 DEFECTO f 799.0 2019-03-05 01:52:24.966769 2019-03-05 01:52:24.966769 2 2 156 1.0 CAMBIO ARTICULO f 579.0 2019-04-06 01:38:28.773804 2019-04-06 01:38:28.773804 3 3 485 1.0 NO LE QUEDO f 869.0 2019-05-09 18:09:41.992828 2019-05-09 18:09:41.992828 4 4 548 1.0 NO LE QUEDO f 1499.0 2019-05-15 19:49:54.299897 2019-05-15 19:49:54.299897 5 5 257 1.0 NO LE GUSTO f 799.0 2019-05-17 21:42:35.143422 2019-05-17 21:42:35.143422 6 6 249 1.0 NO LE QUEDO (FUE REGALO) f 589.0 2019-05-21 01:04:07.500669 2019-05-21 01:04:07.500669 7 7 548 1.0 NO LE QUEDO f 1499.0 2019-06-12 22:39:20.502779 2019-06-12 22:39:20.502779 8 8 573 1.0 NO LE QUEDO f 1249.0 2019-06-13 21:19:44.538821 2019-06-13 21:19:44.538821 9 9 585 1.0 NO LE QUEDO f 1599.0 2019-06-16 19:11:55.105723 2019-06-16 19:11:55.105723 10 10 537 1.0 CAMBIO DE TALLA f 499.0 2019-06-22 22:02:09.560976 2019-06-22 22:02:09.560976 11 11 571 1.0 NO LE QUEDO f 799.0 2019-09-02 19:11:46.775055 2019-09-02 19:11:46.775055 12 12 633 1.0 CHICA f 719.0 2019-09-10 22:35:09.235587 2019-09-10 22:35:09.235587 13 13 498 1.0 NO LE QUEDO f 669.0 2019-09-14 21:24:49.161304 2019-09-14 21:24:49.161304 14 14 626 1.0 NO LE QUEDO f 1270.0 2019-10-19 22:26:09.12036 2019-10-19 22:26:09.12036 15 15 632 1.0 NO LE QUEDO f 359.25 2019-10-23 23:59:23.875199 2019-10-23 23:59:23.875199 16 16 910 1.0 NO LE QUEDO f 899.0 2019-11-14 22:17:48.504606 2019-11-14 22:17:48.504606 17 17 783 1.0 no le quedo f 799.0 2019-11-27 23:39:33.575451 2019-11-27 23:39:33.575451 18 18 856 1.0 f 1099.0 2019-11-28 20:09:09.247441 2019-11-28 20:09:09.247441 19 19 766 1.0 f 1299.0 2019-12-03 02:07:54.957211 2019-12-03 02:07:54.957211 20 20 950 1.0 NO LE QUEDO f 699.0 2019-12-09 19:55:33.754159 2019-12-09 19:55:33.754159 21 21 954 1.0 no le quedo f 1199.0 2019-12-10 21:32:46.461713 2019-12-10 21:32:46.461713 22 22 948 1.0 NO LE QUEDO f 899.0 2019-12-10 23:12:49.695719 2019-12-10 23:12:49.695719 23 23 893 1.0 NO LE QUEDO f 699.0 2019-12-18 00:32:24.519699 2019-12-18 00:32:24.519699 24 24 877 1.0 NO LE QUEDO f 755.16 2019-12-21 21:03:59.074572 2019-12-21 21:03:59.074572 25 24 743 1.0 NO LE QUEDO f 965.16 2019-12-21 21:03:59.099749 2019-12-21 21:03:59.099749 26 25 874 1.0 NO LE QUEDO f 759.0 2019-12-21 23:33:21.391276 2019-12-21 23:33:21.391276 27 26 893 1.0 NO LE QUEDO f 699.0 2019-12-24 23:40:04.563616 2019-12-24 23:40:04.563616 28 27 969 1.0 DEFECTO f 791.1 2019-12-26 21:29:59.819258 2019-12-26 21:29:59.819258 30 29 788 1.0 NO LE QUEDO f 589.0 2019-12-28 22:00:46.830316 2019-12-28 22:00:46.830316 31 30 663 1.0 NO LE QUEDO f 559.2 2019-12-29 00:41:15.869323 2019-12-29 00:41:15.869323 32 31 877 1.0 f 899.0 2019-12-31 19:33:02.481046 2019-12-31 19:33:02.481046 33 32 758 1.0 NO LE GUSTO f 629.1 2020-01-02 19:56:29.418404 2020-01-02 19:56:29.418404 34 33 758 1.0 NO LE GUSTO f 629.1 2020-01-02 20:03:05.854922 2020-01-02 20:03:05.854922 35 34 673 1.0 NO LEQED f 560.0 2020-02-14 20:54:16.252714 2020-02-14 20:54:16.252714 36 35 1001 1.0 NO LE QUEDO f 799.0 2020-03-16 20:17:37.752253 2020-03-16 20:17:37.752253 37 36 1339 1.0 NO LE QUEDO f 529.0 2020-10-02 21:42:31.918231 2020-10-02 21:42:31.918231 38 37 1320 1.0 NO LE QUEDO f 599.0 2020-10-09 23:22:47.104928 2020-10-09 23:22:47.104928 39 38 1520 1.0 NO LE QUEDO f 811.0 2020-11-11 01:12:36.043113 2020-11-11 01:12:36.043113 40 39 956 1.0 TENIA DEFECTO f 899.0 2020-11-22 00:25:41.420971 2020-11-22 00:25:41.420971 41 40 1540 1.0 NO LE QUEDO f 1196.0 2020-11-29 01:21:31.920387 2020-11-29 01:21:31.920387 42 41 690 1.0 NO LE QUEDO f 799.0 2020-12-18 00:03:50.572908 2020-12-18 00:03:50.572908 43 42 985 1.0 NO LE QUEDO FUE REGALO f 669.0 2020-12-26 17:44:22.855684 2020-12-26 17:44:22.855684 44 43 1375 1.0 NO LE QUEDARON FUE REGALO f 1699.0 2020-12-26 22:33:08.76918 2020-12-26 22:33:08.76918 45 44 1159 1.0 LE QUEDARON CHICOS FUE REGALO f 1499.0 2021-02-02 21:44:09.564334 2021-02-02 21:44:09.564334 \. -- -- Name: products_return_ins_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.products_return_ins_id_seq', 45, true); -- -- Data for Name: products_return_outs; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.products_return_outs (id, products_return_id, product_id, quantity, amount, created_at, updated_at) FROM stdin; 1 1 434 1.0 979.01 2019-03-05 01:52:25.015089 2019-03-05 01:52:25.015089 2 2 387 1.0 1899.0 2019-04-06 01:38:28.838772 2019-04-06 01:38:28.838772 3 3 146 1.0 469.0 2019-05-09 18:09:42.025341 2019-05-09 18:09:42.025341 4 3 559 1.0 579.0 2019-05-09 18:09:42.049951 2019-05-09 18:09:42.049951 5 4 516 1.0 999.0 2019-05-15 19:49:54.336743 2019-05-15 19:49:54.336743 6 4 270 1.0 1199.0 2019-05-15 19:49:54.362284 2019-05-15 19:49:54.362284 7 5 397 1.0 689.01 2019-05-17 21:42:35.178875 2019-05-17 21:42:35.178875 8 5 369 2.0 98.0 2019-05-17 21:42:35.20115 2019-05-17 21:42:35.20115 9 6 550 1.0 1469.0 2019-05-21 01:04:07.571427 2019-05-21 01:04:07.571427 10 7 504 1.0 1392.0 2019-06-12 22:39:20.535937 2019-06-12 22:39:20.535937 11 7 500 1.0 699.0 2019-06-12 22:39:20.556132 2019-06-12 22:39:20.556132 12 8 75 1.0 499.0 2019-06-13 21:19:44.585852 2019-06-13 21:19:44.585852 13 8 87 1.0 680.0 2019-06-13 21:19:44.616279 2019-06-13 21:19:44.616279 14 9 421 1.0 799.0 2019-06-16 19:11:55.140825 2019-06-16 19:11:55.140825 15 9 367 2.0 600.0 2019-06-16 19:11:55.163698 2019-06-16 19:11:55.163698 16 9 341 1.0 199.0 2019-06-16 19:11:55.191806 2019-06-16 19:11:55.191806 17 10 537 1.0 499.0 2019-06-22 22:02:09.59023 2019-06-22 22:02:09.59023 18 11 690 1.0 799.0 2019-09-02 19:11:46.810915 2019-09-02 19:11:46.810915 19 12 634 1.0 799.0 2019-09-10 22:35:09.260704 2019-09-10 22:35:09.260704 20 13 623 1.0 699.0 2019-09-14 21:24:49.19616 2019-09-14 21:24:49.19616 21 14 666 1.0 869.0 2019-10-19 22:26:09.147413 2019-10-19 22:26:09.147413 22 14 796 1.0 1199.0 2019-10-19 22:26:09.165875 2019-10-19 22:26:09.165875 23 15 800 1.0 351.75 2019-10-23 23:59:23.902043 2019-10-23 23:59:23.902043 24 16 680 1.0 499.0 2019-11-14 22:17:48.531294 2019-11-14 22:17:48.531294 25 16 761 1.0 459.0 2019-11-14 22:17:48.554867 2019-11-14 22:17:48.554867 26 17 950 1.0 699.0 2019-11-27 23:39:33.608252 2019-11-27 23:39:33.608252 27 18 353 1.0 1699.01 2019-11-28 20:09:09.281861 2019-11-28 20:09:09.281861 28 19 783 1.0 799.0 2019-12-03 02:07:54.989928 2019-12-03 02:07:54.989928 29 19 921 1.0 149.0 2019-12-03 02:07:55.019034 2019-12-03 02:07:55.019034 30 20 909 1.0 1599.0 2019-12-09 19:55:33.783682 2019-12-09 19:55:33.783682 31 21 895 1.0 1629.0 2019-12-10 21:32:46.488095 2019-12-10 21:32:46.488095 32 22 697 1.0 799.0 2019-12-10 23:12:49.71469 2019-12-10 23:12:49.71469 33 23 783 1.0 799.0 2019-12-18 00:32:24.544176 2019-12-18 00:32:24.544176 34 24 911 1.0 749.0 2019-12-21 21:03:59.134767 2019-12-21 21:03:59.134767 35 24 714 1.0 839.0 2019-12-21 21:03:59.157184 2019-12-21 21:03:59.157184 36 24 476 1.0 98.99 2019-12-21 21:03:59.179223 2019-12-21 21:03:59.179223 37 25 798 1.0 469.0 2019-12-21 23:33:21.410857 2019-12-21 23:33:21.410857 38 25 367 1.0 350.0 2019-12-21 23:33:21.428253 2019-12-21 23:33:21.428253 39 26 668 1.0 299.0 2019-12-24 23:40:04.588767 2019-12-24 23:40:04.588767 40 26 670 1.0 639.0 2019-12-24 23:40:04.611922 2019-12-24 23:40:04.611922 41 27 893 1.0 699.0 2019-12-26 21:29:59.844492 2019-12-26 21:29:59.844492 42 27 919 1.0 115.0 2019-12-26 21:29:59.861441 2019-12-26 21:29:59.861441 43 29 611 1.0 699.0 2019-12-28 22:00:46.855746 2019-12-28 22:00:46.855746 44 29 611 1.0 699.0 2019-12-28 22:00:46.872354 2019-12-28 22:00:46.872354 45 30 890 1.0 629.0 2019-12-29 00:41:15.898402 2019-12-29 00:41:15.898402 46 31 911 1.0 749.0 2019-12-31 19:33:02.514921 2019-12-31 19:33:02.514921 47 31 928 1.0 149.0 2019-12-31 19:33:02.531669 2019-12-31 19:33:02.531669 48 32 873 1.0 729.0 2020-01-02 19:56:29.445072 2020-01-02 19:56:29.445072 49 33 512 1.0 869.0 2020-01-02 20:03:05.871933 2020-01-02 20:03:05.871933 50 34 682 1.0 649.0 2020-02-14 20:54:16.303049 2020-02-14 20:54:16.303049 51 35 369 1.0 49.0 2020-03-16 20:17:37.781408 2020-03-16 20:17:37.781408 52 35 1011 1.0 589.0 2020-03-16 20:17:37.802105 2020-03-16 20:17:37.802105 53 35 367 1.0 350.0 2020-03-16 20:17:37.825595 2020-03-16 20:17:37.825595 54 36 672 1.0 699.0 2020-10-02 21:42:31.946171 2020-10-02 21:42:31.946171 55 37 1328 1.0 569.0 2020-10-09 23:22:47.142628 2020-10-09 23:22:47.142628 56 38 369 2.0 98.0 2020-11-11 01:12:36.083265 2020-11-11 01:12:36.083265 57 38 1522 1.0 699.0 2020-11-11 01:12:36.102712 2020-11-11 01:12:36.102712 58 39 1521 1.0 759.0 2020-11-22 00:25:41.462487 2020-11-22 00:25:41.462487 59 39 1327 1.0 469.0 2020-11-22 00:25:41.490363 2020-11-22 00:25:41.490363 60 40 1521 1.0 759.0 2020-11-29 01:21:31.948543 2020-11-29 01:21:31.948543 61 40 885 1.0 899.0 2020-11-29 01:21:31.96733 2020-11-29 01:21:31.96733 62 41 1488 1.0 699.0 2020-12-18 00:03:50.597793 2020-12-18 00:03:50.597793 63 41 1455 1.0 99.0 2020-12-18 00:03:50.615389 2020-12-18 00:03:50.615389 64 42 1492 1.0 799.0 2020-12-26 17:44:22.885112 2020-12-26 17:44:22.885112 65 43 1300 1.0 1599.0 2020-12-26 22:33:08.798332 2020-12-26 22:33:08.798332 66 43 369 2.0 98.0 2020-12-26 22:33:08.81815 2020-12-26 22:33:08.81815 67 44 1374 1.0 1599.0 2021-02-02 21:44:09.591973 2021-02-02 21:44:09.591973 \. -- -- Name: products_return_outs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.products_return_outs_id_seq', 67, true); -- -- Data for Name: products_returns; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.products_returns (id, sale_id, user_id, return_code, created_at, updated_at, pointsale_id, new_amount, returned_amount, difference_amount, is_money_returned) FROM stdin; 1 184 2 PV1-D-1 2019-03-05 01:52:24.930539 2019-03-05 01:52:24.930539 1 979.01 799.00 180.01 f 2 307 11 PV2-D-1 2019-04-06 01:38:28.723605 2019-04-06 01:38:28.723605 2 1899.00 579.00 1320.00 f 3 487 3 PV2-D-2 2019-05-09 18:09:41.962014 2019-05-09 18:09:41.962014 2 1048.00 869.00 179.00 f 4 580 2 PV1-D-2 2019-05-15 19:49:54.2599 2019-05-15 19:49:54.2599 1 2198.00 1499.00 699.00 f 5 552 3 PV2-D-3 2019-05-17 21:42:35.098002 2019-05-17 21:42:35.098002 2 787.01 799.00 0.00 f 6 564 2 PV1-D-3 2019-05-21 01:04:07.439605 2019-05-21 01:04:07.439605 1 1469.00 589.00 880.00 f 7 725 2 PV1-D-4 2019-06-12 22:39:20.47087 2019-06-12 22:39:20.47087 1 2091.00 1499.00 592.00 f 8 727 2 PV1-D-5 2019-06-13 21:19:44.495315 2019-06-13 21:19:44.495315 1 1179.00 1249.00 0.00 f 9 729 3 PV2-D-4 2019-06-16 19:11:55.045341 2019-06-16 19:11:55.045341 2 1598.00 1599.00 0.00 f 10 767 3 PV2-D-5 2019-06-22 22:02:09.532211 2019-06-22 22:02:09.532211 2 499.00 499.00 0.00 f 11 1008 2 PV1-D-6 2019-09-02 19:11:46.742997 2019-09-02 19:11:46.742997 1 799.00 799.00 0.00 f 12 1032 10 PV2-D-6 2019-09-10 22:35:09.206127 2019-09-10 22:35:09.206127 2 799.00 719.00 80.00 f 13 1052 2 PV1-D-7 2019-09-14 21:24:49.133206 2019-09-14 21:24:49.133206 1 699.00 669.00 30.00 f 14 1013 2 PV1-D-8 2019-10-19 22:26:09.093642 2019-10-19 22:26:09.093642 1 2068.00 1270.00 798.00 f 15 1279 24 PV2-D-7 2019-10-23 23:59:23.847047 2019-10-23 23:59:23.847047 2 351.75 359.25 0.00 f 16 1393 24 PV2-D-8 2019-11-14 22:17:48.476527 2019-11-14 22:17:48.476527 2 958.00 899.00 59.00 f 17 1480 2 PV1-D-9 2019-11-27 23:39:33.513631 2019-11-27 23:39:33.513631 1 699.00 799.00 0.00 f 18 1518 23 PV3-D-1 2019-11-28 20:09:09.204469 2019-11-28 20:09:09.204469 3 1699.01 1099.00 600.01 f 19 1458 23 PV3-D-2 2019-12-03 02:07:54.903091 2019-12-03 02:07:54.903091 3 948.00 1299.00 0.00 f 20 1578 2 PV1-D-10 2019-12-09 19:55:33.713591 2019-12-09 19:55:33.713591 1 1599.00 699.00 900.00 f 21 1566 2 PV1-D-11 2019-12-10 21:32:46.434641 2019-12-10 21:32:46.434641 1 1629.00 1199.00 430.00 f 22 1571 27 PV2-D-9 2019-12-10 23:12:49.67391 2019-12-10 23:12:49.67391 2 799.00 899.00 0.00 f 23 1721 27 PV2-D-10 2019-12-18 00:32:24.494204 2019-12-18 00:32:24.494204 2 799.00 699.00 100.00 f 24 1751 2 PV1-D-12 2019-12-21 21:03:59.029982 2019-12-21 21:03:59.029982 1 1686.99 1720.32 0.00 f 25 1759 21 PV3-D-3 2019-12-21 23:33:21.37208 2019-12-21 23:33:21.37208 3 819.00 759.00 60.00 f 26 1880 27 PV2-D-11 2019-12-24 23:40:04.535927 2019-12-24 23:40:04.535927 2 938.00 699.00 239.00 f 27 1900 8 PV2-D-12 2019-12-26 21:29:59.792851 2019-12-26 21:29:59.792851 2 814.00 791.10 22.90 f 28 1851 27 PV2-D-13 2019-12-28 22:00:04.782286 2019-12-28 22:00:04.782286 2 699.00 589.00 110.00 f 29 1851 27 PV2-D-14 2019-12-28 22:00:46.811637 2019-12-28 22:00:46.811637 2 699.00 589.00 110.00 f 30 1842 21 PV3-D-4 2019-12-29 00:41:15.821416 2019-12-29 00:41:15.821416 3 629.00 559.20 69.80 f 31 1908 21 PV3-D-5 2019-12-31 19:33:02.456855 2019-12-31 19:33:02.456855 3 898.00 899.00 0.00 f 32 1876 27 PV2-D-15 2020-01-02 19:56:29.390691 2020-01-02 19:56:29.390691 2 729.00 629.10 99.90 f 33 1876 27 PV2-D-16 2020-01-02 20:03:05.835792 2020-01-02 20:03:05.835792 2 869.00 629.10 239.90 f 34 2203 21 PV3-D-6 2020-02-14 20:54:16.202344 2020-02-14 20:54:16.202344 3 649.00 560.00 89.00 f 35 2338 27 PV2-D-17 2020-03-16 20:17:37.723368 2020-03-16 20:17:37.723368 2 988.00 799.00 189.00 f 36 3019 2 PV1-D-13 2020-10-02 21:42:31.873117 2020-10-02 21:42:31.873117 1 699.00 529.00 170.00 f 37 3141 2 PV1-D-14 2020-10-09 23:22:47.073576 2020-10-09 23:22:47.073576 1 569.00 599.00 0.00 f 38 3331 2 PV1-D-15 2020-11-11 01:12:35.997562 2020-11-11 01:12:35.997562 1 797.00 811.00 0.00 f 39 3475 2 PV1-D-16 2020-11-22 00:25:41.376134 2020-11-22 00:25:41.376134 1 1228.00 899.00 329.00 f 40 3551 21 PV3-D-7 2020-11-29 01:21:31.887769 2020-11-29 01:21:31.887769 3 1658.00 1196.00 462.00 f 41 3590 2 PV1-D-17 2020-12-18 00:03:50.546989 2020-12-18 00:03:50.546989 1 798.00 799.00 0.00 f 42 3887 2 PV1-D-18 2020-12-26 17:44:22.823208 2020-12-26 17:44:22.823208 1 799.00 669.00 130.00 f 43 3904 2 PV1-D-19 2020-12-26 22:33:08.728178 2020-12-26 22:33:08.728178 1 1697.00 1699.00 0.00 f 44 4132 2 PV1-D-20 2021-02-02 21:44:09.536475 2021-02-02 21:44:09.536475 1 1599.00 1499.00 100.00 f \. -- -- Name: products_returns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.products_returns_id_seq', 44, true); -- -- Data for Name: products_variants; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.products_variants (id, product_id, attributes_json, sku, barcode, price_sale, status, created_at, updated_at) FROM stdin; \. -- -- Name: products_variants_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.products_variants_id_seq', 1, false); -- -- Data for Name: promotions; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.promotions (id, start_date, end_date, percent, product_id, category_id, user_id, status, created_at, updated_at, subcategory_id) FROM stdin; \. -- -- Name: promotions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.promotions_id_seq', 7, true); -- -- Data for Name: purchase_details; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.purchase_details (id, purchase_id, product_id, quantity, price, amount, created_at, updated_at, status, tax) FROM stdin; 1 1 445 3 999.50 2998.50 2019-02-07 01:31:12.255204 2019-02-07 01:31:12.255204 1 0.0 2 2 446 2 849.50 1699.00 2019-02-07 01:39:35.451306 2019-02-07 01:39:35.451306 1 0.0 3 2 447 1 699.50 699.50 2019-02-07 01:39:35.471217 2019-02-07 01:39:35.471217 1 0.0 4 3 449 2 849.50 1699.00 2019-02-08 18:11:47.65663 2019-02-08 18:11:47.65663 1 0.0 5 4 450 1 749.50 749.50 2019-02-08 18:13:05.038869 2019-02-08 18:13:05.038869 1 0.0 6 5 451 1 949.50 949.50 2019-02-08 18:36:32.523975 2019-02-08 18:36:32.523975 1 0.0 7 6 452 1 849.50 849.50 2019-02-08 18:37:44.248399 2019-02-08 18:37:44.248399 1 0.0 8 7 453 2 549.50 1099.00 2019-02-08 18:38:51.909704 2019-02-08 18:38:51.909704 1 0.0 9 8 454 1 799.50 799.50 2019-02-08 18:40:25.641479 2019-02-08 18:40:25.641479 1 0.0 10 9 455 2 199.50 399.00 2019-02-08 18:49:44.393319 2019-02-08 18:49:44.393319 1 0.0 11 10 456 2 249.50 499.00 2019-02-08 18:50:36.378968 2019-02-08 18:50:36.378968 1 0.0 12 11 457 2 199.50 399.00 2019-02-08 18:51:39.048333 2019-02-08 18:51:39.048333 1 0.0 13 12 458 2 174.50 349.00 2019-02-08 18:52:43.682094 2019-02-08 18:52:43.682094 1 0.0 14 13 459 1 249.50 249.50 2019-02-08 18:53:51.706638 2019-02-08 18:53:51.706638 1 0.0 15 14 460 1 224.50 224.50 2019-02-08 18:54:48.456403 2019-02-08 18:54:48.456403 1 0.0 16 15 461 1 174.50 174.50 2019-02-08 18:55:49.840505 2019-02-08 18:55:49.840505 1 0.0 17 16 463 2 449.50 899.00 2019-02-11 17:35:51.406261 2019-02-11 17:35:51.406261 1 0.0 18 17 464 1 399.50 399.50 2019-02-11 17:38:31.551164 2019-02-11 17:38:31.551164 1 0.0 19 18 465 1 399.50 399.50 2019-02-11 18:21:22.580776 2019-02-11 18:21:22.580776 1 0.0 20 19 466 1 349.50 349.50 2019-02-11 18:23:33.469082 2019-02-11 18:23:33.469082 1 0.0 21 20 467 2 399.50 799.00 2019-02-11 18:36:33.403213 2019-02-11 18:36:33.403213 1 0.0 22 21 468 2 949.50 1899.00 2019-02-11 18:48:39.134403 2019-02-11 18:48:39.134403 1 0.0 23 22 469 3 599.50 1798.50 2019-02-11 19:00:06.160684 2019-02-11 19:00:06.160684 1 0.0 24 23 470 2 699.50 1399.00 2019-02-11 19:01:50.246787 2019-02-11 19:01:50.246787 1 0.0 25 24 471 1 699.50 699.50 2019-02-11 20:42:37.717749 2019-02-11 20:42:37.717749 1 0.0 26 25 472 1 699.50 699.50 2019-02-11 20:44:45.552159 2019-02-11 20:49:26.748032 0 0.0 27 26 473 1 899.50 899.50 2019-02-11 20:52:11.330436 2019-02-11 20:52:11.330436 1 0.0 28 27 17 6 141.96 851.76 2019-02-12 00:31:33.349592 2019-02-12 00:31:33.349592 1 0.0 29 28 475 6 356.00 2136.00 2019-02-12 01:52:53.332007 2019-02-12 01:52:53.332007 1 0.0 30 29 476 80 49.50 3960.00 2019-02-12 19:36:39.102831 2019-02-12 19:36:39.102831 1 0.0 31 30 477 7 699.50 4896.50 2019-02-12 23:55:10.940799 2019-02-12 23:55:10.940799 1 0.0 32 31 479 10 270.00 2700.00 2019-02-13 23:37:09.386875 2019-02-13 23:37:09.386875 1 0.0 33 32 480 2 799.50 1599.00 2019-02-13 23:46:36.477612 2019-02-13 23:46:36.477612 1 0.0 34 33 481 1 269.70 269.70 2019-02-16 00:11:39.881626 2019-02-16 00:12:53.317445 0 0.0 35 34 482 1 449.50 449.50 2019-02-16 00:14:56.435471 2019-02-16 00:14:56.435471 1 0.0 36 35 483 6 400.00 2400.00 2019-02-19 17:47:48.580972 2019-02-19 17:47:48.580972 1 0.0 37 36 484 1 499.50 499.50 2019-02-21 00:33:44.620464 2019-02-21 00:33:44.620464 1 0.0 38 37 485 6 297.60 1785.60 2019-02-21 01:29:11.702929 2019-02-21 01:29:11.702929 1 0.0 39 38 486 2 899.50 1799.00 2019-02-22 19:25:33.240856 2019-02-22 19:25:33.240856 1 0.0 40 39 487 2 899.50 1799.00 2019-02-22 19:42:10.917944 2019-02-22 19:42:10.917944 1 0.0 41 40 488 3 399.00 1197.00 2019-02-23 19:55:41.798764 2019-02-23 19:55:41.798764 1 0.0 42 41 489 1 230.00 230.00 2019-02-23 20:09:48.41027 2019-02-23 20:09:48.41027 1 0.0 43 42 490 2 230.00 460.00 2019-02-23 20:11:04.248277 2019-02-23 20:11:04.248277 1 0.0 44 43 491 2 230.00 460.00 2019-02-23 20:12:53.017779 2019-02-23 20:12:53.017779 1 0.0 45 44 492 1 849.50 849.50 2019-02-24 01:25:37.968192 2019-02-24 01:25:37.968192 1 0.0 46 45 493 1 1850.00 1850.00 2019-03-02 00:50:39.27241 2019-03-02 00:50:39.27241 1 0.0 47 46 494 31 449.50 13934.50 2019-03-02 17:16:01.526977 2019-03-02 17:16:01.526977 1 0.0 48 47 495 5 849.50 4247.50 2019-03-11 21:09:22.403766 2019-03-11 21:09:22.403766 1 0.0 49 49 496 3 334.50 1003.50 2019-03-15 21:02:47.35545 2019-03-15 21:02:47.35545 1 0.0 50 50 497 6 293.52 1761.12 2019-03-21 22:28:11.077196 2019-03-21 22:28:11.077196 1 0.0 51 51 498 6 213.92 1283.52 2019-03-21 22:30:38.549889 2019-03-21 22:30:38.549889 1 0.0 52 52 499 12 228.85 2746.20 2019-03-21 22:33:35.682719 2019-03-21 22:33:35.682719 1 0.0 53 53 500 6 258.70 1552.20 2019-03-21 22:37:44.487 2019-03-21 22:37:44.487 1 0.0 54 54 501 6 298.50 1791.00 2019-03-21 22:41:21.195087 2019-03-21 22:41:21.195087 1 0.0 55 55 502 6 398.00 2388.00 2019-03-21 22:44:19.75435 2019-03-21 22:44:19.75435 1 0.0 56 56 503 6 380.00 2280.00 2019-03-21 22:47:05.425472 2019-03-21 22:47:05.425472 1 0.0 57 57 504 6 557.10 3342.60 2019-03-21 22:50:07.691813 2019-03-21 22:50:07.691813 1 0.0 58 58 505 1 676.60 676.60 2019-03-21 22:52:32.909213 2019-03-21 22:52:32.909213 1 0.0 59 59 506 6 557.20 3343.20 2019-03-21 22:54:19.420224 2019-03-21 22:54:19.420224 1 0.0 60 60 507 6 194.25 1165.50 2019-03-21 23:04:23.011085 2019-03-21 23:04:23.011085 1 0.0 61 60 508 6 308.45 1850.70 2019-03-21 23:04:23.037027 2019-03-21 23:04:23.037027 1 0.0 62 61 509 6 299.50 1797.00 2019-03-21 23:45:39.797731 2019-03-21 23:45:39.797731 1 0.0 63 61 510 6 474.50 2847.00 2019-03-21 23:45:39.830959 2019-03-21 23:45:39.830959 1 0.0 64 61 511 6 434.50 2607.00 2019-03-21 23:45:39.862231 2019-03-21 23:45:39.862231 1 0.0 65 61 512 6 434.50 2607.00 2019-03-21 23:45:39.893241 2019-03-21 23:45:39.893241 1 0.0 66 61 513 6 449.50 2697.00 2019-03-21 23:45:39.925317 2019-03-21 23:45:39.925317 1 0.0 67 61 514 6 239.50 1437.00 2019-03-21 23:45:39.956073 2019-03-21 23:45:39.956073 1 0.0 68 62 515 6 449.50 2697.00 2019-03-21 23:50:19.998674 2019-03-21 23:50:19.998674 1 0.0 69 63 505 5 676.60 3383.00 2019-03-23 22:13:51.621263 2019-03-23 22:13:51.621263 1 0.0 70 64 516 6 499.50 2997.00 2019-03-23 23:37:06.234259 2019-03-23 23:37:06.234259 1 0.0 71 65 517 6 299.50 1797.00 2019-03-25 17:53:45.952874 2019-03-25 17:53:45.952874 1 0.0 72 66 518 6 354.78 2128.68 2019-03-26 01:14:54.285584 2019-03-26 01:19:34.873935 0 0.0 73 67 519 6 354.78 2128.68 2019-03-26 01:21:34.584159 2019-03-26 01:21:34.584159 1 0.0 74 68 520 6 384.34 2306.04 2019-03-26 01:30:27.079202 2019-03-26 01:30:27.079202 1 0.0 75 69 521 6 177.39 1064.34 2019-03-26 01:39:39.088474 2019-03-26 01:39:39.088474 1 0.0 76 70 522 6 236.52 1419.12 2019-03-26 01:44:45.496254 2019-03-26 01:46:22.310724 0 0.0 77 71 523 6 236.52 1419.12 2019-03-26 01:47:25.88273 2019-03-26 01:47:25.88273 1 0.0 78 72 524 6 216.81 1300.86 2019-03-26 01:51:17.018197 2019-03-26 01:51:17.018197 1 0.0 79 73 525 6 453.33 2719.98 2019-03-26 01:58:13.69496 2019-03-26 01:58:13.69496 1 0.0 80 74 526 6 354.78 2128.68 2019-03-26 02:03:31.332344 2019-03-26 02:03:31.332344 1 0.0 81 75 527 6 295.65 1773.90 2019-03-26 02:06:12.556715 2019-03-26 02:06:12.556715 1 0.0 82 76 528 6 236.52 1419.12 2019-03-26 02:12:49.956543 2019-03-26 02:12:49.956543 1 0.0 83 77 529 6 315.36 1892.16 2019-03-26 02:15:13.78055 2019-03-26 02:15:13.78055 1 0.0 84 78 530 1 749.50 749.50 2019-03-28 23:02:41.349049 2019-03-28 23:02:41.349049 1 0.0 85 79 531 6 289.50 1737.00 2019-04-08 22:48:35.926857 2019-04-08 22:48:35.926857 1 0.0 86 79 532 6 299.50 1797.00 2019-04-08 22:48:35.967197 2019-04-08 22:48:35.967197 1 0.0 87 80 157 6 327.60 1965.60 2019-04-08 22:59:10.451791 2019-04-08 22:59:10.451791 1 0.0 88 81 265 1 599.50 599.50 2019-04-16 00:45:30.300807 2019-04-16 00:45:30.300807 1 0.0 89 81 271 1 649.50 649.50 2019-04-16 00:45:30.338778 2019-04-16 00:45:30.338778 1 0.0 90 81 533 1 749.50 749.50 2019-04-16 00:45:30.372282 2019-04-16 00:45:30.372282 1 0.0 91 81 484 12 499.50 5994.00 2019-04-16 00:45:30.407255 2019-04-16 00:45:30.407255 1 0.0 92 82 534 2 299.50 599.00 2019-04-16 17:48:02.807135 2019-04-16 17:48:02.807135 1 0.0 93 82 535 3 349.50 1048.50 2019-04-16 17:48:02.845713 2019-04-16 17:48:02.845713 1 0.0 94 82 60 11 240.00 2640.00 2019-04-16 17:48:02.870895 2019-04-16 17:48:02.870895 1 0.0 95 82 536 3 304.50 913.50 2019-04-16 17:48:02.91478 2019-04-16 17:48:02.91478 1 0.0 96 82 537 7 249.50 1746.50 2019-04-16 17:48:02.936839 2019-04-16 17:48:02.936839 1 0.0 97 83 60 1 240.00 240.00 2019-04-16 17:50:00.843274 2019-04-16 17:50:00.843274 1 0.0 98 84 530 1 749.50 749.50 2019-04-16 19:33:08.990909 2019-04-16 19:33:08.990909 1 0.0 99 84 486 1 899.50 899.50 2019-04-16 19:33:09.028255 2019-04-16 19:33:09.028255 1 0.0 100 84 492 2 849.50 1699.00 2019-04-16 19:33:09.05167 2019-04-16 19:33:09.05167 1 0.0 101 84 358 1 749.50 749.50 2019-04-16 19:33:09.074665 2019-04-16 19:33:09.074665 1 0.0 102 84 351 1 999.50 999.50 2019-04-16 19:33:09.103856 2019-04-16 19:33:09.103856 1 0.0 103 84 538 2 849.50 1699.00 2019-04-16 19:33:09.13413 2019-04-16 19:33:09.13413 1 0.0 104 84 539 1 849.50 849.50 2019-04-16 19:33:09.157677 2019-04-16 19:33:09.157677 1 0.0 105 84 540 2 799.50 1599.00 2019-04-16 19:33:09.181645 2019-04-16 19:33:09.181645 1 0.0 106 84 541 2 949.50 1899.00 2019-04-16 19:33:09.205002 2019-04-16 19:33:09.205002 1 0.0 107 84 542 1 899.50 899.50 2019-04-16 19:33:09.229266 2019-04-16 19:33:09.229266 1 0.0 108 84 543 1 949.50 949.50 2019-04-16 19:33:09.252967 2019-04-16 19:33:09.252967 1 0.0 109 84 544 1 849.50 849.50 2019-04-16 19:33:09.283376 2019-04-16 19:33:09.283376 1 0.0 110 84 545 1 899.50 899.50 2019-04-16 19:33:09.315686 2019-04-16 19:33:09.315686 1 0.0 111 85 443 1 749.50 749.50 2019-04-16 20:34:42.392184 2019-04-16 20:34:42.392184 1 0.0 112 85 546 1 595.00 595.00 2019-04-16 20:34:42.435932 2019-04-16 20:34:42.435932 1 0.0 113 85 547 1 1199.50 1199.50 2019-04-16 20:34:42.460162 2019-04-16 20:34:42.460162 1 0.0 114 86 548 6 749.50 4497.00 2019-05-04 01:11:15.133711 2019-05-04 01:11:15.133711 1 0.0 115 87 199 18 300.30 5405.40 2019-05-04 17:18:59.781603 2019-05-04 17:18:59.781603 1 0.0 116 88 549 6 699.50 4197.00 2019-05-04 18:09:16.687501 2019-05-04 18:09:16.687501 1 0.0 117 88 550 6 734.50 4407.00 2019-05-04 18:09:16.713114 2019-05-04 18:09:16.713114 1 0.0 118 88 551 6 799.50 4797.00 2019-05-04 18:09:16.740199 2019-05-04 18:09:16.740199 1 0.0 119 89 552 6 239.50 1437.00 2019-05-04 18:26:59.518574 2019-05-04 18:26:59.518574 1 0.0 120 89 553 6 599.50 3597.00 2019-05-04 18:26:59.541936 2019-05-04 18:26:59.541936 1 0.0 121 89 554 6 414.50 2487.00 2019-05-04 18:26:59.563028 2019-05-04 18:26:59.563028 1 0.0 122 89 555 6 489.50 2937.00 2019-05-04 18:26:59.585771 2019-05-04 18:26:59.585771 1 0.0 123 90 556 6 239.50 1437.00 2019-05-04 18:38:14.232083 2019-05-04 18:38:14.232083 1 0.0 124 91 557 6 274.50 1647.00 2019-05-04 18:41:14.10311 2019-05-04 18:41:14.10311 1 0.0 125 92 558 6 449.50 2697.00 2019-05-04 19:04:33.757438 2019-05-04 19:04:33.757438 1 0.0 126 92 559 6 289.50 1737.00 2019-05-04 19:04:33.785732 2019-05-04 19:04:33.785732 1 0.0 127 92 560 6 284.50 1707.00 2019-05-04 19:04:33.812449 2019-05-04 19:04:33.812449 1 0.0 128 92 562 6 399.50 2397.00 2019-05-04 19:04:33.845104 2019-05-04 19:04:33.845104 1 0.0 129 92 563 6 284.50 1707.00 2019-05-04 19:04:33.871183 2019-05-04 19:04:33.871183 1 0.0 130 92 564 6 549.50 3297.00 2019-05-04 19:04:33.898099 2019-05-04 19:04:33.898099 1 0.0 131 92 565 6 344.50 2067.00 2019-05-04 19:04:33.932025 2019-05-04 19:04:33.932025 1 0.0 132 93 566 4 199.50 798.00 2019-05-15 18:08:16.253664 2019-05-15 18:08:16.253664 1 0.0 133 94 574 6 599.50 3597.00 2019-05-16 23:49:41.940666 2019-05-16 23:49:41.940666 1 0.0 134 94 575 6 584.50 3507.00 2019-05-16 23:49:41.98504 2019-05-16 23:49:41.98504 1 0.0 135 94 576 6 499.50 2997.00 2019-05-16 23:49:42.026134 2019-05-16 23:49:42.026134 1 0.0 136 94 577 6 449.50 2697.00 2019-05-16 23:49:42.071388 2019-05-16 23:49:42.071388 1 0.0 137 94 578 6 399.50 2397.00 2019-05-16 23:49:42.113684 2019-05-16 23:49:42.113684 1 0.0 138 94 579 6 349.50 2097.00 2019-05-16 23:49:42.147025 2019-05-16 23:49:42.147025 1 0.0 139 94 567 6 289.50 1737.00 2019-05-16 23:49:42.184682 2019-05-16 23:49:42.184682 1 0.0 140 94 568 6 334.50 2007.00 2019-05-16 23:49:42.22587 2019-05-16 23:49:42.22587 1 0.0 141 94 569 12 244.50 2934.00 2019-05-16 23:49:42.264056 2019-05-16 23:49:42.264056 1 0.0 142 94 570 9 244.50 2200.50 2019-05-16 23:49:42.301739 2019-05-16 23:49:42.301739 1 0.0 143 94 571 6 399.50 2397.00 2019-05-16 23:49:42.338534 2019-05-16 23:49:42.338534 1 0.0 144 94 572 6 599.50 3597.00 2019-05-16 23:49:42.376337 2019-05-16 23:49:42.376337 1 0.0 145 94 573 6 624.50 3747.00 2019-05-16 23:49:42.413765 2019-05-16 23:49:42.413765 1 0.0 146 95 580 6 699.50 4197.00 2019-05-17 00:23:03.646115 2019-05-17 00:23:03.646115 1 0.0 147 95 581 6 699.50 4197.00 2019-05-17 00:23:03.677629 2019-05-17 00:23:03.677629 1 0.0 148 96 582 1 20.00 20.00 2019-05-23 01:48:30.70928 2019-05-23 01:50:58.778207 0 0.0 149 97 583 1 384.00 384.00 2019-05-23 01:53:49.915962 2019-05-23 01:53:49.915962 1 0.0 150 98 584 1 286.35 286.35 2019-05-23 17:47:00.70252 2019-05-23 17:47:00.70252 1 0.0 151 99 583 5 384.00 1920.00 2019-05-23 17:50:42.572943 2019-05-23 17:50:42.572943 1 0.0 152 99 584 5 286.35 1431.75 2019-05-23 17:50:42.606357 2019-05-23 17:50:42.606357 1 0.0 153 100 585 6 668.00 4008.00 2019-05-23 18:01:41.920204 2019-05-23 18:01:41.920204 1 0.0 154 101 586 6 219.53 1317.18 2019-05-23 18:25:12.730986 2019-05-23 18:25:12.730986 1 0.0 155 101 587 6 209.00 1254.00 2019-05-23 18:25:12.756343 2019-05-23 18:25:12.756343 1 0.0 156 101 588 6 248.75 1492.50 2019-05-23 18:25:12.780777 2019-05-23 18:25:12.780777 1 0.0 157 102 589 1 674.50 674.50 2019-06-21 01:27:55.98553 2019-06-21 01:27:55.98553 1 0.0 158 103 161 1 280.00 280.00 2019-07-13 18:10:11.57663 2019-07-13 18:10:11.57663 1 0.0 159 104 590 6 549.50 3297.00 2019-07-15 19:21:29.692669 2019-07-15 19:21:29.692669 1 0.0 160 104 591 6 599.50 3597.00 2019-07-15 19:21:29.718226 2019-07-15 19:21:29.718226 1 0.0 161 104 592 6 649.50 3897.00 2019-07-15 19:21:29.741279 2019-07-15 19:21:29.741279 1 0.0 162 104 593 6 329.50 1977.00 2019-07-15 19:21:29.765368 2019-07-15 19:21:29.765368 1 0.0 163 104 594 6 324.50 1947.00 2019-07-15 19:21:29.790174 2019-07-15 19:21:29.790174 1 0.0 164 104 595 6 349.50 2097.00 2019-07-15 19:21:29.814381 2019-07-15 19:21:29.814381 1 0.0 165 105 596 5 551.00 2755.00 2019-07-15 20:24:06.529826 2019-07-15 20:24:06.529826 1 0.0 166 106 597 6 242.25 1453.50 2019-07-15 22:40:01.425701 2019-07-15 22:40:01.425701 1 0.0 167 106 598 6 275.50 1653.00 2019-07-15 22:40:01.448591 2019-07-15 22:40:01.448591 1 0.0 168 106 599 6 209.00 1254.00 2019-07-15 22:40:01.469713 2019-07-15 22:40:01.469713 1 0.0 169 106 600 6 161.50 969.00 2019-07-15 22:40:01.492423 2019-07-15 22:40:01.492423 1 0.0 170 106 601 6 266.00 1596.00 2019-07-15 22:40:01.524121 2019-07-15 22:40:01.524121 1 0.0 171 106 602 6 223.25 1339.50 2019-07-15 22:40:01.551935 2019-07-15 22:40:01.551935 1 0.0 172 106 603 6 465.50 2793.00 2019-07-15 22:40:01.575149 2019-07-15 22:40:01.575149 1 0.0 173 106 604 6 294.50 1767.00 2019-07-15 22:40:01.596718 2019-07-15 22:40:01.596718 1 0.0 174 107 600 6 161.50 969.00 2019-07-15 23:43:05.054413 2019-07-15 23:43:05.054413 1 0.0 175 107 597 6 242.25 1453.50 2019-07-15 23:43:05.077188 2019-07-15 23:43:05.077188 1 0.0 176 107 590 6 418.00 2508.00 2019-07-15 23:43:05.108637 2019-07-15 23:43:05.108637 1 0.0 177 108 606 6 166.00 996.00 2019-07-16 01:00:21.881823 2019-07-16 01:00:21.881823 1 0.0 178 108 609 6 370.00 2220.00 2019-07-16 01:00:21.928399 2019-07-16 01:00:21.928399 1 0.0 179 108 610 6 310.00 1860.00 2019-07-16 01:00:21.974915 2019-07-16 01:00:21.974915 1 0.0 180 108 608 6 408.50 2451.00 2019-07-16 01:00:22.017907 2019-07-16 01:00:22.017907 1 0.0 181 108 607 6 680.00 4080.00 2019-07-16 01:00:22.054208 2019-07-16 01:00:22.054208 1 0.0 182 108 605 6 350.00 2100.00 2019-07-16 01:00:22.091822 2019-07-16 01:00:22.091822 1 0.0 183 109 611 6 161.00 966.00 2019-07-16 01:15:20.85372 2019-07-16 01:15:20.85372 1 0.0 184 110 612 1 749.50 749.50 2019-07-17 23:06:30.070213 2019-07-17 23:06:30.070213 1 0.0 185 110 613 1 899.50 899.50 2019-07-17 23:06:30.097223 2019-07-17 23:06:30.097223 1 0.0 186 110 614 1 849.50 849.50 2019-07-17 23:06:30.122691 2019-07-17 23:06:30.122691 1 0.0 187 110 615 1 449.50 449.50 2019-07-17 23:06:30.147004 2019-07-17 23:06:30.147004 1 0.0 188 111 616 11 74.50 819.50 2019-07-22 23:37:30.639883 2019-07-22 23:37:30.639883 1 0.0 189 112 618 6 247.00 1482.00 2019-07-23 18:34:24.062772 2019-07-23 18:34:24.062772 1 0.0 190 112 619 6 256.50 1539.00 2019-07-23 18:34:24.102829 2019-07-23 18:34:24.102829 1 0.0 191 112 620 6 147.25 883.50 2019-07-23 18:34:24.135522 2019-07-23 18:34:24.135522 1 0.0 192 112 621 6 247.50 1485.00 2019-07-23 18:34:24.169794 2019-07-23 18:34:24.169794 1 0.0 193 112 622 6 190.00 1140.00 2019-07-23 18:34:24.19769 2019-07-23 18:34:24.19769 1 0.0 194 112 623 6 242.25 1453.50 2019-07-23 18:34:24.223068 2019-07-23 18:34:24.223068 1 0.0 195 112 624 6 427.50 2565.00 2019-07-23 18:34:24.24799 2019-07-23 18:34:24.24799 1 0.0 196 112 625 6 304.00 1824.00 2019-07-23 18:34:24.274132 2019-07-23 18:34:24.274132 1 0.0 197 112 626 6 513.00 3078.00 2019-07-23 18:34:24.299923 2019-07-23 18:34:24.299923 1 0.0 198 112 627 6 399.00 2394.00 2019-07-23 18:34:24.330614 2019-07-23 18:34:24.330614 1 0.0 199 113 629 6 427.50 2565.00 2019-07-23 19:36:35.509429 2019-07-23 19:36:35.509429 1 0.0 200 113 630 6 275.50 1653.00 2019-07-23 19:36:35.547667 2019-07-23 19:36:35.547667 1 0.0 201 113 631 6 280.25 1681.50 2019-07-23 19:36:35.571234 2019-07-23 19:36:35.571234 1 0.0 202 113 632 6 185.25 1111.50 2019-07-23 19:36:35.594083 2019-07-23 19:36:35.594083 1 0.0 203 113 633 6 285.00 1710.00 2019-07-23 19:36:35.62312 2019-07-23 19:36:35.62312 1 0.0 204 113 634 6 285.00 1710.00 2019-07-23 19:36:35.65445 2019-07-23 19:36:35.65445 1 0.0 205 113 628 6 437.00 2622.00 2019-07-23 19:36:35.676127 2019-07-23 19:36:35.676127 1 0.0 206 113 635 6 237.50 1425.00 2019-07-23 19:36:35.701913 2019-07-23 19:36:35.701913 1 0.0 207 113 636 6 313.50 1881.00 2019-07-23 19:36:35.729162 2019-07-23 19:36:35.729162 1 0.0 208 113 637 6 285.00 1710.00 2019-07-23 19:36:35.752644 2019-07-23 19:36:35.752644 1 0.0 209 113 638 6 247.00 1482.00 2019-07-23 19:36:35.780788 2019-07-23 19:36:35.780788 1 0.0 210 114 639 4 300.00 1200.00 2019-07-29 23:15:51.666552 2019-07-29 23:15:51.666552 1 0.0 211 115 640 5 749.50 3747.50 2019-08-18 01:25:29.43722 2019-08-18 01:25:29.43722 1 0.0 212 116 642 5 439.50 2197.50 2019-08-18 23:48:07.446829 2019-08-18 23:48:07.446829 1 0.0 213 116 643 3 249.50 748.50 2019-08-18 23:48:07.491302 2019-08-18 23:48:07.491302 1 0.0 214 116 644 3 210.00 630.00 2019-08-18 23:48:07.524004 2019-08-18 23:48:07.524004 1 0.0 215 116 645 2 284.50 569.00 2019-08-18 23:48:07.550618 2019-08-18 23:48:07.550618 1 0.0 216 116 646 2 774.50 1549.00 2019-08-18 23:48:07.575966 2019-08-18 23:48:07.575966 1 0.0 217 116 647 2 484.50 969.00 2019-08-18 23:48:07.603972 2019-08-18 23:48:07.603972 1 0.0 218 116 648 1 414.50 414.50 2019-08-18 23:48:07.638313 2019-08-18 23:48:07.638313 1 0.0 219 116 649 1 449.50 449.50 2019-08-18 23:48:07.667322 2019-08-18 23:48:07.667322 1 0.0 220 116 650 1 599.50 599.50 2019-08-18 23:48:07.702204 2019-08-18 23:48:07.702204 1 0.0 221 116 651 1 599.50 599.50 2019-08-18 23:48:07.74068 2019-08-18 23:48:07.74068 1 0.0 222 117 652 5 660.00 3300.00 2019-08-19 00:07:06.568417 2019-08-19 00:07:06.568417 1 0.0 223 117 653 3 858.00 2574.00 2019-08-19 00:07:06.605162 2019-08-19 00:07:06.605162 1 0.0 224 117 654 3 549.00 1647.00 2019-08-19 00:07:06.644257 2019-08-19 00:07:06.644257 1 0.0 225 118 655 1 749.50 749.50 2019-08-19 00:53:56.575561 2019-08-19 00:53:56.575561 1 0.0 226 118 656 1 949.50 949.50 2019-08-19 00:53:56.604101 2019-08-19 00:53:56.604101 1 0.0 227 118 657 1 899.50 899.50 2019-08-19 00:53:56.63651 2019-08-19 00:53:56.63651 1 0.0 228 118 658 1 999.50 999.50 2019-08-19 00:53:56.664686 2019-08-19 00:53:56.664686 1 0.0 229 118 659 1 849.50 849.50 2019-08-19 00:53:56.691911 2019-08-19 00:53:56.691911 1 0.0 230 118 660 1 799.50 799.50 2019-08-19 00:53:56.720052 2019-08-19 00:53:56.720052 1 0.0 231 119 661 6 260.00 1560.00 2019-08-20 21:46:50.991997 2019-08-20 21:46:50.991997 1 0.0 232 119 663 18 275.00 4950.00 2019-08-20 21:46:51.017812 2019-08-20 21:46:51.017812 1 0.0 233 119 662 12 270.00 3240.00 2019-08-20 21:46:51.029953 2019-08-20 21:46:51.029953 1 0.0 234 119 664 24 275.00 6600.00 2019-08-20 21:46:51.042111 2019-08-20 21:46:51.042111 1 0.0 235 120 665 12 170.00 2040.00 2019-08-20 21:53:31.070568 2019-08-20 21:53:31.070568 1 0.0 236 121 666 6 330.00 1980.00 2019-08-21 23:38:48.773789 2019-08-21 23:38:48.773789 1 0.0 237 122 671 6 290.00 1740.00 2019-08-22 00:31:25.376001 2019-08-22 00:31:25.376001 1 0.0 238 122 668 60 80.00 4800.00 2019-08-22 00:31:25.405686 2019-08-22 00:31:25.405686 1 0.0 239 122 669 18 150.00 2700.00 2019-08-22 00:31:25.433409 2019-08-22 00:31:25.433409 1 0.0 240 122 670 24 250.00 6000.00 2019-08-22 00:31:25.460839 2019-08-22 00:31:25.460839 1 0.0 241 123 623 18 242.25 4360.50 2019-08-22 00:48:36.111808 2019-08-22 00:48:36.111808 1 0.0 242 123 672 18 270.00 4860.00 2019-08-22 00:48:36.138451 2019-08-22 00:48:36.138451 1 0.0 243 123 673 18 280.00 5040.00 2019-08-22 00:48:36.165406 2019-08-22 00:48:36.165406 1 0.0 244 124 674 6 320.00 1920.00 2019-08-22 01:07:07.115599 2019-08-22 01:07:07.115599 1 0.0 245 124 675 12 290.00 3480.00 2019-08-22 01:07:07.155808 2019-08-22 01:07:07.155808 1 0.0 246 125 676 6 455.00 2730.00 2019-08-22 03:35:13.123864 2019-08-22 03:35:13.123864 1 0.0 247 125 677 6 350.00 2100.00 2019-08-22 03:35:13.152486 2019-08-22 03:35:13.152486 1 0.0 248 125 678 6 440.00 2640.00 2019-08-22 03:35:13.164951 2019-08-22 03:35:13.164951 1 0.0 249 125 679 6 430.00 2580.00 2019-08-22 03:35:13.17724 2019-08-22 03:35:13.17724 1 0.0 250 126 680 6 160.00 960.00 2019-08-22 03:44:25.817732 2019-08-22 03:44:25.817732 1 0.0 251 126 681 12 310.00 3720.00 2019-08-22 03:44:25.835466 2019-08-22 03:44:25.835466 1 0.0 252 126 682 1 240.00 240.00 2019-08-22 03:44:25.853603 2019-08-22 03:44:25.853603 1 0.0 253 126 683 1 179.00 179.00 2019-08-22 03:44:25.870129 2019-08-22 03:44:25.870129 1 0.0 254 127 684 1 560.00 560.00 2019-08-22 04:15:40.949598 2019-08-22 04:15:40.949598 1 0.0 255 128 685 6 155.00 930.00 2019-08-22 04:48:57.863816 2019-08-22 04:48:57.863816 1 0.0 256 129 686 6 270.00 1620.00 2019-08-22 04:58:31.400556 2019-08-22 04:58:31.400556 1 0.0 257 129 687 6 260.00 1560.00 2019-08-22 04:58:31.417159 2019-08-22 04:58:31.417159 1 0.0 258 129 688 6 260.00 1560.00 2019-08-22 04:58:31.432355 2019-08-22 04:58:31.432355 1 0.0 259 130 689 1 799.50 799.50 2019-08-29 22:09:20.759696 2019-08-29 22:09:20.759696 1 0.0 260 131 690 6 290.00 1740.00 2019-08-30 03:48:07.578816 2019-08-30 03:48:07.578816 1 0.0 261 131 691 6 490.00 2940.00 2019-08-30 03:48:07.601006 2019-08-30 03:48:07.601006 1 0.0 262 131 692 6 490.00 2940.00 2019-08-30 03:48:07.611681 2019-08-30 03:48:07.611681 1 0.0 263 131 693 6 310.00 1860.00 2019-08-30 03:48:07.622852 2019-08-30 03:48:07.622852 1 0.0 264 131 694 6 310.00 1860.00 2019-08-30 03:48:07.633008 2019-08-30 03:48:07.633008 1 0.0 265 131 695 6 490.00 2940.00 2019-08-30 03:48:07.642997 2019-08-30 03:48:07.642997 1 0.0 266 131 696 6 270.00 1620.00 2019-08-30 03:48:07.653641 2019-08-30 03:48:07.653641 1 0.0 267 131 697 6 280.00 1680.00 2019-08-30 03:48:07.663605 2019-08-30 03:48:07.663605 1 0.0 268 131 698 6 330.00 1980.00 2019-08-30 03:48:07.673456 2019-08-30 03:48:07.673456 1 0.0 269 132 699 6 560.00 3360.00 2019-08-30 04:45:25.208358 2019-08-30 04:45:25.208358 1 0.0 270 132 700 6 540.00 3240.00 2019-08-30 04:45:25.221452 2019-08-30 04:45:25.221452 1 0.0 271 132 701 6 650.00 3900.00 2019-08-30 04:45:25.234871 2019-08-30 04:45:25.234871 1 0.0 272 132 702 6 790.00 4740.00 2019-08-30 04:45:25.248894 2019-08-30 04:45:25.248894 1 0.0 273 133 703 1 799.50 799.50 2019-09-01 03:07:50.441907 2019-09-01 03:07:50.441907 1 0.0 274 134 704 6 174.50 1047.00 2019-09-01 03:24:38.629375 2019-09-01 03:24:38.629375 1 0.0 275 134 705 12 124.50 1494.00 2019-09-01 03:24:38.7746 2019-09-01 03:24:38.7746 1 0.0 276 135 706 1 799.50 799.50 2019-09-03 19:26:06.109165 2019-09-03 19:26:06.109165 1 0.0 277 135 707 1 749.50 749.50 2019-09-03 19:26:06.157044 2019-09-03 19:26:06.157044 1 0.0 278 135 708 1 749.50 749.50 2019-09-03 19:26:06.185663 2019-09-03 19:26:06.185663 1 0.0 279 135 709 1 849.50 849.50 2019-09-03 19:26:06.211679 2019-09-03 19:26:06.211679 1 0.0 280 136 388 14 949.50 13293.00 2019-09-03 23:39:56.559807 2019-09-03 23:39:56.559807 1 0.0 281 137 367 38 153.60 5836.80 2019-09-03 23:45:39.601072 2019-09-03 23:45:39.601072 1 0.0 282 138 553 1 599.50 599.50 2019-09-04 23:21:39.039168 2019-09-04 23:21:39.039168 1 0.0 283 138 181 1 221.49 221.49 2019-09-04 23:21:39.073805 2019-09-04 23:21:39.073805 1 0.0 284 139 710 12 401.00 4812.00 2019-09-05 03:26:22.019777 2019-09-05 03:26:22.019777 1 0.0 285 140 711 5 351.60 1758.00 2019-09-11 19:57:13.939655 2019-09-11 19:57:13.939655 1 0.0 286 141 712 2 499.50 999.00 2019-09-20 23:17:54.770595 2019-09-20 23:17:54.770595 1 0.0 287 142 713 6 300.00 1800.00 2019-09-21 20:43:58.896686 2019-09-21 20:43:58.896686 1 0.0 288 142 714 6 349.00 2094.00 2019-09-21 20:43:58.919183 2019-09-21 20:43:58.919183 1 0.0 289 142 715 6 360.00 2160.00 2019-09-21 20:43:58.931512 2019-09-21 20:43:58.931512 1 0.0 290 143 716 1 749.50 749.50 2019-09-26 23:19:39.063615 2019-09-26 23:19:39.063615 1 0.0 291 143 717 3 1049.50 3148.50 2019-09-26 23:19:39.097264 2019-09-26 23:19:39.097264 1 0.0 292 143 718 1 799.50 799.50 2019-09-26 23:19:39.119351 2019-09-26 23:19:39.119351 1 0.0 293 143 719 1 749.50 749.50 2019-09-26 23:19:39.141839 2019-09-26 23:19:39.141839 1 0.0 294 143 720 1 999.50 999.50 2019-09-26 23:19:39.162865 2019-09-26 23:19:39.162865 1 0.0 295 143 721 1 899.50 899.50 2019-09-26 23:19:39.184774 2019-09-26 23:19:39.184774 1 0.0 296 143 722 6 949.50 5697.00 2019-09-26 23:19:39.206909 2019-09-26 23:19:39.206909 1 0.0 297 143 723 1 999.50 999.50 2019-09-26 23:19:39.228031 2019-09-26 23:19:39.228031 1 0.0 298 144 724 5 344.50 1722.50 2019-10-05 17:37:06.664816 2019-10-05 17:37:06.664816 1 0.0 299 144 725 1 264.50 306.82 2019-10-05 17:37:06.694682 2019-10-05 17:37:06.694682 1 42.32 300 144 726 1 264.50 264.50 2019-10-05 17:37:06.715967 2019-10-05 17:37:06.715967 1 0.0 301 144 727 1 349.50 349.50 2019-10-05 17:37:06.736275 2019-10-05 17:37:06.736275 1 0.0 302 145 728 2 399.50 799.00 2019-10-05 19:15:22.042483 2019-10-05 19:15:22.042483 1 0.0 303 146 729 3 300.00 900.00 2019-10-06 00:02:28.683018 2019-10-06 00:02:28.683018 1 0.0 304 146 730 2 280.00 560.00 2019-10-06 00:02:28.706813 2019-10-06 00:02:28.706813 1 0.0 305 147 731 1 270.00 270.00 2019-10-07 20:18:12.509451 2019-10-07 20:18:12.509451 1 0.0 306 147 732 2 200.00 400.00 2019-10-07 20:18:12.537889 2019-10-07 20:18:12.537889 1 0.0 307 147 733 1 235.00 235.00 2019-10-07 20:18:12.560038 2019-10-07 20:18:12.560038 1 0.0 308 147 734 2 335.00 670.00 2019-10-07 20:18:12.581056 2019-10-07 20:18:12.581056 1 0.0 309 147 735 4 305.00 1220.00 2019-10-07 20:18:12.601055 2019-10-07 20:18:12.601055 1 0.0 310 147 736 5 171.00 855.00 2019-10-07 20:18:12.621492 2019-10-07 20:18:12.621492 1 0.0 311 148 737 6 379.00 2274.00 2019-10-07 20:44:42.385909 2019-10-07 20:44:42.385909 1 0.0 312 148 738 4 337.00 1348.00 2019-10-07 20:44:42.406114 2019-10-07 20:44:42.406114 1 0.0 313 148 739 3 359.00 1077.00 2019-10-07 20:44:42.425824 2019-10-07 20:44:42.425824 1 0.0 314 148 740 2 347.00 694.00 2019-10-07 20:44:42.445739 2019-10-07 20:44:42.445739 1 0.0 315 148 741 2 319.00 638.00 2019-10-07 20:44:42.466149 2019-10-07 20:44:42.466149 1 0.0 316 148 742 1 359.00 359.00 2019-10-07 20:44:42.486949 2019-10-07 20:44:42.486949 1 0.0 317 148 743 2 379.00 758.00 2019-10-07 20:44:42.506836 2019-10-07 20:44:42.506836 1 0.0 318 148 744 1 480.00 480.00 2019-10-07 20:44:42.529948 2019-10-07 20:44:42.529948 1 0.0 319 148 745 1 320.00 320.00 2019-10-07 20:44:42.550494 2019-10-07 20:44:42.550494 1 0.0 320 148 746 1 290.00 290.00 2019-10-07 20:44:42.570595 2019-10-07 20:44:42.570595 1 0.0 321 148 747 1 290.00 290.00 2019-10-07 20:44:42.590148 2019-10-07 20:44:42.590148 1 0.0 322 148 748 1 359.00 359.00 2019-10-07 20:44:42.61001 2019-10-07 20:44:42.61001 1 0.0 323 149 749 6 200.00 1200.00 2019-10-08 06:01:51.695896 2019-10-08 06:01:51.695896 1 0.0 324 150 750 6 280.00 1680.00 2019-10-10 21:27:53.162609 2019-10-10 21:27:53.162609 1 0.0 325 150 751 6 430.00 2580.00 2019-10-10 21:27:53.183339 2019-10-10 21:27:53.183339 1 0.0 326 150 752 6 450.00 2700.00 2019-10-10 21:27:53.202411 2019-10-10 21:27:53.202411 1 0.0 327 150 753 6 290.00 1740.00 2019-10-10 21:27:53.221014 2019-10-10 21:27:53.221014 1 0.0 328 150 754 6 330.00 1980.00 2019-10-10 21:27:53.240199 2019-10-10 21:27:53.240199 1 0.0 329 150 755 6 420.00 2520.00 2019-10-10 21:27:53.261547 2019-10-10 21:27:53.261547 1 0.0 330 151 759 6 295.00 1770.00 2019-10-11 03:05:38.729172 2019-10-11 03:05:38.729172 1 0.0 331 151 760 6 2990.00 17940.00 2019-10-11 03:05:38.762192 2019-10-11 03:05:38.762192 1 0.0 332 151 756 6 470.00 2820.00 2019-10-11 03:05:38.786847 2019-10-11 03:05:38.786847 1 0.0 333 151 757 12 310.00 3720.00 2019-10-11 03:05:38.808861 2019-10-11 03:05:38.808861 1 0.0 334 151 758 12 280.00 3360.00 2019-10-11 03:05:38.829983 2019-10-11 03:05:38.829983 1 0.0 335 152 761 12 170.00 2040.00 2019-10-11 05:27:03.466333 2019-10-11 05:27:03.466333 1 0.0 336 152 762 6 330.00 1980.00 2019-10-11 05:27:03.487563 2019-10-11 05:27:03.487563 1 0.0 337 152 763 6 760.00 4560.00 2019-10-11 05:27:03.508173 2019-10-11 05:27:03.508173 1 0.0 338 152 764 6 760.00 4560.00 2019-10-11 05:27:03.528868 2019-10-11 05:27:03.528868 1 0.0 339 153 765 3 334.50 1003.50 2019-10-11 19:18:09.344365 2019-10-11 19:18:09.344365 1 0.0 340 153 766 3 649.50 1948.50 2019-10-11 19:18:09.369913 2019-10-11 19:18:09.369913 1 0.0 341 153 768 1 399.50 399.50 2019-10-11 19:18:09.393959 2019-10-11 19:18:09.393959 1 0.0 342 153 767 2 344.50 689.00 2019-10-11 19:18:09.414554 2019-10-11 19:18:09.414554 1 0.0 343 153 769 3 617.50 1852.50 2019-10-11 19:18:09.435054 2019-10-11 19:18:09.435054 1 0.0 344 153 770 3 449.50 1348.50 2019-10-11 19:18:09.45942 2019-10-11 19:18:09.45942 1 0.0 345 153 771 3 349.50 1048.50 2019-10-11 19:18:09.485244 2019-10-11 19:18:09.485244 1 0.0 346 153 772 3 349.50 1048.50 2019-10-11 19:18:09.510393 2019-10-11 19:18:09.510393 1 0.0 347 153 773 2 239.50 479.00 2019-10-11 19:18:09.533314 2019-10-11 19:18:09.533314 1 0.0 348 153 774 4 599.50 2398.00 2019-10-11 19:18:09.557584 2019-10-11 19:18:09.557584 1 0.0 349 153 775 6 674.50 4047.00 2019-10-11 19:18:09.771385 2019-10-11 19:18:09.771385 1 0.0 350 153 776 5 699.50 3497.50 2019-10-11 19:18:09.806304 2019-10-11 19:18:09.806304 1 0.0 351 153 777 2 749.50 1499.00 2019-10-11 19:18:09.829207 2019-10-11 19:18:09.829207 1 0.0 352 153 778 3 799.50 2398.50 2019-10-11 19:18:09.848898 2019-10-11 19:18:09.848898 1 0.0 353 153 779 4 449.50 1798.00 2019-10-11 19:18:09.868182 2019-10-11 19:18:09.868182 1 0.0 354 153 780 2 649.50 1299.00 2019-10-11 19:18:09.887419 2019-10-11 19:18:09.887419 1 0.0 355 153 781 3 494.50 1483.50 2019-10-11 19:18:09.906852 2019-10-11 19:18:09.906852 1 0.0 356 154 782 12 210.00 2520.00 2019-10-11 19:56:56.768503 2019-10-11 19:56:56.768503 1 0.0 357 155 783 6 340.00 2040.00 2019-10-11 21:20:32.556983 2019-10-11 21:20:32.556983 1 0.0 358 156 784 6 260.00 1560.00 2019-10-11 21:26:24.223224 2019-10-11 21:26:24.223224 1 0.0 359 157 786 12 224.20 2690.40 2019-10-11 22:07:47.188406 2019-10-11 22:07:47.188406 1 0.0 360 158 787 6 270.00 1620.00 2019-10-12 18:50:25.420282 2019-10-12 18:50:25.420282 1 0.0 361 159 788 12 224.00 2688.00 2019-10-12 20:17:07.223018 2019-10-12 20:17:07.223018 1 0.0 362 159 789 12 224.00 2688.00 2019-10-12 20:17:07.244962 2019-10-12 20:17:07.244962 1 0.0 363 159 790 12 330.00 3960.00 2019-10-12 20:17:07.264868 2019-10-12 20:17:07.264868 1 0.0 364 160 791 12 170.00 2040.00 2019-10-12 20:34:48.949911 2019-10-12 20:34:48.949911 1 0.0 365 160 792 6 295.00 1770.00 2019-10-12 20:34:48.971467 2019-10-12 20:34:48.971467 1 0.0 366 160 793 6 260.00 1560.00 2019-10-12 20:34:48.991708 2019-10-12 20:34:48.991708 1 0.0 367 161 794 6 270.00 1620.00 2019-10-13 16:52:29.826509 2019-10-13 16:52:29.826509 1 0.0 368 161 795 6 190.00 1140.00 2019-10-13 16:52:29.857396 2019-10-13 16:52:29.857396 1 0.0 369 161 796 12 460.00 5520.00 2019-10-13 16:52:29.879287 2019-10-13 16:52:29.879287 1 0.0 370 161 797 6 460.00 2760.00 2019-10-13 16:52:29.899711 2019-10-13 16:52:29.899711 1 0.0 371 161 798 6 160.00 960.00 2019-10-13 16:52:29.91895 2019-10-13 16:52:29.91895 1 0.0 372 162 799 6 170.00 1020.00 2019-10-14 19:06:56.091143 2019-10-14 19:06:56.091143 1 0.0 373 162 800 6 170.00 1020.00 2019-10-14 19:06:56.113232 2019-10-14 19:06:56.113232 1 0.0 374 162 801 1 170.00 170.00 2019-10-14 19:06:56.133497 2019-10-14 19:06:56.133497 1 0.0 375 163 802 6 350.00 2100.00 2019-10-14 19:20:32.83307 2019-10-14 19:20:32.83307 1 0.0 376 163 803 6 245.00 1470.00 2019-10-14 19:20:32.857213 2019-10-14 19:20:32.857213 1 0.0 377 163 804 6 239.00 1434.00 2019-10-14 19:20:32.882514 2019-10-14 19:20:32.882514 1 0.0 378 164 805 6 310.00 1860.00 2019-10-14 19:36:48.850665 2019-10-14 19:36:48.850665 1 0.0 379 164 806 6 250.00 1500.00 2019-10-14 19:36:48.874639 2019-10-14 19:36:48.874639 1 0.0 380 165 807 6 200.00 1200.00 2019-10-15 05:30:41.202272 2019-10-15 05:30:41.202272 1 0.0 381 166 808 4 849.50 3398.00 2019-10-16 19:58:45.706237 2019-10-16 19:58:45.706237 1 0.0 382 167 810 3 699.50 2098.50 2019-10-19 18:06:56.903851 2019-10-19 18:06:56.903851 1 0.0 383 167 809 3 449.50 1348.50 2019-10-19 18:06:56.925365 2019-10-19 18:06:56.925365 1 0.0 384 168 811 1 99.45 99.45 2019-10-19 20:38:07.201121 2019-10-19 20:38:07.201121 1 0.0 385 168 812 1 128.00 128.00 2019-10-19 20:38:07.232934 2019-10-19 20:38:07.232934 1 0.0 386 168 813 1 100.00 100.00 2019-10-19 20:38:07.253407 2019-10-19 20:38:07.253407 1 0.0 387 168 814 1 82.00 82.00 2019-10-19 20:38:07.274278 2019-10-19 20:38:07.274278 1 0.0 388 168 815 1 92.00 92.00 2019-10-19 20:38:07.294861 2019-10-19 20:38:07.294861 1 0.0 389 168 816 1 50.00 50.00 2019-10-19 20:38:07.315847 2019-10-19 20:38:07.315847 1 0.0 390 168 817 1 12.00 12.00 2019-10-19 20:38:07.335672 2019-10-19 20:38:07.335672 1 0.0 391 168 818 1 12.00 12.00 2019-10-19 20:38:07.355242 2019-10-19 20:38:07.355242 1 0.0 392 168 819 1 12.00 12.00 2019-10-19 20:38:07.374728 2019-10-19 20:38:07.374728 1 0.0 393 168 820 1 42.00 42.00 2019-10-19 20:38:07.394585 2019-10-19 20:38:07.394585 1 0.0 394 168 821 1 46.00 46.00 2019-10-19 20:38:07.414982 2019-10-19 20:38:07.414982 1 0.0 395 168 822 1 41.00 41.00 2019-10-19 20:38:07.436951 2019-10-19 20:38:07.436951 1 0.0 396 169 823 1 112.00 112.00 2019-10-19 22:56:00.592343 2019-10-19 22:56:00.592343 1 0.0 397 169 824 1 38.00 38.00 2019-10-19 22:56:00.61685 2019-10-19 22:56:00.61685 1 0.0 398 169 825 1 50.00 50.00 2019-10-19 22:56:00.637943 2019-10-19 22:56:00.637943 1 0.0 399 169 826 1 61.00 61.00 2019-10-19 22:56:00.65734 2019-10-19 22:56:00.65734 1 0.0 400 169 827 1 38.00 38.00 2019-10-19 22:56:00.677348 2019-10-19 22:56:00.677348 1 0.0 401 169 828 1 49.00 49.00 2019-10-19 22:56:00.698908 2019-10-19 22:56:00.698908 1 0.0 402 169 829 1 41.00 41.00 2019-10-19 22:56:00.721391 2019-10-19 22:56:00.721391 1 0.0 403 169 830 1 41.00 41.00 2019-10-19 22:56:00.747875 2019-10-19 22:56:00.747875 1 0.0 404 169 831 1 74.00 74.00 2019-10-19 22:56:00.771348 2019-10-19 22:56:00.771348 1 0.0 405 169 832 1 157.00 157.00 2019-10-19 22:56:00.797616 2019-10-19 22:56:00.797616 1 0.0 406 170 833 1 33.00 33.00 2019-10-20 00:22:09.51145 2019-10-20 00:22:09.51145 1 0.0 407 170 834 1 56.00 56.00 2019-10-20 00:22:09.532286 2019-10-20 00:22:09.532286 1 0.0 408 170 835 1 86.00 86.00 2019-10-20 00:22:09.552151 2019-10-20 00:22:09.552151 1 0.0 409 170 836 1 99.00 99.00 2019-10-20 00:22:09.572878 2019-10-20 00:22:09.572878 1 0.0 410 170 838 1 86.00 86.00 2019-10-20 00:22:09.593113 2019-10-20 00:22:09.593113 1 0.0 411 170 837 1 67.00 67.00 2019-10-20 00:22:09.613287 2019-10-20 00:22:09.613287 1 0.0 412 170 839 1 78.00 78.00 2019-10-20 00:22:09.63322 2019-10-20 00:22:09.63322 1 0.0 413 171 840 6 760.00 4560.00 2019-10-20 16:42:59.729926 2019-10-20 16:42:59.729926 1 0.0 414 172 841 2 68.00 136.00 2019-10-21 17:36:27.010946 2019-10-21 17:36:27.010946 1 0.0 415 172 842 1 48.00 48.00 2019-10-21 17:36:27.041658 2019-10-21 17:36:27.041658 1 0.0 416 172 843 2 32.00 64.00 2019-10-21 17:36:27.063568 2019-10-21 17:36:27.063568 1 0.0 417 172 844 1 161.00 161.00 2019-10-21 17:36:27.083822 2019-10-21 17:36:27.083822 1 0.0 418 172 845 2 48.00 96.00 2019-10-21 17:36:27.103706 2019-10-21 17:36:27.103706 1 0.0 419 172 846 1 26.00 26.00 2019-10-21 17:36:27.123721 2019-10-21 17:36:27.123721 1 0.0 420 172 847 1 28.00 28.00 2019-10-21 17:36:27.146519 2019-10-21 17:36:27.146519 1 0.0 421 172 848 1 23.00 23.00 2019-10-21 17:36:27.166564 2019-10-21 17:36:27.166564 1 0.0 422 172 850 1 71.00 71.00 2019-10-21 17:36:27.186847 2019-10-21 17:36:27.186847 1 0.0 423 172 851 2 38.00 76.00 2019-10-21 17:36:27.20716 2019-10-21 17:36:27.20716 1 0.0 424 172 849 2 29.00 58.00 2019-10-21 17:36:27.227288 2019-10-21 17:36:27.227288 1 0.0 425 172 852 1 23.00 23.00 2019-10-21 17:36:27.248322 2019-10-21 17:36:27.248322 1 0.0 426 172 853 1 13.00 13.00 2019-10-21 17:36:27.268647 2019-10-21 17:36:27.268647 1 0.0 427 173 854 1 949.50 949.50 2019-10-25 17:24:00.841538 2019-10-25 17:24:00.841538 1 0.0 428 173 855 3 929.50 2788.50 2019-10-25 17:24:00.869171 2019-10-25 17:24:00.869171 1 0.0 429 173 856 1 549.50 549.50 2019-10-25 17:24:00.895291 2019-10-25 17:24:00.895291 1 0.0 430 173 857 6 649.50 3897.00 2019-10-25 17:24:00.921945 2019-10-25 17:24:00.921945 1 0.0 431 173 858 2 649.50 1299.00 2019-10-25 17:24:00.94835 2019-10-25 17:24:00.94835 1 0.0 432 173 859 4 649.50 2598.00 2019-10-25 17:24:00.973628 2019-10-25 17:24:00.973628 1 0.0 433 173 860 1 364.50 364.50 2019-10-25 17:24:01.002878 2019-10-25 17:24:01.002878 1 0.0 434 173 861 2 414.50 829.00 2019-10-25 17:24:01.034206 2019-10-25 17:24:01.034206 1 0.0 435 173 862 3 399.50 1198.50 2019-10-25 17:24:01.058462 2019-10-25 17:24:01.058462 1 0.0 436 173 863 1 499.50 499.50 2019-10-25 17:24:01.083454 2019-10-25 17:24:01.083454 1 0.0 437 174 864 5 599.50 2997.50 2019-10-28 18:23:52.016035 2019-10-28 18:23:52.016035 1 0.0 438 175 865 6 530.00 3180.00 2019-10-29 01:26:04.356234 2019-10-29 01:26:04.356234 1 0.0 439 175 866 6 510.00 3060.00 2019-10-29 01:26:04.370026 2019-10-29 01:26:04.370026 1 0.0 440 175 867 6 470.00 2820.00 2019-10-29 01:26:04.382082 2019-10-29 01:26:04.382082 1 0.0 441 175 868 6 570.00 3420.00 2019-10-29 01:26:04.394493 2019-10-29 01:26:04.394493 1 0.0 442 175 869 6 530.00 3180.00 2019-10-29 01:26:04.407067 2019-10-29 01:26:04.407067 1 0.0 443 176 870 6 155.00 930.00 2019-10-29 01:36:49.084264 2019-10-29 01:36:49.084264 1 0.0 444 176 871 18 210.00 3780.00 2019-10-29 01:36:49.097167 2019-10-29 01:36:49.097167 1 0.0 445 176 872 6 275.00 1650.00 2019-10-29 01:36:49.107695 2019-10-29 01:36:49.107695 1 0.0 446 176 873 12 280.00 3360.00 2019-10-29 01:36:49.11942 2019-10-29 01:36:49.11942 1 0.0 447 176 874 12 290.00 3480.00 2019-10-29 01:36:49.130145 2019-10-29 01:36:49.130145 1 0.0 448 176 875 12 240.00 2880.00 2019-10-29 01:36:49.140554 2019-10-29 01:36:49.140554 1 0.0 449 176 877 12 400.00 4800.00 2019-10-29 01:36:49.151082 2019-10-29 01:36:49.151082 1 0.0 450 176 878 6 440.00 2640.00 2019-10-29 01:36:49.161254 2019-10-29 01:36:49.161254 1 0.0 451 176 879 6 530.00 3180.00 2019-10-29 01:36:49.171841 2019-10-29 01:36:49.171841 1 0.0 452 176 876 6 360.00 2160.00 2019-10-29 01:36:49.182337 2019-10-29 01:36:49.182337 1 0.0 453 177 880 1 380.00 380.00 2019-10-29 01:38:15.503017 2019-10-29 01:38:15.503017 1 0.0 454 178 882 6 500.00 3000.00 2019-10-29 01:42:07.897095 2019-10-29 01:42:07.897095 1 0.0 455 178 881 6 520.00 3120.00 2019-10-29 01:42:07.908259 2019-10-29 01:42:07.908259 1 0.0 456 179 883 6 415.00 2490.00 2019-10-29 01:45:27.670984 2019-10-29 01:45:27.670984 1 0.0 457 179 884 6 195.00 1170.00 2019-10-29 01:45:27.682562 2019-10-29 01:45:27.682562 1 0.0 458 179 885 6 260.00 1560.00 2019-10-29 01:45:27.692042 2019-10-29 01:45:27.692042 1 0.0 459 180 886 12 395.00 4740.00 2019-10-30 01:55:45.938941 2019-10-30 01:55:45.938941 1 0.0 460 180 887 12 395.00 4740.00 2019-10-30 01:55:45.952346 2019-10-30 01:55:45.952346 1 0.0 461 180 888 6 475.00 2850.00 2019-10-30 01:55:45.964246 2019-10-30 01:55:45.964246 1 0.0 462 180 889 12 300.00 3600.00 2019-10-30 01:55:45.977687 2019-10-30 01:55:45.977687 1 0.0 463 180 890 6 240.00 1440.00 2019-10-30 01:55:45.987575 2019-10-30 01:55:45.987575 1 0.0 464 180 891 18 300.00 5400.00 2019-10-30 01:55:45.997358 2019-10-30 01:55:45.997358 1 0.0 465 180 892 6 310.00 1860.00 2019-10-30 01:55:46.006977 2019-10-30 01:55:46.006977 1 0.0 466 180 893 18 260.00 4680.00 2019-10-30 01:55:46.016761 2019-10-30 01:55:46.016761 1 0.0 467 180 894 8 608.00 4864.00 2019-10-30 01:55:46.028294 2019-10-30 01:55:46.028294 1 0.0 468 180 895 16 646.00 10336.00 2019-10-30 01:55:46.039738 2019-10-30 01:55:46.039738 1 0.0 469 180 896 16 665.00 10640.00 2019-10-30 01:55:46.04944 2019-10-30 01:55:46.04944 1 0.0 470 180 897 16 665.00 10640.00 2019-10-30 01:55:46.059134 2019-10-30 01:55:46.059134 1 0.0 471 180 898 8 570.00 4560.00 2019-10-30 01:55:46.069456 2019-10-30 01:55:46.069456 1 0.0 472 180 899 6 649.00 3894.00 2019-10-30 01:55:46.07941 2019-10-30 01:55:46.07941 1 0.0 473 180 900 6 430.00 2580.00 2019-10-30 01:55:46.091349 2019-10-30 01:55:46.091349 1 0.0 474 180 901 6 550.00 3300.00 2019-10-30 01:55:46.103844 2019-10-30 01:55:46.103844 1 0.0 475 180 902 6 660.00 3960.00 2019-10-30 01:55:46.1145 2019-10-30 01:55:46.1145 1 0.0 476 181 903 6 440.00 2640.00 2019-10-30 02:35:16.684932 2019-10-30 02:35:16.684932 1 0.0 477 181 904 6 320.00 1920.00 2019-10-30 02:35:16.700338 2019-10-30 02:35:16.700338 1 0.0 478 182 905 4 28.00 112.00 2019-11-02 21:26:46.878221 2019-11-02 21:26:46.878221 1 0.0 479 182 906 1 22.00 22.00 2019-11-02 21:26:46.912941 2019-11-02 21:26:46.912941 1 0.0 480 182 907 2 12.00 24.00 2019-11-02 21:26:46.937783 2019-11-02 21:26:46.937783 1 0.0 481 183 908 2 7.00 14.00 2019-11-02 21:27:49.930484 2019-11-02 21:27:49.930484 1 0.0 482 184 909 1 799.50 799.50 2019-11-06 17:50:24.171404 2019-11-06 17:50:24.171404 1 0.0 483 185 880 5 380.00 1900.00 2019-11-09 18:59:47.026543 2019-11-09 18:59:47.026543 1 0.0 484 186 910 1 290.00 290.00 2019-11-09 19:17:17.212769 2019-11-09 19:17:17.212769 1 0.0 485 186 911 1 290.00 290.00 2019-11-09 19:17:17.22414 2019-11-09 19:17:17.22414 1 0.0 486 187 911 5 290.00 1450.00 2019-11-09 19:18:32.46175 2019-11-09 19:18:32.46175 1 0.0 487 187 910 5 290.00 1450.00 2019-11-09 19:18:32.475127 2019-11-09 19:18:32.475127 1 0.0 488 188 912 4 799.50 3198.00 2019-11-10 18:58:20.371042 2019-11-10 18:58:20.371042 1 0.0 489 188 717 9 1049.50 9445.50 2019-11-10 18:58:20.386424 2019-11-10 18:58:20.386424 1 0.0 490 188 864 11 599.50 6594.50 2019-11-10 18:58:20.398895 2019-11-10 18:58:20.398895 1 0.0 491 189 909 2 799.50 1599.00 2019-11-10 18:59:23.425094 2019-11-10 18:59:23.425094 1 0.0 492 190 942 2 92.13 184.26 2019-11-13 19:17:41.562349 2019-11-13 19:17:41.562349 1 0.0 493 190 940 3 149.54 448.62 2019-11-13 19:17:41.575815 2019-11-13 19:17:41.575815 1 0.0 494 190 943 1 145.00 145.00 2019-11-13 19:17:41.587592 2019-11-13 19:17:41.587592 1 0.0 495 190 913 4 96.64 386.56 2019-11-13 19:17:41.598939 2019-11-13 19:17:41.598939 1 0.0 496 190 914 2 49.79 99.58 2019-11-13 19:17:41.610155 2019-11-13 19:17:41.610155 1 0.0 497 190 915 2 153.40 306.80 2019-11-13 19:17:41.62097 2019-11-13 19:17:41.62097 1 0.0 498 190 916 1 44.00 44.00 2019-11-13 19:17:41.631855 2019-11-13 19:17:41.631855 1 0.0 499 190 917 2 53.69 107.38 2019-11-13 19:17:41.642449 2019-11-13 19:17:41.642449 1 0.0 500 190 918 1 53.69 53.69 2019-11-13 19:17:41.653027 2019-11-13 19:17:41.653027 1 0.0 501 190 919 6 40.98 245.88 2019-11-13 19:17:41.662977 2019-11-13 19:17:41.662977 1 0.0 502 190 920 2 45.49 90.98 2019-11-13 19:17:41.674482 2019-11-13 19:17:41.674482 1 0.0 503 190 921 3 57.47 172.41 2019-11-13 19:17:41.688516 2019-11-13 19:17:41.688516 1 0.0 504 190 922 2 57.47 114.94 2019-11-13 19:17:41.700422 2019-11-13 19:17:41.700422 1 0.0 505 190 923 1 176.60 176.60 2019-11-13 19:17:41.710868 2019-11-13 19:17:41.710868 1 0.0 506 190 924 1 47.03 47.03 2019-11-13 19:17:41.721714 2019-11-13 19:17:41.721714 1 0.0 507 190 925 2 135.52 271.04 2019-11-13 19:17:41.732316 2019-11-13 19:17:41.732316 1 0.0 508 190 926 3 37.53 112.59 2019-11-13 19:17:41.742579 2019-11-13 19:17:41.742579 1 0.0 509 190 927 5 37.20 186.00 2019-11-13 19:17:41.753847 2019-11-13 19:17:41.753847 1 0.0 510 190 928 7 43.64 305.48 2019-11-13 19:17:41.765622 2019-11-13 19:17:41.765622 1 0.0 511 190 929 2 34.72 69.44 2019-11-13 19:17:41.776909 2019-11-13 19:17:41.776909 1 0.0 512 190 930 3 52.53 157.59 2019-11-13 19:17:41.787644 2019-11-13 19:17:41.787644 1 0.0 513 190 931 1 52.89 52.89 2019-11-13 19:17:41.797815 2019-11-13 19:17:41.797815 1 0.0 514 190 932 2 77.27 154.54 2019-11-13 19:17:41.808603 2019-11-13 19:17:41.808603 1 0.0 515 190 933 3 56.56 169.68 2019-11-13 19:17:41.819536 2019-11-13 19:17:41.819536 1 0.0 516 190 934 3 56.56 169.68 2019-11-13 19:17:41.832255 2019-11-13 19:17:41.832255 1 0.0 517 190 935 2 32.25 64.50 2019-11-13 19:17:41.843309 2019-11-13 19:17:41.843309 1 0.0 518 190 936 3 28.70 86.10 2019-11-13 19:17:41.853056 2019-11-13 19:17:41.853056 1 0.0 519 190 937 2 145.02 290.04 2019-11-13 19:17:41.863754 2019-11-13 19:17:41.863754 1 0.0 520 190 938 1 43.54 43.54 2019-11-13 19:17:41.874502 2019-11-13 19:17:41.874502 1 0.0 521 190 941 1 104.38 104.38 2019-11-13 19:17:41.884604 2019-11-13 19:17:41.884604 1 0.0 522 191 924 1 47.03 47.03 2019-11-13 21:26:33.102852 2019-11-13 21:26:33.102852 1 0.0 523 192 916 1 44.00 44.00 2019-11-13 21:28:01.715593 2019-11-13 21:28:01.715593 1 0.0 524 193 924 1 47.03 47.03 2019-11-14 00:55:25.393615 2019-11-14 00:55:25.393615 1 0.0 525 194 800 6 170.00 1020.00 2019-11-15 17:58:01.592776 2019-11-15 17:58:01.592776 1 0.0 526 195 909 2 799.50 1599.00 2019-11-16 01:28:17.515968 2019-11-16 01:28:17.515968 1 0.0 527 196 718 2 799.50 1599.00 2019-11-16 01:32:29.697373 2019-11-16 01:36:05.102257 0 0.0 528 197 912 2 799.50 1599.00 2019-11-16 01:46:58.988836 2019-11-16 01:46:58.988836 1 0.0 529 197 717 11 1049.50 11544.50 2019-11-16 01:46:59.002456 2019-11-16 01:46:59.002456 1 0.0 530 197 864 10 599.50 5995.00 2019-11-16 01:46:59.017135 2019-11-16 01:46:59.017135 1 0.0 531 198 871 6 210.00 1260.00 2019-11-18 23:39:46.377628 2019-11-18 23:39:46.377628 1 0.0 532 199 944 6 820.00 4920.00 2019-11-18 23:57:53.50352 2019-11-18 23:57:53.50352 1 0.0 533 199 911 6 290.00 1740.00 2019-11-18 23:57:53.516278 2019-11-18 23:57:53.516278 1 0.0 534 199 945 12 920.00 11040.00 2019-11-18 23:57:53.528464 2019-11-18 23:57:53.528464 1 0.0 535 200 946 12 300.00 3600.00 2019-11-20 20:26:00.31475 2019-11-20 20:26:00.31475 1 0.0 536 200 947 6 360.00 2160.00 2019-11-20 20:26:00.336316 2019-11-20 20:26:00.336316 1 0.0 537 200 948 6 360.00 2160.00 2019-11-20 20:26:00.347144 2019-11-20 20:26:00.347144 1 0.0 538 201 949 18 200.00 3600.00 2019-11-20 20:30:21.797571 2019-11-20 20:30:21.797571 1 0.0 539 201 950 12 280.00 3360.00 2019-11-20 20:30:21.810347 2019-11-20 20:30:21.810347 1 0.0 540 202 911 6 290.00 1740.00 2019-11-20 20:48:26.345042 2019-11-20 20:48:26.345042 1 0.0 541 203 951 6 260.00 1560.00 2019-11-20 20:54:43.188187 2019-11-20 20:54:43.188187 1 0.0 542 204 952 5 849.50 4247.50 2019-11-23 17:25:17.925701 2019-11-23 17:25:17.925701 1 0.0 543 205 890 6 240.00 1440.00 2019-11-23 22:26:41.200411 2019-11-23 22:26:41.200411 1 0.0 544 206 953 2 1049.50 2099.00 2019-11-26 01:28:41.388877 2019-11-26 01:28:41.388877 1 0.0 545 207 954 24 480.00 11520.00 2019-11-26 22:35:49.608847 2019-11-26 22:35:49.608847 1 0.0 546 207 955 6 400.00 2400.00 2019-11-26 22:35:49.629971 2019-11-26 22:35:49.629971 1 0.0 547 207 956 6 350.00 2100.00 2019-11-26 22:35:49.64286 2019-11-26 22:35:49.64286 1 0.0 548 207 957 6 570.00 3420.00 2019-11-26 22:35:49.656104 2019-11-26 22:35:49.656104 1 0.0 549 208 958 12 300.00 3600.00 2019-11-26 22:44:39.467935 2019-11-26 22:44:39.467935 1 0.0 550 208 959 6 350.00 2100.00 2019-11-26 22:44:39.481897 2019-11-26 22:44:39.481897 1 0.0 551 208 960 6 350.00 2100.00 2019-11-26 22:44:39.495144 2019-11-26 22:44:39.495144 1 0.0 552 208 961 6 520.00 3120.00 2019-11-26 22:44:39.509149 2019-11-26 22:44:39.509149 1 0.0 553 209 962 6 340.00 2040.00 2019-11-26 22:48:26.205252 2019-11-26 22:48:26.205252 1 0.0 554 209 963 6 380.00 2280.00 2019-11-26 22:48:26.231857 2019-11-26 22:48:26.231857 1 0.0 555 210 964 1 899.50 899.50 2019-12-06 17:54:09.6886 2019-12-06 17:54:09.6886 1 0.0 556 210 965 2 849.50 1699.00 2019-12-06 17:54:09.71665 2019-12-06 17:54:09.71665 1 0.0 557 210 966 3 799.50 2398.50 2019-12-06 17:54:09.738587 2019-12-06 17:54:09.738587 1 0.0 558 210 717 1 1049.50 1049.50 2019-12-06 17:54:09.761141 2019-12-06 17:54:09.761141 1 0.0 559 210 703 1 799.50 799.50 2019-12-06 17:54:09.783504 2019-12-06 17:54:09.783504 1 0.0 560 211 953 1 1049.50 1049.50 2019-12-06 17:54:57.941282 2019-12-06 17:54:57.941282 1 0.0 561 212 717 2 1049.50 2099.00 2019-12-08 18:02:54.51951 2019-12-08 18:02:54.51951 1 0.0 562 212 965 3 849.50 2548.50 2019-12-08 18:02:54.574998 2019-12-08 18:02:54.574998 1 0.0 563 212 966 2 799.50 1599.00 2019-12-08 18:02:54.605719 2019-12-08 18:02:54.605719 1 0.0 564 212 659 1 849.50 849.50 2019-12-08 18:02:54.632088 2019-12-08 18:02:54.632088 1 0.0 565 212 953 1 1049.50 1049.50 2019-12-08 18:02:54.656653 2019-12-08 18:02:54.656653 1 0.0 566 213 967 1 799.50 799.50 2019-12-11 00:06:15.682148 2019-12-11 00:06:15.682148 1 0.0 567 213 689 2 799.50 1599.00 2019-12-11 00:06:15.706244 2019-12-11 00:06:15.706244 1 0.0 568 214 968 1 749.50 749.50 2019-12-21 17:57:22.465743 2019-12-21 17:57:22.465743 1 0.0 569 214 689 2 799.50 1599.00 2019-12-21 17:57:22.496526 2019-12-21 17:57:22.496526 1 0.0 570 215 953 1 1049.50 1049.50 2019-12-21 22:44:22.084862 2019-12-21 22:44:22.084862 1 0.0 571 216 514 1 239.50 239.50 2019-12-23 20:21:46.864102 2019-12-23 20:21:46.864102 1 0.0 572 217 907 10 12.00 120.00 2019-12-24 19:28:26.903036 2019-12-24 19:28:26.903036 1 0.0 573 218 969 1 439.50 439.50 2019-12-24 23:49:57.782818 2019-12-24 23:49:57.782818 1 0.0 574 219 970 3 399.50 1198.50 2020-01-07 19:08:31.290554 2020-01-07 19:08:31.290554 1 0.0 575 220 871 6 210.00 1260.00 2020-01-11 19:48:15.881818 2020-01-11 19:48:15.881818 1 0.0 576 221 732 1 200.00 200.00 2020-01-25 19:15:54.025803 2020-01-25 19:15:54.025803 1 0.0 577 222 971 1 439.50 439.50 2020-01-25 19:33:28.094566 2020-01-25 19:33:28.094566 1 0.0 578 223 898 4 570.00 2280.00 2020-01-29 02:33:55.712182 2020-01-29 02:33:55.712182 1 0.0 579 225 972 2 649.50 1299.00 2020-01-29 18:45:28.181982 2020-01-29 18:45:28.181982 1 0.0 580 226 973 5 224.50 1122.50 2020-02-05 02:22:00.24405 2020-02-05 02:22:00.24405 1 0.0 581 227 738 1 337.00 337.00 2020-02-15 17:15:06.094638 2020-02-15 17:15:06.094638 1 0.0 582 228 732 1 200.00 200.00 2020-02-15 21:30:31.880492 2020-02-15 21:30:31.880492 1 0.0 583 229 975 6 237.90 1427.40 2020-02-18 20:46:24.051166 2020-02-18 20:46:24.051166 1 0.0 584 230 976 6 658.80 3952.80 2020-02-18 20:54:31.29622 2020-02-18 20:54:31.29622 1 0.0 585 231 977 6 192.15 1152.90 2020-02-18 21:08:57.231824 2020-02-18 21:08:57.231824 1 0.0 586 232 978 6 215.02 1290.12 2020-02-18 21:12:08.30424 2020-02-18 21:12:08.30424 1 0.0 587 233 979 6 155.55 933.30 2020-02-18 21:15:05.231117 2020-02-18 21:15:05.231117 1 0.0 588 234 980 6 155.55 933.30 2020-02-18 21:18:24.57248 2020-02-18 21:18:24.57248 1 0.0 589 235 981 10 269.92 2699.20 2020-02-18 21:21:56.545635 2020-02-18 21:21:56.545635 1 0.0 590 236 982 6 448.35 2690.10 2020-02-18 23:18:15.47674 2020-02-18 23:18:15.47674 1 0.0 591 237 983 6 298.80 1792.80 2020-02-19 01:27:24.210938 2020-02-19 01:27:24.210938 1 0.0 592 237 984 6 192.15 1152.90 2020-02-19 01:27:24.247486 2020-02-19 01:27:24.247486 1 0.0 593 237 985 6 265.35 1592.10 2020-02-19 01:27:24.283996 2020-02-19 01:27:24.283996 1 0.0 594 237 986 6 420.90 2525.40 2020-02-19 01:27:24.340129 2020-02-19 01:27:24.340129 1 0.0 595 237 987 6 292.18 1753.08 2020-02-19 01:27:24.370712 2020-02-19 01:27:24.370712 1 0.0 596 237 988 6 292.18 1753.08 2020-02-19 01:27:24.400876 2020-02-19 01:27:24.400876 1 0.0 597 237 989 6 292.18 1753.08 2020-02-19 01:27:24.431647 2020-02-19 01:27:24.431647 1 0.0 598 237 963 6 380.00 2280.00 2020-02-19 01:27:24.460433 2020-02-19 01:27:24.460433 1 0.0 599 237 990 6 240.00 1440.00 2020-02-19 01:27:24.490238 2020-02-19 01:27:24.490238 1 0.0 600 237 991 6 219.16 1314.96 2020-02-19 01:27:24.519515 2020-02-19 01:27:24.519515 1 0.0 601 237 992 6 256.16 1536.96 2020-02-19 01:27:24.546462 2020-02-19 01:27:24.546462 1 0.0 602 238 552 6 239.50 1437.00 2020-02-19 01:46:34.769796 2020-02-19 01:46:34.769796 1 0.0 603 238 993 6 210.45 1262.70 2020-02-19 01:46:34.803927 2020-02-19 01:46:34.803927 1 0.0 604 238 800 6 170.00 1020.00 2020-02-19 01:46:34.832361 2020-02-19 01:46:34.832361 1 0.0 605 238 994 6 420.90 2525.40 2020-02-19 01:46:34.86127 2020-02-19 01:46:34.86127 1 0.0 606 239 995 6 709.20 4255.20 2020-02-19 01:53:08.348899 2020-02-19 01:53:08.348899 1 0.0 607 239 996 6 689.80 4138.80 2020-02-19 01:53:08.379195 2020-02-19 01:53:08.379195 1 0.0 608 240 997 6 571.00 3426.00 2020-02-19 02:37:02.741017 2020-02-19 02:37:02.741017 1 0.0 609 240 998 6 552.00 3312.00 2020-02-19 02:37:02.773137 2020-02-19 02:37:02.773137 1 0.0 610 240 999 6 334.90 2009.40 2020-02-19 02:37:02.809356 2020-02-19 02:37:02.809356 1 0.0 611 240 1000 6 285.60 1713.60 2020-02-19 02:37:02.844355 2020-02-19 02:37:02.844355 1 0.0 612 241 1001 6 256.10 1536.60 2020-02-19 02:42:02.869628 2020-02-19 02:42:02.869628 1 0.0 613 242 1002 6 237.90 1427.40 2020-02-19 02:48:47.423779 2020-02-19 02:48:47.423779 1 0.0 614 243 1003 6 265.35 1592.10 2020-02-19 21:44:25.110862 2020-02-19 21:44:25.110862 1 0.0 615 243 1004 6 192.15 1152.90 2020-02-19 21:44:25.144672 2020-02-19 21:44:25.144672 1 0.0 616 243 1005 6 192.15 1152.90 2020-02-19 21:44:25.183306 2020-02-19 21:44:25.183306 1 0.0 617 243 1006 6 201.30 1207.80 2020-02-19 21:44:25.212868 2020-02-19 21:44:25.212868 1 0.0 618 243 1007 6 237.90 1427.40 2020-02-19 21:44:25.24402 2020-02-19 21:44:25.24402 1 0.0 619 243 993 6 210.45 1262.70 2020-02-19 21:44:25.270687 2020-02-19 21:44:25.270687 1 0.0 620 243 1008 6 347.70 2086.20 2020-02-19 21:44:25.303587 2020-02-19 21:44:25.303587 1 0.0 621 243 1009 6 237.90 1427.40 2020-02-19 21:44:25.332032 2020-02-19 21:44:25.332032 1 0.0 622 243 1010 6 219.60 1317.60 2020-02-19 21:44:25.356749 2020-02-19 21:44:25.356749 1 0.0 623 243 1011 6 233.32 1399.92 2020-02-19 21:44:25.382023 2020-02-19 21:44:25.382023 1 0.0 624 243 1012 6 233.32 1399.92 2020-02-19 21:44:25.40899 2020-02-19 21:44:25.40899 1 0.0 625 243 1013 6 233.32 1399.92 2020-02-19 21:44:25.446982 2020-02-19 21:44:25.446982 1 0.0 626 243 1014 6 256.20 1537.20 2020-02-19 21:44:25.476192 2020-02-19 21:44:25.476192 1 0.0 627 243 1015 6 193.24 1159.44 2020-02-19 21:44:25.506808 2020-02-19 21:44:25.506808 1 0.0 628 243 1016 5 173.85 869.25 2020-02-19 21:44:25.53434 2020-02-19 21:44:25.53434 1 0.0 629 244 202 6 168.80 1012.80 2020-02-19 22:52:35.808316 2020-02-19 22:52:35.808316 1 0.0 630 244 1017 6 247.05 1482.30 2020-02-19 22:52:35.848523 2020-02-19 22:52:35.848523 1 0.0 631 244 1018 6 237.90 1427.40 2020-02-19 22:52:35.880638 2020-02-19 22:52:35.880638 1 0.0 632 244 1019 6 247.05 1482.30 2020-02-19 22:52:35.911283 2020-02-19 22:52:35.911283 1 0.0 633 245 1020 6 283.65 1701.90 2020-02-19 22:54:10.841768 2020-02-19 22:54:10.841768 1 0.0 634 246 1021 1 720.00 720.00 2020-02-24 23:58:50.739903 2020-02-24 23:58:50.739903 1 0.0 635 247 1022 6 340.00 2040.00 2020-02-25 00:04:50.460824 2020-02-25 00:04:50.460824 1 0.0 636 248 1023 6 330.00 1980.00 2020-02-25 00:08:09.036816 2020-02-25 00:08:09.036816 1 0.0 637 249 1024 6 360.00 2160.00 2020-02-25 00:15:16.42562 2020-02-25 00:15:16.42562 1 0.0 638 250 1025 6 360.00 2160.00 2020-02-25 00:20:56.903801 2020-02-25 00:20:56.903801 1 0.0 639 251 1026 3 33.26 99.78 2020-02-29 22:58:16.071805 2020-02-29 22:58:16.071805 1 0.0 640 252 1027 1 180.32 180.32 2020-02-29 23:07:32.505499 2020-02-29 23:07:32.505499 1 0.0 641 253 1028 1 214.55 214.55 2020-02-29 23:26:57.343476 2020-02-29 23:26:57.343476 1 0.0 642 254 1029 13 34.50 448.50 2020-02-29 23:40:19.473783 2020-02-29 23:40:19.473783 1 0.0 643 255 1030 1 157.00 157.00 2020-02-29 23:59:17.2843 2020-02-29 23:59:17.2843 1 0.0 644 256 1031 1 73.00 73.00 2020-03-01 00:04:54.566058 2020-03-01 00:04:54.566058 1 0.0 645 257 1032 3 122.00 366.00 2020-03-01 00:07:59.717094 2020-03-01 00:07:59.717094 1 0.0 646 258 1033 3 57.18 171.54 2020-03-01 00:16:09.607402 2020-03-01 00:16:09.607402 1 0.0 647 259 1038 1 182.00 182.00 2020-03-01 00:34:21.353764 2020-03-01 00:34:21.353764 1 0.0 648 260 1034 1 72.87 72.87 2020-03-01 01:03:06.284147 2020-03-01 01:03:06.284147 1 0.0 649 260 1035 1 52.23 52.23 2020-03-01 01:03:06.321375 2020-03-01 01:03:06.321375 1 0.0 650 260 1036 1 78.46 78.46 2020-03-01 01:03:06.357324 2020-03-01 01:03:06.357324 1 0.0 651 260 1037 1 48.79 48.79 2020-03-01 01:03:06.403427 2020-03-01 01:03:06.403427 1 0.0 652 260 1039 1 74.38 74.38 2020-03-01 01:03:06.44208 2020-03-01 01:03:06.44208 1 0.0 653 260 1040 1 69.64 69.64 2020-03-01 01:03:06.47613 2020-03-01 01:03:06.47613 1 0.0 654 260 1041 1 70.55 70.55 2020-03-01 01:03:06.50667 2020-03-01 01:03:06.50667 1 0.0 655 260 1042 1 56.74 56.74 2020-03-01 01:03:06.551398 2020-03-01 01:03:06.551398 1 0.0 656 260 1043 1 35.46 35.46 2020-03-01 01:03:06.579849 2020-03-01 01:03:06.579849 1 0.0 657 260 1044 1 63.62 63.62 2020-03-01 01:03:06.610611 2020-03-01 01:03:06.610611 1 0.0 658 260 1045 1 53.30 53.30 2020-03-01 01:03:06.658193 2020-03-01 01:03:06.658193 1 0.0 659 261 1047 4 58.00 232.00 2020-03-01 01:12:22.05404 2020-03-01 01:12:22.05404 1 0.0 660 262 1053 2 51.00 102.00 2020-03-01 01:33:24.024089 2020-03-01 01:33:24.024089 1 0.0 661 263 1057 1 289.16 289.16 2020-03-01 01:40:48.614032 2020-03-01 01:40:48.614032 1 0.0 662 264 1046 1 67.28 78.04 2020-03-01 01:42:29.60108 2020-03-01 01:42:29.60108 1 10.76 663 264 1048 1 108.00 108.00 2020-03-01 01:42:29.629638 2020-03-01 01:42:29.629638 1 0.0 664 264 1049 1 67.32 67.32 2020-03-01 01:42:29.66145 2020-03-01 01:42:29.66145 1 0.0 665 264 1050 1 36.00 36.00 2020-03-01 01:42:29.690106 2020-03-01 01:42:29.690106 1 0.0 666 264 1051 1 82.00 82.00 2020-03-01 01:42:29.717211 2020-03-01 01:42:29.717211 1 0.0 667 264 1052 1 86.00 86.00 2020-03-01 01:42:29.743692 2020-03-01 01:42:29.743692 1 0.0 668 264 1054 1 53.00 53.00 2020-03-01 01:42:29.777109 2020-03-01 01:42:29.777109 1 0.0 669 264 1055 1 63.00 63.00 2020-03-01 01:42:29.816269 2020-03-01 01:42:29.816269 1 0.0 670 264 1056 3 86.46 259.38 2020-03-01 01:42:29.843238 2020-03-01 01:42:29.843238 1 0.0 671 266 1059 1 251.54 251.54 2020-03-01 01:44:56.544738 2020-03-01 01:44:56.544738 1 0.0 672 267 1062 1 275.00 275.00 2020-03-01 01:48:35.622975 2020-03-01 01:48:35.622975 1 0.0 673 268 1064 1 247.00 247.00 2020-03-01 01:52:50.943607 2020-03-01 01:52:50.943607 1 0.0 674 269 1065 1 50.00 50.00 2020-03-01 01:56:35.72368 2020-03-01 01:56:35.72368 1 0.0 675 270 1067 1 115.00 115.00 2020-03-01 02:09:38.882356 2020-03-01 02:09:38.882356 1 0.0 676 270 1072 1 140.00 140.00 2020-03-01 02:09:38.914278 2020-03-01 02:09:38.914278 1 0.0 677 271 1075 1 72.00 72.00 2020-03-01 02:13:13.016849 2020-03-01 02:13:13.016849 1 0.0 678 272 1077 3 47.00 141.00 2020-03-01 02:15:35.53795 2020-03-01 02:15:35.53795 1 0.0 679 273 1079 2 57.00 114.00 2020-03-01 02:20:44.367978 2020-03-01 02:20:44.367978 1 0.0 680 274 1082 2 66.00 132.00 2020-03-01 02:24:43.196764 2020-03-01 02:24:43.196764 1 0.0 681 275 1081 1 45.78 45.78 2020-03-01 02:38:38.675005 2020-03-01 02:38:38.675005 1 0.0 682 275 1083 1 75.24 75.24 2020-03-01 02:38:38.704426 2020-03-01 02:38:38.704426 1 0.0 683 275 1080 2 133.00 266.00 2020-03-01 02:38:38.742766 2020-03-01 02:38:38.742766 1 0.0 684 275 1084 1 58.68 58.68 2020-03-01 02:38:38.773069 2020-03-01 02:38:38.773069 1 0.0 685 275 1085 1 65.56 65.56 2020-03-01 02:38:38.798712 2020-03-01 02:38:38.798712 1 0.0 686 275 1086 2 129.84 259.68 2020-03-01 02:38:38.827006 2020-03-01 02:38:38.827006 1 0.0 687 275 1087 1 57.60 57.60 2020-03-01 02:38:38.858564 2020-03-01 02:38:38.858564 1 0.0 688 275 1088 1 52.39 52.39 2020-03-01 02:38:38.887241 2020-03-01 02:38:38.887241 1 0.0 689 275 1058 1 80.39 80.39 2020-03-01 02:38:38.917556 2020-03-01 02:38:38.917556 1 0.0 690 275 1060 1 65.93 65.93 2020-03-01 02:38:38.947969 2020-03-01 02:38:38.947969 1 0.0 691 275 1061 1 83.49 83.49 2020-03-01 02:38:38.97891 2020-03-01 02:38:38.97891 1 0.0 692 275 1063 1 64.71 64.71 2020-03-01 02:38:39.01355 2020-03-01 02:38:39.01355 1 0.0 693 275 814 1 82.00 82.00 2020-03-01 02:38:39.046382 2020-03-01 02:38:39.046382 1 0.0 694 275 1066 3 65.15 195.45 2020-03-01 02:38:39.079725 2020-03-01 02:38:39.079725 1 0.0 695 275 1068 1 42.25 42.25 2020-03-01 02:38:39.116814 2020-03-01 02:38:39.116814 1 0.0 696 275 1069 1 63.62 63.62 2020-03-01 02:38:39.14547 2020-03-01 02:38:39.14547 1 0.0 697 275 1070 1 51.55 51.55 2020-03-01 02:38:39.172354 2020-03-01 02:38:39.172354 1 0.0 698 275 1071 1 63.43 63.43 2020-03-01 02:38:39.19917 2020-03-01 02:38:39.19917 1 0.0 699 275 1073 1 70.50 70.50 2020-03-01 02:38:39.228719 2020-03-01 02:38:39.228719 1 0.0 700 275 1074 1 80.40 80.40 2020-03-01 02:38:39.26625 2020-03-01 02:38:39.26625 1 0.0 701 275 1076 1 75.45 75.45 2020-03-01 02:38:39.293138 2020-03-01 02:38:39.293138 1 0.0 702 275 1078 1 59.54 59.54 2020-03-01 02:38:39.319116 2020-03-01 02:38:39.319116 1 0.0 703 276 1089 1 61.90 61.90 2020-03-02 23:44:47.046834 2020-03-02 23:44:47.046834 1 0.0 704 277 1090 2 63.90 127.80 2020-03-02 23:50:45.031088 2020-03-02 23:50:45.031088 1 0.0 705 278 1091 2 180.00 360.00 2020-03-02 23:56:02.825227 2020-03-02 23:56:02.825227 1 0.0 706 279 1092 2 51.00 102.00 2020-03-03 00:00:37.664351 2020-03-03 00:00:37.664351 1 0.0 707 280 1093 2 45.72 91.44 2020-03-13 02:39:11.952834 2020-03-13 02:39:11.952834 1 0.0 708 281 1094 1 228.00 228.00 2020-03-14 20:05:29.253129 2020-03-14 20:05:29.253129 1 0.0 709 281 1095 1 41.00 41.00 2020-03-14 20:05:29.283064 2020-03-14 20:05:29.283064 1 0.0 710 282 1096 4 22.00 88.00 2020-03-14 20:15:58.492503 2020-03-14 20:15:58.492503 1 0.0 711 283 1097 2 33.00 66.00 2020-03-14 20:22:51.8875 2020-03-14 20:22:51.8875 1 0.0 712 284 1098 1 127.00 127.00 2020-03-14 20:32:00.495965 2020-03-14 20:32:00.495965 1 0.0 713 285 1099 2 34.00 68.00 2020-03-14 20:53:18.599287 2020-03-14 20:53:18.599287 1 0.0 714 286 1100 2 41.00 82.00 2020-03-14 20:57:31.416444 2020-03-14 20:57:31.416444 1 0.0 715 287 1101 4 40.00 160.00 2020-03-15 00:05:02.312794 2020-03-15 00:05:02.312794 1 0.0 716 288 1102 1 70.00 70.00 2020-03-15 00:46:41.562905 2020-03-15 00:46:41.562905 1 0.0 717 289 1103 1 36.00 36.00 2020-03-15 00:49:29.439094 2020-03-15 00:49:29.439094 1 0.0 718 290 1104 1 15.00 15.00 2020-03-15 00:50:34.925305 2020-03-15 00:50:34.925305 1 0.0 719 291 1034 2 72.87 145.74 2020-03-16 20:34:04.9831 2020-03-16 20:34:04.9831 1 0.0 720 291 1105 1 183.01 183.01 2020-03-16 20:34:05.024552 2020-03-16 20:34:05.024552 1 0.0 721 291 1106 1 62.01 62.01 2020-03-16 20:34:05.053285 2020-03-16 20:34:05.053285 1 0.0 722 291 1107 1 158.88 158.88 2020-03-16 20:34:05.082929 2020-03-16 20:34:05.082929 1 0.0 723 291 1108 1 133.51 133.51 2020-03-16 20:34:05.109103 2020-03-16 20:34:05.109103 1 0.0 724 291 1109 2 60.52 121.04 2020-03-16 20:34:05.136139 2020-03-16 20:34:05.136139 1 0.0 725 291 1110 1 150.28 150.28 2020-03-16 20:34:05.164055 2020-03-16 20:34:05.164055 1 0.0 726 291 1111 1 27.72 27.72 2020-03-16 20:34:05.190408 2020-03-16 20:34:05.190408 1 0.0 727 291 1112 1 55.25 55.25 2020-03-16 20:34:05.216394 2020-03-16 20:34:05.216394 1 0.0 728 291 1113 1 79.12 79.12 2020-03-16 20:34:05.241995 2020-03-16 20:34:05.241995 1 0.0 729 291 1114 1 41.93 41.93 2020-03-16 20:34:05.268776 2020-03-16 20:34:05.268776 1 0.0 730 291 1115 1 58.27 58.27 2020-03-16 20:34:05.295956 2020-03-16 20:34:05.295956 1 0.0 731 291 1116 1 26.23 26.23 2020-03-16 20:34:05.322253 2020-03-16 20:34:05.322253 1 0.0 732 292 1117 6 799.50 4797.00 2020-03-17 18:31:38.79319 2020-03-17 18:35:24.708881 0 0.0 733 293 1118 7 799.50 5596.50 2020-03-17 18:38:33.478122 2020-03-17 18:38:33.478122 1 0.0 734 294 1120 1 1449.50 1449.50 2020-04-30 22:33:05.275379 2020-04-30 22:33:05.275379 1 0.0 735 295 1121 2 849.50 1699.00 2020-05-03 23:55:58.711464 2020-05-03 23:55:58.711464 1 0.0 736 296 1122 3 799.50 2398.50 2020-05-04 00:24:01.514839 2020-05-04 00:24:01.514839 1 0.0 737 297 1123 1 749.50 749.50 2020-05-04 00:27:58.86517 2020-05-04 00:27:58.86517 1 0.0 738 297 1124 1 749.50 749.50 2020-05-04 00:27:58.897913 2020-05-04 00:27:58.897913 1 0.0 739 298 1125 1 999.50 999.50 2020-05-04 00:39:50.692405 2020-05-04 00:39:50.692405 1 0.0 740 299 1126 4 749.50 2998.00 2020-05-04 00:45:12.469436 2020-05-04 00:45:12.469436 1 0.0 741 300 1127 1 899.50 899.50 2020-05-04 00:50:29.956265 2020-05-04 00:50:29.956265 1 0.0 742 301 1128 1 1099.50 1099.50 2020-05-14 20:52:42.580918 2020-05-14 20:52:42.580918 1 0.0 743 302 1129 1 699.50 699.50 2020-05-14 20:53:24.984439 2020-05-14 20:53:24.984439 1 0.0 744 303 1118 6 799.50 4797.00 2020-06-25 21:30:28.986893 2020-06-25 21:30:28.986893 1 0.0 745 304 1130 3 749.50 2248.50 2020-07-04 22:15:46.297919 2020-07-04 22:15:46.297919 1 0.0 746 304 1131 1 799.50 799.50 2020-07-04 22:15:46.323812 2020-07-04 22:15:46.323812 1 0.0 747 304 1132 1 699.50 699.50 2020-07-04 22:15:46.348794 2020-07-04 22:15:46.348794 1 0.0 748 304 1133 2 849.50 1699.00 2020-07-04 22:15:46.388298 2020-07-04 22:15:46.388298 1 0.0 749 304 1134 1 799.50 799.50 2020-07-04 22:15:46.422201 2020-07-04 22:15:46.422201 1 0.0 750 304 1135 1 799.50 799.50 2020-07-04 22:15:46.449307 2020-07-04 22:15:46.449307 1 0.0 751 304 1136 1 849.50 849.50 2020-07-04 22:15:46.480674 2020-07-04 22:15:46.480674 1 0.0 752 304 1137 1 949.50 949.50 2020-07-04 22:15:46.510474 2020-07-04 22:15:46.510474 1 0.0 753 304 1138 2 499.50 999.00 2020-07-04 22:15:46.535301 2020-07-04 22:15:46.535301 1 0.0 754 304 1139 1 649.50 649.50 2020-07-04 22:15:46.55999 2020-07-04 22:15:46.55999 1 0.0 755 304 1140 1 949.50 949.50 2020-07-04 22:15:46.583963 2020-07-04 22:15:46.583963 1 0.0 756 304 1141 1 799.50 799.50 2020-07-04 22:15:46.608786 2020-07-04 22:15:46.608786 1 0.0 757 304 1143 1 499.50 499.50 2020-07-04 22:15:46.633681 2020-07-04 22:15:46.633681 1 0.0 758 304 1144 1 649.50 649.50 2020-07-04 22:15:46.662492 2020-07-04 22:15:46.662492 1 0.0 759 304 1145 2 899.50 1799.00 2020-07-04 22:15:46.692946 2020-07-04 22:15:46.692946 1 0.0 760 304 1142 2 999.50 1999.00 2020-07-04 22:15:46.720408 2020-07-04 22:15:46.720408 1 0.0 761 304 1146 1 999.50 999.50 2020-07-04 22:15:46.753848 2020-07-04 22:15:46.753848 1 0.0 762 305 1147 2 249.50 499.00 2020-07-04 23:23:34.003823 2020-07-04 23:23:34.003823 1 0.0 763 306 1146 2 999.50 1999.00 2020-07-04 23:30:24.059374 2020-07-04 23:30:24.059374 1 0.0 764 306 1148 1 699.50 699.50 2020-07-04 23:30:24.09039 2020-07-04 23:30:24.09039 1 0.0 765 306 1149 1 749.50 749.50 2020-07-04 23:30:24.117628 2020-07-04 23:30:24.117628 1 0.0 766 306 1118 3 799.50 2398.50 2020-07-04 23:30:24.144759 2020-07-04 23:30:24.144759 1 0.0 767 306 1150 1 949.50 949.50 2020-07-04 23:30:24.172308 2020-07-04 23:30:24.172308 1 0.0 768 307 1151 1 424.50 424.50 2020-07-04 23:37:38.854065 2020-07-04 23:37:38.854065 1 0.0 769 308 1126 6 749.50 4497.00 2020-07-13 20:03:01.551531 2020-07-13 20:03:01.551531 1 0.0 770 309 1152 1 699.50 699.50 2020-07-13 21:13:35.579102 2020-07-13 21:13:35.579102 1 0.0 771 309 1153 1 274.50 274.50 2020-07-13 21:13:35.608726 2020-07-13 21:13:35.608726 1 0.0 772 310 1154 1 60.00 60.00 2020-07-13 23:23:34.325342 2020-07-13 23:23:34.325342 1 0.0 773 311 1126 7 749.50 5246.50 2020-07-15 19:18:14.799602 2020-07-15 19:18:14.799602 1 0.0 774 312 1118 1 799.50 799.50 2020-07-15 19:18:35.290028 2020-07-15 19:18:35.290028 1 0.0 775 313 1152 1 699.50 699.50 2020-07-15 20:14:15.669163 2020-07-15 20:14:15.669163 1 0.0 776 314 1155 1 749.50 749.50 2020-07-15 23:49:17.162431 2020-07-15 23:49:17.162431 1 0.0 777 315 1156 1 399.00 399.00 2020-07-17 18:54:27.583863 2020-07-17 18:54:27.583863 1 0.0 778 316 1157 1 399.00 399.00 2020-07-17 19:49:31.779403 2020-07-17 19:49:31.779403 1 0.0 779 316 1158 1 499.00 499.00 2020-07-17 19:49:31.804886 2020-07-17 19:49:31.804886 1 0.0 780 317 1126 6 749.50 4497.00 2020-07-28 21:49:36.006994 2020-07-28 21:49:36.006994 1 0.0 781 318 1159 5 749.50 3747.50 2020-07-29 19:48:27.447437 2020-07-29 19:48:27.447437 1 0.0 782 318 1160 1 349.50 349.50 2020-07-29 19:48:27.486749 2020-07-29 19:48:27.486749 1 0.0 783 318 1161 1 449.50 449.50 2020-07-29 19:48:27.512941 2020-07-29 19:48:27.512941 1 0.0 784 318 1157 1 399.00 399.00 2020-07-29 19:48:27.537204 2020-07-29 19:48:27.537204 1 0.0 785 318 1162 1 449.50 449.50 2020-07-29 19:48:27.565896 2020-07-29 19:48:27.565896 1 0.0 786 318 1163 1 449.50 449.50 2020-07-29 19:48:27.591646 2020-07-29 19:48:27.591646 1 0.0 787 319 1165 1 399.50 399.50 2020-07-29 20:08:43.709572 2020-07-29 20:08:43.709572 1 0.0 788 319 1164 2 449.50 899.00 2020-07-29 20:08:43.741467 2020-07-29 20:08:43.741467 1 0.0 789 320 1148 1 699.50 699.50 2020-07-29 20:10:07.206028 2020-07-29 20:10:07.206028 1 0.0 790 321 1148 1 699.50 699.50 2020-07-29 20:10:39.56575 2020-07-29 20:10:39.56575 1 0.0 791 322 1166 1 1099.50 1099.50 2020-07-31 22:31:44.432956 2020-07-31 22:31:44.432956 1 0.0 792 323 1126 19 749.50 14240.50 2020-08-03 19:18:18.261478 2020-08-03 19:18:18.261478 1 0.0 793 324 1118 11 799.50 8794.50 2020-08-03 19:19:11.474561 2020-08-03 19:19:11.474561 1 0.0 794 325 1118 8 799.50 6396.00 2020-08-03 19:46:16.4705 2020-08-03 19:46:16.4705 1 0.0 795 325 1126 10 749.50 7495.00 2020-08-03 19:46:16.49455 2020-08-03 19:46:16.49455 1 0.0 796 326 1167 1 899.50 899.50 2020-08-03 19:55:21.429945 2020-08-03 19:55:21.429945 1 0.0 797 326 1168 2 749.50 1499.00 2020-08-03 19:55:21.453469 2020-08-03 19:55:21.453469 1 0.0 798 326 1169 1 549.50 549.50 2020-08-03 19:55:21.476706 2020-08-03 19:55:21.476706 1 0.0 799 326 1170 1 749.50 749.50 2020-08-03 19:55:21.50002 2020-08-03 19:55:21.50002 1 0.0 800 326 1171 1 699.50 699.50 2020-08-03 19:55:21.522558 2020-08-03 19:55:21.522558 1 0.0 801 326 1172 1 649.50 649.50 2020-08-03 19:55:21.545625 2020-08-03 19:55:21.545625 1 0.0 802 326 1173 1 399.50 399.50 2020-08-03 19:55:21.569939 2020-08-03 19:55:21.569939 1 0.0 803 327 1168 1 749.50 749.50 2020-08-03 20:10:53.513707 2020-08-03 20:10:53.513707 1 0.0 804 327 1174 1 299.50 299.50 2020-08-03 20:10:53.547446 2020-08-03 20:10:53.547446 1 0.0 805 327 1175 1 224.50 224.50 2020-08-03 20:10:53.5746 2020-08-03 20:10:53.5746 1 0.0 806 327 1176 1 399.50 399.50 2020-08-03 20:10:53.601979 2020-08-03 20:10:53.601979 1 0.0 807 327 1173 1 399.50 399.50 2020-08-03 20:10:53.631872 2020-08-03 20:10:53.631872 1 0.0 808 327 1173 1 399.50 399.50 2020-08-03 20:10:53.666917 2020-08-03 20:10:53.666917 1 0.0 809 328 1177 1 324.50 324.50 2020-08-07 20:14:49.145809 2020-08-07 20:14:49.145809 1 0.0 810 328 1148 1 699.50 699.50 2020-08-07 20:14:49.171578 2020-08-07 20:14:49.171578 1 0.0 811 328 1179 1 599.50 599.50 2020-08-07 20:14:49.195255 2020-08-07 20:14:49.195255 1 0.0 812 328 1178 2 949.50 1899.00 2020-08-07 20:14:49.219957 2020-08-07 20:14:49.219957 1 0.0 813 328 1180 1 899.50 899.50 2020-08-07 20:14:49.248716 2020-08-07 20:14:49.248716 1 0.0 814 328 1181 1 749.50 749.50 2020-08-07 20:14:49.27471 2020-08-07 20:14:49.27471 1 0.0 815 328 1183 1 949.50 949.50 2020-08-07 20:14:49.299378 2020-08-07 20:14:49.299378 1 0.0 816 328 1182 2 899.50 1799.00 2020-08-07 20:14:49.331208 2020-08-07 20:14:49.331208 1 0.0 817 328 1184 2 849.50 1699.00 2020-08-07 20:14:49.356295 2020-08-07 20:14:49.356295 1 0.0 818 328 1185 1 799.50 799.50 2020-08-07 20:14:49.382911 2020-08-07 20:14:49.382911 1 0.0 819 328 1186 1 224.50 224.50 2020-08-07 20:14:49.405677 2020-08-07 20:14:49.405677 1 0.0 820 328 1187 1 299.50 299.50 2020-08-07 20:14:49.430055 2020-08-07 20:14:49.430055 1 0.0 821 329 1188 2 449.50 899.00 2020-08-07 21:16:23.130699 2020-08-07 21:16:23.130699 1 0.0 822 329 1190 1 399.50 399.50 2020-08-07 21:16:23.160282 2020-08-07 21:16:23.160282 1 0.0 823 329 1189 2 399.50 799.00 2020-08-07 21:16:23.19381 2020-08-07 21:16:23.19381 1 0.0 824 330 1191 1 649.50 649.50 2020-08-07 21:35:04.818724 2020-08-07 21:35:04.818724 1 0.0 825 331 1148 1 699.50 699.50 2020-08-07 21:52:06.299208 2020-08-07 21:52:06.299208 1 0.0 826 331 1184 1 849.50 849.50 2020-08-07 21:52:06.319685 2020-08-07 21:52:06.319685 1 0.0 827 331 1180 1 899.50 899.50 2020-08-07 21:52:06.333316 2020-08-07 21:52:06.333316 1 0.0 828 331 1185 1 799.50 799.50 2020-08-07 21:52:06.346831 2020-08-07 21:52:06.346831 1 0.0 829 331 1181 1 749.50 749.50 2020-08-07 21:52:06.359948 2020-08-07 21:52:06.359948 1 0.0 830 332 1192 1 549.50 549.50 2020-08-08 00:57:02.164761 2020-08-08 00:57:02.164761 1 0.0 831 333 1180 1 899.50 899.50 2020-08-13 19:06:58.654625 2020-08-13 19:06:58.654625 1 0.0 832 333 1149 1 749.50 749.50 2020-08-13 19:06:58.698981 2020-08-13 19:06:58.698981 1 0.0 833 333 1193 1 649.50 649.50 2020-08-13 19:06:58.753022 2020-08-13 19:06:58.753022 1 0.0 834 333 1194 1 749.50 749.50 2020-08-13 19:06:58.778842 2020-08-13 19:06:58.778842 1 0.0 835 334 1118 4 799.50 3198.00 2020-08-13 19:28:20.614195 2020-08-13 19:28:20.614195 1 0.0 836 334 1126 6 749.50 4497.00 2020-08-13 19:28:20.646173 2020-08-13 19:28:20.646173 1 0.0 837 334 1159 3 749.50 2248.50 2020-08-13 19:28:20.672469 2020-08-13 19:28:20.672469 1 0.0 838 334 1195 1 849.50 849.50 2020-08-13 19:28:20.700848 2020-08-13 19:28:20.700848 1 0.0 839 335 1196 2 125.50 251.00 2020-08-14 05:22:50.325748 2020-08-14 05:22:50.325748 1 0.0 840 335 1197 2 43.97 87.94 2020-08-14 05:22:50.368384 2020-08-14 05:22:50.368384 1 0.0 841 335 1198 2 89.66 179.32 2020-08-14 05:22:50.394814 2020-08-14 05:22:50.394814 1 0.0 842 335 1199 1 33.44 33.44 2020-08-14 05:22:50.420987 2020-08-14 05:22:50.420987 1 0.0 843 335 1200 1 55.79 55.79 2020-08-14 05:22:50.444758 2020-08-14 05:22:50.444758 1 0.0 844 335 1201 1 45.89 45.89 2020-08-14 05:22:50.468479 2020-08-14 05:22:50.468479 1 0.0 845 335 1202 2 40.61 81.22 2020-08-14 05:22:50.492345 2020-08-14 05:22:50.492345 1 0.0 846 335 1203 1 54.17 54.17 2020-08-14 05:22:50.514921 2020-08-14 05:22:50.514921 1 0.0 847 335 1204 1 85.63 85.63 2020-08-14 05:22:50.538884 2020-08-14 05:22:50.538884 1 0.0 848 335 1205 1 72.00 72.00 2020-08-14 05:22:50.561941 2020-08-14 05:22:50.561941 1 0.0 849 335 1206 1 54.58 54.58 2020-08-14 05:22:50.586688 2020-08-14 05:22:50.586688 1 0.0 850 335 1207 1 274.00 274.00 2020-08-14 05:22:50.609563 2020-08-14 05:22:50.609563 1 0.0 851 335 1209 2 45.89 91.78 2020-08-14 05:22:50.63176 2020-08-14 05:22:50.63176 1 0.0 852 335 1210 1 48.89 48.89 2020-08-14 05:22:50.654359 2020-08-14 05:22:50.654359 1 0.0 853 335 1208 3 42.73 128.19 2020-08-14 05:22:50.676625 2020-08-14 05:22:50.676625 1 0.0 854 335 1211 1 49.55 49.55 2020-08-14 05:22:50.699027 2020-08-14 05:22:50.699027 1 0.0 855 336 1210 1 48.89 48.89 2020-08-14 05:43:12.768109 2020-08-14 05:43:12.768109 1 0.0 856 337 1208 2 42.73 85.46 2020-08-14 19:33:48.488911 2020-08-14 19:33:48.488911 1 0.0 857 337 1196 1 125.50 125.50 2020-08-14 19:33:48.519933 2020-08-14 19:33:48.519933 1 0.0 858 337 1204 1 85.63 85.63 2020-08-14 19:33:48.549413 2020-08-14 19:33:48.549413 1 0.0 859 337 1202 1 40.61 40.61 2020-08-14 19:33:48.577837 2020-08-14 19:33:48.577837 1 0.0 860 337 1200 1 55.79 55.79 2020-08-14 19:33:48.607252 2020-08-14 19:33:48.607252 1 0.0 861 337 1203 1 54.17 54.17 2020-08-14 19:33:48.637078 2020-08-14 19:33:48.637078 1 0.0 862 337 1199 2 33.44 66.88 2020-08-14 19:33:48.668013 2020-08-14 19:33:48.668013 1 0.0 863 337 1210 1 48.89 48.89 2020-08-14 19:33:48.696103 2020-08-14 19:33:48.696103 1 0.0 864 337 1209 2 45.89 91.78 2020-08-14 19:33:48.728014 2020-08-14 19:33:48.728014 1 0.0 865 337 1206 2 54.58 109.16 2020-08-14 19:33:48.756106 2020-08-14 19:33:48.756106 1 0.0 866 337 1207 1 274.00 274.00 2020-08-14 19:33:48.784744 2020-08-14 19:33:48.784744 1 0.0 867 338 1212 1 81.89 81.89 2020-08-14 20:13:05.804038 2020-08-14 20:13:05.804038 1 0.0 868 338 1213 1 52.03 52.03 2020-08-14 20:13:05.831442 2020-08-14 20:13:05.831442 1 0.0 869 338 1214 1 146.78 146.78 2020-08-14 20:13:05.857248 2020-08-14 20:13:05.857248 1 0.0 870 338 1215 1 50.24 50.24 2020-08-14 20:13:05.892112 2020-08-14 20:13:05.892112 1 0.0 871 338 1216 1 293.00 293.00 2020-08-14 20:13:05.923116 2020-08-14 20:13:05.923116 1 0.0 872 338 1217 1 53.04 53.04 2020-08-14 20:13:05.950912 2020-08-14 20:13:05.950912 1 0.0 873 339 1215 2 50.24 100.48 2020-08-14 20:15:43.139557 2020-08-14 20:15:43.139557 1 0.0 874 340 1213 1 52.03 52.03 2020-08-14 20:19:37.728103 2020-08-14 20:19:37.728103 1 0.0 875 341 851 1 38.00 38.00 2020-08-14 20:56:43.628405 2020-08-14 20:56:59.72095 0 0.0 876 342 1217 1 53.04 53.04 2020-08-14 20:57:25.050891 2020-08-14 20:57:25.050891 1 0.0 877 343 1218 1 98.17 98.17 2020-08-14 21:02:03.65578 2020-08-14 21:02:03.65578 1 0.0 878 344 1219 2 43.64 87.28 2020-08-14 22:51:27.973813 2020-08-14 22:51:27.973813 1 0.0 879 344 1220 2 78.43 156.86 2020-08-14 22:51:28.000736 2020-08-14 22:51:28.000736 1 0.0 880 344 1221 1 49.12 49.12 2020-08-14 22:51:28.029424 2020-08-14 22:51:28.029424 1 0.0 881 344 1222 1 68.49 68.49 2020-08-14 22:51:28.061743 2020-08-14 22:51:28.061743 1 0.0 882 344 1223 1 122.93 122.93 2020-08-14 22:51:28.094483 2020-08-14 22:51:28.094483 1 0.0 883 344 1224 2 68.61 137.22 2020-08-14 22:51:28.123684 2020-08-14 22:51:28.123684 1 0.0 884 344 1225 3 68.61 205.83 2020-08-14 22:51:28.157078 2020-08-14 22:51:28.157078 1 0.0 885 344 1226 2 41.28 82.56 2020-08-14 22:51:28.191758 2020-08-14 22:51:28.191758 1 0.0 886 344 1227 1 239.74 239.74 2020-08-14 22:51:28.225866 2020-08-14 22:51:28.225866 1 0.0 887 344 1228 1 56.73 56.73 2020-08-14 22:51:28.253816 2020-08-14 22:51:28.253816 1 0.0 888 344 1229 1 94.37 94.37 2020-08-14 22:51:28.281547 2020-08-14 22:51:28.281547 1 0.0 889 344 1230 3 54.03 162.09 2020-08-14 22:51:28.310001 2020-08-14 22:51:28.310001 1 0.0 890 344 1231 2 45.55 91.10 2020-08-14 22:51:28.33577 2020-08-14 22:51:28.33577 1 0.0 891 345 1227 1 239.74 239.74 2020-08-14 23:35:48.358502 2020-08-14 23:35:48.358502 1 0.0 892 345 1232 2 122.37 244.74 2020-08-14 23:35:48.3837 2020-08-14 23:35:48.3837 1 0.0 893 345 1233 1 72.86 72.86 2020-08-14 23:35:48.409627 2020-08-14 23:35:48.409627 1 0.0 894 345 1234 1 42.85 42.85 2020-08-14 23:35:48.435523 2020-08-14 23:35:48.435523 1 0.0 895 345 1235 1 72.86 72.86 2020-08-14 23:35:48.461297 2020-08-14 23:35:48.461297 1 0.0 896 345 1236 2 122.93 245.86 2020-08-14 23:35:48.48593 2020-08-14 23:35:48.48593 1 0.0 897 345 1237 1 146.78 146.78 2020-08-14 23:35:48.513291 2020-08-14 23:35:48.513291 1 0.0 898 345 1238 1 159.77 159.77 2020-08-14 23:35:48.551749 2020-08-14 23:35:48.551749 1 0.0 899 345 1239 1 44.86 44.86 2020-08-14 23:35:48.583847 2020-08-14 23:35:48.583847 1 0.0 900 345 1240 1 86.75 86.75 2020-08-14 23:35:48.612977 2020-08-14 23:35:48.612977 1 0.0 901 345 1241 1 78.24 78.24 2020-08-14 23:35:48.652288 2020-08-14 23:35:48.652288 1 0.0 902 345 1242 1 45.31 45.31 2020-08-14 23:35:48.686588 2020-08-14 23:35:48.686588 1 0.0 903 347 1237 1 146.78 146.78 2020-08-14 23:45:29.57193 2020-08-14 23:45:29.57193 1 0.0 904 347 1227 1 239.74 239.74 2020-08-14 23:45:29.599758 2020-08-14 23:45:29.599758 1 0.0 905 348 1225 2 68.61 137.22 2020-08-15 00:14:02.920313 2020-08-15 00:14:02.920313 1 0.0 906 348 1238 2 159.77 319.54 2020-08-15 00:14:02.95067 2020-08-15 00:14:02.95067 1 0.0 907 348 1233 1 72.86 72.86 2020-08-15 00:14:02.978446 2020-08-15 00:14:02.978446 1 0.0 908 348 1240 1 86.75 86.75 2020-08-15 00:14:03.007819 2020-08-15 00:14:03.007819 1 0.0 909 348 1234 2 42.85 85.70 2020-08-15 00:14:03.036749 2020-08-15 00:14:03.036749 1 0.0 910 348 1232 2 122.37 244.74 2020-08-15 00:14:03.066937 2020-08-15 00:14:03.066937 1 0.0 911 348 1229 2 94.37 188.74 2020-08-15 00:14:03.101769 2020-08-15 00:14:03.101769 1 0.0 912 348 1237 2 146.78 293.56 2020-08-15 00:14:03.13044 2020-08-15 00:14:03.13044 1 0.0 913 348 1242 3 45.31 135.93 2020-08-15 00:14:03.159825 2020-08-15 00:14:03.159825 1 0.0 914 348 1239 1 44.86 44.86 2020-08-15 00:14:03.189226 2020-08-15 00:14:03.189226 1 0.0 915 348 1224 2 68.61 137.22 2020-08-15 00:14:03.217447 2020-08-15 00:14:03.217447 1 0.0 916 348 1221 2 49.12 98.24 2020-08-15 00:14:03.248726 2020-08-15 00:14:03.248726 1 0.0 917 348 1230 4 54.03 216.12 2020-08-15 00:14:03.275098 2020-08-15 00:14:03.275098 1 0.0 918 348 1236 2 122.93 245.86 2020-08-15 00:14:03.302089 2020-08-15 00:14:03.302089 1 0.0 919 349 1243 2 54.27 108.54 2020-08-15 00:28:07.727237 2020-08-15 00:28:07.727237 1 0.0 920 349 1244 2 48.24 96.48 2020-08-15 00:28:07.751673 2020-08-15 00:28:07.751673 1 0.0 921 349 1245 1 308.29 308.29 2020-08-15 00:28:07.775761 2020-08-15 00:28:07.775761 1 0.0 922 349 1246 2 53.15 106.30 2020-08-15 00:28:07.799688 2020-08-15 00:28:07.799688 1 0.0 923 350 1247 2 43.63 87.26 2020-08-15 00:35:44.239126 2020-08-15 00:35:44.239126 1 0.0 924 350 1248 1 41.05 41.05 2020-08-15 00:35:44.261229 2020-08-15 00:35:44.261229 1 0.0 925 350 1249 1 53.15 53.15 2020-08-15 00:35:44.282971 2020-08-15 00:35:44.282971 1 0.0 926 350 1250 1 156.59 156.59 2020-08-15 00:35:44.306373 2020-08-15 00:35:44.306373 1 0.0 927 351 1141 1 799.50 799.50 2020-08-15 20:22:04.524526 2020-08-15 20:22:04.524526 1 0.0 928 351 1251 1 749.50 749.50 2020-08-15 20:22:04.548604 2020-08-15 20:22:04.548604 1 0.0 929 352 1252 1 34.78 34.78 2020-08-15 23:02:56.734866 2020-08-15 23:02:56.734866 1 0.0 930 352 1253 1 36.13 36.13 2020-08-15 23:02:56.749673 2020-08-15 23:02:56.749673 1 0.0 931 352 1254 1 37.92 37.92 2020-08-15 23:02:56.762005 2020-08-15 23:02:56.762005 1 0.0 932 352 1255 1 72.22 72.22 2020-08-15 23:02:56.774198 2020-08-15 23:02:56.774198 1 0.0 933 352 1256 1 48.89 48.89 2020-08-15 23:02:56.786494 2020-08-15 23:02:56.786494 1 0.0 934 352 1257 1 63.01 63.01 2020-08-15 23:02:56.812977 2020-08-15 23:02:56.812977 1 0.0 935 352 1258 1 65.92 65.92 2020-08-15 23:02:56.825657 2020-08-15 23:02:56.825657 1 0.0 936 352 1259 1 115.42 115.42 2020-08-15 23:02:56.837302 2020-08-15 23:02:56.837302 1 0.0 937 353 1260 1 98.89 98.89 2020-08-15 23:31:03.789958 2020-08-15 23:31:03.789958 1 0.0 938 354 1261 1 53.63 53.63 2020-08-16 00:30:39.500788 2020-08-16 00:30:39.500788 1 0.0 939 354 1262 2 37.69 75.38 2020-08-16 00:30:39.514977 2020-08-16 00:30:39.514977 1 0.0 940 354 1263 2 39.71 79.42 2020-08-16 00:30:39.53028 2020-08-16 00:30:39.53028 1 0.0 941 354 1264 1 35.78 35.78 2020-08-16 00:30:39.545879 2020-08-16 00:30:39.545879 1 0.0 942 354 1265 1 55.61 55.61 2020-08-16 00:30:39.560792 2020-08-16 00:30:39.560792 1 0.0 943 354 1266 1 46.43 46.43 2020-08-16 00:30:39.574094 2020-08-16 00:30:39.574094 1 0.0 944 354 1267 1 57.63 57.63 2020-08-16 00:30:39.587309 2020-08-16 00:30:39.587309 1 0.0 945 354 1268 1 99.41 99.41 2020-08-16 00:30:39.600521 2020-08-16 00:30:39.600521 1 0.0 946 354 1269 2 68.61 137.22 2020-08-16 00:30:39.61311 2020-08-16 00:30:39.61311 1 0.0 947 355 1270 1 58.30 58.30 2020-08-17 00:30:04.083651 2020-08-17 00:30:04.083651 1 0.0 948 355 1271 1 90.52 90.52 2020-08-17 00:30:04.119071 2020-08-17 00:30:04.119071 1 0.0 949 355 1272 1 65.47 65.47 2020-08-17 00:30:04.14401 2020-08-17 00:30:04.14401 1 0.0 950 355 1273 1 80.03 80.03 2020-08-17 00:30:04.1787 2020-08-17 00:30:04.1787 1 0.0 951 355 1269 1 68.61 68.61 2020-08-17 00:30:04.202664 2020-08-17 00:30:04.202664 1 0.0 952 355 1274 1 60.32 60.32 2020-08-17 00:30:04.235738 2020-08-17 00:30:04.235738 1 0.0 953 355 1275 1 50.01 50.01 2020-08-17 00:30:04.260778 2020-08-17 00:30:04.260778 1 0.0 954 355 1276 1 45.35 45.35 2020-08-17 00:30:04.295609 2020-08-17 00:30:04.295609 1 0.0 955 356 1277 1 68.61 68.61 2020-08-17 01:52:36.357359 2020-08-17 01:52:36.357359 1 0.0 956 357 1278 1 89.21 89.21 2020-08-17 19:22:09.311396 2020-08-17 19:22:09.311396 1 0.0 957 357 1279 1 67.93 67.93 2020-08-17 19:22:09.335231 2020-08-17 19:22:09.335231 1 0.0 958 357 1280 1 45.31 45.31 2020-08-17 19:22:09.361042 2020-08-17 19:22:09.361042 1 0.0 959 357 1281 1 34.78 34.78 2020-08-17 19:22:09.384889 2020-08-17 19:22:09.384889 1 0.0 960 357 1282 1 71.74 71.74 2020-08-17 19:22:09.409479 2020-08-17 19:22:09.409479 1 0.0 961 357 1283 1 41.73 41.73 2020-08-17 19:22:09.434421 2020-08-17 19:22:09.434421 1 0.0 962 357 1270 1 58.30 58.30 2020-08-17 19:22:09.457209 2020-08-17 19:22:09.457209 1 0.0 963 357 1271 1 90.52 90.52 2020-08-17 19:22:09.484904 2020-08-17 19:22:09.484904 1 0.0 964 357 1284 1 43.97 43.97 2020-08-17 19:22:09.512691 2020-08-17 19:22:09.512691 1 0.0 965 357 1285 1 60.32 60.32 2020-08-17 19:22:09.535612 2020-08-17 19:22:09.535612 1 0.0 966 357 1286 1 55.65 55.65 2020-08-17 19:22:09.557938 2020-08-17 19:22:09.557938 1 0.0 967 357 1274 1 60.32 60.32 2020-08-17 19:22:09.580996 2020-08-17 19:22:09.580996 1 0.0 968 357 1287 1 47.01 47.01 2020-08-17 19:22:09.607759 2020-08-17 19:22:09.607759 1 0.0 969 358 1272 1 65.47 65.47 2020-08-17 19:29:07.127625 2020-08-17 19:29:07.127625 1 0.0 970 358 1288 1 56.29 56.29 2020-08-17 19:29:07.157975 2020-08-17 19:29:07.157975 1 0.0 971 358 1289 1 56.29 56.29 2020-08-17 19:29:07.182038 2020-08-17 19:29:07.182038 1 0.0 972 358 1290 1 51.13 51.13 2020-08-17 19:29:07.206744 2020-08-17 19:29:07.206744 1 0.0 973 358 1291 1 41.05 41.05 2020-08-17 19:29:07.229984 2020-08-17 19:29:07.229984 1 0.0 974 359 1269 1 68.61 68.61 2020-08-17 19:29:42.892882 2020-08-17 19:29:42.892882 1 0.0 975 360 1292 1 45.83 45.83 2020-08-17 20:16:59.05497 2020-08-17 20:16:59.05497 1 0.0 976 362 1141 1 799.50 799.50 2020-08-18 23:08:42.494946 2020-08-18 23:08:42.494946 1 0.0 977 363 548 1 749.50 749.50 2020-08-25 23:10:18.700214 2020-08-25 23:10:18.700214 1 0.0 978 364 1294 9 499.50 4495.50 2020-08-27 19:34:50.175503 2020-08-27 19:34:50.175503 1 0.0 979 364 1293 3 899.50 2698.50 2020-08-27 19:34:50.222073 2020-08-27 19:34:50.222073 1 0.0 980 364 1295 2 949.50 1899.00 2020-08-27 19:34:50.25381 2020-08-27 19:34:50.25381 1 0.0 981 364 1296 1 799.50 799.50 2020-08-27 19:34:50.275578 2020-08-27 19:34:50.275578 1 0.0 982 364 1139 1 649.50 649.50 2020-08-27 19:34:50.298682 2020-08-27 19:34:50.298682 1 0.0 983 364 1297 1 649.50 649.50 2020-08-27 19:34:50.323226 2020-08-27 19:34:50.323226 1 0.0 984 364 1298 1 749.50 749.50 2020-08-27 19:34:50.347492 2020-08-27 19:34:50.347492 1 0.0 985 364 1299 2 799.50 1599.00 2020-08-27 19:34:50.370903 2020-08-27 19:34:50.370903 1 0.0 986 364 1300 1 799.50 799.50 2020-08-27 19:34:50.411103 2020-08-27 19:34:50.411103 1 0.0 987 365 1293 1 899.50 899.50 2020-08-27 19:56:19.550496 2020-08-27 19:56:19.550496 1 0.0 988 365 1294 3 499.50 1498.50 2020-08-27 19:56:19.596967 2020-08-27 19:56:19.596967 1 0.0 989 365 1301 2 699.50 1399.00 2020-08-27 19:56:19.622766 2020-08-27 19:56:19.622766 1 0.0 990 365 1302 2 949.50 1899.00 2020-08-27 19:56:19.64588 2020-08-27 19:56:19.64588 1 0.0 991 365 1303 1 849.50 849.50 2020-08-27 19:56:19.668579 2020-08-27 19:56:19.668579 1 0.0 992 366 1297 1 649.50 649.50 2020-08-27 23:39:36.681587 2020-08-27 23:39:36.681587 1 0.0 993 367 1301 2 699.50 1399.00 2020-09-01 18:38:11.886721 2020-09-01 18:38:11.886721 1 0.0 994 368 1304 6 243.65 1461.90 2020-09-03 21:00:27.801691 2020-09-03 21:00:27.801691 1 0.0 995 368 1305 6 573.37 3440.22 2020-09-03 21:00:27.834751 2020-09-03 21:00:27.834751 1 0.0 996 368 1306 6 253.00 1518.00 2020-09-03 21:00:27.85799 2020-09-03 21:00:27.85799 1 0.0 997 368 1307 6 275.00 1650.00 2020-09-03 21:00:27.881641 2020-09-03 21:00:27.881641 1 0.0 998 368 1308 6 220.00 1320.00 2020-09-03 21:00:27.904851 2020-09-03 21:00:27.904851 1 0.0 999 368 1309 6 275.00 1650.00 2020-09-03 21:00:27.937251 2020-09-03 21:00:27.937251 1 0.0 1000 368 1310 6 242.00 1452.00 2020-09-03 21:00:27.957809 2020-09-03 21:00:27.957809 1 0.0 1001 369 1311 3 418.00 1254.00 2020-09-03 22:10:09.19797 2020-09-03 22:10:09.19797 1 0.0 1002 369 1312 3 286.00 858.00 2020-09-03 22:10:09.220931 2020-09-03 22:10:09.220931 1 0.0 1003 369 1313 6 308.00 1848.00 2020-09-03 22:10:09.24165 2020-09-03 22:10:09.24165 1 0.0 1004 369 1314 6 198.00 1188.00 2020-09-03 22:10:09.262991 2020-09-03 22:10:09.262991 1 0.0 1005 369 1315 6 143.00 858.00 2020-09-03 22:10:09.284525 2020-09-03 22:10:09.284525 1 0.0 1006 369 1316 3 242.00 726.00 2020-09-03 22:10:09.304531 2020-09-03 22:10:09.304531 1 0.0 1007 369 1317 6 335.50 2013.00 2020-09-03 22:10:09.327677 2020-09-03 22:10:09.327677 1 0.0 1008 369 1318 6 462.00 2772.00 2020-09-03 22:10:09.350104 2020-09-03 22:10:09.350104 1 0.0 1009 370 1319 6 462.00 2772.00 2020-09-03 22:52:51.713985 2020-09-03 22:52:51.713985 1 0.0 1010 370 1320 3 286.00 858.00 2020-09-03 22:52:51.735364 2020-09-03 22:52:51.735364 1 0.0 1011 370 1321 3 308.00 924.00 2020-09-03 22:52:51.756039 2020-09-03 22:52:51.756039 1 0.0 1012 370 1322 6 220.00 1320.00 2020-09-03 22:52:51.777953 2020-09-03 22:52:51.777953 1 0.0 1013 370 1323 6 220.00 1320.00 2020-09-03 22:52:51.798546 2020-09-03 22:52:51.798546 1 0.0 1014 370 1324 6 286.00 1716.00 2020-09-03 22:52:51.820562 2020-09-03 22:52:51.820562 1 0.0 1015 370 1326 3 396.00 1188.00 2020-09-03 22:52:51.842172 2020-09-03 22:52:51.842172 1 0.0 1016 370 1325 3 374.00 1122.00 2020-09-03 22:52:51.864122 2020-09-03 22:52:51.864122 1 0.0 1017 371 1327 11 209.00 2299.00 2020-09-03 23:17:32.249523 2020-09-03 23:17:32.249523 1 0.0 1018 372 1328 6 264.00 1584.00 2020-09-03 23:41:42.748506 2020-09-03 23:41:42.748506 1 0.0 1019 372 1329 6 209.00 1254.00 2020-09-03 23:41:42.771917 2020-09-03 23:41:42.771917 1 0.0 1020 372 1330 6 308.00 1848.00 2020-09-03 23:41:42.794701 2020-09-03 23:41:42.794701 1 0.0 1021 372 1331 6 170.00 1020.00 2020-09-03 23:41:42.815188 2020-09-03 23:41:42.815188 1 0.0 1022 372 1332 9 214.00 1926.00 2020-09-03 23:41:42.836742 2020-09-03 23:41:42.836742 1 0.0 1023 372 1333 6 280.00 1680.00 2020-09-03 23:41:42.857269 2020-09-03 23:41:42.857269 1 0.0 1024 373 1334 6 187.00 1122.00 2020-09-03 23:57:05.232257 2020-09-03 23:57:05.232257 1 0.0 1025 373 1335 3 275.00 825.00 2020-09-03 23:57:05.254934 2020-09-03 23:57:05.254934 1 0.0 1026 373 1336 6 209.00 1254.00 2020-09-03 23:57:05.277076 2020-09-03 23:57:05.277076 1 0.0 1027 374 1337 3 499.50 1498.50 2020-09-04 23:45:17.07931 2020-09-04 23:45:17.07931 1 0.0 1028 375 1338 3 363.00 1089.00 2020-09-05 16:50:56.758556 2020-09-05 16:50:56.758556 1 0.0 1029 375 1339 6 209.00 1254.00 2020-09-05 16:50:56.793953 2020-09-05 16:50:56.793953 1 0.0 1030 377 1312 3 286.00 858.00 2020-09-05 20:03:07.143251 2020-09-05 20:03:07.143251 1 0.0 1031 377 1313 6 308.00 1848.00 2020-09-05 20:03:07.168749 2020-09-05 20:03:07.168749 1 0.0 1032 377 1314 6 198.00 1188.00 2020-09-05 20:03:07.193178 2020-09-05 20:03:07.193178 1 0.0 1033 377 1315 6 143.00 858.00 2020-09-05 20:03:07.221025 2020-09-05 20:03:07.221025 1 0.0 1034 377 1316 3 242.00 726.00 2020-09-05 20:03:07.245565 2020-09-05 20:03:07.245565 1 0.0 1035 377 1317 6 335.50 2013.00 2020-09-05 20:03:07.270711 2020-09-05 20:03:07.270711 1 0.0 1036 377 1320 3 286.00 858.00 2020-09-05 20:03:07.294397 2020-09-05 20:03:07.294397 1 0.0 1037 377 1321 3 308.00 924.00 2020-09-05 20:03:07.31813 2020-09-05 20:03:07.31813 1 0.0 1038 377 1322 1 220.00 220.00 2020-09-05 20:03:07.343613 2020-09-05 20:03:07.343613 1 0.0 1039 377 1325 3 374.00 1122.00 2020-09-05 20:03:07.370693 2020-09-05 20:03:07.370693 1 0.0 1040 377 1326 3 396.00 1188.00 2020-09-05 20:03:07.393249 2020-09-05 20:03:07.393249 1 0.0 1041 377 1327 12 209.00 2508.00 2020-09-05 20:03:07.415795 2020-09-05 20:03:07.415795 1 0.0 1042 377 1328 6 264.00 1584.00 2020-09-05 20:03:07.438996 2020-09-05 20:03:07.438996 1 0.0 1043 377 1329 6 209.00 1254.00 2020-09-05 20:03:07.462124 2020-09-05 20:03:07.462124 1 0.0 1044 377 1330 6 308.00 1848.00 2020-09-05 20:03:07.487802 2020-09-05 20:03:07.487802 1 0.0 1045 377 1331 6 170.00 1020.00 2020-09-05 20:03:07.523706 2020-09-05 20:03:07.523706 1 0.0 1046 377 1332 9 214.00 1926.00 2020-09-05 20:03:07.558074 2020-09-05 20:03:07.558074 1 0.0 1047 377 1334 6 187.00 1122.00 2020-09-05 20:03:07.59264 2020-09-05 20:03:07.59264 1 0.0 1048 378 1338 3 363.00 1089.00 2020-09-05 22:37:58.840002 2020-09-05 22:37:58.840002 1 0.0 1049 378 1311 3 418.00 1254.00 2020-09-05 22:37:58.883779 2020-09-05 22:37:58.883779 1 0.0 1050 378 1337 3 499.50 1498.50 2020-09-05 22:37:58.913979 2020-09-05 22:37:58.913979 1 0.0 1051 379 1335 3 275.00 825.00 2020-09-05 22:40:33.493615 2020-09-05 22:40:33.493615 1 0.0 1052 379 1321 6 308.00 1848.00 2020-09-05 22:40:33.520737 2020-09-05 22:40:33.520737 1 0.0 1053 380 1322 5 220.00 1100.00 2020-09-07 20:37:24.892062 2020-09-07 20:37:24.892062 1 0.0 1054 381 1126 4 749.50 2998.00 2020-09-07 23:00:42.948406 2020-09-07 23:00:42.948406 1 0.0 1055 381 1294 16 499.50 7992.00 2020-09-07 23:00:42.984764 2020-09-07 23:00:42.984764 1 0.0 1056 381 1300 4 799.50 3198.00 2020-09-07 23:00:43.007482 2020-09-07 23:00:43.007482 1 0.0 1057 382 1126 3 749.50 2248.50 2020-09-08 00:06:38.247654 2020-09-08 00:06:38.247654 1 0.0 1058 382 1300 3 799.50 2398.50 2020-09-08 00:06:38.282644 2020-09-08 00:06:38.282644 1 0.0 1059 382 1294 8 499.50 3996.00 2020-09-08 00:06:38.31147 2020-09-08 00:06:38.31147 1 0.0 1060 383 1340 6 209.00 1254.00 2020-09-08 00:43:56.346573 2020-09-08 00:43:56.346573 1 0.0 1061 383 1341 6 220.00 1320.00 2020-09-08 00:43:56.36921 2020-09-08 00:43:56.36921 1 0.0 1062 384 1342 1 849.50 849.50 2020-09-08 16:31:23.531911 2020-09-08 16:31:23.531911 1 0.0 1063 385 1293 3 899.50 2698.50 2020-09-09 21:51:38.907507 2020-09-09 21:51:38.907507 1 0.0 1064 386 1293 2 899.50 1799.00 2020-09-09 21:51:58.37685 2020-09-09 21:51:58.37685 1 0.0 1065 387 1343 6 319.00 1914.00 2020-09-10 01:04:19.902655 2020-09-10 01:04:19.902655 1 0.0 1066 388 1295 1 949.50 949.50 2020-09-15 21:37:43.122938 2020-09-15 21:37:43.122938 1 0.0 1067 389 1029 3 34.50 103.50 2020-09-17 23:32:44.070568 2020-09-17 23:32:44.070568 1 0.0 1068 390 1344 3 360.50 1081.50 2020-09-19 00:23:35.719166 2020-09-19 00:23:35.719166 1 0.0 1069 390 1345 2 296.00 592.00 2020-09-19 00:23:35.753584 2020-09-19 00:23:35.753584 1 0.0 1070 390 1346 1 137.00 137.00 2020-09-19 00:23:35.777158 2020-09-19 00:23:35.777158 1 0.0 1071 390 1347 1 215.00 215.00 2020-09-19 00:23:35.80008 2020-09-19 00:23:35.80008 1 0.0 1072 391 1299 1 799.50 799.50 2020-09-19 21:58:06.217843 2020-09-19 21:58:06.217843 1 0.0 1073 391 1294 10 499.50 4995.00 2020-09-19 21:58:06.247838 2020-09-19 21:58:06.247838 1 0.0 1074 391 1348 2 549.50 1099.00 2020-09-19 21:58:06.273801 2020-09-19 21:58:06.273801 1 0.0 1075 392 1294 6 499.50 2997.00 2020-09-21 18:36:17.434293 2020-09-21 18:36:17.434293 1 0.0 1076 392 1349 2 549.50 1099.00 2020-09-21 18:36:17.479121 2020-09-21 18:36:17.479121 1 0.0 1077 392 1350 1 749.50 749.50 2020-09-21 18:36:17.508329 2020-09-21 18:36:17.508329 1 0.0 1078 392 1139 1 649.50 649.50 2020-09-21 18:36:17.536559 2020-09-21 18:36:17.536559 1 0.0 1079 392 1351 1 799.50 799.50 2020-09-21 18:36:17.56331 2020-09-21 18:36:17.56331 1 0.0 1080 393 1348 3 549.50 1648.50 2020-09-21 18:42:17.45399 2020-09-21 18:42:17.45399 1 0.0 1081 394 1295 1 949.50 949.50 2020-09-21 21:10:03.054123 2020-09-21 21:10:03.054123 1 0.0 1082 395 1294 3 499.50 1498.50 2020-09-22 00:55:53.721726 2020-09-22 00:55:53.721726 1 0.0 1083 396 1351 1 799.50 799.50 2020-09-22 19:47:43.000376 2020-09-22 19:47:43.000376 1 0.0 1084 397 1352 1 249.50 249.50 2020-09-22 20:17:05.122284 2020-09-22 20:17:05.122284 1 0.0 1085 397 1353 1 349.50 349.50 2020-09-22 20:17:05.146321 2020-09-22 20:17:05.146321 1 0.0 1086 397 1354 1 299.50 299.50 2020-09-22 20:17:05.171886 2020-09-22 20:17:05.171886 1 0.0 1087 398 1139 1 649.50 649.50 2020-09-25 00:01:34.862585 2020-09-25 00:01:34.862585 1 0.0 1088 399 1355 3 286.00 858.00 2020-09-28 19:11:21.412898 2020-09-28 19:11:21.412898 1 0.0 1089 399 1356 3 286.00 858.00 2020-09-28 19:11:21.437312 2020-09-28 19:11:21.437312 1 0.0 1090 400 1355 4 286.00 1144.00 2020-09-28 19:23:25.088344 2020-09-28 19:23:25.088344 1 0.0 1091 400 1356 3 286.00 858.00 2020-09-28 19:23:25.131018 2020-09-28 19:23:25.131018 1 0.0 1092 401 1159 2 749.50 1499.00 2020-10-02 19:40:29.317348 2020-10-02 19:40:29.317348 1 0.0 1093 401 1357 6 699.50 4197.00 2020-10-02 19:40:29.366576 2020-10-02 19:40:29.366576 1 0.0 1094 401 1294 12 499.50 5994.00 2020-10-02 19:40:29.398124 2020-10-02 19:40:29.398124 1 0.0 1095 401 1182 1 899.50 899.50 2020-10-02 19:40:29.429556 2020-10-02 19:40:29.429556 1 0.0 1096 401 1297 1 649.50 649.50 2020-10-02 19:40:29.45882 2020-10-02 19:40:29.45882 1 0.0 1097 401 1358 3 899.50 2698.50 2020-10-02 19:40:29.482691 2020-10-02 19:40:29.482691 1 0.0 1098 401 1359 1 649.50 649.50 2020-10-02 19:40:29.508497 2020-10-02 19:40:29.508497 1 0.0 1099 402 1297 2 649.50 1299.00 2020-10-02 21:32:53.718374 2020-10-02 21:32:53.718374 1 0.0 1100 402 1294 11 499.50 5494.50 2020-10-02 21:32:53.745675 2020-10-02 21:32:53.745675 1 0.0 1101 403 1358 1 899.50 899.50 2020-10-05 21:00:30.219952 2020-10-05 21:00:30.219952 1 0.0 1102 403 1182 1 899.50 899.50 2020-10-05 21:00:30.262319 2020-10-05 21:00:30.262319 1 0.0 1103 403 1360 1 849.50 849.50 2020-10-05 21:00:30.292894 2020-10-05 21:00:30.292894 1 0.0 1104 404 1360 1 849.50 849.50 2020-10-05 21:00:57.49912 2020-10-05 21:00:57.49912 1 0.0 1105 405 1361 1 449.50 449.50 2020-10-05 22:21:39.696116 2020-10-05 22:21:39.696116 1 0.0 1106 406 1126 5 749.50 3747.50 2020-10-06 00:08:21.612076 2020-10-06 00:08:21.612076 1 0.0 1107 407 1362 1 849.50 849.50 2020-10-09 20:45:26.730263 2020-10-09 20:45:26.730263 1 0.0 1108 408 1357 4 699.50 2798.00 2020-10-09 20:47:25.423175 2020-10-09 20:47:25.423175 1 0.0 1109 409 1357 3 699.50 2098.50 2020-10-09 20:48:02.558272 2020-10-09 20:48:02.558272 1 0.0 1110 410 1295 1 949.50 949.50 2020-10-10 00:27:12.167428 2020-10-10 00:27:12.167428 1 0.0 1111 411 1363 3 10.00 30.00 2020-10-13 18:33:29.607745 2020-10-13 18:33:29.607745 1 0.0 1112 412 1364 1 356.00 356.00 2020-10-14 23:40:45.270614 2020-10-14 23:40:45.270614 1 0.0 1113 413 1365 1 999.50 999.50 2020-10-15 01:21:49.34189 2020-10-15 01:21:49.34189 1 0.0 1114 414 1367 1 749.50 749.50 2020-10-22 18:52:40.903853 2020-10-22 18:52:40.903853 1 0.0 1115 414 1368 1 749.50 749.50 2020-10-22 18:52:40.929975 2020-10-22 18:52:40.929975 1 0.0 1116 414 1369 1 899.50 899.50 2020-10-22 18:52:40.95419 2020-10-22 18:52:40.95419 1 0.0 1117 414 1366 2 1049.50 2099.00 2020-10-22 18:52:40.977597 2020-10-22 18:52:40.977597 1 0.0 1118 414 1370 3 749.50 2248.50 2020-10-22 18:52:41.000999 2020-10-22 18:52:41.000999 1 0.0 1119 415 1371 25 899.50 22487.50 2020-10-22 23:48:19.327506 2020-10-22 23:48:19.327506 1 0.0 1120 416 1372 2 699.50 1399.00 2020-10-23 00:20:57.848463 2020-10-23 00:20:57.848463 1 0.0 1121 416 1369 1 899.50 899.50 2020-10-23 00:20:57.872923 2020-10-23 00:20:57.872923 1 0.0 1122 416 1370 1 749.50 749.50 2020-10-23 00:20:57.909246 2020-10-23 00:20:57.909246 1 0.0 1123 416 1366 1 1049.50 1049.50 2020-10-23 00:20:57.94558 2020-10-23 00:20:57.94558 1 0.0 1124 416 1361 1 449.50 449.50 2020-10-23 00:20:57.984087 2020-10-23 00:20:57.984087 1 0.0 1125 416 1371 17 899.50 15291.50 2020-10-23 00:20:58.019939 2020-10-23 00:20:58.019939 1 0.0 1126 417 1372 3 699.50 2098.50 2020-10-23 00:23:37.936837 2020-10-23 00:23:37.936837 1 0.0 1127 418 1373 7 599.50 4196.50 2020-10-23 01:01:18.46076 2020-10-23 01:01:18.46076 1 0.0 1128 419 1374 7 799.50 5596.50 2020-10-23 18:54:36.44037 2020-10-23 18:54:36.44037 1 0.0 1129 419 1375 6 849.50 5097.00 2020-10-23 18:54:36.483166 2020-10-23 18:54:36.483166 1 0.0 1130 419 1376 7 599.50 4196.50 2020-10-23 18:54:36.508629 2020-10-23 18:54:36.508629 1 0.0 1131 420 1378 1 46.77 46.77 2020-10-25 21:24:49.071512 2020-10-25 21:24:49.071512 1 0.0 1132 420 1379 3 136.49 409.47 2020-10-25 21:24:49.119201 2020-10-25 21:24:49.119201 1 0.0 1133 420 1380 1 137.49 137.49 2020-10-25 21:24:49.150417 2020-10-25 21:24:49.150417 1 0.0 1134 420 1209 7 45.89 321.23 2020-10-25 21:24:49.182758 2020-10-25 21:24:49.182758 1 0.0 1135 420 1223 1 123.93 123.93 2020-10-25 21:24:49.208118 2020-10-25 21:24:49.208118 1 0.0 1136 420 1230 1 54.03 54.03 2020-10-25 21:24:49.236455 2020-10-25 21:24:49.236455 1 0.0 1137 420 1377 3 33.38 100.14 2020-10-25 21:24:49.259587 2020-10-25 21:24:49.259587 1 0.0 1138 421 1381 1 192.19 192.19 2020-10-25 23:33:38.69369 2020-10-25 23:33:38.69369 1 0.0 1139 421 1382 1 47.62 47.62 2020-10-25 23:33:38.719153 2020-10-25 23:33:38.719153 1 0.0 1140 421 1383 1 148.18 148.18 2020-10-25 23:33:38.745721 2020-10-25 23:33:38.745721 1 0.0 1141 421 1384 1 163.07 163.07 2020-10-25 23:33:38.776586 2020-10-25 23:33:38.776586 1 0.0 1142 421 1385 1 101.84 101.84 2020-10-25 23:33:38.802798 2020-10-25 23:33:38.802798 1 0.0 1143 421 1386 1 229.40 229.40 2020-10-25 23:33:38.828794 2020-10-25 23:33:38.828794 1 0.0 1144 421 1387 1 229.40 229.40 2020-10-25 23:33:38.856525 2020-10-25 23:33:38.856525 1 0.0 1145 421 1388 1 82.70 82.70 2020-10-25 23:33:38.883202 2020-10-25 23:33:38.883202 1 0.0 1146 421 1389 1 89.00 89.00 2020-10-25 23:33:38.912326 2020-10-25 23:33:38.912326 1 0.0 1147 421 1390 1 54.22 54.22 2020-10-25 23:33:38.936479 2020-10-25 23:33:38.936479 1 0.0 1148 421 1391 1 33.99 33.99 2020-10-25 23:33:38.96214 2020-10-25 23:33:38.96214 1 0.0 1149 422 1380 2 136.49 272.98 2020-10-26 01:00:40.06183 2020-10-26 01:00:40.06183 1 0.0 1150 423 1392 1 228.12 228.12 2020-10-26 01:50:57.071379 2020-10-26 01:50:57.071379 1 0.0 1151 423 1230 1 54.03 54.03 2020-10-26 01:50:57.093558 2020-10-26 01:50:57.093558 1 0.0 1152 423 1228 3 56.73 170.19 2020-10-26 01:50:57.116947 2020-10-26 01:50:57.116947 1 0.0 1153 423 1209 7 45.89 321.23 2020-10-26 01:50:57.140682 2020-10-26 01:50:57.140682 1 0.0 1154 423 1377 3 33.38 100.14 2020-10-26 01:50:57.163756 2020-10-26 01:50:57.163756 1 0.0 1155 423 1381 1 192.19 192.19 2020-10-26 01:50:57.191569 2020-10-26 01:50:57.191569 1 0.0 1156 423 1378 1 46.77 46.77 2020-10-26 01:50:57.222155 2020-10-26 01:50:57.222155 1 0.0 1157 423 1380 3 136.49 409.47 2020-10-26 01:50:57.250155 2020-10-26 01:50:57.250155 1 0.0 1158 424 1393 3 16.16 48.48 2020-10-26 02:17:45.265224 2020-10-26 02:17:45.265224 1 0.0 1159 424 1394 1 89.08 89.08 2020-10-26 02:17:45.285641 2020-10-26 02:17:45.285641 1 0.0 1160 424 1395 1 33.81 33.81 2020-10-26 02:17:45.306557 2020-10-26 02:17:45.306557 1 0.0 1161 424 1396 1 111.62 111.62 2020-10-26 02:17:45.331561 2020-10-26 02:17:45.331561 1 0.0 1162 424 1397 3 35.51 106.53 2020-10-26 02:17:45.358012 2020-10-26 02:17:45.358012 1 0.0 1163 424 1398 1 89.09 89.09 2020-10-26 02:17:45.381828 2020-10-26 02:17:45.381828 1 0.0 1164 424 1399 2 24.24 48.48 2020-10-26 02:17:45.403318 2020-10-26 02:17:45.403318 1 0.0 1165 424 1400 1 72.92 72.92 2020-10-26 02:17:45.425258 2020-10-26 02:17:45.425258 1 0.0 1166 424 1401 1 38.30 38.30 2020-10-26 02:17:45.445134 2020-10-26 02:17:45.445134 1 0.0 1167 425 1402 3 1149.50 3448.50 2020-10-26 21:59:43.339706 2020-10-26 21:59:43.339706 1 0.0 1168 426 1402 4 1149.50 4598.00 2020-10-26 22:13:19.381569 2020-10-26 22:13:19.381569 1 0.0 1169 427 1403 1 78.82 78.82 2020-10-27 19:45:18.108728 2020-10-27 19:45:18.108728 1 0.0 1170 427 1404 1 32.55 32.55 2020-10-27 19:45:18.161958 2020-10-27 19:45:18.161958 1 0.0 1171 427 1405 1 39.80 39.80 2020-10-27 19:45:18.196768 2020-10-27 19:45:18.196768 1 0.0 1172 427 1406 1 37.57 37.57 2020-10-27 19:45:18.226909 2020-10-27 19:45:18.226909 1 0.0 1173 427 1407 1 38.00 38.00 2020-10-27 19:45:18.258995 2020-10-27 19:45:18.258995 1 0.0 1174 427 1408 1 43.84 43.84 2020-10-27 19:45:18.293297 2020-10-27 19:45:18.293297 1 0.0 1175 427 1409 1 49.00 49.00 2020-10-27 19:45:18.328683 2020-10-27 19:45:18.328683 1 0.0 1176 427 1410 1 12.98 12.98 2020-10-27 19:45:18.359837 2020-10-27 19:45:18.359837 1 0.0 1177 427 1411 1 48.88 48.88 2020-10-27 19:45:18.388997 2020-10-27 19:45:18.388997 1 0.0 1178 428 1412 1 19.15 19.15 2020-10-27 21:18:46.430825 2020-10-27 21:18:46.430825 1 0.0 1179 428 1413 1 83.85 83.85 2020-10-27 21:18:46.455469 2020-10-27 21:18:46.455469 1 0.0 1180 428 1414 1 52.00 52.00 2020-10-27 21:18:46.479187 2020-10-27 21:18:46.479187 1 0.0 1181 428 1415 1 52.00 52.00 2020-10-27 21:18:46.504533 2020-10-27 21:18:46.504533 1 0.0 1182 429 1416 1 64.00 64.00 2020-10-27 21:42:41.919167 2020-10-27 21:42:41.919167 1 0.0 1183 429 1417 1 68.00 68.00 2020-10-27 21:42:41.941514 2020-10-27 21:42:41.941514 1 0.0 1184 429 1418 2 34.00 68.00 2020-10-27 21:42:41.962748 2020-10-27 21:42:41.962748 1 0.0 1185 429 1419 1 51.00 51.00 2020-10-27 21:42:41.984063 2020-10-27 21:42:41.984063 1 0.0 1186 429 1420 1 85.00 85.00 2020-10-27 21:42:42.005105 2020-10-27 21:42:42.005105 1 0.0 1187 429 1421 1 30.00 30.00 2020-10-27 21:42:42.025283 2020-10-27 21:42:42.025283 1 0.0 1188 430 1422 1 52.00 52.00 2020-10-27 21:57:02.184954 2020-10-27 21:57:02.184954 1 0.0 1189 430 1423 1 49.00 49.00 2020-10-27 21:57:02.212412 2020-10-27 21:57:02.212412 1 0.0 1190 430 1424 1 27.00 27.00 2020-10-27 21:57:02.238044 2020-10-27 21:57:02.238044 1 0.0 1191 431 1425 1 52.00 52.00 2020-10-27 22:21:11.260678 2020-10-27 22:21:11.260678 1 0.0 1192 431 1426 1 50.00 50.00 2020-10-27 22:21:11.299073 2020-10-27 22:21:11.299073 1 0.0 1193 431 1427 1 29.00 29.00 2020-10-27 22:21:11.325142 2020-10-27 22:21:11.325142 1 0.0 1194 431 1428 1 55.00 55.00 2020-10-27 22:21:11.352467 2020-10-27 22:21:11.352467 1 0.0 1195 431 1429 1 45.00 45.00 2020-10-27 22:21:11.378306 2020-10-27 22:21:11.378306 1 0.0 1196 431 1430 1 31.00 31.00 2020-10-27 22:21:11.411958 2020-10-27 22:21:11.411958 1 0.0 1197 432 1431 1 40.00 40.00 2020-10-27 22:56:27.829348 2020-10-27 22:56:27.829348 1 0.0 1198 432 1432 1 37.00 37.00 2020-10-27 22:56:27.851417 2020-10-27 22:56:27.851417 1 0.0 1199 432 1433 1 34.00 34.00 2020-10-27 22:56:27.87162 2020-10-27 22:56:27.87162 1 0.0 1200 432 1434 1 32.00 32.00 2020-10-27 22:56:27.891865 2020-10-27 22:56:27.891865 1 0.0 1201 432 1435 1 122.00 122.00 2020-10-27 22:56:27.91431 2020-10-27 22:56:27.91431 1 0.0 1202 432 1436 1 40.00 40.00 2020-10-27 22:56:27.94197 2020-10-27 22:56:27.94197 1 0.0 1203 432 1437 1 19.00 19.00 2020-10-27 22:56:27.963452 2020-10-27 22:56:27.963452 1 0.0 1204 432 1438 1 32.00 32.00 2020-10-27 22:56:27.984553 2020-10-27 22:56:27.984553 1 0.0 1205 433 1374 8 799.50 6396.00 2020-10-27 23:00:02.555982 2020-10-27 23:00:02.555982 1 0.0 1206 434 1439 1 24.00 24.00 2020-10-27 23:53:06.247311 2020-10-27 23:53:06.247311 1 0.0 1207 434 1440 1 25.00 25.00 2020-10-27 23:53:06.268897 2020-10-27 23:53:06.268897 1 0.0 1208 434 1441 1 40.00 40.00 2020-10-27 23:53:06.297855 2020-10-27 23:53:06.297855 1 0.0 1209 434 1442 1 55.00 55.00 2020-10-27 23:53:06.321709 2020-10-27 23:53:06.321709 1 0.0 1210 434 1443 1 52.00 52.00 2020-10-27 23:53:06.345552 2020-10-27 23:53:06.345552 1 0.0 1211 434 1444 1 28.00 28.00 2020-10-27 23:53:06.368022 2020-10-27 23:53:06.368022 1 0.0 1212 434 1445 1 35.00 35.00 2020-10-27 23:53:06.391111 2020-10-27 23:53:06.391111 1 0.0 1213 434 1446 1 92.00 92.00 2020-10-27 23:53:06.416884 2020-10-27 23:53:06.416884 1 0.0 1214 434 1447 1 17.00 17.00 2020-10-27 23:53:06.441655 2020-10-27 23:53:06.441655 1 0.0 1215 435 1448 1 19.00 19.00 2020-10-28 00:14:28.766246 2020-10-28 00:14:28.766246 1 0.0 1216 436 1433 1 34.00 34.00 2020-10-28 00:24:00.085189 2020-10-28 00:24:00.085189 1 0.0 1217 436 1445 1 35.00 35.00 2020-10-28 00:24:00.111264 2020-10-28 00:24:00.111264 1 0.0 1218 436 1448 1 19.00 19.00 2020-10-28 00:24:00.138812 2020-10-28 00:24:00.138812 1 0.0 1219 436 1438 1 32.00 32.00 2020-10-28 00:24:00.166206 2020-10-28 00:24:00.166206 1 0.0 1220 436 1430 1 31.00 31.00 2020-10-28 00:24:00.194466 2020-10-28 00:24:00.194466 1 0.0 1221 436 1406 1 37.57 37.57 2020-10-28 00:24:00.221821 2020-10-28 00:24:00.221821 1 0.0 1222 436 1425 1 52.00 52.00 2020-10-28 00:24:00.253246 2020-10-28 00:24:00.253246 1 0.0 1223 437 1449 1 46.08 46.08 2020-10-28 20:01:12.233482 2020-10-28 20:01:12.233482 1 0.0 1224 437 1450 1 52.00 52.00 2020-10-28 20:01:12.268886 2020-10-28 20:01:12.268886 1 0.0 1225 437 1451 1 60.00 60.00 2020-10-28 20:01:12.291748 2020-10-28 20:01:12.291748 1 0.0 1226 437 1452 1 28.00 28.00 2020-10-28 20:01:12.313779 2020-10-28 20:01:12.313779 1 0.0 1227 437 1453 1 74.00 74.00 2020-10-28 20:01:12.337292 2020-10-28 20:01:12.337292 1 0.0 1228 437 1454 1 43.00 43.00 2020-10-28 20:01:12.359276 2020-10-28 20:01:12.359276 1 0.0 1229 437 1455 1 25.00 25.00 2020-10-28 20:01:12.382963 2020-10-28 20:01:12.382963 1 0.0 1230 437 1456 1 40.00 40.00 2020-10-28 20:01:12.407055 2020-10-28 20:01:12.407055 1 0.0 1231 438 1457 1 65.00 65.00 2020-10-28 20:32:36.836395 2020-10-28 20:32:36.836395 1 0.0 1232 438 1458 1 65.00 65.00 2020-10-28 20:32:36.85678 2020-10-28 20:32:36.85678 1 0.0 1233 438 1459 1 43.00 43.00 2020-10-28 20:32:36.876872 2020-10-28 20:32:36.876872 1 0.0 1234 438 1460 1 27.00 27.00 2020-10-28 20:32:36.897617 2020-10-28 20:32:36.897617 1 0.0 1235 439 1461 1 23.00 23.00 2020-10-28 20:57:11.050032 2020-10-28 20:57:11.050032 1 0.0 1236 439 1462 1 56.00 56.00 2020-10-28 20:57:11.079889 2020-10-28 20:57:11.079889 1 0.0 1237 439 1463 1 43.00 43.00 2020-10-28 20:57:11.105167 2020-10-28 20:57:11.105167 1 0.0 1238 440 1180 4 899.50 3598.00 2020-10-29 20:48:02.931484 2020-10-29 20:48:02.931484 1 0.0 1239 440 1368 2 749.50 1499.00 2020-10-29 20:48:02.966222 2020-10-29 20:48:02.966222 1 0.0 1240 440 1372 6 699.50 4197.00 2020-10-29 20:48:02.988836 2020-10-29 20:48:02.988836 1 0.0 1241 440 1464 5 599.50 2997.50 2020-10-29 20:48:03.010149 2020-10-29 20:48:03.010149 1 0.0 1242 440 1465 1 849.50 849.50 2020-10-29 20:48:03.031226 2020-10-29 20:48:03.031226 1 0.0 1243 440 1466 1 849.50 849.50 2020-10-29 20:48:03.052745 2020-10-29 20:48:03.052745 1 0.0 1244 440 1467 1 1049.50 1049.50 2020-10-29 20:48:03.086924 2020-10-29 20:48:03.086924 1 0.0 1245 440 1468 1 849.50 849.50 2020-10-29 20:48:03.107967 2020-10-29 20:48:03.107967 1 0.0 1246 441 1466 1 849.50 849.50 2020-10-29 20:53:15.1797 2020-10-29 20:53:15.1797 1 0.0 1247 441 1465 1 849.50 849.50 2020-10-29 20:53:15.206244 2020-10-29 20:53:15.206244 1 0.0 1248 441 1372 2 699.50 1399.00 2020-10-29 20:53:15.232464 2020-10-29 20:53:15.232464 1 0.0 1249 441 1464 2 599.50 1199.00 2020-10-29 20:53:15.252976 2020-10-29 20:53:15.252976 1 0.0 1250 441 1368 1 749.50 749.50 2020-10-29 20:53:15.278305 2020-10-29 20:53:15.278305 1 0.0 1251 441 1180 2 899.50 1799.00 2020-10-29 20:53:15.302041 2020-10-29 20:53:15.302041 1 0.0 1252 442 1469 1 649.50 649.50 2020-10-29 20:56:16.075347 2020-10-29 20:56:16.075347 1 0.0 1253 443 1469 1 649.50 649.50 2020-10-29 21:26:09.457754 2020-10-29 21:26:09.457754 1 0.0 1254 443 1159 1 749.50 749.50 2020-10-29 21:26:09.489298 2020-10-29 21:26:09.489298 1 0.0 1255 443 1470 1 349.50 349.50 2020-10-29 21:26:09.516645 2020-10-29 21:26:09.516645 1 0.0 1256 443 1471 2 399.50 799.00 2020-10-29 21:26:09.543922 2020-10-29 21:26:09.543922 1 0.0 1257 443 1472 1 249.50 249.50 2020-10-29 21:26:09.572157 2020-10-29 21:26:09.572157 1 0.0 1258 443 1473 1 249.50 249.50 2020-10-29 21:26:09.59865 2020-10-29 21:26:09.59865 1 0.0 1259 443 1474 1 499.50 499.50 2020-10-29 21:26:09.628433 2020-10-29 21:26:09.628433 1 0.0 1260 444 1475 4 799.50 3198.00 2020-10-29 23:09:26.282342 2020-10-29 23:09:26.282342 1 0.0 1261 444 1374 5 799.50 3997.50 2020-10-29 23:09:26.311845 2020-10-29 23:09:26.311845 1 0.0 1262 444 1159 1 749.50 749.50 2020-10-29 23:09:26.343886 2020-10-29 23:09:26.343886 1 0.0 1263 445 1374 10 799.50 7995.00 2020-10-29 23:10:10.20912 2020-10-29 23:10:10.20912 1 0.0 1264 446 1471 2 399.50 799.00 2020-10-29 23:15:10.144241 2020-10-29 23:15:10.144241 1 0.0 1265 446 1472 1 249.50 249.50 2020-10-29 23:15:10.187127 2020-10-29 23:15:10.187127 1 0.0 1266 446 1473 1 249.50 249.50 2020-10-29 23:15:10.214559 2020-10-29 23:15:10.214559 1 0.0 1267 446 1476 1 199.50 199.50 2020-10-29 23:15:10.241529 2020-10-29 23:15:10.241529 1 0.0 1268 446 1477 2 499.50 999.00 2020-10-29 23:15:10.264251 2020-10-29 23:15:10.264251 1 0.0 1269 446 1478 1 449.50 449.50 2020-10-29 23:15:10.285818 2020-10-29 23:15:10.285818 1 0.0 1270 447 1479 1 449.50 449.50 2020-10-29 23:19:41.533949 2020-10-29 23:19:41.533949 1 0.0 1271 448 1475 6 799.50 4797.00 2020-10-31 01:37:26.891843 2020-10-31 01:37:26.891843 1 0.0 1272 449 1480 3 352.00 1056.00 2020-11-01 02:08:41.890282 2020-11-01 02:08:41.890282 1 0.0 1273 449 1481 6 435.00 2610.00 2020-11-01 02:08:41.915871 2020-11-01 02:08:41.915871 1 0.0 1274 449 1482 3 352.00 1056.00 2020-11-01 02:08:41.941683 2020-11-01 02:08:41.941683 1 0.0 1275 450 1483 3 407.00 1221.00 2020-11-02 19:06:10.482124 2020-11-02 19:06:10.482124 1 0.0 1276 450 1484 6 561.00 3366.00 2020-11-02 19:06:10.519191 2020-11-02 19:06:10.519191 1 0.0 1277 451 1485 3 330.00 990.00 2020-11-02 20:44:48.242473 2020-11-02 20:44:48.242473 1 0.0 1278 452 1486 5 258.00 1290.00 2020-11-02 23:40:39.293684 2020-11-02 23:40:39.293684 1 0.0 1279 453 1487 3 412.00 1236.00 2020-11-03 19:45:12.287293 2020-11-03 19:45:12.287293 1 0.0 1280 453 1488 6 275.00 1650.00 2020-11-03 19:45:12.329846 2020-11-03 19:45:12.329846 1 0.0 1281 453 1489 6 275.00 1650.00 2020-11-03 19:45:12.350326 2020-11-03 19:45:12.350326 1 0.0 1282 453 1490 6 231.00 1386.00 2020-11-03 19:45:12.371 2020-11-03 19:45:12.371 1 0.0 1283 453 1491 9 363.00 3267.00 2020-11-03 19:45:12.390676 2020-11-03 19:45:12.390676 1 0.0 1284 453 1492 6 324.50 1947.00 2020-11-03 19:45:12.41066 2020-11-03 19:45:12.41066 1 0.0 1285 453 1493 9 341.00 3069.00 2020-11-03 19:45:12.430965 2020-11-03 19:45:12.430965 1 0.0 1286 453 1494 3 561.00 1683.00 2020-11-03 19:45:12.451588 2020-11-03 19:45:12.451588 1 0.0 1287 453 1495 3 522.00 1566.00 2020-11-03 19:45:12.471628 2020-11-03 19:45:12.471628 1 0.0 1288 453 1496 3 495.00 1485.00 2020-11-03 19:45:12.491902 2020-11-03 19:45:12.491902 1 0.0 1289 454 1497 3 231.00 693.00 2020-11-03 20:58:59.957988 2020-11-03 20:58:59.957988 1 0.0 1290 454 1498 6 143.00 858.00 2020-11-03 20:58:59.98232 2020-11-03 20:58:59.98232 1 0.0 1291 454 1499 6 187.00 1122.00 2020-11-03 20:59:00.004989 2020-11-03 20:59:00.004989 1 0.0 1292 454 1500 3 220.00 660.00 2020-11-03 20:59:00.037268 2020-11-03 20:59:00.037268 1 0.0 1293 454 1501 3 440.00 1320.00 2020-11-03 20:59:00.06071 2020-11-03 20:59:00.06071 1 0.0 1294 454 1502 3 308.00 924.00 2020-11-03 20:59:00.086923 2020-11-03 20:59:00.086923 1 0.0 1295 454 1503 3 528.00 1584.00 2020-11-03 20:59:00.109275 2020-11-03 20:59:00.109275 1 0.0 1296 455 1504 3 324.50 973.50 2020-11-03 21:14:24.286322 2020-11-03 21:14:24.286322 1 0.0 1297 455 1505 3 209.00 627.00 2020-11-03 21:14:24.308405 2020-11-03 21:14:24.308405 1 0.0 1298 455 1506 6 165.00 990.00 2020-11-03 21:14:24.329923 2020-11-03 21:14:24.329923 1 0.0 1299 455 1507 6 275.00 1650.00 2020-11-03 21:14:24.351138 2020-11-03 21:14:24.351138 1 0.0 1300 455 1508 7 165.00 1155.00 2020-11-03 21:14:24.372485 2020-11-03 21:14:24.372485 1 0.0 1301 455 1509 2 209.00 418.00 2020-11-03 21:14:24.39546 2020-11-03 21:14:24.39546 1 0.0 1302 455 1510 3 209.00 627.00 2020-11-03 21:14:24.417843 2020-11-03 21:14:24.417843 1 0.0 1303 456 1511 6 330.00 1980.00 2020-11-03 22:26:52.635999 2020-11-03 22:26:52.635999 1 0.0 1304 456 1512 3 439.50 1318.50 2020-11-03 22:26:52.657659 2020-11-03 22:26:52.657659 1 0.0 1305 456 1513 3 528.00 1584.00 2020-11-03 22:26:52.677462 2020-11-03 22:26:52.677462 1 0.0 1306 456 1514 3 478.50 1435.50 2020-11-03 22:26:52.698066 2020-11-03 22:26:52.698066 1 0.0 1307 456 1515 3 231.00 693.00 2020-11-03 22:26:52.71869 2020-11-03 22:26:52.71869 1 0.0 1308 457 1516 3 440.00 1320.00 2020-11-04 00:05:33.181085 2020-11-04 00:05:33.181085 1 0.0 1309 457 1517 3 440.00 1320.00 2020-11-04 00:05:33.204012 2020-11-04 00:05:33.204012 1 0.0 1310 457 1518 3 297.00 891.00 2020-11-04 00:05:33.225825 2020-11-04 00:05:33.225825 1 0.0 1311 457 1519 3 231.00 693.00 2020-11-04 00:05:33.249953 2020-11-04 00:05:33.249953 1 0.0 1312 457 1520 3 324.50 973.50 2020-11-04 00:05:33.273824 2020-11-04 00:05:33.273824 1 0.0 1313 457 1521 9 302.50 2722.50 2020-11-04 00:05:33.29917 2020-11-04 00:05:33.29917 1 0.0 1314 457 1522 6 275.00 1650.00 2020-11-04 00:05:33.321464 2020-11-04 00:05:33.321464 1 0.0 1315 457 1523 9 181.50 1633.50 2020-11-04 00:05:33.340921 2020-11-04 00:05:33.340921 1 0.0 1316 457 1524 3 280.50 841.50 2020-11-04 00:05:33.360403 2020-11-04 00:05:33.360403 1 0.0 1317 457 1525 3 264.00 792.00 2020-11-04 00:05:33.381138 2020-11-04 00:05:33.381138 1 0.0 1318 457 1526 3 258.50 775.50 2020-11-04 00:05:33.400216 2020-11-04 00:05:33.400216 1 0.0 1319 457 1527 5 190.00 950.00 2020-11-04 00:05:33.418883 2020-11-04 00:05:33.418883 1 0.0 1320 458 1528 6 280.50 1683.00 2020-11-04 00:24:44.059835 2020-11-04 00:24:44.059835 1 0.0 1321 459 1529 1 599.50 599.50 2020-11-04 01:39:20.700657 2020-11-04 01:39:20.700657 1 0.0 1322 460 1529 5 599.50 2997.50 2020-11-04 01:40:36.451277 2020-11-04 01:40:36.451277 1 0.0 1323 461 1159 5 749.50 3747.50 2020-11-04 01:41:20.265356 2020-11-04 01:41:20.265356 1 0.0 1324 461 1371 17 899.50 15291.50 2020-11-04 01:41:20.288511 2020-11-04 01:41:20.288511 1 0.0 1325 462 1500 3 220.00 660.00 2020-11-05 01:27:39.970668 2020-11-05 01:27:39.970668 1 0.0 1326 462 1519 2 231.00 462.00 2020-11-05 01:27:39.994918 2020-11-05 01:27:39.994918 1 0.0 1327 462 1515 3 231.00 693.00 2020-11-05 01:27:40.032167 2020-11-05 01:27:40.032167 1 0.0 1328 462 1482 2 352.00 704.00 2020-11-05 01:27:40.055316 2020-11-05 01:27:40.055316 1 0.0 1329 462 1480 3 352.00 1056.00 2020-11-05 01:27:40.086018 2020-11-05 01:27:40.086018 1 0.0 1330 462 1517 3 440.00 1320.00 2020-11-05 01:27:40.118093 2020-11-05 01:27:40.118093 1 0.0 1331 463 1516 1 440.00 440.00 2020-11-06 01:15:17.812525 2020-11-06 01:15:17.812525 1 0.0 1332 463 1507 1 275.00 275.00 2020-11-06 01:15:17.836286 2020-11-06 01:15:17.836286 1 0.0 1333 463 1510 1 209.00 209.00 2020-11-06 01:15:17.859589 2020-11-06 01:15:17.859589 1 0.0 1334 463 1522 1 275.00 275.00 2020-11-06 01:15:17.89957 2020-11-06 01:15:17.89957 1 0.0 1335 463 1485 2 330.00 660.00 2020-11-06 01:15:17.924368 2020-11-06 01:15:17.924368 1 0.0 1336 463 1497 3 231.00 693.00 2020-11-06 01:15:17.952289 2020-11-06 01:15:17.952289 1 0.0 1337 463 1502 3 308.00 924.00 2020-11-06 01:15:17.976738 2020-11-06 01:15:17.976738 1 0.0 1338 463 1503 3 528.00 1584.00 2020-11-06 01:15:18.000475 2020-11-06 01:15:18.000475 1 0.0 1339 464 1485 1 330.00 330.00 2020-11-06 01:17:18.79599 2020-11-06 01:17:18.79599 1 0.0 1340 465 1490 1 231.00 231.00 2020-11-06 20:57:59.608297 2020-11-06 20:57:59.608297 1 0.0 1341 465 1523 1 181.50 181.50 2020-11-06 20:57:59.63331 2020-11-06 20:57:59.63331 1 0.0 1342 465 1513 1 528.00 528.00 2020-11-06 20:57:59.658387 2020-11-06 20:57:59.658387 1 0.0 1343 466 1483 3 407.00 1221.00 2020-11-06 21:37:27.917675 2020-11-06 21:37:27.917675 1 0.0 1344 466 1520 1 324.50 324.50 2020-11-06 21:37:27.942666 2020-11-06 21:37:27.942666 1 0.0 1345 466 1494 3 561.00 1683.00 2020-11-06 21:37:27.967865 2020-11-06 21:37:27.967865 1 0.0 1346 466 1495 3 522.00 1566.00 2020-11-06 21:37:27.991736 2020-11-06 21:37:27.991736 1 0.0 1347 466 1496 3 495.00 1485.00 2020-11-06 21:37:28.016014 2020-11-06 21:37:28.016014 1 0.0 1348 466 1501 3 440.00 1320.00 2020-11-06 21:37:28.042254 2020-11-06 21:37:28.042254 1 0.0 1349 466 1512 1 439.50 439.50 2020-11-06 21:37:28.079902 2020-11-06 21:37:28.079902 1 0.0 1350 466 1514 3 478.50 1435.50 2020-11-06 21:37:28.118208 2020-11-06 21:37:28.118208 1 0.0 1351 466 1516 2 440.00 880.00 2020-11-06 21:37:28.156971 2020-11-06 21:37:28.156971 1 0.0 1352 466 1490 5 231.00 1155.00 2020-11-06 21:37:28.18201 2020-11-06 21:37:28.18201 1 0.0 1353 466 1491 9 363.00 3267.00 2020-11-06 21:37:28.203229 2020-11-06 21:37:28.203229 1 0.0 1354 466 1492 6 324.50 1947.00 2020-11-06 21:37:28.230096 2020-11-06 21:37:28.230096 1 0.0 1355 466 1493 9 341.00 3069.00 2020-11-06 21:37:28.25521 2020-11-06 21:37:28.25521 1 0.0 1356 466 1498 6 143.00 858.00 2020-11-06 21:37:28.282283 2020-11-06 21:37:28.282283 1 0.0 1357 466 1499 5 187.00 935.00 2020-11-06 21:37:28.307423 2020-11-06 21:37:28.307423 1 0.0 1358 466 1505 3 209.00 627.00 2020-11-06 21:37:28.344628 2020-11-06 21:37:28.344628 1 0.0 1359 466 1506 6 165.00 990.00 2020-11-06 21:37:28.375134 2020-11-06 21:37:28.375134 1 0.0 1360 466 1507 5 275.00 1375.00 2020-11-06 21:37:28.401557 2020-11-06 21:37:28.401557 1 0.0 1361 466 1511 6 330.00 1980.00 2020-11-06 21:37:28.422764 2020-11-06 21:37:28.422764 1 0.0 1362 466 1521 9 302.50 2722.50 2020-11-06 21:37:28.447681 2020-11-06 21:37:28.447681 1 0.0 1363 466 1525 3 264.00 792.00 2020-11-06 21:37:28.476386 2020-11-06 21:37:28.476386 1 0.0 1364 467 1510 2 209.00 418.00 2020-11-06 22:21:30.651397 2020-11-06 22:21:30.651397 1 0.0 1365 467 1504 3 324.50 973.50 2020-11-06 22:21:30.673275 2020-11-06 22:21:30.673275 1 0.0 1366 467 1513 2 528.00 1056.00 2020-11-06 22:21:30.700358 2020-11-06 22:21:30.700358 1 0.0 1367 467 1522 5 275.00 1375.00 2020-11-06 22:21:30.720773 2020-11-06 22:21:30.720773 1 0.0 1368 467 1523 8 181.50 1452.00 2020-11-06 22:21:30.741611 2020-11-06 22:21:30.741611 1 0.0 1369 467 1518 3 297.00 891.00 2020-11-06 22:21:30.762879 2020-11-06 22:21:30.762879 1 0.0 1370 467 1526 3 258.50 775.50 2020-11-06 22:21:30.788014 2020-11-06 22:21:30.788014 1 0.0 1371 467 1524 3 280.50 841.50 2020-11-06 22:21:30.813028 2020-11-06 22:21:30.813028 1 0.0 1372 467 1487 3 412.00 1236.00 2020-11-06 22:21:30.839658 2020-11-06 22:21:30.839658 1 0.0 1373 467 1528 6 280.50 1683.00 2020-11-06 22:21:30.864385 2020-11-06 22:21:30.864385 1 0.0 1374 468 1520 2 324.50 649.00 2020-11-06 22:23:18.300147 2020-11-06 22:23:18.300147 1 0.0 1375 469 1372 6 699.50 4197.00 2020-11-10 20:01:04.880026 2020-11-10 20:01:04.880026 1 0.0 1376 470 1372 5 699.50 3497.50 2020-11-10 20:53:10.917553 2020-11-10 20:53:10.917553 1 0.0 1377 471 1475 10 799.50 7995.00 2020-11-11 20:52:41.697323 2020-11-11 20:52:41.697323 1 0.0 1378 472 1530 2 299.50 599.00 2020-11-12 00:46:28.482832 2020-11-12 00:46:28.482832 1 0.0 1379 473 1531 2 299.50 599.00 2020-11-12 01:17:36.713771 2020-11-12 01:17:36.713771 1 0.0 1380 473 1532 1 249.50 249.50 2020-11-12 01:17:36.741662 2020-11-12 01:17:36.741662 1 0.0 1381 474 1533 1 1549.50 1549.50 2020-11-12 01:58:31.959464 2020-11-12 01:58:31.959464 1 0.0 1382 475 1534 1 341.00 341.00 2020-11-14 01:54:25.158099 2020-11-14 01:54:25.158099 1 0.0 1383 476 1199 1 33.44 33.44 2020-11-14 01:55:04.580855 2020-11-14 01:55:04.580855 1 0.0 1384 477 1535 1 363.00 363.00 2020-11-14 18:56:47.307338 2020-11-14 18:56:47.307338 1 0.0 1385 477 1536 1 275.00 275.00 2020-11-14 18:56:47.351816 2020-11-14 18:56:47.351816 1 0.0 1386 477 1537 1 517.00 517.00 2020-11-14 18:56:47.376338 2020-11-14 18:56:47.376338 1 0.0 1387 477 1538 1 275.00 275.00 2020-11-14 18:56:47.402988 2020-11-14 18:56:47.402988 1 0.0 1388 477 1539 1 418.00 418.00 2020-11-14 18:56:47.429787 2020-11-14 18:56:47.429787 1 0.0 1389 477 1540 1 478.50 478.50 2020-11-14 18:56:47.454319 2020-11-14 18:56:47.454319 1 0.0 1390 477 1541 1 500.50 500.50 2020-11-14 18:56:47.475814 2020-11-14 18:56:47.475814 1 0.0 1391 477 1542 1 341.00 341.00 2020-11-14 18:56:47.499613 2020-11-14 18:56:47.499613 1 0.0 1392 477 1543 1 517.00 517.00 2020-11-14 18:56:47.521979 2020-11-14 18:56:47.521979 1 0.0 1393 478 1475 18 799.50 14391.00 2020-11-14 19:50:50.933603 2020-11-14 19:50:50.933603 1 0.0 1394 478 1371 12 899.50 10794.00 2020-11-14 19:50:50.960329 2020-11-14 19:50:50.960329 1 0.0 1395 478 1357 5 699.50 3497.50 2020-11-14 19:50:50.990133 2020-11-14 19:50:50.990133 1 0.0 1396 479 1538 5 275.00 1375.00 2020-11-14 20:18:38.078606 2020-11-14 20:18:38.078606 1 0.0 1397 480 1540 3 478.50 1435.50 2020-11-16 20:55:32.007764 2020-11-16 20:55:32.007764 1 0.0 1398 480 1541 3 500.50 1501.50 2020-11-16 20:55:32.036008 2020-11-16 20:55:32.036008 1 0.0 1399 481 1534 3 341.00 1023.00 2020-11-16 20:59:41.269432 2020-11-16 20:59:41.269432 1 0.0 1400 481 1535 3 363.00 1089.00 2020-11-16 20:59:41.297871 2020-11-16 20:59:41.297871 1 0.0 1401 481 1538 6 275.00 1650.00 2020-11-16 20:59:41.32793 2020-11-16 20:59:41.32793 1 0.0 1402 481 1537 3 517.00 1551.00 2020-11-16 20:59:41.35896 2020-11-16 20:59:41.35896 1 0.0 1403 481 1539 3 418.00 1254.00 2020-11-16 20:59:41.397156 2020-11-16 20:59:41.397156 1 0.0 1404 482 1544 2 949.50 1899.00 2020-11-19 00:29:09.41428 2020-11-19 00:29:09.41428 1 0.0 1405 483 1545 2 949.50 1899.00 2020-11-19 01:12:27.094479 2020-11-19 01:12:27.094479 1 0.0 1406 483 1546 3 1049.50 3148.50 2020-11-19 01:12:27.129115 2020-11-19 01:12:27.129115 1 0.0 1407 483 1181 1 749.50 749.50 2020-11-19 01:12:27.163287 2020-11-19 01:12:27.163287 1 0.0 1408 483 1372 8 699.50 5596.00 2020-11-19 01:12:27.195893 2020-11-19 01:12:27.195893 1 0.0 1409 484 1372 6 699.50 4197.00 2020-11-21 19:07:56.634956 2020-11-21 19:07:56.634956 1 0.0 1410 485 1375 6 849.50 5097.00 2020-11-23 19:16:18.012523 2020-11-23 19:16:18.012523 1 0.0 1411 486 1547 5 749.50 3747.50 2020-11-26 19:53:49.008528 2020-11-26 19:53:49.008528 1 0.0 1412 487 1372 3 699.50 2098.50 2020-11-26 20:23:39.511861 2020-11-26 20:23:39.511861 1 0.0 1413 487 1547 3 749.50 2248.50 2020-11-26 20:23:39.534017 2020-11-26 20:23:39.534017 1 0.0 1414 488 1372 4 699.50 2798.00 2020-11-26 20:23:59.719776 2020-11-26 20:23:59.719776 1 0.0 1415 489 1542 5 341.00 1705.00 2020-11-27 00:07:46.374926 2020-11-27 00:07:46.374926 1 0.0 1416 490 807 2 200.00 400.00 2020-11-27 00:46:12.400973 2020-11-27 00:46:12.400973 1 0.0 1417 490 786 1 224.20 224.20 2020-11-27 00:46:12.425914 2020-11-27 00:46:12.425914 1 0.0 1418 490 788 4 224.00 896.00 2020-11-27 00:46:12.450505 2020-11-27 00:46:12.450505 1 0.0 1419 490 789 4 224.00 896.00 2020-11-27 00:46:12.474417 2020-11-27 00:46:12.474417 1 0.0 1420 490 791 3 170.00 510.00 2020-11-27 00:46:12.49895 2020-11-27 00:46:12.49895 1 0.0 1421 491 1371 3 899.50 2698.50 2020-11-27 01:20:46.206699 2020-11-27 01:20:46.206699 1 0.0 1422 492 1371 6 899.50 5397.00 2020-11-28 21:17:02.549609 2020-11-28 21:17:02.549609 1 0.0 1423 493 1361 1 449.50 449.50 2020-12-01 20:26:41.649226 2020-12-01 20:26:41.649226 1 0.0 1424 494 1541 2 500.50 1001.00 2020-12-03 00:35:06.237726 2020-12-03 00:35:06.237726 1 0.0 1425 495 1540 2 478.50 957.00 2020-12-03 00:45:10.503078 2020-12-03 00:45:10.503078 1 0.0 1426 496 1548 1 449.50 449.50 2020-12-09 19:37:58.704469 2020-12-09 19:37:58.704469 1 0.0 1427 497 1512 1 439.50 439.50 2020-12-12 20:31:57.967953 2020-12-12 20:31:57.967953 1 0.0 1428 498 1333 3 280.00 840.00 2020-12-13 00:35:24.18511 2020-12-13 00:35:24.18511 1 0.0 1429 499 1549 12 1049.50 12594.00 2020-12-13 01:02:38.914692 2020-12-13 01:02:38.914692 1 0.0 1430 500 1371 1 899.50 899.50 2020-12-13 01:03:02.540332 2020-12-13 01:03:02.540332 1 0.0 1431 501 1094 1 228.00 228.00 2020-12-14 21:50:04.513774 2020-12-14 21:50:04.513774 1 0.0 1432 502 1550 10 749.50 7495.00 2020-12-15 22:20:21.858839 2020-12-15 22:20:21.858839 1 0.0 1433 503 1547 5 749.50 3747.50 2020-12-15 22:29:20.489994 2020-12-15 22:29:20.489994 1 0.0 1434 503 1549 5 1049.50 5247.50 2020-12-15 22:29:20.514998 2020-12-15 22:29:20.514998 1 0.0 1435 503 1550 8 749.50 5996.00 2020-12-15 22:29:20.546606 2020-12-15 22:29:20.546606 1 0.0 1436 504 1543 5 517.00 2585.00 2020-12-15 23:11:41.627028 2020-12-15 23:11:41.627028 1 0.0 1437 505 1371 4 899.50 3598.00 2020-12-16 18:12:41.142061 2020-12-16 18:12:41.142061 1 0.0 1438 506 1551 1 749.50 749.50 2020-12-18 06:45:01.413233 2020-12-18 06:45:01.413233 1 0.0 1439 507 1552 1 299.50 299.50 2020-12-22 20:51:48.379867 2020-12-22 20:51:48.379867 1 0.0 1440 508 1553 1 399.50 399.50 2020-12-22 20:52:43.483923 2020-12-22 20:52:43.483923 1 0.0 1441 509 1554 1 1049.50 1049.50 2020-12-23 18:40:47.701128 2020-12-23 18:40:47.701128 1 0.0 1442 510 1547 2 749.50 1499.00 2021-01-04 21:41:21.858616 2021-01-04 21:41:21.858616 1 0.0 1443 510 1555 1 649.50 649.50 2021-01-04 21:41:21.874576 2021-01-04 21:41:21.874576 1 0.0 1444 510 1556 1 649.50 649.50 2021-01-04 21:41:21.886178 2021-01-04 21:41:21.886178 1 0.0 1445 511 1547 3 749.50 2248.50 2021-01-04 23:54:52.245394 2021-01-04 23:54:52.245394 1 0.0 1446 511 1555 1 649.50 649.50 2021-01-04 23:54:52.276801 2021-01-04 23:54:52.276801 1 0.0 1447 511 1556 2 649.50 1299.00 2021-01-04 23:54:52.307069 2021-01-04 23:54:52.307069 1 0.0 1448 511 1557 1 499.50 499.50 2021-01-04 23:54:52.335056 2021-01-04 23:54:52.335056 1 0.0 1449 511 1558 1 1049.50 1049.50 2021-01-04 23:54:52.35836 2021-01-04 23:54:52.35836 1 0.0 1450 512 1559 5 549.50 2747.50 2021-01-11 22:55:16.634057 2021-01-11 22:55:16.634057 1 0.0 1451 513 1560 2 549.50 1099.00 2021-01-13 00:13:24.593113 2021-01-13 00:13:24.593113 1 0.0 1452 513 1561 3 449.50 1348.50 2021-01-13 00:13:24.6173 2021-01-13 00:13:24.6173 1 0.0 1453 513 1562 1 399.50 399.50 2021-01-13 00:13:24.640894 2021-01-13 00:13:24.640894 1 0.0 1454 514 1563 2 899.50 1799.00 2021-01-13 00:23:04.017239 2021-01-13 00:23:04.017239 1 0.0 1455 514 1564 1 449.50 449.50 2021-01-13 00:23:04.041652 2021-01-13 00:23:04.041652 1 0.0 1456 515 1560 1 549.50 549.50 2021-01-13 00:25:16.307371 2021-01-13 00:25:16.307371 1 0.0 1457 515 1563 2 899.50 1799.00 2021-01-13 00:25:16.337913 2021-01-13 00:25:16.337913 1 0.0 1458 515 1564 1 449.50 449.50 2021-01-13 00:25:16.371952 2021-01-13 00:25:16.371952 1 0.0 1459 515 1559 4 549.50 2198.00 2021-01-13 00:25:16.401576 2021-01-13 00:25:16.401576 1 0.0 1460 516 1565 3 699.50 2098.50 2021-01-16 01:26:33.108632 2021-01-16 01:26:33.108632 1 0.0 1461 516 1566 1 749.50 749.50 2021-01-16 01:26:33.14852 2021-01-16 01:26:33.14852 1 0.0 1462 516 1567 3 699.50 2098.50 2021-01-16 01:26:33.174293 2021-01-16 01:26:33.174293 1 0.0 1463 516 1568 2 899.50 1799.00 2021-01-16 01:26:33.200837 2021-01-16 01:26:33.200837 1 0.0 1464 517 1539 2 418.00 836.00 2021-01-16 01:50:08.136095 2021-01-16 01:50:08.136095 1 0.0 1465 518 1569 2 649.50 1299.00 2021-01-22 00:30:18.053148 2021-01-22 00:30:18.053148 1 0.0 1466 519 1569 1 649.50 649.50 2021-01-22 00:30:37.902683 2021-01-22 00:30:37.902683 1 0.0 1467 520 1570 1 849.50 849.50 2021-01-23 00:54:24.136229 2021-01-23 00:54:24.136229 1 0.0 \. -- -- Name: purchase_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.purchase_details_id_seq', 1467, true); -- -- Data for Name: purchases; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.purchases (id, supplier_id, pointsale_id, purchase_code, amount, tax, total, observations, purchase_date, user_id, created_at, updated_at, status, warehouse_id, is_in_dollars, exchange) FROM stdin; 1 1 \N CEN-C-1 2998.50 0.00 2998.50 2019-02-06 4 2019-02-07 01:31:12.21319 2019-02-07 01:31:12.21319 0 1 f \N 2 1 \N CEN-C-2 2398.50 0.00 2398.50 2019-02-06 4 2019-02-07 01:39:35.411918 2019-02-07 01:39:35.411918 0 1 f \N 5 1 1 PV1-C-3 949.50 0.00 949.50 2019-02-08 4 2019-02-08 18:36:32.487372 2019-02-08 18:36:32.487372 0 \N f \N 6 1 1 PV1-C-4 849.50 0.00 849.50 2019-02-08 4 2019-02-08 18:37:44.210343 2019-02-08 18:37:44.210343 0 \N f \N 7 1 1 PV1-C-5 1099.00 0.00 1099.00 2019-02-08 4 2019-02-08 18:38:51.857115 2019-02-08 18:38:51.857115 0 \N f \N 8 1 1 PV1-C-6 799.50 0.00 799.50 2019-02-08 4 2019-02-08 18:40:25.601986 2019-02-08 18:40:25.601986 0 \N f \N 15 1 2 PV2-C-7 174.50 0.00 174.50 2019-02-08 4 2019-02-08 18:55:49.808862 2019-02-08 18:55:49.808862 0 \N f \N 16 1 2 PV2-C-8 899.00 0.00 899.00 2019-02-11 4 2019-02-11 17:35:51.366118 2019-02-11 17:35:51.366118 0 \N f \N 17 1 2 PV2-C-9 399.50 0.00 399.50 2019-02-11 4 2019-02-11 17:38:31.51415 2019-02-11 17:38:31.51415 0 \N f \N 18 1 1 PV1-C-7 399.50 0.00 399.50 2019-02-11 4 2019-02-11 18:21:22.544345 2019-02-11 18:21:22.544345 0 \N f \N 19 1 1 PV1-C-8 349.50 0.00 349.50 2019-02-11 4 2019-02-11 18:23:33.442056 2019-02-11 18:23:33.442056 0 \N f \N 20 1 1 PV1-C-9 799.00 0.00 799.00 2019-02-11 4 2019-02-11 18:36:33.362139 2019-02-11 18:36:33.362139 0 \N f \N 21 1 1 PV1-C-10 1899.00 0.00 1899.00 2019-02-11 4 2019-02-11 18:48:39.106149 2019-02-11 18:48:39.106149 0 \N f \N 22 1 2 PV2-C-10 1798.50 0.00 1798.50 2019-02-11 4 2019-02-11 19:00:06.123156 2019-02-11 19:00:06.123156 0 \N f \N 23 1 1 PV1-C-11 1399.00 0.00 1399.00 2019-02-11 4 2019-02-11 19:01:50.213037 2019-02-11 19:01:50.213037 0 \N f \N 24 1 1 PV1-C-12 699.50 0.00 699.50 2019-02-11 4 2019-02-11 20:42:37.678923 2019-02-11 20:42:37.678923 0 \N f \N 25 1 1 PV1-C-13 699.50 0.00 699.50 2019-02-11 4 2019-02-11 20:44:45.525921 2019-02-11 20:49:26.722023 1 \N f \N 26 1 1 PV1-C-14 899.50 0.00 899.50 2019-02-11 4 2019-02-11 20:52:11.306122 2019-02-11 20:52:11.306122 0 \N f \N 27 2 2 PV2-C-11 851.76 0.00 851.76 2019-02-11 1 2019-02-12 00:31:33.3148 2019-02-12 00:31:33.3148 0 \N f \N 28 2 2 PV2-C-12 2136.00 0.00 2136.00 2019-02-11 1 2019-02-12 01:52:53.305509 2019-02-12 01:52:53.305509 0 \N f \N 29 2 1 PV1-C-15 3960.00 0.00 3960.00 2019-02-12 1 2019-02-12 19:36:39.062256 2019-02-12 19:36:39.062256 0 \N f \N 30 1 1 PV1-C-16 4896.50 0.00 4896.50 2019-02-12 4 2019-02-12 23:55:10.904271 2019-02-12 23:55:10.904271 0 \N f \N 31 2 2 PV2-C-13 2700.00 0.00 2700.00 2019-02-13 4 2019-02-13 23:37:09.342412 2019-02-13 23:37:09.342412 0 \N f \N 32 1 1 PV1-C-17 1599.00 0.00 1599.00 2019-02-13 4 2019-02-13 23:46:36.436966 2019-02-13 23:46:36.436966 0 \N f \N 33 2 1 PV1-C-18 269.70 0.00 269.70 2019-02-15 1 2019-02-16 00:11:39.843392 2019-02-16 00:12:53.297847 1 \N f \N 34 2 1 PV1-C-19 449.50 0.00 449.50 2019-02-15 1 2019-02-16 00:14:56.38382 2019-02-16 00:14:56.38382 0 \N f \N 35 2 2 PV2-C-14 2400.00 0.00 2400.00 2019-02-19 4 2019-02-19 17:47:48.542227 2019-02-19 17:47:48.542227 0 \N f \N 36 1 1 PV1-C-20 6993.00 0.00 6993.00 2019-02-20 4 2019-02-21 00:33:44.578617 2019-02-21 00:33:44.578617 0 \N f \N 37 2 2 PV2-C-15 1785.60 0.00 1785.60 2019-02-20 4 2019-02-21 01:29:11.664557 2019-02-21 01:29:11.664557 0 \N f \N 38 1 1 PV1-C-21 1799.00 0.00 1799.00 2019-02-22 2 2019-02-22 19:25:33.209127 2019-02-22 19:25:33.209127 0 \N f \N 39 1 1 PV1-C-22 1799.00 0.00 1799.00 2019-02-22 2 2019-02-22 19:42:10.880602 2019-02-22 19:42:10.880602 0 \N f \N 40 2 2 PV2-C-16 1197.00 0.00 1197.00 2019-02-23 4 2019-02-23 19:55:41.770602 2019-02-23 19:55:41.770602 0 \N f \N 41 2 2 PV2-C-17 230.00 0.00 230.00 2019-02-23 4 2019-02-23 20:09:48.374623 2019-02-23 20:09:48.374623 0 \N f \N 42 2 2 PV2-C-18 460.00 0.00 460.00 2019-02-23 4 2019-02-23 20:11:04.213095 2019-02-23 20:11:04.213095 0 \N f \N 43 2 2 PV2-C-19 460.00 0.00 460.00 2019-02-23 4 2019-02-23 20:12:52.983862 2019-02-23 20:12:52.983862 0 \N f \N 44 1 1 PV1-C-23 849.50 0.00 849.50 2019-02-23 2 2019-02-24 01:25:37.922195 2019-02-24 01:25:37.922195 0 \N f \N 45 2 1 PV1-C-24 1850.00 0.00 1850.00 2019-03-01 4 2019-03-02 00:50:39.239423 2019-03-02 00:50:39.239423 0 \N f \N 46 2 1 PV1-C-25 13934.50 0.00 13934.50 2019-03-02 2 2019-03-02 17:16:01.489854 2019-03-02 17:16:01.489854 0 \N f \N 47 1 1 PV1-C-26 4247.50 0.00 4247.50 2019-03-11 2 2019-03-11 21:09:22.374894 2019-03-11 21:09:22.374894 0 \N f \N 48 1 1 PV1-C-26 4247.50 0.00 4247.50 2019-03-11 2 2019-03-11 21:09:22.977857 2019-03-11 21:09:22.977857 0 \N f \N 49 2 1 PV1-C-28 1003.50 0.00 1003.50 2019-03-15 2 2019-03-15 21:02:47.326135 2019-03-15 21:02:47.326135 0 \N f \N 50 2 1 PV1-C-29 1761.12 0.00 1761.12 2019-03-21 4 2019-03-21 22:28:11.047273 2019-03-21 22:28:11.047273 0 \N f \N 51 1 1 PV1-C-30 1283.52 0.00 1283.52 2019-03-21 4 2019-03-21 22:30:38.521861 2019-03-21 22:30:38.521861 0 \N f \N 52 1 1 PV1-C-31 2746.20 0.00 2746.20 2019-03-21 4 2019-03-21 22:33:35.64751 2019-03-21 22:33:35.64751 0 \N f \N 53 1 1 PV1-C-32 1552.20 0.00 1552.20 2019-03-21 4 2019-03-21 22:37:44.456512 2019-03-21 22:37:44.456512 0 \N f \N 54 2 1 PV1-C-33 1791.00 0.00 1791.00 2019-03-21 4 2019-03-21 22:41:21.163935 2019-03-21 22:41:21.163935 0 \N f \N 55 2 1 PV1-C-34 2388.00 0.00 2388.00 2019-03-21 4 2019-03-21 22:44:19.7199 2019-03-21 22:44:19.7199 0 \N f \N 56 2 1 PV1-C-35 2280.00 0.00 2280.00 2019-03-21 4 2019-03-21 22:47:05.401269 2019-03-21 22:47:05.401269 0 \N f \N 57 2 1 PV1-C-36 3342.60 0.00 3342.60 2019-03-21 4 2019-03-21 22:50:07.661567 2019-03-21 22:50:07.661567 0 \N f \N 58 2 1 PV1-C-37 676.60 0.00 676.60 2019-03-21 4 2019-03-21 22:52:32.883529 2019-03-21 22:52:32.883529 0 \N f \N 59 2 1 PV1-C-38 3343.20 0.00 3343.20 2019-03-21 4 2019-03-21 22:54:19.394114 2019-03-21 22:54:19.394114 0 \N f \N 60 2 1 PV1-C-39 3016.20 0.00 3016.20 2019-03-21 4 2019-03-21 23:04:22.985577 2019-03-21 23:04:22.985577 0 \N f \N 61 2 1 PV1-C-40 13992.00 0.00 13992.00 2019-03-21 4 2019-03-21 23:45:39.762925 2019-03-21 23:45:39.762925 0 \N f \N 62 2 1 PV1-C-41 2697.00 0.00 2697.00 2019-03-21 4 2019-03-21 23:50:19.948353 2019-03-21 23:50:19.948353 0 \N f \N 63 2 1 PV1-C-42 3383.00 0.00 3383.00 2019-03-23 1 2019-03-23 22:13:51.586526 2019-03-23 22:13:51.586526 0 \N f \N 64 2 2 PV2-C-20 2997.00 0.00 2997.00 2019-03-23 3 2019-03-23 23:37:06.19986 2019-03-23 23:37:06.19986 0 \N f \N 65 2 2 PV2-C-21 1797.00 0.00 1797.00 2019-03-25 3 2019-03-25 17:53:45.91521 2019-03-25 17:53:45.91521 0 \N f \N 66 2 2 PV2-C-22 2128.68 0.00 2128.68 2019-03-25 4 2019-03-26 01:14:54.248965 2019-03-26 01:19:34.847923 1 \N f \N 67 2 2 PV2-C-23 2128.68 0.00 2128.68 2019-03-25 4 2019-03-26 01:21:34.546158 2019-03-26 01:21:34.546158 0 \N f \N 68 2 2 PV2-C-24 2306.04 0.00 2306.04 2019-03-25 4 2019-03-26 01:30:27.044134 2019-03-26 01:30:27.044134 0 \N f \N 69 2 2 PV2-C-25 1064.34 0.00 1064.34 2019-03-25 4 2019-03-26 01:39:39.055132 2019-03-26 01:39:39.055132 0 \N f \N 70 2 2 PV2-C-26 1419.12 0.00 1419.12 2019-03-25 4 2019-03-26 01:44:45.469657 2019-03-26 01:46:22.289762 1 \N f \N 71 2 2 PV2-C-27 1419.12 0.00 1419.12 2019-03-25 4 2019-03-26 01:47:25.848222 2019-03-26 01:47:25.848222 0 \N f \N 72 2 2 PV2-C-28 1300.86 0.00 1300.86 2019-03-25 4 2019-03-26 01:51:16.985306 2019-03-26 01:51:16.985306 0 \N f \N 73 2 2 PV2-C-29 2719.98 0.00 2719.98 2019-03-25 4 2019-03-26 01:58:13.660457 2019-03-26 01:58:13.660457 0 \N f \N 74 2 2 PV2-C-30 2128.68 0.00 2128.68 2019-03-25 4 2019-03-26 02:03:31.298169 2019-03-26 02:03:31.298169 0 \N f \N 75 2 2 PV2-C-31 1773.90 0.00 1773.90 2019-03-25 4 2019-03-26 02:06:12.522317 2019-03-26 02:06:12.522317 0 \N f \N 3 1 1 PV1-C-1 1699.00 0.00 1699.00 2019-02-08 4 2019-02-08 18:11:47.614381 2019-05-23 01:57:22.488492 2 \N f \N 10 1 2 PV2-C-2 499.00 0.00 499.00 2019-02-08 4 2019-02-08 18:50:36.33685 2019-07-05 22:12:24.876939 2 \N f \N 11 1 2 PV2-C-3 399.00 0.00 399.00 2019-02-08 4 2019-02-08 18:51:39.011486 2019-08-17 01:33:27.456432 2 \N f \N 13 1 2 PV2-C-5 249.50 0.00 249.50 2019-02-08 4 2019-02-08 18:53:51.680665 2019-09-11 23:49:16.539044 2 \N f \N 12 1 2 PV2-C-4 349.00 0.00 349.00 2019-02-08 4 2019-02-08 18:52:43.630602 2019-09-22 01:19:10.856993 2 \N f \N 14 1 2 PV2-C-6 224.50 0.00 224.50 2019-02-08 4 2019-02-08 18:54:48.418984 2019-10-20 01:39:46.110595 2 \N f \N 4 1 1 PV1-C-2 749.50 0.00 749.50 2019-02-08 4 2019-02-08 18:13:04.966974 2019-12-06 02:52:07.750308 2 \N f \N 76 2 2 PV2-C-32 1419.12 0.00 1419.12 2019-03-25 4 2019-03-26 02:12:49.917425 2019-03-26 02:12:49.917425 0 \N f \N 77 2 2 PV2-C-33 1892.16 0.00 1892.16 2019-03-25 4 2019-03-26 02:15:13.746446 2019-03-26 02:15:13.746446 0 \N f \N 78 1 1 PV1-C-43 1499.00 0.00 1499.00 2019-03-28 2 2019-03-28 23:02:41.282227 2019-03-28 23:02:41.282227 0 \N f \N 79 2 2 PV2-C-34 3534.00 0.00 3534.00 2019-04-08 3 2019-04-08 22:48:35.888222 2019-04-08 22:48:35.888222 0 \N f \N 80 2 1 PV1-C-44 1965.60 0.00 1965.60 2019-04-08 1 2019-04-08 22:59:10.428209 2019-04-08 22:59:10.428209 0 \N f \N 9 1 2 PV2-C-1 399.00 0.00 399.00 2019-02-08 4 2019-02-08 18:49:44.354432 2019-04-13 01:23:12.38467 2 \N f \N 81 1 1 PV1-C-45 7992.50 0.00 7992.50 2019-04-15 2 2019-04-16 00:45:30.261731 2019-04-16 00:45:30.261731 0 \N f \N 82 2 2 PV2-C-35 6947.50 0.00 6947.50 NO ESTABAN EN SISTEMA 2019-04-16 3 2019-04-16 17:48:02.776524 2019-04-16 17:48:02.776524 0 \N f \N 83 2 1 PV1-C-46 240.00 0.00 240.00 2019-04-16 2 2019-04-16 17:50:00.81582 2019-04-16 17:50:00.81582 0 \N f \N 84 1 1 PV1-C-47 14741.50 0.00 14741.50 2019-04-16 2 2019-04-16 19:33:08.964132 2019-04-16 19:33:08.964132 0 \N f \N 85 1 1 PV1-C-48 2544.00 0.00 2544.00 2019-04-16 2 2019-04-16 20:34:42.363178 2019-04-16 20:34:42.363178 0 \N f \N 86 2 1 PV1-C-49 4497.00 0.00 4497.00 2019-05-03 2 2019-05-04 01:11:15.091988 2019-05-04 01:11:15.091988 0 \N f \N 87 2 1 PV1-C-50 5405.40 0.00 5405.40 2019-05-04 2 2019-05-04 17:18:59.75171 2019-05-04 17:18:59.75171 0 \N f \N 88 2 1 PV1-C-51 13401.00 0.00 13401.00 2019-05-04 2 2019-05-04 18:09:16.663286 2019-05-04 18:09:16.663286 0 \N f \N 89 2 1 PV1-C-52 10458.00 0.00 10458.00 2019-05-04 2 2019-05-04 18:26:59.478834 2019-05-04 18:26:59.478834 0 \N f \N 90 2 1 PV1-C-53 1437.00 0.00 1437.00 2019-05-04 2 2019-05-04 18:38:14.205772 2019-05-04 18:38:14.205772 0 \N f \N 91 2 1 PV1-C-54 1647.00 0.00 1647.00 2019-05-04 2 2019-05-04 18:41:14.064316 2019-05-04 18:41:14.064316 0 \N f \N 92 2 1 PV1-C-55 15609.00 0.00 15609.00 2019-05-04 2 2019-05-04 19:04:33.725588 2019-05-04 19:04:33.725588 0 \N f \N 93 2 1 PV1-C-56 798.00 0.00 798.00 2019-05-15 2 2019-05-15 18:08:16.214593 2019-05-15 18:08:16.214593 0 \N f \N 94 2 1 PV1-C-57 35911.50 0.00 35911.50 2019-05-16 2 2019-05-16 23:49:41.90138 2019-05-16 23:49:41.90138 0 \N f \N 95 2 1 PV1-C-58 8394.00 0.00 8394.00 2019-05-16 2 2019-05-17 00:23:03.606167 2019-05-17 00:23:03.606167 0 \N f \N 96 2 \N CEN-C-3 20.00 0.00 20.00 VESTIDO ROSA FUSCIA APEACH 2019-05-22 4 2019-05-23 01:48:30.61014 2019-05-23 01:50:58.732793 1 1 t 19.20 97 2 1 PV1-C-59 384.00 0.00 384.00 2019-05-22 4 2019-05-23 01:53:49.871567 2019-05-23 01:53:49.871567 0 \N f \N 98 2 1 PV1-C-60 1718.10 0.00 1718.10 2019-05-23 2 2019-05-23 17:47:00.675904 2019-05-23 17:47:00.675904 0 \N f \N 99 2 1 PV1-C-61 3351.75 0.00 3351.75 2019-05-23 2 2019-05-23 17:50:42.545997 2019-05-23 17:50:42.545997 0 \N f \N 100 2 1 PV1-C-62 4008.00 0.00 4008.00 2019-05-23 2 2019-05-23 18:01:41.882127 2019-05-23 18:01:41.882127 0 \N f \N 101 2 1 PV1-C-63 4063.68 0.00 4063.68 2019-05-23 2 2019-05-23 18:25:12.70449 2019-05-23 18:25:12.70449 0 \N f \N 102 2 1 PV1-C-64 674.50 0.00 674.50 2019-06-20 2 2019-06-21 01:27:55.957379 2019-06-21 01:27:55.957379 0 \N f \N 103 2 1 PV1-C-65 280.00 0.00 280.00 2019-07-13 2 2019-07-13 18:10:11.540463 2019-07-13 18:10:11.540463 0 \N f \N 104 2 1 PV1-C-66 16812.00 0.00 16812.00 2019-07-15 2 2019-07-15 19:21:29.651067 2019-07-15 19:21:29.651067 0 \N f \N 105 2 1 PV1-C-67 2755.00 0.00 2755.00 2019-07-15 2 2019-07-15 20:24:06.505644 2019-07-15 20:24:06.505644 0 \N f \N 106 2 1 PV1-C-68 12825.00 0.00 12825.00 2019-07-15 2 2019-07-15 22:40:01.402352 2019-07-15 22:40:01.402352 0 \N f \N 107 2 1 PV1-C-69 4930.50 0.00 4930.50 2019-07-15 2 2019-07-15 23:43:05.031338 2019-07-15 23:43:05.031338 0 \N f \N 108 2 2 PV2-C-36 13707.00 0.00 13707.00 2019-07-15 4 2019-07-16 01:00:21.848137 2019-07-16 01:00:21.848137 0 \N f \N 109 2 2 PV2-C-37 966.00 0.00 966.00 2019-07-15 4 2019-07-16 01:15:20.821927 2019-07-16 01:15:20.821927 0 \N f \N 110 1 1 PV1-C-70 2948.00 0.00 2948.00 2019-07-17 4 2019-07-17 23:06:30.041314 2019-07-17 23:06:30.041314 0 \N f \N 111 2 2 PV2-C-38 819.50 0.00 819.50 2019-07-22 4 2019-07-22 23:37:30.601279 2019-07-22 23:37:30.601279 0 \N f \N 112 2 1 PV1-C-71 17844.00 0.00 17844.00 2019-07-23 2 2019-07-23 18:34:24.015469 2019-07-23 18:34:24.015469 0 \N f \N 113 2 2 PV2-C-39 19551.00 0.00 19551.00 2019-07-23 4 2019-07-23 19:36:35.484401 2019-07-23 19:36:35.484401 0 \N f \N 114 2 1 PV1-C-72 1200.00 0.00 1200.00 2019-07-29 4 2019-07-29 23:15:51.639952 2019-07-29 23:15:51.639952 0 \N f \N 115 2 \N CEN-C-4 3747.50 0.00 3747.50 2019-08-17 4 2019-08-18 01:25:29.409255 2019-08-18 01:25:29.409255 0 1 f \N 119 2 \N CEN-C-5 16350.00 0.00 16350.00 2019-08-20 4 2019-08-20 21:46:50.965621 2019-08-20 21:46:50.965621 0 1 f \N 120 2 \N CEN-C-6 2040.00 0.00 2040.00 2019-08-20 4 2019-08-20 21:53:31.03272 2019-08-20 21:53:31.03272 0 1 f \N 121 2 1 PV1-C-73 1980.00 0.00 1980.00 2019-08-21 2 2019-08-21 23:38:48.73158 2019-08-21 23:38:48.73158 0 \N f \N 122 2 1 PV1-C-74 15240.00 0.00 15240.00 2019-08-21 2 2019-08-22 00:31:25.348784 2019-08-22 00:31:25.348784 0 \N f \N 123 2 1 PV1-C-75 14260.50 0.00 14260.50 2019-08-21 2 2019-08-22 00:48:36.085015 2019-08-22 00:48:36.085015 0 \N f \N 124 2 1 PV1-C-76 5400.00 0.00 5400.00 2019-08-21 2 2019-08-22 01:07:07.069413 2019-08-22 01:07:07.069413 0 \N f \N 125 2 \N CEN-C-7 10050.00 0.00 10050.00 2019-08-21 4 2019-08-22 03:35:13.084721 2019-08-22 03:35:13.084721 0 1 f \N 126 2 \N CEN-C-8 5099.00 0.00 5099.00 2019-08-21 4 2019-08-22 03:44:25.783736 2019-08-22 03:44:25.783736 0 1 f \N 127 2 2 PV2-C-40 560.00 0.00 560.00 2019-08-21 4 2019-08-22 04:15:40.924437 2019-08-22 04:15:40.924437 0 \N f \N 129 2 \N CEN-C-9 4740.00 0.00 4740.00 2019-08-21 4 2019-08-22 04:58:31.363618 2019-08-22 04:58:31.363618 0 1 f \N 130 1 1 PV1-C-77 799.50 0.00 799.50 2019-08-29 2 2019-08-29 22:09:20.733407 2019-08-29 22:09:20.733407 0 \N f \N 131 2 \N CEN-C-10 19560.00 0.00 19560.00 2019-08-29 4 2019-08-30 03:48:07.549136 2019-08-30 03:48:07.549136 0 1 f \N 132 2 \N CEN-C-11 15240.00 0.00 15240.00 2019-08-29 4 2019-08-30 04:45:25.184867 2019-08-30 04:45:25.184867 0 1 f \N 133 1 3 PV3-C-5 799.50 0.00 799.50 2019-08-31 4 2019-09-01 03:07:50.409968 2019-09-01 03:07:50.409968 0 \N f \N 135 1 3 PV3-C-7 3148.00 0.00 3148.00 2019-09-03 4 2019-09-03 19:26:06.077804 2019-09-03 19:26:06.077804 0 \N f \N 136 2 3 PV3-C-8 13293.00 0.00 13293.00 2019-09-03 21 2019-09-03 23:39:56.526215 2019-09-03 23:39:56.526215 0 \N f \N 137 2 3 PV3-C-9 5836.80 0.00 5836.80 2019-09-03 4 2019-09-03 23:45:39.57794 2019-09-03 23:45:39.57794 0 \N f \N 138 2 1 PV1-C-78 820.99 0.00 820.99 2019-09-04 2 2019-09-04 23:21:39.013085 2019-09-04 23:21:39.013085 0 \N f \N 139 2 \N CEN-C-12 4812.00 0.00 4812.00 2019-09-04 4 2019-09-05 03:26:21.98601 2019-09-05 03:26:21.98601 0 1 f \N 140 2 1 PV1-C-79 1758.00 0.00 1758.00 2019-09-11 2 2019-09-11 19:57:13.899307 2019-09-11 19:57:13.899307 0 \N f \N 141 2 2 PV2-C-41 999.00 0.00 999.00 2019-09-20 4 2019-09-20 23:17:54.745391 2019-09-20 23:17:54.745391 0 \N f \N 142 2 \N CEN-C-13 6054.00 0.00 6054.00 2019-09-21 4 2019-09-21 20:43:58.871461 2019-09-21 20:43:58.871461 0 1 f \N 143 1 1 PV1-C-80 14042.50 0.00 14042.50 2019-09-26 4 2019-09-26 23:19:39.039837 2019-09-26 23:19:39.039837 0 \N f \N 144 2 2 PV2-C-42 2601.00 42.32 2643.32 2019-10-05 4 2019-10-05 17:37:06.642632 2019-10-05 17:37:06.642632 0 \N f \N 145 2 2 PV2-C-43 799.00 0.00 799.00 2019-10-05 4 2019-10-05 19:15:22.015732 2019-10-05 19:15:22.015732 0 \N f \N 146 2 1 PV1-C-81 1460.00 0.00 1460.00 2019-10-05 2 2019-10-06 00:02:28.658558 2019-10-06 00:02:28.658558 0 \N f \N 147 2 1 PV1-C-82 3650.00 0.00 3650.00 2019-10-07 2 2019-10-07 20:18:12.464339 2019-10-07 20:18:12.464339 0 \N f \N 148 2 1 PV1-C-83 8887.00 0.00 8887.00 2019-10-07 2 2019-10-07 20:44:42.364782 2019-10-07 20:44:42.364782 0 \N f \N 117 2 3 PV3-C-2 7521.00 0.00 7521.00 2019-08-18 4 2019-08-19 00:07:06.529583 2020-02-07 02:42:22.068513 2 \N f \N 118 1 3 PV3-C-3 5247.00 0.00 5247.00 2019-08-18 4 2019-08-19 00:53:56.546278 2020-02-07 02:45:59.820612 2 \N f \N 128 2 3 PV3-C-4 930.00 0.00 930.00 2019-08-21 4 2019-08-22 04:48:57.838166 2020-07-04 23:51:23.66798 2 \N f \N 134 2 3 PV3-C-6 2541.00 0.00 2541.00 2019-08-31 18 2019-09-01 03:24:38.57704 2020-07-18 00:45:29.144011 2 \N f \N 149 2 2 PV2-C-44 1200.00 0.00 1200.00 2019-10-08 4 2019-10-08 06:01:51.671613 2019-10-08 06:01:51.671613 0 \N f \N 150 2 2 PV2-C-45 13200.00 0.00 13200.00 2019-10-10 4 2019-10-10 21:27:53.140635 2019-10-10 21:27:53.140635 0 \N f \N 151 2 2 PV2-C-46 29610.00 0.00 29610.00 2019-10-10 4 2019-10-11 03:05:38.693934 2019-10-11 03:05:38.693934 0 \N f \N 152 2 2 PV2-C-47 13140.00 0.00 13140.00 2019-10-10 4 2019-10-11 05:27:03.444608 2019-10-11 05:27:03.444608 0 \N f \N 153 2 3 PV3-C-10 28238.00 0.00 28238.00 2019-10-11 4 2019-10-11 19:18:09.320519 2019-10-11 19:18:09.320519 0 \N f \N 154 2 \N CEN-C-14 2520.00 0.00 2520.00 2019-10-11 4 2019-10-11 19:56:56.74445 2019-10-11 19:56:56.74445 0 1 f \N 155 2 2 PV2-C-48 2040.00 0.00 2040.00 2019-10-11 8 2019-10-11 21:20:32.520365 2019-10-11 21:20:32.520365 0 \N f \N 156 2 2 PV2-C-49 1560.00 0.00 1560.00 2019-10-11 4 2019-10-11 21:26:24.201112 2019-10-11 21:26:24.201112 0 \N f \N 157 2 \N CEN-C-15 2690.40 0.00 2690.40 2019-10-11 4 2019-10-11 22:07:47.158273 2019-10-11 22:07:47.158273 0 1 f \N 158 2 2 PV2-C-50 1620.00 0.00 1620.00 2019-10-12 4 2019-10-12 18:50:25.394944 2019-10-12 18:50:25.394944 0 \N f \N 159 2 3 PV3-C-11 9336.00 0.00 9336.00 2019-10-12 4 2019-10-12 20:17:07.188783 2019-10-12 20:17:07.188783 0 \N f \N 160 2 3 PV3-C-12 5370.00 0.00 5370.00 2019-10-12 4 2019-10-12 20:34:48.927458 2019-10-12 20:34:48.927458 0 \N f \N 161 2 2 PV2-C-51 12000.00 0.00 12000.00 2019-10-13 4 2019-10-13 16:52:29.804172 2019-10-13 16:52:29.804172 0 \N f \N 162 2 2 PV2-C-52 2210.00 0.00 2210.00 2019-10-14 4 2019-10-14 19:06:56.068286 2019-10-14 19:06:56.068286 0 \N f \N 163 2 1 PV1-C-84 5004.00 0.00 5004.00 2019-10-14 4 2019-10-14 19:20:32.807338 2019-10-14 19:20:32.807338 0 \N f \N 164 2 1 PV1-C-85 3360.00 0.00 3360.00 2019-10-14 4 2019-10-14 19:36:48.826299 2019-10-14 19:36:48.826299 0 \N f \N 165 2 2 PV2-C-53 1200.00 0.00 1200.00 2019-10-14 4 2019-10-15 05:30:41.176975 2019-10-15 05:30:41.176975 0 \N f \N 166 2 3 PV3-C-13 3398.00 0.00 3398.00 2019-10-16 4 2019-10-16 19:58:45.679962 2019-10-16 19:58:45.679962 0 \N f \N 167 2 2 PV2-C-54 3447.00 0.00 3447.00 2019-10-19 4 2019-10-19 18:06:56.880821 2019-10-19 18:06:56.880821 0 \N f \N 168 2 3 PV3-C-14 716.45 0.00 716.45 2019-10-19 4 2019-10-19 20:38:07.178792 2019-10-19 20:38:07.178792 0 \N f \N 169 2 3 PV3-C-15 661.00 0.00 661.00 2019-10-19 4 2019-10-19 22:56:00.569045 2019-10-19 22:56:00.569045 0 \N f \N 170 2 3 PV3-C-16 505.00 0.00 505.00 2019-10-19 4 2019-10-20 00:22:09.477468 2019-10-20 00:22:09.477468 0 \N f \N 171 2 1 PV1-C-86 4560.00 0.00 4560.00 2019-10-20 4 2019-10-20 16:42:59.697284 2019-10-20 16:42:59.697284 0 \N f \N 172 2 1 PV1-C-87 823.00 0.00 823.00 2019-10-21 4 2019-10-21 17:36:26.988816 2019-10-21 17:36:26.988816 0 \N f \N 173 2 3 PV3-C-17 14973.00 0.00 14973.00 2019-10-25 4 2019-10-25 17:24:00.811104 2019-10-25 17:24:00.811104 0 \N f \N 174 1 \N CEN-C-16 2997.50 0.00 2997.50 2019-10-28 4 2019-10-28 18:23:51.977527 2019-10-28 18:23:51.977527 0 1 f \N 175 2 \N CEN-C-17 15660.00 0.00 15660.00 2019-10-28 4 2019-10-29 01:26:04.329642 2019-10-29 01:26:04.329642 0 1 f \N 176 2 \N CEN-C-18 28860.00 0.00 28860.00 2019-10-28 4 2019-10-29 01:36:49.042988 2019-10-29 01:36:49.042988 0 1 f \N 177 2 \N CEN-C-19 380.00 0.00 380.00 2019-10-28 4 2019-10-29 01:38:15.474405 2019-10-29 01:38:15.474405 0 1 f \N 178 2 \N CEN-C-20 6120.00 0.00 6120.00 2019-10-28 4 2019-10-29 01:42:07.873424 2019-10-29 01:42:07.873424 0 1 f \N 179 2 \N CEN-C-21 5220.00 0.00 5220.00 2019-10-28 4 2019-10-29 01:45:27.647454 2019-10-29 01:45:27.647454 0 1 f \N 180 2 \N CEN-C-22 84084.00 0.00 84084.00 2019-10-29 4 2019-10-30 01:55:45.903246 2019-10-30 01:55:45.903246 0 1 f \N 181 2 \N CEN-C-23 4560.00 0.00 4560.00 2019-10-29 4 2019-10-30 02:35:16.658244 2019-10-30 02:35:16.658244 0 1 f \N 182 2 2 PV2-C-55 158.00 0.00 158.00 2019-11-02 26 2019-11-02 21:26:46.848837 2019-11-02 21:26:46.848837 0 \N f \N 183 2 2 PV2-C-56 14.00 0.00 14.00 2019-11-02 26 2019-11-02 21:27:49.897987 2019-11-02 21:27:49.897987 0 \N f \N 184 1 1 PV1-C-88 799.50 0.00 799.50 2019-11-06 4 2019-11-06 17:50:24.139187 2019-11-06 17:50:24.139187 0 \N f \N 185 2 \N CEN-C-24 1900.00 0.00 1900.00 2019-11-09 4 2019-11-09 18:59:47.003343 2019-11-09 18:59:47.003343 0 1 f \N 186 2 \N CEN-C-25 580.00 0.00 580.00 2019-11-09 4 2019-11-09 19:17:17.191354 2019-11-09 19:17:17.191354 0 1 f \N 187 2 \N CEN-C-26 2900.00 0.00 2900.00 2019-11-09 4 2019-11-09 19:18:32.434366 2019-11-09 19:18:32.434366 0 1 f \N 188 1 \N CEN-C-27 19238.00 0.00 19238.00 2019-11-10 4 2019-11-10 18:58:20.345953 2019-11-10 18:58:20.345953 0 1 f \N 189 1 \N CEN-C-28 1599.00 0.00 1599.00 2019-11-10 4 2019-11-10 18:59:23.401095 2019-11-10 18:59:23.401095 0 1 f \N 190 2 \N CEN-C-29 3155.42 0.00 3155.42 2019-11-13 4 2019-11-13 19:17:41.533957 2019-11-13 19:17:41.533957 0 1 f \N 191 2 \N CEN-C-30 47.03 0.00 47.03 2019-11-13 4 2019-11-13 21:26:33.076295 2019-11-13 21:26:33.076295 0 1 f \N 192 2 \N CEN-C-31 44.00 0.00 44.00 2019-11-13 4 2019-11-13 21:28:01.687053 2019-11-13 21:28:01.687053 0 1 f \N 193 2 3 PV3-C-18 47.03 0.00 47.03 2019-11-13 4 2019-11-14 00:55:25.368661 2019-11-14 00:55:25.368661 0 \N f \N 194 2 1 PV1-C-89 1020.00 0.00 1020.00 2019-11-15 2 2019-11-15 17:58:01.567247 2019-11-15 17:58:01.567247 0 \N f \N 195 2 3 PV3-C-19 1599.00 0.00 1599.00 2019-11-15 4 2019-11-16 01:28:17.485507 2019-11-16 01:28:17.485507 0 \N f \N 196 1 \N CEN-C-32 1599.00 0.00 1599.00 2019-11-15 4 2019-11-16 01:32:29.671756 2019-11-16 01:36:05.086517 1 1 f \N 197 1 \N CEN-C-33 19138.50 0.00 19138.50 2019-11-15 4 2019-11-16 01:46:58.964685 2019-11-16 01:46:58.964685 0 1 f \N 198 2 3 PV3-C-20 1260.00 0.00 1260.00 2019-11-18 4 2019-11-18 23:39:46.353375 2019-11-18 23:39:46.353375 0 \N f \N 199 2 \N CEN-C-34 17700.00 0.00 17700.00 2019-11-18 4 2019-11-18 23:57:53.480685 2019-11-18 23:57:53.480685 0 1 f \N 200 2 \N CEN-C-35 7920.00 0.00 7920.00 2019-11-20 4 2019-11-20 20:26:00.291129 2019-11-20 20:26:00.291129 0 1 f \N 201 2 \N CEN-C-36 6960.00 0.00 6960.00 2019-11-20 4 2019-11-20 20:30:21.73807 2019-11-20 20:30:21.73807 0 1 f \N 202 2 2 PV2-C-57 1740.00 0.00 1740.00 2019-11-20 4 2019-11-20 20:48:26.322241 2019-11-20 20:48:26.322241 0 \N f \N 203 2 2 PV2-C-58 1560.00 0.00 1560.00 2019-11-20 4 2019-11-20 20:54:43.165977 2019-11-20 20:54:43.165977 0 \N f \N 204 1 \N CEN-C-37 4247.50 0.00 4247.50 2019-11-23 4 2019-11-23 17:25:17.89741 2019-11-23 17:25:17.89741 0 1 f \N 205 2 3 PV3-C-21 1440.00 0.00 1440.00 2019-11-23 4 2019-11-23 22:26:41.167418 2019-11-23 22:26:41.167418 0 \N f \N 206 1 \N CEN-C-38 2099.00 0.00 2099.00 2019-11-25 4 2019-11-26 01:28:41.358418 2019-11-26 01:28:41.358418 0 1 f \N 207 2 \N CEN-C-39 19440.00 0.00 19440.00 2019-11-26 4 2019-11-26 22:35:49.57563 2019-11-26 22:35:49.57563 0 1 f \N 208 2 \N CEN-C-40 10920.00 0.00 10920.00 2019-11-26 4 2019-11-26 22:44:39.440609 2019-11-26 22:44:39.440609 0 1 f \N 209 2 \N CEN-C-41 4320.00 0.00 4320.00 2019-11-26 4 2019-11-26 22:48:26.153168 2019-11-26 22:48:26.153168 0 1 f \N 210 1 1 PV1-C-90 6846.00 0.00 6846.00 2019-12-06 4 2019-12-06 17:54:09.660862 2019-12-06 17:54:09.660862 0 \N f \N 211 1 \N CEN-C-42 1049.50 0.00 1049.50 2019-12-06 4 2019-12-06 17:54:57.904393 2019-12-06 17:54:57.904393 0 1 f \N 212 1 3 PV3-C-22 8145.50 0.00 8145.50 2019-12-08 4 2019-12-08 18:02:54.495209 2019-12-08 18:02:54.495209 0 \N f \N 213 1 3 PV3-C-23 2398.50 0.00 2398.50 2019-12-10 4 2019-12-11 00:06:15.658635 2019-12-11 00:06:15.658635 0 \N f \N 214 1 1 PV1-C-91 2348.50 0.00 2348.50 2019-12-21 4 2019-12-21 17:57:22.433023 2019-12-21 17:57:22.433023 0 \N f \N 215 1 1 PV1-C-92 1049.50 0.00 1049.50 2019-12-21 4 2019-12-21 22:44:22.060528 2019-12-21 22:44:22.060528 0 \N f \N 216 2 1 PV1-C-93 239.50 0.00 239.50 2019-12-23 2 2019-12-23 20:21:46.840966 2019-12-23 20:21:46.840966 0 \N f \N 217 2 3 PV3-C-24 120.00 0.00 120.00 2019-12-24 4 2019-12-24 19:28:26.878865 2019-12-24 19:28:26.878865 0 \N f \N 218 2 2 PV2-C-59 439.50 0.00 439.50 2019-12-24 4 2019-12-24 23:49:57.757486 2019-12-24 23:49:57.757486 0 \N f \N 219 2 3 PV3-C-25 1198.50 0.00 1198.50 2020-01-07 4 2020-01-07 19:08:31.264464 2020-01-07 19:08:31.264464 0 \N f \N 220 2 2 PV2-C-60 1260.00 0.00 1260.00 2020-01-11 4 2020-01-11 19:48:15.840542 2020-01-11 19:48:15.840542 0 \N f \N 221 2 2 PV2-C-61 200.00 0.00 200.00 2020-01-25 4 2020-01-25 19:15:53.99647 2020-01-25 19:15:53.99647 0 \N f \N 222 2 2 PV2-C-62 439.50 0.00 439.50 2020-01-25 4 2020-01-25 19:33:28.06643 2020-01-25 19:33:28.06643 0 \N f \N 223 2 \N CEN-C-43 2280.00 0.00 2280.00 2020-01-28 4 2020-01-29 02:33:55.68436 2020-01-29 02:33:55.68436 0 1 f \N 224 2 \N CEN-C-43 2280.00 0.00 2280.00 2020-01-28 4 2020-01-29 02:33:56.166236 2020-01-29 02:33:56.166236 0 1 f \N 225 2 1 PV1-C-94 1299.00 0.00 1299.00 2020-01-29 4 2020-01-29 18:45:28.154278 2020-01-29 18:45:28.154278 0 \N f \N 226 2 1 PV1-C-95 1122.50 0.00 1122.50 2020-02-04 4 2020-02-05 02:22:00.213834 2020-02-05 02:22:00.213834 0 \N f \N 116 2 3 PV3-C-1 8726.00 0.00 8726.00 2019-08-18 4 2019-08-18 23:48:07.413768 2020-02-06 02:51:21.643285 2 \N f \N 227 2 1 PV1-C-96 337.00 0.00 337.00 2020-02-15 2 2020-02-15 17:15:06.05957 2020-02-15 17:15:06.05957 0 \N f \N 228 2 1 PV1-C-97 200.00 0.00 200.00 2020-02-15 2 2020-02-15 21:30:31.852047 2020-02-15 21:30:31.852047 0 \N f \N 229 2 1 PV1-C-98 1427.40 0.00 1427.40 2020-02-18 4 2020-02-18 20:46:24.021377 2020-02-18 20:46:24.021377 0 \N f \N 230 2 1 PV1-C-99 3952.80 0.00 3952.80 2020-02-18 4 2020-02-18 20:54:31.270895 2020-02-18 20:54:31.270895 0 \N f \N 231 2 1 PV1-C-100 1152.90 0.00 1152.90 2020-02-18 4 2020-02-18 21:08:57.205878 2020-02-18 21:08:57.205878 0 \N f \N 232 2 1 PV1-C-101 1290.12 0.00 1290.12 2020-02-18 4 2020-02-18 21:12:08.274375 2020-02-18 21:12:08.274375 0 \N f \N 233 2 1 PV1-C-102 933.30 0.00 933.30 2020-02-18 4 2020-02-18 21:15:05.193005 2020-02-18 21:15:05.193005 0 \N f \N 234 2 1 PV1-C-103 933.30 0.00 933.30 2020-02-18 4 2020-02-18 21:18:24.544551 2020-02-18 21:18:24.544551 0 \N f \N 235 2 1 PV1-C-104 2699.20 0.00 2699.20 2020-02-18 4 2020-02-18 21:21:56.52135 2020-02-18 21:21:56.52135 0 \N f \N 236 2 1 PV1-C-105 2690.10 0.00 2690.10 2020-02-18 4 2020-02-18 23:18:15.449772 2020-02-18 23:18:15.449772 0 \N f \N 237 2 1 PV1-C-106 18894.36 0.00 18894.36 2020-02-18 4 2020-02-19 01:27:24.173661 2020-02-19 01:27:24.173661 0 \N f \N 238 2 1 PV1-C-107 6245.10 0.00 6245.10 2020-02-18 4 2020-02-19 01:46:34.738405 2020-02-19 01:46:34.738405 0 \N f \N 239 2 1 PV1-C-108 8394.00 0.00 8394.00 2020-02-18 4 2020-02-19 01:53:08.322898 2020-02-19 01:53:08.322898 0 \N f \N 240 2 2 PV2-C-63 10461.00 0.00 10461.00 2020-02-18 4 2020-02-19 02:37:02.713756 2020-02-19 02:37:02.713756 0 \N f \N 241 2 2 PV2-C-64 1536.60 0.00 1536.60 2020-02-18 4 2020-02-19 02:42:02.837568 2020-02-19 02:42:02.837568 0 \N f \N 242 2 1 PV1-C-109 1427.40 0.00 1427.40 2020-02-18 4 2020-02-19 02:48:47.399459 2020-02-19 02:48:47.399459 0 \N f \N 243 2 2 PV2-C-65 20392.65 0.00 20392.65 2020-02-19 1 2020-02-19 21:44:25.075119 2020-02-19 21:44:25.075119 0 \N f \N 244 2 2 PV2-C-66 5404.80 0.00 5404.80 2020-02-19 1 2020-02-19 22:52:35.768875 2020-02-19 22:52:35.768875 0 \N f \N 245 2 1 PV1-C-110 1701.90 0.00 1701.90 2020-02-19 1 2020-02-19 22:54:10.817095 2020-02-19 22:54:10.817095 0 \N f \N 246 2 1 PV1-C-111 720.00 0.00 720.00 2020-02-24 4 2020-02-24 23:58:50.713573 2020-02-24 23:58:50.713573 0 \N f \N 247 2 1 PV1-C-112 2040.00 0.00 2040.00 2020-02-24 4 2020-02-25 00:04:50.43494 2020-02-25 00:04:50.43494 0 \N f \N 248 2 1 PV1-C-113 1980.00 0.00 1980.00 2020-02-24 4 2020-02-25 00:08:09.010351 2020-02-25 00:08:09.010351 0 \N f \N 249 2 1 PV1-C-114 2160.00 0.00 2160.00 2020-02-24 2 2020-02-25 00:15:16.400327 2020-02-25 00:15:16.400327 0 \N f \N 250 2 1 PV1-C-115 2160.00 0.00 2160.00 2020-02-24 2 2020-02-25 00:20:56.87048 2020-02-25 00:20:56.87048 0 \N f \N 251 2 2 PV2-C-67 99.78 0.00 99.78 2020-02-29 4 2020-02-29 22:58:16.043381 2020-02-29 22:58:16.043381 0 \N f \N 252 2 2 PV2-C-68 180.32 0.00 180.32 2020-02-29 4 2020-02-29 23:07:32.465527 2020-02-29 23:07:32.465527 0 \N f \N 253 2 2 214.55 0.00 214.55 2020-02-29 4 2020-02-29 23:26:57.318359 2020-02-29 23:26:57.318359 0 \N f \N 254 2 \N CEN-C-45 448.50 0.00 448.50 2020-02-29 4 2020-02-29 23:40:19.446892 2020-02-29 23:40:19.446892 0 1 f \N 255 2 2 PV2-C-70 157.00 0.00 157.00 2020-02-29 4 2020-02-29 23:59:17.25745 2020-02-29 23:59:17.25745 0 \N f \N 256 2 1 PV1-C-116 73.00 0.00 73.00 2020-02-29 4 2020-03-01 00:04:54.541134 2020-03-01 00:04:54.541134 0 \N f \N 257 2 \N CEN-C-46 366.00 0.00 366.00 2020-02-29 4 2020-03-01 00:07:59.680424 2020-03-01 00:07:59.680424 0 1 f \N 258 2 \N CEN-C-47 171.54 0.00 171.54 2020-02-29 4 2020-03-01 00:16:09.583546 2020-03-01 00:16:09.583546 0 1 f \N 259 2 1 PV1-C-117 182.00 0.00 182.00 2020-02-29 4 2020-03-01 00:34:21.329557 2020-03-01 00:34:21.329557 0 \N f \N 260 2 3 PV3-C-26 802.42 0.00 802.42 2020-02-29 21 2020-03-01 01:03:06.253491 2020-03-01 01:03:06.253491 0 \N f \N 261 2 \N CEN-C-48 232.00 0.00 232.00 2020-02-29 4 2020-03-01 01:12:22.013095 2020-03-01 01:12:22.013095 0 1 f \N 262 2 \N CEN-C-49 102.00 0.00 102.00 2020-02-29 4 2020-03-01 01:33:23.983816 2020-03-01 01:33:23.983816 0 1 f \N 263 2 1 PV1-C-118 289.16 0.00 289.16 2020-02-29 4 2020-03-01 01:40:48.586014 2020-03-01 01:40:48.586014 0 \N f \N 264 2 3 PV3-C-27 821.98 10.76 832.74 2020-02-29 21 2020-03-01 01:42:29.572053 2020-03-01 01:42:29.572053 0 \N f \N 265 2 3 PV3-C-27 821.98 10.76 832.74 2020-02-29 21 2020-03-01 01:42:30.626284 2020-03-01 01:42:30.626284 0 \N f \N 266 2 1 PV1-C-119 251.54 0.00 251.54 2020-02-29 4 2020-03-01 01:44:56.518801 2020-03-01 01:44:56.518801 0 \N f \N 267 2 1 PV1-C-120 275.00 0.00 275.00 2020-02-29 4 2020-03-01 01:48:35.590223 2020-03-01 01:48:35.590223 0 \N f \N 268 2 3 PV3-C-29 247.00 0.00 247.00 2020-02-29 4 2020-03-01 01:52:50.913244 2020-03-01 01:52:50.913244 0 \N f \N 269 2 3 PV3-C-30 50.00 0.00 50.00 2020-02-29 4 2020-03-01 01:56:35.697174 2020-03-01 01:56:35.697174 0 \N f \N 270 2 2 PV2-C-71 255.00 0.00 255.00 2020-02-29 4 2020-03-01 02:09:38.85455 2020-03-01 02:09:38.85455 0 \N f \N 271 2 1 PV1-C-121 72.00 0.00 72.00 2020-02-29 4 2020-03-01 02:13:12.989045 2020-03-01 02:13:12.989045 0 \N f \N 272 2 \N CEN-C-50 141.00 0.00 141.00 2020-02-29 4 2020-03-01 02:15:35.50853 2020-03-01 02:15:35.50853 0 1 f \N 273 2 \N CEN-C-51 114.00 0.00 114.00 2020-02-29 4 2020-03-01 02:20:44.34109 2020-03-01 02:20:44.34109 0 1 f \N 274 2 3 PV3-C-31 132.00 0.00 132.00 2020-02-29 4 2020-03-01 02:24:43.175134 2020-03-01 02:24:43.175134 0 \N f \N 275 2 3 PV3-C-32 1824.65 0.00 1824.65 2020-02-29 21 2020-03-01 02:38:38.646474 2020-03-01 02:38:38.646474 0 \N f \N 276 2 2 PV2-C-72 123.80 0.00 123.80 2020-03-02 4 2020-03-02 23:44:47.019436 2020-03-02 23:44:47.019436 0 \N f \N 277 2 1 PV1-C-122 127.80 0.00 127.80 2020-03-02 4 2020-03-02 23:50:44.981641 2020-03-02 23:50:44.981641 0 \N f \N 278 2 1 PV1-C-123 360.00 0.00 360.00 2020-03-02 4 2020-03-02 23:56:02.788318 2020-03-02 23:56:02.788318 0 \N f \N 279 2 2 PV2-C-73 102.00 0.00 102.00 2020-03-02 4 2020-03-03 00:00:37.627625 2020-03-03 00:00:37.627625 0 \N f \N 280 2 2 PV2-C-74 91.44 0.00 91.44 2020-03-12 8 2020-03-13 02:39:11.923902 2020-03-13 02:39:11.923902 0 \N f \N 281 2 2 PV2-C-75 269.00 0.00 269.00 2020-03-14 4 2020-03-14 20:05:29.227011 2020-03-14 20:05:29.227011 0 \N f \N 282 2 \N CEN-C-52 88.00 0.00 88.00 2020-03-14 4 2020-03-14 20:15:58.467194 2020-03-14 20:15:58.467194 0 1 f \N 283 2 \N CEN-C-53 66.00 0.00 66.00 2020-03-14 4 2020-03-14 20:22:51.861951 2020-03-14 20:22:51.861951 0 1 f \N 284 2 1 PV1-C-124 127.00 0.00 127.00 2020-03-14 4 2020-03-14 20:32:00.464921 2020-03-14 20:32:00.464921 0 \N f \N 285 2 \N CEN-C-54 68.00 0.00 68.00 2020-03-14 4 2020-03-14 20:53:18.573599 2020-03-14 20:53:18.573599 0 1 f \N 286 2 \N CEN-C-55 82.00 0.00 82.00 2020-03-14 4 2020-03-14 20:57:31.390357 2020-03-14 20:57:31.390357 0 1 f \N 287 2 2 PV2-C-76 160.00 0.00 160.00 2020-03-14 4 2020-03-15 00:05:02.287517 2020-03-15 00:05:02.287517 0 \N f \N 288 2 2 PV2-C-77 70.00 0.00 70.00 2020-03-14 4 2020-03-15 00:46:41.537941 2020-03-15 00:46:41.537941 0 \N f \N 289 2 2 PV2-C-78 36.00 0.00 36.00 2020-03-14 4 2020-03-15 00:49:29.414447 2020-03-15 00:49:29.414447 0 \N f \N 290 2 2 PV2-C-79 15.00 0.00 15.00 2020-03-14 4 2020-03-15 00:50:34.900697 2020-03-15 00:50:34.900697 0 \N f \N 291 2 3 PV3-C-33 1242.99 0.00 1242.99 2020-03-16 21 2020-03-16 20:34:04.95221 2020-03-16 20:34:04.95221 0 \N f \N 292 1 \N CEN-C-56 4797.00 0.00 4797.00 2020-03-17 4 2020-03-17 18:31:38.766027 2020-03-17 18:35:24.67498 1 1 f \N 293 1 \N CEN-C-57 5596.50 0.00 5596.50 2020-03-17 4 2020-03-17 18:38:33.431973 2020-03-17 18:38:33.431973 0 1 f \N 294 1 3 PV3-C-34 1449.50 0.00 1449.50 2020-04-30 4 2020-04-30 22:33:05.232864 2020-04-30 22:33:05.232864 0 \N f \N 295 1 3 PV3-C-35 1699.00 0.00 1699.00 2020-05-03 18 2020-05-03 23:55:58.686121 2020-05-03 23:55:58.686121 0 \N f \N 296 1 3 PV3-C-36 2398.50 0.00 2398.50 2020-05-03 18 2020-05-04 00:24:01.489983 2020-05-04 00:24:01.489983 0 \N f \N 297 2 3 PV3-C-37 1499.00 0.00 1499.00 2020-05-03 18 2020-05-04 00:27:58.828999 2020-05-04 00:27:58.828999 0 \N f \N 298 1 3 PV3-C-38 999.50 0.00 999.50 2020-05-03 18 2020-05-04 00:39:50.665626 2020-05-04 00:39:50.665626 0 \N f \N 299 1 3 PV3-C-39 2998.00 0.00 2998.00 2020-05-03 18 2020-05-04 00:45:12.434105 2020-05-04 00:45:12.434105 0 \N f \N 300 1 3 PV3-C-40 899.50 0.00 899.50 2020-05-03 18 2020-05-04 00:50:29.932517 2020-05-04 00:50:29.932517 0 \N f \N 301 1 3 PV3-C-41 1099.50 0.00 1099.50 2020-05-14 18 2020-05-14 20:52:42.558127 2020-05-14 20:52:42.558127 0 \N f \N 302 1 3 PV3-C-42 699.50 0.00 699.50 2020-05-14 18 2020-05-14 20:53:24.962596 2020-05-14 20:53:24.962596 0 \N f \N 303 1 3 PV3-C-43 4797.00 0.00 4797.00 2020-06-25 4 2020-06-25 21:30:28.960008 2020-06-25 21:30:28.960008 0 \N f \N 304 1 3 PV3-C-44 18188.50 0.00 18188.50 2020-07-04 21 2020-07-04 22:15:46.271875 2020-07-04 22:15:46.271875 0 \N f \N 305 1 3 PV3-C-45 499.00 0.00 499.00 2020-07-04 18 2020-07-04 23:23:33.976828 2020-07-04 23:23:33.976828 0 \N f \N 306 1 3 PV3-C-45 6796.00 0.00 6796.00 2020-07-04 4 2020-07-04 23:30:24.027071 2020-07-04 23:30:24.027071 0 \N f \N 307 1 3 PV3-C-47 424.50 0.00 424.50 2020-07-04 4 2020-07-04 23:37:38.819264 2020-07-04 23:37:38.819264 0 \N f \N 308 1 3 PV3-C-48 4497.00 0.00 4497.00 2020-07-13 18 2020-07-13 20:03:01.524488 2020-07-13 20:03:01.524488 0 \N f \N 309 1 3 PV3-C-49 974.00 0.00 974.00 2020-07-13 4 2020-07-13 21:13:35.552268 2020-07-13 21:13:35.552268 0 \N f \N 310 1 3 PV3-C-50 60.00 0.00 60.00 2020-07-13 4 2020-07-13 23:23:34.300001 2020-07-13 23:23:34.300001 0 \N f \N 311 1 3 PV3-C-51 5246.50 0.00 5246.50 2020-07-15 4 2020-07-15 19:18:14.764885 2020-07-15 19:18:14.764885 0 \N f \N 312 1 3 PV3-C-52 799.50 0.00 799.50 2020-07-15 4 2020-07-15 19:18:35.265385 2020-07-15 19:18:35.265385 0 \N f \N 313 1 3 PV3-C-53 699.50 0.00 699.50 2020-07-15 18 2020-07-15 20:14:15.644271 2020-07-15 20:14:15.644271 0 \N f \N 314 1 3 PV3-C-54 749.50 0.00 749.50 2020-07-15 18 2020-07-15 23:49:17.137028 2020-07-15 23:49:17.137028 0 \N f \N 315 1 1 PV1-C-125 399.00 0.00 399.00 2020-07-17 2 2020-07-17 18:54:27.554993 2020-07-17 18:54:27.554993 0 \N f \N 316 1 1 PV1-C-126 898.00 0.00 898.00 2020-07-17 2 2020-07-17 19:49:31.75326 2020-07-17 19:49:31.75326 0 \N f \N 317 1 1 PV1-C-127 4497.00 0.00 4497.00 2020-07-28 4 2020-07-28 21:49:35.981356 2020-07-28 21:49:35.981356 0 \N f \N 318 1 3 PV3-C-55 5844.50 0.00 5844.50 2020-07-29 4 2020-07-29 19:48:27.417804 2020-07-29 19:48:27.417804 0 \N f \N 319 1 1 PV1-C-128 1298.50 0.00 1298.50 2020-07-29 4 2020-07-29 20:08:43.686193 2020-07-29 20:08:43.686193 0 \N f \N 320 1 1 PV1-C-129 699.50 0.00 699.50 2020-07-29 4 2020-07-29 20:10:07.183956 2020-07-29 20:10:07.183956 0 \N f \N 321 1 3 PV3-C-56 699.50 0.00 699.50 2020-07-29 4 2020-07-29 20:10:39.529004 2020-07-29 20:10:39.529004 0 \N f \N 322 1 3 PV3-C-57 1099.50 0.00 1099.50 2020-07-31 18 2020-07-31 22:31:44.406279 2020-07-31 22:31:44.406279 0 \N f \N 323 1 3 PV3-C-58 14240.50 0.00 14240.50 2020-08-03 4 2020-08-03 19:18:18.235941 2020-08-03 19:18:18.235941 0 \N f \N 324 1 3 PV3-C-59 8794.50 0.00 8794.50 2020-08-03 4 2020-08-03 19:19:11.449234 2020-08-03 19:19:11.449234 0 \N f \N 325 1 1 PV1-C-130 13891.00 0.00 13891.00 2020-08-03 4 2020-08-03 19:46:16.445178 2020-08-03 19:46:16.445178 0 \N f \N 326 1 3 PV3-C-60 5446.00 0.00 5446.00 2020-08-03 4 2020-08-03 19:55:21.404994 2020-08-03 19:55:21.404994 0 \N f \N 327 1 1 PV1-C-131 2472.00 0.00 2472.00 2020-08-03 4 2020-08-03 20:10:53.486794 2020-08-03 20:10:53.486794 0 \N f \N 328 1 3 PV3-C-61 10942.50 0.00 10942.50 2020-08-07 4 2020-08-07 20:14:49.117567 2020-08-07 20:14:49.117567 0 \N f \N 329 1 3 PV3-C-62 2097.50 0.00 2097.50 2020-08-07 21 2020-08-07 21:16:23.104366 2020-08-07 21:16:23.104366 0 \N f \N 330 1 1 PV1-C-132 649.50 0.00 649.50 2020-08-07 4 2020-08-07 21:35:04.7905 2020-08-07 21:35:04.7905 0 \N f \N 331 1 \N CEN-C-58 3997.50 0.00 3997.50 2020-08-07 4 2020-08-07 21:52:06.276701 2020-08-07 21:52:06.276701 0 1 f \N 332 1 3 PV3-C-63 549.50 0.00 549.50 2020-08-07 21 2020-08-08 00:57:02.139201 2020-08-08 00:57:02.139201 0 \N f \N 333 1 3 PV3-C-64 3048.00 0.00 3048.00 2020-08-13 4 2020-08-13 19:06:58.625033 2020-08-13 19:06:58.625033 0 \N f \N 334 1 3 PV3-C-65 10793.00 0.00 10793.00 2020-08-13 4 2020-08-13 19:28:20.533875 2020-08-13 19:28:20.533875 0 \N f \N 335 2 1 PV1-C-133 1593.39 0.00 1593.39 2020-08-13 4 2020-08-14 05:22:50.296403 2020-08-14 05:22:50.296403 0 \N f \N 336 2 1 PV1-C-134 48.89 0.00 48.89 2020-08-13 4 2020-08-14 05:43:12.734565 2020-08-14 05:43:12.734565 0 \N f \N 337 2 3 PV3-C-66 1037.87 0.00 1037.87 2020-08-14 4 2020-08-14 19:33:48.46202 2020-08-14 19:33:48.46202 0 \N f \N 338 2 3 PV3-C-67 676.98 0.00 676.98 2020-08-14 4 2020-08-14 20:13:05.777925 2020-08-14 20:13:05.777925 0 \N f \N 339 2 3 PV3-C-68 100.48 0.00 100.48 2020-08-14 4 2020-08-14 20:15:43.114924 2020-08-14 20:15:43.114924 0 \N f \N 340 2 3 PV3-C-69 52.03 0.00 52.03 2020-08-14 4 2020-08-14 20:19:37.702251 2020-08-14 20:19:37.702251 0 \N f \N 341 2 3 PV3-C-70 38.00 0.00 38.00 2020-08-14 4 2020-08-14 20:56:43.602797 2020-08-14 20:56:59.704472 1 \N f \N 342 2 3 PV3-C-71 53.04 0.00 53.04 2020-08-14 4 2020-08-14 20:57:25.027515 2020-08-14 20:57:25.027515 0 \N f \N 343 2 1 PV1-C-135 98.17 0.00 98.17 2020-08-14 4 2020-08-14 21:02:03.629085 2020-08-14 21:02:03.629085 0 \N f \N 344 2 3 PV3-C-72 1554.32 0.00 1554.32 2020-08-14 4 2020-08-14 22:51:27.949737 2020-08-14 22:51:27.949737 0 \N f \N 345 2 3 PV3-C-73 1525.93 0.00 1525.93 2020-08-14 4 2020-08-14 23:35:48.32988 2020-08-14 23:35:48.32988 0 \N f \N 346 2 3 PV3-C-73 1525.93 0.00 1525.93 2020-08-14 4 2020-08-14 23:35:48.737864 2020-08-14 23:35:48.737864 0 \N f \N 347 2 3 PV3-C-75 386.52 0.00 386.52 2020-08-14 4 2020-08-14 23:45:29.54503 2020-08-14 23:45:29.54503 0 \N f \N 348 2 1 PV1-C-136 2307.34 0.00 2307.34 2020-08-14 4 2020-08-15 00:14:02.885111 2020-08-15 00:14:02.885111 0 \N f \N 349 2 1 PV1-C-137 619.61 0.00 619.61 2020-08-14 4 2020-08-15 00:28:07.704733 2020-08-15 00:28:07.704733 0 \N f \N 350 2 1 PV1-C-138 338.05 0.00 338.05 2020-08-14 4 2020-08-15 00:35:44.215726 2020-08-15 00:35:44.215726 0 \N f \N 351 1 3 PV3-C-76 1549.00 0.00 1549.00 2020-08-15 4 2020-08-15 20:22:04.476581 2020-08-15 20:22:04.476581 0 \N f \N 352 2 \N CEN-C-59 474.29 0.00 474.29 2020-08-15 4 2020-08-15 23:02:56.709885 2020-08-15 23:02:56.709885 0 1 f \N 353 2 3 PV3-C-77 98.89 0.00 98.89 2020-08-15 4 2020-08-15 23:31:03.763999 2020-08-15 23:31:03.763999 0 \N f \N 354 3 \N CEN-C-60 640.51 0.00 640.51 2020-08-15 4 2020-08-16 00:30:39.476018 2020-08-16 00:30:39.476018 0 1 f \N 355 3 1 PV1-C-139 518.61 0.00 518.61 2020-08-16 4 2020-08-17 00:30:04.05958 2020-08-17 00:30:04.05958 0 \N f \N 356 3 1 PV1-C-140 68.61 0.00 68.61 2020-08-16 4 2020-08-17 01:52:36.322005 2020-08-17 01:52:36.322005 0 \N f \N 357 3 3 PV3-C-78 766.79 0.00 766.79 2020-08-17 4 2020-08-17 19:22:09.286712 2020-08-17 19:22:09.286712 0 \N f \N 358 3 3 PV3-C-79 270.23 0.00 270.23 2020-08-17 4 2020-08-17 19:29:07.103509 2020-08-17 19:29:07.103509 0 \N f \N 359 3 3 PV3-C-80 68.61 0.00 68.61 2020-08-17 4 2020-08-17 19:29:42.869521 2020-08-17 19:29:42.869521 0 \N f \N 360 3 3 PV3-C-81 45.83 0.00 45.83 2020-08-17 4 2020-08-17 20:16:59.017677 2020-08-17 20:16:59.017677 0 \N f \N 361 3 3 PV3-C-81 45.83 0.00 45.83 2020-08-17 4 2020-08-17 20:16:59.571976 2020-08-17 20:16:59.571976 0 \N f \N 362 1 3 PV3-C-83 799.50 0.00 799.50 2020-08-18 4 2020-08-18 23:08:42.467815 2020-08-18 23:08:42.467815 0 \N f \N 363 2 1 PV1-C-141 749.50 0.00 749.50 2020-08-25 2 2020-08-25 23:10:18.672152 2020-08-25 23:10:18.672152 0 \N f \N 364 1 3 PV3-C-84 14339.50 0.00 14339.50 2020-08-27 4 2020-08-27 19:34:50.14221 2020-08-27 19:34:50.14221 0 \N f \N 365 1 1 PV1-C-142 6545.50 0.00 6545.50 2020-08-27 4 2020-08-27 19:56:19.52507 2020-08-27 19:56:19.52507 0 \N f \N 366 1 3 PV3-C-85 649.50 0.00 649.50 2020-08-27 4 2020-08-27 23:39:36.652747 2020-08-27 23:39:36.652747 0 \N f \N 367 1 3 PV3-C-86 1399.00 0.00 1399.00 2020-09-01 18 2020-09-01 18:38:11.860665 2020-09-01 18:38:11.860665 0 \N f \N 368 2 1 PV1-C-143 12492.12 0.00 12492.12 2020-09-03 4 2020-09-03 21:00:27.769654 2020-09-03 21:00:27.769654 0 \N f \N 369 2 1 PV1-C-144 11517.00 0.00 11517.00 2020-09-03 4 2020-09-03 22:10:09.174072 2020-09-03 22:10:09.174072 0 \N f \N 370 2 1 PV1-C-145 11220.00 0.00 11220.00 2020-09-03 4 2020-09-03 22:52:51.691406 2020-09-03 22:52:51.691406 0 \N f \N 371 2 1 PV1-C-146 2299.00 0.00 2299.00 2020-09-03 4 2020-09-03 23:17:32.225348 2020-09-03 23:17:32.225348 0 \N f \N 372 2 1 PV1-C-147 9312.00 0.00 9312.00 2020-09-03 4 2020-09-03 23:41:42.723624 2020-09-03 23:41:42.723624 0 \N f \N 373 2 1 PV1-C-148 3201.00 0.00 3201.00 2020-09-03 4 2020-09-03 23:57:05.208445 2020-09-03 23:57:05.208445 0 \N f \N 374 2 1 PV1-C-149 1498.50 0.00 1498.50 2020-09-04 2 2020-09-04 23:45:17.054696 2020-09-04 23:45:17.054696 0 \N f \N 375 2 1 PV1-C-150 2343.00 0.00 2343.00 2020-09-05 2 2020-09-05 16:50:56.732093 2020-09-05 16:50:56.732093 0 \N f \N 376 2 1 PV1-C-150 2343.00 0.00 2343.00 2020-09-05 2 2020-09-05 16:50:57.335467 2020-09-05 16:50:57.335467 0 \N f \N 377 2 3 PV3-C-87 23065.00 0.00 23065.00 2020-09-05 21 2020-09-05 20:03:07.119341 2020-09-05 20:03:07.119341 0 \N f \N 378 2 3 PV3-C-88 3841.50 0.00 3841.50 2020-09-05 21 2020-09-05 22:37:58.803341 2020-09-05 22:37:58.803341 0 \N f \N 379 2 3 PV3-C-89 2673.00 0.00 2673.00 2020-09-05 21 2020-09-05 22:40:33.471593 2020-09-05 22:40:33.471593 0 \N f \N 380 2 3 PV3-C-90 1100.00 0.00 1100.00 2020-09-07 4 2020-09-07 20:37:24.836723 2020-09-07 20:37:24.836723 0 \N f \N 381 1 3 PV3-C-91 14188.00 0.00 14188.00 2020-09-07 21 2020-09-07 23:00:42.907449 2020-09-07 23:00:42.907449 0 \N f \N 382 1 1 PV1-C-152 8643.00 0.00 8643.00 2020-09-07 4 2020-09-08 00:06:38.207131 2020-09-08 00:06:38.207131 0 \N f \N 383 2 3 PV3-C-92 2574.00 0.00 2574.00 2020-09-07 4 2020-09-08 00:43:56.323116 2020-09-08 00:43:56.323116 0 \N f \N 384 1 1 PV1-C-153 849.50 0.00 849.50 2020-09-08 25 2020-09-08 16:31:23.506896 2020-09-08 16:31:23.506896 0 \N f \N 385 1 3 PV3-C-93 2698.50 0.00 2698.50 2020-09-09 4 2020-09-09 21:51:38.868005 2020-09-09 21:51:38.868005 0 \N f \N 386 1 1 PV1-C-154 1799.00 0.00 1799.00 2020-09-09 4 2020-09-09 21:51:58.355487 2020-09-09 21:51:58.355487 0 \N f \N 387 2 3 PV3-C-94 1914.00 0.00 1914.00 2020-09-09 21 2020-09-10 01:04:19.879602 2020-09-10 01:04:19.879602 0 \N f \N 388 1 1 PV1-C-155 949.50 0.00 949.50 2020-09-15 4 2020-09-15 21:37:43.095867 2020-09-15 21:37:43.095867 0 \N f \N 389 3 1 PV1-C-156 103.50 0.00 103.50 2020-09-17 2 2020-09-17 23:32:44.041963 2020-09-17 23:32:44.041963 0 \N f \N 390 4 3 PV3-C-95 2025.50 0.00 2025.50 2020-09-18 4 2020-09-19 00:23:35.681863 2020-09-19 00:23:35.681863 0 \N f \N 391 1 1 PV1-C-157 6893.50 0.00 6893.50 2020-09-19 4 2020-09-19 21:58:06.192635 2020-09-19 21:58:06.192635 0 \N f \N 392 1 3 PV3-C-96 6294.50 0.00 6294.50 2020-09-21 21 2020-09-21 18:36:17.403004 2020-09-21 18:36:17.403004 0 \N f \N 393 1 1 PV1-C-158 1648.50 0.00 1648.50 2020-09-21 4 2020-09-21 18:42:17.427719 2020-09-21 18:42:17.427719 0 \N f \N 394 1 3 PV3-C-97 949.50 0.00 949.50 2020-09-21 21 2020-09-21 21:10:03.022215 2020-09-21 21:10:03.022215 0 \N f \N 395 1 1 PV1-C-159 1498.50 0.00 1498.50 2020-09-21 4 2020-09-22 00:55:53.696357 2020-09-22 00:55:53.696357 0 \N f \N 396 1 1 PV1-C-160 799.50 0.00 799.50 2020-09-22 4 2020-09-22 19:47:42.972834 2020-09-22 19:47:42.972834 0 \N f \N 397 1 1 PV1-C-161 898.50 0.00 898.50 2020-09-22 4 2020-09-22 20:17:05.093888 2020-09-22 20:17:05.093888 0 \N f \N 398 1 1 PV1-C-162 649.50 0.00 649.50 2020-09-24 4 2020-09-25 00:01:34.833339 2020-09-25 00:01:34.833339 0 \N f \N 399 2 3 PV3-C-98 1716.00 0.00 1716.00 2020-09-28 21 2020-09-28 19:11:21.386795 2020-09-28 19:11:21.386795 0 \N f \N 400 2 1 PV1-C-163 2002.00 0.00 2002.00 2020-09-28 30 2020-09-28 19:23:25.051962 2020-09-28 19:23:25.051962 0 \N f \N 401 1 3 PV3-C-99 16587.00 0.00 16587.00 2020-10-02 4 2020-10-02 19:40:29.27894 2020-10-02 19:40:29.27894 0 \N f \N 402 1 1 PV1-C-164 6793.50 0.00 6793.50 2020-10-02 4 2020-10-02 21:32:53.692688 2020-10-02 21:32:53.692688 0 \N f \N 403 1 1 PV1-C-165 2648.50 0.00 2648.50 2020-10-05 30 2020-10-05 21:00:30.192759 2020-10-05 21:00:30.192759 0 \N f \N 404 1 3 PV3-C-100 849.50 0.00 849.50 2020-10-05 30 2020-10-05 21:00:57.471486 2020-10-05 21:00:57.471486 0 \N f \N 405 1 3 PV3-C-101 449.50 0.00 449.50 2020-10-05 30 2020-10-05 22:21:39.671698 2020-10-05 22:21:39.671698 0 \N f \N 406 1 3 PV3-C-102 3747.50 0.00 3747.50 2020-10-05 30 2020-10-06 00:08:21.565326 2020-10-06 00:08:21.565326 0 \N f \N 407 1 3 PV3-C-103 849.50 0.00 849.50 2020-10-09 4 2020-10-09 20:45:26.700964 2020-10-09 20:45:26.700964 0 \N f \N 408 1 1 PV1-C-166 2798.00 0.00 2798.00 2020-10-09 4 2020-10-09 20:47:25.393787 2020-10-09 20:47:25.393787 0 \N f \N 409 1 3 PV3-C-104 2098.50 0.00 2098.50 2020-10-09 4 2020-10-09 20:48:02.50914 2020-10-09 20:48:02.50914 0 \N f \N 410 1 1 PV1-C-167 949.50 0.00 949.50 2020-10-09 4 2020-10-10 00:27:12.134864 2020-10-10 00:27:12.134864 0 \N f \N 411 3 3 PV3-C-105 30.00 0.00 30.00 2020-10-13 18 2020-10-13 18:33:29.581442 2020-10-13 18:33:29.581442 0 \N f \N 412 4 3 PV3-C-106 356.00 0.00 356.00 2020-10-14 4 2020-10-14 23:40:45.23665 2020-10-14 23:40:45.23665 0 \N f \N 413 1 3 PV3-C-107 999.50 0.00 999.50 2020-10-14 4 2020-10-15 01:21:49.315155 2020-10-15 01:21:49.315155 0 \N f \N 414 1 3 PV3-C-108 6746.00 0.00 6746.00 2020-10-22 4 2020-10-22 18:52:40.873675 2020-10-22 18:52:40.873675 0 \N f \N 415 1 3 PV3-C-109 22487.50 0.00 22487.50 2020-10-22 18 2020-10-22 23:48:19.291704 2020-10-22 23:48:19.291704 0 \N f \N 416 1 1 PV1-C-168 19838.50 0.00 19838.50 2020-10-22 4 2020-10-23 00:20:57.822736 2020-10-23 00:20:57.822736 0 \N f \N 417 1 3 PV3-C-110 2098.50 0.00 2098.50 2020-10-22 4 2020-10-23 00:23:37.913106 2020-10-23 00:23:37.913106 0 \N f \N 418 1 3 PV3-C-111 4196.50 0.00 4196.50 2020-10-22 18 2020-10-23 01:01:18.432522 2020-10-23 01:01:18.432522 0 \N f \N 419 1 3 PV3-C-112 14890.00 0.00 14890.00 2020-10-23 18 2020-10-23 18:54:36.414682 2020-10-23 18:54:36.414682 0 \N f \N 420 3 1 PV1-C-169 1193.06 0.00 1193.06 2020-10-25 30 2020-10-25 21:24:49.040586 2020-10-25 21:24:49.040586 0 \N f \N 421 3 1 PV1-C-170 1371.61 0.00 1371.61 2020-10-25 30 2020-10-25 23:33:38.667643 2020-10-25 23:33:38.667643 0 \N f \N 422 3 1 PV1-C-171 272.98 0.00 272.98 2020-10-25 30 2020-10-26 01:00:40.029477 2020-10-26 01:00:40.029477 0 \N f \N 423 3 3 PV3-C-113 1522.14 0.00 1522.14 2020-10-25 30 2020-10-26 01:50:57.046822 2020-10-26 01:50:57.046822 0 \N f \N 424 3 3 PV3-C-114 638.31 0.00 638.31 2020-10-25 30 2020-10-26 02:17:45.242798 2020-10-26 02:17:45.242798 0 \N f \N 425 1 3 PV3-C-115 3448.50 0.00 3448.50 2020-10-26 21 2020-10-26 21:59:43.287558 2020-10-26 21:59:43.287558 0 \N f \N 426 1 3 PV3-C-116 4598.00 0.00 4598.00 2020-10-26 21 2020-10-26 22:13:19.359239 2020-10-26 22:13:19.359239 0 \N f \N 427 3 3 PV3-C-117 381.44 0.00 381.44 2020-10-27 4 2020-10-27 19:45:18.061199 2020-10-27 19:45:18.061199 0 \N f \N 428 3 1 PV1-C-172 207.00 0.00 207.00 2020-10-27 4 2020-10-27 21:18:46.39858 2020-10-27 21:18:46.39858 0 \N f \N 429 3 3 PV3-C-118 366.00 0.00 366.00 2020-10-27 4 2020-10-27 21:42:41.893381 2020-10-27 21:42:41.893381 0 \N f \N 430 3 1 PV1-C-173 128.00 0.00 128.00 2020-10-27 4 2020-10-27 21:57:02.160484 2020-10-27 21:57:02.160484 0 \N f \N 431 3 3 PV3-C-119 262.00 0.00 262.00 2020-10-27 4 2020-10-27 22:21:11.232226 2020-10-27 22:21:11.232226 0 \N f \N 432 3 3 PV3-C-120 356.00 0.00 356.00 2020-10-27 4 2020-10-27 22:56:27.806215 2020-10-27 22:56:27.806215 0 \N f \N 433 1 1 PV1-C-174 6396.00 0.00 6396.00 2020-10-27 4 2020-10-27 23:00:02.522274 2020-10-27 23:00:02.522274 0 \N f \N 434 3 3 PV3-C-121 368.00 0.00 368.00 2020-10-27 4 2020-10-27 23:53:06.223229 2020-10-27 23:53:06.223229 0 \N f \N 435 3 3 PV3-C-122 19.00 0.00 19.00 2020-10-27 4 2020-10-28 00:14:28.719071 2020-10-28 00:14:28.719071 0 \N f \N 436 3 1 PV1-C-175 240.57 0.00 240.57 2020-10-27 4 2020-10-28 00:24:00.063134 2020-10-28 00:24:00.063134 0 \N f \N 437 3 1 PV1-C-176 368.08 0.00 368.08 2020-10-28 4 2020-10-28 20:01:12.209327 2020-10-28 20:01:12.209327 0 \N f \N 438 3 1 PV1-C-177 200.00 0.00 200.00 2020-10-28 4 2020-10-28 20:32:36.812949 2020-10-28 20:32:36.812949 0 \N f \N 439 3 1 PV1-C-178 122.00 0.00 122.00 2020-10-28 4 2020-10-28 20:57:11.021674 2020-10-28 20:57:11.021674 0 \N f \N 440 1 3 PV3-C-123 15889.50 0.00 15889.50 2020-10-29 4 2020-10-29 20:48:02.90632 2020-10-29 20:48:02.90632 0 \N f \N 441 1 1 PV1-C-179 6845.50 0.00 6845.50 2020-10-29 4 2020-10-29 20:53:15.156629 2020-10-29 20:53:15.156629 0 \N f \N 442 1 1 PV1-C-180 649.50 0.00 649.50 2020-10-29 4 2020-10-29 20:56:16.045957 2020-10-29 20:56:16.045957 0 \N f \N 443 1 3 PV3-C-124 3546.00 0.00 3546.00 2020-10-29 4 2020-10-29 21:26:09.431375 2020-10-29 21:26:09.431375 0 \N f \N 444 1 1 PV1-C-181 7945.00 0.00 7945.00 2020-10-29 4 2020-10-29 23:09:26.255577 2020-10-29 23:09:26.255577 0 \N f \N 445 1 3 PV3-C-125 7995.00 0.00 7995.00 2020-10-29 4 2020-10-29 23:10:10.185432 2020-10-29 23:10:10.185432 0 \N f \N 446 1 1 PV1-C-182 2946.00 0.00 2946.00 2020-10-29 4 2020-10-29 23:15:10.107821 2020-10-29 23:15:10.107821 0 \N f \N 447 1 1 PV1-C-183 449.50 0.00 449.50 2020-10-29 4 2020-10-29 23:19:41.511842 2020-10-29 23:19:41.511842 0 \N f \N 448 1 3 PV3-C-126 4797.00 0.00 4797.00 2020-10-30 18 2020-10-31 01:37:26.864799 2020-10-31 01:37:26.864799 0 \N f \N 449 2 1 PV1-C-184 4722.00 0.00 4722.00 2020-10-31 2 2020-11-01 02:08:41.860869 2020-11-01 02:08:41.860869 0 \N f \N 450 2 1 PV1-C-185 4587.00 0.00 4587.00 2020-11-02 2 2020-11-02 19:06:10.454643 2020-11-02 19:06:10.454643 0 \N f \N 451 2 1 PV1-C-186 990.00 0.00 990.00 2020-11-02 2 2020-11-02 20:44:48.219863 2020-11-02 20:44:48.219863 0 \N f \N 452 2 1 PV1-C-187 1290.00 0.00 1290.00 2020-11-02 2 2020-11-02 23:40:39.262221 2020-11-02 23:40:39.262221 0 \N f \N 453 2 1 PV1-C-188 18939.00 0.00 18939.00 2020-11-03 2 2020-11-03 19:45:12.217966 2020-11-03 19:45:12.217966 0 \N f \N 454 2 1 PV1-C-189 7161.00 0.00 7161.00 2020-11-03 2 2020-11-03 20:58:59.933708 2020-11-03 20:58:59.933708 0 \N f \N 455 2 1 PV1-C-190 6440.50 0.00 6440.50 2020-11-03 2 2020-11-03 21:14:24.26407 2020-11-03 21:14:24.26407 0 \N f \N 456 2 1 PV1-C-191 7011.00 0.00 7011.00 2020-11-03 2 2020-11-03 22:26:52.610321 2020-11-03 22:26:52.610321 0 \N f \N 457 2 1 PV1-C-192 14562.50 0.00 14562.50 2020-11-03 2 2020-11-04 00:05:33.154025 2020-11-04 00:05:33.154025 0 \N f \N 458 2 1 PV1-C-193 1683.00 0.00 1683.00 2020-11-03 2 2020-11-04 00:24:44.037519 2020-11-04 00:24:44.037519 0 \N f \N 459 1 1 PV1-C-194 599.50 0.00 599.50 2020-11-03 30 2020-11-04 01:39:20.674518 2020-11-04 01:39:20.674518 0 \N f \N 460 1 3 PV3-C-127 2997.50 0.00 2997.50 2020-11-03 30 2020-11-04 01:40:36.42649 2020-11-04 01:40:36.42649 0 \N f \N 461 1 3 PV3-C-127 19039.00 0.00 19039.00 2020-11-03 21 2020-11-04 01:41:20.241461 2020-11-04 01:41:20.241461 0 \N f \N 462 2 1 PV1-C-195 4895.00 0.00 4895.00 2020-11-04 2 2020-11-05 01:27:39.944133 2020-11-05 01:27:39.944133 0 \N f \N 463 2 1 PV1-C-196 5060.00 0.00 5060.00 2020-11-05 2 2020-11-06 01:15:17.786661 2020-11-06 01:15:17.786661 0 \N f \N 464 2 1 PV1-C-196 330.00 0.00 330.00 2020-11-05 2 2020-11-06 01:17:18.770972 2020-11-06 01:17:18.770972 0 \N f \N 465 2 1 PV1-C-198 940.50 0.00 940.50 2020-11-06 2 2020-11-06 20:57:59.572131 2020-11-06 20:57:59.572131 0 \N f \N 466 2 3 PV3-C-129 29747.50 0.00 29747.50 2020-11-06 21 2020-11-06 21:37:27.894241 2020-11-06 21:37:27.894241 0 \N f \N 467 2 3 PV3-C-130 10701.50 0.00 10701.50 2020-11-06 21 2020-11-06 22:21:30.627035 2020-11-06 22:21:30.627035 0 \N f \N 468 2 3 PV3-C-131 649.00 0.00 649.00 2020-11-06 21 2020-11-06 22:23:18.260669 2020-11-06 22:23:18.260669 0 \N f \N 469 1 3 PV3-C-132 4197.00 0.00 4197.00 2020-11-10 18 2020-11-10 20:01:04.849132 2020-11-10 20:01:04.849132 0 \N f \N 470 1 1 PV1-C-199 3497.50 0.00 3497.50 2020-11-10 4 2020-11-10 20:53:10.881269 2020-11-10 20:53:10.881269 0 \N f \N 471 1 1 PV1-C-200 7995.00 0.00 7995.00 2020-11-11 2 2020-11-11 20:52:41.669904 2020-11-11 20:52:41.669904 0 \N f \N 472 1 3 PV3-C-133 599.00 0.00 599.00 2020-11-11 18 2020-11-12 00:46:28.458361 2020-11-12 00:46:28.458361 0 \N f \N 473 1 3 PV3-C-134 848.50 0.00 848.50 2020-11-11 18 2020-11-12 01:17:36.68539 2020-11-12 01:17:36.68539 0 \N f \N 474 1 3 PV3-C-135 1549.50 0.00 1549.50 2020-11-11 18 2020-11-12 01:58:31.936954 2020-11-12 01:58:31.936954 0 \N f \N 475 2 1 PV1-C-201 341.00 0.00 341.00 2020-11-13 2 2020-11-14 01:54:25.123299 2020-11-14 01:54:25.123299 0 \N f \N 476 3 1 PV1-C-202 33.44 0.00 33.44 2020-11-13 2 2020-11-14 01:55:04.553654 2020-11-14 01:55:04.553654 0 \N f \N 477 2 1 PV1-C-203 3685.00 0.00 3685.00 2020-11-14 2 2020-11-14 18:56:47.277692 2020-11-14 18:56:47.277692 0 \N f \N 478 1 3 PV3-C-136 28682.50 0.00 28682.50 2020-11-14 18 2020-11-14 19:50:50.905212 2020-11-14 19:50:50.905212 0 \N f \N 479 2 1 PV1-C-204 1375.00 0.00 1375.00 2020-11-14 2 2020-11-14 20:18:38.043595 2020-11-14 20:18:38.043595 0 \N f \N 480 2 3 PV3-C-137 2937.00 0.00 2937.00 2020-11-16 21 2020-11-16 20:55:31.98385 2020-11-16 20:55:31.98385 0 \N f \N 481 2 3 PV3-C-138 6567.00 0.00 6567.00 2020-11-16 21 2020-11-16 20:59:41.244587 2020-11-16 20:59:41.244587 0 \N f \N 482 1 3 PV3-C-139 1899.00 0.00 1899.00 2020-11-18 21 2020-11-19 00:29:09.383631 2020-11-19 00:29:09.383631 0 \N f \N 483 1 3 PV3-C-140 11393.00 0.00 11393.00 2020-11-18 21 2020-11-19 01:12:27.06539 2020-11-19 01:12:27.06539 0 \N f \N 484 1 1 PV1-C-205 4197.00 0.00 4197.00 2020-11-21 2 2020-11-21 19:07:56.591062 2020-11-21 19:07:56.591062 0 \N f \N 485 1 1 PV1-C-206 5097.00 0.00 5097.00 2020-11-23 2 2020-11-23 19:16:17.977908 2020-11-23 19:16:17.977908 0 \N f \N 486 1 3 PV3-C-141 3747.50 0.00 3747.50 2020-11-26 21 2020-11-26 19:53:48.982911 2020-11-26 19:53:48.982911 0 \N f \N 487 1 1 PV1-C-207 4347.00 0.00 4347.00 2020-11-26 4 2020-11-26 20:23:39.486064 2020-11-26 20:23:39.486064 0 \N f \N 488 1 3 PV3-C-142 2798.00 0.00 2798.00 2020-11-26 4 2020-11-26 20:23:59.695851 2020-11-26 20:23:59.695851 0 \N f \N 489 2 1 PV1-C-208 1705.00 0.00 1705.00 2020-11-26 2 2020-11-27 00:07:46.34953 2020-11-27 00:07:46.34953 0 \N f \N 490 2 1 PV1-C-209 2926.20 0.00 2926.20 2020-11-26 2 2020-11-27 00:46:12.375204 2020-11-27 00:46:12.375204 0 \N f \N 491 1 3 PV3-C-143 2698.50 0.00 2698.50 2020-11-26 18 2020-11-27 01:20:46.182196 2020-11-27 01:20:46.182196 0 \N f \N 492 1 1 PV1-C-210 5397.00 0.00 5397.00 2020-11-28 2 2020-11-28 21:17:02.516363 2020-11-28 21:17:02.516363 0 \N f \N 493 1 1 PV1-C-211 449.50 0.00 449.50 2020-12-01 2 2020-12-01 20:26:41.626252 2020-12-01 20:26:41.626252 0 \N f \N 494 2 1 PV1-C-212 1001.00 0.00 1001.00 2020-12-02 2 2020-12-03 00:35:06.205301 2020-12-03 00:35:06.205301 0 \N f \N 495 2 1 PV1-C-213 957.00 0.00 957.00 2020-12-02 2 2020-12-03 00:45:10.479102 2020-12-03 00:45:10.479102 0 \N f \N 496 1 1 PV1-C-214 449.50 0.00 449.50 2020-12-09 4 2020-12-09 19:37:58.67932 2020-12-09 19:37:58.67932 0 \N f \N 497 2 1 PV1-C-215 439.50 0.00 439.50 2020-12-12 2 2020-12-12 20:31:57.940517 2020-12-12 20:31:57.940517 0 \N f \N 498 2 1 PV1-C-216 840.00 0.00 840.00 2020-12-12 2 2020-12-13 00:35:24.133141 2020-12-13 00:35:24.133141 0 \N f \N 499 1 3 PV3-C-144 12594.00 0.00 12594.00 2020-12-12 18 2020-12-13 01:02:38.889199 2020-12-13 01:02:38.889199 0 \N f \N 500 1 3 PV3-C-145 899.50 0.00 899.50 2020-12-12 18 2020-12-13 01:03:02.517764 2020-12-13 01:03:02.517764 0 \N f \N 501 3 3 PV3-C-146 228.00 0.00 228.00 2020-12-14 21 2020-12-14 21:50:04.485864 2020-12-14 21:50:04.485864 0 \N f \N 502 1 3 PV3-C-147 7495.00 0.00 7495.00 2020-12-15 18 2020-12-15 22:20:21.829257 2020-12-15 22:20:21.829257 0 \N f \N 503 1 1 PV1-C-217 14991.00 0.00 14991.00 2020-12-15 4 2020-12-15 22:29:20.463796 2020-12-15 22:29:20.463796 0 \N f \N 504 2 1 PV1-C-218 2585.00 0.00 2585.00 2020-12-15 2 2020-12-15 23:11:41.602025 2020-12-15 23:11:41.602025 0 \N f \N 505 1 1 PV1-C-219 3598.00 0.00 3598.00 2020-12-16 2 2020-12-16 18:12:41.118796 2020-12-16 18:12:41.118796 0 \N f \N 506 1 3 PV3-C-148 749.50 0.00 749.50 2020-12-17 4 2020-12-18 06:45:01.390164 2020-12-18 06:45:01.390164 0 \N f \N 507 1 3 PV3-C-149 299.50 0.00 299.50 2020-12-22 4 2020-12-22 20:51:48.353851 2020-12-22 20:51:48.353851 0 \N f \N 508 1 3 PV3-C-150 399.50 0.00 399.50 2020-12-22 4 2020-12-22 20:52:43.455472 2020-12-22 20:52:43.455472 0 \N f \N 509 1 3 PV3-C-151 1049.50 0.00 1049.50 2020-12-23 18 2020-12-23 18:40:47.674025 2020-12-23 18:40:47.674025 0 \N f \N 510 1 \N CEN-C-61 2798.00 0.00 2798.00 2021-01-04 4 2021-01-04 21:41:21.830864 2021-01-04 21:41:21.830864 0 1 f \N 511 1 3 PV3-C-152 5746.00 0.00 5746.00 2021-01-04 21 2021-01-04 23:54:52.218276 2021-01-04 23:54:52.218276 0 \N f \N 512 1 3 PV3-C-153 2747.50 0.00 2747.50 2021-01-11 21 2021-01-11 22:55:16.609722 2021-01-11 22:55:16.609722 0 \N f \N 513 1 3 PV3-C-154 2847.00 0.00 2847.00 2021-01-12 21 2021-01-13 00:13:24.565889 2021-01-13 00:13:24.565889 0 \N f \N 514 1 3 PV3-C-155 2248.50 0.00 2248.50 2021-01-12 21 2021-01-13 00:23:03.989645 2021-01-13 00:23:03.989645 0 \N f \N 515 1 1 PV1-C-220 4996.00 0.00 4996.00 2021-01-12 2 2021-01-13 00:25:16.278897 2021-01-13 00:25:16.278897 0 \N f \N 516 1 3 PV3-C-156 6745.50 0.00 6745.50 2021-01-15 4 2021-01-16 01:26:33.079398 2021-01-16 01:26:33.079398 0 \N f \N 517 2 1 PV1-C-221 836.00 0.00 836.00 2021-01-15 2 2021-01-16 01:50:08.109859 2021-01-16 01:50:08.109859 0 \N f \N 518 1 3 PV3-C-157 1299.00 0.00 1299.00 2021-01-21 4 2021-01-22 00:30:18.01019 2021-01-22 00:30:18.01019 0 \N f \N 519 1 1 PV1-C-222 649.50 0.00 649.50 2021-01-21 4 2021-01-22 00:30:37.872843 2021-01-22 00:30:37.872843 0 \N f \N 520 1 3 PV3-C-158 849.50 0.00 849.50 2021-01-22 21 2021-01-23 00:54:24.111265 2021-01-23 00:54:24.111265 0 \N f \N \. -- -- Name: purchases_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.purchases_id_seq', 520, true); -- -- Data for Name: sales; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.sales (id, customer_id, user_id, open_cash_register_id, amount, tax, discount, total, status, date_sale, created_at, updated_at, saletype, seller_id, sale_code, expiration_date, credit_note, invoice_num, require_invoice) FROM stdin; 32 1 2 4 499.00 0.00 0.00 499.00 2 2019-02-06 2019-02-06 17:22:34.383821 2019-02-06 17:23:01.915057 1 1 PV1-V-18 \N \N f 3 1 2 2 1448.00 0.00 0.00 1448.00 2 2019-02-05 2019-02-05 21:45:38.30581 2019-02-05 21:46:07.35534 1 1 PV1-V-1 \N \N f 4 1 2 2 1049.00 0.00 0.00 1049.00 2 2019-02-05 2019-02-05 22:11:05.704869 2019-02-05 22:11:13.625725 1 1 PV1-V-2 \N \N f 5 1 2 2 1168.00 0.00 0.00 1168.00 2 2019-02-05 2019-02-05 22:13:42.097525 2019-02-05 22:13:50.861002 1 1 PV1-V-3 \N \N f 6 1 2 2 1199.00 0.00 0.00 1199.00 2 2019-02-05 2019-02-05 22:15:02.928211 2019-02-05 22:15:08.658426 1 1 PV1-V-4 \N \N f 7 1 2 2 2537.00 0.00 0.00 2537.00 2 2019-02-05 2019-02-05 22:16:42.154841 2019-02-05 22:17:20.211622 1 1 PV1-V-5 \N \N f 12 4 2 2 599.00 0.00 0.00 599.00 2 2019-02-05 2019-02-05 22:32:25.328014 2019-02-24 19:35:19.28541 2 1 PV1-V-10 2019-03-12 \N f 9 1 2 2 2346.00 0.00 0.00 2346.00 2 2019-02-05 2019-02-05 22:26:00.811989 2019-02-05 22:26:07.794357 1 1 PV1-V-7 \N \N f 11 4 2 2 599.00 0.00 0.00 599.00 1 2019-02-05 2019-02-05 22:31:47.458224 2019-02-05 22:32:03.234859 1 1 PV1-V-9 \N \N f 64 12 2 11 645.69 103.31 0.00 749.00 2 2019-02-11 2019-02-12 00:32:53.345124 2019-03-02 21:41:43.528706 2 1 PV1-V-36 2019-03-18 \N f 54 1 2 9 1265.52 202.48 0.00 1468.00 2 2019-02-09 2019-02-09 21:19:03.16551 2019-02-09 21:19:42.841919 1 1 PV1-V-31 \N \N f 8 2 2 2 899.00 0.00 0.00 899.00 2 2019-02-05 2019-02-05 22:21:49.849483 2019-02-22 19:11:12.808372 2 1 PV1-V-6 2019-03-12 \N f 15 1 2 2 1299.00 0.00 0.00 1299.00 2 2019-02-05 2019-02-05 22:39:39.053536 2019-02-05 22:40:00.092958 1 1 PV1-V-13 \N \N f 16 1 2 2 2742.00 0.00 0.00 2742.00 2 2019-02-05 2019-02-05 22:41:00.06092 2019-02-05 22:41:05.267578 1 1 PV1-V-14 \N \N f 33 1 2 4 1199.00 0.00 0.00 1199.00 2 2019-02-06 2019-02-06 17:27:51.817702 2019-02-06 17:27:58.69158 1 1 PV1-V-19 \N \N f 17 3 2 2 2566.00 0.00 0.00 2566.00 1 2019-02-05 2019-02-05 22:44:53.105677 2019-02-05 22:46:02.240566 1 1 PV1-V-15 \N \N f 19 1 9 2 1248.00 0.00 0.00 1248.00 2 2019-02-05 2019-02-06 00:39:01.863927 2019-02-06 00:39:08.352073 1 3 PV1-V-17 \N \N f 20 1 10 3 499.00 0.00 0.00 499.00 2 2019-02-05 2019-02-06 00:40:26.788739 2019-02-06 00:40:30.932045 1 4 PV2-V-1 \N \N f 10 3 2 2 1398.00 0.00 0.00 1398.00 2 2019-02-05 2019-02-05 22:30:22.498526 2019-02-06 00:46:46.961498 0 1 PV1-V-8 \N \N f 21 1 3 3 499.00 0.00 100.00 399.00 2 2019-02-05 2019-02-06 01:28:26.876486 2019-02-06 01:28:36.008843 1 2 PV2-V-2 \N \N f 22 1 3 3 469.00 0.00 0.00 469.00 2 2019-02-05 2019-02-06 01:30:42.24658 2019-02-06 01:30:48.691717 1 2 PV2-V-3 \N \N f 24 1 3 3 499.00 0.00 0.00 499.00 2 2019-02-05 2019-02-06 01:38:42.853836 2019-02-06 01:39:19.693694 1 2 PV2-V-5 \N \N f 25 1 3 3 899.00 0.00 0.00 899.00 2 2019-02-05 2019-02-06 01:40:06.486695 2019-02-06 01:40:20.315619 1 2 PV2-V-6 \N \N f 26 1 3 3 619.00 0.00 0.00 619.00 2 2019-02-05 2019-02-06 01:40:53.802691 2019-02-06 01:41:10.489378 1 2 PV2-V-7 \N \N f 28 1 3 3 729.00 0.00 0.00 729.00 2 2019-02-05 2019-02-06 01:46:45.960301 2019-02-06 01:46:53.426815 1 2 PV2-V-9 \N \N f 29 1 3 3 899.00 0.00 0.00 899.00 2 2019-02-05 2019-02-06 01:47:26.52994 2019-02-06 01:47:41.140529 1 2 PV2-V-10 \N \N f 30 1 3 3 899.00 0.00 0.00 899.00 2 2019-02-05 2019-02-06 01:48:03.56509 2019-02-06 01:48:11.364256 1 2 PV2-V-11 \N \N f 31 1 3 3 499.00 0.00 0.00 499.00 2 2019-02-05 2019-02-06 02:29:54.267886 2019-02-06 02:30:08.189105 1 2 PV2-V-12 \N \N f 34 1 9 4 1299.00 0.00 0.00 1299.00 2 2019-02-06 2019-02-06 20:10:18.227133 2019-02-06 20:10:24.835541 1 3 PV1-V-20 \N \N f 35 1 3 5 699.00 0.00 0.00 699.00 2 2019-02-06 2019-02-06 20:17:18.203641 2019-02-06 20:17:24.528359 1 2 PV2-V-13 \N \N f 47 1 2 6 559.48 89.52 0.00 649.00 1 2019-02-08 2019-02-09 01:26:41.969324 2019-02-09 01:27:43.107622 1 1 PV1-V-27 \N \N f 37 1 3 5 585.34 93.65 0.00 678.99 2 2019-02-06 2019-02-06 21:49:55.761032 2019-02-06 21:53:53.481164 1 2 PV2-V-15 \N \N f 61 11 10 10 1162.07 185.93 0.00 1348.00 2 2019-02-11 2019-02-11 21:14:18.032285 2019-02-12 20:31:34.275218 2 4 PV2-V-25 2019-03-18 \N f 36 8 3 5 599.00 0.00 0.00 599.00 2 2019-02-06 2019-02-06 20:20:16.787649 2019-02-06 22:14:46.453288 2 2 PV2-V-14 2019-03-13 \N f 38 1 2 4 662.93 106.07 0.00 769.00 2 2019-02-06 2019-02-06 23:42:24.032708 2019-02-06 23:43:01.264076 1 1 PV1-V-21 \N \N f 39 1 9 4 2091.37 334.63 0.00 2426.00 2 2019-02-06 2019-02-07 00:23:10.48583 2019-02-07 00:25:49.511211 1 3 PV1-V-22 \N \N f 40 1 9 4 602.59 96.41 0.00 699.00 2 2019-02-06 2019-02-07 00:35:27.349845 2019-02-07 00:35:44.503914 1 3 PV1-V-23 \N \N f 41 1 3 5 688.79 110.21 0.00 799.00 2 2019-02-06 2019-02-07 00:41:45.192266 2019-02-07 00:42:30.46186 1 2 PV2-V-16 \N \N f 42 1 9 4 443.94 55.06 99.80 399.20 2 2019-02-06 2019-02-07 00:46:04.027148 2019-02-07 00:46:10.382872 1 3 PV1-V-24 \N \N f 43 1 3 5 404.31 64.69 0.00 469.00 2 2019-02-06 2019-02-07 00:49:17.270332 2019-02-07 00:49:31.898564 1 2 PV2-V-17 \N \N f 44 1 10 7 533.62 85.38 0.00 619.00 2 2019-02-08 2019-02-08 20:06:56.332116 2019-02-08 20:07:23.407398 1 2 PV2-V-18 \N \N f 45 1 2 6 1033.62 165.38 0.00 1199.00 2 2019-02-08 2019-02-08 20:09:49.658184 2019-02-08 20:11:29.182749 1 1 PV1-V-25 \N \N f 46 1 2 6 1007.76 161.24 0.00 1169.00 2 2019-02-08 2019-02-08 23:13:31.523549 2019-02-08 23:13:38.851417 1 1 PV1-V-26 \N \N f 48 1 2 6 1032.76 165.24 0.00 1198.00 2 2019-02-08 2019-02-09 01:28:20.502011 2019-02-09 01:30:29.833211 1 1 PV1-V-28 \N \N f 49 1 3 7 516.38 82.62 0.00 599.00 2 2019-02-08 2019-02-09 02:12:57.947977 2019-02-09 02:13:03.175884 1 2 PV2-V-19 \N \N f 13 5 2 2 1048.00 0.00 0.00 1048.00 2 2019-02-05 2019-02-05 22:35:30.485841 2019-02-09 02:31:37.331227 2 1 PV1-V-11 2019-03-12 \N f 50 1 2 6 1007.76 161.24 0.00 1169.00 2 2019-02-08 2019-02-09 02:39:21.856603 2019-02-09 02:43:18.072479 1 1 PV1-V-29 \N \N f 51 1 3 8 421.55 67.45 0.00 489.00 2 2019-02-09 2019-02-09 17:33:43.942883 2019-02-09 17:33:55.587378 1 2 PV2-V-20 \N \N f 52 1 2 9 645.69 103.31 0.00 749.00 2 2019-02-09 2019-02-09 19:28:40.709376 2019-02-09 19:29:47.258586 1 1 PV1-V-30 \N \N f 53 1 3 8 851.72 136.28 0.00 988.00 2 2019-02-09 2019-02-09 20:16:30.827505 2019-02-09 20:17:54.660264 1 2 PV2-V-21 \N \N f 55 1 3 8 343.97 55.04 0.00 399.01 2 2019-02-09 2019-02-09 21:25:30.405656 2019-02-09 21:26:24.531762 1 2 PV2-V-22 \N \N f 27 3 3 3 499.00 0.00 0.00 499.00 2 2019-02-05 2019-02-06 01:41:53.543618 2019-05-09 17:44:30.897847 0 2 PV2-V-8 \N \N f 57 1 3 8 430.17 68.83 0.00 499.00 2 2019-02-09 2019-02-09 21:31:15.51571 2019-02-09 21:31:21.498406 1 2 PV2-V-23 \N \N f 58 1 2 11 507.76 81.24 0.00 589.00 2 2019-02-11 2019-02-11 18:51:57.265862 2019-02-11 18:52:54.590532 1 1 PV1-V-33 \N \N f 59 1 2 11 775.00 124.00 0.00 899.00 2 2019-02-11 2019-02-11 19:36:54.214559 2019-02-11 19:37:18.08349 1 1 PV1-V-34 \N \N f 60 1 10 10 490.52 78.48 0.00 569.00 2 2019-02-11 2019-02-11 19:52:26.182632 2019-02-11 19:52:32.753246 1 4 PV2-V-24 \N \N f 62 1 2 11 1699.00 0.00 0.00 1699.00 2 2019-02-11 2019-02-11 22:12:53.583365 2019-02-11 22:13:28.2573 1 1 PV1-V-35 \N \N f 63 1 10 10 602.59 96.41 0.00 699.00 2 2019-02-11 2019-02-12 00:20:20.733796 2019-02-12 00:20:29.848643 1 4 PV2-V-26 \N \N f 66 13 10 10 568.10 90.90 0.00 659.00 2 2019-02-11 2019-02-12 01:41:08.070811 2019-03-09 22:29:49.577154 2 4 PV2-V-28 2019-03-18 \N f 65 1 10 10 825.86 132.14 0.00 958.00 2 2019-02-11 2019-02-12 01:32:52.124306 2019-02-12 01:32:59.108842 1 4 PV2-V-27 \N \N f 56 10 2 9 576.72 92.28 0.00 669.00 2 2019-02-09 2019-02-09 21:27:38.197768 2019-03-15 01:44:59.605026 2 1 PV1-V-32 2019-03-16 \N f 14 6 2 2 2746.00 0.00 0.00 2746.00 2 2019-02-05 2019-02-05 22:38:21.371023 2019-02-21 21:14:20.552424 2 1 PV1-V-12 2019-03-12 \N f 23 7 3 3 499.00 0.00 0.00 499.00 2 2019-02-05 2019-02-06 01:32:38.835815 2019-02-13 23:44:32.088247 2 2 PV2-V-4 2019-03-12 \N f 18 3 2 2 2566.00 0.00 0.00 2566.00 2 2019-02-05 2019-02-05 22:46:37.473575 2019-07-09 18:22:33.515599 0 1 PV1-V-16 \N \N f 68 1 2 12 430.17 68.83 0.00 499.00 2 2019-02-12 2019-02-12 23:26:35.12026 2019-02-12 23:27:39.795846 1 1 PV1-V-38 \N \N f 69 16 9 12 1399.00 0.00 0.00 1399.00 1 2019-02-12 2019-02-12 23:56:24.66843 2019-02-12 23:56:35.561229 1 1 PV1-V-39 \N \N f 96 1 2 20 473.28 75.72 0.00 549.00 2 2019-02-16 2019-02-16 19:51:33.213183 2019-02-16 19:52:40.110021 1 3 PV1-V-49 \N \N f 71 1 9 12 412.93 66.07 0.00 479.00 2 2019-02-12 2019-02-13 00:35:48.69548 2019-02-13 00:36:08.502285 1 3 PV1-V-41 \N \N f 78 19 10 15 1550.86 248.14 0.00 1799.00 2 2019-02-13 2019-02-13 23:55:54.739093 2019-04-25 18:48:19.554274 0 4 PV2-V-34 \N \N f 73 1 3 15 430.17 68.83 0.00 499.00 2 2019-02-13 2019-02-13 19:59:15.755842 2019-02-13 20:00:46.909525 1 2 PV2-V-30 \N \N f 70 16 9 12 1399.00 0.00 0.00 1399.00 2 2019-02-12 2019-02-12 23:57:00.880434 2019-02-13 22:48:45.570525 2 3 PV1-V-40 2019-03-19 \N f 75 1 3 15 456.03 72.96 0.00 528.99 2 2019-02-13 2019-02-13 22:55:51.4485 2019-02-13 22:56:48.839399 1 2 PV2-V-32 \N \N f 76 1 3 15 675.00 0.00 0.00 675.00 2 2019-02-13 2019-02-13 23:38:20.782061 2019-02-13 23:38:35.802704 1 2 PV2-V-33 \N \N f 77 1 9 14 1599.00 0.00 479.70 1119.30 2 2019-02-13 2019-02-13 23:49:35.957191 2019-02-13 23:49:53.405572 1 1 PV1-V-42 \N \N f 67 14 2 12 1499.00 0.00 0.00 1499.00 2 2019-02-12 2019-02-12 21:02:22.043288 2019-09-30 15:54:48.447085 0 3 PV1-V-37 \N \N f 80 1 3 15 421.55 67.45 0.00 489.00 2 2019-02-13 2019-02-14 02:26:30.498295 2019-02-14 02:27:11.116653 1 2 PV2-V-36 \N \N f 81 21 3 15 507.76 81.24 0.00 589.00 1 2019-02-13 2019-02-14 02:28:30.050969 2019-02-14 02:29:20.17568 2 2 PV2-V-37 2019-03-20 \N f 72 17 3 15 430.17 68.83 0.00 499.00 2 2019-02-13 2019-02-13 19:54:22.432469 2019-03-13 21:08:21.388187 2 2 PV2-V-29 2019-03-20 \N f 83 1 10 17 412.93 66.07 0.00 479.00 2 2019-02-14 2019-02-14 18:34:29.516059 2019-02-14 18:34:37.666422 1 4 PV2-V-39 \N \N f 74 18 3 15 430.17 68.83 0.00 499.00 2 2019-02-13 2019-02-13 21:41:10.328667 2019-02-14 18:47:36.094872 2 2 PV2-V-31 2019-03-20 \N f 84 1 3 17 559.48 89.52 0.00 649.00 2 2019-02-14 2019-02-14 20:22:29.110629 2019-02-14 20:22:55.506622 1 2 PV2-V-40 \N \N f 85 1 3 17 404.31 64.69 0.00 469.00 1 2019-02-14 2019-02-15 01:00:43.234152 2019-02-15 01:07:30.839017 1 2 PV2-V-41 \N \N f 86 1 3 17 1212.93 194.07 0.00 1407.00 2 2019-02-14 2019-02-15 01:08:24.720292 2019-02-15 01:09:23.229957 1 2 PV2-V-42 \N \N f 87 1 9 16 615.38 82.62 0.00 698.00 2 2019-02-14 2019-02-15 02:17:07.518909 2019-02-15 02:17:55.246146 1 3 PV1-V-43 \N \N f 88 1 3 18 430.17 68.83 0.00 499.00 2 2019-02-15 2019-02-15 21:32:50.419265 2019-02-15 21:33:21.295561 1 2 PV2-V-43 \N \N f 89 1 2 19 473.28 75.72 0.00 549.00 2 2019-02-15 2019-02-15 21:36:02.80024 2019-02-15 21:38:52.613405 1 1 PV1-V-44 \N \N f 82 21 3 15 507.76 81.24 0.00 589.00 2 2019-02-13 2019-02-14 02:30:12.871251 2019-03-09 23:33:07.609252 2 2 PV2-V-38 2019-03-20 \N f 91 1 3 18 421.55 67.45 0.00 489.00 2 2019-02-15 2019-02-15 23:53:25.881452 2019-02-15 23:54:37.898016 1 2 PV2-V-44 \N \N f 92 1 2 19 899.00 0.00 0.00 899.00 2 2019-02-15 2019-02-16 00:15:22.534186 2019-02-16 00:15:28.952019 1 1 PV1-V-46 \N \N f 93 1 3 18 662.93 106.07 0.00 769.00 2 2019-02-15 2019-02-16 00:30:35.910084 2019-02-16 00:31:13.825625 1 2 PV2-V-45 \N \N f 94 1 2 19 1489.65 238.35 0.00 1728.00 2 2019-02-15 2019-02-16 00:55:28.057283 2019-02-16 00:56:35.117057 1 1 PV1-V-47 \N \N f 95 1 2 19 516.38 82.62 0.00 599.00 2 2019-02-15 2019-02-16 01:46:20.262394 2019-02-16 01:47:28.674863 1 1 PV1-V-48 \N \N f 97 1 3 21 645.69 103.31 0.00 749.00 2 2019-02-16 2019-02-16 20:04:20.316183 2019-02-16 20:05:15.16483 1 2 PV2-V-46 \N \N f 98 1 2 20 430.17 68.83 0.00 499.00 2 2019-02-16 2019-02-16 20:08:16.366464 2019-02-16 20:08:40.238342 1 1 PV1-V-50 \N \N f 90 22 2 19 1378.45 220.55 0.00 1599.00 2 2019-02-15 2019-02-15 22:26:45.638371 2019-02-16 20:56:57.101289 2 1 PV1-V-45 2019-03-22 \N f 99 1 2 20 1532.76 245.24 0.00 1778.00 2 2019-02-16 2019-02-16 21:05:45.541471 2019-02-16 21:05:56.085078 1 1 PV1-V-51 \N \N f 100 1 2 20 602.59 96.41 0.00 699.00 2 2019-02-16 2019-02-16 21:16:16.071271 2019-02-16 21:17:05.413478 1 1 PV1-V-52 \N \N f 101 1 2 20 1033.62 165.38 0.00 1199.00 2 2019-02-16 2019-02-16 21:20:06.56395 2019-02-16 21:21:15.092802 1 1 PV1-V-53 \N \N f 102 1 2 20 421.55 67.45 0.00 489.00 2 2019-02-16 2019-02-16 21:56:46.141593 2019-02-16 21:58:27.253552 1 1 PV1-V-54 \N \N f 103 1 3 21 723.28 115.72 0.00 839.00 2 2019-02-16 2019-02-16 22:24:37.15564 2019-02-16 22:24:55.565298 1 2 PV2-V-47 \N \N f 114 27 10 24 808.62 129.38 0.00 938.00 2 2019-02-18 2019-02-18 20:02:07.424186 2019-03-27 19:41:39.412173 2 4 PV2-V-51 2019-03-25 \N f 105 1 3 21 852.59 136.41 0.00 989.00 2 2019-02-16 2019-02-17 00:24:52.091552 2019-02-17 00:26:26.768995 1 2 PV2-V-48 \N \N f 107 1 3 22 675.00 0.00 0.00 675.00 2 2019-02-17 2019-02-17 21:04:44.8629 2019-02-17 21:05:55.035471 1 2 PV2-V-49 \N \N f 108 1 9 23 1206.03 192.96 0.00 1398.99 2 2019-02-17 2019-02-17 21:24:58.352745 2019-02-17 21:25:02.453899 1 3 PV1-V-57 \N \N f 109 1 9 23 1075.86 172.14 0.00 1248.00 2 2019-02-17 2019-02-17 21:28:05.305188 2019-02-17 21:28:35.791739 1 3 PV1-V-58 \N \N f 111 1 9 23 2554.51 330.49 0.00 2885.00 1 2019-02-17 2019-02-17 21:35:32.254353 2019-02-17 21:36:21.639736 1 3 PV1-V-60 \N \N f 112 1 9 23 1995.03 240.97 0.00 2236.00 2 2019-02-17 2019-02-17 21:39:40.806733 2019-02-17 21:40:00.927474 1 3 PV1-V-61 \N \N f 113 26 10 24 404.31 64.69 0.00 469.00 2 2019-02-18 2019-02-18 17:58:25.65355 2019-02-18 19:54:39.786838 2 4 PV2-V-50 2019-03-25 \N f 79 20 10 15 3015.52 482.49 0.00 3498.01 2 2019-02-13 2019-02-13 23:58:51.38466 2019-04-25 18:40:06.743579 0 4 PV2-V-35 \N \N f 115 1 2 25 1765.52 282.48 0.00 2048.00 2 2019-02-18 2019-02-18 23:24:49.785103 2019-02-18 23:25:36.664986 1 1 PV1-V-62 \N \N f 116 1 10 24 430.17 68.83 0.00 499.00 2 2019-02-18 2019-02-19 01:10:23.214073 2019-02-19 01:10:50.920997 1 4 PV2-V-52 \N \N f 120 1 9 27 1015.51 162.48 0.00 1177.99 2 2019-02-19 2019-02-20 01:24:38.260841 2019-02-20 01:26:29.048271 1 3 PV1-V-65 \N \N f 117 1 2 25 851.72 136.28 0.00 988.00 1 2019-02-18 2019-02-19 02:40:23.611261 2019-02-19 02:41:29.177219 1 1 PV1-V-63 \N \N f 118 1 10 26 533.62 85.38 0.00 619.00 2 2019-02-19 2019-02-19 17:50:44.662298 2019-02-19 17:51:58.400356 1 4 PV2-V-53 \N \N f 119 1 9 27 904.31 144.69 0.00 1049.00 2 2019-02-19 2019-02-20 00:12:51.41213 2019-02-20 00:14:46.519574 1 3 PV1-V-64 \N \N f 106 24 2 20 904.31 144.69 0.00 1049.00 2 2019-02-16 2019-02-17 01:32:37.97811 2019-02-20 00:26:35.449785 2 1 PV1-V-56 2019-03-23 \N f 121 28 9 27 1033.62 165.38 0.00 1199.00 1 2019-02-19 2019-02-20 01:50:25.945251 2019-02-20 01:50:34.49276 1 3 PV1-V-66 \N \N f 104 23 2 20 490.52 78.48 0.00 569.00 2 2019-02-16 2019-02-17 00:10:33.288867 2019-03-27 00:25:35.071059 2 1 PV1-V-55 2019-03-23 \N f 123 1 2 28 688.79 110.21 0.00 799.00 2 2019-02-20 2019-02-20 19:03:33.936686 2019-02-20 19:05:37.960729 1 1 PV1-V-68 \N \N f 124 1 9 28 775.00 124.00 0.00 899.00 2 2019-02-20 2019-02-20 19:10:40.410556 2019-02-20 19:10:50.82951 1 3 PV1-V-69 \N \N f 126 1 3 29 490.52 78.48 0.00 569.00 2 2019-02-20 2019-02-20 19:54:41.773642 2019-02-20 19:56:36.951969 1 2 PV2-V-54 \N \N f 127 1 3 29 973.28 155.72 0.00 1129.00 2 2019-02-20 2019-02-20 19:57:16.840397 2019-02-20 19:58:53.647928 1 2 PV2-V-55 \N \N f 125 1 9 28 1032.76 261.66 0.00 1294.42 1 2019-02-20 2019-02-20 19:36:32.845654 2019-02-20 21:24:08.081633 1 1 PV1-V-70 \N \N f 128 1 9 28 1032.76 165.24 0.00 1198.00 2 2019-02-20 2019-02-20 21:25:37.913305 2019-02-20 21:25:52.136634 1 1 PV1-V-71 \N \N f 110 25 9 23 1600.86 256.14 0.00 1857.00 2 2019-02-17 2019-02-17 21:30:20.229417 2019-02-23 21:54:47.685524 2 3 PV1-V-59 2019-03-24 \N f 122 28 9 27 1033.62 165.38 0.00 1199.00 2 2019-02-19 2019-02-20 01:51:01.798633 2019-03-24 21:47:31.085097 2 3 PV1-V-67 2019-03-26 \N f 129 1 9 28 404.31 64.69 0.00 469.00 2 2019-02-20 2019-02-20 23:50:25.641536 2019-02-20 23:51:13.930355 1 1 PV1-V-72 \N \N f 130 1 3 29 490.52 78.48 0.00 569.00 2 2019-02-20 2019-02-20 23:56:35.145254 2019-02-20 23:57:02.533229 1 2 PV2-V-56 \N \N f 131 1 3 29 456.03 145.93 0.00 601.96 1 2019-02-20 2019-02-21 01:15:54.437968 2019-02-21 01:16:09.182841 1 2 PV2-V-57 \N \N f 132 1 3 29 456.03 72.96 0.00 528.99 2 2019-02-20 2019-02-21 01:16:27.587085 2019-02-21 01:17:00.878294 1 2 PV2-V-58 \N \N f 133 1 3 29 775.00 124.00 0.00 899.00 2 2019-02-20 2019-02-21 01:22:36.335939 2019-02-21 01:23:17.144005 1 4 PV2-V-59 \N \N f 134 1 2 32 662.93 106.07 0.00 769.00 2 2019-02-21 2019-02-21 19:21:02.519638 2019-02-21 19:21:23.382551 1 1 PV1-V-73 \N \N f 135 1 2 32 1007.76 161.24 0.00 1169.00 2 2019-02-21 2019-02-21 19:40:28.789741 2019-02-21 19:41:03.505006 1 1 PV1-V-74 \N \N f 136 1 9 32 412.93 66.07 0.00 479.00 2 2019-02-21 2019-02-22 01:15:09.055465 2019-02-22 01:15:19.44169 1 3 PV1-V-75 \N \N f 137 1 2 34 4199.00 656.00 0.00 4855.00 2 2019-02-22 2019-02-22 17:09:24.771943 2019-02-22 17:09:49.065619 1 3 PV1-V-76 \N \N f 140 1 2 34 421.55 67.45 0.00 489.00 2 2019-02-22 2019-02-23 00:20:08.176676 2019-02-23 00:20:22.094415 1 1 PV1-V-79 \N \N f 180 36 10 48 1719.83 259.17 100.00 1879.00 2 2019-03-01 2019-03-02 00:40:47.819574 2019-10-13 01:16:35.490004 0 4 PV2-V-76 \N \N f 142 1 2 34 645.69 103.31 0.00 749.00 2 2019-02-22 2019-02-23 02:01:07.497591 2019-02-23 02:02:10.047723 1 1 PV1-V-80 \N \N f 143 1 10 36 84.48 13.52 0.00 98.00 2 2019-02-23 2019-02-23 19:18:17.647536 2019-02-23 19:18:25.220835 1 4 PV2-V-61 \N \N f 144 1 2 37 1154.31 184.69 0.00 1339.00 2 2019-02-23 2019-02-23 19:39:30.473567 2019-02-23 19:40:15.056687 1 1 PV1-V-81 \N \N f 145 1 11 36 1127.59 180.41 0.00 1308.00 2 2019-02-23 2019-02-23 19:56:59.794919 2019-02-23 19:57:37.857605 1 4 PV2-V-62 \N \N f 146 1 11 36 404.31 64.69 0.00 469.00 2 2019-02-23 2019-02-23 20:58:42.846476 2019-02-23 20:59:07.349225 1 4 PV2-V-63 \N \N f 147 1 2 37 1007.76 161.24 0.00 1169.00 2 2019-02-23 2019-02-24 00:28:08.979159 2019-02-24 00:29:34.636208 1 1 PV1-V-82 \N \N f 148 29 2 37 843.10 134.90 0.00 978.00 3 2019-02-23 2019-02-24 00:42:48.290756 2019-06-01 00:44:40.791911 0 3 PV1-V-83 \N \N f 149 29 11 36 1105.17 68.83 0.00 1174.00 0 2019-02-23 2019-02-24 00:47:26.642722 2019-02-24 00:47:26.642722 0 4 PV2-V-64 \N \N f 150 1 2 37 1699.00 0.00 509.00 1190.00 2 2019-02-23 2019-02-24 01:27:33.119643 2019-02-24 01:27:44.111233 1 3 PV1-V-84 \N \N f 151 1 11 39 2088.83 179.17 0.00 2268.00 2 2019-02-24 2019-02-24 22:07:33.561916 2019-02-24 22:08:16.683566 1 4 PV2-V-65 \N \N f 152 1 9 43 602.59 96.41 0.00 699.00 2 2019-02-26 2019-02-26 20:46:54.517924 2019-02-26 20:47:32.931808 1 3 PV1-V-85 \N \N f 153 1 11 42 421.55 67.45 0.00 489.00 1 2019-02-26 2019-02-26 21:09:19.378491 2019-02-26 21:10:12.221261 1 4 PV2-V-66 \N \N f 154 1 11 42 198.00 0.00 0.00 198.00 1 2019-02-26 2019-02-26 21:10:58.46937 2019-02-26 21:11:04.951074 1 4 PV2-V-67 \N \N f 155 1 11 42 421.55 67.45 0.00 489.00 2 2019-02-26 2019-02-26 21:19:45.783216 2019-02-26 21:21:09.881801 1 4 PV2-V-68 \N \N f 156 1 11 42 99.00 0.00 0.00 99.00 2 2019-02-26 2019-02-26 21:22:32.874721 2019-02-26 21:22:49.020702 1 4 PV2-V-69 \N \N f 157 1 9 43 1119.83 179.17 0.00 1299.00 2 2019-02-26 2019-02-26 23:03:04.579947 2019-02-26 23:04:03.249743 1 3 PV1-V-86 \N \N f 158 1 9 43 99.00 0.00 0.00 99.00 2 2019-02-26 2019-02-27 00:26:06.539462 2019-02-27 00:26:10.067968 1 3 PV1-V-87 \N \N f 159 1 11 44 723.28 115.72 0.00 839.00 2 2019-02-27 2019-02-27 23:49:22.340473 2019-02-27 23:49:48.40155 1 4 PV2-V-70 \N \N f 160 1 10 44 874.00 124.00 0.00 998.00 2 2019-02-27 2019-02-28 01:39:12.147312 2019-02-28 01:39:40.343183 1 4 PV2-V-71 \N \N f 161 1 12 45 946.55 151.45 0.00 1098.00 2 2019-02-27 2019-02-28 01:44:04.996105 2019-02-28 01:45:15.060918 1 3 PV1-V-88 \N \N f 175 35 9 49 688.79 110.21 0.00 799.00 1 2019-03-01 2019-03-02 00:28:34.235872 2019-03-02 00:28:38.317155 2 8 PV1-V-99 2019-04-05 \N f 162 31 2 47 1119.83 179.17 0.00 1299.00 1 2019-02-28 2019-02-28 17:15:52.231556 2019-02-28 17:16:31.14341 1 1 PV1-V-89 \N \N f 163 31 2 47 1119.83 179.17 0.00 1299.00 1 2019-02-28 2019-02-28 17:17:01.144698 2019-02-28 17:17:56.021121 2 1 PV1-V-90 2019-04-04 \N f 164 1 2 47 421.55 67.45 0.00 489.00 2 2019-02-28 2019-02-28 18:01:16.155758 2019-02-28 18:01:45.151185 1 1 PV1-V-91 \N \N f 182 36 9 49 3700.00 0.00 0.00 3700.00 2 2019-03-01 2019-03-02 00:52:34.217974 2019-09-14 21:12:40.468352 0 1 PV1-V-104 \N \N f 166 1 2 49 412.93 66.07 0.00 479.00 2 2019-03-01 2019-03-01 18:26:09.605524 2019-03-01 18:27:49.221978 1 1 PV1-V-93 \N \N f 167 1 11 48 829.17 68.83 0.00 898.00 2 2019-03-01 2019-03-01 19:47:45.440211 2019-03-01 19:48:14.434388 1 7 PV2-V-72 \N \N f 171 34 10 48 3794.83 591.17 100.00 4286.00 2 2019-03-01 2019-03-01 23:59:31.064112 2019-10-01 21:09:53.906966 0 4 PV2-V-74 \N \N f 169 1 12 49 430.17 68.83 0.00 499.00 2 2019-03-01 2019-03-01 23:36:16.527649 2019-03-01 23:36:40.899159 1 8 PV1-V-94 \N \N f 170 1 12 49 559.48 89.52 0.00 649.00 2 2019-03-01 2019-03-01 23:43:56.211899 2019-03-01 23:44:23.211936 1 8 PV1-V-95 \N \N f 173 1 9 49 1119.83 179.17 0.00 1299.00 1 2019-03-01 2019-03-02 00:10:53.396306 2019-03-02 00:11:00.454241 1 8 PV1-V-97 \N \N f 176 35 9 49 688.79 110.21 0.00 799.00 1 2019-03-01 2019-03-02 00:29:06.321907 2019-03-02 00:29:35.637382 2 1 PV1-V-100 2019-04-05 \N f 177 1 9 49 688.79 110.21 0.00 799.00 2 2019-03-01 2019-03-02 00:29:53.496667 2019-03-02 00:30:05.331116 1 1 PV1-V-101 \N \N f 179 36 10 48 1719.83 259.17 100.00 1879.00 1 2019-03-01 2019-03-02 00:39:49.884767 2019-03-02 00:40:00.021807 1 4 PV2-V-75 \N \N f 181 36 9 49 3700.00 0.00 0.00 3700.00 1 2019-03-01 2019-03-02 00:51:55.511325 2019-03-02 00:52:06.68492 1 1 PV1-V-103 \N \N f 183 1 9 49 99.00 0.00 0.00 99.00 2 2019-03-01 2019-03-02 00:59:11.141556 2019-03-02 00:59:18.642701 1 3 PV1-V-105 \N \N f 184 1 2 49 688.79 110.21 0.00 799.00 2 2019-03-01 2019-03-02 01:48:19.422447 2019-03-02 01:48:25.865181 1 1 PV1-V-106 \N \N f 185 1 3 48 818.10 130.90 0.00 949.00 2 2019-03-01 2019-03-02 01:51:25.176028 2019-03-02 01:52:31.705349 1 2 PV2-V-77 \N \N f 186 1 3 48 775.00 124.00 0.00 899.00 2 2019-03-01 2019-03-02 02:11:12.300341 2019-03-02 02:11:41.949927 1 2 PV2-V-78 \N \N f 187 1 2 50 430.17 68.83 0.00 499.00 2 2019-03-01 2019-03-02 02:14:37.770492 2019-03-02 02:14:42.140482 1 1 PV1-V-107 \N \N f 188 37 3 52 490.52 78.48 0.00 569.00 2 2019-03-02 2019-03-02 18:47:08.703481 2019-03-02 18:47:20.489049 1 2 PV2-V-79 \N \N f 189 1 3 52 749.14 119.86 0.00 869.00 2 2019-03-02 2019-03-02 19:03:38.636897 2019-03-02 19:03:48.046557 1 2 PV2-V-80 \N \N f 190 1 2 51 198.00 0.00 0.00 198.00 2 2019-03-02 2019-03-02 19:37:40.668375 2019-03-02 19:37:47.201959 1 1 PV1-V-108 \N \N f 191 1 2 51 412.93 66.07 0.00 479.00 2 2019-03-02 2019-03-02 21:35:45.482677 2019-03-02 21:35:50.148241 1 1 PV1-V-109 \N \N f 141 30 3 35 602.59 96.41 0.00 699.00 2 2019-02-22 2019-02-23 01:52:57.074563 2019-03-09 23:11:57.578146 2 4 PV2-V-60 2019-03-29 \N f 138 20 2 34 1799.00 0.00 0.00 1799.00 2 2019-02-22 2019-02-22 19:26:26.077345 2019-05-15 18:18:32.201455 0 3 PV1-V-77 \N \N f 165 32 2 47 2584.48 413.52 0.00 2998.00 2 2019-02-28 2019-02-28 20:45:18.158701 2019-04-23 00:21:50.31513 0 3 PV1-V-92 \N \N f 178 36 9 49 1782.76 285.24 0.00 2068.00 2 2019-03-01 2019-03-02 00:36:54.022932 2019-05-04 20:10:00.904133 0 1 PV1-V-102 \N \N f 174 34 9 49 1119.83 179.17 0.00 1299.00 2 2019-03-01 2019-03-02 00:11:47.926292 2019-05-12 00:16:52.120516 0 8 PV1-V-98 \N \N f 139 29 2 34 2746.41 151.59 0.00 2898.00 2 2019-02-22 2019-02-22 19:43:15.962313 2019-06-01 00:44:40.767349 0 3 PV1-V-78 \N \N f 168 33 3 48 861.21 137.79 0.00 999.00 2 2019-03-01 2019-03-01 22:11:53.962437 2019-09-30 16:30:45.171912 0 4 PV2-V-73 \N \N f 172 34 9 49 2024.14 323.87 0.00 2348.01 2 2019-03-01 2019-03-02 00:04:41.521835 2019-08-10 22:38:52.515552 0 8 PV1-V-96 \N \N f 192 1 3 52 775.00 124.00 0.00 899.00 2 2019-03-02 2019-03-02 23:09:12.981703 2019-03-02 23:09:17.213078 1 2 PV2-V-81 \N \N f 193 1 12 53 404.31 64.69 0.00 469.00 2 2019-03-03 2019-03-03 18:33:08.891654 2019-03-03 18:38:55.303784 1 8 PV1-V-110 \N \N f 194 1 11 54 533.62 85.38 0.00 619.00 2 2019-03-03 2019-03-03 18:53:09.109704 2019-03-03 18:53:40.508775 1 2 PV2-V-82 \N \N f 195 1 11 54 430.17 68.83 0.00 499.00 2 2019-03-03 2019-03-03 19:07:39.762078 2019-03-03 19:07:49.088468 1 2 PV2-V-83 \N \N f 196 1 12 53 1075.86 172.14 0.00 1248.00 2 2019-03-03 2019-03-03 19:13:09.098895 2019-03-03 19:14:16.37089 1 8 PV1-V-111 \N \N f 197 1 11 54 533.62 85.38 0.00 619.00 2 2019-03-03 2019-03-03 19:17:37.857265 2019-03-03 19:17:43.01448 1 7 PV2-V-84 \N \N f 198 1 11 54 1637.07 261.93 0.00 1899.00 2 2019-03-03 2019-03-03 19:18:22.287687 2019-03-03 19:18:28.15133 1 7 PV2-V-85 \N \N f 199 1 12 53 2728.46 436.54 0.00 3165.00 2 2019-03-03 2019-03-03 20:58:27.826217 2019-03-03 20:59:11.658285 1 8 PV1-V-112 \N \N f 200 1 11 54 2737.06 437.94 0.00 3175.00 1 2019-03-03 2019-03-03 21:07:35.363901 2019-03-03 21:07:58.752339 1 7 PV2-V-86 \N \N f 201 1 11 54 1712.93 274.07 0.00 1987.00 2 2019-03-03 2019-03-03 21:10:00.860264 2019-03-03 21:11:38.422926 1 7 PV2-V-87 \N \N f 202 1 11 54 168.97 27.04 0.00 196.01 2 2019-03-03 2019-03-03 21:14:05.072721 2019-03-03 21:14:12.618125 1 7 PV2-V-88 \N \N f 212 39 10 56 3573.27 571.73 0.00 4145.00 2 2019-03-04 2019-03-05 01:45:42.873871 2019-06-22 02:04:28.731039 0 4 PV2-V-96 \N \N f 204 1 11 56 542.24 86.76 0.00 629.00 2 2019-03-04 2019-03-04 22:58:54.368285 2019-03-04 22:59:01.552534 1 7 PV2-V-89 \N \N f 206 39 10 56 3573.27 571.73 0.00 4145.00 1 2019-03-04 2019-03-05 00:37:05.608512 2019-03-05 00:37:12.581832 1 4 PV2-V-90 \N \N f 205 39 2 55 920.69 147.31 0.00 1068.00 2 2019-03-04 2019-03-05 00:28:09.665049 2019-03-05 00:41:52.641704 0 3 PV1-V-114 \N \N f 208 29 10 56 1919.83 307.17 0.00 2227.00 0 2019-03-04 2019-03-05 00:51:18.38328 2019-03-05 00:51:18.38328 0 4 PV2-V-92 \N \N f 209 1 11 56 869.00 0.00 0.00 869.00 2 2019-03-04 2019-03-05 01:15:17.745408 2019-03-05 01:15:49.225677 1 4 PV2-V-93 \N \N f 210 1 11 56 617.24 82.76 100.00 600.00 2 2019-03-04 2019-03-05 01:27:38.727519 2019-03-05 01:27:42.674767 1 4 PV2-V-94 \N \N f 243 46 12 67 1809.48 289.52 0.00 2099.00 2 2019-03-10 2019-03-10 17:31:53.410916 2019-03-31 19:09:05.532948 2 8 PV1-V-130 2019-04-14 \N f 207 39 10 56 3573.27 571.73 0.00 4145.00 1 2019-03-04 2019-03-05 00:38:34.449506 2019-03-05 01:43:39.810226 0 7 PV2-V-91 \N \N f 213 29 10 56 2153.45 344.55 0.00 2498.00 1 2019-03-04 2019-03-05 02:10:43.855039 2019-03-05 02:11:14.112383 1 4 PV2-V-97 \N \N f 214 29 10 56 2153.45 344.55 0.00 2498.00 0 2019-03-04 2019-03-05 02:11:32.432628 2019-03-05 02:11:32.432628 0 4 PV2-V-98 \N \N f 215 1 2 58 1075.86 172.14 0.00 1248.00 2 2019-03-05 2019-03-05 19:09:46.969201 2019-03-05 19:09:52.706912 1 8 PV1-V-115 \N \N f 203 38 2 55 1399.00 0.00 0.00 1399.00 2 2019-03-04 2019-03-04 16:35:47.314836 2019-05-26 00:57:34.093528 0 1 PV1-V-113 \N \N f 217 42 11 59 1593.10 254.90 0.00 1848.00 1 2019-03-06 2019-03-06 19:21:17.854841 2019-03-06 19:22:25.180389 2 4 PV2-V-99 2019-04-10 \N f 218 1 2 60 512.93 82.07 0.00 595.00 2 2019-03-06 2019-03-06 22:10:27.888887 2019-03-06 22:10:35.574228 1 1 PV1-V-117 \N \N f 219 1 12 60 404.31 64.69 0.00 469.00 2 2019-03-06 2019-03-07 00:18:02.790252 2019-03-07 00:18:28.115334 1 8 PV1-V-118 \N \N f 220 1 12 60 645.69 103.31 0.00 749.00 2 2019-03-06 2019-03-07 00:45:40.967118 2019-03-07 00:46:28.132306 1 8 PV1-V-119 \N \N f 221 1 3 59 688.79 110.21 0.00 799.00 2 2019-03-06 2019-03-07 01:43:55.96928 2019-03-07 01:44:04.630792 1 2 PV2-V-100 \N \N f 222 1 12 60 421.55 67.45 0.00 489.00 2 2019-03-06 2019-03-07 01:45:10.121736 2019-03-07 01:45:13.761152 1 8 PV1-V-120 \N \N f 216 41 2 58 516.38 82.62 0.00 599.00 2 2019-03-05 2019-03-05 21:27:58.144725 2019-04-13 01:11:26.244316 2 1 PV1-V-116 2019-04-09 \N f 224 1 11 59 818.10 130.90 0.00 949.00 2 2019-03-06 2019-03-07 01:52:36.136388 2019-03-07 01:52:53.285672 1 7 PV2-V-101 \N \N f 225 1 11 62 775.00 124.00 0.00 899.00 2 2019-03-07 2019-03-07 21:59:43.156533 2019-03-07 21:59:50.524117 1 4 PV2-V-102 \N \N f 226 1 11 62 775.00 124.00 0.00 899.00 2 2019-03-07 2019-03-08 00:27:56.805152 2019-03-08 00:28:44.470416 1 7 PV2-V-103 \N \N f 227 1 12 63 412.93 66.07 0.00 479.00 2 2019-03-08 2019-03-09 00:46:52.371722 2019-03-09 00:46:55.558603 1 8 PV1-V-122 \N \N f 211 40 11 56 834.48 133.52 0.00 968.00 2 2019-03-04 2019-03-05 01:29:47.982492 2019-03-23 21:57:26.774069 2 4 PV2-V-95 2019-04-08 \N f 229 1 11 64 1674.00 124.00 0.00 1798.00 2 2019-03-08 2019-03-09 01:03:57.306217 2019-03-09 01:06:22.436709 1 7 PV2-V-104 \N \N f 230 1 2 65 404.31 64.69 0.00 469.00 2 2019-03-09 2019-03-09 20:42:00.990712 2019-03-09 20:42:51.722502 1 1 PV1-V-124 \N \N f 231 1 3 66 507.76 81.24 0.00 589.00 2 2019-03-09 2019-03-09 20:50:00.531485 2019-03-09 20:50:39.58249 1 2 PV2-V-105 \N \N f 232 45 3 66 775.00 124.00 0.00 899.00 1 2019-03-09 2019-03-09 21:27:08.683009 2019-03-09 21:29:04.26679 2 2 PV2-V-106 2019-04-13 \N f 233 1 2 65 602.59 96.41 0.00 699.00 2 2019-03-09 2019-03-09 21:37:19.116027 2019-03-09 21:37:47.38655 1 1 PV1-V-125 \N \N f 234 1 3 66 706.03 112.96 0.00 818.99 2 2019-03-09 2019-03-09 22:13:11.340316 2019-03-09 22:13:39.617479 1 2 PV2-V-107 \N \N f 235 1 2 65 404.31 64.69 0.00 469.00 2 2019-03-09 2019-03-09 22:48:55.593082 2019-03-09 22:49:40.860604 1 1 PV1-V-126 \N \N f 236 1 2 65 430.17 68.83 0.00 499.00 2 2019-03-09 2019-03-09 23:32:27.362984 2019-03-09 23:32:33.606169 1 1 PV1-V-127 \N \N f 237 1 2 65 645.69 103.31 0.00 749.00 2 2019-03-09 2019-03-10 00:28:59.787171 2019-03-10 00:29:05.735649 1 1 PV1-V-128 \N \N f 238 1 3 66 430.17 68.83 0.00 499.00 2 2019-03-09 2019-03-10 01:00:16.442183 2019-03-10 01:00:35.455649 1 2 PV2-V-108 \N \N f 239 1 3 66 42.24 6.76 0.00 49.00 2 2019-03-09 2019-03-10 01:03:50.644532 2019-03-10 01:03:54.29811 1 2 PV2-V-109 \N \N f 240 1 3 66 688.79 110.21 0.00 799.00 2 2019-03-09 2019-03-10 01:08:38.766424 2019-03-10 01:08:52.542743 1 2 PV2-V-110 \N \N f 241 1 2 65 946.56 151.45 0.00 1098.01 2 2019-03-09 2019-03-10 01:31:15.253882 2019-03-10 01:31:25.496453 1 1 PV1-V-129 \N \N f 242 1 3 66 818.10 130.90 0.00 949.00 2 2019-03-09 2019-03-10 01:47:27.642252 2019-03-10 01:47:49.232098 1 2 PV2-V-111 \N \N f 223 43 12 60 1206.03 192.96 0.00 1398.99 2 2019-03-06 2019-03-07 01:47:18.266282 2019-04-12 19:39:11.590127 2 8 PV1-V-121 2019-04-10 \N f 244 1 12 67 430.17 68.83 0.00 499.00 2 2019-03-10 2019-03-10 21:15:44.789418 2019-03-10 21:16:39.160459 1 8 PV1-V-131 \N \N f 245 1 11 70 42.24 6.76 0.00 49.00 2 2019-03-11 2019-03-11 20:03:29.941418 2019-03-11 20:03:37.013732 1 7 PV2-V-112 \N \N f 246 1 2 69 1699.00 0.00 511.00 1188.00 2 2019-03-11 2019-03-11 21:13:20.713995 2019-03-11 21:13:29.684539 1 1 PV1-V-132 \N \N f 247 1 11 73 1222.41 195.59 0.00 1418.00 2 2019-03-13 2019-03-13 19:55:15.668814 2019-03-13 19:57:12.144978 1 7 PV2-V-113 \N \N f 248 47 11 73 999.00 0.00 0.00 999.00 2 2019-03-13 2019-03-13 21:10:46.785881 2019-03-13 21:40:51.114809 2 7 PV2-V-114 2019-04-17 \N f 249 1 11 73 1110.34 177.66 0.00 1288.00 2 2019-03-13 2019-03-13 22:19:44.192957 2019-03-13 22:20:58.151572 1 7 PV2-V-115 \N \N f 250 1 2 74 1032.76 165.24 0.00 1198.00 1 2019-03-14 2019-03-14 20:09:00.098318 2019-03-14 20:09:08.288151 1 1 PV1-V-133 \N \N f 251 1 2 74 516.38 82.62 0.00 599.00 2 2019-03-14 2019-03-14 20:09:22.191746 2019-03-14 20:10:56.709019 1 1 PV1-V-134 \N \N f 252 1 11 75 889.00 0.00 0.00 889.00 2 2019-03-14 2019-03-14 20:47:57.178636 2019-03-14 20:48:49.276331 1 7 PV2-V-116 \N \N f 253 1 11 75 617.24 82.76 100.00 600.00 2 2019-03-14 2019-03-15 00:31:52.502454 2019-03-15 00:31:58.778797 1 7 PV2-V-117 \N \N f 228 44 12 63 430.17 68.83 0.00 499.00 2 2019-03-08 2019-03-09 00:49:05.981746 2019-03-20 18:25:09.221807 2 1 PV1-V-123 2019-04-12 \N f 254 1 11 75 775.00 124.00 0.00 899.00 2 2019-03-14 2019-03-15 00:33:10.708235 2019-03-15 00:33:15.443909 1 7 PV2-V-118 \N \N f 255 1 12 74 516.38 82.62 0.00 599.00 2 2019-03-14 2019-03-15 00:58:28.889743 2019-03-15 00:58:36.455435 1 8 PV1-V-135 \N \N f 256 1 11 76 775.00 124.00 0.00 899.00 2 2019-03-15 2019-03-15 18:26:10.40946 2019-03-15 18:26:17.153987 1 7 PV2-V-119 \N \N f 257 1 11 76 576.72 92.28 0.00 669.00 2 2019-03-15 2019-03-15 18:51:55.899296 2019-03-15 18:52:10.740335 1 7 PV2-V-120 \N \N f 258 1 2 77 2325.86 372.13 0.00 2697.99 2 2019-03-15 2019-03-15 19:13:02.955374 2019-03-15 19:13:16.64079 1 1 PV1-V-136 \N \N f 259 1 2 77 645.69 103.31 0.00 749.00 2 2019-03-15 2019-03-15 20:11:40.309811 2019-03-15 20:12:08.955466 1 8 PV1-V-137 \N \N f 260 1 2 77 904.31 144.69 0.00 1049.00 2 2019-03-15 2019-03-15 20:29:54.62593 2019-03-15 20:31:00.112898 1 8 PV1-V-138 \N \N f 261 1 2 77 889.00 0.00 0.00 889.00 2 2019-03-15 2019-03-15 20:58:09.627237 2019-03-15 20:58:15.68198 1 1 PV1-V-139 \N \N f 306 63 2 102 799.00 0.00 0.00 799.00 2 2019-03-29 2019-03-29 18:02:27.4583 2019-04-06 00:12:06.983311 2 1 PV1-V-161 2019-05-03 \N f 263 1 11 76 2151.76 205.25 0.00 2357.01 2 2019-03-15 2019-03-16 02:05:24.795646 2019-03-16 02:05:36.50165 1 7 PV2-V-121 \N \N f 264 1 3 78 171.55 27.45 0.00 199.00 2 2019-03-16 2019-03-16 18:52:44.833011 2019-03-16 18:52:53.661704 1 2 PV2-V-122 \N \N f 266 1 3 78 688.79 110.21 0.00 799.00 2 2019-03-16 2019-03-16 20:28:54.239087 2019-03-16 20:29:07.09294 1 2 PV2-V-124 \N \N f 267 1 2 79 404.31 64.69 0.00 469.00 2 2019-03-16 2019-03-16 21:48:35.535748 2019-03-16 21:49:46.299652 1 1 PV1-V-141 \N \N f 268 1 2 79 904.31 144.69 0.00 1049.00 2 2019-03-16 2019-03-16 22:06:01.402396 2019-03-16 22:06:29.372794 1 1 PV1-V-142 \N \N f 269 1 12 81 421.55 67.45 0.00 489.00 2 2019-03-17 2019-03-17 21:19:28.263866 2019-03-17 21:19:31.803885 1 8 PV1-V-143 \N \N f 270 1 11 82 568.10 90.90 0.00 659.00 2 2019-03-19 2019-03-20 00:41:21.370332 2019-03-20 00:41:58.563049 1 7 PV2-V-125 \N \N f 271 1 11 82 1292.24 206.76 0.00 1499.00 2 2019-03-19 2019-03-20 01:59:48.209688 2019-03-20 02:00:02.908213 1 7 PV2-V-126 \N \N f 272 1 11 84 590.52 94.48 0.00 685.00 2 2019-03-20 2019-03-21 00:20:15.542861 2019-03-21 00:21:31.678205 1 7 PV2-V-127 \N \N f 273 1 11 84 860.34 137.65 0.00 997.99 2 2019-03-20 2019-03-21 00:29:39.448757 2019-03-21 00:32:58.082488 1 7 PV2-V-128 \N \N f 274 1 12 85 404.31 64.69 0.00 469.00 2 2019-03-20 2019-03-21 01:37:03.506372 2019-03-21 01:37:07.940853 1 8 PV1-V-144 \N \N f 275 1 2 86 559.48 89.52 0.00 649.00 2 2019-03-21 2019-03-21 23:54:37.696262 2019-03-21 23:54:42.843175 1 8 PV1-V-145 \N \N f 276 1 11 87 430.17 68.83 0.00 499.00 2 2019-03-21 2019-03-22 01:25:33.611423 2019-03-22 01:25:41.017766 1 7 PV2-V-129 \N \N f 277 1 11 88 1024.14 163.86 0.00 1188.00 2 2019-03-22 2019-03-22 18:21:50.246143 2019-03-22 18:24:05.864464 1 7 PV2-V-130 \N \N f 278 1 2 89 1185.38 82.62 0.00 1268.00 2 2019-03-22 2019-03-22 19:33:11.629223 2019-03-22 19:33:17.562466 1 1 PV1-V-146 \N \N f 279 1 2 89 404.31 64.69 0.00 469.00 2 2019-03-22 2019-03-22 19:35:16.893644 2019-03-22 19:36:41.319569 1 1 PV1-V-147 \N \N f 262 48 2 77 808.62 129.38 0.00 938.00 2 2019-03-15 2019-03-16 00:19:19.841404 2019-04-05 23:55:05.373801 2 1 PV1-V-140 2019-04-19 \N f 281 1 3 91 688.79 110.21 0.00 799.00 2 2019-03-23 2019-03-23 18:07:13.443088 2019-03-23 18:07:16.853416 1 2 PV2-V-131 \N \N f 295 55 2 95 775.00 124.00 0.00 899.00 2 2019-03-25 2019-03-25 18:51:15.952497 2019-04-26 17:26:21.265945 2 1 PV1-V-153 2019-04-29 \N f 282 45 3 91 844.83 135.17 0.00 980.00 1 2019-03-23 2019-03-23 20:55:34.51423 2019-03-23 21:00:42.162658 2 2 PV2-V-132 2019-04-27 \N f 284 1 3 91 421.55 67.45 0.00 489.00 2 2019-03-23 2019-03-23 22:20:48.011118 2019-03-23 22:21:13.126273 1 2 PV2-V-134 \N \N f 285 1 3 91 516.38 82.62 0.00 599.00 2 2019-03-23 2019-03-24 00:18:49.086347 2019-03-24 00:20:26.833712 1 2 PV2-V-135 \N \N f 286 1 12 93 874.00 124.00 0.00 998.00 2 2019-03-24 2019-03-24 18:04:13.930035 2019-03-24 18:04:17.885965 1 8 PV1-V-149 \N \N f 287 1 11 92 1034.48 165.52 0.00 1200.00 1 2019-03-24 2019-03-24 18:49:24.370853 2019-03-24 18:49:39.625657 1 7 PV2-V-136 \N \N f 288 1 11 92 1034.48 165.52 0.00 1200.00 1 2019-03-24 2019-03-24 18:50:16.918999 2019-03-24 18:50:45.036118 1 7 PV2-V-137 \N \N f 289 52 11 92 1034.48 165.52 0.00 1200.00 1 2019-03-24 2019-03-24 18:55:15.829887 2019-03-24 18:58:07.991692 2 2 PV2-V-138 2019-04-28 \N f 290 53 11 92 1034.48 165.52 0.00 1200.00 1 2019-03-24 2019-03-24 18:59:38.165056 2019-03-24 18:59:47.606444 1 7 PV2-V-139 \N \N f 296 56 11 94 399.00 0.00 0.00 399.00 4 2019-03-25 2019-03-25 20:03:15.792738 2019-05-14 00:27:02.317878 2 7 PV2-V-141 2019-04-29 \N f 292 1 12 93 861.21 137.79 0.00 999.00 2 2019-03-24 2019-03-24 20:46:04.559593 2019-03-24 20:46:29.606545 1 8 PV1-V-150 \N \N f 293 1 2 95 1593.10 254.90 0.00 1848.00 2 2019-03-25 2019-03-25 17:45:02.315352 2019-03-25 17:45:11.937307 1 1 PV1-V-151 \N \N f 294 1 2 95 599.00 0.00 0.00 599.00 2 2019-03-25 2019-03-25 17:55:56.636117 2019-03-25 17:56:01.847048 1 1 PV1-V-152 \N \N f 303 62 12 100 1399.00 0.00 0.00 1399.00 2 2019-03-28 2019-03-28 22:53:48.071931 2019-05-02 23:37:25.885224 2 1 PV1-V-158 2019-05-02 \N f 308 64 11 103 430.17 68.83 0.00 499.00 4 2019-03-29 2019-03-29 21:18:31.309329 2019-05-14 00:27:11.921936 2 7 PV2-V-145 2019-05-03 \N f 297 1 11 96 851.72 136.28 0.00 988.00 2 2019-03-26 2019-03-26 20:48:35.758785 2019-03-26 20:48:48.023179 1 7 PV2-V-142 \N \N f 298 1 2 98 699.00 0.00 0.00 699.00 2 2019-03-27 2019-03-27 19:52:01.564999 2019-03-27 19:52:43.48162 1 8 PV1-V-154 \N \N f 299 1 11 99 749.14 119.86 0.00 869.00 2 2019-03-27 2019-03-27 20:55:49.658141 2019-03-27 20:57:13.150937 1 7 PV2-V-143 \N \N f 300 1 12 98 456.03 72.96 0.00 528.99 2 2019-03-27 2019-03-28 01:40:15.374691 2019-03-28 01:41:24.525315 1 8 PV1-V-155 \N \N f 291 54 11 92 1034.48 165.52 0.00 1200.00 4 2019-03-24 2019-03-24 19:00:56.900995 2019-05-14 00:26:43.004762 2 7 PV2-V-140 2019-04-28 \N f 302 1 12 100 516.38 82.62 0.00 599.00 2 2019-03-28 2019-03-28 22:52:32.714251 2019-03-28 22:52:43.733852 1 1 PV1-V-157 \N \N f 301 61 12 100 404.31 64.69 0.00 469.00 2 2019-03-28 2019-03-28 22:30:03.064518 2019-05-03 21:00:36.604436 2 1 PV1-V-156 2019-05-02 \N f 304 62 2 100 1499.00 0.00 449.00 1050.00 1 2019-03-28 2019-03-28 23:04:09.863315 2019-03-28 23:04:33.874838 1 1 PV1-V-159 \N \N f 307 1 11 103 499.14 79.86 0.00 579.00 2 2019-03-29 2019-03-29 20:09:39.416611 2019-03-29 20:10:10.596385 1 7 PV2-V-144 \N \N f 305 62 2 100 1499.00 0.00 449.00 1050.00 1 2019-03-28 2019-03-28 23:05:42.952451 2019-03-28 23:06:50.930584 1 1 PV1-V-160 \N \N f 283 45 3 91 775.00 124.00 0.00 899.00 2 2019-03-23 2019-03-23 21:01:29.485278 2019-04-17 22:03:33.790099 2 2 PV2-V-133 2019-04-27 \N f 310 65 2 104 699.00 0.00 0.00 699.00 2 2019-03-30 2019-03-30 20:53:55.532274 2019-05-21 18:56:35.461843 2 1 PV1-V-163 2019-05-04 \N f 309 1 2 104 1119.83 179.17 0.00 1299.00 2 2019-03-30 2019-03-30 18:10:21.37271 2019-03-30 18:10:33.386909 1 1 PV1-V-162 \N \N f 265 50 3 78 1637.07 261.93 0.00 1899.00 2 2019-03-16 2019-03-16 18:54:45.035075 2019-05-22 00:49:28.185046 2 2 PV2-V-123 2019-04-20 \N f 311 1 3 105 602.59 96.41 0.00 699.00 2 2019-03-30 2019-03-30 23:18:10.7625 2019-03-30 23:18:14.814335 1 2 PV2-V-146 \N \N f 312 1 3 105 775.00 124.00 0.00 899.00 2 2019-03-30 2019-03-30 23:20:20.147078 2019-03-30 23:20:38.781946 1 2 PV2-V-147 \N \N f 313 1 2 104 699.00 0.00 0.00 699.00 2 2019-03-30 2019-03-31 00:29:14.799307 2019-03-31 00:29:20.658176 1 1 PV1-V-164 \N \N f 314 1 2 104 1205.17 192.83 0.00 1398.00 2 2019-03-30 2019-03-31 01:19:49.160242 2019-03-31 01:20:06.013385 1 1 PV1-V-165 \N \N f 315 1 11 106 1363.79 110.21 0.00 1474.00 2 2019-03-31 2019-03-31 19:14:29.21406 2019-03-31 19:16:39.58512 1 7 PV2-V-148 \N \N f 280 51 2 89 775.00 124.00 0.00 899.00 2 2019-03-22 2019-03-22 19:48:49.321079 2019-04-01 19:01:54.516798 2 1 PV1-V-148 2019-04-26 \N f 316 1 12 107 1099.00 0.00 0.00 1099.00 2 2019-03-31 2019-03-31 19:37:06.172492 2019-03-31 19:38:00.504238 1 8 PV1-V-166 \N \N f 317 1 2 108 1033.62 165.38 0.00 1199.00 2 2019-04-01 2019-04-01 18:58:47.869123 2019-04-01 18:59:43.296759 1 1 PV1-V-167 \N \N f 318 1 2 108 1239.65 198.35 0.00 1438.00 2 2019-04-01 2019-04-01 19:55:52.143477 2019-04-01 19:56:24.029382 1 1 PV1-V-168 \N \N f 319 1 2 108 503.31 64.69 0.00 568.00 2 2019-04-01 2019-04-01 20:09:45.36273 2019-04-01 20:09:56.154401 1 3 PV1-V-169 \N \N f 320 1 2 110 799.00 0.00 0.00 799.00 2 2019-04-02 2019-04-02 17:39:34.869546 2019-04-02 17:39:39.88252 1 1 PV1-V-170 \N \N f 322 1 9 110 430.17 68.83 0.00 499.00 1 2019-04-02 2019-04-02 23:40:56.963692 2019-04-02 23:41:25.333967 1 3 PV1-V-172 \N \N f 323 67 9 110 430.17 68.83 0.00 499.00 1 2019-04-02 2019-04-02 23:42:02.322906 2019-04-02 23:42:19.467596 2 3 PV1-V-173 2019-05-07 \N f 325 1 12 111 516.38 82.62 0.00 599.00 2 2019-04-03 2019-04-03 23:20:32.17287 2019-04-03 23:20:42.373879 1 8 PV1-V-175 \N \N f 326 1 11 112 929.17 68.83 0.00 998.00 2 2019-04-03 2019-04-04 01:57:10.416384 2019-04-04 01:57:29.109335 1 4 PV2-V-149 \N \N f 345 1 2 118 1957.48 89.52 0.00 2047.00 1 2019-04-06 2019-04-06 22:37:18.065342 2019-04-06 22:38:37.677575 1 1 PV1-V-181 \N \N f 328 1 11 113 593.97 95.04 0.00 689.01 2 2019-04-04 2019-04-04 19:48:26.771426 2019-04-04 19:49:06.786229 1 7 PV2-V-151 \N \N f 329 1 11 113 999.00 0.00 0.00 999.00 2 2019-04-04 2019-04-04 21:31:07.889198 2019-04-04 21:31:33.6119 1 7 PV2-V-152 \N \N f 330 1 2 114 2239.65 358.34 0.00 2597.99 2 2019-04-04 2019-04-04 21:58:10.868734 2019-04-04 21:58:39.561075 1 8 PV1-V-176 \N \N f 331 1 11 113 1067.24 170.76 0.00 1238.00 1 2019-04-04 2019-04-04 22:48:29.251232 2019-04-04 22:48:33.72836 1 7 PV2-V-153 \N \N f 332 1 11 113 533.62 85.38 0.00 619.00 2 2019-04-04 2019-04-04 22:48:44.706773 2019-04-04 22:48:57.299319 1 7 PV2-V-154 \N \N f 333 1 12 114 507.76 81.24 0.00 589.00 2 2019-04-04 2019-04-05 01:46:34.885965 2019-04-05 01:47:51.22581 1 8 PV1-V-177 \N \N f 327 68 11 113 999.00 0.00 0.00 999.00 2 2019-04-04 2019-04-04 17:21:49.461614 2019-04-05 17:15:52.735749 2 7 PV2-V-150 2019-05-09 \N f 334 1 11 115 568.10 90.90 0.00 659.00 2 2019-04-05 2019-04-05 17:24:12.304266 2019-04-05 17:24:27.790812 1 7 PV2-V-155 \N \N f 346 1 2 118 2756.48 89.52 0.00 2846.00 2 2019-04-06 2019-04-06 22:40:13.930953 2019-04-06 22:41:19.637642 1 1 PV1-V-182 \N \N f 337 1 11 115 1610.21 137.79 0.00 1748.00 2 2019-04-05 2019-04-05 19:37:11.678346 2019-04-05 19:37:17.397839 1 7 PV2-V-158 \N \N f 338 1 2 116 1464.66 234.35 0.00 1699.01 2 2019-04-05 2019-04-05 21:45:38.133467 2019-04-05 21:47:21.958634 1 1 PV1-V-178 \N \N f 339 1 11 115 775.00 124.00 0.00 899.00 2 2019-04-05 2019-04-05 21:54:44.721663 2019-04-05 21:54:50.35222 1 7 PV2-V-159 \N \N f 335 1 11 115 1610.21 137.79 0.00 1748.00 1 2019-04-05 2019-04-05 19:33:18.495805 2019-04-05 22:50:14.006409 1 7 PV2-V-156 \N \N f 336 1 11 115 1610.21 137.79 0.00 1748.00 1 2019-04-05 2019-04-05 19:35:12.294439 2019-04-05 22:50:19.908681 1 7 PV2-V-157 \N \N f 340 1 11 115 430.17 68.83 0.00 499.00 2 2019-04-05 2019-04-05 23:46:45.053176 2019-04-05 23:47:02.167049 1 7 PV2-V-160 \N \N f 341 1 11 115 404.31 64.69 0.00 469.00 2 2019-04-05 2019-04-05 23:54:59.242672 2019-04-05 23:55:23.00718 1 7 PV2-V-161 \N \N f 342 1 3 117 688.79 110.21 0.00 799.00 2 2019-04-06 2019-04-06 20:37:14.880817 2019-04-06 20:37:48.274673 1 2 PV2-V-162 \N \N f 343 1 2 118 1301.59 96.41 0.00 1398.00 2 2019-04-06 2019-04-06 21:16:48.894097 2019-04-06 21:17:56.998005 1 1 PV1-V-179 \N \N f 344 1 2 118 699.00 0.00 0.00 699.00 1 2019-04-06 2019-04-06 22:26:41.91626 2019-04-06 22:28:16.766475 1 1 PV1-V-180 \N \N f 347 1 2 118 559.48 89.52 0.00 649.00 2 2019-04-06 2019-04-06 23:38:39.226871 2019-04-06 23:38:44.943002 1 1 PV1-V-183 \N \N f 348 1 11 119 599.00 0.00 0.00 599.00 2 2019-04-07 2019-04-07 16:59:04.346664 2019-04-07 16:59:10.046105 1 7 PV2-V-163 \N \N f 349 1 12 120 412.93 66.07 0.00 479.00 2 2019-04-07 2019-04-07 19:08:38.400018 2019-04-07 19:08:43.561116 1 8 PV1-V-184 \N \N f 350 1 2 121 568.10 90.90 0.00 659.00 2 2019-04-08 2019-04-08 15:55:09.76211 2019-04-08 15:55:20.861743 1 1 PV1-V-185 \N \N f 351 1 2 124 1033.62 165.38 0.00 1199.00 2 2019-04-09 2019-04-09 18:27:20.125848 2019-04-09 18:28:25.46492 1 1 PV1-V-186 \N \N f 321 66 2 110 799.00 0.00 0.00 799.00 2 2019-04-02 2019-04-02 18:05:25.152387 2019-04-10 16:05:16.288657 2 1 PV1-V-171 2019-05-07 \N f 352 1 2 125 904.31 144.69 0.00 1049.00 2 2019-04-10 2019-04-10 16:11:15.691259 2019-04-10 16:12:05.357346 1 1 PV1-V-187 \N \N f 353 1 11 126 699.00 0.00 0.00 699.00 2 2019-04-10 2019-04-10 16:13:43.909238 2019-04-10 16:13:48.956801 1 7 PV2-V-164 \N \N f 354 1 11 126 499.14 79.86 0.00 579.00 2 2019-04-10 2019-04-10 19:06:37.780153 2019-04-10 19:08:09.377384 1 7 PV2-V-165 \N \N f 355 1 11 126 1603.31 64.69 0.00 1668.00 2 2019-04-10 2019-04-10 22:51:29.405139 2019-04-10 22:52:02.521654 1 7 PV2-V-166 \N \N f 356 1 11 126 999.00 0.00 0.00 999.00 2 2019-04-10 2019-04-10 22:59:34.820082 2019-04-10 22:59:41.361128 1 7 PV2-V-167 \N \N f 357 1 2 125 479.00 0.00 0.00 479.00 2 2019-04-10 2019-04-11 00:13:16.752978 2019-04-11 00:13:24.447289 1 8 PV1-V-188 \N \N f 358 1 10 126 516.38 82.62 0.00 599.00 2 2019-04-10 2019-04-11 01:37:31.968871 2019-04-11 01:38:53.678669 1 4 PV2-V-168 \N \N f 359 1 2 128 602.59 96.41 0.00 699.00 2 2019-04-11 2019-04-11 17:32:10.537268 2019-04-11 17:32:35.324012 1 1 PV1-V-189 \N \N f 360 1 11 127 516.38 82.62 0.00 599.00 2 2019-04-11 2019-04-11 22:05:12.156709 2019-04-11 22:05:17.426327 1 7 PV2-V-169 \N \N f 361 1 11 127 775.00 124.00 0.00 899.00 2 2019-04-11 2019-04-12 00:21:56.246649 2019-04-12 00:23:59.798226 1 4 PV2-V-170 \N \N f 362 69 11 127 1292.24 206.76 0.00 1499.00 1 2019-04-11 2019-04-12 01:22:31.293456 2019-04-12 01:22:41.012971 1 4 PV2-V-171 \N \N f 363 1 2 129 473.28 75.72 0.00 549.00 2 2019-04-12 2019-04-12 16:35:39.623193 2019-04-12 16:35:47.403078 1 1 PV1-V-190 \N \N f 364 1 2 129 989.65 158.35 0.00 1148.00 2 2019-04-12 2019-04-12 17:50:17.13722 2019-04-12 17:50:23.271426 1 1 PV1-V-191 \N \N f 365 1 11 130 599.00 0.00 0.00 599.00 2 2019-04-12 2019-04-12 18:05:25.130374 2019-04-12 18:05:30.102948 1 7 PV2-V-172 \N \N f 366 1 12 129 1229.17 68.83 0.00 1298.00 2 2019-04-12 2019-04-13 00:39:51.9705 2019-04-13 00:40:10.057564 1 8 PV1-V-192 \N \N f 367 1 12 129 899.00 0.00 0.00 899.00 2 2019-04-12 2019-04-13 00:42:28.353429 2019-04-13 00:42:53.347178 1 8 PV1-V-193 \N \N f 368 1 12 129 479.00 0.00 0.00 479.00 2 2019-04-12 2019-04-13 00:50:30.140347 2019-04-13 00:51:05.541463 1 8 PV1-V-194 \N \N f 369 70 2 132 1119.83 179.17 0.00 1299.00 2 2019-04-13 2019-04-13 17:20:28.120281 2019-04-13 17:20:38.878111 1 3 PV1-V-195 \N \N f 370 1 2 132 532.79 66.21 119.00 480.00 2 2019-04-13 2019-04-13 21:49:34.047494 2019-04-13 21:50:01.767908 1 1 PV1-V-196 \N \N f 371 1 3 131 999.00 0.00 0.00 999.00 2 2019-04-13 2019-04-13 23:40:46.433002 2019-04-13 23:41:17.896009 1 2 PV2-V-173 \N \N f 372 1 11 133 775.00 124.00 0.00 899.00 1 2019-04-14 2019-04-14 18:56:21.597948 2019-04-14 18:56:35.769236 1 7 PV2-V-174 \N \N f 373 1 11 133 1392.24 206.76 100.00 1499.00 2 2019-04-14 2019-04-14 18:59:41.638336 2019-04-14 19:02:00.65069 1 7 PV2-V-175 \N \N f 374 1 12 134 775.00 124.00 0.00 899.00 2 2019-04-14 2019-04-14 19:23:24.927562 2019-04-14 19:25:39.229026 1 8 PV1-V-197 \N \N f 375 1 11 133 301.72 48.28 0.00 350.00 2 2019-04-14 2019-04-14 20:03:20.605027 2019-04-14 20:03:25.712034 1 7 PV2-V-176 \N \N f 376 1 11 135 430.17 68.83 0.00 499.00 2 2019-04-15 2019-04-15 18:07:16.185797 2019-04-15 18:07:21.15922 1 7 PV2-V-177 \N \N f 377 1 2 136 430.17 68.83 0.00 499.00 2 2019-04-15 2019-04-15 18:14:52.539502 2019-04-15 18:14:57.20184 1 1 PV1-V-198 \N \N f 378 1 2 136 1033.62 165.38 0.00 1199.00 2 2019-04-15 2019-04-15 21:37:17.518436 2019-04-15 21:37:22.710418 1 1 PV1-V-199 \N \N f 324 3 2 111 1399.00 0.00 0.00 1399.00 2 2019-04-03 2019-04-03 17:41:02.132253 2019-09-17 18:06:02.23885 0 3 PV1-V-174 \N \N f 379 1 11 135 599.00 0.00 0.00 599.00 2 2019-04-15 2019-04-16 00:00:02.100917 2019-04-16 00:00:08.208979 1 4 PV2-V-178 \N \N f 380 13 10 135 1502.62 85.38 0.00 1588.00 1 2019-04-15 2019-04-16 00:18:00.323319 2019-04-16 00:29:26.611671 2 4 PV2-V-179 2019-05-20 \N f 410 1 10 143 775.00 124.00 0.00 899.00 2 2019-04-23 2019-04-23 23:39:52.684168 2019-04-23 23:40:28.82761 1 4 PV2-V-194 \N \N f 384 1 10 135 430.17 68.83 0.00 499.00 2 2019-04-15 2019-04-16 00:56:39.643061 2019-04-16 00:57:02.120669 1 4 PV2-V-181 \N \N f 385 1 2 136 800.86 128.14 0.00 929.00 2 2019-04-15 2019-04-16 01:09:30.433864 2019-04-16 01:09:36.285495 1 1 PV1-V-202 \N \N f 388 1 2 138 799.00 0.00 0.00 799.00 2 2019-04-16 2019-04-16 23:05:57.14994 2019-04-16 23:06:03.949865 1 1 PV1-V-205 \N \N f 389 1 2 138 602.59 96.41 0.00 699.00 2 2019-04-16 2019-04-16 23:51:02.368104 2019-04-16 23:51:06.51608 1 8 PV1-V-206 \N \N f 390 71 11 140 990.52 158.48 0.00 1149.00 1 2019-04-17 2019-04-17 19:17:41.97816 2019-04-17 19:17:47.700748 1 7 PV2-V-182 \N \N f 430 1 10 154 799.00 0.00 0.00 799.00 2 2019-04-29 2019-04-29 16:04:16.616822 2019-04-29 16:04:41.157663 1 4 PV2-V-199 \N \N f 392 1 11 140 84.48 13.52 0.00 98.00 2 2019-04-17 2019-04-17 19:38:03.586144 2019-04-17 19:38:10.675876 1 7 PV2-V-184 \N \N f 393 1 2 139 904.31 144.69 0.00 1049.00 2 2019-04-17 2019-04-17 21:15:22.362753 2019-04-17 21:17:18.026374 1 8 PV1-V-207 \N \N f 382 13 10 135 533.62 85.38 0.00 619.00 2 2019-04-15 2019-04-16 00:41:29.877074 2019-04-17 21:43:25.343372 2 4 PV2-V-180 2019-05-20 \N f 394 1 11 140 559.48 89.52 0.00 649.00 2 2019-04-17 2019-04-17 21:46:21.799402 2019-04-17 21:46:28.070792 1 7 PV2-V-185 \N \N f 395 1 3 140 899.00 0.00 0.00 899.00 2 2019-04-17 2019-04-17 21:50:30.269821 2019-04-17 21:50:35.709266 1 2 PV2-V-186 \N \N f 396 1 11 140 559.48 89.52 0.00 649.00 2 2019-04-17 2019-04-17 22:20:22.09056 2019-04-17 22:20:26.599976 1 7 PV2-V-187 \N \N f 397 1 11 140 969.00 0.00 0.00 969.00 2 2019-04-17 2019-04-17 23:26:15.122357 2019-04-17 23:26:22.205829 1 4 PV2-V-188 \N \N f 412 48 12 146 899.00 0.00 0.00 899.00 2 2019-04-24 2019-04-24 21:08:51.765964 2019-05-28 18:47:40.233799 2 8 PV1-V-216 2019-05-29 \N f 399 1 10 140 920.69 147.31 0.00 1068.00 2 2019-04-17 2019-04-18 00:08:34.451099 2019-04-18 00:08:46.372963 1 2 PV2-V-190 \N \N f 400 1 2 139 1033.62 165.38 0.00 1199.00 2 2019-04-17 2019-04-18 00:12:46.662257 2019-04-18 00:12:57.017578 1 1 PV1-V-208 \N \N f 401 1 10 140 688.79 110.21 0.00 799.00 2 2019-04-17 2019-04-18 00:41:31.287781 2019-04-18 00:41:54.587168 1 4 PV2-V-191 \N \N f 402 1 12 142 1464.66 234.35 0.00 1699.01 2 2019-04-22 2019-04-22 19:26:50.549215 2019-04-22 19:28:22.110794 1 8 PV1-V-209 \N \N f 403 1 12 142 489.00 0.00 0.00 489.00 2 2019-04-22 2019-04-22 19:34:39.218849 2019-04-22 19:34:42.602277 1 8 PV1-V-210 \N \N f 404 1 10 141 404.31 64.69 0.00 469.00 2 2019-04-22 2019-04-22 19:37:17.329606 2019-04-22 19:38:02.778453 1 4 PV2-V-192 \N \N f 405 1 12 142 1392.00 0.00 0.00 1392.00 2 2019-04-22 2019-04-22 22:43:56.406713 2019-04-22 22:46:13.291621 1 8 PV1-V-211 \N \N f 406 1 10 143 1730.21 137.79 0.00 1868.00 2 2019-04-23 2019-04-23 19:12:20.962861 2019-04-23 19:13:28.631016 1 4 PV2-V-193 \N \N f 387 69 2 138 1378.45 220.55 0.00 1599.00 2 2019-04-16 2019-04-16 22:18:59.98143 2019-05-23 00:58:20.713804 0 3 PV1-V-204 \N \N f 408 1 12 144 455.17 72.83 0.00 528.00 2 2019-04-23 2019-04-23 21:58:09.449253 2019-04-23 21:58:33.312683 1 8 PV1-V-213 \N \N f 409 1 12 144 2067.24 330.76 0.00 2398.00 2 2019-04-23 2019-04-23 22:49:16.438632 2019-04-23 22:49:47.604803 1 8 PV1-V-214 \N \N f 411 1 12 144 516.38 82.62 0.00 599.00 2 2019-04-23 2019-04-23 23:44:35.587372 2019-04-23 23:45:11.939355 1 8 PV1-V-215 \N \N f 383 34 2 136 430.17 68.83 0.00 499.00 2 2019-04-15 2019-04-16 00:52:16.968533 2019-10-01 21:09:53.953801 0 3 PV1-V-201 \N \N f 413 1 10 145 499.14 79.86 0.00 579.00 2 2019-04-24 2019-04-25 00:06:24.779272 2019-04-25 00:07:33.430566 1 4 PV2-V-195 \N \N f 414 1 10 145 1119.83 179.17 0.00 1299.00 2 2019-04-24 2019-04-25 01:11:08.961448 2019-04-25 01:11:26.719013 1 4 PV2-V-196 \N \N f 415 1 12 146 1091.59 96.41 0.00 1188.00 2 2019-04-24 2019-04-25 01:33:37.3912 2019-04-25 01:34:29.392295 1 8 PV1-V-217 \N \N f 416 75 9 150 899.00 0.00 0.00 899.00 1 2019-04-26 2019-04-26 17:49:06.919585 2019-04-26 17:49:45.804108 2 8 PV1-V-218 2019-05-31 \N f 417 1 12 150 775.00 124.00 0.00 899.00 2 2019-04-26 2019-04-27 00:10:51.183966 2019-04-27 00:11:09.519944 1 8 PV1-V-219 \N \N f 418 1 10 149 559.48 89.52 0.00 649.00 2 2019-04-26 2019-04-27 00:32:34.466946 2019-04-27 00:32:40.0557 1 4 PV2-V-197 \N \N f 419 1 12 150 576.72 92.28 0.00 669.00 1 2019-04-26 2019-04-27 01:17:43.960906 2019-04-27 01:54:20.972735 1 8 PV1-V-220 \N \N f 420 1 12 152 698.00 0.00 0.00 698.00 2 2019-04-27 2019-04-27 16:27:21.4076 2019-04-27 16:28:51.736515 1 8 PV1-V-221 \N \N f 421 1 12 152 479.00 0.00 0.00 479.00 2 2019-04-27 2019-04-27 16:29:44.994978 2019-04-27 16:29:50.770009 1 8 PV1-V-222 \N \N f 422 1 12 152 576.72 92.28 0.00 669.00 2 2019-04-27 2019-04-27 17:50:13.037586 2019-04-27 17:50:21.15407 1 8 PV1-V-223 \N \N f 423 1 12 152 899.00 0.00 0.00 899.00 2 2019-04-27 2019-04-27 19:06:31.080591 2019-04-27 19:08:02.635957 1 8 PV1-V-224 \N \N f 407 74 12 144 1399.00 0.00 0.00 1399.00 2 2019-04-23 2019-04-23 21:45:37.638003 2019-05-21 21:45:26.334315 2 8 PV1-V-212 2019-05-28 \N f 425 1 10 151 999.00 0.00 0.00 999.00 2 2019-04-27 2019-04-27 20:33:11.870449 2019-04-27 20:33:19.019174 1 4 PV2-V-198 \N \N f 426 1 12 152 775.00 124.00 0.00 899.00 2 2019-04-27 2019-04-27 20:43:33.296876 2019-04-27 20:43:59.600782 1 8 PV1-V-226 \N \N f 391 73 11 140 990.52 158.48 0.00 1149.00 2 2019-04-17 2019-04-17 19:20:06.842642 2019-04-27 22:52:52.308159 2 7 PV2-V-183 2019-05-22 \N f 427 77 12 152 507.76 81.24 0.00 589.00 1 2019-04-27 2019-04-28 00:28:12.115788 2019-04-28 00:28:22.531936 1 8 PV1-V-227 \N \N f 431 79 10 154 675.00 0.00 0.00 675.00 2 2019-04-29 2019-04-29 20:21:30.916407 2019-05-18 18:02:33.053663 2 4 PV2-V-200 2019-06-03 \N f 429 1 12 152 899.00 0.00 0.00 899.00 2 2019-04-27 2019-04-28 01:25:21.535878 2019-04-28 01:26:30.717859 1 8 PV1-V-229 \N \N f 424 76 12 152 899.00 0.00 0.00 899.00 2 2019-04-27 2019-04-27 19:48:09.025848 2019-05-18 23:31:24.557849 2 8 PV1-V-225 2019-06-01 \N f 432 1 2 153 699.00 0.00 0.00 699.00 2 2019-04-29 2019-04-29 22:51:55.800976 2019-04-29 22:52:27.182608 1 1 PV1-V-230 \N \N f 433 1 2 153 775.00 124.00 0.00 899.00 2 2019-04-29 2019-04-30 00:49:29.914652 2019-04-30 00:49:57.948504 1 1 PV1-V-231 \N \N f 434 1 10 156 998.28 159.73 0.00 1158.01 2 2019-04-30 2019-04-30 16:33:04.670977 2019-04-30 16:34:11.282084 1 4 PV2-V-201 \N \N f 435 1 2 155 1699.00 0.00 0.00 1699.00 2 2019-04-30 2019-04-30 20:30:52.456257 2019-04-30 20:31:24.407832 1 1 PV1-V-232 \N \N f 428 78 12 152 507.76 81.24 0.00 589.00 2 2019-04-27 2019-04-28 00:29:14.183896 2019-05-16 19:55:36.805521 2 8 PV1-V-228 2019-06-01 \N f 438 81 12 155 602.59 96.41 0.00 699.00 1 2019-04-30 2019-04-30 23:06:20.854987 2019-04-30 23:10:54.6495 2 1 PV1-V-235 2019-06-04 \N f 437 71 2 155 559.48 89.52 0.00 649.00 2 2019-04-30 2019-04-30 21:40:47.114169 2019-04-30 23:57:06.00485 2 1 PV1-V-234 2019-06-04 \N f 440 1 2 158 1699.00 0.00 0.00 1699.00 2 2019-05-01 2019-05-01 18:57:08.604866 2019-05-01 18:57:29.675742 1 1 PV1-V-237 \N \N f 439 81 12 155 602.59 96.41 0.00 699.00 2 2019-04-30 2019-04-30 23:12:50.764407 2019-05-02 18:47:51.377615 2 8 PV1-V-236 2019-06-04 \N f 441 1 2 159 775.00 124.00 0.00 899.00 2 2019-05-02 2019-05-02 20:34:33.160775 2019-05-02 20:34:42.181254 1 1 PV1-V-238 \N \N f 436 80 2 155 1392.00 0.00 0.00 1392.00 2 2019-04-30 2019-04-30 20:32:49.254869 2019-05-06 17:37:57.364398 2 1 PV1-V-233 2019-06-04 \N f 398 69 10 140 1292.24 206.76 0.00 1499.00 2 2019-04-17 2019-04-17 23:37:06.097619 2019-05-24 00:45:37.817383 0 4 PV2-V-189 \N \N f 386 49 2 138 1190.00 0.00 0.00 1190.00 2 2019-04-16 2019-04-16 20:37:29.527819 2020-04-29 02:08:21.28085 0 3 PV1-V-203 \N \N f 381 36 2 136 669.00 0.00 0.00 669.00 2 2019-04-15 2019-04-16 00:30:06.880275 2019-10-26 22:08:49.110166 0 1 PV1-V-200 \N \N f 442 1 2 159 1119.83 179.17 0.00 1299.00 2 2019-05-02 2019-05-02 23:07:51.246625 2019-05-02 23:08:50.720656 1 1 PV1-V-239 \N \N f 443 1 3 160 602.59 96.41 0.00 699.00 2 2019-05-02 2019-05-02 23:13:21.596561 2019-05-02 23:13:35.983352 1 2 PV2-V-202 \N \N f 444 1 2 159 1499.00 0.00 449.00 1050.00 2 2019-05-02 2019-05-02 23:39:09.847701 2019-05-02 23:39:35.503954 1 1 PV1-V-240 \N \N f 445 1 3 160 688.79 110.21 0.00 799.00 2 2019-05-02 2019-05-03 01:29:15.534859 2019-05-03 01:29:43.860615 1 2 PV2-V-203 \N \N f 446 1 10 161 576.72 92.28 0.00 669.00 2 2019-05-03 2019-05-03 17:06:07.081382 2019-05-03 17:06:22.187025 1 4 PV2-V-204 \N \N f 447 1 2 162 716.38 82.62 200.00 599.00 2 2019-05-03 2019-05-03 22:58:11.005609 2019-05-03 22:58:18.569988 1 1 PV1-V-241 \N \N f 448 1 2 162 1299.00 0.00 0.00 1299.00 2 2019-05-03 2019-05-04 01:08:18.438458 2019-05-04 01:08:25.224485 1 8 PV1-V-242 \N \N f 449 1 2 162 1499.00 0.00 0.00 1499.00 2 2019-05-03 2019-05-04 01:11:44.819623 2019-05-04 01:12:03.392524 1 1 PV1-V-243 \N \N f 450 1 12 163 899.00 0.00 0.00 899.00 2 2019-05-04 2019-05-04 16:45:54.997447 2019-05-04 16:46:24.592386 1 8 PV1-V-244 \N \N f 451 1 3 164 1119.83 179.17 0.00 1299.00 2 2019-05-04 2019-05-04 18:05:15.442767 2019-05-04 18:07:42.40996 1 2 PV2-V-205 \N \N f 452 1 3 164 1119.83 179.17 0.00 1299.00 2 2019-05-04 2019-05-04 18:53:21.240195 2019-05-04 18:53:36.003374 1 2 PV2-V-206 \N \N f 453 1 2 163 1399.00 0.00 0.00 1399.00 2 2019-05-04 2019-05-04 20:06:53.119209 2019-05-04 20:07:04.079583 1 1 PV1-V-245 \N \N f 454 1 2 163 645.69 103.31 0.00 749.00 2 2019-05-04 2019-05-04 20:51:15.67218 2019-05-04 20:51:57.877595 1 1 PV1-V-246 \N \N f 456 1 2 163 455.17 72.83 0.00 528.00 2 2019-05-04 2019-05-04 21:33:04.390522 2019-05-04 21:35:17.079581 1 1 PV1-V-248 \N \N f 457 1 3 164 1257.79 110.21 0.00 1368.00 2 2019-05-04 2019-05-04 22:16:33.480213 2019-05-04 22:17:11.163549 1 2 PV2-V-207 \N \N f 458 1 3 164 516.38 82.62 0.00 599.00 2 2019-05-04 2019-05-04 23:32:45.738139 2019-05-04 23:33:11.188807 1 2 PV2-V-208 \N \N f 459 1 2 163 455.17 72.83 0.00 528.00 2 2019-05-04 2019-05-05 00:29:06.398857 2019-05-05 00:29:11.013582 1 1 PV1-V-249 \N \N f 460 1 2 163 586.21 93.79 0.00 680.00 2 2019-05-04 2019-05-05 00:57:47.302507 2019-05-05 00:57:53.768337 1 1 PV1-V-250 \N \N f 461 1 2 163 662.93 106.07 0.00 769.00 2 2019-05-04 2019-05-05 01:45:07.641656 2019-05-05 01:46:10.864481 1 1 PV1-V-251 \N \N f 462 1 12 166 2336.93 230.07 0.00 2567.00 2 2019-05-05 2019-05-05 17:02:12.268202 2019-05-05 17:02:24.912945 1 3 PV1-V-252 \N \N f 463 1 3 165 3709.49 305.51 1800.00 2215.00 2 2019-05-05 2019-05-05 17:09:47.788819 2019-05-05 17:09:56.691807 1 4 PV2-V-209 \N \N f 464 1 3 165 315.52 34.48 100.00 250.00 2 2019-05-05 2019-05-05 17:14:41.70865 2019-05-05 17:14:46.958241 1 4 PV2-V-210 \N \N f 465 1 10 165 569.00 0.00 0.00 569.00 2 2019-05-05 2019-05-05 19:57:12.197558 2019-05-05 19:57:17.602815 1 9 PV2-V-211 \N \N f 466 1 10 165 775.00 124.00 0.00 899.00 2 2019-05-05 2019-05-05 21:01:10.025123 2019-05-05 21:01:33.873669 1 9 PV2-V-212 \N \N f 467 1 2 167 404.31 64.69 0.00 469.00 2 2019-05-06 2019-05-06 16:54:22.559453 2019-05-06 16:54:43.924385 1 1 PV1-V-253 \N \N f 469 1 3 168 706.03 112.96 0.00 818.99 2 2019-05-06 2019-05-06 17:44:58.204396 2019-05-06 17:45:37.357224 1 2 PV2-V-213 \N \N f 470 1 2 167 830.03 68.96 399.00 499.99 2 2019-05-06 2019-05-06 19:15:25.942318 2019-05-06 19:15:29.078171 1 8 PV1-V-255 \N \N f 471 1 3 168 818.10 130.90 0.00 949.00 2 2019-05-06 2019-05-06 20:10:06.085181 2019-05-06 20:10:53.691246 1 2 PV2-V-214 \N \N f 472 1 2 167 590.52 94.48 0.00 685.00 2 2019-05-06 2019-05-06 20:34:42.225906 2019-05-06 20:34:52.218348 1 1 PV1-V-256 \N \N f 473 1 3 168 969.00 0.00 0.00 969.00 2 2019-05-06 2019-05-06 22:01:29.601243 2019-05-06 22:01:35.452129 1 2 PV2-V-215 \N \N f 474 1 2 167 1299.00 0.00 0.00 1299.00 2 2019-05-06 2019-05-06 23:56:02.59314 2019-05-07 00:02:41.391706 1 1 PV1-V-257 \N \N f 475 1 2 167 1344.00 124.00 0.00 1468.00 2 2019-05-06 2019-05-07 00:04:11.678877 2019-05-07 00:04:56.41151 1 1 PV1-V-258 \N \N f 476 1 3 168 516.38 82.62 0.00 599.00 2 2019-05-06 2019-05-07 00:34:11.15831 2019-05-07 00:34:34.803158 1 2 PV2-V-216 \N \N f 477 1 3 168 1119.83 179.17 0.00 1299.00 2 2019-05-06 2019-05-07 00:58:20.260103 2019-05-07 00:59:14.767574 1 2 PV2-V-217 \N \N f 478 1 2 169 775.00 124.00 0.00 899.00 2 2019-05-07 2019-05-07 18:02:24.105112 2019-05-07 18:02:37.112847 1 1 PV1-V-259 \N \N f 492 1 9 172 861.21 137.79 0.00 999.00 2 2019-05-08 2019-05-08 18:03:34.106127 2019-05-08 18:03:49.73681 1 1 PV1-V-269 \N \N f 481 1 2 169 795.69 103.31 150.00 749.00 2 2019-05-07 2019-05-07 22:47:18.551525 2019-05-07 22:47:30.826583 1 1 PV1-V-261 \N \N f 482 1 2 169 456.03 72.96 0.00 528.99 2 2019-05-07 2019-05-07 22:49:54.971829 2019-05-07 22:50:07.173104 1 1 PV1-V-262 \N \N f 483 1 2 169 1214.69 103.31 0.00 1318.00 2 2019-05-07 2019-05-08 00:14:06.74621 2019-05-08 00:14:30.170813 1 1 PV1-V-263 \N \N f 484 1 2 169 569.00 0.00 0.00 569.00 2 2019-05-07 2019-05-08 00:31:41.140014 2019-05-08 00:36:40.47746 1 1 PV1-V-264 \N \N f 485 1 2 169 343.97 55.04 0.00 399.01 2 2019-05-07 2019-05-08 00:41:30.258795 2019-05-08 00:41:46.57084 1 1 PV1-V-265 \N \N f 486 1 2 169 775.00 124.00 0.00 899.00 2 2019-05-07 2019-05-08 00:50:08.23189 2019-05-08 00:50:52.867388 1 1 PV1-V-266 \N \N f 487 1 3 170 1718.00 0.00 0.00 1718.00 2 2019-05-07 2019-05-08 01:27:05.824268 2019-05-08 01:27:53.002974 1 2 PV2-V-219 \N \N f 488 1 2 169 829.00 0.00 0.00 829.00 2 2019-05-07 2019-05-08 01:53:21.963626 2019-05-08 01:53:30.094068 1 1 PV1-V-267 \N \N f 489 1 3 171 568.10 90.90 0.00 659.00 2 2019-05-08 2019-05-08 16:52:21.070634 2019-05-08 16:52:25.851452 1 9 PV2-V-220 \N \N f 490 1 3 171 688.79 110.21 0.00 799.00 1 2019-05-08 2019-05-08 16:58:11.154874 2019-05-08 16:58:18.964173 1 9 PV2-V-221 \N \N f 491 1 9 172 479.00 0.00 0.00 479.00 2 2019-05-08 2019-05-08 17:13:10.623351 2019-05-08 17:13:24.31037 1 1 PV1-V-268 \N \N f 479 85 2 169 775.00 124.00 0.00 899.00 2 2019-05-07 2019-05-07 18:16:18.554431 2019-05-08 17:28:37.68087 2 1 PV1-V-260 2019-06-11 \N f 480 86 3 170 723.28 115.72 0.00 839.00 2 2019-05-07 2019-05-07 18:26:29.980858 2019-05-08 17:32:23.55974 2 2 PV2-V-218 2019-06-11 \N f 493 1 9 172 412.93 66.07 0.00 479.00 2 2019-05-08 2019-05-08 18:23:35.514179 2019-05-08 18:23:42.509259 1 1 PV1-V-270 \N \N f 494 1 12 172 479.00 0.00 0.00 479.00 1 2019-05-08 2019-05-08 18:42:02.254866 2019-05-08 18:43:59.638222 1 1 PV1-V-271 \N \N f 495 1 12 172 479.00 0.00 0.00 479.00 2 2019-05-08 2019-05-08 18:44:36.662738 2019-05-08 18:44:41.899381 1 8 PV1-V-272 \N \N f 468 84 2 167 1048.00 0.00 0.00 1048.00 2 2019-05-06 2019-05-06 17:23:53.376797 2019-06-11 16:31:43.009797 2 1 PV1-V-254 2019-06-10 \N f 497 1 12 172 799.00 0.00 0.00 799.00 2 2019-05-08 2019-05-08 18:54:31.159558 2019-05-08 18:54:58.413211 1 3 PV1-V-273 \N \N f 498 1 12 172 958.00 0.00 0.00 958.00 1 2019-05-08 2019-05-08 19:04:41.01129 2019-05-08 19:05:09.633987 1 3 PV1-V-274 \N \N f 499 1 12 172 479.00 0.00 0.00 479.00 2 2019-05-08 2019-05-08 19:05:24.044186 2019-05-08 19:05:28.694149 1 3 PV1-V-275 \N \N f 500 1 12 172 602.59 96.41 0.00 699.00 2 2019-05-08 2019-05-08 19:15:10.045638 2019-05-08 19:15:34.577188 1 3 PV1-V-276 \N \N f 501 1 3 171 404.31 64.69 0.00 469.00 2 2019-05-08 2019-05-08 20:07:54.078632 2019-05-08 20:08:48.32751 1 9 PV2-V-223 \N \N f 502 1 3 171 507.76 81.24 0.00 589.00 2 2019-05-08 2019-05-08 20:17:15.378182 2019-05-08 20:17:59.759567 1 2 PV2-V-224 \N \N f 503 1 3 171 869.00 0.00 0.00 869.00 2 2019-05-08 2019-05-08 20:28:53.250577 2019-05-08 20:29:30.998499 1 2 PV2-V-225 \N \N f 455 82 2 163 430.17 68.83 0.00 499.00 2 2019-05-04 2019-05-04 20:55:04.55675 2019-05-08 20:54:09.697938 2 1 PV1-V-247 2019-06-08 \N f 504 1 2 172 1214.69 103.31 0.00 1318.00 2 2019-05-08 2019-05-08 21:52:01.572385 2019-05-08 21:52:14.786651 1 1 PV1-V-277 \N \N f 496 87 3 171 688.79 110.21 0.00 799.00 2 2019-05-08 2019-05-08 18:49:05.118267 2019-05-09 16:43:09.665827 2 9 PV2-V-222 2019-06-12 \N f 505 1 3 171 569.00 0.00 0.00 569.00 2 2019-05-08 2019-05-08 21:52:46.544886 2019-05-08 21:53:11.270122 1 9 PV2-V-226 \N \N f 506 1 2 172 479.00 0.00 0.00 479.00 2 2019-05-08 2019-05-08 22:25:00.915045 2019-05-08 22:25:10.931049 1 1 PV1-V-278 \N \N f 507 1 3 171 775.00 124.00 0.00 899.00 2 2019-05-08 2019-05-08 22:27:52.34836 2019-05-08 22:28:18.54074 1 2 PV2-V-227 \N \N f 508 1 2 172 1119.83 179.17 0.00 1299.00 2 2019-05-08 2019-05-08 23:21:46.802674 2019-05-08 23:21:51.04119 1 1 PV1-V-279 \N \N f 509 1 3 171 723.28 115.72 0.00 839.00 2 2019-05-08 2019-05-08 23:36:53.172307 2019-05-08 23:36:56.991787 1 2 PV2-V-228 \N \N f 511 1 2 172 1248.28 199.72 0.00 1448.00 2 2019-05-08 2019-05-08 23:43:00.662531 2019-05-08 23:44:19.591031 1 1 PV1-V-280 \N \N f 512 1 2 172 479.00 0.00 0.00 479.00 2 2019-05-08 2019-05-08 23:48:00.421589 2019-05-08 23:48:50.124691 1 1 PV1-V-281 \N \N f 513 1 2 172 749.14 119.86 0.00 869.00 2 2019-05-08 2019-05-09 00:44:21.261657 2019-05-09 00:44:37.941894 1 1 PV1-V-282 \N \N f 510 88 3 171 516.38 82.62 0.00 599.00 2 2019-05-08 2019-05-08 23:38:38.148606 2019-05-09 00:53:19.697771 2 2 PV2-V-229 2019-06-12 \N f 514 1 2 172 1458.48 89.52 0.00 1548.00 2 2019-05-08 2019-05-09 00:58:41.616808 2019-05-09 01:01:22.222561 1 1 PV1-V-283 \N \N f 515 1 2 172 602.59 96.41 0.00 699.00 2 2019-05-08 2019-05-09 01:08:01.711594 2019-05-09 01:08:06.328464 1 1 PV1-V-284 \N \N f 516 1 2 172 1599.00 0.00 0.00 1599.00 2 2019-05-08 2019-05-09 01:22:05.584253 2019-05-09 01:23:15.325956 1 1 PV1-V-285 \N \N f 517 1 3 171 979.00 0.00 0.00 979.00 2 2019-05-08 2019-05-09 01:35:11.849394 2019-05-09 01:36:07.579362 1 2 PV2-V-230 \N \N f 518 1 3 171 1029.17 68.83 0.00 1098.00 2 2019-05-08 2019-05-09 01:43:45.582409 2019-05-09 01:44:31.357752 1 2 PV2-V-231 \N \N f 519 1 2 173 507.76 81.24 0.00 589.00 2 2019-05-08 2019-05-09 02:05:04.202855 2019-05-09 02:05:10.984466 1 1 PV1-V-286 \N \N f 520 1 2 174 1171.59 96.41 0.00 1268.00 2 2019-05-09 2019-05-09 17:14:58.300647 2019-05-09 17:15:07.165196 1 1 PV1-V-287 \N \N f 521 89 2 174 1199.00 0.00 0.00 1199.00 1 2019-05-09 2019-05-09 17:26:46.324156 2019-05-09 17:27:48.676125 2 1 PV1-V-288 2019-06-13 \N f 523 1 2 174 590.52 94.48 0.00 685.00 2 2019-05-09 2019-05-09 18:04:06.865063 2019-05-09 18:05:23.197341 1 1 PV1-V-290 \N \N f 524 1 3 175 301.72 48.28 0.00 350.00 2 2019-05-09 2019-05-09 18:13:03.478503 2019-05-09 18:13:08.604319 1 4 PV2-V-232 \N \N f 525 1 3 175 899.00 0.00 0.00 899.00 2 2019-05-09 2019-05-09 18:23:48.038516 2019-05-09 18:25:09.281319 1 4 PV2-V-233 \N \N f 526 1 3 175 645.69 103.31 0.00 749.00 2 2019-05-09 2019-05-09 18:30:48.127955 2019-05-09 18:32:12.984314 1 4 PV2-V-234 \N \N f 527 1 3 175 549.00 0.00 0.00 549.00 2 2019-05-09 2019-05-09 18:39:10.957723 2019-05-09 18:39:44.249344 1 4 PV2-V-235 \N \N f 528 1 2 174 430.17 68.83 0.00 499.00 2 2019-05-09 2019-05-09 18:43:39.02831 2019-05-09 18:43:53.839507 1 1 PV1-V-291 \N \N f 530 1 2 174 645.69 103.31 0.00 749.00 2 2019-05-09 2019-05-09 22:54:46.008057 2019-05-09 22:55:05.169275 1 1 PV1-V-292 \N \N f 531 1 10 175 504.31 80.69 0.00 585.00 2 2019-05-09 2019-05-09 22:56:48.737553 2019-05-09 22:57:03.854723 1 2 PV2-V-237 \N \N f 532 1 2 174 662.93 106.07 0.00 769.00 1 2019-05-09 2019-05-09 22:58:40.436837 2019-05-09 23:01:24.176664 1 1 PV1-V-293 \N \N f 533 1 2 174 669.00 0.00 0.00 669.00 2 2019-05-09 2019-05-09 23:02:41.431399 2019-05-09 23:03:01.184692 1 1 PV1-V-294 \N \N f 534 1 2 174 662.93 106.07 0.00 769.00 2 2019-05-09 2019-05-09 23:04:39.246169 2019-05-09 23:04:43.831858 1 1 PV1-V-295 \N \N f 529 90 3 175 2119.86 248.14 0.00 2368.00 2 2019-05-09 2019-05-09 19:44:57.862017 2020-04-29 02:08:04.486252 0 4 PV2-V-236 \N \N f 536 1 3 175 899.00 0.00 0.00 899.00 2 2019-05-09 2019-05-09 23:29:36.303358 2019-05-09 23:29:39.647186 1 2 PV2-V-239 \N \N f 537 1 2 174 602.59 96.41 0.00 699.00 2 2019-05-09 2019-05-10 00:23:05.730823 2019-05-10 00:23:10.41358 1 1 PV1-V-296 \N \N f 538 1 3 175 569.00 0.00 0.00 569.00 2 2019-05-09 2019-05-10 00:25:14.864728 2019-05-10 00:25:18.364388 1 2 PV2-V-240 \N \N f 539 1 2 174 421.55 67.45 0.00 489.00 2 2019-05-09 2019-05-10 00:26:19.189194 2019-05-10 00:26:27.424798 1 1 PV1-V-297 \N \N f 545 93 3 175 969.00 0.00 0.00 969.00 2 2019-05-09 2019-05-10 01:45:14.745139 2019-06-18 20:09:19.540304 2 2 PV2-V-242 2019-06-13 \N f 541 1 3 175 533.62 85.38 0.00 619.00 2 2019-05-09 2019-05-10 00:48:22.810764 2019-05-10 00:48:35.802807 1 2 PV2-V-241 \N \N f 542 1 2 174 1629.17 68.83 0.00 1698.00 2 2019-05-09 2019-05-10 00:54:42.02806 2019-05-10 00:55:17.086749 1 1 PV1-V-299 \N \N f 543 1 2 174 662.93 106.07 0.00 769.00 2 2019-05-09 2019-05-10 01:18:58.481308 2019-05-10 01:19:16.143603 1 1 PV1-V-300 \N \N f 544 1 2 174 645.69 103.31 0.00 749.00 2 2019-05-09 2019-05-10 01:27:17.779164 2019-05-10 01:27:37.234378 1 1 PV1-V-301 \N \N f 565 95 2 178 899.00 0.00 0.00 899.00 2 2019-05-11 2019-05-11 18:39:15.803963 2019-06-20 19:47:34.637943 2 1 PV1-V-311 2019-06-15 \N f 546 1 3 175 42.24 6.76 0.00 49.00 2 2019-05-09 2019-05-10 01:51:29.663945 2019-05-10 01:52:01.524556 1 2 PV2-V-243 \N \N f 547 1 2 174 430.17 68.83 0.00 499.00 2 2019-05-09 2019-05-10 01:57:07.617274 2019-05-10 01:57:16.941289 1 1 PV1-V-302 \N \N f 548 1 3 175 1162.07 185.93 0.00 1348.00 2 2019-05-09 2019-05-10 01:58:43.172439 2019-05-10 01:58:52.497128 1 2 PV2-V-244 \N \N f 549 1 3 175 861.21 137.79 0.00 999.00 2 2019-05-09 2019-05-10 02:13:37.529874 2019-05-10 02:13:51.793273 1 2 PV2-V-245 \N \N f 550 1 3 175 706.03 112.96 0.00 818.99 2 2019-05-09 2019-05-10 02:31:07.300774 2019-05-10 02:31:20.395891 1 2 PV2-V-246 \N \N f 551 1 3 177 490.52 78.48 0.00 569.00 1 2019-05-10 2019-05-10 16:57:05.995325 2019-05-10 17:01:24.429877 1 4 PV2-V-247 \N \N f 552 1 3 177 688.79 110.21 0.00 799.00 2 2019-05-10 2019-05-10 17:02:10.593084 2019-05-10 17:03:33.798084 1 4 PV2-V-248 \N \N f 553 1 2 176 430.17 68.83 0.00 499.00 2 2019-05-10 2019-05-10 17:49:41.688618 2019-05-10 17:49:49.717534 1 1 PV1-V-303 \N \N f 554 1 2 176 490.52 78.48 0.00 569.00 1 2019-05-10 2019-05-10 19:34:29.037779 2019-05-10 19:34:37.421878 1 1 PV1-V-304 \N \N f 557 1 3 177 430.17 68.83 0.00 499.00 2 2019-05-10 2019-05-10 20:16:01.412163 2019-05-10 20:16:08.054252 1 9 PV2-V-250 \N \N f 558 1 3 177 1292.24 206.76 0.00 1499.00 2 2019-05-10 2019-05-10 20:18:51.193803 2019-05-10 20:19:46.392279 1 4 PV2-V-251 \N \N f 559 1 2 176 799.00 0.00 0.00 799.00 2 2019-05-10 2019-05-10 20:40:44.581627 2019-05-10 20:40:59.329915 1 1 PV1-V-306 \N \N f 560 1 2 176 652.45 96.55 49.00 700.00 2 2019-05-10 2019-05-10 20:58:30.787765 2019-05-10 20:59:23.622464 1 1 PV1-V-307 \N \N f 555 94 2 176 490.52 78.48 0.00 569.00 2 2019-05-10 2019-05-10 19:36:28.542697 2019-05-10 21:11:32.579784 2 1 PV1-V-305 2019-06-14 \N f 561 1 3 177 350.00 0.00 350.00 0.00 2 2019-05-10 2019-05-10 21:18:21.801207 2019-05-10 21:18:26.367962 1 4 PV2-V-252 \N \N f 562 1 2 178 586.21 93.79 0.00 680.00 2 2019-05-11 2019-05-11 16:17:18.639031 2019-05-11 16:17:57.235894 1 1 PV1-V-308 \N \N f 563 1 2 178 799.00 0.00 0.00 799.00 2 2019-05-11 2019-05-11 16:33:05.444835 2019-05-11 16:33:36.078897 1 1 PV1-V-309 \N \N f 564 1 2 178 507.76 81.24 0.00 589.00 2 2019-05-11 2019-05-11 17:05:58.975464 2019-05-11 17:07:08.714068 1 1 PV1-V-310 \N \N f 535 91 3 175 688.79 110.21 0.00 799.00 4 2019-05-09 2019-05-09 23:28:00.80375 2019-06-28 20:00:38.487123 2 2 PV2-V-238 2019-06-13 \N f 566 1 3 179 585.95 83.05 66.90 602.10 1 2019-05-11 2019-05-11 19:28:57.52692 2019-05-11 19:29:38.105859 1 4 PV2-V-253 \N \N f 567 1 3 179 586.24 82.76 69.00 600.00 2 2019-05-11 2019-05-11 19:30:03.200064 2019-05-11 19:30:06.312509 1 4 PV2-V-254 \N \N f 556 69 3 177 688.79 110.21 0.00 799.00 1 2019-05-10 2019-05-10 19:53:31.216555 2019-05-20 22:51:04.526088 0 4 PV2-V-249 \N \N f 540 92 2 174 645.69 103.31 0.00 749.00 2 2019-05-09 2019-05-10 00:30:43.515375 2019-05-30 22:35:18.441548 2 1 PV1-V-298 2019-06-13 \N f 522 3 2 174 1808.62 289.37 0.00 2097.99 2 2019-05-09 2019-05-09 18:00:00.529477 2019-09-18 01:24:25.448809 0 3 PV1-V-289 \N \N f 568 1 2 178 489.00 0.00 0.00 489.00 2 2019-05-11 2019-05-11 19:52:20.558608 2019-05-11 19:52:41.456268 1 1 PV1-V-312 \N \N f 569 1 2 178 799.00 0.00 0.00 799.00 2 2019-05-11 2019-05-11 21:04:51.409411 2019-05-11 21:06:00.209055 1 1 PV1-V-313 \N \N f 570 1 3 179 645.69 103.31 0.00 749.00 2 2019-05-11 2019-05-11 22:54:21.50026 2019-05-11 22:54:26.171773 1 2 PV2-V-255 \N \N f 571 1 2 178 1399.00 0.00 0.00 1399.00 2 2019-05-11 2019-05-11 23:14:57.329606 2019-05-11 23:15:03.340691 1 1 PV1-V-314 \N \N f 572 1 2 178 516.38 82.62 0.00 599.00 2 2019-05-11 2019-05-12 00:08:15.471048 2019-05-12 00:08:34.22609 1 1 PV1-V-315 \N \N f 573 1 2 178 430.17 68.83 0.00 499.00 2 2019-05-11 2019-05-12 00:55:14.644839 2019-05-12 00:55:23.971712 1 1 PV1-V-316 \N \N f 574 1 3 179 404.31 64.69 0.00 469.00 2 2019-05-11 2019-05-12 01:04:11.857068 2019-05-12 01:05:05.428121 1 2 PV2-V-256 \N \N f 575 1 3 180 990.52 158.48 0.00 1149.00 2 2019-05-12 2019-05-12 17:30:25.946568 2019-05-12 17:30:43.964808 1 9 PV2-V-257 \N \N f 611 1 3 194 599.00 0.00 0.00 599.00 2 2019-05-19 2019-05-19 19:14:01.452738 2019-05-19 19:14:41.520916 1 9 PV2-V-268 \N \N f 577 1 2 182 1499.00 0.00 0.00 1499.00 2 2019-05-13 2019-05-13 23:47:19.558922 2019-05-13 23:48:25.721184 1 1 PV1-V-318 \N \N f 578 1 10 183 1364.69 103.31 719.00 749.00 2 2019-05-13 2019-05-14 00:23:59.462249 2019-05-14 00:24:18.786973 1 4 PV2-V-258 \N \N f 579 1 2 184 5635.76 365.24 3353.00 2648.00 2 2019-05-14 2019-05-14 16:42:33.238722 2019-05-14 16:42:47.990795 1 3 PV1-V-319 \N \N f 580 1 2 184 1499.00 0.00 0.00 1499.00 2 2019-05-14 2019-05-14 17:32:48.132668 2019-05-14 17:34:48.60363 1 1 PV1-V-320 \N \N f 581 1 3 185 866.23 122.77 98.90 890.10 2 2019-05-14 2019-05-14 18:31:57.520627 2019-05-14 18:32:45.248823 1 2 PV2-V-259 \N \N f 582 1 2 184 430.17 68.83 0.00 499.00 2 2019-05-14 2019-05-14 18:39:39.187431 2019-05-14 18:40:00.993519 1 1 PV1-V-321 \N \N f 583 1 2 184 1287.72 110.28 598.50 799.50 2 2019-05-14 2019-05-14 18:49:07.866513 2019-05-14 18:49:21.190223 1 3 PV1-V-322 \N \N f 607 100 2 193 2588.83 179.17 0.00 2768.00 2 2019-05-18 2019-05-18 21:28:19.213505 2019-06-30 01:19:09.242561 2 1 PV1-V-338 2019-06-22 \N f 610 101 9 195 479.00 0.00 0.00 479.00 2 2019-05-19 2019-05-19 19:01:08.279781 2019-06-08 18:34:01.174798 2 3 PV1-V-341 2019-06-23 \N f 598 1 3 188 1377.59 220.41 0.00 1598.00 2 2019-05-16 2019-05-16 21:52:40.832679 2019-05-16 21:54:33.895257 1 9 PV2-V-265 \N \N f 587 1 3 185 869.00 0.00 0.00 869.00 2 2019-05-14 2019-05-14 23:40:00.272814 2019-05-14 23:40:17.350076 1 2 PV2-V-260 \N \N f 588 1 2 184 479.00 0.00 0.00 479.00 2 2019-05-14 2019-05-15 02:03:10.698367 2019-05-15 02:03:57.392411 1 3 PV1-V-326 \N \N f 589 1 3 186 2998.00 0.00 0.00 2998.00 1 2019-05-15 2019-05-15 16:50:20.306812 2019-05-15 16:53:31.08077 1 9 PV2-V-261 \N \N f 590 1 3 186 3997.00 0.00 0.00 3997.00 2 2019-05-15 2019-05-15 16:55:47.415488 2019-05-15 16:58:11.772509 1 9 PV2-V-262 \N \N f 591 1 2 187 1099.00 0.00 0.00 1099.00 2 2019-05-15 2019-05-15 18:10:18.08528 2019-05-15 18:11:20.239733 1 1 PV1-V-327 \N \N f 592 1 2 187 1198.14 79.86 0.00 1278.00 2 2019-05-15 2019-05-15 21:46:59.029295 2019-05-15 21:48:08.137238 1 1 PV1-V-328 \N \N f 593 1 3 186 1395.00 0.00 0.00 1395.00 2 2019-05-15 2019-05-15 23:02:41.09387 2019-05-15 23:02:44.816034 1 2 PV2-V-263 \N \N f 612 1 9 195 602.59 96.41 0.00 699.00 2 2019-05-19 2019-05-19 19:17:15.196071 2019-05-19 19:18:15.044517 1 10 PV1-V-342 \N \N f 596 1 2 189 479.00 0.00 39.00 440.00 2 2019-05-16 2019-05-16 18:25:18.63886 2019-05-16 18:25:35.786972 1 1 PV1-V-330 \N \N f 597 1 2 189 1299.00 0.00 0.00 1299.00 2 2019-05-16 2019-05-16 19:28:34.749055 2019-05-16 19:29:08.987512 1 1 PV1-V-331 \N \N f 586 75 12 184 899.00 0.00 0.00 899.00 2 2019-05-14 2019-05-14 20:02:13.57299 2019-05-16 19:56:33.236142 2 1 PV1-V-325 2019-06-18 \N f 599 1 2 189 899.00 0.00 0.00 899.00 2 2019-05-16 2019-05-17 00:10:19.872146 2019-05-17 00:10:52.667759 1 1 PV1-V-332 \N \N f 576 96 12 181 1199.00 0.00 0.00 1199.00 2 2019-05-12 2019-05-12 19:37:19.749436 2019-05-17 00:42:51.44951 2 8 PV1-V-317 2019-06-16 \N f 600 1 2 191 404.31 64.69 0.00 469.00 2 2019-05-17 2019-05-17 17:30:37.653369 2019-05-17 17:31:58.110605 1 1 PV1-V-333 \N \N f 601 1 3 190 1249.00 0.00 0.00 1249.00 2 2019-05-17 2019-05-17 18:18:32.358366 2019-05-17 18:18:44.962041 1 9 PV2-V-266 \N \N f 602 1 2 191 1308.00 0.00 0.00 1308.00 2 2019-05-17 2019-05-17 18:29:02.672613 2019-05-17 18:29:32.305444 1 1 PV1-V-334 \N \N f 603 1 2 191 775.00 124.00 0.00 899.00 2 2019-05-17 2019-05-17 18:48:34.382175 2019-05-17 18:49:00.586674 1 1 PV1-V-335 \N \N f 595 99 3 186 507.76 81.24 0.00 589.00 2 2019-05-15 2019-05-16 01:29:05.623429 2019-05-18 00:29:24.760256 2 2 PV2-V-264 2019-06-19 \N f 594 98 2 187 549.00 0.00 0.00 549.00 2 2019-05-15 2019-05-16 01:26:02.12806 2019-05-18 00:31:25.886025 2 1 PV1-V-329 2019-06-19 \N f 604 1 2 191 799.00 0.00 0.00 799.00 2 2019-05-17 2019-05-18 01:10:17.287395 2019-05-18 01:11:15.307138 1 1 PV1-V-336 \N \N f 605 1 2 193 1699.00 0.00 509.00 1190.00 2 2019-05-18 2019-05-18 16:47:10.427156 2019-05-18 16:47:15.411433 1 1 PV1-V-337 \N \N f 606 1 3 192 599.00 0.00 0.00 599.00 2 2019-05-18 2019-05-18 17:45:29.924203 2019-05-18 17:45:56.75744 1 9 PV2-V-267 \N \N f 622 21 10 197 999.00 0.00 0.00 999.00 2 2019-05-20 2019-05-20 23:49:53.974015 2019-07-12 00:09:37.67952 2 11 PV2-V-272 2019-06-24 \N f 608 1 2 193 1399.00 0.00 0.00 1399.00 2 2019-05-18 2019-05-19 00:00:00.496969 2019-05-19 00:00:35.390186 1 10 PV1-V-339 \N \N f 609 1 9 195 949.00 0.00 0.00 949.00 2 2019-05-19 2019-05-19 18:36:44.771015 2019-05-19 18:37:20.470004 1 3 PV1-V-340 \N \N f 584 97 12 184 829.00 0.00 0.00 829.00 2 2019-05-14 2019-05-14 19:56:40.33052 2019-06-14 17:29:33.659433 2 1 PV1-V-323 2019-06-18 \N f 613 1 9 195 904.31 144.69 0.00 1049.00 2 2019-05-19 2019-05-19 19:46:45.269793 2019-05-19 19:47:25.139251 1 10 PV1-V-343 \N \N f 614 1 2 196 645.69 103.31 0.00 749.00 2 2019-05-20 2019-05-20 16:52:11.489817 2019-05-20 16:52:17.453031 1 1 PV1-V-344 \N \N f 615 1 2 196 549.00 0.00 0.00 549.00 2 2019-05-20 2019-05-20 16:55:37.297643 2019-05-20 16:55:42.314073 1 1 PV1-V-345 \N \N f 617 1 2 196 430.17 68.83 0.00 499.00 2 2019-05-20 2019-05-20 22:00:36.437358 2019-05-20 22:00:42.609551 1 1 PV1-V-347 \N \N f 618 1 10 197 1169.00 0.00 0.00 1169.00 2 2019-05-20 2019-05-20 22:13:09.814347 2019-05-20 22:13:17.807567 1 4 PV2-V-269 \N \N f 619 69 10 197 430.17 68.83 0.00 499.00 2 2019-05-20 2019-05-20 22:52:37.849342 2019-05-24 00:45:37.835938 0 4 PV2-V-270 \N \N f 621 1 10 197 489.00 0.00 0.00 489.00 2 2019-05-20 2019-05-20 23:46:43.415455 2019-05-20 23:46:48.694117 1 4 PV2-V-271 \N \N f 616 102 2 196 1399.00 0.00 0.00 1399.00 2 2019-05-20 2019-05-20 19:19:14.916224 2019-07-23 17:26:40.777246 0 3 PV1-V-346 \N \N f 623 1 10 197 430.17 68.83 0.00 499.00 2 2019-05-20 2019-05-21 00:04:45.043135 2019-05-21 00:04:51.638716 1 11 PV2-V-273 \N \N f 631 106 2 198 479.00 0.00 0.00 479.00 2 2019-05-21 2019-05-21 22:46:28.160556 2019-05-26 20:56:40.666849 2 1 PV1-V-353 2019-06-25 \N f 625 1 3 199 533.62 85.38 0.00 619.00 2 2019-05-21 2019-05-21 17:39:39.460866 2019-05-21 17:41:09.375805 1 9 PV2-V-275 \N \N f 626 1 2 198 710.83 88.16 159.80 639.19 2 2019-05-21 2019-05-21 20:45:03.458173 2019-05-21 20:45:18.736249 1 1 PV1-V-349 \N \N f 627 1 2 198 1699.00 0.00 0.00 1699.00 2 2019-05-21 2019-05-21 21:01:15.381651 2019-05-21 21:01:46.468729 1 8 PV1-V-350 \N \N f 629 1 2 198 1299.00 0.00 0.00 1299.00 2 2019-05-21 2019-05-21 21:52:48.300028 2019-05-21 21:53:24.251634 1 1 PV1-V-351 \N \N f 630 1 2 198 699.00 0.00 0.00 699.00 2 2019-05-21 2019-05-21 22:22:48.093978 2019-05-21 22:23:24.214334 1 1 PV1-V-352 \N \N f 585 89 12 184 1199.00 0.00 0.00 1199.00 2 2019-05-14 2019-05-14 20:01:05.789586 2019-06-04 23:35:07.236312 2 1 PV1-V-324 2019-06-18 \N f 620 103 2 196 1399.00 0.00 0.00 1399.00 2 2019-05-20 2019-05-20 23:20:44.806572 2019-05-22 16:51:19.828123 2 1 PV1-V-348 2019-06-24 \N f 628 105 3 199 617.24 82.76 100.00 600.00 4 2019-05-21 2019-05-21 21:18:50.039461 2019-08-03 00:51:33.0159 2 9 PV2-V-276 2019-06-25 \N f 624 104 3 199 1399.00 0.00 0.00 1399.00 2 2019-05-21 2019-05-21 17:19:06.466868 2019-05-25 17:19:51.701173 2 9 PV2-V-274 2019-06-25 \N f 633 1 2 198 1081.59 96.41 0.00 1178.00 2 2019-05-21 2019-05-22 01:59:11.699526 2019-05-22 01:59:19.344737 1 1 PV1-V-354 \N \N f 634 1 2 201 799.00 0.00 0.00 799.00 2 2019-05-22 2019-05-22 19:13:24.049679 2019-05-22 19:13:59.353092 1 8 PV1-V-355 \N \N f 635 1 12 201 1033.62 165.38 0.00 1199.00 2 2019-05-22 2019-05-22 20:01:52.537719 2019-05-22 20:02:13.67309 1 1 PV1-V-356 \N \N f 636 1 3 200 861.21 137.79 0.00 999.00 1 2019-05-22 2019-05-22 21:56:24.511878 2019-05-22 21:58:22.018188 1 2 PV2-V-278 \N \N f 637 1 3 200 861.21 137.79 0.00 999.00 2 2019-05-22 2019-05-22 21:58:39.530279 2019-05-22 21:58:44.89971 1 9 PV2-V-279 \N \N f 638 1 3 200 1169.00 0.00 0.00 1169.00 2 2019-05-22 2019-05-22 22:01:05.645692 2019-05-22 22:01:15.113695 1 9 PV2-V-280 \N \N f 672 114 12 207 2448.00 0.00 0.00 2448.00 2 2019-05-25 2019-05-25 22:38:11.30614 2019-06-09 01:46:11.6872 2 8 PV1-V-373 2019-06-29 \N f 662 1 2 205 489.00 0.00 0.00 489.00 2 2019-05-24 2019-05-24 23:26:54.866002 2019-05-24 23:27:18.203846 1 3 PV1-V-367 \N \N f 641 1 3 200 456.03 72.96 0.00 528.99 2 2019-05-22 2019-05-23 00:46:30.203097 2019-05-23 00:46:49.896026 1 2 PV2-V-283 \N \N f 640 1 3 200 1399.00 0.00 0.00 1399.00 1 2019-05-22 2019-05-23 00:26:25.390481 2019-05-23 00:49:05.481718 1 2 PV2-V-282 \N \N f 642 1 3 200 1119.83 179.17 0.00 1299.00 2 2019-05-22 2019-05-23 00:49:37.010434 2019-05-23 00:49:47.445714 1 2 PV2-V-284 \N \N f 643 109 3 200 1399.00 0.00 0.00 1399.00 1 2019-05-22 2019-05-23 00:51:30.947343 2019-05-23 00:51:35.28134 1 2 PV2-V-285 \N \N f 645 1 9 201 869.00 0.00 0.00 869.00 2 2019-05-22 2019-05-23 01:54:49.517146 2019-05-23 01:55:06.311593 1 3 PV1-V-357 \N \N f 646 1 10 203 799.00 0.00 0.00 799.00 2 2019-05-23 2019-05-23 16:26:23.062422 2019-05-23 16:27:43.960031 1 4 PV2-V-287 \N \N f 647 1 3 203 929.17 68.83 0.00 998.00 1 2019-05-23 2019-05-23 22:46:04.111442 2019-05-23 22:47:07.776707 1 2 PV2-V-288 \N \N f 648 1 3 203 1028.17 68.83 99.00 998.00 2 2019-05-23 2019-05-23 22:49:00.050532 2019-05-23 22:49:04.036814 1 2 PV2-V-289 \N \N f 649 1 2 202 590.52 94.48 0.00 685.00 2 2019-05-23 2019-05-23 23:14:48.509251 2019-05-23 23:15:09.225308 1 1 PV1-V-358 \N \N f 650 1 3 203 598.00 0.00 0.00 598.00 2 2019-05-23 2019-05-23 23:32:37.977403 2019-05-23 23:32:44.948418 1 2 PV2-V-290 \N \N f 651 1 2 202 479.00 0.00 0.00 479.00 2 2019-05-23 2019-05-24 00:07:20.181616 2019-05-24 00:07:34.723585 1 1 PV1-V-359 \N \N f 652 1 2 202 869.00 0.00 0.00 869.00 2 2019-05-23 2019-05-24 00:17:08.493399 2019-05-24 00:17:26.274685 1 1 PV1-V-360 \N \N f 653 1 2 202 404.31 64.69 0.00 469.00 2 2019-05-23 2019-05-24 00:41:47.960832 2019-05-24 00:42:16.007625 1 1 PV1-V-361 \N \N f 654 1 2 202 1249.00 0.00 0.00 1249.00 2 2019-05-23 2019-05-24 00:47:24.34765 2019-05-24 00:48:33.353885 1 1 PV1-V-362 \N \N f 655 1 2 202 599.00 0.00 0.00 599.00 2 2019-05-23 2019-05-24 01:09:54.358171 2019-05-24 01:09:58.232264 1 8 PV1-V-363 \N \N f 656 1 2 202 1042.97 55.04 0.00 1098.01 2 2019-05-23 2019-05-24 01:21:06.848224 2019-05-24 01:21:23.868418 1 1 PV1-V-364 \N \N f 657 1 3 203 799.00 0.00 0.00 799.00 2 2019-05-23 2019-05-24 01:21:44.647609 2019-05-24 01:21:58.400844 1 11 PV2-V-291 \N \N f 658 1 3 204 1119.83 179.17 0.00 1299.00 2 2019-05-24 2019-05-24 18:07:43.600252 2019-05-24 18:08:11.289301 1 2 PV2-V-292 \N \N f 644 109 3 200 1399.00 0.00 0.00 1399.00 4 2019-05-22 2019-05-23 00:51:51.637355 2019-07-14 00:40:35.06926 2 2 PV2-V-286 2019-06-26 \N f 660 1 2 205 662.93 106.07 0.00 769.00 2 2019-05-24 2019-05-24 20:15:03.427359 2019-05-24 20:16:07.4305 1 1 PV1-V-365 \N \N f 661 1 2 205 749.00 0.00 0.00 749.00 2 2019-05-24 2019-05-24 22:51:18.452003 2019-05-24 22:52:13.824508 1 3 PV1-V-366 \N \N f 663 1 3 204 499.00 0.00 0.00 499.00 2 2019-05-24 2019-05-25 00:50:25.495636 2019-05-25 00:50:59.353127 1 2 PV2-V-294 \N \N f 632 107 3 199 723.28 115.72 0.00 839.00 2 2019-05-21 2019-05-22 01:39:06.312133 2019-05-25 00:56:57.979678 2 2 PV2-V-277 2019-06-25 \N f 664 1 2 205 899.00 0.00 0.00 899.00 2 2019-05-24 2019-05-25 01:55:25.524176 2019-05-25 01:55:31.216213 1 1 PV1-V-368 \N \N f 665 1 3 206 404.31 64.69 0.00 469.00 2 2019-05-25 2019-05-25 15:59:55.374951 2019-05-25 15:59:59.081098 1 2 PV2-V-295 \N \N f 666 1 3 206 1399.00 0.00 0.00 1399.00 2 2019-05-25 2019-05-25 17:31:36.083462 2019-05-25 17:32:20.14507 1 2 PV2-V-296 \N \N f 667 1 2 207 699.00 0.00 0.00 699.00 2 2019-05-25 2019-05-25 17:41:57.786124 2019-05-25 17:42:51.403643 1 10 PV1-V-369 \N \N f 668 1 2 207 489.00 0.00 0.00 489.00 2 2019-05-25 2019-05-25 18:37:51.761328 2019-05-25 18:38:37.717381 1 10 PV1-V-370 \N \N f 669 1 2 207 430.17 68.83 0.00 499.00 2 2019-05-25 2019-05-25 19:16:54.640913 2019-05-25 19:17:13.521526 1 10 PV1-V-371 \N \N f 670 1 3 206 688.79 110.21 0.00 799.00 2 2019-05-25 2019-05-25 19:19:14.328017 2019-05-25 19:19:56.880552 1 11 PV2-V-297 \N \N f 671 1 2 207 593.97 95.04 0.00 689.01 2 2019-05-25 2019-05-25 20:49:34.002824 2019-05-25 20:49:43.550182 1 10 PV1-V-372 \N \N f 675 115 12 207 869.00 0.00 0.00 869.00 2 2019-05-25 2019-05-26 00:17:45.768797 2019-06-16 16:07:16.082218 2 10 PV1-V-376 2019-06-29 \N f 673 1 12 207 1799.00 0.00 539.70 1259.30 2 2019-05-25 2019-05-25 22:42:27.403911 2019-05-25 22:42:31.47814 1 8 PV1-V-374 \N \N f 674 115 12 207 869.00 0.00 0.00 869.00 1 2019-05-25 2019-05-26 00:15:52.967384 2019-05-26 00:17:01.240305 1 10 PV1-V-375 \N \N f 659 110 3 204 1599.00 0.00 0.00 1599.00 2 2019-05-24 2019-05-24 20:01:52.467522 2019-06-25 23:15:41.540649 2 2 PV2-V-293 2019-06-28 \N f 676 1 12 207 869.00 0.00 0.00 869.00 2 2019-05-25 2019-05-26 00:37:56.718637 2019-05-26 00:38:17.569067 1 8 PV1-V-377 \N \N f 677 1 3 206 2318.83 179.17 0.00 2498.00 2 2019-05-25 2019-05-26 01:10:21.312818 2019-05-26 01:10:56.218234 1 9 PV2-V-298 \N \N f 678 1 12 209 1099.00 0.00 0.00 1099.00 2 2019-05-26 2019-05-26 18:35:24.690849 2019-05-26 18:35:31.043897 1 8 PV1-V-378 \N \N f 679 1 3 208 969.00 0.00 0.00 969.00 2 2019-05-26 2019-05-26 18:47:37.022183 2019-05-26 18:47:52.603393 1 9 PV2-V-299 \N \N f 680 1 3 208 889.00 0.00 0.00 889.00 2 2019-05-26 2019-05-26 20:24:44.013985 2019-05-26 20:24:50.693182 1 9 PV2-V-300 \N \N f 639 108 3 200 1395.00 0.00 0.00 1395.00 2 2019-05-22 2019-05-22 23:18:57.959076 2019-06-07 00:38:36.470418 2 2 PV2-V-281 2019-06-26 \N f 683 1 2 210 749.00 0.00 0.00 749.00 2 2019-05-27 2019-05-27 18:27:35.889654 2019-05-27 18:27:40.597796 1 1 PV1-V-381 \N \N f 684 1 2 210 772.59 96.41 170.00 699.00 2 2019-05-27 2019-05-27 21:45:47.638875 2019-05-27 21:45:52.441155 1 1 PV1-V-382 \N \N f 682 117 2 210 799.00 0.00 0.00 799.00 2 2019-05-27 2019-05-27 18:18:21.972957 2019-05-27 23:21:37.444289 2 1 PV1-V-380 2019-07-01 \N f 685 1 2 210 479.00 0.00 0.00 479.00 2 2019-05-27 2019-05-27 23:22:52.449388 2019-05-27 23:23:04.891742 1 1 PV1-V-383 \N \N f 686 1 2 210 899.00 0.00 0.00 899.00 2 2019-05-27 2019-05-27 23:38:33.029956 2019-05-27 23:39:08.36123 1 1 PV1-V-384 \N \N f 687 1 2 212 775.00 124.00 0.00 899.00 1 2019-05-28 2019-05-28 18:50:06.943793 2019-05-28 19:38:18.779151 1 10 PV1-V-385 \N \N f 688 1 2 212 775.00 124.00 0.00 899.00 2 2019-05-28 2019-05-28 19:38:56.342518 2019-05-28 19:39:10.240134 1 1 PV1-V-386 \N \N f 689 1 2 212 489.00 0.00 0.00 489.00 2 2019-05-28 2019-05-28 23:46:45.478031 2019-05-28 23:46:57.827515 1 3 PV1-V-387 \N \N f 690 1 3 211 1599.00 0.00 0.00 1599.00 2 2019-05-28 2019-05-29 00:20:47.801546 2019-05-29 00:20:56.811505 1 2 PV2-V-301 \N \N f 691 1 2 212 1068.10 170.90 0.00 1239.00 2 2019-05-28 2019-05-29 01:36:53.498541 2019-05-29 01:38:10.890402 1 3 PV1-V-388 \N \N f 692 1 3 215 669.00 0.00 0.00 669.00 2 2019-05-30 2019-05-30 19:35:56.965039 2019-05-30 19:36:00.830504 1 2 PV2-V-302 \N \N f 693 1 2 216 1421.55 227.45 0.00 1649.00 2 2019-05-30 2019-05-30 21:09:22.47573 2019-05-30 21:10:51.157662 1 10 PV1-V-389 \N \N f 694 1 2 216 869.00 0.00 0.00 869.00 2 2019-05-30 2019-05-31 00:22:41.755631 2019-05-31 00:22:55.369857 1 3 PV1-V-390 \N \N f 695 118 2 216 1206.03 192.96 0.00 1398.99 1 2019-05-30 2019-05-31 00:46:53.721871 2019-05-31 00:51:19.760119 2 1 PV1-V-391 2019-07-04 \N f 681 116 2 210 869.00 0.00 0.00 869.00 2 2019-05-27 2019-05-27 17:47:01.691706 2019-06-01 01:13:38.180027 2 1 PV1-V-379 2019-07-01 \N f 697 119 2 216 1955.17 312.82 0.00 2267.99 1 2019-05-30 2019-05-31 01:25:36.781999 2019-05-31 01:25:49.546682 1 3 PV1-V-393 \N \N f 753 1 2 250 699.00 0.00 0.00 699.00 2 2019-06-17 2019-06-17 20:50:15.844205 2019-06-17 20:51:03.558402 1 1 PV1-V-426 \N \N f 699 1 2 217 430.17 68.83 0.00 499.00 2 2019-05-31 2019-05-31 16:55:12.182143 2019-05-31 16:55:47.651767 1 1 PV1-V-395 \N \N f 708 121 3 220 1599.00 0.00 0.00 1599.00 2 2019-06-01 2019-06-01 21:54:46.736769 2019-06-29 22:39:29.129148 2 2 PV2-V-307 2019-07-06 \N f 701 1 2 217 1899.00 0.00 569.00 1330.00 2 2019-05-31 2019-05-31 19:40:08.599953 2019-05-31 19:40:41.975098 1 1 PV1-V-397 \N \N f 702 1 3 218 645.69 103.31 0.00 749.00 2 2019-05-31 2019-05-31 22:52:16.231934 2019-05-31 22:52:27.237474 1 2 PV2-V-303 \N \N f 703 1 3 218 609.00 0.00 0.00 609.00 2 2019-05-31 2019-05-31 23:32:31.299153 2019-05-31 23:33:23.273901 1 2 PV2-V-304 \N \N f 704 1 3 218 1399.00 0.00 0.00 1399.00 2 2019-05-31 2019-06-01 00:58:52.381979 2019-06-01 01:01:14.210657 1 2 PV2-V-305 \N \N f 705 1 9 217 576.72 92.28 0.00 669.00 2 2019-05-31 2019-06-01 01:21:01.509666 2019-06-01 01:21:28.413884 1 3 PV1-V-398 \N \N f 706 1 3 220 1199.00 0.00 0.00 1199.00 2 2019-06-01 2019-06-01 19:12:49.427115 2019-06-01 19:13:40.096534 1 2 PV2-V-306 \N \N f 707 1 2 219 1249.00 0.00 0.00 1249.00 2 2019-06-01 2019-06-01 21:49:18.678938 2019-06-01 21:50:37.987136 1 10 PV1-V-399 \N \N f 731 125 2 241 1392.00 0.00 0.00 1392.00 2 2019-06-12 2019-06-12 22:26:55.79853 2019-07-05 21:51:42.502028 2 1 PV1-V-413 2019-07-17 \N f 709 1 3 221 430.17 68.83 0.00 499.00 2 2019-06-02 2019-06-02 18:13:21.665073 2019-06-02 18:19:10.002725 1 9 PV2-V-308 \N \N f 710 1 3 221 599.00 0.00 0.00 599.00 2 2019-06-02 2019-06-02 18:58:53.707196 2019-06-02 18:59:25.593428 1 9 PV2-V-309 \N \N f 711 1 2 222 489.00 0.00 0.00 489.00 2 2019-06-03 2019-06-03 18:35:05.14732 2019-06-03 18:36:34.241277 1 1 PV1-V-400 \N \N f 713 1 3 224 1199.00 0.00 0.00 1199.00 2 2019-06-04 2019-06-04 20:48:55.139928 2019-06-04 20:49:32.532279 1 9 PV2-V-310 \N \N f 714 1 2 225 1499.00 0.00 449.00 1050.00 2 2019-06-04 2019-06-04 21:33:23.685347 2019-06-04 21:33:35.850031 1 1 PV1-V-402 \N \N f 715 1 2 228 749.00 0.00 0.00 749.00 2 2019-06-06 2019-06-06 16:42:53.599992 2019-06-06 16:49:47.059132 1 1 PV1-V-403 \N \N f 716 1 2 228 799.00 0.00 0.00 799.00 2 2019-06-06 2019-06-06 20:02:11.681167 2019-06-06 20:02:16.731274 1 1 PV1-V-404 \N \N f 717 33 2 228 457.76 41.24 200.00 299.00 2 2019-06-06 2019-06-06 22:04:51.865689 2019-06-06 22:05:05.120589 1 3 PV1-V-405 \N \N f 718 1 2 228 645.69 103.31 0.00 749.00 2 2019-06-06 2019-06-06 22:21:50.501513 2019-06-06 22:21:58.328603 1 1 PV1-V-406 \N \N f 720 1 3 231 702.59 96.41 100.00 699.00 2 2019-06-08 2019-06-08 17:37:20.625647 2019-06-08 17:37:49.221865 1 11 PV2-V-311 \N \N f 721 1 3 231 211.21 33.79 0.00 245.00 2 2019-06-08 2019-06-08 22:23:47.823736 2019-06-08 22:23:56.016903 1 9 PV2-V-312 \N \N f 722 1 3 231 1118.97 179.03 0.00 1298.00 2 2019-06-08 2019-06-08 22:50:17.679007 2019-06-08 22:50:27.309216 1 9 PV2-V-313 \N \N f 723 1 3 231 473.28 75.72 0.00 549.00 2 2019-06-08 2019-06-09 01:48:59.963327 2019-06-09 01:49:04.997139 1 9 PV2-V-314 \N \N f 724 1 3 234 1599.00 0.00 0.00 1599.00 2 2019-06-09 2019-06-09 20:45:23.77771 2019-06-09 20:46:06.546248 1 9 PV2-V-315 \N \N f 725 1 2 235 1499.00 0.00 0.00 1499.00 2 2019-06-09 2019-06-09 20:48:01.389282 2019-06-09 20:48:50.947772 1 10 PV1-V-408 \N \N f 719 123 2 228 979.00 0.00 0.00 979.00 2 2019-06-06 2019-06-07 01:13:40.387785 2019-06-10 22:15:25.374318 2 1 PV1-V-407 2019-07-11 \N f 750 129 2 246 549.00 0.00 0.00 549.00 4 2019-06-15 2019-06-15 21:13:05.614771 2019-11-06 21:58:09.540737 2 1 PV1-V-423 2019-07-20 \N f 727 1 2 236 1249.00 0.00 0.00 1249.00 2 2019-06-10 2019-06-11 01:39:37.263699 2019-06-11 01:40:03.0749 1 3 PV1-V-410 \N \N f 728 1 2 239 829.00 0.00 0.00 829.00 2 2019-06-11 2019-06-11 17:16:35.1734 2019-06-11 17:18:25.691231 1 1 PV1-V-411 \N \N f 729 1 3 238 1599.00 0.00 0.00 1599.00 2 2019-06-11 2019-06-11 18:04:33.106004 2019-06-11 18:05:08.688805 1 9 PV2-V-316 \N \N f 730 1 2 239 1099.00 0.00 0.00 1099.00 2 2019-06-11 2019-06-11 23:17:22.784414 2019-06-11 23:17:50.7918 1 3 PV1-V-412 \N \N f 712 122 2 222 869.00 0.00 0.00 869.00 2 2019-06-03 2019-06-03 21:17:54.248658 2019-07-13 20:19:47.969546 0 3 PV1-V-401 \N \N f 732 1 2 243 577.28 71.72 129.00 520.00 2 2019-06-13 2019-06-13 16:51:48.358924 2019-06-13 16:52:54.454022 1 1 PV1-V-414 \N \N f 733 1 2 243 1249.00 0.00 0.00 1249.00 2 2019-06-13 2019-06-13 18:42:20.489993 2019-06-13 18:42:52.517783 1 1 PV1-V-415 \N \N f 734 1 2 243 861.21 137.79 0.00 999.00 2 2019-06-13 2019-06-13 19:52:30.667699 2019-06-13 19:53:04.508957 1 8 PV1-V-416 \N \N f 735 1 3 242 602.59 96.41 0.00 699.00 2 2019-06-13 2019-06-13 20:05:17.999394 2019-06-13 20:06:26.6482 1 9 PV2-V-317 \N \N f 737 1 2 243 593.97 95.04 0.00 689.01 2 2019-06-13 2019-06-13 20:09:42.851394 2019-06-13 20:10:03.537347 1 8 PV1-V-418 \N \N f 736 1 2 243 593.97 95.04 0.00 689.01 1 2019-06-13 2019-06-13 20:07:50.704298 2019-06-13 20:12:00.161815 1 8 PV1-V-417 \N \N f 738 1 10 242 99.00 0.00 0.00 99.00 2 2019-06-13 2019-06-14 01:22:33.751528 2019-06-14 01:23:43.45016 1 4 PV2-V-318 \N \N f 739 1 10 242 99.00 0.00 0.00 99.00 2 2019-06-13 2019-06-14 01:26:46.860816 2019-06-14 01:26:51.294208 1 4 PV2-V-319 \N \N f 740 1 3 244 1395.00 0.00 0.00 1395.00 2 2019-06-14 2019-06-14 17:08:40.417941 2019-06-14 17:08:48.503691 1 9 PV2-V-320 \N \N f 741 1 2 245 949.00 0.00 0.00 949.00 2 2019-06-14 2019-06-14 19:07:02.571566 2019-06-14 19:07:35.764847 1 8 PV1-V-419 \N \N f 726 124 2 236 861.21 137.79 0.00 999.00 4 2019-06-10 2019-06-11 00:27:58.416427 2019-09-10 21:48:00.175273 2 10 PV1-V-409 2019-07-15 \N f 742 1 2 246 1199.00 0.00 0.00 1199.00 2 2019-06-15 2019-06-15 16:53:13.850308 2019-06-15 16:53:29.466242 1 1 PV1-V-420 \N \N f 743 1 3 247 978.00 0.00 0.00 978.00 2 2019-06-15 2019-06-15 19:34:53.853206 2019-06-15 19:35:10.34026 1 9 PV2-V-321 \N \N f 744 1 3 247 516.38 82.62 0.00 599.00 2 2019-06-15 2019-06-15 20:03:18.078838 2019-06-15 20:03:22.072643 1 9 PV2-V-322 \N \N f 745 1 2 246 599.00 0.00 0.00 599.00 2 2019-06-15 2019-06-15 20:13:49.119165 2019-06-15 20:15:41.82247 1 1 PV1-V-421 \N \N f 746 1 2 246 949.00 0.00 0.00 949.00 2 2019-06-15 2019-06-15 20:22:17.934137 2019-06-15 20:22:21.957532 1 1 PV1-V-422 \N \N f 698 119 2 216 1955.17 312.82 0.00 2267.99 2 2019-05-30 2019-05-31 01:26:18.382894 2019-06-16 00:53:11.933817 2 3 PV1-V-394 2019-07-04 \N f 751 1 2 246 1106.90 177.10 0.00 1284.00 2 2019-06-15 2019-06-15 22:13:31.078131 2019-06-15 22:13:52.015977 1 1 PV1-V-424 \N \N f 748 127 3 247 1395.00 0.00 0.00 1395.00 1 2019-06-15 2019-06-15 20:28:32.893449 2019-06-15 20:33:15.369867 1 9 PV2-V-324 \N \N f 752 1 2 246 749.14 119.86 0.00 869.00 2 2019-06-15 2019-06-15 22:22:52.418742 2019-06-15 22:23:05.129822 1 1 PV1-V-425 \N \N f 747 126 3 247 1395.00 0.00 0.00 1395.00 1 2019-06-15 2019-06-15 20:25:02.96191 2019-06-15 22:33:13.841466 1 9 PV2-V-323 \N \N f 754 1 2 253 1444.69 103.31 0.00 1548.00 2 2019-06-18 2019-06-18 18:08:49.737834 2019-06-18 18:09:22.818272 1 1 PV1-V-427 \N \N f 755 1 2 253 1068.10 170.90 0.00 1239.00 2 2019-06-18 2019-06-18 19:54:40.032698 2019-06-18 19:55:16.071163 1 1 PV1-V-428 \N \N f 696 118 2 216 1206.03 192.96 0.00 1398.99 2 2019-05-30 2019-05-31 00:52:18.841818 2019-06-18 20:22:17.69532 2 1 PV1-V-392 2019-07-04 \N f 756 1 3 252 516.38 82.62 0.00 599.00 1 2019-06-18 2019-06-18 21:03:40.533251 2019-06-18 21:05:08.175498 1 9 PV2-V-326 \N \N f 757 1 3 252 516.38 82.62 0.00 599.00 2 2019-06-18 2019-06-18 21:05:31.892744 2019-06-18 21:05:36.481033 1 9 PV2-V-327 \N \N f 749 128 3 247 1395.00 0.00 0.00 1395.00 2 2019-06-15 2019-06-15 20:34:18.712294 2019-06-18 21:33:43.631811 2 9 PV2-V-325 2019-07-20 \N f 758 130 2 253 1498.00 0.00 0.00 1498.00 1 2019-06-18 2019-06-18 22:40:03.495599 2019-06-18 22:40:43.577765 2 8 PV1-V-429 2019-07-23 \N f 759 130 2 253 749.00 0.00 0.00 749.00 1 2019-06-18 2019-06-18 22:41:34.474969 2019-06-18 22:42:55.248438 2 1 PV1-V-430 2019-07-23 \N f 700 120 2 217 1299.00 0.00 0.00 1299.00 2 2019-05-31 2019-05-31 19:02:54.395581 2019-06-21 20:34:37.635367 2 1 PV1-V-396 2019-07-05 \N f 761 1 2 255 404.31 64.69 0.00 469.00 2 2019-06-19 2019-06-19 20:42:58.14633 2019-06-19 20:44:08.154746 1 1 PV1-V-432 \N \N f 762 1 3 254 430.17 68.83 0.00 499.00 2 2019-06-19 2019-06-19 20:55:44.811507 2019-06-19 20:55:49.297366 1 2 PV2-V-328 \N \N f 763 1 12 255 599.00 0.00 0.00 599.00 2 2019-06-19 2019-06-19 23:00:17.865629 2019-06-19 23:00:22.842808 1 1 PV1-V-433 \N \N f 764 1 3 254 599.00 0.00 0.00 599.00 2 2019-06-19 2019-06-19 23:56:15.985654 2019-06-19 23:56:24.302946 1 9 PV2-V-329 \N \N f 765 1 12 255 421.55 67.45 0.00 489.00 2 2019-06-19 2019-06-19 23:59:11.770089 2019-06-19 23:59:15.113101 1 8 PV1-V-434 \N \N f 766 1 3 256 688.79 110.21 0.00 799.00 2 2019-06-20 2019-06-20 20:06:11.160508 2019-06-20 20:06:47.021351 1 9 PV2-V-330 \N \N f 767 1 3 256 1116.24 82.76 100.00 1099.00 2 2019-06-20 2019-06-20 22:13:45.621889 2019-06-20 22:13:49.167774 1 2 PV2-V-331 \N \N f 768 1 12 257 1299.00 0.00 0.00 1299.00 2 2019-06-20 2019-06-20 23:21:53.963935 2019-06-20 23:22:12.714784 1 1 PV1-V-435 \N \N f 769 1 3 256 699.00 0.00 0.00 699.00 2 2019-06-20 2019-06-20 23:25:09.048798 2019-06-20 23:25:17.729214 1 2 PV2-V-332 \N \N f 784 133 3 260 1119.83 179.17 0.00 1299.00 2 2019-06-22 2019-06-22 20:11:26.932738 2019-07-27 01:17:08.910551 2 9 PV2-V-341 2019-07-27 \N f 771 1 12 257 1099.00 0.00 0.00 1099.00 2 2019-06-20 2019-06-21 00:28:19.7604 2019-06-21 00:28:28.0397 1 1 PV1-V-436 \N \N f 760 130 2 253 749.00 0.00 0.00 749.00 2 2019-06-18 2019-06-18 22:44:03.599569 2019-06-21 00:54:37.729731 2 8 PV1-V-431 2019-07-23 \N f 773 1 3 256 1129.17 68.83 0.00 1198.00 2 2019-06-20 2019-06-21 01:46:35.33962 2019-06-21 01:48:32.295985 1 4 PV2-V-334 \N \N f 789 135 2 270 671.55 107.45 0.00 779.00 1 2019-06-27 2019-06-27 16:37:31.702711 2019-06-27 16:52:02.403149 2 1 PV1-V-444 2019-08-01 \N f 774 1 12 259 1199.00 0.00 0.00 1199.00 1 2019-06-21 2019-06-21 17:04:10.544073 2019-06-21 17:05:08.220413 1 1 PV1-V-438 \N \N f 775 1 12 259 1199.00 0.00 0.00 1199.00 2 2019-06-21 2019-06-21 17:05:48.54769 2019-06-21 17:05:54.530997 1 8 PV1-V-439 \N \N f 776 1 12 259 689.00 0.00 0.00 689.00 2 2019-06-21 2019-06-21 18:12:12.324473 2019-06-21 18:12:15.904025 1 8 PV1-V-440 \N \N f 777 1 3 258 301.72 48.28 0.00 350.00 2 2019-06-21 2019-06-21 19:33:13.912569 2019-06-21 19:33:35.516036 1 9 PV2-V-335 \N \N f 778 1 3 258 1005.38 82.62 0.00 1088.00 2 2019-06-21 2019-06-21 20:01:38.632331 2019-06-21 20:02:10.603123 1 9 PV2-V-336 \N \N f 779 1 3 258 645.69 103.31 0.00 749.00 2 2019-06-21 2019-06-21 21:42:11.989297 2019-06-21 21:42:26.166982 1 9 PV2-V-337 \N \N f 780 1 3 260 430.17 68.83 0.00 499.00 2 2019-06-22 2019-06-22 16:44:33.457652 2019-06-22 16:45:02.90318 1 9 PV2-V-338 \N \N f 781 1 2 261 1582.62 165.38 0.00 1748.00 2 2019-06-22 2019-06-22 17:32:58.594594 2019-06-22 17:33:05.232555 1 1 PV1-V-441 \N \N f 782 1 3 260 2213.38 82.62 0.00 2296.00 2 2019-06-22 2019-06-22 19:30:31.17951 2019-06-22 19:31:31.022664 1 9 PV2-V-339 \N \N f 783 1 3 260 1199.00 0.00 0.00 1199.00 2 2019-06-22 2019-06-22 20:09:13.293675 2019-06-22 20:09:31.319624 1 9 PV2-V-340 \N \N f 817 122 3 282 839.52 78.48 0.00 918.00 2 2019-07-03 2019-07-03 21:11:46.290085 2019-07-31 19:46:15.335614 0 9 PV2-V-357 \N \N f 785 1 2 261 857.37 91.63 284.70 664.30 2 2019-06-22 2019-06-22 21:00:16.962926 2019-06-22 21:00:30.19072 1 1 PV1-V-442 \N \N f 786 1 3 260 602.59 96.41 0.00 699.00 2 2019-06-22 2019-06-22 21:57:56.310169 2019-06-22 21:58:01.287304 1 9 PV2-V-342 \N \N f 801 137 12 276 1099.00 0.00 0.00 1099.00 2 2019-06-30 2019-06-30 18:40:31.342411 2019-08-22 01:13:42.458996 2 8 PV1-V-451 2019-08-04 \N f 788 1 2 267 1199.00 0.00 0.00 1199.00 2 2019-06-25 2019-06-25 19:03:08.30538 2019-06-25 19:03:15.731341 1 1 PV1-V-443 \N \N f 790 1 2 270 692.79 86.21 154.00 625.00 2 2019-06-27 2019-06-27 16:59:05.53937 2019-06-27 16:59:10.97313 1 1 PV1-V-445 \N \N f 804 1 2 277 568.10 90.90 0.00 659.00 2 2019-07-01 2019-07-01 23:22:53.357617 2019-07-01 23:23:43.865218 1 8 PV1-V-454 \N \N f 791 1 3 268 645.69 103.31 0.00 749.00 1 2019-06-27 2019-06-27 17:44:47.186875 2019-06-27 17:45:23.315488 1 9 PV2-V-344 \N \N f 792 1 2 270 1249.00 0.00 0.00 1249.00 2 2019-06-27 2019-06-27 18:04:40.981288 2019-06-27 18:05:01.986639 1 1 PV1-V-446 \N \N f 793 1 3 268 489.00 0.00 0.00 489.00 2 2019-06-27 2019-06-28 01:03:46.30287 2019-06-28 01:03:50.564392 1 4 PV2-V-345 \N \N f 794 1 3 271 1119.83 179.17 0.00 1299.00 2 2019-06-28 2019-06-28 23:30:28.09307 2019-06-28 23:31:39.861843 1 9 PV2-V-346 \N \N f 795 1 2 273 749.00 0.00 0.00 749.00 2 2019-06-29 2019-06-29 17:46:44.3021 2019-06-29 17:47:42.488976 1 1 PV1-V-447 \N \N f 796 1 2 273 443.83 55.17 99.00 400.00 2 2019-06-29 2019-06-29 19:43:43.881949 2019-06-29 19:43:48.208555 1 1 PV1-V-448 \N \N f 797 1 3 274 1245.72 92.28 0.00 1338.00 2 2019-06-29 2019-06-29 21:41:33.087274 2019-06-29 21:41:44.266264 1 9 PV2-V-347 \N \N f 799 1 3 274 749.14 119.86 0.00 869.00 2 2019-06-29 2019-06-29 23:44:26.563684 2019-06-29 23:44:48.3013 1 9 PV2-V-348 \N \N f 800 1 2 273 1399.00 0.00 0.00 1399.00 2 2019-06-29 2019-06-29 23:58:51.675634 2019-06-29 23:59:36.583428 1 1 PV1-V-450 \N \N f 808 138 9 280 3549.86 248.14 0.00 3798.00 2 2019-07-02 2019-07-02 22:35:22.445289 2020-04-29 01:46:30.661853 0 3 PV1-V-457 \N \N f 802 1 2 277 479.00 0.00 0.00 479.00 2 2019-07-01 2019-07-01 18:16:22.990248 2019-07-01 18:16:33.427171 1 3 PV1-V-452 \N \N f 803 1 2 277 1399.00 0.00 0.00 1399.00 2 2019-07-01 2019-07-01 20:03:16.165562 2019-07-01 20:03:29.421676 1 1 PV1-V-453 \N \N f 805 1 12 277 576.72 92.28 0.00 669.00 2 2019-07-01 2019-07-02 01:28:42.426315 2019-07-02 01:28:55.398113 1 8 PV1-V-455 \N \N f 806 1 12 277 1299.00 0.00 0.00 1299.00 2 2019-07-01 2019-07-02 01:38:51.577133 2019-07-02 01:39:21.621225 1 8 PV1-V-456 \N \N f 807 1 3 279 1354.27 144.73 449.70 1049.30 2 2019-07-02 2019-07-02 22:28:42.37371 2019-07-02 22:28:58.017414 1 4 PV2-V-349 \N \N f 809 1 10 279 349.00 0.00 0.00 349.00 2 2019-07-02 2019-07-02 22:39:44.816692 2019-07-02 22:40:24.284263 1 4 PV2-V-350 \N \N f 810 1 12 280 1199.00 0.00 0.00 1199.00 2 2019-07-02 2019-07-02 22:56:53.079386 2019-07-02 22:57:51.211716 1 1 PV1-V-458 \N \N f 811 1 10 279 869.00 0.00 0.00 869.00 2 2019-07-02 2019-07-03 00:04:14.840201 2019-07-03 00:05:02.361312 1 4 PV2-V-351 \N \N f 812 1 10 279 866.38 122.62 100.00 889.00 2 2019-07-02 2019-07-03 00:44:01.451766 2019-07-03 00:44:11.363636 1 4 PV2-V-352 \N \N f 813 1 10 281 1212.93 194.07 0.00 1407.00 2 2019-07-02 2019-07-03 02:11:55.37852 2019-07-03 02:12:50.39246 1 4 PV2-V-353 \N \N f 814 1 3 282 593.97 95.04 0.00 689.01 2 2019-07-03 2019-07-03 18:00:42.815305 2019-07-03 18:01:21.456556 1 9 PV2-V-354 \N \N f 815 122 3 282 839.52 78.48 0.00 918.00 1 2019-07-03 2019-07-03 21:06:51.936357 2019-07-03 21:07:49.419127 1 9 PV2-V-355 \N \N f 816 122 3 282 839.52 78.48 0.00 918.00 1 2019-07-03 2019-07-03 21:09:52.010336 2019-07-03 21:11:09.487892 1 9 PV2-V-356 \N \N f 798 136 2 273 1894.83 303.17 0.00 2198.00 2 2019-06-29 2019-06-29 22:43:07.723173 2019-07-04 00:14:26.813795 2 1 PV1-V-449 2019-08-03 \N f 818 1 2 284 904.31 144.69 0.00 1049.00 2 2019-07-04 2019-07-04 17:31:54.477787 2019-07-04 17:32:04.078016 1 1 PV1-V-459 \N \N f 770 131 3 256 645.69 103.31 0.00 749.00 2 2019-06-20 2019-06-21 00:10:43.417054 2019-07-19 21:09:36.402889 2 11 PV2-V-333 2019-07-25 \N f 820 1 2 284 1340.21 137.79 0.00 1478.00 2 2019-07-04 2019-07-04 19:50:27.639025 2019-07-04 19:52:41.578416 1 1 PV1-V-461 \N \N f 821 1 12 284 1550.86 248.14 0.00 1799.00 2 2019-07-04 2019-07-05 00:32:54.991549 2019-07-05 00:34:37.463531 1 8 PV1-V-462 \N \N f 822 1 3 288 775.00 124.00 0.00 899.00 2 2019-07-05 2019-07-05 17:18:38.095362 2019-07-05 17:18:57.689116 1 9 PV2-V-358 \N \N f 772 132 2 257 1349.00 0.00 0.00 1349.00 2 2019-06-20 2019-06-21 01:28:49.598202 2020-09-15 22:04:43.469958 0 1 PV1-V-437 \N \N f 819 139 2 284 1399.00 0.00 0.00 1399.00 2 2019-07-04 2019-07-04 17:41:21.294643 2019-07-17 21:39:27.662241 2 1 PV1-V-460 2019-08-08 \N f 787 134 3 266 549.00 0.00 0.00 549.00 2 2019-06-25 2019-06-25 18:50:35.974271 2019-08-04 00:12:52.317392 2 9 PV2-V-343 2019-07-30 \N f 823 1 2 287 507.76 81.24 0.00 589.00 2 2019-07-05 2019-07-05 18:18:45.891848 2019-07-05 18:18:51.945134 1 1 PV1-V-463 \N \N f 824 1 2 287 669.00 0.00 0.00 669.00 2 2019-07-05 2019-07-06 00:48:16.877614 2019-07-06 00:49:07.997292 1 1 PV1-V-464 \N \N f 825 1 2 287 787.28 111.72 89.00 810.00 2 2019-07-05 2019-07-06 00:58:49.908607 2019-07-06 00:59:05.45608 1 1 PV1-V-465 \N \N f 826 1 2 290 812.10 86.90 269.00 630.00 2 2019-07-06 2019-07-07 00:30:44.14491 2019-07-07 00:30:48.767434 1 1 PV1-V-466 \N \N f 827 1 10 294 1169.00 0.00 0.00 1169.00 2 2019-07-08 2019-07-08 17:25:29.391393 2019-07-08 17:25:48.720308 1 4 PV2-V-359 \N \N f 878 122 2 320 599.00 0.00 0.00 599.00 2 2019-07-22 2019-07-22 20:05:39.943986 2019-12-11 00:24:43.160933 0 3 PV1-V-501 \N \N f 829 1 2 295 1699.00 0.00 509.00 1190.00 2 2019-07-09 2019-07-09 20:19:36.838955 2019-07-09 20:20:30.923912 1 1 PV1-V-468 \N \N f 830 1 3 296 516.38 82.62 0.00 599.00 2 2019-07-09 2019-07-09 21:29:10.955567 2019-07-09 21:29:20.175826 1 9 PV2-V-360 \N \N f 831 1 12 295 1378.45 220.55 0.00 1599.00 2 2019-07-09 2019-07-10 00:23:11.006625 2019-07-10 00:23:27.498121 1 8 PV1-V-469 \N \N f 832 1 2 298 799.00 0.00 0.00 799.00 2 2019-07-10 2019-07-10 22:55:22.199661 2019-07-10 22:56:01.890418 1 8 PV1-V-470 \N \N f 834 142 2 301 1399.00 0.00 0.00 1399.00 2 2019-07-12 2019-07-12 22:25:51.286826 2019-07-12 22:26:43.124331 1 1 PV1-V-472 \N \N f 835 1 2 301 843.97 135.04 0.00 979.01 2 2019-07-12 2019-07-13 00:50:42.237522 2019-07-13 00:50:54.297863 1 1 PV1-V-473 \N \N f 837 1 3 304 516.38 82.62 0.00 599.00 2 2019-07-13 2019-07-13 23:49:50.806364 2019-07-13 23:51:34.663384 1 9 PV2-V-361 \N \N f 838 1 2 303 539.00 60.00 164.00 435.00 2 2019-07-13 2019-07-13 23:55:38.960671 2019-07-13 23:55:59.364409 1 1 PV1-V-475 \N \N f 839 1 3 304 430.17 68.83 0.00 499.00 2 2019-07-13 2019-07-14 00:06:23.609099 2019-07-14 00:06:34.461491 1 9 PV2-V-362 \N \N f 840 1 2 303 387.07 61.93 0.00 449.00 2 2019-07-13 2019-07-14 00:06:58.494718 2019-07-14 00:07:03.458382 1 10 PV1-V-476 \N \N f 833 141 2 301 949.00 0.00 0.00 949.00 2 2019-07-12 2019-07-12 18:01:31.866286 2019-07-14 00:46:54.347501 2 1 PV1-V-471 2019-08-16 \N f 841 1 3 307 1298.00 0.00 0.00 1298.00 2 2019-07-15 2019-07-15 18:37:37.848892 2019-07-15 18:37:57.831433 1 2 PV2-V-363 \N \N f 842 1 3 307 1499.00 0.00 0.00 1499.00 2 2019-07-15 2019-07-15 23:50:54.592486 2019-07-15 23:51:07.113649 1 2 PV2-V-364 \N \N f 843 113 2 306 2398.00 0.00 0.00 2398.00 1 2019-07-15 2019-07-16 00:52:32.988073 2019-07-16 00:52:43.363267 1 1 PV1-V-477 \N \N f 854 1 9 310 549.00 0.00 0.00 549.00 2 2019-07-17 2019-07-18 01:19:13.931852 2019-07-18 01:19:21.536821 1 1 PV1-V-486 \N \N f 845 1 2 309 1299.00 0.00 0.00 1299.00 2 2019-07-16 2019-07-16 20:55:04.878193 2019-07-16 20:55:10.161516 1 1 PV1-V-479 \N \N f 846 1 2 310 649.00 0.00 0.00 649.00 2 2019-07-17 2019-07-17 16:45:44.735016 2019-07-17 16:45:50.975024 1 1 PV1-V-480 \N \N f 847 1 2 310 699.00 0.00 0.00 699.00 2 2019-07-17 2019-07-17 19:13:37.923088 2019-07-17 19:13:47.718363 1 1 PV1-V-481 \N \N f 848 1 2 310 457.62 41.38 199.00 300.00 2 2019-07-17 2019-07-17 19:35:16.969194 2019-07-17 19:35:26.203587 1 1 PV1-V-482 \N \N f 849 1 2 310 861.21 137.79 0.00 999.00 2 2019-07-17 2019-07-17 19:57:17.541383 2019-07-17 19:57:22.155259 1 10 PV1-V-483 \N \N f 850 1 3 311 1299.00 0.00 0.00 1299.00 2 2019-07-17 2019-07-17 19:57:42.680764 2019-07-17 19:58:06.103039 1 2 PV2-V-365 \N \N f 851 1 3 311 1549.00 0.00 0.00 1549.00 2 2019-07-17 2019-07-17 20:10:42.13986 2019-07-17 20:10:48.089832 1 2 PV2-V-366 \N \N f 852 1 2 310 699.00 0.00 0.00 699.00 2 2019-07-17 2019-07-17 21:53:04.297007 2019-07-17 21:53:10.0138 1 10 PV1-V-484 \N \N f 853 1 2 310 699.00 0.00 0.00 699.00 2 2019-07-17 2019-07-17 22:20:00.673093 2019-07-17 22:20:10.453286 1 1 PV1-V-485 \N \N f 844 113 2 306 2398.00 0.00 0.00 2398.00 2 2019-07-15 2019-07-16 00:53:48.556228 2019-07-18 01:18:15.748903 2 1 PV1-V-478 2019-08-19 \N f 855 1 10 311 430.17 68.83 0.00 499.00 2 2019-07-17 2019-07-18 01:24:20.571844 2019-07-18 01:24:30.525973 1 11 PV2-V-367 \N \N f 856 1 9 310 749.00 0.00 0.00 749.00 2 2019-07-17 2019-07-18 01:34:44.129752 2019-07-18 01:36:32.371002 1 1 PV1-V-487 \N \N f 857 1 2 315 549.00 0.00 0.00 549.00 2 2019-07-19 2019-07-19 19:34:31.859015 2019-07-19 19:34:37.928269 1 1 PV1-V-488 \N \N f 858 1 3 314 649.00 0.00 0.00 649.00 1 2019-07-19 2019-07-19 19:39:52.595712 2019-07-19 19:41:44.529861 1 9 PV2-V-368 \N \N f 859 1 3 314 1009.48 38.52 119.70 928.30 1 2019-07-19 2019-07-19 19:43:11.897886 2019-07-19 19:45:50.106989 1 9 PV2-V-369 \N \N f 860 1 3 314 1009.38 38.62 119.00 929.00 2 2019-07-19 2019-07-19 19:46:50.480036 2019-07-19 19:46:54.192681 1 9 PV2-V-370 \N \N f 861 1 2 315 1199.00 0.00 0.00 1199.00 2 2019-07-19 2019-07-19 21:01:37.74364 2019-07-19 21:01:59.25302 1 1 PV1-V-489 \N \N f 862 1 3 316 404.31 64.69 0.00 469.00 2 2019-07-20 2019-07-20 16:29:58.276444 2019-07-20 16:30:37.348948 1 9 PV2-V-371 \N \N f 863 1 2 317 1299.00 0.00 0.00 1299.00 2 2019-07-20 2019-07-20 17:30:16.122586 2019-07-20 17:30:29.370264 1 1 PV1-V-490 \N \N f 864 1 3 316 576.72 92.28 0.00 669.00 2 2019-07-20 2019-07-20 17:57:41.896435 2019-07-20 17:57:45.614714 1 9 PV2-V-372 \N \N f 865 143 2 317 2273.86 172.15 0.00 2446.01 2 2019-07-20 2019-07-20 18:29:13.36941 2019-07-20 18:30:08.268502 1 1 PV1-V-491 \N \N f 866 1 2 317 1299.00 0.00 0.00 1299.00 2 2019-07-20 2019-07-20 19:04:54.910562 2019-07-20 19:05:41.113426 1 1 PV1-V-492 \N \N f 867 1 3 316 360.52 38.48 120.00 279.00 2 2019-07-20 2019-07-20 19:19:51.453024 2019-07-20 19:19:55.14921 1 9 PV2-V-373 \N \N f 877 145 2 320 1699.00 0.00 0.00 1699.00 2 2019-07-22 2019-07-22 18:02:35.322982 2019-12-02 23:49:36.802796 2 3 PV1-V-500 2019-08-26 \N f 869 1 3 316 669.00 0.00 0.00 669.00 2 2019-07-20 2019-07-21 01:01:41.860749 2019-07-21 01:02:30.056506 1 9 PV2-V-374 \N \N f 875 144 2 318 1299.00 0.00 0.00 1299.00 2 2019-07-21 2019-07-21 20:07:55.183693 2019-08-30 17:18:24.548284 2 8 PV1-V-498 2019-08-25 \N f 871 1 12 318 699.00 0.00 0.00 699.00 2 2019-07-21 2019-07-21 16:42:07.09444 2019-07-21 16:42:24.23348 1 8 PV1-V-495 \N \N f 872 1 3 319 499.14 79.86 0.00 579.00 2 2019-07-21 2019-07-21 19:01:24.044629 2019-07-21 19:01:53.853575 1 9 PV2-V-375 \N \N f 873 1 12 318 602.59 96.41 0.00 699.00 2 2019-07-21 2019-07-21 19:12:59.632828 2019-07-21 19:13:03.85286 1 8 PV1-V-496 \N \N f 874 1 12 318 443.94 55.06 99.80 399.20 2 2019-07-21 2019-07-21 19:23:30.553768 2019-07-21 19:23:35.717324 1 8 PV1-V-497 \N \N f 868 21 2 317 1199.00 0.00 0.00 1199.00 2 2019-07-20 2019-07-20 23:14:41.233063 2019-09-12 23:33:50.698582 2 1 PV1-V-493 2019-08-24 \N f 876 1 12 318 699.00 0.00 0.00 699.00 2 2019-07-21 2019-07-21 21:03:41.94264 2019-07-21 21:03:53.92064 1 8 PV1-V-499 \N \N f 836 122 2 303 1464.66 234.35 0.00 1699.01 2 2019-07-13 2019-07-13 20:18:30.778711 2019-12-11 00:24:43.14057 0 3 PV1-V-474 \N \N f 879 1 10 321 298.00 0.00 0.00 298.00 2 2019-07-22 2019-07-22 23:38:13.20865 2019-07-22 23:38:17.974089 1 2 PV2-V-376 \N \N f 880 1 10 321 301.72 48.28 0.00 350.00 2 2019-07-22 2019-07-23 00:18:32.946088 2019-07-23 00:18:36.915887 1 4 PV2-V-377 \N \N f 881 1 2 320 328.31 40.69 74.00 295.00 2 2019-07-22 2019-07-23 01:29:35.339853 2019-07-23 01:29:42.636447 1 8 PV1-V-502 \N \N f 882 1 3 322 1149.00 0.00 0.00 1149.00 2 2019-07-23 2019-07-23 20:00:20.95129 2019-07-23 20:00:26.107081 1 9 PV2-V-378 \N \N f 883 1 2 323 1299.00 0.00 0.00 1299.00 2 2019-07-23 2019-07-23 20:05:01.474771 2019-07-23 20:05:41.633218 1 1 PV1-V-503 \N \N f 884 146 2 323 1799.00 0.00 0.00 1799.00 2 2019-07-23 2019-07-23 20:50:45.387802 2019-07-23 20:51:23.350873 1 1 PV1-V-504 \N \N f 885 1 3 322 607.62 41.38 349.00 300.00 2 2019-07-23 2019-07-23 23:50:32.986029 2019-07-23 23:50:51.869466 1 4 PV2-V-379 \N \N f 886 1 2 325 1199.00 0.00 0.00 1199.00 2 2019-07-24 2019-07-24 16:22:22.546853 2019-07-24 16:22:26.618779 1 1 PV1-V-505 \N \N f 828 140 2 293 1599.00 0.00 0.00 1599.00 2 2019-07-08 2019-07-08 20:12:41.995298 2019-07-27 16:09:16.866236 2 1 PV1-V-467 2019-08-12 \N f 870 100 2 317 1498.00 0.00 0.00 1498.00 2 2019-07-20 2019-07-21 01:12:20.677451 2019-08-24 22:36:39.674557 2 1 PV1-V-494 2019-08-24 \N f 887 1 2 325 1868.00 0.00 0.00 1868.00 2 2019-07-24 2019-07-24 18:26:50.617178 2019-07-24 18:27:48.895274 1 1 PV1-V-506 \N \N f 888 1 3 324 999.00 0.00 0.00 999.00 2 2019-07-24 2019-07-25 00:05:04.080408 2019-07-25 00:05:16.712057 1 4 PV2-V-380 \N \N f 916 1 2 336 1299.00 0.00 0.00 1299.00 2 2019-07-30 2019-07-30 20:31:36.838425 2019-07-30 20:32:49.087761 1 1 PV1-V-527 \N \N f 891 1 10 324 559.48 89.52 0.00 649.00 2 2019-07-24 2019-07-25 01:41:26.391345 2019-07-25 01:41:46.016351 1 4 PV2-V-381 \N \N f 892 1 2 327 899.00 0.00 0.00 899.00 2 2019-07-25 2019-07-25 18:07:04.172765 2019-07-25 18:07:11.345895 1 1 PV1-V-509 \N \N f 893 1 2 327 1248.00 0.00 0.00 1248.00 2 2019-07-25 2019-07-25 18:36:30.729021 2019-07-25 18:36:46.328672 1 1 PV1-V-510 \N \N f 890 148 12 325 1248.00 0.00 0.00 1248.00 2 2019-07-24 2019-07-25 00:43:02.561772 2019-07-25 19:39:45.058549 2 8 PV1-V-508 2019-08-28 \N f 894 1 2 327 2559.31 340.69 430.00 2470.00 1 2019-07-25 2019-07-25 19:36:26.324328 2019-07-25 19:43:51.425117 1 1 PV1-V-511 \N \N f 895 1 2 327 2559.31 340.69 430.00 2470.00 2 2019-07-25 2019-07-25 19:44:28.780113 2019-07-25 19:44:33.500613 1 8 PV1-V-512 \N \N f 896 1 10 326 577.39 71.61 129.80 519.20 2 2019-07-25 2019-07-26 01:49:56.820881 2019-07-26 01:50:02.464072 1 4 PV2-V-382 \N \N f 917 1 2 336 649.00 0.00 0.00 649.00 2 2019-07-30 2019-07-30 20:47:22.533568 2019-07-30 20:47:26.593822 1 1 PV1-V-528 \N \N f 897 1 12 329 659.00 0.00 0.00 659.00 1 2019-07-26 2019-07-26 21:03:54.165987 2019-07-26 21:18:51.145428 1 1 PV1-V-513 \N \N f 898 1 12 329 659.00 0.00 0.00 659.00 2 2019-07-26 2019-07-26 21:19:56.920029 2019-07-26 21:20:11.681834 1 1 PV1-V-514 \N \N f 899 1 12 329 1318.00 0.00 0.00 1318.00 2 2019-07-26 2019-07-26 21:29:03.312067 2019-07-26 21:29:07.411103 1 8 PV1-V-515 \N \N f 900 1 2 329 1099.00 0.00 0.00 1099.00 2 2019-07-26 2019-07-26 21:59:07.190063 2019-07-26 22:00:42.291715 1 1 PV1-V-516 \N \N f 950 155 2 357 899.00 0.00 0.00 899.00 2 2019-08-10 2019-08-11 01:03:21.331473 2019-08-24 20:15:56.696396 2 1 PV1-V-549 2019-09-14 \N f 902 1 2 329 1399.00 0.00 0.00 1399.00 2 2019-07-26 2019-07-26 23:01:28.057439 2019-07-26 23:01:32.395287 1 8 PV1-V-518 \N \N f 903 1 2 329 689.00 0.00 0.00 689.00 2 2019-07-26 2019-07-27 00:54:56.236378 2019-07-27 00:55:10.36483 1 8 PV1-V-519 \N \N f 904 1 2 330 669.00 0.00 0.00 669.00 2 2019-07-27 2019-07-27 18:44:15.192882 2019-07-27 18:44:27.603307 1 3 PV1-V-520 \N \N f 905 1 3 331 404.31 64.69 0.00 469.00 2 2019-07-27 2019-07-27 19:28:00.051348 2019-07-27 19:28:06.037834 1 9 PV2-V-383 \N \N f 906 1 3 331 479.00 0.00 0.00 479.00 2 2019-07-27 2019-07-27 19:30:48.545669 2019-07-27 19:31:09.364547 1 9 PV2-V-384 \N \N f 907 1 2 330 599.00 0.00 0.00 599.00 2 2019-07-27 2019-07-27 19:42:52.033858 2019-07-27 19:44:28.760554 1 1 PV1-V-521 \N \N f 931 134 3 343 449.00 0.00 224.50 224.50 1 2019-08-03 2019-08-04 00:18:36.936275 2019-08-04 00:18:58.128956 2 11 PV2-V-393 2019-09-07 \N f 909 1 3 331 628.45 100.55 0.00 729.00 2 2019-07-27 2019-07-27 22:37:35.228874 2019-07-27 22:38:18.278483 1 9 PV2-V-385 \N \N f 910 1 2 330 991.24 86.76 0.00 1078.00 2 2019-07-27 2019-07-27 23:36:38.811239 2019-07-27 23:36:48.90312 1 1 PV1-V-523 \N \N f 912 1 3 331 999.00 0.00 0.00 999.00 2 2019-07-27 2019-07-28 00:25:54.269318 2019-07-28 00:26:31.997087 1 9 PV2-V-386 \N \N f 911 1 2 330 489.00 0.00 0.00 489.00 1 2019-07-27 2019-07-28 00:20:35.845789 2019-07-28 01:01:00.829106 1 1 PV1-V-524 \N \N f 913 1 2 330 489.00 0.00 0.00 489.00 2 2019-07-27 2019-07-28 01:01:26.364147 2019-07-28 01:01:33.417049 1 1 PV1-V-525 \N \N f 914 1 2 333 499.00 0.00 0.00 499.00 2 2019-07-28 2019-07-28 19:09:33.81979 2019-07-28 19:10:12.313557 1 8 PV1-V-526 \N \N f 915 1 3 335 799.00 0.00 0.00 799.00 2 2019-07-30 2019-07-30 18:03:02.308081 2019-07-30 18:03:06.815646 1 9 PV2-V-387 \N \N f 918 1 10 335 404.31 64.69 0.00 469.00 2 2019-07-30 2019-07-31 00:41:53.61468 2019-07-31 00:41:59.630328 1 4 PV2-V-388 \N \N f 889 147 12 325 1198.00 0.00 0.00 1198.00 2 2019-07-24 2019-07-25 00:31:00.152347 2019-07-31 18:56:37.424943 2 8 PV1-V-507 2019-08-28 \N f 919 1 3 337 628.45 100.55 0.00 729.00 2 2019-07-31 2019-07-31 23:22:28.519904 2019-07-31 23:22:42.772769 1 2 PV2-V-389 \N \N f 920 1 2 338 1399.00 0.00 0.00 1399.00 1 2019-07-31 2019-08-01 01:22:13.05814 2019-08-01 01:23:32.21192 1 1 PV1-V-529 \N \N f 921 1 2 338 1399.00 0.00 0.00 1399.00 2 2019-07-31 2019-08-01 01:25:14.62365 2019-08-01 01:25:35.082758 1 1 PV1-V-530 \N \N f 922 1 3 337 576.72 92.28 0.00 669.00 2 2019-07-31 2019-08-01 01:35:47.199235 2019-08-01 01:35:53.182813 1 2 PV2-V-390 \N \N f 923 1 3 339 999.00 0.00 0.00 999.00 2 2019-08-01 2019-08-01 17:46:57.917348 2019-08-01 17:48:06.931689 1 11 PV2-V-391 \N \N f 908 150 2 330 1399.00 0.00 0.00 1399.00 2 2019-07-27 2019-07-27 19:54:10.942402 2019-08-01 23:26:04.006117 2 1 PV1-V-522 2019-08-31 \N f 924 151 2 340 1119.83 179.17 0.00 1299.00 1 2019-08-01 2019-08-01 23:52:36.242454 2019-08-01 23:52:45.992637 1 8 PV1-V-531 \N \N f 935 134 3 343 449.00 0.00 0.00 449.00 2 2019-08-03 2019-08-04 01:11:08.717478 2019-09-10 23:06:49.219162 2 9 PV2-V-395 2019-09-07 \N f 926 1 2 341 699.00 0.00 0.00 699.00 2 2019-08-02 2019-08-03 00:25:19.51058 2019-08-03 00:25:25.176884 1 8 PV1-V-533 \N \N f 927 1 2 341 999.00 0.00 0.00 999.00 2 2019-08-02 2019-08-03 00:40:55.597427 2019-08-03 00:41:54.945442 1 1 PV1-V-534 \N \N f 928 1 2 344 999.00 0.00 0.00 999.00 2 2019-08-03 2019-08-03 17:01:48.392714 2019-08-03 17:01:56.546024 1 1 PV1-V-535 \N \N f 929 1 3 343 602.59 96.41 0.00 699.00 2 2019-08-03 2019-08-03 18:38:44.330448 2019-08-03 18:39:25.867394 1 11 PV2-V-392 \N \N f 930 1 2 344 1270.00 0.00 0.00 1270.00 2 2019-08-03 2019-08-03 19:07:40.473208 2019-08-03 19:07:53.785323 1 1 PV1-V-536 \N \N f 932 1 2 344 999.00 0.00 0.00 999.00 2 2019-08-03 2019-08-04 00:56:42.277553 2019-08-04 01:01:03.316675 1 1 PV1-V-537 \N \N f 933 1 2 344 775.00 124.00 0.00 899.00 2 2019-08-03 2019-08-04 01:03:00.50474 2019-08-04 01:03:40.321738 1 1 PV1-V-538 \N \N f 934 1 3 343 829.00 0.00 0.00 829.00 2 2019-08-03 2019-08-04 01:05:17.226499 2019-08-04 01:05:56.801983 1 9 PV2-V-394 \N \N f 945 154 2 352 1568.00 0.00 0.00 1568.00 2 2019-08-08 2019-08-08 21:54:38.998359 2019-09-28 16:26:54.735619 2 1 PV1-V-545 2019-09-12 \N f 936 1 3 343 489.00 0.00 0.00 489.00 2 2019-08-03 2019-08-04 01:15:18.419203 2019-08-04 01:15:43.873104 1 9 PV2-V-396 \N \N f 937 1 2 347 464.52 34.48 249.00 250.00 2 2019-08-05 2019-08-05 16:26:26.234813 2019-08-05 16:26:30.919288 1 1 PV1-V-539 \N \N f 938 1 2 347 1119.83 179.17 0.00 1299.00 1 2019-08-05 2019-08-05 23:27:16.712419 2019-08-05 23:30:33.760066 1 1 PV1-V-540 \N \N f 939 1 2 347 1119.83 179.17 0.00 1299.00 2 2019-08-05 2019-08-05 23:31:10.605585 2019-08-05 23:31:40.155176 1 8 PV1-V-541 \N \N f 940 1 2 347 699.00 0.00 0.00 699.00 2 2019-08-05 2019-08-06 01:05:19.882184 2019-08-06 01:05:57.721201 1 8 PV1-V-542 \N \N f 941 1 3 348 559.48 89.52 0.00 649.00 2 2019-08-06 2019-08-06 20:04:16.161376 2019-08-06 20:04:52.853726 1 11 PV2-V-397 \N \N f 943 153 9 350 599.00 0.00 0.00 599.00 2 2019-08-07 2019-08-08 00:12:02.535736 2019-08-09 22:03:00.85514 2 8 PV1-V-543 2019-09-11 \N f 944 1 2 352 569.00 0.00 0.00 569.00 2 2019-08-08 2019-08-08 21:02:07.318266 2019-08-08 21:06:44.304996 1 1 PV1-V-544 \N \N f 948 144 2 357 869.00 0.00 0.00 869.00 2 2019-08-10 2019-08-10 19:47:29.406306 2019-10-02 22:14:39.001825 2 1 PV1-V-547 2019-09-14 \N f 946 1 3 354 599.00 0.00 0.00 599.00 2 2019-08-09 2019-08-09 19:00:33.411508 2019-08-09 19:01:34.256875 1 11 PV2-V-399 \N \N f 942 152 3 351 599.00 0.00 0.00 599.00 2 2019-08-07 2019-08-07 23:56:50.934854 2019-08-09 22:01:29.423858 2 2 PV2-V-398 2019-09-11 \N f 947 1 2 355 2268.00 0.00 0.00 2268.00 2 2019-08-09 2019-08-10 00:29:33.148515 2019-08-10 00:30:10.826825 1 1 PV1-V-546 \N \N f 949 1 2 357 1099.00 0.00 0.00 1099.00 2 2019-08-10 2019-08-10 23:12:19.627016 2019-08-10 23:12:29.573691 1 1 PV1-V-548 \N \N f 925 151 2 340 1119.83 179.17 0.00 1299.00 2 2019-08-01 2019-08-01 23:53:09.380664 2019-08-31 23:31:13.131768 2 8 PV1-V-532 2019-09-05 \N f 901 149 2 329 559.48 89.52 0.00 649.00 2 2019-07-26 2019-07-26 22:54:03.44738 2019-08-21 23:18:30.691538 2 8 PV1-V-517 2019-08-30 \N f 951 1 2 357 631.03 100.96 0.00 731.99 2 2019-08-10 2019-08-11 01:07:00.914477 2019-08-11 01:08:11.16531 1 1 PV1-V-550 \N \N f 952 1 2 358 790.45 58.55 424.50 424.50 1 2019-08-11 2019-08-11 16:31:36.172615 2019-08-11 16:31:41.022468 1 10 PV1-V-551 \N \N f 953 1 2 358 2173.14 223.86 774.00 1623.00 2 2019-08-11 2019-08-11 16:35:30.879806 2019-08-11 16:36:14.587884 1 10 PV1-V-552 \N \N f 954 1 3 360 549.00 0.00 0.00 549.00 2 2019-08-12 2019-08-12 20:15:51.509706 2019-08-12 20:16:40.289333 1 9 PV2-V-400 \N \N f 955 1 2 361 2283.59 52.41 99.00 2237.00 2 2019-08-13 2019-08-13 19:03:10.017305 2019-08-13 19:04:08.125727 1 1 PV1-V-553 \N \N f 956 1 3 362 829.00 0.00 0.00 829.00 2 2019-08-13 2019-08-14 01:04:17.420568 2019-08-14 01:05:22.604406 1 9 PV2-V-401 \N \N f 957 1 3 363 1637.07 261.93 0.00 1899.00 2 2019-08-14 2019-08-14 18:14:38.856859 2019-08-14 18:14:54.646473 1 9 PV2-V-402 \N \N f 958 1 3 363 1099.00 0.00 0.00 1099.00 2 2019-08-14 2019-08-14 20:50:05.793249 2019-08-14 20:50:24.412742 1 9 PV2-V-403 \N \N f 959 1 3 363 990.52 158.48 0.00 1149.00 2 2019-08-14 2019-08-14 21:12:43.870846 2019-08-14 21:15:57.787381 1 9 PV2-V-404 \N \N f 960 1 3 363 449.00 0.00 0.00 449.00 2 2019-08-14 2019-08-14 22:24:57.1794 2019-08-14 22:25:01.74098 1 9 PV2-V-405 \N \N f 961 1 2 364 699.00 0.00 0.00 699.00 2 2019-08-14 2019-08-14 22:32:35.837524 2019-08-14 22:34:08.344083 1 1 PV1-V-554 \N \N f 962 1 2 366 699.00 0.00 139.00 560.00 2 2019-08-15 2019-08-15 18:40:30.949338 2019-08-15 18:40:42.189839 1 1 PV1-V-555 \N \N f 963 1 2 366 430.17 68.83 0.00 499.00 2 2019-08-15 2019-08-15 20:40:13.540103 2019-08-15 20:41:09.079693 1 1 PV1-V-556 \N \N f 964 1 2 367 669.00 0.00 0.00 669.00 2 2019-08-16 2019-08-16 20:01:27.845601 2019-08-16 20:05:27.959007 1 1 PV1-V-557 \N \N f 966 1 2 367 945.03 72.96 0.00 1017.99 2 2019-08-16 2019-08-17 01:03:35.879113 2019-08-17 01:03:45.37036 1 1 PV1-V-559 \N \N f 967 1 2 370 380.72 28.28 204.00 205.00 2 2019-08-17 2019-08-17 21:02:14.313243 2019-08-17 21:02:19.030004 1 1 PV1-V-560 \N \N f 968 1 2 370 1358.00 0.00 0.00 1358.00 2 2019-08-17 2019-08-17 21:16:33.734173 2019-08-17 21:19:09.308135 1 1 PV1-V-561 \N \N f 969 1 2 370 1185.38 82.62 0.00 1268.00 2 2019-08-17 2019-08-17 22:08:17.630288 2019-08-17 22:10:13.904484 1 1 PV1-V-562 \N \N f 970 1 2 370 1119.83 179.17 0.00 1299.00 2 2019-08-17 2019-08-17 22:38:11.855533 2019-08-17 22:38:53.111269 1 1 PV1-V-563 \N \N f 971 1 2 371 999.00 0.00 0.00 999.00 2 2019-08-18 2019-08-18 19:16:41.90441 2019-08-18 19:17:54.696109 1 10 PV1-V-564 \N \N f 980 137 2 375 579.00 0.00 0.00 579.00 2 2019-08-21 2019-08-22 01:18:36.554571 2019-10-20 20:41:47.777202 2 1 PV1-V-569 2019-09-25 \N f 972 156 9 372 490.52 78.48 0.00 569.00 2 2019-08-19 2019-08-19 18:04:33.93024 2019-10-17 17:42:03.303432 2 3 PV1-V-565 2019-09-23 \N f 974 1 2 372 631.03 100.96 0.00 731.99 2 2019-08-19 2019-08-19 18:44:50.235087 2019-08-19 18:45:32.667362 1 1 PV1-V-565 \N \N f 975 1 3 373 999.00 0.00 0.00 999.00 2 2019-08-19 2019-08-20 00:51:52.204391 2019-08-20 00:51:59.437611 1 11 PV2-V-407 \N \N f 976 1 10 374 542.16 76.84 61.90 557.10 2 2019-08-20 2019-08-21 00:26:49.019694 2019-08-21 00:27:28.146386 1 4 PV2-V-408 \N \N f 977 1 3 376 829.00 0.00 0.00 829.00 2 2019-08-21 2019-08-21 17:59:43.552236 2019-08-21 18:00:35.094621 1 9 PV2-V-409 \N \N f 978 1 2 375 456.03 72.96 0.00 528.99 2 2019-08-21 2019-08-21 20:10:13.155789 2019-08-21 20:10:26.279578 1 1 PV1-V-567 \N \N f 979 1 2 375 869.00 0.00 0.00 869.00 2 2019-08-21 2019-08-21 23:39:42.867359 2019-08-21 23:39:48.784454 1 1 PV1-V-568 \N \N f 1012 160 20 396 569.00 0.00 0.00 569.00 4 2019-08-31 2019-08-31 21:58:00.562194 2019-11-08 01:03:51.850717 2 9 PV2-V-425 2019-10-05 \N f 981 1 9 377 999.00 0.00 0.00 999.00 2 2019-08-22 2019-08-22 17:11:30.798172 2019-08-22 17:11:37.189367 1 3 PV1-V-570 \N \N f 995 1 18 387 699.00 0.00 0.00 699.00 2 2019-08-27 2019-08-28 04:02:24.037243 2019-08-28 04:02:30.589206 1 12 PV3-V-1 \N \N f 983 1 2 377 489.00 0.00 0.00 489.00 2 2019-08-22 2019-08-22 22:34:25.65184 2019-08-22 22:34:32.730114 1 1 PV1-V-572 \N \N f 982 1 9 377 639.00 0.00 0.00 639.00 1 2019-08-22 2019-08-22 21:43:36.528901 2019-08-22 22:57:45.474868 1 10 PV1-V-571 \N \N f 984 1 3 378 639.00 0.00 0.00 639.00 2 2019-08-22 2019-08-22 22:59:21.948543 2019-08-22 22:59:26.469591 1 9 PV2-V-410 \N \N f 985 157 3 379 1799.00 0.00 0.00 1799.00 1 2019-08-23 2019-08-23 18:35:25.770828 2019-08-23 18:36:53.985369 2 9 PV2-V-411 2019-09-27 \N f 1002 159 18 394 1399.00 0.00 0.00 1399.00 2 2019-08-30 2019-08-31 03:53:28.044883 2019-09-21 20:13:02.816281 2 12 PV3-V-3 2019-10-04 \N f 986 157 3 379 1799.00 0.00 0.00 1799.00 2 2019-08-23 2019-08-23 18:37:21.582122 2019-09-14 18:02:33.743114 2 11 PV2-V-412 2019-09-27 \N f 988 1 3 381 1299.00 0.00 0.00 1299.00 2 2019-08-24 2019-08-24 16:43:21.82377 2019-08-24 16:43:45.406988 1 9 PV2-V-413 \N \N f 989 1 3 381 430.17 68.83 0.00 499.00 2 2019-08-24 2019-08-24 17:28:47.219458 2019-08-24 17:28:51.554938 1 9 PV2-V-414 \N \N f 990 1 3 381 42.24 6.76 0.00 49.00 2 2019-08-24 2019-08-24 23:46:57.312112 2019-08-24 23:47:03.429953 1 9 PV2-V-415 \N \N f 991 1 3 381 42.24 6.76 0.00 49.00 2 2019-08-24 2019-08-24 23:50:19.955118 2019-08-24 23:50:23.777192 1 9 PV2-V-416 \N \N f 992 1 2 382 421.55 67.45 0.00 489.00 1 2019-08-24 2019-08-25 00:50:57.071718 2019-08-25 00:56:10.44246 1 1 PV1-V-574 \N \N f 993 1 2 382 421.55 67.45 0.00 489.00 2 2019-08-24 2019-08-25 00:56:38.490687 2019-08-25 00:57:59.158258 1 1 PV1-V-575 \N \N f 994 1 2 384 699.00 0.00 0.00 699.00 2 2019-08-26 2019-08-26 18:38:41.158512 2019-08-26 18:39:06.167552 1 1 PV1-V-576 \N \N f 996 1 10 388 1398.00 0.00 0.00 1398.00 2 2019-08-28 2019-08-29 00:12:00.32408 2019-08-29 00:12:24.016328 1 9 PV2-V-417 \N \N f 997 1 10 390 1070.55 67.45 0.00 1138.00 2 2019-08-29 2019-08-30 01:07:28.796908 2019-08-30 01:07:49.198868 1 4 PV2-V-418 \N \N f 998 1 2 393 869.00 0.00 0.00 869.00 2 2019-08-30 2019-08-30 17:04:54.606565 2019-08-30 17:05:53.787101 1 1 PV1-V-577 \N \N f 999 1 2 393 699.00 0.00 0.00 699.00 2 2019-08-30 2019-08-30 22:41:06.692932 2019-08-30 22:41:12.466737 1 1 PV1-V-578 \N \N f 1000 1 10 392 1398.00 0.00 0.00 1398.00 2 2019-08-30 2019-08-30 23:41:59.24241 2019-08-30 23:42:48.099949 1 4 PV2-V-419 \N \N f 973 156 3 373 617.24 82.76 100.00 600.00 2 2019-08-19 2019-08-19 18:06:19.638688 2019-10-17 17:41:13.806651 2 4 PV2-V-406 2019-09-23 \N f 1001 158 18 394 1398.00 0.00 0.00 1398.00 2 2019-08-30 2019-08-31 03:44:55.909206 2019-09-27 01:11:14.360399 2 12 PV3-V-2 2019-10-04 \N f 1004 1 20 396 84.48 13.52 0.00 98.00 2 2019-08-31 2019-08-31 16:54:53.521748 2019-08-31 16:55:02.802744 1 9 PV2-V-421 \N \N f 1003 1 3 396 619.00 0.00 0.00 619.00 1 2019-08-31 2019-08-31 16:53:44.021779 2019-08-31 17:05:21.959997 1 9 PV2-V-420 \N \N f 1005 1 20 396 619.00 0.00 0.00 619.00 1 2019-08-31 2019-08-31 17:03:16.150116 2019-08-31 17:03:51.608444 1 9 PV2-V-422 \N \N f 1006 1 20 396 619.00 0.00 0.00 619.00 2 2019-08-31 2019-08-31 17:04:08.181687 2019-08-31 17:04:12.704463 1 9 PV2-V-423 \N \N f 1007 1 2 395 999.00 0.00 0.00 999.00 2 2019-08-31 2019-08-31 18:04:29.324404 2019-08-31 18:04:33.935774 1 1 PV1-V-579 \N \N f 1008 1 2 395 1098.00 0.00 0.00 1098.00 2 2019-08-31 2019-08-31 18:54:46.603723 2019-08-31 18:56:00.486829 1 1 PV1-V-580 \N \N f 1009 1 2 395 1299.00 0.00 0.00 1299.00 2 2019-08-31 2019-08-31 20:58:03.176624 2019-08-31 20:58:44.311122 1 1 PV1-V-581 \N \N f 1010 1 2 395 1499.00 0.00 0.00 1499.00 2 2019-08-31 2019-08-31 21:19:23.977662 2019-08-31 21:20:03.774896 1 1 PV1-V-582 \N \N f 1011 160 20 396 569.00 0.00 0.00 569.00 1 2019-08-31 2019-08-31 21:57:08.04601 2019-08-31 21:57:39.301079 2 9 PV2-V-424 2019-10-05 \N f 965 122 2 367 749.00 0.00 0.00 749.00 2 2019-08-16 2019-08-16 20:50:49.198367 2019-12-11 00:24:43.180012 0 3 PV1-V-558 \N \N f 1013 1 2 395 1270.00 0.00 0.00 1270.00 2 2019-08-31 2019-08-31 22:54:04.274304 2019-08-31 22:54:25.40042 1 1 PV1-V-583 \N \N f 1014 1 18 397 1599.00 0.00 0.00 1599.00 2 2019-08-31 2019-09-01 03:09:34.183675 2019-09-01 03:09:39.089049 1 12 PV3-V-4 \N \N f 987 21 2 380 649.00 0.00 0.00 649.00 2 2019-08-23 2019-08-23 23:57:16.656203 2019-09-08 00:23:47.705053 2 1 PV1-V-573 2019-09-27 \N f 1015 1 18 397 699.00 0.00 0.00 699.00 2 2019-08-31 2019-09-01 03:10:23.188369 2019-09-01 03:10:27.963965 1 12 PV3-V-5 \N \N f 1016 1 18 397 922.48 13.52 0.00 936.00 2 2019-08-31 2019-09-01 03:11:10.154915 2019-09-01 03:11:20.924466 1 12 PV3-V-6 \N \N f 1056 122 10 416 449.00 0.00 0.00 449.00 2 2019-09-09 2019-09-09 21:08:03.693128 2020-01-16 23:24:30.280886 0 4 PV2-V-436 \N \N f 1018 1 18 397 699.00 0.00 0.00 699.00 2 2019-08-31 2019-09-01 03:20:09.307047 2019-09-01 03:20:13.633521 1 12 PV3-V-8 \N \N f 1019 1 18 397 999.00 0.00 0.00 999.00 2 2019-08-31 2019-09-01 03:20:41.999344 2019-09-01 03:20:47.137291 1 12 PV3-V-9 \N \N f 1060 169 18 417 699.00 0.00 0.00 699.00 2 2019-09-09 2019-09-10 01:29:59.924369 2019-09-27 23:46:28.717256 2 12 PV3-V-21 2019-10-14 \N f 1022 1 2 401 2406.65 90.35 654.00 1843.00 2 2019-09-02 2019-09-02 17:33:19.185158 2019-09-02 17:33:26.665333 1 1 PV1-V-584 \N \N f 1070 172 8 421 699.00 0.00 0.00 699.00 2 2019-09-11 2019-09-12 00:33:25.491902 2019-10-08 17:18:28.832103 2 4 PV2-V-441 2019-10-16 \N f 1021 162 20 399 699.00 0.00 0.00 699.00 2 2019-09-01 2019-09-01 19:47:22.661839 2019-09-02 19:35:54.90975 2 9 PV2-V-426 2019-10-06 \N f 1024 1 3 400 549.00 0.00 0.00 549.00 2 2019-09-02 2019-09-02 22:34:20.171372 2019-09-02 22:34:24.632266 1 11 PV2-V-427 \N \N f 1025 1 2 401 2797.00 0.00 0.00 2797.00 2 2019-09-02 2019-09-03 00:11:20.610479 2019-09-03 00:11:28.202072 1 1 PV1-V-586 \N \N f 1026 1 2 401 679.00 0.00 0.00 679.00 2 2019-09-02 2019-09-03 00:18:04.294006 2019-09-03 00:18:08.778171 1 3 PV1-V-587 \N \N f 1027 1 2 401 579.00 0.00 0.00 579.00 2 2019-09-02 2019-09-03 00:20:28.281818 2019-09-03 00:20:33.506548 1 1 PV1-V-588 \N \N f 1028 1 3 402 479.00 0.00 0.00 479.00 2 2019-09-03 2019-09-03 20:14:46.200567 2019-09-03 20:15:04.284305 1 9 PV2-V-428 \N \N f 1029 1 2 403 1197.00 0.00 0.00 1197.00 2 2019-09-03 2019-09-03 20:16:12.610383 2019-09-03 20:17:31.013912 1 1 PV1-V-589 \N \N f 1051 134 8 414 699.00 0.00 0.00 699.00 2 2019-09-07 2019-09-07 22:53:00.668342 2019-10-25 01:24:07.06395 2 4 PV2-V-434 2019-10-12 \N f 1045 167 9 412 669.00 0.00 0.00 669.00 2 2019-09-07 2019-09-07 16:16:25.232131 2019-09-30 16:15:01.227168 2 1 PV1-V-597 2019-10-12 \N f 1032 1 8 406 1338.00 0.00 78.00 1260.00 2 2019-09-04 2019-09-04 22:49:05.368136 2019-09-04 22:49:13.972515 1 4 PV2-V-430 \N \N f 1033 1 2 408 1599.00 0.00 0.00 1599.00 2 2019-09-05 2019-09-05 16:58:23.166645 2019-09-05 16:59:24.135493 1 1 PV1-V-591 \N \N f 1065 62 2 420 1599.00 0.00 0.00 1599.00 2 2019-09-10 2019-09-10 22:22:16.486808 2019-10-05 23:54:11.687661 2 1 PV1-V-602 2019-10-15 \N f 1035 1 20 407 699.00 0.00 0.00 699.00 2 2019-09-05 2019-09-05 20:35:44.38542 2019-09-05 20:36:12.587645 1 9 PV2-V-431 \N \N f 1036 1 2 408 699.00 0.00 0.00 699.00 2 2019-09-05 2019-09-06 00:24:27.583028 2019-09-06 00:24:44.402799 1 1 PV1-V-592 \N \N f 1037 1 2 411 825.86 132.14 0.00 958.00 2 2019-09-06 2019-09-06 17:14:48.882304 2019-09-06 17:15:17.089816 1 1 PV1-V-593 \N \N f 1038 1 2 411 430.17 68.83 0.00 499.00 2 2019-09-06 2019-09-06 20:17:20.858993 2019-09-06 20:17:42.491489 1 10 PV1-V-594 \N \N f 1039 1 20 410 861.21 137.79 0.00 999.00 2 2019-09-06 2019-09-06 22:04:53.291493 2019-09-06 22:05:32.561088 1 9 PV2-V-432 \N \N f 1040 1 8 410 85.34 13.65 0.00 98.99 2 2019-09-06 2019-09-06 23:33:00.88861 2019-09-06 23:33:14.84211 1 4 PV2-V-433 \N \N f 1041 1 21 409 1549.00 0.00 0.00 1549.00 2 2019-09-06 2019-09-07 00:25:31.725475 2019-09-07 00:26:31.336389 1 12 PV3-V-12 \N \N f 1042 1 21 409 299.00 0.00 0.00 299.00 2 2019-09-06 2019-09-07 00:29:18.249813 2019-09-07 00:29:47.64451 1 12 PV3-V-13 \N \N f 1043 167 9 412 669.00 0.00 0.00 669.00 1 2019-09-07 2019-09-07 16:14:45.845561 2019-09-07 16:14:52.281401 1 1 PV1-V-595 \N \N f 1044 167 9 412 669.00 0.00 0.00 669.00 1 2019-09-07 2019-09-07 16:15:45.999912 2019-09-07 16:15:58.282506 1 1 PV1-V-596 \N \N f 1034 166 21 409 1292.24 206.76 0.00 1499.00 2 2019-09-05 2019-09-05 18:03:46.142197 2019-10-03 17:27:22.735996 2 12 PV3-V-11 2019-10-10 \N f 1046 1 21 413 999.00 0.00 0.00 999.00 2 2019-09-07 2019-09-07 17:29:00.35957 2019-09-07 17:29:05.878714 1 12 PV3-V-14 \N \N f 1047 1 21 413 699.00 0.00 0.00 699.00 2 2019-09-07 2019-09-07 17:30:05.988734 2019-09-07 17:30:11.62177 1 12 PV3-V-15 \N \N f 1048 1 9 412 1099.00 0.00 0.00 1099.00 2 2019-09-07 2019-09-07 18:34:05.709189 2019-09-07 18:34:13.956245 1 3 PV1-V-598 \N \N f 1049 1 9 412 699.00 0.00 0.00 699.00 2 2019-09-07 2019-09-07 18:49:49.695681 2019-09-07 18:49:56.67345 1 3 PV1-V-599 \N \N f 1050 1 21 413 1398.00 0.00 0.00 1398.00 2 2019-09-07 2019-09-07 19:38:41.26988 2019-09-07 19:39:28.254712 1 12 PV3-V-16 \N \N f 1062 170 18 417 799.00 0.00 0.00 799.00 4 2019-09-09 2019-09-10 02:28:40.591392 2019-11-27 23:54:00.20675 2 12 PV3-V-23 2019-10-14 \N f 1052 1 9 412 669.00 0.00 0.00 669.00 2 2019-09-07 2019-09-07 22:53:24.384226 2019-09-07 22:53:28.735415 1 1 PV1-V-600 \N \N f 1053 1 8 414 1398.00 0.00 0.00 1398.00 2 2019-09-07 2019-09-08 00:06:28.03814 2019-09-08 00:06:47.559367 1 4 PV2-V-435 \N \N f 1054 1 23 417 969.00 0.00 149.00 820.00 2 2019-09-09 2019-09-09 17:40:19.798402 2019-09-09 17:40:57.172278 1 12 PV3-V-17 \N \N f 1055 168 2 415 699.00 0.00 0.00 699.00 2 2019-09-09 2019-09-09 20:46:40.261501 2019-09-09 20:46:44.902974 1 1 PV1-V-601 \N \N f 1057 1 23 417 469.00 0.00 0.00 469.00 2 2019-09-09 2019-09-09 23:36:24.095889 2019-09-09 23:36:35.258141 1 12 PV3-V-18 \N \N f 1058 1 23 417 299.00 0.00 0.00 299.00 1 2019-09-09 2019-09-10 00:36:40.970877 2019-09-10 00:39:01.861457 1 12 PV3-V-19 \N \N f 1059 1 23 417 732.48 13.52 0.00 746.00 2 2019-09-09 2019-09-10 00:44:43.535617 2019-09-10 00:44:50.465308 1 12 PV3-V-20 \N \N f 1023 163 2 401 669.00 0.00 0.00 669.00 2 2019-09-02 2019-09-02 17:39:12.82823 2019-10-07 16:21:54.002591 2 1 PV1-V-585 2019-10-07 \N f 1061 170 18 417 799.00 0.00 0.00 799.00 1 2019-09-09 2019-09-10 02:28:00.982321 2019-09-10 02:28:18.787758 1 12 PV3-V-22 \N \N f 1063 1 18 417 1618.69 27.31 0.00 1646.00 2 2019-09-09 2019-09-10 02:51:52.027 2019-09-10 02:52:01.881608 1 12 PV3-V-24 \N \N f 1064 1 18 418 843.97 135.04 0.00 979.01 2 2019-09-10 2019-09-10 17:18:57.440459 2019-09-10 17:19:02.936791 1 14 PV3-V-25 \N \N f 1030 164 8 402 1499.00 0.00 0.00 1499.00 2 2019-09-03 2019-09-04 00:07:13.947571 2019-10-09 17:03:52.903938 2 4 PV2-V-429 2019-10-08 \N f 1066 1 8 421 999.00 0.00 299.70 699.30 2 2019-09-11 2019-09-11 17:08:12.373436 2019-09-11 17:08:41.54381 1 4 PV2-V-437 \N \N f 1067 1 8 421 522.93 66.07 110.00 479.00 2 2019-09-11 2019-09-11 17:45:02.129101 2019-09-11 17:45:17.146139 1 4 PV2-V-438 \N \N f 1068 1 8 421 404.31 64.69 0.00 469.00 2 2019-09-11 2019-09-11 20:25:43.934281 2019-09-11 20:26:05.329878 1 4 PV2-V-439 \N \N f 1069 173 8 421 699.00 0.00 0.00 699.00 1 2019-09-11 2019-09-12 00:32:43.75452 2019-09-12 00:33:03.960403 1 4 PV2-V-440 \N \N f 1077 20 23 426 3498.00 0.00 0.00 3498.00 2 2019-09-12 2019-09-13 01:12:01.421866 2019-12-21 22:34:51.228318 0 12 PV3-V-29 \N \N f 1072 1 21 423 599.00 0.00 0.00 599.00 2 2019-09-11 2019-09-12 01:52:13.562364 2019-09-12 01:52:19.596136 1 13 PV3-V-27 \N \N f 1071 1 21 423 699.00 0.00 0.00 699.00 1 2019-09-11 2019-09-12 01:12:53.979891 2019-09-12 01:51:58.126919 1 14 PV3-V-26 \N \N f 1073 1 8 424 990.52 158.48 0.00 1149.00 2 2019-09-12 2019-09-12 20:06:45.658123 2019-09-12 20:07:05.035736 1 4 PV2-V-442 \N \N f 1074 1 2 425 299.00 0.00 0.00 299.00 2 2019-09-12 2019-09-13 00:10:26.091085 2019-09-13 00:10:31.761809 1 1 PV1-V-603 \N \N f 1075 1 2 425 569.00 0.00 0.00 569.00 2 2019-09-12 2019-09-13 00:37:42.375595 2019-09-13 00:37:47.431732 1 3 PV1-V-604 \N \N f 1076 174 23 426 3498.00 0.00 0.00 3498.00 1 2019-09-12 2019-09-13 01:10:28.371947 2019-09-13 01:11:14.196657 1 14 PV3-V-28 \N \N f 1017 161 18 397 1464.66 234.35 0.00 1699.01 2 2019-08-31 2019-09-01 03:17:53.543877 2020-01-16 17:58:22.08647 0 12 PV3-V-7 \N \N f 1078 1 2 425 371.41 27.59 199.00 200.00 2 2019-09-12 2019-09-13 01:15:00.039845 2019-09-13 01:15:05.15611 1 1 PV1-V-605 \N \N f 1079 1 8 427 1004.86 84.14 0.00 1089.00 2 2019-09-13 2019-09-13 18:29:22.209816 2019-09-13 18:29:33.314634 1 4 PV2-V-443 \N \N f 1031 165 2 405 869.00 0.00 0.00 869.00 2 2019-09-04 2019-09-04 20:58:12.004598 2019-09-14 20:33:15.902209 2 1 PV1-V-590 2019-10-09 \N f 1080 1 8 427 675.00 0.00 0.00 675.00 2 2019-09-13 2019-09-13 19:27:45.563931 2019-09-13 19:28:22.353711 1 4 PV2-V-444 \N \N f 1081 1 2 428 1299.00 0.00 0.00 1299.00 2 2019-09-13 2019-09-13 20:21:49.79411 2019-09-13 20:22:13.461554 1 1 PV1-V-606 \N \N f 1082 1 2 428 579.00 0.00 0.00 579.00 2 2019-09-13 2019-09-13 20:52:58.005918 2019-09-13 20:53:13.188087 1 1 PV1-V-607 \N \N f 1083 1 2 428 604.17 44.83 324.00 325.00 2 2019-09-13 2019-09-13 20:58:44.064413 2019-09-13 20:58:51.658311 1 1 PV1-V-608 \N \N f 1084 1 2 428 679.00 0.00 0.00 679.00 2 2019-09-13 2019-09-13 21:34:38.231036 2019-09-13 21:35:02.434641 1 1 PV1-V-609 \N \N f 1085 1 8 427 1188.00 0.00 0.00 1188.00 2 2019-09-13 2019-09-13 22:05:50.738578 2019-09-13 22:07:14.124262 1 4 PV2-V-445 \N \N f 1086 1 8 429 625.00 0.00 0.00 625.00 2 2019-09-13 2019-09-14 01:57:09.690086 2019-09-14 01:57:48.59414 1 11 PV2-V-446 \N \N f 1087 1 2 430 1129.72 48.28 279.00 899.00 2 2019-09-14 2019-09-14 16:27:07.973362 2019-09-14 16:27:14.260644 1 1 PV1-V-610 \N \N f 1088 56 18 431 1119.83 179.17 0.00 1299.00 1 2019-09-14 2019-09-14 17:43:48.802876 2019-09-14 17:44:35.576329 2 12 PV3-V-30 2019-10-19 \N f 1130 178 8 445 1199.00 0.00 0.00 1199.00 2 2019-09-21 2019-09-21 22:39:05.878619 2019-10-06 19:03:46.616509 2 11 PV2-V-461 2019-10-26 \N f 1090 1 2 430 1199.00 0.00 0.00 1199.00 2 2019-09-14 2019-09-14 18:29:41.611708 2019-09-14 18:29:47.762304 1 1 PV1-V-611 \N \N f 1091 1 2 430 1738.00 0.00 0.00 1738.00 2 2019-09-14 2019-09-14 19:05:55.716512 2019-09-14 19:06:04.555111 1 1 PV1-V-612 \N \N f 1092 1 8 432 639.00 0.00 0.00 639.00 2 2019-09-14 2019-09-14 19:40:40.113575 2019-09-14 19:40:49.433564 1 4 PV2-V-447 \N \N f 1093 1 8 432 1987.00 0.00 0.00 1987.00 2 2019-09-14 2019-09-14 20:25:06.847838 2019-09-14 20:25:16.126424 1 4 PV2-V-448 \N \N f 1094 1 2 430 1249.00 0.00 0.00 1249.00 2 2019-09-14 2019-09-14 20:38:12.21785 2019-09-14 20:39:01.20322 1 1 PV1-V-613 \N \N f 1096 1 23 431 1599.00 0.00 0.00 1599.00 2 2019-09-14 2019-09-14 22:26:29.434246 2019-09-14 22:26:36.440922 1 13 PV3-V-32 \N \N f 1097 134 8 432 958.00 0.00 0.00 958.00 1 2019-09-14 2019-09-14 22:40:05.265548 2019-09-14 22:40:10.255795 1 4 PV2-V-449 \N \N f 1115 176 8 441 1398.00 0.00 200.00 1198.00 2 2019-09-19 2019-09-19 16:30:13.165506 2019-10-17 21:10:54.964906 2 4 PV2-V-457 2019-10-24 \N f 1099 1 23 431 1399.00 0.00 0.00 1399.00 2 2019-09-14 2019-09-15 00:01:14.845747 2019-09-15 00:01:22.729815 1 13 PV3-V-33 \N \N f 1100 1 8 432 1299.00 0.00 0.00 1299.00 2 2019-09-14 2019-09-15 00:27:08.176993 2019-09-15 00:27:13.904202 1 4 PV2-V-451 \N \N f 1101 1 8 432 1199.00 0.00 0.00 1199.00 1 2019-09-14 2019-09-15 00:34:50.050795 2019-09-15 00:35:59.375407 1 4 PV2-V-452 \N \N f 1102 1 8 432 2498.00 0.00 0.00 2498.00 2 2019-09-14 2019-09-15 00:36:31.691549 2019-09-15 00:36:51.710025 1 4 PV2-V-453 \N \N f 1103 1 8 432 639.00 0.00 0.00 639.00 2 2019-09-14 2019-09-15 00:42:27.74918 2019-09-15 00:43:38.428283 1 4 PV2-V-454 \N \N f 1104 1 9 433 679.00 0.00 0.00 679.00 2 2019-09-15 2019-09-15 17:13:47.586215 2019-09-15 17:14:44.346579 1 3 PV1-V-615 \N \N f 1105 1 10 435 625.00 0.00 0.00 625.00 2 2019-09-15 2019-09-15 19:17:59.422864 2019-09-15 19:19:28.971745 1 4 PV2-V-455 \N \N f 1106 1 18 434 699.00 0.00 0.00 699.00 2 2019-09-17 2019-09-17 19:48:42.334327 2019-09-17 19:48:58.989369 1 13 PV3-V-34 \N \N f 1107 3 18 434 2317.00 0.00 0.00 2317.00 1 2019-09-17 2019-09-17 19:53:00.140334 2019-09-17 19:53:19.621452 1 14 PV3-V-35 \N \N f 1095 36 2 430 759.00 0.00 0.00 759.00 2 2019-09-14 2019-09-14 21:51:16.075843 2019-11-16 00:55:49.880499 0 3 PV1-V-614 \N \N f 1109 1 2 438 42.24 6.76 0.00 49.00 2 2019-09-18 2019-09-18 18:12:22.124532 2019-09-18 18:24:34.277528 1 1 PV1-V-616 \N \N f 1110 1 2 438 623.14 75.86 149.00 550.00 2 2019-09-18 2019-09-18 18:36:51.246621 2019-09-18 18:36:57.189715 1 1 PV1-V-617 \N \N f 1111 1 2 438 1299.00 0.00 0.00 1299.00 2 2019-09-18 2019-09-18 19:25:02.434537 2019-09-18 19:27:14.132675 1 1 PV1-V-618 \N \N f 1112 1 2 438 759.00 0.00 0.00 759.00 2 2019-09-18 2019-09-18 23:32:44.518192 2019-09-18 23:32:49.693728 1 1 PV1-V-619 \N \N f 1113 1 2 438 449.00 0.00 0.00 449.00 2 2019-09-18 2019-09-19 00:40:35.423811 2019-09-19 00:40:47.558989 1 1 PV1-V-620 \N \N f 1114 176 8 441 1398.00 0.00 200.00 1198.00 1 2019-09-19 2019-09-19 16:29:15.779382 2019-09-19 16:29:23.270544 1 4 PV2-V-456 \N \N f 1116 1 2 440 1299.00 0.00 0.00 1299.00 2 2019-09-19 2019-09-19 21:02:26.381925 2019-09-19 21:02:30.972776 1 1 PV1-V-621 \N \N f 1117 1 2 440 699.00 0.00 0.00 699.00 2 2019-09-19 2019-09-19 21:05:27.264858 2019-09-19 21:05:32.863942 1 1 PV1-V-622 \N \N f 1089 175 23 431 1987.00 0.00 0.00 1987.00 2 2019-09-14 2019-09-14 17:55:49.536883 2019-09-28 16:41:39.088923 2 13 PV3-V-31 2019-10-19 \N f 1119 1 9 443 639.00 0.00 0.00 639.00 2 2019-09-20 2019-09-20 16:34:40.86556 2019-09-20 16:34:45.818577 1 3 PV1-V-623 \N \N f 1120 1 23 444 699.00 0.00 0.00 699.00 2 2019-09-20 2019-09-20 16:57:24.193285 2019-09-20 16:57:33.662288 1 13 PV3-V-38 \N \N f 1121 1 8 441 649.00 0.00 0.00 649.00 2 2019-09-20 2019-09-20 19:56:24.719961 2019-09-20 19:56:33.255855 1 15 PV2-V-458 \N \N f 1122 1 2 443 1598.00 0.00 0.00 1598.00 2 2019-09-20 2019-09-20 20:59:58.238474 2019-09-20 21:02:54.38613 1 1 PV1-V-624 \N \N f 1123 1 23 444 799.00 0.00 0.00 799.00 2 2019-09-20 2019-09-20 22:34:18.645949 2019-09-20 22:35:13.677499 1 13 PV3-V-39 \N \N f 1124 1 10 441 1169.00 0.00 0.00 1169.00 2 2019-09-20 2019-09-21 00:51:10.356696 2019-09-21 00:51:16.881741 1 15 PV2-V-459 \N \N f 1125 1 8 445 699.00 0.00 0.00 699.00 2 2019-09-21 2019-09-21 17:44:07.479551 2019-09-21 17:44:18.273305 1 15 PV2-V-460 \N \N f 1126 1 25 446 639.00 0.00 0.00 639.00 2 2019-09-21 2019-09-21 17:45:11.876099 2019-09-21 17:45:17.205747 1 16 PV1-V-625 \N \N f 1127 1 2 446 170.69 27.31 0.00 198.00 2 2019-09-21 2019-09-21 18:30:04.439496 2019-09-21 18:30:39.975902 1 1 PV1-V-626 \N \N f 1020 159 18 397 349.00 0.00 0.00 349.00 2 2019-08-31 2019-09-01 03:25:32.097849 2019-09-21 20:14:01.304782 2 12 PV3-V-10 2019-10-05 \N f 1128 1 2 446 999.00 0.00 0.00 999.00 2 2019-09-21 2019-09-21 22:31:20.625904 2019-09-21 22:32:18.983411 1 1 PV1-V-627 \N \N f 1129 1 2 446 699.00 0.00 0.00 699.00 2 2019-09-21 2019-09-21 22:34:15.538029 2019-09-21 22:34:44.797939 1 1 PV1-V-628 \N \N f 1098 134 8 432 479.00 0.00 0.00 479.00 2 2019-09-14 2019-09-14 22:40:33.31574 2019-10-12 22:59:42.253228 2 4 PV2-V-450 2019-10-19 \N f 1131 1 2 446 649.00 0.00 0.00 649.00 2 2019-09-21 2019-09-21 23:15:25.437579 2019-09-21 23:16:10.389378 1 1 PV1-V-629 \N \N f 1132 1 2 446 699.00 0.00 174.00 525.00 2 2019-09-21 2019-09-22 00:00:02.283809 2019-09-22 00:05:18.256823 1 1 PV1-V-630 \N \N f 1133 1 8 445 1199.00 0.00 0.00 1199.00 2 2019-09-21 2019-09-22 00:44:35.329771 2019-09-22 00:44:44.982505 1 15 PV2-V-462 \N \N f 1135 1 21 448 1378.45 220.55 0.00 1599.00 2 2019-09-22 2019-09-22 20:19:42.89477 2019-09-22 20:19:47.263265 1 12 PV3-V-40 \N \N f 1134 1 25 449 1378.45 220.55 0.00 1599.00 1 2019-09-22 2019-09-22 20:17:52.893951 2019-09-22 20:30:04.949483 1 16 PV1-V-631 \N \N f 1136 1 8 451 1299.00 0.00 0.00 1299.00 2 2019-09-23 2019-09-23 17:52:25.309237 2019-09-23 17:52:35.954805 1 4 PV2-V-463 \N \N f 1137 1 8 451 1029.00 0.00 0.00 1029.00 2 2019-09-23 2019-09-23 20:47:49.46769 2019-09-23 20:51:48.319784 1 4 PV2-V-464 \N \N f 1138 1 8 451 897.00 0.00 0.00 897.00 2 2019-09-23 2019-09-24 00:42:23.839775 2019-09-24 00:42:29.9408 1 4 PV2-V-465 \N \N f 1139 1 8 451 639.00 0.00 0.00 639.00 2 2019-09-23 2019-09-24 00:58:23.741098 2019-09-24 01:03:59.271611 1 4 PV2-V-466 \N \N f 1140 179 8 451 699.00 0.00 0.00 699.00 2 2019-09-23 2019-09-24 01:06:33.748195 2019-09-24 01:07:53.694322 2 4 PV2-V-467 2019-10-28 \N f 1108 3 18 434 2317.00 0.00 0.00 2317.00 2 2019-09-17 2019-09-17 19:55:05.783013 2019-11-11 18:59:21.774758 0 13 PV3-V-36 \N \N f 1142 1 2 452 699.00 0.00 0.00 699.00 2 2019-09-24 2019-09-24 19:09:17.088098 2019-09-24 19:09:32.176337 1 1 PV1-V-633 \N \N f 1143 1 10 454 619.00 0.00 154.75 464.25 2 2019-09-24 2019-09-25 01:22:50.379384 2019-09-25 01:25:14.384499 1 11 PV2-V-468 \N \N f 1118 177 21 442 699.00 0.00 0.00 699.00 1 2019-09-19 2019-09-19 23:01:44.337812 2019-09-26 22:41:11.556466 2 12 PV3-V-37 2019-10-24 \N f 1141 180 2 452 1560.21 137.79 0.00 1698.00 2 2019-09-24 2019-09-24 19:04:57.939163 2019-11-01 19:57:47.234041 2 1 PV1-V-632 2019-10-29 \N f 1144 1 2 452 1610.80 186.21 447.00 1350.01 2 2019-09-24 2019-09-25 01:27:39.488304 2019-09-25 01:28:27.33942 1 1 PV1-V-634 \N \N f 1145 1 2 455 576.72 92.28 0.00 669.00 2 2019-09-25 2019-09-25 16:28:43.4368 2019-09-25 16:28:53.353606 1 16 PV1-V-635 \N \N f 1147 1 23 456 299.00 0.00 0.00 299.00 2 2019-09-26 2019-09-26 16:28:44.547998 2019-09-26 16:29:47.7993 1 13 PV3-V-41 \N \N f 1148 1 10 458 1469.00 0.00 0.00 1469.00 2 2019-09-26 2019-09-26 18:30:04.114943 2019-09-26 18:30:24.353412 1 15 PV2-V-469 \N \N f 1149 1 2 457 1099.00 0.00 0.00 1099.00 2 2019-09-26 2019-09-26 19:07:16.518752 2019-09-26 19:07:34.936284 1 16 PV1-V-637 \N \N f 1150 1 23 456 799.00 0.00 48.00 751.00 2 2019-09-26 2019-09-26 19:37:10.689583 2019-09-26 19:37:16.267755 1 13 PV3-V-42 \N \N f 1151 1 2 457 1270.00 0.00 0.00 1270.00 2 2019-09-26 2019-09-26 20:40:30.137751 2019-09-26 20:41:56.388281 1 1 PV1-V-638 \N \N f 1152 1 2 457 1199.00 0.00 0.00 1199.00 2 2019-09-26 2019-09-26 21:29:50.833183 2019-09-26 21:31:19.611702 1 1 PV1-V-639 \N \N f 1153 1 23 456 699.00 0.00 0.00 699.00 1 2019-09-26 2019-09-26 22:42:52.891826 2019-09-26 22:43:00.367983 1 13 PV3-V-43 \N \N f 1154 1 23 456 699.00 0.00 199.00 500.00 1 2019-09-26 2019-09-26 22:45:09.178558 2019-09-26 22:52:55.141379 1 13 PV3-V-44 \N \N f 1155 1 23 456 639.00 0.00 0.00 639.00 2 2019-09-26 2019-09-26 23:29:30.629648 2019-09-26 23:30:48.226305 1 13 PV3-V-45 \N \N f 1156 1 25 457 1270.00 0.00 0.00 1270.00 2 2019-09-26 2019-09-26 23:56:30.878847 2019-09-26 23:57:16.107682 1 16 PV1-V-640 \N \N f 1157 1 23 456 699.00 0.00 199.00 500.00 2 2019-09-26 2019-09-27 00:21:27.48101 2019-09-27 00:21:59.437848 1 12 PV3-V-46 \N \N f 1158 1 25 457 1270.00 0.00 0.00 1270.00 2 2019-09-26 2019-09-27 00:22:34.649613 2019-09-27 00:25:09.759953 1 1 PV1-V-641 \N \N f 1159 1 8 460 559.48 89.52 0.00 649.00 2 2019-09-27 2019-09-27 17:12:58.552432 2019-09-27 17:13:09.959553 1 11 PV2-V-470 \N \N f 1161 1 23 459 1348.00 0.00 0.00 1348.00 2 2019-09-27 2019-09-27 19:54:13.802556 2019-09-27 19:54:22.307514 1 13 PV3-V-47 \N \N f 1160 1 8 460 2694.45 80.55 584.00 2191.00 2 2019-09-27 2019-09-27 19:52:59.00525 2019-09-27 19:55:30.8392 1 4 PV2-V-471 \N \N f 1162 181 8 460 1867.00 0.00 0.00 1867.00 1 2019-09-27 2019-09-27 19:59:09.192128 2019-09-27 20:02:35.639276 2 4 PV2-V-472 2019-11-01 \N f 1178 185 18 469 1899.00 0.00 0.00 1899.00 2 2019-10-01 2019-10-02 01:31:06.687347 2019-10-26 21:59:33.656535 2 14 PV3-V-52 2019-11-05 \N f 1165 1 8 460 419.00 0.00 0.00 419.00 2 2019-09-27 2019-09-27 23:02:12.67882 2019-09-27 23:02:20.447284 1 4 PV2-V-474 \N \N f 1166 1 8 460 789.00 0.00 0.00 789.00 2 2019-09-27 2019-09-28 00:36:48.828332 2019-09-28 00:37:49.79885 1 4 PV2-V-475 \N \N f 1167 183 23 459 2099.00 0.00 0.00 2099.00 1 2019-09-27 2019-09-28 00:55:47.891232 2019-09-28 00:57:12.379512 2 13 PV3-V-48 2019-11-01 \N f 1205 62 2 480 1499.00 0.00 0.00 1499.00 2 2019-10-05 2019-10-05 23:55:48.550261 2019-11-02 22:24:31.379389 2 1 PV1-V-659 2019-11-09 \N f 1169 1 2 461 1270.00 0.00 0.00 1270.00 2 2019-09-27 2019-09-28 01:32:34.349988 2019-09-28 01:33:38.907324 1 1 PV1-V-643 \N \N f 1170 1 23 463 649.00 0.00 0.00 649.00 2 2019-09-28 2019-09-28 18:11:01.34607 2019-09-28 18:11:17.519552 1 13 PV3-V-50 \N \N f 1171 1 2 462 549.00 0.00 0.00 549.00 2 2019-09-28 2019-09-28 20:05:02.45128 2019-09-28 20:05:13.948153 1 1 PV1-V-644 \N \N f 1172 1 2 462 469.00 0.00 0.00 469.00 2 2019-09-28 2019-09-28 22:29:34.638471 2019-09-28 22:29:43.113681 1 1 PV1-V-645 \N \N f 1173 1 25 465 704.34 13.65 0.00 717.99 2 2019-09-29 2019-09-29 18:18:28.123988 2019-09-29 18:19:23.152752 1 16 PV1-V-646 \N \N f 1174 1 2 466 699.00 0.00 0.00 699.00 2 2019-09-30 2019-09-30 19:02:26.19686 2019-09-30 19:03:00.342902 1 1 PV1-V-647 \N \N f 1175 1 2 467 1284.55 43.45 314.00 1014.00 2 2019-10-01 2019-10-01 17:18:58.757689 2019-10-01 17:19:15.775743 1 1 PV1-V-648 \N \N f 1164 181 8 460 1867.00 0.00 0.00 1867.00 2 2019-09-27 2019-09-27 21:39:14.017924 2019-10-01 20:26:28.398741 2 4 PV2-V-473 2019-11-01 \N f 1176 1 10 468 257.76 41.24 0.00 299.00 2 2019-10-01 2019-10-02 00:54:16.031553 2019-10-02 00:54:22.70798 1 4 PV2-V-476 \N \N f 1177 185 18 469 1899.00 0.00 0.00 1899.00 1 2019-10-01 2019-10-02 01:29:56.589213 2019-10-02 01:30:24.247839 1 14 PV3-V-51 \N \N f 1168 183 23 459 2099.00 0.00 0.00 2099.00 2 2019-09-27 2019-09-28 00:59:10.062565 2019-10-27 00:39:31.875687 2 13 PV3-V-49 2019-11-01 \N f 1188 144 8 475 1034.48 165.52 0.00 1200.00 2 2019-10-03 2019-10-04 00:13:05.456678 2019-10-23 20:38:40.627278 2 11 PV2-V-477 2019-11-07 \N f 1179 186 23 470 1599.00 0.00 0.00 1599.00 2 2019-10-02 2019-10-02 18:43:00.746657 2019-10-23 19:44:18.065467 2 13 PV3-V-53 2019-11-06 \N f 1204 191 2 480 1044.69 63.31 0.00 1108.00 2 2019-10-05 2019-10-05 23:18:22.814461 2019-10-15 23:04:14.283708 2 1 PV1-V-658 2019-11-09 \N f 1146 144 2 455 1199.00 0.00 0.00 1199.00 2 2019-09-25 2019-09-25 22:58:31.615959 2019-10-02 22:15:46.784876 2 1 PV1-V-636 2019-10-30 \N f 1182 1 2 471 1256.62 41.38 299.00 999.00 2 2019-10-02 2019-10-02 22:50:01.559271 2019-10-02 22:50:08.850601 1 1 PV1-V-651 \N \N f 1184 1 2 471 1549.00 0.00 0.00 1549.00 2 2019-10-02 2019-10-03 00:22:02.739468 2019-10-03 00:22:42.986644 1 1 PV1-V-652 \N \N f 1185 1 2 471 1499.00 0.00 374.00 1125.00 2 2019-10-02 2019-10-03 01:04:07.761618 2019-10-03 01:04:54.794716 1 1 PV1-V-653 \N \N f 1163 182 2 461 645.69 103.31 0.00 749.00 2 2019-09-27 2019-09-27 20:55:48.62776 2019-10-03 18:47:59.394251 2 1 PV1-V-642 2019-11-01 \N f 1186 1 2 473 619.00 0.00 0.00 619.00 2 2019-10-03 2019-10-03 20:13:18.856374 2019-10-03 20:13:23.672508 1 1 PV1-V-654 \N \N f 1180 187 2 471 1999.00 0.00 0.00 1999.00 2 2019-10-02 2019-10-02 20:09:19.675344 2019-10-19 19:01:43.624884 2 1 PV1-V-649 2019-11-06 \N f 1189 1 23 474 569.00 0.00 0.00 569.00 2 2019-10-03 2019-10-04 01:02:32.493578 2019-10-04 01:03:17.369263 1 13 PV3-V-55 \N \N f 1190 1 2 473 1299.00 0.00 0.00 1299.00 2 2019-10-03 2019-10-04 01:28:52.584313 2019-10-04 01:29:44.975119 1 1 PV1-V-656 \N \N f 1191 1 23 476 829.00 0.00 0.00 829.00 2 2019-10-04 2019-10-04 17:09:32.765631 2019-10-04 17:19:52.852274 1 13 PV3-V-56 \N \N f 1192 1 23 476 1548.00 0.00 0.00 1548.00 2 2019-10-04 2019-10-04 22:06:19.603272 2019-10-04 22:07:10.695686 1 13 PV3-V-57 \N \N f 1193 1 8 478 988.00 0.00 0.00 988.00 2 2019-10-04 2019-10-04 22:24:57.8273 2019-10-04 22:25:14.492208 1 4 PV2-V-478 \N \N f 1194 1 8 478 699.00 0.00 0.00 699.00 2 2019-10-04 2019-10-04 22:28:50.89027 2019-10-04 22:30:14.515786 1 4 PV2-V-479 \N \N f 1195 1 8 478 861.21 137.79 0.00 999.00 2 2019-10-04 2019-10-04 23:35:26.936845 2019-10-04 23:36:15.814291 1 4 PV2-V-480 \N \N f 1196 1 8 478 688.79 110.21 0.00 799.00 2 2019-10-04 2019-10-04 23:46:59.615902 2019-10-04 23:47:35.832665 1 4 PV2-V-481 \N \N f 1197 1 8 478 1983.38 82.62 0.00 2066.00 2 2019-10-04 2019-10-04 23:49:26.702778 2019-10-04 23:49:40.981706 1 4 PV2-V-482 \N \N f 1198 1 23 476 602.59 96.41 0.00 699.00 2 2019-10-04 2019-10-05 00:52:09.442984 2019-10-05 00:52:28.058787 1 12 PV3-V-58 \N \N f 1199 1 23 476 249.00 0.00 0.00 249.00 2 2019-10-04 2019-10-05 01:55:26.006146 2019-10-05 01:55:54.273712 1 12 PV3-V-59 \N \N f 1200 1 8 481 649.00 0.00 0.00 649.00 2 2019-10-05 2019-10-05 20:43:49.993886 2019-10-05 20:44:10.716526 1 4 PV2-V-483 \N \N f 1201 1 8 481 489.00 0.00 0.00 489.00 2 2019-10-05 2019-10-05 21:09:21.987313 2019-10-05 21:09:43.325025 1 4 PV2-V-484 \N \N f 1202 1 8 481 789.00 0.00 0.00 789.00 2 2019-10-05 2019-10-05 22:11:32.533722 2019-10-05 22:12:13.099225 1 15 PV2-V-485 \N \N f 1203 1 2 480 947.41 151.59 0.00 1099.00 2 2019-10-05 2019-10-05 22:22:02.782061 2019-10-05 22:22:20.970381 1 1 PV1-V-657 \N \N f 1187 190 2 473 869.00 0.00 0.00 869.00 2 2019-10-03 2019-10-03 23:00:02.249581 2019-10-16 23:30:20.37222 2 16 PV1-V-655 2019-11-07 \N f 1183 189 23 470 1378.45 220.55 0.00 1599.00 2 2019-10-02 2019-10-02 23:44:03.110306 2019-12-06 21:29:37.33692 0 13 PV3-V-54 \N \N f 1206 1 23 479 759.00 0.00 0.00 759.00 2 2019-10-05 2019-10-05 23:59:00.059601 2019-10-05 23:59:04.180665 1 13 PV3-V-60 \N \N f 1207 1 2 480 1468.00 0.00 0.00 1468.00 2 2019-10-05 2019-10-06 00:03:09.637111 2019-10-06 00:03:35.880246 1 1 PV1-V-660 \N \N f 1181 188 2 471 1199.00 0.00 0.00 1199.00 2 2019-10-02 2019-10-02 21:43:49.27718 2019-10-11 00:41:58.961669 2 1 PV1-V-650 2019-11-06 \N f 1252 1 2 510 569.00 0.00 0.00 569.00 2 2019-10-16 2019-10-16 16:44:05.076102 2019-10-16 16:45:13.029054 1 1 PV1-V-672 \N \N f 1210 1 23 482 1299.00 0.00 0.00 1299.00 2 2019-10-06 2019-10-06 18:29:42.553534 2019-10-06 18:29:52.569152 1 13 PV3-V-62 \N \N f 1219 196 23 493 1033.62 165.38 0.00 1199.00 2 2019-10-10 2019-10-10 16:37:04.825652 2019-11-13 20:12:58.351784 2 13 PV3-V-68 2019-11-14 \N f 1269 205 26 516 299.00 0.00 0.00 299.00 2 2019-10-19 2019-10-20 00:58:22.653609 2019-12-03 22:48:37.338026 2 15 PV2-V-511 2019-11-23 \N f 1213 1 23 489 341.24 6.76 0.00 348.00 1 2019-10-08 2019-10-08 22:18:33.454229 2019-10-08 22:23:22.312771 1 13 PV3-V-64 \N \N f 1214 1 23 489 341.24 6.76 0.00 348.00 2 2019-10-08 2019-10-08 22:25:26.751635 2019-10-08 22:25:34.281764 1 13 PV3-V-65 \N \N f 1268 204 2 514 1299.00 0.00 0.00 1299.00 4 2019-10-19 2019-10-20 00:53:54.726554 2019-12-23 20:47:12.005076 2 1 PV1-V-676 2019-11-23 \N f 1216 1 2 491 804.34 13.65 0.00 817.99 2 2019-10-09 2019-10-09 20:00:20.943523 2019-10-09 20:00:41.102265 1 1 PV1-V-662 \N \N f 1217 1 10 490 990.52 158.48 0.00 1149.00 2 2019-10-09 2019-10-09 20:22:41.020315 2019-10-09 20:23:09.449699 1 15 PV2-V-487 \N \N f 1218 1 23 492 1599.00 0.00 0.00 1599.00 2 2019-10-09 2019-10-09 20:43:04.611877 2019-10-09 20:43:41.855692 1 13 PV3-V-67 \N \N f 1270 205 26 516 699.00 0.00 0.00 699.00 2 2019-10-19 2019-10-20 01:18:53.050549 2019-11-24 00:08:58.77488 2 15 PV2-V-512 2019-11-23 \N f 1220 1 8 494 1328.00 0.00 0.00 1328.00 2 2019-10-10 2019-10-10 18:43:29.268753 2019-10-10 18:44:08.983743 1 4 PV2-V-488 \N \N f 1221 1 10 494 789.00 0.00 0.00 789.00 2 2019-10-10 2019-10-10 23:23:58.750754 2019-10-10 23:24:06.024154 1 15 PV2-V-489 \N \N f 1222 1 2 495 999.00 0.00 399.00 600.00 2 2019-10-10 2019-10-11 00:34:14.718264 2019-10-11 00:34:19.073435 1 1 PV1-V-663 \N \N f 1223 1 10 494 1129.00 0.00 80.00 1049.00 2 2019-10-10 2019-10-11 01:57:13.07226 2019-10-11 01:57:19.386814 1 15 PV2-V-490 \N \N f 1224 1 21 498 419.00 0.00 0.00 419.00 2 2019-10-11 2019-10-11 17:25:38.510043 2019-10-11 17:25:48.625555 1 12 PV3-V-69 \N \N f 1225 1 2 497 756.89 121.10 0.00 877.99 2 2019-10-11 2019-10-11 17:48:17.660493 2019-10-11 17:50:37.576869 1 1 PV1-V-664 \N \N f 1226 1 2 497 1899.00 0.00 0.00 1899.00 2 2019-10-11 2019-10-11 17:56:21.783043 2019-10-11 17:56:45.563395 1 1 PV1-V-665 \N \N f 1227 1 21 498 1684.34 13.65 0.00 1697.99 2 2019-10-11 2019-10-11 18:01:25.085692 2019-10-11 18:02:36.200095 1 12 PV3-V-70 \N \N f 1228 1 8 496 899.00 0.00 269.70 629.30 2 2019-10-11 2019-10-11 18:07:47.303186 2019-10-11 18:08:20.360767 1 11 PV2-V-491 \N \N f 1229 1 8 496 721.86 77.15 239.70 559.31 2 2019-10-11 2019-10-11 18:16:34.092287 2019-10-11 18:16:46.539375 1 4 PV2-V-492 \N \N f 1230 1 8 496 1499.00 0.00 269.00 1230.00 2 2019-10-11 2019-10-11 20:01:43.259862 2019-10-11 20:01:49.683034 1 4 PV2-V-493 \N \N f 1238 1 24 499 459.00 0.00 0.00 459.00 2 2019-10-12 2019-10-12 22:04:43.730711 2019-10-12 22:04:52.716673 1 4 PV2-V-497 \N \N f 1231 1 8 496 569.00 0.00 0.00 569.00 1 2019-10-11 2019-10-11 21:10:53.399726 2019-10-11 22:09:23.592905 1 4 PV2-V-494 \N \N f 1232 1 8 496 599.00 0.00 0.00 599.00 2 2019-10-11 2019-10-11 22:09:48.880945 2019-10-11 22:09:59.054788 1 4 PV2-V-495 \N \N f 1233 1 2 497 649.00 0.00 0.00 649.00 2 2019-10-11 2019-10-11 22:30:57.319485 2019-10-11 22:31:33.057405 1 1 PV1-V-666 \N \N f 1234 1 2 497 1549.00 0.00 0.00 1549.00 2 2019-10-11 2019-10-11 23:29:16.459862 2019-10-11 23:29:28.010862 1 1 PV1-V-667 \N \N f 1212 194 23 487 1599.00 0.00 0.00 1599.00 2 2019-10-07 2019-10-07 23:10:52.372691 2019-12-02 18:26:10.305233 2 13 PV3-V-63 2019-11-11 \N f 1236 1 2 500 557.62 41.38 299.00 300.00 2 2019-10-12 2019-10-12 19:38:38.28991 2019-10-12 19:38:44.245313 1 1 PV1-V-668 \N \N f 1253 200 2 510 729.00 0.00 0.00 729.00 2 2019-10-16 2019-10-16 18:50:00.158608 2019-11-02 22:25:23.298479 2 1 PV1-V-673 2019-11-20 \N f 1239 1 24 499 1599.00 0.00 0.00 1599.00 2 2019-10-12 2019-10-12 23:02:29.974701 2019-10-12 23:02:39.921048 1 4 PV2-V-498 \N \N f 1240 1 21 501 1199.00 0.00 0.00 1199.00 2 2019-10-12 2019-10-13 02:11:10.829171 2019-10-13 02:11:51.641602 1 12 PV3-V-71 \N \N f 1237 180 2 500 818.10 130.90 0.00 949.00 2 2019-10-12 2019-10-12 21:40:32.398072 2019-11-01 19:58:50.832463 2 1 PV1-V-669 2019-11-16 \N f 1242 1 8 506 1188.00 0.00 0.00 1188.00 2 2019-10-14 2019-10-14 18:47:20.994649 2019-10-14 18:48:23.400415 1 15 PV2-V-500 \N \N f 1254 201 23 509 1699.00 0.00 0.00 1699.00 1 2019-10-16 2019-10-16 20:01:29.892067 2019-10-29 00:55:49.336313 2 13 PV3-V-73 2019-11-20 \N f 1244 1 8 506 599.00 0.00 0.00 599.00 2 2019-10-14 2019-10-14 23:49:29.228543 2019-10-14 23:49:35.024981 1 11 PV2-V-501 \N \N f 1245 1 2 507 829.00 0.00 0.00 829.00 2 2019-10-15 2019-10-15 16:52:20.430135 2019-10-15 16:52:25.305241 1 1 PV1-V-670 \N \N f 1246 1 8 508 1099.00 0.00 0.00 1099.00 2 2019-10-15 2019-10-15 17:34:43.807603 2019-10-15 17:35:48.254049 1 4 PV2-V-502 \N \N f 1247 1 8 508 1368.00 0.00 0.00 1368.00 2 2019-10-15 2019-10-15 17:46:12.123526 2019-10-15 17:46:59.294475 1 11 PV2-V-503 \N \N f 1248 1 8 508 419.00 0.00 0.00 419.00 1 2019-10-15 2019-10-15 21:11:33.710592 2019-10-15 21:12:17.976926 1 4 PV2-V-504 \N \N f 1249 1 2 507 464.52 34.48 249.00 250.00 2 2019-10-15 2019-10-15 21:44:24.966323 2019-10-15 21:44:29.889739 1 1 PV1-V-671 \N \N f 1209 191 25 483 775.00 124.00 0.00 899.00 2 2019-10-06 2019-10-06 16:29:35.378048 2019-10-15 23:03:22.599783 2 1 PV1-V-661 2019-11-10 \N f 1250 1 8 508 1499.00 0.00 0.00 1499.00 2 2019-10-15 2019-10-15 23:11:25.622106 2019-10-15 23:11:34.944141 1 4 PV2-V-505 \N \N f 1251 1 8 508 699.00 0.00 0.00 699.00 2 2019-10-15 2019-10-15 23:19:35.285898 2019-10-15 23:19:39.918718 1 4 PV2-V-506 \N \N f 1211 193 8 485 1518.00 0.00 0.00 1518.00 2 2019-10-07 2019-10-07 16:15:30.240718 2019-11-07 20:33:04.289973 2 4 PV2-V-486 2019-11-11 \N f 1241 198 8 506 602.59 96.41 0.00 699.00 2 2019-10-14 2019-10-14 18:31:58.658677 2019-10-31 18:42:14.580495 2 15 PV2-V-499 2019-11-18 \N f 1255 1 8 511 589.00 0.00 0.00 589.00 2 2019-10-16 2019-10-16 22:34:08.877353 2019-10-16 22:34:45.22402 1 15 PV2-V-507 \N \N f 1256 1 23 509 1398.00 0.00 0.00 1398.00 2 2019-10-16 2019-10-17 01:11:31.689744 2019-10-17 01:11:59.372117 1 13 PV3-V-74 \N \N f 1257 1 2 514 729.00 0.00 0.00 729.00 2 2019-10-17 2019-10-17 17:13:21.065136 2019-10-17 17:13:27.217717 1 1 PV1-V-674 \N \N f 1258 1 23 512 829.00 0.00 0.00 829.00 2 2019-10-17 2019-10-17 17:28:05.490426 2019-10-17 17:28:19.761479 1 13 PV3-V-75 \N \N f 1259 1 23 512 3098.00 0.00 0.00 3098.00 2 2019-10-17 2019-10-17 17:31:39.496963 2019-10-17 17:31:49.828908 1 13 PV3-V-76 \N \N f 1260 1 23 515 699.00 0.00 0.00 699.00 2 2019-10-19 2019-10-19 17:18:55.884645 2019-10-19 17:19:00.37175 1 13 PV3-V-77 \N \N f 1261 1 2 514 1538.00 0.00 0.00 1538.00 2 2019-10-19 2019-10-19 18:52:39.850747 2019-10-19 18:52:48.105465 1 1 PV1-V-675 \N \N f 1262 1 26 516 2328.00 0.00 0.00 2328.00 2 2019-10-19 2019-10-19 21:02:15.295406 2019-10-19 21:05:04.603473 1 15 PV2-V-508 \N \N f 1263 1 26 516 1099.00 0.00 0.00 1099.00 1 2019-10-19 2019-10-19 22:06:17.200185 2019-10-19 22:08:20.438041 1 15 PV2-V-509 \N \N f 1264 1 26 516 4597.00 0.00 0.00 4597.00 2 2019-10-19 2019-10-19 22:09:47.683921 2019-10-19 22:10:02.944467 1 15 PV2-V-510 \N \N f 1235 197 8 496 1498.00 0.00 0.00 1498.00 2 2019-10-11 2019-10-12 00:13:00.023371 2019-11-30 21:22:52.891786 2 4 PV2-V-496 2019-11-15 \N f 1266 1 23 515 1550.86 248.14 0.00 1799.00 2 2019-10-19 2019-10-19 23:27:06.861114 2019-10-19 23:27:11.118624 1 13 PV3-V-79 \N \N f 1265 202 23 515 2099.00 0.00 0.00 2099.00 2 2019-10-19 2019-10-19 23:16:12.202602 2019-11-30 20:45:16.383893 2 13 PV3-V-78 2019-11-23 \N f 1208 192 23 479 2099.00 0.00 0.00 2099.00 4 2019-10-05 2019-10-06 01:15:14.399011 2019-12-15 21:18:50.058312 2 13 PV3-V-61 2019-11-09 \N f 1267 203 23 515 1378.45 220.55 0.00 1599.00 2 2019-10-19 2019-10-19 23:46:38.858017 2019-11-24 00:13:28.639314 2 13 PV3-V-80 2019-11-23 \N f 1271 1 25 518 1899.00 0.00 0.00 1899.00 2 2019-10-20 2019-10-20 16:53:39.719944 2019-10-20 16:54:21.753414 1 16 PV1-V-677 \N \N f 1243 199 23 502 1899.00 0.00 0.00 1899.00 2 2019-10-14 2019-10-14 20:47:29.812347 2019-10-26 22:32:21.976853 2 13 PV3-V-72 2019-11-18 \N f 1215 195 23 489 899.00 0.00 0.00 899.00 4 2019-10-08 2019-10-08 23:16:17.999844 2019-12-15 21:19:14.975029 2 13 PV3-V-66 2019-11-12 \N f 1272 1 25 518 1299.00 0.00 0.00 1299.00 2 2019-10-20 2019-10-20 17:05:11.833126 2019-10-20 17:05:38.27351 1 16 PV1-V-678 \N \N f 1273 206 23 517 3963.79 634.21 0.00 4598.00 1 2019-10-21 2019-10-21 16:11:54.650474 2019-10-21 16:12:36.106172 1 13 PV3-V-81 \N \N f 1294 212 24 527 1099.00 0.00 0.00 1099.00 2 2019-10-24 2019-10-24 18:17:12.878076 2019-11-14 19:38:43.368741 2 11 PV2-V-520 2019-11-28 \N f 1275 1 23 517 499.00 0.00 0.00 499.00 2 2019-10-21 2019-10-21 16:18:11.000996 2019-10-21 16:18:18.838413 1 13 PV3-V-83 \N \N f 1276 1 2 519 704.34 13.65 0.00 717.99 2 2019-10-21 2019-10-21 17:39:18.909225 2019-10-21 17:39:41.783826 1 1 PV1-V-679 \N \N f 1274 206 23 517 3963.79 634.21 0.00 4598.00 2 2019-10-21 2019-10-21 16:12:59.062148 2019-11-13 20:53:26.225608 2 13 PV3-V-82 2019-11-25 \N f 1278 1 26 520 299.00 0.00 0.00 299.00 2 2019-10-21 2019-10-21 21:34:19.267615 2019-10-21 21:34:26.624652 1 15 PV2-V-513 \N \N f 1279 1 26 520 928.00 0.00 232.00 696.00 2 2019-10-21 2019-10-21 21:59:48.973568 2019-10-21 22:00:35.499813 1 11 PV2-V-514 \N \N f 1280 1 2 519 649.00 0.00 0.00 649.00 2 2019-10-21 2019-10-21 23:16:32.183007 2019-10-21 23:16:37.175901 1 1 PV1-V-680 \N \N f 1296 213 26 527 1857.00 0.00 0.00 1857.00 2 2019-10-24 2019-10-24 20:29:35.377655 2019-11-19 23:44:05.392212 2 15 PV2-V-522 2019-11-28 \N f 1282 1 27 523 449.00 0.00 0.00 449.00 2 2019-10-22 2019-10-22 21:57:18.697262 2019-10-22 21:57:29.448238 1 19 PV2-V-515 \N \N f 1283 1 27 523 699.00 0.00 0.00 699.00 2 2019-10-22 2019-10-22 23:04:28.661956 2019-10-22 23:04:40.285309 1 19 PV2-V-516 \N \N f 1302 1 2 528 699.00 0.00 0.00 699.00 2 2019-10-25 2019-10-25 21:40:04.843198 2019-10-25 21:40:25.503728 1 1 PV1-V-689 \N \N f 1284 209 2 522 729.00 0.00 0.00 729.00 1 2019-10-22 2019-10-22 23:41:08.184098 2019-10-22 23:44:28.603926 2 18 PV1-V-682 2019-11-26 \N f 1330 220 2 541 928.00 0.00 0.00 928.00 2 2019-10-30 2019-10-30 18:32:29.307042 2019-11-25 17:16:02.337825 2 1 PV1-V-704 2019-12-04 \N f 1286 1 27 523 649.00 0.00 0.00 649.00 2 2019-10-22 2019-10-23 00:26:10.073077 2019-10-23 00:26:19.937875 1 19 PV2-V-517 \N \N f 1287 1 2 525 1199.00 0.00 0.00 1199.00 2 2019-10-23 2019-10-23 17:40:04.486553 2019-10-23 17:40:08.957426 1 1 PV1-V-684 \N \N f 1288 1 2 525 49.00 0.00 0.00 49.00 2 2019-10-23 2019-10-23 17:40:58.946855 2019-10-23 17:41:04.55468 1 1 PV1-V-685 \N \N f 1289 1 27 524 1129.00 0.00 0.00 1129.00 2 2019-10-23 2019-10-23 18:49:05.463261 2019-10-23 18:49:16.116063 1 19 PV2-V-518 \N \N f 1291 211 23 521 2930.17 468.83 0.00 3399.00 2 2019-10-23 2019-10-23 23:33:15.907175 2019-11-09 00:11:54.287857 2 13 PV3-V-86 2019-11-27 \N f 1324 218 2 539 1338.00 0.00 0.00 1338.00 2 2019-10-29 2019-10-29 18:36:55.510115 2019-11-11 19:22:54.051039 2 1 PV1-V-700 2019-12-03 \N f 1292 1 2 525 789.00 0.00 0.00 789.00 2 2019-10-23 2019-10-23 23:37:04.543073 2019-10-23 23:37:11.504117 1 1 PV1-V-686 \N \N f 1293 1 27 524 301.72 48.28 0.00 350.00 2 2019-10-23 2019-10-24 00:22:29.254203 2019-10-24 00:23:09.076599 1 19 PV2-V-519 \N \N f 1281 208 2 519 569.00 0.00 0.00 569.00 2 2019-10-21 2019-10-21 23:56:48.570433 2019-11-15 23:57:23.24662 2 18 PV1-V-681 2019-11-25 \N f 1295 1 26 527 699.00 0.00 0.00 699.00 2 2019-10-24 2019-10-24 19:34:15.016635 2019-10-24 19:34:50.072218 1 15 PV2-V-521 \N \N f 1323 217 27 536 699.00 0.00 0.00 699.00 2 2019-10-28 2019-10-29 01:24:34.270737 2019-11-21 19:41:35.443796 2 19 PV2-V-531 2019-12-02 \N f 1297 1 23 526 699.00 0.00 0.00 699.00 2 2019-10-24 2019-10-25 00:14:52.408884 2019-10-25 00:15:02.447713 1 13 PV3-V-87 \N \N f 1298 1 27 529 1129.00 0.00 0.00 1129.00 2 2019-10-25 2019-10-25 18:22:41.383934 2019-10-25 18:23:32.645741 1 19 PV2-V-523 \N \N f 1299 1 24 529 759.00 0.00 0.00 759.00 2 2019-10-25 2019-10-25 21:20:24.438108 2019-10-25 21:20:30.701131 1 11 PV2-V-524 \N \N f 1316 1 26 535 839.00 0.00 0.00 839.00 2 2019-10-27 2019-10-27 20:07:41.646787 2019-10-27 20:08:00.20577 1 15 PV2-V-528 \N \N f 1301 1 2 528 699.00 0.00 0.00 699.00 2 2019-10-25 2019-10-25 21:29:19.380961 2019-10-25 21:29:24.254447 1 1 PV1-V-688 \N \N f 1303 1 2 528 179.00 0.00 0.00 179.00 2 2019-10-25 2019-10-25 21:46:44.061063 2019-10-25 21:47:50.561236 1 1 PV1-V-690 \N \N f 1304 214 2 528 299.00 0.00 0.00 299.00 2 2019-10-25 2019-10-25 21:50:32.173847 2019-10-26 00:38:24.087904 2 1 PV1-V-691 2019-11-29 \N f 1306 1 21 530 1399.00 0.00 0.00 1399.00 2 2019-10-25 2019-10-26 01:02:15.91248 2019-10-26 01:02:21.431039 1 12 PV3-V-88 \N \N f 1300 1 2 528 689.00 0.00 0.00 689.00 1 2019-10-25 2019-10-25 21:22:28.791233 2019-10-26 01:37:44.473204 1 1 PV1-V-687 \N \N f 1307 1 2 528 599.00 0.00 0.00 599.00 2 2019-10-25 2019-10-26 01:37:59.926623 2019-10-26 01:38:04.327492 1 1 PV1-V-693 \N \N f 1308 1 25 532 999.00 0.00 0.00 999.00 2 2019-10-26 2019-10-26 19:24:26.074785 2019-10-26 19:24:32.59311 1 1 PV1-V-694 \N \N f 1309 1 23 531 549.00 0.00 0.00 549.00 2 2019-10-26 2019-10-26 22:21:57.409305 2019-10-26 22:22:01.749833 1 13 PV3-V-89 \N \N f 1310 1 2 532 869.00 0.00 0.00 869.00 2 2019-10-26 2019-10-26 23:03:31.594205 2019-10-26 23:05:15.303692 1 1 PV1-V-695 \N \N f 1305 215 2 528 839.00 0.00 0.00 839.00 4 2019-10-25 2019-10-26 00:29:09.296896 2020-02-11 22:55:43.176712 2 1 PV1-V-692 2019-11-29 \N f 1312 1 2 532 99.00 0.00 0.00 99.00 2 2019-10-26 2019-10-27 00:38:28.285186 2019-10-27 00:38:40.933012 1 1 PV1-V-697 \N \N f 1313 1 26 535 42.24 6.76 0.00 49.00 2 2019-10-27 2019-10-27 19:40:16.41662 2019-10-27 19:40:21.203621 1 15 PV2-V-525 \N \N f 1314 1 26 535 649.00 0.00 0.00 649.00 2 2019-10-27 2019-10-27 19:44:28.684751 2019-10-27 19:45:08.896287 1 15 PV2-V-526 \N \N f 1315 1 26 535 692.24 82.76 100.00 675.00 2 2019-10-27 2019-10-27 19:47:36.58312 2019-10-27 19:47:44.543516 1 15 PV2-V-527 \N \N f 1317 1 26 535 789.00 0.00 0.00 789.00 2 2019-10-27 2019-10-27 20:39:30.381624 2019-10-27 20:39:34.239269 1 15 PV2-V-529 \N \N f 1318 1 2 537 1378.45 220.55 0.00 1599.00 2 2019-10-28 2019-10-28 18:47:17.984043 2019-10-28 18:47:22.670402 1 1 PV1-V-698 \N \N f 1319 1 27 536 1548.00 0.00 0.00 1548.00 2 2019-10-28 2019-10-28 20:44:53.742053 2019-10-28 20:45:50.473028 1 19 PV2-V-530 \N \N f 1320 1 2 537 1199.00 0.00 0.00 1199.00 2 2019-10-28 2019-10-28 21:01:33.54727 2019-10-28 21:02:08.465491 1 1 PV1-V-699 \N \N f 1321 1 21 534 1119.83 179.17 0.00 1299.00 2 2019-10-28 2019-10-28 22:39:58.441276 2019-10-28 22:40:43.389179 1 12 PV3-V-90 \N \N f 1322 1 21 534 471.24 6.76 0.00 478.00 2 2019-10-28 2019-10-29 00:56:42.612355 2019-10-29 00:57:00.434928 1 12 PV3-V-91 \N \N f 1285 209 2 522 729.00 0.00 0.00 729.00 2 2019-10-22 2019-10-22 23:45:23.021121 2019-11-23 01:05:12.698467 2 1 PV1-V-683 2019-11-26 \N f 1277 207 23 517 1198.00 0.00 0.00 1198.00 2 2019-10-21 2019-10-21 20:21:29.42014 2019-11-13 18:21:32.838564 2 13 PV3-V-84 2019-11-25 \N f 1325 1 26 540 599.00 0.00 0.00 599.00 2 2019-10-29 2019-10-29 19:35:42.623754 2019-10-29 19:35:55.523453 1 15 PV2-V-532 \N \N f 1326 1 24 540 699.00 0.00 0.00 699.00 2 2019-10-29 2019-10-29 20:34:46.407292 2019-10-29 20:35:20.334785 1 15 PV2-V-533 \N \N f 1328 1 2 539 99.00 0.00 0.00 99.00 2 2019-10-29 2019-10-29 20:58:36.655567 2019-10-29 20:58:44.043221 1 1 PV1-V-702 \N \N f 1329 1 2 539 599.00 0.00 0.00 599.00 2 2019-10-29 2019-10-30 02:36:32.280622 2019-10-30 02:36:37.61972 1 1 PV1-V-703 \N \N f 1311 216 2 532 1518.00 0.00 0.00 1518.00 2 2019-10-26 2019-10-27 00:36:10.715929 2019-11-27 00:11:03.531425 2 1 PV1-V-696 2019-11-30 \N f 1331 1 26 543 699.00 0.00 0.00 699.00 2 2019-10-30 2019-10-30 21:10:50.730342 2019-10-30 21:10:55.864916 1 11 PV2-V-534 \N \N f 1332 1 23 542 589.00 0.00 0.00 589.00 2 2019-10-30 2019-10-31 01:27:27.109314 2019-10-31 01:28:19.269292 1 13 PV3-V-92 \N \N f 1333 1 27 543 699.00 0.00 0.00 699.00 2 2019-10-30 2019-10-31 02:15:50.999445 2019-10-31 02:16:17.549437 1 11 PV2-V-535 \N \N f 1334 1 27 543 75.00 0.00 0.00 75.00 2 2019-10-30 2019-10-31 02:18:09.102896 2019-10-31 02:18:50.170631 1 11 PV2-V-536 \N \N f 1335 1 2 546 569.00 0.00 0.00 569.00 2 2019-10-31 2019-10-31 20:07:55.27392 2019-10-31 20:08:13.029323 1 1 PV1-V-705 \N \N f 1336 1 2 546 2388.00 0.00 0.00 2388.00 2 2019-10-31 2019-10-31 21:26:33.359111 2019-10-31 21:26:39.456011 1 1 PV1-V-706 \N \N f 1327 219 2 539 599.00 0.00 0.00 599.00 2 2019-10-29 2019-10-29 20:57:47.270428 2019-10-31 21:33:34.026606 2 1 PV1-V-701 2019-12-03 \N f 1290 210 23 521 1378.45 220.55 0.00 1599.00 2 2019-10-23 2019-10-23 23:15:34.558355 2019-11-07 23:34:32.765046 2 13 PV3-V-85 2019-11-27 \N f 1337 1 24 545 169.00 0.00 0.00 169.00 2 2019-10-31 2019-10-31 21:42:37.010581 2019-10-31 21:42:43.830076 1 11 PV2-V-537 \N \N f 1338 1 24 545 119.00 0.00 0.00 119.00 2 2019-10-31 2019-10-31 21:45:19.208171 2019-10-31 21:45:35.587214 1 11 PV2-V-538 \N \N f 1339 1 2 546 119.00 0.00 0.00 119.00 2 2019-10-31 2019-10-31 21:46:32.462768 2019-10-31 21:46:38.108785 1 1 PV1-V-707 \N \N f 1340 1 26 545 1399.00 0.00 0.00 1399.00 2 2019-10-31 2019-10-31 22:28:35.620892 2019-10-31 22:28:57.008856 1 19 PV2-V-539 \N \N f 1341 1 23 544 42.24 6.76 0.00 49.00 2 2019-10-31 2019-10-31 22:34:56.702043 2019-10-31 22:35:04.404593 1 13 PV3-V-93 \N \N f 1342 1 23 544 499.00 0.00 0.00 499.00 2 2019-10-31 2019-10-31 22:51:20.093947 2019-10-31 22:51:24.291799 1 13 PV3-V-94 \N \N f 1343 1 2 546 2099.00 0.00 0.00 2099.00 2 2019-10-31 2019-10-31 23:35:57.483181 2019-10-31 23:36:44.433281 1 1 PV1-V-708 \N \N f 1344 1 27 545 1358.00 0.00 0.00 1358.00 2 2019-10-31 2019-11-01 01:24:52.264807 2019-11-01 01:25:34.610561 1 19 PV2-V-540 \N \N f 1374 191 26 560 999.00 0.00 0.00 999.00 2 2019-11-06 2019-11-06 19:51:30.013147 2019-12-15 20:33:25.674008 2 15 PV2-V-550 2019-12-11 \N f 1346 1 23 547 1335.03 192.96 0.00 1527.99 2 2019-11-01 2019-11-01 20:34:14.263763 2019-11-01 20:35:34.906802 1 13 PV3-V-95 \N \N f 1347 1 2 549 1288.00 0.00 0.00 1288.00 2 2019-11-01 2019-11-02 00:43:44.875689 2019-11-02 00:43:49.655814 1 1 PV1-V-710 \N \N f 1348 1 23 547 404.31 64.69 0.00 469.00 2 2019-11-01 2019-11-02 00:53:35.971074 2019-11-02 00:53:40.313589 1 13 PV3-V-96 \N \N f 1349 1 27 548 839.00 0.00 0.00 839.00 2 2019-11-01 2019-11-02 01:10:38.332866 2019-11-02 01:11:32.73836 1 19 PV2-V-541 \N \N f 1350 1 2 549 1599.00 0.00 0.00 1599.00 2 2019-11-01 2019-11-02 01:34:11.872336 2019-11-02 01:34:27.960846 1 3 PV1-V-711 \N \N f 1352 1 23 547 499.00 0.00 0.00 499.00 2 2019-11-01 2019-11-02 01:40:05.198438 2019-11-02 01:40:41.78535 1 13 PV3-V-97 \N \N f 1351 1 27 548 599.00 0.00 0.00 599.00 2 2019-11-01 2019-11-02 01:36:36.874526 2019-11-02 01:44:56.500302 1 19 PV2-V-542 \N \N f 1357 225 27 553 589.00 0.00 0.00 589.00 2 2019-11-03 2019-11-03 17:41:29.743974 2019-11-28 17:32:50.529948 2 19 PV2-V-546 2019-12-08 \N f 1354 1 26 551 839.00 0.00 0.00 839.00 2 2019-11-02 2019-11-02 19:55:02.32709 2019-11-02 19:55:10.464209 1 15 PV2-V-543 \N \N f 1355 1 26 551 1358.00 0.00 0.00 1358.00 2 2019-11-02 2019-11-02 20:45:41.10685 2019-11-02 20:46:39.557721 1 15 PV2-V-544 \N \N f 1356 1 26 551 120.00 0.00 0.00 120.00 2 2019-11-02 2019-11-02 21:28:13.342981 2019-11-02 21:28:18.952651 1 15 PV2-V-545 \N \N f 1397 234 21 571 1199.00 0.00 0.00 1199.00 2 2019-11-11 2019-11-11 18:17:10.925075 2019-12-02 21:04:48.64965 2 12 PV3-V-111 2019-12-16 \N f 1358 1 23 550 99.00 0.00 0.00 99.00 2 2019-11-03 2019-11-03 18:23:11.543019 2019-11-03 18:23:35.631279 1 13 PV3-V-99 \N \N f 1359 1 23 550 499.00 0.00 0.00 499.00 2 2019-11-03 2019-11-03 18:25:06.872845 2019-11-03 18:25:11.602511 1 13 PV3-V-100 \N \N f 1360 226 23 550 769.00 0.00 0.00 769.00 1 2019-11-03 2019-11-03 18:26:42.507247 2019-11-03 18:29:55.429152 2 13 PV3-V-101 2019-12-08 \N f 1401 213 2 574 789.00 0.00 0.00 789.00 2 2019-11-11 2019-11-11 22:41:39.91142 2019-11-19 23:47:17.902346 2 1 PV1-V-728 2019-12-16 \N f 1362 1 23 550 499.00 0.00 0.00 499.00 2 2019-11-03 2019-11-03 22:28:48.417646 2019-11-03 22:29:00.241833 1 13 PV3-V-103 \N \N f 1363 1 2 556 1899.00 0.00 0.00 1899.00 2 2019-11-04 2019-11-04 19:35:00.842853 2019-11-04 19:35:09.577587 1 1 PV1-V-712 \N \N f 1371 230 24 560 649.00 0.00 0.00 649.00 2 2019-11-06 2019-11-06 17:45:25.199143 2019-11-22 17:36:36.404674 2 11 PV2-V-548 2019-12-11 \N f 1365 1 21 555 2498.00 0.00 0.00 2498.00 2 2019-11-04 2019-11-05 01:06:10.901714 2019-11-05 01:06:25.15865 1 12 PV3-V-104 \N \N f 1364 227 2 556 969.00 0.00 0.00 969.00 2 2019-11-04 2019-11-04 21:54:43.209909 2019-11-22 02:28:07.097349 2 1 PV1-V-713 2019-12-09 \N f 1367 1 2 556 949.00 0.00 199.00 750.00 2 2019-11-04 2019-11-05 01:59:08.007774 2019-11-05 01:59:12.932741 1 1 PV1-V-714 \N \N f 1368 1 21 555 99.00 0.00 0.00 99.00 2 2019-11-04 2019-11-05 03:06:44.235418 2019-11-05 03:06:49.143592 1 12 PV3-V-106 \N \N f 1369 1 2 558 599.00 0.00 0.00 599.00 2 2019-11-05 2019-11-05 19:23:54.674953 2019-11-05 19:24:13.313278 1 1 PV1-V-715 \N \N f 1398 148 2 574 729.00 0.00 0.00 729.00 2 2019-11-11 2019-11-11 20:29:07.613141 2019-11-22 20:45:31.716566 2 1 PV1-V-726 2019-12-16 \N f 1372 1 26 560 3006.00 0.00 0.00 3006.00 2 2019-11-06 2019-11-06 19:01:08.89693 2019-11-06 19:01:33.202066 1 15 PV2-V-549 \N \N f 1373 1 23 557 2398.00 0.00 0.00 2398.00 2 2019-11-06 2019-11-06 19:04:42.491301 2019-11-06 19:04:53.503738 1 13 PV3-V-107 \N \N f 1399 235 2 574 1049.00 0.00 0.00 1049.00 2 2019-11-11 2019-11-11 21:43:54.978424 2019-12-24 01:23:21.371759 2 1 PV1-V-727 2019-12-16 \N f 1361 226 23 550 769.00 0.00 0.00 769.00 2 2019-11-03 2019-11-03 18:30:49.525723 2019-11-16 18:50:39.516764 2 13 PV3-V-102 2019-12-08 \N f 1376 1 24 560 639.00 0.00 0.00 639.00 2 2019-11-06 2019-11-06 23:17:32.828296 2019-11-06 23:17:51.205957 1 11 PV2-V-551 \N \N f 1377 1 23 557 301.72 48.28 0.00 350.00 2 2019-11-06 2019-11-07 02:12:41.153974 2019-11-07 02:12:52.634981 1 14 PV3-V-108 \N \N f 1378 1 26 563 699.00 0.00 0.00 699.00 2 2019-11-07 2019-11-07 17:34:03.349487 2019-11-07 17:34:18.547711 1 11 PV2-V-552 \N \N f 1379 1 26 563 529.00 0.00 0.00 529.00 2 2019-11-07 2019-11-07 18:45:26.09324 2019-11-07 18:45:36.04163 1 15 PV2-V-553 \N \N f 1380 1 23 562 125.00 0.00 0.00 125.00 2 2019-11-07 2019-11-07 23:38:24.663875 2019-11-07 23:38:53.328372 1 13 PV3-V-109 \N \N f 1381 1 26 563 1108.00 0.00 0.00 1108.00 2 2019-11-07 2019-11-08 00:25:59.757965 2019-11-08 00:26:06.793145 1 15 PV2-V-554 \N \N f 1375 231 2 561 829.00 0.00 0.00 829.00 2 2019-11-06 2019-11-06 22:00:05.275576 2019-11-13 22:32:29.414379 2 1 PV1-V-716 2019-12-11 \N f 1383 1 2 566 299.00 0.00 0.00 299.00 2 2019-11-08 2019-11-08 21:26:32.322221 2019-11-08 21:27:26.233599 1 1 PV1-V-717 \N \N f 1385 1 27 565 849.00 0.00 0.00 849.00 2 2019-11-08 2019-11-09 01:12:58.117332 2019-11-09 01:13:20.8707 1 19 PV2-V-555 \N \N f 1386 1 2 566 789.00 0.00 0.00 789.00 2 2019-11-08 2019-11-09 01:44:36.267462 2019-11-09 01:44:51.136533 1 1 PV1-V-719 \N \N f 1387 1 26 568 1359.00 0.00 0.00 1359.00 2 2019-11-09 2019-11-09 17:28:37.621932 2019-11-09 17:28:46.991153 1 15 PV2-V-556 \N \N f 1388 1 26 568 549.00 0.00 0.00 549.00 2 2019-11-09 2019-11-09 17:29:16.517409 2019-11-09 17:30:12.913456 1 15 PV2-V-557 \N \N f 1389 1 2 570 1438.00 0.00 0.00 1438.00 2 2019-11-09 2019-11-09 19:35:47.256425 2019-11-09 19:36:04.310844 1 1 PV1-V-720 \N \N f 1390 1 2 570 1299.00 0.00 0.00 1299.00 2 2019-11-09 2019-11-09 21:06:52.304018 2019-11-09 21:06:56.84316 1 1 PV1-V-721 \N \N f 1391 1 2 570 699.00 0.00 0.00 699.00 2 2019-11-09 2019-11-10 00:33:17.412532 2019-11-10 00:33:24.375633 1 1 PV1-V-722 \N \N f 1384 122 2 566 1298.00 0.00 0.00 1298.00 2 2019-11-08 2019-11-08 21:52:52.456263 2020-04-29 01:45:41.399427 0 3 PV1-V-718 \N \N f 1393 1 26 568 899.00 0.00 0.00 899.00 2 2019-11-09 2019-11-10 02:18:58.390452 2019-11-10 02:19:32.058386 1 19 PV2-V-558 \N \N f 1394 1 26 572 430.17 68.83 0.00 499.00 2 2019-11-10 2019-11-10 17:38:30.941418 2019-11-10 17:38:34.940321 1 15 PV2-V-559 \N \N f 1395 1 25 573 3247.00 0.00 0.00 3247.00 2 2019-11-10 2019-11-10 22:06:51.397752 2019-11-10 22:09:04.654635 1 16 PV1-V-724 \N \N f 1396 1 25 573 719.00 0.00 59.00 660.00 2 2019-11-10 2019-11-10 22:17:05.758196 2019-11-10 22:17:13.55568 1 1 PV1-V-725 \N \N f 1345 222 25 549 1338.00 0.00 0.00 1338.00 2 2019-11-01 2019-11-01 19:00:37.150836 2019-12-09 21:35:48.481931 2 16 PV1-V-709 2019-12-06 \N f 1353 223 23 547 1599.00 0.00 0.00 1599.00 2 2019-11-01 2019-11-02 02:02:49.836633 2019-11-28 02:51:50.701926 2 13 PV3-V-98 2019-12-06 \N f 1370 229 26 559 1299.00 0.00 0.00 1299.00 4 2019-11-05 2019-11-06 01:21:00.597701 2020-01-02 21:40:53.478232 2 19 PV2-V-547 2019-12-10 \N f 1400 1 27 575 789.00 0.00 0.00 789.00 1 2019-11-11 2019-11-11 22:16:38.048353 2019-11-11 22:16:47.784907 1 15 PV2-V-560 \N \N f 1366 228 21 555 1199.00 0.00 0.00 1199.00 2 2019-11-04 2019-11-05 01:41:41.92856 2019-11-22 01:25:12.588185 2 12 PV3-V-105 2019-12-09 \N f 1382 232 23 567 1199.00 0.00 0.00 1199.00 2 2019-11-08 2019-11-08 19:35:23.120955 2019-11-12 20:18:05.025659 2 13 PV3-V-110 2019-12-13 \N f 1392 233 2 570 1899.00 0.00 0.00 1899.00 4 2019-11-09 2019-11-10 02:03:38.804156 2020-01-24 19:08:51.049141 2 1 PV1-V-723 2019-12-14 \N f 1402 236 2 574 1899.00 0.00 0.00 1899.00 2 2019-11-11 2019-11-11 22:46:55.200952 2019-11-22 20:43:51.854543 2 1 PV1-V-729 2019-12-16 \N f 1404 1 2 574 1598.00 0.00 399.50 1198.50 2 2019-11-11 2019-11-12 02:44:59.962725 2019-11-12 02:45:27.022153 1 1 PV1-V-730 \N \N f 1463 242 23 595 2099.00 0.00 0.00 2099.00 2 2019-11-18 2019-11-18 18:31:40.163371 2020-01-07 21:27:38.311364 2 12 PV3-V-129 2019-12-23 \N f 1406 1 2 577 598.00 0.00 0.00 598.00 2 2019-11-12 2019-11-12 23:46:27.616716 2019-11-12 23:46:43.45002 1 1 PV1-V-732 \N \N f 1407 1 23 576 799.00 0.00 0.00 799.00 2 2019-11-12 2019-11-13 01:07:30.570854 2019-11-13 01:07:49.230854 1 13 PV3-V-112 \N \N f 1408 1 2 577 779.00 0.00 0.00 779.00 2 2019-11-12 2019-11-13 01:35:49.415895 2019-11-13 01:35:53.543571 1 1 PV1-V-733 \N \N f 1409 1 2 577 1658.00 0.00 0.00 1658.00 2 2019-11-12 2019-11-13 01:58:29.146379 2019-11-13 01:59:38.870595 1 1 PV1-V-734 \N \N f 1410 1 26 578 459.00 0.00 0.00 459.00 2 2019-11-12 2019-11-13 02:46:11.750462 2019-11-13 02:46:21.636255 1 15 PV2-V-562 \N \N f 1411 1 2 580 2033.34 13.65 0.00 2046.99 2 2019-11-13 2019-11-13 19:07:37.359552 2019-11-13 19:08:00.745001 1 1 PV1-V-735 \N \N f 1412 1 2 580 42.24 6.76 0.00 49.00 2 2019-11-13 2019-11-13 19:09:45.949763 2019-11-13 19:09:50.35599 1 1 PV1-V-736 \N \N f 1413 1 2 580 214.00 0.00 0.00 214.00 2 2019-11-13 2019-11-13 21:19:48.075114 2019-11-13 21:20:00.354185 1 1 PV1-V-737 \N \N f 1414 1 2 580 999.00 0.00 0.00 999.00 2 2019-11-13 2019-11-13 22:19:20.222524 2019-11-13 22:19:24.312119 1 1 PV1-V-738 \N \N f 1405 191 2 577 469.00 0.00 0.00 469.00 2 2019-11-12 2019-11-12 20:32:28.303971 2019-12-15 20:04:41.457605 2 1 PV1-V-731 2019-12-17 \N f 1416 1 2 580 2367.00 0.00 0.00 2367.00 2 2019-11-13 2019-11-13 22:38:01.227415 2019-11-13 22:39:44.683589 1 1 PV1-V-740 \N \N f 1417 1 2 580 2276.00 0.00 0.00 2276.00 2 2019-11-13 2019-11-13 22:43:01.546625 2019-11-13 22:47:41.891953 1 1 PV1-V-741 \N \N f 1418 1 27 581 699.00 0.00 0.00 699.00 2 2019-11-13 2019-11-14 00:34:23.669578 2019-11-14 00:34:34.058919 1 19 PV2-V-563 \N \N f 1433 1 27 586 459.00 0.00 0.00 459.00 2 2019-11-15 2019-11-15 22:57:43.228343 2019-11-15 22:58:14.902506 1 19 PV2-V-569 \N \N f 1420 1 21 579 149.00 0.00 0.00 149.00 2 2019-11-13 2019-11-14 03:02:46.003246 2019-11-14 03:02:51.743897 1 12 PV3-V-114 \N \N f 1421 1 27 583 699.00 0.00 0.00 699.00 2 2019-11-14 2019-11-14 22:53:09.277868 2019-11-14 22:53:43.339173 1 19 PV2-V-564 \N \N f 1422 1 27 583 789.00 0.00 0.00 789.00 1 2019-11-14 2019-11-14 23:09:45.026381 2019-11-14 23:10:36.331476 1 19 PV2-V-565 \N \N f 1423 1 27 583 789.00 0.00 0.00 789.00 2 2019-11-14 2019-11-14 23:11:50.430727 2019-11-14 23:12:06.523201 1 19 PV2-V-566 \N \N f 1424 1 23 582 569.00 0.00 0.00 569.00 2 2019-11-14 2019-11-15 01:47:59.273799 2019-11-15 01:48:57.432839 1 13 PV3-V-115 \N \N f 1419 238 21 579 1099.00 0.00 0.00 1099.00 2 2019-11-13 2019-11-14 03:02:05.558093 2019-11-15 01:51:45.030571 2 13 PV3-V-113 2019-12-18 \N f 1425 1 27 586 649.00 0.00 0.00 649.00 2 2019-11-15 2019-11-15 17:38:55.199497 2019-11-15 17:39:13.42313 1 19 PV2-V-567 \N \N f 1426 1 2 587 469.00 0.00 0.00 469.00 2 2019-11-15 2019-11-15 17:46:25.065271 2019-11-15 17:46:28.84918 1 1 PV1-V-742 \N \N f 1427 1 27 586 1299.00 0.00 0.00 1299.00 2 2019-11-15 2019-11-15 17:56:44.807082 2019-11-15 17:57:22.224998 1 19 PV2-V-568 \N \N f 1428 1 2 587 999.00 0.00 0.00 999.00 2 2019-11-15 2019-11-15 18:52:27.765871 2019-11-15 18:52:58.006805 1 1 PV1-V-743 \N \N f 1429 1 23 585 759.00 0.00 0.00 759.00 2 2019-11-15 2019-11-15 18:52:55.807311 2019-11-15 18:53:05.214053 1 13 PV3-V-116 \N \N f 1430 1 2 587 139.00 0.00 0.00 139.00 2 2019-11-15 2019-11-15 19:31:15.90456 2019-11-15 19:32:03.486792 1 1 PV1-V-744 \N \N f 1431 1 2 587 199.00 0.00 0.00 199.00 2 2019-11-15 2019-11-15 20:28:46.942922 2019-11-15 20:29:25.350176 1 1 PV1-V-745 \N \N f 1434 1 23 585 139.00 0.00 0.00 139.00 2 2019-11-15 2019-11-15 23:38:47.061065 2019-11-15 23:38:53.523302 1 13 PV3-V-117 \N \N f 1435 1 23 585 775.00 124.00 0.00 899.00 2 2019-11-15 2019-11-16 00:35:41.007642 2019-11-16 00:36:13.700031 1 13 PV3-V-118 \N \N f 1436 1 23 585 1699.00 0.00 0.00 1699.00 1 2019-11-15 2019-11-16 01:10:01.421635 2019-11-16 01:10:46.548794 1 13 PV3-V-119 \N \N f 1437 1 23 585 2498.00 0.00 0.00 2498.00 2 2019-11-15 2019-11-16 01:11:03.847823 2019-11-16 01:11:53.606861 1 13 PV3-V-120 \N \N f 1438 1 23 585 788.00 0.00 0.00 788.00 2 2019-11-15 2019-11-16 01:14:09.727193 2019-11-16 01:14:13.97621 1 13 PV3-V-121 \N \N f 1439 1 23 585 1599.00 0.00 0.00 1599.00 2 2019-11-15 2019-11-16 01:30:51.021525 2019-11-16 01:30:55.902812 1 13 PV3-V-122 \N \N f 1440 1 27 586 549.00 0.00 0.00 549.00 2 2019-11-15 2019-11-16 01:37:11.984445 2019-11-16 01:37:54.146939 1 19 PV2-V-570 \N \N f 1441 1 27 586 1358.00 0.00 0.00 1358.00 2 2019-11-15 2019-11-16 01:39:04.659452 2019-11-16 01:40:08.643915 1 19 PV2-V-571 \N \N f 1442 1 27 586 1199.00 0.00 0.00 1199.00 2 2019-11-15 2019-11-16 02:14:13.455217 2019-11-16 02:15:04.354393 1 19 PV2-V-572 \N \N f 1443 1 23 585 729.00 0.00 0.00 729.00 2 2019-11-15 2019-11-16 02:27:43.98128 2019-11-16 02:28:27.084011 1 13 PV3-V-123 \N \N f 1444 1 23 585 115.00 0.00 0.00 115.00 2 2019-11-15 2019-11-16 02:32:29.177991 2019-11-16 02:32:35.566998 1 13 PV3-V-124 \N \N f 1445 1 2 589 689.00 0.00 0.00 689.00 2 2019-11-16 2019-11-16 20:41:49.85005 2019-11-16 20:41:54.472633 1 1 PV1-V-747 \N \N f 1446 1 24 590 699.00 0.00 0.00 699.00 2 2019-11-16 2019-11-16 20:44:43.922665 2019-11-16 20:45:07.168961 1 11 PV2-V-573 \N \N f 1447 1 26 590 189.00 0.00 0.00 189.00 2 2019-11-16 2019-11-16 21:03:39.905486 2019-11-16 21:03:46.241159 1 19 PV2-V-574 \N \N f 1448 1 27 590 2157.00 0.00 0.00 2157.00 2 2019-11-16 2019-11-16 21:08:20.122869 2019-11-16 21:09:44.390739 1 19 PV2-V-575 \N \N f 1449 1 27 590 85.34 13.65 0.00 98.99 2 2019-11-16 2019-11-16 21:24:26.344942 2019-11-16 21:24:34.03045 1 19 PV2-V-576 \N \N f 1450 1 23 588 1650.17 148.83 720.00 1079.00 2 2019-11-16 2019-11-16 21:46:09.207401 2019-11-16 21:46:22.840941 1 13 PV3-V-125 \N \N f 1451 1 23 588 119.00 0.00 0.00 119.00 2 2019-11-16 2019-11-16 21:46:55.533761 2019-11-16 21:46:59.34961 1 13 PV3-V-126 \N \N f 1452 1 2 589 789.00 0.00 0.00 789.00 2 2019-11-16 2019-11-16 22:29:54.225254 2019-11-16 22:29:58.482455 1 1 PV1-V-748 \N \N f 1453 1 2 589 204.00 0.00 0.00 204.00 2 2019-11-16 2019-11-16 22:48:56.661874 2019-11-16 22:49:26.395402 1 1 PV1-V-749 \N \N f 1462 241 26 593 699.00 0.00 0.00 699.00 2 2019-11-17 2019-11-17 22:17:55.885189 2019-12-05 00:13:08.412372 2 15 PV2-V-580 2019-12-22 \N f 1455 1 2 589 1288.00 0.00 0.00 1288.00 2 2019-11-16 2019-11-17 00:34:08.921041 2019-11-17 00:34:18.348834 1 1 PV1-V-751 \N \N f 1456 1 2 589 1429.00 0.00 0.00 1429.00 2 2019-11-16 2019-11-17 01:10:14.148057 2019-11-17 01:10:52.21939 1 1 PV1-V-752 \N \N f 1457 1 23 588 2841.44 256.55 1238.00 1859.99 2 2019-11-16 2019-11-17 01:13:05.980087 2019-11-17 01:13:15.489416 1 13 PV3-V-127 \N \N f 1458 1 23 588 1448.00 0.00 0.00 1448.00 2 2019-11-16 2019-11-17 02:09:02.716988 2019-11-17 02:10:03.355249 1 13 PV3-V-128 \N \N f 1459 1 27 592 869.00 0.00 131.00 738.00 2 2019-11-17 2019-11-17 20:02:08.234415 2019-11-17 20:02:18.511945 1 19 PV2-V-577 \N \N f 1460 1 27 592 549.00 0.00 83.00 466.00 2 2019-11-17 2019-11-17 20:04:54.523943 2019-11-17 20:05:17.506006 1 19 PV2-V-578 \N \N f 1461 241 26 593 1398.00 0.00 0.00 1398.00 1 2019-11-17 2019-11-17 22:17:12.050333 2019-11-17 22:17:30.228331 2 15 PV2-V-579 2019-12-22 \N f 1415 237 2 580 310.00 0.00 0.00 310.00 2 2019-11-13 2019-11-13 22:30:41.28329 2019-12-07 22:01:46.010385 2 1 PV1-V-739 2019-12-18 \N f 1432 239 2 587 989.00 0.00 0.00 989.00 2 2019-11-15 2019-11-15 20:34:05.034763 2019-11-18 19:02:05.553517 2 1 PV1-V-746 2019-12-20 \N f 1464 1 2 596 569.00 0.00 84.00 485.00 2 2019-11-18 2019-11-18 19:03:21.321494 2019-11-18 19:03:33.389277 1 1 PV1-V-753 \N \N f 1465 1 2 596 1099.00 0.00 165.00 934.00 2 2019-11-18 2019-11-18 19:07:21.174441 2019-11-18 19:07:26.169788 1 1 PV1-V-754 \N \N f 1466 1 2 596 1429.38 58.62 221.00 1267.00 2 2019-11-18 2019-11-18 19:17:13.484854 2019-11-18 19:17:18.590653 1 1 PV1-V-755 \N \N f 1403 213 27 575 789.00 0.00 0.00 789.00 2 2019-11-11 2019-11-12 01:02:13.975315 2019-11-19 23:45:22.431962 2 19 PV2-V-561 2019-12-16 \N f 1454 240 2 589 749.00 0.00 0.00 749.00 2 2019-11-16 2019-11-16 22:59:22.188815 2019-11-30 21:58:15.96445 2 1 PV1-V-750 2019-12-21 \N f 1467 1 2 596 75.00 0.00 0.00 75.00 2 2019-11-18 2019-11-18 19:35:04.683484 2019-11-18 19:35:27.178817 1 1 PV1-V-756 \N \N f 1468 1 2 596 1317.00 0.00 117.00 1200.00 2 2019-11-18 2019-11-18 22:22:02.967116 2019-11-18 22:22:10.306244 1 1 PV1-V-757 \N \N f 1469 1 2 596 1899.00 0.00 284.00 1615.00 2 2019-11-18 2019-11-18 22:27:41.562458 2019-11-18 22:29:34.602112 1 1 PV1-V-758 \N \N f 1470 1 21 595 699.00 0.00 104.85 594.15 2 2019-11-18 2019-11-19 02:50:26.276567 2019-11-19 02:50:43.800877 1 12 PV3-V-130 \N \N f 1498 1 23 607 629.00 0.00 0.00 629.00 2 2019-11-23 2019-11-23 22:28:36.062543 2019-11-23 22:28:44.901811 1 13 PV3-V-135 \N \N f 1471 1 2 598 149.00 0.00 0.00 149.00 1 2019-11-19 2019-11-19 19:00:09.826681 2019-11-19 19:08:58.912481 1 1 PV1-V-759 \N \N f 1472 1 2 598 218.00 0.00 0.00 218.00 2 2019-11-19 2019-11-19 19:10:08.642403 2019-11-19 19:10:21.139009 1 1 PV1-V-760 \N \N f 1473 1 23 597 799.00 0.00 0.00 799.00 2 2019-11-19 2019-11-19 22:21:02.554635 2019-11-19 22:21:11.109625 1 13 PV3-V-131 \N \N f 1474 1 2 601 1549.00 0.00 0.00 1549.00 2 2019-11-20 2019-11-20 20:32:12.795387 2019-11-20 20:32:19.410294 1 1 PV1-V-761 \N \N f 1485 167 2 606 969.00 0.00 0.00 969.00 2 2019-11-22 2019-11-22 17:50:55.111013 2020-02-27 21:57:06.706617 2 1 PV1-V-768 2019-12-27 \N f 1476 1 2 601 1629.00 0.00 0.00 1629.00 2 2019-11-20 2019-11-20 22:01:53.70035 2019-11-20 22:02:13.922022 1 1 PV1-V-763 \N \N f 1477 1 2 601 459.00 0.00 0.00 459.00 2 2019-11-20 2019-11-21 01:53:04.204245 2019-11-21 01:53:35.897817 1 1 PV1-V-764 \N \N f 1488 245 2 606 1429.00 0.00 0.00 1429.00 2 2019-11-22 2019-11-23 01:00:44.830339 2019-12-04 01:26:02.350198 2 1 PV1-V-771 2019-12-27 \N f 1479 1 27 602 161.24 6.76 0.00 168.00 2 2019-11-21 2019-11-21 23:11:15.886052 2019-11-21 23:11:20.012808 1 19 PV2-V-581 \N \N f 1480 1 2 603 3997.00 0.00 0.00 3997.00 2 2019-11-21 2019-11-21 23:48:23.76518 2019-11-21 23:49:08.462488 1 1 PV1-V-766 \N \N f 1481 1 27 602 789.00 0.00 0.00 789.00 2 2019-11-21 2019-11-22 00:38:05.840709 2019-11-22 00:39:07.230286 1 19 PV2-V-582 \N \N f 1482 1 24 602 1538.00 0.00 0.00 1538.00 2 2019-11-21 2019-11-22 01:19:33.82744 2019-11-22 01:23:49.530712 1 11 PV2-V-583 \N \N f 1483 1 27 602 625.00 0.00 0.00 625.00 2 2019-11-21 2019-11-22 02:28:13.115531 2019-11-22 02:28:57.723347 1 19 PV2-V-583 \N \N f 1484 1 2 606 585.55 43.45 314.00 315.00 2 2019-11-22 2019-11-22 17:41:27.293651 2019-11-22 17:41:33.563642 1 1 PV1-V-767 \N \N f 1486 1 2 606 899.00 0.00 0.00 899.00 2 2019-11-22 2019-11-22 18:50:30.071413 2019-11-22 18:50:39.376005 1 1 PV1-V-769 \N \N f 1487 1 2 606 1349.00 0.00 0.00 1349.00 2 2019-11-22 2019-11-22 21:26:31.136478 2019-11-22 21:27:32.788326 1 1 PV1-V-770 \N \N f 1526 215 2 623 1549.00 0.00 0.00 1549.00 2 2019-11-28 2019-11-29 02:02:58.177877 2019-12-11 02:01:46.875097 2 1 PV1-V-786 2020-01-02 \N f 1489 1 2 606 459.00 0.00 0.00 459.00 2 2019-11-22 2019-11-23 02:08:02.718771 2019-11-23 02:08:36.997337 1 1 PV1-V-772 \N \N f 1490 1 26 608 729.00 0.00 0.00 729.00 2 2019-11-23 2019-11-23 17:58:26.683143 2019-11-23 17:58:47.22989 1 15 PV2-V-585 \N \N f 1491 1 26 608 1299.00 0.00 0.00 1299.00 2 2019-11-23 2019-11-23 18:20:57.577255 2019-11-23 18:21:26.868748 1 15 PV2-V-586 \N \N f 1492 1 26 608 649.00 0.00 0.00 649.00 2 2019-11-23 2019-11-23 19:33:09.491231 2019-11-23 19:33:36.882698 1 15 PV2-V-587 \N \N f 1493 1 2 609 999.00 0.00 0.00 999.00 2 2019-11-23 2019-11-23 19:51:09.781212 2019-11-23 19:51:46.165234 1 1 PV1-V-773 \N \N f 1508 246 23 615 2099.00 0.00 0.00 2099.00 2 2019-11-26 2019-11-26 18:46:16.196017 2020-01-21 02:47:34.1982 2 13 PV3-V-136 2019-12-31 \N f 1495 1 23 607 180.00 0.00 0.00 180.00 2 2019-11-23 2019-11-23 21:03:40.162697 2019-11-23 21:04:22.712485 1 13 PV3-V-132 \N \N f 1496 1 23 607 549.00 0.00 0.00 549.00 2 2019-11-23 2019-11-23 21:54:14.268365 2019-11-23 21:54:17.94933 1 13 PV3-V-133 \N \N f 1497 1 23 607 338.00 0.00 0.00 338.00 2 2019-11-23 2019-11-23 22:07:33.058534 2019-11-23 22:07:36.96354 1 13 PV3-V-134 \N \N f 1499 1 2 609 149.00 0.00 0.00 149.00 2 2019-11-23 2019-11-23 22:30:39.860011 2019-11-23 22:30:46.598179 1 1 PV1-V-774 \N \N f 1500 1 27 608 549.00 0.00 0.00 549.00 2 2019-11-23 2019-11-24 00:28:29.408692 2019-11-24 00:28:36.668808 1 19 PV2-V-589 \N \N f 1501 1 2 609 1099.00 0.00 0.00 1099.00 2 2019-11-23 2019-11-24 00:59:09.520849 2019-11-24 00:59:14.12991 1 1 PV1-V-775 \N \N f 1502 1 27 608 42.24 6.76 0.00 49.00 2 2019-11-23 2019-11-24 02:56:16.930076 2019-11-24 02:56:22.30101 1 19 PV2-V-590 \N \N f 1503 1 25 612 1099.00 0.00 0.00 1099.00 2 2019-11-24 2019-11-24 19:22:31.307355 2019-11-24 19:23:24.303381 1 16 PV1-V-776 \N \N f 1504 1 27 614 649.00 0.00 0.00 649.00 2 2019-11-25 2019-11-25 18:54:02.18431 2019-11-25 18:54:32.642263 1 19 PV2-V-591 \N \N f 1505 1 2 613 149.00 0.00 0.00 149.00 2 2019-11-25 2019-11-25 19:42:47.774413 2019-11-25 19:42:53.776482 1 1 PV1-V-777 \N \N f 1506 1 2 613 999.00 0.00 0.00 999.00 2 2019-11-25 2019-11-25 22:56:36.974062 2019-11-25 22:57:16.819837 1 1 PV1-V-778 \N \N f 1507 1 27 614 1299.00 0.00 0.00 1299.00 2 2019-11-25 2019-11-26 00:10:49.405801 2019-11-26 00:12:51.760023 1 19 PV2-V-592 \N \N f 1475 243 2 601 899.00 0.00 0.00 899.00 4 2019-11-20 2019-11-20 20:45:17.435575 2020-01-22 01:35:07.929732 2 1 PV1-V-762 2019-12-25 \N f 1509 1 2 616 699.00 0.00 0.00 699.00 2 2019-11-26 2019-11-26 20:41:29.225384 2019-11-26 20:41:33.730638 1 1 PV1-V-779 \N \N f 1510 1 26 617 699.00 0.00 0.00 699.00 2 2019-11-26 2019-11-26 21:40:17.634953 2019-11-26 21:41:39.838958 1 15 PV2-V-593 \N \N f 1511 1 2 616 1199.00 0.00 0.00 1199.00 2 2019-11-26 2019-11-26 22:22:39.683627 2019-11-26 22:24:50.683439 1 1 PV1-V-780 \N \N f 1512 1 23 615 549.00 0.00 0.00 549.00 2 2019-11-26 2019-11-26 23:37:04.747382 2019-11-26 23:37:33.71963 1 13 PV3-V-137 \N \N f 1525 1 2 623 749.00 0.00 0.00 749.00 2 2019-11-28 2019-11-29 01:58:59.397544 2019-11-29 01:59:51.32457 1 1 PV1-V-785 \N \N f 1514 1 2 616 2498.00 0.00 0.00 2498.00 2 2019-11-26 2019-11-26 23:42:18.18099 2019-11-26 23:43:23.36767 1 1 PV1-V-781 \N \N f 1515 1 24 617 516.38 82.62 0.00 599.00 2 2019-11-26 2019-11-27 01:29:40.771894 2019-11-27 01:30:00.876637 1 15 PV2-V-595 \N \N f 1516 1 2 616 899.00 0.00 0.00 899.00 2 2019-11-26 2019-11-27 02:37:51.933374 2019-11-27 02:38:55.318228 1 1 PV1-V-782 \N \N f 1517 1 27 618 999.00 0.00 0.00 999.00 2 2019-11-27 2019-11-27 20:52:49.910197 2019-11-27 20:53:32.349338 1 19 PV2-V-596 \N \N f 1518 1 21 620 1099.00 0.00 0.00 1099.00 2 2019-11-27 2019-11-27 22:13:41.944357 2019-11-27 22:14:13.325298 1 12 PV3-V-138 \N \N f 1519 1 27 618 42.24 6.76 0.00 49.00 2 2019-11-27 2019-11-27 23:05:52.605161 2019-11-27 23:06:02.404978 1 19 PV2-V-597 \N \N f 1520 1 24 618 1498.00 0.00 0.00 1498.00 2 2019-11-27 2019-11-28 02:11:00.539671 2019-11-28 02:11:41.175245 1 19 PV2-V-598 \N \N f 1521 1 2 623 149.00 0.00 0.00 149.00 2 2019-11-28 2019-11-28 20:42:03.753476 2019-11-28 20:42:09.09461 1 1 PV1-V-783 \N \N f 1529 249 2 626 739.00 0.00 0.00 739.00 2 2019-11-29 2019-11-29 22:10:04.870162 2019-12-15 19:50:06.7152 2 1 PV1-V-788 2020-01-03 \N f 1523 1 27 622 759.00 0.00 0.00 759.00 2 2019-11-28 2019-11-28 22:44:34.161609 2019-11-28 22:44:54.732005 1 19 PV2-V-599 \N \N f 1513 247 26 617 899.00 0.00 0.00 899.00 2 2019-11-26 2019-11-26 23:37:42.818933 2019-11-28 23:32:47.533156 2 15 PV2-V-594 2019-12-31 \N f 1524 1 24 622 899.00 0.00 0.00 899.00 2 2019-11-28 2019-11-29 01:57:34.290746 2019-11-29 01:57:38.564608 1 11 PV2-V-600 \N \N f 1531 250 2 626 4055.00 0.00 0.00 4055.00 2 2019-11-29 2019-11-29 23:30:10.077814 2019-12-11 02:15:27.015947 2 1 PV1-V-789 2020-01-03 \N f 1527 1 26 625 1099.00 0.00 0.00 1099.00 2 2019-11-29 2019-11-29 19:23:32.881255 2019-11-29 19:27:25.502882 1 15 PV2-V-601 \N \N f 1528 1 2 626 749.00 0.00 0.00 749.00 2 2019-11-29 2019-11-29 22:05:59.656416 2019-11-29 22:06:08.075637 1 1 PV1-V-787 \N \N f 1494 36 26 608 1298.00 0.00 0.00 1298.00 2 2019-11-23 2019-11-23 20:21:33.666761 2019-12-29 01:50:51.579291 0 15 PV2-V-588 \N \N f 1530 1 27 625 1299.00 0.00 0.00 1299.00 1 2019-11-29 2019-11-29 23:17:12.36297 2019-11-29 23:23:21.846463 1 19 PV2-V-602 \N \N f 1522 248 2 623 729.00 0.00 0.00 729.00 2 2019-11-28 2019-11-28 20:52:11.095207 2019-12-14 00:23:27.954205 2 1 PV1-V-784 2020-01-02 \N f 1478 244 2 603 1549.00 0.00 0.00 1549.00 2 2019-11-21 2019-11-21 19:51:05.511836 2019-12-01 20:59:53.907744 2 1 PV1-V-765 2019-12-26 \N f 1532 1 24 625 1299.00 0.00 0.00 1299.00 2 2019-11-29 2019-11-29 23:32:52.098721 2019-11-29 23:33:14.893892 1 19 PV2-V-603 \N \N f 1533 1 2 626 449.00 0.00 0.00 449.00 2 2019-11-29 2019-11-30 00:38:11.170495 2019-11-30 00:38:33.622 1 1 PV1-V-790 \N \N f 1534 1 2 626 1399.00 0.00 0.00 1399.00 2 2019-11-29 2019-11-30 01:10:02.598181 2019-11-30 01:10:38.987691 1 1 PV1-V-791 \N \N f 1535 1 2 626 119.00 0.00 0.00 119.00 2 2019-11-29 2019-11-30 01:52:05.823959 2019-11-30 01:52:17.180797 1 1 PV1-V-792 \N \N f 1536 1 26 627 1099.00 0.00 0.00 1099.00 2 2019-11-30 2019-11-30 17:59:49.402159 2019-11-30 18:03:27.602304 1 15 PV2-V-604 \N \N f 1537 1 2 628 1299.00 0.00 99.00 1200.00 2 2019-11-30 2019-11-30 18:19:57.25056 2019-11-30 18:20:02.36986 1 1 PV1-V-793 \N \N f 1538 1 27 627 759.00 0.00 0.00 759.00 1 2019-11-30 2019-11-30 21:07:40.041022 2019-11-30 21:07:54.416439 1 19 PV2-V-605 \N \N f 1539 1 27 627 759.00 0.00 0.00 759.00 2 2019-11-30 2019-11-30 21:08:17.96123 2019-11-30 21:08:34.482938 1 19 PV2-V-606 \N \N f 1541 1 23 624 789.00 0.00 0.00 789.00 2 2019-11-30 2019-11-30 23:34:03.696901 2019-11-30 23:34:16.112599 1 13 PV3-V-140 \N \N f 1540 34 23 624 789.00 0.00 0.00 789.00 1 2019-11-30 2019-11-30 23:33:10.256691 2019-11-30 23:35:22.83337 0 13 PV3-V-139 \N \N f 1557 252 25 637 2299.00 0.00 0.00 2299.00 4 2019-12-03 2019-12-03 17:59:04.90758 2020-01-24 19:10:33.959301 2 16 PV1-V-798 2020-01-07 \N f 1543 1 27 627 599.00 0.00 0.00 599.00 2 2019-11-30 2019-12-01 01:27:41.55172 2019-12-01 01:29:15.495959 1 19 PV2-V-607 \N \N f 1544 1 23 624 1399.00 0.00 0.00 1399.00 2 2019-11-30 2019-12-01 02:02:25.808931 2019-12-01 02:02:43.530049 1 12 PV3-V-142 \N \N f 1545 1 27 627 659.00 0.00 0.00 659.00 2 2019-11-30 2019-12-01 02:05:09.174478 2019-12-01 02:06:10.993712 1 19 PV2-V-608 \N \N f 1546 1 24 627 699.00 0.00 0.00 699.00 2 2019-11-30 2019-12-01 02:13:10.05677 2019-12-01 02:13:17.794817 1 11 PV2-V-609 \N \N f 1547 1 2 628 532.79 66.21 119.00 480.00 2 2019-11-30 2019-12-01 02:13:33.545595 2019-12-01 02:13:38.350363 1 1 PV1-V-794 \N \N f 1548 1 25 632 559.48 89.52 0.00 649.00 2 2019-12-01 2019-12-01 19:57:42.962801 2019-12-01 19:58:36.12387 1 16 PV1-V-795 \N \N f 1549 1 23 630 1033.62 165.38 0.00 1199.00 2 2019-12-01 2019-12-01 20:58:48.878054 2019-12-01 20:58:52.940133 1 13 PV3-V-143 \N \N f 1596 256 26 649 599.00 0.00 0.00 599.00 2 2019-12-07 2019-12-07 22:08:00.68643 2019-12-28 23:31:34.536897 2 15 PV2-V-626 2020-01-11 \N f 1551 1 23 630 829.00 0.00 0.00 829.00 2 2019-12-01 2019-12-01 23:03:09.011516 2019-12-01 23:03:38.555967 1 13 PV3-V-145 \N \N f 1552 1 26 634 999.00 0.00 0.00 999.00 2 2019-12-02 2019-12-02 19:41:37.984391 2019-12-02 19:41:51.557042 1 15 PV2-V-610 \N \N f 1553 1 27 634 42.24 6.76 0.00 49.00 2 2019-12-02 2019-12-02 20:52:50.690112 2019-12-02 20:52:56.842796 1 19 PV2-V-611 \N \N f 1554 1 25 635 1199.00 0.00 0.00 1199.00 2 2019-12-02 2019-12-02 21:06:27.6587 2019-12-02 21:07:25.962255 1 16 PV1-V-796 \N \N f 1555 1 23 633 230.00 0.00 0.00 230.00 2 2019-12-02 2019-12-03 01:34:45.556283 2019-12-03 01:34:53.485335 1 13 PV3-V-146 \N \N f 1556 1 25 635 899.00 0.00 0.00 899.00 2 2019-12-02 2019-12-03 03:01:12.010083 2019-12-03 03:02:48.47015 1 16 PV1-V-797 \N \N f 1559 1 23 636 569.00 0.00 0.00 569.00 2 2019-12-03 2019-12-03 23:25:08.530054 2019-12-03 23:25:24.87153 1 13 PV3-V-147 \N \N f 1560 1 27 638 899.00 0.00 0.00 899.00 2 2019-12-03 2019-12-04 00:53:16.411823 2019-12-04 00:54:29.12404 1 19 PV2-V-612 \N \N f 1550 251 23 630 789.00 0.00 0.00 789.00 2 2019-12-01 2019-12-01 21:00:51.634072 2019-12-15 20:59:10.717874 2 13 PV3-V-144 2020-01-05 \N f 1562 1 25 641 85.34 13.65 0.00 98.99 2 2019-12-04 2019-12-04 20:33:59.586453 2019-12-04 20:34:22.236177 1 20 PV1-V-800 \N \N f 1563 1 25 641 389.00 0.00 0.00 389.00 2 2019-12-04 2019-12-04 20:41:09.102909 2019-12-04 20:41:29.449152 1 16 PV1-V-801 \N \N f 1564 1 25 641 1361.91 76.09 215.70 1222.30 2 2019-12-04 2019-12-04 22:44:46.906044 2019-12-04 22:45:24.040184 1 16 PV1-V-802 \N \N f 1565 1 25 641 1098.00 0.00 0.00 1098.00 2 2019-12-04 2019-12-04 23:18:24.713975 2019-12-04 23:18:43.24657 1 16 PV1-V-803 \N \N f 1566 1 25 641 1199.00 0.00 0.00 1199.00 2 2019-12-04 2019-12-04 23:33:40.150678 2019-12-04 23:35:05.655449 1 16 PV1-V-804 \N \N f 1567 1 25 641 1629.00 0.00 0.00 1629.00 2 2019-12-04 2019-12-05 00:21:12.693609 2019-12-05 00:21:50.30225 1 16 PV1-V-805 \N \N f 1568 1 23 639 799.00 0.00 0.00 799.00 2 2019-12-04 2019-12-05 00:30:31.531104 2019-12-05 00:31:11.705619 1 13 PV3-V-149 \N \N f 1569 1 23 639 1248.00 0.00 0.00 1248.00 2 2019-12-04 2019-12-05 00:59:37.162786 2019-12-05 01:00:23.585325 1 13 PV3-V-150 \N \N f 1570 1 27 640 899.00 0.00 0.00 899.00 2 2019-12-04 2019-12-05 01:28:07.026538 2019-12-05 01:29:25.24225 1 19 PV2-V-613 \N \N f 1571 1 27 643 899.00 0.00 0.00 899.00 2 2019-12-05 2019-12-05 20:30:21.784863 2019-12-05 20:31:12.76473 1 19 PV2-V-614 \N \N f 1572 1 23 642 1364.00 124.00 0.00 1488.00 2 2019-12-05 2019-12-05 20:55:29.141869 2019-12-05 20:56:28.725663 1 13 PV3-V-151 \N \N f 1573 1 25 644 769.00 0.00 76.90 692.10 1 2019-12-05 2019-12-05 21:38:53.354605 2019-12-05 21:38:58.982738 1 16 PV1-V-806 \N \N f 1574 1 25 644 769.00 0.00 79.00 690.00 2 2019-12-05 2019-12-05 21:40:15.803881 2019-12-05 21:40:20.233457 1 20 PV1-V-807 \N \N f 1575 1 27 643 699.00 0.00 0.00 699.00 2 2019-12-05 2019-12-05 21:54:25.841426 2019-12-05 21:55:18.945518 1 19 PV2-V-615 \N \N f 1576 1 25 644 599.00 0.00 0.00 599.00 2 2019-12-05 2019-12-05 22:04:34.842011 2019-12-05 22:05:11.770572 1 18 PV1-V-808 \N \N f 1577 1 27 643 1129.00 0.00 0.00 1129.00 2 2019-12-05 2019-12-05 22:07:23.676662 2019-12-05 22:07:52.755204 1 19 PV2-V-616 \N \N f 1578 1 25 644 699.00 0.00 0.00 699.00 2 2019-12-05 2019-12-05 22:33:06.595051 2019-12-05 22:34:20.842918 1 20 PV1-V-809 \N \N f 1579 1 23 642 789.00 0.00 0.00 789.00 2 2019-12-05 2019-12-05 23:18:05.663469 2019-12-05 23:18:56.001262 1 13 PV3-V-152 \N \N f 1580 1 25 644 1899.00 0.00 0.00 1899.00 2 2019-12-05 2019-12-05 23:49:21.782405 2019-12-05 23:50:13.864125 1 16 PV1-V-810 \N \N f 1581 1 25 644 1299.00 0.00 0.00 1299.00 2 2019-12-05 2019-12-06 01:46:17.380166 2019-12-06 01:49:40.696525 1 16 PV1-V-811 \N \N f 1582 1 27 646 1399.00 0.00 0.00 1399.00 2 2019-12-06 2019-12-06 17:41:42.974502 2019-12-06 17:42:04.722164 1 19 PV2-V-617 \N \N f 1558 222 25 637 2348.00 0.00 0.00 2348.00 2 2019-12-03 2019-12-03 20:12:29.780879 2019-12-09 21:43:11.621391 0 20 PV1-V-799 \N \N f 1584 1 27 646 549.00 0.00 0.00 549.00 2 2019-12-06 2019-12-07 00:05:14.362489 2019-12-07 00:07:01.042061 1 19 PV2-V-619 \N \N f 1585 1 27 646 299.00 0.00 0.00 299.00 2 2019-12-06 2019-12-07 00:54:55.929483 2019-12-07 00:55:00.176969 1 19 PV2-V-620 \N \N f 1586 1 27 646 699.00 0.00 0.00 699.00 2 2019-12-06 2019-12-07 01:08:45.608829 2019-12-07 01:08:52.207489 1 4 PV2-V-621 \N \N f 1587 1 9 647 729.00 0.00 0.00 729.00 2 2019-12-06 2019-12-07 01:10:26.788731 2019-12-07 01:10:31.737312 1 3 PV1-V-812 \N \N f 1588 1 25 647 999.00 0.00 0.00 999.00 2 2019-12-06 2019-12-07 02:29:39.261655 2019-12-07 02:30:10.149774 1 16 PV1-V-813 \N \N f 1589 1 2 648 739.00 0.00 0.00 739.00 2 2019-12-07 2019-12-07 19:16:41.977168 2019-12-07 19:17:03.749044 1 1 PV1-V-814 \N \N f 1590 1 23 645 779.00 0.00 0.00 779.00 2 2019-12-07 2019-12-07 19:36:44.32929 2019-12-07 19:36:59.211416 1 13 PV3-V-153 \N \N f 1591 1 26 649 899.00 0.00 0.00 899.00 1 2019-12-07 2019-12-07 20:10:36.050608 2019-12-07 20:10:54.808549 1 15 PV2-V-622 \N \N f 1592 1 26 649 899.00 0.00 0.00 899.00 2 2019-12-07 2019-12-07 20:11:19.907208 2019-12-07 20:11:58.090722 1 15 PV2-V-623 \N \N f 1593 1 23 645 779.00 0.00 0.00 779.00 2 2019-12-07 2019-12-07 20:19:43.636363 2019-12-07 20:19:49.277685 1 13 PV3-V-154 \N \N f 1594 1 26 649 549.00 0.00 0.00 549.00 2 2019-12-07 2019-12-07 20:56:53.512105 2019-12-07 20:57:16.346887 1 15 PV2-V-624 \N \N f 1595 1 26 649 699.00 0.00 0.00 699.00 2 2019-12-07 2019-12-07 21:27:57.166856 2019-12-07 21:28:28.052527 1 15 PV2-V-625 \N \N f 1597 255 2 648 899.00 0.00 0.00 899.00 2 2019-12-07 2019-12-07 22:08:32.631928 2019-12-31 17:33:27.048798 0 3 PV1-V-815 \N \N f 1542 34 23 624 2099.00 0.00 0.00 2099.00 2 2019-11-30 2019-11-30 23:49:43.756726 2020-01-15 21:07:08.704052 0 13 PV3-V-141 \N \N f 1583 254 27 646 1299.00 0.00 0.00 1299.00 2 2019-12-06 2019-12-06 19:46:36.901548 2019-12-09 17:52:56.904626 2 19 PV2-V-618 2020-01-10 \N f 1598 1 26 649 549.00 0.00 0.00 549.00 2 2019-12-07 2019-12-07 23:06:17.35714 2019-12-07 23:06:24.318331 1 15 PV2-V-627 \N \N f 1638 85 2 658 999.00 0.00 0.00 999.00 2 2019-12-10 2019-12-11 00:35:14.831726 2019-12-17 02:30:11.210491 2 1 PV1-V-836 2020-01-14 \N f 1600 1 2 648 749.00 0.00 0.00 749.00 2 2019-12-07 2019-12-07 23:24:06.49496 2019-12-07 23:24:49.752365 1 1 PV1-V-817 \N \N f 1601 1 2 648 150.00 0.00 0.00 150.00 2 2019-12-07 2019-12-07 23:26:36.72509 2019-12-07 23:26:45.676694 1 1 PV1-V-818 \N \N f 1602 1 2 648 729.00 0.00 0.00 729.00 2 2019-12-07 2019-12-07 23:32:53.348265 2019-12-07 23:33:02.346958 1 1 PV1-V-819 \N \N f 1603 1 2 648 459.00 0.00 0.00 459.00 2 2019-12-07 2019-12-07 23:39:32.712782 2019-12-07 23:40:10.134645 1 20 PV1-V-820 \N \N f 1604 1 26 649 42.24 6.76 0.00 49.00 2 2019-12-07 2019-12-07 23:44:47.326641 2019-12-07 23:44:53.381491 1 22 PV2-V-628 \N \N f 1605 1 25 648 1399.00 0.00 0.00 1399.00 2 2019-12-07 2019-12-07 23:45:00.357053 2019-12-07 23:45:08.768895 1 20 PV1-V-821 \N \N f 1606 1 23 645 733.48 13.52 0.00 747.00 2 2019-12-07 2019-12-07 23:50:36.467603 2019-12-07 23:51:19.996408 1 13 PV3-V-155 \N \N f 1607 1 2 648 1199.00 0.00 0.00 1199.00 2 2019-12-07 2019-12-07 23:56:41.917426 2019-12-07 23:57:14.362523 1 20 PV1-V-821 \N \N f 1608 1 2 648 825.00 0.00 0.00 825.00 2 2019-12-07 2019-12-08 00:03:04.395438 2019-12-08 00:03:42.760028 1 1 PV1-V-823 \N \N f 1609 1 23 645 1223.00 0.00 0.00 1223.00 2 2019-12-07 2019-12-08 01:47:36.196837 2019-12-08 01:48:02.184122 1 13 PV3-V-156 \N \N f 1610 1 2 651 949.00 0.00 0.00 949.00 2 2019-12-08 2019-12-08 18:20:01.288315 2019-12-08 18:20:20.194276 1 20 PV1-V-824 \N \N f 1611 1 27 650 549.00 0.00 0.00 549.00 2 2019-12-08 2019-12-08 18:39:49.659759 2019-12-08 18:40:11.226649 1 19 PV2-V-629 \N \N f 1612 1 2 653 699.00 0.00 0.00 699.00 2 2019-12-09 2019-12-09 17:38:02.884702 2019-12-09 17:38:17.359793 1 1 PV1-V-825 \N \N f 1613 1 2 653 689.00 0.00 0.00 689.00 2 2019-12-09 2019-12-09 18:04:04.638834 2019-12-09 18:04:13.485541 1 1 PV1-V-826 \N \N f 1614 1 2 653 1378.45 220.55 0.00 1599.00 2 2019-12-09 2019-12-09 18:53:41.122303 2019-12-09 18:54:30.333465 1 1 PV1-V-827 \N \N f 1615 1 21 655 749.00 0.00 0.00 749.00 2 2019-12-09 2019-12-09 20:54:42.898906 2019-12-09 20:55:46.062097 1 12 PV3-V-157 \N \N f 1619 257 2 653 679.00 0.00 0.00 679.00 2 2019-12-09 2019-12-09 23:15:09.082597 2019-12-10 19:06:29.164211 2 1 PV1-V-829 2020-01-13 \N f 1616 1 2 653 2348.00 0.00 0.00 2348.00 1 2019-12-09 2019-12-09 21:34:15.385544 2019-12-09 21:42:03.202069 1 20 PV1-V-828 \N \N f 1617 1 21 655 3698.00 0.00 0.00 3698.00 2 2019-12-09 2019-12-09 22:41:56.282291 2019-12-09 22:42:28.57586 1 12 PV3-V-158 \N \N f 1618 1 21 655 469.00 0.00 0.00 469.00 2 2019-12-09 2019-12-09 22:52:44.301728 2019-12-09 22:52:50.90398 1 12 PV3-V-159 \N \N f 1643 1 2 661 1345.00 0.00 0.00 1345.00 2 2019-12-11 2019-12-11 19:19:17.657423 2019-12-11 19:19:57.373195 1 1 PV1-V-839 \N \N f 1620 1 2 653 899.00 0.00 0.00 899.00 2 2019-12-09 2019-12-10 01:13:55.409852 2019-12-10 01:14:02.108523 1 1 PV1-V-830 \N \N f 1621 1 27 654 999.00 0.00 0.00 999.00 2 2019-12-09 2019-12-10 01:18:12.011353 2019-12-10 01:18:32.905145 1 19 PV2-V-630 \N \N f 1622 1 21 655 1248.00 0.00 0.00 1248.00 2 2019-12-09 2019-12-10 02:31:30.710577 2019-12-10 02:31:42.986487 1 12 PV3-V-160 \N \N f 1623 1 27 657 699.00 0.00 0.00 699.00 2 2019-12-10 2019-12-10 18:24:18.40368 2019-12-10 18:25:03.165046 1 19 PV2-V-631 \N \N f 1624 1 27 657 99.00 0.00 0.00 99.00 2 2019-12-10 2019-12-10 18:32:13.369201 2019-12-10 18:33:17.75007 1 19 PV2-V-632 \N \N f 1627 1 27 657 699.00 0.00 0.00 699.00 2 2019-12-10 2019-12-10 18:56:20.726655 2019-12-10 18:57:13.955805 1 19 PV2-V-633 \N \N f 1628 1 2 658 749.00 0.00 0.00 749.00 2 2019-12-10 2019-12-10 19:02:22.028991 2019-12-10 19:03:01.73226 1 20 PV1-V-832 \N \N f 1629 1 24 657 649.00 0.00 0.00 649.00 2 2019-12-10 2019-12-10 19:04:04.598772 2019-12-10 19:04:15.75609 1 22 PV2-V-634 \N \N f 1630 258 27 657 999.00 0.00 0.00 999.00 1 2019-12-10 2019-12-10 20:43:38.133517 2019-12-10 20:44:48.56752 1 22 PV2-V-635 \N \N f 1644 1 27 660 899.00 0.00 0.00 899.00 2 2019-12-11 2019-12-11 20:18:02.917022 2019-12-11 20:18:27.543203 1 19 PV2-V-641 \N \N f 1631 258 26 657 999.00 0.00 0.00 999.00 1 2019-12-10 2019-12-10 20:47:32.30388 2019-12-10 20:47:46.325675 1 22 PV2-V-637 \N \N f 1658 260 27 663 1299.00 0.00 0.00 1299.00 1 2019-12-12 2019-12-12 21:52:29.648343 2019-12-13 19:24:31.452287 2 19 PV2-V-649 2020-01-16 \N f 1633 1 24 657 699.00 0.00 0.00 699.00 2 2019-12-10 2019-12-10 21:15:58.872668 2019-12-10 21:16:21.122498 1 11 PV2-V-636 \N \N f 1634 1 2 658 699.00 0.00 0.00 699.00 2 2019-12-10 2019-12-10 21:17:27.288295 2019-12-10 21:17:45.759358 1 1 PV1-V-833 \N \N f 1635 1 23 656 899.00 0.00 0.00 899.00 2 2019-12-10 2019-12-10 22:19:08.101567 2019-12-10 22:19:15.706018 1 13 PV3-V-161 \N \N f 1636 1 2 658 888.00 0.00 141.00 747.00 2 2019-12-10 2019-12-10 23:27:35.366742 2019-12-10 23:28:12.612099 1 1 PV1-V-834 \N \N f 1637 1 2 658 1629.00 0.00 0.00 1629.00 2 2019-12-10 2019-12-10 23:47:05.083275 2019-12-10 23:48:34.663839 1 1 PV1-V-835 \N \N f 1662 261 2 664 1299.00 0.00 0.00 1299.00 1 2019-12-12 2019-12-12 23:49:09.281458 2019-12-19 01:17:49.714795 2 1 PV1-V-846 2020-01-16 \N f 1639 1 2 658 599.00 0.00 0.00 599.00 2 2019-12-10 2019-12-11 01:52:15.905145 2019-12-11 01:53:59.153675 1 1 PV1-V-837 \N \N f 1640 1 23 656 589.00 0.00 0.00 589.00 2 2019-12-10 2019-12-11 01:56:34.06074 2019-12-11 01:57:08.799001 1 13 PV3-V-162 \N \N f 1641 1 2 661 849.00 0.00 79.00 770.00 2 2019-12-11 2019-12-11 17:41:24.485228 2019-12-11 17:42:04.38199 1 1 PV1-V-838 \N \N f 1642 1 27 660 1299.00 0.00 0.00 1299.00 2 2019-12-11 2019-12-11 17:55:48.604423 2019-12-11 17:56:12.063109 1 19 PV2-V-640 \N \N f 1645 1 2 661 629.00 0.00 0.00 629.00 2 2019-12-11 2019-12-11 20:29:30.747516 2019-12-11 20:29:54.161779 1 1 PV1-V-840 \N \N f 1646 1 27 660 999.00 0.00 0.00 999.00 1 2019-12-11 2019-12-11 21:07:27.52167 2019-12-11 21:09:57.398255 1 19 PV2-V-642 \N \N f 1647 1 27 660 1128.00 0.00 0.00 1128.00 2 2019-12-11 2019-12-11 21:11:11.071821 2019-12-11 21:11:51.759527 1 19 PV2-V-643 \N \N f 1648 1 27 660 599.00 0.00 0.00 599.00 2 2019-12-11 2019-12-11 22:15:38.712036 2019-12-11 22:16:48.293057 1 19 PV2-V-644 \N \N f 1649 1 23 659 2214.00 0.00 0.00 2214.00 2 2019-12-11 2019-12-11 22:26:45.883714 2019-12-11 22:26:57.338999 1 13 PV3-V-163 \N \N f 1650 1 27 660 999.00 0.00 0.00 999.00 2 2019-12-11 2019-12-12 00:08:06.34103 2019-12-12 00:08:37.379893 1 19 PV2-V-645 \N \N f 1652 1 23 659 799.00 0.00 0.00 799.00 2 2019-12-11 2019-12-12 01:02:25.536976 2019-12-12 01:02:31.268678 1 13 PV3-V-164 \N \N f 1653 1 2 661 729.00 0.00 0.00 729.00 2 2019-12-11 2019-12-12 01:04:12.074385 2019-12-12 01:04:31.909329 1 1 PV1-V-841 \N \N f 1625 3 24 657 1099.00 0.00 0.00 1099.00 2 2019-12-10 2019-12-10 18:38:50.325302 2020-02-21 17:36:52.945033 0 4 PV2-V-633 \N \N f 1654 1 2 661 459.00 0.00 0.00 459.00 2 2019-12-11 2019-12-12 01:16:02.703616 2019-12-12 01:16:43.097327 1 1 PV1-V-842 \N \N f 1655 1 2 664 699.00 0.00 0.00 699.00 2 2019-12-12 2019-12-12 18:37:53.367417 2019-12-12 18:38:24.090446 1 1 PV1-V-843 \N \N f 1656 1 24 663 1299.00 0.00 0.00 1299.00 2 2019-12-12 2019-12-12 18:39:45.662992 2019-12-12 18:39:55.626885 1 11 PV2-V-647 \N \N f 1657 1 27 663 649.00 0.00 0.00 649.00 2 2019-12-12 2019-12-12 21:02:22.294779 2019-12-12 21:02:34.342778 1 19 PV2-V-647 \N \N f 1599 5 2 648 1478.00 0.00 0.00 1478.00 2 2019-12-07 2019-12-07 23:23:01.789217 2019-12-17 02:19:26.600789 2 1 PV1-V-816 2020-01-11 \N f 1659 1 2 664 849.00 0.00 0.00 849.00 2 2019-12-12 2019-12-12 21:58:54.762371 2019-12-12 21:59:09.901348 1 20 PV1-V-844 \N \N f 1660 1 2 664 799.00 0.00 0.00 799.00 2 2019-12-12 2019-12-12 22:08:33.603877 2019-12-12 22:08:43.925067 1 20 PV1-V-845 \N \N f 1661 1 23 662 1699.00 0.00 0.00 1699.00 2 2019-12-12 2019-12-12 22:29:02.371435 2019-12-12 22:29:35.038239 1 13 PV3-V-165 \N \N f 1626 3 2 658 4366.00 0.00 0.00 4366.00 2 2019-12-10 2019-12-10 18:40:09.516538 2020-04-29 02:03:36.022731 0 3 PV1-V-831 \N \N f 1663 1 27 663 699.00 0.00 0.00 699.00 2 2019-12-12 2019-12-13 00:04:22.650533 2019-12-13 00:04:50.854829 1 19 PV2-V-650 \N \N f 1632 259 26 657 2098.00 0.00 0.00 2098.00 1 2019-12-10 2019-12-10 20:48:54.466012 2019-12-13 19:22:30.121289 2 22 PV2-V-638 2020-01-14 \N f 1651 33 27 660 699.00 0.00 0.00 699.00 2 2019-12-11 2019-12-12 01:01:52.920264 2020-01-17 20:45:18.651898 0 4 PV2-V-646 \N \N f 1664 1 2 664 1199.00 0.00 0.00 1199.00 2 2019-12-12 2019-12-13 00:49:00.434005 2019-12-13 00:49:14.274562 1 1 PV1-V-847 \N \N f 1665 1 2 664 1299.00 0.00 0.00 1299.00 2 2019-12-12 2019-12-13 01:11:31.018909 2019-12-13 01:13:46.369101 1 1 PV1-V-848 \N \N f 1666 262 23 662 2326.72 372.28 0.00 2699.00 1 2019-12-12 2019-12-13 02:57:12.656275 2019-12-13 02:57:29.768363 1 13 PV3-V-166 \N \N f 1668 1 2 667 469.00 0.00 0.00 469.00 2 2019-12-13 2019-12-13 17:59:10.626442 2019-12-13 17:59:20.367204 1 1 PV1-V-849 \N \N f 1669 1 27 666 999.00 0.00 0.00 999.00 2 2019-12-13 2019-12-13 19:26:13.949801 2019-12-13 19:26:18.305536 1 19 PV2-V-651 \N \N f 1670 1 24 666 759.00 0.00 0.00 759.00 2 2019-12-13 2019-12-13 21:38:21.361128 2019-12-13 21:38:36.20584 1 22 PV2-V-652 \N \N f 1671 1 2 667 1199.00 0.00 0.00 1199.00 2 2019-12-13 2019-12-13 22:59:56.221558 2019-12-13 23:00:07.214968 1 1 PV1-V-850 \N \N f 1672 1 2 667 689.00 0.00 0.00 689.00 2 2019-12-13 2019-12-13 23:28:56.877135 2019-12-13 23:29:04.861008 1 1 PV1-V-851 \N \N f 1673 1 27 666 699.00 0.00 0.00 699.00 2 2019-12-13 2019-12-14 00:16:03.447327 2019-12-14 00:17:16.080184 1 19 PV2-V-653 \N \N f 1561 253 23 639 1528.00 0.00 0.00 1528.00 2 2019-12-04 2019-12-04 20:07:16.73178 2019-12-14 01:24:44.364521 2 13 PV3-V-148 2020-01-08 \N f 1674 1 2 667 1299.00 0.00 0.00 1299.00 2 2019-12-13 2019-12-14 01:39:36.354724 2019-12-14 01:39:41.410014 1 1 PV1-V-852 \N \N f 1675 1 2 667 949.00 0.00 0.00 949.00 2 2019-12-13 2019-12-14 01:42:47.937163 2019-12-14 01:42:55.996191 1 1 PV1-V-853 \N \N f 1720 265 27 674 899.00 0.00 0.00 899.00 2 2019-12-16 2019-12-17 02:24:13.681156 2019-12-20 02:36:04.827487 2 19 PV2-V-672 2020-01-20 \N f 1677 1 2 667 1383.34 13.65 0.00 1396.99 2 2019-12-13 2019-12-14 02:17:16.320445 2019-12-14 02:17:30.518835 1 1 PV1-V-855 \N \N f 1678 1 2 669 739.00 0.00 0.00 739.00 2 2019-12-14 2019-12-14 19:01:13.786956 2019-12-14 19:01:27.637175 1 20 PV1-V-856 \N \N f 1679 1 24 670 699.00 0.00 0.00 699.00 2 2019-12-14 2019-12-14 19:01:41.237507 2019-12-14 19:01:57.424478 1 22 PV2-V-654 \N \N f 1680 1 26 670 599.00 0.00 0.00 599.00 2 2019-12-14 2019-12-14 19:05:57.430065 2019-12-14 19:06:14.308257 1 15 PV2-V-655 \N \N f 1681 1 25 669 739.00 0.00 0.00 739.00 2 2019-12-14 2019-12-14 19:11:04.315869 2019-12-14 19:11:30.13566 1 16 PV1-V-857 \N \N f 1682 1 24 670 1099.00 0.00 0.00 1099.00 2 2019-12-14 2019-12-14 19:17:20.101974 2019-12-14 19:17:48.989327 1 22 PV2-V-655 \N \N f 1683 1 2 669 1299.00 0.00 0.00 1299.00 2 2019-12-14 2019-12-14 19:26:46.037204 2019-12-14 19:27:52.48254 1 20 PV1-V-857 \N \N f 1684 1 26 670 899.00 0.00 0.00 899.00 2 2019-12-14 2019-12-14 19:29:26.482692 2019-12-14 19:29:46.681071 1 15 PV2-V-657 \N \N f 1685 1 2 669 641.24 6.76 0.00 648.00 2 2019-12-14 2019-12-14 19:45:39.743748 2019-12-14 19:45:44.070752 1 1 PV1-V-859 \N \N f 1686 1 23 668 1099.00 0.00 0.00 1099.00 2 2019-12-14 2019-12-14 20:10:41.558672 2019-12-14 20:10:55.635006 1 13 PV3-V-168 \N \N f 1687 1 2 669 779.00 0.00 0.00 779.00 2 2019-12-14 2019-12-14 20:39:50.28127 2019-12-14 20:40:34.904058 1 20 PV1-V-860 \N \N f 1688 1 2 669 1299.00 0.00 0.00 1299.00 2 2019-12-14 2019-12-14 20:45:47.504264 2019-12-14 20:46:39.09986 1 20 PV1-V-861 \N \N f 1689 1 2 669 1399.00 0.00 0.00 1399.00 2 2019-12-14 2019-12-14 21:04:43.268005 2019-12-14 21:04:52.694698 1 1 PV1-V-862 \N \N f 1690 1 2 669 699.00 0.00 0.00 699.00 2 2019-12-14 2019-12-14 21:23:58.004889 2019-12-14 21:24:49.983564 1 20 PV1-V-863 \N \N f 1691 1 2 669 2967.00 0.00 200.00 2767.00 2 2019-12-14 2019-12-14 22:10:31.295842 2019-12-14 22:10:51.306135 1 1 PV1-V-864 \N \N f 1692 1 2 669 85.34 13.65 0.00 98.99 2 2019-12-14 2019-12-14 22:11:48.167426 2019-12-14 22:12:04.839171 1 1 PV1-V-865 \N \N f 1693 1 26 670 699.00 0.00 0.00 699.00 2 2019-12-14 2019-12-14 23:18:53.494651 2019-12-14 23:19:17.383704 1 15 PV2-V-658 \N \N f 1694 1 26 670 549.00 0.00 0.00 549.00 2 2019-12-14 2019-12-14 23:26:02.077363 2019-12-14 23:26:12.785508 1 15 PV2-V-659 \N \N f 1695 1 26 670 699.00 0.00 0.00 699.00 2 2019-12-14 2019-12-14 23:45:39.416986 2019-12-14 23:46:55.636905 1 15 PV2-V-660 \N \N f 1696 1 2 669 1349.00 0.00 0.00 1349.00 2 2019-12-14 2019-12-15 00:07:23.721828 2019-12-15 00:07:57.601153 1 1 PV1-V-866 \N \N f 1697 1 23 668 2099.00 0.00 0.00 2099.00 1 2019-12-14 2019-12-15 00:13:21.598399 2019-12-15 00:17:48.156252 1 13 PV3-V-169 \N \N f 1698 1 23 668 2099.00 0.00 335.84 1763.16 2 2019-12-14 2019-12-15 00:18:46.804923 2019-12-15 00:19:49.327944 1 13 PV3-V-170 \N \N f 1699 1 26 670 1129.00 0.00 0.00 1129.00 2 2019-12-14 2019-12-15 00:35:24.608776 2019-12-15 00:35:41.15896 1 19 PV2-V-661 \N \N f 1700 1 2 669 749.00 0.00 0.00 749.00 2 2019-12-14 2019-12-15 00:38:36.913396 2019-12-15 00:39:16.152561 1 1 PV1-V-867 \N \N f 1701 1 26 670 549.00 0.00 0.00 549.00 2 2019-12-14 2019-12-15 00:50:56.21024 2019-12-15 00:57:38.604628 1 19 PV2-V-662 \N \N f 1703 1 26 670 899.00 0.00 0.00 899.00 2 2019-12-14 2019-12-15 01:11:14.600375 2019-12-15 01:11:36.095755 1 19 PV2-V-663 \N \N f 1704 1 2 669 1134.69 63.31 0.00 1198.00 2 2019-12-14 2019-12-15 01:15:23.565133 2019-12-15 01:16:08.273807 1 20 PV1-V-869 \N \N f 1705 1 26 672 899.00 0.00 0.00 899.00 2 2019-12-15 2019-12-15 18:16:38.293963 2019-12-15 18:17:14.412686 1 22 PV2-V-664 \N \N f 1706 1 2 671 1998.00 0.00 0.00 1998.00 2 2019-12-15 2019-12-15 18:51:37.261073 2019-12-15 18:52:10.135566 1 1 PV1-V-870 \N \N f 1707 1 26 672 799.00 0.00 0.00 799.00 2 2019-12-15 2019-12-15 18:55:43.192171 2019-12-15 18:56:09.307737 1 11 PV2-V-665 \N \N f 1708 1 10 672 389.00 0.00 0.00 389.00 2 2019-12-15 2019-12-15 19:42:22.139108 2019-12-15 19:42:39.346106 1 4 PV2-V-666 \N \N f 1710 1 26 672 3188.00 0.00 0.00 3188.00 2 2019-12-15 2019-12-15 22:24:42.226137 2019-12-15 22:24:50.556884 1 22 PV2-V-667 \N \N f 1711 1 9 671 469.00 0.00 0.00 469.00 2 2019-12-15 2019-12-15 22:25:52.430043 2019-12-15 22:25:57.392376 1 20 PV1-V-871 \N \N f 1712 1 2 675 799.00 0.00 0.00 799.00 2 2019-12-16 2019-12-16 18:08:36.983119 2019-12-16 18:17:10.436776 1 20 PV1-V-872 \N \N f 1713 1 27 674 149.00 0.00 0.00 149.00 2 2019-12-16 2019-12-16 18:24:47.367713 2019-12-16 18:25:14.32101 1 19 PV2-V-668 \N \N f 1714 1 2 675 499.00 0.00 0.00 499.00 2 2019-12-16 2019-12-16 21:20:20.275526 2019-12-16 21:20:27.441951 1 1 PV1-V-873 \N \N f 1715 1 27 674 899.00 0.00 0.00 899.00 2 2019-12-16 2019-12-16 22:55:24.573831 2019-12-16 22:55:36.519247 1 19 PV2-V-669 \N \N f 1716 1 2 675 1199.00 0.00 0.00 1199.00 2 2019-12-16 2019-12-16 23:18:42.406625 2019-12-16 23:19:23.639917 1 1 PV1-V-874 \N \N f 1717 1 27 674 198.00 0.00 0.00 198.00 2 2019-12-16 2019-12-17 00:35:48.180466 2019-12-17 00:36:27.14414 1 19 PV2-V-670 \N \N f 1718 1 21 676 1989.00 0.00 0.00 1989.00 2 2019-12-16 2019-12-17 00:49:54.953566 2019-12-17 00:50:36.518355 1 12 PV3-V-172 \N \N f 1719 1 27 674 358.00 0.00 0.00 358.00 2 2019-12-16 2019-12-17 00:58:29.467033 2019-12-17 00:58:33.732205 1 19 PV2-V-671 \N \N f 1722 266 27 678 899.00 0.00 0.00 899.00 2 2019-12-17 2019-12-17 17:31:37.196603 2019-12-27 22:58:01.335946 2 19 PV2-V-674 2020-01-21 \N f 1721 1 27 678 699.00 0.00 0.00 699.00 2 2019-12-17 2019-12-17 17:20:26.385115 2019-12-17 17:21:04.976275 1 19 PV2-V-673 \N \N f 1709 264 21 673 1499.00 0.00 0.00 1499.00 2 2019-12-15 2019-12-15 19:45:38.988319 2020-08-05 18:51:23.951038 0 12 PV3-V-171 \N \N f 1723 1 2 677 537.07 61.93 150.00 449.00 2 2019-12-17 2019-12-17 18:35:56.152262 2019-12-17 18:36:07.498573 1 1 PV1-V-875 \N \N f 1724 1 2 677 2358.00 0.00 0.00 2358.00 2 2019-12-17 2019-12-17 19:53:01.488608 2019-12-17 19:53:31.602082 1 1 PV1-V-876 \N \N f 1676 263 2 667 239.00 0.00 0.00 239.00 2 2019-12-13 2019-12-14 02:11:12.38859 2019-12-18 20:57:13.557728 2 1 PV1-V-854 2020-01-17 \N f 1667 262 23 662 2326.72 372.28 0.00 2699.00 2 2019-12-12 2019-12-13 02:58:00.790287 2021-02-24 00:53:13.147026 0 12 PV3-V-167 \N \N f 1726 1 21 679 169.00 0.00 0.00 169.00 2 2019-12-17 2019-12-17 22:50:21.323651 2019-12-17 22:50:52.303771 1 12 PV3-V-174 \N \N f 1727 1 21 679 1199.00 0.00 0.00 1199.00 2 2019-12-17 2019-12-17 23:54:30.488286 2019-12-17 23:54:55.021013 1 12 PV3-V-175 \N \N f 1728 1 21 679 1199.00 0.00 0.00 1199.00 2 2019-12-17 2019-12-18 00:40:45.110981 2019-12-18 00:40:58.667966 1 12 PV3-V-176 \N \N f 1725 267 21 679 1099.00 0.00 0.00 1099.00 2 2019-12-17 2019-12-17 20:08:36.116387 2019-12-18 02:13:59.640308 2 12 PV3-V-173 2020-01-21 \N f 1702 36 2 669 969.00 0.00 0.00 969.00 2 2019-12-14 2019-12-15 01:00:38.308599 2020-01-11 22:04:11.329583 0 3 PV1-V-868 \N \N f 1729 1 2 677 1599.00 0.00 0.00 1599.00 2 2019-12-17 2019-12-18 01:58:30.553996 2019-12-18 01:59:22.691621 1 1 PV1-V-877 \N \N f 1730 1 19 682 749.00 0.00 0.00 749.00 2 2019-12-18 2019-12-18 19:51:35.625151 2019-12-18 19:51:54.71805 1 12 PV3-V-177 \N \N f 1731 1 2 680 469.00 0.00 0.00 469.00 2 2019-12-18 2019-12-18 20:27:23.363584 2019-12-18 20:27:52.89167 1 20 PV1-V-878 \N \N f 1732 1 19 682 579.00 0.00 0.00 579.00 2 2019-12-18 2019-12-18 20:47:47.731934 2019-12-18 20:49:14.518547 1 12 PV3-V-178 \N \N f 1733 1 27 681 699.00 0.00 0.00 699.00 2 2019-12-18 2019-12-18 20:53:36.310616 2019-12-18 20:54:15.391798 1 19 PV2-V-675 \N \N f 1734 1 27 681 989.00 0.00 0.00 989.00 2 2019-12-18 2019-12-18 21:58:26.688903 2019-12-18 21:58:54.875105 1 19 PV2-V-676 \N \N f 1735 1 2 680 2098.00 0.00 0.00 2098.00 2 2019-12-18 2019-12-18 22:47:56.281218 2019-12-18 22:48:08.029739 1 1 PV1-V-879 \N \N f 1736 1 27 681 149.00 0.00 0.00 149.00 2 2019-12-18 2019-12-18 23:31:47.212295 2019-12-18 23:31:54.419179 1 4 PV2-V-677 \N \N f 1737 1 27 681 749.00 0.00 0.00 749.00 2 2019-12-18 2019-12-18 23:50:52.636687 2019-12-18 23:52:34.874986 1 4 PV2-V-678 \N \N f 1738 1 21 682 579.00 0.00 0.00 579.00 2 2019-12-18 2019-12-19 00:27:58.158277 2019-12-19 00:28:44.618534 1 12 PV3-V-179 \N \N f 1739 1 27 681 1798.00 0.00 0.00 1798.00 2 2019-12-18 2019-12-19 00:45:07.601946 2019-12-19 00:45:57.54267 1 19 PV2-V-679 \N \N f 1740 1 2 680 1299.00 0.00 0.00 1299.00 2 2019-12-18 2019-12-19 01:20:38.917641 2019-12-19 01:20:43.914056 1 1 PV1-V-880 \N \N f 1741 1 27 681 1648.00 0.00 0.00 1648.00 2 2019-12-18 2019-12-19 01:25:40.86361 2019-12-19 01:25:55.064368 1 19 PV2-V-680 \N \N f 1742 1 27 681 749.00 0.00 0.00 749.00 2 2019-12-18 2019-12-19 01:44:17.346147 2019-12-19 01:45:00.871114 1 19 PV2-V-681 \N \N f 1743 1 2 680 2298.00 0.00 345.00 1953.00 2 2019-12-18 2019-12-19 01:47:22.386409 2019-12-19 01:48:56.601472 1 1 PV1-V-881 \N \N f 1744 1 21 682 1868.00 0.00 0.00 1868.00 2 2019-12-18 2019-12-19 02:33:50.556441 2019-12-19 02:34:08.170144 1 12 PV3-V-180 \N \N f 1745 1 27 681 1068.00 0.00 0.00 1068.00 2 2019-12-18 2019-12-19 02:51:36.240612 2019-12-19 02:52:46.328357 1 19 PV2-V-682 \N \N f 1746 268 27 683 989.00 0.00 0.00 989.00 2 2019-12-19 2019-12-19 17:34:16.599586 2019-12-19 18:13:16.02623 2 19 PV2-V-683 2020-01-23 \N f 1747 1 2 684 430.17 68.83 0.00 499.00 2 2019-12-19 2019-12-19 18:22:44.179912 2019-12-19 18:23:28.390381 1 1 PV1-V-882 \N \N f 1749 1 27 683 649.00 0.00 0.00 649.00 2 2019-12-19 2019-12-19 19:45:41.575931 2019-12-19 19:46:12.828916 1 19 PV2-V-684 \N \N f 1750 1 27 683 799.00 0.00 0.00 799.00 2 2019-12-19 2019-12-19 19:55:28.568453 2019-12-19 19:56:23.53584 1 19 PV2-V-685 \N \N f 1751 1 2 684 2048.00 0.00 327.68 1720.32 2 2019-12-19 2019-12-19 20:20:48.425094 2019-12-19 20:21:31.616633 1 1 PV1-V-884 \N \N f 1752 1 21 685 1859.00 0.00 0.00 1859.00 2 2019-12-19 2019-12-19 20:41:20.060166 2019-12-19 20:42:13.40472 1 12 PV3-V-181 \N \N f 1753 1 2 684 899.00 0.00 0.00 899.00 2 2019-12-19 2019-12-19 22:05:57.169341 2019-12-19 22:09:20.856717 1 18 PV1-V-885 \N \N f 1754 1 2 684 1399.00 0.00 0.00 1399.00 2 2019-12-19 2019-12-19 22:15:46.484125 2019-12-19 22:15:52.0655 1 18 PV1-V-886 \N \N f 1755 1 2 684 2099.00 0.00 0.00 2099.00 2 2019-12-19 2019-12-19 23:06:14.460393 2019-12-19 23:06:19.579377 1 1 PV1-V-887 \N \N f 1756 1 21 685 699.00 0.00 0.00 699.00 2 2019-12-19 2019-12-20 01:45:13.78176 2019-12-20 01:45:21.603652 1 12 PV3-V-182 \N \N f 1757 1 24 683 599.00 0.00 0.00 599.00 2 2019-12-19 2019-12-20 02:38:38.218355 2019-12-20 02:38:42.581691 1 17 PV2-V-686 \N \N f 1758 1 2 689 1099.00 0.00 0.00 1099.00 2 2019-12-20 2019-12-20 20:30:00.985571 2019-12-20 20:30:19.978524 1 1 PV1-V-888 \N \N f 1759 1 21 688 759.00 0.00 0.00 759.00 2 2019-12-20 2019-12-20 21:29:16.390255 2019-12-20 21:29:55.80765 1 12 PV3-V-183 \N \N f 1760 1 2 689 789.00 0.00 0.00 789.00 2 2019-12-20 2019-12-20 21:31:45.856725 2019-12-20 21:32:07.158646 1 1 PV1-V-889 \N \N f 1761 1 27 686 729.00 0.00 0.00 729.00 2 2019-12-20 2019-12-20 21:38:02.527127 2019-12-20 21:38:27.5183 1 17 PV2-V-687 \N \N f 1762 1 27 686 749.00 0.00 0.00 749.00 1 2019-12-20 2019-12-20 21:59:50.799308 2019-12-20 21:59:59.763422 1 17 PV2-V-688 \N \N f 1748 3 2 684 1299.00 0.00 0.00 1299.00 2 2019-12-19 2019-12-19 18:34:36.992242 2020-04-29 02:03:36.006687 0 3 PV1-V-883 \N \N f 1764 1 27 686 899.00 0.00 0.00 899.00 2 2019-12-20 2019-12-20 23:18:22.091317 2019-12-20 23:18:33.763854 1 19 PV2-V-690 \N \N f 1765 1 27 686 1199.00 0.00 119.90 1079.10 2 2019-12-20 2019-12-20 23:25:15.209846 2019-12-20 23:25:49.228642 1 4 PV2-V-691 \N \N f 1766 1 21 688 2099.00 0.00 0.00 2099.00 2 2019-12-20 2019-12-20 23:38:43.985296 2019-12-20 23:38:58.896821 1 12 PV3-V-184 \N \N f 1767 1 2 689 1399.00 0.00 139.00 1260.00 2 2019-12-20 2019-12-20 23:55:39.925113 2019-12-20 23:55:44.559438 1 1 PV1-V-890 \N \N f 1768 1 27 686 1129.00 0.00 0.00 1129.00 2 2019-12-20 2019-12-21 02:22:12.370198 2019-12-21 02:23:06.828898 1 19 PV2-V-692 \N \N f 1769 1 26 687 1629.00 0.00 162.90 1466.10 2 2019-12-21 2019-12-21 18:18:40.914174 2019-12-21 18:19:07.194894 1 17 PV2-V-693 \N \N f 1775 1 26 687 559.48 89.52 0.00 649.00 2 2019-12-21 2019-12-21 19:17:17.410698 2019-12-21 19:17:58.685685 1 17 PV2-V-697 \N \N f 1770 1 26 687 989.00 0.00 0.00 989.00 1 2019-12-21 2019-12-21 18:22:20.193708 2019-12-21 18:23:36.683301 1 17 PV2-V-694 \N \N f 1771 1 26 687 1138.00 0.00 0.00 1138.00 2 2019-12-21 2019-12-21 18:24:08.27473 2019-12-21 18:24:25.720417 1 17 PV2-V-695 \N \N f 1772 1 2 690 84.48 13.52 0.00 98.00 2 2019-12-21 2019-12-21 18:38:32.359358 2019-12-21 18:38:37.296474 1 1 PV1-V-891 \N \N f 1773 1 26 687 1099.00 0.00 0.00 1099.00 2 2019-12-21 2019-12-21 19:03:24.241831 2019-12-21 19:03:38.445024 1 4 PV2-V-696 \N \N f 1774 1 2 690 799.00 0.00 239.00 560.00 2 2019-12-21 2019-12-21 19:08:14.501408 2019-12-21 19:08:18.572887 1 1 PV1-V-892 \N \N f 1776 1 2 690 1299.00 0.00 129.00 1170.00 2 2019-12-21 2019-12-21 19:29:18.039709 2019-12-21 19:29:22.96555 1 1 PV1-V-893 \N \N f 1777 1 2 690 949.00 0.00 64.00 885.00 2 2019-12-21 2019-12-21 19:39:12.580074 2019-12-21 19:39:20.577548 1 10 PV1-V-894 \N \N f 1779 1 21 691 1099.00 0.00 289.00 810.00 2 2019-12-21 2019-12-21 20:49:07.371223 2019-12-21 20:49:14.245847 1 12 PV3-V-186 \N \N f 1780 1 26 687 799.00 0.00 79.90 719.10 2 2019-12-21 2019-12-21 20:59:54.881206 2019-12-21 21:00:02.448432 1 17 PV2-V-698 \N \N f 1781 1 26 687 2388.00 0.00 238.80 2149.20 2 2019-12-21 2019-12-21 21:11:01.120054 2019-12-21 21:11:37.421989 1 17 PV2-V-699 \N \N f 1782 1 9 690 1546.40 111.60 165.80 1492.20 2 2019-12-21 2019-12-21 21:16:00.829317 2019-12-21 21:16:06.269073 1 10 PV1-V-895 \N \N f 1783 1 26 687 2028.00 0.00 202.80 1825.20 2 2019-12-21 2019-12-21 21:25:50.79034 2019-12-21 21:26:32.126324 1 17 PV2-V-700 \N \N f 1784 1 2 690 298.00 0.00 0.00 298.00 2 2019-12-21 2019-12-21 21:27:19.928931 2019-12-21 21:27:24.820343 1 10 PV1-V-896 \N \N f 1785 1 26 687 999.00 0.00 149.85 849.15 2 2019-12-21 2019-12-21 21:35:53.096555 2019-12-21 21:35:59.336291 1 17 PV2-V-701 \N \N f 1786 1 26 687 569.00 0.00 56.90 512.10 2 2019-12-21 2019-12-21 21:43:40.750483 2019-12-21 21:43:51.106418 1 17 PV2-V-702 \N \N f 1787 1 2 690 3467.00 0.00 247.00 3220.00 2 2019-12-21 2019-12-21 22:08:41.382395 2019-12-21 22:08:45.916018 1 18 PV1-V-897 \N \N f 1788 1 26 687 699.00 0.00 209.70 489.30 2 2019-12-21 2019-12-21 22:23:32.787497 2019-12-21 22:23:37.933101 1 17 PV2-V-703 \N \N f 1789 1 9 690 469.00 0.00 39.00 430.00 2 2019-12-21 2019-12-21 22:25:20.167698 2019-12-21 22:25:26.145045 1 10 PV1-V-898 \N \N f 1790 1 2 690 549.00 0.00 55.00 494.00 2 2019-12-21 2019-12-21 22:51:57.295857 2019-12-21 22:52:04.904121 1 1 PV1-V-899 \N \N f 1791 1 26 687 799.00 0.00 740.00 59.00 1 2019-12-21 2019-12-21 22:52:08.139447 2019-12-21 22:52:42.082353 1 17 PV2-V-704 \N \N f 1792 1 26 687 799.00 0.00 59.00 740.00 2 2019-12-21 2019-12-21 22:53:15.003665 2019-12-21 22:53:30.462406 1 17 PV2-V-705 \N \N f 1793 1 2 690 1698.00 0.00 270.00 1428.00 2 2019-12-21 2019-12-21 22:57:27.262758 2019-12-21 22:58:05.98705 1 18 PV1-V-900 \N \N f 1763 269 27 686 749.00 0.00 0.00 749.00 2 2019-12-20 2019-12-20 22:00:56.546483 2019-12-23 23:06:57.147777 2 17 PV2-V-689 2020-01-24 \N f 1794 1 26 687 2097.00 0.00 335.00 1762.00 2 2019-12-21 2019-12-21 23:01:00.374025 2019-12-21 23:01:13.452014 1 17 PV2-V-706 \N \N f 1796 1 8 687 459.00 0.00 0.00 459.00 2 2019-12-21 2019-12-22 00:00:49.821594 2019-12-22 00:01:20.735438 1 17 PV2-V-707 \N \N f 1797 1 8 687 549.00 0.00 0.00 549.00 1 2019-12-21 2019-12-22 01:21:15.977305 2019-12-22 01:21:26.345029 1 17 PV2-V-708 \N \N f 1798 1 8 687 549.00 0.00 54.90 494.10 2 2019-12-21 2019-12-22 01:22:09.31311 2019-12-22 01:22:23.111102 1 17 PV2-V-709 \N \N f 1799 1 8 687 799.00 0.00 200.00 599.00 2 2019-12-21 2019-12-22 01:32:13.346263 2019-12-22 01:33:21.492115 1 17 PV2-V-710 \N \N f 1800 1 8 687 1688.00 0.00 119.90 1568.10 2 2019-12-21 2019-12-22 01:36:35.40972 2019-12-22 01:36:53.711195 1 17 PV2-V-711 \N \N f 1801 1 8 687 449.00 0.00 44.90 404.10 2 2019-12-21 2019-12-22 02:04:39.878098 2019-12-22 02:04:46.259138 1 17 PV2-V-712 \N \N f 1802 1 2 690 1629.00 0.00 169.00 1460.00 2 2019-12-21 2019-12-22 02:08:51.573674 2019-12-22 02:09:36.525135 1 1 PV1-V-902 \N \N f 1803 1 21 691 1629.00 0.00 325.80 1303.20 1 2019-12-21 2019-12-22 02:55:19.834775 2019-12-22 03:01:39.085975 1 12 PV3-V-187 \N \N f 1804 1 21 691 2428.00 0.00 485.60 1942.40 2 2019-12-21 2019-12-22 03:02:41.939601 2019-12-22 03:03:04.357103 1 12 PV3-V-188 \N \N f 1805 1 9 693 2117.00 0.00 0.00 2117.00 2 2019-12-22 2019-12-22 18:03:43.695389 2019-12-22 18:03:58.954342 1 10 PV1-V-903 \N \N f 1806 1 9 693 949.00 0.00 0.00 949.00 2 2019-12-22 2019-12-22 18:29:14.189199 2019-12-22 18:29:18.19674 1 10 PV1-V-904 \N \N f 1807 1 9 693 1629.00 0.00 0.00 1629.00 2 2019-12-22 2019-12-22 18:33:16.074109 2019-12-22 18:35:04.153509 1 10 PV1-V-905 \N \N f 1808 1 27 692 789.00 0.00 0.00 789.00 2 2019-12-22 2019-12-22 18:44:46.459959 2019-12-22 18:44:54.405295 1 17 PV2-V-713 \N \N f 1809 1 9 693 849.00 0.00 254.00 595.00 2 2019-12-22 2019-12-22 18:54:33.30659 2019-12-22 18:54:50.668627 1 10 PV1-V-906 \N \N f 1811 1 9 693 1349.00 0.00 0.00 1349.00 1 2019-12-22 2019-12-22 19:04:13.325992 2019-12-22 19:05:08.35465 1 10 PV1-V-907 \N \N f 1810 1 27 692 1298.00 0.00 129.80 1168.20 1 2019-12-22 2019-12-22 18:55:37.698278 2019-12-22 20:06:52.258875 1 17 PV2-V-714 \N \N f 1812 1 24 692 1298.00 0.00 90.00 1208.00 2 2019-12-22 2019-12-22 20:09:08.442873 2019-12-22 20:09:18.079784 1 19 PV2-V-715 \N \N f 1813 1 27 692 729.00 0.00 0.00 729.00 2 2019-12-22 2019-12-22 20:19:51.574873 2019-12-22 20:20:29.181611 1 17 PV2-V-715 \N \N f 1814 1 27 692 799.00 0.00 79.00 720.00 2 2019-12-22 2019-12-22 20:32:45.710691 2019-12-22 20:32:50.49362 1 17 PV2-V-717 \N \N f 1815 1 2 693 1349.00 0.00 0.00 1349.00 2 2019-12-22 2019-12-22 20:37:47.419436 2019-12-22 20:38:02.253633 1 1 PV1-V-908 \N \N f 1817 1 27 692 899.00 0.00 0.00 899.00 2 2019-12-22 2019-12-22 20:48:44.569564 2019-12-22 20:49:31.455739 1 17 PV2-V-718 \N \N f 1818 1 2 693 799.00 0.00 79.00 720.00 2 2019-12-22 2019-12-22 20:58:26.793437 2019-12-22 20:58:40.507292 1 18 PV1-V-910 \N \N f 1819 1 21 694 170.00 0.00 0.00 170.00 2 2019-12-22 2019-12-22 21:09:10.384198 2019-12-22 21:09:35.608927 1 12 PV3-V-189 \N \N f 1820 1 27 692 599.00 0.00 60.00 539.00 2 2019-12-22 2019-12-22 21:52:16.944187 2019-12-22 21:52:22.732928 1 17 PV2-V-719 \N \N f 1821 1 27 692 699.00 0.00 0.00 699.00 1 2019-12-22 2019-12-22 22:03:48.780986 2019-12-22 22:04:20.550544 1 17 PV2-V-720 \N \N f 1822 1 27 692 819.68 19.31 69.00 769.99 2 2019-12-22 2019-12-22 22:05:56.919937 2019-12-22 22:06:48.159815 1 17 PV2-V-721 \N \N f 1823 1 24 692 1299.00 0.00 0.00 1299.00 2 2019-12-22 2019-12-22 22:19:16.286132 2019-12-22 22:19:22.274866 1 19 PV2-V-722 \N \N f 1824 1 2 693 1241.59 96.41 0.00 1338.00 2 2019-12-22 2019-12-22 22:21:17.154335 2019-12-22 22:21:26.952074 1 18 PV1-V-911 \N \N f 1825 1 21 694 149.00 0.00 0.00 149.00 2 2019-12-22 2019-12-22 22:28:45.199198 2019-12-22 22:28:49.504491 1 12 PV3-V-190 \N \N f 1839 1 2 695 369.00 0.00 0.00 369.00 2 2019-12-22 2019-12-23 00:43:30.514106 2019-12-23 00:43:35.913922 1 1 PV1-V-916 \N \N f 1827 1 2 693 599.00 0.00 0.00 599.00 2 2019-12-22 2019-12-22 22:50:35.47111 2019-12-22 22:50:39.572958 1 18 PV1-V-913 \N \N f 1828 1 24 692 699.00 0.00 0.00 699.00 2 2019-12-22 2019-12-22 22:51:34.639631 2019-12-22 22:51:40.536217 1 19 PV2-V-723 \N \N f 1826 1 2 693 2616.00 0.00 0.00 2616.00 1 2019-12-22 2019-12-22 22:49:14.532851 2019-12-22 22:56:36.948857 1 18 PV1-V-912 \N \N f 1829 1 2 693 2247.00 0.00 0.00 2247.00 2 2019-12-22 2019-12-22 22:56:59.513308 2019-12-22 22:57:06.988059 1 18 PV1-V-914 \N \N f 1830 1 24 692 369.00 0.00 0.00 369.00 2 2019-12-22 2019-12-22 22:58:12.839601 2019-12-22 22:58:17.605776 1 19 PV2-V-724 \N \N f 1831 1 27 692 749.00 0.00 74.90 674.10 2 2019-12-22 2019-12-22 23:05:39.845528 2019-12-22 23:05:44.64881 1 19 PV2-V-725 \N \N f 1832 1 21 694 1599.00 0.00 479.70 1119.30 2 2019-12-22 2019-12-22 23:18:46.322204 2019-12-22 23:18:53.044618 1 12 PV3-V-191 \N \N f 1833 1 2 693 1399.00 0.00 0.00 1399.00 2 2019-12-22 2019-12-23 00:07:09.252683 2019-12-23 00:07:14.920441 1 10 PV1-V-915 \N \N f 1834 1 27 692 749.00 0.00 0.00 749.00 1 2019-12-22 2019-12-23 00:23:32.185089 2019-12-23 00:24:25.530138 1 19 PV2-V-726 \N \N f 1835 1 27 692 848.00 0.00 74.90 773.10 2 2019-12-22 2019-12-23 00:25:02.979215 2019-12-23 00:25:11.041906 1 19 PV2-V-727 \N \N f 1836 1 27 692 869.00 0.00 169.00 700.00 2 2019-12-22 2019-12-23 00:30:35.917819 2019-12-23 00:30:43.699631 1 4 PV2-V-728 \N \N f 1838 1 27 692 1129.00 0.00 112.90 1016.10 2 2019-12-22 2019-12-23 00:42:00.503843 2019-12-23 00:42:52.490454 1 4 PV2-V-729 \N \N f 1840 1 27 692 1299.00 0.00 99.00 1200.00 2 2019-12-22 2019-12-23 00:47:16.459128 2019-12-23 00:47:45.264327 1 11 PV2-V-730 \N \N f 1841 1 21 694 999.00 0.00 0.00 999.00 2 2019-12-22 2019-12-23 02:31:46.07419 2019-12-23 02:32:18.308152 1 12 PV3-V-193 \N \N f 1842 1 21 697 5627.62 165.38 858.80 4934.20 2 2019-12-23 2019-12-23 18:16:19.521571 2019-12-23 18:16:46.41433 1 12 PV3-V-194 \N \N f 1843 1 21 697 1599.00 0.00 0.00 1599.00 2 2019-12-23 2019-12-23 19:32:47.547144 2019-12-23 19:33:00.035928 1 12 PV3-V-195 \N \N f 1844 1 27 696 839.00 0.00 0.00 839.00 2 2019-12-23 2019-12-23 19:47:15.899087 2019-12-23 19:47:33.971286 1 19 PV2-V-731 \N \N f 1845 1 2 695 299.00 0.00 29.00 270.00 2 2019-12-23 2019-12-23 20:04:09.746826 2019-12-23 20:04:14.617509 1 18 PV1-V-917 \N \N f 1846 1 27 696 989.00 0.00 98.90 890.10 2 2019-12-23 2019-12-23 20:11:46.265739 2019-12-23 20:12:05.733359 1 17 PV2-V-732 \N \N f 1847 1 2 695 479.00 0.00 0.00 479.00 1 2019-12-23 2019-12-23 20:22:07.101601 2019-12-23 20:22:11.883959 1 1 PV1-V-918 \N \N f 1848 1 2 695 479.00 0.00 0.00 479.00 2 2019-12-23 2019-12-23 20:22:37.106256 2019-12-23 20:22:41.535131 1 1 PV1-V-919 \N \N f 1849 1 27 696 549.00 0.00 54.00 495.00 2 2019-12-23 2019-12-23 20:26:24.745756 2019-12-23 20:26:29.019306 1 17 PV2-V-733 \N \N f 1850 1 27 696 899.00 0.00 89.90 809.10 2 2019-12-23 2019-12-23 20:37:35.653385 2019-12-23 20:38:35.712102 1 17 PV2-V-734 \N \N f 1851 1 27 696 589.00 0.00 0.00 589.00 2 2019-12-23 2019-12-23 20:50:37.362374 2019-12-23 20:50:49.525891 1 4 PV2-V-735 \N \N f 1852 1 24 696 549.00 0.00 0.00 549.00 2 2019-12-23 2019-12-23 21:31:56.934959 2019-12-23 21:32:02.775101 1 11 PV2-V-736 \N \N f 1853 1 27 696 469.00 0.00 0.00 469.00 2 2019-12-23 2019-12-23 22:00:27.391901 2019-12-23 22:00:50.875079 1 11 PV2-V-737 \N \N f 1854 1 8 696 699.00 0.00 0.00 699.00 2 2019-12-23 2019-12-23 22:27:35.623773 2019-12-23 22:28:49.01141 1 17 PV2-V-738 \N \N f 1855 1 2 695 899.00 0.00 0.00 899.00 2 2019-12-23 2019-12-23 23:21:40.375929 2019-12-23 23:21:47.024356 1 18 PV1-V-920 \N \N f 1856 1 8 696 799.00 0.00 0.00 799.00 2 2019-12-23 2019-12-23 23:54:28.137565 2019-12-23 23:55:11.77639 1 17 PV2-V-739 \N \N f 1837 1 21 694 1629.00 0.00 325.80 1303.20 1 2019-12-22 2019-12-23 00:37:35.113376 2019-12-24 00:29:17.86921 1 12 PV3-V-192 \N \N f 1857 1 27 696 1488.00 0.00 78.00 1410.00 2 2019-12-23 2019-12-24 00:52:41.180885 2019-12-24 00:53:00.951176 1 17 PV2-V-740 \N \N f 1816 191 2 693 1599.00 0.00 0.00 1599.00 2 2019-12-22 2019-12-22 20:39:38.20504 2019-12-29 19:53:14.101051 2 1 PV1-V-909 2020-01-26 \N f 1795 20 2 690 3398.00 0.00 0.00 3398.00 2 2019-12-21 2019-12-21 23:10:27.013546 2020-04-29 01:40:24.726404 0 3 PV1-V-901 \N \N f 1858 1 27 696 549.00 0.00 54.00 495.00 2 2019-12-23 2019-12-24 00:56:21.629659 2019-12-24 00:56:26.377892 1 19 PV2-V-741 \N \N f 1859 1 2 695 769.00 0.00 119.00 650.00 2 2019-12-23 2019-12-24 00:56:33.226037 2019-12-24 00:56:45.147917 1 1 PV1-V-921 \N \N f 1860 1 2 695 1199.00 0.00 0.00 1199.00 2 2019-12-23 2019-12-24 01:00:06.286391 2019-12-24 01:00:12.648708 1 1 PV1-V-922 \N \N f 1861 1 2 695 749.00 0.00 74.00 675.00 2 2019-12-23 2019-12-24 01:17:24.63237 2019-12-24 01:18:23.909765 1 1 PV1-V-923 \N \N f 1862 1 2 695 839.00 0.00 0.00 839.00 2 2019-12-23 2019-12-24 01:44:43.924336 2019-12-24 01:46:00.550387 1 1 PV1-V-924 \N \N f 1863 1 2 695 599.00 0.00 0.00 599.00 2 2019-12-23 2019-12-24 02:00:11.377133 2019-12-24 02:01:44.470558 1 1 PV1-V-925 \N \N f 1864 1 2 695 899.00 0.00 0.00 899.00 2 2019-12-23 2019-12-24 02:11:38.560552 2019-12-24 02:11:52.375056 1 1 PV1-V-926 \N \N f 1865 271 27 696 799.00 0.00 0.00 799.00 1 2019-12-23 2019-12-24 02:18:30.964975 2019-12-24 02:19:09.463009 2 19 PV2-V-742 2020-01-27 \N f 1903 272 21 702 2299.00 0.00 229.90 2069.10 2 2019-12-26 2019-12-26 19:04:18.722338 2019-12-30 19:45:15.123478 2 12 PV3-V-212 2020-01-30 \N f 1867 1 2 695 214.00 0.00 0.00 214.00 2 2019-12-23 2019-12-24 02:23:21.113178 2019-12-24 02:23:28.656457 1 1 PV1-V-927 \N \N f 1868 1 21 697 288.00 0.00 0.00 288.00 2 2019-12-23 2019-12-24 02:27:58.955037 2019-12-24 02:28:16.338649 1 12 PV3-V-196 \N \N f 1869 1 21 697 1199.00 0.00 0.00 1199.00 2 2019-12-23 2019-12-24 02:29:58.274445 2019-12-24 02:30:12.254677 1 12 PV3-V-197 \N \N f 1870 1 21 697 1699.00 0.00 0.00 1699.00 2 2019-12-23 2019-12-24 02:33:37.781673 2019-12-24 02:33:43.27245 1 12 PV3-V-198 \N \N f 1871 1 21 697 479.00 0.00 143.70 335.30 2 2019-12-23 2019-12-24 02:54:29.996079 2019-12-24 02:55:12.573081 1 12 PV3-V-199 \N \N f 1872 1 2 695 749.00 0.00 0.00 749.00 2 2019-12-23 2019-12-24 02:59:57.637167 2019-12-24 03:01:14.853502 1 1 PV1-V-928 \N \N f 1873 1 21 697 629.00 0.00 0.00 629.00 2 2019-12-23 2019-12-24 03:20:07.528782 2019-12-24 03:20:17.229588 1 12 PV3-V-200 \N \N f 1874 1 21 697 129.00 0.00 0.00 129.00 2 2019-12-23 2019-12-24 03:20:59.105202 2019-12-24 03:21:03.99169 1 12 PV3-V-201 \N \N f 1875 1 2 699 1899.00 0.00 189.00 1710.00 2 2019-12-24 2019-12-24 17:10:50.245222 2019-12-24 17:10:57.694471 1 1 PV1-V-929 \N \N f 1876 1 27 698 699.00 0.00 69.90 629.10 2 2019-12-24 2019-12-24 18:03:57.050823 2019-12-24 18:04:01.225628 1 19 PV2-V-744 \N \N f 1877 1 27 698 328.00 0.00 0.00 328.00 2 2019-12-24 2019-12-24 18:07:51.333776 2019-12-24 18:09:05.739835 1 19 PV2-V-745 \N \N f 1878 1 27 698 799.00 0.00 0.00 799.00 1 2019-12-24 2019-12-24 18:35:51.049498 2019-12-24 18:37:13.512711 1 17 PV2-V-746 \N \N f 1879 1 27 698 799.00 0.00 79.90 719.10 2 2019-12-24 2019-12-24 18:37:52.792239 2019-12-24 18:37:59.528787 1 17 PV2-V-747 \N \N f 1880 1 27 698 2282.34 93.65 0.00 2375.99 2 2019-12-24 2019-12-24 19:15:24.059307 2019-12-24 19:16:10.666483 1 19 PV2-V-748 \N \N f 1881 1 21 700 799.00 0.00 0.00 799.00 2 2019-12-24 2019-12-24 19:27:14.361533 2019-12-24 19:27:23.255081 1 12 PV3-V-202 \N \N f 1882 1 21 700 60.00 0.00 0.00 60.00 2 2019-12-24 2019-12-24 19:28:43.320953 2019-12-24 19:28:47.98421 1 12 PV3-V-203 \N \N f 1883 1 27 698 829.00 0.00 0.00 829.00 2 2019-12-24 2019-12-24 19:48:32.680041 2019-12-24 19:49:13.850841 1 17 PV2-V-749 \N \N f 1884 1 27 698 899.00 0.00 89.90 809.10 2 2019-12-24 2019-12-24 20:01:58.585827 2019-12-24 20:02:11.595987 1 19 PV2-V-750 \N \N f 1885 1 21 700 1550.86 248.14 0.00 1799.00 2 2019-12-24 2019-12-24 20:08:42.76217 2019-12-24 20:09:02.133581 1 12 PV3-V-204 \N \N f 1886 1 2 699 299.00 0.00 29.00 270.00 2 2019-12-24 2019-12-24 20:18:53.189917 2019-12-24 20:19:07.493063 1 1 PV1-V-930 \N \N f 1887 1 27 698 610.34 89.65 50.00 649.99 1 2019-12-24 2019-12-24 20:25:22.021742 2019-12-24 20:25:31.678446 1 19 PV2-V-751 \N \N f 1888 1 27 698 617.24 82.76 100.00 600.00 2 2019-12-24 2019-12-24 20:26:14.149828 2019-12-24 20:26:37.614969 1 4 PV2-V-752 \N \N f 1889 1 27 698 1299.00 0.00 0.00 1299.00 2 2019-12-24 2019-12-24 20:39:34.217149 2019-12-24 20:40:18.24238 1 17 PV2-V-753 \N \N f 1890 1 21 700 1669.00 0.00 166.90 1502.10 2 2019-12-24 2019-12-24 20:46:27.194215 2019-12-24 20:46:40.81383 1 14 PV3-V-205 \N \N f 1891 1 27 698 799.00 0.00 0.00 799.00 2 2019-12-24 2019-12-24 21:14:11.634927 2019-12-24 21:14:27.6458 1 17 PV2-V-754 \N \N f 1892 1 2 699 639.00 0.00 0.00 639.00 2 2019-12-24 2019-12-24 21:18:05.104873 2019-12-24 21:38:14.703012 1 10 PV1-V-931 \N \N f 1893 1 2 699 749.00 0.00 0.00 749.00 2 2019-12-24 2019-12-24 21:38:56.126621 2019-12-24 21:39:19.470094 1 1 PV1-V-932 \N \N f 1894 1 21 700 1370.87 77.13 214.70 1233.30 2 2019-12-24 2019-12-24 22:19:42.984324 2019-12-24 22:19:49.585561 1 14 PV3-V-206 \N \N f 1895 1 21 700 222.24 6.76 0.00 229.00 2 2019-12-24 2019-12-24 22:52:29.387984 2019-12-24 22:53:09.347254 1 14 PV3-V-207 \N \N f 1896 1 2 699 139.00 0.00 0.00 139.00 2 2019-12-24 2019-12-24 23:08:09.032459 2019-12-24 23:08:13.223441 1 1 PV1-V-933 \N \N f 1897 1 21 700 560.00 0.00 0.00 560.00 2 2019-12-24 2019-12-25 00:06:31.823377 2019-12-25 00:06:49.494914 1 14 PV3-V-208 \N \N f 1898 1 21 700 699.00 0.00 0.00 699.00 2 2019-12-24 2019-12-25 00:08:29.745054 2019-12-25 00:08:39.566731 1 12 PV3-V-209 \N \N f 1899 1 27 698 649.00 0.00 0.00 649.00 2 2019-12-24 2019-12-25 00:30:39.998365 2019-12-25 00:31:37.931382 1 19 PV2-V-755 \N \N f 1900 1 27 698 879.00 0.00 87.90 791.10 2 2019-12-24 2019-12-25 01:28:48.736605 2019-12-25 01:30:19.47779 1 19 PV2-V-756 \N \N f 1901 1 21 700 729.00 0.00 0.00 729.00 2 2019-12-24 2019-12-25 02:29:32.478267 2019-12-25 02:30:58.082628 1 12 PV3-V-210 \N \N f 1902 1 21 702 1629.00 0.00 0.00 1629.00 2 2019-12-26 2019-12-26 17:52:44.233042 2019-12-26 17:52:58.097359 1 12 PV3-V-211 \N \N f 1904 1 8 703 1199.00 0.00 119.00 1080.00 1 2019-12-26 2019-12-26 19:58:57.603341 2019-12-26 20:00:37.873084 1 17 PV2-V-757 \N \N f 1905 1 8 703 759.00 0.00 0.00 759.00 2 2019-12-26 2019-12-26 20:00:56.832955 2019-12-26 20:01:38.164241 1 17 PV2-V-758 \N \N f 1906 1 8 703 699.00 0.00 49.00 650.00 2 2019-12-26 2019-12-26 20:07:37.011967 2019-12-26 20:07:57.93377 1 17 PV2-V-759 \N \N f 1907 1 8 703 1898.00 0.00 429.60 1468.40 2 2019-12-26 2019-12-26 20:10:41.448787 2019-12-26 20:10:53.466345 1 17 PV2-V-760 \N \N f 1908 1 21 702 899.00 0.00 0.00 899.00 2 2019-12-26 2019-12-26 20:35:24.28682 2019-12-26 20:35:34.322993 1 12 PV3-V-213 \N \N f 1909 1 2 701 749.00 0.00 0.00 749.00 2 2019-12-26 2019-12-26 21:45:16.996854 2019-12-26 21:46:22.760432 1 1 PV1-V-934 \N \N f 1910 1 8 703 699.00 0.00 0.00 699.00 2 2019-12-26 2019-12-26 22:51:53.055813 2019-12-26 22:52:27.397553 1 4 PV2-V-761 \N \N f 1911 1 2 701 999.00 0.00 89.00 910.00 2 2019-12-26 2019-12-26 23:58:43.489525 2019-12-26 23:59:21.688765 1 1 PV1-V-935 \N \N f 1912 1 2 701 1629.00 0.00 179.00 1450.00 2 2019-12-26 2019-12-27 00:11:10.106754 2019-12-27 00:11:15.906923 1 1 PV1-V-936 \N \N f 1913 1 2 701 85.34 13.65 0.00 98.99 2 2019-12-26 2019-12-27 01:24:29.712976 2019-12-27 01:24:43.729452 1 1 PV1-V-937 \N \N f 1915 1 2 701 1769.00 0.00 149.00 1620.00 2 2019-12-26 2019-12-27 02:43:11.04473 2019-12-27 02:43:15.346382 1 1 PV1-V-938 \N \N f 1916 1 2 706 1698.00 0.00 338.00 1360.00 1 2019-12-27 2019-12-27 18:44:37.941224 2019-12-27 18:45:32.818284 1 1 PV1-V-939 \N \N f 1917 1 2 706 1698.00 0.00 308.00 1390.00 2 2019-12-27 2019-12-27 18:46:51.451819 2019-12-27 18:46:57.393777 1 1 PV1-V-940 \N \N f 1918 1 21 705 899.00 0.00 0.00 899.00 2 2019-12-27 2019-12-27 20:10:13.286482 2019-12-27 20:10:47.305183 1 12 PV3-V-215 \N \N f 1919 1 2 706 1299.00 0.00 129.00 1170.00 2 2019-12-27 2019-12-27 20:34:05.362231 2019-12-27 20:34:18.345376 1 1 PV1-V-941 \N \N f 1920 1 2 706 1299.00 0.00 129.00 1170.00 2 2019-12-27 2019-12-27 21:40:41.278416 2019-12-27 21:41:18.961086 1 1 PV1-V-942 \N \N f 1921 1 2 706 599.00 0.00 59.00 540.00 2 2019-12-27 2019-12-27 22:18:12.43983 2019-12-27 22:18:16.964411 1 1 PV1-V-943 \N \N f 1866 271 27 696 799.00 0.00 79.90 719.10 2 2019-12-23 2019-12-24 02:19:43.479362 2019-12-28 22:47:30.540411 2 19 PV2-V-743 2020-01-27 \N f 1914 33 21 702 799.00 0.00 0.00 799.00 2 2019-12-26 2019-12-27 01:29:38.586737 2020-04-29 01:44:33.691798 0 14 PV3-V-214 \N \N f 1922 1 27 704 649.00 0.00 64.90 584.10 2 2019-12-27 2019-12-27 22:55:56.965625 2019-12-27 22:56:10.915903 1 19 PV2-V-762 \N \N f 1923 1 27 704 829.00 0.00 0.00 829.00 2 2019-12-27 2019-12-27 22:59:37.64747 2019-12-27 22:59:45.026204 1 19 PV2-V-763 \N \N f 1924 1 27 704 599.00 0.00 0.00 599.00 2 2019-12-27 2019-12-27 23:42:12.745101 2019-12-27 23:43:03.694208 1 19 PV2-V-764 \N \N f 1925 1 2 706 2299.00 0.00 299.00 2000.00 2 2019-12-27 2019-12-28 00:14:04.3116 2019-12-28 00:14:11.183381 1 1 PV1-V-944 \N \N f 1926 1 27 704 99.00 0.00 0.00 99.00 2 2019-12-27 2019-12-28 00:17:44.819484 2019-12-28 00:17:50.655567 1 17 PV2-V-765 \N \N f 1952 1 21 714 749.00 0.00 0.00 749.00 2 2019-12-30 2019-12-31 00:37:32.833335 2019-12-31 00:37:42.487631 1 12 PV3-V-224 \N \N f 1928 1 27 704 569.00 0.00 56.90 512.10 2 2019-12-27 2019-12-28 01:47:16.717276 2019-12-28 01:47:45.754008 1 17 PV2-V-767 \N \N f 1929 1 27 707 999.00 0.00 99.90 899.10 2 2019-12-28 2019-12-28 18:00:21.768964 2019-12-28 18:00:57.9476 1 17 PV2-V-768 \N \N f 1930 1 2 708 1399.00 0.00 299.00 1100.00 2 2019-12-28 2019-12-28 19:51:49.041618 2019-12-28 19:51:53.276386 1 1 PV1-V-945 \N \N f 1931 1 21 709 139.00 0.00 0.00 139.00 2 2019-12-28 2019-12-28 20:07:11.462219 2019-12-28 20:07:19.890549 1 12 PV3-V-216 \N \N f 1932 1 2 708 1199.00 0.00 119.00 1080.00 2 2019-12-28 2019-12-28 20:25:45.05131 2019-12-28 20:26:57.815615 1 1 PV1-V-946 \N \N f 1933 1 2 708 1578.00 0.00 158.00 1420.00 2 2019-12-28 2019-12-28 21:24:43.423127 2019-12-28 21:24:49.848324 1 1 PV1-V-947 \N \N f 1934 1 2 708 799.00 0.00 0.00 799.00 1 2019-12-28 2019-12-28 21:59:34.525091 2019-12-28 21:59:40.576328 1 1 PV1-V-948 \N \N f 1935 1 2 708 799.00 0.00 69.00 730.00 2 2019-12-28 2019-12-28 21:59:59.481128 2019-12-28 22:00:03.691044 1 1 PV1-V-949 \N \N f 1927 273 27 704 1488.00 0.00 148.80 1339.20 2 2019-12-27 2019-12-28 00:22:20.172386 2019-12-28 22:46:23.203543 2 17 PV2-V-766 2020-01-31 \N f 1936 1 21 709 2299.00 0.00 0.00 2299.00 2 2019-12-28 2019-12-29 01:52:12.827867 2019-12-29 01:52:20.791147 1 12 PV3-V-217 \N \N f 1937 1 21 712 2299.00 0.00 229.90 2069.10 2 2019-12-29 2019-12-29 19:26:30.938812 2019-12-29 19:27:09.283802 1 12 PV3-V-218 \N \N f 1938 1 2 711 749.00 0.00 74.00 675.00 2 2019-12-29 2019-12-29 21:32:57.11552 2019-12-29 21:33:03.816488 1 1 PV1-V-950 \N \N f 1939 1 2 711 3128.00 0.00 628.00 2500.00 2 2019-12-29 2019-12-29 21:39:13.673991 2019-12-29 21:39:20.028484 1 1 PV1-V-951 \N \N f 1940 1 2 713 629.00 0.00 59.00 570.00 2 2019-12-30 2019-12-30 17:43:32.32918 2019-12-30 17:43:36.640176 1 1 PV1-V-952 \N \N f 1941 1 2 713 899.00 0.00 89.00 810.00 2 2019-12-30 2019-12-30 18:00:31.649883 2019-12-30 18:00:35.847336 1 1 PV1-V-953 \N \N f 1942 1 21 714 629.00 0.00 0.00 629.00 2 2019-12-30 2019-12-30 18:35:54.123534 2019-12-30 18:36:21.048792 1 12 PV3-V-219 \N \N f 1943 1 21 714 1511.52 187.48 339.80 1359.20 2 2019-12-30 2019-12-30 19:25:49.527885 2019-12-30 19:26:03.273351 1 12 PV3-V-220 \N \N f 1944 1 2 713 868.00 0.00 79.00 789.00 2 2019-12-30 2019-12-30 20:12:23.564191 2019-12-30 20:12:29.584495 1 1 PV1-V-954 \N \N f 1945 1 21 714 569.00 0.00 0.00 569.00 2 2019-12-30 2019-12-30 21:39:02.334807 2019-12-30 21:39:14.356765 1 12 PV3-V-221 \N \N f 1946 1 21 714 599.00 0.00 0.00 599.00 2 2019-12-30 2019-12-30 21:40:32.842471 2019-12-30 21:41:53.581986 1 12 PV3-V-222 \N \N f 1947 1 27 710 989.00 0.00 0.00 989.00 2 2019-12-30 2019-12-30 21:53:02.75417 2019-12-30 21:53:26.731111 1 17 PV2-V-769 \N \N f 1948 1 27 710 459.00 0.00 45.90 413.10 2 2019-12-30 2019-12-30 22:33:34.530782 2019-12-30 22:34:06.858057 1 19 PV2-V-770 \N \N f 1949 1 2 713 999.00 0.00 149.00 850.00 2 2019-12-30 2019-12-30 23:06:28.157177 2019-12-30 23:07:01.469872 1 1 PV1-V-955 \N \N f 1950 1 27 710 699.00 0.00 69.90 629.10 2 2019-12-30 2019-12-30 23:07:55.001556 2019-12-30 23:08:45.303813 1 19 PV2-V-771 \N \N f 1951 1 21 714 1299.00 0.00 0.00 1299.00 2 2019-12-30 2019-12-30 23:21:23.495299 2019-12-30 23:21:43.630651 1 12 PV3-V-223 \N \N f 1953 1 27 710 699.00 0.00 69.90 629.10 2 2019-12-30 2019-12-31 00:51:12.94883 2019-12-31 00:51:39.386586 1 19 PV2-V-772 \N \N f 1954 1 27 710 699.00 0.00 69.90 629.10 2 2019-12-30 2019-12-31 00:53:07.104698 2019-12-31 00:53:16.507413 1 19 PV2-V-773 \N \N f 1955 1 27 710 899.00 0.00 0.00 899.00 2 2019-12-30 2019-12-31 00:57:47.166928 2019-12-31 00:58:12.850035 1 17 PV2-V-774 \N \N f 1956 1 27 710 799.00 0.00 0.00 799.00 2 2019-12-30 2019-12-31 01:10:54.712203 2019-12-31 01:11:10.715642 1 17 PV2-V-775 \N \N f 1957 1 27 710 699.00 0.00 69.90 629.10 2 2019-12-30 2019-12-31 02:00:16.550964 2019-12-31 02:00:46.565485 1 19 PV2-V-776 \N \N f 1958 274 2 713 749.00 0.00 74.00 675.00 1 2019-12-30 2019-12-31 02:04:22.419157 2019-12-31 02:04:36.133699 2 1 PV1-V-956 2020-02-03 \N f 1959 1 2 713 749.00 0.00 74.00 675.00 2 2019-12-30 2019-12-31 02:05:13.365083 2019-12-31 02:05:19.09451 1 1 PV1-V-957 \N \N f 1960 1 2 713 899.00 0.00 89.00 810.00 2 2019-12-30 2019-12-31 02:21:34.849577 2019-12-31 02:22:01.691542 1 1 PV1-V-958 \N \N f 1961 1 2 715 629.00 0.00 59.00 570.00 2 2019-12-31 2019-12-31 17:41:53.616635 2019-12-31 17:42:01.381684 1 1 PV1-V-959 \N \N f 1962 1 27 716 1129.00 0.00 0.00 1129.00 2 2019-12-31 2019-12-31 18:11:15.626821 2019-12-31 18:12:13.742975 1 19 PV2-V-777 \N \N f 1963 1 2 715 599.00 0.00 59.00 540.00 2 2019-12-31 2019-12-31 18:33:04.39699 2019-12-31 18:33:09.102553 1 1 PV1-V-960 \N \N f 1964 1 2 715 829.00 0.00 129.00 700.00 2 2019-12-31 2019-12-31 19:10:08.393935 2019-12-31 19:10:18.95895 1 1 PV1-V-961 \N \N f 1965 1 27 716 689.00 0.00 0.00 689.00 2 2019-12-31 2019-12-31 19:51:44.053507 2019-12-31 19:52:30.360696 1 17 PV2-V-778 \N \N f 1967 1 21 717 749.00 0.00 74.90 674.10 2 2019-12-31 2019-12-31 20:12:29.835215 2019-12-31 20:13:01.984113 1 12 PV3-V-226 \N \N f 1968 1 2 715 1299.00 0.00 149.00 1150.00 2 2019-12-31 2019-12-31 20:14:18.692951 2019-12-31 20:14:25.982676 1 1 PV1-V-962 \N \N f 1969 1 27 716 1129.00 0.00 112.90 1016.10 2 2019-12-31 2019-12-31 20:19:41.529518 2019-12-31 20:25:29.628389 1 17 PV2-V-779 \N \N f 1970 1 27 716 1199.00 0.00 119.90 1079.10 2 2019-12-31 2019-12-31 20:49:51.856182 2019-12-31 20:50:38.604023 1 19 PV2-V-780 \N \N f 1976 1 2 715 629.00 0.00 69.00 560.00 2 2019-12-31 2019-12-31 21:41:07.454653 2019-12-31 21:41:12.062319 1 1 PV1-V-968 \N \N f 1972 1 2 715 799.00 0.00 199.00 600.00 2 2019-12-31 2019-12-31 21:17:49.570325 2019-12-31 21:17:53.908633 1 1 PV1-V-964 \N \N f 1973 1 2 715 699.00 0.00 69.00 630.00 2 2019-12-31 2019-12-31 21:20:33.579362 2019-12-31 21:20:45.60343 1 1 PV1-V-965 \N \N f 1971 1 2 715 5336.34 89.65 776.00 4649.99 1 2019-12-31 2019-12-31 21:11:16.582295 2019-12-31 21:31:07.289255 1 1 PV1-V-962 \N \N f 1974 1 2 715 5336.34 89.65 776.00 4649.99 2 2019-12-31 2019-12-31 21:34:48.54228 2019-12-31 21:34:55.617286 1 1 PV1-V-966 \N \N f 1975 1 2 715 469.00 0.00 49.00 420.00 1 2019-12-31 2019-12-31 21:36:52.971131 2019-12-31 21:39:05.609334 1 1 PV1-V-967 \N \N f 1977 1 21 717 84.48 13.52 0.00 98.00 2 2019-12-31 2019-12-31 22:35:21.79501 2019-12-31 22:35:49.318198 1 12 PV3-V-227 \N \N f 1978 1 2 715 999.00 0.00 99.00 900.00 2 2019-12-31 2019-12-31 22:46:35.236104 2019-12-31 22:46:39.47212 1 1 PV1-V-969 \N \N f 1979 1 2 715 749.00 0.00 74.00 675.00 2 2019-12-31 2019-12-31 22:50:30.95855 2019-12-31 22:50:38.168868 1 1 PV1-V-970 \N \N f 1980 1 2 715 2668.00 0.00 425.00 2243.00 2 2019-12-31 2019-12-31 23:17:27.441757 2019-12-31 23:18:07.536237 1 1 PV1-V-971 \N \N f 1981 1 2 715 699.00 0.00 54.00 645.00 2 2019-12-31 2019-12-31 23:19:28.69899 2019-12-31 23:19:32.734766 1 1 PV1-V-972 \N \N f 1982 1 27 716 699.00 0.00 69.90 629.10 2 2019-12-31 2019-12-31 23:20:47.355294 2019-12-31 23:21:24.973161 1 19 PV2-V-781 \N \N f 1983 1 21 717 749.00 0.00 0.00 749.00 2 2019-12-31 2019-12-31 23:25:40.686872 2019-12-31 23:26:33.219646 1 12 PV3-V-228 \N \N f 1984 1 2 715 699.00 0.00 69.00 630.00 2 2019-12-31 2019-12-31 23:47:34.180947 2019-12-31 23:47:41.355019 1 10 PV1-V-973 \N \N f 1966 145 21 717 2108.00 0.00 0.00 2108.00 2 2019-12-31 2019-12-31 19:59:08.678353 2020-06-20 01:17:05.933111 0 12 PV3-V-225 \N \N f 1985 1 21 717 549.00 0.00 0.00 549.00 2 2019-12-31 2020-01-01 00:16:52.928927 2020-01-01 00:17:02.363236 1 12 PV3-V-229 \N \N f 1986 1 2 715 999.00 0.00 99.00 900.00 2 2019-12-31 2020-01-01 00:34:48.39716 2020-01-01 00:35:14.188149 1 1 PV1-V-974 \N \N f 1987 1 27 716 699.00 0.00 104.85 594.15 2 2019-12-31 2020-01-01 00:36:34.12201 2020-01-01 00:36:55.673346 1 17 PV2-V-782 \N \N f 1988 1 27 716 989.00 0.00 0.00 989.00 2 2019-12-31 2020-01-01 00:37:53.460606 2020-01-01 00:38:22.909155 1 17 PV2-V-783 \N \N f 1989 1 24 718 1469.00 0.00 119.00 1350.00 2 2019-12-31 2020-01-01 01:05:19.389213 2020-01-01 01:05:32.408426 1 19 PV2-V-784 \N \N f 1990 1 27 718 1116.25 51.75 233.60 934.40 2 2020-01-02 2020-01-02 21:03:43.392602 2020-01-02 21:04:01.752869 1 17 PV2-V-785 \N \N f 1991 1 2 719 679.00 0.00 0.00 679.00 2 2020-01-02 2020-01-02 21:58:28.067494 2020-01-02 22:02:53.829256 1 18 PV1-V-975 \N \N f 1992 1 2 722 719.00 0.00 69.00 650.00 2 2020-01-03 2020-01-03 18:25:27.991627 2020-01-03 18:25:32.648114 1 1 PV1-V-976 \N \N f 1994 1 27 721 449.00 0.00 179.60 269.40 2 2020-01-03 2020-01-03 19:59:50.635757 2020-01-03 19:59:56.928544 1 17 PV2-V-786 \N \N f 1995 1 27 721 839.00 0.00 335.60 503.40 2 2020-01-03 2020-01-03 20:14:57.785796 2020-01-03 20:15:36.035101 1 19 PV2-V-787 \N \N f 1996 1 2 722 749.00 0.00 299.00 450.00 2 2020-01-03 2020-01-03 20:47:30.473034 2020-01-03 20:47:37.641877 1 1 PV1-V-977 \N \N f 1997 1 27 721 1598.00 0.00 799.00 799.00 2 2020-01-03 2020-01-03 21:36:46.529916 2020-01-03 21:36:54.368319 1 17 PV2-V-788 \N \N f 1998 1 27 721 469.00 0.00 187.60 281.40 2 2020-01-03 2020-01-03 21:44:14.741533 2020-01-03 21:44:20.37115 1 19 PV2-V-789 \N \N f 1999 1 27 721 789.00 0.00 315.60 473.40 1 2020-01-03 2020-01-04 00:32:58.162929 2020-01-04 00:41:39.728336 1 17 PV2-V-790 \N \N f 2000 1 27 721 789.00 0.00 315.60 473.40 2 2020-01-03 2020-01-04 00:42:12.965262 2020-01-04 00:42:18.13335 1 19 PV2-V-791 \N \N f 2001 1 21 723 1899.00 0.00 759.60 1139.40 2 2020-01-03 2020-01-04 01:29:16.966245 2020-01-04 01:29:24.365621 1 12 PV3-V-231 \N \N f 2002 1 21 723 299.00 0.00 59.80 239.20 2 2020-01-03 2020-01-04 01:39:33.604509 2020-01-04 01:39:49.584772 1 12 PV3-V-232 \N \N f 2003 1 21 723 2299.00 0.00 919.60 1379.40 2 2020-01-03 2020-01-04 01:40:54.111907 2020-01-04 01:41:00.050984 1 12 PV3-V-233 \N \N f 2004 1 2 724 3218.00 0.00 1549.00 1669.00 2 2020-01-04 2020-01-04 18:08:35.059515 2020-01-04 18:09:05.557937 1 1 PV1-V-978 \N \N f 2005 1 8 726 499.00 0.00 199.60 299.40 2 2020-01-04 2020-01-04 18:49:17.284705 2020-01-04 18:49:23.439624 1 17 PV2-V-792 \N \N f 2006 1 8 726 899.00 0.00 359.60 539.40 2 2020-01-04 2020-01-04 19:57:39.092204 2020-01-04 19:58:35.673761 1 17 PV2-V-793 \N \N f 2007 1 8 726 649.00 0.00 259.60 389.40 2 2020-01-04 2020-01-04 20:25:18.655356 2020-01-04 20:25:55.53443 1 17 PV2-V-794 \N \N f 2008 1 8 726 595.29 53.71 259.60 389.40 2 2020-01-04 2020-01-04 20:27:46.656337 2020-01-04 20:28:05.35057 1 17 PV2-V-795 \N \N f 2009 1 8 726 85.34 13.65 0.00 98.99 2 2020-01-04 2020-01-04 20:35:50.119365 2020-01-04 20:35:55.316261 1 17 PV2-V-796 \N \N f 2010 1 2 724 1368.00 0.00 619.00 749.00 2 2020-01-04 2020-01-04 21:11:34.812604 2020-01-04 21:11:39.549226 1 1 PV1-V-979 \N \N f 2011 1 8 726 699.00 0.00 279.60 419.40 2 2020-01-04 2020-01-05 00:19:30.385055 2020-01-05 00:19:47.113067 1 17 PV2-V-797 \N \N f 2015 1 27 727 430.19 38.81 187.60 281.40 2 2020-01-06 2020-01-06 22:56:33.706727 2020-01-06 22:57:15.107613 1 19 PV2-V-799 \N \N f 2012 1 2 724 1629.00 0.00 649.00 980.00 1 2020-01-04 2020-01-05 01:12:05.72677 2020-01-05 01:17:56.898539 1 1 PV1-V-980 \N \N f 2013 1 2 724 3178.00 0.00 1549.00 1629.00 2 2020-01-04 2020-01-05 01:23:43.075425 2020-01-05 01:23:48.82678 1 1 PV1-V-981 \N \N f 2014 1 8 726 789.00 0.00 315.00 474.00 2 2020-01-04 2020-01-05 02:41:19.666797 2020-01-05 02:41:24.855238 1 19 PV2-V-798 \N \N f 2016 1 2 728 549.00 0.00 219.00 330.00 2 2020-01-06 2020-01-07 00:17:09.135356 2020-01-07 00:17:17.409162 1 1 PV1-V-982 \N \N f 2017 1 27 729 699.00 0.00 279.60 419.40 2 2020-01-07 2020-01-07 19:10:24.501683 2020-01-07 19:12:42.524093 1 19 PV2-V-800 \N \N f 2018 1 21 730 749.00 0.00 299.60 449.40 2 2020-01-07 2020-01-07 20:50:42.231317 2020-01-07 20:50:46.583855 1 12 PV3-V-234 \N \N f 2019 1 21 730 749.00 0.00 299.60 449.40 2 2020-01-07 2020-01-07 21:05:47.228343 2020-01-07 21:06:00.199506 1 12 PV3-V-235 \N \N f 2020 1 2 731 1629.00 0.00 651.00 978.00 2 2020-01-07 2020-01-07 21:57:17.034578 2020-01-07 21:57:23.178847 1 1 PV1-V-983 \N \N f 2021 1 2 731 899.17 68.83 469.00 499.00 2 2020-01-07 2020-01-07 23:44:56.045841 2020-01-07 23:45:02.353165 1 1 PV1-V-984 \N \N f 1993 275 21 723 1199.00 0.00 0.00 1199.00 2 2020-01-03 2020-01-03 19:37:07.797342 2020-07-04 01:06:28.459204 0 12 PV3-V-230 \N \N f 2023 1 27 732 1199.00 0.00 649.00 550.00 2 2020-01-08 2020-01-08 19:37:16.787674 2020-01-08 19:38:26.515194 1 19 PV2-V-801 \N \N f 2024 1 2 733 1299.00 0.00 519.00 780.00 2 2020-01-08 2020-01-08 22:27:08.375185 2020-01-08 22:27:50.626372 1 1 PV1-V-986 \N \N f 2025 1 2 733 1199.00 0.00 191.00 1008.00 2 2020-01-08 2020-01-08 22:50:00.89573 2020-01-08 22:50:34.754855 1 1 PV1-V-987 \N \N f 2026 1 2 733 599.00 0.00 239.00 360.00 2 2020-01-08 2020-01-09 00:42:38.194145 2020-01-09 00:42:48.699673 1 1 PV1-V-988 \N \N f 2027 1 21 734 1629.00 0.00 651.60 977.40 2 2020-01-08 2020-01-09 01:07:36.601094 2020-01-09 01:07:43.803161 1 12 PV3-V-236 \N \N f 2028 1 2 736 399.00 0.00 199.00 200.00 2 2020-01-09 2020-01-09 17:49:27.0568 2020-01-09 17:49:34.154224 1 1 PV1-V-989 \N \N f 2029 1 27 735 457.70 41.30 199.60 299.40 2 2020-01-09 2020-01-09 23:53:29.674621 2020-01-09 23:53:34.690346 1 19 PV2-V-802 \N \N f 2030 1 2 738 668.59 60.41 291.00 438.00 2 2020-01-10 2020-01-10 18:38:26.843933 2020-01-10 18:38:50.996807 1 1 PV1-V-990 \N \N f 2031 1 21 739 499.00 0.00 149.70 349.30 2 2020-01-10 2020-01-10 22:22:56.940016 2020-01-10 22:23:04.916115 1 12 PV3-V-237 \N \N f 2032 1 2 738 1399.00 0.00 559.00 840.00 2 2020-01-10 2020-01-10 22:57:54.114237 2020-01-10 22:57:58.799935 1 1 PV1-V-991 \N \N f 2033 1 27 737 459.00 0.00 183.60 275.40 2 2020-01-10 2020-01-11 00:00:33.112198 2020-01-11 00:01:26.627828 1 19 PV2-V-803 \N \N f 2034 1 21 739 1449.00 0.00 579.60 869.40 2 2020-01-10 2020-01-11 01:44:20.178226 2020-01-11 01:44:25.201354 1 12 PV3-V-238 \N \N f 2035 1 21 739 42.24 6.76 0.00 49.00 2 2020-01-10 2020-01-11 01:45:52.977372 2020-01-11 01:46:07.828748 1 12 PV3-V-239 \N \N f 2036 1 2 738 999.00 0.00 399.00 600.00 2 2020-01-10 2020-01-11 01:54:19.525957 2020-01-11 01:54:24.046672 1 1 PV1-V-992 \N \N f 2037 1 2 738 419.00 0.00 169.00 250.00 2 2020-01-10 2020-01-11 01:59:53.254206 2020-01-11 01:59:58.210355 1 1 PV1-V-993 \N \N f 2038 1 2 741 3506.00 0.00 1518.00 1988.00 2 2020-01-11 2020-01-11 19:25:23.369865 2020-01-11 19:25:28.298611 1 1 PV1-V-994 \N \N f 2039 1 2 741 749.00 0.00 299.60 449.40 1 2020-01-11 2020-01-11 21:07:22.204666 2020-01-11 21:07:29.282592 1 1 PV1-V-995 \N \N f 2040 1 2 741 749.00 0.00 299.60 449.40 2 2020-01-11 2020-01-11 21:07:54.514425 2020-01-11 21:09:56.104896 1 18 PV1-V-996 \N \N f 2041 1 2 741 1549.00 0.00 619.60 929.40 2 2020-01-11 2020-01-11 21:28:20.00414 2020-01-11 21:29:38.308749 1 1 PV1-V-997 \N \N f 2042 1 2 741 699.00 0.00 279.00 420.00 2 2020-01-11 2020-01-11 22:31:42.043441 2020-01-11 22:31:55.802726 1 1 PV1-V-998 \N \N f 2043 1 2 741 949.00 0.00 379.00 570.00 2 2020-01-11 2020-01-11 23:56:15.251145 2020-01-11 23:56:22.969943 1 1 PV1-V-999 \N \N f 2044 1 2 741 1989.00 0.00 794.00 1195.00 2 2020-01-11 2020-01-12 02:17:06.871929 2020-01-12 02:17:11.578022 1 1 PV1-V-1000 \N \N f 2045 1 2 741 1199.00 0.00 479.00 720.00 2 2020-01-11 2020-01-12 02:17:53.10877 2020-01-12 02:18:11.745957 1 1 PV1-V-1001 \N \N f 2046 1 2 743 1199.00 0.00 479.00 720.00 2 2020-01-13 2020-01-13 17:34:31.263487 2020-01-13 17:34:43.788243 1 1 PV1-V-1002 \N \N f 2022 276 2 733 1199.00 0.00 0.00 1199.00 2 2020-01-08 2020-01-08 19:16:27.589936 2020-02-10 19:29:48.004324 2 1 PV1-V-985 2020-02-12 \N f 2047 1 2 743 1224.00 0.00 599.00 625.00 2 2020-01-13 2020-01-13 23:11:32.58833 2020-01-13 23:11:39.660073 1 1 PV1-V-1003 \N \N f 2048 1 2 743 3178.00 0.00 1549.00 1629.00 2 2020-01-13 2020-01-13 23:48:22.434263 2020-01-13 23:48:33.811104 1 1 PV1-V-1004 \N \N f 2049 1 2 747 1199.00 0.00 499.00 700.00 2 2020-01-14 2020-01-14 20:20:21.124691 2020-01-14 20:20:25.658912 1 1 PV1-V-1005 \N \N f 2050 1 21 746 1599.00 0.00 0.00 1599.00 2 2020-01-14 2020-01-15 01:34:28.791577 2020-01-15 01:34:36.751104 1 12 PV3-V-240 \N \N f 2051 1 2 749 2968.00 0.00 1299.00 1669.00 2 2020-01-15 2020-01-15 18:46:45.945478 2020-01-15 18:46:51.196812 1 1 PV1-V-1006 \N \N f 2052 1 27 748 1299.00 0.00 519.60 779.40 2 2020-01-15 2020-01-16 02:05:08.637135 2020-01-16 02:06:38.680665 1 19 PV2-V-804 \N \N f 2053 1 27 751 589.00 0.00 235.60 353.40 1 2020-01-16 2020-01-16 18:12:18.999021 2020-01-16 18:12:52.121756 1 19 PV2-V-805 \N \N f 2054 1 27 751 85.34 13.65 0.00 98.99 2 2020-01-16 2020-01-16 20:08:56.718599 2020-01-16 20:09:01.32612 1 19 PV2-V-806 \N \N f 2055 1 21 753 145.00 0.00 0.00 145.00 2 2020-01-16 2020-01-16 23:42:27.556354 2020-01-16 23:52:43.769539 1 12 PV3-V-241 \N \N f 2056 1 27 751 1398.00 0.00 599.00 799.00 2 2020-01-16 2020-01-17 00:41:01.108092 2020-01-17 00:41:53.536375 1 19 PV2-V-807 \N \N f 2057 1 2 756 749.00 0.00 299.00 450.00 2 2020-01-17 2020-01-17 19:41:26.603361 2020-01-17 19:41:31.368821 1 1 PV1-V-1007 \N \N f 2058 1 27 754 419.00 0.00 167.60 251.40 2 2020-01-17 2020-01-17 19:43:28.932132 2020-01-17 19:44:01.128926 1 19 PV2-V-808 \N \N f 2059 1 27 754 599.00 0.00 239.60 359.40 2 2020-01-17 2020-01-17 19:54:57.484163 2020-01-17 19:55:42.923747 1 19 PV2-V-809 \N \N f 2060 277 21 755 2099.00 0.00 0.00 2099.00 1 2020-01-17 2020-01-17 20:03:42.630075 2020-01-17 20:03:55.357752 1 12 PV3-V-242 \N \N f 2063 277 21 755 320.00 0.00 0.00 320.00 4 2020-01-17 2020-01-17 20:09:21.796447 2020-03-18 18:54:23.835339 2 12 PV3-V-245 2020-02-21 \N f 2062 1 21 755 229.00 0.00 0.00 229.00 2 2020-01-17 2020-01-17 20:07:49.590678 2020-01-17 20:07:57.376408 1 12 PV3-V-244 \N \N f 2064 1 27 754 549.43 49.57 239.60 359.40 2 2020-01-17 2020-01-17 22:30:12.612477 2020-01-17 22:30:28.513065 1 19 PV2-V-810 \N \N f 2065 1 27 754 541.17 57.84 179.70 419.31 2 2020-01-17 2020-01-18 01:27:36.835058 2020-01-18 01:28:42.035187 1 19 PV2-V-811 \N \N f 2066 1 21 755 799.00 0.00 399.50 399.50 2 2020-01-17 2020-01-18 02:16:21.600449 2020-01-18 02:17:16.256042 1 12 PV3-V-246 \N \N f 2067 1 2 757 1899.00 0.00 749.00 1150.00 2 2020-01-18 2020-01-18 20:28:48.830697 2020-01-18 20:28:56.125819 1 1 PV1-V-1008 \N \N f 2068 1 2 757 1699.00 0.00 679.00 1020.00 2 2020-01-18 2020-01-18 21:43:49.184248 2020-01-18 21:44:04.660263 1 1 PV1-V-1009 \N \N f 2069 1 2 757 1199.00 0.00 479.00 720.00 2 2020-01-18 2020-01-18 23:38:27.279198 2020-01-18 23:38:31.183924 1 1 PV1-V-1010 \N \N f 2070 1 21 759 1249.00 0.00 499.60 749.40 2 2020-01-18 2020-01-19 01:29:05.545154 2020-01-19 01:29:10.111956 1 12 PV3-V-247 \N \N f 2071 1 29 760 999.00 0.00 399.00 600.00 2 2020-01-20 2020-01-21 01:44:10.497726 2020-01-21 01:44:14.945974 1 1 PV1-V-1011 \N \N f 2077 279 21 767 1599.00 0.00 0.00 1599.00 2 2020-01-23 2020-01-23 20:24:52.653331 2020-03-02 21:11:04.674796 0 12 PV3-V-249 \N \N f 2073 1 27 758 569.00 0.00 227.60 341.40 2 2020-01-21 2020-01-22 00:03:30.619948 2020-01-22 00:04:01.989187 1 19 PV2-V-812 \N \N f 2074 1 27 758 659.00 0.00 263.60 395.40 2 2020-01-21 2020-01-22 00:29:44.938335 2020-01-22 00:30:34.714334 1 19 PV2-V-813 \N \N f 2075 1 2 766 1199.00 0.00 479.00 720.00 2 2020-01-22 2020-01-22 22:07:31.442486 2020-01-22 22:07:37.641863 1 1 PV1-V-1012 \N \N f 2076 1 27 764 799.00 0.00 319.60 479.40 2 2020-01-23 2020-01-23 18:19:40.655023 2020-01-23 18:20:19.475435 1 19 PV2-V-814 \N \N f 2078 1 27 764 569.00 0.00 227.60 341.40 2 2020-01-23 2020-01-24 00:51:49.38449 2020-01-24 00:51:58.252989 1 19 PV2-V-815 \N \N f 2079 1 2 768 1899.00 0.00 759.00 1140.00 2 2020-01-23 2020-01-24 01:04:04.799309 2020-01-24 01:04:14.485912 1 1 PV1-V-1013 \N \N f 2080 1 2 768 679.00 0.00 270.00 409.00 2 2020-01-23 2020-01-24 01:06:09.321124 2020-01-24 01:06:15.369396 1 1 PV1-V-1014 \N \N f 2081 1 27 769 699.00 0.00 279.60 419.40 2 2020-01-24 2020-01-24 17:38:55.86668 2020-01-24 17:39:28.191188 1 19 PV2-V-816 \N \N f 2082 1 2 770 749.00 0.00 300.00 449.00 2 2020-01-24 2020-01-24 17:47:32.079019 2020-01-24 17:47:43.181916 1 1 PV1-V-1015 \N \N f 2083 1 2 770 2299.00 0.00 920.00 1379.00 2 2020-01-24 2020-01-24 18:23:45.335697 2020-01-24 18:23:55.205358 1 1 PV1-V-1016 \N \N f 2084 1 2 770 2388.00 0.00 316.00 2072.00 2 2020-01-24 2020-01-24 20:34:14.695197 2020-01-24 20:34:32.507058 1 1 PV1-V-1017 \N \N f 2085 1 2 770 199.00 0.00 0.00 199.00 2 2020-01-24 2020-01-24 20:38:43.791194 2020-01-24 20:38:49.028611 1 1 PV1-V-1018 \N \N f 2086 1 27 769 989.00 0.00 395.60 593.40 2 2020-01-24 2020-01-24 22:35:16.889303 2020-01-24 22:49:41.298716 1 19 PV2-V-817 \N \N f 2087 1 2 772 971.41 27.59 799.00 200.00 2 2020-01-25 2020-01-25 21:53:55.170245 2020-01-25 21:54:13.254655 1 1 PV1-V-1019 \N \N f 2088 1 2 772 1868.00 0.00 899.00 969.00 2 2020-01-25 2020-01-25 21:59:20.462166 2020-01-25 21:59:24.495378 1 1 PV1-V-1020 \N \N f 2089 1 8 773 714.45 64.55 311.00 468.00 2 2020-01-25 2020-01-25 22:13:04.584763 2020-01-25 22:13:29.922331 1 11 PV2-V-818 \N \N f 2090 1 8 773 649.00 0.00 259.00 390.00 2 2020-01-25 2020-01-25 23:12:45.408811 2020-01-25 23:12:53.895777 1 4 PV2-V-819 \N \N f 2091 1 2 772 1014.21 13.79 828.00 200.00 2 2020-01-25 2020-01-25 23:54:41.893582 2020-01-25 23:54:49.600013 1 1 PV1-V-1021 \N \N f 2092 1 2 772 1999.42 27.58 1727.00 300.00 2 2020-01-25 2020-01-26 00:02:42.095909 2020-01-26 00:02:46.97176 1 1 PV1-V-1022 \N \N f 2093 1 2 772 899.00 0.00 799.00 100.00 2 2020-01-25 2020-01-26 00:11:45.299584 2020-01-26 00:11:49.530495 1 1 PV1-V-1023 \N \N f 2094 1 2 772 899.00 0.00 799.00 100.00 2 2020-01-25 2020-01-26 00:12:28.6397 2020-01-26 00:12:34.80501 1 1 PV1-V-1024 \N \N f 2095 1 8 773 916.38 82.62 400.00 599.00 2 2020-01-25 2020-01-26 00:52:30.443316 2020-01-26 00:52:39.107162 1 4 PV2-V-820 \N \N f 2096 1 2 772 870.42 27.58 698.00 200.00 2 2020-01-25 2020-01-26 00:58:25.09362 2020-01-26 00:58:29.499725 1 1 PV1-V-1025 \N \N f 2097 1 2 772 1648.00 0.00 1448.00 200.00 2 2020-01-25 2020-01-26 01:38:31.351629 2020-01-26 01:39:26.223044 1 1 PV1-V-1026 \N \N f 2098 1 21 774 569.00 0.00 0.00 569.00 2 2020-01-25 2020-01-26 01:47:53.765369 2020-01-26 01:48:04.805794 1 12 PV3-V-250 \N \N f 2099 1 2 772 119.00 0.00 0.00 119.00 2 2020-01-25 2020-01-26 02:04:40.867745 2020-01-26 02:04:47.478203 1 1 PV1-V-1027 \N \N f 2100 1 2 772 435.21 13.79 349.00 100.00 2 2020-01-25 2020-01-26 02:10:51.003059 2020-01-26 02:10:57.346358 1 1 PV1-V-1028 \N \N f 2101 1 25 775 485.21 13.79 399.00 100.00 2 2020-01-26 2020-01-26 18:56:11.599419 2020-01-26 18:56:16.20634 1 18 PV1-V-1029 \N \N f 2102 1 27 776 649.00 0.00 259.60 389.40 2 2020-01-26 2020-01-26 20:21:16.438428 2020-01-26 20:21:22.347694 1 4 PV2-V-821 \N \N f 2103 1 25 775 1199.00 0.00 479.00 720.00 2 2020-01-26 2020-01-26 21:35:56.100924 2020-01-26 21:36:02.252555 1 1 PV1-V-1030 \N \N f 2104 1 27 776 1129.19 38.81 467.20 700.80 2 2020-01-26 2020-01-26 21:45:20.367967 2020-01-26 21:45:24.691206 1 19 PV2-V-822 \N \N f 2105 1 27 777 1099.00 0.00 439.60 659.40 2 2020-01-27 2020-01-27 19:22:59.451377 2020-01-27 19:24:16.06113 1 19 PV2-V-823 \N \N f 2106 1 2 778 465.21 13.79 379.00 100.00 1 2020-01-27 2020-01-27 23:50:24.854721 2020-01-27 23:57:31.948123 1 1 PV1-V-1031 \N \N f 2107 1 2 778 412.93 66.07 0.00 479.00 1 2020-01-27 2020-01-27 23:57:58.45745 2020-01-27 23:58:26.650127 1 3 PV1-V-1032 \N \N f 2108 1 2 778 465.21 13.79 379.00 100.00 2 2020-01-27 2020-01-27 23:58:48.527374 2020-01-27 23:58:53.37489 1 3 PV1-V-1033 \N \N f 2109 1 2 778 935.21 13.79 849.00 100.00 2 2020-01-27 2020-01-28 01:50:10.289218 2020-01-28 01:50:16.209663 1 1 PV1-V-1034 \N \N f 2061 277 21 755 2099.00 0.00 0.00 2099.00 4 2020-01-17 2020-01-17 20:04:34.976259 2020-03-18 18:53:56.704108 2 12 PV3-V-243 2020-02-21 \N f 2072 278 21 761 1723.28 275.72 0.00 1999.00 2 2020-01-20 2020-01-21 02:50:02.1209 2020-02-04 23:20:05.652543 2 12 PV3-V-248 2020-02-24 \N f 2110 1 21 779 829.00 0.00 0.00 829.00 2 2020-01-27 2020-01-28 02:31:33.563702 2020-01-28 02:32:44.046203 1 12 PV3-V-251 \N \N f 2139 1 27 786 699.00 0.00 279.60 419.40 2 2020-01-30 2020-01-31 00:14:51.170959 2020-01-31 00:14:57.923077 1 19 PV2-V-829 \N \N f 2111 280 21 779 1084.34 13.65 0.00 1097.99 1 2020-01-27 2020-01-28 02:35:51.793524 2020-01-28 02:38:54.802807 2 12 PV3-V-252 2020-03-02 \N f 2132 159 18 788 1099.00 0.00 0.00 1099.00 2 2020-01-30 2020-01-30 20:32:57.066034 2020-03-10 01:21:15.623567 2 14 PV3-V-255 2020-03-05 \N f 2113 1 2 780 485.21 13.79 399.00 100.00 2 2020-01-28 2020-01-28 18:23:31.02272 2020-01-28 18:23:34.982168 1 1 PV1-V-1035 \N \N f 2114 1 2 780 485.21 13.79 399.00 100.00 2 2020-01-28 2020-01-28 18:46:38.109639 2020-01-28 18:46:53.078279 1 1 PV1-V-1036 \N \N f 2115 1 8 782 629.00 0.00 279.00 350.00 2 2020-01-28 2020-01-28 19:46:02.899012 2020-01-28 19:46:07.635143 1 4 PV2-V-824 \N \N f 2116 1 8 782 594.52 34.48 379.00 250.00 2 2020-01-28 2020-01-28 19:49:08.685414 2020-01-28 19:49:12.79213 1 4 PV2-V-825 \N \N f 2117 1 2 780 871.41 27.59 699.00 200.00 2 2020-01-28 2020-01-28 19:51:34.684626 2020-01-28 19:51:55.351217 1 1 PV1-V-1037 \N \N f 2118 1 2 780 1728.00 0.00 1528.00 200.00 2 2020-01-28 2020-01-28 21:01:36.073981 2020-01-28 21:02:35.484262 1 1 PV1-V-1038 \N \N f 2119 1 2 780 1465.21 13.79 1279.00 200.00 2 2020-01-28 2020-01-29 00:19:31.843467 2020-01-29 00:19:36.10682 1 1 PV1-V-1039 \N \N f 2120 1 2 783 869.00 0.00 769.00 100.00 2 2020-01-29 2020-01-29 16:44:12.050176 2020-01-29 16:44:17.352253 1 1 PV1-V-1040 \N \N f 2112 280 21 779 1084.34 13.65 0.00 1097.99 2 2020-01-27 2020-01-28 02:39:47.554915 2020-02-20 19:04:23.77791 2 12 PV3-V-253 2020-03-02 \N f 2122 1 2 783 1148.00 0.00 549.00 599.00 2 2020-01-29 2020-01-29 17:25:26.922915 2020-01-29 17:25:32.094197 1 1 PV1-V-1042 \N \N f 2123 1 2 783 871.41 27.59 699.00 200.00 2 2020-01-29 2020-01-29 18:23:44.531745 2020-01-29 18:24:12.462708 1 1 PV1-V-1043 \N \N f 2124 1 2 783 645.21 13.79 559.00 100.00 2 2020-01-29 2020-01-29 20:39:29.558051 2020-01-29 20:39:36.055025 1 1 PV1-V-1044 \N \N f 2125 1 2 783 1359.00 0.00 549.00 810.00 2 2020-01-29 2020-01-29 21:56:49.528483 2020-01-29 21:57:08.108168 1 1 PV1-V-1045 \N \N f 2126 1 2 783 699.00 0.00 279.00 420.00 2 2020-01-29 2020-01-29 22:02:27.718209 2020-01-29 22:02:32.079303 1 1 PV1-V-1046 \N \N f 2127 1 2 783 855.21 13.79 769.00 100.00 2 2020-01-29 2020-01-29 22:05:37.427639 2020-01-29 22:05:41.809357 1 1 PV1-V-1047 \N \N f 2128 1 2 783 586.21 13.79 500.00 100.00 2 2020-01-29 2020-01-30 00:19:51.074678 2020-01-30 00:20:15.644063 1 1 PV1-V-1048 \N \N f 2129 1 21 785 419.00 0.00 0.00 419.00 2 2020-01-29 2020-01-30 03:05:03.046213 2020-01-30 03:05:08.054064 1 12 PV3-V-254 \N \N f 2130 1 2 787 849.00 0.00 749.00 100.00 2 2020-01-30 2020-01-30 17:50:29.894236 2020-01-30 17:50:34.365376 1 1 PV1-V-1049 \N \N f 2131 1 27 786 732.88 66.12 319.60 479.40 2 2020-01-30 2020-01-30 18:42:44.393135 2020-01-30 18:42:57.707068 1 19 PV2-V-826 \N \N f 2133 1 27 786 749.00 0.00 299.60 449.40 2 2020-01-30 2020-01-30 21:33:48.479652 2020-01-30 21:33:55.681799 1 19 PV2-V-827 \N \N f 2134 282 18 788 549.00 0.00 0.00 549.00 1 2020-01-30 2020-01-30 21:46:57.859233 2020-01-30 21:47:26.518119 1 14 PV3-V-256 \N \N f 2168 284 21 798 1549.00 0.00 0.00 1549.00 2 2020-02-04 2020-02-04 23:24:49.574235 2020-02-10 19:21:50.75797 2 12 PV3-V-262 2020-03-10 \N f 2137 1 2 787 749.00 0.00 299.00 450.00 2 2020-01-30 2020-01-30 22:48:20.376118 2020-01-30 22:48:24.991966 1 1 PV1-V-1050 \N \N f 2140 1 2 787 2828.00 0.00 1399.00 1429.00 2 2020-01-30 2020-01-31 01:16:19.891901 2020-01-31 01:17:54.417133 1 1 PV1-V-1051 \N \N f 2138 1 27 786 699.00 0.00 209.70 489.30 1 2020-01-30 2020-01-31 00:11:50.891165 2020-01-31 00:14:18.181444 1 19 PV2-V-828 \N \N f 2141 1 2 787 2498.00 0.00 1099.00 1399.00 2 2020-01-30 2020-01-31 01:22:18.682694 2020-01-31 01:22:27.466326 1 1 PV1-V-1052 \N \N f 2142 1 27 786 699.00 0.00 209.70 489.30 2 2020-01-30 2020-01-31 01:36:52.043982 2020-01-31 01:38:05.831109 1 19 PV2-V-830 \N \N f 2143 1 2 787 1635.63 41.37 1377.00 300.00 2 2020-01-30 2020-01-31 01:40:21.75235 2020-01-31 01:40:30.58686 1 1 PV1-V-1053 \N \N f 2144 1 2 787 669.00 0.00 269.00 400.00 2 2020-01-30 2020-01-31 01:55:57.646574 2020-01-31 01:56:05.101383 1 1 PV1-V-1054 \N \N f 2145 1 2 787 669.00 60.00 294.00 435.00 2 2020-01-30 2020-01-31 01:58:04.213026 2020-01-31 01:58:10.615402 1 1 PV1-V-1055 \N \N f 2146 1 2 787 1899.00 0.00 304.00 1595.00 2 2020-01-30 2020-01-31 02:01:34.474735 2020-01-31 02:02:26.295764 1 1 PV1-V-1056 \N \N f 2147 1 2 787 1084.21 13.79 898.00 200.00 2 2020-01-30 2020-01-31 02:18:20.336667 2020-01-31 02:18:24.795112 1 1 PV1-V-1057 \N \N f 2148 1 27 789 569.00 0.00 227.60 341.40 2 2020-01-31 2020-01-31 18:11:51.152998 2020-01-31 18:13:15.511303 1 19 PV2-V-831 \N \N f 2149 1 2 790 515.21 13.79 429.00 100.00 2 2020-01-31 2020-01-31 20:09:14.018645 2020-01-31 20:09:18.046206 1 1 PV1-V-1058 \N \N f 2150 1 2 790 515.21 13.79 429.00 100.00 2 2020-01-31 2020-01-31 20:09:38.417549 2020-01-31 20:09:42.677833 1 1 PV1-V-1059 \N \N f 2151 1 2 790 1556.62 41.38 1298.00 300.00 2 2020-01-31 2020-01-31 20:12:30.451822 2020-01-31 20:12:34.332056 1 1 PV1-V-1060 \N \N f 2152 1 27 789 1189.04 68.96 758.00 500.00 2 2020-01-31 2020-01-31 21:36:02.268501 2020-01-31 21:36:10.277368 1 19 PV2-V-832 \N \N f 2136 283 18 788 3101.72 496.28 0.00 3598.00 2 2020-01-30 2020-01-30 22:07:12.179234 2020-01-31 21:38:40.415484 0 14 PV3-V-258 \N \N f 2153 1 2 790 1399.00 0.00 559.00 840.00 2 2020-01-31 2020-01-31 21:45:09.315105 2020-01-31 21:45:23.185376 1 1 PV1-V-1061 \N \N f 2154 1 27 789 999.00 0.00 399.60 599.40 2 2020-01-31 2020-01-31 22:06:15.206687 2020-01-31 22:07:11.550386 1 19 PV2-V-833 \N \N f 2155 1 21 791 42.24 6.76 0.00 49.00 2 2020-01-31 2020-01-31 23:22:16.086583 2020-01-31 23:22:28.865703 1 12 PV3-V-259 \N \N f 2156 1 2 793 1199.00 0.00 479.00 720.00 2 2020-02-01 2020-02-01 20:47:48.834163 2020-02-01 20:47:57.550587 1 1 PV1-V-1062 \N \N f 2157 1 2 793 435.21 13.79 349.00 100.00 2 2020-02-01 2020-02-01 21:08:24.213745 2020-02-01 21:08:39.393019 1 1 PV1-V-1063 \N \N f 2158 1 2 793 1769.00 0.00 709.00 1060.00 2 2020-02-01 2020-02-01 22:59:59.344193 2020-02-01 23:00:31.226487 1 1 PV1-V-1064 \N \N f 2159 1 2 793 789.00 0.00 329.00 460.00 2 2020-02-01 2020-02-01 23:03:33.978832 2020-02-01 23:03:38.311646 1 1 PV1-V-1065 \N \N f 2160 1 2 793 966.42 27.58 794.00 200.00 2 2020-02-01 2020-02-02 00:10:17.549036 2020-02-02 00:10:23.52365 1 1 PV1-V-1066 \N \N f 2161 1 27 792 569.00 0.00 319.00 250.00 2 2020-02-01 2020-02-02 01:25:41.737339 2020-02-02 01:25:46.164872 1 19 PV2-V-834 \N \N f 2162 1 21 795 42.24 6.76 0.00 49.00 2 2020-02-03 2020-02-04 01:46:05.60864 2020-02-04 01:46:21.759152 1 12 PV3-V-260 \N \N f 2163 1 2 796 515.21 13.79 429.00 100.00 2 2020-02-04 2020-02-04 18:55:08.261184 2020-02-04 18:55:12.651123 1 1 PV1-V-1067 \N \N f 2164 1 27 797 549.43 49.57 239.60 359.40 2 2020-02-04 2020-02-04 21:14:55.416177 2020-02-04 21:14:59.438071 1 19 PV2-V-835 \N \N f 2165 1 27 797 899.00 0.00 359.60 539.40 2 2020-02-04 2020-02-04 21:21:37.673924 2020-02-04 21:21:55.471716 1 19 PV2-V-836 \N \N f 2166 1 27 797 624.52 34.48 409.00 250.00 2 2020-02-04 2020-02-04 21:24:34.42867 2020-02-04 21:24:40.300522 1 19 PV2-V-837 \N \N f 2167 1 21 798 489.00 0.00 0.00 489.00 2 2020-02-04 2020-02-04 23:22:18.975824 2020-02-04 23:23:09.834029 1 12 PV3-V-261 \N \N f 2121 281 2 783 2099.00 0.00 0.00 2099.00 2 2020-01-29 2020-01-29 17:13:10.513165 2020-02-11 22:55:06.745424 2 1 PV1-V-1041 2020-03-04 \N f 2169 1 2 796 885.21 13.79 799.00 100.00 2 2020-02-04 2020-02-05 01:25:52.774323 2020-02-05 01:26:00.28983 1 1 PV1-V-1068 \N \N f 2170 1 2 796 2942.82 55.18 1838.00 1160.00 2 2020-02-04 2020-02-05 01:45:28.444425 2020-02-05 01:45:33.081903 1 1 PV1-V-1069 \N \N f 2171 1 2 796 984.21 13.79 798.00 200.00 2 2020-02-04 2020-02-05 02:22:50.060403 2020-02-05 02:22:54.366914 1 1 PV1-V-1070 \N \N f 2135 282 18 788 549.00 0.00 0.00 549.00 2 2020-01-30 2020-01-30 21:47:47.04444 2020-02-08 21:51:12.06809 2 14 PV3-V-257 2020-03-05 \N f 2172 1 2 800 769.00 0.00 309.00 460.00 2 2020-02-05 2020-02-05 19:37:58.062562 2020-02-05 19:38:10.817411 1 1 PV1-V-1071 \N \N f 2173 1 2 800 485.21 13.79 399.00 100.00 2 2020-02-05 2020-02-05 20:36:48.496145 2020-02-05 20:36:53.568909 1 18 PV1-V-1072 \N \N f 2201 288 21 822 2099.00 0.00 0.00 2099.00 4 2020-02-13 2020-02-13 20:47:26.385293 2020-05-14 20:49:17.161101 2 12 PV3-V-271 2020-03-19 \N f 2175 1 27 799 916.24 82.76 399.00 600.00 2 2020-02-05 2020-02-05 22:07:36.308316 2020-02-05 22:07:41.524233 1 11 PV2-V-838 \N \N f 2176 1 27 803 1199.00 0.00 479.60 719.40 2 2020-02-06 2020-02-06 20:08:42.501958 2020-02-06 20:08:57.619597 1 19 PV2-V-839 \N \N f 2177 1 27 803 1392.00 0.00 556.80 835.20 2 2020-02-06 2020-02-06 20:17:22.935982 2020-02-06 20:17:48.261613 1 19 PV2-V-840 \N \N f 2178 1 2 802 586.21 13.79 500.00 100.00 2 2020-02-06 2020-02-06 20:26:46.024275 2020-02-06 20:26:49.460293 1 1 PV1-V-1073 \N \N f 2179 1 21 804 385.21 13.79 299.00 100.00 2 2020-02-06 2020-02-06 22:51:52.960589 2020-02-06 22:52:02.852018 1 12 PV3-V-264 \N \N f 2180 1 2 802 1629.00 0.00 659.00 970.00 2 2020-02-06 2020-02-07 01:59:02.682735 2020-02-07 01:59:11.543396 1 1 PV1-V-1074 \N \N f 2181 1 27 805 599.00 0.00 239.60 359.40 2 2020-02-07 2020-02-07 21:15:43.043631 2020-02-07 21:15:56.37025 1 19 PV2-V-841 \N \N f 2182 1 2 806 941.41 27.59 769.00 200.00 2 2020-02-07 2020-02-07 21:53:19.125792 2020-02-07 21:53:23.6387 1 1 PV1-V-1075 \N \N f 2183 1 2 806 1620.42 27.58 1448.00 200.00 2 2020-02-07 2020-02-07 23:06:01.023932 2020-02-07 23:06:04.978695 1 1 PV1-V-1076 \N \N f 2184 1 21 807 699.00 0.00 0.00 699.00 1 2020-02-07 2020-02-08 00:32:19.725265 2020-02-08 00:32:49.029376 1 12 PV3-V-265 \N \N f 2185 1 21 807 948.00 0.00 0.00 948.00 2 2020-02-07 2020-02-08 00:33:12.060653 2020-02-08 00:33:26.582861 1 12 PV3-V-266 \N \N f 2186 1 21 809 229.00 0.00 0.00 229.00 2 2020-02-08 2020-02-08 20:50:35.340113 2020-02-08 20:50:59.843719 1 12 PV3-V-267 \N \N f 2174 285 21 801 2099.00 0.00 0.00 2099.00 4 2020-02-05 2020-02-05 22:01:20.545697 2020-03-19 23:25:39.785813 2 12 PV3-V-263 2020-03-11 \N f 2188 1 27 808 599.00 0.00 239.60 359.40 2 2020-02-08 2020-02-08 21:17:07.126464 2020-02-08 21:17:27.285583 1 19 PV2-V-842 \N \N f 2189 1 27 808 1848.00 0.00 649.00 1199.00 2 2020-02-08 2020-02-09 00:26:35.631153 2020-02-09 00:26:46.792533 1 19 PV2-V-843 \N \N f 2190 1 2 810 1424.00 0.00 599.00 825.00 2 2020-02-08 2020-02-09 00:59:46.680053 2020-02-09 00:59:51.046626 1 1 PV1-V-1077 \N \N f 2191 1 2 810 2220.42 27.58 1948.00 300.00 2 2020-02-08 2020-02-09 01:30:49.939683 2020-02-09 01:30:56.511261 1 1 PV1-V-1078 \N \N f 2192 1 27 808 419.00 0.00 169.00 250.00 2 2020-02-08 2020-02-09 02:06:40.439634 2020-02-09 02:06:45.112263 1 19 PV2-V-844 \N \N f 2193 1 27 808 649.00 0.00 259.60 389.40 2 2020-02-08 2020-02-09 02:10:28.475204 2020-02-09 02:10:58.432428 1 19 PV2-V-845 \N \N f 2194 1 2 813 649.00 0.00 259.00 390.00 2 2020-02-10 2020-02-10 17:37:56.695742 2020-02-10 17:38:01.024337 1 1 PV1-V-1079 \N \N f 2195 1 21 814 579.00 0.00 0.00 579.00 2 2020-02-10 2020-02-11 00:58:19.667639 2020-02-11 00:59:26.265155 1 12 PV3-V-269 \N \N f 1778 270 21 691 1498.00 0.00 71.00 1427.00 2 2019-12-21 2019-12-21 20:23:59.274279 2020-02-11 21:42:47.957626 2 12 PV3-V-185 2020-01-25 \N f 2196 1 2 817 871.41 27.59 699.00 200.00 2 2020-02-11 2020-02-12 01:01:07.982712 2020-02-12 01:01:12.311208 1 1 PV1-V-1080 \N \N f 2197 1 2 819 1440.41 27.59 1068.00 400.00 2 2020-02-12 2020-02-12 18:13:29.977913 2020-02-12 18:13:34.39884 1 1 PV1-V-1081 \N \N f 2187 286 21 809 348.00 0.00 0.00 348.00 4 2020-02-08 2020-02-08 21:05:39.150449 2020-03-18 18:54:07.220656 2 12 PV3-V-268 2020-03-14 \N f 2199 1 2 819 1699.00 0.00 679.00 1020.00 2 2020-02-12 2020-02-13 02:13:57.623383 2020-02-13 02:14:06.892818 1 1 PV1-V-1082 \N \N f 2200 1 9 821 699.00 0.00 279.00 420.00 2 2020-02-13 2020-02-13 18:20:15.281012 2020-02-13 18:20:23.238499 1 1 PV1-V-1083 \N \N f 2202 1 2 821 799.00 0.00 319.00 480.00 2 2020-02-13 2020-02-13 22:24:44.647821 2020-02-13 22:24:59.897619 1 1 PV1-V-1084 \N \N f 2203 1 21 824 1059.00 0.00 0.00 1059.00 2 2020-02-13 2020-02-14 03:04:14.080986 2020-02-14 03:04:24.588727 1 12 PV3-V-272 \N \N f 2204 1 21 825 602.59 96.41 0.00 699.00 2 2020-02-14 2020-02-14 18:23:05.225405 2020-02-14 18:23:19.257145 1 12 PV3-V-273 \N \N f 2205 1 2 826 971.41 27.59 799.00 200.00 2 2020-02-14 2020-02-14 18:33:58.876861 2020-02-14 18:34:05.628842 1 1 PV1-V-1085 \N \N f 2206 1 2 826 239.00 0.00 0.00 239.00 2 2020-02-14 2020-02-14 23:26:11.242617 2020-02-14 23:27:02.450319 1 1 PV1-V-1086 \N \N f 2207 1 21 825 2099.00 0.00 0.00 2099.00 2 2020-02-14 2020-02-14 23:32:26.857525 2020-02-14 23:32:35.373749 1 12 PV3-V-274 \N \N f 2208 1 2 826 2629.42 27.58 2357.00 300.00 2 2020-02-14 2020-02-15 00:21:23.364035 2020-02-15 00:21:29.960249 1 1 PV1-V-1087 \N \N f 2209 1 27 827 449.00 0.00 199.00 250.00 2 2020-02-14 2020-02-15 01:19:52.111086 2020-02-15 01:19:57.227175 1 19 PV2-V-846 \N \N f 2210 1 27 827 301.72 48.28 0.00 350.00 2 2020-02-14 2020-02-15 01:23:11.977733 2020-02-15 01:23:30.16546 1 19 PV2-V-847 \N \N f 2211 1 2 828 879.00 0.00 779.00 100.00 2 2020-02-15 2020-02-15 17:03:45.072889 2020-02-15 17:03:49.703702 1 1 PV1-V-1088 \N \N f 2212 1 2 828 3034.62 41.38 2576.00 500.00 2 2020-02-15 2020-02-15 19:14:44.922189 2020-02-15 19:14:49.453163 1 1 PV1-V-1089 \N \N f 2213 1 24 830 479.00 0.00 229.00 250.00 2 2020-02-15 2020-02-15 19:25:53.901369 2020-02-15 19:25:58.748877 1 19 PV2-V-848 \N \N f 2214 1 2 828 1928.00 0.00 829.00 1099.00 2 2020-02-15 2020-02-15 19:33:54.142737 2020-02-15 19:34:03.26934 1 1 PV1-V-1090 \N \N f 2215 1 24 830 449.00 0.00 179.60 269.40 2 2020-02-15 2020-02-15 22:16:40.89304 2020-02-15 22:16:46.18702 1 19 PV2-V-849 \N \N f 2216 1 2 828 585.21 13.79 499.00 100.00 2 2020-02-15 2020-02-16 00:00:34.283724 2020-02-16 00:00:38.331205 1 1 PV1-V-1091 \N \N f 2217 1 21 829 485.21 13.79 399.00 100.00 2 2020-02-15 2020-02-16 00:58:13.99169 2020-02-16 00:58:25.413341 1 12 PV3-V-275 \N \N f 2218 1 24 830 1129.00 0.00 451.60 677.40 2 2020-02-15 2020-02-16 01:59:09.785366 2020-02-16 01:59:16.815649 1 19 PV2-V-850 \N \N f 2219 1 21 832 999.00 0.00 0.00 999.00 2 2020-02-17 2020-02-17 20:50:06.755914 2020-02-17 20:50:22.737875 1 12 PV3-V-276 \N \N f 2220 1 2 833 686.93 62.07 299.00 450.00 2 2020-02-17 2020-02-17 22:46:55.720263 2020-02-17 22:47:02.868501 1 1 PV1-V-1092 \N \N f 2221 1 27 831 599.00 0.00 239.60 359.40 2 2020-02-17 2020-02-18 00:10:29.54192 2020-02-18 00:10:36.375383 1 19 PV2-V-851 \N \N f 2222 1 21 835 602.59 96.41 0.00 699.00 2 2020-02-18 2020-02-19 01:12:28.391025 2020-02-19 01:12:33.026977 1 12 PV3-V-277 \N \N f 2223 1 24 839 1169.00 0.00 0.00 1169.00 2 2020-02-19 2020-02-19 19:37:11.618726 2020-02-19 19:37:42.393071 1 11 PV2-V-852 \N \N f 2224 1 2 838 1640.41 27.59 699.00 969.00 2 2020-02-19 2020-02-19 22:36:01.138191 2020-02-19 22:36:14.272246 1 1 PV1-V-1093 \N \N f 2225 1 2 838 699.00 0.00 0.00 699.00 2 2020-02-19 2020-02-20 01:50:07.969603 2020-02-20 01:50:41.497577 1 1 PV1-V-1094 \N \N f 2226 1 21 837 617.24 82.76 100.00 600.00 2 2020-02-20 2020-02-20 17:18:23.138243 2020-02-20 17:18:44.488612 1 12 PV3-V-278 \N \N f 2227 1 2 840 1299.00 0.00 0.00 1299.00 2 2020-02-20 2020-02-20 21:50:12.245809 2020-02-20 21:52:31.047544 1 1 PV1-V-1095 \N \N f 2228 1 2 840 599.00 0.00 0.00 599.00 2 2020-02-20 2020-02-21 00:56:27.169196 2020-02-21 00:56:35.029677 1 1 PV1-V-1096 \N \N f 2229 1 2 840 785.21 13.79 699.00 100.00 2 2020-02-20 2020-02-21 01:00:44.43049 2020-02-21 01:00:48.708258 1 1 PV1-V-1097 \N \N f 2230 1 2 840 42.24 6.76 0.00 49.00 2 2020-02-20 2020-02-21 01:31:29.356377 2020-02-21 01:31:35.263806 1 1 PV1-V-1098 \N \N f 2231 1 2 840 785.21 13.79 699.00 100.00 2 2020-02-20 2020-02-21 01:57:54.342515 2020-02-21 01:57:59.47945 1 1 PV1-V-1099 \N \N f 2232 1 2 842 799.00 0.00 0.00 799.00 2 2020-02-21 2020-02-21 20:42:39.145691 2020-02-21 20:42:56.884774 1 18 PV1-V-1100 \N \N f 2233 1 21 844 999.00 0.00 0.00 999.00 2 2020-02-21 2020-02-21 21:53:03.416738 2020-02-21 21:53:16.751136 1 12 PV3-V-279 \N \N f 2198 287 21 820 2099.00 0.00 0.00 2099.00 2 2020-02-12 2020-02-12 21:31:23.533611 2020-03-12 01:50:12.527868 2 12 PV3-V-270 2020-03-18 \N f 2234 1 2 842 519.00 0.00 0.00 519.00 2 2020-02-21 2020-02-22 01:56:24.526787 2020-02-22 01:56:29.138235 1 1 PV1-V-1101 \N \N f 2235 1 2 842 785.21 13.79 699.00 100.00 2 2020-02-21 2020-02-22 02:11:08.05415 2020-02-22 02:11:13.083042 1 1 PV1-V-1102 \N \N f 2236 1 2 842 1548.00 0.00 0.00 1548.00 2 2020-02-21 2020-02-22 02:16:27.801749 2020-02-22 02:16:33.733003 1 1 PV1-V-1103 \N \N f 2237 1 2 846 998.00 0.00 0.00 998.00 2 2020-02-22 2020-02-22 18:45:26.209943 2020-02-22 18:45:40.070573 1 1 PV1-V-1104 \N \N f 2238 1 2 846 971.41 27.59 799.00 200.00 2 2020-02-22 2020-02-22 18:52:17.788871 2020-02-22 18:52:21.69039 1 1 PV1-V-1105 \N \N f 2239 1 2 846 2843.00 0.00 0.00 2843.00 2 2020-02-22 2020-02-22 20:56:06.676164 2020-02-22 20:56:33.7008 1 1 PV1-V-1106 \N \N f 2240 1 2 846 1200.42 27.58 1028.00 200.00 2 2020-02-22 2020-02-22 22:24:59.449493 2020-02-22 22:25:04.327199 1 1 PV1-V-1107 \N \N f 2241 1 2 846 430.17 68.83 0.00 499.00 2 2020-02-22 2020-02-22 22:49:31.002497 2020-02-22 22:49:43.846621 1 1 PV1-V-1108 \N \N f 2242 1 27 847 729.00 0.00 0.00 729.00 2 2020-02-22 2020-02-22 22:59:05.436875 2020-02-22 22:59:21.462648 1 19 PV2-V-853 \N \N f 2243 1 2 846 1699.00 0.00 0.00 1699.00 2 2020-02-22 2020-02-22 23:11:32.131463 2020-02-22 23:11:38.39059 1 1 PV1-V-1109 \N \N f 2244 1 2 846 639.00 0.00 0.00 639.00 2 2020-02-22 2020-02-22 23:30:35.521938 2020-02-22 23:30:39.808126 1 1 PV1-V-1110 \N \N f 2245 1 2 846 460.00 0.00 260.00 200.00 2 2020-02-22 2020-02-23 00:25:20.123173 2020-02-23 00:25:31.176846 1 1 PV1-V-1111 \N \N f 2246 1 2 846 529.00 0.00 0.00 529.00 2 2020-02-22 2020-02-23 00:37:45.901891 2020-02-23 00:38:10.045534 1 1 PV1-V-1112 \N \N f 2264 1 21 857 609.00 0.00 509.00 100.00 2 2020-02-27 2020-02-27 19:08:56.618801 2020-02-27 19:09:08.640986 1 12 PV3-V-284 \N \N f 2247 289 21 845 489.00 0.00 0.00 489.00 1 2020-02-22 2020-02-23 03:08:51.579004 2020-02-23 03:12:03.355288 1 12 PV3-V-280 \N \N f 2253 291 2 851 949.00 0.00 0.00 949.00 2 2020-02-25 2020-02-25 19:14:44.689826 2020-05-14 21:21:14.630956 2 1 PV1-V-1116 2020-03-31 \N f 2249 1 2 848 699.00 0.00 0.00 699.00 2 2020-02-24 2020-02-24 19:30:59.488188 2020-02-24 19:32:04.655328 1 1 PV1-V-1113 \N \N f 2250 1 27 850 499.00 0.00 499.00 0.00 2 2020-02-24 2020-02-25 02:02:29.50657 2020-02-25 02:02:35.062919 1 19 PV2-V-854 \N \N f 2251 1 2 848 901.41 27.59 729.00 200.00 2 2020-02-24 2020-02-25 02:36:28.012304 2020-02-25 02:36:33.051487 1 1 PV1-V-1114 \N \N f 2298 270 21 876 1314.00 0.00 0.00 1314.00 2 2020-03-06 2020-03-06 22:01:46.772841 2020-07-01 19:02:22.611717 2 12 PV3-V-288 2020-04-10 \N f 2254 1 2 851 849.00 0.00 0.00 849.00 2 2020-02-25 2020-02-25 19:38:23.676677 2020-02-25 19:38:28.664369 1 1 PV1-V-1117 \N \N f 2255 1 2 851 286.21 13.79 200.00 100.00 2 2020-02-25 2020-02-25 22:29:40.491075 2020-02-25 22:29:44.520367 1 1 PV1-V-1118 \N \N f 2277 293 2 862 699.00 0.00 0.00 699.00 2 2020-02-29 2020-02-29 23:23:23.740744 2020-03-17 21:37:10.752976 2 1 PV1-V-1130 2020-04-04 \N f 2257 1 18 852 385.21 13.79 299.00 100.00 2 2020-02-25 2020-02-26 01:12:48.009771 2020-02-26 01:12:53.170733 1 14 PV3-V-282 \N \N f 2258 1 2 851 669.00 0.00 0.00 669.00 2 2020-02-25 2020-02-26 01:50:11.117854 2020-02-26 01:50:22.995693 1 1 PV1-V-1119 \N \N f 2259 1 24 850 430.17 68.83 0.00 499.00 2 2020-02-25 2020-02-26 01:54:00.708353 2020-02-26 01:54:06.612233 1 11 PV2-V-856 \N \N f 2252 290 2 851 699.00 0.00 0.00 699.00 2 2020-02-25 2020-02-25 17:33:27.876837 2020-02-26 18:16:53.102593 2 1 PV1-V-1115 2020-03-31 \N f 2260 1 21 854 699.00 0.00 0.00 699.00 2 2020-02-26 2020-02-26 19:58:06.703163 2020-02-26 19:59:06.539643 1 12 PV3-V-283 \N \N f 2261 1 2 855 85.34 13.65 0.00 98.99 2 2020-02-26 2020-02-26 22:45:07.574106 2020-02-26 22:45:20.379906 1 1 PV1-V-1120 \N \N f 2262 1 2 855 1599.00 0.00 1599.00 0.00 2 2020-02-26 2020-02-26 23:15:41.824117 2020-02-26 23:15:46.035329 1 1 PV1-V-1121 \N \N f 2263 1 2 855 645.21 13.79 559.00 100.00 2 2020-02-26 2020-02-26 23:58:32.949338 2020-02-26 23:58:37.536799 1 1 PV1-V-1122 \N \N f 2265 1 2 858 499.00 0.00 0.00 499.00 2 2020-02-27 2020-02-27 20:36:03.011771 2020-02-27 20:36:29.853189 1 1 PV1-V-1123 \N \N f 2266 217 27 856 589.00 0.00 0.00 589.00 3 2020-02-27 2020-02-28 01:32:29.256569 2020-02-28 01:32:42.576023 2 19 PV2-V-857 2020-04-02 \N f 2267 1 2 859 849.00 0.00 0.00 849.00 2 2020-02-28 2020-02-28 18:20:34.124765 2020-02-28 18:20:40.874259 1 1 PV1-V-1124 \N \N f 2268 1 2 859 799.00 0.00 0.00 799.00 2 2020-02-28 2020-02-28 19:28:53.730269 2020-02-28 19:28:58.825212 1 1 PV1-V-1125 \N \N f 2269 1 2 859 85.34 13.65 0.00 98.99 2 2020-02-28 2020-02-28 20:11:43.505924 2020-02-28 20:11:56.377102 1 18 PV1-V-1126 \N \N f 2270 1 9 859 486.07 13.93 399.00 101.00 2 2020-02-28 2020-02-28 22:51:06.084557 2020-02-28 22:51:21.304551 1 3 PV1-V-1127 \N \N f 2271 1 27 860 1169.00 0.00 0.00 1169.00 2 2020-02-28 2020-02-29 00:50:47.476237 2020-02-29 00:53:53.714421 1 11 PV2-V-858 \N \N f 2248 289 21 845 489.00 0.00 0.00 489.00 2 2020-02-22 2020-02-23 03:12:25.591034 2020-05-14 21:04:51.770952 2 12 PV3-V-281 2020-03-28 \N f 2273 1 8 860 1458.00 0.00 0.00 1458.00 2 2020-02-29 2020-02-29 18:09:49.593862 2020-02-29 18:09:56.93933 1 4 PV2-V-859 \N \N f 2274 1 21 861 1699.00 0.00 0.00 1699.00 2 2020-02-29 2020-02-29 20:35:25.809902 2020-02-29 20:36:18.711062 1 12 PV3-V-285 \N \N f 2275 1 8 860 430.17 68.83 0.00 499.00 2 2020-02-29 2020-02-29 21:11:13.063109 2020-02-29 21:11:17.063093 1 11 PV2-V-860 \N \N f 2276 1 2 862 849.00 0.00 0.00 849.00 2 2020-02-29 2020-02-29 23:11:15.564728 2020-02-29 23:11:58.926872 1 1 PV1-V-1129 \N \N f 2297 296 2 877 799.00 0.00 0.00 799.00 2 2020-03-06 2020-03-06 20:13:15.198896 2020-03-21 21:16:08.878329 2 1 PV1-V-1140 2020-04-10 \N f 2278 1 8 860 699.00 0.00 0.00 699.00 2 2020-02-29 2020-03-01 00:46:01.075636 2020-03-01 00:46:16.740131 1 4 PV2-V-861 \N \N f 2279 1 8 860 429.00 0.00 0.00 429.00 2 2020-02-29 2020-03-01 02:34:04.168431 2020-03-01 02:34:08.924001 1 4 PV2-V-862 \N \N f 2280 1 27 863 849.00 0.00 0.00 849.00 1 2020-03-01 2020-03-01 20:46:18.699516 2020-03-01 20:46:57.325055 1 19 PV2-V-863 \N \N f 2281 1 27 863 649.00 0.00 0.00 649.00 2 2020-03-01 2020-03-01 21:57:12.87632 2020-03-01 21:57:56.561905 1 19 PV2-V-864 \N \N f 2282 1 2 865 799.00 0.00 0.00 799.00 2 2020-03-02 2020-03-02 18:46:47.417137 2020-03-02 18:47:00.016028 1 1 PV1-V-1131 \N \N f 2283 1 27 866 529.00 0.00 0.00 529.00 2 2020-03-02 2020-03-02 23:04:21.999396 2020-03-02 23:04:43.563848 1 19 PV2-V-865 \N \N f 2284 1 21 864 490.52 78.48 0.00 569.00 2 2020-03-02 2020-03-02 23:42:02.556518 2020-03-02 23:42:15.29452 1 12 PV3-V-286 \N \N f 2285 1 2 865 769.00 0.00 0.00 769.00 2 2020-03-02 2020-03-03 02:12:34.598413 2020-03-03 02:13:55.319602 1 1 PV1-V-1132 \N \N f 2272 292 2 859 519.00 0.00 0.00 519.00 2 2020-02-28 2020-02-29 02:19:27.375945 2020-03-24 00:47:51.012404 2 1 PV1-V-1128 2020-04-03 \N f 2287 1 2 868 849.00 0.00 0.00 849.00 2 2020-03-03 2020-03-03 20:26:42.861362 2020-03-03 20:27:05.508338 1 1 PV1-V-1134 \N \N f 2288 1 2 868 785.21 13.79 699.00 100.00 2 2020-03-03 2020-03-04 00:04:02.770107 2020-03-04 00:04:31.536065 1 1 PV1-V-1135 \N \N f 2289 1 2 868 785.21 13.79 699.00 100.00 2 2020-03-03 2020-03-04 00:28:14.698548 2020-03-04 00:28:56.283908 1 1 PV1-V-1136 \N \N f 2290 1 2 870 2192.83 55.17 1848.00 400.00 2 2020-03-04 2020-03-04 21:58:57.540634 2020-03-04 21:59:05.797042 1 1 PV1-V-1137 \N \N f 2291 1 27 871 599.00 0.00 0.00 599.00 2 2020-03-04 2020-03-04 22:36:17.268564 2020-03-04 22:36:59.201987 1 19 PV2-V-866 \N \N f 2292 1 27 873 849.00 0.00 0.00 849.00 2 2020-03-05 2020-03-05 18:12:08.139501 2020-03-05 18:12:30.410757 1 19 PV2-V-867 \N \N f 2256 144 27 850 1169.00 0.00 0.00 1169.00 2 2020-02-25 2020-02-25 22:55:19.986763 2020-03-14 18:22:42.358509 2 19 PV2-V-855 2020-03-31 \N f 2294 1 27 873 339.00 0.00 0.00 339.00 2 2020-03-05 2020-03-05 22:18:39.013029 2020-03-05 22:18:47.504065 1 19 PV2-V-868 \N \N f 2295 1 21 876 1033.62 165.38 0.00 1199.00 2 2020-03-06 2020-03-06 17:39:52.667072 2020-03-06 17:40:23.869059 1 14 PV3-V-287 \N \N f 2296 1 2 877 729.00 0.00 0.00 729.00 2 2020-03-06 2020-03-06 20:11:33.863078 2020-03-06 20:11:38.275074 1 1 PV1-V-1139 \N \N f 2286 294 2 868 849.00 0.00 0.00 849.00 2 2020-03-03 2020-03-03 19:52:27.917382 2020-03-23 21:22:46.9589 2 1 PV1-V-1133 2020-04-07 \N f 2299 1 21 876 756.00 0.00 0.00 756.00 2 2020-03-06 2020-03-06 22:05:57.145793 2020-03-06 22:06:45.070917 1 12 PV3-V-289 \N \N f 2293 295 2 874 949.00 0.00 0.00 949.00 2 2020-03-05 2020-03-05 19:32:25.643685 2020-03-06 22:33:50.920374 2 1 PV1-V-1138 2020-04-09 \N f 2300 1 24 878 456.03 72.96 0.00 528.99 2 2020-03-07 2020-03-07 18:09:04.012286 2020-03-07 18:09:27.141347 1 11 PV2-V-869 \N \N f 2301 1 2 879 1399.00 0.00 209.00 1190.00 2 2020-03-07 2020-03-07 18:13:09.878423 2020-03-07 18:13:23.627936 1 1 PV1-V-1141 \N \N f 2302 1 8 878 1399.00 0.00 0.00 1399.00 2 2020-03-07 2020-03-07 18:49:38.409356 2020-03-07 18:50:07.25388 1 4 PV2-V-870 \N \N f 2303 1 2 879 1300.41 27.59 1028.00 300.00 2 2020-03-07 2020-03-07 19:02:01.431095 2020-03-07 19:03:17.321043 1 1 PV1-V-1142 \N \N f 2314 299 8 886 1318.00 0.00 0.00 1318.00 2 2020-03-10 2020-03-10 20:10:27.724729 2020-06-10 23:45:15.660034 2 4 PV2-V-872 2020-04-14 \N f 2305 1 2 879 99.00 0.00 0.00 99.00 2 2020-03-07 2020-03-07 21:44:09.462323 2020-03-07 21:44:13.115006 1 1 PV1-V-1144 \N \N f 2306 1 2 879 869.00 0.00 0.00 869.00 2 2020-03-07 2020-03-07 21:55:41.076386 2020-03-07 21:55:48.918495 1 1 PV1-V-1145 \N \N f 2307 1 2 879 685.21 13.79 599.00 100.00 2 2020-03-07 2020-03-08 01:02:38.374895 2020-03-08 01:02:43.62167 1 1 PV1-V-1146 \N \N f 2308 1 2 882 549.00 0.00 0.00 549.00 2 2020-03-08 2020-03-08 19:01:53.268939 2020-03-08 19:01:57.954591 1 18 PV1-V-1147 \N \N f 2309 1 2 882 849.00 0.00 0.00 849.00 2 2020-03-08 2020-03-08 20:11:51.487536 2020-03-08 20:12:25.655516 1 18 PV1-V-1148 \N \N f 2310 1 21 883 249.00 0.00 0.00 249.00 2 2020-03-09 2020-03-10 01:23:08.707854 2020-03-10 01:23:14.989763 1 12 PV3-V-290 \N \N f 2313 1 2 884 435.21 13.79 349.00 100.00 2 2020-03-10 2020-03-10 17:14:23.074965 2020-03-10 17:14:28.167061 1 1 PV1-V-1149 \N \N f 2311 298 21 883 5811.24 82.76 768.00 5126.00 2 2020-03-09 2020-03-10 02:50:41.750632 2020-07-21 23:58:11.527206 0 12 PV3-V-291 \N \N f 2315 1 8 886 999.00 0.00 0.00 999.00 2 2020-03-10 2020-03-10 20:14:09.495162 2020-03-10 20:14:13.737629 1 4 PV2-V-873 \N \N f 2317 1 8 886 1299.00 0.00 0.00 1299.00 2 2020-03-10 2020-03-10 22:26:11.359408 2020-03-10 22:26:42.549762 1 4 PV2-V-874 \N \N f 2318 1 8 886 699.00 0.00 0.00 699.00 2 2020-03-10 2020-03-10 23:34:12.411751 2020-03-10 23:34:24.310405 1 4 PV2-V-875 \N \N f 2319 1 8 886 529.00 0.00 0.00 529.00 2 2020-03-10 2020-03-11 01:03:08.869026 2020-03-11 01:03:34.336395 1 4 PV2-V-876 \N \N f 2320 1 8 886 519.00 0.00 0.00 519.00 2 2020-03-10 2020-03-11 01:42:58.200926 2020-03-11 01:43:05.73121 1 4 PV2-V-877 \N \N f 2321 1 8 886 849.00 0.00 0.00 849.00 2 2020-03-10 2020-03-11 01:46:54.880815 2020-03-11 01:47:03.395986 1 4 PV2-V-878 \N \N f 2322 1 8 886 129.00 0.00 0.00 129.00 2 2020-03-10 2020-03-11 01:48:23.336672 2020-03-11 01:48:29.136439 1 4 PV2-V-879 \N \N f 2323 1 2 888 399.00 0.00 299.00 100.00 2 2020-03-11 2020-03-11 22:22:58.184842 2020-03-11 22:23:02.032186 1 1 PV1-V-1150 \N \N f 2324 1 2 888 871.41 27.59 699.00 200.00 2 2020-03-11 2020-03-11 23:04:46.919746 2020-03-11 23:04:51.893554 1 1 PV1-V-1151 \N \N f 2325 1 21 889 699.00 0.00 0.00 699.00 2 2020-03-11 2020-03-11 23:36:22.947858 2020-03-11 23:36:27.469616 1 12 PV3-V-293 \N \N f 2326 1 21 889 299.00 0.00 0.00 299.00 2 2020-03-11 2020-03-12 01:10:00.29306 2020-03-12 01:10:24.012768 1 12 PV3-V-294 \N \N f 2327 1 27 890 884.00 0.00 0.00 884.00 2 2020-03-11 2020-03-12 01:42:26.152411 2020-03-12 01:43:04.668454 1 19 PV2-V-880 \N \N f 2328 1 21 889 1499.00 0.00 0.00 1499.00 2 2020-03-11 2020-03-12 02:13:39.178727 2020-03-12 02:14:05.030673 1 12 PV3-V-295 \N \N f 2329 1 2 891 1199.00 0.00 0.00 1199.00 2 2020-03-11 2020-03-12 02:37:31.271447 2020-03-12 02:37:51.619053 1 1 PV1-V-1152 \N \N f 2330 1 8 893 456.03 72.96 0.00 528.99 2 2020-03-12 2020-03-12 23:50:35.275667 2020-03-12 23:51:31.860256 1 19 PV2-V-881 \N \N f 2331 1 8 893 1288.00 0.00 0.00 1288.00 2 2020-03-12 2020-03-13 02:32:16.376721 2020-03-13 02:32:28.324967 1 4 PV2-V-882 \N \N f 2332 1 8 893 278.00 0.00 0.00 278.00 2 2020-03-12 2020-03-13 02:39:36.472149 2020-03-13 02:39:41.282112 1 4 PV2-V-883 \N \N f 2334 1 27 895 516.38 82.62 0.00 599.00 2 2020-03-13 2020-03-13 21:50:11.072609 2020-03-13 21:50:32.394091 1 19 PV2-V-884 \N \N f 2335 1 21 892 699.00 0.00 0.00 699.00 2 2020-03-13 2020-03-13 22:50:15.316935 2020-03-13 22:50:34.300316 1 12 PV3-V-296 \N \N f 2336 1 2 894 885.21 13.79 799.00 100.00 2 2020-03-13 2020-03-13 23:28:19.00684 2020-03-13 23:29:23.169548 1 1 PV1-V-1154 \N \N f 2337 1 27 895 1199.00 0.00 0.00 1199.00 1 2020-03-13 2020-03-13 23:44:52.148691 2020-03-13 23:46:43.689154 1 19 PV2-V-885 \N \N f 2338 1 27 895 1998.00 0.00 0.00 1998.00 2 2020-03-13 2020-03-13 23:48:48.991811 2020-03-13 23:48:53.876345 1 19 PV2-V-886 \N \N f 2339 1 2 894 1383.34 13.65 0.00 1396.99 2 2020-03-13 2020-03-14 00:21:43.627733 2020-03-14 00:22:04.915713 1 1 PV1-V-1155 \N \N f 2340 1 2 894 1370.42 27.58 1198.00 200.00 2 2020-03-13 2020-03-14 00:34:29.76838 2020-03-14 00:34:44.623454 1 1 PV1-V-1156 \N \N f 2343 1 2 894 1197.00 0.00 0.00 1197.00 2 2020-03-13 2020-03-14 01:40:00.589441 2020-03-14 01:40:17.001854 1 1 PV1-V-1157 \N \N f 2344 1 2 894 1898.00 0.00 0.00 1898.00 2 2020-03-13 2020-03-14 02:25:42.029998 2020-03-14 02:25:46.32436 1 1 PV1-V-1158 \N \N f 2345 1 2 896 399.00 0.00 299.00 100.00 2 2020-03-14 2020-03-14 17:42:36.066376 2020-03-14 17:42:52.436831 1 1 PV1-V-1159 \N \N f 2341 283 27 895 1024.14 163.87 0.00 1188.01 2 2020-03-13 2020-03-14 00:52:28.128231 2020-04-29 00:40:16.187023 0 19 PV2-V-887 \N \N f 2347 144 8 897 526.72 68.28 100.00 495.00 3 2020-03-14 2020-03-14 18:32:25.563636 2020-03-14 18:32:36.882238 2 4 PV2-V-889 2020-04-18 \N f 2348 1 2 896 899.00 0.00 0.00 899.00 2 2020-03-14 2020-03-14 20:42:25.726838 2020-03-14 20:42:49.090348 1 1 PV1-V-1160 \N \N f 2349 1 8 897 139.00 0.00 0.00 139.00 2 2020-03-14 2020-03-14 22:11:03.644768 2020-03-14 22:11:11.216613 1 4 PV2-V-890 \N \N f 2350 1 8 897 2386.00 0.00 0.00 2386.00 1 2020-03-14 2020-03-14 22:40:02.719308 2020-03-14 22:40:17.360376 1 4 PV2-V-891 \N \N f 2351 1 8 897 2964.10 0.00 0.00 2964.10 1 2020-03-14 2020-03-14 22:42:22.010203 2020-03-14 22:43:08.297558 1 4 PV2-V-892 \N \N f 2316 298 21 887 399.00 0.00 0.00 399.00 2 2020-03-10 2020-03-10 21:05:35.737024 2020-07-21 23:58:11.556177 0 14 PV3-V-292 \N \N f 2353 1 2 896 42.24 6.76 0.00 49.00 2 2020-03-14 2020-03-14 22:56:14.373726 2020-03-14 22:56:55.952255 1 1 PV1-V-1161 \N \N f 2354 1 8 897 729.00 0.00 29.00 700.00 2 2020-03-14 2020-03-14 23:02:11.237612 2020-03-14 23:02:16.314066 1 4 PV2-V-894 \N \N f 2352 301 8 897 2964.10 0.00 0.00 2964.10 1 2020-03-14 2020-03-14 22:44:43.042522 2020-03-19 17:59:11.759718 2 4 PV2-V-893 2020-04-18 \N f 2346 300 8 897 430.17 68.83 0.00 499.00 2 2020-03-14 2020-03-14 17:54:08.201694 2020-03-31 19:13:58.928605 2 4 PV2-V-888 2020-04-18 \N f 2357 1 21 898 699.00 0.00 0.00 699.00 2 2020-03-14 2020-03-15 00:31:24.535175 2020-03-15 00:31:31.395035 1 14 PV3-V-299 \N \N f 2358 1 2 900 799.00 0.00 0.00 799.00 2 2020-03-15 2020-03-15 19:06:41.428305 2020-03-15 19:07:29.564982 1 18 PV1-V-1162 \N \N f 2359 1 2 900 479.00 0.00 47.90 431.10 2 2020-03-15 2020-03-15 19:19:13.558838 2020-03-15 19:19:36.367845 1 18 PV1-V-1163 \N \N f 2360 1 2 900 871.41 27.59 699.00 200.00 2 2020-03-15 2020-03-15 19:50:33.768189 2020-03-15 19:50:41.057976 1 18 PV1-V-1164 \N \N f 2361 1 2 900 799.00 0.00 0.00 799.00 2 2020-03-15 2020-03-15 20:49:18.713618 2020-03-15 20:49:33.130428 1 18 PV1-V-1165 \N \N f 2362 1 2 901 901.41 27.59 729.00 200.00 2 2020-03-16 2020-03-16 19:31:36.85519 2020-03-16 19:31:45.000834 1 1 PV1-V-1166 \N \N f 2342 283 21 892 699.00 0.00 0.00 699.00 2 2020-03-13 2020-03-14 00:54:15.308309 2020-03-20 02:33:50.977373 0 14 PV3-V-297 \N \N f 2312 298 26 885 1298.00 0.00 0.00 1298.00 2 2020-03-09 2020-03-10 02:53:51.000086 2020-04-29 01:42:21.524676 0 4 PV2-V-871 \N \N f 2356 303 21 898 839.00 0.00 0.00 839.00 2 2020-03-14 2020-03-15 00:21:39.242613 2020-03-28 23:43:17.753119 2 14 PV3-V-298 2020-04-18 \N f 2333 3 2 894 1699.00 0.00 0.00 1699.00 2 2020-03-13 2020-03-13 18:32:44.650712 2020-04-29 02:03:35.992179 0 3 PV1-V-1153 \N \N f 2304 297 2 879 1399.00 0.00 0.00 1399.00 2 2020-03-07 2020-03-07 21:30:18.661268 2020-05-14 21:20:41.804033 2 1 PV1-V-1143 2020-04-11 \N f 2363 36 2 901 949.00 0.00 0.00 949.00 2 2020-03-16 2020-03-16 19:54:51.655496 2021-02-02 18:18:20.243447 0 3 PV1-V-1167 \N \N f 2364 1 2 901 1428.00 0.00 0.00 1428.00 2 2020-03-16 2020-03-16 21:17:30.209257 2020-03-16 21:18:12.546126 1 1 PV1-V-1168 \N \N f 2365 1 2 901 999.00 0.00 0.00 999.00 2 2020-03-16 2020-03-16 21:59:32.51056 2020-03-16 21:59:36.43306 1 1 PV1-V-1169 \N \N f 2366 1 21 899 2099.00 0.00 0.00 2099.00 2 2020-03-16 2020-03-17 01:39:37.003907 2020-03-17 01:41:17.451256 1 12 PV3-V-300 \N \N f 2367 1 2 903 999.00 0.00 0.00 999.00 2 2020-03-17 2020-03-17 19:45:21.285177 2020-03-17 19:45:26.466467 1 1 PV1-V-1170 \N \N f 2417 314 18 928 3698.00 0.00 0.00 3698.00 2 2020-04-30 2020-04-30 23:11:20.48223 2020-06-11 02:38:50.594862 0 24 PV3-V-323 \N \N f 2369 1 18 904 84.48 13.52 0.00 98.00 2 2020-03-17 2020-03-17 20:09:14.758126 2020-03-17 20:09:26.667234 1 14 PV3-V-302 \N \N f 2370 1 2 903 1104.21 13.79 818.00 300.00 2 2020-03-17 2020-03-17 22:54:31.803066 2020-03-17 22:54:36.010237 1 1 PV1-V-1171 \N \N f 2371 305 18 904 699.00 0.00 0.00 699.00 1 2020-03-17 2020-03-17 23:14:46.3803 2020-03-17 23:14:54.483849 1 14 PV3-V-303 \N \N f 2389 307 18 907 519.00 0.00 0.00 519.00 2 2020-03-18 2020-03-19 00:37:45.447157 2020-05-15 19:11:43.423108 2 14 PV3-V-314 2020-04-22 \N f 2355 302 8 897 1169.00 0.00 0.00 1169.00 2 2020-03-14 2020-03-14 23:39:15.466119 2020-03-18 00:03:35.159571 2 4 PV2-V-895 2020-04-18 \N f 2373 1 2 903 999.00 0.00 0.00 999.00 2 2020-03-17 2020-03-18 00:06:07.269909 2020-03-18 00:07:08.321517 1 1 PV1-V-1172 \N \N f 2374 1 18 904 258.00 0.00 0.00 258.00 2 2020-03-17 2020-03-18 00:13:40.758 2020-03-18 00:14:01.328838 1 14 PV3-V-305 \N \N f 2368 304 18 904 1196.56 191.45 0.00 1388.01 2 2020-03-17 2020-03-17 20:08:13.563495 2020-06-11 00:15:24.804425 2 14 PV3-V-301 2020-04-21 \N f 2376 1 18 904 119.00 0.00 0.00 119.00 2 2020-03-17 2020-03-18 00:30:28.604824 2020-03-18 00:32:16.948999 1 14 PV3-V-307 \N \N f 2377 306 18 904 1599.00 0.00 0.00 1599.00 1 2020-03-17 2020-03-18 00:56:02.175684 2020-03-18 00:56:09.915617 1 14 PV3-V-308 \N \N f 2372 305 18 904 699.00 0.00 0.00 699.00 2 2020-03-17 2020-03-17 23:15:24.615869 2020-05-14 20:32:57.551919 2 14 PV3-V-304 2020-04-21 \N f 2379 1 18 904 42.24 6.76 0.00 49.00 2 2020-03-17 2020-03-18 01:00:29.698486 2020-03-18 01:00:34.398553 1 14 PV3-V-310 \N \N f 2380 1 2 903 499.00 0.00 0.00 499.00 2 2020-03-17 2020-03-18 01:28:39.82143 2020-03-18 01:30:32.070321 1 1 PV1-V-1173 \N \N f 2381 1 2 903 1598.00 0.00 0.00 1598.00 2 2020-03-17 2020-03-18 02:10:03.235253 2020-03-18 02:10:12.752786 1 1 PV1-V-1174 \N \N f 2382 1 2 906 84.48 13.52 0.00 98.00 2 2020-03-18 2020-03-18 18:22:56.760686 2020-03-18 18:23:03.043459 1 1 PV1-V-1175 \N \N f 2383 1 2 906 42.24 6.76 0.00 49.00 2 2020-03-18 2020-03-18 18:34:04.395753 2020-03-18 18:34:08.947676 1 1 PV1-V-1176 \N \N f 2384 1 27 908 1070.24 86.76 0.00 1157.00 2 2020-03-18 2020-03-18 21:38:39.287211 2020-03-18 21:39:45.977779 1 19 PV2-V-896 \N \N f 2385 1 21 907 1301.59 96.41 0.00 1398.00 2 2020-03-18 2020-03-18 21:41:56.738736 2020-03-18 21:42:35.79046 1 12 PV3-V-311 \N \N f 2386 1 21 907 42.24 6.76 0.00 49.00 2 2020-03-18 2020-03-18 23:45:46.013645 2020-03-18 23:45:49.3824 1 14 PV3-V-312 \N \N f 2387 1 2 906 1298.00 0.00 0.00 1298.00 2 2020-03-18 2020-03-18 23:53:47.022543 2020-03-18 23:54:12.418751 1 1 PV1-V-1177 \N \N f 2388 307 18 907 519.00 0.00 0.00 519.00 1 2020-03-18 2020-03-19 00:35:21.954709 2020-03-19 00:37:25.864061 1 14 PV3-V-313 \N \N f 2401 308 8 917 659.00 0.00 0.00 659.00 2 2020-03-21 2020-03-21 21:24:58.976238 2020-06-10 23:46:43.855918 2 11 PV2-V-899 2020-04-25 \N f 2390 1 2 906 785.21 13.79 699.00 100.00 2 2020-03-18 2020-03-19 00:58:59.617815 2020-03-19 00:59:19.06803 1 1 PV1-V-1178 \N \N f 2391 1 27 909 42.24 6.76 0.00 49.00 2 2020-03-19 2020-03-19 17:51:54.4618 2020-03-19 17:54:31.094329 1 19 PV2-V-897 \N \N f 2392 301 27 909 2386.00 0.00 0.00 2386.00 2 2020-03-19 2020-03-19 18:01:36.683886 2020-03-19 18:02:00.429333 1 4 PV2-V-898 \N \N f 2393 1 2 910 699.00 0.00 0.00 699.00 2 2020-03-19 2020-03-19 20:00:22.042192 2020-03-19 20:00:26.284431 1 1 PV1-V-1179 \N \N f 2394 1 2 910 599.00 0.00 0.00 599.00 2 2020-03-19 2020-03-19 21:01:02.14315 2020-03-19 21:01:06.497771 1 1 PV1-V-1180 \N \N f 2395 1 2 910 999.00 0.00 769.00 230.00 2 2020-03-19 2020-03-19 23:06:06.644424 2020-03-19 23:06:27.621124 1 1 PV1-V-1181 \N \N f 2396 1 18 912 1683.48 13.52 0.00 1697.00 2 2020-03-20 2020-03-20 20:43:39.501527 2020-03-20 20:43:59.607945 1 14 PV3-V-315 \N \N f 2397 1 2 913 479.00 0.00 0.00 479.00 2 2020-03-20 2020-03-20 21:05:20.024651 2020-03-20 21:05:35.757483 1 1 PV1-V-1182 \N \N f 2398 1 2 913 42.24 6.76 0.00 49.00 2 2020-03-20 2020-03-20 21:31:14.619236 2020-03-20 21:31:19.816186 1 1 PV1-V-1183 \N \N f 2399 1 18 912 1599.00 0.00 0.00 1599.00 2 2020-03-20 2020-03-21 00:03:49.875839 2020-03-21 00:03:54.742724 1 14 PV3-V-316 \N \N f 2400 1 21 915 1199.00 0.00 0.00 1199.00 2 2020-03-21 2020-03-21 17:24:59.135943 2020-03-21 17:25:08.092873 1 12 PV3-V-317 \N \N f 2375 159 18 904 945.00 0.00 0.00 945.00 2 2020-03-17 2020-03-18 00:18:05.92678 2020-06-11 00:14:51.09176 2 14 PV3-V-306 2020-04-21 \N f 2402 1 21 915 139.00 0.00 0.00 139.00 2 2020-03-21 2020-03-21 22:09:30.56708 2020-03-21 22:09:42.149287 1 12 PV3-V-318 \N \N f 2403 1 2 916 1348.00 0.00 0.00 1348.00 2 2020-03-21 2020-03-21 23:33:52.730718 2020-03-21 23:33:57.110794 1 1 PV1-V-1184 \N \N f 2404 1 21 915 659.00 0.00 0.00 659.00 2 2020-03-21 2020-03-21 23:38:52.108087 2020-03-21 23:38:57.881473 1 12 PV3-V-319 \N \N f 2405 1 2 916 1119.00 0.00 0.00 1119.00 2 2020-03-21 2020-03-22 00:55:18.568341 2020-03-22 00:55:50.676146 1 1 PV1-V-1185 \N \N f 2406 1 27 919 42.24 6.76 0.00 49.00 2 2020-03-23 2020-03-23 18:24:40.954073 2020-03-23 18:24:45.045931 1 19 PV2-V-900 \N \N f 2407 1 27 919 784.34 13.65 0.00 797.99 2 2020-03-23 2020-03-23 18:29:46.649591 2020-03-23 18:29:50.60135 1 19 PV2-V-901 \N \N f 2408 309 27 919 659.00 0.00 0.00 659.00 3 2020-03-23 2020-03-24 01:39:49.570441 2020-03-24 01:40:11.981824 2 19 PV2-V-902 2020-04-27 \N f 2409 1 27 922 1588.00 0.00 0.00 1588.00 2 2020-03-24 2020-03-24 22:40:17.956538 2020-03-24 22:40:44.36701 1 19 PV2-V-903 \N \N f 2410 1 26 924 519.00 0.00 0.00 519.00 2 2020-03-26 2020-03-26 19:03:11.085743 2020-03-26 19:03:25.994512 1 15 PV2-V-904 \N \N f 2411 1 21 926 1240.24 6.76 0.00 1247.00 2 2020-03-28 2020-03-28 19:01:36.110511 2020-03-28 19:02:10.179602 1 12 PV3-V-320 \N \N f 2412 1 26 924 42.24 6.76 0.00 49.00 2 2020-03-31 2020-03-31 19:14:45.304284 2020-03-31 19:14:49.082717 1 15 PV2-V-905 \N \N f 2413 312 2 927 3198.00 0.00 0.00 3198.00 1 2020-04-04 2020-04-05 03:02:04.538577 2020-04-05 03:06:40.980338 2 1 PV1-V-1186 2020-05-09 \N f 2414 312 2 927 3198.00 0.00 0.00 3198.00 1 2020-04-04 2020-04-05 03:07:35.811371 2020-04-05 03:10:53.615744 2 1 PV1-V-1187 2020-05-09 \N f 2415 1 18 928 2899.00 0.00 0.00 2899.00 2 2020-04-30 2020-04-30 22:34:21.942082 2020-04-30 22:34:32.89623 1 24 PV3-V-321 \N \N f 2416 1 18 928 1599.00 0.00 0.00 1599.00 2 2020-04-30 2020-04-30 23:04:29.317851 2020-04-30 23:04:38.592902 1 24 PV3-V-322 \N \N f 2424 315 18 928 2188.00 0.00 0.00 2188.00 2 2020-05-03 2020-05-03 23:51:17.588473 2020-08-05 18:42:40.875503 0 24 PV3-V-326 \N \N f 2378 306 18 904 1599.00 0.00 0.00 1599.00 2 2020-03-17 2020-03-18 00:56:33.564221 2020-05-14 20:31:48.458469 2 14 PV3-V-309 2020-04-21 \N f 2419 1 8 929 589.00 0.00 0.00 589.00 2 2020-05-03 2020-05-03 23:33:44.754589 2020-05-03 23:33:47.879196 1 26 PV2-V-906 \N \N f 2418 1 18 928 1599.00 0.00 239.00 1360.00 1 2020-05-03 2020-05-03 23:29:34.012302 2020-05-03 23:35:19.533122 1 24 PV3-V-324 \N \N f 2421 312 9 927 3198.00 0.00 0.00 3198.00 1 2020-05-03 2020-05-03 23:43:21.294055 2020-05-03 23:44:42.220412 1 1 PV1-V-1188 \N \N f 2422 312 9 927 3198.00 0.00 0.00 3198.00 1 2020-05-03 2020-05-03 23:45:06.82792 2020-05-03 23:46:18.991551 2 1 PV1-V-1189 2020-06-07 \N f 2423 312 9 927 3198.00 0.00 0.00 3198.00 3 2020-05-03 2020-05-03 23:46:39.107097 2020-05-03 23:47:13.563564 2 1 PV1-V-1190 2020-06-07 \N f 2425 1 18 928 1699.00 0.00 0.00 1699.00 2 2020-05-03 2020-05-03 23:56:18.25068 2020-05-03 23:56:27.571499 1 24 PV3-V-327 \N \N f 2426 1 18 928 899.00 0.00 139.00 760.00 2 2020-05-03 2020-05-04 00:03:05.317959 2020-05-04 00:03:13.468095 1 24 PV3-V-328 \N \N f 2420 1 18 928 1599.00 0.00 239.00 1360.00 1 2020-05-03 2020-05-03 23:35:46.936375 2020-05-04 00:24:15.268586 1 24 PV3-V-325 \N \N f 2427 1 18 928 978.00 0.00 0.00 978.00 2 2020-05-03 2020-05-04 00:09:36.759464 2020-05-04 00:09:45.559506 1 24 PV3-V-329 \N \N f 2428 1 8 929 729.00 0.00 70.00 659.00 2 2020-05-03 2020-05-04 00:21:02.946292 2020-05-04 00:21:35.707118 1 26 PV2-V-907 \N \N f 2429 1 18 928 1599.00 0.00 239.00 1360.00 2 2020-05-03 2020-05-04 00:24:49.447169 2020-05-04 00:24:58.525506 1 24 PV3-V-330 \N \N f 2430 3 18 928 4597.00 0.00 0.00 4597.00 1 2020-05-03 2020-05-04 00:29:41.190355 2020-05-04 00:29:47.120615 1 24 PV3-V-331 \N \N f 2474 1 8 932 1401.59 96.41 0.00 1498.00 1 2020-06-25 2020-06-25 18:56:00.048761 2020-06-25 18:56:05.417994 1 26 PV2-V-918 \N \N f 2436 1 18 931 1033.62 165.38 0.00 1199.00 2 2020-05-13 2020-05-13 23:50:55.517627 2020-05-13 23:51:04.232136 1 24 PV3-V-337 \N \N f 2437 1 18 931 1599.00 0.00 239.85 1359.15 2 2020-05-14 2020-05-14 20:12:01.836601 2020-05-14 20:12:14.309172 1 24 PV3-V-338 \N \N f 2438 1 18 931 1499.00 0.00 0.00 1499.00 2 2020-05-14 2020-05-14 20:14:59.985257 2020-05-14 20:15:12.207546 1 24 PV3-V-339 \N \N f 2439 1 18 931 3698.00 0.00 0.00 3698.00 2 2020-05-14 2020-05-14 20:15:57.083139 2020-05-14 20:16:07.496884 1 24 PV3-V-340 \N \N f 2440 1 18 931 1599.00 0.00 0.00 1599.00 2 2020-05-14 2020-05-14 20:18:14.322974 2020-05-14 20:18:28.541107 1 24 PV3-V-341 \N \N f 2441 1 18 931 1599.00 0.00 159.90 1439.10 2 2020-05-14 2020-05-14 20:41:20.530471 2020-05-14 20:41:34.733746 1 24 PV3-V-342 \N \N f 2442 1 18 931 1599.00 0.00 239.85 1359.15 2 2020-05-14 2020-05-14 20:42:07.417593 2020-05-14 20:42:21.779364 1 24 PV3-V-343 \N \N f 2443 1 18 931 2099.00 0.00 0.00 2099.00 2 2020-05-14 2020-05-14 20:44:01.327886 2020-05-14 20:44:11.249763 1 24 PV3-V-344 \N \N f 2445 1 18 931 3598.00 0.00 0.00 3598.00 2 2020-05-14 2020-05-14 20:53:47.87066 2020-05-14 20:53:58.523671 1 24 PV3-V-346 \N \N f 2446 1 8 932 849.00 0.00 0.00 849.00 2 2020-05-14 2020-05-14 21:16:46.76674 2020-05-14 21:16:59.444235 1 26 PV2-V-908 \N \N f 2447 1 9 933 899.00 0.00 0.00 899.00 2 2020-05-14 2020-05-14 21:18:46.328614 2020-05-14 21:18:54.57354 1 25 PV1-V-1191 \N \N f 2448 1 9 933 775.00 124.00 0.00 899.00 2 2020-05-14 2020-05-14 21:19:30.95217 2020-05-14 21:19:47.590337 1 25 PV1-V-1192 \N \N f 2449 1 8 932 589.00 0.00 0.00 589.00 2 2020-05-14 2020-05-14 21:24:24.311534 2020-05-14 21:24:32.247972 1 26 PV2-V-909 \N \N f 2450 1 8 932 589.00 0.00 58.90 530.10 2 2020-05-14 2020-05-14 21:24:50.220344 2020-05-14 21:24:58.969927 1 26 PV2-V-910 \N \N f 2451 1 8 932 469.00 0.00 0.00 469.00 2 2020-05-14 2020-05-14 21:26:34.090251 2020-05-14 21:26:38.180408 1 26 PV2-V-911 \N \N f 2452 1 18 931 1499.00 0.00 224.85 1274.15 2 2020-05-15 2020-05-15 22:52:21.489323 2020-05-15 22:52:31.425841 1 24 PV3-V-347 \N \N f 2453 1 18 931 2998.00 0.00 0.00 2998.00 2 2020-05-15 2020-05-15 22:53:03.998078 2020-05-15 22:53:12.078596 1 24 PV3-V-348 \N \N f 2455 1 8 932 599.00 0.00 0.00 599.00 2 2020-05-19 2020-05-20 01:12:57.31285 2020-05-20 01:13:06.823019 1 26 PV2-V-913 \N \N f 2456 1 9 933 469.00 0.00 0.00 469.00 2 2020-05-19 2020-05-20 01:14:12.284464 2020-05-20 01:14:20.848527 1 25 PV1-V-1193 \N \N f 2460 1 18 931 5397.00 0.00 0.00 5397.00 2 2020-06-10 2020-06-10 23:04:19.781258 2020-06-10 23:04:32.068338 1 24 PV3-V-350 \N \N f 2461 1 9 933 1599.00 0.00 0.00 1599.00 2 2020-06-10 2020-06-10 23:26:05.127249 2020-06-10 23:26:13.034056 1 25 PV1-V-1195 \N \N f 2462 1 8 932 1388.00 0.00 0.00 1388.00 2 2020-06-10 2020-06-10 23:28:40.98394 2020-06-10 23:28:52.311194 1 26 PV2-V-915 \N \N f 2435 319 18 928 2099.00 0.00 0.00 2099.00 2 2020-05-03 2020-05-04 05:33:02.664902 2020-06-11 00:13:36.156456 2 24 PV3-V-336 2020-06-07 \N f 2434 318 18 928 1799.00 0.00 0.00 1799.00 2 2020-05-03 2020-05-04 00:51:24.385825 2020-06-11 00:14:01.117217 2 24 PV3-V-335 2020-06-07 \N f 2432 316 18 928 1599.00 0.00 0.00 1599.00 2 2020-05-03 2020-05-04 00:35:29.66304 2020-06-11 00:14:23.949473 2 24 PV3-V-333 2020-06-07 \N f 2444 320 18 931 2099.00 0.00 0.00 2099.00 1 2020-05-14 2020-05-14 20:50:31.097431 2020-06-11 00:59:27.433057 2 24 PV3-V-345 2020-06-18 \N f 2431 3 18 928 4597.00 0.00 0.00 4597.00 2 2020-05-03 2020-05-04 00:30:24.122611 2020-06-11 02:41:05.102542 0 24 PV3-V-332 \N \N f 2457 3 9 933 529.00 0.00 0.00 529.00 2 2020-05-19 2020-05-20 01:15:23.427212 2020-07-07 22:18:07.213748 0 25 PV1-V-1194 \N \N f 2480 283 18 931 2291.24 206.76 0.00 2498.00 2 2020-06-25 2020-06-25 21:35:27.166323 2020-09-22 00:46:36.082437 0 14 PV3-V-352 \N \N f 2464 1 18 931 1066.59 132.41 239.00 960.00 2 2020-06-19 2020-06-20 01:29:17.618893 2020-06-20 01:29:26.977824 1 24 PV3-V-351 \N \N f 2465 321 9 933 1899.00 0.00 0.00 1899.00 1 2020-06-23 2020-06-24 00:12:07.291651 2020-06-24 00:13:38.02165 2 25 PV1-V-1197 2020-07-28 \N f 2466 321 9 933 1899.00 0.00 0.00 1899.00 1 2020-06-23 2020-06-24 00:14:03.091579 2020-06-24 00:15:33.701289 2 25 PV1-V-1198 2020-07-28 \N f 2488 298 18 931 689.00 0.00 0.00 689.00 2 2020-07-01 2020-07-01 19:34:29.397701 2020-08-26 00:18:06.009562 0 14 PV3-V-358 \N \N f 2470 1 9 933 479.00 0.00 0.00 479.00 2 2020-06-24 2020-06-24 20:33:07.580309 2020-06-24 20:33:48.881183 1 25 PV1-V-1201 \N \N f 2471 1 9 933 699.00 0.00 0.00 699.00 2 2020-06-24 2020-06-24 20:56:31.138316 2020-06-24 20:56:48.116241 1 25 PV1-V-1202 \N \N f 2476 1 9 933 1967.00 0.00 0.00 1967.00 2 2020-06-25 2020-06-25 20:04:07.217399 2020-06-25 20:04:20.632691 1 25 PV1-V-1205 \N \N f 2477 1 25 933 519.00 0.00 0.00 519.00 2 2020-06-25 2020-06-25 21:00:47.101837 2020-06-25 21:00:52.878381 1 25 PV1-V-1206 \N \N f 2478 1 25 933 1558.00 0.00 0.00 1558.00 2 2020-06-25 2020-06-25 21:01:41.448644 2020-06-25 21:01:48.234765 1 3 PV1-V-1207 \N \N f 2481 322 18 931 1699.00 0.00 0.00 1699.00 1 2020-06-26 2020-06-26 18:54:37.464116 2020-06-26 18:54:47.047715 1 14 PV3-V-353 \N \N f 2483 323 18 931 4997.00 0.00 3348.00 1649.00 1 2020-06-26 2020-06-26 18:59:05.416334 2020-06-26 18:59:10.352015 1 14 PV3-V-355 \N \N f 2487 1 9 933 1599.00 0.00 0.00 1599.00 2 2020-06-26 2020-06-26 20:58:34.625644 2020-06-26 20:58:45.905555 1 1 PV1-V-1210 \N \N f 2490 3 18 931 1398.00 0.00 0.00 1398.00 1 2020-07-01 2020-07-01 23:03:08.965292 2020-07-01 23:03:36.304126 1 14 PV3-V-359 \N \N f 2475 275 9 933 2749.17 276.84 1019.00 2007.01 3 2020-06-25 2020-06-25 20:02:46.026074 2020-07-04 01:06:28.492126 0 25 PV1-V-1204 \N \N f 2484 323 18 931 4997.00 0.00 3348.00 1649.00 3 2020-06-26 2020-06-26 19:00:37.319483 2020-08-05 18:52:47.510128 0 14 PV3-V-356 \N \N f 2433 33 18 928 1999.00 0.00 0.00 1999.00 2 2020-05-03 2020-05-04 00:40:41.954821 2020-07-07 22:14:51.743176 0 24 PV3-V-334 \N \N f 2454 3 8 932 599.00 0.00 0.00 599.00 2 2020-05-19 2020-05-20 01:11:33.335323 2020-07-07 22:18:07.191327 0 26 PV2-V-912 \N \N f 2463 33 9 933 899.00 0.00 0.00 899.00 2 2020-06-10 2020-06-11 03:02:36.820035 2020-09-15 22:02:08.767104 0 25 PV1-V-1196 \N \N f 2473 36 8 932 1199.00 0.00 399.00 800.00 2 2020-06-25 2020-06-25 18:40:12.32154 2021-02-02 18:18:20.258725 0 26 PV2-V-917 \N \N f 2458 298 8 932 849.00 0.00 0.00 849.00 2 2020-05-19 2020-05-20 01:19:08.549478 2020-07-21 23:58:11.586098 0 26 PV2-V-914 \N \N f 2468 298 9 933 1967.00 0.00 0.00 1967.00 2 2020-06-24 2020-06-24 20:29:23.896244 2020-07-21 23:58:11.627058 0 25 PV1-V-1200 \N \N f 2469 298 10 932 589.00 0.00 0.00 589.00 2 2020-06-24 2020-06-24 20:31:06.200769 2020-07-21 23:58:11.660977 0 26 PV2-V-916 \N \N f 2491 3 18 931 1398.00 0.00 0.00 1398.00 2 2020-07-01 2020-07-01 23:04:17.000748 2020-08-26 00:18:33.086509 0 14 PV3-V-360 \N \N f 2467 321 9 933 1899.00 0.00 0.00 1899.00 2 2020-06-23 2020-06-24 00:15:54.342012 2020-07-24 23:35:51.368783 2 25 PV1-V-1199 2020-07-28 \N f 2472 3 25 933 1568.00 0.00 0.00 1568.00 2 2020-06-24 2020-06-24 21:41:50.912977 2020-08-05 18:46:31.970207 0 25 PV1-V-1203 \N \N f 2486 323 18 931 5505.27 232.73 374.70 5363.30 2 2020-06-26 2020-06-26 19:19:47.015894 2020-08-05 18:52:47.489063 0 14 PV3-V-357 \N \N f 2482 322 18 931 1699.00 0.00 0.00 1699.00 3 2020-06-26 2020-06-26 18:55:14.585482 2020-08-05 19:01:31.197715 0 14 PV3-V-354 \N \N f 2485 323 9 933 7419.39 576.61 899.50 7096.50 3 2020-06-26 2020-06-26 19:08:16.133526 2020-08-08 18:10:32.279142 0 3 PV1-V-1209 \N \N f 2489 298 9 934 1134.34 93.65 0.00 1227.99 2 2020-07-01 2020-07-01 19:35:33.344954 2020-08-24 19:04:53.321974 0 3 PV1-V-1211 \N \N f 2479 36 25 933 549.00 0.00 100.00 449.00 2 2020-06-25 2020-06-25 21:22:23.456793 2021-02-02 18:18:20.273044 0 3 PV1-V-1208 \N \N f 2459 122 18 931 1599.00 0.00 0.00 1599.00 2 2020-05-19 2020-05-20 01:22:34.275121 2021-02-24 01:28:56.947118 0 24 PV3-V-349 \N \N f 2492 1 2 934 569.00 0.00 0.00 569.00 2 2020-07-02 2020-07-02 18:46:32.735064 2020-07-02 18:46:46.666691 1 3 PV1-V-1212 \N \N f 2493 1 2 934 519.00 0.00 0.00 519.00 2 2020-07-02 2020-07-02 19:04:16.827614 2020-07-02 19:04:28.601492 1 3 PV1-V-1213 \N \N f 2494 322 2 934 1178.00 0.00 0.00 1178.00 0 2020-07-02 2020-07-02 19:07:00.576739 2020-07-02 19:07:00.576739 0 3 PV1-V-1214 \N \N f 2495 1 2 934 759.00 0.00 0.00 759.00 2 2020-07-02 2020-07-02 20:01:45.458022 2020-07-02 20:01:50.368302 1 1 PV1-V-1215 \N \N f 2496 1 2 934 1778.00 0.00 0.00 1778.00 2 2020-07-02 2020-07-02 20:56:13.251907 2020-07-02 20:56:20.990719 1 1 PV1-V-1216 \N \N f 2498 1 2 934 1395.00 0.00 0.00 1395.00 2 2020-07-02 2020-07-02 21:54:19.021994 2020-07-02 21:54:23.972913 1 1 PV1-V-1218 \N \N f 2551 334 2 947 1033.62 165.38 0.00 1199.00 4 2020-07-09 2020-07-09 23:53:43.255848 2020-11-26 18:44:24.00809 2 25 PV1-V-1235 2020-08-13 \N f 2499 1 21 931 560.00 0.00 110.00 450.00 1 2020-07-02 2020-07-03 00:36:56.240051 2020-07-03 00:37:28.781858 1 14 PV3-V-361 \N \N f 2500 1 21 931 549.00 0.00 0.00 549.00 2 2020-07-02 2020-07-03 00:37:55.038662 2020-07-03 00:38:00.166666 1 14 PV3-V-362 \N \N f 2501 1 2 935 1668.00 0.00 0.00 1668.00 2 2020-07-03 2020-07-03 21:18:38.325003 2020-07-03 21:18:44.764447 1 1 PV1-V-1219 \N \N f 2502 1 2 935 837.07 61.93 450.00 449.00 2 2020-07-03 2020-07-03 21:58:03.01646 2020-07-03 21:58:07.132084 1 1 PV1-V-1220 \N \N f 2504 275 18 936 369.83 59.17 0.00 429.00 0 2020-07-03 2020-07-04 01:07:01.30236 2020-07-04 01:07:01.30236 0 14 PV3-V-364 \N \N f 2505 1 21 937 129.00 0.00 0.00 129.00 2 2020-07-04 2020-07-04 18:32:10.748174 2020-07-04 18:32:26.691057 1 14 PV3-V-365 \N \N f 2506 1 21 937 1499.00 0.00 0.00 1499.00 2 2020-07-04 2020-07-04 21:28:45.876223 2020-07-04 21:28:58.124247 1 14 PV3-V-366 \N \N f 2507 1 21 937 289.00 0.00 0.00 289.00 2 2020-07-04 2020-07-04 22:33:10.67471 2020-07-04 22:33:27.121236 1 14 PV3-V-367 \N \N f 2508 1 9 938 1099.00 0.00 219.80 879.20 2 2020-07-04 2020-07-04 23:06:34.674533 2020-07-04 23:06:51.59935 1 25 PV1-V-1221 \N \N f 2509 1 18 937 998.00 0.00 0.00 998.00 2 2020-07-04 2020-07-04 23:24:42.177879 2020-07-04 23:24:48.909423 1 24 PV3-V-368 \N \N f 2510 1 18 937 1899.00 0.00 0.00 1899.00 2 2020-07-04 2020-07-04 23:40:12.280367 2020-07-04 23:40:22.231969 1 24 PV3-V-369 \N \N f 2511 1 18 937 139.00 0.00 0.00 139.00 2 2020-07-04 2020-07-04 23:58:48.895462 2020-07-04 23:59:41.185093 1 14 PV3-V-370 \N \N f 2512 1 18 939 3098.00 0.00 0.00 3098.00 2 2020-07-05 2020-07-06 01:36:59.571378 2020-07-06 01:37:11.446292 1 24 PV3-V-371 \N \N f 2513 1 18 939 1599.00 0.00 0.00 1599.00 2 2020-07-05 2020-07-06 01:37:57.843919 2020-07-06 01:38:07.267269 1 24 PV3-V-372 \N \N f 2537 330 18 946 1499.00 0.00 0.00 1499.00 2 2020-07-08 2020-07-08 19:37:13.273777 2020-07-18 19:13:06.810465 2 14 PV3-V-386 2020-08-12 \N f 2515 1 9 940 1599.00 0.00 0.00 1599.00 2 2020-07-05 2020-07-06 01:41:32.39469 2020-07-06 01:41:42.096648 1 25 PV1-V-1222 \N \N f 2497 324 2 934 1768.00 0.00 0.00 1768.00 2 2020-07-02 2020-07-02 21:46:16.614475 2020-07-06 17:13:40.649242 2 1 PV1-V-1217 2020-08-06 \N f 2518 1 2 941 3996.00 0.00 0.00 3996.00 2 2020-07-06 2020-07-06 19:13:05.950442 2020-07-06 19:13:14.29835 1 1 PV1-V-1223 \N \N f 2519 1 2 941 759.00 0.00 0.00 759.00 2 2020-07-06 2020-07-06 20:03:45.539227 2020-07-06 20:03:54.835419 1 1 PV1-V-1224 \N \N f 2520 1 2 941 268.00 0.00 0.00 268.00 2 2020-07-06 2020-07-06 21:29:51.64714 2020-07-06 21:30:00.828995 1 1 PV1-V-1225 \N \N f 2556 335 18 950 2798.00 0.00 0.00 2798.00 2 2020-07-10 2020-07-10 20:05:00.993698 2020-08-06 00:34:37.621721 2 14 PV3-V-401 2020-08-14 \N f 2522 1 18 942 1599.00 0.00 0.00 1599.00 2 2020-07-06 2020-07-06 22:53:47.5844 2020-07-06 22:53:53.325201 1 14 PV3-V-376 \N \N f 2523 1 2 941 1599.00 0.00 40.00 1559.00 2 2020-07-06 2020-07-06 23:37:20.50003 2020-07-06 23:37:39.029903 1 25 PV1-V-1227 \N \N f 2524 1 18 942 1599.00 0.00 0.00 1599.00 2 2020-07-06 2020-07-07 00:02:33.879329 2020-07-07 00:02:43.046585 1 14 PV3-V-377 \N \N f 2526 1 18 942 1599.00 0.00 0.00 1599.00 1 2020-07-06 2020-07-07 00:24:56.127234 2020-07-07 00:25:04.41968 1 14 PV3-V-379 \N \N f 2527 1 18 942 1599.00 0.00 0.00 1599.00 2 2020-07-06 2020-07-07 00:25:17.017602 2020-07-07 00:25:23.949961 1 24 PV3-V-380 \N \N f 2528 1 18 942 2048.00 0.00 0.00 2048.00 2 2020-07-06 2020-07-07 00:52:45.980776 2020-07-07 00:52:56.983945 1 24 PV3-V-381 \N \N f 2529 1 2 943 569.00 0.00 0.00 569.00 2 2020-07-07 2020-07-07 19:40:43.048084 2020-07-07 19:40:50.043206 1 1 PV1-V-1228 \N \N f 2530 1 18 944 616.93 82.07 104.00 595.00 2 2020-07-07 2020-07-07 21:13:52.709836 2020-07-07 21:14:00.119395 1 14 PV3-V-382 \N \N f 2531 1 2 943 849.00 0.00 0.00 849.00 2 2020-07-07 2020-07-07 22:52:25.758822 2020-07-07 22:52:29.771665 1 1 PV1-V-1229 \N \N f 2532 1 18 944 1499.00 0.00 0.00 1499.00 2 2020-07-07 2020-07-07 23:10:36.30952 2020-07-07 23:10:46.406089 1 14 PV3-V-383 \N \N f 2533 1 2 943 2304.72 92.28 0.00 2397.00 2 2020-07-07 2020-07-07 23:32:18.602676 2020-07-07 23:32:27.599416 1 1 PV1-V-1230 \N \N f 2534 1 2 943 365.00 0.00 0.00 365.00 2 2020-07-07 2020-07-07 23:38:20.351884 2020-07-07 23:38:24.525478 1 1 PV1-V-1231 \N \N f 2536 1 18 946 2222.25 275.75 498.80 1999.20 2 2020-07-08 2020-07-08 19:35:56.114334 2020-07-08 19:36:11.987975 1 14 PV3-V-385 \N \N f 2521 326 2 941 3398.00 0.00 0.00 3398.00 2 2020-07-06 2020-07-06 21:45:51.266762 2020-07-24 20:14:25.454043 2 25 PV1-V-1226 2020-08-10 \N f 2538 331 18 946 1599.00 0.00 899.00 700.00 1 2020-07-08 2020-07-08 20:23:21.951579 2020-07-08 20:23:39.823785 1 14 PV3-V-387 \N \N f 2517 3 18 939 1002.45 96.55 399.00 700.00 2 2020-07-05 2020-07-06 01:47:46.668273 2020-10-15 22:37:29.315391 0 24 PV3-V-375 \N \N f 2540 1 2 945 849.00 0.00 0.00 849.00 2 2020-07-08 2020-07-08 20:29:47.264675 2020-07-08 20:30:15.311441 1 1 PV1-V-1232 \N \N f 2541 1 18 946 2198.00 0.00 0.00 2198.00 2 2020-07-08 2020-07-08 22:36:19.844543 2020-07-08 22:37:29.56759 1 14 PV3-V-389 \N \N f 2542 1 2 945 3098.00 0.00 0.00 3098.00 2 2020-07-08 2020-07-08 23:14:22.224479 2020-07-08 23:14:27.419832 1 1 PV1-V-1233 \N \N f 2543 332 18 946 1599.00 0.00 0.00 1599.00 1 2020-07-08 2020-07-08 23:14:27.673099 2020-07-08 23:23:39.121879 2 14 PV3-V-390 2020-08-12 \N f 2525 327 18 942 1499.00 0.00 0.00 1499.00 2 2020-07-06 2020-07-07 00:08:52.99586 2020-08-10 20:54:07.848867 2 14 PV3-V-378 2020-08-10 \N f 2545 1 2 947 469.00 0.00 0.00 469.00 2 2020-07-09 2020-07-09 17:37:46.145808 2020-07-09 17:37:51.097304 1 1 PV1-V-1234 \N \N f 2546 1 18 948 1599.00 0.00 0.00 1599.00 2 2020-07-09 2020-07-09 18:43:19.613822 2020-07-09 18:43:24.442596 1 24 PV3-V-392 \N \N f 2544 332 18 946 1599.00 0.00 0.00 1599.00 2 2020-07-08 2020-07-08 23:36:12.447125 2020-08-08 21:21:04.271195 2 14 PV3-V-391 2020-08-12 \N f 2548 1 18 948 560.00 0.00 0.00 560.00 2 2020-07-09 2020-07-09 20:46:44.087325 2020-07-09 20:46:59.140265 1 14 PV3-V-394 \N \N f 2549 1 18 948 2099.00 0.00 0.00 2099.00 2 2020-07-09 2020-07-09 21:26:10.474448 2020-07-09 21:26:34.983944 1 14 PV3-V-395 \N \N f 2550 1 18 948 1899.00 0.00 0.00 1899.00 2 2020-07-09 2020-07-09 21:29:48.225182 2020-07-09 21:30:39.346302 1 14 PV3-V-396 \N \N f 2503 283 18 936 4765.86 248.14 799.00 4215.00 2 2020-07-03 2020-07-04 00:40:03.682826 2021-02-24 01:30:29.033415 0 14 PV3-V-363 \N \N f 2552 1 18 948 1499.00 0.00 0.00 1499.00 2 2020-07-09 2020-07-10 00:29:13.854957 2020-07-10 00:29:20.793762 1 14 PV3-V-397 \N \N f 2553 1 18 948 1499.00 0.00 0.00 1499.00 2 2020-07-09 2020-07-10 00:29:56.83426 2020-07-10 00:30:01.854958 1 14 PV3-V-398 \N \N f 2554 1 18 950 1399.00 0.00 0.00 1399.00 2 2020-07-10 2020-07-10 19:32:41.740268 2020-07-10 19:33:55.238004 1 14 PV3-V-399 \N \N f 2555 335 18 950 2798.00 0.00 0.00 2798.00 1 2020-07-10 2020-07-10 20:03:17.303858 2020-07-10 20:04:29.586875 1 14 PV3-V-400 \N \N f 2547 333 18 948 1699.00 0.00 0.00 1699.00 2 2020-07-09 2020-07-09 20:13:32.153745 2020-08-07 23:43:38.896099 2 24 PV3-V-393 2020-08-13 \N f 2514 325 18 939 1599.00 0.00 0.00 1599.00 2 2020-07-05 2020-07-06 01:40:17.109779 2020-07-14 00:27:52.30143 2 24 PV3-V-373 2020-08-09 \N f 2516 3 18 939 1660.07 137.93 798.00 1000.00 2 2020-07-05 2020-07-06 01:46:49.499892 2020-09-04 20:44:58.164531 0 24 PV3-V-374 \N \N f 2535 329 18 944 516.38 82.62 0.00 599.00 2 2020-07-07 2020-07-08 00:13:35.722148 2020-09-12 21:47:27.052626 2 14 PV3-V-384 2020-08-11 \N f 2539 331 18 946 1599.00 0.00 899.00 700.00 4 2020-07-08 2020-07-08 20:24:37.853454 2020-09-30 22:57:14.556581 2 14 PV3-V-388 2020-08-12 \N f 2557 1 2 951 1499.00 0.00 0.00 1499.00 2 2020-07-11 2020-07-11 22:24:33.435864 2020-07-11 22:25:21.386749 1 25 PV1-V-1236 \N \N f 2558 1 2 953 85.34 13.65 0.00 98.99 2 2020-07-13 2020-07-13 16:28:37.36597 2020-07-13 16:28:52.458356 1 1 PV1-V-1237 \N \N f 2559 1 18 952 179.00 0.00 0.00 179.00 2 2020-07-13 2020-07-13 19:44:11.682745 2020-07-13 19:44:21.343013 1 14 PV3-V-402 \N \N f 2560 1 2 953 1099.00 0.00 99.00 1000.00 2 2020-07-13 2020-07-13 19:48:51.141833 2020-07-13 19:49:11.494032 1 1 PV1-V-1238 \N \N f 2604 343 18 965 2998.00 0.00 0.00 2998.00 2 2020-07-21 2020-07-21 23:35:00.119457 2020-10-15 22:32:19.881352 0 14 PV3-V-435 \N \N f 2562 1 18 952 600.72 48.28 299.00 350.00 2 2020-07-13 2020-07-13 20:21:22.747182 2020-07-13 20:21:27.169722 1 14 PV3-V-404 \N \N f 2563 1 18 952 549.00 0.00 0.00 549.00 2 2020-07-13 2020-07-13 21:26:13.230092 2020-07-13 21:26:19.031887 1 14 PV3-V-405 \N \N f 2600 1 18 965 579.00 0.00 0.00 579.00 2 2020-07-21 2020-07-21 22:27:35.523577 2020-07-21 22:27:51.663462 1 14 PV3-V-431 \N \N f 2565 337 18 952 1981.90 317.10 0.00 2299.00 1 2020-07-13 2020-07-13 22:17:02.614539 2020-07-13 22:17:09.740657 1 14 PV3-V-407 \N \N f 2567 1 18 952 1779.00 0.00 0.00 1779.00 2 2020-07-13 2020-07-13 22:41:32.237394 2020-07-13 22:41:40.526859 1 14 PV3-V-409 \N \N f 2568 1 18 952 1599.00 0.00 0.00 1599.00 2 2020-07-13 2020-07-13 23:09:28.165212 2020-07-13 23:10:11.345187 1 14 PV3-V-410 \N \N f 2569 1 18 952 2079.00 0.00 0.00 2079.00 2 2020-07-13 2020-07-13 23:28:52.588394 2020-07-13 23:32:24.833451 1 14 PV3-V-411 \N \N f 2570 1 18 952 1374.86 124.14 599.00 900.00 2 2020-07-13 2020-07-14 00:08:18.337439 2020-07-14 00:08:26.77892 1 14 PV3-V-412 \N \N f 2561 336 18 952 1499.00 0.00 0.00 1499.00 4 2020-07-13 2020-07-13 19:49:41.344278 2020-08-31 21:28:30.455764 2 14 PV3-V-403 2020-08-17 \N f 2572 339 18 955 1499.00 0.00 0.00 1499.00 2 2020-07-14 2020-07-14 19:43:06.492299 2020-07-14 20:12:24.07534 2 14 PV3-V-414 2020-08-18 \N f 2573 1 18 957 159.00 0.00 0.00 159.00 2 2020-07-15 2020-07-15 19:30:14.360077 2020-07-15 19:30:24.632907 1 14 PV3-V-415 \N \N f 2574 1 2 956 3198.00 0.00 0.00 3198.00 2 2020-07-15 2020-07-15 20:45:45.307281 2020-07-15 20:46:11.703344 1 25 PV1-V-1239 \N \N f 2575 1 18 957 1499.00 0.00 0.00 1499.00 2 2020-07-15 2020-07-15 23:24:33.527363 2020-07-15 23:24:45.724623 1 14 PV3-V-416 \N \N f 2576 1 18 957 1499.00 0.00 0.00 1499.00 2 2020-07-15 2020-07-15 23:49:40.216768 2020-07-15 23:50:03.346229 1 14 PV3-V-417 \N \N f 2577 1 18 958 1667.38 110.62 177.00 1601.00 2 2020-07-16 2020-07-16 18:59:03.514736 2020-07-16 18:59:09.707561 1 14 PV3-V-418 \N \N f 2579 1 2 959 799.00 0.00 0.00 799.00 2 2020-07-17 2020-07-17 18:55:07.523544 2020-07-17 18:55:12.11528 1 25 PV1-V-1240 \N \N f 2580 1 2 959 639.00 0.00 0.00 639.00 2 2020-07-17 2020-07-17 20:16:17.625561 2020-07-17 20:16:57.929191 1 1 PV1-V-1241 \N \N f 2581 1 21 960 168.97 27.04 0.00 196.01 2 2020-07-17 2020-07-17 21:10:00.18736 2020-07-17 21:10:08.239963 1 14 PV3-V-420 \N \N f 2582 1 2 959 519.00 0.00 0.00 519.00 2 2020-07-17 2020-07-17 21:26:15.37529 2020-07-17 21:27:15.069623 1 1 PV1-V-1242 \N \N f 2583 1 2 959 2099.00 0.00 0.00 2099.00 2 2020-07-17 2020-07-17 21:29:40.261894 2020-07-17 21:29:47.102083 1 1 PV1-V-1243 \N \N f 2585 1 21 960 1560.21 137.79 0.00 1698.00 2 2020-07-17 2020-07-17 21:33:43.411168 2020-07-17 21:34:11.288914 1 12 PV3-V-421 \N \N f 2608 1 2 967 1511.42 187.59 339.01 1360.00 2 2020-07-23 2020-07-23 19:06:53.499494 2020-07-23 19:06:58.386042 1 3 PV1-V-1252 \N \N f 2586 341 21 960 999.00 0.00 0.00 999.00 1 2020-07-17 2020-07-17 22:32:15.621365 2020-07-17 22:35:14.399971 1 14 PV3-V-422 \N \N f 2588 1 2 959 1141.24 6.76 0.00 1148.00 2 2020-07-17 2020-07-17 23:32:00.194523 2020-07-17 23:32:27.955646 1 25 PV1-V-1245 \N \N f 2564 337 18 952 2099.00 0.00 0.00 2099.00 2 2020-07-13 2020-07-13 22:09:29.753832 2020-07-18 00:36:44.547632 2 14 PV3-V-406 2020-08-17 \N f 2589 1 2 961 604.17 44.83 324.00 325.00 2 2020-07-18 2020-07-18 18:29:15.589885 2020-07-18 18:29:19.546463 1 1 PV1-V-1246 \N \N f 2587 341 21 960 999.00 0.00 0.00 999.00 2 2020-07-17 2020-07-17 22:35:55.803246 2020-07-18 18:59:34.639817 2 14 PV3-V-423 2020-08-21 \N f 2590 1 18 962 1499.00 0.00 0.00 1499.00 2 2020-07-18 2020-07-18 19:18:51.375138 2020-07-18 19:20:03.101243 1 14 PV3-V-424 \N \N f 2591 1 2 961 1599.00 0.00 0.00 1599.00 2 2020-07-18 2020-07-18 20:59:36.506794 2020-07-18 20:59:52.719434 1 1 PV1-V-1247 \N \N f 2578 1 18 958 1480.03 68.96 200.00 1348.99 1 2020-07-16 2020-07-16 20:53:38.277349 2020-07-18 22:46:19.9491 1 14 PV3-V-419 \N \N f 2592 1 18 962 1299.00 0.00 0.00 1299.00 2 2020-07-18 2020-07-18 23:07:59.988769 2020-07-18 23:08:21.2354 1 14 PV3-V-425 \N \N f 2593 1 18 962 743.83 103.17 0.00 847.00 2 2020-07-18 2020-07-18 23:14:03.309536 2020-07-18 23:14:21.814498 1 14 PV3-V-426 \N \N f 2594 1 21 964 743.90 55.10 399.50 399.50 2 2020-07-20 2020-07-20 19:11:16.687774 2020-07-20 19:11:27.216284 1 12 PV3-V-427 \N \N f 2595 1 21 964 743.83 55.17 399.00 400.00 2 2020-07-20 2020-07-20 20:16:56.580523 2020-07-20 20:17:09.828736 1 12 PV3-V-428 \N \N f 2596 1 21 964 105.00 0.00 0.00 105.00 2 2020-07-20 2020-07-20 21:26:19.031305 2020-07-20 21:26:25.491789 1 12 PV3-V-429 \N \N f 2597 1 2 963 729.00 0.00 0.00 729.00 2 2020-07-20 2020-07-20 22:15:13.082077 2020-07-20 22:15:19.797715 1 1 PV1-V-1248 \N \N f 2598 1 2 963 218.00 0.00 0.00 218.00 2 2020-07-20 2020-07-20 23:47:46.030869 2020-07-20 23:47:52.710477 1 1 PV1-V-1249 \N \N f 2599 1 18 965 179.00 0.00 0.00 179.00 2 2020-07-21 2020-07-21 21:13:33.040863 2020-07-21 21:14:05.616735 1 14 PV3-V-430 \N \N f 2602 1 18 965 238.00 0.00 0.00 238.00 2 2020-07-21 2020-07-21 22:39:16.111175 2020-07-21 22:39:20.198115 1 14 PV3-V-433 \N \N f 2603 1 18 965 2606.00 0.00 0.00 2606.00 2 2020-07-21 2020-07-21 23:30:34.253391 2020-07-21 23:30:45.796356 1 14 PV3-V-434 \N \N f 2605 1 18 966 1638.00 0.00 0.00 1638.00 2 2020-07-22 2020-07-22 21:29:50.250884 2020-07-22 21:29:58.477949 1 14 PV3-V-436 \N \N f 2601 342 18 965 576.72 92.28 0.00 669.00 2 2020-07-21 2020-07-21 22:33:51.618418 2020-07-22 22:45:11.725268 2 14 PV3-V-432 2020-08-25 \N f 2606 1 2 967 1417.00 0.00 0.00 1417.00 2 2020-07-23 2020-07-23 17:19:34.013792 2020-07-23 17:20:03.782582 1 1 PV1-V-1250 \N \N f 2607 1 2 967 1599.00 0.00 0.00 1599.00 2 2020-07-23 2020-07-23 17:22:33.51059 2020-07-23 17:30:15.270581 1 1 PV1-V-1251 \N \N f 2566 337 18 952 1981.90 317.10 0.00 2299.00 2 2020-07-13 2020-07-13 22:17:30.497646 2020-07-23 23:51:24.944806 2 14 PV3-V-408 2020-08-17 \N f 2609 1 18 968 1799.00 0.00 0.00 1799.00 2 2020-07-23 2020-07-24 00:36:22.703594 2020-07-24 00:36:32.210122 1 14 PV3-V-437 \N \N f 2610 1 18 969 1616.24 82.76 100.00 1599.00 2 2020-07-24 2020-07-24 18:40:15.54788 2020-07-24 18:41:03.732891 1 14 PV3-V-438 \N \N f 2611 1 18 969 599.00 0.00 0.00 599.00 2 2020-07-24 2020-07-24 19:00:07.047452 2020-07-24 19:00:17.386211 1 14 PV3-V-439 \N \N f 2612 341 18 969 1498.00 0.00 0.00 1498.00 1 2020-07-24 2020-07-24 19:23:30.309095 2020-07-24 19:25:28.532833 1 14 PV3-V-440 \N \N f 2584 340 2 959 1033.62 165.38 0.00 1199.00 2 2020-07-17 2020-07-17 21:31:08.428985 2020-08-04 22:29:16.092926 2 1 PV1-V-1244 2020-08-21 \N f 2614 1 18 969 2798.00 0.00 0.00 2798.00 2 2020-07-24 2020-07-24 21:42:11.713872 2020-07-24 21:42:15.984178 1 14 PV3-V-442 \N \N f 2615 1 2 970 699.00 0.00 0.00 699.00 2 2020-07-24 2020-07-25 00:10:24.803904 2020-07-25 00:10:34.883937 1 1 PV1-V-1253 \N \N f 2616 1 18 969 1599.00 0.00 0.00 1599.00 1 2020-07-24 2020-07-25 00:46:51.459785 2020-07-25 00:49:10.198646 1 14 PV3-V-443 \N \N f 2617 1 18 969 1599.00 0.00 0.00 1599.00 2 2020-07-24 2020-07-25 00:54:06.241177 2020-07-25 00:55:11.958525 1 14 PV3-V-444 \N \N f 2571 338 18 952 1499.00 0.00 0.00 1499.00 2 2020-07-13 2020-07-14 00:13:08.594736 2020-08-25 00:01:08.193004 2 14 PV3-V-413 2020-08-17 \N f 2619 1 21 971 837.00 62.00 449.50 449.50 2 2020-07-25 2020-07-25 20:21:57.51584 2020-07-25 20:22:31.155094 1 12 PV3-V-446 \N \N f 2620 1 2 972 417.97 31.04 224.00 225.01 2 2020-07-27 2020-07-27 20:28:15.888753 2020-07-27 20:29:31.945936 1 1 PV1-V-1254 \N \N f 2613 341 18 969 1498.00 0.00 0.00 1498.00 2 2020-07-24 2020-07-24 19:26:05.34449 2020-07-29 23:14:48.03021 2 14 PV3-V-441 2020-08-28 \N f 2618 344 21 971 3298.00 0.00 0.00 3298.00 1 2020-07-25 2020-07-25 19:42:11.795763 2020-08-05 19:56:26.556596 2 14 PV3-V-445 2020-08-29 \N f 2621 1 21 973 1799.00 0.00 0.00 1799.00 2 2020-07-27 2020-07-27 21:45:48.676179 2020-07-27 21:46:13.819574 1 12 PV3-V-447 \N \N f 2622 1 21 973 1661.07 137.93 799.00 1000.00 2 2020-07-27 2020-07-27 21:54:36.233217 2020-07-27 21:54:47.562353 1 12 PV3-V-448 \N \N f 2623 1 21 973 999.00 0.00 0.00 999.00 2 2020-07-27 2020-07-28 00:22:07.13134 2020-07-28 00:22:13.90182 1 24 PV3-V-449 \N \N f 2624 1 2 974 599.00 0.00 0.00 599.00 2 2020-07-28 2020-07-28 17:03:51.151066 2020-07-28 17:03:55.59373 1 1 PV1-V-1255 \N \N f 2680 354 2 996 669.00 0.00 0.00 669.00 2 2020-08-08 2020-08-08 19:09:45.299416 2020-08-21 18:45:59.714217 2 1 PV1-V-1278 2020-09-12 \N f 2626 1 2 974 1399.00 0.00 0.00 1399.00 2 2020-07-28 2020-07-28 18:31:37.926722 2020-07-28 18:31:47.456876 1 1 PV1-V-1256 \N \N f 2627 1 2 974 1948.00 0.00 0.00 1948.00 2 2020-07-28 2020-07-28 19:05:19.54317 2020-07-28 19:05:26.05545 1 1 PV1-V-1257 \N \N f 2629 1 18 977 85.34 13.65 0.00 98.99 2 2020-07-29 2020-07-29 21:50:25.051749 2020-07-29 21:50:30.172914 1 14 PV3-V-451 \N \N f 2630 1 18 977 1399.00 0.00 0.00 1399.00 2 2020-07-29 2020-07-29 23:57:44.80141 2020-07-29 23:59:16.307913 1 14 PV3-V-452 \N \N f 2650 350 18 986 1799.00 0.00 0.00 1799.00 2 2020-08-03 2020-08-03 20:12:07.698887 2020-09-12 21:48:33.436864 2 14 PV3-V-462 2020-09-07 \N f 2632 1 18 979 3098.00 0.00 0.00 3098.00 2 2020-07-30 2020-07-30 18:40:21.842507 2020-07-30 18:40:43.569857 1 14 PV3-V-453 \N \N f 2633 1 18 979 599.00 0.00 0.00 599.00 2 2020-07-30 2020-07-30 21:10:06.348746 2020-07-30 21:10:14.181208 1 14 PV3-V-454 \N \N f 2634 1 18 979 1499.00 0.00 0.00 1499.00 2 2020-07-30 2020-07-30 21:16:42.028468 2020-07-30 21:17:19.671953 1 24 PV3-V-455 \N \N f 2631 348 9 978 1399.00 0.00 0.00 1399.00 1 2020-07-29 2020-07-30 00:26:19.322546 2020-07-30 21:30:08.476106 2 25 PV1-V-1259 2020-09-02 \N f 2635 349 2 980 1399.00 0.00 0.00 1399.00 1 2020-07-31 2020-07-31 21:06:10.861563 2020-07-31 21:07:12.65458 2 25 PV1-V-1260 2020-09-04 \N f 2636 349 2 980 1399.00 0.00 0.00 1399.00 1 2020-07-31 2020-07-31 21:08:14.89244 2020-07-31 21:09:17.584053 2 25 PV1-V-1261 2020-09-04 \N f 2637 349 2 980 1399.00 0.00 0.00 1399.00 1 2020-07-31 2020-07-31 21:09:47.061741 2020-07-31 21:10:49.269737 2 25 PV1-V-1262 2020-09-04 \N f 2638 349 2 980 1399.00 0.00 0.00 1399.00 1 2020-07-31 2020-07-31 21:12:21.185116 2020-07-31 21:12:38.682391 2 25 PV1-V-1263 2020-09-04 \N f 2639 1 18 981 1599.00 0.00 0.00 1599.00 2 2020-07-31 2020-07-31 21:23:59.094704 2020-07-31 21:24:12.704336 1 24 PV3-V-456 \N \N f 2640 349 2 980 1399.00 0.00 0.00 1399.00 1 2020-07-31 2020-07-31 21:39:51.597756 2020-07-31 21:41:12.163163 2 25 PV1-V-1264 2020-09-04 \N f 2641 1 18 981 2199.00 0.00 0.00 2199.00 2 2020-07-31 2020-07-31 22:32:05.251345 2020-07-31 22:32:33.367953 1 24 PV3-V-457 \N \N f 2642 348 2 980 1399.00 0.00 0.00 1399.00 1 2020-07-31 2020-07-31 23:05:28.136473 2020-07-31 23:10:29.782063 2 25 PV1-V-1265 2020-09-04 \N f 2643 1 18 981 1599.00 0.00 0.00 1599.00 2 2020-07-31 2020-07-31 23:28:04.464502 2020-07-31 23:28:15.189356 1 14 PV3-V-458 \N \N f 2644 1 18 982 1099.00 0.00 99.00 1000.00 2 2020-07-31 2020-08-01 00:46:05.183678 2020-08-01 00:46:51.959275 1 14 PV3-V-459 \N \N f 2645 349 2 983 1399.00 0.00 0.00 1399.00 1 2020-08-01 2020-08-01 16:51:02.802586 2020-08-01 16:51:28.644031 2 25 PV1-V-1266 2020-09-05 \N f 2646 1 2 983 631.03 68.96 200.00 499.99 2 2020-08-01 2020-08-01 21:00:50.837639 2020-08-01 21:01:55.487211 1 1 PV1-V-1267 \N \N f 2647 1 18 984 2398.00 0.00 0.00 2398.00 2 2020-08-01 2020-08-01 23:52:26.990326 2020-08-01 23:53:14.226964 1 14 PV3-V-460 \N \N f 2648 1 2 985 1399.00 0.00 0.00 1399.00 2 2020-08-03 2020-08-03 16:32:34.163323 2020-08-03 16:32:59.066928 1 25 PV1-V-1268 \N \N f 2649 1 18 986 4721.28 275.72 0.00 4997.00 2 2020-08-03 2020-08-03 18:39:11.696746 2020-08-03 18:40:17.865903 1 14 PV3-V-461 \N \N f 2663 353 18 988 2998.00 0.00 0.00 2998.00 2 2020-08-04 2020-08-05 00:26:12.963953 2020-10-15 22:35:34.522984 0 14 PV3-V-472 \N \N f 2652 1 18 986 699.00 0.00 0.00 699.00 2 2020-08-03 2020-08-03 22:22:16.950926 2020-08-03 22:22:20.779403 1 14 PV3-V-463 \N \N f 2653 1 18 986 1099.00 0.00 0.00 1099.00 2 2020-08-03 2020-08-03 22:41:27.822201 2020-08-03 22:43:22.768137 1 14 PV3-V-464 \N \N f 2654 1 18 986 1599.00 0.00 0.00 1599.00 2 2020-08-03 2020-08-03 23:19:47.550135 2020-08-03 23:19:54.827076 1 14 PV3-V-465 \N \N f 2655 1 18 986 1499.00 0.00 0.00 1499.00 2 2020-08-03 2020-08-03 23:27:35.27743 2020-08-03 23:27:44.190944 1 14 PV3-V-466 \N \N f 2656 1 18 986 899.00 0.00 350.00 549.00 2 2020-08-03 2020-08-03 23:34:37.99758 2020-08-03 23:34:45.099931 1 14 PV3-V-467 \N \N f 2657 1 18 986 1499.00 0.00 224.85 1274.15 2 2020-08-03 2020-08-03 23:36:37.704716 2020-08-03 23:36:51.892686 1 14 PV3-V-468 \N \N f 2658 1 2 985 599.00 0.00 0.00 599.00 2 2020-08-03 2020-08-03 23:49:53.948182 2020-08-03 23:49:58.656508 1 1 PV1-V-1270 \N \N f 2628 347 2 974 1499.00 0.00 0.00 1499.00 2 2020-07-28 2020-07-28 21:55:05.804903 2020-08-04 21:24:37.796238 2 1 PV1-V-1258 2020-09-01 \N f 2659 1 18 988 743.83 55.17 399.00 400.00 2 2020-08-04 2020-08-04 23:08:29.437072 2020-08-04 23:08:33.436586 1 14 PV3-V-469 \N \N f 2660 1 18 988 124.48 13.52 0.00 138.00 2 2020-08-04 2020-08-04 23:11:54.760991 2020-08-04 23:14:45.472992 1 14 PV3-V-470 \N \N f 2661 1 2 987 1169.00 0.00 119.00 1050.00 2 2020-08-04 2020-08-04 23:29:57.610182 2020-08-04 23:30:03.112914 1 1 PV1-V-1271 \N \N f 2662 1 18 988 1587.00 0.00 0.00 1587.00 2 2020-08-04 2020-08-05 00:04:29.707724 2020-08-05 00:05:22.426251 1 14 PV3-V-471 \N \N f 2664 1 18 988 1661.07 137.93 799.00 1000.00 2 2020-08-04 2020-08-05 00:28:25.8451 2020-08-05 00:28:30.490563 1 14 PV3-V-473 \N \N f 2665 1 2 989 1499.00 0.00 0.00 1499.00 2 2020-08-05 2020-08-05 18:03:43.61614 2020-08-05 18:04:04.247722 1 1 PV1-V-1272 \N \N f 2666 1 2 989 42.24 6.76 0.00 49.00 2 2020-08-05 2020-08-05 18:12:54.811725 2020-08-05 18:12:59.382537 1 1 PV1-V-1273 \N \N f 2667 1 18 990 3298.00 0.00 239.00 3059.00 2 2020-08-05 2020-08-05 19:58:36.588516 2020-08-05 19:58:49.256569 1 14 PV3-V-474 \N \N f 2668 1 18 990 699.00 0.00 0.00 699.00 2 2020-08-05 2020-08-05 20:53:14.885996 2020-08-05 20:53:19.554055 1 14 PV3-V-475 \N \N f 2669 1 18 990 138.00 0.00 0.00 138.00 2 2020-08-05 2020-08-05 20:54:52.379451 2020-08-05 20:55:01.130159 1 14 PV3-V-476 \N \N f 2670 1 18 990 1599.00 0.00 239.00 1360.00 2 2020-08-05 2020-08-05 21:09:47.699705 2020-08-05 21:10:03.148854 1 14 PV3-V-477 \N \N f 2671 1 18 990 1619.00 0.00 32.00 1587.00 2 2020-08-05 2020-08-05 22:55:57.687276 2020-08-05 22:56:08.213611 1 14 PV3-V-478 \N \N f 2672 1 18 991 2227.79 110.21 0.00 2338.00 1 2020-08-06 2020-08-06 22:29:14.488097 2020-08-06 22:30:30.297936 1 14 PV3-V-479 \N \N f 2673 1 18 991 2282.83 55.17 399.00 1939.00 2 2020-08-06 2020-08-06 22:31:10.572007 2020-08-06 22:31:20.376167 1 14 PV3-V-480 \N \N f 2674 1 21 993 1599.00 0.00 0.00 1599.00 2 2020-08-07 2020-08-07 19:37:08.732926 2020-08-07 19:38:04.30739 1 12 PV3-V-481 \N \N f 2675 1 9 992 1540.42 27.58 1368.00 200.00 2 2020-08-07 2020-08-07 21:03:24.787259 2020-08-07 21:03:32.062458 1 1 PV1-V-1274 \N \N f 2676 1 9 992 2426.00 0.00 2426.00 0.00 2 2020-08-07 2020-08-07 21:30:12.395781 2020-08-07 21:30:16.978763 1 3 PV1-V-1275 \N \N f 2677 1 2 992 1249.73 48.27 948.00 350.00 2 2020-08-07 2020-08-07 22:49:08.249024 2020-08-07 22:49:13.366716 1 1 PV1-V-1276 \N \N f 2678 1 21 994 1099.00 0.00 0.00 1099.00 2 2020-08-07 2020-08-08 00:57:21.270277 2020-08-08 00:57:28.401885 1 24 PV3-V-482 \N \N f 2679 1 2 996 849.00 0.00 424.00 425.00 2 2020-08-08 2020-08-08 18:51:18.227801 2020-08-08 18:51:25.619353 1 1 PV1-V-1277 \N \N f 2651 351 2 985 1499.00 0.00 0.00 1499.00 2 2020-08-03 2020-08-03 20:41:48.99273 2020-09-08 20:23:24.501674 2 1 PV1-V-1269 2020-09-07 \N f 2681 1 2 996 4973.50 89.50 4314.00 749.00 2 2020-08-08 2020-08-08 20:07:40.550935 2020-08-08 20:07:47.569822 1 1 PV1-V-1279 \N \N f 2682 1 2 996 560.00 0.00 280.00 280.00 2 2020-08-08 2020-08-08 21:13:04.569648 2020-08-08 21:13:09.752981 1 1 PV1-V-1280 \N \N f 2683 1 21 997 1399.00 0.00 0.00 1399.00 2 2020-08-10 2020-08-11 00:07:32.222547 2020-08-11 00:07:37.976137 1 24 PV3-V-483 \N \N f 2684 1 21 998 1599.00 0.00 0.00 1599.00 2 2020-08-11 2020-08-11 23:58:07.30437 2020-08-11 23:58:14.507191 1 23 PV3-V-484 \N \N f 2625 346 21 975 1599.00 0.00 0.00 1599.00 2 2020-07-28 2020-07-28 18:06:08.628358 2020-08-13 00:37:20.209779 2 24 PV3-V-450 2020-09-01 \N f 2685 1 21 998 1499.00 0.00 0.00 1499.00 2 2020-08-11 2020-08-12 00:20:35.813027 2020-08-12 00:20:43.848455 1 24 PV3-V-485 \N \N f 2686 355 21 999 1399.00 0.00 0.00 1399.00 1 2020-08-12 2020-08-12 21:59:21.80125 2020-08-12 21:59:51.916967 2 24 PV3-V-486 2020-09-16 \N f 2721 358 21 1006 1483.48 165.52 200.00 1449.00 2 2020-08-15 2020-08-15 23:37:11.345702 2020-09-15 22:02:37.127413 0 14 PV3-V-493 \N \N f 2688 1 21 1000 999.00 0.00 0.00 999.00 2 2020-08-12 2020-08-13 00:35:54.108837 2020-08-13 00:36:01.894919 1 23 PV3-V-488 \N \N f 2689 357 2 1001 3098.00 0.00 0.00 3098.00 1 2020-08-13 2020-08-13 19:47:06.620445 2020-08-13 20:07:21.718342 1 1 PV1-V-1281 \N \N f 2690 356 2 1001 3098.00 0.00 0.00 3098.00 1 2020-08-13 2020-08-13 20:15:02.064446 2020-08-13 20:15:33.157582 1 1 PV1-V-1282 \N \N f 2736 361 18 1013 1499.00 0.00 0.00 1499.00 1 2020-08-19 2020-08-19 18:07:03.012075 2020-09-08 00:30:28.172872 2 24 PV3-V-501 2020-09-23 \N f 2692 1 2 1001 2408.42 27.58 1701.00 735.00 2 2020-08-13 2020-08-13 21:53:33.867464 2020-08-13 21:53:39.208981 1 1 PV1-V-1284 \N \N f 2693 1 21 1002 649.00 0.00 0.00 649.00 2 2020-08-13 2020-08-14 00:47:01.1859 2020-08-14 00:47:31.68141 1 14 PV3-V-489 \N \N f 2694 1 21 1002 60.00 0.00 0.00 60.00 2 2020-08-13 2020-08-14 00:48:05.777854 2020-08-14 00:48:10.633406 1 14 PV3-V-490 \N \N f 2695 1 2 1003 434.52 34.48 219.00 250.00 2 2020-08-14 2020-08-14 16:44:06.998123 2020-08-14 16:44:11.701722 1 1 PV1-V-1285 \N \N f 2696 1 2 1003 1068.00 0.00 718.00 350.00 2 2020-08-14 2020-08-14 18:08:32.9198 2020-08-14 18:08:39.34445 1 1 PV1-V-1286 \N \N f 2697 1 2 1003 459.00 0.00 229.00 230.00 2 2020-08-14 2020-08-14 18:16:54.357302 2020-08-14 18:17:18.13643 1 1 PV1-V-1287 \N \N f 2698 1 2 1003 1334.21 13.79 998.00 350.00 2 2020-08-14 2020-08-14 18:56:27.816738 2020-08-14 18:56:45.187308 1 1 PV1-V-1288 \N \N f 2699 1 2 1003 1626.62 41.38 1033.00 635.00 2 2020-08-14 2020-08-14 20:09:21.236598 2020-08-14 20:09:26.258799 1 1 PV1-V-1289 \N \N f 2715 1 2 1005 1378.00 0.00 414.00 964.00 2 2020-08-15 2020-08-15 18:53:07.92543 2020-08-15 18:53:31.807995 1 1 PV1-V-1304 \N \N f 2700 1 2 1003 799.00 0.00 0.00 799.00 1 2020-08-14 2020-08-14 21:34:59.503177 2020-08-14 21:36:39.887575 1 25 PV1-V-1290 \N \N f 2701 1 2 1003 1815.24 82.76 1298.00 600.00 2 2020-08-14 2020-08-14 21:41:00.580886 2020-08-14 21:41:06.476923 1 1 PV1-V-1291 \N \N f 2702 1 2 1003 799.00 0.00 119.00 680.00 2 2020-08-14 2020-08-14 21:42:58.061186 2020-08-14 21:43:02.228127 1 25 PV1-V-1292 \N \N f 2703 1 2 1003 1499.00 0.00 0.00 1499.00 2 2020-08-14 2020-08-14 21:45:10.420624 2020-08-14 21:45:25.508424 1 25 PV1-V-1293 \N \N f 2704 1 2 1003 799.00 0.00 0.00 799.00 2 2020-08-14 2020-08-14 21:51:19.838173 2020-08-14 21:51:32.88619 1 25 PV1-V-1294 \N \N f 2705 1 2 1003 857.62 41.38 599.00 300.00 2 2020-08-14 2020-08-14 21:55:05.916116 2020-08-14 21:55:09.578269 1 1 PV1-V-1295 \N \N f 2687 355 21 999 1399.00 0.00 0.00 1399.00 2 2020-08-12 2020-08-12 22:00:17.212463 2020-09-15 20:55:06.213131 2 24 PV3-V-487 2020-09-16 \N f 2707 1 21 1004 569.00 0.00 0.00 569.00 2 2020-08-14 2020-08-14 23:54:46.957287 2020-08-14 23:54:52.872483 1 14 PV3-V-491 \N \N f 2708 1 2 1005 1556.62 41.38 898.00 700.00 2 2020-08-15 2020-08-15 16:07:25.945718 2020-08-15 16:07:30.936647 1 1 PV1-V-1297 \N \N f 2709 1 2 1005 942.83 55.17 598.00 400.00 2 2020-08-15 2020-08-15 16:16:03.361507 2020-08-15 16:16:06.491139 1 1 PV1-V-1298 \N \N f 2710 1 2 1005 2085.63 41.37 1827.00 300.00 2 2020-08-15 2020-08-15 16:17:40.55869 2020-08-15 16:17:58.424397 1 1 PV1-V-1299 \N \N f 2711 1 2 1005 999.04 68.96 568.00 500.00 2 2020-08-15 2020-08-15 16:24:21.968559 2020-08-15 16:24:26.519308 1 1 PV1-V-1300 \N \N f 2712 1 2 1005 699.00 0.00 349.00 350.00 2 2020-08-15 2020-08-15 16:31:09.613715 2020-08-15 16:31:16.291971 1 1 PV1-V-1301 \N \N f 2713 1 2 1005 1547.14 75.86 823.00 800.00 2 2020-08-15 2020-08-15 17:48:07.97658 2020-08-15 17:48:12.502191 1 1 PV1-V-1302 \N \N f 2714 1 2 1005 434.52 34.48 219.00 250.00 2 2020-08-15 2020-08-15 17:48:56.898316 2020-08-15 17:49:24.36467 1 1 PV1-V-1303 \N \N f 2716 1 21 1006 1599.00 0.00 0.00 1599.00 2 2020-08-15 2020-08-15 19:04:02.374392 2020-08-15 19:04:24.529501 1 14 PV3-V-492 \N \N f 2717 1 2 1005 2996.00 0.00 1641.00 1355.00 2 2020-08-15 2020-08-15 20:11:04.219946 2020-08-15 20:11:08.589033 1 1 PV1-V-1305 \N \N f 2718 1 2 1005 976.59 72.41 524.00 525.00 2 2020-08-15 2020-08-15 21:33:05.377089 2020-08-15 21:33:10.074625 1 1 PV1-V-1306 \N \N f 2719 1 2 1005 1299.00 0.00 649.00 650.00 2 2020-08-15 2020-08-15 21:57:38.719765 2020-08-15 21:57:44.114594 1 1 PV1-V-1307 \N \N f 2720 1 2 1005 449.00 0.00 199.00 250.00 2 2020-08-15 2020-08-15 23:28:59.330727 2020-08-15 23:29:03.582601 1 1 PV1-V-1308 \N \N f 2729 359 18 1010 1499.00 0.00 0.00 1499.00 2 2020-08-18 2020-08-18 18:52:22.818961 2020-09-17 22:58:17.108169 2 12 PV3-V-495 2020-09-22 \N f 2722 1 2 1005 485.21 13.79 399.00 100.00 2 2020-08-15 2020-08-15 23:41:45.262867 2020-08-15 23:41:48.730832 1 1 PV1-V-1309 \N \N f 2723 1 2 1007 2500.44 96.55 1547.00 1049.99 2 2020-08-17 2020-08-17 16:33:56.083493 2020-08-17 16:34:05.938069 1 25 PV1-V-1310 \N \N f 2724 1 2 1007 2830.15 75.85 2356.00 550.00 2 2020-08-17 2020-08-17 16:56:06.426983 2020-08-17 16:56:10.202519 1 1 PV1-V-1311 \N \N f 2725 1 21 1008 1599.00 0.00 0.00 1599.00 2 2020-08-17 2020-08-17 19:16:11.732756 2020-08-17 19:16:58.264325 1 12 PV3-V-494 \N \N f 2727 1 2 1009 1899.00 0.00 0.00 1899.00 2 2020-08-18 2020-08-18 18:08:16.459351 2020-08-18 18:08:33.805132 1 25 PV1-V-1313 \N \N f 2728 1 2 1009 499.00 0.00 399.00 100.00 2 2020-08-18 2020-08-18 18:26:41.561145 2020-08-18 18:26:45.932169 1 1 PV1-V-1314 \N \N f 2743 362 18 1013 599.00 0.00 0.00 599.00 2 2020-08-19 2020-08-19 23:30:57.186488 2020-09-18 23:03:16.9483 2 14 PV3-V-506 2020-09-23 \N f 2730 1 18 1010 947.41 151.59 0.00 1099.00 2 2020-08-18 2020-08-18 21:37:32.054919 2020-08-18 21:39:54.449711 1 12 PV3-V-496 \N \N f 2731 1 18 1010 899.00 0.00 350.00 549.00 2 2020-08-18 2020-08-18 22:24:24.349703 2020-08-18 22:24:28.327511 1 14 PV3-V-497 \N \N f 2732 1 18 1010 559.00 0.00 0.00 559.00 1 2020-08-18 2020-08-18 22:38:09.935553 2020-08-18 22:39:24.040895 1 14 PV3-V-498 \N \N f 2733 1 18 1010 858.00 0.00 0.00 858.00 2 2020-08-18 2020-08-18 22:45:21.622737 2020-08-18 22:45:32.056792 1 14 PV3-V-499 \N \N f 2734 1 18 1010 1599.00 0.00 0.00 1599.00 2 2020-08-18 2020-08-18 23:10:41.336672 2020-08-18 23:10:47.086037 1 24 PV3-V-500 \N \N f 2735 1 2 1011 1599.00 0.00 0.00 1599.00 2 2020-08-18 2020-08-19 00:03:06.788293 2020-08-19 00:03:10.977054 1 25 PV1-V-1315 \N \N f 2706 4 2 1003 549.00 0.00 0.00 549.00 2 2020-08-14 2020-08-14 22:01:42.952357 2020-09-15 16:47:39.381748 2 1 PV1-V-1296 2020-09-18 \N f 2737 1 2 1012 1399.00 0.00 699.00 700.00 2 2020-08-19 2020-08-19 21:15:07.034218 2020-08-19 21:15:16.518475 1 1 PV1-V-1316 \N \N f 2738 1 2 1012 434.52 34.48 219.00 250.00 2 2020-08-19 2020-08-19 21:25:16.689992 2020-08-19 21:25:20.641029 1 1 PV1-V-1317 \N \N f 2739 1 18 1013 560.00 0.00 280.00 280.00 2 2020-08-19 2020-08-19 22:27:17.170374 2020-08-19 22:27:29.276383 1 14 PV3-V-502 \N \N f 2740 1 18 1013 2616.00 0.00 0.00 2616.00 2 2020-08-19 2020-08-19 22:37:15.332747 2020-08-19 22:37:56.149769 1 14 PV3-V-503 \N \N f 2741 1 18 1013 799.00 0.00 0.00 799.00 2 2020-08-19 2020-08-19 22:44:22.261289 2020-08-19 22:44:56.631066 1 14 PV3-V-504 \N \N f 2742 1 18 1013 699.00 0.00 349.00 350.00 2 2020-08-19 2020-08-19 23:29:49.82265 2020-08-19 23:30:05.633612 1 14 PV3-V-505 \N \N f 2726 154 2 1007 799.00 0.00 0.00 799.00 2 2020-08-17 2020-08-17 19:36:30.692971 2020-12-31 20:37:29.93838 2 1 PV1-V-1312 2020-09-21 \N f 2691 356 2 1001 3098.00 0.00 0.00 3098.00 1 2020-08-13 2020-08-13 20:16:48.615217 2020-09-04 22:31:18.860694 2 1 PV1-V-1283 2020-09-17 \N f 2745 1 2 1012 2141.83 55.17 1347.00 850.00 2 2020-08-19 2020-08-19 23:58:09.722965 2020-08-19 23:58:14.632958 1 1 PV1-V-1318 \N \N f 2746 1 18 1013 110.00 0.00 0.00 110.00 2 2020-08-19 2020-08-19 23:58:58.913915 2020-08-19 23:59:10.112353 1 14 PV3-V-508 \N \N f 2747 1 2 1014 1112.48 45.52 578.00 580.00 2 2020-08-20 2020-08-20 19:21:28.044316 2020-08-20 19:21:34.794072 1 1 PV1-V-1319 \N \N f 2748 1 18 1015 1289.83 55.17 299.00 1046.00 2 2020-08-20 2020-08-20 23:10:48.381751 2020-08-20 23:10:55.865558 1 14 PV3-V-509 \N \N f 2744 363 18 1013 3298.00 0.00 0.00 3298.00 2 2020-08-19 2020-08-19 23:43:48.899837 2020-09-02 19:11:29.425729 2 14 PV3-V-507 2020-09-23 \N f 2749 1 2 1016 899.00 0.00 349.00 550.00 2 2020-08-21 2020-08-21 21:18:49.06543 2020-08-21 21:19:27.150822 1 1 PV1-V-1320 \N \N f 2750 1 21 1017 1499.00 0.00 0.00 1499.00 2 2020-08-21 2020-08-21 21:47:03.111894 2020-08-21 21:47:08.079323 1 12 PV3-V-510 \N \N f 2751 1 21 1017 1499.00 0.00 0.00 1499.00 2 2020-08-21 2020-08-21 22:59:40.575707 2020-08-21 23:00:04.071322 1 12 PV3-V-511 \N \N f 2756 365 21 1019 1499.00 0.00 0.00 1499.00 2 2020-08-22 2020-08-23 00:16:42.993549 2020-09-19 19:41:30.682101 2 12 PV3-V-514 2020-09-26 \N f 2753 1 2 1018 899.00 0.00 449.00 450.00 2 2020-08-22 2020-08-22 17:01:56.479763 2020-08-22 17:02:01.308163 1 1 PV1-V-1321 \N \N f 2754 1 2 1018 1783.56 103.44 1137.00 750.00 2 2020-08-22 2020-08-22 18:16:40.028006 2020-08-22 18:16:44.44031 1 1 PV1-V-1322 \N \N f 2755 1 21 1019 899.00 0.00 0.00 899.00 2 2020-08-22 2020-08-22 20:54:56.107269 2020-08-22 20:55:34.882442 1 12 PV3-V-513 \N \N f 2757 1 2 1020 948.00 0.00 448.00 500.00 2 2020-08-24 2020-08-24 16:18:15.638423 2020-08-24 16:18:20.049974 1 1 PV1-V-1323 \N \N f 2758 1 18 1021 369.00 0.00 0.00 369.00 2 2020-08-24 2020-08-24 18:24:19.499084 2020-08-24 18:24:41.761708 1 14 PV3-V-515 \N \N f 2759 1 2 1020 3098.00 0.00 463.00 2635.00 2 2020-08-24 2020-08-24 19:34:26.101863 2020-08-24 19:34:51.127934 1 1 PV1-V-1324 \N \N f 2760 1 2 1020 699.00 0.00 349.00 350.00 2 2020-08-24 2020-08-24 20:39:36.236334 2020-08-24 20:39:45.903478 1 1 PV1-V-1325 \N \N f 2761 1 2 1020 1169.00 0.00 584.00 585.00 2 2020-08-24 2020-08-24 21:11:34.903133 2020-08-24 21:11:41.368888 1 1 PV1-V-1326 \N \N f 2762 1 2 1020 599.00 0.00 349.00 250.00 2 2020-08-24 2020-08-24 21:37:58.798618 2020-08-24 21:38:04.006424 1 1 PV1-V-1327 \N \N f 2763 1 18 1021 678.00 0.00 50.00 628.00 2 2020-08-24 2020-08-24 22:04:43.623317 2020-08-24 22:05:15.191431 1 14 PV3-V-516 \N \N f 2764 1 18 1021 1659.00 0.00 0.00 1659.00 2 2020-08-24 2020-08-24 22:54:56.860922 2020-08-24 22:55:06.328603 1 14 PV3-V-517 \N \N f 2765 1 18 1021 419.00 0.00 169.00 250.00 2 2020-08-24 2020-08-25 00:47:09.489758 2020-08-25 00:47:13.650622 1 14 PV3-V-518 \N \N f 2766 1 18 1021 42.24 6.76 0.00 49.00 2 2020-08-24 2020-08-25 00:49:31.421866 2020-08-25 00:49:35.397731 1 14 PV3-V-519 \N \N f 2767 1 18 1023 6352.44 220.55 1806.00 4766.99 2 2020-08-25 2020-08-25 21:57:11.171159 2020-08-25 21:57:19.464753 1 14 PV3-V-520 \N \N f 2768 1 18 1023 1674.00 124.00 899.00 899.00 2 2020-08-25 2020-08-25 22:26:41.573055 2020-08-25 22:27:00.199556 1 14 PV3-V-521 \N \N f 2769 1 2 1022 1349.72 48.28 698.00 700.00 2 2020-08-25 2020-08-25 22:50:33.877817 2020-08-25 22:50:40.332061 1 1 PV1-V-1328 \N \N f 2770 1 18 1023 1459.00 0.00 349.00 1110.00 2 2020-08-25 2020-08-25 22:59:28.307712 2020-08-25 23:00:18.124096 1 14 PV3-V-522 \N \N f 2771 1 2 1022 1499.00 0.00 749.00 750.00 2 2020-08-25 2020-08-25 23:14:01.633824 2020-08-25 23:14:06.538163 1 1 PV1-V-1329 \N \N f 2772 1 18 1023 1499.00 0.00 749.00 750.00 2 2020-08-25 2020-08-25 23:50:07.649822 2020-08-25 23:50:15.135436 1 14 PV3-V-523 \N \N f 2773 1 18 1023 1899.00 0.00 284.00 1615.00 2 2020-08-25 2020-08-26 00:48:46.71173 2020-08-26 00:48:58.728642 1 14 PV3-V-524 \N \N f 2774 1 18 1023 1499.00 0.00 749.00 750.00 2 2020-08-25 2020-08-26 01:19:09.311367 2020-08-26 01:19:16.946741 1 14 PV3-V-525 \N \N f 2775 1 21 1025 494.00 0.00 0.00 494.00 2 2020-08-26 2020-08-26 18:32:54.510878 2020-08-26 18:33:00.198678 1 12 PV3-V-526 \N \N f 2776 1 21 1025 799.00 0.00 0.00 799.00 2 2020-08-26 2020-08-26 19:15:28.413823 2020-08-26 19:15:57.229615 1 12 PV3-V-527 \N \N f 2777 1 2 1024 2256.66 110.34 1567.00 800.00 2 2020-08-26 2020-08-26 20:26:35.211849 2020-08-26 20:26:39.681861 1 1 PV1-V-1330 \N \N f 2778 1 21 1025 189.00 0.00 0.00 189.00 2 2020-08-26 2020-08-26 21:59:40.117709 2020-08-26 21:59:50.654772 1 12 PV3-V-528 \N \N f 2779 1 21 1025 6196.00 0.00 0.00 6196.00 2 2020-08-26 2020-08-26 23:41:58.773196 2020-08-26 23:42:40.377753 1 24 PV3-V-529 \N \N f 2780 1 21 1025 1499.00 0.00 0.00 1499.00 2 2020-08-26 2020-08-26 23:44:32.80413 2020-08-26 23:45:12.421624 1 24 PV3-V-530 \N \N f 2781 1 21 1025 1667.00 0.00 548.00 1119.00 2 2020-08-26 2020-08-27 00:12:18.641597 2020-08-27 00:12:26.503251 1 24 PV3-V-531 \N \N f 2782 1 21 1025 999.00 0.00 0.00 999.00 2 2020-08-26 2020-08-27 01:17:41.952468 2020-08-27 01:17:51.770395 1 12 PV3-V-532 \N \N f 2783 1 2 1026 769.00 0.00 369.00 400.00 2 2020-08-27 2020-08-27 22:18:46.611761 2020-08-27 22:18:54.968289 1 1 PV1-V-1331 \N \N f 2784 1 2 1026 1268.00 0.00 668.00 600.00 2 2020-08-27 2020-08-27 22:29:39.861619 2020-08-27 22:30:08.498814 1 1 PV1-V-1332 \N \N f 2785 1 2 1026 479.00 0.00 229.00 250.00 2 2020-08-27 2020-08-27 22:58:53.18834 2020-08-27 22:58:57.278428 1 1 PV1-V-1333 \N \N f 2786 1 2 1026 899.00 0.00 0.00 899.00 2 2020-08-27 2020-08-27 23:18:17.887953 2020-08-27 23:18:57.586028 1 1 PV1-V-1334 \N \N f 2787 1 18 1027 1599.00 0.00 0.00 1599.00 2 2020-08-27 2020-08-28 00:15:30.153813 2020-08-28 00:16:38.625644 1 24 PV3-V-533 \N \N f 2788 1 18 1027 420.00 0.00 0.00 420.00 2 2020-08-27 2020-08-28 00:25:58.405102 2020-08-28 00:27:15.279686 1 14 PV3-V-534 \N \N f 2789 1 18 1027 1299.00 0.00 0.00 1299.00 2 2020-08-27 2020-08-28 01:02:33.838338 2020-08-28 01:04:15.258102 1 14 PV3-V-535 \N \N f 2790 1 2 1028 729.00 0.00 379.00 350.00 2 2020-08-28 2020-08-28 17:01:49.993485 2020-08-28 17:01:54.529801 1 1 PV1-V-1335 \N \N f 2791 1 18 1029 1998.00 0.00 0.00 1998.00 2 2020-08-28 2020-08-28 18:21:56.236665 2020-08-28 18:22:01.551324 1 14 PV3-V-536 \N \N f 2792 1 18 1029 179.00 0.00 0.00 179.00 2 2020-08-28 2020-08-28 18:40:30.817288 2020-08-28 18:40:41.115964 1 14 PV3-V-537 \N \N f 2793 1 18 1029 999.00 0.00 0.00 999.00 1 2020-08-28 2020-08-28 19:07:20.286618 2020-08-28 19:09:53.38009 1 14 PV3-V-538 \N \N f 2794 1 18 1029 1059.00 0.00 0.00 1059.00 2 2020-08-28 2020-08-28 19:10:44.257474 2020-08-28 19:12:32.6994 1 14 PV3-V-539 \N \N f 2795 1 18 1029 2098.00 0.00 0.00 2098.00 2 2020-08-28 2020-08-28 19:15:56.424602 2020-08-28 19:17:13.18658 1 14 PV3-V-540 \N \N f 2796 1 2 1028 1109.03 68.96 489.00 688.99 2 2020-08-28 2020-08-28 19:29:43.314345 2020-08-28 19:29:51.326526 1 1 PV1-V-1336 \N \N f 2797 1 18 1029 1599.00 0.00 34.00 1565.00 2 2020-08-28 2020-08-28 19:35:17.805971 2020-08-28 19:35:25.709054 1 14 PV3-V-541 \N \N f 2798 1 18 1029 2307.00 0.00 807.00 1500.00 2 2020-08-28 2020-08-28 21:20:16.435422 2020-08-28 21:20:31.190942 1 14 PV3-V-542 \N \N f 2799 1 18 1029 999.00 0.00 0.00 999.00 2 2020-08-28 2020-08-28 22:35:39.198196 2020-08-28 22:35:47.874182 1 24 PV3-V-543 \N \N f 2804 1 18 1029 1499.00 0.00 0.00 1499.00 2 2020-08-28 2020-08-29 00:48:05.849708 2020-08-29 00:48:59.761032 1 24 PV3-V-548 \N \N f 2801 1 18 1029 869.00 0.00 369.00 500.00 2 2020-08-28 2020-08-28 23:55:54.221255 2020-08-28 23:56:33.437999 1 14 PV3-V-545 \N \N f 2800 1 18 1029 489.00 0.00 239.00 250.00 1 2020-08-28 2020-08-28 23:40:49.519107 2020-08-29 00:28:00.874487 1 14 PV3-V-544 \N \N f 2802 1 18 1029 589.00 0.00 339.00 250.00 2 2020-08-28 2020-08-29 00:29:37.308174 2020-08-29 00:29:48.629296 1 14 PV3-V-546 \N \N f 2803 1 18 1029 3664.72 132.28 240.00 3557.00 2 2020-08-28 2020-08-29 00:43:51.719659 2020-08-29 00:45:05.164903 1 24 PV3-V-547 \N \N f 2805 1 2 1030 3298.00 0.00 0.00 3298.00 2 2020-08-29 2020-08-29 17:19:43.468988 2020-08-29 17:19:51.307631 1 1 PV1-V-1337 \N \N f 2806 1 2 1030 1499.00 0.00 0.00 1499.00 2 2020-08-29 2020-08-29 17:41:33.92866 2020-08-29 17:41:38.442773 1 1 PV1-V-1338 \N \N f 2807 1 2 1030 1070.42 27.58 898.00 200.00 2 2020-08-29 2020-08-29 18:04:55.779607 2020-08-29 18:05:03.671846 1 1 PV1-V-1339 \N \N f 2808 1 2 1030 1299.00 0.00 649.00 650.00 2 2020-08-29 2020-08-29 19:30:06.645922 2020-08-29 19:30:11.746337 1 1 PV1-V-1340 \N \N f 2809 1 21 1031 120.00 0.00 0.00 120.00 2 2020-08-29 2020-08-29 20:49:36.848469 2020-08-29 20:49:45.281073 1 14 PV3-V-549 \N \N f 2810 1 21 1031 1799.00 0.00 0.00 1799.00 2 2020-08-29 2020-08-29 22:05:02.308923 2020-08-29 22:05:15.368846 1 24 PV3-V-550 \N \N f 2811 1 2 1030 1099.69 99.31 479.00 720.00 2 2020-08-29 2020-08-29 22:07:29.608122 2020-08-29 22:07:35.607021 1 1 PV1-V-1341 \N \N f 2812 1 2 1030 1499.00 0.00 0.00 1499.00 2 2020-08-29 2020-08-29 22:26:09.133859 2020-08-29 22:26:19.248024 1 1 PV1-V-1342 \N \N f 2752 364 21 1017 2998.00 0.00 0.00 2998.00 2 2020-08-21 2020-08-21 23:02:33.330844 2020-09-09 00:32:14.465202 2 12 PV3-V-512 2020-09-25 \N f 2813 1 2 1030 855.21 13.79 769.00 100.00 2 2020-08-29 2020-08-29 22:33:35.687629 2020-08-29 22:33:39.64655 1 1 PV1-V-1343 \N \N f 2814 1 2 1030 1998.00 0.00 998.00 1000.00 2 2020-08-29 2020-08-29 23:30:06.349008 2020-08-29 23:30:18.039338 1 1 PV1-V-1344 \N \N f 2870 374 25 1047 1799.00 0.00 0.00 1799.00 2 2020-09-08 2020-09-08 16:34:42.535217 2020-09-10 22:50:30.168762 2 25 PV1-V-1365 2020-10-13 \N f 2816 1 2 1032 1499.00 0.00 0.00 1499.00 2 2020-08-31 2020-08-31 21:06:58.834587 2020-08-31 21:07:07.817494 1 25 PV1-V-1345 \N \N f 2817 1 18 1033 1948.00 0.00 0.00 1948.00 2 2020-08-31 2020-08-31 21:18:36.55263 2020-08-31 21:19:09.626941 1 24 PV3-V-552 \N \N f 2822 370 18 1033 999.00 0.00 0.00 999.00 2 2020-08-31 2020-08-31 21:35:30.092884 2020-09-15 00:45:04.034947 2 24 PV3-V-556 2020-10-05 \N f 2836 363 21 1038 1599.00 0.00 0.00 1599.00 2 2020-09-02 2020-09-02 19:17:53.061295 2020-09-19 19:38:12.674098 2 12 PV3-V-566 2020-10-07 \N f 2864 1 21 1044 299.00 0.00 0.00 299.00 2 2020-09-05 2020-09-05 20:04:56.735359 2020-09-05 20:05:19.525121 1 12 PV3-V-582 \N \N f 2842 1 21 1041 139.00 0.00 0.00 139.00 2 2020-09-03 2020-09-03 20:02:46.13114 2020-09-03 20:02:52.948939 1 12 PV3-V-569 \N \N f 2821 370 18 1033 999.00 0.00 0.00 999.00 1 2020-08-31 2020-08-31 21:34:14.960539 2020-08-31 21:34:59.114678 1 24 PV3-V-555 \N \N f 2845 373 21 1041 3189.66 510.35 0.00 3700.01 2 2020-09-03 2020-09-03 21:18:34.503382 2020-09-15 01:01:08.84389 2 24 PV3-V-570 2020-10-08 \N f 2823 371 18 1034 2998.00 0.00 0.00 2998.00 1 2020-09-01 2020-09-01 18:38:30.717617 2020-09-01 18:38:51.047196 1 24 PV3-V-557 \N \N f 2831 194 18 1036 1378.45 220.55 0.00 1599.00 2 2020-09-01 2020-09-02 01:32:53.082784 2020-10-23 23:02:19.184629 2 14 PV3-V-563 2020-10-06 \N f 2825 1 2 1035 527.62 41.38 269.00 300.00 2 2020-09-01 2020-09-01 22:04:17.152307 2020-09-01 22:04:46.919704 1 1 PV1-V-1347 \N \N f 2826 1 18 1034 258.00 0.00 0.00 258.00 2 2020-09-01 2020-09-01 22:05:59.748021 2020-09-01 22:06:49.683338 1 14 PV3-V-559 \N \N f 2827 1 2 1035 899.00 0.00 0.00 899.00 2 2020-09-01 2020-09-01 22:56:41.619708 2020-09-01 22:56:46.169658 1 1 PV1-V-1348 \N \N f 2828 1 18 1034 869.00 0.00 0.00 869.00 2 2020-09-01 2020-09-01 23:28:37.64939 2020-09-01 23:29:06.760766 1 14 PV3-V-560 \N \N f 2829 1 18 1034 1499.00 0.00 0.00 1499.00 2 2020-09-01 2020-09-01 23:49:16.961543 2020-09-01 23:49:24.174096 1 14 PV3-V-561 \N \N f 2843 1 9 1040 1598.00 0.00 349.00 1249.00 2 2020-09-03 2020-09-03 21:01:41.403276 2020-09-03 21:01:55.330018 1 1 PV1-V-1354 \N \N f 2830 372 18 1036 1378.45 220.55 0.00 1599.00 1 2020-09-01 2020-09-02 01:31:40.406218 2020-09-02 01:32:04.734232 1 14 PV3-V-562 \N \N f 2847 159 21 1041 1955.62 41.38 299.00 1698.00 2 2020-09-03 2020-09-03 21:32:38.238158 2020-11-24 01:56:56.366785 2 12 PV3-V-572 2020-10-08 \N f 2832 1 2 1037 139.00 0.00 0.00 139.00 2 2020-09-02 2020-09-02 17:28:28.282617 2020-09-02 17:28:32.822427 1 1 PV1-V-1349 \N \N f 2833 1 2 1037 957.62 41.38 699.00 300.00 2 2020-09-02 2020-09-02 18:44:26.421565 2020-09-02 18:44:31.366427 1 1 PV1-V-1350 \N \N f 2834 363 21 1038 1599.00 0.00 0.00 1599.00 1 2020-09-02 2020-09-02 19:16:40.872939 2020-09-02 19:16:53.425002 2 12 PV3-V-564 2020-10-07 \N f 2835 1 21 1038 189.00 0.00 0.00 189.00 2 2020-09-02 2020-09-02 19:17:06.664395 2020-09-02 19:17:14.063416 1 14 PV3-V-565 \N \N f 2824 371 18 1034 2998.00 0.00 0.00 2998.00 2 2020-09-01 2020-09-01 18:39:19.081492 2020-10-01 19:06:29.925725 2 14 PV3-V-558 2020-10-06 \N f 2837 1 21 1038 3398.00 0.00 1599.00 1799.00 2 2020-09-02 2020-09-02 20:13:11.574992 2020-09-02 20:13:21.819511 1 24 PV3-V-567 \N \N f 2838 1 2 1037 699.00 0.00 349.00 350.00 2 2020-09-02 2020-09-02 20:19:28.885056 2020-09-02 20:19:34.850078 1 1 PV1-V-1351 \N \N f 2839 1 21 1039 1399.00 0.00 0.00 1399.00 2 2020-09-02 2020-09-03 01:09:59.778016 2020-09-03 01:10:12.111808 1 12 PV3-V-568 \N \N f 2840 1 2 1040 410.00 0.00 0.00 410.00 2 2020-09-03 2020-09-03 16:26:21.232079 2020-09-03 16:26:40.54252 1 1 PV1-V-1352 \N \N f 2841 1 2 1040 1499.00 0.00 0.00 1499.00 2 2020-09-03 2020-09-03 19:58:53.977226 2020-09-03 19:59:21.983702 1 25 PV1-V-1353 \N \N f 2844 1 9 1040 699.00 0.00 0.00 699.00 2 2020-09-03 2020-09-03 21:07:21.042037 2020-09-03 21:07:33.632029 1 25 PV1-V-1355 \N \N f 2819 369 2 1032 1499.00 0.00 0.00 1499.00 2 2020-08-31 2020-08-31 21:31:15.168557 2020-09-15 21:30:16.068961 2 1 PV1-V-1346 2020-10-05 \N f 2846 159 21 1041 1398.00 0.00 0.00 1398.00 1 2020-09-03 2020-09-03 21:30:42.149456 2020-09-03 21:31:15.409981 2 12 PV3-V-571 2020-10-08 \N f 2848 1 21 1041 278.00 0.00 0.00 278.00 2 2020-09-03 2020-09-03 21:50:06.731899 2020-09-03 21:50:26.427995 1 12 PV3-V-573 \N \N f 2849 1 21 1041 869.00 0.00 369.00 500.00 2 2020-09-03 2020-09-03 21:54:31.289105 2020-09-03 21:54:48.646095 1 12 PV3-V-574 \N \N f 2850 1 9 1040 1738.00 0.00 0.00 1738.00 2 2020-09-03 2020-09-03 22:54:58.156631 2020-09-03 22:55:49.493318 1 1 PV1-V-1356 \N \N f 2851 1 21 1041 1599.00 0.00 0.00 1599.00 2 2020-09-03 2020-09-03 23:11:29.129708 2020-09-03 23:12:12.52724 1 24 PV3-V-575 \N \N f 2852 1 21 1041 999.00 0.00 0.00 999.00 2 2020-09-03 2020-09-03 23:59:45.362631 2020-09-03 23:59:56.425546 1 12 PV3-V-576 \N \N f 2853 1 21 1041 849.00 0.00 349.00 500.00 2 2020-09-03 2020-09-04 00:26:48.265781 2020-09-04 00:27:00.874421 1 12 PV3-V-577 \N \N f 2854 1 21 1043 2898.00 0.00 50.00 2848.00 2 2020-09-04 2020-09-04 18:38:19.098382 2020-09-04 18:38:31.952233 1 24 PV3-V-578 \N \N f 2855 1 2 1042 699.00 0.00 499.00 200.00 2 2020-09-04 2020-09-04 18:46:36.440321 2020-09-04 18:46:40.669699 1 1 PV1-V-1357 \N \N f 2856 1 2 1042 1799.00 0.00 0.00 1799.00 2 2020-09-04 2020-09-04 19:06:48.970754 2020-09-04 19:07:05.213747 1 1 PV1-V-1358 \N \N f 2857 1 2 1042 999.00 0.00 0.00 999.00 2 2020-09-04 2020-09-04 19:45:28.606986 2020-09-04 19:45:43.583133 1 25 PV1-V-1359 \N \N f 2858 1 21 1043 849.00 0.00 349.00 500.00 2 2020-09-04 2020-09-04 20:00:49.111396 2020-09-04 20:01:33.320215 1 12 PV3-V-579 \N \N f 2859 1 21 1043 1599.00 0.00 0.00 1599.00 2 2020-09-04 2020-09-04 20:24:48.282594 2020-09-04 20:25:31.846922 1 12 PV3-V-580 \N \N f 2820 368 18 1033 999.00 0.00 0.00 999.00 2 2020-08-31 2020-08-31 21:31:22.280944 2020-09-04 21:45:14.091151 2 24 PV3-V-554 2020-10-05 \N f 2860 1 21 1043 1799.00 0.00 0.00 1799.00 2 2020-09-04 2020-09-04 22:43:26.057453 2020-09-04 22:43:42.888825 1 12 PV3-V-581 \N \N f 2861 1 2 1042 699.00 0.00 0.00 699.00 2 2020-09-04 2020-09-04 23:40:08.990733 2020-09-04 23:40:18.538672 1 1 PV1-V-1360 \N \N f 2862 1 2 1042 1599.00 0.00 0.00 1599.00 2 2020-09-04 2020-09-04 23:42:01.857466 2020-09-04 23:42:37.266036 1 1 PV1-V-1361 \N \N f 2863 1 2 1042 999.00 0.00 0.00 999.00 2 2020-09-04 2020-09-04 23:46:29.825254 2020-09-04 23:46:33.621032 1 1 PV1-V-1362 \N \N f 2865 1 2 1045 1191.41 107.59 519.00 780.00 2 2020-09-07 2020-09-07 16:52:18.353754 2020-09-07 16:52:23.935172 1 1 PV1-V-1363 \N \N f 2866 1 21 1046 999.00 0.00 0.00 999.00 2 2020-09-07 2020-09-07 23:12:54.327094 2020-09-07 23:13:10.059908 1 12 PV3-V-583 \N \N f 2867 1 21 1046 1799.00 0.00 0.00 1799.00 2 2020-09-07 2020-09-08 00:24:35.438544 2020-09-08 00:25:05.902724 1 12 PV3-V-584 \N \N f 2868 1 21 1046 1399.00 0.00 0.00 1399.00 2 2020-09-07 2020-09-08 00:30:51.721324 2020-09-08 00:31:07.752576 1 14 PV3-V-585 \N \N f 2869 374 25 1047 1799.00 0.00 0.00 1799.00 1 2020-09-08 2020-09-08 16:33:44.071428 2020-09-08 16:33:49.780152 2 1 PV1-V-1364 2020-10-13 \N f 2871 375 25 1047 1699.00 0.00 0.00 1699.00 2 2020-09-08 2020-09-08 16:38:19.776935 2020-09-14 19:07:44.384085 2 25 PV1-V-1366 2020-10-13 \N f 2818 367 18 1033 1499.00 0.00 0.00 1499.00 2 2020-08-31 2020-08-31 21:29:14.354936 2020-09-15 00:22:03.004111 2 24 PV3-V-553 2020-10-05 \N f 2872 1 25 1047 799.00 0.00 0.00 799.00 2 2020-09-08 2020-09-08 19:28:57.445577 2020-09-08 19:30:34.883019 1 16 PV1-V-1367 \N \N f 2873 1 25 1049 85.34 13.65 0.00 98.99 2 2020-09-08 2020-09-08 20:25:55.548138 2020-09-08 20:26:06.425115 1 16 PV1-V-1368 \N \N f 2874 1 2 1049 1099.00 0.00 0.00 1099.00 2 2020-09-08 2020-09-08 21:23:30.755874 2020-09-08 21:23:49.119796 1 1 PV1-V-1369 \N \N f 2875 1 21 1048 2897.00 0.00 149.00 2748.00 2 2020-09-08 2020-09-08 23:27:58.374334 2020-09-08 23:28:12.410113 1 24 PV3-V-586 \N \N f 2876 1 21 1048 1088.00 0.00 0.00 1088.00 2 2020-09-08 2020-09-09 01:02:27.703922 2020-09-09 01:02:32.900441 1 23 PV3-V-587 \N \N f 2815 366 21 1031 1599.00 0.00 0.00 1599.00 2 2020-08-29 2020-08-30 00:37:35.090778 2020-09-09 16:18:41.013496 2 24 PV3-V-551 2020-10-03 \N f 2877 1 25 1049 549.00 0.00 0.00 549.00 2 2020-09-08 2020-09-09 05:53:37.7945 2020-09-09 05:53:54.508377 1 16 PV1-V-1370 \N \N f 2878 167 2 1050 1699.00 0.00 0.00 1699.00 1 2020-09-09 2020-09-09 16:42:07.086472 2020-09-09 16:47:57.92354 2 1 PV1-V-1371 2020-10-14 \N f 2906 377 18 1055 299.00 0.00 0.00 299.00 2 2020-09-11 2020-09-11 20:38:53.198787 2020-12-03 23:54:27.985466 0 14 PV3-V-605 \N \N f 2880 1 2 1050 1327.00 0.00 0.00 1327.00 2 2020-09-09 2020-09-09 17:58:11.84582 2020-09-09 18:07:09.925162 1 1 PV1-V-1373 \N \N f 2931 385 18 1061 999.00 0.00 0.00 999.00 2 2020-09-15 2020-09-15 18:49:08.576249 2020-10-15 20:45:02.359606 2 24 PV3-V-621 2020-10-20 \N f 2882 1 2 1050 1347.17 100.83 218.00 1230.00 2 2020-09-09 2020-09-09 20:25:40.583509 2020-09-09 20:25:52.469659 1 25 PV1-V-1375 \N \N f 2883 1 2 1050 529.00 0.00 0.00 529.00 2 2020-09-09 2020-09-09 20:58:55.773205 2020-09-09 20:59:04.769026 1 1 PV1-V-1376 \N \N f 2884 1 21 1051 1919.00 0.00 0.00 1919.00 2 2020-09-09 2020-09-09 21:52:41.53086 2020-09-09 21:52:53.606822 1 14 PV3-V-588 \N \N f 2885 1 21 1051 69.00 0.00 0.00 69.00 2 2020-09-09 2020-09-09 22:18:11.521724 2020-09-09 22:18:30.156892 1 12 PV3-V-589 \N \N f 2886 1 21 1051 689.00 0.00 0.00 689.00 2 2020-09-09 2020-09-09 23:27:31.274739 2020-09-09 23:27:42.920917 1 14 PV3-V-590 \N \N f 2887 1 21 1051 119.00 0.00 0.00 119.00 2 2020-09-09 2020-09-09 23:33:02.610915 2020-09-09 23:33:11.855158 1 14 PV3-V-591 \N \N f 2904 380 18 1055 1098.00 0.00 0.00 1098.00 2 2020-09-11 2020-09-11 20:36:27.634721 2020-12-23 18:29:11.779245 0 14 PV3-V-604 \N \N f 2889 1 21 1051 1499.00 0.00 0.00 1499.00 2 2020-09-09 2020-09-09 23:59:29.023021 2020-09-09 23:59:40.796928 1 14 PV3-V-593 \N \N f 2890 1 21 1051 1499.00 0.00 0.00 1499.00 2 2020-09-09 2020-09-10 00:25:13.769659 2020-09-10 00:27:55.913406 1 14 PV3-V-594 \N \N f 2891 1 21 1051 699.00 0.00 0.00 699.00 2 2020-09-09 2020-09-10 01:04:52.095934 2020-09-10 01:05:01.899479 1 14 PV3-V-595 \N \N f 2892 1 18 1052 999.00 0.00 0.00 999.00 2 2020-09-10 2020-09-10 19:25:48.814329 2020-09-10 19:25:57.800221 1 14 PV3-V-596 \N \N f 2893 1 2 1053 1628.00 0.00 0.00 1628.00 2 2020-09-10 2020-09-10 19:38:59.951659 2020-09-10 19:39:06.588102 1 1 PV1-V-1377 \N \N f 2894 1 2 1053 189.00 0.00 0.00 189.00 2 2020-09-10 2020-09-10 23:10:44.093731 2020-09-10 23:10:48.182252 1 1 PV1-V-1378 \N \N f 2895 1 2 1053 1499.00 0.00 0.00 1499.00 2 2020-09-10 2020-09-10 23:49:40.830402 2020-09-10 23:50:05.35135 1 1 PV1-V-1379 \N \N f 2896 1 18 1052 1641.24 6.76 0.00 1648.00 2 2020-09-10 2020-09-11 00:45:03.754144 2020-09-11 00:45:10.263166 1 14 PV3-V-597 \N \N f 2897 1 18 1052 899.00 0.00 300.00 599.00 2 2020-09-10 2020-09-11 01:02:41.94547 2020-09-11 01:03:12.781445 1 14 PV3-V-598 \N \N f 2898 1 18 1052 1499.00 0.00 0.00 1499.00 1 2020-09-10 2020-09-11 01:13:26.943863 2020-09-11 01:13:33.514852 1 14 PV3-V-599 \N \N f 2899 1 18 1052 1499.00 0.00 0.00 1499.00 2 2020-09-10 2020-09-11 01:14:58.081633 2020-09-11 01:15:26.227769 1 14 PV3-V-600 \N \N f 2900 1 2 1054 699.00 0.00 0.00 699.00 2 2020-09-11 2020-09-11 16:52:26.068915 2020-09-11 16:52:30.770235 1 1 PV1-V-1380 \N \N f 2901 1 18 1055 799.00 0.00 0.00 799.00 2 2020-09-11 2020-09-11 20:31:58.297618 2020-09-11 20:32:02.590883 1 14 PV3-V-601 \N \N f 2902 378 18 1055 1098.00 0.00 0.00 1098.00 1 2020-09-11 2020-09-11 20:34:22.480679 2020-09-11 20:34:39.515903 2 14 PV3-V-602 2020-10-16 \N f 2903 380 18 1055 1098.00 0.00 0.00 1098.00 1 2020-09-11 2020-09-11 20:35:54.439086 2020-09-11 20:36:00.709527 1 14 PV3-V-603 \N \N f 2907 1 2 1054 1178.00 0.00 0.00 1178.00 2 2020-09-11 2020-09-11 21:43:22.756375 2020-09-11 21:43:29.86525 1 1 PV1-V-1382 \N \N f 2908 1 18 1055 1198.00 0.00 0.00 1198.00 2 2020-09-11 2020-09-11 22:14:44.680581 2020-09-11 22:16:14.553768 1 14 PV3-V-606 \N \N f 2909 1 18 1055 399.00 0.00 0.00 399.00 2 2020-09-11 2020-09-11 22:22:58.315911 2020-09-11 22:23:37.384033 1 14 PV3-V-607 \N \N f 2910 1 18 1055 999.00 0.00 0.00 999.00 2 2020-09-11 2020-09-11 23:31:43.741136 2020-09-11 23:31:54.866673 1 14 PV3-V-608 \N \N f 2911 1 2 1056 969.00 0.00 0.00 969.00 2 2020-09-12 2020-09-12 18:24:54.833077 2020-09-12 18:25:29.675619 1 1 PV1-V-1383 \N \N f 2912 381 18 1057 999.00 0.00 0.00 999.00 1 2020-09-12 2020-09-12 20:34:08.69019 2020-09-12 20:37:50.383885 2 14 PV3-V-609 2020-10-17 \N f 2913 333 18 1057 999.00 0.00 0.00 999.00 1 2020-09-12 2020-09-12 20:58:55.630905 2020-09-12 21:00:12.449335 1 14 PV3-V-610 \N \N f 2922 194 21 1059 1538.00 0.00 0.00 1538.00 2 2020-09-14 2020-09-14 18:29:44.467722 2020-10-06 22:44:33.572383 2 14 PV3-V-616 2020-10-19 \N f 2915 1 2 1056 659.00 0.00 0.00 659.00 2 2020-09-12 2020-09-12 22:19:25.535323 2020-09-12 22:19:30.317214 1 1 PV1-V-1384 \N \N f 2916 1 18 1057 1499.00 0.00 0.00 1499.00 2 2020-09-12 2020-09-12 23:15:27.578394 2020-09-12 23:15:35.605444 1 24 PV3-V-612 \N \N f 2917 1 9 1056 999.00 0.00 0.00 999.00 2 2020-09-12 2020-09-12 23:19:12.573703 2020-09-12 23:19:20.718563 1 25 PV1-V-1385 \N \N f 2918 1 9 1056 999.00 0.00 0.00 999.00 2 2020-09-12 2020-09-12 23:33:59.43246 2020-09-12 23:34:24.270396 1 3 PV1-V-1386 \N \N f 2920 1 18 1057 1999.00 0.00 0.00 1999.00 2 2020-09-12 2020-09-13 01:30:16.101426 2020-09-13 01:30:29.59031 1 14 PV3-V-614 \N \N f 2921 1 18 1057 288.00 0.00 0.00 288.00 2 2020-09-12 2020-09-13 01:38:48.136185 2020-09-13 01:38:58.192264 1 14 PV3-V-615 \N \N f 2881 376 2 1050 999.00 0.00 0.00 999.00 2 2020-09-09 2020-09-09 19:36:51.384503 2020-10-07 19:09:49.578798 2 1 PV1-V-1374 2020-10-14 \N f 2923 1 2 1058 499.00 0.00 0.00 499.00 2 2020-09-14 2020-09-14 19:04:48.689731 2020-09-14 19:04:53.575614 1 1 PV1-V-1387 \N \N f 2924 1 2 1058 599.00 0.00 0.00 599.00 2 2020-09-14 2020-09-14 19:34:52.769522 2020-09-14 19:35:20.280358 1 1 PV1-V-1388 \N \N f 2925 1 21 1059 999.00 0.00 0.00 999.00 2 2020-09-14 2020-09-14 21:05:02.225789 2020-09-14 21:05:26.009808 1 12 PV3-V-617 \N \N f 2927 384 2 1058 999.00 0.00 0.00 999.00 2 2020-09-14 2020-09-14 21:51:31.343804 2020-09-26 20:27:40.368446 2 1 PV1-V-1389 2020-10-19 \N f 2914 333 18 1057 999.00 0.00 0.00 999.00 2 2020-09-12 2020-09-12 21:00:56.21477 2020-09-29 20:01:43.774735 2 14 PV3-V-611 2020-10-17 \N f 2928 1 21 1059 999.00 0.00 0.00 999.00 2 2020-09-14 2020-09-15 00:58:23.541795 2020-09-15 00:58:29.924885 1 24 PV3-V-619 \N \N f 2929 1 2 1060 999.00 0.00 0.00 999.00 2 2020-09-15 2020-09-15 18:26:43.309513 2020-09-15 18:29:20.255782 1 1 PV1-V-1390 \N \N f 2930 385 18 1061 999.00 0.00 0.00 999.00 1 2020-09-15 2020-09-15 18:48:31.124735 2020-09-15 18:48:38.025838 1 24 PV3-V-620 \N \N f 2919 382 18 1057 3698.00 0.00 0.00 3698.00 1 2020-09-12 2020-09-12 23:49:07.449571 2020-10-16 01:34:56.705488 2 14 PV3-V-613 2020-10-17 \N f 2932 1 18 1061 1499.00 0.00 0.00 1499.00 1 2020-09-15 2020-09-15 20:14:37.359401 2020-09-15 20:14:49.141894 1 24 PV3-V-622 \N \N f 2933 1 18 1061 1499.00 0.00 0.00 1499.00 2 2020-09-15 2020-09-15 20:14:58.49016 2020-09-15 20:15:46.767544 1 24 PV3-V-623 \N \N f 2934 1 18 1061 999.00 0.00 0.00 999.00 2 2020-09-15 2020-09-15 21:10:10.613844 2020-09-15 21:15:58.130702 1 14 PV3-V-624 \N \N f 2935 1 18 1061 119.00 0.00 0.00 119.00 2 2020-09-15 2020-09-15 21:16:21.595445 2020-09-15 21:16:28.750367 1 14 PV3-V-625 \N \N f 2936 1 2 1060 469.00 0.00 219.00 250.00 2 2020-09-15 2020-09-15 21:34:56.848853 2020-09-15 21:36:41.547907 1 1 PV1-V-1391 \N \N f 2937 1 9 1060 1899.00 0.00 0.00 1899.00 2 2020-09-15 2020-09-15 21:38:48.309571 2020-09-15 21:39:00.664646 1 3 PV1-V-1392 \N \N f 2938 1 18 1061 1499.00 0.00 0.00 1499.00 2 2020-09-15 2020-09-15 21:40:24.919316 2020-09-15 21:40:29.782712 1 24 PV3-V-626 \N \N f 2926 383 21 1059 999.00 0.00 0.00 999.00 2 2020-09-14 2020-09-14 21:10:16.891773 2020-09-24 18:56:55.734588 2 24 PV3-V-618 2020-10-19 \N f 2940 1 18 1061 689.00 0.00 0.00 689.00 2 2020-09-15 2020-09-15 22:30:00.189719 2020-09-15 22:30:26.050764 1 24 PV3-V-627 \N \N f 2941 1 2 1060 999.00 0.00 0.00 999.00 2 2020-09-15 2020-09-15 23:08:04.321821 2020-09-15 23:08:48.636812 1 1 PV1-V-1394 \N \N f 2939 386 2 1060 1799.00 0.00 0.00 1799.00 2 2020-09-15 2020-09-15 22:01:56.478666 2020-09-17 20:38:09.813725 2 1 PV1-V-1393 2020-10-20 \N f 2879 167 2 1050 2248.00 0.00 0.00 2248.00 2 2020-09-09 2020-09-09 16:49:08.100795 2020-11-28 23:23:14.116565 2 1 PV1-V-1372 2020-10-14 \N f 2888 377 21 1051 1499.00 0.00 0.00 1499.00 2 2020-09-09 2020-09-09 23:43:30.169986 2020-12-03 23:54:28.002608 0 14 PV3-V-592 \N \N f 2905 380 9 1054 799.00 0.00 0.00 799.00 2 2020-09-11 2020-09-11 20:37:59.03524 2020-12-23 18:29:11.795121 0 3 PV1-V-1381 \N \N f 2942 1 2 1060 1680.03 68.96 200.00 1548.99 2 2020-09-15 2020-09-15 23:17:27.018396 2020-09-15 23:18:02.835213 1 1 PV1-V-1395 \N \N f 2943 1 2 1060 369.00 0.00 69.00 300.00 2 2020-09-15 2020-09-15 23:45:50.114737 2020-09-15 23:45:54.118059 1 3 PV1-V-1396 \N \N f 2944 1 18 1061 1499.00 0.00 0.00 1499.00 2 2020-09-15 2020-09-16 00:39:56.217888 2020-09-16 00:40:06.612471 1 29 PV3-V-628 \N \N f 2990 391 9 1069 1099.00 0.00 0.00 1099.00 4 2020-09-19 2020-09-20 01:05:49.549718 2020-11-26 18:31:14.007139 2 27 PV1-V-1426 2020-10-24 \N f 2946 1 2 1062 799.00 0.00 0.00 799.00 2 2020-09-16 2020-09-16 21:45:02.09093 2020-09-16 21:45:10.35019 1 1 PV1-V-1397 \N \N f 2947 1 2 1062 485.21 13.79 399.00 100.00 2 2020-09-16 2020-09-16 21:47:31.528334 2020-09-16 21:47:35.238719 1 1 PV1-V-1398 \N \N f 2948 1 21 1063 1499.00 0.00 0.00 1499.00 2 2020-09-16 2020-09-16 21:55:56.64981 2020-09-16 21:56:45.856341 1 12 PV3-V-630 \N \N f 2949 1 21 1064 1998.00 0.00 0.00 1998.00 2 2020-09-16 2020-09-17 01:40:13.873678 2020-09-17 01:40:27.725642 1 24 PV3-V-631 \N \N f 2950 1 2 1065 699.00 0.00 0.00 699.00 2 2020-09-17 2020-09-17 18:58:37.19765 2020-09-17 18:58:41.857333 1 1 PV1-V-1399 \N \N f 2991 389 21 1071 999.00 0.00 0.00 999.00 4 2020-09-21 2020-09-21 18:39:45.158751 2020-11-01 01:47:23.703236 2 24 PV3-V-645 2020-10-26 \N f 2952 1 2 1065 969.00 0.00 0.00 969.00 2 2020-09-17 2020-09-17 19:30:30.49682 2020-09-17 19:30:35.37777 1 1 PV1-V-1400 \N \N f 2953 1 21 1066 1299.00 0.00 0.00 1299.00 2 2020-09-17 2020-09-17 19:35:21.699022 2020-09-17 19:35:31.773597 1 12 PV3-V-633 \N \N f 2972 1 21 1070 1599.00 0.00 0.00 1599.00 2 2020-09-19 2020-09-19 18:30:20.591705 2020-09-19 18:30:30.45737 1 12 PV3-V-643 \N \N f 2955 1 2 1065 1846.00 0.00 184.00 1662.00 2 2020-09-17 2020-09-17 21:37:49.306474 2020-09-17 21:38:01.913345 1 1 PV1-V-1401 \N \N f 2954 1 21 1066 999.00 0.00 0.00 999.00 1 2020-09-17 2020-09-17 21:22:26.127161 2020-09-17 22:03:28.481772 1 24 PV3-V-634 \N \N f 2956 1 21 1066 999.00 0.00 0.00 999.00 2 2020-09-17 2020-09-17 22:03:49.180496 2020-09-17 22:03:53.704664 1 29 PV3-V-635 \N \N f 2993 392 9 1072 1189.00 0.00 0.00 1189.00 2 2020-09-21 2020-09-21 18:45:22.281993 2020-11-03 22:36:20.842438 2 3 PV1-V-1428 2020-10-26 \N f 2958 1 2 1065 69.00 0.00 0.00 69.00 2 2020-09-17 2020-09-17 23:33:00.212407 2020-09-17 23:33:03.750937 1 1 PV1-V-1402 \N \N f 2959 1 21 1066 999.00 0.00 0.00 999.00 2 2020-09-17 2020-09-17 23:35:30.169309 2020-09-17 23:36:20.97908 1 12 PV3-V-637 \N \N f 2961 1 2 1065 1734.86 164.14 709.00 1190.00 2 2020-09-17 2020-09-18 00:06:55.465115 2020-09-18 00:07:03.900583 1 1 PV1-V-1403 \N \N f 2960 1 21 1066 1499.00 0.00 0.00 1499.00 2 2020-09-17 2020-09-18 00:06:24.780658 2020-09-18 00:07:06.087292 1 12 PV3-V-638 \N \N f 2962 1 9 1067 699.00 0.00 0.00 699.00 2 2020-09-18 2020-09-18 16:56:56.673628 2020-09-18 16:58:24.062939 1 3 PV1-V-1404 \N \N f 2963 1 21 1068 489.00 0.00 0.00 489.00 2 2020-09-18 2020-09-18 21:35:35.817199 2020-09-18 21:35:50.454665 1 12 PV3-V-639 \N \N f 2964 1 9 1067 599.00 0.00 0.00 599.00 2 2020-09-18 2020-09-18 21:42:47.181813 2020-09-18 21:42:56.229551 1 3 PV1-V-1405 \N \N f 2965 1 9 1067 1070.21 137.79 0.00 1208.00 2 2020-09-18 2020-09-18 22:33:40.164276 2020-09-18 22:34:15.504493 1 3 PV1-V-1406 \N \N f 2966 1 9 1067 469.00 0.00 0.00 469.00 2 2020-09-18 2020-09-18 22:36:16.629771 2020-09-18 22:37:19.69085 1 3 PV1-V-1407 \N \N f 2967 1 9 1067 1299.00 0.00 649.00 650.00 2 2020-09-18 2020-09-18 22:45:20.911198 2020-09-18 22:45:29.922108 1 3 PV1-V-1408 \N \N f 2968 1 18 1068 1678.00 0.00 62.00 1616.00 2 2020-09-18 2020-09-19 00:29:27.75568 2020-09-19 00:29:37.212265 1 12 PV3-V-640 \N \N f 2969 1 21 1068 549.00 0.00 0.00 549.00 2 2020-09-18 2020-09-19 00:48:53.484324 2020-09-19 00:49:02.773702 1 24 PV3-V-641 \N \N f 2970 1 9 1069 1097.00 0.00 0.00 1097.00 2 2020-09-19 2020-09-19 17:17:56.170595 2020-09-19 17:18:05.907409 1 3 PV1-V-1409 \N \N f 2971 1 21 1070 1599.00 0.00 0.00 1599.00 1 2020-09-19 2020-09-19 18:25:14.443941 2020-09-19 18:29:58.323104 1 24 PV3-V-642 \N \N f 2973 1 9 1069 1209.34 89.65 649.00 649.99 2 2020-09-19 2020-09-19 20:14:25.247174 2020-09-19 20:14:31.136919 1 3 PV1-V-1410 \N \N f 2974 1 9 1069 1599.00 0.00 0.00 1599.00 2 2020-09-19 2020-09-19 21:58:58.188241 2020-09-19 21:59:05.611165 1 27 PV1-V-1411 \N \N f 2975 1 9 1069 869.79 110.21 181.00 799.00 2 2020-09-19 2020-09-19 22:01:38.812585 2020-09-19 22:02:17.699689 1 3 PV1-V-1412 \N \N f 2976 1 9 1069 999.00 0.00 0.00 999.00 2 2020-09-19 2020-09-19 22:15:09.245816 2020-09-19 22:16:26.033385 1 3 PV1-V-1413 \N \N f 2978 1 9 1069 999.00 0.00 0.00 999.00 2 2020-09-19 2020-09-19 22:26:34.238277 2020-09-19 22:26:41.792495 1 3 PV1-V-1415 \N \N f 2979 1 21 1070 369.00 0.00 0.00 369.00 2 2020-09-19 2020-09-19 22:50:33.255133 2020-09-19 22:51:28.329469 1 12 PV3-V-644 \N \N f 2980 1 9 1069 549.00 0.00 0.00 549.00 1 2020-09-19 2020-09-19 23:42:07.432874 2020-09-19 23:42:10.888741 1 3 PV1-V-1416 \N \N f 2981 1 9 1069 549.00 0.00 219.00 330.00 2 2020-09-19 2020-09-19 23:42:41.919747 2020-09-19 23:42:45.783324 1 3 PV1-V-1417 \N \N f 2982 1 9 1069 999.00 0.00 0.00 999.00 2 2020-09-19 2020-09-19 23:45:02.956678 2020-09-19 23:45:11.977446 1 25 PV1-V-1418 \N \N f 2983 1 9 1069 999.00 0.00 0.00 999.00 2 2020-09-19 2020-09-20 00:05:39.908504 2020-09-20 00:05:51.355144 1 3 PV1-V-1419 \N \N f 2984 1 9 1069 923.52 34.48 219.00 739.00 2 2020-09-19 2020-09-20 00:26:18.128773 2020-09-20 00:26:55.253392 1 3 PV1-V-1420 \N \N f 2985 1 9 1069 999.00 0.00 0.00 999.00 2 2020-09-19 2020-09-20 00:31:02.903866 2020-09-20 00:32:28.039564 1 3 PV1-V-1421 \N \N f 2986 1 9 1069 999.00 0.00 349.00 650.00 2 2020-09-19 2020-09-20 00:33:25.456096 2020-09-20 00:34:46.730984 1 3 PV1-V-1422 \N \N f 2987 1 9 1069 434.52 34.48 219.00 250.00 2 2020-09-19 2020-09-20 00:48:37.534163 2020-09-20 00:48:44.26433 1 3 PV1-V-1423 \N \N f 2951 388 21 1066 1899.00 0.00 0.00 1899.00 2 2020-09-17 2020-09-17 19:24:32.505012 2020-10-23 19:02:51.990277 2 29 PV3-V-632 2020-10-22 \N f 2989 1 9 1069 42.24 6.76 0.00 49.00 2 2020-09-19 2020-09-20 01:03:23.376087 2020-09-20 01:03:32.144053 1 27 PV1-V-1425 \N \N f 2999 393 9 1072 2136.00 0.00 0.00 2136.00 4 2020-09-21 2020-09-21 22:09:47.112031 2020-11-28 23:24:22.742232 2 3 PV1-V-1431 2020-10-26 \N f 2957 389 21 1066 999.00 0.00 0.00 999.00 2 2020-09-17 2020-09-17 22:53:00.152663 2020-11-01 01:47:53.304153 2 24 PV3-V-636 2020-10-22 \N f 2992 1 9 1072 1099.00 0.00 0.00 1099.00 2 2020-09-21 2020-09-21 18:43:10.037148 2020-09-21 18:43:34.438292 1 27 PV1-V-1427 \N \N f 2945 387 21 1063 1499.00 0.00 0.00 1499.00 2 2020-09-16 2020-09-16 21:43:17.764613 2020-11-26 00:52:52.775545 2 12 PV3-V-629 2020-10-21 \N f 2994 1 9 1072 738.00 0.00 0.00 738.00 2 2020-09-21 2020-09-21 19:01:50.16578 2020-09-21 19:02:30.39956 1 3 PV1-V-1429 \N \N f 2995 1 9 1072 1049.00 0.00 0.00 1049.00 2 2020-09-21 2020-09-21 19:58:21.282718 2020-09-21 19:59:06.012876 1 3 PV1-V-1430 \N \N f 2996 1 21 1071 699.00 0.00 0.00 699.00 2 2020-09-21 2020-09-21 20:09:38.886084 2020-09-21 20:09:49.518167 1 12 PV3-V-646 \N \N f 2997 1 21 1071 3398.00 0.00 0.00 3398.00 2 2020-09-21 2020-09-21 21:11:01.038931 2020-09-21 21:11:32.630591 1 24 PV3-V-647 \N \N f 2998 1 21 1071 999.00 0.00 0.00 999.00 2 2020-09-21 2020-09-21 21:59:52.077192 2020-09-21 22:01:20.271737 1 24 PV3-V-648 \N \N f 3000 1 9 1072 549.00 0.00 0.00 549.00 2 2020-09-21 2020-09-21 22:18:51.354321 2020-09-21 22:19:32.949776 1 3 PV1-V-1432 \N \N f 3001 1 9 1072 649.00 0.00 0.00 649.00 2 2020-09-21 2020-09-21 23:01:42.383968 2020-09-21 23:01:57.727494 1 3 PV1-V-1433 \N \N f 3002 1 21 1071 1499.00 0.00 0.00 1499.00 2 2020-09-21 2020-09-21 23:29:05.378953 2020-09-21 23:29:15.983751 1 24 PV3-V-649 \N \N f 2977 390 9 1069 1099.00 0.00 0.00 1099.00 2 2020-09-19 2020-09-19 22:24:47.908771 2020-09-21 23:58:57.815713 2 3 PV1-V-1414 2020-10-24 \N f 3003 1 21 1071 529.00 0.00 0.00 529.00 2 2020-09-21 2020-09-22 00:06:58.511907 2020-09-22 00:07:05.20076 1 12 PV3-V-650 \N \N f 3004 1 9 1072 479.00 0.00 0.00 479.00 2 2020-09-21 2020-09-22 00:37:02.950677 2020-09-22 00:37:26.342816 1 3 PV1-V-1434 \N \N f 3005 1 2 1074 1099.00 0.00 109.00 990.00 2 2020-09-22 2020-09-22 18:32:17.831982 2020-09-22 18:32:31.909455 1 1 PV1-V-1435 \N \N f 3006 1 21 1073 1599.00 0.00 0.00 1599.00 2 2020-09-22 2020-09-22 19:18:52.66454 2020-09-22 19:19:39.001978 1 12 PV3-V-651 \N \N f 2988 391 9 1069 999.00 0.00 0.00 999.00 2 2020-09-19 2020-09-20 01:00:24.174257 2020-09-27 01:04:50.540959 2 27 PV1-V-1424 2020-10-24 \N f 3007 1 21 1073 699.00 0.00 0.00 699.00 2 2020-09-22 2020-09-22 19:20:11.028747 2020-09-22 19:20:24.681649 1 12 PV3-V-652 \N \N f 3008 1 9 1074 1368.00 0.00 0.00 1368.00 2 2020-09-22 2020-09-22 20:02:05.438039 2020-09-22 20:02:39.151912 1 3 PV1-V-1436 \N \N f 3009 1 2 1074 930.03 68.96 499.00 499.99 2 2020-09-22 2020-09-22 22:53:50.534135 2020-09-22 22:53:57.502219 1 1 PV1-V-1437 \N \N f 3010 1 21 1073 459.00 0.00 0.00 459.00 2 2020-09-22 2020-09-22 23:13:46.018772 2020-09-22 23:14:30.713739 1 12 PV3-V-653 \N \N f 3011 1 21 1073 110.00 0.00 0.00 110.00 2 2020-09-22 2020-09-22 23:27:44.586444 2020-09-22 23:28:02.285057 1 12 PV3-V-654 \N \N f 3012 1 2 1074 799.00 0.00 499.00 300.00 2 2020-09-22 2020-09-22 23:38:10.924754 2020-09-22 23:38:15.129303 1 1 PV1-V-1438 \N \N f 3013 1 25 1075 1799.00 0.00 0.00 1799.00 2 2020-09-22 2020-09-23 00:49:43.81341 2020-09-23 00:49:55.335006 1 27 PV1-V-1439 \N \N f 3014 1 21 1073 139.00 0.00 0.00 139.00 2 2020-09-22 2020-09-23 00:54:46.191153 2020-09-23 00:54:51.960824 1 12 PV3-V-655 \N \N f 3015 1 21 1073 999.00 0.00 0.00 999.00 2 2020-09-22 2020-09-23 01:01:03.662816 2020-09-23 01:01:09.130953 1 24 PV3-V-656 \N \N f 3017 1 2 1076 999.00 0.00 0.00 999.00 2 2020-09-23 2020-09-23 20:09:29.812235 2020-09-23 20:09:38.770779 1 3 PV1-V-1441 \N \N f 3018 1 18 1077 84.48 13.52 0.00 98.00 2 2020-09-23 2020-09-23 20:36:17.774874 2020-09-23 20:36:22.547203 1 14 PV3-V-657 \N \N f 3019 1 2 1076 571.24 6.76 0.00 578.00 2 2020-09-23 2020-09-23 21:23:59.922764 2020-09-23 21:24:23.481518 1 1 PV1-V-1442 \N \N f 3045 397 2 1078 999.00 0.00 0.00 999.00 2 2020-09-24 2020-09-25 00:47:39.644288 2020-10-30 00:59:31.729039 2 1 PV1-V-1454 2020-10-29 \N f 3021 1 2 1076 1228.00 0.00 0.00 1228.00 2 2020-09-23 2020-09-23 22:05:31.403301 2020-09-23 22:06:12.532958 1 1 PV1-V-1444 \N \N f 3022 1 2 1076 369.00 0.00 0.00 369.00 2 2020-09-23 2020-09-23 22:17:23.797043 2020-09-23 22:17:37.451232 1 1 PV1-V-1445 \N \N f 3023 1 18 1077 730.03 68.96 299.00 499.99 2 2020-09-23 2020-09-23 22:50:26.81662 2020-09-23 22:50:36.678954 1 14 PV3-V-658 \N \N f 3024 1 2 1076 999.00 0.00 0.00 999.00 2 2020-09-23 2020-09-23 22:50:55.773695 2020-09-23 22:51:05.760665 1 1 PV1-V-1446 \N \N f 3025 1 18 1077 1049.00 0.00 0.00 1049.00 2 2020-09-23 2020-09-23 23:13:34.021044 2020-09-23 23:13:40.775375 1 14 PV3-V-659 \N \N f 3026 1 2 1076 689.00 0.00 0.00 689.00 2 2020-09-23 2020-09-23 23:33:37.799654 2020-09-23 23:36:42.874503 1 1 PV1-V-1447 \N \N f 3027 1 18 1077 1599.00 0.00 0.00 1599.00 2 2020-09-23 2020-09-23 23:46:17.318719 2020-09-23 23:46:24.515453 1 14 PV3-V-660 \N \N f 3028 1 18 1077 369.00 0.00 0.00 369.00 2 2020-09-23 2020-09-23 23:49:22.601419 2020-09-23 23:49:54.00676 1 14 PV3-V-661 \N \N f 3029 1 18 1077 738.00 0.00 119.00 619.00 2 2020-09-23 2020-09-23 23:51:24.723477 2020-09-23 23:52:19.312655 1 23 PV3-V-662 \N \N f 3030 1 18 1077 2457.00 0.00 0.00 2457.00 2 2020-09-23 2020-09-24 00:13:14.165198 2020-09-24 00:13:18.753302 1 14 PV3-V-663 \N \N f 3031 379 18 1077 169.00 0.00 0.00 169.00 1 2020-09-23 2020-09-24 00:17:52.337324 2020-09-24 00:17:59.292618 2 14 PV3-V-664 2020-10-28 \N f 3033 379 18 1077 1098.00 0.00 0.00 1098.00 2 2020-09-23 2020-09-24 00:24:44.523715 2020-11-24 01:58:16.503057 2 14 PV3-V-666 2020-10-28 \N f 3067 20 2 1086 4334.00 0.00 0.00 4334.00 2 2020-09-28 2020-09-28 20:39:15.742456 2020-12-09 23:09:05.505162 0 30 PV1-V-1467 \N \N f 3016 1 2 1076 1898.00 0.00 349.00 1549.00 1 2020-09-23 2020-09-23 19:04:09.685128 2020-09-24 00:46:55.80398 1 1 PV1-V-1440 \N \N f 3034 1 2 1076 1898.00 0.00 1398.00 500.00 2 2020-09-23 2020-09-24 00:49:05.642984 2020-09-24 00:49:28.810089 1 1 PV1-V-1448 \N \N f 3035 1 2 1078 1399.00 0.00 0.00 1399.00 2 2020-09-24 2020-09-24 17:10:18.914805 2020-09-24 17:10:28.686445 1 1 PV1-V-1449 \N \N f 3036 1 2 1078 84.48 13.52 0.00 98.00 2 2020-09-24 2020-09-24 18:08:13.260901 2020-09-24 18:08:18.209717 1 1 PV1-V-1450 \N \N f 3052 1 18 1081 938.00 0.00 0.00 938.00 2 2020-09-25 2020-09-26 00:33:02.645816 2020-09-26 00:33:46.193225 1 14 PV3-V-675 \N \N f 3020 394 2 1076 549.00 0.00 0.00 549.00 2 2020-09-23 2020-09-23 21:27:27.203301 2020-10-23 16:36:51.60175 2 1 PV1-V-1443 2020-10-28 \N f 3039 383 18 1079 599.00 0.00 0.00 599.00 2 2020-09-24 2020-09-24 18:58:00.052783 2020-10-17 00:12:19.019678 2 14 PV3-V-669 2020-10-29 \N f 3037 395 18 1079 1399.00 0.00 0.00 1399.00 2 2020-09-24 2020-09-24 18:23:40.75132 2020-09-24 21:22:39.642136 2 14 PV3-V-667 2020-10-29 \N f 3038 395 18 1079 269.00 0.00 0.00 269.00 2 2020-09-24 2020-09-24 18:26:18.281449 2020-09-24 21:23:05.213302 2 14 PV3-V-668 2020-10-29 \N f 3041 1 2 1078 999.00 0.00 0.00 999.00 2 2020-09-24 2020-09-24 23:50:29.001125 2020-09-24 23:50:43.010831 1 1 PV1-V-1451 \N \N f 3042 1 2 1078 1299.00 0.00 0.00 1299.00 2 2020-09-24 2020-09-25 00:02:11.345967 2020-09-25 00:02:15.724299 1 1 PV1-V-1452 \N \N f 3043 1 2 1078 818.00 0.00 0.00 818.00 2 2020-09-24 2020-09-25 00:11:15.983456 2020-09-25 00:11:31.631546 1 1 PV1-V-1453 \N \N f 3044 1 18 1079 1499.00 0.00 0.00 1499.00 2 2020-09-24 2020-09-25 00:28:51.161408 2020-09-25 00:29:00.554326 1 24 PV3-V-671 \N \N f 3046 398 2 1078 969.00 0.00 0.00 969.00 2 2020-09-24 2020-09-25 00:49:39.130268 2020-10-30 01:01:16.691009 2 1 PV1-V-1455 2020-10-29 \N f 3032 378 18 1077 169.00 0.00 0.00 169.00 2 2020-09-23 2020-09-24 00:18:41.352453 2020-11-24 01:57:35.830112 2 14 PV3-V-665 2020-10-28 \N f 3048 1 18 1081 529.00 0.00 0.00 529.00 2 2020-09-25 2020-09-25 18:25:28.280462 2020-09-25 18:25:53.382954 1 14 PV3-V-672 \N \N f 3049 1 2 1080 999.00 0.00 0.00 999.00 2 2020-09-25 2020-09-25 19:46:25.187235 2020-09-25 19:46:36.878874 1 1 PV1-V-1457 \N \N f 3050 1 18 1081 1616.00 0.00 0.00 1616.00 2 2020-09-25 2020-09-25 20:08:00.243297 2020-09-25 20:08:06.291194 1 14 PV3-V-673 \N \N f 3051 1 18 1081 1499.00 0.00 0.00 1499.00 2 2020-09-25 2020-09-25 23:16:04.121242 2020-09-25 23:17:03.731649 1 14 PV3-V-674 \N \N f 3053 1 18 1081 1088.00 0.00 0.00 1088.00 2 2020-09-25 2020-09-26 00:43:47.345628 2020-09-26 00:44:13.312422 1 14 PV3-V-676 \N \N f 3054 1 9 1082 1258.00 0.00 0.00 1258.00 2 2020-09-26 2020-09-26 17:46:39.863358 2020-09-26 17:47:19.144973 1 30 PV1-V-1458 \N \N f 3055 1 9 1082 569.00 0.00 0.00 569.00 2 2020-09-26 2020-09-26 18:17:39.796371 2020-09-26 18:17:45.894626 1 30 PV1-V-1459 \N \N f 3059 1 9 1082 139.00 0.00 0.00 139.00 2 2020-09-26 2020-09-26 19:23:36.643248 2020-09-26 19:23:40.95325 1 1 PV1-V-1463 \N \N f 3056 399 9 1082 999.00 0.00 0.00 999.00 1 2020-09-26 2020-09-26 18:20:21.608511 2020-09-26 18:20:36.519306 1 30 PV1-V-1460 \N \N f 3047 398 2 1078 689.00 0.00 0.00 689.00 2 2020-09-24 2020-09-25 00:52:33.214176 2020-10-01 00:49:37.211339 2 1 PV1-V-1456 2020-10-29 \N f 3058 1 9 1082 435.21 13.79 349.00 100.00 2 2020-09-26 2020-09-26 19:00:43.018385 2020-09-26 19:01:05.546513 1 1 PV1-V-1462 \N \N f 3060 1 2 1082 2985.07 261.93 0.00 3247.00 2 2020-09-26 2020-09-26 23:09:10.31554 2020-09-26 23:09:16.645828 1 1 PV1-V-1464 \N \N f 3061 1 21 1083 499.00 0.00 0.00 499.00 2 2020-09-26 2020-09-26 23:22:08.646712 2020-09-26 23:22:41.783372 1 14 PV3-V-677 \N \N f 3062 1 21 1083 1799.00 0.00 0.00 1799.00 2 2020-09-26 2020-09-26 23:56:48.499046 2020-09-26 23:57:35.407957 1 14 PV3-V-678 \N \N f 3063 1 21 1085 1499.00 0.00 0.00 1499.00 2 2020-09-26 2020-09-27 01:07:22.096583 2020-09-27 01:07:31.312426 1 14 PV3-V-679 \N \N f 3064 1 2 1084 42.24 6.76 0.00 49.00 2 2020-09-26 2020-09-27 01:08:58.979423 2020-09-27 01:09:14.276468 1 1 PV1-V-1465 \N \N f 3065 1 2 1086 969.00 0.00 869.00 100.00 2 2020-09-28 2020-09-28 17:30:39.344326 2020-09-28 17:30:44.399757 1 1 PV1-V-1466 \N \N f 3068 1 2 1086 1189.00 0.00 0.00 1189.00 2 2020-09-28 2020-09-28 22:46:37.611265 2020-09-28 22:46:42.125179 1 1 PV1-V-1468 \N \N f 3066 400 21 1087 699.00 0.00 0.00 699.00 1 2020-09-28 2020-09-28 19:13:38.812486 2020-09-29 01:01:13.425857 2 12 PV3-V-680 2020-11-02 \N f 3069 1 18 1089 4726.00 0.00 0.00 4726.00 2 2020-09-29 2020-09-29 19:57:57.560008 2020-09-29 19:58:05.877718 1 14 PV3-V-681 \N \N f 3070 1 18 1089 2598.00 0.00 0.00 2598.00 2 2020-09-29 2020-09-29 20:34:08.79565 2020-09-29 20:34:29.840687 1 14 PV3-V-682 \N \N f 3071 1 18 1089 2398.00 0.00 0.00 2398.00 2 2020-09-29 2020-09-29 20:41:53.851392 2020-09-29 20:44:11.646555 1 14 PV3-V-683 \N \N f 3057 399 9 1082 999.00 0.00 0.00 999.00 2 2020-09-26 2020-09-26 18:20:59.944749 2020-09-30 19:31:36.363362 2 30 PV1-V-1461 2020-10-31 \N f 3040 396 18 1079 1499.00 0.00 0.00 1499.00 2 2020-09-24 2020-09-24 20:45:30.642234 2020-10-15 23:39:20.605881 2 14 PV3-V-670 2020-10-29 \N f 3072 1 18 1089 999.00 0.00 0.00 999.00 2 2020-09-29 2020-09-29 21:06:08.380469 2020-09-29 21:06:18.535371 1 29 PV3-V-684 \N \N f 3089 403 2 1091 249.00 0.00 0.00 249.00 2 2020-09-30 2020-09-30 22:58:46.935473 2020-10-19 21:03:16.313011 2 1 PV1-V-1479 2020-11-04 \N f 3074 1 2 1088 430.17 68.83 0.00 499.00 2 2020-09-29 2020-09-29 22:23:54.153974 2020-09-29 22:24:02.550662 1 1 PV1-V-1469 \N \N f 3075 1 2 1088 799.00 0.00 0.00 799.00 2 2020-09-29 2020-09-29 22:35:38.660274 2020-09-29 22:35:42.230742 1 1 PV1-V-1470 \N \N f 3076 1 2 1088 899.00 0.00 349.00 550.00 2 2020-09-29 2020-09-29 22:46:53.427366 2020-09-29 22:46:59.352705 1 1 PV1-V-1471 \N \N f 3126 194 18 1099 1927.00 0.00 0.00 1927.00 2 2020-10-06 2020-10-06 22:49:09.760161 2020-11-06 19:06:36.196151 2 14 PV3-V-707 2020-11-10 \N f 3078 1 2 1088 258.00 0.00 0.00 258.00 2 2020-09-29 2020-09-30 00:02:04.308167 2020-09-30 00:02:08.27159 1 1 PV1-V-1473 \N \N f 3079 1 2 1088 868.00 0.00 0.00 868.00 2 2020-09-29 2020-09-30 00:39:00.10852 2020-09-30 00:39:35.393936 1 1 PV1-V-1474 \N \N f 3080 1 2 1091 139.00 0.00 0.00 139.00 2 2020-09-30 2020-09-30 19:31:06.656427 2020-09-30 19:31:10.74954 1 1 PV1-V-1475 \N \N f 3081 1 18 1090 369.00 0.00 0.00 369.00 1 2020-09-30 2020-09-30 19:33:07.178327 2020-09-30 19:33:45.834098 1 24 PV3-V-686 \N \N f 3082 1 18 1090 453.48 13.52 0.00 467.00 2 2020-09-30 2020-09-30 19:34:28.244575 2020-09-30 19:34:39.439233 1 24 PV3-V-687 \N \N f 3083 1 18 1090 299.00 0.00 0.00 299.00 2 2020-09-30 2020-09-30 19:38:17.925068 2020-09-30 19:48:52.742684 1 24 PV3-V-688 \N \N f 3084 1 18 1090 923.45 96.55 0.00 1020.00 1 2020-09-30 2020-09-30 20:28:02.070315 2020-09-30 20:30:53.460805 1 14 PV3-V-689 \N \N f 3085 1 18 1090 617.24 82.76 100.00 600.00 2 2020-09-30 2020-09-30 20:34:38.355423 2020-09-30 20:34:55.088522 1 24 PV3-V-690 \N \N f 3086 1 2 1091 1499.00 0.00 0.00 1499.00 2 2020-09-30 2020-09-30 21:11:51.324681 2020-09-30 21:12:49.644786 1 27 PV1-V-1476 \N \N f 3087 1 2 1091 1271.59 96.41 0.00 1368.00 2 2020-09-30 2020-09-30 22:12:55.631176 2020-09-30 22:13:00.696732 1 1 PV1-V-1477 \N \N f 3088 1 2 1091 1847.00 0.00 0.00 1847.00 2 2020-09-30 2020-09-30 22:49:08.806889 2020-09-30 22:49:29.284287 1 1 PV1-V-1478 \N \N f 3077 402 2 1088 1189.00 0.00 0.00 1189.00 2 2020-09-29 2020-09-29 23:59:23.644398 2020-10-30 17:44:59.977292 2 1 PV1-V-1472 2020-11-03 \N f 3090 1 18 1090 999.00 0.00 0.00 999.00 2 2020-09-30 2020-09-30 23:48:23.227105 2020-09-30 23:48:29.673067 1 24 PV3-V-691 \N \N f 3091 1 18 1090 1399.00 0.00 0.00 1399.00 2 2020-09-30 2020-09-30 23:59:33.509715 2020-09-30 23:59:47.537507 1 14 PV3-V-692 \N \N f 3092 1 18 1090 1049.00 0.00 0.00 1049.00 2 2020-09-30 2020-10-01 01:03:07.207317 2020-10-01 01:03:13.90837 1 14 PV3-V-693 \N \N f 3093 1 2 1092 42.24 6.76 0.00 49.00 2 2020-10-01 2020-10-01 17:28:37.506759 2020-10-01 17:28:41.767129 1 1 PV1-V-1480 \N \N f 3094 1 2 1092 479.00 0.00 0.00 479.00 2 2020-10-01 2020-10-01 18:57:43.267575 2020-10-01 18:57:49.715158 1 1 PV1-V-1481 \N \N f 3095 1 2 1092 1041.24 6.76 0.00 1048.00 2 2020-10-01 2020-10-01 23:04:47.464736 2020-10-01 23:04:53.366377 1 1 PV1-V-1482 \N \N f 3096 1 2 1092 655.21 13.79 569.00 100.00 2 2020-10-01 2020-10-01 23:07:00.78361 2020-10-01 23:07:05.245468 1 1 PV1-V-1483 \N \N f 3097 1 2 1092 699.00 0.00 0.00 699.00 2 2020-10-01 2020-10-01 23:13:37.500684 2020-10-01 23:13:43.349857 1 1 PV1-V-1484 \N \N f 3098 1 2 1092 699.00 0.00 0.00 699.00 2 2020-10-01 2020-10-01 23:21:46.319918 2020-10-01 23:22:21.331226 1 1 PV1-V-1485 \N \N f 3099 1 18 1093 669.00 0.00 0.00 669.00 2 2020-10-01 2020-10-02 00:05:22.177005 2020-10-02 00:05:30.894914 1 14 PV3-V-694 \N \N f 3100 1 2 1092 2498.00 0.00 599.00 1899.00 2 2020-10-01 2020-10-02 00:52:03.784705 2020-10-02 00:52:26.164404 1 28 PV1-V-1486 \N \N f 3101 1 2 1094 1007.97 91.04 439.00 660.01 2 2020-10-02 2020-10-02 16:20:09.903269 2020-10-02 16:20:18.500736 1 1 PV1-V-1487 \N \N f 3102 1 2 1094 699.00 0.00 0.00 699.00 2 2020-10-02 2020-10-02 21:00:43.163868 2020-10-02 21:00:57.901476 1 1 PV1-V-1488 \N \N f 3103 1 18 1095 999.00 0.00 0.00 999.00 2 2020-10-02 2020-10-02 21:47:40.799591 2020-10-02 21:48:30.213774 1 14 PV3-V-695 \N \N f 3104 1 2 1094 1299.00 0.00 0.00 1299.00 2 2020-10-02 2020-10-02 21:56:12.261272 2020-10-02 21:56:29.079241 1 1 PV1-V-1489 \N \N f 3106 1 18 1095 209.00 0.00 0.00 209.00 2 2020-10-02 2020-10-02 23:48:04.364712 2020-10-02 23:48:11.472534 1 14 PV3-V-697 \N \N f 3107 1 18 1095 1058.00 0.00 339.00 719.00 2 2020-10-02 2020-10-03 00:11:20.636173 2020-10-03 00:12:13.599076 1 14 PV3-V-698 \N \N f 3108 1 18 1095 2198.00 0.00 0.00 2198.00 2 2020-10-02 2020-10-03 00:18:20.897515 2020-10-03 00:18:34.650966 1 24 PV3-V-699 \N \N f 3109 1 18 1095 2498.00 0.00 0.00 2498.00 2 2020-10-02 2020-10-03 00:21:51.208563 2020-10-03 00:22:01.299958 1 24 PV3-V-700 \N \N f 3110 1 2 1096 399.00 0.00 0.00 399.00 2 2020-10-03 2020-10-03 22:27:47.880292 2020-10-03 22:27:51.941577 1 1 PV1-V-1490 \N \N f 3073 401 18 1089 2645.24 82.76 100.00 2628.00 2 2020-09-29 2020-09-29 21:36:29.846451 2020-10-16 02:04:56.739375 2 24 PV3-V-685 2020-11-03 \N f 3112 1 2 1096 998.00 0.00 0.00 998.00 2 2020-10-03 2020-10-03 22:45:48.899091 2020-10-03 22:46:11.827522 1 1 PV1-V-1492 \N \N f 3113 1 2 1096 1199.00 0.00 350.00 849.00 2 2020-10-03 2020-10-03 23:51:50.075625 2020-10-03 23:51:54.310014 1 27 PV1-V-1493 \N \N f 3114 1 2 1096 349.00 0.00 0.00 349.00 2 2020-10-03 2020-10-04 00:37:52.390186 2020-10-04 00:38:10.056743 1 1 PV1-V-1494 \N \N f 3115 1 21 1098 1299.00 0.00 0.00 1299.00 2 2020-10-03 2020-10-04 01:04:53.007529 2020-10-04 01:05:11.090593 1 12 PV3-V-701 \N \N f 3116 1 2 1100 887.07 141.93 0.00 1029.00 2 2020-10-05 2020-10-05 19:37:02.778205 2020-10-05 19:37:41.637747 1 1 PV1-V-1495 \N \N f 3117 1 2 1100 1028.00 0.00 0.00 1028.00 2 2020-10-05 2020-10-05 20:11:28.622436 2020-10-05 20:11:33.600613 1 1 PV1-V-1496 \N \N f 3118 1 2 1100 549.00 0.00 0.00 549.00 2 2020-10-05 2020-10-05 21:34:54.438701 2020-10-05 21:34:58.61109 1 1 PV1-V-1497 \N \N f 3119 1 21 1099 2498.00 0.00 0.00 2498.00 2 2020-10-05 2020-10-06 00:12:54.931214 2020-10-06 00:13:16.211521 1 24 PV3-V-702 \N \N f 3120 1 21 1099 1499.00 0.00 0.00 1499.00 2 2020-10-05 2020-10-06 00:17:54.439561 2020-10-06 00:18:05.377368 1 24 PV3-V-703 \N \N f 3121 1 2 1100 560.00 0.00 0.00 560.00 2 2020-10-05 2020-10-06 00:18:55.617074 2020-10-06 00:19:58.241527 1 1 PV1-V-1498 \N \N f 3122 1 21 1099 199.00 0.00 0.00 199.00 2 2020-10-05 2020-10-06 00:29:44.945372 2020-10-06 00:29:55.8335 1 12 PV3-V-704 \N \N f 3123 1 2 1101 569.00 0.00 0.00 569.00 2 2020-10-06 2020-10-06 18:34:26.689275 2020-10-06 18:34:30.740449 1 1 PV1-V-1499 \N \N f 3124 1 18 1099 568.00 0.00 0.00 568.00 2 2020-10-06 2020-10-06 19:45:53.94059 2020-10-06 19:45:58.54981 1 14 PV3-V-705 \N \N f 3125 194 18 1099 1927.00 0.00 0.00 1927.00 1 2020-10-06 2020-10-06 22:48:20.708583 2020-10-06 22:48:35.899527 1 14 PV3-V-706 \N \N f 3105 404 18 1095 1199.00 0.00 0.00 1199.00 2 2020-10-02 2020-10-02 21:58:36.999583 2020-11-11 23:00:20.440182 2 14 PV3-V-696 2020-11-06 \N f 3127 1 18 1099 2248.00 0.00 0.00 2248.00 2 2020-10-06 2020-10-06 23:05:20.120916 2020-10-06 23:05:34.316121 1 24 PV3-V-708 \N \N f 3128 1 2 1101 1318.00 0.00 0.00 1318.00 2 2020-10-06 2020-10-07 00:44:03.106612 2020-10-07 00:44:23.943587 1 1 PV1-V-1500 \N \N f 3129 1 2 1102 434.52 34.48 219.00 250.00 2 2020-10-07 2020-10-07 16:23:45.995884 2020-10-07 16:23:51.049685 1 1 PV1-V-1501 \N \N f 3130 1 2 1102 569.00 0.00 0.00 569.00 2 2020-10-07 2020-10-07 17:44:17.762432 2020-10-07 17:44:21.634508 1 1 PV1-V-1502 \N \N f 3131 1 2 1102 1499.00 0.00 0.00 1499.00 2 2020-10-07 2020-10-07 20:28:42.255528 2020-10-07 20:29:20.078719 1 1 PV1-V-1503 \N \N f 3132 1 2 1102 699.00 0.00 0.00 699.00 2 2020-10-07 2020-10-07 20:35:03.486084 2020-10-07 20:35:30.621886 1 1 PV1-V-1504 \N \N f 3133 1 2 1102 1699.00 0.00 679.00 1020.00 2 2020-10-07 2020-10-07 21:11:03.533189 2020-10-07 21:11:43.015837 1 27 PV1-V-1505 \N \N f 3134 1 2 1102 708.00 0.00 0.00 708.00 1 2020-10-07 2020-10-07 21:26:16.88084 2020-10-07 21:27:43.077567 1 1 PV1-V-1506 \N \N f 3135 1 2 1102 833.00 0.00 0.00 833.00 2 2020-10-07 2020-10-07 21:28:39.437258 2020-10-07 21:29:35.809174 1 1 PV1-V-1507 \N \N f 3136 1 18 1103 378.00 0.00 0.00 378.00 2 2020-10-07 2020-10-07 23:14:15.034185 2020-10-07 23:14:19.741391 1 14 PV3-V-709 \N \N f 3111 405 2 1096 499.00 0.00 0.00 499.00 2 2020-10-03 2020-10-03 22:29:12.954633 2020-10-09 16:40:44.002134 2 1 PV1-V-1491 2020-11-07 \N f 3137 1 18 1103 289.00 0.00 0.00 289.00 2 2020-10-07 2020-10-07 23:15:00.367482 2020-10-07 23:15:28.606001 1 14 PV3-V-710 \N \N f 3138 1 18 1103 699.00 0.00 0.00 699.00 2 2020-10-07 2020-10-07 23:57:57.321557 2020-10-07 23:58:54.769868 1 14 PV3-V-711 \N \N f 3139 1 2 1102 699.00 0.00 0.00 699.00 2 2020-10-07 2020-10-08 00:31:34.387814 2020-10-08 00:31:38.731985 1 1 PV1-V-1508 \N \N f 3140 1 2 1104 968.00 0.00 0.00 968.00 2 2020-10-08 2020-10-08 18:12:40.624741 2020-10-08 18:12:47.123093 1 1 PV1-V-1509 \N \N f 3141 1 2 1104 1398.00 0.00 0.00 1398.00 2 2020-10-08 2020-10-08 18:22:41.511987 2020-10-08 18:22:46.528471 1 1 PV1-V-1510 \N \N f 3142 1 2 1104 999.00 0.00 0.00 999.00 2 2020-10-08 2020-10-09 00:45:14.737385 2020-10-09 00:45:22.663512 1 28 PV1-V-1511 \N \N f 3179 410 18 1115 10001.00 0.00 0.00 10001.00 2 2020-10-14 2020-10-15 01:32:01.844518 2020-12-05 01:44:17.643464 0 14 PV3-V-737 \N \N f 3144 1 18 1105 318.00 0.00 0.00 318.00 2 2020-10-08 2020-10-09 00:48:49.713338 2020-10-09 00:48:53.916863 1 14 PV3-V-713 \N \N f 3145 1 2 1106 529.00 0.00 0.00 529.00 2 2020-10-09 2020-10-09 20:05:38.48525 2020-10-09 20:05:42.982817 1 1 PV1-V-1512 \N \N f 3146 1 18 1107 2798.00 0.00 0.00 2798.00 1 2020-10-09 2020-10-09 21:29:36.96643 2020-10-09 21:29:40.629363 1 14 PV3-V-714 \N \N f 3147 1 18 1107 2798.00 0.00 350.00 2448.00 2 2020-10-09 2020-10-09 21:32:23.762099 2020-10-09 21:32:37.233185 1 14 PV3-V-715 \N \N f 3148 1 18 1107 999.00 0.00 0.00 999.00 2 2020-10-09 2020-10-09 21:33:55.610081 2020-10-09 21:34:09.384354 1 14 PV3-V-716 \N \N f 3149 1 18 1107 1059.00 0.00 0.00 1059.00 2 2020-10-09 2020-10-09 21:48:16.5064 2020-10-09 21:48:57.850561 1 14 PV3-V-717 \N \N f 3150 1 18 1107 999.00 0.00 0.00 999.00 2 2020-10-09 2020-10-09 21:50:29.181224 2020-10-09 21:50:33.11105 1 14 PV3-V-718 \N \N f 3151 1 18 1107 1699.00 0.00 0.00 1699.00 2 2020-10-09 2020-10-09 23:56:18.017572 2020-10-09 23:56:43.844012 1 14 PV3-V-719 \N \N f 3152 1 18 1107 999.00 0.00 0.00 999.00 2 2020-10-09 2020-10-09 23:58:31.980063 2020-10-09 23:58:38.035518 1 14 PV3-V-720 \N \N f 3153 1 2 1106 828.00 0.00 0.00 828.00 2 2020-10-09 2020-10-10 00:00:37.754027 2020-10-10 00:00:45.745547 1 1 PV1-V-1513 \N \N f 3154 1 2 1106 1899.00 0.00 0.00 1899.00 2 2020-10-09 2020-10-10 00:28:08.272301 2020-10-10 00:28:36.811349 1 27 PV1-V-1514 \N \N f 3183 1 2 1116 1858.00 0.00 639.00 1219.00 2 2020-10-15 2020-10-15 18:57:46.640857 2020-10-15 18:57:51.509276 1 1 PV1-V-1524 \N \N f 3156 1 21 1108 1767.00 0.00 0.00 1767.00 2 2020-10-10 2020-10-10 20:00:38.835169 2020-10-10 20:01:31.012317 1 24 PV3-V-722 \N \N f 3157 1 2 1109 1498.00 0.00 0.00 1498.00 2 2020-10-10 2020-10-10 21:02:09.685664 2020-10-10 21:02:14.546365 1 1 PV1-V-1515 \N \N f 3160 408 2 1110 999.00 0.00 0.00 999.00 2 2020-10-12 2020-10-12 17:16:07.303165 2020-10-15 18:59:31.885624 2 1 PV1-V-1517 2020-11-16 \N f 3159 1 21 1108 489.00 0.00 0.00 489.00 2 2020-10-10 2020-10-10 23:12:22.238616 2020-10-10 23:13:06.892724 1 12 PV3-V-723 \N \N f 3158 1 2 1109 649.00 0.00 0.00 649.00 1 2020-10-10 2020-10-10 23:08:46.109078 2020-10-10 23:29:50.235072 1 1 PV1-V-1516 \N \N f 3161 1 2 1110 1499.00 0.00 0.00 1499.00 2 2020-10-12 2020-10-12 21:06:12.207969 2020-10-12 21:06:32.973408 1 28 PV1-V-1518 \N \N f 3162 1 18 1111 1119.00 0.00 0.00 1119.00 2 2020-10-12 2020-10-12 23:04:49.625325 2020-10-12 23:04:56.498318 1 14 PV3-V-724 \N \N f 3163 1 2 1110 1189.00 0.00 0.00 1189.00 2 2020-10-12 2020-10-12 23:12:45.998732 2020-10-12 23:13:05.363005 1 1 PV1-V-1519 \N \N f 3164 1 18 1112 228.00 0.00 0.00 228.00 2 2020-10-13 2020-10-13 18:34:14.417648 2020-10-13 18:34:19.570724 1 14 PV3-V-725 \N \N f 3165 1 18 1112 3156.00 0.00 0.00 3156.00 2 2020-10-13 2020-10-13 21:28:32.360019 2020-10-13 21:28:44.897467 1 14 PV3-V-726 \N \N f 3166 1 18 1112 479.00 0.00 0.00 479.00 2 2020-10-13 2020-10-14 00:24:02.522741 2020-10-14 00:24:33.876535 1 14 PV3-V-727 \N \N f 3167 1 18 1112 499.00 0.00 0.00 499.00 2 2020-10-13 2020-10-14 00:32:24.938209 2020-10-14 00:32:29.418847 1 14 PV3-V-728 \N \N f 3168 275 18 1112 1398.00 0.00 0.00 1398.00 1 2020-10-13 2020-10-14 00:43:24.885998 2020-10-14 00:43:42.099487 1 14 PV3-V-729 \N \N f 3169 275 18 1112 1398.00 0.00 0.00 1398.00 1 2020-10-13 2020-10-14 00:44:04.286953 2020-10-14 00:44:19.464067 2 14 PV3-V-730 2020-11-17 \N f 3170 275 18 1112 1398.00 0.00 0.00 1398.00 0 2020-10-13 2020-10-14 00:44:41.859163 2020-10-14 00:44:41.859163 0 14 PV3-V-731 \N \N f 3171 1 18 1112 1599.00 0.00 0.00 1599.00 2 2020-10-13 2020-10-14 00:48:10.353069 2020-10-14 00:48:42.775055 1 14 PV3-V-732 \N \N f 3172 1 2 1114 369.00 0.00 0.00 369.00 2 2020-10-14 2020-10-14 18:45:14.126445 2020-10-14 18:45:18.127269 1 1 PV1-V-1520 \N \N f 3173 1 18 1115 2887.83 179.17 300.00 2767.00 2 2020-10-14 2020-10-14 19:33:01.650992 2020-10-14 19:34:04.107189 1 14 PV3-V-733 \N \N f 3174 1 18 1115 600.72 48.28 0.00 649.00 2 2020-10-14 2020-10-14 23:07:43.946424 2020-10-14 23:07:54.399336 1 14 PV3-V-734 \N \N f 3155 407 21 1108 999.00 0.00 0.00 999.00 2 2020-10-10 2020-10-10 19:45:01.687447 2020-10-14 23:15:57.82917 2 12 PV3-V-721 2020-11-14 \N f 3175 1 18 1115 649.00 0.00 0.00 649.00 2 2020-10-14 2020-10-14 23:42:03.405863 2020-10-14 23:42:17.359729 1 14 PV3-V-735 \N \N f 3176 1 2 1114 599.00 0.00 0.00 599.00 2 2020-10-14 2020-10-15 00:13:06.540726 2020-10-15 00:13:26.701381 1 1 PV1-V-1521 \N \N f 3177 1 2 1114 1185.24 82.76 668.00 600.00 2 2020-10-14 2020-10-15 00:23:05.637414 2020-10-15 00:23:10.324731 1 1 PV1-V-1522 \N \N f 3178 409 18 1115 10001.00 0.00 0.00 10001.00 1 2020-10-14 2020-10-15 01:26:28.119194 2020-10-15 01:26:53.381334 1 14 PV3-V-736 \N \N f 3180 1 2 1116 999.00 0.00 0.00 999.00 2 2020-10-15 2020-10-15 18:10:22.423124 2020-10-15 18:10:26.875584 1 1 PV1-V-1523 \N \N f 3182 1 18 1117 529.00 0.00 0.00 529.00 2 2020-10-15 2020-10-15 18:38:59.052018 2020-10-15 18:40:24.049032 1 14 PV3-V-739 \N \N f 3184 1 18 1117 1568.00 0.00 0.00 1568.00 2 2020-10-15 2020-10-15 19:36:10.214491 2020-10-15 19:37:26.034014 1 14 PV3-V-740 \N \N f 3185 1 18 1117 149.00 0.00 0.00 149.00 2 2020-10-15 2020-10-15 21:19:09.987583 2020-10-15 21:20:35.347099 1 14 PV3-V-741 \N \N f 3186 1 18 1117 849.00 0.00 349.00 500.00 2 2020-10-15 2020-10-15 21:46:12.63646 2020-10-15 21:54:56.918871 1 14 PV3-V-742 \N \N f 3187 1 18 1117 1399.00 0.00 0.00 1399.00 2 2020-10-15 2020-10-15 21:55:09.470442 2020-10-15 21:55:27.183714 1 14 PV3-V-743 \N \N f 3188 1 2 1116 1599.00 0.00 0.00 1599.00 2 2020-10-15 2020-10-15 22:02:33.111358 2020-10-15 22:03:00.733593 1 1 PV1-V-1525 \N \N f 3189 1 2 1116 599.00 0.00 0.00 599.00 2 2020-10-15 2020-10-15 22:24:39.946169 2020-10-15 22:25:58.684167 1 1 PV1-V-1526 \N \N f 3190 1 18 1117 1799.00 0.00 0.00 1799.00 1 2020-10-15 2020-10-15 23:16:47.837298 2020-10-15 23:17:15.185602 1 14 PV3-V-744 \N \N f 3191 1 18 1117 1799.00 0.00 0.00 1799.00 2 2020-10-15 2020-10-15 23:17:35.245599 2020-10-15 23:17:45.657193 1 29 PV3-V-745 \N \N f 3192 1 18 1117 1015.38 82.62 0.00 1098.00 2 2020-10-15 2020-10-15 23:19:39.018618 2020-10-15 23:20:13.346612 1 14 PV3-V-746 \N \N f 3195 385 2 1116 1899.00 0.00 0.00 1899.00 2 2020-10-15 2020-10-16 00:35:32.123581 2020-11-13 21:58:23.909479 2 30 PV1-V-1528 2020-11-19 \N f 3194 385 2 1116 1899.00 0.00 0.00 1899.00 1 2020-10-15 2020-10-16 00:32:58.902474 2020-10-16 00:33:36.609945 2 30 PV1-V-1527 2020-11-19 \N f 3143 406 18 1105 2798.00 0.00 0.00 2798.00 2 2020-10-08 2020-10-09 00:47:33.072332 2020-11-25 00:13:32.034432 2 14 PV3-V-712 2020-11-12 \N f 3196 1 18 1117 899.00 0.00 0.00 899.00 2 2020-10-15 2020-10-16 01:22:29.219717 2020-10-16 01:22:45.86326 1 14 PV3-V-748 \N \N f 3197 1 18 1117 1799.00 0.00 0.00 1799.00 2 2020-10-15 2020-10-16 01:35:16.808036 2020-10-16 01:35:28.556703 1 24 PV3-V-749 \N \N f 3193 412 18 1117 1599.00 0.00 0.00 1599.00 2 2020-10-15 2020-10-15 23:47:13.262198 2020-11-07 02:19:40.388615 2 14 PV3-V-747 2020-11-19 \N f 3199 1 18 1119 1399.00 0.00 0.00 1399.00 2 2020-10-16 2020-10-16 18:48:15.546037 2020-10-16 18:48:33.140334 1 24 PV3-V-750 \N \N f 3200 1 18 1119 3298.00 0.00 0.00 3298.00 2 2020-10-16 2020-10-16 21:11:53.242664 2020-10-16 21:12:07.427238 1 14 PV3-V-751 \N \N f 3201 1 18 1119 369.00 0.00 69.00 300.00 2 2020-10-16 2020-10-16 23:45:13.452169 2020-10-16 23:45:17.797462 1 14 PV3-V-752 \N \N f 3181 411 18 1117 1499.00 0.00 0.00 1499.00 2 2020-10-15 2020-10-15 18:35:26.673875 2020-10-16 23:45:51.227855 2 14 PV3-V-738 2020-11-19 \N f 3198 1 2 1118 899.00 0.00 0.00 899.00 1 2020-10-16 2020-10-16 18:01:14.263358 2020-10-17 20:12:08.789598 1 1 PV1-V-1529 \N \N f 3203 1 18 1119 1499.00 0.00 0.00 1499.00 1 2020-10-16 2020-10-17 00:38:30.130819 2020-10-17 00:40:41.884736 1 24 PV3-V-754 \N \N f 3204 1 18 1119 1499.00 0.00 0.00 1499.00 2 2020-10-16 2020-10-17 00:41:07.484529 2020-10-17 00:41:29.240593 1 14 PV3-V-755 \N \N f 3205 1 9 1120 928.00 0.00 0.00 928.00 2 2020-10-17 2020-10-17 16:57:51.904075 2020-10-17 16:58:04.188386 1 30 PV1-V-1530 \N \N f 3206 1 21 1121 499.00 0.00 0.00 499.00 2 2020-10-17 2020-10-17 17:58:07.82527 2020-10-17 17:58:34.966549 1 23 PV3-V-756 \N \N f 3207 1 9 1120 2598.00 0.00 0.00 2598.00 2 2020-10-17 2020-10-17 19:26:20.151634 2020-10-17 19:27:12.961075 1 30 PV1-V-1531 \N \N f 3208 1 21 1121 126.72 20.28 0.00 147.00 2 2020-10-17 2020-10-17 20:10:37.524803 2020-10-17 20:10:41.643515 1 23 PV3-V-757 \N \N f 3209 1 9 1120 649.00 0.00 0.00 649.00 1 2020-10-17 2020-10-17 20:14:52.78496 2020-10-17 20:15:00.249819 1 30 PV1-V-1532 \N \N f 3210 1 9 1120 788.00 0.00 0.00 788.00 2 2020-10-17 2020-10-17 20:15:17.678881 2020-10-17 20:15:31.087157 1 30 PV1-V-1533 \N \N f 3211 1 9 1120 1599.00 0.00 619.00 980.00 2 2020-10-17 2020-10-17 21:21:12.263957 2020-10-17 21:21:51.104466 1 30 PV1-V-1534 \N \N f 3212 1 9 1120 1299.00 0.00 99.00 1200.00 2 2020-10-17 2020-10-17 22:00:11.895824 2020-10-17 22:02:27.147167 1 30 PV1-V-1535 \N \N f 3213 1 21 1121 499.00 0.00 0.00 499.00 2 2020-10-17 2020-10-17 22:11:12.57821 2020-10-17 22:11:18.464116 1 23 PV3-V-758 \N \N f 3227 415 18 1128 1399.00 0.00 0.00 1399.00 2 2020-10-21 2020-10-22 00:00:52.130263 2020-11-10 01:31:57.302989 2 14 PV3-V-765 2020-11-25 \N f 3215 1 2 1123 189.00 0.00 0.00 189.00 2 2020-10-19 2020-10-19 21:17:51.117213 2020-10-19 21:18:09.107938 1 1 PV1-V-1536 \N \N f 3217 1 21 1124 42.24 6.76 0.00 49.00 2 2020-10-19 2020-10-20 00:56:30.686754 2020-10-20 00:56:34.337593 1 12 PV3-V-761 \N \N f 3218 1 2 1125 1088.00 0.00 0.00 1088.00 2 2020-10-20 2020-10-20 17:42:38.508695 2020-10-20 17:43:39.755928 1 1 PV1-V-1537 \N \N f 3219 1 18 1126 420.00 0.00 0.00 420.00 2 2020-10-20 2020-10-20 22:36:48.987125 2020-10-20 22:37:30.141913 1 14 PV3-V-762 \N \N f 3232 416 18 1130 1399.00 0.00 0.00 1399.00 1 2020-10-22 2020-10-23 00:26:54.737831 2020-10-23 00:27:06.730361 1 14 PV3-V-769 \N \N f 3220 1 2 1125 999.00 0.00 0.00 999.00 1 2020-10-20 2020-10-20 23:51:08.851276 2020-10-20 23:55:14.878177 1 1 PV1-V-1538 \N \N f 3221 1 2 1125 999.00 0.00 0.00 999.00 2 2020-10-20 2020-10-20 23:55:31.060936 2020-10-20 23:55:34.939373 1 1 PV1-V-1539 \N \N f 3222 1 2 1125 1327.07 141.93 440.00 1029.00 2 2020-10-20 2020-10-20 23:58:01.163508 2020-10-20 23:58:23.096274 1 1 PV1-V-1540 \N \N f 3223 1 2 1125 657.62 41.38 399.00 300.00 2 2020-10-20 2020-10-21 00:18:59.400229 2020-10-21 00:19:03.038893 1 1 PV1-V-1541 \N \N f 3224 1 2 1127 529.00 0.00 0.00 529.00 2 2020-10-21 2020-10-21 22:23:46.000635 2020-10-21 22:24:11.368642 1 1 PV1-V-1542 \N \N f 3225 1 18 1128 1499.00 0.00 0.00 1499.00 2 2020-10-21 2020-10-21 23:49:08.967302 2020-10-21 23:49:14.116239 1 29 PV3-V-763 \N \N f 3226 1 18 1128 999.00 0.00 0.00 999.00 2 2020-10-21 2020-10-21 23:52:44.185025 2020-10-21 23:52:51.568478 1 14 PV3-V-764 \N \N f 3202 383 18 1119 899.00 0.00 0.00 899.00 2 2020-10-16 2020-10-17 00:15:14.065195 2020-11-21 00:19:33.603155 2 14 PV3-V-753 2020-11-20 \N f 3228 1 18 1130 1499.00 0.00 0.00 1499.00 2 2020-10-22 2020-10-22 20:52:25.860564 2020-10-22 20:52:30.762242 1 14 PV3-V-766 \N \N f 3229 1 2 1129 699.00 0.00 0.00 699.00 2 2020-10-22 2020-10-22 22:28:43.204089 2020-10-22 22:28:47.377024 1 1 PV1-V-1543 \N \N f 3230 1 18 1130 1499.00 0.00 0.00 1499.00 2 2020-10-22 2020-10-22 23:39:15.331525 2020-10-22 23:39:29.34047 1 24 PV3-V-767 \N \N f 3231 1 18 1130 1799.00 0.00 0.00 1799.00 2 2020-10-22 2020-10-22 23:48:38.564387 2020-10-22 23:48:43.190414 1 24 PV3-V-768 \N \N f 3246 1 2 1131 1598.00 0.00 0.00 1598.00 1 2020-10-23 2020-10-24 00:18:01.216816 2020-10-24 00:24:32.397157 1 1 PV1-V-1546 \N \N f 3214 413 21 1121 1499.00 0.00 0.00 1499.00 2 2020-10-17 2020-10-18 00:20:06.823865 2020-11-04 20:50:14.528896 2 23 PV3-V-759 2020-11-21 \N f 3234 1 18 1130 1199.00 0.00 0.00 1199.00 2 2020-10-22 2020-10-23 01:03:17.384779 2020-10-23 01:03:30.646572 1 24 PV3-V-771 \N \N f 3216 414 21 1124 645.69 103.31 0.00 749.00 4 2020-10-19 2020-10-19 22:55:11.662854 2020-12-15 01:20:46.195365 2 12 PV3-V-760 2020-11-23 \N f 3236 1 18 1132 1101.59 96.41 0.00 1198.00 1 2020-10-23 2020-10-23 18:58:02.473594 2020-10-23 18:58:24.477672 1 14 PV3-V-773 \N \N f 3237 1 18 1132 3283.00 0.00 0.00 3283.00 2 2020-10-23 2020-10-23 21:08:49.320667 2020-10-23 21:09:02.913135 1 14 PV3-V-774 \N \N f 3238 1 18 1132 699.00 0.00 0.00 699.00 2 2020-10-23 2020-10-23 21:33:54.430147 2020-10-23 21:35:36.559732 1 14 PV3-V-775 \N \N f 3239 1 18 1132 42.24 6.76 0.00 49.00 2 2020-10-23 2020-10-23 21:36:14.542014 2020-10-23 21:36:18.698916 1 14 PV3-V-776 \N \N f 3240 1 18 1132 1799.00 0.00 0.00 1799.00 2 2020-10-23 2020-10-23 22:08:56.256806 2020-10-23 22:09:00.812425 1 14 PV3-V-777 \N \N f 3241 1 18 1132 1398.00 0.00 0.00 1398.00 2 2020-10-23 2020-10-23 22:11:34.886369 2020-10-23 22:12:43.477274 1 14 PV3-V-778 \N \N f 3242 194 18 1132 1399.00 0.00 0.00 1399.00 1 2020-10-23 2020-10-23 23:03:44.605509 2020-10-23 23:03:56.525405 1 14 PV3-V-779 \N \N f 3243 242 18 1132 1399.00 0.00 0.00 1399.00 3 2020-10-23 2020-10-23 23:05:22.669811 2020-10-23 23:05:40.23223 2 14 PV3-V-780 2020-11-27 \N f 3244 1 2 1131 799.00 0.00 0.00 799.00 2 2020-10-23 2020-10-23 23:36:11.034201 2020-10-23 23:36:34.518314 1 1 PV1-V-1544 \N \N f 3245 1 2 1131 899.00 0.00 330.00 569.00 2 2020-10-23 2020-10-23 23:52:08.276008 2020-10-23 23:52:25.828366 1 1 PV1-V-1545 \N \N f 3254 1 18 1133 899.00 0.00 330.00 569.00 2 2020-10-24 2020-10-24 22:34:35.104825 2020-10-24 22:34:43.566639 1 14 PV3-V-785 \N \N f 3247 1 2 1131 1698.00 0.00 349.00 1349.00 2 2020-10-23 2020-10-24 00:26:56.479539 2020-10-24 00:27:13.043816 1 1 PV1-V-1547 \N \N f 3248 1 18 1133 699.00 0.00 0.00 699.00 2 2020-10-23 2020-10-24 01:18:20.344241 2020-10-24 01:18:31.608785 1 14 PV3-V-781 \N \N f 3249 1 18 1133 499.00 0.00 0.00 499.00 2 2020-10-24 2020-10-24 18:08:51.924132 2020-10-24 18:08:56.94305 1 29 PV3-V-782 \N \N f 3250 1 2 1134 3098.00 0.00 0.00 3098.00 2 2020-10-24 2020-10-24 18:18:09.229566 2020-10-24 18:18:18.189299 1 1 PV1-V-1548 \N \N f 3251 1 18 1133 1099.00 0.00 0.00 1099.00 2 2020-10-24 2020-10-24 19:02:32.61441 2020-10-24 19:03:15.01418 1 14 PV3-V-783 \N \N f 3252 1 18 1133 2998.00 0.00 0.00 2998.00 2 2020-10-24 2020-10-24 20:16:09.050838 2020-10-24 20:16:16.305065 1 29 PV3-V-784 \N \N f 3253 1 2 1134 2198.00 0.00 350.00 1848.00 2 2020-10-24 2020-10-24 20:27:31.625951 2020-10-24 20:27:53.509618 1 30 PV1-V-1549 \N \N f 3235 417 18 1132 1599.00 0.00 0.00 1599.00 2 2020-10-23 2020-10-23 18:56:10.660259 2020-11-24 01:39:56.212131 2 24 PV3-V-772 2020-11-27 \N f 3256 419 2 1134 999.00 0.00 0.00 999.00 3 2020-10-24 2020-10-24 23:50:14.049675 2020-10-24 23:50:44.831876 2 1 PV1-V-1550 2020-11-28 \N f 3233 416 18 1130 1399.00 0.00 0.00 1399.00 2 2020-10-22 2020-10-23 00:27:27.189748 2020-11-03 21:47:27.558941 2 24 PV3-V-770 2020-11-26 \N f 3258 1 18 1133 1399.00 0.00 0.00 1399.00 2 2020-10-24 2020-10-24 23:59:33.882732 2020-10-24 23:59:42.296926 1 14 PV3-V-787 \N \N f 3260 316 21 1135 688.79 110.21 0.00 799.00 1 2020-10-26 2020-10-26 19:42:00.829759 2020-10-26 19:43:42.555263 2 14 PV3-V-789 2020-11-30 \N f 3259 1 21 1135 688.79 110.21 0.00 799.00 1 2020-10-26 2020-10-26 19:39:19.144 2020-10-26 19:40:58.950835 1 14 PV3-V-788 \N \N f 3261 1 2 1136 1799.00 0.00 0.00 1799.00 2 2020-10-26 2020-10-26 20:36:20.886362 2020-10-26 20:36:29.121983 1 28 PV1-V-1552 \N \N f 3262 1 2 1136 369.00 0.00 0.00 369.00 2 2020-10-26 2020-10-26 20:58:17.235065 2020-10-26 20:58:40.173166 1 1 PV1-V-1553 \N \N f 3263 1 2 1136 399.00 0.00 149.00 250.00 2 2020-10-26 2020-10-26 21:20:48.075497 2020-10-26 21:20:51.730684 1 1 PV1-V-1554 \N \N f 3264 1 21 1135 499.00 0.00 0.00 499.00 2 2020-10-26 2020-10-26 21:22:32.798541 2020-10-26 21:22:54.798143 1 14 PV3-V-790 \N \N f 3265 1 21 1135 1499.00 0.00 0.00 1499.00 2 2020-10-26 2020-10-26 21:35:15.201986 2020-10-26 21:35:32.755234 1 14 PV3-V-791 \N \N f 3266 1 21 1135 2299.00 0.00 0.00 2299.00 2 2020-10-26 2020-10-26 22:26:23.416015 2020-10-26 22:26:33.789454 1 14 PV3-V-792 \N \N f 3257 420 2 1134 1799.00 0.00 0.00 1799.00 2 2020-10-24 2020-10-24 23:55:47.956096 2020-10-28 01:49:18.661199 2 1 PV1-V-1551 2020-11-28 \N f 3255 418 18 1133 1799.00 0.00 0.00 1799.00 2 2020-10-24 2020-10-24 23:02:13.35203 2020-11-21 20:42:09.444005 2 29 PV3-V-786 2020-11-28 \N f 3267 1 2 1136 1799.00 0.00 0.00 1799.00 2 2020-10-26 2020-10-26 23:11:53.367338 2020-10-26 23:11:57.795095 1 28 PV1-V-1555 \N \N f 3268 1 2 1136 3598.00 0.00 0.00 3598.00 2 2020-10-26 2020-10-26 23:25:39.38313 2020-10-26 23:26:46.092124 1 1 PV1-V-1556 \N \N f 3269 1 2 1136 479.00 0.00 0.00 479.00 2 2020-10-26 2020-10-26 23:38:56.409396 2020-10-26 23:39:01.442357 1 1 PV1-V-1557 \N \N f 3270 1 2 1136 799.00 0.00 0.00 799.00 2 2020-10-26 2020-10-26 23:51:13.172305 2020-10-26 23:51:16.74514 1 1 PV1-V-1558 \N \N f 3271 1 2 1136 2829.21 137.79 470.00 2497.00 2 2020-10-26 2020-10-27 00:04:38.117093 2020-10-27 00:04:44.447413 1 1 PV1-V-1559 \N \N f 3272 1 21 1135 369.00 0.00 0.00 369.00 2 2020-10-26 2020-10-27 01:10:05.563048 2020-10-27 01:10:37.759299 1 12 PV3-V-793 \N \N f 3298 424 21 1146 1799.00 0.00 0.00 1799.00 2 2020-10-31 2020-10-31 20:56:07.320259 2020-12-08 21:59:09.820185 2 31 PV3-V-809 2020-12-05 \N f 3275 1 2 1137 1599.00 0.00 0.00 1599.00 2 2020-10-27 2020-10-27 23:00:45.024969 2020-10-27 23:00:55.93437 1 28 PV1-V-1561 \N \N f 3276 1 2 1137 669.00 0.00 0.00 669.00 2 2020-10-27 2020-10-27 23:23:13.652152 2020-10-27 23:23:19.505272 1 1 PV1-V-1562 \N \N f 3277 1 2 1139 5796.00 0.00 0.00 5796.00 2 2020-10-28 2020-10-28 20:38:47.560578 2020-10-28 20:53:29.346864 1 28 PV1-V-1563 \N \N f 3278 1 2 1139 969.00 0.00 0.00 969.00 2 2020-10-28 2020-10-29 01:41:27.246204 2020-10-29 01:41:47.029335 1 1 PV1-V-1564 \N \N f 3279 1 18 1141 1799.00 0.00 0.00 1799.00 2 2020-10-29 2020-10-29 20:06:31.198056 2020-10-29 20:06:54.589416 1 14 PV3-V-795 \N \N f 3280 1 18 1141 3598.00 0.00 0.00 3598.00 2 2020-10-29 2020-10-29 20:10:41.255855 2020-10-29 20:10:53.536062 1 24 PV3-V-796 \N \N f 3281 1 18 1141 1499.00 0.00 0.00 1499.00 2 2020-10-29 2020-10-29 20:28:48.278702 2020-10-29 20:29:09.357008 1 14 PV3-V-797 \N \N f 3282 1 18 1141 769.00 0.00 0.00 769.00 2 2020-10-29 2020-10-30 01:21:47.802878 2020-10-30 01:25:45.098365 1 14 PV3-V-798 \N \N f 3283 1 18 1141 1919.00 0.00 0.00 1919.00 2 2020-10-29 2020-10-30 02:05:34.692411 2020-10-30 02:05:46.03836 1 14 PV3-V-799 \N \N f 3284 1 2 1143 2798.00 0.00 0.00 2798.00 2 2020-10-29 2020-10-30 02:11:15.186446 2020-10-30 02:11:41.525822 1 28 PV1-V-1565 \N \N f 3285 1 18 1145 999.00 0.00 0.00 999.00 1 2020-10-30 2020-10-30 19:01:30.086993 2020-10-30 19:02:03.006575 1 14 PV3-V-800 \N \N f 3286 1 18 1145 1998.00 0.00 0.00 1998.00 2 2020-10-30 2020-10-30 19:02:22.167148 2020-10-30 19:04:46.865339 1 14 PV3-V-801 \N \N f 3287 1 2 1144 181.24 6.76 0.00 188.00 2 2020-10-30 2020-10-30 19:43:10.848324 2020-10-30 19:43:15.505755 1 1 PV1-V-1566 \N \N f 3294 424 18 1145 1599.00 0.00 0.00 1599.00 2 2020-10-30 2020-10-31 01:38:09.748697 2020-12-08 21:59:34.639953 2 14 PV3-V-805 2020-12-04 \N f 3289 1 18 1145 999.00 0.00 0.00 999.00 2 2020-10-30 2020-10-30 23:07:48.846261 2020-10-30 23:09:29.413874 1 12 PV3-V-803 \N \N f 3290 1 2 1144 4055.62 41.38 599.00 3498.00 2 2020-10-30 2020-10-30 23:29:09.118064 2020-10-30 23:29:15.356947 1 1 PV1-V-1567 \N \N f 3292 1 2 1144 1499.00 0.00 0.00 1499.00 2 2020-10-30 2020-10-31 01:26:07.621089 2020-10-31 01:26:46.867622 1 1 PV1-V-1568 \N \N f 3312 1 21 1152 499.00 0.00 0.00 499.00 2 2020-11-03 2020-11-03 20:26:59.084505 2020-11-03 20:27:36.297625 1 31 PV3-V-814 \N \N f 3293 1 2 1144 4396.00 0.00 0.00 4396.00 2 2020-10-30 2020-10-31 01:30:08.725993 2020-10-31 01:30:17.184275 1 1 PV1-V-1569 \N \N f 3274 422 2 1137 1398.00 0.00 0.00 1398.00 2 2020-10-27 2020-10-27 22:48:26.098897 2021-03-02 02:06:15.253059 0 30 PV1-V-1560 \N \N f 3295 1 21 1146 1599.00 0.00 0.00 1599.00 2 2020-10-31 2020-10-31 19:24:16.249376 2020-10-31 19:24:22.331513 1 31 PV3-V-806 \N \N f 3296 1 21 1146 379.00 0.00 0.00 379.00 2 2020-10-31 2020-10-31 19:25:33.672749 2020-10-31 19:26:21.812093 1 31 PV3-V-807 \N \N f 3288 423 18 1145 1799.00 0.00 0.00 1799.00 2 2020-10-30 2020-10-30 21:04:21.676395 2020-10-31 19:39:04.601175 2 12 PV3-V-802 2020-12-04 \N f 3291 1 18 1145 899.00 0.00 0.00 899.00 1 2020-10-30 2020-10-31 01:26:04.690727 2020-10-31 20:59:01.633184 1 12 PV3-V-804 \N \N f 3297 424 21 1146 1799.00 0.00 0.00 1799.00 1 2020-10-31 2020-10-31 20:55:01.374399 2020-10-31 20:55:49.445556 1 31 PV3-V-808 \N \N f 3299 1 9 1147 159.00 0.00 0.00 159.00 2 2020-10-31 2020-10-31 23:10:57.309808 2020-10-31 23:11:01.327646 1 1 PV1-V-1570 \N \N f 3300 1 2 1147 629.00 0.00 0.00 629.00 2 2020-10-31 2020-11-01 00:13:49.927436 2020-11-01 00:13:55.041797 1 1 PV1-V-1571 \N \N f 3301 1 21 1146 499.00 0.00 0.00 499.00 2 2020-10-31 2020-11-01 00:37:07.442294 2020-11-01 00:37:11.689608 1 31 PV3-V-810 \N \N f 3302 1 2 1147 2777.00 0.00 0.00 2777.00 2 2020-10-31 2020-11-01 02:11:19.641292 2020-11-01 02:12:52.453609 1 1 PV1-V-1572 \N \N f 3303 1 2 1147 879.00 0.00 280.00 599.00 2 2020-10-31 2020-11-01 02:15:38.184302 2020-11-01 02:15:41.767621 1 1 PV1-V-1573 \N \N f 3304 1 21 1148 249.00 0.00 0.00 249.00 2 2020-11-01 2020-11-01 19:54:56.448173 2020-11-01 19:55:16.040444 1 31 PV3-V-811 \N \N f 3305 1 21 1150 1799.00 0.00 0.00 1799.00 2 2020-11-02 2020-11-02 19:08:19.873239 2020-11-02 19:08:29.998151 1 31 PV3-V-812 \N \N f 3306 1 2 1149 825.00 0.00 0.00 825.00 2 2020-11-02 2020-11-02 20:59:06.352163 2020-11-02 20:59:12.142302 1 1 PV1-V-1574 \N \N f 3307 1 2 1149 1119.00 0.00 0.00 1119.00 2 2020-11-02 2020-11-02 21:01:37.435938 2020-11-02 21:05:08.158864 1 1 PV1-V-1575 \N \N f 3308 1 21 1150 159.00 0.00 0.00 159.00 2 2020-11-02 2020-11-02 21:11:47.105087 2020-11-02 21:11:57.278083 1 31 PV3-V-813 \N \N f 3310 1 2 1149 699.00 0.00 0.00 699.00 2 2020-11-02 2020-11-02 23:58:25.818611 2020-11-03 00:00:20.843852 1 1 PV1-V-1577 \N \N f 3311 1 2 1151 1399.00 0.00 0.00 1399.00 2 2020-11-03 2020-11-03 18:33:58.161843 2020-11-03 18:34:08.837473 1 1 PV1-V-1578 \N \N f 3309 425 2 1149 1399.00 0.00 0.00 1399.00 2 2020-11-02 2020-11-02 23:28:45.746425 2020-11-03 19:08:44.778808 2 1 PV1-V-1576 2020-12-07 \N f 3313 1 2 1151 1178.00 0.00 0.00 1178.00 2 2020-11-03 2020-11-03 22:50:15.594957 2020-11-03 22:50:20.476425 1 1 PV1-V-1579 \N \N f 3314 1 21 1152 699.00 0.00 0.00 699.00 2 2020-11-03 2020-11-03 23:48:34.196715 2020-11-03 23:49:08.969381 1 31 PV3-V-815 \N \N f 3315 1 21 1152 1799.00 0.00 0.00 1799.00 2 2020-11-03 2020-11-04 01:14:58.725074 2020-11-04 01:15:18.939898 1 12 PV3-V-816 \N \N f 3316 1 21 1152 1199.00 0.00 0.00 1199.00 2 2020-11-03 2020-11-04 01:17:32.125968 2020-11-04 01:17:40.333597 1 31 PV3-V-815 \N \N f 3317 1 21 1152 699.00 0.00 0.00 699.00 2 2020-11-03 2020-11-04 02:18:17.161773 2020-11-04 02:18:21.13629 1 31 PV3-V-818 \N \N f 3318 1 2 1154 989.00 0.00 0.00 989.00 2 2020-11-04 2020-11-04 21:32:23.36495 2020-11-04 21:32:28.038036 1 1 PV1-V-1580 \N \N f 3319 1 21 1153 1199.00 0.00 0.00 1199.00 2 2020-11-04 2020-11-04 22:01:44.963853 2020-11-04 22:03:19.675664 1 31 PV3-V-819 \N \N f 3320 1 2 1154 1199.00 0.00 0.00 1199.00 2 2020-11-04 2020-11-04 22:33:44.515792 2020-11-04 22:33:53.286853 1 1 PV1-V-1581 \N \N f 3321 1 21 1153 1799.00 0.00 0.00 1799.00 2 2020-11-04 2020-11-04 22:55:23.423293 2020-11-04 22:56:56.751864 1 31 PV3-V-820 \N \N f 3322 1 2 1154 1488.00 0.00 0.00 1488.00 2 2020-11-04 2020-11-05 00:37:57.358055 2020-11-05 00:38:02.88902 1 1 PV1-V-1582 \N \N f 3323 1 2 1154 899.00 0.00 0.00 899.00 2 2020-11-04 2020-11-05 01:02:09.882837 2020-11-05 01:02:15.165991 1 1 PV1-V-1583 \N \N f 3324 1 18 1153 999.00 0.00 0.00 999.00 2 2020-11-04 2020-11-05 02:13:19.705065 2020-11-05 02:13:23.785279 1 14 PV3-V-821 \N \N f 3325 1 21 1156 1069.00 0.00 0.00 1069.00 2 2020-11-05 2020-11-05 20:00:14.74742 2020-11-05 20:00:35.251133 1 31 PV3-V-822 \N \N f 3326 1 2 1155 999.00 0.00 0.00 999.00 2 2020-11-05 2020-11-05 21:07:46.83409 2020-11-05 21:07:51.677365 1 1 PV1-V-1584 \N \N f 3327 1 21 1156 2294.00 0.00 0.00 2294.00 2 2020-11-05 2020-11-05 21:20:40.061082 2020-11-05 21:22:02.656323 1 31 PV3-V-823 \N \N f 3328 1 21 1156 169.00 0.00 0.00 169.00 2 2020-11-05 2020-11-05 21:24:22.608011 2020-11-05 21:24:30.063643 1 31 PV3-V-824 \N \N f 3329 1 2 1155 1099.00 0.00 0.00 1099.00 2 2020-11-05 2020-11-05 21:42:23.857786 2020-11-05 21:42:29.732481 1 1 PV1-V-1585 \N \N f 3330 1 2 1155 179.00 0.00 0.00 179.00 2 2020-11-05 2020-11-05 21:57:31.440988 2020-11-05 21:57:37.837664 1 1 PV1-V-1586 \N \N f 3331 1 2 1155 811.00 0.00 0.00 811.00 2 2020-11-05 2020-11-05 22:13:29.477467 2020-11-05 22:13:43.789964 1 1 PV1-V-1587 \N \N f 3332 1 21 1156 1168.00 0.00 0.00 1168.00 2 2020-11-05 2020-11-05 22:22:26.681631 2020-11-05 22:23:49.487122 1 31 PV3-V-825 \N \N f 3273 421 18 1138 3598.00 0.00 0.00 3598.00 2 2020-10-27 2020-10-27 20:14:47.297846 2020-11-12 23:51:32.537501 2 12 PV3-V-794 2020-12-01 \N f 3333 1 2 1155 1169.00 0.00 0.00 1169.00 2 2020-11-05 2020-11-05 22:24:30.62723 2020-11-05 22:24:34.743426 1 1 PV1-V-1588 \N \N f 3334 1 21 1156 1697.00 0.00 0.00 1697.00 1 2020-11-05 2020-11-05 22:52:10.17713 2020-11-05 22:54:35.654274 1 31 PV3-V-826 \N \N f 3335 1 21 1156 1697.00 0.00 0.00 1697.00 2 2020-11-05 2020-11-05 22:58:00.726771 2020-11-05 22:59:07.016054 1 31 PV3-V-827 \N \N f 3336 1 2 1155 2497.00 0.00 0.00 2497.00 2 2020-11-05 2020-11-05 23:15:09.886983 2020-11-05 23:15:48.421485 1 1 PV1-V-1589 \N \N f 3337 1 21 1156 2998.00 0.00 0.00 2998.00 2 2020-11-05 2020-11-05 23:17:39.667062 2020-11-05 23:18:35.31901 1 29 PV3-V-828 \N \N f 3338 1 21 1156 1599.00 0.00 0.00 1599.00 2 2020-11-05 2020-11-06 00:43:14.237428 2020-11-06 00:43:19.309349 1 14 PV3-V-829 \N \N f 3339 1 18 1156 1799.00 0.00 0.00 1799.00 2 2020-11-05 2020-11-06 01:32:15.587277 2020-11-06 01:32:26.587176 1 14 PV3-V-830 \N \N f 3347 270 32 1157 1433.62 165.38 400.00 1199.00 2 2020-11-06 2020-11-06 23:00:20.612272 2020-11-14 00:32:43.698256 2 14 PV3-V-836 2020-12-11 \N f 3366 292 2 1160 629.00 0.00 0.00 629.00 2 2020-11-07 2020-11-08 01:07:09.454356 2020-12-13 01:14:06.073086 2 1 PV1-V-1604 2020-12-12 \N f 3343 1 18 1157 1389.00 0.00 0.00 1389.00 2 2020-11-06 2020-11-06 20:52:00.242449 2020-11-06 20:52:20.580754 1 31 PV3-V-833 \N \N f 3344 1 2 1158 799.00 0.00 0.00 799.00 2 2020-11-06 2020-11-06 22:04:17.108455 2020-11-06 22:04:31.331812 1 1 PV1-V-1591 \N \N f 3345 1 32 1157 1508.00 0.00 0.00 1508.00 2 2020-11-06 2020-11-06 22:48:08.984955 2020-11-06 22:48:53.32448 1 31 PV3-V-834 \N \N f 3346 1 32 1157 787.00 0.00 0.00 787.00 2 2020-11-06 2020-11-06 22:51:52.397965 2020-11-06 22:52:03.028576 1 14 PV3-V-835 \N \N f 3365 292 2 1160 1399.00 0.00 0.00 1399.00 2 2020-11-07 2020-11-08 01:02:44.232986 2020-11-20 00:25:24.583044 2 1 PV1-V-1603 2020-12-12 \N f 3348 1 18 1157 499.00 0.00 0.00 499.00 2 2020-11-06 2020-11-07 00:01:56.412068 2020-11-07 00:02:06.460128 1 14 PV3-V-837 \N \N f 3349 1 18 1157 238.00 0.00 0.00 238.00 2 2020-11-06 2020-11-07 00:23:48.372265 2020-11-07 00:24:02.051856 1 14 PV3-V-838 \N \N f 3350 1 2 1158 1699.00 0.00 0.00 1699.00 2 2020-11-06 2020-11-07 00:25:55.525752 2020-11-07 00:26:09.120122 1 1 PV1-V-1592 \N \N f 3351 1 18 1157 2299.00 0.00 0.00 2299.00 2 2020-11-06 2020-11-07 00:51:40.282374 2020-11-07 00:51:49.119171 1 24 PV3-V-839 \N \N f 3352 1 18 1157 1199.00 0.00 0.00 1199.00 2 2020-11-06 2020-11-07 00:52:58.448799 2020-11-07 00:53:09.970544 1 24 PV3-V-840 \N \N f 3353 1 2 1159 1799.00 0.00 0.00 1799.00 2 2020-11-06 2020-11-07 02:08:39.078143 2020-11-07 02:08:43.415464 1 1 PV1-V-1593 \N \N f 3354 1 18 1157 1249.00 0.00 0.00 1249.00 2 2020-11-06 2020-11-07 02:25:18.648693 2020-11-07 02:25:25.212258 1 14 PV3-V-841 \N \N f 3355 1 18 1157 899.00 0.00 0.00 899.00 2 2020-11-06 2020-11-07 02:35:59.619393 2020-11-07 02:36:17.041184 1 14 PV3-V-842 \N \N f 3356 1 2 1160 699.00 0.00 0.00 699.00 2 2020-11-07 2020-11-07 17:52:27.163703 2020-11-07 17:53:06.515518 1 1 PV1-V-1594 \N \N f 3373 3 2 1162 6893.00 0.00 0.00 6893.00 2 2020-11-09 2020-11-09 23:56:23.695903 2021-02-11 01:04:11.858435 0 30 PV1-V-1608 \N \N f 3384 431 2 1166 4597.00 0.00 0.00 4597.00 2 2020-11-11 2020-11-11 21:00:58.6974 2020-12-10 01:17:02.730266 2 1 PV1-V-1616 2020-12-16 \N f 3359 1 2 1160 698.00 0.00 0.00 698.00 2 2020-11-07 2020-11-07 19:55:28.333643 2020-11-07 19:55:32.282202 1 1 PV1-V-1597 \N \N f 3360 1 2 1160 999.00 0.00 0.00 999.00 2 2020-11-07 2020-11-07 19:57:33.266632 2020-11-07 19:57:51.495421 1 30 PV1-V-1598 \N \N f 3358 427 2 1160 698.00 0.00 0.00 698.00 2 2020-11-07 2020-11-07 19:14:26.126669 2020-11-28 19:09:37.665503 2 1 PV1-V-1596 2020-12-12 \N f 3362 1 2 1160 1947.00 0.00 0.00 1947.00 2 2020-11-07 2020-11-07 22:36:01.096228 2020-11-07 22:36:22.9407 1 1 PV1-V-1600 \N \N f 3364 1 2 1160 1998.00 0.00 0.00 1998.00 2 2020-11-07 2020-11-08 00:21:25.936432 2020-11-08 00:21:42.939569 1 1 PV1-V-1602 \N \N f 3363 1 2 1160 1798.00 0.00 0.00 1798.00 1 2020-11-07 2020-11-08 00:13:33.0325 2020-11-08 00:19:49.086763 1 1 PV1-V-1601 \N \N f 3371 429 18 1163 1399.00 0.00 0.00 1399.00 2 2020-11-09 2020-11-09 23:11:16.116353 2020-11-24 21:24:20.61585 2 14 PV3-V-844 2020-12-14 \N f 3357 427 2 1160 2698.00 0.00 0.00 2698.00 2 2020-11-07 2020-11-07 19:12:08.88168 2020-12-19 19:59:37.214196 2 1 PV1-V-1595 2020-12-12 \N f 3367 1 21 1161 4344.00 0.00 0.00 4344.00 2 2020-11-07 2020-11-08 02:10:09.385941 2020-11-08 02:12:25.830561 1 31 PV3-V-843 \N \N f 3368 1 2 1162 1799.00 0.00 0.00 1799.00 2 2020-11-09 2020-11-09 19:31:10.603709 2020-11-09 19:31:42.740862 1 30 PV1-V-1605 \N \N f 3369 1 2 1162 1033.62 165.38 0.00 1199.00 2 2020-11-09 2020-11-09 19:35:32.700885 2020-11-09 19:35:37.027535 1 1 PV1-V-1606 \N \N f 3370 1 2 1162 999.00 0.00 0.00 999.00 2 2020-11-09 2020-11-09 21:44:11.887029 2020-11-09 21:44:55.600441 1 1 PV1-V-1607 \N \N f 3372 430 18 1163 999.00 0.00 0.00 999.00 2 2020-11-09 2020-11-09 23:44:00.966994 2020-11-24 21:25:54.19155 2 14 PV3-V-845 2020-12-14 \N f 3361 428 2 1160 879.00 0.00 0.00 879.00 2 2020-11-07 2020-11-07 20:54:54.73804 2020-11-26 18:38:54.536556 2 1 PV1-V-1599 2020-12-12 \N f 3374 1 2 1162 1549.00 0.00 0.00 1549.00 2 2020-11-09 2020-11-10 00:01:39.245789 2020-11-10 00:01:46.842195 1 1 PV1-V-1609 \N \N f 3375 1 18 1163 1799.00 0.00 0.00 1799.00 2 2020-11-09 2020-11-10 00:24:19.671435 2020-11-10 00:24:40.392014 1 14 PV3-V-846 \N \N f 3376 1 2 1162 278.00 0.00 0.00 278.00 2 2020-11-09 2020-11-10 01:09:36.678702 2020-11-10 01:09:40.709685 1 1 PV1-V-1610 \N \N f 3377 1 2 1162 498.00 0.00 0.00 498.00 2 2020-11-09 2020-11-10 01:11:09.260042 2020-11-10 01:11:14.291547 1 1 PV1-V-1611 \N \N f 3378 1 2 1164 1399.00 0.00 0.00 1399.00 2 2020-11-10 2020-11-10 21:17:14.160394 2020-11-10 21:17:41.270846 1 1 PV1-V-1612 \N \N f 3379 1 2 1164 1448.00 0.00 0.00 1448.00 2 2020-11-10 2020-11-10 21:19:30.459388 2020-11-10 21:20:45.991317 1 1 PV1-V-1613 \N \N f 3380 1 2 1164 338.00 0.00 0.00 338.00 2 2020-11-10 2020-11-10 21:28:13.859578 2020-11-10 21:28:59.774706 1 1 PV1-V-1614 \N \N f 3340 312 2 1158 1199.00 0.00 0.00 1199.00 2 2020-11-06 2020-11-06 17:52:08.780223 2020-11-10 23:35:27.970694 2 1 PV1-V-1590 2020-12-11 \N f 3381 1 18 1165 2798.00 0.00 0.00 2798.00 2 2020-11-10 2020-11-11 00:03:25.654722 2020-11-11 00:03:52.943595 1 14 PV3-V-847 \N \N f 3382 1 2 1166 1199.00 0.00 0.00 1199.00 2 2020-11-11 2020-11-11 18:47:35.758323 2020-11-11 18:47:40.116233 1 1 PV1-V-1615 \N \N f 3383 1 18 1167 1799.00 0.00 0.00 1799.00 2 2020-11-11 2020-11-11 19:34:45.305002 2020-11-11 19:34:53.614387 1 14 PV3-V-848 \N \N f 3342 194 18 1157 1599.00 0.00 0.00 1599.00 2 2020-11-06 2020-11-06 19:11:15.551473 2020-12-10 20:24:08.561704 2 14 PV3-V-832 2020-12-11 \N f 3385 1 2 1166 629.00 0.00 0.00 629.00 2 2020-11-11 2020-11-11 21:18:40.715671 2020-11-11 21:18:47.596963 1 1 PV1-V-1617 \N \N f 3386 1 18 1167 1799.00 0.00 0.00 1799.00 1 2020-11-11 2020-11-11 22:13:11.824949 2020-11-11 22:13:59.346673 1 14 PV3-V-849 \N \N f 3387 1 18 1167 2098.00 0.00 0.00 2098.00 2 2020-11-11 2020-11-11 22:14:22.355845 2020-11-11 22:18:44.214896 1 14 PV3-V-850 \N \N f 3388 1 2 1166 499.00 0.00 0.00 499.00 2 2020-11-11 2020-11-12 00:16:27.845982 2020-11-12 00:16:33.3813 1 1 PV1-V-1618 \N \N f 3389 1 2 1166 1667.00 0.00 0.00 1667.00 2 2020-11-11 2020-11-12 00:42:43.484456 2020-11-12 00:42:59.781178 1 1 PV1-V-1619 \N \N f 3390 1 2 1166 1200.72 48.28 0.00 1249.00 2 2020-11-11 2020-11-12 01:02:27.240858 2020-11-12 01:02:46.339562 1 1 PV1-V-1620 \N \N f 3391 36 2 1166 1599.00 0.00 799.00 800.00 2 2020-11-11 2020-11-12 01:14:25.585791 2020-11-12 01:14:30.100945 1 30 PV1-V-1621 \N \N f 3392 1 18 1167 3298.00 0.00 0.00 3298.00 2 2020-11-11 2020-11-12 01:42:21.633828 2020-11-12 01:42:31.907125 1 14 PV3-V-851 \N \N f 3393 1 18 1167 2998.00 0.00 0.00 2998.00 2 2020-11-11 2020-11-12 01:48:10.211859 2020-11-12 01:48:24.408105 1 29 PV3-V-852 \N \N f 3394 1 18 1167 3099.00 0.00 0.00 3099.00 2 2020-11-11 2020-11-12 01:58:51.397447 2020-11-12 01:59:00.150606 1 14 PV3-V-853 \N \N f 3395 1 2 1168 269.00 0.00 0.00 269.00 2 2020-11-12 2020-11-12 19:43:00.266189 2020-11-12 19:43:15.747025 1 1 PV1-V-1622 \N \N f 3396 1 18 1169 1499.00 0.00 0.00 1499.00 2 2020-11-12 2020-11-12 19:57:42.523169 2020-11-12 19:57:49.332602 1 14 PV3-V-854 \N \N f 3397 1 18 1169 289.00 0.00 0.00 289.00 2 2020-11-12 2020-11-12 20:01:52.709479 2020-11-12 20:02:34.247352 1 14 PV3-V-855 \N \N f 3398 1 18 1169 749.00 0.00 0.00 749.00 2 2020-11-12 2020-11-12 20:22:36.334725 2020-11-12 20:22:49.252179 1 14 PV3-V-856 \N \N f 3399 1 18 1169 60.00 0.00 0.00 60.00 2 2020-11-12 2020-11-12 20:25:56.780637 2020-11-12 20:26:01.27814 1 14 PV3-V-857 \N \N f 3400 1 18 1169 1359.00 0.00 0.00 1359.00 2 2020-11-12 2020-11-12 20:31:40.084445 2020-11-12 20:31:43.969943 1 14 PV3-V-858 \N \N f 3461 444 2 1180 1249.00 0.00 0.00 1249.00 2 2020-11-18 2020-11-19 00:48:01.401045 2020-11-25 18:21:27.726385 2 1 PV1-V-1651 2020-12-23 \N f 3402 1 18 1169 1399.00 0.00 0.00 1399.00 2 2020-11-12 2020-11-12 23:03:48.238887 2020-11-12 23:04:12.179136 1 14 PV3-V-859 \N \N f 3403 1 18 1169 1799.00 0.00 0.00 1799.00 2 2020-11-12 2020-11-12 23:19:30.666406 2020-11-12 23:19:35.045094 1 14 PV3-V-860 \N \N f 3404 1 18 1169 1799.00 0.00 0.00 1799.00 2 2020-11-12 2020-11-12 23:26:28.357658 2020-11-12 23:27:49.038835 1 14 PV3-V-861 \N \N f 3405 433 2 1168 1599.00 0.00 0.00 1599.00 1 2020-11-12 2020-11-12 23:50:16.044671 2020-11-12 23:51:45.208046 2 1 PV1-V-1624 2020-12-17 \N f 3428 1 18 1173 430.17 68.83 0.00 499.00 2 2020-11-14 2020-11-15 00:33:07.303448 2020-11-15 00:33:11.568111 1 14 PV3-V-874 \N \N f 3407 1 2 1168 499.00 0.00 0.00 499.00 2 2020-11-12 2020-11-12 23:54:01.218824 2020-11-12 23:54:13.005666 1 1 PV1-V-1626 \N \N f 3408 1 2 1168 499.00 0.00 0.00 499.00 2 2020-11-12 2020-11-12 23:55:16.095163 2020-11-12 23:55:20.155257 1 1 PV1-V-1627 \N \N f 3410 1 2 1171 2099.00 0.00 0.00 2099.00 2 2020-11-13 2020-11-13 19:46:38.552261 2020-11-13 19:46:50.208899 1 1 PV1-V-1628 \N \N f 3409 426 18 1170 1178.00 0.00 0.00 1178.00 1 2020-11-13 2020-11-13 19:46:30.513845 2020-11-13 19:46:54.814711 1 14 PV3-V-862 \N \N f 3445 439 2 1178 689.00 0.00 0.00 689.00 2 2020-11-17 2020-11-17 19:12:55.065421 2020-12-07 23:19:13.289618 2 1 PV1-V-1642 2020-12-22 \N f 3341 426 18 1157 1987.00 0.00 0.00 1987.00 2 2020-11-06 2020-11-06 18:53:49.964413 2020-11-13 19:50:26.402727 2 31 PV3-V-831 2020-12-11 \N f 3412 1 18 1170 699.00 0.00 0.00 699.00 2 2020-11-13 2020-11-13 20:12:09.51991 2020-11-13 20:12:28.881081 1 14 PV3-V-864 \N \N f 3413 434 18 1170 1389.00 0.00 0.00 1389.00 1 2020-11-13 2020-11-13 20:28:46.213698 2020-11-13 20:28:51.134635 1 14 PV3-V-865 \N \N f 3425 41 2 1172 1648.00 0.00 0.00 1648.00 4 2020-11-14 2020-11-14 23:45:02.910625 2020-12-28 21:29:07.680273 2 1 PV1-V-1632 2020-12-19 \N f 3415 1 18 1170 811.00 0.00 0.00 811.00 2 2020-11-13 2020-11-13 20:43:13.656863 2020-11-13 20:44:12.802675 1 14 PV3-V-867 \N \N f 3414 434 18 1170 1389.00 0.00 0.00 1389.00 4 2020-11-13 2020-11-13 20:29:05.355382 2020-12-23 20:11:51.361204 2 14 PV3-V-866 2020-12-18 \N f 3406 433 2 1168 2998.00 0.00 0.00 2998.00 2 2020-11-12 2020-11-12 23:52:37.387842 2020-11-14 00:01:29.478479 2 1 PV1-V-1625 2020-12-17 \N f 3417 270 18 1170 811.00 0.00 0.00 811.00 2 2020-11-13 2020-11-14 00:33:33.992324 2020-11-14 00:34:52.303767 2 14 PV3-V-869 2020-12-18 \N f 3418 1 2 1171 99.00 0.00 0.00 99.00 2 2020-11-13 2020-11-14 01:55:40.997146 2020-11-14 01:55:57.555725 1 1 PV1-V-1629 \N \N f 3419 1 18 1170 2998.00 0.00 0.00 2998.00 2 2020-11-13 2020-11-14 01:57:45.391474 2020-11-14 01:58:11.557463 1 14 PV3-V-870 \N \N f 3420 1 18 1173 497.00 0.00 0.00 497.00 2 2020-11-14 2020-11-14 19:43:41.072062 2020-11-14 19:44:24.515838 1 14 PV3-V-871 \N \N f 3421 1 2 1172 1099.00 0.00 99.00 1000.00 2 2020-11-14 2020-11-14 21:13:51.34162 2020-11-14 21:14:33.723659 1 1 PV1-V-1630 \N \N f 3422 1 18 1173 109.00 0.00 0.00 109.00 2 2020-11-14 2020-11-14 21:14:48.719435 2020-11-14 21:14:52.902831 1 14 PV3-V-872 \N \N f 3444 363 21 1177 1799.00 0.00 0.00 1799.00 2 2020-11-17 2020-11-17 18:08:15.585684 2020-12-02 19:07:10.306196 2 31 PV3-V-883 2020-12-22 \N f 3426 159 2 1172 989.00 0.00 0.00 989.00 2 2020-11-14 2020-11-15 00:02:53.832866 2021-01-08 02:05:27.938478 2 30 PV1-V-1633 2020-12-19 \N f 3424 436 18 1173 1999.00 0.00 0.00 1999.00 4 2020-11-14 2020-11-14 22:50:09.989312 2021-01-07 01:08:31.201196 2 14 PV3-V-873 2020-12-19 \N f 3427 1 2 1172 1877.00 0.00 0.00 1877.00 2 2020-11-14 2020-11-15 00:25:37.052221 2020-11-15 00:26:05.66573 1 1 PV1-V-1634 \N \N f 3430 1 18 1173 3198.00 0.00 0.00 3198.00 2 2020-11-14 2020-11-15 01:50:54.209423 2020-11-15 01:51:05.288993 1 23 PV3-V-875 \N \N f 3429 1 2 1172 799.00 0.00 0.00 799.00 2 2020-11-14 2020-11-15 01:48:32.699455 2020-11-15 01:51:06.11069 1 28 PV1-V-1635 \N \N f 3431 1 18 1173 1599.00 0.00 0.00 1599.00 2 2020-11-14 2020-11-15 02:12:25.793674 2020-11-15 02:13:01.281625 1 29 PV3-V-876 \N \N f 3432 1 2 1174 1799.00 0.00 0.00 1799.00 2 2020-11-15 2020-11-15 19:28:46.190381 2020-11-15 19:28:57.033328 1 1 PV1-V-1636 \N \N f 3433 1 2 1174 1599.00 0.00 0.00 1599.00 2 2020-11-15 2020-11-15 20:35:46.543136 2020-11-15 20:36:16.037288 1 1 PV1-V-1637 \N \N f 3434 1 2 1176 1967.00 0.00 0.00 1967.00 2 2020-11-16 2020-11-16 20:52:16.802562 2020-11-16 20:52:27.68277 1 1 PV1-V-1638 \N \N f 3435 1 18 1175 1251.00 0.00 0.00 1251.00 2 2020-11-16 2020-11-16 21:57:37.938308 2020-11-16 21:57:41.851357 1 31 PV3-V-877 \N \N f 3436 1 2 1176 1399.00 0.00 0.00 1399.00 2 2020-11-16 2020-11-16 21:59:06.39085 2020-11-16 21:59:10.684255 1 30 PV1-V-1639 \N \N f 3437 1 18 1175 1599.00 0.00 0.00 1599.00 2 2020-11-16 2020-11-16 22:01:46.188069 2020-11-16 22:01:54.903619 1 14 PV3-V-878 \N \N f 3438 1 18 1175 2846.00 0.00 0.00 2846.00 2 2020-11-16 2020-11-16 22:06:24.099006 2020-11-16 22:06:37.598024 1 14 PV3-V-879 \N \N f 3401 432 2 1168 1499.00 0.00 0.00 1499.00 2 2020-11-12 2020-11-12 22:17:19.867217 2020-11-24 18:00:19.680076 2 1 PV1-V-1623 2020-12-17 \N f 3440 1 2 1176 1599.00 0.00 0.00 1599.00 2 2020-11-16 2020-11-16 23:50:32.513642 2020-11-16 23:50:44.863535 1 1 PV1-V-1641 \N \N f 3441 1 18 1175 868.00 0.00 0.00 868.00 2 2020-11-16 2020-11-16 23:56:02.258691 2020-11-16 23:56:22.112384 1 14 PV3-V-880 \N \N f 3442 1 18 1175 149.00 0.00 0.00 149.00 2 2020-11-16 2020-11-17 00:04:42.804443 2020-11-17 00:04:47.452803 1 31 PV3-V-881 \N \N f 3416 434 18 1170 1399.00 0.00 0.00 1399.00 4 2020-11-13 2020-11-13 20:54:57.203562 2020-12-23 20:11:41.742168 2 14 PV3-V-868 2020-12-18 \N f 3447 440 2 1178 1799.00 0.00 0.00 1799.00 2 2020-11-17 2020-11-17 20:30:48.975463 2020-12-05 21:37:28.655038 2 1 PV1-V-1644 2020-12-22 \N f 3460 443 21 1179 1899.00 0.00 0.00 1899.00 2 2020-11-18 2020-11-19 00:30:41.606496 2020-12-11 22:29:53.200766 2 31 PV3-V-890 2020-12-23 \N f 3446 1 2 1178 699.00 0.00 99.00 600.00 2 2020-11-17 2020-11-17 19:16:59.5191 2020-11-17 19:17:03.085057 1 1 PV1-V-1643 \N \N f 3411 426 18 1170 1178.00 0.00 0.00 1178.00 2 2020-11-13 2020-11-13 19:47:10.375435 2020-12-07 23:15:00.067662 2 14 PV3-V-863 2020-12-18 \N f 3448 1 2 1178 1692.10 206.90 399.00 1500.00 2 2020-11-17 2020-11-17 20:43:19.698633 2020-11-17 20:43:51.993967 1 1 PV1-V-1645 \N \N f 3449 1 2 1178 2288.00 0.00 0.00 2288.00 2 2020-11-17 2020-11-17 21:41:47.925874 2020-11-17 21:42:04.030529 1 1 PV1-V-1646 \N \N f 3439 437 2 1176 5397.00 0.00 0.00 5397.00 2 2020-11-16 2020-11-16 22:53:36.835362 2020-11-21 23:15:30.948348 2 28 PV1-V-1640 2020-12-21 \N f 3451 1 21 1177 1799.00 0.00 0.00 1799.00 2 2020-11-17 2020-11-17 22:22:30.193422 2020-11-17 22:22:40.617402 1 31 PV3-V-884 \N \N f 3452 1 21 1177 589.00 0.00 58.00 531.00 2 2020-11-17 2020-11-18 00:32:49.050148 2020-11-18 00:33:20.73358 1 14 PV3-V-885 \N \N f 3453 1 18 1177 1799.00 0.00 0.00 1799.00 2 2020-11-17 2020-11-18 01:46:25.691445 2020-11-18 01:46:35.85277 1 14 PV3-V-886 \N \N f 3454 1 21 1179 1799.00 0.00 0.00 1799.00 2 2020-11-18 2020-11-18 17:06:36.717374 2020-11-18 17:06:45.949302 1 31 PV3-V-887 \N \N f 3456 1 2 1180 199.00 0.00 0.00 199.00 2 2020-11-18 2020-11-18 18:17:22.482948 2020-11-18 18:19:00.303104 1 1 PV1-V-1649 \N \N f 3455 1 2 1180 199.00 0.00 0.00 199.00 1 2020-11-18 2020-11-18 17:48:28.594296 2020-11-18 18:17:02.200326 1 1 PV1-V-1648 \N \N f 3457 1 21 1179 42.24 6.76 0.00 49.00 2 2020-11-18 2020-11-18 18:37:50.126035 2020-11-18 18:38:06.089673 1 31 PV3-V-888 \N \N f 3458 1 2 1180 1599.00 0.00 0.00 1599.00 2 2020-11-18 2020-11-18 21:03:26.14836 2020-11-18 21:04:43.127979 1 1 PV1-V-1650 \N \N f 3459 1 21 1179 1899.00 0.00 0.00 1899.00 1 2020-11-18 2020-11-19 00:29:22.541616 2020-11-19 00:29:59.575748 1 31 PV3-V-889 \N \N f 3443 438 18 1175 1799.00 0.00 0.00 1799.00 2 2020-11-16 2020-11-17 00:15:23.348917 2020-12-22 22:25:42.74318 2 14 PV3-V-882 2020-12-21 \N f 3423 435 2 1172 1249.00 0.00 0.00 1249.00 2 2020-11-14 2020-11-14 21:55:34.238881 2020-11-28 21:26:18.768696 2 1 PV1-V-1631 2020-12-19 \N f 3462 1 21 1179 1998.00 0.00 350.00 1648.00 2 2020-11-18 2020-11-19 01:15:46.503018 2020-11-19 01:15:56.828811 1 14 PV3-V-891 \N \N f 3450 441 2 1178 2558.00 0.00 0.00 2558.00 2 2020-11-17 2020-11-17 22:16:12.642887 2020-11-21 17:48:56.183028 2 1 PV1-V-1647 2020-12-22 \N f 3463 1 2 1182 969.00 0.00 0.00 969.00 2 2020-11-19 2020-11-19 18:33:31.960577 2020-11-19 18:33:57.223369 1 1 PV1-V-1652 \N \N f 3464 1 2 1182 538.00 0.00 0.00 538.00 2 2020-11-19 2020-11-19 18:39:17.268762 2020-11-19 18:42:14.643381 1 1 PV1-V-1653 \N \N f 3465 445 21 1181 1499.00 0.00 0.00 1499.00 1 2020-11-19 2020-11-19 19:30:17.338408 2020-11-19 19:31:54.144055 1 31 PV3-V-892 \N \N f 3466 1 21 1181 3265.00 0.00 0.00 3265.00 2 2020-11-19 2020-11-19 20:20:46.518575 2020-11-19 20:21:45.678065 1 31 PV3-V-893 \N \N f 3467 1 21 1181 249.00 0.00 0.00 249.00 2 2020-11-19 2020-11-19 20:23:16.146838 2020-11-19 20:23:46.403234 1 31 PV3-V-894 \N \N f 3468 1 2 1182 689.00 0.00 0.00 689.00 2 2020-11-19 2020-11-19 20:40:48.082588 2020-11-19 20:41:16.955127 1 1 PV1-V-1654 \N \N f 3469 1 21 1181 3098.00 0.00 0.00 3098.00 2 2020-11-19 2020-11-19 21:17:51.214996 2020-11-19 21:18:28.487165 1 31 PV3-V-895 \N \N f 3470 1 21 1181 1499.00 0.00 0.00 1499.00 2 2020-11-19 2020-11-19 21:23:15.262153 2020-11-19 21:26:03.732585 1 31 PV3-V-896 \N \N f 3471 446 2 1182 1599.00 0.00 0.00 1599.00 3 2020-11-19 2020-11-19 21:32:06.354691 2020-11-19 21:32:57.520906 2 1 PV1-V-1655 2020-12-24 \N f 3472 1 2 1182 1799.00 0.00 0.00 1799.00 2 2020-11-19 2020-11-19 21:37:15.030528 2020-11-19 21:38:00.572635 1 1 PV1-V-1656 \N \N f 3473 1 2 1182 849.00 0.00 0.00 849.00 1 2020-11-19 2020-11-19 23:42:23.159741 2020-11-19 23:43:00.145086 1 1 PV1-V-1657 \N \N f 3474 1 2 1182 1466.24 82.76 100.00 1449.00 2 2020-11-19 2020-11-19 23:45:27.785341 2020-11-19 23:45:58.928758 1 1 PV1-V-1658 \N \N f 3475 1 2 1182 2298.00 0.00 0.00 2298.00 2 2020-11-19 2020-11-19 23:53:21.310435 2020-11-20 00:22:48.469177 1 1 PV1-V-1659 \N \N f 3476 1 2 1182 2998.00 0.00 0.00 2998.00 2 2020-11-19 2020-11-20 02:07:16.872855 2020-11-20 02:07:21.363634 1 1 PV1-V-1660 \N \N f 3477 1 21 1183 1799.00 0.00 0.00 1799.00 2 2020-11-20 2020-11-20 18:06:54.958537 2020-11-20 18:07:26.787069 1 31 PV3-V-897 \N \N f 3478 1 2 1184 1799.00 0.00 0.00 1799.00 2 2020-11-20 2020-11-20 18:14:33.618872 2020-11-20 18:15:50.210375 1 1 PV1-V-1661 \N \N f 3479 1 21 1183 1799.00 0.00 0.00 1799.00 2 2020-11-20 2020-11-20 19:13:11.821329 2020-11-20 19:13:47.828788 1 31 PV3-V-898 \N \N f 3480 447 21 1183 1799.00 0.00 0.00 1799.00 1 2020-11-20 2020-11-20 21:49:23.385267 2020-11-20 21:52:10.144307 1 31 PV3-V-899 \N \N f 3500 450 2 1189 1599.00 0.00 0.00 1599.00 2 2020-11-23 2020-11-23 21:17:16.560077 2020-11-30 18:45:38.343603 2 1 PV1-V-1670 2020-12-28 \N f 3517 451 2 1194 1799.00 0.00 0.00 1799.00 4 2020-11-26 2020-11-26 20:15:11.22995 2021-01-27 17:43:44.951897 2 1 PV1-V-1677 2020-12-31 \N f 3493 448 21 1188 1399.00 0.00 0.00 1399.00 2 2020-11-23 2020-11-23 18:50:55.941226 2020-12-09 17:43:11.830248 2 31 PV3-V-908 2020-12-28 \N f 3484 1 21 1183 1799.00 0.00 0.00 1799.00 2 2020-11-20 2020-11-21 02:03:20.783321 2020-11-21 02:03:36.475863 1 31 PV3-V-901 \N \N f 3485 1 21 1185 3048.00 0.00 0.00 3048.00 2 2020-11-21 2020-11-21 18:46:49.551582 2020-11-21 18:47:38.563457 1 31 PV3-V-902 \N \N f 3486 1 2 1186 1399.00 0.00 0.00 1399.00 2 2020-11-21 2020-11-21 19:23:11.358682 2020-11-21 19:23:27.0295 1 1 PV1-V-1664 \N \N f 3502 437 2 1189 1799.00 0.00 0.00 1799.00 2 2020-11-23 2020-11-24 01:03:00.339082 2020-12-06 00:08:00.175522 2 1 PV1-V-1671 2020-12-28 \N f 3488 1 21 1185 808.00 0.00 0.00 808.00 2 2020-11-21 2020-11-21 21:09:45.352883 2020-11-21 21:11:24.266991 1 31 PV3-V-904 \N \N f 3489 1 2 1186 1799.00 0.00 0.00 1799.00 2 2020-11-21 2020-11-21 21:53:00.313363 2020-11-21 21:53:14.736182 1 1 PV1-V-1665 \N \N f 3490 1 21 1187 799.00 0.00 0.00 799.00 2 2020-11-22 2020-11-22 17:41:20.62052 2020-11-22 17:41:32.846448 1 31 PV3-V-905 \N \N f 3491 1 21 1187 999.00 0.00 0.00 999.00 2 2020-11-22 2020-11-22 20:29:48.960363 2020-11-22 20:31:57.719625 1 31 PV3-V-906 \N \N f 3492 1 21 1188 1399.00 0.00 0.00 1399.00 1 2020-11-23 2020-11-23 18:49:47.43637 2020-11-23 18:49:53.095559 1 31 PV3-V-907 \N \N f 3496 449 2 1189 2468.00 0.00 0.00 2468.00 2 2020-11-23 2020-11-23 19:34:16.799442 2020-12-15 01:01:46.831888 2 1 PV1-V-1668 2020-12-28 \N f 3494 1 2 1189 1699.00 0.00 0.00 1699.00 1 2020-11-23 2020-11-23 19:16:29.773075 2020-11-23 19:22:06.438986 1 1 PV1-V-1666 \N \N f 3495 1 2 1189 1399.00 0.00 0.00 1399.00 2 2020-11-23 2020-11-23 19:23:53.217724 2020-11-23 19:23:59.545387 1 1 PV1-V-1667 \N \N f 3482 21 2 1184 1399.00 0.00 0.00 1399.00 2 2020-11-20 2020-11-21 00:26:59.597037 2021-01-07 01:00:23.052361 2 1 PV1-V-1662 2020-12-25 \N f 3497 1 21 1188 1699.00 0.00 0.00 1699.00 2 2020-11-23 2020-11-23 20:12:24.348577 2020-11-23 20:12:53.622383 1 31 PV3-V-909 \N \N f 3498 1 2 1189 379.00 0.00 0.00 379.00 2 2020-11-23 2020-11-23 20:48:11.600077 2020-11-23 20:48:25.024983 1 1 PV1-V-1669 \N \N f 3499 1 21 1188 1799.00 0.00 0.00 1799.00 2 2020-11-23 2020-11-23 21:02:54.907873 2020-11-23 21:03:07.900726 1 31 PV3-V-910 \N \N f 3509 1 18 1191 1499.00 0.00 0.00 1499.00 1 2020-11-24 2020-11-25 01:05:26.656697 2020-12-01 00:49:09.343299 1 14 PV3-V-915 \N \N f 3501 1 21 1188 1199.00 0.00 0.00 1199.00 2 2020-11-23 2020-11-23 23:46:10.72093 2020-11-23 23:47:13.022876 1 24 PV3-V-911 \N \N f 3483 21 2 1184 1799.00 0.00 0.00 1799.00 2 2020-11-20 2020-11-21 00:31:19.445737 2020-12-06 00:29:01.34921 2 1 PV1-V-1663 2020-12-25 \N f 3503 1 18 1188 489.00 0.00 0.00 489.00 2 2020-11-23 2020-11-24 01:14:53.166135 2020-11-24 01:14:57.710631 1 14 PV3-V-912 \N \N f 3504 1 18 1188 2099.00 0.00 0.00 2099.00 2 2020-11-23 2020-11-24 02:18:43.531909 2020-11-24 02:18:53.32206 1 24 PV3-V-913 \N \N f 3505 1 2 1190 1399.00 0.00 0.00 1399.00 2 2020-11-24 2020-11-24 21:24:15.974057 2020-11-24 21:24:24.97756 1 1 PV1-V-1672 \N \N f 3506 1 2 1190 1599.00 0.00 0.00 1599.00 2 2020-11-24 2020-11-24 23:42:24.017521 2020-11-24 23:42:30.237044 1 1 PV1-V-1673 \N \N f 3507 1 18 1191 189.00 0.00 0.00 189.00 2 2020-11-24 2020-11-25 00:20:38.288796 2020-11-25 00:20:58.639817 1 14 PV3-V-914 \N \N f 3508 1 2 1190 999.00 0.00 0.00 999.00 2 2020-11-24 2020-11-25 00:27:22.399232 2020-11-25 00:28:07.216577 1 1 PV1-V-1674 \N \N f 3487 365 21 1185 1199.00 0.00 0.00 1199.00 2 2020-11-21 2020-11-21 20:56:33.541102 2020-12-02 00:36:08.081877 2 31 PV3-V-903 2020-12-26 \N f 3510 1 18 1191 1799.00 0.00 0.00 1799.00 2 2020-11-24 2020-11-25 01:12:32.416084 2020-11-25 01:12:37.74828 1 14 PV3-V-916 \N \N f 3511 1 18 1191 499.00 0.00 0.00 499.00 2 2020-11-24 2020-11-25 01:22:49.060508 2020-11-25 01:23:20.581543 1 14 PV3-V-917 \N \N f 3512 1 18 1191 2078.45 220.55 700.00 1599.00 2 2020-11-24 2020-11-25 01:36:15.027986 2020-11-25 01:36:23.588503 1 14 PV3-V-918 \N \N f 3513 1 21 1192 1078.00 0.00 0.00 1078.00 2 2020-11-25 2020-11-25 19:10:57.817656 2020-11-25 19:11:26.640734 1 14 PV3-V-919 \N \N f 3514 1 21 1192 749.00 0.00 0.00 749.00 2 2020-11-25 2020-11-26 00:09:15.717509 2020-11-26 00:09:54.704477 1 31 PV3-V-920 \N \N f 3515 1 2 1194 689.00 0.00 139.00 550.00 2 2020-11-26 2020-11-26 19:09:35.520792 2020-11-26 19:09:44.9515 1 1 PV1-V-1675 \N \N f 3516 1 2 1194 589.00 0.00 0.00 589.00 2 2020-11-26 2020-11-26 20:01:37.087762 2020-11-26 20:01:41.969628 1 1 PV1-V-1676 \N \N f 3481 447 21 1183 1799.00 0.00 0.00 1799.00 2 2020-11-20 2020-11-20 21:52:57.40908 2020-11-27 21:16:33.467984 2 31 PV3-V-900 2020-12-25 \N f 3519 1 2 1194 799.00 0.00 0.00 799.00 2 2020-11-26 2020-11-26 20:26:18.950262 2020-11-26 20:26:47.964126 1 1 PV1-V-1679 \N \N f 3520 1 18 1195 249.00 0.00 0.00 249.00 2 2020-11-26 2020-11-26 21:57:51.476054 2020-11-26 21:57:59.088813 1 14 PV3-V-921 \N \N f 3521 1 2 1194 119.00 0.00 0.00 119.00 2 2020-11-26 2020-11-26 21:58:09.798338 2020-11-26 21:58:13.542291 1 1 PV1-V-1680 \N \N f 3522 1 2 1194 479.00 0.00 0.00 479.00 2 2020-11-26 2020-11-26 22:58:24.048848 2020-11-26 22:58:31.493076 1 1 PV1-V-1681 \N \N f 3523 1 2 1194 825.00 0.00 0.00 825.00 1 2020-11-26 2020-11-27 00:05:17.467276 2020-11-27 00:05:24.525677 1 1 PV1-V-1682 \N \N f 3524 1 2 1194 1674.00 0.00 0.00 1674.00 2 2020-11-26 2020-11-27 00:08:29.833064 2020-11-27 00:08:46.588237 1 1 PV1-V-1683 \N \N f 3525 1 18 1195 1654.00 0.00 0.00 1654.00 2 2020-11-26 2020-11-27 00:17:33.160086 2020-11-27 00:18:14.069267 1 14 PV3-V-922 \N \N f 3526 1 2 1194 1199.00 0.00 0.00 1199.00 2 2020-11-26 2020-11-27 00:24:38.160494 2020-11-27 00:24:44.957374 1 1 PV1-V-1684 \N \N f 3527 1 2 1194 589.00 0.00 0.00 589.00 2 2020-11-26 2020-11-27 00:46:31.737716 2020-11-27 00:46:35.814139 1 1 PV1-V-1685 \N \N f 3528 1 18 1195 1199.00 0.00 0.00 1199.00 2 2020-11-26 2020-11-27 01:06:04.190531 2020-11-27 01:06:10.474101 1 14 PV3-V-923 \N \N f 3518 452 2 1194 1799.00 0.00 0.00 1799.00 2 2020-11-26 2020-11-26 20:20:07.682889 2020-11-27 01:37:50.859318 2 1 PV1-V-1678 2020-12-31 \N f 3529 1 18 1195 1799.00 0.00 0.00 1799.00 2 2020-11-26 2020-11-27 01:15:01.607915 2020-11-27 01:19:30.430813 1 24 PV3-V-924 \N \N f 3530 1 18 1195 2898.00 0.00 0.00 2898.00 2 2020-11-26 2020-11-27 01:32:45.757023 2020-11-27 01:32:55.661259 1 24 PV3-V-925 \N \N f 3531 1 18 1195 1251.00 0.00 0.00 1251.00 2 2020-11-26 2020-11-27 02:05:10.098112 2020-11-27 02:06:33.793454 1 14 PV3-V-926 \N \N f 3532 1 21 1196 1399.00 0.00 0.00 1399.00 2 2020-11-27 2020-11-27 21:26:54.222558 2020-11-27 21:27:09.328104 1 31 PV3-V-927 \N \N f 3533 1 21 1196 4198.00 0.00 0.00 4198.00 1 2020-11-27 2020-11-27 22:51:19.024408 2020-11-27 22:51:54.198288 1 31 PV3-V-928 \N \N f 3534 1 21 1196 2099.00 0.00 0.00 2099.00 2 2020-11-27 2020-11-27 22:52:10.719833 2020-11-27 22:53:53.689984 1 31 PV3-V-929 \N \N f 3535 1 2 1197 1799.00 0.00 0.00 1799.00 2 2020-11-27 2020-11-27 23:39:04.581109 2020-11-27 23:39:16.516699 1 27 PV1-V-1686 \N \N f 3536 1 2 1197 1249.00 0.00 0.00 1249.00 2 2020-11-27 2020-11-28 00:08:46.0705 2020-11-28 00:08:50.281114 1 1 PV1-V-1687 \N \N f 3581 459 2 1206 1251.00 0.00 0.00 1251.00 2 2020-12-02 2020-12-03 00:35:34.179337 2020-12-06 00:29:25.506432 2 1 PV1-V-1705 2021-01-06 \N f 3538 1 18 1196 1799.00 0.00 0.00 1799.00 2 2020-11-27 2020-11-28 01:15:41.910879 2020-11-28 01:15:57.785384 1 14 PV3-V-931 \N \N f 3539 1 18 1196 1576.00 0.00 0.00 1576.00 2 2020-11-27 2020-11-28 02:00:11.116897 2020-11-28 02:00:42.422112 1 14 PV3-V-932 \N \N f 3540 1 18 1196 1499.00 0.00 0.00 1499.00 2 2020-11-27 2020-11-28 02:13:48.683515 2020-11-28 02:13:57.064599 1 29 PV3-V-933 \N \N f 3541 1 18 1198 1399.00 0.00 0.00 1399.00 2 2020-11-27 2020-11-28 02:44:20.131146 2020-11-28 02:44:29.982781 1 14 PV3-V-934 \N \N f 3542 1 2 1199 999.00 0.00 0.00 999.00 2 2020-11-28 2020-11-28 20:29:27.458708 2020-11-28 20:29:32.798737 1 1 PV1-V-1688 \N \N f 3543 1 2 1199 1119.00 0.00 0.00 1119.00 2 2020-11-28 2020-11-28 21:09:25.107498 2020-11-28 21:09:42.095989 1 1 PV1-V-1689 \N \N f 3544 1 2 1199 1799.00 0.00 0.00 1799.00 2 2020-11-28 2020-11-28 21:17:21.275932 2020-11-28 21:17:42.295701 1 1 PV1-V-1690 \N \N f 3575 458 18 1207 1499.00 0.00 0.00 1499.00 2 2020-12-02 2020-12-02 19:03:15.872874 2020-12-15 19:54:27.397132 2 14 PV3-V-955 2021-01-06 \N f 3546 1 21 1200 999.00 0.00 0.00 999.00 2 2020-11-28 2020-11-28 23:57:04.701354 2020-11-28 23:57:18.19264 1 31 PV3-V-935 \N \N f 3547 1 21 1200 1799.00 0.00 0.00 1799.00 2 2020-11-28 2020-11-29 00:20:48.81018 2020-11-29 00:21:15.184853 1 31 PV3-V-936 \N \N f 3548 1 2 1199 1399.00 0.00 0.00 1399.00 2 2020-11-28 2020-11-29 00:22:56.807455 2020-11-29 00:23:14.000051 1 1 PV1-V-1692 \N \N f 3549 1 21 1200 1599.00 0.00 0.00 1599.00 2 2020-11-28 2020-11-29 00:54:51.299819 2020-11-29 00:55:55.0287 1 31 PV3-V-937 \N \N f 3550 1 21 1200 1499.00 0.00 0.00 1499.00 2 2020-11-28 2020-11-29 01:00:28.405331 2020-11-29 01:01:32.741132 1 31 PV3-V-938 \N \N f 3560 1 21 1203 1799.00 0.00 0.00 1799.00 1 2020-11-30 2020-12-01 00:35:39.359633 2020-12-01 00:36:58.057503 1 14 PV3-V-944 \N \N f 3551 1 21 1200 1196.00 0.00 0.00 1196.00 1 2020-11-28 2020-11-29 01:07:41.275777 2020-11-29 01:40:57.633452 1 31 PV3-V-939 \N \N f 3552 1 21 1201 1399.00 0.00 0.00 1399.00 1 2020-11-29 2020-11-29 18:11:49.724373 2020-11-29 18:12:55.317161 1 31 PV3-V-940 \N \N f 3553 1 21 1201 1399.00 0.00 139.90 1259.10 2 2020-11-29 2020-11-29 18:14:07.819744 2020-11-29 18:15:15.241853 1 14 PV3-V-941 \N \N f 3554 1 21 1201 1199.00 0.00 0.00 1199.00 2 2020-11-29 2020-11-29 20:37:41.340653 2020-11-29 20:37:50.270517 1 31 PV3-V-942 \N \N f 3555 1 2 1202 469.00 0.00 0.00 469.00 2 2020-11-30 2020-11-30 20:02:33.908849 2020-11-30 20:03:15.126537 1 1 PV1-V-1693 \N \N f 3584 460 21 1208 1399.00 0.00 0.00 1399.00 2 2020-12-03 2020-12-03 18:56:55.935977 2020-12-04 23:09:17.210076 2 31 PV3-V-959 2021-01-07 \N f 3559 457 2 1202 1399.00 0.00 0.00 1399.00 2 2020-11-30 2020-11-30 22:02:38.361785 2020-12-14 22:56:21.087993 2 1 PV1-V-1696 2021-01-04 \N f 3545 455 2 1199 1799.00 0.00 0.00 1799.00 2 2020-11-28 2020-11-28 22:14:17.867384 2020-12-15 00:52:30.666016 2 1 PV1-V-1691 2021-01-02 \N f 3563 1 21 1203 1218.00 0.00 0.00 1218.00 2 2020-11-30 2020-12-01 00:55:07.295879 2020-12-01 00:56:55.325012 1 14 PV3-V-946 \N \N f 3562 1 33 1202 1799.00 0.00 0.00 1799.00 2 2020-11-30 2020-12-01 00:55:00.065467 2020-12-01 00:58:51.994627 1 16 PV1-V-1697 \N \N f 3564 1 21 1203 583.48 13.52 0.00 597.00 2 2020-11-30 2020-12-01 00:59:19.044025 2020-12-01 00:59:24.086592 1 14 PV3-V-947 \N \N f 3565 1 21 1203 2288.00 0.00 0.00 2288.00 2 2020-11-30 2020-12-01 01:56:12.182142 2020-12-01 01:56:19.237024 1 14 PV3-V-948 \N \N f 3561 1 21 1203 2288.00 0.00 0.00 2288.00 1 2020-11-30 2020-12-01 00:37:31.321573 2020-12-01 01:56:33.595999 1 14 PV3-V-945 \N \N f 3566 1 21 1203 1399.00 0.00 0.00 1399.00 2 2020-11-30 2020-12-01 02:03:00.226444 2020-12-01 02:03:05.359786 1 14 PV3-V-949 \N \N f 3567 1 21 1204 1399.00 0.00 0.00 1399.00 2 2020-12-01 2020-12-01 17:18:42.342051 2020-12-01 17:18:50.261702 1 31 PV3-V-950 \N \N f 3568 1 2 1205 3398.00 0.00 0.00 3398.00 2 2020-12-01 2020-12-01 19:46:52.641631 2020-12-01 19:47:50.824253 1 16 PV1-V-1698 \N \N f 3569 1 21 1204 899.00 0.00 0.00 899.00 2 2020-12-01 2020-12-01 20:26:20.134525 2020-12-01 20:26:38.883719 1 31 PV3-V-951 \N \N f 3570 1 18 1204 1599.00 0.00 0.00 1599.00 2 2020-12-01 2020-12-02 00:32:38.161778 2020-12-02 00:32:49.566925 1 14 PV3-V-952 \N \N f 3571 1 2 1205 1249.00 0.00 0.00 1249.00 2 2020-12-01 2020-12-02 00:36:00.23437 2020-12-02 00:36:05.684952 1 16 PV1-V-1699 \N \N f 3572 1 18 1204 3653.00 0.00 0.00 3653.00 2 2020-12-01 2020-12-02 01:37:41.759749 2020-12-02 01:37:46.074471 1 14 PV3-V-953 \N \N f 3574 1 2 1206 388.00 0.00 0.00 388.00 2 2020-12-02 2020-12-02 18:21:10.31684 2020-12-02 18:21:14.063117 1 1 PV1-V-1700 \N \N f 3579 3 2 1206 1251.00 0.00 0.00 1251.00 2 2020-12-02 2020-12-02 22:36:49.084586 2021-03-03 23:25:23.56751 0 30 PV1-V-1703 \N \N f 3576 1 18 1207 759.00 0.00 0.00 759.00 2 2020-12-02 2020-12-02 21:30:31.136159 2020-12-02 21:30:40.130258 1 14 PV3-V-956 \N \N f 3577 1 2 1206 759.00 0.00 0.00 759.00 2 2020-12-02 2020-12-02 21:38:26.604639 2020-12-02 21:38:31.537082 1 1 PV1-V-1701 \N \N f 3578 1 2 1206 799.00 0.00 0.00 799.00 2 2020-12-02 2020-12-02 22:00:00.373345 2020-12-02 22:00:43.313397 1 1 PV1-V-1702 \N \N f 3580 1 2 1206 629.00 0.00 0.00 629.00 2 2020-12-02 2020-12-02 22:43:48.941983 2020-12-02 22:43:56.127616 1 1 PV1-V-1704 \N \N f 3558 346 21 1203 1799.00 0.00 0.00 1799.00 2 2020-11-30 2020-11-30 21:39:29.885369 2020-12-13 01:55:30.549506 2 31 PV3-V-943 2021-01-04 \N f 3582 1 18 1207 699.00 0.00 0.00 699.00 2 2020-12-02 2020-12-03 01:51:15.832358 2020-12-03 01:51:19.362054 1 14 PV3-V-957 \N \N f 3583 460 21 1208 1399.00 0.00 0.00 1399.00 1 2020-12-03 2020-12-03 18:56:10.630909 2020-12-03 18:56:27.176181 1 31 PV3-V-958 \N \N f 3537 453 18 1196 1399.00 0.00 0.00 1399.00 2 2020-11-27 2020-11-28 01:14:47.652694 2020-12-05 23:28:43.130814 2 14 PV3-V-930 2021-01-01 \N f 3585 1 2 1209 629.00 0.00 0.00 629.00 2 2020-12-03 2020-12-03 19:34:18.674376 2020-12-03 19:34:23.647122 1 16 PV1-V-1706 \N \N f 3586 1 2 1209 969.00 0.00 149.00 820.00 2 2020-12-03 2020-12-03 20:23:01.392029 2020-12-03 20:23:05.191339 1 16 PV1-V-1707 \N \N f 3587 1 2 1209 2239.00 0.00 0.00 2239.00 2 2020-12-03 2020-12-03 21:09:28.299196 2020-12-03 21:09:32.934255 1 16 PV1-V-1708 \N \N f 3588 1 2 1209 689.00 0.00 0.00 689.00 2 2020-12-03 2020-12-03 21:21:35.133622 2020-12-03 21:22:02.395745 1 16 PV1-V-1709 \N \N f 3590 1 2 1209 799.00 0.00 0.00 799.00 2 2020-12-03 2020-12-04 00:29:19.444934 2020-12-04 00:29:33.989944 1 16 PV1-V-1710 \N \N f 3591 1 2 1209 529.00 0.00 0.00 529.00 2 2020-12-03 2020-12-04 00:48:02.930144 2020-12-04 00:48:07.123373 1 1 PV1-V-1711 \N \N f 3592 1 2 1209 899.00 0.00 0.00 899.00 2 2020-12-03 2020-12-04 01:49:12.191754 2020-12-04 01:51:21.026365 1 16 PV1-V-1712 \N \N f 3593 1 2 1210 649.00 0.00 0.00 649.00 2 2020-12-04 2020-12-04 18:25:06.002687 2020-12-04 18:25:25.137512 1 1 PV1-V-1713 \N \N f 3594 1 21 1211 119.00 0.00 0.00 119.00 2 2020-12-04 2020-12-04 18:41:04.458217 2020-12-04 18:41:40.03547 1 31 PV3-V-961 \N \N f 3557 456 2 1202 989.00 0.00 0.00 989.00 2 2020-11-30 2020-11-30 20:46:46.177626 2020-12-04 20:59:55.624724 2 1 PV1-V-1695 2021-01-04 \N f 3556 124 2 1202 3398.00 0.00 0.00 3398.00 2 2020-11-30 2020-11-30 20:41:27.70712 2021-01-16 21:53:34.5814 2 1 PV1-V-1694 2021-01-04 \N f 3573 283 18 1204 569.00 0.00 0.00 569.00 2 2020-12-01 2020-12-02 01:49:05.832809 2021-02-24 01:30:29.048335 0 14 PV3-V-954 \N \N f 3589 377 21 1208 1199.00 0.00 0.00 1199.00 2 2020-12-03 2020-12-03 23:56:26.928391 2021-03-02 02:04:37.001689 0 14 PV3-V-960 \N \N f 3595 1 2 1210 3087.00 0.00 0.00 3087.00 2 2020-12-04 2020-12-04 19:28:49.425326 2020-12-04 19:29:20.923705 1 1 PV1-V-1714 \N \N f 3625 1 18 1215 1399.00 0.00 0.00 1399.00 2 2020-12-07 2020-12-08 01:02:34.595326 2020-12-08 01:02:39.168834 1 14 PV3-V-972 \N \N f 3597 1 21 1211 1819.17 68.83 0.00 1888.00 2 2020-12-04 2020-12-04 20:32:10.700807 2020-12-04 20:33:00.15241 1 31 PV3-V-962 \N \N f 3599 1 2 1210 1598.00 0.00 0.00 1598.00 2 2020-12-04 2020-12-04 21:10:23.576845 2020-12-04 21:10:32.460911 1 16 PV1-V-1717 \N \N f 3642 469 21 1219 1599.00 0.00 0.00 1599.00 1 2020-12-09 2020-12-09 23:18:09.375524 2020-12-15 01:19:19.37888 2 31 PV3-V-976 2021-01-13 \N f 3620 465 2 1216 569.00 0.00 0.00 569.00 2 2020-12-07 2020-12-07 22:04:44.128708 2020-12-18 00:46:52.462661 2 1 PV1-V-1729 2021-01-11 \N f 3602 1 2 1210 589.00 0.00 0.00 589.00 2 2020-12-04 2020-12-04 23:07:16.813463 2020-12-04 23:07:22.92296 1 16 PV1-V-1720 \N \N f 3603 1 21 1211 1199.00 0.00 0.00 1199.00 2 2020-12-04 2020-12-04 23:18:47.767009 2020-12-04 23:18:59.739223 1 31 PV3-V-963 \N \N f 3604 1 21 1211 529.00 0.00 0.00 529.00 2 2020-12-04 2020-12-04 23:37:40.140261 2020-12-04 23:41:26.574038 1 31 PV3-V-964 \N \N f 3605 1 2 1210 999.00 0.00 0.00 999.00 2 2020-12-04 2020-12-05 01:41:06.864111 2020-12-05 01:42:05.189115 1 1 PV1-V-1721 \N \N f 3606 1 2 1212 879.00 0.00 0.00 879.00 2 2020-12-05 2020-12-05 19:23:36.607947 2020-12-05 19:23:45.082748 1 1 PV1-V-1722 \N \N f 3607 1 2 1212 698.00 0.00 100.00 598.00 2 2020-12-05 2020-12-05 19:33:01.673596 2020-12-05 19:33:06.440348 1 1 PV1-V-1723 \N \N f 3608 1 2 1212 1499.00 0.00 0.00 1499.00 2 2020-12-05 2020-12-05 20:03:02.480339 2020-12-05 20:03:17.82034 1 1 PV1-V-1724 \N \N f 3609 1 21 1213 899.00 0.00 0.00 899.00 2 2020-12-05 2020-12-05 20:21:54.406376 2020-12-05 20:22:52.559656 1 31 PV3-V-965 \N \N f 3610 1 2 1212 3598.00 0.00 0.00 3598.00 2 2020-12-05 2020-12-05 20:28:17.999857 2020-12-05 20:28:36.10959 1 1 PV1-V-1725 \N \N f 3611 463 21 1213 1399.00 0.00 0.00 1399.00 1 2020-12-05 2020-12-05 20:34:31.748512 2020-12-05 20:35:44.388481 2 31 PV3-V-966 2021-01-09 \N f 3612 463 21 1213 2798.00 0.00 0.00 2798.00 1 2020-12-05 2020-12-05 20:36:36.41429 2020-12-05 20:37:45.252349 1 31 PV3-V-967 \N \N f 3614 1 2 1212 689.00 0.00 0.00 689.00 2 2020-12-05 2020-12-05 20:52:46.615171 2020-12-05 20:53:23.220847 1 1 PV1-V-1726 \N \N f 3613 463 21 1213 2798.00 0.00 0.00 2798.00 2 2020-12-05 2020-12-05 20:50:04.503824 2021-01-29 01:38:30.991994 2 31 PV3-V-968 2021-01-09 \N f 3616 1 2 1212 1568.00 0.00 0.00 1568.00 2 2020-12-05 2020-12-06 01:09:21.619955 2020-12-06 01:09:44.793532 1 1 PV1-V-1727 \N \N f 3617 1 2 1212 699.00 0.00 0.00 699.00 2 2020-12-05 2020-12-06 01:53:42.584265 2020-12-06 01:54:17.642058 1 16 PV1-V-1728 \N \N f 3618 1 21 1214 1198.00 0.00 0.00 1198.00 2 2020-12-06 2020-12-06 19:08:10.504915 2020-12-06 19:08:26.370506 1 31 PV3-V-970 \N \N f 3619 1 21 1215 1199.00 0.00 0.00 1199.00 2 2020-12-07 2020-12-07 17:18:51.378358 2020-12-07 17:18:57.624984 1 31 PV3-V-971 \N \N f 3596 461 2 1210 1249.00 0.00 0.00 1249.00 2 2020-12-04 2020-12-04 20:31:30.435187 2020-12-07 21:19:24.451773 2 1 PV1-V-1715 2021-01-08 \N f 3644 470 18 1221 789.00 0.00 0.00 789.00 2 2020-12-10 2020-12-10 19:57:48.229773 2020-12-19 06:22:02.110005 2 31 PV3-V-978 2021-01-14 \N f 3598 456 2 1210 1099.00 0.00 0.00 1099.00 2 2020-12-04 2020-12-04 21:03:50.229268 2020-12-07 22:28:51.10289 2 1 PV1-V-1716 2021-01-08 \N f 3621 1 2 1216 229.00 0.00 0.00 229.00 2 2020-12-07 2020-12-07 23:32:15.275451 2020-12-07 23:32:19.982358 1 1 PV1-V-1730 \N \N f 3622 1 2 1216 4824.00 0.00 0.00 4824.00 2 2020-12-07 2020-12-07 23:43:43.724101 2020-12-07 23:43:49.705867 1 1 PV1-V-1731 \N \N f 3623 1 2 1216 1119.00 0.00 0.00 1119.00 2 2020-12-07 2020-12-07 23:45:45.99168 2020-12-07 23:45:52.501929 1 1 PV1-V-1732 \N \N f 3624 1 2 1216 869.00 0.00 269.00 600.00 2 2020-12-07 2020-12-08 00:12:45.319648 2020-12-08 00:12:49.779535 1 1 PV1-V-1733 \N \N f 3601 462 2 1210 1399.00 0.00 0.00 1399.00 2 2020-12-04 2020-12-04 21:52:58.657804 2020-12-17 21:20:50.543543 2 25 PV1-V-1719 2021-01-08 \N f 3627 1 21 1217 1698.00 0.00 0.00 1698.00 2 2020-12-08 2020-12-08 21:55:53.61924 2020-12-08 21:56:21.862711 1 31 PV3-V-973 \N \N f 3628 1 2 1218 1648.00 0.00 0.00 1648.00 1 2020-12-08 2020-12-08 23:41:12.704492 2020-12-08 23:42:08.12963 1 16 PV1-V-1735 \N \N f 3640 468 9 1220 699.00 0.00 0.00 699.00 2 2020-12-09 2020-12-09 22:44:09.926411 2020-12-16 20:16:05.498601 2 30 PV1-V-1745 2021-01-13 \N f 3630 1 2 1218 1799.00 0.00 0.00 1799.00 2 2020-12-08 2020-12-09 01:18:30.28362 2020-12-09 01:18:57.454631 1 25 PV1-V-1736 \N \N f 3631 1 2 1218 629.00 0.00 0.00 629.00 2 2020-12-08 2020-12-09 01:25:32.403048 2020-12-09 01:26:13.829938 1 16 PV1-V-1737 \N \N f 3632 1 21 1217 1599.00 0.00 0.00 1599.00 2 2020-12-08 2020-12-09 02:02:39.382089 2020-12-09 02:03:40.962421 1 31 PV3-V-975 \N \N f 3633 1 9 1220 899.00 0.00 0.00 899.00 2 2020-12-09 2020-12-09 18:57:18.461565 2020-12-09 18:57:30.045979 1 16 PV1-V-1738 \N \N f 3634 1 9 1220 2797.00 0.00 0.00 2797.00 2 2020-12-09 2020-12-09 19:42:40.778837 2020-12-09 19:42:54.702982 1 30 PV1-V-1739 \N \N f 3626 466 2 1218 1399.00 0.00 0.00 1399.00 1 2020-12-08 2020-12-08 20:11:42.642936 2020-12-16 21:29:48.472712 2 1 PV1-V-1734 2021-01-12 \N f 3635 467 9 1220 1196.00 0.00 0.00 1196.00 1 2020-12-09 2020-12-09 22:03:48.739461 2020-12-09 22:04:01.633667 1 30 PV1-V-1740 \N \N f 3647 1 2 1222 1234.00 0.00 0.00 1234.00 2 2020-12-10 2020-12-10 22:10:25.989361 2020-12-10 22:10:51.934154 1 1 PV1-V-1747 \N \N f 3637 1 9 1220 289.00 0.00 0.00 289.00 1 2020-12-09 2020-12-09 22:22:14.600123 2020-12-09 22:23:54.053141 1 30 PV1-V-1742 \N \N f 3638 1 9 1220 1485.00 0.00 0.00 1485.00 2 2020-12-09 2020-12-09 22:25:58.285079 2020-12-09 22:26:02.698712 1 30 PV1-V-1743 \N \N f 3639 1 9 1220 759.00 0.00 0.00 759.00 2 2020-12-09 2020-12-09 22:34:19.422287 2020-12-09 22:34:48.411655 1 16 PV1-V-1744 \N \N f 3641 1 9 1220 1658.00 0.00 0.00 1658.00 2 2020-12-09 2020-12-09 23:04:13.353831 2020-12-09 23:05:01.799269 1 30 PV1-V-1746 \N \N f 3636 467 9 1220 1196.00 0.00 0.00 1196.00 2 2020-12-09 2020-12-09 22:04:25.025377 2020-12-09 23:12:06.989699 2 30 PV1-V-1741 2021-01-13 \N f 3646 471 18 1221 998.00 0.00 0.00 998.00 2 2020-12-10 2020-12-10 21:38:08.78135 2020-12-15 18:29:44.141221 2 14 PV3-V-980 2021-01-14 \N f 3643 1 21 1219 529.00 0.00 0.00 529.00 2 2020-12-09 2020-12-10 01:38:05.910941 2020-12-10 01:38:18.917572 1 31 PV3-V-977 \N \N f 3615 464 21 1213 1799.00 0.00 0.00 1799.00 2 2020-12-05 2020-12-05 20:53:28.704814 2021-01-29 01:34:26.207858 2 31 PV3-V-966 2021-01-09 \N f 3645 1 18 1221 3597.00 0.00 0.00 3597.00 2 2020-12-10 2020-12-10 21:21:37.817027 2020-12-10 21:22:42.847745 1 14 PV3-V-979 \N \N f 3629 359 21 1217 1599.00 0.00 0.00 1599.00 2 2020-12-08 2020-12-09 00:58:55.108432 2020-12-16 01:51:12.189361 2 31 PV3-V-974 2021-01-12 \N f 3648 1 2 1222 599.00 0.00 0.00 599.00 2 2020-12-10 2020-12-10 23:11:24.070209 2020-12-10 23:11:28.126153 1 16 PV1-V-1748 \N \N f 3649 1 2 1222 1399.00 0.00 0.00 1399.00 2 2020-12-10 2020-12-10 23:15:21.831074 2020-12-10 23:16:34.172127 1 16 PV1-V-1749 \N \N f 3600 456 2 1210 569.00 0.00 0.00 569.00 2 2020-12-04 2020-12-04 21:14:32.626659 2020-12-14 22:27:56.194009 2 1 PV1-V-1718 2021-01-08 \N f 3651 1 18 1221 1198.00 0.00 0.00 1198.00 2 2020-12-10 2020-12-11 01:15:26.164327 2020-12-11 01:15:30.081156 1 24 PV3-V-982 \N \N f 3652 1 2 1222 899.00 0.00 0.00 899.00 2 2020-12-10 2020-12-11 01:19:41.228665 2020-12-11 01:19:55.360517 1 16 PV1-V-1750 \N \N f 3653 1 21 1221 1399.00 0.00 0.00 1399.00 2 2020-12-10 2020-12-11 02:39:10.357485 2020-12-11 02:40:11.109985 1 31 PV3-V-983 \N \N f 3654 1 2 1223 479.00 0.00 0.00 479.00 2 2020-12-11 2020-12-11 20:04:34.507235 2020-12-11 20:04:42.56583 1 16 PV1-V-1751 \N \N f 3655 1 2 1223 1299.00 0.00 0.00 1299.00 2 2020-12-11 2020-12-11 21:02:50.873501 2020-12-11 21:03:25.316072 1 1 PV1-V-1752 \N \N f 3656 1 18 1224 1048.00 0.00 0.00 1048.00 2 2020-12-11 2020-12-11 21:32:01.379217 2020-12-11 21:32:11.476609 1 14 PV3-V-984 \N \N f 3657 1 2 1223 759.00 0.00 0.00 759.00 2 2020-12-11 2020-12-11 22:17:01.866176 2020-12-11 22:17:06.935147 1 16 PV1-V-1753 \N \N f 3658 1 2 1223 1299.00 0.00 0.00 1299.00 2 2020-12-11 2020-12-11 23:05:21.700683 2020-12-11 23:05:48.391519 1 1 PV1-V-1754 \N \N f 3659 1 18 1224 699.00 0.00 0.00 699.00 2 2020-12-11 2020-12-11 23:34:54.464822 2020-12-11 23:34:58.567504 1 31 PV3-V-985 \N \N f 3650 472 18 1221 1499.00 0.00 0.00 1499.00 2 2020-12-10 2020-12-11 00:29:54.046421 2020-12-14 19:19:57.021258 2 14 PV3-V-981 2021-01-14 \N f 3660 1 18 1224 649.00 0.00 0.00 649.00 2 2020-12-11 2020-12-11 23:36:24.484078 2020-12-11 23:36:52.849528 1 31 PV3-V-986 \N \N f 3661 473 18 1224 899.00 0.00 0.00 899.00 1 2020-12-11 2020-12-12 00:26:17.56879 2020-12-12 00:26:28.054928 1 14 PV3-V-987 \N \N f 3720 477 18 1232 1499.00 0.00 0.00 1499.00 2 2020-12-15 2020-12-16 01:59:42.685536 2020-12-24 00:38:34.800673 2 14 PV3-V-1022 2021-01-19 \N f 3662 473 18 1224 899.00 0.00 0.00 899.00 2 2020-12-11 2020-12-12 00:27:24.022216 2020-12-23 22:10:57.480508 2 31 PV3-V-988 2021-01-15 \N f 3664 1 18 1224 1196.00 0.00 0.00 1196.00 2 2020-12-11 2020-12-12 00:42:09.939968 2020-12-12 00:42:43.731458 1 31 PV3-V-990 \N \N f 3666 1 18 1224 1799.00 0.00 0.00 1799.00 2 2020-12-11 2020-12-12 01:39:58.804653 2020-12-12 01:40:43.65746 1 31 PV3-V-992 \N \N f 3667 1 18 1224 1399.00 0.00 0.00 1399.00 1 2020-12-11 2020-12-12 02:29:56.484475 2020-12-12 02:33:28.226277 1 31 PV3-V-993 \N \N f 3668 1 18 1224 1768.00 0.00 0.00 1768.00 2 2020-12-11 2020-12-12 02:34:15.269994 2020-12-12 02:35:20.457066 1 31 PV3-V-994 \N \N f 3665 70 18 1224 1877.45 220.55 0.00 2098.00 2 2020-12-11 2020-12-12 00:55:33.4866 2020-12-23 18:28:43.798066 0 14 PV3-V-991 \N \N f 3670 1 2 1225 759.00 0.00 0.00 759.00 2 2020-12-12 2020-12-12 19:01:23.595129 2020-12-12 19:02:24.768277 1 1 PV1-V-1756 \N \N f 3671 474 2 1225 899.00 0.00 0.00 899.00 1 2020-12-12 2020-12-12 19:42:55.812707 2020-12-12 19:44:20.029107 2 1 PV1-V-1757 2021-01-16 \N f 3672 1 2 1225 1248.00 0.00 0.00 1248.00 2 2020-12-12 2020-12-12 20:04:51.57536 2020-12-12 20:05:00.780885 1 1 PV1-V-1758 \N \N f 3673 1 2 1225 1199.00 0.00 150.00 1049.00 2 2020-12-12 2020-12-12 20:32:24.055153 2020-12-12 20:32:56.74094 1 16 PV1-V-1759 \N \N f 3674 1 2 1225 1499.00 0.00 0.00 1499.00 2 2020-12-12 2020-12-12 21:48:31.044754 2020-12-12 21:48:52.335824 1 1 PV1-V-1760 \N \N f 3675 475 2 1225 1199.00 0.00 0.00 1199.00 3 2020-12-12 2020-12-12 23:38:10.258177 2020-12-12 23:38:23.569747 2 1 PV1-V-1761 2021-01-16 \N f 3676 217 2 1225 489.00 0.00 0.00 489.00 3 2020-12-12 2020-12-12 23:44:53.508051 2020-12-12 23:45:02.245576 2 16 PV1-V-1762 2021-01-16 \N f 3677 1 2 1225 759.00 0.00 0.00 759.00 2 2020-12-12 2020-12-13 00:16:44.581941 2020-12-13 00:17:00.041404 1 16 PV1-V-1763 \N \N f 3678 1 2 1225 629.00 0.00 0.00 629.00 2 2020-12-12 2020-12-13 00:35:44.160103 2020-12-13 00:36:04.239463 1 16 PV1-V-1764 \N \N f 3679 1 18 1226 1799.00 0.00 0.00 1799.00 2 2020-12-12 2020-12-13 01:03:43.635322 2020-12-13 01:03:57.808955 1 14 PV3-V-995 \N \N f 3680 1 18 1226 2099.00 0.00 0.00 2099.00 2 2020-12-12 2020-12-13 01:04:31.572409 2020-12-13 01:04:41.299544 1 14 PV3-V-996 \N \N f 3681 1 9 1227 1399.00 0.00 0.00 1399.00 2 2020-12-13 2020-12-13 18:09:51.419963 2020-12-13 18:10:25.803098 1 16 PV1-V-1765 \N \N f 3682 1 9 1227 1389.00 0.00 0.00 1389.00 1 2020-12-13 2020-12-13 20:26:12.138257 2020-12-13 20:26:33.69342 1 16 PV1-V-1766 \N \N f 3683 1 9 1227 1389.00 0.00 150.00 1239.00 2 2020-12-13 2020-12-13 20:27:09.606405 2020-12-13 20:27:42.171032 1 16 PV1-V-1767 \N \N f 3684 1 21 1228 2498.00 0.00 0.00 2498.00 2 2020-12-13 2020-12-13 20:41:13.7087 2020-12-13 20:41:56.921933 1 24 PV3-V-997 \N \N f 3685 1 21 1228 499.00 0.00 0.00 499.00 2 2020-12-13 2020-12-13 21:05:15.654578 2020-12-13 21:05:20.55055 1 31 PV3-V-998 \N \N f 3686 1 21 1228 1899.00 0.00 0.00 1899.00 2 2020-12-13 2020-12-13 21:21:41.738068 2020-12-13 21:22:54.169735 1 31 PV3-V-999 \N \N f 3687 1 9 1227 629.00 0.00 0.00 629.00 2 2020-12-13 2020-12-13 22:06:51.098007 2020-12-13 22:10:32.254518 1 16 PV1-V-1768 \N \N f 3688 1 9 1229 1399.00 0.00 0.00 1399.00 2 2020-12-14 2020-12-14 17:48:47.098859 2020-12-14 17:48:51.788263 1 30 PV1-V-1769 \N \N f 3689 1 21 1230 2099.00 0.00 0.00 2099.00 2 2020-12-14 2020-12-14 19:22:27.224439 2020-12-14 19:23:35.131706 1 31 PV3-V-1000 \N \N f 3669 312 2 1225 698.00 0.00 0.00 698.00 2 2020-12-12 2020-12-12 18:58:35.826723 2020-12-20 18:55:54.285785 2 1 PV1-V-1755 2021-01-16 \N f 3691 1 18 1230 379.00 0.00 0.00 379.00 2 2020-12-14 2020-12-14 22:02:47.974769 2020-12-14 22:03:15.147029 1 31 PV3-V-1002 \N \N f 3692 1 18 1230 1228.00 0.00 0.00 1228.00 2 2020-12-14 2020-12-14 22:05:29.646772 2020-12-14 22:05:36.675853 1 31 PV3-V-1003 \N \N f 3693 1 18 1230 1599.00 0.00 0.00 1599.00 2 2020-12-14 2020-12-14 22:06:54.835391 2020-12-14 22:06:58.760766 1 24 PV3-V-1004 \N \N f 3694 1 18 1230 699.00 0.00 0.00 699.00 2 2020-12-14 2020-12-14 22:57:01.507858 2020-12-14 22:57:35.483693 1 14 PV3-V-1005 \N \N f 3695 1 18 1230 998.00 0.00 0.00 998.00 2 2020-12-14 2020-12-14 23:01:58.638785 2020-12-14 23:02:21.743247 1 31 PV3-V-1006 \N \N f 3696 1 2 1229 1119.00 0.00 150.00 969.00 2 2020-12-14 2020-12-14 23:21:27.329791 2020-12-14 23:21:51.443452 1 30 PV1-V-1770 \N \N f 3697 1 2 1229 499.00 0.00 0.00 499.00 2 2020-12-14 2020-12-14 23:33:57.441468 2020-12-14 23:34:13.552678 1 30 PV1-V-1771 \N \N f 3698 1 18 1230 2099.00 0.00 0.00 2099.00 2 2020-12-14 2020-12-15 00:04:35.940926 2020-12-15 00:04:42.852114 1 14 PV3-V-1007 \N \N f 3699 1 18 1230 1499.00 0.00 0.00 1499.00 2 2020-12-14 2020-12-15 00:55:05.483925 2020-12-15 00:55:14.566608 1 14 PV3-V-1008 \N \N f 3700 1 2 1229 599.00 0.00 0.00 599.00 2 2020-12-14 2020-12-15 01:10:25.523241 2020-12-15 01:10:32.333915 1 1 PV1-V-1772 \N \N f 3701 1 18 1230 568.00 0.00 0.00 568.00 2 2020-12-14 2020-12-15 01:20:00.381959 2020-12-15 01:20:04.43719 1 31 PV3-V-1009 \N \N f 3702 1 18 1230 1799.00 0.00 0.00 1799.00 2 2020-12-14 2020-12-15 01:43:47.532265 2020-12-15 01:43:57.103982 1 14 PV3-V-1010 \N \N f 3703 1 18 1230 289.00 0.00 0.00 289.00 1 2020-12-14 2020-12-15 02:41:20.370651 2020-12-15 02:41:47.656339 1 14 PV3-V-1011 \N \N f 3704 1 18 1230 149.00 0.00 0.00 149.00 2 2020-12-14 2020-12-15 02:42:01.603228 2020-12-15 02:42:05.490134 1 14 PV3-V-1012 \N \N f 3705 1 2 1231 2317.00 0.00 0.00 2317.00 2 2020-12-15 2020-12-15 17:28:21.747035 2020-12-15 17:28:27.686395 1 1 PV1-V-1773 \N \N f 3713 1 2 1231 1389.00 0.00 0.00 1389.00 2 2020-12-15 2020-12-15 23:15:45.128262 2020-12-15 23:15:50.799657 1 16 PV1-V-1776 \N \N f 3706 476 18 1232 1045.00 0.00 0.00 1045.00 1 2020-12-15 2020-12-15 18:13:24.799323 2020-12-15 18:13:52.904099 1 14 PV3-V-1013 \N \N f 3663 473 18 1224 849.00 0.00 0.00 849.00 2 2020-12-11 2020-12-12 00:33:01.291237 2020-12-23 22:10:33.570739 2 31 PV3-V-989 2021-01-15 \N f 3708 1 2 1231 1499.00 0.00 0.00 1499.00 2 2020-12-15 2020-12-15 20:07:02.889625 2020-12-15 20:07:13.485754 1 1 PV1-V-1774 \N \N f 3709 1 18 1232 811.00 0.00 0.00 811.00 2 2020-12-15 2020-12-15 21:42:20.314874 2020-12-15 21:42:23.685427 1 14 PV3-V-1015 \N \N f 3710 1 18 1232 1499.00 0.00 0.00 1499.00 2 2020-12-15 2020-12-15 22:20:40.29491 2020-12-15 22:20:55.873541 1 14 PV3-V-1016 \N \N f 3711 1 18 1232 1499.00 0.00 0.00 1499.00 2 2020-12-15 2020-12-15 22:48:14.041122 2020-12-15 22:48:52.784039 1 14 PV3-V-1017 \N \N f 3712 1 2 1231 1119.83 179.17 0.00 1299.00 2 2020-12-15 2020-12-15 22:56:31.284064 2020-12-15 22:56:39.506267 1 16 PV1-V-1775 \N \N f 3714 1 18 1232 2638.00 0.00 0.00 2638.00 2 2020-12-15 2020-12-15 23:31:20.687795 2020-12-15 23:32:01.873853 1 14 PV3-V-1018 \N \N f 3715 1 2 1231 599.00 0.00 0.00 599.00 2 2020-12-15 2020-12-16 00:13:52.350775 2020-12-16 00:13:57.894223 1 30 PV1-V-1777 \N \N f 3716 1 2 1231 1599.00 0.00 0.00 1599.00 2 2020-12-15 2020-12-16 01:15:00.926871 2020-12-16 01:15:18.954379 1 1 PV1-V-1778 \N \N f 3717 1 18 1232 2998.00 0.00 0.00 2998.00 2 2020-12-15 2020-12-16 01:16:22.330901 2020-12-16 01:16:33.438682 1 14 PV3-V-1019 \N \N f 3718 1 18 1232 1699.00 0.00 0.00 1699.00 2 2020-12-15 2020-12-16 01:58:17.416295 2020-12-16 01:58:21.016109 1 14 PV3-V-1020 \N \N f 3719 477 18 1232 1499.00 0.00 0.00 1499.00 1 2020-12-15 2020-12-16 01:59:16.700588 2020-12-16 01:59:21.337496 1 14 PV3-V-1021 \N \N f 3722 478 18 1232 1499.00 0.00 0.00 1499.00 2 2020-12-15 2020-12-16 03:32:01.815071 2020-12-31 02:35:09.59709 2 14 PV3-V-1024 2021-01-19 \N f 3721 1 18 1232 1798.00 0.00 0.00 1798.00 2 2020-12-15 2020-12-16 03:30:04.932237 2020-12-16 03:30:09.270155 1 14 PV3-V-1023 \N \N f 3723 1 2 1234 1799.00 0.00 0.00 1799.00 2 2020-12-16 2020-12-16 18:12:58.979728 2020-12-16 18:13:13.482272 1 16 PV1-V-1779 \N \N f 3724 1 2 1234 301.72 48.28 0.00 350.00 2 2020-12-16 2020-12-16 18:17:01.769097 2020-12-16 18:17:47.973661 1 1 PV1-V-1780 \N \N f 3725 1 2 1234 699.00 0.00 0.00 699.00 2 2020-12-16 2020-12-16 18:28:15.729384 2020-12-16 18:30:57.204925 1 16 PV1-V-1781 \N \N f 3690 470 21 1230 699.00 0.00 0.00 699.00 2 2020-12-14 2020-12-14 20:31:49.969143 2020-12-19 06:21:40.671812 2 31 PV3-V-1001 2021-01-18 \N f 3726 1 2 1234 3027.00 0.00 0.00 3027.00 2 2020-12-16 2020-12-16 18:51:44.611556 2020-12-16 18:53:57.582573 1 1 PV1-V-1782 \N \N f 3727 1 2 1234 189.00 0.00 0.00 189.00 2 2020-12-16 2020-12-16 19:32:49.918331 2020-12-16 19:33:10.854148 1 1 PV1-V-1783 \N \N f 3728 1 21 1233 1148.00 0.00 0.00 1148.00 2 2020-12-16 2020-12-16 19:58:22.380547 2020-12-16 19:59:19.670891 1 31 PV3-V-1025 \N \N f 3729 1 21 1233 1499.00 0.00 0.00 1499.00 2 2020-12-16 2020-12-16 20:06:10.72391 2020-12-16 20:06:39.74878 1 31 PV3-V-1026 \N \N f 3730 1 2 1234 999.00 0.00 0.00 999.00 2 2020-12-16 2020-12-16 20:11:48.8895 2020-12-16 20:12:32.406312 1 1 PV1-V-1784 \N \N f 3731 1 21 1233 3598.00 0.00 0.00 3598.00 2 2020-12-16 2020-12-16 21:07:40.321175 2020-12-16 21:08:32.604657 1 31 PV3-V-1027 \N \N f 3732 466 2 1234 617.24 82.76 100.00 600.00 2 2020-12-16 2020-12-16 21:30:41.930571 2020-12-16 21:30:50.738335 1 1 PV1-V-1785 \N \N f 3733 1 21 1233 799.00 0.00 0.00 799.00 2 2020-12-16 2020-12-16 22:25:02.466143 2020-12-16 22:25:35.521214 1 31 PV3-V-1027 \N \N f 3734 1 21 1233 1599.00 0.00 0.00 1599.00 2 2020-12-16 2020-12-16 23:21:22.840407 2020-12-16 23:21:28.476318 1 14 PV3-V-1029 \N \N f 3735 1 2 1234 1499.00 0.00 0.00 1499.00 2 2020-12-16 2020-12-16 23:26:12.201056 2020-12-16 23:26:35.4128 1 16 PV1-V-1786 \N \N f 3736 1 21 1233 85.34 13.65 0.00 98.99 2 2020-12-16 2020-12-16 23:36:40.905434 2020-12-16 23:43:52.982651 1 14 PV3-V-1030 \N \N f 3742 479 18 1233 3098.00 0.00 0.00 3098.00 2 2020-12-16 2020-12-17 00:39:05.374616 2021-01-07 01:09:18.816936 2 14 PV3-V-1033 2021-01-20 \N f 3738 1 2 1234 1499.00 0.00 0.00 1499.00 2 2020-12-16 2020-12-16 23:52:23.173312 2020-12-16 23:53:15.555418 1 1 PV1-V-1787 \N \N f 3739 1 2 1234 1499.00 0.00 0.00 1499.00 2 2020-12-16 2020-12-16 23:58:18.844598 2020-12-16 23:58:24.455147 1 1 PV1-V-1788 \N \N f 3740 1 2 1234 1251.00 0.00 0.00 1251.00 2 2020-12-16 2020-12-17 00:03:19.38605 2020-12-17 00:03:27.407484 1 1 PV1-V-1789 \N \N f 3741 479 18 1233 3098.00 0.00 0.00 3098.00 1 2020-12-16 2020-12-17 00:38:12.920586 2020-12-17 00:38:35.709179 1 14 PV3-V-1032 \N \N f 3743 1 2 1234 1499.00 0.00 0.00 1499.00 2 2020-12-16 2020-12-17 00:42:42.609807 2020-12-17 00:48:17.050364 1 1 PV1-V-1790 \N \N f 3744 1 18 1233 1499.00 0.00 0.00 1499.00 2 2020-12-16 2020-12-17 00:56:49.170478 2020-12-17 00:57:16.257507 1 14 PV3-V-1034 \N \N f 3745 1 2 1234 1077.97 131.04 100.00 1109.01 2 2020-12-16 2020-12-17 01:30:41.959468 2020-12-17 01:30:50.808975 1 16 PV1-V-1791 \N \N f 3746 1 18 1233 899.00 0.00 0.00 899.00 2 2020-12-16 2020-12-17 01:33:18.700179 2020-12-17 01:34:50.341019 1 14 PV3-V-1035 \N \N f 3757 1 2 1236 2998.00 0.00 0.00 2998.00 2 2020-12-17 2020-12-18 00:15:21.736835 2020-12-18 00:17:02.576491 1 16 PV1-V-1798 \N \N f 3747 480 18 1233 2008.00 0.00 0.00 2008.00 1 2020-12-16 2020-12-17 01:41:10.956119 2020-12-17 01:41:42.088678 1 14 PV3-V-1036 \N \N f 3752 481 2 1236 1799.00 0.00 0.00 1799.00 2 2020-12-17 2020-12-17 18:16:27.607724 2020-12-24 21:31:38.392408 2 1 PV1-V-1793 2021-01-21 \N f 3749 1 18 1235 1499.00 0.00 0.00 1499.00 2 2020-12-16 2020-12-17 03:08:13.413698 2020-12-17 03:08:16.998655 1 14 PV3-V-1038 \N \N f 3750 1 21 1237 1499.00 0.00 0.00 1499.00 2 2020-12-17 2020-12-17 18:05:35.272588 2020-12-17 18:05:50.537595 1 31 PV3-V-1039 \N \N f 3751 1 2 1236 159.00 0.00 0.00 159.00 2 2020-12-17 2020-12-17 18:06:14.715516 2020-12-17 18:07:00.601988 1 1 PV1-V-1792 \N \N f 3737 478 21 1233 1389.00 0.00 0.00 1389.00 2 2020-12-16 2020-12-16 23:44:48.490278 2020-12-25 01:42:01.93284 2 14 PV3-V-1031 2021-01-20 \N f 3753 1 2 1236 749.00 0.00 0.00 749.00 2 2020-12-17 2020-12-17 20:13:28.725554 2020-12-17 20:13:37.637812 1 16 PV1-V-1794 \N \N f 3754 1 2 1236 699.00 0.00 0.00 699.00 2 2020-12-17 2020-12-17 20:35:53.923876 2020-12-17 20:36:23.968847 1 1 PV1-V-1795 \N \N f 3755 1 2 1236 1399.00 0.00 0.00 1399.00 2 2020-12-17 2020-12-17 21:13:45.682483 2020-12-17 21:13:54.045017 1 1 PV1-V-1796 \N \N f 3756 1 2 1236 379.00 0.00 0.00 379.00 2 2020-12-17 2020-12-17 21:16:26.797908 2020-12-17 21:16:32.78918 1 16 PV1-V-1797 \N \N f 3758 1 2 1236 84.48 13.52 0.00 98.00 2 2020-12-17 2020-12-18 00:18:40.248079 2020-12-18 00:18:45.084741 1 1 PV1-V-1799 \N \N f 3759 1 2 1236 749.00 0.00 0.00 749.00 2 2020-12-17 2020-12-18 01:12:34.897577 2020-12-18 01:12:39.10245 1 16 PV1-V-1800 \N \N f 3760 1 18 1237 1629.00 0.00 0.00 1629.00 2 2020-12-17 2020-12-18 06:26:39.649805 2020-12-18 06:26:43.52336 1 31 PV3-V-1040 \N \N f 3761 1 18 1237 2648.00 0.00 0.00 2648.00 2 2020-12-17 2020-12-18 06:31:04.795857 2020-12-18 06:31:08.599859 1 31 PV3-V-1041 \N \N f 3762 1 18 1237 811.00 0.00 0.00 811.00 2 2020-12-17 2020-12-18 06:31:27.236347 2020-12-18 06:31:33.389445 1 31 PV3-V-1042 \N \N f 3763 1 18 1237 759.00 0.00 0.00 759.00 2 2020-12-17 2020-12-18 06:32:16.481893 2020-12-18 06:32:20.24828 1 14 PV3-V-1043 \N \N f 3764 1 18 1237 1499.00 0.00 0.00 1499.00 2 2020-12-17 2020-12-18 06:32:41.636127 2020-12-18 06:32:46.466571 1 14 PV3-V-1044 \N \N f 3765 1 18 1237 849.00 0.00 0.00 849.00 2 2020-12-17 2020-12-18 06:33:03.382238 2020-12-18 06:33:07.729348 1 14 PV3-V-1045 \N \N f 3766 1 18 1237 2977.69 179.31 1599.00 1558.00 2 2020-12-17 2020-12-18 06:34:22.347374 2020-12-18 06:34:27.173797 1 14 PV3-V-1046 \N \N f 3767 1 18 1237 849.00 0.00 0.00 849.00 2 2020-12-17 2020-12-18 06:35:05.868624 2020-12-18 06:35:10.572625 1 14 PV3-V-1047 \N \N f 3768 1 18 1237 1499.00 0.00 0.00 1499.00 2 2020-12-17 2020-12-18 06:46:17.949563 2020-12-18 06:46:22.111467 1 14 PV3-V-1048 \N \N f 3769 1 18 1237 1399.00 0.00 0.00 1399.00 2 2020-12-17 2020-12-18 06:51:52.02335 2020-12-18 06:51:55.547164 1 14 PV3-V-1049 \N \N f 3770 1 2 1238 1799.00 0.00 0.00 1799.00 2 2020-12-18 2020-12-18 17:12:55.795086 2020-12-18 17:13:00.186047 1 1 PV1-V-1801 \N \N f 3748 480 18 1233 2008.00 0.00 0.00 2008.00 1 2020-12-16 2020-12-17 01:43:33.894278 2020-12-23 02:44:46.558847 2 14 PV3-V-1037 2021-01-20 \N f 3772 1 2 1238 1199.00 0.00 0.00 1199.00 2 2020-12-18 2020-12-18 22:12:33.018752 2020-12-18 22:12:37.809431 1 1 PV1-V-1803 \N \N f 3773 1 2 1238 899.00 0.00 0.00 899.00 2 2020-12-18 2020-12-18 23:08:12.676455 2020-12-18 23:08:55.197711 1 1 PV1-V-1804 \N \N f 3774 1 2 1238 1499.00 0.00 0.00 1499.00 2 2020-12-18 2020-12-19 00:53:18.508565 2020-12-19 00:53:27.730279 1 1 PV1-V-1805 \N \N f 3775 1 18 1239 1045.00 0.00 0.00 1045.00 2 2020-12-18 2020-12-19 06:13:01.493407 2020-12-19 06:13:05.598125 1 14 PV3-V-1050 \N \N f 3776 1 18 1239 2409.00 0.00 0.00 2409.00 2 2020-12-18 2020-12-19 06:14:07.320745 2020-12-19 06:14:14.998391 1 14 PV3-V-1051 \N \N f 3777 1 18 1239 1699.00 0.00 0.00 1699.00 2 2020-12-18 2020-12-19 06:14:29.415666 2020-12-19 06:14:33.495111 1 14 PV3-V-1052 \N \N f 3778 1 18 1239 2598.00 0.00 0.00 2598.00 2 2020-12-18 2020-12-19 06:15:33.613209 2020-12-19 06:15:37.735587 1 14 PV3-V-1053 \N \N f 3779 1 18 1239 799.00 0.00 0.00 799.00 2 2020-12-18 2020-12-19 06:16:59.813794 2020-12-19 06:17:04.745693 1 14 PV3-V-1054 \N \N f 3780 1 2 1240 599.00 0.00 0.00 599.00 2 2020-12-19 2020-12-19 18:18:03.238853 2020-12-19 18:18:39.103967 1 16 PV1-V-1806 \N \N f 3781 1 2 1240 899.00 0.00 0.00 899.00 2 2020-12-19 2020-12-19 21:38:42.817763 2020-12-19 21:38:51.822419 1 16 PV1-V-1807 \N \N f 3782 1 2 1240 699.00 0.00 0.00 699.00 2 2020-12-19 2020-12-19 23:56:33.894647 2020-12-19 23:56:48.583429 1 16 PV1-V-1808 \N \N f 3783 1 2 1240 199.00 0.00 0.00 199.00 1 2020-12-19 2020-12-20 00:33:35.531116 2020-12-20 00:38:30.029132 1 16 PV1-V-1809 \N \N f 3784 1 2 1240 199.00 0.00 0.00 199.00 2 2020-12-19 2020-12-20 00:38:45.071464 2020-12-20 00:38:50.448063 1 16 PV1-V-1810 \N \N f 3785 1 2 1240 549.00 0.00 0.00 549.00 2 2020-12-19 2020-12-20 00:43:43.198403 2020-12-20 00:43:50.86811 1 16 PV1-V-1811 \N \N f 3786 1 2 1240 69.00 0.00 0.00 69.00 2 2020-12-19 2020-12-20 01:17:35.343072 2020-12-20 01:17:39.068069 1 16 PV1-V-1812 \N \N f 3787 1 2 1240 189.00 0.00 0.00 189.00 2 2020-12-19 2020-12-20 01:45:07.586147 2020-12-20 01:45:15.717292 1 1 PV1-V-1813 \N \N f 3788 1 2 1240 999.00 0.00 0.00 999.00 2 2020-12-19 2020-12-20 01:49:26.592535 2020-12-20 01:49:55.75751 1 1 PV1-V-1814 \N \N f 3789 1 18 1241 1499.00 0.00 0.00 1499.00 2 2020-12-19 2020-12-20 06:08:36.123178 2020-12-20 06:08:40.267908 1 14 PV3-V-1055 \N \N f 3790 1 18 1241 1499.00 0.00 0.00 1499.00 2 2020-12-19 2020-12-20 06:09:09.305537 2020-12-20 06:09:12.702119 1 14 PV3-V-1056 \N \N f 3791 1 18 1241 1499.00 0.00 0.00 1499.00 2 2020-12-19 2020-12-20 06:09:25.348819 2020-12-20 06:09:28.957786 1 14 PV3-V-1057 \N \N f 3771 468 2 1238 1629.00 0.00 0.00 1629.00 2 2020-12-18 2020-12-18 18:41:55.617423 2020-12-22 21:54:28.010212 2 1 PV1-V-1802 2021-01-22 \N f 3792 1 18 1241 1299.00 0.00 0.00 1299.00 2 2020-12-19 2020-12-20 06:09:48.506603 2020-12-20 06:09:52.627016 1 14 PV3-V-1058 \N \N f 3793 1 18 1241 1199.00 0.00 0.00 1199.00 2 2020-12-19 2020-12-20 06:10:29.310702 2020-12-20 06:10:32.949203 1 14 PV3-V-1059 \N \N f 3794 1 18 1241 119.00 0.00 0.00 119.00 2 2020-12-19 2020-12-20 06:10:49.755921 2020-12-20 06:10:55.95673 1 14 PV3-V-1060 \N \N f 3795 1 18 1241 1499.00 0.00 0.00 1499.00 2 2020-12-19 2020-12-20 06:11:13.523806 2020-12-20 06:11:17.109029 1 14 PV3-V-1061 \N \N f 3822 1 9 1244 1799.00 0.00 0.00 1799.00 2 2020-12-21 2020-12-22 01:06:58.899121 2020-12-22 01:08:04.838616 1 16 PV1-V-1827 \N \N f 3798 1 18 1241 2099.00 0.00 0.00 2099.00 2 2020-12-19 2020-12-20 06:17:40.334635 2020-12-20 06:17:44.419305 1 14 PV3-V-1064 \N \N f 3797 1 18 1241 2099.00 0.00 0.00 2099.00 1 2020-12-19 2020-12-20 06:13:10.347573 2020-12-20 06:18:07.955404 1 14 PV3-V-1063 \N \N f 3799 1 18 1241 2099.00 0.00 0.00 2099.00 2 2020-12-19 2020-12-20 06:19:19.743125 2020-12-20 06:19:24.015025 1 14 PV3-V-1065 \N \N f 3707 476 18 1232 1045.00 0.00 0.00 1045.00 2 2020-12-15 2020-12-15 18:14:12.775862 2020-12-20 06:19:51.24422 2 14 PV3-V-1014 2021-01-19 \N f 3800 1 18 1241 1399.00 0.00 0.00 1399.00 1 2020-12-19 2020-12-20 06:20:58.759744 2020-12-20 06:21:02.130725 1 14 PV3-V-1066 \N \N f 3801 1 18 1241 1399.00 0.00 100.00 1299.00 2 2020-12-19 2020-12-20 06:21:18.092852 2020-12-20 06:21:25.082961 1 14 PV3-V-1067 \N \N f 3796 1 18 1241 1499.00 0.00 0.00 1499.00 1 2020-12-19 2020-12-20 06:11:37.051027 2020-12-20 06:24:38.395657 1 14 PV3-V-1062 \N \N f 3802 1 2 1242 699.00 0.00 0.00 699.00 2 2020-12-20 2020-12-20 18:32:21.656625 2020-12-20 18:32:25.257913 1 1 PV1-V-1815 \N \N f 3803 1 2 1242 2099.00 0.00 0.00 2099.00 2 2020-12-20 2020-12-20 21:30:52.548069 2020-12-20 21:31:16.685362 1 1 PV1-V-1816 \N \N f 3804 1 2 1242 189.00 0.00 0.00 189.00 2 2020-12-20 2020-12-20 22:34:19.045543 2020-12-20 22:35:03.859514 1 16 PV1-V-1817 \N \N f 3805 1 2 1242 69.00 0.00 0.00 69.00 2 2020-12-20 2020-12-20 22:49:32.352631 2020-12-20 22:49:36.92191 1 16 PV1-V-1818 \N \N f 3806 1 21 1243 1599.00 0.00 0.00 1599.00 2 2020-12-21 2020-12-21 17:53:55.430878 2020-12-21 17:54:11.481796 1 14 PV3-V-1068 \N \N f 3807 1 9 1244 1637.07 261.93 0.00 1899.00 2 2020-12-21 2020-12-21 18:23:19.674674 2020-12-21 18:23:47.955274 1 16 PV1-V-1819 \N \N f 3808 1 21 1243 1299.00 0.00 0.00 1299.00 2 2020-12-21 2020-12-21 18:34:14.885487 2020-12-21 18:35:53.183646 1 31 PV3-V-1069 \N \N f 3809 1 21 1243 1199.00 0.00 0.00 1199.00 2 2020-12-21 2020-12-21 19:03:24.725378 2020-12-21 19:04:39.223249 1 31 PV3-V-1069 \N \N f 3810 1 9 1244 1550.86 248.14 0.00 1799.00 1 2020-12-21 2020-12-21 20:53:18.751664 2020-12-21 20:53:22.573946 1 27 PV1-V-1820 \N \N f 3811 1 9 1244 1564.66 234.35 100.00 1699.01 2 2020-12-21 2020-12-21 20:53:38.042332 2020-12-21 20:53:49.907733 1 27 PV1-V-1821 \N \N f 3812 1 9 1244 85.34 13.65 0.00 98.99 2 2020-12-21 2020-12-21 21:20:13.436037 2020-12-21 21:20:17.762367 1 30 PV1-V-1822 \N \N f 3813 1 18 1243 1599.00 0.00 0.00 1599.00 2 2020-12-21 2020-12-21 21:49:50.638021 2020-12-21 21:49:58.700693 1 24 PV3-V-1071 \N \N f 3814 1 9 1244 42.24 6.76 0.00 49.00 2 2020-12-21 2020-12-21 22:14:20.915966 2020-12-21 22:14:27.245131 1 30 PV1-V-1823 \N \N f 3815 1 21 1243 811.00 0.00 0.00 811.00 2 2020-12-21 2020-12-21 22:38:58.971201 2020-12-21 22:40:16.435659 1 31 PV3-V-1072 \N \N f 3816 1 9 1244 1498.00 0.00 0.00 1498.00 2 2020-12-21 2020-12-21 23:03:56.974707 2020-12-21 23:04:33.509209 1 16 PV1-V-1824 \N \N f 3817 1 9 1244 4023.00 0.00 0.00 4023.00 2 2020-12-21 2020-12-21 23:37:51.854311 2020-12-21 23:38:01.654426 1 16 PV1-V-1825 \N \N f 3818 1 9 1244 1199.00 0.00 0.00 1199.00 2 2020-12-21 2020-12-21 23:39:19.186483 2020-12-21 23:39:44.430134 1 16 PV1-V-1826 \N \N f 3819 1 21 1243 1088.00 0.00 0.00 1088.00 2 2020-12-21 2020-12-22 00:28:30.87146 2020-12-22 00:29:13.609991 1 31 PV3-V-1073 \N \N f 3820 1 21 1243 119.00 0.00 0.00 119.00 2 2020-12-21 2020-12-22 00:30:29.257009 2020-12-22 00:30:36.893559 1 31 PV3-V-1074 \N \N f 3836 1 9 1246 1899.00 0.00 0.00 1899.00 2 2020-12-22 2020-12-22 20:27:45.51101 2020-12-22 20:28:05.90674 1 16 PV1-V-1833 \N \N f 3823 1 9 1244 1399.00 0.00 0.00 1399.00 2 2020-12-21 2020-12-22 01:48:47.157918 2020-12-22 01:50:19.858734 1 16 PV1-V-1828 \N \N f 3821 1 21 1243 1468.00 0.00 0.00 1468.00 1 2020-12-21 2020-12-22 01:04:05.11045 2020-12-22 01:55:18.367793 1 31 PV3-V-1075 \N \N f 3824 1 9 1244 1499.00 0.00 0.00 1499.00 2 2020-12-21 2020-12-22 02:08:11.324909 2020-12-22 02:09:04.07069 1 16 PV1-V-1829 \N \N f 3826 1 9 1244 1499.00 0.00 0.00 1499.00 2 2020-12-21 2020-12-22 02:11:24.147066 2020-12-22 02:11:39.48023 1 16 PV1-V-1830 \N \N f 3825 438 21 1243 1468.00 0.00 0.00 1468.00 1 2020-12-21 2020-12-22 02:10:25.168403 2020-12-22 02:13:13.011287 2 31 PV3-V-1076 2021-01-25 \N f 3827 438 21 1243 1468.00 0.00 0.00 1468.00 1 2020-12-21 2020-12-22 02:16:46.987065 2020-12-22 02:22:04.758261 2 31 PV3-V-1077 2021-01-25 \N f 3828 1 18 1245 2398.00 0.00 0.00 2398.00 2 2020-12-22 2020-12-22 18:00:59.108111 2020-12-22 18:01:10.04767 1 14 PV3-V-1078 \N \N f 3829 1 18 1245 1598.00 0.00 0.00 1598.00 2 2020-12-22 2020-12-22 18:16:42.247483 2020-12-22 18:16:51.485485 1 14 PV3-V-1079 \N \N f 3830 1 18 1245 1399.00 0.00 0.00 1399.00 2 2020-12-22 2020-12-22 19:11:27.690943 2020-12-22 19:11:35.271016 1 14 PV3-V-1080 \N \N f 3832 1 18 1245 1699.00 0.00 0.00 1699.00 2 2020-12-22 2020-12-22 19:29:22.798657 2020-12-22 19:29:27.694797 1 14 PV3-V-1082 \N \N f 3833 1 9 1246 1666.00 0.00 0.00 1666.00 2 2020-12-22 2020-12-22 20:21:23.167113 2020-12-22 20:21:37.010749 1 16 PV1-V-1831 \N \N f 3835 1 18 1245 2398.00 0.00 0.00 2398.00 2 2020-12-22 2020-12-22 20:22:52.915636 2020-12-22 20:22:58.668665 1 14 PV3-V-1083 \N \N f 3834 1 9 1246 1499.00 0.00 0.00 1499.00 2 2020-12-22 2020-12-22 20:22:49.789272 2020-12-22 20:23:01.369418 1 16 PV1-V-1832 \N \N f 3837 1 18 1245 1637.07 261.93 0.00 1899.00 2 2020-12-22 2020-12-22 20:36:37.150873 2020-12-22 20:37:35.680659 1 14 PV3-V-1084 \N \N f 3838 1 18 1245 3185.79 110.21 0.00 3296.00 2 2020-12-22 2020-12-22 20:54:11.743922 2020-12-22 20:55:03.495723 1 14 PV3-V-1085 \N \N f 3839 1 9 1246 1907.00 0.00 0.00 1907.00 2 2020-12-22 2020-12-22 21:00:28.492994 2020-12-22 21:00:48.735195 1 16 PV1-V-1834 \N \N f 3840 1 9 1246 647.00 0.00 0.00 647.00 2 2020-12-22 2020-12-22 21:05:21.773013 2020-12-22 21:05:56.606958 1 16 PV1-V-1835 \N \N f 3841 1 9 1246 1196.00 0.00 0.00 1196.00 2 2020-12-22 2020-12-22 21:19:40.415216 2020-12-22 21:19:51.514773 1 16 PV1-V-1836 \N \N f 3842 1 18 1245 2746.00 0.00 0.00 2746.00 2 2020-12-22 2020-12-22 21:23:28.92489 2020-12-22 21:23:34.696953 1 14 PV3-V-1086 \N \N f 3843 1 18 1245 3338.00 0.00 0.00 3338.00 1 2020-12-22 2020-12-22 22:08:07.798158 2020-12-22 22:08:11.781416 1 14 PV3-V-1087 \N \N f 3844 1 18 1245 3338.00 0.00 333.00 3005.00 2 2020-12-22 2020-12-22 22:09:12.495392 2020-12-22 22:09:43.661924 1 14 PV3-V-1088 \N \N f 3845 1 9 1246 1033.62 165.38 0.00 1199.00 2 2020-12-22 2020-12-22 22:34:41.275456 2020-12-22 22:36:50.728295 1 16 PV1-V-1837 \N \N f 3846 1 18 1245 383.79 26.21 160.00 250.00 2 2020-12-22 2020-12-22 23:07:09.587037 2020-12-22 23:07:14.321391 1 14 PV3-V-1089 \N \N f 3849 1 18 1245 1469.00 0.00 469.00 1000.00 2 2020-12-22 2020-12-22 23:38:34.984466 2020-12-22 23:38:42.189508 1 14 PV3-V-1092 \N \N f 3848 1 18 1245 699.00 0.00 0.00 699.00 2 2020-12-22 2020-12-22 23:12:23.081529 2020-12-22 23:12:39.930656 1 14 PV3-V-1091 \N \N f 3847 482 18 1245 1299.00 0.00 0.00 1299.00 2 2020-12-22 2020-12-22 23:08:47.377053 2020-12-22 23:13:46.004884 2 14 PV3-V-1090 2021-01-26 \N f 3850 1 18 1245 988.00 0.00 39.00 949.00 2 2020-12-22 2020-12-22 23:52:29.635258 2020-12-22 23:52:42.61036 1 14 PV3-V-1093 \N \N f 3851 1 18 1245 99.00 0.00 0.00 99.00 2 2020-12-22 2020-12-23 00:16:03.814317 2020-12-23 00:16:07.990081 1 14 PV3-V-1094 \N \N f 3852 1 18 1245 1388.00 0.00 0.00 1388.00 2 2020-12-22 2020-12-23 00:25:21.458873 2020-12-23 00:25:31.617177 1 14 PV3-V-1095 \N \N f 3853 1 9 1246 599.00 0.00 0.00 599.00 2 2020-12-22 2020-12-23 00:41:44.378417 2020-12-23 00:42:03.745029 1 16 PV1-V-1838 \N \N f 3854 1 18 1245 1478.00 0.00 0.00 1478.00 2 2020-12-22 2020-12-23 00:55:12.48554 2020-12-23 00:55:16.831439 1 14 PV3-V-1096 \N \N f 3855 483 18 1245 1249.00 0.00 0.00 1249.00 2 2020-12-22 2020-12-23 01:25:02.747116 2020-12-23 01:29:41.954563 2 14 PV3-V-1097 2021-01-26 \N f 3831 1 18 1245 1399.00 0.00 0.00 1399.00 1 2020-12-22 2020-12-22 19:20:51.389794 2020-12-31 02:01:25.685265 1 14 PV3-V-1081 \N \N f 3856 1 18 1245 1378.45 220.55 0.00 1599.00 2 2020-12-22 2020-12-23 01:30:08.77729 2020-12-23 01:30:21.510682 1 14 PV3-V-1098 \N \N f 3857 1 18 1245 649.00 0.00 0.00 649.00 2 2020-12-22 2020-12-23 01:39:20.781765 2020-12-23 01:40:17.53422 1 14 PV3-V-1099 \N \N f 3858 1 9 1246 869.00 0.00 0.00 869.00 2 2020-12-22 2020-12-23 01:40:47.509684 2020-12-23 01:41:39.931406 1 16 PV1-V-1839 \N \N f 3859 1 18 1245 1249.00 0.00 0.00 1249.00 2 2020-12-22 2020-12-23 01:48:38.228323 2020-12-23 01:48:59.824019 1 14 PV3-V-1100 \N \N f 3860 1 18 1245 827.00 0.00 0.00 827.00 2 2020-12-22 2020-12-23 01:51:41.352227 2020-12-23 01:52:34.957283 1 14 PV3-V-1101 \N \N f 3861 1 18 1245 1699.00 0.00 0.00 1699.00 2 2020-12-22 2020-12-23 01:54:14.751093 2020-12-23 01:54:24.703079 1 14 PV3-V-1102 \N \N f 3862 1 18 1245 3498.00 0.00 150.00 3348.00 2 2020-12-22 2020-12-23 02:13:45.569324 2020-12-23 02:14:30.783482 1 14 PV3-V-1103 \N \N f 3863 1 9 1246 699.00 0.00 0.00 699.00 2 2020-12-22 2020-12-23 02:26:40.675169 2020-12-23 02:27:06.623373 1 16 PV1-V-1840 \N \N f 3864 1 18 1245 769.00 0.00 0.00 769.00 2 2020-12-22 2020-12-23 02:41:49.94052 2020-12-23 02:42:15.092142 1 14 PV3-V-1104 \N \N f 3865 1 18 1245 2748.00 0.00 0.00 2748.00 2 2020-12-22 2020-12-23 02:52:15.277481 2020-12-23 02:52:23.615759 1 14 PV3-V-1105 \N \N f 3866 1 18 1247 1499.00 0.00 0.00 1499.00 2 2020-12-22 2020-12-23 03:33:57.203253 2020-12-23 03:34:06.162345 1 14 PV3-V-1106 \N \N f 3867 1 18 1247 1328.00 0.00 0.00 1328.00 2 2020-12-22 2020-12-23 03:34:25.072592 2020-12-23 03:34:29.118471 1 14 PV3-V-1107 \N \N f 3868 1 18 1247 1249.00 0.00 0.00 1249.00 2 2020-12-22 2020-12-23 03:35:02.344328 2020-12-23 03:35:06.73043 1 14 PV3-V-1108 \N \N f 3869 1 18 1247 1499.00 0.00 0.00 1499.00 2 2020-12-22 2020-12-23 03:35:26.40544 2020-12-23 03:35:30.958146 1 14 PV3-V-1109 \N \N f 3870 1 18 1247 928.00 0.00 0.00 928.00 2 2020-12-22 2020-12-23 03:35:53.976936 2020-12-23 03:35:57.754677 1 14 PV3-V-1110 \N \N f 3871 1 18 1247 1798.00 0.00 0.00 1798.00 2 2020-12-22 2020-12-23 03:36:22.670285 2020-12-23 03:36:27.774736 1 14 PV3-V-1111 \N \N f 3872 1 18 1247 1499.00 0.00 0.00 1499.00 2 2020-12-22 2020-12-23 03:37:14.004027 2020-12-23 03:37:18.16089 1 14 PV3-V-1112 \N \N f 3873 1 18 1247 3266.00 0.00 0.00 3266.00 2 2020-12-22 2020-12-23 03:39:10.921087 2020-12-23 03:39:15.722879 1 14 PV3-V-1113 \N \N f 3874 1 18 1247 1488.00 0.00 0.00 1488.00 2 2020-12-22 2020-12-23 03:39:48.93174 2020-12-23 03:39:53.438459 1 14 PV3-V-1114 \N \N f 3875 1 18 1247 749.00 0.00 0.00 749.00 2 2020-12-23 2020-12-23 17:37:29.03252 2020-12-23 17:37:39.284273 1 14 PV3-V-1115 \N \N f 3876 1 18 1247 398.00 0.00 0.00 398.00 2 2020-12-23 2020-12-23 17:43:36.512733 2020-12-23 17:43:48.625701 1 14 PV3-V-1116 \N \N f 3877 1 18 1247 3267.00 0.00 0.00 3267.00 2 2020-12-23 2020-12-23 18:41:19.706377 2020-12-23 18:42:49.612467 1 14 PV3-V-1117 \N \N f 3878 1 18 1247 1599.00 0.00 0.00 1599.00 2 2020-12-23 2020-12-23 18:43:38.493885 2020-12-23 18:44:33.791885 1 14 PV3-V-1118 \N \N f 3879 1 18 1247 799.00 0.00 0.00 799.00 2 2020-12-23 2020-12-23 18:51:51.167311 2020-12-23 18:52:16.792428 1 14 PV3-V-1119 \N \N f 3880 1 9 1248 2598.00 0.00 0.00 2598.00 2 2020-12-23 2020-12-23 19:08:51.691562 2020-12-23 19:09:14.00731 1 16 PV1-V-1841 \N \N f 3881 1 18 1247 189.00 0.00 0.00 189.00 2 2020-12-23 2020-12-23 19:12:20.063735 2020-12-23 19:12:25.920441 1 14 PV3-V-1120 \N \N f 3882 1 18 1247 1799.00 0.00 799.00 1000.00 1 2020-12-23 2020-12-23 19:42:42.999034 2020-12-23 19:44:30.065388 1 14 PV3-V-1121 \N \N f 3883 1 18 1247 2048.00 0.00 799.00 1249.00 2 2020-12-23 2020-12-23 19:54:19.967294 2020-12-23 19:54:30.26606 1 14 PV3-V-1122 \N \N f 3884 1 9 1248 1499.00 0.00 0.00 1499.00 2 2020-12-23 2020-12-23 20:22:32.824011 2020-12-23 20:23:09.490735 1 16 PV1-V-1842 \N \N f 3885 1 18 1247 638.00 0.00 0.00 638.00 2 2020-12-23 2020-12-23 20:41:08.580571 2020-12-23 20:41:35.736933 1 14 PV3-V-1123 \N \N f 3886 1 18 1247 2379.31 220.69 1000.00 1600.00 2 2020-12-23 2020-12-23 21:44:31.08602 2020-12-23 21:44:56.429014 1 14 PV3-V-1124 \N \N f 3887 1 9 1248 669.00 0.00 0.00 669.00 2 2020-12-23 2020-12-23 22:28:20.326347 2020-12-23 22:28:47.571513 1 16 PV1-V-1843 \N \N f 3888 1 18 1247 2547.00 0.00 0.00 2547.00 2 2020-12-23 2020-12-23 22:44:53.627514 2020-12-23 22:45:36.630316 1 14 PV3-V-1125 \N \N f 3889 1 9 1248 299.00 0.00 0.00 299.00 2 2020-12-23 2020-12-23 23:03:22.492182 2020-12-23 23:03:33.956422 1 16 PV1-V-1844 \N \N f 3890 1 18 1247 2099.00 0.00 0.00 2099.00 2 2020-12-23 2020-12-23 23:04:18.024408 2020-12-23 23:05:04.34032 1 14 PV3-V-1126 \N \N f 3891 1 18 1247 2298.00 0.00 0.00 2298.00 2 2020-12-23 2020-12-23 23:08:46.432441 2020-12-23 23:08:54.815692 1 14 PV3-V-1127 \N \N f 3892 1 18 1247 1699.00 0.00 699.00 1000.00 2 2020-12-23 2020-12-23 23:18:59.115666 2020-12-23 23:19:03.484466 1 14 PV3-V-1128 \N \N f 3893 1 9 1248 699.00 0.00 0.00 699.00 2 2020-12-23 2020-12-24 00:02:43.490805 2020-12-24 00:03:33.569204 1 16 PV1-V-1845 \N \N f 3894 1 18 1247 1299.00 0.00 0.00 1299.00 2 2020-12-23 2020-12-24 00:19:51.030467 2020-12-24 00:20:15.561802 1 14 PV3-V-1129 \N \N f 3895 1 9 1248 1728.00 0.00 0.00 1728.00 2 2020-12-23 2020-12-24 01:14:54.799044 2020-12-24 01:16:10.815139 1 16 PV1-V-1846 \N \N f 3896 1 9 1248 159.00 0.00 0.00 159.00 2 2020-12-23 2020-12-24 01:18:21.69954 2020-12-24 01:19:47.646271 1 16 PV1-V-1847 \N \N f 3897 1 9 1248 1599.00 0.00 0.00 1599.00 2 2020-12-23 2020-12-24 01:42:53.195479 2020-12-24 01:43:13.003795 1 16 PV1-V-1848 \N \N f 3898 1 18 1247 829.00 0.00 84.00 745.00 2 2020-12-23 2020-12-24 01:58:36.174606 2020-12-24 01:58:42.098057 1 14 PV3-V-1130 \N \N f 3899 1 9 1248 529.00 0.00 0.00 529.00 2 2020-12-23 2020-12-24 02:08:47.676567 2020-12-24 02:09:48.322694 1 16 PV1-V-1849 \N \N f 3900 1 18 1247 599.00 0.00 0.00 599.00 2 2020-12-23 2020-12-24 02:34:54.836475 2020-12-24 02:34:58.67795 1 14 PV3-V-1131 \N \N f 3901 1 18 1247 499.00 0.00 0.00 499.00 2 2020-12-23 2020-12-24 02:39:37.735582 2020-12-24 02:39:47.537252 1 14 PV3-V-1132 \N \N f 3902 1 21 1250 1799.00 0.00 0.00 1799.00 2 2020-12-24 2020-12-24 18:00:49.360338 2020-12-24 18:02:05.14554 1 14 PV3-V-1133 \N \N f 3903 1 21 1250 799.00 0.00 0.00 799.00 2 2020-12-24 2020-12-24 18:45:34.701784 2020-12-24 18:45:46.336968 1 31 PV3-V-1134 \N \N f 3904 1 9 1249 1699.00 0.00 0.00 1699.00 2 2020-12-24 2020-12-24 18:53:57.363667 2020-12-24 18:54:14.540031 1 16 PV1-V-1850 \N \N f 3905 1 9 1249 699.00 0.00 0.00 699.00 2 2020-12-24 2020-12-24 19:17:11.836758 2020-12-24 19:17:52.173817 1 16 PV1-V-1851 \N \N f 3906 1 21 1250 201.24 6.76 0.00 208.00 2 2020-12-24 2020-12-24 19:29:18.978329 2020-12-24 19:29:35.59949 1 31 PV3-V-1135 \N \N f 3907 1 21 1250 1899.00 0.00 0.00 1899.00 2 2020-12-24 2020-12-24 19:57:14.594135 2020-12-24 19:57:46.317474 1 31 PV3-V-1136 \N \N f 3908 1 21 1250 589.00 0.00 0.00 589.00 2 2020-12-24 2020-12-24 20:06:59.147178 2020-12-24 20:07:39.511441 1 31 PV3-V-1137 \N \N f 3909 1 9 1249 1138.00 0.00 0.00 1138.00 2 2020-12-24 2020-12-24 21:03:39.586622 2020-12-24 21:03:43.974251 1 1 PV1-V-1852 \N \N f 3910 1 9 1249 1345.00 0.00 0.00 1345.00 2 2020-12-24 2020-12-24 21:19:26.911214 2020-12-24 21:19:38.16751 1 16 PV1-V-1853 \N \N f 3912 1 21 1250 139.00 0.00 0.00 139.00 2 2020-12-24 2020-12-24 21:43:34.019088 2020-12-24 21:44:07.689871 1 14 PV3-V-1139 \N \N f 3911 1 21 1250 1359.00 0.00 0.00 1359.00 1 2020-12-24 2020-12-24 21:36:41.975211 2020-12-24 21:45:12.415032 1 14 PV3-V-1138 \N \N f 3913 1 21 1250 1359.00 0.00 0.00 1359.00 2 2020-12-24 2020-12-24 21:48:57.629907 2020-12-24 21:50:49.511349 1 14 PV3-V-1140 \N \N f 3914 1 21 1250 119.00 0.00 0.00 119.00 2 2020-12-24 2020-12-24 22:01:55.68765 2020-12-24 22:02:06.19808 1 14 PV3-V-1141 \N \N f 3915 1 21 1250 599.00 0.00 0.00 599.00 2 2020-12-24 2020-12-24 22:22:26.411224 2020-12-24 22:24:08.134645 1 31 PV3-V-1142 \N \N f 3916 1 21 1250 369.00 0.00 0.00 369.00 2 2020-12-24 2020-12-24 22:26:56.61842 2020-12-24 22:27:07.443518 1 31 PV3-V-1143 \N \N f 3917 1 21 1250 189.00 0.00 0.00 189.00 2 2020-12-24 2020-12-24 22:28:13.888808 2020-12-24 22:28:18.137093 1 31 PV3-V-1144 \N \N f 3919 1 18 1250 1235.00 0.00 235.00 1000.00 2 2020-12-24 2020-12-24 22:50:47.818411 2020-12-24 22:50:52.530224 1 31 PV3-V-1145 \N \N f 3918 1 9 1249 1598.00 0.00 0.00 1598.00 1 2020-12-24 2020-12-24 22:49:01.739048 2020-12-24 22:51:37.950623 1 16 PV1-V-1854 \N \N f 3920 1 18 1250 1399.00 0.00 0.00 1399.00 2 2020-12-24 2020-12-24 22:56:29.854859 2020-12-24 22:57:10.604389 1 31 PV3-V-1146 \N \N f 3921 1 9 1249 1598.00 0.00 0.00 1598.00 2 2020-12-24 2020-12-24 22:57:17.612023 2020-12-24 22:57:21.761743 1 16 PV1-V-1855 \N \N f 3922 1 18 1250 1799.00 0.00 0.00 1799.00 2 2020-12-24 2020-12-25 00:00:48.212322 2020-12-25 00:01:07.685944 1 31 PV3-V-1147 \N \N f 3923 1 18 1250 1199.00 0.00 0.00 1199.00 2 2020-12-24 2020-12-25 00:09:58.876258 2020-12-25 00:12:51.501107 1 31 PV3-V-1148 \N \N f 3924 1 2 1249 617.24 82.76 100.00 600.00 2 2020-12-24 2020-12-25 00:13:13.228237 2020-12-25 00:13:23.118819 1 1 PV1-V-1856 \N \N f 3926 1 18 1250 1199.00 0.00 0.00 1199.00 2 2020-12-24 2020-12-25 01:12:22.458434 2020-12-25 01:19:07.857689 1 31 PV3-V-1149 \N \N f 3927 1 18 1250 1499.00 0.00 0.00 1499.00 2 2020-12-24 2020-12-25 01:24:03.175223 2020-12-25 01:24:40.96134 1 31 PV3-V-1150 \N \N f 3928 1 18 1250 999.00 0.00 0.00 999.00 2 2020-12-24 2020-12-25 02:40:46.298221 2020-12-25 02:41:00.278941 1 31 PV3-V-1151 \N \N f 3929 1 21 1251 1699.00 0.00 0.00 1699.00 2 2020-12-26 2020-12-26 18:28:52.115229 2020-12-26 18:31:27.172804 1 31 PV3-V-1152 \N \N f 3930 1 21 1251 1234.48 165.52 200.00 1200.00 2 2020-12-26 2020-12-26 19:42:50.041261 2020-12-26 19:43:10.748881 1 31 PV3-V-1153 \N \N f 3931 1 21 1251 1861.21 137.79 1000.00 999.00 2 2020-12-26 2020-12-26 19:50:44.990939 2020-12-26 19:50:56.380937 1 31 PV3-V-1154 \N \N f 3932 1 2 1252 3744.00 0.00 0.00 3744.00 2 2020-12-26 2020-12-26 22:22:47.894825 2020-12-26 22:23:34.219613 1 1 PV1-V-1858 \N \N f 3933 1 2 1252 169.00 0.00 0.00 169.00 2 2020-12-26 2020-12-26 22:26:13.478857 2020-12-26 22:26:17.594843 1 1 PV1-V-1859 \N \N f 3934 1 21 1251 1718.00 0.00 0.00 1718.00 2 2020-12-26 2020-12-27 01:05:35.188042 2020-12-27 01:06:05.527667 1 31 PV3-V-1155 \N \N f 3935 1 2 1254 749.00 0.00 149.00 600.00 2 2020-12-28 2020-12-28 20:32:00.84937 2020-12-28 20:32:05.816736 1 16 PV1-V-1860 \N \N f 3936 1 2 1254 399.00 0.00 79.00 320.00 2 2020-12-28 2020-12-28 20:39:21.667542 2020-12-28 20:39:25.343426 1 16 PV1-V-1861 \N \N f 3937 1 2 1254 569.00 0.00 113.00 456.00 2 2020-12-28 2020-12-28 20:53:41.124561 2020-12-28 20:54:17.594437 1 16 PV1-V-1862 \N \N f 3938 1 2 1254 238.00 0.00 0.00 238.00 2 2020-12-28 2020-12-28 21:15:21.351698 2020-12-28 21:15:57.265894 1 16 PV1-V-1863 \N \N f 3939 1 2 1254 468.00 0.00 0.00 468.00 2 2020-12-28 2020-12-28 21:18:34.897027 2020-12-28 21:19:35.218135 1 16 PV1-V-1864 \N \N f 3940 1 2 1254 1327.00 0.00 0.00 1327.00 2 2020-12-28 2020-12-28 21:31:50.97288 2020-12-28 21:31:57.193239 1 16 PV1-V-1865 \N \N f 3941 1 2 1254 2988.00 0.00 0.00 2988.00 2 2020-12-28 2020-12-28 22:47:36.693151 2020-12-28 22:48:17.901303 1 16 PV1-V-1866 \N \N f 3942 1 2 1254 299.00 0.00 0.00 299.00 2 2020-12-28 2020-12-28 22:54:08.935968 2020-12-28 22:54:14.121193 1 16 PV1-V-1867 \N \N f 3944 1 2 1254 699.00 0.00 0.00 699.00 2 2020-12-28 2020-12-28 23:40:10.2248 2020-12-28 23:41:18.888133 1 16 PV1-V-1869 \N \N f 3945 1 21 1255 1399.00 0.00 0.00 1399.00 2 2020-12-28 2020-12-28 23:44:36.842484 2020-12-28 23:45:33.070248 1 31 PV3-V-1156 \N \N f 3946 1 21 1255 589.00 0.00 0.00 589.00 2 2020-12-28 2020-12-29 00:28:54.50212 2020-12-29 00:29:12.514432 1 31 PV3-V-1157 \N \N f 3947 1 21 1255 1199.00 0.00 0.00 1199.00 2 2020-12-28 2020-12-29 01:09:37.402296 2020-12-29 01:18:36.376094 1 31 PV3-V-1158 \N \N f 3949 1 21 1255 1799.00 0.00 0.00 1799.00 1 2020-12-28 2020-12-29 02:47:35.488973 2020-12-29 02:48:07.342198 1 31 PV3-V-1160 \N \N f 3950 1 21 1255 3498.00 0.00 0.00 3498.00 2 2020-12-28 2020-12-29 02:48:53.051527 2020-12-29 02:49:50.097365 1 31 PV3-V-1161 \N \N f 3943 485 2 1254 1196.00 0.00 119.00 1077.00 2 2020-12-28 2020-12-28 23:11:46.285711 2020-12-29 19:06:22.124042 2 16 PV1-V-1868 2021-02-01 \N f 3951 1 9 1256 249.00 0.00 0.00 249.00 2 2020-12-29 2020-12-29 19:19:26.910886 2020-12-29 19:23:13.010845 1 16 PV1-V-1870 \N \N f 3952 1 9 1256 1399.00 0.00 499.00 900.00 2 2020-12-29 2020-12-29 19:34:16.235295 2020-12-29 19:34:24.132306 1 16 PV1-V-1871 \N \N f 3953 1 9 1256 999.00 0.00 0.00 999.00 2 2020-12-29 2020-12-29 21:54:27.890025 2020-12-29 21:55:14.888545 1 16 PV1-V-1872 \N \N f 3954 1 9 1256 1578.00 0.00 178.00 1400.00 2 2020-12-29 2020-12-29 23:06:16.839912 2020-12-29 23:06:26.44065 1 16 PV1-V-1873 \N \N f 3967 1 18 1258 799.00 0.00 0.00 799.00 2 2020-12-30 2020-12-30 20:56:49.750625 2020-12-30 20:57:08.699946 1 14 PV3-V-1168 \N \N f 3955 486 9 1256 949.00 0.00 0.00 949.00 1 2020-12-29 2020-12-29 23:47:23.457781 2020-12-29 23:47:40.071414 1 16 PV1-V-1874 \N \N f 3925 484 2 1249 3101.45 96.55 1598.00 1600.00 2 2020-12-24 2020-12-25 01:05:47.467103 2021-01-04 21:47:28.55501 0 1 PV1-V-1857 \N \N f 3956 1 21 1257 499.00 0.00 0.00 499.00 2 2020-12-29 2020-12-29 23:47:38.781192 2020-12-29 23:48:51.193598 1 31 PV3-V-1162 \N \N f 3958 1 9 1256 1199.00 0.00 239.00 960.00 2 2020-12-29 2020-12-30 00:17:19.901428 2020-12-30 00:17:23.808058 1 16 PV1-V-1876 \N \N f 3959 1 9 1256 1499.00 0.00 94.00 1405.00 2 2020-12-29 2020-12-30 01:48:42.340146 2020-12-30 01:48:47.887331 1 16 PV1-V-1877 \N \N f 3960 487 18 1258 2893.82 255.18 1299.00 1850.00 3 2020-12-30 2020-12-30 17:48:02.34553 2020-12-30 17:49:32.072867 2 14 PV3-V-1163 2021-02-03 \N f 3961 1 9 1259 999.00 0.00 0.00 999.00 2 2020-12-30 2020-12-30 17:51:12.191668 2020-12-30 17:51:19.245312 1 16 PV1-V-1878 \N \N f 3962 1 18 1258 579.00 0.00 0.00 579.00 2 2020-12-30 2020-12-30 17:54:32.294827 2020-12-30 17:55:05.306631 1 14 PV3-V-1164 \N \N f 3963 1 9 1259 1389.00 0.00 0.00 1389.00 2 2020-12-30 2020-12-30 18:16:35.951624 2020-12-30 18:16:50.012838 1 16 PV1-V-1879 \N \N f 3964 1 18 1258 858.00 0.00 0.00 858.00 2 2020-12-30 2020-12-30 18:29:49.325816 2020-12-30 18:30:01.546881 1 14 PV3-V-1165 \N \N f 3965 1 18 1258 1999.00 0.00 0.00 1999.00 2 2020-12-30 2020-12-30 19:46:20.688833 2020-12-30 19:46:28.930451 1 14 PV3-V-1166 \N \N f 3948 1 18 1255 899.00 0.00 0.00 899.00 1 2020-12-28 2020-12-29 01:26:35.408174 2020-12-30 20:29:31.278041 1 24 PV3-V-1159 \N \N f 3966 1 18 1258 1399.00 0.00 0.00 1399.00 2 2020-12-30 2020-12-30 20:41:32.568959 2020-12-30 20:41:41.826083 1 14 PV3-V-1167 \N \N f 3968 1 18 1258 749.00 0.00 0.00 749.00 1 2020-12-30 2020-12-30 21:59:12.555955 2020-12-30 21:59:15.930455 1 14 PV3-V-1169 \N \N f 3969 1 18 1258 749.00 0.00 149.00 600.00 2 2020-12-30 2020-12-30 21:59:28.572137 2020-12-30 21:59:32.291548 1 14 PV3-V-1170 \N \N f 3970 1 9 1259 825.00 0.00 0.00 825.00 2 2020-12-30 2020-12-30 22:06:37.512938 2020-12-30 22:08:20.218853 1 16 PV1-V-1880 \N \N f 3971 1 18 1258 869.00 0.00 86.00 783.00 2 2020-12-30 2020-12-30 22:18:18.080955 2020-12-30 22:18:21.770734 1 14 PV3-V-1171 \N \N f 3972 1 18 1258 749.00 0.00 74.00 675.00 1 2020-12-30 2020-12-30 22:27:22.245382 2020-12-30 22:30:06.796816 1 14 PV3-V-1172 \N \N f 3973 1 18 1258 1607.00 0.00 204.00 1403.00 2 2020-12-30 2020-12-30 22:33:38.77406 2020-12-30 22:34:45.556243 1 14 PV3-V-1173 \N \N f 3974 1 9 1259 189.00 0.00 0.00 189.00 2 2020-12-30 2020-12-30 23:16:45.027754 2020-12-30 23:16:57.417554 1 16 PV1-V-1881 \N \N f 3975 1 18 1258 499.00 0.00 0.00 499.00 1 2020-12-30 2020-12-30 23:24:43.389809 2020-12-30 23:25:13.045382 1 14 PV3-V-1174 \N \N f 3976 1 18 1258 698.00 0.00 0.00 698.00 2 2020-12-30 2020-12-30 23:26:50.740613 2020-12-30 23:27:00.721293 1 14 PV3-V-1175 \N \N f 3977 1 18 1258 359.00 0.00 0.00 359.00 2 2020-12-30 2020-12-30 23:30:48.830555 2020-12-30 23:31:34.613696 1 14 PV3-V-1176 \N \N f 3978 1 9 1259 599.00 0.00 0.00 599.00 2 2020-12-30 2020-12-30 23:35:27.043727 2020-12-30 23:35:55.03574 1 16 PV1-V-1882 \N \N f 3979 1 18 1258 1488.00 0.00 0.00 1488.00 2 2020-12-30 2020-12-30 23:38:48.030401 2020-12-30 23:39:02.398524 1 14 PV3-V-1177 \N \N f 3980 1 18 1258 1596.24 82.76 579.00 1100.00 2 2020-12-30 2020-12-30 23:54:18.51598 2020-12-30 23:54:37.955321 1 14 PV3-V-1178 \N \N f 3981 488 9 1259 1769.00 0.00 0.00 1769.00 1 2020-12-30 2020-12-30 23:58:40.209297 2020-12-30 23:58:47.490225 2 16 PV1-V-1883 2021-02-03 \N f 3982 1 9 1259 1769.00 0.00 530.00 1239.00 1 2020-12-30 2020-12-30 23:59:26.851491 2020-12-30 23:59:36.720709 1 16 PV1-V-1884 \N \N f 3983 488 9 1259 1769.00 0.00 530.00 1239.00 1 2020-12-30 2020-12-31 00:00:04.233526 2020-12-31 00:00:10.636935 1 16 PV1-V-1885 \N \N f 3984 488 9 1259 1769.00 0.00 530.00 1239.00 1 2020-12-30 2020-12-31 00:00:30.615353 2020-12-31 00:00:54.890841 1 16 PV1-V-1886 \N \N f 3957 486 9 1256 949.00 0.00 0.00 949.00 1 2020-12-29 2020-12-29 23:47:59.873185 2020-12-31 21:32:03.361623 2 16 PV1-V-1875 2021-02-02 \N f 3985 1 18 1258 602.59 96.41 0.00 699.00 2 2020-12-30 2020-12-31 00:02:11.965661 2020-12-31 00:02:51.579383 1 14 PV3-V-1179 \N \N f 3986 488 9 1259 1769.00 0.00 530.00 1239.00 2 2020-12-30 2020-12-31 00:02:15.22731 2020-12-31 20:23:10.164154 2 16 PV1-V-1887 2021-02-03 \N f 3987 1 18 1258 84.48 13.52 0.00 98.00 2 2020-12-30 2020-12-31 00:08:49.232982 2020-12-31 00:08:55.261331 1 14 PV3-V-1180 \N \N f 3988 1 9 1259 1349.00 0.00 0.00 1349.00 2 2020-12-30 2020-12-31 00:11:23.330964 2020-12-31 00:11:51.174376 1 16 PV1-V-1888 \N \N f 3989 1 18 1258 602.59 96.41 0.00 699.00 2 2020-12-30 2020-12-31 00:19:52.089521 2020-12-31 00:20:03.886305 1 14 PV3-V-1181 \N \N f 3990 1 9 1259 469.00 0.00 0.00 469.00 2 2020-12-30 2020-12-31 00:31:45.396042 2020-12-31 00:32:18.764069 1 16 PV1-V-1889 \N \N f 3991 1 18 1258 499.00 0.00 99.00 400.00 2 2020-12-30 2020-12-31 01:00:01.811923 2020-12-31 01:00:44.456537 1 14 PV3-V-1182 \N \N f 3992 1 18 1258 399.00 0.00 0.00 399.00 2 2020-12-30 2020-12-31 01:02:25.352644 2020-12-31 01:02:48.741956 1 14 PV3-V-1183 \N \N f 3993 1 9 1259 825.00 0.00 0.00 825.00 2 2020-12-30 2020-12-31 01:16:16.836531 2020-12-31 01:17:27.751337 1 16 PV1-V-1890 \N \N f 3994 1 18 1258 179.00 0.00 0.00 179.00 2 2020-12-30 2020-12-31 01:51:34.508926 2020-12-31 01:51:40.464675 1 14 PV3-V-1184 \N \N f 3995 1 18 1258 499.00 0.00 0.00 499.00 2 2020-12-30 2020-12-31 01:54:37.069164 2020-12-31 01:54:49.550546 1 14 PV3-V-1185 \N \N f 3996 1 18 1258 1599.00 0.00 0.00 1599.00 2 2020-12-30 2020-12-31 02:01:43.988387 2020-12-31 02:01:53.268868 1 14 PV3-V-1186 \N \N f 3997 1 18 1258 825.00 0.00 0.00 825.00 2 2020-12-30 2020-12-31 02:09:19.712132 2020-12-31 02:10:04.659443 1 14 PV3-V-1187 \N \N f 3998 1 18 1258 2099.00 0.00 0.00 2099.00 2 2020-12-30 2020-12-31 02:44:07.162025 2020-12-31 02:44:17.032321 1 14 PV3-V-1188 \N \N f 3999 1 18 1261 1399.00 0.00 139.00 1260.00 2 2020-12-30 2020-12-31 03:15:28.727047 2020-12-31 03:15:53.455747 1 14 PV3-V-1189 \N \N f 4000 1 18 1261 3098.00 0.00 428.00 2670.00 2 2020-12-30 2020-12-31 03:24:29.565357 2020-12-31 03:25:45.453714 1 14 PV3-V-1190 \N \N f 4001 1 21 1262 699.00 0.00 0.00 699.00 2 2020-12-31 2020-12-31 19:10:18.567396 2020-12-31 19:10:40.606995 1 14 PV3-V-1191 \N \N f 4002 1 21 1262 1899.00 0.00 0.00 1899.00 2 2020-12-31 2020-12-31 19:13:50.725321 2020-12-31 19:15:05.144326 1 31 PV3-V-1192 \N \N f 4003 1 9 1260 999.00 0.00 0.00 999.00 2 2020-12-31 2020-12-31 20:10:58.077398 2020-12-31 20:11:16.541126 1 16 PV1-V-1891 \N \N f 4004 1 9 1260 698.00 0.00 0.00 698.00 2 2020-12-31 2020-12-31 20:20:44.28466 2020-12-31 20:20:48.433151 1 16 PV1-V-1892 \N \N f 4005 1 9 1260 1438.00 0.00 0.00 1438.00 2 2020-12-31 2020-12-31 20:38:54.747218 2020-12-31 20:39:05.202904 1 16 PV1-V-1893 \N \N f 4006 1 21 1262 1389.00 0.00 0.00 1389.00 2 2020-12-31 2020-12-31 20:45:12.091975 2020-12-31 20:45:24.749209 1 31 PV3-V-1193 \N \N f 4007 1 9 1260 1599.00 0.00 0.00 1599.00 2 2020-12-31 2020-12-31 21:07:32.838901 2020-12-31 21:07:36.928976 1 27 PV1-V-1894 \N \N f 4008 1 21 1262 84.48 13.52 0.00 98.00 2 2020-12-31 2020-12-31 21:13:13.905866 2020-12-31 21:13:23.084468 1 31 PV3-V-1194 \N \N f 4009 1 9 1260 399.00 0.00 0.00 399.00 2 2020-12-31 2020-12-31 21:32:32.380873 2020-12-31 21:32:59.003594 1 16 PV1-V-1895 \N \N f 4010 1 9 1260 469.00 0.00 119.00 350.00 2 2020-12-31 2020-12-31 21:40:09.495367 2020-12-31 21:40:36.660919 1 16 PV1-V-1896 \N \N f 4011 1 21 1262 499.00 0.00 0.00 499.00 2 2020-12-31 2020-12-31 21:46:47.601291 2020-12-31 21:47:25.027571 1 31 PV3-V-1195 \N \N f 4012 1 21 1262 1399.00 0.00 0.00 1399.00 2 2020-12-31 2020-12-31 22:00:40.99693 2020-12-31 22:01:20.677837 1 31 PV3-V-1196 \N \N f 4013 1 9 1260 1099.00 0.00 0.00 1099.00 1 2020-12-31 2020-12-31 22:06:15.749743 2020-12-31 22:06:59.272543 1 16 PV1-V-1897 \N \N f 4014 1 9 1260 1218.00 0.00 0.00 1218.00 2 2020-12-31 2020-12-31 22:07:15.045657 2020-12-31 22:08:06.667212 1 16 PV1-V-1898 \N \N f 4015 1 21 1262 1199.00 0.00 0.00 1199.00 2 2020-12-31 2020-12-31 22:07:52.124534 2020-12-31 22:09:04.389927 1 31 PV3-V-1197 \N \N f 4016 1 9 1260 189.00 0.00 0.00 189.00 2 2020-12-31 2020-12-31 22:33:18.152149 2020-12-31 22:34:08.143107 1 16 PV1-V-1899 \N \N f 4017 1 21 1262 599.00 0.00 0.00 599.00 2 2020-12-31 2020-12-31 22:35:46.239914 2020-12-31 22:36:01.378293 1 31 PV3-V-1198 \N \N f 4018 1 21 1262 189.00 0.00 0.00 189.00 2 2020-12-31 2020-12-31 22:37:07.744609 2020-12-31 22:37:21.355427 1 31 PV3-V-1199 \N \N f 4019 1 21 1262 699.00 0.00 0.00 699.00 2 2020-12-31 2020-12-31 22:41:00.129414 2020-12-31 22:41:13.327086 1 31 PV3-V-1200 \N \N f 4020 1 9 1260 1698.00 0.00 300.00 1398.00 2 2020-12-31 2020-12-31 22:43:57.036729 2020-12-31 22:44:06.048538 1 16 PV1-V-1900 \N \N f 4021 1 9 1260 3927.00 0.00 488.00 3439.00 2 2020-12-31 2020-12-31 22:50:48.543644 2020-12-31 22:51:00.090679 1 16 PV1-V-1901 \N \N f 4022 1 9 1263 1799.00 0.00 0.00 1799.00 2 2020-12-31 2021-01-01 00:01:15.906755 2021-01-01 00:02:29.033749 1 16 PV1-V-1902 \N \N f 4023 1 21 1262 189.00 0.00 0.00 189.00 2 2020-12-31 2021-01-01 00:14:36.77664 2021-01-01 00:14:42.952683 1 31 PV3-V-1201 \N \N f 4024 1 21 1262 1045.00 0.00 0.00 1045.00 2 2020-12-31 2021-01-01 01:05:53.655087 2021-01-01 01:06:16.908965 1 31 PV3-V-1202 \N \N f 4025 1 21 1264 1108.00 0.00 443.20 664.80 2 2021-01-02 2021-01-02 23:25:35.39696 2021-01-02 23:26:09.62526 1 31 PV3-V-1203 \N \N f 4026 1 21 1264 849.00 0.00 339.60 509.40 2 2021-01-02 2021-01-02 23:28:49.566741 2021-01-02 23:29:23.497238 1 31 PV3-V-1204 \N \N f 4027 1 21 1264 1499.00 0.00 0.00 1499.00 2 2021-01-02 2021-01-02 23:54:09.318818 2021-01-02 23:55:18.93063 1 31 PV3-V-1205 \N \N f 4028 1 21 1265 1599.00 0.00 0.00 1599.00 2 2021-01-03 2021-01-03 19:48:55.478828 2021-01-03 19:49:44.505107 1 31 PV3-V-1206 \N \N f 4029 1 9 1266 978.00 0.00 489.00 489.00 2 2021-01-04 2021-01-04 21:18:40.321571 2021-01-04 21:20:18.23112 1 16 PV1-V-1903 \N \N f 4030 1 9 1266 1799.00 0.00 0.00 1799.00 2 2021-01-04 2021-01-04 21:21:23.420095 2021-01-04 21:22:51.286415 1 16 PV1-V-1904 \N \N f 4031 1 18 1267 1968.00 0.00 669.00 1299.00 2 2021-01-04 2021-01-05 01:42:09.32796 2021-01-05 01:42:15.274722 1 14 PV3-V-1207 \N \N f 4032 1 9 1268 457.62 41.38 199.00 300.00 2 2021-01-05 2021-01-05 20:19:01.456228 2021-01-05 20:19:09.660848 1 16 PV1-V-1905 \N \N f 4033 1 9 1268 1499.00 0.00 0.00 1499.00 2 2021-01-05 2021-01-05 20:23:00.124747 2021-01-05 20:23:15.909413 1 16 PV1-V-1906 \N \N f 4034 1 9 1268 899.00 0.00 359.00 540.00 2 2021-01-05 2021-01-05 22:51:27.907727 2021-01-05 22:52:02.88809 1 16 PV1-V-1907 \N \N f 4035 1 9 1268 469.00 0.00 469.00 0.00 2 2021-01-05 2021-01-05 23:10:46.049072 2021-01-05 23:10:54.805247 1 16 PV1-V-1908 \N \N f 4036 1 18 1269 1937.00 0.00 799.00 1138.00 2 2021-01-05 2021-01-06 00:07:39.946731 2021-01-06 00:08:47.942485 1 14 PV3-V-1208 \N \N f 4038 489 9 1270 1599.00 0.00 0.00 1599.00 3 2021-01-06 2021-01-07 00:00:39.039501 2021-02-02 18:17:09.048383 0 16 PV1-V-1910 \N \N f 4037 489 9 1270 1599.00 0.00 0.00 1599.00 1 2021-01-06 2021-01-06 23:49:55.55347 2021-01-07 00:00:02.67242 1 16 PV1-V-1909 \N \N f 4039 1 9 1270 42.24 6.76 0.00 49.00 2 2021-01-06 2021-01-07 00:54:39.469423 2021-01-07 00:54:51.675887 1 16 PV1-V-1911 \N \N f 4041 1 18 1273 569.00 0.00 0.00 569.00 2 2021-01-07 2021-01-07 18:06:19.625706 2021-01-07 18:06:26.986431 1 12 PV3-V-1210 \N \N f 4042 1 2 1272 1199.00 0.00 479.00 720.00 2 2021-01-07 2021-01-07 19:04:20.937567 2021-01-07 19:04:26.426085 1 1 PV1-V-1912 \N \N f 4043 1 2 1272 1399.00 0.00 559.00 840.00 2 2021-01-07 2021-01-07 21:48:45.262225 2021-01-07 21:48:54.556236 1 1 PV1-V-1913 \N \N f 4044 1 18 1273 211.21 33.79 0.00 245.00 2 2021-01-07 2021-01-07 22:11:14.416053 2021-01-07 22:12:16.948055 1 12 PV3-V-1211 \N \N f 4045 1 18 1273 1399.00 0.00 559.00 840.00 2 2021-01-07 2021-01-07 22:16:33.636728 2021-01-07 22:17:04.690161 1 12 PV3-V-1212 \N \N f 4046 1 18 1273 1249.00 0.00 499.00 750.00 2 2021-01-07 2021-01-07 23:53:17.211561 2021-01-07 23:54:01.681823 1 12 PV3-V-1213 \N \N f 4047 1 2 1272 1487.00 0.00 549.00 938.00 2 2021-01-07 2021-01-08 02:10:04.486953 2021-01-08 02:10:15.254927 1 30 PV1-V-1914 \N \N f 4048 1 21 1274 825.00 0.00 330.00 495.00 2 2021-01-08 2021-01-08 18:19:28.614972 2021-01-08 18:19:40.550371 1 31 PV3-V-1214 \N \N f 4049 1 2 1275 1498.00 0.00 749.00 749.00 2 2021-01-08 2021-01-08 19:06:02.262389 2021-01-08 19:06:09.089803 1 1 PV1-V-1915 \N \N f 4050 1 2 1275 1128.00 0.00 529.00 599.00 2 2021-01-08 2021-01-08 19:30:10.332568 2021-01-08 19:30:13.957537 1 1 PV1-V-1916 \N \N f 4051 1 2 1275 1499.00 0.00 0.00 1499.00 2 2021-01-08 2021-01-08 22:14:37.45455 2021-01-08 22:14:50.156974 1 25 PV1-V-1917 \N \N f 4040 490 21 1271 1599.00 0.00 0.00 1599.00 2 2021-01-06 2021-01-07 01:00:50.323725 2021-01-23 00:57:39.531984 2 14 PV3-V-1209 2021-02-10 \N f 4052 1 2 1275 2568.00 0.00 1099.00 1469.00 2 2021-01-08 2021-01-08 22:25:23.506693 2021-01-08 22:25:31.046082 1 1 PV1-V-1918 \N \N f 4053 1 21 1274 699.00 0.00 279.60 419.40 2 2021-01-08 2021-01-08 23:37:29.822552 2021-01-08 23:39:21.830297 1 31 PV3-V-1215 \N \N f 4054 1 2 1275 489.00 0.00 195.00 294.00 2 2021-01-08 2021-01-09 01:15:28.557161 2021-01-09 01:15:33.780947 1 1 PV1-V-1919 \N \N f 4055 1 21 1274 899.00 0.00 0.00 899.00 2 2021-01-08 2021-01-09 01:39:49.892464 2021-01-09 01:40:04.122824 1 14 PV3-V-1216 \N \N f 4056 1 18 1274 3196.00 0.00 1498.00 1698.00 2 2021-01-08 2021-01-09 02:31:31.458525 2021-01-09 02:32:20.345691 1 14 PV3-V-1217 \N \N f 4057 1 2 1276 5313.00 0.00 2457.00 2856.00 2 2021-01-09 2021-01-09 21:37:50.455452 2021-01-09 21:37:54.846563 1 1 PV1-V-1920 \N \N f 4058 1 2 1276 599.00 0.00 239.00 360.00 2 2021-01-09 2021-01-10 00:45:38.219379 2021-01-10 00:45:42.326659 1 1 PV1-V-1921 \N \N f 4059 1 21 1278 499.00 0.00 199.60 299.40 2 2021-01-10 2021-01-10 19:53:57.028795 2021-01-10 19:54:16.041716 1 31 PV3-V-1218 \N \N f 4060 1 21 1278 1499.00 0.00 0.00 1499.00 2 2021-01-10 2021-01-10 20:36:38.183687 2021-01-10 20:36:50.014653 1 31 PV3-V-1219 \N \N f 4061 1 21 1278 899.00 0.00 359.60 539.40 2 2021-01-10 2021-01-10 21:12:49.358384 2021-01-10 21:13:04.637076 1 31 PV3-V-1220 \N \N f 4062 1 21 1278 739.00 0.00 295.60 443.40 2 2021-01-10 2021-01-10 21:39:11.414598 2021-01-10 21:39:47.407363 1 31 PV3-V-1221 \N \N f 4063 1 2 1279 1574.00 124.00 799.00 899.00 2 2021-01-11 2021-01-11 20:25:52.342938 2021-01-11 20:25:56.816577 1 1 PV1-V-1922 \N \N f 4064 1 2 1279 1217.45 100.55 589.00 729.00 2 2021-01-11 2021-01-11 20:32:22.674162 2021-01-11 20:32:27.138125 1 1 PV1-V-1923 \N \N f 4065 1 2 1279 2894.00 0.00 1345.00 1549.00 2 2021-01-11 2021-01-11 22:22:56.507548 2021-01-11 22:23:02.471951 1 1 PV1-V-1924 \N \N f 4066 1 21 1280 2218.00 0.00 0.00 2218.00 2 2021-01-11 2021-01-11 22:59:54.221202 2021-01-11 23:00:12.918787 1 31 PV3-V-1222 \N \N f 4067 1 18 1280 899.00 0.00 359.00 540.00 2 2021-01-11 2021-01-12 01:00:18.933733 2021-01-12 01:00:23.314107 1 14 PV3-V-1223 \N \N f 4068 1 18 1280 769.00 0.00 307.00 462.00 2 2021-01-11 2021-01-12 01:59:02.421856 2021-01-12 01:59:07.142163 1 14 PV3-V-1224 \N \N f 4069 1 2 1281 1799.00 0.00 0.00 1799.00 2 2021-01-12 2021-01-12 18:59:40.357537 2021-01-12 19:00:17.537412 1 1 PV1-V-1925 \N \N f 4070 1 21 1282 739.00 0.00 295.60 443.40 2 2021-01-12 2021-01-12 21:06:46.277241 2021-01-12 21:06:59.02218 1 31 PV3-V-1225 \N \N f 4071 1 2 1281 1468.00 0.00 599.00 869.00 2 2021-01-12 2021-01-12 21:51:05.617783 2021-01-12 21:51:10.821757 1 1 PV1-V-1926 \N \N f 4072 1 18 1283 1499.00 0.00 0.00 1499.00 2 2021-01-13 2021-01-13 19:26:26.550985 2021-01-13 19:27:41.9712 1 14 PV3-V-1226 \N \N f 4073 1 2 1285 1099.00 0.00 0.00 1099.00 2 2021-01-14 2021-01-14 20:00:02.085635 2021-01-14 20:00:06.670323 1 1 PV1-V-1927 \N \N f 4074 1 21 1286 899.00 0.00 0.00 899.00 2 2021-01-14 2021-01-14 22:53:13.634992 2021-01-14 22:53:24.378277 1 31 PV3-V-1227 \N \N f 4075 1 21 1286 617.24 82.76 100.00 600.00 2 2021-01-14 2021-01-14 23:48:00.768436 2021-01-14 23:48:23.663713 1 31 PV3-V-1228 \N \N f 4076 1 21 1286 238.00 0.00 0.00 238.00 2 2021-01-14 2021-01-15 01:07:43.109837 2021-01-15 01:07:47.756497 1 14 PV3-V-1229 \N \N f 4077 1 21 1287 749.00 0.00 299.60 449.40 2 2021-01-15 2021-01-15 17:52:56.930573 2021-01-15 17:53:06.186587 1 31 PV3-V-1230 \N \N f 4078 491 21 1287 999.00 0.00 0.00 999.00 0 2021-01-15 2021-01-15 17:58:35.201398 2021-01-15 17:58:35.201398 0 31 PV3-V-1231 \N \N f 4079 1 2 1288 3328.00 0.00 1624.00 1704.00 2 2021-01-15 2021-01-15 23:20:53.059194 2021-01-15 23:20:59.467841 1 1 PV1-V-1928 \N \N f 4080 1 18 1287 1299.00 0.00 519.00 780.00 2 2021-01-15 2021-01-15 23:40:09.508632 2021-01-15 23:41:09.185399 1 31 PV3-V-1232 \N \N f 4081 1 18 1287 3598.00 0.00 0.00 3598.00 2 2021-01-15 2021-01-16 01:40:08.187728 2021-01-16 01:40:13.268056 1 14 PV3-V-1233 \N \N f 4082 1 18 1287 1469.00 0.00 589.00 880.00 2 2021-01-15 2021-01-16 01:43:53.846436 2021-01-16 01:44:02.561896 1 14 PV3-V-1234 \N \N f 4083 1 2 1288 1045.00 0.00 310.00 735.00 2 2021-01-15 2021-01-16 01:50:58.636974 2021-01-16 01:51:14.317857 1 1 PV1-V-1929 \N \N f 4084 1 18 1289 1927.00 0.00 880.00 1047.00 2 2021-01-15 2021-01-16 02:28:45.315505 2021-01-16 02:28:59.178755 1 14 PV3-V-1235 \N \N f 4085 1 21 1289 1895.00 0.00 279.60 1615.40 2 2021-01-16 2021-01-16 18:28:47.581889 2021-01-16 18:30:38.843114 1 31 PV3-V-1236 \N \N f 4086 1 21 1289 1399.00 0.00 0.00 1399.00 1 2021-01-16 2021-01-16 20:03:28.300501 2021-01-16 20:03:41.981118 1 31 PV3-V-1237 \N \N f 4087 1 21 1289 1399.00 0.00 0.00 1399.00 2 2021-01-16 2021-01-16 20:04:51.142321 2021-01-16 20:05:07.938432 1 29 PV3-V-1238 \N \N f 4088 1 21 1289 1898.00 0.00 0.00 1898.00 2 2021-01-16 2021-01-16 21:09:03.09998 2021-01-16 21:10:03.222413 1 31 PV3-V-1239 \N \N f 4089 1 21 1289 1399.00 0.00 0.00 1399.00 2 2021-01-16 2021-01-16 22:33:22.687149 2021-01-16 22:34:07.896227 1 31 PV3-V-1240 \N \N f 4090 1 2 1290 949.00 0.00 380.00 569.00 2 2021-01-16 2021-01-16 23:44:25.170664 2021-01-16 23:44:49.625075 1 1 PV1-V-1930 \N \N f 4091 1 2 1290 1099.00 0.00 0.00 1099.00 2 2021-01-16 2021-01-17 00:20:32.093793 2021-01-17 00:20:43.928895 1 1 PV1-V-1931 \N \N f 4092 1 18 1293 499.00 0.00 0.00 499.00 1 2021-01-18 2021-01-19 00:05:06.759417 2021-01-19 00:05:11.583118 1 14 PV3-V-1241 \N \N f 4093 1 18 1293 499.00 0.00 199.00 300.00 2 2021-01-18 2021-01-19 00:05:37.870833 2021-01-19 00:05:42.888484 1 14 PV3-V-1242 \N \N f 4094 1 18 1293 999.00 0.00 0.00 999.00 1 2021-01-18 2021-01-19 00:08:13.754146 2021-01-19 00:08:21.978312 1 14 PV3-V-1243 \N \N f 4095 1 18 1293 999.00 0.00 499.00 500.00 2 2021-01-18 2021-01-19 00:08:37.079216 2021-01-19 00:08:43.302357 1 14 PV3-V-1244 \N \N f 4096 492 2 1292 1499.00 0.00 0.00 1499.00 3 2021-01-18 2021-01-19 01:17:01.612341 2021-01-19 01:19:03.339096 2 1 PV1-V-1932 2021-02-22 \N f 4097 1 18 1294 1988.00 0.00 0.00 1988.00 2 2021-01-18 2021-01-19 02:57:56.053582 2021-01-19 02:58:24.091926 1 14 PV3-V-1245 \N \N f 4098 1 18 1295 3991.10 206.90 1299.00 2899.00 2 2021-01-19 2021-01-19 19:46:18.686312 2021-01-19 19:46:47.861747 1 14 PV3-V-1246 \N \N f 4099 1 18 1295 1538.00 0.00 699.00 839.00 2 2021-01-19 2021-01-19 20:05:55.557968 2021-01-19 20:06:19.657483 1 14 PV3-V-1247 \N \N f 4100 1 18 1295 1398.00 0.00 699.00 699.00 2 2021-01-19 2021-01-19 20:10:30.280883 2021-01-19 20:10:59.656935 1 14 PV3-V-1248 \N \N f 4101 1 2 1296 1517.31 20.69 944.00 594.00 2 2021-01-19 2021-01-19 21:40:50.818248 2021-01-19 21:40:58.272892 1 1 PV1-V-1933 \N \N f 4102 1 2 1296 1379.72 48.28 616.00 812.00 2 2021-01-19 2021-01-19 22:55:25.62149 2021-01-19 22:55:34.536701 1 1 PV1-V-1934 \N \N f 4103 1 18 1295 1199.00 0.00 0.00 1199.00 2 2021-01-19 2021-01-19 23:02:36.062743 2021-01-19 23:03:08.773071 1 14 PV3-V-1249 \N \N f 4104 1 18 1295 843.83 55.17 499.00 400.00 2 2021-01-19 2021-01-20 00:14:42.231236 2021-01-20 00:14:55.925253 1 14 PV3-V-1250 \N \N f 4105 1 21 1298 1199.00 0.00 0.00 1199.00 2 2021-01-20 2021-01-20 23:03:34.010806 2021-01-20 23:03:44.512013 1 31 PV3-V-1251 \N \N f 4106 1 2 1297 668.31 20.69 539.00 150.00 2 2021-01-20 2021-01-21 02:09:37.131182 2021-01-21 02:09:48.274805 1 1 PV1-V-1935 \N \N f 4108 1 2 1297 2898.00 0.00 1399.00 1499.00 2 2021-01-20 2021-01-21 02:20:55.162998 2021-01-21 02:21:00.122377 1 1 PV1-V-1937 \N \N f 4107 1 2 1297 2898.00 0.00 1399.00 1499.00 1 2021-01-20 2021-01-21 02:18:57.034655 2021-01-21 02:20:19.194184 1 1 PV1-V-1935 \N \N f 4109 1 21 1299 1799.00 0.00 719.60 1079.40 2 2021-01-21 2021-01-21 18:26:52.877023 2021-01-21 18:27:08.184754 1 31 PV3-V-1252 \N \N f 4110 1 2 1300 1458.00 0.00 699.00 759.00 2 2021-01-21 2021-01-21 21:03:17.178785 2021-01-21 21:03:25.185411 1 1 PV1-V-1938 \N \N f 4112 1 2 1301 2418.83 179.17 1299.00 1299.00 2 2021-01-22 2021-01-22 18:20:44.865418 2021-01-22 18:20:49.288033 1 1 PV1-V-1939 \N \N f 4113 1 2 1301 478.31 20.69 349.00 150.00 2 2021-01-22 2021-01-22 20:09:52.981712 2021-01-22 20:09:57.405818 1 1 PV1-V-1940 \N \N f 4114 1 2 1301 42.24 6.76 0.00 49.00 2 2021-01-22 2021-01-22 23:04:42.66015 2021-01-22 23:05:15.703385 1 1 PV1-V-1941 \N \N f 4115 1 21 1302 399.00 0.00 159.60 239.40 2 2021-01-22 2021-01-22 23:38:26.620212 2021-01-22 23:38:32.889652 1 31 PV3-V-1254 \N \N f 4111 493 21 1299 1799.00 0.00 0.00 1799.00 2 2021-01-21 2021-01-21 21:33:35.813903 2021-02-06 21:10:31.993743 2 31 PV3-V-1253 2021-02-25 \N f 4116 1 21 1302 1699.00 0.00 0.00 1699.00 2 2021-01-22 2021-01-23 00:55:00.933608 2021-01-23 00:55:10.180854 1 31 PV3-V-1255 \N \N f 4117 1 21 1302 1399.00 0.00 559.00 840.00 2 2021-01-22 2021-01-23 01:04:40.730514 2021-01-23 01:05:29.038934 1 14 PV3-V-1256 \N \N f 4119 1 21 1304 1499.00 0.00 0.00 1499.00 2 2021-01-23 2021-01-23 19:36:51.317417 2021-01-23 19:37:44.838867 1 31 PV3-V-1257 \N \N f 4120 1 2 1303 1345.00 0.00 538.00 807.00 2 2021-01-23 2021-01-23 20:18:23.973718 2021-01-23 20:18:32.170769 1 1 PV1-V-1943 \N \N f 4122 1 21 1304 899.00 0.00 0.00 899.00 2 2021-01-23 2021-01-23 21:52:41.777314 2021-01-23 21:52:56.346049 1 31 PV3-V-1259 \N \N f 4123 1 2 1303 869.00 0.00 348.00 521.00 2 2021-01-23 2021-01-23 22:19:05.419686 2021-01-23 22:19:09.435277 1 1 PV1-V-1944 \N \N f 4124 1 2 1303 5429.24 82.76 4013.00 1499.00 2 2021-01-23 2021-01-23 22:34:31.644399 2021-01-23 22:34:36.707431 1 1 PV1-V-1945 \N \N f 4125 1 21 1304 999.00 0.00 0.00 999.00 2 2021-01-23 2021-01-24 01:06:24.49226 2021-01-24 01:07:24.182897 1 31 PV3-V-1260 \N \N f 4126 1 21 1305 1599.00 0.00 0.00 1599.00 2 2021-01-24 2021-01-24 20:19:41.708615 2021-01-24 20:20:23.108856 1 31 PV3-V-1261 \N \N f 4128 1 21 1307 2898.00 0.00 0.00 2898.00 2 2021-01-25 2021-01-25 21:54:36.716904 2021-01-25 21:56:02.009182 1 31 PV3-V-1262 \N \N f 4129 1 2 1306 1429.00 0.00 560.00 869.00 2 2021-01-25 2021-01-25 21:59:07.055118 2021-01-25 21:59:16.230008 1 1 PV1-V-1947 \N \N f 4130 1 2 1306 1067.00 0.00 409.00 658.00 2 2021-01-25 2021-01-25 23:28:46.883245 2021-01-25 23:29:01.65602 1 1 PV1-V-1948 \N \N f 4131 1 2 1308 1599.00 0.00 0.00 1599.00 2 2021-01-26 2021-01-26 18:51:07.407271 2021-01-26 18:51:54.319926 1 1 PV1-V-1949 \N \N f 4132 1 2 1308 1499.00 0.00 0.00 1499.00 2 2021-01-26 2021-01-26 18:55:52.143933 2021-01-26 18:55:59.164654 1 1 PV1-V-1950 \N \N f 4133 1 21 1311 1399.00 0.00 0.00 1399.00 2 2021-01-27 2021-01-27 18:07:28.408104 2021-01-27 18:07:39.107002 1 31 PV3-V-1263 \N \N f 4134 1 21 1311 171.55 27.45 0.00 199.00 2 2021-01-27 2021-01-27 18:09:00.410567 2021-01-27 18:09:10.083825 1 31 PV3-V-1264 \N \N f 4135 1 2 1312 869.00 0.00 260.00 609.00 2 2021-01-28 2021-01-29 01:02:06.953108 2021-01-29 01:02:42.600067 1 1 PV1-V-1951 \N \N f 4136 1 21 1313 998.00 0.00 399.20 598.80 2 2021-01-28 2021-01-29 01:43:42.015042 2021-01-29 01:45:56.032119 1 31 PV3-V-1265 \N \N f 4137 1 21 1313 42.24 6.76 0.00 49.00 2 2021-01-28 2021-01-29 01:46:31.149847 2021-01-29 01:46:42.899499 1 31 PV3-V-1266 \N \N f 4138 1 2 1314 318.00 0.00 0.00 318.00 2 2021-01-29 2021-01-29 19:13:41.200318 2021-01-29 19:13:45.929591 1 1 PV1-V-1952 \N \N f 4139 1 2 1314 469.00 0.00 189.00 280.00 2 2021-01-29 2021-01-29 21:45:48.699222 2021-01-29 21:45:54.799344 1 1 PV1-V-1953 \N \N f 4140 1 2 1314 1055.00 0.00 399.00 656.00 2 2021-01-29 2021-01-29 22:22:14.521378 2021-01-29 22:22:19.605506 1 1 PV1-V-1954 \N \N f 4141 1 2 1314 1799.00 0.00 0.00 1799.00 2 2021-01-29 2021-01-29 23:04:13.069902 2021-01-29 23:05:00.172815 1 1 PV1-V-1955 \N \N f 4142 1 21 1315 1527.00 0.00 495.20 1031.80 2 2021-01-29 2021-01-29 23:47:21.013829 2021-01-29 23:48:18.953079 1 31 PV3-V-1267 \N \N f 4143 1 21 1315 42.24 6.76 0.00 49.00 2 2021-01-29 2021-01-29 23:51:37.823284 2021-01-29 23:52:16.835059 1 31 PV3-V-1268 \N \N f 4144 1 21 1315 999.00 0.00 550.00 449.00 2 2021-01-29 2021-01-30 00:49:34.951826 2021-01-30 00:50:13.909452 1 31 PV3-V-1269 \N \N f 4145 1 21 1316 42.24 6.76 0.00 49.00 1 2021-01-30 2021-01-30 22:06:41.66262 2021-01-30 22:06:47.582462 1 31 PV3-V-1270 \N \N f 4146 1 21 1316 84.48 13.52 0.00 98.00 2 2021-01-30 2021-01-30 22:07:02.60148 2021-01-30 22:07:37.127499 1 31 PV3-V-1271 \N \N f 4147 1 2 1317 2418.83 179.17 1299.00 1299.00 2 2021-01-30 2021-01-30 22:37:56.746732 2021-01-30 22:38:01.145256 1 1 PV1-V-1956 \N \N f 4148 1 2 1317 149.00 0.00 0.00 149.00 2 2021-01-30 2021-01-31 00:52:32.859824 2021-01-31 00:52:36.41974 1 1 PV1-V-1957 \N \N f 4149 1 2 1317 1399.00 0.00 419.00 980.00 2 2021-01-30 2021-01-31 01:01:33.810142 2021-01-31 01:02:01.543919 1 1 PV1-V-1958 \N \N f 4150 1 21 1319 1799.00 0.00 0.00 1799.00 2 2021-02-02 2021-02-02 17:15:25.400418 2021-02-02 17:15:36.86282 1 31 PV3-V-1272 \N \N f 4151 1 2 1320 1138.00 0.00 469.00 669.00 2 2021-02-02 2021-02-02 17:32:12.743236 2021-02-02 17:32:18.224995 1 1 PV1-V-1959 \N \N f 4121 494 21 1304 1499.00 0.00 0.00 1499.00 3 2021-01-23 2021-01-23 21:51:38.319514 2021-02-02 18:28:50.648727 0 31 PV3-V-1258 \N \N f 4152 1 21 1319 899.00 0.00 359.60 539.40 2 2021-02-02 2021-02-02 22:22:34.335273 2021-02-02 22:23:42.761039 1 31 PV3-V-1273 \N \N f 4118 376 2 1303 1499.00 0.00 0.00 1499.00 2 2021-01-23 2021-01-23 19:04:00.864116 2021-02-17 20:34:20.88105 2 1 PV1-V-1942 2021-02-27 \N f 4154 1 2 1321 870.38 78.62 379.00 570.00 2 2021-02-03 2021-02-03 19:15:48.243182 2021-02-03 19:15:52.335399 1 1 PV1-V-1960 \N \N f 4155 1 21 1322 1199.00 0.00 479.60 719.40 2 2021-02-03 2021-02-03 20:30:49.308233 2021-02-03 20:31:21.868359 1 31 PV3-V-1275 \N \N f 4156 1 2 1321 1748.00 0.00 799.00 949.00 2 2021-02-03 2021-02-03 21:15:38.91382 2021-02-03 21:15:42.666758 1 1 PV1-V-1961 \N \N f 4157 1 21 1322 1499.00 0.00 0.00 1499.00 2 2021-02-03 2021-02-03 21:43:25.244931 2021-02-03 21:44:35.433291 1 31 PV3-V-1276 \N \N f 4158 1 2 1321 478.31 20.69 349.00 150.00 2 2021-02-03 2021-02-03 23:30:10.24079 2021-02-03 23:30:14.891549 1 1 PV1-V-1962 \N \N f 4159 1 2 1321 599.00 0.00 239.00 360.00 2 2021-02-03 2021-02-04 00:06:52.788813 2021-02-04 00:06:57.398286 1 1 PV1-V-1963 \N \N f 4160 1 2 1321 479.00 0.00 329.00 150.00 2 2021-02-03 2021-02-04 00:51:06.013005 2021-02-04 00:51:10.197156 1 1 PV1-V-1964 \N \N f 4161 1 2 1323 675.00 0.00 525.00 150.00 2 2021-02-04 2021-02-04 18:03:00.466553 2021-02-04 18:03:06.712625 1 1 PV1-V-1965 \N \N f 4162 1 21 1324 149.00 0.00 0.00 149.00 2 2021-02-04 2021-02-04 20:53:48.393941 2021-02-04 20:53:52.534572 1 31 PV3-V-1277 \N \N f 4163 1 2 1323 678.31 20.69 549.00 150.00 2 2021-02-04 2021-02-04 20:58:36.839356 2021-02-04 20:58:40.820161 1 1 PV1-V-1966 \N \N f 4164 1 2 1323 956.62 41.38 698.00 300.00 2 2021-02-04 2021-02-04 23:35:47.82509 2021-02-04 23:35:56.418045 1 1 PV1-V-1967 \N \N f 4165 1 2 1323 2604.62 41.38 2046.00 600.00 2 2021-02-04 2021-02-04 23:42:55.050655 2021-02-04 23:42:59.241041 1 1 PV1-V-1968 \N \N f 4166 1 2 1323 1227.31 20.69 948.00 300.00 2 2021-02-04 2021-02-04 23:43:58.383063 2021-02-04 23:44:02.796905 1 1 PV1-V-1969 \N \N f 4167 1 2 1323 889.00 0.00 539.00 350.00 2 2021-02-04 2021-02-04 23:46:50.65234 2021-02-04 23:46:58.016793 1 1 PV1-V-1970 \N \N f 4168 1 2 1323 1129.00 0.00 452.00 677.00 2 2021-02-04 2021-02-04 23:53:18.329262 2021-02-04 23:53:45.604782 1 1 PV1-V-1971 \N \N f 4169 1 2 1325 869.00 0.00 348.00 521.00 2 2021-02-06 2021-02-06 18:20:15.006429 2021-02-06 18:20:21.929873 1 1 PV1-V-1972 \N \N f 4170 1 21 1326 699.00 0.00 279.60 419.40 2 2021-02-06 2021-02-06 20:48:21.5652 2021-02-06 20:51:22.525625 1 31 PV3-V-1278 \N \N f 4171 1 2 1325 699.00 0.00 549.00 150.00 2 2021-02-06 2021-02-07 00:27:57.503148 2021-02-07 00:28:05.758489 1 1 PV1-V-1973 \N \N f 4172 1 2 1325 2114.31 20.69 1397.00 738.00 2 2021-02-06 2021-02-07 00:52:15.723454 2021-02-07 00:53:01.495658 1 1 PV1-V-1974 \N \N f 4173 1 21 1328 529.00 0.00 0.00 529.00 2 2021-02-08 2021-02-08 21:44:07.769522 2021-02-08 21:44:20.507392 1 31 PV3-V-1279 \N \N f 4174 1 2 1330 798.31 20.69 669.00 150.00 2 2021-02-10 2021-02-10 18:05:07.202177 2021-02-10 18:05:11.259197 1 1 PV1-V-1975 \N \N f 4127 391 2 1306 1099.00 0.00 0.00 1099.00 2 2021-01-25 2021-01-25 20:05:51.435476 2021-02-10 23:33:19.363621 2 1 PV1-V-1946 2021-03-01 \N f 4175 1 2 1330 120.00 0.00 0.00 120.00 2 2021-02-10 2021-02-11 00:21:17.471421 2021-02-11 00:21:21.164759 1 1 PV1-V-1976 \N \N f 4176 1 2 1332 678.31 20.69 549.00 150.00 2 2021-02-11 2021-02-11 23:05:50.197345 2021-02-11 23:05:53.964771 1 1 PV1-V-1977 \N \N f 4177 1 2 1332 1458.00 0.00 189.00 1269.00 2 2021-02-11 2021-02-12 01:55:23.101262 2021-02-12 01:55:28.346886 1 1 PV1-V-1978 \N \N f 4178 1 2 1333 930.03 68.96 499.00 499.99 2 2021-02-12 2021-02-12 22:52:47.13227 2021-02-12 22:52:53.197609 1 1 PV1-V-1979 \N \N f 4179 1 2 1333 599.00 0.00 0.00 599.00 2 2021-02-12 2021-02-13 01:31:38.991689 2021-02-13 01:31:49.242953 1 1 PV1-V-1980 \N \N f 4180 1 18 1331 404.31 64.69 0.00 469.00 2 2021-02-12 2021-02-13 01:37:06.631792 2021-02-13 01:37:21.401607 1 14 PV3-V-1280 \N \N f 4182 1 2 1334 1097.31 20.69 499.00 619.00 2 2021-02-13 2021-02-13 22:33:39.736613 2021-02-13 22:33:44.578567 1 1 PV1-V-1982 \N \N f 4183 1 21 1331 869.00 0.00 0.00 869.00 2 2021-02-13 2021-02-13 23:11:06.649716 2021-02-13 23:11:18.906495 1 31 PV3-V-1281 \N \N f 4153 495 21 1319 1699.00 0.00 0.00 1699.00 2 2021-02-02 2021-02-03 01:18:21.130956 2021-02-14 00:04:07.063747 2 14 PV3-V-1274 2021-03-09 \N f 4184 1 21 1331 589.00 0.00 0.00 589.00 2 2021-02-13 2021-02-14 00:26:12.641391 2021-02-14 00:26:18.939209 1 31 PV3-V-1282 \N \N f 4185 1 2 1334 1805.62 41.38 1397.00 450.00 2 2021-02-13 2021-02-14 01:07:17.939553 2021-02-14 01:07:23.536684 1 1 PV1-V-1983 \N \N f 4186 1 21 1335 699.00 0.00 0.00 699.00 2 2021-02-15 2021-02-15 21:06:13.293821 2021-02-15 21:07:14.136706 1 31 PV3-V-1283 \N \N f 4187 1 21 1335 598.00 0.00 0.00 598.00 2 2021-02-16 2021-02-16 20:58:09.233766 2021-02-16 20:59:57.942698 1 14 PV3-V-1284 \N \N f 4188 1 2 1337 999.00 0.00 0.00 999.00 2 2021-02-18 2021-02-18 22:24:55.693221 2021-02-18 22:25:17.168454 1 1 PV1-V-1984 \N \N f 4189 1 18 1335 449.00 0.00 0.00 449.00 2 2021-02-18 2021-02-19 00:17:34.070116 2021-02-19 00:17:41.389628 1 14 PV3-V-1285 \N \N f 4181 36 2 1333 1610.03 68.96 829.00 849.99 3 2021-02-12 2021-02-13 01:38:56.612135 2021-02-23 21:27:11.127843 0 30 PV1-V-1981 \N \N f 4190 1 2 1341 1306.62 41.38 1048.00 300.00 2 2021-02-27 2021-02-28 01:49:53.62957 2021-02-28 01:49:58.293907 1 1 PV1-V-1985 \N \N f 4191 1 2 1342 499.00 0.00 349.00 150.00 2 2021-03-01 2021-03-02 00:30:10.062207 2021-03-02 00:30:14.807634 1 1 PV1-V-1986 \N \N f 4192 1 2 1343 609.00 0.00 304.00 305.00 2 2021-03-03 2021-03-04 01:09:21.695424 2021-03-04 01:09:30.597262 1 1 PV1-V-1987 \N \N f 4193 1 2 1344 640.72 48.28 339.00 350.00 2 2021-03-04 2021-03-05 01:33:14.652996 2021-03-05 01:33:19.253687 1 1 PV1-V-1988 \N \N f 4194 1 18 1339 499.00 0.00 0.00 499.00 2 2021-03-18 2021-03-19 01:29:31.763309 2021-03-19 01:29:37.635679 1 14 PV3-V-1286 \N \N f \. -- -- Data for Name: sales_details; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.sales_details (id, sale_id, product_id, quantity, amount, tax, discount, total, status, created_at, updated_at, special_price_id, unit_price, unit_price_w_discount, haggle, haggle_percent) FROM stdin; 3 3 60 1.0 699.00 0.00 0.00 699.00 1 2019-02-05 21:45:38.347164 2019-02-05 21:45:38.347164 \N 699.00 \N 0.00 0.00 4 3 199 1.0 749.00 0.00 0.00 749.00 1 2019-02-05 21:45:38.411437 2019-02-05 21:45:38.411437 \N 749.00 \N 0.00 0.00 5 4 183 1.0 1049.00 0.00 0.00 1049.00 1 2019-02-05 22:11:05.747816 2019-02-05 22:11:05.747816 \N 1049.00 \N 0.00 0.00 6 5 135 1.0 469.00 0.00 0.00 469.00 1 2019-02-05 22:13:42.137571 2019-02-05 22:13:42.137571 \N 469.00 \N 0.00 0.00 7 5 177 1.0 699.00 0.00 0.00 699.00 1 2019-02-05 22:13:42.17931 2019-02-05 22:13:42.17931 \N 699.00 \N 0.00 0.00 8 6 265 1.0 1199.00 0.00 0.00 1199.00 1 2019-02-05 22:15:02.983721 2019-02-05 22:15:02.983721 \N 1199.00 \N 0.00 0.00 9 7 145 1.0 799.00 0.00 0.00 799.00 1 2019-02-05 22:16:42.193795 2019-02-05 22:16:42.193795 \N 799.00 \N 0.00 0.00 10 7 183 1.0 1049.00 0.00 0.00 1049.00 1 2019-02-05 22:16:42.234824 2019-02-05 22:16:42.234824 \N 1049.00 \N 0.00 0.00 11 7 5 1.0 689.00 0.00 0.00 689.00 1 2019-02-05 22:16:42.271069 2019-02-05 22:16:42.271069 \N 689.00 \N 0.00 0.00 12 8 139 1.0 899.00 0.00 0.00 899.00 1 2019-02-05 22:21:49.892367 2019-02-05 22:21:49.892367 \N 899.00 \N 0.00 0.00 13 9 135 1.0 469.00 0.00 0.00 469.00 1 2019-02-05 22:26:00.852182 2019-02-05 22:26:00.852182 \N 469.00 \N 0.00 0.00 14 9 179 1.0 699.00 0.00 0.00 699.00 1 2019-02-05 22:26:00.891079 2019-02-05 22:26:00.891079 \N 699.00 \N 0.00 0.00 15 9 140 1.0 649.00 0.00 0.00 649.00 1 2019-02-05 22:26:00.926677 2019-02-05 22:26:00.926677 \N 649.00 \N 0.00 0.00 16 9 200 1.0 529.00 0.00 0.00 529.00 1 2019-02-05 22:26:00.963487 2019-02-05 22:26:00.963487 \N 529.00 \N 0.00 0.00 17 10 145 1.0 799.00 0.00 0.00 799.00 1 2019-02-05 22:30:22.538874 2019-02-05 22:30:22.538874 \N 799.00 \N 0.00 0.00 18 10 143 1.0 599.00 0.00 0.00 599.00 1 2019-02-05 22:30:22.574375 2019-02-05 22:30:22.574375 \N 599.00 \N 0.00 0.00 19 11 137 1.0 599.00 0.00 0.00 599.00 0 2019-02-05 22:31:47.498977 2019-02-05 22:32:03.25531 \N 599.00 \N 0.00 0.00 20 12 137 1.0 599.00 0.00 0.00 599.00 1 2019-02-05 22:32:25.368415 2019-02-05 22:32:25.368415 \N 599.00 \N 0.00 0.00 21 13 153 1.0 499.00 0.00 0.00 499.00 1 2019-02-05 22:35:30.542872 2019-02-05 22:35:30.542872 \N 499.00 \N 0.00 0.00 22 13 159 1.0 549.00 0.00 0.00 549.00 1 2019-02-05 22:35:30.581433 2019-02-05 22:35:30.581433 \N 549.00 \N 0.00 0.00 23 14 6 1.0 699.00 0.00 0.00 699.00 1 2019-02-05 22:38:21.412633 2019-02-05 22:38:21.412633 \N 699.00 \N 0.00 0.00 24 14 145 1.0 799.00 0.00 0.00 799.00 1 2019-02-05 22:38:21.454274 2019-02-05 22:38:21.454274 \N 799.00 \N 0.00 0.00 25 14 199 1.0 749.00 0.00 0.00 749.00 1 2019-02-05 22:38:21.48802 2019-02-05 22:38:21.48802 \N 749.00 \N 0.00 0.00 26 14 133 1.0 499.00 0.00 0.00 499.00 1 2019-02-05 22:38:21.523104 2019-02-05 22:38:21.523104 \N 499.00 \N 0.00 0.00 27 15 182 1.0 1299.00 0.00 0.00 1299.00 1 2019-02-05 22:39:39.093465 2019-02-05 22:39:39.093465 \N 1299.00 \N 0.00 0.00 28 16 188 1.0 899.00 0.00 0.00 899.00 1 2019-02-05 22:41:00.100913 2019-02-05 22:41:00.100913 \N 899.00 \N 0.00 0.00 29 16 178 1.0 599.00 0.00 0.00 599.00 1 2019-02-05 22:41:00.138905 2019-02-05 22:41:00.138905 \N 599.00 \N 0.00 0.00 30 16 140 1.0 649.00 0.00 0.00 649.00 1 2019-02-05 22:41:00.176267 2019-02-05 22:41:00.176267 \N 649.00 \N 0.00 0.00 31 16 78 1.0 595.00 0.00 0.00 595.00 1 2019-02-05 22:41:00.213576 2019-02-05 22:41:00.213576 \N 595.00 \N 0.00 0.00 32 17 141 1.0 569.00 0.00 0.00 569.00 0 2019-02-05 22:44:53.148689 2019-02-05 22:46:02.297917 \N 569.00 \N 0.00 0.00 33 17 200 1.0 529.00 0.00 0.00 529.00 0 2019-02-05 22:44:53.189319 2019-02-05 22:46:02.331674 \N 529.00 \N 0.00 0.00 34 17 178 1.0 599.00 0.00 0.00 599.00 0 2019-02-05 22:44:53.22693 2019-02-05 22:46:02.365054 \N 599.00 \N 0.00 0.00 35 17 184 1.0 869.00 0.00 0.00 869.00 0 2019-02-05 22:44:53.262779 2019-02-05 22:46:02.397055 \N 869.00 \N 0.00 0.00 36 18 141 1.0 569.00 0.00 0.00 569.00 1 2019-02-05 22:46:37.514165 2019-02-05 22:46:37.514165 \N 569.00 \N 0.00 0.00 37 18 200 1.0 529.00 0.00 0.00 529.00 1 2019-02-05 22:46:37.552492 2019-02-05 22:46:37.552492 \N 529.00 \N 0.00 0.00 38 18 178 1.0 599.00 0.00 0.00 599.00 1 2019-02-05 22:46:37.589263 2019-02-05 22:46:37.589263 \N 599.00 \N 0.00 0.00 39 18 184 1.0 869.00 0.00 0.00 869.00 1 2019-02-05 22:46:37.626883 2019-02-05 22:46:37.626883 \N 869.00 \N 0.00 0.00 40 19 199 1.0 749.00 0.00 0.00 749.00 1 2019-02-06 00:39:01.909155 2019-02-06 00:39:01.909155 \N 749.00 \N 0.00 0.00 41 19 16 1.0 499.00 0.00 0.00 499.00 1 2019-02-06 00:39:01.946581 2019-02-06 00:39:01.946581 \N 499.00 \N 0.00 0.00 42 20 329 1.0 499.00 0.00 0.00 499.00 1 2019-02-06 00:40:26.817926 2019-02-06 00:40:26.817926 \N 499.00 \N 0.00 0.00 43 21 330 1.0 399.00 0.00 100.00 399.00 1 2019-02-06 01:28:26.920743 2019-02-06 01:28:26.920743 \N 499.00 \N 100.00 0.00 44 22 323 1.0 469.00 0.00 0.00 469.00 1 2019-02-06 01:30:42.275541 2019-02-06 01:30:42.275541 \N 469.00 \N 0.00 0.00 45 23 329 1.0 499.00 0.00 0.00 499.00 1 2019-02-06 01:32:38.88174 2019-02-06 01:32:38.88174 \N 499.00 \N 0.00 0.00 46 24 329 1.0 499.00 0.00 0.00 499.00 1 2019-02-06 01:38:42.893647 2019-02-06 01:38:42.893647 \N 499.00 \N 0.00 0.00 47 25 418 1.0 899.00 0.00 0.00 899.00 1 2019-02-06 01:40:06.521115 2019-02-06 01:40:06.521115 \N 899.00 \N 0.00 0.00 48 26 332 1.0 619.00 0.00 0.00 619.00 1 2019-02-06 01:40:53.843735 2019-02-06 01:40:53.843735 \N 619.00 \N 0.00 0.00 49 27 413 1.0 499.00 0.00 0.00 499.00 1 2019-02-06 01:41:53.582482 2019-02-06 01:41:53.582482 \N 499.00 \N 0.00 0.00 50 28 411 1.0 729.00 0.00 0.00 729.00 1 2019-02-06 01:46:46.001203 2019-02-06 01:46:46.001203 \N 729.00 \N 0.00 0.00 51 29 303 1.0 899.00 0.00 0.00 899.00 1 2019-02-06 01:47:26.569288 2019-02-06 01:47:26.569288 \N 899.00 \N 0.00 0.00 52 30 418 1.0 899.00 0.00 0.00 899.00 1 2019-02-06 01:48:03.607384 2019-02-06 01:48:03.607384 \N 899.00 \N 0.00 0.00 53 31 326 1.0 499.00 0.00 0.00 499.00 1 2019-02-06 02:29:54.309003 2019-02-06 02:29:54.309003 \N 499.00 \N 0.00 0.00 54 32 80 1.0 499.00 0.00 0.00 499.00 1 2019-02-06 17:22:34.430011 2019-02-06 17:22:34.430011 \N 499.00 \N 0.00 0.00 55 33 270 1.0 1199.00 0.00 0.00 1199.00 1 2019-02-06 17:27:51.860618 2019-02-06 17:27:51.860618 \N 1199.00 \N 0.00 0.00 56 34 171 1.0 1299.00 0.00 0.00 1299.00 1 2019-02-06 20:10:18.257739 2019-02-06 20:10:18.257739 \N 1299.00 \N 0.00 0.00 57 35 422 1.0 699.00 0.00 0.00 699.00 1 2019-02-06 20:17:18.246151 2019-02-06 20:17:18.246151 \N 699.00 \N 0.00 0.00 58 36 372 1.0 599.00 0.00 0.00 599.00 1 2019-02-06 20:20:16.830035 2019-02-06 20:20:16.830035 \N 599.00 \N 0.00 0.00 59 37 282 1.0 585.34 93.65 0.00 678.99 1 2019-02-06 21:49:55.800914 2019-02-06 21:49:55.800914 \N 679.00 \N 0.00 0.00 60 38 134 1.0 662.93 106.07 0.00 769.00 1 2019-02-06 23:42:24.075029 2019-02-06 23:42:24.075029 \N 769.00 \N 0.00 0.00 61 39 145 1.0 688.79 110.21 0.00 799.00 1 2019-02-07 00:23:10.517339 2019-02-07 00:23:10.517339 \N 799.00 \N 0.00 0.00 62 39 135 1.0 404.31 64.69 0.00 469.00 1 2019-02-07 00:23:10.563569 2019-02-07 00:23:10.563569 \N 469.00 \N 0.00 0.00 63 39 152 1.0 576.72 92.28 0.00 669.00 1 2019-02-07 00:23:10.601974 2019-02-07 00:23:10.601974 \N 669.00 \N 0.00 0.00 64 39 154 1.0 421.55 67.45 0.00 489.00 1 2019-02-07 00:23:10.641137 2019-02-07 00:23:10.641137 \N 489.00 \N 0.00 0.00 65 40 179 1.0 602.59 96.41 0.00 699.00 1 2019-02-07 00:35:27.431083 2019-02-07 00:35:27.431083 \N 699.00 \N 0.00 0.00 66 41 421 1.0 688.79 110.21 0.00 799.00 1 2019-02-07 00:41:45.25624 2019-02-07 00:41:45.25624 \N 799.00 \N 0.00 0.00 67 42 80 1.0 344.14 55.06 99.80 399.20 1 2019-02-07 00:46:04.067675 2019-02-07 00:46:04.067675 \N 499.00 \N 0.00 20.00 68 43 321 1.0 404.31 64.69 0.00 469.00 1 2019-02-07 00:49:17.310532 2019-02-07 00:49:17.310532 \N 469.00 \N 0.00 0.00 69 44 332 1.0 533.62 85.38 0.00 619.00 1 2019-02-08 20:06:56.363753 2019-02-08 20:06:56.363753 \N 619.00 \N 0.00 0.00 70 45 270 1.0 1033.62 165.38 0.00 1199.00 1 2019-02-08 20:09:49.69008 2019-02-08 20:09:49.69008 \N 1199.00 \N 0.00 0.00 71 46 248 1.0 1007.76 161.24 0.00 1169.00 1 2019-02-08 23:13:31.56289 2019-02-08 23:13:31.56289 \N 1169.00 \N 0.00 0.00 72 47 140 1.0 559.48 89.52 0.00 649.00 0 2019-02-09 01:26:42.061579 2019-02-09 01:27:43.126796 \N 649.00 \N 0.00 0.00 73 48 140 1.0 559.48 89.52 0.00 649.00 1 2019-02-09 01:28:20.54363 2019-02-09 01:28:20.54363 \N 649.00 \N 0.00 0.00 74 48 159 1.0 473.28 75.72 0.00 549.00 1 2019-02-09 01:28:20.582541 2019-02-09 01:28:20.582541 \N 549.00 \N 0.00 0.00 75 49 297 1.0 516.38 82.62 0.00 599.00 1 2019-02-09 02:12:57.993331 2019-02-09 02:12:57.993331 \N 599.00 \N 0.00 0.00 76 50 248 1.0 1007.76 161.24 0.00 1169.00 1 2019-02-09 02:39:21.900125 2019-02-09 02:39:21.900125 \N 1169.00 \N 0.00 0.00 77 51 325 1.0 421.55 67.45 0.00 489.00 1 2019-02-09 17:33:44.02404 2019-02-09 17:33:44.02404 \N 489.00 \N 0.00 0.00 78 52 199 1.0 645.69 103.31 0.00 749.00 1 2019-02-09 19:28:40.740935 2019-02-09 19:28:40.740935 \N 749.00 \N 0.00 0.00 79 53 327 1.0 421.55 67.45 0.00 489.00 1 2019-02-09 20:16:30.886314 2019-02-09 20:16:30.886314 \N 489.00 \N 0.00 0.00 80 53 406 1.0 430.17 68.83 0.00 499.00 1 2019-02-09 20:16:30.950816 2019-02-09 20:16:30.950816 \N 499.00 \N 0.00 0.00 81 54 236 1.0 749.14 119.86 0.00 869.00 1 2019-02-09 21:19:03.210785 2019-02-09 21:19:03.210785 \N 869.00 \N 0.00 0.00 82 54 143 1.0 516.38 82.62 0.00 599.00 1 2019-02-09 21:19:03.269975 2019-02-09 21:19:03.269975 \N 599.00 \N 0.00 0.00 83 55 313 1.0 343.97 55.04 0.00 399.01 1 2019-02-09 21:25:30.442239 2019-02-09 21:25:30.442239 \N 399.00 \N 0.00 0.00 84 56 82 1.0 576.72 92.28 0.00 669.00 1 2019-02-09 21:27:38.23733 2019-02-09 21:27:38.23733 \N 669.00 \N 0.00 0.00 85 57 326 1.0 430.17 68.83 0.00 499.00 1 2019-02-09 21:31:15.546271 2019-02-09 21:31:15.546271 \N 499.00 \N 0.00 0.00 86 58 249 1.0 507.76 81.24 0.00 589.00 1 2019-02-11 18:51:57.30327 2019-02-11 18:51:57.30327 \N 589.00 \N 0.00 0.00 87 59 157 1.0 775.00 124.00 0.00 899.00 1 2019-02-11 19:36:54.2607 2019-02-11 19:36:54.2607 \N 899.00 \N 0.00 0.00 88 60 412 1.0 490.52 78.48 0.00 569.00 1 2019-02-11 19:52:26.214167 2019-02-11 19:52:26.214167 \N 569.00 \N 0.00 0.00 89 61 411 1.0 628.45 100.55 0.00 729.00 1 2019-02-11 21:14:18.076084 2019-02-11 21:14:18.076084 \N 729.00 \N 0.00 0.00 90 61 332 1.0 533.62 85.38 0.00 619.00 1 2019-02-11 21:14:18.125292 2019-02-11 21:14:18.125292 \N 619.00 \N 0.00 0.00 91 62 452 1.0 1699.00 0.00 0.00 1699.00 1 2019-02-11 22:12:53.626751 2019-02-11 22:12:53.626751 \N 1699.00 \N 0.00 0.00 92 63 422 1.0 602.59 96.41 0.00 699.00 1 2019-02-12 00:20:20.775095 2019-02-12 00:20:20.775095 \N 699.00 \N 0.00 0.00 93 64 199 1.0 645.69 103.31 0.00 749.00 1 2019-02-12 00:32:53.386889 2019-02-12 00:32:53.386889 \N 749.00 \N 0.00 0.00 94 65 325 1.0 421.55 67.45 0.00 489.00 1 2019-02-12 01:32:52.168359 2019-02-12 01:32:52.168359 \N 489.00 \N 0.00 0.00 95 65 317 1.0 404.31 64.69 0.00 469.00 1 2019-02-12 01:32:52.213007 2019-02-12 01:32:52.213007 \N 469.00 \N 0.00 0.00 96 66 435 1.0 568.10 90.90 0.00 659.00 1 2019-02-12 01:41:08.101496 2019-02-12 01:41:08.101496 \N 659.00 \N 0.00 0.00 97 67 450 1.0 1499.00 0.00 0.00 1499.00 1 2019-02-12 21:02:22.083736 2019-02-12 21:02:22.083736 \N 1499.00 \N 0.00 0.00 98 68 88 1.0 430.17 68.83 0.00 499.00 1 2019-02-12 23:26:35.16109 2019-02-12 23:26:35.16109 \N 499.00 \N 0.00 0.00 99 69 477 1.0 1399.00 0.00 0.00 1399.00 0 2019-02-12 23:56:24.710704 2019-02-12 23:56:35.583982 \N 1399.00 \N 0.00 0.00 100 70 477 1.0 1399.00 0.00 0.00 1399.00 1 2019-02-12 23:57:00.921654 2019-02-12 23:57:00.921654 \N 1399.00 \N 0.00 0.00 101 71 151 1.0 412.93 66.07 0.00 479.00 1 2019-02-13 00:35:48.736629 2019-02-13 00:35:48.736629 \N 479.00 \N 0.00 0.00 102 72 406 1.0 430.17 68.83 0.00 499.00 1 2019-02-13 19:54:22.476835 2019-02-13 19:54:22.476835 \N 499.00 \N 0.00 0.00 103 73 326 1.0 430.17 68.83 0.00 499.00 1 2019-02-13 19:59:15.797582 2019-02-13 19:59:15.797582 \N 499.00 \N 0.00 0.00 104 74 406 1.0 430.17 68.83 0.00 499.00 1 2019-02-13 21:41:10.37024 2019-02-13 21:41:10.37024 \N 499.00 \N 0.00 0.00 105 75 200 1.0 456.03 72.96 0.00 528.99 1 2019-02-13 22:55:51.499231 2019-02-13 22:55:51.499231 \N 529.00 \N 0.00 0.00 106 76 479 1.0 675.00 0.00 0.00 675.00 1 2019-02-13 23:38:20.822876 2019-02-13 23:38:20.822876 \N 675.00 \N 0.00 0.00 107 77 480 1.0 1119.30 0.00 479.70 1119.30 1 2019-02-13 23:49:35.996857 2019-02-13 23:49:35.996857 \N 1599.00 \N 0.00 30.00 108 78 362 1.0 1550.86 248.14 0.00 1799.00 1 2019-02-13 23:55:54.780828 2019-02-13 23:55:54.780828 \N 1799.00 \N 0.00 0.00 109 79 362 1.0 1550.86 248.14 0.00 1799.00 1 2019-02-13 23:58:51.42642 2019-02-13 23:58:51.42642 \N 1799.00 \N 0.00 0.00 110 79 444 1.0 1464.66 234.35 0.00 1699.01 1 2019-02-13 23:58:51.467151 2019-02-13 23:58:51.467151 \N 1699.00 \N 0.00 0.00 111 80 322 1.0 421.55 67.45 0.00 489.00 1 2019-02-14 02:26:30.530758 2019-02-14 02:26:30.530758 \N 489.00 \N 0.00 0.00 112 81 328 1.0 507.76 81.24 0.00 589.00 0 2019-02-14 02:28:30.093203 2019-02-14 02:29:20.196267 \N 589.00 \N 0.00 0.00 113 82 328 1.0 507.76 81.24 0.00 589.00 1 2019-02-14 02:30:12.919336 2019-02-14 02:30:12.919336 \N 589.00 \N 0.00 0.00 114 83 151 1.0 412.93 66.07 0.00 479.00 1 2019-02-14 18:34:29.558241 2019-02-14 18:34:29.558241 \N 479.00 \N 0.00 0.00 115 84 429 1.0 559.48 89.52 0.00 649.00 1 2019-02-14 20:22:29.153103 2019-02-14 20:22:29.153103 \N 649.00 \N 0.00 0.00 116 85 321 1.0 404.31 64.69 0.00 469.00 0 2019-02-15 01:00:43.269364 2019-02-15 01:07:30.863627 \N 469.00 \N 0.00 0.00 117 86 320 1.0 404.31 64.69 0.00 469.00 1 2019-02-15 01:08:24.761095 2019-02-15 01:08:24.761095 \N 469.00 \N 0.00 0.00 118 86 319 1.0 404.31 64.69 0.00 469.00 1 2019-02-15 01:08:24.800323 2019-02-15 01:08:24.800323 \N 469.00 \N 0.00 0.00 119 86 321 1.0 404.31 64.69 0.00 469.00 1 2019-02-15 01:08:24.838163 2019-02-15 01:08:24.838163 \N 469.00 \N 0.00 0.00 120 87 476 1.0 99.00 0.00 0.00 99.00 1 2019-02-15 02:17:07.56148 2019-02-15 02:17:07.56148 \N 99.00 \N 0.00 0.00 121 87 143 1.0 516.38 82.62 0.00 599.00 1 2019-02-15 02:17:07.601209 2019-02-15 02:17:07.601209 \N 599.00 \N 0.00 0.00 122 88 326 1.0 430.17 68.83 0.00 499.00 1 2019-02-15 21:32:50.462184 2019-02-15 21:32:50.462184 \N 499.00 \N 0.00 0.00 123 89 159 1.0 473.28 75.72 0.00 549.00 1 2019-02-15 21:36:02.839661 2019-02-15 21:36:02.839661 \N 549.00 \N 0.00 0.00 124 90 266 1.0 1378.45 220.55 0.00 1599.00 1 2019-02-15 22:26:45.678777 2019-02-15 22:26:45.678777 \N 1599.00 \N 0.00 0.00 125 91 322 1.0 421.55 67.45 0.00 489.00 1 2019-02-15 23:53:25.923195 2019-02-15 23:53:25.923195 \N 489.00 \N 0.00 0.00 126 92 482 1.0 899.00 0.00 0.00 899.00 1 2019-02-16 00:15:22.578355 2019-02-16 00:15:22.578355 \N 899.00 \N 0.00 0.00 127 93 304 1.0 662.93 106.07 0.00 769.00 1 2019-02-16 00:30:35.953353 2019-02-16 00:30:35.953353 \N 769.00 \N 0.00 0.00 128 94 252 1.0 1068.10 170.90 0.00 1239.00 1 2019-02-16 00:55:28.097216 2019-02-16 00:55:28.097216 \N 1239.00 \N 0.00 0.00 129 94 154 1.0 421.55 67.45 0.00 489.00 1 2019-02-16 00:55:28.133904 2019-02-16 00:55:28.133904 \N 489.00 \N 0.00 0.00 130 95 137 1.0 516.38 82.62 0.00 599.00 1 2019-02-16 01:46:20.329291 2019-02-16 01:46:20.329291 \N 599.00 \N 0.00 0.00 131 96 159 1.0 473.28 75.72 0.00 549.00 1 2019-02-16 19:51:33.255619 2019-02-16 19:51:33.255619 \N 549.00 \N 0.00 0.00 132 97 199 1.0 645.69 103.31 0.00 749.00 1 2019-02-16 20:04:20.355799 2019-02-16 20:04:20.355799 \N 749.00 \N 0.00 0.00 133 98 153 1.0 430.17 68.83 0.00 499.00 1 2019-02-16 20:08:16.397915 2019-02-16 20:08:16.397915 \N 499.00 \N 0.00 0.00 134 99 151 1.0 412.93 66.07 0.00 479.00 1 2019-02-16 21:05:45.581018 2019-02-16 21:05:45.581018 \N 479.00 \N 0.00 0.00 135 99 220 1.0 1119.83 179.17 0.00 1299.00 1 2019-02-16 21:05:45.621657 2019-02-16 21:05:45.621657 \N 1299.00 \N 0.00 0.00 136 100 222 1.0 602.59 96.41 0.00 699.00 1 2019-02-16 21:16:16.132895 2019-02-16 21:16:16.132895 \N 699.00 \N 0.00 0.00 137 101 270 1.0 1033.62 165.38 0.00 1199.00 1 2019-02-16 21:20:06.619584 2019-02-16 21:20:06.619584 \N 1199.00 \N 0.00 0.00 138 102 136 1.0 421.55 67.45 0.00 489.00 1 2019-02-16 21:56:46.195753 2019-02-16 21:56:46.195753 \N 489.00 \N 0.00 0.00 139 103 420 1.0 723.28 115.72 0.00 839.00 1 2019-02-16 22:24:37.189001 2019-02-16 22:24:37.189001 \N 839.00 \N 0.00 0.00 140 104 14 1.0 490.52 78.48 0.00 569.00 1 2019-02-17 00:10:33.330256 2019-02-17 00:10:33.330256 \N 569.00 \N 0.00 0.00 141 105 295 1.0 852.59 136.41 0.00 989.00 1 2019-02-17 00:24:52.158931 2019-02-17 00:24:52.158931 \N 989.00 \N 0.00 0.00 142 106 183 1.0 904.31 144.69 0.00 1049.00 1 2019-02-17 01:32:38.019414 2019-02-17 01:32:38.019414 \N 1049.00 \N 0.00 0.00 143 107 479 1.0 675.00 0.00 0.00 675.00 1 2019-02-17 21:04:44.900787 2019-02-17 21:04:44.900787 \N 675.00 \N 0.00 0.00 144 108 251 1.0 1206.03 192.96 0.00 1398.99 1 2019-02-17 21:24:58.393449 2019-02-17 21:24:58.393449 \N 1399.00 \N 0.00 0.00 145 109 153 1.0 430.17 68.83 0.00 499.00 1 2019-02-17 21:28:05.346724 2019-02-17 21:28:05.346724 \N 499.00 \N 0.00 0.00 146 109 199 1.0 645.69 103.31 0.00 749.00 1 2019-02-17 21:28:05.390198 2019-02-17 21:28:05.390198 \N 749.00 \N 0.00 0.00 147 110 17 1.0 421.55 67.45 0.00 489.00 1 2019-02-17 21:30:20.270306 2019-02-17 21:30:20.270306 \N 489.00 \N 0.00 0.00 148 110 157 1.0 775.00 124.00 0.00 899.00 1 2019-02-17 21:30:20.313117 2019-02-17 21:30:20.313117 \N 899.00 \N 0.00 0.00 149 110 148 1.0 404.31 64.69 0.00 469.00 1 2019-02-17 21:30:20.347898 2019-02-17 21:30:20.347898 \N 469.00 \N 0.00 0.00 150 111 151 1.0 412.93 66.07 0.00 479.00 0 2019-02-17 21:35:32.298959 2019-02-17 21:36:21.660713 \N 479.00 \N 0.00 0.00 151 111 150 1.0 404.31 64.69 0.00 469.00 0 2019-02-17 21:35:32.344787 2019-02-17 21:36:21.694915 \N 469.00 \N 0.00 0.00 152 111 85 1.0 559.48 89.52 0.00 649.00 0 2019-02-17 21:35:32.37923 2019-02-17 21:36:21.725444 \N 649.00 \N 0.00 0.00 153 111 462 1.0 489.00 0.00 0.00 489.00 0 2019-02-17 21:35:32.413994 2019-02-17 21:36:21.754952 \N 489.00 \N 0.00 0.00 154 111 15 1.0 688.79 110.21 0.00 799.00 0 2019-02-17 21:35:32.449675 2019-02-17 21:36:21.784929 \N 799.00 \N 0.00 0.00 155 112 151 1.0 412.93 66.07 0.00 479.00 1 2019-02-17 21:39:40.847046 2019-02-17 21:39:40.847046 \N 479.00 \N 0.00 0.00 156 112 150 1.0 404.31 64.69 0.00 469.00 1 2019-02-17 21:39:40.887825 2019-02-17 21:39:40.887825 \N 469.00 \N 0.00 0.00 157 112 462 1.0 489.00 0.00 0.00 489.00 1 2019-02-17 21:39:40.922869 2019-02-17 21:39:40.922869 \N 489.00 \N 0.00 0.00 158 112 15 1.0 688.79 110.21 0.00 799.00 1 2019-02-17 21:39:40.95886 2019-02-17 21:39:40.95886 \N 799.00 \N 0.00 0.00 159 113 324 1.0 404.31 64.69 0.00 469.00 1 2019-02-18 17:58:25.689841 2019-02-18 17:58:25.689841 \N 469.00 \N 0.00 0.00 160 114 321 1.0 404.31 64.69 0.00 469.00 1 2019-02-18 20:02:07.466059 2019-02-18 20:02:07.466059 \N 469.00 \N 0.00 0.00 161 114 317 1.0 404.31 64.69 0.00 469.00 1 2019-02-18 20:02:07.50621 2019-02-18 20:02:07.50621 \N 469.00 \N 0.00 0.00 162 115 157 1.0 775.00 124.00 0.00 899.00 1 2019-02-18 23:24:49.830554 2019-02-18 23:24:49.830554 \N 899.00 \N 0.00 0.00 163 115 201 1.0 990.52 158.48 0.00 1149.00 1 2019-02-18 23:24:49.8917 2019-02-18 23:24:49.8917 \N 1149.00 \N 0.00 0.00 164 116 406 1.0 430.17 68.83 0.00 499.00 1 2019-02-19 01:10:23.282334 2019-02-19 01:10:23.282334 \N 499.00 \N 0.00 0.00 165 117 154 1.0 421.55 67.45 0.00 489.00 0 2019-02-19 02:40:23.651971 2019-02-19 02:41:29.22941 \N 489.00 \N 0.00 0.00 166 117 16 1.0 430.17 68.83 0.00 499.00 0 2019-02-19 02:40:23.69197 2019-02-19 02:41:29.260054 \N 499.00 \N 0.00 0.00 167 118 332 1.0 533.62 85.38 0.00 619.00 1 2019-02-19 17:50:44.70162 2019-02-19 17:50:44.70162 \N 619.00 \N 0.00 0.00 168 119 183 1.0 904.31 144.69 0.00 1049.00 1 2019-02-20 00:12:51.45329 2019-02-20 00:12:51.45329 \N 1049.00 \N 0.00 0.00 169 120 200 1.0 456.03 72.96 0.00 528.99 1 2019-02-20 01:24:38.291926 2019-02-20 01:24:38.291926 \N 529.00 \N 0.00 0.00 170 120 140 1.0 559.48 89.52 0.00 649.00 1 2019-02-20 01:24:38.346913 2019-02-20 01:24:38.346913 \N 649.00 \N 0.00 0.00 171 121 270 1.0 1033.62 165.38 0.00 1199.00 0 2019-02-20 01:50:25.979102 2019-02-20 01:50:34.517843 \N 1199.00 \N 0.00 0.00 172 122 270 1.0 1033.62 165.38 0.00 1199.00 1 2019-02-20 01:51:01.837638 2019-02-20 01:51:01.837638 \N 1199.00 \N 0.00 0.00 173 123 166 1.0 688.79 110.21 0.00 799.00 1 2019-02-20 19:03:33.977533 2019-02-20 19:03:33.977533 \N 799.00 \N 0.00 0.00 174 124 157 1.0 775.00 124.00 0.00 899.00 1 2019-02-20 19:10:40.455436 2019-02-20 19:10:40.455436 \N 899.00 \N 0.00 0.00 177 126 412 1.0 490.52 78.48 0.00 569.00 1 2019-02-20 19:54:41.816763 2019-02-20 19:54:41.816763 \N 569.00 \N 0.00 0.00 178 127 379 1.0 525.00 84.00 0.00 609.00 1 2019-02-20 19:57:16.884697 2019-02-20 19:57:16.884697 \N 609.00 \N 0.00 0.00 179 127 382 1.0 448.28 71.72 0.00 520.00 1 2019-02-20 19:57:16.92765 2019-02-20 19:57:16.92765 \N 520.00 \N 0.00 0.00 175 125 179 2.0 1205.17 192.83 0.00 1398.00 0 2019-02-20 19:36:32.88208 2019-02-20 21:24:08.130309 \N 699.00 \N 0.00 0.00 176 125 133 1.0 430.17 68.83 0.00 499.00 0 2019-02-20 19:36:32.923057 2019-02-20 21:24:08.158981 \N 499.00 \N 0.00 0.00 180 128 179 1.0 602.59 96.41 0.00 699.00 1 2019-02-20 21:25:37.949171 2019-02-20 21:25:37.949171 \N 699.00 \N 0.00 0.00 181 128 133 1.0 430.17 68.83 0.00 499.00 1 2019-02-20 21:25:37.983153 2019-02-20 21:25:37.983153 \N 499.00 \N 0.00 0.00 182 129 148 1.0 404.31 64.69 0.00 469.00 1 2019-02-20 23:50:25.674049 2019-02-20 23:50:25.674049 \N 469.00 \N 0.00 0.00 183 130 383 1.0 490.52 78.48 0.00 569.00 1 2019-02-20 23:56:35.189256 2019-02-20 23:56:35.189256 \N 569.00 \N 0.00 0.00 184 131 200 2.0 912.07 145.93 0.00 1058.00 0 2019-02-21 01:15:54.473509 2019-02-21 01:16:09.210836 \N 529.00 \N 0.00 0.00 185 132 200 1.0 456.03 72.96 0.00 528.99 1 2019-02-21 01:16:27.632984 2019-02-21 01:16:27.632984 \N 529.00 \N 0.00 0.00 186 133 389 1.0 775.00 124.00 0.00 899.00 1 2019-02-21 01:22:36.375309 2019-02-21 01:22:36.375309 \N 899.00 \N 0.00 0.00 187 134 86 1.0 662.93 106.07 0.00 769.00 1 2019-02-21 19:21:02.56293 2019-02-21 19:21:02.56293 \N 769.00 \N 0.00 0.00 188 135 248 1.0 1007.76 161.24 0.00 1169.00 1 2019-02-21 19:40:28.92969 2019-02-21 19:40:28.92969 \N 1169.00 \N 0.00 0.00 189 136 151 1.0 412.93 66.07 0.00 479.00 1 2019-02-22 01:15:09.097148 2019-02-22 01:15:09.097148 \N 479.00 \N 0.00 0.00 190 137 41 2.0 3274.14 523.86 0.00 3798.00 1 2019-02-22 17:09:24.815583 2019-02-22 17:09:24.815583 \N 1899.00 \N 0.00 0.00 191 137 476 1.0 99.00 0.00 0.00 99.00 1 2019-02-22 17:09:24.877027 2019-02-22 17:09:24.877027 \N 99.00 \N 0.00 0.00 192 137 154 1.0 421.55 67.45 0.00 489.00 1 2019-02-22 17:09:24.915095 2019-02-22 17:09:24.915095 \N 489.00 \N 0.00 0.00 193 137 135 1.0 404.31 64.69 0.00 469.00 1 2019-02-22 17:09:24.950739 2019-02-22 17:09:24.950739 \N 469.00 \N 0.00 0.00 194 138 486 1.0 1799.00 0.00 0.00 1799.00 1 2019-02-22 19:26:26.120133 2019-02-22 19:26:26.120133 \N 1799.00 \N 0.00 0.00 195 139 259 1.0 947.41 151.59 0.00 1099.00 1 2019-02-22 19:43:16.00133 2019-02-22 19:43:16.00133 \N 1099.00 \N 0.00 0.00 196 139 487 1.0 1799.00 0.00 0.00 1799.00 1 2019-02-22 19:43:16.039696 2019-02-22 19:43:16.039696 \N 1799.00 \N 0.00 0.00 197 140 136 1.0 421.55 67.45 0.00 489.00 1 2019-02-23 00:20:08.21337 2019-02-23 00:20:08.21337 \N 489.00 \N 0.00 0.00 198 141 419 1.0 602.59 96.41 0.00 699.00 1 2019-02-23 01:52:57.118388 2019-02-23 01:52:57.118388 \N 699.00 \N 0.00 0.00 199 142 199 1.0 645.69 103.31 0.00 749.00 1 2019-02-23 02:01:07.579712 2019-02-23 02:01:07.579712 \N 749.00 \N 0.00 0.00 200 143 369 2.0 84.48 13.52 0.00 98.00 1 2019-02-23 19:18:17.715387 2019-02-23 19:18:17.715387 \N 49.00 \N 0.00 0.00 201 144 87 1.0 586.21 93.79 0.00 680.00 1 2019-02-23 19:39:30.525198 2019-02-23 19:39:30.525198 \N 680.00 \N 0.00 0.00 202 144 62 1.0 568.10 90.90 0.00 659.00 1 2019-02-23 19:39:30.564101 2019-02-23 19:39:30.564101 \N 659.00 \N 0.00 0.00 203 145 317 1.0 404.31 64.69 0.00 469.00 1 2019-02-23 19:56:59.838798 2019-02-23 19:56:59.838798 \N 469.00 \N 0.00 0.00 204 145 420 1.0 723.28 115.72 0.00 839.00 1 2019-02-23 19:56:59.882276 2019-02-23 19:56:59.882276 \N 839.00 \N 0.00 0.00 205 146 318 1.0 404.31 64.69 0.00 469.00 1 2019-02-23 20:58:42.887211 2019-02-23 20:58:42.887211 \N 469.00 \N 0.00 0.00 206 147 248 1.0 1007.76 161.24 0.00 1169.00 1 2019-02-24 00:28:09.017683 2019-02-24 00:28:09.017683 \N 1169.00 \N 0.00 0.00 207 148 151 1.0 412.93 66.07 0.00 479.00 1 2019-02-24 00:42:48.356692 2019-02-24 00:42:48.356692 \N 479.00 \N 0.00 0.00 208 148 16 1.0 430.17 68.83 0.00 499.00 1 2019-02-24 00:42:48.413277 2019-02-24 00:42:48.413277 \N 499.00 \N 0.00 0.00 209 149 202 1.0 430.17 68.83 0.00 499.00 1 2019-02-24 00:47:26.680938 2019-02-24 00:47:26.680938 \N 499.00 \N 0.00 0.00 210 149 479 1.0 675.00 0.00 0.00 675.00 1 2019-02-24 00:47:26.713413 2019-02-24 00:47:26.713413 \N 675.00 \N 0.00 0.00 211 150 492 1.0 1190.00 0.00 509.00 1190.00 1 2019-02-24 01:27:33.159604 2019-02-24 01:27:33.159604 \N 1699.00 \N 509.00 0.00 212 151 396 1.0 1119.83 179.17 0.00 1299.00 1 2019-02-24 22:07:33.602384 2019-02-24 22:07:33.602384 \N 1299.00 \N 0.00 0.00 213 151 483 1.0 969.00 0.00 0.00 969.00 1 2019-02-24 22:07:33.657864 2019-02-24 22:07:33.657864 \N 969.00 \N 0.00 0.00 214 152 9 1.0 602.59 96.41 0.00 699.00 1 2019-02-26 20:46:54.563659 2019-02-26 20:46:54.563659 \N 699.00 \N 0.00 0.00 215 153 322 1.0 421.55 67.45 0.00 489.00 0 2019-02-26 21:09:19.43132 2019-02-26 21:10:12.250442 \N 489.00 \N 0.00 0.00 216 154 476 2.0 198.00 0.00 0.00 198.00 0 2019-02-26 21:10:58.502282 2019-02-26 21:11:04.973058 \N 99.00 \N 0.00 0.00 217 155 322 1.0 421.55 67.45 0.00 489.00 1 2019-02-26 21:19:45.823101 2019-02-26 21:19:45.823101 \N 489.00 \N 0.00 0.00 218 156 476 1.0 99.00 0.00 0.00 99.00 1 2019-02-26 21:22:32.90782 2019-02-26 21:22:32.90782 \N 99.00 \N 0.00 0.00 219 157 268 1.0 1119.83 179.17 0.00 1299.00 1 2019-02-26 23:03:04.609454 2019-02-26 23:03:04.609454 \N 1299.00 \N 0.00 0.00 220 158 476 1.0 99.00 0.00 0.00 99.00 1 2019-02-27 00:26:06.572696 2019-02-27 00:26:06.572696 \N 99.00 \N 0.00 0.00 221 159 420 1.0 723.28 115.72 0.00 839.00 1 2019-02-27 23:49:22.408377 2019-02-27 23:49:22.408377 \N 839.00 \N 0.00 0.00 222 160 476 1.0 99.00 0.00 0.00 99.00 1 2019-02-28 01:39:12.188071 2019-02-28 01:39:12.188071 \N 99.00 \N 0.00 0.00 223 160 138 1.0 775.00 124.00 0.00 899.00 1 2019-02-28 01:39:12.222268 2019-02-28 01:39:12.222268 \N 899.00 \N 0.00 0.00 224 161 178 1.0 516.38 82.62 0.00 599.00 1 2019-02-28 01:44:05.043924 2019-02-28 01:44:05.043924 \N 599.00 \N 0.00 0.00 225 161 88 1.0 430.17 68.83 0.00 499.00 1 2019-02-28 01:44:05.074721 2019-02-28 01:44:05.074721 \N 499.00 \N 0.00 0.00 226 162 268 1.0 1119.83 179.17 0.00 1299.00 0 2019-02-28 17:15:52.270927 2019-02-28 17:16:31.223185 \N 1299.00 \N 0.00 0.00 227 163 268 1.0 1119.83 179.17 0.00 1299.00 0 2019-02-28 17:17:01.179951 2019-02-28 17:17:56.040265 \N 1299.00 \N 0.00 0.00 228 164 154 1.0 421.55 67.45 0.00 489.00 1 2019-02-28 18:01:16.189003 2019-02-28 18:01:16.189003 \N 489.00 \N 0.00 0.00 229 165 270 1.0 1033.62 165.38 0.00 1199.00 1 2019-02-28 20:45:18.199066 2019-02-28 20:45:18.199066 \N 1199.00 \N 0.00 0.00 230 165 51 1.0 1550.86 248.14 0.00 1799.00 1 2019-02-28 20:45:18.264518 2019-02-28 20:45:18.264518 \N 1799.00 \N 0.00 0.00 231 166 151 1.0 412.93 66.07 0.00 479.00 1 2019-03-01 18:26:09.649087 2019-03-01 18:26:09.649087 \N 479.00 \N 0.00 0.00 232 167 330 1.0 430.17 68.83 0.00 499.00 1 2019-03-01 19:47:45.4775 2019-03-01 19:47:45.4775 \N 499.00 \N 0.00 0.00 233 167 455 1.0 399.00 0.00 0.00 399.00 1 2019-03-01 19:47:45.516002 2019-03-01 19:47:45.516002 \N 399.00 \N 0.00 0.00 234 168 334 1.0 861.21 137.79 0.00 999.00 1 2019-03-01 22:11:54.002475 2019-03-01 22:11:54.002475 \N 999.00 \N 0.00 0.00 235 169 133 1.0 430.17 68.83 0.00 499.00 1 2019-03-01 23:36:16.564704 2019-03-01 23:36:16.564704 \N 499.00 \N 0.00 0.00 236 170 140 1.0 559.48 89.52 0.00 649.00 1 2019-03-01 23:43:56.250115 2019-03-01 23:43:56.250115 \N 649.00 \N 0.00 0.00 237 171 367 6.0 1724.14 275.86 100.00 2000.00 1 2019-03-01 23:59:31.102295 2019-03-01 23:59:31.102295 \N 350.00 \N 100.00 0.00 238 171 328 1.0 507.76 81.24 0.00 589.00 1 2019-03-01 23:59:31.135986 2019-03-01 23:59:31.135986 \N 589.00 \N 0.00 0.00 239 171 323 1.0 404.31 64.69 0.00 469.00 1 2019-03-01 23:59:31.16029 2019-03-01 23:59:31.16029 \N 469.00 \N 0.00 0.00 240 171 411 1.0 628.45 100.55 0.00 729.00 1 2019-03-01 23:59:31.184079 2019-03-01 23:59:31.184079 \N 729.00 \N 0.00 0.00 241 171 276 1.0 430.17 68.83 0.00 499.00 1 2019-03-01 23:59:31.207178 2019-03-01 23:59:31.207178 \N 499.00 \N 0.00 0.00 242 172 140 1.0 559.48 89.52 0.00 649.00 1 2019-03-02 00:04:41.562008 2019-03-02 00:04:41.562008 \N 649.00 \N 0.00 0.00 243 172 52 1.0 1464.66 234.35 0.00 1699.01 1 2019-03-02 00:04:41.591222 2019-03-02 00:04:41.591222 \N 1699.00 \N 0.00 0.00 244 173 271 1.0 1119.83 179.17 0.00 1299.00 0 2019-03-02 00:10:53.454192 2019-03-02 00:11:00.470889 \N 1299.00 \N 0.00 0.00 245 174 271 1.0 1119.83 179.17 0.00 1299.00 1 2019-03-02 00:11:47.953023 2019-03-02 00:11:47.953023 \N 1299.00 \N 0.00 0.00 246 175 15 1.0 688.79 110.21 0.00 799.00 0 2019-03-02 00:28:34.263667 2019-03-02 00:28:38.331815 \N 799.00 \N 0.00 0.00 247 176 15 1.0 688.79 110.21 0.00 799.00 0 2019-03-02 00:29:06.35808 2019-03-02 00:29:35.650615 \N 799.00 \N 0.00 0.00 248 177 15 1.0 688.79 110.21 0.00 799.00 1 2019-03-02 00:29:53.524909 2019-03-02 00:29:53.524909 \N 799.00 \N 0.00 0.00 249 178 184 1.0 749.14 119.86 0.00 869.00 1 2019-03-02 00:36:54.054147 2019-03-02 00:36:54.054147 \N 869.00 \N 0.00 0.00 250 178 250 1.0 1033.62 165.38 0.00 1199.00 1 2019-03-02 00:36:54.090487 2019-03-02 00:36:54.090487 \N 1199.00 \N 0.00 0.00 251 179 156 1.0 499.14 79.86 0.00 579.00 0 2019-03-02 00:39:49.919983 2019-03-02 00:40:00.037263 \N 579.00 \N 0.00 0.00 252 179 367 4.0 1120.69 179.31 100.00 1300.00 0 2019-03-02 00:39:49.945448 2019-03-02 00:40:00.059921 \N 350.00 \N 100.00 0.00 253 180 156 1.0 499.14 79.86 0.00 579.00 1 2019-03-02 00:40:47.861362 2019-03-02 00:40:47.861362 \N 579.00 \N 0.00 0.00 254 180 367 4.0 1120.69 179.31 100.00 1300.00 1 2019-03-02 00:40:47.888862 2019-03-02 00:40:47.888862 \N 350.00 \N 100.00 0.00 255 181 493 1.0 3700.00 0.00 0.00 3700.00 0 2019-03-02 00:51:55.545846 2019-03-02 00:52:06.70161 \N 3700.00 \N 0.00 0.00 256 182 493 1.0 3700.00 0.00 0.00 3700.00 1 2019-03-02 00:52:34.243855 2019-03-02 00:52:34.243855 \N 3700.00 \N 0.00 0.00 257 183 476 1.0 99.00 0.00 0.00 99.00 1 2019-03-02 00:59:11.179291 2019-03-02 00:59:11.179291 \N 99.00 \N 0.00 0.00 258 184 256 1.0 688.79 110.21 0.00 799.00 1 2019-03-02 01:48:19.482068 2019-03-02 01:48:19.482068 \N 799.00 \N 0.00 0.00 259 185 254 1.0 818.10 130.90 0.00 949.00 1 2019-03-02 01:51:25.20695 2019-03-02 01:51:25.20695 \N 949.00 \N 0.00 0.00 260 186 389 1.0 775.00 124.00 0.00 899.00 1 2019-03-02 02:11:12.337429 2019-03-02 02:11:12.337429 \N 899.00 \N 0.00 0.00 261 187 133 1.0 430.17 68.83 0.00 499.00 1 2019-03-02 02:14:37.798045 2019-03-02 02:14:37.798045 \N 499.00 \N 0.00 0.00 262 188 277 1.0 490.52 78.48 0.00 569.00 1 2019-03-02 18:47:08.733487 2019-03-02 18:47:08.733487 \N 569.00 \N 0.00 0.00 263 189 424 1.0 749.14 119.86 0.00 869.00 1 2019-03-02 19:03:38.670828 2019-03-02 19:03:38.670828 \N 869.00 \N 0.00 0.00 264 190 476 2.0 198.00 0.00 0.00 198.00 1 2019-03-02 19:37:40.697769 2019-03-02 19:37:40.697769 \N 99.00 \N 0.00 0.00 265 191 151 1.0 412.93 66.07 0.00 479.00 1 2019-03-02 21:35:45.522692 2019-03-02 21:35:45.522692 \N 479.00 \N 0.00 0.00 266 192 393 1.0 775.00 124.00 0.00 899.00 1 2019-03-02 23:09:13.01655 2019-03-02 23:09:13.01655 \N 899.00 \N 0.00 0.00 267 193 148 1.0 404.31 64.69 0.00 469.00 1 2019-03-03 18:33:08.934907 2019-03-03 18:33:08.934907 \N 469.00 \N 0.00 0.00 268 194 332 1.0 533.62 85.38 0.00 619.00 1 2019-03-03 18:53:09.151377 2019-03-03 18:53:09.151377 \N 619.00 \N 0.00 0.00 269 195 326 1.0 430.17 68.83 0.00 499.00 1 2019-03-03 19:07:39.798383 2019-03-03 19:07:39.798383 \N 499.00 \N 0.00 0.00 270 196 199 1.0 645.69 103.31 0.00 749.00 1 2019-03-03 19:13:09.126049 2019-03-03 19:13:09.126049 \N 749.00 \N 0.00 0.00 271 196 153 1.0 430.17 68.83 0.00 499.00 1 2019-03-03 19:13:09.167629 2019-03-03 19:13:09.167629 \N 499.00 \N 0.00 0.00 272 197 332 1.0 533.62 85.38 0.00 619.00 1 2019-03-03 19:17:37.886827 2019-03-03 19:17:37.886827 \N 619.00 \N 0.00 0.00 273 198 387 1.0 1637.07 261.93 0.00 1899.00 1 2019-03-03 19:18:22.32816 2019-03-03 19:18:22.32816 \N 1899.00 \N 0.00 0.00 274 199 141 1.0 490.52 78.48 0.00 569.00 1 2019-03-03 20:58:27.871344 2019-03-03 20:58:27.871344 \N 569.00 \N 0.00 0.00 275 199 143 1.0 516.38 82.62 0.00 599.00 1 2019-03-03 20:58:27.913488 2019-03-03 20:58:27.913488 \N 599.00 \N 0.00 0.00 276 199 179 1.0 602.59 96.41 0.00 699.00 1 2019-03-03 20:58:27.950834 2019-03-03 20:58:27.950834 \N 699.00 \N 0.00 0.00 277 199 178 1.0 516.38 82.62 0.00 599.00 1 2019-03-03 20:58:27.988242 2019-03-03 20:58:27.988242 \N 599.00 \N 0.00 0.00 278 199 213 1.0 602.59 96.41 0.00 699.00 1 2019-03-03 20:58:28.024256 2019-03-03 20:58:28.024256 \N 699.00 \N 0.00 0.00 279 200 181 2.0 1205.17 192.83 0.00 1398.00 0 2019-03-03 21:07:35.420529 2019-03-03 21:07:58.776019 \N 699.00 \N 0.00 0.00 280 200 327 2.0 843.10 134.90 0.00 978.00 0 2019-03-03 21:07:35.462409 2019-03-03 21:07:58.810454 \N 489.00 \N 0.00 0.00 281 200 421 1.0 688.79 110.21 0.00 799.00 0 2019-03-03 21:07:35.486822 2019-03-03 21:07:58.833578 \N 799.00 \N 0.00 0.00 282 201 421 1.0 688.79 110.21 0.00 799.00 1 2019-03-03 21:10:00.897383 2019-03-03 21:10:00.897383 \N 799.00 \N 0.00 0.00 283 201 327 1.0 421.55 67.45 0.00 489.00 1 2019-03-03 21:10:00.932886 2019-03-03 21:10:00.932886 \N 489.00 \N 0.00 0.00 284 201 181 1.0 602.59 96.41 0.00 699.00 1 2019-03-03 21:10:00.966927 2019-03-03 21:10:00.966927 \N 699.00 \N 0.00 0.00 285 202 369 4.0 168.97 27.04 0.00 196.01 1 2019-03-03 21:14:05.111525 2019-03-03 21:14:05.111525 \N 49.00 \N 0.00 0.00 286 203 471 1.0 1399.00 0.00 0.00 1399.00 1 2019-03-04 16:35:47.35541 2019-03-04 16:35:47.35541 \N 1399.00 \N 0.00 0.00 287 204 289 1.0 542.24 86.76 0.00 629.00 1 2019-03-04 22:58:54.402958 2019-03-04 22:58:54.402958 \N 629.00 \N 0.00 0.00 288 205 148 1.0 404.31 64.69 0.00 469.00 1 2019-03-05 00:28:09.725654 2019-03-05 00:28:09.725654 \N 469.00 \N 0.00 0.00 289 205 137 1.0 516.38 82.62 0.00 599.00 1 2019-03-05 00:28:09.786121 2019-03-05 00:28:09.786121 \N 599.00 \N 0.00 0.00 294 206 388 1.0 1637.07 261.93 0.00 1899.00 0 2019-03-05 00:37:05.796195 2019-03-05 00:37:12.602421 \N 1899.00 \N 0.00 0.00 293 206 398 1.0 516.38 82.62 0.00 599.00 0 2019-03-05 00:37:05.761643 2019-03-05 00:37:12.632449 \N 599.00 \N 0.00 0.00 292 206 18 1.0 430.17 68.83 0.00 499.00 0 2019-03-05 00:37:05.728458 2019-03-05 00:37:12.655399 \N 499.00 \N 0.00 0.00 291 206 432 1.0 559.48 89.52 0.00 649.00 0 2019-03-05 00:37:05.694611 2019-03-05 00:37:12.677378 \N 649.00 \N 0.00 0.00 290 206 330 1.0 430.17 68.83 0.00 499.00 0 2019-03-05 00:37:05.644883 2019-03-05 00:37:12.703094 \N 499.00 \N 0.00 0.00 300 208 207 1.0 800.86 128.14 0.00 929.00 1 2019-03-05 00:51:18.422919 2019-03-05 00:51:18.422919 \N 929.00 \N 0.00 0.00 301 208 143 1.0 516.38 82.62 0.00 599.00 1 2019-03-05 00:51:18.45668 2019-03-05 00:51:18.45668 \N 599.00 \N 0.00 0.00 302 208 181 1.0 602.59 96.41 0.00 699.00 1 2019-03-05 00:51:18.495193 2019-03-05 00:51:18.495193 \N 699.00 \N 0.00 0.00 303 209 485 1.0 869.00 0.00 0.00 869.00 1 2019-03-05 01:15:17.785817 2019-03-05 01:15:17.785817 \N 869.00 \N 0.00 0.00 304 210 367 2.0 517.24 82.76 100.00 600.00 1 2019-03-05 01:27:38.831592 2019-03-05 01:27:38.831592 \N 350.00 \N 100.00 0.00 305 211 320 1.0 404.31 64.69 0.00 469.00 1 2019-03-05 01:29:48.019689 2019-03-05 01:29:48.019689 \N 469.00 \N 0.00 0.00 306 211 413 1.0 430.17 68.83 0.00 499.00 1 2019-03-05 01:29:48.055474 2019-03-05 01:29:48.055474 \N 499.00 \N 0.00 0.00 299 207 387 1.0 1637.07 261.93 0.00 1899.00 0 2019-03-05 00:38:34.578386 2019-03-05 01:43:39.829713 \N 1899.00 \N 0.00 0.00 298 207 330 1.0 430.17 68.83 0.00 499.00 0 2019-03-05 00:38:34.554823 2019-03-05 01:43:39.855998 \N 499.00 \N 0.00 0.00 297 207 432 1.0 559.48 89.52 0.00 649.00 0 2019-03-05 00:38:34.531266 2019-03-05 01:43:39.878433 \N 649.00 \N 0.00 0.00 296 207 18 1.0 430.17 68.83 0.00 499.00 0 2019-03-05 00:38:34.503597 2019-03-05 01:43:39.899587 \N 499.00 \N 0.00 0.00 295 207 398 1.0 516.38 82.62 0.00 599.00 0 2019-03-05 00:38:34.47644 2019-03-05 01:43:39.923009 \N 599.00 \N 0.00 0.00 307 212 388 1.0 1637.07 261.93 0.00 1899.00 1 2019-03-05 01:45:42.901736 2019-03-05 01:45:42.901736 \N 1899.00 \N 0.00 0.00 308 212 330 1.0 430.17 68.83 0.00 499.00 1 2019-03-05 01:45:42.928518 2019-03-05 01:45:42.928518 \N 499.00 \N 0.00 0.00 309 212 432 1.0 559.48 89.52 0.00 649.00 1 2019-03-05 01:45:42.958386 2019-03-05 01:45:42.958386 \N 649.00 \N 0.00 0.00 310 212 18 1.0 430.17 68.83 0.00 499.00 1 2019-03-05 01:45:42.981139 2019-03-05 01:45:42.981139 \N 499.00 \N 0.00 0.00 311 212 398 1.0 516.38 82.62 0.00 599.00 1 2019-03-05 01:45:43.005495 2019-03-05 01:45:43.005495 \N 599.00 \N 0.00 0.00 312 213 415 2.0 2153.45 344.55 0.00 2498.00 0 2019-03-05 02:10:43.89505 2019-03-05 02:11:14.150709 \N 1249.00 \N 0.00 0.00 313 214 415 2.0 2153.45 344.55 0.00 2498.00 1 2019-03-05 02:11:32.468908 2019-03-05 02:11:32.468908 \N 1249.00 \N 0.00 0.00 314 215 153 1.0 430.17 68.83 0.00 499.00 1 2019-03-05 19:09:47.011525 2019-03-05 19:09:47.011525 \N 499.00 \N 0.00 0.00 315 215 199 1.0 645.69 103.31 0.00 749.00 1 2019-03-05 19:09:47.065637 2019-03-05 19:09:47.065637 \N 749.00 \N 0.00 0.00 316 216 137 1.0 516.38 82.62 0.00 599.00 1 2019-03-05 21:27:58.173805 2019-03-05 21:27:58.173805 \N 599.00 \N 0.00 0.00 318 217 138 1.0 775.00 124.00 0.00 899.00 0 2019-03-06 19:21:17.920835 2019-03-06 19:22:25.199965 \N 899.00 \N 0.00 0.00 317 217 162 1.0 818.10 130.90 0.00 949.00 0 2019-03-06 19:21:17.889606 2019-03-06 19:22:25.234391 \N 949.00 \N 0.00 0.00 319 218 78 1.0 512.93 82.07 0.00 595.00 1 2019-03-06 22:10:27.989072 2019-03-06 22:10:27.989072 \N 595.00 \N 0.00 0.00 320 219 135 1.0 404.31 64.69 0.00 469.00 1 2019-03-07 00:18:02.831691 2019-03-07 00:18:02.831691 \N 469.00 \N 0.00 0.00 321 220 199 1.0 645.69 103.31 0.00 749.00 1 2019-03-07 00:45:41.006151 2019-03-07 00:45:41.006151 \N 749.00 \N 0.00 0.00 322 221 421 1.0 688.79 110.21 0.00 799.00 1 2019-03-07 01:43:55.998075 2019-03-07 01:43:55.998075 \N 799.00 \N 0.00 0.00 323 222 136 1.0 421.55 67.45 0.00 489.00 1 2019-03-07 01:45:10.149779 2019-03-07 01:45:10.149779 \N 489.00 \N 0.00 0.00 324 223 251 1.0 1206.03 192.96 0.00 1398.99 1 2019-03-07 01:47:18.292846 2019-03-07 01:47:18.292846 \N 1399.00 \N 0.00 0.00 325 224 254 1.0 818.10 130.90 0.00 949.00 1 2019-03-07 01:52:36.166755 2019-03-07 01:52:36.166755 \N 949.00 \N 0.00 0.00 326 225 138 1.0 775.00 124.00 0.00 899.00 1 2019-03-07 21:59:43.192805 2019-03-07 21:59:43.192805 \N 899.00 \N 0.00 0.00 327 226 253 1.0 775.00 124.00 0.00 899.00 1 2019-03-08 00:27:56.86487 2019-03-08 00:27:56.86487 \N 899.00 \N 0.00 0.00 328 227 151 1.0 412.93 66.07 0.00 479.00 1 2019-03-09 00:46:52.404485 2019-03-09 00:46:52.404485 \N 479.00 \N 0.00 0.00 329 228 88 1.0 430.17 68.83 0.00 499.00 1 2019-03-09 00:49:06.016765 2019-03-09 00:49:06.016765 \N 499.00 \N 0.00 0.00 330 229 494 1.0 899.00 0.00 0.00 899.00 1 2019-03-09 01:03:57.343971 2019-03-09 01:03:57.343971 \N 899.00 \N 0.00 0.00 331 229 253 1.0 775.00 124.00 0.00 899.00 1 2019-03-09 01:03:57.381856 2019-03-09 01:03:57.381856 \N 899.00 \N 0.00 0.00 332 230 135 1.0 404.31 64.69 0.00 469.00 1 2019-03-09 20:42:01.045691 2019-03-09 20:42:01.045691 \N 469.00 \N 0.00 0.00 333 231 328 1.0 507.76 81.24 0.00 589.00 1 2019-03-09 20:50:00.576786 2019-03-09 20:50:00.576786 \N 589.00 \N 0.00 0.00 334 232 418 1.0 775.00 124.00 0.00 899.00 0 2019-03-09 21:27:08.730051 2019-03-09 21:29:04.301452 \N 899.00 \N 0.00 0.00 335 233 213 1.0 602.59 96.41 0.00 699.00 1 2019-03-09 21:37:19.16738 2019-03-09 21:37:19.16738 \N 699.00 \N 0.00 0.00 336 234 331 1.0 706.03 112.96 0.00 818.99 1 2019-03-09 22:13:11.392146 2019-03-09 22:13:11.392146 \N 819.00 \N 0.00 0.00 337 235 135 1.0 404.31 64.69 0.00 469.00 1 2019-03-09 22:48:55.630561 2019-03-09 22:48:55.630561 \N 469.00 \N 0.00 0.00 338 236 202 1.0 430.17 68.83 0.00 499.00 1 2019-03-09 23:32:27.400026 2019-03-09 23:32:27.400026 \N 499.00 \N 0.00 0.00 339 237 245 1.0 645.69 103.31 0.00 749.00 1 2019-03-10 00:28:59.816541 2019-03-10 00:28:59.816541 \N 749.00 \N 0.00 0.00 340 238 202 1.0 430.17 68.83 0.00 499.00 1 2019-03-10 01:00:16.479132 2019-03-10 01:00:16.479132 \N 499.00 \N 0.00 0.00 341 239 369 1.0 42.24 6.76 0.00 49.00 1 2019-03-10 01:03:50.671951 2019-03-10 01:03:50.671951 \N 49.00 \N 0.00 0.00 342 240 257 1.0 688.79 110.21 0.00 799.00 1 2019-03-10 01:08:38.806375 2019-03-10 01:08:38.806375 \N 799.00 \N 0.00 0.00 343 241 61 1.0 343.97 55.04 0.00 399.01 1 2019-03-10 01:31:15.291652 2019-03-10 01:31:15.291652 \N 399.00 \N 0.00 0.00 344 241 203 1.0 602.59 96.41 0.00 699.00 1 2019-03-10 01:31:15.32719 2019-03-10 01:31:15.32719 \N 699.00 \N 0.00 0.00 345 242 254 1.0 818.10 130.90 0.00 949.00 1 2019-03-10 01:47:27.690362 2019-03-10 01:47:27.690362 \N 949.00 \N 0.00 0.00 346 243 57 1.0 1809.48 289.52 0.00 2099.00 1 2019-03-10 17:31:53.452012 2019-03-10 17:31:53.452012 \N 2099.00 \N 0.00 0.00 347 244 75 1.0 430.17 68.83 0.00 499.00 1 2019-03-10 21:15:44.82659 2019-03-10 21:15:44.82659 \N 499.00 \N 0.00 0.00 348 245 369 1.0 42.24 6.76 0.00 49.00 1 2019-03-11 20:03:30.001793 2019-03-11 20:03:30.001793 \N 49.00 \N 0.00 0.00 349 246 495 1.0 1188.00 0.00 511.00 1188.00 1 2019-03-11 21:13:20.756067 2019-03-11 21:13:20.756067 \N 1699.00 \N 511.00 0.00 350 247 332 1.0 533.62 85.38 0.00 619.00 1 2019-03-13 19:55:15.710703 2019-03-13 19:55:15.710703 \N 619.00 \N 0.00 0.00 351 247 421 1.0 688.79 110.21 0.00 799.00 1 2019-03-13 19:55:15.754036 2019-03-13 19:55:15.754036 \N 799.00 \N 0.00 0.00 352 248 491 1.0 999.00 0.00 0.00 999.00 1 2019-03-13 21:10:46.827187 2019-03-13 21:10:46.827187 \N 999.00 \N 0.00 0.00 353 249 421 1.0 688.79 110.21 0.00 799.00 1 2019-03-13 22:19:44.223164 2019-03-13 22:19:44.223164 \N 799.00 \N 0.00 0.00 354 249 327 1.0 421.55 67.45 0.00 489.00 1 2019-03-13 22:19:44.263198 2019-03-13 22:19:44.263198 \N 489.00 \N 0.00 0.00 355 250 137 2.0 1032.76 165.24 0.00 1198.00 0 2019-03-14 20:09:00.14194 2019-03-14 20:09:08.313485 \N 599.00 \N 0.00 0.00 356 251 137 1.0 516.38 82.62 0.00 599.00 1 2019-03-14 20:09:22.26765 2019-03-14 20:09:22.26765 \N 599.00 \N 0.00 0.00 357 252 475 1.0 889.00 0.00 0.00 889.00 1 2019-03-14 20:47:57.222041 2019-03-14 20:47:57.222041 \N 889.00 \N 0.00 0.00 358 253 367 2.0 517.24 82.76 100.00 600.00 1 2019-03-15 00:31:52.536087 2019-03-15 00:31:52.536087 \N 350.00 \N 100.00 0.00 359 254 337 1.0 775.00 124.00 0.00 899.00 1 2019-03-15 00:33:10.73607 2019-03-15 00:33:10.73607 \N 899.00 \N 0.00 0.00 360 255 137 1.0 516.38 82.62 0.00 599.00 1 2019-03-15 00:58:28.92979 2019-03-15 00:58:28.92979 \N 599.00 \N 0.00 0.00 361 256 253 1.0 775.00 124.00 0.00 899.00 1 2019-03-15 18:26:10.450915 2019-03-15 18:26:10.450915 \N 899.00 \N 0.00 0.00 362 257 152 1.0 576.72 92.28 0.00 669.00 1 2019-03-15 18:51:55.942992 2019-03-15 18:51:55.942992 \N 669.00 \N 0.00 0.00 363 258 260 1.0 1206.03 192.96 0.00 1398.99 1 2019-03-15 19:13:02.989637 2019-03-15 19:13:02.989637 \N 1399.00 \N 0.00 0.00 364 258 171 1.0 1119.83 179.17 0.00 1299.00 1 2019-03-15 19:13:03.015634 2019-03-15 19:13:03.015634 \N 1299.00 \N 0.00 0.00 365 259 199 1.0 645.69 103.31 0.00 749.00 1 2019-03-15 20:11:40.38942 2019-03-15 20:11:40.38942 \N 749.00 \N 0.00 0.00 366 260 183 1.0 904.31 144.69 0.00 1049.00 1 2019-03-15 20:29:54.682391 2019-03-15 20:29:54.682391 \N 1049.00 \N 0.00 0.00 367 261 475 1.0 889.00 0.00 0.00 889.00 1 2019-03-15 20:58:09.662071 2019-03-15 20:58:09.662071 \N 889.00 \N 0.00 0.00 368 262 135 2.0 808.62 129.38 0.00 938.00 1 2019-03-16 00:19:19.868943 2019-03-16 00:19:19.868943 \N 469.00 \N 0.00 0.00 369 263 397 1.0 593.97 95.04 0.00 689.01 1 2019-03-16 02:05:24.828971 2019-03-16 02:05:24.828971 \N 689.00 \N 0.00 0.00 370 263 257 1.0 688.79 110.21 0.00 799.00 1 2019-03-16 02:05:24.858878 2019-03-16 02:05:24.858878 \N 799.00 \N 0.00 0.00 371 263 485 1.0 869.00 0.00 0.00 869.00 1 2019-03-16 02:05:24.887969 2019-03-16 02:05:24.887969 \N 869.00 \N 0.00 0.00 372 264 341 1.0 171.55 27.45 0.00 199.00 1 2019-03-16 18:52:44.859724 2019-03-16 18:52:44.859724 \N 199.00 \N 0.00 0.00 373 265 387 1.0 1637.07 261.93 0.00 1899.00 1 2019-03-16 18:54:45.064679 2019-03-16 18:54:45.064679 \N 1899.00 \N 0.00 0.00 374 266 421 1.0 688.79 110.21 0.00 799.00 1 2019-03-16 20:28:54.265086 2019-03-16 20:28:54.265086 \N 799.00 \N 0.00 0.00 375 267 148 1.0 404.31 64.69 0.00 469.00 1 2019-03-16 21:48:35.574124 2019-03-16 21:48:35.574124 \N 469.00 \N 0.00 0.00 376 268 183 1.0 904.31 144.69 0.00 1049.00 1 2019-03-16 22:06:01.442498 2019-03-16 22:06:01.442498 \N 1049.00 \N 0.00 0.00 377 269 136 1.0 421.55 67.45 0.00 489.00 1 2019-03-17 21:19:28.306973 2019-03-17 21:19:28.306973 \N 489.00 \N 0.00 0.00 378 270 302 1.0 568.10 90.90 0.00 659.00 1 2019-03-20 00:41:21.41172 2019-03-20 00:41:21.41172 \N 659.00 \N 0.00 0.00 379 271 232 1.0 1292.24 206.76 0.00 1499.00 1 2019-03-20 01:59:48.250653 2019-03-20 01:59:48.250653 \N 1499.00 \N 0.00 0.00 380 272 142 1.0 590.52 94.48 0.00 685.00 1 2019-03-21 00:20:15.58735 2019-03-21 00:20:15.58735 \N 685.00 \N 0.00 0.00 381 273 18 2.0 860.34 137.65 0.00 997.99 1 2019-03-21 00:29:39.505464 2019-03-21 00:29:39.505464 \N 499.00 \N 0.00 0.00 382 274 150 1.0 404.31 64.69 0.00 469.00 1 2019-03-21 01:37:03.572822 2019-03-21 01:37:03.572822 \N 469.00 \N 0.00 0.00 383 275 140 1.0 559.48 89.52 0.00 649.00 1 2019-03-21 23:54:37.734275 2019-03-21 23:54:37.734275 \N 649.00 \N 0.00 0.00 384 276 406 1.0 430.17 68.83 0.00 499.00 1 2019-03-22 01:25:33.65858 2019-03-22 01:25:33.65858 \N 499.00 \N 0.00 0.00 385 277 327 1.0 421.55 67.45 0.00 489.00 1 2019-03-22 18:21:50.283975 2019-03-22 18:21:50.283975 \N 489.00 \N 0.00 0.00 386 277 422 1.0 602.59 96.41 0.00 699.00 1 2019-03-22 18:21:50.338176 2019-03-22 18:21:50.338176 \N 699.00 \N 0.00 0.00 387 278 496 1.0 669.00 0.00 0.00 669.00 1 2019-03-22 19:33:11.673041 2019-03-22 19:33:11.673041 \N 669.00 \N 0.00 0.00 388 278 143 1.0 516.38 82.62 0.00 599.00 1 2019-03-22 19:33:11.718975 2019-03-22 19:33:11.718975 \N 599.00 \N 0.00 0.00 389 279 147 1.0 404.31 64.69 0.00 469.00 1 2019-03-22 19:35:16.923845 2019-03-22 19:35:16.923845 \N 469.00 \N 0.00 0.00 390 280 237 1.0 775.00 124.00 0.00 899.00 1 2019-03-22 19:48:49.36114 2019-03-22 19:48:49.36114 \N 899.00 \N 0.00 0.00 391 281 287 1.0 688.79 110.21 0.00 799.00 1 2019-03-23 18:07:13.470233 2019-03-23 18:07:13.470233 \N 799.00 \N 0.00 0.00 392 282 416 1.0 844.83 135.17 0.00 980.00 0 2019-03-23 20:55:34.57736 2019-03-23 21:00:42.180986 \N 980.00 \N 0.00 0.00 393 283 418 1.0 775.00 124.00 0.00 899.00 1 2019-03-23 21:01:29.522409 2019-03-23 21:01:29.522409 \N 899.00 \N 0.00 0.00 394 284 322 1.0 421.55 67.45 0.00 489.00 1 2019-03-23 22:20:48.04291 2019-03-23 22:20:48.04291 \N 489.00 \N 0.00 0.00 395 285 285 1.0 516.38 82.62 0.00 599.00 1 2019-03-24 00:18:49.117302 2019-03-24 00:18:49.117302 \N 599.00 \N 0.00 0.00 396 286 139 1.0 775.00 124.00 0.00 899.00 1 2019-03-24 18:04:13.97081 2019-03-24 18:04:13.97081 \N 899.00 \N 0.00 0.00 397 286 476 1.0 99.00 0.00 0.00 99.00 1 2019-03-24 18:04:14.025128 2019-03-24 18:04:14.025128 \N 99.00 \N 0.00 0.00 398 287 194 1.0 1034.48 165.52 0.00 1200.00 0 2019-03-24 18:49:24.409162 2019-03-24 18:49:39.645988 \N 1200.00 \N 0.00 0.00 399 288 194 1.0 1034.48 165.52 0.00 1200.00 0 2019-03-24 18:50:16.949687 2019-03-24 18:50:45.049894 \N 1200.00 \N 0.00 0.00 400 289 194 1.0 1034.48 165.52 0.00 1200.00 0 2019-03-24 18:55:15.858449 2019-03-24 18:58:08.010821 \N 1200.00 \N 0.00 0.00 401 290 194 1.0 1034.48 165.52 0.00 1200.00 0 2019-03-24 18:59:38.191411 2019-03-24 18:59:47.626391 \N 1200.00 \N 0.00 0.00 403 292 167 1.0 861.21 137.79 0.00 999.00 1 2019-03-24 20:46:04.598692 2019-03-24 20:46:04.598692 \N 999.00 \N 0.00 0.00 404 293 140 1.0 559.48 89.52 0.00 649.00 1 2019-03-25 17:45:02.379483 2019-03-25 17:45:02.379483 \N 649.00 \N 0.00 0.00 405 293 250 1.0 1033.62 165.38 0.00 1199.00 1 2019-03-25 17:45:02.422763 2019-03-25 17:45:02.422763 \N 1199.00 \N 0.00 0.00 406 294 517 1.0 599.00 0.00 0.00 599.00 1 2019-03-25 17:55:56.673408 2019-03-25 17:55:56.673408 \N 599.00 \N 0.00 0.00 407 295 139 1.0 775.00 124.00 0.00 899.00 1 2019-03-25 18:51:15.982755 2019-03-25 18:51:15.982755 \N 899.00 \N 0.00 0.00 409 297 325 1.0 421.55 67.45 0.00 489.00 1 2019-03-26 20:48:35.799022 2019-03-26 20:48:35.799022 \N 489.00 \N 0.00 0.00 410 297 202 1.0 430.17 68.83 0.00 499.00 1 2019-03-26 20:48:35.841954 2019-03-26 20:48:35.841954 \N 499.00 \N 0.00 0.00 411 298 499 1.0 699.00 0.00 0.00 699.00 1 2019-03-27 19:52:01.595165 2019-03-27 19:52:01.595165 \N 699.00 \N 0.00 0.00 412 299 424 1.0 749.14 119.86 0.00 869.00 1 2019-03-27 20:55:49.698348 2019-03-27 20:55:49.698348 \N 869.00 \N 0.00 0.00 413 300 200 1.0 456.03 72.96 0.00 528.99 1 2019-03-28 01:40:15.405584 2019-03-28 01:40:15.405584 \N 529.00 \N 0.00 0.00 414 301 150 1.0 404.31 64.69 0.00 469.00 1 2019-03-28 22:30:03.092489 2019-03-28 22:30:03.092489 \N 469.00 \N 0.00 0.00 415 302 143 1.0 516.38 82.62 0.00 599.00 1 2019-03-28 22:52:32.753388 2019-03-28 22:52:32.753388 \N 599.00 \N 0.00 0.00 416 303 470 1.0 1399.00 0.00 0.00 1399.00 1 2019-03-28 22:53:48.112621 2019-03-28 22:53:48.112621 \N 1399.00 \N 0.00 0.00 417 304 530 1.0 1050.00 0.00 449.00 1050.00 0 2019-03-28 23:04:09.890591 2019-03-28 23:04:33.896123 \N 1499.00 \N 449.00 0.00 418 305 530 1.0 1050.00 0.00 449.00 1050.00 0 2019-03-28 23:05:42.982516 2019-03-28 23:06:50.953943 \N 1499.00 \N 449.00 0.00 419 306 497 1.0 799.00 0.00 0.00 799.00 1 2019-03-29 18:02:27.491695 2019-03-29 18:02:27.491695 \N 799.00 \N 0.00 0.00 420 307 156 1.0 499.14 79.86 0.00 579.00 1 2019-03-29 20:09:39.447895 2019-03-29 20:09:39.447895 \N 579.00 \N 0.00 0.00 422 309 268 1.0 1119.83 179.17 0.00 1299.00 1 2019-03-30 18:10:21.417036 2019-03-30 18:10:21.417036 \N 1299.00 \N 0.00 0.00 423 310 499 1.0 699.00 0.00 0.00 699.00 1 2019-03-30 20:53:55.559388 2019-03-30 20:53:55.559388 \N 699.00 \N 0.00 0.00 424 311 422 1.0 602.59 96.41 0.00 699.00 1 2019-03-30 23:18:10.798954 2019-03-30 23:18:10.798954 \N 699.00 \N 0.00 0.00 408 296 457 1.0 399.00 0.00 0.00 399.00 0 2019-03-25 20:03:15.824968 2019-05-14 00:27:02.339804 \N 399.00 \N 0.00 0.00 421 308 413 1.0 430.17 68.83 0.00 499.00 0 2019-03-29 21:18:31.352078 2019-05-14 00:27:11.942073 \N 499.00 \N 0.00 0.00 425 312 389 1.0 775.00 124.00 0.00 899.00 1 2019-03-30 23:20:20.184136 2019-03-30 23:20:20.184136 \N 899.00 \N 0.00 0.00 426 313 500 1.0 699.00 0.00 0.00 699.00 1 2019-03-31 00:29:14.842574 2019-03-31 00:29:14.842574 \N 699.00 \N 0.00 0.00 427 314 255 1.0 775.00 124.00 0.00 899.00 1 2019-03-31 01:19:49.198604 2019-03-31 01:19:49.198604 \N 899.00 \N 0.00 0.00 428 314 202 1.0 430.17 68.83 0.00 499.00 1 2019-03-31 01:19:49.256944 2019-03-31 01:19:49.256944 \N 499.00 \N 0.00 0.00 429 315 479 1.0 675.00 0.00 0.00 675.00 1 2019-03-31 19:14:29.242429 2019-03-31 19:14:29.242429 \N 675.00 \N 0.00 0.00 430 315 421 1.0 688.79 110.21 0.00 799.00 1 2019-03-31 19:14:29.27927 2019-03-31 19:14:29.27927 \N 799.00 \N 0.00 0.00 431 316 453 1.0 1099.00 0.00 0.00 1099.00 1 2019-03-31 19:37:06.200852 2019-03-31 19:37:06.200852 \N 1099.00 \N 0.00 0.00 432 317 250 1.0 1033.62 165.38 0.00 1199.00 1 2019-04-01 18:58:47.928221 2019-04-01 18:58:47.928221 \N 1199.00 \N 0.00 0.00 433 318 327 1.0 421.55 67.45 0.00 489.00 1 2019-04-01 19:55:52.174307 2019-04-01 19:55:52.174307 \N 489.00 \N 0.00 0.00 434 318 162 1.0 818.10 130.90 0.00 949.00 1 2019-04-01 19:55:52.209672 2019-04-01 19:55:52.209672 \N 949.00 \N 0.00 0.00 435 319 146 1.0 404.31 64.69 0.00 469.00 1 2019-04-01 20:09:45.425758 2019-04-01 20:09:45.425758 \N 469.00 \N 0.00 0.00 436 319 476 1.0 99.00 0.00 0.00 99.00 1 2019-04-01 20:09:45.480377 2019-04-01 20:09:45.480377 \N 99.00 \N 0.00 0.00 437 320 497 1.0 799.00 0.00 0.00 799.00 1 2019-04-02 17:39:34.929324 2019-04-02 17:39:34.929324 \N 799.00 \N 0.00 0.00 438 321 497 1.0 799.00 0.00 0.00 799.00 1 2019-04-02 18:05:25.17838 2019-04-02 18:05:25.17838 \N 799.00 \N 0.00 0.00 439 322 133 1.0 430.17 68.83 0.00 499.00 0 2019-04-02 23:40:56.995567 2019-04-02 23:41:25.351117 \N 499.00 \N 0.00 0.00 440 323 133 1.0 430.17 68.83 0.00 499.00 0 2019-04-02 23:42:02.363246 2019-04-02 23:42:19.486167 \N 499.00 \N 0.00 0.00 441 324 477 1.0 1399.00 0.00 0.00 1399.00 1 2019-04-03 17:41:02.160771 2019-04-03 17:41:02.160771 \N 1399.00 \N 0.00 0.00 442 325 91 1.0 516.38 82.62 0.00 599.00 1 2019-04-03 23:20:32.21353 2019-04-03 23:20:32.21353 \N 599.00 \N 0.00 0.00 443 326 521 1.0 499.00 0.00 0.00 499.00 1 2019-04-04 01:57:10.447256 2019-04-04 01:57:10.447256 \N 499.00 \N 0.00 0.00 444 326 202 1.0 430.17 68.83 0.00 499.00 1 2019-04-04 01:57:10.478209 2019-04-04 01:57:10.478209 \N 499.00 \N 0.00 0.00 445 327 526 1.0 999.00 0.00 0.00 999.00 1 2019-04-04 17:21:49.50109 2019-04-04 17:21:49.50109 \N 999.00 \N 0.00 0.00 446 328 397 1.0 593.97 95.04 0.00 689.01 1 2019-04-04 19:48:26.843022 2019-04-04 19:48:26.843022 \N 689.00 \N 0.00 0.00 447 329 516 1.0 999.00 0.00 0.00 999.00 1 2019-04-04 21:31:07.926207 2019-04-04 21:31:07.926207 \N 999.00 \N 0.00 0.00 448 330 250 1.0 1033.62 165.38 0.00 1199.00 1 2019-04-04 21:58:10.917661 2019-04-04 21:58:10.917661 \N 1199.00 \N 0.00 0.00 449 330 251 1.0 1206.03 192.96 0.00 1398.99 1 2019-04-04 21:58:10.963717 2019-04-04 21:58:10.963717 \N 1399.00 \N 0.00 0.00 450 331 332 2.0 1067.24 170.76 0.00 1238.00 0 2019-04-04 22:48:29.285688 2019-04-04 22:48:33.747676 \N 619.00 \N 0.00 0.00 451 332 332 1.0 533.62 85.38 0.00 619.00 1 2019-04-04 22:48:44.733587 2019-04-04 22:48:44.733587 \N 619.00 \N 0.00 0.00 452 333 249 1.0 507.76 81.24 0.00 589.00 1 2019-04-05 01:46:34.92474 2019-04-05 01:46:34.92474 \N 589.00 \N 0.00 0.00 453 334 435 1.0 568.10 90.90 0.00 659.00 1 2019-04-05 17:24:12.332859 2019-04-05 17:24:12.332859 \N 659.00 \N 0.00 0.00 458 337 527 1.0 749.00 0.00 0.00 749.00 1 2019-04-05 19:37:11.708414 2019-04-05 19:37:11.708414 \N 749.00 \N 0.00 0.00 459 337 433 1.0 861.21 137.79 0.00 999.00 1 2019-04-05 19:37:11.739913 2019-04-05 19:37:11.739913 \N 999.00 \N 0.00 0.00 460 338 44 1.0 1464.66 234.35 0.00 1699.01 1 2019-04-05 21:45:38.171564 2019-04-05 21:45:38.171564 \N 1699.00 \N 0.00 0.00 461 339 389 1.0 775.00 124.00 0.00 899.00 1 2019-04-05 21:54:44.757083 2019-04-05 21:54:44.757083 \N 899.00 \N 0.00 0.00 455 335 527 1.0 749.00 0.00 0.00 749.00 0 2019-04-05 19:33:18.560411 2019-04-05 22:50:14.081848 \N 749.00 \N 0.00 0.00 454 335 433 1.0 861.21 137.79 0.00 999.00 0 2019-04-05 19:33:18.524913 2019-04-05 22:50:14.12949 \N 999.00 \N 0.00 0.00 457 336 433 1.0 861.21 137.79 0.00 999.00 0 2019-04-05 19:35:12.354911 2019-04-05 22:50:19.947214 \N 999.00 \N 0.00 0.00 456 336 527 1.0 749.00 0.00 0.00 749.00 0 2019-04-05 19:35:12.324041 2019-04-05 22:50:19.972243 \N 749.00 \N 0.00 0.00 462 340 202 1.0 430.17 68.83 0.00 499.00 1 2019-04-05 23:46:45.284 2019-04-05 23:46:45.284 \N 499.00 \N 0.00 0.00 463 341 318 1.0 404.31 64.69 0.00 469.00 1 2019-04-05 23:54:59.316089 2019-04-05 23:54:59.316089 \N 469.00 \N 0.00 0.00 464 342 257 1.0 688.79 110.21 0.00 799.00 1 2019-04-06 20:37:14.908812 2019-04-06 20:37:14.908812 \N 799.00 \N 0.00 0.00 465 343 499 1.0 699.00 0.00 0.00 699.00 1 2019-04-06 21:16:48.924239 2019-04-06 21:16:48.924239 \N 699.00 \N 0.00 0.00 466 343 158 1.0 602.59 96.41 0.00 699.00 1 2019-04-06 21:16:48.962461 2019-04-06 21:16:48.962461 \N 699.00 \N 0.00 0.00 467 344 499 1.0 699.00 0.00 0.00 699.00 0 2019-04-06 22:26:41.978354 2019-04-06 22:28:16.785383 \N 699.00 \N 0.00 0.00 469 345 499 2.0 1398.00 0.00 0.00 1398.00 0 2019-04-06 22:37:18.131309 2019-04-06 22:38:37.696047 \N 699.00 \N 0.00 0.00 468 345 140 1.0 559.48 89.52 0.00 649.00 0 2019-04-06 22:37:18.099104 2019-04-06 22:38:37.722299 \N 649.00 \N 0.00 0.00 470 346 497 1.0 799.00 0.00 0.00 799.00 1 2019-04-06 22:40:13.957588 2019-04-06 22:40:13.957588 \N 799.00 \N 0.00 0.00 471 346 499 2.0 1398.00 0.00 0.00 1398.00 1 2019-04-06 22:40:13.986167 2019-04-06 22:40:13.986167 \N 699.00 \N 0.00 0.00 472 346 140 1.0 559.48 89.52 0.00 649.00 1 2019-04-06 22:40:14.008199 2019-04-06 22:40:14.008199 \N 649.00 \N 0.00 0.00 473 347 140 1.0 559.48 89.52 0.00 649.00 1 2019-04-06 23:38:39.264236 2019-04-06 23:38:39.264236 \N 649.00 \N 0.00 0.00 474 348 523 1.0 599.00 0.00 0.00 599.00 1 2019-04-07 16:59:04.37449 2019-04-07 16:59:04.37449 \N 599.00 \N 0.00 0.00 475 349 151 1.0 412.93 66.07 0.00 479.00 1 2019-04-07 19:08:38.427789 2019-04-07 19:08:38.427789 \N 479.00 \N 0.00 0.00 476 350 109 1.0 568.10 90.90 0.00 659.00 1 2019-04-08 15:55:09.792244 2019-04-08 15:55:09.792244 \N 659.00 \N 0.00 0.00 477 351 258 1.0 1033.62 165.38 0.00 1199.00 1 2019-04-09 18:27:20.154571 2019-04-09 18:27:20.154571 \N 1199.00 \N 0.00 0.00 478 352 185 1.0 904.31 144.69 0.00 1049.00 1 2019-04-10 16:11:15.730468 2019-04-10 16:11:15.730468 \N 1049.00 \N 0.00 0.00 479 353 528 1.0 699.00 0.00 0.00 699.00 1 2019-04-10 16:13:43.944843 2019-04-10 16:13:43.944843 \N 699.00 \N 0.00 0.00 480 354 156 1.0 499.14 79.86 0.00 579.00 1 2019-04-10 19:06:37.849274 2019-04-10 19:06:37.849274 \N 579.00 \N 0.00 0.00 481 355 324 1.0 404.31 64.69 0.00 469.00 1 2019-04-10 22:51:29.436836 2019-04-10 22:51:29.436836 \N 469.00 \N 0.00 0.00 482 355 469 1.0 1199.00 0.00 0.00 1199.00 1 2019-04-10 22:51:29.480696 2019-04-10 22:51:29.480696 \N 1199.00 \N 0.00 0.00 483 356 526 1.0 999.00 0.00 0.00 999.00 1 2019-04-10 22:59:34.861288 2019-04-10 22:59:34.861288 \N 999.00 \N 0.00 0.00 484 357 514 1.0 479.00 0.00 0.00 479.00 1 2019-04-11 00:13:16.78322 2019-04-11 00:13:16.78322 \N 479.00 \N 0.00 0.00 485 358 398 1.0 516.38 82.62 0.00 599.00 1 2019-04-11 01:37:32.00334 2019-04-11 01:37:32.00334 \N 599.00 \N 0.00 0.00 486 359 158 1.0 602.59 96.41 0.00 699.00 1 2019-04-11 17:32:10.571915 2019-04-11 17:32:10.571915 \N 699.00 \N 0.00 0.00 487 360 398 1.0 516.38 82.62 0.00 599.00 1 2019-04-11 22:05:12.201084 2019-04-11 22:05:12.201084 \N 599.00 \N 0.00 0.00 488 361 418 1.0 775.00 124.00 0.00 899.00 1 2019-04-12 00:21:56.305799 2019-04-12 00:21:56.305799 \N 899.00 \N 0.00 0.00 489 362 358 1.0 1292.24 206.76 0.00 1499.00 0 2019-04-12 01:22:31.331439 2019-04-12 01:22:41.028838 \N 1499.00 \N 0.00 0.00 490 363 159 1.0 473.28 75.72 0.00 549.00 1 2019-04-12 16:35:39.678929 2019-04-12 16:35:39.678929 \N 549.00 \N 0.00 0.00 491 364 140 1.0 559.48 89.52 0.00 649.00 1 2019-04-12 17:50:17.17077 2019-04-12 17:50:17.17077 \N 649.00 \N 0.00 0.00 492 364 202 1.0 430.17 68.83 0.00 499.00 1 2019-04-12 17:50:17.200478 2019-04-12 17:50:17.200478 \N 499.00 \N 0.00 0.00 493 365 523 1.0 599.00 0.00 0.00 599.00 1 2019-04-12 18:05:25.16011 2019-04-12 18:05:25.16011 \N 599.00 \N 0.00 0.00 494 366 202 1.0 430.17 68.83 0.00 499.00 1 2019-04-13 00:39:52.012416 2019-04-13 00:39:52.012416 \N 499.00 \N 0.00 0.00 495 366 467 1.0 799.00 0.00 0.00 799.00 1 2019-04-13 00:39:52.056834 2019-04-13 00:39:52.056834 \N 799.00 \N 0.00 0.00 496 367 515 1.0 899.00 0.00 0.00 899.00 1 2019-04-13 00:42:28.393441 2019-04-13 00:42:28.393441 \N 899.00 \N 0.00 0.00 497 368 514 1.0 479.00 0.00 0.00 479.00 1 2019-04-13 00:50:30.190229 2019-04-13 00:50:30.190229 \N 479.00 \N 0.00 0.00 498 369 268 1.0 1119.83 179.17 0.00 1299.00 1 2019-04-13 17:20:28.147937 2019-04-13 17:20:28.147937 \N 1299.00 \N 0.00 0.00 499 370 89 1.0 413.79 66.21 119.00 480.00 1 2019-04-13 21:49:34.079789 2019-04-13 21:49:34.079789 \N 599.00 \N 119.00 0.00 500 371 526 1.0 999.00 0.00 0.00 999.00 1 2019-04-13 23:40:46.47087 2019-04-13 23:40:46.47087 \N 999.00 \N 0.00 0.00 501 372 418 1.0 775.00 124.00 0.00 899.00 0 2019-04-14 18:56:21.636915 2019-04-14 18:56:35.785632 \N 899.00 \N 0.00 0.00 502 373 418 1.0 775.00 124.00 0.00 899.00 1 2019-04-14 18:59:41.676443 2019-04-14 18:59:41.676443 \N 899.00 \N 0.00 0.00 503 373 367 2.0 517.24 82.76 100.00 600.00 1 2019-04-14 18:59:41.713449 2019-04-14 18:59:41.713449 \N 350.00 \N 100.00 0.00 504 374 180 1.0 775.00 124.00 0.00 899.00 1 2019-04-14 19:23:24.955035 2019-04-14 19:23:24.955035 \N 899.00 \N 0.00 0.00 505 375 367 1.0 301.72 48.28 0.00 350.00 1 2019-04-14 20:03:20.63726 2019-04-14 20:03:20.63726 \N 350.00 \N 0.00 0.00 506 376 400 1.0 430.17 68.83 0.00 499.00 1 2019-04-15 18:07:16.22658 2019-04-15 18:07:16.22658 \N 499.00 \N 0.00 0.00 507 377 74 1.0 430.17 68.83 0.00 499.00 1 2019-04-15 18:14:52.569972 2019-04-15 18:14:52.569972 \N 499.00 \N 0.00 0.00 508 378 250 1.0 1033.62 165.38 0.00 1199.00 1 2019-04-15 21:37:17.549518 2019-04-15 21:37:17.549518 \N 1199.00 \N 0.00 0.00 509 379 517 1.0 599.00 0.00 0.00 599.00 1 2019-04-16 00:00:02.14314 2019-04-16 00:00:02.14314 \N 599.00 \N 0.00 0.00 511 380 332 1.0 533.62 85.38 0.00 619.00 0 2019-04-16 00:18:00.451276 2019-04-16 00:29:26.631265 \N 619.00 \N 0.00 0.00 510 380 483 1.0 969.00 0.00 0.00 969.00 0 2019-04-16 00:18:00.37623 2019-04-16 00:29:26.66643 \N 969.00 \N 0.00 0.00 512 381 498 1.0 669.00 0.00 0.00 669.00 1 2019-04-16 00:30:06.920668 2019-04-16 00:30:06.920668 \N 669.00 \N 0.00 0.00 513 382 332 1.0 533.62 85.38 0.00 619.00 1 2019-04-16 00:41:29.914342 2019-04-16 00:41:29.914342 \N 619.00 \N 0.00 0.00 514 383 202 1.0 430.17 68.83 0.00 499.00 1 2019-04-16 00:52:17.009668 2019-04-16 00:52:17.009668 \N 499.00 \N 0.00 0.00 515 384 413 1.0 430.17 68.83 0.00 499.00 1 2019-04-16 00:56:39.680331 2019-04-16 00:56:39.680331 \N 499.00 \N 0.00 0.00 516 385 195 1.0 800.86 128.14 0.00 929.00 1 2019-04-16 01:09:30.466918 2019-04-16 01:09:30.466918 \N 929.00 \N 0.00 0.00 517 386 546 1.0 1190.00 0.00 0.00 1190.00 1 2019-04-16 20:37:29.555544 2019-04-16 20:37:29.555544 \N 1190.00 \N 0.00 0.00 518 387 49 1.0 1378.45 220.55 0.00 1599.00 1 2019-04-16 22:19:00.019961 2019-04-16 22:19:00.019961 \N 1599.00 \N 0.00 0.00 519 388 497 1.0 799.00 0.00 0.00 799.00 1 2019-04-16 23:05:57.178706 2019-04-16 23:05:57.178706 \N 799.00 \N 0.00 0.00 520 389 203 1.0 602.59 96.41 0.00 699.00 1 2019-04-16 23:51:02.446682 2019-04-16 23:51:02.446682 \N 699.00 \N 0.00 0.00 521 390 201 1.0 990.52 158.48 0.00 1149.00 0 2019-04-17 19:17:42.006684 2019-04-17 19:17:47.71806 \N 1149.00 \N 0.00 0.00 522 391 201 1.0 990.52 158.48 0.00 1149.00 1 2019-04-17 19:20:06.870274 2019-04-17 19:20:06.870274 \N 1149.00 \N 0.00 0.00 523 392 369 2.0 84.48 13.52 0.00 98.00 1 2019-04-17 19:38:03.623492 2019-04-17 19:38:03.623492 \N 49.00 \N 0.00 0.00 524 393 185 1.0 904.31 144.69 0.00 1049.00 1 2019-04-17 21:15:22.413021 2019-04-17 21:15:22.413021 \N 1049.00 \N 0.00 0.00 525 394 140 1.0 559.48 89.52 0.00 649.00 1 2019-04-17 21:46:21.83788 2019-04-17 21:46:21.83788 \N 649.00 \N 0.00 0.00 526 395 494 1.0 899.00 0.00 0.00 899.00 1 2019-04-17 21:50:30.297024 2019-04-17 21:50:30.297024 \N 899.00 \N 0.00 0.00 527 396 140 1.0 559.48 89.52 0.00 649.00 1 2019-04-17 22:20:22.126462 2019-04-17 22:20:22.126462 \N 649.00 \N 0.00 0.00 528 397 483 1.0 969.00 0.00 0.00 969.00 1 2019-04-17 23:26:15.18762 2019-04-17 23:26:15.18762 \N 969.00 \N 0.00 0.00 529 398 345 1.0 1292.24 206.76 0.00 1499.00 1 2019-04-17 23:37:06.126481 2019-04-17 23:37:06.126481 \N 1499.00 \N 0.00 0.00 530 399 412 1.0 490.52 78.48 0.00 569.00 1 2019-04-18 00:08:34.488942 2019-04-18 00:08:34.488942 \N 569.00 \N 0.00 0.00 531 399 413 1.0 430.17 68.83 0.00 499.00 1 2019-04-18 00:08:34.526351 2019-04-18 00:08:34.526351 \N 499.00 \N 0.00 0.00 532 400 250 1.0 1033.62 165.38 0.00 1199.00 1 2019-04-18 00:12:46.710009 2019-04-18 00:12:46.710009 \N 1199.00 \N 0.00 0.00 533 401 257 1.0 688.79 110.21 0.00 799.00 1 2019-04-18 00:41:31.340414 2019-04-18 00:41:31.340414 \N 799.00 \N 0.00 0.00 534 402 55 1.0 1464.66 234.35 0.00 1699.01 1 2019-04-22 19:26:50.588082 2019-04-22 19:26:50.588082 \N 1699.00 \N 0.00 0.00 535 403 462 1.0 489.00 0.00 0.00 489.00 1 2019-04-22 19:34:39.258039 2019-04-22 19:34:39.258039 \N 489.00 \N 0.00 0.00 536 404 321 1.0 404.31 64.69 0.00 469.00 1 2019-04-22 19:37:17.367953 2019-04-22 19:37:17.367953 \N 469.00 \N 0.00 0.00 537 405 504 1.0 1392.00 0.00 0.00 1392.00 1 2019-04-22 22:43:56.443539 2019-04-22 22:43:56.443539 \N 1392.00 \N 0.00 0.00 538 406 485 1.0 869.00 0.00 0.00 869.00 1 2019-04-23 19:12:21.012803 2019-04-23 19:12:21.012803 \N 869.00 \N 0.00 0.00 539 406 433 1.0 861.21 137.79 0.00 999.00 1 2019-04-23 19:12:21.072271 2019-04-23 19:12:21.072271 \N 999.00 \N 0.00 0.00 540 407 477 1.0 1399.00 0.00 0.00 1399.00 1 2019-04-23 21:45:37.677545 2019-04-23 21:45:37.677545 \N 1399.00 \N 0.00 0.00 541 408 76 1.0 455.17 72.83 0.00 528.00 1 2019-04-23 21:58:09.477429 2019-04-23 21:58:09.477429 \N 528.00 \N 0.00 0.00 542 409 269 1.0 775.00 124.00 0.00 899.00 1 2019-04-23 22:49:16.492871 2019-04-23 22:49:16.492871 \N 899.00 \N 0.00 0.00 543 409 443 1.0 1292.24 206.76 0.00 1499.00 1 2019-04-23 22:49:16.541228 2019-04-23 22:49:16.541228 \N 1499.00 \N 0.00 0.00 544 410 418 1.0 775.00 124.00 0.00 899.00 1 2019-04-23 23:39:52.724833 2019-04-23 23:39:52.724833 \N 899.00 \N 0.00 0.00 545 411 155 1.0 516.38 82.62 0.00 599.00 1 2019-04-23 23:44:35.630533 2019-04-23 23:44:35.630533 \N 599.00 \N 0.00 0.00 546 412 494 1.0 899.00 0.00 0.00 899.00 1 2019-04-24 21:08:51.796215 2019-04-24 21:08:51.796215 \N 899.00 \N 0.00 0.00 547 413 156 1.0 499.14 79.86 0.00 579.00 1 2019-04-25 00:06:24.815341 2019-04-25 00:06:24.815341 \N 579.00 \N 0.00 0.00 548 414 396 1.0 1119.83 179.17 0.00 1299.00 1 2019-04-25 01:11:09.035812 2019-04-25 01:11:09.035812 \N 1299.00 \N 0.00 0.00 549 415 462 1.0 489.00 0.00 0.00 489.00 1 2019-04-25 01:33:37.424692 2019-04-25 01:33:37.424692 \N 489.00 \N 0.00 0.00 550 415 203 1.0 602.59 96.41 0.00 699.00 1 2019-04-25 01:33:37.460405 2019-04-25 01:33:37.460405 \N 699.00 \N 0.00 0.00 551 416 513 1.0 899.00 0.00 0.00 899.00 0 2019-04-26 17:49:06.958754 2019-04-26 17:49:45.836961 \N 899.00 \N 0.00 0.00 552 417 157 1.0 775.00 124.00 0.00 899.00 1 2019-04-27 00:10:51.240742 2019-04-27 00:10:51.240742 \N 899.00 \N 0.00 0.00 553 418 140 1.0 559.48 89.52 0.00 649.00 1 2019-04-27 00:32:34.506896 2019-04-27 00:32:34.506896 \N 649.00 \N 0.00 0.00 554 419 152 1.0 576.72 92.28 0.00 669.00 0 2019-04-27 01:17:44.023792 2019-04-27 01:54:20.997425 \N 669.00 \N 0.00 0.00 555 420 509 1.0 599.00 0.00 0.00 599.00 1 2019-04-27 16:27:21.434941 2019-04-27 16:27:21.434941 \N 599.00 \N 0.00 0.00 556 420 476 1.0 99.00 0.00 0.00 99.00 1 2019-04-27 16:27:21.474913 2019-04-27 16:27:21.474913 \N 99.00 \N 0.00 0.00 557 421 514 1.0 479.00 0.00 0.00 479.00 1 2019-04-27 16:29:45.051975 2019-04-27 16:29:45.051975 \N 479.00 \N 0.00 0.00 558 422 152 1.0 576.72 92.28 0.00 669.00 1 2019-04-27 17:50:13.077077 2019-04-27 17:50:13.077077 \N 669.00 \N 0.00 0.00 559 423 515 1.0 899.00 0.00 0.00 899.00 1 2019-04-27 19:06:31.116553 2019-04-27 19:06:31.116553 \N 899.00 \N 0.00 0.00 560 424 513 1.0 899.00 0.00 0.00 899.00 1 2019-04-27 19:48:09.053736 2019-04-27 19:48:09.053736 \N 899.00 \N 0.00 0.00 561 425 516 1.0 999.00 0.00 0.00 999.00 1 2019-04-27 20:33:11.896908 2019-04-27 20:33:11.896908 \N 999.00 \N 0.00 0.00 562 426 157 1.0 775.00 124.00 0.00 899.00 1 2019-04-27 20:43:33.337338 2019-04-27 20:43:33.337338 \N 899.00 \N 0.00 0.00 563 427 249 1.0 507.76 81.24 0.00 589.00 0 2019-04-28 00:28:12.154826 2019-04-28 00:28:22.555203 \N 589.00 \N 0.00 0.00 564 428 249 1.0 507.76 81.24 0.00 589.00 1 2019-04-28 00:29:14.224312 2019-04-28 00:29:14.224312 \N 589.00 \N 0.00 0.00 565 429 515 1.0 899.00 0.00 0.00 899.00 1 2019-04-28 01:25:21.579359 2019-04-28 01:25:21.579359 \N 899.00 \N 0.00 0.00 566 430 519 1.0 799.00 0.00 0.00 799.00 1 2019-04-29 16:04:16.647972 2019-04-29 16:04:16.647972 \N 799.00 \N 0.00 0.00 567 431 479 1.0 675.00 0.00 0.00 675.00 1 2019-04-29 20:21:30.958293 2019-04-29 20:21:30.958293 \N 675.00 \N 0.00 0.00 568 432 500 1.0 699.00 0.00 0.00 699.00 1 2019-04-29 22:51:55.838704 2019-04-29 22:51:55.838704 \N 699.00 \N 0.00 0.00 569 433 180 1.0 775.00 124.00 0.00 899.00 1 2019-04-30 00:49:29.943483 2019-04-30 00:49:29.943483 \N 899.00 \N 0.00 0.00 570 434 321 1.0 404.31 64.69 0.00 469.00 1 2019-04-30 16:33:04.703288 2019-04-30 16:33:04.703288 \N 469.00 \N 0.00 0.00 571 434 397 1.0 593.97 95.04 0.00 689.01 1 2019-04-30 16:33:04.753253 2019-04-30 16:33:04.753253 \N 689.00 \N 0.00 0.00 572 435 505 1.0 1699.00 0.00 0.00 1699.00 1 2019-04-30 20:30:52.516919 2019-04-30 20:30:52.516919 \N 1699.00 \N 0.00 0.00 573 436 504 1.0 1392.00 0.00 0.00 1392.00 1 2019-04-30 20:32:49.291679 2019-04-30 20:32:49.291679 \N 1392.00 \N 0.00 0.00 574 437 140 1.0 559.48 89.52 0.00 649.00 1 2019-04-30 21:40:47.154804 2019-04-30 21:40:47.154804 \N 649.00 \N 0.00 0.00 575 438 177 1.0 602.59 96.41 0.00 699.00 0 2019-04-30 23:06:20.902286 2019-04-30 23:10:54.669167 \N 699.00 \N 0.00 0.00 576 439 177 1.0 602.59 96.41 0.00 699.00 1 2019-04-30 23:12:50.792408 2019-04-30 23:12:50.792408 \N 699.00 \N 0.00 0.00 577 440 505 1.0 1699.00 0.00 0.00 1699.00 1 2019-05-01 18:57:08.635837 2019-05-01 18:57:08.635837 \N 1699.00 \N 0.00 0.00 578 441 240 1.0 775.00 124.00 0.00 899.00 1 2019-05-02 20:34:33.187939 2019-05-02 20:34:33.187939 \N 899.00 \N 0.00 0.00 579 442 220 1.0 1119.83 179.17 0.00 1299.00 1 2019-05-02 23:07:51.275488 2019-05-02 23:07:51.275488 \N 1299.00 \N 0.00 0.00 580 443 181 1.0 602.59 96.41 0.00 699.00 1 2019-05-02 23:13:21.626953 2019-05-02 23:13:21.626953 \N 699.00 \N 0.00 0.00 581 444 530 1.0 1050.00 0.00 449.00 1050.00 1 2019-05-02 23:39:09.874541 2019-05-02 23:39:09.874541 \N 1499.00 \N 449.00 0.00 582 445 145 1.0 688.79 110.21 0.00 799.00 1 2019-05-03 01:29:15.574553 2019-05-03 01:29:15.574553 \N 799.00 \N 0.00 0.00 583 446 152 1.0 576.72 92.28 0.00 669.00 1 2019-05-03 17:06:07.11317 2019-05-03 17:06:07.11317 \N 669.00 \N 0.00 0.00 584 447 227 1.0 516.38 82.62 200.00 599.00 1 2019-05-03 22:58:11.035491 2019-05-03 22:58:11.035491 \N 799.00 \N 200.00 0.00 585 448 503 1.0 1299.00 0.00 0.00 1299.00 1 2019-05-04 01:08:18.497071 2019-05-04 01:08:18.497071 \N 1299.00 \N 0.00 0.00 586 449 548 1.0 1499.00 0.00 0.00 1499.00 1 2019-05-04 01:11:44.858373 2019-05-04 01:11:44.858373 \N 1499.00 \N 0.00 0.00 587 450 515 1.0 899.00 0.00 0.00 899.00 1 2019-05-04 16:45:55.06256 2019-05-04 16:45:55.06256 \N 899.00 \N 0.00 0.00 588 451 391 1.0 1119.83 179.17 0.00 1299.00 1 2019-05-04 18:05:15.47916 2019-05-04 18:05:15.47916 \N 1299.00 \N 0.00 0.00 589 452 396 1.0 1119.83 179.17 0.00 1299.00 1 2019-05-04 18:53:21.273034 2019-05-04 18:53:21.273034 \N 1299.00 \N 0.00 0.00 590 453 549 1.0 1399.00 0.00 0.00 1399.00 1 2019-05-04 20:06:53.159934 2019-05-04 20:06:53.159934 \N 1399.00 \N 0.00 0.00 591 454 199 1.0 645.69 103.31 0.00 749.00 1 2019-05-04 20:51:15.713193 2019-05-04 20:51:15.713193 \N 749.00 \N 0.00 0.00 592 455 202 1.0 430.17 68.83 0.00 499.00 1 2019-05-04 20:55:04.58481 2019-05-04 20:55:04.58481 \N 499.00 \N 0.00 0.00 593 456 76 1.0 455.17 72.83 0.00 528.00 1 2019-05-04 21:33:04.430891 2019-05-04 21:33:04.430891 \N 528.00 \N 0.00 0.00 594 457 421 1.0 688.79 110.21 0.00 799.00 1 2019-05-04 22:16:33.521759 2019-05-04 22:16:33.521759 \N 799.00 \N 0.00 0.00 595 457 560 1.0 569.00 0.00 0.00 569.00 1 2019-05-04 22:16:33.557089 2019-05-04 22:16:33.557089 \N 569.00 \N 0.00 0.00 596 458 285 1.0 516.38 82.62 0.00 599.00 1 2019-05-04 23:32:45.780821 2019-05-04 23:32:45.780821 \N 599.00 \N 0.00 0.00 597 459 76 1.0 455.17 72.83 0.00 528.00 1 2019-05-05 00:29:06.467868 2019-05-05 00:29:06.467868 \N 528.00 \N 0.00 0.00 598 460 87 1.0 586.21 93.79 0.00 680.00 1 2019-05-05 00:57:47.339767 2019-05-05 00:57:47.339767 \N 680.00 \N 0.00 0.00 599 461 134 1.0 662.93 106.07 0.00 769.00 1 2019-05-05 01:45:07.68281 2019-05-05 01:45:07.68281 \N 769.00 \N 0.00 0.00 600 462 134 1.0 662.93 106.07 0.00 769.00 1 2019-05-05 17:02:12.308617 2019-05-05 17:02:12.308617 \N 769.00 \N 0.00 0.00 601 462 139 1.0 775.00 124.00 0.00 899.00 1 2019-05-05 17:02:12.373343 2019-05-05 17:02:12.373343 \N 899.00 \N 0.00 0.00 602 462 513 1.0 899.00 0.00 0.00 899.00 1 2019-05-05 17:02:12.398331 2019-05-05 17:02:12.398331 \N 899.00 \N 0.00 0.00 603 463 288 1.0 861.21 137.79 0.00 999.00 1 2019-05-05 17:09:47.822215 2019-05-05 17:09:47.822215 \N 999.00 \N 0.00 0.00 604 463 295 1.0 0.00 0.00 989.00 0.00 1 2019-05-05 17:09:47.858247 2019-05-05 17:09:47.858247 \N 989.00 \N 0.00 100.00 605 463 299 1.0 602.59 96.41 0.00 699.00 1 2019-05-05 17:09:47.882071 2019-05-05 17:09:47.882071 \N 699.00 \N 0.00 0.00 606 463 289 1.0 0.00 0.00 629.00 0.00 1 2019-05-05 17:09:47.906656 2019-05-05 17:09:47.906656 \N 629.00 \N 0.00 100.00 607 463 422 1.0 445.69 71.31 182.00 517.00 1 2019-05-05 17:09:47.933125 2019-05-05 17:09:47.933125 \N 699.00 \N 182.00 0.00 608 464 367 1.0 215.52 34.48 100.00 250.00 1 2019-05-05 17:14:41.737268 2019-05-05 17:14:41.737268 \N 350.00 \N 100.00 0.00 609 465 560 1.0 569.00 0.00 0.00 569.00 1 2019-05-05 19:57:12.223692 2019-05-05 19:57:12.223692 \N 569.00 \N 0.00 0.00 610 466 389 1.0 775.00 124.00 0.00 899.00 1 2019-05-05 21:01:10.056417 2019-05-05 21:01:10.056417 \N 899.00 \N 0.00 0.00 611 467 318 1.0 404.31 64.69 0.00 469.00 1 2019-05-06 16:54:22.601047 2019-05-06 16:54:22.601047 \N 469.00 \N 0.00 0.00 612 468 507 1.0 479.00 0.00 0.00 479.00 1 2019-05-06 17:23:53.411231 2019-05-06 17:23:53.411231 \N 479.00 \N 0.00 0.00 613 468 563 1.0 569.00 0.00 0.00 569.00 1 2019-05-06 17:23:53.463942 2019-05-06 17:23:53.463942 \N 569.00 \N 0.00 0.00 614 469 331 1.0 706.03 112.96 0.00 818.99 1 2019-05-06 17:44:58.248277 2019-05-06 17:44:58.248277 \N 819.00 \N 0.00 0.00 615 470 180 1.0 431.03 68.96 399.00 499.99 1 2019-05-06 19:15:25.970829 2019-05-06 19:15:25.970829 \N 899.00 \N 399.00 0.00 616 471 254 1.0 818.10 130.90 0.00 949.00 1 2019-05-06 20:10:06.12555 2019-05-06 20:10:06.12555 \N 949.00 \N 0.00 0.00 617 472 142 1.0 590.52 94.48 0.00 685.00 1 2019-05-06 20:34:42.265741 2019-05-06 20:34:42.265741 \N 685.00 \N 0.00 0.00 618 473 483 1.0 969.00 0.00 0.00 969.00 1 2019-05-06 22:01:29.641751 2019-05-06 22:01:29.641751 \N 969.00 \N 0.00 0.00 619 474 503 1.0 1299.00 0.00 0.00 1299.00 1 2019-05-06 23:56:02.637993 2019-05-06 23:56:02.637993 \N 1299.00 \N 0.00 0.00 620 475 563 1.0 569.00 0.00 0.00 569.00 1 2019-05-07 00:04:11.718248 2019-05-07 00:04:11.718248 \N 569.00 \N 0.00 0.00 621 475 188 1.0 775.00 124.00 0.00 899.00 1 2019-05-07 00:04:11.747154 2019-05-07 00:04:11.747154 \N 899.00 \N 0.00 0.00 622 476 143 1.0 516.38 82.62 0.00 599.00 1 2019-05-07 00:34:11.204446 2019-05-07 00:34:11.204446 \N 599.00 \N 0.00 0.00 623 477 396 1.0 1119.83 179.17 0.00 1299.00 1 2019-05-07 00:58:20.305465 2019-05-07 00:58:20.305465 \N 1299.00 \N 0.00 0.00 624 478 63 1.0 775.00 124.00 0.00 899.00 1 2019-05-07 18:02:24.134842 2019-05-07 18:02:24.134842 \N 899.00 \N 0.00 0.00 625 479 188 1.0 775.00 124.00 0.00 899.00 1 2019-05-07 18:16:18.591456 2019-05-07 18:16:18.591456 \N 899.00 \N 0.00 0.00 626 480 420 1.0 723.28 115.72 0.00 839.00 1 2019-05-07 18:26:30.047526 2019-05-07 18:26:30.047526 \N 839.00 \N 0.00 0.00 627 481 188 1.0 645.69 103.31 150.00 749.00 1 2019-05-07 22:47:18.581252 2019-05-07 22:47:18.581252 \N 899.00 \N 150.00 0.00 628 482 200 1.0 456.03 72.96 0.00 528.99 1 2019-05-07 22:49:55.015099 2019-05-07 22:49:55.015099 \N 529.00 \N 0.00 0.00 629 483 563 1.0 569.00 0.00 0.00 569.00 1 2019-05-08 00:14:06.824963 2019-05-08 00:14:06.824963 \N 569.00 \N 0.00 0.00 630 483 199 1.0 645.69 103.31 0.00 749.00 1 2019-05-08 00:14:06.912299 2019-05-08 00:14:06.912299 \N 749.00 \N 0.00 0.00 631 484 563 1.0 569.00 0.00 0.00 569.00 1 2019-05-08 00:31:41.165281 2019-05-08 00:31:41.165281 \N 569.00 \N 0.00 0.00 632 485 340 1.0 343.97 55.04 0.00 399.01 1 2019-05-08 00:41:30.298048 2019-05-08 00:41:30.298048 \N 399.00 \N 0.00 0.00 633 486 139 1.0 775.00 124.00 0.00 899.00 1 2019-05-08 00:50:08.270462 2019-05-08 00:50:08.270462 \N 899.00 \N 0.00 0.00 634 487 520 1.0 849.00 0.00 0.00 849.00 1 2019-05-08 01:27:05.876698 2019-05-08 01:27:05.876698 \N 849.00 \N 0.00 0.00 635 487 485 1.0 869.00 0.00 0.00 869.00 1 2019-05-08 01:27:05.987636 2019-05-08 01:27:05.987636 \N 869.00 \N 0.00 0.00 636 488 554 1.0 829.00 0.00 0.00 829.00 1 2019-05-08 01:53:21.992064 2019-05-08 01:53:21.992064 \N 829.00 \N 0.00 0.00 637 489 435 1.0 568.10 90.90 0.00 659.00 1 2019-05-08 16:52:21.099975 2019-05-08 16:52:21.099975 \N 659.00 \N 0.00 0.00 638 490 205 1.0 688.79 110.21 0.00 799.00 0 2019-05-08 16:58:11.190751 2019-05-08 16:58:18.986116 \N 799.00 \N 0.00 0.00 639 491 556 1.0 479.00 0.00 0.00 479.00 1 2019-05-08 17:13:10.656008 2019-05-08 17:13:10.656008 \N 479.00 \N 0.00 0.00 640 492 204 1.0 861.21 137.79 0.00 999.00 1 2019-05-08 18:03:34.144934 2019-05-08 18:03:34.144934 \N 999.00 \N 0.00 0.00 641 493 192 1.0 412.93 66.07 0.00 479.00 1 2019-05-08 18:23:35.548258 2019-05-08 18:23:35.548258 \N 479.00 \N 0.00 0.00 642 494 552 1.0 479.00 0.00 0.00 479.00 0 2019-05-08 18:42:02.287696 2019-05-08 18:43:59.682074 \N 479.00 \N 0.00 0.00 643 495 552 1.0 479.00 0.00 0.00 479.00 1 2019-05-08 18:44:36.703755 2019-05-08 18:44:36.703755 \N 479.00 \N 0.00 0.00 644 496 205 1.0 688.79 110.21 0.00 799.00 1 2019-05-08 18:49:05.157194 2019-05-08 18:49:05.157194 \N 799.00 \N 0.00 0.00 645 497 562 1.0 799.00 0.00 0.00 799.00 1 2019-05-08 18:54:31.190578 2019-05-08 18:54:31.190578 \N 799.00 \N 0.00 0.00 646 498 556 2.0 958.00 0.00 0.00 958.00 0 2019-05-08 19:04:41.038486 2019-05-08 19:05:09.67172 \N 479.00 \N 0.00 0.00 647 499 556 1.0 479.00 0.00 0.00 479.00 1 2019-05-08 19:05:24.079879 2019-05-08 19:05:24.079879 \N 479.00 \N 0.00 0.00 648 500 158 1.0 602.59 96.41 0.00 699.00 1 2019-05-08 19:15:10.074883 2019-05-08 19:15:10.074883 \N 699.00 \N 0.00 0.00 649 501 323 1.0 404.31 64.69 0.00 469.00 1 2019-05-08 20:07:54.109521 2019-05-08 20:07:54.109521 \N 469.00 \N 0.00 0.00 650 502 328 1.0 507.76 81.24 0.00 589.00 1 2019-05-08 20:17:15.40731 2019-05-08 20:17:15.40731 \N 589.00 \N 0.00 0.00 651 503 485 1.0 869.00 0.00 0.00 869.00 1 2019-05-08 20:28:53.281958 2019-05-08 20:28:53.281958 \N 869.00 \N 0.00 0.00 652 504 563 1.0 569.00 0.00 0.00 569.00 1 2019-05-08 21:52:01.599707 2019-05-08 21:52:01.599707 \N 569.00 \N 0.00 0.00 653 504 199 1.0 645.69 103.31 0.00 749.00 1 2019-05-08 21:52:01.626754 2019-05-08 21:52:01.626754 \N 749.00 \N 0.00 0.00 654 505 560 1.0 569.00 0.00 0.00 569.00 1 2019-05-08 21:52:46.572552 2019-05-08 21:52:46.572552 \N 569.00 \N 0.00 0.00 655 506 507 1.0 479.00 0.00 0.00 479.00 1 2019-05-08 22:25:00.946765 2019-05-08 22:25:00.946765 \N 479.00 \N 0.00 0.00 656 507 138 1.0 775.00 124.00 0.00 899.00 1 2019-05-08 22:27:52.376921 2019-05-08 22:27:52.376921 \N 899.00 \N 0.00 0.00 657 508 220 1.0 1119.83 179.17 0.00 1299.00 1 2019-05-08 23:21:46.841059 2019-05-08 23:21:46.841059 \N 1299.00 \N 0.00 0.00 658 509 420 1.0 723.28 115.72 0.00 839.00 1 2019-05-08 23:36:53.210389 2019-05-08 23:36:53.210389 \N 839.00 \N 0.00 0.00 659 510 143 1.0 516.38 82.62 0.00 599.00 1 2019-05-08 23:38:38.194143 2019-05-08 23:38:38.194143 \N 599.00 \N 0.00 0.00 660 511 60 1.0 602.59 96.41 0.00 699.00 1 2019-05-08 23:43:00.699834 2019-05-08 23:43:00.699834 \N 699.00 \N 0.00 0.00 661 511 199 1.0 645.69 103.31 0.00 749.00 1 2019-05-08 23:43:00.739852 2019-05-08 23:43:00.739852 \N 749.00 \N 0.00 0.00 662 512 556 1.0 479.00 0.00 0.00 479.00 1 2019-05-08 23:48:00.461359 2019-05-08 23:48:00.461359 \N 479.00 \N 0.00 0.00 663 513 184 1.0 749.14 119.86 0.00 869.00 1 2019-05-09 00:44:21.291027 2019-05-09 00:44:21.291027 \N 869.00 \N 0.00 0.00 664 514 515 1.0 899.00 0.00 0.00 899.00 1 2019-05-09 00:58:41.648607 2019-05-09 00:58:41.648607 \N 899.00 \N 0.00 0.00 665 514 140 1.0 559.48 89.52 0.00 649.00 1 2019-05-09 00:58:41.684609 2019-05-09 00:58:41.684609 \N 649.00 \N 0.00 0.00 666 515 299 1.0 602.59 96.41 0.00 699.00 1 2019-05-09 01:08:01.74577 2019-05-09 01:08:01.74577 \N 699.00 \N 0.00 0.00 667 516 454 1.0 1599.00 0.00 0.00 1599.00 1 2019-05-09 01:22:05.614401 2019-05-09 01:22:05.614401 \N 1599.00 \N 0.00 0.00 668 517 555 1.0 979.00 0.00 0.00 979.00 1 2019-05-09 01:35:11.88627 2019-05-09 01:35:11.88627 \N 979.00 \N 0.00 0.00 669 518 380 1.0 430.17 68.83 0.00 499.00 1 2019-05-09 01:43:45.625927 2019-05-09 01:43:45.625927 \N 499.00 \N 0.00 0.00 670 518 532 1.0 599.00 0.00 0.00 599.00 1 2019-05-09 01:43:45.663342 2019-05-09 01:43:45.663342 \N 599.00 \N 0.00 0.00 671 519 249 1.0 507.76 81.24 0.00 589.00 1 2019-05-09 02:05:04.233709 2019-05-09 02:05:04.233709 \N 589.00 \N 0.00 0.00 672 520 179 1.0 602.59 96.41 0.00 699.00 1 2019-05-09 17:14:58.35806 2019-05-09 17:14:58.35806 \N 699.00 \N 0.00 0.00 673 520 563 1.0 569.00 0.00 0.00 569.00 1 2019-05-09 17:14:58.415877 2019-05-09 17:14:58.415877 \N 569.00 \N 0.00 0.00 674 521 469 1.0 1199.00 0.00 0.00 1199.00 0 2019-05-09 17:26:46.362548 2019-05-09 17:27:48.693848 \N 1199.00 \N 0.00 0.00 675 522 43 1.0 1206.03 192.96 0.00 1398.99 1 2019-05-09 18:00:00.59313 2019-05-09 18:00:00.59313 \N 1399.00 \N 0.00 0.00 676 522 32 1.0 602.59 96.41 0.00 699.00 1 2019-05-09 18:00:00.652642 2019-05-09 18:00:00.652642 \N 699.00 \N 0.00 0.00 677 523 142 1.0 590.52 94.48 0.00 685.00 1 2019-05-09 18:04:06.904277 2019-05-09 18:04:06.904277 \N 685.00 \N 0.00 0.00 678 524 367 1.0 301.72 48.28 0.00 350.00 1 2019-05-09 18:13:03.520941 2019-05-09 18:13:03.520941 \N 350.00 \N 0.00 0.00 679 525 558 1.0 899.00 0.00 0.00 899.00 1 2019-05-09 18:23:48.092381 2019-05-09 18:23:48.092381 \N 899.00 \N 0.00 0.00 680 526 199 1.0 645.69 103.31 0.00 749.00 1 2019-05-09 18:30:48.168536 2019-05-09 18:30:48.168536 \N 749.00 \N 0.00 0.00 681 527 524 1.0 549.00 0.00 0.00 549.00 1 2019-05-09 18:39:11.093419 2019-05-09 18:39:11.093419 \N 549.00 \N 0.00 0.00 682 528 16 1.0 430.17 68.83 0.00 499.00 1 2019-05-09 18:43:39.070041 2019-05-09 18:43:39.070041 \N 499.00 \N 0.00 0.00 683 529 560 1.0 569.00 0.00 0.00 569.00 1 2019-05-09 19:44:57.891338 2019-05-09 19:44:57.891338 \N 569.00 \N 0.00 0.00 684 529 360 1.0 1550.86 248.14 0.00 1799.00 1 2019-05-09 19:44:57.931198 2019-05-09 19:44:57.931198 \N 1799.00 \N 0.00 0.00 685 530 199 1.0 645.69 103.31 0.00 749.00 1 2019-05-09 22:54:46.039532 2019-05-09 22:54:46.039532 \N 749.00 \N 0.00 0.00 686 531 381 1.0 504.31 80.69 0.00 585.00 1 2019-05-09 22:56:48.770108 2019-05-09 22:56:48.770108 \N 585.00 \N 0.00 0.00 687 532 134 1.0 662.93 106.07 0.00 769.00 0 2019-05-09 22:58:40.480267 2019-05-09 23:01:24.200365 \N 769.00 \N 0.00 0.00 688 533 496 1.0 669.00 0.00 0.00 669.00 1 2019-05-09 23:02:41.482428 2019-05-09 23:02:41.482428 \N 669.00 \N 0.00 0.00 689 534 134 1.0 662.93 106.07 0.00 769.00 1 2019-05-09 23:04:39.285485 2019-05-09 23:04:39.285485 \N 769.00 \N 0.00 0.00 691 536 558 1.0 899.00 0.00 0.00 899.00 1 2019-05-09 23:29:36.338671 2019-05-09 23:29:36.338671 \N 899.00 \N 0.00 0.00 692 537 60 1.0 602.59 96.41 0.00 699.00 1 2019-05-10 00:23:05.768452 2019-05-10 00:23:05.768452 \N 699.00 \N 0.00 0.00 693 538 560 1.0 569.00 0.00 0.00 569.00 1 2019-05-10 00:25:14.89994 2019-05-10 00:25:14.89994 \N 569.00 \N 0.00 0.00 694 539 136 1.0 421.55 67.45 0.00 489.00 1 2019-05-10 00:26:19.223847 2019-05-10 00:26:19.223847 \N 489.00 \N 0.00 0.00 695 540 199 1.0 645.69 103.31 0.00 749.00 1 2019-05-10 00:30:43.64794 2019-05-10 00:30:43.64794 \N 749.00 \N 0.00 0.00 696 541 332 1.0 533.62 85.38 0.00 619.00 1 2019-05-10 00:48:22.84826 2019-05-10 00:48:22.84826 \N 619.00 \N 0.00 0.00 697 542 553 1.0 1199.00 0.00 0.00 1199.00 1 2019-05-10 00:54:42.068702 2019-05-10 00:54:42.068702 \N 1199.00 \N 0.00 0.00 698 542 133 1.0 430.17 68.83 0.00 499.00 1 2019-05-10 00:54:42.112231 2019-05-10 00:54:42.112231 \N 499.00 \N 0.00 0.00 699 543 134 1.0 662.93 106.07 0.00 769.00 1 2019-05-10 01:18:58.553522 2019-05-10 01:18:58.553522 \N 769.00 \N 0.00 0.00 700 544 199 1.0 645.69 103.31 0.00 749.00 1 2019-05-10 01:27:17.878628 2019-05-10 01:27:17.878628 \N 749.00 \N 0.00 0.00 701 545 483 1.0 969.00 0.00 0.00 969.00 1 2019-05-10 01:45:14.783995 2019-05-10 01:45:14.783995 \N 969.00 \N 0.00 0.00 702 546 369 1.0 42.24 6.76 0.00 49.00 1 2019-05-10 01:51:29.702796 2019-05-10 01:51:29.702796 \N 49.00 \N 0.00 0.00 703 547 74 1.0 430.17 68.83 0.00 499.00 1 2019-05-10 01:57:07.677924 2019-05-10 01:57:07.677924 \N 499.00 \N 0.00 0.00 704 548 143 1.0 516.38 82.62 0.00 599.00 1 2019-05-10 01:58:43.207321 2019-05-10 01:58:43.207321 \N 599.00 \N 0.00 0.00 705 548 199 1.0 645.69 103.31 0.00 749.00 1 2019-05-10 01:58:43.241793 2019-05-10 01:58:43.241793 \N 749.00 \N 0.00 0.00 706 549 433 1.0 861.21 137.79 0.00 999.00 1 2019-05-10 02:13:37.567921 2019-05-10 02:13:37.567921 \N 999.00 \N 0.00 0.00 707 550 331 1.0 706.03 112.96 0.00 818.99 1 2019-05-10 02:31:07.337257 2019-05-10 02:31:07.337257 \N 819.00 \N 0.00 0.00 708 551 209 1.0 490.52 78.48 0.00 569.00 0 2019-05-10 16:57:06.028379 2019-05-10 17:01:24.447367 \N 569.00 \N 0.00 0.00 709 552 257 1.0 688.79 110.21 0.00 799.00 1 2019-05-10 17:02:10.63532 2019-05-10 17:02:10.63532 \N 799.00 \N 0.00 0.00 710 553 330 1.0 430.17 68.83 0.00 499.00 1 2019-05-10 17:49:41.715754 2019-05-10 17:49:41.715754 \N 499.00 \N 0.00 0.00 690 535 145 1.0 688.79 110.21 0.00 799.00 0 2019-05-09 23:28:00.837137 2019-06-28 20:00:38.501798 \N 799.00 \N 0.00 0.00 711 554 141 1.0 490.52 78.48 0.00 569.00 0 2019-05-10 19:34:29.072076 2019-05-10 19:34:37.444901 \N 569.00 \N 0.00 0.00 712 555 141 1.0 490.52 78.48 0.00 569.00 1 2019-05-10 19:36:28.575206 2019-05-10 19:36:28.575206 \N 569.00 \N 0.00 0.00 714 557 202 1.0 430.17 68.83 0.00 499.00 1 2019-05-10 20:16:01.467413 2019-05-10 20:16:01.467413 \N 499.00 \N 0.00 0.00 715 558 348 1.0 1292.24 206.76 0.00 1499.00 1 2019-05-10 20:18:51.229393 2019-05-10 20:18:51.229393 \N 1499.00 \N 0.00 0.00 716 559 562 1.0 799.00 0.00 0.00 799.00 1 2019-05-10 20:40:44.626227 2019-05-10 20:40:44.626227 \N 799.00 \N 0.00 0.00 717 560 199 1.0 603.45 96.55 49.00 700.00 1 2019-05-10 20:58:30.826307 2019-05-10 20:58:30.826307 \N 749.00 \N 49.00 0.00 718 561 367 1.0 0.00 0.00 350.00 0.00 1 2019-05-10 21:18:21.827577 2019-05-10 21:18:21.827577 \N 350.00 \N 0.00 100.00 719 562 87 1.0 586.21 93.79 0.00 680.00 1 2019-05-11 16:17:18.676394 2019-05-11 16:17:18.676394 \N 680.00 \N 0.00 0.00 720 563 562 1.0 799.00 0.00 0.00 799.00 1 2019-05-11 16:33:05.477356 2019-05-11 16:33:05.477356 \N 799.00 \N 0.00 0.00 721 564 249 1.0 507.76 81.24 0.00 589.00 1 2019-05-11 17:05:59.01573 2019-05-11 17:05:59.01573 \N 589.00 \N 0.00 0.00 722 565 515 1.0 899.00 0.00 0.00 899.00 1 2019-05-11 18:39:15.829667 2019-05-11 18:39:15.829667 \N 899.00 \N 0.00 0.00 723 566 152 1.0 519.05 83.05 66.90 602.10 0 2019-05-11 19:28:57.56035 2019-05-11 19:29:38.122613 \N 669.00 \N 0.00 10.00 724 567 152 1.0 517.24 82.76 69.00 600.00 1 2019-05-11 19:30:03.233596 2019-05-11 19:30:03.233596 \N 669.00 \N 69.00 0.00 725 568 462 1.0 489.00 0.00 0.00 489.00 1 2019-05-11 19:52:20.598693 2019-05-11 19:52:20.598693 \N 489.00 \N 0.00 0.00 726 569 501 1.0 799.00 0.00 0.00 799.00 1 2019-05-11 21:04:51.470361 2019-05-11 21:04:51.470361 \N 799.00 \N 0.00 0.00 727 570 199 1.0 645.69 103.31 0.00 749.00 1 2019-05-11 22:54:21.535806 2019-05-11 22:54:21.535806 \N 749.00 \N 0.00 0.00 728 571 477 1.0 1399.00 0.00 0.00 1399.00 1 2019-05-11 23:14:57.36744 2019-05-11 23:14:57.36744 \N 1399.00 \N 0.00 0.00 729 572 91 1.0 516.38 82.62 0.00 599.00 1 2019-05-12 00:08:15.515641 2019-05-12 00:08:15.515641 \N 599.00 \N 0.00 0.00 730 573 74 1.0 430.17 68.83 0.00 499.00 1 2019-05-12 00:55:14.715259 2019-05-12 00:55:14.715259 \N 499.00 \N 0.00 0.00 731 574 318 1.0 404.31 64.69 0.00 469.00 1 2019-05-12 01:04:11.928903 2019-05-12 01:04:11.928903 \N 469.00 \N 0.00 0.00 732 575 201 1.0 990.52 158.48 0.00 1149.00 1 2019-05-12 17:30:26.015946 2019-05-12 17:30:26.015946 \N 1149.00 \N 0.00 0.00 733 576 553 1.0 1199.00 0.00 0.00 1199.00 1 2019-05-12 19:37:19.792927 2019-05-12 19:37:19.792927 \N 1199.00 \N 0.00 0.00 734 577 548 1.0 1499.00 0.00 0.00 1499.00 1 2019-05-13 23:47:19.607457 2019-05-13 23:47:19.607457 \N 1499.00 \N 0.00 0.00 735 578 305 1.0 344.83 55.17 369.00 400.00 1 2019-05-14 00:23:59.51019 2019-05-14 00:23:59.51019 \N 769.00 \N 369.00 0.00 736 578 306 1.0 300.86 48.14 350.00 349.00 1 2019-05-14 00:23:59.579343 2019-05-14 00:23:59.579343 \N 699.00 \N 350.00 0.00 402 291 194 1.0 1034.48 165.52 0.00 1200.00 0 2019-03-24 19:00:56.934525 2019-05-14 00:26:43.025609 \N 1200.00 \N 0.00 0.00 737 579 127 1.0 129.31 20.69 249.00 150.00 1 2019-05-14 16:42:33.329183 2019-05-14 16:42:33.329183 \N 399.00 \N 249.00 0.00 738 579 105 1.0 129.31 20.69 279.00 150.00 1 2019-05-14 16:42:33.384972 2019-05-14 16:42:33.384972 \N 429.00 \N 279.00 0.00 739 579 110 1.0 344.83 55.17 299.00 400.00 1 2019-05-14 16:42:33.425344 2019-05-14 16:42:33.425344 \N 699.00 \N 299.00 0.00 740 579 107 1.0 215.52 34.48 319.00 250.00 1 2019-05-14 16:42:33.466521 2019-05-14 16:42:33.466521 \N 569.00 \N 319.00 0.00 741 579 108 1.0 129.31 20.69 279.00 150.00 1 2019-05-14 16:42:33.504219 2019-05-14 16:42:33.504219 \N 429.00 \N 279.00 0.00 742 579 101 1.0 387.50 62.00 449.50 449.50 1 2019-05-14 16:42:33.543832 2019-05-14 16:42:33.543832 \N 899.00 \N 0.00 50.00 743 579 95 1.0 387.50 62.00 449.50 449.50 1 2019-05-14 16:42:33.585092 2019-05-14 16:42:33.585092 \N 899.00 \N 0.00 50.00 744 579 225 1.0 300.86 48.14 500.00 349.00 1 2019-05-14 16:42:33.624071 2019-05-14 16:42:33.624071 \N 849.00 \N 500.00 0.00 745 579 234 1.0 258.62 41.38 529.00 300.00 1 2019-05-14 16:42:33.655735 2019-05-14 16:42:33.655735 \N 829.00 \N 529.00 0.00 746 580 548 1.0 1499.00 0.00 0.00 1499.00 1 2019-05-14 17:32:48.20047 2019-05-14 17:32:48.20047 \N 1499.00 \N 0.00 0.00 747 581 295 1.0 767.33 122.77 98.90 890.10 1 2019-05-14 18:31:57.568396 2019-05-14 18:31:57.568396 \N 989.00 \N 0.00 10.00 748 582 88 1.0 430.17 68.83 0.00 499.00 1 2019-05-14 18:39:39.296816 2019-05-14 18:39:39.296816 \N 499.00 \N 0.00 0.00 749 583 93 1.0 387.50 62.00 449.50 449.50 1 2019-05-14 18:49:07.905628 2019-05-14 18:49:07.905628 \N 899.00 \N 0.00 50.00 750 583 74 1.0 301.72 48.28 149.00 350.00 1 2019-05-14 18:49:07.942153 2019-05-14 18:49:07.942153 \N 499.00 \N 149.00 0.00 751 584 554 1.0 829.00 0.00 0.00 829.00 1 2019-05-14 19:56:40.378886 2019-05-14 19:56:40.378886 \N 829.00 \N 0.00 0.00 752 585 469 1.0 1199.00 0.00 0.00 1199.00 1 2019-05-14 20:01:05.827223 2019-05-14 20:01:05.827223 \N 1199.00 \N 0.00 0.00 753 586 513 1.0 899.00 0.00 0.00 899.00 1 2019-05-14 20:02:13.604519 2019-05-14 20:02:13.604519 \N 899.00 \N 0.00 0.00 754 587 485 1.0 869.00 0.00 0.00 869.00 1 2019-05-14 23:40:00.318204 2019-05-14 23:40:00.318204 \N 869.00 \N 0.00 0.00 755 588 556 1.0 479.00 0.00 0.00 479.00 1 2019-05-15 02:03:10.747076 2019-05-15 02:03:10.747076 \N 479.00 \N 0.00 0.00 757 589 549 1.0 1399.00 0.00 0.00 1399.00 0 2019-05-15 16:50:20.436225 2019-05-15 16:53:31.104252 \N 1399.00 \N 0.00 0.00 756 589 551 1.0 1599.00 0.00 0.00 1599.00 0 2019-05-15 16:50:20.380273 2019-05-15 16:53:31.137217 \N 1599.00 \N 0.00 0.00 758 590 549 1.0 1399.00 0.00 0.00 1399.00 1 2019-05-15 16:55:47.482819 2019-05-15 16:55:47.482819 \N 1399.00 \N 0.00 0.00 759 590 526 1.0 999.00 0.00 0.00 999.00 1 2019-05-15 16:55:47.522814 2019-05-15 16:55:47.522814 \N 999.00 \N 0.00 0.00 760 590 551 1.0 1599.00 0.00 0.00 1599.00 1 2019-05-15 16:55:47.559647 2019-05-15 16:55:47.559647 \N 1599.00 \N 0.00 0.00 761 591 525 1.0 1099.00 0.00 0.00 1099.00 1 2019-05-15 18:10:18.132029 2019-05-15 18:10:18.132029 \N 1099.00 \N 0.00 0.00 762 592 156 1.0 499.14 79.86 0.00 579.00 1 2019-05-15 21:46:59.072177 2019-05-15 21:46:59.072177 \N 579.00 \N 0.00 0.00 763 592 499 1.0 699.00 0.00 0.00 699.00 1 2019-05-15 21:46:59.11709 2019-05-15 21:46:59.11709 \N 699.00 \N 0.00 0.00 764 593 506 1.0 1395.00 0.00 0.00 1395.00 1 2019-05-15 23:02:41.14005 2019-05-15 23:02:41.14005 \N 1395.00 \N 0.00 0.00 765 594 557 1.0 549.00 0.00 0.00 549.00 1 2019-05-16 01:26:02.169748 2019-05-16 01:26:02.169748 \N 549.00 \N 0.00 0.00 766 595 328 1.0 507.76 81.24 0.00 589.00 1 2019-05-16 01:29:05.678349 2019-05-16 01:29:05.678349 \N 589.00 \N 0.00 0.00 767 596 552 1.0 440.00 0.00 39.00 440.00 1 2019-05-16 18:25:18.701831 2019-05-16 18:25:18.701831 \N 479.00 \N 39.00 0.00 768 597 503 1.0 1299.00 0.00 0.00 1299.00 1 2019-05-16 19:28:34.799997 2019-05-16 19:28:34.799997 \N 1299.00 \N 0.00 0.00 769 598 421 2.0 1377.59 220.41 0.00 1598.00 1 2019-05-16 21:52:40.934277 2019-05-16 21:52:40.934277 \N 799.00 \N 0.00 0.00 770 599 577 1.0 899.00 0.00 0.00 899.00 1 2019-05-17 00:10:19.916882 2019-05-17 00:10:19.916882 \N 899.00 \N 0.00 0.00 771 600 150 1.0 404.31 64.69 0.00 469.00 1 2019-05-17 17:30:37.697238 2019-05-17 17:30:37.697238 \N 469.00 \N 0.00 0.00 772 601 573 1.0 1249.00 0.00 0.00 1249.00 1 2019-05-17 18:18:32.400886 2019-05-17 18:18:32.400886 \N 1249.00 \N 0.00 0.00 773 602 554 1.0 829.00 0.00 0.00 829.00 1 2019-05-17 18:29:02.720155 2019-05-17 18:29:02.720155 \N 829.00 \N 0.00 0.00 774 602 556 1.0 479.00 0.00 0.00 479.00 1 2019-05-17 18:29:02.763068 2019-05-17 18:29:02.763068 \N 479.00 \N 0.00 0.00 775 603 157 1.0 775.00 124.00 0.00 899.00 1 2019-05-17 18:48:34.482048 2019-05-17 18:48:34.482048 \N 899.00 \N 0.00 0.00 776 604 562 1.0 799.00 0.00 0.00 799.00 1 2019-05-18 01:10:17.339414 2019-05-18 01:10:17.339414 \N 799.00 \N 0.00 0.00 777 605 538 1.0 1190.00 0.00 509.00 1190.00 1 2019-05-18 16:47:10.461382 2019-05-18 16:47:10.461382 \N 1699.00 \N 509.00 0.00 778 606 532 1.0 599.00 0.00 0.00 599.00 1 2019-05-18 17:45:29.971552 2019-05-18 17:45:29.971552 \N 599.00 \N 0.00 0.00 779 607 550 1.0 1469.00 0.00 0.00 1469.00 1 2019-05-18 21:28:19.253341 2019-05-18 21:28:19.253341 \N 1469.00 \N 0.00 0.00 780 607 220 1.0 1119.83 179.17 0.00 1299.00 1 2019-05-18 21:28:19.298564 2019-05-18 21:28:19.298564 \N 1299.00 \N 0.00 0.00 781 608 580 1.0 1399.00 0.00 0.00 1399.00 1 2019-05-19 00:00:00.619077 2019-05-19 00:00:00.619077 \N 1399.00 \N 0.00 0.00 782 609 510 1.0 949.00 0.00 0.00 949.00 1 2019-05-19 18:36:44.81544 2019-05-19 18:36:44.81544 \N 949.00 \N 0.00 0.00 783 610 556 1.0 479.00 0.00 0.00 479.00 1 2019-05-19 19:01:08.324278 2019-05-19 19:01:08.324278 \N 479.00 \N 0.00 0.00 784 611 532 1.0 599.00 0.00 0.00 599.00 1 2019-05-19 19:14:01.488389 2019-05-19 19:14:01.488389 \N 599.00 \N 0.00 0.00 785 612 179 1.0 602.59 96.41 0.00 699.00 1 2019-05-19 19:17:15.24093 2019-05-19 19:17:15.24093 \N 699.00 \N 0.00 0.00 786 613 185 1.0 904.31 144.69 0.00 1049.00 1 2019-05-19 19:46:45.311235 2019-05-19 19:46:45.311235 \N 1049.00 \N 0.00 0.00 787 614 63 1.0 645.69 103.31 0.00 749.00 1 2019-05-20 16:52:11.535169 2019-05-20 16:52:11.535169 \N 749.00 \N 0.00 0.00 788 615 557 1.0 549.00 0.00 0.00 549.00 1 2019-05-20 16:55:37.335355 2019-05-20 16:55:37.335355 \N 549.00 \N 0.00 0.00 789 616 447 1.0 1399.00 0.00 0.00 1399.00 1 2019-05-20 19:19:14.964974 2019-05-20 19:19:14.964974 \N 1399.00 \N 0.00 0.00 790 617 133 1.0 430.17 68.83 0.00 499.00 1 2019-05-20 22:00:36.476096 2019-05-20 22:00:36.476096 \N 499.00 \N 0.00 0.00 791 618 575 1.0 1169.00 0.00 0.00 1169.00 1 2019-05-20 22:13:09.861343 2019-05-20 22:13:09.861343 \N 1169.00 \N 0.00 0.00 713 556 205 1.0 688.79 110.21 0.00 799.00 0 2019-05-10 19:53:31.253806 2019-05-20 22:51:04.553163 \N 799.00 \N 0.00 0.00 792 619 326 1.0 430.17 68.83 0.00 499.00 1 2019-05-20 22:52:37.891148 2019-05-20 22:52:37.891148 \N 499.00 \N 0.00 0.00 793 620 580 1.0 1399.00 0.00 0.00 1399.00 1 2019-05-20 23:20:44.872604 2019-05-20 23:20:44.872604 \N 1399.00 \N 0.00 0.00 794 621 569 1.0 489.00 0.00 0.00 489.00 1 2019-05-20 23:46:43.478242 2019-05-20 23:46:43.478242 \N 489.00 \N 0.00 0.00 795 622 576 1.0 999.00 0.00 0.00 999.00 1 2019-05-20 23:49:54.01898 2019-05-20 23:49:54.01898 \N 999.00 \N 0.00 0.00 796 623 406 1.0 430.17 68.83 0.00 499.00 1 2019-05-21 00:04:45.079946 2019-05-21 00:04:45.079946 \N 499.00 \N 0.00 0.00 797 624 549 1.0 1399.00 0.00 0.00 1399.00 1 2019-05-21 17:19:06.505429 2019-05-21 17:19:06.505429 \N 1399.00 \N 0.00 0.00 798 625 332 1.0 533.62 85.38 0.00 619.00 1 2019-05-21 17:39:39.534536 2019-05-21 17:39:39.534536 \N 619.00 \N 0.00 0.00 799 626 227 1.0 551.03 88.16 159.80 639.19 1 2019-05-21 20:45:03.533142 2019-05-21 20:45:03.533142 \N 799.00 \N 0.00 20.00 800 627 505 1.0 1699.00 0.00 0.00 1699.00 1 2019-05-21 21:01:15.446251 2019-05-21 21:01:15.446251 \N 1699.00 \N 0.00 0.00 802 629 502 1.0 1299.00 0.00 0.00 1299.00 1 2019-05-21 21:52:48.345258 2019-05-21 21:52:48.345258 \N 1299.00 \N 0.00 0.00 803 630 579 1.0 699.00 0.00 0.00 699.00 1 2019-05-21 22:22:48.134889 2019-05-21 22:22:48.134889 \N 699.00 \N 0.00 0.00 804 631 507 1.0 479.00 0.00 0.00 479.00 1 2019-05-21 22:46:28.203731 2019-05-21 22:46:28.203731 \N 479.00 \N 0.00 0.00 805 632 420 1.0 723.28 115.72 0.00 839.00 1 2019-05-22 01:39:06.349938 2019-05-22 01:39:06.349938 \N 839.00 \N 0.00 0.00 806 633 203 1.0 602.59 96.41 0.00 699.00 1 2019-05-22 01:59:11.736178 2019-05-22 01:59:11.736178 \N 699.00 \N 0.00 0.00 807 633 552 1.0 479.00 0.00 0.00 479.00 1 2019-05-22 01:59:11.781611 2019-05-22 01:59:11.781611 \N 479.00 \N 0.00 0.00 808 634 562 1.0 799.00 0.00 0.00 799.00 1 2019-05-22 19:13:24.161619 2019-05-22 19:13:24.161619 \N 799.00 \N 0.00 0.00 809 635 270 1.0 1033.62 165.38 0.00 1199.00 1 2019-05-22 20:01:52.584285 2019-05-22 20:01:52.584285 \N 1199.00 \N 0.00 0.00 810 636 433 1.0 861.21 137.79 0.00 999.00 0 2019-05-22 21:56:24.571335 2019-05-22 21:58:22.08604 \N 999.00 \N 0.00 0.00 811 637 433 1.0 861.21 137.79 0.00 999.00 1 2019-05-22 21:58:39.571099 2019-05-22 21:58:39.571099 \N 999.00 \N 0.00 0.00 812 638 575 1.0 1169.00 0.00 0.00 1169.00 1 2019-05-22 22:01:05.69497 2019-05-22 22:01:05.69497 \N 1169.00 \N 0.00 0.00 813 639 506 1.0 1395.00 0.00 0.00 1395.00 1 2019-05-22 23:18:58.012036 2019-05-22 23:18:58.012036 \N 1395.00 \N 0.00 0.00 815 641 200 1.0 456.03 72.96 0.00 528.99 1 2019-05-23 00:46:30.248544 2019-05-23 00:46:30.248544 \N 529.00 \N 0.00 0.00 814 640 581 1.0 1399.00 0.00 0.00 1399.00 0 2019-05-23 00:26:25.456438 2019-05-23 00:49:05.568903 \N 1399.00 \N 0.00 0.00 816 642 182 1.0 1119.83 179.17 0.00 1299.00 1 2019-05-23 00:49:37.061515 2019-05-23 00:49:37.061515 \N 1299.00 \N 0.00 0.00 817 643 581 1.0 1399.00 0.00 0.00 1399.00 0 2019-05-23 00:51:31.018905 2019-05-23 00:51:35.311166 \N 1399.00 \N 0.00 0.00 819 645 583 1.0 869.00 0.00 0.00 869.00 1 2019-05-23 01:54:49.564322 2019-05-23 01:54:49.564322 \N 869.00 \N 0.00 0.00 820 646 578 1.0 799.00 0.00 0.00 799.00 1 2019-05-23 16:26:23.124748 2019-05-23 16:26:23.124748 \N 799.00 \N 0.00 0.00 822 647 587 1.0 499.00 0.00 0.00 499.00 0 2019-05-23 22:46:04.177086 2019-05-23 22:47:07.791076 \N 499.00 \N 0.00 0.00 821 647 406 1.0 430.17 68.83 0.00 499.00 0 2019-05-23 22:46:04.141272 2019-05-23 22:47:07.81462 \N 499.00 \N 0.00 0.00 823 648 476 1.0 0.00 0.00 99.00 0.00 1 2019-05-23 22:49:00.081377 2019-05-23 22:49:00.081377 \N 99.00 \N 99.00 0.00 824 648 406 1.0 430.17 68.83 0.00 499.00 1 2019-05-23 22:49:00.113525 2019-05-23 22:49:00.113525 \N 499.00 \N 0.00 0.00 825 648 587 1.0 499.00 0.00 0.00 499.00 1 2019-05-23 22:49:00.145921 2019-05-23 22:49:00.145921 \N 499.00 \N 0.00 0.00 826 649 142 1.0 590.52 94.48 0.00 685.00 1 2019-05-23 23:14:48.548175 2019-05-23 23:14:48.548175 \N 685.00 \N 0.00 0.00 827 650 587 1.0 499.00 0.00 0.00 499.00 1 2019-05-23 23:32:38.006858 2019-05-23 23:32:38.006858 \N 499.00 \N 0.00 0.00 828 650 476 1.0 99.00 0.00 0.00 99.00 1 2019-05-23 23:32:38.035059 2019-05-23 23:32:38.035059 \N 99.00 \N 0.00 0.00 829 651 514 1.0 479.00 0.00 0.00 479.00 1 2019-05-24 00:07:20.261629 2019-05-24 00:07:20.261629 \N 479.00 \N 0.00 0.00 830 652 583 1.0 869.00 0.00 0.00 869.00 1 2019-05-24 00:17:08.529501 2019-05-24 00:17:08.529501 \N 869.00 \N 0.00 0.00 831 653 150 1.0 404.31 64.69 0.00 469.00 1 2019-05-24 00:41:48.010731 2019-05-24 00:41:48.010731 \N 469.00 \N 0.00 0.00 832 654 573 1.0 1249.00 0.00 0.00 1249.00 1 2019-05-24 00:47:24.38755 2019-05-24 00:47:24.38755 \N 1249.00 \N 0.00 0.00 833 655 588 1.0 599.00 0.00 0.00 599.00 1 2019-05-24 01:09:54.397528 2019-05-24 01:09:54.397528 \N 599.00 \N 0.00 0.00 834 656 579 1.0 699.00 0.00 0.00 699.00 1 2019-05-24 01:21:06.896776 2019-05-24 01:21:06.896776 \N 699.00 \N 0.00 0.00 835 656 61 1.0 343.97 55.04 0.00 399.01 1 2019-05-24 01:21:06.94015 2019-05-24 01:21:06.94015 \N 399.00 \N 0.00 0.00 836 657 578 1.0 799.00 0.00 0.00 799.00 1 2019-05-24 01:21:44.697351 2019-05-24 01:21:44.697351 \N 799.00 \N 0.00 0.00 837 658 182 1.0 1119.83 179.17 0.00 1299.00 1 2019-05-24 18:07:43.634918 2019-05-24 18:07:43.634918 \N 1299.00 \N 0.00 0.00 838 659 585 1.0 1599.00 0.00 0.00 1599.00 1 2019-05-24 20:01:52.498126 2019-05-24 20:01:52.498126 \N 1599.00 \N 0.00 0.00 839 660 211 1.0 662.93 106.07 0.00 769.00 1 2019-05-24 20:15:03.451862 2019-05-24 20:15:03.451862 \N 769.00 \N 0.00 0.00 840 661 584 1.0 749.00 0.00 0.00 749.00 1 2019-05-24 22:51:18.485168 2019-05-24 22:51:18.485168 \N 749.00 \N 0.00 0.00 841 662 570 1.0 489.00 0.00 0.00 489.00 1 2019-05-24 23:26:54.907154 2019-05-24 23:26:54.907154 \N 489.00 \N 0.00 0.00 842 663 587 1.0 499.00 0.00 0.00 499.00 1 2019-05-25 00:50:25.545928 2019-05-25 00:50:25.545928 \N 499.00 \N 0.00 0.00 843 664 577 1.0 899.00 0.00 0.00 899.00 1 2019-05-25 01:55:25.560979 2019-05-25 01:55:25.560979 \N 899.00 \N 0.00 0.00 844 665 146 1.0 404.31 64.69 0.00 469.00 1 2019-05-25 15:59:55.402645 2019-05-25 15:59:55.402645 \N 469.00 \N 0.00 0.00 845 666 549 1.0 1399.00 0.00 0.00 1399.00 1 2019-05-25 17:31:36.130516 2019-05-25 17:31:36.130516 \N 1399.00 \N 0.00 0.00 846 667 579 1.0 699.00 0.00 0.00 699.00 1 2019-05-25 17:41:57.821603 2019-05-25 17:41:57.821603 \N 699.00 \N 0.00 0.00 847 668 570 1.0 489.00 0.00 0.00 489.00 1 2019-05-25 18:37:51.789462 2019-05-25 18:37:51.789462 \N 489.00 \N 0.00 0.00 848 669 84 1.0 430.17 68.83 0.00 499.00 1 2019-05-25 19:16:54.671136 2019-05-25 19:16:54.671136 \N 499.00 \N 0.00 0.00 849 670 316 1.0 688.79 110.21 0.00 799.00 1 2019-05-25 19:19:14.357436 2019-05-25 19:19:14.357436 \N 799.00 \N 0.00 0.00 850 671 10 1.0 593.97 95.04 0.00 689.01 1 2019-05-25 20:49:34.039867 2019-05-25 20:49:34.039867 \N 689.00 \N 0.00 0.00 851 672 505 1.0 1699.00 0.00 0.00 1699.00 1 2019-05-25 22:38:11.348784 2019-05-25 22:38:11.348784 \N 1699.00 \N 0.00 0.00 852 672 584 1.0 749.00 0.00 0.00 749.00 1 2019-05-25 22:38:11.388707 2019-05-25 22:38:11.388707 \N 749.00 \N 0.00 0.00 853 673 542 1.0 1259.30 0.00 539.70 1259.30 1 2019-05-25 22:42:27.436976 2019-05-25 22:42:27.436976 \N 1799.00 \N 0.00 30.00 801 628 367 2.0 517.24 82.76 100.00 600.00 0 2019-05-21 21:18:50.106551 2019-08-03 00:51:33.083754 \N 350.00 \N 100.00 0.00 854 674 583 1.0 869.00 0.00 0.00 869.00 0 2019-05-26 00:15:53.011445 2019-05-26 00:17:01.261984 \N 869.00 \N 0.00 0.00 855 675 583 1.0 869.00 0.00 0.00 869.00 1 2019-05-26 00:17:45.804636 2019-05-26 00:17:45.804636 \N 869.00 \N 0.00 0.00 856 676 583 1.0 869.00 0.00 0.00 869.00 1 2019-05-26 00:37:56.760176 2019-05-26 00:37:56.760176 \N 869.00 \N 0.00 0.00 857 677 182 1.0 1119.83 179.17 0.00 1299.00 1 2019-05-26 01:10:21.356889 2019-05-26 01:10:21.356889 \N 1299.00 \N 0.00 0.00 858 677 572 1.0 1199.00 0.00 0.00 1199.00 1 2019-05-26 01:10:21.393252 2019-05-26 01:10:21.393252 \N 1199.00 \N 0.00 0.00 859 678 564 1.0 1099.00 0.00 0.00 1099.00 1 2019-05-26 18:35:24.722633 2019-05-26 18:35:24.722633 \N 1099.00 \N 0.00 0.00 860 679 483 1.0 969.00 0.00 0.00 969.00 1 2019-05-26 18:47:37.051481 2019-05-26 18:47:37.051481 \N 969.00 \N 0.00 0.00 861 680 475 1.0 889.00 0.00 0.00 889.00 1 2019-05-26 20:24:44.038582 2019-05-26 20:24:44.038582 \N 889.00 \N 0.00 0.00 862 681 583 1.0 869.00 0.00 0.00 869.00 1 2019-05-27 17:47:01.718814 2019-05-27 17:47:01.718814 \N 869.00 \N 0.00 0.00 863 682 562 1.0 799.00 0.00 0.00 799.00 1 2019-05-27 18:18:22.002159 2019-05-27 18:18:22.002159 \N 799.00 \N 0.00 0.00 864 683 584 1.0 749.00 0.00 0.00 749.00 1 2019-05-27 18:27:35.936192 2019-05-27 18:27:35.936192 \N 749.00 \N 0.00 0.00 865 684 242 1.0 602.59 96.41 170.00 699.00 1 2019-05-27 21:45:47.666284 2019-05-27 21:45:47.666284 \N 869.00 \N 170.00 0.00 866 685 552 1.0 479.00 0.00 0.00 479.00 1 2019-05-27 23:22:52.476925 2019-05-27 23:22:52.476925 \N 479.00 \N 0.00 0.00 867 686 577 1.0 899.00 0.00 0.00 899.00 1 2019-05-27 23:38:33.071437 2019-05-27 23:38:33.071437 \N 899.00 \N 0.00 0.00 868 687 157 1.0 775.00 124.00 0.00 899.00 0 2019-05-28 18:50:06.983354 2019-05-28 19:38:18.819405 \N 899.00 \N 0.00 0.00 869 688 157 1.0 775.00 124.00 0.00 899.00 1 2019-05-28 19:38:56.381163 2019-05-28 19:38:56.381163 \N 899.00 \N 0.00 0.00 870 689 570 1.0 489.00 0.00 0.00 489.00 1 2019-05-28 23:46:45.519689 2019-05-28 23:46:45.519689 \N 489.00 \N 0.00 0.00 871 690 585 1.0 1599.00 0.00 0.00 1599.00 1 2019-05-29 00:20:47.834586 2019-05-29 00:20:47.834586 \N 1599.00 \N 0.00 0.00 872 691 252 1.0 1068.10 170.90 0.00 1239.00 1 2019-05-29 01:36:53.551469 2019-05-29 01:36:53.551469 \N 1239.00 \N 0.00 0.00 873 692 568 1.0 669.00 0.00 0.00 669.00 1 2019-05-30 19:35:57.058274 2019-05-30 19:35:57.058274 \N 669.00 \N 0.00 0.00 874 693 229 1.0 913.79 146.21 0.00 1060.00 1 2019-05-30 21:09:22.51335 2019-05-30 21:09:22.51335 \N 1060.00 \N 0.00 0.00 875 693 249 1.0 507.76 81.24 0.00 589.00 1 2019-05-30 21:09:22.547644 2019-05-30 21:09:22.547644 \N 589.00 \N 0.00 0.00 876 694 583 1.0 869.00 0.00 0.00 869.00 1 2019-05-31 00:22:41.807837 2019-05-31 00:22:41.807837 \N 869.00 \N 0.00 0.00 877 695 251 1.0 1206.03 192.96 0.00 1398.99 0 2019-05-31 00:46:53.762379 2019-05-31 00:51:19.781477 \N 1399.00 \N 0.00 0.00 878 696 251 1.0 1206.03 192.96 0.00 1398.99 1 2019-05-31 00:52:18.873166 2019-05-31 00:52:18.873166 \N 1399.00 \N 0.00 0.00 880 697 184 1.0 749.14 119.86 0.00 869.00 0 2019-05-31 01:25:36.860248 2019-05-31 01:25:49.586747 \N 869.00 \N 0.00 0.00 879 697 251 1.0 1206.03 192.96 0.00 1398.99 0 2019-05-31 01:25:36.814029 2019-05-31 01:25:49.628021 \N 1399.00 \N 0.00 0.00 881 698 184 1.0 749.14 119.86 0.00 869.00 1 2019-05-31 01:26:18.41049 2019-05-31 01:26:18.41049 \N 869.00 \N 0.00 0.00 882 698 251 1.0 1206.03 192.96 0.00 1398.99 1 2019-05-31 01:26:18.437314 2019-05-31 01:26:18.437314 \N 1399.00 \N 0.00 0.00 883 699 84 1.0 430.17 68.83 0.00 499.00 1 2019-05-31 16:55:12.230032 2019-05-31 16:55:12.230032 \N 499.00 \N 0.00 0.00 884 700 502 1.0 1299.00 0.00 0.00 1299.00 1 2019-05-31 19:02:54.436794 2019-05-31 19:02:54.436794 \N 1299.00 \N 0.00 0.00 885 701 543 1.0 1330.00 0.00 569.00 1330.00 1 2019-05-31 19:40:08.627958 2019-05-31 19:40:08.627958 \N 1899.00 \N 569.00 0.00 886 702 199 1.0 645.69 103.31 0.00 749.00 1 2019-05-31 22:52:16.258451 2019-05-31 22:52:16.258451 \N 749.00 \N 0.00 0.00 887 703 536 1.0 609.00 0.00 0.00 609.00 1 2019-05-31 23:32:31.325607 2019-05-31 23:32:31.325607 \N 609.00 \N 0.00 0.00 888 704 549 1.0 1399.00 0.00 0.00 1399.00 1 2019-06-01 00:58:52.414494 2019-06-01 00:58:52.414494 \N 1399.00 \N 0.00 0.00 889 705 8 1.0 576.72 92.28 0.00 669.00 1 2019-06-01 01:21:01.539919 2019-06-01 01:21:01.539919 \N 669.00 \N 0.00 0.00 890 706 572 1.0 1199.00 0.00 0.00 1199.00 1 2019-06-01 19:12:49.453438 2019-06-01 19:12:49.453438 \N 1199.00 \N 0.00 0.00 891 707 573 1.0 1249.00 0.00 0.00 1249.00 1 2019-06-01 21:49:18.723838 2019-06-01 21:49:18.723838 \N 1249.00 \N 0.00 0.00 892 708 585 1.0 1599.00 0.00 0.00 1599.00 1 2019-06-01 21:54:46.768592 2019-06-01 21:54:46.768592 \N 1599.00 \N 0.00 0.00 893 709 406 1.0 430.17 68.83 0.00 499.00 1 2019-06-02 18:13:21.693917 2019-06-02 18:13:21.693917 \N 499.00 \N 0.00 0.00 894 710 532 1.0 599.00 0.00 0.00 599.00 1 2019-06-02 18:58:53.738384 2019-06-02 18:58:53.738384 \N 599.00 \N 0.00 0.00 895 711 570 1.0 489.00 0.00 0.00 489.00 1 2019-06-03 18:35:05.210051 2019-06-03 18:35:05.210051 \N 489.00 \N 0.00 0.00 896 712 511 1.0 869.00 0.00 0.00 869.00 1 2019-06-03 21:17:54.286471 2019-06-03 21:17:54.286471 \N 869.00 \N 0.00 0.00 897 713 572 1.0 1199.00 0.00 0.00 1199.00 1 2019-06-04 20:48:55.177225 2019-06-04 20:48:55.177225 \N 1199.00 \N 0.00 0.00 898 714 533 1.0 1050.00 0.00 449.00 1050.00 1 2019-06-04 21:33:23.735952 2019-06-04 21:33:23.735952 \N 1499.00 \N 449.00 0.00 899 715 584 1.0 749.00 0.00 0.00 749.00 1 2019-06-06 16:42:53.661205 2019-06-06 16:42:53.661205 \N 749.00 \N 0.00 0.00 900 716 571 1.0 799.00 0.00 0.00 799.00 1 2019-06-06 20:02:11.728045 2019-06-06 20:02:11.728045 \N 799.00 \N 0.00 0.00 901 717 276 1.0 257.76 41.24 200.00 299.00 1 2019-06-06 22:04:51.895687 2019-06-06 22:04:51.895687 \N 499.00 \N 200.00 0.00 902 718 199 1.0 645.69 103.31 0.00 749.00 1 2019-06-06 22:21:50.541689 2019-06-06 22:21:50.541689 \N 749.00 \N 0.00 0.00 903 719 555 1.0 979.00 0.00 0.00 979.00 1 2019-06-07 01:13:40.43754 2019-06-07 01:13:40.43754 \N 979.00 \N 0.00 0.00 904 720 205 1.0 602.59 96.41 100.00 699.00 1 2019-06-08 17:37:20.696517 2019-06-08 17:37:20.696517 \N 799.00 \N 100.00 0.00 905 721 369 5.0 211.21 33.79 0.00 245.00 1 2019-06-08 22:23:47.860094 2019-06-08 22:23:47.860094 \N 49.00 \N 0.00 0.00 906 722 410 1.0 516.38 82.62 0.00 599.00 1 2019-06-08 22:50:17.706683 2019-06-08 22:50:17.706683 \N 599.00 \N 0.00 0.00 907 722 60 1.0 602.59 96.41 0.00 699.00 1 2019-06-08 22:50:17.73247 2019-06-08 22:50:17.73247 \N 699.00 \N 0.00 0.00 908 723 370 1.0 473.28 75.72 0.00 549.00 1 2019-06-09 01:48:59.991994 2019-06-09 01:48:59.991994 \N 549.00 \N 0.00 0.00 909 724 585 1.0 1599.00 0.00 0.00 1599.00 1 2019-06-09 20:45:23.806582 2019-06-09 20:45:23.806582 \N 1599.00 \N 0.00 0.00 910 725 548 1.0 1499.00 0.00 0.00 1499.00 1 2019-06-09 20:48:01.415167 2019-06-09 20:48:01.415167 \N 1499.00 \N 0.00 0.00 912 727 573 1.0 1249.00 0.00 0.00 1249.00 1 2019-06-11 01:39:37.294668 2019-06-11 01:39:37.294668 \N 1249.00 \N 0.00 0.00 913 728 554 1.0 829.00 0.00 0.00 829.00 1 2019-06-11 17:16:35.281381 2019-06-11 17:16:35.281381 \N 829.00 \N 0.00 0.00 914 729 585 1.0 1599.00 0.00 0.00 1599.00 1 2019-06-11 18:04:33.134351 2019-06-11 18:04:33.134351 \N 1599.00 \N 0.00 0.00 915 730 525 1.0 1099.00 0.00 0.00 1099.00 1 2019-06-11 23:17:22.821722 2019-06-11 23:17:22.821722 \N 1099.00 \N 0.00 0.00 916 731 504 1.0 1392.00 0.00 0.00 1392.00 1 2019-06-12 22:26:55.832961 2019-06-12 22:26:55.832961 \N 1392.00 \N 0.00 0.00 917 732 96 1.0 448.28 71.72 129.00 520.00 1 2019-06-13 16:51:48.388568 2019-06-13 16:51:48.388568 \N 649.00 \N 129.00 0.00 918 733 573 1.0 1249.00 0.00 0.00 1249.00 1 2019-06-13 18:42:20.563237 2019-06-13 18:42:20.563237 \N 1249.00 \N 0.00 0.00 919 734 395 1.0 861.21 137.79 0.00 999.00 1 2019-06-13 19:52:30.732105 2019-06-13 19:52:30.732105 \N 999.00 \N 0.00 0.00 920 735 60 1.0 602.59 96.41 0.00 699.00 1 2019-06-13 20:05:18.031023 2019-06-13 20:05:18.031023 \N 699.00 \N 0.00 0.00 922 737 190 1.0 593.97 95.04 0.00 689.01 1 2019-06-13 20:09:42.891217 2019-06-13 20:09:42.891217 \N 689.00 \N 0.00 0.00 921 736 190 1.0 593.97 95.04 0.00 689.01 0 2019-06-13 20:07:50.73707 2019-06-13 20:12:00.204481 \N 689.00 \N 0.00 0.00 923 738 476 1.0 99.00 0.00 0.00 99.00 1 2019-06-14 01:22:33.781883 2019-06-14 01:22:33.781883 \N 99.00 \N 0.00 0.00 924 739 476 1.0 99.00 0.00 0.00 99.00 1 2019-06-14 01:26:46.890977 2019-06-14 01:26:46.890977 \N 99.00 \N 0.00 0.00 925 740 506 1.0 1395.00 0.00 0.00 1395.00 1 2019-06-14 17:08:40.497586 2019-06-14 17:08:40.497586 \N 1395.00 \N 0.00 0.00 926 741 510 1.0 949.00 0.00 0.00 949.00 1 2019-06-14 19:07:02.603179 2019-06-14 19:07:02.603179 \N 949.00 \N 0.00 0.00 927 742 574 1.0 1199.00 0.00 0.00 1199.00 1 2019-06-15 16:53:13.891838 2019-06-15 16:53:13.891838 \N 1199.00 \N 0.00 0.00 928 743 569 2.0 978.00 0.00 0.00 978.00 1 2019-06-15 19:34:53.882016 2019-06-15 19:34:53.882016 \N 489.00 \N 0.00 0.00 929 744 143 1.0 516.38 82.62 0.00 599.00 1 2019-06-15 20:03:18.11821 2019-06-15 20:03:18.11821 \N 599.00 \N 0.00 0.00 930 745 588 1.0 599.00 0.00 0.00 599.00 1 2019-06-15 20:13:49.153267 2019-06-15 20:13:49.153267 \N 599.00 \N 0.00 0.00 931 746 510 1.0 949.00 0.00 0.00 949.00 1 2019-06-15 20:22:17.965065 2019-06-15 20:22:17.965065 \N 949.00 \N 0.00 0.00 933 748 506 1.0 1395.00 0.00 0.00 1395.00 0 2019-06-15 20:28:32.921381 2019-06-15 20:33:15.447669 \N 1395.00 \N 0.00 0.00 934 749 506 1.0 1395.00 0.00 0.00 1395.00 1 2019-06-15 20:34:18.760747 2019-06-15 20:34:18.760747 \N 1395.00 \N 0.00 0.00 936 751 142 1.0 590.52 94.48 0.00 685.00 1 2019-06-15 22:13:31.107907 2019-06-15 22:13:31.107907 \N 685.00 \N 0.00 0.00 937 751 178 1.0 516.38 82.62 0.00 599.00 1 2019-06-15 22:13:31.141063 2019-06-15 22:13:31.141063 \N 599.00 \N 0.00 0.00 938 752 236 1.0 749.14 119.86 0.00 869.00 1 2019-06-15 22:22:52.449343 2019-06-15 22:22:52.449343 \N 869.00 \N 0.00 0.00 932 747 506 1.0 1395.00 0.00 0.00 1395.00 0 2019-06-15 20:25:02.985815 2019-06-15 22:33:13.879831 \N 1395.00 \N 0.00 0.00 939 753 579 1.0 699.00 0.00 0.00 699.00 1 2019-06-17 20:50:15.899935 2019-06-17 20:50:15.899935 \N 699.00 \N 0.00 0.00 940 754 199 1.0 645.69 103.31 0.00 749.00 1 2019-06-18 18:08:49.788221 2019-06-18 18:08:49.788221 \N 749.00 \N 0.00 0.00 941 754 519 1.0 799.00 0.00 0.00 799.00 1 2019-06-18 18:08:49.827238 2019-06-18 18:08:49.827238 \N 799.00 \N 0.00 0.00 942 755 252 1.0 1068.10 170.90 0.00 1239.00 1 2019-06-18 19:54:40.060465 2019-06-18 19:54:40.060465 \N 1239.00 \N 0.00 0.00 943 756 143 1.0 516.38 82.62 0.00 599.00 0 2019-06-18 21:03:40.576499 2019-06-18 21:05:08.196078 \N 599.00 \N 0.00 0.00 944 757 143 1.0 516.38 82.62 0.00 599.00 1 2019-06-18 21:05:31.927346 2019-06-18 21:05:31.927346 \N 599.00 \N 0.00 0.00 945 758 584 2.0 1498.00 0.00 0.00 1498.00 0 2019-06-18 22:40:03.524037 2019-06-18 22:40:43.600553 \N 749.00 \N 0.00 0.00 946 759 584 1.0 749.00 0.00 0.00 749.00 0 2019-06-18 22:41:34.554852 2019-06-18 22:42:55.32286 \N 749.00 \N 0.00 0.00 947 760 584 1.0 749.00 0.00 0.00 749.00 1 2019-06-18 22:44:03.625342 2019-06-18 22:44:03.625342 \N 749.00 \N 0.00 0.00 948 761 149 1.0 404.31 64.69 0.00 469.00 1 2019-06-19 20:42:58.180683 2019-06-19 20:42:58.180683 \N 469.00 \N 0.00 0.00 949 762 406 1.0 430.17 68.83 0.00 499.00 1 2019-06-19 20:55:44.840643 2019-06-19 20:55:44.840643 \N 499.00 \N 0.00 0.00 950 763 509 1.0 599.00 0.00 0.00 599.00 1 2019-06-19 23:00:17.898372 2019-06-19 23:00:17.898372 \N 599.00 \N 0.00 0.00 951 764 517 1.0 599.00 0.00 0.00 599.00 1 2019-06-19 23:56:16.022688 2019-06-19 23:56:16.022688 \N 599.00 \N 0.00 0.00 952 765 136 1.0 421.55 67.45 0.00 489.00 1 2019-06-19 23:59:11.802356 2019-06-19 23:59:11.802356 \N 489.00 \N 0.00 0.00 953 766 257 1.0 688.79 110.21 0.00 799.00 1 2019-06-20 20:06:11.191154 2019-06-20 20:06:11.191154 \N 799.00 \N 0.00 0.00 954 767 537 1.0 499.00 0.00 0.00 499.00 1 2019-06-20 22:13:45.652099 2019-06-20 22:13:45.652099 \N 499.00 \N 0.00 0.00 955 767 367 2.0 517.24 82.76 100.00 600.00 1 2019-06-20 22:13:45.686957 2019-06-20 22:13:45.686957 \N 350.00 \N 100.00 0.00 956 768 503 1.0 1299.00 0.00 0.00 1299.00 1 2019-06-20 23:21:54.026578 2019-06-20 23:21:54.026578 \N 1299.00 \N 0.00 0.00 957 769 508 1.0 699.00 0.00 0.00 699.00 1 2019-06-20 23:25:09.081163 2019-06-20 23:25:09.081163 \N 699.00 \N 0.00 0.00 958 770 199 1.0 645.69 103.31 0.00 749.00 1 2019-06-21 00:10:43.443275 2019-06-21 00:10:43.443275 \N 749.00 \N 0.00 0.00 959 771 564 1.0 1099.00 0.00 0.00 1099.00 1 2019-06-21 00:28:19.798741 2019-06-21 00:28:19.798741 \N 1099.00 \N 0.00 0.00 960 772 589 1.0 1349.00 0.00 0.00 1349.00 1 2019-06-21 01:28:49.624694 2019-06-21 01:28:49.624694 \N 1349.00 \N 0.00 0.00 961 773 408 1.0 430.17 68.83 0.00 499.00 1 2019-06-21 01:46:35.367553 2019-06-21 01:46:35.367553 \N 499.00 \N 0.00 0.00 962 773 508 1.0 699.00 0.00 0.00 699.00 1 2019-06-21 01:46:35.395036 2019-06-21 01:46:35.395036 \N 699.00 \N 0.00 0.00 963 774 553 1.0 1199.00 0.00 0.00 1199.00 0 2019-06-21 17:04:10.575615 2019-06-21 17:05:08.262352 \N 1199.00 \N 0.00 0.00 964 775 553 1.0 1199.00 0.00 0.00 1199.00 1 2019-06-21 17:05:48.583436 2019-06-21 17:05:48.583436 \N 1199.00 \N 0.00 0.00 965 776 565 1.0 689.00 0.00 0.00 689.00 1 2019-06-21 18:12:12.353724 2019-06-21 18:12:12.353724 \N 689.00 \N 0.00 0.00 966 777 367 1.0 301.72 48.28 0.00 350.00 1 2019-06-21 19:33:13.952831 2019-06-21 19:33:13.952831 \N 350.00 \N 0.00 0.00 967 778 398 1.0 516.38 82.62 0.00 599.00 1 2019-06-21 20:01:38.658882 2019-06-21 20:01:38.658882 \N 599.00 \N 0.00 0.00 968 778 569 1.0 489.00 0.00 0.00 489.00 1 2019-06-21 20:01:38.687131 2019-06-21 20:01:38.687131 \N 489.00 \N 0.00 0.00 969 779 199 1.0 645.69 103.31 0.00 749.00 1 2019-06-21 21:42:12.021426 2019-06-21 21:42:12.021426 \N 749.00 \N 0.00 0.00 970 780 408 1.0 430.17 68.83 0.00 499.00 1 2019-06-22 16:44:33.527441 2019-06-22 16:44:33.527441 \N 499.00 \N 0.00 0.00 971 781 270 1.0 1033.62 165.38 0.00 1199.00 1 2019-06-22 17:32:58.624479 2019-06-22 17:32:58.624479 \N 1199.00 \N 0.00 0.00 972 781 557 1.0 549.00 0.00 0.00 549.00 1 2019-06-22 17:32:58.680388 2019-06-22 17:32:58.680388 \N 549.00 \N 0.00 0.00 973 782 576 1.0 999.00 0.00 0.00 999.00 1 2019-06-22 19:30:31.348374 2019-06-22 19:30:31.348374 \N 999.00 \N 0.00 0.00 974 782 517 1.0 599.00 0.00 0.00 599.00 1 2019-06-22 19:30:31.382731 2019-06-22 19:30:31.382731 \N 599.00 \N 0.00 0.00 975 782 476 1.0 99.00 0.00 0.00 99.00 1 2019-06-22 19:30:31.40875 2019-06-22 19:30:31.40875 \N 99.00 \N 0.00 0.00 976 782 143 1.0 516.38 82.62 0.00 599.00 1 2019-06-22 19:30:31.434279 2019-06-22 19:30:31.434279 \N 599.00 \N 0.00 0.00 977 783 572 1.0 1199.00 0.00 0.00 1199.00 1 2019-06-22 20:09:13.322449 2019-06-22 20:09:13.322449 \N 1199.00 \N 0.00 0.00 978 784 182 1.0 1119.83 179.17 0.00 1299.00 1 2019-06-22 20:11:26.962457 2019-06-22 20:11:26.962457 \N 1299.00 \N 0.00 0.00 979 785 241 1.0 572.67 91.63 284.70 664.30 1 2019-06-22 21:00:16.991684 2019-06-22 21:00:16.991684 \N 949.00 \N 0.00 30.00 980 786 181 1.0 602.59 96.41 0.00 699.00 1 2019-06-22 21:57:56.351381 2019-06-22 21:57:56.351381 \N 699.00 \N 0.00 0.00 981 787 586 1.0 549.00 0.00 0.00 549.00 1 2019-06-25 18:50:36.002696 2019-06-25 18:50:36.002696 \N 549.00 \N 0.00 0.00 982 788 553 1.0 1199.00 0.00 0.00 1199.00 1 2019-06-25 19:03:08.364122 2019-06-25 19:03:08.364122 \N 1199.00 \N 0.00 0.00 983 789 122 1.0 671.55 107.45 0.00 779.00 0 2019-06-27 16:37:31.747142 2019-06-27 16:52:02.467957 \N 779.00 \N 0.00 0.00 984 790 122 1.0 538.79 86.21 154.00 625.00 1 2019-06-27 16:59:05.578604 2019-06-27 16:59:05.578604 \N 779.00 \N 154.00 0.00 985 791 199 1.0 645.69 103.31 0.00 749.00 0 2019-06-27 17:44:47.253984 2019-06-27 17:45:23.341146 \N 749.00 \N 0.00 0.00 986 792 573 1.0 1249.00 0.00 0.00 1249.00 1 2019-06-27 18:04:41.010627 2019-06-27 18:04:41.010627 \N 1249.00 \N 0.00 0.00 987 793 569 1.0 489.00 0.00 0.00 489.00 1 2019-06-28 01:03:46.339231 2019-06-28 01:03:46.339231 \N 489.00 \N 0.00 0.00 988 794 391 1.0 1119.83 179.17 0.00 1299.00 1 2019-06-28 23:30:28.137093 2019-06-28 23:30:28.137093 \N 1299.00 \N 0.00 0.00 989 795 584 1.0 749.00 0.00 0.00 749.00 1 2019-06-29 17:46:44.335318 2019-06-29 17:46:44.335318 \N 749.00 \N 0.00 0.00 990 796 74 1.0 344.83 55.17 99.00 400.00 1 2019-06-29 19:43:43.927651 2019-06-29 19:43:43.927651 \N 499.00 \N 99.00 0.00 991 797 568 1.0 669.00 0.00 0.00 669.00 1 2019-06-29 21:41:33.116354 2019-06-29 21:41:33.116354 \N 669.00 \N 0.00 0.00 992 797 152 1.0 576.72 92.28 0.00 669.00 1 2019-06-29 21:41:33.16044 2019-06-29 21:41:33.16044 \N 669.00 \N 0.00 0.00 993 798 248 1.0 1007.76 161.24 0.00 1169.00 1 2019-06-29 22:43:07.75177 2019-06-29 22:43:07.75177 \N 1169.00 \N 0.00 0.00 994 798 239 1.0 887.07 141.93 0.00 1029.00 1 2019-06-29 22:43:07.777256 2019-06-29 22:43:07.777256 \N 1029.00 \N 0.00 0.00 995 799 236 1.0 749.14 119.86 0.00 869.00 1 2019-06-29 23:44:26.622425 2019-06-29 23:44:26.622425 \N 869.00 \N 0.00 0.00 996 800 580 1.0 1399.00 0.00 0.00 1399.00 1 2019-06-29 23:58:51.719023 2019-06-29 23:58:51.719023 \N 1399.00 \N 0.00 0.00 997 801 525 1.0 1099.00 0.00 0.00 1099.00 1 2019-06-30 18:40:31.381089 2019-06-30 18:40:31.381089 \N 1099.00 \N 0.00 0.00 998 802 552 1.0 479.00 0.00 0.00 479.00 1 2019-07-01 18:16:23.030117 2019-07-01 18:16:23.030117 \N 479.00 \N 0.00 0.00 999 803 580 1.0 1399.00 0.00 0.00 1399.00 1 2019-07-01 20:03:16.220391 2019-07-01 20:03:16.220391 \N 1399.00 \N 0.00 0.00 1000 804 435 1.0 568.10 90.90 0.00 659.00 1 2019-07-01 23:22:53.408218 2019-07-01 23:22:53.408218 \N 659.00 \N 0.00 0.00 1001 805 82 1.0 576.72 92.28 0.00 669.00 1 2019-07-02 01:28:42.455389 2019-07-02 01:28:42.455389 \N 669.00 \N 0.00 0.00 1002 806 503 1.0 1299.00 0.00 0.00 1299.00 1 2019-07-02 01:38:51.654978 2019-07-02 01:38:51.654978 \N 1299.00 \N 0.00 0.00 1003 807 358 1.0 904.57 144.73 449.70 1049.30 1 2019-07-02 22:28:42.40199 2019-07-02 22:28:42.40199 \N 1499.00 \N 0.00 30.00 1004 808 445 1.0 1999.00 0.00 0.00 1999.00 1 2019-07-02 22:35:22.487787 2019-07-02 22:35:22.487787 \N 1999.00 \N 0.00 0.00 1005 808 50 1.0 1550.86 248.14 0.00 1799.00 1 2019-07-02 22:35:22.527692 2019-07-02 22:35:22.527692 \N 1799.00 \N 0.00 0.00 1006 809 458 1.0 349.00 0.00 0.00 349.00 1 2019-07-02 22:39:44.848876 2019-07-02 22:39:44.848876 \N 349.00 \N 0.00 0.00 1007 810 574 1.0 1199.00 0.00 0.00 1199.00 1 2019-07-02 22:56:53.112342 2019-07-02 22:56:53.112342 \N 1199.00 \N 0.00 0.00 1008 811 512 1.0 869.00 0.00 0.00 869.00 1 2019-07-03 00:04:14.889626 2019-07-03 00:04:14.889626 \N 869.00 \N 0.00 0.00 1009 812 295 1.0 766.38 122.62 100.00 889.00 1 2019-07-03 00:44:01.520909 2019-07-03 00:44:01.520909 \N 989.00 \N 100.00 0.00 1010 813 146 1.0 404.31 64.69 0.00 469.00 1 2019-07-03 02:11:55.421389 2019-07-03 02:11:55.421389 \N 469.00 \N 0.00 0.00 1011 813 321 1.0 404.31 64.69 0.00 469.00 1 2019-07-03 02:11:55.471286 2019-07-03 02:11:55.471286 \N 469.00 \N 0.00 0.00 1012 813 319 1.0 404.31 64.69 0.00 469.00 1 2019-07-03 02:11:55.500465 2019-07-03 02:11:55.500465 \N 469.00 \N 0.00 0.00 1013 814 397 1.0 593.97 95.04 0.00 689.01 1 2019-07-03 18:00:42.848896 2019-07-03 18:00:42.848896 \N 689.00 \N 0.00 0.00 1015 815 458 1.0 349.00 0.00 0.00 349.00 0 2019-07-03 21:06:51.988596 2019-07-03 21:07:49.456813 \N 349.00 \N 0.00 0.00 1014 815 209 1.0 490.52 78.48 0.00 569.00 0 2019-07-03 21:06:51.962082 2019-07-03 21:07:49.481725 \N 569.00 \N 0.00 0.00 1017 816 458 1.0 349.00 0.00 0.00 349.00 0 2019-07-03 21:09:52.077485 2019-07-03 21:11:09.535839 \N 349.00 \N 0.00 0.00 1016 816 209 1.0 490.52 78.48 0.00 569.00 0 2019-07-03 21:09:52.049014 2019-07-03 21:11:09.563707 \N 569.00 \N 0.00 0.00 1018 817 209 1.0 490.52 78.48 0.00 569.00 1 2019-07-03 21:11:46.321511 2019-07-03 21:11:46.321511 \N 569.00 \N 0.00 0.00 1019 817 458 1.0 349.00 0.00 0.00 349.00 1 2019-07-03 21:11:46.353189 2019-07-03 21:11:46.353189 \N 349.00 \N 0.00 0.00 1020 818 185 1.0 904.31 144.69 0.00 1049.00 1 2019-07-04 17:31:54.504293 2019-07-04 17:31:54.504293 \N 1049.00 \N 0.00 0.00 1021 819 580 1.0 1399.00 0.00 0.00 1399.00 1 2019-07-04 17:41:21.325459 2019-07-04 17:41:21.325459 \N 1399.00 \N 0.00 0.00 1022 820 187 1.0 861.21 137.79 0.00 999.00 1 2019-07-04 19:50:27.680113 2019-07-04 19:50:27.680113 \N 999.00 \N 0.00 0.00 1023 820 514 1.0 479.00 0.00 0.00 479.00 1 2019-07-04 19:50:27.71085 2019-07-04 19:50:27.71085 \N 479.00 \N 0.00 0.00 1024 821 46 1.0 1550.86 248.14 0.00 1799.00 1 2019-07-05 00:32:55.04732 2019-07-05 00:32:55.04732 \N 1799.00 \N 0.00 0.00 1025 822 389 1.0 775.00 124.00 0.00 899.00 1 2019-07-05 17:18:38.187655 2019-07-05 17:18:38.187655 \N 899.00 \N 0.00 0.00 1026 823 249 1.0 507.76 81.24 0.00 589.00 1 2019-07-05 18:18:45.922449 2019-07-05 18:18:45.922449 \N 589.00 \N 0.00 0.00 1027 824 498 1.0 669.00 0.00 0.00 669.00 1 2019-07-06 00:48:16.907914 2019-07-06 00:48:16.907914 \N 669.00 \N 0.00 0.00 1028 825 188 1.0 698.28 111.72 89.00 810.00 1 2019-07-06 00:58:49.939984 2019-07-06 00:58:49.939984 \N 899.00 \N 89.00 0.00 1029 826 95 1.0 543.10 86.90 269.00 630.00 1 2019-07-07 00:30:44.172265 2019-07-07 00:30:44.172265 \N 899.00 \N 269.00 0.00 1030 827 575 1.0 1169.00 0.00 0.00 1169.00 1 2019-07-08 17:25:29.420605 2019-07-08 17:25:29.420605 \N 1169.00 \N 0.00 0.00 1031 828 551 1.0 1599.00 0.00 0.00 1599.00 1 2019-07-08 20:12:42.025149 2019-07-08 20:12:42.025149 \N 1599.00 \N 0.00 0.00 1032 829 495 1.0 1190.00 0.00 509.00 1190.00 1 2019-07-09 20:19:36.873128 2019-07-09 20:19:36.873128 \N 1699.00 \N 509.00 0.00 1033 830 19 1.0 516.38 82.62 0.00 599.00 1 2019-07-09 21:29:10.9868 2019-07-09 21:29:10.9868 \N 599.00 \N 0.00 0.00 1034 831 273 1.0 1378.45 220.55 0.00 1599.00 1 2019-07-10 00:23:11.043168 2019-07-10 00:23:11.043168 \N 1599.00 \N 0.00 0.00 1035 832 519 1.0 799.00 0.00 0.00 799.00 1 2019-07-10 22:55:22.228054 2019-07-10 22:55:22.228054 \N 799.00 \N 0.00 0.00 1036 833 510 1.0 949.00 0.00 0.00 949.00 1 2019-07-12 18:01:31.924672 2019-07-12 18:01:31.924672 \N 949.00 \N 0.00 0.00 1037 834 470 1.0 1399.00 0.00 0.00 1399.00 1 2019-07-12 22:25:51.31592 2019-07-12 22:25:51.31592 \N 1399.00 \N 0.00 0.00 1038 835 434 1.0 843.97 135.04 0.00 979.01 1 2019-07-13 00:50:42.277043 2019-07-13 00:50:42.277043 \N 979.00 \N 0.00 0.00 1039 836 59 1.0 1464.66 234.35 0.00 1699.01 1 2019-07-13 20:18:30.849024 2019-07-13 20:18:30.849024 \N 1699.00 \N 0.00 0.00 1040 837 372 1.0 516.38 82.62 0.00 599.00 1 2019-07-13 23:49:50.846379 2019-07-13 23:49:50.846379 \N 599.00 \N 0.00 0.00 1041 838 91 1.0 375.00 60.00 164.00 435.00 1 2019-07-13 23:55:38.987165 2019-07-13 23:55:38.987165 \N 599.00 \N 164.00 0.00 1042 839 406 1.0 430.17 68.83 0.00 499.00 1 2019-07-14 00:06:23.63859 2019-07-14 00:06:23.63859 \N 499.00 \N 0.00 0.00 1043 840 116 1.0 387.07 61.93 0.00 449.00 1 2019-07-14 00:06:58.529229 2019-07-14 00:06:58.529229 \N 449.00 \N 0.00 0.00 818 644 581 1.0 1399.00 0.00 0.00 1399.00 0 2019-05-23 00:51:51.691201 2019-07-14 00:40:35.093939 \N 1399.00 \N 0.00 0.00 1044 841 574 1.0 1199.00 0.00 0.00 1199.00 1 2019-07-15 18:37:37.878554 2019-07-15 18:37:37.878554 \N 1199.00 \N 0.00 0.00 1045 841 476 1.0 99.00 0.00 0.00 99.00 1 2019-07-15 18:37:37.934548 2019-07-15 18:37:37.934548 \N 99.00 \N 0.00 0.00 1046 842 548 1.0 1499.00 0.00 0.00 1499.00 1 2019-07-15 23:50:54.655818 2019-07-15 23:50:54.655818 \N 1499.00 \N 0.00 0.00 1048 843 553 1.0 1199.00 0.00 0.00 1199.00 0 2019-07-16 00:52:33.044106 2019-07-16 00:52:43.383125 \N 1199.00 \N 0.00 0.00 1047 843 603 1.0 1199.00 0.00 0.00 1199.00 0 2019-07-16 00:52:33.014556 2019-07-16 00:52:43.407834 \N 1199.00 \N 0.00 0.00 1049 844 553 1.0 1199.00 0.00 0.00 1199.00 1 2019-07-16 00:53:48.587127 2019-07-16 00:53:48.587127 \N 1199.00 \N 0.00 0.00 1050 844 603 1.0 1199.00 0.00 0.00 1199.00 1 2019-07-16 00:53:48.613068 2019-07-16 00:53:48.613068 \N 1199.00 \N 0.00 0.00 1051 845 596 1.0 1299.00 0.00 0.00 1299.00 1 2019-07-16 20:55:04.905459 2019-07-16 20:55:04.905459 \N 1299.00 \N 0.00 0.00 1052 846 597 1.0 649.00 0.00 0.00 649.00 1 2019-07-17 16:45:44.76488 2019-07-17 16:45:44.76488 \N 649.00 \N 0.00 0.00 1053 847 500 1.0 699.00 0.00 0.00 699.00 1 2019-07-17 19:13:37.963525 2019-07-17 19:13:37.963525 \N 699.00 \N 0.00 0.00 1054 848 118 1.0 258.62 41.38 199.00 300.00 1 2019-07-17 19:35:16.998213 2019-07-17 19:35:16.998213 \N 499.00 \N 199.00 0.00 1055 849 187 1.0 861.21 137.79 0.00 999.00 1 2019-07-17 19:57:17.569352 2019-07-17 19:57:17.569352 \N 999.00 \N 0.00 0.00 1056 850 502 1.0 1299.00 0.00 0.00 1299.00 1 2019-07-17 19:57:42.70744 2019-07-17 19:57:42.70744 \N 1299.00 \N 0.00 0.00 1057 851 607 1.0 1549.00 0.00 0.00 1549.00 1 2019-07-17 20:10:42.166087 2019-07-17 20:10:42.166087 \N 1549.00 \N 0.00 0.00 1058 852 595 1.0 699.00 0.00 0.00 699.00 1 2019-07-17 21:53:04.324798 2019-07-17 21:53:04.324798 \N 699.00 \N 0.00 0.00 1059 853 595 1.0 699.00 0.00 0.00 699.00 1 2019-07-17 22:20:00.701274 2019-07-17 22:20:00.701274 \N 699.00 \N 0.00 0.00 1060 854 600 1.0 549.00 0.00 0.00 549.00 1 2019-07-18 01:19:13.959479 2019-07-18 01:19:13.959479 \N 549.00 \N 0.00 0.00 1061 855 16 1.0 430.17 68.83 0.00 499.00 1 2019-07-18 01:24:20.60769 2019-07-18 01:24:20.60769 \N 499.00 \N 0.00 0.00 1062 856 527 1.0 749.00 0.00 0.00 749.00 1 2019-07-18 01:34:44.156788 2019-07-18 01:34:44.156788 \N 749.00 \N 0.00 0.00 1063 857 600 1.0 549.00 0.00 0.00 549.00 1 2019-07-19 19:34:31.895506 2019-07-19 19:34:31.895506 \N 549.00 \N 0.00 0.00 1064 858 610 1.0 649.00 0.00 0.00 649.00 0 2019-07-19 19:39:52.624125 2019-07-19 19:41:44.547104 \N 649.00 \N 0.00 0.00 1066 859 281 1.0 240.78 38.52 119.70 279.30 0 2019-07-19 19:43:11.950239 2019-07-19 19:45:50.125733 \N 399.00 \N 0.00 30.00 1065 859 610 1.0 649.00 0.00 0.00 649.00 0 2019-07-19 19:43:11.924604 2019-07-19 19:45:50.149018 \N 649.00 \N 0.00 0.00 1067 860 610 1.0 649.00 0.00 0.00 649.00 1 2019-07-19 19:46:50.504548 2019-07-19 19:46:50.504548 \N 649.00 \N 0.00 0.00 1068 860 281 1.0 241.38 38.62 119.00 280.00 1 2019-07-19 19:46:50.52809 2019-07-19 19:46:50.52809 \N 399.00 \N 119.00 0.00 1069 861 591 1.0 1199.00 0.00 0.00 1199.00 1 2019-07-19 21:01:37.779794 2019-07-19 21:01:37.779794 \N 1199.00 \N 0.00 0.00 1070 862 147 1.0 404.31 64.69 0.00 469.00 1 2019-07-20 16:29:58.32522 2019-07-20 16:29:58.32522 \N 469.00 \N 0.00 0.00 1071 863 592 1.0 1299.00 0.00 0.00 1299.00 1 2019-07-20 17:30:16.150262 2019-07-20 17:30:16.150262 \N 1299.00 \N 0.00 0.00 1072 864 152 1.0 576.72 92.28 0.00 669.00 1 2019-07-20 17:57:41.941064 2019-07-20 17:57:41.941064 \N 669.00 \N 0.00 0.00 1073 865 343 1.0 343.97 55.04 0.00 399.01 1 2019-07-20 18:29:13.392521 2019-07-20 18:29:13.392521 \N 399.00 \N 0.00 0.00 1074 865 600 1.0 549.00 0.00 0.00 549.00 1 2019-07-20 18:29:13.414974 2019-07-20 18:29:13.414974 \N 549.00 \N 0.00 0.00 1075 865 367 1.0 301.72 48.28 0.00 350.00 1 2019-07-20 18:29:13.436547 2019-07-20 18:29:13.436547 \N 350.00 \N 0.00 0.00 1076 865 597 1.0 649.00 0.00 0.00 649.00 1 2019-07-20 18:29:13.457417 2019-07-20 18:29:13.457417 \N 649.00 \N 0.00 0.00 1077 865 88 1.0 430.17 68.83 0.00 499.00 1 2019-07-20 18:29:13.478709 2019-07-20 18:29:13.478709 \N 499.00 \N 0.00 0.00 1078 866 592 1.0 1299.00 0.00 0.00 1299.00 1 2019-07-20 19:04:54.940044 2019-07-20 19:04:54.940044 \N 1299.00 \N 0.00 0.00 1079 867 315 1.0 240.52 38.48 120.00 279.00 1 2019-07-20 19:19:51.479104 2019-07-20 19:19:51.479104 \N 399.00 \N 120.00 0.00 1080 868 603 1.0 1199.00 0.00 0.00 1199.00 1 2019-07-20 23:14:41.27874 2019-07-20 23:14:41.27874 \N 1199.00 \N 0.00 0.00 1081 869 568 1.0 669.00 0.00 0.00 669.00 1 2019-07-21 01:01:41.90009 2019-07-21 01:01:41.90009 \N 669.00 \N 0.00 0.00 1082 870 527 1.0 749.00 0.00 0.00 749.00 1 2019-07-21 01:12:20.714943 2019-07-21 01:12:20.714943 \N 749.00 \N 0.00 0.00 1083 870 604 1.0 749.00 0.00 0.00 749.00 1 2019-07-21 01:12:20.746547 2019-07-21 01:12:20.746547 \N 749.00 \N 0.00 0.00 1084 871 499 1.0 699.00 0.00 0.00 699.00 1 2019-07-21 16:42:07.139623 2019-07-21 16:42:07.139623 \N 699.00 \N 0.00 0.00 1085 872 156 1.0 499.14 79.86 0.00 579.00 1 2019-07-21 19:01:24.067942 2019-07-21 19:01:24.067942 \N 579.00 \N 0.00 0.00 1086 873 158 1.0 602.59 96.41 0.00 699.00 1 2019-07-21 19:12:59.658882 2019-07-21 19:12:59.658882 \N 699.00 \N 0.00 0.00 1087 874 330 1.0 344.14 55.06 99.80 399.20 1 2019-07-21 19:23:30.578969 2019-07-21 19:23:30.578969 \N 499.00 \N 0.00 20.00 1088 875 592 1.0 1299.00 0.00 0.00 1299.00 1 2019-07-21 20:07:55.208915 2019-07-21 20:07:55.208915 \N 1299.00 \N 0.00 0.00 1089 876 499 1.0 699.00 0.00 0.00 699.00 1 2019-07-21 21:03:41.975545 2019-07-21 21:03:41.975545 \N 699.00 \N 0.00 0.00 1090 877 614 1.0 1699.00 0.00 0.00 1699.00 1 2019-07-22 18:02:35.351895 2019-07-22 18:02:35.351895 \N 1699.00 \N 0.00 0.00 1091 878 588 1.0 599.00 0.00 0.00 599.00 1 2019-07-22 20:05:39.974865 2019-07-22 20:05:39.974865 \N 599.00 \N 0.00 0.00 1092 879 616 2.0 298.00 0.00 0.00 298.00 1 2019-07-22 23:38:13.239768 2019-07-22 23:38:13.239768 \N 149.00 \N 0.00 0.00 1093 880 367 1.0 301.72 48.28 0.00 350.00 1 2019-07-23 00:18:32.989234 2019-07-23 00:18:32.989234 \N 350.00 \N 0.00 0.00 1094 881 104 1.0 254.31 40.69 74.00 295.00 1 2019-07-23 01:29:35.390743 2019-07-23 01:29:35.390743 \N 369.00 \N 74.00 0.00 1095 882 629 1.0 1149.00 0.00 0.00 1149.00 1 2019-07-23 20:00:20.97809 2019-07-23 20:00:20.97809 \N 1149.00 \N 0.00 0.00 1096 883 592 1.0 1299.00 0.00 0.00 1299.00 1 2019-07-23 20:05:01.499661 2019-07-23 20:05:01.499661 \N 1299.00 \N 0.00 0.00 1097 884 613 1.0 1799.00 0.00 0.00 1799.00 1 2019-07-23 20:50:45.414052 2019-07-23 20:50:45.414052 \N 1799.00 \N 0.00 0.00 1098 885 279 1.0 258.62 41.38 349.00 300.00 1 2019-07-23 23:50:33.019234 2019-07-23 23:50:33.019234 \N 649.00 \N 349.00 0.00 1099 886 591 1.0 1199.00 0.00 0.00 1199.00 1 2019-07-24 16:22:22.57461 2019-07-24 16:22:22.57461 \N 1199.00 \N 0.00 0.00 1100 887 618 1.0 569.00 0.00 0.00 569.00 1 2019-07-24 18:26:50.649674 2019-07-24 18:26:50.649674 \N 569.00 \N 0.00 0.00 1101 887 596 1.0 1299.00 0.00 0.00 1299.00 1 2019-07-24 18:26:50.679302 2019-07-24 18:26:50.679302 \N 1299.00 \N 0.00 0.00 1102 888 608 1.0 999.00 0.00 0.00 999.00 1 2019-07-25 00:05:04.122103 2019-07-25 00:05:04.122103 \N 999.00 \N 0.00 0.00 1103 889 587 1.0 499.00 0.00 0.00 499.00 1 2019-07-25 00:31:00.189808 2019-07-25 00:31:00.189808 \N 499.00 \N 0.00 0.00 1104 889 623 1.0 699.00 0.00 0.00 699.00 1 2019-07-25 00:31:00.221328 2019-07-25 00:31:00.221328 \N 699.00 \N 0.00 0.00 1105 890 623 1.0 699.00 0.00 0.00 699.00 1 2019-07-25 00:43:02.599473 2019-07-25 00:43:02.599473 \N 699.00 \N 0.00 0.00 1106 890 600 1.0 549.00 0.00 0.00 549.00 1 2019-07-25 00:43:02.630407 2019-07-25 00:43:02.630407 \N 549.00 \N 0.00 0.00 1107 891 610 1.0 559.48 89.52 0.00 649.00 1 2019-07-25 01:41:26.417304 2019-07-25 01:41:26.417304 \N 649.00 \N 0.00 0.00 1108 892 577 1.0 899.00 0.00 0.00 899.00 1 2019-07-25 18:07:04.202433 2019-07-25 18:07:04.202433 \N 899.00 \N 0.00 0.00 1109 893 623 1.0 699.00 0.00 0.00 699.00 1 2019-07-25 18:36:30.806816 2019-07-25 18:36:30.806816 \N 699.00 \N 0.00 0.00 1110 893 600 1.0 549.00 0.00 0.00 549.00 1 2019-07-25 18:36:30.853201 2019-07-25 18:36:30.853201 \N 549.00 \N 0.00 0.00 1111 894 25 1.0 2129.31 340.69 430.00 2470.00 0 2019-07-25 19:36:26.358478 2019-07-25 19:43:51.471656 \N 2900.00 \N 430.00 0.00 1112 895 25 1.0 2129.31 340.69 430.00 2470.00 1 2019-07-25 19:44:28.806328 2019-07-25 19:44:28.806328 \N 2900.00 \N 430.00 0.00 1113 896 279 1.0 447.59 71.61 129.80 519.20 1 2019-07-26 01:49:56.863396 2019-07-26 01:49:56.863396 \N 649.00 \N 0.00 20.00 1114 897 593 1.0 659.00 0.00 0.00 659.00 0 2019-07-26 21:03:54.193933 2019-07-26 21:18:51.18952 \N 659.00 \N 0.00 0.00 1115 898 593 1.0 659.00 0.00 0.00 659.00 1 2019-07-26 21:19:56.945795 2019-07-26 21:19:56.945795 \N 659.00 \N 0.00 0.00 1116 899 621 1.0 619.00 0.00 0.00 619.00 1 2019-07-26 21:29:03.336206 2019-07-26 21:29:03.336206 \N 619.00 \N 0.00 0.00 1117 899 595 1.0 699.00 0.00 0.00 699.00 1 2019-07-26 21:29:03.363801 2019-07-26 21:29:03.363801 \N 699.00 \N 0.00 0.00 1118 900 590 1.0 1099.00 0.00 0.00 1099.00 1 2019-07-26 21:59:07.228416 2019-07-26 21:59:07.228416 \N 1099.00 \N 0.00 0.00 1119 901 140 1.0 559.48 89.52 0.00 649.00 1 2019-07-26 22:54:03.474098 2019-07-26 22:54:03.474098 \N 649.00 \N 0.00 0.00 1120 902 477 1.0 1399.00 0.00 0.00 1399.00 1 2019-07-26 23:01:28.082787 2019-07-26 23:01:28.082787 \N 1399.00 \N 0.00 0.00 1121 903 565 1.0 689.00 0.00 0.00 689.00 1 2019-07-27 00:54:56.280738 2019-07-27 00:54:56.280738 \N 689.00 \N 0.00 0.00 1122 904 601 1.0 669.00 0.00 0.00 669.00 1 2019-07-27 18:44:15.270277 2019-07-27 18:44:15.270277 \N 669.00 \N 0.00 0.00 1123 905 319 1.0 404.31 64.69 0.00 469.00 1 2019-07-27 19:28:00.075389 2019-07-27 19:28:00.075389 \N 469.00 \N 0.00 0.00 1124 906 632 1.0 479.00 0.00 0.00 479.00 1 2019-07-27 19:30:48.572861 2019-07-27 19:30:48.572861 \N 479.00 \N 0.00 0.00 1125 907 588 1.0 599.00 0.00 0.00 599.00 1 2019-07-27 19:42:52.073194 2019-07-27 19:42:52.073194 \N 599.00 \N 0.00 0.00 1126 908 477 1.0 1399.00 0.00 0.00 1399.00 1 2019-07-27 19:54:10.980693 2019-07-27 19:54:10.980693 \N 1399.00 \N 0.00 0.00 1127 909 631 1.0 628.45 100.55 0.00 729.00 1 2019-07-27 22:37:35.25791 2019-07-27 22:37:35.25791 \N 729.00 \N 0.00 0.00 1128 910 83 1.0 542.24 86.76 0.00 629.00 1 2019-07-27 23:36:38.852939 2019-07-27 23:36:38.852939 \N 629.00 \N 0.00 0.00 1129 910 620 1.0 449.00 0.00 0.00 449.00 1 2019-07-27 23:36:38.906574 2019-07-27 23:36:38.906574 \N 449.00 \N 0.00 0.00 1131 912 605 1.0 999.00 0.00 0.00 999.00 1 2019-07-28 00:25:54.311504 2019-07-28 00:25:54.311504 \N 999.00 \N 0.00 0.00 1130 911 570 1.0 489.00 0.00 0.00 489.00 0 2019-07-28 00:20:35.892254 2019-07-28 01:01:00.918196 \N 489.00 \N 0.00 0.00 1132 913 569 1.0 489.00 0.00 0.00 489.00 1 2019-07-28 01:01:26.405235 2019-07-28 01:01:26.405235 \N 489.00 \N 0.00 0.00 1133 914 587 1.0 499.00 0.00 0.00 499.00 1 2019-07-28 19:09:33.852821 2019-07-28 19:09:33.852821 \N 499.00 \N 0.00 0.00 1134 915 637 1.0 799.00 0.00 0.00 799.00 1 2019-07-30 18:03:02.361761 2019-07-30 18:03:02.361761 \N 799.00 \N 0.00 0.00 1135 916 592 1.0 1299.00 0.00 0.00 1299.00 1 2019-07-30 20:31:36.867459 2019-07-30 20:31:36.867459 \N 1299.00 \N 0.00 0.00 1136 917 597 1.0 649.00 0.00 0.00 649.00 1 2019-07-30 20:47:22.574035 2019-07-30 20:47:22.574035 \N 649.00 \N 0.00 0.00 1137 918 147 1.0 404.31 64.69 0.00 469.00 1 2019-07-31 00:41:53.640593 2019-07-31 00:41:53.640593 \N 469.00 \N 0.00 0.00 1138 919 631 1.0 628.45 100.55 0.00 729.00 1 2019-07-31 23:22:28.547425 2019-07-31 23:22:28.547425 \N 729.00 \N 0.00 0.00 1139 920 477 1.0 1399.00 0.00 0.00 1399.00 0 2019-08-01 01:22:13.106929 2019-08-01 01:23:32.236855 \N 1399.00 \N 0.00 0.00 1140 921 477 1.0 1399.00 0.00 0.00 1399.00 1 2019-08-01 01:25:14.68634 2019-08-01 01:25:14.68634 \N 1399.00 \N 0.00 0.00 1141 922 8 1.0 576.72 92.28 0.00 669.00 1 2019-08-01 01:35:47.230245 2019-08-01 01:35:47.230245 \N 669.00 \N 0.00 0.00 1142 923 608 1.0 999.00 0.00 0.00 999.00 1 2019-08-01 17:46:57.945637 2019-08-01 17:46:57.945637 \N 999.00 \N 0.00 0.00 1143 924 268 1.0 1119.83 179.17 0.00 1299.00 0 2019-08-01 23:52:36.270593 2019-08-01 23:52:46.010457 \N 1299.00 \N 0.00 0.00 1144 925 268 1.0 1119.83 179.17 0.00 1299.00 1 2019-08-01 23:53:09.4095 2019-08-01 23:53:09.4095 \N 1299.00 \N 0.00 0.00 1145 926 623 1.0 699.00 0.00 0.00 699.00 1 2019-08-03 00:25:19.539463 2019-08-03 00:25:19.539463 \N 699.00 \N 0.00 0.00 1146 927 627 1.0 999.00 0.00 0.00 999.00 1 2019-08-03 00:40:55.625901 2019-08-03 00:40:55.625901 \N 999.00 \N 0.00 0.00 1147 928 627 1.0 999.00 0.00 0.00 999.00 1 2019-08-03 17:01:48.458867 2019-08-03 17:01:48.458867 \N 999.00 \N 0.00 0.00 1148 929 630 1.0 602.59 96.41 0.00 699.00 1 2019-08-03 18:38:44.415129 2019-08-03 18:38:44.415129 \N 699.00 \N 0.00 0.00 1149 930 626 1.0 1270.00 0.00 0.00 1270.00 1 2019-08-03 19:07:40.52915 2019-08-03 19:07:40.52915 \N 1270.00 \N 0.00 0.00 1150 931 606 1.0 224.50 0.00 224.50 224.50 0 2019-08-04 00:18:36.975969 2019-08-04 00:18:58.142095 \N 449.00 \N 0.00 0.00 1151 932 576 1.0 999.00 0.00 0.00 999.00 1 2019-08-04 00:56:42.305199 2019-08-04 00:56:42.305199 \N 999.00 \N 0.00 0.00 1152 933 157 1.0 775.00 124.00 0.00 899.00 1 2019-08-04 01:03:00.547217 2019-08-04 01:03:00.547217 \N 899.00 \N 0.00 0.00 1153 934 636 1.0 829.00 0.00 0.00 829.00 1 2019-08-04 01:05:17.274946 2019-08-04 01:05:17.274946 \N 829.00 \N 0.00 0.00 1154 935 606 1.0 449.00 0.00 0.00 449.00 1 2019-08-04 01:11:08.750692 2019-08-04 01:11:08.750692 \N 449.00 \N 0.00 0.00 1155 936 569 1.0 489.00 0.00 0.00 489.00 1 2019-08-04 01:15:18.461749 2019-08-04 01:15:18.461749 \N 489.00 \N 0.00 0.00 1156 937 74 1.0 215.52 34.48 249.00 250.00 1 2019-08-05 16:26:26.273201 2019-08-05 16:26:26.273201 \N 499.00 \N 249.00 0.00 1157 938 182 1.0 1119.83 179.17 0.00 1299.00 0 2019-08-05 23:27:16.769779 2019-08-05 23:30:33.784758 \N 1299.00 \N 0.00 0.00 1158 939 182 1.0 1119.83 179.17 0.00 1299.00 1 2019-08-05 23:31:10.635284 2019-08-05 23:31:10.635284 \N 1299.00 \N 0.00 0.00 1159 940 595 1.0 699.00 0.00 0.00 699.00 1 2019-08-06 01:05:19.919879 2019-08-06 01:05:19.919879 \N 699.00 \N 0.00 0.00 1160 941 610 1.0 559.48 89.52 0.00 649.00 1 2019-08-06 20:04:16.187908 2019-08-06 20:04:16.187908 \N 649.00 \N 0.00 0.00 1161 942 523 1.0 599.00 0.00 0.00 599.00 1 2019-08-07 23:56:50.962007 2019-08-07 23:56:50.962007 \N 599.00 \N 0.00 0.00 1162 943 588 1.0 599.00 0.00 0.00 599.00 1 2019-08-08 00:12:02.579568 2019-08-08 00:12:02.579568 \N 599.00 \N 0.00 0.00 1163 944 619 1.0 569.00 0.00 0.00 569.00 1 2019-08-08 21:02:07.35806 2019-08-08 21:02:07.35806 \N 569.00 \N 0.00 0.00 1164 945 595 1.0 699.00 0.00 0.00 699.00 1 2019-08-08 21:54:39.028881 2019-08-08 21:54:39.028881 \N 699.00 \N 0.00 0.00 1165 945 625 1.0 869.00 0.00 0.00 869.00 1 2019-08-08 21:54:39.061555 2019-08-08 21:54:39.061555 \N 869.00 \N 0.00 0.00 1166 946 523 1.0 599.00 0.00 0.00 599.00 1 2019-08-09 19:00:33.487883 2019-08-09 19:00:33.487883 \N 599.00 \N 0.00 0.00 1167 947 449 1.0 1699.00 0.00 0.00 1699.00 1 2019-08-10 00:29:33.184982 2019-08-10 00:29:33.184982 \N 1699.00 \N 0.00 0.00 1168 947 602 1.0 569.00 0.00 0.00 569.00 1 2019-08-10 00:29:33.218389 2019-08-10 00:29:33.218389 \N 569.00 \N 0.00 0.00 1169 948 625 1.0 869.00 0.00 0.00 869.00 1 2019-08-10 19:47:29.437516 2019-08-10 19:47:29.437516 \N 869.00 \N 0.00 0.00 1170 949 564 1.0 1099.00 0.00 0.00 1099.00 1 2019-08-10 23:12:19.661768 2019-08-10 23:12:19.661768 \N 1099.00 \N 0.00 0.00 1171 950 577 1.0 899.00 0.00 0.00 899.00 1 2019-08-11 01:03:21.377945 2019-08-11 01:03:21.377945 \N 899.00 \N 0.00 0.00 1172 951 290 1.0 631.03 100.96 0.00 731.99 1 2019-08-11 01:07:00.948697 2019-08-11 01:07:00.948697 \N 732.00 \N 0.00 0.00 1173 952 214 1.0 365.95 58.55 424.50 424.50 0 2019-08-11 16:31:36.213148 2019-08-11 16:31:41.067304 \N 849.00 \N 0.00 50.00 1174 953 110 1.0 301.29 48.21 349.50 349.50 1 2019-08-11 16:35:30.922353 2019-08-11 16:35:30.922353 \N 699.00 \N 0.00 50.00 1175 953 214 1.0 731.90 117.10 0.00 849.00 1 2019-08-11 16:35:30.965474 2019-08-11 16:35:30.965474 \N 849.00 \N 0.00 0.00 1176 953 99 1.0 365.95 58.55 424.50 424.50 1 2019-08-11 16:35:30.999243 2019-08-11 16:35:30.999243 \N 849.00 \N 0.00 50.00 1177 954 600 1.0 549.00 0.00 0.00 549.00 1 2019-08-12 20:15:51.536361 2019-08-12 20:15:51.536361 \N 549.00 \N 0.00 0.00 1178 955 565 1.0 689.00 0.00 0.00 689.00 1 2019-08-13 19:03:10.05029 2019-08-13 19:03:10.05029 \N 689.00 \N 0.00 0.00 1179 955 588 1.0 599.00 0.00 0.00 599.00 1 2019-08-13 19:03:10.084864 2019-08-13 19:03:10.084864 \N 599.00 \N 0.00 0.00 1180 955 618 1.0 569.00 0.00 0.00 569.00 1 2019-08-13 19:03:10.107982 2019-08-13 19:03:10.107982 \N 569.00 \N 0.00 0.00 1181 955 192 1.0 327.59 52.41 99.00 380.00 1 2019-08-13 19:03:10.132272 2019-08-13 19:03:10.132272 \N 479.00 \N 99.00 0.00 1182 956 636 1.0 829.00 0.00 0.00 829.00 1 2019-08-14 01:04:17.453534 2019-08-14 01:04:17.453534 \N 829.00 \N 0.00 0.00 1183 957 387 1.0 1637.07 261.93 0.00 1899.00 1 2019-08-14 18:14:38.905126 2019-08-14 18:14:38.905126 \N 1899.00 \N 0.00 0.00 1184 958 590 1.0 1099.00 0.00 0.00 1099.00 1 2019-08-14 20:50:05.829142 2019-08-14 20:50:05.829142 \N 1099.00 \N 0.00 0.00 1185 959 629 1.0 990.52 158.48 0.00 1149.00 1 2019-08-14 21:12:43.936801 2019-08-14 21:12:43.936801 \N 1149.00 \N 0.00 0.00 1186 960 606 1.0 449.00 0.00 0.00 449.00 1 2019-08-14 22:24:57.224512 2019-08-14 22:24:57.224512 \N 449.00 \N 0.00 0.00 1187 961 623 1.0 699.00 0.00 0.00 699.00 1 2019-08-14 22:32:35.969656 2019-08-14 22:32:35.969656 \N 699.00 \N 0.00 0.00 1188 962 500 1.0 560.00 0.00 139.00 560.00 1 2019-08-15 18:40:31.000853 2019-08-15 18:40:31.000853 \N 699.00 \N 139.00 0.00 1189 963 276 1.0 430.17 68.83 0.00 499.00 1 2019-08-15 20:40:13.56633 2019-08-15 20:40:13.56633 \N 499.00 \N 0.00 0.00 1190 964 601 1.0 669.00 0.00 0.00 669.00 1 2019-08-16 20:01:27.921404 2019-08-16 20:01:27.921404 \N 669.00 \N 0.00 0.00 1191 965 604 1.0 749.00 0.00 0.00 749.00 1 2019-08-16 20:50:49.23613 2019-08-16 20:50:49.23613 \N 749.00 \N 0.00 0.00 1192 966 570 1.0 489.00 0.00 0.00 489.00 1 2019-08-17 01:03:35.91327 2019-08-17 01:03:35.91327 \N 489.00 \N 0.00 0.00 1193 966 200 1.0 456.03 72.96 0.00 528.99 1 2019-08-17 01:03:35.945433 2019-08-17 01:03:35.945433 \N 529.00 \N 0.00 0.00 1194 967 65 1.0 176.72 28.28 204.00 205.00 1 2019-08-17 21:02:14.350322 2019-08-17 21:02:14.350322 \N 409.00 \N 204.00 0.00 1195 968 623 1.0 699.00 0.00 0.00 699.00 1 2019-08-17 21:16:33.785638 2019-08-17 21:16:33.785638 \N 699.00 \N 0.00 0.00 1196 968 593 1.0 659.00 0.00 0.00 659.00 1 2019-08-17 21:16:33.842615 2019-08-17 21:16:33.842615 \N 659.00 \N 0.00 0.00 1197 969 155 1.0 516.38 82.62 0.00 599.00 1 2019-08-17 22:08:17.668691 2019-08-17 22:08:17.668691 \N 599.00 \N 0.00 0.00 1198 969 601 1.0 669.00 0.00 0.00 669.00 1 2019-08-17 22:08:17.696509 2019-08-17 22:08:17.696509 \N 669.00 \N 0.00 0.00 1199 970 53 1.0 1119.83 179.17 0.00 1299.00 1 2019-08-17 22:38:11.883262 2019-08-17 22:38:11.883262 \N 1299.00 \N 0.00 0.00 1200 971 627 1.0 999.00 0.00 0.00 999.00 1 2019-08-18 19:16:41.939186 2019-08-18 19:16:41.939186 \N 999.00 \N 0.00 0.00 1201 972 14 1.0 490.52 78.48 0.00 569.00 1 2019-08-19 18:04:33.969344 2019-08-19 18:04:33.969344 \N 569.00 \N 0.00 0.00 1202 973 367 2.0 517.24 82.76 100.00 600.00 1 2019-08-19 18:06:19.662851 2019-08-19 18:06:19.662851 \N 350.00 \N 100.00 0.00 1203 974 290 1.0 631.03 100.96 0.00 731.99 1 2019-08-19 18:44:50.270064 2019-08-19 18:44:50.270064 \N 732.00 \N 0.00 0.00 1204 975 608 1.0 999.00 0.00 0.00 999.00 1 2019-08-20 00:51:52.254262 2019-08-20 00:51:52.254262 \N 999.00 \N 0.00 0.00 1205 976 332 1.0 480.26 76.84 61.90 557.10 1 2019-08-21 00:26:49.05683 2019-08-21 00:26:49.05683 \N 619.00 \N 0.00 10.00 1206 977 636 1.0 829.00 0.00 0.00 829.00 1 2019-08-21 17:59:43.585268 2019-08-21 17:59:43.585268 \N 829.00 \N 0.00 0.00 1207 978 4 1.0 456.03 72.96 0.00 528.99 1 2019-08-21 20:10:13.184498 2019-08-21 20:10:13.184498 \N 529.00 \N 0.00 0.00 1208 979 666 1.0 869.00 0.00 0.00 869.00 1 2019-08-21 23:39:42.89833 2019-08-21 23:39:42.89833 \N 869.00 \N 0.00 0.00 1209 980 567 1.0 579.00 0.00 0.00 579.00 1 2019-08-22 01:18:36.596058 2019-08-22 01:18:36.596058 \N 579.00 \N 0.00 0.00 1210 981 674 1.0 999.00 0.00 0.00 999.00 1 2019-08-22 17:11:30.831891 2019-08-22 17:11:30.831891 \N 999.00 \N 0.00 0.00 1212 983 622 1.0 489.00 0.00 0.00 489.00 1 2019-08-22 22:34:25.68244 2019-08-22 22:34:25.68244 \N 489.00 \N 0.00 0.00 1211 982 670 1.0 639.00 0.00 0.00 639.00 0 2019-08-22 21:43:36.570244 2019-08-22 22:57:45.514727 \N 639.00 \N 0.00 0.00 1213 984 670 1.0 639.00 0.00 0.00 639.00 1 2019-08-22 22:59:21.979364 2019-08-22 22:59:21.979364 \N 639.00 \N 0.00 0.00 1214 985 653 1.0 1799.00 0.00 0.00 1799.00 0 2019-08-23 18:35:25.79795 2019-08-23 18:36:54.024097 \N 1799.00 \N 0.00 0.00 1215 986 653 1.0 1799.00 0.00 0.00 1799.00 1 2019-08-23 18:37:21.607204 2019-08-23 18:37:21.607204 \N 1799.00 \N 0.00 0.00 1216 987 594 1.0 649.00 0.00 0.00 649.00 1 2019-08-23 23:57:16.682206 2019-08-23 23:57:16.682206 \N 649.00 \N 0.00 0.00 1217 988 502 1.0 1299.00 0.00 0.00 1299.00 1 2019-08-24 16:43:21.872814 2019-08-24 16:43:21.872814 \N 1299.00 \N 0.00 0.00 1218 989 296 1.0 430.17 68.83 0.00 499.00 1 2019-08-24 17:28:47.247344 2019-08-24 17:28:47.247344 \N 499.00 \N 0.00 0.00 1219 990 369 1.0 42.24 6.76 0.00 49.00 1 2019-08-24 23:46:57.34189 2019-08-24 23:46:57.34189 \N 49.00 \N 0.00 0.00 1220 991 369 1.0 42.24 6.76 0.00 49.00 1 2019-08-24 23:50:19.985122 2019-08-24 23:50:19.985122 \N 49.00 \N 0.00 0.00 1221 992 154 1.0 421.55 67.45 0.00 489.00 0 2019-08-25 00:50:57.098172 2019-08-25 00:56:10.464443 \N 489.00 \N 0.00 0.00 1222 993 154 1.0 421.55 67.45 0.00 489.00 1 2019-08-25 00:56:38.522351 2019-08-25 00:56:38.522351 \N 489.00 \N 0.00 0.00 1223 994 663 1.0 699.00 0.00 0.00 699.00 1 2019-08-26 18:38:41.184988 2019-08-26 18:38:41.184988 \N 699.00 \N 0.00 0.00 1224 995 662 1.0 699.00 0.00 0.00 699.00 1 2019-08-28 04:02:24.061892 2019-08-28 04:02:24.061892 \N 699.00 \N 0.00 0.00 1225 996 623 1.0 699.00 0.00 0.00 699.00 1 2019-08-29 00:12:00.352225 2019-08-29 00:12:00.352225 \N 699.00 \N 0.00 0.00 1226 996 664 1.0 699.00 0.00 0.00 699.00 1 2019-08-29 00:12:00.39331 2019-08-29 00:12:00.39331 \N 699.00 \N 0.00 0.00 1227 997 327 1.0 421.55 67.45 0.00 489.00 1 2019-08-30 01:07:28.826547 2019-08-30 01:07:28.826547 \N 489.00 \N 0.00 0.00 1228 997 682 1.0 649.00 0.00 0.00 649.00 1 2019-08-30 01:07:28.854476 2019-08-30 01:07:28.854476 \N 649.00 \N 0.00 0.00 1229 998 666 1.0 869.00 0.00 0.00 869.00 1 2019-08-30 17:04:54.638773 2019-08-30 17:04:54.638773 \N 869.00 \N 0.00 0.00 1230 999 500 1.0 699.00 0.00 0.00 699.00 1 2019-08-30 22:41:06.722318 2019-08-30 22:41:06.722318 \N 699.00 \N 0.00 0.00 1231 1000 664 1.0 699.00 0.00 0.00 699.00 1 2019-08-30 23:41:59.281986 2019-08-30 23:41:59.281986 \N 699.00 \N 0.00 0.00 1232 1000 623 1.0 699.00 0.00 0.00 699.00 1 2019-08-30 23:41:59.316967 2019-08-30 23:41:59.316967 \N 699.00 \N 0.00 0.00 1233 1001 662 2.0 1398.00 0.00 0.00 1398.00 1 2019-08-31 03:44:55.938567 2019-08-31 03:44:55.938567 \N 699.00 \N 0.00 0.00 1234 1002 699 1.0 1399.00 0.00 0.00 1399.00 1 2019-08-31 03:53:28.07322 2019-08-31 03:53:28.07322 \N 1399.00 \N 0.00 0.00 1236 1004 369 2.0 84.48 13.52 0.00 98.00 1 2019-08-31 16:54:53.560879 2019-08-31 16:54:53.560879 \N 49.00 \N 0.00 0.00 1237 1005 638 1.0 619.00 0.00 0.00 619.00 0 2019-08-31 17:03:16.204349 2019-08-31 17:03:51.623749 \N 619.00 \N 0.00 0.00 1238 1006 638 1.0 619.00 0.00 0.00 619.00 1 2019-08-31 17:04:08.212059 2019-08-31 17:04:08.212059 \N 619.00 \N 0.00 0.00 1235 1003 638 1.0 619.00 0.00 0.00 619.00 0 2019-08-31 16:53:44.049652 2019-08-31 17:05:21.973481 \N 619.00 \N 0.00 0.00 1239 1007 674 1.0 999.00 0.00 0.00 999.00 1 2019-08-31 18:04:29.357057 2019-08-31 18:04:29.357057 \N 999.00 \N 0.00 0.00 1240 1008 668 1.0 299.00 0.00 0.00 299.00 1 2019-08-31 18:54:46.647735 2019-08-31 18:54:46.647735 \N 299.00 \N 0.00 0.00 1241 1008 571 1.0 799.00 0.00 0.00 799.00 1 2019-08-31 18:54:46.699709 2019-08-31 18:54:46.699709 \N 799.00 \N 0.00 0.00 1242 1009 691 1.0 1299.00 0.00 0.00 1299.00 1 2019-08-31 20:58:03.203652 2019-08-31 20:58:03.203652 \N 1299.00 \N 0.00 0.00 1243 1010 548 1.0 1499.00 0.00 0.00 1499.00 1 2019-08-31 21:19:24.007582 2019-08-31 21:19:24.007582 \N 1499.00 \N 0.00 0.00 1244 1011 635 1.0 569.00 0.00 0.00 569.00 0 2019-08-31 21:57:08.070725 2019-08-31 21:57:39.315627 \N 569.00 \N 0.00 0.00 1246 1013 626 1.0 1270.00 0.00 0.00 1270.00 1 2019-08-31 22:54:04.313286 2019-08-31 22:54:04.313286 \N 1270.00 \N 0.00 0.00 1247 1014 703 1.0 1599.00 0.00 0.00 1599.00 1 2019-09-01 03:09:34.215558 2019-09-01 03:09:34.215558 \N 1599.00 \N 0.00 0.00 1248 1015 662 1.0 699.00 0.00 0.00 699.00 1 2019-09-01 03:10:23.234162 2019-09-01 03:10:23.234162 \N 699.00 \N 0.00 0.00 1249 1016 369 2.0 84.48 13.52 0.00 98.00 1 2019-09-01 03:11:10.193214 2019-09-01 03:11:10.193214 \N 49.00 \N 0.00 0.00 1250 1016 669 2.0 838.00 0.00 0.00 838.00 1 2019-09-01 03:11:10.23095 2019-09-01 03:11:10.23095 \N 419.00 \N 0.00 0.00 1251 1017 441 1.0 1464.66 234.35 0.00 1699.01 1 2019-09-01 03:17:53.572725 2019-09-01 03:17:53.572725 \N 1699.00 \N 0.00 0.00 1252 1018 662 1.0 699.00 0.00 0.00 699.00 1 2019-09-01 03:20:09.336679 2019-09-01 03:20:09.336679 \N 699.00 \N 0.00 0.00 1253 1019 674 1.0 999.00 0.00 0.00 999.00 1 2019-09-01 03:20:42.031114 2019-09-01 03:20:42.031114 \N 999.00 \N 0.00 0.00 1254 1020 704 1.0 349.00 0.00 0.00 349.00 1 2019-09-01 03:25:32.133531 2019-09-01 03:25:32.133531 \N 349.00 \N 0.00 0.00 1255 1021 623 1.0 699.00 0.00 0.00 699.00 1 2019-09-01 19:47:22.689612 2019-09-01 19:47:22.689612 \N 699.00 \N 0.00 0.00 1256 1022 622 1.0 489.00 0.00 0.00 489.00 1 2019-09-02 17:33:19.228973 2019-09-02 17:33:19.228973 \N 489.00 \N 0.00 0.00 1257 1022 623 1.0 699.00 0.00 0.00 699.00 1 2019-09-02 17:33:19.257836 2019-09-02 17:33:19.257836 \N 699.00 \N 0.00 0.00 1258 1022 87 1.0 293.10 46.90 340.00 340.00 1 2019-09-02 17:33:19.282905 2019-09-02 17:33:19.282905 \N 680.00 \N 0.00 50.00 1259 1022 111 1.0 271.55 43.45 314.00 315.00 1 2019-09-02 17:33:19.314106 2019-09-02 17:33:19.314106 \N 629.00 \N 314.00 0.00 1260 1023 601 1.0 669.00 0.00 0.00 669.00 1 2019-09-02 17:39:12.863389 2019-09-02 17:39:12.863389 \N 669.00 \N 0.00 0.00 1261 1024 600 1.0 549.00 0.00 0.00 549.00 1 2019-09-02 22:34:20.211738 2019-09-02 22:34:20.211738 \N 549.00 \N 0.00 0.00 1262 1025 596 1.0 1299.00 0.00 0.00 1299.00 1 2019-09-03 00:11:20.649349 2019-09-03 00:11:20.649349 \N 1299.00 \N 0.00 0.00 1263 1025 690 1.0 799.00 0.00 0.00 799.00 1 2019-09-03 00:11:20.681319 2019-09-03 00:11:20.681319 \N 799.00 \N 0.00 0.00 1264 1025 664 1.0 699.00 0.00 0.00 699.00 1 2019-09-03 00:11:20.712172 2019-09-03 00:11:20.712172 \N 699.00 \N 0.00 0.00 1265 1026 598 1.0 679.00 0.00 0.00 679.00 1 2019-09-03 00:18:04.318709 2019-09-03 00:18:04.318709 \N 679.00 \N 0.00 0.00 1266 1027 567 1.0 579.00 0.00 0.00 579.00 1 2019-09-03 00:20:28.306381 2019-09-03 00:20:28.306381 \N 579.00 \N 0.00 0.00 1267 1028 632 1.0 479.00 0.00 0.00 479.00 1 2019-09-03 20:14:46.22836 2019-09-03 20:14:46.22836 \N 479.00 \N 0.00 0.00 1268 1029 668 2.0 598.00 0.00 0.00 598.00 1 2019-09-03 20:16:12.637759 2019-09-03 20:16:12.637759 \N 299.00 \N 0.00 0.00 1269 1029 509 1.0 599.00 0.00 0.00 599.00 1 2019-09-03 20:16:12.665089 2019-09-03 20:16:12.665089 \N 599.00 \N 0.00 0.00 1270 1030 684 1.0 1499.00 0.00 0.00 1499.00 1 2019-09-04 00:07:13.973735 2019-09-04 00:07:13.973735 \N 1499.00 \N 0.00 0.00 1271 1031 666 1.0 869.00 0.00 0.00 869.00 1 2019-09-04 20:58:12.037514 2019-09-04 20:58:12.037514 \N 869.00 \N 0.00 0.00 1272 1032 633 1.0 719.00 0.00 0.00 719.00 1 2019-09-04 22:49:05.403849 2019-09-04 22:49:05.403849 \N 719.00 \N 0.00 0.00 1273 1032 638 1.0 541.00 0.00 78.00 541.00 1 2019-09-04 22:49:05.438111 2019-09-04 22:49:05.438111 \N 619.00 \N 78.00 0.00 1274 1033 689 1.0 1599.00 0.00 0.00 1599.00 1 2019-09-05 16:58:23.193625 2019-09-05 16:58:23.193625 \N 1599.00 \N 0.00 0.00 1275 1034 348 1.0 1292.24 206.76 0.00 1499.00 1 2019-09-05 18:03:46.168845 2019-09-05 18:03:46.168845 \N 1499.00 \N 0.00 0.00 1276 1035 664 1.0 699.00 0.00 0.00 699.00 1 2019-09-05 20:35:44.409983 2019-09-05 20:35:44.409983 \N 699.00 \N 0.00 0.00 1277 1036 623 1.0 699.00 0.00 0.00 699.00 1 2019-09-06 00:24:27.621571 2019-09-06 00:24:27.621571 \N 699.00 \N 0.00 0.00 1278 1037 318 1.0 404.31 64.69 0.00 469.00 1 2019-09-06 17:14:48.912397 2019-09-06 17:14:48.912397 \N 469.00 \N 0.00 0.00 1279 1037 322 1.0 421.55 67.45 0.00 489.00 1 2019-09-06 17:14:48.945887 2019-09-06 17:14:48.945887 \N 489.00 \N 0.00 0.00 1280 1038 329 1.0 430.17 68.83 0.00 499.00 1 2019-09-06 20:17:20.911929 2019-09-06 20:17:20.911929 \N 499.00 \N 0.00 0.00 1281 1039 433 1.0 861.21 137.79 0.00 999.00 1 2019-09-06 22:04:53.352214 2019-09-06 22:04:53.352214 \N 999.00 \N 0.00 0.00 1282 1040 476 1.0 85.34 13.65 0.00 98.99 1 2019-09-06 23:33:00.917215 2019-09-06 23:33:00.917215 \N 99.00 \N 0.00 0.00 1283 1041 701 1.0 1549.00 0.00 0.00 1549.00 1 2019-09-07 00:25:31.75736 2019-09-07 00:25:31.75736 \N 1549.00 \N 0.00 0.00 1284 1042 668 1.0 299.00 0.00 0.00 299.00 1 2019-09-07 00:29:18.286798 2019-09-07 00:29:18.286798 \N 299.00 \N 0.00 0.00 1285 1043 601 1.0 669.00 0.00 0.00 669.00 0 2019-09-07 16:14:45.875108 2019-09-07 16:14:52.297917 \N 669.00 \N 0.00 0.00 1286 1044 601 1.0 669.00 0.00 0.00 669.00 0 2019-09-07 16:15:46.024899 2019-09-07 16:15:58.295588 \N 669.00 \N 0.00 0.00 1287 1045 601 1.0 669.00 0.00 0.00 669.00 1 2019-09-07 16:16:25.256032 2019-09-07 16:16:25.256032 \N 669.00 \N 0.00 0.00 1288 1046 674 1.0 999.00 0.00 0.00 999.00 1 2019-09-07 17:29:00.388117 2019-09-07 17:29:00.388117 \N 999.00 \N 0.00 0.00 1289 1047 662 1.0 699.00 0.00 0.00 699.00 1 2019-09-07 17:30:06.025883 2019-09-07 17:30:06.025883 \N 699.00 \N 0.00 0.00 1290 1048 590 1.0 1099.00 0.00 0.00 1099.00 1 2019-09-07 18:34:05.733423 2019-09-07 18:34:05.733423 \N 1099.00 \N 0.00 0.00 1291 1049 623 1.0 699.00 0.00 0.00 699.00 1 2019-09-07 18:49:49.722271 2019-09-07 18:49:49.722271 \N 699.00 \N 0.00 0.00 1292 1050 672 2.0 1398.00 0.00 0.00 1398.00 1 2019-09-07 19:38:41.306606 2019-09-07 19:38:41.306606 \N 699.00 \N 0.00 0.00 1293 1051 623 1.0 699.00 0.00 0.00 699.00 1 2019-09-07 22:53:00.695167 2019-09-07 22:53:00.695167 \N 699.00 \N 0.00 0.00 1294 1052 498 1.0 669.00 0.00 0.00 669.00 1 2019-09-07 22:53:24.412375 2019-09-07 22:53:24.412375 \N 669.00 \N 0.00 0.00 1295 1053 664 1.0 699.00 0.00 0.00 699.00 1 2019-09-08 00:06:28.069273 2019-09-08 00:06:28.069273 \N 699.00 \N 0.00 0.00 1296 1053 623 1.0 699.00 0.00 0.00 699.00 1 2019-09-08 00:06:28.097803 2019-09-08 00:06:28.097803 \N 699.00 \N 0.00 0.00 1297 1054 647 1.0 820.00 0.00 149.00 820.00 1 2019-09-09 17:40:19.838472 2019-09-09 17:40:19.838472 \N 969.00 \N 149.00 0.00 1298 1055 662 1.0 699.00 0.00 0.00 699.00 1 2019-09-09 20:46:40.289189 2019-09-09 20:46:40.289189 \N 699.00 \N 0.00 0.00 1299 1056 606 1.0 449.00 0.00 0.00 449.00 1 2019-09-09 21:08:03.71969 2019-09-09 21:08:03.71969 \N 449.00 \N 0.00 0.00 1300 1057 665 1.0 469.00 0.00 0.00 469.00 1 2019-09-09 23:36:24.126683 2019-09-09 23:36:24.126683 \N 469.00 \N 0.00 0.00 1301 1058 668 1.0 299.00 0.00 0.00 299.00 0 2019-09-10 00:36:41.030795 2019-09-10 00:39:01.880219 \N 299.00 \N 0.00 0.00 1302 1059 668 1.0 299.00 0.00 0.00 299.00 1 2019-09-10 00:44:43.561182 2019-09-10 00:44:43.561182 \N 299.00 \N 0.00 0.00 1303 1059 369 2.0 84.48 13.52 0.00 98.00 1 2019-09-10 00:44:43.596275 2019-09-10 00:44:43.596275 \N 49.00 \N 0.00 0.00 1304 1059 704 1.0 349.00 0.00 0.00 349.00 1 2019-09-10 00:44:43.619997 2019-09-10 00:44:43.619997 \N 349.00 \N 0.00 0.00 1305 1060 623 1.0 699.00 0.00 0.00 699.00 1 2019-09-10 01:29:59.951047 2019-09-10 01:29:59.951047 \N 699.00 \N 0.00 0.00 1306 1061 698 1.0 799.00 0.00 0.00 799.00 0 2019-09-10 02:28:01.007304 2019-09-10 02:28:18.805484 \N 799.00 \N 0.00 0.00 1308 1063 683 1.0 569.00 0.00 0.00 569.00 1 2019-09-10 02:51:52.055451 2019-09-10 02:51:52.055451 \N 569.00 \N 0.00 0.00 1309 1063 642 1.0 879.00 0.00 0.00 879.00 1 2019-09-10 02:51:52.082434 2019-09-10 02:51:52.082434 \N 879.00 \N 0.00 0.00 1310 1063 476 2.0 170.69 27.31 0.00 198.00 1 2019-09-10 02:51:52.10501 2019-09-10 02:51:52.10501 \N 99.00 \N 0.00 0.00 1311 1064 434 1.0 843.97 135.04 0.00 979.01 1 2019-09-10 17:18:57.467451 2019-09-10 17:18:57.467451 \N 979.00 \N 0.00 0.00 911 726 204 1.0 861.21 137.79 0.00 999.00 0 2019-06-11 00:27:58.447762 2019-09-10 21:48:00.188448 \N 999.00 \N 0.00 0.00 1312 1065 660 1.0 1599.00 0.00 0.00 1599.00 1 2019-09-10 22:22:16.510902 2019-09-10 22:22:16.510902 \N 1599.00 \N 0.00 0.00 1313 1066 491 1.0 699.30 0.00 299.70 699.30 1 2019-09-11 17:08:12.400894 2019-09-11 17:08:12.400894 \N 999.00 \N 0.00 30.00 1314 1067 294 1.0 412.93 66.07 110.00 479.00 1 2019-09-11 17:45:02.155875 2019-09-11 17:45:02.155875 \N 589.00 \N 110.00 0.00 1315 1068 147 1.0 404.31 64.69 0.00 469.00 1 2019-09-11 20:25:43.96256 2019-09-11 20:25:43.96256 \N 469.00 \N 0.00 0.00 1316 1069 508 1.0 699.00 0.00 0.00 699.00 0 2019-09-12 00:32:43.793407 2019-09-12 00:33:03.998023 \N 699.00 \N 0.00 0.00 1317 1070 508 1.0 699.00 0.00 0.00 699.00 1 2019-09-12 00:33:25.551979 2019-09-12 00:33:25.551979 \N 699.00 \N 0.00 0.00 1318 1071 661 1.0 699.00 0.00 0.00 699.00 0 2019-09-12 01:12:54.013309 2019-09-12 01:51:58.167663 \N 699.00 \N 0.00 0.00 1319 1072 661 1.0 599.00 0.00 0.00 599.00 1 2019-09-12 01:52:13.592784 2019-09-12 01:52:13.592784 \N 599.00 \N 0.00 0.00 1320 1073 629 1.0 990.52 158.48 0.00 1149.00 1 2019-09-12 20:06:45.68573 2019-09-12 20:06:45.68573 \N 1149.00 \N 0.00 0.00 1321 1074 668 1.0 299.00 0.00 0.00 299.00 1 2019-09-13 00:10:26.125553 2019-09-13 00:10:26.125553 \N 299.00 \N 0.00 0.00 1322 1075 618 1.0 569.00 0.00 0.00 569.00 1 2019-09-13 00:37:42.400487 2019-09-13 00:37:42.400487 \N 569.00 \N 0.00 0.00 1324 1076 656 1.0 1899.00 0.00 0.00 1899.00 0 2019-09-13 01:10:28.441658 2019-09-13 01:11:14.212887 \N 1899.00 \N 0.00 0.00 1323 1076 652 1.0 1599.00 0.00 0.00 1599.00 0 2019-09-13 01:10:28.407675 2019-09-13 01:11:14.239622 \N 1599.00 \N 0.00 0.00 1325 1077 656 1.0 1899.00 0.00 0.00 1899.00 1 2019-09-13 01:12:01.451487 2019-09-13 01:12:01.451487 \N 1899.00 \N 0.00 0.00 1326 1077 652 1.0 1599.00 0.00 0.00 1599.00 1 2019-09-13 01:12:01.479187 2019-09-13 01:12:01.479187 \N 1599.00 \N 0.00 0.00 1327 1078 100 1.0 172.41 27.59 199.00 200.00 1 2019-09-13 01:15:00.067682 2019-09-13 01:15:00.067682 \N 399.00 \N 199.00 0.00 1328 1079 72 1.0 525.86 84.14 0.00 610.00 1 2019-09-13 18:29:22.241269 2019-09-13 18:29:22.241269 \N 610.00 \N 0.00 0.00 1329 1079 632 1.0 479.00 0.00 0.00 479.00 1 2019-09-13 18:29:22.279724 2019-09-13 18:29:22.279724 \N 479.00 \N 0.00 0.00 1330 1080 479 1.0 675.00 0.00 0.00 675.00 1 2019-09-13 19:27:45.604029 2019-09-13 19:27:45.604029 \N 675.00 \N 0.00 0.00 1331 1081 596 1.0 1299.00 0.00 0.00 1299.00 1 2019-09-13 20:21:49.818516 2019-09-13 20:21:49.818516 \N 1299.00 \N 0.00 0.00 1332 1082 567 1.0 579.00 0.00 0.00 579.00 1 2019-09-13 20:52:58.089792 2019-09-13 20:52:58.089792 \N 579.00 \N 0.00 0.00 1333 1083 115 1.0 280.17 44.83 324.00 325.00 1 2019-09-13 20:58:44.102435 2019-09-13 20:58:44.102435 \N 649.00 \N 324.00 0.00 1334 1084 598 1.0 679.00 0.00 0.00 679.00 1 2019-09-13 21:34:38.258698 2019-09-13 21:34:38.258698 \N 679.00 \N 0.00 0.00 1335 1085 622 1.0 489.00 0.00 0.00 489.00 1 2019-09-13 22:05:50.76392 2019-09-13 22:05:50.76392 \N 489.00 \N 0.00 0.00 1336 1085 623 1.0 699.00 0.00 0.00 699.00 1 2019-09-13 22:05:50.789339 2019-09-13 22:05:50.789339 \N 699.00 \N 0.00 0.00 1337 1086 696 1.0 625.00 0.00 0.00 625.00 1 2019-09-14 01:57:09.721231 2019-09-14 01:57:09.721231 \N 625.00 \N 0.00 0.00 1338 1087 600 1.0 549.00 0.00 0.00 549.00 1 2019-09-14 16:27:08.000083 2019-09-14 16:27:08.000083 \N 549.00 \N 0.00 0.00 1339 1087 83 1.0 301.72 48.28 279.00 350.00 1 2019-09-14 16:27:08.037165 2019-09-14 16:27:08.037165 \N 629.00 \N 279.00 0.00 1340 1088 247 1.0 1119.83 179.17 0.00 1299.00 0 2019-09-14 17:43:48.841888 2019-09-14 17:44:35.58885 \N 1299.00 \N 0.00 0.00 1341 1089 623 1.0 699.00 0.00 0.00 699.00 1 2019-09-14 17:55:49.570566 2019-09-14 17:55:49.570566 \N 699.00 \N 0.00 0.00 1342 1089 682 1.0 649.00 0.00 0.00 649.00 1 2019-09-14 17:55:49.601357 2019-09-14 17:55:49.601357 \N 649.00 \N 0.00 0.00 1343 1089 670 1.0 639.00 0.00 0.00 639.00 1 2019-09-14 17:55:49.627819 2019-09-14 17:55:49.627819 \N 639.00 \N 0.00 0.00 1344 1090 603 1.0 1199.00 0.00 0.00 1199.00 1 2019-09-14 18:29:41.63797 2019-09-14 18:29:41.63797 \N 1199.00 \N 0.00 0.00 1345 1091 590 1.0 1099.00 0.00 0.00 1099.00 1 2019-09-14 19:05:55.742424 2019-09-14 19:05:55.742424 \N 1099.00 \N 0.00 0.00 1346 1091 670 1.0 639.00 0.00 0.00 639.00 1 2019-09-14 19:05:55.767838 2019-09-14 19:05:55.767838 \N 639.00 \N 0.00 0.00 1347 1092 670 1.0 639.00 0.00 0.00 639.00 1 2019-09-14 19:40:40.141866 2019-09-14 19:40:40.141866 \N 639.00 \N 0.00 0.00 1348 1093 670 1.0 639.00 0.00 0.00 639.00 1 2019-09-14 20:25:06.874029 2019-09-14 20:25:06.874029 \N 639.00 \N 0.00 0.00 1349 1093 597 1.0 649.00 0.00 0.00 649.00 1 2019-09-14 20:25:06.899301 2019-09-14 20:25:06.899301 \N 649.00 \N 0.00 0.00 1350 1093 623 1.0 699.00 0.00 0.00 699.00 1 2019-09-14 20:25:06.920974 2019-09-14 20:25:06.920974 \N 699.00 \N 0.00 0.00 1351 1094 573 1.0 1249.00 0.00 0.00 1249.00 1 2019-09-14 20:38:12.244393 2019-09-14 20:38:12.244393 \N 1249.00 \N 0.00 0.00 1352 1095 681 1.0 759.00 0.00 0.00 759.00 1 2019-09-14 21:51:16.103452 2019-09-14 21:51:16.103452 \N 759.00 \N 0.00 0.00 1353 1096 702 1.0 1599.00 0.00 0.00 1599.00 1 2019-09-14 22:26:29.459928 2019-09-14 22:26:29.459928 \N 1599.00 \N 0.00 0.00 1354 1097 632 2.0 958.00 0.00 0.00 958.00 0 2019-09-14 22:40:05.290329 2019-09-14 22:40:10.269779 \N 479.00 \N 0.00 0.00 1355 1098 632 1.0 479.00 0.00 0.00 479.00 1 2019-09-14 22:40:33.346091 2019-09-14 22:40:33.346091 \N 479.00 \N 0.00 0.00 1356 1099 699 1.0 1399.00 0.00 0.00 1399.00 1 2019-09-15 00:01:14.877009 2019-09-15 00:01:14.877009 \N 1399.00 \N 0.00 0.00 1357 1100 692 1.0 1299.00 0.00 0.00 1299.00 1 2019-09-15 00:27:08.214926 2019-09-15 00:27:08.214926 \N 1299.00 \N 0.00 0.00 1358 1101 572 1.0 1199.00 0.00 0.00 1199.00 0 2019-09-15 00:34:50.083001 2019-09-15 00:35:59.388332 \N 1199.00 \N 0.00 0.00 1359 1102 692 1.0 1299.00 0.00 0.00 1299.00 1 2019-09-15 00:36:31.720357 2019-09-15 00:36:31.720357 \N 1299.00 \N 0.00 0.00 1360 1102 572 1.0 1199.00 0.00 0.00 1199.00 1 2019-09-15 00:36:31.74543 2019-09-15 00:36:31.74543 \N 1199.00 \N 0.00 0.00 1361 1103 670 1.0 639.00 0.00 0.00 639.00 1 2019-09-15 00:42:27.80235 2019-09-15 00:42:27.80235 \N 639.00 \N 0.00 0.00 1362 1104 598 1.0 679.00 0.00 0.00 679.00 1 2019-09-15 17:13:47.61398 2019-09-15 17:13:47.61398 \N 679.00 \N 0.00 0.00 1363 1105 696 1.0 625.00 0.00 0.00 625.00 1 2019-09-15 19:17:59.448851 2019-09-15 19:17:59.448851 \N 625.00 \N 0.00 0.00 1364 1106 672 1.0 699.00 0.00 0.00 699.00 1 2019-09-17 19:48:42.371289 2019-09-17 19:48:42.371289 \N 699.00 \N 0.00 0.00 1368 1107 623 1.0 699.00 0.00 0.00 699.00 0 2019-09-17 19:53:00.233932 2019-09-17 19:53:19.634691 \N 699.00 \N 0.00 0.00 1367 1107 670 1.0 639.00 0.00 0.00 639.00 0 2019-09-17 19:53:00.212024 2019-09-17 19:53:19.657093 \N 639.00 \N 0.00 0.00 1366 1107 669 1.0 419.00 0.00 0.00 419.00 0 2019-09-17 19:53:00.190352 2019-09-17 19:53:19.676176 \N 419.00 \N 0.00 0.00 1365 1107 673 1.0 560.00 0.00 0.00 560.00 0 2019-09-17 19:53:00.16562 2019-09-17 19:53:19.695482 \N 560.00 \N 0.00 0.00 1369 1108 623 1.0 699.00 0.00 0.00 699.00 1 2019-09-17 19:55:05.818681 2019-09-17 19:55:05.818681 \N 699.00 \N 0.00 0.00 1370 1108 670 1.0 639.00 0.00 0.00 639.00 1 2019-09-17 19:55:05.843424 2019-09-17 19:55:05.843424 \N 639.00 \N 0.00 0.00 1371 1108 669 1.0 419.00 0.00 0.00 419.00 1 2019-09-17 19:55:05.866803 2019-09-17 19:55:05.866803 \N 419.00 \N 0.00 0.00 1372 1108 673 1.0 560.00 0.00 0.00 560.00 1 2019-09-17 19:55:05.889312 2019-09-17 19:55:05.889312 \N 560.00 \N 0.00 0.00 1373 1109 369 1.0 42.24 6.76 0.00 49.00 1 2019-09-18 18:12:22.161223 2019-09-18 18:12:22.161223 \N 49.00 \N 0.00 0.00 1374 1110 60 1.0 474.14 75.86 149.00 550.00 1 2019-09-18 18:36:51.27825 2019-09-18 18:36:51.27825 \N 699.00 \N 149.00 0.00 1375 1111 691 1.0 1299.00 0.00 0.00 1299.00 1 2019-09-18 19:25:02.469202 2019-09-18 19:25:02.469202 \N 1299.00 \N 0.00 0.00 1376 1112 681 1.0 759.00 0.00 0.00 759.00 1 2019-09-18 23:32:44.544474 2019-09-18 23:32:44.544474 \N 759.00 \N 0.00 0.00 1377 1113 620 1.0 449.00 0.00 0.00 449.00 1 2019-09-19 00:40:35.492022 2019-09-19 00:40:35.492022 \N 449.00 \N 0.00 0.00 1379 1114 664 1.0 499.00 0.00 200.00 499.00 0 2019-09-19 16:29:15.855949 2019-09-19 16:29:23.28699 \N 699.00 \N 200.00 0.00 1378 1114 623 1.0 699.00 0.00 0.00 699.00 0 2019-09-19 16:29:15.81363 2019-09-19 16:29:23.313678 \N 699.00 \N 0.00 0.00 1380 1115 664 1.0 499.00 0.00 200.00 499.00 1 2019-09-19 16:30:13.203362 2019-09-19 16:30:13.203362 \N 699.00 \N 200.00 0.00 1381 1115 623 1.0 699.00 0.00 0.00 699.00 1 2019-09-19 16:30:13.239377 2019-09-19 16:30:13.239377 \N 699.00 \N 0.00 0.00 1382 1116 691 1.0 1299.00 0.00 0.00 1299.00 1 2019-09-19 21:02:26.408477 2019-09-19 21:02:26.408477 \N 1299.00 \N 0.00 0.00 1383 1117 623 1.0 699.00 0.00 0.00 699.00 1 2019-09-19 21:05:27.288301 2019-09-19 21:05:27.288301 \N 699.00 \N 0.00 0.00 1385 1119 670 1.0 639.00 0.00 0.00 639.00 1 2019-09-20 16:34:40.909842 2019-09-20 16:34:40.909842 \N 639.00 \N 0.00 0.00 1386 1120 623 1.0 699.00 0.00 0.00 699.00 1 2019-09-20 16:57:24.231491 2019-09-20 16:57:24.231491 \N 699.00 \N 0.00 0.00 1387 1121 597 1.0 649.00 0.00 0.00 649.00 1 2019-09-20 19:56:24.746095 2019-09-20 19:56:24.746095 \N 649.00 \N 0.00 0.00 1388 1122 690 1.0 799.00 0.00 0.00 799.00 1 2019-09-20 20:59:58.288165 2019-09-20 20:59:58.288165 \N 799.00 \N 0.00 0.00 1389 1122 571 1.0 799.00 0.00 0.00 799.00 1 2019-09-20 20:59:58.327446 2019-09-20 20:59:58.327446 \N 799.00 \N 0.00 0.00 1390 1123 697 1.0 799.00 0.00 0.00 799.00 1 2019-09-20 22:34:18.670574 2019-09-20 22:34:18.670574 \N 799.00 \N 0.00 0.00 1391 1124 575 1.0 1169.00 0.00 0.00 1169.00 1 2019-09-21 00:51:10.385811 2019-09-21 00:51:10.385811 \N 1169.00 \N 0.00 0.00 1392 1125 623 1.0 699.00 0.00 0.00 699.00 1 2019-09-21 17:44:07.512226 2019-09-21 17:44:07.512226 \N 699.00 \N 0.00 0.00 1393 1126 670 1.0 639.00 0.00 0.00 639.00 1 2019-09-21 17:45:11.910693 2019-09-21 17:45:11.910693 \N 639.00 \N 0.00 0.00 1394 1127 476 2.0 170.69 27.31 0.00 198.00 1 2019-09-21 18:30:04.466878 2019-09-21 18:30:04.466878 \N 99.00 \N 0.00 0.00 1395 1128 674 1.0 999.00 0.00 0.00 999.00 1 2019-09-21 22:31:20.654853 2019-09-21 22:31:20.654853 \N 999.00 \N 0.00 0.00 1396 1129 677 1.0 699.00 0.00 0.00 699.00 1 2019-09-21 22:34:15.566452 2019-09-21 22:34:15.566452 \N 699.00 \N 0.00 0.00 1397 1130 710 1.0 1199.00 0.00 0.00 1199.00 1 2019-09-21 22:39:05.90448 2019-09-21 22:39:05.90448 \N 1199.00 \N 0.00 0.00 1398 1131 597 1.0 649.00 0.00 0.00 649.00 1 2019-09-21 23:15:25.46459 2019-09-21 23:15:25.46459 \N 649.00 \N 0.00 0.00 1399 1132 677 1.0 525.00 0.00 174.00 525.00 1 2019-09-22 00:00:02.314348 2019-09-22 00:00:02.314348 \N 699.00 \N 174.00 0.00 1400 1133 710 1.0 1199.00 0.00 0.00 1199.00 1 2019-09-22 00:44:35.363713 2019-09-22 00:44:35.363713 \N 1199.00 \N 0.00 0.00 1402 1135 273 1.0 1378.45 220.55 0.00 1599.00 1 2019-09-22 20:19:42.920497 2019-09-22 20:19:42.920497 \N 1599.00 \N 0.00 0.00 1401 1134 273 1.0 1378.45 220.55 0.00 1599.00 0 2019-09-22 20:17:52.920196 2019-09-22 20:30:04.991193 \N 1599.00 \N 0.00 0.00 1403 1136 692 1.0 1299.00 0.00 0.00 1299.00 1 2019-09-23 17:52:25.337712 2019-09-23 17:52:25.337712 \N 1299.00 \N 0.00 0.00 1404 1137 673 1.0 560.00 0.00 0.00 560.00 1 2019-09-23 20:47:49.502711 2019-09-23 20:47:49.502711 \N 560.00 \N 0.00 0.00 1405 1137 665 1.0 469.00 0.00 0.00 469.00 1 2019-09-23 20:47:49.542988 2019-09-23 20:47:49.542988 \N 469.00 \N 0.00 0.00 1406 1138 668 3.0 897.00 0.00 0.00 897.00 1 2019-09-24 00:42:23.864429 2019-09-24 00:42:23.864429 \N 299.00 \N 0.00 0.00 1407 1139 670 1.0 639.00 0.00 0.00 639.00 1 2019-09-24 00:58:23.768644 2019-09-24 00:58:23.768644 \N 639.00 \N 0.00 0.00 1408 1140 623 1.0 699.00 0.00 0.00 699.00 1 2019-09-24 01:06:33.774004 2019-09-24 01:06:33.774004 \N 699.00 \N 0.00 0.00 1409 1141 623 1.0 699.00 0.00 0.00 699.00 1 2019-09-24 19:04:57.968153 2019-09-24 19:04:57.968153 \N 699.00 \N 0.00 0.00 1410 1141 187 1.0 861.21 137.79 0.00 999.00 1 2019-09-24 19:04:58.007857 2019-09-24 19:04:58.007857 \N 999.00 \N 0.00 0.00 1411 1142 623 1.0 699.00 0.00 0.00 699.00 1 2019-09-24 19:09:17.112209 2019-09-24 19:09:17.112209 \N 699.00 \N 0.00 0.00 1412 1143 638 1.0 464.25 0.00 154.75 464.25 1 2019-09-25 01:22:50.404538 2019-09-25 01:22:50.404538 \N 619.00 \N 0.00 25.00 1413 1144 476 1.0 64.66 10.35 24.00 75.01 1 2019-09-25 01:27:39.514231 2019-09-25 01:27:39.514231 \N 99.00 \N 24.00 0.00 1414 1144 398 1.0 387.93 62.07 149.00 450.00 1 2019-09-25 01:27:39.541628 2019-09-25 01:27:39.541628 \N 599.00 \N 149.00 0.00 1415 1144 628 1.0 711.21 113.79 274.00 825.00 1 2019-09-25 01:27:39.565402 2019-09-25 01:27:39.565402 \N 1099.00 \N 274.00 0.00 1416 1145 82 1.0 576.72 92.28 0.00 669.00 1 2019-09-25 16:28:43.462785 2019-09-25 16:28:43.462785 \N 669.00 \N 0.00 0.00 1417 1146 603 1.0 1199.00 0.00 0.00 1199.00 1 2019-09-25 22:58:31.654477 2019-09-25 22:58:31.654477 \N 1199.00 \N 0.00 0.00 1418 1147 668 1.0 299.00 0.00 0.00 299.00 1 2019-09-26 16:28:44.604872 2019-09-26 16:28:44.604872 \N 299.00 \N 0.00 0.00 1419 1148 550 1.0 1469.00 0.00 0.00 1469.00 1 2019-09-26 18:30:04.149342 2019-09-26 18:30:04.149342 \N 1469.00 \N 0.00 0.00 1420 1149 525 1.0 1099.00 0.00 0.00 1099.00 1 2019-09-26 19:07:16.546703 2019-09-26 19:07:16.546703 \N 1099.00 \N 0.00 0.00 1421 1150 529 1.0 751.00 0.00 48.00 751.00 1 2019-09-26 19:37:10.715463 2019-09-26 19:37:10.715463 \N 799.00 \N 48.00 0.00 1422 1151 626 1.0 1270.00 0.00 0.00 1270.00 1 2019-09-26 20:40:30.253237 2019-09-26 20:40:30.253237 \N 1270.00 \N 0.00 0.00 1423 1152 603 1.0 1199.00 0.00 0.00 1199.00 1 2019-09-26 21:29:50.858411 2019-09-26 21:29:50.858411 \N 1199.00 \N 0.00 0.00 1384 1118 623 1.0 699.00 0.00 0.00 699.00 0 2019-09-19 23:01:44.362082 2019-09-26 22:41:11.611849 \N 699.00 \N 0.00 0.00 1424 1153 623 1.0 699.00 0.00 0.00 699.00 0 2019-09-26 22:42:52.918875 2019-09-26 22:43:00.381573 \N 699.00 \N 0.00 0.00 1425 1154 623 1.0 500.00 0.00 199.00 500.00 0 2019-09-26 22:45:09.203889 2019-09-26 22:52:55.154612 \N 699.00 \N 199.00 0.00 1426 1155 670 1.0 639.00 0.00 0.00 639.00 1 2019-09-26 23:29:30.663658 2019-09-26 23:29:30.663658 \N 639.00 \N 0.00 0.00 1427 1156 626 1.0 1270.00 0.00 0.00 1270.00 1 2019-09-26 23:56:30.913186 2019-09-26 23:56:30.913186 \N 1270.00 \N 0.00 0.00 1428 1157 623 1.0 500.00 0.00 199.00 500.00 1 2019-09-27 00:21:27.523091 2019-09-27 00:21:27.523091 \N 699.00 \N 199.00 0.00 1429 1158 626 1.0 1270.00 0.00 0.00 1270.00 1 2019-09-27 00:22:34.690364 2019-09-27 00:22:34.690364 \N 1270.00 \N 0.00 0.00 1430 1159 610 1.0 559.48 89.52 0.00 649.00 1 2019-09-27 17:12:58.578499 2019-09-27 17:12:58.578499 \N 649.00 \N 0.00 0.00 1431 1160 507 1.0 479.00 0.00 0.00 479.00 1 2019-09-27 19:52:59.037585 2019-09-27 19:52:59.037585 \N 479.00 \N 0.00 0.00 1432 1160 670 1.0 639.00 0.00 0.00 639.00 1 2019-09-27 19:52:59.078164 2019-09-27 19:52:59.078164 \N 639.00 \N 0.00 0.00 1433 1160 622 1.0 489.00 0.00 0.00 489.00 1 2019-09-27 19:52:59.110635 2019-09-27 19:52:59.110635 \N 489.00 \N 0.00 0.00 1434 1160 16 1.0 215.09 34.41 249.50 249.50 1 2019-09-27 19:52:59.145152 2019-09-27 19:52:59.145152 \N 499.00 \N 0.00 50.00 1435 1160 8 1.0 288.36 46.14 334.50 334.50 1 2019-09-27 19:52:59.170188 2019-09-27 19:52:59.170188 \N 669.00 \N 0.00 50.00 1436 1161 682 1.0 649.00 0.00 0.00 649.00 1 2019-09-27 19:54:13.828021 2019-09-27 19:54:13.828021 \N 649.00 \N 0.00 0.00 1437 1161 664 1.0 699.00 0.00 0.00 699.00 1 2019-09-27 19:54:13.861323 2019-09-27 19:54:13.861323 \N 699.00 \N 0.00 0.00 1440 1162 623 1.0 699.00 0.00 0.00 699.00 0 2019-09-27 19:59:09.31445 2019-09-27 20:02:35.654705 \N 699.00 \N 0.00 0.00 1439 1162 665 1.0 469.00 0.00 0.00 469.00 0 2019-09-27 19:59:09.27296 2019-09-27 20:02:35.685589 \N 469.00 \N 0.00 0.00 1438 1162 664 1.0 699.00 0.00 0.00 699.00 0 2019-09-27 19:59:09.231944 2019-09-27 20:02:35.720434 \N 699.00 \N 0.00 0.00 1441 1163 199 1.0 645.69 103.31 0.00 749.00 1 2019-09-27 20:55:48.651249 2019-09-27 20:55:48.651249 \N 749.00 \N 0.00 0.00 1442 1164 623 1.0 699.00 0.00 0.00 699.00 1 2019-09-27 21:39:14.044204 2019-09-27 21:39:14.044204 \N 699.00 \N 0.00 0.00 1443 1164 665 1.0 469.00 0.00 0.00 469.00 1 2019-09-27 21:39:14.071085 2019-09-27 21:39:14.071085 \N 469.00 \N 0.00 0.00 1444 1164 664 1.0 699.00 0.00 0.00 699.00 1 2019-09-27 21:39:14.092805 2019-09-27 21:39:14.092805 \N 699.00 \N 0.00 0.00 1445 1165 669 1.0 419.00 0.00 0.00 419.00 1 2019-09-27 23:02:12.728861 2019-09-27 23:02:12.728861 \N 419.00 \N 0.00 0.00 1446 1166 693 1.0 789.00 0.00 0.00 789.00 1 2019-09-28 00:36:48.856372 2019-09-28 00:36:48.856372 \N 789.00 \N 0.00 0.00 1447 1167 717 1.0 2099.00 0.00 0.00 2099.00 0 2019-09-28 00:55:47.923807 2019-09-28 00:57:12.403946 \N 2099.00 \N 0.00 0.00 1448 1168 717 1.0 2099.00 0.00 0.00 2099.00 1 2019-09-28 00:59:10.092108 2019-09-28 00:59:10.092108 \N 2099.00 \N 0.00 0.00 1449 1169 626 1.0 1270.00 0.00 0.00 1270.00 1 2019-09-28 01:32:34.383146 2019-09-28 01:32:34.383146 \N 1270.00 \N 0.00 0.00 1450 1170 688 1.0 649.00 0.00 0.00 649.00 1 2019-09-28 18:11:01.372116 2019-09-28 18:11:01.372116 \N 649.00 \N 0.00 0.00 1451 1171 600 1.0 549.00 0.00 0.00 549.00 1 2019-09-28 20:05:02.481288 2019-09-28 20:05:02.481288 \N 549.00 \N 0.00 0.00 1452 1172 665 1.0 469.00 0.00 0.00 469.00 1 2019-09-28 22:29:34.669463 2019-09-28 22:29:34.669463 \N 469.00 \N 0.00 0.00 1453 1173 621 1.0 619.00 0.00 0.00 619.00 1 2019-09-29 18:18:28.154494 2019-09-29 18:18:28.154494 \N 619.00 \N 0.00 0.00 1454 1173 476 1.0 85.34 13.65 0.00 98.99 1 2019-09-29 18:18:28.192401 2019-09-29 18:18:28.192401 \N 99.00 \N 0.00 0.00 1455 1174 662 1.0 699.00 0.00 0.00 699.00 1 2019-09-30 19:02:26.226269 2019-09-30 19:02:26.226269 \N 699.00 \N 0.00 0.00 1456 1175 672 1.0 699.00 0.00 0.00 699.00 1 2019-10-01 17:18:58.796156 2019-10-01 17:18:58.796156 \N 699.00 \N 0.00 0.00 1457 1175 111 1.0 271.55 43.45 314.00 315.00 1 2019-10-01 17:18:58.84341 2019-10-01 17:18:58.84341 \N 629.00 \N 314.00 0.00 1458 1176 342 1.0 257.76 41.24 0.00 299.00 1 2019-10-02 00:54:16.05726 2019-10-02 00:54:16.05726 \N 299.00 \N 0.00 0.00 1459 1177 722 1.0 1899.00 0.00 0.00 1899.00 0 2019-10-02 01:29:56.616016 2019-10-02 01:30:24.270912 \N 1899.00 \N 0.00 0.00 1460 1178 722 1.0 1899.00 0.00 0.00 1899.00 1 2019-10-02 01:31:06.714037 2019-10-02 01:31:06.714037 \N 1899.00 \N 0.00 0.00 1461 1179 702 1.0 1599.00 0.00 0.00 1599.00 1 2019-10-02 18:43:00.771046 2019-10-02 18:43:00.771046 \N 1599.00 \N 0.00 0.00 1462 1180 723 1.0 1999.00 0.00 0.00 1999.00 1 2019-10-02 20:09:19.70054 2019-10-02 20:09:19.70054 \N 1999.00 \N 0.00 0.00 1463 1181 603 1.0 1199.00 0.00 0.00 1199.00 1 2019-10-02 21:43:49.310971 2019-10-02 21:43:49.310971 \N 1199.00 \N 0.00 0.00 1464 1182 11 1.0 258.62 41.38 299.00 300.00 1 2019-10-02 22:50:01.586209 2019-10-02 22:50:01.586209 \N 599.00 \N 299.00 0.00 1465 1182 662 1.0 699.00 0.00 0.00 699.00 1 2019-10-02 22:50:01.611507 2019-10-02 22:50:01.611507 \N 699.00 \N 0.00 0.00 1466 1183 440 1.0 1378.45 220.55 0.00 1599.00 1 2019-10-02 23:44:03.144122 2019-10-02 23:44:03.144122 \N 1599.00 \N 0.00 0.00 1467 1184 607 1.0 1549.00 0.00 0.00 1549.00 1 2019-10-03 00:22:02.763093 2019-10-03 00:22:02.763093 \N 1549.00 \N 0.00 0.00 1468 1185 708 1.0 1125.00 0.00 374.00 1125.00 1 2019-10-03 01:04:07.797718 2019-10-03 01:04:07.797718 \N 1499.00 \N 374.00 0.00 1469 1186 621 1.0 619.00 0.00 0.00 619.00 1 2019-10-03 20:13:18.887204 2019-10-03 20:13:18.887204 \N 619.00 \N 0.00 0.00 1470 1187 666 1.0 869.00 0.00 0.00 869.00 1 2019-10-03 23:00:02.298546 2019-10-03 23:00:02.298546 \N 869.00 \N 0.00 0.00 1471 1188 194 1.0 1034.48 165.52 0.00 1200.00 1 2019-10-04 00:13:05.482411 2019-10-04 00:13:05.482411 \N 1200.00 \N 0.00 0.00 1472 1189 683 1.0 569.00 0.00 0.00 569.00 1 2019-10-04 01:02:32.524434 2019-10-04 01:02:32.524434 \N 569.00 \N 0.00 0.00 1473 1190 592 1.0 1299.00 0.00 0.00 1299.00 1 2019-10-04 01:28:52.612446 2019-10-04 01:28:52.612446 \N 1299.00 \N 0.00 0.00 1474 1191 648 1.0 829.00 0.00 0.00 829.00 1 2019-10-04 17:09:32.791773 2019-10-04 17:09:32.791773 \N 829.00 \N 0.00 0.00 1475 1192 678 1.0 1299.00 0.00 0.00 1299.00 1 2019-10-04 22:06:19.63354 2019-10-04 22:06:19.63354 \N 1299.00 \N 0.00 0.00 1476 1192 705 1.0 249.00 0.00 0.00 249.00 1 2019-10-04 22:06:19.669528 2019-10-04 22:06:19.669528 \N 249.00 \N 0.00 0.00 1477 1193 669 1.0 419.00 0.00 0.00 419.00 1 2019-10-04 22:24:57.858984 2019-10-04 22:24:57.858984 \N 419.00 \N 0.00 0.00 1478 1193 619 1.0 569.00 0.00 0.00 569.00 1 2019-10-04 22:24:57.909292 2019-10-04 22:24:57.909292 \N 569.00 \N 0.00 0.00 1479 1194 623 1.0 699.00 0.00 0.00 699.00 1 2019-10-04 22:28:50.921633 2019-10-04 22:28:50.921633 \N 699.00 \N 0.00 0.00 1480 1195 433 1.0 861.21 137.79 0.00 999.00 1 2019-10-04 23:35:26.961109 2019-10-04 23:35:26.961109 \N 999.00 \N 0.00 0.00 1481 1196 316 1.0 688.79 110.21 0.00 799.00 1 2019-10-04 23:46:59.649698 2019-10-04 23:46:59.649698 \N 799.00 \N 0.00 0.00 1482 1197 509 1.0 599.00 0.00 0.00 599.00 1 2019-10-04 23:49:26.739163 2019-10-04 23:49:26.739163 \N 599.00 \N 0.00 0.00 1483 1197 669 1.0 419.00 0.00 0.00 419.00 1 2019-10-04 23:49:26.765754 2019-10-04 23:49:26.765754 \N 419.00 \N 0.00 0.00 1484 1197 410 1.0 516.38 82.62 0.00 599.00 1 2019-10-04 23:49:26.787663 2019-10-04 23:49:26.787663 \N 599.00 \N 0.00 0.00 1485 1197 606 1.0 449.00 0.00 0.00 449.00 1 2019-10-04 23:49:26.809584 2019-10-04 23:49:26.809584 \N 449.00 \N 0.00 0.00 1486 1198 9 1.0 602.59 96.41 0.00 699.00 1 2019-10-05 00:52:09.473375 2019-10-05 00:52:09.473375 \N 699.00 \N 0.00 0.00 1487 1199 705 1.0 249.00 0.00 0.00 249.00 1 2019-10-05 01:55:26.037707 2019-10-05 01:55:26.037707 \N 249.00 \N 0.00 0.00 1488 1200 686 1.0 649.00 0.00 0.00 649.00 1 2019-10-05 20:43:50.028462 2019-10-05 20:43:50.028462 \N 649.00 \N 0.00 0.00 1489 1201 622 1.0 489.00 0.00 0.00 489.00 1 2019-10-05 21:09:22.014964 2019-10-05 21:09:22.014964 \N 489.00 \N 0.00 0.00 1490 1202 693 1.0 789.00 0.00 0.00 789.00 1 2019-10-05 22:11:32.560454 2019-10-05 22:11:32.560454 \N 789.00 \N 0.00 0.00 1491 1203 628 1.0 947.41 151.59 0.00 1099.00 1 2019-10-05 22:22:02.814376 2019-10-05 22:22:02.814376 \N 1099.00 \N 0.00 0.00 1492 1204 124 1.0 395.69 63.31 0.00 459.00 1 2019-10-05 23:18:22.838044 2019-10-05 23:18:22.838044 \N 459.00 \N 0.00 0.00 1493 1204 594 1.0 649.00 0.00 0.00 649.00 1 2019-10-05 23:18:22.862067 2019-10-05 23:18:22.862067 \N 649.00 \N 0.00 0.00 1494 1205 708 1.0 1499.00 0.00 0.00 1499.00 1 2019-10-05 23:55:48.577984 2019-10-05 23:55:48.577984 \N 1499.00 \N 0.00 0.00 1495 1206 681 1.0 759.00 0.00 0.00 759.00 1 2019-10-05 23:59:00.087948 2019-10-05 23:59:00.087948 \N 759.00 \N 0.00 0.00 1496 1207 729 1.0 769.00 0.00 0.00 769.00 1 2019-10-06 00:03:09.661305 2019-10-06 00:03:09.661305 \N 769.00 \N 0.00 0.00 1497 1207 730 1.0 699.00 0.00 0.00 699.00 1 2019-10-06 00:03:09.68512 2019-10-06 00:03:09.68512 \N 699.00 \N 0.00 0.00 1499 1209 157 1.0 775.00 124.00 0.00 899.00 1 2019-10-06 16:29:35.401506 2019-10-06 16:29:35.401506 \N 899.00 \N 0.00 0.00 1500 1210 678 1.0 1299.00 0.00 0.00 1299.00 1 2019-10-06 18:29:42.581643 2019-10-06 18:29:42.581643 \N 1299.00 \N 0.00 0.00 1501 1211 624 1.0 1099.00 0.00 0.00 1099.00 1 2019-10-07 16:15:30.26948 2019-10-07 16:15:30.26948 \N 1099.00 \N 0.00 0.00 1502 1211 669 1.0 419.00 0.00 0.00 419.00 1 2019-10-07 16:15:30.304944 2019-10-07 16:15:30.304944 \N 419.00 \N 0.00 0.00 1503 1212 652 1.0 1599.00 0.00 0.00 1599.00 1 2019-10-07 23:10:52.399662 2019-10-07 23:10:52.399662 \N 1599.00 \N 0.00 0.00 1505 1213 369 1.0 42.24 6.76 0.00 49.00 0 2019-10-08 22:18:33.524103 2019-10-08 22:23:22.328839 \N 49.00 \N 0.00 0.00 1504 1213 668 1.0 299.00 0.00 0.00 299.00 0 2019-10-08 22:18:33.483362 2019-10-08 22:23:22.350396 \N 299.00 \N 0.00 0.00 1506 1214 369 1.0 42.24 6.76 0.00 49.00 1 2019-10-08 22:25:26.787099 2019-10-08 22:25:26.787099 \N 49.00 \N 0.00 0.00 1507 1214 668 1.0 299.00 0.00 0.00 299.00 1 2019-10-08 22:25:26.810877 2019-10-08 22:25:26.810877 \N 299.00 \N 0.00 0.00 1509 1216 633 1.0 719.00 0.00 0.00 719.00 1 2019-10-09 20:00:20.979484 2019-10-09 20:00:20.979484 \N 719.00 \N 0.00 0.00 1510 1216 476 1.0 85.34 13.65 0.00 98.99 1 2019-10-09 20:00:21.010402 2019-10-09 20:00:21.010402 \N 99.00 \N 0.00 0.00 1508 1215 615 1.0 899.00 0.00 0.00 899.00 0 2019-10-08 23:16:18.037729 2019-12-15 21:19:14.987532 \N 899.00 \N 0.00 0.00 1511 1217 629 1.0 990.52 158.48 0.00 1149.00 1 2019-10-09 20:22:41.044773 2019-10-09 20:22:41.044773 \N 1149.00 \N 0.00 0.00 1512 1218 652 1.0 1599.00 0.00 0.00 1599.00 1 2019-10-09 20:43:04.673975 2019-10-09 20:43:04.673975 \N 1599.00 \N 0.00 0.00 1513 1219 270 1.0 1033.62 165.38 0.00 1199.00 1 2019-10-10 16:37:04.862165 2019-10-10 16:37:04.862165 \N 1199.00 \N 0.00 0.00 1514 1220 670 1.0 639.00 0.00 0.00 639.00 1 2019-10-10 18:43:29.296531 2019-10-10 18:43:29.296531 \N 639.00 \N 0.00 0.00 1515 1220 724 1.0 689.00 0.00 0.00 689.00 1 2019-10-10 18:43:29.320354 2019-10-10 18:43:29.320354 \N 689.00 \N 0.00 0.00 1516 1221 693 1.0 789.00 0.00 0.00 789.00 1 2019-10-10 23:23:58.778921 2019-10-10 23:23:58.778921 \N 789.00 \N 0.00 0.00 1517 1222 526 1.0 600.00 0.00 399.00 600.00 1 2019-10-11 00:34:14.746036 2019-10-11 00:34:14.746036 \N 999.00 \N 399.00 0.00 1518 1223 752 1.0 1049.00 0.00 80.00 1049.00 1 2019-10-11 01:57:13.104413 2019-10-11 01:57:13.104413 \N 1129.00 \N 80.00 0.00 1519 1224 669 1.0 419.00 0.00 0.00 419.00 1 2019-10-11 17:25:38.546933 2019-10-11 17:25:38.546933 \N 419.00 \N 0.00 0.00 1520 1225 122 1.0 671.55 107.45 0.00 779.00 1 2019-10-11 17:48:17.695668 2019-10-11 17:48:17.695668 \N 779.00 \N 0.00 0.00 1521 1225 476 1.0 85.34 13.65 0.00 98.99 1 2019-10-11 17:48:17.726607 2019-10-11 17:48:17.726607 \N 99.00 \N 0.00 0.00 1522 1226 764 1.0 1899.00 0.00 0.00 1899.00 1 2019-10-11 17:56:21.809899 2019-10-11 17:56:21.809899 \N 1899.00 \N 0.00 0.00 1523 1227 702 1.0 1599.00 0.00 0.00 1599.00 1 2019-10-11 18:01:25.110046 2019-10-11 18:01:25.110046 \N 1599.00 \N 0.00 0.00 1524 1227 476 1.0 85.34 13.65 0.00 98.99 1 2019-10-11 18:01:25.133525 2019-10-11 18:01:25.133525 \N 99.00 \N 0.00 0.00 1525 1228 494 1.0 629.30 0.00 269.70 629.30 1 2019-10-11 18:07:47.34031 2019-10-11 18:07:47.34031 \N 899.00 \N 0.00 30.00 1526 1229 145 1.0 482.16 77.15 239.70 559.31 1 2019-10-11 18:16:34.116603 2019-10-11 18:16:34.116603 \N 799.00 \N 0.00 30.00 1527 1230 548 1.0 1230.00 0.00 269.00 1230.00 1 2019-10-11 20:01:43.286129 2019-10-11 20:01:43.286129 \N 1499.00 \N 269.00 0.00 1528 1231 782 1.0 569.00 0.00 0.00 569.00 0 2019-10-11 21:10:53.424691 2019-10-11 22:09:23.629912 \N 569.00 \N 0.00 0.00 1529 1232 786 1.0 599.00 0.00 0.00 599.00 1 2019-10-11 22:09:48.904836 2019-10-11 22:09:48.904836 \N 599.00 \N 0.00 0.00 1530 1233 594 1.0 649.00 0.00 0.00 649.00 1 2019-10-11 22:30:57.345095 2019-10-11 22:30:57.345095 \N 649.00 \N 0.00 0.00 1531 1234 701 1.0 1549.00 0.00 0.00 1549.00 1 2019-10-11 23:29:16.48926 2019-10-11 23:29:16.48926 \N 1549.00 \N 0.00 0.00 1532 1235 750 1.0 699.00 0.00 0.00 699.00 1 2019-10-12 00:13:00.047203 2019-10-12 00:13:00.047203 \N 699.00 \N 0.00 0.00 1533 1235 783 1.0 799.00 0.00 0.00 799.00 1 2019-10-12 00:13:00.071182 2019-10-12 00:13:00.071182 \N 799.00 \N 0.00 0.00 1534 1236 196 1.0 258.62 41.38 299.00 300.00 1 2019-10-12 19:38:38.314874 2019-10-12 19:38:38.314874 \N 599.00 \N 299.00 0.00 1535 1237 254 1.0 818.10 130.90 0.00 949.00 1 2019-10-12 21:40:32.425826 2019-10-12 21:40:32.425826 \N 949.00 \N 0.00 0.00 1536 1238 761 1.0 459.00 0.00 0.00 459.00 1 2019-10-12 22:04:43.757454 2019-10-12 22:04:43.757454 \N 459.00 \N 0.00 0.00 1537 1239 585 1.0 1599.00 0.00 0.00 1599.00 1 2019-10-12 23:02:29.998873 2019-10-12 23:02:29.998873 \N 1599.00 \N 0.00 0.00 1538 1240 679 1.0 1199.00 0.00 0.00 1199.00 1 2019-10-13 02:11:10.857697 2019-10-13 02:11:10.857697 \N 1199.00 \N 0.00 0.00 1539 1241 60 1.0 602.59 96.41 0.00 699.00 1 2019-10-14 18:31:58.684466 2019-10-14 18:31:58.684466 \N 699.00 \N 0.00 0.00 1540 1242 788 1.0 589.00 0.00 0.00 589.00 1 2019-10-14 18:47:21.021807 2019-10-14 18:47:21.021807 \N 589.00 \N 0.00 0.00 1541 1242 523 1.0 599.00 0.00 0.00 599.00 1 2019-10-14 18:47:21.054169 2019-10-14 18:47:21.054169 \N 599.00 \N 0.00 0.00 1542 1243 722 1.0 1899.00 0.00 0.00 1899.00 1 2019-10-14 20:47:29.836937 2019-10-14 20:47:29.836937 \N 1899.00 \N 0.00 0.00 1543 1244 786 1.0 599.00 0.00 0.00 599.00 1 2019-10-14 23:49:29.253653 2019-10-14 23:49:29.253653 \N 599.00 \N 0.00 0.00 1544 1245 790 1.0 829.00 0.00 0.00 829.00 1 2019-10-15 16:52:20.4561 2019-10-15 16:52:20.4561 \N 829.00 \N 0.00 0.00 1545 1246 751 1.0 1099.00 0.00 0.00 1099.00 1 2019-10-15 17:34:43.838423 2019-10-15 17:34:43.838423 \N 1099.00 \N 0.00 0.00 1546 1247 753 1.0 729.00 0.00 0.00 729.00 1 2019-10-15 17:46:12.148155 2019-10-15 17:46:12.148155 \N 729.00 \N 0.00 0.00 1547 1247 670 1.0 639.00 0.00 0.00 639.00 1 2019-10-15 17:46:12.172305 2019-10-15 17:46:12.172305 \N 639.00 \N 0.00 0.00 1548 1248 669 1.0 419.00 0.00 0.00 419.00 0 2019-10-15 21:11:33.735311 2019-10-15 21:12:17.991111 \N 419.00 \N 0.00 0.00 1549 1249 75 1.0 215.52 34.48 249.00 250.00 1 2019-10-15 21:44:24.993022 2019-10-15 21:44:24.993022 \N 499.00 \N 249.00 0.00 1550 1250 684 1.0 1499.00 0.00 0.00 1499.00 1 2019-10-15 23:11:25.648494 2019-10-15 23:11:25.648494 \N 1499.00 \N 0.00 0.00 1551 1251 623 1.0 699.00 0.00 0.00 699.00 1 2019-10-15 23:19:35.324787 2019-10-15 23:19:35.324787 \N 699.00 \N 0.00 0.00 1552 1252 791 1.0 569.00 0.00 0.00 569.00 1 2019-10-16 16:44:05.102332 2019-10-16 16:44:05.102332 \N 569.00 \N 0.00 0.00 1553 1253 760 1.0 729.00 0.00 0.00 729.00 1 2019-10-16 18:50:00.19564 2019-10-16 18:50:00.19564 \N 729.00 \N 0.00 0.00 1555 1255 788 1.0 589.00 0.00 0.00 589.00 1 2019-10-16 22:34:08.905302 2019-10-16 22:34:08.905302 \N 589.00 \N 0.00 0.00 1556 1256 663 1.0 699.00 0.00 0.00 699.00 1 2019-10-17 01:11:31.727603 2019-10-17 01:11:31.727603 \N 699.00 \N 0.00 0.00 1557 1256 664 1.0 699.00 0.00 0.00 699.00 1 2019-10-17 01:11:31.767215 2019-10-17 01:11:31.767215 \N 699.00 \N 0.00 0.00 1558 1257 760 1.0 729.00 0.00 0.00 729.00 1 2019-10-17 17:13:21.091941 2019-10-17 17:13:21.091941 \N 729.00 \N 0.00 0.00 1559 1258 790 1.0 829.00 0.00 0.00 829.00 1 2019-10-17 17:28:05.52021 2019-10-17 17:28:05.52021 \N 829.00 \N 0.00 0.00 1560 1259 484 1.0 999.00 0.00 0.00 999.00 1 2019-10-17 17:31:39.519645 2019-10-17 17:31:39.519645 \N 999.00 \N 0.00 0.00 1561 1259 717 1.0 2099.00 0.00 0.00 2099.00 1 2019-10-17 17:31:39.5496 2019-10-17 17:31:39.5496 \N 2099.00 \N 0.00 0.00 1562 1260 672 1.0 699.00 0.00 0.00 699.00 1 2019-10-19 17:18:55.917951 2019-10-19 17:18:55.917951 \N 699.00 \N 0.00 0.00 1563 1261 782 1.0 569.00 0.00 0.00 569.00 1 2019-10-19 18:52:39.8737 2019-10-19 18:52:39.8737 \N 569.00 \N 0.00 0.00 1564 1261 715 1.0 969.00 0.00 0.00 969.00 1 2019-10-19 18:52:39.896233 2019-10-19 18:52:39.896233 \N 969.00 \N 0.00 0.00 1565 1262 752 1.0 1129.00 0.00 0.00 1129.00 1 2019-10-19 21:02:15.320037 2019-10-19 21:02:15.320037 \N 1129.00 \N 0.00 0.00 1566 1262 710 1.0 1199.00 0.00 0.00 1199.00 1 2019-10-19 21:02:15.343663 2019-10-19 21:02:15.343663 \N 1199.00 \N 0.00 0.00 1567 1263 751 1.0 1099.00 0.00 0.00 1099.00 0 2019-10-19 22:06:17.233663 2019-10-19 22:08:20.453378 \N 1099.00 \N 0.00 0.00 1568 1264 751 1.0 1099.00 0.00 0.00 1099.00 1 2019-10-19 22:09:47.713493 2019-10-19 22:09:47.713493 \N 1099.00 \N 0.00 0.00 1569 1264 652 1.0 1599.00 0.00 0.00 1599.00 1 2019-10-19 22:09:47.739568 2019-10-19 22:09:47.739568 \N 1599.00 \N 0.00 0.00 1570 1264 722 1.0 1899.00 0.00 0.00 1899.00 1 2019-10-19 22:09:47.761932 2019-10-19 22:09:47.761932 \N 1899.00 \N 0.00 0.00 1571 1265 717 1.0 2099.00 0.00 0.00 2099.00 1 2019-10-19 23:16:12.225718 2019-10-19 23:16:12.225718 \N 2099.00 \N 0.00 0.00 1572 1266 366 1.0 1550.86 248.14 0.00 1799.00 1 2019-10-19 23:27:06.884804 2019-10-19 23:27:06.884804 \N 1799.00 \N 0.00 0.00 1573 1267 273 1.0 1378.45 220.55 0.00 1599.00 1 2019-10-19 23:46:38.883471 2019-10-19 23:46:38.883471 \N 1599.00 \N 0.00 0.00 1575 1269 668 1.0 299.00 0.00 0.00 299.00 1 2019-10-20 00:58:22.679674 2019-10-20 00:58:22.679674 \N 299.00 \N 0.00 0.00 1576 1270 750 1.0 699.00 0.00 0.00 699.00 1 2019-10-20 01:18:53.078492 2019-10-20 01:18:53.078492 \N 699.00 \N 0.00 0.00 1577 1271 840 1.0 1899.00 0.00 0.00 1899.00 1 2019-10-20 16:53:39.745509 2019-10-20 16:53:39.745509 \N 1899.00 \N 0.00 0.00 1578 1272 695 1.0 1299.00 0.00 0.00 1299.00 1 2019-10-20 17:05:11.858872 2019-10-20 17:05:11.858872 \N 1299.00 \N 0.00 0.00 1579 1273 388 2.0 3963.79 634.21 0.00 4598.00 0 2019-10-21 16:11:54.677234 2019-10-21 16:12:36.140209 \N 2299.00 \N 0.00 0.00 1580 1274 388 2.0 3963.79 634.21 0.00 4598.00 1 2019-10-21 16:12:59.088081 2019-10-21 16:12:59.088081 \N 2299.00 \N 0.00 0.00 1581 1275 795 1.0 499.00 0.00 0.00 499.00 1 2019-10-21 16:18:11.028864 2019-10-21 16:18:11.028864 \N 499.00 \N 0.00 0.00 1582 1276 476 1.0 85.34 13.65 0.00 98.99 1 2019-10-21 17:39:18.948893 2019-10-21 17:39:18.948893 \N 99.00 \N 0.00 0.00 1583 1276 621 1.0 619.00 0.00 0.00 619.00 1 2019-10-21 17:39:18.974568 2019-10-21 17:39:18.974568 \N 619.00 \N 0.00 0.00 1584 1277 786 2.0 1198.00 0.00 0.00 1198.00 1 2019-10-21 20:21:29.4444 2019-10-21 20:21:29.4444 \N 599.00 \N 0.00 0.00 1574 1268 596 1.0 1299.00 0.00 0.00 1299.00 0 2019-10-20 00:53:54.76881 2019-12-23 20:47:12.017492 \N 1299.00 \N 0.00 0.00 1585 1278 668 1.0 299.00 0.00 0.00 299.00 1 2019-10-21 21:34:19.292346 2019-10-21 21:34:19.292346 \N 299.00 \N 0.00 0.00 1586 1279 632 1.0 359.25 0.00 119.75 359.25 1 2019-10-21 21:59:49.013242 2019-10-21 21:59:49.013242 \N 479.00 \N 0.00 25.00 1587 1279 606 1.0 336.75 0.00 112.25 336.75 1 2019-10-21 21:59:49.05451 2019-10-21 21:59:49.05451 \N 449.00 \N 0.00 25.00 1588 1280 594 1.0 649.00 0.00 0.00 649.00 1 2019-10-21 23:16:32.238073 2019-10-21 23:16:32.238073 \N 649.00 \N 0.00 0.00 1589 1281 782 1.0 569.00 0.00 0.00 569.00 1 2019-10-21 23:56:48.594234 2019-10-21 23:56:48.594234 \N 569.00 \N 0.00 0.00 1590 1282 606 1.0 449.00 0.00 0.00 449.00 1 2019-10-22 21:57:18.723838 2019-10-22 21:57:18.723838 \N 449.00 \N 0.00 0.00 1591 1283 750 1.0 699.00 0.00 0.00 699.00 1 2019-10-22 23:04:28.69123 2019-10-22 23:04:28.69123 \N 699.00 \N 0.00 0.00 1592 1284 760 1.0 729.00 0.00 0.00 729.00 0 2019-10-22 23:41:08.210337 2019-10-22 23:44:28.619959 \N 729.00 \N 0.00 0.00 1593 1285 760 1.0 729.00 0.00 0.00 729.00 1 2019-10-22 23:45:23.043901 2019-10-22 23:45:23.043901 \N 729.00 \N 0.00 0.00 1594 1286 787 1.0 649.00 0.00 0.00 649.00 1 2019-10-23 00:26:10.10133 2019-10-23 00:26:10.10133 \N 649.00 \N 0.00 0.00 1595 1287 796 1.0 1199.00 0.00 0.00 1199.00 1 2019-10-23 17:40:04.513301 2019-10-23 17:40:04.513301 \N 1199.00 \N 0.00 0.00 1596 1288 853 1.0 49.00 0.00 0.00 49.00 1 2019-10-23 17:40:58.970954 2019-10-23 17:40:58.970954 \N 49.00 \N 0.00 0.00 1597 1289 755 1.0 1129.00 0.00 0.00 1129.00 1 2019-10-23 18:49:05.487301 2019-10-23 18:49:05.487301 \N 1129.00 \N 0.00 0.00 1598 1290 273 1.0 1378.45 220.55 0.00 1599.00 1 2019-10-23 23:15:34.591242 2019-10-23 23:15:34.591242 \N 1599.00 \N 0.00 0.00 1599 1291 27 1.0 2930.17 468.83 0.00 3399.00 1 2019-10-23 23:33:15.946273 2019-10-23 23:33:15.946273 \N 3399.00 \N 0.00 0.00 1600 1292 805 1.0 789.00 0.00 0.00 789.00 1 2019-10-23 23:37:04.568182 2019-10-23 23:37:04.568182 \N 789.00 \N 0.00 0.00 1601 1293 367 1.0 301.72 48.28 0.00 350.00 1 2019-10-24 00:22:29.292223 2019-10-24 00:22:29.292223 \N 350.00 \N 0.00 0.00 1602 1294 751 1.0 1099.00 0.00 0.00 1099.00 1 2019-10-24 18:17:12.903422 2019-10-24 18:17:12.903422 \N 1099.00 \N 0.00 0.00 1603 1295 623 1.0 699.00 0.00 0.00 699.00 1 2019-10-24 19:34:15.040524 2019-10-24 19:34:15.040524 \N 699.00 \N 0.00 0.00 1604 1296 799 1.0 459.00 0.00 0.00 459.00 1 2019-10-24 20:29:35.410079 2019-10-24 20:29:35.410079 \N 459.00 \N 0.00 0.00 1605 1296 750 1.0 699.00 0.00 0.00 699.00 1 2019-10-24 20:29:35.441969 2019-10-24 20:29:35.441969 \N 699.00 \N 0.00 0.00 1606 1296 749 1.0 699.00 0.00 0.00 699.00 1 2019-10-24 20:29:35.467451 2019-10-24 20:29:35.467451 \N 699.00 \N 0.00 0.00 1607 1297 664 1.0 699.00 0.00 0.00 699.00 1 2019-10-25 00:14:52.434317 2019-10-25 00:14:52.434317 \N 699.00 \N 0.00 0.00 1608 1298 755 1.0 1129.00 0.00 0.00 1129.00 1 2019-10-25 18:22:41.414731 2019-10-25 18:22:41.414731 \N 1129.00 \N 0.00 0.00 1609 1299 759 1.0 759.00 0.00 0.00 759.00 1 2019-10-25 21:20:24.471753 2019-10-25 21:20:24.471753 \N 759.00 \N 0.00 0.00 1611 1301 663 1.0 699.00 0.00 0.00 699.00 1 2019-10-25 21:29:19.40411 2019-10-25 21:29:19.40411 \N 699.00 \N 0.00 0.00 1612 1302 662 1.0 699.00 0.00 0.00 699.00 1 2019-10-25 21:40:04.866884 2019-10-25 21:40:04.866884 \N 699.00 \N 0.00 0.00 1613 1303 841 1.0 179.00 0.00 0.00 179.00 1 2019-10-25 21:46:44.087064 2019-10-25 21:46:44.087064 \N 179.00 \N 0.00 0.00 1614 1304 844 1.0 299.00 0.00 0.00 299.00 1 2019-10-25 21:50:32.198308 2019-10-25 21:50:32.198308 \N 299.00 \N 0.00 0.00 1616 1306 581 1.0 1399.00 0.00 0.00 1399.00 1 2019-10-26 01:02:15.957205 2019-10-26 01:02:15.957205 \N 1399.00 \N 0.00 0.00 1610 1300 724 1.0 689.00 0.00 0.00 689.00 0 2019-10-25 21:22:28.827802 2019-10-26 01:37:44.528818 \N 689.00 \N 0.00 0.00 1617 1307 724 1.0 599.00 0.00 0.00 599.00 1 2019-10-26 01:37:59.953846 2019-10-26 01:37:59.953846 \N 599.00 \N 0.00 0.00 1618 1308 516 1.0 999.00 0.00 0.00 999.00 1 2019-10-26 19:24:26.10467 2019-10-26 19:24:26.10467 \N 999.00 \N 0.00 0.00 1619 1309 789 1.0 549.00 0.00 0.00 549.00 1 2019-10-26 22:21:57.432445 2019-10-26 22:21:57.432445 \N 549.00 \N 0.00 0.00 1620 1310 802 1.0 869.00 0.00 0.00 869.00 1 2019-10-26 23:03:31.627386 2019-10-26 23:03:31.627386 \N 869.00 \N 0.00 0.00 1621 1311 805 1.0 789.00 0.00 0.00 789.00 1 2019-10-27 00:36:10.75216 2019-10-27 00:36:10.75216 \N 789.00 \N 0.00 0.00 1622 1311 760 1.0 729.00 0.00 0.00 729.00 1 2019-10-27 00:36:10.782287 2019-10-27 00:36:10.782287 \N 729.00 \N 0.00 0.00 1623 1312 851 1.0 99.00 0.00 0.00 99.00 1 2019-10-27 00:38:28.309388 2019-10-27 00:38:28.309388 \N 99.00 \N 0.00 0.00 1624 1313 369 1.0 42.24 6.76 0.00 49.00 1 2019-10-27 19:40:16.443494 2019-10-27 19:40:16.443494 \N 49.00 \N 0.00 0.00 1625 1314 682 1.0 649.00 0.00 0.00 649.00 1 2019-10-27 19:44:28.710938 2019-10-27 19:44:28.710938 \N 649.00 \N 0.00 0.00 1626 1315 847 1.0 75.00 0.00 0.00 75.00 1 2019-10-27 19:47:36.606342 2019-10-27 19:47:36.606342 \N 75.00 \N 0.00 0.00 1627 1315 367 2.0 517.24 82.76 100.00 600.00 1 2019-10-27 19:47:36.631142 2019-10-27 19:47:36.631142 \N 350.00 \N 100.00 0.00 1628 1316 762 1.0 839.00 0.00 0.00 839.00 1 2019-10-27 20:07:41.672346 2019-10-27 20:07:41.672346 \N 839.00 \N 0.00 0.00 1629 1317 693 1.0 789.00 0.00 0.00 789.00 1 2019-10-27 20:39:30.408427 2019-10-27 20:39:30.408427 \N 789.00 \N 0.00 0.00 1630 1318 273 1.0 1378.45 220.55 0.00 1599.00 1 2019-10-28 18:47:18.011278 2019-10-28 18:47:18.011278 \N 1599.00 \N 0.00 0.00 1631 1319 693 1.0 789.00 0.00 0.00 789.00 1 2019-10-28 20:44:53.780635 2019-10-28 20:44:53.780635 \N 789.00 \N 0.00 0.00 1632 1319 759 1.0 759.00 0.00 0.00 759.00 1 2019-10-28 20:44:53.807987 2019-10-28 20:44:53.807987 \N 759.00 \N 0.00 0.00 1633 1320 796 1.0 1199.00 0.00 0.00 1199.00 1 2019-10-28 21:01:33.58803 2019-10-28 21:01:33.58803 \N 1199.00 \N 0.00 0.00 1634 1321 53 1.0 1119.83 179.17 0.00 1299.00 1 2019-10-28 22:39:58.469421 2019-10-28 22:39:58.469421 \N 1299.00 \N 0.00 0.00 1554 1254 808 1.0 1699.00 0.00 0.00 1699.00 0 2019-10-16 20:01:29.918659 2019-10-29 00:55:49.389542 \N 1699.00 \N 0.00 0.00 1635 1322 705 1.0 249.00 0.00 0.00 249.00 1 2019-10-29 00:56:42.635985 2019-10-29 00:56:42.635985 \N 249.00 \N 0.00 0.00 1636 1322 830 1.0 180.00 0.00 0.00 180.00 1 2019-10-29 00:56:42.65819 2019-10-29 00:56:42.65819 \N 180.00 \N 0.00 0.00 1637 1322 369 1.0 42.24 6.76 0.00 49.00 1 2019-10-29 00:56:42.677925 2019-10-29 00:56:42.677925 \N 49.00 \N 0.00 0.00 1638 1323 750 1.0 699.00 0.00 0.00 699.00 1 2019-10-29 01:24:34.297601 2019-10-29 01:24:34.297601 \N 699.00 \N 0.00 0.00 1639 1324 871 1.0 599.00 0.00 0.00 599.00 1 2019-10-29 18:36:55.53639 2019-10-29 18:36:55.53639 \N 599.00 \N 0.00 0.00 1640 1324 872 1.0 739.00 0.00 0.00 739.00 1 2019-10-29 18:36:55.562644 2019-10-29 18:36:55.562644 \N 739.00 \N 0.00 0.00 1641 1325 784 1.0 599.00 0.00 0.00 599.00 1 2019-10-29 19:35:42.651602 2019-10-29 19:35:42.651602 \N 599.00 \N 0.00 0.00 1642 1326 664 1.0 699.00 0.00 0.00 699.00 1 2019-10-29 20:34:46.443176 2019-10-29 20:34:46.443176 \N 699.00 \N 0.00 0.00 1643 1327 871 1.0 599.00 0.00 0.00 599.00 1 2019-10-29 20:57:47.303464 2019-10-29 20:57:47.303464 \N 599.00 \N 0.00 0.00 1644 1328 843 1.0 99.00 0.00 0.00 99.00 1 2019-10-29 20:58:36.678479 2019-10-29 20:58:36.678479 \N 99.00 \N 0.00 0.00 1645 1329 875 1.0 599.00 0.00 0.00 599.00 1 2019-10-30 02:36:32.307409 2019-10-30 02:36:32.307409 \N 599.00 \N 0.00 0.00 1646 1330 761 1.0 459.00 0.00 0.00 459.00 1 2019-10-30 18:32:29.334183 2019-10-30 18:32:29.334183 \N 459.00 \N 0.00 0.00 1647 1330 800 1.0 469.00 0.00 0.00 469.00 1 2019-10-30 18:32:29.387127 2019-10-30 18:32:29.387127 \N 469.00 \N 0.00 0.00 1648 1331 623 1.0 699.00 0.00 0.00 699.00 1 2019-10-30 21:10:50.757168 2019-10-30 21:10:50.757168 \N 699.00 \N 0.00 0.00 1649 1332 788 1.0 589.00 0.00 0.00 589.00 1 2019-10-31 01:27:27.177221 2019-10-31 01:27:27.177221 \N 589.00 \N 0.00 0.00 1650 1333 750 1.0 699.00 0.00 0.00 699.00 1 2019-10-31 02:15:51.030086 2019-10-31 02:15:51.030086 \N 699.00 \N 0.00 0.00 1651 1334 849 1.0 75.00 0.00 0.00 75.00 1 2019-10-31 02:18:09.13857 2019-10-31 02:18:09.13857 \N 75.00 \N 0.00 0.00 1652 1335 791 1.0 569.00 0.00 0.00 569.00 1 2019-10-31 20:07:55.316167 2019-10-31 20:07:55.316167 \N 569.00 \N 0.00 0.00 1653 1336 699 1.0 1399.00 0.00 0.00 1399.00 1 2019-10-31 21:26:33.397803 2019-10-31 21:26:33.397803 \N 1399.00 \N 0.00 0.00 1654 1336 886 1.0 989.00 0.00 0.00 989.00 1 2019-10-31 21:26:33.43573 2019-10-31 21:26:33.43573 \N 989.00 \N 0.00 0.00 1655 1337 850 1.0 169.00 0.00 0.00 169.00 1 2019-10-31 21:42:37.03511 2019-10-31 21:42:37.03511 \N 169.00 \N 0.00 0.00 1656 1338 845 1.0 119.00 0.00 0.00 119.00 1 2019-10-31 21:45:19.237566 2019-10-31 21:45:19.237566 \N 119.00 \N 0.00 0.00 1657 1339 845 1.0 119.00 0.00 0.00 119.00 1 2019-10-31 21:46:32.489302 2019-10-31 21:46:32.489302 \N 119.00 \N 0.00 0.00 1658 1340 869 1.0 1399.00 0.00 0.00 1399.00 1 2019-10-31 22:28:35.646822 2019-10-31 22:28:35.646822 \N 1399.00 \N 0.00 0.00 1659 1341 369 1.0 42.24 6.76 0.00 49.00 1 2019-10-31 22:34:56.728904 2019-10-31 22:34:56.728904 \N 49.00 \N 0.00 0.00 1660 1342 795 1.0 499.00 0.00 0.00 499.00 1 2019-10-31 22:51:20.121739 2019-10-31 22:51:20.121739 \N 499.00 \N 0.00 0.00 1661 1343 717 1.0 2099.00 0.00 0.00 2099.00 1 2019-10-31 23:35:57.523592 2019-10-31 23:35:57.523592 \N 2099.00 \N 0.00 0.00 1662 1344 593 1.0 659.00 0.00 0.00 659.00 1 2019-11-01 01:24:52.295583 2019-11-01 01:24:52.295583 \N 659.00 \N 0.00 0.00 1663 1344 623 1.0 699.00 0.00 0.00 699.00 1 2019-11-01 01:24:52.360544 2019-11-01 01:24:52.360544 \N 699.00 \N 0.00 0.00 1664 1345 594 1.0 649.00 0.00 0.00 649.00 1 2019-11-01 19:00:37.176277 2019-11-01 19:00:37.176277 \N 649.00 \N 0.00 0.00 1665 1345 806 1.0 689.00 0.00 0.00 689.00 1 2019-11-01 19:00:37.215335 2019-11-01 19:00:37.215335 \N 689.00 \N 0.00 0.00 1666 1346 58 1.0 1206.03 192.96 0.00 1398.99 1 2019-11-01 20:34:14.289605 2019-11-01 20:34:14.289605 \N 1399.00 \N 0.00 0.00 1667 1346 820 1.0 129.00 0.00 0.00 129.00 1 2019-11-01 20:34:14.314977 2019-11-01 20:34:14.314977 \N 129.00 \N 0.00 0.00 1668 1347 875 1.0 599.00 0.00 0.00 599.00 1 2019-11-02 00:43:44.91964 2019-11-02 00:43:44.91964 \N 599.00 \N 0.00 0.00 1669 1347 806 1.0 689.00 0.00 0.00 689.00 1 2019-11-02 00:43:44.95914 2019-11-02 00:43:44.95914 \N 689.00 \N 0.00 0.00 1670 1348 149 1.0 404.31 64.69 0.00 469.00 1 2019-11-02 00:53:36.013618 2019-11-02 00:53:36.013618 \N 469.00 \N 0.00 0.00 1671 1349 762 1.0 839.00 0.00 0.00 839.00 1 2019-11-02 01:10:38.379723 2019-11-02 01:10:38.379723 \N 839.00 \N 0.00 0.00 1672 1350 718 1.0 1599.00 0.00 0.00 1599.00 1 2019-11-02 01:34:11.924836 2019-11-02 01:34:11.924836 \N 1599.00 \N 0.00 0.00 1673 1351 786 1.0 599.00 0.00 0.00 599.00 1 2019-11-02 01:36:36.908159 2019-11-02 01:36:36.908159 \N 599.00 \N 0.00 0.00 1674 1352 795 1.0 499.00 0.00 0.00 499.00 1 2019-11-02 01:40:05.229711 2019-11-02 01:40:05.229711 \N 499.00 \N 0.00 0.00 1675 1353 652 1.0 1599.00 0.00 0.00 1599.00 1 2019-11-02 02:02:49.870465 2019-11-02 02:02:49.870465 \N 1599.00 \N 0.00 0.00 1676 1354 762 1.0 839.00 0.00 0.00 839.00 1 2019-11-02 19:55:02.355099 2019-11-02 19:55:02.355099 \N 839.00 \N 0.00 0.00 1677 1355 874 1.0 759.00 0.00 0.00 759.00 1 2019-11-02 20:45:41.150202 2019-11-02 20:45:41.150202 \N 759.00 \N 0.00 0.00 1678 1355 784 1.0 599.00 0.00 0.00 599.00 1 2019-11-02 20:45:41.19942 2019-11-02 20:45:41.19942 \N 599.00 \N 0.00 0.00 1679 1356 905 1.0 120.00 0.00 0.00 120.00 1 2019-11-02 21:28:13.369963 2019-11-02 21:28:13.369963 \N 120.00 \N 0.00 0.00 1680 1357 788 1.0 589.00 0.00 0.00 589.00 1 2019-11-03 17:41:29.789494 2019-11-03 17:41:29.789494 \N 589.00 \N 0.00 0.00 1681 1358 818 1.0 99.00 0.00 0.00 99.00 1 2019-11-03 18:23:11.56776 2019-11-03 18:23:11.56776 \N 99.00 \N 0.00 0.00 1682 1359 795 1.0 499.00 0.00 0.00 499.00 1 2019-11-03 18:25:06.900752 2019-11-03 18:25:06.900752 \N 499.00 \N 0.00 0.00 1683 1360 792 1.0 769.00 0.00 0.00 769.00 0 2019-11-03 18:26:42.529947 2019-11-03 18:29:55.442291 \N 769.00 \N 0.00 0.00 1684 1361 792 1.0 769.00 0.00 0.00 769.00 1 2019-11-03 18:30:49.549354 2019-11-03 18:30:49.549354 \N 769.00 \N 0.00 0.00 1685 1362 795 1.0 499.00 0.00 0.00 499.00 1 2019-11-03 22:28:48.469478 2019-11-03 22:28:48.469478 \N 499.00 \N 0.00 0.00 1686 1363 840 1.0 1899.00 0.00 0.00 1899.00 1 2019-11-04 19:35:00.877217 2019-11-04 19:35:00.877217 \N 1899.00 \N 0.00 0.00 1687 1364 715 1.0 969.00 0.00 0.00 969.00 1 2019-11-04 21:54:43.238528 2019-11-04 21:54:43.238528 \N 969.00 \N 0.00 0.00 1688 1365 653 1.0 1799.00 0.00 0.00 1799.00 1 2019-11-05 01:06:10.944146 2019-11-05 01:06:10.944146 \N 1799.00 \N 0.00 0.00 1689 1365 663 1.0 699.00 0.00 0.00 699.00 1 2019-11-05 01:06:10.984811 2019-11-05 01:06:10.984811 \N 699.00 \N 0.00 0.00 1690 1366 774 1.0 1199.00 0.00 0.00 1199.00 1 2019-11-05 01:41:41.954959 2019-11-05 01:41:41.954959 \N 1199.00 \N 0.00 0.00 1691 1367 743 1.0 750.00 0.00 199.00 750.00 1 2019-11-05 01:59:08.03964 2019-11-05 01:59:08.03964 \N 949.00 \N 199.00 0.00 1692 1368 819 1.0 99.00 0.00 0.00 99.00 1 2019-11-05 03:06:44.310807 2019-11-05 03:06:44.310807 \N 99.00 \N 0.00 0.00 1693 1369 875 1.0 599.00 0.00 0.00 599.00 1 2019-11-05 19:23:54.702672 2019-11-05 19:23:54.702672 \N 599.00 \N 0.00 0.00 1695 1371 597 1.0 649.00 0.00 0.00 649.00 1 2019-11-06 17:45:25.226494 2019-11-06 17:45:25.226494 \N 649.00 \N 0.00 0.00 1696 1372 788 1.0 589.00 0.00 0.00 589.00 1 2019-11-06 19:01:08.929577 2019-11-06 19:01:08.929577 \N 589.00 \N 0.00 0.00 1697 1372 761 1.0 459.00 0.00 0.00 459.00 1 2019-11-06 19:01:08.963936 2019-11-06 19:01:08.963936 \N 459.00 \N 0.00 0.00 1698 1372 523 1.0 599.00 0.00 0.00 599.00 1 2019-11-06 19:01:09.01212 2019-11-06 19:01:09.01212 \N 599.00 \N 0.00 0.00 1699 1372 901 1.0 1359.00 0.00 0.00 1359.00 1 2019-11-06 19:01:09.03723 2019-11-06 19:01:09.03723 \N 1359.00 \N 0.00 0.00 1700 1373 888 1.0 1199.00 0.00 0.00 1199.00 1 2019-11-06 19:04:42.517477 2019-11-06 19:04:42.517477 \N 1199.00 \N 0.00 0.00 1701 1373 796 1.0 1199.00 0.00 0.00 1199.00 1 2019-11-06 19:04:42.541014 2019-11-06 19:04:42.541014 \N 1199.00 \N 0.00 0.00 1702 1374 712 1.0 999.00 0.00 0.00 999.00 1 2019-11-06 19:51:30.053648 2019-11-06 19:51:30.053648 \N 999.00 \N 0.00 0.00 935 750 557 1.0 549.00 0.00 0.00 549.00 0 2019-06-15 21:13:05.640378 2019-11-06 21:58:09.553305 \N 549.00 \N 0.00 0.00 1703 1375 790 1.0 829.00 0.00 0.00 829.00 1 2019-11-06 22:00:05.29947 2019-11-06 22:00:05.29947 \N 829.00 \N 0.00 0.00 1704 1376 670 1.0 639.00 0.00 0.00 639.00 1 2019-11-06 23:17:32.851644 2019-11-06 23:17:32.851644 \N 639.00 \N 0.00 0.00 1705 1377 367 1.0 301.72 48.28 0.00 350.00 1 2019-11-07 02:12:41.1864 2019-11-07 02:12:41.1864 \N 350.00 \N 0.00 0.00 1706 1378 749 1.0 699.00 0.00 0.00 699.00 1 2019-11-07 17:34:03.38878 2019-11-07 17:34:03.38878 \N 699.00 \N 0.00 0.00 1707 1379 726 1.0 529.00 0.00 0.00 529.00 1 2019-11-07 18:45:26.133601 2019-11-07 18:45:26.133601 \N 529.00 \N 0.00 0.00 1708 1380 816 1.0 125.00 0.00 0.00 125.00 1 2019-11-07 23:38:24.691002 2019-11-07 23:38:24.691002 \N 125.00 \N 0.00 0.00 1709 1381 799 1.0 459.00 0.00 0.00 459.00 1 2019-11-08 00:25:59.787024 2019-11-08 00:25:59.787024 \N 459.00 \N 0.00 0.00 1710 1381 597 1.0 649.00 0.00 0.00 649.00 1 2019-11-08 00:25:59.813583 2019-11-08 00:25:59.813583 \N 649.00 \N 0.00 0.00 1245 1012 635 1.0 569.00 0.00 0.00 569.00 0 2019-08-31 21:58:00.588062 2019-11-08 01:03:51.871944 \N 569.00 \N 0.00 0.00 1711 1382 864 1.0 1199.00 0.00 0.00 1199.00 1 2019-11-08 19:35:23.147524 2019-11-08 19:35:23.147524 \N 1199.00 \N 0.00 0.00 1712 1383 668 1.0 299.00 0.00 0.00 299.00 1 2019-11-08 21:26:32.356682 2019-11-08 21:26:32.356682 \N 299.00 \N 0.00 0.00 1713 1384 875 1.0 599.00 0.00 0.00 599.00 1 2019-11-08 21:52:52.482271 2019-11-08 21:52:52.482271 \N 599.00 \N 0.00 0.00 1714 1384 663 1.0 699.00 0.00 0.00 699.00 1 2019-11-08 21:52:52.507355 2019-11-08 21:52:52.507355 \N 699.00 \N 0.00 0.00 1715 1385 520 1.0 849.00 0.00 0.00 849.00 1 2019-11-09 01:12:58.159268 2019-11-09 01:12:58.159268 \N 849.00 \N 0.00 0.00 1716 1386 805 1.0 789.00 0.00 0.00 789.00 1 2019-11-09 01:44:36.348003 2019-11-09 01:44:36.348003 \N 789.00 \N 0.00 0.00 1717 1387 901 1.0 1359.00 0.00 0.00 1359.00 1 2019-11-09 17:28:37.647052 2019-11-09 17:28:37.647052 \N 1359.00 \N 0.00 0.00 1718 1388 807 1.0 549.00 0.00 0.00 549.00 1 2019-11-09 17:29:16.541121 2019-11-09 17:29:16.541121 \N 549.00 \N 0.00 0.00 1719 1389 802 1.0 869.00 0.00 0.00 869.00 1 2019-11-09 19:35:47.287775 2019-11-09 19:35:47.287775 \N 869.00 \N 0.00 0.00 1720 1389 782 1.0 569.00 0.00 0.00 569.00 1 2019-11-09 19:35:47.317686 2019-11-09 19:35:47.317686 \N 569.00 \N 0.00 0.00 1721 1390 695 1.0 1299.00 0.00 0.00 1299.00 1 2019-11-09 21:06:52.331186 2019-11-09 21:06:52.331186 \N 1299.00 \N 0.00 0.00 1722 1391 885 1.0 699.00 0.00 0.00 699.00 1 2019-11-10 00:33:17.440275 2019-11-10 00:33:17.440275 \N 699.00 \N 0.00 0.00 1724 1393 910 1.0 899.00 0.00 0.00 899.00 1 2019-11-10 02:18:58.430802 2019-11-10 02:18:58.430802 \N 899.00 \N 0.00 0.00 1725 1394 153 1.0 430.17 68.83 0.00 499.00 1 2019-11-10 17:38:30.969659 2019-11-10 17:38:30.969659 \N 499.00 \N 0.00 0.00 1726 1395 699 1.0 1399.00 0.00 0.00 1399.00 1 2019-11-10 22:06:51.429554 2019-11-10 22:06:51.429554 \N 1399.00 \N 0.00 0.00 1727 1395 701 1.0 1549.00 0.00 0.00 1549.00 1 2019-11-10 22:06:51.47877 2019-11-10 22:06:51.47877 \N 1549.00 \N 0.00 0.00 1728 1395 668 1.0 299.00 0.00 0.00 299.00 1 2019-11-10 22:06:51.506402 2019-11-10 22:06:51.506402 \N 299.00 \N 0.00 0.00 1729 1396 633 1.0 660.00 0.00 59.00 660.00 1 2019-11-10 22:17:05.795087 2019-11-10 22:17:05.795087 \N 719.00 \N 59.00 0.00 1730 1397 888 1.0 1199.00 0.00 0.00 1199.00 1 2019-11-11 18:17:10.952976 2019-11-11 18:17:10.952976 \N 1199.00 \N 0.00 0.00 1723 1392 722 1.0 1899.00 0.00 0.00 1899.00 0 2019-11-10 02:03:38.831847 2020-01-24 19:08:51.064334 \N 1899.00 \N 0.00 0.00 1731 1398 760 1.0 729.00 0.00 0.00 729.00 1 2019-11-11 20:29:07.645625 2019-11-11 20:29:07.645625 \N 729.00 \N 0.00 0.00 1732 1399 883 1.0 1049.00 0.00 0.00 1049.00 1 2019-11-11 21:43:55.003874 2019-11-11 21:43:55.003874 \N 1049.00 \N 0.00 0.00 1733 1400 889 1.0 789.00 0.00 0.00 789.00 0 2019-11-11 22:16:38.074892 2019-11-11 22:16:47.799899 \N 789.00 \N 0.00 0.00 1734 1401 889 1.0 789.00 0.00 0.00 789.00 1 2019-11-11 22:41:39.939578 2019-11-11 22:41:39.939578 \N 789.00 \N 0.00 0.00 1735 1402 764 1.0 1899.00 0.00 0.00 1899.00 1 2019-11-11 22:46:55.227466 2019-11-11 22:46:55.227466 \N 1899.00 \N 0.00 0.00 1736 1403 889 1.0 789.00 0.00 0.00 789.00 1 2019-11-12 01:02:14.006579 2019-11-12 01:02:14.006579 \N 789.00 \N 0.00 0.00 1737 1404 784 1.0 449.25 0.00 149.75 449.25 1 2019-11-12 02:44:59.988464 2019-11-12 02:44:59.988464 \N 599.00 \N 0.00 25.00 1738 1404 880 1.0 749.25 0.00 249.75 749.25 1 2019-11-12 02:45:00.021757 2019-11-12 02:45:00.021757 \N 999.00 \N 0.00 25.00 1739 1405 800 1.0 469.00 0.00 0.00 469.00 1 2019-11-12 20:32:28.337408 2019-11-12 20:32:28.337408 \N 469.00 \N 0.00 0.00 1740 1406 668 2.0 598.00 0.00 0.00 598.00 1 2019-11-12 23:46:27.645051 2019-11-12 23:46:27.645051 \N 299.00 \N 0.00 0.00 1741 1407 757 1.0 799.00 0.00 0.00 799.00 1 2019-11-13 01:07:30.606144 2019-11-13 01:07:30.606144 \N 799.00 \N 0.00 0.00 1742 1408 892 1.0 779.00 0.00 0.00 779.00 1 2019-11-13 01:35:49.44527 2019-11-13 01:35:49.44527 \N 779.00 \N 0.00 0.00 1743 1409 790 2.0 1658.00 0.00 0.00 1658.00 1 2019-11-13 01:58:29.18092 2019-11-13 01:58:29.18092 \N 829.00 \N 0.00 0.00 1744 1410 799 1.0 459.00 0.00 0.00 459.00 1 2019-11-13 02:46:11.775127 2019-11-13 02:46:11.775127 \N 459.00 \N 0.00 0.00 1745 1411 883 1.0 1049.00 0.00 0.00 1049.00 1 2019-11-13 19:07:37.399008 2019-11-13 19:07:37.399008 \N 1049.00 \N 0.00 0.00 1746 1411 877 1.0 899.00 0.00 0.00 899.00 1 2019-11-13 19:07:37.449851 2019-11-13 19:07:37.449851 \N 899.00 \N 0.00 0.00 1747 1411 476 1.0 85.34 13.65 0.00 98.99 1 2019-11-13 19:07:37.482052 2019-11-13 19:07:37.482052 \N 99.00 \N 0.00 0.00 1748 1412 369 1.0 42.24 6.76 0.00 49.00 1 2019-11-13 19:09:45.974245 2019-11-13 19:09:45.974245 \N 49.00 \N 0.00 0.00 1749 1413 935 1.0 99.00 0.00 0.00 99.00 1 2019-11-13 21:19:48.103525 2019-11-13 21:19:48.103525 \N 99.00 \N 0.00 0.00 1750 1413 919 1.0 115.00 0.00 0.00 115.00 1 2019-11-13 21:19:48.136528 2019-11-13 21:19:48.136528 \N 115.00 \N 0.00 0.00 1751 1414 745 1.0 999.00 0.00 0.00 999.00 1 2019-11-13 22:19:20.271669 2019-11-13 22:19:20.271669 \N 999.00 \N 0.00 0.00 1752 1415 915 1.0 310.00 0.00 0.00 310.00 1 2019-11-13 22:30:41.308182 2019-11-13 22:30:41.308182 \N 310.00 \N 0.00 0.00 1753 1416 886 1.0 989.00 0.00 0.00 989.00 1 2019-11-13 22:38:01.251104 2019-11-13 22:38:01.251104 \N 989.00 \N 0.00 0.00 1754 1416 784 1.0 599.00 0.00 0.00 599.00 1 2019-11-13 22:38:01.273939 2019-11-13 22:38:01.273939 \N 599.00 \N 0.00 0.00 1755 1416 892 1.0 779.00 0.00 0.00 779.00 1 2019-11-13 22:38:01.294421 2019-11-13 22:38:01.294421 \N 779.00 \N 0.00 0.00 1756 1417 886 1.0 989.00 0.00 0.00 989.00 1 2019-11-13 22:43:01.579877 2019-11-13 22:43:01.579877 \N 989.00 \N 0.00 0.00 1757 1417 904 1.0 789.00 0.00 0.00 789.00 1 2019-11-13 22:43:01.60439 2019-11-13 22:43:01.60439 \N 789.00 \N 0.00 0.00 1758 1417 937 1.0 369.00 0.00 0.00 369.00 1 2019-11-13 22:43:01.624417 2019-11-13 22:43:01.624417 \N 369.00 \N 0.00 0.00 1759 1417 920 1.0 129.00 0.00 0.00 129.00 1 2019-11-13 22:43:01.644844 2019-11-13 22:43:01.644844 \N 129.00 \N 0.00 0.00 1760 1418 893 1.0 699.00 0.00 0.00 699.00 1 2019-11-14 00:34:23.714229 2019-11-14 00:34:23.714229 \N 699.00 \N 0.00 0.00 1761 1419 590 1.0 1099.00 0.00 0.00 1099.00 1 2019-11-14 03:02:05.583091 2019-11-14 03:02:05.583091 \N 1099.00 \N 0.00 0.00 1762 1420 927 1.0 149.00 0.00 0.00 149.00 1 2019-11-14 03:02:46.035001 2019-11-14 03:02:46.035001 \N 149.00 \N 0.00 0.00 1763 1421 893 1.0 699.00 0.00 0.00 699.00 1 2019-11-14 22:53:09.311524 2019-11-14 22:53:09.311524 \N 699.00 \N 0.00 0.00 1764 1422 693 1.0 789.00 0.00 0.00 789.00 0 2019-11-14 23:09:45.074476 2019-11-14 23:10:36.345859 \N 789.00 \N 0.00 0.00 1765 1423 693 1.0 789.00 0.00 0.00 789.00 1 2019-11-14 23:11:50.4577 2019-11-14 23:11:50.4577 \N 789.00 \N 0.00 0.00 1766 1424 683 1.0 569.00 0.00 0.00 569.00 1 2019-11-15 01:47:59.300759 2019-11-15 01:47:59.300759 \N 569.00 \N 0.00 0.00 1767 1425 597 1.0 649.00 0.00 0.00 649.00 1 2019-11-15 17:38:55.233925 2019-11-15 17:38:55.233925 \N 649.00 \N 0.00 0.00 1768 1426 800 1.0 469.00 0.00 0.00 469.00 1 2019-11-15 17:46:25.09634 2019-11-15 17:46:25.09634 \N 469.00 \N 0.00 0.00 1769 1427 867 1.0 1299.00 0.00 0.00 1299.00 1 2019-11-15 17:56:44.846135 2019-11-15 17:56:44.846135 \N 1299.00 \N 0.00 0.00 1770 1428 674 1.0 999.00 0.00 0.00 999.00 1 2019-11-15 18:52:27.817001 2019-11-15 18:52:27.817001 \N 999.00 \N 0.00 0.00 1771 1429 874 1.0 759.00 0.00 0.00 759.00 1 2019-11-15 18:52:55.834613 2019-11-15 18:52:55.834613 \N 759.00 \N 0.00 0.00 1772 1430 918 1.0 139.00 0.00 0.00 139.00 1 2019-11-15 19:31:15.928229 2019-11-15 19:31:15.928229 \N 139.00 \N 0.00 0.00 1773 1431 932 1.0 199.00 0.00 0.00 199.00 1 2019-11-15 20:28:46.967523 2019-11-15 20:28:46.967523 \N 199.00 \N 0.00 0.00 1774 1432 886 1.0 989.00 0.00 0.00 989.00 1 2019-11-15 20:34:05.061245 2019-11-15 20:34:05.061245 \N 989.00 \N 0.00 0.00 1775 1433 799 1.0 459.00 0.00 0.00 459.00 1 2019-11-15 22:57:43.269855 2019-11-15 22:57:43.269855 \N 459.00 \N 0.00 0.00 1776 1434 933 1.0 139.00 0.00 0.00 139.00 1 2019-11-15 23:38:47.089356 2019-11-15 23:38:47.089356 \N 139.00 \N 0.00 0.00 1777 1435 35 1.0 775.00 124.00 0.00 899.00 1 2019-11-16 00:35:41.047174 2019-11-16 00:35:41.047174 \N 899.00 \N 0.00 0.00 1778 1436 808 1.0 1699.00 0.00 0.00 1699.00 0 2019-11-16 01:10:01.46635 2019-11-16 01:10:46.565799 \N 1699.00 \N 0.00 0.00 1779 1437 808 1.0 1699.00 0.00 0.00 1699.00 1 2019-11-16 01:11:03.883222 2019-11-16 01:11:03.883222 \N 1699.00 \N 0.00 0.00 1780 1437 697 1.0 799.00 0.00 0.00 799.00 1 2019-11-16 01:11:03.91383 2019-11-16 01:11:03.91383 \N 799.00 \N 0.00 0.00 1781 1438 788 1.0 589.00 0.00 0.00 589.00 1 2019-11-16 01:14:09.754268 2019-11-16 01:14:09.754268 \N 589.00 \N 0.00 0.00 1782 1438 932 1.0 199.00 0.00 0.00 199.00 1 2019-11-16 01:14:09.780418 2019-11-16 01:14:09.780418 \N 199.00 \N 0.00 0.00 1783 1439 909 1.0 1599.00 0.00 0.00 1599.00 1 2019-11-16 01:30:51.051842 2019-11-16 01:30:51.051842 \N 1599.00 \N 0.00 0.00 1784 1440 884 1.0 549.00 0.00 0.00 549.00 1 2019-11-16 01:37:12.011328 2019-11-16 01:37:12.011328 \N 549.00 \N 0.00 0.00 1785 1441 875 1.0 599.00 0.00 0.00 599.00 1 2019-11-16 01:39:04.686659 2019-11-16 01:39:04.686659 \N 599.00 \N 0.00 0.00 1786 1441 759 1.0 759.00 0.00 0.00 759.00 1 2019-11-16 01:39:04.712152 2019-11-16 01:39:04.712152 \N 759.00 \N 0.00 0.00 1787 1442 572 1.0 1199.00 0.00 0.00 1199.00 1 2019-11-16 02:14:13.491645 2019-11-16 02:14:13.491645 \N 1199.00 \N 0.00 0.00 1788 1443 873 1.0 729.00 0.00 0.00 729.00 1 2019-11-16 02:27:44.021951 2019-11-16 02:27:44.021951 \N 729.00 \N 0.00 0.00 1789 1444 919 1.0 115.00 0.00 0.00 115.00 1 2019-11-16 02:32:29.20995 2019-11-16 02:32:29.20995 \N 115.00 \N 0.00 0.00 1790 1445 806 1.0 689.00 0.00 0.00 689.00 1 2019-11-16 20:41:49.877577 2019-11-16 20:41:49.877577 \N 689.00 \N 0.00 0.00 1791 1446 664 1.0 699.00 0.00 0.00 699.00 1 2019-11-16 20:44:43.947399 2019-11-16 20:44:43.947399 \N 699.00 \N 0.00 0.00 1792 1447 942 1.0 189.00 0.00 0.00 189.00 1 2019-11-16 21:03:39.945861 2019-11-16 21:03:39.945861 \N 189.00 \N 0.00 0.00 1793 1448 874 1.0 759.00 0.00 0.00 759.00 1 2019-11-16 21:08:20.152136 2019-11-16 21:08:20.152136 \N 759.00 \N 0.00 0.00 1794 1448 672 2.0 1398.00 0.00 0.00 1398.00 1 2019-11-16 21:08:20.179026 2019-11-16 21:08:20.179026 \N 699.00 \N 0.00 0.00 1795 1449 476 1.0 85.34 13.65 0.00 98.99 1 2019-11-16 21:24:26.3703 2019-11-16 21:24:26.3703 \N 99.00 \N 0.00 0.00 1796 1450 46 1.0 930.17 148.83 720.00 1079.00 1 2019-11-16 21:46:09.232904 2019-11-16 21:46:09.232904 \N 1799.00 \N 720.00 0.00 1797 1451 924 1.0 119.00 0.00 0.00 119.00 1 2019-11-16 21:46:55.558162 2019-11-16 21:46:55.558162 \N 119.00 \N 0.00 0.00 1798 1452 805 1.0 789.00 0.00 0.00 789.00 1 2019-11-16 22:29:54.250481 2019-11-16 22:29:54.250481 \N 789.00 \N 0.00 0.00 1799 1453 852 1.0 65.00 0.00 0.00 65.00 1 2019-11-16 22:48:56.687711 2019-11-16 22:48:56.687711 \N 65.00 \N 0.00 0.00 1800 1453 934 1.0 139.00 0.00 0.00 139.00 1 2019-11-16 22:48:56.712123 2019-11-16 22:48:56.712123 \N 139.00 \N 0.00 0.00 1801 1454 911 1.0 749.00 0.00 0.00 749.00 1 2019-11-16 22:59:22.213437 2019-11-16 22:59:22.213437 \N 749.00 \N 0.00 0.00 1802 1455 875 1.0 599.00 0.00 0.00 599.00 1 2019-11-17 00:34:08.949002 2019-11-17 00:34:08.949002 \N 599.00 \N 0.00 0.00 1803 1455 806 1.0 689.00 0.00 0.00 689.00 1 2019-11-17 00:34:08.974998 2019-11-17 00:34:08.974998 \N 689.00 \N 0.00 0.00 1804 1456 868 1.0 1429.00 0.00 0.00 1429.00 1 2019-11-17 01:10:14.183401 2019-11-17 01:10:14.183401 \N 1429.00 \N 0.00 0.00 1805 1457 268 1.0 672.41 107.59 519.00 780.00 1 2019-11-17 01:13:06.010762 2019-11-17 01:13:06.010762 \N 1299.00 \N 519.00 0.00 1806 1457 350 1.0 931.03 148.96 719.00 1079.99 1 2019-11-17 01:13:06.038885 2019-11-17 01:13:06.038885 \N 1799.00 \N 719.00 0.00 1807 1458 766 1.0 1299.00 0.00 0.00 1299.00 1 2019-11-17 02:09:02.746543 2019-11-17 02:09:02.746543 \N 1299.00 \N 0.00 0.00 1808 1458 927 1.0 149.00 0.00 0.00 149.00 1 2019-11-17 02:09:02.773108 2019-11-17 02:09:02.773108 \N 149.00 \N 0.00 0.00 1809 1459 625 1.0 738.00 0.00 131.00 738.00 1 2019-11-17 20:02:08.265676 2019-11-17 20:02:08.265676 \N 869.00 \N 131.00 0.00 1810 1460 789 1.0 466.00 0.00 83.00 466.00 1 2019-11-17 20:04:54.549759 2019-11-17 20:04:54.549759 \N 549.00 \N 83.00 0.00 1811 1461 611 2.0 1398.00 0.00 0.00 1398.00 0 2019-11-17 22:17:12.07762 2019-11-17 22:17:30.241249 \N 699.00 \N 0.00 0.00 1812 1462 611 2.0 1398.00 0.00 0.00 1398.00 1 2019-11-17 22:17:55.909676 2019-11-17 22:17:55.909676 \N 699.00 \N 0.00 0.00 1813 1463 717 1.0 2099.00 0.00 0.00 2099.00 1 2019-11-18 18:31:40.188765 2019-11-18 18:31:40.188765 \N 2099.00 \N 0.00 0.00 1814 1464 782 1.0 485.00 0.00 84.00 485.00 1 2019-11-18 19:03:21.344846 2019-11-18 19:03:21.344846 \N 569.00 \N 84.00 0.00 1815 1465 900 1.0 934.00 0.00 165.00 934.00 1 2019-11-18 19:07:21.199878 2019-11-18 19:07:21.199878 \N 1099.00 \N 165.00 0.00 1816 1466 186 1.0 366.38 58.62 74.00 425.00 1 2019-11-18 19:17:13.51256 2019-11-18 19:17:13.51256 \N 499.00 \N 74.00 0.00 1817 1466 886 1.0 842.00 0.00 147.00 842.00 1 2019-11-18 19:17:13.540969 2019-11-18 19:17:13.540969 \N 989.00 \N 147.00 0.00 1818 1467 848 1.0 75.00 0.00 0.00 75.00 1 2019-11-18 19:35:04.709275 2019-11-18 19:35:04.709275 \N 75.00 \N 0.00 0.00 1819 1468 889 1.0 672.00 0.00 117.00 672.00 1 2019-11-18 22:22:02.993808 2019-11-18 22:22:02.993808 \N 789.00 \N 117.00 0.00 1820 1468 940 1.0 389.00 0.00 0.00 389.00 1 2019-11-18 22:22:03.020136 2019-11-18 22:22:03.020136 \N 389.00 \N 0.00 0.00 1821 1468 917 1.0 139.00 0.00 0.00 139.00 1 2019-11-18 22:22:03.043378 2019-11-18 22:22:03.043378 \N 139.00 \N 0.00 0.00 1822 1469 764 1.0 1615.00 0.00 284.00 1615.00 1 2019-11-18 22:27:41.588728 2019-11-18 22:27:41.588728 \N 1899.00 \N 284.00 0.00 1823 1470 893 1.0 594.15 0.00 104.85 594.15 1 2019-11-19 02:50:26.301286 2019-11-19 02:50:26.301286 \N 699.00 \N 0.00 15.00 1824 1471 928 1.0 149.00 0.00 0.00 149.00 0 2019-11-19 19:00:09.852506 2019-11-19 19:08:58.954092 \N 149.00 \N 0.00 0.00 1825 1472 916 1.0 119.00 0.00 0.00 119.00 1 2019-11-19 19:10:08.665767 2019-11-19 19:10:08.665767 \N 119.00 \N 0.00 0.00 1826 1472 929 1.0 99.00 0.00 0.00 99.00 1 2019-11-19 19:10:08.689346 2019-11-19 19:10:08.689346 \N 99.00 \N 0.00 0.00 1827 1473 783 1.0 799.00 0.00 0.00 799.00 1 2019-11-19 22:21:02.591972 2019-11-19 22:21:02.591972 \N 799.00 \N 0.00 0.00 1828 1474 894 1.0 1549.00 0.00 0.00 1549.00 1 2019-11-20 20:32:12.820157 2019-11-20 20:32:12.820157 \N 1549.00 \N 0.00 0.00 1830 1476 895 1.0 1629.00 0.00 0.00 1629.00 1 2019-11-20 22:01:53.725994 2019-11-20 22:01:53.725994 \N 1629.00 \N 0.00 0.00 1831 1477 761 1.0 459.00 0.00 0.00 459.00 1 2019-11-21 01:53:04.236009 2019-11-21 01:53:04.236009 \N 459.00 \N 0.00 0.00 1832 1478 894 1.0 1549.00 0.00 0.00 1549.00 1 2019-11-21 19:51:05.538495 2019-11-21 19:51:05.538495 \N 1549.00 \N 0.00 0.00 1833 1479 916 1.0 119.00 0.00 0.00 119.00 1 2019-11-21 23:11:15.91488 2019-11-21 23:11:15.91488 \N 119.00 \N 0.00 0.00 1834 1479 369 1.0 42.24 6.76 0.00 49.00 1 2019-11-21 23:11:15.940157 2019-11-21 23:11:15.940157 \N 49.00 \N 0.00 0.00 1835 1480 717 1.0 2099.00 0.00 0.00 2099.00 1 2019-11-21 23:48:23.794561 2019-11-21 23:48:23.794561 \N 2099.00 \N 0.00 0.00 1836 1480 783 1.0 799.00 0.00 0.00 799.00 1 2019-11-21 23:48:23.827234 2019-11-21 23:48:23.827234 \N 799.00 \N 0.00 0.00 1837 1480 903 1.0 1099.00 0.00 0.00 1099.00 1 2019-11-21 23:48:23.850756 2019-11-21 23:48:23.850756 \N 1099.00 \N 0.00 0.00 1838 1481 693 1.0 789.00 0.00 0.00 789.00 1 2019-11-22 00:38:05.868206 2019-11-22 00:38:05.868206 \N 789.00 \N 0.00 0.00 1839 1482 910 1.0 899.00 0.00 0.00 899.00 1 2019-11-22 01:19:33.860933 2019-11-22 01:19:33.860933 \N 899.00 \N 0.00 0.00 1840 1482 670 1.0 639.00 0.00 0.00 639.00 1 2019-11-22 01:19:33.900426 2019-11-22 01:19:33.900426 \N 639.00 \N 0.00 0.00 1841 1483 696 1.0 625.00 0.00 0.00 625.00 1 2019-11-22 02:28:13.14034 2019-11-22 02:28:13.14034 \N 625.00 \N 0.00 0.00 1842 1484 403 1.0 271.55 43.45 314.00 315.00 1 2019-11-22 17:41:27.325908 2019-11-22 17:41:27.325908 \N 629.00 \N 314.00 0.00 1843 1485 715 1.0 969.00 0.00 0.00 969.00 1 2019-11-22 17:50:55.146173 2019-11-22 17:50:55.146173 \N 969.00 \N 0.00 0.00 1844 1486 947 1.0 899.00 0.00 0.00 899.00 1 2019-11-22 18:50:30.101747 2019-11-22 18:50:30.101747 \N 899.00 \N 0.00 0.00 1845 1487 866 1.0 1349.00 0.00 0.00 1349.00 1 2019-11-22 21:26:31.177614 2019-11-22 21:26:31.177614 \N 1349.00 \N 0.00 0.00 1846 1488 868 1.0 1429.00 0.00 0.00 1429.00 1 2019-11-23 01:00:44.870597 2019-11-23 01:00:44.870597 \N 1429.00 \N 0.00 0.00 1847 1489 761 1.0 459.00 0.00 0.00 459.00 1 2019-11-23 02:08:02.758845 2019-11-23 02:08:02.758845 \N 459.00 \N 0.00 0.00 1848 1490 753 1.0 729.00 0.00 0.00 729.00 1 2019-11-23 17:58:26.715439 2019-11-23 17:58:26.715439 \N 729.00 \N 0.00 0.00 1849 1491 867 1.0 1299.00 0.00 0.00 1299.00 1 2019-11-23 18:20:57.608725 2019-11-23 18:20:57.608725 \N 1299.00 \N 0.00 0.00 1850 1492 597 1.0 649.00 0.00 0.00 649.00 1 2019-11-23 19:33:09.549373 2019-11-23 19:33:09.549373 \N 649.00 \N 0.00 0.00 1851 1493 880 1.0 999.00 0.00 0.00 999.00 1 2019-11-23 19:51:09.815929 2019-11-23 19:51:09.815929 \N 999.00 \N 0.00 0.00 1852 1494 891 1.0 749.00 0.00 0.00 749.00 1 2019-11-23 20:21:33.695483 2019-11-23 20:21:33.695483 \N 749.00 \N 0.00 0.00 1853 1494 789 1.0 549.00 0.00 0.00 549.00 1 2019-11-23 20:21:33.729283 2019-11-23 20:21:33.729283 \N 549.00 \N 0.00 0.00 1854 1495 829 1.0 180.00 0.00 0.00 180.00 1 2019-11-23 21:03:40.189126 2019-11-23 21:03:40.189126 \N 180.00 \N 0.00 0.00 1855 1496 949 1.0 549.00 0.00 0.00 549.00 1 2019-11-23 21:54:14.29622 2019-11-23 21:54:14.29622 \N 549.00 \N 0.00 0.00 1856 1497 942 1.0 189.00 0.00 0.00 189.00 1 2019-11-23 22:07:33.122188 2019-11-23 22:07:33.122188 \N 189.00 \N 0.00 0.00 1857 1497 921 1.0 149.00 0.00 0.00 149.00 1 2019-11-23 22:07:33.19228 2019-11-23 22:07:33.19228 \N 149.00 \N 0.00 0.00 1858 1498 890 1.0 629.00 0.00 0.00 629.00 1 2019-11-23 22:28:36.088035 2019-11-23 22:28:36.088035 \N 629.00 \N 0.00 0.00 1859 1499 928 1.0 149.00 0.00 0.00 149.00 1 2019-11-23 22:30:39.89732 2019-11-23 22:30:39.89732 \N 149.00 \N 0.00 0.00 1860 1500 949 1.0 549.00 0.00 0.00 549.00 1 2019-11-24 00:28:29.447554 2019-11-24 00:28:29.447554 \N 549.00 \N 0.00 0.00 1861 1501 900 1.0 1099.00 0.00 0.00 1099.00 1 2019-11-24 00:59:09.585474 2019-11-24 00:59:09.585474 \N 1099.00 \N 0.00 0.00 1862 1502 369 1.0 42.24 6.76 0.00 49.00 1 2019-11-24 02:56:16.967327 2019-11-24 02:56:16.967327 \N 49.00 \N 0.00 0.00 1863 1503 900 1.0 1099.00 0.00 0.00 1099.00 1 2019-11-24 19:22:31.354448 2019-11-24 19:22:31.354448 \N 1099.00 \N 0.00 0.00 1864 1504 682 1.0 649.00 0.00 0.00 649.00 1 2019-11-25 18:54:02.217977 2019-11-25 18:54:02.217977 \N 649.00 \N 0.00 0.00 1865 1505 922 1.0 149.00 0.00 0.00 149.00 1 2019-11-25 19:42:47.808849 2019-11-25 19:42:47.808849 \N 149.00 \N 0.00 0.00 1866 1506 880 1.0 999.00 0.00 0.00 999.00 1 2019-11-25 22:56:37.00778 2019-11-25 22:56:37.00778 \N 999.00 \N 0.00 0.00 1867 1507 882 1.0 1299.00 0.00 0.00 1299.00 1 2019-11-26 00:10:49.447664 2019-11-26 00:10:49.447664 \N 1299.00 \N 0.00 0.00 1868 1508 717 1.0 2099.00 0.00 0.00 2099.00 1 2019-11-26 18:46:16.238406 2019-11-26 18:46:16.238406 \N 2099.00 \N 0.00 0.00 1869 1509 950 1.0 699.00 0.00 0.00 699.00 1 2019-11-26 20:41:29.263059 2019-11-26 20:41:29.263059 \N 699.00 \N 0.00 0.00 1870 1510 623 1.0 699.00 0.00 0.00 699.00 1 2019-11-26 21:40:17.664984 2019-11-26 21:40:17.664984 \N 699.00 \N 0.00 0.00 1871 1511 679 1.0 1199.00 0.00 0.00 1199.00 1 2019-11-26 22:22:39.717309 2019-11-26 22:22:39.717309 \N 1199.00 \N 0.00 0.00 1872 1512 949 1.0 549.00 0.00 0.00 549.00 1 2019-11-26 23:37:04.783828 2019-11-26 23:37:04.783828 \N 549.00 \N 0.00 0.00 1873 1513 910 1.0 899.00 0.00 0.00 899.00 1 2019-11-26 23:37:42.850163 2019-11-26 23:37:42.850163 \N 899.00 \N 0.00 0.00 1874 1514 961 1.0 1299.00 0.00 0.00 1299.00 1 2019-11-26 23:42:18.217366 2019-11-26 23:42:18.217366 \N 1299.00 \N 0.00 0.00 1875 1514 954 1.0 1199.00 0.00 0.00 1199.00 1 2019-11-26 23:42:18.25248 2019-11-26 23:42:18.25248 \N 1199.00 \N 0.00 0.00 1876 1515 398 1.0 516.38 82.62 0.00 599.00 1 2019-11-27 01:29:40.81501 2019-11-27 01:29:40.81501 \N 599.00 \N 0.00 0.00 1877 1516 885 1.0 899.00 0.00 0.00 899.00 1 2019-11-27 02:37:51.973147 2019-11-27 02:37:51.973147 \N 899.00 \N 0.00 0.00 1878 1517 955 1.0 999.00 0.00 0.00 999.00 1 2019-11-27 20:52:49.957443 2019-11-27 20:52:49.957443 \N 999.00 \N 0.00 0.00 1879 1518 856 1.0 1099.00 0.00 0.00 1099.00 1 2019-11-27 22:13:41.984207 2019-11-27 22:13:41.984207 \N 1099.00 \N 0.00 0.00 1829 1475 947 1.0 899.00 0.00 0.00 899.00 0 2019-11-20 20:45:17.461568 2020-01-22 01:35:07.956141 \N 899.00 \N 0.00 0.00 1880 1519 369 1.0 42.24 6.76 0.00 49.00 1 2019-11-27 23:05:52.648296 2019-11-27 23:05:52.648296 \N 49.00 \N 0.00 0.00 1307 1062 698 1.0 799.00 0.00 0.00 799.00 0 2019-09-10 02:28:40.617923 2019-11-27 23:54:00.226635 \N 799.00 \N 0.00 0.00 1881 1520 875 1.0 599.00 0.00 0.00 599.00 1 2019-11-28 02:11:00.582649 2019-11-28 02:11:00.582649 \N 599.00 \N 0.00 0.00 1882 1520 959 1.0 899.00 0.00 0.00 899.00 1 2019-11-28 02:11:00.615801 2019-11-28 02:11:00.615801 \N 899.00 \N 0.00 0.00 1883 1521 928 1.0 149.00 0.00 0.00 149.00 1 2019-11-28 20:42:03.783528 2019-11-28 20:42:03.783528 \N 149.00 \N 0.00 0.00 1884 1522 760 1.0 729.00 0.00 0.00 729.00 1 2019-11-28 20:52:11.144855 2019-11-28 20:52:11.144855 \N 729.00 \N 0.00 0.00 1885 1523 874 1.0 759.00 0.00 0.00 759.00 1 2019-11-28 22:44:34.203529 2019-11-28 22:44:34.203529 \N 759.00 \N 0.00 0.00 1886 1524 959 1.0 899.00 0.00 0.00 899.00 1 2019-11-29 01:57:34.327118 2019-11-29 01:57:34.327118 \N 899.00 \N 0.00 0.00 1887 1525 946 1.0 749.00 0.00 0.00 749.00 1 2019-11-29 01:58:59.426682 2019-11-29 01:58:59.426682 \N 749.00 \N 0.00 0.00 1888 1526 894 1.0 1549.00 0.00 0.00 1549.00 1 2019-11-29 02:02:58.210782 2019-11-29 02:02:58.210782 \N 1549.00 \N 0.00 0.00 1889 1527 624 1.0 1099.00 0.00 0.00 1099.00 1 2019-11-29 19:23:32.921219 2019-11-29 19:23:32.921219 \N 1099.00 \N 0.00 0.00 1890 1528 911 1.0 749.00 0.00 0.00 749.00 1 2019-11-29 22:05:59.682766 2019-11-29 22:05:59.682766 \N 749.00 \N 0.00 0.00 1891 1529 872 1.0 739.00 0.00 0.00 739.00 1 2019-11-29 22:10:04.908359 2019-11-29 22:10:04.908359 \N 739.00 \N 0.00 0.00 1892 1530 882 1.0 1299.00 0.00 0.00 1299.00 0 2019-11-29 23:17:12.40784 2019-11-29 23:23:21.893432 \N 1299.00 \N 0.00 0.00 1893 1531 943 1.0 389.00 0.00 0.00 389.00 1 2019-11-29 23:30:10.107053 2019-11-29 23:30:10.107053 \N 389.00 \N 0.00 0.00 1894 1531 947 1.0 899.00 0.00 0.00 899.00 1 2019-11-29 23:30:10.133709 2019-11-29 23:30:10.133709 \N 899.00 \N 0.00 0.00 1895 1531 792 1.0 769.00 0.00 0.00 769.00 1 2019-11-29 23:30:10.157899 2019-11-29 23:30:10.157899 \N 769.00 \N 0.00 0.00 1896 1531 950 1.0 699.00 0.00 0.00 699.00 1 2019-11-29 23:30:10.183081 2019-11-29 23:30:10.183081 \N 699.00 \N 0.00 0.00 1897 1531 961 1.0 1299.00 0.00 0.00 1299.00 1 2019-11-29 23:30:10.208685 2019-11-29 23:30:10.208685 \N 1299.00 \N 0.00 0.00 1898 1532 882 1.0 1299.00 0.00 0.00 1299.00 1 2019-11-29 23:32:52.132616 2019-11-29 23:32:52.132616 \N 1299.00 \N 0.00 0.00 1899 1533 870 1.0 449.00 0.00 0.00 449.00 1 2019-11-30 00:38:11.198992 2019-11-30 00:38:11.198992 \N 449.00 \N 0.00 0.00 1900 1534 699 1.0 1399.00 0.00 0.00 1399.00 1 2019-11-30 01:10:02.639688 2019-11-30 01:10:02.639688 \N 1399.00 \N 0.00 0.00 1901 1535 924 1.0 119.00 0.00 0.00 119.00 1 2019-11-30 01:52:05.856783 2019-11-30 01:52:05.856783 \N 119.00 \N 0.00 0.00 1902 1536 903 1.0 1099.00 0.00 0.00 1099.00 1 2019-11-30 17:59:49.443524 2019-11-30 17:59:49.443524 \N 1099.00 \N 0.00 0.00 1903 1537 676 1.0 1200.00 0.00 99.00 1200.00 1 2019-11-30 18:19:57.287193 2019-11-30 18:19:57.287193 \N 1299.00 \N 99.00 0.00 1904 1538 759 1.0 759.00 0.00 0.00 759.00 0 2019-11-30 21:07:40.082335 2019-11-30 21:07:54.455401 \N 759.00 \N 0.00 0.00 1905 1539 759 1.0 759.00 0.00 0.00 759.00 1 2019-11-30 21:08:17.985727 2019-11-30 21:08:17.985727 \N 759.00 \N 0.00 0.00 1907 1541 889 1.0 789.00 0.00 0.00 789.00 1 2019-11-30 23:34:03.722961 2019-11-30 23:34:03.722961 \N 789.00 \N 0.00 0.00 1906 1540 889 1.0 789.00 0.00 0.00 789.00 0 2019-11-30 23:33:10.280825 2019-11-30 23:35:22.850601 \N 789.00 \N 0.00 0.00 1908 1542 953 1.0 2099.00 0.00 0.00 2099.00 1 2019-11-30 23:49:43.780803 2019-11-30 23:49:43.780803 \N 2099.00 \N 0.00 0.00 1909 1543 875 1.0 599.00 0.00 0.00 599.00 1 2019-12-01 01:27:41.581224 2019-12-01 01:27:41.581224 \N 599.00 \N 0.00 0.00 1910 1544 654 1.0 1399.00 0.00 0.00 1399.00 1 2019-12-01 02:02:25.851579 2019-12-01 02:02:25.851579 \N 1399.00 \N 0.00 0.00 1911 1545 593 1.0 659.00 0.00 0.00 659.00 1 2019-12-01 02:05:09.200972 2019-12-01 02:05:09.200972 \N 659.00 \N 0.00 0.00 1912 1546 950 1.0 699.00 0.00 0.00 699.00 1 2019-12-01 02:13:10.105891 2019-12-01 02:13:10.105891 \N 699.00 \N 0.00 0.00 1913 1547 155 1.0 413.79 66.21 119.00 480.00 1 2019-12-01 02:13:33.573053 2019-12-01 02:13:33.573053 \N 599.00 \N 119.00 0.00 1914 1548 140 1.0 559.48 89.52 0.00 649.00 1 2019-12-01 19:57:42.994182 2019-12-01 19:57:42.994182 \N 649.00 \N 0.00 0.00 1915 1549 270 1.0 1033.62 165.38 0.00 1199.00 1 2019-12-01 20:58:48.912453 2019-12-01 20:58:48.912453 \N 1199.00 \N 0.00 0.00 1916 1550 889 1.0 789.00 0.00 0.00 789.00 1 2019-12-01 21:00:51.681206 2019-12-01 21:00:51.681206 \N 789.00 \N 0.00 0.00 1917 1551 790 1.0 829.00 0.00 0.00 829.00 1 2019-12-01 23:03:09.037896 2019-12-01 23:03:09.037896 \N 829.00 \N 0.00 0.00 1918 1552 955 1.0 999.00 0.00 0.00 999.00 1 2019-12-02 19:41:38.020537 2019-12-02 19:41:38.020537 \N 999.00 \N 0.00 0.00 1919 1553 369 1.0 42.24 6.76 0.00 49.00 1 2019-12-02 20:52:50.722628 2019-12-02 20:52:50.722628 \N 49.00 \N 0.00 0.00 1920 1554 796 1.0 1199.00 0.00 0.00 1199.00 1 2019-12-02 21:06:27.691109 2019-12-02 21:06:27.691109 \N 1199.00 \N 0.00 0.00 1921 1555 825 1.0 230.00 0.00 0.00 230.00 1 2019-12-03 01:34:45.583733 2019-12-03 01:34:45.583733 \N 230.00 \N 0.00 0.00 1922 1556 877 1.0 899.00 0.00 0.00 899.00 1 2019-12-03 03:01:12.052522 2019-12-03 03:01:12.052522 \N 899.00 \N 0.00 0.00 1924 1558 883 1.0 1049.00 0.00 0.00 1049.00 1 2019-12-03 20:12:29.80662 2019-12-03 20:12:29.80662 \N 1049.00 \N 0.00 0.00 1925 1558 961 1.0 1299.00 0.00 0.00 1299.00 1 2019-12-03 20:12:29.842262 2019-12-03 20:12:29.842262 \N 1299.00 \N 0.00 0.00 1926 1559 782 1.0 569.00 0.00 0.00 569.00 1 2019-12-03 23:25:08.592619 2019-12-03 23:25:08.592619 \N 569.00 \N 0.00 0.00 1927 1560 956 1.0 899.00 0.00 0.00 899.00 1 2019-12-04 00:53:16.439124 2019-12-04 00:53:16.439124 \N 899.00 \N 0.00 0.00 1928 1561 892 1.0 779.00 0.00 0.00 779.00 1 2019-12-04 20:07:16.775219 2019-12-04 20:07:16.775219 \N 779.00 \N 0.00 0.00 1929 1561 946 1.0 749.00 0.00 0.00 749.00 1 2019-12-04 20:07:16.813533 2019-12-04 20:07:16.813533 \N 749.00 \N 0.00 0.00 1930 1562 476 1.0 85.34 13.65 0.00 98.99 1 2019-12-04 20:33:59.612137 2019-12-04 20:33:59.612137 \N 99.00 \N 0.00 0.00 1931 1563 940 1.0 389.00 0.00 0.00 389.00 1 2019-12-04 20:41:09.131568 2019-12-04 20:41:09.131568 \N 389.00 \N 0.00 0.00 1932 1564 805 1.0 670.65 0.00 118.35 670.65 1 2019-12-04 22:44:46.935017 2019-12-04 22:44:46.935017 \N 789.00 \N 0.00 15.00 1933 1564 85 1.0 475.56 76.09 97.35 551.65 1 2019-12-04 22:44:46.962752 2019-12-04 22:44:46.962752 \N 649.00 \N 0.00 15.00 1934 1565 668 1.0 299.00 0.00 0.00 299.00 1 2019-12-04 23:18:24.741378 2019-12-04 23:18:24.741378 \N 299.00 \N 0.00 0.00 1935 1565 698 1.0 799.00 0.00 0.00 799.00 1 2019-12-04 23:18:24.769219 2019-12-04 23:18:24.769219 \N 799.00 \N 0.00 0.00 1936 1566 954 1.0 1199.00 0.00 0.00 1199.00 1 2019-12-04 23:33:40.178704 2019-12-04 23:33:40.178704 \N 1199.00 \N 0.00 0.00 1937 1567 899 1.0 1629.00 0.00 0.00 1629.00 1 2019-12-05 00:21:12.718353 2019-12-05 00:21:12.718353 \N 1629.00 \N 0.00 0.00 1938 1568 698 1.0 799.00 0.00 0.00 799.00 1 2019-12-05 00:30:31.556835 2019-12-05 00:30:31.556835 \N 799.00 \N 0.00 0.00 1939 1569 893 1.0 699.00 0.00 0.00 699.00 1 2019-12-05 00:59:37.202527 2019-12-05 00:59:37.202527 \N 699.00 \N 0.00 0.00 1940 1569 949 1.0 549.00 0.00 0.00 549.00 1 2019-12-05 00:59:37.241886 2019-12-05 00:59:37.241886 \N 549.00 \N 0.00 0.00 1941 1570 948 1.0 899.00 0.00 0.00 899.00 1 2019-12-05 01:28:07.057836 2019-12-05 01:28:07.057836 \N 899.00 \N 0.00 0.00 1942 1571 948 1.0 899.00 0.00 0.00 899.00 1 2019-12-05 20:30:21.814174 2019-12-05 20:30:21.814174 \N 899.00 \N 0.00 0.00 1943 1572 300 1.0 775.00 124.00 0.00 899.00 1 2019-12-05 20:55:29.168549 2019-12-05 20:55:29.168549 \N 899.00 \N 0.00 0.00 1944 1572 788 1.0 589.00 0.00 0.00 589.00 1 2019-12-05 20:55:29.198355 2019-12-05 20:55:29.198355 \N 589.00 \N 0.00 0.00 1945 1573 735 1.0 692.10 0.00 76.90 692.10 0 2019-12-05 21:38:53.383515 2019-12-05 21:38:58.999898 \N 769.00 \N 0.00 10.00 1946 1574 735 1.0 690.00 0.00 79.00 690.00 1 2019-12-05 21:40:15.828884 2019-12-05 21:40:15.828884 \N 769.00 \N 79.00 0.00 1947 1575 749 1.0 699.00 0.00 0.00 699.00 1 2019-12-05 21:54:25.870757 2019-12-05 21:54:25.870757 \N 699.00 \N 0.00 0.00 1948 1576 871 1.0 599.00 0.00 0.00 599.00 1 2019-12-05 22:04:34.886024 2019-12-05 22:04:34.886024 \N 599.00 \N 0.00 0.00 1949 1577 755 1.0 1129.00 0.00 0.00 1129.00 1 2019-12-05 22:07:23.704374 2019-12-05 22:07:23.704374 \N 1129.00 \N 0.00 0.00 1950 1578 950 1.0 699.00 0.00 0.00 699.00 1 2019-12-05 22:33:06.623639 2019-12-05 22:33:06.623639 \N 699.00 \N 0.00 0.00 1951 1579 889 1.0 789.00 0.00 0.00 789.00 1 2019-12-05 23:18:05.692841 2019-12-05 23:18:05.692841 \N 789.00 \N 0.00 0.00 1952 1580 840 1.0 1899.00 0.00 0.00 1899.00 1 2019-12-05 23:49:21.814384 2019-12-05 23:49:21.814384 \N 1899.00 \N 0.00 0.00 1953 1581 691 1.0 1299.00 0.00 0.00 1299.00 1 2019-12-06 01:46:17.408107 2019-12-06 01:46:17.408107 \N 1299.00 \N 0.00 0.00 1954 1582 810 1.0 1399.00 0.00 0.00 1399.00 1 2019-12-06 17:41:43.012993 2019-12-06 17:41:43.012993 \N 1399.00 \N 0.00 0.00 1955 1583 882 1.0 1299.00 0.00 0.00 1299.00 1 2019-12-06 19:46:36.930661 2019-12-06 19:46:36.930661 \N 1299.00 \N 0.00 0.00 1956 1584 884 1.0 549.00 0.00 0.00 549.00 1 2019-12-07 00:05:14.389865 2019-12-07 00:05:14.389865 \N 549.00 \N 0.00 0.00 1957 1585 668 1.0 299.00 0.00 0.00 299.00 1 2019-12-07 00:54:55.959202 2019-12-07 00:54:55.959202 \N 299.00 \N 0.00 0.00 1958 1586 951 1.0 699.00 0.00 0.00 699.00 1 2019-12-07 01:08:45.639797 2019-12-07 01:08:45.639797 \N 699.00 \N 0.00 0.00 1959 1587 760 1.0 729.00 0.00 0.00 729.00 1 2019-12-07 01:10:26.844963 2019-12-07 01:10:26.844963 \N 729.00 \N 0.00 0.00 1960 1588 880 1.0 999.00 0.00 0.00 999.00 1 2019-12-07 02:29:39.29552 2019-12-07 02:29:39.29552 \N 999.00 \N 0.00 0.00 1961 1589 872 1.0 739.00 0.00 0.00 739.00 1 2019-12-07 19:16:42.006134 2019-12-07 19:16:42.006134 \N 739.00 \N 0.00 0.00 1962 1590 892 1.0 779.00 0.00 0.00 779.00 1 2019-12-07 19:36:44.383793 2019-12-07 19:36:44.383793 \N 779.00 \N 0.00 0.00 1963 1591 910 1.0 899.00 0.00 0.00 899.00 0 2019-12-07 20:10:36.095311 2019-12-07 20:10:54.837722 \N 899.00 \N 0.00 0.00 1964 1592 910 1.0 899.00 0.00 0.00 899.00 1 2019-12-07 20:11:19.931083 2019-12-07 20:11:19.931083 \N 899.00 \N 0.00 0.00 1965 1593 892 1.0 779.00 0.00 0.00 779.00 1 2019-12-07 20:19:43.685937 2019-12-07 20:19:43.685937 \N 779.00 \N 0.00 0.00 1966 1594 884 1.0 549.00 0.00 0.00 549.00 1 2019-12-07 20:56:53.539896 2019-12-07 20:56:53.539896 \N 549.00 \N 0.00 0.00 1967 1595 508 1.0 699.00 0.00 0.00 699.00 1 2019-12-07 21:27:57.192543 2019-12-07 21:27:57.192543 \N 699.00 \N 0.00 0.00 1968 1596 509 1.0 599.00 0.00 0.00 599.00 1 2019-12-07 22:08:00.710302 2019-12-07 22:08:00.710302 \N 599.00 \N 0.00 0.00 1969 1597 885 1.0 899.00 0.00 0.00 899.00 1 2019-12-07 22:08:32.657235 2019-12-07 22:08:32.657235 \N 899.00 \N 0.00 0.00 1970 1598 884 1.0 549.00 0.00 0.00 549.00 1 2019-12-07 23:06:17.404337 2019-12-07 23:06:17.404337 \N 549.00 \N 0.00 0.00 1971 1599 734 1.0 849.00 0.00 0.00 849.00 1 2019-12-07 23:23:01.834224 2019-12-07 23:23:01.834224 \N 849.00 \N 0.00 0.00 1972 1599 890 1.0 629.00 0.00 0.00 629.00 1 2019-12-07 23:23:01.884527 2019-12-07 23:23:01.884527 \N 629.00 \N 0.00 0.00 1973 1600 793 1.0 749.00 0.00 0.00 749.00 1 2019-12-07 23:24:06.520208 2019-12-07 23:24:06.520208 \N 749.00 \N 0.00 0.00 1974 1601 846 1.0 75.00 0.00 0.00 75.00 1 2019-12-07 23:26:36.751364 2019-12-07 23:26:36.751364 \N 75.00 \N 0.00 0.00 1975 1601 849 1.0 75.00 0.00 0.00 75.00 1 2019-12-07 23:26:36.775481 2019-12-07 23:26:36.775481 \N 75.00 \N 0.00 0.00 1976 1602 760 1.0 729.00 0.00 0.00 729.00 1 2019-12-07 23:32:53.373194 2019-12-07 23:32:53.373194 \N 729.00 \N 0.00 0.00 1977 1603 761 1.0 459.00 0.00 0.00 459.00 1 2019-12-07 23:39:32.762963 2019-12-07 23:39:32.762963 \N 459.00 \N 0.00 0.00 1978 1604 369 1.0 42.24 6.76 0.00 49.00 1 2019-12-07 23:44:47.351085 2019-12-07 23:44:47.351085 \N 49.00 \N 0.00 0.00 1979 1605 865 1.0 1399.00 0.00 0.00 1399.00 1 2019-12-07 23:45:00.383913 2019-12-07 23:45:00.383913 \N 1399.00 \N 0.00 0.00 1980 1606 682 1.0 649.00 0.00 0.00 649.00 1 2019-12-07 23:50:36.492946 2019-12-07 23:50:36.492946 \N 649.00 \N 0.00 0.00 1981 1606 369 2.0 84.48 13.52 0.00 98.00 1 2019-12-07 23:50:36.516802 2019-12-07 23:50:36.516802 \N 49.00 \N 0.00 0.00 1982 1607 679 1.0 1199.00 0.00 0.00 1199.00 1 2019-12-07 23:56:41.942475 2019-12-07 23:56:41.942475 \N 1199.00 \N 0.00 0.00 1983 1608 754 1.0 825.00 0.00 0.00 825.00 1 2019-12-08 00:03:04.424261 2019-12-08 00:03:04.424261 \N 825.00 \N 0.00 0.00 1984 1609 484 1.0 999.00 0.00 0.00 999.00 1 2019-12-08 01:47:36.226064 2019-12-08 01:47:36.226064 \N 999.00 \N 0.00 0.00 1985 1609 936 1.0 85.00 0.00 0.00 85.00 1 2019-12-08 01:47:36.253142 2019-12-08 01:47:36.253142 \N 85.00 \N 0.00 0.00 1986 1609 930 1.0 139.00 0.00 0.00 139.00 1 2019-12-08 01:47:36.276344 2019-12-08 01:47:36.276344 \N 139.00 \N 0.00 0.00 1987 1610 963 1.0 949.00 0.00 0.00 949.00 1 2019-12-08 18:20:01.31407 2019-12-08 18:20:01.31407 \N 949.00 \N 0.00 0.00 1988 1611 789 1.0 549.00 0.00 0.00 549.00 1 2019-12-08 18:39:49.684238 2019-12-08 18:39:49.684238 \N 549.00 \N 0.00 0.00 1989 1612 662 1.0 699.00 0.00 0.00 699.00 1 2019-12-09 17:38:02.913954 2019-12-09 17:38:02.913954 \N 699.00 \N 0.00 0.00 1990 1613 806 1.0 689.00 0.00 0.00 689.00 1 2019-12-09 18:04:04.776136 2019-12-09 18:04:04.776136 \N 689.00 \N 0.00 0.00 1991 1614 273 1.0 1378.45 220.55 0.00 1599.00 1 2019-12-09 18:53:41.147638 2019-12-09 18:53:41.147638 \N 1599.00 \N 0.00 0.00 1992 1615 946 1.0 749.00 0.00 0.00 749.00 1 2019-12-09 20:54:42.926053 2019-12-09 20:54:42.926053 \N 749.00 \N 0.00 0.00 1994 1616 961 1.0 1299.00 0.00 0.00 1299.00 0 2019-12-09 21:34:15.438737 2019-12-09 21:42:03.239335 \N 1299.00 \N 0.00 0.00 1993 1616 883 1.0 1049.00 0.00 0.00 1049.00 0 2019-12-09 21:34:15.411801 2019-12-09 21:42:03.26308 \N 1049.00 \N 0.00 0.00 1995 1617 966 1.0 1599.00 0.00 0.00 1599.00 1 2019-12-09 22:41:56.309015 2019-12-09 22:41:56.309015 \N 1599.00 \N 0.00 0.00 1996 1617 717 1.0 2099.00 0.00 0.00 2099.00 1 2019-12-09 22:41:56.335947 2019-12-09 22:41:56.335947 \N 2099.00 \N 0.00 0.00 1997 1618 798 1.0 469.00 0.00 0.00 469.00 1 2019-12-09 22:52:44.330807 2019-12-09 22:52:44.330807 \N 469.00 \N 0.00 0.00 1998 1619 598 1.0 679.00 0.00 0.00 679.00 1 2019-12-09 23:15:09.108382 2019-12-09 23:15:09.108382 \N 679.00 \N 0.00 0.00 1999 1620 947 1.0 899.00 0.00 0.00 899.00 1 2019-12-10 01:13:55.439068 2019-12-10 01:13:55.439068 \N 899.00 \N 0.00 0.00 2000 1621 674 1.0 999.00 0.00 0.00 999.00 1 2019-12-10 01:18:12.038792 2019-12-10 01:18:12.038792 \N 999.00 \N 0.00 0.00 2001 1622 949 1.0 549.00 0.00 0.00 549.00 1 2019-12-10 02:31:30.740704 2019-12-10 02:31:30.740704 \N 549.00 \N 0.00 0.00 2002 1622 466 1.0 699.00 0.00 0.00 699.00 1 2019-12-10 02:31:30.780362 2019-12-10 02:31:30.780362 \N 699.00 \N 0.00 0.00 2003 1623 623 1.0 699.00 0.00 0.00 699.00 1 2019-12-10 18:24:18.429196 2019-12-10 18:24:18.429196 \N 699.00 \N 0.00 0.00 2004 1624 926 1.0 99.00 0.00 0.00 99.00 1 2019-12-10 18:32:13.412936 2019-12-10 18:32:13.412936 \N 99.00 \N 0.00 0.00 2005 1625 751 1.0 1099.00 0.00 0.00 1099.00 1 2019-12-10 18:38:50.351272 2019-12-10 18:38:50.351272 \N 1099.00 \N 0.00 0.00 2006 1626 950 1.0 699.00 0.00 0.00 699.00 1 2019-12-10 18:40:09.547292 2019-12-10 18:40:09.547292 \N 699.00 \N 0.00 0.00 2007 1626 865 1.0 1399.00 0.00 0.00 1399.00 1 2019-12-10 18:40:09.573124 2019-12-10 18:40:09.573124 \N 1399.00 \N 0.00 0.00 2008 1626 791 1.0 569.00 0.00 0.00 569.00 1 2019-12-10 18:40:09.596061 2019-12-10 18:40:09.596061 \N 569.00 \N 0.00 0.00 2009 1626 965 1.0 1699.00 0.00 0.00 1699.00 1 2019-12-10 18:40:09.620269 2019-12-10 18:40:09.620269 \N 1699.00 \N 0.00 0.00 2010 1627 623 1.0 699.00 0.00 0.00 699.00 1 2019-12-10 18:56:20.750293 2019-12-10 18:56:20.750293 \N 699.00 \N 0.00 0.00 2011 1628 911 1.0 749.00 0.00 0.00 749.00 1 2019-12-10 19:02:22.066142 2019-12-10 19:02:22.066142 \N 749.00 \N 0.00 0.00 2012 1629 682 1.0 649.00 0.00 0.00 649.00 1 2019-12-10 19:04:04.625292 2019-12-10 19:04:04.625292 \N 649.00 \N 0.00 0.00 2013 1630 674 1.0 999.00 0.00 0.00 999.00 0 2019-12-10 20:43:38.158199 2019-12-10 20:44:48.605775 \N 999.00 \N 0.00 0.00 2014 1631 674 1.0 999.00 0.00 0.00 999.00 0 2019-12-10 20:47:32.327786 2019-12-10 20:47:46.375162 \N 999.00 \N 0.00 0.00 2017 1633 623 1.0 699.00 0.00 0.00 699.00 1 2019-12-10 21:15:58.89858 2019-12-10 21:15:58.89858 \N 699.00 \N 0.00 0.00 2018 1634 662 1.0 699.00 0.00 0.00 699.00 1 2019-12-10 21:17:27.320019 2019-12-10 21:17:27.320019 \N 699.00 \N 0.00 0.00 2019 1635 463 1.0 899.00 0.00 0.00 899.00 1 2019-12-10 22:19:08.127425 2019-12-10 22:19:08.127425 \N 899.00 \N 0.00 0.00 2020 1636 911 1.0 630.00 0.00 119.00 630.00 1 2019-12-10 23:27:35.394046 2019-12-10 23:27:35.394046 \N 749.00 \N 119.00 0.00 2021 1636 917 1.0 117.00 0.00 22.00 117.00 1 2019-12-10 23:27:35.418968 2019-12-10 23:27:35.418968 \N 139.00 \N 22.00 0.00 2022 1637 899 1.0 1629.00 0.00 0.00 1629.00 1 2019-12-10 23:47:05.113862 2019-12-10 23:47:05.113862 \N 1629.00 \N 0.00 0.00 2023 1638 880 1.0 999.00 0.00 0.00 999.00 1 2019-12-11 00:35:14.858304 2019-12-11 00:35:14.858304 \N 999.00 \N 0.00 0.00 2024 1639 724 1.0 599.00 0.00 0.00 599.00 1 2019-12-11 01:52:15.945917 2019-12-11 01:52:15.945917 \N 599.00 \N 0.00 0.00 2025 1640 788 1.0 589.00 0.00 0.00 589.00 1 2019-12-11 01:56:34.091428 2019-12-11 01:56:34.091428 \N 589.00 \N 0.00 0.00 2026 1641 747 1.0 770.00 0.00 79.00 770.00 1 2019-12-11 17:41:24.512669 2019-12-11 17:41:24.512669 \N 849.00 \N 79.00 0.00 2027 1642 692 1.0 1299.00 0.00 0.00 1299.00 1 2019-12-11 17:55:48.630232 2019-12-11 17:55:48.630232 \N 1299.00 \N 0.00 0.00 2015 1632 674 1.0 999.00 0.00 0.00 999.00 0 2019-12-10 20:48:54.493498 2019-12-13 19:22:30.161005 \N 999.00 \N 0.00 0.00 2028 1643 700 1.0 1345.00 0.00 0.00 1345.00 1 2019-12-11 19:19:17.686074 2019-12-11 19:19:17.686074 \N 1345.00 \N 0.00 0.00 2029 1644 959 1.0 899.00 0.00 0.00 899.00 1 2019-12-11 20:18:02.941089 2019-12-11 20:18:02.941089 \N 899.00 \N 0.00 0.00 2030 1645 890 1.0 629.00 0.00 0.00 629.00 1 2019-12-11 20:29:30.774749 2019-12-11 20:29:30.774749 \N 629.00 \N 0.00 0.00 2031 1646 674 1.0 999.00 0.00 0.00 999.00 0 2019-12-11 21:07:27.554745 2019-12-11 21:09:57.415185 \N 999.00 \N 0.00 0.00 2032 1647 674 1.0 999.00 0.00 0.00 999.00 1 2019-12-11 21:11:11.096029 2019-12-11 21:11:11.096029 \N 999.00 \N 0.00 0.00 2033 1647 914 1.0 129.00 0.00 0.00 129.00 1 2019-12-11 21:11:11.121128 2019-12-11 21:11:11.121128 \N 129.00 \N 0.00 0.00 2034 1648 875 1.0 599.00 0.00 0.00 599.00 1 2019-12-11 22:15:38.735881 2019-12-11 22:15:38.735881 \N 599.00 \N 0.00 0.00 2035 1649 717 1.0 2099.00 0.00 0.00 2099.00 1 2019-12-11 22:26:45.913953 2019-12-11 22:26:45.913953 \N 2099.00 \N 0.00 0.00 2036 1649 919 1.0 115.00 0.00 0.00 115.00 1 2019-12-11 22:26:45.938032 2019-12-11 22:26:45.938032 \N 115.00 \N 0.00 0.00 2037 1650 674 1.0 999.00 0.00 0.00 999.00 1 2019-12-12 00:08:06.36754 2019-12-12 00:08:06.36754 \N 999.00 \N 0.00 0.00 2038 1651 893 1.0 699.00 0.00 0.00 699.00 1 2019-12-12 01:01:52.949621 2019-12-12 01:01:52.949621 \N 699.00 \N 0.00 0.00 2039 1652 697 1.0 799.00 0.00 0.00 799.00 1 2019-12-12 01:02:25.564748 2019-12-12 01:02:25.564748 \N 799.00 \N 0.00 0.00 2040 1653 760 1.0 729.00 0.00 0.00 729.00 1 2019-12-12 01:04:12.101198 2019-12-12 01:04:12.101198 \N 729.00 \N 0.00 0.00 2041 1654 761 1.0 459.00 0.00 0.00 459.00 1 2019-12-12 01:16:02.737024 2019-12-12 01:16:02.737024 \N 459.00 \N 0.00 0.00 2042 1655 663 1.0 699.00 0.00 0.00 699.00 1 2019-12-12 18:37:53.393607 2019-12-12 18:37:53.393607 \N 699.00 \N 0.00 0.00 2043 1656 867 1.0 1299.00 0.00 0.00 1299.00 1 2019-12-12 18:39:45.699457 2019-12-12 18:39:45.699457 \N 1299.00 \N 0.00 0.00 2044 1657 682 1.0 649.00 0.00 0.00 649.00 1 2019-12-12 21:02:22.337425 2019-12-12 21:02:22.337425 \N 649.00 \N 0.00 0.00 2046 1659 734 1.0 849.00 0.00 0.00 849.00 1 2019-12-12 21:58:54.786146 2019-12-12 21:58:54.786146 \N 849.00 \N 0.00 0.00 2047 1660 690 1.0 799.00 0.00 0.00 799.00 1 2019-12-12 22:08:33.630155 2019-12-12 22:08:33.630155 \N 799.00 \N 0.00 0.00 2048 1661 965 1.0 1699.00 0.00 0.00 1699.00 1 2019-12-12 22:29:02.398913 2019-12-12 22:29:02.398913 \N 1699.00 \N 0.00 0.00 2050 1663 950 1.0 699.00 0.00 0.00 699.00 1 2019-12-13 00:04:22.675576 2019-12-13 00:04:22.675576 \N 699.00 \N 0.00 0.00 2051 1664 797 1.0 1199.00 0.00 0.00 1199.00 1 2019-12-13 00:49:00.461374 2019-12-13 00:49:00.461374 \N 1199.00 \N 0.00 0.00 2052 1665 961 1.0 1299.00 0.00 0.00 1299.00 1 2019-12-13 01:11:31.049563 2019-12-13 01:11:31.049563 \N 1299.00 \N 0.00 0.00 2053 1666 29 1.0 2326.72 372.28 0.00 2699.00 0 2019-12-13 02:57:12.721101 2019-12-13 02:57:29.783081 \N 2699.00 \N 0.00 0.00 2054 1667 29 1.0 2326.72 372.28 0.00 2699.00 1 2019-12-13 02:58:00.815709 2019-12-13 02:58:00.815709 \N 2699.00 \N 0.00 0.00 2055 1668 800 1.0 469.00 0.00 0.00 469.00 1 2019-12-13 17:59:10.652392 2019-12-13 17:59:10.652392 \N 469.00 \N 0.00 0.00 2016 1632 751 1.0 1099.00 0.00 0.00 1099.00 0 2019-12-10 20:48:54.517755 2019-12-13 19:22:30.135235 \N 1099.00 \N 0.00 0.00 2045 1658 882 1.0 1299.00 0.00 0.00 1299.00 0 2019-12-12 21:52:29.673541 2019-12-13 19:24:31.464883 \N 1299.00 \N 0.00 0.00 2056 1669 674 1.0 999.00 0.00 0.00 999.00 1 2019-12-13 19:26:13.980201 2019-12-13 19:26:13.980201 \N 999.00 \N 0.00 0.00 2057 1670 759 1.0 759.00 0.00 0.00 759.00 1 2019-12-13 21:38:21.385848 2019-12-13 21:38:21.385848 \N 759.00 \N 0.00 0.00 2058 1671 679 1.0 1199.00 0.00 0.00 1199.00 1 2019-12-13 22:59:56.248925 2019-12-13 22:59:56.248925 \N 1199.00 \N 0.00 0.00 2059 1672 806 1.0 689.00 0.00 0.00 689.00 1 2019-12-13 23:28:56.905163 2019-12-13 23:28:56.905163 \N 689.00 \N 0.00 0.00 2060 1673 672 1.0 699.00 0.00 0.00 699.00 1 2019-12-14 00:16:03.472279 2019-12-14 00:16:03.472279 \N 699.00 \N 0.00 0.00 2061 1674 676 1.0 1299.00 0.00 0.00 1299.00 1 2019-12-14 01:39:36.401309 2019-12-14 01:39:36.401309 \N 1299.00 \N 0.00 0.00 2062 1675 963 1.0 949.00 0.00 0.00 949.00 1 2019-12-14 01:42:47.962331 2019-12-14 01:42:47.962331 \N 949.00 \N 0.00 0.00 2063 1676 913 1.0 239.00 0.00 0.00 239.00 1 2019-12-14 02:11:12.417232 2019-12-14 02:11:12.417232 \N 239.00 \N 0.00 0.00 2064 1677 476 1.0 85.34 13.65 0.00 98.99 1 2019-12-14 02:17:16.354371 2019-12-14 02:17:16.354371 \N 99.00 \N 0.00 0.00 2065 1677 782 1.0 569.00 0.00 0.00 569.00 1 2019-12-14 02:17:16.385379 2019-12-14 02:17:16.385379 \N 569.00 \N 0.00 0.00 2066 1677 760 1.0 729.00 0.00 0.00 729.00 1 2019-12-14 02:17:16.409472 2019-12-14 02:17:16.409472 \N 729.00 \N 0.00 0.00 2067 1678 872 1.0 739.00 0.00 0.00 739.00 1 2019-12-14 19:01:13.811957 2019-12-14 19:01:13.811957 \N 739.00 \N 0.00 0.00 2068 1679 672 1.0 699.00 0.00 0.00 699.00 1 2019-12-14 19:01:41.264135 2019-12-14 19:01:41.264135 \N 699.00 \N 0.00 0.00 2069 1680 661 1.0 599.00 0.00 0.00 599.00 1 2019-12-14 19:05:57.464554 2019-12-14 19:05:57.464554 \N 599.00 \N 0.00 0.00 2070 1681 872 1.0 739.00 0.00 0.00 739.00 1 2019-12-14 19:11:04.341589 2019-12-14 19:11:04.341589 \N 739.00 \N 0.00 0.00 2071 1682 751 1.0 1099.00 0.00 0.00 1099.00 1 2019-12-14 19:17:20.126397 2019-12-14 19:17:20.126397 \N 1099.00 \N 0.00 0.00 2072 1683 695 1.0 1299.00 0.00 0.00 1299.00 1 2019-12-14 19:26:46.072826 2019-12-14 19:26:46.072826 \N 1299.00 \N 0.00 0.00 2073 1684 948 1.0 899.00 0.00 0.00 899.00 1 2019-12-14 19:29:26.507113 2019-12-14 19:29:26.507113 \N 899.00 \N 0.00 0.00 2074 1685 724 1.0 599.00 0.00 0.00 599.00 1 2019-12-14 19:45:39.768981 2019-12-14 19:45:39.768981 \N 599.00 \N 0.00 0.00 2075 1685 369 1.0 42.24 6.76 0.00 49.00 1 2019-12-14 19:45:39.809103 2019-12-14 19:45:39.809103 \N 49.00 \N 0.00 0.00 2076 1686 887 1.0 1099.00 0.00 0.00 1099.00 1 2019-12-14 20:10:41.583407 2019-12-14 20:10:41.583407 \N 1099.00 \N 0.00 0.00 2077 1687 892 1.0 779.00 0.00 0.00 779.00 1 2019-12-14 20:39:50.309601 2019-12-14 20:39:50.309601 \N 779.00 \N 0.00 0.00 2078 1688 676 1.0 1299.00 0.00 0.00 1299.00 1 2019-12-14 20:45:47.531631 2019-12-14 20:45:47.531631 \N 1299.00 \N 0.00 0.00 2079 1689 865 1.0 1399.00 0.00 0.00 1399.00 1 2019-12-14 21:04:43.29366 2019-12-14 21:04:43.29366 \N 1399.00 \N 0.00 0.00 2080 1690 950 1.0 699.00 0.00 0.00 699.00 1 2019-12-14 21:23:58.030595 2019-12-14 21:23:58.030595 \N 699.00 \N 0.00 0.00 2081 1691 800 1.0 469.00 0.00 0.00 469.00 1 2019-12-14 22:10:31.320812 2019-12-14 22:10:31.320812 \N 469.00 \N 0.00 0.00 2082 1691 797 1.0 1199.00 0.00 0.00 1199.00 1 2019-12-14 22:10:31.360344 2019-12-14 22:10:31.360344 \N 1199.00 \N 0.00 0.00 2083 1691 961 1.0 1099.00 0.00 200.00 1099.00 1 2019-12-14 22:10:31.382949 2019-12-14 22:10:31.382949 \N 1299.00 \N 200.00 0.00 2084 1692 476 1.0 85.34 13.65 0.00 98.99 1 2019-12-14 22:11:48.191286 2019-12-14 22:11:48.191286 \N 99.00 \N 0.00 0.00 2085 1693 950 1.0 699.00 0.00 0.00 699.00 1 2019-12-14 23:18:53.519263 2019-12-14 23:18:53.519263 \N 699.00 \N 0.00 0.00 2086 1694 884 1.0 549.00 0.00 0.00 549.00 1 2019-12-14 23:26:02.101732 2019-12-14 23:26:02.101732 \N 549.00 \N 0.00 0.00 2087 1695 623 1.0 699.00 0.00 0.00 699.00 1 2019-12-14 23:45:39.440507 2019-12-14 23:45:39.440507 \N 699.00 \N 0.00 0.00 2088 1696 866 1.0 1349.00 0.00 0.00 1349.00 1 2019-12-15 00:07:23.745701 2019-12-15 00:07:23.745701 \N 1349.00 \N 0.00 0.00 2089 1697 953 1.0 2099.00 0.00 0.00 2099.00 0 2019-12-15 00:13:21.625736 2019-12-15 00:17:48.169497 \N 2099.00 \N 0.00 0.00 2090 1698 953 1.0 1763.16 0.00 335.84 1763.16 1 2019-12-15 00:18:46.829732 2019-12-15 00:18:46.829732 \N 2099.00 \N 0.00 16.00 2091 1699 752 1.0 1129.00 0.00 0.00 1129.00 1 2019-12-15 00:35:24.667098 2019-12-15 00:35:24.667098 \N 1129.00 \N 0.00 0.00 2092 1700 911 1.0 749.00 0.00 0.00 749.00 1 2019-12-15 00:38:36.964079 2019-12-15 00:38:36.964079 \N 749.00 \N 0.00 0.00 2093 1701 884 1.0 549.00 0.00 0.00 549.00 1 2019-12-15 00:50:56.242514 2019-12-15 00:50:56.242514 \N 549.00 \N 0.00 0.00 2094 1702 715 1.0 969.00 0.00 0.00 969.00 1 2019-12-15 01:00:38.34616 2019-12-15 01:00:38.34616 \N 969.00 \N 0.00 0.00 2095 1703 910 1.0 899.00 0.00 0.00 899.00 1 2019-12-15 01:11:14.627261 2019-12-15 01:11:14.627261 \N 899.00 \N 0.00 0.00 2096 1704 872 1.0 739.00 0.00 0.00 739.00 1 2019-12-15 01:15:23.594107 2019-12-15 01:15:23.594107 \N 739.00 \N 0.00 0.00 2097 1704 124 1.0 395.69 63.31 0.00 459.00 1 2019-12-15 01:15:23.619221 2019-12-15 01:15:23.619221 \N 459.00 \N 0.00 0.00 2098 1705 809 1.0 899.00 0.00 0.00 899.00 1 2019-12-15 18:16:38.34611 2019-12-15 18:16:38.34611 \N 899.00 \N 0.00 0.00 2099 1706 954 1.0 1199.00 0.00 0.00 1199.00 1 2019-12-15 18:51:37.289257 2019-12-15 18:51:37.289257 \N 1199.00 \N 0.00 0.00 2100 1706 698 1.0 799.00 0.00 0.00 799.00 1 2019-12-15 18:51:37.316302 2019-12-15 18:51:37.316302 \N 799.00 \N 0.00 0.00 2101 1707 634 1.0 799.00 0.00 0.00 799.00 1 2019-12-15 18:55:43.220862 2019-12-15 18:55:43.220862 \N 799.00 \N 0.00 0.00 2102 1708 940 1.0 389.00 0.00 0.00 389.00 1 2019-12-15 19:42:22.162774 2019-12-15 19:42:22.162774 \N 389.00 \N 0.00 0.00 2103 1709 655 1.0 1499.00 0.00 0.00 1499.00 1 2019-12-15 19:45:39.011245 2019-12-15 19:45:39.011245 \N 1499.00 \N 0.00 0.00 1498 1208 717 1.0 2099.00 0.00 0.00 2099.00 0 2019-10-06 01:15:14.428162 2019-12-15 21:18:50.092867 \N 2099.00 \N 0.00 0.00 2104 1710 944 1.0 1989.00 0.00 0.00 1989.00 1 2019-12-15 22:24:42.252551 2019-12-15 22:24:42.252551 \N 1989.00 \N 0.00 0.00 2105 1710 954 1.0 1199.00 0.00 0.00 1199.00 1 2019-12-15 22:24:42.277306 2019-12-15 22:24:42.277306 \N 1199.00 \N 0.00 0.00 2106 1711 800 1.0 469.00 0.00 0.00 469.00 1 2019-12-15 22:25:52.453342 2019-12-15 22:25:52.453342 \N 469.00 \N 0.00 0.00 2107 1712 697 1.0 799.00 0.00 0.00 799.00 1 2019-12-16 18:08:37.009177 2019-12-16 18:08:37.009177 \N 799.00 \N 0.00 0.00 2108 1713 922 1.0 149.00 0.00 0.00 149.00 1 2019-12-16 18:24:47.40289 2019-12-16 18:24:47.40289 \N 149.00 \N 0.00 0.00 2109 1714 587 1.0 499.00 0.00 0.00 499.00 1 2019-12-16 21:20:20.315444 2019-12-16 21:20:20.315444 \N 499.00 \N 0.00 0.00 2110 1715 809 1.0 899.00 0.00 0.00 899.00 1 2019-12-16 22:55:24.599968 2019-12-16 22:55:24.599968 \N 899.00 \N 0.00 0.00 2111 1716 797 1.0 1199.00 0.00 0.00 1199.00 1 2019-12-16 23:18:42.43168 2019-12-16 23:18:42.43168 \N 1199.00 \N 0.00 0.00 2112 1717 851 1.0 99.00 0.00 0.00 99.00 1 2019-12-17 00:35:48.216563 2019-12-17 00:35:48.216563 \N 99.00 \N 0.00 0.00 2113 1717 929 1.0 99.00 0.00 0.00 99.00 1 2019-12-17 00:35:48.257456 2019-12-17 00:35:48.257456 \N 99.00 \N 0.00 0.00 2114 1718 944 1.0 1989.00 0.00 0.00 1989.00 1 2019-12-17 00:49:54.979236 2019-12-17 00:49:54.979236 \N 1989.00 \N 0.00 0.00 2115 1719 924 1.0 119.00 0.00 0.00 119.00 1 2019-12-17 00:58:29.515678 2019-12-17 00:58:29.515678 \N 119.00 \N 0.00 0.00 2116 1719 913 1.0 239.00 0.00 0.00 239.00 1 2019-12-17 00:58:29.552921 2019-12-17 00:58:29.552921 \N 239.00 \N 0.00 0.00 2117 1720 948 1.0 899.00 0.00 0.00 899.00 1 2019-12-17 02:24:13.70562 2019-12-17 02:24:13.70562 \N 899.00 \N 0.00 0.00 2118 1721 893 1.0 699.00 0.00 0.00 699.00 1 2019-12-17 17:20:26.414065 2019-12-17 17:20:26.414065 \N 699.00 \N 0.00 0.00 2119 1722 948 1.0 899.00 0.00 0.00 899.00 1 2019-12-17 17:31:37.221375 2019-12-17 17:31:37.221375 \N 899.00 \N 0.00 0.00 2120 1723 81 1.0 387.07 61.93 150.00 449.00 1 2019-12-17 18:35:56.201127 2019-12-17 18:35:56.201127 \N 599.00 \N 150.00 0.00 2121 1724 760 1.0 729.00 0.00 0.00 729.00 1 2019-12-17 19:53:01.518034 2019-12-17 19:53:01.518034 \N 729.00 \N 0.00 0.00 2122 1724 895 1.0 1629.00 0.00 0.00 1629.00 1 2019-12-17 19:53:01.543052 2019-12-17 19:53:01.543052 \N 1629.00 \N 0.00 0.00 2123 1725 887 1.0 1099.00 0.00 0.00 1099.00 1 2019-12-17 20:08:36.141939 2019-12-17 20:08:36.141939 \N 1099.00 \N 0.00 0.00 2124 1726 822 1.0 169.00 0.00 0.00 169.00 1 2019-12-17 22:50:21.349774 2019-12-17 22:50:21.349774 \N 169.00 \N 0.00 0.00 2125 1727 888 1.0 1199.00 0.00 0.00 1199.00 1 2019-12-17 23:54:30.515559 2019-12-17 23:54:30.515559 \N 1199.00 \N 0.00 0.00 2126 1728 864 1.0 1199.00 0.00 0.00 1199.00 1 2019-12-18 00:40:45.13776 2019-12-18 00:40:45.13776 \N 1199.00 \N 0.00 0.00 2127 1729 966 1.0 1599.00 0.00 0.00 1599.00 1 2019-12-18 01:58:30.582439 2019-12-18 01:58:30.582439 \N 1599.00 \N 0.00 0.00 2128 1730 793 1.0 749.00 0.00 0.00 749.00 1 2019-12-18 19:51:35.649323 2019-12-18 19:51:35.649323 \N 749.00 \N 0.00 0.00 2129 1731 800 1.0 469.00 0.00 0.00 469.00 1 2019-12-18 20:27:23.387591 2019-12-18 20:27:23.387591 \N 469.00 \N 0.00 0.00 2130 1732 559 1.0 579.00 0.00 0.00 579.00 1 2019-12-18 20:47:47.757838 2019-12-18 20:47:47.757838 \N 579.00 \N 0.00 0.00 2131 1733 893 1.0 699.00 0.00 0.00 699.00 1 2019-12-18 20:53:36.334741 2019-12-18 20:53:36.334741 \N 699.00 \N 0.00 0.00 2132 1734 886 1.0 989.00 0.00 0.00 989.00 1 2019-12-18 21:58:26.712487 2019-12-18 21:58:26.712487 \N 989.00 \N 0.00 0.00 2133 1735 954 1.0 1199.00 0.00 0.00 1199.00 1 2019-12-18 22:47:56.306383 2019-12-18 22:47:56.306383 \N 1199.00 \N 0.00 0.00 2134 1735 947 1.0 899.00 0.00 0.00 899.00 1 2019-12-18 22:47:56.330684 2019-12-18 22:47:56.330684 \N 899.00 \N 0.00 0.00 2135 1736 938 1.0 149.00 0.00 0.00 149.00 1 2019-12-18 23:31:47.2369 2019-12-18 23:31:47.2369 \N 149.00 \N 0.00 0.00 2136 1737 891 1.0 749.00 0.00 0.00 749.00 1 2019-12-18 23:50:52.662113 2019-12-18 23:50:52.662113 \N 749.00 \N 0.00 0.00 2137 1738 559 1.0 579.00 0.00 0.00 579.00 1 2019-12-19 00:27:58.18696 2019-12-19 00:27:58.18696 \N 579.00 \N 0.00 0.00 2138 1739 954 1.0 1199.00 0.00 0.00 1199.00 1 2019-12-19 00:45:07.634877 2019-12-19 00:45:07.634877 \N 1199.00 \N 0.00 0.00 2139 1739 804 1.0 599.00 0.00 0.00 599.00 1 2019-12-19 00:45:07.667653 2019-12-19 00:45:07.667653 \N 599.00 \N 0.00 0.00 2049 1662 961 1.0 1299.00 0.00 0.00 1299.00 0 2019-12-12 23:49:09.308051 2019-12-19 01:17:49.732255 \N 1299.00 \N 0.00 0.00 2140 1740 961 1.0 1299.00 0.00 0.00 1299.00 1 2019-12-19 01:20:38.956979 2019-12-19 01:20:38.956979 \N 1299.00 \N 0.00 0.00 2141 1741 789 1.0 549.00 0.00 0.00 549.00 1 2019-12-19 01:25:40.894967 2019-12-19 01:25:40.894967 \N 549.00 \N 0.00 0.00 2142 1741 903 1.0 1099.00 0.00 0.00 1099.00 1 2019-12-19 01:25:40.922584 2019-12-19 01:25:40.922584 \N 1099.00 \N 0.00 0.00 2143 1742 911 1.0 749.00 0.00 0.00 749.00 1 2019-12-19 01:44:17.375858 2019-12-19 01:44:17.375858 \N 749.00 \N 0.00 0.00 2144 1743 877 1.0 764.00 0.00 135.00 764.00 1 2019-12-19 01:47:22.416465 2019-12-19 01:47:22.416465 \N 899.00 \N 135.00 0.00 2145 1743 865 1.0 1189.00 0.00 210.00 1189.00 1 2019-12-19 01:47:22.440845 2019-12-19 01:47:22.440845 \N 1399.00 \N 210.00 0.00 2146 1744 676 1.0 1299.00 0.00 0.00 1299.00 1 2019-12-19 02:33:50.586044 2019-12-19 02:33:50.586044 \N 1299.00 \N 0.00 0.00 2147 1744 791 1.0 569.00 0.00 0.00 569.00 1 2019-12-19 02:33:50.613388 2019-12-19 02:33:50.613388 \N 569.00 \N 0.00 0.00 2148 1745 950 1.0 699.00 0.00 0.00 699.00 1 2019-12-19 02:51:36.264902 2019-12-19 02:51:36.264902 \N 699.00 \N 0.00 0.00 2149 1745 937 1.0 369.00 0.00 0.00 369.00 1 2019-12-19 02:51:36.288107 2019-12-19 02:51:36.288107 \N 369.00 \N 0.00 0.00 2150 1746 886 1.0 989.00 0.00 0.00 989.00 1 2019-12-19 17:34:16.626797 2019-12-19 17:34:16.626797 \N 989.00 \N 0.00 0.00 2151 1747 191 1.0 430.17 68.83 0.00 499.00 1 2019-12-19 18:22:44.213027 2019-12-19 18:22:44.213027 \N 499.00 \N 0.00 0.00 2152 1748 676 1.0 1299.00 0.00 0.00 1299.00 1 2019-12-19 18:34:37.01838 2019-12-19 18:34:37.01838 \N 1299.00 \N 0.00 0.00 2153 1749 597 1.0 649.00 0.00 0.00 649.00 1 2019-12-19 19:45:41.603146 2019-12-19 19:45:41.603146 \N 649.00 \N 0.00 0.00 2154 1750 671 1.0 799.00 0.00 0.00 799.00 1 2019-12-19 19:55:28.595984 2019-12-19 19:55:28.595984 \N 799.00 \N 0.00 0.00 2155 1751 877 1.0 755.16 0.00 143.84 755.16 1 2019-12-19 20:20:48.484024 2019-12-19 20:20:48.484024 \N 899.00 \N 0.00 16.00 2156 1751 743 1.0 965.16 0.00 183.84 965.16 1 2019-12-19 20:20:48.532986 2019-12-19 20:20:48.532986 \N 1149.00 \N 0.00 16.00 2157 1752 855 1.0 1859.00 0.00 0.00 1859.00 1 2019-12-19 20:41:20.084314 2019-12-19 20:41:20.084314 \N 1859.00 \N 0.00 0.00 2158 1753 948 1.0 899.00 0.00 0.00 899.00 1 2019-12-19 22:05:57.196536 2019-12-19 22:05:57.196536 \N 899.00 \N 0.00 0.00 2159 1754 865 1.0 1399.00 0.00 0.00 1399.00 1 2019-12-19 22:15:46.507951 2019-12-19 22:15:46.507951 \N 1399.00 \N 0.00 0.00 2160 1755 717 1.0 2099.00 0.00 0.00 2099.00 1 2019-12-19 23:06:14.484477 2019-12-19 23:06:14.484477 \N 2099.00 \N 0.00 0.00 2161 1756 893 1.0 699.00 0.00 0.00 699.00 1 2019-12-20 01:45:13.820019 2019-12-20 01:45:13.820019 \N 699.00 \N 0.00 0.00 2162 1757 875 1.0 599.00 0.00 0.00 599.00 1 2019-12-20 02:38:38.242277 2019-12-20 02:38:38.242277 \N 599.00 \N 0.00 0.00 2163 1758 900 1.0 1099.00 0.00 0.00 1099.00 1 2019-12-20 20:30:01.012728 2019-12-20 20:30:01.012728 \N 1099.00 \N 0.00 0.00 2164 1759 874 1.0 759.00 0.00 0.00 759.00 1 2019-12-20 21:29:16.417154 2019-12-20 21:29:16.417154 \N 759.00 \N 0.00 0.00 2165 1760 805 1.0 789.00 0.00 0.00 789.00 1 2019-12-20 21:31:45.881676 2019-12-20 21:31:45.881676 \N 789.00 \N 0.00 0.00 2166 1761 873 1.0 729.00 0.00 0.00 729.00 1 2019-12-20 21:38:02.554119 2019-12-20 21:38:02.554119 \N 729.00 \N 0.00 0.00 2167 1762 891 1.0 749.00 0.00 0.00 749.00 0 2019-12-20 21:59:50.824749 2019-12-20 21:59:59.779147 \N 749.00 \N 0.00 0.00 2168 1763 891 1.0 749.00 0.00 0.00 749.00 1 2019-12-20 22:00:56.572225 2019-12-20 22:00:56.572225 \N 749.00 \N 0.00 0.00 2169 1764 956 1.0 899.00 0.00 0.00 899.00 1 2019-12-20 23:18:22.121773 2019-12-20 23:18:22.121773 \N 899.00 \N 0.00 0.00 2170 1765 954 1.0 1079.10 0.00 119.90 1079.10 1 2019-12-20 23:25:15.234432 2019-12-20 23:25:15.234432 \N 1199.00 \N 0.00 10.00 2171 1766 717 1.0 2099.00 0.00 0.00 2099.00 1 2019-12-20 23:38:44.0087 2019-12-20 23:38:44.0087 \N 2099.00 \N 0.00 0.00 2172 1767 865 1.0 1260.00 0.00 139.00 1260.00 1 2019-12-20 23:55:39.948455 2019-12-20 23:55:39.948455 \N 1399.00 \N 139.00 0.00 2173 1768 755 1.0 1129.00 0.00 0.00 1129.00 1 2019-12-21 02:22:12.412802 2019-12-21 02:22:12.412802 \N 1129.00 \N 0.00 0.00 2174 1769 895 1.0 1466.10 0.00 162.90 1466.10 1 2019-12-21 18:18:40.943416 2019-12-21 18:18:40.943416 \N 1629.00 \N 0.00 10.00 2175 1770 886 1.0 989.00 0.00 0.00 989.00 0 2019-12-21 18:22:20.218544 2019-12-21 18:23:36.730852 \N 989.00 \N 0.00 0.00 2176 1771 928 1.0 149.00 0.00 0.00 149.00 1 2019-12-21 18:24:08.298079 2019-12-21 18:24:08.298079 \N 149.00 \N 0.00 0.00 2177 1771 886 1.0 989.00 0.00 0.00 989.00 1 2019-12-21 18:24:08.32668 2019-12-21 18:24:08.32668 \N 989.00 \N 0.00 0.00 2178 1772 369 2.0 84.48 13.52 0.00 98.00 1 2019-12-21 18:38:32.40552 2019-12-21 18:38:32.40552 \N 49.00 \N 0.00 0.00 2179 1773 903 1.0 1099.00 0.00 0.00 1099.00 1 2019-12-21 19:03:24.266327 2019-12-21 19:03:24.266327 \N 1099.00 \N 0.00 0.00 2180 1774 741 1.0 560.00 0.00 239.00 560.00 1 2019-12-21 19:08:14.526793 2019-12-21 19:08:14.526793 \N 799.00 \N 239.00 0.00 2181 1775 610 1.0 559.48 89.52 0.00 649.00 1 2019-12-21 19:17:17.43501 2019-12-21 19:17:17.43501 \N 649.00 \N 0.00 0.00 2182 1776 676 1.0 1170.00 0.00 129.00 1170.00 1 2019-12-21 19:29:18.06434 2019-12-21 19:29:18.06434 \N 1299.00 \N 129.00 0.00 2183 1777 737 1.0 885.00 0.00 64.00 885.00 1 2019-12-21 19:39:12.605074 2019-12-21 19:39:12.605074 \N 949.00 \N 64.00 0.00 2184 1778 832 1.0 360.00 0.00 0.00 360.00 1 2019-12-21 20:23:59.324042 2019-12-21 20:23:59.324042 \N 360.00 \N 0.00 0.00 2185 1778 831 1.0 320.00 0.00 0.00 320.00 1 2019-12-21 20:23:59.349585 2019-12-21 20:23:59.349585 \N 320.00 \N 0.00 0.00 2186 1778 811 1.0 249.00 0.00 0.00 249.00 1 2019-12-21 20:23:59.373039 2019-12-21 20:23:59.373039 \N 249.00 \N 0.00 0.00 2187 1778 813 1.0 249.00 0.00 0.00 249.00 1 2019-12-21 20:23:59.395084 2019-12-21 20:23:59.395084 \N 249.00 \N 0.00 0.00 2188 1778 812 1.0 249.00 0.00 71.00 249.00 1 2019-12-21 20:23:59.417151 2019-12-21 20:23:59.417151 \N 320.00 \N 71.00 0.00 2189 1779 887 1.0 810.00 0.00 289.00 810.00 1 2019-12-21 20:49:07.398323 2019-12-21 20:49:07.398323 \N 1099.00 \N 289.00 0.00 2190 1780 757 1.0 719.10 0.00 79.90 719.10 1 2019-12-21 20:59:54.906424 2019-12-21 20:59:54.906424 \N 799.00 \N 0.00 10.00 2191 1781 701 1.0 1394.10 0.00 154.90 1394.10 1 2019-12-21 21:11:01.144295 2019-12-21 21:11:01.144295 \N 1549.00 \N 0.00 10.00 2192 1781 762 1.0 755.10 0.00 83.90 755.10 1 2019-12-21 21:11:01.16834 2019-12-21 21:11:01.16834 \N 839.00 \N 0.00 10.00 2193 1782 874 1.0 683.10 0.00 75.90 683.10 1 2019-12-21 21:16:00.857138 2019-12-21 21:16:00.857138 \N 759.00 \N 0.00 10.00 2194 1782 173 1.0 697.50 111.60 89.90 809.10 1 2019-12-21 21:16:00.882207 2019-12-21 21:16:00.882207 \N 899.00 \N 0.00 10.00 2195 1783 873 1.0 656.10 0.00 72.90 656.10 1 2019-12-21 21:25:50.815158 2019-12-21 21:25:50.815158 \N 729.00 \N 0.00 10.00 2196 1783 678 1.0 1169.10 0.00 129.90 1169.10 1 2019-12-21 21:25:50.839078 2019-12-21 21:25:50.839078 \N 1299.00 \N 0.00 10.00 2197 1784 927 2.0 298.00 0.00 0.00 298.00 1 2019-12-21 21:27:19.959799 2019-12-21 21:27:19.959799 \N 149.00 \N 0.00 0.00 2198 1785 674 1.0 849.15 0.00 149.85 849.15 1 2019-12-21 21:35:53.120655 2019-12-21 21:35:53.120655 \N 999.00 \N 0.00 15.00 2199 1786 791 1.0 512.10 0.00 56.90 512.10 1 2019-12-21 21:43:40.777391 2019-12-21 21:43:40.777391 \N 569.00 \N 0.00 10.00 2200 1787 958 1.0 674.00 0.00 75.00 674.00 1 2019-12-21 22:08:41.408951 2019-12-21 22:08:41.408951 \N 749.00 \N 75.00 0.00 2201 1787 897 1.0 1502.00 0.00 167.00 1502.00 1 2019-12-21 22:08:41.433203 2019-12-21 22:08:41.433203 \N 1669.00 \N 167.00 0.00 2202 1787 883 1.0 1044.00 0.00 5.00 1044.00 1 2019-12-21 22:08:41.453884 2019-12-21 22:08:41.453884 \N 1049.00 \N 5.00 0.00 2203 1788 623 1.0 489.30 0.00 209.70 489.30 1 2019-12-21 22:23:32.813735 2019-12-21 22:23:32.813735 \N 699.00 \N 0.00 30.00 2204 1789 800 1.0 430.00 0.00 39.00 430.00 1 2019-12-21 22:25:20.198505 2019-12-21 22:25:20.198505 \N 469.00 \N 39.00 0.00 2205 1790 807 1.0 494.00 0.00 55.00 494.00 1 2019-12-21 22:51:57.320213 2019-12-21 22:51:57.320213 \N 549.00 \N 55.00 0.00 2206 1791 757 1.0 59.00 0.00 740.00 59.00 0 2019-12-21 22:52:08.165772 2019-12-21 22:52:42.096222 \N 799.00 \N 740.00 0.00 2207 1792 757 1.0 740.00 0.00 59.00 740.00 1 2019-12-21 22:53:15.040842 2019-12-21 22:53:15.040842 \N 799.00 \N 59.00 0.00 2208 1793 664 1.0 588.00 0.00 111.00 588.00 1 2019-12-21 22:57:27.287011 2019-12-21 22:57:27.287011 \N 699.00 \N 111.00 0.00 2209 1793 960 1.0 840.00 0.00 159.00 840.00 1 2019-12-21 22:57:27.311197 2019-12-21 22:57:27.311197 \N 999.00 \N 159.00 0.00 2210 1794 784 1.0 599.00 0.00 0.00 599.00 1 2019-12-21 23:01:00.400539 2019-12-21 23:01:00.400539 \N 599.00 \N 0.00 0.00 2211 1794 893 1.0 699.00 0.00 0.00 699.00 1 2019-12-21 23:01:00.427404 2019-12-21 23:01:00.427404 \N 699.00 \N 0.00 0.00 2212 1794 757 1.0 464.00 0.00 335.00 464.00 1 2019-12-21 23:01:00.452104 2019-12-21 23:01:00.452104 \N 799.00 \N 335.00 0.00 2213 1795 953 1.0 2099.00 0.00 0.00 2099.00 1 2019-12-21 23:10:27.039251 2019-12-21 23:10:27.039251 \N 2099.00 \N 0.00 0.00 2214 1795 676 1.0 1299.00 0.00 0.00 1299.00 1 2019-12-21 23:10:27.064418 2019-12-21 23:10:27.064418 \N 1299.00 \N 0.00 0.00 2215 1796 799 1.0 459.00 0.00 0.00 459.00 1 2019-12-22 00:00:49.845892 2019-12-22 00:00:49.845892 \N 459.00 \N 0.00 0.00 2216 1797 949 1.0 549.00 0.00 0.00 549.00 0 2019-12-22 01:21:16.006327 2019-12-22 01:21:26.360378 \N 549.00 \N 0.00 0.00 2217 1798 949 1.0 494.10 0.00 54.90 494.10 1 2019-12-22 01:22:09.341611 2019-12-22 01:22:09.341611 \N 549.00 \N 0.00 10.00 2218 1799 783 1.0 599.00 0.00 200.00 599.00 1 2019-12-22 01:32:13.372742 2019-12-22 01:32:13.372742 \N 799.00 \N 200.00 0.00 2219 1800 569 1.0 489.00 0.00 0.00 489.00 1 2019-12-22 01:36:35.444771 2019-12-22 01:36:35.444771 \N 489.00 \N 0.00 0.00 2220 1800 954 1.0 1079.10 0.00 119.90 1079.10 1 2019-12-22 01:36:35.472534 2019-12-22 01:36:35.472534 \N 1199.00 \N 0.00 10.00 2221 1801 870 1.0 404.10 0.00 44.90 404.10 1 2019-12-22 02:04:39.90388 2019-12-22 02:04:39.90388 \N 449.00 \N 0.00 10.00 2222 1802 895 1.0 1460.00 0.00 169.00 1460.00 1 2019-12-22 02:08:51.601543 2019-12-22 02:08:51.601543 \N 1629.00 \N 169.00 0.00 2223 1803 895 1.0 1303.20 0.00 325.80 1303.20 0 2019-12-22 02:55:19.862213 2019-12-22 03:01:39.100328 \N 1629.00 \N 0.00 20.00 2224 1804 895 1.0 1303.20 0.00 325.80 1303.20 1 2019-12-22 03:02:41.96472 2019-12-22 03:02:41.96472 \N 1629.00 \N 0.00 20.00 2225 1804 757 1.0 639.20 0.00 159.80 639.20 1 2019-12-22 03:02:41.989034 2019-12-22 03:02:41.989034 \N 799.00 \N 0.00 20.00 2226 1805 946 1.0 749.00 0.00 0.00 749.00 1 2019-12-22 18:03:43.728814 2019-12-22 18:03:43.728814 \N 749.00 \N 0.00 0.00 2227 1805 923 1.0 369.00 0.00 0.00 369.00 1 2019-12-22 18:03:43.781126 2019-12-22 18:03:43.781126 \N 369.00 \N 0.00 0.00 2228 1805 960 1.0 999.00 0.00 0.00 999.00 1 2019-12-22 18:03:43.808546 2019-12-22 18:03:43.808546 \N 999.00 \N 0.00 0.00 2229 1806 963 1.0 949.00 0.00 0.00 949.00 1 2019-12-22 18:29:14.214395 2019-12-22 18:29:14.214395 \N 949.00 \N 0.00 0.00 2230 1807 895 1.0 1629.00 0.00 0.00 1629.00 1 2019-12-22 18:33:16.110724 2019-12-22 18:33:16.110724 \N 1629.00 \N 0.00 0.00 2231 1808 693 1.0 789.00 0.00 0.00 789.00 1 2019-12-22 18:44:46.484504 2019-12-22 18:44:46.484504 \N 789.00 \N 0.00 0.00 2232 1809 746 1.0 595.00 0.00 254.00 595.00 1 2019-12-22 18:54:33.332176 2019-12-22 18:54:33.332176 \N 849.00 \N 254.00 0.00 2235 1811 775 1.0 1349.00 0.00 0.00 1349.00 0 2019-12-22 19:04:13.365242 2019-12-22 19:05:08.373943 \N 1349.00 \N 0.00 0.00 2234 1810 891 1.0 674.10 0.00 74.90 674.10 0 2019-12-22 18:55:37.747368 2019-12-22 20:06:52.295807 \N 749.00 \N 0.00 10.00 2233 1810 557 1.0 494.10 0.00 54.90 494.10 0 2019-12-22 18:55:37.723842 2019-12-22 20:06:52.319869 \N 549.00 \N 0.00 10.00 2236 1812 891 1.0 714.00 0.00 35.00 714.00 1 2019-12-22 20:09:08.471425 2019-12-22 20:09:08.471425 \N 749.00 \N 35.00 0.00 2237 1812 557 1.0 494.00 0.00 55.00 494.00 1 2019-12-22 20:09:08.494888 2019-12-22 20:09:08.494888 \N 549.00 \N 55.00 0.00 2238 1813 873 1.0 729.00 0.00 0.00 729.00 1 2019-12-22 20:19:51.633157 2019-12-22 20:19:51.633157 \N 729.00 \N 0.00 0.00 2239 1814 783 1.0 720.00 0.00 79.00 720.00 1 2019-12-22 20:32:45.736332 2019-12-22 20:32:45.736332 \N 799.00 \N 79.00 0.00 2240 1815 866 1.0 1349.00 0.00 0.00 1349.00 1 2019-12-22 20:37:47.448658 2019-12-22 20:37:47.448658 \N 1349.00 \N 0.00 0.00 2241 1816 689 1.0 1599.00 0.00 0.00 1599.00 1 2019-12-22 20:39:38.229107 2019-12-22 20:39:38.229107 \N 1599.00 \N 0.00 0.00 2242 1817 910 1.0 899.00 0.00 0.00 899.00 1 2019-12-22 20:48:44.598264 2019-12-22 20:48:44.598264 \N 899.00 \N 0.00 0.00 2243 1818 690 1.0 720.00 0.00 79.00 720.00 1 2019-12-22 20:58:26.818251 2019-12-22 20:58:26.818251 \N 799.00 \N 79.00 0.00 2244 1819 824 1.0 170.00 0.00 0.00 170.00 1 2019-12-22 21:09:10.410524 2019-12-22 21:09:10.410524 \N 170.00 \N 0.00 0.00 2245 1820 661 1.0 539.00 0.00 60.00 539.00 1 2019-12-22 21:52:16.970877 2019-12-22 21:52:16.970877 \N 599.00 \N 60.00 0.00 2246 1821 623 1.0 699.00 0.00 0.00 699.00 0 2019-12-22 22:03:48.830355 2019-12-22 22:04:20.566105 \N 699.00 \N 0.00 0.00 2247 1822 385 1.0 120.68 19.31 0.00 139.99 1 2019-12-22 22:05:56.951716 2019-12-22 22:05:56.951716 \N 139.99 \N 0.00 0.00 2248 1822 623 1.0 630.00 0.00 69.00 630.00 1 2019-12-22 22:05:56.986773 2019-12-22 22:05:56.986773 \N 699.00 \N 69.00 0.00 2249 1823 867 1.0 1299.00 0.00 0.00 1299.00 1 2019-12-22 22:19:16.314121 2019-12-22 22:19:16.314121 \N 1299.00 \N 0.00 0.00 2250 1824 177 1.0 602.59 96.41 0.00 699.00 1 2019-12-22 22:21:17.178845 2019-12-22 22:21:17.178845 \N 699.00 \N 0.00 0.00 2251 1824 670 1.0 639.00 0.00 0.00 639.00 1 2019-12-22 22:21:17.204622 2019-12-22 22:21:17.204622 \N 639.00 \N 0.00 0.00 2252 1825 928 1.0 149.00 0.00 0.00 149.00 1 2019-12-22 22:28:45.226078 2019-12-22 22:28:45.226078 \N 149.00 \N 0.00 0.00 2255 1827 871 1.0 599.00 0.00 0.00 599.00 1 2019-12-22 22:50:35.497495 2019-12-22 22:50:35.497495 \N 599.00 \N 0.00 0.00 2256 1828 672 1.0 699.00 0.00 0.00 699.00 1 2019-12-22 22:51:34.664267 2019-12-22 22:51:34.664267 \N 699.00 \N 0.00 0.00 2254 1826 925 1.0 369.00 0.00 0.00 369.00 0 2019-12-22 22:49:14.583755 2019-12-22 22:56:36.984445 \N 369.00 \N 0.00 0.00 2253 1826 891 3.0 2247.00 0.00 0.00 2247.00 0 2019-12-22 22:49:14.558287 2019-12-22 22:56:37.006436 \N 749.00 \N 0.00 0.00 2257 1829 891 3.0 2247.00 0.00 0.00 2247.00 1 2019-12-22 22:56:59.538656 2019-12-22 22:56:59.538656 \N 749.00 \N 0.00 0.00 2258 1830 925 1.0 369.00 0.00 0.00 369.00 1 2019-12-22 22:58:12.886886 2019-12-22 22:58:12.886886 \N 369.00 \N 0.00 0.00 2259 1831 891 1.0 674.10 0.00 74.90 674.10 1 2019-12-22 23:05:39.871738 2019-12-22 23:05:39.871738 \N 749.00 \N 0.00 10.00 2260 1832 778 1.0 1119.30 0.00 479.70 1119.30 1 2019-12-22 23:18:46.346339 2019-12-22 23:18:46.346339 \N 1599.00 \N 0.00 30.00 2261 1833 775 1.0 1399.00 0.00 0.00 1399.00 1 2019-12-23 00:07:09.290572 2019-12-23 00:07:09.290572 \N 1399.00 \N 0.00 0.00 2262 1834 891 1.0 749.00 0.00 0.00 749.00 0 2019-12-23 00:23:32.217579 2019-12-23 00:24:25.544048 \N 749.00 \N 0.00 0.00 2263 1835 891 1.0 674.10 0.00 74.90 674.10 1 2019-12-23 00:25:03.003606 2019-12-23 00:25:03.003606 \N 749.00 \N 0.00 10.00 2264 1835 843 1.0 99.00 0.00 0.00 99.00 1 2019-12-23 00:25:03.03051 2019-12-23 00:25:03.03051 \N 99.00 \N 0.00 0.00 2265 1836 512 1.0 700.00 0.00 169.00 700.00 1 2019-12-23 00:30:35.949241 2019-12-23 00:30:35.949241 \N 869.00 \N 169.00 0.00 2267 1838 755 1.0 1016.10 0.00 112.90 1016.10 1 2019-12-23 00:42:00.536251 2019-12-23 00:42:00.536251 \N 1129.00 \N 0.00 10.00 2268 1839 925 1.0 369.00 0.00 0.00 369.00 1 2019-12-23 00:43:30.541517 2019-12-23 00:43:30.541517 \N 369.00 \N 0.00 0.00 2269 1840 882 1.0 1200.00 0.00 99.00 1200.00 1 2019-12-23 00:47:16.492299 2019-12-23 00:47:16.492299 \N 1299.00 \N 99.00 0.00 2270 1841 484 1.0 999.00 0.00 0.00 999.00 1 2019-12-23 02:31:46.101776 2019-12-23 02:31:46.101776 \N 999.00 \N 0.00 0.00 2271 1842 698 1.0 719.10 0.00 79.90 719.10 1 2019-12-23 18:16:19.551582 2019-12-23 18:16:19.551582 \N 799.00 \N 0.00 10.00 2272 1842 710 1.0 1079.10 0.00 119.90 1079.10 1 2019-12-23 18:16:19.594083 2019-12-23 18:16:19.594083 \N 1199.00 \N 0.00 10.00 2273 1842 663 1.0 559.20 0.00 139.80 559.20 1 2019-12-23 18:16:19.622134 2019-12-23 18:16:19.622134 \N 699.00 \N 0.00 20.00 2274 1842 771 1.0 489.30 0.00 209.70 489.30 1 2019-12-23 18:16:19.65601 2019-12-23 18:16:19.65601 \N 699.00 \N 0.00 30.00 2275 1842 795 1.0 399.20 0.00 99.80 399.20 1 2019-12-23 18:16:19.698955 2019-12-23 18:16:19.698955 \N 499.00 \N 0.00 20.00 2276 1842 772 1.0 489.30 0.00 209.70 489.30 1 2019-12-23 18:16:19.733233 2019-12-23 18:16:19.733233 \N 699.00 \N 0.00 30.00 2277 1842 270 1.0 1033.62 165.38 0.00 1199.00 1 2019-12-23 18:16:19.763317 2019-12-23 18:16:19.763317 \N 1199.00 \N 0.00 0.00 2278 1843 706 1.0 1599.00 0.00 0.00 1599.00 1 2019-12-23 19:32:47.575244 2019-12-23 19:32:47.575244 \N 1599.00 \N 0.00 0.00 2279 1844 762 1.0 839.00 0.00 0.00 839.00 1 2019-12-23 19:47:15.922739 2019-12-23 19:47:15.922739 \N 839.00 \N 0.00 0.00 2280 1845 668 1.0 270.00 0.00 29.00 270.00 1 2019-12-23 20:04:09.772668 2019-12-23 20:04:09.772668 \N 299.00 \N 29.00 0.00 2281 1846 886 1.0 890.10 0.00 98.90 890.10 1 2019-12-23 20:11:46.292722 2019-12-23 20:11:46.292722 \N 989.00 \N 0.00 10.00 2282 1847 514 1.0 479.00 0.00 0.00 479.00 0 2019-12-23 20:22:07.12633 2019-12-23 20:22:11.898286 \N 479.00 \N 0.00 0.00 2283 1848 514 1.0 479.00 0.00 0.00 479.00 1 2019-12-23 20:22:37.132684 2019-12-23 20:22:37.132684 \N 479.00 \N 0.00 0.00 2284 1849 789 1.0 495.00 0.00 54.00 495.00 1 2019-12-23 20:26:24.771723 2019-12-23 20:26:24.771723 \N 549.00 \N 54.00 0.00 2285 1850 809 1.0 809.10 0.00 89.90 809.10 1 2019-12-23 20:37:35.684006 2019-12-23 20:37:35.684006 \N 899.00 \N 0.00 10.00 2286 1851 788 1.0 589.00 0.00 0.00 589.00 1 2019-12-23 20:50:37.389181 2019-12-23 20:50:37.389181 \N 589.00 \N 0.00 0.00 2287 1852 949 1.0 549.00 0.00 0.00 549.00 1 2019-12-23 21:31:56.960243 2019-12-23 21:31:56.960243 \N 549.00 \N 0.00 0.00 2288 1853 798 1.0 469.00 0.00 0.00 469.00 1 2019-12-23 22:00:27.417019 2019-12-23 22:00:27.417019 \N 469.00 \N 0.00 0.00 2289 1854 950 1.0 699.00 0.00 0.00 699.00 1 2019-12-23 22:27:35.651653 2019-12-23 22:27:35.651653 \N 699.00 \N 0.00 0.00 2290 1855 877 1.0 899.00 0.00 0.00 899.00 1 2019-12-23 23:21:40.402232 2019-12-23 23:21:40.402232 \N 899.00 \N 0.00 0.00 2291 1856 757 1.0 799.00 0.00 0.00 799.00 1 2019-12-23 23:54:28.164305 2019-12-23 23:54:28.164305 \N 799.00 \N 0.00 0.00 2266 1837 895 1.0 1303.20 0.00 325.80 1303.20 0 2019-12-23 00:37:35.150445 2019-12-24 00:29:17.915152 \N 1629.00 \N 0.00 20.00 2292 1857 893 1.0 699.00 0.00 0.00 699.00 1 2019-12-24 00:52:41.213946 2019-12-24 00:52:41.213946 \N 699.00 \N 0.00 0.00 2293 1857 889 1.0 711.00 0.00 78.00 711.00 1 2019-12-24 00:52:41.24401 2019-12-24 00:52:41.24401 \N 789.00 \N 78.00 0.00 2294 1858 949 1.0 495.00 0.00 54.00 495.00 1 2019-12-24 00:56:21.658065 2019-12-24 00:56:21.658065 \N 549.00 \N 54.00 0.00 2295 1859 729 1.0 650.00 0.00 119.00 650.00 1 2019-12-24 00:56:33.285189 2019-12-24 00:56:33.285189 \N 769.00 \N 119.00 0.00 2296 1860 864 1.0 1199.00 0.00 0.00 1199.00 1 2019-12-24 01:00:06.319077 2019-12-24 01:00:06.319077 \N 1199.00 \N 0.00 0.00 2297 1861 911 1.0 675.00 0.00 74.00 675.00 1 2019-12-24 01:17:24.663518 2019-12-24 01:17:24.663518 \N 749.00 \N 74.00 0.00 2298 1862 714 1.0 839.00 0.00 0.00 839.00 1 2019-12-24 01:44:43.952069 2019-12-24 01:44:43.952069 \N 839.00 \N 0.00 0.00 2299 1863 871 1.0 599.00 0.00 0.00 599.00 1 2019-12-24 02:00:11.410706 2019-12-24 02:00:11.410706 \N 599.00 \N 0.00 0.00 2300 1864 877 1.0 899.00 0.00 0.00 899.00 1 2019-12-24 02:11:38.594159 2019-12-24 02:11:38.594159 \N 899.00 \N 0.00 0.00 2301 1865 783 1.0 799.00 0.00 0.00 799.00 0 2019-12-24 02:18:30.999967 2019-12-24 02:19:09.487706 \N 799.00 \N 0.00 0.00 2302 1866 783 1.0 719.10 0.00 79.90 719.10 1 2019-12-24 02:19:43.521631 2019-12-24 02:19:43.521631 \N 799.00 \N 0.00 10.00 2303 1867 842 1.0 129.00 0.00 0.00 129.00 1 2019-12-24 02:23:21.157862 2019-12-24 02:23:21.157862 \N 129.00 \N 0.00 0.00 2304 1867 936 1.0 85.00 0.00 0.00 85.00 1 2019-12-24 02:23:21.193309 2019-12-24 02:23:21.193309 \N 85.00 \N 0.00 0.00 2305 1868 933 1.0 139.00 0.00 0.00 139.00 1 2019-12-24 02:27:58.985165 2019-12-24 02:27:58.985165 \N 139.00 \N 0.00 0.00 2306 1868 921 1.0 149.00 0.00 0.00 149.00 1 2019-12-24 02:27:59.017376 2019-12-24 02:27:59.017376 \N 149.00 \N 0.00 0.00 2307 1869 888 1.0 1199.00 0.00 0.00 1199.00 1 2019-12-24 02:29:58.312152 2019-12-24 02:29:58.312152 \N 1199.00 \N 0.00 0.00 2308 1870 544 1.0 1699.00 0.00 0.00 1699.00 1 2019-12-24 02:33:37.807959 2019-12-24 02:33:37.807959 \N 1699.00 \N 0.00 0.00 2309 1871 773 1.0 335.30 0.00 143.70 335.30 1 2019-12-24 02:54:30.031771 2019-12-24 02:54:30.031771 \N 479.00 \N 0.00 30.00 2310 1872 911 1.0 749.00 0.00 0.00 749.00 1 2019-12-24 02:59:57.663648 2019-12-24 02:59:57.663648 \N 749.00 \N 0.00 0.00 2311 1873 890 1.0 629.00 0.00 0.00 629.00 1 2019-12-24 03:20:07.577456 2019-12-24 03:20:07.577456 \N 629.00 \N 0.00 0.00 2312 1874 914 1.0 129.00 0.00 0.00 129.00 1 2019-12-24 03:20:59.132361 2019-12-24 03:20:59.132361 \N 129.00 \N 0.00 0.00 2313 1875 840 1.0 1710.00 0.00 189.00 1710.00 1 2019-12-24 17:10:50.272546 2019-12-24 17:10:50.272546 \N 1899.00 \N 189.00 0.00 2314 1876 758 1.0 629.10 0.00 69.90 629.10 1 2019-12-24 18:03:57.078892 2019-12-24 18:03:57.078892 \N 699.00 \N 0.00 10.00 2315 1877 841 1.0 179.00 0.00 0.00 179.00 1 2019-12-24 18:07:51.359957 2019-12-24 18:07:51.359957 \N 179.00 \N 0.00 0.00 2316 1877 928 1.0 149.00 0.00 0.00 149.00 1 2019-12-24 18:07:51.38428 2019-12-24 18:07:51.38428 \N 149.00 \N 0.00 0.00 2317 1878 757 1.0 799.00 0.00 0.00 799.00 0 2019-12-24 18:35:51.077463 2019-12-24 18:37:13.550575 \N 799.00 \N 0.00 0.00 2318 1879 757 1.0 719.10 0.00 79.90 719.10 1 2019-12-24 18:37:52.818496 2019-12-24 18:37:52.818496 \N 799.00 \N 0.00 10.00 2319 1880 893 1.0 699.00 0.00 0.00 699.00 1 2019-12-24 19:15:24.085303 2019-12-24 19:15:24.085303 \N 699.00 \N 0.00 0.00 2320 1880 959 1.0 899.00 0.00 0.00 899.00 1 2019-12-24 19:15:24.109929 2019-12-24 19:15:24.109929 \N 899.00 \N 0.00 0.00 2321 1880 298 1.0 585.34 93.65 0.00 678.99 1 2019-12-24 19:15:24.132714 2019-12-24 19:15:24.132714 \N 679.00 \N 0.00 0.00 2322 1880 926 1.0 99.00 0.00 0.00 99.00 1 2019-12-24 19:15:24.159709 2019-12-24 19:15:24.159709 \N 99.00 \N 0.00 0.00 2323 1881 467 1.0 799.00 0.00 0.00 799.00 1 2019-12-24 19:27:14.390717 2019-12-24 19:27:14.390717 \N 799.00 \N 0.00 0.00 2324 1882 907 1.0 60.00 0.00 0.00 60.00 1 2019-12-24 19:28:43.350513 2019-12-24 19:28:43.350513 \N 60.00 \N 0.00 0.00 2325 1883 790 1.0 829.00 0.00 0.00 829.00 1 2019-12-24 19:48:32.729903 2019-12-24 19:48:32.729903 \N 829.00 \N 0.00 0.00 2326 1884 956 1.0 809.10 0.00 89.90 809.10 1 2019-12-24 20:01:58.611654 2019-12-24 20:01:58.611654 \N 899.00 \N 0.00 10.00 2327 1885 51 1.0 1550.86 248.14 0.00 1799.00 1 2019-12-24 20:08:42.790728 2019-12-24 20:08:42.790728 \N 1799.00 \N 0.00 0.00 2328 1886 668 1.0 270.00 0.00 29.00 270.00 1 2019-12-24 20:18:53.221636 2019-12-24 20:18:53.221636 \N 299.00 \N 29.00 0.00 2329 1887 367 2.0 560.34 89.65 50.00 649.99 0 2019-12-24 20:25:22.04619 2019-12-24 20:25:31.725697 \N 350.00 \N 50.00 0.00 2330 1888 367 2.0 517.24 82.76 100.00 600.00 1 2019-12-24 20:26:14.174331 2019-12-24 20:26:14.174331 \N 350.00 \N 100.00 0.00 2331 1889 692 1.0 1299.00 0.00 0.00 1299.00 1 2019-12-24 20:39:34.25222 2019-12-24 20:39:34.25222 \N 1299.00 \N 0.00 0.00 2332 1890 897 1.0 1502.10 0.00 166.90 1502.10 1 2019-12-24 20:46:27.220354 2019-12-24 20:46:27.220354 \N 1669.00 \N 0.00 10.00 2333 1891 768 1.0 799.00 0.00 0.00 799.00 1 2019-12-24 21:14:11.664387 2019-12-24 21:14:11.664387 \N 799.00 \N 0.00 0.00 2334 1892 670 1.0 639.00 0.00 0.00 639.00 1 2019-12-24 21:18:05.131539 2019-12-24 21:18:05.131539 \N 639.00 \N 0.00 0.00 2335 1893 958 1.0 749.00 0.00 0.00 749.00 1 2019-12-24 21:38:56.152341 2019-12-24 21:38:56.152341 \N 749.00 \N 0.00 0.00 2336 1894 891 1.0 674.10 0.00 74.90 674.10 1 2019-12-24 22:19:43.010897 2019-12-24 22:19:43.010897 \N 749.00 \N 0.00 10.00 2337 1894 189 1.0 482.07 77.13 139.80 559.20 1 2019-12-24 22:19:43.037513 2019-12-24 22:19:43.037513 \N 699.00 \N 0.00 20.00 2338 1895 828 1.0 180.00 0.00 0.00 180.00 1 2019-12-24 22:52:29.414895 2019-12-24 22:52:29.414895 \N 180.00 \N 0.00 0.00 2339 1895 369 1.0 42.24 6.76 0.00 49.00 1 2019-12-24 22:52:29.440999 2019-12-24 22:52:29.440999 \N 49.00 \N 0.00 0.00 2340 1896 933 1.0 139.00 0.00 0.00 139.00 1 2019-12-24 23:08:09.057484 2019-12-24 23:08:09.057484 \N 139.00 \N 0.00 0.00 2341 1897 673 1.0 560.00 0.00 0.00 560.00 1 2019-12-25 00:06:31.856834 2019-12-25 00:06:31.856834 \N 560.00 \N 0.00 0.00 2342 1898 951 1.0 699.00 0.00 0.00 699.00 1 2019-12-25 00:08:29.772973 2019-12-25 00:08:29.772973 \N 699.00 \N 0.00 0.00 2343 1899 787 1.0 649.00 0.00 0.00 649.00 1 2019-12-25 00:30:40.043746 2019-12-25 00:30:40.043746 \N 649.00 \N 0.00 0.00 2344 1900 969 1.0 791.10 0.00 87.90 791.10 1 2019-12-25 01:28:48.765262 2019-12-25 01:28:48.765262 \N 879.00 \N 0.00 10.00 2345 1901 873 1.0 729.00 0.00 0.00 729.00 1 2019-12-25 02:29:32.510055 2019-12-25 02:29:32.510055 \N 729.00 \N 0.00 0.00 2346 1902 895 1.0 1629.00 0.00 0.00 1629.00 1 2019-12-26 17:52:44.258644 2019-12-26 17:52:44.258644 \N 1629.00 \N 0.00 0.00 2347 1903 945 1.0 2069.10 0.00 229.90 2069.10 1 2019-12-26 19:04:18.745983 2019-12-26 19:04:18.745983 \N 2299.00 \N 0.00 10.00 2348 1904 954 1.0 1080.00 0.00 119.00 1080.00 0 2019-12-26 19:58:57.629137 2019-12-26 20:00:37.892256 \N 1199.00 \N 119.00 0.00 2349 1905 759 1.0 759.00 0.00 0.00 759.00 1 2019-12-26 20:00:56.866087 2019-12-26 20:00:56.866087 \N 759.00 \N 0.00 0.00 2350 1906 623 1.0 650.00 0.00 49.00 650.00 1 2019-12-26 20:07:37.035881 2019-12-26 20:07:37.035881 \N 699.00 \N 49.00 0.00 2351 1907 611 1.0 629.10 0.00 69.90 629.10 1 2019-12-26 20:10:41.48167 2019-12-26 20:10:41.48167 \N 699.00 \N 0.00 10.00 2352 1907 954 1.0 839.30 0.00 359.70 839.30 1 2019-12-26 20:10:41.513035 2019-12-26 20:10:41.513035 \N 1199.00 \N 0.00 30.00 2353 1908 877 1.0 899.00 0.00 0.00 899.00 1 2019-12-26 20:35:24.313829 2019-12-26 20:35:24.313829 \N 899.00 \N 0.00 0.00 2354 1909 911 1.0 749.00 0.00 0.00 749.00 1 2019-12-26 21:45:17.029037 2019-12-26 21:45:17.029037 \N 749.00 \N 0.00 0.00 2355 1910 749 1.0 699.00 0.00 0.00 699.00 1 2019-12-26 22:51:53.086027 2019-12-26 22:51:53.086027 \N 699.00 \N 0.00 0.00 2356 1911 576 1.0 910.00 0.00 89.00 910.00 1 2019-12-26 23:58:43.539016 2019-12-26 23:58:43.539016 \N 999.00 \N 89.00 0.00 2357 1912 895 1.0 1450.00 0.00 179.00 1450.00 1 2019-12-27 00:11:10.131642 2019-12-27 00:11:10.131642 \N 1629.00 \N 179.00 0.00 2358 1913 476 1.0 85.34 13.65 0.00 98.99 1 2019-12-27 01:24:29.742234 2019-12-27 01:24:29.742234 \N 99.00 \N 0.00 0.00 2359 1914 697 1.0 799.00 0.00 0.00 799.00 1 2019-12-27 01:29:38.620522 2019-12-27 01:29:38.620522 \N 799.00 \N 0.00 0.00 2360 1915 902 1.0 1620.00 0.00 149.00 1620.00 1 2019-12-27 02:43:11.086986 2019-12-27 02:43:11.086986 \N 1769.00 \N 149.00 0.00 2362 1916 963 1.0 760.00 0.00 189.00 760.00 0 2019-12-27 18:44:38.003143 2019-12-27 18:45:32.833654 \N 949.00 \N 189.00 0.00 2361 1916 911 1.0 600.00 0.00 149.00 600.00 0 2019-12-27 18:44:37.966802 2019-12-27 18:45:32.856457 \N 749.00 \N 149.00 0.00 2363 1917 911 1.0 630.00 0.00 119.00 630.00 1 2019-12-27 18:46:51.476128 2019-12-27 18:46:51.476128 \N 749.00 \N 119.00 0.00 2364 1917 963 1.0 760.00 0.00 189.00 760.00 1 2019-12-27 18:46:51.500535 2019-12-27 18:46:51.500535 \N 949.00 \N 189.00 0.00 2365 1918 615 1.0 899.00 0.00 0.00 899.00 1 2019-12-27 20:10:13.312008 2019-12-27 20:10:13.312008 \N 899.00 \N 0.00 0.00 2366 1919 678 1.0 1170.00 0.00 129.00 1170.00 1 2019-12-27 20:34:05.38805 2019-12-27 20:34:05.38805 \N 1299.00 \N 129.00 0.00 2367 1920 867 1.0 1170.00 0.00 129.00 1170.00 1 2019-12-27 21:40:41.305884 2019-12-27 21:40:41.305884 \N 1299.00 \N 129.00 0.00 2368 1921 871 1.0 540.00 0.00 59.00 540.00 1 2019-12-27 22:18:12.478906 2019-12-27 22:18:12.478906 \N 599.00 \N 59.00 0.00 2369 1922 688 1.0 584.10 0.00 64.90 584.10 1 2019-12-27 22:55:56.9923 2019-12-27 22:55:56.9923 \N 649.00 \N 0.00 10.00 2370 1923 790 1.0 829.00 0.00 0.00 829.00 1 2019-12-27 22:59:37.673797 2019-12-27 22:59:37.673797 \N 829.00 \N 0.00 0.00 2371 1924 784 1.0 599.00 0.00 0.00 599.00 1 2019-12-27 23:42:12.774655 2019-12-27 23:42:12.774655 \N 599.00 \N 0.00 0.00 2372 1925 945 1.0 2000.00 0.00 299.00 2000.00 1 2019-12-28 00:14:04.340225 2019-12-28 00:14:04.340225 \N 2299.00 \N 299.00 0.00 2373 1926 935 1.0 99.00 0.00 0.00 99.00 1 2019-12-28 00:17:44.842889 2019-12-28 00:17:44.842889 \N 99.00 \N 0.00 0.00 2374 1927 893 1.0 629.10 0.00 69.90 629.10 1 2019-12-28 00:22:20.201139 2019-12-28 00:22:20.201139 \N 699.00 \N 0.00 10.00 2375 1927 889 1.0 710.10 0.00 78.90 710.10 1 2019-12-28 00:22:20.22775 2019-12-28 00:22:20.22775 \N 789.00 \N 0.00 10.00 2376 1928 791 1.0 512.10 0.00 56.90 512.10 1 2019-12-28 01:47:16.768191 2019-12-28 01:47:16.768191 \N 569.00 \N 0.00 10.00 2377 1929 955 1.0 899.10 0.00 99.90 899.10 1 2019-12-28 18:00:21.794009 2019-12-28 18:00:21.794009 \N 999.00 \N 0.00 10.00 2378 1930 580 1.0 1100.00 0.00 299.00 1100.00 1 2019-12-28 19:51:49.071393 2019-12-28 19:51:49.071393 \N 1399.00 \N 299.00 0.00 2379 1931 930 1.0 139.00 0.00 0.00 139.00 1 2019-12-28 20:07:11.486632 2019-12-28 20:07:11.486632 \N 139.00 \N 0.00 0.00 2380 1932 954 1.0 1080.00 0.00 119.00 1080.00 1 2019-12-28 20:25:45.078099 2019-12-28 20:25:45.078099 \N 1199.00 \N 119.00 0.00 2381 1933 963 1.0 855.00 0.00 94.00 855.00 1 2019-12-28 21:24:43.447392 2019-12-28 21:24:43.447392 \N 949.00 \N 94.00 0.00 2382 1933 890 1.0 565.00 0.00 64.00 565.00 1 2019-12-28 21:24:43.47169 2019-12-28 21:24:43.47169 \N 629.00 \N 64.00 0.00 2383 1934 698 1.0 799.00 0.00 0.00 799.00 0 2019-12-28 21:59:34.551314 2019-12-28 21:59:40.589934 \N 799.00 \N 0.00 0.00 2384 1935 698 1.0 730.00 0.00 69.00 730.00 1 2019-12-28 21:59:59.50562 2019-12-28 21:59:59.50562 \N 799.00 \N 69.00 0.00 2385 1936 945 1.0 2299.00 0.00 0.00 2299.00 1 2019-12-29 01:52:12.853947 2019-12-29 01:52:12.853947 \N 2299.00 \N 0.00 0.00 2386 1937 945 1.0 2069.10 0.00 229.90 2069.10 1 2019-12-29 19:26:30.982553 2019-12-29 19:26:30.982553 \N 2299.00 \N 0.00 10.00 2387 1938 958 1.0 675.00 0.00 74.00 675.00 1 2019-12-29 21:32:57.140311 2019-12-29 21:32:57.140311 \N 749.00 \N 74.00 0.00 2388 1939 777 1.0 1200.00 0.00 299.00 1200.00 1 2019-12-29 21:39:13.697614 2019-12-29 21:39:13.697614 \N 1499.00 \N 299.00 0.00 2389 1939 895 1.0 1300.00 0.00 329.00 1300.00 1 2019-12-29 21:39:13.721189 2019-12-29 21:39:13.721189 \N 1629.00 \N 329.00 0.00 2390 1940 890 1.0 570.00 0.00 59.00 570.00 1 2019-12-30 17:43:32.355741 2019-12-30 17:43:32.355741 \N 629.00 \N 59.00 0.00 2391 1941 877 1.0 810.00 0.00 89.00 810.00 1 2019-12-30 18:00:31.674281 2019-12-30 18:00:31.674281 \N 899.00 \N 89.00 0.00 2392 1942 890 1.0 629.00 0.00 0.00 629.00 1 2019-12-30 18:35:54.172002 2019-12-30 18:35:54.172002 \N 629.00 \N 0.00 0.00 2393 1943 355 1.0 1171.72 187.48 339.80 1359.20 1 2019-12-30 19:25:49.575014 2019-12-30 19:25:49.575014 \N 1699.00 \N 0.00 20.00 2394 1944 760 1.0 650.00 0.00 79.00 650.00 1 2019-12-30 20:12:23.593222 2019-12-30 20:12:23.593222 \N 729.00 \N 79.00 0.00 2395 1944 934 1.0 139.00 0.00 0.00 139.00 1 2019-12-30 20:12:23.617823 2019-12-30 20:12:23.617823 \N 139.00 \N 0.00 0.00 2396 1945 791 1.0 569.00 0.00 0.00 569.00 1 2019-12-30 21:39:02.358295 2019-12-30 21:39:02.358295 \N 569.00 \N 0.00 0.00 2397 1946 786 1.0 599.00 0.00 0.00 599.00 1 2019-12-30 21:40:32.878633 2019-12-30 21:40:32.878633 \N 599.00 \N 0.00 0.00 2398 1947 886 1.0 989.00 0.00 0.00 989.00 1 2019-12-30 21:53:02.777258 2019-12-30 21:53:02.777258 \N 989.00 \N 0.00 0.00 2399 1948 761 1.0 413.10 0.00 45.90 413.10 1 2019-12-30 22:33:34.588662 2019-12-30 22:33:34.588662 \N 459.00 \N 0.00 10.00 2400 1949 880 1.0 850.00 0.00 149.00 850.00 1 2019-12-30 23:06:28.186776 2019-12-30 23:06:28.186776 \N 999.00 \N 149.00 0.00 2401 1950 749 1.0 629.10 0.00 69.90 629.10 1 2019-12-30 23:07:55.034537 2019-12-30 23:07:55.034537 \N 699.00 \N 0.00 10.00 2402 1951 676 1.0 1299.00 0.00 0.00 1299.00 1 2019-12-30 23:21:23.545121 2019-12-30 23:21:23.545121 \N 1299.00 \N 0.00 0.00 2403 1952 891 1.0 749.00 0.00 0.00 749.00 1 2019-12-31 00:37:32.885093 2019-12-31 00:37:32.885093 \N 749.00 \N 0.00 0.00 2404 1953 893 1.0 629.10 0.00 69.90 629.10 1 2019-12-31 00:51:12.975907 2019-12-31 00:51:12.975907 \N 699.00 \N 0.00 10.00 2405 1954 893 1.0 629.10 0.00 69.90 629.10 1 2019-12-31 00:53:07.145396 2019-12-31 00:53:07.145396 \N 699.00 \N 0.00 10.00 2406 1955 956 1.0 899.00 0.00 0.00 899.00 1 2019-12-31 00:57:47.196015 2019-12-31 00:57:47.196015 \N 899.00 \N 0.00 0.00 2407 1956 862 1.0 799.00 0.00 0.00 799.00 1 2019-12-31 01:10:54.73697 2019-12-31 01:10:54.73697 \N 799.00 \N 0.00 0.00 2408 1957 893 1.0 629.10 0.00 69.90 629.10 1 2019-12-31 02:00:16.577057 2019-12-31 02:00:16.577057 \N 699.00 \N 0.00 10.00 2409 1958 911 1.0 675.00 0.00 74.00 675.00 0 2019-12-31 02:04:22.447494 2019-12-31 02:04:36.151779 \N 749.00 \N 74.00 0.00 2410 1959 911 1.0 675.00 0.00 74.00 675.00 1 2019-12-31 02:05:13.391374 2019-12-31 02:05:13.391374 \N 749.00 \N 74.00 0.00 2411 1960 877 1.0 810.00 0.00 89.00 810.00 1 2019-12-31 02:21:34.882581 2019-12-31 02:21:34.882581 \N 899.00 \N 89.00 0.00 2412 1961 890 1.0 570.00 0.00 59.00 570.00 1 2019-12-31 17:41:53.641866 2019-12-31 17:41:53.641866 \N 629.00 \N 59.00 0.00 2413 1962 752 1.0 1129.00 0.00 0.00 1129.00 1 2019-12-31 18:11:15.651677 2019-12-31 18:11:15.651677 \N 1129.00 \N 0.00 0.00 2414 1963 724 1.0 540.00 0.00 59.00 540.00 1 2019-12-31 18:33:04.43496 2019-12-31 18:33:04.43496 \N 599.00 \N 59.00 0.00 2415 1964 554 1.0 700.00 0.00 129.00 700.00 1 2019-12-31 19:10:08.418992 2019-12-31 19:10:08.418992 \N 829.00 \N 129.00 0.00 2416 1965 724 1.0 689.00 0.00 0.00 689.00 1 2019-12-31 19:51:44.078957 2019-12-31 19:51:44.078957 \N 689.00 \N 0.00 0.00 2417 1966 855 1.0 1859.00 0.00 0.00 1859.00 1 2019-12-31 19:59:08.706204 2019-12-31 19:59:08.706204 \N 1859.00 \N 0.00 0.00 2418 1966 705 1.0 249.00 0.00 0.00 249.00 1 2019-12-31 19:59:08.733381 2019-12-31 19:59:08.733381 \N 249.00 \N 0.00 0.00 2419 1967 891 1.0 674.10 0.00 74.90 674.10 1 2019-12-31 20:12:29.858727 2019-12-31 20:12:29.858727 \N 749.00 \N 0.00 10.00 2420 1968 676 1.0 1150.00 0.00 149.00 1150.00 1 2019-12-31 20:14:18.719168 2019-12-31 20:14:18.719168 \N 1299.00 \N 149.00 0.00 2421 1969 752 1.0 1016.10 0.00 112.90 1016.10 1 2019-12-31 20:19:41.553583 2019-12-31 20:19:41.553583 \N 1129.00 \N 0.00 10.00 2422 1970 710 1.0 1079.10 0.00 119.90 1079.10 1 2019-12-31 20:49:51.881099 2019-12-31 20:49:51.881099 \N 1199.00 \N 0.00 10.00 2424 1972 634 1.0 600.00 0.00 199.00 600.00 1 2019-12-31 21:17:49.594549 2019-12-31 21:17:49.594549 \N 799.00 \N 199.00 0.00 2425 1973 951 1.0 630.00 0.00 69.00 630.00 1 2019-12-31 21:20:33.604636 2019-12-31 21:20:33.604636 \N 699.00 \N 69.00 0.00 2423 1971 775 1.0 1260.00 0.00 139.00 1260.00 0 2019-12-31 21:11:16.608657 2019-12-31 21:31:07.323467 \N 1399.00 \N 139.00 0.00 2426 1974 631 1.0 560.34 89.65 79.00 649.99 1 2019-12-31 21:34:48.578876 2019-12-31 21:34:48.578876 \N 729.00 \N 79.00 0.00 2427 1974 945 1.0 2000.00 0.00 299.00 2000.00 1 2019-12-31 21:34:48.612709 2019-12-31 21:34:48.612709 \N 2299.00 \N 299.00 0.00 2428 1974 954 2.0 2000.00 0.00 398.00 2000.00 1 2019-12-31 21:34:48.637988 2019-12-31 21:34:48.637988 \N 1199.00 \N 398.00 0.00 2429 1975 800 1.0 420.00 0.00 49.00 420.00 0 2019-12-31 21:36:52.996747 2019-12-31 21:39:05.643563 \N 469.00 \N 49.00 0.00 2430 1976 890 1.0 560.00 0.00 69.00 560.00 1 2019-12-31 21:41:07.481123 2019-12-31 21:41:07.481123 \N 629.00 \N 69.00 0.00 2431 1977 369 2.0 84.48 13.52 0.00 98.00 1 2019-12-31 22:35:21.824127 2019-12-31 22:35:21.824127 \N 49.00 \N 0.00 0.00 2432 1978 960 1.0 900.00 0.00 99.00 900.00 1 2019-12-31 22:46:35.262262 2019-12-31 22:46:35.262262 \N 999.00 \N 99.00 0.00 2433 1979 911 1.0 675.00 0.00 74.00 675.00 1 2019-12-31 22:50:30.986481 2019-12-31 22:50:30.986481 \N 749.00 \N 74.00 0.00 2434 1980 948 1.0 756.00 0.00 143.00 756.00 1 2019-12-31 23:17:27.467116 2019-12-31 23:17:27.467116 \N 899.00 \N 143.00 0.00 2435 1980 902 1.0 1487.00 0.00 282.00 1487.00 1 2019-12-31 23:17:27.491032 2019-12-31 23:17:27.491032 \N 1769.00 \N 282.00 0.00 2436 1981 663 1.0 645.00 0.00 54.00 645.00 1 2019-12-31 23:19:28.723442 2019-12-31 23:19:28.723442 \N 699.00 \N 54.00 0.00 2437 1982 672 1.0 629.10 0.00 69.90 629.10 1 2019-12-31 23:20:47.378684 2019-12-31 23:20:47.378684 \N 699.00 \N 0.00 10.00 2438 1983 946 1.0 749.00 0.00 0.00 749.00 1 2019-12-31 23:25:40.711107 2019-12-31 23:25:40.711107 \N 749.00 \N 0.00 0.00 2439 1984 730 1.0 630.00 0.00 69.00 630.00 1 2019-12-31 23:47:34.20673 2019-12-31 23:47:34.20673 \N 699.00 \N 69.00 0.00 2440 1985 949 1.0 549.00 0.00 0.00 549.00 1 2020-01-01 00:16:52.952918 2020-01-01 00:16:52.952918 \N 549.00 \N 0.00 0.00 2441 1986 960 1.0 900.00 0.00 99.00 900.00 1 2020-01-01 00:34:48.422561 2020-01-01 00:34:48.422561 \N 999.00 \N 99.00 0.00 2442 1987 727 1.0 594.15 0.00 104.85 594.15 1 2020-01-01 00:36:34.150154 2020-01-01 00:36:34.150154 \N 699.00 \N 0.00 15.00 2443 1988 886 1.0 989.00 0.00 0.00 989.00 1 2020-01-01 00:37:53.484461 2020-01-01 00:37:53.484461 \N 989.00 \N 0.00 0.00 2444 1989 898 1.0 1350.00 0.00 119.00 1350.00 1 2020-01-01 01:05:19.418365 2020-01-01 01:05:19.418365 \N 1469.00 \N 119.00 0.00 2445 1990 672 1.0 559.20 0.00 139.80 559.20 1 2020-01-02 21:03:43.420626 2020-01-02 21:03:43.420626 \N 699.00 \N 0.00 20.00 2446 1990 317 1.0 323.45 51.75 93.80 375.20 1 2020-01-02 21:03:43.455722 2020-01-02 21:03:43.455722 \N 469.00 \N 0.00 20.00 1694 1370 867 1.0 1299.00 0.00 0.00 1299.00 0 2019-11-06 01:21:00.63083 2020-01-02 21:40:53.490788 \N 1299.00 \N 0.00 0.00 2447 1991 598 1.0 679.00 0.00 0.00 679.00 1 2020-01-02 21:58:28.093625 2020-01-02 21:58:28.093625 \N 679.00 \N 0.00 0.00 2448 1992 633 1.0 650.00 0.00 69.00 650.00 1 2020-01-03 18:25:28.042393 2020-01-03 18:25:28.042393 \N 719.00 \N 69.00 0.00 2449 1993 710 1.0 1199.00 0.00 0.00 1199.00 1 2020-01-03 19:37:07.820919 2020-01-03 19:37:07.820919 \N 1199.00 \N 0.00 0.00 2450 1994 870 1.0 269.40 0.00 179.60 269.40 1 2020-01-03 19:59:50.685793 2020-01-03 19:59:50.685793 \N 449.00 \N 0.00 40.00 2451 1995 762 1.0 503.40 0.00 335.60 503.40 1 2020-01-03 20:14:57.854165 2020-01-03 20:14:57.854165 \N 839.00 \N 0.00 40.00 2452 1996 911 1.0 450.00 0.00 299.00 450.00 1 2020-01-03 20:47:30.498515 2020-01-03 20:47:30.498515 \N 749.00 \N 299.00 0.00 2453 1997 783 2.0 799.00 0.00 799.00 799.00 1 2020-01-03 21:36:46.555448 2020-01-03 21:36:46.555448 \N 799.00 \N 799.00 0.00 2454 1998 798 1.0 281.40 0.00 187.60 281.40 1 2020-01-03 21:44:14.777012 2020-01-03 21:44:14.777012 \N 469.00 \N 0.00 40.00 2455 1999 889 1.0 473.40 0.00 315.60 473.40 0 2020-01-04 00:32:58.21224 2020-01-04 00:41:39.767201 \N 789.00 \N 0.00 40.00 2456 2000 889 1.0 473.40 0.00 315.60 473.40 1 2020-01-04 00:42:12.991512 2020-01-04 00:42:12.991512 \N 789.00 \N 0.00 40.00 2457 2001 854 1.0 1139.40 0.00 759.60 1139.40 1 2020-01-04 01:29:16.991289 2020-01-04 01:29:16.991289 \N 1899.00 \N 0.00 40.00 2458 2002 668 1.0 239.20 0.00 59.80 239.20 1 2020-01-04 01:39:33.638583 2020-01-04 01:39:33.638583 \N 299.00 \N 0.00 20.00 2459 2003 945 1.0 1379.40 0.00 919.60 1379.40 1 2020-01-04 01:40:54.136848 2020-01-04 01:40:54.136848 \N 2299.00 \N 0.00 40.00 2460 2004 896 1.0 1669.00 0.00 0.00 1669.00 1 2020-01-04 18:08:35.100923 2020-01-04 18:08:35.100923 \N 1669.00 \N 0.00 0.00 2461 2004 894 1.0 0.00 0.00 1549.00 0.00 1 2020-01-04 18:08:35.134984 2020-01-04 18:08:35.134984 \N 1549.00 \N 0.00 100.00 2462 2005 680 1.0 299.40 0.00 199.60 299.40 1 2020-01-04 18:49:17.309142 2020-01-04 18:49:17.309142 \N 499.00 \N 0.00 40.00 2463 2006 910 1.0 539.40 0.00 359.60 539.40 1 2020-01-04 19:57:39.121844 2020-01-04 19:57:39.121844 \N 899.00 \N 0.00 40.00 2464 2007 686 1.0 389.40 0.00 259.60 389.40 1 2020-01-04 20:25:18.680769 2020-01-04 20:25:18.680769 \N 649.00 \N 0.00 40.00 2465 2008 610 1.0 335.69 53.71 259.60 389.40 1 2020-01-04 20:27:46.681144 2020-01-04 20:27:46.681144 \N 649.00 \N 0.00 40.00 2466 2009 476 1.0 85.34 13.65 0.00 98.99 1 2020-01-04 20:35:50.143549 2020-01-04 20:35:50.143549 \N 99.00 \N 0.00 0.00 2467 2010 911 1.0 749.00 0.00 0.00 749.00 1 2020-01-04 21:11:34.839388 2020-01-04 21:11:34.839388 \N 749.00 \N 0.00 0.00 2468 2010 621 1.0 0.00 0.00 619.00 0.00 1 2020-01-04 21:11:34.86891 2020-01-04 21:11:34.86891 \N 619.00 \N 0.00 100.00 2469 2011 893 1.0 419.40 0.00 279.60 419.40 1 2020-01-05 00:19:30.412371 2020-01-05 00:19:30.412371 \N 699.00 \N 0.00 40.00 2470 2012 899 1.0 980.00 0.00 649.00 980.00 0 2020-01-05 01:12:05.754087 2020-01-05 01:17:56.939679 \N 1629.00 \N 649.00 0.00 2471 2013 899 1.0 1629.00 0.00 0.00 1629.00 1 2020-01-05 01:23:43.106451 2020-01-05 01:23:43.106451 \N 1629.00 \N 0.00 0.00 2472 2013 894 1.0 0.00 0.00 1549.00 0.00 1 2020-01-05 01:23:43.140165 2020-01-05 01:23:43.140165 \N 1549.00 \N 0.00 100.00 2473 2014 889 1.0 474.00 0.00 315.00 474.00 1 2020-01-05 02:41:19.692947 2020-01-05 02:41:19.692947 \N 789.00 \N 315.00 0.00 2474 2015 317 1.0 242.59 38.81 187.60 281.40 1 2020-01-06 22:56:33.761772 2020-01-06 22:56:33.761772 \N 469.00 \N 0.00 40.00 2475 2016 807 1.0 330.00 0.00 219.00 330.00 1 2020-01-07 00:17:09.160094 2020-01-07 00:17:09.160094 \N 549.00 \N 219.00 0.00 2476 2017 664 1.0 419.40 0.00 279.60 419.40 1 2020-01-07 19:10:24.527702 2020-01-07 19:10:24.527702 \N 699.00 \N 0.00 40.00 2477 2018 891 1.0 449.40 0.00 299.60 449.40 1 2020-01-07 20:50:42.25474 2020-01-07 20:50:42.25474 \N 749.00 \N 0.00 40.00 2478 2019 793 1.0 449.40 0.00 299.60 449.40 1 2020-01-07 21:05:47.260339 2020-01-07 21:05:47.260339 \N 749.00 \N 0.00 40.00 2479 2020 899 1.0 978.00 0.00 651.00 978.00 1 2020-01-07 21:57:17.061175 2020-01-07 21:57:17.061175 \N 1629.00 \N 651.00 0.00 2480 2021 413 1.0 430.17 68.83 0.00 499.00 1 2020-01-07 23:44:56.069524 2020-01-07 23:44:56.069524 \N 499.00 \N 0.00 0.00 2481 2021 318 1.0 0.00 0.00 469.00 0.00 1 2020-01-07 23:44:56.092368 2020-01-07 23:44:56.092368 \N 469.00 \N 0.00 100.00 2482 2022 864 1.0 1199.00 0.00 0.00 1199.00 1 2020-01-08 19:16:27.632085 2020-01-08 19:16:27.632085 \N 1199.00 \N 0.00 0.00 2483 2023 574 1.0 550.00 0.00 649.00 550.00 1 2020-01-08 19:37:16.843299 2020-01-08 19:37:16.843299 \N 1199.00 \N 649.00 0.00 2484 2024 695 1.0 780.00 0.00 519.00 780.00 1 2020-01-08 22:27:08.411169 2020-01-08 22:27:08.411169 \N 1299.00 \N 519.00 0.00 2485 2025 864 1.0 1008.00 0.00 191.00 1008.00 1 2020-01-08 22:50:00.919992 2020-01-08 22:50:00.919992 \N 1199.00 \N 191.00 0.00 2486 2026 871 1.0 360.00 0.00 239.00 360.00 1 2020-01-09 00:42:38.218853 2020-01-09 00:42:38.218853 \N 599.00 \N 239.00 0.00 2487 2027 895 1.0 977.40 0.00 651.60 977.40 1 2020-01-09 01:07:36.626406 2020-01-09 01:07:36.626406 \N 1629.00 \N 0.00 40.00 2488 2028 566 1.0 200.00 0.00 199.00 200.00 1 2020-01-09 17:49:27.083041 2020-01-09 17:49:27.083041 \N 399.00 \N 199.00 0.00 2489 2029 406 1.0 258.10 41.30 199.60 299.40 1 2020-01-09 23:53:29.711498 2020-01-09 23:53:29.711498 \N 499.00 \N 0.00 40.00 2490 2030 631 1.0 377.59 60.41 291.00 438.00 1 2020-01-10 18:38:26.869552 2020-01-10 18:38:26.869552 \N 729.00 \N 291.00 0.00 2491 2031 680 1.0 349.30 0.00 149.70 349.30 1 2020-01-10 22:22:56.965062 2020-01-10 22:22:56.965062 \N 499.00 \N 0.00 30.00 2492 2032 699 1.0 840.00 0.00 559.00 840.00 1 2020-01-10 22:57:54.142296 2020-01-10 22:57:54.142296 \N 1399.00 \N 559.00 0.00 2493 2033 761 1.0 275.40 0.00 183.60 275.40 1 2020-01-11 00:00:33.138432 2020-01-11 00:00:33.138432 \N 459.00 \N 0.00 40.00 2494 2034 957 1.0 869.40 0.00 579.60 869.40 1 2020-01-11 01:44:20.21763 2020-01-11 01:44:20.21763 \N 1449.00 \N 0.00 40.00 2495 2035 369 1.0 42.24 6.76 0.00 49.00 1 2020-01-11 01:45:53.001395 2020-01-11 01:45:53.001395 \N 49.00 \N 0.00 0.00 2496 2036 960 1.0 600.00 0.00 399.00 600.00 1 2020-01-11 01:54:19.551209 2020-01-11 01:54:19.551209 \N 999.00 \N 399.00 0.00 2497 2037 669 1.0 250.00 0.00 169.00 250.00 1 2020-01-11 01:59:53.277283 2020-01-11 01:59:53.277283 \N 419.00 \N 169.00 0.00 2498 2038 954 1.0 1199.00 0.00 0.00 1199.00 1 2020-01-11 19:25:23.396038 2020-01-11 19:25:23.396038 \N 1199.00 \N 0.00 0.00 2499 2038 889 1.0 789.00 0.00 0.00 789.00 1 2020-01-11 19:25:23.421047 2020-01-11 19:25:23.421047 \N 789.00 \N 0.00 0.00 2500 2038 958 1.0 0.00 0.00 749.00 0.00 1 2020-01-11 19:25:23.442298 2020-01-11 19:25:23.442298 \N 749.00 \N 0.00 100.00 2501 2038 735 1.0 0.00 0.00 769.00 0.00 1 2020-01-11 19:25:23.463087 2020-01-11 19:25:23.463087 \N 769.00 \N 0.00 100.00 2502 2039 946 1.0 449.40 0.00 299.60 449.40 0 2020-01-11 21:07:22.243443 2020-01-11 21:07:29.296594 \N 749.00 \N 0.00 40.00 2503 2040 946 1.0 449.40 0.00 299.60 449.40 1 2020-01-11 21:07:54.540569 2020-01-11 21:07:54.540569 \N 749.00 \N 0.00 40.00 2504 2041 894 1.0 929.40 0.00 619.60 929.40 1 2020-01-11 21:28:20.039553 2020-01-11 21:28:20.039553 \N 1549.00 \N 0.00 40.00 2505 2042 595 1.0 420.00 0.00 279.00 420.00 1 2020-01-11 22:31:42.077005 2020-01-11 22:31:42.077005 \N 699.00 \N 279.00 0.00 2506 2043 737 1.0 570.00 0.00 379.00 570.00 1 2020-01-11 23:56:15.284758 2020-01-11 23:56:15.284758 \N 949.00 \N 379.00 0.00 2507 2044 944 1.0 1195.00 0.00 794.00 1195.00 1 2020-01-12 02:17:06.914848 2020-01-12 02:17:06.914848 \N 1989.00 \N 794.00 0.00 2508 2045 954 1.0 720.00 0.00 479.00 720.00 1 2020-01-12 02:17:53.146561 2020-01-12 02:17:53.146561 \N 1199.00 \N 479.00 0.00 2509 2046 954 1.0 720.00 0.00 479.00 720.00 1 2020-01-13 17:34:31.288563 2020-01-13 17:34:31.288563 \N 1199.00 \N 479.00 0.00 2510 2047 696 1.0 625.00 0.00 0.00 625.00 1 2020-01-13 23:11:32.637962 2020-01-13 23:11:32.637962 \N 625.00 \N 0.00 0.00 2511 2047 81 1.0 0.00 0.00 599.00 0.00 1 2020-01-13 23:11:32.673666 2020-01-13 23:11:32.673666 \N 599.00 \N 0.00 100.00 2512 2048 899 1.0 1629.00 0.00 0.00 1629.00 1 2020-01-13 23:48:22.459844 2020-01-13 23:48:22.459844 \N 1629.00 \N 0.00 0.00 2513 2048 894 1.0 0.00 0.00 1549.00 0.00 1 2020-01-13 23:48:22.486778 2020-01-13 23:48:22.486778 \N 1549.00 \N 0.00 100.00 2514 2049 954 1.0 700.00 0.00 499.00 700.00 1 2020-01-14 20:20:21.150907 2020-01-14 20:20:21.150907 \N 1199.00 \N 499.00 0.00 2515 2050 966 1.0 1599.00 0.00 0.00 1599.00 1 2020-01-15 01:34:28.818509 2020-01-15 01:34:28.818509 \N 1599.00 \N 0.00 0.00 2516 2051 896 1.0 1669.00 0.00 0.00 1669.00 1 2020-01-15 18:46:45.974892 2020-01-15 18:46:45.974892 \N 1669.00 \N 0.00 0.00 2517 2051 867 1.0 0.00 0.00 1299.00 0.00 1 2020-01-15 18:46:46.000807 2020-01-15 18:46:46.000807 \N 1299.00 \N 0.00 100.00 2518 2052 882 1.0 779.40 0.00 519.60 779.40 1 2020-01-16 02:05:08.666831 2020-01-16 02:05:08.666831 \N 1299.00 \N 0.00 40.00 2519 2053 788 1.0 353.40 0.00 235.60 353.40 0 2020-01-16 18:12:19.025864 2020-01-16 18:12:52.136048 \N 589.00 \N 0.00 40.00 2520 2054 476 1.0 85.34 13.65 0.00 98.99 1 2020-01-16 20:08:56.768057 2020-01-16 20:08:56.768057 \N 99.00 \N 0.00 0.00 2521 2055 931 1.0 145.00 0.00 0.00 145.00 1 2020-01-16 23:42:27.583069 2020-01-16 23:42:27.583069 \N 145.00 \N 0.00 0.00 2522 2056 671 1.0 799.00 0.00 0.00 799.00 1 2020-01-17 00:41:01.16169 2020-01-17 00:41:01.16169 \N 799.00 \N 0.00 0.00 2523 2056 301 1.0 0.00 0.00 599.00 0.00 1 2020-01-17 00:41:01.202726 2020-01-17 00:41:01.202726 \N 599.00 \N 0.00 100.00 2524 2057 958 1.0 450.00 0.00 299.00 450.00 1 2020-01-17 19:41:26.628809 2020-01-17 19:41:26.628809 \N 749.00 \N 299.00 0.00 2525 2058 669 1.0 251.40 0.00 167.60 251.40 1 2020-01-17 19:43:28.958576 2020-01-17 19:43:28.958576 \N 419.00 \N 0.00 40.00 2526 2059 509 1.0 359.40 0.00 239.60 359.40 1 2020-01-17 19:54:57.511827 2020-01-17 19:54:57.511827 \N 599.00 \N 0.00 40.00 2527 2060 717 1.0 2099.00 0.00 0.00 2099.00 0 2020-01-17 20:03:42.66757 2020-01-17 20:03:55.372888 \N 2099.00 \N 0.00 0.00 2529 2062 815 1.0 229.00 0.00 0.00 229.00 1 2020-01-17 20:07:49.613486 2020-01-17 20:07:49.613486 \N 229.00 \N 0.00 0.00 2531 2064 301 1.0 309.83 49.57 239.60 359.40 1 2020-01-17 22:30:12.639002 2020-01-17 22:30:12.639002 \N 599.00 \N 0.00 40.00 2532 2065 398 1.0 361.47 57.84 179.70 419.31 1 2020-01-18 01:27:36.862888 2020-01-18 01:27:36.862888 \N 599.00 \N 0.00 30.00 2533 2066 698 1.0 399.50 0.00 399.50 399.50 1 2020-01-18 02:16:21.653882 2020-01-18 02:16:21.653882 \N 799.00 \N 0.00 50.00 2534 2067 840 1.0 1150.00 0.00 749.00 1150.00 1 2020-01-18 20:28:48.862779 2020-01-18 20:28:48.862779 \N 1899.00 \N 749.00 0.00 2535 2068 808 1.0 1020.00 0.00 679.00 1020.00 1 2020-01-18 21:43:49.207737 2020-01-18 21:43:49.207737 \N 1699.00 \N 679.00 0.00 2536 2069 797 1.0 720.00 0.00 479.00 720.00 1 2020-01-18 23:38:27.303922 2020-01-18 23:38:27.303922 \N 1199.00 \N 479.00 0.00 2530 2063 823 1.0 320.00 0.00 0.00 320.00 0 2020-01-17 20:09:21.820505 2020-03-18 18:54:23.85147 \N 320.00 \N 0.00 0.00 2537 2070 651 1.0 749.40 0.00 499.60 749.40 1 2020-01-19 01:29:05.569799 2020-01-19 01:29:05.569799 \N 1249.00 \N 0.00 40.00 2538 2071 960 1.0 600.00 0.00 399.00 600.00 1 2020-01-21 01:44:10.531745 2020-01-21 01:44:10.531745 \N 999.00 \N 399.00 0.00 2539 2072 351 1.0 1723.28 275.72 0.00 1999.00 1 2020-01-21 02:50:02.147218 2020-01-21 02:50:02.147218 \N 1999.00 \N 0.00 0.00 2540 2073 791 1.0 341.40 0.00 227.60 341.40 1 2020-01-22 00:03:30.65169 2020-01-22 00:03:30.65169 \N 569.00 \N 0.00 40.00 2541 2074 593 1.0 395.40 0.00 263.60 395.40 1 2020-01-22 00:29:44.969416 2020-01-22 00:29:44.969416 \N 659.00 \N 0.00 40.00 2542 2075 679 1.0 720.00 0.00 479.00 720.00 1 2020-01-22 22:07:31.498157 2020-01-22 22:07:31.498157 \N 1199.00 \N 479.00 0.00 2543 2076 728 1.0 479.40 0.00 319.60 479.40 1 2020-01-23 18:19:40.686135 2020-01-23 18:19:40.686135 \N 799.00 \N 0.00 40.00 2544 2077 689 1.0 1599.00 0.00 0.00 1599.00 1 2020-01-23 20:24:52.680262 2020-01-23 20:24:52.680262 \N 1599.00 \N 0.00 0.00 2545 2078 791 1.0 341.40 0.00 227.60 341.40 1 2020-01-24 00:51:49.432005 2020-01-24 00:51:49.432005 \N 569.00 \N 0.00 40.00 2546 2079 840 1.0 1140.00 0.00 759.00 1140.00 1 2020-01-24 01:04:04.840745 2020-01-24 01:04:04.840745 \N 1899.00 \N 759.00 0.00 2547 2080 598 1.0 409.00 0.00 270.00 409.00 1 2020-01-24 01:06:09.349234 2020-01-24 01:06:09.349234 \N 679.00 \N 270.00 0.00 2548 2081 749 1.0 419.40 0.00 279.60 419.40 1 2020-01-24 17:38:55.897225 2020-01-24 17:38:55.897225 \N 699.00 \N 0.00 40.00 2549 2082 958 1.0 449.00 0.00 300.00 449.00 1 2020-01-24 17:47:32.105838 2020-01-24 17:47:32.105838 \N 749.00 \N 300.00 0.00 2550 2083 945 1.0 1379.00 0.00 920.00 1379.00 1 2020-01-24 18:23:45.370649 2020-01-24 18:23:45.370649 \N 2299.00 \N 920.00 0.00 1923 1557 945 1.0 2299.00 0.00 0.00 2299.00 0 2019-12-03 17:59:04.937775 2020-01-24 19:10:33.976196 \N 2299.00 \N 0.00 0.00 2551 2084 912 1.0 1599.00 0.00 0.00 1599.00 1 2020-01-24 20:34:14.730778 2020-01-24 20:34:14.730778 \N 1599.00 \N 0.00 0.00 2552 2084 904 1.0 473.00 0.00 316.00 473.00 1 2020-01-24 20:34:14.778833 2020-01-24 20:34:14.778833 \N 789.00 \N 316.00 0.00 2553 2085 837 1.0 199.00 0.00 0.00 199.00 1 2020-01-24 20:38:43.822545 2020-01-24 20:38:43.822545 \N 199.00 \N 0.00 0.00 2554 2086 886 1.0 593.40 0.00 395.60 593.40 1 2020-01-24 22:35:16.918849 2020-01-24 22:35:16.918849 \N 989.00 \N 0.00 40.00 2555 2087 168 1.0 172.41 27.59 799.00 200.00 1 2020-01-25 21:53:55.201327 2020-01-25 21:53:55.201327 \N 999.00 \N 799.00 0.00 2556 2088 715 1.0 969.00 0.00 0.00 969.00 1 2020-01-25 21:59:20.489107 2020-01-25 21:59:20.489107 \N 969.00 \N 0.00 0.00 2557 2088 877 1.0 0.00 0.00 899.00 0.00 1 2020-01-25 21:59:20.517686 2020-01-25 21:59:20.517686 \N 899.00 \N 0.00 100.00 2558 2089 122 1.0 403.45 64.55 311.00 468.00 1 2020-01-25 22:13:04.61586 2020-01-25 22:13:04.61586 \N 779.00 \N 311.00 0.00 2559 2090 686 1.0 390.00 0.00 259.00 390.00 1 2020-01-25 23:12:45.442058 2020-01-25 23:12:45.442058 \N 649.00 \N 259.00 0.00 2560 2091 289 1.0 86.21 13.79 529.00 100.00 1 2020-01-25 23:54:41.923825 2020-01-25 23:54:41.923825 \N 629.00 \N 529.00 0.00 2561 2091 566 1.0 100.00 0.00 299.00 100.00 1 2020-01-25 23:54:41.955772 2020-01-25 23:54:41.955772 \N 399.00 \N 299.00 0.00 2562 2092 739 1.0 100.00 0.00 799.00 100.00 1 2020-01-26 00:02:42.123926 2020-01-26 00:02:42.123926 \N 899.00 \N 799.00 0.00 2563 2092 407 1.0 86.21 13.79 399.00 100.00 1 2020-01-26 00:02:42.15354 2020-01-26 00:02:42.15354 \N 499.00 \N 399.00 0.00 2564 2092 289 1.0 86.21 13.79 529.00 100.00 1 2020-01-26 00:02:42.17835 2020-01-26 00:02:42.17835 \N 629.00 \N 529.00 0.00 2565 2093 739 1.0 100.00 0.00 799.00 100.00 1 2020-01-26 00:11:45.330162 2020-01-26 00:11:45.330162 \N 899.00 \N 799.00 0.00 2566 2094 739 1.0 100.00 0.00 799.00 100.00 1 2020-01-26 00:12:28.666422 2020-01-26 00:12:28.666422 \N 899.00 \N 799.00 0.00 2567 2095 427 1.0 516.38 82.62 400.00 599.00 1 2020-01-26 00:52:30.472187 2020-01-26 00:52:30.472187 \N 999.00 \N 400.00 0.00 2568 2096 120 1.0 86.21 13.79 299.00 100.00 1 2020-01-26 00:58:25.122518 2020-01-26 00:58:25.122518 \N 399.00 \N 299.00 0.00 2569 2096 407 1.0 86.21 13.79 399.00 100.00 1 2020-01-26 00:58:25.151869 2020-01-26 00:58:25.151869 \N 499.00 \N 399.00 0.00 2570 2097 738 1.0 100.00 0.00 749.00 100.00 1 2020-01-26 01:38:31.378923 2020-01-26 01:38:31.378923 \N 849.00 \N 749.00 0.00 2571 2097 741 1.0 100.00 0.00 699.00 100.00 1 2020-01-26 01:38:31.434106 2020-01-26 01:38:31.434106 \N 799.00 \N 699.00 0.00 2572 2098 683 1.0 569.00 0.00 0.00 569.00 1 2020-01-26 01:47:53.795756 2020-01-26 01:47:53.795756 \N 569.00 \N 0.00 0.00 2573 2099 833 1.0 119.00 0.00 0.00 119.00 1 2020-01-26 02:04:40.898507 2020-01-26 02:04:40.898507 \N 119.00 \N 0.00 0.00 2574 2100 130 1.0 86.21 13.79 349.00 100.00 1 2020-01-26 02:10:51.035149 2020-01-26 02:10:51.035149 \N 449.00 \N 349.00 0.00 2575 2101 406 1.0 86.21 13.79 399.00 100.00 1 2020-01-26 18:56:11.628757 2020-01-26 18:56:11.628757 \N 499.00 \N 399.00 0.00 2576 2102 597 1.0 389.40 0.00 259.60 389.40 1 2020-01-26 20:21:16.470017 2020-01-26 20:21:16.470017 \N 649.00 \N 0.00 40.00 2577 2103 796 1.0 720.00 0.00 479.00 720.00 1 2020-01-26 21:35:56.134279 2020-01-26 21:35:56.134279 \N 1199.00 \N 479.00 0.00 2578 2104 664 1.0 419.40 0.00 279.60 419.40 1 2020-01-26 21:45:20.396859 2020-01-26 21:45:20.396859 \N 699.00 \N 0.00 40.00 2579 2104 319 1.0 242.59 38.81 187.60 281.40 1 2020-01-26 21:45:20.425766 2020-01-26 21:45:20.425766 \N 469.00 \N 0.00 40.00 2580 2105 751 1.0 659.40 0.00 439.60 659.40 1 2020-01-27 19:22:59.484002 2020-01-27 19:22:59.484002 \N 1099.00 \N 0.00 40.00 2581 2106 192 1.0 86.21 13.79 379.00 100.00 0 2020-01-27 23:50:24.884013 2020-01-27 23:57:31.994286 \N 479.00 \N 379.00 0.00 2582 2107 192 1.0 412.93 66.07 0.00 479.00 0 2020-01-27 23:57:58.486824 2020-01-27 23:58:26.665213 \N 479.00 \N 0.00 0.00 2583 2108 192 1.0 86.21 13.79 379.00 100.00 1 2020-01-27 23:58:48.569555 2020-01-27 23:58:48.569555 \N 479.00 \N 379.00 0.00 2584 2109 425 1.0 86.21 13.79 849.00 100.00 1 2020-01-28 01:50:10.316817 2020-01-28 01:50:10.316817 \N 949.00 \N 849.00 0.00 2585 2110 636 1.0 829.00 0.00 0.00 829.00 1 2020-01-28 02:31:33.595507 2020-01-28 02:31:33.595507 \N 829.00 \N 0.00 0.00 2587 2111 476 1.0 85.34 13.65 0.00 98.99 0 2020-01-28 02:35:51.845062 2020-01-28 02:38:54.873071 \N 99.00 \N 0.00 0.00 2586 2111 605 1.0 999.00 0.00 0.00 999.00 0 2020-01-28 02:35:51.818118 2020-01-28 02:38:54.905053 \N 999.00 \N 0.00 0.00 2588 2112 605 1.0 999.00 0.00 0.00 999.00 1 2020-01-28 02:39:47.583416 2020-01-28 02:39:47.583416 \N 999.00 \N 0.00 0.00 2589 2112 476 1.0 85.34 13.65 0.00 98.99 1 2020-01-28 02:39:47.612162 2020-01-28 02:39:47.612162 \N 99.00 \N 0.00 0.00 2590 2113 191 1.0 86.21 13.79 399.00 100.00 1 2020-01-28 18:23:31.063279 2020-01-28 18:23:31.063279 \N 499.00 \N 399.00 0.00 2591 2114 409 1.0 86.21 13.79 399.00 100.00 1 2020-01-28 18:46:38.146967 2020-01-28 18:46:38.146967 \N 499.00 \N 399.00 0.00 2592 2115 890 1.0 350.00 0.00 279.00 350.00 1 2020-01-28 19:46:02.934308 2020-01-28 19:46:02.934308 \N 629.00 \N 279.00 0.00 2593 2116 83 1.0 215.52 34.48 379.00 250.00 1 2020-01-28 19:49:08.714628 2020-01-28 19:49:08.714628 \N 629.00 \N 379.00 0.00 2594 2117 165 1.0 172.41 27.59 699.00 200.00 1 2020-01-28 19:51:34.720503 2020-01-28 19:51:34.720503 \N 899.00 \N 699.00 0.00 2595 2118 738 1.0 100.00 0.00 749.00 100.00 1 2020-01-28 21:01:36.103896 2020-01-28 21:01:36.103896 \N 849.00 \N 749.00 0.00 2596 2118 711 1.0 100.00 0.00 779.00 100.00 1 2020-01-28 21:01:36.139137 2020-01-28 21:01:36.139137 \N 879.00 \N 779.00 0.00 2597 2119 639 1.0 86.21 13.79 500.00 100.00 1 2020-01-29 00:19:31.874205 2020-01-29 00:19:31.874205 \N 600.00 \N 500.00 0.00 2598 2119 711 1.0 100.00 0.00 779.00 100.00 1 2020-01-29 00:19:31.913658 2020-01-29 00:19:31.913658 \N 879.00 \N 779.00 0.00 2599 2120 740 1.0 100.00 0.00 769.00 100.00 1 2020-01-29 16:44:12.091174 2020-01-29 16:44:12.091174 \N 869.00 \N 769.00 0.00 2600 2121 717 1.0 2099.00 0.00 0.00 2099.00 1 2020-01-29 17:13:10.54927 2020-01-29 17:13:10.54927 \N 2099.00 \N 0.00 0.00 2601 2122 871 1.0 599.00 0.00 0.00 599.00 1 2020-01-29 17:25:26.951325 2020-01-29 17:25:26.951325 \N 599.00 \N 0.00 0.00 2602 2122 807 1.0 0.00 0.00 549.00 0.00 1 2020-01-29 17:25:26.980045 2020-01-29 17:25:26.980045 \N 549.00 \N 0.00 100.00 2603 2123 165 1.0 172.41 27.59 699.00 200.00 1 2020-01-29 18:23:44.561669 2020-01-29 18:23:44.561669 \N 899.00 \N 699.00 0.00 2604 2124 414 1.0 86.21 13.79 559.00 100.00 1 2020-01-29 20:39:29.58991 2020-01-29 20:39:29.58991 \N 659.00 \N 559.00 0.00 2605 2125 901 1.0 810.00 0.00 549.00 810.00 1 2020-01-29 21:56:49.560459 2020-01-29 21:56:49.560459 \N 1359.00 \N 549.00 0.00 2606 2126 951 1.0 420.00 0.00 279.00 420.00 1 2020-01-29 22:02:27.749581 2020-01-29 22:02:27.749581 \N 699.00 \N 279.00 0.00 2607 2127 230 1.0 86.21 13.79 769.00 100.00 1 2020-01-29 22:05:37.457918 2020-01-29 22:05:37.457918 \N 869.00 \N 769.00 0.00 2608 2128 639 1.0 86.21 13.79 500.00 100.00 1 2020-01-30 00:19:51.112095 2020-01-30 00:19:51.112095 \N 600.00 \N 500.00 0.00 2609 2129 669 1.0 419.00 0.00 0.00 419.00 1 2020-01-30 03:05:03.073901 2020-01-30 03:05:03.073901 \N 419.00 \N 0.00 0.00 2610 2130 738 1.0 100.00 0.00 749.00 100.00 1 2020-01-30 17:50:29.927929 2020-01-30 17:50:29.927929 \N 849.00 \N 749.00 0.00 2611 2131 92 1.0 413.28 66.12 319.60 479.40 1 2020-01-30 18:42:44.421201 2020-01-30 18:42:44.421201 \N 799.00 \N 0.00 40.00 2612 2132 887 1.0 1099.00 0.00 0.00 1099.00 1 2020-01-30 20:32:57.105866 2020-01-30 20:32:57.105866 \N 1099.00 \N 0.00 0.00 2613 2133 891 1.0 449.40 0.00 299.60 449.40 1 2020-01-30 21:33:48.53586 2020-01-30 21:33:48.53586 \N 749.00 \N 0.00 40.00 2614 2134 586 1.0 549.00 0.00 0.00 549.00 0 2020-01-30 21:46:57.886833 2020-01-30 21:47:26.557739 \N 549.00 \N 0.00 0.00 2615 2135 586 1.0 549.00 0.00 0.00 549.00 1 2020-01-30 21:47:47.078667 2020-01-30 21:47:47.078667 \N 549.00 \N 0.00 0.00 2616 2136 359 1.0 1550.86 248.14 0.00 1799.00 1 2020-01-30 22:07:12.210844 2020-01-30 22:07:12.210844 \N 1799.00 \N 0.00 0.00 2617 2136 439 1.0 1550.86 248.14 0.00 1799.00 1 2020-01-30 22:07:12.244431 2020-01-30 22:07:12.244431 \N 1799.00 \N 0.00 0.00 2618 2137 911 1.0 450.00 0.00 299.00 450.00 1 2020-01-30 22:48:20.405208 2020-01-30 22:48:20.405208 \N 749.00 \N 299.00 0.00 2619 2138 664 1.0 489.30 0.00 209.70 489.30 0 2020-01-31 00:11:50.929479 2020-01-31 00:14:18.1985 \N 699.00 \N 0.00 30.00 2620 2139 664 1.0 419.40 0.00 279.60 419.40 1 2020-01-31 00:14:51.204754 2020-01-31 00:14:51.204754 \N 699.00 \N 0.00 40.00 2621 2140 868 1.0 1429.00 0.00 0.00 1429.00 1 2020-01-31 01:16:19.923585 2020-01-31 01:16:19.923585 \N 1429.00 \N 0.00 0.00 2622 2140 869 1.0 0.00 0.00 1399.00 0.00 1 2020-01-31 01:16:19.952206 2020-01-31 01:16:19.952206 \N 1399.00 \N 0.00 100.00 2623 2141 972 1.0 1299.00 0.00 0.00 1299.00 1 2020-01-31 01:22:18.723086 2020-01-31 01:22:18.723086 \N 1299.00 \N 0.00 0.00 2624 2141 744 1.0 100.00 0.00 1099.00 100.00 1 2020-01-31 01:22:18.752432 2020-01-31 01:22:18.752432 \N 1199.00 \N 1099.00 0.00 2625 2142 950 1.0 489.30 0.00 209.70 489.30 1 2020-01-31 01:36:52.073267 2020-01-31 01:36:52.073267 \N 699.00 \N 0.00 30.00 2626 2143 116 1.0 86.21 13.79 349.00 100.00 1 2020-01-31 01:40:21.797766 2020-01-31 01:40:21.797766 \N 449.00 \N 349.00 0.00 2627 2143 67 1.0 86.21 13.79 469.00 100.00 1 2020-01-31 01:40:21.846856 2020-01-31 01:40:21.846856 \N 569.00 \N 469.00 0.00 2628 2143 414 1.0 86.21 13.79 559.00 100.00 1 2020-01-31 01:40:21.890894 2020-01-31 01:40:21.890894 \N 659.00 \N 559.00 0.00 2629 2144 568 1.0 400.00 0.00 269.00 400.00 1 2020-01-31 01:55:57.679661 2020-01-31 01:55:57.679661 \N 669.00 \N 269.00 0.00 2630 2145 631 1.0 375.00 60.00 294.00 435.00 1 2020-01-31 01:58:04.241364 2020-01-31 01:58:04.241364 \N 729.00 \N 294.00 0.00 2631 2146 722 1.0 1595.00 0.00 304.00 1595.00 1 2020-01-31 02:01:34.501824 2020-01-31 02:01:34.501824 \N 1899.00 \N 304.00 0.00 2632 2147 732 1.0 100.00 0.00 399.00 100.00 1 2020-01-31 02:18:20.365441 2020-01-31 02:18:20.365441 \N 499.00 \N 399.00 0.00 2633 2147 405 1.0 86.21 13.79 499.00 100.00 1 2020-01-31 02:18:20.394339 2020-01-31 02:18:20.394339 \N 599.00 \N 499.00 0.00 2634 2148 645 1.0 341.40 0.00 227.60 341.40 1 2020-01-31 18:11:51.183449 2020-01-31 18:11:51.183449 \N 569.00 \N 0.00 40.00 2635 2149 114 1.0 86.21 13.79 429.00 100.00 1 2020-01-31 20:09:14.087742 2020-01-31 20:09:14.087742 \N 529.00 \N 429.00 0.00 2636 2150 114 1.0 86.21 13.79 429.00 100.00 1 2020-01-31 20:09:38.448842 2020-01-31 20:09:38.448842 \N 529.00 \N 429.00 0.00 2637 2151 226 1.0 86.21 13.79 599.00 100.00 1 2020-01-31 20:12:30.484995 2020-01-31 20:12:30.484995 \N 699.00 \N 599.00 0.00 2638 2151 164 1.0 172.41 27.59 699.00 200.00 1 2020-01-31 20:12:30.529996 2020-01-31 20:12:30.529996 \N 899.00 \N 699.00 0.00 2639 2152 285 1.0 215.52 34.48 349.00 250.00 1 2020-01-31 21:36:02.299681 2020-01-31 21:36:02.299681 \N 599.00 \N 349.00 0.00 2640 2152 302 1.0 215.52 34.48 409.00 250.00 1 2020-01-31 21:36:02.333056 2020-01-31 21:36:02.333056 \N 659.00 \N 409.00 0.00 2641 2153 775 1.0 840.00 0.00 559.00 840.00 1 2020-01-31 21:45:09.358367 2020-01-31 21:45:09.358367 \N 1399.00 \N 559.00 0.00 2642 2154 712 1.0 599.40 0.00 399.60 599.40 1 2020-01-31 22:06:15.486795 2020-01-31 22:06:15.486795 \N 999.00 \N 0.00 40.00 2643 2155 369 1.0 42.24 6.76 0.00 49.00 1 2020-01-31 23:22:16.159031 2020-01-31 23:22:16.159031 \N 49.00 \N 0.00 0.00 2644 2156 679 1.0 720.00 0.00 479.00 720.00 1 2020-02-01 20:47:48.874173 2020-02-01 20:47:48.874173 \N 1199.00 \N 479.00 0.00 2645 2157 314 1.0 86.21 13.79 349.00 100.00 1 2020-02-01 21:08:24.241074 2020-02-01 21:08:24.241074 \N 449.00 \N 349.00 0.00 2646 2158 902 1.0 1060.00 0.00 709.00 1060.00 1 2020-02-01 22:59:59.401963 2020-02-01 22:59:59.401963 \N 1769.00 \N 709.00 0.00 2647 2159 904 1.0 460.00 0.00 329.00 460.00 1 2020-02-01 23:03:34.010989 2020-02-01 23:03:34.010989 \N 789.00 \N 329.00 0.00 2648 2160 117 1.0 86.21 13.79 325.00 100.00 1 2020-02-02 00:10:17.576305 2020-02-02 00:10:17.576305 \N 425.00 \N 325.00 0.00 2649 2160 67 1.0 86.21 13.79 469.00 100.00 1 2020-02-02 00:10:17.606219 2020-02-02 00:10:17.606219 \N 569.00 \N 469.00 0.00 2650 2161 619 1.0 250.00 0.00 319.00 250.00 1 2020-02-02 01:25:41.767009 2020-02-02 01:25:41.767009 \N 569.00 \N 319.00 0.00 2651 2162 369 1.0 42.24 6.76 0.00 49.00 1 2020-02-04 01:46:05.641811 2020-02-04 01:46:05.641811 \N 49.00 \N 0.00 0.00 2652 2163 114 1.0 86.21 13.79 429.00 100.00 1 2020-02-04 18:55:08.295919 2020-02-04 18:55:08.295919 \N 529.00 \N 429.00 0.00 2653 2164 178 1.0 309.83 49.57 239.60 359.40 1 2020-02-04 21:14:55.446297 2020-02-04 21:14:55.446297 \N 599.00 \N 0.00 40.00 2654 2165 947 1.0 539.40 0.00 359.60 539.40 1 2020-02-04 21:21:37.707645 2020-02-04 21:21:37.707645 \N 899.00 \N 0.00 40.00 2655 2166 302 1.0 215.52 34.48 409.00 250.00 1 2020-02-04 21:24:34.467702 2020-02-04 21:24:34.467702 \N 659.00 \N 409.00 0.00 2656 2167 569 1.0 489.00 0.00 0.00 489.00 1 2020-02-04 23:22:19.003831 2020-02-04 23:22:19.003831 \N 489.00 \N 0.00 0.00 2657 2168 607 1.0 1549.00 0.00 0.00 1549.00 1 2020-02-04 23:24:49.601498 2020-02-04 23:24:49.601498 \N 1549.00 \N 0.00 0.00 2658 2169 223 1.0 86.21 13.79 799.00 100.00 1 2020-02-05 01:25:52.800681 2020-02-05 01:25:52.800681 \N 899.00 \N 799.00 0.00 2659 2170 207 1.0 172.41 27.59 729.00 200.00 1 2020-02-05 01:45:28.473586 2020-02-05 01:45:28.473586 \N 929.00 \N 729.00 0.00 2660 2170 166 1.0 172.41 27.59 599.00 200.00 1 2020-02-05 01:45:28.504129 2020-02-05 01:45:28.504129 \N 799.00 \N 599.00 0.00 2661 2170 626 1.0 760.00 0.00 510.00 760.00 1 2020-02-05 01:45:28.542368 2020-02-05 01:45:28.542368 \N 1270.00 \N 510.00 0.00 2662 2171 399 1.0 86.21 13.79 449.00 100.00 1 2020-02-05 02:22:50.106977 2020-02-05 02:22:50.106977 \N 549.00 \N 449.00 0.00 2663 2171 973 1.0 100.00 0.00 349.00 100.00 1 2020-02-05 02:22:50.151364 2020-02-05 02:22:50.151364 \N 449.00 \N 349.00 0.00 2664 2172 729 1.0 460.00 0.00 309.00 460.00 1 2020-02-05 19:37:58.101943 2020-02-05 19:37:58.101943 \N 769.00 \N 309.00 0.00 2665 2173 84 1.0 86.21 13.79 399.00 100.00 1 2020-02-05 20:36:48.554613 2020-02-05 20:36:48.554613 \N 499.00 \N 399.00 0.00 2667 2175 427 1.0 517.24 82.76 399.00 600.00 1 2020-02-05 22:07:36.336789 2020-02-05 22:07:36.336789 \N 999.00 \N 399.00 0.00 2668 2176 954 1.0 719.40 0.00 479.60 719.40 1 2020-02-06 20:08:42.532395 2020-02-06 20:08:42.532395 \N 1199.00 \N 0.00 40.00 2669 2177 504 1.0 835.20 0.00 556.80 835.20 1 2020-02-06 20:17:22.977325 2020-02-06 20:17:22.977325 \N 1392.00 \N 0.00 40.00 2670 2178 639 1.0 86.21 13.79 500.00 100.00 1 2020-02-06 20:26:46.05472 2020-02-06 20:26:46.05472 \N 600.00 \N 500.00 0.00 2671 2179 66 1.0 86.21 13.79 299.00 100.00 1 2020-02-06 22:51:53.016125 2020-02-06 22:51:53.016125 \N 399.00 \N 299.00 0.00 2672 2180 899 1.0 970.00 0.00 659.00 970.00 1 2020-02-07 01:59:02.731196 2020-02-07 01:59:02.731196 \N 1629.00 \N 659.00 0.00 2673 2181 875 1.0 359.40 0.00 239.60 359.40 1 2020-02-07 21:15:43.098968 2020-02-07 21:15:43.098968 \N 599.00 \N 0.00 40.00 2674 2182 392 1.0 172.41 27.59 769.00 200.00 1 2020-02-07 21:53:19.171642 2020-02-07 21:53:19.171642 \N 969.00 \N 769.00 0.00 2675 2183 225 1.0 86.21 13.79 749.00 100.00 1 2020-02-07 23:06:01.053384 2020-02-07 23:06:01.053384 \N 849.00 \N 749.00 0.00 2676 2183 205 1.0 86.21 13.79 699.00 100.00 1 2020-02-07 23:06:01.083003 2020-02-07 23:06:01.083003 \N 799.00 \N 699.00 0.00 2677 2184 951 1.0 699.00 0.00 0.00 699.00 0 2020-02-08 00:32:19.904264 2020-02-08 00:32:49.048913 \N 699.00 \N 0.00 0.00 2678 2185 951 1.0 699.00 0.00 0.00 699.00 1 2020-02-08 00:33:12.084981 2020-02-08 00:33:12.084981 \N 699.00 \N 0.00 0.00 2666 2174 717 1.0 2099.00 0.00 0.00 2099.00 0 2020-02-05 22:01:20.575797 2020-03-19 23:25:39.802482 \N 2099.00 \N 0.00 0.00 2679 2185 705 1.0 249.00 0.00 0.00 249.00 1 2020-02-08 00:33:12.109927 2020-02-08 00:33:12.109927 \N 249.00 \N 0.00 0.00 2680 2186 815 1.0 229.00 0.00 0.00 229.00 1 2020-02-08 20:50:35.371856 2020-02-08 20:50:35.371856 \N 229.00 \N 0.00 0.00 2683 2188 661 1.0 359.40 0.00 239.60 359.40 1 2020-02-08 21:17:07.16028 2020-02-08 21:17:07.16028 \N 599.00 \N 0.00 40.00 2684 2189 954 1.0 1199.00 0.00 0.00 1199.00 1 2020-02-09 00:26:35.663356 2020-02-09 00:26:35.663356 \N 1199.00 \N 0.00 0.00 2685 2189 688 1.0 0.00 0.00 649.00 0.00 1 2020-02-09 00:26:35.704196 2020-02-09 00:26:35.704196 \N 649.00 \N 0.00 100.00 2686 2190 754 1.0 825.00 0.00 0.00 825.00 1 2020-02-09 00:59:46.709754 2020-02-09 00:59:46.709754 \N 825.00 \N 0.00 0.00 2687 2190 661 1.0 0.00 0.00 599.00 0.00 1 2020-02-09 00:59:46.742832 2020-02-09 00:59:46.742832 \N 599.00 \N 0.00 100.00 2688 2191 205 1.0 86.21 13.79 699.00 100.00 1 2020-02-09 01:30:50.005328 2020-02-09 01:30:50.005328 \N 799.00 \N 699.00 0.00 2689 2191 639 1.0 86.21 13.79 500.00 100.00 1 2020-02-09 01:30:50.067581 2020-02-09 01:30:50.067581 \N 600.00 \N 500.00 0.00 2690 2191 738 1.0 100.00 0.00 749.00 100.00 1 2020-02-09 01:30:50.106272 2020-02-09 01:30:50.106272 \N 849.00 \N 749.00 0.00 2691 2192 669 1.0 250.00 0.00 169.00 250.00 1 2020-02-09 02:06:40.468397 2020-02-09 02:06:40.468397 \N 419.00 \N 169.00 0.00 2692 2193 688 1.0 389.40 0.00 259.60 389.40 1 2020-02-09 02:10:28.506494 2020-02-09 02:10:28.506494 \N 649.00 \N 0.00 40.00 2693 2194 594 1.0 390.00 0.00 259.00 390.00 1 2020-02-10 17:37:56.729979 2020-02-10 17:37:56.729979 \N 649.00 \N 259.00 0.00 2694 2195 531 1.0 579.00 0.00 0.00 579.00 1 2020-02-11 00:58:19.699333 2020-02-11 00:58:19.699333 \N 579.00 \N 0.00 0.00 1615 1305 714 1.0 839.00 0.00 0.00 839.00 0 2019-10-26 00:29:09.32575 2020-02-11 22:55:43.193952 \N 839.00 \N 0.00 0.00 2695 2196 176 1.0 172.41 27.59 699.00 200.00 1 2020-02-12 01:01:08.01302 2020-02-12 01:01:08.01302 \N 899.00 \N 699.00 0.00 2696 2197 602 1.0 200.00 0.00 369.00 200.00 1 2020-02-12 18:13:30.025622 2020-02-12 18:13:30.025622 \N 569.00 \N 369.00 0.00 2697 2197 176 1.0 172.41 27.59 699.00 200.00 1 2020-02-12 18:13:30.083152 2020-02-12 18:13:30.083152 \N 899.00 \N 699.00 0.00 2698 2198 717 1.0 2099.00 0.00 0.00 2099.00 1 2020-02-12 21:31:23.571238 2020-02-12 21:31:23.571238 \N 2099.00 \N 0.00 0.00 2699 2199 808 1.0 1020.00 0.00 679.00 1020.00 1 2020-02-13 02:13:57.688249 2020-02-13 02:13:57.688249 \N 1699.00 \N 679.00 0.00 2700 2200 663 1.0 420.00 0.00 279.00 420.00 1 2020-02-13 18:20:15.313415 2020-02-13 18:20:15.313415 \N 699.00 \N 279.00 0.00 2702 2202 634 1.0 480.00 0.00 319.00 480.00 1 2020-02-13 22:24:44.680815 2020-02-13 22:24:44.680815 \N 799.00 \N 319.00 0.00 2703 2203 673 1.0 560.00 0.00 0.00 560.00 1 2020-02-14 03:04:14.114154 2020-02-14 03:04:14.114154 \N 560.00 \N 0.00 0.00 2704 2203 521 1.0 499.00 0.00 0.00 499.00 1 2020-02-14 03:04:14.150146 2020-02-14 03:04:14.150146 \N 499.00 \N 0.00 0.00 2705 2204 32 1.0 602.59 96.41 0.00 699.00 1 2020-02-14 18:23:05.256096 2020-02-14 18:23:05.256096 \N 699.00 \N 0.00 0.00 2706 2205 168 1.0 172.41 27.59 799.00 200.00 1 2020-02-14 18:33:58.953986 2020-02-14 18:33:58.953986 \N 999.00 \N 799.00 0.00 2707 2206 838 1.0 239.00 0.00 0.00 239.00 1 2020-02-14 23:26:11.272403 2020-02-14 23:26:11.272403 \N 239.00 \N 0.00 0.00 2708 2207 717 1.0 2099.00 0.00 0.00 2099.00 1 2020-02-14 23:32:26.893657 2020-02-14 23:32:26.893657 \N 2099.00 \N 0.00 0.00 2709 2208 711 1.0 100.00 0.00 779.00 100.00 1 2020-02-15 00:21:23.39714 2020-02-15 00:21:23.39714 \N 879.00 \N 779.00 0.00 2710 2208 425 1.0 86.21 13.79 849.00 100.00 1 2020-02-15 00:21:23.436725 2020-02-15 00:21:23.436725 \N 949.00 \N 849.00 0.00 2711 2208 235 1.0 86.21 13.79 729.00 100.00 1 2020-02-15 00:21:23.466747 2020-02-15 00:21:23.466747 \N 829.00 \N 729.00 0.00 2712 2209 620 1.0 250.00 0.00 199.00 250.00 1 2020-02-15 01:19:52.142329 2020-02-15 01:19:52.142329 \N 449.00 \N 199.00 0.00 2713 2210 367 1.0 301.72 48.28 0.00 350.00 1 2020-02-15 01:23:12.007758 2020-02-15 01:23:12.007758 \N 350.00 \N 0.00 0.00 2714 2211 711 1.0 100.00 0.00 779.00 100.00 1 2020-02-15 17:03:45.111498 2020-02-15 17:03:45.111498 \N 879.00 \N 779.00 0.00 2715 2212 193 1.0 86.21 13.79 599.00 100.00 1 2020-02-15 19:14:44.987585 2020-02-15 19:14:44.987585 \N 699.00 \N 599.00 0.00 2716 2212 711 1.0 100.00 0.00 779.00 100.00 1 2020-02-15 19:14:45.065408 2020-02-15 19:14:45.065408 \N 879.00 \N 779.00 0.00 2717 2212 169 1.0 172.41 27.59 799.00 200.00 1 2020-02-15 19:14:45.124834 2020-02-15 19:14:45.124834 \N 999.00 \N 799.00 0.00 2718 2212 732 1.0 100.00 0.00 399.00 100.00 1 2020-02-15 19:14:45.163477 2020-02-15 19:14:45.163477 \N 499.00 \N 399.00 0.00 2719 2213 507 1.0 250.00 0.00 229.00 250.00 1 2020-02-15 19:25:53.931541 2020-02-15 19:25:53.931541 \N 479.00 \N 229.00 0.00 2720 2214 883 1.0 1049.00 0.00 0.00 1049.00 1 2020-02-15 19:33:54.178355 2020-02-15 19:33:54.178355 \N 1049.00 \N 0.00 0.00 2721 2214 642 1.0 50.00 0.00 829.00 50.00 1 2020-02-15 19:33:54.221097 2020-02-15 19:33:54.221097 \N 879.00 \N 829.00 0.00 2722 2215 870 1.0 269.40 0.00 179.60 269.40 1 2020-02-15 22:16:40.920883 2020-02-15 22:16:40.920883 \N 449.00 \N 0.00 40.00 2723 2216 402 1.0 86.21 13.79 499.00 100.00 1 2020-02-16 00:00:34.350697 2020-02-16 00:00:34.350697 \N 599.00 \N 499.00 0.00 2724 2217 90 1.0 86.21 13.79 399.00 100.00 1 2020-02-16 00:58:14.027291 2020-02-16 00:58:14.027291 \N 499.00 \N 399.00 0.00 2725 2218 755 1.0 677.40 0.00 451.60 677.40 1 2020-02-16 01:59:09.855585 2020-02-16 01:59:09.855585 \N 1129.00 \N 0.00 40.00 2726 2219 627 1.0 999.00 0.00 0.00 999.00 1 2020-02-17 20:50:06.825819 2020-02-17 20:50:06.825819 \N 999.00 \N 0.00 0.00 2727 2220 199 1.0 387.93 62.07 299.00 450.00 1 2020-02-17 22:46:55.749595 2020-02-17 22:46:55.749595 \N 749.00 \N 299.00 0.00 2728 2221 517 1.0 359.40 0.00 239.60 359.40 1 2020-02-18 00:10:29.570983 2020-02-18 00:10:29.570983 \N 599.00 \N 0.00 40.00 2729 2222 9 1.0 602.59 96.41 0.00 699.00 1 2020-02-19 01:12:28.42452 2020-02-19 01:12:28.42452 \N 699.00 \N 0.00 0.00 2730 2223 998 1.0 1169.00 0.00 0.00 1169.00 1 2020-02-19 19:37:11.654003 2020-02-19 19:37:11.654003 \N 1169.00 \N 0.00 0.00 2731 2224 981 1.0 769.00 0.00 0.00 769.00 1 2020-02-19 22:36:01.17329 2020-02-19 22:36:01.17329 \N 769.00 \N 0.00 0.00 2732 2224 390 1.0 172.41 27.59 699.00 200.00 1 2020-02-19 22:36:01.210085 2020-02-19 22:36:01.210085 \N 899.00 \N 699.00 0.00 2733 2225 991 1.0 699.00 0.00 0.00 699.00 1 2020-02-20 01:50:08.001952 2020-02-20 01:50:08.001952 \N 699.00 \N 0.00 0.00 2734 2226 367 2.0 517.24 82.76 100.00 600.00 1 2020-02-20 17:18:23.172405 2020-02-20 17:18:23.172405 \N 350.00 \N 100.00 0.00 2735 2227 986 1.0 1299.00 0.00 0.00 1299.00 1 2020-02-20 21:50:12.29745 2020-02-20 21:50:12.29745 \N 1299.00 \N 0.00 0.00 2736 2228 1002 1.0 599.00 0.00 0.00 599.00 1 2020-02-21 00:56:27.20094 2020-02-21 00:56:27.20094 \N 599.00 \N 0.00 0.00 2737 2229 205 1.0 86.21 13.79 699.00 100.00 1 2020-02-21 01:00:44.469565 2020-02-21 01:00:44.469565 \N 799.00 \N 699.00 0.00 2738 2230 369 1.0 42.24 6.76 0.00 49.00 1 2020-02-21 01:31:29.386317 2020-02-21 01:31:29.386317 \N 49.00 \N 0.00 0.00 2739 2231 205 1.0 86.21 13.79 699.00 100.00 1 2020-02-21 01:57:54.367062 2020-02-21 01:57:54.367062 \N 799.00 \N 699.00 0.00 2740 2232 987 1.0 799.00 0.00 0.00 799.00 1 2020-02-21 20:42:39.174505 2020-02-21 20:42:39.174505 \N 799.00 \N 0.00 0.00 2741 2233 605 1.0 999.00 0.00 0.00 999.00 1 2020-02-21 21:53:03.447399 2020-02-21 21:53:03.447399 \N 999.00 \N 0.00 0.00 2742 2234 977 1.0 519.00 0.00 0.00 519.00 1 2020-02-22 01:56:24.569322 2020-02-22 01:56:24.569322 \N 519.00 \N 0.00 0.00 2743 2235 205 1.0 86.21 13.79 699.00 100.00 1 2020-02-22 02:11:08.085872 2020-02-22 02:11:08.085872 \N 799.00 \N 699.00 0.00 2744 2236 1002 1.0 599.00 0.00 0.00 599.00 1 2020-02-22 02:16:27.83574 2020-02-22 02:16:27.83574 \N 599.00 \N 0.00 0.00 2745 2236 963 1.0 949.00 0.00 0.00 949.00 1 2020-02-22 02:16:27.875081 2020-02-22 02:16:27.875081 \N 949.00 \N 0.00 0.00 2746 2237 552 1.0 479.00 0.00 0.00 479.00 1 2020-02-22 18:45:26.24558 2020-02-22 18:45:26.24558 \N 479.00 \N 0.00 0.00 2747 2237 977 1.0 519.00 0.00 0.00 519.00 1 2020-02-22 18:45:26.294731 2020-02-22 18:45:26.294731 \N 519.00 \N 0.00 0.00 2748 2238 167 1.0 172.41 27.59 799.00 200.00 1 2020-02-22 18:52:17.822635 2020-02-22 18:52:17.822635 \N 999.00 \N 799.00 0.00 2749 2239 963 1.0 949.00 0.00 0.00 949.00 1 2020-02-22 20:56:06.704484 2020-02-22 20:56:06.704484 \N 949.00 \N 0.00 0.00 2750 2239 980 1.0 499.00 0.00 0.00 499.00 1 2020-02-22 20:56:06.734291 2020-02-22 20:56:06.734291 \N 499.00 \N 0.00 0.00 2681 2187 811 1.0 249.00 0.00 0.00 249.00 0 2020-02-08 21:05:39.189409 2020-03-18 18:54:07.269721 \N 249.00 \N 0.00 0.00 2701 2201 717 1.0 2099.00 0.00 0.00 2099.00 0 2020-02-13 20:47:26.416662 2020-05-14 20:49:17.174665 \N 2099.00 \N 0.00 0.00 2751 2239 506 1.0 1395.00 0.00 0.00 1395.00 1 2020-02-22 20:56:06.764966 2020-02-22 20:56:06.764966 \N 1395.00 \N 0.00 0.00 2752 2240 414 1.0 86.21 13.79 559.00 100.00 1 2020-02-22 22:24:59.482842 2020-02-22 22:24:59.482842 \N 659.00 \N 559.00 0.00 2753 2240 293 1.0 86.21 13.79 469.00 100.00 1 2020-02-22 22:24:59.517043 2020-02-22 22:24:59.517043 \N 569.00 \N 469.00 0.00 2754 2241 401 1.0 430.17 68.83 0.00 499.00 1 2020-02-22 22:49:31.035335 2020-02-22 22:49:31.035335 \N 499.00 \N 0.00 0.00 2755 2242 1000 1.0 729.00 0.00 0.00 729.00 1 2020-02-22 22:59:05.47196 2020-02-22 22:59:05.47196 \N 729.00 \N 0.00 0.00 2756 2243 996 1.0 1699.00 0.00 0.00 1699.00 1 2020-02-22 23:11:32.16489 2020-02-22 23:11:32.16489 \N 1699.00 \N 0.00 0.00 2757 2244 670 1.0 639.00 0.00 0.00 639.00 1 2020-02-22 23:30:35.558395 2020-02-22 23:30:35.558395 \N 639.00 \N 0.00 0.00 2758 2245 489 1.0 200.00 0.00 260.00 200.00 1 2020-02-23 00:25:20.152504 2020-02-23 00:25:20.152504 \N 460.00 \N 260.00 0.00 2759 2246 993 1.0 529.00 0.00 0.00 529.00 1 2020-02-23 00:37:45.97393 2020-02-23 00:37:45.97393 \N 529.00 \N 0.00 0.00 2760 2247 570 1.0 489.00 0.00 0.00 489.00 0 2020-02-23 03:08:51.61446 2020-02-23 03:12:03.372293 \N 489.00 \N 0.00 0.00 2761 2248 570 1.0 489.00 0.00 0.00 489.00 1 2020-02-23 03:12:25.620893 2020-02-23 03:12:25.620893 \N 489.00 \N 0.00 0.00 2762 2249 991 1.0 699.00 0.00 0.00 699.00 1 2020-02-24 19:30:59.521109 2020-02-24 19:30:59.521109 \N 699.00 \N 0.00 0.00 2763 2250 202 1.0 0.00 0.00 499.00 0.00 1 2020-02-25 02:02:29.545132 2020-02-25 02:02:29.545132 \N 499.00 \N 499.00 0.00 2764 2251 207 1.0 172.41 27.59 729.00 200.00 1 2020-02-25 02:36:28.040319 2020-02-25 02:36:28.040319 \N 929.00 \N 729.00 0.00 2765 2252 663 1.0 699.00 0.00 0.00 699.00 1 2020-02-25 17:33:27.91395 2020-02-25 17:33:27.91395 \N 699.00 \N 0.00 0.00 2766 2253 963 1.0 949.00 0.00 0.00 949.00 1 2020-02-25 19:14:44.722328 2020-02-25 19:14:44.722328 \N 949.00 \N 0.00 0.00 2767 2254 1023 1.0 849.00 0.00 0.00 849.00 1 2020-02-25 19:38:23.708458 2020-02-25 19:38:23.708458 \N 849.00 \N 0.00 0.00 2768 2255 216 1.0 86.21 13.79 200.00 100.00 1 2020-02-25 22:29:40.522989 2020-02-25 22:29:40.522989 \N 300.00 \N 200.00 0.00 2769 2256 997 1.0 1169.00 0.00 0.00 1169.00 1 2020-02-25 22:55:20.074867 2020-02-25 22:55:20.074867 \N 1169.00 \N 0.00 0.00 2770 2257 119 1.0 86.21 13.79 299.00 100.00 1 2020-02-26 01:12:48.04044 2020-02-26 01:12:48.04044 \N 399.00 \N 299.00 0.00 2771 2258 985 1.0 669.00 0.00 0.00 669.00 1 2020-02-26 01:50:11.146074 2020-02-26 01:50:11.146074 \N 669.00 \N 0.00 0.00 2772 2259 202 1.0 430.17 68.83 0.00 499.00 1 2020-02-26 01:54:00.7357 2020-02-26 01:54:00.7357 \N 499.00 \N 0.00 0.00 2773 2260 611 1.0 699.00 0.00 0.00 699.00 1 2020-02-26 19:58:06.732088 2020-02-26 19:58:06.732088 \N 699.00 \N 0.00 0.00 2774 2261 476 1.0 85.34 13.65 0.00 98.99 1 2020-02-26 22:45:07.605299 2020-02-26 22:45:07.605299 \N 99.00 \N 0.00 0.00 2775 2262 703 1.0 0.00 0.00 1599.00 0.00 1 2020-02-26 23:15:41.852352 2020-02-26 23:15:41.852352 \N 1599.00 \N 0.00 100.00 2776 2263 414 1.0 86.21 13.79 559.00 100.00 1 2020-02-26 23:58:32.977393 2020-02-26 23:58:32.977393 \N 659.00 \N 559.00 0.00 2777 2264 536 1.0 100.00 0.00 509.00 100.00 1 2020-02-27 19:08:56.648908 2020-02-27 19:08:56.648908 \N 609.00 \N 509.00 0.00 2778 2265 980 1.0 499.00 0.00 0.00 499.00 1 2020-02-27 20:36:03.043732 2020-02-27 20:36:03.043732 \N 499.00 \N 0.00 0.00 2779 2266 1012 1.0 589.00 0.00 0.00 589.00 1 2020-02-28 01:32:29.285019 2020-02-28 01:32:29.285019 \N 589.00 \N 0.00 0.00 2780 2267 1023 1.0 849.00 0.00 0.00 849.00 1 2020-02-28 18:20:34.170597 2020-02-28 18:20:34.170597 \N 849.00 \N 0.00 0.00 2781 2268 989 1.0 799.00 0.00 0.00 799.00 1 2020-02-28 19:28:53.771867 2020-02-28 19:28:53.771867 \N 799.00 \N 0.00 0.00 2782 2269 476 1.0 85.34 13.65 0.00 98.99 1 2020-02-28 20:11:43.53471 2020-02-28 20:11:43.53471 \N 99.00 \N 0.00 0.00 2783 2270 215 1.0 87.07 13.93 399.00 101.00 1 2020-02-28 22:51:06.115015 2020-02-28 22:51:06.115015 \N 500.00 \N 399.00 0.00 2784 2271 997 1.0 1169.00 0.00 0.00 1169.00 1 2020-02-29 00:50:47.505214 2020-02-29 00:50:47.505214 \N 1169.00 \N 0.00 0.00 2785 2272 977 1.0 519.00 0.00 0.00 519.00 1 2020-02-29 02:19:27.406563 2020-02-29 02:19:27.406563 \N 519.00 \N 0.00 0.00 2786 2273 1001 1.0 799.00 0.00 0.00 799.00 1 2020-02-29 18:09:49.62504 2020-02-29 18:09:49.62504 \N 799.00 \N 0.00 0.00 2787 2273 1014 1.0 659.00 0.00 0.00 659.00 1 2020-02-29 18:09:49.684432 2020-02-29 18:09:49.684432 \N 659.00 \N 0.00 0.00 2788 2274 965 1.0 1699.00 0.00 0.00 1699.00 1 2020-02-29 20:35:25.871845 2020-02-29 20:35:25.871845 \N 1699.00 \N 0.00 0.00 2789 2275 202 1.0 430.17 68.83 0.00 499.00 1 2020-02-29 21:11:13.093943 2020-02-29 21:11:13.093943 \N 499.00 \N 0.00 0.00 2790 2276 1023 1.0 849.00 0.00 0.00 849.00 1 2020-02-29 23:11:15.593069 2020-02-29 23:11:15.593069 \N 849.00 \N 0.00 0.00 2791 2277 991 1.0 699.00 0.00 0.00 699.00 1 2020-02-29 23:23:23.774417 2020-02-29 23:23:23.774417 \N 699.00 \N 0.00 0.00 2792 2278 664 1.0 699.00 0.00 0.00 699.00 1 2020-03-01 00:46:01.103872 2020-03-01 00:46:01.103872 \N 699.00 \N 0.00 0.00 2793 2279 1072 1.0 360.00 0.00 0.00 360.00 1 2020-03-01 02:34:04.199742 2020-03-01 02:34:04.199742 \N 360.00 \N 0.00 0.00 2794 2279 1029 1.0 69.00 0.00 0.00 69.00 1 2020-03-01 02:34:04.241917 2020-03-01 02:34:04.241917 \N 69.00 \N 0.00 0.00 2795 2280 999 1.0 849.00 0.00 0.00 849.00 0 2020-03-01 20:46:18.729077 2020-03-01 20:46:57.342563 \N 849.00 \N 0.00 0.00 2796 2281 686 1.0 649.00 0.00 0.00 649.00 1 2020-03-01 21:57:12.932971 2020-03-01 21:57:12.932971 \N 649.00 \N 0.00 0.00 2797 2282 519 1.0 799.00 0.00 0.00 799.00 1 2020-03-02 18:46:47.451145 2020-03-02 18:46:47.451145 \N 799.00 \N 0.00 0.00 2798 2283 1005 1.0 529.00 0.00 0.00 529.00 1 2020-03-02 23:04:22.028665 2020-03-02 23:04:22.028665 \N 529.00 \N 0.00 0.00 2799 2284 412 1.0 490.52 78.48 0.00 569.00 1 2020-03-02 23:42:02.589801 2020-03-02 23:42:02.589801 \N 569.00 \N 0.00 0.00 2800 2285 981 1.0 769.00 0.00 0.00 769.00 1 2020-03-03 02:12:34.630604 2020-03-03 02:12:34.630604 \N 769.00 \N 0.00 0.00 2801 2286 1023 1.0 849.00 0.00 0.00 849.00 1 2020-03-03 19:52:27.94221 2020-03-03 19:52:27.94221 \N 849.00 \N 0.00 0.00 2802 2287 1023 1.0 849.00 0.00 0.00 849.00 1 2020-03-03 20:26:42.889463 2020-03-03 20:26:42.889463 \N 849.00 \N 0.00 0.00 2803 2288 205 1.0 86.21 13.79 699.00 100.00 1 2020-03-04 00:04:02.799592 2020-03-04 00:04:02.799592 \N 799.00 \N 699.00 0.00 2804 2289 205 1.0 86.21 13.79 699.00 100.00 1 2020-03-04 00:28:14.727435 2020-03-04 00:28:14.727435 \N 799.00 \N 699.00 0.00 2805 2290 215 1.0 86.21 13.79 400.00 100.00 1 2020-03-04 21:58:57.572642 2020-03-04 21:58:57.572642 \N 500.00 \N 400.00 0.00 2806 2290 175 1.0 172.41 27.59 699.00 200.00 1 2020-03-04 21:58:57.615262 2020-03-04 21:58:57.615262 \N 899.00 \N 699.00 0.00 2807 2290 224 1.0 86.21 13.79 749.00 100.00 1 2020-03-04 21:58:57.643401 2020-03-04 21:58:57.643401 \N 849.00 \N 749.00 0.00 2808 2291 1009 1.0 599.00 0.00 0.00 599.00 1 2020-03-04 22:36:17.302188 2020-03-04 22:36:17.302188 \N 599.00 \N 0.00 0.00 2809 2292 999 1.0 849.00 0.00 0.00 849.00 1 2020-03-05 18:12:08.16848 2020-03-05 18:12:08.16848 \N 849.00 \N 0.00 0.00 2810 2293 963 1.0 949.00 0.00 0.00 949.00 1 2020-03-05 19:32:25.687227 2020-03-05 19:32:25.687227 \N 949.00 \N 0.00 0.00 2811 2294 1030 1.0 339.00 0.00 0.00 339.00 1 2020-03-05 22:18:39.040224 2020-03-05 22:18:39.040224 \N 339.00 \N 0.00 0.00 2812 2295 258 1.0 1033.62 165.38 0.00 1199.00 1 2020-03-06 17:39:52.699046 2020-03-06 17:39:52.699046 \N 1199.00 \N 0.00 0.00 2813 2296 1020 1.0 729.00 0.00 0.00 729.00 1 2020-03-06 20:11:33.893711 2020-03-06 20:11:33.893711 \N 729.00 \N 0.00 0.00 2814 2297 989 1.0 799.00 0.00 0.00 799.00 1 2020-03-06 20:13:15.227644 2020-03-06 20:13:15.227644 \N 799.00 \N 0.00 0.00 2815 2298 1088 1.0 169.00 0.00 0.00 169.00 1 2020-03-06 22:01:46.828055 2020-03-06 22:01:46.828055 \N 169.00 \N 0.00 0.00 2816 2298 1044 1.0 179.00 0.00 0.00 179.00 1 2020-03-06 22:01:46.901404 2020-03-06 22:01:46.901404 \N 179.00 \N 0.00 0.00 2817 2298 1054 1.0 149.00 0.00 0.00 149.00 1 2020-03-06 22:01:46.943038 2020-03-06 22:01:46.943038 \N 149.00 \N 0.00 0.00 2818 2298 1052 1.0 249.00 0.00 0.00 249.00 1 2020-03-06 22:01:46.981356 2020-03-06 22:01:46.981356 \N 249.00 \N 0.00 0.00 2819 2298 1086 1.0 339.00 0.00 0.00 339.00 1 2020-03-06 22:01:47.025055 2020-03-06 22:01:47.025055 \N 339.00 \N 0.00 0.00 2820 2298 1046 1.0 229.00 0.00 0.00 229.00 1 2020-03-06 22:01:47.075639 2020-03-06 22:01:47.075639 \N 229.00 \N 0.00 0.00 2821 2299 1063 1.0 149.00 0.00 0.00 149.00 1 2020-03-06 22:05:57.179362 2020-03-06 22:05:57.179362 \N 149.00 \N 0.00 0.00 2822 2299 1087 1.0 129.00 0.00 0.00 129.00 1 2020-03-06 22:05:57.218666 2020-03-06 22:05:57.218666 \N 129.00 \N 0.00 0.00 2823 2299 1080 1.0 269.00 0.00 0.00 269.00 1 2020-03-06 22:05:57.252524 2020-03-06 22:05:57.252524 \N 269.00 \N 0.00 0.00 2824 2299 1084 1.0 209.00 0.00 0.00 209.00 1 2020-03-06 22:05:57.284051 2020-03-06 22:05:57.284051 \N 209.00 \N 0.00 0.00 2825 2300 200 1.0 456.03 72.96 0.00 528.99 1 2020-03-07 18:09:04.056741 2020-03-07 18:09:04.056741 \N 529.00 \N 0.00 0.00 2826 2301 699 1.0 1190.00 0.00 209.00 1190.00 1 2020-03-07 18:13:09.908479 2020-03-07 18:13:09.908479 \N 1399.00 \N 209.00 0.00 2827 2302 810 1.0 1399.00 0.00 0.00 1399.00 1 2020-03-07 18:49:38.441515 2020-03-07 18:49:38.441515 \N 1399.00 \N 0.00 0.00 2828 2303 176 1.0 172.41 27.59 699.00 200.00 1 2020-03-07 19:02:01.498657 2020-03-07 19:02:01.498657 \N 899.00 \N 699.00 0.00 2829 2303 736 1.0 100.00 0.00 329.00 100.00 1 2020-03-07 19:02:01.561254 2020-03-07 19:02:01.561254 \N 429.00 \N 329.00 0.00 2830 2304 549 1.0 1399.00 0.00 0.00 1399.00 1 2020-03-07 21:30:18.68999 2020-03-07 21:30:18.68999 \N 1399.00 \N 0.00 0.00 2831 2305 1077 1.0 99.00 0.00 0.00 99.00 1 2020-03-07 21:44:09.496784 2020-03-07 21:44:09.496784 \N 99.00 \N 0.00 0.00 2832 2306 1022 1.0 869.00 0.00 0.00 869.00 1 2020-03-07 21:55:41.106104 2020-03-07 21:55:41.106104 \N 869.00 \N 0.00 0.00 2833 2307 193 1.0 86.21 13.79 599.00 100.00 1 2020-03-08 01:02:38.405782 2020-03-08 01:02:38.405782 \N 699.00 \N 599.00 0.00 2834 2308 1057 1.0 549.00 0.00 0.00 549.00 1 2020-03-08 19:01:53.31076 2020-03-08 19:01:53.31076 \N 549.00 \N 0.00 0.00 2835 2309 1023 1.0 849.00 0.00 0.00 849.00 1 2020-03-08 20:11:51.517255 2020-03-08 20:11:51.517255 \N 849.00 \N 0.00 0.00 2836 2310 1074 1.0 249.00 0.00 0.00 249.00 1 2020-03-10 01:23:08.738237 2020-03-10 01:23:08.738237 \N 249.00 \N 0.00 0.00 2837 2311 637 1.0 799.00 0.00 0.00 799.00 1 2020-03-10 02:50:41.779431 2020-03-10 02:50:41.779431 \N 799.00 \N 0.00 0.00 2838 2311 1048 1.0 219.00 0.00 0.00 219.00 1 2020-03-10 02:50:41.823313 2020-03-10 02:50:41.823313 \N 219.00 \N 0.00 0.00 2839 2311 652 1.0 1599.00 0.00 0.00 1599.00 1 2020-03-10 02:50:41.849796 2020-03-10 02:50:41.849796 \N 1599.00 \N 0.00 0.00 2840 2311 473 1.0 1799.00 0.00 0.00 1799.00 1 2020-03-10 02:50:41.875662 2020-03-10 02:50:41.875662 \N 1799.00 \N 0.00 0.00 2841 2311 210 1.0 258.62 41.38 569.00 300.00 1 2020-03-10 02:50:41.903242 2020-03-10 02:50:41.903242 \N 869.00 \N 569.00 0.00 2842 2311 113 1.0 258.62 41.38 199.00 300.00 1 2020-03-10 02:50:41.932784 2020-03-10 02:50:41.932784 \N 499.00 \N 199.00 0.00 2843 2311 1065 1.0 110.00 0.00 0.00 110.00 1 2020-03-10 02:50:41.959809 2020-03-10 02:50:41.959809 \N 110.00 \N 0.00 0.00 2844 2312 1009 1.0 599.00 0.00 0.00 599.00 1 2020-03-10 02:53:51.028021 2020-03-10 02:53:51.028021 \N 599.00 \N 0.00 0.00 2845 2312 1017 1.0 699.00 0.00 0.00 699.00 1 2020-03-10 02:53:51.058265 2020-03-10 02:53:51.058265 \N 699.00 \N 0.00 0.00 2846 2313 314 1.0 86.21 13.79 349.00 100.00 1 2020-03-10 17:14:23.102031 2020-03-10 17:14:23.102031 \N 449.00 \N 349.00 0.00 2847 2314 1014 2.0 1318.00 0.00 0.00 1318.00 1 2020-03-10 20:10:27.753365 2020-03-10 20:10:27.753365 \N 659.00 \N 0.00 0.00 2848 2315 1008 1.0 999.00 0.00 0.00 999.00 1 2020-03-10 20:14:09.530415 2020-03-10 20:14:09.530415 \N 999.00 \N 0.00 0.00 2849 2316 457 1.0 399.00 0.00 0.00 399.00 1 2020-03-10 21:05:35.767805 2020-03-10 21:05:35.767805 \N 399.00 \N 0.00 0.00 2850 2317 502 1.0 1299.00 0.00 0.00 1299.00 1 2020-03-10 22:26:11.393843 2020-03-10 22:26:11.393843 \N 1299.00 \N 0.00 0.00 2851 2318 1017 1.0 699.00 0.00 0.00 699.00 1 2020-03-10 23:34:12.447165 2020-03-10 23:34:12.447165 \N 699.00 \N 0.00 0.00 2852 2319 1004 1.0 529.00 0.00 0.00 529.00 1 2020-03-11 01:03:08.8996 2020-03-11 01:03:08.8996 \N 529.00 \N 0.00 0.00 2853 2320 1016 1.0 519.00 0.00 0.00 519.00 1 2020-03-11 01:42:58.233983 2020-03-11 01:42:58.233983 \N 519.00 \N 0.00 0.00 2854 2321 999 1.0 849.00 0.00 0.00 849.00 1 2020-03-11 01:46:54.908695 2020-03-11 01:46:54.908695 \N 849.00 \N 0.00 0.00 2855 2322 1079 1.0 129.00 0.00 0.00 129.00 1 2020-03-11 01:48:23.364177 2020-03-11 01:48:23.364177 \N 129.00 \N 0.00 0.00 2856 2323 566 1.0 100.00 0.00 299.00 100.00 1 2020-03-11 22:22:58.212068 2020-03-11 22:22:58.212068 \N 399.00 \N 299.00 0.00 2857 2324 390 1.0 172.41 27.59 699.00 200.00 1 2020-03-11 23:04:46.9497 2020-03-11 23:04:46.9497 \N 899.00 \N 699.00 0.00 2858 2325 991 1.0 699.00 0.00 0.00 699.00 1 2020-03-11 23:36:22.978228 2020-03-11 23:36:22.978228 \N 699.00 \N 0.00 0.00 2859 2326 1032 1.0 299.00 0.00 0.00 299.00 1 2020-03-12 01:10:00.348034 2020-03-12 01:10:00.348034 \N 299.00 \N 0.00 0.00 2860 2327 981 1.0 769.00 0.00 0.00 769.00 1 2020-03-12 01:42:26.181027 2020-03-12 01:42:26.181027 \N 769.00 \N 0.00 0.00 2861 2327 919 1.0 115.00 0.00 0.00 115.00 1 2020-03-12 01:42:26.210345 2020-03-12 01:42:26.210345 \N 115.00 \N 0.00 0.00 2862 2328 707 1.0 1499.00 0.00 0.00 1499.00 1 2020-03-12 02:13:39.20614 2020-03-12 02:13:39.20614 \N 1499.00 \N 0.00 0.00 2863 2329 796 1.0 1199.00 0.00 0.00 1199.00 1 2020-03-12 02:37:31.298636 2020-03-12 02:37:31.298636 \N 1199.00 \N 0.00 0.00 2864 2330 200 1.0 456.03 72.96 0.00 528.99 1 2020-03-12 23:50:35.303904 2020-03-12 23:50:35.303904 \N 529.00 \N 0.00 0.00 2865 2331 1007 1.0 699.00 0.00 0.00 699.00 1 2020-03-13 02:32:16.406423 2020-03-13 02:32:16.406423 \N 699.00 \N 0.00 0.00 2866 2331 1011 1.0 589.00 0.00 0.00 589.00 1 2020-03-13 02:32:16.436886 2020-03-13 02:32:16.436886 \N 589.00 \N 0.00 0.00 2867 2332 1093 2.0 278.00 0.00 0.00 278.00 1 2020-03-13 02:39:36.500441 2020-03-13 02:39:36.500441 \N 139.00 \N 0.00 0.00 2868 2333 996 1.0 1699.00 0.00 0.00 1699.00 1 2020-03-13 18:32:44.688338 2020-03-13 18:32:44.688338 \N 1699.00 \N 0.00 0.00 2869 2334 297 1.0 516.38 82.62 0.00 599.00 1 2020-03-13 21:50:11.110381 2020-03-13 21:50:11.110381 \N 599.00 \N 0.00 0.00 2870 2335 1006 1.0 699.00 0.00 0.00 699.00 1 2020-03-13 22:50:15.348598 2020-03-13 22:50:15.348598 \N 699.00 \N 0.00 0.00 2871 2336 223 1.0 86.21 13.79 799.00 100.00 1 2020-03-13 23:28:19.036132 2020-03-13 23:28:19.036132 \N 899.00 \N 799.00 0.00 2872 2337 710 1.0 1199.00 0.00 0.00 1199.00 0 2020-03-13 23:44:52.176421 2020-03-13 23:46:43.705512 \N 1199.00 \N 0.00 0.00 2873 2338 710 1.0 1199.00 0.00 0.00 1199.00 1 2020-03-13 23:48:49.019362 2020-03-13 23:48:49.019362 \N 1199.00 \N 0.00 0.00 2874 2338 1001 1.0 799.00 0.00 0.00 799.00 1 2020-03-13 23:48:49.050628 2020-03-13 23:48:49.050628 \N 799.00 \N 0.00 0.00 2875 2339 476 1.0 85.34 13.65 0.00 98.99 1 2020-03-14 00:21:43.65585 2020-03-14 00:21:43.65585 \N 99.00 \N 0.00 0.00 2876 2339 990 1.0 599.00 0.00 0.00 599.00 1 2020-03-14 00:21:43.685282 2020-03-14 00:21:43.685282 \N 599.00 \N 0.00 0.00 2877 2339 992 1.0 699.00 0.00 0.00 699.00 1 2020-03-14 00:21:43.711606 2020-03-14 00:21:43.711606 \N 699.00 \N 0.00 0.00 2878 2340 118 1.0 86.21 13.79 399.00 100.00 1 2020-03-14 00:34:29.809304 2020-03-14 00:34:29.809304 \N 499.00 \N 399.00 0.00 2879 2340 223 1.0 86.21 13.79 799.00 100.00 1 2020-03-14 00:34:29.849282 2020-03-14 00:34:29.849282 \N 899.00 \N 799.00 0.00 2880 2341 407 1.0 430.17 68.83 0.00 499.00 1 2020-03-14 00:52:28.156905 2020-03-14 00:52:28.156905 \N 499.00 \N 0.00 0.00 2881 2341 397 1.0 593.97 95.04 0.00 689.01 1 2020-03-14 00:52:28.188924 2020-03-14 00:52:28.188924 \N 689.00 \N 0.00 0.00 2882 2342 528 1.0 699.00 0.00 0.00 699.00 1 2020-03-14 00:54:15.358136 2020-03-14 00:54:15.358136 \N 699.00 \N 0.00 0.00 2883 2343 979 1.0 469.00 0.00 0.00 469.00 1 2020-03-14 01:40:00.619553 2020-03-14 01:40:00.619553 \N 469.00 \N 0.00 0.00 2884 2343 984 1.0 479.00 0.00 0.00 479.00 1 2020-03-14 01:40:00.649873 2020-03-14 01:40:00.649873 \N 479.00 \N 0.00 0.00 2885 2343 836 1.0 249.00 0.00 0.00 249.00 1 2020-03-14 01:40:00.676204 2020-03-14 01:40:00.676204 \N 249.00 \N 0.00 0.00 2886 2344 668 1.0 299.00 0.00 0.00 299.00 1 2020-03-14 02:25:42.059321 2020-03-14 02:25:42.059321 \N 299.00 \N 0.00 0.00 2887 2344 702 1.0 1599.00 0.00 0.00 1599.00 1 2020-03-14 02:25:42.087452 2020-03-14 02:25:42.087452 \N 1599.00 \N 0.00 0.00 2888 2345 566 1.0 100.00 0.00 299.00 100.00 1 2020-03-14 17:42:36.098279 2020-03-14 17:42:36.098279 \N 399.00 \N 299.00 0.00 2889 2346 202 1.0 430.17 68.83 0.00 499.00 1 2020-03-14 17:54:08.23729 2020-03-14 17:54:08.23729 \N 499.00 \N 0.00 0.00 2890 2347 78 1.0 426.72 68.28 100.00 495.00 1 2020-03-14 18:32:25.592951 2020-03-14 18:32:25.592951 \N 595.00 \N 100.00 0.00 2891 2348 1025 1.0 899.00 0.00 0.00 899.00 1 2020-03-14 20:42:25.758397 2020-03-14 20:42:25.758397 \N 899.00 \N 0.00 0.00 2892 2349 930 1.0 139.00 0.00 0.00 139.00 1 2020-03-14 22:11:03.676829 2020-03-14 22:11:03.676829 \N 139.00 \N 0.00 0.00 2896 2350 1013 1.0 589.00 0.00 0.00 589.00 0 2020-03-14 22:40:02.858179 2020-03-14 22:40:17.380061 \N 589.00 \N 0.00 0.00 2895 2350 789 1.0 549.00 0.00 0.00 549.00 0 2020-03-14 22:40:02.832643 2020-03-14 22:40:17.408128 \N 549.00 \N 0.00 0.00 2894 2350 980 1.0 499.00 0.00 0.00 499.00 0 2020-03-14 22:40:02.804484 2020-03-14 22:40:17.433219 \N 499.00 \N 0.00 0.00 2893 2350 983 1.0 749.00 0.00 0.00 749.00 0 2020-03-14 22:40:02.747857 2020-03-14 22:40:17.458245 \N 749.00 \N 0.00 0.00 2897 2351 983 1.0 749.00 0.00 0.00 749.00 0 2020-03-14 22:42:22.045416 2020-03-14 22:43:08.421708 \N 749.00 \N 0.00 0.00 2902 2351 928 1.0 149.00 0.00 0.00 149.00 0 2020-03-14 22:42:22.217588 2020-03-14 22:43:08.312111 \N 149.00 \N 0.00 0.00 2901 2351 1028 1.0 429.10 0.00 0.00 429.10 0 2020-03-14 22:42:22.180711 2020-03-14 22:43:08.334098 \N 429.10 \N 0.00 0.00 2900 2351 980 1.0 499.00 0.00 0.00 499.00 0 2020-03-14 22:42:22.14376 2020-03-14 22:43:08.352706 \N 499.00 \N 0.00 0.00 2899 2351 789 1.0 549.00 0.00 0.00 549.00 0 2020-03-14 22:42:22.106903 2020-03-14 22:43:08.380312 \N 549.00 \N 0.00 0.00 2898 2351 1013 1.0 589.00 0.00 0.00 589.00 0 2020-03-14 22:42:22.079309 2020-03-14 22:43:08.402219 \N 589.00 \N 0.00 0.00 2909 2353 369 1.0 42.24 6.76 0.00 49.00 1 2020-03-14 22:56:14.414988 2020-03-14 22:56:14.414988 \N 49.00 \N 0.00 0.00 2910 2354 1000 1.0 700.00 0.00 29.00 700.00 1 2020-03-14 23:02:11.266369 2020-03-14 23:02:11.266369 \N 729.00 \N 29.00 0.00 2911 2355 997 1.0 1169.00 0.00 0.00 1169.00 1 2020-03-14 23:39:15.493851 2020-03-14 23:39:15.493851 \N 1169.00 \N 0.00 0.00 2912 2356 714 1.0 839.00 0.00 0.00 839.00 1 2020-03-15 00:21:39.270606 2020-03-15 00:21:39.270606 \N 839.00 \N 0.00 0.00 2913 2357 611 1.0 699.00 0.00 0.00 699.00 1 2020-03-15 00:31:24.56657 2020-03-15 00:31:24.56657 \N 699.00 \N 0.00 0.00 2914 2358 987 1.0 799.00 0.00 0.00 799.00 1 2020-03-15 19:06:41.459119 2020-03-15 19:06:41.459119 \N 799.00 \N 0.00 0.00 2915 2359 984 1.0 431.10 0.00 47.90 431.10 1 2020-03-15 19:19:13.586865 2020-03-15 19:19:13.586865 \N 479.00 \N 0.00 10.00 2916 2360 176 1.0 172.41 27.59 699.00 200.00 1 2020-03-15 19:50:33.798181 2020-03-15 19:50:33.798181 \N 899.00 \N 699.00 0.00 2917 2361 634 1.0 799.00 0.00 0.00 799.00 1 2020-03-15 20:49:18.758437 2020-03-15 20:49:18.758437 \N 799.00 \N 0.00 0.00 2918 2362 207 1.0 172.41 27.59 729.00 200.00 1 2020-03-16 19:31:36.913157 2020-03-16 19:31:36.913157 \N 929.00 \N 729.00 0.00 2919 2363 963 1.0 949.00 0.00 0.00 949.00 1 2020-03-16 19:54:51.685897 2020-03-16 19:54:51.685897 \N 949.00 \N 0.00 0.00 2920 2364 963 1.0 949.00 0.00 0.00 949.00 1 2020-03-16 21:17:30.245817 2020-03-16 21:17:30.245817 \N 949.00 \N 0.00 0.00 2921 2364 984 1.0 479.00 0.00 0.00 479.00 1 2020-03-16 21:17:30.278258 2020-03-16 21:17:30.278258 \N 479.00 \N 0.00 0.00 2922 2365 975 1.0 999.00 0.00 0.00 999.00 1 2020-03-16 21:59:32.539221 2020-03-16 21:59:32.539221 \N 999.00 \N 0.00 0.00 2923 2366 717 1.0 2099.00 0.00 0.00 2099.00 1 2020-03-17 01:39:37.034601 2020-03-17 01:39:37.034601 \N 2099.00 \N 0.00 0.00 2924 2367 975 1.0 999.00 0.00 0.00 999.00 1 2020-03-17 19:45:21.316689 2020-03-17 19:45:21.316689 \N 999.00 \N 0.00 0.00 2925 2368 9 1.0 602.59 96.41 0.00 699.00 1 2020-03-17 20:08:13.592882 2020-03-17 20:08:13.592882 \N 699.00 \N 0.00 0.00 2926 2368 5 1.0 593.97 95.04 0.00 689.01 1 2020-03-17 20:08:13.630433 2020-03-17 20:08:13.630433 \N 689.00 \N 0.00 0.00 2927 2369 369 2.0 84.48 13.52 0.00 98.00 1 2020-03-17 20:09:14.786759 2020-03-17 20:09:14.786759 \N 49.00 \N 0.00 0.00 2928 2370 408 1.0 86.21 13.79 399.00 100.00 1 2020-03-17 22:54:31.833215 2020-03-17 22:54:31.833215 \N 499.00 \N 399.00 0.00 2929 2370 638 1.0 200.00 0.00 419.00 200.00 1 2020-03-17 22:54:31.866939 2020-03-17 22:54:31.866939 \N 619.00 \N 419.00 0.00 2930 2371 609 1.0 699.00 0.00 0.00 699.00 0 2020-03-17 23:14:46.410388 2020-03-17 23:14:54.499807 \N 699.00 \N 0.00 0.00 2931 2372 609 1.0 699.00 0.00 0.00 699.00 1 2020-03-17 23:15:24.643648 2020-03-17 23:15:24.643648 \N 699.00 \N 0.00 0.00 2932 2373 975 1.0 999.00 0.00 0.00 999.00 1 2020-03-18 00:06:07.299235 2020-03-18 00:06:07.299235 \N 999.00 \N 0.00 0.00 2933 2374 1029 1.0 69.00 0.00 0.00 69.00 1 2020-03-18 00:13:40.786734 2020-03-18 00:13:40.786734 \N 69.00 \N 0.00 0.00 2934 2374 1113 1.0 189.00 0.00 0.00 189.00 1 2020-03-18 00:13:40.81736 2020-03-18 00:13:40.81736 \N 189.00 \N 0.00 0.00 2935 2375 1115 1.0 169.00 0.00 0.00 169.00 1 2020-03-18 00:18:05.956685 2020-03-18 00:18:05.956685 \N 169.00 \N 0.00 0.00 2936 2375 1040 1.0 209.00 0.00 0.00 209.00 1 2020-03-18 00:18:05.987897 2020-03-18 00:18:05.987897 \N 209.00 \N 0.00 0.00 2937 2375 1114 1.0 149.00 0.00 0.00 149.00 1 2020-03-18 00:18:06.018652 2020-03-18 00:18:06.018652 \N 149.00 \N 0.00 0.00 2938 2375 1042 1.0 209.00 0.00 0.00 209.00 1 2020-03-18 00:18:06.045561 2020-03-18 00:18:06.045561 \N 209.00 \N 0.00 0.00 2939 2375 1039 1.0 209.00 0.00 0.00 209.00 1 2020-03-18 00:18:06.07155 2020-03-18 00:18:06.07155 \N 209.00 \N 0.00 0.00 2940 2376 1097 1.0 119.00 0.00 0.00 119.00 1 2020-03-18 00:30:28.632337 2020-03-18 00:30:28.632337 \N 119.00 \N 0.00 0.00 2941 2377 1118 1.0 1599.00 0.00 0.00 1599.00 0 2020-03-18 00:56:02.203786 2020-03-18 00:56:09.930724 \N 1599.00 \N 0.00 0.00 2942 2378 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-03-18 00:56:33.59218 2020-03-18 00:56:33.59218 \N 1599.00 \N 0.00 0.00 2943 2379 369 1.0 42.24 6.76 0.00 49.00 1 2020-03-18 01:00:29.725625 2020-03-18 01:00:29.725625 \N 49.00 \N 0.00 0.00 2944 2380 1059 1.0 499.00 0.00 0.00 499.00 1 2020-03-18 01:28:39.851988 2020-03-18 01:28:39.851988 \N 499.00 \N 0.00 0.00 2945 2381 989 1.0 799.00 0.00 0.00 799.00 1 2020-03-18 02:10:03.263357 2020-03-18 02:10:03.263357 \N 799.00 \N 0.00 0.00 2946 2381 987 1.0 799.00 0.00 0.00 799.00 1 2020-03-18 02:10:03.315387 2020-03-18 02:10:03.315387 \N 799.00 \N 0.00 0.00 2947 2382 369 2.0 84.48 13.52 0.00 98.00 1 2020-03-18 18:22:56.792949 2020-03-18 18:22:56.792949 \N 49.00 \N 0.00 0.00 2948 2383 369 1.0 42.24 6.76 0.00 49.00 1 2020-03-18 18:34:04.431737 2020-03-18 18:34:04.431737 \N 49.00 \N 0.00 0.00 2528 2061 717 1.0 2099.00 0.00 0.00 2099.00 0 2020-01-17 20:04:35.001056 2020-03-18 18:53:56.71954 \N 2099.00 \N 0.00 0.00 2682 2187 817 1.0 99.00 0.00 0.00 99.00 0 2020-02-08 21:05:39.223282 2020-03-18 18:54:07.238409 \N 99.00 \N 0.00 0.00 2949 2384 1026 1.0 109.00 0.00 0.00 109.00 1 2020-03-18 21:38:39.327749 2020-03-18 21:38:39.327749 \N 109.00 \N 0.00 0.00 2950 2384 83 1.0 542.24 86.76 0.00 629.00 1 2020-03-18 21:38:39.37174 2020-03-18 21:38:39.37174 \N 629.00 \N 0.00 0.00 2951 2384 669 1.0 419.00 0.00 0.00 419.00 1 2020-03-18 21:38:39.39998 2020-03-18 21:38:39.39998 \N 419.00 \N 0.00 0.00 2952 2385 609 1.0 699.00 0.00 0.00 699.00 1 2020-03-18 21:41:56.772229 2020-03-18 21:41:56.772229 \N 699.00 \N 0.00 0.00 2953 2385 419 1.0 602.59 96.41 0.00 699.00 1 2020-03-18 21:41:56.821166 2020-03-18 21:41:56.821166 \N 699.00 \N 0.00 0.00 2954 2386 369 1.0 42.24 6.76 0.00 49.00 1 2020-03-18 23:45:46.039004 2020-03-18 23:45:46.039004 \N 49.00 \N 0.00 0.00 2955 2387 992 1.0 699.00 0.00 0.00 699.00 1 2020-03-18 23:53:47.050182 2020-03-18 23:53:47.050182 \N 699.00 \N 0.00 0.00 2956 2387 990 1.0 599.00 0.00 0.00 599.00 1 2020-03-18 23:53:47.081366 2020-03-18 23:53:47.081366 \N 599.00 \N 0.00 0.00 2957 2388 1016 1.0 519.00 0.00 0.00 519.00 0 2020-03-19 00:35:21.990209 2020-03-19 00:37:25.919168 \N 519.00 \N 0.00 0.00 2958 2389 1016 1.0 519.00 0.00 0.00 519.00 1 2020-03-19 00:37:45.47738 2020-03-19 00:37:45.47738 \N 519.00 \N 0.00 0.00 2959 2390 205 1.0 86.21 13.79 699.00 100.00 1 2020-03-19 00:58:59.65782 2020-03-19 00:58:59.65782 \N 799.00 \N 699.00 0.00 2960 2391 369 1.0 42.24 6.76 0.00 49.00 1 2020-03-19 17:51:54.487302 2020-03-19 17:51:54.487302 \N 49.00 \N 0.00 0.00 2908 2352 1013 1.0 589.00 0.00 0.00 589.00 0 2020-03-14 22:44:43.195576 2020-03-19 17:59:11.801388 \N 589.00 \N 0.00 0.00 2907 2352 983 1.0 749.00 0.00 0.00 749.00 0 2020-03-14 22:44:43.170682 2020-03-19 17:59:11.823774 \N 749.00 \N 0.00 0.00 2906 2352 789 1.0 549.00 0.00 0.00 549.00 0 2020-03-14 22:44:43.146762 2020-03-19 17:59:11.843198 \N 549.00 \N 0.00 0.00 2905 2352 980 1.0 499.00 0.00 0.00 499.00 0 2020-03-14 22:44:43.122316 2020-03-19 17:59:11.86253 \N 499.00 \N 0.00 0.00 2904 2352 928 1.0 149.00 0.00 0.00 149.00 0 2020-03-14 22:44:43.096855 2020-03-19 17:59:11.882677 \N 149.00 \N 0.00 0.00 2903 2352 1028 1.0 429.10 0.00 0.00 429.10 0 2020-03-14 22:44:43.069499 2020-03-19 17:59:11.90167 \N 429.10 \N 0.00 0.00 2961 2392 983 1.0 749.00 0.00 0.00 749.00 1 2020-03-19 18:01:36.707901 2020-03-19 18:01:36.707901 \N 749.00 \N 0.00 0.00 2962 2392 1013 1.0 589.00 0.00 0.00 589.00 1 2020-03-19 18:01:36.733171 2020-03-19 18:01:36.733171 \N 589.00 \N 0.00 0.00 2963 2392 789 1.0 549.00 0.00 0.00 549.00 1 2020-03-19 18:01:36.756605 2020-03-19 18:01:36.756605 \N 549.00 \N 0.00 0.00 2964 2392 980 1.0 499.00 0.00 0.00 499.00 1 2020-03-19 18:01:36.780756 2020-03-19 18:01:36.780756 \N 499.00 \N 0.00 0.00 2965 2393 663 1.0 699.00 0.00 0.00 699.00 1 2020-03-19 20:00:22.068223 2020-03-19 20:00:22.068223 \N 699.00 \N 0.00 0.00 2966 2394 1002 1.0 599.00 0.00 0.00 599.00 1 2020-03-19 21:01:02.252224 2020-03-19 21:01:02.252224 \N 599.00 \N 0.00 0.00 2967 2395 490 1.0 230.00 0.00 769.00 230.00 1 2020-03-19 23:06:06.670081 2020-03-19 23:06:06.670081 \N 999.00 \N 769.00 0.00 2968 2396 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-03-20 20:43:39.527061 2020-03-20 20:43:39.527061 \N 1599.00 \N 0.00 0.00 2969 2396 369 2.0 84.48 13.52 0.00 98.00 1 2020-03-20 20:43:39.562619 2020-03-20 20:43:39.562619 \N 49.00 \N 0.00 0.00 2970 2397 552 1.0 479.00 0.00 0.00 479.00 1 2020-03-20 21:05:20.050055 2020-03-20 21:05:20.050055 \N 479.00 \N 0.00 0.00 2971 2398 369 1.0 42.24 6.76 0.00 49.00 1 2020-03-20 21:31:14.644389 2020-03-20 21:31:14.644389 \N 49.00 \N 0.00 0.00 2972 2399 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-03-21 00:03:49.899149 2020-03-21 00:03:49.899149 \N 1599.00 \N 0.00 0.00 2973 2400 864 1.0 1199.00 0.00 0.00 1199.00 1 2020-03-21 17:24:59.164041 2020-03-21 17:24:59.164041 \N 1199.00 \N 0.00 0.00 2974 2401 1014 1.0 659.00 0.00 0.00 659.00 1 2020-03-21 21:24:59.005686 2020-03-21 21:24:59.005686 \N 659.00 \N 0.00 0.00 2975 2402 1082 1.0 139.00 0.00 0.00 139.00 1 2020-03-21 22:09:30.643949 2020-03-21 22:09:30.643949 \N 139.00 \N 0.00 0.00 2976 2403 983 1.0 749.00 0.00 0.00 749.00 1 2020-03-21 23:33:52.756458 2020-03-21 23:33:52.756458 \N 749.00 \N 0.00 0.00 2977 2403 1002 1.0 599.00 0.00 0.00 599.00 1 2020-03-21 23:33:52.783877 2020-03-21 23:33:52.783877 \N 599.00 \N 0.00 0.00 2978 2404 593 1.0 659.00 0.00 0.00 659.00 1 2020-03-21 23:38:52.136059 2020-03-21 23:38:52.136059 \N 659.00 \N 0.00 0.00 2979 2405 982 1.0 1119.00 0.00 0.00 1119.00 1 2020-03-22 00:55:18.596453 2020-03-22 00:55:18.596453 \N 1119.00 \N 0.00 0.00 2980 2406 369 1.0 42.24 6.76 0.00 49.00 1 2020-03-23 18:24:40.980071 2020-03-23 18:24:40.980071 \N 49.00 \N 0.00 0.00 2981 2407 663 1.0 699.00 0.00 0.00 699.00 1 2020-03-23 18:29:46.684904 2020-03-23 18:29:46.684904 \N 699.00 \N 0.00 0.00 2982 2407 476 1.0 85.34 13.65 0.00 98.99 1 2020-03-23 18:29:46.729947 2020-03-23 18:29:46.729947 \N 99.00 \N 0.00 0.00 2983 2408 1014 1.0 659.00 0.00 0.00 659.00 1 2020-03-24 01:39:49.593608 2020-03-24 01:39:49.593608 \N 659.00 \N 0.00 0.00 2984 2409 1008 1.0 999.00 0.00 0.00 999.00 1 2020-03-24 22:40:17.985166 2020-03-24 22:40:17.985166 \N 999.00 \N 0.00 0.00 2985 2409 1013 1.0 589.00 0.00 0.00 589.00 1 2020-03-24 22:40:18.021262 2020-03-24 22:40:18.021262 \N 589.00 \N 0.00 0.00 2986 2410 1016 1.0 519.00 0.00 0.00 519.00 1 2020-03-26 19:03:11.112626 2020-03-26 19:03:11.112626 \N 519.00 \N 0.00 0.00 2987 2411 680 1.0 499.00 0.00 0.00 499.00 1 2020-03-28 19:01:36.136645 2020-03-28 19:01:36.136645 \N 499.00 \N 0.00 0.00 2988 2411 369 1.0 42.24 6.76 0.00 49.00 1 2020-03-28 19:01:36.174012 2020-03-28 19:01:36.174012 \N 49.00 \N 0.00 0.00 2989 2411 499 1.0 699.00 0.00 0.00 699.00 1 2020-03-28 19:01:36.197048 2020-03-28 19:01:36.197048 \N 699.00 \N 0.00 0.00 2990 2412 369 1.0 42.24 6.76 0.00 49.00 1 2020-03-31 19:14:45.329152 2020-03-31 19:14:45.329152 \N 49.00 \N 0.00 0.00 2991 2413 1118 2.0 3198.00 0.00 0.00 3198.00 0 2020-04-05 03:02:04.565388 2020-04-05 03:06:40.995304 \N 1599.00 \N 0.00 0.00 2992 2414 1118 2.0 3198.00 0.00 0.00 3198.00 0 2020-04-05 03:07:35.835107 2020-04-05 03:10:53.628446 \N 1599.00 \N 0.00 0.00 2993 2415 1120 1.0 2899.00 0.00 0.00 2899.00 1 2020-04-30 22:34:21.96756 2020-04-30 22:34:21.96756 \N 2899.00 \N 0.00 0.00 2994 2416 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-04-30 23:04:29.359625 2020-04-30 23:04:29.359625 \N 1599.00 \N 0.00 0.00 2995 2417 445 1.0 1999.00 0.00 0.00 1999.00 1 2020-04-30 23:11:20.512416 2020-04-30 23:11:20.512416 \N 1999.00 \N 0.00 0.00 2996 2417 709 1.0 1699.00 0.00 0.00 1699.00 1 2020-04-30 23:11:20.548427 2020-04-30 23:11:20.548427 \N 1699.00 \N 0.00 0.00 2998 2419 1013 1.0 589.00 0.00 0.00 589.00 1 2020-05-03 23:33:44.779124 2020-05-03 23:33:44.779124 \N 589.00 \N 0.00 0.00 2997 2418 1118 1.0 1360.00 0.00 239.00 1360.00 0 2020-05-03 23:29:34.066312 2020-05-03 23:35:19.571061 \N 1599.00 \N 239.00 0.00 3000 2421 1118 2.0 3198.00 0.00 0.00 3198.00 0 2020-05-03 23:43:21.324829 2020-05-03 23:44:42.260183 \N 1599.00 \N 0.00 0.00 3001 2422 1118 2.0 3198.00 0.00 0.00 3198.00 0 2020-05-03 23:45:06.853708 2020-05-03 23:46:19.005819 \N 1599.00 \N 0.00 0.00 3002 2423 1118 2.0 3198.00 0.00 0.00 3198.00 1 2020-05-03 23:46:39.132879 2020-05-03 23:46:39.132879 \N 1599.00 \N 0.00 0.00 3003 2424 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-05-03 23:51:17.617019 2020-05-03 23:51:17.617019 \N 1599.00 \N 0.00 0.00 3004 2424 1011 1.0 589.00 0.00 0.00 589.00 1 2020-05-03 23:51:17.643624 2020-05-03 23:51:17.643624 \N 589.00 \N 0.00 0.00 3005 2425 1121 1.0 1699.00 0.00 0.00 1699.00 1 2020-05-03 23:56:18.278476 2020-05-03 23:56:18.278476 \N 1699.00 \N 0.00 0.00 3006 2426 463 1.0 760.00 0.00 139.00 760.00 1 2020-05-04 00:03:05.343779 2020-05-04 00:03:05.343779 \N 899.00 \N 139.00 0.00 3007 2427 1091 1.0 389.00 0.00 0.00 389.00 1 2020-05-04 00:09:36.78577 2020-05-04 00:09:36.78577 \N 389.00 \N 0.00 0.00 3008 2427 1011 1.0 589.00 0.00 0.00 589.00 1 2020-05-04 00:09:36.839731 2020-05-04 00:09:36.839731 \N 589.00 \N 0.00 0.00 3009 2428 1000 1.0 659.00 0.00 70.00 659.00 1 2020-05-04 00:21:02.972751 2020-05-04 00:21:02.972751 \N 729.00 \N 70.00 0.00 2999 2420 1118 1.0 1360.00 0.00 239.00 1360.00 0 2020-05-03 23:35:46.965705 2020-05-04 00:24:15.305199 \N 1599.00 \N 239.00 0.00 3010 2429 1122 1.0 1360.00 0.00 239.00 1360.00 1 2020-05-04 00:24:49.475532 2020-05-04 00:24:49.475532 \N 1599.00 \N 239.00 0.00 3013 2430 1122 1.0 1599.00 0.00 0.00 1599.00 0 2020-05-04 00:29:41.306788 2020-05-04 00:29:47.148568 \N 1599.00 \N 0.00 0.00 3012 2430 1123 1.0 1499.00 0.00 0.00 1499.00 0 2020-05-04 00:29:41.271001 2020-05-04 00:29:47.176627 \N 1499.00 \N 0.00 0.00 3011 2430 1124 1.0 1499.00 0.00 0.00 1499.00 0 2020-05-04 00:29:41.231723 2020-05-04 00:29:47.199749 \N 1499.00 \N 0.00 0.00 3014 2431 1124 1.0 1499.00 0.00 0.00 1499.00 1 2020-05-04 00:30:24.149953 2020-05-04 00:30:24.149953 \N 1499.00 \N 0.00 0.00 3015 2431 1123 1.0 1499.00 0.00 0.00 1499.00 1 2020-05-04 00:30:24.177531 2020-05-04 00:30:24.177531 \N 1499.00 \N 0.00 0.00 3016 2431 1122 1.0 1599.00 0.00 0.00 1599.00 1 2020-05-04 00:30:24.229158 2020-05-04 00:30:24.229158 \N 1599.00 \N 0.00 0.00 3017 2432 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-05-04 00:35:29.689183 2020-05-04 00:35:29.689183 \N 1599.00 \N 0.00 0.00 3018 2433 1125 1.0 1999.00 0.00 0.00 1999.00 1 2020-05-04 00:40:41.986273 2020-05-04 00:40:41.986273 \N 1999.00 \N 0.00 0.00 3019 2434 1127 1.0 1799.00 0.00 0.00 1799.00 1 2020-05-04 00:51:24.413244 2020-05-04 00:51:24.413244 \N 1799.00 \N 0.00 0.00 3020 2435 717 1.0 2099.00 0.00 0.00 2099.00 1 2020-05-04 05:33:02.692308 2020-05-04 05:33:02.692308 \N 2099.00 \N 0.00 0.00 3021 2436 258 1.0 1033.62 165.38 0.00 1199.00 1 2020-05-13 23:50:55.544288 2020-05-13 23:50:55.544288 \N 1199.00 \N 0.00 0.00 3022 2437 1118 1.0 1359.15 0.00 239.85 1359.15 1 2020-05-14 20:12:01.863399 2020-05-14 20:12:01.863399 \N 1599.00 \N 0.00 15.00 3023 2438 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-05-14 20:15:00.046289 2020-05-14 20:15:00.046289 \N 1499.00 \N 0.00 0.00 3024 2439 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-05-14 20:15:57.108672 2020-05-14 20:15:57.108672 \N 1599.00 \N 0.00 0.00 3025 2439 717 1.0 2099.00 0.00 0.00 2099.00 1 2020-05-14 20:15:57.132771 2020-05-14 20:15:57.132771 \N 2099.00 \N 0.00 0.00 3026 2440 966 1.0 1599.00 0.00 0.00 1599.00 1 2020-05-14 20:18:14.347074 2020-05-14 20:18:14.347074 \N 1599.00 \N 0.00 0.00 3027 2441 1118 1.0 1439.10 0.00 159.90 1439.10 1 2020-05-14 20:41:20.555764 2020-05-14 20:41:20.555764 \N 1599.00 \N 0.00 10.00 3028 2442 1118 1.0 1359.15 0.00 239.85 1359.15 1 2020-05-14 20:42:07.439693 2020-05-14 20:42:07.439693 \N 1599.00 \N 0.00 15.00 3029 2443 717 1.0 2099.00 0.00 0.00 2099.00 1 2020-05-14 20:44:01.359015 2020-05-14 20:44:01.359015 \N 2099.00 \N 0.00 0.00 3031 2445 1128 1.0 2199.00 0.00 0.00 2199.00 1 2020-05-14 20:53:47.895521 2020-05-14 20:53:47.895521 \N 2199.00 \N 0.00 0.00 3032 2445 1129 1.0 1399.00 0.00 0.00 1399.00 1 2020-05-14 20:53:47.920861 2020-05-14 20:53:47.920861 \N 1399.00 \N 0.00 0.00 3033 2446 999 1.0 849.00 0.00 0.00 849.00 1 2020-05-14 21:16:46.794332 2020-05-14 21:16:46.794332 \N 849.00 \N 0.00 0.00 3034 2447 1024 1.0 899.00 0.00 0.00 899.00 1 2020-05-14 21:18:46.353097 2020-05-14 21:18:46.353097 \N 899.00 \N 0.00 0.00 3035 2448 180 1.0 775.00 124.00 0.00 899.00 1 2020-05-14 21:19:30.981896 2020-05-14 21:19:30.981896 \N 899.00 \N 0.00 0.00 3036 2449 1013 1.0 589.00 0.00 0.00 589.00 1 2020-05-14 21:24:24.336414 2020-05-14 21:24:24.336414 \N 589.00 \N 0.00 0.00 3037 2450 1013 1.0 530.10 0.00 58.90 530.10 1 2020-05-14 21:24:50.245569 2020-05-14 21:24:50.245569 \N 589.00 \N 0.00 10.00 3038 2451 1094 1.0 469.00 0.00 0.00 469.00 1 2020-05-14 21:26:34.115436 2020-05-14 21:26:34.115436 \N 469.00 \N 0.00 0.00 3039 2452 1126 1.0 1274.15 0.00 224.85 1274.15 1 2020-05-15 22:52:21.519777 2020-05-15 22:52:21.519777 \N 1499.00 \N 0.00 15.00 3040 2453 1126 2.0 2998.00 0.00 0.00 2998.00 1 2020-05-15 22:53:04.036445 2020-05-15 22:53:04.036445 \N 1499.00 \N 0.00 0.00 3041 2454 1018 1.0 599.00 0.00 0.00 599.00 1 2020-05-20 01:11:33.375438 2020-05-20 01:11:33.375438 \N 599.00 \N 0.00 0.00 3042 2455 1018 1.0 599.00 0.00 0.00 599.00 1 2020-05-20 01:12:57.343005 2020-05-20 01:12:57.343005 \N 599.00 \N 0.00 0.00 3043 2456 800 1.0 469.00 0.00 0.00 469.00 1 2020-05-20 01:14:12.316263 2020-05-20 01:14:12.316263 \N 469.00 \N 0.00 0.00 3044 2457 993 1.0 529.00 0.00 0.00 529.00 1 2020-05-20 01:15:23.453032 2020-05-20 01:15:23.453032 \N 529.00 \N 0.00 0.00 3045 2458 999 1.0 849.00 0.00 0.00 849.00 1 2020-05-20 01:19:08.579401 2020-05-20 01:19:08.579401 \N 849.00 \N 0.00 0.00 3046 2459 689 1.0 1599.00 0.00 0.00 1599.00 1 2020-05-20 01:22:34.306247 2020-05-20 01:22:34.306247 \N 1599.00 \N 0.00 0.00 3047 2460 658 1.0 1999.00 0.00 0.00 1999.00 1 2020-06-10 23:04:19.810545 2020-06-10 23:04:19.810545 \N 1999.00 \N 0.00 0.00 3048 2460 530 1.0 1499.00 0.00 0.00 1499.00 1 2020-06-10 23:04:19.85075 2020-06-10 23:04:19.85075 \N 1499.00 \N 0.00 0.00 3049 2460 541 1.0 1899.00 0.00 0.00 1899.00 1 2020-06-10 23:04:19.877581 2020-06-10 23:04:19.877581 \N 1899.00 \N 0.00 0.00 3050 2461 967 1.0 1599.00 0.00 0.00 1599.00 1 2020-06-10 23:26:05.154681 2020-06-10 23:26:05.154681 \N 1599.00 \N 0.00 0.00 3051 2462 571 1.0 799.00 0.00 0.00 799.00 1 2020-06-10 23:28:41.01065 2020-06-10 23:28:41.01065 \N 799.00 \N 0.00 0.00 3052 2462 1013 1.0 589.00 0.00 0.00 589.00 1 2020-06-10 23:28:41.041937 2020-06-10 23:28:41.041937 \N 589.00 \N 0.00 0.00 3030 2444 717 1.0 2099.00 0.00 0.00 2099.00 0 2020-05-14 20:50:31.122048 2020-06-11 00:59:27.449221 \N 2099.00 \N 0.00 0.00 3053 2463 1025 1.0 899.00 0.00 0.00 899.00 1 2020-06-11 03:02:36.850406 2020-06-11 03:02:36.850406 \N 899.00 \N 0.00 0.00 3054 2464 270 1.0 827.59 132.41 239.00 960.00 1 2020-06-20 01:29:17.644798 2020-06-20 01:29:17.644798 \N 1199.00 \N 239.00 0.00 3055 2465 722 1.0 1899.00 0.00 0.00 1899.00 0 2020-06-24 00:12:07.319458 2020-06-24 00:13:38.037909 \N 1899.00 \N 0.00 0.00 3056 2466 722 1.0 1899.00 0.00 0.00 1899.00 0 2020-06-24 00:14:03.116322 2020-06-24 00:15:33.714882 \N 1899.00 \N 0.00 0.00 3057 2467 722 1.0 1899.00 0.00 0.00 1899.00 1 2020-06-24 00:15:54.36758 2020-06-24 00:15:54.36758 \N 1899.00 \N 0.00 0.00 3058 2468 979 1.0 469.00 0.00 0.00 469.00 1 2020-06-24 20:29:23.942555 2020-06-24 20:29:23.942555 \N 469.00 \N 0.00 0.00 3059 2468 1002 1.0 599.00 0.00 0.00 599.00 1 2020-06-24 20:29:23.997002 2020-06-24 20:29:23.997002 \N 599.00 \N 0.00 0.00 3060 2468 1025 1.0 899.00 0.00 0.00 899.00 1 2020-06-24 20:29:24.034254 2020-06-24 20:29:24.034254 \N 899.00 \N 0.00 0.00 3061 2469 1012 1.0 589.00 0.00 0.00 589.00 1 2020-06-24 20:31:06.225125 2020-06-24 20:31:06.225125 \N 589.00 \N 0.00 0.00 3062 2470 984 1.0 479.00 0.00 0.00 479.00 1 2020-06-24 20:33:07.607431 2020-06-24 20:33:07.607431 \N 479.00 \N 0.00 0.00 3063 2471 992 1.0 699.00 0.00 0.00 699.00 1 2020-06-24 20:56:31.165205 2020-06-24 20:56:31.165205 \N 699.00 \N 0.00 0.00 3064 2472 601 1.0 669.00 0.00 0.00 669.00 1 2020-06-24 21:41:50.938878 2020-06-24 21:41:50.938878 \N 669.00 \N 0.00 0.00 3065 2472 1024 1.0 899.00 0.00 0.00 899.00 1 2020-06-24 21:41:50.967906 2020-06-24 21:41:50.967906 \N 899.00 \N 0.00 0.00 3066 2473 864 1.0 800.00 0.00 399.00 800.00 1 2020-06-25 18:40:12.348604 2020-06-25 18:40:12.348604 \N 1199.00 \N 399.00 0.00 3068 2474 571 1.0 799.00 0.00 0.00 799.00 0 2020-06-25 18:56:00.117772 2020-06-25 18:56:05.438884 \N 799.00 \N 0.00 0.00 3067 2474 181 1.0 602.59 96.41 0.00 699.00 0 2020-06-25 18:56:00.080365 2020-06-25 18:56:05.470674 \N 699.00 \N 0.00 0.00 3069 2475 119 1.0 171.55 27.45 200.00 199.00 1 2020-06-25 20:02:46.052445 2020-06-25 20:02:46.052445 \N 399.00 \N 200.00 0.00 3070 2475 88 1.0 214.66 34.35 250.00 249.01 1 2020-06-25 20:02:46.08216 2020-06-25 20:02:46.08216 \N 499.00 \N 250.00 0.00 3071 2475 229 1.0 913.79 146.21 0.00 1060.00 1 2020-06-25 20:02:46.107522 2020-06-25 20:02:46.107522 \N 1060.00 \N 0.00 0.00 3072 2475 320 1.0 172.41 27.59 269.00 200.00 1 2020-06-25 20:02:46.133438 2020-06-25 20:02:46.133438 \N 469.00 \N 269.00 0.00 3073 2475 89 1.0 257.76 41.24 300.00 299.00 1 2020-06-25 20:02:46.175411 2020-06-25 20:02:46.175411 \N 599.00 \N 300.00 0.00 3074 2476 618 1.0 569.00 0.00 0.00 569.00 1 2020-06-25 20:04:07.242139 2020-06-25 20:04:07.242139 \N 569.00 \N 0.00 0.00 3075 2476 1019 2.0 1398.00 0.00 0.00 1398.00 1 2020-06-25 20:04:07.26743 2020-06-25 20:04:07.26743 \N 699.00 \N 0.00 0.00 3076 2477 977 1.0 519.00 0.00 0.00 519.00 1 2020-06-25 21:00:47.138088 2020-06-25 21:00:47.138088 \N 519.00 \N 0.00 0.00 3077 2478 699 1.0 1399.00 0.00 0.00 1399.00 1 2020-06-25 21:01:41.473804 2020-06-25 21:01:41.473804 \N 1399.00 \N 0.00 0.00 3078 2478 1075 1.0 159.00 0.00 0.00 159.00 1 2020-06-25 21:01:41.498889 2020-06-25 21:01:41.498889 \N 159.00 \N 0.00 0.00 3079 2479 600 1.0 449.00 0.00 100.00 449.00 1 2020-06-25 21:22:23.498052 2020-06-25 21:22:23.498052 \N 549.00 \N 100.00 0.00 3080 2480 264 1.0 1292.24 206.76 0.00 1499.00 1 2020-06-25 21:35:27.196099 2020-06-25 21:35:27.196099 \N 1499.00 \N 0.00 0.00 3081 2480 484 1.0 999.00 0.00 0.00 999.00 1 2020-06-25 21:35:27.225538 2020-06-25 21:35:27.225538 \N 999.00 \N 0.00 0.00 3082 2481 539 1.0 1699.00 0.00 0.00 1699.00 0 2020-06-26 18:54:37.48951 2020-06-26 18:54:47.062466 \N 1699.00 \N 0.00 0.00 3083 2482 539 1.0 1699.00 0.00 0.00 1699.00 1 2020-06-26 18:55:14.609259 2020-06-26 18:55:14.609259 \N 1699.00 \N 0.00 0.00 3086 2483 495 1.0 0.00 0.00 1699.00 0.00 0 2020-06-26 18:59:05.502521 2020-06-26 18:59:10.366843 \N 1699.00 \N 0.00 100.00 3085 2483 449 1.0 849.50 0.00 849.50 849.50 0 2020-06-26 18:59:05.474017 2020-06-26 18:59:10.388557 \N 1699.00 \N 0.00 50.00 3084 2483 480 1.0 799.50 0.00 799.50 799.50 0 2020-06-26 18:59:05.44478 2020-06-26 18:59:10.411812 \N 1599.00 \N 0.00 50.00 3087 2484 449 1.0 849.50 0.00 849.50 849.50 1 2020-06-26 19:00:37.34948 2020-06-26 19:00:37.34948 \N 1699.00 \N 0.00 50.00 3088 2484 480 1.0 799.50 0.00 799.50 799.50 1 2020-06-26 19:00:37.376404 2020-06-26 19:00:37.376404 \N 1599.00 \N 0.00 50.00 3089 2484 495 1.0 0.00 0.00 1699.00 0.00 1 2020-06-26 19:00:37.401153 2020-06-26 19:00:37.401153 \N 1699.00 \N 0.00 100.00 3090 2485 354 1.0 775.43 124.07 899.50 899.50 1 2020-06-26 19:08:16.159448 2020-06-26 19:08:16.159448 \N 1799.00 \N 0.00 50.00 3091 2485 697 1.0 799.00 0.00 0.00 799.00 1 2020-06-26 19:08:16.186626 2020-06-26 19:08:16.186626 \N 799.00 \N 0.00 0.00 3092 2485 181 1.0 602.59 96.41 0.00 699.00 1 2020-06-26 19:08:16.211061 2020-06-26 19:08:16.211061 \N 699.00 \N 0.00 0.00 3093 2485 422 1.0 602.59 96.41 0.00 699.00 1 2020-06-26 19:08:16.237628 2020-06-26 19:08:16.237628 \N 699.00 \N 0.00 0.00 3094 2485 677 1.0 699.00 0.00 0.00 699.00 1 2020-06-26 19:08:16.265167 2020-06-26 19:08:16.265167 \N 699.00 \N 0.00 0.00 3095 2485 1015 1.0 549.00 0.00 0.00 549.00 1 2020-06-26 19:08:16.291022 2020-06-26 19:08:16.291022 \N 549.00 \N 0.00 0.00 3096 2485 142 1.0 590.52 94.48 0.00 685.00 1 2020-06-26 19:08:16.316389 2020-06-26 19:08:16.316389 \N 685.00 \N 0.00 0.00 3097 2485 297 1.0 516.38 82.62 0.00 599.00 1 2020-06-26 19:08:16.339957 2020-06-26 19:08:16.339957 \N 599.00 \N 0.00 0.00 3098 2485 301 1.0 516.38 82.62 0.00 599.00 1 2020-06-26 19:08:16.363579 2020-06-26 19:08:16.363579 \N 599.00 \N 0.00 0.00 3099 2485 512 1.0 869.00 0.00 0.00 869.00 1 2020-06-26 19:08:16.386972 2020-06-26 19:08:16.386972 \N 869.00 \N 0.00 0.00 3100 2486 683 1.0 569.00 0.00 0.00 569.00 1 2020-06-26 19:19:47.043039 2020-06-26 19:19:47.043039 \N 569.00 \N 0.00 0.00 3101 2486 284 1.0 430.17 68.83 0.00 499.00 1 2020-06-26 19:19:47.0766 2020-06-26 19:19:47.0766 \N 499.00 \N 0.00 0.00 3102 2486 511 1.0 869.00 0.00 0.00 869.00 1 2020-06-26 19:19:47.102597 2020-06-26 19:19:47.102597 \N 869.00 \N 0.00 0.00 3103 2486 873 1.0 729.00 0.00 0.00 729.00 1 2020-06-26 19:19:47.128894 2020-06-26 19:19:47.128894 \N 729.00 \N 0.00 0.00 3104 2486 213 1.0 421.81 67.49 209.70 489.30 1 2020-06-26 19:19:47.158134 2020-06-26 19:19:47.158134 \N 699.00 \N 0.00 30.00 3105 2486 754 1.0 660.00 0.00 165.00 660.00 1 2020-06-26 19:19:47.182883 2020-06-26 19:19:47.182883 \N 825.00 \N 0.00 20.00 3106 2486 419 1.0 602.59 96.41 0.00 699.00 1 2020-06-26 19:19:47.221278 2020-06-26 19:19:47.221278 \N 699.00 \N 0.00 0.00 3107 2486 520 1.0 849.00 0.00 0.00 849.00 1 2020-06-26 19:19:47.249442 2020-06-26 19:19:47.249442 \N 849.00 \N 0.00 0.00 3108 2487 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-06-26 20:58:34.662541 2020-06-26 20:58:34.662541 \N 1599.00 \N 0.00 0.00 3109 2488 565 1.0 689.00 0.00 0.00 689.00 1 2020-07-01 19:34:29.42645 2020-07-01 19:34:29.42645 \N 689.00 \N 0.00 0.00 3110 2489 298 1.0 585.34 93.65 0.00 678.99 1 2020-07-01 19:35:33.373187 2020-07-01 19:35:33.373187 \N 679.00 \N 0.00 0.00 3111 2489 789 1.0 549.00 0.00 0.00 549.00 1 2020-07-01 19:35:33.400967 2020-07-01 19:35:33.400967 \N 549.00 \N 0.00 0.00 3113 2490 528 1.0 699.00 0.00 0.00 699.00 0 2020-07-01 23:03:09.044052 2020-07-01 23:03:36.321035 \N 699.00 \N 0.00 0.00 3112 2490 499 1.0 699.00 0.00 0.00 699.00 0 2020-07-01 23:03:08.99948 2020-07-01 23:03:36.348525 \N 699.00 \N 0.00 0.00 3114 2491 499 1.0 699.00 0.00 0.00 699.00 1 2020-07-01 23:04:17.025851 2020-07-01 23:04:17.025851 \N 699.00 \N 0.00 0.00 3115 2491 528 1.0 699.00 0.00 0.00 699.00 1 2020-07-01 23:04:17.052148 2020-07-01 23:04:17.052148 \N 699.00 \N 0.00 0.00 3116 2492 618 1.0 569.00 0.00 0.00 569.00 1 2020-07-02 18:46:32.766804 2020-07-02 18:46:32.766804 \N 569.00 \N 0.00 0.00 3117 2493 977 1.0 519.00 0.00 0.00 519.00 1 2020-07-02 19:04:16.855877 2020-07-02 19:04:16.855877 \N 519.00 \N 0.00 0.00 3118 2494 1011 1.0 589.00 0.00 0.00 589.00 1 2020-07-02 19:07:00.607903 2020-07-02 19:07:00.607903 \N 589.00 \N 0.00 0.00 3119 2494 1012 1.0 589.00 0.00 0.00 589.00 1 2020-07-02 19:07:00.659989 2020-07-02 19:07:00.659989 \N 589.00 \N 0.00 0.00 3120 2495 874 1.0 759.00 0.00 0.00 759.00 1 2020-07-02 20:01:45.492602 2020-07-02 20:01:45.492602 \N 759.00 \N 0.00 0.00 3121 2496 883 1.0 1049.00 0.00 0.00 1049.00 1 2020-07-02 20:56:13.294524 2020-07-02 20:56:13.294524 \N 1049.00 \N 0.00 0.00 3122 2496 1020 1.0 729.00 0.00 0.00 729.00 1 2020-07-02 20:56:13.336533 2020-07-02 20:56:13.336533 \N 729.00 \N 0.00 0.00 3123 2497 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-02 21:46:16.651473 2020-07-02 21:46:16.651473 \N 1599.00 \N 0.00 0.00 3124 2497 834 1.0 169.00 0.00 0.00 169.00 1 2020-07-02 21:46:16.690232 2020-07-02 21:46:16.690232 \N 169.00 \N 0.00 0.00 3125 2498 506 1.0 1395.00 0.00 0.00 1395.00 1 2020-07-02 21:54:19.057354 2020-07-02 21:54:19.057354 \N 1395.00 \N 0.00 0.00 3126 2499 673 1.0 450.00 0.00 110.00 450.00 0 2020-07-03 00:36:56.285867 2020-07-03 00:37:28.839686 \N 560.00 \N 110.00 0.00 3127 2500 586 1.0 549.00 0.00 0.00 549.00 1 2020-07-03 00:37:55.067364 2020-07-03 00:37:55.067364 \N 549.00 \N 0.00 0.00 3128 2501 1122 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-03 21:18:38.355979 2020-07-03 21:18:38.355979 \N 1599.00 \N 0.00 0.00 3129 2501 1096 1.0 69.00 0.00 0.00 69.00 1 2020-07-03 21:18:38.397947 2020-07-03 21:18:38.397947 \N 69.00 \N 0.00 0.00 3130 2502 36 1.0 387.07 61.93 450.00 449.00 1 2020-07-03 21:58:03.045019 2020-07-03 21:58:03.045019 \N 899.00 \N 450.00 0.00 3131 2503 527 1.0 749.00 0.00 0.00 749.00 1 2020-07-04 00:40:03.714199 2020-07-04 00:40:03.714199 \N 749.00 \N 0.00 0.00 3132 2503 1017 1.0 699.00 0.00 0.00 699.00 1 2020-07-04 00:40:03.744311 2020-07-04 00:40:03.744311 \N 699.00 \N 0.00 0.00 3133 2503 557 1.0 549.00 0.00 0.00 549.00 1 2020-07-04 00:40:03.769727 2020-07-04 00:40:03.769727 \N 549.00 \N 0.00 0.00 3134 2503 15 1.0 688.79 110.21 0.00 799.00 1 2020-07-04 00:40:03.794738 2020-07-04 00:40:03.794738 \N 799.00 \N 0.00 0.00 3135 2503 669 1.0 419.00 0.00 0.00 419.00 1 2020-07-04 00:40:03.823248 2020-07-04 00:40:03.823248 \N 419.00 \N 0.00 0.00 3136 2503 46 1.0 862.07 137.93 799.00 1000.00 1 2020-07-04 00:40:03.852417 2020-07-04 00:40:03.852417 \N 1799.00 \N 799.00 0.00 3137 2504 275 1.0 369.83 59.17 0.00 429.00 1 2020-07-04 01:07:01.330741 2020-07-04 01:07:01.330741 \N 429.00 \N 0.00 0.00 3138 2505 1033 1.0 129.00 0.00 0.00 129.00 1 2020-07-04 18:32:10.777797 2020-07-04 18:32:10.777797 \N 129.00 \N 0.00 0.00 3139 2506 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-04 21:28:45.905216 2020-07-04 21:28:45.905216 \N 1499.00 \N 0.00 0.00 3140 2507 1098 1.0 289.00 0.00 0.00 289.00 1 2020-07-04 22:33:10.704976 2020-07-04 22:33:10.704976 \N 289.00 \N 0.00 0.00 3141 2508 525 1.0 879.20 0.00 219.80 879.20 1 2020-07-04 23:06:34.707473 2020-07-04 23:06:34.707473 \N 1099.00 \N 0.00 20.00 3142 2509 1147 2.0 998.00 0.00 0.00 998.00 1 2020-07-04 23:24:42.204605 2020-07-04 23:24:42.204605 \N 499.00 \N 0.00 0.00 3143 2510 1150 1.0 1899.00 0.00 0.00 1899.00 1 2020-07-04 23:40:12.335332 2020-07-04 23:40:12.335332 \N 1899.00 \N 0.00 0.00 3144 2511 1047 1.0 139.00 0.00 0.00 139.00 1 2020-07-04 23:58:48.94123 2020-07-04 23:58:48.94123 \N 139.00 \N 0.00 0.00 3145 2512 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-06 01:36:59.600847 2020-07-06 01:36:59.600847 \N 1499.00 \N 0.00 0.00 3146 2512 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-06 01:36:59.641168 2020-07-06 01:36:59.641168 \N 1599.00 \N 0.00 0.00 3147 2513 912 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-06 01:37:57.868857 2020-07-06 01:37:57.868857 \N 1599.00 \N 0.00 0.00 3148 2514 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-06 01:40:17.145864 2020-07-06 01:40:17.145864 \N 1599.00 \N 0.00 0.00 3149 2515 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-06 01:41:32.440863 2020-07-06 01:41:32.440863 \N 1599.00 \N 0.00 0.00 3150 2516 269 2.0 862.07 137.93 798.00 1000.00 1 2020-07-06 01:46:49.528998 2020-07-06 01:46:49.528998 \N 899.00 \N 798.00 0.00 3151 2517 259 1.0 603.45 96.55 399.00 700.00 1 2020-07-06 01:47:46.695414 2020-07-06 01:47:46.695414 \N 1099.00 \N 399.00 0.00 3152 2518 668 1.0 299.00 0.00 0.00 299.00 1 2020-07-06 19:13:05.986674 2020-07-06 19:13:05.986674 \N 299.00 \N 0.00 0.00 3153 2518 529 1.0 799.00 0.00 0.00 799.00 1 2020-07-06 19:13:06.029014 2020-07-06 19:13:06.029014 \N 799.00 \N 0.00 0.00 3154 2518 1001 1.0 799.00 0.00 0.00 799.00 1 2020-07-06 19:13:06.056211 2020-07-06 19:13:06.056211 \N 799.00 \N 0.00 0.00 3155 2518 717 1.0 2099.00 0.00 0.00 2099.00 1 2020-07-06 19:13:06.085968 2020-07-06 19:13:06.085968 \N 2099.00 \N 0.00 0.00 3156 2519 874 1.0 759.00 0.00 0.00 759.00 1 2020-07-06 20:03:45.570932 2020-07-06 20:03:45.570932 \N 759.00 \N 0.00 0.00 3157 2520 1029 1.0 69.00 0.00 0.00 69.00 1 2020-07-06 21:29:51.679759 2020-07-06 21:29:51.679759 \N 69.00 \N 0.00 0.00 3158 2520 839 1.0 199.00 0.00 0.00 199.00 1 2020-07-06 21:29:51.712411 2020-07-06 21:29:51.712411 \N 199.00 \N 0.00 0.00 3159 2521 657 1.0 1799.00 0.00 0.00 1799.00 1 2020-07-06 21:45:51.304657 2020-07-06 21:45:51.304657 \N 1799.00 \N 0.00 0.00 3160 2521 1131 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-06 21:45:51.341921 2020-07-06 21:45:51.341921 \N 1599.00 \N 0.00 0.00 3161 2522 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-06 22:53:47.633625 2020-07-06 22:53:47.633625 \N 1599.00 \N 0.00 0.00 3162 2523 1118 1.0 1559.00 0.00 40.00 1559.00 1 2020-07-06 23:37:20.564297 2020-07-06 23:37:20.564297 \N 1599.00 \N 40.00 0.00 3163 2524 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-07 00:02:33.92378 2020-07-07 00:02:33.92378 \N 1599.00 \N 0.00 0.00 3164 2525 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-07 00:08:53.022691 2020-07-07 00:08:53.022691 \N 1499.00 \N 0.00 0.00 3165 2526 1118 1.0 1599.00 0.00 0.00 1599.00 0 2020-07-07 00:24:56.155917 2020-07-07 00:25:04.437772 \N 1599.00 \N 0.00 0.00 3166 2527 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-07 00:25:17.05384 2020-07-07 00:25:17.05384 \N 1599.00 \N 0.00 0.00 3167 2528 1151 1.0 849.00 0.00 0.00 849.00 1 2020-07-07 00:52:46.010174 2020-07-07 00:52:46.010174 \N 849.00 \N 0.00 0.00 3168 2528 864 1.0 1199.00 0.00 0.00 1199.00 1 2020-07-07 00:52:46.037533 2020-07-07 00:52:46.037533 \N 1199.00 \N 0.00 0.00 3169 2529 978 1.0 569.00 0.00 0.00 569.00 1 2020-07-07 19:40:43.10619 2020-07-07 19:40:43.10619 \N 569.00 \N 0.00 0.00 3170 2530 9 1.0 512.93 82.07 104.00 595.00 1 2020-07-07 21:13:52.757189 2020-07-07 21:13:52.757189 \N 699.00 \N 104.00 0.00 3171 2531 999 1.0 849.00 0.00 0.00 849.00 1 2020-07-07 22:52:25.784547 2020-07-07 22:52:25.784547 \N 849.00 \N 0.00 0.00 3172 2532 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-07 23:10:36.339255 2020-07-07 23:10:36.339255 \N 1499.00 \N 0.00 0.00 3173 2533 152 1.0 576.72 92.28 0.00 669.00 1 2020-07-07 23:32:18.629127 2020-07-07 23:32:18.629127 \N 669.00 \N 0.00 0.00 3174 2533 835 1.0 229.00 0.00 0.00 229.00 1 2020-07-07 23:32:18.657001 2020-07-07 23:32:18.657001 \N 229.00 \N 0.00 0.00 3175 2533 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-07 23:32:18.681703 2020-07-07 23:32:18.681703 \N 1499.00 \N 0.00 0.00 3176 2534 1027 1.0 365.00 0.00 0.00 365.00 1 2020-07-07 23:38:20.378396 2020-07-07 23:38:20.378396 \N 365.00 \N 0.00 0.00 3177 2535 19 1.0 516.38 82.62 0.00 599.00 1 2020-07-08 00:13:35.754095 2020-07-08 00:13:35.754095 \N 599.00 \N 0.00 0.00 3178 2536 270 1.0 826.90 132.30 239.80 959.20 1 2020-07-08 19:35:56.143909 2020-07-08 19:35:56.143909 \N 1199.00 \N 0.00 20.00 3179 2536 271 1.0 896.55 143.45 259.00 1040.00 1 2020-07-08 19:35:56.174266 2020-07-08 19:35:56.174266 \N 1299.00 \N 259.00 0.00 3180 2537 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-08 19:37:13.30436 2020-07-08 19:37:13.30436 \N 1499.00 \N 0.00 0.00 3181 2538 540 1.0 700.00 0.00 899.00 700.00 0 2020-07-08 20:23:21.984019 2020-07-08 20:23:39.868988 \N 1599.00 \N 899.00 0.00 3183 2540 999 1.0 849.00 0.00 0.00 849.00 1 2020-07-08 20:29:47.292982 2020-07-08 20:29:47.292982 \N 849.00 \N 0.00 0.00 3184 2541 1006 1.0 699.00 0.00 0.00 699.00 1 2020-07-08 22:36:19.874329 2020-07-08 22:36:19.874329 \N 699.00 \N 0.00 0.00 3185 2541 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-08 22:36:19.904485 2020-07-08 22:36:19.904485 \N 1499.00 \N 0.00 0.00 3186 2542 966 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-08 23:14:22.253063 2020-07-08 23:14:22.253063 \N 1599.00 \N 0.00 0.00 3187 2542 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-08 23:14:22.282396 2020-07-08 23:14:22.282396 \N 1499.00 \N 0.00 0.00 3188 2543 1118 1.0 1599.00 0.00 0.00 1599.00 0 2020-07-08 23:14:27.710066 2020-07-08 23:23:39.138896 \N 1599.00 \N 0.00 0.00 3189 2544 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-08 23:36:12.475769 2020-07-08 23:36:12.475769 \N 1599.00 \N 0.00 0.00 3190 2545 979 1.0 469.00 0.00 0.00 469.00 1 2020-07-09 17:37:46.174984 2020-07-09 17:37:46.174984 \N 469.00 \N 0.00 0.00 3191 2546 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-09 18:43:19.64477 2020-07-09 18:43:19.64477 \N 1599.00 \N 0.00 0.00 3192 2547 1121 1.0 1699.00 0.00 0.00 1699.00 1 2020-07-09 20:13:32.182865 2020-07-09 20:13:32.182865 \N 1699.00 \N 0.00 0.00 3193 2548 673 1.0 560.00 0.00 0.00 560.00 1 2020-07-09 20:46:44.113802 2020-07-09 20:46:44.113802 \N 560.00 \N 0.00 0.00 3194 2549 717 1.0 2099.00 0.00 0.00 2099.00 1 2020-07-09 21:26:10.537388 2020-07-09 21:26:10.537388 \N 2099.00 \N 0.00 0.00 3195 2550 1140 1.0 1899.00 0.00 0.00 1899.00 1 2020-07-09 21:29:48.253837 2020-07-09 21:29:48.253837 \N 1899.00 \N 0.00 0.00 3197 2552 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-10 00:29:13.895978 2020-07-10 00:29:13.895978 \N 1499.00 \N 0.00 0.00 3198 2553 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-10 00:29:56.861643 2020-07-10 00:29:56.861643 \N 1499.00 \N 0.00 0.00 3199 2554 1148 1.0 1399.00 0.00 0.00 1399.00 1 2020-07-10 19:32:41.775616 2020-07-10 19:32:41.775616 \N 1399.00 \N 0.00 0.00 3201 2555 713 1.0 799.00 0.00 0.00 799.00 0 2020-07-10 20:03:17.37845 2020-07-10 20:04:29.647685 \N 799.00 \N 0.00 0.00 3200 2555 1146 1.0 1999.00 0.00 0.00 1999.00 0 2020-07-10 20:03:17.342915 2020-07-10 20:04:29.682896 \N 1999.00 \N 0.00 0.00 3202 2556 713 1.0 799.00 0.00 0.00 799.00 1 2020-07-10 20:05:01.022657 2020-07-10 20:05:01.022657 \N 799.00 \N 0.00 0.00 3203 2556 1146 1.0 1999.00 0.00 0.00 1999.00 1 2020-07-10 20:05:01.051737 2020-07-10 20:05:01.051737 \N 1999.00 \N 0.00 0.00 3204 2557 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-11 22:24:33.481033 2020-07-11 22:24:33.481033 \N 1499.00 \N 0.00 0.00 3205 2558 476 1.0 85.34 13.65 0.00 98.99 1 2020-07-13 16:28:37.404552 2020-07-13 16:28:37.404552 \N 99.00 \N 0.00 0.00 3206 2559 1106 1.0 179.00 0.00 0.00 179.00 1 2020-07-13 19:44:11.714019 2020-07-13 19:44:11.714019 \N 179.00 \N 0.00 0.00 3207 2560 590 1.0 1000.00 0.00 99.00 1000.00 1 2020-07-13 19:48:51.169163 2020-07-13 19:48:51.169163 \N 1099.00 \N 99.00 0.00 3209 2562 432 1.0 301.72 48.28 299.00 350.00 1 2020-07-13 20:21:22.771382 2020-07-13 20:21:22.771382 \N 649.00 \N 299.00 0.00 3210 2563 1153 1.0 549.00 0.00 0.00 549.00 1 2020-07-13 21:26:13.26367 2020-07-13 21:26:13.26367 \N 549.00 \N 0.00 0.00 3211 2564 717 1.0 2099.00 0.00 0.00 2099.00 1 2020-07-13 22:09:29.780597 2020-07-13 22:09:29.780597 \N 2099.00 \N 0.00 0.00 3212 2565 388 1.0 1981.90 317.10 0.00 2299.00 0 2020-07-13 22:17:02.646038 2020-07-13 22:17:09.755401 \N 2299.00 \N 0.00 0.00 3213 2566 388 1.0 1981.90 317.10 0.00 2299.00 1 2020-07-13 22:17:30.524266 2020-07-13 22:17:30.524266 \N 2299.00 \N 0.00 0.00 3214 2567 995 1.0 1779.00 0.00 0.00 1779.00 1 2020-07-13 22:41:32.271298 2020-07-13 22:41:32.271298 \N 1779.00 \N 0.00 0.00 3215 2568 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-13 23:09:28.225749 2020-07-13 23:09:28.225749 \N 1599.00 \N 0.00 0.00 3216 2569 722 1.0 1899.00 0.00 0.00 1899.00 1 2020-07-13 23:28:52.630937 2020-07-13 23:28:52.630937 \N 1899.00 \N 0.00 0.00 3217 2569 1154 1.0 180.00 0.00 0.00 180.00 1 2020-07-13 23:28:52.664848 2020-07-13 23:28:52.664848 \N 180.00 \N 0.00 0.00 3218 2570 261 1.0 775.86 124.14 599.00 900.00 1 2020-07-14 00:08:18.366182 2020-07-14 00:08:18.366182 \N 1499.00 \N 599.00 0.00 3219 2571 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-14 00:13:08.621818 2020-07-14 00:13:08.621818 \N 1499.00 \N 0.00 0.00 3220 2572 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-14 19:43:06.543904 2020-07-14 19:43:06.543904 \N 1499.00 \N 0.00 0.00 3221 2573 1102 1.0 159.00 0.00 0.00 159.00 1 2020-07-15 19:30:14.387464 2020-07-15 19:30:14.387464 \N 159.00 \N 0.00 0.00 3222 2574 1122 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-15 20:45:45.333783 2020-07-15 20:45:45.333783 \N 1599.00 \N 0.00 0.00 3223 2574 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-15 20:45:45.359832 2020-07-15 20:45:45.359832 \N 1599.00 \N 0.00 0.00 3224 2575 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-15 23:24:33.556085 2020-07-15 23:24:33.556085 \N 1499.00 \N 0.00 0.00 3225 2576 1155 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-15 23:49:40.243175 2020-07-15 23:49:40.243175 \N 1499.00 \N 0.00 0.00 3226 2577 501 1.0 799.00 0.00 0.00 799.00 1 2020-07-16 18:59:03.543419 2020-07-16 18:59:03.543419 \N 799.00 \N 0.00 0.00 3227 2577 434 1.0 691.38 110.62 177.00 802.00 1 2020-07-16 18:59:03.574311 2020-07-16 18:59:03.574311 \N 979.00 \N 177.00 0.00 3230 2579 1156 1.0 799.00 0.00 0.00 799.00 1 2020-07-17 18:55:07.551726 2020-07-17 18:55:07.551726 \N 799.00 \N 0.00 0.00 3231 2580 670 1.0 639.00 0.00 0.00 639.00 1 2020-07-17 20:16:17.655389 2020-07-17 20:16:17.655389 \N 639.00 \N 0.00 0.00 3232 2581 369 4.0 168.97 27.04 0.00 196.01 1 2020-07-17 21:10:00.221236 2020-07-17 21:10:00.221236 \N 49.00 \N 0.00 0.00 3233 2582 1016 1.0 519.00 0.00 0.00 519.00 1 2020-07-17 21:26:15.402699 2020-07-17 21:26:15.402699 \N 519.00 \N 0.00 0.00 3234 2583 953 1.0 2099.00 0.00 0.00 2099.00 1 2020-07-17 21:29:40.29066 2020-07-17 21:29:40.29066 \N 2099.00 \N 0.00 0.00 3235 2584 258 1.0 1033.62 165.38 0.00 1199.00 1 2020-07-17 21:31:08.454003 2020-07-17 21:31:08.454003 \N 1199.00 \N 0.00 0.00 3236 2585 170 1.0 861.21 137.79 0.00 999.00 1 2020-07-17 21:33:43.437647 2020-07-17 21:33:43.437647 \N 999.00 \N 0.00 0.00 3237 2585 1006 1.0 699.00 0.00 0.00 699.00 1 2020-07-17 21:33:43.464852 2020-07-17 21:33:43.464852 \N 699.00 \N 0.00 0.00 3238 2586 1008 1.0 999.00 0.00 0.00 999.00 0 2020-07-17 22:32:15.657665 2020-07-17 22:35:14.415233 \N 999.00 \N 0.00 0.00 3239 2587 1008 1.0 999.00 0.00 0.00 999.00 1 2020-07-17 22:35:55.828804 2020-07-17 22:35:55.828804 \N 999.00 \N 0.00 0.00 3240 2588 590 1.0 1099.00 0.00 0.00 1099.00 1 2020-07-17 23:32:00.259845 2020-07-17 23:32:00.259845 \N 1099.00 \N 0.00 0.00 3241 2588 369 1.0 42.24 6.76 0.00 49.00 1 2020-07-17 23:32:00.310979 2020-07-17 23:32:00.310979 \N 49.00 \N 0.00 0.00 3242 2589 197 1.0 280.17 44.83 324.00 325.00 1 2020-07-18 18:29:15.616611 2020-07-18 18:29:15.616611 \N 649.00 \N 324.00 0.00 3243 2590 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-18 19:18:51.406892 2020-07-18 19:18:51.406892 \N 1499.00 \N 0.00 0.00 3244 2591 551 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-18 20:59:36.536116 2020-07-18 20:59:36.536116 \N 1599.00 \N 0.00 0.00 3229 2578 367 2.0 431.03 68.96 200.00 499.99 0 2020-07-16 20:53:38.335863 2020-07-18 22:46:20.014726 \N 350.00 \N 200.00 0.00 3228 2578 675 1.0 849.00 0.00 0.00 849.00 0 2020-07-16 20:53:38.307685 2020-07-18 22:46:20.046192 \N 849.00 \N 0.00 0.00 3245 2592 1144 1.0 1299.00 0.00 0.00 1299.00 1 2020-07-18 23:08:00.06883 2020-07-18 23:08:00.06883 \N 1299.00 \N 0.00 0.00 3246 2593 9 1.0 602.59 96.41 0.00 699.00 1 2020-07-18 23:14:03.33696 2020-07-18 23:14:03.33696 \N 699.00 \N 0.00 0.00 3247 2593 1111 1.0 99.00 0.00 0.00 99.00 1 2020-07-18 23:14:03.365937 2020-07-18 23:14:03.365937 \N 99.00 \N 0.00 0.00 3248 2593 369 1.0 42.24 6.76 0.00 49.00 1 2020-07-18 23:14:03.391534 2020-07-18 23:14:03.391534 \N 49.00 \N 0.00 0.00 3249 2594 31 1.0 344.40 55.10 399.50 399.50 1 2020-07-20 19:11:16.721742 2020-07-20 19:11:16.721742 \N 799.00 \N 0.00 50.00 3250 2595 335 1.0 344.83 55.17 399.00 400.00 1 2020-07-20 20:16:56.606946 2020-07-20 20:16:56.606946 \N 799.00 \N 399.00 0.00 3251 2596 1053 1.0 105.00 0.00 0.00 105.00 1 2020-07-20 21:26:19.077052 2020-07-20 21:26:19.077052 \N 105.00 \N 0.00 0.00 3252 2597 1000 1.0 729.00 0.00 0.00 729.00 1 2020-07-20 22:15:13.114369 2020-07-20 22:15:13.114369 \N 729.00 \N 0.00 0.00 3253 2598 1077 1.0 99.00 0.00 0.00 99.00 1 2020-07-20 23:47:46.081746 2020-07-20 23:47:46.081746 \N 99.00 \N 0.00 0.00 3254 2598 833 1.0 119.00 0.00 0.00 119.00 1 2020-07-20 23:47:46.124065 2020-07-20 23:47:46.124065 \N 119.00 \N 0.00 0.00 3196 2551 258 1.0 1033.62 165.38 0.00 1199.00 0 2020-07-09 23:53:43.302227 2020-11-26 18:44:24.023622 \N 1199.00 \N 0.00 0.00 3255 2599 1060 1.0 179.00 0.00 0.00 179.00 1 2020-07-21 21:13:33.071581 2020-07-21 21:13:33.071581 \N 179.00 \N 0.00 0.00 3256 2600 559 1.0 579.00 0.00 0.00 579.00 1 2020-07-21 22:27:35.555683 2020-07-21 22:27:35.555683 \N 579.00 \N 0.00 0.00 3257 2601 152 1.0 576.72 92.28 0.00 669.00 1 2020-07-21 22:33:51.647188 2020-07-21 22:33:51.647188 \N 669.00 \N 0.00 0.00 3258 2602 934 1.0 139.00 0.00 0.00 139.00 1 2020-07-21 22:39:16.146615 2020-07-21 22:39:16.146615 \N 139.00 \N 0.00 0.00 3259 2602 1077 1.0 99.00 0.00 0.00 99.00 1 2020-07-21 22:39:16.18501 2020-07-21 22:39:16.18501 \N 99.00 \N 0.00 0.00 3260 2603 1008 1.0 999.00 0.00 0.00 999.00 1 2020-07-21 23:30:34.305956 2020-07-21 23:30:34.305956 \N 999.00 \N 0.00 0.00 3261 2603 997 1.0 1169.00 0.00 0.00 1169.00 1 2020-07-21 23:30:34.351002 2020-07-21 23:30:34.351002 \N 1169.00 \N 0.00 0.00 3262 2603 1109 1.0 189.00 0.00 0.00 189.00 1 2020-07-21 23:30:34.379391 2020-07-21 23:30:34.379391 \N 189.00 \N 0.00 0.00 3263 2603 813 1.0 249.00 0.00 0.00 249.00 1 2020-07-21 23:30:34.408618 2020-07-21 23:30:34.408618 \N 249.00 \N 0.00 0.00 3264 2604 1132 1.0 1399.00 0.00 0.00 1399.00 1 2020-07-21 23:35:00.144898 2020-07-21 23:35:00.144898 \N 1399.00 \N 0.00 0.00 3265 2604 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-21 23:35:00.17474 2020-07-21 23:35:00.17474 \N 1599.00 \N 0.00 0.00 3266 2605 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-22 21:29:50.278204 2020-07-22 21:29:50.278204 \N 1499.00 \N 0.00 0.00 3267 2605 1082 1.0 139.00 0.00 0.00 139.00 1 2020-07-22 21:29:50.316416 2020-07-22 21:29:50.316416 \N 139.00 \N 0.00 0.00 3268 2606 979 1.0 469.00 0.00 0.00 469.00 1 2020-07-23 17:19:34.044473 2020-07-23 17:19:34.044473 \N 469.00 \N 0.00 0.00 3269 2606 632 1.0 479.00 0.00 0.00 479.00 1 2020-07-23 17:19:34.0893 2020-07-23 17:19:34.0893 \N 479.00 \N 0.00 0.00 3270 2606 798 1.0 469.00 0.00 0.00 469.00 1 2020-07-23 17:19:34.118189 2020-07-23 17:19:34.118189 \N 469.00 \N 0.00 0.00 3271 2607 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-23 17:22:33.536727 2020-07-23 17:22:33.536727 \N 1599.00 \N 0.00 0.00 3272 2608 55 1.0 1172.41 187.59 339.01 1360.00 1 2020-07-23 19:06:53.550752 2020-07-23 19:06:53.550752 \N 1699.00 \N 339.01 0.00 3273 2609 1145 1.0 1799.00 0.00 0.00 1799.00 1 2020-07-24 00:36:22.734889 2020-07-24 00:36:22.734889 \N 1799.00 \N 0.00 0.00 3274 2610 1143 1.0 999.00 0.00 0.00 999.00 1 2020-07-24 18:40:15.573814 2020-07-24 18:40:15.573814 \N 999.00 \N 0.00 0.00 3275 2610 367 2.0 517.24 82.76 100.00 600.00 1 2020-07-24 18:40:15.61244 2020-07-24 18:40:15.61244 \N 350.00 \N 100.00 0.00 3276 2611 990 1.0 599.00 0.00 0.00 599.00 1 2020-07-24 19:00:07.074773 2020-07-24 19:00:07.074773 \N 599.00 \N 0.00 0.00 3278 2612 460 1.0 449.00 0.00 0.00 449.00 0 2020-07-24 19:23:30.361857 2020-07-24 19:25:28.570031 \N 449.00 \N 0.00 0.00 3277 2612 994 1.0 1049.00 0.00 0.00 1049.00 0 2020-07-24 19:23:30.335923 2020-07-24 19:25:28.594282 \N 1049.00 \N 0.00 0.00 3279 2613 994 1.0 1049.00 0.00 0.00 1049.00 1 2020-07-24 19:26:05.371432 2020-07-24 19:26:05.371432 \N 1049.00 \N 0.00 0.00 3280 2613 460 1.0 449.00 0.00 0.00 449.00 1 2020-07-24 19:26:05.397343 2020-07-24 19:26:05.397343 \N 449.00 \N 0.00 0.00 3281 2614 986 1.0 1299.00 0.00 0.00 1299.00 1 2020-07-24 21:42:11.739179 2020-07-24 21:42:11.739179 \N 1299.00 \N 0.00 0.00 3282 2614 1021 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-24 21:42:11.76694 2020-07-24 21:42:11.76694 \N 1499.00 \N 0.00 0.00 3283 2615 663 1.0 699.00 0.00 0.00 699.00 1 2020-07-25 00:10:24.837491 2020-07-25 00:10:24.837491 \N 699.00 \N 0.00 0.00 3284 2616 1118 1.0 1599.00 0.00 0.00 1599.00 0 2020-07-25 00:46:51.488439 2020-07-25 00:49:10.238044 \N 1599.00 \N 0.00 0.00 3285 2617 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-25 00:54:06.268589 2020-07-25 00:54:06.268589 \N 1599.00 \N 0.00 0.00 3288 2619 269 1.0 387.50 62.00 449.50 449.50 1 2020-07-25 20:21:57.545227 2020-07-25 20:21:57.545227 \N 899.00 \N 0.00 50.00 3289 2620 64 1.0 193.97 31.04 224.00 225.01 1 2020-07-27 20:28:15.924161 2020-07-27 20:28:15.924161 \N 449.00 \N 224.00 0.00 3290 2621 653 1.0 1799.00 0.00 0.00 1799.00 1 2020-07-27 21:45:48.705883 2020-07-27 21:45:48.705883 \N 1799.00 \N 0.00 0.00 3291 2622 354 1.0 862.07 137.93 799.00 1000.00 1 2020-07-27 21:54:36.262022 2020-07-27 21:54:36.262022 \N 1799.00 \N 799.00 0.00 3292 2623 975 1.0 999.00 0.00 0.00 999.00 1 2020-07-28 00:22:07.18309 2020-07-28 00:22:07.18309 \N 999.00 \N 0.00 0.00 3293 2624 1010 1.0 599.00 0.00 0.00 599.00 1 2020-07-28 17:03:51.209716 2020-07-28 17:03:51.209716 \N 599.00 \N 0.00 0.00 3294 2625 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-28 18:06:08.657154 2020-07-28 18:06:08.657154 \N 1599.00 \N 0.00 0.00 3295 2626 581 1.0 1399.00 0.00 0.00 1399.00 1 2020-07-28 18:31:37.9563 2020-07-28 18:31:37.9563 \N 1399.00 \N 0.00 0.00 3296 2627 994 1.0 1049.00 0.00 0.00 1049.00 1 2020-07-28 19:05:19.571894 2020-07-28 19:05:19.571894 \N 1049.00 \N 0.00 0.00 3297 2627 1025 1.0 899.00 0.00 0.00 899.00 1 2020-07-28 19:05:19.600565 2020-07-28 19:05:19.600565 \N 899.00 \N 0.00 0.00 3298 2628 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-28 21:55:05.847325 2020-07-28 21:55:05.847325 \N 1499.00 \N 0.00 0.00 3299 2629 476 1.0 85.34 13.65 0.00 98.99 1 2020-07-29 21:50:25.083517 2020-07-29 21:50:25.083517 \N 99.00 \N 0.00 0.00 3300 2630 1152 1.0 1399.00 0.00 0.00 1399.00 1 2020-07-29 23:57:44.827051 2020-07-29 23:57:44.827051 \N 1399.00 \N 0.00 0.00 3302 2632 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-30 18:40:21.870279 2020-07-30 18:40:21.870279 \N 1499.00 \N 0.00 0.00 3303 2632 1141 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-30 18:40:21.908165 2020-07-30 18:40:21.908165 \N 1599.00 \N 0.00 0.00 3304 2633 990 1.0 599.00 0.00 0.00 599.00 1 2020-07-30 21:10:06.390406 2020-07-30 21:10:06.390406 \N 599.00 \N 0.00 0.00 3305 2634 1159 1.0 1499.00 0.00 0.00 1499.00 1 2020-07-30 21:16:42.086724 2020-07-30 21:16:42.086724 \N 1499.00 \N 0.00 0.00 3301 2631 1152 1.0 1399.00 0.00 0.00 1399.00 0 2020-07-30 00:26:19.347408 2020-07-30 21:30:08.544796 \N 1399.00 \N 0.00 0.00 3306 2635 1152 1.0 1399.00 0.00 0.00 1399.00 0 2020-07-31 21:06:10.911965 2020-07-31 21:07:12.668752 \N 1399.00 \N 0.00 0.00 3307 2636 1152 1.0 1399.00 0.00 0.00 1399.00 0 2020-07-31 21:08:14.920198 2020-07-31 21:09:17.596769 \N 1399.00 \N 0.00 0.00 3308 2637 1152 1.0 1399.00 0.00 0.00 1399.00 0 2020-07-31 21:09:47.087825 2020-07-31 21:10:49.289766 \N 1399.00 \N 0.00 0.00 3309 2638 1152 1.0 1399.00 0.00 0.00 1399.00 0 2020-07-31 21:12:21.210906 2020-07-31 21:12:38.697965 \N 1399.00 \N 0.00 0.00 3310 2639 1134 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-31 21:23:59.119762 2020-07-31 21:23:59.119762 \N 1599.00 \N 0.00 0.00 3311 2640 1152 1.0 1399.00 0.00 0.00 1399.00 0 2020-07-31 21:39:51.62363 2020-07-31 21:41:12.177379 \N 1399.00 \N 0.00 0.00 3312 2641 1166 1.0 2199.00 0.00 0.00 2199.00 1 2020-07-31 22:32:05.276893 2020-07-31 22:32:05.276893 \N 2199.00 \N 0.00 0.00 3313 2642 1152 1.0 1399.00 0.00 0.00 1399.00 0 2020-07-31 23:05:28.165584 2020-07-31 23:10:29.796569 \N 1399.00 \N 0.00 0.00 3314 2643 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-07-31 23:28:04.50624 2020-07-31 23:28:04.50624 \N 1599.00 \N 0.00 0.00 3315 2644 887 1.0 1000.00 0.00 99.00 1000.00 1 2020-08-01 00:46:05.210868 2020-08-01 00:46:05.210868 \N 1099.00 \N 99.00 0.00 3316 2645 1152 1.0 1399.00 0.00 0.00 1399.00 0 2020-08-01 16:51:02.829031 2020-08-01 16:51:28.658193 \N 1399.00 \N 0.00 0.00 3317 2646 367 2.0 431.03 68.96 200.00 499.99 1 2020-08-01 21:00:50.875 2020-08-01 21:00:50.875 \N 350.00 \N 200.00 0.00 3318 2647 1130 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-01 23:52:27.069456 2020-08-01 23:52:27.069456 \N 1499.00 \N 0.00 0.00 3319 2647 1163 1.0 899.00 0.00 0.00 899.00 1 2020-08-01 23:52:27.134968 2020-08-01 23:52:27.134968 \N 899.00 \N 0.00 0.00 3320 2648 1152 1.0 1399.00 0.00 0.00 1399.00 1 2020-08-03 16:32:34.191241 2020-08-03 16:32:34.191241 \N 1399.00 \N 0.00 0.00 3321 2649 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-03 18:39:11.727731 2020-08-03 18:39:11.727731 \N 1499.00 \N 0.00 0.00 3322 2649 56 1.0 1723.28 275.72 0.00 1999.00 1 2020-08-03 18:39:11.774162 2020-08-03 18:39:11.774162 \N 1999.00 \N 0.00 0.00 3323 2649 1149 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-03 18:39:11.809585 2020-08-03 18:39:11.809585 \N 1499.00 \N 0.00 0.00 3324 2650 1167 1.0 1799.00 0.00 0.00 1799.00 1 2020-08-03 20:12:07.726081 2020-08-03 20:12:07.726081 \N 1799.00 \N 0.00 0.00 3325 2651 1021 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-03 20:41:49.033882 2020-08-03 20:41:49.033882 \N 1499.00 \N 0.00 0.00 3326 2652 1160 1.0 699.00 0.00 0.00 699.00 1 2020-08-03 22:22:16.978672 2020-08-03 22:22:16.978672 \N 699.00 \N 0.00 0.00 3327 2653 1169 1.0 1099.00 0.00 0.00 1099.00 1 2020-08-03 22:41:27.884029 2020-08-03 22:41:27.884029 \N 1099.00 \N 0.00 0.00 3328 2654 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-08-03 23:19:47.604423 2020-08-03 23:19:47.604423 \N 1599.00 \N 0.00 0.00 3286 2618 1122 1.0 1599.00 0.00 0.00 1599.00 0 2020-07-25 19:42:11.827626 2020-08-05 19:56:26.639168 \N 1599.00 \N 0.00 0.00 3329 2655 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-03 23:27:35.332089 2020-08-03 23:27:35.332089 \N 1499.00 \N 0.00 0.00 3330 2656 494 1.0 549.00 0.00 350.00 549.00 1 2020-08-03 23:34:38.022756 2020-08-03 23:34:38.022756 \N 899.00 \N 350.00 0.00 3331 2657 1126 1.0 1274.15 0.00 224.85 1274.15 1 2020-08-03 23:36:37.731338 2020-08-03 23:36:37.731338 \N 1499.00 \N 0.00 15.00 3332 2658 1010 1.0 599.00 0.00 0.00 599.00 1 2020-08-03 23:49:53.975991 2020-08-03 23:49:53.975991 \N 599.00 \N 0.00 0.00 3333 2659 33 1.0 344.83 55.17 399.00 400.00 1 2020-08-04 23:08:29.47128 2020-08-04 23:08:29.47128 \N 799.00 \N 399.00 0.00 3334 2660 908 1.0 40.00 0.00 0.00 40.00 1 2020-08-04 23:11:54.787634 2020-08-04 23:11:54.787634 \N 40.00 \N 0.00 0.00 3335 2660 369 2.0 84.48 13.52 0.00 98.00 1 2020-08-04 23:11:54.815439 2020-08-04 23:11:54.815439 \N 49.00 \N 0.00 0.00 3336 2661 998 1.0 1050.00 0.00 119.00 1050.00 1 2020-08-04 23:29:57.654676 2020-08-04 23:29:57.654676 \N 1169.00 \N 119.00 0.00 3337 2662 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-05 00:04:29.734545 2020-08-05 00:04:29.734545 \N 1499.00 \N 0.00 0.00 3338 2662 906 1.0 88.00 0.00 0.00 88.00 1 2020-08-05 00:04:29.762093 2020-08-05 00:04:29.762093 \N 88.00 \N 0.00 0.00 3339 2663 1126 2.0 2998.00 0.00 0.00 2998.00 1 2020-08-05 00:26:12.988091 2020-08-05 00:26:12.988091 \N 1499.00 \N 0.00 0.00 3340 2664 50 1.0 862.07 137.93 799.00 1000.00 1 2020-08-05 00:28:25.869017 2020-08-05 00:28:25.869017 \N 1799.00 \N 799.00 0.00 3341 2665 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-05 18:03:43.645925 2020-08-05 18:03:43.645925 \N 1499.00 \N 0.00 0.00 3342 2666 369 1.0 42.24 6.76 0.00 49.00 1 2020-08-05 18:12:54.84075 2020-08-05 18:12:54.84075 \N 49.00 \N 0.00 0.00 3287 2618 1121 1.0 1699.00 0.00 0.00 1699.00 0 2020-07-25 19:42:11.856514 2020-08-05 19:56:26.597533 \N 1699.00 \N 0.00 0.00 3343 2667 1121 1.0 1699.00 0.00 0.00 1699.00 1 2020-08-05 19:58:36.616501 2020-08-05 19:58:36.616501 \N 1699.00 \N 0.00 0.00 3344 2667 1122 1.0 1360.00 0.00 239.00 1360.00 1 2020-08-05 19:58:36.647597 2020-08-05 19:58:36.647597 \N 1599.00 \N 239.00 0.00 3345 2668 1017 1.0 699.00 0.00 0.00 699.00 1 2020-08-05 20:53:14.913222 2020-08-05 20:53:14.913222 \N 699.00 \N 0.00 0.00 3346 2669 1029 2.0 138.00 0.00 0.00 138.00 1 2020-08-05 20:54:52.407849 2020-08-05 20:54:52.407849 \N 69.00 \N 0.00 0.00 3347 2670 1118 1.0 1360.00 0.00 239.00 1360.00 1 2020-08-05 21:09:47.726535 2020-08-05 21:09:47.726535 \N 1599.00 \N 239.00 0.00 3348 2671 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-05 22:55:57.730196 2020-08-05 22:55:57.730196 \N 1499.00 \N 0.00 0.00 3349 2671 905 1.0 88.00 0.00 32.00 88.00 1 2020-08-05 22:55:57.779989 2020-08-05 22:55:57.779989 \N 120.00 \N 32.00 0.00 3352 2672 908 1.0 40.00 0.00 0.00 40.00 0 2020-08-06 22:29:14.589515 2020-08-06 22:30:30.34442 \N 40.00 \N 0.00 0.00 3351 2672 40 1.0 688.79 110.21 0.00 799.00 0 2020-08-06 22:29:14.561711 2020-08-06 22:30:30.374654 \N 799.00 \N 0.00 0.00 3350 2672 1126 1.0 1499.00 0.00 0.00 1499.00 0 2020-08-06 22:29:14.518401 2020-08-06 22:30:30.403518 \N 1499.00 \N 0.00 0.00 3353 2673 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-06 22:31:10.597399 2020-08-06 22:31:10.597399 \N 1499.00 \N 0.00 0.00 3354 2673 908 1.0 40.00 0.00 0.00 40.00 1 2020-08-06 22:31:10.622507 2020-08-06 22:31:10.622507 \N 40.00 \N 0.00 0.00 3355 2673 40 1.0 344.83 55.17 399.00 400.00 1 2020-08-06 22:31:10.645013 2020-08-06 22:31:10.645013 \N 799.00 \N 399.00 0.00 3356 2674 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-08-07 19:37:08.758789 2020-08-07 19:37:08.758789 \N 1599.00 \N 0.00 0.00 3357 2675 212 1.0 86.21 13.79 669.00 100.00 1 2020-08-07 21:03:24.817233 2020-08-07 21:03:24.817233 \N 769.00 \N 669.00 0.00 3358 2675 246 1.0 86.21 13.79 699.00 100.00 1 2020-08-07 21:03:24.847321 2020-08-07 21:03:24.847321 \N 799.00 \N 699.00 0.00 3359 2676 18 1.0 0.00 0.00 499.00 0.00 1 2020-08-07 21:30:12.424262 2020-08-07 21:30:12.424262 \N 499.00 \N 0.00 100.00 3360 2676 508 1.0 0.00 0.00 699.00 0.00 1 2020-08-07 21:30:12.453201 2020-08-07 21:30:12.453201 \N 699.00 \N 0.00 100.00 3361 2676 13 1.0 0.00 0.00 499.00 0.00 1 2020-08-07 21:30:12.478086 2020-08-07 21:30:12.478086 \N 499.00 \N 0.00 100.00 3362 2676 1020 1.0 0.00 0.00 729.00 0.00 1 2020-08-07 21:30:12.503733 2020-08-07 21:30:12.503733 \N 729.00 \N 0.00 100.00 3363 2677 208 1.0 86.21 13.79 699.00 100.00 1 2020-08-07 22:49:08.275271 2020-08-07 22:49:08.275271 \N 799.00 \N 699.00 0.00 3364 2677 408 1.0 215.52 34.48 249.00 250.00 1 2020-08-07 22:49:08.301436 2020-08-07 22:49:08.301436 \N 499.00 \N 249.00 0.00 3365 2678 1192 1.0 1099.00 0.00 0.00 1099.00 1 2020-08-08 00:57:21.298139 2020-08-08 00:57:21.298139 \N 1099.00 \N 0.00 0.00 3366 2679 675 1.0 425.00 0.00 424.00 425.00 1 2020-08-08 18:51:18.254552 2020-08-08 18:51:18.254552 \N 849.00 \N 424.00 0.00 3367 2680 1003 1.0 669.00 0.00 0.00 669.00 1 2020-08-08 19:09:45.347018 2020-08-08 19:09:45.347018 \N 669.00 \N 0.00 0.00 3368 2681 246 1.0 86.21 13.79 699.00 100.00 1 2020-08-08 20:07:40.581657 2020-08-08 20:07:40.581657 \N 799.00 \N 699.00 0.00 3369 2681 206 1.0 86.21 13.79 729.00 100.00 1 2020-08-08 20:07:40.614842 2020-08-08 20:07:40.614842 \N 829.00 \N 729.00 0.00 3370 2681 231 1.0 86.21 13.79 769.00 100.00 1 2020-08-08 20:07:40.653527 2020-08-08 20:07:40.653527 \N 869.00 \N 769.00 0.00 3371 2681 217 1.0 86.21 13.79 649.00 100.00 1 2020-08-08 20:07:40.694313 2020-08-08 20:07:40.694313 \N 749.00 \N 649.00 0.00 3372 2681 644 1.0 100.00 0.00 320.00 100.00 1 2020-08-08 20:07:40.73285 2020-08-08 20:07:40.73285 \N 420.00 \N 320.00 0.00 3373 2681 225 1.0 86.21 13.79 749.00 100.00 1 2020-08-08 20:07:40.764424 2020-08-08 20:07:40.764424 \N 849.00 \N 749.00 0.00 3374 2681 430 1.0 86.21 13.79 399.00 100.00 1 2020-08-08 20:07:40.803925 2020-08-08 20:07:40.803925 \N 499.00 \N 399.00 0.00 3375 2681 369 1.0 42.24 6.76 0.00 49.00 1 2020-08-08 20:07:40.838242 2020-08-08 20:07:40.838242 \N 49.00 \N 0.00 0.00 3376 2682 673 1.0 280.00 0.00 280.00 280.00 1 2020-08-08 21:13:04.61343 2020-08-08 21:13:04.61343 \N 560.00 \N 280.00 0.00 3377 2683 1148 1.0 1399.00 0.00 0.00 1399.00 1 2020-08-11 00:07:32.265474 2020-08-11 00:07:32.265474 \N 1399.00 \N 0.00 0.00 3378 2684 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-08-11 23:58:07.335181 2020-08-11 23:58:07.335181 \N 1599.00 \N 0.00 0.00 3379 2685 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-12 00:20:35.85601 2020-08-12 00:20:35.85601 \N 1499.00 \N 0.00 0.00 3380 2686 1148 1.0 1399.00 0.00 0.00 1399.00 0 2020-08-12 21:59:21.828213 2020-08-12 21:59:51.93169 \N 1399.00 \N 0.00 0.00 3381 2687 1148 1.0 1399.00 0.00 0.00 1399.00 1 2020-08-12 22:00:17.238577 2020-08-12 22:00:17.238577 \N 1399.00 \N 0.00 0.00 3382 2688 484 1.0 999.00 0.00 0.00 999.00 1 2020-08-13 00:35:54.14935 2020-08-13 00:35:54.14935 \N 999.00 \N 0.00 0.00 3384 2689 1126 1.0 1499.00 0.00 0.00 1499.00 0 2020-08-13 19:47:06.678359 2020-08-13 20:07:21.735533 \N 1499.00 \N 0.00 0.00 3383 2689 1118 1.0 1599.00 0.00 0.00 1599.00 0 2020-08-13 19:47:06.650449 2020-08-13 20:07:21.79149 \N 1599.00 \N 0.00 0.00 3386 2690 1126 1.0 1499.00 0.00 0.00 1499.00 0 2020-08-13 20:15:02.126641 2020-08-13 20:15:33.175891 \N 1499.00 \N 0.00 0.00 3385 2690 1118 1.0 1599.00 0.00 0.00 1599.00 0 2020-08-13 20:15:02.097037 2020-08-13 20:15:33.2077 \N 1599.00 \N 0.00 0.00 3389 2692 498 1.0 335.00 0.00 334.00 335.00 1 2020-08-13 21:53:33.89922 2020-08-13 21:53:33.89922 \N 669.00 \N 334.00 0.00 3390 2692 64 1.0 86.21 13.79 349.00 100.00 1 2020-08-13 21:53:33.930007 2020-08-13 21:53:33.930007 \N 449.00 \N 349.00 0.00 3391 2692 537 1.0 100.00 0.00 399.00 100.00 1 2020-08-13 21:53:33.957833 2020-08-13 21:53:33.957833 \N 499.00 \N 399.00 0.00 3392 2692 644 1.0 100.00 0.00 320.00 100.00 1 2020-08-13 21:53:33.98658 2020-08-13 21:53:33.98658 \N 420.00 \N 320.00 0.00 3393 2692 119 1.0 86.21 13.79 299.00 100.00 1 2020-08-13 21:53:34.024143 2020-08-13 21:53:34.024143 \N 399.00 \N 299.00 0.00 3394 2693 787 1.0 649.00 0.00 0.00 649.00 1 2020-08-14 00:47:01.221905 2020-08-14 00:47:01.221905 \N 649.00 \N 0.00 0.00 3395 2694 907 1.0 60.00 0.00 0.00 60.00 1 2020-08-14 00:48:05.805368 2020-08-14 00:48:05.805368 \N 60.00 \N 0.00 0.00 3396 2695 147 1.0 215.52 34.48 219.00 250.00 1 2020-08-14 16:44:07.026621 2020-08-14 16:44:07.026621 \N 469.00 \N 219.00 0.00 3397 2696 537 1.0 100.00 0.00 399.00 100.00 1 2020-08-14 18:08:32.948067 2020-08-14 18:08:32.948067 \N 499.00 \N 399.00 0.00 3398 2696 619 1.0 250.00 0.00 319.00 250.00 1 2020-08-14 18:08:32.976449 2020-08-14 18:08:32.976449 \N 569.00 \N 319.00 0.00 3399 2697 761 1.0 230.00 0.00 229.00 230.00 1 2020-08-14 18:16:54.382512 2020-08-14 18:16:54.382512 \N 459.00 \N 229.00 0.00 3400 2698 208 1.0 86.21 13.79 699.00 100.00 1 2020-08-14 18:56:27.855356 2020-08-14 18:56:27.855356 \N 799.00 \N 699.00 0.00 3387 2691 1118 1.0 1599.00 0.00 0.00 1599.00 0 2020-08-13 20:16:48.657376 2020-09-04 22:31:18.89518 \N 1599.00 \N 0.00 0.00 3401 2698 600 1.0 250.00 0.00 299.00 250.00 1 2020-08-14 18:56:27.888311 2020-08-14 18:56:27.888311 \N 549.00 \N 299.00 0.00 3402 2699 238 1.0 258.62 41.38 699.00 300.00 1 2020-08-14 20:09:21.265617 2020-08-14 20:09:21.265617 \N 999.00 \N 699.00 0.00 3403 2699 498 1.0 335.00 0.00 334.00 335.00 1 2020-08-14 20:09:21.293945 2020-08-14 20:09:21.293945 \N 669.00 \N 334.00 0.00 3404 2700 529 1.0 799.00 0.00 0.00 799.00 0 2020-08-14 21:34:59.532487 2020-08-14 21:36:39.930188 \N 799.00 \N 0.00 0.00 3405 2701 237 1.0 258.62 41.38 599.00 300.00 1 2020-08-14 21:41:00.609619 2020-08-14 21:41:00.609619 \N 899.00 \N 599.00 0.00 3406 2701 238 1.0 258.62 41.38 699.00 300.00 1 2020-08-14 21:41:00.637785 2020-08-14 21:41:00.637785 \N 999.00 \N 699.00 0.00 3407 2702 529 1.0 680.00 0.00 119.00 680.00 1 2020-08-14 21:42:58.094146 2020-08-14 21:42:58.094146 \N 799.00 \N 119.00 0.00 3408 2703 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-14 21:45:10.461093 2020-08-14 21:45:10.461093 \N 1499.00 \N 0.00 0.00 3409 2704 1173 1.0 799.00 0.00 0.00 799.00 1 2020-08-14 21:51:19.878441 2020-08-14 21:51:19.878441 \N 799.00 \N 0.00 0.00 3410 2705 237 1.0 258.62 41.38 599.00 300.00 1 2020-08-14 21:55:05.94258 2020-08-14 21:55:05.94258 \N 899.00 \N 599.00 0.00 3411 2706 1015 1.0 549.00 0.00 0.00 549.00 1 2020-08-14 22:01:42.978089 2020-08-14 22:01:42.978089 \N 549.00 \N 0.00 0.00 3412 2707 1207 1.0 569.00 0.00 0.00 569.00 1 2020-08-14 23:54:46.984567 2020-08-14 23:54:46.984567 \N 569.00 \N 0.00 0.00 3413 2708 257 1.0 258.62 41.38 499.00 300.00 1 2020-08-15 16:07:25.974081 2020-08-15 16:07:25.974081 \N 799.00 \N 499.00 0.00 3414 2708 578 1.0 400.00 0.00 399.00 400.00 1 2020-08-15 16:07:26.014156 2020-08-15 16:07:26.014156 \N 799.00 \N 399.00 0.00 3415 2709 408 1.0 258.62 41.38 199.00 300.00 1 2020-08-15 16:16:03.385579 2020-08-15 16:16:03.385579 \N 499.00 \N 199.00 0.00 3416 2709 84 1.0 86.21 13.79 399.00 100.00 1 2020-08-15 16:16:03.410217 2020-08-15 16:16:03.410217 \N 499.00 \N 399.00 0.00 3417 2710 206 1.0 86.21 13.79 729.00 100.00 1 2020-08-15 16:17:40.585204 2020-08-15 16:17:40.585204 \N 829.00 \N 729.00 0.00 3418 2710 84 1.0 86.21 13.79 399.00 100.00 1 2020-08-15 16:17:40.613104 2020-08-15 16:17:40.613104 \N 499.00 \N 399.00 0.00 3419 2710 208 1.0 86.21 13.79 699.00 100.00 1 2020-08-15 16:17:40.635718 2020-08-15 16:17:40.635718 \N 799.00 \N 699.00 0.00 3420 2711 320 1.0 215.52 34.48 219.00 250.00 1 2020-08-15 16:24:21.998705 2020-08-15 16:24:21.998705 \N 469.00 \N 219.00 0.00 3421 2711 81 1.0 215.52 34.48 349.00 250.00 1 2020-08-15 16:24:22.025864 2020-08-15 16:24:22.025864 \N 599.00 \N 349.00 0.00 3422 2712 579 1.0 350.00 0.00 349.00 350.00 1 2020-08-15 16:31:09.641061 2020-08-15 16:31:09.641061 \N 699.00 \N 349.00 0.00 3423 2713 200 1.0 258.62 41.38 229.00 300.00 1 2020-08-15 17:48:08.004723 2020-08-15 17:48:08.004723 \N 529.00 \N 229.00 0.00 3424 2713 78 1.0 215.52 34.48 345.00 250.00 1 2020-08-15 17:48:08.034331 2020-08-15 17:48:08.034331 \N 595.00 \N 345.00 0.00 3425 2713 521 1.0 250.00 0.00 249.00 250.00 1 2020-08-15 17:48:08.058815 2020-08-15 17:48:08.058815 \N 499.00 \N 249.00 0.00 3426 2714 319 1.0 215.52 34.48 219.00 250.00 1 2020-08-15 17:48:56.931155 2020-08-15 17:48:56.931155 \N 469.00 \N 219.00 0.00 3427 2715 554 1.0 415.00 0.00 414.00 415.00 1 2020-08-15 18:53:07.989226 2020-08-15 18:53:07.989226 \N 829.00 \N 414.00 0.00 3428 2715 1015 1.0 549.00 0.00 0.00 549.00 1 2020-08-15 18:53:08.050062 2020-08-15 18:53:08.050062 \N 549.00 \N 0.00 0.00 3429 2716 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-08-15 19:04:02.507417 2020-08-15 19:04:02.507417 \N 1599.00 \N 0.00 0.00 3430 2717 637 1.0 400.00 0.00 399.00 400.00 1 2020-08-15 20:11:04.252139 2020-08-15 20:11:04.252139 \N 799.00 \N 399.00 0.00 3431 2717 1014 1.0 330.00 0.00 329.00 330.00 1 2020-08-15 20:11:04.282198 2020-08-15 20:11:04.282198 \N 659.00 \N 329.00 0.00 3432 2717 682 1.0 325.00 0.00 324.00 325.00 1 2020-08-15 20:11:04.310137 2020-08-15 20:11:04.310137 \N 649.00 \N 324.00 0.00 3433 2717 475 1.0 300.00 0.00 589.00 300.00 1 2020-08-15 20:11:04.33952 2020-08-15 20:11:04.33952 \N 889.00 \N 589.00 0.00 3434 2718 185 1.0 452.59 72.41 524.00 525.00 1 2020-08-15 21:33:05.403627 2020-08-15 21:33:05.403627 \N 1049.00 \N 524.00 0.00 3435 2719 596 1.0 650.00 0.00 649.00 650.00 1 2020-08-15 21:57:38.771989 2020-08-15 21:57:38.771989 \N 1299.00 \N 649.00 0.00 3436 2720 620 1.0 250.00 0.00 199.00 250.00 1 2020-08-15 23:28:59.358509 2020-08-15 23:28:59.358509 \N 449.00 \N 199.00 0.00 3437 2721 367 4.0 1034.48 165.52 200.00 1200.00 1 2020-08-15 23:37:11.3784 2020-08-15 23:37:11.3784 \N 350.00 \N 200.00 0.00 3438 2721 705 1.0 249.00 0.00 0.00 249.00 1 2020-08-15 23:37:11.409666 2020-08-15 23:37:11.409666 \N 249.00 \N 0.00 0.00 3439 2722 408 1.0 86.21 13.79 399.00 100.00 1 2020-08-15 23:41:45.289812 2020-08-15 23:41:45.289812 \N 499.00 \N 399.00 0.00 3440 2723 164 1.0 172.41 27.59 699.00 200.00 1 2020-08-17 16:33:56.115038 2020-08-17 16:33:56.115038 \N 899.00 \N 699.00 0.00 3441 2723 508 1.0 350.00 0.00 349.00 350.00 1 2020-08-17 16:33:56.15467 2020-08-17 16:33:56.15467 \N 699.00 \N 349.00 0.00 3442 2723 395 1.0 431.03 68.96 499.00 499.99 1 2020-08-17 16:33:56.182382 2020-08-17 16:33:56.182382 \N 999.00 \N 499.00 0.00 3443 2724 217 1.0 86.21 13.79 649.00 100.00 1 2020-08-17 16:56:06.475862 2020-08-17 16:56:06.475862 \N 749.00 \N 649.00 0.00 3444 2724 235 1.0 86.21 13.79 729.00 100.00 1 2020-08-17 16:56:06.515867 2020-08-17 16:56:06.515867 \N 829.00 \N 729.00 0.00 3445 2724 206 1.0 86.21 13.79 729.00 100.00 1 2020-08-17 16:56:06.540037 2020-08-17 16:56:06.540037 \N 829.00 \N 729.00 0.00 3446 2724 80 1.0 215.52 34.48 249.00 250.00 1 2020-08-17 16:56:06.563827 2020-08-17 16:56:06.563827 \N 499.00 \N 249.00 0.00 3447 2725 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-08-17 19:16:11.759645 2020-08-17 19:16:11.759645 \N 1599.00 \N 0.00 0.00 3448 2726 529 1.0 799.00 0.00 0.00 799.00 1 2020-08-17 19:36:30.721188 2020-08-17 19:36:30.721188 \N 799.00 \N 0.00 0.00 3449 2727 1137 1.0 1899.00 0.00 0.00 1899.00 1 2020-08-18 18:08:16.488235 2020-08-18 18:08:16.488235 \N 1899.00 \N 0.00 0.00 3450 2728 537 1.0 100.00 0.00 399.00 100.00 1 2020-08-18 18:26:41.613556 2020-08-18 18:26:41.613556 \N 499.00 \N 399.00 0.00 3451 2729 1159 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-18 18:52:22.842994 2020-08-18 18:52:22.842994 \N 1499.00 \N 0.00 0.00 3452 2730 628 1.0 947.41 151.59 0.00 1099.00 1 2020-08-18 21:37:32.098921 2020-08-18 21:37:32.098921 \N 1099.00 \N 0.00 0.00 3453 2731 494 1.0 549.00 0.00 350.00 549.00 1 2020-08-18 22:24:24.389529 2020-08-18 22:24:24.389529 \N 899.00 \N 350.00 0.00 3455 2732 1255 1.0 310.00 0.00 0.00 310.00 0 2020-08-18 22:38:09.993606 2020-08-18 22:39:24.061705 \N 310.00 \N 0.00 0.00 3454 2732 1269 1.0 249.00 0.00 0.00 249.00 0 2020-08-18 22:38:09.964673 2020-08-18 22:39:24.09211 \N 249.00 \N 0.00 0.00 3456 2733 1285 1.0 299.00 0.00 0.00 299.00 1 2020-08-18 22:45:21.655431 2020-08-18 22:45:21.655431 \N 299.00 \N 0.00 0.00 3457 2733 1255 1.0 310.00 0.00 0.00 310.00 1 2020-08-18 22:45:21.685026 2020-08-18 22:45:21.685026 \N 310.00 \N 0.00 0.00 3458 2733 1269 1.0 249.00 0.00 0.00 249.00 1 2020-08-18 22:45:21.710787 2020-08-18 22:45:21.710787 \N 249.00 \N 0.00 0.00 3459 2734 1141 1.0 1599.00 0.00 0.00 1599.00 1 2020-08-18 23:10:41.362465 2020-08-18 23:10:41.362465 \N 1599.00 \N 0.00 0.00 3460 2735 703 1.0 1599.00 0.00 0.00 1599.00 1 2020-08-19 00:03:06.814584 2020-08-19 00:03:06.814584 \N 1599.00 \N 0.00 0.00 3462 2737 581 1.0 700.00 0.00 699.00 700.00 1 2020-08-19 21:15:07.062782 2020-08-19 21:15:07.062782 \N 1399.00 \N 699.00 0.00 3463 2738 323 1.0 215.52 34.48 219.00 250.00 1 2020-08-19 21:25:16.73388 2020-08-19 21:25:16.73388 \N 469.00 \N 219.00 0.00 3464 2739 673 1.0 280.00 0.00 280.00 280.00 1 2020-08-19 22:27:17.199934 2020-08-19 22:27:17.199934 \N 560.00 \N 280.00 0.00 3465 2740 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-19 22:37:15.397048 2020-08-19 22:37:15.397048 \N 1499.00 \N 0.00 0.00 3466 2740 1203 1.0 159.00 0.00 0.00 159.00 1 2020-08-19 22:37:15.443189 2020-08-19 22:37:15.443189 \N 159.00 \N 0.00 0.00 3467 2740 1196 1.0 410.00 0.00 0.00 410.00 1 2020-08-19 22:37:15.470943 2020-08-19 22:37:15.470943 \N 410.00 \N 0.00 0.00 3468 2740 1242 1.0 159.00 0.00 0.00 159.00 1 2020-08-19 22:37:15.496662 2020-08-19 22:37:15.496662 \N 159.00 \N 0.00 0.00 3469 2740 1091 1.0 389.00 0.00 0.00 389.00 1 2020-08-19 22:37:15.536238 2020-08-19 22:37:15.536238 \N 389.00 \N 0.00 0.00 3470 2741 988 1.0 799.00 0.00 0.00 799.00 1 2020-08-19 22:44:22.287235 2020-08-19 22:44:22.287235 \N 799.00 \N 0.00 0.00 3471 2742 1017 1.0 350.00 0.00 349.00 350.00 1 2020-08-19 23:29:49.848419 2020-08-19 23:29:49.848419 \N 699.00 \N 349.00 0.00 3472 2743 1009 1.0 599.00 0.00 0.00 599.00 1 2020-08-19 23:30:57.221799 2020-08-19 23:30:57.221799 \N 599.00 \N 0.00 0.00 3473 2744 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-19 23:43:48.926259 2020-08-19 23:43:48.926259 \N 1499.00 \N 0.00 0.00 3474 2744 1182 1.0 1799.00 0.00 0.00 1799.00 1 2020-08-19 23:43:48.953196 2020-08-19 23:43:48.953196 \N 1799.00 \N 0.00 0.00 3475 2745 1025 1.0 450.00 0.00 449.00 450.00 1 2020-08-19 23:58:09.746282 2020-08-19 23:58:09.746282 \N 899.00 \N 449.00 0.00 3476 2745 236 1.0 258.62 41.38 569.00 300.00 1 2020-08-19 23:58:09.769548 2020-08-19 23:58:09.769548 \N 869.00 \N 569.00 0.00 3477 2745 103 1.0 86.21 13.79 329.00 100.00 1 2020-08-19 23:58:09.791012 2020-08-19 23:58:09.791012 \N 429.00 \N 329.00 0.00 3478 2746 1254 1.0 110.00 0.00 0.00 110.00 1 2020-08-19 23:58:58.942977 2020-08-19 23:58:58.942977 \N 110.00 \N 0.00 0.00 3479 2747 435 1.0 284.48 45.52 329.00 330.00 1 2020-08-20 19:21:28.080941 2020-08-20 19:21:28.080941 \N 659.00 \N 329.00 0.00 3480 2747 521 1.0 250.00 0.00 249.00 250.00 1 2020-08-20 19:21:28.122176 2020-08-20 19:21:28.122176 \N 499.00 \N 249.00 0.00 3481 2748 1204 1.0 229.00 0.00 0.00 229.00 1 2020-08-20 23:10:48.410953 2020-08-20 23:10:48.410953 \N 229.00 \N 0.00 0.00 3482 2748 1226 1.0 139.00 0.00 0.00 139.00 1 2020-08-20 23:10:48.440476 2020-08-20 23:10:48.440476 \N 139.00 \N 0.00 0.00 3483 2748 1213 2.0 278.00 0.00 0.00 278.00 1 2020-08-20 23:10:48.46909 2020-08-20 23:10:48.46909 \N 139.00 \N 0.00 0.00 3484 2748 630 1.0 344.83 55.17 299.00 400.00 1 2020-08-20 23:10:48.498248 2020-08-20 23:10:48.498248 \N 699.00 \N 299.00 0.00 3485 2749 494 1.0 550.00 0.00 349.00 550.00 1 2020-08-21 21:18:49.098642 2020-08-21 21:18:49.098642 \N 899.00 \N 349.00 0.00 3486 2750 968 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-21 21:47:03.138437 2020-08-21 21:47:03.138437 \N 1499.00 \N 0.00 0.00 3487 2751 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-21 22:59:40.616055 2020-08-21 22:59:40.616055 \N 1499.00 \N 0.00 0.00 3488 2752 1126 2.0 2998.00 0.00 0.00 2998.00 1 2020-08-21 23:02:33.35721 2020-08-21 23:02:33.35721 \N 1499.00 \N 0.00 0.00 3489 2753 1025 1.0 450.00 0.00 449.00 450.00 1 2020-08-22 17:01:56.505551 2020-08-22 17:01:56.505551 \N 899.00 \N 449.00 0.00 3490 2754 275 1.0 215.52 34.48 179.00 250.00 1 2020-08-22 18:16:40.053902 2020-08-22 18:16:40.053902 \N 429.00 \N 179.00 0.00 3491 2754 38 1.0 344.83 55.17 399.00 400.00 1 2020-08-22 18:16:40.083126 2020-08-22 18:16:40.083126 \N 799.00 \N 399.00 0.00 3492 2754 414 1.0 86.21 13.79 559.00 100.00 1 2020-08-22 18:16:40.106636 2020-08-22 18:16:40.106636 \N 659.00 \N 559.00 0.00 3493 2755 1188 1.0 899.00 0.00 0.00 899.00 1 2020-08-22 20:54:56.138632 2020-08-22 20:54:56.138632 \N 899.00 \N 0.00 0.00 3494 2756 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-23 00:16:43.020573 2020-08-23 00:16:43.020573 \N 1499.00 \N 0.00 0.00 3495 2757 680 1.0 250.00 0.00 249.00 250.00 1 2020-08-24 16:18:15.664687 2020-08-24 16:18:15.664687 \N 499.00 \N 249.00 0.00 3496 2757 620 1.0 250.00 0.00 199.00 250.00 1 2020-08-24 16:18:15.704489 2020-08-24 16:18:15.704489 \N 449.00 \N 199.00 0.00 3497 2758 1236 1.0 369.00 0.00 0.00 369.00 1 2020-08-24 18:24:19.524504 2020-08-24 18:24:19.524504 \N 369.00 \N 0.00 0.00 3498 2759 1118 1.0 1360.00 0.00 239.00 1360.00 1 2020-08-24 19:34:26.129088 2020-08-24 19:34:26.129088 \N 1599.00 \N 239.00 0.00 3499 2759 1126 1.0 1275.00 0.00 224.00 1275.00 1 2020-08-24 19:34:26.158927 2020-08-24 19:34:26.158927 \N 1499.00 \N 224.00 0.00 3500 2760 687 1.0 350.00 0.00 349.00 350.00 1 2020-08-24 20:39:36.322328 2020-08-24 20:39:36.322328 \N 699.00 \N 349.00 0.00 3501 2761 575 1.0 585.00 0.00 584.00 585.00 1 2020-08-24 21:11:34.948459 2020-08-24 21:11:34.948459 \N 1169.00 \N 584.00 0.00 3502 2762 1002 1.0 250.00 0.00 349.00 250.00 1 2020-08-24 21:37:58.870253 2020-08-24 21:37:58.870253 \N 599.00 \N 349.00 0.00 3503 2763 1004 1.0 479.00 0.00 50.00 479.00 1 2020-08-24 22:04:43.65278 2020-08-24 22:04:43.65278 \N 529.00 \N 50.00 0.00 3504 2763 1230 1.0 149.00 0.00 0.00 149.00 1 2020-08-24 22:04:43.687253 2020-08-24 22:04:43.687253 \N 149.00 \N 0.00 0.00 3505 2764 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-08-24 22:54:56.896618 2020-08-24 22:54:56.896618 \N 1599.00 \N 0.00 0.00 3506 2764 907 1.0 60.00 0.00 0.00 60.00 1 2020-08-24 22:54:56.925836 2020-08-24 22:54:56.925836 \N 60.00 \N 0.00 0.00 3507 2765 669 1.0 250.00 0.00 169.00 250.00 1 2020-08-25 00:47:09.51588 2020-08-25 00:47:09.51588 \N 419.00 \N 169.00 0.00 3508 2766 369 1.0 42.24 6.76 0.00 49.00 1 2020-08-25 00:49:31.44539 2020-08-25 00:49:31.44539 \N 49.00 \N 0.00 0.00 3509 2767 494 1.0 569.00 0.00 330.00 569.00 1 2020-08-25 21:57:11.199167 2020-08-25 21:57:11.199167 \N 899.00 \N 330.00 0.00 3510 2767 628 1.0 947.41 151.59 0.00 1099.00 1 2020-08-25 21:57:11.237811 2020-08-25 21:57:11.237811 \N 1099.00 \N 0.00 0.00 3511 2767 627 1.0 500.00 0.00 499.00 500.00 1 2020-08-25 21:57:11.261993 2020-08-25 21:57:11.261993 \N 999.00 \N 499.00 0.00 3512 2767 624 1.0 1099.00 0.00 0.00 1099.00 1 2020-08-25 21:57:11.28468 2020-08-25 21:57:11.28468 \N 1099.00 \N 0.00 0.00 3513 2767 501 1.0 500.00 0.00 299.00 500.00 1 2020-08-25 21:57:11.307636 2020-08-25 21:57:11.307636 \N 799.00 \N 299.00 0.00 3514 2767 527 1.0 500.00 0.00 249.00 500.00 1 2020-08-25 21:57:11.331726 2020-08-25 21:57:11.331726 \N 749.00 \N 249.00 0.00 3515 2767 221 1.0 431.03 68.96 429.00 499.99 1 2020-08-25 21:57:11.354397 2020-08-25 21:57:11.354397 \N 929.00 \N 429.00 0.00 3516 2768 269 2.0 775.00 124.00 899.00 899.00 1 2020-08-25 22:26:41.6085 2020-08-25 22:26:41.6085 \N 899.00 \N 899.00 0.00 3517 2769 60 1.0 301.72 48.28 349.00 350.00 1 2020-08-25 22:50:33.902263 2020-08-25 22:50:33.902263 \N 699.00 \N 349.00 0.00 3518 2769 991 1.0 350.00 0.00 349.00 350.00 1 2020-08-25 22:50:33.925658 2020-08-25 22:50:33.925658 \N 699.00 \N 349.00 0.00 3519 2770 654 1.0 1050.00 0.00 349.00 1050.00 1 2020-08-25 22:59:28.332739 2020-08-25 22:59:28.332739 \N 1399.00 \N 349.00 0.00 3520 2770 907 1.0 60.00 0.00 0.00 60.00 1 2020-08-25 22:59:28.356524 2020-08-25 22:59:28.356524 \N 60.00 \N 0.00 0.00 3521 2771 548 1.0 750.00 0.00 749.00 750.00 1 2020-08-25 23:14:01.660109 2020-08-25 23:14:01.660109 \N 1499.00 \N 749.00 0.00 3522 2772 684 1.0 750.00 0.00 749.00 750.00 1 2020-08-25 23:50:07.690853 2020-08-25 23:50:07.690853 \N 1499.00 \N 749.00 0.00 3523 2773 722 1.0 1615.00 0.00 284.00 1615.00 1 2020-08-26 00:48:46.736734 2020-08-26 00:48:46.736734 \N 1899.00 \N 284.00 0.00 3524 2774 684 1.0 750.00 0.00 749.00 750.00 1 2020-08-26 01:19:09.35242 2020-08-26 01:19:09.35242 \N 1499.00 \N 749.00 0.00 3525 2775 1064 1.0 494.00 0.00 0.00 494.00 1 2020-08-26 18:32:54.539133 2020-08-26 18:32:54.539133 \N 494.00 \N 0.00 0.00 3526 2776 988 1.0 799.00 0.00 0.00 799.00 1 2020-08-26 19:15:28.442162 2020-08-26 19:15:28.442162 \N 799.00 \N 0.00 0.00 3527 2777 237 1.0 258.62 41.38 599.00 300.00 1 2020-08-26 20:26:35.238848 2020-08-26 20:26:35.238848 \N 899.00 \N 599.00 0.00 3528 2777 299 1.0 215.52 34.48 449.00 250.00 1 2020-08-26 20:26:35.277936 2020-08-26 20:26:35.277936 \N 699.00 \N 449.00 0.00 3529 2777 86 1.0 215.52 34.48 519.00 250.00 1 2020-08-26 20:26:35.302252 2020-08-26 20:26:35.302252 \N 769.00 \N 519.00 0.00 3530 2778 1241 1.0 189.00 0.00 0.00 189.00 1 2020-08-26 21:59:40.142525 2020-08-26 21:59:40.142525 \N 189.00 \N 0.00 0.00 3531 2779 1122 2.0 3198.00 0.00 0.00 3198.00 1 2020-08-26 23:41:58.801799 2020-08-26 23:41:58.801799 \N 1599.00 \N 0.00 0.00 3532 2779 1126 2.0 2998.00 0.00 0.00 2998.00 1 2020-08-26 23:41:58.824237 2020-08-26 23:41:58.824237 \N 1499.00 \N 0.00 0.00 3533 2780 1168 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-26 23:44:32.832631 2020-08-26 23:44:32.832631 \N 1499.00 \N 0.00 0.00 3534 2781 527 1.0 500.00 0.00 249.00 500.00 1 2020-08-27 00:12:18.676243 2020-08-27 00:12:18.676243 \N 749.00 \N 249.00 0.00 3535 2781 501 1.0 500.00 0.00 299.00 500.00 1 2020-08-27 00:12:18.70053 2020-08-27 00:12:18.70053 \N 799.00 \N 299.00 0.00 3536 2781 1231 1.0 119.00 0.00 0.00 119.00 1 2020-08-27 00:12:18.722597 2020-08-27 00:12:18.722597 \N 119.00 \N 0.00 0.00 3537 2782 1138 1.0 999.00 0.00 0.00 999.00 1 2020-08-27 01:17:41.978375 2020-08-27 01:17:41.978375 \N 999.00 \N 0.00 0.00 3538 2783 981 1.0 400.00 0.00 369.00 400.00 1 2020-08-27 22:18:46.641446 2020-08-27 22:18:46.641446 \N 769.00 \N 369.00 0.00 3539 2784 619 1.0 250.00 0.00 319.00 250.00 1 2020-08-27 22:29:39.901643 2020-08-27 22:29:39.901643 \N 569.00 \N 319.00 0.00 3540 2784 991 1.0 350.00 0.00 349.00 350.00 1 2020-08-27 22:29:39.933449 2020-08-27 22:29:39.933449 \N 699.00 \N 349.00 0.00 3541 2785 984 1.0 250.00 0.00 229.00 250.00 1 2020-08-27 22:58:53.214877 2020-08-27 22:58:53.214877 \N 479.00 \N 229.00 0.00 3542 2786 1024 1.0 899.00 0.00 0.00 899.00 1 2020-08-27 23:18:17.916264 2020-08-27 23:18:17.916264 \N 899.00 \N 0.00 0.00 3543 2787 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-08-28 00:15:30.182637 2020-08-28 00:15:30.182637 \N 1599.00 \N 0.00 0.00 3544 2788 1237 1.0 420.00 0.00 0.00 420.00 1 2020-08-28 00:25:58.471501 2020-08-28 00:25:58.471501 \N 420.00 \N 0.00 0.00 3545 2789 1297 1.0 1299.00 0.00 0.00 1299.00 1 2020-08-28 01:02:33.887906 2020-08-28 01:02:33.887906 \N 1299.00 \N 0.00 0.00 3546 2790 1000 1.0 350.00 0.00 379.00 350.00 1 2020-08-28 17:01:50.070504 2020-08-28 17:01:50.070504 \N 729.00 \N 379.00 0.00 3547 2791 1294 2.0 1998.00 0.00 0.00 1998.00 1 2020-08-28 18:21:56.268379 2020-08-28 18:21:56.268379 \N 999.00 \N 0.00 0.00 3548 2792 1225 1.0 179.00 0.00 0.00 179.00 1 2020-08-28 18:40:30.843315 2020-08-28 18:40:30.843315 \N 179.00 \N 0.00 0.00 3549 2793 1294 1.0 999.00 0.00 0.00 999.00 0 2020-08-28 19:07:20.327514 2020-08-28 19:09:53.413522 \N 999.00 \N 0.00 0.00 3550 2794 1294 1.0 999.00 0.00 0.00 999.00 1 2020-08-28 19:10:44.282752 2020-08-28 19:10:44.282752 \N 999.00 \N 0.00 0.00 3551 2794 907 1.0 60.00 0.00 0.00 60.00 1 2020-08-28 19:10:44.305917 2020-08-28 19:10:44.305917 \N 60.00 \N 0.00 0.00 3552 2795 1278 1.0 299.00 0.00 0.00 299.00 1 2020-08-28 19:15:56.451345 2020-08-28 19:15:56.451345 \N 299.00 \N 0.00 0.00 3553 2795 1293 1.0 1799.00 0.00 0.00 1799.00 1 2020-08-28 19:15:56.476649 2020-08-28 19:15:56.476649 \N 1799.00 \N 0.00 0.00 3554 2796 295 1.0 431.03 68.96 489.00 499.99 1 2020-08-28 19:29:43.370558 2020-08-28 19:29:43.370558 \N 989.00 \N 489.00 0.00 3555 2796 1240 1.0 189.00 0.00 0.00 189.00 1 2020-08-28 19:29:43.410184 2020-08-28 19:29:43.410184 \N 189.00 \N 0.00 0.00 3556 2797 1118 1.0 1565.00 0.00 34.00 1565.00 1 2020-08-28 19:35:17.832451 2020-08-28 19:35:17.832451 \N 1599.00 \N 34.00 0.00 3557 2798 695 1.0 1000.00 0.00 299.00 1000.00 1 2020-08-28 21:20:16.465177 2020-08-28 21:20:16.465177 \N 1299.00 \N 299.00 0.00 3558 2798 669 1.0 250.00 0.00 169.00 250.00 1 2020-08-28 21:20:16.502175 2020-08-28 21:20:16.502175 \N 419.00 \N 169.00 0.00 3559 2798 1012 1.0 250.00 0.00 339.00 250.00 1 2020-08-28 21:20:16.524109 2020-08-28 21:20:16.524109 \N 589.00 \N 339.00 0.00 3560 2799 1294 1.0 999.00 0.00 0.00 999.00 1 2020-08-28 22:35:39.225749 2020-08-28 22:35:39.225749 \N 999.00 \N 0.00 0.00 3562 2801 1022 1.0 500.00 0.00 369.00 500.00 1 2020-08-28 23:55:54.24598 2020-08-28 23:55:54.24598 \N 869.00 \N 369.00 0.00 3561 2800 569 1.0 250.00 0.00 239.00 250.00 0 2020-08-28 23:40:49.546267 2020-08-29 00:28:00.911825 \N 489.00 \N 239.00 0.00 3563 2802 1012 1.0 250.00 0.00 339.00 250.00 1 2020-08-29 00:29:37.333485 2020-08-29 00:29:37.333485 \N 589.00 \N 339.00 0.00 3564 2803 1294 1.0 999.00 0.00 0.00 999.00 1 2020-08-29 00:43:51.771264 2020-08-29 00:43:51.771264 \N 999.00 \N 0.00 0.00 3565 2803 1185 1.0 1599.00 0.00 0.00 1599.00 1 2020-08-29 00:43:51.807228 2020-08-29 00:43:51.807228 \N 1599.00 \N 0.00 0.00 3566 2803 333 1.0 826.72 132.28 240.00 959.00 1 2020-08-29 00:43:51.828543 2020-08-29 00:43:51.828543 \N 1199.00 \N 240.00 0.00 3567 2804 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-29 00:48:05.876389 2020-08-29 00:48:05.876389 \N 1499.00 \N 0.00 0.00 3568 2805 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-08-29 17:19:43.499098 2020-08-29 17:19:43.499098 \N 1599.00 \N 0.00 0.00 3569 2805 1184 1.0 1699.00 0.00 0.00 1699.00 1 2020-08-29 17:19:43.537474 2020-08-29 17:19:43.537474 \N 1699.00 \N 0.00 0.00 3570 2806 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-29 17:41:33.954453 2020-08-29 17:41:33.954453 \N 1499.00 \N 0.00 0.00 3571 2807 217 1.0 86.21 13.79 649.00 100.00 1 2020-08-29 18:04:55.820537 2020-08-29 18:04:55.820537 \N 749.00 \N 649.00 0.00 3572 2807 71 1.0 86.21 13.79 249.00 100.00 1 2020-08-29 18:04:55.859663 2020-08-29 18:04:55.859663 \N 349.00 \N 249.00 0.00 3573 2808 691 1.0 650.00 0.00 649.00 650.00 1 2020-08-29 19:30:06.697626 2020-08-29 19:30:06.697626 \N 1299.00 \N 649.00 0.00 3574 2809 905 1.0 120.00 0.00 0.00 120.00 1 2020-08-29 20:49:36.874397 2020-08-29 20:49:36.874397 \N 120.00 \N 0.00 0.00 3575 2810 1180 1.0 1799.00 0.00 0.00 1799.00 1 2020-08-29 22:05:02.334543 2020-08-29 22:05:02.334543 \N 1799.00 \N 0.00 0.00 3576 2811 258 1.0 620.69 99.31 479.00 720.00 1 2020-08-29 22:07:29.633578 2020-08-29 22:07:29.633578 \N 1199.00 \N 479.00 0.00 3577 2812 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-29 22:26:09.158329 2020-08-29 22:26:09.158329 \N 1499.00 \N 0.00 0.00 3578 2813 233 1.0 86.21 13.79 769.00 100.00 1 2020-08-29 22:33:35.740598 2020-08-29 22:33:35.740598 \N 869.00 \N 769.00 0.00 3579 2814 678 1.0 650.00 0.00 649.00 650.00 1 2020-08-29 23:30:06.375064 2020-08-29 23:30:06.375064 \N 1299.00 \N 649.00 0.00 3580 2814 992 1.0 350.00 0.00 349.00 350.00 1 2020-08-29 23:30:06.398756 2020-08-29 23:30:06.398756 \N 699.00 \N 349.00 0.00 3581 2815 1299 1.0 1599.00 0.00 0.00 1599.00 1 2020-08-30 00:37:35.118196 2020-08-30 00:37:35.118196 \N 1599.00 \N 0.00 0.00 3582 2816 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-31 21:06:58.861484 2020-08-31 21:06:58.861484 \N 1499.00 \N 0.00 0.00 3583 2817 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-08-31 21:18:36.593318 2020-08-31 21:18:36.593318 \N 1599.00 \N 0.00 0.00 3584 2817 1231 1.0 119.00 0.00 0.00 119.00 1 2020-08-31 21:18:36.637837 2020-08-31 21:18:36.637837 \N 119.00 \N 0.00 0.00 3585 2817 1067 1.0 230.00 0.00 0.00 230.00 1 2020-08-31 21:18:36.667222 2020-08-31 21:18:36.667222 \N 230.00 \N 0.00 0.00 3208 2561 1126 1.0 1499.00 0.00 0.00 1499.00 0 2020-07-13 19:49:41.370387 2020-08-31 21:28:30.468918 \N 1499.00 \N 0.00 0.00 3586 2818 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-31 21:29:14.38055 2020-08-31 21:29:14.38055 \N 1499.00 \N 0.00 0.00 3587 2819 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-08-31 21:31:15.192565 2020-08-31 21:31:15.192565 \N 1499.00 \N 0.00 0.00 3588 2820 1294 1.0 999.00 0.00 0.00 999.00 1 2020-08-31 21:31:22.30481 2020-08-31 21:31:22.30481 \N 999.00 \N 0.00 0.00 3589 2821 1294 1.0 999.00 0.00 0.00 999.00 0 2020-08-31 21:34:14.98567 2020-08-31 21:34:59.149409 \N 999.00 \N 0.00 0.00 3590 2822 1294 1.0 999.00 0.00 0.00 999.00 1 2020-08-31 21:35:30.117444 2020-08-31 21:35:30.117444 \N 999.00 \N 0.00 0.00 3592 2823 1301 1.0 1399.00 0.00 0.00 1399.00 0 2020-09-01 18:38:30.772603 2020-09-01 18:38:51.100346 \N 1399.00 \N 0.00 0.00 3591 2823 1118 1.0 1599.00 0.00 0.00 1599.00 0 2020-09-01 18:38:30.743516 2020-09-01 18:38:51.129651 \N 1599.00 \N 0.00 0.00 3593 2824 1301 1.0 1399.00 0.00 0.00 1399.00 1 2020-09-01 18:39:19.108083 2020-09-01 18:39:19.108083 \N 1399.00 \N 0.00 0.00 3594 2824 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-09-01 18:39:19.133884 2020-09-01 18:39:19.133884 \N 1599.00 \N 0.00 0.00 3595 2825 141 1.0 258.62 41.38 269.00 300.00 1 2020-09-01 22:04:17.178392 2020-09-01 22:04:17.178392 \N 569.00 \N 269.00 0.00 3596 2826 1281 1.0 119.00 0.00 0.00 119.00 1 2020-09-01 22:05:59.772986 2020-09-01 22:05:59.772986 \N 119.00 \N 0.00 0.00 3597 2826 1202 1.0 139.00 0.00 0.00 139.00 1 2020-09-01 22:05:59.796921 2020-09-01 22:05:59.796921 \N 139.00 \N 0.00 0.00 3598 2827 1024 1.0 899.00 0.00 0.00 899.00 1 2020-09-01 22:56:41.646449 2020-09-01 22:56:41.646449 \N 899.00 \N 0.00 0.00 3599 2828 666 1.0 869.00 0.00 0.00 869.00 1 2020-09-01 23:28:37.678458 2020-09-01 23:28:37.678458 \N 869.00 \N 0.00 0.00 3600 2829 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-01 23:49:16.987987 2020-09-01 23:49:16.987987 \N 1499.00 \N 0.00 0.00 3601 2830 266 1.0 1378.45 220.55 0.00 1599.00 0 2020-09-02 01:31:40.433257 2020-09-02 01:32:04.77171 \N 1599.00 \N 0.00 0.00 3602 2831 266 1.0 1378.45 220.55 0.00 1599.00 1 2020-09-02 01:32:53.108412 2020-09-02 01:32:53.108412 \N 1599.00 \N 0.00 0.00 3603 2832 1206 1.0 139.00 0.00 0.00 139.00 1 2020-09-02 17:28:28.385317 2020-09-02 17:28:28.385317 \N 139.00 \N 0.00 0.00 3604 2833 238 1.0 258.62 41.38 699.00 300.00 1 2020-09-02 18:44:26.449426 2020-09-02 18:44:26.449426 \N 999.00 \N 699.00 0.00 3605 2834 1118 1.0 1599.00 0.00 0.00 1599.00 0 2020-09-02 19:16:40.899513 2020-09-02 19:16:53.438434 \N 1599.00 \N 0.00 0.00 3606 2835 1287 1.0 189.00 0.00 0.00 189.00 1 2020-09-02 19:17:06.691889 2020-09-02 19:17:06.691889 \N 189.00 \N 0.00 0.00 3607 2836 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-09-02 19:17:53.088052 2020-09-02 19:17:53.088052 \N 1599.00 \N 0.00 0.00 3608 2837 487 1.0 1799.00 0.00 0.00 1799.00 1 2020-09-02 20:13:11.600761 2020-09-02 20:13:11.600761 \N 1799.00 \N 0.00 0.00 3609 2837 49 1.0 0.00 0.00 1599.00 0.00 1 2020-09-02 20:13:11.625008 2020-09-02 20:13:11.625008 \N 1599.00 \N 0.00 100.00 3610 2838 663 1.0 350.00 0.00 349.00 350.00 1 2020-09-02 20:19:28.914423 2020-09-02 20:19:28.914423 \N 699.00 \N 349.00 0.00 3611 2839 1301 1.0 1399.00 0.00 0.00 1399.00 1 2020-09-03 01:09:59.806468 2020-09-03 01:09:59.806468 \N 1399.00 \N 0.00 0.00 3612 2840 1196 1.0 410.00 0.00 0.00 410.00 1 2020-09-03 16:26:21.258537 2020-09-03 16:26:21.258537 \N 410.00 \N 0.00 0.00 3613 2841 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-03 19:58:54.003981 2020-09-03 19:58:54.003981 \N 1499.00 \N 0.00 0.00 3614 2842 1217 1.0 139.00 0.00 0.00 139.00 1 2020-09-03 20:02:46.156588 2020-09-03 20:02:46.156588 \N 139.00 \N 0.00 0.00 3615 2843 528 1.0 699.00 0.00 0.00 699.00 1 2020-09-03 21:01:41.429 2020-09-03 21:01:41.429 \N 699.00 \N 0.00 0.00 3616 2843 494 1.0 550.00 0.00 349.00 550.00 1 2020-09-03 21:01:41.454839 2020-09-03 21:01:41.454839 \N 899.00 \N 349.00 0.00 3617 2844 672 1.0 699.00 0.00 0.00 699.00 1 2020-09-03 21:07:21.068757 2020-09-03 21:07:21.068757 \N 699.00 \N 0.00 0.00 3618 2845 28 1.0 3189.66 510.35 0.00 3700.01 1 2020-09-03 21:18:34.527326 2020-09-03 21:18:34.527326 \N 3700.00 \N 0.00 0.00 3619 2846 990 1.0 599.00 0.00 0.00 599.00 0 2020-09-03 21:30:42.174105 2020-09-03 21:31:15.448108 \N 599.00 \N 0.00 0.00 3620 2846 989 1.0 799.00 0.00 0.00 799.00 0 2020-09-03 21:30:42.195794 2020-09-03 21:31:15.424317 \N 799.00 \N 0.00 0.00 3621 2847 155 1.0 258.62 41.38 299.00 300.00 1 2020-09-03 21:32:38.265044 2020-09-03 21:32:38.265044 \N 599.00 \N 299.00 0.00 3622 2847 989 1.0 799.00 0.00 0.00 799.00 1 2020-09-03 21:32:38.288376 2020-09-03 21:32:38.288376 \N 799.00 \N 0.00 0.00 3623 2847 990 1.0 599.00 0.00 0.00 599.00 1 2020-09-03 21:32:38.3098 2020-09-03 21:32:38.3098 \N 599.00 \N 0.00 0.00 3624 2848 1206 1.0 139.00 0.00 0.00 139.00 1 2020-09-03 21:50:06.773239 2020-09-03 21:50:06.773239 \N 139.00 \N 0.00 0.00 3625 2848 1217 1.0 139.00 0.00 0.00 139.00 1 2020-09-03 21:50:06.810974 2020-09-03 21:50:06.810974 \N 139.00 \N 0.00 0.00 3626 2849 1022 1.0 500.00 0.00 369.00 500.00 1 2020-09-03 21:54:31.314548 2020-09-03 21:54:31.314548 \N 869.00 \N 369.00 0.00 3627 2850 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-09-03 22:54:58.184499 2020-09-03 22:54:58.184499 \N 1599.00 \N 0.00 0.00 3628 2850 1090 1.0 139.00 0.00 0.00 139.00 1 2020-09-03 22:54:58.209902 2020-09-03 22:54:58.209902 \N 139.00 \N 0.00 0.00 3629 2851 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-09-03 23:11:29.156048 2020-09-03 23:11:29.156048 \N 1599.00 \N 0.00 0.00 3630 2852 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-03 23:59:45.385872 2020-09-03 23:59:45.385872 \N 999.00 \N 0.00 0.00 3631 2853 675 1.0 500.00 0.00 349.00 500.00 1 2020-09-04 00:26:48.293735 2020-09-04 00:26:48.293735 \N 849.00 \N 349.00 0.00 3632 2854 1130 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-04 18:38:19.127677 2020-09-04 18:38:19.127677 \N 1499.00 \N 0.00 0.00 3633 2854 1148 1.0 1349.00 0.00 50.00 1349.00 1 2020-09-04 18:38:19.176976 2020-09-04 18:38:19.176976 \N 1399.00 \N 50.00 0.00 3634 2855 687 1.0 200.00 0.00 499.00 200.00 1 2020-09-04 18:46:36.464525 2020-09-04 18:46:36.464525 \N 699.00 \N 499.00 0.00 3635 2856 1293 1.0 1799.00 0.00 0.00 1799.00 1 2020-09-04 19:06:49.003163 2020-09-04 19:06:49.003163 \N 1799.00 \N 0.00 0.00 3636 2857 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-04 19:45:28.635289 2020-09-04 19:45:28.635289 \N 999.00 \N 0.00 0.00 3637 2858 675 1.0 500.00 0.00 349.00 500.00 1 2020-09-04 20:00:49.138372 2020-09-04 20:00:49.138372 \N 849.00 \N 349.00 0.00 3638 2859 1122 1.0 1599.00 0.00 0.00 1599.00 1 2020-09-04 20:24:48.319662 2020-09-04 20:24:48.319662 \N 1599.00 \N 0.00 0.00 3388 2691 1126 1.0 1499.00 0.00 0.00 1499.00 0 2020-08-13 20:16:48.692721 2020-09-04 22:31:18.873932 \N 1499.00 \N 0.00 0.00 3639 2860 1293 1.0 1799.00 0.00 0.00 1799.00 1 2020-09-04 22:43:26.098723 2020-09-04 22:43:26.098723 \N 1799.00 \N 0.00 0.00 3640 2861 1019 1.0 699.00 0.00 0.00 699.00 1 2020-09-04 23:40:09.016865 2020-09-04 23:40:09.016865 \N 699.00 \N 0.00 0.00 3641 2862 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-09-04 23:42:01.883766 2020-09-04 23:42:01.883766 \N 1599.00 \N 0.00 0.00 3642 2863 1337 1.0 999.00 0.00 0.00 999.00 1 2020-09-04 23:46:29.849738 2020-09-04 23:46:29.849738 \N 999.00 \N 0.00 0.00 3643 2864 668 1.0 299.00 0.00 0.00 299.00 1 2020-09-05 20:04:56.762429 2020-09-05 20:04:56.762429 \N 299.00 \N 0.00 0.00 3644 2865 268 1.0 672.41 107.59 519.00 780.00 1 2020-09-07 16:52:18.381368 2020-09-07 16:52:18.381368 \N 1299.00 \N 519.00 0.00 3645 2866 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-07 23:12:54.355679 2020-09-07 23:12:54.355679 \N 999.00 \N 0.00 0.00 3646 2867 1182 1.0 1799.00 0.00 0.00 1799.00 1 2020-09-08 00:24:35.465671 2020-09-08 00:24:35.465671 \N 1799.00 \N 0.00 0.00 3461 2736 1126 1.0 1499.00 0.00 0.00 1499.00 0 2020-08-19 18:07:03.05591 2020-09-08 00:30:28.264281 \N 1499.00 \N 0.00 0.00 3647 2868 654 1.0 1399.00 0.00 0.00 1399.00 1 2020-09-08 00:30:51.747659 2020-09-08 00:30:51.747659 \N 1399.00 \N 0.00 0.00 3648 2869 1180 1.0 1799.00 0.00 0.00 1799.00 0 2020-09-08 16:33:44.098469 2020-09-08 16:33:49.794134 \N 1799.00 \N 0.00 0.00 3649 2870 1180 1.0 1799.00 0.00 0.00 1799.00 1 2020-09-08 16:34:42.561037 2020-09-08 16:34:42.561037 \N 1799.00 \N 0.00 0.00 3650 2871 1342 1.0 1699.00 0.00 0.00 1699.00 1 2020-09-08 16:38:19.804784 2020-09-08 16:38:19.804784 \N 1699.00 \N 0.00 0.00 3651 2872 1317 1.0 799.00 0.00 0.00 799.00 1 2020-09-08 19:28:57.492013 2020-09-08 19:28:57.492013 \N 799.00 \N 0.00 0.00 3652 2873 476 1.0 85.34 13.65 0.00 98.99 1 2020-09-08 20:25:55.572912 2020-09-08 20:25:55.572912 \N 99.00 \N 0.00 0.00 3653 2874 590 1.0 1099.00 0.00 0.00 1099.00 1 2020-09-08 21:23:30.784442 2020-09-08 21:23:30.784442 \N 1099.00 \N 0.00 0.00 3654 2875 1293 1.0 1799.00 0.00 0.00 1799.00 1 2020-09-08 23:27:58.407593 2020-09-08 23:27:58.407593 \N 1799.00 \N 0.00 0.00 3655 2875 1138 1.0 850.00 0.00 149.00 850.00 1 2020-09-08 23:27:58.434081 2020-09-08 23:27:58.434081 \N 999.00 \N 149.00 0.00 3656 2875 1099 1.0 99.00 0.00 0.00 99.00 1 2020-09-08 23:27:58.458412 2020-09-08 23:27:58.458412 \N 99.00 \N 0.00 0.00 3657 2876 1331 1.0 399.00 0.00 0.00 399.00 1 2020-09-09 01:02:27.731407 2020-09-09 01:02:27.731407 \N 399.00 \N 0.00 0.00 3658 2876 1335 1.0 689.00 0.00 0.00 689.00 1 2020-09-09 01:02:27.760433 2020-09-09 01:02:27.760433 \N 689.00 \N 0.00 0.00 3659 2877 1306 1.0 549.00 0.00 0.00 549.00 1 2020-09-09 05:53:37.820955 2020-09-09 05:53:37.820955 \N 549.00 \N 0.00 0.00 3660 2878 1303 1.0 1699.00 0.00 0.00 1699.00 0 2020-09-09 16:42:07.116483 2020-09-09 16:47:57.93701 \N 1699.00 \N 0.00 0.00 3661 2879 1303 1.0 1699.00 0.00 0.00 1699.00 1 2020-09-09 16:49:08.124641 2020-09-09 16:49:08.124641 \N 1699.00 \N 0.00 0.00 3662 2879 1306 1.0 549.00 0.00 0.00 549.00 1 2020-09-09 16:49:08.149184 2020-09-09 16:49:08.149184 \N 549.00 \N 0.00 0.00 3663 2880 993 1.0 529.00 0.00 0.00 529.00 1 2020-09-09 17:58:11.891138 2020-09-09 17:58:11.891138 \N 529.00 \N 0.00 0.00 3664 2880 1306 1.0 549.00 0.00 0.00 549.00 1 2020-09-09 17:58:11.935175 2020-09-09 17:58:11.935175 \N 549.00 \N 0.00 0.00 3665 2880 1218 1.0 249.00 0.00 0.00 249.00 1 2020-09-09 17:58:11.958444 2020-09-09 17:58:11.958444 \N 249.00 \N 0.00 0.00 3666 2881 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-09 19:36:51.415855 2020-09-09 19:36:51.415855 \N 999.00 \N 0.00 0.00 3667 2882 417 1.0 630.17 100.83 218.00 731.00 1 2020-09-09 20:25:40.612049 2020-09-09 20:25:40.612049 \N 949.00 \N 218.00 0.00 3668 2882 980 1.0 499.00 0.00 0.00 499.00 1 2020-09-09 20:25:40.652146 2020-09-09 20:25:40.652146 \N 499.00 \N 0.00 0.00 3669 2883 1339 1.0 529.00 0.00 0.00 529.00 1 2020-09-09 20:58:55.798076 2020-09-09 20:58:55.798076 \N 529.00 \N 0.00 0.00 3670 2884 1293 1.0 1799.00 0.00 0.00 1799.00 1 2020-09-09 21:52:41.557293 2020-09-09 21:52:41.557293 \N 1799.00 \N 0.00 0.00 3671 2884 905 1.0 120.00 0.00 0.00 120.00 1 2020-09-09 21:52:41.582682 2020-09-09 21:52:41.582682 \N 120.00 \N 0.00 0.00 3672 2885 1096 1.0 69.00 0.00 0.00 69.00 1 2020-09-09 22:18:11.546843 2020-09-09 22:18:11.546843 \N 69.00 \N 0.00 0.00 3673 2886 1335 1.0 689.00 0.00 0.00 689.00 1 2020-09-09 23:27:31.303527 2020-09-09 23:27:31.303527 \N 689.00 \N 0.00 0.00 3674 2887 1231 1.0 119.00 0.00 0.00 119.00 1 2020-09-09 23:33:02.636375 2020-09-09 23:33:02.636375 \N 119.00 \N 0.00 0.00 3675 2888 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-09 23:43:30.199595 2020-09-09 23:43:30.199595 \N 1499.00 \N 0.00 0.00 3676 2889 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-09 23:59:29.049453 2020-09-09 23:59:29.049453 \N 1499.00 \N 0.00 0.00 3677 2890 1194 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-10 00:25:13.796395 2020-09-10 00:25:13.796395 \N 1499.00 \N 0.00 0.00 3678 2891 1343 1.0 699.00 0.00 0.00 699.00 1 2020-09-10 01:04:52.12451 2020-09-10 01:04:52.12451 \N 699.00 \N 0.00 0.00 3679 2892 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-10 19:25:48.846028 2020-09-10 19:25:48.846028 \N 999.00 \N 0.00 0.00 3680 2893 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-10 19:38:59.991697 2020-09-10 19:38:59.991697 \N 1499.00 \N 0.00 0.00 3681 2893 1081 1.0 129.00 0.00 0.00 129.00 1 2020-09-10 19:39:00.065205 2020-09-10 19:39:00.065205 \N 129.00 \N 0.00 0.00 3682 2894 1233 1.0 189.00 0.00 0.00 189.00 1 2020-09-10 23:10:44.122074 2020-09-10 23:10:44.122074 \N 189.00 \N 0.00 0.00 3683 2895 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-10 23:49:40.857742 2020-09-10 23:49:40.857742 \N 1499.00 \N 0.00 0.00 3684 2896 912 1.0 1599.00 0.00 0.00 1599.00 1 2020-09-11 00:45:03.782173 2020-09-11 00:45:03.782173 \N 1599.00 \N 0.00 0.00 3685 2896 369 1.0 42.24 6.76 0.00 49.00 1 2020-09-11 00:45:03.80763 2020-09-11 00:45:03.80763 \N 49.00 \N 0.00 0.00 3686 2897 494 1.0 599.00 0.00 300.00 599.00 1 2020-09-11 01:02:41.972373 2020-09-11 01:02:41.972373 \N 899.00 \N 300.00 0.00 3687 2898 1170 1.0 1499.00 0.00 0.00 1499.00 0 2020-09-11 01:13:26.993244 2020-09-11 01:13:33.529822 \N 1499.00 \N 0.00 0.00 3688 2899 1170 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-11 01:14:58.112929 2020-09-11 01:14:58.112929 \N 1499.00 \N 0.00 0.00 3689 2900 1312 1.0 699.00 0.00 0.00 699.00 1 2020-09-11 16:52:26.093813 2020-09-11 16:52:26.093813 \N 699.00 \N 0.00 0.00 3690 2901 713 1.0 799.00 0.00 0.00 799.00 1 2020-09-11 20:31:58.330798 2020-09-11 20:31:58.330798 \N 799.00 \N 0.00 0.00 3691 2902 713 1.0 799.00 0.00 0.00 799.00 0 2020-09-11 20:34:22.504259 2020-09-11 20:34:39.5535 \N 799.00 \N 0.00 0.00 3692 2902 668 1.0 299.00 0.00 0.00 299.00 0 2020-09-11 20:34:22.527762 2020-09-11 20:34:39.528431 \N 299.00 \N 0.00 0.00 3694 2903 668 1.0 299.00 0.00 0.00 299.00 0 2020-09-11 20:35:54.514453 2020-09-11 20:36:00.731533 \N 299.00 \N 0.00 0.00 3693 2903 713 1.0 799.00 0.00 0.00 799.00 0 2020-09-11 20:35:54.487307 2020-09-11 20:36:00.763948 \N 799.00 \N 0.00 0.00 3695 2904 713 1.0 799.00 0.00 0.00 799.00 1 2020-09-11 20:36:27.664152 2020-09-11 20:36:27.664152 \N 799.00 \N 0.00 0.00 3696 2904 668 1.0 299.00 0.00 0.00 299.00 1 2020-09-11 20:36:27.690841 2020-09-11 20:36:27.690841 \N 299.00 \N 0.00 0.00 3697 2905 571 1.0 799.00 0.00 0.00 799.00 1 2020-09-11 20:37:59.062364 2020-09-11 20:37:59.062364 \N 799.00 \N 0.00 0.00 3698 2906 668 1.0 299.00 0.00 0.00 299.00 1 2020-09-11 20:38:53.224158 2020-09-11 20:38:53.224158 \N 299.00 \N 0.00 0.00 3699 2907 1316 1.0 649.00 0.00 0.00 649.00 1 2020-09-11 21:43:22.792051 2020-09-11 21:43:22.792051 \N 649.00 \N 0.00 0.00 3700 2907 1339 1.0 529.00 0.00 0.00 529.00 1 2020-09-11 21:43:22.826339 2020-09-11 21:43:22.826339 \N 529.00 \N 0.00 0.00 3701 2908 1332 1.0 499.00 0.00 0.00 499.00 1 2020-09-11 22:14:44.706766 2020-09-11 22:14:44.706766 \N 499.00 \N 0.00 0.00 3702 2908 1343 1.0 699.00 0.00 0.00 699.00 1 2020-09-11 22:14:44.731347 2020-09-11 22:14:44.731347 \N 699.00 \N 0.00 0.00 3703 2909 1331 1.0 399.00 0.00 0.00 399.00 1 2020-09-11 22:22:58.345129 2020-09-11 22:22:58.345129 \N 399.00 \N 0.00 0.00 3704 2910 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-11 23:31:43.769498 2020-09-11 23:31:43.769498 \N 999.00 \N 0.00 0.00 3705 2911 1325 1.0 969.00 0.00 0.00 969.00 1 2020-09-12 18:24:54.860405 2020-09-12 18:24:54.860405 \N 969.00 \N 0.00 0.00 3706 2912 1294 1.0 999.00 0.00 0.00 999.00 0 2020-09-12 20:34:08.717967 2020-09-12 20:37:50.398125 \N 999.00 \N 0.00 0.00 3707 2913 1294 1.0 999.00 0.00 0.00 999.00 0 2020-09-12 20:58:55.656494 2020-09-12 21:00:12.486672 \N 999.00 \N 0.00 0.00 3708 2914 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-12 21:00:56.241307 2020-09-12 21:00:56.241307 \N 999.00 \N 0.00 0.00 3709 2915 1277 1.0 239.00 0.00 0.00 239.00 1 2020-09-12 22:19:25.572123 2020-09-12 22:19:25.572123 \N 239.00 \N 0.00 0.00 3710 2915 1237 1.0 420.00 0.00 0.00 420.00 1 2020-09-12 22:19:25.610223 2020-09-12 22:19:25.610223 \N 420.00 \N 0.00 0.00 3711 2916 1159 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-12 23:15:27.608486 2020-09-12 23:15:27.608486 \N 1499.00 \N 0.00 0.00 3712 2917 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-12 23:19:12.600602 2020-09-12 23:19:12.600602 \N 999.00 \N 0.00 0.00 3713 2918 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-12 23:33:59.460021 2020-09-12 23:33:59.460021 \N 999.00 \N 0.00 0.00 3716 2920 1142 1.0 1999.00 0.00 0.00 1999.00 1 2020-09-13 01:30:16.129838 2020-09-13 01:30:16.129838 \N 1999.00 \N 0.00 0.00 3717 2921 1209 1.0 139.00 0.00 0.00 139.00 1 2020-09-13 01:38:48.192227 2020-09-13 01:38:48.192227 \N 139.00 \N 0.00 0.00 3718 2921 1230 1.0 149.00 0.00 0.00 149.00 1 2020-09-13 01:38:48.231958 2020-09-13 01:38:48.231958 \N 149.00 \N 0.00 0.00 3719 2922 1313 2.0 1538.00 0.00 0.00 1538.00 1 2020-09-14 18:29:44.520545 2020-09-14 18:29:44.520545 \N 769.00 \N 0.00 0.00 3720 2923 1323 1.0 499.00 0.00 0.00 499.00 1 2020-09-14 19:04:48.735026 2020-09-14 19:04:48.735026 \N 499.00 \N 0.00 0.00 3721 2924 1310 1.0 599.00 0.00 0.00 599.00 1 2020-09-14 19:34:52.803921 2020-09-14 19:34:52.803921 \N 599.00 \N 0.00 0.00 3722 2925 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-14 21:05:02.257887 2020-09-14 21:05:02.257887 \N 999.00 \N 0.00 0.00 3723 2926 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-14 21:10:16.919315 2020-09-14 21:10:16.919315 \N 999.00 \N 0.00 0.00 3724 2927 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-14 21:51:31.37459 2020-09-14 21:51:31.37459 \N 999.00 \N 0.00 0.00 3725 2928 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-15 00:58:23.593321 2020-09-15 00:58:23.593321 \N 999.00 \N 0.00 0.00 3726 2929 1318 1.0 999.00 0.00 0.00 999.00 1 2020-09-15 18:26:43.348282 2020-09-15 18:26:43.348282 \N 999.00 \N 0.00 0.00 3727 2930 1294 1.0 999.00 0.00 0.00 999.00 0 2020-09-15 18:48:31.165159 2020-09-15 18:48:38.042677 \N 999.00 \N 0.00 0.00 3728 2931 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-15 18:49:08.604121 2020-09-15 18:49:08.604121 \N 999.00 \N 0.00 0.00 3729 2932 1126 1.0 1499.00 0.00 0.00 1499.00 0 2020-09-15 20:14:37.393007 2020-09-15 20:14:49.162096 \N 1499.00 \N 0.00 0.00 3730 2933 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-15 20:14:58.520493 2020-09-15 20:14:58.520493 \N 1499.00 \N 0.00 0.00 3731 2934 1326 1.0 999.00 0.00 0.00 999.00 1 2020-09-15 21:10:10.648093 2020-09-15 21:10:10.648093 \N 999.00 \N 0.00 0.00 3732 2935 1239 1.0 119.00 0.00 0.00 119.00 1 2020-09-15 21:16:21.637055 2020-09-15 21:16:21.637055 \N 119.00 \N 0.00 0.00 3733 2936 979 1.0 250.00 0.00 219.00 250.00 1 2020-09-15 21:34:56.882709 2020-09-15 21:34:56.882709 \N 469.00 \N 219.00 0.00 3734 2937 1295 1.0 1899.00 0.00 0.00 1899.00 1 2020-09-15 21:38:48.352159 2020-09-15 21:38:48.352159 \N 1899.00 \N 0.00 0.00 3735 2938 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-15 21:40:24.946448 2020-09-15 21:40:24.946448 \N 1499.00 \N 0.00 0.00 3736 2939 1293 1.0 1799.00 0.00 0.00 1799.00 1 2020-09-15 22:01:56.507415 2020-09-15 22:01:56.507415 \N 1799.00 \N 0.00 0.00 3737 2940 1335 1.0 689.00 0.00 0.00 689.00 1 2020-09-15 22:30:00.221251 2020-09-15 22:30:00.221251 \N 689.00 \N 0.00 0.00 3738 2941 1318 1.0 999.00 0.00 0.00 999.00 1 2020-09-15 23:08:04.351563 2020-09-15 23:08:04.351563 \N 999.00 \N 0.00 0.00 3739 2942 1311 1.0 1049.00 0.00 0.00 1049.00 1 2020-09-15 23:17:27.04791 2020-09-15 23:17:27.04791 \N 1049.00 \N 0.00 0.00 3740 2942 367 2.0 431.03 68.96 200.00 499.99 1 2020-09-15 23:17:27.075151 2020-09-15 23:17:27.075151 \N 350.00 \N 200.00 0.00 3741 2943 1236 1.0 300.00 0.00 69.00 300.00 1 2020-09-15 23:45:50.143309 2020-09-15 23:45:50.143309 \N 369.00 \N 69.00 0.00 3742 2944 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-16 00:39:56.249922 2020-09-16 00:39:56.249922 \N 1499.00 \N 0.00 0.00 3743 2945 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-16 21:43:17.791645 2020-09-16 21:43:17.791645 \N 1499.00 \N 0.00 0.00 3744 2946 1317 1.0 799.00 0.00 0.00 799.00 1 2020-09-16 21:45:02.122046 2020-09-16 21:45:02.122046 \N 799.00 \N 0.00 0.00 3745 2947 90 1.0 86.21 13.79 399.00 100.00 1 2020-09-16 21:47:31.556974 2020-09-16 21:47:31.556974 \N 499.00 \N 399.00 0.00 3746 2948 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-16 21:55:56.677996 2020-09-16 21:55:56.677996 \N 1499.00 \N 0.00 0.00 3747 2949 1294 2.0 1998.00 0.00 0.00 1998.00 1 2020-09-17 01:40:13.905993 2020-09-17 01:40:13.905993 \N 999.00 \N 0.00 0.00 3748 2950 528 1.0 699.00 0.00 0.00 699.00 1 2020-09-17 18:58:37.227127 2020-09-17 18:58:37.227127 \N 699.00 \N 0.00 0.00 3749 2951 1183 1.0 1899.00 0.00 0.00 1899.00 1 2020-09-17 19:24:32.539463 2020-09-17 19:24:32.539463 \N 1899.00 \N 0.00 0.00 3750 2952 1325 1.0 969.00 0.00 0.00 969.00 1 2020-09-17 19:30:30.524576 2020-09-17 19:30:30.524576 \N 969.00 \N 0.00 0.00 3751 2953 1139 1.0 1299.00 0.00 0.00 1299.00 1 2020-09-17 19:35:21.725104 2020-09-17 19:35:21.725104 \N 1299.00 \N 0.00 0.00 3753 2955 1322 1.0 499.00 0.00 0.00 499.00 1 2020-09-17 21:37:49.341823 2020-09-17 21:37:49.341823 \N 499.00 \N 0.00 0.00 3754 2955 1315 1.0 369.00 0.00 0.00 369.00 1 2020-09-17 21:37:49.369529 2020-09-17 21:37:49.369529 \N 369.00 \N 0.00 0.00 3755 2955 1334 2.0 794.00 0.00 184.00 794.00 1 2020-09-17 21:37:49.391737 2020-09-17 21:37:49.391737 \N 489.00 \N 184.00 0.00 3752 2954 1294 1.0 999.00 0.00 0.00 999.00 0 2020-09-17 21:22:26.155008 2020-09-17 22:03:28.550681 \N 999.00 \N 0.00 0.00 3756 2956 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-17 22:03:49.209456 2020-09-17 22:03:49.209456 \N 999.00 \N 0.00 0.00 3757 2957 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-17 22:53:00.1793 2020-09-17 22:53:00.1793 \N 999.00 \N 0.00 0.00 3758 2958 1029 1.0 69.00 0.00 0.00 69.00 1 2020-09-17 23:33:00.24478 2020-09-17 23:33:00.24478 \N 69.00 \N 0.00 0.00 3759 2959 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-17 23:35:30.197219 2020-09-17 23:35:30.197219 \N 999.00 \N 0.00 0.00 3760 2960 1159 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-18 00:06:24.811106 2020-09-18 00:06:24.811106 \N 1499.00 \N 0.00 0.00 3761 2961 352 1.0 1025.86 164.14 709.00 1190.00 1 2020-09-18 00:06:55.494429 2020-09-18 00:06:55.494429 \N 1899.00 \N 709.00 0.00 3762 2962 992 1.0 699.00 0.00 0.00 699.00 1 2020-09-18 16:56:56.740888 2020-09-18 16:56:56.740888 \N 699.00 \N 0.00 0.00 3763 2963 1334 1.0 489.00 0.00 0.00 489.00 1 2020-09-18 21:35:35.877064 2020-09-18 21:35:35.877064 \N 489.00 \N 0.00 0.00 3764 2964 1010 1.0 599.00 0.00 0.00 599.00 1 2020-09-18 21:42:47.215845 2020-09-18 21:42:47.215845 \N 599.00 \N 0.00 0.00 3765 2965 395 1.0 861.21 137.79 0.00 999.00 1 2020-09-18 22:33:40.227392 2020-09-18 22:33:40.227392 \N 999.00 \N 0.00 0.00 3766 2965 1070 1.0 209.00 0.00 0.00 209.00 1 2020-09-18 22:33:40.290363 2020-09-18 22:33:40.290363 \N 209.00 \N 0.00 0.00 3714 2919 1295 1.0 1899.00 0.00 0.00 1899.00 0 2020-09-12 23:49:07.477761 2020-10-16 01:34:56.748353 \N 1899.00 \N 0.00 0.00 3767 2966 1327 1.0 469.00 0.00 0.00 469.00 1 2020-09-18 22:36:16.655063 2020-09-18 22:36:16.655063 \N 469.00 \N 0.00 0.00 3768 2967 695 1.0 650.00 0.00 649.00 650.00 1 2020-09-18 22:45:20.934386 2020-09-18 22:45:20.934386 \N 1299.00 \N 649.00 0.00 3769 2968 1346 1.0 259.00 0.00 0.00 259.00 1 2020-09-19 00:29:27.785119 2020-09-19 00:29:27.785119 \N 259.00 \N 0.00 0.00 3770 2968 1347 1.0 371.00 0.00 0.00 371.00 1 2020-09-19 00:29:27.811532 2020-09-19 00:29:27.811532 \N 371.00 \N 0.00 0.00 3771 2968 1345 1.0 450.00 0.00 49.00 450.00 1 2020-09-19 00:29:27.837647 2020-09-19 00:29:27.837647 \N 499.00 \N 49.00 0.00 3772 2968 1344 1.0 536.00 0.00 13.00 536.00 1 2020-09-19 00:29:27.860946 2020-09-19 00:29:27.860946 \N 549.00 \N 13.00 0.00 3773 2969 1344 1.0 549.00 0.00 0.00 549.00 1 2020-09-19 00:48:53.515311 2020-09-19 00:48:53.515311 \N 549.00 \N 0.00 0.00 3774 2970 1334 1.0 489.00 0.00 0.00 489.00 1 2020-09-19 17:17:56.199238 2020-09-19 17:17:56.199238 \N 489.00 \N 0.00 0.00 3775 2970 1327 1.0 469.00 0.00 0.00 469.00 1 2020-09-19 17:17:56.245937 2020-09-19 17:17:56.245937 \N 469.00 \N 0.00 0.00 3776 2970 1209 1.0 139.00 0.00 0.00 139.00 1 2020-09-19 17:17:56.27066 2020-09-19 17:17:56.27066 \N 139.00 \N 0.00 0.00 3777 2971 1118 1.0 1599.00 0.00 0.00 1599.00 0 2020-09-19 18:25:14.473232 2020-09-19 18:29:58.579691 \N 1599.00 \N 0.00 0.00 3778 2972 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-09-19 18:30:21.287716 2020-09-19 18:30:21.287716 \N 1599.00 \N 0.00 0.00 3779 2973 220 1.0 560.34 89.65 649.00 649.99 1 2020-09-19 20:14:25.287633 2020-09-19 20:14:25.287633 \N 1299.00 \N 649.00 0.00 3780 2974 1299 1.0 1599.00 0.00 0.00 1599.00 1 2020-09-19 21:58:58.215953 2020-09-19 21:58:58.215953 \N 1599.00 \N 0.00 0.00 3781 2975 163 1.0 688.79 110.21 181.00 799.00 1 2020-09-19 22:01:38.850272 2020-09-19 22:01:38.850272 \N 980.00 \N 181.00 0.00 3782 2976 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-19 22:15:09.277254 2020-09-19 22:15:09.277254 \N 999.00 \N 0.00 0.00 3783 2977 1348 1.0 1099.00 0.00 0.00 1099.00 1 2020-09-19 22:24:47.937444 2020-09-19 22:24:47.937444 \N 1099.00 \N 0.00 0.00 3784 2978 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-19 22:26:34.26619 2020-09-19 22:26:34.26619 \N 999.00 \N 0.00 0.00 3785 2979 1315 1.0 369.00 0.00 0.00 369.00 1 2020-09-19 22:50:33.280817 2020-09-19 22:50:33.280817 \N 369.00 \N 0.00 0.00 3786 2980 949 1.0 549.00 0.00 0.00 549.00 0 2020-09-19 23:42:07.465716 2020-09-19 23:42:10.903557 \N 549.00 \N 0.00 0.00 3787 2981 949 1.0 330.00 0.00 219.00 330.00 1 2020-09-19 23:42:41.95763 2020-09-19 23:42:41.95763 \N 549.00 \N 219.00 0.00 3788 2982 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-19 23:45:02.983291 2020-09-19 23:45:02.983291 \N 999.00 \N 0.00 0.00 3789 2983 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-20 00:05:39.937349 2020-09-20 00:05:39.937349 \N 999.00 \N 0.00 0.00 3790 2984 1334 1.0 489.00 0.00 0.00 489.00 1 2020-09-20 00:26:18.157976 2020-09-20 00:26:18.157976 \N 489.00 \N 0.00 0.00 3791 2984 319 1.0 215.52 34.48 219.00 250.00 1 2020-09-20 00:26:18.187247 2020-09-20 00:26:18.187247 \N 469.00 \N 219.00 0.00 3792 2985 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-20 00:31:02.9418 2020-09-20 00:31:02.9418 \N 999.00 \N 0.00 0.00 3793 2986 1318 1.0 650.00 0.00 349.00 650.00 1 2020-09-20 00:33:25.483737 2020-09-20 00:33:25.483737 \N 999.00 \N 349.00 0.00 3794 2987 149 1.0 215.52 34.48 219.00 250.00 1 2020-09-20 00:48:37.566738 2020-09-20 00:48:37.566738 \N 469.00 \N 219.00 0.00 3795 2988 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-20 01:00:24.203189 2020-09-20 01:00:24.203189 \N 999.00 \N 0.00 0.00 3796 2989 369 1.0 42.24 6.76 0.00 49.00 1 2020-09-20 01:03:23.407161 2020-09-20 01:03:23.407161 \N 49.00 \N 0.00 0.00 3799 2992 1348 1.0 1099.00 0.00 0.00 1099.00 1 2020-09-21 18:43:10.087954 2020-09-21 18:43:10.087954 \N 1099.00 \N 0.00 0.00 3800 2993 1305 1.0 1189.00 0.00 0.00 1189.00 1 2020-09-21 18:45:22.311064 2020-09-21 18:45:22.311064 \N 1189.00 \N 0.00 0.00 3801 2994 1315 2.0 738.00 0.00 0.00 738.00 1 2020-09-21 19:01:50.198213 2020-09-21 19:01:50.198213 \N 369.00 \N 0.00 0.00 3802 2995 1311 1.0 1049.00 0.00 0.00 1049.00 1 2020-09-21 19:58:21.328381 2020-09-21 19:58:21.328381 \N 1049.00 \N 0.00 0.00 3803 2996 1006 1.0 699.00 0.00 0.00 699.00 1 2020-09-21 20:09:38.915654 2020-09-21 20:09:38.915654 \N 699.00 \N 0.00 0.00 3804 2997 1295 1.0 1899.00 0.00 0.00 1899.00 1 2020-09-21 21:11:01.066568 2020-09-21 21:11:01.066568 \N 1899.00 \N 0.00 0.00 3805 2997 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-21 21:11:01.090453 2020-09-21 21:11:01.090453 \N 1499.00 \N 0.00 0.00 3806 2998 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-21 21:59:52.104992 2020-09-21 21:59:52.104992 \N 999.00 \N 0.00 0.00 3812 3000 1306 1.0 549.00 0.00 0.00 549.00 1 2020-09-21 22:18:51.415747 2020-09-21 22:18:51.415747 \N 549.00 \N 0.00 0.00 3813 3001 682 1.0 649.00 0.00 0.00 649.00 1 2020-09-21 23:01:42.410515 2020-09-21 23:01:42.410515 \N 649.00 \N 0.00 0.00 3814 3002 1350 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-21 23:29:05.408271 2020-09-21 23:29:05.408271 \N 1499.00 \N 0.00 0.00 3815 3003 1005 1.0 529.00 0.00 0.00 529.00 1 2020-09-22 00:06:58.54004 2020-09-22 00:06:58.54004 \N 529.00 \N 0.00 0.00 3816 3004 1329 1.0 479.00 0.00 0.00 479.00 1 2020-09-22 00:37:02.980096 2020-09-22 00:37:02.980096 \N 479.00 \N 0.00 0.00 3817 3005 564 1.0 990.00 0.00 109.00 990.00 1 2020-09-22 18:32:17.858955 2020-09-22 18:32:17.858955 \N 1099.00 \N 109.00 0.00 3818 3006 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-09-22 19:18:52.714288 2020-09-22 19:18:52.714288 \N 1599.00 \N 0.00 0.00 3819 3007 1343 1.0 699.00 0.00 0.00 699.00 1 2020-09-22 19:20:11.069136 2020-09-22 19:20:11.069136 \N 699.00 \N 0.00 0.00 3820 3008 1020 1.0 729.00 0.00 0.00 729.00 1 2020-09-22 20:02:05.466247 2020-09-22 20:02:05.466247 \N 729.00 \N 0.00 0.00 3821 3008 670 1.0 639.00 0.00 0.00 639.00 1 2020-09-22 20:02:05.493544 2020-09-22 20:02:05.493544 \N 639.00 \N 0.00 0.00 3822 3009 427 1.0 431.03 68.96 499.00 499.99 1 2020-09-22 22:53:50.567579 2020-09-22 22:53:50.567579 \N 999.00 \N 499.00 0.00 3823 3010 455 1.0 399.00 0.00 0.00 399.00 1 2020-09-22 23:13:46.05914 2020-09-22 23:13:46.05914 \N 399.00 \N 0.00 0.00 3824 3010 907 1.0 60.00 0.00 0.00 60.00 1 2020-09-22 23:13:46.097808 2020-09-22 23:13:46.097808 \N 60.00 \N 0.00 0.00 3825 3011 1252 1.0 110.00 0.00 0.00 110.00 1 2020-09-22 23:27:44.616474 2020-09-22 23:27:44.616474 \N 110.00 \N 0.00 0.00 3826 3012 578 1.0 300.00 0.00 499.00 300.00 1 2020-09-22 23:38:10.967444 2020-09-22 23:38:10.967444 \N 799.00 \N 499.00 0.00 3827 3013 1180 1.0 1799.00 0.00 0.00 1799.00 1 2020-09-23 00:49:43.857693 2020-09-23 00:49:43.857693 \N 1799.00 \N 0.00 0.00 3828 3014 1226 1.0 139.00 0.00 0.00 139.00 1 2020-09-23 00:54:46.223086 2020-09-23 00:54:46.223086 \N 139.00 \N 0.00 0.00 3829 3015 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-23 01:01:03.689456 2020-09-23 01:01:03.689456 \N 999.00 \N 0.00 0.00 3832 3017 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-23 20:09:29.842383 2020-09-23 20:09:29.842383 \N 999.00 \N 0.00 0.00 3833 3018 369 2.0 84.48 13.52 0.00 98.00 1 2020-09-23 20:36:17.802732 2020-09-23 20:36:17.802732 \N 49.00 \N 0.00 0.00 3834 3019 1339 1.0 529.00 0.00 0.00 529.00 1 2020-09-23 21:23:59.954871 2020-09-23 21:23:59.954871 \N 529.00 \N 0.00 0.00 3835 3019 369 1.0 42.24 6.76 0.00 49.00 1 2020-09-23 21:23:59.984084 2020-09-23 21:23:59.984084 \N 49.00 \N 0.00 0.00 3836 3020 1306 1.0 549.00 0.00 0.00 549.00 1 2020-09-23 21:27:27.245803 2020-09-23 21:27:27.245803 \N 549.00 \N 0.00 0.00 3837 3021 1337 1.0 999.00 0.00 0.00 999.00 1 2020-09-23 22:05:31.431972 2020-09-23 22:05:31.431972 \N 999.00 \N 0.00 0.00 3838 3021 1270 1.0 229.00 0.00 0.00 229.00 1 2020-09-23 22:05:31.459238 2020-09-23 22:05:31.459238 \N 229.00 \N 0.00 0.00 3839 3022 1315 1.0 369.00 0.00 0.00 369.00 1 2020-09-23 22:17:23.824855 2020-09-23 22:17:23.824855 \N 369.00 \N 0.00 0.00 3840 3023 376 1.0 431.03 68.96 299.00 499.99 1 2020-09-23 22:50:26.844361 2020-09-23 22:50:26.844361 \N 799.00 \N 299.00 0.00 3830 3016 710 1.0 1199.00 0.00 0.00 1199.00 0 2020-09-23 19:04:09.715429 2020-09-24 00:46:55.915298 \N 1199.00 \N 0.00 0.00 3798 2991 1294 1.0 999.00 0.00 0.00 999.00 0 2020-09-21 18:39:45.193299 2020-11-01 01:47:23.720808 \N 999.00 \N 0.00 0.00 3797 2990 1348 1.0 1099.00 0.00 0.00 1099.00 0 2020-09-20 01:05:49.582589 2020-11-26 18:31:14.024634 \N 1099.00 \N 0.00 0.00 3811 2999 1259 1.0 310.00 0.00 0.00 310.00 0 2020-09-21 22:09:47.266817 2020-11-28 23:24:22.756484 \N 310.00 \N 0.00 0.00 3810 2999 1273 1.0 269.00 0.00 0.00 269.00 0 2020-09-21 22:09:47.230403 2020-11-28 23:24:22.781158 \N 269.00 \N 0.00 0.00 3809 2999 1334 1.0 489.00 0.00 0.00 489.00 0 2020-09-21 22:09:47.204263 2020-11-28 23:24:22.806265 \N 489.00 \N 0.00 0.00 3808 2999 507 1.0 479.00 0.00 0.00 479.00 0 2020-09-21 22:09:47.178042 2020-11-28 23:24:22.829941 \N 479.00 \N 0.00 0.00 3807 2999 1324 1.0 589.00 0.00 0.00 589.00 0 2020-09-21 22:09:47.142163 2020-11-28 23:24:22.852052 \N 589.00 \N 0.00 0.00 3841 3024 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-23 22:50:55.805506 2020-09-23 22:50:55.805506 \N 999.00 \N 0.00 0.00 3842 3025 1311 1.0 1049.00 0.00 0.00 1049.00 1 2020-09-23 23:13:34.056283 2020-09-23 23:13:34.056283 \N 1049.00 \N 0.00 0.00 3843 3026 1335 1.0 689.00 0.00 0.00 689.00 1 2020-09-23 23:33:37.834267 2020-09-23 23:33:37.834267 \N 689.00 \N 0.00 0.00 3844 3027 1122 1.0 1599.00 0.00 0.00 1599.00 1 2020-09-23 23:46:17.346793 2020-09-23 23:46:17.346793 \N 1599.00 \N 0.00 0.00 3845 3028 1315 1.0 369.00 0.00 0.00 369.00 1 2020-09-23 23:49:22.628719 2020-09-23 23:49:22.628719 \N 369.00 \N 0.00 0.00 3846 3029 1315 2.0 619.00 0.00 119.00 619.00 1 2020-09-23 23:51:24.750342 2020-09-23 23:51:24.750342 \N 369.00 \N 119.00 0.00 3847 3030 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-09-24 00:13:14.199711 2020-09-24 00:13:14.199711 \N 1599.00 \N 0.00 0.00 3848 3030 1334 1.0 489.00 0.00 0.00 489.00 1 2020-09-24 00:13:14.232689 2020-09-24 00:13:14.232689 \N 489.00 \N 0.00 0.00 3849 3030 1315 1.0 369.00 0.00 0.00 369.00 1 2020-09-24 00:13:14.264283 2020-09-24 00:13:14.264283 \N 369.00 \N 0.00 0.00 3850 3031 1228 1.0 169.00 0.00 0.00 169.00 0 2020-09-24 00:17:52.374737 2020-09-24 00:17:59.308058 \N 169.00 \N 0.00 0.00 3851 3032 1228 1.0 169.00 0.00 0.00 169.00 1 2020-09-24 00:18:41.384335 2020-09-24 00:18:41.384335 \N 169.00 \N 0.00 0.00 3852 3033 713 1.0 799.00 0.00 0.00 799.00 1 2020-09-24 00:24:44.56652 2020-09-24 00:24:44.56652 \N 799.00 \N 0.00 0.00 3853 3033 668 1.0 299.00 0.00 0.00 299.00 1 2020-09-24 00:24:44.602936 2020-09-24 00:24:44.602936 \N 299.00 \N 0.00 0.00 3831 3016 579 1.0 350.00 0.00 349.00 350.00 0 2020-09-23 19:04:09.788077 2020-09-24 00:46:55.882898 \N 699.00 \N 349.00 0.00 3854 3034 710 1.0 150.00 0.00 1049.00 150.00 1 2020-09-24 00:49:05.759621 2020-09-24 00:49:05.759621 \N 1199.00 \N 1049.00 0.00 3855 3034 579 1.0 350.00 0.00 349.00 350.00 1 2020-09-24 00:49:06.329563 2020-09-24 00:49:06.329563 \N 699.00 \N 349.00 0.00 3856 3035 1301 1.0 1399.00 0.00 0.00 1399.00 1 2020-09-24 17:10:18.978217 2020-09-24 17:10:18.978217 \N 1399.00 \N 0.00 0.00 3857 3036 369 2.0 84.48 13.52 0.00 98.00 1 2020-09-24 18:08:13.309244 2020-09-24 18:08:13.309244 \N 49.00 \N 0.00 0.00 3858 3037 1301 1.0 1399.00 0.00 0.00 1399.00 1 2020-09-24 18:23:40.783457 2020-09-24 18:23:40.783457 \N 1399.00 \N 0.00 0.00 3859 3038 1080 1.0 269.00 0.00 0.00 269.00 1 2020-09-24 18:26:18.307739 2020-09-24 18:26:18.307739 \N 269.00 \N 0.00 0.00 3860 3039 1187 1.0 599.00 0.00 0.00 599.00 1 2020-09-24 18:58:00.090527 2020-09-24 18:58:00.090527 \N 599.00 \N 0.00 0.00 3861 3040 1181 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-24 20:45:30.666733 2020-09-24 20:45:30.666733 \N 1499.00 \N 0.00 0.00 3862 3041 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-24 23:50:29.028212 2020-09-24 23:50:29.028212 \N 999.00 \N 0.00 0.00 3863 3042 1139 1.0 1299.00 0.00 0.00 1299.00 1 2020-09-25 00:02:11.374663 2020-09-25 00:02:11.374663 \N 1299.00 \N 0.00 0.00 3864 3043 1309 1.0 669.00 0.00 0.00 669.00 1 2020-09-25 00:11:16.017888 2020-09-25 00:11:16.017888 \N 669.00 \N 0.00 0.00 3865 3043 1230 1.0 149.00 0.00 0.00 149.00 1 2020-09-25 00:11:16.046904 2020-09-25 00:11:16.046904 \N 149.00 \N 0.00 0.00 3866 3044 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-25 00:28:51.189556 2020-09-25 00:28:51.189556 \N 1499.00 \N 0.00 0.00 3867 3045 1326 1.0 999.00 0.00 0.00 999.00 1 2020-09-25 00:47:39.673519 2020-09-25 00:47:39.673519 \N 999.00 \N 0.00 0.00 3868 3046 1325 1.0 969.00 0.00 0.00 969.00 1 2020-09-25 00:49:39.1554 2020-09-25 00:49:39.1554 \N 969.00 \N 0.00 0.00 3869 3047 1335 1.0 689.00 0.00 0.00 689.00 1 2020-09-25 00:52:33.264523 2020-09-25 00:52:33.264523 \N 689.00 \N 0.00 0.00 3870 3048 1340 1.0 529.00 0.00 0.00 529.00 1 2020-09-25 18:25:28.308667 2020-09-25 18:25:28.308667 \N 529.00 \N 0.00 0.00 3871 3049 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-25 19:46:25.213701 2020-09-25 19:46:25.213701 \N 999.00 \N 0.00 0.00 3872 3050 1327 1.0 469.00 0.00 0.00 469.00 1 2020-09-25 20:08:00.280109 2020-09-25 20:08:00.280109 \N 469.00 \N 0.00 0.00 3873 3050 1332 1.0 499.00 0.00 0.00 499.00 1 2020-09-25 20:08:00.314717 2020-09-25 20:08:00.314717 \N 499.00 \N 0.00 0.00 3874 3050 1314 1.0 499.00 0.00 0.00 499.00 1 2020-09-25 20:08:00.345717 2020-09-25 20:08:00.345717 \N 499.00 \N 0.00 0.00 3875 3050 1230 1.0 149.00 0.00 0.00 149.00 1 2020-09-25 20:08:00.374935 2020-09-25 20:08:00.374935 \N 149.00 \N 0.00 0.00 3876 3051 1149 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-25 23:16:04.14886 2020-09-25 23:16:04.14886 \N 1499.00 \N 0.00 0.00 3877 3052 1328 1.0 569.00 0.00 0.00 569.00 1 2020-09-26 00:33:02.672876 2020-09-26 00:33:02.672876 \N 569.00 \N 0.00 0.00 3878 3052 1223 1.0 369.00 0.00 0.00 369.00 1 2020-09-26 00:33:02.699963 2020-09-26 00:33:02.699963 \N 369.00 \N 0.00 0.00 3879 3053 1325 1.0 969.00 0.00 0.00 969.00 1 2020-09-26 00:43:47.374274 2020-09-26 00:43:47.374274 \N 969.00 \N 0.00 0.00 3880 3053 1239 1.0 119.00 0.00 0.00 119.00 1 2020-09-26 00:43:47.40528 2020-09-26 00:43:47.40528 \N 119.00 \N 0.00 0.00 3881 3054 1020 1.0 729.00 0.00 0.00 729.00 1 2020-09-26 17:46:39.891124 2020-09-26 17:46:39.891124 \N 729.00 \N 0.00 0.00 3882 3054 993 1.0 529.00 0.00 0.00 529.00 1 2020-09-26 17:46:39.931514 2020-09-26 17:46:39.931514 \N 529.00 \N 0.00 0.00 3883 3055 1328 1.0 569.00 0.00 0.00 569.00 1 2020-09-26 18:17:39.823697 2020-09-26 18:17:39.823697 \N 569.00 \N 0.00 0.00 3884 3056 1294 1.0 999.00 0.00 0.00 999.00 0 2020-09-26 18:20:21.636295 2020-09-26 18:20:36.554582 \N 999.00 \N 0.00 0.00 3885 3057 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-26 18:20:59.972406 2020-09-26 18:20:59.972406 \N 999.00 \N 0.00 0.00 3886 3058 123 1.0 86.21 13.79 349.00 100.00 1 2020-09-26 19:00:43.045835 2020-09-26 19:00:43.045835 \N 449.00 \N 349.00 0.00 3887 3059 1047 1.0 139.00 0.00 0.00 139.00 1 2020-09-26 19:23:36.703964 2020-09-26 19:23:36.703964 \N 139.00 \N 0.00 0.00 3888 3060 1336 1.0 549.00 0.00 0.00 549.00 1 2020-09-26 23:09:10.384188 2020-09-26 23:09:10.384188 \N 549.00 \N 0.00 0.00 3889 3060 1317 1.0 799.00 0.00 0.00 799.00 1 2020-09-26 23:09:10.438152 2020-09-26 23:09:10.438152 \N 799.00 \N 0.00 0.00 3890 3060 41 1.0 1637.07 261.93 0.00 1899.00 1 2020-09-26 23:09:10.471448 2020-09-26 23:09:10.471448 \N 1899.00 \N 0.00 0.00 3891 3061 1322 1.0 499.00 0.00 0.00 499.00 1 2020-09-26 23:22:08.675709 2020-09-26 23:22:08.675709 \N 499.00 \N 0.00 0.00 3892 3062 1180 1.0 1799.00 0.00 0.00 1799.00 1 2020-09-26 23:56:48.544152 2020-09-26 23:56:48.544152 \N 1799.00 \N 0.00 0.00 3893 3063 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-27 01:07:22.127428 2020-09-27 01:07:22.127428 \N 1499.00 \N 0.00 0.00 3894 3064 369 1.0 42.24 6.76 0.00 49.00 1 2020-09-27 01:08:59.004503 2020-09-27 01:08:59.004503 \N 49.00 \N 0.00 0.00 3895 3065 647 1.0 100.00 0.00 869.00 100.00 1 2020-09-28 17:30:39.385921 2020-09-28 17:30:39.385921 \N 969.00 \N 869.00 0.00 3897 3067 1310 1.0 599.00 0.00 0.00 599.00 1 2020-09-28 20:39:15.774368 2020-09-28 20:39:15.774368 \N 599.00 \N 0.00 0.00 3898 3067 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-28 20:39:15.803508 2020-09-28 20:39:15.803508 \N 1499.00 \N 0.00 0.00 3899 3067 1348 1.0 1099.00 0.00 0.00 1099.00 1 2020-09-28 20:39:15.831307 2020-09-28 20:39:15.831307 \N 1099.00 \N 0.00 0.00 3900 3067 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-28 20:39:15.859769 2020-09-28 20:39:15.859769 \N 999.00 \N 0.00 0.00 3901 3067 1029 2.0 138.00 0.00 0.00 138.00 1 2020-09-28 20:39:15.887497 2020-09-28 20:39:15.887497 \N 69.00 \N 0.00 0.00 3902 3068 1305 1.0 1189.00 0.00 0.00 1189.00 1 2020-09-28 22:46:37.641053 2020-09-28 22:46:37.641053 \N 1189.00 \N 0.00 0.00 3896 3066 1355 1.0 699.00 0.00 0.00 699.00 0 2020-09-28 19:13:38.839525 2020-09-29 01:01:13.476124 \N 699.00 \N 0.00 0.00 3903 3069 1339 1.0 529.00 0.00 0.00 529.00 1 2020-09-29 19:57:57.599726 2020-09-29 19:57:57.599726 \N 529.00 \N 0.00 0.00 3904 3069 1178 1.0 1899.00 0.00 0.00 1899.00 1 2020-09-29 19:57:57.631045 2020-09-29 19:57:57.631045 \N 1899.00 \N 0.00 0.00 3905 3069 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-29 19:57:57.657901 2020-09-29 19:57:57.657901 \N 1499.00 \N 0.00 0.00 3906 3069 1190 1.0 799.00 0.00 0.00 799.00 1 2020-09-29 19:57:57.684342 2020-09-29 19:57:57.684342 \N 799.00 \N 0.00 0.00 3907 3070 1299 1.0 1599.00 0.00 0.00 1599.00 1 2020-09-29 20:34:08.824298 2020-09-29 20:34:08.824298 \N 1599.00 \N 0.00 0.00 3908 3070 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-29 20:34:08.851378 2020-09-29 20:34:08.851378 \N 999.00 \N 0.00 0.00 3909 3071 1320 1.0 599.00 0.00 0.00 599.00 1 2020-09-29 20:41:53.881453 2020-09-29 20:41:53.881453 \N 599.00 \N 0.00 0.00 3910 3071 1180 1.0 1799.00 0.00 0.00 1799.00 1 2020-09-29 20:41:53.90839 2020-09-29 20:41:53.90839 \N 1799.00 \N 0.00 0.00 3911 3072 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-29 21:06:08.40513 2020-09-29 21:06:08.40513 \N 999.00 \N 0.00 0.00 3912 3073 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-29 21:36:29.892516 2020-09-29 21:36:29.892516 \N 1499.00 \N 0.00 0.00 3913 3073 1339 1.0 529.00 0.00 0.00 529.00 1 2020-09-29 21:36:29.933754 2020-09-29 21:36:29.933754 \N 529.00 \N 0.00 0.00 3914 3073 367 2.0 517.24 82.76 100.00 600.00 1 2020-09-29 21:36:29.959604 2020-09-29 21:36:29.959604 \N 350.00 \N 100.00 0.00 3915 3074 13 1.0 430.17 68.83 0.00 499.00 1 2020-09-29 22:23:54.183242 2020-09-29 22:23:54.183242 \N 499.00 \N 0.00 0.00 3916 3075 529 1.0 799.00 0.00 0.00 799.00 1 2020-09-29 22:35:38.720748 2020-09-29 22:35:38.720748 \N 799.00 \N 0.00 0.00 3917 3076 494 1.0 550.00 0.00 349.00 550.00 1 2020-09-29 22:46:53.456554 2020-09-29 22:46:53.456554 \N 899.00 \N 349.00 0.00 3918 3077 1305 1.0 1189.00 0.00 0.00 1189.00 1 2020-09-29 23:59:23.672569 2020-09-29 23:59:23.672569 \N 1189.00 \N 0.00 0.00 3919 3078 1197 1.0 109.00 0.00 0.00 109.00 1 2020-09-30 00:02:04.338142 2020-09-30 00:02:04.338142 \N 109.00 \N 0.00 0.00 3920 3078 1230 1.0 149.00 0.00 0.00 149.00 1 2020-09-30 00:02:04.367467 2020-09-30 00:02:04.367467 \N 149.00 \N 0.00 0.00 3921 3079 1209 1.0 139.00 0.00 0.00 139.00 1 2020-09-30 00:39:00.134446 2020-09-30 00:39:00.134446 \N 139.00 \N 0.00 0.00 3922 3079 1000 1.0 729.00 0.00 0.00 729.00 1 2020-09-30 00:39:00.16127 2020-09-30 00:39:00.16127 \N 729.00 \N 0.00 0.00 3923 3080 1202 1.0 139.00 0.00 0.00 139.00 1 2020-09-30 19:31:06.697126 2020-09-30 19:31:06.697126 \N 139.00 \N 0.00 0.00 3924 3081 1038 1.0 369.00 0.00 0.00 369.00 0 2020-09-30 19:33:07.205317 2020-09-30 19:33:45.852345 \N 369.00 \N 0.00 0.00 3925 3082 1038 1.0 369.00 0.00 0.00 369.00 1 2020-09-30 19:34:28.285127 2020-09-30 19:34:28.285127 \N 369.00 \N 0.00 0.00 3926 3082 369 2.0 84.48 13.52 0.00 98.00 1 2020-09-30 19:34:28.327588 2020-09-30 19:34:28.327588 \N 49.00 \N 0.00 0.00 3927 3083 1272 1.0 299.00 0.00 0.00 299.00 1 2020-09-30 19:38:17.953021 2020-09-30 19:38:17.953021 \N 299.00 \N 0.00 0.00 3929 3084 367 2.0 603.45 96.55 0.00 700.00 0 2020-09-30 20:28:02.143135 2020-09-30 20:30:53.47613 \N 350.00 \N 0.00 0.00 3928 3084 1271 1.0 320.00 0.00 0.00 320.00 0 2020-09-30 20:28:02.104688 2020-09-30 20:30:53.500051 \N 320.00 \N 0.00 0.00 3930 3085 367 2.0 517.24 82.76 100.00 600.00 1 2020-09-30 20:34:38.385978 2020-09-30 20:34:38.385978 \N 350.00 \N 100.00 0.00 3931 3086 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-09-30 21:11:51.369658 2020-09-30 21:11:51.369658 \N 1499.00 \N 0.00 0.00 3932 3087 177 1.0 602.59 96.41 0.00 699.00 1 2020-09-30 22:12:55.670486 2020-09-30 22:12:55.670486 \N 699.00 \N 0.00 0.00 3933 3087 985 1.0 669.00 0.00 0.00 669.00 1 2020-09-30 22:12:55.709813 2020-09-30 22:12:55.709813 \N 669.00 \N 0.00 0.00 3934 3088 1318 1.0 999.00 0.00 0.00 999.00 1 2020-09-30 22:49:08.839242 2020-09-30 22:49:08.839242 \N 999.00 \N 0.00 0.00 3935 3088 1229 1.0 249.00 0.00 0.00 249.00 1 2020-09-30 22:49:08.865008 2020-09-30 22:49:08.865008 \N 249.00 \N 0.00 0.00 3936 3088 1320 1.0 599.00 0.00 0.00 599.00 1 2020-09-30 22:49:08.888278 2020-09-30 22:49:08.888278 \N 599.00 \N 0.00 0.00 3182 2539 540 1.0 700.00 0.00 899.00 700.00 0 2020-07-08 20:24:37.893397 2020-09-30 22:57:14.571745 \N 1599.00 \N 899.00 0.00 3937 3089 705 1.0 249.00 0.00 0.00 249.00 1 2020-09-30 22:58:46.965498 2020-09-30 22:58:46.965498 \N 249.00 \N 0.00 0.00 3938 3090 1294 1.0 999.00 0.00 0.00 999.00 1 2020-09-30 23:48:23.255308 2020-09-30 23:48:23.255308 \N 999.00 \N 0.00 0.00 3939 3091 1148 1.0 1399.00 0.00 0.00 1399.00 1 2020-09-30 23:59:33.542203 2020-09-30 23:59:33.542203 \N 1399.00 \N 0.00 0.00 3940 3092 994 1.0 1049.00 0.00 0.00 1049.00 1 2020-10-01 01:03:07.238115 2020-10-01 01:03:07.238115 \N 1049.00 \N 0.00 0.00 3941 3093 369 1.0 42.24 6.76 0.00 49.00 1 2020-10-01 17:28:37.538744 2020-10-01 17:28:37.538744 \N 49.00 \N 0.00 0.00 3942 3094 1329 1.0 479.00 0.00 0.00 479.00 1 2020-10-01 18:57:43.300526 2020-10-01 18:57:43.300526 \N 479.00 \N 0.00 0.00 3943 3095 1294 1.0 999.00 0.00 0.00 999.00 1 2020-10-01 23:04:47.492514 2020-10-01 23:04:47.492514 \N 999.00 \N 0.00 0.00 3944 3095 369 1.0 42.24 6.76 0.00 49.00 1 2020-10-01 23:04:47.533897 2020-10-01 23:04:47.533897 \N 49.00 \N 0.00 0.00 3945 3096 98 1.0 86.21 13.79 569.00 100.00 1 2020-10-01 23:07:00.813754 2020-10-01 23:07:00.813754 \N 669.00 \N 569.00 0.00 3946 3097 1312 1.0 699.00 0.00 0.00 699.00 1 2020-10-01 23:13:37.526648 2020-10-01 23:13:37.526648 \N 699.00 \N 0.00 0.00 3947 3098 1355 1.0 699.00 0.00 0.00 699.00 1 2020-10-01 23:21:46.376255 2020-10-01 23:21:46.376255 \N 699.00 \N 0.00 0.00 3948 3099 1003 1.0 669.00 0.00 0.00 669.00 1 2020-10-02 00:05:22.206629 2020-10-02 00:05:22.206629 \N 669.00 \N 0.00 0.00 3949 3100 1294 1.0 999.00 0.00 0.00 999.00 1 2020-10-02 00:52:03.830337 2020-10-02 00:52:03.830337 \N 999.00 \N 0.00 0.00 3950 3100 716 1.0 900.00 0.00 599.00 900.00 1 2020-10-02 00:52:03.870378 2020-10-02 00:52:03.870378 \N 1499.00 \N 599.00 0.00 3951 3101 259 1.0 568.97 91.04 439.00 660.01 1 2020-10-02 16:20:09.956765 2020-10-02 16:20:09.956765 \N 1099.00 \N 439.00 0.00 3952 3102 992 1.0 699.00 0.00 0.00 699.00 1 2020-10-02 21:00:43.1908 2020-10-02 21:00:43.1908 \N 699.00 \N 0.00 0.00 3953 3103 1337 1.0 999.00 0.00 0.00 999.00 1 2020-10-02 21:47:40.825421 2020-10-02 21:47:40.825421 \N 999.00 \N 0.00 0.00 3954 3104 1297 1.0 1299.00 0.00 0.00 1299.00 1 2020-10-02 21:56:12.293205 2020-10-02 21:56:12.293205 \N 1299.00 \N 0.00 0.00 3955 3105 1179 1.0 1199.00 0.00 0.00 1199.00 1 2020-10-02 21:58:37.028129 2020-10-02 21:58:37.028129 \N 1199.00 \N 0.00 0.00 3956 3106 1041 1.0 209.00 0.00 0.00 209.00 1 2020-10-02 23:48:04.392598 2020-10-02 23:48:04.392598 \N 209.00 \N 0.00 0.00 3957 3107 1327 1.0 469.00 0.00 0.00 469.00 1 2020-10-03 00:11:20.664883 2020-10-03 00:11:20.664883 \N 469.00 \N 0.00 0.00 3958 3107 1012 1.0 250.00 0.00 339.00 250.00 1 2020-10-03 00:11:20.6904 2020-10-03 00:11:20.6904 \N 589.00 \N 339.00 0.00 3959 3108 1176 1.0 799.00 0.00 0.00 799.00 1 2020-10-03 00:18:20.925303 2020-10-03 00:18:20.925303 \N 799.00 \N 0.00 0.00 3960 3108 1357 1.0 1399.00 0.00 0.00 1399.00 1 2020-10-03 00:18:20.950618 2020-10-03 00:18:20.950618 \N 1399.00 \N 0.00 0.00 3961 3109 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-10-03 00:21:51.246622 2020-10-03 00:21:51.246622 \N 1499.00 \N 0.00 0.00 3962 3109 1294 1.0 999.00 0.00 0.00 999.00 1 2020-10-03 00:21:51.287446 2020-10-03 00:21:51.287446 \N 999.00 \N 0.00 0.00 3963 3110 1331 1.0 399.00 0.00 0.00 399.00 1 2020-10-03 22:27:47.908128 2020-10-03 22:27:47.908128 \N 399.00 \N 0.00 0.00 3964 3111 1332 1.0 499.00 0.00 0.00 499.00 1 2020-10-03 22:29:12.979958 2020-10-03 22:29:12.979958 \N 499.00 \N 0.00 0.00 3965 3112 1331 1.0 399.00 0.00 0.00 399.00 1 2020-10-03 22:45:48.927109 2020-10-03 22:45:48.927109 \N 399.00 \N 0.00 0.00 3966 3112 1310 1.0 599.00 0.00 0.00 599.00 1 2020-10-03 22:45:48.954889 2020-10-03 22:45:48.954889 \N 599.00 \N 0.00 0.00 3967 3113 864 1.0 849.00 0.00 350.00 849.00 1 2020-10-03 23:51:50.104385 2020-10-03 23:51:50.104385 \N 1199.00 \N 350.00 0.00 3968 3114 704 1.0 349.00 0.00 0.00 349.00 1 2020-10-04 00:37:52.41938 2020-10-04 00:37:52.41938 \N 349.00 \N 0.00 0.00 3969 3115 1139 1.0 1299.00 0.00 0.00 1299.00 1 2020-10-04 01:04:53.040109 2020-10-04 01:04:53.040109 \N 1299.00 \N 0.00 0.00 3970 3116 239 1.0 887.07 141.93 0.00 1029.00 1 2020-10-05 19:37:02.808689 2020-10-05 19:37:02.808689 \N 1029.00 \N 0.00 0.00 3971 3117 1314 1.0 499.00 0.00 0.00 499.00 1 2020-10-05 20:11:28.670028 2020-10-05 20:11:28.670028 \N 499.00 \N 0.00 0.00 3972 3117 1004 1.0 529.00 0.00 0.00 529.00 1 2020-10-05 20:11:28.707292 2020-10-05 20:11:28.707292 \N 529.00 \N 0.00 0.00 3973 3118 1306 1.0 549.00 0.00 0.00 549.00 1 2020-10-05 21:34:54.465664 2020-10-05 21:34:54.465664 \N 549.00 \N 0.00 0.00 3974 3119 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-10-06 00:12:54.961549 2020-10-06 00:12:54.961549 \N 1499.00 \N 0.00 0.00 3975 3119 1294 1.0 999.00 0.00 0.00 999.00 1 2020-10-06 00:12:54.991109 2020-10-06 00:12:54.991109 \N 999.00 \N 0.00 0.00 3976 3120 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-10-06 00:17:54.474775 2020-10-06 00:17:54.474775 \N 1499.00 \N 0.00 0.00 3977 3121 673 1.0 560.00 0.00 0.00 560.00 1 2020-10-06 00:18:55.643626 2020-10-06 00:18:55.643626 \N 560.00 \N 0.00 0.00 3978 3122 1290 1.0 199.00 0.00 0.00 199.00 1 2020-10-06 00:29:44.977406 2020-10-06 00:29:44.977406 \N 199.00 \N 0.00 0.00 3979 3123 1328 1.0 569.00 0.00 0.00 569.00 1 2020-10-06 18:34:26.729489 2020-10-06 18:34:26.729489 \N 569.00 \N 0.00 0.00 3980 3124 668 1.0 299.00 0.00 0.00 299.00 1 2020-10-06 19:45:53.97118 2020-10-06 19:45:53.97118 \N 299.00 \N 0.00 0.00 3981 3124 1274 1.0 269.00 0.00 0.00 269.00 1 2020-10-06 19:45:54.018186 2020-10-06 19:45:54.018186 \N 269.00 \N 0.00 0.00 3983 3125 1330 2.0 1398.00 0.00 0.00 1398.00 0 2020-10-06 22:48:20.777023 2020-10-06 22:48:35.941351 \N 699.00 \N 0.00 0.00 3982 3125 993 1.0 529.00 0.00 0.00 529.00 0 2020-10-06 22:48:20.736057 2020-10-06 22:48:35.966342 \N 529.00 \N 0.00 0.00 3984 3126 993 1.0 529.00 0.00 0.00 529.00 1 2020-10-06 22:49:09.784746 2020-10-06 22:49:09.784746 \N 529.00 \N 0.00 0.00 3985 3126 1330 2.0 1398.00 0.00 0.00 1398.00 1 2020-10-06 22:49:09.809872 2020-10-06 22:49:09.809872 \N 699.00 \N 0.00 0.00 3986 3127 675 1.0 849.00 0.00 0.00 849.00 1 2020-10-06 23:05:20.151138 2020-10-06 23:05:20.151138 \N 849.00 \N 0.00 0.00 3987 3127 1357 1.0 1399.00 0.00 0.00 1399.00 1 2020-10-06 23:05:20.181139 2020-10-06 23:05:20.181139 \N 1399.00 \N 0.00 0.00 3988 3128 1309 1.0 669.00 0.00 0.00 669.00 1 2020-10-07 00:44:03.167156 2020-10-07 00:44:03.167156 \N 669.00 \N 0.00 0.00 3989 3128 1316 1.0 649.00 0.00 0.00 649.00 1 2020-10-07 00:44:03.218988 2020-10-07 00:44:03.218988 \N 649.00 \N 0.00 0.00 3990 3129 146 1.0 215.52 34.48 219.00 250.00 1 2020-10-07 16:23:46.05806 2020-10-07 16:23:46.05806 \N 469.00 \N 219.00 0.00 3991 3130 1328 1.0 569.00 0.00 0.00 569.00 1 2020-10-07 17:44:17.816298 2020-10-07 17:44:17.816298 \N 569.00 \N 0.00 0.00 3992 3131 1159 1.0 1499.00 0.00 0.00 1499.00 1 2020-10-07 20:28:42.283276 2020-10-07 20:28:42.283276 \N 1499.00 \N 0.00 0.00 3993 3132 672 1.0 699.00 0.00 0.00 699.00 1 2020-10-07 20:35:03.524995 2020-10-07 20:35:03.524995 \N 699.00 \N 0.00 0.00 3994 3133 492 1.0 1020.00 0.00 679.00 1020.00 1 2020-10-07 21:11:03.561517 2020-10-07 21:11:03.561517 \N 1699.00 \N 679.00 0.00 3996 3134 1197 1.0 109.00 0.00 0.00 109.00 0 2020-10-07 21:26:17.017133 2020-10-07 21:27:43.097004 \N 109.00 \N 0.00 0.00 3995 3134 1310 1.0 599.00 0.00 0.00 599.00 0 2020-10-07 21:26:16.963064 2020-10-07 21:27:43.120803 \N 599.00 \N 0.00 0.00 3997 3135 1310 1.0 599.00 0.00 0.00 599.00 1 2020-10-07 21:28:39.467962 2020-10-07 21:28:39.467962 \N 599.00 \N 0.00 0.00 3998 3135 1197 1.0 109.00 0.00 0.00 109.00 1 2020-10-07 21:28:39.49645 2020-10-07 21:28:39.49645 \N 109.00 \N 0.00 0.00 3999 3135 1211 1.0 125.00 0.00 0.00 125.00 1 2020-10-07 21:28:39.522591 2020-10-07 21:28:39.522591 \N 125.00 \N 0.00 0.00 4000 3136 1264 1.0 129.00 0.00 0.00 129.00 1 2020-10-07 23:14:15.061881 2020-10-07 23:14:15.061881 \N 129.00 \N 0.00 0.00 4001 3136 705 1.0 249.00 0.00 0.00 249.00 1 2020-10-07 23:14:15.10349 2020-10-07 23:14:15.10349 \N 249.00 \N 0.00 0.00 4002 3137 1265 1.0 289.00 0.00 0.00 289.00 1 2020-10-07 23:15:00.428925 2020-10-07 23:15:00.428925 \N 289.00 \N 0.00 0.00 4003 3138 1343 1.0 699.00 0.00 0.00 699.00 1 2020-10-07 23:57:57.349824 2020-10-07 23:57:57.349824 \N 699.00 \N 0.00 0.00 4004 3139 950 1.0 699.00 0.00 0.00 699.00 1 2020-10-08 00:31:34.440372 2020-10-08 00:31:34.440372 \N 699.00 \N 0.00 0.00 4005 3140 1232 1.0 399.00 0.00 0.00 399.00 1 2020-10-08 18:12:40.67758 2020-10-08 18:12:40.67758 \N 399.00 \N 0.00 0.00 4006 3140 1207 1.0 569.00 0.00 0.00 569.00 1 2020-10-08 18:12:40.724421 2020-10-08 18:12:40.724421 \N 569.00 \N 0.00 0.00 4007 3141 1320 1.0 599.00 0.00 0.00 599.00 1 2020-10-08 18:22:41.588141 2020-10-08 18:22:41.588141 \N 599.00 \N 0.00 0.00 4008 3141 1317 1.0 799.00 0.00 0.00 799.00 1 2020-10-08 18:22:41.640239 2020-10-08 18:22:41.640239 \N 799.00 \N 0.00 0.00 4009 3142 1294 1.0 999.00 0.00 0.00 999.00 1 2020-10-09 00:45:14.763753 2020-10-09 00:45:14.763753 \N 999.00 \N 0.00 0.00 4010 3143 613 1.0 1799.00 0.00 0.00 1799.00 1 2020-10-09 00:47:33.106942 2020-10-09 00:47:33.106942 \N 1799.00 \N 0.00 0.00 4011 3143 1294 1.0 999.00 0.00 0.00 999.00 1 2020-10-09 00:47:33.136545 2020-10-09 00:47:33.136545 \N 999.00 \N 0.00 0.00 4012 3144 1206 1.0 139.00 0.00 0.00 139.00 1 2020-10-09 00:48:49.745198 2020-10-09 00:48:49.745198 \N 139.00 \N 0.00 0.00 4013 3144 1225 1.0 179.00 0.00 0.00 179.00 1 2020-10-09 00:48:49.775629 2020-10-09 00:48:49.775629 \N 179.00 \N 0.00 0.00 4014 3145 993 1.0 529.00 0.00 0.00 529.00 1 2020-10-09 20:05:38.516306 2020-10-09 20:05:38.516306 \N 529.00 \N 0.00 0.00 4016 3146 864 1.0 1199.00 0.00 0.00 1199.00 0 2020-10-09 21:29:37.046794 2020-10-09 21:29:40.651543 \N 1199.00 \N 0.00 0.00 4015 3146 1118 1.0 1599.00 0.00 0.00 1599.00 0 2020-10-09 21:29:36.99558 2020-10-09 21:29:40.682861 \N 1599.00 \N 0.00 0.00 4017 3147 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-10-09 21:32:23.790228 2020-10-09 21:32:23.790228 \N 1599.00 \N 0.00 0.00 4018 3147 864 1.0 849.00 0.00 350.00 849.00 1 2020-10-09 21:32:23.821147 2020-10-09 21:32:23.821147 \N 1199.00 \N 350.00 0.00 4019 3148 1337 1.0 999.00 0.00 0.00 999.00 1 2020-10-09 21:33:55.650886 2020-10-09 21:33:55.650886 \N 999.00 \N 0.00 0.00 4020 3149 1294 1.0 999.00 0.00 0.00 999.00 1 2020-10-09 21:48:16.542564 2020-10-09 21:48:16.542564 \N 999.00 \N 0.00 0.00 4021 3149 907 1.0 60.00 0.00 0.00 60.00 1 2020-10-09 21:48:16.575729 2020-10-09 21:48:16.575729 \N 60.00 \N 0.00 0.00 4022 3150 1294 1.0 999.00 0.00 0.00 999.00 1 2020-10-09 21:50:29.210068 2020-10-09 21:50:29.210068 \N 999.00 \N 0.00 0.00 4023 3151 1362 1.0 1699.00 0.00 0.00 1699.00 1 2020-10-09 23:56:18.045274 2020-10-09 23:56:18.045274 \N 1699.00 \N 0.00 0.00 4024 3152 1294 1.0 999.00 0.00 0.00 999.00 1 2020-10-09 23:58:32.006265 2020-10-09 23:58:32.006265 \N 999.00 \N 0.00 0.00 4025 3153 874 1.0 759.00 0.00 0.00 759.00 1 2020-10-10 00:00:37.781193 2020-10-10 00:00:37.781193 \N 759.00 \N 0.00 0.00 4026 3153 1029 1.0 69.00 0.00 0.00 69.00 1 2020-10-10 00:00:37.80574 2020-10-10 00:00:37.80574 \N 69.00 \N 0.00 0.00 4027 3154 1295 1.0 1899.00 0.00 0.00 1899.00 1 2020-10-10 00:28:08.312451 2020-10-10 00:28:08.312451 \N 1899.00 \N 0.00 0.00 4028 3155 1326 1.0 999.00 0.00 0.00 999.00 1 2020-10-10 19:45:01.716292 2020-10-10 19:45:01.716292 \N 999.00 \N 0.00 0.00 4029 3156 1355 1.0 699.00 0.00 0.00 699.00 1 2020-10-10 20:00:38.864639 2020-10-10 20:00:38.864639 \N 699.00 \N 0.00 0.00 4030 3156 668 1.0 299.00 0.00 0.00 299.00 1 2020-10-10 20:00:38.891978 2020-10-10 20:00:38.891978 \N 299.00 \N 0.00 0.00 4031 3156 1313 1.0 769.00 0.00 0.00 769.00 1 2020-10-10 20:00:38.922142 2020-10-10 20:00:38.922142 \N 769.00 \N 0.00 0.00 4032 3157 697 1.0 799.00 0.00 0.00 799.00 1 2020-10-10 21:02:09.711935 2020-10-10 21:02:09.711935 \N 799.00 \N 0.00 0.00 4033 3157 1356 1.0 699.00 0.00 0.00 699.00 1 2020-10-10 21:02:09.741356 2020-10-10 21:02:09.741356 \N 699.00 \N 0.00 0.00 4035 3159 1334 1.0 489.00 0.00 0.00 489.00 1 2020-10-10 23:12:22.265157 2020-10-10 23:12:22.265157 \N 489.00 \N 0.00 0.00 4034 3158 1316 1.0 649.00 0.00 0.00 649.00 0 2020-10-10 23:08:46.136073 2020-10-10 23:29:50.293377 \N 649.00 \N 0.00 0.00 4036 3160 1318 1.0 999.00 0.00 0.00 999.00 1 2020-10-12 17:16:07.346139 2020-10-12 17:16:07.346139 \N 999.00 \N 0.00 0.00 4037 3161 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-10-12 21:06:12.246343 2020-10-12 21:06:12.246343 \N 1499.00 \N 0.00 0.00 4038 3162 1314 1.0 499.00 0.00 0.00 499.00 1 2020-10-12 23:04:49.659013 2020-10-12 23:04:49.659013 \N 499.00 \N 0.00 0.00 4039 3162 673 1.0 560.00 0.00 0.00 560.00 1 2020-10-12 23:04:49.697777 2020-10-12 23:04:49.697777 \N 560.00 \N 0.00 0.00 4040 3162 907 1.0 60.00 0.00 0.00 60.00 1 2020-10-12 23:04:49.722333 2020-10-12 23:04:49.722333 \N 60.00 \N 0.00 0.00 4041 3163 1305 1.0 1189.00 0.00 0.00 1189.00 1 2020-10-12 23:12:46.028509 2020-10-12 23:12:46.028509 \N 1189.00 \N 0.00 0.00 4042 3164 1078 1.0 179.00 0.00 0.00 179.00 1 2020-10-13 18:34:14.448878 2020-10-13 18:34:14.448878 \N 179.00 \N 0.00 0.00 4043 3164 1363 1.0 49.00 0.00 0.00 49.00 1 2020-10-13 18:34:14.480238 2020-10-13 18:34:14.480238 \N 49.00 \N 0.00 0.00 4044 3165 1300 1.0 1599.00 0.00 0.00 1599.00 1 2020-10-13 21:28:32.398957 2020-10-13 21:28:32.398957 \N 1599.00 \N 0.00 0.00 4045 3165 1328 1.0 569.00 0.00 0.00 569.00 1 2020-10-13 21:28:32.438038 2020-10-13 21:28:32.438038 \N 569.00 \N 0.00 0.00 4046 3165 1312 1.0 699.00 0.00 0.00 699.00 1 2020-10-13 21:28:32.460433 2020-10-13 21:28:32.460433 \N 699.00 \N 0.00 0.00 4047 3165 1036 1.0 289.00 0.00 0.00 289.00 1 2020-10-13 21:28:32.484256 2020-10-13 21:28:32.484256 \N 289.00 \N 0.00 0.00 4048 3166 1329 1.0 479.00 0.00 0.00 479.00 1 2020-10-14 00:24:02.569686 2020-10-14 00:24:02.569686 \N 479.00 \N 0.00 0.00 4049 3167 1314 1.0 499.00 0.00 0.00 499.00 1 2020-10-14 00:32:24.967491 2020-10-14 00:32:24.967491 \N 499.00 \N 0.00 0.00 4050 3168 1330 2.0 1398.00 0.00 0.00 1398.00 0 2020-10-14 00:43:24.915205 2020-10-14 00:43:42.115859 \N 699.00 \N 0.00 0.00 4051 3169 1330 2.0 1398.00 0.00 0.00 1398.00 0 2020-10-14 00:44:04.323034 2020-10-14 00:44:19.47944 \N 699.00 \N 0.00 0.00 4052 3170 1330 2.0 1398.00 0.00 0.00 1398.00 1 2020-10-14 00:44:41.898682 2020-10-14 00:44:41.898682 \N 699.00 \N 0.00 0.00 4053 3171 909 1.0 1599.00 0.00 0.00 1599.00 1 2020-10-14 00:48:10.379543 2020-10-14 00:48:10.379543 \N 1599.00 \N 0.00 0.00 4054 3172 1315 1.0 369.00 0.00 0.00 369.00 1 2020-10-14 18:45:14.154493 2020-10-14 18:45:14.154493 \N 369.00 \N 0.00 0.00 4055 3173 266 1.0 1119.83 179.17 300.00 1299.00 1 2020-10-14 19:33:01.692414 2020-10-14 19:33:01.692414 \N 1599.00 \N 300.00 0.00 4056 3173 988 1.0 799.00 0.00 0.00 799.00 1 2020-10-14 19:33:01.751423 2020-10-14 19:33:01.751423 \N 799.00 \N 0.00 0.00 4057 3173 985 1.0 669.00 0.00 0.00 669.00 1 2020-10-14 19:33:01.780978 2020-10-14 19:33:01.780978 \N 669.00 \N 0.00 0.00 4058 3174 1258 1.0 299.00 0.00 0.00 299.00 1 2020-10-14 23:07:43.992006 2020-10-14 23:07:43.992006 \N 299.00 \N 0.00 0.00 4059 3174 367 1.0 301.72 48.28 0.00 350.00 1 2020-10-14 23:07:44.040616 2020-10-14 23:07:44.040616 \N 350.00 \N 0.00 0.00 4060 3175 1364 1.0 649.00 0.00 0.00 649.00 1 2020-10-14 23:42:03.436166 2020-10-14 23:42:03.436166 \N 649.00 \N 0.00 0.00 4061 3176 1320 1.0 599.00 0.00 0.00 599.00 1 2020-10-15 00:13:06.590919 2020-10-15 00:13:06.590919 \N 599.00 \N 0.00 0.00 4062 3177 8 1.0 258.62 41.38 369.00 300.00 1 2020-10-15 00:23:05.668824 2020-10-15 00:23:05.668824 \N 669.00 \N 369.00 0.00 4063 3177 405 1.0 258.62 41.38 299.00 300.00 1 2020-10-15 00:23:05.698328 2020-10-15 00:23:05.698328 \N 599.00 \N 299.00 0.00 4073 3178 673 1.0 560.00 0.00 0.00 560.00 0 2020-10-15 01:26:28.457565 2020-10-15 01:26:53.398683 \N 560.00 \N 0.00 0.00 4072 3178 668 1.0 299.00 0.00 0.00 299.00 0 2020-10-15 01:26:28.421099 2020-10-15 01:26:53.423976 \N 299.00 \N 0.00 0.00 4071 3178 1314 1.0 499.00 0.00 0.00 499.00 0 2020-10-15 01:26:28.384263 2020-10-15 01:26:53.451923 \N 499.00 \N 0.00 0.00 4070 3178 993 1.0 529.00 0.00 0.00 529.00 0 2020-10-15 01:26:28.35411 2020-10-15 01:26:53.477148 \N 529.00 \N 0.00 0.00 4069 3178 1365 1.0 1999.00 0.00 0.00 1999.00 0 2020-10-15 01:26:28.328652 2020-10-15 01:26:53.499797 \N 1999.00 \N 0.00 0.00 4068 3178 1180 1.0 1799.00 0.00 0.00 1799.00 0 2020-10-15 01:26:28.298286 2020-10-15 01:26:53.522382 \N 1799.00 \N 0.00 0.00 4067 3178 1357 1.0 1399.00 0.00 0.00 1399.00 0 2020-10-15 01:26:28.266757 2020-10-15 01:26:53.543514 \N 1399.00 \N 0.00 0.00 4066 3178 1118 1.0 1599.00 0.00 0.00 1599.00 0 2020-10-15 01:26:28.231529 2020-10-15 01:26:53.563547 \N 1599.00 \N 0.00 0.00 4065 3178 978 1.0 569.00 0.00 0.00 569.00 0 2020-10-15 01:26:28.197881 2020-10-15 01:26:53.58574 \N 569.00 \N 0.00 0.00 4064 3178 1321 1.0 749.00 0.00 0.00 749.00 0 2020-10-15 01:26:28.159696 2020-10-15 01:26:53.606974 \N 749.00 \N 0.00 0.00 4074 3179 1357 1.0 1399.00 0.00 0.00 1399.00 1 2020-10-15 01:32:01.874248 2020-10-15 01:32:01.874248 \N 1399.00 \N 0.00 0.00 4075 3179 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-10-15 01:32:01.904261 2020-10-15 01:32:01.904261 \N 1599.00 \N 0.00 0.00 4076 3179 1180 1.0 1799.00 0.00 0.00 1799.00 1 2020-10-15 01:32:01.93117 2020-10-15 01:32:01.93117 \N 1799.00 \N 0.00 0.00 4077 3179 1365 1.0 1999.00 0.00 0.00 1999.00 1 2020-10-15 01:32:01.960676 2020-10-15 01:32:01.960676 \N 1999.00 \N 0.00 0.00 4078 3179 993 1.0 529.00 0.00 0.00 529.00 1 2020-10-15 01:32:01.993938 2020-10-15 01:32:01.993938 \N 529.00 \N 0.00 0.00 4079 3179 1314 1.0 499.00 0.00 0.00 499.00 1 2020-10-15 01:32:02.023714 2020-10-15 01:32:02.023714 \N 499.00 \N 0.00 0.00 4080 3179 673 1.0 560.00 0.00 0.00 560.00 1 2020-10-15 01:32:02.054652 2020-10-15 01:32:02.054652 \N 560.00 \N 0.00 0.00 4081 3179 1321 1.0 749.00 0.00 0.00 749.00 1 2020-10-15 01:32:02.080124 2020-10-15 01:32:02.080124 \N 749.00 \N 0.00 0.00 4082 3179 978 1.0 569.00 0.00 0.00 569.00 1 2020-10-15 01:32:02.106369 2020-10-15 01:32:02.106369 \N 569.00 \N 0.00 0.00 4083 3179 668 1.0 299.00 0.00 0.00 299.00 1 2020-10-15 01:32:02.130331 2020-10-15 01:32:02.130331 \N 299.00 \N 0.00 0.00 4084 3180 1326 1.0 999.00 0.00 0.00 999.00 1 2020-10-15 18:10:22.480362 2020-10-15 18:10:22.480362 \N 999.00 \N 0.00 0.00 4085 3181 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-10-15 18:35:26.709125 2020-10-15 18:35:26.709125 \N 1499.00 \N 0.00 0.00 4086 3182 1005 1.0 529.00 0.00 0.00 529.00 1 2020-10-15 18:38:59.078971 2020-10-15 18:38:59.078971 \N 529.00 \N 0.00 0.00 4087 3183 1076 1.0 259.00 0.00 0.00 259.00 1 2020-10-15 18:57:46.664507 2020-10-15 18:57:46.664507 \N 259.00 \N 0.00 0.00 4088 3183 540 1.0 960.00 0.00 639.00 960.00 1 2020-10-15 18:57:46.685829 2020-10-15 18:57:46.685829 \N 1599.00 \N 639.00 0.00 4089 3184 1159 1.0 1499.00 0.00 0.00 1499.00 1 2020-10-15 19:36:10.248856 2020-10-15 19:36:10.248856 \N 1499.00 \N 0.00 0.00 4090 3184 1029 1.0 69.00 0.00 0.00 69.00 1 2020-10-15 19:36:10.284218 2020-10-15 19:36:10.284218 \N 69.00 \N 0.00 0.00 4091 3185 1280 1.0 149.00 0.00 0.00 149.00 1 2020-10-15 21:19:10.05606 2020-10-15 21:19:10.05606 \N 149.00 \N 0.00 0.00 4092 3186 520 1.0 500.00 0.00 349.00 500.00 1 2020-10-15 21:46:12.663814 2020-10-15 21:46:12.663814 \N 849.00 \N 349.00 0.00 4093 3187 1357 1.0 1399.00 0.00 0.00 1399.00 1 2020-10-15 21:55:09.496362 2020-10-15 21:55:09.496362 \N 1399.00 \N 0.00 0.00 4094 3188 585 1.0 1599.00 0.00 0.00 1599.00 1 2020-10-15 22:02:33.164689 2020-10-15 22:02:33.164689 \N 1599.00 \N 0.00 0.00 4095 3189 1010 1.0 599.00 0.00 0.00 599.00 1 2020-10-15 22:24:39.984649 2020-10-15 22:24:39.984649 \N 599.00 \N 0.00 0.00 4096 3190 1293 1.0 1799.00 0.00 0.00 1799.00 0 2020-10-15 23:16:47.871529 2020-10-15 23:17:15.241508 \N 1799.00 \N 0.00 0.00 4097 3191 1293 1.0 1799.00 0.00 0.00 1799.00 1 2020-10-15 23:17:35.270876 2020-10-15 23:17:35.270876 \N 1799.00 \N 0.00 0.00 4098 3192 155 1.0 516.38 82.62 0.00 599.00 1 2020-10-15 23:19:39.04573 2020-10-15 23:19:39.04573 \N 599.00 \N 0.00 0.00 4099 3192 1332 1.0 499.00 0.00 0.00 499.00 1 2020-10-15 23:19:39.069811 2020-10-15 23:19:39.069811 \N 499.00 \N 0.00 0.00 4100 3193 1122 1.0 1599.00 0.00 0.00 1599.00 1 2020-10-15 23:47:13.288324 2020-10-15 23:47:13.288324 \N 1599.00 \N 0.00 0.00 4101 3194 1302 1.0 1899.00 0.00 0.00 1899.00 0 2020-10-16 00:32:58.947263 2020-10-16 00:33:36.624094 \N 1899.00 \N 0.00 0.00 4102 3195 1302 1.0 1899.00 0.00 0.00 1899.00 1 2020-10-16 00:35:32.156552 2020-10-16 00:35:32.156552 \N 1899.00 \N 0.00 0.00 4103 3196 1338 1.0 899.00 0.00 0.00 899.00 1 2020-10-16 01:22:29.247717 2020-10-16 01:22:29.247717 \N 899.00 \N 0.00 0.00 3715 2919 1293 1.0 1799.00 0.00 0.00 1799.00 0 2020-09-12 23:49:07.508335 2020-10-16 01:34:56.719514 \N 1799.00 \N 0.00 0.00 4104 3197 1293 1.0 1799.00 0.00 0.00 1799.00 1 2020-10-16 01:35:16.835277 2020-10-16 01:35:16.835277 \N 1799.00 \N 0.00 0.00 4106 3199 1171 1.0 1399.00 0.00 0.00 1399.00 1 2020-10-16 18:48:15.590578 2020-10-16 18:48:15.590578 \N 1399.00 \N 0.00 0.00 4107 3200 1182 1.0 1799.00 0.00 0.00 1799.00 1 2020-10-16 21:11:53.272971 2020-10-16 21:11:53.272971 \N 1799.00 \N 0.00 0.00 4108 3200 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-10-16 21:11:53.310853 2020-10-16 21:11:53.310853 \N 1499.00 \N 0.00 0.00 4109 3201 1315 1.0 300.00 0.00 69.00 300.00 1 2020-10-16 23:45:13.482054 2020-10-16 23:45:13.482054 \N 369.00 \N 69.00 0.00 4110 3202 1188 1.0 899.00 0.00 0.00 899.00 1 2020-10-17 00:15:14.101717 2020-10-17 00:15:14.101717 \N 899.00 \N 0.00 0.00 4111 3203 1159 1.0 1499.00 0.00 0.00 1499.00 0 2020-10-17 00:38:30.176248 2020-10-17 00:40:41.902717 \N 1499.00 \N 0.00 0.00 4112 3204 1159 1.0 1499.00 0.00 0.00 1499.00 1 2020-10-17 00:41:07.509743 2020-10-17 00:41:07.509743 \N 1499.00 \N 0.00 0.00 4113 3205 637 1.0 799.00 0.00 0.00 799.00 1 2020-10-17 16:57:51.930979 2020-10-17 16:57:51.930979 \N 799.00 \N 0.00 0.00 4114 3205 1210 1.0 129.00 0.00 0.00 129.00 1 2020-10-17 16:57:51.966442 2020-10-17 16:57:51.966442 \N 129.00 \N 0.00 0.00 4115 3206 1314 1.0 499.00 0.00 0.00 499.00 1 2020-10-17 17:58:07.85761 2020-10-17 17:58:07.85761 \N 499.00 \N 0.00 0.00 4116 3207 1312 1.0 699.00 0.00 0.00 699.00 1 2020-10-17 19:26:20.196489 2020-10-17 19:26:20.196489 \N 699.00 \N 0.00 0.00 4117 3207 1302 1.0 1899.00 0.00 0.00 1899.00 1 2020-10-17 19:26:20.25425 2020-10-17 19:26:20.25425 \N 1899.00 \N 0.00 0.00 4118 3208 369 3.0 126.72 20.28 0.00 147.00 1 2020-10-17 20:10:37.566396 2020-10-17 20:10:37.566396 \N 49.00 \N 0.00 0.00 4105 3198 1338 1.0 899.00 0.00 0.00 899.00 0 2020-10-16 18:01:14.317759 2020-10-17 20:12:08.832675 \N 899.00 \N 0.00 0.00 4119 3209 1316 1.0 649.00 0.00 0.00 649.00 0 2020-10-17 20:14:52.811138 2020-10-17 20:15:00.265641 \N 649.00 \N 0.00 0.00 4120 3210 1316 1.0 649.00 0.00 0.00 649.00 1 2020-10-17 20:15:17.718359 2020-10-17 20:15:17.718359 \N 649.00 \N 0.00 0.00 4121 3210 1047 1.0 139.00 0.00 0.00 139.00 1 2020-10-17 20:15:17.747349 2020-10-17 20:15:17.747349 \N 139.00 \N 0.00 0.00 4122 3211 702 1.0 980.00 0.00 619.00 980.00 1 2020-10-17 21:21:12.292352 2020-10-17 21:21:12.292352 \N 1599.00 \N 619.00 0.00 4123 3212 502 1.0 1200.00 0.00 99.00 1200.00 1 2020-10-17 22:00:11.939454 2020-10-17 22:00:11.939454 \N 1299.00 \N 99.00 0.00 4124 3213 1332 1.0 499.00 0.00 0.00 499.00 1 2020-10-17 22:11:12.603123 2020-10-17 22:11:12.603123 \N 499.00 \N 0.00 0.00 4125 3214 1159 1.0 1499.00 0.00 0.00 1499.00 1 2020-10-18 00:20:06.868092 2020-10-18 00:20:06.868092 \N 1499.00 \N 0.00 0.00 4126 3215 1205 1.0 189.00 0.00 0.00 189.00 1 2020-10-19 21:17:51.170971 2020-10-19 21:17:51.170971 \N 189.00 \N 0.00 0.00 4128 3217 369 1.0 42.24 6.76 0.00 49.00 1 2020-10-20 00:56:30.715275 2020-10-20 00:56:30.715275 \N 49.00 \N 0.00 0.00 4129 3218 1355 1.0 699.00 0.00 0.00 699.00 1 2020-10-20 17:42:38.541374 2020-10-20 17:42:38.541374 \N 699.00 \N 0.00 0.00 4130 3218 1238 1.0 389.00 0.00 0.00 389.00 1 2020-10-20 17:42:38.582304 2020-10-20 17:42:38.582304 \N 389.00 \N 0.00 0.00 4131 3219 1237 1.0 420.00 0.00 0.00 420.00 1 2020-10-20 22:36:49.02168 2020-10-20 22:36:49.02168 \N 420.00 \N 0.00 0.00 4133 3220 1294 1.0 999.00 0.00 0.00 999.00 0 2020-10-20 23:51:08.902481 2020-10-20 23:55:14.941104 \N 999.00 \N 0.00 0.00 4132 3220 423 1.0 861.21 137.79 470.00 999.00 0 2020-10-20 23:51:08.876749 2020-10-20 23:55:14.974688 \N 1469.00 \N 470.00 0.00 4134 3221 1294 1.0 999.00 0.00 0.00 999.00 1 2020-10-20 23:55:31.085824 2020-10-20 23:55:31.085824 \N 999.00 \N 0.00 0.00 4135 3222 423 1.0 887.07 141.93 440.00 1029.00 1 2020-10-20 23:58:01.192857 2020-10-20 23:58:01.192857 \N 1469.00 \N 440.00 0.00 4136 3223 222 1.0 258.62 41.38 399.00 300.00 1 2020-10-21 00:18:59.428308 2020-10-21 00:18:59.428308 \N 699.00 \N 399.00 0.00 4137 3224 993 1.0 529.00 0.00 0.00 529.00 1 2020-10-21 22:23:46.033863 2020-10-21 22:23:46.033863 \N 529.00 \N 0.00 0.00 4138 3225 1159 1.0 1499.00 0.00 0.00 1499.00 1 2020-10-21 23:49:08.994203 2020-10-21 23:49:08.994203 \N 1499.00 \N 0.00 0.00 4139 3226 1294 1.0 999.00 0.00 0.00 999.00 1 2020-10-21 23:52:44.212816 2020-10-21 23:52:44.212816 \N 999.00 \N 0.00 0.00 4140 3227 1357 1.0 1399.00 0.00 0.00 1399.00 1 2020-10-22 00:00:52.157683 2020-10-22 00:00:52.157683 \N 1399.00 \N 0.00 0.00 4141 3228 1370 1.0 1499.00 0.00 0.00 1499.00 1 2020-10-22 20:52:25.899134 2020-10-22 20:52:25.899134 \N 1499.00 \N 0.00 0.00 4142 3229 664 1.0 699.00 0.00 0.00 699.00 1 2020-10-22 22:28:43.229494 2020-10-22 22:28:43.229494 \N 699.00 \N 0.00 0.00 4143 3230 1370 1.0 1499.00 0.00 0.00 1499.00 1 2020-10-22 23:39:15.362012 2020-10-22 23:39:15.362012 \N 1499.00 \N 0.00 0.00 4144 3231 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-10-22 23:48:38.599614 2020-10-22 23:48:38.599614 \N 1799.00 \N 0.00 0.00 4145 3232 1372 1.0 1399.00 0.00 0.00 1399.00 0 2020-10-23 00:26:54.781033 2020-10-23 00:27:06.787237 \N 1399.00 \N 0.00 0.00 4146 3233 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-10-23 00:27:27.214751 2020-10-23 00:27:27.214751 \N 1399.00 \N 0.00 0.00 4147 3234 1373 1.0 1199.00 0.00 0.00 1199.00 1 2020-10-23 01:03:17.413453 2020-10-23 01:03:17.413453 \N 1199.00 \N 0.00 0.00 4148 3235 1374 1.0 1599.00 0.00 0.00 1599.00 1 2020-10-23 18:56:10.693745 2020-10-23 18:56:10.693745 \N 1599.00 \N 0.00 0.00 4150 3236 1332 1.0 499.00 0.00 0.00 499.00 0 2020-10-23 18:58:02.525574 2020-10-23 18:58:24.515461 \N 499.00 \N 0.00 0.00 4149 3236 9 1.0 602.59 96.41 0.00 699.00 0 2020-10-23 18:58:02.4995 2020-10-23 18:58:24.540183 \N 699.00 \N 0.00 0.00 4151 3237 1355 1.0 699.00 0.00 0.00 699.00 1 2020-10-23 21:08:49.353517 2020-10-23 21:08:49.353517 \N 699.00 \N 0.00 0.00 4152 3237 1322 1.0 499.00 0.00 0.00 499.00 1 2020-10-23 21:08:49.378633 2020-10-23 21:08:49.378633 \N 499.00 \N 0.00 0.00 4153 3237 1329 1.0 479.00 0.00 0.00 479.00 1 2020-10-23 21:08:49.402522 2020-10-23 21:08:49.402522 \N 479.00 \N 0.00 0.00 4154 3237 1327 1.0 469.00 0.00 0.00 469.00 1 2020-10-23 21:08:49.427055 2020-10-23 21:08:49.427055 \N 469.00 \N 0.00 0.00 4155 3237 1216 1.0 599.00 0.00 0.00 599.00 1 2020-10-23 21:08:49.455758 2020-10-23 21:08:49.455758 \N 599.00 \N 0.00 0.00 4156 3237 1235 1.0 239.00 0.00 0.00 239.00 1 2020-10-23 21:08:49.481905 2020-10-23 21:08:49.481905 \N 239.00 \N 0.00 0.00 4157 3237 668 1.0 299.00 0.00 0.00 299.00 1 2020-10-23 21:08:49.508534 2020-10-23 21:08:49.508534 \N 299.00 \N 0.00 0.00 4158 3238 1356 1.0 699.00 0.00 0.00 699.00 1 2020-10-23 21:33:54.459647 2020-10-23 21:33:54.459647 \N 699.00 \N 0.00 0.00 4159 3239 369 1.0 42.24 6.76 0.00 49.00 1 2020-10-23 21:36:14.57138 2020-10-23 21:36:14.57138 \N 49.00 \N 0.00 0.00 4160 3240 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-10-23 22:08:56.283299 2020-10-23 22:08:56.283299 \N 1799.00 \N 0.00 0.00 4161 3241 1007 1.0 699.00 0.00 0.00 699.00 1 2020-10-23 22:11:34.914061 2020-10-23 22:11:34.914061 \N 699.00 \N 0.00 0.00 4162 3241 1006 1.0 699.00 0.00 0.00 699.00 1 2020-10-23 22:11:34.94301 2020-10-23 22:11:34.94301 \N 699.00 \N 0.00 0.00 4163 3242 1372 1.0 1399.00 0.00 0.00 1399.00 0 2020-10-23 23:03:44.64923 2020-10-23 23:03:56.541448 \N 1399.00 \N 0.00 0.00 4164 3243 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-10-23 23:05:22.703502 2020-10-23 23:05:22.703502 \N 1399.00 \N 0.00 0.00 4165 3244 987 1.0 799.00 0.00 0.00 799.00 1 2020-10-23 23:36:11.062924 2020-10-23 23:36:11.062924 \N 799.00 \N 0.00 0.00 4166 3245 494 1.0 569.00 0.00 330.00 569.00 1 2020-10-23 23:52:08.328409 2020-10-23 23:52:08.328409 \N 899.00 \N 330.00 0.00 4168 3246 1332 1.0 499.00 0.00 0.00 499.00 0 2020-10-24 00:18:01.298988 2020-10-24 00:24:32.468816 \N 499.00 \N 0.00 0.00 4167 3246 1348 1.0 1099.00 0.00 0.00 1099.00 0 2020-10-24 00:18:01.257531 2020-10-24 00:24:32.495903 \N 1099.00 \N 0.00 0.00 4169 3247 1332 1.0 499.00 0.00 0.00 499.00 1 2020-10-24 00:26:56.506573 2020-10-24 00:26:56.506573 \N 499.00 \N 0.00 0.00 4170 3247 864 1.0 850.00 0.00 349.00 850.00 1 2020-10-24 00:26:56.532715 2020-10-24 00:26:56.532715 \N 1199.00 \N 349.00 0.00 4171 3248 1312 1.0 699.00 0.00 0.00 699.00 1 2020-10-24 01:18:20.372318 2020-10-24 01:18:20.372318 \N 699.00 \N 0.00 0.00 4172 3249 1314 1.0 499.00 0.00 0.00 499.00 1 2020-10-24 18:08:51.955117 2020-10-24 18:08:51.955117 \N 499.00 \N 0.00 0.00 4173 3250 1300 1.0 1599.00 0.00 0.00 1599.00 1 2020-10-24 18:18:09.258845 2020-10-24 18:18:09.258845 \N 1599.00 \N 0.00 0.00 4174 3250 1370 1.0 1499.00 0.00 0.00 1499.00 1 2020-10-24 18:18:09.286391 2020-10-24 18:18:09.286391 \N 1499.00 \N 0.00 0.00 4175 3251 1349 1.0 1099.00 0.00 0.00 1099.00 1 2020-10-24 19:02:32.654268 2020-10-24 19:02:32.654268 \N 1099.00 \N 0.00 0.00 4176 3252 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-10-24 20:16:09.079667 2020-10-24 20:16:09.079667 \N 1799.00 \N 0.00 0.00 4177 3252 1373 1.0 1199.00 0.00 0.00 1199.00 1 2020-10-24 20:16:09.107096 2020-10-24 20:16:09.107096 \N 1199.00 \N 0.00 0.00 4178 3253 1294 1.0 999.00 0.00 0.00 999.00 1 2020-10-24 20:27:31.661472 2020-10-24 20:27:31.661472 \N 999.00 \N 0.00 0.00 4179 3253 864 1.0 849.00 0.00 350.00 849.00 1 2020-10-24 20:27:31.691384 2020-10-24 20:27:31.691384 \N 1199.00 \N 350.00 0.00 4180 3254 494 1.0 569.00 0.00 330.00 569.00 1 2020-10-24 22:34:35.134063 2020-10-24 22:34:35.134063 \N 899.00 \N 330.00 0.00 4181 3255 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-10-24 23:02:13.378833 2020-10-24 23:02:13.378833 \N 1799.00 \N 0.00 0.00 4182 3256 1294 1.0 999.00 0.00 0.00 999.00 1 2020-10-24 23:50:14.076116 2020-10-24 23:50:14.076116 \N 999.00 \N 0.00 0.00 4183 3257 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-10-24 23:55:47.984897 2020-10-24 23:55:47.984897 \N 1799.00 \N 0.00 0.00 4184 3258 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-10-24 23:59:33.90967 2020-10-24 23:59:33.90967 \N 1399.00 \N 0.00 0.00 4185 3259 144 1.0 688.79 110.21 0.00 799.00 0 2020-10-26 19:39:19.173151 2020-10-26 19:40:59.002084 \N 799.00 \N 0.00 0.00 4186 3260 144 1.0 688.79 110.21 0.00 799.00 0 2020-10-26 19:42:00.857034 2020-10-26 19:43:42.56908 \N 799.00 \N 0.00 0.00 4187 3261 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-10-26 20:36:20.916827 2020-10-26 20:36:20.916827 \N 1799.00 \N 0.00 0.00 4188 3262 1236 1.0 369.00 0.00 0.00 369.00 1 2020-10-26 20:58:17.262783 2020-10-26 20:58:17.262783 \N 369.00 \N 0.00 0.00 4189 3263 685 1.0 250.00 0.00 149.00 250.00 1 2020-10-26 21:20:48.103127 2020-10-26 21:20:48.103127 \N 399.00 \N 149.00 0.00 4190 3264 1332 1.0 499.00 0.00 0.00 499.00 1 2020-10-26 21:22:32.836898 2020-10-26 21:22:32.836898 \N 499.00 \N 0.00 0.00 4191 3265 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-10-26 21:35:15.228852 2020-10-26 21:35:15.228852 \N 1499.00 \N 0.00 0.00 4192 3266 1402 1.0 2299.00 0.00 0.00 2299.00 1 2020-10-26 22:26:23.444242 2020-10-26 22:26:23.444242 \N 2299.00 \N 0.00 0.00 4193 3267 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-10-26 23:11:53.398626 2020-10-26 23:11:53.398626 \N 1799.00 \N 0.00 0.00 4194 3268 1371 2.0 3598.00 0.00 0.00 3598.00 1 2020-10-26 23:25:39.443772 2020-10-26 23:25:39.443772 \N 1799.00 \N 0.00 0.00 4195 3269 1329 1.0 479.00 0.00 0.00 479.00 1 2020-10-26 23:38:56.437774 2020-10-26 23:38:56.437774 \N 479.00 \N 0.00 0.00 4196 3270 1317 1.0 799.00 0.00 0.00 799.00 1 2020-10-26 23:51:13.237541 2020-10-26 23:51:13.237541 \N 799.00 \N 0.00 0.00 4197 3271 1317 1.0 799.00 0.00 0.00 799.00 1 2020-10-27 00:04:38.150941 2020-10-27 00:04:38.150941 \N 799.00 \N 0.00 0.00 4198 3271 423 1.0 861.21 137.79 470.00 999.00 1 2020-10-27 00:04:38.183571 2020-10-27 00:04:38.183571 \N 1469.00 \N 470.00 0.00 4199 3271 664 1.0 699.00 0.00 0.00 699.00 1 2020-10-27 00:04:38.214003 2020-10-27 00:04:38.214003 \N 699.00 \N 0.00 0.00 4200 3272 1214 1.0 369.00 0.00 0.00 369.00 1 2020-10-27 01:10:05.587874 2020-10-27 01:10:05.587874 \N 369.00 \N 0.00 0.00 4201 3273 1371 2.0 3598.00 0.00 0.00 3598.00 1 2020-10-27 20:14:47.329034 2020-10-27 20:14:47.329034 \N 1799.00 \N 0.00 0.00 4202 3274 1330 2.0 1398.00 0.00 0.00 1398.00 1 2020-10-27 22:48:26.126095 2020-10-27 22:48:26.126095 \N 699.00 \N 0.00 0.00 4203 3275 1374 1.0 1599.00 0.00 0.00 1599.00 1 2020-10-27 23:00:45.062788 2020-10-27 23:00:45.062788 \N 1599.00 \N 0.00 0.00 4204 3276 1309 1.0 669.00 0.00 0.00 669.00 1 2020-10-27 23:23:13.68357 2020-10-27 23:23:13.68357 \N 669.00 \N 0.00 0.00 4205 3277 1371 2.0 3598.00 0.00 0.00 3598.00 1 2020-10-28 20:38:47.590708 2020-10-28 20:38:47.590708 \N 1799.00 \N 0.00 0.00 4206 3277 1348 1.0 1099.00 0.00 0.00 1099.00 1 2020-10-28 20:38:47.616016 2020-10-28 20:38:47.616016 \N 1099.00 \N 0.00 0.00 4207 3277 1349 1.0 1099.00 0.00 0.00 1099.00 1 2020-10-28 20:38:47.638281 2020-10-28 20:38:47.638281 \N 1099.00 \N 0.00 0.00 4208 3278 1325 1.0 969.00 0.00 0.00 969.00 1 2020-10-29 01:41:27.276825 2020-10-29 01:41:27.276825 \N 969.00 \N 0.00 0.00 4209 3279 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-10-29 20:06:31.225843 2020-10-29 20:06:31.225843 \N 1799.00 \N 0.00 0.00 4210 3280 1371 2.0 3598.00 0.00 0.00 3598.00 1 2020-10-29 20:10:41.282373 2020-10-29 20:10:41.282373 \N 1799.00 \N 0.00 0.00 4211 3281 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-10-29 20:28:48.304876 2020-10-29 20:28:48.304876 \N 1499.00 \N 0.00 0.00 4212 3282 1313 1.0 769.00 0.00 0.00 769.00 1 2020-10-30 01:21:47.84104 2020-10-30 01:21:47.84104 \N 769.00 \N 0.00 0.00 4213 3283 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-10-30 02:05:34.737479 2020-10-30 02:05:34.737479 \N 1799.00 \N 0.00 0.00 4214 3283 905 1.0 120.00 0.00 0.00 120.00 1 2020-10-30 02:05:34.77299 2020-10-30 02:05:34.77299 \N 120.00 \N 0.00 0.00 4215 3284 1357 1.0 1399.00 0.00 0.00 1399.00 1 2020-10-30 02:11:15.211351 2020-10-30 02:11:15.211351 \N 1399.00 \N 0.00 0.00 4216 3284 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-10-30 02:11:15.235777 2020-10-30 02:11:15.235777 \N 1399.00 \N 0.00 0.00 4217 3285 1294 1.0 999.00 0.00 0.00 999.00 0 2020-10-30 19:01:30.114768 2020-10-30 19:02:03.022432 \N 999.00 \N 0.00 0.00 4218 3286 1294 2.0 1998.00 0.00 0.00 1998.00 1 2020-10-30 19:02:22.206944 2020-10-30 19:02:22.206944 \N 999.00 \N 0.00 0.00 4219 3287 369 1.0 42.24 6.76 0.00 49.00 1 2020-10-30 19:43:10.878146 2020-10-30 19:43:10.878146 \N 49.00 \N 0.00 0.00 4220 3287 1382 1.0 139.00 0.00 0.00 139.00 1 2020-10-30 19:43:10.906534 2020-10-30 19:43:10.906534 \N 139.00 \N 0.00 0.00 4221 3288 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-10-30 21:04:21.701564 2020-10-30 21:04:21.701564 \N 1799.00 \N 0.00 0.00 4222 3289 1294 1.0 999.00 0.00 0.00 999.00 1 2020-10-30 23:07:48.871604 2020-10-30 23:07:48.871604 \N 999.00 \N 0.00 0.00 4223 3290 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-10-30 23:29:09.150346 2020-10-30 23:29:09.150346 \N 1599.00 \N 0.00 0.00 4224 3290 1374 1.0 1599.00 0.00 0.00 1599.00 1 2020-10-30 23:29:09.179556 2020-10-30 23:29:09.179556 \N 1599.00 \N 0.00 0.00 4225 3290 255 1.0 258.62 41.38 599.00 300.00 1 2020-10-30 23:29:09.203077 2020-10-30 23:29:09.203077 \N 899.00 \N 599.00 0.00 4227 3292 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-10-31 01:26:07.65454 2020-10-31 01:26:07.65454 \N 1499.00 \N 0.00 0.00 4228 3293 803 1.0 599.00 0.00 0.00 599.00 1 2020-10-31 01:30:08.778146 2020-10-31 01:30:08.778146 \N 599.00 \N 0.00 0.00 4229 3293 1317 1.0 799.00 0.00 0.00 799.00 1 2020-10-31 01:30:08.84081 2020-10-31 01:30:08.84081 \N 799.00 \N 0.00 0.00 4230 3293 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-10-31 01:30:08.867658 2020-10-31 01:30:08.867658 \N 1599.00 \N 0.00 0.00 4231 3293 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-10-31 01:30:08.90369 2020-10-31 01:30:08.90369 \N 1399.00 \N 0.00 0.00 4232 3294 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-10-31 01:38:09.777458 2020-10-31 01:38:09.777458 \N 1599.00 \N 0.00 0.00 4233 3295 1374 1.0 1599.00 0.00 0.00 1599.00 1 2020-10-31 19:24:16.280985 2020-10-31 19:24:16.280985 \N 1599.00 \N 0.00 0.00 4234 3296 1380 1.0 379.00 0.00 0.00 379.00 1 2020-10-31 19:25:33.715438 2020-10-31 19:25:33.715438 \N 379.00 \N 0.00 0.00 4235 3297 1180 1.0 1799.00 0.00 0.00 1799.00 0 2020-10-31 20:55:01.403175 2020-10-31 20:55:49.493199 \N 1799.00 \N 0.00 0.00 4236 3298 1180 1.0 1799.00 0.00 0.00 1799.00 1 2020-10-31 20:56:07.349244 2020-10-31 20:56:07.349244 \N 1799.00 \N 0.00 0.00 4226 3291 885 1.0 899.00 0.00 0.00 899.00 0 2020-10-31 01:26:04.735702 2020-10-31 20:59:01.674499 \N 899.00 \N 0.00 0.00 4237 3299 1430 1.0 159.00 0.00 0.00 159.00 1 2020-10-31 23:10:57.34073 2020-10-31 23:10:57.34073 \N 159.00 \N 0.00 0.00 4238 3300 1333 1.0 629.00 0.00 0.00 629.00 1 2020-11-01 00:13:49.957248 2020-11-01 00:13:49.957248 \N 629.00 \N 0.00 0.00 4239 3301 1332 1.0 499.00 0.00 0.00 499.00 1 2020-11-01 00:37:07.470033 2020-11-01 00:37:07.470033 \N 499.00 \N 0.00 0.00 4240 3302 1480 1.0 889.00 0.00 0.00 889.00 1 2020-11-01 02:11:19.671787 2020-11-01 02:11:19.671787 \N 889.00 \N 0.00 0.00 4241 3302 1482 1.0 899.00 0.00 0.00 899.00 1 2020-11-01 02:11:19.698515 2020-11-01 02:11:19.698515 \N 899.00 \N 0.00 0.00 4242 3302 1481 1.0 989.00 0.00 0.00 989.00 1 2020-11-01 02:11:19.768514 2020-11-01 02:11:19.768514 \N 989.00 \N 0.00 0.00 4243 3303 971 1.0 599.00 0.00 280.00 599.00 1 2020-11-01 02:15:38.225122 2020-11-01 02:15:38.225122 \N 879.00 \N 280.00 0.00 4244 3304 1428 1.0 249.00 0.00 0.00 249.00 1 2020-11-01 19:54:56.482933 2020-11-01 19:54:56.482933 \N 249.00 \N 0.00 0.00 4245 3305 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-02 19:08:19.900068 2020-11-02 19:08:19.900068 \N 1799.00 \N 0.00 0.00 4246 3306 1485 1.0 825.00 0.00 0.00 825.00 1 2020-11-02 20:59:06.378462 2020-11-02 20:59:06.378462 \N 825.00 \N 0.00 0.00 4247 3307 982 1.0 1119.00 0.00 0.00 1119.00 1 2020-11-02 21:01:37.474428 2020-11-02 21:01:37.474428 \N 1119.00 \N 0.00 0.00 4248 3308 1401 1.0 159.00 0.00 0.00 159.00 1 2020-11-02 21:11:47.132797 2020-11-02 21:11:47.132797 \N 159.00 \N 0.00 0.00 4249 3309 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-02 23:28:45.775298 2020-11-02 23:28:45.775298 \N 1399.00 \N 0.00 0.00 4250 3310 1486 1.0 699.00 0.00 0.00 699.00 1 2020-11-02 23:58:25.847203 2020-11-02 23:58:25.847203 \N 699.00 \N 0.00 0.00 4251 3311 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-03 18:33:58.188974 2020-11-03 18:33:58.188974 \N 1399.00 \N 0.00 0.00 4252 3312 1314 1.0 499.00 0.00 0.00 499.00 1 2020-11-03 20:26:59.110955 2020-11-03 20:26:59.110955 \N 499.00 \N 0.00 0.00 4253 3313 1379 1.0 379.00 0.00 0.00 379.00 1 2020-11-03 22:50:15.621733 2020-11-03 22:50:15.621733 \N 379.00 \N 0.00 0.00 4254 3313 697 1.0 799.00 0.00 0.00 799.00 1 2020-11-03 22:50:15.649144 2020-11-03 22:50:15.649144 \N 799.00 \N 0.00 0.00 4255 3314 1007 1.0 699.00 0.00 0.00 699.00 1 2020-11-03 23:48:34.222684 2020-11-03 23:48:34.222684 \N 699.00 \N 0.00 0.00 4256 3315 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-04 01:14:58.769635 2020-11-04 01:14:58.769635 \N 1799.00 \N 0.00 0.00 4257 3316 710 1.0 1199.00 0.00 0.00 1199.00 1 2020-11-04 01:17:32.150723 2020-11-04 01:17:32.150723 \N 1199.00 \N 0.00 0.00 4258 3317 1007 1.0 699.00 0.00 0.00 699.00 1 2020-11-04 02:18:17.199178 2020-11-04 02:18:17.199178 \N 699.00 \N 0.00 0.00 4259 3318 1481 1.0 989.00 0.00 0.00 989.00 1 2020-11-04 21:32:23.392434 2020-11-04 21:32:23.392434 \N 989.00 \N 0.00 0.00 4260 3319 1464 1.0 1199.00 0.00 0.00 1199.00 1 2020-11-04 22:01:44.990186 2020-11-04 22:01:44.990186 \N 1199.00 \N 0.00 0.00 4261 3320 1483 1.0 1199.00 0.00 0.00 1199.00 1 2020-11-04 22:33:44.543307 2020-11-04 22:33:44.543307 \N 1199.00 \N 0.00 0.00 4262 3321 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-04 22:55:23.450434 2020-11-04 22:55:23.450434 \N 1799.00 \N 0.00 0.00 4263 3322 1491 1.0 899.00 0.00 0.00 899.00 1 2020-11-05 00:37:57.394553 2020-11-05 00:37:57.394553 \N 899.00 \N 0.00 0.00 4264 3322 1490 1.0 589.00 0.00 0.00 589.00 1 2020-11-05 00:37:57.419337 2020-11-05 00:37:57.419337 \N 589.00 \N 0.00 0.00 4265 3323 956 1.0 899.00 0.00 0.00 899.00 1 2020-11-05 01:02:09.908498 2020-11-05 01:02:09.908498 \N 899.00 \N 0.00 0.00 4266 3324 1503 1.0 999.00 0.00 0.00 999.00 1 2020-11-05 02:13:19.731243 2020-11-05 02:13:19.731243 \N 999.00 \N 0.00 0.00 4267 3325 1516 1.0 1069.00 0.00 0.00 1069.00 1 2020-11-05 20:00:14.777185 2020-11-05 20:00:14.777185 \N 1069.00 \N 0.00 0.00 4268 3326 955 1.0 999.00 0.00 0.00 999.00 1 2020-11-05 21:07:46.863877 2020-11-05 21:07:46.863877 \N 999.00 \N 0.00 0.00 4269 3327 1507 1.0 749.00 0.00 0.00 749.00 1 2020-11-05 21:20:40.102776 2020-11-05 21:20:40.102776 \N 749.00 \N 0.00 0.00 4270 3327 1510 1.0 589.00 0.00 0.00 589.00 1 2020-11-05 21:20:40.139358 2020-11-05 21:20:40.139358 \N 589.00 \N 0.00 0.00 4271 3327 1522 1.0 699.00 0.00 0.00 699.00 1 2020-11-05 21:20:40.165591 2020-11-05 21:20:40.165591 \N 699.00 \N 0.00 0.00 4272 3327 1393 1.0 119.00 0.00 0.00 119.00 1 2020-11-05 21:20:40.188782 2020-11-05 21:20:40.188782 \N 119.00 \N 0.00 0.00 4273 3327 1029 2.0 138.00 0.00 0.00 138.00 1 2020-11-05 21:20:40.216123 2020-11-05 21:20:40.216123 \N 69.00 \N 0.00 0.00 4274 3328 1284 1.0 169.00 0.00 0.00 169.00 1 2020-11-05 21:24:22.645241 2020-11-05 21:24:22.645241 \N 169.00 \N 0.00 0.00 4275 3329 887 1.0 1099.00 0.00 0.00 1099.00 1 2020-11-05 21:42:23.897927 2020-11-05 21:42:23.897927 \N 1099.00 \N 0.00 0.00 4276 3330 1221 1.0 179.00 0.00 0.00 179.00 1 2020-11-05 21:57:31.497902 2020-11-05 21:57:31.497902 \N 179.00 \N 0.00 0.00 4277 3331 1520 1.0 811.00 0.00 0.00 811.00 1 2020-11-05 22:13:29.507391 2020-11-05 22:13:29.507391 \N 811.00 \N 0.00 0.00 4278 3332 1327 1.0 469.00 0.00 0.00 469.00 1 2020-11-05 22:22:26.710734 2020-11-05 22:22:26.710734 \N 469.00 \N 0.00 0.00 4279 3332 1007 1.0 699.00 0.00 0.00 699.00 1 2020-11-05 22:22:26.738823 2020-11-05 22:22:26.738823 \N 699.00 \N 0.00 0.00 4280 3333 997 1.0 1169.00 0.00 0.00 1169.00 1 2020-11-05 22:24:30.654974 2020-11-05 22:24:30.654974 \N 1169.00 \N 0.00 0.00 4283 3334 1007 1.0 699.00 0.00 0.00 699.00 0 2020-11-05 22:52:10.254909 2020-11-05 22:54:35.669214 \N 699.00 \N 0.00 0.00 4282 3334 1327 1.0 469.00 0.00 0.00 469.00 0 2020-11-05 22:52:10.233198 2020-11-05 22:54:35.69086 \N 469.00 \N 0.00 0.00 4281 3334 1004 1.0 529.00 0.00 0.00 529.00 0 2020-11-05 22:52:10.205185 2020-11-05 22:54:35.709136 \N 529.00 \N 0.00 0.00 4284 3335 1004 1.0 529.00 0.00 0.00 529.00 1 2020-11-05 22:58:00.765602 2020-11-05 22:58:00.765602 \N 529.00 \N 0.00 0.00 4285 3335 1327 1.0 469.00 0.00 0.00 469.00 1 2020-11-05 22:58:00.801 2020-11-05 22:58:00.801 \N 469.00 \N 0.00 0.00 4286 3335 1007 1.0 699.00 0.00 0.00 699.00 1 2020-11-05 22:58:00.827964 2020-11-05 22:58:00.827964 \N 699.00 \N 0.00 0.00 4287 3336 975 1.0 999.00 0.00 0.00 999.00 1 2020-11-05 23:15:09.913452 2020-11-05 23:15:09.913452 \N 999.00 \N 0.00 0.00 4288 3336 1485 1.0 799.00 0.00 0.00 799.00 1 2020-11-05 23:15:09.937413 2020-11-05 23:15:09.937413 \N 799.00 \N 0.00 0.00 4289 3336 1489 1.0 699.00 0.00 0.00 699.00 1 2020-11-05 23:15:09.958236 2020-11-05 23:15:09.958236 \N 699.00 \N 0.00 0.00 4290 3337 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-05 23:17:39.691326 2020-11-05 23:17:39.691326 \N 1599.00 \N 0.00 0.00 4291 3337 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-05 23:17:39.714252 2020-11-05 23:17:39.714252 \N 1399.00 \N 0.00 0.00 4292 3338 1185 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-06 00:43:14.266637 2020-11-06 00:43:14.266637 \N 1599.00 \N 0.00 0.00 4293 3339 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-06 01:32:15.612484 2020-11-06 01:32:15.612484 \N 1799.00 \N 0.00 0.00 4294 3340 1464 1.0 1199.00 0.00 0.00 1199.00 1 2020-11-06 17:52:08.807412 2020-11-06 17:52:08.807412 \N 1199.00 \N 0.00 0.00 4295 3341 1490 1.0 589.00 0.00 0.00 589.00 1 2020-11-06 18:53:49.992383 2020-11-06 18:53:49.992383 \N 589.00 \N 0.00 0.00 4296 3341 1523 1.0 499.00 0.00 0.00 499.00 1 2020-11-06 18:53:50.041587 2020-11-06 18:53:50.041587 \N 499.00 \N 0.00 0.00 4297 3341 885 1.0 899.00 0.00 0.00 899.00 1 2020-11-06 18:53:50.067201 2020-11-06 18:53:50.067201 \N 899.00 \N 0.00 0.00 4298 3342 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-06 19:11:15.582249 2020-11-06 19:11:15.582249 \N 1599.00 \N 0.00 0.00 4299 3343 1513 1.0 1389.00 0.00 0.00 1389.00 1 2020-11-06 20:52:00.274465 2020-11-06 20:52:00.274465 \N 1389.00 \N 0.00 0.00 4300 3344 987 1.0 799.00 0.00 0.00 799.00 1 2020-11-06 22:04:17.135115 2020-11-06 22:04:17.135115 \N 799.00 \N 0.00 0.00 4301 3345 1521 1.0 759.00 0.00 0.00 759.00 1 2020-11-06 22:48:09.033091 2020-11-06 22:48:09.033091 \N 759.00 \N 0.00 0.00 4302 3345 1518 1.0 749.00 0.00 0.00 749.00 1 2020-11-06 22:48:09.085671 2020-11-06 22:48:09.085671 \N 749.00 \N 0.00 0.00 4303 3346 1400 1.0 239.00 0.00 0.00 239.00 1 2020-11-06 22:51:52.426152 2020-11-06 22:51:52.426152 \N 239.00 \N 0.00 0.00 4304 3346 1380 1.0 379.00 0.00 0.00 379.00 1 2020-11-06 22:51:52.462443 2020-11-06 22:51:52.462443 \N 379.00 \N 0.00 0.00 4305 3346 1436 1.0 169.00 0.00 0.00 169.00 1 2020-11-06 22:51:52.493263 2020-11-06 22:51:52.493263 \N 169.00 \N 0.00 0.00 4306 3347 266 1.0 1033.62 165.38 400.00 1199.00 1 2020-11-06 23:00:20.639355 2020-11-06 23:00:20.639355 \N 1599.00 \N 400.00 0.00 4307 3348 1314 1.0 499.00 0.00 0.00 499.00 1 2020-11-07 00:01:56.458594 2020-11-07 00:01:56.458594 \N 499.00 \N 0.00 0.00 4308 3349 1219 1.0 119.00 0.00 0.00 119.00 1 2020-11-07 00:23:48.400119 2020-11-07 00:23:48.400119 \N 119.00 \N 0.00 0.00 4309 3349 1395 1.0 119.00 0.00 0.00 119.00 1 2020-11-07 00:23:48.427079 2020-11-07 00:23:48.427079 \N 119.00 \N 0.00 0.00 4310 3350 1465 1.0 1699.00 0.00 0.00 1699.00 1 2020-11-07 00:25:55.555797 2020-11-07 00:25:55.555797 \N 1699.00 \N 0.00 0.00 4311 3351 1402 1.0 2299.00 0.00 0.00 2299.00 1 2020-11-07 00:51:40.308857 2020-11-07 00:51:40.308857 \N 2299.00 \N 0.00 0.00 4312 3352 1529 1.0 1199.00 0.00 0.00 1199.00 1 2020-11-07 00:52:58.48425 2020-11-07 00:52:58.48425 \N 1199.00 \N 0.00 0.00 4313 3353 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-07 02:08:39.107982 2020-11-07 02:08:39.107982 \N 1799.00 \N 0.00 0.00 4314 3354 1514 1.0 1249.00 0.00 0.00 1249.00 1 2020-11-07 02:25:18.675871 2020-11-07 02:25:18.675871 \N 1249.00 \N 0.00 0.00 4315 3355 1361 1.0 899.00 0.00 0.00 899.00 1 2020-11-07 02:35:59.648287 2020-11-07 02:35:59.648287 \N 899.00 \N 0.00 0.00 4316 3356 1522 1.0 699.00 0.00 0.00 699.00 1 2020-11-07 17:52:27.190331 2020-11-07 17:52:27.190331 \N 699.00 \N 0.00 0.00 4317 3357 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-07 19:12:08.909321 2020-11-07 19:12:08.909321 \N 1599.00 \N 0.00 0.00 4318 3357 887 1.0 1099.00 0.00 0.00 1099.00 1 2020-11-07 19:12:08.947593 2020-11-07 19:12:08.947593 \N 1099.00 \N 0.00 0.00 4319 3358 1528 1.0 698.00 0.00 0.00 698.00 1 2020-11-07 19:14:26.155243 2020-11-07 19:14:26.155243 \N 698.00 \N 0.00 0.00 4320 3359 1528 1.0 698.00 0.00 0.00 698.00 1 2020-11-07 19:55:28.366996 2020-11-07 19:55:28.366996 \N 698.00 \N 0.00 0.00 4321 3360 1294 1.0 999.00 0.00 0.00 999.00 1 2020-11-07 19:57:33.307667 2020-11-07 19:57:33.307667 \N 999.00 \N 0.00 0.00 4322 3361 1480 1.0 879.00 0.00 0.00 879.00 1 2020-11-07 20:54:54.782319 2020-11-07 20:54:54.782319 \N 879.00 \N 0.00 0.00 4323 3362 1518 1.0 749.00 0.00 0.00 749.00 1 2020-11-07 22:36:01.146987 2020-11-07 22:36:01.146987 \N 749.00 \N 0.00 0.00 4324 3362 1525 1.0 699.00 0.00 0.00 699.00 1 2020-11-07 22:36:01.210722 2020-11-07 22:36:01.210722 \N 699.00 \N 0.00 0.00 4325 3362 1523 1.0 499.00 0.00 0.00 499.00 1 2020-11-07 22:36:01.237701 2020-11-07 22:36:01.237701 \N 499.00 \N 0.00 0.00 4327 3363 1492 1.0 799.00 0.00 0.00 799.00 0 2020-11-08 00:13:33.086768 2020-11-08 00:19:49.123899 \N 799.00 \N 0.00 0.00 4326 3363 1504 1.0 999.00 0.00 0.00 999.00 0 2020-11-08 00:13:33.060316 2020-11-08 00:19:49.147202 \N 999.00 \N 0.00 0.00 4328 3364 1504 1.0 999.00 0.00 0.00 999.00 1 2020-11-08 00:21:25.963593 2020-11-08 00:21:25.963593 \N 999.00 \N 0.00 0.00 4329 3364 1294 1.0 999.00 0.00 0.00 999.00 1 2020-11-08 00:21:25.988551 2020-11-08 00:21:25.988551 \N 999.00 \N 0.00 0.00 4330 3365 1484 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-08 01:02:44.262313 2020-11-08 01:02:44.262313 \N 1399.00 \N 0.00 0.00 4331 3366 1497 1.0 629.00 0.00 0.00 629.00 1 2020-11-08 01:07:09.486465 2020-11-08 01:07:09.486465 \N 629.00 \N 0.00 0.00 4332 3367 1513 1.0 1389.00 0.00 0.00 1389.00 1 2020-11-08 02:10:09.420853 2020-11-08 02:10:09.420853 \N 1389.00 \N 0.00 0.00 4333 3367 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-08 02:10:09.445801 2020-11-08 02:10:09.445801 \N 1599.00 \N 0.00 0.00 4334 3367 1228 1.0 169.00 0.00 0.00 169.00 1 2020-11-08 02:10:09.467356 2020-11-08 02:10:09.467356 \N 169.00 \N 0.00 0.00 4335 3367 1381 1.0 389.00 0.00 0.00 389.00 1 2020-11-08 02:10:09.490618 2020-11-08 02:10:09.490618 \N 389.00 \N 0.00 0.00 4336 3367 1232 2.0 798.00 0.00 0.00 798.00 1 2020-11-08 02:10:09.51567 2020-11-08 02:10:09.51567 \N 399.00 \N 0.00 0.00 4337 3368 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-09 19:31:10.635197 2020-11-09 19:31:10.635197 \N 1799.00 \N 0.00 0.00 4338 3369 333 1.0 1033.62 165.38 0.00 1199.00 1 2020-11-09 19:35:32.728691 2020-11-09 19:35:32.728691 \N 1199.00 \N 0.00 0.00 4339 3370 1158 1.0 999.00 0.00 0.00 999.00 1 2020-11-09 21:44:11.915704 2020-11-09 21:44:11.915704 \N 999.00 \N 0.00 0.00 4340 3371 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-09 23:11:16.143611 2020-11-09 23:11:16.143611 \N 1399.00 \N 0.00 0.00 4341 3372 1294 1.0 999.00 0.00 0.00 999.00 1 2020-11-09 23:44:01.015227 2020-11-09 23:44:01.015227 \N 999.00 \N 0.00 0.00 4342 3373 1374 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-09 23:56:23.72515 2020-11-09 23:56:23.72515 \N 1599.00 \N 0.00 0.00 4343 3373 887 1.0 1099.00 0.00 0.00 1099.00 1 2020-11-09 23:56:23.750897 2020-11-09 23:56:23.750897 \N 1099.00 \N 0.00 0.00 4344 3373 1512 1.0 1199.00 0.00 0.00 1199.00 1 2020-11-09 23:56:23.773903 2020-11-09 23:56:23.773903 \N 1199.00 \N 0.00 0.00 4345 3373 1526 1.0 649.00 0.00 0.00 649.00 1 2020-11-09 23:56:23.796868 2020-11-09 23:56:23.796868 \N 649.00 \N 0.00 0.00 4346 3373 1507 1.0 749.00 0.00 0.00 749.00 1 2020-11-09 23:56:23.821561 2020-11-09 23:56:23.821561 \N 749.00 \N 0.00 0.00 4347 3373 903 1.0 1099.00 0.00 0.00 1099.00 1 2020-11-09 23:56:23.84382 2020-11-09 23:56:23.84382 \N 1099.00 \N 0.00 0.00 4348 3373 1523 1.0 499.00 0.00 0.00 499.00 1 2020-11-09 23:56:23.865682 2020-11-09 23:56:23.865682 \N 499.00 \N 0.00 0.00 4349 3374 673 1.0 560.00 0.00 0.00 560.00 1 2020-11-10 00:01:39.276117 2020-11-10 00:01:39.276117 \N 560.00 \N 0.00 0.00 4350 3374 1481 1.0 989.00 0.00 0.00 989.00 1 2020-11-10 00:01:39.303274 2020-11-10 00:01:39.303274 \N 989.00 \N 0.00 0.00 4351 3375 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-10 00:24:19.701127 2020-11-10 00:24:19.701127 \N 1799.00 \N 0.00 0.00 4352 3376 1199 1.0 99.00 0.00 0.00 99.00 1 2020-11-10 01:09:36.708939 2020-11-10 01:09:36.708939 \N 99.00 \N 0.00 0.00 4353 3376 1198 1.0 179.00 0.00 0.00 179.00 1 2020-11-10 01:09:36.746467 2020-11-10 01:09:36.746467 \N 179.00 \N 0.00 0.00 4354 3377 1234 1.0 119.00 0.00 0.00 119.00 1 2020-11-10 01:11:09.288759 2020-11-10 01:11:09.288759 \N 119.00 \N 0.00 0.00 4355 3377 1380 1.0 379.00 0.00 0.00 379.00 1 2020-11-10 01:11:09.322515 2020-11-10 01:11:09.322515 \N 379.00 \N 0.00 0.00 4356 3378 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-10 21:17:14.18997 2020-11-10 21:17:14.18997 \N 1399.00 \N 0.00 0.00 4357 3379 1316 1.0 649.00 0.00 0.00 649.00 1 2020-11-10 21:19:30.485848 2020-11-10 21:19:30.485848 \N 649.00 \N 0.00 0.00 4358 3379 1485 1.0 799.00 0.00 0.00 799.00 1 2020-11-10 21:19:30.511362 2020-11-10 21:19:30.511362 \N 799.00 \N 0.00 0.00 4359 3380 1406 1.0 189.00 0.00 0.00 189.00 1 2020-11-10 21:28:13.901911 2020-11-10 21:28:13.901911 \N 189.00 \N 0.00 0.00 4360 3380 1230 1.0 149.00 0.00 0.00 149.00 1 2020-11-10 21:28:13.93943 2020-11-10 21:28:13.93943 \N 149.00 \N 0.00 0.00 4361 3381 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-11 00:03:25.698938 2020-11-11 00:03:25.698938 \N 1799.00 \N 0.00 0.00 4362 3381 1294 1.0 999.00 0.00 0.00 999.00 1 2020-11-11 00:03:25.750608 2020-11-11 00:03:25.750608 \N 999.00 \N 0.00 0.00 4363 3382 1483 1.0 1199.00 0.00 0.00 1199.00 1 2020-11-11 18:47:35.8316 2020-11-11 18:47:35.8316 \N 1199.00 \N 0.00 0.00 4364 3383 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-11 19:34:45.334066 2020-11-11 19:34:45.334066 \N 1799.00 \N 0.00 0.00 4365 3384 1475 2.0 3198.00 0.00 0.00 3198.00 1 2020-11-11 21:00:58.740063 2020-11-11 21:00:58.740063 \N 1599.00 \N 0.00 0.00 4366 3384 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-11 21:00:58.781096 2020-11-11 21:00:58.781096 \N 1399.00 \N 0.00 0.00 4367 3385 1497 1.0 629.00 0.00 0.00 629.00 1 2020-11-11 21:18:40.741905 2020-11-11 21:18:40.741905 \N 629.00 \N 0.00 0.00 4368 3386 1371 1.0 1799.00 0.00 0.00 1799.00 0 2020-11-11 22:13:11.860651 2020-11-11 22:13:59.36467 \N 1799.00 \N 0.00 0.00 4369 3387 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-11 22:14:22.382394 2020-11-11 22:14:22.382394 \N 1799.00 \N 0.00 0.00 4370 3387 1398 1.0 299.00 0.00 0.00 299.00 1 2020-11-11 22:14:22.407808 2020-11-11 22:14:22.407808 \N 299.00 \N 0.00 0.00 4371 3388 1523 1.0 499.00 0.00 0.00 499.00 1 2020-11-12 00:16:27.895439 2020-11-12 00:16:27.895439 \N 499.00 \N 0.00 0.00 4372 3389 1412 1.0 169.00 0.00 0.00 169.00 1 2020-11-12 00:42:43.519081 2020-11-12 00:42:43.519081 \N 169.00 \N 0.00 0.00 4373 3389 1485 1.0 799.00 0.00 0.00 799.00 1 2020-11-12 00:42:43.544868 2020-11-12 00:42:43.544868 \N 799.00 \N 0.00 0.00 4374 3389 1489 1.0 699.00 0.00 0.00 699.00 1 2020-11-12 00:42:43.569188 2020-11-12 00:42:43.569188 \N 699.00 \N 0.00 0.00 4375 3390 367 1.0 301.72 48.28 0.00 350.00 1 2020-11-12 01:02:27.267587 2020-11-12 01:02:27.267587 \N 350.00 \N 0.00 0.00 4376 3390 959 1.0 899.00 0.00 0.00 899.00 1 2020-11-12 01:02:27.29512 2020-11-12 01:02:27.29512 \N 899.00 \N 0.00 0.00 4377 3391 1475 1.0 800.00 0.00 799.00 800.00 1 2020-11-12 01:14:25.650542 2020-11-12 01:14:25.650542 \N 1599.00 \N 799.00 0.00 4378 3392 1368 1.0 1499.00 0.00 0.00 1499.00 1 2020-11-12 01:42:21.674232 2020-11-12 01:42:21.674232 \N 1499.00 \N 0.00 0.00 4379 3392 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-12 01:42:21.712169 2020-11-12 01:42:21.712169 \N 1799.00 \N 0.00 0.00 4380 3393 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-12 01:48:10.238131 2020-11-12 01:48:10.238131 \N 1599.00 \N 0.00 0.00 4381 3393 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-12 01:48:10.26605 2020-11-12 01:48:10.26605 \N 1399.00 \N 0.00 0.00 4382 3394 1533 1.0 3099.00 0.00 0.00 3099.00 1 2020-11-12 01:58:51.423715 2020-11-12 01:58:51.423715 \N 3099.00 \N 0.00 0.00 4383 3395 1385 1.0 269.00 0.00 0.00 269.00 1 2020-11-12 19:43:00.295362 2020-11-12 19:43:00.295362 \N 269.00 \N 0.00 0.00 4384 3396 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-11-12 19:57:42.556622 2020-11-12 19:57:42.556622 \N 1499.00 \N 0.00 0.00 4385 3397 1418 1.0 289.00 0.00 0.00 289.00 1 2020-11-12 20:01:52.737022 2020-11-12 20:01:52.737022 \N 289.00 \N 0.00 0.00 4386 3398 793 1.0 749.00 0.00 0.00 749.00 1 2020-11-12 20:22:36.389459 2020-11-12 20:22:36.389459 \N 749.00 \N 0.00 0.00 4387 3399 907 1.0 60.00 0.00 0.00 60.00 1 2020-11-12 20:25:56.811648 2020-11-12 20:25:56.811648 \N 60.00 \N 0.00 0.00 4388 3400 1469 1.0 1299.00 0.00 0.00 1299.00 1 2020-11-12 20:31:40.114896 2020-11-12 20:31:40.114896 \N 1299.00 \N 0.00 0.00 4389 3400 907 1.0 60.00 0.00 0.00 60.00 1 2020-11-12 20:31:40.146 2020-11-12 20:31:40.146 \N 60.00 \N 0.00 0.00 4390 3401 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-11-12 22:17:19.897922 2020-11-12 22:17:19.897922 \N 1499.00 \N 0.00 0.00 4391 3402 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-12 23:03:48.285135 2020-11-12 23:03:48.285135 \N 1399.00 \N 0.00 0.00 4392 3403 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-12 23:19:30.695215 2020-11-12 23:19:30.695215 \N 1799.00 \N 0.00 0.00 4393 3404 1180 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-12 23:26:28.441829 2020-11-12 23:26:28.441829 \N 1799.00 \N 0.00 0.00 4394 3405 1475 1.0 1599.00 0.00 0.00 1599.00 0 2020-11-12 23:50:16.102063 2020-11-12 23:51:45.245243 \N 1599.00 \N 0.00 0.00 4395 3406 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-12 23:52:37.424277 2020-11-12 23:52:37.424277 \N 1599.00 \N 0.00 0.00 4396 3406 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-12 23:52:37.457616 2020-11-12 23:52:37.457616 \N 1399.00 \N 0.00 0.00 4397 3407 1508 1.0 499.00 0.00 0.00 499.00 1 2020-11-12 23:54:01.244 2020-11-12 23:54:01.244 \N 499.00 \N 0.00 0.00 4398 3408 1508 1.0 499.00 0.00 0.00 499.00 1 2020-11-12 23:55:16.129989 2020-11-12 23:55:16.129989 \N 499.00 \N 0.00 0.00 4400 3410 1366 1.0 2099.00 0.00 0.00 2099.00 1 2020-11-13 19:46:38.577171 2020-11-13 19:46:38.577171 \N 2099.00 \N 0.00 0.00 4399 3409 1490 2.0 1178.00 0.00 0.00 1178.00 0 2020-11-13 19:46:30.557044 2020-11-13 19:46:54.87496 \N 589.00 \N 0.00 0.00 4401 3411 1490 2.0 1178.00 0.00 0.00 1178.00 1 2020-11-13 19:47:10.405341 2020-11-13 19:47:10.405341 \N 589.00 \N 0.00 0.00 4402 3412 1522 1.0 699.00 0.00 0.00 699.00 1 2020-11-13 20:12:09.548396 2020-11-13 20:12:09.548396 \N 699.00 \N 0.00 0.00 4403 3413 1513 1.0 1389.00 0.00 0.00 1389.00 0 2020-11-13 20:28:46.24567 2020-11-13 20:28:51.15021 \N 1389.00 \N 0.00 0.00 4405 3415 1520 1.0 811.00 0.00 0.00 811.00 1 2020-11-13 20:43:13.69602 2020-11-13 20:43:13.69602 \N 811.00 \N 0.00 0.00 4407 3417 1520 1.0 811.00 0.00 0.00 811.00 1 2020-11-14 00:33:34.018659 2020-11-14 00:33:34.018659 \N 811.00 \N 0.00 0.00 4408 3418 1199 1.0 99.00 0.00 0.00 99.00 1 2020-11-14 01:55:41.022846 2020-11-14 01:55:41.022846 \N 99.00 \N 0.00 0.00 4409 3419 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-14 01:57:45.420325 2020-11-14 01:57:45.420325 \N 1599.00 \N 0.00 0.00 4410 3419 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-14 01:57:45.450895 2020-11-14 01:57:45.450895 \N 1399.00 \N 0.00 0.00 4411 3420 1209 2.0 378.00 0.00 0.00 378.00 1 2020-11-14 19:43:41.101024 2020-11-14 19:43:41.101024 \N 189.00 \N 0.00 0.00 4412 3420 1395 1.0 119.00 0.00 0.00 119.00 1 2020-11-14 19:43:41.128905 2020-11-14 19:43:41.128905 \N 119.00 \N 0.00 0.00 4413 3421 590 1.0 1000.00 0.00 99.00 1000.00 1 2020-11-14 21:13:51.381746 2020-11-14 21:13:51.381746 \N 1099.00 \N 99.00 0.00 4414 3422 1399 1.0 109.00 0.00 0.00 109.00 1 2020-11-14 21:14:48.75987 2020-11-14 21:14:48.75987 \N 109.00 \N 0.00 0.00 4415 3423 1514 1.0 1249.00 0.00 0.00 1249.00 1 2020-11-14 21:55:34.265549 2020-11-14 21:55:34.265549 \N 1249.00 \N 0.00 0.00 4419 3426 1481 1.0 989.00 0.00 0.00 989.00 1 2020-11-15 00:02:53.86199 2020-11-15 00:02:53.86199 \N 989.00 \N 0.00 0.00 4420 3427 1510 1.0 589.00 0.00 0.00 589.00 1 2020-11-15 00:25:37.08977 2020-11-15 00:25:37.08977 \N 589.00 \N 0.00 0.00 4421 3427 1509 1.0 589.00 0.00 0.00 589.00 1 2020-11-15 00:25:37.130671 2020-11-15 00:25:37.130671 \N 589.00 \N 0.00 0.00 4422 3427 1538 1.0 699.00 0.00 0.00 699.00 1 2020-11-15 00:25:37.158515 2020-11-15 00:25:37.158515 \N 699.00 \N 0.00 0.00 4423 3428 202 1.0 430.17 68.83 0.00 499.00 1 2020-11-15 00:33:07.344393 2020-11-15 00:33:07.344393 \N 499.00 \N 0.00 0.00 4424 3429 1165 1.0 799.00 0.00 0.00 799.00 1 2020-11-15 01:48:32.760352 2020-11-15 01:48:32.760352 \N 799.00 \N 0.00 0.00 4425 3430 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-15 01:50:54.253374 2020-11-15 01:50:54.253374 \N 1799.00 \N 0.00 0.00 4426 3430 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-15 01:50:54.286964 2020-11-15 01:50:54.286964 \N 1399.00 \N 0.00 0.00 4427 3431 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-15 02:12:25.853005 2020-11-15 02:12:25.853005 \N 1599.00 \N 0.00 0.00 4428 3432 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-15 19:28:46.217683 2020-11-15 19:28:46.217683 \N 1799.00 \N 0.00 0.00 4429 3433 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-15 20:35:46.628648 2020-11-15 20:35:46.628648 \N 1599.00 \N 0.00 0.00 4430 3434 1516 1.0 1069.00 0.00 0.00 1069.00 1 2020-11-16 20:52:16.834324 2020-11-16 20:52:16.834324 \N 1069.00 \N 0.00 0.00 4431 3434 1488 1.0 699.00 0.00 0.00 699.00 1 2020-11-16 20:52:16.865963 2020-11-16 20:52:16.865963 \N 699.00 \N 0.00 0.00 4432 3434 1453 1.0 199.00 0.00 0.00 199.00 1 2020-11-16 20:52:16.895083 2020-11-16 20:52:16.895083 \N 199.00 \N 0.00 0.00 4433 3435 1541 1.0 1251.00 0.00 0.00 1251.00 1 2020-11-16 21:57:37.96954 2020-11-16 21:57:37.96954 \N 1251.00 \N 0.00 0.00 4404 3414 1513 1.0 1389.00 0.00 0.00 1389.00 0 2020-11-13 20:29:05.384487 2020-12-23 20:11:51.374148 \N 1389.00 \N 0.00 0.00 4418 3425 1504 1.0 999.00 0.00 0.00 999.00 0 2020-11-14 23:45:02.963529 2020-12-28 21:29:07.698919 \N 999.00 \N 0.00 0.00 4417 3425 1526 1.0 649.00 0.00 0.00 649.00 0 2020-11-14 23:45:02.937238 2020-12-28 21:29:07.731032 \N 649.00 \N 0.00 0.00 4416 3424 1142 1.0 1999.00 0.00 0.00 1999.00 0 2020-11-14 22:50:10.035144 2021-01-07 01:08:31.214848 \N 1999.00 \N 0.00 0.00 4434 3436 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-16 21:59:06.417586 2020-11-16 21:59:06.417586 \N 1399.00 \N 0.00 0.00 4435 3437 1374 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-16 22:01:46.220143 2020-11-16 22:01:46.220143 \N 1599.00 \N 0.00 0.00 4436 3438 1518 1.0 749.00 0.00 0.00 749.00 1 2020-11-16 22:06:24.125721 2020-11-16 22:06:24.125721 \N 749.00 \N 0.00 0.00 4437 3438 1528 1.0 698.00 0.00 0.00 698.00 1 2020-11-16 22:06:24.151576 2020-11-16 22:06:24.151576 \N 698.00 \N 0.00 0.00 4438 3438 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-16 22:06:24.175302 2020-11-16 22:06:24.175302 \N 1399.00 \N 0.00 0.00 4439 3439 1371 3.0 5397.00 0.00 0.00 5397.00 1 2020-11-16 22:53:36.867914 2020-11-16 22:53:36.867914 \N 1799.00 \N 0.00 0.00 4440 3440 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-16 23:50:32.547182 2020-11-16 23:50:32.547182 \N 1599.00 \N 0.00 0.00 4441 3441 1444 1.0 109.00 0.00 0.00 109.00 1 2020-11-16 23:56:02.302391 2020-11-16 23:56:02.302391 \N 109.00 \N 0.00 0.00 4442 3441 1521 1.0 759.00 0.00 0.00 759.00 1 2020-11-16 23:56:02.345212 2020-11-16 23:56:02.345212 \N 759.00 \N 0.00 0.00 4443 3442 1215 1.0 149.00 0.00 0.00 149.00 1 2020-11-17 00:04:42.841606 2020-11-17 00:04:42.841606 \N 149.00 \N 0.00 0.00 4444 3443 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-17 00:15:23.379587 2020-11-17 00:15:23.379587 \N 1799.00 \N 0.00 0.00 4445 3444 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-17 18:08:15.644315 2020-11-17 18:08:15.644315 \N 1799.00 \N 0.00 0.00 4446 3445 1500 1.0 689.00 0.00 0.00 689.00 1 2020-11-17 19:12:55.092013 2020-11-17 19:12:55.092013 \N 689.00 \N 0.00 0.00 4447 3446 672 1.0 600.00 0.00 99.00 600.00 1 2020-11-17 19:16:59.553896 2020-11-17 19:16:59.553896 \N 699.00 \N 99.00 0.00 4448 3447 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-17 20:30:49.002662 2020-11-17 20:30:49.002662 \N 1799.00 \N 0.00 0.00 4449 3448 41 1.0 1293.10 206.90 399.00 1500.00 1 2020-11-17 20:43:19.727827 2020-11-17 20:43:19.727827 \N 1899.00 \N 399.00 0.00 4450 3449 1374 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-17 21:41:47.96564 2020-11-17 21:41:47.96564 \N 1599.00 \N 0.00 0.00 4451 3449 1500 1.0 689.00 0.00 0.00 689.00 1 2020-11-17 21:41:48.003233 2020-11-17 21:41:48.003233 \N 689.00 \N 0.00 0.00 4452 3450 1521 1.0 759.00 0.00 0.00 759.00 1 2020-11-17 22:16:12.674246 2020-11-17 22:16:12.674246 \N 759.00 \N 0.00 0.00 4453 3450 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-17 22:16:12.714367 2020-11-17 22:16:12.714367 \N 1799.00 \N 0.00 0.00 4454 3451 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-17 22:22:30.226546 2020-11-17 22:22:30.226546 \N 1799.00 \N 0.00 0.00 4455 3452 1490 1.0 531.00 0.00 58.00 531.00 1 2020-11-18 00:32:49.079973 2020-11-18 00:32:49.079973 \N 589.00 \N 58.00 0.00 4456 3453 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-18 01:46:25.718195 2020-11-18 01:46:25.718195 \N 1799.00 \N 0.00 0.00 4457 3454 1180 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-18 17:06:36.748035 2020-11-18 17:06:36.748035 \N 1799.00 \N 0.00 0.00 4458 3455 1388 1.0 199.00 0.00 0.00 199.00 0 2020-11-18 17:48:28.618094 2020-11-18 18:17:02.241639 \N 199.00 \N 0.00 0.00 4459 3456 1388 1.0 199.00 0.00 0.00 199.00 1 2020-11-18 18:17:22.507607 2020-11-18 18:17:22.507607 \N 199.00 \N 0.00 0.00 4460 3457 369 1.0 42.24 6.76 0.00 49.00 1 2020-11-18 18:37:50.204559 2020-11-18 18:37:50.204559 \N 49.00 \N 0.00 0.00 4461 3458 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-18 21:03:26.174348 2020-11-18 21:03:26.174348 \N 1599.00 \N 0.00 0.00 4462 3459 1544 1.0 1899.00 0.00 0.00 1899.00 0 2020-11-19 00:29:22.57154 2020-11-19 00:29:59.59215 \N 1899.00 \N 0.00 0.00 4463 3460 1544 1.0 1899.00 0.00 0.00 1899.00 1 2020-11-19 00:30:41.63127 2020-11-19 00:30:41.63127 \N 1899.00 \N 0.00 0.00 4464 3461 1517 1.0 1249.00 0.00 0.00 1249.00 1 2020-11-19 00:48:01.44402 2020-11-19 00:48:01.44402 \N 1249.00 \N 0.00 0.00 4465 3462 1471 1.0 799.00 0.00 0.00 799.00 1 2020-11-19 01:15:46.536544 2020-11-19 01:15:46.536544 \N 799.00 \N 0.00 0.00 4466 3462 864 1.0 849.00 0.00 350.00 849.00 1 2020-11-19 01:15:46.566855 2020-11-19 01:15:46.566855 \N 1199.00 \N 350.00 0.00 4467 3463 715 1.0 969.00 0.00 0.00 969.00 1 2020-11-19 18:33:31.992378 2020-11-19 18:33:31.992378 \N 969.00 \N 0.00 0.00 4468 3464 1379 1.0 379.00 0.00 0.00 379.00 1 2020-11-19 18:39:17.296728 2020-11-19 18:39:17.296728 \N 379.00 \N 0.00 0.00 4469 3464 1200 1.0 159.00 0.00 0.00 159.00 1 2020-11-19 18:39:17.326385 2020-11-19 18:39:17.326385 \N 159.00 \N 0.00 0.00 4470 3465 1181 1.0 1499.00 0.00 0.00 1499.00 0 2020-11-19 19:30:17.371193 2020-11-19 19:31:54.159222 \N 1499.00 \N 0.00 0.00 4471 3466 1538 1.0 699.00 0.00 0.00 699.00 1 2020-11-19 20:20:46.573627 2020-11-19 20:20:46.573627 \N 699.00 \N 0.00 0.00 4472 3466 1525 1.0 699.00 0.00 0.00 699.00 1 2020-11-19 20:20:46.622894 2020-11-19 20:20:46.622894 \N 699.00 \N 0.00 0.00 4473 3466 1332 2.0 998.00 0.00 0.00 998.00 1 2020-11-19 20:20:46.667348 2020-11-19 20:20:46.667348 \N 499.00 \N 0.00 0.00 4474 3466 1493 1.0 869.00 0.00 0.00 869.00 1 2020-11-19 20:20:46.698981 2020-11-19 20:20:46.698981 \N 869.00 \N 0.00 0.00 4475 3467 1443 1.0 249.00 0.00 0.00 249.00 1 2020-11-19 20:23:16.173136 2020-11-19 20:23:16.173136 \N 249.00 \N 0.00 0.00 4476 3468 1500 1.0 689.00 0.00 0.00 689.00 1 2020-11-19 20:40:48.112351 2020-11-19 20:40:48.112351 \N 689.00 \N 0.00 0.00 4477 3469 1122 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-19 21:17:51.280549 2020-11-19 21:17:51.280549 \N 1599.00 \N 0.00 0.00 4478 3469 1159 1.0 1499.00 0.00 0.00 1499.00 1 2020-11-19 21:17:51.320479 2020-11-19 21:17:51.320479 \N 1499.00 \N 0.00 0.00 4479 3470 1368 1.0 1499.00 0.00 0.00 1499.00 1 2020-11-19 21:23:15.303475 2020-11-19 21:23:15.303475 \N 1499.00 \N 0.00 0.00 4480 3471 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-19 21:32:06.389608 2020-11-19 21:32:06.389608 \N 1599.00 \N 0.00 0.00 4481 3472 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-19 21:37:15.054124 2020-11-19 21:37:15.054124 \N 1799.00 \N 0.00 0.00 4482 3473 1542 1.0 849.00 0.00 0.00 849.00 0 2020-11-19 23:42:23.229522 2020-11-19 23:43:00.16224 \N 849.00 \N 0.00 0.00 4483 3474 1542 1.0 849.00 0.00 0.00 849.00 1 2020-11-19 23:45:27.815242 2020-11-19 23:45:27.815242 \N 849.00 \N 0.00 0.00 4484 3474 367 2.0 517.24 82.76 100.00 600.00 1 2020-11-19 23:45:27.861494 2020-11-19 23:45:27.861494 \N 350.00 \N 100.00 0.00 4485 3475 956 1.0 899.00 0.00 0.00 899.00 1 2020-11-19 23:53:21.340482 2020-11-19 23:53:21.340482 \N 899.00 \N 0.00 0.00 4486 3475 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-19 23:53:21.371923 2020-11-19 23:53:21.371923 \N 1399.00 \N 0.00 0.00 4487 3476 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-20 02:07:16.899342 2020-11-20 02:07:16.899342 \N 1599.00 \N 0.00 0.00 4488 3476 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-20 02:07:16.925323 2020-11-20 02:07:16.925323 \N 1399.00 \N 0.00 0.00 4489 3477 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-20 18:06:54.985568 2020-11-20 18:06:54.985568 \N 1799.00 \N 0.00 0.00 4490 3478 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-20 18:14:33.645173 2020-11-20 18:14:33.645173 \N 1799.00 \N 0.00 0.00 4491 3479 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-20 19:13:11.850681 2020-11-20 19:13:11.850681 \N 1799.00 \N 0.00 0.00 4492 3480 1371 1.0 1799.00 0.00 0.00 1799.00 0 2020-11-20 21:49:23.409858 2020-11-20 21:52:10.188028 \N 1799.00 \N 0.00 0.00 4493 3481 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-20 21:52:57.434159 2020-11-20 21:52:57.434159 \N 1799.00 \N 0.00 0.00 4494 3482 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-21 00:26:59.632513 2020-11-21 00:26:59.632513 \N 1399.00 \N 0.00 0.00 4495 3483 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-21 00:31:19.472757 2020-11-21 00:31:19.472757 \N 1799.00 \N 0.00 0.00 4496 3484 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-21 02:03:20.810866 2020-11-21 02:03:20.810866 \N 1799.00 \N 0.00 0.00 4497 3485 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-21 18:46:49.579079 2020-11-21 18:46:49.579079 \N 1799.00 \N 0.00 0.00 4498 3485 1514 1.0 1249.00 0.00 0.00 1249.00 1 2020-11-21 18:46:49.620109 2020-11-21 18:46:49.620109 \N 1249.00 \N 0.00 0.00 4499 3486 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-21 19:23:11.385287 2020-11-21 19:23:11.385287 \N 1399.00 \N 0.00 0.00 4500 3487 1529 1.0 1199.00 0.00 0.00 1199.00 1 2020-11-21 20:56:33.571655 2020-11-21 20:56:33.571655 \N 1199.00 \N 0.00 0.00 4501 3488 1538 1.0 699.00 0.00 0.00 699.00 1 2020-11-21 21:09:45.379454 2020-11-21 21:09:45.379454 \N 699.00 \N 0.00 0.00 4502 3488 1399 1.0 109.00 0.00 0.00 109.00 1 2020-11-21 21:09:45.406163 2020-11-21 21:09:45.406163 \N 109.00 \N 0.00 0.00 4503 3489 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-21 21:53:00.356877 2020-11-21 21:53:00.356877 \N 1799.00 \N 0.00 0.00 4504 3490 1492 1.0 799.00 0.00 0.00 799.00 1 2020-11-22 17:41:20.672429 2020-11-22 17:41:20.672429 \N 799.00 \N 0.00 0.00 4505 3491 1294 1.0 999.00 0.00 0.00 999.00 1 2020-11-22 20:29:49.030085 2020-11-22 20:29:49.030085 \N 999.00 \N 0.00 0.00 4506 3492 1495 1.0 1399.00 0.00 0.00 1399.00 0 2020-11-23 18:49:47.462276 2020-11-23 18:49:53.112046 \N 1399.00 \N 0.00 0.00 4507 3493 1495 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-23 18:50:55.972053 2020-11-23 18:50:55.972053 \N 1399.00 \N 0.00 0.00 4508 3494 1375 1.0 1699.00 0.00 0.00 1699.00 0 2020-11-23 19:16:29.800886 2020-11-23 19:22:06.481791 \N 1699.00 \N 0.00 0.00 4509 3495 1357 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-23 19:23:53.255957 2020-11-23 19:23:53.255957 \N 1399.00 \N 0.00 0.00 4510 3496 902 1.0 1769.00 0.00 0.00 1769.00 1 2020-11-23 19:34:16.82486 2020-11-23 19:34:16.82486 \N 1769.00 \N 0.00 0.00 4511 3496 1538 1.0 699.00 0.00 0.00 699.00 1 2020-11-23 19:34:16.850182 2020-11-23 19:34:16.850182 \N 699.00 \N 0.00 0.00 4512 3497 1465 1.0 1699.00 0.00 0.00 1699.00 1 2020-11-23 20:12:24.378635 2020-11-23 20:12:24.378635 \N 1699.00 \N 0.00 0.00 4513 3498 1380 1.0 379.00 0.00 0.00 379.00 1 2020-11-23 20:48:11.632309 2020-11-23 20:48:11.632309 \N 379.00 \N 0.00 0.00 4514 3499 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-23 21:02:54.933783 2020-11-23 21:02:54.933783 \N 1799.00 \N 0.00 0.00 4515 3500 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-23 21:17:16.59126 2020-11-23 21:17:16.59126 \N 1599.00 \N 0.00 0.00 4516 3501 1464 1.0 1199.00 0.00 0.00 1199.00 1 2020-11-23 23:46:10.74869 2020-11-23 23:46:10.74869 \N 1199.00 \N 0.00 0.00 4517 3502 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-24 01:03:00.375202 2020-11-24 01:03:00.375202 \N 1799.00 \N 0.00 0.00 4518 3503 1499 1.0 489.00 0.00 0.00 489.00 1 2020-11-24 01:14:53.195824 2020-11-24 01:14:53.195824 \N 489.00 \N 0.00 0.00 4519 3504 1546 1.0 2099.00 0.00 0.00 2099.00 1 2020-11-24 02:18:43.561854 2020-11-24 02:18:43.561854 \N 2099.00 \N 0.00 0.00 4520 3505 1494 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-24 21:24:16.00724 2020-11-24 21:24:16.00724 \N 1399.00 \N 0.00 0.00 4521 3506 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-24 23:42:24.050346 2020-11-24 23:42:24.050346 \N 1599.00 \N 0.00 0.00 4522 3507 1209 1.0 189.00 0.00 0.00 189.00 1 2020-11-25 00:20:38.318627 2020-11-25 00:20:38.318627 \N 189.00 \N 0.00 0.00 4523 3508 975 1.0 999.00 0.00 0.00 999.00 1 2020-11-25 00:27:22.425226 2020-11-25 00:27:22.425226 \N 999.00 \N 0.00 0.00 4525 3510 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-25 01:12:32.459629 2020-11-25 01:12:32.459629 \N 1799.00 \N 0.00 0.00 4526 3511 1472 1.0 499.00 0.00 0.00 499.00 1 2020-11-25 01:22:49.096524 2020-11-25 01:22:49.096524 \N 499.00 \N 0.00 0.00 4527 3512 388 1.0 1378.45 220.55 700.00 1599.00 1 2020-11-25 01:36:15.056175 2020-11-25 01:36:15.056175 \N 2299.00 \N 700.00 0.00 4528 3513 1506 1.0 489.00 0.00 0.00 489.00 1 2020-11-25 19:10:57.859217 2020-11-25 19:10:57.859217 \N 489.00 \N 0.00 0.00 4529 3513 1490 1.0 589.00 0.00 0.00 589.00 1 2020-11-25 19:10:57.916305 2020-11-25 19:10:57.916305 \N 589.00 \N 0.00 0.00 4530 3514 1507 1.0 749.00 0.00 0.00 749.00 1 2020-11-26 00:09:15.746615 2020-11-26 00:09:15.746615 \N 749.00 \N 0.00 0.00 4531 3515 767 1.0 550.00 0.00 139.00 550.00 1 2020-11-26 19:09:35.617379 2020-11-26 19:09:35.617379 \N 689.00 \N 139.00 0.00 4532 3516 1510 1.0 589.00 0.00 0.00 589.00 1 2020-11-26 20:01:37.120157 2020-11-26 20:01:37.120157 \N 589.00 \N 0.00 0.00 4534 3518 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-26 20:20:07.706856 2020-11-26 20:20:07.706856 \N 1799.00 \N 0.00 0.00 4535 3519 1485 1.0 799.00 0.00 0.00 799.00 1 2020-11-26 20:26:18.97788 2020-11-26 20:26:18.97788 \N 799.00 \N 0.00 0.00 4536 3520 1229 1.0 249.00 0.00 0.00 249.00 1 2020-11-26 21:57:51.500872 2020-11-26 21:57:51.500872 \N 249.00 \N 0.00 0.00 4537 3521 1461 1.0 119.00 0.00 0.00 119.00 1 2020-11-26 21:58:09.82536 2020-11-26 21:58:09.82536 \N 119.00 \N 0.00 0.00 4538 3522 1329 1.0 479.00 0.00 0.00 479.00 1 2020-11-26 22:58:24.088873 2020-11-26 22:58:24.088873 \N 479.00 \N 0.00 0.00 4539 3523 1511 1.0 825.00 0.00 0.00 825.00 0 2020-11-27 00:05:17.503541 2020-11-27 00:05:24.541589 \N 825.00 \N 0.00 0.00 4540 3524 1542 1.0 849.00 0.00 0.00 849.00 1 2020-11-27 00:08:29.869549 2020-11-27 00:08:29.869549 \N 849.00 \N 0.00 0.00 4541 3524 1511 1.0 825.00 0.00 0.00 825.00 1 2020-11-27 00:08:29.903615 2020-11-27 00:08:29.903615 \N 825.00 \N 0.00 0.00 4542 3525 790 1.0 829.00 0.00 0.00 829.00 1 2020-11-27 00:17:33.187704 2020-11-27 00:17:33.187704 \N 829.00 \N 0.00 0.00 4543 3525 1511 1.0 825.00 0.00 0.00 825.00 1 2020-11-27 00:17:33.215105 2020-11-27 00:17:33.215105 \N 825.00 \N 0.00 0.00 4544 3526 1483 1.0 1199.00 0.00 0.00 1199.00 1 2020-11-27 00:24:38.190816 2020-11-27 00:24:38.190816 \N 1199.00 \N 0.00 0.00 4545 3527 788 1.0 589.00 0.00 0.00 589.00 1 2020-11-27 00:46:31.789777 2020-11-27 00:46:31.789777 \N 589.00 \N 0.00 0.00 4546 3528 1464 1.0 1199.00 0.00 0.00 1199.00 1 2020-11-27 01:06:04.218202 2020-11-27 01:06:04.218202 \N 1199.00 \N 0.00 0.00 4547 3529 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-27 01:15:01.634093 2020-11-27 01:15:01.634093 \N 1799.00 \N 0.00 0.00 4548 3530 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-27 01:32:45.786277 2020-11-27 01:32:45.786277 \N 1799.00 \N 0.00 0.00 4549 3530 1349 1.0 1099.00 0.00 0.00 1099.00 1 2020-11-27 01:32:45.835909 2020-11-27 01:32:45.835909 \N 1099.00 \N 0.00 0.00 4550 3531 1541 1.0 1251.00 0.00 0.00 1251.00 1 2020-11-27 02:05:10.140157 2020-11-27 02:05:10.140157 \N 1251.00 \N 0.00 0.00 4551 3532 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-27 21:26:54.267757 2020-11-27 21:26:54.267757 \N 1399.00 \N 0.00 0.00 4552 3533 1366 2.0 4198.00 0.00 0.00 4198.00 0 2020-11-27 22:51:19.053701 2020-11-27 22:51:54.225373 \N 2099.00 \N 0.00 0.00 4553 3534 1366 1.0 2099.00 0.00 0.00 2099.00 1 2020-11-27 22:52:10.745637 2020-11-27 22:52:10.745637 \N 2099.00 \N 0.00 0.00 4554 3535 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-27 23:39:04.622093 2020-11-27 23:39:04.622093 \N 1799.00 \N 0.00 0.00 4555 3536 1514 1.0 1249.00 0.00 0.00 1249.00 1 2020-11-28 00:08:46.099668 2020-11-28 00:08:46.099668 \N 1249.00 \N 0.00 0.00 4556 3537 1357 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-28 01:14:47.680222 2020-11-28 01:14:47.680222 \N 1399.00 \N 0.00 0.00 4557 3538 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-28 01:15:41.940631 2020-11-28 01:15:41.940631 \N 1799.00 \N 0.00 0.00 4558 3539 1058 1.0 229.00 0.00 0.00 229.00 1 2020-11-28 02:00:11.168966 2020-11-28 02:00:11.168966 \N 229.00 \N 0.00 0.00 4559 3539 1526 1.0 649.00 0.00 0.00 649.00 1 2020-11-28 02:00:11.207324 2020-11-28 02:00:11.207324 \N 649.00 \N 0.00 0.00 4560 3539 1528 1.0 698.00 0.00 0.00 698.00 1 2020-11-28 02:00:11.232095 2020-11-28 02:00:11.232095 \N 698.00 \N 0.00 0.00 4561 3540 1370 1.0 1499.00 0.00 0.00 1499.00 1 2020-11-28 02:13:48.711098 2020-11-28 02:13:48.711098 \N 1499.00 \N 0.00 0.00 4562 3541 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-28 02:44:20.157135 2020-11-28 02:44:20.157135 \N 1399.00 \N 0.00 0.00 4563 3542 484 1.0 999.00 0.00 0.00 999.00 1 2020-11-28 20:29:27.495683 2020-11-28 20:29:27.495683 \N 999.00 \N 0.00 0.00 4564 3543 982 1.0 1119.00 0.00 0.00 1119.00 1 2020-11-28 21:09:25.136539 2020-11-28 21:09:25.136539 \N 1119.00 \N 0.00 0.00 4565 3544 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-28 21:17:21.311192 2020-11-28 21:17:21.311192 \N 1799.00 \N 0.00 0.00 4566 3545 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-28 22:14:17.90636 2020-11-28 22:14:17.90636 \N 1799.00 \N 0.00 0.00 4567 3546 1294 1.0 999.00 0.00 0.00 999.00 1 2020-11-28 23:57:04.732266 2020-11-28 23:57:04.732266 \N 999.00 \N 0.00 0.00 4568 3547 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-29 00:20:48.857908 2020-11-29 00:20:48.857908 \N 1799.00 \N 0.00 0.00 4569 3548 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-29 00:22:56.832251 2020-11-29 00:22:56.832251 \N 1399.00 \N 0.00 0.00 4570 3549 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-29 00:54:51.326328 2020-11-29 00:54:51.326328 \N 1599.00 \N 0.00 0.00 4571 3550 1547 1.0 1499.00 0.00 0.00 1499.00 1 2020-11-29 01:00:28.434898 2020-11-29 01:00:28.434898 \N 1499.00 \N 0.00 0.00 4572 3551 1540 1.0 1196.00 0.00 0.00 1196.00 0 2020-11-29 01:07:41.299774 2020-11-29 01:40:57.703534 \N 1196.00 \N 0.00 0.00 4573 3552 1372 1.0 1399.00 0.00 0.00 1399.00 0 2020-11-29 18:11:49.753867 2020-11-29 18:12:55.335549 \N 1399.00 \N 0.00 0.00 4574 3553 1372 1.0 1259.10 0.00 139.90 1259.10 1 2020-11-29 18:14:07.848728 2020-11-29 18:14:07.848728 \N 1399.00 \N 0.00 10.00 4575 3554 1464 1.0 1199.00 0.00 0.00 1199.00 1 2020-11-29 20:37:41.369065 2020-11-29 20:37:41.369065 \N 1199.00 \N 0.00 0.00 4576 3555 1327 1.0 469.00 0.00 0.00 469.00 1 2020-11-30 20:02:33.946056 2020-11-30 20:02:33.946056 \N 469.00 \N 0.00 0.00 4577 3556 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-11-30 20:41:27.734586 2020-11-30 20:41:27.734586 \N 1599.00 \N 0.00 0.00 4578 3556 1180 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-30 20:41:27.761304 2020-11-30 20:41:27.761304 \N 1799.00 \N 0.00 0.00 4579 3557 1481 1.0 989.00 0.00 0.00 989.00 1 2020-11-30 20:46:46.206908 2020-11-30 20:46:46.206908 \N 989.00 \N 0.00 0.00 4580 3558 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-11-30 21:39:29.91199 2020-11-30 21:39:29.91199 \N 1799.00 \N 0.00 0.00 4581 3559 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-11-30 22:02:38.391988 2020-11-30 22:02:38.391988 \N 1399.00 \N 0.00 0.00 4524 3509 1126 1.0 1499.00 0.00 0.00 1499.00 0 2020-11-25 01:05:26.68775 2020-12-01 00:49:09.385921 \N 1499.00 \N 0.00 0.00 4533 3517 1371 1.0 1799.00 0.00 0.00 1799.00 0 2020-11-26 20:15:11.254808 2021-01-27 17:43:44.978647 \N 1799.00 \N 0.00 0.00 4582 3560 1371 1.0 1799.00 0.00 0.00 1799.00 0 2020-12-01 00:35:39.386286 2020-12-01 00:36:58.07502 \N 1799.00 \N 0.00 0.00 4585 3562 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-12-01 00:55:00.095134 2020-12-01 00:55:00.095134 \N 1799.00 \N 0.00 0.00 4586 3563 1097 1.0 119.00 0.00 0.00 119.00 1 2020-12-01 00:55:07.32604 2020-12-01 00:55:07.32604 \N 119.00 \N 0.00 0.00 4587 3563 1349 1.0 1099.00 0.00 0.00 1099.00 1 2020-12-01 00:55:07.360433 2020-12-01 00:55:07.360433 \N 1099.00 \N 0.00 0.00 4588 3564 1332 1.0 499.00 0.00 0.00 499.00 1 2020-12-01 00:59:19.086008 2020-12-01 00:59:19.086008 \N 499.00 \N 0.00 0.00 4589 3564 369 2.0 84.48 13.52 0.00 98.00 1 2020-12-01 00:59:19.143564 2020-12-01 00:59:19.143564 \N 49.00 \N 0.00 0.00 4590 3565 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-12-01 01:56:12.209167 2020-12-01 01:56:12.209167 \N 1799.00 \N 0.00 0.00 4591 3565 1499 1.0 489.00 0.00 0.00 489.00 1 2020-12-01 01:56:12.236494 2020-12-01 01:56:12.236494 \N 489.00 \N 0.00 0.00 4584 3561 1499 1.0 489.00 0.00 0.00 489.00 0 2020-12-01 00:37:31.375954 2020-12-01 01:56:33.619582 \N 489.00 \N 0.00 0.00 4583 3561 1371 1.0 1799.00 0.00 0.00 1799.00 0 2020-12-01 00:37:31.348661 2020-12-01 01:56:33.650013 \N 1799.00 \N 0.00 0.00 4592 3566 1357 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-01 02:03:00.273059 2020-12-01 02:03:00.273059 \N 1399.00 \N 0.00 0.00 4593 3567 1537 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-01 17:18:42.372834 2020-12-01 17:18:42.372834 \N 1399.00 \N 0.00 0.00 4594 3568 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-12-01 19:46:52.670213 2020-12-01 19:46:52.670213 \N 1599.00 \N 0.00 0.00 4595 3568 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-12-01 19:46:52.69777 2020-12-01 19:46:52.69777 \N 1799.00 \N 0.00 0.00 4596 3569 1361 1.0 899.00 0.00 0.00 899.00 1 2020-12-01 20:26:20.166816 2020-12-01 20:26:20.166816 \N 899.00 \N 0.00 0.00 4597 3570 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-12-02 00:32:38.188629 2020-12-02 00:32:38.188629 \N 1599.00 \N 0.00 0.00 4598 3571 1514 1.0 1249.00 0.00 0.00 1249.00 1 2020-12-02 00:36:00.260267 2020-12-02 00:36:00.260267 \N 1249.00 \N 0.00 0.00 4599 3572 710 1.0 1199.00 0.00 0.00 1199.00 1 2020-12-02 01:37:41.805542 2020-12-02 01:37:41.805542 \N 1199.00 \N 0.00 0.00 4600 3572 895 1.0 1629.00 0.00 0.00 1629.00 1 2020-12-02 01:37:41.831271 2020-12-02 01:37:41.831271 \N 1629.00 \N 0.00 0.00 4601 3572 754 1.0 825.00 0.00 0.00 825.00 1 2020-12-02 01:37:41.853334 2020-12-02 01:37:41.853334 \N 825.00 \N 0.00 0.00 4602 3573 602 1.0 569.00 0.00 0.00 569.00 1 2020-12-02 01:49:05.898974 2020-12-02 01:49:05.898974 \N 569.00 \N 0.00 0.00 4603 3574 1377 1.0 189.00 0.00 0.00 189.00 1 2020-12-02 18:21:10.343644 2020-12-02 18:21:10.343644 \N 189.00 \N 0.00 0.00 4604 3574 1391 1.0 199.00 0.00 0.00 199.00 1 2020-12-02 18:21:10.381803 2020-12-02 18:21:10.381803 \N 199.00 \N 0.00 0.00 4605 3575 1251 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-02 19:03:15.897816 2020-12-02 19:03:15.897816 \N 1499.00 \N 0.00 0.00 4606 3576 1521 1.0 759.00 0.00 0.00 759.00 1 2020-12-02 21:30:31.182097 2020-12-02 21:30:31.182097 \N 759.00 \N 0.00 0.00 4607 3577 1521 1.0 759.00 0.00 0.00 759.00 1 2020-12-02 21:38:26.660494 2020-12-02 21:38:26.660494 \N 759.00 \N 0.00 0.00 4608 3578 987 1.0 799.00 0.00 0.00 799.00 1 2020-12-02 22:00:00.433555 2020-12-02 22:00:00.433555 \N 799.00 \N 0.00 0.00 4609 3579 1541 1.0 1251.00 0.00 0.00 1251.00 1 2020-12-02 22:36:49.141298 2020-12-02 22:36:49.141298 \N 1251.00 \N 0.00 0.00 4610 3580 1333 1.0 629.00 0.00 0.00 629.00 1 2020-12-02 22:43:49.015111 2020-12-02 22:43:49.015111 \N 629.00 \N 0.00 0.00 4611 3581 1541 1.0 1251.00 0.00 0.00 1251.00 1 2020-12-03 00:35:34.213707 2020-12-03 00:35:34.213707 \N 1251.00 \N 0.00 0.00 4612 3582 1522 1.0 699.00 0.00 0.00 699.00 1 2020-12-03 01:51:15.861602 2020-12-03 01:51:15.861602 \N 699.00 \N 0.00 0.00 4613 3583 1372 1.0 1399.00 0.00 0.00 1399.00 0 2020-12-03 18:56:10.65914 2020-12-03 18:56:27.202583 \N 1399.00 \N 0.00 0.00 4614 3584 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-03 18:56:55.961519 2020-12-03 18:56:55.961519 \N 1399.00 \N 0.00 0.00 4615 3585 1333 1.0 629.00 0.00 0.00 629.00 1 2020-12-03 19:34:18.704662 2020-12-03 19:34:18.704662 \N 629.00 \N 0.00 0.00 4616 3586 1325 1.0 820.00 0.00 149.00 820.00 1 2020-12-03 20:23:01.419224 2020-12-03 20:23:01.419224 \N 969.00 \N 149.00 0.00 4617 3587 1304 1.0 599.00 0.00 0.00 599.00 1 2020-12-03 21:09:28.34005 2020-12-03 21:09:28.34005 \N 599.00 \N 0.00 0.00 4618 3587 1541 1.0 1251.00 0.00 0.00 1251.00 1 2020-12-03 21:09:28.374342 2020-12-03 21:09:28.374342 \N 1251.00 \N 0.00 0.00 4619 3587 1238 1.0 389.00 0.00 0.00 389.00 1 2020-12-03 21:09:28.405149 2020-12-03 21:09:28.405149 \N 389.00 \N 0.00 0.00 4620 3588 1500 1.0 689.00 0.00 0.00 689.00 1 2020-12-03 21:21:35.210891 2020-12-03 21:21:35.210891 \N 689.00 \N 0.00 0.00 4621 3589 796 1.0 1199.00 0.00 0.00 1199.00 1 2020-12-03 23:56:26.958396 2020-12-03 23:56:26.958396 \N 1199.00 \N 0.00 0.00 4622 3590 690 1.0 799.00 0.00 0.00 799.00 1 2020-12-04 00:29:19.470981 2020-12-04 00:29:19.470981 \N 799.00 \N 0.00 0.00 4623 3591 1505 1.0 529.00 0.00 0.00 529.00 1 2020-12-04 00:48:02.958382 2020-12-04 00:48:02.958382 \N 529.00 \N 0.00 0.00 4624 3592 1491 1.0 899.00 0.00 0.00 899.00 1 2020-12-04 01:49:12.235026 2020-12-04 01:49:12.235026 \N 899.00 \N 0.00 0.00 4625 3593 1316 1.0 649.00 0.00 0.00 649.00 1 2020-12-04 18:25:06.031989 2020-12-04 18:25:06.031989 \N 649.00 \N 0.00 0.00 4626 3594 1393 1.0 119.00 0.00 0.00 119.00 1 2020-12-04 18:41:04.484114 2020-12-04 18:41:04.484114 \N 119.00 \N 0.00 0.00 4627 3595 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-12-04 19:28:49.479488 2020-12-04 19:28:49.479488 \N 1799.00 \N 0.00 0.00 4628 3595 997 1.0 1169.00 0.00 0.00 1169.00 1 2020-12-04 19:28:49.519603 2020-12-04 19:28:49.519603 \N 1169.00 \N 0.00 0.00 4629 3595 1092 1.0 119.00 0.00 0.00 119.00 1 2020-12-04 19:28:49.541615 2020-12-04 19:28:49.541615 \N 119.00 \N 0.00 0.00 4630 3596 1517 1.0 1249.00 0.00 0.00 1249.00 1 2020-12-04 20:31:30.468714 2020-12-04 20:31:30.468714 \N 1249.00 \N 0.00 0.00 4631 3597 1513 1.0 1389.00 0.00 0.00 1389.00 1 2020-12-04 20:32:10.732929 2020-12-04 20:32:10.732929 \N 1389.00 \N 0.00 0.00 4632 3597 202 1.0 430.17 68.83 0.00 499.00 1 2020-12-04 20:32:10.75953 2020-12-04 20:32:10.75953 \N 499.00 \N 0.00 0.00 4633 3598 1348 1.0 1099.00 0.00 0.00 1099.00 1 2020-12-04 21:03:50.274614 2020-12-04 21:03:50.274614 \N 1099.00 \N 0.00 0.00 4634 3599 1542 1.0 849.00 0.00 0.00 849.00 1 2020-12-04 21:10:23.603289 2020-12-04 21:10:23.603289 \N 849.00 \N 0.00 0.00 4635 3599 1507 1.0 749.00 0.00 0.00 749.00 1 2020-12-04 21:10:23.627839 2020-12-04 21:10:23.627839 \N 749.00 \N 0.00 0.00 4636 3600 782 1.0 569.00 0.00 0.00 569.00 1 2020-12-04 21:14:32.654804 2020-12-04 21:14:32.654804 \N 569.00 \N 0.00 0.00 4637 3601 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-04 21:52:58.68396 2020-12-04 21:52:58.68396 \N 1399.00 \N 0.00 0.00 4638 3602 1510 1.0 589.00 0.00 0.00 589.00 1 2020-12-04 23:07:16.848781 2020-12-04 23:07:16.848781 \N 589.00 \N 0.00 0.00 4639 3603 1529 1.0 1199.00 0.00 0.00 1199.00 1 2020-12-04 23:18:47.796414 2020-12-04 23:18:47.796414 \N 1199.00 \N 0.00 0.00 4640 3604 1505 1.0 529.00 0.00 0.00 529.00 1 2020-12-04 23:37:40.168961 2020-12-04 23:37:40.168961 \N 529.00 \N 0.00 0.00 4641 3605 1294 1.0 999.00 0.00 0.00 999.00 1 2020-12-05 01:41:06.893518 2020-12-05 01:41:06.893518 \N 999.00 \N 0.00 0.00 4642 3606 1480 1.0 879.00 0.00 0.00 879.00 1 2020-12-05 19:23:36.637152 2020-12-05 19:23:36.637152 \N 879.00 \N 0.00 0.00 4643 3607 1528 1.0 598.00 0.00 100.00 598.00 1 2020-12-05 19:33:01.731664 2020-12-05 19:33:01.731664 \N 698.00 \N 100.00 0.00 4644 3608 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-05 20:03:02.538935 2020-12-05 20:03:02.538935 \N 1499.00 \N 0.00 0.00 4645 3609 1491 1.0 899.00 0.00 0.00 899.00 1 2020-12-05 20:21:54.443349 2020-12-05 20:21:54.443349 \N 899.00 \N 0.00 0.00 4646 3610 721 1.0 1799.00 0.00 0.00 1799.00 1 2020-12-05 20:28:18.028229 2020-12-05 20:28:18.028229 \N 1799.00 \N 0.00 0.00 4647 3610 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-12-05 20:28:18.053634 2020-12-05 20:28:18.053634 \N 1799.00 \N 0.00 0.00 4648 3611 1357 1.0 1399.00 0.00 0.00 1399.00 0 2020-12-05 20:34:32.061151 2020-12-05 20:35:45.070777 \N 1399.00 \N 0.00 0.00 4650 3612 1372 1.0 1399.00 0.00 0.00 1399.00 0 2020-12-05 20:36:36.466346 2020-12-05 20:37:45.297876 \N 1399.00 \N 0.00 0.00 4649 3612 1357 1.0 1399.00 0.00 0.00 1399.00 0 2020-12-05 20:36:36.441104 2020-12-05 20:37:45.796741 \N 1399.00 \N 0.00 0.00 4651 3613 1357 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-05 20:50:04.540545 2020-12-05 20:50:04.540545 \N 1399.00 \N 0.00 0.00 4652 3613 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-05 20:50:04.568831 2020-12-05 20:50:04.568831 \N 1399.00 \N 0.00 0.00 4653 3614 1500 1.0 689.00 0.00 0.00 689.00 1 2020-12-05 20:52:46.64554 2020-12-05 20:52:46.64554 \N 689.00 \N 0.00 0.00 4654 3615 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-12-05 20:53:28.756617 2020-12-05 20:53:28.756617 \N 1799.00 \N 0.00 0.00 4655 3616 782 1.0 569.00 0.00 0.00 569.00 1 2020-12-06 01:09:21.656087 2020-12-06 01:09:21.656087 \N 569.00 \N 0.00 0.00 4656 3616 1504 1.0 999.00 0.00 0.00 999.00 1 2020-12-06 01:09:21.682392 2020-12-06 01:09:21.682392 \N 999.00 \N 0.00 0.00 4657 3617 1522 1.0 699.00 0.00 0.00 699.00 1 2020-12-06 01:53:42.619914 2020-12-06 01:53:42.619914 \N 699.00 \N 0.00 0.00 4658 3618 871 2.0 1198.00 0.00 0.00 1198.00 1 2020-12-06 19:08:10.53186 2020-12-06 19:08:10.53186 \N 599.00 \N 0.00 0.00 4659 3619 1529 1.0 1199.00 0.00 0.00 1199.00 1 2020-12-07 17:18:51.406301 2020-12-07 17:18:51.406301 \N 1199.00 \N 0.00 0.00 4660 3620 1386 1.0 569.00 0.00 0.00 569.00 1 2020-12-07 22:04:44.156452 2020-12-07 22:04:44.156452 \N 569.00 \N 0.00 0.00 4661 3621 1389 1.0 229.00 0.00 0.00 229.00 1 2020-12-07 23:32:15.303949 2020-12-07 23:32:15.303949 \N 229.00 \N 0.00 0.00 4662 3622 1481 1.0 989.00 0.00 0.00 989.00 1 2020-12-07 23:43:43.75189 2020-12-07 23:43:43.75189 \N 989.00 \N 0.00 0.00 4663 3622 887 1.0 1099.00 0.00 0.00 1099.00 1 2020-12-07 23:43:43.777893 2020-12-07 23:43:43.777893 \N 1099.00 \N 0.00 0.00 4664 3622 571 1.0 799.00 0.00 0.00 799.00 1 2020-12-07 23:43:43.801673 2020-12-07 23:43:43.801673 \N 799.00 \N 0.00 0.00 4665 3622 1508 1.0 499.00 0.00 0.00 499.00 1 2020-12-07 23:43:43.825435 2020-12-07 23:43:43.825435 \N 499.00 \N 0.00 0.00 4666 3622 1493 1.0 869.00 0.00 0.00 869.00 1 2020-12-07 23:43:43.854714 2020-12-07 23:43:43.854714 \N 869.00 \N 0.00 0.00 4667 3622 978 1.0 569.00 0.00 0.00 569.00 1 2020-12-07 23:43:43.876715 2020-12-07 23:43:43.876715 \N 569.00 \N 0.00 0.00 4668 3623 982 1.0 1119.00 0.00 0.00 1119.00 1 2020-12-07 23:45:46.032806 2020-12-07 23:45:46.032806 \N 1119.00 \N 0.00 0.00 4669 3624 625 1.0 600.00 0.00 269.00 600.00 1 2020-12-08 00:12:45.351017 2020-12-08 00:12:45.351017 \N 869.00 \N 269.00 0.00 4670 3625 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-08 01:02:34.634554 2020-12-08 01:02:34.634554 \N 1399.00 \N 0.00 0.00 4672 3627 1470 1.0 699.00 0.00 0.00 699.00 1 2020-12-08 21:55:53.667191 2020-12-08 21:55:53.667191 \N 699.00 \N 0.00 0.00 4673 3627 1474 1.0 999.00 0.00 0.00 999.00 1 2020-12-08 21:55:53.713684 2020-12-08 21:55:53.713684 \N 999.00 \N 0.00 0.00 4675 3628 1535 1.0 899.00 0.00 0.00 899.00 0 2020-12-08 23:41:12.775364 2020-12-08 23:42:08.150923 \N 899.00 \N 0.00 0.00 4674 3628 1321 1.0 749.00 0.00 0.00 749.00 0 2020-12-08 23:41:12.745369 2020-12-08 23:42:08.182108 \N 749.00 \N 0.00 0.00 4676 3629 1374 1.0 1599.00 0.00 0.00 1599.00 1 2020-12-09 00:58:55.137919 2020-12-09 00:58:55.137919 \N 1599.00 \N 0.00 0.00 4677 3630 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-12-09 01:18:30.310764 2020-12-09 01:18:30.310764 \N 1799.00 \N 0.00 0.00 4678 3631 1497 1.0 629.00 0.00 0.00 629.00 1 2020-12-09 01:25:32.461126 2020-12-09 01:25:32.461126 \N 629.00 \N 0.00 0.00 4679 3632 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-12-09 02:02:39.438238 2020-12-09 02:02:39.438238 \N 1599.00 \N 0.00 0.00 4680 3633 1491 1.0 899.00 0.00 0.00 899.00 1 2020-12-09 18:57:18.486936 2020-12-09 18:57:18.486936 \N 899.00 \N 0.00 0.00 4681 3634 1524 1.0 739.00 0.00 0.00 739.00 1 2020-12-09 19:42:40.808439 2020-12-09 19:42:40.808439 \N 739.00 \N 0.00 0.00 4682 3634 793 1.0 749.00 0.00 0.00 749.00 1 2020-12-09 19:42:40.833248 2020-12-09 19:42:40.833248 \N 749.00 \N 0.00 0.00 4683 3634 1196 1.0 410.00 0.00 0.00 410.00 1 2020-12-09 19:42:40.855077 2020-12-09 19:42:40.855077 \N 410.00 \N 0.00 0.00 4684 3634 1548 1.0 899.00 0.00 0.00 899.00 1 2020-12-09 19:42:40.876304 2020-12-09 19:42:40.876304 \N 899.00 \N 0.00 0.00 4685 3635 1540 1.0 1196.00 0.00 0.00 1196.00 0 2020-12-09 22:03:48.764833 2020-12-09 22:04:01.668267 \N 1196.00 \N 0.00 0.00 4686 3636 1540 1.0 1196.00 0.00 0.00 1196.00 1 2020-12-09 22:04:25.055661 2020-12-09 22:04:25.055661 \N 1196.00 \N 0.00 0.00 4687 3637 1378 1.0 289.00 0.00 0.00 289.00 0 2020-12-09 22:22:14.629652 2020-12-09 22:23:54.07129 \N 289.00 \N 0.00 0.00 4688 3638 1378 1.0 289.00 0.00 0.00 289.00 1 2020-12-09 22:25:58.316389 2020-12-09 22:25:58.316389 \N 289.00 \N 0.00 0.00 4689 3638 1540 1.0 1196.00 0.00 0.00 1196.00 1 2020-12-09 22:25:58.349168 2020-12-09 22:25:58.349168 \N 1196.00 \N 0.00 0.00 4690 3639 1521 1.0 759.00 0.00 0.00 759.00 1 2020-12-09 22:34:19.447119 2020-12-09 22:34:19.447119 \N 759.00 \N 0.00 0.00 4691 3640 664 1.0 699.00 0.00 0.00 699.00 1 2020-12-09 22:44:09.956159 2020-12-09 22:44:09.956159 \N 699.00 \N 0.00 0.00 4692 3641 1509 1.0 589.00 0.00 0.00 589.00 1 2020-12-09 23:04:13.386106 2020-12-09 23:04:13.386106 \N 589.00 \N 0.00 0.00 4693 3641 1516 1.0 1069.00 0.00 0.00 1069.00 1 2020-12-09 23:04:13.414176 2020-12-09 23:04:13.414176 \N 1069.00 \N 0.00 0.00 4695 3643 1004 1.0 529.00 0.00 0.00 529.00 1 2020-12-10 01:38:05.942387 2020-12-10 01:38:05.942387 \N 529.00 \N 0.00 0.00 4696 3644 904 1.0 789.00 0.00 0.00 789.00 1 2020-12-10 19:57:48.259409 2020-12-10 19:57:48.259409 \N 789.00 \N 0.00 0.00 4697 3645 1535 1.0 899.00 0.00 0.00 899.00 1 2020-12-10 21:21:37.843057 2020-12-10 21:21:37.843057 \N 899.00 \N 0.00 0.00 4698 3645 1491 1.0 899.00 0.00 0.00 899.00 1 2020-12-10 21:21:37.870594 2020-12-10 21:21:37.870594 \N 899.00 \N 0.00 0.00 4699 3645 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-12-10 21:21:37.893677 2020-12-10 21:21:37.893677 \N 1799.00 \N 0.00 0.00 4700 3646 1523 2.0 998.00 0.00 0.00 998.00 1 2020-12-10 21:38:08.81663 2020-12-10 21:38:08.81663 \N 499.00 \N 0.00 0.00 4701 3647 1209 1.0 189.00 0.00 0.00 189.00 1 2020-12-10 22:10:26.020895 2020-12-10 22:10:26.020895 \N 189.00 \N 0.00 0.00 4702 3647 1539 1.0 1045.00 0.00 0.00 1045.00 1 2020-12-10 22:10:26.053839 2020-12-10 22:10:26.053839 \N 1045.00 \N 0.00 0.00 4703 3648 1304 1.0 599.00 0.00 0.00 599.00 1 2020-12-10 23:11:24.116021 2020-12-10 23:11:24.116021 \N 599.00 \N 0.00 0.00 4704 3649 1484 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-10 23:15:21.873129 2020-12-10 23:15:21.873129 \N 1399.00 \N 0.00 0.00 4705 3650 1547 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-11 00:29:54.074471 2020-12-11 00:29:54.074471 \N 1499.00 \N 0.00 0.00 4706 3651 1525 1.0 699.00 0.00 0.00 699.00 1 2020-12-11 01:15:26.197055 2020-12-11 01:15:26.197055 \N 699.00 \N 0.00 0.00 4707 3651 1523 1.0 499.00 0.00 0.00 499.00 1 2020-12-11 01:15:26.245204 2020-12-11 01:15:26.245204 \N 499.00 \N 0.00 0.00 4708 3652 1491 1.0 899.00 0.00 0.00 899.00 1 2020-12-11 01:19:41.262959 2020-12-11 01:19:41.262959 \N 899.00 \N 0.00 0.00 4709 3653 1537 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-11 02:39:10.390724 2020-12-11 02:39:10.390724 \N 1399.00 \N 0.00 0.00 4710 3654 984 1.0 479.00 0.00 0.00 479.00 1 2020-12-11 20:04:34.566563 2020-12-11 20:04:34.566563 \N 479.00 \N 0.00 0.00 4711 3655 676 1.0 1299.00 0.00 0.00 1299.00 1 2020-12-11 21:02:50.943127 2020-12-11 21:02:50.943127 \N 1299.00 \N 0.00 0.00 4712 3656 962 1.0 849.00 0.00 0.00 849.00 1 2020-12-11 21:32:01.413134 2020-12-11 21:32:01.413134 \N 849.00 \N 0.00 0.00 4713 3656 1429 1.0 199.00 0.00 0.00 199.00 1 2020-12-11 21:32:01.446375 2020-12-11 21:32:01.446375 \N 199.00 \N 0.00 0.00 4714 3657 1521 1.0 759.00 0.00 0.00 759.00 1 2020-12-11 22:17:01.898253 2020-12-11 22:17:01.898253 \N 759.00 \N 0.00 0.00 4715 3658 676 1.0 1299.00 0.00 0.00 1299.00 1 2020-12-11 23:05:21.748687 2020-12-11 23:05:21.748687 \N 1299.00 \N 0.00 0.00 4716 3659 1522 1.0 699.00 0.00 0.00 699.00 1 2020-12-11 23:34:54.500654 2020-12-11 23:34:54.500654 \N 699.00 \N 0.00 0.00 4717 3660 1526 1.0 649.00 0.00 0.00 649.00 1 2020-12-11 23:36:24.515497 2020-12-11 23:36:24.515497 \N 649.00 \N 0.00 0.00 4718 3661 1535 1.0 899.00 0.00 0.00 899.00 0 2020-12-12 00:26:17.597359 2020-12-12 00:26:28.096163 \N 899.00 \N 0.00 0.00 4719 3662 1535 1.0 899.00 0.00 0.00 899.00 1 2020-12-12 00:27:24.048998 2020-12-12 00:27:24.048998 \N 899.00 \N 0.00 0.00 4720 3663 1534 1.0 849.00 0.00 0.00 849.00 1 2020-12-12 00:33:01.318368 2020-12-12 00:33:01.318368 \N 849.00 \N 0.00 0.00 4721 3664 1540 1.0 1196.00 0.00 0.00 1196.00 1 2020-12-12 00:42:09.998931 2020-12-12 00:42:09.998931 \N 1196.00 \N 0.00 0.00 4722 3665 1473 1.0 499.00 0.00 0.00 499.00 1 2020-12-12 00:55:33.564239 2020-12-12 00:55:33.564239 \N 499.00 \N 0.00 0.00 4723 3665 273 1.0 1378.45 220.55 0.00 1599.00 1 2020-12-12 00:55:33.63135 2020-12-12 00:55:33.63135 \N 1599.00 \N 0.00 0.00 4724 3666 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-12-12 01:39:58.846029 2020-12-12 01:39:58.846029 \N 1799.00 \N 0.00 0.00 4725 3667 1537 1.0 1399.00 0.00 0.00 1399.00 0 2020-12-12 02:29:56.513068 2020-12-12 02:33:28.243284 \N 1399.00 \N 0.00 0.00 4726 3668 1537 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-12 02:34:15.296418 2020-12-12 02:34:15.296418 \N 1399.00 \N 0.00 0.00 4727 3668 821 1.0 199.00 0.00 0.00 199.00 1 2020-12-12 02:34:15.32826 2020-12-12 02:34:15.32826 \N 199.00 \N 0.00 0.00 4728 3668 827 1.0 170.00 0.00 0.00 170.00 1 2020-12-12 02:34:15.357595 2020-12-12 02:34:15.357595 \N 170.00 \N 0.00 0.00 4729 3669 1528 1.0 698.00 0.00 0.00 698.00 1 2020-12-12 18:58:35.854237 2020-12-12 18:58:35.854237 \N 698.00 \N 0.00 0.00 4730 3670 1521 1.0 759.00 0.00 0.00 759.00 1 2020-12-12 19:01:23.631501 2020-12-12 19:01:23.631501 \N 759.00 \N 0.00 0.00 4694 3642 1475 1.0 1599.00 0.00 0.00 1599.00 0 2020-12-09 23:18:09.402043 2020-12-15 01:19:19.422965 \N 1599.00 \N 0.00 0.00 4671 3626 1484 1.0 1399.00 0.00 0.00 1399.00 0 2020-12-08 20:11:42.672326 2020-12-16 21:29:48.539253 \N 1399.00 \N 0.00 0.00 4731 3671 1164 1.0 899.00 0.00 0.00 899.00 0 2020-12-12 19:42:55.841461 2020-12-12 19:44:20.043009 \N 899.00 \N 0.00 0.00 4732 3672 1488 1.0 699.00 0.00 0.00 699.00 1 2020-12-12 20:04:51.604802 2020-12-12 20:04:51.604802 \N 699.00 \N 0.00 0.00 4733 3672 949 1.0 549.00 0.00 0.00 549.00 1 2020-12-12 20:04:51.63139 2020-12-12 20:04:51.63139 \N 549.00 \N 0.00 0.00 4734 3673 1512 1.0 1049.00 0.00 150.00 1049.00 1 2020-12-12 20:32:24.090264 2020-12-12 20:32:24.090264 \N 1199.00 \N 150.00 0.00 4735 3674 1547 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-12 21:48:31.106832 2020-12-12 21:48:31.106832 \N 1499.00 \N 0.00 0.00 4736 3675 954 1.0 1199.00 0.00 0.00 1199.00 1 2020-12-12 23:38:10.286168 2020-12-12 23:38:10.286168 \N 1199.00 \N 0.00 0.00 4737 3676 1506 1.0 489.00 0.00 0.00 489.00 1 2020-12-12 23:44:53.534662 2020-12-12 23:44:53.534662 \N 489.00 \N 0.00 0.00 4738 3677 1521 1.0 759.00 0.00 0.00 759.00 1 2020-12-13 00:16:44.614211 2020-12-13 00:16:44.614211 \N 759.00 \N 0.00 0.00 4739 3678 1333 1.0 629.00 0.00 0.00 629.00 1 2020-12-13 00:35:44.201178 2020-12-13 00:35:44.201178 \N 629.00 \N 0.00 0.00 4740 3679 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-12-13 01:03:43.659141 2020-12-13 01:03:43.659141 \N 1799.00 \N 0.00 0.00 4741 3680 1549 1.0 2099.00 0.00 0.00 2099.00 1 2020-12-13 01:04:31.602601 2020-12-13 01:04:31.602601 \N 2099.00 \N 0.00 0.00 4742 3681 1537 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-13 18:09:51.465041 2020-12-13 18:09:51.465041 \N 1399.00 \N 0.00 0.00 4743 3682 1543 1.0 1389.00 0.00 0.00 1389.00 0 2020-12-13 20:26:12.189457 2020-12-13 20:26:33.710872 \N 1389.00 \N 0.00 0.00 4744 3683 1543 1.0 1239.00 0.00 150.00 1239.00 1 2020-12-13 20:27:09.63167 2020-12-13 20:27:09.63167 \N 1389.00 \N 150.00 0.00 4745 3684 1173 1.0 799.00 0.00 0.00 799.00 1 2020-12-13 20:41:13.765513 2020-12-13 20:41:13.765513 \N 799.00 \N 0.00 0.00 4746 3684 1184 1.0 1699.00 0.00 0.00 1699.00 1 2020-12-13 20:41:13.806935 2020-12-13 20:41:13.806935 \N 1699.00 \N 0.00 0.00 4747 3685 1508 1.0 499.00 0.00 0.00 499.00 1 2020-12-13 21:05:15.703831 2020-12-13 21:05:15.703831 \N 499.00 \N 0.00 0.00 4748 3686 1544 1.0 1899.00 0.00 0.00 1899.00 1 2020-12-13 21:21:41.766584 2020-12-13 21:21:41.766584 \N 1899.00 \N 0.00 0.00 4749 3687 1497 1.0 629.00 0.00 0.00 629.00 1 2020-12-13 22:06:51.124882 2020-12-13 22:06:51.124882 \N 629.00 \N 0.00 0.00 4750 3688 869 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-14 17:48:47.125208 2020-12-14 17:48:47.125208 \N 1399.00 \N 0.00 0.00 4751 3689 1546 1.0 2099.00 0.00 0.00 2099.00 1 2020-12-14 19:22:27.252301 2020-12-14 19:22:27.252301 \N 2099.00 \N 0.00 0.00 4752 3690 1522 1.0 699.00 0.00 0.00 699.00 1 2020-12-14 20:31:49.997699 2020-12-14 20:31:49.997699 \N 699.00 \N 0.00 0.00 4753 3691 1380 1.0 379.00 0.00 0.00 379.00 1 2020-12-14 22:02:48.006037 2020-12-14 22:02:48.006037 \N 379.00 \N 0.00 0.00 4754 3692 1094 1.0 469.00 0.00 0.00 469.00 1 2020-12-14 22:05:29.676085 2020-12-14 22:05:29.676085 \N 469.00 \N 0.00 0.00 4755 3692 1521 1.0 759.00 0.00 0.00 759.00 1 2020-12-14 22:05:29.70562 2020-12-14 22:05:29.70562 \N 759.00 \N 0.00 0.00 4756 3693 1135 1.0 1599.00 0.00 0.00 1599.00 1 2020-12-14 22:06:54.870643 2020-12-14 22:06:54.870643 \N 1599.00 \N 0.00 0.00 4757 3694 1525 1.0 699.00 0.00 0.00 699.00 1 2020-12-14 22:57:01.532825 2020-12-14 22:57:01.532825 \N 699.00 \N 0.00 0.00 4758 3695 1523 2.0 998.00 0.00 0.00 998.00 1 2020-12-14 23:01:58.668181 2020-12-14 23:01:58.668181 \N 499.00 \N 0.00 0.00 4759 3696 982 1.0 969.00 0.00 150.00 969.00 1 2020-12-14 23:21:27.390234 2020-12-14 23:21:27.390234 \N 1119.00 \N 150.00 0.00 4760 3697 1472 1.0 499.00 0.00 0.00 499.00 1 2020-12-14 23:33:57.472345 2020-12-14 23:33:57.472345 \N 499.00 \N 0.00 0.00 4761 3698 1549 1.0 2099.00 0.00 0.00 2099.00 1 2020-12-15 00:04:35.967428 2020-12-15 00:04:35.967428 \N 2099.00 \N 0.00 0.00 4762 3699 1547 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-15 00:55:05.512166 2020-12-15 00:55:05.512166 \N 1499.00 \N 0.00 0.00 4763 3700 786 1.0 599.00 0.00 0.00 599.00 1 2020-12-15 01:10:25.549948 2020-12-15 01:10:25.549948 \N 599.00 \N 0.00 0.00 4764 3701 1238 1.0 389.00 0.00 0.00 389.00 1 2020-12-15 01:20:00.41005 2020-12-15 01:20:00.41005 \N 389.00 \N 0.00 0.00 4765 3701 1416 1.0 179.00 0.00 0.00 179.00 1 2020-12-15 01:20:00.439315 2020-12-15 01:20:00.439315 \N 179.00 \N 0.00 0.00 4127 3216 63 1.0 645.69 103.31 0.00 749.00 0 2020-10-19 22:55:11.688277 2020-12-15 01:20:46.209486 \N 749.00 \N 0.00 0.00 4766 3702 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-12-15 01:43:47.588889 2020-12-15 01:43:47.588889 \N 1799.00 \N 0.00 0.00 4767 3703 1378 1.0 289.00 0.00 0.00 289.00 0 2020-12-15 02:41:20.425762 2020-12-15 02:41:47.679873 \N 289.00 \N 0.00 0.00 4768 3704 1230 1.0 149.00 0.00 0.00 149.00 1 2020-12-15 02:42:01.641972 2020-12-15 02:42:01.641972 \N 149.00 \N 0.00 0.00 4769 3705 1016 1.0 519.00 0.00 0.00 519.00 1 2020-12-15 17:28:21.773682 2020-12-15 17:28:21.773682 \N 519.00 \N 0.00 0.00 4770 3705 871 1.0 599.00 0.00 0.00 599.00 1 2020-12-15 17:28:21.809822 2020-12-15 17:28:21.809822 \N 599.00 \N 0.00 0.00 4771 3705 954 1.0 1199.00 0.00 0.00 1199.00 1 2020-12-15 17:28:21.833452 2020-12-15 17:28:21.833452 \N 1199.00 \N 0.00 0.00 4772 3706 1539 1.0 1045.00 0.00 0.00 1045.00 0 2020-12-15 18:13:24.822342 2020-12-15 18:13:52.958324 \N 1045.00 \N 0.00 0.00 4773 3707 1539 1.0 1045.00 0.00 0.00 1045.00 1 2020-12-15 18:14:12.813205 2020-12-15 18:14:12.813205 \N 1045.00 \N 0.00 0.00 4774 3708 1547 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-15 20:07:02.929072 2020-12-15 20:07:02.929072 \N 1499.00 \N 0.00 0.00 4775 3709 1520 1.0 811.00 0.00 0.00 811.00 1 2020-12-15 21:42:20.404536 2020-12-15 21:42:20.404536 \N 811.00 \N 0.00 0.00 4776 3710 1550 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-15 22:20:40.32846 2020-12-15 22:20:40.32846 \N 1499.00 \N 0.00 0.00 4777 3711 1547 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-15 22:48:14.075036 2020-12-15 22:48:14.075036 \N 1499.00 \N 0.00 0.00 4778 3712 172 1.0 1119.83 179.17 0.00 1299.00 1 2020-12-15 22:56:31.31299 2020-12-15 22:56:31.31299 \N 1299.00 \N 0.00 0.00 4779 3713 1543 1.0 1389.00 0.00 0.00 1389.00 1 2020-12-15 23:15:45.170827 2020-12-15 23:15:45.170827 \N 1389.00 \N 0.00 0.00 4780 3714 1514 1.0 1249.00 0.00 0.00 1249.00 1 2020-12-15 23:31:20.7188 2020-12-15 23:31:20.7188 \N 1249.00 \N 0.00 0.00 4781 3714 1513 1.0 1389.00 0.00 0.00 1389.00 1 2020-12-15 23:31:20.766121 2020-12-15 23:31:20.766121 \N 1389.00 \N 0.00 0.00 4782 3715 1530 1.0 599.00 0.00 0.00 599.00 1 2020-12-16 00:13:52.377603 2020-12-16 00:13:52.377603 \N 599.00 \N 0.00 0.00 4783 3716 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-12-16 01:15:00.955087 2020-12-16 01:15:00.955087 \N 1599.00 \N 0.00 0.00 4784 3717 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-16 01:16:22.359152 2020-12-16 01:16:22.359152 \N 1399.00 \N 0.00 0.00 4785 3717 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-12-16 01:16:22.383475 2020-12-16 01:16:22.383475 \N 1599.00 \N 0.00 0.00 4786 3718 1375 1.0 1699.00 0.00 0.00 1699.00 1 2020-12-16 01:58:17.460991 2020-12-16 01:58:17.460991 \N 1699.00 \N 0.00 0.00 4787 3719 1547 1.0 1499.00 0.00 0.00 1499.00 0 2020-12-16 01:59:16.732562 2020-12-16 01:59:21.353642 \N 1499.00 \N 0.00 0.00 4788 3720 1547 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-16 01:59:42.711332 2020-12-16 01:59:42.711332 \N 1499.00 \N 0.00 0.00 4789 3721 1535 1.0 899.00 0.00 0.00 899.00 1 2020-12-16 03:30:04.969929 2020-12-16 03:30:04.969929 \N 899.00 \N 0.00 0.00 4790 3721 885 1.0 899.00 0.00 0.00 899.00 1 2020-12-16 03:30:05.007772 2020-12-16 03:30:05.007772 \N 899.00 \N 0.00 0.00 4791 3722 1547 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-16 03:32:01.854473 2020-12-16 03:32:01.854473 \N 1499.00 \N 0.00 0.00 4792 3723 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-12-16 18:12:59.007211 2020-12-16 18:12:59.007211 \N 1799.00 \N 0.00 0.00 4793 3724 367 1.0 301.72 48.28 0.00 350.00 1 2020-12-16 18:17:01.823489 2020-12-16 18:17:01.823489 \N 350.00 \N 0.00 0.00 4794 3725 771 1.0 699.00 0.00 0.00 699.00 1 2020-12-16 18:28:15.771572 2020-12-16 18:28:15.771572 \N 699.00 \N 0.00 0.00 4795 3726 1495 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-16 18:51:44.669196 2020-12-16 18:51:44.669196 \N 1399.00 \N 0.00 0.00 4796 3726 901 1.0 1359.00 0.00 0.00 1359.00 1 2020-12-16 18:51:44.724995 2020-12-16 18:51:44.724995 \N 1359.00 \N 0.00 0.00 4797 3726 1415 1.0 269.00 0.00 0.00 269.00 1 2020-12-16 18:51:44.747284 2020-12-16 18:51:44.747284 \N 269.00 \N 0.00 0.00 4798 3727 1390 1.0 189.00 0.00 0.00 189.00 1 2020-12-16 19:32:49.960998 2020-12-16 19:32:49.960998 \N 189.00 \N 0.00 0.00 4799 3728 1392 1.0 569.00 0.00 0.00 569.00 1 2020-12-16 19:58:22.408957 2020-12-16 19:58:22.408957 \N 569.00 \N 0.00 0.00 4800 3728 1107 1.0 369.00 0.00 0.00 369.00 1 2020-12-16 19:58:22.436561 2020-12-16 19:58:22.436561 \N 369.00 \N 0.00 0.00 4801 3728 1292 1.0 210.00 0.00 0.00 210.00 1 2020-12-16 19:58:22.470863 2020-12-16 19:58:22.470863 \N 210.00 \N 0.00 0.00 4802 3729 1550 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-16 20:06:10.751274 2020-12-16 20:06:10.751274 \N 1499.00 \N 0.00 0.00 4803 3730 1477 1.0 999.00 0.00 0.00 999.00 1 2020-12-16 20:11:48.915362 2020-12-16 20:11:48.915362 \N 999.00 \N 0.00 0.00 4804 3731 1547 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-16 21:07:40.346265 2020-12-16 21:07:40.346265 \N 1499.00 \N 0.00 0.00 4805 3731 1546 1.0 2099.00 0.00 0.00 2099.00 1 2020-12-16 21:07:40.370125 2020-12-16 21:07:40.370125 \N 2099.00 \N 0.00 0.00 4806 3732 367 2.0 517.24 82.76 100.00 600.00 1 2020-12-16 21:30:41.961952 2020-12-16 21:30:41.961952 \N 350.00 \N 100.00 0.00 4807 3733 988 1.0 799.00 0.00 0.00 799.00 1 2020-12-16 22:25:02.494786 2020-12-16 22:25:02.494786 \N 799.00 \N 0.00 0.00 4808 3734 1374 1.0 1599.00 0.00 0.00 1599.00 1 2020-12-16 23:21:22.87133 2020-12-16 23:21:22.87133 \N 1599.00 \N 0.00 0.00 4809 3735 1547 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-16 23:26:12.339209 2020-12-16 23:26:12.339209 \N 1499.00 \N 0.00 0.00 4810 3736 476 1.0 85.34 13.65 0.00 98.99 1 2020-12-16 23:36:40.940624 2020-12-16 23:36:40.940624 \N 99.00 \N 0.00 0.00 4811 3737 1513 1.0 1389.00 0.00 0.00 1389.00 1 2020-12-16 23:44:48.515203 2020-12-16 23:44:48.515203 \N 1389.00 \N 0.00 0.00 4812 3738 1159 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-16 23:52:23.201173 2020-12-16 23:52:23.201173 \N 1499.00 \N 0.00 0.00 4813 3739 1550 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-16 23:58:18.871834 2020-12-16 23:58:18.871834 \N 1499.00 \N 0.00 0.00 4814 3740 1541 1.0 1251.00 0.00 0.00 1251.00 1 2020-12-17 00:03:19.414677 2020-12-17 00:03:19.414677 \N 1251.00 \N 0.00 0.00 4816 3741 1550 1.0 1499.00 0.00 0.00 1499.00 0 2020-12-17 00:38:12.982558 2020-12-17 00:38:35.723389 \N 1499.00 \N 0.00 0.00 4815 3741 1118 1.0 1599.00 0.00 0.00 1599.00 0 2020-12-17 00:38:12.947426 2020-12-17 00:38:35.744626 \N 1599.00 \N 0.00 0.00 4817 3742 1118 1.0 1599.00 0.00 0.00 1599.00 1 2020-12-17 00:39:05.401577 2020-12-17 00:39:05.401577 \N 1599.00 \N 0.00 0.00 4818 3742 1550 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-17 00:39:05.427143 2020-12-17 00:39:05.427143 \N 1499.00 \N 0.00 0.00 4819 3743 1550 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-17 00:42:42.635304 2020-12-17 00:42:42.635304 \N 1499.00 \N 0.00 0.00 4820 3744 1159 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-17 00:56:49.196432 2020-12-17 00:56:49.196432 \N 1499.00 \N 0.00 0.00 4821 3745 367 3.0 818.97 131.04 100.00 950.01 1 2020-12-17 01:30:42.00191 2020-12-17 01:30:42.00191 \N 350.00 \N 100.00 0.00 4822 3745 1242 1.0 159.00 0.00 0.00 159.00 1 2020-12-17 01:30:42.045153 2020-12-17 01:30:42.045153 \N 159.00 \N 0.00 0.00 4823 3746 1491 1.0 899.00 0.00 0.00 899.00 1 2020-12-17 01:33:18.728658 2020-12-17 01:33:18.728658 \N 899.00 \N 0.00 0.00 4825 3747 1517 1.0 1249.00 0.00 0.00 1249.00 0 2020-12-17 01:41:11.006999 2020-12-17 01:41:42.135333 \N 1249.00 \N 0.00 0.00 4824 3747 1521 1.0 759.00 0.00 0.00 759.00 0 2020-12-17 01:41:10.982304 2020-12-17 01:41:42.159673 \N 759.00 \N 0.00 0.00 4828 3749 1368 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-17 03:08:13.447192 2020-12-17 03:08:13.447192 \N 1499.00 \N 0.00 0.00 4829 3750 1130 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-17 18:05:35.298723 2020-12-17 18:05:35.298723 \N 1499.00 \N 0.00 0.00 4830 3751 1242 1.0 159.00 0.00 0.00 159.00 1 2020-12-17 18:06:14.743118 2020-12-17 18:06:14.743118 \N 159.00 \N 0.00 0.00 4831 3752 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-12-17 18:16:27.634372 2020-12-17 18:16:27.634372 \N 1799.00 \N 0.00 0.00 4832 3753 1507 1.0 749.00 0.00 0.00 749.00 1 2020-12-17 20:13:28.768559 2020-12-17 20:13:28.768559 \N 749.00 \N 0.00 0.00 4833 3754 1488 1.0 699.00 0.00 0.00 699.00 1 2020-12-17 20:35:53.956 2020-12-17 20:35:53.956 \N 699.00 \N 0.00 0.00 4834 3755 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-17 21:13:45.71734 2020-12-17 21:13:45.71734 \N 1399.00 \N 0.00 0.00 4835 3756 1380 1.0 379.00 0.00 0.00 379.00 1 2020-12-17 21:16:26.824587 2020-12-17 21:16:26.824587 \N 379.00 \N 0.00 0.00 4836 3757 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-12-18 00:15:21.765294 2020-12-18 00:15:21.765294 \N 1599.00 \N 0.00 0.00 4837 3757 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-18 00:15:21.791714 2020-12-18 00:15:21.791714 \N 1399.00 \N 0.00 0.00 4838 3758 369 2.0 84.48 13.52 0.00 98.00 1 2020-12-18 00:18:40.304783 2020-12-18 00:18:40.304783 \N 49.00 \N 0.00 0.00 4839 3759 1321 1.0 749.00 0.00 0.00 749.00 1 2020-12-18 01:12:34.939623 2020-12-18 01:12:34.939623 \N 749.00 \N 0.00 0.00 4840 3760 895 1.0 1629.00 0.00 0.00 1629.00 1 2020-12-18 06:26:39.681963 2020-12-18 06:26:39.681963 \N 1629.00 \N 0.00 0.00 4841 3761 1506 1.0 489.00 0.00 0.00 489.00 1 2020-12-18 06:31:04.823627 2020-12-18 06:31:04.823627 \N 489.00 \N 0.00 0.00 4842 3761 1520 1.0 811.00 0.00 0.00 811.00 1 2020-12-18 06:31:04.851685 2020-12-18 06:31:04.851685 \N 811.00 \N 0.00 0.00 4843 3761 1490 1.0 589.00 0.00 0.00 589.00 1 2020-12-18 06:31:04.879919 2020-12-18 06:31:04.879919 \N 589.00 \N 0.00 0.00 4844 3761 1521 1.0 759.00 0.00 0.00 759.00 1 2020-12-18 06:31:04.9027 2020-12-18 06:31:04.9027 \N 759.00 \N 0.00 0.00 4845 3762 1520 1.0 811.00 0.00 0.00 811.00 1 2020-12-18 06:31:27.270096 2020-12-18 06:31:27.270096 \N 811.00 \N 0.00 0.00 4846 3763 1521 1.0 759.00 0.00 0.00 759.00 1 2020-12-18 06:32:16.507829 2020-12-18 06:32:16.507829 \N 759.00 \N 0.00 0.00 4847 3764 1547 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-18 06:32:41.663889 2020-12-18 06:32:41.663889 \N 1499.00 \N 0.00 0.00 4848 3765 962 1.0 849.00 0.00 0.00 849.00 1 2020-12-18 06:33:03.419855 2020-12-18 06:33:03.419855 \N 849.00 \N 0.00 0.00 4849 3766 1210 1.0 129.00 0.00 0.00 129.00 1 2020-12-18 06:34:22.370825 2020-12-18 06:34:22.370825 \N 129.00 \N 0.00 0.00 4850 3766 1033 1.0 129.00 0.00 0.00 129.00 1 2020-12-18 06:34:22.396775 2020-12-18 06:34:22.396775 \N 129.00 \N 0.00 0.00 4851 3766 21 1.0 1120.69 179.31 1599.00 1300.00 1 2020-12-18 06:34:22.419688 2020-12-18 06:34:22.419688 \N 2899.00 \N 1599.00 0.00 4852 3767 962 1.0 849.00 0.00 0.00 849.00 1 2020-12-18 06:35:05.898407 2020-12-18 06:35:05.898407 \N 849.00 \N 0.00 0.00 4853 3768 1551 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-18 06:46:17.978176 2020-12-18 06:46:17.978176 \N 1499.00 \N 0.00 0.00 4854 3769 1537 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-18 06:51:52.052574 2020-12-18 06:51:52.052574 \N 1399.00 \N 0.00 0.00 4855 3770 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-12-18 17:12:55.821883 2020-12-18 17:12:55.821883 \N 1799.00 \N 0.00 0.00 4856 3771 895 1.0 1629.00 0.00 0.00 1629.00 1 2020-12-18 18:41:55.644516 2020-12-18 18:41:55.644516 \N 1629.00 \N 0.00 0.00 4857 3772 1483 1.0 1199.00 0.00 0.00 1199.00 1 2020-12-18 22:12:33.045438 2020-12-18 22:12:33.045438 \N 1199.00 \N 0.00 0.00 4858 3773 1482 1.0 899.00 0.00 0.00 899.00 1 2020-12-18 23:08:12.752142 2020-12-18 23:08:12.752142 \N 899.00 \N 0.00 0.00 4859 3774 1547 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-19 00:53:18.580837 2020-12-19 00:53:18.580837 \N 1499.00 \N 0.00 0.00 4860 3775 1539 1.0 1045.00 0.00 0.00 1045.00 1 2020-12-19 06:13:01.523346 2020-12-19 06:13:01.523346 \N 1045.00 \N 0.00 0.00 4861 3776 1549 1.0 2099.00 0.00 0.00 2099.00 1 2020-12-19 06:14:07.347251 2020-12-19 06:14:07.347251 \N 2099.00 \N 0.00 0.00 4862 3776 915 1.0 310.00 0.00 0.00 310.00 1 2020-12-19 06:14:07.37365 2020-12-19 06:14:07.37365 \N 310.00 \N 0.00 0.00 4863 3777 1375 1.0 1699.00 0.00 0.00 1699.00 1 2020-12-19 06:14:29.45129 2020-12-19 06:14:29.45129 \N 1699.00 \N 0.00 0.00 4864 3778 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-12-19 06:15:33.637033 2020-12-19 06:15:33.637033 \N 1599.00 \N 0.00 0.00 4865 3778 1294 1.0 999.00 0.00 0.00 999.00 1 2020-12-19 06:15:33.660431 2020-12-19 06:15:33.660431 \N 999.00 \N 0.00 0.00 4866 3779 1471 1.0 799.00 0.00 0.00 799.00 1 2020-12-19 06:16:59.840634 2020-12-19 06:16:59.840634 \N 799.00 \N 0.00 0.00 4867 3780 1515 1.0 599.00 0.00 0.00 599.00 1 2020-12-19 18:18:03.267306 2020-12-19 18:18:03.267306 \N 599.00 \N 0.00 0.00 4868 3781 1535 1.0 899.00 0.00 0.00 899.00 1 2020-12-19 21:38:42.859512 2020-12-19 21:38:42.859512 \N 899.00 \N 0.00 0.00 4869 3782 664 1.0 699.00 0.00 0.00 699.00 1 2020-12-19 23:56:33.955743 2020-12-19 23:56:33.955743 \N 699.00 \N 0.00 0.00 4870 3783 1085 1.0 199.00 0.00 0.00 199.00 0 2020-12-20 00:33:35.581526 2020-12-20 00:38:30.048955 \N 199.00 \N 0.00 0.00 4871 3784 1085 1.0 199.00 0.00 0.00 199.00 1 2020-12-20 00:38:45.100503 2020-12-20 00:38:45.100503 \N 199.00 \N 0.00 0.00 4872 3785 789 1.0 549.00 0.00 0.00 549.00 1 2020-12-20 00:43:43.225813 2020-12-20 00:43:43.225813 \N 549.00 \N 0.00 0.00 4873 3786 1029 1.0 69.00 0.00 0.00 69.00 1 2020-12-20 01:17:35.369661 2020-12-20 01:17:35.369661 \N 69.00 \N 0.00 0.00 4874 3787 1209 1.0 189.00 0.00 0.00 189.00 1 2020-12-20 01:45:07.613505 2020-12-20 01:45:07.613505 \N 189.00 \N 0.00 0.00 4875 3788 1504 1.0 999.00 0.00 0.00 999.00 1 2020-12-20 01:49:26.620394 2020-12-20 01:49:26.620394 \N 999.00 \N 0.00 0.00 4876 3789 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-20 06:08:36.15165 2020-12-20 06:08:36.15165 \N 1499.00 \N 0.00 0.00 4877 3790 1547 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-20 06:09:09.334715 2020-12-20 06:09:09.334715 \N 1499.00 \N 0.00 0.00 4878 3791 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-20 06:09:25.374854 2020-12-20 06:09:25.374854 \N 1499.00 \N 0.00 0.00 4879 3792 1297 1.0 1299.00 0.00 0.00 1299.00 1 2020-12-20 06:09:48.532021 2020-12-20 06:09:48.532021 \N 1299.00 \N 0.00 0.00 4826 3748 1521 1.0 759.00 0.00 0.00 759.00 0 2020-12-17 01:43:33.922591 2020-12-23 02:44:46.66567 \N 759.00 \N 0.00 0.00 4880 3793 1529 1.0 1199.00 0.00 0.00 1199.00 1 2020-12-20 06:10:29.337797 2020-12-20 06:10:29.337797 \N 1199.00 \N 0.00 0.00 4881 3794 1397 1.0 119.00 0.00 0.00 119.00 1 2020-12-20 06:10:49.783366 2020-12-20 06:10:49.783366 \N 119.00 \N 0.00 0.00 4882 3795 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-20 06:11:13.55323 2020-12-20 06:11:13.55323 \N 1499.00 \N 0.00 0.00 4885 3798 1549 1.0 2099.00 0.00 0.00 2099.00 1 2020-12-20 06:17:40.387579 2020-12-20 06:17:40.387579 \N 2099.00 \N 0.00 0.00 4884 3797 1366 1.0 2099.00 0.00 0.00 2099.00 0 2020-12-20 06:13:10.374141 2020-12-20 06:18:07.995532 \N 2099.00 \N 0.00 0.00 4886 3799 1467 1.0 2099.00 0.00 0.00 2099.00 1 2020-12-20 06:19:19.770887 2020-12-20 06:19:19.770887 \N 2099.00 \N 0.00 0.00 4887 3800 1495 1.0 1399.00 0.00 0.00 1399.00 0 2020-12-20 06:20:58.798649 2020-12-20 06:21:02.153115 \N 1399.00 \N 0.00 0.00 4888 3801 1495 1.0 1299.00 0.00 100.00 1299.00 1 2020-12-20 06:21:18.133601 2020-12-20 06:21:18.133601 \N 1399.00 \N 100.00 0.00 4883 3796 1126 1.0 1499.00 0.00 0.00 1499.00 0 2020-12-20 06:11:37.076489 2020-12-20 06:24:38.452168 \N 1499.00 \N 0.00 0.00 4889 3802 1488 1.0 699.00 0.00 0.00 699.00 1 2020-12-20 18:32:21.682563 2020-12-20 18:32:21.682563 \N 699.00 \N 0.00 0.00 4890 3803 1549 1.0 2099.00 0.00 0.00 2099.00 1 2020-12-20 21:30:52.582151 2020-12-20 21:30:52.582151 \N 2099.00 \N 0.00 0.00 4891 3804 1209 1.0 189.00 0.00 0.00 189.00 1 2020-12-20 22:34:19.071264 2020-12-20 22:34:19.071264 \N 189.00 \N 0.00 0.00 4892 3805 1029 1.0 69.00 0.00 0.00 69.00 1 2020-12-20 22:49:32.379132 2020-12-20 22:49:32.379132 \N 69.00 \N 0.00 0.00 4893 3806 1122 1.0 1599.00 0.00 0.00 1599.00 1 2020-12-21 17:53:55.473987 2020-12-21 17:53:55.473987 \N 1599.00 \N 0.00 0.00 4894 3807 41 1.0 1637.07 261.93 0.00 1899.00 1 2020-12-21 18:23:19.702866 2020-12-21 18:23:19.702866 \N 1899.00 \N 0.00 0.00 4895 3808 1496 1.0 1299.00 0.00 0.00 1299.00 1 2020-12-21 18:34:14.950738 2020-12-21 18:34:14.950738 \N 1299.00 \N 0.00 0.00 4896 3809 1464 1.0 1199.00 0.00 0.00 1199.00 1 2020-12-21 19:03:24.749222 2020-12-21 19:03:24.749222 \N 1199.00 \N 0.00 0.00 4897 3810 45 1.0 1550.86 248.14 0.00 1799.00 0 2020-12-21 20:53:18.77919 2020-12-21 20:53:22.58787 \N 1799.00 \N 0.00 0.00 4898 3811 45 1.0 1464.66 234.35 100.00 1699.01 1 2020-12-21 20:53:38.075456 2020-12-21 20:53:38.075456 \N 1799.00 \N 100.00 0.00 4899 3812 476 1.0 85.34 13.65 0.00 98.99 1 2020-12-21 21:20:13.46579 2020-12-21 21:20:13.46579 \N 99.00 \N 0.00 0.00 4900 3813 1300 1.0 1599.00 0.00 0.00 1599.00 1 2020-12-21 21:49:50.66794 2020-12-21 21:49:50.66794 \N 1599.00 \N 0.00 0.00 4901 3814 369 1.0 42.24 6.76 0.00 49.00 1 2020-12-21 22:14:20.945246 2020-12-21 22:14:20.945246 \N 49.00 \N 0.00 0.00 4902 3815 1520 1.0 811.00 0.00 0.00 811.00 1 2020-12-21 22:38:59.002322 2020-12-21 22:38:59.002322 \N 811.00 \N 0.00 0.00 4903 3816 946 1.0 749.00 0.00 0.00 749.00 1 2020-12-21 23:03:57.001348 2020-12-21 23:03:57.001348 \N 749.00 \N 0.00 0.00 4904 3816 1518 1.0 749.00 0.00 0.00 749.00 1 2020-12-21 23:03:57.026437 2020-12-21 23:03:57.026437 \N 749.00 \N 0.00 0.00 4905 3817 1375 1.0 1699.00 0.00 0.00 1699.00 1 2020-12-21 23:37:51.881867 2020-12-21 23:37:51.881867 \N 1699.00 \N 0.00 0.00 4906 3817 1511 1.0 825.00 0.00 0.00 825.00 1 2020-12-21 23:37:51.923627 2020-12-21 23:37:51.923627 \N 825.00 \N 0.00 0.00 4907 3817 1550 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-21 23:37:51.945662 2020-12-21 23:37:51.945662 \N 1499.00 \N 0.00 0.00 4908 3818 797 1.0 1199.00 0.00 0.00 1199.00 1 2020-12-21 23:39:19.213581 2020-12-21 23:39:19.213581 \N 1199.00 \N 0.00 0.00 4909 3819 1490 1.0 589.00 0.00 0.00 589.00 1 2020-12-22 00:28:30.899049 2020-12-22 00:28:30.899049 \N 589.00 \N 0.00 0.00 4910 3819 1322 1.0 499.00 0.00 0.00 499.00 1 2020-12-22 00:28:30.927494 2020-12-22 00:28:30.927494 \N 499.00 \N 0.00 0.00 4911 3820 1397 1.0 119.00 0.00 0.00 119.00 1 2020-12-22 00:30:29.286206 2020-12-22 00:30:29.286206 \N 119.00 \N 0.00 0.00 4914 3822 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-12-22 01:06:58.929294 2020-12-22 01:06:58.929294 \N 1799.00 \N 0.00 0.00 4915 3823 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-22 01:48:47.188348 2020-12-22 01:48:47.188348 \N 1399.00 \N 0.00 0.00 4913 3821 782 1.0 569.00 0.00 0.00 569.00 0 2020-12-22 01:04:05.159789 2020-12-22 01:55:18.424324 \N 569.00 \N 0.00 0.00 4912 3821 1491 1.0 899.00 0.00 0.00 899.00 0 2020-12-22 01:04:05.135642 2020-12-22 01:55:18.44957 \N 899.00 \N 0.00 0.00 4916 3824 1368 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-22 02:08:11.364336 2020-12-22 02:08:11.364336 \N 1499.00 \N 0.00 0.00 4919 3826 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-22 02:11:24.173416 2020-12-22 02:11:24.173416 \N 1499.00 \N 0.00 0.00 4918 3825 782 1.0 569.00 0.00 0.00 569.00 0 2020-12-22 02:10:25.223798 2020-12-22 02:13:13.026421 \N 569.00 \N 0.00 0.00 4917 3825 1491 1.0 899.00 0.00 0.00 899.00 0 2020-12-22 02:10:25.196256 2020-12-22 02:13:13.049628 \N 899.00 \N 0.00 0.00 4921 3827 1491 1.0 899.00 0.00 0.00 899.00 0 2020-12-22 02:16:47.038071 2020-12-22 02:22:04.772511 \N 899.00 \N 0.00 0.00 4920 3827 782 1.0 569.00 0.00 0.00 569.00 0 2020-12-22 02:16:47.013491 2020-12-22 02:22:04.808091 \N 569.00 \N 0.00 0.00 4922 3828 1550 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-22 18:00:59.135858 2020-12-22 18:00:59.135858 \N 1499.00 \N 0.00 0.00 4923 3828 1361 1.0 899.00 0.00 0.00 899.00 1 2020-12-22 18:00:59.181572 2020-12-22 18:00:59.181572 \N 899.00 \N 0.00 0.00 4924 3829 1522 1.0 699.00 0.00 0.00 699.00 1 2020-12-22 18:16:42.279475 2020-12-22 18:16:42.279475 \N 699.00 \N 0.00 0.00 4925 3829 947 1.0 899.00 0.00 0.00 899.00 1 2020-12-22 18:16:42.30665 2020-12-22 18:16:42.30665 \N 899.00 \N 0.00 0.00 4926 3830 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-22 19:11:27.718161 2020-12-22 19:11:27.718161 \N 1399.00 \N 0.00 0.00 4928 3832 1375 1.0 1699.00 0.00 0.00 1699.00 1 2020-12-22 19:29:22.854262 2020-12-22 19:29:22.854262 \N 1699.00 \N 0.00 0.00 4929 3833 1237 1.0 420.00 0.00 0.00 420.00 1 2020-12-22 20:21:23.194361 2020-12-22 20:21:23.194361 \N 420.00 \N 0.00 0.00 4930 3833 1203 1.0 159.00 0.00 0.00 159.00 1 2020-12-22 20:21:23.230486 2020-12-22 20:21:23.230486 \N 159.00 \N 0.00 0.00 4931 3833 1198 1.0 179.00 0.00 0.00 179.00 1 2020-12-22 20:21:23.25152 2020-12-22 20:21:23.25152 \N 179.00 \N 0.00 0.00 4932 3833 1242 1.0 159.00 0.00 0.00 159.00 1 2020-12-22 20:21:23.271739 2020-12-22 20:21:23.271739 \N 159.00 \N 0.00 0.00 4933 3833 1507 1.0 749.00 0.00 0.00 749.00 1 2020-12-22 20:21:23.292434 2020-12-22 20:21:23.292434 \N 749.00 \N 0.00 0.00 4934 3834 1159 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-22 20:22:49.826154 2020-12-22 20:22:49.826154 \N 1499.00 \N 0.00 0.00 4935 3835 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-12-22 20:22:52.940332 2020-12-22 20:22:52.940332 \N 1799.00 \N 0.00 0.00 4936 3835 1530 1.0 599.00 0.00 0.00 599.00 1 2020-12-22 20:22:52.966325 2020-12-22 20:22:52.966325 \N 599.00 \N 0.00 0.00 4937 3836 1178 1.0 1899.00 0.00 0.00 1899.00 1 2020-12-22 20:27:45.536804 2020-12-22 20:27:45.536804 \N 1899.00 \N 0.00 0.00 4938 3837 41 1.0 1637.07 261.93 0.00 1899.00 1 2020-12-22 20:36:37.178344 2020-12-22 20:36:37.178344 \N 1899.00 \N 0.00 0.00 4939 3838 1553 1.0 799.00 0.00 0.00 799.00 1 2020-12-22 20:54:11.773828 2020-12-22 20:54:11.773828 \N 799.00 \N 0.00 0.00 4940 3838 1161 1.0 899.00 0.00 0.00 899.00 1 2020-12-22 20:54:11.80304 2020-12-22 20:54:11.80304 \N 899.00 \N 0.00 0.00 4941 3838 339 1.0 688.79 110.21 0.00 799.00 1 2020-12-22 20:54:11.833168 2020-12-22 20:54:11.833168 \N 799.00 \N 0.00 0.00 4942 3838 1189 1.0 799.00 0.00 0.00 799.00 1 2020-12-22 20:54:11.866152 2020-12-22 20:54:11.866152 \N 799.00 \N 0.00 0.00 4943 3839 1209 1.0 189.00 0.00 0.00 189.00 1 2020-12-22 21:00:28.522189 2020-12-22 21:00:28.522189 \N 189.00 \N 0.00 0.00 4944 3839 1374 1.0 1599.00 0.00 0.00 1599.00 1 2020-12-22 21:00:28.547897 2020-12-22 21:00:28.547897 \N 1599.00 \N 0.00 0.00 4945 3839 1092 1.0 119.00 0.00 0.00 119.00 1 2020-12-22 21:00:28.571443 2020-12-22 21:00:28.571443 \N 119.00 \N 0.00 0.00 4946 3840 1424 1.0 129.00 0.00 0.00 129.00 1 2020-12-22 21:05:21.798353 2020-12-22 21:05:21.798353 \N 129.00 \N 0.00 0.00 4947 3840 1033 1.0 129.00 0.00 0.00 129.00 1 2020-12-22 21:05:21.823463 2020-12-22 21:05:21.823463 \N 129.00 \N 0.00 0.00 4948 3840 1384 1.0 389.00 0.00 0.00 389.00 1 2020-12-22 21:05:21.847433 2020-12-22 21:05:21.847433 \N 389.00 \N 0.00 0.00 4949 3841 1540 1.0 1196.00 0.00 0.00 1196.00 1 2020-12-22 21:19:40.444445 2020-12-22 21:19:40.444445 \N 1196.00 \N 0.00 0.00 4950 3842 1552 1.0 599.00 0.00 0.00 599.00 1 2020-12-22 21:23:28.953048 2020-12-22 21:23:28.953048 \N 599.00 \N 0.00 0.00 4951 3842 1526 1.0 649.00 0.00 0.00 649.00 1 2020-12-22 21:23:28.978021 2020-12-22 21:23:28.978021 \N 649.00 \N 0.00 0.00 4952 3842 1361 1.0 899.00 0.00 0.00 899.00 1 2020-12-22 21:23:29.001114 2020-12-22 21:23:29.001114 \N 899.00 \N 0.00 0.00 4953 3842 1174 1.0 599.00 0.00 0.00 599.00 1 2020-12-22 21:23:29.0235 2020-12-22 21:23:29.0235 \N 599.00 \N 0.00 0.00 4955 3843 897 1.0 1669.00 0.00 0.00 1669.00 0 2020-12-22 22:08:07.860667 2020-12-22 22:08:11.798083 \N 1669.00 \N 0.00 0.00 4954 3843 896 1.0 1669.00 0.00 0.00 1669.00 0 2020-12-22 22:08:07.827247 2020-12-22 22:08:11.824452 \N 1669.00 \N 0.00 0.00 4956 3844 897 1.0 1669.00 0.00 0.00 1669.00 1 2020-12-22 22:09:12.523705 2020-12-22 22:09:12.523705 \N 1669.00 \N 0.00 0.00 4957 3844 896 1.0 1336.00 0.00 333.00 1336.00 1 2020-12-22 22:09:12.553339 2020-12-22 22:09:12.553339 \N 1669.00 \N 333.00 0.00 4958 3845 258 1.0 1033.62 165.38 0.00 1199.00 1 2020-12-22 22:34:41.608053 2020-12-22 22:34:41.608053 \N 1199.00 \N 0.00 0.00 4959 3846 907 1.0 60.00 0.00 0.00 60.00 1 2020-12-22 23:07:09.613691 2020-12-22 23:07:09.613691 \N 60.00 \N 0.00 0.00 4960 3846 367 1.0 163.79 26.21 160.00 190.00 1 2020-12-22 23:07:09.639577 2020-12-22 23:07:09.639577 \N 350.00 \N 160.00 0.00 4961 3847 1496 1.0 1299.00 0.00 0.00 1299.00 1 2020-12-22 23:08:47.428616 2020-12-22 23:08:47.428616 \N 1299.00 \N 0.00 0.00 4962 3848 1522 1.0 699.00 0.00 0.00 699.00 1 2020-12-22 23:12:23.110255 2020-12-22 23:12:23.110255 \N 699.00 \N 0.00 0.00 4963 3849 898 1.0 1000.00 0.00 469.00 1000.00 1 2020-12-22 23:38:35.02883 2020-12-22 23:38:35.02883 \N 1469.00 \N 469.00 0.00 4964 3850 1522 1.0 699.00 0.00 0.00 699.00 1 2020-12-22 23:52:29.737732 2020-12-22 23:52:29.737732 \N 699.00 \N 0.00 0.00 4965 3850 1378 1.0 250.00 0.00 39.00 250.00 1 2020-12-22 23:52:29.791724 2020-12-22 23:52:29.791724 \N 289.00 \N 39.00 0.00 4966 3851 1077 1.0 99.00 0.00 0.00 99.00 1 2020-12-23 00:16:03.83945 2020-12-23 00:16:03.83945 \N 99.00 \N 0.00 0.00 4967 3852 697 1.0 799.00 0.00 0.00 799.00 1 2020-12-23 00:25:21.490076 2020-12-23 00:25:21.490076 \N 799.00 \N 0.00 0.00 4968 3852 1510 1.0 589.00 0.00 0.00 589.00 1 2020-12-23 00:25:21.522438 2020-12-23 00:25:21.522438 \N 589.00 \N 0.00 0.00 4969 3853 871 1.0 599.00 0.00 0.00 599.00 1 2020-12-23 00:41:44.423016 2020-12-23 00:41:44.423016 \N 599.00 \N 0.00 0.00 4970 3854 885 1.0 899.00 0.00 0.00 899.00 1 2020-12-23 00:55:12.516872 2020-12-23 00:55:12.516872 \N 899.00 \N 0.00 0.00 4971 3854 1519 1.0 579.00 0.00 0.00 579.00 1 2020-12-23 00:55:12.553549 2020-12-23 00:55:12.553549 \N 579.00 \N 0.00 0.00 4972 3855 1517 1.0 1249.00 0.00 0.00 1249.00 1 2020-12-23 01:25:02.784275 2020-12-23 01:25:02.784275 \N 1249.00 \N 0.00 0.00 4973 3856 273 1.0 1378.45 220.55 0.00 1599.00 1 2020-12-23 01:30:08.816409 2020-12-23 01:30:08.816409 \N 1599.00 \N 0.00 0.00 4974 3857 1526 1.0 649.00 0.00 0.00 649.00 1 2020-12-23 01:39:20.81859 2020-12-23 01:39:20.81859 \N 649.00 \N 0.00 0.00 4975 3858 1493 1.0 869.00 0.00 0.00 869.00 1 2020-12-23 01:40:47.558989 2020-12-23 01:40:47.558989 \N 869.00 \N 0.00 0.00 4976 3859 1517 1.0 1249.00 0.00 0.00 1249.00 1 2020-12-23 01:48:38.260641 2020-12-23 01:48:38.260641 \N 1249.00 \N 0.00 0.00 4977 3860 705 1.0 249.00 0.00 0.00 249.00 1 2020-12-23 01:51:41.381034 2020-12-23 01:51:41.381034 \N 249.00 \N 0.00 0.00 4978 3860 1209 1.0 189.00 0.00 0.00 189.00 1 2020-12-23 01:51:41.406588 2020-12-23 01:51:41.406588 \N 189.00 \N 0.00 0.00 4979 3860 1110 1.0 389.00 0.00 0.00 389.00 1 2020-12-23 01:51:41.429052 2020-12-23 01:51:41.429052 \N 389.00 \N 0.00 0.00 4980 3861 1375 1.0 1699.00 0.00 0.00 1699.00 1 2020-12-23 01:54:14.780365 2020-12-23 01:54:14.780365 \N 1699.00 \N 0.00 0.00 4981 3862 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-23 02:13:45.605967 2020-12-23 02:13:45.605967 \N 1399.00 \N 0.00 0.00 4982 3862 1549 1.0 1949.00 0.00 150.00 1949.00 1 2020-12-23 02:13:45.631814 2020-12-23 02:13:45.631814 \N 2099.00 \N 150.00 0.00 4983 3863 1536 1.0 699.00 0.00 0.00 699.00 1 2020-12-23 02:26:40.702396 2020-12-23 02:26:40.702396 \N 699.00 \N 0.00 0.00 4984 3864 981 1.0 769.00 0.00 0.00 769.00 1 2020-12-23 02:41:49.969068 2020-12-23 02:41:49.969068 \N 769.00 \N 0.00 0.00 4827 3748 1517 1.0 1249.00 0.00 0.00 1249.00 0 2020-12-17 01:43:33.94957 2020-12-23 02:44:46.620932 \N 1249.00 \N 0.00 0.00 4985 3865 1521 1.0 759.00 0.00 0.00 759.00 1 2020-12-23 02:52:15.306466 2020-12-23 02:52:15.306466 \N 759.00 \N 0.00 0.00 4986 3865 944 1.0 1989.00 0.00 0.00 1989.00 1 2020-12-23 02:52:15.335513 2020-12-23 02:52:15.335513 \N 1989.00 \N 0.00 0.00 4987 3866 1547 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-23 03:33:57.23001 2020-12-23 03:33:57.23001 \N 1499.00 \N 0.00 0.00 4988 3867 1518 1.0 749.00 0.00 0.00 749.00 1 2020-12-23 03:34:25.099113 2020-12-23 03:34:25.099113 \N 749.00 \N 0.00 0.00 4989 3867 1519 1.0 579.00 0.00 0.00 579.00 1 2020-12-23 03:34:25.128324 2020-12-23 03:34:25.128324 \N 579.00 \N 0.00 0.00 4990 3868 1517 1.0 1249.00 0.00 0.00 1249.00 1 2020-12-23 03:35:02.374596 2020-12-23 03:35:02.374596 \N 1249.00 \N 0.00 0.00 4991 3869 1298 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-23 03:35:26.448583 2020-12-23 03:35:26.448583 \N 1499.00 \N 0.00 0.00 4992 3870 1521 1.0 759.00 0.00 0.00 759.00 1 2020-12-23 03:35:54.00515 2020-12-23 03:35:54.00515 \N 759.00 \N 0.00 0.00 4993 3870 1228 1.0 169.00 0.00 0.00 169.00 1 2020-12-23 03:35:54.03884 2020-12-23 03:35:54.03884 \N 169.00 \N 0.00 0.00 4994 3871 1164 2.0 1798.00 0.00 0.00 1798.00 1 2020-12-23 03:36:22.706214 2020-12-23 03:36:22.706214 \N 899.00 \N 0.00 0.00 4995 3872 1550 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-23 03:37:14.038933 2020-12-23 03:37:14.038933 \N 1499.00 \N 0.00 0.00 4996 3873 1512 1.0 1199.00 0.00 0.00 1199.00 1 2020-12-23 03:39:10.956228 2020-12-23 03:39:10.956228 \N 1199.00 \N 0.00 0.00 4997 3873 782 1.0 569.00 0.00 0.00 569.00 1 2020-12-23 03:39:10.983835 2020-12-23 03:39:10.983835 \N 569.00 \N 0.00 0.00 4998 3873 989 1.0 799.00 0.00 0.00 799.00 1 2020-12-23 03:39:11.008881 2020-12-23 03:39:11.008881 \N 799.00 \N 0.00 0.00 4999 3873 1356 1.0 699.00 0.00 0.00 699.00 1 2020-12-23 03:39:11.03349 2020-12-23 03:39:11.03349 \N 699.00 \N 0.00 0.00 5000 3874 783 1.0 799.00 0.00 0.00 799.00 1 2020-12-23 03:39:48.960548 2020-12-23 03:39:48.960548 \N 799.00 \N 0.00 0.00 5001 3874 1500 1.0 689.00 0.00 0.00 689.00 1 2020-12-23 03:39:48.98762 2020-12-23 03:39:48.98762 \N 689.00 \N 0.00 0.00 5002 3875 1321 1.0 749.00 0.00 0.00 749.00 1 2020-12-23 17:37:29.065176 2020-12-23 17:37:29.065176 \N 749.00 \N 0.00 0.00 5003 3876 1288 1.0 229.00 0.00 0.00 229.00 1 2020-12-23 17:43:36.54051 2020-12-23 17:43:36.54051 \N 229.00 \N 0.00 0.00 5004 3876 1445 1.0 169.00 0.00 0.00 169.00 1 2020-12-23 17:43:36.565683 2020-12-23 17:43:36.565683 \N 169.00 \N 0.00 0.00 5005 3877 1525 1.0 699.00 0.00 0.00 699.00 1 2020-12-23 18:41:19.733406 2020-12-23 18:41:19.733406 \N 699.00 \N 0.00 0.00 5006 3877 1554 1.0 2099.00 0.00 0.00 2099.00 1 2020-12-23 18:41:19.75948 2020-12-23 18:41:19.75948 \N 2099.00 \N 0.00 0.00 5007 3877 800 1.0 469.00 0.00 0.00 469.00 1 2020-12-23 18:41:19.787813 2020-12-23 18:41:19.787813 \N 469.00 \N 0.00 0.00 5008 3878 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-12-23 18:43:38.534392 2020-12-23 18:43:38.534392 \N 1599.00 \N 0.00 0.00 5009 3879 1001 1.0 799.00 0.00 0.00 799.00 1 2020-12-23 18:51:51.197351 2020-12-23 18:51:51.197351 \N 799.00 \N 0.00 0.00 5010 3880 1483 1.0 1199.00 0.00 0.00 1199.00 1 2020-12-23 19:08:51.735447 2020-12-23 19:08:51.735447 \N 1199.00 \N 0.00 0.00 5011 3880 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-23 19:08:51.771493 2020-12-23 19:08:51.771493 \N 1399.00 \N 0.00 0.00 5012 3881 1377 1.0 189.00 0.00 0.00 189.00 1 2020-12-23 19:12:20.090484 2020-12-23 19:12:20.090484 \N 189.00 \N 0.00 0.00 5013 3882 1371 1.0 1000.00 0.00 799.00 1000.00 0 2020-12-23 19:42:43.026092 2020-12-23 19:44:30.080642 \N 1799.00 \N 799.00 0.00 5014 3883 1257 1.0 249.00 0.00 0.00 249.00 1 2020-12-23 19:54:19.997434 2020-12-23 19:54:19.997434 \N 249.00 \N 0.00 0.00 5015 3883 1371 1.0 1000.00 0.00 799.00 1000.00 1 2020-12-23 19:54:20.035441 2020-12-23 19:54:20.035441 \N 1799.00 \N 799.00 0.00 4406 3416 1495 1.0 1399.00 0.00 0.00 1399.00 0 2020-11-13 20:54:57.230065 2020-12-23 20:11:41.762439 \N 1399.00 \N 0.00 0.00 5016 3884 1126 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-23 20:22:32.851906 2020-12-23 20:22:32.851906 \N 1499.00 \N 0.00 0.00 5017 3885 1227 1.0 489.00 0.00 0.00 489.00 1 2020-12-23 20:41:08.611961 2020-12-23 20:41:08.611961 \N 489.00 \N 0.00 0.00 5018 3885 1215 1.0 149.00 0.00 0.00 149.00 1 2020-12-23 20:41:08.640821 2020-12-23 20:41:08.640821 \N 149.00 \N 0.00 0.00 5019 3886 24 1.0 1379.31 220.69 1000.00 1600.00 1 2020-12-23 21:44:31.117106 2020-12-23 21:44:31.117106 \N 2600.00 \N 1000.00 0.00 5020 3887 985 1.0 669.00 0.00 0.00 669.00 1 2020-12-23 22:28:20.358712 2020-12-23 22:28:20.358712 \N 669.00 \N 0.00 0.00 5021 3888 1491 1.0 899.00 0.00 0.00 899.00 1 2020-12-23 22:44:53.664039 2020-12-23 22:44:53.664039 \N 899.00 \N 0.00 0.00 5022 3888 928 1.0 149.00 0.00 0.00 149.00 1 2020-12-23 22:44:53.696777 2020-12-23 22:44:53.696777 \N 149.00 \N 0.00 0.00 5023 3888 1550 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-23 22:44:53.726806 2020-12-23 22:44:53.726806 \N 1499.00 \N 0.00 0.00 5024 3889 668 1.0 299.00 0.00 0.00 299.00 1 2020-12-23 23:03:22.547832 2020-12-23 23:03:22.547832 \N 299.00 \N 0.00 0.00 5025 3890 1549 1.0 2099.00 0.00 0.00 2099.00 1 2020-12-23 23:04:18.051194 2020-12-23 23:04:18.051194 \N 2099.00 \N 0.00 0.00 5026 3891 1550 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-23 23:08:46.467051 2020-12-23 23:08:46.467051 \N 1499.00 \N 0.00 0.00 5027 3891 1157 1.0 799.00 0.00 0.00 799.00 1 2020-12-23 23:08:46.509177 2020-12-23 23:08:46.509177 \N 799.00 \N 0.00 0.00 5028 3892 492 1.0 1000.00 0.00 699.00 1000.00 1 2020-12-23 23:18:59.142438 2020-12-23 23:18:59.142438 \N 1699.00 \N 699.00 0.00 5029 3893 1486 1.0 699.00 0.00 0.00 699.00 1 2020-12-24 00:02:43.516552 2020-12-24 00:02:43.516552 \N 699.00 \N 0.00 0.00 5030 3894 1469 1.0 1299.00 0.00 0.00 1299.00 1 2020-12-24 00:19:51.059999 2020-12-24 00:19:51.059999 \N 1299.00 \N 0.00 0.00 5031 3895 790 1.0 829.00 0.00 0.00 829.00 1 2020-12-24 01:14:54.827534 2020-12-24 01:14:54.827534 \N 829.00 \N 0.00 0.00 5032 3895 877 1.0 899.00 0.00 0.00 899.00 1 2020-12-24 01:14:54.852898 2020-12-24 01:14:54.852898 \N 899.00 \N 0.00 0.00 5033 3896 1263 1.0 159.00 0.00 0.00 159.00 1 2020-12-24 01:18:21.726266 2020-12-24 01:18:21.726266 \N 159.00 \N 0.00 0.00 5034 3897 1374 1.0 1599.00 0.00 0.00 1599.00 1 2020-12-24 01:42:53.226222 2020-12-24 01:42:53.226222 \N 1599.00 \N 0.00 0.00 5035 3898 861 1.0 745.00 0.00 84.00 745.00 1 2020-12-24 01:58:36.330338 2020-12-24 01:58:36.330338 \N 829.00 \N 84.00 0.00 5036 3899 993 1.0 529.00 0.00 0.00 529.00 1 2020-12-24 02:08:47.703173 2020-12-24 02:08:47.703173 \N 529.00 \N 0.00 0.00 5037 3900 1515 1.0 599.00 0.00 0.00 599.00 1 2020-12-24 02:34:54.864032 2020-12-24 02:34:54.864032 \N 599.00 \N 0.00 0.00 5038 3901 1523 1.0 499.00 0.00 0.00 499.00 1 2020-12-24 02:39:37.763452 2020-12-24 02:39:37.763452 \N 499.00 \N 0.00 0.00 5039 3902 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-12-24 18:00:49.388415 2020-12-24 18:00:49.388415 \N 1799.00 \N 0.00 0.00 5040 3903 783 1.0 799.00 0.00 0.00 799.00 1 2020-12-24 18:45:34.727447 2020-12-24 18:45:34.727447 \N 799.00 \N 0.00 0.00 5041 3904 1375 1.0 1699.00 0.00 0.00 1699.00 1 2020-12-24 18:53:57.390546 2020-12-24 18:53:57.390546 \N 1699.00 \N 0.00 0.00 5042 3905 1489 1.0 699.00 0.00 0.00 699.00 1 2020-12-24 19:17:11.867523 2020-12-24 19:17:11.867523 \N 699.00 \N 0.00 0.00 5043 3906 1263 1.0 159.00 0.00 0.00 159.00 1 2020-12-24 19:29:19.018191 2020-12-24 19:29:19.018191 \N 159.00 \N 0.00 0.00 5044 3906 369 1.0 42.24 6.76 0.00 49.00 1 2020-12-24 19:29:19.056259 2020-12-24 19:29:19.056259 \N 49.00 \N 0.00 0.00 5045 3907 1545 1.0 1899.00 0.00 0.00 1899.00 1 2020-12-24 19:57:14.622932 2020-12-24 19:57:14.622932 \N 1899.00 \N 0.00 0.00 5046 3908 1490 1.0 589.00 0.00 0.00 589.00 1 2020-12-24 20:06:59.179308 2020-12-24 20:06:59.179308 \N 589.00 \N 0.00 0.00 5047 3909 1201 1.0 139.00 0.00 0.00 139.00 1 2020-12-24 21:03:39.619135 2020-12-24 21:03:39.619135 \N 139.00 \N 0.00 0.00 5048 3909 1294 1.0 999.00 0.00 0.00 999.00 1 2020-12-24 21:03:39.643675 2020-12-24 21:03:39.643675 \N 999.00 \N 0.00 0.00 5049 3910 700 1.0 1345.00 0.00 0.00 1345.00 1 2020-12-24 21:19:26.9391 2020-12-24 21:19:26.9391 \N 1345.00 \N 0.00 0.00 5051 3912 1433 1.0 139.00 0.00 0.00 139.00 1 2020-12-24 21:43:34.046003 2020-12-24 21:43:34.046003 \N 139.00 \N 0.00 0.00 5050 3911 901 1.0 1359.00 0.00 0.00 1359.00 0 2020-12-24 21:36:42.005311 2020-12-24 21:45:12.463818 \N 1359.00 \N 0.00 0.00 5052 3913 901 1.0 1359.00 0.00 0.00 1359.00 1 2020-12-24 21:48:57.655346 2020-12-24 21:48:57.655346 \N 1359.00 \N 0.00 0.00 5053 3914 1208 1.0 119.00 0.00 0.00 119.00 1 2020-12-24 22:01:55.732349 2020-12-24 22:01:55.732349 \N 119.00 \N 0.00 0.00 5054 3915 1531 1.0 599.00 0.00 0.00 599.00 1 2020-12-24 22:22:26.437976 2020-12-24 22:22:26.437976 \N 599.00 \N 0.00 0.00 5055 3916 1236 1.0 369.00 0.00 0.00 369.00 1 2020-12-24 22:26:56.64706 2020-12-24 22:26:56.64706 \N 369.00 \N 0.00 0.00 5056 3917 1209 1.0 189.00 0.00 0.00 189.00 1 2020-12-24 22:28:13.917529 2020-12-24 22:28:13.917529 \N 189.00 \N 0.00 0.00 5059 3919 769 1.0 1000.00 0.00 235.00 1000.00 1 2020-12-24 22:50:47.84409 2020-12-24 22:50:47.84409 \N 1235.00 \N 235.00 0.00 5058 3918 1245 1.0 599.00 0.00 0.00 599.00 0 2020-12-24 22:49:01.80568 2020-12-24 22:51:37.985933 \N 599.00 \N 0.00 0.00 5057 3918 1294 1.0 999.00 0.00 0.00 999.00 0 2020-12-24 22:49:01.767487 2020-12-24 22:51:38.008579 \N 999.00 \N 0.00 0.00 5060 3920 1357 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-24 22:56:29.885537 2020-12-24 22:56:29.885537 \N 1399.00 \N 0.00 0.00 5061 3921 1294 1.0 999.00 0.00 0.00 999.00 1 2020-12-24 22:57:17.641582 2020-12-24 22:57:17.641582 \N 999.00 \N 0.00 0.00 5062 3921 1245 1.0 599.00 0.00 0.00 599.00 1 2020-12-24 22:57:17.668334 2020-12-24 22:57:17.668334 \N 599.00 \N 0.00 0.00 5063 3922 1145 1.0 1799.00 0.00 0.00 1799.00 1 2020-12-25 00:00:48.238917 2020-12-25 00:00:48.238917 \N 1799.00 \N 0.00 0.00 5064 3923 1373 1.0 1199.00 0.00 0.00 1199.00 1 2020-12-25 00:09:58.904584 2020-12-25 00:09:58.904584 \N 1199.00 \N 0.00 0.00 5065 3924 367 2.0 517.24 82.76 100.00 600.00 1 2020-12-25 00:13:13.253028 2020-12-25 00:13:13.253028 \N 350.00 \N 100.00 0.00 5066 3925 486 1.0 900.00 0.00 899.00 900.00 1 2020-12-25 01:05:47.505157 2020-12-25 01:05:47.505157 \N 1799.00 \N 899.00 0.00 5067 3925 47 1.0 603.45 96.55 699.00 700.00 1 2020-12-25 01:05:47.540876 2020-12-25 01:05:47.540876 \N 1399.00 \N 699.00 0.00 5068 3926 1464 1.0 1199.00 0.00 0.00 1199.00 1 2020-12-25 01:12:22.486095 2020-12-25 01:12:22.486095 \N 1199.00 \N 0.00 0.00 5069 3927 1550 1.0 1499.00 0.00 0.00 1499.00 1 2020-12-25 01:24:03.203809 2020-12-25 01:24:03.203809 \N 1499.00 \N 0.00 0.00 5070 3928 1294 1.0 999.00 0.00 0.00 999.00 1 2020-12-25 02:40:46.325701 2020-12-25 02:40:46.325701 \N 999.00 \N 0.00 0.00 5071 3929 1375 1.0 1699.00 0.00 0.00 1699.00 1 2020-12-26 18:28:52.160648 2020-12-26 18:28:52.160648 \N 1699.00 \N 0.00 0.00 5072 3930 367 4.0 1034.48 165.52 200.00 1200.00 1 2020-12-26 19:42:50.0854 2020-12-26 19:42:50.0854 \N 350.00 \N 200.00 0.00 5073 3931 351 1.0 861.21 137.79 1000.00 999.00 1 2020-12-26 19:50:45.034962 2020-12-26 19:50:45.034962 \N 1999.00 \N 1000.00 0.00 5074 3932 781 1.0 989.00 0.00 0.00 989.00 1 2020-12-26 22:22:47.923295 2020-12-26 22:22:47.923295 \N 989.00 \N 0.00 0.00 5075 3932 1098 1.0 289.00 0.00 0.00 289.00 1 2020-12-26 22:22:47.950212 2020-12-26 22:22:47.950212 \N 289.00 \N 0.00 0.00 5076 3932 1379 1.0 379.00 0.00 0.00 379.00 1 2020-12-26 22:22:47.974451 2020-12-26 22:22:47.974451 \N 379.00 \N 0.00 0.00 5077 3932 778 1.0 1599.00 0.00 0.00 1599.00 1 2020-12-26 22:22:47.997737 2020-12-26 22:22:47.997737 \N 1599.00 \N 0.00 0.00 5078 3932 1229 1.0 249.00 0.00 0.00 249.00 1 2020-12-26 22:22:48.020018 2020-12-26 22:22:48.020018 \N 249.00 \N 0.00 0.00 5079 3932 913 1.0 239.00 0.00 0.00 239.00 1 2020-12-26 22:22:48.042079 2020-12-26 22:22:48.042079 \N 239.00 \N 0.00 0.00 5080 3933 1425 1.0 169.00 0.00 0.00 169.00 1 2020-12-26 22:26:13.508819 2020-12-26 22:26:13.508819 \N 169.00 \N 0.00 0.00 5081 3934 1495 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-27 01:05:35.215873 2020-12-27 01:05:35.215873 \N 1399.00 \N 0.00 0.00 5082 3934 1268 1.0 319.00 0.00 0.00 319.00 1 2020-12-27 01:05:35.242299 2020-12-27 01:05:35.242299 \N 319.00 \N 0.00 0.00 5083 3935 1507 1.0 600.00 0.00 149.00 600.00 1 2020-12-28 20:32:00.880881 2020-12-28 20:32:00.880881 \N 749.00 \N 149.00 0.00 5084 3936 1498 1.0 320.00 0.00 79.00 320.00 1 2020-12-28 20:39:21.696604 2020-12-28 20:39:21.696604 \N 399.00 \N 79.00 0.00 5085 3937 645 1.0 456.00 0.00 113.00 456.00 1 2020-12-28 20:53:41.160778 2020-12-28 20:53:41.160778 \N 569.00 \N 113.00 0.00 5086 3938 1247 1.0 119.00 0.00 0.00 119.00 1 2020-12-28 21:15:21.403403 2020-12-28 21:15:21.403403 \N 119.00 \N 0.00 0.00 5087 3938 1208 1.0 119.00 0.00 0.00 119.00 1 2020-12-28 21:15:21.447821 2020-12-28 21:15:21.447821 \N 119.00 \N 0.00 0.00 5088 3939 1423 1.0 179.00 0.00 0.00 179.00 1 2020-12-28 21:18:34.922465 2020-12-28 21:18:34.922465 \N 179.00 \N 0.00 0.00 5089 3939 1456 1.0 289.00 0.00 0.00 289.00 1 2020-12-28 21:18:34.947846 2020-12-28 21:18:34.947846 \N 289.00 \N 0.00 0.00 5090 3940 1526 1.0 649.00 0.00 0.00 649.00 1 2020-12-28 21:31:51.002486 2020-12-28 21:31:51.002486 \N 649.00 \N 0.00 0.00 5091 3940 1499 1.0 489.00 0.00 0.00 489.00 1 2020-12-28 21:31:51.027667 2020-12-28 21:31:51.027667 \N 489.00 \N 0.00 0.00 5092 3940 1209 1.0 189.00 0.00 0.00 189.00 1 2020-12-28 21:31:51.050009 2020-12-28 21:31:51.050009 \N 189.00 \N 0.00 0.00 5093 3941 1543 1.0 1389.00 0.00 0.00 1389.00 1 2020-12-28 22:47:36.737223 2020-12-28 22:47:36.737223 \N 1389.00 \N 0.00 0.00 5094 3941 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-12-28 22:47:36.778199 2020-12-28 22:47:36.778199 \N 1599.00 \N 0.00 0.00 5095 3942 1045 1.0 299.00 0.00 0.00 299.00 1 2020-12-28 22:54:08.964164 2020-12-28 22:54:08.964164 \N 299.00 \N 0.00 0.00 5096 3943 1540 1.0 1077.00 0.00 119.00 1077.00 1 2020-12-28 23:11:46.324279 2020-12-28 23:11:46.324279 \N 1196.00 \N 119.00 0.00 5097 3944 672 1.0 699.00 0.00 0.00 699.00 1 2020-12-28 23:40:10.250352 2020-12-28 23:40:10.250352 \N 699.00 \N 0.00 0.00 5098 3945 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-28 23:44:36.86897 2020-12-28 23:44:36.86897 \N 1399.00 \N 0.00 0.00 5099 3946 733 1.0 589.00 0.00 0.00 589.00 1 2020-12-29 00:28:54.528597 2020-12-29 00:28:54.528597 \N 589.00 \N 0.00 0.00 5100 3947 710 1.0 1199.00 0.00 0.00 1199.00 1 2020-12-29 01:09:37.430663 2020-12-29 01:09:37.430663 \N 1199.00 \N 0.00 0.00 5102 3949 1371 1.0 1799.00 0.00 0.00 1799.00 0 2020-12-29 02:47:35.528616 2020-12-29 02:48:07.36434 \N 1799.00 \N 0.00 0.00 5103 3950 1371 1.0 1799.00 0.00 0.00 1799.00 1 2020-12-29 02:48:53.074272 2020-12-29 02:48:53.074272 \N 1799.00 \N 0.00 0.00 5104 3950 1375 1.0 1699.00 0.00 0.00 1699.00 1 2020-12-29 02:48:53.096599 2020-12-29 02:48:53.096599 \N 1699.00 \N 0.00 0.00 5105 3951 1269 1.0 249.00 0.00 0.00 249.00 1 2020-12-29 19:19:26.938927 2020-12-29 19:19:26.938927 \N 249.00 \N 0.00 0.00 5106 3952 1372 1.0 900.00 0.00 499.00 900.00 1 2020-12-29 19:34:16.309833 2020-12-29 19:34:16.309833 \N 1399.00 \N 499.00 0.00 5107 3953 1504 1.0 999.00 0.00 0.00 999.00 1 2020-12-29 21:54:27.92227 2020-12-29 21:54:27.92227 \N 999.00 \N 0.00 0.00 5108 3954 790 1.0 829.00 0.00 0.00 829.00 1 2020-12-29 23:06:16.867431 2020-12-29 23:06:16.867431 \N 829.00 \N 0.00 0.00 5109 3954 1507 1.0 571.00 0.00 178.00 571.00 1 2020-12-29 23:06:16.901103 2020-12-29 23:06:16.901103 \N 749.00 \N 178.00 0.00 5111 3956 1508 1.0 499.00 0.00 0.00 499.00 1 2020-12-29 23:47:38.805516 2020-12-29 23:47:38.805516 \N 499.00 \N 0.00 0.00 5110 3955 737 1.0 949.00 0.00 0.00 949.00 0 2020-12-29 23:47:23.484247 2020-12-29 23:47:40.110217 \N 949.00 \N 0.00 0.00 5113 3958 796 1.0 960.00 0.00 239.00 960.00 1 2020-12-30 00:17:19.928989 2020-12-30 00:17:19.928989 \N 1199.00 \N 239.00 0.00 5114 3959 737 1.0 855.00 0.00 94.00 855.00 1 2020-12-30 01:48:42.381009 2020-12-30 01:48:42.381009 \N 949.00 \N 94.00 0.00 5115 3959 1062 1.0 550.00 0.00 0.00 550.00 1 2020-12-30 01:48:42.422542 2020-12-30 01:48:42.422542 \N 550.00 \N 0.00 0.00 5116 3960 367 1.0 301.72 48.28 0.00 350.00 1 2020-12-30 17:48:02.389489 2020-12-30 17:48:02.389489 \N 350.00 \N 0.00 0.00 5117 3960 22 1.0 1293.10 206.90 1299.00 1500.00 1 2020-12-30 17:48:02.437493 2020-12-30 17:48:02.437493 \N 2799.00 \N 1299.00 0.00 5118 3961 1294 1.0 999.00 0.00 0.00 999.00 1 2020-12-30 17:51:12.219879 2020-12-30 17:51:12.219879 \N 999.00 \N 0.00 0.00 5119 3962 1519 1.0 579.00 0.00 0.00 579.00 1 2020-12-30 17:54:32.322741 2020-12-30 17:54:32.322741 \N 579.00 \N 0.00 0.00 5120 3963 1543 1.0 1389.00 0.00 0.00 1389.00 1 2020-12-30 18:16:35.978451 2020-12-30 18:16:35.978451 \N 1389.00 \N 0.00 0.00 5121 3964 985 1.0 669.00 0.00 0.00 669.00 1 2020-12-30 18:29:49.352717 2020-12-30 18:29:49.352717 \N 669.00 \N 0.00 0.00 5122 3964 1233 1.0 189.00 0.00 0.00 189.00 1 2020-12-30 18:29:49.380991 2020-12-30 18:29:49.380991 \N 189.00 \N 0.00 0.00 5123 3965 1146 1.0 1999.00 0.00 0.00 1999.00 1 2020-12-30 19:46:20.713475 2020-12-30 19:46:20.713475 \N 1999.00 \N 0.00 0.00 5101 3948 1535 1.0 899.00 0.00 0.00 899.00 0 2020-12-29 01:26:35.437706 2020-12-30 20:29:31.338818 \N 899.00 \N 0.00 0.00 5124 3966 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-30 20:41:32.623019 2020-12-30 20:41:32.623019 \N 1399.00 \N 0.00 0.00 5125 3967 1492 1.0 799.00 0.00 0.00 799.00 1 2020-12-30 20:56:49.778568 2020-12-30 20:56:49.778568 \N 799.00 \N 0.00 0.00 5126 3968 946 1.0 749.00 0.00 0.00 749.00 0 2020-12-30 21:59:12.581732 2020-12-30 21:59:15.944866 \N 749.00 \N 0.00 0.00 5127 3969 946 1.0 600.00 0.00 149.00 600.00 1 2020-12-30 21:59:28.598741 2020-12-30 21:59:28.598741 \N 749.00 \N 149.00 0.00 5128 3970 1511 1.0 825.00 0.00 0.00 825.00 1 2020-12-30 22:06:37.54168 2020-12-30 22:06:37.54168 \N 825.00 \N 0.00 0.00 5129 3971 1493 1.0 783.00 0.00 86.00 783.00 1 2020-12-30 22:18:18.109775 2020-12-30 22:18:18.109775 \N 869.00 \N 86.00 0.00 5130 3972 946 1.0 675.00 0.00 74.00 675.00 0 2020-12-30 22:27:22.307602 2020-12-30 22:30:06.814165 \N 749.00 \N 74.00 0.00 5131 3973 946 1.0 675.00 0.00 74.00 675.00 1 2020-12-30 22:33:38.798118 2020-12-30 22:33:38.798118 \N 749.00 \N 74.00 0.00 5132 3973 1107 1.0 369.00 0.00 0.00 369.00 1 2020-12-30 22:33:38.844486 2020-12-30 22:33:38.844486 \N 369.00 \N 0.00 0.00 5133 3973 1227 1.0 359.00 0.00 130.00 359.00 1 2020-12-30 22:33:38.867476 2020-12-30 22:33:38.867476 \N 489.00 \N 130.00 0.00 5134 3974 1209 1.0 189.00 0.00 0.00 189.00 1 2020-12-30 23:16:45.054408 2020-12-30 23:16:45.054408 \N 189.00 \N 0.00 0.00 5135 3975 1314 1.0 499.00 0.00 0.00 499.00 0 2020-12-30 23:24:43.413763 2020-12-30 23:25:13.060756 \N 499.00 \N 0.00 0.00 5136 3976 1314 1.0 499.00 0.00 0.00 499.00 1 2020-12-30 23:26:50.768793 2020-12-30 23:26:50.768793 \N 499.00 \N 0.00 0.00 5137 3976 1421 1.0 199.00 0.00 0.00 199.00 1 2020-12-30 23:26:50.794626 2020-12-30 23:26:50.794626 \N 199.00 \N 0.00 0.00 5138 3977 1396 1.0 359.00 0.00 0.00 359.00 1 2020-12-30 23:30:48.858991 2020-12-30 23:30:48.858991 \N 359.00 \N 0.00 0.00 5139 3978 1515 1.0 599.00 0.00 0.00 599.00 1 2020-12-30 23:35:27.068371 2020-12-30 23:35:27.068371 \N 599.00 \N 0.00 0.00 5140 3979 877 1.0 899.00 0.00 0.00 899.00 1 2020-12-30 23:38:48.058482 2020-12-30 23:38:48.058482 \N 899.00 \N 0.00 0.00 5141 3979 1490 1.0 589.00 0.00 0.00 589.00 1 2020-12-30 23:38:48.085289 2020-12-30 23:38:48.085289 \N 589.00 \N 0.00 0.00 5142 3980 1525 1.0 500.00 0.00 199.00 500.00 1 2020-12-30 23:54:18.542758 2020-12-30 23:54:18.542758 \N 699.00 \N 199.00 0.00 5143 3980 163 1.0 517.24 82.76 380.00 600.00 1 2020-12-30 23:54:18.571043 2020-12-30 23:54:18.571043 \N 980.00 \N 380.00 0.00 5144 3981 902 1.0 1769.00 0.00 0.00 1769.00 0 2020-12-30 23:58:40.23675 2020-12-30 23:58:47.506703 \N 1769.00 \N 0.00 0.00 5145 3982 902 1.0 1239.00 0.00 530.00 1239.00 0 2020-12-30 23:59:26.875507 2020-12-30 23:59:36.73634 \N 1769.00 \N 530.00 0.00 5146 3983 902 1.0 1239.00 0.00 530.00 1239.00 0 2020-12-31 00:00:04.265537 2020-12-31 00:00:10.651852 \N 1769.00 \N 530.00 0.00 5147 3984 902 1.0 1239.00 0.00 530.00 1239.00 0 2020-12-31 00:00:30.641375 2020-12-31 00:00:54.927126 \N 1769.00 \N 530.00 0.00 5148 3985 189 1.0 602.59 96.41 0.00 699.00 1 2020-12-31 00:02:11.991058 2020-12-31 00:02:11.991058 \N 699.00 \N 0.00 0.00 5149 3986 902 1.0 1239.00 0.00 530.00 1239.00 1 2020-12-31 00:02:15.259418 2020-12-31 00:02:15.259418 \N 1769.00 \N 530.00 0.00 5150 3987 369 2.0 84.48 13.52 0.00 98.00 1 2020-12-31 00:08:49.273295 2020-12-31 00:08:49.273295 \N 49.00 \N 0.00 0.00 5151 3988 866 1.0 1349.00 0.00 0.00 1349.00 1 2020-12-31 00:11:23.36089 2020-12-31 00:11:23.36089 \N 1349.00 \N 0.00 0.00 5152 3989 189 1.0 602.59 96.41 0.00 699.00 1 2020-12-31 00:19:52.117954 2020-12-31 00:19:52.117954 \N 699.00 \N 0.00 0.00 5153 3990 1527 1.0 469.00 0.00 0.00 469.00 1 2020-12-31 00:31:45.426041 2020-12-31 00:31:45.426041 \N 469.00 \N 0.00 0.00 5154 3991 1332 1.0 400.00 0.00 99.00 400.00 1 2020-12-31 01:00:01.839378 2020-12-31 01:00:01.839378 \N 499.00 \N 99.00 0.00 5155 3992 1498 1.0 399.00 0.00 0.00 399.00 1 2020-12-31 01:02:25.388106 2020-12-31 01:02:25.388106 \N 399.00 \N 0.00 0.00 5156 3993 1511 1.0 825.00 0.00 0.00 825.00 1 2020-12-31 01:16:16.86883 2020-12-31 01:16:16.86883 \N 825.00 \N 0.00 0.00 5157 3994 1221 1.0 179.00 0.00 0.00 179.00 1 2020-12-31 01:51:34.535111 2020-12-31 01:51:34.535111 \N 179.00 \N 0.00 0.00 5158 3995 1314 1.0 499.00 0.00 0.00 499.00 1 2020-12-31 01:54:37.095263 2020-12-31 01:54:37.095263 \N 499.00 \N 0.00 0.00 4927 3831 1357 1.0 1399.00 0.00 0.00 1399.00 0 2020-12-22 19:20:51.415982 2020-12-31 02:01:25.749168 \N 1399.00 \N 0.00 0.00 5159 3996 1300 1.0 1599.00 0.00 0.00 1599.00 1 2020-12-31 02:01:44.014837 2020-12-31 02:01:44.014837 \N 1599.00 \N 0.00 0.00 5160 3997 1511 1.0 825.00 0.00 0.00 825.00 1 2020-12-31 02:09:19.741934 2020-12-31 02:09:19.741934 \N 825.00 \N 0.00 0.00 5161 3998 1549 1.0 2099.00 0.00 0.00 2099.00 1 2020-12-31 02:44:07.195033 2020-12-31 02:44:07.195033 \N 2099.00 \N 0.00 0.00 5162 3999 1357 1.0 1260.00 0.00 139.00 1260.00 1 2020-12-31 03:15:28.754294 2020-12-31 03:15:28.754294 \N 1399.00 \N 139.00 0.00 5163 4000 1402 1.0 2070.00 0.00 229.00 2070.00 1 2020-12-31 03:24:29.62573 2020-12-31 03:24:29.62573 \N 2299.00 \N 229.00 0.00 5164 4000 757 1.0 600.00 0.00 199.00 600.00 1 2020-12-31 03:24:29.681016 2020-12-31 03:24:29.681016 \N 799.00 \N 199.00 0.00 5165 4001 1353 1.0 699.00 0.00 0.00 699.00 1 2020-12-31 19:10:18.595392 2020-12-31 19:10:18.595392 \N 699.00 \N 0.00 0.00 5166 4002 1545 1.0 1899.00 0.00 0.00 1899.00 1 2020-12-31 19:13:50.748728 2020-12-31 19:13:50.748728 \N 1899.00 \N 0.00 0.00 5167 4003 1504 1.0 999.00 0.00 0.00 999.00 1 2020-12-31 20:10:58.10216 2020-12-31 20:10:58.10216 \N 999.00 \N 0.00 0.00 5168 4004 1528 1.0 698.00 0.00 0.00 698.00 1 2020-12-31 20:20:44.30925 2020-12-31 20:20:44.30925 \N 698.00 \N 0.00 0.00 5169 4005 1441 1.0 139.00 0.00 0.00 139.00 1 2020-12-31 20:38:54.775237 2020-12-31 20:38:54.775237 \N 139.00 \N 0.00 0.00 5170 4005 766 1.0 1299.00 0.00 0.00 1299.00 1 2020-12-31 20:38:54.800666 2020-12-31 20:38:54.800666 \N 1299.00 \N 0.00 0.00 5171 4006 1513 1.0 1389.00 0.00 0.00 1389.00 1 2020-12-31 20:45:12.118395 2020-12-31 20:45:12.118395 \N 1389.00 \N 0.00 0.00 5172 4007 1475 1.0 1599.00 0.00 0.00 1599.00 1 2020-12-31 21:07:32.867053 2020-12-31 21:07:32.867053 \N 1599.00 \N 0.00 0.00 5173 4008 369 2.0 84.48 13.52 0.00 98.00 1 2020-12-31 21:13:13.93494 2020-12-31 21:13:13.93494 \N 49.00 \N 0.00 0.00 5112 3957 737 1.0 949.00 0.00 0.00 949.00 0 2020-12-29 23:47:59.899435 2020-12-31 21:32:03.419379 \N 949.00 \N 0.00 0.00 5174 4009 1498 1.0 399.00 0.00 0.00 399.00 1 2020-12-31 21:32:32.405237 2020-12-31 21:32:32.405237 \N 399.00 \N 0.00 0.00 5175 4010 800 1.0 350.00 0.00 119.00 350.00 1 2020-12-31 21:40:09.550535 2020-12-31 21:40:09.550535 \N 469.00 \N 119.00 0.00 5176 4011 1352 1.0 499.00 0.00 0.00 499.00 1 2020-12-31 21:46:47.649098 2020-12-31 21:46:47.649098 \N 499.00 \N 0.00 0.00 5177 4012 1372 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-31 22:00:41.021343 2020-12-31 22:00:41.021343 \N 1399.00 \N 0.00 0.00 5178 4013 887 1.0 1099.00 0.00 0.00 1099.00 0 2020-12-31 22:06:15.773085 2020-12-31 22:06:59.292989 \N 1099.00 \N 0.00 0.00 5179 4014 887 1.0 1099.00 0.00 0.00 1099.00 1 2020-12-31 22:07:15.084785 2020-12-31 22:07:15.084785 \N 1099.00 \N 0.00 0.00 5180 4014 1244 1.0 119.00 0.00 0.00 119.00 1 2020-12-31 22:07:15.110565 2020-12-31 22:07:15.110565 \N 119.00 \N 0.00 0.00 5181 4015 888 1.0 1199.00 0.00 0.00 1199.00 1 2020-12-31 22:07:52.161162 2020-12-31 22:07:52.161162 \N 1199.00 \N 0.00 0.00 5182 4016 1209 1.0 189.00 0.00 0.00 189.00 1 2020-12-31 22:33:18.180895 2020-12-31 22:33:18.180895 \N 189.00 \N 0.00 0.00 5183 4017 1515 1.0 599.00 0.00 0.00 599.00 1 2020-12-31 22:35:46.265763 2020-12-31 22:35:46.265763 \N 599.00 \N 0.00 0.00 5184 4018 1377 1.0 189.00 0.00 0.00 189.00 1 2020-12-31 22:37:07.768345 2020-12-31 22:37:07.768345 \N 189.00 \N 0.00 0.00 5185 4019 1536 1.0 699.00 0.00 0.00 699.00 1 2020-12-31 22:41:00.164492 2020-12-31 22:41:00.164492 \N 699.00 \N 0.00 0.00 5186 4020 776 1.0 1099.00 0.00 300.00 1099.00 1 2020-12-31 22:43:57.091492 2020-12-31 22:43:57.091492 \N 1399.00 \N 300.00 0.00 5187 4020 668 1.0 299.00 0.00 0.00 299.00 1 2020-12-31 22:43:57.117827 2020-12-31 22:43:57.117827 \N 299.00 \N 0.00 0.00 5188 4021 1535 1.0 899.00 0.00 0.00 899.00 1 2020-12-31 22:50:48.584618 2020-12-31 22:50:48.584618 \N 899.00 \N 0.00 0.00 5189 4021 895 1.0 1141.00 0.00 488.00 1141.00 1 2020-12-31 22:50:48.620423 2020-12-31 22:50:48.620423 \N 1629.00 \N 488.00 0.00 5190 4021 1357 1.0 1399.00 0.00 0.00 1399.00 1 2020-12-31 22:50:48.649684 2020-12-31 22:50:48.649684 \N 1399.00 \N 0.00 0.00 5191 4022 1371 1.0 1799.00 0.00 0.00 1799.00 1 2021-01-01 00:01:15.933514 2021-01-01 00:01:15.933514 \N 1799.00 \N 0.00 0.00 5192 4023 1405 1.0 189.00 0.00 0.00 189.00 1 2021-01-01 00:14:36.817051 2021-01-01 00:14:36.817051 \N 189.00 \N 0.00 0.00 5193 4024 1539 1.0 1045.00 0.00 0.00 1045.00 1 2021-01-01 01:05:53.683446 2021-01-01 01:05:53.683446 \N 1045.00 \N 0.00 0.00 5194 4025 1005 1.0 317.40 0.00 211.60 317.40 1 2021-01-02 23:25:35.439039 2021-01-02 23:25:35.439039 \N 529.00 \N 0.00 40.00 5195 4025 1519 1.0 347.40 0.00 231.60 347.40 1 2021-01-02 23:25:35.489273 2021-01-02 23:25:35.489273 \N 579.00 \N 0.00 40.00 5196 4026 962 1.0 509.40 0.00 339.60 509.40 1 2021-01-02 23:28:49.593876 2021-01-02 23:28:49.593876 \N 849.00 \N 0.00 40.00 5197 4027 1550 1.0 1499.00 0.00 0.00 1499.00 1 2021-01-02 23:54:09.347884 2021-01-02 23:54:09.347884 \N 1499.00 \N 0.00 0.00 5198 4028 1475 1.0 1599.00 0.00 0.00 1599.00 1 2021-01-03 19:48:55.509046 2021-01-03 19:48:55.509046 \N 1599.00 \N 0.00 0.00 5199 4029 1506 2.0 489.00 0.00 489.00 489.00 1 2021-01-04 21:18:40.348338 2021-01-04 21:18:40.348338 \N 489.00 \N 489.00 0.00 5200 4030 1371 1.0 1799.00 0.00 0.00 1799.00 1 2021-01-04 21:21:23.444361 2021-01-04 21:21:23.444361 \N 1799.00 \N 0.00 0.00 5201 4031 896 1.0 1000.00 0.00 669.00 1000.00 1 2021-01-05 01:42:09.356501 2021-01-05 01:42:09.356501 \N 1669.00 \N 669.00 0.00 5202 4031 1394 1.0 299.00 0.00 0.00 299.00 1 2021-01-05 01:42:09.392633 2021-01-05 01:42:09.392633 \N 299.00 \N 0.00 0.00 5203 4032 13 1.0 258.62 41.38 199.00 300.00 1 2021-01-05 20:19:01.496886 2021-01-05 20:19:01.496886 \N 499.00 \N 199.00 0.00 5204 4033 1547 1.0 1499.00 0.00 0.00 1499.00 1 2021-01-05 20:23:00.15431 2021-01-05 20:23:00.15431 \N 1499.00 \N 0.00 0.00 5205 4034 748 1.0 540.00 0.00 359.00 540.00 1 2021-01-05 22:51:27.934057 2021-01-05 22:51:27.934057 \N 899.00 \N 359.00 0.00 5206 4035 1527 1.0 0.00 0.00 469.00 0.00 1 2021-01-05 23:10:46.099155 2021-01-05 23:10:46.099155 \N 469.00 \N 469.00 0.00 5207 4036 1534 1.0 849.00 0.00 0.00 849.00 1 2021-01-06 00:07:39.986754 2021-01-06 00:07:39.986754 \N 849.00 \N 0.00 0.00 5208 4036 757 1.0 0.00 0.00 799.00 0.00 1 2021-01-06 00:07:40.034813 2021-01-06 00:07:40.034813 \N 799.00 \N 799.00 0.00 5209 4036 1426 1.0 289.00 0.00 0.00 289.00 1 2021-01-06 00:07:40.055619 2021-01-06 00:07:40.055619 \N 289.00 \N 0.00 0.00 5210 4037 1374 1.0 1599.00 0.00 0.00 1599.00 0 2021-01-06 23:49:55.581226 2021-01-07 00:00:02.687554 \N 1599.00 \N 0.00 0.00 5211 4038 1374 1.0 1599.00 0.00 0.00 1599.00 1 2021-01-07 00:00:39.067438 2021-01-07 00:00:39.067438 \N 1599.00 \N 0.00 0.00 5212 4039 369 1.0 42.24 6.76 0.00 49.00 1 2021-01-07 00:54:39.500577 2021-01-07 00:54:39.500577 \N 49.00 \N 0.00 0.00 5213 4040 1300 1.0 1599.00 0.00 0.00 1599.00 1 2021-01-07 01:00:50.350892 2021-01-07 01:00:50.350892 \N 1599.00 \N 0.00 0.00 5214 4041 683 1.0 569.00 0.00 0.00 569.00 1 2021-01-07 18:06:19.66779 2021-01-07 18:06:19.66779 \N 569.00 \N 0.00 0.00 5215 4042 574 1.0 720.00 0.00 479.00 720.00 1 2021-01-07 19:04:20.971187 2021-01-07 19:04:20.971187 \N 1199.00 \N 479.00 0.00 5216 4043 1484 1.0 840.00 0.00 559.00 840.00 1 2021-01-07 21:48:45.287682 2021-01-07 21:48:45.287682 \N 1399.00 \N 559.00 0.00 5217 4044 369 5.0 211.21 33.79 0.00 245.00 1 2021-01-07 22:11:14.440679 2021-01-07 22:11:14.440679 \N 49.00 \N 0.00 0.00 5218 4045 1495 1.0 840.00 0.00 559.00 840.00 1 2021-01-07 22:16:33.665745 2021-01-07 22:16:33.665745 \N 1399.00 \N 559.00 0.00 5219 4046 1517 1.0 750.00 0.00 499.00 750.00 1 2021-01-07 23:53:17.250275 2021-01-07 23:53:17.250275 \N 1249.00 \N 499.00 0.00 5220 4047 1304 1.0 50.00 0.00 549.00 50.00 1 2021-01-08 02:10:04.514998 2021-01-08 02:10:04.514998 \N 599.00 \N 549.00 0.00 5221 4047 1524 1.0 739.00 0.00 0.00 739.00 1 2021-01-08 02:10:04.551833 2021-01-08 02:10:04.551833 \N 739.00 \N 0.00 0.00 5222 4047 1230 1.0 149.00 0.00 0.00 149.00 1 2021-01-08 02:10:04.575295 2021-01-08 02:10:04.575295 \N 149.00 \N 0.00 0.00 5223 4048 1511 1.0 495.00 0.00 330.00 495.00 1 2021-01-08 18:19:28.648379 2021-01-08 18:19:28.648379 \N 825.00 \N 0.00 40.00 5224 4049 891 1.0 749.00 0.00 0.00 749.00 1 2021-01-08 19:06:02.287195 2021-01-08 19:06:02.287195 \N 749.00 \N 0.00 0.00 5225 4049 1507 1.0 0.00 0.00 749.00 0.00 1 2021-01-08 19:06:02.310621 2021-01-08 19:06:02.310621 \N 749.00 \N 749.00 0.00 5226 4050 871 1.0 599.00 0.00 0.00 599.00 1 2021-01-08 19:30:10.390785 2021-01-08 19:30:10.390785 \N 599.00 \N 0.00 0.00 5227 4050 993 1.0 0.00 0.00 529.00 0.00 1 2021-01-08 19:30:10.431544 2021-01-08 19:30:10.431544 \N 529.00 \N 529.00 0.00 5228 4051 1547 1.0 1499.00 0.00 0.00 1499.00 1 2021-01-08 22:14:37.493086 2021-01-08 22:14:37.493086 \N 1499.00 \N 0.00 0.00 5229 4052 898 1.0 1469.00 0.00 0.00 1469.00 1 2021-01-08 22:25:23.560704 2021-01-08 22:25:23.560704 \N 1469.00 \N 0.00 0.00 5230 4052 856 1.0 0.00 0.00 1099.00 0.00 1 2021-01-08 22:25:23.598552 2021-01-08 22:25:23.598552 \N 1099.00 \N 0.00 100.00 5231 4053 1522 1.0 419.40 0.00 279.60 419.40 1 2021-01-08 23:37:29.890203 2021-01-08 23:37:29.890203 \N 699.00 \N 0.00 40.00 5232 4054 1334 1.0 294.00 0.00 195.00 294.00 1 2021-01-09 01:15:28.613582 2021-01-09 01:15:28.613582 \N 489.00 \N 195.00 0.00 5233 4055 1479 1.0 899.00 0.00 0.00 899.00 1 2021-01-09 01:39:49.964969 2021-01-09 01:39:49.964969 \N 899.00 \N 0.00 0.00 5234 4056 955 1.0 999.00 0.00 0.00 999.00 1 2021-01-09 02:31:31.49145 2021-01-09 02:31:31.49145 \N 999.00 \N 0.00 0.00 5235 4056 956 1.0 0.00 0.00 899.00 0.00 1 2021-01-09 02:31:31.530191 2021-01-09 02:31:31.530191 \N 899.00 \N 899.00 0.00 5236 4056 893 1.0 699.00 0.00 0.00 699.00 1 2021-01-09 02:31:31.562872 2021-01-09 02:31:31.562872 \N 699.00 \N 0.00 0.00 5237 4056 1515 1.0 0.00 0.00 599.00 0.00 1 2021-01-09 02:31:31.603096 2021-01-09 02:31:31.603096 \N 599.00 \N 599.00 0.00 5238 4057 767 1.0 689.00 0.00 0.00 689.00 1 2021-01-09 21:37:50.488406 2021-01-09 21:37:50.488406 \N 689.00 \N 0.00 0.00 5239 4057 898 1.0 1469.00 0.00 0.00 1469.00 1 2021-01-09 21:37:50.53092 2021-01-09 21:37:50.53092 \N 1469.00 \N 0.00 0.00 5240 4057 1528 1.0 698.00 0.00 0.00 698.00 1 2021-01-09 21:37:50.558149 2021-01-09 21:37:50.558149 \N 698.00 \N 0.00 0.00 5241 4057 978 1.0 0.00 0.00 569.00 0.00 1 2021-01-09 21:37:50.588337 2021-01-09 21:37:50.588337 \N 569.00 \N 0.00 100.00 5242 4057 1543 1.0 0.00 0.00 1389.00 0.00 1 2021-01-09 21:37:50.623291 2021-01-09 21:37:50.623291 \N 1389.00 \N 0.00 100.00 5243 4057 1322 1.0 0.00 0.00 499.00 0.00 1 2021-01-09 21:37:50.655488 2021-01-09 21:37:50.655488 \N 499.00 \N 0.00 100.00 5244 4058 1010 1.0 360.00 0.00 239.00 360.00 1 2021-01-10 00:45:38.266284 2021-01-10 00:45:38.266284 \N 599.00 \N 239.00 0.00 5245 4059 1523 1.0 299.40 0.00 199.60 299.40 1 2021-01-10 19:53:57.055948 2021-01-10 19:53:57.055948 \N 499.00 \N 0.00 40.00 5246 4060 1126 1.0 1499.00 0.00 0.00 1499.00 1 2021-01-10 20:36:38.239162 2021-01-10 20:36:38.239162 \N 1499.00 \N 0.00 0.00 5247 4061 1535 1.0 539.40 0.00 359.60 539.40 1 2021-01-10 21:12:49.384609 2021-01-10 21:12:49.384609 \N 899.00 \N 0.00 40.00 5248 4062 1524 1.0 443.40 0.00 295.60 443.40 1 2021-01-10 21:39:11.459469 2021-01-10 21:39:11.459469 \N 739.00 \N 0.00 40.00 5249 4063 138 1.0 775.00 124.00 0.00 899.00 1 2021-01-11 20:25:52.383127 2021-01-11 20:25:52.383127 \N 899.00 \N 0.00 0.00 5250 4063 519 1.0 0.00 0.00 799.00 0.00 1 2021-01-11 20:25:52.4338 2021-01-11 20:25:52.4338 \N 799.00 \N 0.00 100.00 5251 4064 631 1.0 628.45 100.55 0.00 729.00 1 2021-01-11 20:32:22.707192 2021-01-11 20:32:22.707192 \N 729.00 \N 0.00 0.00 5252 4064 1324 1.0 0.00 0.00 589.00 0.00 1 2021-01-11 20:32:22.731495 2021-01-11 20:32:22.731495 \N 589.00 \N 0.00 100.00 5253 4065 646 1.0 1549.00 0.00 0.00 1549.00 1 2021-01-11 22:22:56.539475 2021-01-11 22:22:56.539475 \N 1549.00 \N 0.00 0.00 5254 4065 700 1.0 0.00 0.00 1345.00 0.00 1 2021-01-11 22:22:56.566555 2021-01-11 22:22:56.566555 \N 1345.00 \N 0.00 100.00 5255 4066 1294 1.0 999.00 0.00 0.00 999.00 1 2021-01-11 22:59:54.252286 2021-01-11 22:59:54.252286 \N 999.00 \N 0.00 0.00 5256 4066 1559 1.0 1099.00 0.00 0.00 1099.00 1 2021-01-11 22:59:54.282609 2021-01-11 22:59:54.282609 \N 1099.00 \N 0.00 0.00 5257 4066 907 2.0 120.00 0.00 0.00 120.00 1 2021-01-11 22:59:54.308405 2021-01-11 22:59:54.308405 \N 60.00 \N 0.00 0.00 5258 4067 1491 1.0 540.00 0.00 359.00 540.00 1 2021-01-12 01:00:18.967706 2021-01-12 01:00:18.967706 \N 899.00 \N 359.00 0.00 5259 4068 981 1.0 462.00 0.00 307.00 462.00 1 2021-01-12 01:59:02.452233 2021-01-12 01:59:02.452233 \N 769.00 \N 307.00 0.00 5260 4069 1358 1.0 1799.00 0.00 0.00 1799.00 1 2021-01-12 18:59:40.422191 2021-01-12 18:59:40.422191 \N 1799.00 \N 0.00 0.00 5261 4070 1524 1.0 443.40 0.00 295.60 443.40 1 2021-01-12 21:06:46.31291 2021-01-12 21:06:46.31291 \N 739.00 \N 0.00 40.00 5262 4071 802 1.0 869.00 0.00 0.00 869.00 1 2021-01-12 21:51:05.653524 2021-01-12 21:51:05.653524 \N 869.00 \N 0.00 0.00 5263 4071 661 1.0 0.00 0.00 599.00 0.00 1 2021-01-12 21:51:05.697742 2021-01-12 21:51:05.697742 \N 599.00 \N 0.00 100.00 5264 4072 1547 1.0 1499.00 0.00 0.00 1499.00 1 2021-01-13 19:26:26.585031 2021-01-13 19:26:26.585031 \N 1499.00 \N 0.00 0.00 5265 4073 1559 1.0 1099.00 0.00 0.00 1099.00 1 2021-01-14 20:00:02.129205 2021-01-14 20:00:02.129205 \N 1099.00 \N 0.00 0.00 5266 4074 1561 1.0 899.00 0.00 0.00 899.00 1 2021-01-14 22:53:13.672496 2021-01-14 22:53:13.672496 \N 899.00 \N 0.00 0.00 5267 4075 367 2.0 517.24 82.76 100.00 600.00 1 2021-01-14 23:48:00.816075 2021-01-14 23:48:00.816075 \N 350.00 \N 100.00 0.00 5268 4076 1397 1.0 119.00 0.00 0.00 119.00 1 2021-01-15 01:07:43.203371 2021-01-15 01:07:43.203371 \N 119.00 \N 0.00 0.00 5269 4076 1219 1.0 119.00 0.00 0.00 119.00 1 2021-01-15 01:07:43.264236 2021-01-15 01:07:43.264236 \N 119.00 \N 0.00 0.00 5270 4077 946 1.0 449.40 0.00 299.60 449.40 1 2021-01-15 17:52:56.973172 2021-01-15 17:52:56.973172 \N 749.00 \N 0.00 40.00 5271 4078 1294 1.0 999.00 0.00 0.00 999.00 1 2021-01-15 17:58:35.228603 2021-01-15 17:58:35.228603 \N 999.00 \N 0.00 0.00 5272 4079 1480 1.0 879.00 0.00 0.00 879.00 1 2021-01-15 23:20:53.118483 2021-01-15 23:20:53.118483 \N 879.00 \N 0.00 0.00 5273 4079 1511 2.0 825.00 0.00 825.00 825.00 1 2021-01-15 23:20:53.158848 2021-01-15 23:20:53.158848 \N 825.00 \N 825.00 0.00 5274 4079 1485 1.0 0.00 0.00 799.00 0.00 1 2021-01-15 23:20:53.182634 2021-01-15 23:20:53.182634 \N 799.00 \N 799.00 0.00 5275 4080 857 1.0 780.00 0.00 519.00 780.00 1 2021-01-15 23:40:09.536292 2021-01-15 23:40:09.536292 \N 1299.00 \N 519.00 0.00 5276 4081 1547 1.0 1499.00 0.00 0.00 1499.00 1 2021-01-16 01:40:08.218498 2021-01-16 01:40:08.218498 \N 1499.00 \N 0.00 0.00 5277 4081 1549 1.0 2099.00 0.00 0.00 2099.00 1 2021-01-16 01:40:08.246415 2021-01-16 01:40:08.246415 \N 2099.00 \N 0.00 0.00 5278 4082 898 1.0 880.00 0.00 589.00 880.00 1 2021-01-16 01:43:53.871002 2021-01-16 01:43:53.871002 \N 1469.00 \N 589.00 0.00 5279 4083 1539 1.0 735.00 0.00 310.00 735.00 1 2021-01-16 01:50:58.664134 2021-01-16 01:50:58.664134 \N 1045.00 \N 310.00 0.00 5280 4084 1330 1.0 699.00 0.00 0.00 699.00 1 2021-01-16 02:28:45.348543 2021-01-16 02:28:45.348543 \N 699.00 \N 0.00 0.00 5281 4084 787 1.0 0.00 0.00 649.00 0.00 1 2021-01-16 02:28:45.380567 2021-01-16 02:28:45.380567 \N 649.00 \N 649.00 0.00 5282 4084 1519 1.0 348.00 0.00 231.00 348.00 1 2021-01-16 02:28:45.404796 2021-01-16 02:28:45.404796 \N 579.00 \N 231.00 0.00 5283 4085 1330 1.0 419.40 0.00 279.60 419.40 1 2021-01-16 18:28:47.615371 2021-01-16 18:28:47.615371 \N 699.00 \N 0.00 40.00 5284 4085 1540 1.0 1196.00 0.00 0.00 1196.00 1 2021-01-16 18:28:47.654735 2021-01-16 18:28:47.654735 \N 1196.00 \N 0.00 0.00 5285 4086 1372 1.0 1399.00 0.00 0.00 1399.00 0 2021-01-16 20:03:28.326044 2021-01-16 20:03:42.004965 \N 1399.00 \N 0.00 0.00 5286 4087 1372 1.0 1399.00 0.00 0.00 1399.00 1 2021-01-16 20:04:51.17352 2021-01-16 20:04:51.17352 \N 1399.00 \N 0.00 0.00 5287 4088 1562 1.0 799.00 0.00 0.00 799.00 1 2021-01-16 21:09:03.138774 2021-01-16 21:09:03.138774 \N 799.00 \N 0.00 0.00 5288 4088 1560 1.0 1099.00 0.00 0.00 1099.00 1 2021-01-16 21:09:03.164424 2021-01-16 21:09:03.164424 \N 1099.00 \N 0.00 0.00 5289 4089 1567 1.0 1399.00 0.00 0.00 1399.00 1 2021-01-16 22:33:22.733387 2021-01-16 22:33:22.733387 \N 1399.00 \N 0.00 0.00 5290 4090 963 1.0 569.00 0.00 380.00 569.00 1 2021-01-16 23:44:25.208493 2021-01-16 23:44:25.208493 \N 949.00 \N 380.00 0.00 5291 4091 1559 1.0 1099.00 0.00 0.00 1099.00 1 2021-01-17 00:20:32.168912 2021-01-17 00:20:32.168912 \N 1099.00 \N 0.00 0.00 5292 4092 1332 1.0 499.00 0.00 0.00 499.00 0 2021-01-19 00:05:06.795236 2021-01-19 00:05:11.598309 \N 499.00 \N 0.00 0.00 5293 4093 1332 1.0 300.00 0.00 199.00 300.00 1 2021-01-19 00:05:37.896192 2021-01-19 00:05:37.896192 \N 499.00 \N 199.00 0.00 5294 4094 484 1.0 999.00 0.00 0.00 999.00 0 2021-01-19 00:08:13.781073 2021-01-19 00:08:22.01991 \N 999.00 \N 0.00 0.00 5295 4095 484 1.0 500.00 0.00 499.00 500.00 1 2021-01-19 00:08:37.110432 2021-01-19 00:08:37.110432 \N 999.00 \N 499.00 0.00 5296 4096 1550 1.0 1499.00 0.00 0.00 1499.00 1 2021-01-19 01:17:01.638825 2021-01-19 01:17:01.638825 \N 1499.00 \N 0.00 0.00 5297 4097 1371 1.0 1799.00 0.00 0.00 1799.00 1 2021-01-19 02:57:56.081816 2021-01-19 02:57:56.081816 \N 1799.00 \N 0.00 0.00 5298 4097 1240 1.0 189.00 0.00 0.00 189.00 1 2021-01-19 02:57:56.115804 2021-01-19 02:57:56.115804 \N 189.00 \N 0.00 0.00 5299 4098 1565 1.0 1399.00 0.00 0.00 1399.00 1 2021-01-19 19:46:18.71457 2021-01-19 19:46:18.71457 \N 1399.00 \N 0.00 0.00 5300 4098 22 1.0 1293.10 206.90 1299.00 1500.00 1 2021-01-19 19:46:18.755037 2021-01-19 19:46:18.755037 \N 2799.00 \N 1299.00 0.00 5301 4099 714 1.0 839.00 0.00 0.00 839.00 1 2021-01-19 20:05:55.595066 2021-01-19 20:05:55.595066 \N 839.00 \N 0.00 0.00 5302 4099 1330 1.0 0.00 0.00 699.00 0.00 1 2021-01-19 20:05:55.621318 2021-01-19 20:05:55.621318 \N 699.00 \N 699.00 0.00 5303 4100 1330 2.0 699.00 0.00 699.00 699.00 1 2021-01-19 20:10:30.311787 2021-01-19 20:10:30.311787 \N 699.00 \N 699.00 0.00 5304 4101 1524 1.0 444.00 0.00 295.00 444.00 1 2021-01-19 21:40:50.848622 2021-01-19 21:40:50.848622 \N 739.00 \N 295.00 0.00 5305 4101 208 1.0 129.31 20.69 649.00 150.00 1 2021-01-19 21:40:50.880923 2021-01-19 21:40:50.880923 \N 799.00 \N 649.00 0.00 5306 4102 792 1.0 462.00 0.00 307.00 462.00 1 2021-01-19 22:55:25.687901 2021-01-19 22:55:25.687901 \N 769.00 \N 307.00 0.00 5307 4102 302 1.0 301.72 48.28 309.00 350.00 1 2021-01-19 22:55:25.731567 2021-01-19 22:55:25.731567 \N 659.00 \N 309.00 0.00 5308 4103 1565 1.0 1199.00 0.00 0.00 1199.00 1 2021-01-19 23:02:36.088234 2021-01-19 23:02:36.088234 \N 1199.00 \N 0.00 0.00 5309 4104 269 1.0 344.83 55.17 499.00 400.00 1 2021-01-20 00:14:42.261941 2021-01-20 00:14:42.261941 \N 899.00 \N 499.00 0.00 5310 4105 1529 1.0 1199.00 0.00 0.00 1199.00 1 2021-01-20 23:03:34.042761 2021-01-20 23:03:34.042761 \N 1199.00 \N 0.00 0.00 5311 4106 190 1.0 129.31 20.69 539.00 150.00 1 2021-01-21 02:09:37.164315 2021-01-21 02:09:37.164315 \N 689.00 \N 539.00 0.00 5312 4108 640 1.0 1499.00 0.00 0.00 1499.00 1 2021-01-21 02:20:55.191624 2021-01-21 02:20:55.191624 \N 1499.00 \N 0.00 0.00 5313 4108 775 1.0 0.00 0.00 1399.00 0.00 1 2021-01-21 02:20:55.218127 2021-01-21 02:20:55.218127 \N 1399.00 \N 1399.00 0.00 5314 4109 545 1.0 1079.40 0.00 719.60 1079.40 1 2021-01-21 18:26:52.905687 2021-01-21 18:26:52.905687 \N 1799.00 \N 0.00 40.00 5315 4110 874 1.0 759.00 0.00 0.00 759.00 1 2021-01-21 21:03:17.238184 2021-01-21 21:03:17.238184 \N 759.00 \N 0.00 0.00 5316 4110 664 1.0 0.00 0.00 699.00 0.00 1 2021-01-21 21:03:17.284241 2021-01-21 21:03:17.284241 \N 699.00 \N 0.00 100.00 5317 4111 1568 1.0 1799.00 0.00 0.00 1799.00 1 2021-01-21 21:33:35.847797 2021-01-21 21:33:35.847797 \N 1799.00 \N 0.00 0.00 5318 4112 171 2.0 1119.83 179.17 1299.00 1299.00 1 2021-01-22 18:20:44.891851 2021-01-22 18:20:44.891851 \N 1299.00 \N 1299.00 0.00 5319 4113 7 1.0 129.31 20.69 349.00 150.00 1 2021-01-22 20:09:53.008723 2021-01-22 20:09:53.008723 \N 499.00 \N 349.00 0.00 5320 4114 369 1.0 42.24 6.76 0.00 49.00 1 2021-01-22 23:04:42.740106 2021-01-22 23:04:42.740106 \N 49.00 \N 0.00 0.00 5321 4115 1498 1.0 239.40 0.00 159.60 239.40 1 2021-01-22 23:38:26.664961 2021-01-22 23:38:26.664961 \N 399.00 \N 0.00 40.00 5322 4116 1570 1.0 1699.00 0.00 0.00 1699.00 1 2021-01-23 00:55:00.958104 2021-01-23 00:55:00.958104 \N 1699.00 \N 0.00 0.00 5323 4117 1537 1.0 840.00 0.00 559.00 840.00 1 2021-01-23 01:04:40.775102 2021-01-23 01:04:40.775102 \N 1399.00 \N 559.00 0.00 5324 4118 1159 1.0 1499.00 0.00 0.00 1499.00 1 2021-01-23 19:04:00.904574 2021-01-23 19:04:00.904574 \N 1499.00 \N 0.00 0.00 5325 4119 1566 1.0 1499.00 0.00 0.00 1499.00 1 2021-01-23 19:36:51.354309 2021-01-23 19:36:51.354309 \N 1499.00 \N 0.00 0.00 5326 4120 700 1.0 807.00 0.00 538.00 807.00 1 2021-01-23 20:18:23.999483 2021-01-23 20:18:23.999483 \N 1345.00 \N 538.00 0.00 5327 4121 1550 1.0 1499.00 0.00 0.00 1499.00 1 2021-01-23 21:51:38.346191 2021-01-23 21:51:38.346191 \N 1499.00 \N 0.00 0.00 5328 4122 1561 1.0 899.00 0.00 0.00 899.00 1 2021-01-23 21:52:41.802927 2021-01-23 21:52:41.802927 \N 899.00 \N 0.00 0.00 5329 4123 802 1.0 521.00 0.00 348.00 521.00 1 2021-01-23 22:19:05.448631 2021-01-23 22:19:05.448631 \N 869.00 \N 348.00 0.00 5330 4124 292 1.0 129.31 20.69 479.00 150.00 1 2021-01-23 22:34:31.675387 2021-01-23 22:34:31.675387 \N 629.00 \N 479.00 0.00 5331 4124 279 1.0 129.31 20.69 499.00 150.00 1 2021-01-23 22:34:31.700078 2021-01-23 22:34:31.700078 \N 649.00 \N 499.00 0.00 5332 4124 408 1.0 129.31 20.69 349.00 150.00 1 2021-01-23 22:34:31.72531 2021-01-23 22:34:31.72531 \N 499.00 \N 349.00 0.00 5333 4124 558 1.0 150.00 0.00 749.00 150.00 1 2021-01-23 22:34:31.748474 2021-01-23 22:34:31.748474 \N 899.00 \N 749.00 0.00 5334 4124 255 1.0 129.31 20.69 749.00 150.00 1 2021-01-23 22:34:31.770807 2021-01-23 22:34:31.770807 \N 899.00 \N 749.00 0.00 5335 4124 604 1.0 150.00 0.00 599.00 150.00 1 2021-01-23 22:34:31.793795 2021-01-23 22:34:31.793795 \N 749.00 \N 599.00 0.00 5336 4124 1320 1.0 599.00 0.00 0.00 599.00 1 2021-01-23 22:34:31.818782 2021-01-23 22:34:31.818782 \N 599.00 \N 0.00 0.00 5337 4124 1324 1.0 0.00 0.00 589.00 0.00 1 2021-01-23 22:34:31.842119 2021-01-23 22:34:31.842119 \N 589.00 \N 0.00 100.00 5338 4125 1294 1.0 999.00 0.00 0.00 999.00 1 2021-01-24 01:06:24.5359 2021-01-24 01:06:24.5359 \N 999.00 \N 0.00 0.00 5339 4126 1374 1.0 1599.00 0.00 0.00 1599.00 1 2021-01-24 20:19:41.734702 2021-01-24 20:19:41.734702 \N 1599.00 \N 0.00 0.00 5340 4127 1559 1.0 1099.00 0.00 0.00 1099.00 1 2021-01-25 20:05:51.484875 2021-01-25 20:05:51.484875 \N 1099.00 \N 0.00 0.00 5341 4128 1563 1.0 1799.00 0.00 0.00 1799.00 1 2021-01-25 21:54:36.746653 2021-01-25 21:54:36.746653 \N 1799.00 \N 0.00 0.00 5342 4128 1559 1.0 1099.00 0.00 0.00 1099.00 1 2021-01-25 21:54:36.805028 2021-01-25 21:54:36.805028 \N 1099.00 \N 0.00 0.00 5343 4129 1493 1.0 869.00 0.00 0.00 869.00 1 2021-01-25 21:59:07.081628 2021-01-25 21:59:07.081628 \N 869.00 \N 0.00 0.00 5344 4129 673 1.0 0.00 0.00 560.00 0.00 1 2021-01-25 21:59:07.107476 2021-01-25 21:59:07.107476 \N 560.00 \N 0.00 100.00 5345 4130 681 1.0 350.00 0.00 409.00 350.00 1 2021-01-25 23:28:46.914549 2021-01-25 23:28:46.914549 \N 759.00 \N 409.00 0.00 5346 4130 1247 1.0 119.00 0.00 0.00 119.00 1 2021-01-25 23:28:46.953289 2021-01-25 23:28:46.953289 \N 119.00 \N 0.00 0.00 5347 4130 1377 1.0 189.00 0.00 0.00 189.00 1 2021-01-25 23:28:46.980915 2021-01-25 23:28:46.980915 \N 189.00 \N 0.00 0.00 5348 4131 1374 1.0 1599.00 0.00 0.00 1599.00 1 2021-01-26 18:51:07.450379 2021-01-26 18:51:07.450379 \N 1599.00 \N 0.00 0.00 5349 4132 1159 1.0 1499.00 0.00 0.00 1499.00 1 2021-01-26 18:55:52.171434 2021-01-26 18:55:52.171434 \N 1499.00 \N 0.00 0.00 5350 4133 1567 1.0 1399.00 0.00 0.00 1399.00 1 2021-01-27 18:07:28.487976 2021-01-27 18:07:28.487976 \N 1399.00 \N 0.00 0.00 5351 4134 341 1.0 171.55 27.45 0.00 199.00 1 2021-01-27 18:09:00.436905 2021-01-27 18:09:00.436905 \N 199.00 \N 0.00 0.00 5352 4135 1493 1.0 609.00 0.00 260.00 609.00 1 2021-01-29 01:02:06.999696 2021-01-29 01:02:06.999696 \N 869.00 \N 260.00 0.00 5353 4136 1523 2.0 598.80 0.00 399.20 598.80 1 2021-01-29 01:43:42.047094 2021-01-29 01:43:42.047094 \N 499.00 \N 0.00 40.00 5354 4137 369 1.0 42.24 6.76 0.00 49.00 1 2021-01-29 01:46:31.178385 2021-01-29 01:46:31.178385 \N 49.00 \N 0.00 0.00 5355 4138 1437 1.0 119.00 0.00 0.00 119.00 1 2021-01-29 19:13:41.230533 2021-01-29 19:13:41.230533 \N 119.00 \N 0.00 0.00 5356 4138 1440 1.0 199.00 0.00 0.00 199.00 1 2021-01-29 19:13:41.256481 2021-01-29 19:13:41.256481 \N 199.00 \N 0.00 0.00 5357 4139 1527 1.0 280.00 0.00 189.00 280.00 1 2021-01-29 21:45:48.750443 2021-01-29 21:45:48.750443 \N 469.00 \N 189.00 0.00 5358 4140 1029 1.0 69.00 0.00 0.00 69.00 1 2021-01-29 22:22:14.560295 2021-01-29 22:22:14.560295 \N 69.00 \N 0.00 0.00 5359 4140 1239 1.0 119.00 0.00 0.00 119.00 1 2021-01-29 22:22:14.594349 2021-01-29 22:22:14.594349 \N 119.00 \N 0.00 0.00 5360 4140 1096 1.0 69.00 0.00 0.00 69.00 1 2021-01-29 22:22:14.624237 2021-01-29 22:22:14.624237 \N 69.00 \N 0.00 0.00 5361 4140 1498 2.0 399.00 0.00 399.00 399.00 1 2021-01-29 22:22:14.648051 2021-01-29 22:22:14.648051 \N 399.00 \N 399.00 0.00 5362 4141 1371 1.0 1799.00 0.00 0.00 1799.00 1 2021-01-29 23:04:13.098188 2021-01-29 23:04:13.098188 \N 1799.00 \N 0.00 0.00 5363 4142 1506 1.0 293.40 0.00 195.60 293.40 1 2021-01-29 23:47:21.046023 2021-01-29 23:47:21.046023 \N 489.00 \N 0.00 40.00 5364 4142 1321 1.0 449.40 0.00 299.60 449.40 1 2021-01-29 23:47:21.081762 2021-01-29 23:47:21.081762 \N 749.00 \N 0.00 40.00 5365 4142 1418 1.0 289.00 0.00 0.00 289.00 1 2021-01-29 23:47:21.1035 2021-01-29 23:47:21.1035 \N 289.00 \N 0.00 0.00 5366 4143 369 1.0 42.24 6.76 0.00 49.00 1 2021-01-29 23:51:37.847315 2021-01-29 23:51:37.847315 \N 49.00 \N 0.00 0.00 5367 4144 484 1.0 449.00 0.00 550.00 449.00 1 2021-01-30 00:49:34.980948 2021-01-30 00:49:34.980948 \N 999.00 \N 550.00 0.00 5368 4145 369 1.0 42.24 6.76 0.00 49.00 0 2021-01-30 22:06:41.706613 2021-01-30 22:06:47.598484 \N 49.00 \N 0.00 0.00 5369 4146 369 2.0 84.48 13.52 0.00 98.00 1 2021-01-30 22:07:02.643943 2021-01-30 22:07:02.643943 \N 49.00 \N 0.00 0.00 5370 4147 986 1.0 0.00 0.00 1299.00 0.00 1 2021-01-30 22:37:56.772943 2021-01-30 22:37:56.772943 \N 1299.00 \N 0.00 100.00 5371 4147 172 1.0 1119.83 179.17 0.00 1299.00 1 2021-01-30 22:37:56.796827 2021-01-30 22:37:56.796827 \N 1299.00 \N 0.00 0.00 5372 4148 1246 1.0 149.00 0.00 0.00 149.00 1 2021-01-31 00:52:32.896863 2021-01-31 00:52:32.896863 \N 149.00 \N 0.00 0.00 5373 4149 699 1.0 980.00 0.00 419.00 980.00 1 2021-01-31 01:01:33.870564 2021-01-31 01:01:33.870564 \N 1399.00 \N 419.00 0.00 5374 4150 1563 1.0 1799.00 0.00 0.00 1799.00 1 2021-02-02 17:15:25.428981 2021-02-02 17:15:25.428981 \N 1799.00 \N 0.00 0.00 5375 4151 1003 1.0 669.00 0.00 0.00 669.00 1 2021-02-02 17:32:12.768946 2021-02-02 17:32:12.768946 \N 669.00 \N 0.00 0.00 5376 4151 979 1.0 0.00 0.00 469.00 0.00 1 2021-02-02 17:32:12.796761 2021-02-02 17:32:12.796761 \N 469.00 \N 0.00 100.00 5377 4152 1491 1.0 539.40 0.00 359.60 539.40 1 2021-02-02 22:22:34.362794 2021-02-02 22:22:34.362794 \N 899.00 \N 0.00 40.00 5378 4153 1375 1.0 1699.00 0.00 0.00 1699.00 1 2021-02-03 01:18:21.162476 2021-02-03 01:18:21.162476 \N 1699.00 \N 0.00 0.00 5379 4154 417 1.0 491.38 78.62 379.00 570.00 1 2021-02-03 19:15:48.273264 2021-02-03 19:15:48.273264 \N 949.00 \N 379.00 0.00 5380 4155 1512 1.0 719.40 0.00 479.60 719.40 1 2021-02-03 20:30:49.335318 2021-02-03 20:30:49.335318 \N 1199.00 \N 0.00 40.00 5381 4156 737 1.0 949.00 0.00 0.00 949.00 1 2021-02-03 21:15:38.939637 2021-02-03 21:15:38.939637 \N 949.00 \N 0.00 0.00 5382 4156 697 1.0 0.00 0.00 799.00 0.00 1 2021-02-03 21:15:38.965223 2021-02-03 21:15:38.965223 \N 799.00 \N 0.00 100.00 5383 4157 1367 1.0 1499.00 0.00 0.00 1499.00 1 2021-02-03 21:43:25.306793 2021-02-03 21:43:25.306793 \N 1499.00 \N 0.00 0.00 5384 4158 408 1.0 129.31 20.69 349.00 150.00 1 2021-02-03 23:30:10.300868 2021-02-03 23:30:10.300868 \N 499.00 \N 349.00 0.00 5385 4159 871 1.0 360.00 0.00 239.00 360.00 1 2021-02-04 00:06:52.827148 2021-02-04 00:06:52.827148 \N 599.00 \N 239.00 0.00 5386 4160 773 1.0 150.00 0.00 329.00 150.00 1 2021-02-04 00:51:06.044153 2021-02-04 00:51:06.044153 \N 479.00 \N 329.00 0.00 5387 4161 479 1.0 150.00 0.00 525.00 150.00 1 2021-02-04 18:03:00.499594 2021-02-04 18:03:00.499594 \N 675.00 \N 525.00 0.00 5388 4162 1230 1.0 149.00 0.00 0.00 149.00 1 2021-02-04 20:53:48.423548 2021-02-04 20:53:48.423548 \N 149.00 \N 0.00 0.00 5389 4163 310 1.0 129.31 20.69 549.00 150.00 1 2021-02-04 20:58:36.877598 2021-02-04 20:58:36.877598 \N 699.00 \N 549.00 0.00 5390 4164 408 1.0 129.31 20.69 349.00 150.00 1 2021-02-04 23:35:47.85543 2021-02-04 23:35:47.85543 \N 499.00 \N 349.00 0.00 5391 4164 7 1.0 129.31 20.69 349.00 150.00 1 2021-02-04 23:35:47.883722 2021-02-04 23:35:47.883722 \N 499.00 \N 349.00 0.00 5392 4165 7 1.0 129.31 20.69 349.00 150.00 1 2021-02-04 23:42:55.077036 2021-02-04 23:42:55.077036 \N 499.00 \N 349.00 0.00 5393 4165 408 1.0 129.31 20.69 349.00 150.00 1 2021-02-04 23:42:55.10532 2021-02-04 23:42:55.10532 \N 499.00 \N 349.00 0.00 5394 4165 558 1.0 150.00 0.00 749.00 150.00 1 2021-02-04 23:42:55.12748 2021-02-04 23:42:55.12748 \N 899.00 \N 749.00 0.00 5395 4165 604 1.0 150.00 0.00 599.00 150.00 1 2021-02-04 23:42:55.152362 2021-02-04 23:42:55.152362 \N 749.00 \N 599.00 0.00 5396 4166 7 1.0 129.31 20.69 349.00 150.00 1 2021-02-04 23:43:58.409744 2021-02-04 23:43:58.409744 \N 499.00 \N 349.00 0.00 5397 4166 604 1.0 150.00 0.00 599.00 150.00 1 2021-02-04 23:43:58.434261 2021-02-04 23:43:58.434261 \N 749.00 \N 599.00 0.00 5398 4167 475 1.0 350.00 0.00 539.00 350.00 1 2021-02-04 23:46:50.682971 2021-02-04 23:46:50.682971 \N 889.00 \N 539.00 0.00 5399 4168 752 1.0 677.00 0.00 452.00 677.00 1 2021-02-04 23:53:18.358276 2021-02-04 23:53:18.358276 \N 1129.00 \N 452.00 0.00 5400 4169 802 1.0 521.00 0.00 348.00 521.00 1 2021-02-06 18:20:15.042078 2021-02-06 18:20:15.042078 \N 869.00 \N 348.00 0.00 5401 4170 1017 1.0 419.40 0.00 279.60 419.40 1 2021-02-06 20:48:21.595236 2021-02-06 20:48:21.595236 \N 699.00 \N 0.00 40.00 5402 4171 765 1.0 150.00 0.00 549.00 150.00 1 2021-02-07 00:27:57.545241 2021-02-07 00:27:57.545241 \N 699.00 \N 549.00 0.00 5403 4172 1095 1.0 99.00 0.00 0.00 99.00 1 2021-02-07 00:52:15.800714 2021-02-07 00:52:15.800714 \N 99.00 \N 0.00 0.00 5404 4172 1377 1.0 189.00 0.00 0.00 189.00 1 2021-02-07 00:52:15.844424 2021-02-07 00:52:15.844424 \N 189.00 \N 0.00 0.00 5405 4172 537 1.0 150.00 0.00 349.00 150.00 1 2021-02-07 00:52:15.911496 2021-02-07 00:52:15.911496 \N 499.00 \N 349.00 0.00 5406 4172 765 1.0 150.00 0.00 549.00 150.00 1 2021-02-07 00:52:15.935266 2021-02-07 00:52:15.935266 \N 699.00 \N 549.00 0.00 5407 4172 431 1.0 129.31 20.69 499.00 150.00 1 2021-02-07 00:52:15.957725 2021-02-07 00:52:15.957725 \N 649.00 \N 499.00 0.00 5408 4173 1004 1.0 529.00 0.00 0.00 529.00 1 2021-02-08 21:44:07.796409 2021-02-08 21:44:07.796409 \N 529.00 \N 0.00 0.00 5409 4174 331 1.0 129.31 20.69 669.00 150.00 1 2021-02-10 18:05:07.227191 2021-02-10 18:05:07.227191 \N 819.00 \N 669.00 0.00 5410 4175 1427 1.0 120.00 0.00 0.00 120.00 1 2021-02-11 00:21:17.501143 2021-02-11 00:21:17.501143 \N 120.00 \N 0.00 0.00 5411 4176 299 1.0 129.31 20.69 549.00 150.00 1 2021-02-11 23:05:50.238431 2021-02-11 23:05:50.238431 \N 699.00 \N 549.00 0.00 5412 4177 1343 1.0 699.00 0.00 0.00 699.00 1 2021-02-12 01:55:23.157673 2021-02-12 01:55:23.157673 \N 699.00 \N 0.00 0.00 5413 4177 874 1.0 570.00 0.00 189.00 570.00 1 2021-02-12 01:55:23.19835 2021-02-12 01:55:23.19835 \N 759.00 \N 189.00 0.00 5414 4178 415 1.0 431.03 68.96 499.00 499.99 1 2021-02-12 22:52:47.19235 2021-02-12 22:52:47.19235 \N 999.00 \N 499.00 0.00 5415 4179 1310 1.0 599.00 0.00 0.00 599.00 1 2021-02-13 01:31:39.021421 2021-02-13 01:31:39.021421 \N 599.00 \N 0.00 0.00 5416 4180 135 1.0 404.31 64.69 0.00 469.00 1 2021-02-13 01:37:06.657367 2021-02-13 01:37:06.657367 \N 469.00 \N 0.00 0.00 5417 4181 771 1.0 350.00 0.00 349.00 350.00 1 2021-02-13 01:38:56.651213 2021-02-13 01:38:56.651213 \N 699.00 \N 349.00 0.00 5418 4181 161 1.0 431.03 68.96 480.00 499.99 1 2021-02-13 01:38:56.681618 2021-02-13 01:38:56.681618 \N 980.00 \N 480.00 0.00 5419 4182 1527 1.0 469.00 0.00 0.00 469.00 1 2021-02-13 22:33:39.769213 2021-02-13 22:33:39.769213 \N 469.00 \N 0.00 0.00 5420 4182 291 1.0 129.31 20.69 499.00 150.00 1 2021-02-13 22:33:39.813227 2021-02-13 22:33:39.813227 \N 649.00 \N 499.00 0.00 5421 4183 666 1.0 869.00 0.00 0.00 869.00 1 2021-02-13 23:11:06.679005 2021-02-13 23:11:06.679005 \N 869.00 \N 0.00 0.00 5422 4184 1490 1.0 589.00 0.00 0.00 589.00 1 2021-02-14 00:26:12.68216 2021-02-14 00:26:12.68216 \N 589.00 \N 0.00 0.00 5423 4185 765 1.0 150.00 0.00 549.00 150.00 1 2021-02-14 01:07:17.980661 2021-02-14 01:07:17.980661 \N 699.00 \N 549.00 0.00 5424 4185 284 1.0 129.31 20.69 349.00 150.00 1 2021-02-14 01:07:18.009003 2021-02-14 01:07:18.009003 \N 499.00 \N 349.00 0.00 5425 4185 432 1.0 129.31 20.69 499.00 150.00 1 2021-02-14 01:07:18.034508 2021-02-14 01:07:18.034508 \N 649.00 \N 499.00 0.00 5426 4186 1355 1.0 699.00 0.00 0.00 699.00 1 2021-02-15 21:06:13.321333 2021-02-15 21:06:13.321333 \N 699.00 \N 0.00 0.00 5427 4187 668 2.0 598.00 0.00 0.00 598.00 1 2021-02-16 20:58:09.263827 2021-02-16 20:58:09.263827 \N 299.00 \N 0.00 0.00 5428 4188 1337 1.0 999.00 0.00 0.00 999.00 1 2021-02-18 22:24:55.738039 2021-02-18 22:24:55.738039 \N 999.00 \N 0.00 0.00 5429 4189 1175 1.0 449.00 0.00 0.00 449.00 1 2021-02-19 00:17:34.095607 2021-02-19 00:17:34.095607 \N 449.00 \N 0.00 0.00 5430 4190 431 1.0 129.31 20.69 499.00 150.00 1 2021-02-28 01:49:53.656561 2021-02-28 01:49:53.656561 \N 649.00 \N 499.00 0.00 5431 4190 213 1.0 129.31 20.69 549.00 150.00 1 2021-02-28 01:49:53.691508 2021-02-28 01:49:53.691508 \N 699.00 \N 549.00 0.00 5432 4191 537 1.0 150.00 0.00 349.00 150.00 1 2021-03-02 00:30:10.095064 2021-03-02 00:30:10.095064 \N 499.00 \N 349.00 0.00 5433 4192 536 1.0 305.00 0.00 304.00 305.00 1 2021-03-04 01:09:21.722903 2021-03-04 01:09:21.722903 \N 609.00 \N 304.00 0.00 5434 4193 5 1.0 301.72 48.28 339.00 350.00 1 2021-03-05 01:33:14.685373 2021-03-05 01:33:14.685373 \N 689.00 \N 339.00 0.00 5435 4194 456 1.0 499.00 0.00 0.00 499.00 1 2021-03-19 01:29:31.791858 2021-03-19 01:29:31.791858 \N 499.00 \N 0.00 0.00 \. -- -- Name: sales_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.sales_details_id_seq', 5435, true); -- -- Name: sales_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.sales_id_seq', 4194, true); -- -- Data for Name: sales_sellercommissions; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.sales_sellercommissions (id, sellerscommission_id, sale_id, created_at, updated_at) FROM stdin; 1 1 590 2019-05-18 22:22:52.524488 2019-05-18 22:22:52.524488 2 1 598 2019-05-18 22:22:52.52938 2019-05-18 22:22:52.52938 3 1 601 2019-05-18 22:22:52.533046 2019-05-18 22:22:52.533046 4 1 606 2019-05-18 22:22:52.537403 2019-05-18 22:22:52.537403 \. -- -- Name: sales_sellercommissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.sales_sellercommissions_id_seq', 4, true); -- -- Data for Name: schema_migrations; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.schema_migrations (version) FROM stdin; 20151110174318 20151110205154 20151112002358 20151112185941 20151114184154 20151114194710 20151117182727 20151119010220 20151124210258 20151219193500 20151219193605 20151221173802 20151221184633 20151221190718 20151222002018 20151222003146 20151222014614 20151222015912 20151222050003 20151222203456 20151222205942 20151222235030 20151223010756 20160105005251 20160105010036 20160119171803 20160119175852 20160119180651 20160119182810 20160119194236 20160119202042 20160120184436 20160120233335 20160121011332 20160121011352 20160404233557 20160411154248 20160411192951 20160411193207 20160412173111 20160412224626 20160413234140 20160414194510 20160418183414 20160419170717 20160420000216 20160427183057 20160427192007 20160428230452 20160429192725 20160502163822 20160503160459 20160504200103 20160505194828 20160506002945 20160511161020 20160512184238 20160513163738 20160513164339 20160513165032 20160513184330 20160518162011 20160518170640 20160518173020 20160518193326 20160519231759 20160519232545 20160520003026 20160520153042 20160520153326 20160523195945 20160523201014 20160524232116 20160525163805 20160526165657 20160527153244 20160527182640 20160528163824 20160530153856 20160531165808 20160531175415 20160531200444 20160602165439 20160602231937 20160603165153 20160603200015 20160606171656 20160608171024 20160609193416 20160609231708 20160613170841 20160613185452 20160614205319 20160614232901 20160616181216 20160617164730 20160617184436 20160617222342 20160620230631 20160621223426 20160628225643 20160713171632 20160713222305 20160713223312 20160713223932 20160714170457 20160714171654 20160714185701 20160714231023 20160715000214 20160715001709 20160716200435 20160718174528 20160719184728 20160720182745 20160721161846 20160721171959 20160721224052 20160721224804 20160722193144 20160723000549 20160726211815 20160727175515 20160728010924 20160728011554 20160728191545 20160728191546 20160728191547 20160728191548 20160728191549 20160802003148 20160803170228 20160803191627 20160803194503 20160803194911 20160803230644 20160804172238 20160804185753 20160804224921 20160805000616 20160805002308 20160805170519 20160805171948 20160809192534 20160810184902 20160810222003 20160815182300 20160815190908 20160816183907 20160823190423 20160909185350 20160927174615 20161010175820 20161021231122 20161027165935 20161027170259 20161031184016 20161031190447 20161031191502 20161101202436 20161108233050 20161108233231 20161109005815 20161124194523 20161124200114 20161130205633 20161130205638 20161130232423 20161130232436 20161202005336 20161202192447 20161213185417 20161213185425 20161213185433 20161214181936 20170527190559 20170527191257 20170529170639 20170529183330 20171211222709 20180724174236 20180727152745 20180816020521 20180816022444 20180816171401 20180816181027 20180817233420 20180905183025 20181122030513 20181213183811 20181213185244 20181213203152 20181213203326 20181217171552 20181217172147 20181217175547 20181220182317 20181221220426 20190205081621 \. -- -- Data for Name: sellers; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.sellers (id, pointsale_id, name, last_name, status, created_at, updated_at) FROM stdin; 1 1 ROCIO GUEVARA 1 2019-02-02 01:47:39.769208 2019-02-02 01:47:39.769208 4 2 SAMANTHA URCISICHI 1 2019-02-06 00:38:01.912215 2019-02-06 00:38:01.912215 6 1 prueba2 prueba2 0 2019-02-26 01:01:53.821486 2019-02-26 01:03:20.763995 5 2 prueba prueba 0 2019-02-26 01:01:30.982904 2019-02-26 01:03:24.272061 7 2 ILSE LIZARRAGA 0 2019-02-26 01:10:43.118631 2019-05-20 23:48:06.9702 12 3 DANIELA URCISICHI 1 2019-08-28 04:01:43.183664 2019-08-28 04:01:43.183664 14 3 SAMANTHA URCISICHI 1 2019-09-10 17:06:32.414343 2019-09-10 17:06:32.414343 15 2 DANIELA URCISICHI 1 2019-09-20 17:10:27.033078 2019-09-20 17:10:27.033078 16 1 DANIELA URCISICHI 1 2019-09-20 17:10:50.671028 2019-09-20 17:10:50.671028 21 1 KARLA BELTRAN 0 2019-12-03 18:20:29.943903 2019-12-03 18:20:43.153564 2 2 ANABELLY GAXIOLA 0 2019-02-02 01:47:58.136886 2019-12-19 18:49:48.425536 8 1 ANABELLY GAXIOLA 0 2019-02-26 01:11:14.112813 2019-12-19 18:49:58.204498 9 2 YARETZI NAJAR 0 2019-05-04 21:55:09.758243 2019-12-19 18:50:05.409483 13 3 MARICRUZ BUSTAMANTE 0 2019-09-09 18:15:48.020082 2019-12-19 18:51:29.725447 24 3 INSTAGRAM INTERNET 1 2020-03-26 19:15:28.278595 2020-03-26 19:15:28.278595 25 1 INSTAGRAM INTERNET 1 2020-03-26 19:16:10.991399 2020-03-26 19:16:10.991399 26 2 INSTAGRAM INTERNET 1 2020-03-26 19:16:37.856429 2020-03-26 19:16:37.856429 23 3 ROCIO GUEVARA 1 2020-03-12 23:25:12.907439 2020-09-09 18:49:56.418641 27 1 INSTAGRAM SAMANTHA 1 2020-09-12 23:39:55.814606 2020-09-12 23:39:55.814606 28 1 INSTAGRAM ROCIO 1 2020-09-12 23:40:10.175057 2020-09-12 23:40:10.175057 29 3 INSTAGRAM ROCIO 1 2020-09-12 23:40:26.055165 2020-09-12 23:40:26.055165 30 1 SAMANTHA URCISICHI 1 2020-09-26 00:00:45.560324 2020-09-26 00:00:45.560324 18 1 KEYLA LIZARRAGA 0 2019-10-21 23:55:05.626517 2020-09-26 00:01:18.668973 19 2 KEYLA LIZARRAGA 0 2019-10-22 00:16:59.137266 2020-09-26 00:01:26.514141 20 1 KARLA BELTRAN 0 2019-12-03 18:20:28.481575 2020-09-26 00:01:35.127965 10 1 MONTSERRAT BARRIOS 0 2019-05-18 23:04:52.664295 2020-09-26 00:01:40.772313 17 2 MONTSERRAT BARRIOS 0 2019-10-12 17:03:18.697089 2020-09-26 00:01:46.299344 22 2 KARLA BELTRAN 0 2019-12-07 20:29:49.445397 2020-09-26 00:01:51.028428 3 1 SAMANTHA URCISICHI 0 2019-02-06 00:37:44.94531 2020-09-26 00:02:11.786634 11 2 ROCIO GUEVARA 0 2019-05-20 23:48:20.843554 2020-09-26 00:02:19.031725 31 3 NAYELI BELTRAN 1 2020-10-30 21:10:30.421637 2020-10-30 21:10:30.421637 \. -- -- Name: sellers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.sellers_id_seq', 31, true); -- -- Data for Name: sellerscommissions; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.sellerscommissions (id, commission_id, seller_id, num_sales, sales_total, commission_calculated, commission_paid, created_at, updated_at, commission_percent, total_sold_cash, total_sold_credits_apartments, income_by_cash, income_by_reserved_and_credits) FROM stdin; 1 1 9 4 7443.0 74.43 74.43 2019-05-18 22:22:52.473018 2019-05-18 22:22:52.473018 1 7443.00 0.00 7443.00 0.00 \. -- -- Name: sellerscommissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.sellerscommissions_id_seq', 1, true); -- -- Data for Name: special_prices; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.special_prices (id, product_id, customer_id, price, percent, status, created_at, updated_at, user_id) FROM stdin; \. -- -- Name: special_prices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.special_prices_id_seq', 1, false); -- -- Data for Name: spmx_counties; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.spmx_counties (id, id_, state_id, name) FROM stdin; 1 1 1 Aguascalientes 2 1 2 Ensenada 3 1 3 Comondú 4 1 4 Calkiní 5 1 5 Abasolo 6 1 6 Armería 7 1 7 Acacoyagua 8 1 8 Ahumada 9 1 10 Canatlán 10 1 11 Abasolo 11 1 12 Acapulco de Juárez 12 1 13 Acatlán 13 1 14 Acatic 14 1 15 Acambay de Ruíz Castañeda 15 1 16 Acuitzio 16 1 17 Amacuzac 17 1 18 Acaponeta 18 1 19 Abasolo 19 1 20 Abejones 20 1 21 Acajete 21 1 22 Amealco de Bonfil 22 1 23 Cozumel 23 1 24 Ahualulco 24 1 25 Ahome 25 1 26 Aconchi 26 1 27 Balancán 27 1 28 Abasolo 28 1 29 Amaxac de Guerrero 29 1 30 Acajete 30 1 31 Abalá 31 1 32 Apozol 32 2 1 Asientos 33 2 2 Mexicali 34 2 3 Mulegé 35 2 4 Campeche 36 2 5 Acuña 37 2 6 Colima 38 2 7 Acala 39 2 8 Aldama 40 2 9 Azcapotzalco 41 2 10 Canelas 42 2 11 Acámbaro 43 2 12 Ahuacuotzingo 44 2 13 Acaxochitlán 45 2 14 Acatlán de Juárez 46 2 15 Acolman 47 2 16 Aguililla 48 2 17 Atlatlahucan 49 2 18 Ahuacatlán 50 2 19 Agualeguas 51 2 20 Acatlán de Pérez Figueroa 52 2 21 Acateno 53 2 22 Pinal de Amoles 54 2 23 Felipe Carrillo Puerto 55 2 24 Alaquines 56 2 25 Angostura 57 2 26 Agua Prieta 58 2 27 Cárdenas 59 2 28 Aldama 60 2 29 Apetatitlán de Antonio Carvajal 61 2 30 Acatlán 62 2 31 Acanceh 63 2 32 Apulco 64 3 1 Calvillo 65 3 2 Tecate 66 3 3 La Paz 67 3 4 Carmen 68 3 5 Allende 69 3 6 Comala 70 3 7 Acapetahua 71 3 8 Allende 72 3 9 Coyoacán 73 3 10 Coneto de Comonfort 74 3 11 San Miguel de Allende 75 3 12 Ajuchitlán del Progreso 76 3 13 Actopan 77 3 14 Ahualulco de Mercado 78 3 15 Aculco 79 3 16 Álvaro Obregón 80 3 17 Axochiapan 81 3 18 Amatlán de Cañas 82 3 19 Los Aldamas 83 3 20 Asunción Cacalotepec 84 3 21 Acatlán 85 3 22 Arroyo Seco 86 3 23 Isla Mujeres 87 3 24 Aquismón 88 3 25 Badiraguato 89 3 26 Alamos 90 3 27 Centla 91 3 28 Altamira 92 3 29 Atlangatepec 93 3 30 Acayucan 94 3 31 Akil 95 3 32 Atolinga 96 4 1 Cosío 97 4 2 Tijuana 98 4 4 Champotón 99 4 5 Arteaga 100 4 6 Coquimatlán 101 4 7 Altamirano 102 4 8 Aquiles Serdán 103 4 9 Cuajimalpa de Morelos 104 4 10 Cuencamé 105 4 11 Apaseo el Alto 106 4 12 Alcozauca de Guerrero 107 4 13 Agua Blanca de Iturbide 108 4 14 Amacueca 109 4 15 Almoloya de Alquisiras 110 4 16 Angamacutiro 111 4 17 Ayala 112 4 18 Compostela 113 4 19 Allende 114 4 20 Asunción Cuyotepeji 115 4 21 Acatzingo 116 4 22 Cadereyta de Montes 117 4 23 Othón P. Blanco 118 4 24 Armadillo de los Infante 119 4 25 Concordia 120 4 26 Altar 121 4 27 Centro 122 4 28 Antiguo Morelos 123 4 29 Atltzayanca 124 4 30 Actopan 125 4 31 Baca 126 4 32 Benito Juárez 127 5 1 Jesús María 128 5 2 Playas de Rosarito 129 5 4 Hecelchakán 130 5 5 Candela 131 5 6 Cuauhtémoc 132 5 7 Amatán 133 5 8 Ascensión 134 5 9 Gustavo A. Madero 135 5 10 Durango 136 5 11 Apaseo el Grande 137 5 12 Alpoyeca 138 5 13 Ajacuba 139 5 14 Amatitán 140 5 15 Almoloya de Juárez 141 5 16 Angangueo 142 5 17 Coatlán del Río 143 5 18 Huajicori 144 5 19 Anáhuac 145 5 20 Asunción Ixtaltepec 146 5 21 Acteopan 147 5 22 Colón 148 5 23 Benito Juárez 149 5 24 Cárdenas 150 5 25 Cosalá 151 5 26 Arivechi 152 5 27 Comalcalco 153 5 28 Burgos 154 5 29 Apizaco 155 5 30 Acula 156 5 31 Bokobá 157 5 32 Calera 158 6 1 Pabellón de Arteaga 159 6 4 Hopelchén 160 6 5 Castaños 161 6 6 Ixtlahuacán 162 6 7 Amatenango de la Frontera 163 6 8 Bachíniva 164 6 9 Iztacalco 165 6 10 General Simón Bolívar 166 6 11 Atarjea 167 6 12 Apaxtla 168 6 13 Alfajayucan 169 6 14 Ameca 170 6 15 Almoloya del Río 171 6 16 Apatzingán 172 6 17 Cuautla 173 6 18 Ixtlán del Río 174 6 19 Apodaca 175 6 20 Asunción Nochixtlán 176 6 21 Ahuacatlán 177 6 22 Corregidora 178 6 23 José María Morelos 179 6 24 Catorce 180 6 25 Culiacán 181 6 26 Arizpe 182 6 27 Cunduacán 183 6 28 Bustamante 184 6 29 Calpulalpan 185 6 30 Acultzingo 186 6 31 Buctzotz 187 6 32 Cañitas de Felipe Pescador 188 7 1 Rincón de Romos 189 7 4 Palizada 190 7 5 Cuatro Ciénegas 191 7 6 Manzanillo 192 7 7 Amatenango del Valle 193 7 8 Balleza 194 7 9 Iztapalapa 195 7 10 Gómez Palacio 196 7 11 Celaya 197 7 12 Arcelia 198 7 13 Almoloya 199 7 14 San Juanito de Escobedo 200 7 15 Amanalco 201 7 16 Aporo 202 7 17 Cuernavaca 203 7 18 Jala 204 7 19 Aramberri 205 7 20 Asunción Ocotlán 206 7 21 Ahuatlán 207 7 22 Ezequiel Montes 208 7 23 Lázaro Cárdenas 209 7 24 Cedral 210 7 25 Choix 211 7 26 Atil 212 7 27 Emiliano Zapata 213 7 28 Camargo 214 7 29 El Carmen Tequexquitla 215 7 30 Camarón de Tejeda 216 7 31 Cacalchén 217 7 32 Concepción del Oro 218 8 1 San José de Gracia 219 8 3 Los Cabos 220 8 4 Tenabo 221 8 5 Escobedo 222 8 6 Minatitlán 223 8 7 Angel Albino Corzo 224 8 8 Batopilas 225 8 9 La Magdalena Contreras 226 8 10 Guadalupe Victoria 227 8 11 Manuel Doblado 228 8 12 Atenango del Río 229 8 13 Apan 230 8 14 Arandas 231 8 15 Amatepec 232 8 16 Aquila 233 8 17 Emiliano Zapata 234 8 18 Xalisco 235 8 19 Bustamante 236 8 20 Asunción Tlacolulita 237 8 21 Ahuazotepec 238 8 22 Huimilpan 239 8 23 Solidaridad 240 8 24 Cerritos 241 8 25 Elota 242 8 26 Bacadéhuachi 243 8 27 Huimanguillo 244 8 28 Casas 245 8 29 Cuapiaxtla 246 8 30 Alpatláhuac 247 8 31 Calotmul 248 8 32 Cuauhtémoc 249 9 1 Tepezalá 250 9 3 Loreto 251 9 4 Escárcega 252 9 5 Francisco I. Madero 253 9 6 Tecomán 254 9 7 Arriaga 255 9 8 Bocoyna 256 9 9 Milpa Alta 257 9 10 Guanaceví 258 9 11 Comonfort 259 9 12 Atlamajalcingo del Monte 260 9 13 El Arenal 261 9 14 El Arenal 262 9 15 Amecameca 263 9 16 Ario 264 9 17 Huitzilac 265 9 18 Del Nayar 266 9 19 Cadereyta Jiménez 267 9 20 Ayotzintepec 268 9 21 Ahuehuetitla 269 9 22 Jalpan de Serra 270 9 23 Tulum 271 9 24 Cerro de San Pedro 272 9 25 Escuinapa 273 9 26 Bacanora 274 9 27 Jalapa 275 9 28 Ciudad Madero 276 9 29 Cuaxomulco 277 9 30 Alto Lucero de Gutiérrez Barrios 278 9 31 Cansahcab 279 9 32 Chalchihuites 280 10 1 El Llano 281 10 4 Calakmul 282 10 5 Frontera 283 10 6 Villa de Álvarez 284 10 7 Bejucal de Ocampo 285 10 8 Buenaventura 286 10 9 Álvaro Obregón 287 10 10 Hidalgo 288 10 11 Coroneo 289 10 12 Atlixtac 290 10 13 Atitalaquia 291 10 14 Atemajac de Brizuela 292 10 15 Apaxco 293 10 16 Arteaga 294 10 17 Jantetelco 295 10 18 Rosamorada 296 10 19 El Carmen 297 10 20 El Barrio de la Soledad 298 10 21 Ajalpan 299 10 22 Landa de Matamoros 300 10 23 Bacalar 301 10 24 Ciudad del Maíz 302 10 25 El Fuerte 303 10 26 Bacerac 304 10 27 Jalpa de Méndez 305 10 28 Cruillas 306 10 29 Chiautempan 307 10 30 Altotonga 308 10 31 Cantamayec 309 10 32 Fresnillo 310 11 1 San Francisco de los Romo 311 11 4 Candelaria 312 11 5 General Cepeda 313 11 7 Bella Vista 314 11 8 Camargo 315 11 9 Tláhuac 316 11 10 Indé 317 11 11 Cortazar 318 11 12 Atoyac de Álvarez 319 11 13 Atlapexco 320 11 14 Atengo 321 11 15 Atenco 322 11 16 Briseñas 323 11 17 Jiutepec 324 11 18 Ruíz 325 11 19 Cerralvo 326 11 20 Calihualá 327 11 21 Albino Zertuche 328 11 22 El Marqués 329 11 24 Ciudad Fernández 330 11 25 Guasave 331 11 26 Bacoachi 332 11 27 Jonuta 333 11 28 Gómez Farías 334 11 29 Muñoz de Domingo Arenas 335 11 30 Alvarado 336 11 31 Celestún 337 11 32 Trinidad García de la Cadena 338 12 5 Guerrero 339 12 7 Berriozábal 340 12 8 Carichí 341 12 9 Tlalpan 342 12 10 Lerdo 343 12 11 Cuerámaro 344 12 12 Ayutla de los Libres 345 12 13 Atotonilco el Grande 346 12 14 Atenguillo 347 12 15 Atizapán 348 12 16 Buenavista 349 12 17 Jojutla 350 12 18 San Blas 351 12 19 Ciénega de Flores 352 12 20 Candelaria Loxicha 353 12 21 Aljojuca 354 12 22 Pedro Escobedo 355 12 24 Tancanhuitz 356 12 25 Mazatlán 357 12 26 Bácum 358 12 27 Macuspana 359 12 28 González 360 12 29 Españita 361 12 30 Amatitlán 362 12 31 Cenotillo 363 12 32 Genaro Codina 364 13 5 Hidalgo 365 13 7 Bochil 366 13 8 Casas Grandes 367 13 9 Xochimilco 368 13 10 Mapimí 369 13 11 Doctor Mora 370 13 12 Azoyú 371 13 13 Atotonilco de Tula 372 13 14 Atotonilco el Alto 373 13 15 Atizapán de Zaragoza 374 13 16 Carácuaro 375 13 17 Jonacatepec 376 13 18 San Pedro Lagunillas 377 13 19 China 378 13 20 Ciénega de Zimatlán 379 13 21 Altepexi 380 13 22 Peñamiller 381 13 24 Ciudad Valles 382 13 25 Mocorito 383 13 26 Banámichi 384 13 27 Nacajuca 385 13 28 Güémez 386 13 29 Huamantla 387 13 30 Naranjos Amatlán 388 13 31 Conkal 389 13 32 General Enrique Estrada 390 14 5 Jiménez 391 14 7 El Bosque 392 14 8 Coronado 393 14 9 Benito Juárez 394 14 10 Mezquital 395 14 11 Dolores Hidalgo Cuna de la Independencia Nacional 396 14 12 Benito Juárez 397 14 13 Calnali 398 14 14 Atoyac 399 14 15 Atlacomulco 400 14 16 Coahuayana 401 14 17 Mazatepec 402 14 18 Santa María del Oro 403 14 19 Doctor Arroyo 404 14 20 Ciudad Ixtepec 405 14 21 Amixtlán 406 14 22 Querétaro 407 14 24 Coxcatlán 408 14 25 Rosario 409 14 26 Baviácora 410 14 27 Paraíso 411 14 28 Guerrero 412 14 29 Hueyotlipan 413 14 30 Amatlán de los Reyes 414 14 31 Cuncunul 415 14 32 General Francisco R. Murguía 416 15 5 Juárez 417 15 7 Cacahoatán 418 15 8 Coyame del Sotol 419 15 9 Cuauhtémoc 420 15 10 Nazas 421 15 11 Guanajuato 422 15 12 Buenavista de Cuéllar 423 15 13 Cardonal 424 15 14 Autlán de Navarro 425 15 15 Atlautla 426 15 16 Coalcomán de Vázquez Pallares 427 15 17 Miacatlán 428 15 18 Santiago Ixcuintla 429 15 19 Doctor Coss 430 15 20 Coatecas Altas 431 15 21 Amozoc 432 15 22 San Joaquín 433 15 24 Charcas 434 15 25 Salvador Alvarado 435 15 26 Bavispe 436 15 27 Tacotalpa 437 15 28 Gustavo Díaz Ordaz 438 15 29 Ixtacuixtla de Mariano Matamoros 439 15 30 Angel R. Cabada 440 15 31 Cuzamá 441 15 32 El Plateado de Joaquín Amaro 442 16 5 Lamadrid 443 16 7 Catazajá 444 16 8 La Cruz 445 16 9 Miguel Hidalgo 446 16 10 Nombre de Dios 447 16 11 Huanímaro 448 16 12 Coahuayutla de José María Izazaga 449 16 13 Cuautepec de Hinojosa 450 16 14 Ayotlán 451 16 15 Axapusco 452 16 16 Coeneo 453 16 17 Ocuituco 454 16 18 Tecuala 455 16 19 Doctor González 456 16 20 Coicoyán de las Flores 457 16 21 Aquixtla 458 16 22 San Juan del Río 459 16 24 Ebano 460 16 25 San Ignacio 461 16 26 Benjamín Hill 462 16 27 Teapa 463 16 28 Hidalgo 464 16 29 Ixtenco 465 16 30 La Antigua 466 16 31 Chacsinkín 467 16 32 General Pánfilo Natera 468 17 5 Matamoros 469 17 7 Cintalapa 470 17 8 Cuauhtémoc 471 17 9 Venustiano Carranza 472 17 10 Ocampo 473 17 11 Irapuato 474 17 12 Cocula 475 17 13 Chapantongo 476 17 14 Ayutla 477 17 15 Ayapango 478 17 16 Contepec 479 17 17 Puente de Ixtla 480 17 18 Tepic 481 17 19 Galeana 482 17 20 La Compañía 483 17 21 Atempan 484 17 22 Tequisquiapan 485 17 24 Guadalcázar 486 17 25 Sinaloa 487 17 26 Caborca 488 17 27 Tenosique 489 17 28 Jaumave 490 17 29 Mazatecochco de José María Morelos 491 17 30 Apazapan 492 17 31 Chankom 493 17 32 Guadalupe 494 18 5 Monclova 495 18 7 Coapilla 496 18 8 Cusihuiriachi 497 18 10 El Oro 498 18 11 Jaral del Progreso 499 18 12 Copala 500 18 13 Chapulhuacán 501 18 14 La Barca 502 18 15 Calimaya 503 18 16 Copándaro 504 18 17 Temixco 505 18 18 Tuxpan 506 18 19 García 507 18 20 Concepción Buenavista 508 18 21 Atexcal 509 18 22 Tolimán 510 18 24 Huehuetlán 511 18 25 Navolato 512 18 26 Cajeme 513 18 28 Jiménez 514 18 29 Contla de Juan Cuamatzi 515 18 30 Aquila 516 18 31 Chapab 517 18 32 Huanusco 518 19 5 Morelos 519 19 7 Comitán de Domínguez 520 19 8 Chihuahua 521 19 10 Otáez 522 19 11 Jerécuaro 523 19 12 Copalillo 524 19 13 Chilcuautla 525 19 14 Bolaños 526 19 15 Capulhuac 527 19 16 Cotija 528 19 17 Tepalcingo 529 19 18 La Yesca 530 19 19 San Pedro Garza García 531 19 20 Concepción Pápalo 532 19 21 Atlixco 533 19 24 Lagunillas 534 19 26 Cananea 535 19 28 Llera 536 19 29 Tepetitla de Lardizábal 537 19 30 Astacinga 538 19 31 Chemax 539 19 32 Jalpa 540 20 5 Múzquiz 541 20 7 La Concordia 542 20 8 Chínipas 543 20 10 Pánuco de Coronado 544 20 11 León 545 20 12 Copanatoyac 546 20 13 Eloxochitlán 547 20 14 Cabo Corrientes 548 20 15 Coacalco de Berriozábal 549 20 16 Cuitzeo 550 20 17 Tepoztlán 551 20 18 Bahía de Banderas 552 20 19 General Bravo 553 20 20 Constancia del Rosario 554 20 21 Atoyatempan 555 20 24 Matehuala 556 20 26 Carbó 557 20 28 Mainero 558 20 29 Sanctórum de Lázaro Cárdenas 559 20 30 Atlahuilco 560 20 31 Chicxulub Pueblo 561 20 32 Jerez 562 21 5 Nadadores 563 21 7 Copainalá 564 21 8 Delicias 565 21 10 Peñón Blanco 566 21 11 Moroleón 567 21 12 Coyuca de Benítez 568 21 13 Emiliano Zapata 569 21 14 Casimiro Castillo 570 21 15 Coatepec Harinas 571 21 16 Charapan 572 21 17 Tetecala 573 21 19 General Escobedo 574 21 20 Cosolapa 575 21 21 Atzala 576 21 24 Mexquitic de Carmona 577 21 26 La Colorada 578 21 28 El Mante 579 21 29 Nanacamilpa de Mariano Arista 580 21 30 Atoyac 581 21 31 Chichimilá 582 21 32 Jiménez del Teul 583 22 5 Nava 584 22 7 Chalchihuitán 585 22 8 Dr. Belisario Domínguez 586 22 10 Poanas 587 22 11 Ocampo 588 22 12 Coyuca de Catalán 589 22 13 Epazoyucan 590 22 14 Cihuatlán 591 22 15 Cocotitlán 592 22 16 Charo 593 22 17 Tetela del Volcán 594 22 19 General Terán 595 22 20 Cosoltepec 596 22 21 Atzitzihuacán 597 22 24 Moctezuma 598 22 26 Cucurpe 599 22 28 Matamoros 600 22 29 Acuamanala de Miguel Hidalgo 601 22 30 Atzacan 602 22 31 Chikindzonot 603 22 32 Juan Aldama 604 23 5 Ocampo 605 23 7 Chamula 606 23 8 Galeana 607 23 10 Pueblo Nuevo 608 23 11 Pénjamo 609 23 12 Cuajinicuilapa 610 23 13 Francisco I. Madero 611 23 14 Zapotlán el Grande 612 23 15 Coyotepec 613 23 16 Chavinda 614 23 17 Tlalnepantla 615 23 19 General Treviño 616 23 20 Cuilápam de Guerrero 617 23 21 Atzitzintla 618 23 24 Rayón 619 23 26 Cumpas 620 23 28 Méndez 621 23 29 Natívitas 622 23 30 Atzalan 623 23 31 Chocholá 624 23 32 Juchipila 625 24 5 Parras 626 24 7 Chanal 627 24 8 Santa Isabel 628 24 10 Rodeo 629 24 11 Pueblo Nuevo 630 24 12 Cualác 631 24 13 Huasca de Ocampo 632 24 14 Cocula 633 24 15 Cuautitlán 634 24 16 Cherán 635 24 17 Tlaltizapán de Zapata 636 24 19 General Zaragoza 637 24 20 Cuyamecalco Villa de Zaragoza 638 24 21 Axutla 639 24 24 Rioverde 640 24 26 Divisaderos 641 24 28 Mier 642 24 29 Panotla 643 24 30 Tlaltetela 644 24 31 Chumayel 645 24 32 Loreto 646 25 5 Piedras Negras 647 25 7 Chapultenango 648 25 8 Gómez Farías 649 25 10 San Bernardo 650 25 11 Purísima del Rincón 651 25 12 Cuautepec 652 25 13 Huautla 653 25 14 Colotlán 654 25 15 Chalco 655 25 16 Chilchota 656 25 17 Tlaquiltenango 657 25 19 General Zuazua 658 25 20 Chahuites 659 25 21 Ayotoxco de Guerrero 660 25 24 Salinas 661 25 26 Empalme 662 25 28 Miguel Alemán 663 25 29 San Pablo del Monte 664 25 30 Ayahualulco 665 25 31 Dzán 666 25 32 Luis Moya 667 26 5 Progreso 668 26 7 Chenalhó 669 26 8 Gran Morelos 670 26 10 San Dimas 671 26 11 Romita 672 26 12 Cuetzala del Progreso 673 26 13 Huazalingo 674 26 14 Concepción de Buenos Aires 675 26 15 Chapa de Mota 676 26 16 Chinicuila 677 26 17 Tlayacapan 678 26 19 Guadalupe 679 26 20 Chalcatongo de Hidalgo 680 26 21 Calpan 681 26 24 San Antonio 682 26 26 Etchojoa 683 26 28 Miquihuana 684 26 29 Santa Cruz Tlaxcala 685 26 30 Banderilla 686 26 31 Dzemul 687 26 32 Mazapil 688 27 5 Ramos Arizpe 689 27 7 Chiapa de Corzo 690 27 8 Guachochi 691 27 10 San Juan de Guadalupe 692 27 11 Salamanca 693 27 12 Cutzamala de Pinzón 694 27 13 Huehuetla 695 27 14 Cuautitlán de García Barragán 696 27 15 Chapultepec 697 27 16 Chucándiro 698 27 17 Totolapan 699 27 19 Los Herreras 700 27 20 Chiquihuitlán de Benito Juárez 701 27 21 Caltepec 702 27 24 San Ciro de Acosta 703 27 26 Fronteras 704 27 28 Nuevo Laredo 705 27 29 Tenancingo 706 27 30 Benito Juárez 707 27 31 Dzidzantún 708 27 32 Melchor Ocampo 709 28 5 Sabinas 710 28 7 Chiapilla 711 28 8 Guadalupe 712 28 10 San Juan del Río 713 28 11 Salvatierra 714 28 12 Chilapa de Álvarez 715 28 13 Huejutla de Reyes 716 28 14 Cuautla 717 28 15 Chiautla 718 28 16 Churintzio 719 28 17 Xochitepec 720 28 19 Higueras 721 28 20 Heroica Ciudad de Ejutla de Crespo 722 28 21 Camocuautla 723 28 24 San Luis Potosí 724 28 26 Granados 725 28 28 Nuevo Morelos 726 28 29 Teolocholco 727 28 30 Boca del Río 728 28 31 Dzilam de Bravo 729 28 32 Mezquital del Oro 730 29 5 Sacramento 731 29 7 Chicoasén 732 29 8 Guadalupe y Calvo 733 29 10 San Luis del Cordero 734 29 11 San Diego de la Unión 735 29 12 Chilpancingo de los Bravo 736 29 13 Huichapan 737 29 14 Cuquío 738 29 15 Chicoloapan 739 29 16 Churumuco 740 29 17 Yautepec 741 29 19 Hualahuises 742 29 20 Eloxochitlán de Flores Magón 743 29 21 Caxhuacan 744 29 24 San Martín Chalchicuautla 745 29 26 Guaymas 746 29 28 Ocampo 747 29 29 Tepeyanco 748 29 30 Calcahualco 749 29 31 Dzilam González 750 29 32 Miguel Auza 751 30 5 Saltillo 752 30 7 Chicomuselo 753 30 8 Guazapares 754 30 10 San Pedro del Gallo 755 30 11 San Felipe 756 30 12 Florencio Villarreal 757 30 13 Ixmiquilpan 758 30 14 Chapala 759 30 15 Chiconcuac 760 30 16 Ecuandureo 761 30 17 Yecapixtla 762 30 19 Iturbide 763 30 20 El Espinal 764 30 21 Coatepec 765 30 24 San Nicolás Tolentino 766 30 26 Hermosillo 767 30 28 Padilla 768 30 29 Terrenate 769 30 30 Camerino Z. Mendoza 770 30 31 Dzitás 771 30 32 Momax 772 31 5 San Buenaventura 773 31 7 Chilón 774 31 8 Guerrero 775 31 10 Santa Clara 776 31 11 San Francisco del Rincón 777 31 12 General Canuto A. Neri 778 31 13 Jacala de Ledezma 779 31 14 Chimaltitán 780 31 15 Chimalhuacán 781 31 16 Epitacio Huerta 782 31 17 Zacatepec 783 31 19 Juárez 784 31 20 Tamazulápam del Espíritu Santo 785 31 21 Coatzingo 786 31 24 Santa Catarina 787 31 26 Huachinera 788 31 28 Palmillas 789 31 29 Tetla de la Solidaridad 790 31 30 Carrillo Puerto 791 31 31 Dzoncauich 792 31 32 Monte Escobedo 793 32 5 San Juan de Sabinas 794 32 7 Escuintla 795 32 8 Hidalgo del Parral 796 32 10 Santiago Papasquiaro 797 32 11 San José Iturbide 798 32 12 General Heliodoro Castillo 799 32 13 Jaltocán 800 32 14 Chiquilistlán 801 32 15 Donato Guerra 802 32 16 Erongarícuaro 803 32 17 Zacualpan 804 32 19 Lampazos de Naranjo 805 32 20 Fresnillo de Trujano 806 32 21 Cohetzala 807 32 24 Santa María del Río 808 32 26 Huásabas 809 32 28 Reynosa 810 32 29 Tetlatlahuca 811 32 30 Catemaco 812 32 31 Espita 813 32 32 Morelos 814 33 5 San Pedro 815 33 7 Francisco León 816 33 8 Huejotitán 817 33 10 Súchil 818 33 11 San Luis de la Paz 819 33 12 Huamuxtitlán 820 33 13 Juárez Hidalgo 821 33 14 Degollado 822 33 15 Ecatepec de Morelos 823 33 16 Gabriel Zamora 824 33 17 Temoac 825 33 19 Linares 826 33 20 Guadalupe Etla 827 33 21 Cohuecan 828 33 24 Santo Domingo 829 33 26 Huatabampo 830 33 28 Río Bravo 831 33 29 Tlaxcala 832 33 30 Cazones de Herrera 833 33 31 Halachó 834 33 32 Moyahua de Estrada 835 34 5 Sierra Mojada 836 34 7 Frontera Comalapa 837 34 8 Ignacio Zaragoza 838 34 10 Tamazula 839 34 11 Santa Catarina 840 34 12 Huitzuco de los Figueroa 841 34 13 Lolotla 842 34 14 Ejutla 843 34 15 Ecatzingo 844 34 16 Hidalgo 845 34 19 Marín 846 34 20 Guadalupe de Ramírez 847 34 21 Coronango 848 34 24 San Vicente Tancuayalab 849 34 26 Huépac 850 34 28 San Carlos 851 34 29 Tlaxco 852 34 30 Cerro Azul 853 34 31 Hocabá 854 34 32 Nochistlán de Mejía 855 35 5 Torreón 856 35 7 Frontera Hidalgo 857 35 8 Janos 858 35 10 Tepehuanes 859 35 11 Santa Cruz de Juventino Rosas 860 35 12 Iguala de la Independencia 861 35 13 Metepec 862 35 14 Encarnación de Díaz 863 35 15 Huehuetoca 864 35 16 La Huacana 865 35 19 Melchor Ocampo 866 35 20 Guelatao de Juárez 867 35 21 Coxcatlán 868 35 24 Soledad de Graciano Sánchez 869 35 26 Imuris 870 35 28 San Fernando 871 35 29 Tocatlán 872 35 30 Citlaltépetl 873 35 31 Hoctún 874 35 32 Noria de Ángeles 875 36 5 Viesca 876 36 7 La Grandeza 877 36 8 Jiménez 878 36 10 Tlahualilo 879 36 11 Santiago Maravatío 880 36 12 Igualapa 881 36 13 San Agustín Metzquititlán 882 36 14 Etzatlán 883 36 15 Hueypoxtla 884 36 16 Huandacareo 885 36 19 Mier y Noriega 886 36 20 Guevea de Humboldt 887 36 21 Coyomeapan 888 36 24 Tamasopo 889 36 26 Magdalena 890 36 28 San Nicolás 891 36 29 Totolac 892 36 30 Coacoatzintla 893 36 31 Homún 894 36 32 Ojocaliente 895 37 5 Villa Unión 896 37 7 Huehuetán 897 37 8 Juárez 898 37 10 Topia 899 37 11 Silao 900 37 12 Ixcateopan de Cuauhtémoc 901 37 13 Metztitlán 902 37 14 El Grullo 903 37 15 Huixquilucan 904 37 16 Huaniqueo 905 37 19 Mina 906 37 20 Mesones Hidalgo 907 37 21 Coyotepec 908 37 24 Tamazunchale 909 37 26 Mazatán 910 37 28 Soto la Marina 911 37 29 Ziltlaltépec de Trinidad Sánchez Santos 912 37 30 Coahuitlán 913 37 31 Huhí 914 37 32 Pánuco 915 38 5 Zaragoza 916 38 7 Huixtán 917 38 8 Julimes 918 38 10 Vicente Guerrero 919 38 11 Tarandacuao 920 38 12 Zihuatanejo de Azueta 921 38 13 Mineral del Chico 922 38 14 Guachinango 923 38 15 Isidro Fabela 924 38 16 Huetamo 925 38 19 Montemorelos 926 38 20 Villa Hidalgo 927 38 21 Cuapiaxtla de Madero 928 38 24 Tampacán 929 38 26 Moctezuma 930 38 28 Tampico 931 38 29 Tzompantepec 932 38 30 Coatepec 933 38 31 Hunucmá 934 38 32 Pinos 935 39 7 Huitiupán 936 39 8 López 937 39 10 Nuevo Ideal 938 39 11 Tarimoro 939 39 12 Juan R. Escudero 940 39 13 Mineral del Monte 941 39 14 Guadalajara 942 39 15 Ixtapaluca 943 39 16 Huiramba 944 39 19 Monterrey 945 39 20 Heroica Ciudad de Huajuapan de León 946 39 21 Cuautempan 947 39 24 Tampamolón Corona 948 39 26 Naco 949 39 28 Tula 950 39 29 Xaloztoc 951 39 30 Coatzacoalcos 952 39 31 Ixil 953 39 32 Río Grande 954 40 7 Huixtla 955 40 8 Madera 956 40 11 Tierra Blanca 957 40 12 Leonardo Bravo 958 40 13 La Misión 959 40 14 Hostotipaquillo 960 40 15 Ixtapan de la Sal 961 40 16 Indaparapeo 962 40 19 Parás 963 40 20 Huautepec 964 40 21 Cuautinchán 965 40 24 Tamuín 966 40 26 Nácori Chico 967 40 28 Valle Hermoso 968 40 29 Xaltocan 969 40 30 Coatzintla 970 40 31 Izamal 971 40 32 Sain Alto 972 41 7 La Independencia 973 41 8 Maguarichi 974 41 11 Uriangato 975 41 12 Malinaltepec 976 41 13 Mixquiahuala de Juárez 977 41 14 Huejúcar 978 41 15 Ixtapan del Oro 979 41 16 Irimbo 980 41 19 Pesquería 981 41 20 Huautla de Jiménez 982 41 21 Cuautlancingo 983 41 24 Tanlajás 984 41 26 Nacozari de García 985 41 28 Victoria 986 41 29 Papalotla de Xicohténcatl 987 41 30 Coetzala 988 41 31 Kanasín 989 41 32 El Salvador 990 42 7 Ixhuatán 991 42 8 Manuel Benavides 992 42 11 Valle de Santiago 993 42 12 Mártir de Cuilapan 994 42 13 Molango de Escamilla 995 42 14 Huejuquilla el Alto 996 42 15 Ixtlahuaca 997 42 16 Ixtlán 998 42 19 Los Ramones 999 42 20 Ixtlán de Juárez 1000 42 21 Cuayuca de Andrade 1001 42 24 Tanquián de Escobedo 1002 42 26 Navojoa 1003 42 28 Villagrán 1004 42 29 Xicohtzinco 1005 42 30 Colipa 1006 42 31 Kantunil 1007 42 32 Sombrerete 1008 43 7 Ixtacomitán 1009 43 8 Matachí 1010 43 11 Victoria 1011 43 12 Metlatónoc 1012 43 13 Nicolás Flores 1013 43 14 La Huerta 1014 43 15 Xalatlaco 1015 43 16 Jacona 1016 43 19 Rayones 1017 43 20 Heroica Ciudad de Juchitán de Zaragoza 1018 43 21 Cuetzalan del Progreso 1019 43 24 Tierra Nueva 1020 43 26 Nogales 1021 43 28 Xicoténcatl 1022 43 29 Yauhquemehcan 1023 43 30 Comapa 1024 43 31 Kaua 1025 43 32 Susticacán 1026 44 7 Ixtapa 1027 44 8 Matamoros 1028 44 11 Villagrán 1029 44 12 Mochitlán 1030 44 13 Nopala de Villagrán 1031 44 14 Ixtlahuacán de los Membrillos 1032 44 15 Jaltenco 1033 44 16 Jiménez 1034 44 19 Sabinas Hidalgo 1035 44 20 Loma Bonita 1036 44 21 Cuyoaco 1037 44 24 Vanegas 1038 44 26 Onavas 1039 44 29 Zacatelco 1040 44 30 Córdoba 1041 44 31 Kinchil 1042 44 32 Tabasco 1043 45 7 Ixtapangajoya 1044 45 8 Meoqui 1045 45 11 Xichú 1046 45 12 Olinalá 1047 45 13 Omitlán de Juárez 1048 45 14 Ixtlahuacán del Río 1049 45 15 Jilotepec 1050 45 16 Jiquilpan 1051 45 19 Salinas Victoria 1052 45 20 Magdalena Apasco 1053 45 21 Chalchicomula de Sesma 1054 45 24 Venado 1055 45 26 Opodepe 1056 45 29 Benito Juárez 1057 45 30 Cosamaloapan de Carpio 1058 45 31 Kopomá 1059 45 32 Tepechitlán 1060 46 7 Jiquipilas 1061 46 8 Morelos 1062 46 11 Yuriria 1063 46 12 Ometepec 1064 46 13 San Felipe Orizatlán 1065 46 14 Jalostotitlán 1066 46 15 Jilotzingo 1067 46 16 Juárez 1068 46 19 San Nicolás de los Garza 1069 46 20 Magdalena Jaltepec 1070 46 21 Chapulco 1071 46 24 Villa de Arriaga 1072 46 26 Oquitoa 1073 46 29 Emiliano Zapata 1074 46 30 Cosautlán de Carvajal 1075 46 31 Mama 1076 46 32 Tepetongo 1077 47 7 Jitotol 1078 47 8 Moris 1079 47 12 Pedro Ascencio Alquisiras 1080 47 13 Pacula 1081 47 14 Jamay 1082 47 15 Jiquipilco 1083 47 16 Jungapeo 1084 47 19 Hidalgo 1085 47 20 Santa Magdalena Jicotlán 1086 47 21 Chiautla 1087 47 24 Villa de Guadalupe 1088 47 26 Pitiquito 1089 47 29 Lázaro Cárdenas 1090 47 30 Coscomatepec 1091 47 31 Maní 1092 47 32 Teúl de González Ortega 1093 48 7 Juárez 1094 48 8 Namiquipa 1095 48 12 Petatlán 1096 48 13 Pachuca de Soto 1097 48 14 Jesús María 1098 48 15 Jocotitlán 1099 48 16 Lagunillas 1100 48 19 Santa Catarina 1101 48 20 Magdalena Mixtepec 1102 48 21 Chiautzingo 1103 48 24 Villa de la Paz 1104 48 26 Puerto Peñasco 1105 48 29 La Magdalena Tlaltelulco 1106 48 30 Cosoleacaque 1107 48 31 Maxcanú 1108 48 32 Tlaltenango de Sánchez Román 1109 49 7 Larráinzar 1110 49 8 Nonoava 1111 49 12 Pilcaya 1112 49 13 Pisaflores 1113 49 14 Jilotlán de los Dolores 1114 49 15 Joquicingo 1115 49 16 Madero 1116 49 19 Santiago 1117 49 20 Magdalena Ocotlán 1118 49 21 Chiconcuautla 1119 49 24 Villa de Ramos 1120 49 26 Quiriego 1121 49 29 San Damián Texóloc 1122 49 30 Cotaxtla 1123 49 31 Mayapán 1124 49 32 Valparaíso 1125 50 7 La Libertad 1126 50 8 Nuevo Casas Grandes 1127 50 12 Pungarabato 1128 50 13 Progreso de Obregón 1129 50 14 Jocotepec 1130 50 15 Juchitepec 1131 50 16 Maravatío 1132 50 19 Vallecillo 1133 50 20 Magdalena Peñasco 1134 50 21 Chichiquila 1135 50 24 Villa de Reyes 1136 50 26 Rayón 1137 50 29 San Francisco Tetlanohcan 1138 50 30 Coxquihui 1139 50 31 Mérida 1140 50 32 Vetagrande 1141 51 7 Mapastepec 1142 51 8 Ocampo 1143 51 12 Quechultenango 1144 51 13 Mineral de la Reforma 1145 51 14 Juanacatlán 1146 51 15 Lerma 1147 51 16 Marcos Castellanos 1148 51 19 Villaldama 1149 51 20 Magdalena Teitipac 1150 51 21 Chietla 1151 51 24 Villa Hidalgo 1152 51 26 Rosario 1153 51 29 San Jerónimo Zacualpan 1154 51 30 Coyutla 1155 51 31 Mocochá 1156 51 32 Villa de Cos 1157 52 7 Las Margaritas 1158 52 8 Ojinaga 1159 52 12 San Luis Acatlán 1160 52 13 San Agustín Tlaxiaca 1161 52 14 Juchitlán 1162 52 15 Malinalco 1163 52 16 Lázaro Cárdenas 1164 52 20 Magdalena Tequisistlán 1165 52 21 Chigmecatitlán 1166 52 24 Villa Juárez 1167 52 26 Sahuaripa 1168 52 29 San José Teacalco 1169 52 30 Cuichapa 1170 52 31 Motul 1171 52 32 Villa García 1172 53 7 Mazapa de Madero 1173 53 8 Praxedis G. Guerrero 1174 53 12 San Marcos 1175 53 13 San Bartolo Tutotepec 1176 53 14 Lagos de Moreno 1177 53 15 Melchor Ocampo 1178 53 16 Morelia 1179 53 20 Magdalena Tlacotepec 1180 53 21 Chignahuapan 1181 53 24 Axtla de Terrazas 1182 53 26 San Felipe de Jesús 1183 53 29 San Juan Huactzinco 1184 53 30 Cuitláhuac 1185 53 31 Muna 1186 53 32 Villa González Ortega 1187 54 7 Mazatán 1188 54 8 Riva Palacio 1189 54 12 San Miguel Totolapan 1190 54 13 San Salvador 1191 54 14 El Limón 1192 54 15 Metepec 1193 54 16 Morelos 1194 54 20 Magdalena Zahuatlán 1195 54 21 Chignautla 1196 54 24 Xilitla 1197 54 26 San Javier 1198 54 29 San Lorenzo Axocomanitla 1199 54 30 Chacaltianguis 1200 54 31 Muxupip 1201 54 32 Villa Hidalgo 1202 55 7 Metapa 1203 55 8 Rosales 1204 55 12 Taxco de Alarcón 1205 55 13 Santiago de Anaya 1206 55 14 Magdalena 1207 55 15 Mexicaltzingo 1208 55 16 Múgica 1209 55 20 Mariscala de Juárez 1210 55 21 Chila 1211 55 24 Zaragoza 1212 55 26 San Luis Río Colorado 1213 55 29 San Lucas Tecopilco 1214 55 30 Chalma 1215 55 31 Opichén 1216 55 32 Villanueva 1217 56 7 Mitontic 1218 56 8 Rosario 1219 56 12 Tecoanapa 1220 56 13 Santiago Tulantepec de Lugo Guerrero 1221 56 14 Santa María del Oro 1222 56 15 Morelos 1223 56 16 Nahuatzen 1224 56 20 Mártires de Tacubaya 1225 56 21 Chila de la Sal 1226 56 24 Villa de Arista 1227 56 26 San Miguel de Horcasitas 1228 56 29 Santa Ana Nopalucan 1229 56 30 Chiconamel 1230 56 31 Oxkutzcab 1231 56 32 Zacatecas 1232 57 7 Motozintla 1233 57 8 San Francisco de Borja 1234 57 12 Técpan de Galeana 1235 57 13 Singuilucan 1236 57 14 La Manzanilla de la Paz 1237 57 15 Naucalpan de Juárez 1238 57 16 Nocupétaro 1239 57 20 Matías Romero Avendaño 1240 57 21 Honey 1241 57 24 Matlapa 1242 57 26 San Pedro de la Cueva 1243 57 29 Santa Apolonia Teacalco 1244 57 30 Chiconquiaco 1245 57 31 Panabá 1246 57 32 Trancoso 1247 58 7 Nicolás Ruíz 1248 58 8 San Francisco de Conchos 1249 58 12 Teloloapan 1250 58 13 Tasquillo 1251 58 14 Mascota 1252 58 15 Nezahualcóyotl 1253 58 16 Nuevo Parangaricutiro 1254 58 20 Mazatlán Villa de Flores 1255 58 21 Chilchotla 1256 58 24 El Naranjo 1257 58 26 Santa Ana 1258 58 29 Santa Catarina Ayometla 1259 58 30 Chicontepec 1260 58 31 Peto 1261 58 32 Santa María de la Paz 1262 59 7 Ocosingo 1263 59 8 San Francisco del Oro 1264 59 12 Tepecoacuilco de Trujano 1265 59 13 Tecozautla 1266 59 14 Mazamitla 1267 59 15 Nextlalpan 1268 59 16 Nuevo Urecho 1269 59 20 Miahuatlán de Porfirio Díaz 1270 59 21 Chinantla 1271 59 26 Santa Cruz 1272 59 29 Santa Cruz Quilehtla 1273 59 30 Chinameca 1274 59 31 Progreso 1275 60 7 Ocotepec 1276 60 8 Santa Bárbara 1277 60 12 Tetipac 1278 60 13 Tenango de Doria 1279 60 14 Mexticacán 1280 60 15 Nicolás Romero 1281 60 16 Numarán 1282 60 20 Mixistlán de la Reforma 1283 60 21 Domingo Arenas 1284 60 26 Sáric 1285 60 29 Santa Isabel Xiloxoxtla 1286 60 30 Chinampa de Gorostiza 1287 60 31 Quintana Roo 1288 61 7 Ocozocoautla de Espinosa 1289 61 8 Satevó 1290 61 12 Tixtla de Guerrero 1291 61 13 Tepeapulco 1292 61 14 Mezquitic 1293 61 15 Nopaltepec 1294 61 16 Ocampo 1295 61 20 Monjas 1296 61 21 Eloxochitlán 1297 61 26 Soyopa 1298 61 30 Las Choapas 1299 61 31 Río Lagartos 1300 62 7 Ostuacán 1301 62 8 Saucillo 1302 62 12 Tlacoachistlahuaca 1303 62 13 Tepehuacán de Guerrero 1304 62 14 Mixtlán 1305 62 15 Ocoyoacac 1306 62 16 Pajacuarán 1307 62 20 Natividad 1308 62 21 Epatlán 1309 62 26 Suaqui Grande 1310 62 30 Chocamán 1311 62 31 Sacalum 1312 63 7 Osumacinta 1313 63 8 Temósachic 1314 63 12 Tlacoapa 1315 63 13 Tepeji del Río de Ocampo 1316 63 14 Ocotlán 1317 63 15 Ocuilan 1318 63 16 Panindícuaro 1319 63 20 Nazareno Etla 1320 63 21 Esperanza 1321 63 26 Tepache 1322 63 30 Chontla 1323 63 31 Samahil 1324 64 7 Oxchuc 1325 64 8 El Tule 1326 64 12 Tlalchapa 1327 64 13 Tepetitlán 1328 64 14 Ojuelos de Jalisco 1329 64 15 El Oro 1330 64 16 Parácuaro 1331 64 20 Nejapa de Madero 1332 64 21 Francisco Z. Mena 1333 64 26 Trincheras 1334 64 30 Chumatlán 1335 64 31 Sanahcat 1336 65 7 Palenque 1337 65 8 Urique 1338 65 12 Tlalixtaquilla de Maldonado 1339 65 13 Tetepango 1340 65 14 Pihuamo 1341 65 15 Otumba 1342 65 16 Paracho 1343 65 20 Ixpantepec Nieves 1344 65 21 General Felipe Ángeles 1345 65 26 Tubutama 1346 65 30 Emiliano Zapata 1347 65 31 San Felipe 1348 66 7 Pantelhó 1349 66 8 Uruachi 1350 66 12 Tlapa de Comonfort 1351 66 13 Villa de Tezontepec 1352 66 14 Poncitlán 1353 66 15 Otzoloapan 1354 66 16 Pátzcuaro 1355 66 20 Santiago Niltepec 1356 66 21 Guadalupe 1357 66 26 Ures 1358 66 30 Espinal 1359 66 31 Santa Elena 1360 67 7 Pantepec 1361 67 8 Valle de Zaragoza 1362 67 12 Tlapehuala 1363 67 13 Tezontepec de Aldama 1364 67 14 Puerto Vallarta 1365 67 15 Otzolotepec 1366 67 16 Penjamillo 1367 67 20 Oaxaca de Juárez 1368 67 21 Guadalupe Victoria 1369 67 26 Villa Hidalgo 1370 67 30 Filomeno Mata 1371 67 31 Seyé 1372 68 7 Pichucalco 1373 68 12 La Unión de Isidoro Montes de Oca 1374 68 13 Tianguistengo 1375 68 14 Villa Purificación 1376 68 15 Ozumba 1377 68 16 Peribán 1378 68 20 Ocotlán de Morelos 1379 68 21 Hermenegildo Galeana 1380 68 26 Villa Pesqueira 1381 68 30 Fortín 1382 68 31 Sinanché 1383 69 7 Pijijiapan 1384 69 12 Xalpatláhuac 1385 69 13 Tizayuca 1386 69 14 Quitupan 1387 69 15 Papalotla 1388 69 16 La Piedad 1389 69 20 La Pe 1390 69 21 Huaquechula 1391 69 26 Yécora 1392 69 30 Gutiérrez Zamora 1393 69 31 Sotuta 1394 70 7 El Porvenir 1395 70 12 Xochihuehuetlán 1396 70 13 Tlahuelilpan 1397 70 14 El Salto 1398 70 15 La Paz 1399 70 16 Purépero 1400 70 20 Pinotepa de Don Luis 1401 70 21 Huatlatlauca 1402 70 26 General Plutarco Elías Calles 1403 70 30 Hidalgotitlán 1404 70 31 Sucilá 1405 71 7 Villa Comaltitlán 1406 71 12 Xochistlahuaca 1407 71 13 Tlahuiltepa 1408 71 14 San Cristóbal de la Barranca 1409 71 15 Polotitlán 1410 71 16 Puruándiro 1411 71 20 Pluma Hidalgo 1412 71 21 Huauchinango 1413 71 26 Benito Juárez 1414 71 30 Huatusco 1415 71 31 Sudzal 1416 72 7 Pueblo Nuevo Solistahuacán 1417 72 12 Zapotitlán Tablas 1418 72 13 Tlanalapa 1419 72 14 San Diego de Alejandría 1420 72 15 Rayón 1421 72 16 Queréndaro 1422 72 20 San José del Progreso 1423 72 21 Huehuetla 1424 72 26 San Ignacio Río Muerto 1425 72 30 Huayacocotla 1426 72 31 Suma 1427 73 7 Rayón 1428 73 12 Zirándaro 1429 73 13 Tlanchinol 1430 73 14 San Juan de los Lagos 1431 73 15 San Antonio la Isla 1432 73 16 Quiroga 1433 73 20 Putla Villa de Guerrero 1434 73 21 Huehuetlán el Chico 1435 73 30 Hueyapan de Ocampo 1436 73 31 Tahdziú 1437 74 7 Reforma 1438 74 12 Zitlala 1439 74 13 Tlaxcoapan 1440 74 14 San Julián 1441 74 15 San Felipe del Progreso 1442 74 16 Cojumatlán de Régules 1443 74 20 Santa Catarina Quioquitani 1444 74 21 Huejotzingo 1445 74 30 Huiloapan de Cuauhtémoc 1446 74 31 Tahmek 1447 75 7 Las Rosas 1448 75 12 Eduardo Neri 1449 75 13 Tolcayuca 1450 75 14 San Marcos 1451 75 15 San Martín de las Pirámides 1452 75 16 Los Reyes 1453 75 20 Reforma de Pineda 1454 75 21 Hueyapan 1455 75 30 Ignacio de la Llave 1456 75 31 Teabo 1457 76 7 Sabanilla 1458 76 12 Acatepec 1459 76 13 Tula de Allende 1460 76 14 San Martín de Bolaños 1461 76 15 San Mateo Atenco 1462 76 16 Sahuayo 1463 76 20 La Reforma 1464 76 21 Hueytamalco 1465 76 30 Ilamatlán 1466 76 31 Tecoh 1467 77 7 Salto de Agua 1468 77 12 Marquelia 1469 77 13 Tulancingo de Bravo 1470 77 14 San Martín Hidalgo 1471 77 15 San Simón de Guerrero 1472 77 16 San Lucas 1473 77 20 Reyes Etla 1474 77 21 Hueytlalpan 1475 77 30 Isla 1476 77 31 Tekal de Venegas 1477 78 7 San Cristóbal de las Casas 1478 78 12 Cochoapa el Grande 1479 78 13 Xochiatipan 1480 78 14 San Miguel el Alto 1481 78 15 Santo Tomás 1482 78 16 Santa Ana Maya 1483 78 20 Rojas de Cuauhtémoc 1484 78 21 Huitzilan de Serdán 1485 78 30 Ixcatepec 1486 78 31 Tekantó 1487 79 7 San Fernando 1488 79 12 José Joaquín de Herrera 1489 79 13 Xochicoatlán 1490 79 14 Gómez Farías 1491 79 15 Soyaniquilpan de Juárez 1492 79 16 Salvador Escalante 1493 79 20 Salina Cruz 1494 79 21 Huitziltepec 1495 79 30 Ixhuacán de los Reyes 1496 79 31 Tekax 1497 80 7 Siltepec 1498 80 12 Juchitán 1499 80 13 Yahualica 1500 80 14 San Sebastián del Oeste 1501 80 15 Sultepec 1502 80 16 Senguio 1503 80 20 San Agustín Amatengo 1504 80 21 Atlequizayan 1505 80 30 Ixhuatlán del Café 1506 80 31 Tekit 1507 81 7 Simojovel 1508 81 12 Iliatenco 1509 81 13 Zacualtipán de Ángeles 1510 81 14 Santa María de los Ángeles 1511 81 15 Tecámac 1512 81 16 Susupuato 1513 81 20 San Agustín Atenango 1514 81 21 Ixcamilpa de Guerrero 1515 81 30 Ixhuatlancillo 1516 81 31 Tekom 1517 82 7 Sitalá 1518 82 13 Zapotlán de Juárez 1519 82 14 Sayula 1520 82 15 Tejupilco 1521 82 16 Tacámbaro 1522 82 20 San Agustín Chayuco 1523 82 21 Ixcaquixtla 1524 82 30 Ixhuatlán del Sureste 1525 82 31 Telchac Pueblo 1526 83 7 Socoltenango 1527 83 13 Zempoala 1528 83 14 Tala 1529 83 15 Temamatla 1530 83 16 Tancítaro 1531 83 20 San Agustín de las Juntas 1532 83 21 Ixtacamaxtitlán 1533 83 30 Ixhuatlán de Madero 1534 83 31 Telchac Puerto 1535 84 7 Solosuchiapa 1536 84 13 Zimapán 1537 84 14 Talpa de Allende 1538 84 15 Temascalapa 1539 84 16 Tangamandapio 1540 84 20 San Agustín Etla 1541 84 21 Ixtepec 1542 84 30 Ixmatlahuacan 1543 84 31 Temax 1544 85 7 Soyaló 1545 85 14 Tamazula de Gordiano 1546 85 15 Temascalcingo 1547 85 16 Tangancícuaro 1548 85 20 San Agustín Loxicha 1549 85 21 Izúcar de Matamoros 1550 85 30 Ixtaczoquitlán 1551 85 31 Temozón 1552 86 7 Suchiapa 1553 86 14 Tapalpa 1554 86 15 Temascaltepec 1555 86 16 Tanhuato 1556 86 20 San Agustín Tlacotepec 1557 86 21 Jalpan 1558 86 30 Jalacingo 1559 86 31 Tepakán 1560 87 7 Suchiate 1561 87 14 Tecalitlán 1562 87 15 Temoaya 1563 87 16 Taretan 1564 87 20 San Agustín Yatareni 1565 87 21 Jolalpan 1566 87 30 Xalapa 1567 87 31 Tetiz 1568 88 7 Sunuapa 1569 88 14 Tecolotlán 1570 88 15 Tenancingo 1571 88 16 Tarímbaro 1572 88 20 San Andrés Cabecera Nueva 1573 88 21 Jonotla 1574 88 30 Jalcomulco 1575 88 31 Teya 1576 89 7 Tapachula 1577 89 14 Techaluta de Montenegro 1578 89 15 Tenango del Aire 1579 89 16 Tepalcatepec 1580 89 20 San Andrés Dinicuiti 1581 89 21 Jopala 1582 89 30 Jáltipan 1583 89 31 Ticul 1584 90 7 Tapalapa 1585 90 14 Tenamaxtlán 1586 90 15 Tenango del Valle 1587 90 16 Tingambato 1588 90 20 San Andrés Huaxpaltepec 1589 90 21 Juan C. Bonilla 1590 90 30 Jamapa 1591 90 31 Timucuy 1592 91 7 Tapilula 1593 91 14 Teocaltiche 1594 91 15 Teoloyucan 1595 91 16 Tingüindín 1596 91 20 San Andrés Huayápam 1597 91 21 Juan Galindo 1598 91 30 Jesús Carranza 1599 91 31 Tinum 1600 92 7 Tecpatán 1601 92 14 Teocuitatlán de Corona 1602 92 15 Teotihuacán 1603 92 16 Tiquicheo de Nicolás Romero 1604 92 20 San Andrés Ixtlahuaca 1605 92 21 Juan N. Méndez 1606 92 30 Xico 1607 92 31 Tixcacalcupul 1608 93 7 Tenejapa 1609 93 14 Tepatitlán de Morelos 1610 93 15 Tepetlaoxtoc 1611 93 16 Tlalpujahua 1612 93 20 San Andrés Lagunas 1613 93 21 Lafragua 1614 93 30 Jilotepec 1615 93 31 Tixkokob 1616 94 7 Teopisca 1617 94 14 Tequila 1618 94 15 Tepetlixpa 1619 94 16 Tlazazalca 1620 94 20 San Andrés Nuxiño 1621 94 21 Libres 1622 94 30 Juan Rodríguez Clara 1623 94 31 Tixmehuac 1624 95 14 Teuchitlán 1625 95 15 Tepotzotlán 1626 95 16 Tocumbo 1627 95 20 San Andrés Paxtlán 1628 95 21 La Magdalena Tlatlauquitepec 1629 95 30 Juchique de Ferrer 1630 95 31 Tixpéhual 1631 96 7 Tila 1632 96 14 Tizapán el Alto 1633 96 15 Tequixquiac 1634 96 16 Tumbiscatío 1635 96 20 San Andrés Sinaxtla 1636 96 21 Mazapiltepec de Juárez 1637 96 30 Landero y Coss 1638 96 31 Tizimín 1639 97 7 Tonalá 1640 97 14 Tlajomulco de Zúñiga 1641 97 15 Texcaltitlán 1642 97 16 Turicato 1643 97 20 San Andrés Solaga 1644 97 21 Mixtla 1645 97 30 Lerdo de Tejada 1646 97 31 Tunkás 1647 98 7 Totolapa 1648 98 14 San Pedro Tlaquepaque 1649 98 15 Texcalyacac 1650 98 16 Tuxpan 1651 98 20 San Andrés Teotilálpam 1652 98 21 Molcaxac 1653 98 30 Magdalena 1654 98 31 Tzucacab 1655 99 7 La Trinitaria 1656 99 14 Tolimán 1657 99 15 Texcoco 1658 99 16 Tuzantla 1659 99 20 San Andrés Tepetlapa 1660 99 21 Cañada Morelos 1661 99 30 Maltrata 1662 99 31 Uayma 1663 100 7 Tumbalá 1664 100 14 Tomatlán 1665 100 15 Tezoyuca 1666 100 16 Tzintzuntzan 1667 100 20 San Andrés Yaá 1668 100 21 Naupan 1669 100 30 Manlio Fabio Altamirano 1670 100 31 Ucú 1671 101 7 Tuxtla Gutiérrez 1672 101 14 Tonalá 1673 101 15 Tianguistenco 1674 101 16 Tzitzio 1675 101 20 San Andrés Zabache 1676 101 21 Nauzontla 1677 101 30 Mariano Escobedo 1678 101 31 Umán 1679 102 7 Tuxtla Chico 1680 102 14 Tonaya 1681 102 15 Timilpan 1682 102 16 Uruapan 1683 102 20 San Andrés Zautla 1684 102 21 Nealtican 1685 102 30 Martínez de la Torre 1686 102 31 Valladolid 1687 103 7 Tuzantán 1688 103 14 Tonila 1689 103 15 Tlalmanalco 1690 103 16 Venustiano Carranza 1691 103 20 San Antonino Castillo Velasco 1692 103 21 Nicolás Bravo 1693 103 30 Mecatlán 1694 103 31 Xocchel 1695 104 7 Tzimol 1696 104 14 Totatiche 1697 104 15 Tlalnepantla de Baz 1698 104 16 Villamar 1699 104 20 San Antonino el Alto 1700 104 21 Nopalucan 1701 104 30 Mecayapan 1702 104 31 Yaxcabá 1703 105 7 Unión Juárez 1704 105 14 Tototlán 1705 105 15 Tlatlaya 1706 105 16 Vista Hermosa 1707 105 20 San Antonino Monte Verde 1708 105 21 Ocotepec 1709 105 30 Medellín 1710 105 31 Yaxkukul 1711 106 7 Venustiano Carranza 1712 106 14 Tuxcacuesco 1713 106 15 Toluca 1714 106 16 Yurécuaro 1715 106 20 San Antonio Acutla 1716 106 21 Ocoyucan 1717 106 30 Miahuatlán 1718 106 31 Yobaín 1719 107 7 Villa Corzo 1720 107 14 Tuxcueca 1721 107 15 Tonatico 1722 107 16 Zacapu 1723 107 20 San Antonio de la Cal 1724 107 21 Olintla 1725 107 30 Las Minas 1726 108 7 Villaflores 1727 108 14 Tuxpan 1728 108 15 Tultepec 1729 108 16 Zamora 1730 108 20 San Antonio Huitepec 1731 108 21 Oriental 1732 108 30 Minatitlán 1733 109 7 Yajalón 1734 109 14 Unión de San Antonio 1735 109 15 Tultitlán 1736 109 16 Zináparo 1737 109 20 San Antonio Nanahuatípam 1738 109 21 Pahuatlán 1739 109 30 Misantla 1740 110 7 San Lucas 1741 110 14 Unión de Tula 1742 110 15 Valle de Bravo 1743 110 16 Zinapécuaro 1744 110 20 San Antonio Sinicahua 1745 110 21 Palmar de Bravo 1746 110 30 Mixtla de Altamirano 1747 111 7 Zinacantán 1748 111 14 Valle de Guadalupe 1749 111 15 Villa de Allende 1750 111 16 Ziracuaretiro 1751 111 20 San Antonio Tepetlapa 1752 111 21 Pantepec 1753 111 30 Moloacán 1754 112 7 San Juan Cancuc 1755 112 14 Valle de Juárez 1756 112 15 Villa del Carbón 1757 112 16 Zitácuaro 1758 112 20 San Baltazar Chichicápam 1759 112 21 Petlalcingo 1760 112 30 Naolinco 1761 113 7 Aldama 1762 113 14 San Gabriel 1763 113 15 Villa Guerrero 1764 113 16 José Sixto Verduzco 1765 113 20 San Baltazar Loxicha 1766 113 21 Piaxtla 1767 113 30 Naranjal 1768 114 7 Benemérito de las Américas 1769 114 14 Villa Corona 1770 114 15 Villa Victoria 1771 114 20 San Baltazar Yatzachi el Bajo 1772 114 21 Puebla 1773 114 30 Nautla 1774 115 7 Maravilla Tenejapa 1775 115 14 Villa Guerrero 1776 115 15 Xonacatlán 1777 115 20 San Bartolo Coyotepec 1778 115 21 Quecholac 1779 115 30 Nogales 1780 116 7 Marqués de Comillas 1781 116 14 Villa Hidalgo 1782 116 15 Zacazonapan 1783 116 20 San Bartolomé Ayautla 1784 116 21 Quimixtlán 1785 116 30 Oluta 1786 117 7 Montecristo de Guerrero 1787 117 14 Cañadas de Obregón 1788 117 15 Zacualpan 1789 117 20 San Bartolomé Loxicha 1790 117 21 Rafael Lara Grajales 1791 117 30 Omealca 1792 118 7 San Andrés Duraznal 1793 118 14 Yahualica de González Gallo 1794 118 15 Zinacantepec 1795 118 20 San Bartolomé Quialana 1796 118 21 Los Reyes de Juárez 1797 118 30 Orizaba 1798 119 7 Santiago el Pinar 1799 119 14 Zacoalco de Torres 1800 119 15 Zumpahuacán 1801 119 20 San Bartolomé Yucuañe 1802 119 21 San Andrés Cholula 1803 119 30 Otatitlán 1804 120 14 Zapopan 1805 120 15 Zumpango 1806 120 20 San Bartolomé Zoogocho 1807 120 21 San Antonio Cañada 1808 120 30 Oteapan 1809 121 14 Zapotiltic 1810 121 15 Cuautitlán Izcalli 1811 121 20 San Bartolo Soyaltepec 1812 121 21 San Diego la Mesa Tochimiltzingo 1813 121 30 Ozuluama de Mascareñas 1814 122 14 Zapotitlán de Vadillo 1815 122 15 Valle de Chalco Solidaridad 1816 122 20 San Bartolo Yautepec 1817 122 21 San Felipe Teotlalcingo 1818 122 30 Pajapan 1819 123 14 Zapotlán del Rey 1820 123 15 Luvianos 1821 123 20 San Bernardo Mixtepec 1822 123 21 San Felipe Tepatlán 1823 123 30 Pánuco 1824 124 14 Zapotlanejo 1825 124 15 San José del Rincón 1826 124 20 San Blas Atempa 1827 124 21 San Gabriel Chilac 1828 124 30 Papantla 1829 125 14 San Ignacio Cerro Gordo 1830 125 15 Tonanitla 1831 125 20 San Carlos Yautepec 1832 125 21 San Gregorio Atzompa 1833 125 30 Paso del Macho 1834 126 20 San Cristóbal Amatlán 1835 126 21 San Jerónimo Tecuanipan 1836 126 30 Paso de Ovejas 1837 127 20 San Cristóbal Amoltepec 1838 127 21 San Jerónimo Xayacatlán 1839 127 30 La Perla 1840 128 20 San Cristóbal Lachirioag 1841 128 21 San José Chiapa 1842 128 30 Perote 1843 129 20 San Cristóbal Suchixtlahuaca 1844 129 21 San José Miahuatlán 1845 129 30 Platón Sánchez 1846 130 20 San Dionisio del Mar 1847 130 21 San Juan Atenco 1848 130 30 Playa Vicente 1849 131 20 San Dionisio Ocotepec 1850 131 21 San Juan Atzompa 1851 131 30 Poza Rica de Hidalgo 1852 132 20 San Dionisio Ocotlán 1853 132 21 San Martín Texmelucan 1854 132 30 Las Vigas de Ramírez 1855 133 20 San Esteban Atatlahuca 1856 133 21 San Martín Totoltepec 1857 133 30 Pueblo Viejo 1858 134 20 San Felipe Jalapa de Díaz 1859 134 21 San Matías Tlalancaleca 1860 134 30 Puente Nacional 1861 135 20 San Felipe Tejalápam 1862 135 21 San Miguel Ixitlán 1863 135 30 Rafael Delgado 1864 136 20 San Felipe Usila 1865 136 21 San Miguel Xoxtla 1866 136 30 Rafael Lucio 1867 137 20 San Francisco Cahuacuá 1868 137 21 San Nicolás Buenos Aires 1869 137 30 Los Reyes 1870 138 20 San Francisco Cajonos 1871 138 21 San Nicolás de los Ranchos 1872 138 30 Río Blanco 1873 139 20 San Francisco Chapulapa 1874 139 21 San Pablo Anicano 1875 139 30 Saltabarranca 1876 140 20 San Francisco Chindúa 1877 140 21 San Pedro Cholula 1878 140 30 San Andrés Tenejapan 1879 141 20 San Francisco del Mar 1880 141 21 San Pedro Yeloixtlahuaca 1881 141 30 San Andrés Tuxtla 1882 142 20 San Francisco Huehuetlán 1883 142 21 San Salvador el Seco 1884 142 30 San Juan Evangelista 1885 143 20 San Francisco Ixhuatán 1886 143 21 San Salvador el Verde 1887 143 30 Santiago Tuxtla 1888 144 20 San Francisco Jaltepetongo 1889 144 21 San Salvador Huixcolotla 1890 144 30 Sayula de Alemán 1891 145 20 San Francisco Lachigoló 1892 145 21 San Sebastián Tlacotepec 1893 145 30 Soconusco 1894 146 20 San Francisco Logueche 1895 146 21 Santa Catarina Tlaltempan 1896 146 30 Sochiapa 1897 147 20 San Francisco Nuxaño 1898 147 21 Santa Inés Ahuatempan 1899 147 30 Soledad Atzompa 1900 148 20 San Francisco Ozolotepec 1901 148 21 Santa Isabel Cholula 1902 148 30 Soledad de Doblado 1903 149 20 San Francisco Sola 1904 149 21 Santiago Miahuatlán 1905 149 30 Soteapan 1906 150 20 San Francisco Telixtlahuaca 1907 150 21 Huehuetlán el Grande 1908 150 30 Tamalín 1909 151 20 San Francisco Teopan 1910 151 21 Santo Tomás Hueyotlipan 1911 151 30 Tamiahua 1912 152 20 San Francisco Tlapancingo 1913 152 21 Soltepec 1914 152 30 Tampico Alto 1915 153 20 San Gabriel Mixtepec 1916 153 21 Tecali de Herrera 1917 153 30 Tancoco 1918 154 20 San Ildefonso Amatlán 1919 154 21 Tecamachalco 1920 154 30 Tantima 1921 155 20 San Ildefonso Sola 1922 155 21 Tecomatlán 1923 155 30 Tantoyuca 1924 156 20 San Ildefonso Villa Alta 1925 156 21 Tehuacán 1926 156 30 Tatatila 1927 157 20 San Jacinto Amilpas 1928 157 21 Tehuitzingo 1929 157 30 Castillo de Teayo 1930 158 20 San Jacinto Tlacotepec 1931 158 21 Tenampulco 1932 158 30 Tecolutla 1933 159 20 San Jerónimo Coatlán 1934 159 21 Teopantlán 1935 159 30 Tehuipango 1936 160 20 San Jerónimo Silacayoapilla 1937 160 21 Teotlalco 1938 160 30 Álamo Temapache 1939 161 20 San Jerónimo Sosola 1940 161 21 Tepanco de López 1941 161 30 Tempoal 1942 162 20 San Jerónimo Taviche 1943 162 21 Tepango de Rodríguez 1944 162 30 Tenampa 1945 163 20 San Jerónimo Tecóatl 1946 163 21 Tepatlaxco de Hidalgo 1947 163 30 Tenochtitlán 1948 164 20 San Jorge Nuchita 1949 164 21 Tepeaca 1950 164 30 Teocelo 1951 165 20 San José Ayuquila 1952 165 21 Tepemaxalco 1953 165 30 Tepatlaxco 1954 166 20 San José Chiltepec 1955 166 21 Tepeojuma 1956 166 30 Tepetlán 1957 167 20 San José del Peñasco 1958 167 21 Tepetzintla 1959 167 30 Tepetzintla 1960 168 20 San José Estancia Grande 1961 168 21 Tepexco 1962 168 30 Tequila 1963 169 20 San José Independencia 1964 169 21 Tepexi de Rodríguez 1965 169 30 José Azueta 1966 170 20 San José Lachiguiri 1967 170 21 Tepeyahualco 1968 170 30 Texcatepec 1969 171 20 San José Tenango 1970 171 21 Tepeyahualco de Cuauhtémoc 1971 171 30 Texhuacán 1972 172 20 San Juan Achiutla 1973 172 21 Tetela de Ocampo 1974 172 30 Texistepec 1975 173 20 San Juan Atepec 1976 173 21 Teteles de Avila Castillo 1977 173 30 Tezonapa 1978 174 20 Ánimas Trujano 1979 174 21 Teziutlán 1980 174 30 Tierra Blanca 1981 175 20 San Juan Bautista Atatlahuca 1982 175 21 Tianguismanalco 1983 175 30 Tihuatlán 1984 176 20 San Juan Bautista Coixtlahuaca 1985 176 21 Tilapa 1986 176 30 Tlacojalpan 1987 177 20 San Juan Bautista Cuicatlán 1988 177 21 Tlacotepec de Benito Juárez 1989 177 30 Tlacolulan 1990 178 20 San Juan Bautista Guelache 1991 178 21 Tlacuilotepec 1992 178 30 Tlacotalpan 1993 179 20 San Juan Bautista Jayacatlán 1994 179 21 Tlachichuca 1995 179 30 Tlacotepec de Mejía 1996 180 20 San Juan Bautista Lo de Soto 1997 180 21 Tlahuapan 1998 180 30 Tlachichilco 1999 181 20 San Juan Bautista Suchitepec 2000 181 21 Tlaltenango 2001 181 30 Tlalixcoyan 2002 182 20 San Juan Bautista Tlacoatzintepec 2003 182 21 Tlanepantla 2004 182 30 Tlalnelhuayocan 2005 183 20 San Juan Bautista Tlachichilco 2006 183 21 Tlaola 2007 183 30 Tlapacoyan 2008 184 20 San Juan Bautista Tuxtepec 2009 184 21 Tlapacoya 2010 184 30 Tlaquilpa 2011 185 20 San Juan Cacahuatepec 2012 185 21 Tlapanalá 2013 185 30 Tlilapan 2014 186 20 San Juan Cieneguilla 2015 186 21 Tlatlauquitepec 2016 186 30 Tomatlán 2017 187 20 San Juan Coatzóspam 2018 187 21 Tlaxco 2019 187 30 Tonayán 2020 188 20 San Juan Colorado 2021 188 21 Tochimilco 2022 188 30 Totutla 2023 189 20 San Juan Comaltepec 2024 189 21 Tochtepec 2025 189 30 Tuxpan 2026 190 20 San Juan Cotzocón 2027 190 21 Totoltepec de Guerrero 2028 190 30 Tuxtilla 2029 191 20 San Juan Chicomezúchil 2030 191 21 Tulcingo 2031 191 30 Ursulo Galván 2032 192 20 San Juan Chilateca 2033 192 21 Tuzamapan de Galeana 2034 192 30 Vega de Alatorre 2035 193 20 San Juan del Estado 2036 193 21 Tzicatlacoyan 2037 193 30 Veracruz 2038 194 20 San Juan del Río 2039 194 21 Venustiano Carranza 2040 194 30 Villa Aldama 2041 195 20 San Juan Diuxi 2042 195 21 Vicente Guerrero 2043 195 30 Xoxocotla 2044 196 20 San Juan Evangelista Analco 2045 196 21 Xayacatlán de Bravo 2046 196 30 Yanga 2047 197 20 San Juan Guelavía 2048 197 21 Xicotepec 2049 197 30 Yecuatla 2050 198 20 San Juan Guichicovi 2051 198 21 Xicotlán 2052 198 30 Zacualpan 2053 199 20 San Juan Ihualtepec 2054 199 21 Xiutetelco 2055 199 30 Zaragoza 2056 200 20 San Juan Juquila Mixes 2057 200 21 Xochiapulco 2058 200 30 Zentla 2059 201 20 San Juan Juquila Vijanos 2060 201 21 Xochiltepec 2061 201 30 Zongolica 2062 202 20 San Juan Lachao 2063 202 21 Xochitlán de Vicente Suárez 2064 202 30 Zontecomatlán de López y Fuentes 2065 203 20 San Juan Lachigalla 2066 203 21 Xochitlán Todos Santos 2067 203 30 Zozocolco de Hidalgo 2068 204 20 San Juan Lajarcia 2069 204 21 Yaonáhuac 2070 204 30 Agua Dulce 2071 205 20 San Juan Lalana 2072 205 21 Yehualtepec 2073 205 30 El Higo 2074 206 20 San Juan de los Cués 2075 206 21 Zacapala 2076 206 30 Nanchital de Lázaro Cárdenas del Río 2077 207 20 San Juan Mazatlán 2078 207 21 Zacapoaxtla 2079 207 30 Tres Valles 2080 208 20 San Juan Mixtepec -Dto. 08 - 2081 208 21 Zacatlán 2082 208 30 Carlos A. Carrillo 2083 209 20 San Juan Mixtepec -Dto. 26 - 2084 209 21 Zapotitlán 2085 209 30 Tatahuicapan de Juárez 2086 210 20 San Juan Ñumí 2087 210 21 Zapotitlán de Méndez 2088 210 30 Uxpanapa 2089 211 20 San Juan Ozolotepec 2090 211 21 Zaragoza 2091 211 30 San Rafael 2092 212 20 San Juan Petlapa 2093 212 21 Zautla 2094 212 30 Santiago Sochiapan 2095 213 20 San Juan Quiahije 2096 213 21 Zihuateutla 2097 214 20 San Juan Quiotepec 2098 214 21 Zinacatepec 2099 215 20 San Juan Sayultepec 2100 215 21 Zongozotla 2101 216 20 San Juan Tabaá 2102 216 21 Zoquiapan 2103 217 20 San Juan Tamazola 2104 217 21 Zoquitlán 2105 218 20 San Juan Teita 2106 219 20 San Juan Teitipac 2107 220 20 San Juan Tepeuxila 2108 221 20 San Juan Teposcolula 2109 222 20 San Juan Yaeé 2110 223 20 San Juan Yatzona 2111 224 20 San Juan Yucuita 2112 225 20 San Lorenzo 2113 226 20 San Lorenzo Albarradas 2114 227 20 San Lorenzo Cacaotepec 2115 228 20 San Lorenzo Cuaunecuiltitla 2116 229 20 San Lorenzo Texmelúcan 2117 230 20 San Lorenzo Victoria 2118 231 20 San Lucas Camotlán 2119 232 20 San Lucas Ojitlán 2120 233 20 San Lucas Quiaviní 2121 234 20 San Lucas Zoquiápam 2122 235 20 San Luis Amatlán 2123 236 20 San Marcial Ozolotepec 2124 237 20 San Marcos Arteaga 2125 238 20 San Martín de los Cansecos 2126 239 20 San Martín Huamelúlpam 2127 240 20 San Martín Itunyoso 2128 241 20 San Martín Lachilá 2129 242 20 San Martín Peras 2130 243 20 San Martín Tilcajete 2131 244 20 San Martín Toxpalan 2132 245 20 San Martín Zacatepec 2133 246 20 San Mateo Cajonos 2134 247 20 Capulálpam de Méndez 2135 248 20 San Mateo del Mar 2136 249 20 San Mateo Yoloxochitlán 2137 250 20 San Mateo Etlatongo 2138 251 20 San Mateo Nejápam 2139 252 20 San Mateo Peñasco 2140 253 20 San Mateo Piñas 2141 254 20 San Mateo Río Hondo 2142 255 20 San Mateo Sindihui 2143 256 20 San Mateo Tlapiltepec 2144 257 20 San Melchor Betaza 2145 258 20 San Miguel Achiutla 2146 259 20 San Miguel Ahuehuetitlán 2147 260 20 San Miguel Aloápam 2148 261 20 San Miguel Amatitlán 2149 262 20 San Miguel Amatlán 2150 263 20 San Miguel Coatlán 2151 264 20 San Miguel Chicahua 2152 265 20 San Miguel Chimalapa 2153 266 20 San Miguel del Puerto 2154 267 20 San Miguel del Río 2155 268 20 San Miguel Ejutla 2156 269 20 San Miguel el Grande 2157 270 20 San Miguel Huautla 2158 271 20 San Miguel Mixtepec 2159 272 20 San Miguel Panixtlahuaca 2160 273 20 San Miguel Peras 2161 274 20 San Miguel Piedras 2162 275 20 San Miguel Quetzaltepec 2163 276 20 San Miguel Santa Flor 2164 277 20 Villa Sola de Vega 2165 278 20 San Miguel Soyaltepec 2166 279 20 San Miguel Suchixtepec 2167 280 20 Villa Talea de Castro 2168 281 20 San Miguel Tecomatlán 2169 282 20 San Miguel Tenango 2170 283 20 San Miguel Tequixtepec 2171 284 20 San Miguel Tilquiápam 2172 285 20 San Miguel Tlacamama 2173 286 20 San Miguel Tlacotepec 2174 287 20 San Miguel Tulancingo 2175 288 20 San Miguel Yotao 2176 289 20 San Nicolás 2177 290 20 San Nicolás Hidalgo 2178 291 20 San Pablo Coatlán 2179 292 20 San Pablo Cuatro Venados 2180 293 20 San Pablo Etla 2181 294 20 San Pablo Huitzo 2182 295 20 San Pablo Huixtepec 2183 296 20 San Pablo Macuiltianguis 2184 297 20 San Pablo Tijaltepec 2185 298 20 San Pablo Villa de Mitla 2186 299 20 San Pablo Yaganiza 2187 300 20 San Pedro Amuzgos 2188 301 20 San Pedro Apóstol 2189 302 20 San Pedro Atoyac 2190 303 20 San Pedro Cajonos 2191 304 20 San Pedro Coxcaltepec Cántaros 2192 305 20 San Pedro Comitancillo 2193 306 20 San Pedro el Alto 2194 307 20 San Pedro Huamelula 2195 308 20 San Pedro Huilotepec 2196 309 20 San Pedro Ixcatlán 2197 310 20 San Pedro Ixtlahuaca 2198 311 20 San Pedro Jaltepetongo 2199 312 20 San Pedro Jicayán 2200 313 20 San Pedro Jocotipac 2201 314 20 San Pedro Juchatengo 2202 315 20 San Pedro Mártir 2203 316 20 San Pedro Mártir Quiechapa 2204 317 20 San Pedro Mártir Yucuxaco 2205 318 20 San Pedro Mixtepec -Dto. 22 - 2206 319 20 San Pedro Mixtepec -Dto. 26 - 2207 320 20 San Pedro Molinos 2208 321 20 San Pedro Nopala 2209 322 20 San Pedro Ocopetatillo 2210 323 20 San Pedro Ocotepec 2211 324 20 San Pedro Pochutla 2212 325 20 San Pedro Quiatoni 2213 326 20 San Pedro Sochiápam 2214 327 20 San Pedro Tapanatepec 2215 328 20 San Pedro Taviche 2216 329 20 San Pedro Teozacoalco 2217 330 20 San Pedro Teutila 2218 331 20 San Pedro Tidaá 2219 332 20 San Pedro Topiltepec 2220 333 20 San Pedro Totolápam 2221 334 20 Villa de Tututepec de Melchor Ocampo 2222 335 20 San Pedro Yaneri 2223 336 20 San Pedro Yólox 2224 337 20 San Pedro y San Pablo Ayutla 2225 338 20 Villa de Etla 2226 339 20 San Pedro y San Pablo Teposcolula 2227 340 20 San Pedro y San Pablo Tequixtepec 2228 341 20 San Pedro Yucunama 2229 342 20 San Raymundo Jalpan 2230 343 20 San Sebastián Abasolo 2231 344 20 San Sebastián Coatlán 2232 345 20 San Sebastián Ixcapa 2233 346 20 San Sebastián Nicananduta 2234 347 20 San Sebastián Río Hondo 2235 348 20 San Sebastián Tecomaxtlahuaca 2236 349 20 San Sebastián Teitipac 2237 350 20 San Sebastián Tutla 2238 351 20 San Simón Almolongas 2239 352 20 San Simón Zahuatlán 2240 353 20 Santa Ana 2241 354 20 Santa Ana Ateixtlahuaca 2242 355 20 Santa Ana Cuauhtémoc 2243 356 20 Santa Ana del Valle 2244 357 20 Santa Ana Tavela 2245 358 20 Santa Ana Tlapacoyan 2246 359 20 Santa Ana Yareni 2247 360 20 Santa Ana Zegache 2248 361 20 Santa Catalina Quierí 2249 362 20 Santa Catarina Cuixtla 2250 363 20 Santa Catarina Ixtepeji 2251 364 20 Santa Catarina Juquila 2252 365 20 Santa Catarina Lachatao 2253 366 20 Santa Catarina Loxicha 2254 367 20 Santa Catarina Mechoacán 2255 368 20 Santa Catarina Minas 2256 369 20 Santa Catarina Quiané 2257 370 20 Santa Catarina Tayata 2258 371 20 Santa Catarina Ticuá 2259 372 20 Santa Catarina Yosonotú 2260 373 20 Santa Catarina Zapoquila 2261 374 20 Santa Cruz Acatepec 2262 375 20 Santa Cruz Amilpas 2263 376 20 Santa Cruz de Bravo 2264 377 20 Santa Cruz Itundujia 2265 378 20 Santa Cruz Mixtepec 2266 379 20 Santa Cruz Nundaco 2267 380 20 Santa Cruz Papalutla 2268 381 20 Santa Cruz Tacache de Mina 2269 382 20 Santa Cruz Tacahua 2270 383 20 Santa Cruz Tayata 2271 384 20 Santa Cruz Xitla 2272 385 20 Santa Cruz Xoxocotlán 2273 386 20 Santa Cruz Zenzontepec 2274 387 20 Santa Gertrudis 2275 388 20 Santa Inés del Monte 2276 389 20 Santa Inés Yatzeche 2277 390 20 Santa Lucía del Camino 2278 391 20 Santa Lucía Miahuatlán 2279 392 20 Santa Lucía Monteverde 2280 393 20 Santa Lucía Ocotlán 2281 394 20 Santa María Alotepec 2282 395 20 Santa María Apazco 2283 396 20 Santa María la Asunción 2284 397 20 Heroica Ciudad de Tlaxiaco 2285 398 20 Ayoquezco de Aldama 2286 399 20 Santa María Atzompa 2287 400 20 Santa María Camotlán 2288 401 20 Santa María Colotepec 2289 402 20 Santa María Cortijo 2290 403 20 Santa María Coyotepec 2291 404 20 Santa María Chachoápam 2292 405 20 Villa de Chilapa de Díaz 2293 406 20 Santa María Chilchotla 2294 407 20 Santa María Chimalapa 2295 408 20 Santa María del Rosario 2296 409 20 Santa María del Tule 2297 410 20 Santa María Ecatepec 2298 411 20 Santa María Guelacé 2299 412 20 Santa María Guienagati 2300 413 20 Santa María Huatulco 2301 414 20 Santa María Huazolotitlán 2302 415 20 Santa María Ipalapa 2303 416 20 Santa María Ixcatlán 2304 417 20 Santa María Jacatepec 2305 418 20 Santa María Jalapa del Marqués 2306 419 20 Santa María Jaltianguis 2307 420 20 Santa María Lachixío 2308 421 20 Santa María Mixtequilla 2309 422 20 Santa María Nativitas 2310 423 20 Santa María Nduayaco 2311 424 20 Santa María Ozolotepec 2312 425 20 Santa María Pápalo 2313 426 20 Santa María Peñoles 2314 427 20 Santa María Petapa 2315 428 20 Santa María Quiegolani 2316 429 20 Santa María Sola 2317 430 20 Santa María Tataltepec 2318 431 20 Santa María Tecomavaca 2319 432 20 Santa María Temaxcalapa 2320 433 20 Santa María Temaxcaltepec 2321 434 20 Santa María Teopoxco 2322 435 20 Santa María Tepantlali 2323 436 20 Santa María Texcatitlán 2324 437 20 Santa María Tlahuitoltepec 2325 438 20 Santa María Tlalixtac 2326 439 20 Santa María Tonameca 2327 440 20 Santa María Totolapilla 2328 441 20 Santa María Xadani 2329 442 20 Santa María Yalina 2330 443 20 Santa María Yavesía 2331 444 20 Santa María Yolotepec 2332 445 20 Santa María Yosoyúa 2333 446 20 Santa María Yucuhiti 2334 447 20 Santa María Zacatepec 2335 448 20 Santa María Zaniza 2336 449 20 Santa María Zoquitlán 2337 450 20 Santiago Amoltepec 2338 451 20 Santiago Apoala 2339 452 20 Santiago Apóstol 2340 453 20 Santiago Astata 2341 454 20 Santiago Atitlán 2342 455 20 Santiago Ayuquililla 2343 456 20 Santiago Cacaloxtepec 2344 457 20 Santiago Camotlán 2345 458 20 Santiago Comaltepec 2346 459 20 Santiago Chazumba 2347 460 20 Santiago Choápam 2348 461 20 Santiago del Río 2349 462 20 Santiago Huajolotitlán 2350 463 20 Santiago Huauclilla 2351 464 20 Santiago Ihuitlán Plumas 2352 465 20 Santiago Ixcuintepec 2353 466 20 Santiago Ixtayutla 2354 467 20 Santiago Jamiltepec 2355 468 20 Santiago Jocotepec 2356 469 20 Santiago Juxtlahuaca 2357 470 20 Santiago Lachiguiri 2358 471 20 Santiago Lalopa 2359 472 20 Santiago Laollaga 2360 473 20 Santiago Laxopa 2361 474 20 Santiago Llano Grande 2362 475 20 Santiago Matatlán 2363 476 20 Santiago Miltepec 2364 477 20 Santiago Minas 2365 478 20 Santiago Nacaltepec 2366 479 20 Santiago Nejapilla 2367 480 20 Santiago Nundiche 2368 481 20 Santiago Nuyoó 2369 482 20 Santiago Pinotepa Nacional 2370 483 20 Santiago Suchilquitongo 2371 484 20 Santiago Tamazola 2372 485 20 Santiago Tapextla 2373 486 20 Villa Tejúpam de la Unión 2374 487 20 Santiago Tenango 2375 488 20 Santiago Tepetlapa 2376 489 20 Santiago Tetepec 2377 490 20 Santiago Texcalcingo 2378 491 20 Santiago Textitlán 2379 492 20 Santiago Tilantongo 2380 493 20 Santiago Tillo 2381 494 20 Santiago Tlazoyaltepec 2382 495 20 Santiago Xanica 2383 496 20 Santiago Xiacuí 2384 497 20 Santiago Yaitepec 2385 498 20 Santiago Yaveo 2386 499 20 Santiago Yolomécatl 2387 500 20 Santiago Yosondúa 2388 501 20 Santiago Yucuyachi 2389 502 20 Santiago Zacatepec 2390 503 20 Santiago Zoochila 2391 504 20 Nuevo Zoquiápam 2392 505 20 Santo Domingo Ingenio 2393 506 20 Santo Domingo Albarradas 2394 507 20 Santo Domingo Armenta 2395 508 20 Santo Domingo Chihuitán 2396 509 20 Santo Domingo de Morelos 2397 510 20 Santo Domingo Ixcatlán 2398 511 20 Santo Domingo Nuxaá 2399 512 20 Santo Domingo Ozolotepec 2400 513 20 Santo Domingo Petapa 2401 514 20 Santo Domingo Roayaga 2402 515 20 Santo Domingo Tehuantepec 2403 516 20 Santo Domingo Teojomulco 2404 517 20 Santo Domingo Tepuxtepec 2405 518 20 Santo Domingo Tlatayápam 2406 519 20 Santo Domingo Tomaltepec 2407 520 20 Santo Domingo Tonalá 2408 521 20 Santo Domingo Tonaltepec 2409 522 20 Santo Domingo Xagacía 2410 523 20 Santo Domingo Yanhuitlán 2411 524 20 Santo Domingo Yodohino 2412 525 20 Santo Domingo Zanatepec 2413 526 20 Santos Reyes Nopala 2414 527 20 Santos Reyes Pápalo 2415 528 20 Santos Reyes Tepejillo 2416 529 20 Santos Reyes Yucuná 2417 530 20 Santo Tomás Jalieza 2418 531 20 Santo Tomás Mazaltepec 2419 532 20 Santo Tomás Ocotepec 2420 533 20 Santo Tomás Tamazulapan 2421 534 20 San Vicente Coatlán 2422 535 20 San Vicente Lachixío 2423 536 20 San Vicente Nuñú 2424 537 20 Silacayoápam 2425 538 20 Sitio de Xitlapehua 2426 539 20 Soledad Etla 2427 540 20 Villa de Tamazulápam del Progreso 2428 541 20 Tanetze de Zaragoza 2429 542 20 Taniche 2430 543 20 Tataltepec de Valdés 2431 544 20 Teococuilco de Marcos Pérez 2432 545 20 Teotitlán de Flores Magón 2433 546 20 Teotitlán del Valle 2434 547 20 Teotongo 2435 548 20 Tepelmeme Villa de Morelos 2436 549 20 Tezoatlán de Segura y Luna 2437 550 20 San Jerónimo Tlacochahuaya 2438 551 20 Tlacolula de Matamoros 2439 552 20 Tlacotepec Plumas 2440 553 20 Tlalixtac de Cabrera 2441 554 20 Totontepec Villa de Morelos 2442 555 20 Trinidad Zaachila 2443 556 20 La Trinidad Vista Hermosa 2444 557 20 Unión Hidalgo 2445 558 20 Valerio Trujano 2446 559 20 San Juan Bautista Valle Nacional 2447 560 20 Villa Díaz Ordaz 2448 561 20 Yaxe 2449 562 20 Magdalena Yodocono de Porfirio Díaz 2450 563 20 Yogana 2451 564 20 Yutanduchi de Guerrero 2452 565 20 Villa de Zaachila 2453 566 20 San Mateo Yucutindoo 2454 567 20 Zapotitlán Lagunas 2455 568 20 Zapotitlán Palmas 2456 569 20 Santa Inés de Zaragoza 2457 570 20 Zimatlán de Álvarez \. -- -- Name: spmx_counties_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.spmx_counties_id_seq', 2457, true); -- -- Data for Name: spmx_states; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.spmx_states (id, name) FROM stdin; 1 Aguascalientes 2 Baja California 3 Baja California Sur 4 Campeche 5 Coahuila de Zaragoza 6 Colima 7 Chiapas 8 Chihuahua 9 Distrito Federal 10 Durango 11 Guanajuato 12 Guerrero 13 Hidalgo 14 Jalisco 15 México 16 Michoacán de Ocampo 17 Morelos 18 Nayarit 19 Nuevo León 20 Oaxaca 21 Puebla 22 Querétaro 23 Quintana Roo 24 San Luis Potosí 25 Sinaloa 26 Sonora 27 Tabasco 28 Tamaulipas 29 Tlaxcala 30 Veracruz de Ignacio de la Llave 31 Yucatán 32 Zacatecas \. -- -- Name: spmx_states_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.spmx_states_id_seq', 1, false); -- -- Data for Name: storers; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.storers (id, user_id, warehouse_id, name, last_name, status, created_at, updated_at) FROM stdin; \. -- -- Name: storers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.storers_id_seq', 1, false); -- -- Data for Name: suppliers; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.suppliers (id, nick_name, phone, email, notes, contact_id, status, created_at, updated_at) FROM stdin; 1 CLOE (335) 000-9292 blancam.cloe@gmail.com 1 1 2019-02-02 01:46:06.591315 2019-02-02 01:46:06.591315 2 ROPA (667) 777-7777 SSD@HOTMAIL.COM \N 1 2019-02-11 17:37:05.340733 2019-02-11 17:37:05.340733 3 NIHIO (159) 510-5518 INFO@NAHIO.COM 4 1 2020-08-15 23:43:38.778004 2020-08-15 23:43:38.778004 4 RAPUNZEL (332) 531-8213 SAMANTHA_URCISICHI@HOTMAIL.COM 5 1 2020-09-19 00:14:52.653938 2020-09-19 00:14:52.653938 5 RAPUNZEL (333) 333-3333 RAPUNZEL@GMAIL.COM \N 0 2020-09-19 00:15:45.253214 2020-09-19 00:15:53.677935 \. -- -- Name: suppliers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.suppliers_id_seq', 5, true); -- -- Data for Name: taggings; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.taggings (id, tag_id, taggable_id, taggable_type, tagger_id, tagger_type, context, created_at) FROM stdin; \. -- -- Name: taggings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.taggings_id_seq', 1, false); -- -- Data for Name: tags; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.tags (id, name, taggings_count) FROM stdin; \. -- -- Name: tags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.tags_id_seq', 1, false); -- -- Data for Name: transfer_details; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.transfer_details (id, transfer_id, product_id, quantity, status, created_at, updated_at, adjustment, has_looses, has_surplus) FROM stdin; 1 1 6 8.00 1 2019-02-07 02:39:05.177971 2019-02-07 02:39:05.177971 8 0 0 2 2 254 1.00 1 2019-02-12 00:17:30.822929 2019-02-12 00:17:30.822929 1 0 0 3 2 13 1.00 1 2019-02-12 00:17:30.825325 2019-02-12 00:17:30.825325 1 0 0 4 2 156 1.00 1 2019-02-12 00:17:30.827035 2019-02-12 00:17:30.827035 1 0 0 5 2 19 1.00 1 2019-02-12 00:17:30.828773 2019-02-12 00:17:30.828773 1 0 0 6 3 475 6.00 1 2019-02-12 01:59:20.465372 2019-02-12 01:59:20.465372 6 0 0 7 4 257 6.00 1 2019-02-12 02:01:00.439006 2019-02-12 02:01:00.439006 6 0 0 8 5 254 5.00 1 2019-02-12 17:44:09.706644 2019-02-12 17:44:09.706644 5 0 0 9 5 13 5.00 1 2019-02-12 17:44:09.709616 2019-02-12 17:44:09.709616 5 0 0 10 5 156 5.00 1 2019-02-12 17:44:09.711665 2019-02-12 17:44:09.711665 5 0 0 11 5 19 5.00 1 2019-02-12 17:44:09.713948 2019-02-12 17:44:09.713948 5 0 0 12 6 142 6.00 1 2019-02-12 18:57:18.656537 2019-02-12 18:57:18.656537 6 0 0 13 6 144 6.00 1 2019-02-12 18:57:18.659313 2019-02-12 18:57:18.659313 6 0 0 14 6 138 6.00 1 2019-02-12 18:57:18.661722 2019-02-12 18:57:18.661722 6 0 0 15 7 476 21.00 1 2019-02-12 19:38:24.041359 2019-02-12 19:38:24.041359 21 0 0 16 8 199 5.00 1 2019-02-18 19:01:09.854614 2019-02-18 19:01:09.854614 5 0 0 17 9 202 6.00 1 2019-02-19 01:25:09.63395 2019-02-19 01:25:09.63395 6 0 0 18 10 151 5.00 1 2019-02-28 18:25:53.211676 2019-02-28 18:25:53.211676 5 0 0 19 11 494 16.00 1 2019-03-02 17:37:17.583876 2019-03-02 17:37:17.583876 16 0 0 20 11 182 5.00 1 2019-03-02 17:37:17.586996 2019-03-02 17:37:17.586996 5 0 0 21 11 18 6.00 1 2019-03-02 17:37:17.58939 2019-03-02 17:37:17.58939 6 0 0 22 11 207 5.00 1 2019-03-02 17:37:17.591858 2019-03-02 17:37:17.591858 5 0 0 23 11 475 6.00 1 2019-03-02 17:37:17.594159 2019-03-02 17:37:17.594159 6 0 0 24 11 72 4.00 1 2019-03-02 17:37:17.596467 2019-03-02 17:37:17.596467 4 0 0 25 11 155 6.00 1 2019-03-02 17:37:17.598413 2019-03-02 17:37:17.598413 6 0 0 26 11 253 6.00 1 2019-03-02 17:37:17.599873 2019-03-02 17:37:17.599873 6 0 0 27 11 7 4.00 1 2019-03-02 17:37:17.601345 2019-03-02 17:37:17.601345 4 0 0 28 11 181 6.00 1 2019-03-02 17:37:17.602804 2019-03-02 17:37:17.602804 6 0 0 29 12 232 2.00 1 2019-03-02 17:39:59.716273 2019-03-02 17:39:59.716273 2 0 0 30 13 276 2.00 1 2019-03-02 18:24:07.174584 2019-03-02 18:24:07.174584 2 0 0 32 15 155 6.00 1 2019-03-04 17:12:04.487434 2019-03-04 17:12:04.487434 6 0 0 33 16 434 1.00 1 2019-03-05 01:36:45.806518 2019-03-05 01:36:45.806518 1 0 0 34 17 162 1.00 1 2019-03-06 19:06:00.782114 2019-03-06 19:06:00.782114 1 0 0 35 18 485 1.00 1 2019-03-15 20:49:24.765823 2019-03-15 20:49:24.765823 1 0 0 36 19 485 1.00 1 2019-03-15 20:54:44.181367 2019-03-15 20:54:44.181367 1 0 0 37 20 475 1.00 1 2019-03-15 20:56:41.372841 2019-03-15 20:56:41.372841 1 0 0 31 14 88 1.00 1 2019-03-02 18:37:41.370961 2019-03-20 21:37:51.201955 0 1 0 38 21 499 6.00 1 2019-03-21 22:34:17.905629 2019-03-21 22:34:17.905629 6 0 0 39 22 140 6.00 1 2019-03-21 23:01:10.784444 2019-03-21 23:01:10.784444 6 0 0 40 23 92 2.00 1 2019-03-23 17:21:23.863893 2019-03-23 17:21:23.863893 2 0 0 41 23 145 2.00 1 2019-03-23 17:21:23.86706 2019-03-23 17:21:23.86706 2 0 0 42 23 201 5.00 1 2019-03-23 17:21:23.869482 2019-03-23 17:21:23.869482 5 0 0 43 23 194 2.00 1 2019-03-23 17:21:23.871762 2019-03-23 17:21:23.871762 2 0 0 44 24 143 5.00 1 2019-03-23 17:42:17.185507 2019-03-23 17:42:17.185507 5 0 0 45 25 189 4.00 1 2019-03-23 22:36:38.144129 2019-03-23 22:36:38.144129 4 0 0 46 25 187 3.00 1 2019-03-23 22:36:38.159728 2019-03-23 22:36:38.159728 3 0 0 47 26 517 1.00 1 2019-03-25 17:54:33.578347 2019-03-25 17:54:33.578347 1 0 0 48 27 330 2.00 1 2019-03-26 22:51:58.922565 2019-03-26 22:51:58.922565 2 0 0 49 27 327 2.00 1 2019-03-26 22:51:58.92556 2019-03-26 22:51:58.92556 2 0 0 50 27 322 2.00 1 2019-03-26 22:51:58.927695 2019-03-26 22:51:58.927695 2 0 0 51 27 427 3.00 1 2019-03-26 22:51:58.929721 2019-03-26 22:51:58.929721 3 0 0 52 28 469 1.00 1 2019-03-28 23:11:27.289891 2019-03-28 23:11:27.289891 1 0 0 53 29 140 1.00 1 2019-04-06 22:53:18.767152 2019-04-06 22:53:18.767152 1 0 0 54 29 499 1.00 1 2019-04-06 22:53:18.769318 2019-04-06 22:53:18.769318 1 0 0 55 30 494 1.00 1 2019-04-13 17:02:52.711262 2019-04-13 17:02:52.711262 1 0 0 56 31 205 11.00 1 2019-04-29 22:11:17.363401 2019-04-29 22:11:17.363401 11 0 0 57 31 219 4.00 1 2019-04-29 22:11:17.366425 2019-04-29 22:11:17.366425 4 0 0 58 31 209 6.00 1 2019-04-29 22:11:17.368396 2019-04-29 22:11:17.368396 6 0 0 59 31 508 6.00 1 2019-04-29 22:11:17.370835 2019-04-29 22:11:17.370835 6 0 0 60 31 146 5.00 1 2019-04-29 22:11:17.374378 2019-04-29 22:11:17.374378 5 0 0 61 31 147 5.00 1 2019-04-29 22:11:17.377051 2019-04-29 22:11:17.377051 5 0 0 62 32 506 6.00 1 2019-04-29 22:18:51.721341 2019-04-29 22:18:51.721341 6 0 0 63 33 142 5.00 1 2019-04-29 22:32:08.082522 2019-04-29 22:32:08.082522 5 0 0 64 33 525 6.00 1 2019-04-29 22:32:08.084311 2019-04-29 22:32:08.084311 6 0 0 65 34 434 4.00 1 2019-05-02 21:12:21.640377 2019-05-02 21:12:21.640377 4 0 0 66 35 434 1.00 1 2019-05-02 21:13:40.824355 2019-05-02 21:13:40.824355 1 0 0 67 36 494 2.00 1 2019-05-02 21:43:02.434289 2019-05-02 21:43:02.434289 2 0 0 68 37 199 9.00 1 2019-05-04 17:20:08.568091 2019-05-04 17:20:08.568091 9 0 0 69 38 549 6.00 1 2019-05-04 19:21:31.060196 2019-05-04 19:21:31.060196 6 0 0 70 38 551 6.00 1 2019-05-04 19:21:31.062067 2019-05-04 19:21:31.062067 6 0 0 71 38 555 3.00 1 2019-05-04 19:21:31.063527 2019-05-04 19:21:31.063527 3 0 0 72 38 560 6.00 1 2019-05-04 19:21:31.065059 2019-05-04 19:21:31.065059 6 0 0 73 38 565 6.00 1 2019-05-04 19:21:31.066426 2019-05-04 19:21:31.066426 6 0 0 74 38 559 6.00 1 2019-05-04 19:21:31.068111 2019-05-04 19:21:31.068111 6 0 0 75 39 549 1.00 1 2019-05-04 20:05:56.586693 2019-05-04 20:05:56.586693 1 0 0 76 40 558 6.00 1 2019-05-04 21:39:07.147757 2019-05-04 21:39:07.147757 6 0 0 77 41 143 6.00 1 2019-05-04 22:42:14.16252 2019-05-04 22:42:14.16252 6 0 0 78 42 289 2.00 1 2019-05-05 17:18:21.124445 2019-05-05 17:18:21.124445 2 0 0 79 42 299 3.00 1 2019-05-05 17:18:21.126614 2019-05-05 17:18:21.126614 3 0 0 80 42 287 2.00 1 2019-05-05 17:18:21.128215 2019-05-05 17:18:21.128215 2 0 0 81 43 318 1.00 1 2019-05-06 16:50:34.282146 2019-05-06 16:50:34.282146 1 0 0 82 44 340 1.00 1 2019-05-08 00:38:46.310844 2019-05-08 00:38:46.310844 1 0 0 83 45 469 1.00 1 2019-05-08 17:12:36.281968 2019-05-08 17:12:36.281968 1 0 0 84 46 516 1.00 1 2019-05-15 19:42:16.246239 2019-05-15 19:42:16.246239 1 0 0 85 47 156 1.00 1 2019-05-15 21:45:55.127234 2019-05-15 21:45:55.127234 1 0 0 86 47 499 1.00 1 2019-05-15 21:45:55.130319 2019-05-15 21:45:55.130319 1 0 0 87 48 573 1.00 1 2019-05-17 18:14:48.482171 2019-05-17 18:14:48.482171 1 0 0 88 49 567 6.00 1 2019-05-17 22:11:03.396448 2019-05-17 22:11:03.396448 6 0 0 89 49 568 6.00 1 2019-05-17 22:11:03.400188 2019-05-17 22:11:03.400188 6 0 0 90 49 569 12.00 1 2019-05-17 22:11:03.40361 2019-05-17 22:11:03.40361 12 0 0 91 49 572 6.00 1 2019-05-17 22:11:03.406483 2019-05-17 22:11:03.406483 6 0 0 92 49 575 6.00 1 2019-05-17 22:11:03.409215 2019-05-17 22:11:03.409215 6 0 0 93 49 581 6.00 1 2019-05-17 22:11:03.412136 2019-05-17 22:11:03.412136 6 0 0 94 49 578 6.00 1 2019-05-17 22:11:03.414833 2019-05-17 22:11:03.414833 6 0 0 95 50 519 5.00 1 2019-05-17 22:27:08.441615 2019-05-17 22:27:08.441615 5 0 0 96 51 576 6.00 1 2019-05-20 23:45:52.741446 2019-05-20 23:45:52.741446 6 0 0 97 51 206 4.00 1 2019-05-20 23:45:52.7458 2019-05-20 23:45:52.7458 4 0 0 98 52 585 6.00 1 2019-05-23 20:12:17.632143 2019-05-23 20:12:17.632143 6 0 0 99 52 586 6.00 1 2019-05-23 20:12:17.634598 2019-05-23 20:12:17.634598 6 0 0 100 52 587 6.00 1 2019-05-23 20:12:17.636496 2019-05-23 20:12:17.636496 6 0 0 101 53 551 5.00 1 2019-05-23 20:15:52.517894 2019-05-23 20:15:52.517894 5 0 0 102 54 284 5.00 1 2019-06-01 21:13:34.105382 2019-06-01 21:13:34.105382 5 0 0 103 55 247 6.00 1 2019-06-04 00:10:52.92208 2019-06-04 00:10:52.92208 6 0 0 104 56 565 6.00 1 2019-06-04 00:58:53.316863 2019-06-04 00:58:53.316863 6 0 0 105 56 555 2.00 1 2019-06-04 00:58:53.318718 2019-06-04 00:58:53.318718 2 0 0 106 56 254 2.00 1 2019-06-04 00:58:53.320336 2019-06-04 00:58:53.320336 2 0 0 107 56 395 6.00 1 2019-06-04 00:58:53.322004 2019-06-04 00:58:53.322004 6 0 0 108 57 199 1.00 1 2019-06-04 22:20:31.988101 2019-06-04 22:20:31.988101 1 0 0 109 58 435 3.00 1 2019-06-10 20:36:17.745454 2019-06-10 20:36:17.745454 3 0 0 110 59 152 4.00 1 2019-06-10 20:39:53.394677 2019-06-10 20:39:53.394677 4 0 0 111 60 512 6.00 1 2019-06-20 18:05:35.80901 2019-06-20 18:05:35.80901 6 0 0 112 61 17 1.00 1 2019-06-20 21:46:17.013866 2019-06-20 21:46:17.013866 1 0 0 113 62 236 2.00 1 2019-06-20 21:57:37.993564 2019-06-20 21:57:37.993564 2 0 0 114 63 536 2.00 1 2019-06-24 22:05:55.195766 2019-06-24 22:05:55.195766 2 0 0 115 64 187 3.00 1 2019-06-28 23:18:56.685921 2019-06-28 23:18:56.685921 3 0 0 116 64 199 2.00 1 2019-06-28 23:18:56.688073 2019-06-28 23:18:56.688073 2 0 0 117 65 574 4.00 1 2019-07-13 17:51:58.673302 2019-07-13 17:51:58.673302 4 0 0 118 65 160 2.00 1 2019-07-13 17:51:58.67693 2019-07-13 17:51:58.67693 2 0 0 119 66 516 3.00 1 2019-07-13 18:01:26.446318 2019-07-13 18:01:26.446318 3 0 0 120 66 419 5.00 1 2019-07-13 18:01:26.448706 2019-07-13 18:01:26.448706 5 0 0 121 66 581 5.00 1 2019-07-13 18:01:26.450716 2019-07-13 18:01:26.450716 5 0 0 122 66 576 4.00 1 2019-07-13 18:01:26.452666 2019-07-13 18:01:26.452666 4 0 0 123 67 398 3.00 1 2019-07-13 18:03:05.42686 2019-07-13 18:03:05.42686 3 0 0 124 67 7 4.00 1 2019-07-13 18:03:05.428472 2019-07-13 18:03:05.428472 4 0 0 125 68 8 6.00 1 2019-07-13 18:11:33.949659 2019-07-13 18:11:33.949659 6 0 0 126 68 15 4.00 1 2019-07-13 18:11:33.95234 2019-07-13 18:11:33.95234 4 0 0 127 69 181 2.00 1 2019-07-13 18:14:34.498517 2019-07-13 18:14:34.498517 2 0 0 128 70 185 2.00 1 2019-07-13 18:24:17.020839 2019-07-13 18:24:17.020839 2 0 0 129 70 239 2.00 1 2019-07-13 18:24:17.022342 2019-07-13 18:24:17.022342 2 0 0 130 71 10 4.00 1 2019-07-13 18:31:35.431632 2019-07-13 18:31:35.431632 4 0 0 131 72 253 3.00 1 2019-07-13 18:45:16.434021 2019-07-13 18:45:16.434021 3 0 0 132 73 323 3.00 1 2019-07-14 00:40:10.164797 2019-07-14 00:40:10.164797 3 0 0 133 73 318 2.00 1 2019-07-14 00:40:10.167016 2019-07-14 00:40:10.167016 2 0 0 134 73 140 2.00 1 2019-07-14 00:40:10.168786 2019-07-14 00:40:10.168786 2 0 0 135 73 277 1.00 1 2019-07-14 00:40:10.171678 2019-07-14 00:40:10.171678 1 0 0 136 73 320 4.00 1 2019-07-14 00:40:10.173956 2019-07-14 00:40:10.173956 4 0 0 137 73 278 2.00 1 2019-07-14 00:40:10.176318 2019-07-14 00:40:10.176318 2 0 0 138 73 329 3.00 1 2019-07-14 00:40:10.178683 2019-07-14 00:40:10.178683 3 0 0 139 73 403 1.00 1 2019-07-14 00:40:10.180976 2019-07-14 00:40:10.180976 1 0 0 140 73 404 3.00 1 2019-07-14 00:40:10.183162 2019-07-14 00:40:10.183162 3 0 0 141 73 92 2.00 1 2019-07-14 00:40:10.185299 2019-07-14 00:40:10.185299 2 0 0 142 73 145 1.00 1 2019-07-14 00:40:10.188296 2019-07-14 00:40:10.188296 1 0 0 143 74 550 4.00 1 2019-07-14 01:19:55.317473 2019-07-14 01:19:55.317473 4 0 0 144 74 548 4.00 1 2019-07-14 01:19:55.320058 2019-07-14 01:19:55.320058 4 0 0 145 74 502 4.00 1 2019-07-14 01:19:55.322406 2019-07-14 01:19:55.322406 4 0 0 146 75 587 3.00 1 2019-07-14 01:28:05.795695 2019-07-14 01:28:05.795695 3 0 0 147 75 517 2.00 1 2019-07-14 01:28:05.798432 2019-07-14 01:28:05.798432 2 0 0 148 75 532 2.00 1 2019-07-14 01:28:05.800699 2019-07-14 01:28:05.800699 2 0 0 149 75 290 2.00 1 2019-07-14 01:28:05.803078 2019-07-14 01:28:05.803078 2 0 0 150 76 567 6.00 1 2019-07-14 01:36:29.220483 2019-07-14 01:36:29.220483 6 0 0 151 77 238 3.00 1 2019-07-14 01:41:43.763046 2019-07-14 01:41:43.763046 3 0 0 152 77 237 3.00 1 2019-07-14 01:41:43.765022 2019-07-14 01:41:43.765022 3 0 0 153 78 219 4.00 1 2019-07-15 23:16:12.459707 2019-07-15 23:16:12.459707 4 0 0 154 78 527 5.00 1 2019-07-15 23:16:12.462892 2019-07-15 23:16:12.462892 5 0 0 155 78 144 6.00 1 2019-07-15 23:16:12.46532 2019-07-15 23:16:12.46532 6 0 0 156 78 206 4.00 1 2019-07-15 23:16:12.467655 2019-07-15 23:16:12.467655 4 0 0 157 78 232 1.00 1 2019-07-15 23:16:12.470209 2019-07-15 23:16:12.470209 1 0 0 158 79 163 2.00 1 2019-07-15 23:21:48.817222 2019-07-15 23:21:48.817222 2 0 0 159 79 178 1.00 1 2019-07-15 23:21:48.818999 2019-07-15 23:21:48.818999 1 0 0 160 79 496 2.00 1 2019-07-15 23:21:48.820486 2019-07-15 23:21:48.820486 2 0 0 161 79 501 5.00 1 2019-07-15 23:21:48.821992 2019-07-15 23:21:48.821992 5 0 0 162 80 600 6.00 1 2019-07-15 23:48:48.394122 2019-07-15 23:48:48.394122 6 0 0 163 80 597 6.00 1 2019-07-15 23:48:48.396477 2019-07-15 23:48:48.396477 6 0 0 164 80 590 6.00 1 2019-07-15 23:48:48.398027 2019-07-15 23:48:48.398027 6 0 0 165 81 295 1.00 1 2019-07-17 00:36:36.621432 2019-07-17 00:36:36.621432 1 0 0 166 82 16 2.00 1 2019-07-18 01:22:52.393574 2019-07-18 01:22:52.393574 2 0 0 167 83 367 1.00 1 2019-07-20 18:02:06.286148 2019-07-20 18:02:06.286148 1 0 0 168 83 343 1.00 1 2019-07-20 18:02:06.288216 2019-07-20 18:02:06.288216 1 0 0 170 84 526 1.00 1 2019-07-24 01:11:03.162923 2019-07-24 01:11:03.162923 1 0 0 171 85 156 1.00 1 2019-07-24 21:39:12.722974 2019-07-24 21:39:12.722974 1 0 0 172 86 152 5.00 1 2019-07-27 23:18:45.475657 2019-07-27 23:18:45.475657 5 0 0 173 87 390 2.00 1 2019-07-27 23:44:45.491763 2019-07-27 23:44:45.491763 2 0 0 174 87 182 1.00 1 2019-07-27 23:44:45.494314 2019-07-27 23:44:45.494314 1 0 0 175 87 392 1.00 1 2019-07-27 23:44:45.496247 2019-07-27 23:44:45.496247 1 0 0 176 87 396 2.00 1 2019-07-27 23:44:45.498317 2019-07-27 23:44:45.498317 2 0 0 177 88 569 1.00 1 2019-07-28 00:58:22.112685 2019-07-28 00:58:22.112685 1 0 0 178 89 600 1.00 1 2019-08-02 01:56:47.134761 2019-08-02 01:56:47.134761 1 0 0 179 90 581 1.00 1 2019-08-03 00:35:54.790911 2019-08-03 00:35:54.790911 1 0 0 180 91 653 1.00 1 2019-08-19 00:08:09.039464 2019-08-19 00:08:09.039464 1 0 0 181 91 652 1.00 1 2019-08-19 00:08:09.043191 2019-08-19 00:08:09.043191 1 0 0 182 92 369 35.00 1 2019-08-19 00:09:56.207422 2019-08-19 00:09:56.207422 35 0 0 183 93 369 42.00 1 2019-08-19 00:11:28.220911 2019-08-19 00:11:28.220911 42 0 0 184 94 369 36.00 1 2019-08-19 00:11:56.759724 2019-08-19 00:11:56.759724 36 0 0 185 95 613 1.00 1 2019-08-19 01:00:27.865621 2019-08-19 01:00:27.865621 1 0 0 186 95 446 1.00 1 2019-08-19 01:00:27.869476 2019-08-19 01:00:27.869476 1 0 0 187 96 662 6.00 1 2019-08-20 22:34:48.61132 2019-08-20 22:34:48.61132 6 0 0 188 96 663 6.00 1 2019-08-20 22:34:48.614028 2019-08-20 22:34:48.614028 6 0 0 189 96 664 6.00 1 2019-08-20 22:34:48.615839 2019-08-20 22:34:48.615839 6 0 0 190 96 665 6.00 1 2019-08-20 22:34:48.617616 2019-08-20 22:34:48.617616 6 0 0 191 97 670 6.00 1 2019-08-22 05:04:06.227469 2019-08-22 05:04:06.227469 6 0 0 192 97 682 1.00 1 2019-08-22 05:04:06.230633 2019-08-22 05:04:06.230633 1 0 0 193 97 672 6.00 1 2019-08-22 05:04:06.232453 2019-08-22 05:04:06.232453 6 0 0 194 98 681 6.00 1 2019-08-22 05:08:30.423687 2019-08-22 05:08:30.423687 6 0 0 195 98 683 1.00 1 2019-08-22 05:08:30.426025 2019-08-22 05:08:30.426025 1 0 0 196 98 664 6.00 1 2019-08-22 05:08:30.427962 2019-08-22 05:08:30.427962 6 0 0 197 98 686 6.00 1 2019-08-22 05:08:30.429814 2019-08-22 05:08:30.429814 6 0 0 198 99 663 6.00 1 2019-08-22 05:17:58.309041 2019-08-22 05:17:58.309041 6 0 0 199 99 662 6.00 1 2019-08-22 05:17:58.311543 2019-08-22 05:17:58.311543 6 0 0 200 99 664 6.00 1 2019-08-22 05:17:58.313866 2019-08-22 05:17:58.313866 6 0 0 201 100 683 6.00 1 2019-08-22 15:19:48.747523 2019-08-22 15:19:48.747523 6 0 0 202 101 670 6.00 1 2019-08-22 15:21:57.069846 2019-08-22 15:21:57.069846 6 0 0 203 102 670 6.00 1 2019-08-22 15:22:26.46733 2019-08-22 15:22:26.46733 6 0 0 204 103 672 6.00 1 2019-08-22 15:24:39.61532 2019-08-22 15:24:39.61532 6 0 0 205 104 672 9.00 1 2019-08-22 15:25:04.68817 2019-08-22 15:25:04.68817 9 0 0 206 105 668 15.00 1 2019-08-22 15:39:20.958093 2019-08-22 15:39:20.958093 15 0 0 207 106 623 12.00 1 2019-08-22 16:35:48.896091 2019-08-22 16:35:48.896091 12 0 0 208 107 623 18.00 1 2019-08-22 16:36:12.014323 2019-08-22 16:36:12.014323 18 0 0 209 108 666 1.00 1 2019-08-24 02:34:31.664503 2019-08-24 02:34:31.664503 1 0 0 210 109 322 2.00 1 2019-08-24 21:09:33.112448 2019-08-24 21:09:33.112448 2 0 0 211 109 154 1.00 1 2019-08-24 21:09:33.114795 2019-08-24 21:09:33.114795 1 0 0 212 109 151 2.00 1 2019-08-24 21:09:33.116333 2019-08-24 21:09:33.116333 2 0 0 213 109 135 2.00 1 2019-08-24 21:09:33.117832 2019-08-24 21:09:33.117832 2 0 0 214 110 154 1.00 1 2019-08-25 00:50:27.516204 2019-08-25 00:50:27.516204 1 0 0 215 111 669 9.00 1 2019-08-25 19:33:50.453402 2019-08-25 19:33:50.453402 9 0 0 216 111 674 6.00 1 2019-08-25 19:33:50.455605 2019-08-25 19:33:50.455605 6 0 0 217 111 675 6.00 1 2019-08-25 19:33:50.457364 2019-08-25 19:33:50.457364 6 0 0 218 111 673 9.00 1 2019-08-25 19:33:50.459084 2019-08-25 19:33:50.459084 9 0 0 219 112 679 6.00 1 2019-08-25 19:43:18.469822 2019-08-25 19:43:18.469822 6 0 0 220 112 681 6.00 1 2019-08-25 19:43:18.47234 2019-08-25 19:43:18.47234 6 0 0 221 112 661 6.00 1 2019-08-25 19:43:18.474808 2019-08-25 19:43:18.474808 6 0 0 222 112 665 6.00 1 2019-08-25 19:43:18.477249 2019-08-25 19:43:18.477249 6 0 0 223 112 687 6.00 1 2019-08-25 19:43:18.47971 2019-08-25 19:43:18.47971 6 0 0 224 112 663 6.00 1 2019-08-25 19:43:18.48186 2019-08-25 19:43:18.48186 6 0 0 225 113 607 5.00 1 2019-08-28 00:20:07.226058 2019-08-28 00:20:07.226058 5 0 0 226 113 628 6.00 1 2019-08-28 00:20:07.227949 2019-08-28 00:20:07.227949 6 0 0 227 114 668 30.00 1 2019-08-28 03:57:44.871147 2019-08-28 03:57:44.871147 30 0 0 228 114 662 6.00 1 2019-08-28 03:57:44.872951 2019-08-28 03:57:44.872951 6 0 0 229 115 664 6.00 1 2019-08-29 14:35:00.502774 2019-08-29 14:35:00.502774 6 0 0 230 116 678 6.00 1 2019-08-29 14:35:30.457634 2019-08-29 14:35:30.457634 6 0 0 231 117 682 6.00 1 2019-08-29 14:37:06.295676 2019-08-29 14:37:06.295676 6 0 0 232 118 680 6.00 1 2019-08-29 14:44:09.479053 2019-08-29 14:44:09.479053 6 0 0 233 119 476 36.00 1 2019-08-29 14:46:28.014758 2019-08-29 14:46:28.014758 36 0 0 234 120 547 1.00 1 2019-08-29 23:47:31.95902 2019-08-29 23:47:31.95902 1 0 0 235 120 265 3.00 1 2019-08-29 23:47:31.961519 2019-08-29 23:47:31.961519 3 0 0 236 120 271 1.00 1 2019-08-29 23:47:31.963283 2019-08-29 23:47:31.963283 1 0 0 237 120 268 2.00 1 2019-08-29 23:47:31.965022 2019-08-29 23:47:31.965022 2 0 0 238 120 270 6.00 1 2019-08-29 23:47:31.96668 2019-08-29 23:47:31.96668 6 0 0 239 120 258 6.00 1 2019-08-29 23:47:31.968081 2019-08-29 23:47:31.968081 6 0 0 240 120 484 12.00 1 2019-08-29 23:47:31.969686 2019-08-29 23:47:31.969686 12 0 0 241 120 273 5.00 1 2019-08-29 23:47:31.971246 2019-08-29 23:47:31.971246 5 0 0 242 120 262 2.00 1 2019-08-29 23:47:31.973011 2019-08-29 23:47:31.973011 2 0 0 243 120 261 1.00 1 2019-08-29 23:47:31.974834 2019-08-29 23:47:31.974834 1 0 0 244 120 264 3.00 1 2019-08-29 23:47:31.976412 2019-08-29 23:47:31.976412 3 0 0 245 120 274 3.00 1 2019-08-29 23:47:31.978172 2019-08-29 23:47:31.978172 3 0 0 246 120 259 2.00 1 2019-08-29 23:47:31.979753 2019-08-29 23:47:31.979753 2 0 0 247 120 269 10.00 1 2019-08-29 23:47:31.981404 2019-08-29 23:47:31.981404 10 0 0 248 121 327 1.00 1 2019-08-30 01:06:03.282501 2019-08-30 01:06:03.282501 1 0 0 249 122 693 6.00 1 2019-08-30 04:52:42.59073 2019-08-30 04:52:42.59073 6 0 0 250 122 694 6.00 1 2019-08-30 04:52:42.593082 2019-08-30 04:52:42.593082 6 0 0 251 122 699 6.00 1 2019-08-30 04:52:42.594867 2019-08-30 04:52:42.594867 6 0 0 252 122 700 6.00 1 2019-08-30 04:52:42.596546 2019-08-30 04:52:42.596546 6 0 0 253 122 696 6.00 1 2019-08-30 04:52:42.598261 2019-08-30 04:52:42.598261 6 0 0 254 122 695 6.00 1 2019-08-30 04:52:42.599885 2019-08-30 04:52:42.599885 6 0 0 255 123 692 6.00 1 2019-08-30 04:54:07.955316 2019-08-30 04:54:07.955316 6 0 0 256 123 691 6.00 1 2019-08-30 04:54:07.956877 2019-08-30 04:54:07.956877 6 0 0 257 124 698 6.00 1 2019-08-30 04:56:43.380091 2019-08-30 04:56:43.380091 6 0 0 258 124 701 6.00 1 2019-08-30 04:56:43.382891 2019-08-30 04:56:43.382891 6 0 0 259 124 702 6.00 1 2019-08-30 04:56:43.385 2019-08-30 04:56:43.385 6 0 0 260 124 697 6.00 1 2019-08-30 04:56:43.387122 2019-08-30 04:56:43.387122 6 0 0 261 125 699 6.00 1 2019-08-31 03:48:48.316835 2019-08-31 03:48:48.316835 6 0 0 262 126 700 6.00 1 2019-08-31 03:50:07.0714 2019-08-31 03:50:07.0714 6 0 0 263 127 677 6.00 1 2019-08-31 03:51:46.464974 2019-08-31 03:51:46.464974 6 0 0 264 128 688 6.00 1 2019-08-31 04:16:57.212017 2019-08-31 04:16:57.212017 6 0 0 265 129 690 6.00 1 2019-08-31 04:58:41.347097 2019-08-31 04:58:41.347097 6 0 0 266 130 664 1.00 1 2019-08-31 20:36:39.390179 2019-08-31 20:36:39.390179 1 0 0 267 131 548 1.00 1 2019-08-31 21:17:42.56384 2019-08-31 21:17:42.56384 1 0 0 268 132 441 1.00 1 2019-09-01 03:16:27.11037 2019-09-01 03:16:27.11037 1 0 0 269 133 662 6.00 1 2019-09-01 17:32:22.296028 2019-09-01 17:32:22.296028 6 0 0 270 134 623 1.00 1 2019-09-02 17:24:46.312715 2019-09-02 17:24:46.312715 1 0 0 271 135 692 6.00 1 2019-09-02 22:01:02.095084 2019-09-02 22:01:02.095084 6 0 0 272 136 600 5.00 1 2019-09-02 22:38:08.712265 2019-09-02 22:38:08.712265 5 0 0 274 138 347 1.00 1 2019-09-03 18:45:21.707296 2019-09-03 18:45:21.707296 1 0 0 275 138 366 1.00 1 2019-09-03 18:45:21.709513 2019-09-03 18:45:21.709513 1 0 0 276 138 350 1.00 1 2019-09-03 18:45:21.711477 2019-09-03 18:45:21.711477 1 0 0 277 138 351 1.00 1 2019-09-03 18:45:21.713447 2019-09-03 18:45:21.713447 1 0 0 278 138 353 1.00 1 2019-09-03 18:45:21.715407 2019-09-03 18:45:21.715407 1 0 0 279 138 365 1.00 1 2019-09-03 18:45:21.717421 2019-09-03 18:45:21.717421 1 0 0 280 138 355 1.00 1 2019-09-03 18:45:21.719488 2019-09-03 18:45:21.719488 1 0 0 281 138 359 1.00 1 2019-09-03 18:45:21.721499 2019-09-03 18:45:21.721499 1 0 0 282 138 364 1.00 1 2019-09-03 18:45:21.723418 2019-09-03 18:45:21.723418 1 0 0 283 138 352 2.00 1 2019-09-03 18:45:21.72521 2019-09-03 18:45:21.72521 2 0 0 284 138 348 2.00 1 2019-09-03 18:45:21.727171 2019-09-03 18:45:21.727171 2 0 0 285 139 445 2.00 1 2019-09-03 18:56:24.761356 2019-09-03 18:56:24.761356 2 0 0 286 139 55 1.00 1 2019-09-03 18:56:24.763005 2019-09-03 18:56:24.763005 1 0 0 287 139 473 1.00 1 2019-09-03 18:56:24.764452 2019-09-03 18:56:24.764452 1 0 0 288 139 440 1.00 1 2019-09-03 18:56:24.765917 2019-09-03 18:56:24.765917 1 0 0 289 139 45 1.00 1 2019-09-03 18:56:24.767385 2019-09-03 18:56:24.767385 1 0 0 290 139 53 1.00 1 2019-09-03 18:56:24.768872 2019-09-03 18:56:24.768872 1 0 0 291 139 487 1.00 1 2019-09-03 18:56:24.770321 2019-09-03 18:56:24.770321 1 0 0 292 139 544 1.00 1 2019-09-03 18:56:24.771757 2019-09-03 18:56:24.771757 1 0 0 293 139 545 1.00 1 2019-09-03 18:56:24.773188 2019-09-03 18:56:24.773188 1 0 0 294 139 451 1.00 1 2019-09-03 18:56:24.774618 2019-09-03 18:56:24.774618 1 0 0 295 139 453 1.00 1 2019-09-03 18:56:24.776003 2019-09-03 18:56:24.776003 1 0 0 296 139 47 1.00 1 2019-09-03 18:56:24.777504 2019-09-03 18:56:24.777504 1 0 0 297 139 54 1.00 1 2019-09-03 18:56:24.778882 2019-09-03 18:56:24.778882 1 0 0 298 139 530 1.00 1 2019-09-03 18:56:24.780237 2019-09-03 18:56:24.780237 1 0 0 299 139 51 1.00 1 2019-09-03 18:56:24.781701 2019-09-03 18:56:24.781701 1 0 0 300 139 492 1.00 1 2019-09-03 18:56:24.783177 2019-09-03 18:56:24.783177 1 0 0 301 139 486 1.00 1 2019-09-03 18:56:24.784559 2019-09-03 18:56:24.784559 1 0 0 302 139 46 2.00 1 2019-09-03 18:56:24.786063 2019-09-03 18:56:24.786063 2 0 0 303 139 495 2.00 1 2019-09-03 18:56:24.7875 2019-09-03 18:56:24.7875 2 0 0 304 140 335 2.00 1 2019-09-03 20:42:13.123946 2019-09-03 20:42:13.123946 2 0 0 305 140 337 1.00 1 2019-09-03 20:42:13.126693 2019-09-03 20:42:13.126693 1 0 0 306 140 339 1.00 1 2019-09-03 20:42:13.12871 2019-09-03 20:42:13.12871 1 0 0 307 140 338 1.00 1 2019-09-03 20:42:13.131107 2019-09-03 20:42:13.131107 1 0 0 308 140 333 2.00 1 2019-09-03 20:42:13.133173 2019-09-03 20:42:13.133173 2 0 0 309 141 463 2.00 1 2019-09-03 20:42:56.065005 2019-09-03 20:42:56.065005 2 0 0 310 142 39 1.00 1 2019-09-03 20:47:30.855417 2019-09-03 20:47:30.855417 1 0 0 311 142 466 1.00 1 2019-09-03 20:47:30.857317 2019-09-03 20:47:30.857317 1 0 0 312 142 467 1.00 1 2019-09-03 20:47:30.858683 2019-09-03 20:47:30.858683 1 0 0 313 142 615 1.00 1 2019-09-03 20:47:30.860216 2019-09-03 20:47:30.860216 1 0 0 314 142 33 1.00 1 2019-09-03 20:47:30.861836 2019-09-03 20:47:30.861836 1 0 0 315 142 36 1.00 1 2019-09-03 20:47:30.863446 2019-09-03 20:47:30.863446 1 0 0 316 142 35 1.00 1 2019-09-03 20:47:30.86509 2019-09-03 20:47:30.86509 1 0 0 317 142 38 1.00 1 2019-09-03 20:47:30.866508 2019-09-03 20:47:30.866508 1 0 0 318 142 465 1.00 1 2019-09-03 20:47:30.868102 2019-09-03 20:47:30.868102 1 0 0 319 142 40 1.00 1 2019-09-03 20:47:30.869508 2019-09-03 20:47:30.869508 1 0 0 320 142 32 1.00 1 2019-09-03 20:47:30.871041 2019-09-03 20:47:30.871041 1 0 0 321 142 34 1.00 1 2019-09-03 20:47:30.872516 2019-09-03 20:47:30.872516 1 0 0 322 142 31 2.00 1 2019-09-03 20:47:30.874012 2019-09-03 20:47:30.874012 2 0 0 323 143 33 1.00 1 2019-09-03 20:48:51.598614 2019-09-03 20:48:51.598614 1 0 0 324 143 37 1.00 1 2019-09-03 20:48:51.60107 2019-09-03 20:48:51.60107 1 0 0 325 143 34 1.00 1 2019-09-03 20:48:51.602717 2019-09-03 20:48:51.602717 1 0 0 326 144 468 2.00 1 2019-09-03 21:03:05.188898 2019-09-03 21:03:05.188898 2 0 0 327 144 541 2.00 1 2019-09-03 21:03:05.190758 2019-09-03 21:03:05.190758 2 0 0 328 144 540 2.00 1 2019-09-03 21:03:05.192341 2019-09-03 21:03:05.192341 2 0 0 329 145 58 1.00 1 2019-09-03 21:05:21.993666 2019-09-03 21:05:21.993666 1 0 0 330 146 41 7.00 1 2019-09-03 23:30:53.768532 2019-09-03 23:30:53.768532 7 0 0 331 147 388 4.00 1 2019-09-03 23:32:45.737616 2019-09-03 23:32:45.737616 4 0 0 332 147 387 1.00 1 2019-09-03 23:32:45.739206 2019-09-03 23:32:45.739206 1 0 0 333 148 369 36.00 1 2019-09-03 23:54:09.800168 2019-09-03 23:54:09.800168 36 0 0 334 149 640 1.00 1 2019-09-03 23:54:47.772995 2019-09-03 23:54:47.772995 1 0 0 335 150 378 1.00 1 2019-09-04 00:09:09.222421 2019-09-04 00:09:09.222421 1 0 0 336 150 373 1.00 1 2019-09-04 00:09:09.224189 2019-09-04 00:09:09.224189 1 0 0 337 150 371 1.00 1 2019-09-04 00:09:09.225616 2019-09-04 00:09:09.225616 1 0 0 338 150 374 3.00 1 2019-09-04 00:09:09.227066 2019-09-04 00:09:09.227066 3 0 0 339 150 375 4.00 1 2019-09-04 00:09:09.228433 2019-09-04 00:09:09.228433 4 0 0 340 150 376 2.00 1 2019-09-04 00:09:09.229932 2019-09-04 00:09:09.229932 2 0 0 341 150 377 2.00 1 2019-09-04 00:09:09.2314 2019-09-04 00:09:09.2314 2 0 0 342 150 370 2.00 1 2019-09-04 00:09:09.232781 2019-09-04 00:09:09.232781 2 0 0 343 151 28 1.00 1 2019-09-04 00:12:28.288752 2019-09-04 00:12:28.288752 1 0 0 344 151 22 2.00 1 2019-09-04 00:12:28.290322 2019-09-04 00:12:28.290322 2 0 0 345 151 30 1.00 1 2019-09-04 00:12:28.292058 2019-09-04 00:12:28.292058 1 0 0 346 151 26 1.00 1 2019-09-04 00:12:28.293446 2019-09-04 00:12:28.293446 1 0 0 347 151 21 1.00 1 2019-09-04 00:12:28.294924 2019-09-04 00:12:28.294924 1 0 0 348 151 27 1.00 1 2019-09-04 00:12:28.296342 2019-09-04 00:12:28.296342 1 0 0 349 151 29 1.00 1 2019-09-04 00:12:28.297978 2019-09-04 00:12:28.297978 1 0 0 350 152 24 1.00 1 2019-09-04 00:13:11.044194 2019-09-04 00:13:11.044194 1 0 0 351 152 23 1.00 1 2019-09-04 00:13:11.045731 2019-09-04 00:13:11.045731 1 0 0 352 153 363 1.00 1 2019-09-04 00:14:57.782039 2019-09-04 00:14:57.782039 1 0 0 353 153 357 1.00 1 2019-09-04 00:14:57.783996 2019-09-04 00:14:57.783996 1 0 0 354 153 354 1.00 1 2019-09-04 00:14:57.785761 2019-09-04 00:14:57.785761 1 0 0 355 154 361 1.00 1 2019-09-04 00:16:35.169762 2019-09-04 00:16:35.169762 1 0 0 356 155 488 3.00 1 2019-09-04 00:17:27.103937 2019-09-04 00:17:27.103937 3 0 0 357 156 531 6.00 1 2019-09-04 00:28:53.932162 2019-09-04 00:28:53.932162 6 0 0 358 156 60 9.00 1 2019-09-04 00:28:53.934118 2019-09-04 00:28:53.934118 9 0 0 359 156 499 4.00 1 2019-09-04 00:28:53.935724 2019-09-04 00:28:53.935724 4 0 0 360 156 528 5.00 1 2019-09-04 00:28:53.937309 2019-09-04 00:28:53.937309 5 0 0 361 156 529 6.00 1 2019-09-04 00:28:53.938845 2019-09-04 00:28:53.938845 6 0 0 362 157 144 6.00 1 2019-09-04 00:36:39.742645 2019-09-04 00:36:39.742645 6 0 0 363 157 434 4.00 1 2019-09-04 00:36:39.744755 2019-09-04 00:36:39.744755 4 0 0 364 157 511 5.00 1 2019-09-04 00:36:39.746948 2019-09-04 00:36:39.746948 5 0 0 365 157 519 3.00 1 2019-09-04 00:36:39.749015 2019-09-04 00:36:39.749015 3 0 0 366 157 581 6.00 1 2019-09-04 00:36:39.750824 2019-09-04 00:36:39.750824 6 0 0 367 157 204 3.00 1 2019-09-04 00:36:39.75236 2019-09-04 00:36:39.75236 3 0 0 368 157 591 4.00 1 2019-09-04 00:36:39.753881 2019-09-04 00:36:39.753881 4 0 0 369 157 218 5.00 1 2019-09-04 00:36:39.755299 2019-09-04 00:36:39.755299 5 0 0 370 157 255 5.00 1 2019-09-04 00:36:39.75674 2019-09-04 00:36:39.75674 5 0 0 371 157 170 6.00 1 2019-09-04 00:36:39.758202 2019-09-04 00:36:39.758202 6 0 0 372 158 521 5.00 1 2019-09-04 00:39:47.07459 2019-09-04 00:39:47.07459 5 0 0 373 158 524 5.00 1 2019-09-04 00:39:47.076544 2019-09-04 00:39:47.076544 5 0 0 374 158 319 3.00 1 2019-09-04 00:39:47.077945 2019-09-04 00:39:47.077945 3 0 0 375 158 501 5.00 1 2019-09-04 00:39:47.07942 2019-09-04 00:39:47.07942 5 0 0 376 159 570 4.00 1 2019-09-04 00:40:15.714037 2019-09-04 00:40:15.714037 4 0 0 377 160 9 9.00 1 2019-09-04 00:42:25.506533 2019-09-04 00:42:25.506533 9 0 0 378 160 5 9.00 1 2019-09-04 00:42:25.508984 2019-09-04 00:42:25.508984 9 0 0 379 161 247 6.00 1 2019-09-04 01:00:33.63634 2019-09-04 01:00:33.63634 6 0 0 380 161 586 5.00 1 2019-09-04 01:00:33.638382 2019-09-04 01:00:33.638382 5 0 0 381 162 152 5.00 1 2019-09-04 01:04:04.608143 2019-09-04 01:04:04.608143 5 0 0 382 162 551 4.00 1 2019-09-04 01:04:04.609863 2019-09-04 01:04:04.609863 4 0 0 383 162 395 5.00 1 2019-09-04 01:04:04.611293 2019-09-04 01:04:04.611293 5 0 0 384 162 253 3.00 1 2019-09-04 01:04:04.612821 2019-09-04 01:04:04.612821 3 0 0 385 163 557 2.00 1 2019-09-04 16:19:31.336127 2019-09-04 16:19:31.336127 2 0 0 386 164 590 1.00 1 2019-09-04 16:27:55.102363 2019-09-04 16:27:55.102363 1 0 0 387 165 590 5.00 1 2019-09-04 17:05:22.741203 2019-09-04 17:05:22.741203 5 0 0 388 166 480 1.00 1 2019-09-04 17:48:13.751966 2019-09-04 17:48:13.751966 1 0 0 389 166 539 1.00 1 2019-09-04 17:48:13.753954 2019-09-04 17:48:13.753954 1 0 0 390 166 492 1.00 1 2019-09-04 17:48:13.755363 2019-09-04 17:48:13.755363 1 0 0 391 166 486 1.00 1 2019-09-04 17:48:13.756804 2019-09-04 17:48:13.756804 1 0 0 169 84 17 5.00 1 2019-07-24 01:11:03.159559 2019-09-04 18:03:01.755259 0 1 0 392 167 351 1.00 1 2019-09-04 19:16:34.013964 2019-09-04 19:16:34.013964 1 0 0 393 168 495 1.00 1 2019-09-04 19:31:21.730121 2019-09-04 19:31:21.730121 1 0 0 394 169 42 1.00 1 2019-09-04 19:44:50.182479 2019-09-04 19:44:50.182479 1 0 0 273 137 662 2.00 1 2019-09-03 01:06:35.707014 2019-09-04 21:43:28.811894 2 1 0 395 170 625 4.00 1 2019-09-04 21:44:33.042103 2019-09-04 21:44:33.042103 4 0 0 396 171 630 5.00 1 2019-09-04 22:28:11.619176 2019-09-04 22:28:11.619176 5 0 0 397 171 609 6.00 1 2019-09-04 22:28:11.621213 2019-09-04 22:28:11.621213 6 0 0 398 171 605 5.00 1 2019-09-04 22:28:11.622706 2019-09-04 22:28:11.622706 5 0 0 399 172 164 4.00 1 2019-09-04 23:23:36.413291 2019-09-04 23:23:36.413291 4 0 0 400 172 176 5.00 1 2019-09-04 23:23:36.415314 2019-09-04 23:23:36.415314 5 0 0 401 173 710 6.00 1 2019-09-05 03:29:25.70696 2019-09-05 03:29:25.70696 6 0 0 402 174 710 6.00 1 2019-09-05 03:29:45.514134 2019-09-05 03:29:45.514134 6 0 0 403 175 322 1.00 1 2019-09-06 17:04:06.20075 2019-09-06 17:04:06.20075 1 0 0 404 176 664 1.00 1 2019-09-08 00:13:58.031673 2019-09-08 00:13:58.031673 1 0 0 405 177 662 1.00 1 2019-09-09 21:13:58.333599 2019-09-09 21:13:58.333599 1 0 0 406 178 660 1.00 1 2019-09-10 22:17:38.280843 2019-09-10 22:17:38.280843 1 0 0 407 179 149 5.00 1 2019-09-11 17:36:41.525576 2019-09-11 17:36:41.525576 5 0 0 408 179 517 2.00 1 2019-09-11 17:36:41.528072 2019-09-11 17:36:41.528072 2 0 0 409 179 532 2.00 1 2019-09-11 17:36:41.52996 2019-09-11 17:36:41.52996 2 0 0 410 179 62 2.00 1 2019-09-11 17:36:41.531635 2019-09-11 17:36:41.531635 2 0 0 411 179 619 5.00 1 2019-09-11 17:36:41.533153 2019-09-11 17:36:41.533153 5 0 0 412 179 593 4.00 1 2019-09-11 17:36:41.534628 2019-09-11 17:36:41.534628 4 0 0 413 179 181 3.00 1 2019-09-11 17:36:41.536183 2019-09-11 17:36:41.536183 3 0 0 414 179 624 6.00 1 2019-09-11 17:36:41.537624 2019-09-11 17:36:41.537624 6 0 0 415 179 60 4.00 1 2019-09-11 17:36:41.539721 2019-09-11 17:36:41.539721 4 0 0 416 179 507 3.00 1 2019-09-11 17:36:41.541202 2019-09-11 17:36:41.541202 3 0 0 417 180 664 1.00 1 2019-09-11 17:49:22.877239 2019-09-11 17:49:22.877239 1 0 0 418 181 535 3.00 1 2019-09-11 18:16:14.199331 2019-09-11 18:16:14.199331 3 0 0 419 181 138 2.00 1 2019-09-11 18:16:14.201993 2019-09-11 18:16:14.201993 2 0 0 420 182 623 3.00 1 2019-09-11 18:21:00.920431 2019-09-11 18:21:00.920431 3 0 0 421 183 568 1.00 1 2019-09-11 18:24:43.961803 2019-09-11 18:24:43.961803 1 0 0 422 184 711 5.00 1 2019-09-11 19:59:46.278106 2019-09-11 19:59:46.278106 5 0 0 423 185 417 2.00 1 2019-09-11 20:05:59.226281 2019-09-11 20:05:59.226281 2 0 0 424 186 496 4.00 1 2019-09-11 20:06:32.331523 2019-09-11 20:06:32.331523 4 0 0 425 187 670 1.00 1 2019-09-11 22:10:42.801289 2019-09-11 22:10:42.801289 1 0 0 426 188 622 1.00 1 2019-09-13 21:54:23.268483 2019-09-13 21:54:23.268483 1 0 0 427 189 670 1.00 1 2019-09-14 20:50:46.152128 2019-09-14 20:50:46.152128 1 0 0 428 189 673 3.00 1 2019-09-14 20:50:46.154085 2019-09-14 20:50:46.154085 3 0 0 429 190 681 6.00 1 2019-09-14 21:17:03.405698 2019-09-14 21:17:03.405698 6 0 0 430 191 623 4.00 1 2019-09-17 17:48:18.299491 2019-09-17 17:48:18.299491 4 0 0 431 192 623 1.00 1 2019-09-17 17:49:05.759455 2019-09-17 17:49:05.759455 1 0 0 432 192 666 6.00 1 2019-09-17 17:49:05.761327 2019-09-17 17:49:05.761327 6 0 0 433 193 666 6.00 1 2019-09-17 22:53:10.565243 2019-09-17 22:53:10.565243 6 0 0 434 194 623 1.00 1 2019-09-19 23:50:01.412112 2019-09-19 23:50:01.412112 1 0 0 435 195 700 6.00 1 2019-09-20 17:27:37.232394 2019-09-20 17:27:37.232394 6 0 0 436 196 509 3.00 1 2019-09-20 17:28:47.305879 2019-09-20 17:28:47.305879 3 0 0 437 196 671 6.00 1 2019-09-20 17:28:47.30813 2019-09-20 17:28:47.30813 6 0 0 438 197 636 3.00 1 2019-09-20 17:39:53.910954 2019-09-20 17:39:53.910954 3 0 0 439 198 149 5.00 1 2019-09-20 22:23:10.166163 2019-09-20 22:23:10.166163 5 0 0 440 198 146 2.00 1 2019-09-20 22:23:10.169018 2019-09-20 22:23:10.169018 2 0 0 441 198 324 1.00 1 2019-09-20 22:23:10.170543 2019-09-20 22:23:10.170543 1 0 0 442 199 669 9.00 1 2019-09-20 22:38:14.243999 2019-09-20 22:38:14.243999 9 0 0 443 199 60 4.00 1 2019-09-20 22:38:14.246019 2019-09-20 22:38:14.246019 4 0 0 444 200 623 3.00 1 2019-09-21 00:05:41.182469 2019-09-21 00:05:41.182469 3 0 0 445 200 664 2.00 1 2019-09-21 00:05:41.184245 2019-09-21 00:05:41.184245 2 0 0 446 201 677 1.00 1 2019-09-21 20:33:25.053919 2019-09-21 20:33:25.053919 1 0 0 447 202 714 6.00 1 2019-09-21 20:44:35.220765 2019-09-21 20:44:35.220765 6 0 0 448 202 713 6.00 1 2019-09-21 20:44:35.222944 2019-09-21 20:44:35.222944 6 0 0 449 203 677 5.00 1 2019-09-21 21:05:18.502683 2019-09-21 21:05:18.502683 5 0 0 450 204 665 1.00 1 2019-09-23 20:46:00.789246 2019-09-23 20:46:00.789246 1 0 0 451 205 623 1.00 1 2019-09-24 20:12:12.914116 2019-09-24 20:12:12.914116 1 0 0 452 206 703 1.00 1 2019-09-26 23:22:33.460853 2019-09-26 23:22:33.460853 1 0 0 453 206 708 1.00 1 2019-09-26 23:22:33.462915 2019-09-26 23:22:33.462915 1 0 0 454 207 722 3.00 1 2019-09-26 23:24:53.675376 2019-09-26 23:24:53.675376 3 0 0 455 207 717 1.00 1 2019-09-26 23:24:53.676954 2019-09-26 23:24:53.676954 1 0 0 456 208 622 1.00 1 2019-09-27 19:20:36.301099 2019-09-27 19:20:36.301099 1 0 0 457 209 665 1.00 1 2019-09-27 19:57:15.180645 2019-09-27 19:57:15.180645 1 0 0 458 210 708 1.00 1 2019-10-03 00:49:57.47158 2019-10-03 00:49:57.47158 1 0 0 459 211 640 4.00 1 2019-10-03 20:18:47.872446 2019-10-03 20:18:47.872446 4 0 0 460 212 623 1.00 1 2019-10-03 20:19:26.49314 2019-10-03 20:19:26.49314 1 0 0 461 213 623 6.00 1 2019-10-03 20:19:48.944353 2019-10-03 20:19:48.944353 6 0 0 462 214 608 3.00 1 2019-10-04 22:53:07.529643 2019-10-04 22:53:07.529643 3 0 0 463 215 695 6.00 1 2019-10-04 22:53:57.587647 2019-10-04 22:53:57.587647 6 0 0 464 216 535 3.00 1 2019-10-05 18:01:51.599838 2019-10-05 18:01:51.599838 3 0 0 465 216 141 3.00 1 2019-10-05 18:01:51.602464 2019-10-05 18:01:51.602464 3 0 0 466 216 221 5.00 1 2019-10-05 18:01:51.604701 2019-10-05 18:01:51.604701 5 0 0 467 216 498 4.00 1 2019-10-05 18:01:51.606337 2019-10-05 18:01:51.606337 4 0 0 468 216 158 2.00 1 2019-10-05 18:01:51.6079 2019-10-05 18:01:51.6079 2 0 0 469 216 190 2.00 1 2019-10-05 18:01:51.60949 2019-10-05 18:01:51.60949 2 0 0 470 216 404 3.00 1 2019-10-05 18:01:51.611044 2019-10-05 18:01:51.611044 3 0 0 471 216 579 2.00 1 2019-10-05 18:01:51.612894 2019-10-05 18:01:51.612894 2 0 0 472 216 604 4.00 1 2019-10-05 18:01:51.614677 2019-10-05 18:01:51.614677 4 0 0 473 216 7 7.00 1 2019-10-05 18:01:51.616144 2019-10-05 18:01:51.616144 7 0 0 474 216 186 2.00 1 2019-10-05 18:01:51.617622 2019-10-05 18:01:51.617622 2 0 0 475 217 398 2.00 1 2019-10-05 18:20:24.988167 2019-10-05 18:20:24.988167 2 0 0 476 217 8 1.00 1 2019-10-05 18:20:24.989981 2019-10-05 18:20:24.989981 1 0 0 477 217 153 1.00 1 2019-10-05 18:20:24.991435 2019-10-05 18:20:24.991435 1 0 0 478 217 320 4.00 1 2019-10-05 18:20:24.993034 2019-10-05 18:20:24.993034 4 0 0 479 217 89 4.00 1 2019-10-05 18:20:24.994521 2019-10-05 18:20:24.994521 4 0 0 480 217 220 1.00 1 2019-10-05 18:20:24.995992 2019-10-05 18:20:24.995992 1 0 0 481 217 427 3.00 1 2019-10-05 18:20:24.99743 2019-10-05 18:20:24.99743 3 0 0 482 217 435 2.00 1 2019-10-05 18:20:24.998884 2019-10-05 18:20:24.998884 2 0 0 483 217 145 1.00 1 2019-10-05 18:20:25.001103 2019-10-05 18:20:25.001103 1 0 0 484 217 92 2.00 1 2019-10-05 18:20:25.002532 2019-10-05 18:20:25.002532 2 0 0 485 217 109 3.00 1 2019-10-05 18:20:25.004794 2019-10-05 18:20:25.004794 3 0 0 486 217 223 3.00 1 2019-10-05 18:20:25.006271 2019-10-05 18:20:25.006271 3 0 0 487 218 204 2.00 1 2019-10-05 18:32:17.781569 2019-10-05 18:32:17.781569 2 0 0 488 219 504 1.00 1 2019-10-05 18:32:39.779248 2019-10-05 18:32:39.779248 1 0 0 489 220 715 6.00 1 2019-10-05 18:35:18.619428 2019-10-05 18:35:18.619428 6 0 0 490 220 676 6.00 1 2019-10-05 18:35:18.621445 2019-10-05 18:35:18.621445 6 0 0 491 221 552 1.00 1 2019-10-05 19:04:42.383512 2019-10-05 19:04:42.383512 1 0 0 492 221 622 2.00 1 2019-10-05 19:04:42.385126 2019-10-05 19:04:42.385126 2 0 0 493 221 597 2.00 1 2019-10-05 19:04:42.386447 2019-10-05 19:04:42.386447 2 0 0 494 222 207 3.00 1 2019-10-06 00:12:40.450069 2019-10-06 00:12:40.450069 3 0 0 495 222 205 9.00 1 2019-10-06 00:12:40.452151 2019-10-06 00:12:40.452151 9 0 0 496 222 209 4.00 1 2019-10-06 00:12:40.453595 2019-10-06 00:12:40.453595 4 0 0 497 222 408 4.00 1 2019-10-06 00:12:40.455017 2019-10-06 00:12:40.455017 4 0 0 498 222 19 5.00 1 2019-10-06 00:12:40.456435 2019-10-06 00:12:40.456435 5 0 0 499 222 15 4.00 1 2019-10-06 00:12:40.457949 2019-10-06 00:12:40.457949 4 0 0 500 222 401 3.00 1 2019-10-06 00:12:40.459429 2019-10-06 00:12:40.459429 3 0 0 501 222 637 5.00 1 2019-10-06 00:12:40.460809 2019-10-06 00:12:40.460809 5 0 0 502 222 578 4.00 1 2019-10-06 00:12:40.462142 2019-10-06 00:12:40.462142 4 0 0 503 223 699 6.00 1 2019-10-06 00:15:13.817626 2019-10-06 00:15:13.817626 6 0 0 504 223 631 4.00 1 2019-10-06 00:15:13.819116 2019-10-06 00:15:13.819116 4 0 0 506 224 701 5.00 1 2019-10-06 00:16:10.716433 2019-10-06 00:16:10.716433 5 0 0 505 223 724 5.00 1 2019-10-06 00:15:13.820546 2019-10-07 20:19:07.07326 4 1 0 507 225 722 1.00 1 2019-10-07 22:29:43.691298 2019-10-07 22:29:43.691298 1 0 0 508 226 676 6.00 1 2019-10-08 06:07:34.142598 2019-10-08 06:07:34.142598 6 0 0 509 227 633 6.00 1 2019-10-09 19:59:19.183751 2019-10-09 19:59:19.183751 6 0 0 510 228 670 4.00 1 2019-10-10 18:42:08.926327 2019-10-10 18:42:08.926327 4 0 0 511 229 754 6.00 1 2019-10-10 21:30:09.969216 2019-10-10 21:30:09.969216 6 0 0 512 230 760 6.00 1 2019-10-11 03:07:28.919863 2019-10-11 03:07:28.919863 6 0 0 513 230 758 6.00 1 2019-10-11 03:07:28.921833 2019-10-11 03:07:28.921833 6 0 0 514 231 758 6.00 1 2019-10-11 03:08:47.158968 2019-10-11 03:08:47.158968 6 0 0 515 231 757 6.00 1 2019-10-11 03:08:47.160511 2019-10-11 03:08:47.160511 6 0 0 516 232 763 6.00 1 2019-10-11 05:28:49.260927 2019-10-11 05:28:49.260927 6 0 0 517 232 764 6.00 1 2019-10-11 05:28:49.262786 2019-10-11 05:28:49.262786 6 0 0 518 233 761 6.00 1 2019-10-11 05:40:58.802493 2019-10-11 05:40:58.802493 6 0 0 519 234 620 4.00 1 2019-10-11 16:21:23.343307 2019-10-11 16:21:23.343307 4 0 0 520 234 672 2.00 1 2019-10-11 16:21:23.345195 2019-10-11 16:21:23.345195 2 0 0 521 234 600 2.00 1 2019-10-11 16:21:23.346572 2019-10-11 16:21:23.346572 2 0 0 522 234 665 3.00 1 2019-10-11 16:21:23.347908 2019-10-11 16:21:23.347908 3 0 0 523 235 564 3.00 1 2019-10-11 20:19:32.042818 2019-10-11 20:19:32.042818 3 0 0 524 235 17 6.00 1 2019-10-11 20:19:32.044744 2019-10-11 20:19:32.044744 6 0 0 525 235 14 4.00 1 2019-10-11 20:19:32.046418 2019-10-11 20:19:32.046418 4 0 0 526 235 627 3.00 1 2019-10-11 20:19:32.048221 2019-10-11 20:19:32.048221 3 0 0 527 235 666 7.00 1 2019-10-11 20:19:32.049654 2019-10-11 20:19:32.049654 7 0 0 528 235 496 4.00 1 2019-10-11 20:19:32.051636 2019-10-11 20:19:32.051636 4 0 0 529 236 782 6.00 1 2019-10-11 20:34:32.305914 2019-10-11 20:34:32.305914 6 0 0 530 237 782 6.00 1 2019-10-11 20:35:11.407647 2019-10-11 20:35:11.407647 6 0 0 531 238 499 4.00 1 2019-10-11 20:59:20.853113 2019-10-11 20:59:20.853113 4 0 0 532 239 786 6.00 1 2019-10-11 22:08:20.374273 2019-10-11 22:08:20.374273 6 0 0 533 240 786 6.00 1 2019-10-11 22:08:42.134851 2019-10-11 22:08:42.134851 6 0 0 534 241 764 6.00 1 2019-10-12 18:52:21.437498 2019-10-12 18:52:21.437498 6 0 0 535 242 788 6.00 1 2019-10-12 20:43:31.291847 2019-10-12 20:43:31.291847 6 0 0 536 242 789 6.00 1 2019-10-12 20:43:31.293924 2019-10-12 20:43:31.293924 6 0 0 537 243 790 6.00 1 2019-10-12 20:44:13.006891 2019-10-12 20:44:13.006891 6 0 0 538 243 791 6.00 1 2019-10-12 20:44:13.008795 2019-10-12 20:44:13.008795 6 0 0 539 244 795 6.00 1 2019-10-13 17:11:53.041066 2019-10-13 17:11:53.041066 6 0 0 540 244 798 6.00 1 2019-10-13 17:11:53.042967 2019-10-13 17:11:53.042967 6 0 0 541 244 796 6.00 1 2019-10-13 17:11:53.044532 2019-10-13 17:11:53.044532 6 0 0 542 244 797 6.00 1 2019-10-13 17:11:53.04605 2019-10-13 17:11:53.04605 6 0 0 543 245 796 6.00 1 2019-10-13 17:15:12.541299 2019-10-13 17:15:12.541299 6 0 0 544 246 760 6.00 1 2019-10-13 17:20:09.49438 2019-10-13 17:20:09.49438 6 0 0 545 247 800 6.00 1 2019-10-14 19:15:12.217893 2019-10-14 19:15:12.217893 6 0 0 546 248 539 1.00 1 2019-10-15 17:56:52.775893 2019-10-15 17:56:52.775893 1 0 0 547 249 351 2.00 1 2019-10-15 18:10:14.389931 2019-10-15 18:10:14.389931 2 0 0 548 250 486 1.00 1 2019-10-15 18:15:21.099678 2019-10-15 18:15:21.099678 1 0 0 549 250 492 1.00 1 2019-10-15 18:15:21.1021 2019-10-15 18:15:21.1021 1 0 0 550 251 319 3.00 1 2019-10-17 21:09:36.826983 2019-10-17 21:09:36.826983 3 0 0 551 251 661 5.00 1 2019-10-17 21:09:36.829332 2019-10-17 21:09:36.829332 5 0 0 552 251 687 6.00 1 2019-10-17 21:09:36.830819 2019-10-17 21:09:36.830819 6 0 0 553 252 782 6.00 1 2019-10-19 18:50:01.721815 2019-10-19 18:50:01.721815 6 0 0 554 253 722 1.00 1 2019-10-21 18:21:54.63804 2019-10-21 18:21:54.63804 1 0 0 555 253 849 1.00 1 2019-10-21 18:21:54.639924 2019-10-21 18:21:54.639924 1 0 0 556 253 851 1.00 1 2019-10-21 18:21:54.641324 2019-10-21 18:21:54.641324 1 0 0 557 253 845 1.00 1 2019-10-21 18:21:54.642687 2019-10-21 18:21:54.642687 1 0 0 558 253 841 1.00 1 2019-10-21 18:21:54.644071 2019-10-21 18:21:54.644071 1 0 0 559 253 847 1.00 1 2019-10-21 18:21:54.64546 2019-10-21 18:21:54.64546 1 0 0 560 253 850 1.00 1 2019-10-21 18:21:54.646824 2019-10-21 18:21:54.646824 1 0 0 561 253 843 1.00 1 2019-10-21 18:21:54.648158 2019-10-21 18:21:54.648158 1 0 0 562 254 283 3.00 1 2019-10-21 21:06:15.373962 2019-10-21 21:06:15.373962 3 0 0 563 255 171 3.00 1 2019-10-22 00:30:38.195203 2019-10-22 00:30:38.195203 3 0 0 564 255 172 2.00 1 2019-10-22 00:30:38.197684 2019-10-22 00:30:38.197684 2 0 0 565 256 680 3.00 1 2019-10-22 01:35:37.025806 2019-10-22 01:35:37.025806 3 0 0 566 257 800 1.00 1 2019-10-23 23:52:31.175262 2019-10-23 23:52:31.175262 1 0 0 567 258 559 5.00 1 2019-10-25 16:37:29.594264 2019-10-25 16:37:29.594264 5 0 0 568 258 286 2.00 1 2019-10-25 16:37:29.596159 2019-10-25 16:37:29.596159 2 0 0 569 258 300 2.00 1 2019-10-25 16:37:29.597565 2019-10-25 16:37:29.597565 2 0 0 570 259 189 4.00 1 2019-10-25 16:41:46.531067 2019-10-25 16:41:46.531067 4 0 0 571 260 662 3.00 1 2019-10-25 21:36:42.383689 2019-10-25 21:36:42.383689 3 0 0 572 261 864 1.00 1 2019-10-28 18:24:20.332737 2019-10-28 18:24:20.332737 1 0 0 573 262 864 1.00 1 2019-10-28 18:24:41.972974 2019-10-28 18:24:41.972974 1 0 0 574 263 864 3.00 1 2019-10-28 18:25:06.695855 2019-10-28 18:25:06.695855 3 0 0 575 264 872 6.00 1 2019-10-29 18:33:42.757085 2019-10-29 18:33:42.757085 6 0 0 576 264 871 9.00 1 2019-10-29 18:33:42.760034 2019-10-29 18:33:42.760034 9 0 0 577 265 599 6.00 1 2019-10-29 19:48:34.388565 2019-10-29 19:48:34.388565 6 0 0 578 266 875 6.00 1 2019-10-29 21:03:25.739534 2019-10-29 21:03:25.739534 6 0 0 579 267 866 6.00 1 2019-10-30 01:22:18.591773 2019-10-30 01:22:18.591773 6 0 0 580 268 869 6.00 1 2019-10-30 01:26:29.189752 2019-10-30 01:26:29.189752 6 0 0 581 268 873 6.00 1 2019-10-30 01:26:29.192549 2019-10-30 01:26:29.192549 6 0 0 582 268 874 6.00 1 2019-10-30 01:26:29.194828 2019-10-30 01:26:29.194828 6 0 0 583 268 875 3.00 1 2019-10-30 01:26:29.197207 2019-10-30 01:26:29.197207 3 0 0 584 269 783 6.00 1 2019-10-30 01:29:32.958035 2019-10-30 01:29:32.958035 6 0 0 585 270 902 6.00 1 2019-10-30 01:59:10.101971 2019-10-30 01:59:10.101971 6 0 0 586 270 899 6.00 1 2019-10-30 01:59:10.103658 2019-10-30 01:59:10.103658 6 0 0 587 270 896 4.00 1 2019-10-30 01:59:10.105089 2019-10-30 01:59:10.105089 4 0 0 588 270 886 6.00 1 2019-10-30 01:59:10.106565 2019-10-30 01:59:10.106565 6 0 0 589 271 891 9.00 1 2019-10-30 02:04:33.508094 2019-10-30 02:04:33.508094 9 0 0 590 272 900 6.00 1 2019-10-30 02:05:16.319395 2019-10-30 02:05:16.319395 6 0 0 591 273 904 6.00 1 2019-10-30 02:35:49.549668 2019-10-30 02:35:49.549668 6 0 0 592 274 903 6.00 1 2019-10-30 02:36:15.455366 2019-10-30 02:36:15.455366 6 0 0 593 275 875 3.00 1 2019-10-30 04:22:08.148806 2019-10-30 04:22:08.148806 3 0 0 594 275 901 6.00 1 2019-10-30 04:22:08.150634 2019-10-30 04:22:08.150634 6 0 0 595 275 897 4.00 1 2019-10-30 04:22:08.152067 2019-10-30 04:22:08.152067 4 0 0 596 275 898 4.00 1 2019-10-30 04:22:08.153501 2019-10-30 04:22:08.153501 4 0 0 597 276 238 3.00 1 2019-10-30 17:28:58.300271 2019-10-30 17:28:58.300271 3 0 0 598 277 236 1.00 1 2019-10-30 17:57:53.76573 2019-10-30 17:57:53.76573 1 0 0 599 277 475 3.00 1 2019-10-30 17:57:53.768422 2019-10-30 17:57:53.768422 3 0 0 600 277 257 1.00 1 2019-10-30 17:57:53.770831 2019-10-30 17:57:53.770831 1 0 0 601 277 237 2.00 1 2019-10-30 17:57:53.773062 2019-10-30 17:57:53.773062 2 0 0 602 277 483 1.00 1 2019-10-30 17:57:53.775426 2019-10-30 17:57:53.775426 1 0 0 603 277 185 2.00 1 2019-10-30 17:57:53.777585 2019-10-30 17:57:53.777585 2 0 0 604 278 485 1.00 1 2019-10-30 21:45:11.895606 2019-10-30 21:45:11.895606 1 0 0 605 279 208 4.00 1 2019-11-03 18:09:35.52328 2019-11-03 18:09:35.52328 4 0 0 606 279 233 1.00 1 2019-11-03 18:09:35.525412 2019-11-03 18:09:35.525412 1 0 0 607 279 231 3.00 1 2019-11-03 18:09:35.526792 2019-11-03 18:09:35.526792 3 0 0 608 279 217 4.00 1 2019-11-03 18:09:35.528194 2019-11-03 18:09:35.528194 4 0 0 609 279 235 1.00 1 2019-11-03 18:09:35.5296 2019-11-03 18:09:35.5296 1 0 0 610 279 212 1.00 1 2019-11-03 18:09:35.530948 2019-11-03 18:09:35.530948 1 0 0 611 279 206 4.00 1 2019-11-03 18:09:35.532381 2019-11-03 18:09:35.532381 4 0 0 612 279 246 2.00 1 2019-11-03 18:09:35.533923 2019-11-03 18:09:35.533923 2 0 0 613 279 219 3.00 1 2019-11-03 18:09:35.53549 2019-11-03 18:09:35.53549 3 0 0 614 279 210 3.00 1 2019-11-03 18:09:35.536928 2019-11-03 18:09:35.536928 3 0 0 615 280 113 2.00 1 2019-11-03 18:36:24.65694 2019-11-03 18:36:24.65694 2 0 0 616 280 76 1.00 1 2019-11-03 18:36:24.659752 2019-11-03 18:36:24.659752 1 0 0 617 280 67 2.00 1 2019-11-03 18:36:24.661934 2019-11-03 18:36:24.661934 2 0 0 618 281 213 4.00 1 2019-11-03 18:50:06.558546 2019-11-03 18:50:06.558546 4 0 0 619 281 536 2.00 1 2019-11-03 18:50:06.561046 2019-11-03 18:50:06.561046 2 0 0 620 281 94 1.00 1 2019-11-03 18:50:06.563227 2019-11-03 18:50:06.563227 1 0 0 621 281 69 3.00 1 2019-11-03 18:50:06.565385 2019-11-03 18:50:06.565385 3 0 0 622 282 71 4.00 1 2019-11-03 19:28:07.22934 2019-11-03 19:28:07.22934 4 0 0 623 282 64 2.00 1 2019-11-03 19:28:07.231039 2019-11-03 19:28:07.231039 2 0 0 624 282 117 1.00 1 2019-11-03 19:28:07.23238 2019-11-03 19:28:07.23238 1 0 0 625 282 90 3.00 1 2019-11-03 19:28:07.233845 2019-11-03 19:28:07.233845 3 0 0 626 282 128 1.00 1 2019-11-03 19:28:07.235192 2019-11-03 19:28:07.235192 1 0 0 627 282 119 1.00 1 2019-11-03 19:28:07.236817 2019-11-03 19:28:07.236817 1 0 0 628 282 287 2.00 1 2019-11-03 19:28:07.238179 2019-11-03 19:28:07.238179 2 0 0 629 282 299 1.00 1 2019-11-03 19:28:07.239593 2019-11-03 19:28:07.239593 1 0 0 630 282 68 4.00 1 2019-11-03 19:28:07.241003 2019-11-03 19:28:07.241003 4 0 0 631 283 891 9.00 1 2019-11-04 19:06:05.862401 2019-11-04 19:06:05.862401 9 0 0 632 283 886 6.00 1 2019-11-04 19:06:05.865824 2019-11-04 19:06:05.865824 6 0 0 633 283 888 6.00 1 2019-11-04 19:06:05.868093 2019-11-04 19:06:05.868093 6 0 0 634 283 896 4.00 1 2019-11-04 19:06:05.870316 2019-11-04 19:06:05.870316 4 0 0 635 283 897 4.00 1 2019-11-04 19:06:05.872439 2019-11-04 19:06:05.872439 4 0 0 636 283 873 6.00 1 2019-11-04 19:06:05.874798 2019-11-04 19:06:05.874798 6 0 0 637 283 874 6.00 1 2019-11-04 19:06:05.876969 2019-11-04 19:06:05.876969 6 0 0 638 284 783 5.00 1 2019-11-04 19:08:54.031402 2019-11-04 19:08:54.031402 5 0 0 639 285 868 6.00 1 2019-11-05 19:29:42.291181 2019-11-05 19:29:42.291181 6 0 0 640 285 897 4.00 1 2019-11-05 19:29:42.294692 2019-11-05 19:29:42.294692 4 0 0 641 285 889 3.00 1 2019-11-05 19:29:42.296923 2019-11-05 19:29:42.296923 3 0 0 642 285 892 3.00 1 2019-11-05 19:29:42.299525 2019-11-05 19:29:42.299525 3 0 0 643 285 895 4.00 1 2019-11-05 19:29:42.302023 2019-11-05 19:29:42.302023 4 0 0 644 286 900 6.00 1 2019-11-05 19:30:53.529549 2019-11-05 19:30:53.529549 6 0 0 645 287 889 6.00 1 2019-11-05 19:32:01.558059 2019-11-05 19:32:01.558059 6 0 0 646 288 893 9.00 1 2019-11-05 19:38:26.207826 2019-11-05 19:38:26.207826 9 0 0 647 288 896 4.00 1 2019-11-05 19:38:26.209702 2019-11-05 19:38:26.209702 4 0 0 648 288 894 4.00 1 2019-11-05 19:38:26.211434 2019-11-05 19:38:26.211434 4 0 0 649 288 867 6.00 1 2019-11-05 19:38:26.212855 2019-11-05 19:38:26.212855 6 0 0 650 289 479 4.00 1 2019-11-06 01:08:32.459421 2019-11-06 01:08:32.459421 4 0 0 651 289 534 1.00 1 2019-11-06 01:08:32.462204 2019-11-06 01:08:32.462204 1 0 0 652 289 315 2.00 1 2019-11-06 01:08:32.464543 2019-11-06 01:08:32.464543 2 0 0 653 289 293 3.00 1 2019-11-06 01:08:32.466519 2019-11-06 01:08:32.466519 3 0 0 654 289 635 5.00 1 2019-11-06 01:08:32.468489 2019-11-06 01:08:32.468489 5 0 0 655 289 89 3.00 1 2019-11-06 01:08:32.4704 2019-11-06 01:08:32.4704 3 0 0 656 289 72 3.00 1 2019-11-06 01:08:32.472435 2019-11-06 01:08:32.472435 3 0 0 657 289 711 5.00 1 2019-11-06 01:08:32.474372 2019-11-06 01:08:32.474372 5 0 0 658 290 885 6.00 1 2019-11-06 01:29:27.217659 2019-11-06 01:29:27.217659 6 0 0 659 290 887 6.00 1 2019-11-06 01:29:27.219298 2019-11-06 01:29:27.219298 6 0 0 660 291 460 1.00 1 2019-11-06 01:58:14.05562 2019-11-06 01:58:14.05562 1 0 0 661 291 456 2.00 1 2019-11-06 01:58:14.057455 2019-11-06 01:58:14.057455 2 0 0 662 291 455 1.00 1 2019-11-06 01:58:14.058896 2019-11-06 01:58:14.058896 1 0 0 663 292 893 1.00 1 2019-11-06 18:15:50.037855 2019-11-06 18:15:50.037855 1 0 0 664 293 893 8.00 1 2019-11-06 18:21:35.532766 2019-11-06 18:21:35.532766 8 0 0 665 294 837 1.00 1 2019-11-07 19:54:37.445979 2019-11-07 19:54:37.445979 1 0 0 666 294 836 1.00 1 2019-11-07 19:54:37.449039 2019-11-07 19:54:37.449039 1 0 0 667 294 839 1.00 1 2019-11-07 19:54:37.451206 2019-11-07 19:54:37.451206 1 0 0 668 294 838 1.00 1 2019-11-07 19:54:37.453317 2019-11-07 19:54:37.453317 1 0 0 669 294 835 1.00 1 2019-11-07 19:54:37.455266 2019-11-07 19:54:37.455266 1 0 0 670 294 834 1.00 1 2019-11-07 19:54:37.457159 2019-11-07 19:54:37.457159 1 0 0 671 294 833 1.00 1 2019-11-07 19:54:37.459172 2019-11-07 19:54:37.459172 1 0 0 672 295 880 6.00 1 2019-11-09 19:02:30.657112 2019-11-09 19:02:30.657112 6 0 0 673 295 870 6.00 1 2019-11-09 19:02:30.6592 2019-11-09 19:02:30.6592 6 0 0 674 295 877 6.00 1 2019-11-09 19:02:30.660702 2019-11-09 19:02:30.660702 6 0 0 675 296 911 6.00 1 2019-11-09 19:18:53.506235 2019-11-09 19:18:53.506235 6 0 0 676 297 882 6.00 1 2019-11-09 19:19:43.1835 2019-11-09 19:19:43.1835 6 0 0 677 297 910 6.00 1 2019-11-09 19:19:43.185172 2019-11-09 19:19:43.185172 6 0 0 678 297 884 6.00 1 2019-11-09 19:19:43.18652 2019-11-09 19:19:43.18652 6 0 0 679 298 883 6.00 1 2019-11-11 21:40:59.243298 2019-11-11 21:40:59.243298 6 0 0 680 299 784 1.00 1 2019-11-12 02:33:50.480234 2019-11-12 02:33:50.480234 1 0 0 681 300 913 1.00 1 2019-11-13 19:44:20.234492 2019-11-13 19:44:20.234492 1 0 0 682 300 916 1.00 1 2019-11-13 19:44:20.236865 2019-11-13 19:44:20.236865 1 0 0 683 300 915 1.00 1 2019-11-13 19:44:20.238649 2019-11-13 19:44:20.238649 1 0 0 684 300 917 1.00 1 2019-11-13 19:44:20.240131 2019-11-13 19:44:20.240131 1 0 0 685 300 918 1.00 1 2019-11-13 19:44:20.241496 2019-11-13 19:44:20.241496 1 0 0 686 300 919 1.00 1 2019-11-13 19:44:20.242917 2019-11-13 19:44:20.242917 1 0 0 687 300 920 1.00 1 2019-11-13 19:44:20.244882 2019-11-13 19:44:20.244882 1 0 0 688 300 922 1.00 1 2019-11-13 19:44:20.246606 2019-11-13 19:44:20.246606 1 0 0 689 300 923 1.00 1 2019-11-13 19:44:20.248055 2019-11-13 19:44:20.248055 1 0 0 690 300 924 1.00 1 2019-11-13 19:44:20.249418 2019-11-13 19:44:20.249418 1 0 0 691 300 925 1.00 1 2019-11-13 19:44:20.250874 2019-11-13 19:44:20.250874 1 0 0 692 300 926 1.00 1 2019-11-13 19:44:20.252457 2019-11-13 19:44:20.252457 1 0 0 693 300 927 2.00 1 2019-11-13 19:44:20.254003 2019-11-13 19:44:20.254003 2 0 0 694 300 928 2.00 1 2019-11-13 19:44:20.255365 2019-11-13 19:44:20.255365 2 0 0 695 300 929 1.00 1 2019-11-13 19:44:20.256738 2019-11-13 19:44:20.256738 1 0 0 696 300 932 1.00 1 2019-11-13 19:44:20.258128 2019-11-13 19:44:20.258128 1 0 0 697 300 933 1.00 1 2019-11-13 19:44:20.259542 2019-11-13 19:44:20.259542 1 0 0 698 300 934 1.00 1 2019-11-13 19:44:20.260989 2019-11-13 19:44:20.260989 1 0 0 699 300 935 1.00 1 2019-11-13 19:44:20.262606 2019-11-13 19:44:20.262606 1 0 0 700 300 937 2.00 1 2019-11-13 19:44:20.264037 2019-11-13 19:44:20.264037 2 0 0 701 300 940 2.00 1 2019-11-13 19:44:20.265435 2019-11-13 19:44:20.265435 2 0 0 702 301 937 1.00 1 2019-11-13 20:00:32.212351 2019-11-13 20:00:32.212351 1 0 0 703 302 913 1.00 1 2019-11-13 20:46:03.923107 2019-11-13 20:46:03.923107 1 0 0 704 302 914 1.00 1 2019-11-13 20:46:03.925302 2019-11-13 20:46:03.925302 1 0 0 705 302 915 1.00 1 2019-11-13 20:46:03.926705 2019-11-13 20:46:03.926705 1 0 0 706 302 917 1.00 1 2019-11-13 20:46:03.928054 2019-11-13 20:46:03.928054 1 0 0 707 302 919 2.00 1 2019-11-13 20:46:03.929719 2019-11-13 20:46:03.929719 2 0 0 708 302 920 1.00 1 2019-11-13 20:46:03.931133 2019-11-13 20:46:03.931133 1 0 0 709 302 922 1.00 1 2019-11-13 20:46:03.932597 2019-11-13 20:46:03.932597 1 0 0 710 302 925 1.00 1 2019-11-13 20:46:03.933988 2019-11-13 20:46:03.933988 1 0 0 711 302 926 2.00 1 2019-11-13 20:46:03.935418 2019-11-13 20:46:03.935418 2 0 0 712 302 927 1.00 1 2019-11-13 20:46:03.936898 2019-11-13 20:46:03.936898 1 0 0 713 302 928 2.00 1 2019-11-13 20:46:03.938613 2019-11-13 20:46:03.938613 2 0 0 714 302 929 1.00 1 2019-11-13 20:46:03.940234 2019-11-13 20:46:03.940234 1 0 0 715 302 934 2.00 1 2019-11-13 20:46:03.941599 2019-11-13 20:46:03.941599 2 0 0 716 302 935 1.00 1 2019-11-13 20:46:03.942963 2019-11-13 20:46:03.942963 1 0 0 717 302 936 2.00 1 2019-11-13 20:46:03.94436 2019-11-13 20:46:03.94436 2 0 0 718 302 938 1.00 1 2019-11-13 20:46:03.945865 2019-11-13 20:46:03.945865 1 0 0 719 302 940 1.00 1 2019-11-13 20:46:03.947202 2019-11-13 20:46:03.947202 1 0 0 720 302 942 1.00 1 2019-11-13 20:46:03.948704 2019-11-13 20:46:03.948704 1 0 0 721 302 943 1.00 1 2019-11-13 20:46:03.950262 2019-11-13 20:46:03.950262 1 0 0 722 303 924 1.00 1 2019-11-13 21:28:22.363019 2019-11-13 21:28:22.363019 1 0 0 723 303 916 1.00 1 2019-11-13 21:28:22.364799 2019-11-13 21:28:22.364799 1 0 0 724 304 784 1.00 1 2019-11-13 22:36:19.250886 2019-11-13 22:36:19.250886 1 0 0 725 305 913 2.00 1 2019-11-14 00:54:23.350842 2019-11-14 00:54:23.350842 2 0 0 726 305 914 1.00 1 2019-11-14 00:54:23.352962 2019-11-14 00:54:23.352962 1 0 0 727 305 919 3.00 1 2019-11-14 00:54:23.354465 2019-11-14 00:54:23.354465 3 0 0 728 305 921 2.00 1 2019-11-14 00:54:23.356121 2019-11-14 00:54:23.356121 2 0 0 729 305 927 2.00 1 2019-11-14 00:54:23.357759 2019-11-14 00:54:23.357759 2 0 0 730 305 928 3.00 1 2019-11-14 00:54:23.35925 2019-11-14 00:54:23.35925 3 0 0 731 305 930 3.00 1 2019-11-14 00:54:23.360869 2019-11-14 00:54:23.360869 3 0 0 732 305 931 1.00 1 2019-11-14 00:54:23.362592 2019-11-14 00:54:23.362592 1 0 0 733 305 932 1.00 1 2019-11-14 00:54:23.364128 2019-11-14 00:54:23.364128 1 0 0 734 305 936 1.00 1 2019-11-14 00:54:23.365851 2019-11-14 00:54:23.365851 1 0 0 735 305 942 1.00 1 2019-11-14 00:54:23.367426 2019-11-14 00:54:23.367426 1 0 0 736 305 933 2.00 1 2019-11-14 00:54:23.368977 2019-11-14 00:54:23.368977 2 0 0 737 306 688 5.00 1 2019-11-14 17:26:15.035009 2019-11-14 17:26:15.035009 5 0 0 738 307 663 5.00 1 2019-11-14 17:26:58.392956 2019-11-14 17:26:58.392956 5 0 0 739 307 702 3.00 1 2019-11-14 17:26:58.394512 2019-11-14 17:26:58.394512 3 0 0 740 308 934 2.00 1 2019-11-16 20:36:58.104018 2019-11-16 20:36:58.104018 2 0 0 741 308 943 1.00 1 2019-11-16 20:36:58.105956 2019-11-16 20:36:58.105956 1 0 0 742 308 935 1.00 1 2019-11-16 20:36:58.107562 2019-11-16 20:36:58.107562 1 0 0 743 308 919 2.00 1 2019-11-16 20:36:58.109351 2019-11-16 20:36:58.109351 2 0 0 744 308 936 2.00 1 2019-11-16 20:36:58.110726 2019-11-16 20:36:58.110726 2 0 0 745 308 917 1.00 1 2019-11-16 20:36:58.112104 2019-11-16 20:36:58.112104 1 0 0 746 309 792 3.00 1 2019-11-20 19:34:40.152746 2019-11-20 19:34:40.152746 3 0 0 747 309 793 3.00 1 2019-11-20 19:34:40.154883 2019-11-20 19:34:40.154883 3 0 0 748 309 679 5.00 1 2019-11-20 19:34:40.156256 2019-11-20 19:34:40.156256 5 0 0 749 309 678 1.00 1 2019-11-20 19:34:40.157685 2019-11-20 19:34:40.157685 1 0 0 750 309 697 3.00 1 2019-11-20 19:34:40.159149 2019-11-20 19:34:40.159149 3 0 0 751 310 894 4.00 1 2019-11-20 20:29:43.59153 2019-11-20 20:29:43.59153 4 0 0 752 311 950 6.00 1 2019-11-20 20:32:01.653671 2019-11-20 20:32:01.653671 6 0 0 753 311 945 6.00 1 2019-11-20 20:32:01.656101 2019-11-20 20:32:01.656101 6 0 0 754 311 946 6.00 1 2019-11-20 20:32:01.658233 2019-11-20 20:32:01.658233 6 0 0 755 311 947 6.00 1 2019-11-20 20:32:01.660339 2019-11-20 20:32:01.660339 6 0 0 756 311 865 6.00 1 2019-11-20 20:32:01.662288 2019-11-20 20:32:01.662288 6 0 0 757 312 895 4.00 1 2019-11-20 20:52:11.046438 2019-11-20 20:52:11.046438 4 0 0 758 312 950 6.00 1 2019-11-20 20:52:11.048154 2019-11-20 20:52:11.048154 6 0 0 759 312 948 6.00 1 2019-11-20 20:52:11.049622 2019-11-20 20:52:11.049622 6 0 0 760 312 949 9.00 1 2019-11-20 20:52:11.051117 2019-11-20 20:52:11.051117 9 0 0 761 313 890 6.00 1 2019-11-20 21:02:48.164695 2019-11-20 21:02:48.164695 6 0 0 762 314 889 3.00 1 2019-11-21 18:04:19.715713 2019-11-21 18:04:19.715713 3 0 0 763 314 892 1.00 1 2019-11-21 18:04:19.717725 2019-11-21 18:04:19.717725 1 0 0 764 314 894 4.00 1 2019-11-21 18:04:19.719205 2019-11-21 18:04:19.719205 4 0 0 765 314 895 8.00 1 2019-11-21 18:04:19.720884 2019-11-21 18:04:19.720884 8 0 0 766 314 896 4.00 1 2019-11-21 18:04:19.72223 2019-11-21 18:04:19.72223 4 0 0 767 314 897 4.00 1 2019-11-21 18:04:19.723789 2019-11-21 18:04:19.723789 4 0 0 768 314 898 4.00 1 2019-11-21 18:04:19.725192 2019-11-21 18:04:19.725192 4 0 0 769 314 945 6.00 1 2019-11-21 18:04:19.726504 2019-11-21 18:04:19.726504 6 0 0 770 315 892 2.00 1 2019-11-21 18:08:30.736143 2019-11-21 18:08:30.736143 2 0 0 771 316 944 6.00 1 2019-11-21 18:08:57.713765 2019-11-21 18:08:57.713765 6 0 0 772 317 946 6.00 1 2019-11-21 18:12:53.237399 2019-11-21 18:12:53.237399 6 0 0 773 317 949 9.00 1 2019-11-21 18:12:53.238999 2019-11-21 18:12:53.238999 9 0 0 774 317 911 6.00 1 2019-11-21 18:12:53.24053 2019-11-21 18:12:53.24053 6 0 0 775 317 877 6.00 1 2019-11-21 18:12:53.242029 2019-11-21 18:12:53.242029 6 0 0 776 318 903 1.00 1 2019-11-21 23:45:37.433283 2019-11-21 23:45:37.433283 1 0 0 777 318 783 1.00 1 2019-11-21 23:45:37.435306 2019-11-21 23:45:37.435306 1 0 0 778 319 664 4.00 1 2019-11-23 17:09:32.500298 2019-11-23 17:09:32.500298 4 0 0 779 320 886 6.00 1 2019-11-23 17:10:12.391228 2019-11-23 17:10:12.391228 6 0 0 780 320 760 6.00 1 2019-11-23 17:10:12.394068 2019-11-23 17:10:12.394068 6 0 0 781 321 952 1.00 1 2019-11-23 17:25:53.739516 2019-11-23 17:25:53.739516 1 0 0 782 322 717 2.00 1 2019-11-23 17:27:04.284877 2019-11-23 17:27:04.284877 2 0 0 783 323 952 4.00 1 2019-11-26 01:32:27.688248 2019-11-26 01:32:27.688248 4 0 0 784 323 953 2.00 1 2019-11-26 01:32:27.691696 2019-11-26 01:32:27.691696 2 0 0 785 324 354 1.00 1 2019-11-26 02:13:40.280167 2019-11-26 02:13:40.280167 1 0 0 786 324 361 1.00 1 2019-11-26 02:13:40.284243 2019-11-26 02:13:40.284243 1 0 0 787 325 954 12.00 1 2019-11-26 22:51:01.108548 2019-11-26 22:51:01.108548 12 0 0 788 325 963 6.00 1 2019-11-26 22:51:01.112812 2019-11-26 22:51:01.112812 6 0 0 789 325 961 6.00 1 2019-11-26 22:51:01.116702 2019-11-26 22:51:01.116702 6 0 0 790 325 957 6.00 1 2019-11-26 22:51:01.119241 2019-11-26 22:51:01.119241 6 0 0 791 325 962 6.00 1 2019-11-26 22:51:01.122669 2019-11-26 22:51:01.122669 6 0 0 792 325 958 6.00 1 2019-11-26 22:51:01.125922 2019-11-26 22:51:01.125922 6 0 0 793 326 875 1.00 1 2019-11-26 23:13:06.659891 2019-11-26 23:13:06.659891 1 0 0 794 326 557 1.00 1 2019-11-26 23:13:06.661966 2019-11-26 23:13:06.661966 1 0 0 795 327 955 6.00 1 2019-11-26 23:15:17.950383 2019-11-26 23:15:17.950383 6 0 0 796 327 956 6.00 1 2019-11-26 23:15:17.953656 2019-11-26 23:15:17.953656 6 0 0 797 327 959 6.00 1 2019-11-26 23:15:17.956769 2019-11-26 23:15:17.956769 6 0 0 798 327 960 6.00 1 2019-11-26 23:15:17.959642 2019-11-26 23:15:17.959642 6 0 0 799 327 954 12.00 1 2019-11-26 23:15:17.96293 2019-11-26 23:15:17.96293 12 0 0 800 328 887 6.00 1 2019-11-27 21:18:21.083013 2019-11-27 21:18:21.083013 6 0 0 801 329 783 1.00 1 2019-11-27 23:47:37.094834 2019-11-27 23:47:37.094834 1 0 0 802 330 717 1.00 1 2019-11-28 20:11:05.706338 2019-11-28 20:11:05.706338 1 0 0 803 331 674 4.00 1 2019-11-30 18:32:51.474725 2019-11-30 18:32:51.474725 4 0 0 804 332 698 1.00 1 2019-11-30 18:33:31.298461 2019-11-30 18:33:31.298461 1 0 0 805 333 698 1.00 1 2019-11-30 18:34:00.715726 2019-11-30 18:34:00.715726 1 0 0 806 334 698 1.00 1 2019-11-30 18:34:22.146432 2019-11-30 18:34:22.146432 1 0 0 807 335 717 3.00 1 2019-12-05 17:44:44.267916 2019-12-05 17:44:44.267916 3 0 0 808 335 958 6.00 1 2019-12-05 17:44:44.270775 2019-12-05 17:44:44.270775 6 0 0 809 336 877 6.00 1 2019-12-05 17:45:52.3908 2019-12-05 17:45:52.3908 6 0 0 810 337 912 1.00 1 2019-12-05 18:05:49.901203 2019-12-05 18:05:49.901203 1 0 0 811 338 681 5.00 1 2019-12-05 18:30:03.029531 2019-12-05 18:30:03.029531 5 0 0 812 339 720 1.00 1 2019-12-08 02:47:49.448122 2019-12-08 02:47:49.448122 1 0 0 813 339 716 1.00 1 2019-12-08 02:47:49.450944 2019-12-08 02:47:49.450944 1 0 0 814 340 796 5.00 1 2019-12-10 20:55:15.120657 2019-12-10 20:55:15.120657 5 0 0 815 341 697 1.00 1 2019-12-10 23:09:26.059119 2019-12-10 23:09:26.059119 1 0 0 816 342 911 1.00 1 2019-12-10 23:15:27.563814 2019-12-10 23:15:27.563814 1 0 0 817 343 668 3.00 1 2019-12-11 01:00:27.112015 2019-12-11 01:00:27.112015 3 0 0 818 344 895 4.00 1 2019-12-12 21:41:47.867317 2019-12-12 21:41:47.867317 4 0 0 819 345 642 4.00 1 2019-12-12 21:45:42.362486 2019-12-12 21:45:42.362486 4 0 0 820 345 640 5.00 1 2019-12-12 21:45:42.364741 2019-12-12 21:45:42.364741 5 0 0 821 345 797 5.00 1 2019-12-12 21:45:42.366403 2019-12-12 21:45:42.366403 5 0 0 822 345 808 3.00 1 2019-12-12 21:45:42.367872 2019-12-12 21:45:42.367872 3 0 0 823 345 646 1.00 1 2019-12-12 21:45:42.369308 2019-12-12 21:45:42.369308 1 0 0 824 346 874 2.00 1 2019-12-12 21:49:44.788543 2019-12-12 21:49:44.788543 2 0 0 825 346 670 2.00 1 2019-12-12 21:49:44.79039 2019-12-12 21:49:44.79039 2 0 0 826 346 790 4.00 1 2019-12-12 21:49:44.791815 2019-12-12 21:49:44.791815 4 0 0 827 346 775 3.00 1 2019-12-12 21:49:44.793201 2019-12-12 21:49:44.793201 3 0 0 828 346 944 3.00 1 2019-12-12 21:49:44.794589 2019-12-12 21:49:44.794589 3 0 0 829 347 672 5.00 1 2019-12-15 21:21:51.625971 2019-12-15 21:21:51.625971 5 0 0 830 347 682 3.00 1 2019-12-15 21:21:51.627875 2019-12-15 21:21:51.627875 3 0 0 831 348 696 3.00 1 2019-12-17 23:43:54.488323 2019-12-17 23:43:54.488323 3 0 0 832 348 807 5.00 1 2019-12-17 23:43:54.490246 2019-12-17 23:43:54.490246 5 0 0 833 348 889 5.00 1 2019-12-17 23:43:54.491602 2019-12-17 23:43:54.491602 5 0 0 834 348 951 5.00 1 2019-12-17 23:43:54.493029 2019-12-17 23:43:54.493029 5 0 0 835 348 874 5.00 1 2019-12-17 23:43:54.494471 2019-12-17 23:43:54.494471 5 0 0 836 349 791 3.00 1 2019-12-18 00:56:58.980496 2019-12-18 00:56:58.980496 3 0 0 837 349 957 6.00 1 2019-12-18 00:56:58.983154 2019-12-18 00:56:58.983154 6 0 0 838 349 678 1.00 1 2019-12-18 00:56:58.985073 2019-12-18 00:56:58.985073 1 0 0 839 349 804 6.00 1 2019-12-18 00:56:58.986613 2019-12-18 00:56:58.986613 6 0 0 840 349 761 1.00 1 2019-12-18 00:56:58.988388 2019-12-18 00:56:58.988388 1 0 0 841 349 125 1.00 1 2019-12-18 00:56:58.990132 2019-12-18 00:56:58.990132 1 0 0 842 349 681 4.00 1 2019-12-18 00:56:58.991727 2019-12-18 00:56:58.991727 4 0 0 843 349 870 5.00 1 2019-12-18 00:56:58.993256 2019-12-18 00:56:58.993256 5 0 0 844 349 688 5.00 1 2019-12-18 00:56:58.994781 2019-12-18 00:56:58.994781 5 0 0 845 349 758 6.00 1 2019-12-18 00:56:58.996326 2019-12-18 00:56:58.996326 6 0 0 846 349 790 2.00 1 2019-12-18 00:56:58.997813 2019-12-18 00:56:58.997813 2 0 0 847 349 738 4.00 1 2019-12-18 00:56:58.999454 2019-12-18 00:56:58.999454 4 0 0 848 349 739 3.00 1 2019-12-18 00:56:59.001008 2019-12-18 00:56:59.001008 3 0 0 849 349 701 3.00 1 2019-12-18 00:56:59.002488 2019-12-18 00:56:59.002488 3 0 0 850 350 950 1.00 1 2019-12-18 01:10:09.751033 2019-12-18 01:10:09.751033 1 0 0 851 350 886 7.00 1 2019-12-18 01:10:09.753757 2019-12-18 01:10:09.753757 7 0 0 852 351 567 3.00 1 2019-12-18 02:36:33.358778 2019-12-18 02:36:33.358778 3 0 0 853 352 786 2.00 1 2019-12-18 20:53:29.054181 2019-12-18 20:53:29.054181 2 0 0 854 352 788 1.00 1 2019-12-18 20:53:29.05679 2019-12-18 20:53:29.05679 1 0 0 855 353 948 2.00 1 2019-12-18 21:40:26.605924 2019-12-18 21:40:26.605924 2 0 0 856 354 798 3.00 1 2019-12-18 22:41:39.147499 2019-12-18 22:41:39.147499 3 0 0 857 355 911 3.00 1 2019-12-18 22:42:44.145574 2019-12-18 22:42:44.145574 3 0 0 858 355 676 3.00 1 2019-12-18 22:42:44.147124 2019-12-18 22:42:44.147124 3 0 0 859 355 777 2.00 1 2019-12-18 22:42:44.148523 2019-12-18 22:42:44.148523 2 0 0 860 355 776 3.00 1 2019-12-18 22:42:44.150033 2019-12-18 22:42:44.150033 3 0 0 861 356 793 2.00 1 2019-12-18 23:59:45.699577 2019-12-18 23:59:45.699577 2 0 0 862 357 891 3.00 1 2019-12-20 01:16:42.930918 2019-12-20 01:16:42.930918 3 0 0 863 358 887 3.00 1 2019-12-20 02:24:49.23647 2019-12-20 02:24:49.23647 3 0 0 864 359 875 1.00 1 2019-12-20 17:24:18.254962 2019-12-20 17:24:18.254962 1 0 0 865 359 670 4.00 1 2019-12-20 17:24:18.25694 2019-12-20 17:24:18.25694 4 0 0 866 360 721 1.00 1 2019-12-21 17:55:57.25243 2019-12-21 17:55:57.25243 1 0 0 867 360 449 1.00 1 2019-12-21 17:55:57.254587 2019-12-21 17:55:57.254587 1 0 0 868 360 439 1.00 1 2019-12-21 17:55:57.256059 2019-12-21 17:55:57.256059 1 0 0 869 360 56 1.00 1 2019-12-21 17:55:57.257573 2019-12-21 17:55:57.257573 1 0 0 870 360 49 1.00 1 2019-12-21 17:55:57.259066 2019-12-21 17:55:57.259066 1 0 0 871 361 689 1.00 1 2019-12-21 17:58:00.35231 2019-12-21 17:58:00.35231 1 0 0 872 362 927 1.00 1 2019-12-21 21:24:44.563252 2019-12-21 21:24:44.563252 1 0 0 873 363 674 1.00 1 2019-12-21 21:30:24.916986 2019-12-21 21:30:24.916986 1 0 0 874 364 664 1.00 1 2019-12-21 22:24:30.104999 2019-12-21 22:24:30.104999 1 0 0 875 365 960 6.00 1 2019-12-21 22:27:16.019969 2019-12-21 22:27:16.019969 6 0 0 876 366 893 4.00 1 2019-12-22 00:25:08.56612 2019-12-22 00:25:08.56612 4 0 0 877 366 757 3.00 1 2019-12-22 00:25:08.568105 2019-12-22 00:25:08.568105 3 0 0 878 366 891 3.00 1 2019-12-22 00:25:08.569624 2019-12-22 00:25:08.569624 3 0 0 879 367 891 3.00 1 2019-12-22 00:44:03.689047 2019-12-22 00:44:03.689047 3 0 0 880 367 757 3.00 1 2019-12-22 00:44:03.693115 2019-12-22 00:44:03.693115 3 0 0 881 367 893 4.00 1 2019-12-22 00:44:03.696339 2019-12-22 00:44:03.696339 4 0 0 882 368 895 1.00 1 2019-12-22 02:05:12.672826 2019-12-22 02:05:12.672826 1 0 0 883 369 571 4.00 1 2019-12-22 19:01:28.461389 2019-12-22 19:01:28.461389 4 0 0 884 369 954 2.00 1 2019-12-22 19:01:28.463463 2019-12-22 19:01:28.463463 2 0 0 885 370 775 3.00 1 2019-12-22 19:03:07.154779 2019-12-22 19:03:07.154779 3 0 0 886 371 957 3.00 1 2019-12-22 19:54:12.572105 2019-12-22 19:54:12.572105 3 0 0 887 371 869 3.00 1 2019-12-22 19:54:12.573781 2019-12-22 19:54:12.573781 3 0 0 888 371 954 2.00 1 2019-12-22 19:54:12.575255 2019-12-22 19:54:12.575255 2 0 0 889 372 944 1.00 1 2019-12-22 19:54:53.579272 2019-12-22 19:54:53.579272 1 0 0 890 372 791 3.00 1 2019-12-22 19:54:53.581689 2019-12-22 19:54:53.581689 3 0 0 891 373 867 1.00 1 2019-12-22 23:35:35.441252 2019-12-22 23:35:35.441252 1 0 0 892 374 895 1.00 1 2019-12-23 00:36:43.039482 2019-12-23 00:36:43.039482 1 0 0 893 375 757 1.00 1 2019-12-23 02:21:18.989715 2019-12-23 02:21:18.989715 1 0 0 894 376 891 1.00 1 2019-12-23 19:27:48.690389 2019-12-23 19:27:48.690389 1 0 0 895 377 862 3.00 1 2019-12-23 19:39:08.095985 2019-12-23 19:39:08.095985 3 0 0 896 377 768 1.00 1 2019-12-23 19:39:08.09756 2019-12-23 19:39:08.09756 1 0 0 897 377 783 2.00 1 2019-12-23 19:39:08.098861 2019-12-23 19:39:08.098861 2 0 0 898 378 782 3.00 1 2019-12-23 19:54:57.672722 2019-12-23 19:54:57.672722 3 0 0 899 379 921 1.00 1 2019-12-23 20:50:09.24003 2019-12-23 20:50:09.24003 1 0 0 900 380 889 6.00 1 2019-12-23 22:44:53.124542 2019-12-23 22:44:53.124542 6 0 0 901 381 753 4.00 1 2019-12-23 22:46:21.102409 2019-12-23 22:46:21.102409 4 0 0 902 382 480 1.00 1 2019-12-23 23:09:00.155798 2019-12-23 23:09:00.155798 1 0 0 903 383 737 2.00 1 2019-12-23 23:09:33.837606 2019-12-23 23:09:33.837606 2 0 0 904 384 895 1.00 1 2019-12-24 00:33:19.257571 2019-12-24 00:33:19.257571 1 0 0 905 385 864 3.00 1 2019-12-24 17:43:12.85684 2019-12-24 17:43:12.85684 3 0 0 906 386 954 1.00 1 2019-12-24 17:48:23.057301 2019-12-24 17:48:23.057301 1 0 0 907 387 954 3.00 1 2019-12-24 17:52:56.370656 2019-12-24 17:52:56.370656 3 0 0 908 387 877 3.00 1 2019-12-24 17:52:56.372814 2019-12-24 17:52:56.372814 3 0 0 909 387 966 2.00 1 2019-12-24 17:52:56.374283 2019-12-24 17:52:56.374283 2 0 0 910 387 50 1.00 1 2019-12-24 17:52:56.376032 2019-12-24 17:52:56.376032 1 0 0 911 387 965 1.00 1 2019-12-24 17:52:56.378214 2019-12-24 17:52:56.378214 1 0 0 912 388 864 7.00 1 2019-12-24 19:31:54.986842 2019-12-24 19:31:54.986842 7 0 0 913 389 717 2.00 1 2019-12-24 19:34:35.836171 2019-12-24 19:34:35.836171 2 0 0 914 389 912 1.00 1 2019-12-24 19:34:35.837864 2019-12-24 19:34:35.837864 1 0 0 915 390 911 1.00 1 2019-12-24 19:57:02.676432 2019-12-24 19:57:02.676432 1 0 0 916 391 670 1.00 1 2019-12-24 23:36:47.714361 2019-12-24 23:36:47.714361 1 0 0 917 392 951 3.00 1 2019-12-25 00:05:31.664078 2019-12-25 00:05:31.664078 3 0 0 918 393 954 1.00 1 2019-12-26 20:38:30.022788 2019-12-26 20:38:30.022788 1 0 0 919 393 935 1.00 1 2019-12-26 20:38:30.025724 2019-12-26 20:38:30.025724 1 0 0 920 393 919 1.00 1 2019-12-26 20:38:30.027241 2019-12-26 20:38:30.027241 1 0 0 921 393 926 1.00 1 2019-12-26 20:38:30.028741 2019-12-26 20:38:30.028741 1 0 0 922 393 934 1.00 1 2019-12-26 20:38:30.030188 2019-12-26 20:38:30.030188 1 0 0 923 394 678 3.00 1 2019-12-27 20:27:41.375884 2019-12-27 20:27:41.375884 3 0 0 924 395 678 1.00 1 2019-12-27 20:50:01.126523 2019-12-27 20:50:01.126523 1 0 0 925 396 678 1.00 1 2019-12-27 20:57:50.687733 2019-12-27 20:57:50.687733 1 0 0 926 397 965 1.00 1 2019-12-31 01:10:05.553012 2019-12-31 01:10:05.553012 1 0 0 927 398 634 4.00 1 2019-12-31 21:16:50.727332 2019-12-31 21:16:50.727332 4 0 0 928 399 911 3.00 1 2019-12-31 22:49:20.982722 2019-12-31 22:49:20.982722 3 0 0 929 400 901 3.00 1 2020-01-04 21:31:18.32797 2020-01-04 21:31:18.32797 3 0 0 930 401 894 3.00 1 2020-01-05 01:21:53.605456 2020-01-05 01:21:53.605456 3 0 0 931 402 868 2.00 1 2020-01-07 02:33:38.239065 2020-01-07 02:33:38.239065 2 0 0 932 403 90 3.00 1 2020-01-07 18:58:18.595136 2020-01-07 18:58:18.595136 3 0 0 933 403 119 1.00 1 2020-01-07 18:58:18.597707 2020-01-07 18:58:18.597707 1 0 0 934 403 71 1.00 1 2020-01-07 18:58:18.599365 2020-01-07 18:58:18.599365 1 0 0 935 403 94 1.00 1 2020-01-07 18:58:18.60087 2020-01-07 18:58:18.60087 1 0 0 936 403 287 2.00 1 2020-01-07 18:58:18.602333 2020-01-07 18:58:18.602333 2 0 0 937 403 128 1.00 1 2020-01-07 18:58:18.603813 2020-01-07 18:58:18.603813 1 0 0 938 403 64 2.00 1 2020-01-07 18:58:18.605315 2020-01-07 18:58:18.605315 2 0 0 939 403 69 3.00 1 2020-01-07 18:58:18.606742 2020-01-07 18:58:18.606742 3 0 0 940 403 213 4.00 1 2020-01-07 18:58:18.608181 2020-01-07 18:58:18.608181 4 0 0 941 403 219 3.00 1 2020-01-07 18:58:18.609618 2020-01-07 18:58:18.609618 3 0 0 942 403 536 2.00 1 2020-01-07 18:58:18.611137 2020-01-07 18:58:18.611137 2 0 0 943 403 113 2.00 1 2020-01-07 18:58:18.612632 2020-01-07 18:58:18.612632 2 0 0 944 403 76 1.00 1 2020-01-07 18:58:18.614051 2020-01-07 18:58:18.614051 1 0 0 945 403 233 1.00 1 2020-01-07 18:58:18.615583 2020-01-07 18:58:18.615583 1 0 0 946 403 235 1.00 1 2020-01-07 18:58:18.617002 2020-01-07 18:58:18.617002 1 0 0 947 403 208 4.00 1 2020-01-07 18:58:18.618532 2020-01-07 18:58:18.618532 4 0 0 948 403 217 4.00 1 2020-01-07 18:58:18.620045 2020-01-07 18:58:18.620045 4 0 0 949 403 212 1.00 1 2020-01-07 18:58:18.621574 2020-01-07 18:58:18.621574 1 0 0 950 403 246 2.00 1 2020-01-07 18:58:18.623071 2020-01-07 18:58:18.623071 2 0 0 951 403 231 3.00 1 2020-01-07 18:58:18.624571 2020-01-07 18:58:18.624571 3 0 0 952 403 210 1.00 1 2020-01-07 18:58:18.626093 2020-01-07 18:58:18.626093 1 0 0 953 404 84 2.00 1 2020-01-07 18:58:27.297518 2020-01-07 18:58:27.297518 2 0 0 954 404 66 6.00 1 2020-01-07 18:58:27.299077 2020-01-07 18:58:27.299077 6 0 0 955 404 577 1.00 1 2020-01-07 18:58:27.30047 2020-01-07 18:58:27.30047 1 0 0 956 405 206 4.00 1 2020-01-07 19:02:29.438889 2020-01-07 19:02:29.438889 4 0 0 957 406 652 1.00 1 2020-01-07 21:22:56.752894 2020-01-07 21:22:56.752894 1 0 0 958 406 722 1.00 1 2020-01-07 21:22:56.754529 2020-01-07 21:22:56.754529 1 0 0 959 407 413 1.00 1 2020-01-07 23:42:59.462509 2020-01-07 23:42:59.462509 1 0 0 960 408 669 1.00 1 2020-01-11 01:58:39.087863 2020-01-11 01:58:39.087863 1 0 0 961 409 954 1.00 1 2020-01-11 17:59:24.244031 2020-01-11 17:59:24.244031 1 0 0 962 410 954 4.00 1 2020-01-11 19:06:42.309941 2020-01-11 19:06:42.309941 4 0 0 963 411 871 9.00 1 2020-01-11 19:22:16.050311 2020-01-11 19:22:16.050311 9 0 0 964 412 944 1.00 1 2020-01-12 02:04:00.994403 2020-01-12 02:04:00.994403 1 0 0 965 413 944 1.00 1 2020-01-12 02:05:51.638748 2020-01-12 02:05:51.638748 1 0 0 966 414 867 1.00 1 2020-01-15 18:04:54.884194 2020-01-15 18:04:54.884194 1 0 0 967 415 957 1.00 1 2020-01-18 21:52:20.890794 2020-01-18 21:52:20.890794 1 0 0 968 416 683 6.00 1 2020-01-18 21:56:46.069114 2020-01-18 21:56:46.069114 6 0 0 969 417 789 5.00 1 2020-01-19 00:02:52.711054 2020-01-19 00:02:52.711054 5 0 0 970 418 663 5.00 1 2020-01-19 01:00:30.300535 2020-01-19 01:00:30.300535 5 0 0 971 419 668 13.00 1 2020-01-19 01:06:54.721014 2020-01-19 01:06:54.721014 13 0 0 972 420 947 2.00 1 2020-01-22 01:35:41.355879 2020-01-22 01:35:41.355879 2 0 0 973 421 964 1.00 1 2020-01-24 18:58:38.954063 2020-01-24 18:58:38.954063 1 0 0 974 422 457 2.00 1 2020-01-24 19:02:19.659569 2020-01-24 19:02:19.659569 2 0 0 975 423 638 3.00 1 2020-01-24 23:14:00.838309 2020-01-24 23:14:00.838309 3 0 0 976 423 275 3.00 1 2020-01-24 23:14:00.840435 2020-01-24 23:14:00.840435 3 0 0 977 423 432 3.00 1 2020-01-24 23:14:00.842014 2020-01-24 23:14:00.842014 3 0 0 978 423 431 3.00 1 2020-01-24 23:14:00.843787 2020-01-24 23:14:00.843787 3 0 0 979 423 135 2.00 1 2020-01-24 23:14:00.845607 2020-01-24 23:14:00.845607 2 0 0 980 423 537 6.00 1 2020-01-24 23:14:00.847809 2020-01-24 23:14:00.847809 6 0 0 981 423 624 4.00 1 2020-01-24 23:14:00.849477 2020-01-24 23:14:00.849477 4 0 0 982 423 787 4.00 1 2020-01-24 23:14:00.850939 2020-01-24 23:14:00.850939 4 0 0 983 423 682 4.00 1 2020-01-24 23:14:00.8526 2020-01-24 23:14:00.8526 4 0 0 984 423 611 1.00 1 2020-01-24 23:14:00.85489 2020-01-24 23:14:00.85489 1 0 0 985 423 702 2.00 1 2020-01-24 23:14:00.856881 2020-01-24 23:14:00.856881 2 0 0 986 424 714 3.00 1 2020-01-24 23:24:07.563407 2020-01-24 23:24:07.563407 3 0 0 987 424 670 2.00 1 2020-01-24 23:24:07.565129 2020-01-24 23:24:07.565129 2 0 0 988 424 874 4.00 1 2020-01-24 23:24:07.566584 2020-01-24 23:24:07.566584 4 0 0 989 424 803 6.00 1 2020-01-24 23:24:07.567964 2020-01-24 23:24:07.567964 6 0 0 990 424 887 3.00 1 2020-01-24 23:24:07.569483 2020-01-24 23:24:07.569483 3 0 0 991 424 628 4.00 1 2020-01-24 23:24:07.570879 2020-01-24 23:24:07.570879 4 0 0 992 424 565 3.00 1 2020-01-24 23:24:07.572373 2020-01-24 23:24:07.572373 3 0 0 993 424 608 3.00 1 2020-01-24 23:24:07.573811 2020-01-24 23:24:07.573811 3 0 0 994 424 636 3.00 1 2020-01-24 23:24:07.575181 2020-01-24 23:24:07.575181 3 0 0 995 424 602 4.00 1 2020-01-24 23:24:07.576687 2020-01-24 23:24:07.576687 4 0 0 996 424 713 6.00 1 2020-01-24 23:24:07.578103 2020-01-24 23:24:07.578103 6 0 0 997 424 156 1.00 1 2020-01-24 23:24:07.579642 2020-01-24 23:24:07.579642 1 0 0 998 424 590 2.00 1 2020-01-24 23:24:07.58109 2020-01-24 23:24:07.58109 2 0 0 999 424 618 3.00 1 2020-01-24 23:24:07.582579 2020-01-24 23:24:07.582579 3 0 0 1000 424 513 3.00 1 2020-01-24 23:24:07.58399 2020-01-24 23:24:07.58399 3 0 0 1001 425 291 1.00 1 2020-01-24 23:29:07.370614 2020-01-24 23:29:07.370614 1 0 0 1002 425 292 2.00 1 2020-01-24 23:29:07.372359 2020-01-24 23:29:07.372359 2 0 0 1003 425 280 1.00 1 2020-01-24 23:29:07.37386 2020-01-24 23:29:07.37386 1 0 0 1004 425 279 4.00 1 2020-01-24 23:29:07.375336 2020-01-24 23:29:07.375336 4 0 0 1005 426 684 3.00 1 2020-01-24 23:42:41.793632 2020-01-24 23:42:41.793632 3 0 0 1006 427 569 4.00 1 2020-01-24 23:45:57.352285 2020-01-24 23:45:57.352285 4 0 0 1007 428 599 6.00 1 2020-01-24 23:47:27.21543 2020-01-24 23:47:27.21543 6 0 0 1008 429 605 5.00 1 2020-01-25 17:47:18.512231 2020-01-25 17:47:18.512231 5 0 0 1009 429 252 3.00 1 2020-01-25 17:47:18.514515 2020-01-25 17:47:18.514515 3 0 0 1010 429 609 6.00 1 2020-01-25 17:47:18.516406 2020-01-25 17:47:18.516406 6 0 0 1011 429 607 4.00 1 2020-01-25 17:47:18.518051 2020-01-25 17:47:18.518051 4 0 0 1012 430 893 2.00 1 2020-01-25 18:23:22.153652 2020-01-25 18:23:22.153652 2 0 0 1013 430 890 1.00 1 2020-01-25 18:23:22.155674 2020-01-25 18:23:22.155674 1 0 0 1014 430 954 3.00 1 2020-01-25 18:23:22.157215 2020-01-25 18:23:22.157215 3 0 0 1015 430 676 1.00 1 2020-01-25 18:23:22.158872 2020-01-25 18:23:22.158872 1 0 0 1016 430 944 1.00 1 2020-01-25 18:23:22.160455 2020-01-25 18:23:22.160455 1 0 0 1017 431 494 9.00 1 2020-01-25 18:23:49.338648 2020-01-25 18:23:49.338648 9 0 0 1018 432 407 2.00 1 2020-01-25 19:04:55.38266 2020-01-25 19:04:55.38266 2 0 0 1019 432 414 6.00 1 2020-01-25 19:04:55.384512 2020-01-25 19:04:55.384512 6 0 0 1020 432 567 3.00 1 2020-01-25 19:04:55.386068 2020-01-25 19:04:55.386068 3 0 0 1021 432 406 1.00 1 2020-01-25 19:04:55.387564 2020-01-25 19:04:55.387564 1 0 0 1022 432 405 1.00 1 2020-01-25 19:04:55.389141 2020-01-25 19:04:55.389141 1 0 0 1023 432 409 1.00 1 2020-01-25 19:04:55.390768 2020-01-25 19:04:55.390768 1 0 0 1024 432 408 1.00 1 2020-01-25 19:04:55.392388 2020-01-25 19:04:55.392388 1 0 0 1025 432 402 1.00 1 2020-01-25 19:04:55.393933 2020-01-25 19:04:55.393933 1 0 0 1026 432 399 1.00 1 2020-01-25 19:04:55.395461 2020-01-25 19:04:55.395461 1 0 0 1027 432 314 2.00 1 2020-01-25 19:04:55.396936 2020-01-25 19:04:55.396936 2 0 0 1028 432 425 3.00 1 2020-01-25 19:04:55.398573 2020-01-25 19:04:55.398573 3 0 0 1029 432 739 3.00 1 2020-01-25 19:04:55.400099 2020-01-25 19:04:55.400099 3 0 0 1030 432 223 3.00 1 2020-01-25 19:04:55.401648 2020-01-25 19:04:55.401648 3 0 0 1031 432 738 4.00 1 2020-01-25 19:04:55.403075 2020-01-25 19:04:55.403075 4 0 0 1032 433 295 1.00 1 2020-01-25 19:11:23.496621 2020-01-25 19:11:23.496621 1 0 0 1033 434 913 2.00 1 2020-01-25 19:39:25.417604 2020-01-25 19:39:25.417604 2 0 0 1034 434 919 1.00 1 2020-01-25 19:39:25.419676 2020-01-25 19:39:25.419676 1 0 0 1035 434 928 1.00 1 2020-01-25 19:39:25.421684 2020-01-25 19:39:25.421684 1 0 0 1036 434 930 1.00 1 2020-01-25 19:39:25.423193 2020-01-25 19:39:25.423193 1 0 0 1037 435 122 1.00 1 2020-01-25 22:09:20.620238 2020-01-25 22:09:20.620238 1 0 0 1038 436 323 2.00 1 2020-01-27 23:29:50.511543 2020-01-27 23:29:50.511543 2 0 0 1039 436 81 1.00 1 2020-01-27 23:29:50.513752 2020-01-27 23:29:50.513752 1 0 0 1040 436 278 2.00 1 2020-01-27 23:29:50.515251 2020-01-27 23:29:50.515251 2 0 0 1041 436 277 1.00 1 2020-01-27 23:29:50.516833 2020-01-27 23:29:50.516833 1 0 0 1042 436 77 1.00 1 2020-01-27 23:29:50.518468 2020-01-27 23:29:50.518468 1 0 0 1043 436 79 3.00 1 2020-01-27 23:29:50.520171 2020-01-27 23:29:50.520171 3 0 0 1044 436 83 2.00 1 2020-01-27 23:29:50.521715 2020-01-27 23:29:50.521715 2 0 0 1045 436 80 2.00 1 2020-01-27 23:29:50.52312 2020-01-27 23:29:50.52312 2 0 0 1046 436 78 3.00 1 2020-01-27 23:29:50.524552 2020-01-27 23:29:50.524552 3 0 0 1047 437 117 1.00 1 2020-01-28 19:08:33.601331 2020-01-28 19:08:33.601331 1 0 0 1048 437 67 2.00 1 2020-01-28 19:08:33.603612 2020-01-28 19:08:33.603612 2 0 0 1049 437 315 2.00 1 2020-01-28 19:08:33.605264 2020-01-28 19:08:33.605264 2 0 0 1050 437 293 3.00 1 2020-01-28 19:08:33.606962 2020-01-28 19:08:33.606962 3 0 0 1051 437 68 4.00 1 2020-01-28 19:08:33.608779 2020-01-28 19:08:33.608779 4 0 0 1052 437 205 9.00 1 2020-01-28 19:08:33.610593 2020-01-28 19:08:33.610593 9 0 0 1053 437 711 5.00 1 2020-01-28 19:08:33.612155 2020-01-28 19:08:33.612155 5 0 0 1054 437 207 3.00 1 2020-01-28 19:08:33.61375 2020-01-28 19:08:33.61375 3 0 0 1055 438 209 4.00 1 2020-01-28 19:09:26.882672 2020-01-28 19:09:26.882672 4 0 0 1056 439 176 2.00 1 2020-01-28 19:11:56.404957 2020-01-28 19:11:56.404957 2 0 0 1057 440 176 3.00 1 2020-01-28 19:12:46.628697 2020-01-28 19:12:46.628697 3 0 0 1058 440 164 4.00 1 2020-01-28 19:12:46.631546 2020-01-28 19:12:46.631546 4 0 0 1059 441 527 3.00 1 2020-01-28 20:06:56.881084 2020-01-28 20:06:56.881084 3 0 0 1060 442 299 1.00 1 2020-01-28 20:15:20.521682 2020-01-28 20:15:20.521682 1 0 0 1061 443 329 1.00 1 2020-01-28 20:16:42.741754 2020-01-28 20:16:42.741754 1 0 0 1062 444 257 1.00 1 2020-01-28 20:21:08.254785 2020-01-28 20:21:08.254785 1 0 0 1063 444 236 1.00 1 2020-01-28 20:21:08.257311 2020-01-28 20:21:08.257311 1 0 0 1064 444 238 3.00 1 2020-01-28 20:21:08.260977 2020-01-28 20:21:08.260977 3 0 0 1065 445 578 4.00 1 2020-01-28 23:44:54.266804 2020-01-28 23:44:54.266804 4 0 0 1066 445 604 4.00 1 2020-01-28 23:44:54.269308 2020-01-28 23:44:54.269308 4 0 0 1067 445 498 4.00 1 2020-01-28 23:44:54.270991 2020-01-28 23:44:54.270991 4 0 0 1068 445 637 5.00 1 2020-01-28 23:44:54.272972 2020-01-28 23:44:54.272972 5 0 0 1069 445 666 7.00 1 2020-01-28 23:44:54.274495 2020-01-28 23:44:54.274495 7 0 0 1070 445 579 2.00 1 2020-01-28 23:44:54.276124 2020-01-28 23:44:54.276124 2 0 0 1071 445 627 3.00 1 2020-01-28 23:44:54.277767 2020-01-28 23:44:54.277767 3 0 0 1072 445 564 3.00 1 2020-01-28 23:44:54.279307 2020-01-28 23:44:54.279307 3 0 0 1073 446 757 3.00 1 2020-01-29 00:49:43.251857 2020-01-29 00:49:43.251857 3 0 0 1074 447 550 1.00 1 2020-01-29 01:15:21.207451 2020-01-29 01:15:21.207451 1 0 0 1075 448 7 7.00 1 2020-01-29 01:28:10.875785 2020-01-29 01:28:10.875785 7 0 0 1076 448 14 4.00 1 2020-01-29 01:28:10.878282 2020-01-29 01:28:10.878282 4 0 0 1077 448 15 4.00 1 2020-01-29 01:28:10.879961 2020-01-29 01:28:10.879961 4 0 0 1078 448 408 4.00 1 2020-01-29 01:28:10.881525 2020-01-29 01:28:10.881525 4 0 0 1079 449 896 7.00 1 2020-01-29 02:20:54.717148 2020-01-29 02:20:54.717148 7 0 0 1080 449 895 2.00 1 2020-01-29 02:20:54.719534 2020-01-29 02:20:54.719534 2 0 0 1081 449 897 7.00 1 2020-01-29 02:20:54.721237 2020-01-29 02:20:54.721237 7 0 0 1082 449 858 2.00 1 2020-01-29 02:20:54.722919 2020-01-29 02:20:54.722919 2 0 0 1083 449 855 1.00 1 2020-01-29 02:20:54.724493 2020-01-29 02:20:54.724493 1 0 0 1084 449 857 6.00 1 2020-01-29 02:20:54.726207 2020-01-29 02:20:54.726207 6 0 0 1085 449 766 3.00 1 2020-01-29 02:20:54.727798 2020-01-29 02:20:54.727798 3 0 0 1086 449 770 3.00 1 2020-01-29 02:20:54.729435 2020-01-29 02:20:54.729435 3 0 0 1087 449 769 3.00 1 2020-01-29 02:20:54.731217 2020-01-29 02:20:54.731217 3 0 0 1088 449 767 2.00 1 2020-01-29 02:20:54.732934 2020-01-29 02:20:54.732934 2 0 0 1089 449 765 3.00 1 2020-01-29 02:20:54.734609 2020-01-29 02:20:54.734609 3 0 0 1090 449 775 3.00 1 2020-01-29 02:20:54.736259 2020-01-29 02:20:54.736259 3 0 0 1091 449 776 2.00 1 2020-01-29 02:20:54.737943 2020-01-29 02:20:54.737943 2 0 0 1092 449 774 3.00 1 2020-01-29 02:20:54.739507 2020-01-29 02:20:54.739507 3 0 0 1093 449 779 4.00 1 2020-01-29 02:20:54.741088 2020-01-29 02:20:54.741088 4 0 0 1094 449 737 2.00 1 2020-01-29 02:20:54.742703 2020-01-29 02:20:54.742703 2 0 0 1095 449 945 2.00 1 2020-01-29 02:20:54.744258 2020-01-29 02:20:54.744258 2 0 0 1096 449 781 3.00 1 2020-01-29 02:20:54.745796 2020-01-29 02:20:54.745796 3 0 0 1097 450 859 2.00 1 2020-01-29 02:34:45.64149 2020-01-29 02:34:45.64149 2 0 0 1098 451 647 1.00 1 2020-01-29 18:25:31.140237 2020-01-29 18:25:31.140237 1 0 0 1099 451 650 1.00 1 2020-01-29 18:25:31.142282 2020-01-29 18:25:31.142282 1 0 0 1100 451 957 1.00 1 2020-01-29 18:25:31.143949 2020-01-29 18:25:31.143949 1 0 0 1101 451 911 1.00 1 2020-01-29 18:25:31.145585 2020-01-29 18:25:31.145585 1 0 0 1102 451 888 1.00 1 2020-01-29 18:25:31.147111 2020-01-29 18:25:31.147111 1 0 0 1103 451 649 1.00 1 2020-01-29 18:25:31.148856 2020-01-29 18:25:31.148856 1 0 0 1104 451 773 1.00 1 2020-01-29 18:25:31.150374 2020-01-29 18:25:31.150374 1 0 0 1105 451 772 1.00 1 2020-01-29 18:25:31.151888 2020-01-29 18:25:31.151888 1 0 0 1106 451 946 3.00 1 2020-01-29 18:25:31.153477 2020-01-29 18:25:31.153477 3 0 0 1107 451 782 2.00 1 2020-01-29 18:25:31.154933 2020-01-29 18:25:31.154933 2 0 0 1108 451 786 1.00 1 2020-01-29 18:25:31.156323 2020-01-29 18:25:31.156323 1 0 0 1109 451 791 1.00 1 2020-01-29 18:25:31.158036 2020-01-29 18:25:31.158036 1 0 0 1110 451 788 1.00 1 2020-01-29 18:25:31.159619 2020-01-29 18:25:31.159619 1 0 0 1111 451 793 1.00 1 2020-01-29 18:25:31.16116 2020-01-29 18:25:31.16116 1 0 0 1112 451 792 2.00 1 2020-01-29 18:25:31.162734 2020-01-29 18:25:31.162734 2 0 0 1113 451 783 1.00 1 2020-01-29 18:25:31.16433 2020-01-29 18:25:31.16433 1 0 0 1114 451 856 1.00 1 2020-01-29 18:25:31.165858 2020-01-29 18:25:31.165858 1 0 0 1115 451 860 1.00 1 2020-01-29 18:25:31.167359 2020-01-29 18:25:31.167359 1 0 0 1116 451 861 1.00 1 2020-01-29 18:25:31.169006 2020-01-29 18:25:31.169006 1 0 0 1117 451 780 2.00 1 2020-01-29 18:25:31.170611 2020-01-29 18:25:31.170611 2 0 0 1118 451 778 2.00 1 2020-01-29 18:25:31.172073 2020-01-29 18:25:31.172073 2 0 0 1119 451 863 1.00 1 2020-01-29 18:25:31.173662 2020-01-29 18:25:31.173662 1 0 0 1120 451 646 1.00 1 2020-01-29 18:25:31.175208 2020-01-29 18:25:31.175208 1 0 0 1121 452 771 2.00 1 2020-01-29 18:46:25.880409 2020-01-29 18:46:25.880409 2 0 0 1122 453 499 4.00 1 2020-01-29 19:46:35.409193 2020-01-29 19:46:35.409193 4 0 0 1123 454 772 1.00 1 2020-01-29 20:15:14.225436 2020-01-29 20:15:14.225436 1 0 0 1124 455 869 1.00 1 2020-01-31 00:58:49.478433 2020-01-31 00:58:49.478433 1 0 0 1125 456 396 2.00 1 2020-01-31 02:13:27.37726 2020-01-31 02:13:27.37726 2 0 0 1126 457 300 1.00 1 2020-01-31 18:05:41.45739 2020-01-31 18:05:41.45739 1 0 0 1127 457 798 1.00 1 2020-01-31 18:05:41.460786 2020-01-31 18:05:41.460786 1 0 0 1128 457 643 1.00 1 2020-01-31 18:05:41.462922 2020-01-31 18:05:41.462922 1 0 0 1129 457 286 2.00 1 2020-01-31 18:05:41.464936 2020-01-31 18:05:41.464936 2 0 0 1130 457 645 2.00 1 2020-01-31 18:05:41.466789 2020-01-31 18:05:41.466789 2 0 0 1131 457 663 4.00 1 2020-01-31 18:05:41.468611 2020-01-31 18:05:41.468611 4 0 0 1132 457 877 3.00 1 2020-01-31 18:05:41.470605 2020-01-31 18:05:41.470605 3 0 0 1133 457 949 3.00 1 2020-01-31 18:05:41.472347 2020-01-31 18:05:41.472347 3 0 0 1134 457 664 3.00 1 2020-01-31 18:05:41.47438 2020-01-31 18:05:41.47438 3 0 0 1135 458 644 1.00 1 2020-01-31 18:22:36.474232 2020-01-31 18:22:36.474232 1 0 0 1136 459 874 7.00 1 2020-01-31 19:34:28.936805 2020-01-31 19:34:28.936805 7 0 0 1137 459 602 4.00 1 2020-01-31 19:34:28.938733 2020-01-31 19:34:28.938733 4 0 0 1138 459 787 4.00 1 2020-01-31 19:34:28.940325 2020-01-31 19:34:28.940325 4 0 0 1139 459 670 4.00 1 2020-01-31 19:34:28.942078 2020-01-31 19:34:28.942078 4 0 0 1140 459 710 4.00 1 2020-01-31 19:34:28.94385 2020-01-31 19:34:28.94385 4 0 0 1141 459 871 6.00 1 2020-01-31 19:34:28.945626 2020-01-31 19:34:28.945626 6 0 0 1142 459 697 5.00 1 2020-01-31 19:34:28.947338 2020-01-31 19:34:28.947338 5 0 0 1143 459 702 2.00 1 2020-01-31 19:34:28.949045 2020-01-31 19:34:28.949045 2 0 0 1144 460 552 1.00 1 2020-01-31 19:36:31.357487 2020-01-31 19:36:31.357487 1 0 0 1145 461 324 3.00 1 2020-01-31 19:50:24.805981 2020-01-31 19:50:24.805981 3 0 0 1146 461 310 1.00 1 2020-01-31 19:50:24.80784 2020-01-31 19:50:24.80784 1 0 0 1147 461 534 1.00 1 2020-01-31 19:50:24.809366 2020-01-31 19:50:24.809366 1 0 0 1148 462 479 4.00 1 2020-01-31 19:51:42.498465 2020-01-31 19:51:42.498465 4 0 0 1149 462 141 3.00 1 2020-01-31 19:51:42.501048 2020-01-31 19:51:42.501048 3 0 0 1150 462 72 3.00 1 2020-01-31 19:51:42.503367 2020-01-31 19:51:42.503367 3 0 0 1151 463 661 1.00 1 2020-02-09 00:35:04.482818 2020-02-09 00:35:04.482818 1 0 0 1152 464 8 4.00 1 2020-02-11 17:53:54.051115 2020-02-11 17:53:54.051115 4 0 0 1153 465 415 6.00 1 2020-02-13 18:42:24.812254 2020-02-13 18:42:24.812254 6 0 0 1154 466 134 1.00 1 2020-02-13 19:00:57.646578 2020-02-13 19:00:57.646578 1 0 0 1155 467 664 4.00 1 2020-02-13 19:02:54.587749 2020-02-13 19:02:54.587749 4 0 0 1156 467 681 5.00 1 2020-02-13 19:02:54.590813 2020-02-13 19:02:54.590813 5 0 0 1157 467 754 1.00 1 2020-02-13 19:02:54.593654 2020-02-13 19:02:54.593654 1 0 0 1158 468 714 1.00 1 2020-02-13 19:04:24.819917 2020-02-13 19:04:24.819917 1 0 0 1159 468 802 4.00 1 2020-02-13 19:04:24.821717 2020-02-13 19:04:24.821717 4 0 0 1160 469 757 2.00 1 2020-02-13 19:07:33.472355 2020-02-13 19:07:33.472355 2 0 0 1161 470 962 6.00 1 2020-02-13 19:10:23.908276 2020-02-13 19:10:23.908276 6 0 0 1163 471 516 1.00 1 2020-02-13 19:53:32.281537 2020-02-13 19:53:32.281537 1 0 0 1165 472 351 3.00 1 2020-02-13 20:39:31.405156 2020-02-13 20:39:31.405156 3 0 0 1166 473 295 1.00 1 2020-02-13 21:31:26.890999 2020-02-13 21:31:26.890999 1 0 0 1167 474 663 1.00 1 2020-02-13 23:13:44.766058 2020-02-13 23:13:44.766058 1 0 0 1168 475 754 1.00 1 2020-02-13 23:32:25.461163 2020-02-13 23:32:25.461163 1 0 0 1169 476 898 2.00 1 2020-02-14 01:16:21.140325 2020-02-14 01:16:21.140325 2 0 0 1170 477 888 1.00 1 2020-02-14 19:29:22.931766 2020-02-14 19:29:22.931766 1 0 0 1171 477 638 1.00 1 2020-02-14 19:29:22.933807 2020-02-14 19:29:22.933807 1 0 0 1172 478 519 3.00 1 2020-02-14 20:27:35.888933 2020-02-14 20:27:35.888933 3 0 0 1173 479 644 2.00 1 2020-02-14 20:28:14.388093 2020-02-14 20:28:14.388093 2 0 0 1174 480 413 1.00 1 2020-02-14 20:29:38.602655 2020-02-14 20:29:38.602655 1 0 0 1175 480 412 3.00 1 2020-02-14 20:29:38.604723 2020-02-14 20:29:38.604723 3 0 0 1176 480 494 7.00 1 2020-02-14 20:29:38.60639 2020-02-14 20:29:38.60639 7 0 0 1177 481 713 6.00 1 2020-02-18 18:13:56.660328 2020-02-18 18:13:56.660328 6 0 0 1178 481 152 5.00 1 2020-02-18 18:13:56.663019 2020-02-18 18:13:56.663019 5 0 0 1179 481 685 6.00 1 2020-02-18 18:13:56.664899 2020-02-18 18:13:56.664899 6 0 0 1180 481 529 5.00 1 2020-02-18 18:13:56.666654 2020-02-18 18:13:56.666654 5 0 0 1181 482 981 6.00 1 2020-02-18 21:24:23.535948 2020-02-18 21:24:23.535948 6 0 0 1164 471 576 1.00 1 2020-02-13 19:53:32.282898 2020-02-19 17:45:32.289405 1 0 1 1162 471 497 1.00 1 2020-02-13 19:53:32.279875 2020-02-19 17:48:03.071498 0 1 0 1182 483 690 1.00 1 2020-02-19 17:55:57.68406 2020-02-19 17:55:57.68406 1 0 0 1183 483 177 2.00 1 2020-02-19 17:55:57.686328 2020-02-19 17:55:57.686328 2 0 0 1184 483 284 4.00 1 2020-02-19 17:55:57.687976 2020-02-19 17:55:57.687976 4 0 0 1185 483 68 4.00 1 2020-02-19 17:55:57.689833 2020-02-19 17:55:57.689833 4 0 0 1186 483 209 4.00 1 2020-02-19 17:55:57.6914 2020-02-19 17:55:57.6914 4 0 0 1187 483 630 5.00 1 2020-02-19 17:55:57.693001 2020-02-19 17:55:57.693001 5 0 0 1188 483 419 5.00 1 2020-02-19 17:55:57.694662 2020-02-19 17:55:57.694662 5 0 0 1189 484 576 1.00 1 2020-02-19 17:59:22.133038 2020-02-19 17:59:22.133038 1 0 0 1190 485 416 2.00 1 2020-02-22 18:29:58.771127 2020-02-22 18:29:58.771127 2 0 0 1191 486 516 1.00 1 2020-02-22 18:31:49.166365 2020-02-22 18:31:49.166365 1 0 0 1192 486 161 2.00 1 2020-02-22 18:31:49.169007 2020-02-22 18:31:49.169007 2 0 0 1193 487 506 2.00 1 2020-02-22 20:54:13.300452 2020-02-22 20:54:13.300452 2 0 0 1194 488 401 1.00 1 2020-02-22 22:48:17.108375 2020-02-22 22:48:17.108375 1 0 0 1195 489 670 4.00 1 2020-02-22 23:29:28.217882 2020-02-22 23:29:28.217882 4 0 0 1196 490 489 1.00 1 2020-02-23 00:20:00.5711 2020-02-23 00:20:00.5711 1 0 0 1197 491 1029 4.00 1 2020-02-29 23:42:01.786828 2020-02-29 23:42:01.786828 4 0 0 1198 492 1029 5.00 1 2020-02-29 23:42:42.871773 2020-02-29 23:42:42.871773 5 0 0 1199 493 1029 4.00 1 2020-02-29 23:43:17.689981 2020-02-29 23:43:17.689981 4 0 0 1200 494 1032 1.00 1 2020-03-01 00:08:39.669333 2020-03-01 00:08:39.669333 1 0 0 1201 495 1032 2.00 1 2020-03-01 00:09:22.527067 2020-03-01 00:09:22.527067 2 0 0 1202 496 1033 1.00 1 2020-03-01 00:16:45.211671 2020-03-01 00:16:45.211671 1 0 0 1203 497 1033 1.00 1 2020-03-01 00:17:09.399509 2020-03-01 00:17:09.399509 1 0 0 1204 498 1033 1.00 1 2020-03-01 00:17:34.886804 2020-03-01 00:17:34.886804 1 0 0 1205 499 519 3.00 1 2020-03-01 01:04:22.052609 2020-03-01 01:04:22.052609 3 0 0 1206 500 1047 1.00 1 2020-03-01 01:20:42.759893 2020-03-01 01:20:42.759893 1 0 0 1207 501 1047 2.00 1 2020-03-01 01:29:08.190591 2020-03-01 01:29:08.190591 2 0 0 1208 502 1047 1.00 1 2020-03-01 01:29:32.884737 2020-03-01 01:29:32.884737 1 0 0 1209 503 1053 1.00 1 2020-03-01 01:35:39.816306 2020-03-01 01:35:39.816306 1 0 0 1210 504 1053 1.00 1 2020-03-01 01:36:20.315401 2020-03-01 01:36:20.315401 1 0 0 1211 505 1077 1.00 1 2020-03-01 02:16:18.390736 2020-03-01 02:16:18.390736 1 0 0 1212 506 1077 1.00 1 2020-03-01 02:16:47.266014 2020-03-01 02:16:47.266014 1 0 0 1213 507 1077 1.00 1 2020-03-01 02:17:13.345437 2020-03-01 02:17:13.345437 1 0 0 1214 508 1079 1.00 1 2020-03-01 02:22:02.101299 2020-03-01 02:22:02.101299 1 0 0 1215 509 1079 1.00 1 2020-03-01 02:22:49.661447 2020-03-01 02:22:49.661447 1 0 0 1216 510 549 1.00 1 2020-03-07 21:20:39.536214 2020-03-07 21:20:39.536214 1 0 0 1217 511 891 2.00 1 2020-03-07 21:38:13.913706 2020-03-07 21:38:13.913706 2 0 0 1218 511 955 3.00 1 2020-03-07 21:38:13.91559 2020-03-07 21:38:13.91559 3 0 0 1219 511 956 2.00 1 2020-03-07 21:38:13.917293 2020-03-07 21:38:13.917293 2 0 0 1220 511 877 3.00 1 2020-03-07 21:38:13.918938 2020-03-07 21:38:13.918938 3 0 0 1221 511 903 1.00 1 2020-03-07 21:38:13.920534 2020-03-07 21:38:13.920534 1 0 0 1222 511 896 4.00 1 2020-03-07 21:38:13.922207 2020-03-07 21:38:13.922207 4 0 0 1223 511 862 2.00 1 2020-03-07 21:38:13.923807 2020-03-07 21:38:13.923807 2 0 0 1224 511 728 1.00 1 2020-03-07 21:38:13.925509 2020-03-07 21:38:13.925509 1 0 0 1225 511 893 2.00 1 2020-03-07 21:38:13.927266 2020-03-07 21:38:13.927266 2 0 0 1226 511 724 3.00 1 2020-03-07 21:38:13.928765 2020-03-07 21:38:13.928765 3 0 0 1227 511 971 1.00 1 2020-03-07 21:38:13.930272 2020-03-07 21:38:13.930272 1 0 0 1228 511 752 1.00 1 2020-03-07 21:38:13.931864 2020-03-07 21:38:13.931864 1 0 0 1229 511 869 1.00 1 2020-03-07 21:38:13.933601 2020-03-07 21:38:13.933601 1 0 0 1230 511 790 4.00 1 2020-03-07 21:38:13.9351 2020-03-07 21:38:13.9351 4 0 0 1231 511 786 5.00 1 2020-03-07 21:38:13.936694 2020-03-07 21:38:13.936694 5 0 0 1232 511 947 1.00 1 2020-03-07 21:38:13.938282 2020-03-07 21:38:13.938282 1 0 0 1233 511 725 1.00 1 2020-03-07 21:38:13.939884 2020-03-07 21:38:13.939884 1 0 0 1234 512 1015 6.00 1 2020-03-10 21:36:59.586235 2020-03-10 21:36:59.586235 6 0 0 1235 512 998 5.00 1 2020-03-10 21:36:59.588466 2020-03-10 21:36:59.588466 5 0 0 1236 513 685 6.00 1 2020-03-10 21:45:45.994189 2020-03-10 21:45:45.994189 6 0 0 1237 514 995 3.00 1 2020-03-11 23:33:15.841827 2020-03-11 23:33:15.841827 3 0 0 1238 514 991 1.00 1 2020-03-11 23:33:15.843867 2020-03-11 23:33:15.843867 1 0 0 1239 515 513 3.00 1 2020-03-12 03:04:35.125471 2020-03-12 03:04:35.125471 3 0 0 1240 515 618 3.00 1 2020-03-12 03:04:35.127718 2020-03-12 03:04:35.127718 3 0 0 1241 515 803 6.00 1 2020-03-12 03:04:35.129439 2020-03-12 03:04:35.129439 6 0 0 1242 515 571 4.00 1 2020-03-12 03:04:35.131177 2020-03-12 03:04:35.131177 4 0 0 1243 515 177 2.00 1 2020-03-12 03:04:35.132833 2020-03-12 03:04:35.132833 2 0 0 1244 515 690 1.00 1 2020-03-12 03:04:35.134596 2020-03-12 03:04:35.134596 1 0 0 1245 516 687 6.00 1 2020-03-12 18:38:19.809579 2020-03-12 18:38:19.809579 6 0 0 1246 517 257 1.00 1 2020-03-13 17:24:07.587872 2020-03-13 17:24:07.587872 1 0 0 1247 517 237 1.00 1 2020-03-13 17:24:07.590132 2020-03-13 17:24:07.590132 1 0 0 1248 517 238 3.00 1 2020-03-13 17:24:07.591844 2020-03-13 17:24:07.591844 3 0 0 1249 517 664 1.00 1 2020-03-13 17:24:07.593528 2020-03-13 17:24:07.593528 1 0 0 1250 517 286 2.00 1 2020-03-13 17:24:07.595253 2020-03-13 17:24:07.595253 2 0 0 1251 517 10 2.00 1 2020-03-13 17:24:07.597468 2020-03-13 17:24:07.597468 2 0 0 1252 517 8 1.00 1 2020-03-13 17:24:07.599413 2020-03-13 17:24:07.599413 1 0 0 1253 517 411 3.00 1 2020-03-13 17:24:07.601039 2020-03-13 17:24:07.601039 3 0 0 1254 518 1006 1.00 1 2020-03-13 22:48:36.062401 2020-03-13 22:48:36.062401 1 0 0 1255 519 993 1.00 1 2020-03-14 01:04:39.873666 2020-03-14 01:04:39.873666 1 0 0 1256 520 702 2.00 1 2020-03-14 02:23:00.388294 2020-03-14 02:23:00.388294 2 0 0 1257 521 1096 2.00 1 2020-03-14 20:16:34.401253 2020-03-14 20:16:34.401253 2 0 0 1258 522 1096 2.00 1 2020-03-14 20:18:35.976293 2020-03-14 20:18:35.976293 2 0 0 1259 523 1097 1.00 1 2020-03-14 20:25:58.949881 2020-03-14 20:25:58.949881 1 0 0 1260 524 1097 1.00 1 2020-03-14 20:26:28.694235 2020-03-14 20:26:28.694235 1 0 0 1261 525 1099 1.00 1 2020-03-14 20:54:06.695856 2020-03-14 20:54:06.695856 1 0 0 1262 526 1099 1.00 1 2020-03-14 20:54:33.151795 2020-03-14 20:54:33.151795 1 0 0 1263 527 1100 1.00 1 2020-03-14 20:58:17.69779 2020-03-14 20:58:17.69779 1 0 0 1264 528 1100 1.00 1 2020-03-14 20:58:53.125269 2020-03-14 20:58:53.125269 1 0 0 1265 529 980 1.00 1 2020-03-14 22:37:59.699243 2020-03-14 22:37:59.699243 1 0 0 1266 529 983 1.00 1 2020-03-14 22:37:59.701725 2020-03-14 22:37:59.701725 1 0 0 1267 530 1118 3.00 1 2020-03-17 18:43:04.932981 2020-03-17 18:43:04.932981 3 0 0 1268 531 1118 4.00 1 2020-03-17 18:43:55.291443 2020-03-17 18:43:55.291443 4 0 0 1269 532 1118 5.00 1 2020-03-18 00:53:17.076257 2020-03-18 00:53:17.076257 5 0 0 1270 533 1016 1.00 1 2020-03-19 00:31:33.037556 2020-03-19 00:31:33.037556 1 0 0 1271 534 490 1.00 1 2020-03-19 23:03:30.94049 2020-03-19 23:03:30.94049 1 0 0 1272 535 593 1.00 1 2020-03-21 23:37:57.056554 2020-03-21 23:37:57.056554 1 0 0 1273 536 953 1.00 1 2020-03-22 01:22:07.228309 2020-03-22 01:22:07.228309 1 0 0 1274 536 967 1.00 1 2020-03-22 01:22:07.23002 2020-03-22 01:22:07.23002 1 0 0 1275 536 613 1.00 1 2020-03-22 01:22:07.231413 2020-03-22 01:22:07.231413 1 0 0 1276 537 1011 1.00 1 2020-05-03 23:34:45.552028 2020-05-03 23:34:45.552028 1 0 0 1277 538 1011 1.00 1 2020-05-04 00:06:23.448649 2020-05-04 00:06:23.448649 1 0 0 1278 539 1091 1.00 1 2020-05-04 00:07:49.322452 2020-05-04 00:07:49.322452 1 0 0 1279 540 719 1.00 1 2020-06-23 23:42:06.186466 2020-06-23 23:42:06.186466 1 0 0 1280 541 54 1.00 1 2020-06-23 23:58:41.197259 2020-06-23 23:58:41.197259 1 0 0 1281 541 495 1.00 1 2020-06-23 23:58:41.200301 2020-06-23 23:58:41.200301 1 0 0 1282 541 354 1.00 1 2020-06-23 23:58:41.202539 2020-06-23 23:58:41.202539 1 0 0 1283 541 361 1.00 1 2020-06-23 23:58:41.204654 2020-06-23 23:58:41.204654 1 0 0 1284 541 45 1.00 1 2020-06-23 23:58:41.206756 2020-06-23 23:58:41.206756 1 0 0 1285 541 55 1.00 1 2020-06-23 23:58:41.208742 2020-06-23 23:58:41.208742 1 0 0 1286 541 653 1.00 1 2020-06-23 23:58:41.210729 2020-06-23 23:58:41.210729 1 0 0 1287 541 352 1.00 1 2020-06-23 23:58:41.212708 2020-06-23 23:58:41.212708 1 0 0 1288 541 721 1.00 1 2020-06-23 23:58:41.214644 2020-06-23 23:58:41.214644 1 0 0 1289 541 716 1.00 1 2020-06-23 23:58:41.216731 2020-06-23 23:58:41.216731 1 0 0 1290 542 492 1.00 1 2020-06-23 23:59:52.574331 2020-06-23 23:59:52.574331 1 0 0 1291 543 966 1.00 1 2020-06-24 00:06:38.609229 2020-06-24 00:06:38.609229 1 0 0 1292 544 968 1.00 1 2020-06-24 00:18:40.789268 2020-06-24 00:18:40.789268 1 0 0 1293 545 155 1.00 1 2020-06-24 00:48:21.67993 2020-06-24 00:48:21.67993 1 0 0 1294 546 888 2.00 1 2020-06-24 21:49:59.591023 2020-06-24 21:49:59.591023 2 0 0 1295 546 900 1.00 1 2020-06-24 21:49:59.593898 2020-06-24 21:49:59.593898 1 0 0 1296 546 783 1.00 1 2020-06-24 21:49:59.595493 2020-06-24 21:49:59.595493 1 0 0 1297 546 954 1.00 1 2020-06-24 21:49:59.597075 2020-06-24 21:49:59.597075 1 0 0 1298 546 793 1.00 1 2020-06-24 21:49:59.59853 2020-06-24 21:49:59.59853 1 0 0 1299 546 198 1.00 1 2020-06-24 21:49:59.599978 2020-06-24 21:49:59.599978 1 0 0 1300 546 860 1.00 1 2020-06-24 21:49:59.601531 2020-06-24 21:49:59.601531 1 0 0 1301 546 733 1.00 1 2020-06-24 21:49:59.602868 2020-06-24 21:49:59.602868 1 0 0 1302 546 861 1.00 1 2020-06-24 21:49:59.604289 2020-06-24 21:49:59.604289 1 0 0 1303 546 856 1.00 1 2020-06-24 21:49:59.605667 2020-06-24 21:49:59.605667 1 0 0 1304 546 863 1.00 1 2020-06-24 21:49:59.607035 2020-06-24 21:49:59.607035 1 0 0 1305 546 650 1.00 1 2020-06-24 21:49:59.608397 2020-06-24 21:49:59.608397 1 0 0 1306 546 743 1.00 1 2020-06-24 21:49:59.609882 2020-06-24 21:49:59.609882 1 0 0 1307 546 777 1.00 1 2020-06-24 21:49:59.611228 2020-06-24 21:49:59.611228 1 0 0 1308 546 748 1.00 1 2020-06-24 21:49:59.612635 2020-06-24 21:49:59.612635 1 0 0 1309 546 972 1.00 1 2020-06-24 21:49:59.614092 2020-06-24 21:49:59.614092 1 0 0 1310 546 808 1.00 1 2020-06-24 21:49:59.615436 2020-06-24 21:49:59.615436 1 0 0 1311 546 797 1.00 1 2020-06-24 21:49:59.616948 2020-06-24 21:49:59.616948 1 0 0 1312 546 944 1.00 1 2020-06-24 21:49:59.618371 2020-06-24 21:49:59.618371 1 0 0 1313 546 957 1.00 1 2020-06-24 21:49:59.619721 2020-06-24 21:49:59.619721 1 0 0 1314 546 895 3.00 1 2020-06-24 21:49:59.621205 2020-06-24 21:49:59.621205 3 0 0 1315 546 896 2.00 1 2020-06-24 21:49:59.622596 2020-06-24 21:49:59.622596 2 0 0 1316 546 897 3.00 1 2020-06-24 21:49:59.62396 2020-06-24 21:49:59.62396 3 0 0 1317 546 898 2.00 1 2020-06-24 21:49:59.626116 2020-06-24 21:49:59.626116 2 0 0 1318 546 901 3.00 1 2020-06-24 21:49:59.62759 2020-06-24 21:49:59.62759 3 0 0 1319 546 902 3.00 1 2020-06-24 21:49:59.629051 2020-06-24 21:49:59.629051 3 0 0 1320 546 904 3.00 1 2020-06-24 21:49:59.630413 2020-06-24 21:49:59.630413 3 0 0 1321 546 945 3.00 1 2020-06-24 21:49:59.631755 2020-06-24 21:49:59.631755 3 0 0 1322 546 796 5.00 1 2020-06-24 21:49:59.633188 2020-06-24 21:49:59.633188 5 0 0 1323 546 868 3.00 1 2020-06-24 21:49:59.634624 2020-06-24 21:49:59.634624 3 0 0 1324 546 866 3.00 1 2020-06-24 21:49:59.635985 2020-06-24 21:49:59.635985 3 0 0 1325 546 676 2.00 1 2020-06-24 21:49:59.637456 2020-06-24 21:49:59.637456 2 0 0 1326 546 737 2.00 1 2020-06-24 21:49:59.638919 2020-06-24 21:49:59.638919 2 0 0 1327 546 780 2.00 1 2020-06-24 21:49:59.640299 2020-06-24 21:49:59.640299 2 0 0 1328 546 776 3.00 1 2020-06-24 21:49:59.641664 2020-06-24 21:49:59.641664 3 0 0 1329 546 640 5.00 1 2020-06-24 21:49:59.643133 2020-06-24 21:49:59.643133 5 0 0 1330 546 646 2.00 1 2020-06-24 21:49:59.644478 2020-06-24 21:49:59.644478 2 0 0 1331 546 778 2.00 1 2020-06-24 21:49:59.645881 2020-06-24 21:49:59.645881 2 0 0 1332 546 642 3.00 1 2020-06-24 21:49:59.647354 2020-06-24 21:49:59.647354 3 0 0 1333 547 663 4.00 1 2020-06-24 22:22:35.28907 2020-06-24 22:22:35.28907 4 0 0 1334 547 620 2.00 1 2020-06-24 22:22:35.290971 2020-06-24 22:22:35.290971 2 0 0 1335 547 619 3.00 1 2020-06-24 22:22:35.292509 2020-06-24 22:22:35.292509 3 0 0 1336 547 618 3.00 1 2020-06-24 22:22:35.293968 2020-06-24 22:22:35.293968 3 0 0 1337 547 600 1.00 1 2020-06-24 22:22:35.295438 2020-06-24 22:22:35.295438 1 0 0 1338 547 513 3.00 1 2020-06-24 22:22:35.296837 2020-06-24 22:22:35.296837 3 0 0 1339 547 512 2.00 1 2020-06-24 22:22:35.29841 2020-06-24 22:22:35.29841 2 0 0 1340 547 278 1.00 1 2020-06-24 22:22:35.299956 2020-06-24 22:22:35.299956 1 0 0 1341 547 78 2.00 1 2020-06-24 22:22:35.301469 2020-06-24 22:22:35.301469 2 0 0 1342 547 294 2.00 1 2020-06-24 22:22:35.302865 2020-06-24 22:22:35.302865 2 0 0 1343 547 79 3.00 1 2020-06-24 22:22:35.304266 2020-06-24 22:22:35.304266 3 0 0 1344 547 298 3.00 1 2020-06-24 22:22:35.306179 2020-06-24 22:22:35.306179 3 0 0 1345 547 60 6.00 1 2020-06-24 22:22:35.308892 2020-06-24 22:22:35.308892 6 0 0 1346 547 645 1.00 1 2020-06-24 22:22:35.311145 2020-06-24 22:22:35.311145 1 0 0 1347 547 643 1.00 1 2020-06-24 22:22:35.312941 2020-06-24 22:22:35.312941 1 0 0 1348 547 300 1.00 1 2020-06-24 22:22:35.314441 2020-06-24 22:22:35.314441 1 0 0 1349 547 302 1.00 1 2020-06-24 22:22:35.315775 2020-06-24 22:22:35.315775 1 0 0 1350 547 109 3.00 1 2020-06-24 22:22:35.317134 2020-06-24 22:22:35.317134 3 0 0 1351 547 299 1.00 1 2020-06-24 22:22:35.318529 2020-06-24 22:22:35.318529 1 0 0 1352 547 369 26.00 1 2020-06-24 22:22:35.319836 2020-06-24 22:22:35.319836 26 0 0 1353 547 341 1.00 1 2020-06-24 22:22:35.321198 2020-06-24 22:22:35.321198 1 0 0 1354 548 632 2.00 1 2020-06-24 22:39:33.096806 2020-06-24 22:39:33.096806 2 0 0 1355 548 529 5.00 1 2020-06-24 22:39:33.099537 2020-06-24 22:39:33.099537 5 0 0 1356 548 331 2.00 1 2020-06-24 22:39:33.101737 2020-06-24 22:39:33.101737 2 0 0 1357 548 664 6.00 1 2020-06-24 22:39:33.103886 2020-06-24 22:39:33.103886 6 0 0 1358 548 669 1.00 1 2020-06-24 22:39:33.106001 2020-06-24 22:39:33.106001 1 0 0 1359 548 681 3.00 1 2020-06-24 22:39:33.108176 2020-06-24 22:39:33.108176 3 0 0 1360 548 671 4.00 1 2020-06-24 22:39:33.110296 2020-06-24 22:39:33.110296 4 0 0 1361 548 665 2.00 1 2020-06-24 22:39:33.112523 2020-06-24 22:39:33.112523 2 0 0 1362 548 688 2.00 1 2020-06-24 22:39:33.114593 2020-06-24 22:39:33.114593 2 0 0 1363 548 799 1.00 1 2020-06-24 22:39:33.116805 2020-06-24 22:39:33.116805 1 0 0 1364 548 309 1.00 1 2020-06-24 22:39:33.118987 2020-06-24 22:39:33.118987 1 0 0 1365 548 125 1.00 1 2020-06-24 22:39:33.121207 2020-06-24 22:39:33.121207 1 0 0 1366 548 320 1.00 1 2020-06-24 22:39:33.12338 2020-06-24 22:39:33.12338 1 0 0 1367 548 328 1.00 1 2020-06-24 22:39:33.125514 2020-06-24 22:39:33.125514 1 0 0 1368 548 532 1.00 1 2020-06-24 22:39:33.127599 2020-06-24 22:39:33.127599 1 0 0 1369 548 713 6.00 1 2020-06-24 22:39:33.129657 2020-06-24 22:39:33.129657 6 0 0 1370 548 761 2.00 1 2020-06-24 22:39:33.131776 2020-06-24 22:39:33.131776 2 0 0 1371 548 798 2.00 1 2020-06-24 22:39:33.134016 2020-06-24 22:39:33.134016 2 0 0 1372 548 803 6.00 1 2020-06-24 22:39:33.136262 2020-06-24 22:39:33.136262 6 0 0 1373 548 1016 2.00 1 2020-06-24 22:39:33.138383 2020-06-24 22:39:33.138383 2 0 0 1374 548 316 4.00 1 2020-06-24 22:39:33.140618 2020-06-24 22:39:33.140618 4 0 0 1375 548 319 2.00 1 2020-06-24 22:39:33.142782 2020-06-24 22:39:33.142782 2 0 0 1376 548 320 2.00 1 2020-06-24 22:39:33.145755 2020-06-24 22:39:33.145755 2 0 0 1377 548 323 2.00 1 2020-06-24 22:39:33.148002 2020-06-24 22:39:33.148002 2 0 0 1378 549 435 2.00 1 2020-06-24 22:58:44.583823 2020-06-24 22:58:44.583823 2 0 0 1379 549 397 2.00 1 2020-06-24 22:58:44.586417 2020-06-24 22:58:44.586417 2 0 0 1380 549 789 5.00 1 2020-06-24 22:58:44.587865 2020-06-24 22:58:44.587865 5 0 0 1381 549 791 2.00 1 2020-06-24 22:58:44.58938 2020-06-24 22:58:44.58938 2 0 0 1382 549 1004 5.00 1 2020-06-24 22:58:44.590701 2020-06-24 22:58:44.590701 5 0 0 1383 549 1005 5.00 1 2020-06-24 22:58:44.592336 2020-06-24 22:58:44.592336 5 0 0 1384 549 558 4.00 1 2020-06-24 22:58:44.59386 2020-06-24 22:58:44.59386 4 0 0 1385 549 1000 3.00 1 2020-06-24 22:58:44.595316 2020-06-24 22:58:44.595316 3 0 0 1386 549 160 1.00 1 2020-06-24 22:58:44.596727 2020-06-24 22:58:44.596727 1 0 0 1387 549 163 1.00 1 2020-06-24 22:58:44.598062 2020-06-24 22:58:44.598062 1 0 0 1388 549 421 1.00 1 2020-06-24 22:58:44.599487 2020-06-24 22:58:44.599487 1 0 0 1389 549 692 1.00 1 2020-06-24 22:58:44.600937 2020-06-24 22:58:44.600937 1 0 0 1390 549 574 2.00 1 2020-06-24 22:58:44.602295 2020-06-24 22:58:44.602295 2 0 0 1391 549 575 2.00 1 2020-06-24 22:58:44.603633 2020-06-24 22:58:44.603633 2 0 0 1392 549 177 2.00 1 2020-06-24 22:58:44.605097 2020-06-24 22:58:44.605097 2 0 0 1393 549 422 1.00 1 2020-06-24 22:58:44.606517 2020-06-24 22:58:44.606517 1 0 0 1394 549 181 2.00 1 2020-06-24 22:58:44.608072 2020-06-24 22:58:44.608072 2 0 0 1395 549 571 2.00 1 2020-06-24 22:58:44.609968 2020-06-24 22:58:44.609968 2 0 0 1396 550 1012 4.00 1 2020-06-25 00:14:52.50883 2020-06-25 00:14:52.50883 4 0 0 1397 550 1011 2.00 1 2020-06-25 00:14:52.510522 2020-06-25 00:14:52.510522 2 0 0 1398 550 1010 6.00 1 2020-06-25 00:14:52.511835 2020-06-25 00:14:52.511835 6 0 0 1399 550 1003 3.00 1 2020-06-25 00:14:52.513225 2020-06-25 00:14:52.513225 3 0 0 1400 550 993 5.00 1 2020-06-25 00:14:52.514689 2020-06-25 00:14:52.514689 5 0 0 1401 550 950 1.00 1 2020-06-25 00:14:52.516126 2020-06-25 00:14:52.516126 1 0 0 1402 550 949 8.00 1 2020-06-25 00:14:52.517849 2020-06-25 00:14:52.517849 8 0 0 1403 550 507 1.00 1 2020-06-25 00:14:52.519487 2020-06-25 00:14:52.519487 1 0 0 1404 550 152 5.00 1 2020-06-25 00:14:52.520937 2020-06-25 00:14:52.520937 5 0 0 1405 550 151 1.00 1 2020-06-25 00:14:52.522494 2020-06-25 00:14:52.522494 1 0 0 1406 550 147 1.00 1 2020-06-25 00:14:52.523858 2020-06-25 00:14:52.523858 1 0 0 1407 550 62 2.00 1 2020-06-25 00:14:52.525239 2020-06-25 00:14:52.525239 2 0 0 1408 550 92 1.00 1 2020-06-25 00:14:52.526626 2020-06-25 00:14:52.526626 1 0 0 1409 550 77 1.00 1 2020-06-25 00:14:52.528227 2020-06-25 00:14:52.528227 1 0 0 1410 550 80 2.00 1 2020-06-25 00:14:52.529659 2020-06-25 00:14:52.529659 2 0 0 1411 551 1014 1.00 1 2020-06-25 00:33:57.220671 2020-06-25 00:33:57.220671 1 0 0 1412 551 329 1.00 1 2020-06-25 00:33:57.222495 2020-06-25 00:33:57.222495 1 0 0 1413 551 680 1.00 1 2020-06-25 00:33:57.223955 2020-06-25 00:33:57.223955 1 0 0 1414 551 690 1.00 1 2020-06-25 00:33:57.225541 2020-06-25 00:33:57.225541 1 0 0 1415 551 1018 3.00 1 2020-06-25 00:33:57.226904 2020-06-25 00:33:57.226904 3 0 0 1416 551 1019 3.00 1 2020-06-25 00:33:57.228476 2020-06-25 00:33:57.228476 3 0 0 1417 551 408 3.00 1 2020-06-25 00:33:57.230101 2020-06-25 00:33:57.230101 3 0 0 1418 551 10 1.00 1 2020-06-25 00:33:57.231713 2020-06-25 00:33:57.231713 1 0 0 1419 551 13 5.00 1 2020-06-25 00:33:57.233226 2020-06-25 00:33:57.233226 5 0 0 1420 551 391 1.00 1 2020-06-25 00:33:57.234688 2020-06-25 00:33:57.234688 1 0 0 1421 551 220 1.00 1 2020-06-25 00:33:57.236147 2020-06-25 00:33:57.236147 1 0 0 1422 551 427 1.00 1 2020-06-25 00:33:57.237626 2020-06-25 00:33:57.237626 1 0 0 1423 552 236 1.00 1 2020-06-25 00:38:51.338704 2020-06-25 00:38:51.338704 1 0 0 1424 552 171 3.00 1 2020-06-25 00:38:51.340356 2020-06-25 00:38:51.340356 3 0 0 1425 552 810 1.00 1 2020-06-25 00:38:51.341828 2020-06-25 00:38:51.341828 1 0 0 1426 553 502 1.00 1 2020-06-25 00:47:21.761212 2020-06-25 00:47:21.761212 1 0 0 1427 553 585 1.00 1 2020-06-25 00:47:21.762784 2020-06-25 00:47:21.762784 1 0 0 1428 553 625 2.00 1 2020-06-25 00:47:21.764372 2020-06-25 00:47:21.764372 2 0 0 1429 553 661 1.00 1 2020-06-25 00:47:21.765747 2020-06-25 00:47:21.765747 1 0 0 1430 553 678 1.00 1 2020-06-25 00:47:21.767268 2020-06-25 00:47:21.767268 1 0 0 1431 553 686 2.00 1 2020-06-25 00:47:21.768631 2020-06-25 00:47:21.768631 2 0 0 1432 553 701 1.00 1 2020-06-25 00:47:21.769986 2020-06-25 00:47:21.769986 1 0 0 1433 553 710 1.00 1 2020-06-25 00:47:21.771294 2020-06-25 00:47:21.771294 1 0 0 1434 553 999 2.00 1 2020-06-25 00:47:21.77295 2020-06-25 00:47:21.77295 2 0 0 1435 554 701 1.00 1 2020-06-25 01:03:08.552463 2020-06-25 01:03:08.552463 1 0 0 1436 554 423 2.00 1 2020-06-25 01:03:08.554801 2020-06-25 01:03:08.554801 2 0 0 1437 554 201 2.00 1 2020-06-25 01:03:08.55697 2020-06-25 01:03:08.55697 2 0 0 1438 554 672 6.00 1 2020-06-25 01:03:08.558973 2020-06-25 01:03:08.558973 6 0 0 1439 554 788 2.00 1 2020-06-25 01:03:08.56102 2020-06-25 01:03:08.56102 2 0 0 1440 554 673 2.00 1 2020-06-25 01:03:08.563116 2020-06-25 01:03:08.563116 2 0 0 1441 555 635 5.00 1 2020-06-25 01:14:48.359406 2020-06-25 01:14:48.359406 5 0 0 1442 556 629 2.00 1 2020-06-25 01:15:44.514655 2020-06-25 01:15:44.514655 2 0 0 1443 557 1089 1.00 1 2020-06-25 01:21:21.083289 2020-06-25 01:21:21.083289 1 0 0 1444 557 1067 1.00 1 2020-06-25 01:21:21.084862 2020-06-25 01:21:21.084862 1 0 0 1445 557 1096 1.00 1 2020-06-25 01:21:21.086277 2020-06-25 01:21:21.086277 1 0 0 1446 557 1097 1.00 1 2020-06-25 01:21:21.08765 2020-06-25 01:21:21.08765 1 0 0 1447 557 1026 1.00 1 2020-06-25 01:21:21.089146 2020-06-25 01:21:21.089146 1 0 0 1448 557 1100 1.00 1 2020-06-25 01:21:21.090476 2020-06-25 01:21:21.090476 1 0 0 1449 558 928 1.00 1 2020-06-25 01:29:12.641879 2020-06-25 01:29:12.641879 1 0 0 1450 558 1027 1.00 1 2020-06-25 01:29:12.643596 2020-06-25 01:29:12.643596 1 0 0 1451 558 1026 3.00 1 2020-06-25 01:29:12.645105 2020-06-25 01:29:12.645105 3 0 0 1452 558 915 1.00 1 2020-06-25 01:29:12.646394 2020-06-25 01:29:12.646394 1 0 0 1453 558 1029 2.00 1 2020-06-25 01:29:12.647754 2020-06-25 01:29:12.647754 2 0 0 1454 559 783 1.00 1 2020-06-25 01:30:49.329884 2020-06-25 01:30:49.329884 1 0 0 1455 559 868 2.00 1 2020-06-25 01:30:49.331375 2020-06-25 01:30:49.331375 2 0 0 1456 559 954 6.00 1 2020-06-25 01:30:49.33285 2020-06-25 01:30:49.33285 6 0 0 1457 560 1099 1.00 1 2020-06-25 01:32:29.448706 2020-06-25 01:32:29.448706 1 0 0 1458 560 1091 1.00 1 2020-06-25 01:32:29.4504 2020-06-25 01:32:29.4504 1 0 0 1459 561 401 1.00 1 2020-06-25 01:33:14.516949 2020-06-25 01:33:14.516949 1 0 0 1460 561 1003 3.00 1 2020-06-25 01:33:14.519019 2020-06-25 01:33:14.519019 3 0 0 1461 561 804 5.00 1 2020-06-25 01:33:14.520658 2020-06-25 01:33:14.520658 5 0 0 1462 561 520 4.00 1 2020-06-25 01:33:14.52223 2020-06-25 01:33:14.52223 4 0 0 1463 561 682 3.00 1 2020-06-25 01:33:14.523763 2020-06-25 01:33:14.523763 3 0 0 1464 561 1006 5.00 1 2020-06-25 01:33:14.525399 2020-06-25 01:33:14.525399 5 0 0 1465 561 1007 5.00 1 2020-06-25 01:33:14.526858 2020-06-25 01:33:14.526858 5 0 0 1466 561 1017 4.00 1 2020-06-25 01:33:14.528635 2020-06-25 01:33:14.528635 4 0 0 1467 562 1053 1.00 1 2020-06-25 01:34:40.094944 2020-06-25 01:34:40.094944 1 0 0 1468 563 367 39.00 1 2020-06-25 01:36:12.51077 2020-06-25 01:36:12.51077 39 0 0 1469 564 1009 4.00 1 2020-06-25 01:37:06.887157 2020-06-25 01:37:06.887157 4 0 0 1470 565 913 2.00 1 2020-06-25 01:39:02.837264 2020-06-25 01:39:02.837264 2 0 0 1471 565 926 1.00 1 2020-06-25 01:39:02.838922 2020-06-25 01:39:02.838922 1 0 0 1472 565 1028 1.00 1 2020-06-25 01:39:02.840329 2020-06-25 01:39:02.840329 1 0 0 1473 565 1032 1.00 1 2020-06-25 01:39:02.841752 2020-06-25 01:39:02.841752 1 0 0 1474 565 1033 1.00 1 2020-06-25 01:39:02.843138 2020-06-25 01:39:02.843138 1 0 0 1475 565 1047 1.00 1 2020-06-25 01:39:02.84454 2020-06-25 01:39:02.84454 1 0 0 1476 565 1067 1.00 1 2020-06-25 01:39:02.846028 2020-06-25 01:39:02.846028 1 0 0 1477 565 1077 1.00 1 2020-06-25 01:39:02.847423 2020-06-25 01:39:02.847423 1 0 0 1478 565 1100 1.00 1 2020-06-25 01:39:02.849083 2020-06-25 01:39:02.849083 1 0 0 1479 565 1095 1.00 1 2020-06-25 01:39:02.850453 2020-06-25 01:39:02.850453 1 0 0 1480 566 934 1.00 1 2020-06-25 01:40:11.935805 2020-06-25 01:40:11.935805 1 0 0 1481 566 1092 1.00 1 2020-06-25 01:40:11.937403 2020-06-25 01:40:11.937403 1 0 0 1482 566 1096 1.00 1 2020-06-25 01:40:11.9388 2020-06-25 01:40:11.9388 1 0 0 1483 567 496 4.00 1 2020-06-25 01:48:24.330085 2020-06-25 01:48:24.330085 4 0 0 1484 568 1001 5.00 1 2020-06-25 01:48:52.700765 2020-06-25 01:48:52.700765 5 0 0 1485 569 1008 4.00 1 2020-06-25 01:49:33.250891 2020-06-25 01:49:33.250891 4 0 0 1486 569 997 3.00 1 2020-06-25 01:49:33.252461 2020-06-25 01:49:33.252461 3 0 0 1487 570 870 2.00 1 2020-06-25 01:50:54.279651 2020-06-25 01:50:54.279651 2 0 0 1488 570 871 6.00 1 2020-06-25 01:50:54.281162 2020-06-25 01:50:54.281162 6 0 0 1489 570 793 2.00 1 2020-06-25 01:50:54.282487 2020-06-25 01:50:54.282487 2 0 0 1490 570 957 3.00 1 2020-06-25 01:50:54.283843 2020-06-25 01:50:54.283843 3 0 0 1491 570 959 2.00 1 2020-06-25 01:50:54.285186 2020-06-25 01:50:54.285186 2 0 0 1492 571 895 3.00 1 2020-06-25 01:54:20.610288 2020-06-25 01:54:20.610288 3 0 0 1493 571 897 3.00 1 2020-06-25 01:54:20.612223 2020-06-25 01:54:20.612223 3 0 0 1494 572 557 2.00 1 2020-06-25 01:55:01.852291 2020-06-25 01:55:01.852291 2 0 0 1495 572 202 2.00 1 2020-06-25 01:55:01.85382 2020-06-25 01:55:01.85382 2 0 0 1496 573 981 5.00 1 2020-06-25 01:55:37.30551 2020-06-25 01:55:37.30551 5 0 0 1497 574 81 1.00 1 2020-06-25 19:04:29.044951 2020-06-25 19:04:29.044951 1 0 0 1498 574 81 1.00 1 2020-06-25 19:04:29.047041 2020-06-25 19:04:29.047041 1 0 0 1499 574 1092 1.00 1 2020-06-25 19:04:29.048604 2020-06-25 19:04:29.048604 1 0 0 1500 574 163 1.00 1 2020-06-25 19:04:29.050148 2020-06-25 19:04:29.050148 1 0 0 1501 574 160 1.00 1 2020-06-25 19:04:29.051702 2020-06-25 19:04:29.051702 1 0 0 1502 574 788 1.00 1 2020-06-25 19:04:29.053101 2020-06-25 19:04:29.053101 1 0 0 1503 575 198 1.00 1 2020-06-25 19:07:14.906333 2020-06-25 19:07:14.906333 1 0 0 1504 576 920 1.00 1 2020-06-25 19:08:13.872151 2020-06-25 19:08:13.872151 1 0 0 1505 577 430 1.00 1 2020-06-25 19:12:04.395504 2020-06-25 19:12:04.395504 1 0 0 1506 578 281 4.00 1 2020-06-25 19:22:03.083385 2020-06-25 19:22:03.083385 4 0 0 1507 578 297 1.00 1 2020-06-25 19:22:03.085507 2020-06-25 19:22:03.085507 1 0 0 1508 578 301 1.00 1 2020-06-25 19:22:03.086921 2020-06-25 19:22:03.086921 1 0 0 1509 578 508 2.00 1 2020-06-25 19:22:03.08835 2020-06-25 19:22:03.08835 2 0 0 1510 578 394 1.00 1 2020-06-25 19:22:03.089747 2020-06-25 19:22:03.089747 1 0 0 1511 579 732 1.00 1 2020-06-25 19:25:19.262257 2020-06-25 19:25:19.262257 1 0 0 1512 580 644 1.00 1 2020-06-25 19:27:53.97836 2020-06-25 19:27:53.97836 1 0 0 1513 581 476 11.00 1 2020-06-25 19:30:38.040529 2020-06-25 19:30:38.040529 11 0 0 1514 582 668 18.00 1 2020-06-25 19:32:47.896977 2020-06-25 19:32:47.896977 18 0 0 1515 583 773 1.00 1 2020-06-25 20:24:17.963858 2020-06-25 20:24:17.963858 1 0 0 1516 583 649 1.00 1 2020-06-25 20:24:17.965569 2020-06-25 20:24:17.965569 1 0 0 1517 583 731 1.00 1 2020-06-25 20:24:17.966989 2020-06-25 20:24:17.966989 1 0 0 1518 583 732 1.00 1 2020-06-25 20:24:17.968409 2020-06-25 20:24:17.968409 1 0 0 1519 583 742 1.00 1 2020-06-25 20:24:17.969721 2020-06-25 20:24:17.969721 1 0 0 1520 584 1001 5.00 1 2020-06-25 20:37:05.20213 2020-06-25 20:37:05.20213 5 0 0 1521 584 1022 5.00 1 2020-06-25 20:37:05.203716 2020-06-25 20:37:05.203716 5 0 0 1522 584 981 2.00 1 2020-06-25 20:37:05.20518 2020-06-25 20:37:05.20518 2 0 0 1523 585 877 1.00 1 2020-06-25 20:50:03.445505 2020-06-25 20:50:03.445505 1 0 0 1524 585 871 1.00 1 2020-06-25 20:50:03.447113 2020-06-25 20:50:03.447113 1 0 0 1525 585 946 5.00 1 2020-06-25 20:50:03.44851 2020-06-25 20:50:03.44851 5 0 0 1526 585 753 4.00 1 2020-06-25 20:50:03.449992 2020-06-25 20:50:03.449992 4 0 0 1527 585 757 5.00 1 2020-06-25 20:50:03.451445 2020-06-25 20:50:03.451445 5 0 0 1528 585 736 4.00 1 2020-06-25 20:50:03.453056 2020-06-25 20:50:03.453056 4 0 0 1529 585 973 4.00 1 2020-06-25 20:50:03.454509 2020-06-25 20:50:03.454509 4 0 0 1530 585 977 3.00 1 2020-06-25 20:50:03.456078 2020-06-25 20:50:03.456078 3 0 0 1531 586 990 4.00 1 2020-06-25 20:55:01.312853 2020-06-25 20:55:01.312853 4 0 0 1532 586 987 3.00 1 2020-06-25 20:55:01.314821 2020-06-25 20:55:01.314821 3 0 0 1533 586 985 5.00 1 2020-06-25 20:55:01.316692 2020-06-25 20:55:01.316692 5 0 0 1534 586 754 4.00 1 2020-06-25 20:55:01.31826 2020-06-25 20:55:01.31826 4 0 0 1535 586 885 3.00 1 2020-06-25 20:55:01.320028 2020-06-25 20:55:01.320028 3 0 0 1536 587 264 1.00 1 2020-06-25 21:36:36.658784 2020-06-25 21:36:36.658784 1 0 0 1537 588 270 1.00 1 2020-06-25 21:45:59.323486 2020-06-25 21:45:59.323486 1 0 0 1538 588 268 1.00 1 2020-06-25 21:45:59.325245 2020-06-25 21:45:59.325245 1 0 0 1539 589 693 3.00 1 2020-06-26 19:02:37.625618 2020-06-26 19:02:37.625618 3 0 0 1540 589 697 6.00 1 2020-06-26 19:02:37.627594 2020-06-26 19:02:37.627594 6 0 0 1541 590 352 1.00 1 2020-06-26 19:02:58.031576 2020-06-26 19:02:58.031576 1 0 0 1542 591 1118 7.00 1 2020-06-26 20:57:10.259752 2020-06-26 20:57:10.259752 7 0 0 1543 592 713 6.00 1 2020-07-01 06:01:46.127048 2020-07-01 06:01:46.127048 6 0 0 1544 592 975 3.00 1 2020-07-01 06:01:46.130027 2020-07-01 06:01:46.130027 3 0 0 1545 592 988 6.00 1 2020-07-01 06:01:46.132214 2020-07-01 06:01:46.132214 6 0 0 1546 592 989 3.00 1 2020-07-01 06:01:46.134333 2020-07-01 06:01:46.134333 3 0 0 1547 593 537 5.00 1 2020-07-01 19:13:20.114149 2020-07-01 19:13:20.114149 5 0 0 1548 593 479 4.00 1 2020-07-01 19:13:20.116699 2020-07-01 19:13:20.116699 4 0 0 1549 593 141 3.00 1 2020-07-01 19:13:20.118246 2020-07-01 19:13:20.118246 3 0 0 1550 593 72 3.00 1 2020-07-01 19:13:20.120683 2020-07-01 19:13:20.120683 3 0 0 1551 593 275 1.00 1 2020-07-01 19:13:20.122203 2020-07-01 19:13:20.122203 1 0 0 1552 593 524 5.00 1 2020-07-01 19:13:20.123732 2020-07-01 19:13:20.123732 5 0 0 1553 593 590 7.00 1 2020-07-01 19:13:20.125784 2020-07-01 19:13:20.125784 7 0 0 1554 593 636 1.00 1 2020-07-01 19:13:20.127442 2020-07-01 19:13:20.127442 1 0 0 1555 593 206 4.00 1 2020-07-01 19:13:20.129151 2020-07-01 19:13:20.129151 4 0 0 1556 593 246 2.00 1 2020-07-01 19:13:20.130494 2020-07-01 19:13:20.130494 2 0 0 1557 593 212 1.00 1 2020-07-01 19:13:20.131849 2020-07-01 19:13:20.131849 1 0 0 1558 593 94 1.00 1 2020-07-01 19:13:20.133292 2020-07-01 19:13:20.133292 1 0 0 1559 593 113 1.00 1 2020-07-01 19:13:20.134681 2020-07-01 19:13:20.134681 1 0 0 1560 593 208 4.00 1 2020-07-01 19:13:20.136087 2020-07-01 19:13:20.136087 4 0 0 1561 593 90 1.00 1 2020-07-01 19:13:20.1376 2020-07-01 19:13:20.1376 1 0 0 1562 593 69 3.00 1 2020-07-01 19:13:20.139004 2020-07-01 19:13:20.139004 3 0 0 1563 593 64 2.00 1 2020-07-01 19:13:20.140567 2020-07-01 19:13:20.140567 2 0 0 1564 593 66 5.00 1 2020-07-01 19:13:20.142322 2020-07-01 19:13:20.142322 5 0 0 1565 593 84 2.00 1 2020-07-01 19:13:20.14385 2020-07-01 19:13:20.14385 2 0 0 1566 593 217 4.00 1 2020-07-01 19:13:20.14539 2020-07-01 19:13:20.14539 4 0 0 1567 593 970 3.00 1 2020-07-01 19:13:20.14673 2020-07-01 19:13:20.14673 3 0 0 1568 593 231 3.00 1 2020-07-01 19:13:20.14821 2020-07-01 19:13:20.14821 3 0 0 1569 593 235 1.00 1 2020-07-01 19:13:20.14967 2020-07-01 19:13:20.14967 1 0 0 1570 593 233 1.00 1 2020-07-01 19:13:20.15108 2020-07-01 19:13:20.15108 1 0 0 1571 594 71 1.00 1 2020-07-01 19:14:01.656163 2020-07-01 19:14:01.656163 1 0 0 1572 595 864 1.00 1 2020-07-01 19:15:36.170691 2020-07-01 19:15:36.170691 1 0 0 1573 596 351 1.00 1 2020-07-01 19:16:35.566314 2020-07-01 19:16:35.566314 1 0 0 1574 597 155 2.00 1 2020-07-01 20:49:04.140603 2020-07-01 20:49:04.140603 2 0 0 1575 598 677 3.00 1 2020-07-01 21:46:12.812058 2020-07-01 21:46:12.812058 3 0 0 1576 599 17 5.00 1 2020-07-01 22:41:31.486339 2020-07-01 22:41:31.486339 5 0 0 1577 600 1122 5.00 1 2020-07-02 17:53:02.293154 2020-07-02 17:53:02.293154 5 0 0 1578 600 1126 7.00 1 2020-07-02 17:53:02.295371 2020-07-02 17:53:02.295371 7 0 0 1579 601 333 1.00 1 2020-07-02 17:55:36.252842 2020-07-02 17:55:36.252842 1 0 0 1580 602 258 1.00 1 2020-07-02 18:03:04.546061 2020-07-02 18:03:04.546061 1 0 0 1581 602 637 4.00 1 2020-07-02 18:03:04.547831 2020-07-02 18:03:04.547831 4 0 0 1582 602 578 4.00 1 2020-07-02 18:03:04.549512 2020-07-02 18:03:04.549512 4 0 0 1583 602 713 6.00 1 2020-07-02 18:03:04.55093 2020-07-02 18:03:04.55093 6 0 0 1584 602 673 2.00 1 2020-07-02 18:03:04.55241 2020-07-02 18:03:04.55241 2 0 0 1585 602 657 1.00 1 2020-07-02 18:03:04.553907 2020-07-02 18:03:04.553907 1 0 0 1586 602 1001 5.00 1 2020-07-02 18:03:04.555275 2020-07-02 18:03:04.555275 5 0 0 1587 602 581 5.00 1 2020-07-02 18:03:04.556681 2020-07-02 18:03:04.556681 5 0 0 1588 602 395 5.00 1 2020-07-02 18:03:04.558163 2020-07-02 18:03:04.558163 5 0 0 1589 602 551 4.00 1 2020-07-02 18:03:04.559579 2020-07-02 18:03:04.559579 4 0 0 1590 602 699 4.00 1 2020-07-02 18:03:04.560933 2020-07-02 18:03:04.560933 4 0 0 1591 602 666 7.00 1 2020-07-02 18:03:04.562277 2020-07-02 18:03:04.562277 7 0 0 1592 602 833 1.00 1 2020-07-02 18:03:04.563673 2020-07-02 18:03:04.563673 1 0 0 1593 603 1089 1.00 1 2020-07-02 18:05:25.73339 2020-07-02 18:05:25.73339 1 0 0 1594 604 874 7.00 1 2020-07-02 19:54:02.678007 2020-07-02 19:54:02.678007 7 0 0 1595 605 404 3.00 1 2020-07-02 20:19:42.029522 2020-07-02 20:19:42.029522 3 0 0 1596 605 190 2.00 1 2020-07-02 20:19:42.031433 2020-07-02 20:19:42.031433 2 0 0 1597 606 158 2.00 1 2020-07-02 20:22:46.091311 2020-07-02 20:22:46.091311 2 0 0 1598 607 36 1.00 1 2020-07-03 21:51:15.321251 2020-07-03 21:51:15.321251 1 0 0 1599 608 602 3.00 1 2020-07-03 21:52:08.616918 2020-07-03 21:52:08.616918 3 0 0 1600 609 871 9.00 1 2020-07-03 22:05:29.997873 2020-07-03 22:05:29.997873 9 0 0 1601 610 63 1.00 1 2020-07-03 22:14:03.196882 2020-07-03 22:14:03.196882 1 0 0 1602 611 485 1.00 1 2020-07-03 22:26:58.384302 2020-07-03 22:26:58.384302 1 0 0 1603 611 185 2.00 1 2020-07-03 22:26:58.386325 2020-07-03 22:26:58.386325 2 0 0 1604 611 475 3.00 1 2020-07-03 22:26:58.387944 2020-07-03 22:26:58.387944 3 0 0 1605 611 221 5.00 1 2020-07-03 22:26:58.389434 2020-07-03 22:26:58.389434 5 0 0 1606 612 483 1.00 1 2020-07-03 22:29:38.527638 2020-07-03 22:29:38.527638 1 0 0 1607 612 239 1.00 1 2020-07-03 22:29:38.529701 2020-07-03 22:29:38.529701 1 0 0 1608 613 908 2.00 1 2020-07-03 22:31:36.134283 2020-07-03 22:31:36.134283 2 0 0 1609 613 907 2.00 1 2020-07-03 22:31:36.136102 2020-07-03 22:31:36.136102 2 0 0 1610 613 906 1.00 1 2020-07-03 22:31:36.137574 2020-07-03 22:31:36.137574 1 0 0 1611 613 905 3.00 1 2020-07-03 22:31:36.139024 2020-07-03 22:31:36.139024 3 0 0 1612 614 407 2.00 1 2020-07-03 23:27:51.10239 2020-07-03 23:27:51.10239 2 0 0 1613 614 200 1.00 1 2020-07-03 23:27:51.104747 2020-07-03 23:27:51.104747 1 0 0 1614 614 405 1.00 1 2020-07-03 23:27:51.10665 2020-07-03 23:27:51.10665 1 0 0 1615 614 407 2.00 1 2020-07-03 23:27:51.108416 2020-07-03 23:27:51.108416 2 0 0 1616 615 18 3.00 1 2020-07-03 23:29:42.894103 2020-07-03 23:29:42.894103 3 0 0 1617 615 277 1.00 1 2020-07-03 23:29:42.895664 2020-07-03 23:29:42.895664 1 0 0 1618 616 387 2.00 1 2020-07-04 00:00:51.71994 2020-07-04 00:00:51.71994 2 0 0 1619 616 172 2.00 1 2020-07-04 00:00:51.721823 2020-07-04 00:00:51.721823 2 0 0 1620 617 1029 3.00 1 2020-07-04 00:04:34.990409 2020-07-04 00:04:34.990409 3 0 0 1621 618 386 2.00 1 2020-07-04 00:11:00.065877 2020-07-04 00:11:00.065877 2 0 0 1622 618 1101 4.00 1 2020-07-04 00:11:00.068728 2020-07-04 00:11:00.068728 4 0 0 1623 618 1102 1.00 1 2020-07-04 00:11:00.071012 2020-07-04 00:11:00.071012 1 0 0 1624 618 1103 1.00 1 2020-07-04 00:11:00.073236 2020-07-04 00:11:00.073236 1 0 0 1625 618 1104 1.00 1 2020-07-04 00:11:00.075365 2020-07-04 00:11:00.075365 1 0 0 1626 619 1033 1.00 1 2020-07-04 18:31:18.834046 2020-07-04 18:31:18.834046 1 0 0 1627 620 1089 1.00 1 2020-07-04 18:37:36.88652 2020-07-04 18:37:36.88652 1 0 0 1628 621 1038 1.00 1 2020-07-04 18:44:00.633879 2020-07-04 18:44:00.633879 1 0 0 1629 622 1098 1.00 1 2020-07-04 18:58:06.294238 2020-07-04 18:58:06.294238 1 0 0 1630 623 1131 1.00 1 2020-07-06 21:09:30.273038 2020-07-06 21:09:30.273038 1 0 0 1631 624 1118 1.00 1 2020-07-07 18:31:18.262558 2020-07-07 18:31:18.262558 1 0 0 1632 624 1146 1.00 1 2020-07-07 18:31:18.266743 2020-07-07 18:31:18.266743 1 0 0 1633 624 265 2.00 1 2020-07-07 18:31:18.270093 2020-07-07 18:31:18.270093 2 0 0 1634 625 1027 1.00 1 2020-07-07 23:37:40.560529 2020-07-07 23:37:40.560529 1 0 0 1635 626 936 1.00 1 2020-07-07 23:37:50.413681 2020-07-07 23:37:50.413681 1 0 0 1636 627 19 5.00 1 2020-07-07 23:53:04.879253 2020-07-07 23:53:04.879253 5 0 0 1637 628 435 1.00 1 2020-07-08 19:26:57.913724 2020-07-08 19:26:57.913724 1 0 0 1638 628 270 1.00 1 2020-07-08 19:26:57.915799 2020-07-08 19:26:57.915799 1 0 0 1639 628 1118 1.00 1 2020-07-08 19:26:57.917421 2020-07-08 19:26:57.917421 1 0 0 1640 629 713 1.00 1 2020-07-10 19:46:22.75875 2020-07-10 19:46:22.75875 1 0 0 1641 630 1126 3.00 1 2020-07-11 17:10:49.852988 2020-07-11 17:10:49.852988 3 0 0 1642 630 1118 1.00 1 2020-07-11 17:10:49.855801 2020-07-11 17:10:49.855801 1 0 0 1643 630 268 1.00 1 2020-07-11 17:10:49.857803 2020-07-11 17:10:49.857803 1 0 0 1644 631 263 1.00 1 2020-07-11 17:22:49.784479 2020-07-11 17:22:49.784479 1 0 0 1645 631 272 1.00 1 2020-07-11 17:22:49.786259 2020-07-11 17:22:49.786259 1 0 0 1646 631 274 2.00 1 2020-07-11 17:22:49.78767 2020-07-11 17:22:49.78767 2 0 0 1647 631 266 3.00 1 2020-07-11 17:22:49.789155 2020-07-11 17:22:49.789155 3 0 0 1648 631 269 22.00 1 2020-07-11 17:22:49.790634 2020-07-11 17:22:49.790634 22 0 0 1649 631 271 1.00 1 2020-07-11 17:22:49.792054 2020-07-11 17:22:49.792054 1 0 0 1650 631 273 3.00 1 2020-07-11 17:22:49.79343 2020-07-11 17:22:49.79343 3 0 0 1651 632 259 2.00 1 2020-07-11 17:24:00.511064 2020-07-11 17:24:00.511064 2 0 0 1652 633 258 1.00 1 2020-07-11 20:14:59.137899 2020-07-11 20:14:59.137899 1 0 0 1653 633 486 1.00 1 2020-07-11 20:14:59.139958 2020-07-11 20:14:59.139958 1 0 0 1654 633 348 1.00 1 2020-07-11 20:14:59.14136 2020-07-11 20:14:59.14136 1 0 0 1655 633 333 1.00 1 2020-07-11 20:14:59.142755 2020-07-11 20:14:59.142755 1 0 0 1656 633 31 1.00 1 2020-07-11 20:14:59.144138 2020-07-11 20:14:59.144138 1 0 0 1657 633 335 2.00 1 2020-07-11 20:14:59.145586 2020-07-11 20:14:59.145586 2 0 0 1658 633 339 1.00 1 2020-07-11 20:14:59.147059 2020-07-11 20:14:59.147059 1 0 0 1659 633 33 1.00 1 2020-07-11 20:14:59.148415 2020-07-11 20:14:59.148415 1 0 0 1660 633 40 1.00 1 2020-07-11 20:14:59.149803 2020-07-11 20:14:59.149803 1 0 0 1661 634 367 2.00 1 2020-07-15 20:54:05.063054 2020-07-15 20:54:05.063054 2 0 0 1662 634 1122 1.00 1 2020-07-15 20:54:05.06669 2020-07-15 20:54:05.06669 1 0 0 1663 635 31 1.00 1 2020-07-17 19:44:27.936911 2020-07-17 19:44:27.936911 1 0 0 1664 635 335 2.00 1 2020-07-17 19:44:27.940249 2020-07-17 19:44:27.940249 2 0 0 1665 635 339 1.00 1 2020-07-17 19:44:27.942675 2020-07-17 19:44:27.942675 1 0 0 1666 635 33 1.00 1 2020-07-17 19:44:27.944982 2020-07-17 19:44:27.944982 1 0 0 1667 635 40 1.00 1 2020-07-17 19:44:27.947253 2020-07-17 19:44:27.947253 1 0 0 1668 636 109 3.00 1 2020-07-18 16:16:07.290344 2020-07-18 16:16:07.290344 3 0 0 1669 636 552 2.00 1 2020-07-18 16:16:07.293024 2020-07-18 16:16:07.293024 2 0 0 1670 636 800 3.00 1 2020-07-18 16:16:07.294515 2020-07-18 16:16:07.294515 3 0 0 1671 636 643 3.00 1 2020-07-18 16:16:07.295995 2020-07-18 16:16:07.295995 3 0 0 1672 636 513 2.00 1 2020-07-18 16:16:07.297363 2020-07-18 16:16:07.297363 2 0 0 1673 636 993 2.00 1 2020-07-18 16:16:07.298912 2020-07-18 16:16:07.298912 2 0 0 1674 636 666 3.00 1 2020-07-18 16:16:07.300519 2020-07-18 16:16:07.300519 3 0 0 1675 636 1021 3.00 1 2020-07-18 16:16:07.302009 2020-07-18 16:16:07.302009 3 0 0 1676 636 713 2.00 1 2020-07-18 16:16:07.30348 2020-07-18 16:16:07.30348 2 0 0 1677 636 1001 2.00 1 2020-07-18 16:16:07.305608 2020-07-18 16:16:07.305608 2 0 0 1678 637 528 3.00 1 2020-07-19 00:16:56.976996 2020-07-19 00:16:56.976996 3 0 0 1679 637 247 3.00 1 2020-07-19 00:16:56.97908 2020-07-19 00:16:56.97908 3 0 0 1680 637 985 2.00 1 2020-07-19 00:16:56.98066 2020-07-19 00:16:56.98066 2 0 0 1681 637 887 3.00 1 2020-07-19 00:16:56.982193 2020-07-19 00:16:56.982193 3 0 0 1682 637 498 4.00 1 2020-07-19 00:16:56.983602 2020-07-19 00:16:56.983602 4 0 0 1683 637 981 2.00 1 2020-07-19 00:16:56.985064 2020-07-19 00:16:56.985064 2 0 0 1684 637 1152 1.00 1 2020-07-19 00:16:56.9865 2020-07-19 00:16:56.9865 1 0 0 1685 637 591 2.00 1 2020-07-19 00:16:56.987901 2020-07-19 00:16:56.987901 2 0 0 1686 638 1126 1.00 1 2020-07-20 17:01:33.941501 2020-07-20 17:01:33.941501 1 0 0 1687 638 529 2.00 1 2020-07-20 17:01:33.943412 2020-07-20 17:01:33.943412 2 0 0 1688 639 152 3.00 1 2020-07-21 22:32:38.79896 2020-07-21 22:32:38.79896 3 0 0 1689 640 934 1.00 1 2020-07-21 22:38:26.229046 2020-07-21 22:38:26.229046 1 0 0 1690 641 994 3.00 1 2020-07-23 19:26:00.844485 2020-07-23 19:26:00.844485 3 0 0 1691 642 986 3.00 1 2020-07-24 16:45:01.802811 2020-07-24 16:45:01.802811 3 0 0 1692 642 529 1.00 1 2020-07-24 16:45:01.804768 2020-07-24 16:45:01.804768 1 0 0 1693 643 1122 1.00 1 2020-07-25 19:13:00.971574 2020-07-25 19:13:00.971574 1 0 0 1694 644 653 1.00 1 2020-07-27 16:20:22.715093 2020-07-27 16:20:22.715093 1 0 0 1695 644 498 1.00 1 2020-07-27 16:20:22.717045 2020-07-27 16:20:22.717045 1 0 0 1696 645 590 1.00 1 2020-07-30 18:53:08.267504 2020-07-30 18:53:08.267504 1 0 0 1697 646 1137 1.00 1 2020-08-07 20:16:58.125399 2020-08-07 20:16:58.125399 1 0 0 1698 646 1135 1.00 1 2020-08-07 20:16:58.127383 2020-08-07 20:16:58.127383 1 0 0 1699 647 1181 1.00 1 2020-08-07 21:54:27.500971 2020-08-07 21:54:27.500971 1 0 0 1700 647 1148 1.00 1 2020-08-07 21:54:27.503306 2020-08-07 21:54:27.503306 1 0 0 1701 647 1180 1.00 1 2020-08-07 21:54:27.505675 2020-08-07 21:54:27.505675 1 0 0 1702 647 1184 1.00 1 2020-08-07 21:54:27.507999 2020-08-07 21:54:27.507999 1 0 0 1703 647 1185 1.00 1 2020-08-07 21:54:27.5105 2020-08-07 21:54:27.5105 1 0 0 1704 648 791 3.00 1 2020-08-08 23:14:51.519802 2020-08-08 23:14:51.519802 3 0 0 1705 648 789 4.00 1 2020-08-08 23:14:51.521746 2020-08-08 23:14:51.521746 4 0 0 1706 648 788 4.00 1 2020-08-08 23:14:51.523105 2020-08-08 23:14:51.523105 4 0 0 1707 648 786 1.00 1 2020-08-08 23:14:51.524559 2020-08-08 23:14:51.524559 1 0 0 1708 648 782 12.00 1 2020-08-08 23:14:51.525946 2020-08-08 23:14:51.525946 12 0 0 1709 648 807 2.00 1 2020-08-08 23:14:51.527339 2020-08-08 23:14:51.527339 2 0 0 1710 649 1005 3.00 1 2020-08-13 17:54:13.887627 2020-08-13 17:54:13.887627 3 0 0 1711 649 590 1.00 1 2020-08-13 17:54:13.889666 2020-08-13 17:54:13.889666 1 0 0 1712 649 998 2.00 1 2020-08-13 17:54:13.891056 2020-08-13 17:54:13.891056 2 0 0 1713 649 1012 3.00 1 2020-08-13 17:54:13.892502 2020-08-13 17:54:13.892502 3 0 0 1714 649 1004 2.00 1 2020-08-13 17:54:13.893953 2020-08-13 17:54:13.893953 2 0 0 1715 650 579 2.00 1 2020-08-15 16:29:07.841986 2020-08-15 16:29:07.841986 2 0 0 1716 651 200 1.00 1 2020-08-15 17:32:57.73925 2020-08-15 17:32:57.73925 1 0 0 1717 652 521 3.00 1 2020-08-15 17:38:19.291134 2020-08-15 17:38:19.291134 3 0 0 1718 653 682 1.00 1 2020-08-15 20:06:06.311968 2020-08-15 20:06:06.311968 1 0 0 1719 654 475 3.00 1 2020-08-15 20:09:07.230211 2020-08-15 20:09:07.230211 3 0 0 1720 655 185 2.00 1 2020-08-15 21:32:02.166159 2020-08-15 21:32:02.166159 2 0 0 1721 656 1263 1.00 1 2020-08-17 00:50:01.699453 2020-08-17 00:50:01.699453 1 0 0 1722 656 1259 1.00 1 2020-08-17 00:50:01.701555 2020-08-17 00:50:01.701555 1 0 0 1723 657 1081 1.00 1 2020-08-17 01:18:18.527204 2020-08-17 01:18:18.527204 1 0 0 1724 657 1116 1.00 1 2020-08-17 01:18:18.529026 2020-08-17 01:18:18.529026 1 0 0 1725 657 1085 1.00 1 2020-08-17 01:18:18.530577 2020-08-17 01:18:18.530577 1 0 0 1726 657 1260 1.00 1 2020-08-17 01:18:18.531992 2020-08-17 01:18:18.531992 1 0 0 1727 657 1076 1.00 1 2020-08-17 01:18:18.5335 2020-08-17 01:18:18.5335 1 0 0 1728 657 1034 1.00 1 2020-08-17 01:18:18.53495 2020-08-17 01:18:18.53495 1 0 0 1729 657 1070 1.00 1 2020-08-17 01:18:18.536461 2020-08-17 01:18:18.536461 1 0 0 1730 657 705 2.00 1 2020-08-17 01:18:18.53793 2020-08-17 01:18:18.53793 2 0 0 1731 657 830 1.00 1 2020-08-17 01:18:18.539428 2020-08-17 01:18:18.539428 1 0 0 1732 657 1035 1.00 1 2020-08-17 01:18:18.541231 2020-08-17 01:18:18.541231 1 0 0 1733 657 1112 1.00 1 2020-08-17 01:18:18.542776 2020-08-17 01:18:18.542776 1 0 0 1734 658 1045 1.00 1 2020-08-17 01:21:29.48913 2020-08-17 01:21:29.48913 1 0 0 1735 658 1066 1.00 1 2020-08-17 01:21:29.490805 2020-08-17 01:21:29.490805 1 0 0 1736 658 1040 1.00 1 2020-08-17 01:21:29.492378 2020-08-17 01:21:29.492378 1 0 0 1737 659 1258 1.00 1 2020-08-17 18:56:31.715165 2020-08-17 18:56:31.715165 1 0 0 1738 659 1262 2.00 1 2020-08-17 18:56:31.717695 2020-08-17 18:56:31.717695 2 0 0 1739 659 1264 1.00 1 2020-08-17 18:56:31.71925 2020-08-17 18:56:31.71925 1 0 0 1740 659 1266 1.00 1 2020-08-17 18:56:31.720787 2020-08-17 18:56:31.720787 1 0 0 1741 659 1254 1.00 1 2020-08-17 18:56:31.722404 2020-08-17 18:56:31.722404 1 0 0 1742 659 1255 1.00 1 2020-08-17 18:56:31.723861 2020-08-17 18:56:31.723861 1 0 0 1743 659 1268 1.00 1 2020-08-17 18:56:31.725747 2020-08-17 18:56:31.725747 1 0 0 1744 659 1267 1.00 1 2020-08-17 18:56:31.727315 2020-08-17 18:56:31.727315 1 0 0 1745 659 1257 1.00 1 2020-08-17 18:56:31.728788 2020-08-17 18:56:31.728788 1 0 0 1746 659 1256 1.00 1 2020-08-17 18:56:31.73025 2020-08-17 18:56:31.73025 1 0 0 1747 659 1263 1.00 1 2020-08-17 18:56:31.731699 2020-08-17 18:56:31.731699 1 0 0 1748 659 1252 1.00 1 2020-08-17 18:56:31.733585 2020-08-17 18:56:31.733585 1 0 0 1749 659 1265 1.00 1 2020-08-17 18:56:31.735027 2020-08-17 18:56:31.735027 1 0 0 1750 660 529 2.00 1 2020-08-17 19:35:36.677154 2020-08-17 19:35:36.677154 2 0 0 1751 661 1253 1.00 1 2020-08-17 19:42:34.395421 2020-08-17 19:42:34.395421 1 0 0 1752 662 1261 1.00 1 2020-08-17 20:17:26.167851 2020-08-17 20:17:26.167851 1 0 0 1753 663 339 1.00 1 2020-08-22 18:15:15.968333 2020-08-22 18:15:15.968333 1 0 0 1754 663 38 1.00 1 2020-08-22 18:15:15.970387 2020-08-22 18:15:15.970387 1 0 0 1755 663 335 1.00 1 2020-08-22 18:15:15.971836 2020-08-22 18:15:15.971836 1 0 0 1756 664 695 1.00 1 2020-08-22 22:04:34.521334 2020-08-22 22:04:34.521334 1 0 0 1757 665 1004 2.00 1 2020-08-24 22:02:49.688454 2020-08-24 22:02:49.688454 2 0 0 1758 666 1004 2.00 1 2020-08-24 22:13:59.201489 2020-08-24 22:13:59.201489 2 0 0 1759 667 1118 1.00 1 2020-08-24 22:39:31.583207 2020-08-24 22:39:31.583207 1 0 0 1760 668 1126 2.00 1 2020-08-25 22:24:21.422137 2020-08-25 22:24:21.422137 2 0 0 1761 669 348 1.00 1 2020-08-27 20:27:11.683049 2020-08-27 20:27:11.683049 1 0 0 1762 669 1181 1.00 1 2020-08-27 20:27:11.685308 2020-08-27 20:27:11.685308 1 0 0 1763 669 1148 1.00 1 2020-08-27 20:27:11.686858 2020-08-27 20:27:11.686858 1 0 0 1764 670 258 1.00 1 2020-08-29 22:03:56.314423 2020-08-29 22:03:56.314423 1 0 0 1765 671 1159 2.00 1 2020-09-07 16:49:47.976444 2020-09-07 16:49:47.976444 2 0 0 1766 671 1126 8.00 1 2020-09-07 16:49:47.978639 2020-09-07 16:49:47.978639 8 0 0 1767 671 264 1.00 1 2020-09-07 16:49:47.98018 2020-09-07 16:49:47.98018 1 0 0 1768 671 269 10.00 1 2020-09-07 16:49:47.98175 2020-09-07 16:49:47.98175 10 0 0 1769 671 484 7.00 1 2020-09-07 16:49:47.98315 2020-09-07 16:49:47.98315 7 0 0 1770 671 259 1.00 1 2020-09-07 16:49:47.984864 2020-09-07 16:49:47.984864 1 0 0 1771 671 274 5.00 1 2020-09-07 16:49:47.986393 2020-09-07 16:49:47.986393 5 0 0 1772 671 271 1.00 1 2020-09-07 16:49:47.987758 2020-09-07 16:49:47.987758 1 0 0 1773 671 268 1.00 1 2020-09-07 16:49:47.989139 2020-09-07 16:49:47.989139 1 0 0 1774 672 1321 3.00 1 2020-09-07 20:12:34.625404 2020-09-07 20:12:34.625404 3 0 0 1775 673 1335 1.00 1 2020-09-10 23:01:41.718906 2020-09-10 23:01:41.718906 1 0 0 1776 674 1185 1.00 1 2020-09-15 21:28:30.1182 2020-09-15 21:28:30.1182 1 0 0 1777 674 1191 1.00 1 2020-09-15 21:28:30.121428 2020-09-15 21:28:30.121428 1 0 0 1778 674 1301 1.00 1 2020-09-15 21:28:30.123282 2020-09-15 21:28:30.123282 1 0 0 1779 674 1148 1.00 1 2020-09-15 21:28:30.125236 2020-09-15 21:28:30.125236 1 0 0 1780 674 613 1.00 1 2020-09-15 21:28:30.126841 2020-09-15 21:28:30.126841 1 0 0 1781 675 536 1.00 1 2020-09-19 22:33:26.115282 2020-09-19 22:33:26.115282 1 0 0 1782 675 534 1.00 1 2020-09-19 22:33:26.117743 2020-09-19 22:33:26.117743 1 0 0 1783 675 287 2.00 1 2020-09-19 22:33:26.119465 2020-09-19 22:33:26.119465 2 0 0 1784 675 109 3.00 1 2020-09-19 22:33:26.121153 2020-09-19 22:33:26.121153 3 0 0 1785 675 291 1.00 1 2020-09-19 22:33:26.122775 2020-09-19 22:33:26.122775 1 0 0 1786 675 279 4.00 1 2020-09-19 22:33:26.124242 2020-09-19 22:33:26.124242 4 0 0 1787 675 280 1.00 1 2020-09-19 22:33:26.12594 2020-09-19 22:33:26.12594 1 0 0 1788 675 432 2.00 1 2020-09-19 22:33:26.127535 2020-09-19 22:33:26.127535 2 0 0 1789 675 431 3.00 1 2020-09-19 22:33:26.129023 2020-09-19 22:33:26.129023 3 0 0 1790 675 209 4.00 1 2020-09-19 22:33:26.130556 2020-09-19 22:33:26.130556 4 0 0 1791 675 190 2.00 1 2020-09-19 22:33:26.132097 2020-09-19 22:33:26.132097 2 0 0 1792 675 415 6.00 1 2020-09-19 22:33:26.133813 2020-09-19 22:33:26.133813 6 0 0 1793 675 404 3.00 1 2020-09-19 22:33:26.135856 2020-09-19 22:33:26.135856 3 0 0 1794 675 283 3.00 1 2020-09-19 22:33:26.137387 2020-09-19 22:33:26.137387 3 0 0 1795 675 604 4.00 1 2020-09-19 22:33:26.138911 2020-09-19 22:33:26.138911 4 0 0 1796 675 255 5.00 1 2020-09-19 22:33:26.140529 2020-09-19 22:33:26.140529 5 0 0 1797 675 951 1.00 1 2020-09-19 22:33:26.142102 2020-09-19 22:33:26.142102 1 0 0 1798 675 611 1.00 1 2020-09-19 22:33:26.143671 2020-09-19 22:33:26.143671 1 0 0 1799 675 17 5.00 1 2020-09-19 22:33:26.145274 2020-09-19 22:33:26.145274 5 0 0 1800 675 149 4.00 1 2020-09-19 22:33:26.146986 2020-09-19 22:33:26.146986 4 0 0 1801 675 665 5.00 1 2020-09-19 22:33:26.148466 2020-09-19 22:33:26.148466 5 0 0 1802 675 146 2.00 1 2020-09-19 22:33:26.150055 2020-09-19 22:33:26.150055 2 0 0 1803 675 324 4.00 1 2020-09-19 22:33:26.151458 2020-09-19 22:33:26.151458 4 0 0 1804 675 135 2.00 1 2020-09-19 22:33:26.152961 2020-09-19 22:33:26.152961 2 0 0 1805 675 284 2.00 1 2020-09-19 22:33:26.15448 2020-09-19 22:33:26.15448 2 0 0 1806 675 638 2.00 1 2020-09-19 22:33:26.156083 2020-09-19 22:33:26.156083 2 0 0 1807 675 408 4.00 1 2020-09-19 22:33:26.15762 2020-09-19 22:33:26.15762 4 0 0 1808 675 557 1.00 1 2020-09-19 22:33:26.159233 2020-09-19 22:33:26.159233 1 0 0 1809 675 15 2.00 1 2020-09-19 22:33:26.160808 2020-09-19 22:33:26.160808 2 0 0 1810 675 405 1.00 1 2020-09-19 22:33:26.162413 2020-09-19 22:33:26.162413 1 0 0 1811 675 7 6.00 1 2020-09-19 22:33:26.163921 2020-09-19 22:33:26.163921 6 0 0 1812 675 401 5.00 1 2020-09-19 22:33:26.165444 2020-09-19 22:33:26.165444 5 0 0 1813 675 483 1.00 1 2020-09-19 22:33:26.166894 2020-09-19 22:33:26.166894 1 0 0 1814 675 239 1.00 1 2020-09-19 22:33:26.168475 2020-09-19 22:33:26.168475 1 0 0 1815 675 144 5.00 1 2020-09-19 22:33:26.170178 2020-09-19 22:33:26.170178 5 0 0 1816 676 204 4.00 1 2020-09-19 23:24:25.703257 2020-09-19 23:24:25.703257 4 0 0 1817 676 68 4.00 1 2020-09-19 23:24:25.705725 2020-09-19 23:24:25.705725 4 0 0 1818 676 635 6.00 1 2020-09-19 23:24:25.707345 2020-09-19 23:24:25.707345 6 0 0 1819 676 213 3.00 1 2020-09-19 23:24:25.70888 2020-09-19 23:24:25.70888 3 0 0 1820 677 577 1.00 1 2020-09-19 23:28:14.017796 2020-09-19 23:28:14.017796 1 0 0 1821 677 8 3.00 1 2020-09-19 23:28:14.01939 2020-09-19 23:28:14.01939 3 0 0 1822 678 374 3.00 1 2020-09-21 18:48:59.477582 2020-09-21 18:48:59.477582 3 0 0 1823 678 378 1.00 1 2020-09-21 18:48:59.479896 2020-09-21 18:48:59.479896 1 0 0 1824 678 375 4.00 1 2020-09-21 18:48:59.4818 2020-09-21 18:48:59.4818 4 0 0 1825 678 376 2.00 1 2020-09-21 18:48:59.483359 2020-09-21 18:48:59.483359 2 0 0 1826 678 377 2.00 1 2020-09-21 18:48:59.485036 2020-09-21 18:48:59.485036 2 0 0 1827 678 371 1.00 1 2020-09-21 18:48:59.486811 2020-09-21 18:48:59.486811 1 0 0 1828 678 1102 1.00 1 2020-09-21 18:48:59.488366 2020-09-21 18:48:59.488366 1 0 0 1829 678 386 4.00 1 2020-09-21 18:48:59.49003 2020-09-21 18:48:59.49003 4 0 0 1830 678 370 2.00 1 2020-09-21 18:48:59.491406 2020-09-21 18:48:59.491406 2 0 0 1831 678 1103 2.00 1 2020-09-21 18:48:59.492875 2020-09-21 18:48:59.492875 2 0 0 1832 678 1104 2.00 1 2020-09-21 18:48:59.494206 2020-09-21 18:48:59.494206 2 0 0 1833 678 1101 7.00 1 2020-09-21 18:48:59.495711 2020-09-21 18:48:59.495711 7 0 0 1834 679 682 5.00 1 2020-09-21 21:47:22.004838 2020-09-21 21:47:22.004838 5 0 0 1835 680 564 3.00 1 2020-09-22 18:30:05.500802 2020-09-22 18:30:05.500802 3 0 0 1836 681 351 1.00 1 2020-09-22 19:46:04.336233 2020-09-22 19:46:04.336233 1 0 0 1837 681 347 1.00 1 2020-09-22 19:46:04.338246 2020-09-22 19:46:04.338246 1 0 0 1838 681 540 1.00 1 2020-09-22 19:46:04.339742 2020-09-22 19:46:04.339742 1 0 0 1839 681 545 1.00 1 2020-09-22 19:46:04.341184 2020-09-22 19:46:04.341184 1 0 0 1840 682 339 1.00 1 2020-09-22 19:55:15.743412 2020-09-22 19:55:15.743412 1 0 0 1841 683 1021 2.00 1 2020-09-22 20:41:28.706621 2020-09-22 20:41:28.706621 2 0 0 1842 683 996 4.00 1 2020-09-22 20:41:28.708627 2020-09-22 20:41:28.708627 4 0 0 1843 683 983 4.00 1 2020-09-22 20:41:28.710135 2020-09-22 20:41:28.710135 4 0 0 1844 683 978 4.00 1 2020-09-22 20:41:28.711586 2020-09-22 20:41:28.711586 4 0 0 1845 683 673 4.00 1 2020-09-22 20:41:28.713135 2020-09-22 20:41:28.713135 4 0 0 1846 684 41 6.00 1 2020-09-22 20:43:52.137915 2020-09-22 20:43:52.137915 6 0 0 1847 685 396 1.00 1 2020-09-22 20:46:26.642786 2020-09-22 20:46:26.642786 1 0 0 1848 686 1325 1.00 1 2020-09-22 21:01:44.978967 2020-09-22 21:01:44.978967 1 0 0 1849 687 376 1.00 1 2020-09-23 22:48:26.0513 2020-09-23 22:48:26.0513 1 0 0 1850 688 1118 1.00 1 2020-09-25 00:45:09.530185 2020-09-25 00:45:09.530185 1 0 0 1851 689 407 2.00 1 2020-09-25 21:45:09.965615 2020-09-25 21:45:09.965615 2 0 0 1852 690 1339 3.00 1 2020-09-29 19:45:05.692307 2020-09-29 19:45:05.692307 3 0 0 1853 691 1180 1.00 1 2020-09-29 20:39:09.477387 2020-09-29 20:39:09.477387 1 0 0 1854 692 1126 1.00 1 2020-09-29 21:43:16.306671 2020-09-29 21:43:16.306671 1 0 0 1855 693 1174 1.00 1 2020-10-02 22:57:06.394728 2020-10-02 22:57:06.394728 1 0 0 1856 693 1176 1.00 1 2020-10-02 22:57:06.397114 2020-10-02 22:57:06.397114 1 0 0 1857 694 675 3.00 1 2020-10-03 18:44:48.395614 2020-10-03 18:44:48.395614 3 0 0 1858 695 1122 1.00 1 2020-10-03 18:45:05.410703 2020-10-03 18:45:05.410703 1 0 0 1859 696 704 4.00 1 2020-10-03 23:37:50.75018 2020-10-03 23:37:50.75018 4 0 0 1860 697 488 3.00 1 2020-10-03 23:38:16.201534 2020-10-03 23:38:16.201534 3 0 0 1861 698 1316 1.00 1 2020-10-09 00:03:41.604847 2020-10-09 00:03:41.604847 1 0 0 1862 698 1317 1.00 1 2020-10-09 00:03:41.608054 2020-10-09 00:03:41.608054 1 0 0 1863 698 987 1.00 1 2020-10-09 00:03:41.610487 2020-10-09 00:03:41.610487 1 0 0 1864 699 959 1.00 1 2020-10-15 00:34:44.190889 2020-10-15 00:34:44.190889 1 0 0 1865 700 1118 2.00 1 2020-10-18 00:13:28.137587 2020-10-18 00:13:28.137587 2 0 0 1866 700 1126 6.00 1 2020-10-18 00:13:28.140748 2020-10-18 00:13:28.140748 6 0 0 1867 700 1314 5.00 1 2020-10-18 00:13:28.142584 2020-10-18 00:13:28.142584 5 0 0 1868 700 1004 2.00 1 2020-10-18 00:13:28.144472 2020-10-18 00:13:28.144472 2 0 0 1869 700 1005 2.00 1 2020-10-18 00:13:28.145948 2020-10-18 00:13:28.145948 2 0 0 1870 700 1339 1.00 1 2020-10-18 00:13:28.147482 2020-10-18 00:13:28.147482 1 0 0 1871 700 1323 5.00 1 2020-10-18 00:13:28.149195 2020-10-18 00:13:28.149195 5 0 0 1872 700 1324 2.00 1 2020-10-18 00:13:28.150933 2020-10-18 00:13:28.150933 2 0 0 1873 700 1307 3.00 1 2020-10-18 00:13:28.152508 2020-10-18 00:13:28.152508 3 0 0 1874 701 1001 2.00 1 2020-10-22 18:28:26.964442 2020-10-22 18:28:26.964442 2 0 0 1875 702 666 4.00 1 2020-10-22 18:31:41.617208 2020-10-22 18:31:41.617208 4 0 0 1876 702 701 2.00 1 2020-10-22 18:31:41.619468 2020-10-22 18:31:41.619468 2 0 0 1877 702 995 1.00 1 2020-10-22 18:31:41.621064 2020-10-22 18:31:41.621064 1 0 0 1878 702 985 2.00 1 2020-10-22 18:31:41.622667 2020-10-22 18:31:41.622667 2 0 0 1879 702 602 3.00 1 2020-10-22 18:31:41.624235 2020-10-22 18:31:41.624235 3 0 0 1880 702 10 4.00 1 2020-10-22 18:31:41.625979 2020-10-22 18:31:41.625979 4 0 0 1881 703 1372 1.00 1 2020-10-23 00:24:29.113751 2020-10-23 00:24:29.113751 1 0 0 1882 704 668 1.00 1 2020-10-23 21:29:28.629528 2020-10-23 21:29:28.629528 1 0 0 1883 705 864 1.00 1 2020-10-24 19:31:34.602722 2020-10-24 19:31:34.602722 1 0 0 1884 706 1349 1.00 1 2020-10-28 20:36:17.051581 2020-10-28 20:36:17.051581 1 0 0 1885 707 1372 1.00 1 2020-10-30 00:53:58.496832 2020-10-30 00:53:58.496832 1 0 0 1886 707 1357 1.00 1 2020-10-30 00:53:58.499062 2020-10-30 00:53:58.499062 1 0 0 1887 708 971 1.00 1 2020-11-01 02:10:52.233913 2020-11-01 02:10:52.233913 1 0 0 1888 709 710 4.00 1 2020-11-04 01:01:02.696016 2020-11-04 01:01:02.696016 4 0 0 1889 710 793 3.00 1 2020-11-04 01:07:34.859207 2020-11-04 01:07:34.859207 3 0 0 1890 710 871 9.00 1 2020-11-04 01:07:34.86111 2020-11-04 01:07:34.86111 9 0 0 1891 710 796 5.00 1 2020-11-04 01:07:34.862547 2020-11-04 01:07:34.862547 5 0 0 1892 710 753 4.00 1 2020-11-04 01:07:34.863902 2020-11-04 01:07:34.863902 4 0 0 1893 710 870 2.00 1 2020-11-04 01:07:34.865389 2020-11-04 01:07:34.865389 2 0 0 1894 710 947 1.00 1 2020-11-04 01:07:34.866817 2020-11-04 01:07:34.866817 1 0 0 1895 710 786 5.00 1 2020-11-04 01:07:34.868255 2020-11-04 01:07:34.868255 5 0 0 1896 710 862 2.00 1 2020-11-04 01:07:34.869653 2020-11-04 01:07:34.869653 2 0 0 1897 710 725 1.00 1 2020-11-04 01:07:34.871 2020-11-04 01:07:34.871 1 0 0 1898 711 956 1.00 1 2020-11-05 00:58:36.401824 2020-11-05 00:58:36.401824 1 0 0 1899 712 956 1.00 1 2020-11-05 00:59:02.584445 2020-11-05 00:59:02.584445 1 0 0 1900 713 1503 1.00 1 2020-11-05 01:04:49.041313 2020-11-05 01:04:49.041313 1 0 0 1901 714 1516 1.00 1 2020-11-05 19:56:43.373224 2020-11-05 19:56:43.373224 1 0 0 1902 715 1507 1.00 1 2020-11-05 20:56:32.238003 2020-11-05 20:56:32.238003 1 0 0 1903 716 955 1.00 1 2020-11-05 21:04:00.558216 2020-11-05 21:04:00.558216 1 0 0 1904 717 955 1.00 1 2020-11-05 21:04:48.968188 2020-11-05 21:04:48.968188 1 0 0 1905 718 955 1.00 1 2020-11-05 21:05:13.430315 2020-11-05 21:05:13.430315 1 0 0 1906 719 1510 1.00 1 2020-11-05 21:13:49.935893 2020-11-05 21:13:49.935893 1 0 0 1907 719 1522 1.00 1 2020-11-05 21:13:49.937578 2020-11-05 21:13:49.937578 1 0 0 1908 720 997 2.00 1 2020-11-05 22:23:38.320902 2020-11-05 22:23:38.320902 2 0 0 1909 721 975 2.00 1 2020-11-05 23:10:58.890954 2020-11-05 23:10:58.890954 2 0 0 1910 722 1490 1.00 1 2020-11-06 18:50:25.029443 2020-11-06 18:50:25.029443 1 0 0 1911 722 1523 1.00 1 2020-11-06 18:50:25.031558 2020-11-06 18:50:25.031558 1 0 0 1912 723 1513 1.00 1 2020-11-06 20:48:58.251645 2020-11-06 20:48:58.251645 1 0 0 1913 724 608 3.00 1 2020-11-06 22:00:15.861673 2020-11-06 22:00:15.861673 3 0 0 1914 724 987 2.00 1 2020-11-06 22:00:15.864411 2020-11-06 22:00:15.864411 2 0 0 1915 724 1009 3.00 1 2020-11-06 22:00:15.866663 2020-11-06 22:00:15.866663 3 0 0 1916 724 1343 2.00 1 2020-11-06 22:00:15.868774 2020-11-06 22:00:15.868774 2 0 0 1917 724 986 2.00 1 2020-11-06 22:00:15.870954 2020-11-06 22:00:15.870954 2 0 0 1918 724 1325 1.00 1 2020-11-06 22:00:15.873117 2020-11-06 22:00:15.873117 1 0 0 1919 724 1337 1.00 1 2020-11-06 22:00:15.875028 2020-11-06 22:00:15.875028 1 0 0 1920 724 994 1.00 1 2020-11-06 22:00:15.876714 2020-11-06 22:00:15.876714 1 0 0 1921 724 1326 1.00 1 2020-11-06 22:00:15.878332 2020-11-06 22:00:15.878332 1 0 0 1922 724 1311 1.00 1 2020-11-06 22:00:15.880031 2020-11-06 22:00:15.880031 1 0 0 1923 725 1512 2.00 1 2020-11-06 22:03:51.211357 2020-11-06 22:03:51.211357 2 0 0 1924 726 1311 1.00 1 2020-11-06 22:14:37.757445 2020-11-06 22:14:37.757445 1 0 0 1925 727 1371 1.00 1 2020-11-06 23:17:11.539562 2020-11-06 23:17:11.539562 1 0 0 1926 728 1371 7.00 1 2020-11-07 00:48:31.777037 2020-11-07 00:48:31.777037 7 0 0 1927 729 903 1.00 1 2020-11-09 23:54:53.622791 2020-11-09 23:54:53.622791 1 0 0 1928 730 1490 1.00 1 2020-11-14 01:25:26.119382 2020-11-14 01:25:26.119382 1 0 0 1929 730 1294 4.00 1 2020-11-14 01:25:26.121551 2020-11-14 01:25:26.121551 4 0 0 1930 731 1518 1.00 1 2020-11-14 01:27:42.025418 2020-11-14 01:27:42.025418 1 0 0 1931 732 901 2.00 1 2020-11-14 22:56:15.697486 2020-11-14 22:56:15.697486 2 0 0 1932 732 888 2.00 1 2020-11-14 22:56:15.700419 2020-11-14 22:56:15.700419 2 0 0 1933 732 765 3.00 1 2020-11-14 22:56:15.702716 2020-11-14 22:56:15.702716 3 0 0 1934 732 900 1.00 1 2020-11-14 22:56:15.704926 2020-11-14 22:56:15.704926 1 0 0 1935 732 856 1.00 1 2020-11-14 22:56:15.70708 2020-11-14 22:56:15.70708 1 0 0 1936 732 945 5.00 1 2020-11-14 22:56:15.709247 2020-11-14 22:56:15.709247 5 0 0 1937 732 893 2.00 1 2020-11-14 22:56:15.711375 2020-11-14 22:56:15.711375 2 0 0 1938 732 891 2.00 1 2020-11-14 22:56:15.713519 2020-11-14 22:56:15.713519 2 0 0 1939 733 901 1.00 1 2020-11-14 22:56:39.683856 2020-11-14 22:56:39.683856 1 0 0 1940 734 1513 3.00 1 2020-11-16 20:23:11.487687 2020-11-16 20:23:11.487687 3 0 0 1941 735 1372 2.00 1 2020-11-19 00:48:28.030505 2020-11-19 00:48:28.030505 2 0 0 1942 736 1475 5.00 1 2020-11-19 01:29:25.86054 2020-11-19 01:29:25.86054 5 0 0 1943 737 902 3.00 1 2020-11-23 19:31:04.177005 2020-11-23 19:31:04.177005 3 0 0 1944 738 861 1.00 1 2020-11-25 19:40:17.229184 2020-11-25 19:40:17.229184 1 0 0 1945 738 783 2.00 1 2020-11-25 19:40:17.231131 2020-11-25 19:40:17.231131 2 0 0 1946 738 897 7.00 1 2020-11-25 19:40:17.232642 2020-11-25 19:40:17.232642 7 0 0 1947 738 896 6.00 1 2020-11-25 19:40:17.234103 2020-11-25 19:40:17.234103 6 0 0 1948 738 767 2.00 1 2020-11-25 19:40:17.23553 2020-11-25 19:40:17.23553 2 0 0 1949 738 642 3.00 1 2020-11-25 19:40:17.237051 2020-11-25 19:40:17.237051 3 0 0 1950 738 895 3.00 1 2020-11-25 19:40:17.238472 2020-11-25 19:40:17.238472 3 0 0 1951 738 860 1.00 1 2020-11-25 19:40:17.239846 2020-11-25 19:40:17.239846 1 0 0 1952 739 797 1.00 1 2020-11-25 20:10:44.841302 2020-11-25 20:10:44.841302 1 0 0 1953 739 944 1.00 1 2020-11-25 20:10:44.843389 2020-11-25 20:10:44.843389 1 0 0 1954 739 742 1.00 1 2020-11-25 20:10:44.845037 2020-11-25 20:10:44.845037 1 0 0 1955 739 863 1.00 1 2020-11-25 20:10:44.846649 2020-11-25 20:10:44.846649 1 0 0 1956 739 743 1.00 1 2020-11-25 20:10:44.848171 2020-11-25 20:10:44.848171 1 0 0 1957 739 777 1.00 1 2020-11-25 20:10:44.84969 2020-11-25 20:10:44.84969 1 0 0 1958 739 748 1.00 1 2020-11-25 20:10:44.851164 2020-11-25 20:10:44.851164 1 0 0 1959 739 737 4.00 1 2020-11-25 20:10:44.85266 2020-11-25 20:10:44.85266 4 0 0 1960 739 779 4.00 1 2020-11-25 20:10:44.854172 2020-11-25 20:10:44.854172 4 0 0 1961 739 774 3.00 1 2020-11-25 20:10:44.855544 2020-11-25 20:10:44.855544 3 0 0 1962 739 646 2.00 1 2020-11-25 20:10:44.857192 2020-11-25 20:10:44.857192 2 0 0 1963 739 778 2.00 1 2020-11-25 20:10:44.858696 2020-11-25 20:10:44.858696 2 0 0 1964 739 957 4.00 1 2020-11-25 20:10:44.860091 2020-11-25 20:10:44.860091 4 0 0 1965 739 676 2.00 1 2020-11-25 20:10:44.861565 2020-11-25 20:10:44.861565 2 0 0 1966 740 757 1.00 1 2020-11-25 20:15:06.498254 2020-11-25 20:15:06.498254 1 0 0 1967 740 871 1.00 1 2020-11-25 20:15:06.500486 2020-11-25 20:15:06.500486 1 0 0 1968 740 877 1.00 1 2020-11-25 20:15:06.502274 2020-11-25 20:15:06.502274 1 0 0 1969 740 879 1.00 1 2020-11-25 20:15:06.503961 2020-11-25 20:15:06.503961 1 0 0 1970 740 946 1.00 1 2020-11-25 20:15:06.505578 2020-11-25 20:15:06.505578 1 0 0 1971 740 733 1.00 1 2020-11-25 20:15:06.507105 2020-11-25 20:15:06.507105 1 0 0 1972 741 790 4.00 1 2020-11-27 00:15:23.603079 2020-11-27 00:15:23.603079 4 0 0 1973 742 1371 1.00 1 2020-11-28 22:19:52.875973 2020-11-28 22:19:52.875973 1 0 0 1974 743 1361 1.00 1 2020-12-01 20:25:03.423364 2020-12-01 20:25:03.423364 1 0 0 1975 744 895 2.00 1 2020-12-02 01:31:49.081931 2020-12-02 01:31:49.081931 2 0 0 1976 745 895 2.00 1 2020-12-02 01:32:17.829899 2020-12-02 01:32:17.829899 2 0 0 1977 746 978 3.00 1 2020-12-03 01:56:09.382153 2020-12-03 01:56:09.382153 3 0 0 1978 746 1321 3.00 1 2020-12-03 01:56:09.384742 2020-12-03 01:56:09.384742 3 0 0 1979 747 1316 2.00 1 2020-12-04 18:23:53.250353 2020-12-04 18:23:53.250353 2 0 0 1980 748 753 4.00 1 2020-12-05 00:45:35.90552 2020-12-05 00:45:35.90552 4 0 0 1981 748 793 2.00 1 2020-12-05 00:45:35.90782 2020-12-05 00:45:35.90782 2 0 0 1982 748 786 5.00 1 2020-12-05 00:45:35.909835 2020-12-05 00:45:35.909835 5 0 0 1983 748 790 3.00 1 2020-12-05 00:45:35.911353 2020-12-05 00:45:35.911353 3 0 0 1984 748 1510 2.00 1 2020-12-05 00:45:35.912981 2020-12-05 00:45:35.912981 2 0 0 1985 748 862 2.00 1 2020-12-05 00:45:35.914432 2020-12-05 00:45:35.914432 2 0 0 1986 749 781 2.00 1 2020-12-05 00:46:06.957659 2020-12-05 00:46:06.957659 2 0 0 1987 750 904 3.00 1 2020-12-10 19:56:14.227669 2020-12-10 19:56:14.227669 3 0 0 1988 751 1541 1.00 1 2020-12-11 01:51:17.60497 2020-12-11 01:51:17.60497 1 0 0 1989 751 1540 2.00 1 2020-12-11 01:51:17.607697 2020-12-11 01:51:17.607697 2 0 0 1990 751 1528 3.00 1 2020-12-11 01:51:17.6096 2020-12-11 01:51:17.6096 3 0 0 1991 752 1491 7.00 1 2020-12-11 01:54:05.968709 2020-12-11 01:54:05.968709 7 0 0 1992 753 772 2.00 1 2020-12-11 20:47:43.733744 2020-12-11 20:47:43.733744 2 0 0 1993 753 1523 6.00 1 2020-12-11 20:47:43.735826 2020-12-11 20:47:43.735826 6 0 0 1994 753 1490 4.00 1 2020-12-11 20:47:43.7373 2020-12-11 20:47:43.7373 4 0 0 1995 753 1508 2.00 1 2020-12-11 20:47:43.73868 2020-12-11 20:47:43.73868 2 0 0 1996 753 1519 5.00 1 2020-12-11 20:47:43.740263 2020-12-11 20:47:43.740263 5 0 0 1997 754 962 6.00 1 2020-12-11 21:29:33.536609 2020-12-11 21:29:33.536609 6 0 0 1998 755 954 7.00 1 2020-12-12 22:59:35.471644 2020-12-12 22:59:35.471644 7 0 0 1999 756 1508 1.00 1 2020-12-13 20:57:22.071973 2020-12-13 20:57:22.071973 1 0 0 2000 757 869 1.00 1 2020-12-14 17:47:37.147043 2020-12-14 17:47:37.147043 1 0 0 2001 758 1491 4.00 1 2020-12-14 18:19:50.004581 2020-12-14 18:19:50.004581 4 0 0 2002 759 1164 2.00 1 2020-12-14 19:08:00.080431 2020-12-14 19:08:00.080431 2 0 0 2003 759 1479 1.00 1 2020-12-14 19:08:00.082539 2020-12-14 19:08:00.082539 1 0 0 2004 759 1361 1.00 1 2020-12-14 19:08:00.084061 2020-12-14 19:08:00.084061 1 0 0 2005 759 1471 1.00 1 2020-12-14 19:08:00.085765 2020-12-14 19:08:00.085765 1 0 0 2006 760 1135 1.00 1 2020-12-14 21:57:40.747533 2020-12-14 21:57:40.747533 1 0 0 2007 761 1530 1.00 1 2020-12-16 00:08:19.647316 2020-12-16 00:08:19.647316 1 0 0 2008 762 861 1.00 1 2020-12-16 23:30:29.873799 2020-12-16 23:30:29.873799 1 0 0 2009 762 783 2.00 1 2020-12-16 23:30:29.8761 2020-12-16 23:30:29.8761 2 0 0 2010 762 1522 3.00 1 2020-12-16 23:30:29.877757 2020-12-16 23:30:29.877757 3 0 0 2011 762 893 2.00 1 2020-12-16 23:30:29.879227 2020-12-16 23:30:29.879227 2 0 0 2012 762 860 1.00 1 2020-12-16 23:30:29.880749 2020-12-16 23:30:29.880749 1 0 0 2013 762 900 1.00 1 2020-12-16 23:30:29.882283 2020-12-16 23:30:29.882283 1 0 0 2014 762 888 1.00 1 2020-12-16 23:30:29.88368 2020-12-16 23:30:29.88368 1 0 0 2015 762 1500 1.00 1 2020-12-16 23:30:29.885109 2020-12-16 23:30:29.885109 1 0 0 2016 762 1547 2.00 1 2020-12-16 23:30:29.886647 2020-12-16 23:30:29.886647 2 0 0 2017 762 1517 4.00 1 2020-12-16 23:30:29.888055 2020-12-16 23:30:29.888055 4 0 0 2018 762 1469 1.00 1 2020-12-16 23:30:29.889434 2020-12-16 23:30:29.889434 1 0 0 2019 763 1520 3.00 1 2020-12-18 06:28:57.511797 2020-12-18 06:28:57.511797 3 0 0 2020 764 1483 3.00 1 2020-12-18 22:09:41.577797 2020-12-18 22:09:41.577797 3 0 0 2021 765 1475 5.00 1 2020-12-20 01:47:25.870288 2020-12-20 01:47:25.870288 5 0 0 2022 765 1371 2.00 1 2020-12-20 01:47:25.872167 2020-12-20 01:47:25.872167 2 0 0 2023 765 1504 2.00 1 2020-12-20 01:47:25.873681 2020-12-20 01:47:25.873681 2 0 0 2024 766 1473 1.00 1 2020-12-21 22:12:35.876381 2020-12-21 22:12:35.876381 1 0 0 2025 767 1178 1.00 1 2020-12-22 20:26:32.595679 2020-12-22 20:26:32.595679 1 0 0 2026 768 898 4.00 1 2020-12-22 22:39:07.891456 2020-12-22 22:39:07.891456 4 0 0 2027 768 896 4.00 1 2020-12-22 22:39:07.893763 2020-12-22 22:39:07.893763 4 0 0 2028 769 1510 2.00 1 2020-12-23 00:21:13.657422 2020-12-23 00:21:13.657422 2 0 0 2029 770 697 1.00 1 2020-12-23 00:22:56.471502 2020-12-23 00:22:56.471502 1 0 0 2030 771 871 3.00 1 2020-12-23 00:38:56.289088 2020-12-23 00:38:56.289088 3 0 0 2031 772 1526 1.00 1 2020-12-23 01:37:37.047456 2020-12-23 01:37:37.047456 1 0 0 2032 773 944 1.00 1 2020-12-23 02:50:52.384307 2020-12-23 02:50:52.384307 1 0 0 2033 774 1157 1.00 1 2020-12-23 18:09:32.444555 2020-12-23 18:09:32.444555 1 0 0 2034 774 1478 1.00 1 2020-12-23 18:09:32.446911 2020-12-23 18:09:32.446911 1 0 0 2035 774 1477 1.00 1 2020-12-23 18:09:32.448724 2020-12-23 18:09:32.448724 1 0 0 2036 774 1476 1.00 1 2020-12-23 18:09:32.45051 2020-12-23 18:09:32.45051 1 0 0 2037 774 1353 1.00 1 2020-12-23 18:09:32.451942 2020-12-23 18:09:32.451942 1 0 0 2038 774 1175 1.00 1 2020-12-23 18:09:32.453345 2020-12-23 18:09:32.453345 1 0 0 2039 774 1354 1.00 1 2020-12-23 18:09:32.454746 2020-12-23 18:09:32.454746 1 0 0 2040 774 341 1.00 1 2020-12-23 18:09:32.45602 2020-12-23 18:09:32.45602 1 0 0 2041 774 1352 1.00 1 2020-12-23 18:09:32.457432 2020-12-23 18:09:32.457432 1 0 0 2042 774 1471 1.00 1 2020-12-23 18:09:32.45878 2020-12-23 18:09:32.45878 1 0 0 2043 775 1525 2.00 1 2020-12-23 18:36:38.28525 2020-12-23 18:36:38.28525 2 0 0 2044 776 1515 3.00 1 2020-12-24 02:33:51.529411 2020-12-24 02:33:51.529411 3 0 0 2045 777 757 1.00 1 2020-12-24 19:15:07.840051 2020-12-24 19:15:07.840051 1 0 0 2046 777 1374 1.00 1 2020-12-24 19:15:07.842111 2020-12-24 19:15:07.842111 1 0 0 2047 777 1375 1.00 1 2020-12-24 19:15:07.843674 2020-12-24 19:15:07.843674 1 0 0 2048 777 1357 2.00 1 2020-12-24 19:15:07.845109 2020-12-24 19:15:07.845109 2 0 0 2049 778 769 3.00 1 2020-12-24 22:49:08.530341 2020-12-24 22:49:08.530341 3 0 0 2050 779 1464 1.00 1 2020-12-25 00:18:50.599476 2020-12-25 00:18:50.599476 1 0 0 2051 779 1529 1.00 1 2020-12-25 00:18:50.602249 2020-12-25 00:18:50.602249 1 0 0 2052 779 1550 1.00 1 2020-12-25 00:18:50.604441 2020-12-25 00:18:50.604441 1 0 0 2053 779 1549 2.00 1 2020-12-25 00:18:50.606714 2020-12-25 00:18:50.606714 2 0 0 2054 780 47 1.00 1 2020-12-25 01:02:56.348021 2020-12-25 01:02:56.348021 1 0 0 2055 781 351 1.00 1 2020-12-26 19:48:25.292842 2020-12-26 19:48:25.292842 1 0 0 2056 782 1475 1.00 1 2020-12-29 00:24:23.26525 2020-12-29 00:24:23.26525 1 0 0 2057 783 733 1.00 1 2020-12-29 00:25:45.061003 2020-12-29 00:25:45.061003 1 0 0 2058 784 1507 4.00 1 2020-12-30 00:06:50.991372 2020-12-30 00:06:50.991372 4 0 0 2059 785 796 4.00 1 2020-12-30 00:14:43.864622 2020-12-30 00:14:43.864622 4 0 0 2060 786 946 4.00 1 2020-12-30 21:53:49.798808 2020-12-30 21:53:49.798808 4 0 0 2061 787 946 4.00 1 2020-12-30 21:58:12.586177 2020-12-30 21:58:12.586177 4 0 0 2062 788 877 1.00 1 2020-12-30 23:34:59.716287 2020-12-30 23:34:59.716287 1 0 0 2063 789 163 1.00 1 2020-12-30 23:52:10.065873 2020-12-30 23:52:10.065873 1 0 0 2064 790 866 3.00 1 2020-12-31 00:10:44.638759 2020-12-31 00:10:44.638759 3 0 0 2065 791 1332 7.00 1 2020-12-31 00:57:44.093158 2020-12-31 00:57:44.093158 7 0 0 2066 792 766 3.00 1 2020-12-31 20:35:10.954426 2020-12-31 20:35:10.954426 3 0 0 2067 793 1441 1.00 1 2020-12-31 20:36:09.903087 2020-12-31 20:36:09.903087 1 0 0 2068 794 1536 3.00 1 2020-12-31 22:37:57.030073 2020-12-31 22:37:57.030073 3 0 0 2069 795 776 1.00 1 2020-12-31 22:41:30.115364 2020-12-31 22:41:30.115364 1 0 0 2070 796 1535 1.00 1 2020-12-31 22:46:48.74809 2020-12-31 22:46:48.74809 1 0 0 2071 797 757 2.00 1 2021-01-06 00:04:16.402953 2021-01-06 00:04:16.402953 2 0 0 2072 798 1495 1.00 1 2021-01-07 22:12:25.782995 2021-01-07 22:12:25.782995 1 0 0 2073 799 898 2.00 1 2021-01-08 21:39:02.577531 2021-01-08 21:39:02.577531 2 0 0 2074 800 955 1.00 1 2021-01-09 02:17:56.470138 2021-01-09 02:17:56.470138 1 0 0 2075 800 956 1.00 1 2021-01-09 02:17:56.472141 2021-01-09 02:17:56.472141 1 0 0 2076 801 955 1.00 1 2021-01-09 02:18:22.365929 2021-01-09 02:18:22.365929 1 0 0 2077 802 802 4.00 1 2021-01-12 21:23:02.2645 2021-01-12 21:23:02.2645 4 0 0 2078 803 804 5.00 1 2021-01-13 01:51:15.020477 2021-01-13 01:51:15.020477 5 0 0 2079 803 161 2.00 1 2021-01-13 01:51:15.022829 2021-01-13 01:51:15.022829 2 0 0 2080 803 416 2.00 1 2021-01-13 01:51:15.024447 2021-01-13 01:51:15.024447 2 0 0 2081 803 419 3.00 1 2021-01-13 01:51:15.025999 2021-01-13 01:51:15.025999 3 0 0 2082 803 1510 1.00 1 2021-01-13 01:51:15.027416 2021-01-13 01:51:15.027416 1 0 0 2083 804 857 6.00 1 2021-01-15 23:36:16.695524 2021-01-15 23:36:16.695524 6 0 0 2084 805 787 4.00 1 2021-01-16 02:12:49.217515 2021-01-16 02:12:49.217515 4 0 0 2085 806 484 1.00 1 2021-01-19 00:07:15.925939 2021-01-19 00:07:15.925939 1 0 0 2086 807 1330 4.00 1 2021-01-19 20:04:02.324346 2021-01-19 20:04:02.324346 4 0 0 2087 808 640 5.00 1 2021-01-21 02:04:15.415765 2021-01-21 02:04:15.415765 5 0 0 2088 809 545 1.00 1 2021-01-21 18:25:59.057033 2021-01-21 18:25:59.057033 1 0 0 2089 810 1159 2.00 1 2021-01-23 01:34:25.065682 2021-01-23 01:34:25.065682 2 0 0 2090 811 1375 3.00 1 2021-01-23 01:54:34.686508 2021-01-23 01:54:34.686508 3 0 0 2091 812 292 1.00 1 2021-01-23 22:14:55.195712 2021-01-23 22:14:55.195712 1 0 0 2092 813 1440 1.00 1 2021-01-29 19:08:58.804695 2021-01-29 19:08:58.804695 1 0 0 2093 813 1437 1.00 1 2021-01-29 19:08:58.806572 2021-01-29 19:08:58.806572 1 0 0 2094 814 484 5.00 1 2021-01-30 00:45:53.444652 2021-01-30 00:45:53.444652 5 0 0 2095 815 773 1.00 1 2021-02-04 00:49:35.014604 2021-02-04 00:49:35.014604 1 0 0 2096 816 1230 1.00 1 2021-02-04 20:23:54.237642 2021-02-04 20:23:54.237642 1 0 0 2097 817 310 1.00 1 2021-02-04 20:57:01.649891 2021-02-04 20:57:01.649891 1 0 0 2098 818 752 1.00 1 2021-02-04 23:51:15.075923 2021-02-04 23:51:15.075923 1 0 0 2099 819 1427 1.00 1 2021-02-10 23:27:45.914702 2021-02-10 23:27:45.914702 1 0 0 2100 820 135 1.00 1 2021-02-13 01:22:47.739463 2021-02-13 01:22:47.739463 1 0 0 2101 821 5 6.00 1 2021-03-05 01:32:06.16832 2021-03-05 01:32:06.16832 6 0 0 \. -- -- Name: transfer_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.transfer_details_id_seq', 2101, true); -- -- Data for Name: transfers; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.transfers (id, origin_id, destiny_id, transfer_date, user_id, status, received_by_id, created_at, updated_at, observations, reception_date, origin_is_pointsale, destiny_is_pointsale) FROM stdin; 1 1 1 2019-02-06 1 2 9 2019-02-07 02:39:05.154327 2019-02-07 02:41:34.145388 2019-02-06 0 1 62 1 2 2019-06-20 12 2 3 2019-06-20 21:57:37.978604 2019-06-24 22:05:27.587713 2019-06-24 1 1 84 2 1 2019-07-23 10 2 2 2019-07-24 01:11:03.137702 2019-09-04 18:03:02.859449 2019-09-04 1 1 4 1 2 2019-02-11 1 2 10 2019-02-12 02:01:00.425125 2019-02-12 17:29:56.530973 2019-02-12 1 1 3 2 1 2019-02-11 1 2 2 2019-02-12 01:59:20.445274 2019-02-12 17:36:18.84001 2019-02-12 1 1 2 1 2 2019-02-11 1 2 10 2019-02-12 00:17:30.808489 2019-02-12 17:37:09.240556 2019-02-12 1 1 64 2 1 2019-06-28 3 2 2 2019-06-28 23:18:56.668783 2019-06-29 21:14:16.605577 2019-06-29 1 1 5 1 2 2019-02-12 1 2 10 2019-02-12 17:44:09.685995 2019-02-12 17:48:54.780463 2019-02-12 1 1 63 2 1 2019-06-24 3 2 2 2019-06-24 22:05:55.183119 2019-06-29 21:31:35.118754 2019-06-29 1 1 6 1 2 2019-02-12 1 2 3 2019-02-12 18:57:18.635873 2019-02-12 19:07:41.702083 2019-02-12 1 1 7 1 2 2019-02-12 1 2 3 2019-02-12 19:38:24.02151 2019-02-12 20:26:05.599652 2019-02-12 1 1 65 1 2 2019-07-13 2 2 3 2019-07-13 17:51:58.649721 2019-07-13 17:58:58.4713 2019-07-13 1 1 8 2 1 2019-02-18 4 2 2 2019-02-18 19:01:09.83225 2019-02-19 01:25:45.009047 2019-02-18 1 1 9 1 2 2019-02-18 4 2 10 2019-02-19 01:25:09.610999 2019-02-19 18:40:53.190161 2019-02-19 1 1 10 2 1 2019-02-28 11 2 2 2019-02-28 18:25:53.190939 2019-02-28 18:52:02.808422 2019-02-28 1 1 68 1 2 2019-07-13 2 2 3 2019-07-13 18:11:33.930292 2019-07-13 18:14:52.229135 2019-07-13 1 1 13 2 1 2019-03-02 1 2 2 2019-03-02 18:24:07.155416 2019-03-02 18:24:25.411874 2019-03-02 1 1 12 1 2 2019-03-02 2 2 3 2019-03-02 17:39:59.70033 2019-03-02 19:46:00.736152 2019-03-02 1 1 11 1 2 2019-03-02 2 2 3 2019-03-02 17:37:17.562128 2019-03-02 19:49:10.681308 2019-03-02 1 1 69 2 1 2019-07-13 3 2 2 2019-07-13 18:14:34.481367 2019-07-13 18:24:25.960223 2019-07-13 1 1 15 2 1 2019-03-04 1 2 2 2019-03-04 17:12:04.467041 2019-03-04 17:12:37.589291 2019-03-04 1 1 67 2 1 2019-07-13 3 2 2 2019-07-13 18:03:05.415284 2019-07-13 18:24:35.695501 2019-07-13 1 1 16 2 1 2019-03-04 10 2 2 2019-03-05 01:36:45.785752 2019-03-05 01:49:46.916935 2019-03-04 1 1 66 2 1 2019-07-13 3 2 2 2019-07-13 18:01:26.414774 2019-07-13 18:24:48.193468 2019-07-13 1 1 17 1 2 2019-03-06 2 2 11 2019-03-06 19:06:00.766151 2019-03-06 19:17:29.759277 2019-03-06 1 1 18 2 1 2019-03-15 11 2 2 2019-03-15 20:49:24.742907 2019-03-15 20:51:56.998069 2019-03-15 1 1 71 1 2 2019-07-13 2 2 3 2019-07-13 18:31:35.416226 2019-07-13 18:32:13.367494 2019-07-13 1 1 19 1 2 2019-03-15 2 2 11 2019-03-15 20:54:44.162874 2019-03-15 20:56:16.790174 2019-03-15 1 1 70 1 2 2019-07-13 2 2 3 2019-07-13 18:24:17.009208 2019-07-13 18:32:22.713511 2019-07-13 1 1 20 2 1 2019-03-15 11 2 2 2019-03-15 20:56:41.359465 2019-03-15 20:57:36.325912 2019-03-15 1 1 14 1 2 2019-03-02 1 2 11 2019-03-02 18:37:41.350024 2019-03-20 21:37:56.101016 2019-03-20 1 1 72 2 1 2019-07-13 3 2 2 2019-07-13 18:45:16.420255 2019-07-13 18:45:56.955918 2019-07-13 1 1 23 1 2 2019-03-23 2 2 3 2019-03-23 17:21:23.842485 2019-03-23 17:28:59.071901 2019-03-23 1 1 22 1 2 2019-03-21 4 2 3 2019-03-21 23:01:10.765035 2019-03-23 17:29:05.378015 2019-03-23 1 1 21 1 2 2019-03-21 4 2 3 2019-03-21 22:34:17.884037 2019-03-23 17:29:10.516345 2019-03-23 1 1 73 2 1 2019-07-13 3 2 2 2019-07-14 00:40:10.140649 2019-07-14 01:18:25.775188 2019-07-13 1 1 24 2 1 2019-03-23 3 2 2 2019-03-23 17:42:17.170786 2019-03-23 17:44:59.958707 2019-03-23 1 1 25 1 2 2019-03-23 1 2 3 2019-03-23 22:36:38.128012 2019-03-25 17:54:12.428425 2019-03-25 1 1 74 1 2 2019-07-13 2 2 3 2019-07-14 01:19:55.30423 2019-07-14 01:22:24.691608 2019-07-13 1 1 26 2 1 2019-03-25 3 2 2 2019-03-25 17:54:33.558119 2019-03-25 17:55:23.823903 2019-03-25 1 1 27 2 1 2019-03-26 11 2 2 2019-03-26 22:51:58.902263 2019-03-28 23:12:32.762653 2019-03-28 1 1 28 2 1 2019-03-28 3 2 2 2019-03-28 23:11:27.270347 2019-03-28 23:12:54.225717 2019-03-28 1 1 29 2 1 2019-04-06 3 2 2 2019-04-06 22:53:18.741092 2019-04-06 22:53:42.056225 2019-04-06 1 1 76 2 1 2019-07-13 3 2 2 2019-07-14 01:36:29.208741 2019-07-14 01:43:11.805292 2019-07-13 1 1 30 1 2 2019-04-13 2 2 11 2019-04-13 17:02:52.690827 2019-04-13 18:22:55.148633 2019-04-13 1 1 75 2 1 2019-07-13 3 2 2 2019-07-14 01:28:05.775979 2019-07-14 01:43:24.746284 2019-07-13 1 1 31 1 2 2019-04-29 2 2 3 2019-04-29 22:11:17.342132 2019-04-29 22:13:00.467708 2019-04-29 1 1 32 1 2 2019-04-29 2 2 10 2019-04-29 22:18:51.707907 2019-04-29 22:21:56.565263 2019-04-29 1 1 33 2 1 2019-04-29 3 2 2 2019-04-29 22:32:08.070256 2019-04-29 22:33:04.502768 2019-04-29 1 1 78 2 1 2019-07-15 3 2 2 2019-07-15 23:16:12.436607 2019-07-15 23:47:16.911051 2019-07-15 1 1 34 2 1 2019-05-02 10 2 2 2019-05-02 21:12:21.623872 2019-05-02 21:25:44.359868 2019-05-02 1 1 35 2 1 2019-05-02 10 2 2 2019-05-02 21:13:40.813301 2019-05-02 21:26:07.157692 2019-05-02 1 1 79 1 2 2019-07-15 9 2 3 2019-07-15 23:21:48.804804 2019-07-16 00:08:51.448273 2019-07-15 1 1 80 1 2 2019-07-15 2 2 3 2019-07-15 23:48:48.379229 2019-07-16 00:09:20.499074 2019-07-15 1 1 77 1 2 2019-07-13 2 2 3 2019-07-14 01:41:43.750797 2019-07-16 00:09:46.630515 2019-07-15 1 1 38 1 2 2019-05-04 2 2 3 2019-05-04 19:21:31.045526 2019-05-04 19:48:43.256003 2019-05-04 1 1 37 1 2 2019-05-04 2 2 3 2019-05-04 17:20:08.548252 2019-05-04 19:48:49.196596 2019-05-04 1 1 36 1 2 2019-05-02 2 2 3 2019-05-02 21:43:02.414623 2019-05-04 19:48:57.474248 2019-05-04 1 1 39 2 1 2019-05-04 3 2 2 2019-05-04 20:05:56.562097 2019-05-04 20:06:17.060812 2019-05-04 1 1 40 1 2 2019-05-04 2 2 3 2019-05-04 21:39:07.133982 2019-05-04 21:40:02.965646 2019-05-04 1 1 82 1 2 2019-07-17 9 2 10 2019-07-18 01:22:52.373749 2019-07-18 01:23:32.295997 2019-07-17 1 1 41 1 2 2019-05-04 2 2 3 2019-05-04 22:42:14.145856 2019-05-05 17:18:40.147748 2019-05-05 1 1 42 2 1 2019-05-05 3 2 12 2019-05-05 17:18:21.106364 2019-05-05 17:19:13.18622 2019-05-05 1 1 81 2 1 2019-07-16 10 2 2 2019-07-17 00:36:36.599322 2019-07-20 18:05:32.94792 2019-07-20 1 1 43 2 1 2019-05-06 3 2 2 2019-05-06 16:50:34.264924 2019-05-06 16:53:47.53888 2019-05-06 1 1 83 2 1 2019-07-20 3 2 2 2019-07-20 18:02:06.271418 2019-07-20 18:05:48.034223 2019-07-20 1 1 44 2 1 2019-05-07 3 2 2 2019-05-08 00:38:46.287766 2019-05-08 00:39:36.801925 2019-05-07 1 1 45 2 1 2019-05-08 3 2 9 2019-05-08 17:12:36.250702 2019-05-08 17:14:03.911032 2019-05-08 1 1 46 2 1 2019-05-15 3 2 2 2019-05-15 19:42:16.222097 2019-05-15 19:43:36.389183 2019-05-15 1 1 85 2 1 2019-07-24 3 2 2 2019-07-24 21:39:12.708552 2019-07-25 17:51:17.224995 2019-07-25 1 1 47 2 1 2019-05-15 3 2 2 2019-05-15 21:45:55.106848 2019-05-15 21:46:19.586168 2019-05-15 1 1 48 1 2 2019-05-17 2 2 3 2019-05-17 18:14:48.461261 2019-05-17 18:16:49.106369 2019-05-17 1 1 49 1 2 2019-05-17 2 2 3 2019-05-17 22:11:03.373082 2019-05-17 22:19:55.359279 2019-05-17 1 1 86 2 1 2019-07-27 3 2 2 2019-07-27 23:18:45.459454 2019-07-28 00:57:18.570451 2019-07-27 1 1 50 2 1 2019-05-17 3 2 2 2019-05-17 22:27:08.422333 2019-05-20 23:43:52.961348 2019-05-20 1 1 51 1 2 2019-05-20 2 2 10 2019-05-20 23:45:52.716227 2019-05-20 23:48:47.475452 2019-05-20 1 1 52 1 2 2019-05-23 2 2 3 2019-05-23 20:12:17.618079 2019-05-23 20:24:17.959769 2019-05-23 1 1 53 2 1 2019-05-23 3 2 2 2019-05-23 20:15:52.50624 2019-06-04 00:09:53.222672 2019-06-03 1 1 54 2 1 2019-06-01 3 2 2 2019-06-01 21:13:34.09126 2019-06-04 00:10:07.75263 2019-06-03 1 1 55 1 2 2019-06-03 2 2 10 2019-06-04 00:10:52.909581 2019-06-04 00:56:48.924831 2019-06-03 1 1 56 2 1 2019-06-03 10 2 2 2019-06-04 00:58:53.303094 2019-06-04 01:38:16.011593 2019-06-03 1 1 58 2 1 2019-06-10 3 2 2 2019-06-10 20:36:17.728361 2019-06-10 20:38:58.342134 2019-06-10 1 1 57 2 1 2019-06-04 4 2 2 2019-06-04 22:20:31.952086 2019-06-10 20:39:11.177209 2019-06-10 1 1 59 1 2 2019-06-10 2 2 3 2019-06-10 20:39:53.374813 2019-06-10 23:13:43.579323 2019-06-10 1 1 60 1 2 2019-06-20 12 2 3 2019-06-20 18:05:35.794407 2019-06-20 21:45:51.292304 2019-06-20 1 1 61 2 1 2019-06-20 3 2 12 2019-06-20 21:46:16.999514 2019-06-20 21:57:06.155797 2019-06-20 1 1 87 2 1 2019-07-27 3 2 2 2019-07-27 23:44:45.472731 2019-07-28 00:57:11.550958 2019-07-27 1 1 671 3 1 2020-09-07 1 2 2 2020-09-07 16:49:47.961007 2020-09-07 16:50:11.694354 2020-09-07 1 1 88 2 1 2019-07-27 3 2 2 2019-07-28 00:58:22.091984 2019-07-28 00:58:34.74803 2019-07-27 1 1 166 1 1 2019-09-04 4 2 22 2019-09-04 17:48:13.738777 2019-11-03 19:41:06.609286 2019-11-03 1 0 89 1 2 2019-08-01 2 2 3 2019-08-02 01:56:47.120644 2019-08-02 21:27:56.45431 2019-08-02 1 1 168 1 1 2019-09-04 4 2 22 2019-09-04 19:31:21.718024 2019-11-03 19:43:11.442443 2019-11-03 1 0 143 1 3 2019-09-03 4 2 18 2019-09-03 20:48:51.58232 2019-09-03 20:53:31.255061 2019-09-03 1 1 142 1 3 2019-09-03 4 2 18 2019-09-03 20:47:30.842413 2019-09-03 20:53:43.871199 2019-09-03 1 1 141 2 3 2019-09-03 4 2 18 2019-09-03 20:42:56.052718 2019-09-03 20:53:50.482708 2019-09-03 1 1 167 1 1 2019-09-04 4 2 22 2019-09-04 19:16:34.001174 2019-11-03 19:43:24.207043 2019-11-03 1 0 140 2 3 2019-09-03 4 2 18 2019-09-03 20:42:13.104622 2019-09-03 20:53:56.898055 2019-09-03 1 1 144 1 3 2019-09-03 4 2 18 2019-09-03 21:03:05.177084 2019-09-03 21:03:23.714237 2019-09-03 1 1 99 1 1 2019-08-21 4 1 \N 2019-08-22 05:17:58.295079 2019-08-22 05:17:58.295079 \N \N 0 1 91 3 2 2019-08-18 4 2 3 2019-08-19 00:08:09.015809 2019-08-22 15:14:09.793333 2019-08-22 1 1 98 1 2 2019-08-21 4 2 3 2019-08-22 05:08:30.409812 2019-08-22 15:14:17.708411 2019-08-22 0 1 147 2 3 2019-09-03 4 2 21 2019-09-03 23:32:45.725642 2019-09-03 23:33:05.291248 2019-09-03 1 1 146 1 3 2019-09-03 4 2 21 2019-09-03 23:30:53.753429 2019-09-03 23:33:13.149974 2019-09-03 1 1 145 1 3 2019-09-03 4 2 21 2019-09-03 21:05:21.982738 2019-09-03 23:33:18.727561 2019-09-03 1 1 103 1 2 2019-08-22 4 2 3 2019-08-22 15:24:39.598343 2019-08-22 15:28:49.873084 2019-08-22 1 1 101 1 2 2019-08-22 4 2 3 2019-08-22 15:21:57.053761 2019-08-22 15:28:58.902817 2019-08-22 1 1 97 1 2 2019-08-21 4 2 3 2019-08-22 05:04:06.205582 2019-08-22 15:29:06.680605 2019-08-22 1 1 94 2 1 2019-08-18 4 2 22 2019-08-19 00:11:56.744237 2019-09-03 23:53:50.794687 2019-09-03 1 0 105 1 2 2019-08-22 4 2 3 2019-08-22 15:39:20.936682 2019-08-22 15:39:52.114972 2019-08-22 1 1 106 1 2 2019-08-22 4 2 3 2019-08-22 16:35:48.874847 2019-08-22 16:36:57.438927 2019-08-22 1 1 92 2 1 2019-08-18 4 2 2 2019-08-19 00:09:56.176013 2019-08-22 23:11:28.713876 2019-08-22 1 1 96 1 1 2019-08-20 4 2 2 2019-08-20 22:34:48.591154 2019-08-22 23:12:24.984509 2019-08-22 0 1 107 1 3 2019-08-22 4 2 18 2019-08-22 16:36:11.999628 2019-08-24 02:20:37.78204 2019-08-23 1 1 104 1 3 2019-08-22 4 2 18 2019-08-22 15:25:04.6656 2019-08-24 02:20:47.998943 2019-08-23 1 1 102 1 3 2019-08-22 4 2 18 2019-08-22 15:22:26.447452 2019-08-24 02:21:20.564094 2019-08-23 1 1 100 2 3 2019-08-22 4 2 18 2019-08-22 15:19:48.733533 2019-08-24 02:21:35.754241 2019-08-23 1 1 95 1 3 2019-08-18 4 2 18 2019-08-19 01:00:27.842155 2019-08-24 02:21:47.761901 2019-08-23 1 1 93 2 3 2019-08-18 4 2 18 2019-08-19 00:11:28.206652 2019-08-24 02:22:00.440662 2019-08-23 1 1 148 1 3 2019-09-03 22 2 21 2019-09-03 23:54:09.787566 2019-09-03 23:55:52.734032 2019-09-03 0 1 149 1 3 2019-09-03 22 2 21 2019-09-03 23:54:47.754244 2019-09-03 23:55:57.065299 2019-09-03 0 1 109 1 2 2019-08-24 2 2 3 2019-08-24 21:09:33.091323 2019-08-25 00:50:12.134619 2019-08-24 1 1 110 2 1 2019-08-24 3 2 2 2019-08-25 00:50:27.505378 2019-08-25 00:50:42.658781 2019-08-24 1 1 112 1 3 2019-08-25 4 2 18 2019-08-25 19:43:18.452035 2019-08-25 19:43:57.854611 2019-08-25 0 1 111 1 3 2019-08-25 4 2 18 2019-08-25 19:33:50.437672 2019-08-25 19:44:05.533026 2019-08-25 1 1 108 1 3 2019-08-23 4 2 18 2019-08-24 02:34:31.640872 2019-08-25 19:44:14.938314 2019-08-25 1 1 113 2 1 2019-08-27 3 2 2 2019-08-28 00:20:07.213392 2019-08-28 00:20:41.421771 2019-08-27 1 1 114 1 3 2019-08-27 4 2 18 2019-08-28 03:57:44.858657 2019-08-28 03:58:08.963151 2019-08-27 1 1 115 1 3 2019-08-29 4 2 18 2019-08-29 14:35:00.484803 2019-08-29 14:37:39.574734 2019-08-29 0 1 116 1 3 2019-08-29 4 2 18 2019-08-29 14:35:30.442691 2019-08-29 14:37:49.539385 2019-08-29 0 1 117 2 3 2019-08-29 4 2 18 2019-08-29 14:37:06.276605 2019-08-29 14:37:56.990176 2019-08-29 1 1 118 1 3 2019-08-29 4 2 18 2019-08-29 14:44:09.463011 2019-08-29 14:47:49.552321 2019-08-29 0 1 119 2 3 2019-08-29 4 2 18 2019-08-29 14:46:28.002186 2019-08-29 14:47:58.845656 2019-08-29 1 1 90 2 1 2019-08-02 3 2 2 2019-08-03 00:35:54.775226 2019-08-29 18:15:06.058822 2019-08-29 1 1 150 2 3 2019-09-03 4 2 21 2019-09-04 00:09:09.209834 2019-09-04 00:51:26.577874 2019-09-03 1 1 121 1 2 2019-08-29 2 2 10 2019-08-30 01:06:03.267872 2019-08-30 01:06:24.767172 2019-08-29 1 1 160 1 3 2019-09-03 4 2 21 2019-09-04 00:42:25.487705 2019-09-04 00:51:32.646555 2019-09-03 1 1 159 1 3 2019-09-03 4 2 21 2019-09-04 00:40:15.696236 2019-09-04 00:51:37.492674 2019-09-03 1 1 156 2 3 2019-09-03 4 2 21 2019-09-04 00:28:53.919154 2019-09-04 00:51:43.279077 2019-09-03 1 1 120 1 3 2019-08-29 2 2 18 2019-08-29 23:47:31.939906 2019-08-30 05:03:35.232111 2019-08-29 1 1 124 1 3 2019-08-29 4 2 18 2019-08-30 04:56:43.358501 2019-08-30 05:03:43.682634 2019-08-29 0 1 122 1 2 2019-08-29 4 2 10 2019-08-30 04:52:42.575521 2019-08-30 05:04:31.477352 2019-08-29 0 1 123 1 1 2019-08-29 4 2 9 2019-08-30 04:54:07.942194 2019-08-30 05:05:08.260338 2019-08-29 0 1 151 1 3 2019-09-03 4 2 21 2019-09-04 00:12:28.276669 2019-09-04 00:51:56.127643 2019-09-03 1 1 152 1 3 2019-09-03 4 2 21 2019-09-04 00:13:11.03271 2019-09-04 00:52:02.106102 2019-09-03 1 1 155 2 3 2019-09-03 4 2 21 2019-09-04 00:17:27.089741 2019-09-04 00:52:10.576644 2019-09-03 1 1 125 2 3 2019-08-30 4 2 18 2019-08-31 03:48:48.302868 2019-08-31 03:52:19.904193 2019-08-30 1 1 126 2 3 2019-08-30 4 2 18 2019-08-31 03:50:07.055819 2019-08-31 03:52:29.067764 2019-08-30 1 1 158 2 3 2019-09-03 4 2 21 2019-09-04 00:39:47.041954 2019-09-04 00:52:31.835045 2019-09-03 1 1 127 1 2 2019-08-30 4 2 10 2019-08-31 03:51:46.446542 2019-08-31 04:20:35.036758 2019-08-30 0 1 128 1 3 2019-08-30 4 2 18 2019-08-31 04:16:57.189718 2019-08-31 04:21:11.815629 2019-08-30 0 1 157 1 3 2019-09-03 4 2 21 2019-09-04 00:36:39.725503 2019-09-04 00:52:56.617473 2019-09-03 1 1 129 1 1 2019-08-30 4 2 9 2019-08-31 04:58:41.317551 2019-08-31 05:01:05.128906 2019-08-30 0 1 131 2 1 2019-08-31 3 2 2 2019-08-31 21:17:42.549604 2019-08-31 21:18:24.197663 2019-08-31 1 1 154 2 1 2019-09-03 4 2 22 2019-09-04 00:16:35.15795 2019-09-04 01:08:02.494052 2019-09-03 1 0 132 1 3 2019-08-31 4 2 18 2019-09-01 03:16:27.087176 2019-09-01 03:17:21.503224 2019-08-31 1 1 153 2 1 2019-09-03 4 2 22 2019-09-04 00:14:57.768139 2019-09-04 01:08:07.219415 2019-09-03 1 0 161 2 3 2019-09-03 4 2 21 2019-09-04 01:00:33.619429 2019-09-04 01:08:26.772217 2019-09-03 1 1 134 2 1 2019-09-02 20 2 2 2019-09-02 17:24:46.298392 2019-09-02 17:26:14.583812 2019-09-02 1 1 162 1 3 2019-09-03 4 2 21 2019-09-04 01:04:04.593576 2019-09-04 01:08:33.059935 2019-09-03 1 1 135 1 2 2019-09-02 2 2 20 2019-09-02 22:01:02.079129 2019-09-02 22:20:28.063213 2019-09-02 1 1 130 1 2 2019-08-31 2 2 3 2019-08-31 20:36:39.377432 2019-09-02 22:36:43.316064 2019-09-02 1 1 136 2 1 2019-09-02 3 2 2 2019-09-02 22:38:08.698204 2019-09-02 22:38:39.513501 2019-09-02 1 1 133 1 3 2019-09-01 2 2 18 2019-09-01 17:32:22.278155 2019-09-03 01:06:05.397501 2019-09-02 1 1 163 1 2 2019-09-04 2 2 8 2019-09-04 16:19:31.316244 2019-09-04 16:37:23.321097 2019-09-04 1 1 139 1 3 2019-09-03 4 2 18 2019-09-03 18:56:24.748952 2019-09-03 19:26:33.676734 2019-09-03 1 1 138 2 3 2019-09-03 4 2 18 2019-09-03 18:45:21.693821 2019-09-03 19:26:39.59561 2019-09-03 1 1 165 2 3 2019-09-04 8 2 21 2019-09-04 17:05:22.727535 2019-09-04 17:06:44.483676 2019-09-04 1 1 164 1 3 2019-09-04 2 2 21 2019-09-04 16:27:55.08475 2019-09-04 17:06:50.942146 2019-09-04 1 1 137 3 1 2019-09-02 18 2 2 2019-09-03 01:06:35.694281 2019-09-04 23:22:42.192388 2019-09-04 1 1 171 2 1 2019-09-04 8 2 2 2019-09-04 22:28:11.605478 2019-09-04 23:22:58.812919 2019-09-04 1 1 169 1 3 2019-09-04 4 2 18 2019-09-04 19:44:50.168838 2019-09-05 03:30:37.088706 2019-09-04 1 1 173 1 2 2019-09-04 4 2 10 2019-09-05 03:29:25.687153 2019-09-05 03:33:02.582907 2019-09-04 0 1 170 1 2 2019-09-04 2 2 10 2019-09-04 21:44:33.028544 2019-09-05 03:33:14.095878 2019-09-04 1 1 174 1 3 2019-09-04 4 2 18 2019-09-05 03:29:45.500101 2019-09-05 03:30:31.015238 2019-09-04 0 1 172 1 2 2019-09-04 2 2 10 2019-09-04 23:23:36.401574 2019-09-05 03:33:07.555793 2019-09-04 1 1 239 1 2 2019-10-11 4 2 8 2019-10-11 22:08:20.361338 2019-10-11 22:09:07.665008 2019-10-11 0 1 175 2 1 2019-09-06 20 2 2 2019-09-06 17:04:06.180817 2019-09-06 17:13:18.070589 2019-09-06 1 1 240 1 3 2019-10-11 4 2 18 2019-10-11 22:08:42.117566 2019-10-11 22:13:24.198145 2019-10-11 0 1 176 1 2 2019-09-07 9 2 8 2019-09-08 00:13:58.01879 2019-09-08 00:24:52.272977 2019-09-07 1 1 237 1 3 2019-10-11 4 2 18 2019-10-11 20:35:11.395253 2019-10-11 22:13:34.037967 2019-10-11 0 1 178 3 1 2019-09-10 23 2 2 2019-09-10 22:17:38.265501 2019-09-10 22:20:47.827303 2019-09-10 1 1 177 3 1 2019-09-09 23 2 2 2019-09-09 21:13:58.316654 2019-09-10 22:20:56.292655 2019-09-10 1 1 241 2 3 2019-10-12 4 2 21 2019-10-12 18:52:21.423568 2019-10-12 18:53:19.43484 2019-10-12 1 1 179 1 2 2019-09-11 2 2 8 2019-09-11 17:36:41.51123 2019-09-11 17:48:39.016542 2019-09-11 1 1 235 1 1 2019-10-11 2 2 22 2019-10-11 20:19:32.029172 2020-01-07 18:13:38.593409 2020-01-07 1 0 216 1 1 2019-10-05 25 2 22 2019-10-05 18:01:51.571331 2020-01-07 18:13:55.196241 2020-01-07 1 0 242 3 2 2019-10-12 4 2 8 2019-10-12 20:43:31.271835 2019-10-12 20:45:51.074936 2019-10-12 1 1 243 3 1 2019-10-12 4 2 25 2019-10-12 20:44:12.994512 2019-10-12 21:09:02.260041 2019-10-12 1 1 180 2 1 2019-09-11 8 2 2 2019-09-11 17:49:22.864987 2019-09-11 19:51:54.315048 2019-09-11 1 1 181 2 1 2019-09-11 8 2 2 2019-09-11 18:16:14.177496 2019-09-11 19:52:02.833743 2019-09-11 1 1 182 2 1 2019-09-11 8 2 2 2019-09-11 18:21:00.908597 2019-09-11 19:52:12.26928 2019-09-11 1 1 183 2 1 2019-09-11 8 2 2 2019-09-11 18:24:43.949688 2019-09-11 19:52:20.917145 2019-09-11 1 1 244 2 3 2019-10-13 4 2 21 2019-10-13 17:11:53.02777 2019-10-14 19:11:18.154183 2019-10-14 1 1 186 2 1 2019-09-11 8 2 2 2019-09-11 20:06:32.318372 2019-09-11 22:10:56.551214 2019-09-11 1 1 185 2 1 2019-09-11 8 2 2 2019-09-11 20:05:59.214776 2019-09-11 22:11:05.058144 2019-09-11 1 1 246 2 3 2019-10-13 4 2 21 2019-10-13 17:20:09.48204 2019-10-14 19:11:25.788218 2019-10-14 1 1 187 1 2 2019-09-11 2 2 8 2019-09-11 22:10:42.787589 2019-09-13 21:54:34.862363 2019-09-13 1 1 188 1 2 2019-09-13 2 2 8 2019-09-13 21:54:23.254083 2019-09-13 21:54:41.493997 2019-09-13 1 1 184 1 2 2019-09-11 2 2 8 2019-09-11 19:59:46.259395 2019-09-13 21:54:47.732248 2019-09-13 1 1 245 2 1 2019-10-13 4 2 25 2019-10-13 17:15:12.529117 2019-10-14 19:14:00.510261 2019-10-14 1 1 189 1 2 2019-09-14 2 2 8 2019-09-14 20:50:46.138204 2019-09-14 20:59:12.509009 2019-09-14 1 1 190 2 1 2019-09-14 4 2 2 2019-09-14 21:17:03.394162 2019-09-14 21:20:29.506052 2019-09-14 1 1 247 2 1 2019-10-14 4 2 25 2019-10-14 19:15:12.205413 2019-10-14 19:17:17.304798 2019-10-14 1 1 192 3 2 2019-09-17 23 2 10 2019-09-17 17:49:05.746776 2019-09-17 22:52:19.818003 2019-09-17 1 1 193 2 1 2019-09-17 10 2 9 2019-09-17 22:53:10.55262 2019-09-17 22:53:36.335277 2019-09-17 1 1 191 3 1 2019-09-17 23 2 9 2019-09-17 17:48:18.284998 2019-09-17 22:53:44.338985 2019-09-17 1 1 195 2 1 2019-09-20 8 2 9 2019-09-20 17:27:37.210504 2019-09-20 17:28:58.276142 2019-09-20 1 1 196 1 2 2019-09-20 9 2 8 2019-09-20 17:28:47.288924 2019-09-20 17:29:32.722323 2019-09-20 1 1 252 2 1 2019-10-19 4 2 2 2019-10-19 18:50:01.709126 2019-10-19 18:51:52.686809 2019-10-19 1 1 238 3 1 2019-10-11 21 2 25 2019-10-11 20:59:20.838387 2019-10-21 18:24:10.969668 2019-10-21 1 1 198 2 3 2019-09-20 8 2 23 2019-09-20 22:23:10.145648 2019-09-21 00:04:06.871475 2019-09-20 1 1 194 1 3 2019-09-19 2 2 23 2019-09-19 23:50:01.398358 2019-09-21 00:04:18.035102 2019-09-20 1 1 253 1 2 2019-10-21 4 2 26 2019-10-21 18:21:54.624624 2019-10-21 20:54:54.788719 2019-10-21 1 1 251 3 2 2019-10-17 4 2 26 2019-10-17 21:09:36.812822 2019-10-21 20:55:22.353786 2019-10-21 1 1 199 1 2 2019-09-20 2 2 8 2019-09-20 22:38:14.228452 2019-09-21 20:45:29.036744 2019-09-21 1 1 200 3 2 2019-09-20 23 2 8 2019-09-21 00:05:41.168876 2019-09-21 20:45:37.987181 2019-09-21 1 1 201 2 1 2019-09-21 4 2 2 2019-09-21 20:33:25.039277 2019-09-21 20:59:21.390434 2019-09-21 1 1 202 1 1 2019-09-21 4 2 2 2019-09-21 20:44:35.205093 2019-09-21 20:59:29.979054 2019-09-21 0 1 197 2 1 2019-09-20 8 2 2 2019-09-20 17:39:53.898497 2019-09-21 21:03:35.031685 2019-09-21 1 1 203 2 1 2019-09-21 8 2 2 2019-09-21 21:05:18.490268 2019-09-21 23:54:51.656042 2019-09-21 1 1 255 1 2 2019-10-21 4 2 26 2019-10-22 00:30:38.182341 2019-10-22 00:30:52.128506 2019-10-21 1 1 204 1 2 2019-09-23 9 2 8 2019-09-23 20:46:00.774947 2019-09-23 20:47:24.897674 2019-09-23 1 1 205 2 1 2019-09-24 4 2 2 2019-09-24 20:12:12.900257 2019-09-24 20:26:15.554957 2019-09-24 1 1 256 3 2 2019-10-21 4 2 26 2019-10-22 01:35:37.012436 2019-10-22 01:35:57.033953 2019-10-21 1 1 257 1 2 2019-10-23 2 2 24 2019-10-23 23:52:31.155148 2019-10-23 23:52:50.819154 2019-10-23 1 1 208 1 2 2019-09-27 9 2 8 2019-09-27 19:20:36.281622 2019-09-27 19:26:15.152629 2019-09-27 1 1 209 1 2 2019-09-27 9 2 8 2019-09-27 19:57:15.167127 2019-09-27 19:57:34.833962 2019-09-27 1 1 207 1 3 2019-09-26 4 2 21 2019-09-26 23:24:53.663816 2019-09-28 00:46:15.104066 2019-09-27 1 1 206 3 1 2019-09-26 4 2 2 2019-09-26 23:22:33.446555 2019-10-03 00:55:34.563058 2019-10-02 1 1 210 3 1 2019-10-02 23 2 2 2019-10-03 00:49:57.457733 2019-10-03 00:55:45.528775 2019-10-02 1 1 258 2 3 2019-10-25 4 2 21 2019-10-25 16:37:29.580379 2019-10-25 16:42:43.33858 2019-10-25 1 1 254 2 3 2019-10-21 26 2 21 2019-10-21 21:06:15.357103 2019-10-25 16:42:52.147067 2019-10-25 1 1 248 1 3 2019-10-15 4 2 21 2019-10-15 17:56:52.76296 2019-10-25 16:42:57.716676 2019-10-25 1 1 211 1 3 2019-10-03 4 2 21 2019-10-03 20:18:47.858609 2019-10-03 20:20:34.69887 2019-10-03 0 1 212 1 3 2019-10-03 4 2 21 2019-10-03 20:19:26.482116 2019-10-03 20:20:41.503226 2019-10-03 1 1 213 1 2 2019-10-03 4 2 8 2019-10-03 20:19:48.929449 2019-10-04 22:28:28.504202 2019-10-04 1 1 250 3 1 2019-10-15 4 2 22 2019-10-15 18:15:21.081655 2019-11-03 19:42:22.568784 2019-11-03 1 0 249 3 1 2019-10-15 4 2 22 2019-10-15 18:10:14.378484 2019-11-03 19:42:31.082189 2019-11-03 1 0 222 2 1 2019-10-05 4 2 22 2019-10-06 00:12:40.437202 2019-11-03 19:42:43.288218 2019-11-03 1 0 214 2 1 2019-10-04 8 2 2 2019-10-04 22:53:07.51789 2019-10-05 19:05:11.97022 2019-10-05 1 1 215 2 1 2019-10-04 8 2 2 2019-10-04 22:53:57.571524 2019-10-05 19:05:19.846663 2019-10-05 1 1 220 1 1 2019-10-05 4 2 2 2019-10-05 18:35:18.606417 2019-10-05 19:05:31.316886 2019-10-05 0 1 221 1 2 2019-10-05 2 2 8 2019-10-05 19:04:42.372072 2019-10-05 21:04:51.591308 2019-10-05 1 1 219 1 2 2019-10-05 25 2 8 2019-10-05 18:32:39.767364 2019-10-05 21:04:57.803762 2019-10-05 1 1 217 1 2 2019-10-05 25 2 8 2019-10-05 18:20:24.974856 2019-10-05 21:05:08.84651 2019-10-05 1 1 224 3 1 2019-10-05 4 2 2 2019-10-06 00:16:10.704461 2019-10-07 19:58:03.392475 2019-10-07 1 1 223 2 1 2019-10-05 8 2 2 2019-10-06 00:15:13.805405 2019-10-07 20:19:09.055521 2019-10-07 1 1 218 1 3 2019-10-05 25 2 21 2019-10-05 18:32:17.763361 2019-10-08 06:08:01.179791 2019-10-08 1 1 226 1 3 2019-10-08 4 2 21 2019-10-08 06:07:34.12985 2019-10-08 06:08:12.687108 2019-10-08 1 1 227 2 1 2019-10-09 10 2 2 2019-10-09 19:59:19.169067 2019-10-09 19:59:47.459338 2019-10-09 1 1 228 3 2 2019-10-10 18 2 8 2019-10-10 18:42:08.913207 2019-10-10 18:42:44.303814 2019-10-10 1 1 225 1 2 2019-10-07 2 2 8 2019-10-07 22:29:43.679549 2019-10-10 18:42:51.665733 2019-10-10 1 1 231 2 3 2019-10-10 4 2 21 2019-10-11 03:08:47.147843 2019-10-11 03:10:08.043954 2019-10-10 1 1 230 2 1 2019-10-10 4 2 25 2019-10-11 03:07:28.906368 2019-10-11 03:10:40.977344 2019-10-10 1 1 229 2 1 2019-10-10 4 2 25 2019-10-10 21:30:09.95766 2019-10-11 03:10:50.309147 2019-10-10 1 1 232 2 1 2019-10-10 4 2 25 2019-10-11 05:28:49.248608 2019-10-11 05:29:26.442686 2019-10-10 1 1 233 2 1 2019-10-10 4 2 25 2019-10-11 05:40:58.788702 2019-10-11 05:41:28.627505 2019-10-10 1 1 236 1 2 2019-10-11 4 2 8 2019-10-11 20:34:32.293183 2019-10-11 21:10:25.914058 2019-10-11 0 1 234 1 2 2019-10-11 2 2 8 2019-10-11 16:21:23.330427 2019-10-11 21:10:34.23432 2019-10-11 1 1 259 2 3 2019-10-25 4 2 21 2019-10-25 16:41:46.519073 2019-10-25 16:42:36.038005 2019-10-25 1 1 260 3 1 2019-10-25 4 2 2 2019-10-25 21:36:42.370821 2019-10-25 21:38:48.118205 2019-10-25 1 1 265 1 1 2019-10-29 4 2 22 2019-10-29 19:48:34.374305 2020-01-07 18:13:30.781735 2020-01-07 1 0 289 2 1 2019-11-05 26 2 22 2019-11-06 01:08:32.439177 2020-01-07 18:13:46.313677 2020-01-07 1 0 262 1 1 2019-10-28 4 2 25 2019-10-28 18:24:41.956897 2019-10-28 18:25:54.295282 2019-10-28 0 1 261 1 2 2019-10-28 4 2 26 2019-10-28 18:24:20.319639 2019-10-28 18:26:20.168316 2019-10-28 0 1 263 1 3 2019-10-28 4 2 21 2019-10-28 18:25:06.682335 2019-10-28 18:27:05.500115 2019-10-28 0 1 264 1 1 2019-10-29 4 2 2 2019-10-29 18:33:42.730884 2019-10-29 18:34:40.494368 2019-10-29 0 1 269 2 3 2019-10-29 4 2 23 2019-10-30 01:29:32.945014 2019-10-30 02:01:56.834242 2019-10-29 1 1 266 1 1 2019-10-29 4 2 2 2019-10-29 21:03:25.716451 2019-10-30 02:29:31.328105 2019-10-29 0 1 267 1 1 2019-10-29 4 2 2 2019-10-30 01:22:18.57587 2019-10-30 02:29:43.306477 2019-10-29 0 1 270 1 1 2019-10-29 4 2 2 2019-10-30 01:59:10.088407 2019-10-30 02:30:08.482194 2019-10-29 0 1 274 1 2 2019-10-29 4 2 26 2019-10-30 02:36:15.439152 2019-10-30 04:04:19.251025 2019-10-29 0 1 272 1 2 2019-10-29 4 2 26 2019-10-30 02:05:16.30172 2019-10-30 04:04:34.748353 2019-10-29 0 1 271 1 2 2019-10-29 4 2 26 2019-10-30 02:04:33.494729 2019-10-30 04:04:48.031898 2019-10-29 0 1 268 1 2 2019-10-29 4 2 26 2019-10-30 01:26:29.169673 2019-10-30 04:05:05.132028 2019-10-29 0 1 275 1 2 2019-10-29 4 2 26 2019-10-30 04:22:08.135795 2019-10-30 04:22:44.320762 2019-10-29 0 1 273 1 1 2019-10-29 4 2 25 2019-10-30 02:35:49.535441 2019-10-31 16:40:42.217482 2019-10-31 0 1 282 1 1 2019-11-03 4 2 22 2019-11-03 19:28:07.217043 2019-11-03 19:41:13.406612 2019-11-03 1 0 281 1 1 2019-11-03 4 2 22 2019-11-03 18:50:06.541781 2019-11-03 19:41:20.513255 2019-11-03 1 0 280 1 1 2019-11-03 25 2 22 2019-11-03 18:36:24.640208 2019-11-03 19:41:27.822397 2019-11-03 1 0 279 1 1 2019-11-03 25 2 22 2019-11-03 18:09:35.508811 2019-11-03 19:41:41.705155 2019-11-03 1 0 278 2 1 2019-10-30 26 2 22 2019-10-30 21:45:11.881874 2019-11-03 19:41:52.308237 2019-11-03 1 0 277 2 1 2019-10-30 26 2 22 2019-10-30 17:57:53.744027 2019-11-03 19:42:01.145997 2019-11-03 1 0 276 2 1 2019-10-30 26 2 22 2019-10-30 17:28:58.287015 2019-11-03 19:42:12.000911 2019-11-03 1 0 283 1 3 2019-11-04 4 2 21 2019-11-04 19:06:05.839277 2019-11-04 19:07:10.823595 2019-11-04 0 1 284 2 3 2019-11-04 4 2 21 2019-11-04 19:08:54.016535 2019-11-04 19:09:23.964688 2019-11-04 1 1 286 2 1 2019-11-05 4 2 25 2019-11-05 19:30:53.512106 2019-11-05 19:41:08.493657 2019-11-05 1 1 285 1 1 2019-11-05 4 2 25 2019-11-05 19:29:42.265583 2019-11-05 19:41:19.063844 2019-11-05 0 1 288 1 2 2019-11-05 4 2 26 2019-11-05 19:38:26.193788 2019-11-05 19:43:39.397452 2019-11-05 0 1 287 1 2 2019-11-05 4 2 26 2019-11-05 19:32:01.544316 2019-11-05 19:43:48.01542 2019-11-05 0 1 290 1 1 2019-11-05 4 2 2 2019-11-06 01:29:27.204844 2019-11-06 01:30:53.866509 2019-11-05 0 1 292 1 3 2019-11-06 4 2 21 2019-11-06 18:15:50.024722 2019-11-06 18:21:13.893097 2019-11-06 0 1 293 1 3 2019-11-06 4 2 21 2019-11-06 18:21:35.520081 2019-11-06 18:23:14.960982 2019-11-06 0 1 297 1 2 2019-11-09 4 2 26 2019-11-09 19:19:43.171748 2019-11-09 19:21:15.142997 2019-11-09 0 1 294 3 1 2019-11-07 4 2 2 2019-11-07 19:54:37.430337 2019-11-09 21:27:47.212085 2019-11-09 1 1 295 1 1 2019-11-09 4 2 2 2019-11-09 19:02:30.643175 2019-11-09 21:27:59.930607 2019-11-09 0 1 296 1 1 2019-11-09 4 2 2 2019-11-09 19:18:53.494197 2019-11-09 21:28:06.994516 2019-11-09 0 1 298 1 1 2019-11-11 4 2 2 2019-11-11 21:40:59.229797 2019-11-11 21:41:15.087443 2019-11-11 0 1 299 2 1 2019-11-11 24 2 2 2019-11-12 02:33:50.458905 2019-11-12 02:35:01.849668 2019-11-11 1 1 300 1 1 2019-11-13 4 2 25 2019-11-13 19:44:20.21915 2019-11-13 19:45:13.203833 2019-11-13 0 1 302 1 2 2019-11-13 4 2 26 2019-11-13 20:46:03.910314 2019-11-13 20:47:26.671393 2019-11-13 0 1 301 1 2 2019-11-13 4 2 26 2019-11-13 20:00:32.19714 2019-11-13 20:47:39.006984 2019-11-13 1 1 303 1 2 2019-11-13 4 2 26 2019-11-13 21:28:22.350145 2019-11-13 21:28:57.922559 2019-11-13 0 1 304 2 1 2019-11-13 1 2 2 2019-11-13 22:36:19.237709 2019-11-13 22:36:47.874561 2019-11-13 1 1 291 2 3 2019-11-05 4 2 23 2019-11-06 01:58:14.043069 2019-11-14 00:55:46.411935 2019-11-13 1 1 305 1 3 2019-11-13 4 2 23 2019-11-14 00:54:23.334211 2019-11-14 00:55:55.774133 2019-11-13 0 1 308 2 1 2019-11-16 26 2 2 2019-11-16 20:36:58.089111 2019-11-20 20:29:59.142174 2019-11-20 1 1 310 2 1 2019-11-20 24 2 2 2019-11-20 20:29:43.57907 2019-11-20 20:30:19.342235 2019-11-20 1 1 311 1 1 2019-11-20 4 2 25 2019-11-20 20:32:01.635693 2019-11-20 20:34:20.346254 2019-11-20 0 1 312 1 2 2019-11-20 4 2 26 2019-11-20 20:52:11.034023 2019-11-20 21:04:17.642454 2019-11-20 0 1 307 3 2 2019-11-14 21 2 26 2019-11-14 17:26:58.381673 2019-11-20 21:04:29.7954 2019-11-20 1 1 309 3 1 2019-11-20 4 2 2 2019-11-20 19:34:40.13852 2019-11-20 21:18:21.134292 2019-11-20 1 1 306 3 1 2019-11-14 21 2 2 2019-11-14 17:26:15.013492 2019-11-20 21:19:16.855629 2019-11-20 1 1 313 1 1 2019-11-20 4 2 2 2019-11-20 21:02:48.147902 2019-11-20 21:22:19.614417 2019-11-20 0 1 314 1 3 2019-11-21 4 2 21 2019-11-21 18:04:19.702006 2019-11-21 18:06:48.832547 2019-11-21 0 1 316 1 3 2019-11-21 4 2 21 2019-11-21 18:08:57.702444 2019-11-21 18:10:16.604183 2019-11-21 0 1 315 1 3 2019-11-21 4 2 21 2019-11-21 18:08:30.724461 2019-11-21 18:10:44.805017 2019-11-21 0 1 317 1 3 2019-11-21 4 2 21 2019-11-21 18:12:53.224598 2019-11-21 18:13:28.111966 2019-11-21 0 1 318 2 1 2019-11-21 24 2 2 2019-11-21 23:45:37.418812 2019-11-21 23:46:21.203973 2019-11-21 1 1 322 1 1 2019-11-23 4 2 2 2019-11-23 17:27:04.271985 2019-11-23 20:55:13.441923 2019-11-23 0 1 321 1 1 2019-11-23 4 2 2 2019-11-23 17:25:53.720321 2019-11-23 20:55:21.931224 2019-11-23 0 1 320 3 1 2019-11-23 4 2 2 2019-11-23 17:10:12.373331 2019-11-23 20:55:35.423036 2019-11-23 1 1 323 1 3 2019-11-25 4 2 23 2019-11-26 01:32:27.665745 2019-11-26 01:32:46.00076 2019-11-25 0 1 324 1 3 2019-11-25 4 2 23 2019-11-26 02:13:40.243835 2019-11-26 02:16:47.414214 2019-11-25 0 1 325 1 1 2019-11-26 4 2 25 2019-11-26 22:51:01.077573 2019-11-26 22:51:39.736366 2019-11-26 0 1 319 3 2 2019-11-23 4 2 26 2019-11-23 17:09:32.474377 2019-11-26 23:16:18.961585 2019-11-26 1 1 326 1 2 2019-11-26 4 2 26 2019-11-26 23:13:06.642239 2019-11-26 23:16:27.3358 2019-11-26 1 1 327 1 2 2019-11-26 4 2 26 2019-11-26 23:15:17.926779 2019-11-26 23:16:41.445547 2019-11-26 0 1 328 1 3 2019-11-27 4 2 21 2019-11-27 21:18:21.06405 2019-11-28 20:12:27.832748 2019-11-28 0 1 330 1 3 2019-11-28 4 2 21 2019-11-28 20:11:05.690465 2019-11-28 20:12:33.95131 2019-11-28 0 1 329 1 2 2019-11-27 2 2 26 2019-11-27 23:47:37.078545 2019-11-30 18:31:30.579969 2019-11-30 1 1 331 3 2 2019-11-30 4 2 26 2019-11-30 18:32:51.459616 2019-11-30 18:57:54.234732 2019-11-30 1 1 332 3 1 2019-11-30 4 2 25 2019-11-30 18:33:31.283568 2019-12-04 23:18:00.696081 2019-12-04 1 1 335 1 3 2019-12-05 4 2 21 2019-12-05 17:44:44.248248 2019-12-05 17:48:30.746535 2019-12-05 0 1 336 3 1 2019-12-05 4 2 25 2019-12-05 17:45:52.374933 2019-12-05 17:49:04.23913 2019-12-05 1 1 334 3 1 2019-11-30 4 2 25 2019-11-30 18:34:22.132253 2019-12-05 17:49:13.155431 2019-12-05 1 1 333 3 1 2019-11-30 4 2 25 2019-11-30 18:34:00.697743 2019-12-05 17:49:20.49007 2019-12-05 1 1 338 3 1 2019-12-05 4 2 25 2019-12-05 18:30:03.012964 2019-12-05 18:30:17.807144 2019-12-05 1 1 337 1 1 2019-12-05 4 2 25 2019-12-05 18:05:49.887661 2019-12-05 18:30:27.977748 2019-12-05 0 1 339 1 3 2019-12-07 2 2 21 2019-12-08 02:47:49.427478 2019-12-08 23:38:31.896893 2019-12-08 1 1 340 3 1 2019-12-10 18 2 2 2019-12-10 20:55:15.08234 2019-12-10 22:00:49.281293 2019-12-10 1 1 341 1 2 2019-12-10 2 2 27 2019-12-10 23:09:26.044057 2019-12-10 23:10:09.577415 2019-12-10 1 1 342 2 1 2019-12-10 24 2 2 2019-12-10 23:15:27.550703 2019-12-10 23:15:55.309835 2019-12-10 1 1 672 1 3 2020-09-07 2 2 18 2020-09-07 20:12:34.610601 2020-09-15 19:19:03.17406 2020-09-15 1 1 353 2 1 2019-12-18 27 2 2 2019-12-18 21:40:26.594661 2019-12-18 23:40:28.582717 2019-12-18 1 1 355 3 1 2019-12-18 21 2 2 2019-12-18 22:42:44.133565 2019-12-18 23:40:44.229119 2019-12-18 1 1 344 3 1 2019-12-12 4 2 2 2019-12-12 21:41:47.853659 2019-12-13 00:43:02.020859 2019-12-12 1 1 345 3 1 2019-12-12 4 2 2 2019-12-12 21:45:42.346196 2019-12-13 00:47:15.248921 2019-12-12 1 1 346 3 2 2019-12-12 4 2 26 2019-12-12 21:49:44.775817 2019-12-14 21:39:05.841874 2019-12-14 1 1 343 3 2 2019-12-10 23 2 26 2019-12-11 01:00:27.098152 2019-12-14 21:39:13.990049 2019-12-14 1 1 351 1 2 2019-12-17 2 2 27 2019-12-18 02:36:33.345662 2019-12-19 02:03:54.654268 2019-12-18 1 1 348 2 1 2019-12-17 27 2 2 2019-12-17 23:43:54.475538 2019-12-18 00:13:46.652626 2019-12-17 1 1 352 3 2 2019-12-18 19 2 27 2019-12-18 20:53:29.04029 2019-12-19 02:04:51.620516 2019-12-18 1 1 354 3 2 2019-12-18 21 2 27 2019-12-18 22:41:39.135774 2019-12-19 02:04:59.654098 2019-12-18 1 1 350 1 2 2019-12-17 2 2 27 2019-12-18 01:10:09.731318 2019-12-18 01:12:49.655176 2019-12-17 1 1 349 1 2 2019-12-17 2 2 27 2019-12-18 00:56:58.961196 2019-12-18 01:13:03.117483 2019-12-17 1 1 347 3 2 2019-12-15 21 2 27 2019-12-15 21:21:51.612439 2019-12-18 01:13:12.803971 2019-12-17 1 1 356 1 2 2019-12-18 2 2 27 2019-12-18 23:59:45.686533 2019-12-19 02:05:07.019739 2019-12-18 1 1 357 2 1 2019-12-19 27 2 2 2019-12-20 01:16:42.910398 2019-12-20 02:13:09.665519 2019-12-19 1 1 359 2 1 2019-12-20 24 2 2 2019-12-20 17:24:18.241874 2019-12-20 17:25:13.309776 2019-12-20 1 1 358 1 3 2019-12-19 2 2 21 2019-12-20 02:24:49.222672 2019-12-20 17:52:58.761433 2019-12-20 1 1 362 2 1 2019-12-21 1 2 2 2019-12-21 21:24:44.549274 2019-12-21 21:25:04.98978 2019-12-21 1 1 363 1 2 2019-12-21 4 2 26 2019-12-21 21:30:24.905484 2019-12-21 21:35:15.118348 2019-12-21 1 1 364 2 1 2019-12-21 1 2 2 2019-12-21 22:24:30.093317 2019-12-21 22:24:49.003533 2019-12-21 1 1 365 2 1 2019-12-21 1 2 2 2019-12-21 22:27:16.007618 2019-12-21 22:27:46.133433 2019-12-21 1 1 361 1 3 2019-12-21 4 2 21 2019-12-21 17:58:00.340305 2019-12-22 00:38:57.899671 2019-12-21 1 1 360 1 3 2019-12-21 4 2 21 2019-12-21 17:55:57.237972 2019-12-22 00:39:12.590884 2019-12-21 1 1 366 3 1 2019-12-21 21 2 25 2019-12-22 00:25:08.552407 2019-12-22 00:42:31.176033 2019-12-21 1 1 368 2 1 2019-12-21 1 2 2 2019-12-22 02:05:12.658315 2019-12-22 02:06:27.814606 2019-12-21 1 1 370 2 1 2019-12-22 4 2 9 2019-12-22 19:03:07.141851 2019-12-22 19:03:45.735117 2019-12-22 1 1 369 1 3 2019-12-22 4 2 21 2019-12-22 19:01:28.446621 2019-12-22 19:56:05.341369 2019-12-22 1 1 371 2 3 2019-12-22 4 2 21 2019-12-22 19:54:12.559641 2019-12-22 19:56:14.78014 2019-12-22 1 1 372 3 2 2019-12-22 4 2 27 2019-12-22 19:54:53.561673 2019-12-22 23:35:53.375873 2019-12-22 1 1 367 1 2 2019-12-21 25 2 27 2019-12-22 00:44:03.657229 2019-12-22 23:36:02.138482 2019-12-22 1 1 374 2 3 2019-12-22 27 2 21 2019-12-23 00:36:43.020434 2019-12-23 02:20:57.868104 2019-12-22 1 1 377 3 2 2019-12-23 21 2 27 2019-12-23 19:39:08.084246 2019-12-23 19:54:07.877189 2019-12-23 1 1 376 3 2 2019-12-23 21 2 27 2019-12-23 19:27:48.676194 2019-12-23 19:54:15.962617 2019-12-23 1 1 375 3 2 2019-12-22 21 2 27 2019-12-23 02:21:18.977072 2019-12-23 19:54:24.112138 2019-12-23 1 1 379 1 3 2019-12-23 4 2 21 2019-12-23 20:50:09.225627 2019-12-23 20:50:57.693494 2019-12-23 0 1 373 2 1 2019-12-22 27 2 2 2019-12-22 23:35:35.427844 2019-12-23 22:45:02.641927 2019-12-23 1 1 381 2 1 2019-12-23 8 2 2 2019-12-23 22:46:21.088213 2019-12-23 22:47:34.116676 2019-12-23 1 1 383 1 3 2019-12-23 4 2 21 2019-12-23 23:09:33.819899 2019-12-23 23:09:47.091566 2019-12-23 1 1 382 1 3 2019-12-23 4 2 21 2019-12-23 23:09:00.142864 2019-12-23 23:11:20.737448 2019-12-23 1 1 384 2 1 2019-12-23 27 2 2 2019-12-24 00:33:19.244661 2019-12-24 00:50:58.271267 2019-12-23 1 1 380 1 2 2019-12-23 2 2 27 2019-12-23 22:44:53.11082 2019-12-24 00:51:04.284855 2019-12-23 1 1 378 3 2 2019-12-23 4 2 27 2019-12-23 19:54:57.659678 2019-12-24 00:51:13.450993 2019-12-23 1 1 385 1 1 2019-12-24 4 2 2 2019-12-24 17:43:12.842904 2019-12-24 17:53:04.55825 2019-12-24 0 1 386 2 3 2019-12-24 27 2 21 2019-12-24 17:48:23.04105 2019-12-24 19:35:05.397792 2019-12-24 1 1 387 1 3 2019-12-24 2 2 21 2019-12-24 17:52:56.358413 2019-12-24 19:35:22.749509 2019-12-24 1 1 388 1 3 2019-12-24 4 2 21 2019-12-24 19:31:54.972155 2019-12-24 19:35:31.720222 2019-12-24 0 1 389 1 3 2019-12-24 4 2 21 2019-12-24 19:34:35.823294 2019-12-24 19:35:38.435298 2019-12-24 0 1 390 2 1 2019-12-24 27 2 2 2019-12-24 19:57:02.663639 2019-12-24 23:36:26.746873 2019-12-24 1 1 391 1 2 2019-12-24 2 2 27 2019-12-24 23:36:47.702053 2019-12-24 23:37:31.126966 2019-12-24 1 1 392 1 3 2019-12-24 4 2 21 2019-12-25 00:05:31.628626 2019-12-25 00:07:44.623144 2019-12-24 1 1 393 1 2 2019-12-26 2 2 8 2019-12-26 20:38:29.996919 2019-12-26 21:28:40.352163 2019-12-26 1 1 394 3 1 2019-12-27 4 2 2 2019-12-27 20:27:41.362767 2019-12-27 20:31:59.106324 2019-12-27 1 1 395 1 2 2019-12-27 2 2 24 2019-12-27 20:50:01.10655 2019-12-27 20:52:41.543865 2019-12-27 1 1 397 3 1 2019-12-30 21 2 2 2019-12-31 01:10:05.536676 2019-12-31 01:10:34.799784 2019-12-30 1 1 396 1 2 2019-12-27 2 2 24 2019-12-27 20:57:50.670889 2019-12-31 21:15:24.868415 2019-12-31 1 1 398 2 1 2019-12-31 24 2 2 2019-12-31 21:16:50.714267 2019-12-31 21:17:10.92168 2019-12-31 1 1 399 2 1 2019-12-31 1 2 2 2019-12-31 22:49:20.970343 2019-12-31 22:49:58.390829 2019-12-31 1 1 400 2 1 2020-01-04 24 2 2 2020-01-04 21:31:18.313774 2020-01-04 21:31:55.691236 2020-01-04 1 1 401 2 1 2020-01-04 1 2 2 2020-01-05 01:21:53.593106 2020-01-05 01:22:59.363557 2020-01-04 1 1 405 1 3 2020-01-07 4 2 21 2020-01-07 19:02:29.426257 2020-01-07 19:09:30.182593 2020-01-07 0 1 404 1 3 2020-01-07 25 2 21 2020-01-07 18:58:27.28556 2020-01-07 19:09:36.765703 2020-01-07 1 1 403 1 3 2020-01-07 4 2 21 2020-01-07 18:58:18.580227 2020-01-07 19:09:46.760296 2020-01-07 0 1 402 1 2 2020-01-06 2 2 24 2020-01-07 02:33:38.207809 2020-01-07 23:42:25.765225 2020-01-07 1 1 407 2 1 2020-01-07 24 2 2 2020-01-07 23:42:59.451024 2020-01-07 23:43:27.704399 2020-01-07 1 1 408 2 1 2020-01-10 24 2 2 2020-01-11 01:58:39.073182 2020-01-11 01:58:58.91373 2020-01-10 1 1 406 2 3 2020-01-07 4 2 21 2020-01-07 21:22:56.739893 2020-01-11 17:58:00.35382 2020-01-11 1 1 409 3 1 2020-01-11 21 2 2 2020-01-11 17:59:24.229954 2020-01-11 19:09:02.309492 2020-01-11 1 1 410 3 1 2020-01-11 21 2 2 2020-01-11 19:06:42.297701 2020-01-11 19:09:18.954913 2020-01-11 1 1 411 1 1 2020-01-11 4 2 2 2020-01-11 19:22:16.038031 2020-01-11 19:22:53.835594 2020-01-11 0 1 412 2 1 2020-01-11 4 2 2 2020-01-12 02:04:00.981383 2020-01-12 02:04:26.356336 2020-01-11 1 1 413 3 1 2020-01-11 21 2 2 2020-01-12 02:05:51.624621 2020-01-15 18:05:39.445084 2020-01-15 1 1 414 2 1 2020-01-15 24 2 2 2020-01-15 18:04:54.868883 2020-01-15 18:05:55.439646 2020-01-15 1 1 415 3 2 2020-01-18 21 2 27 2020-01-18 21:52:20.877752 2020-01-18 21:55:23.884956 2020-01-18 1 1 416 2 3 2020-01-18 27 2 21 2020-01-18 21:56:46.057182 2020-01-19 00:02:20.820747 2020-01-18 1 1 418 2 1 2020-01-18 4 2 2 2020-01-19 01:00:30.286546 2020-01-19 01:28:58.700612 2020-01-18 1 1 428 1 3 2020-01-24 4 2 19 2020-01-24 23:47:27.201422 2020-01-24 23:48:06.423601 2020-01-24 0 1 426 2 3 2020-01-24 4 2 19 2020-01-24 23:42:41.779938 2020-01-24 23:48:20.434644 2020-01-24 1 1 425 2 3 2020-01-24 4 2 19 2020-01-24 23:29:07.358127 2020-01-24 23:48:27.505317 2020-01-24 1 1 424 1 3 2020-01-24 4 2 19 2020-01-24 23:24:07.550163 2020-01-24 23:48:35.491396 2020-01-24 1 1 423 2 3 2020-01-24 4 2 19 2020-01-24 23:14:00.820983 2020-01-24 23:48:43.556793 2020-01-24 1 1 422 2 3 2020-01-24 4 2 19 2020-01-24 19:02:19.645985 2020-01-24 23:48:50.847379 2020-01-24 1 1 421 1 3 2020-01-24 4 2 19 2020-01-24 18:58:38.939438 2020-01-24 23:48:57.444253 2020-01-24 1 1 420 1 2 2020-01-21 2 2 8 2020-01-22 01:35:41.342272 2020-01-25 18:58:17.158569 2020-01-25 1 1 419 3 1 2020-01-18 4 2 22 2020-01-19 01:06:54.707738 2020-01-28 20:01:11.694991 2020-01-28 1 0 427 2 3 2020-01-24 4 2 19 2020-01-24 23:45:57.338667 2020-01-24 23:48:13.22154 2020-01-24 1 1 673 1 3 2020-09-10 2 2 18 2020-09-10 23:01:41.705122 2020-09-15 19:19:10.304556 2020-09-15 1 1 492 1 1 2020-02-29 4 2 2 2020-02-29 23:42:42.857761 2020-03-07 21:21:56.822447 2020-03-07 0 1 496 1 1 2020-02-29 4 2 2 2020-03-01 00:16:45.198417 2020-03-07 21:26:16.110264 2020-03-07 0 1 417 3 2 2020-01-18 21 2 8 2020-01-19 00:02:52.695604 2020-01-25 18:58:06.160777 2020-01-25 1 1 430 3 2 2020-01-25 4 2 8 2020-01-25 18:23:22.140194 2020-01-25 18:58:36.274718 2020-01-25 1 1 502 1 1 2020-02-29 4 2 2 2020-03-01 01:29:32.872152 2020-03-07 21:26:27.893885 2020-03-07 0 1 506 1 1 2020-02-29 4 2 2 2020-03-01 02:16:47.249039 2020-03-07 21:26:36.273448 2020-03-07 0 1 431 2 3 2020-01-25 4 2 21 2020-01-25 18:23:49.317821 2020-01-25 19:38:35.32274 2020-01-25 1 1 429 1 3 2020-01-25 4 2 21 2020-01-25 17:47:18.494904 2020-01-25 19:38:42.994462 2020-01-25 1 1 510 2 1 2020-03-07 8 2 2 2020-03-07 21:20:39.521928 2020-03-07 21:26:45.916438 2020-03-07 1 1 435 1 2 2020-01-25 9 2 8 2020-01-25 22:09:20.605218 2020-01-25 22:10:02.539738 2020-01-25 1 1 434 3 2 2020-01-25 21 2 8 2020-01-25 19:39:25.398703 2020-01-25 22:10:12.2063 2020-01-25 1 1 433 1 2 2020-01-25 4 2 8 2020-01-25 19:11:23.48411 2020-01-25 22:10:20.392719 2020-01-25 1 1 432 2 1 2020-01-25 8 2 2 2020-01-25 19:04:55.368281 2020-01-26 00:00:58.955906 2020-01-25 1 1 436 1 2 2020-01-27 9 2 27 2020-01-27 23:29:50.497054 2020-01-27 23:33:51.023386 2020-01-27 1 1 505 1 2 2020-02-29 4 2 8 2020-03-01 02:16:18.377629 2020-03-11 01:47:57.912823 2020-03-10 0 1 508 1 2 2020-02-29 4 2 8 2020-03-01 02:22:02.086702 2020-03-11 01:48:05.771415 2020-03-10 0 1 503 1 3 2020-02-29 4 2 21 2020-03-01 01:35:39.80144 2020-03-11 23:34:48.678052 2020-03-11 0 1 501 1 3 2020-02-29 4 2 21 2020-03-01 01:29:08.175511 2020-03-11 23:34:59.849946 2020-03-11 0 1 498 1 3 2020-02-29 4 2 21 2020-03-01 00:17:34.875267 2020-03-11 23:35:07.269401 2020-03-11 0 1 495 1 3 2020-02-29 4 2 21 2020-03-01 00:09:22.503983 2020-03-11 23:35:13.968387 2020-03-11 0 1 442 1 2 2020-01-28 4 2 8 2020-01-28 20:15:20.508497 2020-01-28 20:26:07.49038 2020-01-28 0 1 443 1 2 2020-01-28 4 2 8 2020-01-28 20:16:42.72621 2020-01-28 20:26:15.34361 2020-01-28 1 1 437 1 1 2020-01-28 4 2 2 2020-01-28 19:08:33.586011 2020-01-28 21:00:55.32627 2020-01-28 0 1 493 1 3 2020-02-29 4 2 21 2020-02-29 23:43:17.676679 2020-03-11 23:35:21.216435 2020-03-11 0 1 444 1 2 2020-01-28 4 2 8 2020-01-28 20:21:08.239565 2020-01-29 00:48:40.881548 2020-01-28 0 1 486 1 3 2020-02-22 4 2 21 2020-02-22 18:31:49.145319 2020-03-11 23:35:32.509465 2020-03-11 1 1 440 2 1 2020-01-28 4 2 2 2020-01-28 19:12:46.609323 2020-01-29 00:53:18.664599 2020-01-28 1 1 446 2 1 2020-01-28 8 2 2 2020-01-29 00:49:43.238599 2020-01-29 00:53:33.472321 2020-01-28 1 1 439 2 1 2020-01-28 4 2 2 2020-01-28 19:11:56.391024 2020-01-29 00:53:45.955666 2020-01-28 1 1 438 1 1 2020-01-28 4 2 2 2020-01-28 19:09:26.867547 2020-01-29 00:54:00.705809 2020-01-28 0 1 485 2 3 2020-02-22 4 2 21 2020-02-22 18:29:58.746396 2020-03-11 23:35:42.266524 2020-03-11 1 1 484 1 3 2020-02-19 2 2 21 2020-02-19 17:59:22.113118 2020-03-11 23:35:50.046789 2020-03-11 1 1 448 1 3 2020-01-28 4 2 21 2020-01-29 01:28:10.853237 2020-01-29 01:30:02.777137 2020-01-28 0 1 447 2 3 2020-01-28 4 2 21 2020-01-29 01:15:21.192618 2020-01-29 01:30:11.392142 2020-01-28 1 1 445 1 3 2020-01-28 4 2 21 2020-01-28 23:44:54.249782 2020-01-29 01:30:19.493244 2020-01-28 0 1 441 1 3 2020-01-28 4 2 21 2020-01-28 20:06:56.868377 2020-01-29 01:30:25.995504 2020-01-28 1 1 512 2 1 2020-03-10 8 2 2 2020-03-10 21:36:59.55044 2020-03-14 19:19:36.04075 2020-03-14 1 1 513 2 1 2020-03-10 8 2 2 2020-03-10 21:45:45.980121 2020-03-14 19:19:46.982589 2020-03-14 1 1 450 3 1 2020-01-28 4 2 22 2020-01-29 02:34:45.624312 2020-01-29 19:47:19.881791 2020-01-29 1 0 449 3 1 2020-01-28 21 2 22 2020-01-29 02:20:54.702322 2020-01-29 19:47:28.746536 2020-01-29 1 0 454 3 1 2020-01-29 4 2 2 2020-01-29 20:15:14.20573 2020-01-30 22:47:04.714416 2020-01-30 1 1 451 3 1 2020-01-29 21 2 2 2020-01-29 18:25:31.125835 2020-01-30 22:47:23.183731 2020-01-30 1 1 455 2 1 2020-01-30 1 2 2 2020-01-31 00:58:49.46384 2020-01-31 01:01:06.925499 2020-01-30 1 1 452 3 1 2020-01-29 4 2 2 2020-01-29 18:46:25.866991 2020-01-31 02:13:05.428686 2020-01-30 1 1 457 3 2 2020-01-31 21 2 27 2020-01-31 18:05:41.440108 2020-01-31 18:11:08.322658 2020-01-31 1 1 456 1 3 2020-01-30 2 2 19 2020-01-31 02:13:27.361251 2020-01-31 18:27:17.678982 2020-01-31 1 1 453 1 3 2020-01-29 4 2 19 2020-01-29 19:46:35.395673 2020-01-31 18:27:32.105195 2020-01-31 1 1 462 1 3 2020-01-31 4 2 21 2020-01-31 19:51:42.479618 2020-01-31 19:52:23.64327 2020-01-31 0 1 461 2 3 2020-01-31 4 2 21 2020-01-31 19:50:24.792383 2020-01-31 19:56:15.489947 2020-01-31 1 1 463 2 1 2020-02-08 27 2 2 2020-02-09 00:35:04.46466 2020-02-09 00:41:53.679831 2020-02-08 1 1 465 2 3 2020-02-13 26 2 21 2020-02-13 18:42:24.795964 2020-02-13 19:00:38.005803 2020-02-13 1 1 464 2 3 2020-02-11 4 2 21 2020-02-11 17:53:54.031441 2020-02-13 19:01:01.834851 2020-02-13 1 1 460 2 1 2020-01-31 4 2 22 2020-01-31 19:36:31.34417 2020-02-13 19:01:26.701568 2020-02-13 1 0 459 3 1 2020-01-31 19 2 22 2020-01-31 19:34:28.922962 2020-02-13 19:02:10.295886 2020-02-13 1 0 470 1 3 2020-02-13 4 1 \N 2020-02-13 19:10:23.894531 2020-02-13 19:10:23.894531 \N \N 1 1 472 1 3 2020-02-13 22 2 21 2020-02-13 20:39:31.392126 2020-02-13 20:50:48.879241 2020-02-13 0 1 467 1 2 2020-02-13 4 2 8 2020-02-13 19:02:54.570764 2020-02-13 21:32:20.253558 2020-02-13 1 1 466 1 2 2020-02-13 4 2 8 2020-02-13 19:00:57.630829 2020-02-13 21:32:29.837487 2020-02-13 1 1 458 3 2 2020-01-31 4 2 8 2020-01-31 18:22:36.460985 2020-02-13 21:32:40.132821 2020-02-13 1 1 469 2 1 2020-02-13 4 2 2 2020-02-13 19:07:33.459114 2020-02-13 22:27:35.486566 2020-02-13 1 1 473 2 1 2020-02-13 4 2 2 2020-02-13 21:31:26.868426 2020-02-13 22:28:46.857623 2020-02-13 1 1 475 2 1 2020-02-13 4 2 2 2020-02-13 23:32:25.447528 2020-02-14 02:04:57.890897 2020-02-13 1 1 476 2 1 2020-02-13 4 2 2 2020-02-14 01:16:21.123768 2020-02-14 02:05:09.365533 2020-02-13 1 1 477 3 1 2020-02-14 21 2 2 2020-02-14 19:29:22.917578 2020-02-14 20:52:13.4001 2020-02-14 1 1 481 3 2 2020-02-18 21 2 27 2020-02-18 18:13:56.639058 2020-02-18 19:18:51.475049 2020-02-18 1 1 479 3 2 2020-02-14 21 2 27 2020-02-14 20:28:14.373697 2020-02-18 19:19:38.797569 2020-02-18 1 1 474 3 2 2020-02-13 4 2 27 2020-02-13 23:13:44.747305 2020-02-18 19:19:54.87807 2020-02-18 1 1 480 2 3 2020-02-14 26 2 21 2020-02-14 20:29:38.590372 2020-02-19 17:37:39.441539 2020-02-19 1 1 468 1 3 2020-02-13 4 2 21 2020-02-13 19:04:24.806156 2020-02-19 17:44:56.657015 2020-02-19 1 1 471 1 3 2020-02-13 4 2 21 2020-02-13 19:53:32.267892 2020-02-19 17:48:04.299572 FALTA UNO DE CADA UNO, NO VIENE EL VST-0009 2020-02-19 1 1 483 1 3 2020-02-19 4 2 21 2020-02-19 17:55:57.669168 2020-02-19 17:59:03.661341 2020-02-19 1 1 482 1 2 2020-02-18 4 2 27 2020-02-18 21:24:23.522791 2020-02-21 02:05:53.308409 2020-02-20 1 1 487 2 1 2020-02-22 24 2 2 2020-02-22 20:54:13.284711 2020-02-22 20:55:06.395796 2020-02-22 1 1 488 2 1 2020-02-22 24 2 2 2020-02-22 22:48:17.087622 2020-02-22 22:49:03.105767 2020-02-22 1 1 489 1 1 2020-02-22 1 2 2 2020-02-22 23:29:28.200438 2020-02-22 23:30:02.591724 2020-02-22 0 1 490 2 1 2020-02-22 1 2 2 2020-02-23 00:20:00.556233 2020-02-23 00:22:45.213059 2020-02-22 1 1 478 3 1 2020-02-14 21 2 22 2020-02-14 20:27:35.869356 2020-03-01 01:04:32.511848 2020-02-29 1 0 499 2 1 2020-02-29 8 2 2 2020-03-01 01:04:22.037289 2020-03-01 01:11:34.97187 2020-02-29 1 1 491 1 2 2020-02-29 4 2 8 2020-02-29 23:42:01.771439 2020-03-01 02:05:51.12038 2020-02-29 0 1 494 1 2 2020-02-29 4 2 8 2020-03-01 00:08:39.655869 2020-03-01 02:06:00.329185 2020-02-29 0 1 497 1 2 2020-02-29 4 2 8 2020-03-01 00:17:09.38296 2020-03-01 02:06:10.014904 2020-02-29 0 1 504 1 2 2020-02-29 4 2 8 2020-03-01 01:36:20.30244 2020-03-01 02:06:21.800348 2020-02-29 0 1 500 1 2 2020-02-29 4 2 8 2020-03-01 01:20:42.746341 2020-03-01 02:06:30.234782 2020-02-29 0 1 514 1 3 2020-03-11 4 2 21 2020-03-11 23:33:15.827113 2020-03-11 23:33:47.850755 2020-03-11 1 1 509 1 3 2020-02-29 4 2 21 2020-03-01 02:22:49.648491 2020-03-11 23:34:34.336978 2020-03-11 0 1 507 1 3 2020-02-29 4 2 21 2020-03-01 02:17:13.331374 2020-03-11 23:34:42.308489 2020-03-11 0 1 518 2 3 2020-03-13 4 2 21 2020-03-13 22:48:36.048091 2020-03-13 22:49:47.411831 2020-03-13 1 1 520 2 1 2020-03-13 8 2 2 2020-03-14 02:23:00.374162 2020-03-14 02:24:19.151128 2020-03-13 1 1 516 2 1 2020-03-12 8 2 2 2020-03-12 18:38:19.793509 2020-03-14 19:20:02.750948 2020-03-14 1 1 517 2 1 2020-03-13 27 2 2 2020-03-13 17:24:07.57238 2020-03-14 19:54:35.555015 2020-03-14 1 1 529 1 2 2020-03-14 9 2 8 2020-03-14 22:37:59.678656 2020-03-14 22:38:41.636438 2020-03-14 1 1 519 2 3 2020-03-13 27 2 21 2020-03-14 01:04:39.859114 2020-03-15 18:57:03.355151 2020-03-15 1 1 526 1 3 2020-03-14 4 2 21 2020-03-14 20:54:33.137484 2020-03-15 18:57:16.977308 2020-03-15 0 1 524 1 3 2020-03-14 4 2 21 2020-03-14 20:26:28.68084 2020-03-15 18:57:25.325627 2020-03-15 0 1 522 1 1 2020-03-14 4 2 2 2020-03-14 20:18:35.962869 2020-03-16 20:44:58.746616 2020-03-16 0 1 525 1 1 2020-03-14 4 2 2 2020-03-14 20:54:06.68218 2020-03-16 20:45:26.371034 2020-03-16 0 1 527 1 1 2020-03-14 4 2 2 2020-03-14 20:58:17.684861 2020-03-16 20:45:37.935156 2020-03-16 0 1 528 1 2 2020-03-14 4 2 27 2020-03-14 20:58:53.111627 2020-03-16 21:18:51.010075 2020-03-16 0 1 523 1 2 2020-03-14 4 2 27 2020-03-14 20:25:58.934952 2020-03-16 21:19:27.26323 2020-03-16 0 1 521 1 2 2020-03-14 4 2 27 2020-03-14 20:16:34.388027 2020-03-16 21:20:31.777876 2020-03-16 0 1 515 3 2 2020-03-11 21 2 27 2020-03-12 03:04:35.108086 2020-03-16 21:21:47.600072 2020-03-16 1 1 530 1 1 2020-03-17 4 2 2 2020-03-17 18:43:04.918384 2020-03-18 00:52:07.073469 2020-03-17 0 1 531 1 1 2020-03-17 4 2 2 2020-03-17 18:43:55.277267 2020-03-18 00:52:30.760136 2020-03-17 0 1 532 1 3 2020-03-17 2 2 18 2020-03-18 00:53:17.063477 2020-03-18 00:55:14.629707 2020-03-17 1 1 533 2 3 2020-03-18 27 2 18 2020-03-19 00:31:33.022863 2020-03-19 00:34:33.411678 2020-03-18 1 1 534 2 1 2020-03-19 1 2 2 2020-03-19 23:03:30.922431 2020-03-19 23:05:22.813801 2020-03-19 1 1 535 2 3 2020-03-21 4 2 21 2020-03-21 23:37:57.043698 2020-03-21 23:38:33.307605 2020-03-21 1 1 537 2 3 2020-05-03 8 2 18 2020-05-03 23:34:45.538432 2020-05-03 23:36:09.054489 2020-05-03 1 1 536 3 1 2020-03-21 21 2 9 2020-03-22 01:22:07.216559 2020-05-04 00:08:12.072652 2020-05-03 1 1 539 1 3 2020-05-03 9 2 18 2020-05-04 00:07:49.309368 2020-05-04 00:08:45.636776 2020-05-03 1 1 538 2 3 2020-05-03 8 2 18 2020-05-04 00:06:23.430587 2020-05-04 00:08:51.297233 2020-05-03 1 1 543 3 1 2020-06-23 4 2 9 2020-06-24 00:06:38.597118 2020-06-24 00:10:26.108441 2020-06-23 1 1 542 1 1 2020-06-23 4 2 9 2020-06-23 23:59:52.561857 2020-06-24 00:10:34.720557 2020-06-23 0 1 541 3 1 2020-06-23 4 2 9 2020-06-23 23:58:41.178649 2020-06-24 00:10:50.422616 2020-06-23 1 1 511 2 1 2020-03-07 8 2 22 2020-03-07 21:38:13.899587 2020-06-24 21:54:27.415595 2020-06-24 1 0 546 1 1 2020-06-24 4 2 22 2020-06-24 21:49:59.576803 2020-06-24 21:54:42.961763 2020-06-24 1 0 545 1 3 2020-06-23 9 2 21 2020-06-24 00:48:21.667132 2020-06-24 21:57:34.625404 2020-06-24 1 1 544 1 3 2020-06-23 9 2 21 2020-06-24 00:18:40.776746 2020-06-24 21:58:06.988058 2020-06-24 1 1 540 1 3 2020-06-23 9 2 21 2020-06-23 23:42:06.17359 2020-06-24 21:58:23.260061 2020-06-24 1 1 553 2 1 2020-06-24 26 2 25 2020-06-25 00:47:21.749522 2020-06-25 00:48:43.064761 2020-06-24 1 1 552 2 1 2020-06-24 26 2 25 2020-06-25 00:38:51.327484 2020-06-25 00:48:52.674366 2020-06-24 1 1 551 2 1 2020-06-24 26 2 25 2020-06-25 00:33:57.207952 2020-06-25 00:49:02.986263 2020-06-24 1 1 550 2 1 2020-06-24 26 2 25 2020-06-25 00:14:52.4967 2020-06-25 00:49:15.481482 2020-06-24 1 1 547 2 1 2020-06-24 26 2 25 2020-06-24 22:22:35.268491 2020-06-25 00:49:28.038378 2020-06-24 1 1 549 2 1 2020-06-24 26 2 25 2020-06-24 22:58:44.570541 2020-06-25 00:49:42.967028 2020-06-24 1 1 548 2 1 2020-06-24 26 2 25 2020-06-24 22:39:33.079812 2020-06-25 00:49:56.301901 2020-06-24 1 1 554 2 1 2020-06-24 26 2 25 2020-06-25 01:03:08.533933 2020-06-25 01:08:21.705361 2020-06-24 1 1 556 2 1 2020-06-24 26 2 25 2020-06-25 01:15:44.503445 2020-06-25 01:30:32.906041 2020-06-24 1 1 566 2 1 2020-06-24 26 2 25 2020-06-25 01:40:11.923512 2020-06-25 01:43:00.400584 2020-06-24 1 1 565 2 1 2020-06-24 26 2 25 2020-06-25 01:39:02.824685 2020-06-25 01:43:18.135038 2020-06-24 1 1 563 2 1 2020-06-24 4 2 25 2020-06-25 01:36:12.497838 2020-06-25 18:49:54.514099 2020-06-25 1 1 571 2 1 2020-06-24 4 2 22 2020-06-25 01:54:20.597259 2020-06-25 19:05:25.886455 2020-06-25 1 0 570 2 1 2020-06-24 4 2 22 2020-06-25 01:50:54.268074 2020-06-25 19:05:41.34671 2020-06-25 1 0 559 2 1 2020-06-24 4 2 22 2020-06-25 01:30:49.317692 2020-06-25 19:05:57.388519 2020-06-25 1 0 575 1 1 2020-06-25 22 2 25 2020-06-25 19:07:14.894246 2020-06-25 19:08:01.40765 2020-06-25 0 1 574 2 1 2020-06-25 4 2 25 2020-06-25 19:04:29.032007 2020-06-25 19:08:27.238652 2020-06-25 1 1 568 2 1 2020-06-24 4 2 25 2020-06-25 01:48:52.688599 2020-06-25 19:08:38.651602 2020-06-25 1 1 567 1 1 2020-06-24 4 2 25 2020-06-25 01:48:24.31655 2020-06-25 19:08:53.196958 2020-06-25 0 1 582 2 1 2020-06-25 4 2 25 2020-06-25 19:32:47.882439 2020-06-25 19:40:06.46967 2020-06-25 1 1 581 2 1 2020-06-25 4 2 25 2020-06-25 19:30:38.028293 2020-06-25 19:40:21.123444 2020-06-25 1 1 580 2 1 2020-06-25 4 2 25 2020-06-25 19:27:53.967364 2020-06-25 19:41:00.03508 2020-06-25 1 1 578 2 1 2020-06-25 4 2 25 2020-06-25 19:22:03.071233 2020-06-25 19:41:24.895179 2020-06-25 1 1 577 2 1 2020-06-25 4 2 25 2020-06-25 19:12:04.382739 2020-06-25 19:41:47.271543 2020-06-25 1 1 590 3 1 2020-06-26 18 2 25 2020-06-26 19:02:58.019477 2020-06-26 19:03:46.594792 2020-06-26 1 1 589 2 1 2020-06-26 4 2 25 2020-06-26 19:02:37.612603 2020-06-26 19:03:59.095555 2020-06-26 1 1 588 3 1 2020-06-25 18 2 25 2020-06-25 21:45:59.310637 2020-06-26 19:04:10.931718 2020-06-26 1 1 587 3 1 2020-06-25 18 2 25 2020-06-25 21:36:36.64699 2020-06-26 19:04:19.706486 2020-06-26 1 1 586 1 3 2020-06-25 4 2 21 2020-06-25 20:55:01.297199 2020-06-26 19:14:49.534917 2020-06-26 1 1 584 1 3 2020-06-25 25 2 21 2020-06-25 20:37:05.190481 2020-06-26 19:15:02.805666 2020-06-26 1 1 576 2 3 2020-06-25 4 2 21 2020-06-25 19:08:13.859081 2020-06-26 19:15:37.588395 2020-06-26 1 1 560 1 3 2020-06-24 25 2 21 2020-06-25 01:32:29.435571 2020-06-26 19:15:44.794203 2020-06-26 1 1 562 2 3 2020-06-24 26 2 21 2020-06-25 01:34:40.083618 2020-06-26 19:15:51.523265 2020-06-26 1 1 555 2 3 2020-06-24 4 2 21 2020-06-25 01:14:48.346813 2020-06-26 19:15:57.726434 2020-06-26 1 1 557 2 3 2020-06-24 26 2 21 2020-06-25 01:21:21.071239 2020-06-26 19:16:05.402445 2020-06-26 1 1 558 2 3 2020-06-24 26 2 21 2020-06-25 01:29:12.629107 2020-06-26 19:16:11.323707 2020-06-26 1 1 573 2 3 2020-06-24 4 2 21 2020-06-25 01:55:37.294241 2020-06-26 19:16:16.719331 2020-06-26 1 1 572 2 3 2020-06-24 4 2 21 2020-06-25 01:55:01.840812 2020-06-26 19:16:22.083031 2020-06-26 1 1 569 2 3 2020-06-24 4 2 21 2020-06-25 01:49:33.239171 2020-06-26 19:16:27.688317 2020-06-26 1 1 564 2 3 2020-06-24 4 2 21 2020-06-25 01:37:06.875575 2020-06-26 19:16:33.132809 2020-06-26 1 1 561 2 3 2020-06-24 4 2 21 2020-06-25 01:33:14.502754 2020-06-26 19:16:40.276314 2020-06-26 1 1 591 3 1 2020-06-26 18 2 9 2020-06-26 20:57:10.245903 2020-06-26 20:58:05.907104 2020-06-26 1 1 592 1 3 2020-06-30 4 2 21 2020-07-01 06:01:46.087233 2020-07-01 18:34:28.989857 2020-07-01 1 1 595 3 1 2020-07-01 21 2 25 2020-07-01 19:15:36.151678 2020-07-01 22:48:09.682918 2020-07-01 1 1 593 3 1 2020-07-01 21 2 25 2020-07-01 19:13:20.096025 2020-07-01 22:48:35.586179 2020-07-01 1 1 585 1 1 2020-06-25 4 2 22 2020-06-25 20:50:03.433233 2020-07-02 19:52:43.272618 2020-07-02 1 0 583 1 1 2020-06-25 4 2 22 2020-06-25 20:24:17.950859 2020-07-02 19:52:57.137243 2020-07-02 1 0 579 2 1 2020-06-25 4 2 22 2020-06-25 19:25:19.250163 2020-07-02 19:53:20.654637 2020-07-02 1 0 674 1 3 2020-09-15 2 2 21 2020-09-15 21:28:30.103861 2020-09-19 21:44:58.031463 2020-09-19 1 1 597 1 3 2020-07-01 25 2 21 2020-07-01 20:49:04.127013 2020-07-01 21:25:09.457764 2020-07-01 1 1 598 1 3 2020-07-01 25 2 21 2020-07-01 21:46:12.800127 2020-07-01 22:11:57.154576 2020-07-01 1 1 675 3 1 2020-09-19 21 2 9 2020-09-19 22:33:26.10024 2020-09-21 19:34:17.456139 2020-09-21 1 1 596 3 1 2020-07-01 21 2 25 2020-07-01 19:16:35.553673 2020-07-01 22:42:44.493335 2020-07-01 1 1 594 3 1 2020-07-01 21 2 25 2020-07-01 19:14:01.642833 2020-07-01 22:48:20.122131 2020-07-01 1 1 676 3 1 2020-09-19 21 2 9 2020-09-19 23:24:25.687156 2020-09-21 19:34:27.712715 2020-09-21 1 1 601 3 2 2020-07-02 4 1 \N 2020-07-02 17:55:36.238642 2020-07-02 17:55:36.238642 \N \N 1 1 677 3 1 2020-09-19 21 2 9 2020-09-19 23:28:14.005835 2020-09-21 19:34:36.923397 2020-09-21 1 1 600 3 1 2020-07-02 4 2 25 2020-07-02 17:53:02.277693 2020-07-02 18:03:53.46086 2020-07-02 1 1 602 3 1 2020-07-02 21 2 25 2020-07-02 18:03:04.533175 2020-07-02 18:04:06.392984 2020-07-02 1 1 678 3 1 2020-09-21 21 2 9 2020-09-21 18:48:59.457975 2020-09-21 19:34:46.101343 2020-09-21 1 1 599 2 3 2020-07-01 4 2 21 2020-07-01 22:41:31.472296 2020-07-02 19:50:34.321267 2020-07-02 1 1 679 3 1 2020-09-21 21 2 9 2020-09-21 21:47:21.989953 2020-09-21 22:46:54.98511 2020-09-21 1 1 604 1 1 2020-07-02 22 2 2 2020-07-02 19:54:02.664648 2020-07-02 20:01:05.380398 2020-07-02 0 1 603 3 1 2020-07-02 4 2 2 2020-07-02 18:05:25.714732 2020-07-02 20:01:18.367592 2020-07-02 1 1 680 3 1 2020-09-22 21 2 2 2020-09-22 18:30:05.484788 2020-09-22 18:31:29.362204 2020-09-22 1 1 681 3 1 2020-09-22 4 2 9 2020-09-22 19:46:04.320323 2020-09-22 19:48:50.604705 2020-09-22 1 1 607 3 1 2020-07-03 4 2 2 2020-07-03 21:51:15.306718 2020-07-03 21:54:42.084713 2020-07-03 1 1 608 1 1 2020-07-03 4 2 2 2020-07-03 21:52:08.604053 2020-07-03 21:55:02.391211 2020-07-03 0 1 609 1 1 2020-07-03 4 1 \N 2020-07-03 22:05:29.982297 2020-07-03 22:05:29.982297 \N \N 1 0 682 1 3 2020-09-22 4 2 21 2020-09-22 19:55:15.729322 2020-09-22 20:47:26.961893 2020-09-22 1 1 612 2 3 2020-07-03 4 2 18 2020-07-03 22:29:38.514674 2020-07-03 23:24:05.756579 2020-07-03 1 1 611 1 3 2020-07-03 4 2 18 2020-07-03 22:26:58.370175 2020-07-03 23:24:31.357936 2020-07-03 1 1 610 1 3 2020-07-03 4 2 18 2020-07-03 22:14:03.184323 2020-07-03 23:24:47.377018 2020-07-03 1 1 606 1 3 2020-07-02 22 2 18 2020-07-02 20:22:46.073821 2020-07-03 23:25:20.638703 2020-07-03 0 1 605 1 3 2020-07-02 22 2 18 2020-07-02 20:19:42.015276 2020-07-03 23:25:44.366504 2020-07-03 0 1 618 2 3 2020-07-03 4 2 21 2020-07-04 00:11:00.046509 2020-07-04 18:29:12.21183 2020-07-04 1 1 613 2 3 2020-07-03 4 2 21 2020-07-03 22:31:36.121485 2020-07-04 18:30:20.162404 2020-07-04 1 1 617 2 3 2020-07-03 4 2 21 2020-07-04 00:04:34.97871 2020-07-04 18:30:33.892812 2020-07-04 1 1 614 2 3 2020-07-03 4 2 21 2020-07-03 23:27:51.088154 2020-07-04 18:31:25.499597 2020-07-04 1 1 619 1 3 2020-07-04 4 2 21 2020-07-04 18:31:18.821654 2020-07-04 18:31:43.162546 2020-07-04 1 1 620 1 3 2020-07-04 4 2 21 2020-07-04 18:37:36.874581 2020-07-04 18:39:10.408094 2020-07-04 1 1 621 1 3 2020-07-04 4 2 21 2020-07-04 18:44:00.589698 2020-07-04 18:44:26.61677 2020-07-04 1 1 622 1 3 2020-07-04 4 2 21 2020-07-04 18:58:06.27509 2020-07-04 18:58:25.389753 2020-07-04 1 1 623 3 1 2020-07-06 4 2 2 2020-07-06 21:09:30.257912 2020-07-06 21:35:26.289697 2020-07-06 1 1 616 2 1 2020-07-03 4 2 2 2020-07-04 00:00:51.706511 2020-07-06 21:37:04.84112 2020-07-06 1 1 615 2 1 2020-07-03 4 2 2 2020-07-03 23:29:42.882436 2020-07-06 21:37:35.620755 2020-07-06 1 1 624 3 1 2020-07-07 18 2 2 2020-07-07 18:31:18.235073 2020-07-07 18:33:17.998501 2020-07-07 1 1 625 3 1 2020-07-07 18 2 2 2020-07-07 23:37:40.544282 2020-07-07 23:38:00.22758 2020-07-07 1 1 626 1 3 2020-07-07 2 2 18 2020-07-07 23:37:50.400359 2020-07-07 23:39:57.096796 2020-07-07 1 1 627 1 3 2020-07-07 4 2 18 2020-07-07 23:53:04.866665 2020-07-07 23:54:13.551125 2020-07-07 0 1 628 1 3 2020-07-08 2 2 18 2020-07-08 19:26:57.899198 2020-07-08 19:28:02.636659 2020-07-08 1 1 629 1 3 2020-07-10 2 2 18 2020-07-10 19:46:22.743061 2020-07-10 20:01:08.406816 2020-07-10 1 1 632 1 3 2020-07-11 2 2 21 2020-07-11 17:24:00.497327 2020-07-11 20:19:55.077521 2020-07-11 1 1 631 1 3 2020-07-11 2 2 21 2020-07-11 17:22:49.772401 2020-07-11 20:20:20.660387 2020-07-11 1 1 630 1 3 2020-07-11 2 2 21 2020-07-11 17:10:49.837109 2020-07-11 20:20:31.614181 2020-07-11 1 1 633 3 1 2020-07-11 4 2 2 2020-07-11 20:14:59.122908 2020-07-13 17:01:32.311895 2020-07-13 1 1 634 1 3 2020-07-15 2 2 18 2020-07-15 20:54:05.038039 2020-07-16 18:33:35.163645 2020-07-16 1 1 636 1 3 2020-07-18 2 2 18 2020-07-18 16:16:07.276158 2020-07-18 22:56:59.961005 2020-07-18 1 1 635 1 3 2020-07-17 2 2 18 2020-07-17 19:44:27.915968 2020-07-18 22:57:09.757423 2020-07-18 1 1 637 3 1 2020-07-18 18 2 2 2020-07-19 00:16:56.962375 2020-07-20 20:01:05.014637 2020-07-20 1 1 638 1 3 2020-07-20 2 2 18 2020-07-20 17:01:33.926998 2020-07-21 22:26:46.087539 2020-07-21 1 1 639 1 3 2020-07-21 2 2 18 2020-07-21 22:32:38.785044 2020-07-21 22:32:51.808519 2020-07-21 1 1 640 1 3 2020-07-21 2 2 18 2020-07-21 22:38:26.215529 2020-07-21 22:38:43.376215 2020-07-21 1 1 641 1 3 2020-07-23 2 2 18 2020-07-23 19:26:00.827537 2020-07-23 20:02:46.344836 2020-07-23 1 1 642 1 3 2020-07-24 2 2 18 2020-07-24 16:45:01.789637 2020-07-24 21:40:59.776459 2020-07-24 1 1 643 1 3 2020-07-25 2 2 21 2020-07-25 19:13:00.952992 2020-07-25 19:40:22.628579 2020-07-25 1 1 644 1 3 2020-07-27 2 2 21 2020-07-27 16:20:22.701463 2020-07-27 21:44:05.838927 2020-07-27 1 1 646 3 1 2020-08-07 21 2 2 2020-08-07 20:16:58.111707 2020-08-08 23:09:51.902982 2020-08-08 1 1 647 1 1 2020-08-07 4 2 2 2020-08-07 21:54:27.480831 2020-08-08 23:10:12.826144 2020-08-08 0 1 648 1 1 2020-08-08 2 1 \N 2020-08-08 23:14:51.507769 2020-08-08 23:14:51.507769 \N \N 1 0 650 3 1 2020-08-15 1 2 2 2020-08-15 16:29:07.829145 2020-08-15 16:29:54.778068 2020-08-15 1 1 651 3 1 2020-08-15 1 2 2 2020-08-15 17:32:57.725401 2020-08-15 17:34:04.399213 2020-08-15 1 1 652 3 1 2020-08-15 1 2 2 2020-08-15 17:38:19.278608 2020-08-15 17:39:49.844624 2020-08-15 1 1 653 3 1 2020-08-15 1 2 2 2020-08-15 20:06:06.299521 2020-08-15 20:06:55.387475 2020-08-15 1 1 654 3 1 2020-08-15 1 2 2 2020-08-15 20:09:07.215794 2020-08-15 20:09:42.563582 2020-08-15 1 1 655 3 1 2020-08-15 1 2 2 2020-08-15 21:32:02.154152 2020-08-15 21:32:19.024364 2020-08-15 1 1 656 1 1 2020-08-16 4 2 25 2020-08-17 00:50:01.683461 2020-08-17 00:50:45.804736 2020-08-16 0 1 659 1 3 2020-08-17 4 2 21 2020-08-17 18:56:31.68385 2020-08-17 18:57:32.26718 2020-08-17 0 1 660 3 1 2020-08-17 1 2 2 2020-08-17 19:35:36.66264 2020-08-17 19:35:56.136634 2020-08-17 1 1 661 1 3 2020-08-17 4 2 21 2020-08-17 19:42:34.381276 2020-08-17 19:42:50.19324 2020-08-17 0 1 662 1 3 2020-08-17 4 2 21 2020-08-17 20:17:26.154677 2020-08-17 20:18:05.525323 2020-08-17 0 1 663 3 1 2020-08-22 1 2 2 2020-08-22 18:15:15.951105 2020-08-22 18:15:45.257514 2020-08-22 1 1 657 3 1 2020-08-16 4 2 2 2020-08-17 01:18:18.514553 2020-08-22 18:20:03.165962 2020-08-22 1 1 665 1 3 2020-08-24 9 2 18 2020-08-24 22:02:49.67263 2020-08-24 22:03:43.96859 2020-08-24 1 1 664 1 3 2020-08-22 2 2 18 2020-08-22 22:04:34.500316 2020-08-24 22:12:20.990532 2020-08-24 1 1 649 1 3 2020-08-13 2 2 18 2020-08-13 17:54:13.87391 2020-08-24 22:12:48.216486 2020-08-24 1 1 645 1 3 2020-07-30 2 2 18 2020-07-30 18:53:08.251958 2020-08-24 22:13:00.584939 2020-08-24 1 1 666 3 1 2020-08-24 18 2 2 2020-08-24 22:13:59.189957 2020-08-24 22:39:48.575103 2020-08-24 1 1 667 1 3 2020-08-24 2 2 18 2020-08-24 22:39:31.571214 2020-08-25 22:22:31.778478 2020-08-25 1 1 658 3 1 2020-08-16 4 2 2 2020-08-17 01:21:29.475986 2020-08-25 22:24:56.563434 2020-08-25 1 1 668 1 3 2020-08-25 2 2 18 2020-08-25 22:24:21.40968 2020-08-25 22:25:31.688474 2020-08-25 1 1 670 3 1 2020-08-29 1 2 2 2020-08-29 22:03:56.301432 2020-08-29 22:04:35.29745 2020-08-29 1 1 669 1 3 2020-08-27 2 2 18 2020-08-27 20:27:11.669508 2020-08-31 23:27:43.850086 2020-08-31 1 1 683 1 3 2020-09-22 4 2 21 2020-09-22 20:41:28.693127 2020-09-22 20:47:19.177896 2020-09-22 1 1 684 3 1 2020-09-22 21 2 9 2020-09-22 20:43:52.125954 2020-09-23 22:47:44.772822 2020-09-23 1 1 685 3 1 2020-09-22 21 2 9 2020-09-22 20:46:26.628051 2020-09-23 22:47:53.004821 2020-09-23 1 1 686 3 1 2020-09-22 21 2 9 2020-09-22 21:01:44.966848 2020-09-23 22:48:35.343595 2020-09-23 1 1 687 1 3 2020-09-23 9 2 18 2020-09-23 22:48:26.032639 2020-09-23 22:49:22.465965 2020-09-23 1 1 689 3 1 2020-09-25 4 2 2 2020-09-25 21:45:09.94812 2020-09-29 19:47:21.054389 2020-09-29 1 1 690 1 3 2020-09-29 4 2 18 2020-09-29 19:45:05.666462 2020-09-29 19:47:59.174432 2020-09-29 1 1 688 1 3 2020-09-24 2 2 18 2020-09-25 00:45:09.496702 2020-09-29 20:38:08.4324 2020-09-29 1 1 691 1 3 2020-09-29 2 2 18 2020-09-29 20:39:09.463328 2020-09-29 20:39:54.228153 2020-09-29 1 1 692 3 1 2020-09-29 18 2 2 2020-09-29 21:43:16.257399 2020-10-01 23:43:53.208869 2020-10-01 1 1 693 1 3 2020-10-02 2 2 18 2020-10-02 22:57:06.380043 2020-10-03 00:17:33.422003 2020-10-02 1 1 695 1 3 2020-10-03 2 2 21 2020-10-03 18:45:05.397529 2020-10-03 23:17:43.69255 2020-10-03 1 1 694 1 3 2020-10-03 2 2 21 2020-10-03 18:44:48.380702 2020-10-03 23:18:04.174622 2020-10-03 1 1 696 3 1 2020-10-03 21 2 2 2020-10-03 23:37:50.737257 2020-10-04 00:33:31.483387 2020-10-03 1 1 697 3 1 2020-10-03 21 2 2 2020-10-03 23:38:16.181824 2020-10-04 00:33:45.531256 2020-10-03 1 1 700 1 3 2020-10-17 4 2 21 2020-10-18 00:13:28.120663 2020-10-18 18:37:39.172416 2020-10-18 1 1 699 1 1 2020-10-14 4 2 2 2020-10-15 00:34:44.174893 2020-10-22 18:29:33.947143 2020-10-22 0 1 698 3 1 2020-10-08 18 2 2 2020-10-09 00:03:41.583999 2020-10-22 18:29:54.184676 2020-10-22 1 1 703 1 3 2020-10-22 4 2 18 2020-10-23 00:24:29.099253 2020-10-23 00:25:03.06609 2020-10-22 1 1 702 1 3 2020-10-22 2 2 18 2020-10-22 18:31:41.602845 2020-10-23 00:25:15.452754 2020-10-22 1 1 701 1 3 2020-10-22 2 2 18 2020-10-22 18:28:26.948592 2020-10-23 00:25:26.45092 2020-10-22 1 1 704 1 3 2020-10-23 2 2 18 2020-10-23 21:29:28.616161 2020-10-24 19:31:00.038023 2020-10-24 1 1 705 3 1 2020-10-24 18 2 2 2020-10-24 19:31:34.588281 2020-10-24 20:25:28.52954 2020-10-24 1 1 706 3 1 2020-10-28 4 2 2 2020-10-28 20:36:17.035785 2020-10-28 20:37:29.258728 2020-10-28 1 1 708 1 1 2020-10-31 4 2 2 2020-11-01 02:10:52.21971 2020-11-01 02:14:01.773689 2020-10-31 0 1 707 3 1 2020-10-29 18 2 2 2020-10-30 00:53:58.482561 2020-11-03 18:33:26.15819 2020-11-03 1 1 709 1 3 2020-11-03 30 2 21 2020-11-04 01:01:02.680553 2020-11-04 01:08:14.533315 2020-11-03 0 1 710 1 3 2020-11-03 30 2 21 2020-11-04 01:07:34.846302 2020-11-04 01:08:22.354981 2020-11-03 0 1 712 1 1 2020-11-04 4 2 2 2020-11-05 00:59:02.566755 2020-11-05 01:01:29.03895 2020-11-04 0 1 711 1 1 2020-11-04 4 2 2 2020-11-05 00:58:36.367374 2020-11-05 01:01:43.009338 2020-11-04 0 1 713 1 3 2020-11-04 2 2 18 2020-11-05 01:04:49.028384 2020-11-05 02:12:28.268466 2020-11-04 1 1 714 1 3 2020-11-05 2 2 21 2020-11-05 19:56:43.360176 2020-11-05 19:57:02.074218 2020-11-05 1 1 715 1 3 2020-11-05 2 2 21 2020-11-05 20:56:32.223623 2020-11-05 20:57:12.975352 2020-11-05 1 1 716 1 1 2020-11-05 4 2 2 2020-11-05 21:04:00.545548 2020-11-05 21:05:18.869548 2020-11-05 0 1 717 1 1 2020-11-05 4 2 2 2020-11-05 21:04:48.955848 2020-11-05 21:08:43.542339 2020-11-05 0 1 719 1 3 2020-11-05 2 2 21 2020-11-05 21:13:49.923825 2020-11-05 21:15:15.816405 2020-11-05 1 1 718 1 1 2020-11-05 4 2 2 2020-11-05 21:05:13.418635 2020-11-05 22:19:36.999717 2020-11-05 0 1 720 3 1 2020-11-05 1 2 2 2020-11-05 22:23:38.308954 2020-11-05 22:24:07.054119 2020-11-05 1 1 721 3 1 2020-11-05 1 2 2 2020-11-05 23:10:58.874541 2020-11-05 23:11:27.580688 2020-11-05 1 1 722 1 3 2020-11-06 2 2 18 2020-11-06 18:50:25.005942 2020-11-06 18:50:48.185274 2020-11-06 1 1 723 1 3 2020-11-06 2 2 18 2020-11-06 20:48:58.236949 2020-11-06 20:49:31.650094 2020-11-06 1 1 724 3 1 2020-11-06 21 2 2 2020-11-06 22:00:15.842228 2020-11-06 22:03:31.661949 2020-11-06 1 1 725 1 3 2020-11-06 2 2 21 2020-11-06 22:03:51.197597 2020-11-06 22:11:43.332472 2020-11-06 1 1 727 1 3 2020-11-06 2 2 32 2020-11-06 23:17:11.526478 2020-11-06 23:17:28.647084 2020-11-06 1 1 726 3 1 2020-11-06 21 2 2 2020-11-06 22:14:37.745386 2020-11-06 23:17:38.078403 2020-11-06 1 1 729 1 1 2020-11-09 1 2 2 2020-11-09 23:54:53.606639 2020-11-09 23:55:20.168886 2020-11-09 0 1 728 3 1 2020-11-06 18 2 2 2020-11-07 00:48:31.764753 2020-11-10 20:48:18.108767 2020-11-10 1 1 730 1 3 2020-11-13 2 2 18 2020-11-14 01:25:26.105111 2020-11-14 01:44:07.471142 2020-11-13 1 1 731 1 3 2020-11-13 2 2 18 2020-11-14 01:27:42.006731 2020-11-14 01:44:15.525505 2020-11-13 1 1 733 1 3 2020-11-14 4 2 18 2020-11-14 22:56:39.670066 2020-11-14 23:40:09.190545 2020-11-14 0 1 734 1 3 2020-11-16 2 2 21 2020-11-16 20:23:11.471012 2020-11-16 20:46:59.362278 2020-11-16 1 1 735 3 1 2020-11-18 21 2 2 2020-11-19 00:48:28.016871 2020-11-19 23:48:59.856452 2020-11-19 1 1 736 3 1 2020-11-18 21 2 2 2020-11-19 01:29:25.847714 2020-11-23 19:02:07.332312 2020-11-23 1 1 737 1 1 2020-11-23 1 2 2 2020-11-23 19:31:04.157589 2020-11-23 19:31:25.407525 2020-11-23 0 1 740 1 1 2020-11-25 4 2 9 2020-11-25 20:15:06.483331 2020-11-25 20:16:37.138524 2020-11-25 0 1 739 1 1 2020-11-25 4 2 9 2020-11-25 20:10:44.82615 2020-11-25 20:16:50.46256 2020-11-25 0 1 738 1 1 2020-11-25 4 2 9 2020-11-25 19:40:17.215309 2020-11-25 20:21:05.691599 2020-11-25 0 1 732 1 1 2020-11-14 4 2 9 2020-11-14 22:56:15.675752 2020-11-25 20:21:18.649138 2020-11-25 0 1 741 1 3 2020-11-26 4 2 18 2020-11-27 00:15:23.586347 2020-11-27 00:15:56.103343 2020-11-26 0 1 742 3 1 2020-11-28 21 2 2 2020-11-28 22:19:52.861204 2020-11-28 22:20:24.236807 2020-11-28 1 1 743 1 3 2020-12-01 2 2 21 2020-12-01 20:25:03.407856 2020-12-01 20:25:40.527144 2020-12-01 1 1 745 1 3 2020-12-01 4 2 18 2020-12-02 01:32:17.816641 2020-12-02 01:33:35.387121 2020-12-01 0 1 744 1 1 2020-12-01 4 2 2 2020-12-02 01:31:49.067799 2020-12-04 18:20:21.453016 2020-12-04 0 1 746 3 1 2020-12-02 18 2 2 2020-12-03 01:56:09.362911 2020-12-04 18:21:32.948729 2020-12-04 1 1 747 3 1 2020-12-04 21 2 2 2020-12-04 18:23:53.236416 2020-12-04 18:24:23.023698 2020-12-04 1 1 748 3 1 2020-12-04 4 2 9 2020-12-05 00:45:35.890038 2020-12-09 19:30:37.799411 2020-12-09 1 1 749 1 1 2020-12-04 4 2 9 2020-12-05 00:46:06.943725 2020-12-09 19:30:49.024007 2020-12-09 0 1 750 1 3 2020-12-10 4 2 18 2020-12-10 19:56:14.21107 2020-12-10 19:57:03.728611 2020-12-10 0 1 751 3 1 2020-12-10 21 2 2 2020-12-11 01:51:17.58468 2020-12-11 20:44:26.193868 2020-12-11 1 1 754 1 3 2020-12-11 4 2 18 2020-12-11 21:29:33.522473 2020-12-11 21:30:16.505462 2020-12-11 1 1 755 1 1 2020-12-12 4 2 2 2020-12-12 22:59:35.458118 2020-12-12 23:37:11.960244 2020-12-12 0 1 753 1 3 2020-12-11 2 2 21 2020-12-11 20:47:43.720946 2020-12-13 21:04:19.276013 2020-12-13 1 1 756 1 3 2020-12-13 4 2 21 2020-12-13 20:57:22.055946 2020-12-13 21:04:29.388661 2020-12-13 1 1 757 1 1 2020-12-14 4 2 9 2020-12-14 17:47:37.133379 2020-12-14 17:48:26.174948 2020-12-14 0 1 752 3 1 2020-12-10 21 2 9 2020-12-11 01:54:05.954924 2020-12-14 18:18:20.814861 2020-12-14 1 1 760 1 3 2020-12-14 4 2 18 2020-12-14 21:57:40.733806 2020-12-14 21:58:44.563309 2020-12-14 1 1 759 1 3 2020-12-14 9 2 18 2020-12-14 19:08:00.065667 2020-12-15 22:25:12.268306 2020-12-15 1 1 758 1 3 2020-12-14 9 2 18 2020-12-14 18:19:49.984093 2020-12-15 22:25:20.582074 2020-12-15 1 1 761 3 1 2020-12-15 4 2 2 2020-12-16 00:08:19.630497 2020-12-16 00:11:57.999645 2020-12-15 1 1 762 1 3 2020-12-16 2 2 18 2020-12-16 23:30:29.856975 2020-12-17 01:40:52.277329 2020-12-16 1 1 763 1 3 2020-12-17 4 2 18 2020-12-18 06:28:57.498883 2020-12-18 06:30:25.502634 2020-12-17 1 1 764 3 1 2020-12-18 21 2 2 2020-12-18 22:09:41.564326 2020-12-18 22:12:04.05243 2020-12-18 1 1 765 3 1 2020-12-19 21 2 2 2020-12-20 01:47:25.857213 2020-12-20 01:49:04.176397 2020-12-19 1 1 766 1 3 2020-12-21 9 2 18 2020-12-21 22:12:35.860808 2020-12-22 20:26:10.001199 2020-12-22 1 1 767 3 1 2020-12-22 18 2 9 2020-12-22 20:26:32.584116 2020-12-22 20:27:17.619481 2020-12-22 1 1 768 1 3 2020-12-22 4 2 18 2020-12-22 22:39:07.875649 2020-12-22 23:38:00.081308 2020-12-22 0 1 770 1 3 2020-12-22 4 2 18 2020-12-23 00:22:56.455784 2020-12-23 00:23:33.591578 2020-12-22 1 1 769 1 3 2020-12-22 4 2 18 2020-12-23 00:21:13.63864 2020-12-23 00:23:40.719234 2020-12-22 1 1 771 1 1 2020-12-22 4 2 9 2020-12-23 00:38:56.273397 2020-12-23 00:41:17.363772 2020-12-22 0 1 772 1 3 2020-12-22 4 2 18 2020-12-23 01:37:37.034212 2020-12-23 01:38:51.081767 2020-12-22 1 1 773 1 3 2020-12-22 4 2 18 2020-12-23 02:50:52.371031 2020-12-23 02:51:42.7181 2020-12-22 1 1 774 1 3 2020-12-23 4 2 18 2020-12-23 18:09:32.431351 2020-12-23 18:37:35.35236 2020-12-23 1 1 775 1 3 2020-12-23 4 2 18 2020-12-23 18:36:38.267672 2020-12-23 18:38:14.061687 2020-12-23 1 1 776 1 3 2020-12-23 4 2 18 2020-12-24 02:33:51.515295 2020-12-24 02:34:40.051847 2020-12-23 1 1 777 1 3 2020-12-24 9 2 18 2020-12-24 19:15:07.826429 2020-12-24 22:49:53.563866 2020-12-24 1 1 778 1 3 2020-12-24 4 2 18 2020-12-24 22:49:08.516434 2020-12-24 22:50:20.531674 2020-12-24 0 1 779 1 3 2020-12-24 2 2 18 2020-12-25 00:18:50.579312 2020-12-25 01:02:20.266064 2020-12-24 1 1 780 3 1 2020-12-24 18 2 2 2020-12-25 01:02:56.334056 2020-12-25 01:05:15.723677 2020-12-24 1 1 781 1 3 2020-12-26 4 2 21 2020-12-26 19:48:25.269666 2020-12-26 19:49:42.131387 2020-12-26 1 1 783 1 3 2020-12-28 4 2 21 2020-12-29 00:25:45.048726 2020-12-29 00:26:25.631993 2020-12-28 1 1 782 3 1 2020-12-28 21 2 9 2020-12-29 00:24:23.251019 2020-12-29 00:27:34.460401 2020-12-28 1 1 785 3 1 2020-12-29 18 2 9 2020-12-30 00:14:43.851072 2020-12-30 00:16:20.283869 2020-12-29 1 1 784 3 1 2020-12-29 21 2 9 2020-12-30 00:06:50.970062 2020-12-30 00:16:29.736407 2020-12-29 1 1 786 1 1 2020-12-30 4 2 9 2020-12-30 21:53:49.783862 2020-12-30 21:57:48.774959 2020-12-30 0 1 787 1 3 2020-12-30 9 2 18 2020-12-30 21:58:12.574078 2020-12-30 21:58:57.21903 2020-12-30 1 1 788 1 3 2020-12-30 4 2 18 2020-12-30 23:34:59.692865 2020-12-30 23:35:56.640972 2020-12-30 0 1 789 1 3 2020-12-30 4 2 18 2020-12-30 23:52:10.052331 2020-12-30 23:52:48.470666 2020-12-30 1 1 790 1 1 2020-12-30 4 2 9 2020-12-31 00:10:44.626291 2020-12-31 00:11:01.798599 2020-12-30 0 1 791 1 3 2020-12-30 4 2 18 2020-12-31 00:57:44.080836 2020-12-31 00:59:39.274422 2020-12-30 1 1 793 3 1 2020-12-31 4 2 9 2020-12-31 20:36:09.891284 2020-12-31 20:38:03.86437 2020-12-31 1 1 792 1 1 2020-12-31 4 2 9 2020-12-31 20:35:10.940526 2020-12-31 20:38:13.126012 2020-12-31 0 1 794 1 3 2020-12-31 4 2 21 2020-12-31 22:37:57.014227 2020-12-31 22:38:40.758044 2020-12-31 1 1 795 1 1 2020-12-31 4 2 9 2020-12-31 22:41:30.103014 2020-12-31 22:42:19.55381 2020-12-31 0 1 796 3 1 2020-12-31 4 2 9 2020-12-31 22:46:48.733772 2020-12-31 22:47:37.353876 2020-12-31 1 1 797 1 3 2021-01-05 4 2 18 2021-01-06 00:04:16.389745 2021-01-06 00:06:28.019346 2021-01-05 0 1 798 1 3 2021-01-07 2 2 18 2021-01-07 22:12:25.768566 2021-01-07 22:15:07.750747 2021-01-07 1 1 799 1 1 2021-01-08 1 2 2 2021-01-08 21:39:02.560698 2021-01-08 21:39:31.818449 2021-01-08 0 1 801 1 3 2021-01-08 4 2 18 2021-01-09 02:18:22.352232 2021-01-09 02:19:28.129445 2021-01-08 1 1 800 1 3 2021-01-08 4 2 18 2021-01-09 02:17:56.457238 2021-01-09 02:19:37.396463 2021-01-08 1 1 802 3 1 2021-01-12 4 2 2 2021-01-12 21:23:02.249783 2021-01-12 21:48:49.094183 2021-01-12 1 1 804 1 3 2021-01-15 4 2 18 2021-01-15 23:36:16.679825 2021-01-15 23:37:01.323484 2021-01-15 0 1 803 3 1 2021-01-12 4 2 2 2021-01-13 01:51:14.995977 2021-01-16 01:44:33.575718 2021-01-15 1 1 805 1 3 2021-01-15 4 2 18 2021-01-16 02:12:49.201913 2021-01-16 02:15:46.965948 2021-01-15 0 1 806 1 3 2021-01-18 4 2 18 2021-01-19 00:07:15.911388 2021-01-19 00:07:55.381809 2021-01-18 1 1 807 1 3 2021-01-19 4 2 18 2021-01-19 20:04:02.311459 2021-01-19 20:04:53.916134 2021-01-19 1 1 808 1 1 2021-01-20 1 2 2 2021-01-21 02:04:15.40167 2021-01-21 02:04:35.691934 2021-01-20 0 1 809 1 3 2021-01-21 2 2 21 2021-01-21 18:25:59.043935 2021-01-21 18:26:20.450144 2021-01-21 1 1 810 3 1 2021-01-22 21 2 2 2021-01-23 01:34:25.050265 2021-01-23 01:53:37.75684 2021-01-22 1 1 812 3 1 2021-01-23 1 2 2 2021-01-23 22:14:55.176138 2021-01-23 22:15:22.127457 2021-01-23 1 1 813 3 1 2021-01-29 1 2 2 2021-01-29 19:08:58.787038 2021-01-29 19:13:04.032161 2021-01-29 1 1 811 1 3 2021-01-22 2 2 21 2021-01-23 01:54:34.673244 2021-01-30 00:47:26.936121 2021-01-29 1 1 814 1 3 2021-01-29 2 2 21 2021-01-30 00:45:53.429871 2021-01-30 00:47:35.570785 2021-01-29 1 1 815 1 1 2021-02-03 1 2 2 2021-02-04 00:49:34.992483 2021-02-04 00:50:09.994778 2021-02-03 0 1 816 1 3 2021-02-04 2 2 21 2021-02-04 20:23:54.220894 2021-02-04 20:51:49.109285 2021-02-04 1 1 817 3 1 2021-02-04 21 2 2 2021-02-04 20:57:01.630595 2021-02-04 20:57:44.625811 2021-02-04 1 1 818 1 1 2021-02-04 1 2 2 2021-02-04 23:51:15.063205 2021-02-04 23:51:48.269195 2021-02-04 0 1 819 3 1 2021-02-10 21 2 2 2021-02-10 23:27:45.899995 2021-02-11 00:20:56.557355 2021-02-10 1 1 820 1 3 2021-02-12 4 2 18 2021-02-13 01:22:47.724818 2021-02-13 01:23:21.728988 2021-02-12 1 1 821 3 1 2021-03-04 1 2 2 2021-03-05 01:32:06.148298 2021-03-05 01:32:33.260348 2021-03-04 1 1 \. -- -- Name: transfers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.transfers_id_seq', 821, true); -- -- Data for Name: units; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.units (id, unit, status, created_at, updated_at, unit_key) FROM stdin; 1 Kilo 1 2019-01-28 18:10:12.581612 2019-01-28 18:10:12.581612 2 Gramo 1 2019-01-28 18:10:12.600503 2019-01-28 18:10:12.600503 3 Pieza 1 2019-01-28 18:10:12.633067 2019-01-28 18:10:12.633067 4 Litro 1 2019-01-28 18:10:12.648693 2019-01-28 18:10:12.648693 \. -- -- Name: units_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.units_id_seq', 4, true); -- -- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.users (id, userid, first_name, last_name, usertype, email, encrypted_password, reset_password_token, reset_password_sent_at, remember_created_at, sign_in_count, current_sign_in_at, last_sign_in_at, current_sign_in_ip, last_sign_in_ip, created_at, updated_at, pointsale_id, unique_session_id, status, warehouse_id) FROM stdin; 11 ILSE ILSE LIZARRAGA C ilse_l@gmail.com $2a$10$YBtlbsEOLhX1Dn4k9ifhSuzMKXTFvAj2YS6bSi4hh3yzviq89YzgK \N \N \N 39 2019-04-17 16:43:29.711402 2019-04-16 16:07:01.936945 189.186.37.196 189.186.37.196 2019-02-23 17:19:50.593134 2019-05-02 16:27:38.045802 2 NsRGxsYLS2pPgzojQyrc 2 \N 12 ANABELLY GAXIOLA ANABELLY GAXIOLA C ana_gax1@hotmail.com $2a$10$t06ODbRQIDEEBWeAB75zPeGth0h7EvO14Lpw8o2o7EEB.Ng7KrkQG \N \N \N 266 2019-08-07 23:53:56.468434 2019-08-03 01:47:30.12281 187.149.99.246 189.186.32.230 2019-02-28 00:07:35.482465 2019-08-30 03:04:35.666926 1 v_jjrfxFncaSPmEpenP8 2 \N 5 chemi josemiguel ledon A josemiguel@sml.mx $2a$10$nOXYdvuKwMAeEG8xetWIzOMuI69mAx9XcYQA2ucEIpH4w9zvJxYTa \N \N \N 25 2019-08-18 02:58:48.593869 2019-05-26 23:36:53.283438 189.252.79.46 189.252.57.219 2019-02-02 01:51:01.140772 2020-06-23 23:47:04.405531 \N GYeEsfUBcdx7svbyyDD5 2 \N 21 DANIELACAMPINA DANIELA URCISICHI OSUNA G sherlyu@hotmail.com $2a$10$7CkR8bzYbYhpDfSR4OkKees61EUBkovQkzpHWuB3VnwnjqGP9CYxa \N \N \N 423 2021-03-14 01:39:06.943835 2021-03-08 19:41:39.731802 189.186.112.255 189.186.112.255 2019-09-03 22:57:52.835456 2021-03-14 01:39:06.99166 3 UNwsFQU-mohxmxxLE4Ui 1 \N 1 adminpos Administrador POS SS info@sml.mx $2a$10$eXuf2mHOmbHKCfJv/ksJS.Y.C00ASpqP3DB9FAaFVGAXtN9OBSSgW \N \N \N 488 2021-03-19 01:00:38.635837 2021-03-19 00:56:39.223842 177.248.215.51 189.195.195.142 2019-01-28 18:10:12.482168 2021-03-19 01:00:38.669263 \N 6kEtL8tyFyrHxt2rmeD8 1 \N 31 NAYELI NAYELI BELTRAN G beltrannayeli95@gmail.com $2a$10$FIIXxKoo4P9wIp1XPp/LZOFextBsHqdtFk8qkj0LQNWdTQlJHBr8y \N \N \N 0 \N \N \N \N 2020-11-06 22:18:34.295177 2020-11-06 22:18:34.295177 3 \N 1 \N 3 ANABELLY ANABELLY GAXIOLA G gaxiolaanabelly@gmail.com $2a$10$BH/Jzd.LUrbZlV9vvtX2FeJ2O.b9l7FgVdIrEUsIwgA/L9SOi1v/a \N \N \N 621 2019-09-03 20:08:21.353113 2019-09-02 22:33:52.498007 187.149.63.76 187.149.63.76 2019-02-02 01:18:08.970555 2019-09-03 22:34:04.75985 2 5GxZbW83YDkrd1AyAjGY 2 \N 17 a G a@a.com $2a$10$IY6du/WkrUap9bx1dQDpAOnDrRqZ4mYmhSbYdK9dM4D5a1Lfre.Hm \N \N \N 0 \N \N \N \N 2019-08-03 19:13:01.232036 2019-08-03 19:13:01.232036 3 \N 1 \N 29 gerentesoporte Gerente Soporte Spiral G gerentepos@sts.com $2a$10$HO8l/eQLrk7atCyUTdDNFeWtTsSrPGDFZzwmphTX8jDg05ey0UOSm \N \N \N 4 2020-01-21 02:44:54.611859 2020-01-21 01:41:52.410034 189.186.117.149 187.149.51.184 2020-01-21 00:45:47.975616 2020-01-21 02:44:54.634392 1 6y97GbJmbwrvNz6cy-E5 1 \N 4 SAMANTHA SAMANTHA URCISICHI A samantha_urcisichi@hotmail.com $2a$10$/j690iG.NoR7EVkJwbBKIuDwk24mhim1HkZAcYiNAtF57Fk.5t4IC \N \N \N 2353 2021-03-19 01:00:14.809565 2021-03-17 00:50:59.109535 189.195.195.142 189.186.156.211 2019-02-02 01:32:38.920146 2021-03-19 01:00:14.840042 \N Wu_zWJTjUX53Zn1G-gyZ 1 \N 13 YARETZI YARETZI NAJAR C yaretzinajar12@hotmail.com $2a$10$gBxeqfOZONYhZV9EOmkwkefOV7l.Hp4IuaeLjvznVwtgBam9mV8ya \N \N \N 0 \N \N \N \N 2019-05-02 16:19:13.959919 2019-09-09 18:12:31.282725 2 \N 2 \N 7 SAMANTHASUO SAMANTHA URCISICHI G samantha_urcisic@hotmail.com $2a$10$qwab7eg4COQk6q4d6xpsquh.MBNPQP3CHCya.7Ep6JYavxL7yVn06 \N \N \N 1 2019-02-06 00:30:34.115585 2019-02-06 00:30:34.115585 189.186.39.120 189.186.39.120 2019-02-06 00:25:54.846183 2019-02-06 00:34:04.77331 1 oRqunezenUb-wSz45xxC 2 \N 10 SAMANTHASBYSUO SAMANTHA OSUNA C samantha_ursichi@hotmail.com $2a$10$EqduLGjJ0S4uTDllY6X/NO71AINpQsFSBZ6bWgmX.yTM8a1yU7l2C \N \N \N 159 2020-06-24 20:29:46.77135 2020-01-18 19:00:29.68543 187.149.46.40 187.149.86.104 2019-02-06 00:36:42.688755 2020-06-24 20:29:46.795158 2 nfh1mYtGFfYzgEGBXs7y 1 \N 23 MARICRUZ MARICRUZ BUSTAMANTE MEZA G lesliamb@hotmail.com $2a$10$OoCltfLWbK0oh14BbpuVAOY8isdDsBYxu1/CD6jGtS62.Iztu7lZ2 \N \N \N 89 2019-12-14 16:54:40.272942 2019-12-13 17:09:27.400255 189.186.111.139 189.186.111.139 2019-09-09 16:42:10.606866 2020-01-14 22:43:36.866782 3 ZnyNzqKksqPpRFmoP4zA 2 \N 2 GerentePrueba1 ROCIO GUEVARA G bellota_chio@hotmail.com $2a$10$oO8XP959jwdvTCz2aNmfSeUB6YMqtaFT9pVjLe06r.itcWG2x8pc6 \N \N \N 786 2021-03-06 20:25:20.758816 2021-03-05 23:24:38.526865 187.149.110.86 187.149.110.86 2019-02-01 04:44:58.20544 2021-03-06 20:25:20.806937 1 H4hhYNkhCizSSwj2gU3b 1 \N 22 ALMACENSUO DANIELA URCISICHI S daniurci@gmail.com $2a$10$JelVm2iuW28G7qTb2rWlre8PnHZ4Hf7/zVfnNZpYNwQ3VgLDvywuS \N \N \N 14 2020-07-02 19:52:00.656264 2020-06-25 19:04:57.789633 189.186.153.73 187.149.46.40 2019-09-03 23:53:23.23147 2020-07-02 19:52:00.676553 \N q1CSvDgHtr3y3m8suEiY 1 1 15 ROCIOG ROCIOG GUEVARA C rocioguevara_86@hotmail.com $2a$10$piPcHux11GCWTNC4dabn9.cUvmBcU3kQfHwSNKGqN87R3v7ygfVc6 \N \N \N 0 \N \N \N \N 2019-05-02 16:34:40.096484 2020-07-01 06:02:52.891028 2 \N 2 \N 26 DANIELASBYSUO DANIELA URCISICHI OSUNA G dani_urci7@hotmail.com $2a$10$.Jl/hhUSL7LmsixL5IaNneOuAxMukVkufHSD7wJ2DEy1NZiWT2lpy \N \N \N 80 2020-06-25 01:33:56.200649 2020-06-25 01:15:08.505809 187.149.46.40 187.149.46.40 2019-10-19 17:19:45.306318 2020-06-25 01:33:56.217738 2 RE9qeeo-ayhTorMTMnAP 1 \N 9 SAMANTHASUO1 SAMANTHA OSUNA C samantha_urcisii@hotmail.com $2a$10$34I0n2AWG69Mh0d8XfKMmuj8N56Pq2A1Upk.zb7IXj3P5ita4EzAC \N \N \N 244 2021-03-11 21:52:01.889087 2021-01-05 01:53:31.367565 187.149.110.86 187.149.121.224 2019-02-06 00:36:08.360358 2021-03-11 21:52:01.936466 1 sgFYfEqXMwtyuGU_zsqD 1 \N 25 DANIELASUO DANIELA URCISICHI G daniurci7@hotmail.com $2a$10$0yLvO4FfwGydXUOo1k4Feev8COT3J1SPzadbkYcIZd/OqtTKoN.Y6 \N \N \N 98 2020-11-01 20:57:44.505883 2020-10-19 18:33:39.983483 189.186.227.197 189.186.72.137 2019-09-20 17:12:42.925668 2020-11-01 20:57:44.526527 1 gWvRrezVvjRc1TBgkigv 1 \N 14 YARETZII YARETZII NAJAR C yaretzi_najar1@hotmail.com $2a$10$selbbIWARD.jdT6NZJI/geFcpeMn8q0zd9334JWK9hVPAvU132IJe \N \N \N 0 \N \N \N \N 2019-05-02 16:26:41.308935 2019-12-19 18:44:45.664735 1 \N 2 \N 8 SAMANTHABYSUO SAMANTHA URCISICHI G samantha_urcisi@hotmail.com $2a$10$4U5jvtkwbToBkHmNkmGvnuEsiYg8A9Q4/flK9T38amBBilK9UAHXy \N \N \N 145 2020-07-01 19:10:00.700812 2020-06-25 18:24:25.465435 189.186.153.73 187.149.46.40 2019-02-06 00:26:39.537587 2020-07-01 19:10:00.721647 2 QzBJFpzE6aathirigJqs 1 \N 19 DANIELA DANIELA URCISICHI C daniurci7@hgmail.com $2a$10$.ptPagXRTvb8eFm1djd8mORkEAIgStSEn9TvZBTgNCETMQtElTnaq \N \N \N 6 2020-03-13 22:49:02.575821 2020-01-31 18:26:53.319939 189.186.107.100 189.186.161.153 2019-08-28 04:01:05.333016 2020-03-13 22:49:02.601514 3 C2Dzd5aZgVUxoxTkYs5o 1 \N 27 KEYLA KEYLA LIZARRAGA G kglv.2001@gmail.com $2a$10$GpowxArd8aE8x0yzQXtXMOlbL/hM67k2BQTtakK7j1WT/SeDLyq8K \N \N \N 138 2020-03-24 18:41:12.496805 2020-03-23 18:23:54.448554 187.149.51.37 187.149.51.37 2019-10-22 01:38:05.743132 2020-12-02 00:16:35.402656 2 Xz7wyH-AcgFMxoZnP9_c 2 \N 20 YARETZINAJAR YARETZI NAJAR C yaretzinajar121@hotmail.com $2a$10$8Po5bWo.pwpB5OsF9FyCNOrYHP8/kr7sXHz6gqA3LZXzf27/YxnHi \N \N \N 13 2019-09-06 16:11:41.69384 2019-09-05 16:08:40.593895 187.149.63.76 187.149.63.76 2019-08-30 03:09:58.364787 2019-12-19 18:44:58.54949 2 VGS6zbQKWbHu_wj8vv36 2 \N 18 SAMANTHACOMERCIAL SAMANTHA URCISICHI OSUNA G daniurci@hotmail.com $2a$10$l.IqDkInaSTt6q8S6ghtmeTQVZvpH/kaCm9O6c/.s/dJVYVy05flK \N \N \N 499 2021-03-19 01:29:11.384489 2021-03-11 21:52:32.297902 189.186.156.211 187.149.110.86 2019-08-24 02:19:55.544475 2021-03-19 01:29:11.43842 3 8uWXngAJZAV4f3vjA2bR 1 \N 24 ROCIOBYSUO ROCIO GUEVARA C fjfll@hotmail.com $2a$10$iwJ6Qayj9s7i72WewoyxnO7ibvyELqfem35Xjorl1P1yjR7n/upL6 \N \N \N 61 2020-03-18 00:01:57.54355 2020-03-10 18:18:01.260896 187.149.66.8 187.149.43.80 2019-09-14 20:45:29.366531 2020-07-01 06:02:34.418616 2 1FNHUVaT9pF_mEykWVbt 2 \N 6 chemicajasuo chemicajasuo chemicajasuo C chemicajasuo@sml.mx $2a$10$1jyBZvBZo59cVXhNKURw7ewDexK3SUOR6hNNUPAxjpbeZwFIlBlfy \N \N \N 7 2019-05-04 18:48:11.428147 2019-02-21 04:52:25.51687 189.252.65.224 189.252.90.197 2019-02-04 09:12:18.77473 2020-07-01 06:03:09.054958 1 eYzpNzn1yZjvzJ6ermsw 2 \N 16 chemigerentesuo chemi gerente G chemigerentesuo@sml.mx $2a$10$AvdDQjDcoLdPQocc38MmUeUWjWLbr45mAfEqRSL/cHXZ1KL0aGaxm \N \N \N 1 2019-05-26 23:31:56.548556 2019-05-26 23:31:56.548556 189.252.57.219 189.252.57.219 2019-05-26 23:31:35.07291 2020-07-01 06:03:21.439904 1 dsRhHXfcWkPGAa6HnJGe 2 \N 30 DANIADMON DANIELA URCISICHI OSUNA A daniurci7@gmail.com $2a$10$uIvL3WVmebF/cLPNuuGzhea/786btvaQjSpCvfWjpmMvk2exDjhoG \N \N \N 20 2021-02-17 23:15:37.473005 2021-01-27 00:41:18.052812 187.149.24.170 189.186.250.152 2020-09-19 23:11:41.012568 2021-02-17 23:15:37.497319 \N xvgs8zX6rwuEbvfxNrat 1 \N 32 NAYELI1 NAYELI BELTRAN G beltrannayeli951@gmail.com $2a$10$9f0Sw4mjkAsrZuA/j5xKKuBQwHdsD53CBfUKv1A/j3DrXdNkdbkuK \N \N \N 1 2020-11-06 22:33:41.518912 2020-11-06 22:33:41.518912 189.186.91.88 189.186.91.88 2020-11-06 22:33:06.476899 2020-11-06 22:33:41.540077 3 6JUUrugVu6r9Rz67eRRH 1 \N 28 MONTSE MONTSERRAT BARRIOS G mbt_1024@hotmail.com $2a$10$Tfqtu7AmDT5iL3Q7t4LOmeiIjQXdDv2qAgR3qcQtJ6JIMJ5HCN0eK \N \N \N 1 2019-12-19 18:41:34.652803 2019-12-19 18:41:34.652803 187.149.78.168 187.149.78.168 2019-12-19 18:40:27.098649 2020-11-30 22:23:38.922877 1 7tqzYuz_rAw1M7yyUXNx 1 \N 33 MONTSE B. MONTSE BARRIOS G montsebarrios@hotmail.com $2a$10$6Ai0RVeCr8EvJbCCjemh8.H1p0Vvgwk5Ql35PUh/KIlnmwvhwM27a \N \N \N 1 2020-11-30 22:20:57.36471 2020-11-30 22:20:57.36471 189.186.20.144 189.186.20.144 2020-11-30 22:16:31.425245 2020-11-30 22:20:57.385148 1 b6SZsu2jfAtYMbgkvYPp 1 \N \. -- -- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.users_id_seq', 33, true); -- -- Data for Name: warehouse_stocks; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.warehouse_stocks (id, warehouse_id, product_id, stock_min, stock_max, stock, created_at, updated_at) FROM stdin; 82 1 898 0 0 0.0 2019-10-30 01:51:42.394277 2021-01-08 21:39:00.709415 4 1 447 0 0 1.0 2019-02-07 01:37:23.842035 2019-02-07 01:39:35.477705 65 1 881 0 0 0 2019-10-29 01:41:18.617328 2019-10-29 01:42:07.911671 1 1 6 0 0 0.0 2019-02-06 00:51:38.428796 2019-02-07 02:39:01.194756 23 1 688 0 0 0.0 2019-08-22 04:58:07.915997 2019-08-31 04:16:54.382399 16 1 679 0 0 0.0 2019-08-22 03:33:39.779784 2019-08-25 19:39:13.25497 5 1 582 0 0 0.0 2019-05-23 01:48:30.722635 2019-06-04 22:19:59.454639 3 1 446 0 0 0 2019-02-07 01:36:18.81518 2019-02-07 01:39:35.458095 40 1 357 0 0 0 2019-09-04 01:08:07.248165 2019-09-04 01:08:07.248165 24 1 690 0 0 0.0 2019-08-30 03:18:58.155102 2019-08-31 04:58:40.534383 18 1 681 0 0 0.0 2019-08-22 03:40:37.810835 2019-08-25 19:39:46.31298 8 1 661 0 0 0.0 2019-08-20 21:40:25.554546 2019-08-25 19:40:13.782146 49 1 865 0 0 0.0 2019-10-29 01:23:05.766492 2019-11-20 20:31:44.23968 37 1 369 0 0 0.0 2019-09-03 23:53:50.819694 2019-09-03 23:54:08.30216 12 1 665 0 0 0.0 2019-08-20 21:53:24.388816 2019-08-25 19:42:01.167267 22 1 687 0 0 0.0 2019-08-22 04:56:20.796282 2019-08-25 19:42:03.562865 84 1 900 0 0 0.0 2019-10-30 01:53:28.620568 2020-11-14 22:54:07.670704 10 1 663 0 0 0.0 2019-08-20 21:44:59.580317 2019-08-25 19:42:47.158452 11 1 664 0 0 0.0 2019-08-20 21:46:16.471676 2019-08-29 14:34:59.857953 15 1 678 0 0 0.0 2019-08-22 03:31:46.7198 2019-08-29 14:35:29.40872 17 1 680 0 0 0.0 2019-08-22 03:39:07.87105 2019-08-29 14:44:07.910567 76 1 892 0 0 0.0 2019-10-30 01:43:22.403279 2019-11-21 18:08:21.721819 36 1 702 0 0 2.0 2019-08-30 04:45:03.423675 2020-02-13 19:02:10.312736 62 1 878 0 0 6.0 2019-10-29 01:35:13.125216 2019-10-29 01:36:49.164508 19 1 682 0 0 0.0 2019-08-22 03:42:25.506707 2019-08-22 05:01:08.476357 77 1 893 0 0 0.0 2019-10-30 01:44:14.755983 2020-11-14 22:56:00.723553 20 1 683 0 0 0.0 2019-08-22 03:43:35.494456 2019-08-22 05:05:02.089039 6 1 640 0 0 0.0 2019-08-18 01:25:00.757104 2021-01-21 02:04:14.620358 21 1 686 0 0 0.0 2019-08-22 04:54:06.038205 2019-08-22 05:08:02.960996 31 1 697 0 0 0 2019-08-30 03:45:34.943649 2020-02-13 19:02:10.321898 9 1 662 0 0 0.0 2019-08-20 21:43:34.086949 2019-08-22 05:17:09.536451 74 1 890 0 0 0.0 2019-10-30 01:39:33.946687 2019-11-20 21:02:46.864215 75 1 891 0 0 0.0 2019-10-30 01:40:25.296433 2020-11-14 22:56:04.950106 43 1 713 0 0 0.0 2019-09-21 20:40:11.226561 2019-09-21 20:44:33.410164 44 1 714 0 0 0.0 2019-09-21 20:42:44.298676 2019-09-21 20:44:34.241268 39 1 363 0 0 0 2019-09-04 01:08:07.236538 2019-09-04 01:08:07.236538 63 1 879 0 0 5.0 2019-10-29 01:36:08.213271 2020-11-25 20:11:46.622514 45 1 715 0 0 0.0 2019-09-21 20:43:46.161047 2019-10-05 18:35:09.231907 85 1 901 0 0 0.0 2019-10-30 01:54:26.865351 2020-11-14 22:56:37.096405 41 1 354 0 0 0.0 2019-09-04 01:08:07.258087 2019-11-26 02:13:14.441346 70 1 886 0 0 0.0 2019-10-30 01:30:38.087699 2019-11-04 19:02:09.041152 27 1 693 0 0 0.0 2019-08-30 03:34:54.815882 2019-08-30 04:52:32.860795 28 1 694 0 0 0.0 2019-08-30 03:37:28.369447 2019-08-30 04:52:34.315247 33 1 699 0 0 0.0 2019-08-30 04:36:30.112595 2019-08-30 04:52:35.669545 34 1 700 0 0 0.0 2019-08-30 04:39:49.344908 2019-08-30 04:52:37.112919 30 1 696 0 0 0.0 2019-08-30 03:43:13.236104 2019-08-30 04:52:38.427611 29 1 695 0 0 0.0 2019-08-30 03:41:20.873675 2019-08-30 04:52:40.494321 64 1 880 0 0 0.0 2019-10-29 01:38:11.833584 2019-11-09 19:00:36.516929 46 1 782 0 0 0.0 2019-10-11 19:56:35.631888 2019-10-11 20:35:10.483569 25 1 691 0 0 0.0 2019-08-30 03:28:02.310842 2019-08-30 04:54:04.386144 26 1 692 0 0 0.0 2019-08-30 03:30:54.83382 2019-08-30 04:54:06.382917 56 1 872 0 0 0.0 2019-10-29 01:29:14.867255 2019-10-29 18:33:36.299961 42 1 710 0 0 0.0 2019-09-05 03:25:44.228202 2020-11-04 01:01:01.578612 73 1 889 0 0 0.0 2019-10-30 01:36:18.015492 2019-11-21 18:02:51.432235 35 1 701 0 0 0.0 2019-08-30 04:41:07.503887 2019-08-30 04:56:39.761894 32 1 698 0 0 0.0 2019-08-30 03:47:48.659872 2019-08-30 04:56:41.910887 14 1 677 0 0 0.0 2019-08-22 03:28:24.570491 2019-08-31 03:51:45.129826 79 1 895 0 0 1.0 2019-10-30 01:48:58.474333 2020-12-02 01:32:16.123059 2 1 445 3.0 3.0 0 2019-02-07 01:30:38.643041 2019-02-07 01:31:12.263708 53 1 869 0 0 0.0 2019-10-29 01:25:56.907457 2020-12-14 17:47:33.50789 38 1 361 0 0 0.0 2019-09-04 01:08:02.518162 2019-11-26 02:13:25.63939 78 1 894 0 0 0.0 2019-10-30 01:47:46.324592 2019-11-21 18:03:12.106363 71 1 887 0 0 0.0 2019-10-30 01:31:24.488903 2019-11-27 21:18:19.959617 54 1 870 0 0 0.0 2019-10-29 01:27:33.037935 2020-11-04 01:04:26.169728 60 1 876 0 0 6.0 2019-10-29 01:33:20.921319 2019-11-09 19:01:34.406728 47 1 786 0 0 0.0 2019-10-11 22:07:36.577886 2020-11-04 01:06:19.071011 66 1 882 0 0 0.0 2019-10-29 01:42:02.460125 2019-11-09 19:19:26.54017 80 1 896 0 0 3.0 2019-10-30 01:50:03.580045 2020-12-22 22:39:07.193121 51 1 867 0 0 0.0 2019-10-29 01:24:34.237907 2019-11-05 19:38:24.888517 83 1 899 0 0 0.0 2019-10-30 01:52:41.854163 2019-10-30 01:58:57.231487 68 1 884 0 0 0.0 2019-10-29 01:44:35.28595 2019-11-09 19:19:42.420929 57 1 873 0 0 0.0 2019-10-29 01:30:07.973548 2019-11-04 19:05:43.347396 81 1 897 0 0 6.0 2019-10-30 01:50:53.645193 2020-11-25 19:39:57.029684 52 1 868 0 0 5.0 2019-10-29 01:25:10.619793 2020-06-25 19:05:57.419075 55 1 871 0 0 0.0 2019-10-29 01:28:32.708329 2020-12-23 00:38:54.541241 59 1 875 0 0 0.0 2019-10-29 01:32:03.130246 2019-10-30 04:17:33.638948 69 1 885 0 0 0.0 2019-10-29 01:45:22.119032 2019-11-06 01:29:26.319931 72 1 888 0 0 0.0 2019-10-30 01:35:23.87283 2020-11-14 22:53:14.906915 7 1 642 0 0 0.0 2019-08-18 23:25:16.604837 2020-11-25 19:40:12.867056 61 1 877 0 0 2.0 2019-10-29 01:34:24.408642 2020-12-30 23:34:53.605684 67 1 883 0 0 0.0 2019-10-29 01:43:28.211747 2019-11-11 21:40:57.960687 50 1 866 0 0 0.0 2019-10-29 01:23:51.475013 2020-12-31 00:10:44.156069 58 1 874 0 0 0.0 2019-10-29 01:30:57.703361 2020-07-02 19:53:51.861758 48 1 864 0 0 0 2019-10-28 18:23:44.988294 2019-12-24 19:31:53.8133 13 1 676 0 0 0.0 2019-08-22 03:24:48.57133 2020-11-25 20:06:28.842072 157 1 927 0 0 0.0 2019-11-13 18:44:03.990752 2019-11-14 00:50:34.79113 179 1 948 0 0 0.0 2019-11-20 20:25:55.791252 2019-11-20 20:50:05.497232 177 1 946 0 0 0.0 2019-11-20 20:24:26.587608 2020-12-30 21:53:49.143296 158 1 928 0 0 0.0 2019-11-13 18:45:40.03707 2019-11-14 00:51:17.785288 86 1 902 0 0 0.0 2019-10-30 01:55:37.977285 2020-11-23 19:31:03.343121 153 1 923 0 0 0.0 2019-11-13 18:36:41.834681 2019-11-13 19:35:29.846633 186 1 956 0 0 0.0 2019-11-26 22:34:59.975909 2020-11-05 00:59:01.065179 91 1 539 0 0 1.0 2019-11-03 19:41:06.644175 2019-11-03 19:41:06.644175 92 1 480 0 0 1.0 2019-11-03 19:41:06.649931 2019-11-03 19:41:06.649931 120 1 185 0 0 2.0 2019-11-03 19:42:01.166273 2019-11-03 19:42:01.166273 121 1 483 0 0 1.0 2019-11-03 19:42:01.172728 2019-11-03 19:42:01.172728 122 1 237 0 0 2.0 2019-11-03 19:42:01.178612 2019-11-03 19:42:01.178612 185 1 955 0 0 0.0 2019-11-26 22:34:15.16697 2020-11-05 21:05:08.012181 137 1 495 0 0 0 2019-11-03 19:43:11.457324 2019-11-03 19:43:11.457324 130 1 401 0 0 3.0 2019-11-03 19:42:43.318555 2019-11-03 19:42:43.318555 127 1 351 0 0 0.0 2019-11-03 19:42:31.096267 2020-02-13 20:34:18.941704 160 1 930 0 0 0.0 2019-11-13 18:49:53.180999 2019-11-14 00:51:34.808485 168 1 938 0 0 0.0 2019-11-13 19:05:50.293147 2019-11-13 20:44:57.5434 170 1 940 0 0 0.0 2019-11-13 19:11:56.63058 2019-11-13 20:45:24.230944 161 1 931 0 0 0.0 2019-11-13 18:51:28.64 2019-11-14 00:51:48.66642 180 1 949 0 0 0.0 2019-11-20 20:29:12.406435 2019-11-21 18:12:40.113204 162 1 932 0 0 0.0 2019-11-13 18:54:02.966949 2019-11-14 00:52:10.375516 138 1 910 0 0 0.0 2019-11-09 19:15:25.115683 2019-11-09 19:19:27.446 169 1 939 0 0 0 2019-11-13 19:07:22.92929 2019-11-13 19:07:22.92929 145 1 915 0 0 0.0 2019-11-13 18:20:12.904534 2019-11-13 20:40:46.280459 147 1 917 0 0 0.0 2019-11-13 18:23:12.74141 2019-11-13 20:41:17.409686 173 1 943 0 0 0.0 2019-11-13 19:17:33.901919 2019-11-13 20:45:57.958667 150 1 920 0 0 0.0 2019-11-13 18:28:57.053431 2019-11-13 20:42:09.56258 152 1 922 0 0 0.0 2019-11-13 18:35:05.679135 2019-11-13 20:42:22.261591 155 1 925 0 0 0.0 2019-11-13 18:39:51.754479 2019-11-13 20:42:33.97158 166 1 936 0 0 0.0 2019-11-13 19:01:45.59583 2019-11-14 00:52:41.053376 178 1 947 0 0 0.0 2019-11-20 20:25:13.495738 2020-11-04 01:05:23.001192 141 1 717 0 0 0 2019-11-10 18:58:20.390534 2019-12-24 19:33:58.80457 156 1 926 0 0 0.0 2019-11-13 18:41:08.263949 2019-11-13 20:42:54.945514 172 1 942 0 0 0.0 2019-11-13 19:15:33.961121 2019-11-14 00:53:06.200026 154 1 924 0 0 0.0 2019-11-13 18:38:19.891484 2019-11-13 21:27:00.462328 163 1 933 0 0 0.0 2019-11-13 18:55:33.140795 2019-11-14 00:54:08.6213 159 1 929 0 0 0.0 2019-11-13 18:47:13.520565 2019-11-13 20:43:51.441241 171 1 941 0 0 1.0 2019-11-13 19:14:20.334808 2019-11-13 19:17:41.887794 174 1 718 0 0 0.0 2019-11-16 01:32:29.707532 2019-11-16 01:36:05.10627 146 1 916 0 0 0.0 2019-11-13 18:21:39.382981 2019-11-13 21:28:20.488309 189 1 959 0 0 1.0 2019-11-26 22:42:59.318325 2020-10-15 00:34:41.186551 190 1 960 0 0 0.0 2019-11-26 22:43:47.807458 2019-11-26 23:15:00.131203 143 1 913 0 0 0.0 2019-11-13 18:08:39.133096 2019-11-14 00:48:58.320707 144 1 914 0 0 0.0 2019-11-13 18:18:27.395234 2019-11-14 00:49:05.664715 148 1 918 0 0 0.0 2019-11-13 18:25:32.096435 2019-11-13 19:31:35.313783 149 1 919 0 0 0.0 2019-11-13 18:26:59.778018 2019-11-14 00:49:42.410272 175 1 944 0 0 0.0 2019-11-18 23:50:00.691077 2020-11-25 19:52:24.812049 182 1 952 0 0 0.0 2019-11-23 17:24:38.863808 2019-11-26 01:29:19.350951 164 1 934 0 0 0.0 2019-11-13 18:57:42.516168 2019-11-13 20:44:12.100157 165 1 935 0 0 0.0 2019-11-13 18:59:53.687603 2019-11-13 20:44:22.370616 167 1 937 0 0 0.0 2019-11-13 19:02:57.78501 2019-11-13 19:43:50.662771 88 1 904 0 0 0.0 2019-10-30 02:35:09.588645 2020-12-10 19:56:12.867924 142 1 909 0 0 0 2019-11-10 18:59:23.42861 2019-11-10 18:59:23.42861 151 1 921 0 0 0.0 2019-11-13 18:30:46.600159 2019-12-23 20:50:07.427926 184 1 954 0 0 0.0 2019-11-26 22:30:54.741225 2020-12-12 22:59:34.849704 87 1 903 0 0 0.0 2019-10-30 02:34:17.758045 2020-11-09 23:54:50.521762 181 1 950 0 0 0.0 2019-11-20 20:30:17.025757 2019-11-20 20:49:28.784177 139 1 911 0 0 0.0 2019-11-09 19:17:14.912838 2019-11-21 18:12:25.759046 188 1 958 0 0 0.0 2019-11-26 22:39:03.53734 2019-12-05 17:44:43.0772 89 1 486 0 0 0 2019-11-03 19:41:06.630366 2019-11-03 19:42:22.591845 187 1 957 0 0 0.0 2019-11-26 22:35:44.256699 2020-11-25 20:06:08.189041 191 1 961 0 0 0.0 2019-11-26 22:44:32.318773 2019-11-26 22:49:54.593693 192 1 962 0 0 0.0 2019-11-26 22:46:49.374085 2019-11-26 22:50:40.388504 193 1 963 0 0 0.0 2019-11-26 22:48:21.15503 2019-11-26 22:49:28.413612 195 1 496 0 0 0.0 2020-01-07 18:13:38.60797 2020-06-25 01:43:12.274615 199 1 17 0 0 6.0 2020-01-07 18:13:38.631312 2020-01-07 18:13:38.631312 96 1 119 0 0 0.0 2019-11-03 19:41:13.438747 2020-01-07 18:20:37.561625 101 1 71 0 0 3.0 2019-11-03 19:41:13.466907 2020-01-07 18:21:08.740117 103 1 94 0 0 0.0 2019-11-03 19:41:20.533218 2020-01-07 18:22:47.847923 97 1 128 0 0 0.0 2019-11-03 19:41:13.444647 2020-01-07 18:24:30.611062 95 1 287 0 0 0.0 2019-11-03 19:41:13.432751 2020-01-07 18:23:47.896467 107 1 76 0 0 0.0 2019-11-03 19:41:27.841329 2020-01-07 18:43:58.433678 100 1 64 0 0 0.0 2019-11-03 19:41:13.461412 2020-01-07 18:25:33.971985 102 1 69 0 0 0.0 2019-11-03 19:41:20.527381 2020-01-07 18:26:31.137153 105 1 213 0 0 0.0 2019-11-03 19:41:20.544375 2020-01-07 18:38:56.164351 110 1 219 0 0 0.0 2019-11-03 19:41:41.734673 2020-01-07 18:40:33.874819 108 1 113 0 0 0.0 2019-11-03 19:41:27.846762 2020-01-07 18:42:54.122667 117 1 233 0 0 0.0 2019-11-03 19:41:41.785343 2020-01-07 18:45:26.646499 114 1 235 0 0 0.0 2019-11-03 19:41:41.767321 2020-01-07 18:46:03.126127 113 1 212 0 0 0.0 2019-11-03 19:41:41.759168 2020-01-07 18:53:11.700232 118 1 208 0 0 0.0 2019-11-03 19:41:41.791113 2020-01-07 18:47:54.535908 115 1 217 0 0 0.0 2019-11-03 19:41:41.773982 2020-01-07 18:52:38.948193 109 1 210 0 0 2.0 2019-11-03 19:41:41.726473 2020-01-07 18:57:08.609747 111 1 246 0 0 0.0 2019-11-03 19:41:41.74344 2020-01-07 18:54:02.587121 116 1 231 0 0 0.0 2019-11-03 19:41:41.779876 2020-01-07 18:55:32.203318 99 1 117 0 0 0.0 2019-11-03 19:41:13.455912 2020-01-28 19:02:45.639161 112 1 206 0 0 0.0 2019-11-03 19:41:41.751715 2020-01-07 19:02:28.451361 194 1 599 0 0 0.0 2020-01-07 18:13:30.803178 2020-01-24 23:47:26.069672 201 1 711 0 0 0.0 2020-01-07 18:13:46.327905 2020-01-28 19:07:06.715079 106 1 67 0 0 0.0 2019-11-03 19:41:27.835703 2020-01-28 19:03:07.036319 93 1 68 0 0 0.0 2019-11-03 19:41:13.420877 2020-01-28 19:04:42.537274 94 1 299 0 0 0.0 2019-11-03 19:41:13.426931 2020-01-28 20:15:12.317697 136 1 207 0 0 0.0 2019-11-03 19:42:43.355213 2020-01-28 19:08:08.379813 134 1 209 0 0 0.0 2019-11-03 19:42:43.343374 2020-01-28 19:09:25.818235 90 1 492 0 0 0 2019-11-03 19:41:06.638241 2020-06-23 23:59:49.374889 123 1 257 0 0 0.0 2019-11-03 19:42:01.184458 2020-01-28 20:19:25.334304 125 1 236 0 0 0.0 2019-11-03 19:42:01.195551 2020-01-28 20:19:43.915339 124 1 475 0 0 3.0 2019-11-03 19:42:01.190139 2020-01-28 20:20:47.922399 119 1 485 0 0 1.0 2019-11-03 19:41:52.324845 2020-01-28 20:20:16.80738 129 1 637 0 0 0.0 2019-11-03 19:42:43.311468 2020-01-28 23:29:05.556897 126 1 238 0 0 0.0 2019-11-03 19:42:12.016777 2020-01-28 20:21:06.592161 128 1 578 0 0 0.0 2019-11-03 19:42:43.304014 2020-01-28 23:26:04.465567 196 1 666 0 0 0.0 2020-01-07 18:13:38.613848 2020-01-28 23:29:51.711133 197 1 627 0 0 0.0 2020-01-07 18:13:38.619687 2020-01-28 23:39:34.087192 200 1 564 0 0 0.0 2020-01-07 18:13:38.63707 2020-01-28 23:40:45.74828 198 1 14 0 0 0.0 2020-01-07 18:13:38.625338 2020-01-29 01:16:11.144527 131 1 15 0 0 0.0 2019-11-03 19:42:43.324841 2020-01-29 01:16:56.520977 133 1 408 0 0 0.0 2019-11-03 19:42:43.337488 2020-01-29 01:28:10.032455 132 1 19 0 0 0.0 2019-11-03 19:42:43.331345 2020-07-07 23:53:04.149908 203 1 89 0 0 3.0 2020-01-07 18:13:46.33993 2020-01-07 18:13:46.33993 207 1 534 0 0 1.0 2020-01-07 18:13:46.362115 2020-01-07 18:13:46.362115 209 1 186 0 0 2.0 2020-01-07 18:13:55.210388 2020-01-07 18:13:55.210388 217 1 221 0 0 5.0 2020-01-07 18:13:55.255574 2020-01-07 18:13:55.255574 219 1 535 0 0 3.0 2020-01-07 18:13:55.266925 2020-01-07 18:13:55.266925 98 1 90 0 0 0.0 2019-11-03 19:41:13.450362 2020-01-07 18:20:17.07553 104 1 536 0 0 0.0 2019-11-03 19:41:20.538826 2020-01-07 18:41:27.881153 206 1 315 0 0 0.0 2020-01-07 18:13:46.356563 2020-01-28 19:03:13.979907 205 1 293 0 0 0.0 2020-01-07 18:13:46.3509 2020-01-28 19:03:56.095484 135 1 205 0 0 0.0 2019-11-03 19:42:43.349262 2020-01-28 19:07:04.729529 220 1 668 0 0 13.0 2020-01-28 20:01:11.720936 2020-01-28 20:01:11.720936 247 1 1079 0 0 0.0 2020-03-01 02:20:38.658312 2020-03-01 02:22:46.517938 278 1 793 0 0 0.0 2020-06-24 21:54:43.231279 2020-11-04 01:02:32.070875 276 1 860 0 0 0.0 2020-06-24 21:54:43.21734 2020-11-25 19:38:10.375936 248 1 1096 0 0 0.0 2020-03-14 20:15:53.061006 2020-03-14 20:18:34.050209 211 1 604 0 0 0.0 2020-01-07 18:13:55.221823 2020-01-28 23:28:33.52074 277 1 198 0 0 0.0 2020-06-24 21:54:43.224343 2020-06-25 19:07:10.981073 216 1 498 0 0 0.0 2020-01-07 18:13:55.249981 2020-01-28 23:29:03.567429 280 1 977 0 0 3.0 2020-07-02 19:52:43.294455 2020-07-02 19:52:43.294455 212 1 579 0 0 0.0 2020-01-07 18:13:55.227309 2020-01-28 23:36:22.522863 249 1 1097 0 0 0.0 2020-03-14 20:22:45.459167 2020-03-14 20:26:26.077856 210 1 7 0 0 0.0 2020-01-07 18:13:55.216243 2020-01-29 01:15:43.505615 221 1 859 0 0 2.0 2020-01-29 19:47:19.904046 2020-01-29 19:47:19.904046 227 1 775 0 0 3.0 2020-01-29 19:47:28.827068 2020-01-29 19:47:28.827068 231 1 770 0 0 3.0 2020-01-29 19:47:28.859776 2020-01-29 19:47:28.859776 234 1 855 0 0 1.0 2020-01-29 19:47:28.888049 2020-01-29 19:47:28.888049 235 1 858 0 0 2.0 2020-01-29 19:47:28.895739 2020-01-29 19:47:28.895739 208 1 479 0 0 0.0 2020-01-07 18:13:46.367487 2020-01-31 19:51:01.584679 281 1 973 0 0 4.0 2020-07-02 19:52:43.304485 2020-07-02 19:52:43.304485 282 1 736 0 0 4.0 2020-07-02 19:52:43.313403 2020-07-02 19:52:43.313403 218 1 141 0 0 0.0 2020-01-07 18:13:55.261056 2020-01-31 19:51:30.444296 202 1 72 0 0 0.0 2020-01-07 18:13:46.333957 2020-01-31 19:51:31.394072 236 1 552 0 0 1.0 2020-02-13 19:01:26.718885 2020-02-13 19:01:26.718885 183 1 953 0 0 0 2019-11-26 01:28:31.438919 2019-12-06 17:54:57.951505 140 1 912 0 0 0 2019-11-10 18:33:19.838153 2019-12-24 19:34:09.049708 250 1 1099 0 0 0.0 2020-03-14 20:53:11.237676 2020-03-14 20:54:31.075697 237 1 670 0 0 0.0 2020-02-13 19:02:10.351853 2020-02-22 23:29:26.27839 251 1 1100 0 0 0.0 2020-03-14 20:57:25.230928 2020-03-14 20:58:51.431296 240 1 1029 0 0 0.0 2020-02-29 23:40:03.455678 2020-02-29 23:43:16.163586 252 1 1117 0 0 0.0 2020-03-17 18:31:30.134821 2020-03-17 18:35:24.715661 241 1 1032 0 0 0.0 2020-03-01 00:07:53.303299 2020-03-01 00:09:21.854891 287 1 731 0 0 1.0 2020-07-02 19:52:57.177063 2020-07-02 19:52:57.177063 288 1 649 0 0 1.0 2020-07-02 19:52:57.185074 2020-07-02 19:52:57.185074 242 1 1033 0 0 0.0 2020-03-01 00:16:05.712084 2020-03-01 00:17:31.547099 243 1 519 0 0 3.0 2020-03-01 01:04:32.529152 2020-03-01 01:04:32.529152 253 1 1118 0 0 0.0 2020-03-17 18:38:25.238974 2020-03-17 18:43:42.724005 244 1 1047 0 0 0.0 2020-03-01 01:12:14.636893 2020-03-01 01:29:29.134473 258 1 724 0 0 3.0 2020-06-24 21:54:27.494496 2020-06-24 21:54:27.494496 245 1 1053 0 0 0.0 2020-03-01 01:33:19.011615 2020-03-01 01:36:17.930264 259 1 728 0 0 1.0 2020-06-24 21:54:27.510557 2020-06-24 21:54:27.510557 246 1 1077 0 0 0.0 2020-03-01 02:15:29.828394 2020-03-01 02:17:11.06726 289 1 773 0 0 0.0 2020-07-02 19:52:57.192243 2021-02-04 00:49:32.55142 263 1 780 0 0 2.0 2020-06-24 21:54:43.011482 2020-06-24 21:54:43.011482 225 1 774 0 0 0.0 2020-01-29 19:47:28.807836 2020-11-25 20:05:57.732218 273 1 856 0 0 0.0 2020-06-24 21:54:43.18928 2020-11-14 22:55:51.652011 266 1 808 0 0 1.0 2020-06-24 21:54:43.127429 2020-06-24 21:54:43.127429 267 1 972 0 0 1.0 2020-06-24 21:54:43.134321 2020-06-24 21:54:43.134321 271 1 650 0 0 1.0 2020-06-24 21:54:43.170519 2020-06-24 21:54:43.170519 286 1 732 0 0 2.0 2020-07-02 19:52:57.16699 2020-07-02 19:53:20.670715 204 1 635 0 0 0 2020-01-07 18:13:46.345416 2020-01-07 18:13:46.345416 213 1 404 0 0 0.0 2020-01-07 18:13:55.232885 2020-07-02 20:18:39.607048 214 1 190 0 0 0.0 2020-01-07 18:13:55.238713 2020-07-02 20:19:39.004951 215 1 158 0 0 0.0 2020-01-07 18:13:55.244365 2020-07-02 20:22:42.133366 239 1 602 0 0 1.0 2020-02-13 19:02:10.368814 2020-07-03 21:52:07.640802 294 1 1181 0 0 0.0 2020-08-07 21:52:06.363693 2020-08-07 21:52:30.730953 290 1 1148 0 0 0.0 2020-08-07 21:52:06.308408 2020-08-07 21:52:47.801261 292 1 1180 0 0 0.0 2020-08-07 21:52:06.337786 2020-08-07 21:53:04.057281 291 1 1184 0 0 0.0 2020-08-07 21:52:06.323832 2020-08-07 21:54:00.348593 293 1 1185 0 0 0.0 2020-08-07 21:52:06.350961 2020-08-07 21:54:21.058174 307 1 1265 0 0 0.0 2020-08-15 23:53:51.840349 2020-08-17 18:56:28.534945 303 1 1261 0 0 0.0 2020-08-15 23:45:04.791629 2020-08-17 20:17:24.221762 298 1 1255 0 0 0.0 2020-08-15 22:56:46.099421 2020-08-17 18:55:00.446583 310 1 1268 0 0 0.0 2020-08-15 23:59:04.63349 2020-08-17 18:55:25.904517 305 1 1263 0 0 0.0 2020-08-15 23:49:03.357179 2020-08-17 18:56:09.329992 299 1 1256 0 0 0.0 2020-08-15 22:58:24.952727 2020-08-17 18:56:01.881901 308 1 1266 0 0 0.0 2020-08-15 23:55:06.183033 2020-08-17 18:54:38.192485 301 1 1258 0 0 0.0 2020-08-15 23:01:07.370225 2020-08-17 18:53:31.367362 257 1 971 0 0 0.0 2020-06-24 21:54:27.486365 2020-11-01 02:10:49.375831 304 1 1262 0 0 0.0 2020-08-15 23:47:31.01549 2020-08-17 18:54:08.708511 302 1 1259 0 0 0.0 2020-08-15 23:02:15.553739 2020-08-17 00:49:55.453278 296 1 1253 0 0 0.0 2020-08-15 22:52:06.424929 2020-08-17 19:42:32.631582 297 1 1254 0 0 0.0 2020-08-15 22:55:06.654535 2020-08-17 18:54:54.874636 300 1 1257 0 0 0.0 2020-08-15 22:59:35.848492 2020-08-17 18:55:53.166512 309 1 1267 0 0 0.0 2020-08-15 23:57:30.743422 2020-08-17 18:55:32.292367 311 1 1269 0 0 2.0 2020-08-16 00:00:52.185545 2020-08-16 00:30:39.617109 295 1 1252 0 0 0.0 2020-08-15 22:48:45.880041 2020-08-17 18:56:18.207496 254 1 725 0 0 0.0 2020-06-24 21:54:27.438048 2020-11-04 01:07:28.769536 264 1 796 0 0 0.0 2020-06-24 21:54:43.046874 2020-11-04 01:03:43.960352 284 1 753 0 0 0.0 2020-07-02 19:52:43.332131 2020-11-04 01:04:22.991033 260 1 862 0 0 0.0 2020-06-24 21:54:27.517721 2020-11-04 01:06:22.505263 265 1 797 0 0 0.0 2020-06-24 21:54:43.12088 2020-11-25 19:52:18.464469 228 1 765 0 0 0.0 2020-01-29 19:47:28.836355 2020-11-14 22:53:25.48538 176 1 945 0 0 0.0 2019-11-18 23:57:48.345277 2020-11-14 22:55:56.226399 285 1 742 0 0 0.0 2020-07-02 19:52:57.157119 2020-11-25 19:52:57.024806 274 1 861 0 0 0.0 2020-06-24 21:54:43.198835 2020-11-25 19:38:22.79911 279 1 783 0 0 0.0 2020-06-24 21:54:43.245074 2020-11-25 19:39:26.609788 272 1 863 0 0 0.0 2020-06-24 21:54:43.179898 2020-11-25 19:53:06.802247 283 1 757 0 0 2.0 2020-07-02 19:52:43.322021 2021-01-06 00:04:15.365426 261 1 778 0 0 0.0 2020-06-24 21:54:42.985723 2020-11-25 20:06:02.117489 270 1 743 0 0 0.0 2020-06-24 21:54:43.160998 2020-11-25 19:53:35.63342 262 1 646 0 0 0.0 2020-06-24 21:54:42.992125 2020-11-25 20:06:00.316781 269 1 777 0 0 0.0 2020-06-24 21:54:43.151576 2020-11-25 19:53:57.762453 268 1 748 0 0 0.0 2020-06-24 21:54:43.142148 2020-11-25 19:54:04.807184 224 1 779 0 0 0.0 2020-01-29 19:47:28.798142 2020-11-25 20:05:40.276995 223 1 737 0 0 0.0 2020-01-29 19:47:28.787652 2020-11-25 20:05:37.564094 275 1 733 0 0 0.0 2020-06-24 21:54:43.208368 2020-11-25 20:12:19.192792 226 1 776 0 0 4.0 2020-01-29 19:47:28.817639 2020-12-31 22:41:26.03383 255 1 790 0 0 0.0 2020-06-24 21:54:27.464293 2020-11-27 00:15:22.784463 222 1 781 0 0 1.0 2020-01-29 19:47:28.76682 2020-12-05 00:46:00.053275 230 1 769 0 0 0.0 2020-01-29 19:47:28.852278 2020-12-24 22:49:06.712624 232 1 766 0 0 0.0 2020-01-29 19:47:28.868825 2020-12-31 20:35:10.001188 233 1 857 0 0 0.0 2020-01-29 19:47:28.879874 2021-01-15 23:36:16.245598 256 1 752 0 0 0.0 2020-06-24 21:54:27.479093 2021-02-04 23:51:12.274273 306 1 1264 0 0 0.0 2020-08-15 23:51:55.969334 2020-08-17 18:54:17.062868 229 1 767 0 0 0.0 2020-01-29 19:47:28.845574 2020-11-25 19:40:08.408105 314 1 1547 0 0 2.0 2021-01-04 21:41:21.864548 2021-01-04 21:41:21.864548 312 1 1555 0 0 1.0 2021-01-04 21:39:28.335507 2021-01-04 21:41:21.878161 313 1 1556 0 0 1.0 2021-01-04 21:41:04.851639 2021-01-04 21:41:21.889937 238 1 787 0 0 0.0 2020-02-13 19:02:10.360052 2021-01-16 02:12:48.317441 \. -- -- Name: warehouse_stocks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.warehouse_stocks_id_seq', 314, true); -- -- Data for Name: warehouses; Type: TABLE DATA; Schema: public; Owner: pos_user -- COPY public.warehouses (id, created_at, updated_at, name, status, prefix) FROM stdin; 1 2019-01-28 18:10:20.98436 2019-01-28 18:10:20.98436 Almacen central 1 CEN \. -- -- Name: warehouses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pos_user -- SELECT pg_catalog.setval('public.warehouses_id_seq', 1, true); -- -- Name: audits_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.audits ADD CONSTRAINT audits_pkey PRIMARY KEY (id); -- -- Name: available_products_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.available_products ADD CONSTRAINT available_products_pkey PRIMARY KEY (id); -- -- Name: billing_informations_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.billing_informations ADD CONSTRAINT billing_informations_pkey PRIMARY KEY (id); -- -- Name: cash_out_details_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.cash_out_details ADD CONSTRAINT cash_out_details_pkey PRIMARY KEY (id); -- -- Name: cash_outs_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.cash_outs ADD CONSTRAINT cash_outs_pkey PRIMARY KEY (id); -- -- Name: cash_registers_moves_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.cash_registers_moves ADD CONSTRAINT cash_registers_moves_pkey PRIMARY KEY (id); -- -- Name: cash_registers_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.cash_registers ADD CONSTRAINT cash_registers_pkey PRIMARY KEY (id); -- -- Name: categories_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.categories ADD CONSTRAINT categories_pkey PRIMARY KEY (id); -- -- Name: commissions_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.commissions ADD CONSTRAINT commissions_pkey PRIMARY KEY (id); -- -- Name: contacts_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.contacts ADD CONSTRAINT contacts_pkey PRIMARY KEY (id); -- -- Name: credit_payments_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.credit_payments ADD CONSTRAINT credit_payments_pkey PRIMARY KEY (id); -- -- Name: credits_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.credits ADD CONSTRAINT credits_pkey PRIMARY KEY (id); -- -- Name: customers_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.customers ADD CONSTRAINT customers_pkey PRIMARY KEY (id); -- -- Name: expenses_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.expenses ADD CONSTRAINT expenses_pkey PRIMARY KEY (id); -- -- Name: expensesconcepts_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.expensesconcepts ADD CONSTRAINT expensesconcepts_pkey PRIMARY KEY (id); -- -- Name: inventories_moves_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.inventories_moves ADD CONSTRAINT inventories_moves_pkey PRIMARY KEY (id); -- -- Name: inventories_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.inventories ADD CONSTRAINT inventories_pkey PRIMARY KEY (id); -- -- Name: invoice_details_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.invoice_details ADD CONSTRAINT invoice_details_pkey PRIMARY KEY (id); -- -- Name: open_cash_registers_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.open_cash_registers ADD CONSTRAINT open_cash_registers_pkey PRIMARY KEY (id); -- -- Name: payment_methods_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.payment_methods ADD CONSTRAINT payment_methods_pkey PRIMARY KEY (id); -- -- Name: pointsales_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.pointsales ADD CONSTRAINT pointsales_pkey PRIMARY KEY (id); -- -- Name: pos_configs_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.pos_configs ADD CONSTRAINT pos_configs_pkey PRIMARY KEY (id); -- -- Name: pre_purchases_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.pre_purchases ADD CONSTRAINT pre_purchases_pkey PRIMARY KEY (id); -- -- Name: pre_sales_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.pre_sales ADD CONSTRAINT pre_sales_pkey PRIMARY KEY (id); -- -- Name: pre_transfers_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.pre_transfers ADD CONSTRAINT pre_transfers_pkey PRIMARY KEY (id); -- -- Name: product_wastes_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.product_wastes ADD CONSTRAINT product_wastes_pkey PRIMARY KEY (id); -- -- Name: products_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.products ADD CONSTRAINT products_pkey PRIMARY KEY (id); -- -- Name: products_return_ins_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.products_return_ins ADD CONSTRAINT products_return_ins_pkey PRIMARY KEY (id); -- -- Name: products_return_outs_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.products_return_outs ADD CONSTRAINT products_return_outs_pkey PRIMARY KEY (id); -- -- Name: products_returns_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.products_returns ADD CONSTRAINT products_returns_pkey PRIMARY KEY (id); -- -- Name: products_variants_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.products_variants ADD CONSTRAINT products_variants_pkey PRIMARY KEY (id); -- -- Name: promotions_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.promotions ADD CONSTRAINT promotions_pkey PRIMARY KEY (id); -- -- Name: purchase_details_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.purchase_details ADD CONSTRAINT purchase_details_pkey PRIMARY KEY (id); -- -- Name: purchases_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.purchases ADD CONSTRAINT purchases_pkey PRIMARY KEY (id); -- -- Name: sales_details_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.sales_details ADD CONSTRAINT sales_details_pkey PRIMARY KEY (id); -- -- Name: sales_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.sales ADD CONSTRAINT sales_pkey PRIMARY KEY (id); -- -- Name: sales_sellercommissions_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.sales_sellercommissions ADD CONSTRAINT sales_sellercommissions_pkey PRIMARY KEY (id); -- -- Name: sellers_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.sellers ADD CONSTRAINT sellers_pkey PRIMARY KEY (id); -- -- Name: sellerscommissions_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.sellerscommissions ADD CONSTRAINT sellerscommissions_pkey PRIMARY KEY (id); -- -- Name: special_prices_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.special_prices ADD CONSTRAINT special_prices_pkey PRIMARY KEY (id); -- -- Name: spmx_counties_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.spmx_counties ADD CONSTRAINT spmx_counties_pkey PRIMARY KEY (id); -- -- Name: spmx_states_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.spmx_states ADD CONSTRAINT spmx_states_pkey PRIMARY KEY (id); -- -- Name: storers_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.storers ADD CONSTRAINT storers_pkey PRIMARY KEY (id); -- -- Name: suppliers_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.suppliers ADD CONSTRAINT suppliers_pkey PRIMARY KEY (id); -- -- Name: taggings_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.taggings ADD CONSTRAINT taggings_pkey PRIMARY KEY (id); -- -- Name: tags_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.tags ADD CONSTRAINT tags_pkey PRIMARY KEY (id); -- -- Name: transfer_details_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.transfer_details ADD CONSTRAINT transfer_details_pkey PRIMARY KEY (id); -- -- Name: transfers_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.transfers ADD CONSTRAINT transfers_pkey PRIMARY KEY (id); -- -- Name: units_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.units ADD CONSTRAINT units_pkey PRIMARY KEY (id); -- -- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.users ADD CONSTRAINT users_pkey PRIMARY KEY (id); -- -- Name: warehouse_stocks_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.warehouse_stocks ADD CONSTRAINT warehouse_stocks_pkey PRIMARY KEY (id); -- -- Name: warehouses_pkey; Type: CONSTRAINT; Schema: public; Owner: pos_user; Tablespace: -- ALTER TABLE ONLY public.warehouses ADD CONSTRAINT warehouses_pkey PRIMARY KEY (id); -- -- Name: associated_index; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX associated_index ON public.audits USING btree (associated_id, associated_type); -- -- Name: auditable_index; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX auditable_index ON public.audits USING btree (auditable_id, auditable_type); -- -- Name: index_audits_on_created_at; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_audits_on_created_at ON public.audits USING btree (created_at); -- -- Name: index_audits_on_request_uuid; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_audits_on_request_uuid ON public.audits USING btree (request_uuid); -- -- Name: index_available_products_on_pointsale_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_available_products_on_pointsale_id ON public.available_products USING btree (pointsale_id); -- -- Name: index_available_products_on_product_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_available_products_on_product_id ON public.available_products USING btree (product_id); -- -- Name: index_billing_informations_on_county_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_billing_informations_on_county_id ON public.billing_informations USING btree (county_id); -- -- Name: index_billing_informations_on_customer_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_billing_informations_on_customer_id ON public.billing_informations USING btree (customer_id); -- -- Name: index_billing_informations_on_state_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_billing_informations_on_state_id ON public.billing_informations USING btree (state_id); -- -- Name: index_cash_out_details_on_cash_out_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_cash_out_details_on_cash_out_id ON public.cash_out_details USING btree (cash_out_id); -- -- Name: index_cash_out_details_on_payment_method_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_cash_out_details_on_payment_method_id ON public.cash_out_details USING btree (payment_method_id); -- -- Name: index_cash_outs_on_open_cash_register_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_cash_outs_on_open_cash_register_id ON public.cash_outs USING btree (open_cash_register_id); -- -- Name: index_cash_outs_on_user_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_cash_outs_on_user_id ON public.cash_outs USING btree (user_id); -- -- Name: index_cash_registers_moves_on_open_cash_register_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_cash_registers_moves_on_open_cash_register_id ON public.cash_registers_moves USING btree (open_cash_register_id); -- -- Name: index_cash_registers_moves_on_payment_method_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_cash_registers_moves_on_payment_method_id ON public.cash_registers_moves USING btree (payment_method_id); -- -- Name: index_categories_products_on_category_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_categories_products_on_category_id ON public.categories_products USING btree (category_id); -- -- Name: index_categories_products_on_product_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_categories_products_on_product_id ON public.categories_products USING btree (product_id); -- -- Name: index_commissions_on_pointsale_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_commissions_on_pointsale_id ON public.commissions USING btree (pointsale_id); -- -- Name: index_credit_payments_on_credit_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_credit_payments_on_credit_id ON public.credit_payments USING btree (credit_id); -- -- Name: index_credit_payments_on_customer_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_credit_payments_on_customer_id ON public.credit_payments USING btree (customer_id); -- -- Name: index_credit_payments_on_pointsale_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_credit_payments_on_pointsale_id ON public.credit_payments USING btree (pointsale_id); -- -- Name: index_credits_on_customer_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_credits_on_customer_id ON public.credits USING btree (customer_id); -- -- Name: index_credits_on_pointsale_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_credits_on_pointsale_id ON public.credits USING btree (pointsale_id); -- -- Name: index_credits_on_sale_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_credits_on_sale_id ON public.credits USING btree (sale_id); -- -- Name: index_expenses_on_expensesconcept_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_expenses_on_expensesconcept_id ON public.expenses USING btree (expensesconcept_id); -- -- Name: index_expenses_on_open_cash_register_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_expenses_on_open_cash_register_id ON public.expenses USING btree (open_cash_register_id); -- -- Name: index_inventories_moves_on_inventory_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_inventories_moves_on_inventory_id ON public.inventories_moves USING btree (inventory_id); -- -- Name: index_inventories_moves_on_product_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_inventories_moves_on_product_id ON public.inventories_moves USING btree (product_id); -- -- Name: index_inventories_moves_on_purchase_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_inventories_moves_on_purchase_id ON public.inventories_moves USING btree (purchase_id); -- -- Name: index_inventories_moves_on_sale_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_inventories_moves_on_sale_id ON public.inventories_moves USING btree (sale_id); -- -- Name: index_inventories_on_pointsale_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_inventories_on_pointsale_id ON public.inventories USING btree (pointsale_id); -- -- Name: index_inventories_on_user_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_inventories_on_user_id ON public.inventories USING btree (user_id); -- -- Name: index_invoice_details_on_sale_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_invoice_details_on_sale_id ON public.invoice_details USING btree (sale_id); -- -- Name: index_open_cash_registers_on_cash_register_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_open_cash_registers_on_cash_register_id ON public.open_cash_registers USING btree (cash_register_id); -- -- Name: index_open_cash_registers_on_user_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_open_cash_registers_on_user_id ON public.open_cash_registers USING btree (user_id); -- -- Name: index_pre_transfers_on_destiny_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_pre_transfers_on_destiny_id ON public.pre_transfers USING btree (destiny_id); -- -- Name: index_pre_transfers_on_origin_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_pre_transfers_on_origin_id ON public.pre_transfers USING btree (origin_id); -- -- Name: index_pre_transfers_on_product_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_pre_transfers_on_product_id ON public.pre_transfers USING btree (product_id); -- -- Name: index_pre_transfers_on_user_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_pre_transfers_on_user_id ON public.pre_transfers USING btree (user_id); -- -- Name: index_product_wastes_on_product_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_product_wastes_on_product_id ON public.product_wastes USING btree (product_id); -- -- Name: index_products_on_unit_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_products_on_unit_id ON public.products USING btree (unit_id); -- -- Name: index_products_return_ins_on_product_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_products_return_ins_on_product_id ON public.products_return_ins USING btree (product_id); -- -- Name: index_products_return_ins_on_products_return_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_products_return_ins_on_products_return_id ON public.products_return_ins USING btree (products_return_id); -- -- Name: index_products_return_outs_on_product_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_products_return_outs_on_product_id ON public.products_return_outs USING btree (product_id); -- -- Name: index_products_return_outs_on_products_return_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_products_return_outs_on_products_return_id ON public.products_return_outs USING btree (products_return_id); -- -- Name: index_products_returns_on_sale_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_products_returns_on_sale_id ON public.products_returns USING btree (sale_id); -- -- Name: index_products_returns_on_user_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_products_returns_on_user_id ON public.products_returns USING btree (user_id); -- -- Name: index_products_variants_on_product_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_products_variants_on_product_id ON public.products_variants USING btree (product_id); -- -- Name: index_promotions_on_category_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_promotions_on_category_id ON public.promotions USING btree (category_id); -- -- Name: index_promotions_on_product_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_promotions_on_product_id ON public.promotions USING btree (product_id); -- -- Name: index_promotions_on_user_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_promotions_on_user_id ON public.promotions USING btree (user_id); -- -- Name: index_purchase_details_on_product_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_purchase_details_on_product_id ON public.purchase_details USING btree (product_id); -- -- Name: index_purchase_details_on_purchase_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_purchase_details_on_purchase_id ON public.purchase_details USING btree (purchase_id); -- -- Name: index_sales_details_on_product_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_sales_details_on_product_id ON public.sales_details USING btree (product_id); -- -- Name: index_sales_details_on_sale_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_sales_details_on_sale_id ON public.sales_details USING btree (sale_id); -- -- Name: index_sales_on_customer_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_sales_on_customer_id ON public.sales USING btree (customer_id); -- -- Name: index_sales_on_open_cash_register_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_sales_on_open_cash_register_id ON public.sales USING btree (open_cash_register_id); -- -- Name: index_sales_on_user_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_sales_on_user_id ON public.sales USING btree (user_id); -- -- Name: index_sales_sellercommissions_on_sale_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_sales_sellercommissions_on_sale_id ON public.sales_sellercommissions USING btree (sale_id); -- -- Name: index_sales_sellercommissions_on_sellerscommission_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_sales_sellercommissions_on_sellerscommission_id ON public.sales_sellercommissions USING btree (sellerscommission_id); -- -- Name: index_sellers_on_pointsale_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_sellers_on_pointsale_id ON public.sellers USING btree (pointsale_id); -- -- Name: index_sellerscommissions_on_commission_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_sellerscommissions_on_commission_id ON public.sellerscommissions USING btree (commission_id); -- -- Name: index_sellerscommissions_on_seller_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_sellerscommissions_on_seller_id ON public.sellerscommissions USING btree (seller_id); -- -- Name: index_special_prices_on_customer_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_special_prices_on_customer_id ON public.special_prices USING btree (customer_id); -- -- Name: index_special_prices_on_product_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_special_prices_on_product_id ON public.special_prices USING btree (product_id); -- -- Name: index_spmx_counties_on_state_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_spmx_counties_on_state_id ON public.spmx_counties USING btree (state_id); -- -- Name: index_storers_on_user_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_storers_on_user_id ON public.storers USING btree (user_id); -- -- Name: index_storers_on_warehouse_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_storers_on_warehouse_id ON public.storers USING btree (warehouse_id); -- -- Name: index_suppliers_on_contact_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_suppliers_on_contact_id ON public.suppliers USING btree (contact_id); -- -- Name: index_taggings_on_taggable_id_and_taggable_type_and_context; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_taggings_on_taggable_id_and_taggable_type_and_context ON public.taggings USING btree (taggable_id, taggable_type, context); -- -- Name: index_tags_on_name; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE UNIQUE INDEX index_tags_on_name ON public.tags USING btree (name); -- -- Name: index_transfer_details_on_product_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_transfer_details_on_product_id ON public.transfer_details USING btree (product_id); -- -- Name: index_transfer_details_on_transfer_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_transfer_details_on_transfer_id ON public.transfer_details USING btree (transfer_id); -- -- Name: index_transfers_on_destiny_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_transfers_on_destiny_id ON public.transfers USING btree (destiny_id); -- -- Name: index_transfers_on_origin_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_transfers_on_origin_id ON public.transfers USING btree (origin_id); -- -- Name: index_transfers_on_received_by_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_transfers_on_received_by_id ON public.transfers USING btree (received_by_id); -- -- Name: index_transfers_on_user_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_transfers_on_user_id ON public.transfers USING btree (user_id); -- -- Name: index_users_on_email; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE UNIQUE INDEX index_users_on_email ON public.users USING btree (email); -- -- Name: index_users_on_reset_password_token; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE UNIQUE INDEX index_users_on_reset_password_token ON public.users USING btree (reset_password_token); -- -- Name: index_users_on_userid; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE UNIQUE INDEX index_users_on_userid ON public.users USING btree (userid); -- -- Name: index_warehouse_stocks_on_product_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_warehouse_stocks_on_product_id ON public.warehouse_stocks USING btree (product_id); -- -- Name: index_warehouse_stocks_on_warehouse_id; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX index_warehouse_stocks_on_warehouse_id ON public.warehouse_stocks USING btree (warehouse_id); -- -- Name: taggings_idx; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE UNIQUE INDEX taggings_idx ON public.taggings USING btree (tag_id, taggable_id, taggable_type, context, tagger_id, tagger_type); -- -- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE UNIQUE INDEX unique_schema_migrations ON public.schema_migrations USING btree (version); -- -- Name: user_index; Type: INDEX; Schema: public; Owner: pos_user; Tablespace: -- CREATE INDEX user_index ON public.audits USING btree (user_id, user_type); -- -- Name: fk_rails_2628c16cf7; Type: FK CONSTRAINT; Schema: public; Owner: pos_user -- ALTER TABLE ONLY public.suppliers ADD CONSTRAINT fk_rails_2628c16cf7 FOREIGN KEY (contact_id) REFERENCES public.contacts(id); -- -- Name: SCHEMA public; Type: ACL; Schema: -; Owner: postgres -- REVOKE ALL ON SCHEMA public FROM PUBLIC; REVOKE ALL ON SCHEMA public FROM postgres; GRANT ALL ON SCHEMA public TO postgres; GRANT ALL ON SCHEMA public TO PUBLIC; -- -- PostgreSQL database dump complete --